diff --git a/cvs/objects/emissions/include/linear_control.h b/cvs/objects/emissions/include/linear_control.h index 06c40c235b..dd4aa91df6 100644 --- a/cvs/objects/emissions/include/linear_control.h +++ b/cvs/objects/emissions/include/linear_control.h @@ -96,6 +96,9 @@ class LinearControl: public AEmissionsControl { //! Final emissions coefficient DEFINE_VARIABLE( SIMPLE, "final-emissions-coefficient", mFinalEmCoefficient, Value ), + //! Emissions redution percentage (alternative to specifying emissions coefficient) + DEFINE_VARIABLE( SIMPLE, "control-percentage", mControlFraction, Value ), + //! Flag if wish to allow emissions factor increase DEFINE_VARIABLE( SIMPLE, "allow-ef-increase", mAllowIncrease, bool ) ) diff --git a/cvs/objects/emissions/source/linear_control.cpp b/cvs/objects/emissions/source/linear_control.cpp index 23f4e09371..26e8f5c5c6 100644 --- a/cvs/objects/emissions/source/linear_control.cpp +++ b/cvs/objects/emissions/source/linear_control.cpp @@ -6,7 +6,7 @@ * CONTRACTOR MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY * LIABILITY FOR THE USE OF THIS SOFTWARE. This notice including this * sentence must appear on any copies of this computer software. -* +* * EXPORT CONTROL * User agrees that the Software will not be shipped, transferred or * exported into any country or used in any manner prohibited by the @@ -21,17 +21,17 @@ * (including without limitation Iran, Syria, Sudan, Cuba, and North Korea) * and that User is not otherwise prohibited * under the Export Laws from receiving the Software. -* +* * Copyright 2011 Battelle Memorial Institute. All Rights Reserved. -* Distributed as open-source under the terms of the Educational Community +* Distributed as open-source under the terms of the Educational Community * License version 2.0 (ECL 2.0). http://www.opensource.org/licenses/ecl2.php -* +* * For further details, see: http://www.globalchange.umd.edu/models/gcam/ * */ -/*! +/*! * \file mac_control.cpp * \ingroup Objects * \brief LinearControl class source file. @@ -94,6 +94,7 @@ void LinearControl::copy( const LinearControl& aOther ){ mTargetYear = aOther.mTargetYear; mStartYear = aOther.mStartYear; mFinalEmCoefficient = aOther.mFinalEmCoefficient; + mControlFraction = aOther.mControlFraction; mAllowIncrease = aOther.mAllowIncrease; } @@ -117,6 +118,7 @@ const string& LinearControl::getXMLNameStatic(){ void LinearControl::toDebugXMLDerived( const int aPeriod, ostream& aOut, Tabs* aTabs ) const { const Modeltime* modeltime = scenario->getModeltime(); XMLWriteElement( mFinalEmCoefficient, "final-emissions-coefficient", aOut, aTabs); + XMLWriteElement( mControlFraction, "control-percentage", aOut, aTabs); XMLWriteElement( mTargetYear, "end-year", aOut, aTabs); XMLWriteElementCheckDefault( mStartYear, "start-year", aOut, aTabs, modeltime->getper_to_yr( modeltime->getFinalCalibrationPeriod() ) ); @@ -128,13 +130,13 @@ void LinearControl::completeInit( const string& aRegionName, const string& aSect const IInfo* aTechInfo ) { - if ( ( mTargetYear == 0 ) || !mFinalEmCoefficient.isInited() && !mDisableEmControl ) { + if ( !mDisableEmControl && (( mTargetYear == 0 ) || (!mFinalEmCoefficient.isInited() && !mControlFraction.isInited()))) { ILogger& mainLog = ILogger::getLogger( "main_log" ); mainLog.setLevel( ILogger::ERROR ); mainLog << "Linear control function " << getName() << " has not been parameterized. " << endl; abort(); } - + } void LinearControl::initCalc( const string& aRegionName, @@ -151,7 +153,7 @@ void LinearControl::initCalc( const string& aRegionName, mainLog << "Linear control function improperly parameterized. Target year <= last calibration year." << endl; abort(); } - + // Make sure start year is not before final calibration year if ( mStartYear < finalCalibYr && !mDisableEmControl ) { ILogger& mainLog = ILogger::getLogger( "main_log" ); @@ -160,11 +162,11 @@ void LinearControl::initCalc( const string& aRegionName, << " before final calibration year, resetting to " << finalCalibYr << endl; mStartYear = finalCalibYr; } - + // Make sure start year is not before the first model period for this object. int thisModelYear = scenario->getModeltime()->getper_to_yr( aPeriod ); if ( aTechInfo->getBoolean( "new-vintage-tech", true ) && mStartYear < thisModelYear ) { - + // But don't warn if the current object has been disabled via user input if ( !mDisableEmControl ) { ILogger& mainLog = ILogger::getLogger( "main_log" ); @@ -174,8 +176,8 @@ void LinearControl::initCalc( const string& aRegionName, } mStartYear = thisModelYear; } - - // Need to get the emissions coefficient from start period to serve as starting point + + // Need to get the emissions coefficient from start period to serve as starting point // for linear decline. int startPeriod = scenario->getModeltime()->getyr_to_per( mStartYear ); if ( mDisableEmControl ) { @@ -188,12 +190,12 @@ void LinearControl::initCalc( const string& aRegionName, calcEmissionsReductionInternal( baseEmissionsCoef, aPeriod ); } } - - // Note, the emissions driver in NonCO2Emissions::calcEmission for input driver is - // defined as the sum of all physical inputs (e.g. getPhysicalDemandSum). This means - // that the emissions factor has an unusual definition for quantities with more than + + // Note, the emissions driver in NonCO2Emissions::calcEmission for input driver is + // defined as the sum of all physical inputs (e.g. getPhysicalDemandSum). This means + // that the emissions factor has an unusual definition for quantities with more than // one input. This function should be used with caution in these cases. - // Fortunately, these cases are currently rare. If multiple inputs become more common + // Fortunately, these cases are currently rare. If multiple inputs become more common // changes, a means of specifying the appropriate input would need to be added. // Electricity inputs, for example, should never be associated with non-CO2 emissions. } @@ -207,7 +209,7 @@ void LinearControl::calcEmissionsReduction( const std::string& aRegionName, cons /*! * \brief Calculate a linear reduction in the emissions factor and save it to mReduction. - * \details The reduction is calculated from the given aBaseEmissionsCoef and the + * \details The reduction is calculated from the given aBaseEmissionsCoef and the * parsed parameters that define the start/end year and final value. We * only allow the emissions factor to increase if the mAllowIncrease flag * was explicitly set. @@ -220,31 +222,38 @@ void LinearControl::calcEmissionsReductionInternal( const double aBaseEmissionsC const int aPeriod ) { double reduction = 0.0; - + double thisYear = scenario->getModeltime()->getper_to_yr( aPeriod ); - + // Don't bother if no emissions or haven't passed starting point yet - if ( aBaseEmissionsCoef > 0 && thisYear > mStartYear && mFinalEmCoefficient.isInited() ) { - + if ( aBaseEmissionsCoef > 0 && thisYear > mStartYear && + ( mFinalEmCoefficient.isInited() || mControlFraction.isInited() ) ) { + // Derivation of emission reduction formula below // newEF = baseEF - (baseEF - targetEF) * ( year - baseYear ) / ( targetYear - baseYear ) // newEF = baseEF * ( 1 - reduction ) therefore reduction = 1 - newEF / baseEF // reduction = ( 1 - targetEF / baseEF ) * ( year - baseYear ) / ( targetYear - baseYear ) - + // This is the final reduction - reduction = ( 1 - mFinalEmCoefficient / aBaseEmissionsCoef ); - + // Emissions coefficient takes precidence if control fraction is also inited + // Note, have already established that at least one of these is defined. + if ( mFinalEmCoefficient.isInited() ) { + reduction = ( 1 - mFinalEmCoefficient / aBaseEmissionsCoef ); + } else { + reduction = mControlFraction; + } + // If not at final year yet, phase this in linearly if ( thisYear < mTargetYear ) { reduction *= static_cast( thisYear - mStartYear ) / static_cast( mTargetYear - mStartYear ); } - + // Ensure that reduction is not negative unless user specifically requires this if ( reduction < 0.0 && !mAllowIncrease ) { reduction = 0.0; } } - + setEmissionsReduction( reduction ); } diff --git a/exe/configuration_usa.xml b/exe/configuration_usa.xml index 5e3dc5def9..25b0ffe515 100644 --- a/exe/configuration_usa.xml +++ b/exe/configuration_usa.xml @@ -17,7 +17,7 @@ LandAllocatorGraph.dot - ../input/gcamdata/xml/no_climate_model.xml + ../input/gcamdata/xml/hector.xml ../input/gcamdata/xml/socioeconomics_gSSP2.xml ../input/gcamdata/xml/resources.xml @@ -127,6 +127,32 @@ ../input/gcamdata/xml/ghg_emissions_USA.xml ../input/gcamdata/xml/elecS_ghg_emissions_water_USA.xml + ../input/gcamdata/xml/trn_ghg_emissions_USA.xml + + + ../input/gcamdata/xml/ind_urb_processing_sectors.xml + ../input/gcamdata/xml/all_energy_emissions.xml + ../input/gcamdata/xml/all_fgas_emissions.xml + ../input/gcamdata/xml/all_unmgd_emissions.xml + ../input/gcamdata/xml/all_aglu_emissions_IRR_MGMT.xml + ../input/gcamdata/xml/all_protected_unmgd_emissions.xml + + + ../input/gcamdata/xml/all_energy_emissions_MAC.xml + ../input/gcamdata/xml/all_fgas_emissions_MAC.xml + ../input/gcamdata/xml/all_aglu_emissions_IRR_MGMT_MAC.xml + ../input/gcamdata/xml/ind_urb_processing_sectors_MAC.xml + + + ../input/gcamdata/xml/bld_emissions_USA.xml + ../input/gcamdata/xml/othertrn_emissions_USA.xml + ../input/gcamdata/xml/indenergy_emissions_USA.xml + ../input/gcamdata/xml/elc_emissions_USA.xml + ../input/gcamdata/xml/transport_emissions_USA.xml + ../input/gcamdata/xml/ind_urb_processing_sectors_USA.xml + ../input/gcamdata/xml/ind_urb_proc_emissions_USA.xml + ../input/gcamdata/xml/refinery_emissions_USA.xml + ../input/gcamdata/xml/trn_ghg_emissions_USA.xml ../input/solution/cal_broyden_config.xml diff --git a/input/gcamdata/R/constants.R b/input/gcamdata/R/constants.R index 3d5711c543..97120d6b5a 100644 --- a/input/gcamdata/R/constants.R +++ b/input/gcamdata/R/constants.R @@ -102,6 +102,7 @@ CONV_T_METRIC_SHORT <- 1000 / 908 # Ratio between metric ton and short ton CONV_HA_BM2 <- 1e-5 CONV_HA_M2 <- 10000 CONV_THA_KGM2 <- 0.1 # tons C/ha -> kg C/m2 +CONV_G_TG <- 1e-12 CONV_GG_TG <- 0.001 # gigagrams to tegagrams CONV_TST_TG <- 0.000907 # thousand short tons to Tg CONV_KG_TO_TG <- 1e-9 @@ -130,7 +131,6 @@ CONV_THA_KGM2 <- 0.1 # tons C/ha -> kg C/m2 CONV_TON_MEGATON <- 1e-6 CONV_TONNE_GJ_DISTILLATE <- 42.91 # tons to GJ distillate CONV_TONNE_GJ_RFO <- 40.87 # tons to GJ residual fuel oil -CONV_TST_TG <- 0.000907 # thousand short tons to Tg # Time CONV_YEAR_HOURS <- 24 * 365.25 @@ -143,6 +143,7 @@ CONV_GWH_EJ <- 3.6e-6 CONV_TWH_EJ <- 3.6e-3 CONV_KWH_GJ <- 3.6e-3 CONV_GJ_EJ <- 1e-9 +CONV_MJ_EJ <- 1e-12 CONV_EJ_GJ <- 1 / CONV_GJ_EJ CONV_MBLD_EJYR <- 6.119 * 365.25 * 1e-3 # million barrels a day to EJ per year CONV_KBTU_EJ <- 1.0551e-12 # KiloBTU to EJ @@ -163,6 +164,16 @@ CONV_HA_M2 <- 1e4 # ha to m2 CONV_BM2_M2 <- 1e9 CONV_MILFT2_M2 <- 92900 # Million square feet to square meters CONV_FT2_M2 <- 0.0929 # Square feet to square meters +CONV_MI_KM <- 1.60934 +CONV_PERS_MILPERS <- 1000000 #Person to million-passengers + +# SO2 related conversion factors +RESID_BTU_PER_BBL <- 6.29 # Source EIA (Note HHV) +RESID_BBLS_PER_TONNE <- 6.66 # Source EIA (Note HHV) +RESID_ENERGY_DENSITY_BTU <- RESID_BTU_PER_BBL * RESID_BBLS_PER_TONNE * 0.95 # Btu/tonne net +RESID_ENERGY_DENSITY_JOULES <- RESID_ENERGY_DENSITY_BTU * 1055 # TJ/Tg +RESID_ENERGY_CONTENT <- RESID_ENERGY_DENSITY_JOULES/1E6 # Tg/EJ +SO2_SHIP_LIMIT_POLICY_MULTIPLIER <- 0.001 * 2 # AgLU constants ====================================================================== @@ -276,7 +287,7 @@ aglu.MAX_BIO_YIELD_THA <- 20 aglu.BIO_ENERGY_CONTENT_GJT <- 17.5 # Regions in which agriculture and land use are not modeled -#kbn 2019/09/25 Took taiwan out from below since we have data for Taiwan now. +# kbn 2019/09/25 Took taiwan out from below since we have data for Taiwan now. aglu.NO_AGLU_REGIONS <- "" # Define GCAM category name of fertilizer @@ -525,8 +536,8 @@ energy.OIL_CREDITS_MARKETNAME <- "oil-credits" energy.OILFRACT_ELEC <- 1.0 # Fraction of liquids for feedstocks that must come from oil energy.OILFRACT_FEEDSTOCKS <- 0.8 # Fraction of liquids for oil electricity that must come from oil -#kbn 2019-10-11 Adding constant for transportation type. Set this to 'rev.mode' to use revised mode classes, 'rev_size.class' to use revised size classes. -#To use the old modes and size classes, use 'mode' and 'size.class' for the constants. The default for GCAM are the new modes and size classes. +# kbn 2019-10-11 Adding constant for transportation type. Set this to 'rev.mode' to use revised mode classes, 'rev_size.class' to use revised size classes. +# To use the old modes and size classes, use 'mode' and 'size.class' for the constants. The default for GCAM are the new modes and size classes. energy.TRAN_UCD_MODE<-'rev.mode' energy.TRAN_UCD_SIZE_CLASS<-'rev_size.class' @@ -710,10 +721,11 @@ emissions.SSP_FUTURE_YEARS <- MODEL_YEARS[MODEL_YEARS %in% 2015:2100] emissions.CONV_C_CO2 <- 44 / 12 # Convert Carbon to CO2 emissions.F_GAS_UNITS <- "Gg" emissions.TST_TO_TG <- 0.000907 # Thousand short tons to Tg -emissions.ZERO_EM_TECH <- c("electricity", "Electric", "BEV","FCEV","district heat","NG","LA-BEV") #These technologies get filtered out and no emissions are generated for them. Note that NG emissions for vehicles are added directly from GAINS and not calculated. -emissions.HIGH_EM_FACTOR_THRESHOLD <- 1000 #All emission factors above this threshold are replaced with the global median of emission factors. -emissions.GFED_NODATA <- c("ala","bes","blm","ggy","jey","maf","xad","xko","xnc") #GFED LULC dataset does not contaian data for these isos. These get filtered out so we can use the left_join_error_no_match. -emissions.UNMGD_LAND_AVG_YRS <- 30 #Years for climatological average for the GFED LULC data. +emissions.ZERO_EM_TECH <- c("electricity", "Electric", "BEV","FCEV","district heat","NG","LA-BEV") # These technologies get filtered out and no emissions are generated for them. Note that NG emissions for vehicles are added directly from GAINS and not calculated. +emissions.HIGH_EM_FACTOR_THRESHOLD <- 1000 # All emission factors above this threshold are replaced with the global median of emission factors. +emissions.GFED_NODATA <- c("ala","bes","blm","ggy","jey","maf","xad","xko","xnc") # GFED LULC dataset does not contaian data for these isos. These get filtered out so we can use the left_join_error_no_match. +emissions.UNMGD_LAND_AVG_YRS <- 30 # Years for climatological average for the GFED LULC data. +emissions.CEDS_scale <- "usa" # iso's that will be scaled to CEDS emissions emissions.CH4.GWP.AR4 <- 25 # used for EPA non-CO2 scaling, the 2019 EPA non-CO2 report uses AR4 GWPs emissions.N2O.GWP.AR4 <- 298 # used for EPA non-CO2 scaling, the 2019 EPA non-CO2 report uses AR4 GWPs @@ -727,6 +739,8 @@ emissions.AGR_SECTORS <- c("rice", "fertilizer", "soil") emissions.AGR_GASES <- c("CH4_AGR", "N2O_AGR", "NH3_AGR", "NOx_AGR") emissions.AG_MACC_GHG_NAMES <- c("CH4_AGR", "N2O_AGR") emissions.GHG_NAMES <- c("CH4", "N2O") +emissions.NONGHG_PROC_SECTORS <- c("SO2_1", "SO2_2", "SO2_3", "SO2_4", "NOx", "CO", "NMVOC", "PM2.5", "PM10") +emissions.REFGHG_GASES <- c("NOx","SO2","PM2.5","CO","NH3") emissions.NONGHG_GASES <- c("SO2", "NOx", "CO", "NMVOC", "NH3") emissions.PFCS <- c("CF4", "C2F6", "SF6") emissions.TRN_INTL_SECTORS <- c("trn_intl_ship", "trn_intl_air") @@ -740,6 +754,19 @@ emissions.DIGITS_CO2COEF <- 1 emissions.DIGITS_EMISS_COEF <- 7 emissions.DIGITS_EMISSIONS <- 10 emissions.DIGITS_MACC <- 3 + +# IND URB PROCESSES CONSTANTS (copied to all regions in world in zchunk_L231.proc_sector.R (hard coded - may want to change to these) +# using these same constants for all states in GCAM-USA chunk L231.proc_sector_USA.R) +# would be good to know where these values come from +emissions.FINAL_DEMAND <- "urban processes" +emissions.FINAL_DEMAND_PCB <- 1 # per capita based +emissions.FINAL_DEMAND_INCELAS <- 0 # income elasticity +emissions.FINAL_DEMAND_BASE_SERVICE <- 0.004 +emissions.FINAL_DEMAND_AEEI <- 0 # autonomous energy efficiency improvement +emissions.REG_TECH_CAL_VALUE_MINICAM_ENERGY_INPUT <- "misc emissions sources" +emissions.REG_TECH_CAL_VALUE <- 0.001 +emissions.IND_PROC_INPUT <- 0.008 +emissions.IND_PROC_MINICAM_ENERGY_INPUT <- "industrial processes" emissions.DIGITS_MACC_TC <- 4 # tech.change rounding emissions.DIGITS_GFED <- 12 @@ -882,7 +909,7 @@ gcamusa.ELEC_SEGMENT_SUBPEAK <- "subpeak generation" gcamusa.ELEC_SEGMENT_PEAK <- "peak generation" # Water mapping assumptions -gcamusa.FINAL_MAPPING_YEAR <- 2010 # Water mappings are conducted from the Huang et al. (2018) dataset which are through 2010, not the final historical year +gcamusa.FINAL_MAPPING_YEAR <- 2010 # Water mappings are conducted from the Huang et al. (2018) dataset which are through 2010, not the final historical year gcamusa.WATER_MAPPING_YEAR <- 2005 gcamusa.USA_REGION_NUMBER <- 1 gcamusa.ZERO_WATER_COEF <- 0 @@ -893,6 +920,97 @@ gcamusa.MIN_PRIM_ENERGY_YEAR <- 1990 # GCAM-USA does not have energy-for-water so desalination is an exogenous, unlimited resource with a fixed price gcamusa.DESALINATION_PRICE <- 0.214 # 1975$/m3 +# GCAM-USA transportation emissions vehicle classes +gcamusa.MOVES_BASE_YEAR_CLASSES <- c(2005,2010,2015) # Year classes of cars to be used to get base year vintaged emissions +gcamusa.MOVES_MIN_VINTAGE_YEAR <- 1990 # Earliest vintage year used +gcamusa.MOVES_MAX_AGE<- 25 # Maximum age used +gcamusa.MARKAL_DEGRADE_YEARS <- 15 # Number of years we have EF degradation values for +gcamusa.MOTO_VINTAGES <- c(seq(gcamusa.MOVES_MIN_VINTAGE_YEAR, max(MODEL_FUTURE_YEARS), 5)) # Vintages to select from MOVES motorcycle data + +# GCAM-USA transportation emissions fuels to filter out because there is no intensity data +gcamusa.MARKAL_LDV_FILTER_OUT_FUELS <- c("B20","PH10G","PH10E") +gcamusa.MARKAL_MINICAR_FILTER_OUT_FUELS <- c("DSL", "E10", "E15") + +# GCAM-USA Transportation sectors +gcamusa.TRANSPORT_SECTORS <- c("trn_freight", "trn_pass","trn_shipping_intl", "trn_aviation_intl") +gcamusa.LDV_SUPPLYSECTORS <- c("trn_pass_road_LDV_4W", "trn_pass_road_LDV") +gcamusa.HDV_SUPPLYSECTORS <- c("trn_pass_road","trn_freight_road") +gcamusa.GCAM_TRANSPORT_SECTORS <- c("Road") + +# GCAM-USA transportation EFs to change to be based on NEI emissions/own service demand for that vehicle class directly +gcamusa.TRANSUBSECTOR_CHANGE_EF <- c("Heavy truck") +gcamusa.YEAR_CHANGE_EF <- c("2010") +gcamusa.STUB_TECH_CHANGE_EF <- c("Liquids") +gcamusa.NONCO2_CHANGE_EF <- c("NOx", "SO2", "PM2.5", "PM10", "NH3", "CO", "NMVOC", "BC", "OC") + +# GCAM-USA transportation base years and future years (different than model base years and future years) +# Calibrated periods in the model. Only level 2 chunks should reference these +gcamusa.TRAN_MODEL_BASE_YEARS <- c(1975, 1990, 2005, 2010, 2015) +# Future (not calibrated) model periods. Only level 2 chunks should reference these +gcamusa.TRAN_MODEL_FUTURE_YEARS <- seq(2020, 2100, 5) + +# defined for MARKAL EF years in LA171 gcam-usa chunk +gcamusa.TRN_MARKAL_EMISSION_YEARS <- seq(2005,2050, 5) + +# defined for EF years in L271 gcam-usa chunk +gcamusa.TRN_EMISSION_YEARS <- seq(2005,2100, 5) + +# emission factor timestep +gcamusa.TRN_EF_timestep <- 5 + +# GCAM-USA StubTranTech missing lifetime +gcamusa.STUBTRANTECH_LIFETIME_2045V <- 25 # lifetime for missing vehicles vintages 2045 and earlier +gcamusa.STUBTRANTECH_LIFETIME_2050V <- 20 # lifetime for missing vehicles vintages 2050 and later + +# GCAM-USA groups to filter out of degrades table (to not predict degradation of EF over time) +gcamusa.DEGRADES_FILTER_OUT_MARKAL_CLASS <- "Small SUV" +gcamusa.DEGRADES_FILTER_OUT_MARKAL_FUEL <- "ELC" +gcamusa.DEGRADES_FILTER_OUT_NONCO2 <-c("PM2.5", "PM10") + +# GCAM-USA other transportation +gcamusa.INTL_SHIP_PM_RATIO <- 0.92 # this is the ratio of PM2.5 to PM10 for international shipping emissions. Value calculated from the EPA US inventory modelling platform 2016v2 20aug2021 + +# GCAM-USA process emissions +gcamusa.IND_PROC_EM_NEI_GCAM_SECTORS <- c("industry_processes", "solvents") +gcamusa.URB_PROC_EM_NEI_GCAM_SECTORS <- c("landfills", "wastewater", "waste_incineration") +gcamusa.CEMENT_NEI_GCAM_SECTORS <- c("cement") +gcamusa.NONGHG_PROC_SECTORS.missing_pollutants <- c("PM2.5", "PM10", "NH3") +gcamusa.NONGHG_PROC_SECTORS.missing_subsectors <- c("wastewater") +gcamusa.NONGHG_PROC_SECTORS.gdp_max_reduction <- 30 +gcamusa.NONGHG_PROC_SECTORS.gdp_steepness <- 3.5 + +gcamusa.PROC_DEFAULT_SECTOR <- "industrial processes" +gcamusa.PROC_DEFAULT_S_T <- "other industrial processes" + +gcamusa.CEMENT_TECHS <- c("cement", "cement CCS") + +# GCAM-USA industry / industrial energy +# Define sector(s) used in L275.indenergy_nonghg_USA and L231.proc_sector_USA +gcamusa.IND_SECTOR_NAME <- "other industry" +gcamusa.IND_EN_SECTOR_NAME <- "other industrial energy use" +gcamusa.IND_FDSTCK_SECTOR_NAME <- "other industrial feedstocks" + +# Number of digits for model input data +gcamusa.DIGITS_TRN_EF_DEGRADE <- 15 + +# GCAM-USA petroleum fuel conversion factors +gcamusa.CONVERSIONFACTOR_NATURALGAS_GJ_PER_T_NET <- 48.0 # Natural Gas GJ/t. (Divide TJ by net heating value (LHV) to get kt) 2006 IPCC guidelines for National GHG inventories Vol 2 - Energy, Ch 1 - Intro Table 1.2 +gcamusa.CONVERSIONFACTOR_MOTORGASOLINE_GJ_PER_T_NET <- 44.75 # Motor gasoline(3) GJ/t, IEA energy statistics manual +gcamusa.CONVERSIONFACTOR_DIESEL_GJ_PER_T_NET <- 43.38 # Gas/diesel oil GJ/t, IEA energy statistics manual +gcamusa.CONVERSIONFACTOR_RESIDUALOIL_GJ_PER_T_NET <- 41.57 # Fuel oil GJ/t, high-sulphur, IEA energy statistics manual + +# Non-CO2 BC - OC - PM conversion factors +gcamusa.OC_TO_OM <- 1.3 +gcamusa.PM1_TO_PM2.5 <- 1.1 + +# Non-CO2 BC and OC onroad scaling factors +gcamusa.BC_1990_ONROAD_SCALING_FACTOR <- 1/1.4 +gcamusa.OC_1990_ONROAD_SCALING_FACTOR <- 1/1.4 + +# If this variable is FALSE, onroad dust emissions (CEDS 1A3b_Road-noncomb) will not be included +# If it is TRUE, onroad dust emissions will be included +gcamusa.DUST <- TRUE + # Time shift conditions ====================================================================== # Uncomment these lines to run under 'timeshift' conditions # # HISTORICAL_YEARS <- 1971:2005 # normally 1971:2010 diff --git a/input/gcamdata/R/module-helpers.R b/input/gcamdata/R/module-helpers.R index 39869d5cff..4737d0fdcb 100644 --- a/input/gcamdata/R/module-helpers.R +++ b/input/gcamdata/R/module-helpers.R @@ -688,3 +688,316 @@ smooth_res_curve_approx_error <- function(curve.exponent, mid.price, base.price, crossprod(error, error) } + +#' NEI_to_GCAM +#' +#' Helper function to convert EPA National Emissions Inventory (NEI) emissions to GCAM emissions in GCAM-USA +#' Used for emissions in several sectors +#' This function allows the user to specify what GCAM sectors should be filtered from the NEI data, maps to GCAM +#' fuels and pollutants, converts from TON to Tg, and aggregates emissions by state, sector, fuel, year, and pollutant. +#' @param NEI_data Base tibble to start from (NEI data) +#' @param CEDS_GCAM_fuel CEDS to GCAM fuel mapping file +#' @param NEI_pollutant_mapping NEI to GCAM pollutant mapping file +#' @param names Character vector indicating the column names of the returned tibble +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter left_join rename mutate group_by select summarise_all ungroup +#' @return tibble with corresponding GCAM sectors + +NEI_to_GCAM <- function(NEI_data, CEDS_GCAM_fuel, NEI_pollutant_mapping, names) { + + # silence package check notes + GCAM_sector <- GCAM_fuel <- pollutant <- emissions <- state <- sector <- + fuel <- Non.CO2 <- year <- value <- NULL + + assert_that(is_tibble(NEI_data)) + assert_that(is_tibble(CEDS_GCAM_fuel)) + assert_that(is_tibble(NEI_pollutant_mapping)) + assert_that(is.character(names)) + assert_that(has_name(NEI_data, "GCAM_sector")) + assert_that(has_name(CEDS_GCAM_fuel, "CEDS_Fuel")) + assert_that(has_name(NEI_pollutant_mapping, "NEI_pollutant")) + + data_new <- NEI_data %>% + #subset relevant sectors + filter(GCAM_sector %in% names) %>% + # using left_join because original CEDS fuel in NEI has one called "Process", there's no GCAM fuel corresponding to that, so there will be NA values + # OK to omit, missing values will be dropped later + left_join(CEDS_GCAM_fuel, by = "CEDS_Fuel") %>% + rename(fuel = GCAM_fuel) %>% + na.omit %>% + rename(NEI_pollutant = pollutant) %>% + # Match on NEI pollutants, using left_join because missing values will be produced + # The original NEI include filterable PM2.5 and PM10, but here we only need primary ones + # OK to omit those filterables + left_join(NEI_pollutant_mapping, by = "NEI_pollutant") %>% + na.omit %>% + # Convert from short ton to thousand short tons and then to Tg + mutate(emissions = emissions / 1000 * CONV_TST_TG, unit = "Tg") %>% + # generate file tibble based on standard GCAM column names, sum emissions for the same state/sector/fuel/species + rename(sector = GCAM_sector) %>% + group_by(state, sector, fuel, year, Non.CO2) %>% + summarise(value = sum(emissions)) %>% + ungroup %>% + select(state, sector, fuel, Non.CO2, year, value) + +} + +#' compute_BC_OC +#' +#' Helper function to compute BC and OC EFs from PM2.5 and a mapping file with BC OC fraction content by sector/subsector/technology +#' Used for emissions in several sectors. +#' @param df tibble which contains PM2.5 data to be used to get BC and OC data +#' @param BC_OC_assumptions tibble which contains BC and OC fractions +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter left_join rename mutate group_by select summarise_all ungroup +#' @return tibble with BC and OC rows added + +compute_BC_OC <- function(df, BC_OC_assumptions) { + #There is no data for BC/OC in the base year, so use fractions of PM2.5 to calculate BC/OC emission factors. + #Compute BC/OC emission factors in the base year based on PM2.5 emission factors + #BC + OC is a sub-category of PM2.5, and in some cases most of PM2.5 + + #Note: BC/OC fractions are given for various level of sector, subsector, and stub.technology. + #All levels are not necessarily present for each + + # silence package check notes + BC_fraction <- OC_fraction <- subsector.y <- subsector.x <- technology <- + BC_fraction_SST <- BC_fraction_ST <- BC_fraction_SS <- emiss.coef <- + OC_fraction_SST <- OC_fraction_ST <- OC_fraction_SS <- Non.CO2 <- NULL + + assert_that(is_tibble(df)) + assert_that(has_name(df, "Non.CO2")) + + BC_df <- df %>% + filter(Non.CO2 == "PM2.5") %>% + # Cannot do left_join_error_no_match because there are some NA values that will be retained + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector", "stub.technology" = "technology", "year")) %>% + mutate(BC_fraction_SST = BC_fraction) %>% + select(-BC_fraction, -OC_fraction) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "stub.technology" = "technology", "year")) %>% + mutate(BC_fraction_ST = BC_fraction) %>% + select(-BC_fraction, -OC_fraction, -subsector.y) %>% + rename(subsector = subsector.x) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector", "year")) %>% + mutate(BC_fraction_SS = BC_fraction) %>% + select(-BC_fraction, -OC_fraction, -technology) %>% + #Hierarchy of values to be chosen: + #1. If all sector, subsector, and technology information is available + #2. If sector and technology information is available + #3. If sector and subsector information is available + mutate(BC_fraction = if_else(is.na(BC_fraction_SST) & is.na(BC_fraction_ST), BC_fraction_SS, + if_else(is.na(BC_fraction_SST), BC_fraction_ST, BC_fraction_SST)), + #Compute emissions coefficients for BC + emiss.coef = emiss.coef * BC_fraction,Non.CO2 = "BC") %>% + select(-BC_fraction, -BC_fraction_SST, -BC_fraction_ST, -BC_fraction_SS) %>% + distinct() + + OC_df <- df %>% + filter(Non.CO2 == "PM2.5") %>% + # Cannot do left_join_error_no_match because there are some NA values that will be retained + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector", "stub.technology" = "technology", "year")) %>% + mutate(OC_fraction_SST = OC_fraction) %>% + select(-BC_fraction, -OC_fraction) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "stub.technology" = "technology", "year")) %>% + mutate(OC_fraction_ST = OC_fraction) %>% + select(-BC_fraction, -OC_fraction, -subsector.y) %>% + rename(subsector = subsector.x) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector", "year")) %>% + mutate(OC_fraction_SS = OC_fraction) %>% + select(-BC_fraction, -OC_fraction, -technology) %>% + #Hierarchy of values to be chosen: + #1. If all sector, subsector, and technology information is available + #2. If sector and technology information is available + #3. If sector and subsector information is available + mutate(OC_fraction = if_else(is.na(OC_fraction_SST) & is.na(OC_fraction_ST), OC_fraction_SS, + if_else(is.na(OC_fraction_SST), OC_fraction_ST, OC_fraction_SST)), + #Compute emissions coefficients for BC + emiss.coef = emiss.coef * OC_fraction, Non.CO2 = "OC") %>% + select(-OC_fraction, -OC_fraction_SST, -OC_fraction_ST, -OC_fraction_SS) %>% + distinct() + + # Bind base year BC/OC fractions to other EFs + df <- bind_rows(df, BC_df, OC_df) + return (df) + +} + +#' compute_BC_OC_transport +#' +#' Helper function to compute BC and OC EFs from PM2.5 and a mapping file with BC OC fraction content by sector/tranSubsector/technology +#' Used for emissions in the transportation sectors (onroad and nonroad) +#' @param df tibble which contains PM2.5 data to be used to get BC and OC data +#' @param BC_OC_assumptions tibble which contains BC and OC fractions +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter left_join rename mutate group_by select summarise_all ungroup +#' @return tibble with BC and OC rows added + +compute_BC_OC_transport <- function(df, BC_OC_assumptions) { + #This is specific for the transport sector, necessary due to different variable naming conventions. + #There is no data for BC/OC in the base year, so use fractions of PM2.5 to calculate BC/OC emission factors. + #Compute BC/OC emission factors in the base year based on PM2.5 emission factors + #BC + OC is a sub-category of PM2.5, and in some cases most of PM2.5 + + #Note: BC/OC fractions are given for various level of sector, tranSubsector, and stub.technology. + #All levels are not necessarily present for each + + # silence package check notes + BC_fraction <- OC_fraction <- tranSubsector.y <- tranSubsector.x <- technology <- + BC_fraction_SST <- BC_fraction_ST <- BC_fraction_SS <- emiss.coef <- + OC_fraction_SST <- OC_fraction_ST <- OC_fraction_SS <- Non.CO2 <- NULL + + assert_that(is_tibble(df)) + assert_that(has_name(df, "Non.CO2")) + + BC_df <- df %>% + filter(Non.CO2 == "PM2.5") %>% + # Cannot do left_join_error_no_match because there are some NA values that will be retained + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "tranSubsector", "stub.technology" = "technology", "year")) %>% + mutate(BC_fraction_SST = BC_fraction) %>% + select(-BC_fraction, -OC_fraction) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "stub.technology" = "technology", "year")) %>% + mutate(BC_fraction_ST = BC_fraction) %>% + select(-BC_fraction, -OC_fraction, -tranSubsector.y) %>% + rename(tranSubsector = tranSubsector.x) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "tranSubsector", "year")) %>% + mutate(BC_fraction_SS = BC_fraction) %>% + select(-BC_fraction, -OC_fraction, -technology) %>% + #Hierarchy of values to be chosen: + #1. If all sector, tranSubsector, and technology information is available + #2. If sector and technology information is available + #3. If sector and tranSubsector information is available + mutate(BC_fraction = if_else(is.na(BC_fraction_SST) & is.na(BC_fraction_ST), BC_fraction_SS, + if_else(is.na(BC_fraction_SST), BC_fraction_ST, BC_fraction_SST)), + #Compute emissions coefficients for BC + emiss.coef = emiss.coef * BC_fraction,Non.CO2 = "BC") %>% + select(-BC_fraction, -BC_fraction_SST, -BC_fraction_ST, -BC_fraction_SS) %>% + distinct() + + OC_df <- df %>% + filter(Non.CO2 == "PM2.5") %>% + # Cannot do left_join_error_no_match because there are some NA values that will be retained + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "tranSubsector", "stub.technology" = "technology", "year")) %>% + mutate(OC_fraction_SST = OC_fraction) %>% + select(-BC_fraction, -OC_fraction) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "stub.technology" = "technology", "year")) %>% + mutate(OC_fraction_ST = OC_fraction) %>% + select(-BC_fraction, -OC_fraction, -tranSubsector.y) %>% + rename(tranSubsector = tranSubsector.x) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "tranSubsector", "year")) %>% + mutate(OC_fraction_SS = OC_fraction) %>% + select(-BC_fraction, -OC_fraction, -technology) %>% + #Hierarchy of values to be chosen: + #1. If all sector, tranSubsector, and technology information is available + #2. If sector and technology information is available + #3. If sector and tranSubsector information is available + mutate(OC_fraction = if_else(is.na(OC_fraction_SST) & is.na(OC_fraction_ST), OC_fraction_SS, + if_else(is.na(OC_fraction_SST), OC_fraction_ST, OC_fraction_SST)), + #Compute emissions coefficients for BC + emiss.coef = emiss.coef * OC_fraction, Non.CO2 = "OC") %>% + select(-OC_fraction, -OC_fraction_SST, -OC_fraction_ST, -OC_fraction_SS) %>% + distinct() + + # Bind base year BC/OC fractions to other EFs + df <- bind_rows(df, BC_df, OC_df) + return (df) + +} + +#' compute_BC_OC_elc +#' +#' Helper function to compute BC and OC EFs from PM2.5 and a mapping file with BC OC fraction content by sector/subsector/technology +#' Used for emissions in the electric sector +#' @param df tibble which contains PM2.5 data to be used to get BC and OC data +#' @param BC_OC_assumptions tibble which contains BC and OC fractions +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter left_join rename mutate group_by select summarise_all ungroup +#' @return tibble with BC and OC rows added +#' +compute_BC_OC_elc <- function(df, BC_OC_assumptions) { + #This is specific for the electric gen sector, necessary due to different variable naming conventions. + #There is no data for BC/OC in the base year, so use fractions of PM2.5 to calculate BC/OC emission factors. + #Compute BC/OC emission factors in the base year based on PM2.5 emission factors + #BC + OC is a sub-category of PM2.5, and in some cases most of PM2.5 + + #Note: BC/OC fractions are given for various level of sector, subsector, and stub.technology. + #All levels are not necessarily present for each + + # silence package check notes + BC_fraction <- OC_fraction <- subsector.y <- subsector.x <- technology <- + BC_fraction_SST <- BC_fraction_ST <- BC_fraction_SS <- emiss.coef <- + OC_fraction_SST <- OC_fraction_ST <- OC_fraction_SS <- Non.CO2 <- NULL + + assert_that(is_tibble(df)) + assert_that(has_name(df, "Non.CO2")) + + BC_df <- df %>% + filter(Non.CO2 == "PM2.5") %>% + # Cannot do left_join_error_no_match because there are some NA values that will be retained + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector0" = "subsector", "stub.technology" = "technology", "year")) %>% + mutate(BC_fraction_SST = BC_fraction) %>% + select(-BC_fraction, -OC_fraction) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "stub.technology" = "technology", "year")) %>% + mutate(BC_fraction_ST = BC_fraction) %>% + select(-BC_fraction, -OC_fraction, -subsector.y) %>% + rename(subsector = subsector.x) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector0" = "subsector", "year")) %>% + mutate(BC_fraction_SS = BC_fraction) %>% + select(-BC_fraction, -OC_fraction, -technology) %>% + #Hierarchy of values to be chosen: + #1. If all sector, subsector, and technology information is available + #2. If sector and technology information is available + #3. If sector and subsector information is available + mutate(BC_fraction = if_else(is.na(BC_fraction_SST) & is.na(BC_fraction_ST), BC_fraction_SS, + if_else(is.na(BC_fraction_SST), BC_fraction_ST, BC_fraction_SST)), + #Compute emissions coefficients for BC + emiss.coef = emiss.coef * BC_fraction,Non.CO2 = "BC") %>% + select(-BC_fraction, -BC_fraction_SST, -BC_fraction_ST, -BC_fraction_SS) %>% + distinct() + + OC_df <- df %>% + filter(Non.CO2 == "PM2.5") %>% + # Cannot do left_join_error_no_match because there are some NA values that will be retained + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector0" = "subsector", "stub.technology" = "technology", "year")) %>% + mutate(OC_fraction_SST = OC_fraction) %>% + select(-BC_fraction, -OC_fraction) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "stub.technology" = "technology", "year")) %>% + mutate(OC_fraction_ST = OC_fraction) %>% + select(-BC_fraction, -OC_fraction, -subsector.y) %>% + rename(subsector = subsector.x) %>% + left_join(BC_OC_assumptions, + by = c("supplysector" = "sector", "subsector0" = "subsector", "year")) %>% + mutate(OC_fraction_SS = OC_fraction) %>% + select(-BC_fraction, -OC_fraction, -technology) %>% + #Hierarchy of values to be chosen: + #1. If all sector, subsector, and technology information is available + #2. If sector and technology information is available + #3. If sector and subsector information is available + mutate(OC_fraction = if_else(is.na(OC_fraction_SST) & is.na(OC_fraction_ST), OC_fraction_SS, + if_else(is.na(OC_fraction_SST), OC_fraction_ST, OC_fraction_SST)), + #Compute emissions coefficients for BC + emiss.coef = emiss.coef * OC_fraction, Non.CO2 = "OC") %>% + select(-OC_fraction, -OC_fraction_SST, -OC_fraction_ST, -OC_fraction_SS) %>% + distinct() + + # Bind base year BC/OC fractions to other EFs + df <- bind_rows(df, BC_df, OC_df) + return (df) + +} diff --git a/input/gcamdata/R/pipeline-helpers.R b/input/gcamdata/R/pipeline-helpers.R index 3d4c80b71a..d11e98696e 100644 --- a/input/gcamdata/R/pipeline-helpers.R +++ b/input/gcamdata/R/pipeline-helpers.R @@ -172,6 +172,34 @@ approx_fun <- function(year, value, rule = 1) { } } +#' approx_fun_constant +#' +#' \code{\link{approx}} (interpolation) for use in a dplyr pipeline. +#' +#' @param year Numeric year, in a melted tibble or data frame +#' @param value Numeric value to interpolate +#' @param rule Rule to use; see \code{\link{approx}} and details +#' @details This is a slight change to approx_fun that can be used if there is only one value, not two to interpolate between. +#' @details This function will apply the one value you do have to all other years in a grouping. +#' @return Interpolated values. +#' @importFrom assertthat assert_that +#' @export +#' @examples +#' df <- data.frame(year = 1:5, value = c(1, 2, NA, 4, 5)) +#' approx_fun_constant(df$year, df$value, rule = 2) +approx_fun_constant <- function(year, value, rule = 1) { + assert_that(is.numeric(year)) + assert_that(is.numeric(value)) + + if(rule == 1 | rule == 2) { + tryCatch(stats::approx(as.vector(year), value, rule = rule, xout = year, ties = mean, method = "constant")$y, + error = function(e) NA) + + } else { + stop("Use fill_exp_decay_extrapolate!") + } +} + #' repeat_add_columns #' #' Repeat a data frame for each entry in a second, binding the columns together. diff --git a/input/gcamdata/R/sysdata.rda b/input/gcamdata/R/sysdata.rda index f8123ed5a8..29cb8738c2 100644 Binary files a/input/gcamdata/R/sysdata.rda and b/input/gcamdata/R/sysdata.rda differ diff --git a/input/gcamdata/R/zchunk_L102.nonco2_ceds_R_S_Y.R b/input/gcamdata/R/zchunk_L102.nonco2_ceds_R_S_Y.R index ce37dc2086..c54d997033 100644 --- a/input/gcamdata/R/zchunk_L102.nonco2_ceds_R_S_Y.R +++ b/input/gcamdata/R/zchunk_L102.nonco2_ceds_R_S_Y.R @@ -8,7 +8,7 @@ #' @param ... other optional parameters, depending on command #' @return Depends on \code{command}: either a vector of required inputs, #' a vector of output names, or (if \code{command} is "MAKE") all -#' the generated outputs: \code{L102.ceds_nonco2_tg_R_S_F}, \code{L102.ceds_int_shipping_nonco2_tg_S_F}. +#' the generated outputs: \code{L102.ceds_nonco2_tg_R_S_F}, \code{L102.ceds_GFED_nonco2_tg_C_S_F}, \code{L102.ceds_int_shipping_nonco2_tg_S_F}. #' @details Calculates emissions using CEDS and CMIP data. #' @importFrom assertthat assert_that #' @importFrom dplyr filter mutate select @@ -35,6 +35,7 @@ module_emissions_L102.nonco2_ceds_R_S_Y <- function(command, ...) { "L154.IEA_histfut_data_times_UCD_shares")) } else if(command == driver.DECLARE_OUTPUTS) { return(c("L102.ceds_GFED_nonco2_tg_R_S_F", + "L102.ceds_GFED_nonco2_tg_C_S_F", "L102.ceds_int_shipping_nonco2_tg_S_F")) } else if(command == driver.MAKE) { @@ -156,7 +157,11 @@ module_emissions_L102.nonco2_ceds_R_S_Y <- function(command, ...) { gather_years %>% filter(year %in% emissions.CEDS_YEARS) %>% # Converts kt(gg) to Teragrams - mutate(emissions = emissions * CONV_GG_TG)->L102.CEDS + mutate(emissions = emissions * CONV_GG_TG) ->L102.CEDS + + # Filter for iso's whose emissions will be scaled to CEDS (currently just USA) + L102.CEDS %>% + filter(iso %in% emissions.CEDS_scale) -> L102.CEDS_to_scale # Aggregate by region, GHG, and CEDS sector @@ -172,6 +177,16 @@ module_emissions_L102.nonco2_ceds_R_S_Y <- function(command, ...) { # PRODUCE OUTPUTS # =============== + L102.CEDS_to_scale %>% + add_title("CEDS non-CO2 emissions by country and CEDS sector / fuel / historical year",overwrite = TRUE) %>% + add_units("Tg") %>% + add_comments("An intermediate output used to scale NEI emissions to CEDS at the national level") %>% + add_precursors("emissions/CEDS/BC_total_CEDS_emissions","emissions/CEDS/OC_total_CEDS_emissions","emissions/CEDS/CO_total_CEDS_emissions", + "emissions/CEDS/NH3_total_CEDS_emissions","emissions/CEDS/NMVOC_total_CEDS_emissions","emissions/CEDS/NOx_total_CEDS_emissions", + "emissions/CEDS/SO2_total_CEDS_emissions","emissions/CEDS/ceds_sector_map","emissions/CEDS/ceds_fuel_map", "common/GCAM_region_names", + "common/iso_GCAM_regID","emissions/CEDS/CH4_total_CEDS_emissions","emissions/CEDS/GFED-CMIP6_LUC_emissions","emissions/CEDS/LULUC_to_sector_Mapping","emissions/CEDS/N2O_total_CEDS_emissions", + "L154.IEA_histfut_data_times_UCD_shares") -> + L102.ceds_GFED_nonco2_tg_C_S_F L102.CEDS_GCAM_GFED %>% add_title("CEDS non-CO2 emissions by GCAM region and CEDS sector / fuel / historical year",overwrite = TRUE) %>% @@ -194,9 +209,10 @@ module_emissions_L102.nonco2_ceds_R_S_Y <- function(command, ...) { L102.ceds_int_shipping_nonco2_tg_S_F # verify the calculated data matches the prebuilt version if not a warning - # will be generated and should only be ignored if the underly CEDS data + # will be generated and should only be ignored if the underlying CEDS data # actually changed verify_identical_prebuilt(L102.ceds_GFED_nonco2_tg_R_S_F) + verify_identical_prebuilt(L102.ceds_GFED_nonco2_tg_C_S_F) verify_identical_prebuilt(L102.ceds_int_shipping_nonco2_tg_S_F) @@ -204,10 +220,12 @@ module_emissions_L102.nonco2_ceds_R_S_Y <- function(command, ...) { else { # raw CEDS datasets not available, so we will use the prebuilt version L102.ceds_GFED_nonco2_tg_R_S_F <- prebuilt_data("L102.ceds_GFED_nonco2_tg_R_S_F") + L102.ceds_GFED_nonco2_tg_C_S_F <- prebuilt_data("L102.ceds_GFED_nonco2_tg_C_S_F") L102.ceds_int_shipping_nonco2_tg_S_F <- prebuilt_data("L102.ceds_int_shipping_nonco2_tg_S_F") } - return_data(L102.ceds_GFED_nonco2_tg_R_S_F, L102.ceds_int_shipping_nonco2_tg_S_F) + return_data(L102.ceds_GFED_nonco2_tg_R_S_F, L102.ceds_GFED_nonco2_tg_C_S_F, L102.ceds_int_shipping_nonco2_tg_S_F) + } else { stop("Unknown command") } diff --git a/input/gcamdata/R/zchunk_L112.ceds_ghg_en_R_S_T_Y.R b/input/gcamdata/R/zchunk_L112.ceds_ghg_en_R_S_T_Y.R index 5b9c962ca9..993705f498 100644 --- a/input/gcamdata/R/zchunk_L112.ceds_ghg_en_R_S_T_Y.R +++ b/input/gcamdata/R/zchunk_L112.ceds_ghg_en_R_S_T_Y.R @@ -57,18 +57,23 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { "L1324.in_EJ_R_Off_road_F_Y", "L1325.in_EJ_R_chemical_F_Y", "L1326.in_EJ_R_aluminum_Yh", + "L270.nonghg_tg_state_refinery_F_Yb", FILE = "emissions/CEDS/ceds_sector_map", FILE = "emissions/CEDS/ceds_fuel_map", # EPA scaling process 2020 FILE = "emissions/EPA_country_map", FILE = "emissions/EPA/EPA_2019_raw", FILE = "emissions/EPA_CH4N2O_map", - FILE = "emissions/GCAM_EPA_CH4N2O_energy_map")) + FILE = "emissions/GCAM_EPA_CH4N2O_energy_map", + # BC OC assumption files + FILE = "gcam-usa/emissions/BC_OC_assumptions", + FILE = "gcam-usa/emissions/BCOC_PM25_ratios")) } else if(command == driver.DECLARE_OUTPUTS) { return(c("L111.nonghg_tg_R_en_S_F_Yh", "L111.nonghg_tgej_R_en_S_F_Yh_infered_combEF_AP", "L112.ghg_tg_R_en_S_F_Yh", "L112.ghg_tgej_R_en_S_F_Yh_infered_combEF_AP", + "L112.in_EJ_R_en_S_F_Yh_calib_all_baseenergy", "L113.ghg_tg_R_an_C_Sys_Fd_Yh", "L115.nh3_tg_R_an_C_Sys_Fd_Yh", "L121.nonco2_tg_R_awb_C_Y_GLU", @@ -108,6 +113,14 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { L112.CEDS_intl_shipping <- get_data(all_data, "L102.ceds_int_shipping_nonco2_tg_S_F") Int_shipping_IEA_EIA <- get_data(all_data, "L154.IEA_histfut_data_times_UCD_shares") %>% filter(UCD_category=="trn_international ship") + #Get NEI data for crude oil and natural gas, and BC OC fractions for this + NEI_tg_oilgas_state_Yb <- get_data(all_data, "L270.nonghg_tg_state_refinery_F_Yb") %>% filter(sector == "NG_production_distribution" | sector == "petroleum_production") + BC_OC_assumptions <- get_data(all_data, "gcam-usa/emissions/BC_OC_assumptions") + BCOC_PM25_ratios <- get_data(all_data, "gcam-usa/emissions/BCOC_PM25_ratios") %>% + # removing columns we do not use, and sectors that aren't mapped to GCAM sectors + select( -c( "Region", "Gains_Sector" ) ) %>% + filter( !is.na( sector ) ) + # Load required inputs iso_GCAM_regID <- get_data(all_data, "common/iso_GCAM_regID") @@ -376,7 +389,109 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { # Filter down to combustion emissions plus fugitive process emissions from combustion resource production (out_resources) L112.CEDS_GCAM %>% filter(CEDS_agg_fuel != "process" | CEDS_agg_sector %in% c("oil_gas", "coal")) -> - L112.CEDS_GCAM_emissions + L112.CEDS_GCAM_emissions_comb + + # USA oil_gas + # ---------------------------------------- + # Replace CEDS oil_gas emissions with those from NEI for GCAM region 1, USA + # Aggregate natural gas production and distribution, and petroleum production NEI emissions nationally + # to get oil_gas emissions for USA + NEI_tg_oilgas_USA_Yb.noBCOC <- NEI_tg_oilgas_state_Yb %>% + group_by(Non.CO2, year) %>% + mutate(value=sum(value)) %>% + # We want one value for each pollutant and year + distinct(Non.CO2,year,value) %>% + ungroup() %>% + # add columns that specify what sector / tech these emissions are (necessary for BC OC function) + # since we are aggregated natural gas and oil production, and they have the same BC OC fractions, + # we just need to assign either natural gas or oil as the sector + mutate(supplysector = "petroleum_production", subsector = as.character(NA), stub.technology = as.character(NA)) %>% + # these are input emissions, not emission coefficients. Just naming it this for use in compute_BC_OC + rename(emiss.coef = value) + + # Use fractions of PM2.5 to calculate BC/OC emissions. + # We need to modify the BC_OC_assumptions table, as the BCOC_PM25_ratios table has updated values that are time dependent + # If there are sector/subsector/tech combos that are in BCOC_PM25_ratios, we want to replace those entries in + # the BC_OC_assumptions table. We also need to extend the data. + # Extrapolate the data to future model years, and format the table + BCOC_PM25_ratios_ext <- BCOC_PM25_ratios %>% + gather_years() %>% + complete(nesting(Parameter,sector,subsector,technology), year = MODEL_YEARS) %>% + # extrapolate missing years + group_by(Parameter,sector,subsector,technology) %>% + mutate(value = approx_fun(year, value, rule = 2)) %>% + ungroup() %>% + spread( Parameter, value ) %>% + rename( "BC_fraction" = `BC Fraction`, + "OC_fraction" = `OC Fraction`) + + BC_OC_assumptions_ext <- BC_OC_assumptions %>% + mutate( year = min( MODEL_BASE_YEARS ) ) %>% + complete(nesting(sector,subsector,technology, BC_fraction, OC_fraction), year = MODEL_YEARS) + + # Join the tables, keeping values from BC_OC_assumptions_ext that do not appear in BCOC_PM25_ratios + BC_OC_assumptions_years <- BC_OC_assumptions_ext %>% + anti_join( BCOC_PM25_ratios_ext, by = c("sector", "subsector", "technology", "year") ) %>% + # bind to BCOC_PM25_assumptions + bind_rows( BCOC_PM25_ratios_ext ) %>% + # since CEDS has years between model base years, we want to fill this table in + complete(nesting(sector,subsector,technology), year = HISTORICAL_YEARS) %>% + # extrapolate missing years + group_by(sector,subsector,technology) %>% + mutate(BC_fraction = approx_fun(year, BC_fraction, rule = 2), + OC_fraction = approx_fun(year, OC_fraction, rule = 2)) %>% + ungroup() + + # Compute BC and OC EFs based off of PM2.5 + NEI_tg_oilgas_USA_Yb <- compute_BC_OC(NEI_tg_oilgas_USA_Yb.noBCOC, BC_OC_assumptions_years) %>% + # change emiss.coef to emissions, since that is what these are + rename(emissions = emiss.coef) %>% + # select columns we want to keep + select(Non.CO2, year, emissions) + # NA values are BC and OC for 2016 and 2017, and will be removed down the line + + # Filter oil_gas, USA, out of the CEDS emissions + L112.CEDS_GCAM_emissions_NoOG_USA <- L112.CEDS_GCAM_emissions_comb %>% + filter(CEDS_agg_sector != "oil_gas" | GCAM_region_ID != 1 ) + + # Make a table that has oil_gas emissions for USA for the years and pollutants not in NEI + # We will keep these from CEDS + `%!in%` <- Negate(`%in%`) + L112.CEDS_GCAM_emissions_OG_USA_keep <- L112.CEDS_GCAM_emissions_comb %>% + filter(CEDS_agg_sector == "oil_gas", GCAM_region_ID == 1, + Non.CO2 %!in% unique(NEI_tg_oilgas_USA_Yb$Non.CO2) | + year %!in% unique(NEI_tg_oilgas_USA_Yb$year), + # we also want to remove years before 1990, and just use NEI 1990 values pulled back + # for all pollutants other than the ones in this table (CH4 and N2O) to avoid + # a discontinuity between CEDS and NEI + year >= min(NEI_tg_oilgas_USA_Yb$year)) + + # Make a table that has oil_gas emissions for USA for the years and pollutants in NEI + # We will replace the emissions in CEDS with those from NEI, using the structure from the CEDS table + OilGas_structure <- L112.CEDS_GCAM_emissions_OG_USA_keep %>% + select(-c("Non.CO2","emissions")) %>% + distinct() + + L112.CEDS_GCAM_emissions_pull_back <- NEI_tg_oilgas_USA_Yb %>% + # filter for HISTORICAL_YEARS so left_join_error_no_match works + filter(year %in% HISTORICAL_YEARS) %>% + left_join_error_no_match(OilGas_structure, by="year") %>% + # bind back the table that has CH4 and N2O CEDS oil_gas emissions + bind_rows(L112.CEDS_GCAM_emissions_OG_USA_keep) + + # Filter the table for the oldest year we have, and apply those values for the previous historical years + L112.CEDS_GCAM_emissions <- L112.CEDS_GCAM_emissions_pull_back %>% + filter(year == min(year)) %>% + # add in the historical years for each entry + complete(nesting(Non.CO2, GCAM_region_ID, CEDS_agg_sector, CEDS_agg_fuel), year = HISTORICAL_YEARS) %>% + # extrapolate missing years + group_by(Non.CO2, GCAM_region_ID, CEDS_agg_sector, CEDS_agg_fuel) %>% + mutate(emissions = approx_fun_constant(year, emissions, rule = 2)) %>% + ungroup() %>% + # remove years we have in the dataframe above, since those change over time + filter(year %!in% L112.CEDS_GCAM_emissions_pull_back$year) %>% + # bind back the dataframe that has the other historical years, and the table with all other sector / region emissions + bind_rows(L112.CEDS_GCAM_emissions_pull_back, L112.CEDS_GCAM_emissions_NoOG_USA) # PREPARE ENERGY FOR MATCHING TO EMISSIONS # ---------------------------------------- @@ -561,7 +676,8 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { mutate(subsector = if_else(supplysector == "iron and steel", main.fuel, subsector), CEDS_agg_fuel = if_else(supplysector == "iron and steel", CEDS_agg_fuel_remapped, CEDS_agg_fuel)) %>% group_by(GCAM_region_ID, year, supplysector, subsector, stub.technology, CEDS_agg_sector, CEDS_agg_fuel) %>% - summarise(energy = sum(energy)) -> + summarise(energy = sum(energy)) %>% + ungroup() -> L112.in_EJ_R_en_S_F_Yh_calib_all_baseenergy L112.nonco2_tg_R_en_S_F_Yh %>% @@ -1488,7 +1604,8 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { "L101.in_EJ_R_en_Si_F_Yh", "L1326.in_EJ_R_indenergy_F_Yh", "L1323.in_EJ_R_iron_steel_F_Y", "L1324.in_EJ_R_Off_road_F_Y", "L1325.in_EJ_R_chemical_F_Y", "L1326.in_EJ_R_aluminum_Yh","emissions/CEDS/CEDS_sector_tech_combustion_revised", "emissions/mappings/UCD_techs_emissions_revised","L154.IEA_histfut_data_times_UCD_shares", - "emissions/CEDS/gains_iso_sector_emissions","emissions/CEDS/gains_iso_fuel_emissions") -> + "emissions/CEDS/gains_iso_sector_emissions","emissions/CEDS/gains_iso_fuel_emissions", + "L270.nonghg_tg_state_refinery_F_Yb", "gcam-usa/emissions/BC_OC_assumptions", "gcam-usa/emissions/BCOC_PM25_ratios") -> L111.nonghg_tg_R_en_S_F_Yh L111.nonghg_tgej_R_en_S_F_Yh_infered_combEF_AP %>% @@ -1512,7 +1629,8 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { "L1325.in_EJ_R_chemical_F_Y", "L1326.in_EJ_R_aluminum_Yh","emissions/mappings/Trn_subsector_revised", "L101.in_EJ_R_en_Si_F_Yh", "emissions/mappings/Trn_subsector_revised", "emissions/EPA/EPA_2019_raw", "emissions/EPA_CH4N2O_map", "emissions/CEDS/CEDS_sector_tech_combustion_revised","emissions/mappings/UCD_techs_emissions_revised","L154.IEA_histfut_data_times_UCD_shares", - "emissions/CEDS/gains_iso_sector_emissions","emissions/CEDS/gains_iso_fuel_emissions") -> + "emissions/CEDS/gains_iso_sector_emissions","emissions/CEDS/gains_iso_fuel_emissions", + "L270.nonghg_tg_state_refinery_F_Yb", "gcam-usa/emissions/BC_OC_assumptions", "gcam-usa/emissions/BCOC_PM25_ratios") -> L112.ghg_tg_R_en_S_F_Yh L112.ghg_tgej_R_en_S_F_Yh_infered_combEF_AP %>% @@ -1545,9 +1663,24 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { "L111.Prod_EJ_R_F_Yh", "emissions/EPA_country_map", "emissions/CEDS/CEDS_sector_tech_combustion_revised", - "emissions/mappings/UCD_techs_emissions_revised") -> + "emissions/mappings/UCD_techs_emissions_revised", + "L270.nonghg_tg_state_refinery_F_Yb", + "gcam-usa/emissions/BC_OC_assumptions", + "gcam-usa/emissions/BCOC_PM25_ratios") -> L112.ghg_tgej_R_en_S_F_Yh_infered_combEF_AP + L112.in_EJ_R_en_S_F_Yh_calib_all_baseenergy %>% + add_title("GCAM energy by GCAM region / sector / subsector / technology / historical year also mapped to CEDS sector / fuel") %>% + add_units("EJ") %>% + add_comments("Intermediate input that will be used to calculate new EFs for resource production in the USA in L273.nonghg_refinery_USA") %>% + add_legacy_name("L112.in_EJ_R_en_S_F_Yh_calib_all_baseenergy") %>% + add_precursors("L101.in_EJ_R_en_Si_F_Yh", + "energy/mappings/UCD_techs", + "energy/calibrated_techs_bld_det", + "emissions/mappings/Trn_subsector", + "emissions/CEDS/CEDS_sector_tech_combustion", + "emissions/CEDS/CEDS_sector_tech_combustion_revised") -> + L112.in_EJ_R_en_S_F_Yh_calib_all_baseenergy L113.ghg_tg_R_an_C_Sys_Fd_Yh %>% add_title("Animal GHG emissions (CH4 and N2O) by GCAM region / sector / technology / historical year") %>% @@ -1687,7 +1820,7 @@ module_emissions_L112.ceds_ghg_en_R_S_T_Y <- function(command, ...) { ) -> L131.nonco2_tg_R_prc_S_S_Yh - return_data(L111.nonghg_tg_R_en_S_F_Yh, L111.nonghg_tgej_R_en_S_F_Yh_infered_combEF_AP, L112.ghg_tg_R_en_S_F_Yh, L112.ghg_tgej_R_en_S_F_Yh_infered_combEF_AP, L113.ghg_tg_R_an_C_Sys_Fd_Yh, L115.nh3_tg_R_an_C_Sys_Fd_Yh, L121.nonco2_tg_R_awb_C_Y_GLU, + return_data(L111.nonghg_tg_R_en_S_F_Yh, L111.nonghg_tgej_R_en_S_F_Yh_infered_combEF_AP, L112.ghg_tg_R_en_S_F_Yh, L112.ghg_tgej_R_en_S_F_Yh_infered_combEF_AP, L112.in_EJ_R_en_S_F_Yh_calib_all_baseenergy, L113.ghg_tg_R_an_C_Sys_Fd_Yh, L115.nh3_tg_R_an_C_Sys_Fd_Yh, L121.nonco2_tg_R_awb_C_Y_GLU, L121.AWBshare_R_C_Y_GLU, L122.ghg_tg_R_agr_C_Y_GLU, L122.EmissShare_R_C_Y_GLU, L124.nonco2_tg_R_grass_Y_GLU, L124.nonco2_tg_R_forest_Y_GLU, L124.deforest_coefs, L131.nonco2_tg_R_prc_S_S_Yh,L125.bcoc_tgbkm2_R_grass_2000,L125.bcoc_tgbkm2_R_forest_2000,L125.deforest_coefs_bcoc) } else { diff --git a/input/gcamdata/R/zchunk_L169.nonghg_NEI_scaling_USA.R b/input/gcamdata/R/zchunk_L169.nonghg_NEI_scaling_USA.R new file mode 100644 index 0000000000..22c34a6047 --- /dev/null +++ b/input/gcamdata/R/zchunk_L169.nonghg_NEI_scaling_USA.R @@ -0,0 +1,542 @@ +#' module_gcamusa_L169.nonghg_NEI_scaling_USA +#' +#' Further processes the NEI data to get a full timeseries for 1990 - 2017. +#' The NEI data is scaled to EPA Tier 1 for HIGHWAY VEHICLES, OFF-HIGHWAY, and FUEL COMB. ELEC. UTIL. +#' It is linearly interpolated between NEI years (2008 - 2017), and extrapolated back to 1990 based on +#' the 2008 sector and fuels shares. +#' +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L169.NEI_1990_2017_GCAM_sectors_unscaled} +#' @details Non-CO2 emissions from NEI interpolated and scaled to EPA Tier 1 +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select group_by +#' @importFrom tidyr gather spread +#' @author MAW December 2021 + +module_gcamusa_L169.nonghg_NEI_scaling_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE="gcam-usa/emissions/state_tier1_caps", + FILE="gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2008", + FILE="gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2011", + FILE="gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2014", + FILE="gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2017", + FILE="gcam-usa/emissions/CEDS_to_USEPA_Tier1_Mapping", + FILE="gcam-usa/emissions/CEDS_to_GCAM_sector_mapping", + FILE="gcam-usa/emissions/NEI_pollutant_mapping", + "L102.ceds_GFED_nonco2_tg_C_S_F")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L169.NEI_1990_2017_GCAM_sectors_unscaled")) + } else if(command == driver.MAKE) { + + + # Silence package check. + X <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + state_tier1_caps <- get_data(all_data, "gcam-usa/emissions/state_tier1_caps", strip_attributes = T) + NEI_emissions_to_CEDS_adj_2008 <- get_data(all_data, "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2008", strip_attributes = T) %>% + mutate(year = 2008) + NEI_emissions_to_CEDS_adj_2011 <- get_data(all_data, "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2011", strip_attributes = T) %>% + mutate(year = 2011) + NEI_emissions_to_CEDS_adj_2014 <- get_data(all_data, "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2014", strip_attributes = T) %>% + mutate(year = 2014) + NEI_emissions_to_CEDS_adj_2017 <- get_data(all_data, "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2017", strip_attributes = T) %>% + mutate(year = 2017) + CEDS_to_USEPA_Tier1_Mapping <- get_data(all_data, "gcam-usa/emissions/CEDS_to_USEPA_Tier1_Mapping", strip_attributes = T) + CEDS_to_GCAM_sector_mapping <- get_data(all_data, "gcam-usa/emissions/CEDS_to_GCAM_sector_mapping", strip_attributes = T) + NEI_pollutant_mapping <- get_data(all_data, "gcam-usa/emissions/NEI_pollutant_mapping", strip_attributes = T) + L102.ceds_GFED_nonco2_tg_C_S_F <- get_data(all_data, "L102.ceds_GFED_nonco2_tg_C_S_F") + + # Combine NEI data + NEI_emissions_to_CEDS_adj_all <- NEI_emissions_to_CEDS_adj_2008 %>% + bind_rows(NEI_emissions_to_CEDS_adj_2011,NEI_emissions_to_CEDS_adj_2014,NEI_emissions_to_CEDS_adj_2017) + + # ----------------------------------------------------------------------------- + # ====================================== + # ====================================== + # A. Interpolating 2008 - 2017 + # ====================================== + # ====================================== + + # ====================================== + # 1. data and mapping preparation + # ====================================== + # 1.1 preparing EPA Tier1 state level data + state_tier1_caps %>% + # changing units of the EPA Tier1 data to match NEI (Thousand Tons to Tons) + dplyr::mutate_if( is.numeric, dplyr::funs(. * 1000) ) -> state_tier1_tons + + # NA entries become 0 in order for emissions sums to work (otherwise NA is returned) + state_tier1_tons[is.na(state_tier1_tons)] <- 0 + + # creating a dataframe that saves the three tier1 categories that NEI will be scaled to + state_tier1_tons %>% + filter( grepl( 'HIGHWAY VEHICLES|OFF-HIGHWAY|FUEL COMB. ELEC. UTIL.', tier1_description ) ) -> state_tier1_to_scale_to + + # 1.2 preparing NEI data + NEI_emissions_to_CEDS_adj_all %>% + # remove pollutants not in tier1 data + filter( !grepl( 'Carbon Dioxide|Methane|Nitrous Oxide|PM10 Filterable|PM2.5 Filterable', pollutant ) ) %>% + # remove regions not in tier1 data + filter( state %in% gcamusa.STATES ) -> NEI_refined + + # Separating combustion and noncombustion emissions (broadly) and assigning "Process" fuel to noncombustion + NEI_refined_combustion <- NEI_refined %>% + # CEDS sectors that begin with "1A" are the combustion sectors + filter( grepl( "^1A", CEDS_Sector ) ) + + NEI_refined_noncombustion <- NEI_refined %>% + filter( !grepl( "^1A", CEDS_Sector ) ) %>% + mutate( CEDS_Fuel = "Process" ) %>% + # sum emissions by state, sector, year, and pollutant now that they all have the same fuel + group_by( state, pollutant, year, CEDS_Sector, CEDS_Fuel, unit ) %>% + mutate( emissions = sum( emissions ) ) %>% + distinct() + + NEI_refined_all <- NEI_refined_combustion %>% + bind_rows( NEI_refined_noncombustion ) + + # ====================================== + # 2. "OTHER" Tier 1 interpolation + # ====================================== + # Linearly interpolating the Tier 1 categories that are not being scaled + + # 2.1 preparing the data for scaling and interpolation + # mapping the CEDS extended sectors to Tier 1 categories + NEI_refined_all %>% + left_join_error_no_match( CEDS_to_USEPA_Tier1_Mapping, by = c( "CEDS_Sector" ) ) -> NEI_tier1 + + NEI_tier1 %>% + # removing the three Tier1 categories that are not being linearly interpolated + filter( !grepl( 'HIGHWAY VEHICLES|OFF-HIGHWAY|FUEL COMB. ELEC. UTIL.', tier1_description ) ) -> NEI_othertier1 + + # NAs must become 0 here, or else values will later be interpolated for sectors that did not previously exist for some years + NEI_othertier1[is.na(NEI_othertier1)] <- 0 + + # Interpolate data linearly between years + NEI_othertier1 %>% + complete( nesting( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ), year = 2008:2017 ) %>% + group_by( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ) %>% + mutate( emissions = approx_fun(year, emissions, rule = 2) ) %>% + ungroup() %>% + filter( !is.na(emissions)) -> NEI_othertier1_2008_2017 + + # ====================================== + # 3 NEI to Tier 1 Scaling + # ====================================== + # 3.1 preparing the data for scaling and interpolation + # creating a dataframe that only include the three tier1 categories of interest (referred to as "hw tiers") + NEI_tier1 %>% + # keeping the three Tier1 categories that are being scaled + filter( grepl( 'HIGHWAY VEHICLES|OFF-HIGHWAY|FUEL COMB. ELEC. UTIL.', tier1_description ) ) -> NEI_to_scale + + # 3.2 making adjustments to onroad sector names + NEI_to_scale[is.na(NEI_to_scale)] <- 0 #NA entries become 0 in order for emissions sums to work (otherwise NA is returned) + + # Make dataframe long, remove onroad sectors (these will be processed differently), and interpolate. + NEI_to_scale %>% + filter( !grepl("1A3b", CEDS_Sector ) ) %>% + complete( nesting( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ), year = 2008:2017 ) %>% + group_by( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ) %>% + mutate( emissions = approx_fun(year, emissions, rule = 2) ) %>% + ungroup() %>% + filter( !is.na(emissions)) -> NEI_to_scale_nonroad_long + + # Any CEDS Sector that begins with "1A3b" needs to be renamed to just "1A3bi_Road", and the emissions summed. + # This is because there are discrepancies in road sector names between NEI years that result in double counting + # when we interpolate. The specific CEDS sectors for Road are not used later, so this does not impact anything. + # User can change whether or not to include dust in constants.R + if( gcamusa.DUST == FALSE ){ + + NEI_to_scale_renamed_road <- NEI_to_scale %>% + filter( CEDS_Fuel != "Dust", + grepl("1A3bi", CEDS_Sector ) ) %>% + group_by( state, year, pollutant, CEDS_Fuel, tier1_description, unit ) %>% + mutate( emissions = sum(emissions) ) %>% + distinct() %>% + mutate( "CEDS_Sector" = "1A3bi_Road" ) %>% + complete( nesting( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ), year = 2008:2017 ) %>% + distinct() + + } else { + + # create a dataframe that has only onroad combustion emissions + NEI_to_scale_renamed_road_no_dust <- NEI_to_scale %>% + filter( grepl("1A3bi", CEDS_Sector ) ) %>% + group_by( state, year, pollutant, CEDS_Fuel, tier1_description, unit ) %>% + mutate( emissions = sum(emissions) ) %>% + distinct() %>% + mutate( "CEDS_Sector" = "1A3bi_Road" ) %>% + complete( nesting( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ), year = 2008:2017 ) %>% + distinct() + + # create a dataframe that has only dust emissions, which will be assigned fuel shares + NEI_to_scale_renamed_road_dust <- NEI_to_scale %>% + filter( CEDS_Fuel == "Dust", + # there are some non-PM pollutants that have 0 emissions, remove these + grepl( "PM", pollutant ) ) %>% + group_by( state, year, pollutant, CEDS_Fuel, tier1_description, unit ) %>% + mutate( emissions = sum(emissions) ) %>% + distinct() %>% + mutate( "CEDS_Sector" = "1A3bi_Road" ) %>% + distinct() %>% + ungroup() + + # calculate fuel shares from the combustion onroad emissions + # Note: Dan (EPA-ORD) suggested miles based if possible, but that can't be done at this step + NEI_onroad_fuel_shares <- NEI_to_scale_renamed_road_no_dust %>% + filter( grepl( "PM", pollutant ), + # remove NA emissions. The shares will be applied to years we have, and emissions interpolatedv later + !is.na( emissions ) ) %>% + group_by( state, pollutant, year ) %>% + mutate( agg_emissions = sum( emissions ), + fuel_share = emissions / agg_emissions ) %>% + select( c( state, pollutant, CEDS_Fuel, year, fuel_share ) ) %>% + ungroup() + + NEI_dust_emissions_to_fuels <- NEI_to_scale_renamed_road_dust %>% + # removing CEDS fuel since this will be replaces + select( -CEDS_Fuel ) %>% + # can't use left_join_error_no_match because we are adding rows due to adding fuels + left_join( NEI_onroad_fuel_shares, by = c( "state", "pollutant", "year" ) ) %>% + # sharing out the emissions + mutate( emissions = emissions * fuel_share ) %>% + select( -fuel_share ) %>% + complete( nesting( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ), year = 2008:2017 ) %>% + distinct() + + # combine the combustion and dust dataframes, and aggregate emissions + # Now, PM emissions include dust + NEI_to_scale_renamed_road <- NEI_to_scale_renamed_road_no_dust %>% + bind_rows( NEI_dust_emissions_to_fuels ) %>% + group_by( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit, year ) %>% + mutate( emissions = sum( emissions ) ) %>% + ungroup() %>% + distinct() + + } + + NEI_to_scale_renamed_road %>% + group_by( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ) %>% + mutate( emissions = approx_fun(year, emissions, rule = 2) ) %>% + ungroup() %>% + distinct() -> NEI_to_scale_renamed_road_NAs + + # There are NAs in some instances (1A3bi_Road emissions for ND natural gas (all pollutants), + # ID Dust (EV emissions) (CO, NOx, PM2.5, PM10), CT natural gas (all), and CA natural gas (SO2) ) for all but one year. + # In this case, using approx_fun results in all NAs for that given grouping, removing emissions from + # the year we have data for. We need to apply the value we have for all years or else we get emissions + # sum issues down the line. + NEI_to_scale_renamed_road_NAs %>% + # these instances can be found where emissions are NA + filter( is.na( emissions ) ) %>% + # we want to save only the unique state / pollutant / sector / fuel combinations from here, and then + # pull them from NEI_to_scale, retaining the values we do have + distinct( state, pollutant, CEDS_Sector, CEDS_Fuel ) %>% + left_join( NEI_to_scale_renamed_road, by = c( "state", "pollutant", "CEDS_Sector", "CEDS_Fuel" ) ) -> NEI_road_all_NAs + + # Remove these entries from NEI_to_scale_renamed_road_NAs + NEI_to_scale_renamed_road_NAs %>% + anti_join( NEI_road_all_NAs, + by = c("state", "pollutant", "CEDS_Sector", "CEDS_Fuel", + "tier1_description", "unit", "year") ) -> NEI_to_scale_renamed_road_no_NAs + + # To the dataframe that has several NAs, we want to use the approx_fun with the "constant" method + NEI_road_all_NAs %>% + group_by( state, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit ) %>% + mutate( emissions = approx_fun_constant(year, emissions, rule = 2) ) %>% + ungroup() -> NEI_to_scale_renamed_road_constant + + + # bind the two road and one nonroad tables + NEI_to_scale_renamed_road_no_NAs %>% + bind_rows( NEI_to_scale_renamed_road_constant, NEI_to_scale_nonroad_long ) -> NEI_to_scale_all + + # 3.3 Scaling + # calculate shares for NEI years by year, state, pollutant, and tier1 description + NEI_to_scale_all %>% + group_by( state, tier1_description, pollutant, year ) %>% + mutate( share = emissions/sum( emissions ) ) %>% + ungroup() -> NEI_shares + + # change NaN shares to 0- this happens when an entry has 0 emissions + NEI_shares$share[is.na(NEI_shares$share)] <- 0 + + # process the state level emissions data so that we can multiply total state emissions by NEI share values + # this will be done by state, year, pollutant, and tier1 description + state_tier1_to_scale_to %>% + group_by( state, tier1_description, pollutant_code ) %>% + # getting a total emissions value for each year, by group + mutate( total_emissions2008 = sum( emissions08 ), + total_emissions2009 = sum( emissions09 ), + total_emissions2010 = sum( emissions10 ), + total_emissions2011 = sum( emissions11 ), + total_emissions2012 = sum( emissions12 ), + total_emissions2013 = sum( emissions13 ), + total_emissions2014 = sum( emissions14 ), + total_emissions2015 = sum( emissions15 ), + total_emissions2016 = sum( emissions16 ), + total_emissions2017 = sum( emissions17 ) ) %>% + select( c(state, tier1_description, pollutant_code, total_emissions2008, total_emissions2009, total_emissions2010, total_emissions2011, + total_emissions2012, total_emissions2013, total_emissions2014, total_emissions2015, total_emissions2016, total_emissions2017 ) ) %>% + gather( id, total_emissions, -c( state, tier1_description, pollutant_code ) ) %>% + ungroup() %>% + separate( id, into = c("id", "year"), sep = "emissions" ) %>% + select( -id ) %>% + mutate( year = as.integer( year ) ) -> state_tier1_pollutant_emissions + + # map the emissions from EPA state Tier 1 to NEI shares, then multiply scale emissions + NEI_shares %>% + left_join_error_no_match( NEI_pollutant_mapping, by = c( "pollutant" = "NEI_pollutant" ) ) %>% + mutate( Non.CO2 = gsub( "NMVOC", "VOC", Non.CO2 ), + Non.CO2 = gsub( "NOx", "NOX", Non.CO2 ), + Non.CO2 = gsub( "PM2.5", "PM25", Non.CO2 ) ) %>% + left_join_error_no_match( state_tier1_pollutant_emissions, by = c( "state", "tier1_description", "year", "Non.CO2" = "pollutant_code" ) ) %>% + mutate( emissions = ( total_emissions * share ) ) %>% + select( -c( share, total_emissions, Non.CO2 ) ) -> NEI_scaled_2008_2017 + + # ====================================== + # 4. Combining Tables and Formatting + # ====================================== + # rebinding all tiers + NEI_othertier1_2008_2017 %>% + bind_rows( NEI_scaled_2008_2017 ) -> NEI_2008_2017 + + # Map to GCAM sectors + NEI_2008_2017 %>% + # use left_join because some CEDS_Sectors map to NA GCAM sectors, as these emissions are not included in GCAM. + # Note: could map to "not used in GCAM" instead so LJENM works, and then filter out + left_join( CEDS_to_GCAM_sector_mapping, by = "CEDS_Sector" ) %>% + select( -c( CEDS_sector_code, IPCC_sector_code, IPCC_sector_description, Notes ) ) %>% + ungroup() -> NEI_2008_2017_GCAM + + # assign Process CEDS_Fuel to process sectors + NEI_2008_2017_GCAM %>% + filter( !grepl( "^1A", CEDS_Sector ) ) %>% + mutate( CEDS_Fuel = "Process" ) -> GCAM_Process_2008_2017 + + NEI_2008_2017_GCAM %>% + filter( grepl( "^1A", CEDS_Sector ) ) -> GCAM_Combustion_2008_2017 + + GCAM_Process_2008_2017 %>% + bind_rows( GCAM_Combustion_2008_2017 ) %>% + distinct( state, year, pollutant, CEDS_Sector, CEDS_Fuel, tier1_description, unit, emissions, GCAM_sector ) -> NEI_2008_2017_final + + + # ====================================== + # ====================================== + # B. Extrapolating & Scaling 1990 - 2007 + # ====================================== + # ====================================== + + # ====================================== + # 1. data and mapping preparation + # ====================================== + # 1.1 preparing CEDS data + # Converting from Tg to short ton to match NEI units + L102.ceds_GFED_nonco2_tg_C_S_F %>% + mutate( emissions = emissions / CONV_TST_TG * 1000 ) %>% + mutate( units = "TON" ) -> CEDS_ton + + # 1.2 preparing the NEI data + NEI_2008_2017_final %>% + # filtering for 2008, as the sector / fuel / pollutant distribution from this year will be carried back + filter( year == 2008, + # calculate shares for state and tier1 description + # because the state tier1 caps don't include domestic shipping and other natural (other natural is not used in GCAM), + # we have to remove these for the shares to work properly + # other natural is not used so this is fine, domestic shipping is addressed later + !grepl( "DOMESTIC SHIPPING|OTHER NATURAL", tier1_description ) ) %>% + group_by( state, pollutant, tier1_description ) %>% + mutate( share = emissions/sum( emissions ) ) %>% + ungroup() -> NEI_2008_tier1_shares + + # 1.3 preparing the EPA Tier 1 data + # now we need to process the state level emissions data, so that we can multiply EPA Tier 1 emissions by NEI share values + # this will be done by state and tier1 description + # we need a value of total emissions, by state, by year, by tier1 description + # state_tier1 caps include Wildfires and Prescribed Fires, which is not included in the NEI output + # we are also removing storage & transport for now, as no CEDS sectors are mapped to it + # so we need to remove these from the state tier1 dataframe + state_tier1_tons %>% + filter( !grepl( "WILDFIRES|PRESCRIBED FIRES|STORAGE & TRANSPORT", tier1_description ) ) %>% + group_by( state, pollutant_code, tier1_description ) %>% + mutate( total_emissions2008 = sum( emissions08 ), + total_emissions2007 = sum( emissions07 ), + total_emissions2006 = sum( emissions06 ), + total_emissions2005 = sum( emissions05 ), + total_emissions2004 = sum( emissions04 ), + total_emissions2003 = sum( emissions03 ), + total_emissions2002 = sum( emissions02 ), + total_emissions2001 = sum( emissions01 ), + total_emissions2000 = sum( emissions00 ), + total_emissions1999 = sum( emissions99 ), + total_emissions1998 = sum( emissions98 ), + total_emissions1997 = sum( emissions97 ), + total_emissions1996 = sum( emissions96 ), + total_emissions1990 = sum( emissions90 )) %>% + distinct( state, pollutant_code, tier1_description, .keep_all = T ) %>% + select( c(state, pollutant_code, tier1_description, total_emissions2007, total_emissions2006, total_emissions2005, + total_emissions2004, total_emissions2003, total_emissions2002, total_emissions2001, total_emissions2000, + total_emissions1999, total_emissions1998, total_emissions1997, total_emissions1996, total_emissions1990 ) ) %>% + gather( id, total_emissions, -c( state, pollutant_code, tier1_description ) ) %>% + ungroup() %>% + separate( id, into = c("id", "year"), sep = "emissions" ) %>% + select( -id ) %>% + mutate( year = as.integer( year ) ) %>% + # interpolate emissions for missing years + complete( nesting( state, pollutant_code, tier1_description ), year = 1990:2007 ) %>% + group_by( state, pollutant_code, tier1_description ) %>% + mutate( total_emissions = approx_fun(year, total_emissions, rule = 2) ) %>% + ungroup() %>% + # make data long again + spread( year, total_emissions ) %>% + # changing some pollutant names for mapping purposes + mutate( pollutant_code = gsub( "NOX", "NOx", pollutant_code ), + pollutant_code = gsub( "PM25", "PM2.5", pollutant_code ), + pollutant_code = gsub( "VOC", "NMVOC", pollutant_code ) ) %>% + # map to NEI pollutant names + left_join_error_no_match( NEI_pollutant_mapping, by = c( "pollutant_code" = "Non.CO2" ) ) %>% + select( -pollutant_code ) -> state_tier1_total_emissions + + # ====================================== + # 2. Scaling + # ====================================== + # 2.1 scaling the NEI data to EPA Tier 1 + # map the total emissions value to NEI_tier1_shares, then multiply total_emissions by the share + NEI_2008_tier1_shares %>% + left_join_error_no_match( state_tier1_total_emissions, by = c( "state", "pollutant" = "NEI_pollutant", "tier1_description" ) ) %>% + # now we need to multiply every EPA year column by the NEI share value from 2008 + mutate( `emissions2007` = ( `2007` * share ), + `emissions2006` = ( `2006` * share ), + `emissions2005` = ( `2005` * share ), + `emissions2004` = ( `2004` * share ), + `emissions2003` = ( `2003` * share ), + `emissions2002` = ( `2002` * share ), + `emissions2001` = ( `2001` * share ), + `emissions2000` = ( `2000` * share ), + `emissions1999` = ( `1999` * share ), + `emissions1998` = ( `1998` * share ), + `emissions1997` = ( `1997` * share ), + `emissions1996` = ( `1996` * share ), + `emissions1995` = ( `1995` * share ), + `emissions1994` = ( `1994` * share ), + `emissions1993` = ( `1993` * share ), + `emissions1992` = ( `1992` * share ), + `emissions1991` = ( `1991` * share ), + `emissions1990` = ( `1990` * share ) ) %>% + # deselect columns no longer needed + select( -c( "year", "emissions", "tier1_description", "share", "1990", "1991", "1992", "1993", "1994", "1995", + "1996", "1997", "1998", "1999", "2000", "2001", "2002", "2003", "2004", "2005", "2006", "2007" ) ) -> NEI_scaled_to_state_emissions_NAs + + # TODO: scaling issue: some states/tier1 descriptions have emissions that do not have emissions in NEI + # At this point, we will remove all NAs from the table, but the scaling issue should be remediated in the future + + # Entries with NA emissions in 2007 are removed. If there are NAs in one year, they are in all years. + NEI_scaled_to_state_emissions_NAs %>% + filter(!is.na(emissions2007), + # remove NA GCAM_sectors. This is CEDS 5C_Open-burning-land-clearing, which has no assocaited GCAM sector. + !is.na(GCAM_sector)) -> NEI_scaled_to_state_emissions + + #Other NA entries (emissions) become 0 in order for emissions sums to work (otherwise NA is returned) + NEI_scaled_to_state_emissions[is.na(NEI_scaled_to_state_emissions)] <- 0 + + # 2.1 scaling NEI Domestic Shipping to CEDS + # We have emissions from domestic shipping from NEI for 2008 - 2017 + # It is not included in the Tier1 state level data, so we scale to CEDS emissions instead + # Filter the CEDS data for domestic shipping, the years we need, and when there are non-zero emissions + CEDS_ton %>% + filter( sector == "1A3dii_Domestic-navigation", + year >= 1990, + year <= 2007, + emissions > 0 ) %>% + group_by( year, Non.CO2 ) %>% + mutate( emissions = sum(emissions) ) %>% + ungroup() %>% + distinct( year, Non.CO2, emissions ) -> CEDS_domestic_ship + + # Calculate shares of Domestic Shipping emissions by pollutant + # This way we can share out the CEDS emissions by pollutant to each state + NEI_2008_2017_final %>% + filter( year == 2008 ) %>% + left_join_error_no_match( NEI_pollutant_mapping, by = c( "pollutant" = "NEI_pollutant" ) ) %>% + filter( CEDS_Sector == "1A3dii_Domestic-navigation (shipping)" ) %>% + group_by( Non.CO2 ) %>% + mutate( sum = sum(emissions), + share = emissions/sum ) %>% + select( -c( emissions, sum, year ) ) -> NEI_2008_ship + + # Join the two tables, so that total US emissions from CEDS are matched for every share + CEDS_domestic_ship %>% + # calculate PM2.5 emissions based on BC and OC + spread( Non.CO2, emissions ) %>% + mutate( "PM2.5" = ( BC + OC * gcamusa.OC_TO_OM ) * gcamusa.PM1_TO_PM2.5 ) %>% + gather( Non.CO2, emissions, -year ) %>% + # Full join and removing NA "share" and NA "emissions" because we only can scale in instances when we have pollutants in both datasets + # The NA share removes BC, OC, CH4, and N2O (not in NEI) + # The NA emissions removes PM10 (not in CEDS) + full_join( NEI_2008_ship, by = c( "Non.CO2" ) ) %>% + filter( !is.na( emissions ), + !is.na( share ) ) %>% + mutate( emissions = emissions * share ) %>% + select( -c( "tier1_description", "share", "Non.CO2" ) ) -> domestic_ship_1990_2007 + + # ====================================== + # 4. Combining Tables and Formatting + # ====================================== + NEI_scaled_to_state_emissions %>% + gather( id, emissions, -c( state, pollutant, CEDS_Sector, CEDS_Fuel, unit, GCAM_sector ) ) %>% + separate( id, into = c("id", "year"), sep = "emissions" ) %>% + select( -id ) %>% + mutate( year = as.integer( year ) ) -> NEI_1990_2007_no_domestic_ship + + # assign Process CEDS_Fuel to process sectors + NEI_1990_2007_no_domestic_ship %>% + filter( !grepl( "^1A", CEDS_Sector ) ) %>% + mutate( CEDS_Fuel = "Process" ) -> GCAM_Process_1990_2007 + + NEI_1990_2007_no_domestic_ship %>% + filter( grepl( "^1A", CEDS_Sector ) ) -> GCAM_Combustion_1990_2007 + + GCAM_Process_1990_2007 %>% + bind_rows( GCAM_Combustion_1990_2007 ) %>% + distinct( state, year, pollutant, CEDS_Sector, CEDS_Fuel, unit, emissions, GCAM_sector ) %>% + # add domestic shipping + bind_rows( domestic_ship_1990_2007 ) -> NEI_1990_2007_final + + # Bind all of the historic year tables together + NEI_1990_2007_final %>% + bind_rows( NEI_2008_2017_final %>% select( -c( tier1_description ) ) ) %>% + # make sure emissions are grouped by state, year, CEDS_sector, CEDS_Fuel and pollutant + group_by( state, pollutant, CEDS_Sector, CEDS_Fuel, year ) %>% + mutate( emissions = sum( emissions ) ) %>% + distinct( state, pollutant, GCAM_sector, CEDS_Sector, CEDS_Fuel, unit, year, emissions ) %>% + ungroup() -> NEI_1990_2017_GCAM_sectors + + # =================================================== + # Produce outputs + NEI_1990_2017_GCAM_sectors %>% + add_title("Non-CO2 emissions by US state / CEDS Sector / CEDS Fuel / GCAM sector / pollutant / year") %>% + add_units("TON") %>% + add_comments("Psuedo-NEI emissions that have been interpolated and scaled to state level EPA Tier 1 data") %>% + add_precursors("gcam-usa/emissions/state_tier1_caps", + "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2008", + "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2011", + "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2014", + "gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2017", + "gcam-usa/emissions/CEDS_to_USEPA_Tier1_Mapping", + "gcam-usa/emissions/CEDS_to_GCAM_sector_mapping", + "gcam-usa/emissions/NEI_pollutant_mapping", + "L102.ceds_GFED_nonco2_tg_C_S_F") -> L169.NEI_1990_2017_GCAM_sectors_unscaled + + return_data(L169.NEI_1990_2017_GCAM_sectors_unscaled) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L170.nonghg_ceds_scaling_USA.R b/input/gcamdata/R/zchunk_L170.nonghg_ceds_scaling_USA.R new file mode 100644 index 0000000000..562bf435c7 --- /dev/null +++ b/input/gcamdata/R/zchunk_L170.nonghg_ceds_scaling_USA.R @@ -0,0 +1,364 @@ +#' module_gcamusa_L170.nonghg_ceds_scaling_USA +#' +#' Scales pre-processed NEI non-CO2 emissions to CEDS at the national level +#' The NEI data is processed exogenously. It is scaled to EPA Tier 1, interpolated +#' between NEI years, extrapolated back to 1990, and mapped to GCAM sectors, +#' CEDS sectors, and CEDS fuels +#' +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L170.NEI_1990_2017_GCAM_sectors}, \code{L170.NEI_CEDS_scaling_diagnostic} +#' @details Non-CO2 emissions from NEI scaled to CEDS +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select group_by +#' @importFrom tidyr gather spread +#' @author MAW February 2021 + +module_gcamusa_L170.nonghg_ceds_scaling_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE="gcam-usa/emissions/NEI_pollutant_mapping", + FILE="gcam-usa/emissions/CEDS_to_CEDS_sector_mapping", + "L169.NEI_1990_2017_GCAM_sectors_unscaled", + "L102.ceds_GFED_nonco2_tg_C_S_F")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L170.NEI_1990_2017_GCAM_sectors", + "L170.NEI_CEDS_scaling_diagnostic")) + } else if(command == driver.MAKE) { + + # Silence package check. + X <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + NEI_pollutant_mapping <- get_data(all_data, "gcam-usa/emissions/NEI_pollutant_mapping") + CEDS_to_CEDS_sector_mapping <- get_data(all_data, "gcam-usa/emissions/CEDS_to_CEDS_sector_mapping") + L102.ceds_GFED_nonco2_tg_C_S_F <- get_data(all_data, "L102.ceds_GFED_nonco2_tg_C_S_F") + L169.NEI_1990_2017_GCAM_sectors_unscaled <- get_data(all_data, "L169.NEI_1990_2017_GCAM_sectors_unscaled", strip_attributes = T) + # ----------------------------------------------------------------------------- + + # Perform computations + + # Getting mapping file in order + # Remove Notes column + CEDS_to_CEDS <- CEDS_to_CEDS_sector_mapping %>% + select( -Notes ) + + # Remove Core_CEDS column from NEI mapping and NA entries so that we can use left_join_error_no_match + US_SCC_CEDS_to_Agg <- CEDS_to_CEDS %>% + select( -Core_CEDS ) %>% + filter( !is.na( SCC_CEDS_extended ) ) + + # Some Core_CEDS sectors have duplicate entries due to being further disaggregated in SCC_CEDS_extended sectors + # ex. Core_CEDS = 1A1bc_Other-transformation maps to three SCC_CEDS_extended sectors + # to remediate this, we need to remove the SCC_CEDS_extended column for the CEDS_to_CEDS mapping + Core_CEDS_to_Agg <- CEDS_to_CEDS %>% + select( -SCC_CEDS_extended ) %>% + distinct( Core_CEDS, Agg_CEDS_for_scaling ) + + # Convert CEDS from Tg to US Ton + ceds_TON <- L102.ceds_GFED_nonco2_tg_C_S_F %>% + mutate( emissions = emissions / CONV_TST_TG * 1000, + units = "TON" ) + + # ========== ROAD + # The Road sector has a discontinuity in emissions, so we use a different scaling approach for BC, OC, PM2.5 + # From 2008 forward, we will scale CEDS to NEI + # From 2007 back to 1990, we will scale CEDS using the 2008 scaling factor and linearly interpolate it to + + # Create a table that contains all of the NEI PM2.5 Road emissions + NEI_road <- L169.NEI_1990_2017_GCAM_sectors_unscaled %>% + left_join_error_no_match( US_SCC_CEDS_to_Agg, by = c( "CEDS_Sector" = "SCC_CEDS_extended" ) ) %>% + left_join_error_no_match( NEI_pollutant_mapping, by = c( "pollutant" = "NEI_pollutant" ) ) %>% + filter( Agg_CEDS_for_scaling == "1A3b_Road", + Non.CO2 == "PM2.5", + !is.na( CEDS_Fuel) ) + + # 2008 forward + # Sum NEI emissions by year, pollutant, and CEDS_Fuel + NEI_PM2.5_road_sums_2008 <- NEI_road %>% + filter( Agg_CEDS_for_scaling == "1A3b_Road", + Non.CO2 == "PM2.5", + year > 2007 ) %>% + group_by( year, Non.CO2, CEDS_Fuel ) %>% + mutate( NEI_sum = sum(emissions) ) %>% + distinct( year, Non.CO2, NEI_sum, CEDS_Fuel ) + + # Sum CEDS emissions by year, pollutant, and fuel + CEDS_PM2.5_road_sums_2008 <- ceds_TON %>% + filter( sector == "1A3b_Road", + Non.CO2 == "BC" | Non.CO2 == "OC", + year > 2007 ) %>% + group_by( year, Non.CO2, fuel ) %>% + mutate( CEDS_sum = sum(emissions) ) %>% + distinct( year, Non.CO2, CEDS_sum, fuel ) %>% + # make wide to calculate PM2.5 + spread( Non.CO2, CEDS_sum ) %>% + # because CEDS does not have PM2.5, convert sum of BC + OC to PM2.5 + mutate( "PM2.5" = ( BC + OC * gcamusa.OC_TO_OM ) * gcamusa.PM1_TO_PM2.5 ) %>% + # make long again + tidyr::gather( Non.CO2, CEDS_sum, -c( year, fuel ) ) %>% + filter( Non.CO2 == "PM2.5" ) + + # Join the tables to get scaling factors to apply to PM2.5, OC, and BC + road_scaling <- NEI_PM2.5_road_sums_2008 %>% + left_join( CEDS_PM2.5_road_sums_2008, by = c( "year", "Non.CO2", "CEDS_Fuel" = "fuel" ) ) %>% + mutate( scaling_factor = CEDS_sum / NEI_sum ) %>% + ungroup() %>% + select( year, CEDS_Fuel, scaling_factor ) + + # Scale CEDS BC and OC using this factor + CEDS_road_scaled_2008 <- ceds_TON %>% + filter( iso == "usa", + sector == "1A3b_Road", + Non.CO2 == "BC" | Non.CO2 == "OC", + year > 2007 ) %>% + left_join( road_scaling, by = c( "year", "fuel" = "CEDS_Fuel" ) ) %>% + mutate( emissions = emissions / scaling_factor ) %>% + # filter out NAs (these are years there isn't NEI data for, and also fuels with 0 emissions that become NA) + filter( !is.na( emissions ) ) %>% + select( -scaling_factor ) + + # 2007 back + # use the 2008 scaling factor, and linearly interpolate it to a constant in 1990 + road_scaling_1990_BC <- road_scaling %>% + filter( year == 2008 ) %>% + mutate( year = 1990, + Non.CO2 = "BC", + scaling_factor = gcamusa.BC_1990_ONROAD_SCALING_FACTOR ) + + road_scaling_1990_BC_OC <- road_scaling_1990_BC %>% + mutate( Non.CO2 = "OC", + scaling_factor = gcamusa.OC_1990_ONROAD_SCALING_FACTOR ) %>% + bind_rows( road_scaling_1990_BC) + + road_scaling_2008 <- road_scaling %>% + filter( year == 2008 ) %>% + repeat_add_columns(tibble::tibble(Non.CO2=unique(road_scaling_1990_BC_OC$Non.CO2))) + + road_scaling_2007_back <- road_scaling_2008 %>% + bind_rows( road_scaling_1990_BC_OC ) %>% + complete( nesting( CEDS_Fuel, Non.CO2 ), year = min(road_scaling_1990_BC_OC$year):max(road_scaling_2008$year)) %>% + group_by( CEDS_Fuel, Non.CO2 ) %>% + mutate( scaling_factor = approx_fun(year, scaling_factor, rule = 2) ) %>% + unique() + + CEDS_road_scaled_2007_back <- ceds_TON %>% + filter( iso == "usa", + sector == "1A3b_Road", + Non.CO2 == "BC" | Non.CO2 == "OC", + year < 2008 ) %>% + left_join( road_scaling_2007_back, by = c( "year", "fuel" = "CEDS_Fuel", "Non.CO2" ) ) %>% + mutate( emissions = emissions / scaling_factor ) %>% + select( -scaling_factor ) %>% + # several NAs for fuels that have 0 emissions (brown_coal, coal_coke, etc.) + # filter out NAs + filter( !is.na( emissions ) ) + + # Bind CEDS tables back together + BC_OC_Road_CEDS <- CEDS_road_scaled_2007_back %>% + bind_rows( CEDS_road_scaled_2008 ) %>% + filter( emissions != 0 ) + + # Table with NEI Road PM 2.5 for 2007 and before, to be scaled to CEDS nationally + NEI_PM2.5_road_2007 <- NEI_road %>% + filter( Agg_CEDS_for_scaling == "1A3b_Road", + Non.CO2 == "PM2.5", + year < 2008 ) + + # Calculating PM2.5 equivalents for 2007 and before using CEDS BC and OC + CEDS_PM2.5_road_sums_2007 <- BC_OC_Road_CEDS %>% + filter( iso == "usa", + sector == "1A3b_Road", + Non.CO2 == "BC" | Non.CO2 == "OC", + year < 2008 ) %>% + # remove NA emissions in order for "sum" to work + filter( !is.na( emissions ) ) %>% + group_by( year, Non.CO2, fuel ) %>% + mutate( CEDS_sum = sum(emissions) ) %>% + distinct( year, Non.CO2, CEDS_sum, fuel ) %>% + # make wide to calculate PM2.5 + spread( Non.CO2, CEDS_sum ) %>% + mutate( "PM2.5" = ( BC + OC * gcamusa.OC_TO_OM ) * gcamusa.PM1_TO_PM2.5 ) %>% + # make long again + tidyr::gather( Non.CO2, CEDS_sum, -c( year, fuel ) ) %>% + filter( Non.CO2 == "PM2.5" ) + + # Join the CEDS sums with the NEI PM2.5 values + NEI_PM2.5_road_scaled_2007 <- NEI_PM2.5_road_2007 %>% + # group emissions by year and fuel to get NEI_sum + group_by( year, CEDS_Fuel ) %>% + mutate( NEI_sum = sum( emissions ) ) %>% + left_join( CEDS_PM2.5_road_sums_2007, by = c( "year", "Non.CO2", "CEDS_Fuel" = "fuel" ) ) %>% + mutate( scaling_factor = NEI_sum / CEDS_sum, + emissions = emissions/ scaling_factor ) %>% + select( -c( NEI_sum, CEDS_sum, scaling_factor ) ) %>% + # natural gas is all NAs since not in CEDS + filter( !is.na(emissions) ) + + # BIND AND FORMAT + # Bind NEI PM2.5 2008 and later with NEI scaled PM2.5 2007 and before + NEI_PM2.5_road <- NEI_road %>% + filter( Agg_CEDS_for_scaling == "1A3b_Road", + Non.CO2 == "PM2.5", + year > 2007 ) %>% + bind_rows( NEI_PM2.5_road_scaled_2007 ) %>% + select( -pollutant ) + + # Get CEDS BC and OC at state level + # take CEDS national BC OC PM2.5 ratio and apply that to the states by CEDS fuel (diesel vs gasoline) + fuel_ratio <- BC_OC_Road_CEDS %>% + group_by( year, Non.CO2, fuel ) %>% + mutate( CEDS_sum = sum(emissions) ) %>% + # select relevant columns + select( c( year, Non.CO2, CEDS_sum, fuel ) ) %>% + # make wide to calculate PM2.5 + spread( Non.CO2, CEDS_sum ) %>% + mutate( "PM2.5" = ( BC + OC * gcamusa.OC_TO_OM ) * gcamusa.PM1_TO_PM2.5, + # calculate BC and OC shares as a fraction of PM2.5 + "BC_frac" = BC / PM2.5, + "OC_frac" = OC / PM2.5 ) %>% + # select relevant columns + select( -c( BC, OC, PM2.5 ) ) + + # apply the fractions to the state level emissions data, basing BC and OC emissions + # off of PM2.5 and the ratios calculated from CEDS + road <- NEI_PM2.5_road %>% + # rename "emissions" column PM2.5, as these are PM2.5 emissions + rename( PM2.5 = emissions ) %>% + left_join( fuel_ratio, by = c( "year", "CEDS_Fuel" = "fuel" ) ) %>% + # calculate BC and OC emissions at the state level using the ratios + mutate( BC = PM2.5 * BC_frac, + OC = PM2.5 * OC_frac ) %>% + # deselct the ratio columns, and gather the pollutant columns + select( -c( BC_frac, OC_frac ) ) %>% + tidyr::gather( key = "Non.CO2", value = "emissions", "PM2.5", "BC", "OC" ) %>% + filter( !is.na( emissions ) ) + + + # ========== NON-ROAD + # Biodiesel and Ethanol Production do not have emissions in CEDS, so these + # sectors will be filtered out and we will use emissions straight from NEI + # Petroleum Refining is in CEDS, but we will use emissions straight from NEI + # because the scaling reduced these emissions too much + biodiesel_ethanol_prod_petr_refining <- L169.NEI_1990_2017_GCAM_sectors_unscaled %>% + left_join_error_no_match( US_SCC_CEDS_to_Agg, by = c( "CEDS_Sector" = "SCC_CEDS_extended" ) ) %>% + left_join_error_no_match( NEI_pollutant_mapping, by = c( "pollutant" = "NEI_pollutant" ) ) %>% + select( -c( pollutant ) ) %>% + filter( Agg_CEDS_for_scaling == "1A1bc_Other-transformation" | + CEDS_Sector == "1A1b_Pet-refining") + + + # For all other sectors / pollutants other than Road PM2.5, we will scale to CEDS + # First, bind mapping files to NEI table so this only has to be done once + NEI_all_unscaled_no_road <- L169.NEI_1990_2017_GCAM_sectors_unscaled %>% + left_join_error_no_match( US_SCC_CEDS_to_Agg, by = c( "CEDS_Sector" = "SCC_CEDS_extended" ) ) %>% + left_join_error_no_match( NEI_pollutant_mapping, by = c( "pollutant" = "NEI_pollutant" ) ) %>% + select( -c( pollutant ) ) %>% + # filter out PM2.5 from the road sectors + filter( Non.CO2 != "PM2.5" | Agg_CEDS_for_scaling != "1A3b_Road", + Agg_CEDS_for_scaling != "1A1bc_Other-transformation", + CEDS_Sector != "1A1b_Pet-refining" ) + + # Create a table that has CEDS sums by year, aggregate sector, and Non.CO2 + # This will be compared to NEI sums by year, aggregate sector, and Non.CO2 + CEDS_sums <- ceds_TON %>% + filter( iso == "usa", + # filter out Road BC and OC + sector != "1A3b_Road" | Non.CO2 != "BC" & Non.CO2 != "OC" ) %>% + left_join_error_no_match( Core_CEDS_to_Agg, by = c( "sector" = "Core_CEDS") ) %>% + select( -c( sector, CEDS_agg_sector, CEDS_agg_fuel ) ) %>% + # group by year and pollutant, and sum emissions + dplyr::group_by( year, Non.CO2, Agg_CEDS_for_scaling ) %>% + dplyr::mutate( CEDS_emissions = sum( emissions ) ) %>% + distinct( year, CEDS_emissions, Non.CO2, Agg_CEDS_for_scaling ) + + + # Create a table that has NEI sums by year, aggregate sector, and Non.CO2 + NEI_sums <- NEI_all_unscaled_no_road %>% + dplyr::group_by( year, Non.CO2, Agg_CEDS_for_scaling ) %>% + dplyr::mutate( NEI_emissions = sum( emissions ) ) %>% + distinct( year, NEI_emissions, Non.CO2, Agg_CEDS_for_scaling ) %>% + select( c( "year", "NEI_emissions", "Agg_CEDS_for_scaling", "Non.CO2" ) ) + + # calculate an NEI to CEDS scaling factor for each year to multiply NEI emissions by + NEI_CEDS_scaling <- NEI_sums %>% + # can't use left_join_error_no_match because NEI has pollutants CEDS doesn't and vice versa + # CEDS has BC, CH4, OC, N20, H2 + # NEI has PM2.5, PM10 + # pollutants in both: NH3, CO, NOx, SO2, NMVOC + left_join( CEDS_sums, by = c( "year", "Non.CO2", "Agg_CEDS_for_scaling" ) ) %>% + filter( Agg_CEDS_for_scaling != "not in gcam", + Non.CO2 == "NH3" | Non.CO2 == "CO" | Non.CO2 == "NOx" | Non.CO2 == "SO2" | Non.CO2 == "NMVOC" ) %>% + mutate( scaling_factor = NEI_emissions/CEDS_emissions ) + # scaling factors are "Inf" when NEI has emissions that are 0 in CEDS, NaN when emissions are 0 in both, + # and 0 when CEDS has emissions not in NEI + + # diagnostic table to check scaling factors + NEI_CEDS_scaling_diagnostic <- NEI_CEDS_scaling %>% + select( -c( NEI_emissions, CEDS_emissions ) ) %>% + filter( Non.CO2 != "PM2.5" & Non.CO2 != "PM10" ) %>% + spread( key = year, value = scaling_factor ) %>% + ungroup() + + # CEDS doesn't have PM2.5 or PM10, so these pollutants will be filtered out of NEI and not scaled + NEI_noPM <- NEI_all_unscaled_no_road %>% + filter( Non.CO2 != "PM2.5" & Non.CO2 != "PM10", + Agg_CEDS_for_scaling != "not in gcam" ) %>% + left_join( NEI_CEDS_scaling, by = c( "year", "Non.CO2", "Agg_CEDS_for_scaling" ) ) %>% + mutate( emissions = emissions / scaling_factor ) %>% + select( -c( NEI_emissions, CEDS_emissions, scaling_factor ) ) + + # Table containing PM2.5 and PM10 emissions, bound with other emissions that were scaled to CEDS + NEI_1990_2017_GCAM_sectors <- NEI_all_unscaled_no_road %>% + filter( Non.CO2 == "PM2.5" | Non.CO2 == "PM10" ) %>% + bind_rows( NEI_noPM ) %>% + mutate( unit = "TON" ) %>% + # add back the Road, biodiesel and ethanol production, and petroleum refining emissions + bind_rows( road, biodiesel_ethanol_prod_petr_refining ) %>% + # 5C_Open-burning-land-clearing are not used in GCAM, and not mapped to a GCAM Sector + filter( !is.na( GCAM_sector ), GCAM_sector != 0 ) + + # NA entries (emissions) become 0 in order for emissions sums to work (otherwise NA is returned) + # The NAs are in Agg_CEDS_for_scaling "3B_Manure-management", for CO, NOx, and SO2 in 2014 - 2017 + # where the scaling factor is NaN or 0 + NEI_1990_2017_GCAM_sectors <- as.data.frame(NEI_1990_2017_GCAM_sectors) + NEI_1990_2017_GCAM_sectors[is.na(NEI_1990_2017_GCAM_sectors)] <- 0 + NEI_1990_2017_GCAM_sectors <- as_tibble(NEI_1990_2017_GCAM_sectors) + + # Process into gcam datasystem format + NEI_1990_2017_GCAM_sectors_final <- NEI_1990_2017_GCAM_sectors %>% + left_join_error_no_match( NEI_pollutant_mapping, by = c( "Non.CO2" ) ) %>% + rename( "pollutant" = "NEI_pollutant" ) %>% + select( -c( Non.CO2, Agg_CEDS_for_scaling, CEDS_Sector ) ) + + # =================================================== + # Produce outputs + L170.NEI_1990_2017_GCAM_sectors <- NEI_1990_2017_GCAM_sectors_final %>% + add_title("Non-CO2 emissions by US state / GCAM sector / fuel / pollutant / year") %>% + add_units("TON") %>% + add_comments("Psuedo-NEI emissions that have been scaled to CEDS at the national level, after being scaled to state level tier1 data in an exogenous script") %>% + add_precursors("gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/CEDS_to_CEDS_sector_mapping", + "L102.ceds_GFED_nonco2_tg_C_S_F", + "L169.NEI_1990_2017_GCAM_sectors_unscaled") + + L170.NEI_CEDS_scaling_diagnostic <- NEI_CEDS_scaling_diagnostic %>% + add_title("Scaling factors used to scale NEI emissions to match CEDS nationally (USA) by aggregate sector") %>% + add_units("Unitless") %>% + add_comments("These factors can be used in post processing, particularly for 1A3aii_Domestic-aviation and 1A3dii_Domestic-navigation (shipping)") %>% + add_comments("These sectors include different things between NEI and CEDS, so can be used to convert back to what is in NEI. Factor is for NEI/CEDS") %>% + add_precursors("gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/CEDS_to_CEDS_sector_mapping", + "L102.ceds_GFED_nonco2_tg_C_S_F", + "L169.NEI_1990_2017_GCAM_sectors_unscaled") + + + return_data(L170.NEI_1990_2017_GCAM_sectors, L170.NEI_CEDS_scaling_diagnostic) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L171.nonghg_trn_USA.R b/input/gcamdata/R/zchunk_L171.nonghg_trn_USA.R new file mode 100644 index 0000000000..4bb5eeff3a --- /dev/null +++ b/input/gcamdata/R/zchunk_L171.nonghg_trn_USA.R @@ -0,0 +1,767 @@ +#' module_gcamusa_L171.nonghg_trn_USA +#' +#' Emissions factors for transportation by MARKAL technology in the USA +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y}, \code{L171.nonco2_tgpkm_state_trn_SMarkal_F_Y}. The corresponding file in the +#' original data system was \code{LA171.nonCO2_trn_USA_S_T_Y.R} (gcam-usa level1). +#' @details Emissions factors in Tg/million pass-km for transportation by MARKAL technology in the USA. +#' In L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y, the evolution of EFs are computed with two different methods +#' 1) For the future evolution of fleet EFs for vehicles existing in the base year, we account for each +#' individual vintage degrading as they age, and older vintages retiring. +#' 2) For the degradation of future year EFs, EFs are taken directly from MARKAL aside from a unit conversion. +#' In L171.nonco2_tgpkm_state_trn_SMarkal_F_Y, EFs are computed with two different methods: +#' 1) Base year EFs are the weighted means of the vintaged data using the age fractions as weights. +#' 2) Future year EFs are taken directly from MARKAL for the year = vintage. +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author BY Aug 2019, MAW March 2022 + +module_gcamusa_L171.nonghg_trn_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE="gcam-usa/emissions/MARKAL_MOVES_class", + FILE="gcam-usa/emissions/MOVES_vehicle_age_fractions", + FILE="gcam-usa/emissions/MOVES_src_type_reg_class_fractions", + FILE="gcam-usa/emissions/MOVES_source_type_pop", + FILE="gcam-usa/emissions/MOVES_VMT_dist", + FILE="gcam-usa/emissions/MOVES_VMT_dist_missing_mapping", + FILE="gcam-usa/emissions/MARKAL_LDV_EFs_gpm", + "L254.StubTranTechLoadFactor", + FILE="gcam-usa/emissions/trnMARKAL_UCD_mapping", + FILE="gcam-usa/emissions/MARKAL_fuel_name_code", + FILE="gcam-usa/emissions/GREET2014_LDV_CNG_EFs_tgEJ", + FILE="gcam-usa/emissions/MARKAL_LDV_eff_vmtMJ", + FILE="gcam-usa/emissions/MARKAL_LDV_eff_missing_mapping", + FILE="gcam-usa/emissions/MARKAL_HDV_EFs_gpm", + FILE="gcam-usa/states_subregions", + FILE="gcam-usa/emissions/MOVES_EV_Efs_ORD", + FILE="gcam-usa/emissions/NEI_pollutant_mapping", + FILE="gcam-usa/emissions/MARKAL_GCAM_mapping", + FILE="gcam-usa/emissions/MOVES_motorcycle_data")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y", + "L171.nonco2_tgpkm_state_trn_SMarkal_F_Y")) + } else if(command == driver.MAKE) { + + # Silence package check. + yearID <- sourceTypeID <- ageID <- Vintage <- ageFraction <- modelYearID <- regClassID <- stmyFraction <- + sourceTypePopulation <- MOVES_to_MARKAL_Mapping <- MARKAL_Class <- regClassPop <- sourceTypeID.new <- + Class.orig <- Class.new <- MOVES.sourceTypeID <- Age <- Class.Of.Car <- Miles.Traveled <- MOVES_Reg_Class <- + VMT.Weight <- VMT.Weighted.Age.Frac <- sourceTypePopulation.agg <- share <- year <- variable <- value <- Class <- + Fuel <- pollutant <- region <- size.class <- UCD_technology <- loadFactor <- Fuel_name <- MARKAL_mode <- UCD_mode <- + `2010` <- `2015` <- Technology <- Unit <- Fuel.orig <- Fuel.new <- value.EF <- value.EF_vmtMJ <- value.eff_vmtMJ <- `2005` <- UCD_fuel <- + UCD_class <- fuel <- vintage <- state <- DIVISION <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + MARKAL_MOVES_class <- get_data(all_data, "gcam-usa/emissions/MARKAL_MOVES_class") + MOVES_vehicle_age_fractions <- get_data(all_data, "gcam-usa/emissions/MOVES_vehicle_age_fractions") + MOVES_src_type_reg_class_fractions <- get_data(all_data, "gcam-usa/emissions/MOVES_src_type_reg_class_fractions") + MOVES_source_type_pop <- get_data(all_data, "gcam-usa/emissions/MOVES_source_type_pop") + MOVES_vmt_dist <- get_data(all_data, "gcam-usa/emissions/MOVES_VMT_dist") + MOVES_vmt_dist_missing_mapping <- get_data(all_data, "gcam-usa/emissions/MOVES_VMT_dist_missing_mapping") + MARKAL_LDV_EFs_gpm <- get_data(all_data, "gcam-usa/emissions/MARKAL_LDV_EFs_gpm") + L254.StubTranTechLoadFactor <- get_data(all_data, "L254.StubTranTechLoadFactor") + trnMARKAL_UCD_mapping <- get_data(all_data, "gcam-usa/emissions/trnMARKAL_UCD_mapping") + MARKAL_fuel_name_code <- get_data(all_data, "gcam-usa/emissions/MARKAL_fuel_name_code") + GREET2014_LDV_CNG_EFs_tgEJ <- get_data(all_data, "gcam-usa/emissions/GREET2014_LDV_CNG_EFs_tgEJ") + MARKAL_LDV_eff_vmtMJ <- get_data(all_data, "gcam-usa/emissions/MARKAL_LDV_eff_vmtMJ") + MARKAL_LDV_eff_missing_mapping <- get_data(all_data, "gcam-usa/emissions/MARKAL_LDV_eff_missing_mapping") + MARKAL_HDV_EFs_gpm <- get_data(all_data, "gcam-usa/emissions/MARKAL_HDV_EFs_gpm") + states_subregions <- get_data(all_data, "gcam-usa/states_subregions") + MOVES_EV_Efs_ORD <- get_data(all_data, "gcam-usa/emissions/MOVES_EV_Efs_ORD") + NEI_pollutant_mapping <- get_data(all_data, "gcam-usa/emissions/NEI_pollutant_mapping") + MARKAL_GCAM_mapping <- get_data(all_data, "gcam-usa/emissions/MARKAL_GCAM_mapping") + MOVES_motorcycle_data <- get_data(all_data, "gcam-usa/emissions/MOVES_motorcycle_data") + # ----------------------------------------------------------------------------- + + # Perform computations + # ================================================================================= + # 1. Age and VMT fraction data + # This section assigns age fractions from MOVES to each vehicle class by year / vintage + # The purpose of assigning age fractions is so we can weight EFs by age fraction of + # each vintage existing in a given year to accurately capture the fleet EF + # ================================================================================= + + # 1a. Age fraction data + # ================================================================================= + # The base year vehicle emissions must incorporate past vintages. Here we will assign age fractions to + # each vehicle vintage in the base years from the MOVES assumptions + + # Group 1: Vehicles that do not have a regulatory class. Includes cars, SUVs, buses, heavy duty (but not pickup/commercial) trucks + group1_sourceTypeID <- unique(MARKAL_MOVES_class$MOVES_Source_Type[is.na(MARKAL_MOVES_class$MOVES_Reg_Class)]) + + # Select vintages from the MOVES data + MOVES_trn_age_fractions.group1 <- MOVES_vehicle_age_fractions %>% + filter(yearID %in% MODEL_YEARS, sourceTypeID %in% group1_sourceTypeID) %>% + mutate(Vintage = yearID - ageID) %>% + # Only including vintages >= 1990 and years >= 2005. + filter(Vintage >= gcamusa.MOVES_MIN_VINTAGE_YEAR & yearID >= min(gcamusa.MOVES_BASE_YEAR_CLASSES)) %>% + # Assign vintages into five-year bins since emissions factor data is provided in 5 year increments. + # Each bin gets its year and the 4 years preceding it (i.e. 2010 has 2006-2010). + mutate(Vintage = ceiling(Vintage/gcamusa.TRN_EF_timestep)*gcamusa.TRN_EF_timestep) %>% + # Aggregate so the age fractions still add up to one + group_by(sourceTypeID, yearID, Vintage) %>% + summarise(ageFraction = sum(ageFraction))%>% + mutate(Age = yearID-Vintage) %>% + ungroup() + + # Group 2: Vehicles that have a regulatory class. Pickup and commercial truck MARKAL classes. Grouped by MOVES source type and regulatory class. + group2_sourceTypeID <- unique(MARKAL_MOVES_class$MOVES_Source_Type[!(is.na(MARKAL_MOVES_class$MOVES_Reg_Class))]) + group2_regClassID <- unique(MARKAL_MOVES_class$MOVES_Reg_Class) + + # Fix MOVES reg class fractions: in raw data, there are multiple entries for sourceTypeID/year/regClassID combinations. + # Fix by summarizing data + MOVES_src_type_reg_class_fractions <- MOVES_src_type_reg_class_fractions %>% + group_by(sourceTypeID, modelYearID, regClassID)%>% + summarise(stmyFraction = sum(stmyFraction))%>% + ungroup() + + # Get populations (number of vehicles) by source type, vintage and year + MOVES_source_type_pop_vintaged <- MOVES_source_type_pop %>% + repeat_add_columns(tibble::tibble(ageID = unique(MOVES_vehicle_age_fractions$ageID))) %>% + arrange(ageID) %>% + # use left_join_keep_first_only, there will be 1 unique combination of sourceTypeID, yearID, ageID + left_join_keep_first_only(MOVES_vehicle_age_fractions, by = c("sourceTypeID", "yearID", "ageID")) %>% + mutate(sourceTypePopulation = sourceTypePopulation * ageFraction, modelYearID = yearID - ageID) %>% + na.omit() + + # Get these vintaged populations (number of vehicles) by regulatory class, source type, vintage and year + MOVES_regClass_pop_vintaged <- MOVES_source_type_pop_vintaged %>% + filter(yearID %in% MODEL_YEARS & yearID >= min(gcamusa.MOVES_BASE_YEAR_CLASSES)) %>% + repeat_add_columns(tibble::tibble(regClassID = unique(MOVES_src_type_reg_class_fractions$regClassID))) %>% + arrange(regClassID) %>% + # use left_join_keep_first_only, there will be 1 unique combination of sourceTypeID, modelYearID, regClassID + left_join_keep_first_only(MOVES_src_type_reg_class_fractions, by = c("sourceTypeID", "modelYearID", "regClassID")) %>% + mutate(regClassPop = sourceTypePopulation * stmyFraction) %>% + na.omit() %>% + # Keep only group 2 vehicles + filter(regClassID %in% group2_regClassID, sourceTypeID %in% group2_sourceTypeID) %>% + # Map to MARKAL vehicle types + left_join_error_no_match(select(MARKAL_MOVES_class, -MOVES_to_MARKAL_Mapping), by = c("sourceTypeID" = "MOVES_Source_Type", "regClassID" = "MOVES_Reg_Class")) %>% + group_by(MARKAL_Class, yearID, ageID)%>% + summarise(regClassPop = sum(regClassPop)) %>% + ungroup() %>% + group_by(MARKAL_Class, yearID)%>% + # Get age fractions by MARKAL class and year + mutate(sumRegClassPop = sum(regClassPop), + ageFraction = (regClassPop / sumRegClassPop)) %>% + ungroup() %>% + select(-regClassPop) + + MARKAL_trn_age_fractions.group2 <- MOVES_regClass_pop_vintaged %>% + mutate(Vintage = yearID - ageID) %>% + filter(ageID <= gcamusa.MOVES_MAX_AGE) %>% + # Assign vintages into five-year bins since emissions factor data is provided in 5 year increments. + # Each bin gets its year and the 4 years preceding it (i.e. 2010 has 2006-2010). + mutate(Vintage = ceiling(Vintage/gcamusa.TRN_EF_timestep)*gcamusa.TRN_EF_timestep) %>% + # Aggregate so the age fractions still add up to one + group_by(MARKAL_Class, yearID, Vintage) %>% + summarise(ageFraction = sum(ageFraction))%>% + mutate(Age = yearID-Vintage) %>% + ungroup() + + + # 1b. VMT Fraction Data + # ================================================================================= + # Calculate weights based on VMT-by-age, and update vintage age fractions with this weight + + # MOVES data omits some source classes we need. For these classes, use VMT distributions of similar data + MOVES_vmt_dist.missing <- MOVES_vmt_dist %>% + # Need to use left_join because only a few vehicle classes are being mapped, the rest will be NA + left_join(MOVES_vmt_dist_missing_mapping, by = c("MOVES.sourceTypeID" = "sourceTypeID.orig")) %>% + na.omit() %>% + mutate(MOVES.sourceTypeID = sourceTypeID.new) %>% + select(-Class.orig, -Class.new, -sourceTypeID.new) + + # Bind "missing" categories to main table. These categories have been assigned data from similar classes + MOVES_vmt_dist.group1 <- bind_rows(MOVES_vmt_dist, MOVES_vmt_dist.missing) %>% + filter(MOVES.sourceTypeID %in% group1_sourceTypeID, + # Remove vintages over 25 (might be skewing results) + Age <= gcamusa.MOVES_MAX_AGE) %>% + # Group ages in 5-year intervals. + mutate(Age = 5*floor(Age/5)) %>% + rename(Miles.Traveled = "Miles Traveled") %>% + # Aggregate by vintage + group_by(Age, Class.Of.Car, MOVES.sourceTypeID) %>% + summarise(Miles.Traveled = mean(Miles.Traveled)) %>% + ungroup()%>% + # Calculate Weight; normalize to 2005 or 2010 + group_by(Class.Of.Car, MOVES.sourceTypeID)%>% + # VMT weight is a ratio by age for each vehicle compared to a new vehicle (age = 0) of the same class + mutate(VMT.Weight = Miles.Traveled/Miles.Traveled[Age==0]) %>% + ungroup()%>% + select( -c( Class.Of.Car, Miles.Traveled ) ) + + # For group2 sourcetypeIDs, aggregate based on MARKAL class + MARKAL_vmt_dist.group2 <- MOVES_vmt_dist %>% + filter(MOVES.sourceTypeID %in% group2_sourceTypeID, + # Remove vintages over 25 (might be skewing results) + Age <= gcamusa.MOVES_MAX_AGE) %>% + # using left join as some NAs will be retained (some vehicles do not have a reg class) + left_join(select(MARKAL_MOVES_class, -MOVES_to_MARKAL_Mapping), by = c("MOVES.sourceTypeID" = "MOVES_Source_Type")) %>% + # retain only group 2 (with regulatory class) + filter(!is.na(MOVES_Reg_Class)) %>% + # Group ages in 5-year intervals. + mutate(Age = 5*floor(Age/5)) %>% + rename(Miles.Traveled = "Miles Traveled") %>% + # Commercial trucks will not be weighted by VMT distribution + filter(MARKAL_Class != "Commercial truck") %>% + group_by(MARKAL_Class, Age)%>% + summarise(Miles.Traveled = sum(Miles.Traveled))%>% + ungroup()%>% + group_by(MARKAL_Class)%>% + # VMT weight is a ratio by age for each vehicle compared to a new vehicle (age = 0) of the same class + mutate(VMT.Weight = Miles.Traveled / Miles.Traveled[Age==0])%>% + ungroup()%>% + select(-Miles.Traveled) + + # 1c. Join VMT with Age fraction data + # ================================================================================= + MOVES_trn_vmt_wt_age_fractions.group1 <- MOVES_trn_age_fractions.group1 %>% + full_join(MOVES_vmt_dist.group1, by = c("sourceTypeID" = "MOVES.sourceTypeID", "Age" = "Age")) %>% + na.omit() %>% #FOR NOW, omitting NAs. hese exist because of discrepancy between VMT and age fraction data that is filtered out + # Multiply Age fraction by VMT weight, except for motorcycles (which do not exist) + # mutate(VMT.Weighted.Age.Frac = if_else(is.na(VMT.Weight), ageFraction, ageFraction*VMT.Weight)) + mutate(VMT.Weighted.Age.Frac = ageFraction*VMT.Weight) + + MARKAL_trn_vmt_wt_age_fractions.group2 <- MARKAL_trn_age_fractions.group2 %>% + full_join(MARKAL_vmt_dist.group2, by = c("MARKAL_Class", "Age")) %>% + mutate(VMT.Weighted.Age.Frac = if_else(is.na(VMT.Weight), ageFraction, ageFraction*VMT.Weight)) %>% + filter(!is.na(VMT.Weighted.Age.Frac)) #FOR NOW, omitting NAs. These exist because of discrepancy between VMT and age fraction data that is filtered out + + # ================================================================================= + # 2. MOVES to MARKAL Mapping for Age Fractions + # This section maps the processed MOVES age fractions to MARKAL classes, since the + # emission factors are in terms of MARKAL classes. + + # ================================================================================= + # 2a. Single MOVES sourceTypeID to multiple MARKAL classes + # ================================================================================= + # In MARKAL_MOVES_class file, "A" in MOVES_to_MARKAL_Mapping column designated a single MOVES sourceTypeID to multiple MARKAL classes + + MOVES_groupA_fractions <- MARKAL_MOVES_class %>% + filter(MOVES_to_MARKAL_Mapping == "A") %>% + # need to use left join because we are changing the number of rows in the table, having a row for every vintage group and year + left_join(MOVES_trn_vmt_wt_age_fractions.group1, by = c("MOVES_Source_Type" = "sourceTypeID")) %>% + select( c( MARKAL_Class, yearID, Vintage, VMT.Weighted.Age.Frac ) ) + + # 2b. Multiple MOVES sourceTypeIDs to single MARKAL class + # ================================================================================= + + # For MARKAL classes including buses and light and heavy duty trucks, data from multiple + # MOVES source categories were used, so the age fractions must be multiplied by shares of each source type ID + # out of the total vehicle population of the source IDs used in the corresponding MARKAL class. + + MOVES_srcIDs <- unique(MARKAL_MOVES_class$MOVES_Source_Type[MARKAL_MOVES_class$MOVES_to_MARKAL_Mapping == "B"]) + + # First compute the total vehicle population for these MARKAL classes in the relevant years + MOVES_agg_pop <- MOVES_source_type_pop %>% + # need to do left join, changing the number of rows, having a row for each MARKAL_Class + left_join(MARKAL_MOVES_class, by = c("sourceTypeID" = "MOVES_Source_Type")) %>% + filter(MOVES_to_MARKAL_Mapping == "B" & yearID %in% MOVES_trn_age_fractions.group1$yearID) %>% + group_by(MARKAL_Class, yearID) %>% + summarise(sourceTypePopulation.agg = sum(sourceTypePopulation)) + + # Compute shares of the source ID categories out of the corresponding total vehicle population + MOVES_pop_shares <- MOVES_source_type_pop %>% + # need to do left join, changing the number of rows, having a row for each MARKAL_Class + left_join(MARKAL_MOVES_class, by = c("sourceTypeID" = "MOVES_Source_Type")) %>% + filter(MOVES_to_MARKAL_Mapping == "B" & yearID %in% MOVES_trn_age_fractions.group1$yearID) %>% + left_join_error_no_match(MOVES_agg_pop, by = c("yearID", "MARKAL_Class")) %>% + mutate(share = sourceTypePopulation / sourceTypePopulation.agg) %>% + select( c( yearID, sourceTypeID, MARKAL_Class, share ) ) + + # Now multiply the source ID shares by the age fractions to yield new age fractions for the aggregate MARKAL category + # Update VMT weighted age frac accordingly. + MOVES_groupB_fractions <- MOVES_trn_vmt_wt_age_fractions.group1 %>% + filter(sourceTypeID %in% MOVES_srcIDs) %>% + left_join_error_no_match(MOVES_pop_shares, by = c("sourceTypeID", "yearID")) %>% + mutate(VMT.Weighted.Age.Frac = VMT.Weighted.Age.Frac * share) %>% + group_by(MARKAL_Class, yearID,Vintage) %>% + summarise(VMT.Weighted.Age.Frac = sum(VMT.Weighted.Age.Frac)) + + # Bind group A and B fractions together as group 1 + MOVES_trn_fractions.group1 <- bind_rows(MOVES_groupA_fractions, MOVES_groupB_fractions) %>% + rename(year=yearID) + + MARKAL_trn_fractions.group2 <- MARKAL_trn_vmt_wt_age_fractions.group2 %>% + rename(year=yearID)%>% + select( c( year, Vintage, VMT.Weighted.Age.Frac, MARKAL_Class ) )%>% + group_by(year, MARKAL_Class)%>% + mutate(VMT.Weighted.Age.Frac = VMT.Weighted.Age.Frac / sum(VMT.Weighted.Age.Frac))%>% + ungroup() + + + MARKAL_trn_fractions <- bind_rows(MOVES_trn_fractions.group1, MARKAL_trn_fractions.group2) + + # ================================================================================= + # 3. Prepare Emission Factors + # This section computes adjusted emission factors weighted by age fraction as well + # as emission factors to use for the linear control and converts them to GCAM units + # ================================================================================= + + # 3a. Light Duty Vehicles + # ================================================================================= + + # Gather the raw data + MARKAL_LDV_EFs_gpm.long <- MARKAL_LDV_EFs_gpm %>% + tidyr::gather(variable, value, -Class, -Fuel, -Vintage, convert=T) %>% + separate(variable, into = c("pollutant", "year", "region"), sep="\\.", convert = T) %>% + mutate(pollutant = gsub("PM2_5", "PM2.5", pollutant)) %>% + ###NOTE: filtering out some fuels for now for lack of efficiency/service demand data, and also the CO2 data + filter(pollutant != "CO2" & !(Fuel %in% gcamusa.MARKAL_LDV_FILTER_OUT_FUELS)) + + # Gather a table for use in calculating degradation of EFs for future vintages + L171.LDV_USA_emiss_degrades <- MARKAL_LDV_EFs_gpm.long %>% + filter(Vintage > max(gcamusa.TRAN_MODEL_BASE_YEARS) & !is.na(value)) + + # Clean up and subset base year vintages + MARKAL_LDV_EFs_gpm_Yb <- MARKAL_LDV_EFs_gpm.long %>% + filter(year %in% gcamusa.TRAN_MODEL_BASE_YEARS & Vintage <= year & year, + year - Vintage <= gcamusa.MARKAL_DEGRADE_YEARS) %>% + ###MISSING VALUES: emission factors pollutants with no data for ELC vehicles, and 2010 EFs for 1990 vintages + na.omit() %>% + # Match base year age fractions onto the table containing the EFs in the base years + left_join_error_no_match(MARKAL_trn_fractions, by = c("Class" = "MARKAL_Class", "Vintage", "year")) %>% + rename(ageFraction = VMT.Weighted.Age.Frac) + + # The base year EFs will be weighted means of the vintaged data using the age fractions as weights + # The EFs here represent all existing vehicles in each base year + MARKAL_LDV_EFs_gpm_Yb.avg <- MARKAL_LDV_EFs_gpm_Yb %>% + group_by(region, Class, Fuel, pollutant, year) %>% + summarise(value = weighted.mean(value, ageFraction)) + + # For the current base year, calculate the future evolution of fleet EFs for vehicles existing in the + # base year. Two counteracting forces are happening here: 1. Each individual vintage is degrading as + # they age, resulting in an increased EF and 2. older vintages are retiring, resulting in a decreased EF. + # We need to account for both of these forces to capture an accurate net-evolution + MARKAL_LDV_EFs_gpm_CYb <- MARKAL_LDV_EFs_gpm.long %>% + filter(year >= max(gcamusa.TRAN_MODEL_BASE_YEARS) & Vintage <= max(gcamusa.TRAN_MODEL_BASE_YEARS)) %>% + filter( year - Vintage <= gcamusa.MARKAL_DEGRADE_YEARS ) %>% + ###MISSING VALUES: emission factors pollutants with no data for ELC vehicles, and 2010 EFs for 1990 vintages + na.omit() %>% + # Match base year age fractions onto the table containing the EFs in the base years + left_join_error_no_match(MARKAL_trn_fractions, by = c("Class" = "MARKAL_Class", "Vintage", "year")) %>% + mutate(AF.Weighted.EF = VMT.Weighted.Age.Frac * value) %>% + group_by(region, Class, Fuel, pollutant, year) %>% + mutate(value = sum(AF.Weighted.EF)) %>% + distinct(value, region, Class, Fuel, Vintage, pollutant, year ) %>% + # filter for the base year vintage, as this entry has values for how EFs for vehicles + # existing in the base year will evolve + filter( Vintage == max(gcamusa.TRAN_MODEL_BASE_YEARS)) + + # Clean up and subset future vintages for emissions coefficients + MARKAL_LDV_EFs_gpm_Yf <- MARKAL_LDV_EFs_gpm.long %>% + filter(Vintage >= min(gcamusa.TRAN_MODEL_FUTURE_YEARS) & Vintage == year & !is.na(value)) %>% + na.omit() %>% + select(-Vintage) + + # Prepare Load factor + StubTranTechLoadFactor_USA <- L254.StubTranTechLoadFactor %>% + filter(region == "USA", + sce == "CORE") %>% + select( -c( region, sce ) ) + + # Make a table with the base and future year emission factors + MARKAL_LDV_EFs_gpm_Y.long <- bind_rows(MARKAL_LDV_EFs_gpm_Yb.avg, MARKAL_LDV_EFs_gpm_Yf) + + MARKAL_LDV_EFs_tgpkm_Y.long <- MARKAL_LDV_EFs_gpm_Y.long %>% + # Match UCD sector to MARKAL LDV EFs + # Note: We lose EFs from PH20E, PH20G, PH40E, and PH40G from compact car due to lack of + # matching UCD fuel. This would get cut anyways in L271, so this shouldn't make a difference to emissions. + left_join_keep_first_only(trnMARKAL_UCD_mapping, by = c("Class" = "MARKAL_class", "Fuel" = "MARKAL_fuel")) %>% + rename(UCD_class = size.class, UCD_fuel = UCD_technology) %>% + left_join_keep_first_only(StubTranTechLoadFactor_USA, by = c("UCD_class" = "tranSubsector", "UCD_fuel" = "stub.technology", "year")) %>% + # Convert from g per vehicle miles to Tg per million passenger km + mutate(value = (value * CONV_PERS_MILPERS * CONV_G_TG) / (loadFactor * CONV_MI_KM)) %>% + left_join_keep_first_only(MARKAL_fuel_name_code, by = c("Fuel" = "Fuel_code")) %>% + select( c( region, Class, Fuel, pollutant, year, value, Fuel_name ) ) + + # Import LDV CNG emission factors from GREET data and copy for all categories in the LDV table + GREET_LDV_CNG_EFs_tgEJ_Y <- GREET2014_LDV_CNG_EFs_tgEJ %>% + repeat_add_columns(tibble::tibble(region = unique(MARKAL_LDV_EFs_tgpkm_Y.long$region))) %>% + repeat_add_columns(tibble::tibble(Class = unique(MARKAL_LDV_EFs_tgpkm_Y.long$Class))) %>% + repeat_add_columns(tibble::tibble(year = unique(MARKAL_LDV_EFs_tgpkm_Y.long$year))) %>% + mutate(Fuel_name = "Natural Gas") %>% + left_join_error_no_match(trnMARKAL_UCD_mapping, by = c("Class" = "MARKAL_class", "Fuel" = "MARKAL_fuel")) %>% + select( -c( MARKAL_mode, UCD_mode ) ) %>% + rename(UCD_class = size.class, UCD_fuel = UCD_technology) + + # Prepare Efficiency Data + MARKAL_LDV_eff_vmtMJ <- MARKAL_LDV_eff_vmtMJ %>% + # Manually linearly extrapolate backwards to add 2005 + mutate(`2005` = 2*`2010` - `2015`) %>% + select( -c( Technology, Unit ) ) %>% + tidyr::gather(year, value, -Class, -Fuel) %>% + mutate( year = as.numeric( year ) ) + + # No efficiency data for some classes needed. Replace with similar classes (from mapping file) + # effs respectively. + # Must use left_join because changing the number of rows, having a row for each year + MARKAL_LDV_eff_vmtMJ_missing <- MARKAL_LDV_eff_missing_mapping %>% + left_join(MARKAL_LDV_eff_vmtMJ, by = c("Class.orig" = "Class", "Fuel.orig" = "Fuel")) %>% + select( -c( Class.orig, Fuel.orig ) ) %>% + rename(Class = Class.new, Fuel = Fuel.new) + + MARKAL_LDV_eff_vmtMJ <- bind_rows(MARKAL_LDV_eff_vmtMJ, MARKAL_LDV_eff_vmtMJ_missing) + + # Convert CNG emission factors from Tg/EJ to Tg/million pass-km, the output EF unit + GREET_LDV_CNG_EFs_tgpkm_Y <- GREET_LDV_CNG_EFs_tgEJ_Y %>% + left_join_error_no_match(MARKAL_LDV_eff_vmtMJ, by = c("Fuel", "Class", "year"), suffix = c(".EF", ".eff_vmtMJ")) %>% + left_join_error_no_match(StubTranTechLoadFactor_USA, by = c("UCD_fuel" = "stub.technology", "UCD_class" = "tranSubsector", "year")) %>% + mutate(value.EF = (value.EF * CONV_MJ_EJ * CONV_PERS_MILPERS) / (value.eff_vmtMJ * CONV_MI_KM * loadFactor)) %>% + rename(value = value.EF) %>% + select( c( pollutant, Fuel, value, region, Class, year, Fuel_name ) ) + + # Bind CNG data onto MARKAL table, spread to wide format + MARKAL_LDV_EFs_tgpkm_Y <- bind_rows(MARKAL_LDV_EFs_tgpkm_Y.long, GREET_LDV_CNG_EFs_tgpkm_Y) %>% + spread(key = year,value) %>% + ###MISSING VALUES: ELC Minivans in 2005 and all vehicles using E85 in 2005. Fill with 2010 data for now + # Also fill in any zeroes in 2005 with 2010 data + mutate(`2005` = if_else(is.na(`2005`),`2010`, + if_else(`2005` == 0, `2010`, `2005`))) %>% + #MISSING VALUES: Filter out the following Mini car fuels: DSL, E10, E15 because they are not included in input emissions due to lack of load factor + filter(!(Class == "Mini car" & Fuel %in% gcamusa.MARKAL_MINICAR_FILTER_OUT_FUELS)) %>% + select(-Fuel_name) %>% + arrange(region, Class, Fuel, pollutant) + + # Bind base year EF evolution with future year EF degradation and convert table + # containing emission coefficient evolution/degradation paths to Tg/million pass-km + L171.LDV_USA_emiss_degrades_tgpkm <- L171.LDV_USA_emiss_degrades %>% + bind_rows(MARKAL_LDV_EFs_gpm_CYb) %>% + left_join_keep_first_only(trnMARKAL_UCD_mapping, by = c("Class" = "MARKAL_class", "Fuel" = "MARKAL_fuel")) %>% + rename(UCD_class = size.class, UCD_fuel = UCD_technology) %>% + left_join_keep_first_only(StubTranTechLoadFactor_USA, by = c("UCD_class" = "tranSubsector", "UCD_fuel" = "stub.technology", "year")) %>% + # Convert from g per vehicle miles to Tg per million passenger km + mutate(value = (value * CONV_PERS_MILPERS * CONV_G_TG) / (loadFactor * CONV_MI_KM)) %>% + left_join_keep_first_only(MARKAL_fuel_name_code, by = c("Fuel" = "Fuel_code")) %>% + ###MISSING VALUES: where there is no load factor data for Mini car fuels other than gasoline or electricity. Remove for now + na.omit() %>% + select( c( Class, Fuel, Vintage, pollutant, year, region, value, Fuel_name ) ) + + # Add a Vintage column to the CNG data and bind it to the table containing the degradation paths + GREET_LDV_CNG_EFs_tgpkm_Y.vintage <- GREET_LDV_CNG_EFs_tgpkm_Y %>% + repeat_add_columns(tibble::tibble(Vintage = unique(L171.LDV_USA_emiss_degrades_tgpkm$Vintage))) + + L171.LDV_USA_emiss_degrades_tgpkm <- bind_rows(L171.LDV_USA_emiss_degrades_tgpkm, GREET_LDV_CNG_EFs_tgpkm_Y.vintage) %>% + ###MISSING VALUES: Filter out the following Mini car fuels: DSL, E10, E15 because they are not included in input emissions due to lack of load factor + filter(!(Class == "Mini car" & Fuel %in% gcamusa.MARKAL_MINICAR_FILTER_OUT_FUELS)) + + # 3b. Heavy Duty Vehicles + # ================================================================================= + # Gather the raw data + MARKAL_HDV_EFs_gpm.long <- MARKAL_HDV_EFs_gpm %>% + tidyr::gather(variable ,value, -Class, -Fuel, -Vintage, convert=T) %>% + separate(variable, into = c("pollutant", "year", "region"), sep="\\.", convert = T) %>% + mutate(pollutant = gsub("PM2_5", "PM2.5", pollutant)) %>% + ###NOTE: filtering out the CO2 data + filter(pollutant != "CO2") + + # Gather a table for use in calculating degradation of EFs for each vintage + L171.HDV_USA_emiss_degrades <- MARKAL_HDV_EFs_gpm.long %>% + filter(Vintage > max(gcamusa.TRAN_MODEL_BASE_YEARS) & !is.na(value)) + + # Clean up and subset base year vintages + MARKAL_HDV_EFs_gpm_Yb <- MARKAL_HDV_EFs_gpm.long %>% + filter(year %in% gcamusa.TRAN_MODEL_BASE_YEARS & Vintage <= year & year, + year - Vintage <= gcamusa.MARKAL_DEGRADE_YEARS) %>% + # Match base year age fractions onto the table containing the EFs in the base years + left_join_error_no_match(MARKAL_trn_fractions, by = c("Class" = "MARKAL_Class", "Vintage", "year")) %>% + rename(ageFraction = VMT.Weighted.Age.Frac) + + # The base year EFs will be weighted means of the vintaged data using the age fractions as weights + MARKAL_HDV_EFs_gpm_Yb.avg <- MARKAL_HDV_EFs_gpm_Yb %>% + group_by(region, Class, Fuel, pollutant, year) %>% + summarise(value = weighted.mean(value, ageFraction)) + + # For the current base year, calculate the future evolution of fleet EFs for vehicles existing in the + # base year. Two counteracting forces are happening here: 1. Each individual vintage is degrading as + # they age, resulting in an increased EF and 2. older vintages are retiring, resulting in a decreased EF. + # We need to account for both of these forces to capture an accurate net-evolution + MARKAL_HDV_EFs_gpm_CYb <- MARKAL_HDV_EFs_gpm.long %>% + filter(year >= max(gcamusa.TRAN_MODEL_BASE_YEARS) & Vintage <= max(gcamusa.TRAN_MODEL_BASE_YEARS)) %>% + filter( year - Vintage <= gcamusa.MARKAL_DEGRADE_YEARS ) %>% + ###MISSING VALUES: emission factors pollutants with no data for ELC vehicles, and 2010 EFs for 1990 vintages + na.omit() %>% + # Match base year age fractions onto the table containing the EFs in the base years + left_join_error_no_match(MARKAL_trn_fractions, by = c("Class" = "MARKAL_Class", "Vintage", "year")) %>% + mutate(AF.Weighted.EF = VMT.Weighted.Age.Frac * value) %>% + group_by(region, Class, Fuel, pollutant, year) %>% + mutate(value = sum(AF.Weighted.EF)) %>% + distinct(value, region, Class, Fuel, Vintage, pollutant, year ) %>% + # filter for the base year vintage, as this entry has values for how EFs for vehicles + # existing in the base year will evolve + filter( Vintage == max(gcamusa.TRAN_MODEL_BASE_YEARS)) + + # Clean up and subset future vintages for emissions coefficients + MARKAL_HDV_EFs_gpm_Yf <- MARKAL_HDV_EFs_gpm.long %>% + filter(Vintage >= min(gcamusa.TRAN_MODEL_FUTURE_YEARS) & Vintage == year & !is.na(value)) %>% + na.omit() %>% + select(-Vintage) + + # Make a table with the base and future year emission factors + MARKAL_HDV_EFs_gpm_Y.long <- bind_rows(MARKAL_HDV_EFs_gpm_Yb.avg, MARKAL_HDV_EFs_gpm_Yf) + + # Convert to output-based EFs + # Use MARKAL vehicle load factors to convert to Tg/million pass-km + MARKAL_HDV_EFs_tgpkm_Y.long <- MARKAL_HDV_EFs_gpm_Y.long %>% + left_join_keep_first_only(trnMARKAL_UCD_mapping, by = c("Class" = "MARKAL_class", "Fuel" = "MARKAL_fuel")) %>% + rename(UCD_class = size.class, UCD_fuel = UCD_technology) %>% + # mutate some fuels to match correct load factors + mutate(UCD_fuel = if_else(UCD_fuel=="Hybrid Liquids", "Liquids", UCD_fuel), + UCD_class = if_else(UCD_class=="All", "Bus", UCD_class)) %>% + left_join_keep_first_only(StubTranTechLoadFactor_USA, by = c("UCD_class" = "tranSubsector", "UCD_fuel" = "stub.technology", "year")) %>% + # Convert from g per vehicle miles to Tg per million passenger km + mutate(value = (value * CONV_PERS_MILPERS * CONV_G_TG) / (loadFactor * CONV_MI_KM)) %>% + left_join_keep_first_only(MARKAL_fuel_name_code, by = c("Fuel" = "Fuel_code")) %>% + select( c( region, Class, Fuel, pollutant, year, value, Fuel_name ) ) + + # Spread to wide format + MARKAL_HDV_EFs_tgpkm_Y <- MARKAL_HDV_EFs_tgpkm_Y.long %>% + spread(key = year, value) %>% + select(-Fuel_name) %>% + arrange(region,Class,Fuel,pollutant) + + # Bind base year EF evolution with future year EF degradation and convert table + # containing emission coefficient evolution/degradation paths to Tg/million pass-km + L171.HDV_USA_emiss_degrades_tgpkm <- L171.HDV_USA_emiss_degrades %>% + bind_rows(MARKAL_HDV_EFs_gpm_CYb) %>% + left_join_keep_first_only(trnMARKAL_UCD_mapping, by = c("Class" = "MARKAL_class", "Fuel" = "MARKAL_fuel")) %>% + rename(UCD_class = size.class, UCD_fuel = UCD_technology) %>% + # mutate some fuels to match correct load factors + mutate(UCD_fuel = if_else(UCD_fuel == "Hybrid Liquids", "Liquids", UCD_fuel), + UCD_class = if_else(UCD_class == "All", "Bus", UCD_class)) %>% + left_join_keep_first_only(StubTranTechLoadFactor_USA, by = c("UCD_class" = "tranSubsector", "UCD_fuel" = "stub.technology", "year")) %>% + # Convert from g per vehicle miles to Tg per million passenger km + mutate(value = (value * CONV_PERS_MILPERS * CONV_G_TG) / (loadFactor * CONV_MI_KM)) %>% + left_join_keep_first_only(MARKAL_fuel_name_code, by = c("Fuel" = "Fuel_code")) %>% + select( c( Class, Fuel, Vintage, pollutant, year, region, value, Fuel_name ) ) + + # 3c. Motorcycles + # ================================================================================= + # Process the raw data + # Motorcycle EFs are not in MARKAL, so we use MOVES and calculate EFs + motorcycle_gpm.long <- MOVES_motorcycle_data %>% + #rename columns for consistency + rename( Vintage = ModelYr, + year = Year ) %>% + #make df long + tidyr::gather( key = "pollutant", value = "emissions", -c( year, State, Vintage, Distance ) ) %>% + #convert distance from miles to meters + mutate( Distance = Distance * CONV_MILE_KM * 1000 ) %>% + #changing pollutant names for consistency + mutate( pollutant = gsub( "Total_PM25", "PM2.5", pollutant ), + pollutant = gsub( "Total_PM10", "PM10", pollutant ) ) + + # Gather a table for use in calculating degradation of EFs for each vintage + # Degradation tables for LDV and HDV have year and vintage in 5 year bins, but having every vintage (yearly) is ok + # since we use it for a linear fit degradation + L171.Moto_USA_emiss_degrades <- motorcycle_gpm.long %>% + filter( Vintage >= max(gcamusa.TRAN_MODEL_BASE_YEARS) ) %>% + mutate( value = emissions / Distance ) %>% + select( -c( Distance, emissions ) ) %>% + #get national average EFs + group_by( year, Vintage, pollutant ) %>% + mutate( value = sum( value ) ) %>% + distinct( year, Vintage, pollutant, value ) %>% + ungroup() %>% + #adding class column + #we will give it class "Motorcycle" which will later be mapped to UCD class 2W and 3W + mutate( Class = "Motorcycle", + #adding fuel column + Fuel = "GSL" ) %>% + #add the EFs to every "division" for consistency with MARKAL format, later to be apportioned to states + repeat_add_columns( tibble::tibble( region = unique( states_subregions$DIVISION ) ) ) + + + # Base year EFs + # TODO: Make this more robust + # For each of the historical years, calculate a distance-weighted EF + # for all of the vehicles that exist in that year. + # All vehicles existing in 1990 will be given the year 1990 + motorcycle_gpm.long_1990 <- motorcycle_gpm.long %>% + filter( year == 2010 & Vintage <= 1990 ) %>% + mutate( year = 1990 ) + + # All vehicles existing in 2005 will be given the year 2005 + motorcycle_gpm.long_2005 <- motorcycle_gpm.long %>% + filter( year == 2010 & Vintage <= 2005 ) %>% + mutate( year = 2005 ) + + # bind the tables back together to calculate distance-weighted EFs + motorcycle_gpm.long_Yb <- motorcycle_gpm.long %>% + bind_rows( motorcycle_gpm.long_1990, motorcycle_gpm.long_2005 ) %>% + # filter for GCAM historical years + filter( year %in% gcamusa.TRAN_MODEL_BASE_YEARS ) %>% + # calculate EFs + mutate( EF = emissions / Distance ) %>% + # sum Distance across year and pollutant, and get a share to weight EFs by + group_by( year, pollutant, State ) %>% + mutate( distance_sum = sum( Distance ), + distance_share = Distance / distance_sum, + weighted_EF = EF * distance_share ) %>% + # sum weighted EFs to get one EF per year, pollutant, and state + group_by( year, pollutant, State ) %>% + mutate( state_EF = sum( weighted_EF ) ) %>% + distinct( year, State, pollutant, state_EF ) %>% + # get a national average EF for each year and pollutant + group_by( year, pollutant ) %>% + mutate( value = mean( state_EF ) ) %>% + distinct( year, pollutant, value ) %>% + ungroup() + + # Future year EFs + # For each of the future years, assign EFs for YEAR = VINTAGE + motorcycle_gpm.long_Yf <- motorcycle_gpm.long %>% + # calculate EFs + mutate( EF = emissions / Distance ) %>% + # filter for GCAM future years + filter( year %in% gcamusa.TRAN_MODEL_FUTURE_YEARS & Vintage == year ) %>% + # get a national average EF for each year and pollutant + group_by( year, pollutant ) %>% + mutate( value = mean( EF ) ) %>% + distinct( year, pollutant, value ) %>% + ungroup() + + # binding historical and future tables and formatting + motorcycle_EFs_gpm.long <- motorcycle_gpm.long_Yb %>% + bind_rows( motorcycle_gpm.long_Yf ) %>% + #adding class column + #we will give it class "Motorcycle" which will later be mapped to UCD class 2W and 3W + mutate( Class = "Motorcycle", + #adding fuel column + Fuel = "GSL" ) %>% + #add the EFs to every "division" for consistency with MARKAL format, later to be apportioned to states + repeat_add_columns( tibble::tibble( region = unique( states_subregions$DIVISION ) ) ) + + # Convert to output-based EFs + motorcycle_EFs_tgpkm_Y <- motorcycle_EFs_gpm.long %>% + # Match UCD sector to motorcycle EFs + left_join_keep_first_only(trnMARKAL_UCD_mapping, by = c("Class" = "MARKAL_class", "Fuel" = "MARKAL_fuel")) %>% + rename(UCD_class = size.class, UCD_fuel = UCD_technology) %>% + left_join_keep_first_only(StubTranTechLoadFactor_USA, by = c("UCD_class" = "tranSubsector", "UCD_fuel" = "stub.technology", "year")) %>% + # Convert from g per vehicle miles to Tg per million passenger km + mutate(value = (value * CONV_PERS_MILPERS * CONV_G_TG) / (loadFactor * CONV_MI_KM)) %>% + left_join_keep_first_only(MARKAL_fuel_name_code, by = c("Fuel" = "Fuel_code")) %>% + #select columns to keep + select( c( region, Class, Fuel, pollutant, year, value ) ) %>% + #spread to wide format + spread( key = year, value ) + + # Also convert table containing emission coefficient degradation paths to Tg/million pass-km + L171.Moto_USA_emiss_degrades_tgpkm <- L171.Moto_USA_emiss_degrades %>% + left_join_keep_first_only(trnMARKAL_UCD_mapping, by = c("Class" = "MARKAL_class", "Fuel" = "MARKAL_fuel")) %>% + rename(UCD_class = size.class, UCD_fuel = UCD_technology) %>% + left_join_keep_first_only(StubTranTechLoadFactor_USA, by = c("UCD_class" = "tranSubsector", "UCD_fuel" = "stub.technology", "year")) %>% + # Convert from g per vehicle miles to Tg per million passenger km + mutate(value = (value * CONV_PERS_MILPERS * CONV_G_TG) / (loadFactor * CONV_MI_KM)) %>% + left_join_keep_first_only(MARKAL_fuel_name_code, by = c("Fuel" = "Fuel_code")) %>% + select( c( Class, Fuel, Vintage, pollutant, year, region, value, Fuel_name ) ) + + + # 3d. Apportion to states + # Here, we assume that emission factors are uniform in their census regions, as MARKAL + # provides EFs at the census region level. + # ================================================================================= + # Combine LDV, HDV, and Moto tables + MARKAL_trn_EFs_tgpkm_Y <- bind_rows(MARKAL_LDV_EFs_tgpkm_Y, MARKAL_HDV_EFs_tgpkm_Y, motorcycle_EFs_tgpkm_Y) %>% + ungroup() + + L171.trn_USA_emiss_degrades <- bind_rows(L171.HDV_USA_emiss_degrades_tgpkm, L171.LDV_USA_emiss_degrades_tgpkm, + L171.Moto_USA_emiss_degrades_tgpkm) + + # For now keep the degradation rates at the census region level to save time in level2 processing + L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y <- L171.trn_USA_emiss_degrades %>% + rename(class = Class, fuel = Fuel, vintage = Vintage) %>% + select( c( region, class, fuel, vintage, pollutant, year, value ) ) %>% + arrange(region, class, fuel, vintage, pollutant)%>% + mutate(year = as.numeric(year)) %>% + na.omit() + + state_census_region <- states_subregions %>% + select( c( state, DIVISION ) ) + + # Write the emission factors to each state, assuming they are uniform in their census regions + L171.nonco2_tgpkm_state_trn_SMarkal_F_Y_all <- MARKAL_trn_EFs_tgpkm_Y %>% + # need to use left join because expanding number of rows based on number of states in each census region + left_join(state_census_region, by = c("region" = "DIVISION")) %>% + rename(class = Class, fuel = Fuel) %>% + select( c( state, class, fuel, pollutant, as.character( gcamusa.TRN_MARKAL_EMISSION_YEARS ) ) ) %>% + arrange(state, class, fuel, pollutant)%>% + na.omit() + + # Update PM Efs for electric vehicles + L171.nonco2_tgpkm_state_trn_SMarkal_F_Y_EVEF_keep <- L171.nonco2_tgpkm_state_trn_SMarkal_F_Y_all %>% + filter(!(fuel == "ELC" & pollutant %in% c("PM2.5","PM10"))) + + L171.nonco2_tgpkm_state_trn_SMarkal_F_Y <- bind_rows(L171.nonco2_tgpkm_state_trn_SMarkal_F_Y_EVEF_keep, + MOVES_EV_Efs_ORD) + + + # =================================================== + # Produce outputs + L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y <- L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y %>% + add_title("Transportation non-co2 emission factor by U.S. census region / MARKAL vehicle class / fuel / vintage / pollutant / year") %>% + add_units("Tg / million pass-km or Tg / million ton-km") %>% + add_comments("Transportation non-co2 emission factor by U.S. census region / MARKAL vehicle class / fuel / vintage / pollutant / year. + Used for EF degradation/evolution. The base year captures the future evolution of fleet EFs for vehicles existing in the + base year") %>% + add_legacy_name("L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y") %>% + add_precursors("gcam-usa/emissions/MARKAL_MOVES_class", + "gcam-usa/emissions/MOVES_vehicle_age_fractions", + "gcam-usa/emissions/MOVES_src_type_reg_class_fractions", + "gcam-usa/emissions/MOVES_source_type_pop", + "gcam-usa/emissions/MOVES_VMT_dist", + "gcam-usa/emissions/MOVES_VMT_dist_missing_mapping", + "gcam-usa/emissions/MARKAL_LDV_EFs_gpm", + "L254.StubTranTechLoadFactor", + "gcam-usa/emissions/trnMARKAL_UCD_mapping", + "gcam-usa/emissions/MARKAL_fuel_name_code", + "gcam-usa/emissions/GREET2014_LDV_CNG_EFs_tgEJ", + "gcam-usa/emissions/MARKAL_LDV_eff_vmtMJ", + "gcam-usa/emissions/MARKAL_LDV_eff_missing_mapping", + "gcam-usa/emissions/MARKAL_HDV_EFs_gpm", + "gcam-usa/states_subregions", + "gcam-usa/emissions/MOVES_motorcycle_data") + + L171.nonco2_tgpkm_state_trn_SMarkal_F_Y <- L171.nonco2_tgpkm_state_trn_SMarkal_F_Y %>% + add_title("Transportation non-co2 emission factor by U.S. state / MARKAL vehicle class / fuel / pollutant / year") %>% + add_units("Tg / million pass-km or Tg / million ton-km") %>% + add_comments("Transportation non-co2 emission factor by U.S. state / MARKAL vehicle class / fuel / pollutant / year. Base + year EFs are averages weighted by vintage, age fraction, and vehicle miles traveled. Future year EFs are directly + from the MARKAL input for that year and vintage") %>% + add_legacy_name("L171.nonco2_tgpkm_censusR_trn_SMarkal_F_Y") %>% + add_precursors("gcam-usa/emissions/MARKAL_MOVES_class", + "gcam-usa/emissions/MOVES_vehicle_age_fractions", + "gcam-usa/emissions/MOVES_src_type_reg_class_fractions", + "gcam-usa/emissions/MOVES_source_type_pop", + "gcam-usa/emissions/MOVES_VMT_dist", + "gcam-usa/emissions/MOVES_VMT_dist_missing_mapping", + "gcam-usa/emissions/MARKAL_LDV_EFs_gpm", + "L254.StubTranTechLoadFactor", + "gcam-usa/emissions/trnMARKAL_UCD_mapping", + "gcam-usa/emissions/MARKAL_fuel_name_code", + "gcam-usa/emissions/GREET2014_LDV_CNG_EFs_tgEJ", + "gcam-usa/emissions/MARKAL_LDV_eff_vmtMJ", + "gcam-usa/emissions/MARKAL_LDV_eff_missing_mapping", + "gcam-usa/emissions/MARKAL_HDV_EFs_gpm", + "gcam-usa/states_subregions", + "gcam-usa/emissions/MOVES_EV_Efs_ORD", + "gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/MARKAL_GCAM_mapping", + "gcam-usa/emissions/MOVES_motorcycle_data") + + + + return_data(L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y, + L171.nonco2_tgpkm_state_trn_SMarkal_F_Y) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L231.proc_sector.R b/input/gcamdata/R/zchunk_L231.proc_sector.R index a334676e68..4aab2ebf64 100644 --- a/input/gcamdata/R/zchunk_L231.proc_sector.R +++ b/input/gcamdata/R/zchunk_L231.proc_sector.R @@ -51,7 +51,8 @@ module_emissions_L231.proc_sector <- function(command, ...) { "L231.GlobalTechCoef_urb_ind", "L231.GlobalTechCost_urb_ind", "L231.RegionalTechCalValue_urb_ind", - "L231.IndCoef")) + "L231.IndCoef", + "L231.Ind_globaltech_eff")) } else if(command == driver.MAKE) { # Silence package checks @@ -224,7 +225,7 @@ module_emissions_L231.proc_sector <- function(command, ...) { # L231.IndCoef: coefficient on industrial processes as an input to the industry sector # Coefficient = 0.008 / change in industry output from 1990 (0.008 is the sum of calvalue) # First, interpolate A32.globaltech_eff efficiency values to all years - Ind.globaltech_eff <- A32.globaltech_eff %>% + L231.Ind_globaltech_eff <- A32.globaltech_eff %>% select(-year, -value) %>% repeat_add_columns(tibble(year = c(HISTORICAL_YEARS, MODEL_FUTURE_YEARS))) %>% left_join(A32.globaltech_eff, by = c("supplysector", "subsector", "technology", "minicam.energy.input", @@ -242,7 +243,7 @@ module_emissions_L231.proc_sector <- function(command, ...) { mutate(sector = "other industrial energy use"), L1322.in_EJ_R_indfeed_F_Yh %>% mutate(sector = "other industrial feedstocks")) %>% - left_join_keep_first_only(Ind.globaltech_eff, by = c("sector", "fuel", "year")) %>% + left_join_keep_first_only(L231.Ind_globaltech_eff, by = c("sector", "fuel", "year")) %>% # Calculate service as energy * efficiency mutate(service = value * efficiency) %>% na.omit() %>% @@ -427,10 +428,18 @@ module_emissions_L231.proc_sector <- function(command, ...) { "common/GCAM_region_names") -> L231.IndCoef + L231.Ind_globaltech_eff %>% + add_title("Industrial efficiency values for all years") %>% + add_units("NA") %>% + add_comments("A32.globaltech_eff efficiency values interpolated to all years") %>% + add_legacy_name("L231.IndCoef") %>% + add_precursors("energy/A32.globaltech_eff") -> + L231.Ind_globaltech_eff + return_data(L231.UnlimitRsrc, L231.UnlimitRsrcPrice, L231.FinalDemand_urb, L231.Supplysector_urb_ind, L231.SubsectorLogit_urb_ind, L231.SubsectorShrwt_urb_ind, L231.SubsectorShrwtFllt_urb_ind, L231.SubsectorInterp_urb_ind, L231.SubsectorInterpTo_urb_ind, L231.StubTech_urb_ind, L231.GlobalTechShrwt_urb_ind, L231.GlobalTechEff_urb_ind, L231.GlobalTechCoef_urb_ind, - L231.GlobalTechCost_urb_ind, L231.RegionalTechCalValue_urb_ind, L231.IndCoef) + L231.GlobalTechCost_urb_ind, L231.RegionalTechCalValue_urb_ind, L231.IndCoef, L231.Ind_globaltech_eff) } else { stop("Unknown command") } diff --git a/input/gcamdata/R/zchunk_L231.proc_sector_USA.R b/input/gcamdata/R/zchunk_L231.proc_sector_USA.R new file mode 100644 index 0000000000..d3405e325b --- /dev/null +++ b/input/gcamdata/R/zchunk_L231.proc_sector_USA.R @@ -0,0 +1,407 @@ +#' module_gcamusa_L231.proc_sector_USA +#' +#' Writes urban & industrial processing sector outputs for USA. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs:\code{L231.DeleteSupplysector_industry_USA}, \code{L231.DeleteSupplysector_urban_processes_USA}, +#' \code{L231.DeleteFinalDemand_urban_processes_USA}, \code{L231.UnlimitRsrc_USA}, \code{L231.UnlimitRsrcPrice_USA}, \code{L231.FinalDemand_urb_USA}, +#' \code{L231.Supplysector_urb_ind_USA}, \code{L231.SubsectorLogit_urb_ind_USA}, +#' \code{L231.SubsectorShrwt_urb_ind_USA}, \code{L231.SubsectorShrwtFllt_urb_ind_USA}, +#' \code{L231.SubsectorInterp_urb_ind_USA}, \code{L231.SubsectorInterpTo_urb_ind_USA}, +#' \code{L231.StubTech_urb_ind_USA}, \code{L231.RegionalTechCalValue_urb_ind_USA}, \code{L231.IndCoef_USA}. +#' @details For urban processes and industrial processes, subsectors +#' and supplysectors, produces logit, shareweights, and interpolation files by writing assumption file data to all regions. +#' Writes out coefficients and prices for misc emissions sources from assumption file data. +#' Outputs urban processing demand using constants. StubTech mapping file created from assumption mappings. +#' Regional technology calibration values created with constant. Industry input-output coefficient file created. +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author BY September 2019 + +module_gcamusa_L231.proc_sector_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE="emissions/A31.rsrc_info", + "L231.FinalDemand_urb", + FILE="emissions/A31.sector", + "L231.IndCoef", + FILE="gcam-usa/states_subregions", + FILE="emissions/A31.subsector_logit", + FILE="emissions/A31.subsector_shrwt", + FILE="emissions/A31.subsector_interp", + "L231.StubTech_urb_ind", + "L231.GlobalTechCost_urb_ind", + "L231.Ind_globaltech_eff", + "L132.in_EJ_state_indnochp_F", + "L132.in_EJ_state_indchp_F", + "L132.in_EJ_state_indfeed_F")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L231.DeleteSupplysector_industry_USA", + "L231.DeleteSupplysector_urban_processes_USA", + "L231.DeleteFinalDemand_urban_processes_USA", + "L231.UnlimitRsrc_USA", + "L231.UnlimitRsrcPrice_USA", + "L231.FinalDemand_urb_USA", + "L231.Supplysector_urb_ind_USA", + "L231.SubsectorLogit_urb_ind_USA", + "L231.SubsectorShrwt_urb_ind_USA", + "L231.SubsectorShrwtFllt_urb_ind_USA", + "L231.SubsectorInterp_urb_ind_USA", + "L231.SubsectorInterpTo_urb_ind_USA", + "L231.StubTech_urb_ind_USA", + "L231.RegionalTechCalValue_urb_ind_USA", + "L231.IndCoef_USA" + )) + } else if(command == driver.MAKE) { + + # Silence package checks + year <- value <- share.weight <- efficiency <- input.cost <- coefficient <- + year.fillout <- to.value <- supplysector <- subsector <- technology <- minicam.energy.input <- + minicam.non.energy.input <- region <- sector.name <- subsector.name <- calibrated.value <- + market <- resource_type <- resource <- `output-unit` <- `price-unit` <- capacity.factor <- + secondary.output <- state <- service <- ind_proc_input <- ind_output <- sector <- fuel <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + A31.rsrc_info <- get_data(all_data, "emissions/A31.rsrc_info") %>% + gather_years + L231.FinalDemand_urb <- get_data(all_data, "L231.FinalDemand_urb", strip_attributes = TRUE) + A31.sector <- get_data(all_data, "emissions/A31.sector", strip_attributes = TRUE) + L231.IndCoef <- get_data(all_data, "L231.IndCoef", strip_attributes = TRUE) + states_subregions <- get_data(all_data, "gcam-usa/states_subregions") + A31.subsector_logit <- get_data(all_data, "emissions/A31.subsector_logit", strip_attributes = TRUE) + A31.subsector_shrwt <- get_data(all_data, "emissions/A31.subsector_shrwt", strip_attributes = TRUE) + A31.subsector_interp <- get_data(all_data, "emissions/A31.subsector_interp", strip_attributes = TRUE) + L231.StubTech_urb_ind <- get_data(all_data, "L231.StubTech_urb_ind", strip_attributes = TRUE) + L231.GlobalTechCost_urb_ind <- get_data(all_data, "L231.GlobalTechCost_urb_ind", strip_attributes = TRUE) + L231.Ind_globaltech_eff <- get_data(all_data, "L231.Ind_globaltech_eff", strip_attributes = TRUE) + L132.in_EJ_state_indnochp_F <- get_data(all_data, "L132.in_EJ_state_indnochp_F", strip_attributes = TRUE) + L132.in_EJ_state_indchp_F <- get_data(all_data, "L132.in_EJ_state_indchp_F", strip_attributes = TRUE) + L132.in_EJ_state_indfeed_F <- get_data(all_data, "L132.in_EJ_state_indfeed_F", strip_attributes = TRUE) + + # =================================================== + + # Delete industry supplysector at the USA level + L231.DeleteSupplysector_industry_USA <- L231.IndCoef %>% + filter(region == gcam.USA_REGION) %>% + select(region, supplysector) %>% + distinct() + + # Delete urban processes supplysector at the USA level + L231.DeleteSupplysector_urban_processes_USA <- tibble(region = gcam.USA_REGION, supplysector = A31.sector$supplysector) %>% + filter( supplysector == "urban processes" ) + + # Delete urban processes supplysector at the USA level + L231.DeleteFinalDemand_urban_processes_USA <- L231.FinalDemand_urb %>% + filter(region == gcam.USA_REGION) %>% + select(region, energy.final.demand) %>% + distinct() + + # L231.FinalDemand_urb_USA: + # Final demand information for urban processes sector for all U.S. states (copy the parameters) + L231.FinalDemand_urb_USA <- L231.FinalDemand_urb %>% + select(-region) %>% + distinct() %>% + write_to_all_states(LEVEL2_DATA_NAMES[["FinalDemandInfo"]]) + + # L231.Supplysector_ind_USA: + # Supply sector information for urban & industrial processes sectors for all U.S. states + L231.Supplysector_urb_ind_USA <- A31.sector %>% + write_to_all_states(c(LEVEL2_DATA_NAMES[["Supplysector"]], LOGIT_TYPE_COLNAME)) + + # Subsector information + # L231.SubsectorLogit_urb_ind_USA: + # Subsector logit exponents of urban & industrial processes sectors for all U.S. states + L231.SubsectorLogit_urb_ind_USA <- A31.subsector_logit %>% + write_to_all_states(c(LEVEL2_DATA_NAMES[["SubsectorLogit"]], LOGIT_TYPE_COLNAME)) + + # L231.SubsectorShrwt_urb_ind_USA and L231.SubsectorShrwtFllt_urb_ind_USA: + # Subsector shareweights of urban & industrial processes sectors for all U.S. states + if(any(!is.na(A31.subsector_shrwt$year))) { + L231.SubsectorShrwt_urb_ind_USA <- A31.subsector_shrwt %>% + filter(!is.na(year)) %>% + write_to_all_states(LEVEL2_DATA_NAMES[["SubsectorShrwt"]]) + } + if(any(!is.na(A31.subsector_shrwt$year.fillout))) { + L231.SubsectorShrwtFllt_urb_ind_USA <- A31.subsector_shrwt %>% + filter(!is.na(year.fillout)) %>% + write_to_all_states(LEVEL2_DATA_NAMES[["SubsectorShrwtFllt"]]) + } + + # L231.SubsectorInterp_urb_ind_USA and L231.SubsectorInterpTo_urb_ind_USA: + # Subsector shareweight interpolation of urban & industrial processes sector for all U.S. states + if(any(is.na(A31.subsector_interp$to.value))) { + L231.SubsectorInterp_urb_ind_USA <- A31.subsector_interp %>% + filter(is.na(to.value)) %>% + write_to_all_states(LEVEL2_DATA_NAMES[["SubsectorInterp"]]) + } + if(any(!is.na(A31.subsector_interp$to.value))) { + L231.SubsectorInterpTo_urb_ind_USA <- A31.subsector_interp %>% + filter(!is.na(to.value)) %>% + write_to_all_states(LEVEL2_DATA_NAMES[["SubsectorInterpTo"]]) + } + + # Technology information + # L231.StubTech_urb_ind_USA: + # Identification of stub technologies of urban & industrial processes sectors for all U.S. States + # Note: assuming that technology list in the shareweight table includes the full set (any others would default to a 0 shareweight) + L231.StubTech_urb_ind_USA <- L231.StubTech_urb_ind %>% + select(-region) %>% + distinct() %>% + write_to_all_states(LEVEL2_DATA_NAMES[["StubTech"]]) + + # Calibration and region-specific data + # (NOTE: these parameters are still being copied across all regions/states) + # L231.RegionalTechCalValue_urb_ind_USA: calibrated input of urban & industrial processes technologies + L231.RegionalTechCalValue_urb_ind_USA <- L231.GlobalTechCost_urb_ind %>% + filter(year %in% MODEL_BASE_YEARS) %>% + select(-minicam.non.energy.input, -input.cost) %>% + # Assign values to all regions + repeat_add_columns(tibble(region = states_subregions$state)) %>% + mutate(minicam.energy.input = emissions.REG_TECH_CAL_VALUE_MINICAM_ENERGY_INPUT, + calibrated.value = emissions.REG_TECH_CAL_VALUE) %>% + select(region, sector.name, subsector.name, technology, year, minicam.energy.input, calibrated.value) + + # Resource Information + # Interpolate to specified historical years, as necessary + L231.rsrc_info_USA <- A31.rsrc_info %>% + select(-year, -value) %>% + distinct() %>% + # Interpolate to all years + repeat_add_columns(tibble(year = HISTORICAL_YEARS)) %>% + left_join(A31.rsrc_info, by = c("resource", "resource_type", + "market", "output-unit", "price-unit", "capacity.factor", "year")) %>% + mutate(value = approx_fun(year, value, rule = 1)) %>% + filter(year %in% MODEL_YEARS) %>% + repeat_add_columns(tibble(region = states_subregions$state)) %>% + mutate(market = replace(market, market == "regional", region[market == "regional"])) + + # L231.UnlimitRsrc_USA: + # output unit, price unit, and market for unlimited resources for all U.S. states + L231.UnlimitRsrc_USA <- L231.rsrc_info_USA %>% + filter(resource_type == "unlimited-resource") %>% + select(-year, - value) %>% + distinct %>% + select(region, unlimited.resource = resource, output.unit = `output-unit`, price.unit = `price-unit`, market, capacity.factor) + + # L231.UnlimitRsrcPrice_USA: + # prices for unlimited resources for all U.S. states + L231.UnlimitRsrcPrice_USA <- L231.rsrc_info_USA %>% + filter(resource_type == "unlimited-resource") %>% + select(region, unlimited.resource = resource, year, price = value) + + # L231.IndCoef_USA: + # coefficient on industrial processes as an input to the industry sector for all U.S. states + # Coefficient = 0.008 / change in industry output from 1990 (0.008 is the sum of calvalue) + # Now combine input energy info and join with efficiency values + L231.IndCoef_Yb_USA <- bind_rows(L132.in_EJ_state_indchp_F %>% + mutate(sector = "other industrial energy use"), + L132.in_EJ_state_indnochp_F %>% + mutate(sector = "other industrial energy use"), + L132.in_EJ_state_indfeed_F %>% + mutate(sector = "other industrial feedstocks")) %>% + group_by(state, sector, fuel, year) %>% + summarise(value = sum(value)) %>% + ungroup() %>% + left_join_keep_first_only(L231.Ind_globaltech_eff, by = c("sector", "fuel", "year")) %>% + # Calculate service as energy * efficiency + mutate(service = value * efficiency) %>% + na.omit() %>% + group_by(state, year) %>% + summarise(ind_output = sum(service)) %>% + ungroup() %>% + mutate(ind_proc_input = emissions.IND_PROC_INPUT, + coefficient = ind_proc_input / ind_output, + supplysector = "other industry", + subsector = "other industry", + technology = "other industry", + minicam.energy.input = emissions.IND_PROC_MINICAM_ENERGY_INPUT) + + # Interpolate coefficients to model years + L231.IndCoef_USA <- L231.IndCoef_Yb_USA %>% + select(-year, -coefficient, -ind_output, -ind_proc_input) %>% + distinct %>% + repeat_add_columns(tibble(year = MODEL_YEARS)) %>% + left_join(L231.IndCoef_Yb_USA, by = c("state", "supplysector", "subsector", "technology", "minicam.energy.input", "year")) %>% + rename(region = state) %>% + group_by(region, technology) %>% + mutate(coefficient = approx_fun(year, coefficient, rule = 2)) %>% + ungroup() %>% + select(region, supplysector, subsector, technology, year, minicam.energy.input, coefficient) + + # =================================================== + + # Produce outputs + L231.DeleteSupplysector_industry_USA %>% + add_title("Delete industry supplysector for the USA region") %>% + add_units("Unitless") %>% + add_comments("Info from L231.IndCoef, filtered to USA region") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L231.IndCoef") -> + L231.DeleteSupplysector_industry_USA + + L231.DeleteSupplysector_urban_processes_USA %>% + add_title("Delete urban processes supplysector for the USA region") %>% + add_units("Unitless") %>% + add_comments("Info from A31.sector") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.sector") -> + L231.DeleteSupplysector_urban_processes_USA + + L231.DeleteFinalDemand_urban_processes_USA %>% + add_title("Delete urban processes final demand for the USA region") %>% + add_units("Unitless") %>% + add_comments("Info from L231.FinalDemand_urb, filtered to USA region") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L231.FinalDemand_urb") -> + L231.DeleteFinalDemand_urban_processes_USA + + L231.UnlimitRsrc_USA %>% + add_title("Processing Resource Capacity Factors for all U.S. states") %>% + add_units("Unitless") %>% + add_comments("Data from A31.rsrc_info") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.rsrc_info", + "gcam-usa/states_subregions") -> + L231.UnlimitRsrc_USA + + L231.UnlimitRsrcPrice_USA %>% + add_title("Processing Resource Prices for all U.S. states") %>% + add_units("units") %>% + add_comments("Interpolated data from A31.rsrc_info") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.rsrc_info", + "gcam-usa/states_subregions") -> + L231.UnlimitRsrcPrice_USA + + L231.FinalDemand_urb_USA %>% + add_title("Urban Processes Final Energy Demand for all U.S. states") %>% + add_units("units") %>% + add_comments("Constants for base service, income elasticity, and aeei") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L231.FinalDemand_urb") -> + L231.FinalDemand_urb_USA + + L231.Supplysector_urb_ind_USA %>% + add_title("Urban and Industrial Processes Supplysector Logit Info for all U.S. states") %>% + add_units("Unitless") %>% + add_comments("A31.sector written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.sector") -> + L231.Supplysector_urb_ind_USA + + L231.SubsectorLogit_urb_ind_USA %>% + add_title("Urban and Industrial Processes Subsector Logit Info for all U.S. states") %>% + add_units("Unitless") %>% + add_comments("A31.subsector_logit written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.subsector_logit") -> + L231.SubsectorLogit_urb_ind_USA + + if(exists("L231.SubsectorShrwt_urb_ind_USA")) { + L231.SubsectorShrwt_urb_ind_USA %>% + add_title("Urban and Industrial Processes Subsector Shareweights for all U.S. states") %>% + add_units("Unitless") %>% + add_comments("A31.subsector_shrwt written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.subsector_shrwt") -> + L231.SubsectorShrwt_urb_ind_USA + } else { + missing_data() %>% + add_legacy_name("L231.SubsectorShrwt_ind_USA") -> + L231.SubsectorShrwt_urb_ind_USA + } + + if(exists("L231.SubsectorShrwtFllt_urb_ind_USA")) { + L231.SubsectorShrwtFllt_urb_ind_USA %>% + add_title("Urban and Industrial Processes Subsector Shareweights for all U.S. states") %>% + add_units("Unitless") %>% + add_comments("A31.subsector_shrwt written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.subsector_shrwt") -> + L231.SubsectorShrwtFllt_urb_ind_USA + } else { + missing_data() %>% + add_legacy_name("L231.SubsectorShrwtFllt_urb_ind_USA")-> + L231.SubsectorShrwtFllt_urb_ind_USA + } + + if(exists("L231.SubsectorInterp_urb_ind_USA")) { + L231.SubsectorInterp_urb_ind_USA %>% + add_title("Urban and Industrial Processes Subsector Shareweight Interpolation for all U.S. states") %>% + add_units("NA") %>% + add_comments("A31.subsector_interp written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.subsector_interp") -> + L231.SubsectorInterp_urb_ind_USA + } else { + missing_data() %>% + add_legacy_name("L231.SubsectorInterp_urb_ind_USA") -> + L231.SubsectorInterp_urb_ind_USA + } + + if(exists("L231.SubsectorInterpTo_urb_ind_USA")) { + L231.SubsectorInterpTo_urb_ind_USA %>% + add_title("Urban and Industrial Processes Subsector Shareweight Interpolation for all U.S. states") %>% + add_units("NA") %>% + add_comments("A31.subsector_interp written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("emissions/A31.subsector_interp") -> + L231.SubsectorInterpTo_urb_ind_USA + } else { + missing_data() %>% + add_legacy_name("L231.SubsectorInterpTo_urb_ind_USA") -> + L231.SubsectorInterpTo_urb_ind_USA + } + + L231.StubTech_urb_ind_USA %>% + add_title("Urban and Industrial Processes Stub Technology Map for all U.S. states") %>% + add_units("NA") %>% + add_comments("L231.StubTech_urb_ind written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L231.StubTech_urb_ind") -> + L231.StubTech_urb_ind_USA + + L231.RegionalTechCalValue_urb_ind_USA %>% + add_title("Urban and Industrial Processes Global Technology Calibrated Values for all U.S. states") %>% + add_units("units") %>% + add_comments("A31.globaltech_cost interpolated to base years and written to all states") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L231.GlobalTechCost_urb_ind", + "gcam-usa/states_subregions") -> + L231.RegionalTechCalValue_urb_ind_USA + + L231.IndCoef_USA %>% + add_title("Industrial Processes Input-Output Coefficients for all U.S. states") %>% + add_units("units") %>% + add_comments("Coefficients equal to constant input value divided by calculated output value based on state level industrial energy and feedstock use") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L231.Ind_globaltech_eff", + "L132.in_EJ_state_indchp_F", + "L132.in_EJ_state_indnochp_F", + "L132.in_EJ_state_indfeed_F") -> + L231.IndCoef_USA + + return_data(L231.DeleteSupplysector_industry_USA, + L231.DeleteSupplysector_urban_processes_USA, + L231.DeleteFinalDemand_urban_processes_USA, + L231.UnlimitRsrc_USA, + L231.UnlimitRsrcPrice_USA, + L231.FinalDemand_urb_USA, + L231.Supplysector_urb_ind_USA, + L231.SubsectorLogit_urb_ind_USA, + L231.SubsectorShrwt_urb_ind_USA, + L231.SubsectorShrwtFllt_urb_ind_USA, + L231.SubsectorInterp_urb_ind_USA, + L231.SubsectorInterpTo_urb_ind_USA, + L231.StubTech_urb_ind_USA, + L231.RegionalTechCalValue_urb_ind_USA, + L231.IndCoef_USA) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L254.transportation_USA.R b/input/gcamdata/R/zchunk_L254.transportation_USA.R index c2b0c232d1..7b90b93838 100644 --- a/input/gcamdata/R/zchunk_L254.transportation_USA.R +++ b/input/gcamdata/R/zchunk_L254.transportation_USA.R @@ -93,7 +93,8 @@ module_gcamusa_L254.transportation_USA <- function(command, ...) { "L254.StubTranTechCalInput_USA", "L254.StubTranTechProd_nonmotor_USA", "L254.StubTranTechCalInput_passthru_USA", - "L254.BaseService_trn_USA")) + "L254.BaseService_trn_USA", + "L254.StubTranTechOutput_USA")) } else if(command == driver.MAKE) { all_data <- list(...)[[1]] @@ -602,6 +603,16 @@ module_gcamusa_L254.transportation_USA <- function(command, ...) { "energy/mappings/UCD_size_class_revisions") -> L254.BaseService_trn_USA + L254.StubTranTechOutput_USA %>% + add_title("service output for all tranTechnologies") %>% + add_units("Million pass-km and million ton-km") %>% + add_comments("Service outputs of all motorized technologies are calculated as calInput * loadFactor / coefficient") %>% + add_legacy_name("L254.StubTranTechOutput_USA") %>% + same_precursors_as("L254.StubTranTechCalInput_USA") %>% + same_precursors_as("L254.StubTranTechLoadFactor_USA") %>% + same_precursors_as("L254.StubTranTechCoef_USA") -> + L254.StubTranTechOutput_USA + return_data(L254.DeleteSupplysector_USAtrn, L254.DeleteFinalDemand_USAtrn, L254.Supplysector_trn_USA, L254.FinalEnergyKeyword_trn_USA, @@ -624,7 +635,8 @@ module_gcamusa_L254.transportation_USA <- function(command, ...) { L254.PriceElasticity_trn_USA, L254.IncomeElasticity_trn_USA, L254.StubTranTechCalInput_USA, L254.StubTranTechProd_nonmotor_USA, - L254.StubTranTechCalInput_passthru_USA, L254.BaseService_trn_USA) + L254.StubTranTechCalInput_passthru_USA, L254.BaseService_trn_USA, + L254.StubTranTechOutput_USA) } else { stop("Unknown command") } diff --git a/input/gcamdata/R/zchunk_L270.nonghg_NEI_to_GCAM_USA.R b/input/gcamdata/R/zchunk_L270.nonghg_NEI_to_GCAM_USA.R new file mode 100644 index 0000000000..ef475449cc --- /dev/null +++ b/input/gcamdata/R/zchunk_L270.nonghg_NEI_to_GCAM_USA.R @@ -0,0 +1,143 @@ +#' module_gcamusa_L270.nonghg_nei_to_gcam +#' +#' Produce tables containing non-GHG emissions for all model base years by sector. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L270.nonghg_tg_state_elec_F_Yb}, \code{L270.nonghg_tg_state_refinery_F_Yb}, \code{L270.nonghg_tg_state_bld_F_Yb}, +#' \code{L270.nonghg_tg_state_indenergy_F_Yb}, \code{L270.nonghg_tg_state_othertrn_F_Yb}, \code{L270.nonghg_tg_state_prc_F_Yb}. +#' @details This chunk isolates sectoral non-ghg input emissions by U.S. state / sector / fuel / pollutant / year from NEI. +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author MAW February 2022 + +module_gcamusa_L270.nonghg_nei_to_gcam <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE = "gcam-usa/emissions/NEI_pollutant_mapping", + FILE = "gcam-usa/emissions/CEDS_GCAM_fuel", + FILE = "gcam-usa/emissions/CEDS_GCAM_transport", + "L170.NEI_1990_2017_GCAM_sectors")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L270.nonghg_tg_state_elec_F_Yb", + "L270.nonghg_tg_state_refinery_F_Yb", + "L270.nonghg_tg_state_bld_F_Yb", + "L270.nonghg_tg_state_indenergy_F_Yb", + "L270.nonghg_tg_state_othertrn_F_Yb", + "L270.nonghg_tg_state_prc_F_Yb")) + } else if(command == driver.MAKE) { + + # silence package check + GCAM_sector <- GCAM_fuel <- pollutant <-emissions <- state <- + sector <- fuel <- Non.CO2 <- value <- year <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + NEI_pollutant_mapping <- get_data( all_data, "gcam-usa/emissions/NEI_pollutant_mapping" ) + CEDS_GCAM_fuel <- get_data( all_data, "gcam-usa/emissions/CEDS_GCAM_fuel" ) + CEDS_GCAM_transport <- get_data( all_data, "gcam-usa/emissions/CEDS_GCAM_transport" ) + NEI_1990_2017_GCAM_sectors <- get_data( all_data, "L170.NEI_1990_2017_GCAM_sectors" ) + + # Perform computations + # This script assumes the data has been pre-processed. So all that needs to be done is + # to convert to the correct sector/fuel organization and convert units + # Note: This could be refined further in the future to run the function once and then filter by sector. + # Elec + elec_names <- c( "elec_heat" ) + L270.nonghg_tg_state_elec_F_Yb <- NEI_to_GCAM( NEI_1990_2017_GCAM_sectors, CEDS_GCAM_fuel, NEI_pollutant_mapping, elec_names ) + + # Refinery / related + refinery_names <- c( "petroleum_production", "petroleum_refining", "petroleum_distribution", + "ethanol_production", "NG_production_distribution", "biodiesel_production" ) + L270.nonghg_tg_state_refinery_F_Yb <- NEI_to_GCAM( NEI_1990_2017_GCAM_sectors, CEDS_GCAM_fuel, NEI_pollutant_mapping, refinery_names ) + + # Buildings + bld_names <- grep( "building", unique( NEI_1990_2017_GCAM_sectors$GCAM_sector ), value = T ) + L270.nonghg_tg_state_bld_F_Yb <- NEI_to_GCAM( NEI_1990_2017_GCAM_sectors, CEDS_GCAM_fuel, NEI_pollutant_mapping, bld_names ) %>% + mutate( sector = gsub( "building_", "", sector ) ) + + # Industrial energy + indenergy_names <- c( "industry_energy" ) + L270.nonghg_tg_state_indenergy_F_Yb <- NEI_to_GCAM( NEI_1990_2017_GCAM_sectors, CEDS_GCAM_fuel, NEI_pollutant_mapping, indenergy_names ) + + # Other transportation + othertrn_names <- c ("trn_domestic ship", "trn_domestic air", "trn_rail" ) + L270.nonghg_tg_state_othertrn_F_Yb <- NEI_to_GCAM( NEI_1990_2017_GCAM_sectors, CEDS_GCAM_transport, NEI_pollutant_mapping, othertrn_names ) + + # Process + process_names <- c( gcamusa.IND_PROC_EM_NEI_GCAM_SECTORS, gcamusa.URB_PROC_EM_NEI_GCAM_SECTORS, gcamusa.CEMENT_NEI_GCAM_SECTORS ) + L270.nonghg_tg_state_prc_F_Yb <- NEI_to_GCAM( NEI_1990_2017_GCAM_sectors, CEDS_GCAM_fuel, NEI_pollutant_mapping, process_names ) + + # =================================================== + # Produce outputs + + L270.nonghg_tg_state_elec_F_Yb %>% + add_title("Base-year electricity non-ghg input emissions") %>% + add_units("Tg") %>% + add_comments("Base-year electricity non-ghg input emissions by U.S. state / fuel / pollutant / year") %>% + add_legacy_name("LB172.nonghg_elc_USA") %>% + add_precursors("gcam-usa/emissions/CEDS_GCAM_fuel", "gcam-usa/emissions/NEI_pollutant_mapping", + "L170.NEI_1990_2017_GCAM_sectors") -> + L270.nonghg_tg_state_elec_F_Yb + + L270.nonghg_tg_state_refinery_F_Yb %>% + add_title("Base-year refining related non-ghg input emissions by U.S. state / sector / fuel / pollutant / year") %>% + add_units("Tg") %>% + add_comments("Base-year refining related non-ghg input emissions by U.S. state / sector / fuel / pollutant / year") %>% + add_precursors("gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/CEDS_GCAM_fuel", + "L170.NEI_1990_2017_GCAM_sectors") -> + L270.nonghg_tg_state_refinery_F_Yb + + L270.nonghg_tg_state_bld_F_Yb %>% + add_title("Base-year buildings sector non-ghg input emissions by U.S. state / sector / fuel / pollutant / year") %>% + add_units("Tg") %>% + add_comments("Base-year buildings sector non-ghg input emissions by U.S. state / sector / fuel / pollutant / year") %>% + add_legacy_name("L270.nonghg_tg_state_bld_F_Yb") %>% + add_precursors("gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/CEDS_GCAM_fuel", + "L170.NEI_1990_2017_GCAM_sectors") -> + L270.nonghg_tg_state_bld_F_Yb + + L270.nonghg_tg_state_indenergy_F_Yb %>% + add_title("Base-year industrial energy use sector non-ghg input emission factor by U.S. state / sector / fuel / pollutant / year") %>% + add_units("Tg") %>% + add_comments("Base-year industrial energy use sector non-ghg input emission factor by U.S. state / sector / fuel / pollutant / year") %>% + add_legacy_name("L270.nonghg_tg_state_indenergy_F_Yb") %>% + add_precursors("gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/CEDS_GCAM_fuel", + "L170.NEI_1990_2017_GCAM_sectors") -> + L270.nonghg_tg_state_indenergy_F_Yb + + L270.nonghg_tg_state_othertrn_F_Yb %>% + add_title("Base-year domestic aviation & ship & rail non-ghg input emission by U.S. state / fuel / pollutant / year") %>% + add_units("Tg") %>% + add_comments("Base-year domestic aviation & ship & rail non-ghg input emission by U.S. state / fuel / pollutant / year") %>% + add_legacy_name("L270.nonghg_tg_state_othertrn_F_Yb") %>% + add_precursors("gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/CEDS_GCAM_transport", + "L170.NEI_1990_2017_GCAM_sectors") -> + L270.nonghg_tg_state_othertrn_F_Yb + + L270.nonghg_tg_state_prc_F_Yb %>% + add_title("Base-year process non-ghg input emissions by U.S. state / sector / fuel / pollutant / year") %>% + add_units("Tg") %>% + add_comments("Base-year process non-ghg input emissions by U.S. state / sector / fuel / pollutant / year") %>% + add_precursors("gcam-usa/emissions/NEI_pollutant_mapping", + "gcam-usa/emissions/CEDS_GCAM_fuel", + "L170.NEI_1990_2017_GCAM_sectors") -> + L270.nonghg_tg_state_prc_F_Yb + + return_data(L270.nonghg_tg_state_elec_F_Yb, + L270.nonghg_tg_state_refinery_F_Yb, + L270.nonghg_tg_state_bld_F_Yb, + L270.nonghg_tg_state_indenergy_F_Yb, + L270.nonghg_tg_state_othertrn_F_Yb, + L270.nonghg_tg_state_prc_F_Yb) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L271.nonghg_trn_USA.R b/input/gcamdata/R/zchunk_L271.nonghg_trn_USA.R new file mode 100644 index 0000000000..c295093bbf --- /dev/null +++ b/input/gcamdata/R/zchunk_L271.nonghg_trn_USA.R @@ -0,0 +1,481 @@ +#' module_gcamusa_L271.nonghg_trn_USA +#' +#' Non-GHG emissions parameters for transportation technologies in the USA +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L271.nonco2_trn_tech_coeff_USA}, \code{L271.nonco2_trn_emiss_control_USA} +#' The corresponding file in the original data system was \code{L271.trn_nonCO2_USA.R} (gcam-usa level2). +#' @details Prepare level 2 transportation sector emissions files for USA. +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread unite +#' @importFrom stats lm +#' @author BY September 2019, MAW March 2022 + +module_gcamusa_L271.nonghg_trn_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L254.StubTranTech_USA", + FILE="gcam-usa/emissions/MARKAL_UCD_class", + FILE="gcam-usa/emissions/MARKAL_UCD_LDV_fuel", + FILE="gcam-usa/emissions/MARKAL_UCD_HDV_fuel", + "L171.nonco2_tgpkm_state_trn_SMarkal_F_Y", + "L254.StubTranTechOutput_USA", + "L170.NEI_1990_2017_GCAM_sectors", + FILE="gcam-usa/emissions/NEI_pollutant_mapping", + "L254.GlobalTranTechSCurve", + "L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y", + FILE="gcam-usa/states_subregions")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L271.nonco2_trn_tech_coeff_USA", + "L271.nonco2_trn_emiss_control_USA")) + } else if(command == driver.MAKE) { + + # silence check package notes + stub.technology <- add_predictions <- supplysector <- year <- fuel <- value <- state <- pollutant <- + region <- tranSubsector <- Non.CO2 <- emiss.coef <- MARKAL_class <- MARKAL_HDV_fuel <- output <- emission <- + emiss.coef.cali <- lifetime <- MARKAL_LDV_fuel <- DIVISION <- sector.name <- half.life <- steepness <- + vintage <- lm <- . <- MARKAL_fuel <- end.year <- start.year <- census_region <- pred <- final.emissions.coefficient <- + linear.control <- input.emissions <- fuel_input <- value <- emiss.coef_new <- NULL + + + all_data <- list(...)[[1]] + + # Load required inputs + L254.StubTranTech_USA <- get_data(all_data, "L254.StubTranTech_USA") + MARKAL_UCD_class <- get_data(all_data, "gcam-usa/emissions/MARKAL_UCD_class") + MARKAL_UCD_LDV_fuel <- get_data(all_data, "gcam-usa/emissions/MARKAL_UCD_LDV_fuel") + MARKAL_UCD_HDV_fuel <- get_data(all_data, "gcam-usa/emissions/MARKAL_UCD_HDV_fuel") + L171.nonco2_tgpkm_state_trn_SMarkal_F_Y <- get_data(all_data, "L171.nonco2_tgpkm_state_trn_SMarkal_F_Y") + L254.StubTranTechOutput_USA <- get_data(all_data, "L254.StubTranTechOutput_USA") + L170.NEI_1990_2017_GCAM_sectors <- get_data(all_data, "L170.NEI_1990_2017_GCAM_sectors") + NEI_pollutant_mapping <- get_data(all_data, "gcam-usa/emissions/NEI_pollutant_mapping") + L254.GlobalTranTechSCurve <- get_data(all_data, "L254.GlobalTranTechSCurve") + L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y <- get_data(all_data, "L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y") + states_subregions <- get_data(all_data, "gcam-usa/states_subregions") + + # =================================================== + # =================================================== + + # 1. Perform computations + # =================================================== + # Pollutant emissions for transportation technologies in all U.S. states + # 1.1 LDV emission coefficients + # =================================================== + L254.StubTranTech_USA_LDV <- L254.StubTranTech_USA %>% + filter( supplysector %in% gcamusa.LDV_SUPPLYSECTORS ) %>% + # this has to be a left join b/c of MARKAL to UCD mapping issues (explained below) + left_join(MARKAL_UCD_class, by = c("tranSubsector" = "UCD_class")) %>% + left_join_error_no_match(MARKAL_UCD_LDV_fuel, by = c("stub.technology" = "UCD_LDV_fuel")) %>% + repeat_add_columns(tibble::tibble(year = gcamusa.TRN_EMISSION_YEARS)) + # At this point, the DF has UCD classes mapped to multiple MARKAL classes + # and some MARKAL classes mapped to multiple UCD classes. This is remediated later. + + # Subset relevant classes and fuels from emission factor table + L171.nonco2_tgpkm_state_LDV_S_F_Y <- L171.nonco2_tgpkm_state_trn_SMarkal_F_Y %>% + filter(class %in% L254.StubTranTech_USA_LDV$MARKAL_class & + fuel %in% L254.StubTranTech_USA_LDV$MARKAL_LDV_fuel) %>% + tidyr::gather( year, value, -c( state, class, fuel, pollutant ) ) %>% + mutate( year = as.numeric( year ) ) + + # Match the emission coefficients onto the stub technology table + L271.nonco2_LDV_USA <- L254.StubTranTech_USA_LDV %>% + repeat_add_columns(tibble::tibble(Non.CO2 = unique(L171.nonco2_tgpkm_state_LDV_S_F_Y$pollutant))) %>% + #Need to use left_join, as there are several NA values (EV EFs, NH3 EFs for CNG) (will be filtered out in the next step) + left_join(L171.nonco2_tgpkm_state_LDV_S_F_Y, + by = c("region" = "state", "MARKAL_class" = "class", "MARKAL_LDV_fuel" = "fuel", "year", "Non.CO2" = "pollutant")) %>% + ###MISSING VALUES: EV emission factors for pollutants where there is no data, and NH3 and NOx EFs for CNG vehicles + # TODO: Use Ellie's method to add these + ###where there is also no data. OK to remove for now + na.omit() %>% + # since MARKAL classes don't directly map to new UCD classes, we must use averaging + # Ex. UCD_class = Car maps to MARKAL_class = Compact car AND MARKAL_class = Full size car + # Thus, "Car" will be assigned an EF that is the average of Compact car and Full size car + group_by( region, supplysector, tranSubsector, stub.technology, MARKAL_LDV_fuel, year, Non.CO2 ) %>% + mutate( value = mean( value ) ) %>% + # only need to keep one entry per tranSubsector + distinct( region, supplysector, tranSubsector, stub.technology, MARKAL_LDV_fuel, year, Non.CO2, value ) %>% + rename(emiss.coef = value) %>% + ungroup() %>% + # select relevant columns + select( -MARKAL_LDV_fuel ) + + # 1.2. HDV emission coefficients + # =================================================== + L254.StubTranTech_USA_HDV <- filter(L254.StubTranTech_USA, supplysector %in% gcamusa.HDV_SUPPLYSECTORS ) %>% + # this has to be a left join b/c of MARKAL to UCD mapping issues (explained below) + left_join(MARKAL_UCD_class, by = c("tranSubsector" = "UCD_class")) %>% + left_join_error_no_match(MARKAL_UCD_HDV_fuel, by = c("stub.technology" = "UCD_HDV_fuel")) %>% + repeat_add_columns(tibble::tibble(year = gcamusa.TRN_EMISSION_YEARS)) %>% + # Fix: change "Pickup" fuel to gasoline instead of B0 + mutate(MARKAL_HDV_fuel = if_else(MARKAL_class == "Pickup" & stub.technology == "Liquids", "GSL", MARKAL_HDV_fuel)) + # At this point, the DF has UCD classes mapped to multiple MARKAL classes + # and some MARKAL classes mapped to multiple UCD classes. This is remediated later. + + # Subset relevant classes and fuels from emission factor table + L171.nonco2_tgpkm_state_HDV_S_F_Y <- L171.nonco2_tgpkm_state_trn_SMarkal_F_Y %>% + filter(class %in% L254.StubTranTech_USA_HDV$MARKAL_class & + fuel %in% L254.StubTranTech_USA_HDV$MARKAL_HDV_fuel) %>% + tidyr::gather( year, value, -c( state, class, fuel, pollutant ) ) %>% + mutate( year = as.numeric( year ) ) + + # Match the emission coefficients onto the stub technology table + L271.nonco2_HDV_USA <- L254.StubTranTech_USA_HDV %>% + repeat_add_columns(tibble::tibble(Non.CO2 = unique(L171.nonco2_tgpkm_state_HDV_S_F_Y$pollutant))) %>% + # Need to use left_join, as there are several NA values (CNG EFs) (will be filtered out in the next step) + left_join(L171.nonco2_tgpkm_state_HDV_S_F_Y, + by = c("region" = "state", "MARKAL_class" = "class", "MARKAL_HDV_fuel" = "fuel", "year", "Non.CO2" = "pollutant")) %>% + ###MISSING VALUES: Rows with missing values are CNG-fueled vehicle emission factors for technologies where there is no data. + ###where there is also no data. OK to remove for now + na.omit() %>% + # since MARKAL classes don't directly map to new UCD classes, we must use averaging + # Ex. UCD_class = Medium truck maps to MARKAL_class = Commercial truck AND MARKAL_class = Heavy duty short haul truck + # Thus, "Car" will be assigned an EF that is the average of Compact car and Full size car + group_by( region, supplysector, tranSubsector, stub.technology, MARKAL_HDV_fuel, year, Non.CO2 ) %>% + mutate( value = mean( value ) ) %>% + # only need to keep one entry per tranSubsector + distinct( region, supplysector, tranSubsector, stub.technology, MARKAL_HDV_fuel, year, Non.CO2, value ) %>% + rename(emiss.coef = value) %>% + ungroup() %>% + # select relevant columns + select( -MARKAL_HDV_fuel ) + + # Bind the LDV and HDV tables and clean up + L271.nonco2_trn_tech_coeff_USA_LDV_HDV <- bind_rows(L271.nonco2_HDV_USA,L271.nonco2_LDV_USA) %>% + # Re-name the pollutants to match names of existing gases + mutate(Non.CO2 = gsub("VOC","NMVOC",Non.CO2), + Non.CO2 = gsub("NOX","NOx",Non.CO2)) + + # 2. Calculating output based EFs using NEI emissions/own service demand + # =================================================== + # EFs have 2005 as the earliest year. Copy 2005 values to previous base years + L271.nonco2_trn_tech_coeff_USA <- L271.nonco2_trn_tech_coeff_USA_LDV_HDV %>% + filter(year == min(year) ) %>% + select(-year) %>% + repeat_add_columns(tibble::tibble(year = c(1990))) %>% + # rebind with dataframe that has all years + bind_rows( L271.nonco2_trn_tech_coeff_USA_LDV_HDV ) %>% + #change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) + + # Separate into base year and future year tables. + L271.nonco2_trn_tech_coeff_USA_Yb <- L271.nonco2_trn_tech_coeff_USA %>% + filter( year %in% MODEL_BASE_YEARS ) + + L271.nonco2_trn_tech_coeff_USA_Yf <- L271.nonco2_trn_tech_coeff_USA %>% + filter( year %in% MODEL_FUTURE_YEARS ) + + # Prepare the NEI scaled to CEDS emissions + CEDS_emissions <- L170.NEI_1990_2017_GCAM_sectors %>% + rename( region = state, + CEDS_emissions = emissions ) %>% + left_join_error_no_match( NEI_pollutant_mapping, by = c( "pollutant" = "NEI_pollutant" ) ) %>% + select( - pollutant ) %>% + filter( GCAM_sector %in% gcamusa.GCAM_TRANSPORT_SECTORS, + year %in% MODEL_BASE_YEARS ) %>% + group_by( year, Non.CO2 ) %>% + # convert TON to Tg + mutate( CEDS_emissions = sum( CEDS_emissions * CONV_TST_TG / 1000 )) %>% + ungroup() %>% + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) %>% + distinct( year, Non.CO2, CEDS_emissions ) + + # For the table containing base year EFs, we will calculate inferred emissions using GCAM service output. + # We will then scale these emissions to CEDS at the national level by year and pollutant, and scale EFs by that same factor. + L271.nonco2_trn_tech_coeff_USA_Yb_scaled <- L271.nonco2_trn_tech_coeff_USA_Yb %>% + left_join_error_no_match( L254.StubTranTechOutput_USA, by = c( "region", "supplysector", "tranSubsector", + "stub.technology", "year" ) ) %>% + # mutliply the MARKAL EFs by the GCAM service output to get emissions + mutate( emissions = emiss.coef * output ) %>% + # remove unnecessary columns + select( c( "region", "supplysector", "tranSubsector", "stub.technology", "Non.CO2", "emiss.coef", "output", "year", "emissions" )) %>% + # group emissions nationally by year and Non.CO2 to get total emissions to scale to CEDS + group_by( year, Non.CO2 ) %>% + mutate( total_emissions = sum( emissions ) ) %>% + # join with the CEDS data + left_join( CEDS_emissions, by = c( "year", "Non.CO2" ) ) %>% + # calculate scaling factor + mutate( scaling_factor = CEDS_emissions / total_emissions, + # multiple EF by scaling factor to get scaled EF + emiss.coef = emiss.coef * scaling_factor ) %>% + # CH4 and N20 become NA, which is ok because these are GHGs + na.omit() %>% + # remove unnecessary columns + select( -c( "total_emissions", "CEDS_emissions", "emissions", "output", "scaling_factor" ) ) + + # Need a dataframe that has scaling factors for the current base year, which will be applied to EFs in the degradation table + # use same approach as above + scaling_factor <- L271.nonco2_trn_tech_coeff_USA_Yb %>% + left_join_error_no_match( L254.StubTranTechOutput_USA, by = c( "region", "supplysector", "tranSubsector", + "stub.technology", "year" ) ) %>% + # mutliply the MARKAL EFs by the GCAM service output to get emissions + mutate( emissions = emiss.coef * output ) %>% + # remove unnecessary columns + select( c( "region", "supplysector", "tranSubsector", "stub.technology", "Non.CO2", "emiss.coef", "output", "year", "emissions" )) %>% + # group emissions nationally by year and Non.CO2 to get total emissions to scale to CEDS + group_by( year, Non.CO2 ) %>% + mutate( total_emissions = sum( emissions ) ) %>% + # join with the CEDS data + left_join( CEDS_emissions, by = c( "year", "Non.CO2" ) ) %>% + # calculate scaling factor + mutate( scaling_factor = CEDS_emissions / total_emissions ) %>% + # CH4 and N20 become NA, which is ok because these are GHGs + na.omit() %>% + # filter for the most recent year (which is the last base year) and use this factor + filter( year == max( MODEL_BASE_YEARS ) ) %>% + ungroup() %>% + # the scaling factor is the same for all regions / sectors / techs within a pollutant + distinct( Non.CO2, scaling_factor ) + + # Scale the future year EFs and rebind the base years + L271.nonco2_trn_tech_coeff_USA_scaled <- L271.nonco2_trn_tech_coeff_USA_Yf %>% + # must use left join because the L271 datafame has CH4 and N2O, which we don't have scaling factors for + left_join( scaling_factor, by = c( "Non.CO2" ) ) %>% + # scale EF + mutate( emiss.coef = emiss.coef * scaling_factor ) %>% + # CH4 and N20 become NA, which is ok because these are GHGs + na.omit() %>% + # remove scaling factor column + select( -scaling_factor ) %>% + # bind with the dataframe containing the base year EFs + bind_rows( L271.nonco2_trn_tech_coeff_USA_Yb_scaled ) + + + # 3. Emissions coeff controls for transportation technologies in all U.S. states + # =================================================== + # Need vehicle lifetimes in order to calculate final-emissions-coeff parameter. + + # The vehicle lifetimes parameters are written out for future years, so to get lifetimes + # for the base years, we will assume they are all equal to the current base year + + # copy max base years values for all other base years + L254.GlobalTranTechSCurve_Yb <- L254.GlobalTranTechSCurve %>% + filter(year == max( MODEL_BASE_YEARS ) ) %>% + select(-year) %>% + repeat_add_columns(tibble::tibble(year = MODEL_BASE_YEARS)) %>% + # remove the max model base year info, as this is already in the previous table + filter( year != max( MODEL_BASE_YEARS ) ) + + # bind all years back together + L254.GlobalTranTechSCurve <- bind_rows(L254.GlobalTranTechSCurve, + L254.GlobalTranTechSCurve_Yb) %>% + filter(!is.na(lifetime)) + + # 4, Create table for emissions control + # Here, we take the table that contains LDV and HDV EFs by year computed from MARKAL, and the table + # that contains EF degradation / evolution by year and vintage and apply a linear fit to the decline in emission controls. + # =================================================== + L254.StubTranTech_USA_LDV.coeff <- L254.StubTranTech_USA_LDV %>% + repeat_add_columns(tibble::tibble(Non.CO2 = unique(L171.nonco2_tgpkm_state_LDV_S_F_Y$pollutant))) %>% + # Need to use left_join, as there are several NA values (such as EV EFs) (will be filtered out in the next step) + left_join(L171.nonco2_tgpkm_state_LDV_S_F_Y, by = c("region" = "state", + "MARKAL_class" = "class", + "MARKAL_LDV_fuel" = "fuel", + "Non.CO2" = "pollutant", + "year")) %>% + #MISSING VALUES: EV emission factors for pollutants where there is no data, and NH3 and NOx emission factors + #for CNG vehicles, for which there is no data. OK to remove for now + na.omit() %>% + rename(MARKAL_fuel = MARKAL_LDV_fuel) + + L254.StubTranTech_USA_HDV.coeff <- L254.StubTranTech_USA_HDV %>% + repeat_add_columns(tibble::tibble(Non.CO2 = unique(L171.nonco2_tgpkm_state_HDV_S_F_Y$pollutant))) %>% + # Need to use left_join, as there are several NA values (such as CNG EFs) (will be filtered out in the next step) + left_join(L171.nonco2_tgpkm_state_HDV_S_F_Y, by = c("region" = "state", + "MARKAL_class" = "class", + "MARKAL_HDV_fuel" = "fuel", + "Non.CO2" = "pollutant", + "year")) %>% + #MISSING VALUES: Emission factors for CNG vehicles, for which there is no data. OK to remove for now + na.omit() %>% + rename(MARKAL_fuel = MARKAL_HDV_fuel) + + state_census_region <- states_subregions %>% + select(state, DIVISION) + + # Combine LDV and HDV tables + L254.StubTranTech_USA_trn <- bind_rows(L254.StubTranTech_USA_LDV.coeff,L254.StubTranTech_USA_HDV.coeff) %>% + filter(year %in% unique(L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y$vintage)) %>% + # Add on lifetime for each technology that can be used to calculate final emissions coefficient + # need to use left join (some vehicles (Buses) have NA for lifetime) + left_join(L254.GlobalTranTechSCurve, by = c("tranSubsector" = "subsector.name", + "stub.technology" = "tranTechnology", + "year")) %>% + ###MISSING VALUES: It seems that "Bus" does not have a lifetime. Give it 25 years for now + mutate(lifetime = if_else(is.na(lifetime), as.integer(gcamusa.STUBTRANTECH_LIFETIME_2045V), lifetime), + # Add on start year and end year, census region, and id column for applying linear fits to estimate + # final emissions coefficient + start.year = year, + end.year = year + lifetime) %>% + left_join_error_no_match(state_census_region, by = c("region" = "state")) %>% + rename(census_region = DIVISION, + emiss.coef = value) %>% + select(-sector.name, -half.life, -steepness) %>% + unite(id, MARKAL_class, MARKAL_fuel, start.year, Non.CO2, census_region, sep = " ", remove = FALSE) + + # Prepare table containing emissions factor degradation data + degrades <- L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y %>% + filter(class %in% unique(L254.StubTranTech_USA_trn$MARKAL_class), fuel %in% unique(L254.StubTranTech_USA_trn$MARKAL_fuel)) %>% + unite(id, class, fuel, vintage, pollutant, region, sep = " ", remove = FALSE) + + # Create a list that contains linear fits for each degradation rate id, with labels + model_rslt <- lapply(X = split(degrades, degrades$id), FUN = function(X){ lm(value ~ year, data = X) }) + + # Extract the needed information (unique end year and id) from the emission control table and + # compute the linear prediction using the model corresponding to each id + prediction_table <- L254.StubTranTech_USA_trn %>% + filter(!(MARKAL_class %in% gcamusa.DEGRADES_FILTER_OUT_MARKAL_CLASS & + MARKAL_fuel %in% gcamusa.DEGRADES_FILTER_OUT_MARKAL_FUEL & + Non.CO2 %in% gcamusa.DEGRADES_FILTER_OUT_NONCO2)) %>% + select(end.year, id) %>% + distinct() %>% + rename(year = end.year) + + invisible(lapply(X = as.list(prediction_table$id), FUN = function(X){ + + prediction_table[prediction_table$id == X, "final.emissions.coefficient"] <<- predict.lm(model_rslt[[X]], newdata = prediction_table[prediction_table$id == X, ]) + + })) + + + # Add the final emissions coefficients onto the emissions control table + L271.nonco2_trn_emiss_control_USA <- L254.StubTranTech_USA_trn %>% + filter(!(MARKAL_class %in% gcamusa.DEGRADES_FILTER_OUT_MARKAL_CLASS & + MARKAL_fuel %in% gcamusa.DEGRADES_FILTER_OUT_MARKAL_FUEL & + Non.CO2 %in% gcamusa.DEGRADES_FILTER_OUT_NONCO2)) %>% + select("region", "supplysector", "tranSubsector", "stub.technology", "MARKAL_class", + "MARKAL_fuel", "year", "Non.CO2", "emiss.coef", "lifetime", + "start.year", "end.year", "census_region", "id") %>% + left_join_error_no_match(prediction_table, by = c("id", "end.year" = "year")) %>% + # remove duplicate entries that existed before due to having CORE and highEV sces + distinct() + + # Some final emissions coefficients are negative. In these cases, change the final value to the last known + negative_degrades <- L271.nonco2_trn_emiss_control_USA %>% + filter(final.emissions.coefficient < 0) + + last_avail_coeff <- negative_degrades %>% + select(census_region, MARKAL_class, MARKAL_fuel, start.year, Non.CO2) %>% + #must use left_join, we are changing the number of rows (multiple years, values per ID) + left_join(degrades, by = c("census_region" = "region", + "MARKAL_class" = "class", + "MARKAL_fuel" = "fuel", + "start.year" = "vintage", + "Non.CO2" = "pollutant")) %>% + group_by(census_region, MARKAL_class, MARKAL_fuel, start.year, Non.CO2) %>% + summarise(value = max(value)) %>% + ungroup() + + negative_degrades_replaced <- negative_degrades %>% + left_join_error_no_match(last_avail_coeff, by = c("census_region", "MARKAL_class", "MARKAL_fuel", "start.year", "Non.CO2")) %>% + mutate(final.emissions.coefficient = value) %>% + select(-value) + + # bind table back together + L271.nonco2_trn_emiss_control_USA <- L271.nonco2_trn_emiss_control_USA %>% + filter(final.emissions.coefficient >= 0) %>% + bind_rows(negative_degrades_replaced) %>% + # Add linear control object and round to 15 decimal places + mutate(linear.control = "Emissions Coefficient Degradation", + final.emissions.coefficient = round(final.emissions.coefficient,gcamusa.DIGITS_TRN_EF_DEGRADE)) %>% + select(region,supplysector,tranSubsector,stub.technology,year,Non.CO2,linear.control,start.year,end.year,final.emissions.coefficient) + + # Subset the table containing the max final emissions coefficients to match onto the future years + emiss_control_max <- filter(L271.nonco2_trn_emiss_control_USA, year == max(year)) %>% + select(-year, -start.year, -end.year) + + # Add on the remaining future years (2050 and after), keeping the final emissions coefficient constant at last known data point + remaining_future_years <- bind_rows(L254.StubTranTech_USA_LDV.coeff,L254.StubTranTech_USA_HDV.coeff) %>% + # remove sce column and remove duplicate entries (CORE and highEV sce's had same values) + select(-sce) %>% + distinct() %>% + filter(year >= max(gcamusa.TRN_MARKAL_EMISSION_YEARS)) %>% + # repeat these values for all future years + complete(nesting(region, supplysector, tranSubsector, stub.technology, MARKAL_class, UCD_class_old, + MARKAL_fuel, Non.CO2), year = c(MODEL_FUTURE_YEARS)) %>% + filter(year >= max(gcamusa.TRN_MARKAL_EMISSION_YEARS)) %>% + group_by(region, supplysector, tranSubsector, stub.technology, MARKAL_class, UCD_class_old, + MARKAL_fuel, Non.CO2) %>% + mutate(value = approx_fun_constant(year, value, rule = 2)) %>% + ungroup() %>% + # Add on lifetime for each technology that can be used to calculate final emissions coefficient + # need to use left join (some vehicles (Buses) have NA for lifetime) + left_join(L254.GlobalTranTechSCurve, by = c("tranSubsector" = "subsector.name", + "stub.technology" = "tranTechnology", + "year")) %>% + ###MISSING VALUES: It seems that "Motorcycle" does not have a lifetime. Give it 20 years for now + mutate(year = as.numeric(year), + lifetime = if_else(is.na(lifetime), as.integer(gcamusa.STUBTRANTECH_LIFETIME_2050V), lifetime), + # Add on start year and end year, census region, and id column for applying linear fits to estimate + # final emissions coefficient + start.year = year, + end.year = year + lifetime, + linear.control = "Emissions Coefficient Degradation") %>% + # Must use left_join, there are NA values for final emissions coefs (classes that were filtered out), these will be removed + left_join(emiss_control_max, by = c("region", "supplysector", "tranSubsector", "stub.technology", "Non.CO2", "linear.control")) %>% + select(region,supplysector,tranSubsector,stub.technology,year,Non.CO2,linear.control,start.year,end.year,final.emissions.coefficient) + + #Bind the future years to the existing emissions control table and adjusting final emissions coefficients + L271.nonco2_trn_emiss_control_USA_scaled <- bind_rows( L271.nonco2_trn_emiss_control_USA, remaining_future_years ) %>% + # set allow EF increase (boolean) to 1 + mutate( allow.ef.increase = 1, + #Re-name pollutants to match names of GCAM gases + Non.CO2 = gsub( "VOC", "NMVOC", Non.CO2 ), + Non.CO2 = gsub( "NOX", "NOx", Non.CO2 ), + Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) %>% + # adjust the EFs by the base year scaling factor + left_join( scaling_factor, by = "Non.CO2" ) %>% + mutate( final.emissions.coefficient = final.emissions.coefficient * scaling_factor ) %>% + # CH4 and N20 become NA, which is ok because these are GHGs + na.omit() %>% + select( -scaling_factor) %>% + # TODO: In the future, this should be done further upstream and be a weighted average. + # There are multiple entries for the same supplysector/subsector/tranSubsector + # due to multiple MARKAL classes mapping to single UCD classes. Use averaging. + group_by(region, supplysector, tranSubsector, stub.technology, year, Non.CO2, linear.control, start.year, end.year, allow.ef.increase) %>% + mutate( final.emissions.coefficient = mean( final.emissions.coefficient ) ) %>% + distinct() %>% + ungroup() + + # =================================================== + + # Produce outputs + + L271.nonco2_trn_tech_coeff_USA_scaled %>% + add_title("Non-CO2 transportation emissions coefficients by state / supplysector / tranSubsector / stub.technology / year / Non.CO2") %>% + add_units("Tg/million pass-km or Tg/million ton-km") %>% + add_comments("Efs for base and future years from MARKAL, scaled to CEDS") %>% + add_legacy_name("L274.nonghg_bld_tech_coeff_USA") %>% + add_precursors("L254.StubTranTech_USA", + "gcam-usa/emissions/MARKAL_UCD_class", + "gcam-usa/emissions/MARKAL_UCD_LDV_fuel", + "gcam-usa/emissions/MARKAL_UCD_HDV_fuel", + "L171.nonco2_tgpkm_state_trn_SMarkal_F_Y", + "L254.StubTranTechOutput_USA", + "L170.NEI_1990_2017_GCAM_sectors", + "gcam-usa/emissions/NEI_pollutant_mapping") -> + L271.nonco2_trn_tech_coeff_USA + + L271.nonco2_trn_emiss_control_USA_scaled %>% + add_title("Non-CO2 new transportation linear control final emissions coefficients by state / supplysector / tranSubsector / stub.technology / year / Non.CO2") %>% + add_units("Tg/million pass-km or Tg/million ton-km") %>% + add_comments("Efs for base and future years") %>% + add_legacy_name("L274.nonghg_bld_tech_coeff_USA") %>% + add_precursors("L254.StubTranTech_USA", + "gcam-usa/emissions/MARKAL_UCD_class", + "gcam-usa/emissions/MARKAL_UCD_LDV_fuel", + "gcam-usa/emissions/MARKAL_UCD_HDV_fuel", + "L254.GlobalTranTechSCurve", + "L171.nonco2_tgpkm_censusR_trn_SMarkal_F_V_Y", + "gcam-usa/states_subregions") -> + L271.nonco2_trn_emiss_control_USA + + return_data(L271.nonco2_trn_tech_coeff_USA, + L271.nonco2_trn_emiss_control_USA) + + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L272.nonghg_elc_USA.R b/input/gcamdata/R/zchunk_L272.nonghg_elc_USA.R new file mode 100644 index 0000000000..0b551bcf59 --- /dev/null +++ b/input/gcamdata/R/zchunk_L272.nonghg_elc_USA.R @@ -0,0 +1,347 @@ +#' module_gcamusa_L272.elc_nonghg_USA +#' +#' Calculate Non-GHG emissions parameters for electricity technologies in the USA +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L2721.nonghg_elec_tech_coeff_USA},\code{L2721.elec_MAC_CSAPR}. The corresponding file in the +#' original data system was \code{L272.elc_nonghg_USA.R} (gcam-usa level2). +#' @details This chunk calculates Non-GHG emissions parameters for electricity technologies in the USA and the electricity MAC curve +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author AJS and BY August 2019, MAW March 2022 + module_gcamusa_L272.elc_nonghg_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE = "gcam-usa/emissions/BC_OC_assumptions", + FILE = "gcam-usa/emissions/BCOC_PM25_ratios", + FILE = "gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ_post2015", + FILE = "gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ", + FILE = "gcam-usa/states_subregions", + "L123.in_EJ_state_elec_F", + "L270.nonghg_tg_state_elec_F_Yb", + FILE = "gcam-usa/A23.elecS_tech_mapping_cool", + FILE = "gcam-usa/A23.elecS_tech_availability", + "L2234.StubTechMarket_elecS_USA", + "L2233.StubTechProd_elecS_cool_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L272.nonghg_elec_tech_coeff_USA")) + } else if(command == driver.MAKE) { + + # silence package check + supplysector <- subsector <- technology <- elec_supplysector <- elec_subsector <- + elec_technology <- BC_fraction <- OC_fraction <- Non.CO2 <- emiss.coef <- + State <- ElectricityFuel <- Reduction <- Cost <- state <- state_name <- + grid_region <- CSAPR <- sector <- fuel <- year <- value <- output <- input <- + stub.technology <- region <- input.emissions <- fuel_input <- emiss.coef.x <- + emiss.coef.y <- supplysector.y <- subsector.y <- emiss.coef <- NULL + + + all_data <- list(...)[[1]] + + # Load required inputs + BC_OC_assumptions <- get_data(all_data, "gcam-usa/emissions/BC_OC_assumptions", strip_attributes = TRUE) + BCOC_PM25_ratios <- get_data(all_data, "gcam-usa/emissions/BCOC_PM25_ratios") %>% + # removing columns we do not use, and sectors that aren't mapped to GCAM sectors + select( -c( "Region", "Gains_Sector" ) ) %>% + filter( !is.na( sector ) ) + EPA_state_egu_emission_factors_ktPJ_post2015 <- get_data(all_data, "gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ_post2015", strip_attributes = TRUE) + EPA_state_egu_emission_factors_ktPJ <- get_data(all_data, "gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ", strip_attributes = TRUE) + states_subregions <- get_data(all_data, "gcam-usa/states_subregions", strip_attributes = TRUE) + L123.in_EJ_state_elec_F <- get_data(all_data, "L123.in_EJ_state_elec_F", strip_attributes = TRUE) + L270.nonghg_tg_state_elec_F_Yb <- get_data(all_data, "L270.nonghg_tg_state_elec_F_Yb", strip_attributes = TRUE) + L2234.StubTechMarket_elecS_USA <- get_data(all_data, 'L2234.StubTechMarket_elecS_USA', strip_attributes = TRUE) + L2233.StubTechProd_elecS_cool_USA <- get_data(all_data, 'L2233.StubTechProd_elecS_cool_USA', strip_attributes = TRUE) + A23.elecS_tech_mapping_cool <- get_data(all_data, 'gcam-usa/A23.elecS_tech_mapping_cool', strip_attributes = TRUE) + A23.elecS_tech_availability <- get_data(all_data, 'gcam-usa/A23.elecS_tech_availability', strip_attributes = TRUE) + + load_segments <- unique(A23.elecS_tech_mapping_cool$Electric.sector) + + #Electric s/s/t mapping file + A23.elecS_tech_mapping_cool %>% + anti_join(A23.elecS_tech_availability, + by = c("Electric.sector.technology" = "stub.technology")) %>% + mutate(Electric.sector = factor(Electric.sector, levels = load_segments), + Electric.sector = as.character(Electric.sector)) %>% + filter( Electric.sector != "elect_td_bld" ) -> + A23.elecS_tech_mapping + + ### Electricity technology emission coefficients in base years + + # First clean up the fuel inputs + agg_fuel_input_elec_Yb <- L123.in_EJ_state_elec_F %>% + # filter for the base years, which NEI input emissions are being applied for + filter(year %in% MODEL_BASE_YEARS) %>% + rename(fuel_input = value) + + # Take the table containing the emissions, match on the fuel inputs, and compute the emission coefficients + agg_nonghg_elec_emiss_coeffs_F_Yb <- L270.nonghg_tg_state_elec_F_Yb %>% + # filter for the base years + filter(year %in% MODEL_BASE_YEARS) %>% + rename(input.emissions = value) %>% + left_join_error_no_match(agg_fuel_input_elec_Yb, by = c("state", "fuel", "year")) %>% + mutate(emiss.coef = input.emissions / fuel_input) %>% + select(state, fuel, Non.CO2, year, emiss.coef, fuel_input) + ###MISSING VALUES: NAs and Infs generated. Keep these for now + + # Assign emission coefficients to the electricity technologies in the base years + L272.nonghg_elec_tech_coeff_Yb_USA.NAs <- L2233.StubTechProd_elecS_cool_USA %>% + select(-c(calOutputValue, share.weight.year, subs.share.weight, tech.share.weight)) %>% + filter(year %in% MODEL_BASE_YEARS, + # only retain entries for subsectors that we have fuel consumption for + subsector0 %in% agg_fuel_input_elec_Yb$fuel) %>% + # Add pollutant column + repeat_add_columns(tibble::tibble(Non.CO2=unique(L270.nonghg_tg_state_elec_F_Yb$Non.CO2))) %>% + # Match on emission factors, must use left_join as there are several NAs - technologies that do not have emissions + left_join(agg_nonghg_elec_emiss_coeffs_F_Yb, by = c("region" = "state", "subsector0" = "fuel", "Non.CO2", "year" ) ) %>% + rename( stub.technology = technology ) %>% + select(region, supplysector, subsector0, subsector, stub.technology, year, Non.CO2, emiss.coef) + + # Generate national median emissions factors for base years + # Remove NAs so as to not skew the median + L272.nonghg_elec_tech_coeff_Yb_USA.median.true <- L272.nonghg_elec_tech_coeff_Yb_USA.NAs %>% + filter(!is.na(emiss.coef)) %>% + group_by(year, Non.CO2, supplysector, subsector0, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # Some year / pollutant / sector / subsector / tech are NA for all entries, and should be set to 0 + L272.nonghg_elec_tech_coeff_Yb_USA.median.skewed <- L272.nonghg_elec_tech_coeff_Yb_USA.NAs %>% + replace_na(list(emiss.coef = 0)) %>% + group_by(year, Non.CO2, supplysector, subsector0, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # We want to join these tables so that only the entries not in median.true are retained from median.skewed + # These all have EFs of 0 + L272.nonghg_elec_tech_coeff_Yb_USA.median <- L272.nonghg_elec_tech_coeff_Yb_USA.median.skewed %>% + anti_join( L272.nonghg_elec_tech_coeff_Yb_USA.median.true, by=c("year", "Non.CO2", "supplysector", "subsector0", "subsector", "stub.technology") ) %>% + # rebind to median.true + bind_rows(L272.nonghg_elec_tech_coeff_Yb_USA.median.true) + + # Replace all emissions factors above a given value (20 * median) or that are NAs with the national median emissions factor for that year, non.CO2, and technology + L272.nonghg_elec_tech_coeff_Yb_USA.noBCOC <- L272.nonghg_elec_tech_coeff_Yb_USA.NAs %>% + left_join_error_no_match(L272.nonghg_elec_tech_coeff_Yb_USA.median, by = c("year", "Non.CO2", "supplysector", "subsector0", "subsector", "stub.technology")) %>% + # create a new column that has the threshold value + mutate( threshold = nationalEF * 20, + emiss.coef = if_else(emiss.coef > threshold | is.na(emiss.coef), nationalEF, emiss.coef)) %>% + select(region, Non.CO2, year, supplysector, subsector0, subsector, stub.technology, emiss.coef) + + # Use fractions of PM2.5 to calculate BC/OC emissions. + # We need to modify the BC_OC_assumptions table, as the BCOC_PM25_ratios table has updated values that are time dependent + # If there are sector/subsector/tech combos that are in BCOC_PM25_ratios, we want to replace those entries in + # the BC_OC_assumptions table. We also need to extend the data. + # Extrapolate the data to future model years, and format the table + BCOC_PM25_ratios_ext <- BCOC_PM25_ratios %>% + gather_years() %>% + complete(nesting(Parameter,sector,subsector,technology), year = MODEL_YEARS) %>% + # extrapolate missing years + group_by(Parameter,sector,subsector,technology) %>% + mutate(value = approx_fun(year, value, rule = 2)) %>% + ungroup() %>% + spread( Parameter, value ) %>% + rename( "BC_fraction" = `BC Fraction`, + "OC_fraction" = `OC Fraction`) + + BC_OC_assumptions_ext <- BC_OC_assumptions %>% + mutate( year = min( MODEL_BASE_YEARS ) ) %>% + complete(nesting(sector,subsector,technology, BC_fraction, OC_fraction), year = MODEL_YEARS) + + # Join the tables, keeping values from BC_OC_assumptions_ext that do not appear in BCOC_PM25_ratios + BC_OC_assumptions_years <- BC_OC_assumptions_ext %>% + anti_join( BCOC_PM25_ratios_ext, by = c("sector", "subsector", "technology", "year") ) %>% + # bind to BCOC_PM25_assumptions + bind_rows( BCOC_PM25_ratios_ext ) + + # Compute BC and OC EFs based off of PM2.5 + L272.nonghg_elec_tech_coeff_Yb_USA_all_techs <- compute_BC_OC_elc(L272.nonghg_elec_tech_coeff_Yb_USA.noBCOC, BC_OC_assumptions_years) %>% + # at this point we have some NA EFs due to renewable technologies not having BC/OC emissions + # we can omit these + na.omit() + + # Remove IGCC and CCS technologies in the base years and filter out 1975 + L272.nonghg_elec_tech_coeff_Yb_USA <- L272.nonghg_elec_tech_coeff_Yb_USA_all_techs %>% + filter( !grepl( 'IGCC|CCS', subsector ), + year > min( MODEL_BASE_YEARS ) ) + + + ### Electricity technology emission coefficients in future vintages + + # Create a table containing future emission factors, starting with exhaustive list of all technologies + L272.nonghg_elec_tech_coeff_Yf_USA.No.NH3 <- L2233.StubTechProd_elecS_cool_USA %>% + select(-c(calOutputValue, share.weight.year, subs.share.weight, tech.share.weight, year)) %>% + # only retain entries for subsectors that we have fuel consumption for + filter(subsector0 %in% agg_fuel_input_elec_Yb$fuel) %>% + # add future years, we only need the minimum future year, as the EF will pass forward in the model + repeat_add_columns(tibble::tibble(year = unique(min(MODEL_FUTURE_YEARS)))) %>% + # add pollutants + repeat_add_columns(tibble::tibble(Non.CO2 = unique(L270.nonghg_tg_state_elec_F_Yb$Non.CO2))) %>% + # must use left_join as there are several NAs - technologies that do not have emissions + left_join(A23.elecS_tech_mapping, by = c("supplysector" = "Electric.sector", + "subsector0" = "subsector", + "subsector" = "Electric.sector.technology", + "technology" = "to.technology")) %>% + # emission factors from EPA for electric power plants built post-2015 + left_join(EPA_state_egu_emission_factors_ktPJ_post2015, by=c("subsector0" = "fuel", "technology.y" = "technology", "Non.CO2")) %>% + rename(emiss.coef = emiss.coeff, + stub.technology = technology) %>% + select( c( region, supplysector, subsector0, subsector, stub.technology, year, Non.CO2, emiss.coef ) ) + + ###Filter out all NH3 NA emission factors which will replaced by EPA-ORD data, and are not included in the post2015 table + L272.nonghg_elec_tech_coeff_Yf_USA.NA.NH3 <- L272.nonghg_elec_tech_coeff_Yf_USA.No.NH3 %>% + filter(is.na(emiss.coef) & Non.CO2=="NH3") + + #Get NH3 emission factors from EPA-ORD + L272.nonghg_elec_tech_coeff_Yf_USA_NH3_EPA <- EPA_state_egu_emission_factors_ktPJ %>% + # Convert to long format + tidyr::gather(variable, value, -state_name, -fuel) %>% + separate(variable, into = c("year", "Non.CO2"), sep = "_") %>% + mutate(year = as.numeric(year), + # NOTE: for now change oil to refined liquids + fuel = gsub("oil", "refined liquids", fuel)) %>% + # state code & select relevant columns + left_join_error_no_match(states_subregions %>% select(state, state_name), + by = c("state_name")) %>% + mutate(sector = "elec_heat") %>% + filter(year %in% MODEL_FUTURE_YEARS, + Non.CO2 == "NH3") %>% + select(state, sector, fuel, Non.CO2, year, value) + + L272.nonghg_elec_tech_coeff_Yf_USA.NH3 <- L272.nonghg_elec_tech_coeff_Yf_USA.NA.NH3 %>% + # must use left_join as there are several NAs - technologies that do not have emissions + left_join(L272.nonghg_elec_tech_coeff_Yf_USA_NH3_EPA, by=c("region" = "state", "subsector0" = "fuel" ,"Non.CO2", "year")) %>% + select(-emiss.coef, -sector) %>% + rename(emiss.coef = value) + + ###Add these back to the L272.nonghg_elec_tech_coeff_Yf_USA.No.NH3 table + L272.nonghg_elec_tech_coeff_Yf_USA.NAs <- L272.nonghg_elec_tech_coeff_Yf_USA.No.NH3 %>% + #filter out NH3 because this dataframe has EFs as NA for all NH3 entries + filter(Non.CO2 != "NH3") %>% + #bind to table that has EFs for NH3 + bind_rows(L272.nonghg_elec_tech_coeff_Yf_USA.NH3) + + # Generate national median emissions factors for future years + # Remove NAs so as to not skew the median + L272.nonghg_elec_tech_coeff_Yf_USA.median.true <- L272.nonghg_elec_tech_coeff_Yf_USA.NAs %>% + filter(!is.na(emiss.coef)) %>% + group_by(year, Non.CO2, supplysector, subsector0, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # Some year / pollutant / sector / subsector / tech are NA for all entries, and should be set to 0 + L272.nonghg_elec_tech_coeff_Yf_USA.median.skewed <- L272.nonghg_elec_tech_coeff_Yf_USA.NAs %>% + replace_na(list(emiss.coef = 0)) %>% + group_by(year, Non.CO2, supplysector, subsector0, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # We want to join these tables so that only the entries not in median.true are retained from median.skewed + # These all have EFs of 0 + L272.nonghg_elec_tech_coeff_Yf_USA.median <- L272.nonghg_elec_tech_coeff_Yf_USA.median.skewed %>% + anti_join( L272.nonghg_elec_tech_coeff_Yf_USA.median.true, by=c("year", "Non.CO2", "supplysector", "subsector0", "subsector", "stub.technology") ) %>% + # rebind to median.true + bind_rows( L272.nonghg_elec_tech_coeff_Yf_USA.median.true) + + # Replace all emissions factors above a given value (20 * median) or that are NAs with the national median emissions factor for that year, non.CO2, and technology + L272.nonghg_elec_tech_coeff_Yf_USA.noBCOC <- L272.nonghg_elec_tech_coeff_Yf_USA.NAs %>% + left_join_error_no_match(L272.nonghg_elec_tech_coeff_Yf_USA.median, by = c("year", "Non.CO2", "supplysector", "subsector0", "subsector", "stub.technology")) %>% + # create a new column that has the threshold value + mutate( threshold = nationalEF * 20, + emiss.coef = if_else(emiss.coef > threshold | is.na(emiss.coef), nationalEF, emiss.coef)) %>% + select(region, Non.CO2, year, supplysector, subsector0, subsector, stub.technology, emiss.coef) %>% + mutate(emiss.coef = if_else(is.infinite(emiss.coef), 1, emiss.coef)) + + # Use fractions of PM2.5 to calculate BC/OC emissions. + L272.nonghg_elec_tech_coeff_Yf_USA <- compute_BC_OC_elc(L272.nonghg_elec_tech_coeff_Yf_USA.noBCOC, BC_OC_assumptions_years) %>% + # at this point we have some NA EFs due to renewable technologies not having BC/OC emissions + # we can omit these + na.omit() + + ### Electricity emission factors in all years, for all technologies + L272.nonghg_elec_tech_coeff_USA_all_techs <- bind_rows(L272.nonghg_elec_tech_coeff_Yb_USA, L272.nonghg_elec_tech_coeff_Yf_USA) %>% + distinct(region, supplysector, subsector0, subsector, stub.technology, year, Non.CO2, emiss.coef) %>% + select(region, supplysector, subsector0, subsector, stub.technology, year, Non.CO2, emiss.coef) + + # Create a table that has region/supplysector/subsector0/subsector/technology + # that should be kept for vintage and retire subsectors + # Remove technologies from both base and future years + # that have a calOutput = 0 in ALL base years, for vintage and retire subsectors + nonzero_cal_output <- L2233.StubTechProd_elecS_cool_USA %>% + # filtering for the retire and vintage subsectors (these contain 19XX or 20XX) + filter( grepl( '19|20', subsector )) %>% + # making a sum column, if sum = 0, that region/supplysector/subsector0/subsector/technology should be removed + group_by( region, supplysector, subsector0, subsector, technology ) %>% + mutate( sum = sum( calOutputValue ) ) %>% + ungroup() %>% + # do not keep the entries that have sum = 0 + filter( sum > 0 ) %>% + select( -c( sum, year, share.weight.year, subs.share.weight, tech.share.weight, calOutputValue ) ) %>% + distinct( region, supplysector, subsector0, subsector, technology ) + + # Subset the vintage and retire subsectors + L272.vintage_retire_techs <- L272.nonghg_elec_tech_coeff_USA_all_techs %>% + # filtering for the retire and vintage subsectors (these contain 19XX or 20XX) + filter( grepl( '19|20', subsector ) ) %>% + rename( technology = stub.technology ) + + # Subset the non vintage and retire subsectors + L272.regular_techs <- L272.nonghg_elec_tech_coeff_USA_all_techs %>% + # filtering out the retire and vintage subsectors (these contain 19XX or 20XX) + filter( !grepl( '19|20', subsector ) ) %>% + rename( technology = stub.technology ) + + # Keep only the region/supplysector/subsector0/subsector/technology with nonzero calOutput + L272.vintage_retire_techs_nonzero <- nonzero_cal_output %>% + left_join( L272.vintage_retire_techs, by = c("supplysector", "subsector0", "subsector", "region", "technology")) + + # Bind the two technologies together back together + L272.nonghg_elec_tech_coeff_USA_no_driver <- bind_rows( L272.regular_techs, L272.vintage_retire_techs_nonzero ) + + # Add an input name column to drive emissions + L272.nonghg_elec_tech_coeff_USA <- L272.nonghg_elec_tech_coeff_USA_no_driver %>% + # L2234.StubTechMarket_elecS has the fuel inputs that should be used to drive emissions + left_join_error_no_match( L2234.StubTechMarket_elecS_USA %>% select( c( "supplysector", "subsector", "stub.technology", + "minicam.energy.input" ) ) %>% + distinct( supplysector, subsector, minicam.energy.input ), + by = c("supplysector", "subsector0" = "subsector") ) %>% + #rename to input.name to match header + rename( input.name = minicam.energy.input) %>% + #change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) %>% + # remove 1975 + filter( year > min(MODEL_BASE_YEARS) ) %>% + # distinct to remove any potential duplicate rows + distinct() + + + # Produce outputs + + L272.nonghg_elec_tech_coeff_USA %>% + add_title("Non-GHG emissions parameters for electricity technologies in the USA") %>% + add_units("Tg/EJ") %>% + add_comments("Non-GHG emissions parameters for electricity technologies in the USA") %>% + add_legacy_name("L272.nonghg_elec_tech_coeff_USA") %>% + add_precursors("gcam-usa/emissions/BC_OC_assumptions", + "gcam-usa/emissions/BCOC_PM25_ratios", + "gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ_post2015", + "gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ", + "gcam-usa/states_subregions", + "L123.in_EJ_state_elec_F", + "L270.nonghg_tg_state_elec_F_Yb", + "gcam-usa/A23.elecS_tech_mapping_cool", + "gcam-usa/A23.elecS_tech_availability", + "L2234.StubTechMarket_elecS_USA", + "L2233.StubTechProd_elecS_cool_USA") -> + L272.nonghg_elec_tech_coeff_USA + + return_data(L272.nonghg_elec_tech_coeff_USA) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L2722.nonghg_elc_linear_control_USA.R b/input/gcamdata/R/zchunk_L2722.nonghg_elc_linear_control_USA.R new file mode 100644 index 0000000000..c70242abac --- /dev/null +++ b/input/gcamdata/R/zchunk_L2722.nonghg_elc_linear_control_USA.R @@ -0,0 +1,197 @@ +#' module_gcamusa_L2722.nonghg_elc_linear_control_USA +#' +#' Calculate NOx and SO2 emission factors and linear control parameters for coal - electricity technologies in the USA +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L272.nonghg_elec_tech_coeff_USA_linear_control}, \code{L2722.nonghg_elec_tech_coeff_USA_linear_control_off}. +#' @details This chunk calculates NOx and SO2 emission factors and linear control parameters for coal - electricity technologies in the USA +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author MAW October 2020 +module_gcamusa_L2722.nonghg_elc_linear_control_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L101.inEIA_EJ_state_S_F_all_years", + "L270.nonghg_tg_state_elec_F_Yb", + "L272.nonghg_elec_tech_coeff_USA", + "L2233.StubTechProd_elecS_cool_USA", + FILE = "gcam-usa/emissions/state_tier1_caps")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L2722.nonghg_elec_tech_coeff_USA_linear_control", + "L2722.nonghg_elec_tech_coeff_USA_linear_control_off")) + } else if(command == driver.MAKE) { + + # silence package check + fuel <- Non.CO2 <- value <- sector <- input.emissions <- + electricity.consumption <- year <- subsector <- + supplysector <- emiss.coef <- GCAM.emissions.factor <- + observed.emission.factor <- scaling <- minicam.energy.input <- + market.name <- year.y <- region <- stub.technology <- + end.year <- final.emissions.coefficient <- NULL + + + all_data <- list(...)[[1]] + + # Load required inputs + L101.inEIA_EJ_state_S_F_all_years <- get_data(all_data, "L101.inEIA_EJ_state_S_F_all_years", strip_attributes = TRUE) + L270.nonghg_tg_state_elec_F_Yb <- get_data(all_data, "L270.nonghg_tg_state_elec_F_Yb", strip_attributes = TRUE) + L272.nonghg_elec_tech_coeff_USA <- get_data(all_data, "L272.nonghg_elec_tech_coeff_USA", strip_attributes = TRUE) + L2233.StubTechProd_elecS_cool_USA <- get_data(all_data, 'L2233.StubTechProd_elecS_cool_USA', strip_attributes = TRUE) + state_tier1_caps <- get_data(all_data, "gcam-usa/emissions/state_tier1_caps", strip_attributes = TRUE) + + # Filter NEI data for fuel = coal, and pollutants = NOx or SO2 + NEI_emissions <- L270.nonghg_tg_state_elec_F_Yb %>% + filter( fuel == "coal", + Non.CO2 == "NOx" | Non.CO2 == "SO2") %>% + rename( input.emissions = value ) + + # Filter the EIA data for electricity inputs and coal + # SEDS (EIA) indicates electricity generation technologies either in terms of fuel inputs or fuel outputs (not both) + # ELECTRICITY_INPUT: coal, gas, oil, biomass + # ELECTRICITY_OUTPUT: nuclear and renewables + # Note: EIA has coal from electricity consumption as 0 for a few states, while GCAM has all non-zero + # We will apply the median emissions factor to these cases + EIA_electricity_consumption <- L101.inEIA_EJ_state_S_F_all_years %>% + filter( sector == "electricity_input", + fuel == "coal" ) %>% + select( -c( sector, fuel ) ) %>% + rename( electricity.consumption = value ) + + # Join the table containing NEI emissions from coal - electricity + # With the table containing EIA consumption of coal - electricity + elec_emiss_coeffs.NA <- EIA_electricity_consumption %>% + filter( year == max( MODEL_BASE_YEARS ) | year == max( year ) ) %>% + left_join( NEI_emissions, by = c( "state", "year") ) %>% + # calculate the emissions factor by dividing emissions by consumption + mutate( observed.emission.factor = input.emissions / electricity.consumption ) %>% + select( -c( input.emissions, electricity.consumption ) ) + # this results in some states having NAs or Inf due to having no input emissions (NA), or 0 input emissions (Inf) + # In these cases, we apply the average emissions factor for that year and pollutant + + # Generate national median emissions factors + # Remove NAs so as to not skew the median + # Some states (VT, DC, RI, and ID), are not assigned median EFs because they have no electricity consumption from coal. + # Some states (ME), are not assigned median EFs because they have no electric generation emissions from coal, + # Previously, we were assigning medians to these states. + elec_emiss_coeffs.median <- elec_emiss_coeffs.NA %>% + filter(!is.na(observed.emission.factor)) %>% + group_by(year, Non.CO2) %>% + summarise(observed.emission.factor = median(observed.emission.factor)) %>% + ungroup() %>% + rename(nationalEF = observed.emission.factor) + + # Replace all emissions factors above a given value (currently 1000) or that are NAs with the national median emissions factor for that year, non.CO2, and technology + elec_emiss_coeffs <- elec_emiss_coeffs.NA %>% + # remove NAs so LJENM works + # These NAs are the states mentioned above + filter(!is.na(observed.emission.factor)) %>% + left_join_error_no_match(elec_emiss_coeffs.median, by = c("year", "Non.CO2")) %>% + mutate(observed.emission.factor = if_else(observed.emission.factor > emissions.HIGH_EM_FACTOR_THRESHOLD | is.na(observed.emission.factor), nationalEF, observed.emission.factor)) %>% + select(state, year, sector, fuel, Non.CO2, observed.emission.factor) %>% + mutate(observed.emission.factor = if_else(is.infinite(observed.emission.factor), 1, observed.emission.factor)) %>% + rename(final.emissions.coefficient = observed.emission.factor) + + # Assign emission coefficients to the electricity technologies + # The linear control will not apply to IGCC or CCS technologies + # It will apply to all other technologies and states where there is non-zero energy consumption in the base year + # first, make a table with states, supplysectors, subsectors, and technologies with energy consumption in the max model base year + technology_table <- L2233.StubTechProd_elecS_cool_USA %>% + filter( subsector0 == "coal", + year == max( MODEL_BASE_YEARS ), + calOutputValue > 0, + !grepl( 'IGCC|CCS', subsector ), + !grepl( 'peak|subpeak', supplysector ) ) %>% + select( -c( calOutputValue, share.weight.year, subs.share.weight, tech.share.weight ) ) %>% + distinct( region, supplysector, subsector0, subsector, technology, year ) + + + # Assign the emission factors to the technologies + nonghg_elec_tech_coeff_USA <- technology_table %>% + # Add pollutant column, adding NOx and SO2 for each technology entry + repeat_add_columns(tibble::tibble(Non.CO2=unique(NEI_emissions$Non.CO2))) %>% + # Match on emission factors + # Can't use left_join_error_no_match because the technology table includes all states + left_join(elec_emiss_coeffs, by = c("region" = "state", "subsector0" = "fuel", "Non.CO2")) %>% + # Set end year for the linear control + rename( end.year = year.y ) %>% + select(region, supplysector, subsector0, subsector, technology, Non.CO2, end.year, final.emissions.coefficient) %>% + # remove NAs (from ME, mentioned above) + filter( !is.na( end.year ) ) + + # Breaking into separate pollutant dataframes for additional processing + # Adding a start year, linear control name, and period/year + nonghg_elec_tech_coeff_NOx_USA <- nonghg_elec_tech_coeff_USA %>% + filter( end.year == max( end.year ), + Non.CO2 == "NOx") %>% + mutate( start.year = max( MODEL_BASE_YEARS ), + linear.control = "NOx_control", + year = max( MODEL_BASE_YEARS ) ) + + nonghg_elec_tech_coeff_SO2_USA <- nonghg_elec_tech_coeff_USA %>% + filter( end.year == max( end.year ), + Non.CO2 == "SO2") %>% + mutate( start.year = max( MODEL_BASE_YEARS ), + linear.control = "SO2_control", + year = max( MODEL_BASE_YEARS ) ) + + # Bind them all back together + L2722.nonghg_elec_tech_coeff_USA_linear_control <- bind_rows(nonghg_elec_tech_coeff_NOx_USA, + nonghg_elec_tech_coeff_SO2_USA) %>% + #change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) + + # Define a utility function that returns the next model year. + # Because we vectorize the function, the argument can be a vector (or column) of years + # If year passed in is last model year, return last model year + get_next_model_year <- Vectorize(function(year) { + if(!year %in% MODEL_YEARS) { + stop("Year is not a GCAM model year") + } + else if(year != tail(MODEL_YEARS, n = 1)){ + MODEL_YEARS[which(MODEL_YEARS == year)+1] + } + else {return(year)} + }) + + # Turn off linear control after end year of the last control for that emission/technology/region + L2722.nonghg_elec_tech_coeff_USA_linear_control %>% + arrange(desc(year)) %>% + distinct(region, supplysector, subsector0, subsector, technology, Non.CO2, + start.year, final.emissions.coefficient, linear.control, end.year, .keep_all = TRUE) %>% + mutate(period = get_next_model_year(year), + start.year = period, + end.year = tail(MODEL_FUTURE_YEARS, n=1), + disable.em.control = 1) %>% + select(-c(year, final.emissions.coefficient)) -> L2722.nonghg_elec_tech_coeff_USA_linear_control_off + + # Produce outputs + L2722.nonghg_elec_tech_coeff_USA_linear_control %>% + add_title("Non-GHG emissions linear controls for electricity coal technologies in the USA") %>% + add_units("Tg/EJ") %>% + add_comments("Non-GHG emissions linear controls parameters for electricity coal technologies in the USA") %>% + add_precursors("L101.inEIA_EJ_state_S_F_all_years", + "L270.nonghg_tg_state_elec_F_Yb", + "L272.nonghg_elec_tech_coeff_USA", + "L2233.StubTechProd_elecS_cool_USA", + "gcam-usa/emissions/state_tier1_caps") -> + L2722.nonghg_elec_tech_coeff_USA_linear_control + + L2722.nonghg_elec_tech_coeff_USA_linear_control_off %>% + add_title("Disables the GCAM-USA elec linear control for years after the linear control end year") %>% + add_units("Unitless") %>% + add_comments("Required to remove wanrings in the .out file when running GCAM") %>% + add_precursors("L101.inEIA_EJ_state_S_F_all_years", + "L270.nonghg_tg_state_elec_F_Yb", + "L272.nonghg_elec_tech_coeff_USA", + "L2233.StubTechProd_elecS_cool_USA", + "gcam-usa/emissions/state_tier1_caps") -> + L2722.nonghg_elec_tech_coeff_USA_linear_control_off + + return_data(L2722.nonghg_elec_tech_coeff_USA_linear_control, L2722.nonghg_elec_tech_coeff_USA_linear_control_off) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L273.nonghg_refinery_USA.R b/input/gcamdata/R/zchunk_L273.nonghg_refinery_USA.R new file mode 100644 index 0000000000..0abaf08c35 --- /dev/null +++ b/input/gcamdata/R/zchunk_L273.nonghg_refinery_USA.R @@ -0,0 +1,149 @@ +#' module_gcamusa_L273.nonghg_refinery_USA +#' +#' Non-GHG input emissions parameters for refining sector in the USA +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L273.nonghg_state_refinery_USA} +#' @details This chunk calculates Non-GHG emissions parameters for refining technologies in the USA. +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author MAW March 2022 + +module_gcamusa_L273.nonghg_refinery_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE = "gcam-usa/states_subregions", + "L270.nonghg_tg_state_refinery_F_Yb", + "L222.StubTech_en_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L273.nonghg_state_refinery_USA")) + } else if(command == driver.MAKE) { + + # silence check package notes + year <- region <- supplysector <- subsector <- calibrated.value <- Non.CO2 <- value <- input.emissions <- + fuel_input <- emiss.coef <- fuel <- sector <- emiss.coeff <- stub.technology <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + states_subregions <- get_data(all_data, "gcam-usa/states_subregions", strip_attributes = TRUE) + L270.nonghg_tg_state_refinery_F_Yb <- get_data(all_data, "L270.nonghg_tg_state_refinery_F_Yb", strip_attributes = TRUE) + L222.StubTech_en_USA <- get_data(all_data, "L222.StubTech_en_USA", strip_attributes = TRUE) + + # =================================================== + # Perform computations + + ### Petroleum Refining: oil refining + # We have petroleum refining emissions by state, so just need to + # assign them to the correct supplysector / subsector / technology + pet_ref_emissions <- L270.nonghg_tg_state_refinery_F_Yb %>% + filter( sector == "petroleum_refining", + year %in% MODEL_YEARS, + state %in% gcamusa.STATES) %>% + select( -c( fuel, sector ) ) %>% + group_by( state, Non.CO2, year ) %>% + mutate( value = sum( value ) ) %>% + rename( input.emissions = value ) %>% + distinct() %>% + ungroup() + + # create structure + pet_ref_structure <- L222.StubTech_en_USA %>% + filter( stub.technology == "oil refining" ) %>% + select( -region ) %>% + repeat_add_columns( tibble::tibble( pet_ref_emissions$year) ) %>% + rename( year = `pet_ref_emissions$year` ) %>% + distinct( supplysector, subsector, stub.technology, year ) + + pet_ref_final <- pet_ref_emissions %>% + left_join_error_no_match( pet_ref_structure, by = "year" ) + + + ### ethanol_production: corn ethanol + # We have ethanol production emissions by state, so just need to + # assign them to the correct supplysector / subsector / technology + ethanol_prod_emissions <- L270.nonghg_tg_state_refinery_F_Yb %>% + filter( sector == "ethanol_production", + year %in% MODEL_YEARS ) %>% + select( -c( fuel, sector ) ) %>% + group_by( state, Non.CO2, year ) %>% + mutate( value = sum( value ) ) %>% + rename( input.emissions = value ) %>% + distinct() %>% + ungroup() + + # create structure (like in en_transformation_USA.xml) + ethanol_prod_structure <- L222.StubTech_en_USA %>% + filter( stub.technology == "corn ethanol" ) %>% + select( -region ) %>% + repeat_add_columns( tibble::tibble( pet_ref_emissions$year) ) %>% + rename( year = `pet_ref_emissions$year` ) %>% + distinct( supplysector, subsector, stub.technology, year ) + + ethanol_prod_final <- ethanol_prod_emissions %>% + left_join_error_no_match( ethanol_prod_structure, by = "year" ) + + ### biodiesel_production: biodiesel + # We have biodiesel production emissions by state, so just need to + # assign them to the correct supplysector / subsector / technology + bio_prod_emissions <- L270.nonghg_tg_state_refinery_F_Yb %>% + filter( sector == "biodiesel_production", + year %in% MODEL_YEARS ) %>% + select( -c( fuel, sector ) ) %>% + group_by( state, Non.CO2, year ) %>% + mutate( value = sum( value ) ) %>% + rename( input.emissions = value ) %>% + distinct() %>% + ungroup() + + # create structure (like in en_transformation_USA.xml) + bio_prod_structure <- L222.StubTech_en_USA %>% + filter( stub.technology == "biodiesel" ) %>% + select( -region ) %>% + repeat_add_columns( tibble::tibble( pet_ref_emissions$year) ) %>% + rename( year = `pet_ref_emissions$year` ) %>% + distinct( supplysector, subsector, stub.technology, year ) + + bio_prod_final <- bio_prod_emissions %>% + left_join_error_no_match( bio_prod_structure, by = "year" ) + + + ### combine tables + # State Level + L273.nonghg_state_refinery_USA <- bio_prod_final %>% + bind_rows( ethanol_prod_final, pet_ref_final ) %>% + rename( region = state ) %>% + #change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) %>% + # sum input.emissions, in case we have multiple entries that need to be combined into one emission + group_by( region, Non.CO2, year, supplysector, subsector, stub.technology ) %>% + mutate( input.emissions = sum(input.emissions) ) %>% + distinct() %>% + ungroup() + + # TODO: other techs: default emissions factors from GREET + # TODO: or use Ellie's method, dropping EFs into folder + + + # =================================================== + + # Produce outputs + + L273.nonghg_state_refinery_USA %>% + add_title("Non-GHG input emissions parameters for refining technologies in the USA") %>% + add_units("Tg") %>% + add_comments("Emissions at the USA level") %>% + add_precursors(FILE="gcam-usa/states_subregions", + "L270.nonghg_tg_state_refinery_F_Yb", + "L222.StubTech_en_USA") -> + L273.nonghg_state_refinery_USA + + return_data(L273.nonghg_state_refinery_USA) + + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L274.nonghg_bld_USA.R b/input/gcamdata/R/zchunk_L274.nonghg_bld_USA.R new file mode 100644 index 0000000000..600e720b89 --- /dev/null +++ b/input/gcamdata/R/zchunk_L274.nonghg_bld_USA.R @@ -0,0 +1,257 @@ +#' module_gcamusa_L274.nonghg_bld_USA +#' +#' Non-GHG input emissions parameters for buildings technologies in the USA +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L274.nonghg_bld_tech_coeff_USA}. The corresponding file in the +#' original data system was \code{L274.bld_nonghg_USA.R} (gcam-usa level2). +#' @details Non-GHG input emissions parameters for buildings technologies in the USA +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author BY Aug 2019, MAW July 2021 + +module_gcamusa_L274.nonghg_bld_USA <- function(command, ...) { +if(command == driver.DECLARE_INPUTS) { + return(c("L244.StubTechCalInput_bld_gcamusa", + "L244.StubTech_bld_gcamusa", + "L270.nonghg_tg_state_bld_F_Yb", + FILE="gcam-usa/emissions/BC_OC_assumptions", + FILE="gcam-usa/emissions/BCOC_PM25_ratios", + FILE="gcam-usa/emissions/EPA_resid_wood_furnace_PM_EF_future_factors", + FILE="gcam-usa/emissions/base_year_EF_techs")) +} else if(command == driver.DECLARE_OUTPUTS) { + return(c("L274.nonghg_bld_tech_coeff_USA")) +} else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # silence package check notes + year <- supplysector <- region <- sector <- subsector <-calibrated.value <- calibrated.value.agg <- stub.technology <- + S_F_tech_share <- value <- input.emissions <- fuel_input <- emiss.coef <- emiss.coef.avg <- + stub.technology.new <- stub.technology.orig <- subsector.new <- subsector.orig <- supplysector.new <- supplysector.orig <- NULL + + # Load required inputs + L244.StubTechCalInput_bld_gcamusa <- get_data(all_data, "L244.StubTechCalInput_bld_gcamusa", strip_attributes = TRUE) + L244.StubTech_bld_gcamusa <- get_data(all_data, "L244.StubTech_bld_gcamusa", strip_attributes = TRUE) + + L270.nonghg_tg_state_bld_F_Yb <- get_data(all_data, "L270.nonghg_tg_state_bld_F_Yb", strip_attributes = TRUE) + + BC_OC_assumptions <- get_data(all_data, "gcam-usa/emissions/BC_OC_assumptions") + BCOC_PM25_ratios <- get_data(all_data, "gcam-usa/emissions/BCOC_PM25_ratios") %>% + # removing columns we do not use, and sectors that aren't mapped to GCAM sectors + select( -c( "Region", "Gains_Sector" ) ) %>% + filter( !is.na( sector ) ) + EPA_resid_wood_furnace_PM_EF_future_factors <- get_data(all_data, "gcam-usa/emissions/EPA_resid_wood_furnace_PM_EF_future_factors") + base_year_EF_techs <- get_data( all_data, "gcam-usa/emissions/base_year_EF_techs") + + # =================================================== + + # Perform computations + # Compute technology shares based on level of detail available in NEI emissions data (state/sector/fuel) + # State/sector/fuel shares of each buildings sector technology based on fuel input + # All calculations done at the state level + L244.StubTechCalInput_bld_gcamusa %>% + filter(year %in% MODEL_BASE_YEARS) %>% + mutate(sector = if_else(grepl("comm", supplysector), "comm", "resid")) %>% + # The subsector is the same as the fuel in the buildings sector so use this as id variable + group_by(region, sector, subsector, year) %>% + summarise(calibrated.value = sum(calibrated.value)) %>% + ungroup() -> + agg_CalInput_bld_S_F_Ybf + + # Compute technology shares for each buildings sector technology, and match on the emissions + L244.StubTechCalInput_bld_gcamusa %>% + filter(year %in% MODEL_BASE_YEARS) %>% + mutate(sector = if_else(grepl("comm", supplysector),"comm","resid")) %>% + left_join_error_no_match(agg_CalInput_bld_S_F_Ybf, by = c("region", "sector", "subsector", "year"), suffix = c("", ".agg")) %>% + ###MISSING VALUES: where agg fuel input is zero. Set to zero for now + mutate(S_F_tech_share = if_else(is.na(calibrated.value/calibrated.value.agg), 0, calibrated.value/calibrated.value.agg)) %>% + select(region, sector, supplysector, subsector, stub.technology, S_F_tech_share, year) -> + bld_fuel_input_tech_shares + + Non.CO2 <- unique(L270.nonghg_tg_state_bld_F_Yb$Non.CO2) + + # Share out NEI emissions to the buildings technologies using the state/sector/fuel technology share + # Base-year input emissions for buildings sector technologies in the USA + L244.StubTech_bld_gcamusa %>% + # Filter out electricity because its use in buildings does not emit pollutants + filter(subsector != "electricity") %>% + mutate(sector = if_else(grepl("comm", supplysector), "comm", "resid")) %>% + repeat_add_columns(tibble::tibble(year = MODEL_BASE_YEARS)) %>% + repeat_add_columns(tibble::tibble(Non.CO2)) %>% + # Match on the tech shares + left_join_error_no_match(bld_fuel_input_tech_shares, + by = c("region", "supplysector", "subsector", "stub.technology", "sector", "year")) %>% + # Cannot do left_join_error_no_match because of + ###MISSING VALUES: there are no emissions in some state permutations that have fuel use in the base year. Leave them in + left_join(L270.nonghg_tg_state_bld_F_Yb, + by = c("region" = "state", "sector", "subsector" = "fuel", "Non.CO2", "year")) %>% + mutate(input.emissions = S_F_tech_share * value) %>% + select(-sector,-S_F_tech_share) %>% + distinct() -> + L274.bld_nonghg_emissions_USA + + # Compute emission tech coefficients: divide emissions by fuel use + # Base-year input emissions coefficients for buildings sector technologies in the USA (at the state-level) + L274.nonghg_bld_tech_coeff_Yb_USA.NAs <- L274.bld_nonghg_emissions_USA %>% + # Add on fuel inputs to the emissions table + left_join_error_no_match(L244.StubTechCalInput_bld_gcamusa, by = c("region", "supplysector", "subsector", "stub.technology", "year")) %>% + rename(fuel_input = calibrated.value) %>% + # Compute tech coefficients. ###MISSING VALUES: corresponding to NAs in the emissions table + mutate(emiss.coef = input.emissions / fuel_input) + + # Generate national median emissions factors for base years + # Remove NAs so as to not skew the median + L274.nonghg_bld_tech_coeff_Yb_USA.median.true <- L274.nonghg_bld_tech_coeff_Yb_USA.NAs %>% + filter(!is.na(emiss.coef)) %>% + group_by(year, Non.CO2, supplysector, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # Some year / pollutant / sector / subsector / tech are NA for all entries, and should be set to 0 + L274.nonghg_bld_tech_coeff_Yb_USA.median.skewed <- L274.nonghg_bld_tech_coeff_Yb_USA.NAs %>% + replace_na(list(emiss.coef = 0)) %>% + group_by(year, Non.CO2, supplysector, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # We want to join these tables so that only the entries not in median.true are retained from median.skewed + # These all have EFs of 0 + L274.nonghg_bld_tech_coeff_Yb_USA.median <- L274.nonghg_bld_tech_coeff_Yb_USA.median.skewed %>% + anti_join( L274.nonghg_bld_tech_coeff_Yb_USA.median.true, by=c("year", "Non.CO2", "supplysector", "subsector", "stub.technology") ) %>% + # rebind to median.true + bind_rows(L274.nonghg_bld_tech_coeff_Yb_USA.median.true) + + # Replace all emissions factors above a given value (20 * median) or that are NAs with the national median emissions factor for that year, non.CO2, and technology + L274.nonghg_bld_tech_coeff_Yb_USA.noBCOC <- L274.nonghg_bld_tech_coeff_Yb_USA.NAs %>% + left_join_error_no_match(L274.nonghg_bld_tech_coeff_Yb_USA.median, by = c("year", "Non.CO2", "supplysector","subsector", "stub.technology")) %>% + # create a new column that has the threshold value + mutate( threshold = nationalEF * 20, + emiss.coef = if_else(emiss.coef > threshold | is.na(emiss.coef), nationalEF, emiss.coef)) %>% + select(region, Non.CO2, year, supplysector, subsector, stub.technology, emiss.coef) %>% + mutate(emiss.coef = if_else(is.infinite(emiss.coef), 1, emiss.coef)) + + # Use fractions of PM2.5 to calculate BC/OC emissions. + # We need to modify the BC_OC_assumptions table, as the BCOC_PM25_ratios table has updated values that are time dependent + # If there are sector/subsector/tech combos that are in BCOC_PM25_ratios, we want to replace those entries in + # the BC_OC_assumptions table. We also need to extend the data. + # Extrapolate the data to future model years, and format the table + BCOC_PM25_ratios_ext <- BCOC_PM25_ratios %>% + gather_years() %>% + complete(nesting(Parameter,sector,subsector,technology), year = MODEL_YEARS) %>% + # extrapolate missing years + group_by(Parameter,sector,subsector,technology) %>% + mutate(value = approx_fun(year, value, rule = 2)) %>% + ungroup() %>% + spread( Parameter, value ) %>% + rename( "BC_fraction" = `BC Fraction`, + "OC_fraction" = `OC Fraction`) + + BC_OC_assumptions_ext <- BC_OC_assumptions %>% + mutate( year = min( MODEL_BASE_YEARS ) ) %>% + complete(nesting(sector,subsector,technology, BC_fraction, OC_fraction), year = MODEL_YEARS) + + # Join the tables, keeping values from BC_OC_assumptions_ext that do not appear in BCOC_PM25_ratios + BC_OC_assumptions_years <- BC_OC_assumptions_ext %>% + anti_join( BCOC_PM25_ratios_ext, by = c("sector", "subsector", "technology", "year") ) %>% + # bind to BCOC_PM25_assumptions + bind_rows( BCOC_PM25_ratios_ext ) + + # Compute BC and OC EFs based off of PM2.5 + L274.nonghg_bld_tech_coeff_Yb_USA <- compute_BC_OC(L274.nonghg_bld_tech_coeff_Yb_USA.noBCOC, BC_OC_assumptions_years) + + # adding future PM EFs for residential wood furnace + L274.nonghg_bld_tech_coeff_USA_ResWoodF_PM <- EPA_resid_wood_furnace_PM_EF_future_factors %>% + # need to use left join because we are changing the number of rows in the table, having a row for every region (state) + filter(year > MODEL_FINAL_BASE_YEAR) %>% + left_join((L274.nonghg_bld_tech_coeff_Yb_USA %>% filter(year == MODEL_FINAL_BASE_YEAR)), + by = c("supplysector", "stub.technology", "Non.CO2")) %>% + mutate(emiss.coef = factor * emiss.coef) %>% + rename(year = year.x) %>% + select(-c(factor, year.y)) + + # Compute future BC and OC EFs for residential wood furnace based off of PM2.5 + L274.nonghg_bld_tech_coeff_USA_ResWoodF <- compute_BC_OC(L274.nonghg_bld_tech_coeff_USA_ResWoodF_PM, BC_OC_assumptions_years) + + # bind into the full EF table + L274.nonghg_bld_tech_coeff_USA <- bind_rows(L274.nonghg_bld_tech_coeff_Yb_USA, L274.nonghg_bld_tech_coeff_USA_ResWoodF) %>% + # remove duplicate (PM emissions for resid heating wood furnace in future year) %>% + distinct() + + # Copy EFs for technologies that don't exist in the base years from corresponding (similar?) technologies + L274.nonghg_bld_tech_coeff_USA.missing_techs <- base_year_EF_techs %>% + # need to use left join because we are changing the number of rows in the table, having a row for every region (state) and Non.CO2 + left_join(L274.nonghg_bld_tech_coeff_USA, by = c("supplysector.orig" = "supplysector", + "subsector.orig" = "subsector", + "stub.technology.orig" = "stub.technology")) %>% + select(-supplysector.orig, -subsector.orig, -stub.technology.orig) %>% + rename(supplysector = supplysector.new, + subsector = subsector.new, + stub.technology = stub.technology.new) + + L274.nonghg_bld_tech_coeff_USA_no_driver <- bind_rows(L274.nonghg_bld_tech_coeff_USA, + L274.nonghg_bld_tech_coeff_USA.missing_techs) + + # Add an input name column to drive emissions + L274.nonghg_bld_tech_coeff_USA <- L274.nonghg_bld_tech_coeff_USA_no_driver %>% + # L244.StubTechCalInput_bld_gcamusa has the fuel inputs that should be used to drive emissions + left_join_error_no_match( L244.StubTechCalInput_bld_gcamusa %>% select( c( "supplysector", "subsector", "stub.technology", + "minicam.energy.input" ) ) %>% + distinct( supplysector, subsector, stub.technology, minicam.energy.input ), + by = c("supplysector", "subsector", "stub.technology") ) %>% + # rename to input.name to match header + rename( input.name = minicam.energy.input) %>% + # change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) %>% + # filter out the minimum model base year. This is 1975, and is not used + filter( year > min( MODEL_BASE_YEARS ) ) %>% + # distinct to remove any potential duplicate rows + distinct() + + + # Now, L274.nonghg_bld_tech_coeff_USA must contain every non-electric technology. If not, throw an error. + full_techs <- L244.StubTech_bld_gcamusa %>% + filter(subsector != "electricity") %>% + select(-region) %>% + distinct() + + existing_base_year_techs <- L274.nonghg_bld_tech_coeff_USA %>% + select(supplysector, subsector, stub.technology) %>% + distinct() + + needed_base_year_techs <- anti_join(full_techs, existing_base_year_techs, by = c("supplysector", "subsector", "stub.technology")) + + if (nrow(needed_base_year_techs) != 0) { + stop("Need to add all non-electric technologies not present in the base year to base_year_EF_techs.csv") + } + + # =================================================== + + # Produce outputs + L274.nonghg_bld_tech_coeff_USA %>% + add_title("Non-GHG input emissions parameters for buildings technologies in the USA") %>% + add_units("Tg/EJ") %>% + add_comments("EFs by state where available. In states without EFs for a given technology, but EFs present for other states, an average of other state EFs is used.") %>% + add_legacy_name("L274.nonghg_bld_tech_coeff_USA") %>% + add_precursors("L244.StubTechCalInput_bld_gcamusa", + "L244.StubTech_bld_gcamusa", + "L270.nonghg_tg_state_bld_F_Yb", + "gcam-usa/emissions/BC_OC_assumptions", + "gcam-usa/emissions/BCOC_PM25_ratios", + "gcam-usa/emissions/EPA_resid_wood_furnace_PM_EF_future_factors", + "gcam-usa/emissions/base_year_EF_techs") -> + L274.nonghg_bld_tech_coeff_USA + + return_data(L274.nonghg_bld_tech_coeff_USA) + +} else { + stop("Unknown command") + } +} + diff --git a/input/gcamdata/R/zchunk_L275.nonghg_indenergy_USA.R b/input/gcamdata/R/zchunk_L275.nonghg_indenergy_USA.R new file mode 100644 index 0000000000..8da2af1bf8 --- /dev/null +++ b/input/gcamdata/R/zchunk_L275.nonghg_indenergy_USA.R @@ -0,0 +1,204 @@ +#' module_gcamusa_L275.indenergy_nonghg_USA +#' +#' Non-GHG input emissions parameters for industrial energy use sector in the USA +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L275.nonghg_indenergy_tech_coeff_USA} +#' The corresponding file in the original data system was \code{L275.indenergy_nonghg_USA.R} (gcam-usa level2). +#' @details Non-GHG input emissions parameters for industrial energy use technologies in the USA +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author BY Aug 2019, MAW March 2022 + +module_gcamusa_L275.indenergy_nonghg_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L232.StubTechCalInput_indenergy_USA", + "L270.nonghg_tg_state_indenergy_F_Yb", + "L232.StubTech_ind_USA", + FILE="gcam-usa/emissions/BC_OC_assumptions", + FILE="gcam-usa/emissions/BCOC_PM25_ratios", + FILE = "gcam-usa/emissions/MARKAL_nonghg_indenergy_tech_coeff_USA_dhl")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L275.nonghg_indenergy_tech_coeff_USA")) + } else if(command == driver.MAKE) { + + # silence check package notes + year <- region <- supplysector <- subsector <- calibrated.value <- Non.CO2 <- value <- input.emissions <- + fuel_input <- emiss.coef <- fuel <- sector <- emiss.coeff <- stub.technology <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + L232.StubTechCalInput_indenergy_USA <- get_data(all_data, "L232.StubTechCalInput_indenergy_USA", strip_attributes = TRUE) + L270.nonghg_tg_state_indenergy_F_Yb <- get_data(all_data, "L270.nonghg_tg_state_indenergy_F_Yb", strip_attributes = TRUE) + L232.StubTech_ind_USA <- get_data(all_data, "L232.StubTech_ind_USA", strip_attributes = TRUE) + BC_OC_assumptions <- get_data(all_data, "gcam-usa/emissions/BC_OC_assumptions") + BCOC_PM25_ratios <- get_data(all_data, "gcam-usa/emissions/BCOC_PM25_ratios") %>% + # removing columns we do not use, and sectors that aren't mapped to GCAM sectors + select( -c( "Region", "Gains_Sector" ) ) %>% + filter( !is.na( sector ) ) + MARKAL_nonghg_indenergy_tech_coeff_USA_dhl <- get_data(all_data, "gcam-usa/emissions/MARKAL_nonghg_indenergy_tech_coeff_USA_dhl", strip_attributes = TRUE) + + + # =================================================== + + # Perform computations + + # The technology information in the industrial energy use sector has the same level of detail as the + # NEI data so all that remains to be done is to assign the emissions to states and compute coefficients + # and assign a national median if needed + # Calculating industry fuel use emission factors in the base year for U.S. states + + # Fuel use is divided between cogen and non-cogen. Aggregate these to subsector level + agg_fuel_input_indenergy_Yb <- L232.StubTechCalInput_indenergy_USA %>% + filter(year %in% MODEL_BASE_YEARS) %>% + group_by(region, supplysector, subsector, year) %>% + summarise(fuel_input = sum(calibrated.value)) %>% + ungroup() + + # Take the table containing the emissions, match on the fuel inputs, and compute the emission coefficients by state + agg_nonghg_indenergy_emiss_coeffs_F_Yb <- L270.nonghg_tg_state_indenergy_F_Yb %>% + filter(year %in% MODEL_BASE_YEARS) %>% + rename(input.emissions = value) %>% + mutate(sector = "other industrial energy use") %>% + # need to use left join, as some NA values are retained (some states have NA fuel input in refined liquids) + left_join(agg_fuel_input_indenergy_Yb, by = c("state" = "region", + "sector" = "supplysector", + "fuel" = "subsector", + "year")) %>% + mutate(emiss.coef = input.emissions / fuel_input) + + # 2b. Assign emission coefficients to the industry energy use technologies in the base years + # L275.nonghg_indenergy_tech_coeff_USA: emission factors for industry energy use technologies in the base year in all U.S. states + L275.nonghg_indenergy_tech_coeff_Yb_USA_NAs <- L232.StubTech_ind_USA %>% + filter(supplysector == "other industrial energy use" & subsector %in% L270.nonghg_tg_state_indenergy_F_Yb$fuel) %>% + repeat_add_columns(tibble::tibble(year = MODEL_BASE_YEARS)) %>% + repeat_add_columns(tibble::tibble(Non.CO2=unique(L270.nonghg_tg_state_indenergy_F_Yb$Non.CO2))) %>% + # need to use left join, as some NA values are retained (several states have NA emissions and fuel input for gas) + left_join(agg_nonghg_indenergy_emiss_coeffs_F_Yb, by = c("region" = "state", + "subsector" = "fuel", + "Non.CO2", "year")) %>% + select(-sector, -input.emissions) + + # Generate national median emissions factors for base years + # Remove NAs so as to not skew the median + L275.nonghg_indenergy_tech_coeff_Yb_USA.median.true <- L275.nonghg_indenergy_tech_coeff_Yb_USA_NAs %>% + filter(!is.na(emiss.coef)) %>% + group_by(year, Non.CO2, supplysector, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # Some year / pollutant / sector / subsector / tech are NA for all entries, and should be set to 0 + L275.nonghg_indenergy_tech_coeff_Yb_USA.median.skewed <- L275.nonghg_indenergy_tech_coeff_Yb_USA_NAs %>% + replace_na(list(emiss.coef = 0)) %>% + group_by(year, Non.CO2, supplysector, subsector, stub.technology) %>% + summarise(emiss.coef = median(emiss.coef)) %>% + ungroup() %>% + rename(nationalEF = emiss.coef) + + # We want to join these tables so that only the entries not in median.true are retained from median.skewed + # These all have EFs of 0 + L275.nonghg_indenergy_tech_coeff_Yb_USA.median <- L275.nonghg_indenergy_tech_coeff_Yb_USA.median.skewed %>% + anti_join(L275.nonghg_indenergy_tech_coeff_Yb_USA.median.true, by=c("year", "Non.CO2", "supplysector", "subsector", "stub.technology") ) %>% + # rebind to median.true + bind_rows(L275.nonghg_indenergy_tech_coeff_Yb_USA.median.true) + + # Replace all emissions factors above a given value (20 * median) or that are NAs with the national median emissions factor for that year, non.CO2, and technology + L275.nonghg_indenergy_tech_coeff_Yb_USA.noBCOC <- L275.nonghg_indenergy_tech_coeff_Yb_USA_NAs %>% + left_join_error_no_match(L275.nonghg_indenergy_tech_coeff_Yb_USA.median, by = c("year", "Non.CO2", "supplysector", "subsector", "stub.technology")) %>% + # create a new column that has the threshold value + mutate( threshold = nationalEF * 20, + emiss.coef = if_else(emiss.coef > threshold | is.na(emiss.coef), nationalEF, emiss.coef)) %>% + select(region, Non.CO2, year, supplysector, subsector, stub.technology, emiss.coef) %>% + mutate(emiss.coef = if_else(is.infinite(emiss.coef), 1, emiss.coef)) + + # Use fractions of PM2.5 to calculate BC/OC emissions. + # We need to modify the BC_OC_assumptions table, as the BCOC_PM25_ratios table has updated values that are time dependent + # If there are sector/subsector/tech combos that are in BCOC_PM25_ratios, we want to replace those entries in + # the BC_OC_assumptions table. We also need to extend the data. + # Extrapolate the data to future model years, and format the table + BCOC_PM25_ratios_ext <- BCOC_PM25_ratios %>% + gather_years() %>% + complete(nesting(Parameter,sector,subsector,technology), year = MODEL_YEARS) %>% + # extrapolate missing years + group_by(Parameter,sector,subsector,technology) %>% + mutate(value = approx_fun(year, value, rule = 2)) %>% + ungroup() %>% + spread( Parameter, value ) %>% + rename( "BC_fraction" = `BC Fraction`, + "OC_fraction" = `OC Fraction`) + + BC_OC_assumptions_ext <- BC_OC_assumptions %>% + mutate( year = min( MODEL_BASE_YEARS ) ) %>% + complete(nesting(sector,subsector,technology, BC_fraction, OC_fraction), year = MODEL_YEARS) + + # Join the tables, keeping values from BC_OC_assumptions_ext that do not appear in BCOC_PM25_ratios + BC_OC_assumptions_years <- BC_OC_assumptions_ext %>% + anti_join( BCOC_PM25_ratios_ext, by = c("sector", "subsector", "technology", "year") ) %>% + # bind to BCOC_PM25_assumptions + bind_rows( BCOC_PM25_ratios_ext ) + + L275.nonghg_indenergy_tech_coeff_USA_Yb <- compute_BC_OC(L275.nonghg_indenergy_tech_coeff_Yb_USA.noBCOC, BC_OC_assumptions_years) %>% + # at this point we have some NA EFs due to renewable technologies not having BC/OC emissions + # we can omit these + na.omit() + + # Add industrial EFs for coal, gas, biomass, and refined liquids for future years from MARKAL + # this is assuming industrial sector vintaging is being used. Could lead to discontinuity if not + L275.nonghg_indenergy_tech_coeff_USA_Yf <- MARKAL_nonghg_indenergy_tech_coeff_USA_dhl %>% + rename(emiss.coef = emiss.coeff) %>% + mutate(supplysector = "other industrial energy use", + subsector = gsub("liquid fuels", "refined liquids", subsector), + stub.technology = gsub("liquid fuels", "refined liquids", stub.technology)) %>% + filter(!(Non.CO2 %in% c("CH4","N2O","CO2")), + year %in% MODEL_FUTURE_YEARS) + + # Bind all data together + L275.nonghg_indenergy_tech_coeff_USA_no_driver <- bind_rows(L275.nonghg_indenergy_tech_coeff_USA_Yb, + L275.nonghg_indenergy_tech_coeff_USA_Yf) + + # Add an input name column to drive emissions + L275.nonghg_indenergy_tech_coeff_USA <- L275.nonghg_indenergy_tech_coeff_USA_no_driver %>% + # L232.StubTechCalInput_indenergy_USA has the fuel inputs that should be used to drive emissions + left_join_error_no_match( L232.StubTechCalInput_indenergy_USA %>% + select( c( "supplysector", "subsector", "stub.technology", + "minicam.energy.input" ) ) %>% + distinct( supplysector, subsector, stub.technology, minicam.energy.input ), + by = c("supplysector", "subsector", "stub.technology") ) %>% + # rename to input.name to match header + rename( input.name = minicam.energy.input ) %>% + # change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) %>% + # filter out the minimum model base year. This is 1975, and is not used + filter( year > min( MODEL_BASE_YEARS ) ) %>% + # distinct to remove any potential duplicate rows + distinct() + + # =================================================== + + # Produce outputs + + L275.nonghg_indenergy_tech_coeff_USA %>% + add_title("Non-GHG input emissions parameters for industrial energy use sector in the USA") %>% + add_units("Tg/EJ") %>% + add_comments("EFs by state where available. In states without EFs for a given technology, but EFs present for other states, an average of other state EFs is used.") %>% + add_legacy_name("L275.nonghg_indenergy_tech_coeff_USA") %>% + add_precursors("L232.StubTechCalInput_indenergy_USA", + "L270.nonghg_tg_state_indenergy_F_Yb", + "L232.StubTech_ind_USA", + "gcam-usa/emissions/BC_OC_assumptions", + "gcam-usa/emissions/BCOC_PM25_ratios", + "gcam-usa/emissions/MARKAL_nonghg_indenergy_tech_coeff_USA_dhl") -> + L275.nonghg_indenergy_tech_coeff_USA + + return_data(L275.nonghg_indenergy_tech_coeff_USA) + + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L276.nonghg_othertrn_USA.R b/input/gcamdata/R/zchunk_L276.nonghg_othertrn_USA.R new file mode 100644 index 0000000000..fd9c1d3185 --- /dev/null +++ b/input/gcamdata/R/zchunk_L276.nonghg_othertrn_USA.R @@ -0,0 +1,412 @@ +#' module_gcamusa_L276.nonghg_othertrn_USA +#' +#' Generates GCAM-USA input files of Non-GHG input emissions parameters for domestic aviation, ships, and rail. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L276.nonghg_othertrn_tech_coeff_USA}. The corresponding file in the +#' original data system was \code{L276.othertrn_nonghg_USA.R} (gcam-usa level2). +#' @details This chunk generates Non-GHG input emissions parameters for domestic aviation, ships, and rail in the USA. +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author MAW March 2022 +module_gcamusa_L276.nonghg_othertrn_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c(FILE = "gcam-usa/emissions/BC_OC_assumptions", + FILE="gcam-usa/emissions/BCOC_PM25_ratios", + FILE ="gcam-usa/emissions/IMO_Shipping_EF", + "L270.nonghg_tg_state_othertrn_F_Yb", + "L254.StubTranTech_USA", + "L254.StubTranTechCalInput_USA", + "L201.en_pol_emissions")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L276.nonghg_othertrn_tech_coeff_USA")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + region <- state <- stub.technology <- Non.CO2 <- subsector <- X2010 <- BC_fraction <- sector <- minicam.energy.input <- emiss.coeff <- + OC_fraction <- tranSubsector <- year <- calibrated.value <- share.weight.year <- subs.share.weight <- tech.share.weight <- + total.calibrated.value <- supplysector <- tech_share <- value <- input.emissions <- fuel_input <- emiss.coef_new <- emiss.coef <- NULL # Silence package notes + + # Load required inputs + BC_OC_assumptions <- get_data(all_data, "gcam-usa/emissions/BC_OC_assumptions") + BCOC_PM25_ratios <- get_data(all_data, "gcam-usa/emissions/BCOC_PM25_ratios") %>% + # removing columns we do not use, and sectors that aren't mapped to GCAM sectors + select( -c( "Region", "Gains_Sector" ) ) %>% + filter( !is.na( sector ) ) + IMO_Shipping_EF <- get_data(all_data, "gcam-usa/emissions/IMO_Shipping_EF") + L270.nonghg_tg_state_othertrn_F_Yb <- get_data(all_data, "L270.nonghg_tg_state_othertrn_F_Yb", strip_attributes = TRUE) + L254.StubTranTech_USA <- get_data(all_data, "L254.StubTranTech_USA", strip_attributes = TRUE) + L254.StubTranTechCalInput_USA <- get_data(all_data, "L254.StubTranTechCalInput_USA", strip_attributes = TRUE) + L201.en_pol_emissions <- get_data(all_data, "L201.en_pol_emissions") + + # Build tables for CSVs + + # Rail + # Compute technology shares based on level of detail available in NEI emissions data (tech/fuel) + # In the states, rail fuel input is separated into freight and passenger in GCAM. + # The emissions are given for the "rail" sector in NEI, so they must be shared out to the technologies. + # There is no NG fuel input data for these technologies, so omit these emissions for now. + agg_CalInput_rail_F_Yb <- L254.StubTranTechCalInput_USA %>% + filter(year %in% MODEL_BASE_YEARS & grepl("Rail",tranSubsector) & + stub.technology %in% L270.nonghg_tg_state_othertrn_F_Yb$fuel) %>% + mutate(sector = "trn_rail") %>% + group_by(region,sector,stub.technology,year) %>% + summarise(total.calibrated.value = sum(calibrated.value)) %>% + ungroup() + + rail_fuel_input_tech_shares <- L254.StubTranTechCalInput_USA %>% + filter(year %in% MODEL_BASE_YEARS & grepl("Rail",tranSubsector) & + stub.technology %in% L270.nonghg_tg_state_othertrn_F_Yb$fuel) %>% + mutate(sector = "trn_rail") %>% + left_join_error_no_match(agg_CalInput_rail_F_Yb,by=c("region","stub.technology","sector", "year")) %>% + mutate(tech_share = calibrated.value/total.calibrated.value) %>% + select(region,supplysector,tranSubsector,stub.technology,year,sector,tech_share) + + # Share out NEI emissions to the rail technologies using the technology shares + # Start with all possible permutations in the states + L276.rail_nonghg_tech_coeff_Yb_USA <- L254.StubTranTech_USA %>% + filter(grepl("Rail",tranSubsector) & stub.technology %in% L270.nonghg_tg_state_othertrn_F_Yb$fuel) %>% + select( -sce ) %>% + #Add on a column containing the model base years + repeat_add_columns(tibble::tibble(year=MODEL_BASE_YEARS)) %>% + #Add the pollutants contained in the NEI data + repeat_add_columns(tibble::tibble(Non.CO2=unique(L270.nonghg_tg_state_othertrn_F_Yb$Non.CO2))) %>% + #Match on the tech shares + left_join_error_no_match(rail_fuel_input_tech_shares,by = c("region","tranSubsector","supplysector","stub.technology","year")) %>% + #Match on the NEI input emissions + inner_join(L270.nonghg_tg_state_othertrn_F_Yb, by =c("region"="state","sector","stub.technology" = "fuel","Non.CO2","year")) %>% + mutate(input.emissions = tech_share * value) %>% + ###MISSING VALUES: Some 0 emissions for various pollutants in TX and HI. Leave these in for now. + select(-sector,-tech_share,-value) %>% + distinct() %>% + # Compute emission tech coefficients: divide emissions by fuel use + #Add on fuel inputs to the emissions table + left_join_error_no_match(L254.StubTranTechCalInput_USA, by=c("region","supplysector","tranSubsector","stub.technology","year")) %>% + mutate(fuel_input = calibrated.value) %>% + #Compute tech coefficients + mutate(emiss.coeff = input.emissions / fuel_input) %>% + select( -sce ) + + # Domestic Aviation + # Domestic Aviation should be one national EF assigned to every US state. + # We will aggregate emissions and fuel consumption from all states, and + # calculate a national EF based off of these values + L276.air_nonghg_tech_coeff_Yb_USA <- L254.StubTranTech_USA %>% + filter(tranSubsector %in% c("Domestic Aviation") & stub.technology %in% L270.nonghg_tg_state_othertrn_F_Yb$fuel) %>% + select( -sce ) %>% + repeat_add_columns(tibble::tibble(year=MODEL_BASE_YEARS)) %>% + repeat_add_columns(tibble::tibble(Non.CO2=unique(L270.nonghg_tg_state_othertrn_F_Yb$Non.CO2))) %>% + mutate(sector = "trn_domestic air") %>% + #Match on the emissions + inner_join(L270.nonghg_tg_state_othertrn_F_Yb, by =c("region"="state","sector","stub.technology" = "fuel","Non.CO2","year")) %>% + mutate(input.emissions = value) %>% + ###MISSING VALUES: many permutations. Leave them in for now + select(-sector,-value) %>% + distinct() %>% + #aggregate emissions by year, fuel, and Non.CO2 + group_by( year, stub.technology, Non.CO2 ) %>% + mutate( input.emissions = sum( input.emissions ) ) %>% + # Compute emission tech coefficients: divide emissions by fuel use + #Add on fuel inputs to the emissions table, first aggregating fuel use + left_join_error_no_match(L254.StubTranTechCalInput_USA %>% + filter( tranSubsector == "Domestic Aviation") %>% + group_by( year ) %>% + mutate( calibrated.value = sum( calibrated.value ) ), + by=c("region","supplysector","tranSubsector","stub.technology","year")) %>% + #Compute tech coefficients + mutate(emiss.coeff = input.emissions / calibrated.value) %>% + select( -sce ) + + # International Shipping and Aviation + # International Shipping and Aviation will have national EFs assigned to every US state. + # We have emissions at the national level and fuel consumption from all states, and + # will calculate national EFs based off of these values + # Emissions + L276.int_nonghg_tech_coeff_Yb_USA_emissions <- L254.StubTranTech_USA %>% + filter(tranSubsector %in% c("International Aviation", "International Ship") ) %>% + repeat_add_columns(tibble::tibble(year=MODEL_BASE_YEARS)) %>% + repeat_add_columns(tibble::tibble(Non.CO2=unique(L270.nonghg_tg_state_othertrn_F_Yb$Non.CO2))) %>% + select( -sce ) %>% + distinct() %>% + # Change PM2.5 and PM10 to BC and OC so LJENM works, as this is what we have information for + mutate( Non.CO2 = gsub( "PM2.5", "BC", Non.CO2 ), + Non.CO2 = gsub( "PM10", "OC", Non.CO2 ) ) %>% + # Join with the emissions + left_join_error_no_match( L201.en_pol_emissions %>% filter( region == "USA" ) %>% select( -region ) %>% mutate( Non.CO2 = gsub( "SO2_1", "SO2", Non.CO2 ) ), + by = c("supplysector", "tranSubsector" = "subsector", "stub.technology", "Non.CO2", "year") ) + + # Fuel + L276.int_nonghg_tech_coeff_Yb_USA_fuel <- L254.StubTranTechCalInput_USA %>% + filter(tranSubsector %in% c("International Aviation", "International Ship") ) %>% + # Aggregate fuel consumption nationally + group_by( supplysector, tranSubsector, stub.technology, year, minicam.energy.input ) %>% + mutate( calibrated.value = sum( calibrated.value ) ) %>% + distinct( supplysector, tranSubsector, stub.technology, year, minicam.energy.input, calibrated.value ) %>% + # ungroup so the emiss.coeff values are not based on grouped emissions + ungroup() + + # Emission Factors + L276.int_nonghg_tech_coeff_Yb_USA <- L276.int_nonghg_tech_coeff_Yb_USA_emissions %>% + # join with the fuel table + left_join_error_no_match( L276.int_nonghg_tech_coeff_Yb_USA_fuel, by = c( "supplysector", "tranSubsector", "stub.technology", "year", "input.name" = "minicam.energy.input" ) ) %>% + mutate(emiss.coeff = input.emissions / calibrated.value) + + + # Bind the air, rail, and international shipping and aviation EFs into a single table and remove unnecessary columns + L276.nonghg_othertrn_tech_coeff_Yb_USA.NAs <- bind_rows(L276.rail_nonghg_tech_coeff_Yb_USA, L276.air_nonghg_tech_coeff_Yb_USA, L276.int_nonghg_tech_coeff_Yb_USA) %>% + select( c( region, supplysector, tranSubsector, stub.technology, year, Non.CO2, emiss.coeff ) ) %>% + ungroup() + + # Generate national median emissions factors for base years + # Remove NAs so as to not skew the median + L276.nonghg_othertrn_tech_coeff_Yb_USA.median.true <- L276.nonghg_othertrn_tech_coeff_Yb_USA.NAs %>% + filter(!is.na(emiss.coeff)) %>% + group_by(year, Non.CO2, supplysector, tranSubsector, stub.technology) %>% + summarise(emiss.coeff = median(emiss.coeff)) %>% + ungroup() %>% + rename(nationalEF = emiss.coeff) + + # Some year / pollutant / sector / subsector / tech are NA for all entries, and should be set to 0 + L276.nonghg_othertrn_tech_coeff_Yb_USA.median.skewed <- L276.nonghg_othertrn_tech_coeff_Yb_USA.NAs %>% + replace_na(list(emiss.coeff = 0)) %>% + group_by(year, Non.CO2, supplysector, tranSubsector, stub.technology) %>% + summarise(emiss.coeff = median(emiss.coeff)) %>% + ungroup() %>% + rename(nationalEF = emiss.coeff) + + # We want to join these tables so that only the entries not in median.true are retained from median.skewed + # These all have EFs of 0 + L276.nonghg_othertrn_tech_coeff_Yb_USA.median <- L276.nonghg_othertrn_tech_coeff_Yb_USA.median.skewed %>% + anti_join( L276.nonghg_othertrn_tech_coeff_Yb_USA.median.true, by=c("year", "Non.CO2", "supplysector", "tranSubsector", "stub.technology") ) %>% + # rebind to median.true + bind_rows(L276.nonghg_othertrn_tech_coeff_Yb_USA.median.true) + + # Replace all emissions factors above a given value (20 * median) or that are NAs with the national median emissions factor for that year, non.CO2, and technology + L276.nonghg_othertrn_tech_coeff_Yb_USA.noBCOC <- L276.nonghg_othertrn_tech_coeff_Yb_USA.NAs %>% + left_join_error_no_match(L276.nonghg_othertrn_tech_coeff_Yb_USA.median, by = c("year", "Non.CO2", "supplysector","tranSubsector", "stub.technology")) %>% + # create a new column that has the threshold value + mutate( threshold = nationalEF * 20, + emiss.coeff = if_else(emiss.coeff > threshold | is.na(emiss.coeff), nationalEF, emiss.coeff)) %>% + select(region, Non.CO2, year, supplysector, tranSubsector, stub.technology, emiss.coeff) %>% + mutate(emiss.coeff = if_else(is.infinite(emiss.coeff), 1, emiss.coeff)) %>% + rename( emiss.coef = emiss.coeff) + + # Domestic Shipping + # GCAM fuel consumption is not accurate for domestic shipping, so we can't calculate accurate EFs using that data + # Instead, we will use EFs from the International Maritime Organization + shipping_EF_Tg_per_EJ <- IMO_Shipping_EF %>% + tidyr::gather( "year", "EF", -c(pollutant, CEDS_Fuel)) %>% + # convert kg/kg to Tg/EJ + mutate( EF = EF * CONV_KG_TO_TG, + new_EF = if_else( CEDS_Fuel == "heavy_oil", EF / CONV_KG_T / gcamusa.CONVERSIONFACTOR_RESIDUALOIL_GJ_PER_T_NET / CONV_GJ_EJ, + if_else( CEDS_Fuel == "diesel_oil", EF / CONV_KG_T / gcamusa.CONVERSIONFACTOR_DIESEL_GJ_PER_T_NET / CONV_GJ_EJ, + EF / CONV_KG_T / gcamusa.CONVERSIONFACTOR_NATURALGAS_GJ_PER_T_NET / CONV_GJ_EJ ) ), + pollutant = gsub( "SOx", "SO2", pollutant ), + # PM is total particulate matter, so can be interpreted as PM10 + pollutant = gsub( "\\PM\\>", "PM10", pollutant ) ) + + # The shipping EFs are given for three fuels, while there is only one fuel in GCAM - Liquids + # Weight the EFs to create "Liquids"- 60% residual and 40% diesel + shipping_EF_Tg_per_EJ_liquids <- shipping_EF_Tg_per_EJ %>% + # remove NG as it is not included to calculate liquids EF + filter( CEDS_Fuel != "natural_gas" ) %>% + mutate( partial_EF = if_else( CEDS_Fuel == "heavy_oil", new_EF * 0.6, + new_EF * 0.4 ) ) %>% + # calculate weighted EF from "partial" EFs + group_by( pollutant, year ) %>% + mutate( emiss.coef = sum( partial_EF ) ) %>% + distinct( pollutant, year, emiss.coef ) %>% + rename( "Non.CO2" = "pollutant" ) %>% + ungroup() %>% + mutate( stub.technology = "Liquids" ) + + # Add NG back in + shipping_EF_Tg_per_EJ_All <- shipping_EF_Tg_per_EJ %>% + filter( CEDS_Fuel == "natural_gas" ) %>% + rename( emiss.coef = new_EF, + Non.CO2 = pollutant ) %>% + select( -c( "EF", "CEDS_Fuel" ) ) %>% + mutate( stub.technology = "NG" ) %>% + bind_rows( shipping_EF_Tg_per_EJ_liquids ) + + # convert year from character to numeric + shipping_EF_Tg_per_EJ_All$year <- as.numeric(shipping_EF_Tg_per_EJ_All$year) + + # split EFs into three tables, one for 2015, one for the previous base years, one for future years + # This is done in order to apply the 2012 EFs to the earlier base years, and 2018 to future years + shipping_EF_Tg_per_EJ_Yb <- shipping_EF_Tg_per_EJ_All %>% + filter( year == min( year ) ) %>% + # deselect year column so that these EFs are mapped to all years + select( -year ) + + shipping_EF_Tg_per_EJ_2015 <- shipping_EF_Tg_per_EJ_All %>% + filter( year == max( MODEL_BASE_YEARS ) ) + + shipping_EF_Tg_per_EJ_Yf <- shipping_EF_Tg_per_EJ_All %>% + filter( year == max( year ) ) %>% + # deselect year column so that these EFs are mapped to all years + select( -year ) + + + # Apply 2012 EFs to historical years + # NOTE: In the future, use a different source for earlier base year EFs since domestic shipping has changed in the last decade + L276.nonghg_othertrn_tech_coeff_USA_marine_Yb <- L254.StubTranTech_USA %>% + select( -sce ) %>% + filter(tranSubsector %in% c("Domestic Ship") & stub.technology %in% L270.nonghg_tg_state_othertrn_F_Yb$fuel) %>% + repeat_add_columns( tibble::tibble( year = MODEL_BASE_YEARS ) ) %>% + # remove final base year + filter( year != max( MODEL_BASE_YEARS ) ) %>% + repeat_add_columns( tibble::tibble( Non.CO2 = unique( L270.nonghg_tg_state_othertrn_F_Yb$Non.CO2 ) ) ) %>% + left_join( shipping_EF_Tg_per_EJ_Yb, by = c( "Non.CO2", "stub.technology" ) ) %>% + # remove NH3, as we do not have EFs for it + na.omit() + + # Apply current base years EFs to the current base year + L276.nonghg_othertrn_tech_coeff_USA_marine_2015 <- L254.StubTranTech_USA %>% + select( -sce ) %>% + filter(tranSubsector %in% c("Domestic Ship") & stub.technology %in% L270.nonghg_tg_state_othertrn_F_Yb$fuel) %>% + repeat_add_columns( tibble::tibble( year = max( MODEL_BASE_YEARS ) ) ) %>% + repeat_add_columns( tibble::tibble( Non.CO2 = unique( L270.nonghg_tg_state_othertrn_F_Yb$Non.CO2 ) ) ) %>% + left_join( shipping_EF_Tg_per_EJ_2015, by = c( "year", "Non.CO2", "stub.technology" ) ) %>% + # remove NH3, as we do not have EFs for it + na.omit() + + # Apply 2018 EFs to future years (only need to apply to first future year as this will be carried forward) + L276.nonghg_othertrn_tech_coeff_USA_marine_Yf <- L254.StubTranTech_USA %>% + select( -sce ) %>% + filter(tranSubsector %in% c("Domestic Ship") & stub.technology %in% L270.nonghg_tg_state_othertrn_F_Yb$fuel) %>% + repeat_add_columns( tibble::tibble( year = min( MODEL_FUTURE_YEARS ) ) ) %>% + # remove final base year + filter( year != max( MODEL_BASE_YEARS ) ) %>% + repeat_add_columns( tibble::tibble( Non.CO2 = unique( L270.nonghg_tg_state_othertrn_F_Yb$Non.CO2 ) ) ) %>% + left_join( shipping_EF_Tg_per_EJ_Yf, by = c( "Non.CO2", "stub.technology" ) ) %>% + # remove NH3, as we do not have EFs for it + na.omit() + + # Calculate SO2 emission coefficient for 2015 forward + # Update usa domestic shipping energy consumption using data from US EPA GHG inventory + # since EIA and IEA data is incomplete or unavailable for this sector. + + # We do this from the EPA GHG inventory data, which is the best source for domestic + # shipping fuel consumption (IEA is incomplete), approximately 60% of domestic + # shipping fuel is residual and 40% diesel. The diesel standard past 2012 is 15 + # ppm sulfur, and as per US EPA 2009 EPA Category 3 marine engines have a sulfur + # limit of 1,000 ppm (0.1%) for marine fuels produced and/or sold for use within + # an Emissions Control Area (ECA) - so this should include all domestic + # shipping. Effectively, the sulfur limit for domestic navigation can be estimated with + # the residual fraction and a 0.1% sulfur content. The emissions factor + # [Tg/EJ] is, therefore, 0.1% * 2 * EC_resid, where the factor of 2 converts S + # to SO2 and EC_resid = energy content of residual oil, in units of Tg/EJ. + # We calculate the energy content of residual oil from readily available data. + + L276.nonghg_othertrn_tech_coeff_USA_marine_new_SO2 <- L276.nonghg_othertrn_tech_coeff_USA_marine_2015 %>% + bind_rows( L276.nonghg_othertrn_tech_coeff_USA_marine_Yf ) %>% + mutate( emiss.coef = if_else( Non.CO2 == "SO2", + SO2_SHIP_LIMIT_POLICY_MULTIPLIER * CONV_KG_TO_TG / CONV_KG_T / gcamusa.CONVERSIONFACTOR_DIESEL_GJ_PER_T_NET / CONV_GJ_EJ, + emiss.coef ) ) + + # bind EFs for shipping from all years with the table of other subsector EFs + L276.nonghg_all_othertrn_tech_coeff_Yb_USA.noBCOC <- bind_rows(L276.nonghg_othertrn_tech_coeff_USA_marine_Yb, + L276.nonghg_othertrn_tech_coeff_USA_marine_new_SO2, + L276.nonghg_othertrn_tech_coeff_Yb_USA.noBCOC) + + # Use fractions of PM2.5 to calculate BC/OC emissions. + # We need to modify the BC_OC_assumptions table, as the BCOC_PM25_ratios table has updated values that are time dependent + # If there are sector/subsector/tech combos that are in BCOC_PM25_ratios, we want to replace those entries in + # the BC_OC_assumptions table. We also need to extend the data. + # Extrapolate the data to future model years, and format the table + BCOC_PM25_ratios_ext <- BCOC_PM25_ratios %>% + gather_years() %>% + complete(nesting(Parameter,sector,subsector,technology), year = MODEL_YEARS) %>% + # extrapolate missing years + group_by(Parameter,sector,subsector,technology) %>% + mutate(value = approx_fun(year, value, rule = 2)) %>% + ungroup() %>% + spread( Parameter, value ) %>% + rename( "BC_fraction" = `BC Fraction`, + "OC_fraction" = `OC Fraction`) + + BC_OC_assumptions_ext <- BC_OC_assumptions %>% + mutate( year = 1990 ) %>% + complete(nesting(sector,subsector,technology, BC_fraction, OC_fraction), year = MODEL_YEARS) + + # Join the tables, keeping values from BC_OC_assumptions_ext that do not appear in BCOC_PM25_ratios + BC_OC_assumptions_years <- BC_OC_assumptions_ext %>% + anti_join( BCOC_PM25_ratios_ext, by = c("sector", "subsector", "technology", "year") ) %>% + # bind to BCOC_PM25_assumptions + bind_rows( BCOC_PM25_ratios_ext ) %>% + rename(tranSubsector = subsector) + + # There is no data for BC/OC in the base year, so use fractions of PM2.5 to calculate BC/OC emission coefficients. + L276.nonghg_othertrn_tech_coeff_USA_no_driver_needPM <- compute_BC_OC_transport(L276.nonghg_all_othertrn_tech_coeff_Yb_USA.noBCOC, BC_OC_assumptions_years) + + # For International Shipping and Aviation, we have BC and OC but no PM. + # We can use our BC and OC assumptions to calculate PM2.5. + L276.nonghg_othertrn_tech_coeff_USA_no_driver <- L276.nonghg_othertrn_tech_coeff_USA_no_driver_needPM %>% + filter( grepl( "International", tranSubsector ), + Non.CO2 == "BC" ) %>% + # join with the assumption table + left_join_error_no_match( BC_OC_assumptions_years, by = c( "supplysector" = "sector", "tranSubsector", "stub.technology" = "technology", "year" ) ) %>% + # calculate PM2.5 + mutate( emiss.coef = emiss.coef / BC_fraction, + Non.CO2 = "PM2.5" ) %>% + # remove unneeded columns + select( -c( BC_fraction, OC_fraction ) ) %>% + # bind back to the table containing all other EFs + bind_rows( L276.nonghg_othertrn_tech_coeff_USA_no_driver_needPM ) + + # For International Ship, we need PM10. We can use PM2.5 to PM10 ratio from EPA to derive this. + L276.nonghg_othertrn_tech_coeff_USA_no_driver_hasPM <- L276.nonghg_othertrn_tech_coeff_USA_no_driver %>% + # filter for International Ship, PM2.5 + filter( tranSubsector == "International Ship", Non.CO2 == "PM2.5" ) %>% + # calculate the PM10 emission factors based on PM2.5 and EPA ratio + mutate( emiss.coef = emiss.coef / gcamusa.INTL_SHIP_PM_RATIO, + Non.CO2 = "PM10" ) %>% + # bind back to the table with all other EFs + bind_rows( L276.nonghg_othertrn_tech_coeff_USA_no_driver ) + + # Add an input name column to drive emissions + L276.nonghg_othertrn_tech_coeff_USA <- L276.nonghg_othertrn_tech_coeff_USA_no_driver_hasPM %>% + # L254.StubTranTechCalInput_USA has the fuel inputs that should be used to drive emissions + left_join_error_no_match( L254.StubTranTechCalInput_USA %>% + filter( grepl( "Rail|Aviation|Ship", tranSubsector ) ) %>% + select( c( "supplysector", "tranSubsector", "stub.technology", + "minicam.energy.input" ) ) %>% + distinct( supplysector, tranSubsector, stub.technology, minicam.energy.input ), + by = c("supplysector", "tranSubsector", "stub.technology") ) %>% + # rename to input.name to match header + rename( input.name = minicam.energy.input ) %>% + # change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) %>% + # remove 1975 + filter( year > min(MODEL_BASE_YEARS) ) %>% + # distinct to remove any potential duplicate rows + distinct() + + # Produce outputs + L276.nonghg_othertrn_tech_coeff_USA %>% + add_title("Non-GHG input emissions parameters for non-road transportation sector") %>% + add_units("Tg/EJ") %>% + add_comments("Non-GHG input emissions parameters for non-road transportation sector") %>% + add_legacy_name("L276.nonghg_othertrn_tech_coeff_USA") %>% + add_precursors("gcam-usa/emissions/BC_OC_assumptions", + "gcam-usa/emissions/BCOC_PM25_ratios", + "gcam-usa/emissions/IMO_Shipping_EF", + "L270.nonghg_tg_state_othertrn_F_Yb", + "L254.StubTranTech_USA", + "L254.StubTranTechCalInput_USA", + "L201.en_pol_emissions") -> + L276.nonghg_othertrn_tech_coeff_USA + + + + return_data(L276.nonghg_othertrn_tech_coeff_USA) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_L277.nonghg_prc_USA.R b/input/gcamdata/R/zchunk_L277.nonghg_prc_USA.R new file mode 100644 index 0000000000..4423c60fe4 --- /dev/null +++ b/input/gcamdata/R/zchunk_L277.nonghg_prc_USA.R @@ -0,0 +1,248 @@ +#' module_gcamusa_L277.nonghg_prc_USA +#' +#' Generates input emissions for process and cement sectors by energy technology for Non.CO2 air pollutants for U.S. states +#' Writes out max emissions reductions and steepness to all process-related energy technologies and states +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{L277.nonghg_prc_USA}, \code{L277.nonghg_max_reduction_USA}, \code{L277.nonghg_steepness}. +#' @details Generates input emissions by energy technology for Non.CO2 air pollutants for U.S. states, Writes out max emissions reductions and steepness to all process-related energy technologies and states +#' @importFrom assertthat assert_that +#' @importFrom dplyr filter mutate select +#' @importFrom tidyr gather spread +#' @author BY September 2019, MAW May 2021 +#' +module_gcamusa_L277.nonghg_prc_USA <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L232.nonco2_max_reduction", + "L232.nonco2_steepness", + "L270.nonghg_tg_state_prc_F_Yb", + FILE="gcam-usa/emissions/BC_OC_assumptions", + FILE="gcam-usa/emissions/BCOC_PM25_ratios")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c("L277.nonghg_prc_USA", + "L277.nonghg_max_reduction_USA", + "L277.nonghg_steepness_USA")) + } else if(command == driver.MAKE) { + + # Silence package checks + CEDS_Fuel <- GCAM_sector <- emissions <- state <- sector <- Non.CO2 <- year <- region <- stub.technology <- + input.emissions <- emissions.total.Non.CO2 <- supplysector <- subsector <- share <- NULL + + all_data <- list(...)[[1]] + + # Load required inputs + L232.nonco2_max_reduction <- get_data(all_data, "L232.nonco2_max_reduction", strip_attributes = TRUE) + L232.nonco2_steepness <- get_data(all_data, "L232.nonco2_steepness", strip_attributes = TRUE) + L270.nonghg_tg_state_prc_F_Yb <- get_data(all_data, "L270.nonghg_tg_state_prc_F_Yb", strip_attributes = TRUE) %>% + # don't need fuel column because "process" is not a fuel, and just assigned to identify process emissions + select( -fuel ) + BC_OC_assumptions <- get_data(all_data, "gcam-usa/emissions/BC_OC_assumptions") + BCOC_PM25_ratios <- get_data(all_data, "gcam-usa/emissions/BCOC_PM25_ratios") %>% + # removing columns we do not use, and sectors that aren't mapped to GCAM sectors + select( -c( "Region", "Gains_Sector" ) ) %>% + filter( !is.na( sector ) ) + + # create a template which has all sectors and Non.CO2 pollutants for each state + L277.NEI_agg_all_states <- L270.nonghg_tg_state_prc_F_Yb %>% + # select GCAM base years + filter( year %in% MODEL_BASE_YEARS ) %>% + select(-c( state, value )) %>% + distinct() %>% + write_to_all_states(c("region", "sector", "Non.CO2", "year")) %>% + # need to use left_join because there will be some NAs - certain states do not have emissions for a particular Non.CO2 and sector + left_join(L270.nonghg_tg_state_prc_F_Yb, by = c("region" = "state", "sector", "Non.CO2", "year")) %>% + # need to fill in states with no emissions with 0 + mutate(value = if_else(is.na(value), 0, value)) + + # INDUSTRY PROCESSES + # get the industrial process emissions by state, s/s/t and Non.CO2 + L277.nonghg_ind_prc_USA <- L277.NEI_agg_all_states %>% + filter(sector %in% gcamusa.IND_PROC_EM_NEI_GCAM_SECTORS) %>% + rename(subsector = sector) %>% + mutate(supplysector = "industrial processes", + # change industrial processes subsector and stub.tech to other industrial processes + subsector = gsub( "industry_processes", "other industrial processes", subsector ), + stub.technology = subsector ) %>% + rename(input.emissions = value) %>% + select(region, supplysector, subsector, stub.technology, year, Non.CO2, input.emissions) + + # URBAN PROCESSES + # get the solvent and other industrial process emissions by state, s/s/t, and Non.CO2 + L277.nonghg_urb_prc_USA_noBCOC <- L277.NEI_agg_all_states %>% + filter(sector %in% gcamusa.URB_PROC_EM_NEI_GCAM_SECTORS) %>% + rename(subsector = sector) %>% + mutate(stub.technology = subsector, + supplysector = "urban processes") %>% + # these are input emissions, not emission coefficients. Just naming it this for use in + # the compute_BC_OC function + rename(emiss.coef = value) %>% + select(region, supplysector, subsector, stub.technology, year, Non.CO2, emiss.coef) + + # Use fractions of PM2.5 to calculate BC/OC emissions. + # We need to modify the BC_OC_assumptions table, as the BCOC_PM25_ratios table has updated values that are time dependent + # If there are sector/subsector/tech combos that are in BCOC_PM25_ratios, we want to replace those entries in + # the BC_OC_assumptions table. We also need to extend the data. + # Extrapolate the data to future model years, and format the table + BCOC_PM25_ratios_ext <- BCOC_PM25_ratios %>% + gather_years() %>% + complete(nesting(Parameter,sector,subsector,technology), year = MODEL_YEARS) %>% + # extrapolate missing years + group_by(Parameter,sector,subsector,technology) %>% + mutate(value = approx_fun(year, value, rule = 2)) %>% + ungroup() %>% + spread( Parameter, value ) %>% + rename( "BC_fraction" = `BC Fraction`, + "OC_fraction" = `OC Fraction`) + + BC_OC_assumptions_ext <- BC_OC_assumptions %>% + mutate( year = min( MODEL_BASE_YEARS ) ) %>% + complete(nesting(sector,subsector,technology, BC_fraction, OC_fraction), year = MODEL_YEARS) + + # Join the tables, keeping values from BC_OC_assumptions_ext that do not appear in BCOC_PM25_ratios + BC_OC_assumptions_years <- BC_OC_assumptions_ext %>% + anti_join( BCOC_PM25_ratios_ext, by = c("sector", "subsector", "technology", "year") ) %>% + # bind to BCOC_PM25_assumptions + bind_rows( BCOC_PM25_ratios_ext ) + + # Compute BC and OC emissions based off of PM2.5 + L277.nonghg_urb_prc_USA <- compute_BC_OC(L277.nonghg_urb_prc_USA_noBCOC, BC_OC_assumptions_years) %>% + # renaming back to input emissions + rename(input.emissions = emiss.coef) %>% + # BC and OC are NA for some subsectors due to being non-combustion + filter( !is.na(input.emissions) ) + + # CEMENT + # get the cement emissions by state, s/s/t, and Non.CO2 + # NOTE: in the future, this really should be in the "process heat cement" and have EFs by fuel, + # multiplied out to get a default split, and then scale everything so that it matches the inventory. + # Most of these are not actual process emissions, except for PM2.5 + L277.nonghg_cement_USA <- L277.NEI_agg_all_states %>% + filter(sector %in% gcamusa.CEMENT_NEI_GCAM_SECTORS) %>% + rename(supplysector = sector) %>% + mutate(subsector = supplysector) %>% + repeat_add_columns(tibble(stub.technology = gcamusa.CEMENT_TECHS)) %>% + rename(input.emissions = value) %>% + select(region, supplysector, subsector, stub.technology, year, Non.CO2, input.emissions) %>% + # ensure we do not have duplicate entries + group_by(region, supplysector, subsector, stub.technology, year, Non.CO2) %>% + mutate(input.emissions = sum(input.emissions)) %>% + distinct() + + # join industrial processes and urban processes, and cement + # NOTE: when cement is redone to have an input driver, it will need to be its own table and have a different header + L277.nonghg_prc_USA <- bind_rows(L277.nonghg_ind_prc_USA, L277.nonghg_urb_prc_USA, L277.nonghg_cement_USA) %>% + #change SO2 to SO2_1 + mutate( Non.CO2 = gsub( "SO2", "SO2_1", Non.CO2 ) ) + + # Add GDP controls for the process sectors + # We want overwrite the global control values and assign a max reduction of 30 to all process sector pollutants. + # This should give a reasonable future trajectory that is consistent between emission species. + # We also need to add "wastewater treatment" into the control + + # Copy max reduction format for air pollutants to the states + # PM and NH3 are not included in the L232 table, so will be added manually + L277.nonghg_max_reduction_USA_noPM <- L232.nonco2_max_reduction %>% + # Filter the L277 inputs to just the USA region and non-GHGs + filter(region == gcam.USA_REGION, Non.CO2 %in% emissions.NONGHG_PROC_SECTORS) %>% + write_to_all_states(LEVEL2_DATA_NAMES[["GDPCtrlMax"]]) %>% + mutate(year = max(MODEL_BASE_YEARS), + # this is a somewhat arbitrary value, but consistent between pollutants + max.reduction = gcamusa.NONGHG_PROC_SECTORS.gdp_max_reduction ) %>% + distinct() + + # Adding controls for PM and NH3 emissions + L277.nonghg_max_reduction_USA_nowastewater <- L277.nonghg_max_reduction_USA_noPM %>% + # Filtering for a single pollutant so we have one entry per state / sector / year + filter(Non.CO2 == "NMVOC") %>% + # then removing this column + select( -Non.CO2 ) %>% + repeat_add_columns(tibble(Non.CO2 = gcamusa.NONGHG_PROC_SECTORS.missing_pollutants)) %>% + # rebind to table without PMs and NH3 + bind_rows( L277.nonghg_max_reduction_USA_noPM ) + + # Adding controls for wastewater + L277.nonghg_max_reduction_USA <- L277.nonghg_max_reduction_USA_nowastewater %>% + # Filtering for a single subsector (also in urban processes) so we have one entry per state / year / pollutant + filter(subsector == "landfills") %>% + # then removing this column + select( -subsector ) %>% + repeat_add_columns(tibble(subsector = gcamusa.NONGHG_PROC_SECTORS.missing_subsectors)) %>% + # making the stub.technology name match the subsector name + mutate( stub.technology = subsector ) %>% + # rebind to table without wastewater + bind_rows( L277.nonghg_max_reduction_USA_nowastewater ) + + # Doing the same thing for steepness + L277.nonghg_steepness_USA_noPM <- L232.nonco2_steepness %>% + # Filter the L277 inputs to just the USA region and non-GHGs + filter(region == gcam.USA_REGION, Non.CO2 %in% emissions.NONGHG_PROC_SECTORS) %>% + write_to_all_states(LEVEL2_DATA_NAMES[["GDPCtrlSteep"]]) %>% + mutate(year = max(MODEL_BASE_YEARS), + # this is the current value for all pollutants anyway + steepness = gcamusa.NONGHG_PROC_SECTORS.gdp_steepness) %>% + distinct() + + # Adding controls for PM and NH3 emissions + L277.nonghg_steepness_USA_nowastewater <- L277.nonghg_steepness_USA_noPM %>% + # Filtering for a single pollutant so we have one entry per state / sector / year + filter(Non.CO2 == "NMVOC") %>% + # then removing this column + select( -Non.CO2 ) %>% + repeat_add_columns(tibble(Non.CO2 = gcamusa.NONGHG_PROC_SECTORS.missing_pollutants)) %>% + # rebind to table without PMs and NH3 + bind_rows( L277.nonghg_steepness_USA_noPM ) + + # Adding controls for wastewater + L277.nonghg_steepness_USA <- L277.nonghg_steepness_USA_nowastewater %>% + # Filtering for a single subsector (also in urban processes) so we have one entry per state / year / pollutant + filter(subsector == "landfills") %>% + # then removing this column + select( -subsector ) %>% + repeat_add_columns(tibble(subsector = gcamusa.NONGHG_PROC_SECTORS.missing_subsectors)) %>% + # making the stub.technology name match the subsector name + mutate( stub.technology = subsector ) %>% + # rebind to table without wastewater + bind_rows( L277.nonghg_steepness_USA_nowastewater ) + + + + # =================================================== + # Produce outputs + L277.nonghg_prc_USA %>% + add_title("Non-GHG by technology for all U.S. states") %>% + add_units("Tg") %>% + add_comments("Uses state-level Non.CO2 data from NEI, tech shares from L277.nonco2_prc to disaggregate into supplysector / subsector / stub.technology") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L270.nonghg_tg_state_prc_F_Yb", + "gcam-usa/emissions/BC_OC_assumptions", + "gcam-usa/emissions/BCOC_PM25_ratios") -> + L277.nonghg_prc_USA + + L277.nonghg_max_reduction_USA %>% + add_title("Maximum Non-GHG reduction by energy technology, region, gas, and base year for all U.S. states") %>% + add_units("Percentage reduction from baseline") %>% + add_comments("Applied maximum reductions by technology and gas to all regions") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L232.nonco2_max_reduction") -> + L277.nonghg_max_reduction_USA + + L277.nonghg_steepness_USA %>% + add_title("Non-GHG reduction steepness by energy technology, region, gas, and base year for all U.S. states") %>% + add_units("Unitless") %>% + add_comments("Applied maximum steepness by technology and gas to all regions") %>% + add_legacy_name("NA - new chunk") %>% + add_precursors("L232.nonco2_steepness") -> + L277.nonghg_steepness_USA + + + + return_data(L277.nonghg_prc_USA, + L277.nonghg_max_reduction_USA, + L277.nonghg_steepness_USA) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_LA101.EIA_SEDS.R b/input/gcamdata/R/zchunk_LA101.EIA_SEDS.R index 986b7d0352..1e782c1932 100644 --- a/input/gcamdata/R/zchunk_LA101.EIA_SEDS.R +++ b/input/gcamdata/R/zchunk_LA101.EIA_SEDS.R @@ -12,7 +12,7 @@ #' @param ... other optional parameters, depending on command #' @return Depends on \code{command}: either a vector of required inputs, #' a vector of output names, or (if \code{command} is "MAKE") all -#' the generated outputs: \code{L101.EIA_use_all_Bbtu}, \code{L101.inEIA_EJ_state_S_F}. The corresponding file in the +#' the generated outputs: \code{L101.EIA_use_all_Bbtu}, \code{L101.inEIA_EJ_state_S_F}, \code{L101.inEIA_EJ_state_S_F_all_years}. The corresponding file in the #' original data system was \code{LA101.EIA_SEDS.R} (gcam-usa level1). #' @details See above #' @importFrom assertthat assert_that @@ -27,7 +27,8 @@ module_gcamusa_LA101.EIA_SEDS <- function(command, ...) { FILE = "gcam-usa/A_fuel_conv")) } else if(command == driver.DECLARE_OUTPUTS) { return(c("L101.EIA_use_all_Bbtu", - "L101.inEIA_EJ_state_S_F")) + "L101.inEIA_EJ_state_S_F", + "L101.inEIA_EJ_state_S_F_all_years")) } else if(command == driver.MAKE) { year <- value <- Data_Status <- State <- MSN <- GCAM_fuel <- GCAM_sector <- @@ -62,7 +63,7 @@ module_gcamusa_LA101.EIA_SEDS <- function(command, ...) { mutate(state = State, fuel = GCAM_fuel, sector = GCAM_sector) -> Bbtu_with_GCAM_names - # Create 1 of the 2 output tables: narrow years from 1971-2010, convert billion BTU to EJ (fuel specific), remove rows that have no defined sector or fuel name + # Create 1 of the 3 output tables: narrow years from 1971-2010, convert billion BTU to EJ (fuel specific), remove rows that have no defined sector or fuel name Bbtu_with_GCAM_names %>% select(state, sector, fuel, year, value) %>% filter(year %in% HISTORICAL_YEARS, !is.na(fuel), !is.na(sector)) %>% @@ -74,13 +75,25 @@ module_gcamusa_LA101.EIA_SEDS <- function(command, ...) { ungroup() -> L101.inEIA_EJ_state_S_F - # Create other output table: leave units as billion BTU, getting rid of missing values: prior to 1980, lots are missing. These data are only used for state-wise allocations + # Create 2 of the 3 output tables: keep all years, convert billion BTU to EJ (fuel specific), remove rows that have no defined sector or fuel name + Bbtu_with_GCAM_names %>% + select(state, sector, fuel, year, value) %>% + filter(!is.na(fuel), !is.na(sector)) %>% + left_join(A_fuel_conv, by = "fuel") %>% + mutate(value = value * conv_Bbtu_EJ) %>% + group_by(state, sector, fuel, year) %>% + summarise(value = sum(value)) %>% + arrange(fuel, sector) %>% + ungroup() -> + L101.inEIA_EJ_state_S_F_all_years + + # Create 3 of the 3 output tables: leave units as billion BTU, getting rid of missing values: prior to 1980, lots are missing. These data are only used for state-wise allocations Bbtu_with_GCAM_names %>% select(Data_Status, state, MSN, year, value, EIA_fuel, EIA_sector, sector, fuel, -State) %>% arrange(Data_Status, state, MSN, EIA_fuel, EIA_sector, sector, fuel, -year) -> # Year needs to be in descending order to use fill function Bbtu_with_GCAM_names_intermediate - # To create this second output table, I need to split the dataframe and recombine + # To create this third output table, I need to split the dataframe and recombine Bbtu_with_GCAM_names_intermediate %>% filter(year %in% gcamusa.SEDS_DATA_YEARS) %>% # Custom year range (1971:2017), want to keep NAs in 1960-1970 fill(value) %>% # Replace NAs in 1971-1979 with values from one year more recent @@ -108,7 +121,15 @@ module_gcamusa_LA101.EIA_SEDS <- function(command, ...) { "gcam-usa/EIA_SEDS_sectors", "gcam-usa/A_fuel_conv") -> L101.inEIA_EJ_state_S_F - return_data(L101.EIA_use_all_Bbtu, L101.inEIA_EJ_state_S_F) + L101.inEIA_EJ_state_S_F_all_years %>% + add_title("State Energy Data in EJ by Year, GCAM-Sector, and GCAM-Fuel, for all available EIA years") %>% + add_units("EJ") %>% + add_comments("GCAM sector and fuel names were added, units converted to EJ, data with no GCAM fuel or sector name removed") %>% + add_precursors("gcam-usa/EIA_use_all_Bbtu", "gcam-usa/EIA_SEDS_fuels", + "gcam-usa/EIA_SEDS_sectors", "gcam-usa/A_fuel_conv") -> + L101.inEIA_EJ_state_S_F_all_years + + return_data(L101.EIA_use_all_Bbtu, L101.inEIA_EJ_state_S_F, L101.inEIA_EJ_state_S_F_all_years) } else { stop("Unknown command") } diff --git a/input/gcamdata/R/zchunk_batch_bld_emissions_USA_xml.R b/input/gcamdata/R/zchunk_batch_bld_emissions_USA_xml.R new file mode 100644 index 0000000000..2c999beec2 --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_bld_emissions_USA_xml.R @@ -0,0 +1,38 @@ +# Copyright 2019 Battelle Memorial Institute; see the LICENSE file. + +#' module_gcamusa_batch_bld_emissions_USA_xml +#' +#' Construct XML data structure for \code{bld_emissions_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{bld_emissions_USA.xml}. The corresponding file in the +#' original data system was \code{bld_emissions_USA.xml} (gcamusa XML). + +module_gcamusa_batch_bld_emissions_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L274.nonghg_bld_tech_coeff_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "bld_emissions_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # Load required inputs + L274.nonghg_bld_tech_coeff_USA <- get_data(all_data, "L274.nonghg_bld_tech_coeff_USA") + + # =================================================== + + # Produce outputs + create_xml("bld_emissions_USA.xml") %>% + add_xml_data(L274.nonghg_bld_tech_coeff_USA, "InputEmissCoeff") %>% + add_precursors("L274.nonghg_bld_tech_coeff_USA") -> + bld_emissions_USA.xml + + return_data(bld_emissions_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_batch_elc_emissions_USA_xml.R b/input/gcamdata/R/zchunk_batch_elc_emissions_USA_xml.R new file mode 100644 index 0000000000..27ea88b617 --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_elc_emissions_USA_xml.R @@ -0,0 +1,48 @@ +#' module_gcamusa_batch_elc_emissions_USA_xml +#' +#' Construct XML data structure for \code{elc_emissions_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{elc_emissions_USA.xml}. The corresponding file in the +#' original data system was \code{batch_elc_nonghg_USA.R} (gcamusa XML). +module_gcamusa_batch_elc_emissions_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L272.nonghg_elec_tech_coeff_USA", + "L2722.nonghg_elec_tech_coeff_USA_linear_control", + "L2722.nonghg_elec_tech_coeff_USA_linear_control_off")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "elc_emissions_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # Load required inputs + L272.nonghg_elec_tech_coeff_USA <- get_data(all_data, "L272.nonghg_elec_tech_coeff_USA") + L2722.nonghg_elec_tech_coeff_USA_linear_control <- get_data(all_data, "L2722.nonghg_elec_tech_coeff_USA_linear_control") + L2722.nonghg_elec_tech_coeff_USA_linear_control_off <- get_data(all_data, "L2722.nonghg_elec_tech_coeff_USA_linear_control_off") + + # =================================================== + # Rename columns to meet the LEVEL2_DATA_NAMES header requirements + L272.nonghg_elec_tech_coeff_USA <- rename(L272.nonghg_elec_tech_coeff_USA, stub.technology = technology) + L2722.nonghg_elec_tech_coeff_USA_linear_control <- rename(L2722.nonghg_elec_tech_coeff_USA_linear_control, stub.technology = technology) + L2722.nonghg_elec_tech_coeff_USA_linear_control_off <- rename(L2722.nonghg_elec_tech_coeff_USA_linear_control_off, stub.technology = technology) + + + # Produce outputs + create_xml("elc_emissions_USA.xml") %>% + add_xml_data_generate_levels(L272.nonghg_elec_tech_coeff_USA, "InputEmissCoeff", "subsector", "nesting-subsector", 1, F) %>% + add_xml_data_generate_levels(L2722.nonghg_elec_tech_coeff_USA_linear_control, "LinearCtrl", "subsector", "nesting-subsector", 1, F) %>% + add_xml_data_generate_levels(L2722.nonghg_elec_tech_coeff_USA_linear_control_off, "RetrofitOff", "subsector", "nesting-subsector", 1, F) %>% + add_precursors("L272.nonghg_elec_tech_coeff_USA", + "L2722.nonghg_elec_tech_coeff_USA_linear_control", + "L2722.nonghg_elec_tech_coeff_USA_linear_control_off") -> + elc_emissions_USA.xml + + return_data(elc_emissions_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_batch_ind_urb_proc_emissions_USA_xml.R b/input/gcamdata/R/zchunk_batch_ind_urb_proc_emissions_USA_xml.R new file mode 100644 index 0000000000..30e89c22a7 --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_ind_urb_proc_emissions_USA_xml.R @@ -0,0 +1,43 @@ +#' module_gcamusa_batch_ind_urb_proc_emissions_USA_xml +#' +#' Construct XML data structure for \code{ind_urb_proc_emissions_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{ind_urb_proc_emissions_USA.xml}. +module_gcamusa_batch_ind_urb_proc_emissions_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L277.nonghg_prc_USA", + "L277.nonghg_max_reduction_USA", + "L277.nonghg_steepness_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "ind_urb_proc_emissions_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + emiss.coeff <- NULL # silence package check note + + # Load required inputs + L277.nonghg_prc_USA <- get_data(all_data, "L277.nonghg_prc_USA") + L277.nonghg_max_reduction_USA <- get_data(all_data, "L277.nonghg_max_reduction_USA") + L277.nonghg_steepness_USA <- get_data(all_data, "L277.nonghg_steepness_USA") + + # =================================================== + # Produce outputs + create_xml("ind_urb_proc_emissions_USA.xml") %>% + add_xml_data(L277.nonghg_prc_USA, "StbTechOutputEmissions") %>% + add_xml_data(L277.nonghg_max_reduction_USA, "GDPCtrlMax") %>% + add_xml_data(L277.nonghg_steepness_USA, "GDPCtrlSteep") %>% + add_precursors("L277.nonghg_prc_USA", + "L277.nonghg_max_reduction_USA", + "L277.nonghg_steepness_USA") -> + ind_urb_proc_emissions_USA.xml + + return_data(ind_urb_proc_emissions_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_batch_ind_urb_processing_sectors_USA_xml.R b/input/gcamdata/R/zchunk_batch_ind_urb_processing_sectors_USA_xml.R new file mode 100644 index 0000000000..e57bc0dbf3 --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_ind_urb_processing_sectors_USA_xml.R @@ -0,0 +1,120 @@ +#' module_gcamusa_batch_ind_urb_processing_sectors_USA_xml +#' +#' Construct XML data structure for \code{ind_urb_processing_sectors_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{ind_urb_processing_sectors.xml}. The corresponding file in the +#' original data system was \code{batch_ind_urb_processing_sectors.xml} (emissions XML). +module_gcamusa_batch_ind_urb_processing_sectors_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L231.DeleteSupplysector_industry_USA", + "L231.DeleteSupplysector_urban_processes_USA", + "L231.DeleteFinalDemand_urban_processes_USA", + "L231.UnlimitRsrc_USA", + "L231.UnlimitRsrcPrice_USA", + "L231.FinalDemand_urb_USA", + "L231.Supplysector_urb_ind_USA", + "L231.SubsectorLogit_urb_ind_USA", + "L231.SubsectorShrwt_urb_ind_USA", + "L231.SubsectorShrwtFllt_urb_ind_USA", + "L231.SubsectorInterp_urb_ind_USA", + "L231.SubsectorInterpTo_urb_ind_USA", + "L231.StubTech_urb_ind_USA", + "L231.GlobalTechShrwt_urb_ind", + "L231.GlobalTechEff_urb_ind", + "L231.GlobalTechCoef_urb_ind", + "L231.GlobalTechCost_urb_ind", + "L231.RegionalTechCalValue_urb_ind_USA", + "L231.IndCoef_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "ind_urb_processing_sectors_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # Load required inputs + L231.DeleteSupplysector_industry_USA <- get_data(all_data, "L231.DeleteSupplysector_industry_USA") + L231.DeleteSupplysector_urban_processes_USA <- get_data(all_data, "L231.DeleteSupplysector_urban_processes_USA") + L231.DeleteFinalDemand_urban_processes_USA <- get_data(all_data, "L231.DeleteFinalDemand_urban_processes_USA") + L231.UnlimitRsrc_USA <- get_data(all_data,"L231.UnlimitRsrc_USA") + L231.UnlimitRsrcPrice_USA <- get_data(all_data, "L231.UnlimitRsrcPrice_USA") + L231.FinalDemand_urb_USA <- get_data(all_data, "L231.FinalDemand_urb_USA") + L231.Supplysector_urb_ind_USA <- get_data(all_data, "L231.Supplysector_urb_ind_USA") + L231.SubsectorLogit_urb_ind_USA <- get_data(all_data, "L231.SubsectorLogit_urb_ind_USA") + L231.SubsectorShrwt_urb_ind_USA <- get_data(all_data, "L231.SubsectorShrwt_urb_ind_USA") + L231.SubsectorShrwtFllt_urb_ind_USA <- get_data(all_data, "L231.SubsectorShrwtFllt_urb_ind_USA") + L231.SubsectorInterp_urb_ind_USA <- get_data(all_data, "L231.SubsectorInterp_urb_ind_USA") + L231.SubsectorInterpTo_urb_ind_USA <- get_data(all_data, "L231.SubsectorInterpTo_urb_ind_USA") + L231.GlobalTechShrwt_urb_ind <- get_data(all_data, "L231.GlobalTechShrwt_urb_ind") + L231.GlobalTechEff_urb_ind <- get_data(all_data, "L231.GlobalTechEff_urb_ind") + L231.GlobalTechCoef_urb_ind <- get_data(all_data, "L231.GlobalTechCoef_urb_ind") + L231.GlobalTechCost_urb_ind <- get_data(all_data, "L231.GlobalTechCost_urb_ind") + L231.StubTech_urb_ind_USA <- get_data(all_data, "L231.StubTech_urb_ind_USA") + L231.RegionalTechCalValue_urb_ind_USA <- get_data(all_data, "L231.RegionalTechCalValue_urb_ind_USA") + L231.IndCoef_USA <- get_data(all_data, "L231.IndCoef_USA") + # =================================================== + + # Produce outputs + create_xml("ind_urb_processing_sectors_USA.xml") %>% + add_xml_data(L231.DeleteSupplysector_industry_USA, "DeleteSupplysector") %>% + add_xml_data(L231.DeleteSupplysector_urban_processes_USA, "DeleteSupplysector") %>% + add_xml_data(L231.DeleteFinalDemand_urban_processes_USA, "DeleteFinalDemand") %>% + add_xml_data(L231.UnlimitRsrc_USA, "UnlimitRsrc") %>% + add_xml_data(L231.UnlimitRsrcPrice_USA, "UnlimitRsrcPrice") %>% + add_xml_data(L231.FinalDemand_urb_USA, "FinalDemandInfo") %>% + add_xml_data(L231.StubTech_urb_ind_USA, "StubTech") %>% + add_xml_data(L231.RegionalTechCalValue_urb_ind_USA, "StubTechCalInputIndUrb") %>% + add_xml_data(L231.IndCoef_USA, "StubTechCoefIndUrb") %>% + add_xml_data(L231.GlobalTechShrwt_urb_ind, "GlobalTechShrwt") %>% + add_xml_data(L231.GlobalTechEff_urb_ind, "GlobalTechEff") %>% + add_xml_data(L231.GlobalTechCoef_urb_ind, "GlobalTechCoef") %>% + add_xml_data(L231.GlobalTechCost_urb_ind, "GlobalTechCost") %>% + add_logit_tables_xml(L231.Supplysector_urb_ind_USA, "Supplysector") %>% + add_logit_tables_xml(L231.SubsectorLogit_urb_ind_USA, "SubsectorLogit") %>% + add_precursors("L231.DeleteSupplysector_industry_USA", + "L231.DeleteSupplysector_urban_processes_USA", + "L231.DeleteFinalDemand_urban_processes_USA", + "L231.UnlimitRsrc_USA", + "L231.UnlimitRsrcPrice_USA", + "L231.FinalDemand_urb_USA", + "L231.Supplysector_urb_ind_USA", + "L231.SubsectorLogit_urb_ind_USA", + "L231.SubsectorShrwt_urb_ind_USA", + "L231.SubsectorShrwtFllt_urb_ind_USA", + "L231.SubsectorInterp_urb_ind_USA", + "L231.SubsectorInterpTo_urb_ind_USA", + "L231.StubTech_urb_ind_USA", + "L231.GlobalTechShrwt_urb_ind", + "L231.GlobalTechEff_urb_ind", + "L231.GlobalTechCoef_urb_ind", + "L231.GlobalTechCost_urb_ind", + "L231.RegionalTechCalValue_urb_ind_USA", + "L231.IndCoef_USA")-> + ind_urb_processing_sectors_USA.xml + + # Some data inputs may not actually contain data. If so, do not add_xml_data + if(!is.null(L231.SubsectorShrwt_urb_ind_USA)) { + ind_urb_processing_sectors_USA.xml <- ind_urb_processing_sectors_USA.xml %>% + add_xml_data(L231.SubsectorShrwt_urb_ind_USA, "SubsectorShrwt") + } + if(!is.null(L231.SubsectorShrwtFllt_urb_ind_USA)) { + ind_urb_processing_sectors_USA.xml <- ind_urb_processing_sectors_USA.xml %>% + add_xml_data(L231.SubsectorShrwtFllt_urb_ind_USA, "SubsectorShrwtFllt") + } + if(!is.null(L231.SubsectorInterp_urb_ind_USA)) { + ind_urb_processing_sectors_USA.xml <- ind_urb_processing_sectors_USA.xml %>% + add_xml_data(L231.SubsectorInterp_urb_ind_USA, "SubsectorInterp") + } + if(!is.null(L231.SubsectorInterpTo_urb_ind_USA)) { + ind_urb_processing_sectors_USA.xml <- ind_urb_processing_sectors_USA.xml %>% + add_xml_data(L231.SubsectorInterpTo_urb_ind_USA, "SubsectorInterpTo") + } + + return_data(ind_urb_processing_sectors_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_batch_indenergy_emissions_USA_xml.R b/input/gcamdata/R/zchunk_batch_indenergy_emissions_USA_xml.R new file mode 100644 index 0000000000..c556e0a98c --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_indenergy_emissions_USA_xml.R @@ -0,0 +1,38 @@ +# Copyright 2019 Battelle Memorial Institute; see the LICENSE file. + +#' module_gcamusa_batch_indenergy_emissions_USA_xml +#' +#' Construct XML data structure for \code{indenergy_emissions_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{indenergy_emissions_USA.xml}. The corresponding file in the +#' original data system was \code{indenergy_emissions_USA.xml} (gcamusa XML) + +module_gcamusa_batch_indenergy_emissions_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L275.nonghg_indenergy_tech_coeff_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "indenergy_emissions_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # Load required inputs + L275.nonghg_indenergy_tech_coeff_USA <- get_data(all_data, "L275.nonghg_indenergy_tech_coeff_USA") + + # =================================================== + + # Produce outputs + create_xml("indenergy_emissions_USA.xml") %>% + add_xml_data(L275.nonghg_indenergy_tech_coeff_USA, "InputEmissCoeff") %>% + add_precursors("L275.nonghg_indenergy_tech_coeff_USA") -> + indenergy_emissions_USA.xml + + return_data(indenergy_emissions_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_batch_othertrn_emissions_USA_xml.R b/input/gcamdata/R/zchunk_batch_othertrn_emissions_USA_xml.R new file mode 100644 index 0000000000..8119545b1b --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_othertrn_emissions_USA_xml.R @@ -0,0 +1,35 @@ +#' module_gcamusa_batch_othertrn_emissions_USA_xml +#' +#' Construct XML data structure for \code{othertrn_emissions_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{othertrn_emissions_USA.xml}. The corresponding file in the +#' original data system was \code{batch_othertrn_emissions_USA_xml.R} (gcamusa XML). +module_gcamusa_batch_othertrn_emissions_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L276.nonghg_othertrn_tech_coeff_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "othertrn_emissions_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # Load required inputs + L276.nonghg_othertrn_tech_coeff_USA <- get_data(all_data, "L276.nonghg_othertrn_tech_coeff_USA") + + # =================================================== + + # Produce outputs + create_xml("othertrn_emissions_USA.xml") %>% + add_xml_data(L276.nonghg_othertrn_tech_coeff_USA, "TrnInputEmissCoeff") %>% + add_precursors("L276.nonghg_othertrn_tech_coeff_USA") -> + othertrn_emissions_USA.xml + + return_data(othertrn_emissions_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_batch_refinery_nonghg_emissions_USA_xml.R b/input/gcamdata/R/zchunk_batch_refinery_nonghg_emissions_USA_xml.R new file mode 100644 index 0000000000..384ef30ed8 --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_refinery_nonghg_emissions_USA_xml.R @@ -0,0 +1,35 @@ +#' module_gcamusa_batch_refinery_nonghg_emissions_USA_xml +#' +#' Construct XML data structure for \code{refinery_emissions_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{refinery_emissions_USA.xml}. The corresponding file in the +#' original data system was \code{batch_en_nonghg_emissions_USA_xml.R} (gcamusa XML). +module_gcamusa_batch_refinery_nonghg_emissions_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L273.nonghg_state_refinery_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "refinery_emissions_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # Load required inputs + L273.nonghg_state_refinery_USA <- get_data(all_data, "L273.nonghg_state_refinery_USA", strip_attributes = TRUE) + + # =================================================== + + # Produce outputs + create_xml("refinery_emissions_USA.xml") %>% + add_xml_data(L273.nonghg_state_refinery_USA, "OutputEmissions") %>% + add_precursors("L273.nonghg_state_refinery_USA") -> + refinery_emissions_USA.xml + + return_data(refinery_emissions_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/R/zchunk_batch_transport_emissions_USA_xml.R b/input/gcamdata/R/zchunk_batch_transport_emissions_USA_xml.R new file mode 100644 index 0000000000..20f6fc55fb --- /dev/null +++ b/input/gcamdata/R/zchunk_batch_transport_emissions_USA_xml.R @@ -0,0 +1,42 @@ +# Copyright 2019 Battelle Memorial Institute; see the LICENSE file. + +#' module_gcamusa_batch_transport_emissions_USA_xml +#' +#' Construct XML data structure for \code{transport_emissions_USA.xml}. +#' +#' @param command API command to execute +#' @param ... other optional parameters, depending on command +#' @return Depends on \code{command}: either a vector of required inputs, +#' a vector of output names, or (if \code{command} is "MAKE") all +#' the generated outputs: \code{transport_emissions_USA.xml}. The corresponding file in the +#' original data system was \code{transport_emissions_USA.xml} (gcamusa XML). + +module_gcamusa_batch_transport_emissions_USA_xml <- function(command, ...) { + if(command == driver.DECLARE_INPUTS) { + return(c("L271.nonco2_trn_tech_coeff_USA", + "L271.nonco2_trn_emiss_control_USA")) + } else if(command == driver.DECLARE_OUTPUTS) { + return(c(XML = "transport_emissions_USA.xml")) + } else if(command == driver.MAKE) { + + all_data <- list(...)[[1]] + + # Load required inputs + L271.nonco2_trn_tech_coeff_USA <- get_data(all_data, "L271.nonco2_trn_tech_coeff_USA") + L271.nonco2_trn_emiss_control_USA <- get_data(all_data, "L271.nonco2_trn_emiss_control_USA") + + # =================================================== + + # Produce outputs + create_xml("transport_emissions_USA.xml") %>% + add_xml_data(L271.nonco2_trn_tech_coeff_USA, "TrnOutputEmissCoeff") %>% + add_xml_data(L271.nonco2_trn_emiss_control_USA, "LinearCtrlInc") %>% + add_precursors("L271.nonco2_trn_tech_coeff_USA", + "L271.nonco2_trn_emiss_control_USA") -> + transport_emissions_USA.xml + + return_data(transport_emissions_USA.xml) + } else { + stop("Unknown command") + } +} diff --git a/input/gcamdata/data-raw/generate_package_data.R b/input/gcamdata/data-raw/generate_package_data.R index bc091ea018..d580be405d 100644 --- a/input/gcamdata/data-raw/generate_package_data.R +++ b/input/gcamdata/data-raw/generate_package_data.R @@ -409,6 +409,7 @@ generate_level2_data_names <- function() { level2_data_names[["OutputEmissCoeff"]] <- c("region", "supplysector", "subsector", "stub.technology", "year", "Non.CO2", "emiss.coeff") level2_data_names[["InputEmissions"]] <- c("region", "supplysector", "subsector", "stub.technology", "year", "Non.CO2", "input.emissions", "input.name") level2_data_names[["OutputEmissions"]] <- c("region", "supplysector", "subsector", "stub.technology", "year", "Non.CO2", "input.emissions") + level2_data_names[["OutputResourceEmissions"]] <- c("region", "resource", "subresource", "technology", "year", "Non.CO2", "input.emissions") level2_data_names[["StbTechOutputEmissions"]] <- c("region", "supplysector", "subsector", "stub.technology", "year", "Non.CO2", "input.emissions") level2_data_names[["ReadInControl"]] <- c("region", "supplysector", "subsector", "stub.technology", "year", "Non.CO2", "future.emiss.coeff.name", "future.emiss.coeff.year", "emiss.coeff") level2_data_names[["ResReadInControl"]] <- c("region", "resource", "subresource", "technology", "year", "Non.CO2", "future.emiss.coeff.name", "future.emiss.coeff.year", "emiss.coef") @@ -432,7 +433,9 @@ generate_level2_data_names <- function() { level2_data_names[["AgMACTC"]] <- c("region", "AgSupplySector", "AgSupplySubsector", "AgProductionTechnology", "year", "Non.CO2", "mac.control", "tech.change.year", "tech.change") level2_data_names[["AgMACPhaseIn"]] <- c("region", "AgSupplySector", "AgSupplySubsector", "AgProductionTechnology", "year", "Non.CO2", "mac.control", "mac.phase.in.time") level2_data_names[["TrnInputEmissCoeff"]] <- c("region", "supplysector", "tranSubsector", "stub.technology", "year", "Non.CO2", "emiss.coef", "input.name") - level2_data_names[["LinearCtrlInc"]] <- c("region", "supplysector", "tranSubsector","stub.technology", "year", "Non.CO2", "linear.control", "start.year", "end.year", "final.emissions.coefficient") + level2_data_names[["TrnOutputEmissCoeff"]] <- c("region", "supplysector", "tranSubsector", "stub.technology", "year", "Non.CO2", "emiss.coef") + level2_data_names[["LinearCtrlInc"]] <- c("region", "supplysector", "tranSubsector", "stub.technology", "year", "Non.CO2", "linear.control", "start.year", "end.year", "final.emissions.coefficient", "allow.ef.increase") + level2_data_names[["LinearCtrl"]] <- c("region", "supplysector", "subsector","stub.technology", "year", "Non.CO2", "linear.control", "start.year", "end.year", "final.emissions.coefficient") level2_data_names[["EF_Retrofit"]] <- c("region", "supplysector", "subsector", "stub.technology", "retrofit_vintage", "Non.CO2", "linear.control", "start.year", "end.year", "final.emissions.coefficient") level2_data_names[["RetrofitOff"]] <- c("region", "supplysector", "subsector", "stub.technology", "period", "Non.CO2", "linear.control", "start.year", "end.year", "disable.em.control") level2_data_names[["EF_NSPS"]] <- c("region", "supplysector", "subsector", "stub.technology", "period", "Non.CO2", "emiss.coef") @@ -493,6 +496,7 @@ usethis::use_data(GCAM_DATA_MAP, overwrite = TRUE, internal = FALSE) prebuilt_data_names <- c( # outputs of module_emissions_L102.nonco2_ceds_R_S_Y "L102.ceds_GFED_nonco2_tg_R_S_F", + "L102.ceds_GFED_nonco2_tg_C_S_F", "L102.ceds_int_shipping_nonco2_tg_S_F", # outputs of module_energy_LA101.en_bal_IEA diff --git a/input/gcamdata/inst/extdata/emissions/CEDS/GFED-CMIP6_LUC_emissions.csv b/input/gcamdata/inst/extdata/emissions/CEDS/GFED-CMIP6_LUC_emissions.csv index a50939f5cd..7081a4ffb4 100644 --- a/input/gcamdata/inst/extdata/emissions/CEDS/GFED-CMIP6_LUC_emissions.csv +++ b/input/gcamdata/inst/extdata/emissions/CEDS/GFED-CMIP6_LUC_emissions.csv @@ -1,7 +1,7 @@ # File: GFED-CMIP6_LUC_emissions.csv # Title: GFED-CMIP6 LUC Emissions # Units: kt -# Source: GFED-CMIP6 +# Source: Historic global biomass burning emissions for CMIP6 (BB4CMIP)based on merging satellite observations with proxies and fire models (1750-2015) (van Marle etal 2017 https://doi.org/10.5194/gmd-10-3329-2017) # Description: CMIP6 emissions data for agr fires processed by in-house processing code to match GCAM country-sector breakdown # Column types: ccccnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn # ---------- diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/BCOC_PM25_ratios.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/BCOC_PM25_ratios.csv new file mode 100644 index 0000000000..b9ecf57d6f --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/BCOC_PM25_ratios.csv @@ -0,0 +1,73 @@ +# File: BCOC_PM25_ratios.csv +# Title: Fractions of PM2.5 combustion emissions that are BC and OC +# Units: Unitless +# Description: ratio of (sub-micrometer) BC and OC to total PM2.5 +# Source: Developed from Klimont et al. (2017). Global Anthropogenic Emissions of Particulate Matter Including Black Carbon. Atmospheric Chemistry and Physics 17 pp8681-8723. DOI:10.5194/acp-17-8681-2017. +# Industry biomass derived using ECLIPSE_V6b emissions data. Akagi et al. (2011). Emission factors for open and domestic biomass burning for use in atmospheric models. Atmospheric Chemistry and Physics 11 pp4039-4072. https://doi.org/10.5194/acp-11-4039-2011. +# Column types: ccccccnnnnnn +# ---------- +Parameter,Region,Gains_Sector,sector,subsector,technology,1990,1995,2000,2005,2010,2015 +BC Fraction,2 USA,Power - coal,,,,0.0076,0.0076,0.0069,0.0061,0.0033, +BC Fraction,2 USA,Power - other fuels,,,,0.0615,0.0542,0.1294,0.1683,0.168, +BC Fraction,2 USA,Industry,,,,0.0086,0.0114,0.0204,0.0181,0.0137, +BC Fraction,2 USA,Coke ovens,,,,0.1765,0.1729,0.1755,0.1788,0.1788, +BC Fraction,2 USA,Fossil fuel production,NG_production_distribution,,,0.0886,0.0788,0.0431,0.0385,0.0382, +BC Fraction,2 USA,Fossil fuel production,petroleum_production,,,0.0886,0.0788,0.0431,0.0385,0.0382, +BC Fraction,2 USA,Residential-biomass,base load generation,biomass,,0.1531,0.1575,0.1622,0.1682,0.1754, +BC Fraction,2 USA,Residential-biomass,intermediate generation,biomass,,0.1531,0.1575,0.1622,0.1682,0.1754, +BC Fraction,2 USA,Residential-biomass,subpeak generation,biomass,,0.1531,0.1575,0.1622,0.1682,0.1754, +BC Fraction,2 USA,Residential-biomass,peak generation,biomass,,0.1531,0.1575,0.1622,0.1682,0.1754, +BC Fraction,2 USA,Residential-biomass,comm heating,biomass,,0.1531,0.1575,0.1622,0.1682,0.1754, +BC Fraction,2 USA,Residential-coal,,,,0.2735,0.3603,0.3682,0.1361,0.0658, +BC Fraction,2 USA,Residential-other fuels,comm heating,refined liquids,,0.5869,0.5438,0.533,0.6061,0.602, +BC Fraction,2 USA,Residential-other fuels,comm hot water,refined liquids,,0.5869,0.5438,0.533,0.6061,0.602, +BC Fraction,2 USA,Residential-other fuels,comm other,refined liquids,,0.5869,0.5438,0.533,0.6061,0.602, +BC Fraction,2 USA,Residential-other fuels,resid cooking,refined liquids,,0.5869,0.5438,0.533,0.6061,0.602, +BC Fraction,2 USA,Residential-other fuels,resid heating,refined liquids,,0.5869,0.5438,0.533,0.6061,0.602, +BC Fraction,2 USA,Residential-other fuels,resid hot water,refined liquids,,0.5869,0.5438,0.533,0.6061,0.602, +BC Fraction,2 USA,Residential-other fuels,resid other,refined liquids,,0.5869,0.5438,0.533,0.6061,0.602, +BC Fraction,2 USA,Road transport - diesel,,,,0.5235,0.5266,0.5764,0.5878,0.5503, +BC Fraction,2 USA,Road transport - other,,,,0.2015,0.2053,0.2239,0.242,0.2797, +BC Fraction,2 USA,Non-road transport - diesel,trn_freight,Freight Rail,Liquids,0.4475,0.4339,0.4362,0.4338,0.4299, +BC Fraction,2 USA,Non-road transport - diesel,trn_freight,Domestic Ship,Liquids,0.4475,0.4339,0.4362,0.4338,0.4299, +BC Fraction,2 USA,Non-road transport - diesel,trn_pass,Domestic Aviation,Liquids,0.4475,0.4339,0.4362,0.4338,0.4299, +BC Fraction,2 USA,Non-road transport - diesel,trn_pass,Passenger Rail,Liquids,0.4475,0.4339,0.4362,0.4338,0.4299, +BC Fraction,2 USA,Non-road transport - diesel,other industrial energy use,refined liquids,refined liquids,0.4475,0.4339,0.4362,0.4338,0.4299, +BC Fraction,2 USA,Non-road transport - diesel,other industrial energy use,refined liquids,refined liquids cogen,0.4475,0.4339,0.4362,0.4338,0.4299, +BC Fraction,2 USA,Non-road transport - other,,,,0.1812,0.1812,0.1812,0.1812,0.1915, +BC Fraction,2 USA,Other,,,,0.0813,0.0814,0.0745,0.0748,0.0737, +OC Fraction,2 USA,Power - coal,,,,0.0049,0.0048,0.0036,0.003,0.0015, +OC Fraction,2 USA,Power - other fuels,,,,0.0621,0.0898,0.1462,0.1874,0.2716, +OC Fraction,2 USA,Industry,,,,0.0102,0.014,0.0239,0.0214,0.0184, +OC Fraction,2 USA,Coke ovens,,,,0.35,0.2377,0.1934,0.1928,0.1928, +OC Fraction,2 USA,Fossil fuel production,NG_production_distribution,,,0.023,0.0205,0.0112,0.01,0.0099, +OC Fraction,2 USA,Fossil fuel production,petroleum_production,,,0.023,0.0205,0.0112,0.01,0.0099, +OC Fraction,2 USA,Residential-biomass,base load generation,biomass,,0.7951,0.7895,0.7835,0.7752,0.7649, +OC Fraction,2 USA,Residential-biomass,intermediate generation,biomass,,0.7951,0.7895,0.7835,0.7752,0.7649, +OC Fraction,2 USA,Residential-biomass,subpeak generation,biomass,,0.7951,0.7895,0.7835,0.7752,0.7649, +OC Fraction,2 USA,Residential-biomass,peak generation,biomass,,0.7951,0.7895,0.7835,0.7752,0.7649, +OC Fraction,2 USA,Residential-biomass,comm heating,biomass,,0.7951,0.7895,0.7835,0.7752,0.7649, +OC Fraction,2 USA,Residential-coal,,,,0.3163,0.4105,0.4073,0.1352,0.0474, +OC Fraction,2 USA,Residential-other fuels,comm heating,refined liquids,,0.2653,0.3508,0.4254,0.3939,0.398, +OC Fraction,2 USA,Residential-other fuels,comm hot water,refined liquids,,0.2653,0.3508,0.4254,0.3939,0.398, +OC Fraction,2 USA,Residential-other fuels,comm other,refined liquids,,0.2653,0.3508,0.4254,0.3939,0.398, +OC Fraction,2 USA,Residential-other fuels,resid cooking,refined liquids,,0.2653,0.3508,0.4254,0.3939,0.398, +OC Fraction,2 USA,Residential-other fuels,resid heating,refined liquids,,0.2653,0.3508,0.4254,0.3939,0.398, +OC Fraction,2 USA,Residential-other fuels,resid hot water,refined liquids,,0.2653,0.3508,0.4254,0.3939,0.398, +OC Fraction,2 USA,Residential-other fuels,resid other,refined liquids,,0.2653,0.3508,0.4254,0.3939,0.398, +OC Fraction,2 USA,Road transport - diesel,,,,0.4258,0.4221,0.3751,0.3626,0.3976, +OC Fraction,2 USA,Road transport - other,,,,0.6949,0.6928,0.6775,0.6609,0.6203, +OC Fraction,2 USA,Non-road transport - diesel,trn_freight,Freight Rail,Liquids,0.3366,0.3526,0.35,0.3528,0.3566, +OC Fraction,2 USA,Non-road transport - diesel,trn_freight,Domestic Ship,Liquids,0.3366,0.3526,0.35,0.3528,0.3566, +OC Fraction,2 USA,Non-road transport - diesel,trn_pass,Domestic Aviation,Liquids,0.3366,0.3526,0.35,0.3528,0.3566, +OC Fraction,2 USA,Non-road transport - diesel,trn_pass,Passenger Rail,Liquids,0.3366,0.3526,0.35,0.3528,0.3566, +OC Fraction,2 USA,Non-road transport - diesel,other industrial energy use,refined liquids,refined liquids,0.3366,0.3526,0.35,0.3528,0.3566, +OC Fraction,2 USA,Non-road transport - diesel,other industrial energy use,refined liquids,refined liquids cogen,0.3366,0.3526,0.35,0.3528,0.3566, +OC Fraction,2 USA,Non-road transport - other,,,,0.785,0.785,0.785,0.785,0.7777, +OC Fraction,2 USA,Other,,,,0.5056,0.5066,0.4647,0.4666,0.4592, +BC Fraction,2 USA,Industry - biomass,other industrial energy use,biomass,biomass,0.4174,0.4207,0.4812,0.4743,0.4966,0.5165 +OC Fraction,2 USA,Industry - biomass,other industrial energy use,biomass,biomass,0.3133,0.3114,0.2758,0.2798,0.2667,0.255 +BC Fraction,2 USA,Industry - biomass,other industrial energy use,biomass,biomass cogen,0.4174,0.4207,0.4812,0.4743,0.4966,0.5165 +OC Fraction,2 USA,Industry - biomass,other industrial energy use,biomass,biomass cogen,0.3133,0.3114,0.2758,0.2798,0.2667,0.255 +BC Fraction,2 USA,Residential waste burning,urban processes,waste_incineration,waste_incineration,0.06426267,0.06426267,0.06426267,0.06426267,0.06426267, +OC Fraction,2 USA,Residential waste burning,urban processes,waste_incineration,waste_incineration,0.521021959,0.521021959,0.521021959,0.521021959,0.521021959, diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/BC_OC_assumptions.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/BC_OC_assumptions.csv new file mode 100644 index 0000000000..1005d22476 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/BC_OC_assumptions.csv @@ -0,0 +1,67 @@ +# File: BC_OC_assumptions.csv +# Title: Fractions of PM2.5 combustion emissions that are BC and OC +# Units: BC_fraction, OC_fraction - Unitless +# Source: Developed from Bond et al (2004). A technology-based global inventory of black and organic carbon emissions from combustion. # Provided by Dan Loughlin at EPA-ORD 8/2015 # Updated 1/13/2017 by Catherine Ledna #Updated 9/18/2019 by Brinda Yarlagadda +# Column types: cccnn +# ---------- +sector,subsector,technology,BC_fraction,OC_fraction +base load generation,coal,,0.006,0 +base load generation,gas,,0.06,0.5 +base load generation,biomass,,0.05,0.2 +base load generation,refined liquids,,0.3,0.09 +intermediate generation,coal,,0.006,0 +intermediate generation,gas,,0.06,0.5 +intermediate generation,biomass,,0.05,0.2 +intermediate generation,refined liquids,,0.3,0.09 +subpeak generation,coal,,0.006,0 +subpeak generation,gas,,0.06,0.5 +subpeak generation,biomass,,0.05,0.2 +subpeak generation,refined liquids,,0.3,0.09 +peak generation,coal,,0.006,0 +peak generation,gas,,0.06,0.5 +peak generation,biomass,,0.05,0.2 +peak generation,refined liquids,,0.3,0.09 +trn_aviation_intl,International Aviation,Liquids,0.7,0.2 +trn_shipping_intl,International Ship,Liquids,0.66,0.21 +trn_freight,Freight Rail,Liquids,0.66,0.21 +trn_freight,Domestic Ship,Liquids,0.66,0.21 +trn_freight_road,,Liquids,0.66,0.21 +trn_freight_road,,NG,0.06,0.5 +trn_pass,Domestic Aviation,Liquids,0.7,0.2 +trn_pass,Passenger Rail,Liquids,0.66,0.21 +trn_pass_road,Bus,Liquids,0.66,0.21 +trn_pass_road,Bus,NG,0.06,0.5 +trn_pass_road_LDV_4W,,Liquids,0.34,0.36 +trn_pass_road_LDV_4W,,NG,0.06,0.5 +trn_pass_road_LDV_4W,,Hybrid Liquids,0.34,0.36 +trn_pass_road_LDV_2W,,Liquids,0.05,0.79 +comm cooking,gas,,0.06,0.5 +comm cooling,gas,,0.06,0.5 +comm heating,biomass,,0.05,0.2 +comm heating,coal,,0.2,0.04 +comm heating,gas,,0.06,0.5 +comm heating,refined liquids,,0.3,0.09 +comm hot water,gas,,0.06,0.5 +comm hot water,refined liquids,,0.3,0.09 +comm other,gas,,0.06,0.5 +comm other,refined liquids,,0.3,0.09 +resid cooking,gas,,0.06,0.5 +resid cooking,refined liquids,,0.13,0.1 +resid clothes dryers,gas,,0.06,0.5 +resid other,gas,,0.06,0.5 +resid heating,biomass,wood furnace,0.05,0.69 +resid heating,coal,,0.2,0.04 +resid heating,gas,,0.06,0.5 +resid heating,refined liquids,,0.13,0.1 +resid hot water,gas,,0.06,0.5 +resid hot water,refined liquids,,0.13,0.1 +resid other,refined liquids,,0.13,0.1 +other industrial energy use,coal,coal,0.2,0.04 +other industrial energy use,coal,coal cogen,0.006,0 +other industrial energy use,gas,gas,0.06,0.5 +other industrial energy use,gas,gas cogen,0.06,0.5 +other industrial energy use,refined liquids,refined liquids,0.3,0.09 +other industrial energy use,refined liquids,refined liquids cogen,0.3,0.09 +other industrial energy use,biomass,biomass,0.05,0.2 +other industrial energy use,biomass ,biomass cogen,0.05,0.2 +urban processes,waste_incineration,waste_incineration,0.05,0.2 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_GCAM_fuel.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_GCAM_fuel.csv new file mode 100644 index 0000000000..d9110cdc3d --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_GCAM_fuel.csv @@ -0,0 +1,16 @@ +# File: CEDS_GCAM_fuel.csv +# Title: Convert CEDS_fuel code to GCAM_fuel name +# Units: NA +# Source: NA - Mapping file +# Column types: cc +# ---------- +CEDS_Fuel,GCAM_fuel +biomass,biomass +diesel_oil,refined liquids +heavy_oil,refined liquids +light_oil,refined liquids +hard_coal,coal +brown_coal,coal +Anthracite_Lignite,coal +natural_gas,gas +Process, process diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_GCAM_transport.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_GCAM_transport.csv new file mode 100644 index 0000000000..470305a533 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_GCAM_transport.csv @@ -0,0 +1,11 @@ +# File: CEDS_GCAM_transport.csv +# Title: Convert CEDS_fuel code to GCAM_technology +# Units: NA +# Source: NA - Mapping file +# Column types: cc +# ---------- +CEDS_Fuel,GCAM_fuel +diesel_oil,Liquids +light_oil,Liquids +natural_gas,NG +Other_Fuel,Liquids diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_CEDS_sector_mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_CEDS_sector_mapping.csv new file mode 100644 index 0000000000..fe56c64a96 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_CEDS_sector_mapping.csv @@ -0,0 +1,128 @@ +# File: CEDS_to_CEDS_sector_mapping.csv +# Title: mapping file for CEDS sectors used for NEI/SCC to CEDS sectors used in the GCAM data system +# Units: NA +# Source: NA - Mapping file +# Column types: cccc +# ---------- +Core_CEDS,SCC_CEDS_extended,Agg_CEDS_for_scaling,Notes +11A_Volcanoes,,not in gcam, +11C_Other-natural,11C_Other-natural,not in gcam, +1A1a_Electricity-autoproducer,1A2a_Ind-Comb,1A1B_Industrial_and_Buildings, +1A1a_Electricity-public,1A1a_Public-Electricity,1A1a_Electricity-public, +1A1a_Heat-production,,1A1B_Industrial_and_Buildings,"a portion of this is in the commercial sector, but most is in industry" +1A1bc_Other-transformation,1A1b_Pet-refining,1A1B_Industrial_and_Buildings,"emissions from petroleum consumption for refining, grouping with fugitive emissions" +1A1bc_Other-transformation,1A1c_Coke-ovens,1A1B_Industrial_and_Buildings, +1A1bc_Other-transformation,1A1g_Other-energy-transf,1A1B_Industrial_and_Buildings, +1A2a_Ind-Comb-Iron-steel,,1A1B_Industrial_and_Buildings, +1A2b_Ind-Comb-Non-ferrous-metals,,1A1B_Industrial_and_Buildings, +1A2c_Ind-Comb-Chemicals,1A2c_Chemicals,1A1B_Industrial_and_Buildings,"make sure this is combustion (confirmed, combustion)" +1A2d_Ind-Comb-Pulp-paper,,1A1B_Industrial_and_Buildings, +1A2e_Ind-Comb-Food-tobacco,,1A1B_Industrial_and_Buildings, +1A2f_Ind-Comb-Non-metalic-minerals,1A2f_Ind-Comb-Non-metalic-minerals,1A1B_Industrial_and_Buildings, +1A2g_Ind-Comb-Construction,1A2g_Construction_and_Mining,1A1B_Industrial_and_Buildings, +1A2g_Ind-Comb-machinery,,1A1B_Industrial_and_Buildings, +1A2g_Ind-Comb-mining-quarying,,1A1B_Industrial_and_Buildings, +1A2g_Ind-Comb-other,1A2g_Industry-other,1A1B_Industrial_and_Buildings, +1A2g_Ind-Comb-textile-leather,,1A1B_Industrial_and_Buildings, +1A2g_Ind-Comb-transpequip,,1A1B_Industrial_and_Buildings, +1A2g_Ind-Comb-wood-products,,1A1B_Industrial_and_Buildings, +,1A2_Industrial_fuel_comb_off_hwy,1A1B_Industrial_and_Buildings, +,1A2_Industrial_fuel_combustion,1A1B_Industrial_and_Buildings, +1A3ai_International-aviation,,1A3eii_Other-transp, +1A3aii_Domestic-aviation,1A3aii_Domestic-aviation,1A3aii_Domestic-aviation, +,1A3b_Road-noncomb,1A3b_Road, +1A3b_Road,1A3bi_Road,1A3b_Road,This extended sector was created to aggregate all CEDS Road sectors for interpolation purposes +1A3b_Road,1A3bii_Road-LDV,1A3b_Road, +1A3b_Road,1A3bii_Road-truck-Light-Commertial,1A3b_Road, +1A3b_Road,1A3biii_Road-bus,1A3b_Road, +1A3b_Road,1A3biii_Road-heavy-duty-trucks-buses,1A3b_Road, +1A3b_Road,1A3biii_Road-truck-Long-haul,1A3b_Road, +1A3b_Road,1A3biii_Road-truck-Short-haul,1A3b_Road, +1A3b_Road,1A3biii_Road-truck-heavy,1A3b_Road, +1A3b_Road,1A3biii_Road-truck-medium,1A3b_Road, +1A3b_Road,1A3biii_Road-truck-medium-heavy,1A3b_Road, +1A3b_Road,1A3biv_Road-mopeds-motorcycles,1A3b_Road, +1A3c_Rail,1A3c_Rail,1A3c_Rail, +1A3di_International-shipping,,1A3eii_Other-transp, +1A3di_Oil_Tanker_Loading,,1A3eii_Other-transp, +1A3dii_Domestic-navigation,1A3dii_Domestic-navigation (shipping),1A3dii_Domestic-navigation (shipping), +1A3eii_Other-transp,1A3eii_Other-unspecified-transp,1A3eii_Other-transp, +1A4a_Commercial-institutional,1A4ai_Commercial-institutional-stationary,1A1B_Industrial_and_Buildings, +1A4a_Commercial-institutional,1A4aii_Commercial-institutional-mobile,1A1B_Industrial_and_Buildings, +1A4b_Residential,1A4bi_Residential-mobile,1A1B_Industrial_and_Buildings, +1A4b_Residential,1A4bi_Residential-stationary,1A1B_Industrial_and_Buildings, +1A4c_Agriculture-forestry-fishing,1A4c_Agriculture-forestry-fishing,1A1B_Industrial_and_Buildings, +,1A5_Recreational-Equipment-Land,1A1B_Industrial_and_Buildings, +1A5_Other-unspecified,1A5_Recreational-Equipment-Marine,1A1B_Industrial_and_Buildings, +1B1_Fugitive-solid-fuels,,not in NEI,not in NEI +1B2_Fugitive-petr,1B2ai_Fugitive-petr-prod,1A1B_Industrial_and_Buildings,USA level resource production +1B2_Fugitive-petr,1B2aiv_Fugitive-petr-refining,1A1B_Industrial_and_Buildings,state level refining +1B2_Fugitive-petr,1B2av_Fugitive-petr-distr,1A1B_Industrial_and_Buildings,state level distribution +1B2_Fugitive-petr,1B2av_Fugitive-petr-distr-marine,1A1B_Industrial_and_Buildings,group with 1B2av_Fugitive-petr-distr +1B2b_Fugitive-NG-distr,1B2b_Fugitive-NG-prod-distr,1A1B_Industrial_and_Buildings,keep at national level for natural gas resource production +1B2b_Fugitive-NG-prod,,1A1B_Industrial_and_Buildings, +1B2d_Fugitive-other-energy,,1A1B_Industrial_and_Buildings, +2A1_Cement-production,2A1_Cement-production,2ABCH_Industrial_processes, +2A2_Lime-production,2A2_Lime-production,2ABCH_Industrial_processes, +,2A5b_Construction-and-demolition,2ABCH_Industrial_processes, +2A6_Other-minerals,2A6_Other-minerals,2ABCH_Industrial_processes, +2B_Chemical-industry,2B_Chemicals-other,2ABCH_Industrial_processes, +2B2_Chemicals-Nitric-acid,,2ABCH_Industrial_processes, +2B3_Chemicals-Adipic-acid,,2ABCH_Industrial_processes, +2C_Metal-production,2C_Iron-steel-alloy,2ABCH_Industrial_processes, +2C_Metal-production,2C3_Aluminum-production,2ABCH_Industrial_processes, +2C_Metal-production,2C5_Lead-production,2ABCH_Industrial_processes, +2C_Metal-production,2C6_Zinc-production,2ABCH_Industrial_processes, +2C_Metal-production,2C7_Other-metal,2ABCH_Industrial_processes, +2C_Metal-production,2C7a_Copper-production,2ABCH_Industrial_processes, +2C_Metal-production,2C7b_Nickel-production,2ABCH_Industrial_processes, +2D_Degreasing-Cleaning,2D3a_Domestic-solvent-use,2D_Solvents, +2D_Degreasing-Cleaning,2D3e_Degreasing,2D_Solvents, +2D_Degreasing-Cleaning,2D3f_Dry-cleaning,2D_Solvents, +2D_Paint-application,2D3d_Coating-application,2D_Solvents, +2D3_Chemical-products-manufacture-processing,,2D_Solvents, +2D3_Other-product-use,2D3i_Other-solvent-use,2D_Solvents, +,2D3c_Asphalt-roofing,2D_Solvents, +,2D3h_Printing,2D_Solvents, +2H_Pulp-and-paper-food-beverage-wood,2H1_Pulp-and-paper,2ABCH_Industrial_processes, +2H_Pulp-and-paper-food-beverage-wood,2H2_Food-and-beverage,2ABCH_Industrial_processes, +2H_Pulp-and-paper-food-beverage-wood,2I_Wood-processing,2ABCH_Industrial_processes, +,2H2_Ethanol Production,1A1bc_Other-transformation,keep NEI emissions if scaling factor is large/small +,2H2_Biodiesel Production,1A1bc_Other-transformation, +2L_Other-process-emissions,2H3_Other-industrial-processes,2ABCH_Industrial_processes, +3B_Manure-management,3B2_Manure-sheep,3B_Manure-management, +3B_Manure-management,3B3_Manure-swine,3B_Manure-management, +3B_Manure-management,3B4_Manure-other,3B_Manure-management, +3B_Manure-management,3B4_Manure-poultry,3B_Manure-management, +3B_Manure-management,3B4d_Manure-goats,3B_Manure-management, +3B_Manure-management,3B1a_Cattle-dairy,3B_Manure-management, +3B_Manure-management,3B1b_Cattle-non-dairy,3B_Manure-management, +3D_Rice-Cultivation,,3I_Agriculture-other, +3D_Soil-emissions,,3I_Agriculture-other, +3E_Enteric-fermentation,,3I_Agriculture-other, +3I_Agriculture-other,3Da1_Inorganic-N-fertilizers,3I_Agriculture-other, +3I_Agriculture-other,3Dc_Other-farm,3I_Agriculture-other, +3I_Agriculture-other,3Df_Use-of-pesticides,3I_Agriculture-other, +3I_Agriculture-other,3F_Ag-res-on-field,3I_Agriculture-other, +5A_Solid-waste-disposal,5A_Solid-waste-disposal,5A_Solid-waste-disposal, +5C_Waste-incineration,5C_Incineration,5C_Waste-incineration, +5C_Waste-incineration,5C_Open-burning-commercial,5C_Waste-incineration, +5C_Waste-incineration,5C_Open-burning-dump,5C_Waste-incineration, +5C_Waste-incineration,5C_Open-burning-industrial,5C_Waste-incineration, +5C_Waste-incineration,5C_Open-burning-land-clearing,5C_Waste-incineration, +5C_Waste-incineration,5C_Open-burning-residential,5C_Waste-incineration, +5C_Waste-incineration,5C_Open-burning-yard-waste,5C_Waste-incineration, +5C_Waste-incineration,5C_Other-open-burning,5C_Waste-incineration, +,5B_Compost-biogas,5A_Solid-waste-disposal, +5D_Wastewater-handling,5D3_Wastewater-commertial,5D_Wastewater-handling, +5D_Wastewater-handling,5D1_Wastewater-domestic,5D_Wastewater-handling, +5D_Wastewater-handling,5D2_Wastewater-industrial,5D_Wastewater-handling, +5E_Other-waste-handling,5E_Other-waste,5E_Other-waste-handling, +6A_Other-in-total,6A_Other-commertial,5C_Waste-incineration, +6B_Other-not-in-total,,not in gcam, +7A_Fossil-fuel-fires,,not in gcam, +7BC_Indirect-N2O-non-agricultural-N,,not in gcam, +3F_Agricultural-residue-burning-on-fields,,not in gcam, +11B_Forest-fires,,not in gcam, +11B_Deforestation,,not in gcam, +11B_Grassland-fires,,not in gcam, diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_GCAM_sector_mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_GCAM_sector_mapping.csv new file mode 100644 index 0000000000..b3343dc6c1 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_GCAM_sector_mapping.csv @@ -0,0 +1,98 @@ +# File: CEDS_to_GCAM_sector_mapping.csv +# Title: mapping file for CEDS extended sectors and GCAM sectors +# Units: NA +# Source: NA - Mapping file +# Column types: cccccc +# ---------- +CEDS_sector_code,CEDS_Sector,IPCC_sector_code,IPCC_sector_description,GCAM_sector,Notes +11C,11C_Other-natural,,,,Not used in GCAM +1A1a,1A1a_Public-Electricity,1A1a,Public electricity and heat production,elec_heat, +1A1b,1A1b_Pet-refining,,,petroleum_refining,Calibrate GCAM-USA refining to use petroleum refining emissions new petroleum refining tag +1A1c,1A1c_Coke-ovens,,,industry_energy, +1A1g,1A1g_Other-energy-transf,,,industry_energy, +1A2,1A2a_Ind-Comb,,,industry_energy,"This is CHP, maybe use someday" +1A2,1A2_Industrial_fuel_comb_off_hwy,,,industry_energy, +1A2,1A2_Industrial_fuel_combustion,1A1bc,Other Energy Industries,industry_energy, +1A2c,1A2c_Chemicals,,,industry_energy, +1A2f,1A2f_Ind-Comb-Non-metalic-minerals,,,industry_energy, +1A2g,1A2g_Construction_and_Mining,1A2,Manufacturing Industries and Construction,industry_energy, +1A2g,1A2g_Industry-other,1A2,Manufacturing Industries and Construction,industry_energy, +1A3aii,1A3aii_Domestic-aviation,1A3a,Domestic aviation,trn_domestic air, +1A3b,1A3b_Road-noncomb,,,,Not used in GCAM- PM from tires; map to road transport according to fuel use +1A3bi,1A3bi_Road,,,Road,This is an aggregate CEDS sector created for GCAM-USA processing +1A3bii,1A3bii_Road-LDV,1A3b,Road transportation,Road-LDV, +1A3bii,1A3bii_Road-truck-Light-Commertial,1A3b,Road transportation,Road-truck-Light-Commertial, +1A3biii,1A3biii_Road-bus,1A3b,Road transportation,Road-bus, +1A3biii,1A3biii_Road-heavy-duty-trucks-buses,,,Road-truck-Long-haul, +1A3biii,1A3biii_Road-truck-heavy,,,Road-truck-Long-haul, +1A3biii,1A3biii_Road-truck-Long-haul,1A3b,Road transportation,Road-truck-Long-haul, +1A3biii,1A3biii_Road-truck-medium,,,Road-truck-Short-haul, +1A3biii,1A3biii_Road-truck-medium-heavy,,,Road-truck-Long-haul, +1A3biii,1A3biii_Road-truck-Short-haul,1A3b,Road transportation,Road-truck-Short-haul, +1A3biv,1A3biv_Road-mopeds-motorcycles,,,Road-LDV,Might need to add a category +1A3c,1A3c_Rail,1A3c,Rail transportation,trn_rail, +1A3dii,1A3dii_Domestic-navigation (shipping),1A3d,Inland navigation,trn_domestic ship, +1A3eii,1A3eii_Other-unspecified-transp,,,,Just PM- map to road transport according to fuel use +1A4ai,1A4ai_Commercial-institutional-stationary,1A4,Residential and other sectors,building_comm, +1A4aii,1A4aii_Commercial-institutional-mobile,,,industry_energy, +1A4bi,1A4bi_Residential-mobile,,,industry_energy, +1A4bi,1A4bi_Residential-stationary,1A4,Residential and other sectors,building_resid, +1A4c,1A4c_Agriculture-forestry-fishing,1A4,Residential and other sectors,industry_energy, +1A5,1A5_Recreational-Equipment-Land,1A4,Residential and other sectors,industry_energy, +1A5,1A5_Recreational-Equipment-Marine,1A4,Residential and other sectors,industry_energy, +1B2ai,1B2ai_Fugitive-petr-prod,1B2,Fugitive emissions from oil and gas,petroleum_production, +1B2aiv,1B2aiv_Fugitive-petr-refining,1B2,Fugitive emissions from oil and gas,petroleum_refining, +1B2av,1B2av_Fugitive-petr-distr,1B2,Fugitive emissions from oil and gas,petroleum_distribution, +1B2av,1B2av_Fugitive-petr-distr-marine,,,petroleum_distribution_marine,Consider putting somewhere else +1B2b,1B2b_Fugitive-NG-prod-distr,1B2,Fugitive emissions from oil and gas,NG_production_distribution, +2A1,2A1_Cement-production,2A7,Production of other minerals,cement, +2A2,2A2_Lime-production,2A7,Production of other minerals,industry_processes, +2A5b,2A5b_Construction-and-demolition,1A2,Manufacturing Industries and Construction,industry_processes, +2A6,2A6_Other-minerals,2A7,Production of other minerals,industry_processes, +2B,2B_Chemicals-other,2B,Production of chemicals,industry_processes, +2C,2C_Iron-steel-alloy,2C,Production of metals,industry_processes, +2C3,2C3_Aluminum-production,2C,Production of metals,industry_processes, +2C5,2C5_Lead-production,2C,Production of metals,industry_processes, +2C6,2C6_Zinc-production,2C,Production of metals,industry_processes, +2C7,2C7_Other-metal,2C,Production of metals,industry_processes, +2C7a,2C7a_Copper-production,2C,Production of metals,industry_processes, +2C7b,2C7b_Nickel-production,2C,Production of metals,industry_processes, +2D3a,2D3a_Domestic-solvent-use,3D,Solvent and other product use: other,solvents, +2D3c,2D3c_Asphalt-roofing,3D,Solvent and other product use: other,solvents, +2D3d,2D3d_Coating-application,3A,Solvent and other product use: paint,solvents, +2D3e,2D3e_Degreasing,3B,Solvent and other product use: degrease,solvents, +2D3f,2D3f_Dry-cleaning,3C,Solvent and other product use: chemicals,solvents, +2D3h,2D3h_Printing,3D,Solvent and other product use: other,solvents, +2D3i,2D3i_Other-solvent-use,3D,Solvent and other product use: other,solvents, +2H1,2H1_Pulp-and-paper,2D,Production of pulp/paper/food/drink,industry_processes, +2H2,2H2_Ethanol Production,,,ethanol_production,Should have as a subsector of refineries +2H2,2H2_Biodiesel Production,,,biodiesel_production, +2H2,2H2_Food-and-beverage,2D,Production of pulp/paper/food/drink,industry_processes, +2H3,2H3_Other-industrial-processes,,,industry_processes, +2I,2I_Wood-processing,,,industry_processes, +3B1a,3B1a_Cattle-dairy,2D,Production of pulp/paper/food/drink,Dairy, +3B1b,3B1b_Cattle-non-dairy,2D,Production of pulp/paper/food/drink,Beef, +3B2,3B2_Manure-sheep,4D2,Manure in pasture/range/paddock,SheepGoat, +3B3,3B3_Manure-swine,4D2,Manure in pasture/range/paddock,Pork, +3B4,3B4_Manure-other,4D2,Manure in pasture/range/paddock,Other_Farm, +3B4,3B4_Manure-poultry,4D2,Manure in pasture/range/paddock,Poultry, +3B4d,3B4d_Manure-goats,4D2,Manure in pasture/range/paddock,SheepGoat, +3Da1,3Da1_Inorganic-N-fertilizers,4D3,Indirect N2O from agriculture,Other_Farm, +3Dc,3Dc_Other-farm,4D2,Manure in pasture/range/paddock,Other_Farm, +3Df,3Df_Use-of-pesticides,,,industry_processes, +3F,3F_Ag-res-on-field,4F,Agricultural waste burning,AWB, +5A,5A_Solid-waste-disposal,6A,Solid waste disposal on land,landfills, +5B,5B_Compost-biogas,,,Other_Farm, +5C,5C_Incineration,6C,Waste incineration,waste_incineration, +5C,5C_Open-burning-commercial,,,landfills, +5C,5C_Open-burning-dump,,,landfills, +5C,5C_Open-burning-industrial,,,landfills, +5C,5C_Open-burning-land-clearing,,,,Part of AgLU emissions so we don't use this +5C,5C_Open-burning-residential,,,waste_incineration,map to waste_incineration for BYU +5C,5C_Open-burning-yard-waste,,,waste_incineration,map to waste_incineration for BYU +5C,5C_Other-open-burning,,,landfills, +5D1,5D1_Wastewater-domestic,,,wastewater,These have air pollutant emissions. Really should go to wastewater in BYU +5D2,5D2_Wastewater-industrial,,,industry_processes, +5D3,5D3_Wastewater-commertial,,,industry_processes, +5E,5E_Other-waste,6D,Other waste handling,landfills, +6A,6A_Other-commertial,1A4,Residential and other sectors,building_comm, diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_USEPA_Tier1_Mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_USEPA_Tier1_Mapping.csv new file mode 100644 index 0000000000..b89e113427 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/CEDS_to_USEPA_Tier1_Mapping.csv @@ -0,0 +1,109 @@ +# File: CEDS_to_USEPA_Tier1_Mapping.csv +# Title: mapping file for EPA Tier 1 description and CEDS extended sectors +# Units: NA +# Source: NA - Mapping file +# Column types: cc +# ---------- +tier1_description,CEDS_Sector +CHEMICAL & ALLIED PRODUCT MFG,2B_Chemicals-other +DOMESTIC SHIPPING,1A3dii_Domestic-navigation (shipping) +FUEL COMB. ELEC. UTIL.,1A1a_Public-Electricity +FUEL COMB. INDUSTRIAL, +FUEL COMB. OTHER, +HIGHWAY VEHICLES, +METALS PROCESSING, +MISCELLANEOUS, +OFF-HIGHWAY, +OTHER INDUSTRIAL PROCESSES, +OTHER NATURAL,11C_Other-natural +PETROLEUM & RELATED INDUSTRIES, +SOLVENT UTILIZATION, +STORAGE & TRANSPORT, +WASTE DISPOSAL & RECYCLING, +, +OFF-HIGHWAY,1A3aii_Domestic-aviation +FUEL COMB. INDUSTRIAL,1A2a_Ind-Comb +FUEL COMB. INDUSTRIAL,1A1c_Coke-ovens +FUEL COMB. INDUSTRIAL,1A2_Industrial_fuel_combustion +FUEL COMB. INDUSTRIAL,1A2c_Chemicals +FUEL COMB. INDUSTRIAL,1A2f_Ind-Comb-Non-metalic-minerals +FUEL COMB. INDUSTRIAL,1A2g_Industry-other +FUEL COMB. INDUSTRIAL,1A1b_Pet-refining +FUEL COMB. INDUSTRIAL,1A1g_Other-energy-transf +FUEL COMB. OTHER,1A4ai_Commercial-institutional-stationary +OFF-HIGHWAY,1A4aii_Commercial-institutional-mobile +OFF-HIGHWAY,1A4bi_Residential-mobile +FUEL COMB. OTHER,1A4bi_Residential-stationary +HIGHWAY VEHICLES,1A3b_Road-noncomb +HIGHWAY VEHICLES,1A3bii_Road-LDV +HIGHWAY VEHICLES,1A3bii_Road-truck-Light-Commertial +HIGHWAY VEHICLES,1A3biii_Road-bus +HIGHWAY VEHICLES,1A3biii_Road-truck-Long-haul +HIGHWAY VEHICLES,1A3biii_Road-truck-Short-haul +HIGHWAY VEHICLES,1A3biii_Road-heavy-duty-trucks-buses +HIGHWAY VEHICLES,1A3biii_Road-truck-heavy +HIGHWAY VEHICLES,1A3biii_Road-truck-medium +HIGHWAY VEHICLES,1A3biii_Road-truck-medium-heavy +HIGHWAY VEHICLES,1A3biv_Road-mopeds-motorcycles +METALS PROCESSING,2C_Iron-steel-alloy +METALS PROCESSING,2C3_Aluminum-production +METALS PROCESSING,2C5_Lead-production +METALS PROCESSING,2C6_Zinc-production +METALS PROCESSING,2C7_Other-metal +METALS PROCESSING,2C7a_Copper-production +METALS PROCESSING,2C7b_Nickel-production +MISCELLANEOUS,3B1a_Cattle-dairy +MISCELLANEOUS,3B1b_Cattle-non-dairy +MISCELLANEOUS,3B2_Manure-sheep +MISCELLANEOUS,3B3_Manure-swine +MISCELLANEOUS,3B4_Manure-other +MISCELLANEOUS,3B4_Manure-poultry +MISCELLANEOUS,3B4d_Manure-goats +MISCELLANEOUS,3Da1_Inorganic-N-fertilizers +MISCELLANEOUS,3Dc_Other-farm +MISCELLANEOUS,3Df_Use-of-pesticides +MISCELLANEOUS,3F_Ag-res-on-field +OFF-HIGHWAY,1A2_Industrial_fuel_comb_off_hwy +OFF-HIGHWAY,1A2g_Construction_and_Mining +OFF-HIGHWAY,1A3c_Rail +OFF-HIGHWAY,1A3eii_Other-unspecified-transp +OFF-HIGHWAY,1A4c_Agriculture-forestry-fishing +OFF-HIGHWAY,1A5_Recreational-Equipment-Land +OFF-HIGHWAY,1A5_Recreational-Equipment-Marine +OTHER INDUSTRIAL PROCESSES,2A5b_Construction-and-demolition +OTHER INDUSTRIAL PROCESSES,2A1_Cement-production +OTHER INDUSTRIAL PROCESSES,2A2_Lime-production +OTHER INDUSTRIAL PROCESSES,2A6_Other-minerals +OTHER INDUSTRIAL PROCESSES,2H1_Pulp-and-paper +OTHER INDUSTRIAL PROCESSES,2H2_Biodiesel Production +OTHER INDUSTRIAL PROCESSES,2H2_Ethanol Production +OTHER INDUSTRIAL PROCESSES,2H2_Food-and-beverage +OTHER INDUSTRIAL PROCESSES,2H3_Other-industrial-processes +PETROLEUM & RELATED INDUSTRIES,1B2ai_Fugitive-petr-prod +PETROLEUM & RELATED INDUSTRIES,1B2aiv_Fugitive-petr-refining +PETROLEUM & RELATED INDUSTRIES,1B2av_Fugitive-petr-distr +PETROLEUM & RELATED INDUSTRIES,1B2av_Fugitive-petr-distr-marine +PETROLEUM & RELATED INDUSTRIES,2I_Wood-processing +PETROLEUM & RELATED INDUSTRIES,6A_Other-commertial +SOLVENT UTILIZATION,2D3a_Domestic-solvent-use +SOLVENT UTILIZATION,2D3c_Asphalt-roofing +SOLVENT UTILIZATION,2D3d_Coating-application +SOLVENT UTILIZATION,2D3e_Degreasing +SOLVENT UTILIZATION,2D3f_Dry-cleaning +SOLVENT UTILIZATION,2D3h_Printing +SOLVENT UTILIZATION,2D3i_Other-solvent-use +PETROLEUM & RELATED INDUSTRIES,1B2b_Fugitive-NG-prod-distr +WASTE DISPOSAL & RECYCLING,5A_Solid-waste-disposal +WASTE DISPOSAL & RECYCLING,5B_Compost-biogas +WASTE DISPOSAL & RECYCLING,5D1_Wastewater-domestic +WASTE DISPOSAL & RECYCLING,5D2_Wastewater-industrial +WASTE DISPOSAL & RECYCLING,5D3_Wastewater-commertial +WASTE DISPOSAL & RECYCLING,5C_Incineration +WASTE DISPOSAL & RECYCLING,5C_Open-burning-commercial +WASTE DISPOSAL & RECYCLING,5C_Open-burning-dump +WASTE DISPOSAL & RECYCLING,5C_Open-burning-industrial +WASTE DISPOSAL & RECYCLING,5C_Open-burning-land-clearing +WASTE DISPOSAL & RECYCLING,5C_Open-burning-residential +WASTE DISPOSAL & RECYCLING,5C_Open-burning-yard-waste +WASTE DISPOSAL & RECYCLING,5C_Other-open-burning +WASTE DISPOSAL & RECYCLING,5E_Other-waste diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_resid_wood_furnace_PM_EF_future_factors.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_resid_wood_furnace_PM_EF_future_factors.csv new file mode 100644 index 0000000000..19099b8fe5 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_resid_wood_furnace_PM_EF_future_factors.csv @@ -0,0 +1,14 @@ +# File: EPA_resid_wood_furnace_PM_EF_future_factors.csv +# Title: Residential wood furnace correction factors for EF after 2015 +# Source: Dan Loughlin (EPA)'s calculations based on USA EPA 40 CFR Part 60 and Abt Associates. (2015). Nonpoint Source Emissions Inventory Tools - Residential Wood Combustion Tool. Available at: http://envr.abtassociates.com/nonpoint_nei/index.html [accessed Aug 2019] +# Comments: EF linearly decreased 33% from 2010 to 2030 adjusted to be calculated based off of the current base year 2015. +# Units: Unitless +# Column types: cccin +# ---------- +supplysector,stub.technology,Non.CO2,year,factor +resid heating,wood furnace,PM2.5,2020,0.91 +resid heating,wood furnace,PM10,2020,0.91 +resid heating,wood furnace,PM2.5,2025,0.82 +resid heating,wood furnace,PM10,2025,0.82 +resid heating,wood furnace,PM2.5,2030,0.73 +resid heating,wood furnace,PM10,2030,0.73 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ.csv new file mode 100644 index 0000000000..e0af5037f9 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ.csv @@ -0,0 +1,144 @@ +# File: EPA_state_egu_emission_factors_ktPJ.csv +# Title: Electric Generating Unit (EGU) emission factors for US states for plants built after 2015 +# Source: EPA's Power Sector Modeling Platform v5.14 Base Case scenario. https://www.epa.gov/airmarkets/power-sector-modeling-platform-v514#results. +# Comments: State-level emission data were obtained from the 2017 & 2018 and 2025 flat files that are used with EPA emissions and air quality modeling applications +# Units: kilotonne per PJ fuel input +# Column types: ccnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn +# ---------- +state_name,fuel,2015_NOx,2017_NOx,2018_NOx,2020_NOx,2025_NOx,2030_NOx,2040_NOx,2050_NOx,2015_SO2,2017_SO2,2018_SO2,2020_SO2,2025_SO2,2030_SO2,2040_SO2,2050_SO2,2015_PM10,2017_PM10,2018_PM10,2020_PM10,2025_PM10,2030_PM10,2040_PM10,2050_PM10,2015_PM2.5,2017_PM2.5,2018_PM2.5,2020_PM2.5,2025_PM2.5,2030_PM2.5,2040_PM2.5,2050_PM2.5,2015_NMVOC,2017_NMVOC,2018_NMVOC,2020_NMVOC,2025_NMVOC,2030_NMVOC,2040_NMVOC,2050_NMVOC,2015_CO,2017_CO,2018_CO,2020_CO,2025_CO,2030_CO,2040_CO,2050_CO,2015_NH3,2017_NH3,2018_NH3,2020_NH3,2025_NH3,2030_NH3,2040_NH3,2050_NH3,2015_BC,2016_BC,2018_BC,2020_BC,2025_BC,2030_BC,2040_BC,2050_BC,2015_OC,2016_OC,2018_OC,2020_OC,2025_OC,2030_OC,2040_OC,2050_OC +Alabama,biomass,0.096673723,0.096673723,0.096673723,0.096904022,0.097479772,0.097479772,0.097479772,0.097479772,0.359175919,0.359175919,0.359175919,0.358891982,0.358182138,0.358182138,0.358182138,0.358182138,0.008699322,0.008699322,0.008699322,0.008704367,0.008716981,0.008716981,0.008716981,0.008716981,0.008638704,0.008638704,0.008638704,0.00864398,0.008657169,0.008657169,0.008657169,0.008657169,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000431935,0.000431935,0.000431935,0.000432199,0.000432858,0.000432858,0.000432858,0.000432858,0.001727741,0.001727741,0.001727741,0.001728796,0.001731434,0.001731434,0.001731434,0.001731434 +Alabama,coal,0.05675626,0.05675626,0.05675626,0.056919668,0.057328188,0.057328188,0.057328188,0.057328188,0.9395637,0.9395637,0.9395637,0.953611314,0.988729361,0.988729361,0.988729361,0.988729361,0.013705359,0.013705359,0.013705359,0.013715608,0.013741232,0.013741232,0.013741232,0.013741232,0.010379307,0.010379307,0.010379307,0.010384546,0.010397642,0.010397642,0.010397642,0.010397642,0.001408272,0.001408272,0.001408272,0.001407933,0.001407087,0.001407087,0.001407087,0.001407087,0.011735597,0.011735597,0.011735597,0.011732777,0.011725727,0.011725727,0.011725727,0.011725727,0.000704136,0.000704136,0.000704136,0.000703967,0.000703544,0.000703544,0.000703544,0.000703544,6.23E-05,6.23E-05,6.23E-05,6.23E-05,6.24E-05,6.24E-05,6.24E-05,6.24E-05,0,0,0,0,0,0,0,0 +Alabama,gas,0.005436964,0.005436964,0.005436964,0.005812969,0.006752981,0.006752981,0.006752981,0.006752981,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146952,0.000147094,0.000147094,0.000147094,0.000147094,9.00E-05,9.00E-05,9.00E-05,9.01E-05,9.03E-05,9.03E-05,9.03E-05,9.03E-05,0.000971883,0.000971883,0.000971883,0.000972782,0.000975029,0.000975029,0.000975029,0.000975029,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035088,0.003032867,0.003032867,0.003032867,0.003032867,5.40E-06,5.40E-06,5.40E-06,5.41E-06,5.42E-06,5.42E-06,5.42E-06,5.42E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.51E-05,4.51E-05,4.51E-05,4.51E-05 +Arizona,biomass,0.296238235,0.156594684,0.086772908,0.086772908,0.086772908,0.086772908,0.086772908,0.086772908,0.295384696,0.295384696,0.295384696,0.295384689,0.295384684,0.295384684,0.295384684,0.295384684,0.009307627,0.009307627,0.009307627,0.009307627,0.009307627,0.009307627,0.009307627,0.009307627,0.009210191,0.009210191,0.009210191,0.009210191,0.009210191,0.009210191,0.009210191,0.009210191,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.00046051,0.00046051,0.00046051,0.00046051,0.00046051,0.00046051,0.00046051,0.00046051,0.001842038,0.001842038,0.001842038,0.001842038,0.001842038,0.001842038,0.001842038,0.001842038 +Arizona,coal,0.166782176,0.088999272,0.05010782,0.05010782,0.05010782,0.05010782,0.05010782,0.05010782,0.692113394,0.692113394,0.692113394,0.692113394,0.692113394,0.692113394,0.692113394,0.692113394,0.023783634,0.023783634,0.023783634,0.023783634,0.023783634,0.023783634,0.023783634,0.023783634,0.016109486,0.016109486,0.016109486,0.016109486,0.016109486,0.016109486,0.016109486,0.016109486,0.001492309,0.001492309,0.001492309,0.001492309,0.001492309,0.001492309,0.001492309,0.001492309,0.012435906,0.012435906,0.012435906,0.012435906,0.012435906,0.012435906,0.012435906,0.012435906,0.000746154,0.000746154,0.000746154,0.000746154,0.000746154,0.000746154,0.000746154,0.000746154,9.67E-05,9.67E-05,9.67E-05,9.67E-05,9.67E-05,9.67E-05,9.67E-05,9.67E-05,0,0,0,0,0,0,0,0 +Arizona,gas,0.015841415,0.015841415,0.015841415,0.015569587,0.014890016,0.014890016,0.014890016,0.014890016,,,,,,,,,0.000148747,0.000148747,0.000148747,0.000148218,0.000146895,0.000146895,0.000146895,0.000146895,9.21E-05,9.21E-05,9.21E-05,9.15E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.00100116,0.00100116,0.00100116,0.000992795,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003007044,0.003007044,0.003007044,0.00301531,0.003035976,0.003035976,0.003035976,0.003035976,5.53E-06,5.53E-06,5.53E-06,5.49E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.61E-05,4.61E-05,4.61E-05,4.58E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Arkansas,biomass,0.112188339,0.112188339,0.112188339,0.097276439,0.059996689,0.059996689,0.059996689,0.059996689,0.317548435,0.317548435,0.317548435,0.349653242,0.273317764,0.273317764,0.273317764,0.273317764,0.005578979,0.005578979,0.005578979,0.005641097,0.005796391,0.005796391,0.005796391,0.005796391,0.005538394,0.005538394,0.005538394,0.005576114,0.005670413,0.005670413,0.005670413,0.005670413,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.00027692,0.00027692,0.00027692,0.000278806,0.000283521,0.000283521,0.000283521,0.000283521,0.001107679,0.001107679,0.001107679,0.001115223,0.001134083,0.001134083,0.001134083,0.001134083 +Arkansas,coal,0.060986699,0.060986699,0.060986699,0.061049527,0.061206599,0.061206599,0.061206599,0.061206599,0.659274787,0.659274787,0.659274787,0.659388899,0.659684952,0.659684952,0.659684952,0.659684952,0.005869162,0.005869162,0.005869162,0.005888493,0.005936823,0.005936823,0.005936823,0.005936823,0.005359971,0.005359971,0.005359971,0.005374166,0.005409653,0.005409653,0.005409653,0.005409653,0.001542514,0.001542514,0.001542514,0.001543469,0.001545856,0.001545856,0.001545856,0.001545856,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,3.22E-05,3.22E-05,3.22E-05,3.22E-05,3.25E-05,3.25E-05,3.25E-05,3.25E-05,0,0,0,0,0,0,0,0 +Arkansas,gas,0.014123608,0.013594726,0.013330284,0.013668644,0.014514543,0.014514543,0.014514543,0.014514543,,,,,,,,,0.000150047,0.000149391,0.000149063,0.000149031,0.000148952,0.000148952,0.000148952,0.000148952,9.36E-05,9.29E-05,9.25E-05,9.25E-05,9.24E-05,9.24E-05,9.24E-05,9.24E-05,0.001021726,0.001011348,0.001006159,0.001005661,0.001004415,0.001004415,0.001004415,0.001004415,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.00298672,0.002996975,0.003002103,0.003002595,0.003003827,0.003003827,0.003003827,0.003003827,5.62E-06,5.57E-06,5.55E-06,5.55E-06,5.54E-06,5.54E-06,5.54E-06,5.54E-06,4.68E-05,4.64E-05,4.63E-05,4.62E-05,4.62E-05,4.62E-05,4.62E-05,4.62E-05 +California,biomass,0.119122253,0.119122253,0.119122253,0.119113137,0.119090347,0.119090347,0.119090347,0.119090347,0.443714378,0.443714378,0.443714378,0.418796855,0.392879295,0.392879295,0.392879295,0.392879295,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +California,coal,0.116731072,0.116731072,0.116731072,0.116731072,0.116731072,0.116731072,0.116731072,0.116731072,0.138347661,0.138347661,0.138347661,0.138347661,0.138347661,0.138347661,0.138347661,0.138347661,0.014815119,0.014815119,0.014815119,0.014815119,0.014815119,0.014815119,0.014815119,0.014815119,0.011676779,0.011676779,0.011676779,0.011676779,0.011676779,0.011676779,0.011676779,0.011676779,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,7.01E-05,7.01E-05,7.01E-05,7.01E-05,7.01E-05,7.01E-05,7.01E-05,7.01E-05,0,0,0,0,0,0,0,0 +California,gas,0.004297363,0.00429651,0.004296083,0.004304084,0.004324087,0.004324087,0.004324087,0.004324087,0.225389684,0.226114233,0.226476581,0.197389114,0.184242774,0.184242774,0.184242774,0.184242774,0.000149319,0.000149284,0.000149267,0.000148615,0.000146985,0.000146985,0.000146985,0.000146985,9.28E-05,9.28E-05,9.27E-05,9.20E-05,9.01E-05,9.01E-05,9.01E-05,9.01E-05,0.001010211,0.001009662,0.001009388,0.00099908,0.000973312,0.000973312,0.000973312,0.000973312,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002998099,0.002998641,0.002998913,0.003009099,0.003034564,0.003034564,0.003034564,0.003034564,5.57E-06,5.57E-06,5.56E-06,5.52E-06,5.41E-06,5.41E-06,5.41E-06,5.41E-06,4.64E-05,4.64E-05,4.64E-05,4.60E-05,4.51E-05,4.51E-05,4.51E-05,4.51E-05 +Colorado,biomass,0.020202351,0.020202351,0.020202351,0.02275745,0.0291452,0.0291452,0.0291452,0.0291452,0.35572663,0.35572663,0.35572663,0.351394991,0.336171399,0.336171399,0.336171399,0.336171399,0.009361567,0.009361567,0.009361567,0.00936443,0.009371586,0.009371586,0.009371586,0.009371586,0.009135936,0.009135936,0.009135936,0.00914645,0.009172734,0.009172734,0.009172734,0.009172734,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000456797,0.000456797,0.000456797,0.000457322,0.000458637,0.000458637,0.000458637,0.000458637,0.001827187,0.001827187,0.001827187,0.00182929,0.001834547,0.001834547,0.001834547,0.001834547 +Colorado,coal,0.098158732,0.080934562,0.072322478,0.070039249,0.064331178,0.064331178,0.064331178,0.064331178,0.411555236,0.411183629,0.419978419,0.419441695,0.418998856,0.418998856,0.418998856,0.418998856,0.010528402,0.00998461,0.009712714,0.009709469,0.009701358,0.009701358,0.009701358,0.009701358,0.008955099,0.008417995,0.008149443,0.008147031,0.008141,0.008141,0.008141,0.008141,0.001373038,0.001418679,0.0014415,0.001441657,0.001442051,0.001442051,0.001442051,0.001442051,0.017992509,0.020358443,0.02154141,0.021300994,0.020699953,0.020699953,0.020699953,0.020699953,0.000688381,0.000711767,0.00072346,0.00072347,0.000723494,0.000723494,0.000723494,0.000723494,5.37E-05,5.05E-05,4.89E-05,4.89E-05,4.88E-05,4.88E-05,4.88E-05,4.88E-05,0,0,0,0,0,0,0,0 +Colorado,gas,0.025525373,0.025525373,0.025525373,0.025746248,0.026298433,0.026298433,0.026298433,0.026298433,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Connecticut,biomass,0.00947817,0.00947817,0.00947817,0.00947817,0.009478169,0.009478169,0.009478169,0.009478169,0.379126843,0.379126843,0.379126843,0.379126843,0.379126843,0.379126843,0.379126843,0.379126843,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Connecticut,gas,0.008091879,0.008091879,0.008091879,0.007990256,0.007736197,0.007736197,0.007736197,0.007736197,,,,,,,,,0.000147632,0.000147632,0.000147632,0.000147422,0.000146895,0.000146895,0.000146895,0.000146895,9.09E-05,9.09E-05,9.09E-05,9.06E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000983539,0.000983539,0.000983539,0.000980209,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003024457,0.003024457,0.003024457,0.003027748,0.003035976,0.003035976,0.003035976,0.003035976,5.45E-06,5.45E-06,5.45E-06,5.44E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.54E-05,4.54E-05,4.54E-05,4.53E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Delaware,gas,0.023007266,0.023007266,0.023007266,0.023101753,0.023337971,0.023337971,0.023337971,0.023337971,,,,,,,,,0.00015093,0.00015093,0.00015093,0.000150914,0.000150876,0.000150876,0.000150876,0.000150876,9.46E-05,9.46E-05,9.46E-05,9.46E-05,9.46E-05,9.46E-05,9.46E-05,9.46E-05,0.00103568,0.00103568,0.00103568,0.001035438,0.001034833,0.001034833,0.001034833,0.001034833,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002972929,0.002972929,0.002972929,0.002973169,0.002973767,0.002973767,0.002973767,0.002973767,5.68E-06,5.68E-06,5.68E-06,5.68E-06,5.67E-06,5.67E-06,5.67E-06,5.67E-06,4.73E-05,4.73E-05,4.73E-05,4.73E-05,4.73E-05,4.73E-05,4.73E-05,4.73E-05 +District of Columbia,gas,0.017822096,0.017822096,0.017822096,0.017841307,0.017889334,0.017889334,0.017889334,0.017889334,2.23E-06,2.23E-06,2.23E-06,2.33E-06,2.48E-06,2.48E-06,2.48E-06,2.48E-06,0.000147086,0.000147086,0.000147086,0.000147031,0.000146895,0.000146895,0.000146895,0.000146895,9.03E-05,9.03E-05,9.03E-05,9.02E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000974899,0.000974899,0.000974899,0.000974038,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003032995,0.003032995,0.003032995,0.003033847,0.003035976,0.003035976,0.003035976,0.003035976,5.42E-06,5.42E-06,5.42E-06,5.41E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.51E-05,4.51E-05,4.51E-05,4.51E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Florida,biomass,0.12389068,0.12389068,0.12389068,0.123272343,0.121726501,0.121726501,0.121726501,0.121726501,0.554411355,0.554411355,0.554411355,0.553342234,0.556717429,0.556717429,0.556717429,0.556717429,0.009433774,0.009433774,0.009433774,0.009427716,0.009412569,0.009412569,0.009412569,0.009412569,0.009270488,0.009270488,0.009270488,0.009265127,0.009251725,0.009251725,0.009251725,0.009251725,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000463524,0.000463524,0.000463524,0.000463256,0.000462586,0.000462586,0.000462586,0.000462586,0.001854098,0.001854098,0.001854098,0.001853025,0.001850345,0.001850345,0.001850345,0.001850345 +Florida,coal,0.071054172,0.071054172,0.071054172,0.071083789,0.071157833,0.071157833,0.071157833,0.071157833,0.135545298,0.135545298,0.135545298,0.133393932,0.128274984,0.128274984,0.128274984,0.128274984,0.025723046,0.025723046,0.025723046,0.02570674,0.025665976,0.025665976,0.025665976,0.025665976,0.016283581,0.016283581,0.016283581,0.016278832,0.016266961,0.016266961,0.016266961,0.016266961,0.001150359,0.001150359,0.001150359,0.001151109,0.001152983,0.001152983,0.001152983,0.001152983,0.020833883,0.020833883,0.020833883,0.020930037,0.021170423,0.021170423,0.021170423,0.021170423,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,9.77E-05,9.77E-05,9.77E-05,9.77E-05,9.76E-05,9.76E-05,9.76E-05,9.76E-05,0,0,0,0,0,0,0,0 +Florida,gas,0.015026784,0.015026784,0.015026784,0.014701928,0.013889788,0.013889788,0.013889788,0.013889788,,,,,,,,,0.000153858,0.000153858,0.000153858,0.000153368,0.000152144,0.000152144,0.000152144,0.000152144,9.80E-05,9.80E-05,9.80E-05,9.74E-05,9.60E-05,9.60E-05,9.60E-05,9.60E-05,0.001081989,0.001081989,0.001081989,0.001074242,0.001054876,0.001054876,0.001054876,0.001054876,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002927166,0.002927166,0.002927166,0.002934821,0.002953959,0.002953959,0.002953959,0.002953959,5.88E-06,5.88E-06,5.88E-06,5.85E-06,5.76E-06,5.76E-06,5.76E-06,5.76E-06,4.90E-05,4.90E-05,4.90E-05,4.87E-05,4.80E-05,4.80E-05,4.80E-05,4.80E-05 +Florida,oil,0.049147746,0.049147746,0.049147746,0.07575953,0.142288989,0.142288989,0.142288989,0.142288989,,,,,,,,,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535 +Georgia,biomass,0.029083795,0.029083795,0.029083795,0.026140691,0.018782932,0.018782932,0.018782932,0.018782932,0.333795259,0.333795259,0.333795259,0.34113846,0.359496483,0.359496483,0.359496483,0.359496483,0.008873433,0.008873433,0.008873433,0.009036734,0.009444985,0.009444985,0.009444985,0.009444985,0.008741566,0.008741566,0.008741566,0.008885285,0.009244581,0.009244581,0.009244581,0.009244581,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000437078,0.000437078,0.000437078,0.000444264,0.000462229,0.000462229,0.000462229,0.000462229,0.001748313,0.001748313,0.001748313,0.001777057,0.001848916,0.001848916,0.001848916,0.001848916 +Georgia,coal,0.048160398,0.048160398,0.048160398,0.048260434,0.048510525,0.048510525,0.048510525,0.048510525,0.556298747,0.556298747,0.556298747,0.551365298,0.539313693,0.539313693,0.539313693,0.539313693,0.015318224,0.015318224,0.015318224,0.01537325,0.015510814,0.015510814,0.015510814,0.015510814,0.012547272,0.012547272,0.012547272,0.012587887,0.012689426,0.012689426,0.012689426,0.012689426,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,7.53E-05,7.53E-05,7.53E-05,7.55E-05,7.61E-05,7.61E-05,7.61E-05,7.61E-05,0,0,0,0,0,0,0,0 +Georgia,gas,0.005620007,0.005620007,0.005620007,0.00687146,0.010000093,0.010000093,0.010000093,0.010000093,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000147937,0.000150543,0.000150543,0.000150543,0.000150543,9.00E-05,9.00E-05,9.00E-05,9.12E-05,9.42E-05,9.42E-05,9.42E-05,9.42E-05,0.000971883,0.000971883,0.000971883,0.000988362,0.001029562,0.001029562,0.001029562,0.001029562,0.038875307,0.038875307,0.038875307,0.038584486,0.037857436,0.037857436,0.037857436,0.037857436,0.003035976,0.003035976,0.003035976,0.00301969,0.002978976,0.002978976,0.002978976,0.002978976,5.40E-06,5.40E-06,5.40E-06,5.47E-06,5.65E-06,5.65E-06,5.65E-06,5.65E-06,4.50E-05,4.50E-05,4.50E-05,4.56E-05,4.71E-05,4.71E-05,4.71E-05,4.71E-05 +Idaho,biomass,0.160761948,0.160761948,0.160761948,0.160139991,0.158585098,0.158585098,0.158585098,0.158585098,0.569696486,0.569696486,0.569696486,0.558799366,0.553373658,0.553373658,0.553373658,0.553373658,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Idaho,gas,0.011111266,0.011111266,0.011111266,0.012483105,0.015912701,0.015912701,0.015912701,0.015912701,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Illinois,biomass,0.02723101,0.02723101,0.02723101,0.028928644,0.033172729,0.033172729,0.033172729,0.033172729,0.297687957,0.297687957,0.297687957,0.351421293,0.375798536,0.375798536,0.375798536,0.375798536,0.009470182,0.009470182,0.009470182,0.009548054,0.009742735,0.009742735,0.009742735,0.009742735,0.009343612,0.009343612,0.009343612,0.009432699,0.009655417,0.009655417,0.009655417,0.009655417,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000467181,0.000467181,0.000467181,0.000471635,0.000482771,0.000482771,0.000482771,0.000482771,0.001868722,0.001868722,0.001868722,0.00188654,0.001931083,0.001931083,0.001931083,0.001931083 +Illinois,coal,0.036274162,0.036274162,0.036274162,0.036221139,0.036088582,0.036088582,0.036088582,0.036088582,0.572688986,0.572688986,0.572688986,0.579127867,0.595425288,0.595425288,0.595425288,0.595425288,0.009149835,0.009149835,0.009149835,0.009179026,0.009252003,0.009252003,0.009252003,0.009252003,0.007780564,0.007780564,0.007780564,0.007803328,0.007860239,0.007860239,0.007860239,0.007860239,0.002073742,0.002073742,0.002073742,0.002073829,0.002074047,0.002074047,0.002074047,0.002074047,0.016853719,0.016853719,0.016853719,0.016869449,0.016908773,0.016908773,0.016908773,0.016908773,0.000737913,0.000737913,0.000737913,0.000737589,0.00073678,0.00073678,0.00073678,0.00073678,4.67E-05,4.67E-05,4.67E-05,4.68E-05,4.72E-05,4.72E-05,4.72E-05,4.72E-05,0,0,0,0,0,0,0,0 +Illinois,gas,0.024549317,0.024549317,0.024549317,0.025902636,0.029285935,0.029285935,0.029285935,0.029285935,0.621434643,0.621434643,0.621434643,0.677959227,0.576927695,0.576927695,0.576927695,0.576927695,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Indiana,biomass,0.058484387,0.058484387,0.058484387,0.058564275,0.058763995,0.058763995,0.058763995,0.058763995,0.325469284,0.325469284,0.325469284,0.324888141,0.323591174,0.323591174,0.323591174,0.323591174,0.00881624,0.00881624,0.00881624,0.008856667,0.008957733,0.008957733,0.008957733,0.008957733,0.008803441,0.008803441,0.008803441,0.008844027,0.008945492,0.008945492,0.008945492,0.008945492,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000440172,0.000440172,0.000440172,0.000442201,0.000447275,0.000447275,0.000447275,0.000447275,0.001760688,0.001760688,0.001760688,0.001768805,0.001789098,0.001789098,0.001789098,0.001789098 +Indiana,coal,0.087541852,0.087541852,0.087541852,0.087265833,0.086575785,0.086575785,0.086575785,0.086575785,0.197964667,0.197964667,0.197964667,0.111695629,0.116665863,0.116665863,0.116665863,0.116665863,0.021661908,0.021661908,0.021661908,0.021726706,0.021888702,0.021888702,0.021888702,0.021888702,0.015023018,0.015023018,0.015023018,0.015046197,0.015104145,0.015104145,0.015104145,0.015104145,0.001276237,0.001276237,0.001276237,0.001275329,0.00127306,0.00127306,0.00127306,0.00127306,0.010852149,0.010852149,0.010852149,0.010847763,0.010836798,0.010836798,0.010836798,0.010836798,0.000620398,0.000620398,0.000620398,0.000620318,0.000620116,0.000620116,0.000620116,0.000620116,9.01E-05,9.01E-05,9.01E-05,9.03E-05,9.06E-05,9.06E-05,9.06E-05,9.06E-05,0,0,0,0,0,0,0,0 +Indiana,gas,0.012756451,0.012756451,0.012756451,0.012286913,0.011113067,0.011113067,0.011113067,0.011113067,,,,,,,,,0.000147762,0.000147762,0.000147762,0.000147515,0.000146895,0.000146895,0.000146895,0.000146895,9.10E-05,9.10E-05,9.10E-05,9.07E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000985597,0.000985597,0.000985597,0.000981678,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003022424,0.003022424,0.003022424,0.003026296,0.003035976,0.003035976,0.003035976,0.003035976,5.46E-06,5.46E-06,5.46E-06,5.44E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.55E-05,4.55E-05,4.55E-05,4.54E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Iowa,biomass,0.085557097,0.085557097,0.085557097,0.085724992,0.086144731,0.086144731,0.086144731,0.086144731,0.375127946,0.375127946,0.375127946,0.37493783,0.374462539,0.374462539,0.374462539,0.374462539,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Iowa,coal,0.066931315,0.066931315,0.066931315,0.066925752,0.066911846,0.066911846,0.066911846,0.066911846,0.482185966,0.482185966,0.482185966,0.489786286,0.478153679,0.478153679,0.478153679,0.478153679,0.00897078,0.00897078,0.00897078,0.008973903,0.008981713,0.008981713,0.008981713,0.008981713,0.00742518,0.00742518,0.00742518,0.007426006,0.007428071,0.007428071,0.007428071,0.007428071,0.001591053,0.001591053,0.001591053,0.001591271,0.001591816,0.001591816,0.001591816,0.001591816,0.017009119,0.017009119,0.017009119,0.01699529,0.016960719,0.016960719,0.016960719,0.016960719,0.000797483,0.000797483,0.000797483,0.000797574,0.000797801,0.000797801,0.000797801,0.000797801,4.46E-05,4.46E-05,4.46E-05,4.46E-05,4.46E-05,4.46E-05,4.46E-05,4.46E-05,0,0,0,0,0,0,0,0 +Iowa,gas,0.025966014,0.024214746,0.023339111,0.025279343,0.030129924,0.030129924,0.030129924,0.030129924,,,,,,,,,0.000148742,0.000147511,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.21E-05,9.07E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.001001093,0.000981619,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.00300711,0.003026354,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.53E-06,5.44E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.61E-05,4.54E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Kansas,biomass,0.009478171,0.009478171,0.009478171,0.009478171,0.009478171,0.009478171,0.009478171,0.009478171,0.379126771,0.379126771,0.379126771,0.379126771,0.379126771,0.379126771,0.379126771,0.379126771,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Kansas,coal,0.05731397,0.05731397,0.05731397,0.05731397,0.05731397,0.05731397,0.05731397,0.05731397,0.351568939,0.351568939,0.351568939,0.351568939,0.351568939,0.351568939,0.351568939,0.351568939,0.009422749,0.009422749,0.009422749,0.009422749,0.009422749,0.009422749,0.009422749,0.009422749,0.007619098,0.007619098,0.007619098,0.007619098,0.007619098,0.007619098,0.007619098,0.007619098,0.001807458,0.001807458,0.001807458,0.001807458,0.001807458,0.001807458,0.001807458,0.001807458,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,4.57E-05,4.57E-05,4.57E-05,4.57E-05,4.57E-05,4.57E-05,4.57E-05,4.57E-05,0,0,0,0,0,0,0,0 +Kansas,gas,0.085132348,0.085132348,0.085132348,0.076897024,0.056308716,0.056308716,0.056308716,0.056308716,,,,,,,,,0.000211098,0.000211098,0.000211098,0.000198987,0.000168709,0.000168709,0.000168709,0.000168709,0.000163407,0.000163407,0.000163407,0.000149566,0.000114962,0.000114962,0.000114962,0.000114962,0.001987112,0.001987112,0.001987112,0.001795599,0.001316816,0.001316816,0.001316816,0.001316816,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002032691,0.002032691,0.002032691,0.002221951,0.002695101,0.002695101,0.002695101,0.002695101,9.80E-06,9.80E-06,9.80E-06,8.97E-06,6.90E-06,6.90E-06,6.90E-06,6.90E-06,8.17E-05,8.17E-05,8.17E-05,7.48E-05,5.75E-05,5.75E-05,5.75E-05,5.75E-05 +Kentucky,biomass,0.071833031,0.071833031,0.071833031,0.0748984,0.082561824,0.082561824,0.082561824,0.082561824,0.289228663,0.289228663,0.289228663,0.288351962,0.285996528,0.285996528,0.285996528,0.285996528,0.00997752,0.00997752,0.00997752,0.009852079,0.009538476,0.009538476,0.009538476,0.009538476,0.009966466,0.009966466,0.009966466,0.009843116,0.009534739,0.009534739,0.009534739,0.009534739,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000498323,0.000498323,0.000498323,0.000492156,0.000476737,0.000476737,0.000476737,0.000476737,0.001993293,0.001993293,0.001993293,0.001968623,0.001906948,0.001906948,0.001906948,0.001906948 +Kentucky,coal,0.088467397,0.095107175,0.098427064,0.097698655,0.095877635,0.095877635,0.095877635,0.095877635,0.112659567,0.113681775,0.114219684,0.118835199,0.133739852,0.133739852,0.133739852,0.133739852,0.012083327,0.013708737,0.014521441,0.014489719,0.014410413,0.014410413,0.014410413,0.014410413,0.010583909,0.011243329,0.011573039,0.011527207,0.011412627,0.011412627,0.011412627,0.011412627,0.001824421,0.001425436,0.001225944,0.001225901,0.001225795,0.001225795,0.001225795,0.001225795,0.020124905,0.029638693,0.034395587,0.034041809,0.033157364,0.033157364,0.033157364,0.033157364,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,6.35E-05,6.75E-05,6.94E-05,6.92E-05,6.85E-05,6.85E-05,6.85E-05,6.85E-05,0,0,0,0,0,0,0,0 +Kentucky,gas,0.022863349,0.022863349,0.022863349,0.02004993,0.013016382,0.013016382,0.013016382,0.013016382,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Louisiana,biomass,0.062423074,0.062423074,0.062423074,0.062022113,0.061019712,0.061019712,0.061019712,0.061019712,0.283397572,0.283397572,0.283397572,0.284448869,0.287939318,0.287939318,0.287939318,0.287939318,0.006708927,0.006708927,0.006708927,0.006687666,0.006634514,0.006634514,0.006634514,0.006634514,0.006612738,0.006612738,0.006612738,0.006590574,0.006535166,0.006535166,0.006535166,0.006535166,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000330637,0.000330637,0.000330637,0.000329529,0.000326758,0.000326758,0.000326758,0.000326758,0.001322548,0.001322548,0.001322548,0.001318115,0.001307033,0.001307033,0.001307033,0.001307033 +Louisiana,coal,0.067624716,0.067624716,0.067624716,0.070522218,0.077765975,0.077765975,0.077765975,0.077765975,0.938512997,0.938512997,0.938512997,0.934141641,0.111782919,0.111782919,0.111782919,0.111782919,0.007841496,0.007841496,0.007841496,0.007878493,0.007970988,0.007970988,0.007970988,0.007970988,0.007450616,0.007450616,0.007450616,0.007576804,0.007892272,0.007892272,0.007892272,0.007892272,0.001861666,0.001861666,0.001861666,0.001910701,0.002033289,0.002033289,0.002033289,0.002033289,0.074754484,0.074754484,0.074754484,0.056423944,0.010597593,0.010597593,0.010597593,0.010597593,0.000868677,0.000868677,0.000868677,0.000883754,0.000921447,0.000921447,0.000921447,0.000921447,4.47E-05,4.47E-05,4.47E-05,4.55E-05,4.74E-05,4.74E-05,4.74E-05,4.74E-05,0,0,0,0,0,0,0,0 +Louisiana,gas,0.039492644,0.039078786,0.038871858,0.036471173,0.030469462,0.030469462,0.030469462,0.030469462,,,,,,,,,0.000176178,0.00017549,0.000175146,0.000172164,0.000164709,0.000164709,0.000164709,0.000164709,0.000123498,0.000122713,0.00012232,0.000118911,0.000110391,0.000110391,0.000110391,0.000110391,0.001434924,0.001424052,0.001418615,0.001371458,0.001253566,0.001253566,0.001253566,0.001253566,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002578383,0.002589127,0.002594499,0.002641102,0.002757607,0.002757607,0.002757607,0.002757607,7.41E-06,7.36E-06,7.34E-06,7.13E-06,6.62E-06,6.62E-06,6.62E-06,6.62E-06,6.17E-05,6.14E-05,6.12E-05,5.95E-05,5.52E-05,5.52E-05,5.52E-05,5.52E-05 +Maine,biomass,0.10291319,0.10291319,0.10291319,0.10291319,0.10291319,0.10291319,0.10291319,0.10291319,0.393985622,0.393985622,0.393985622,0.393985622,0.393985622,0.393985622,0.393985622,0.393985622,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Maine,gas,0.006380706,0.006380706,0.006380706,0.006384966,0.006395618,0.006395618,0.006395618,0.006395618,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Maine,oil,0.007453854,0.007453854,0.007453854,0.007453854,0.007453854,0.007453854,0.007453854,0.007453854,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.000663036,0.000663036,0.000663036,0.000663036,0.000663036,0.000663036,0.000663036,0.000663036,0.000644489,0.000644489,0.000644489,0.000644489,0.000644489,0.000644489,0.000644489,0.000644489,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000193347,0.000193347,0.000193347,0.000193347,0.000193347,0.000193347,0.000193347,0.000193347,5.80E-05,5.80E-05,5.80E-05,5.80E-05,5.80E-05,5.80E-05,5.80E-05,5.80E-05 +Maryland,biomass,0.056290368,0.046481252,0.041576694,0.041729761,0.042112428,0.042112428,0.042112428,0.042112428,0.272388919,0.261516375,0.256579546,0.254873215,0.251911353,0.251911353,0.251911353,0.251911353,0.008882341,0.007838113,0.007315999,0.007328066,0.007358233,0.007358233,0.007358233,0.007358233,0.008876531,0.007827013,0.007302254,0.007314394,0.007344742,0.007344742,0.007344742,0.007344742,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000443827,0.000391351,0.000365113,0.00036572,0.000367237,0.000367237,0.000367237,0.000367237,0.001775306,0.001565403,0.001460451,0.001462879,0.001468948,0.001468948,0.001468948,0.001468948 +Maryland,coal,0.054787915,0.045665424,0.041104179,0.041144145,0.041244059,0.041244059,0.041244059,0.041244059,0.331224748,0.339812683,0.344169857,0.397114382,0.529632614,0.529632614,0.529632614,0.529632614,0.016148802,0.01406027,0.013016004,0.012986687,0.012913396,0.012913396,0.012913396,0.012913396,0.012816074,0.011849624,0.011366399,0.01133854,0.011268892,0.011268892,0.011268892,0.011268892,0.001214819,0.001211744,0.001210207,0.001209772,0.001208684,0.001208684,0.001208684,0.001208684,0.023565372,0.028946437,0.031636969,0.032398558,0.034302531,0.034302531,0.034302531,0.034302531,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,7.69E-05,7.11E-05,6.82E-05,6.80E-05,6.76E-05,6.76E-05,6.76E-05,6.76E-05,0,0,0,0,0,0,0,0 +Maryland,gas,0.016901629,0.016901629,0.016901629,0.017024311,0.017331016,0.017331016,0.017331016,0.017331016,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Maryland,oil,0.006609992,0.006609992,0.006609992,0.006609992,0.006609992,0.006609992,0.006609992,0.006609992,,,,,,,,,0.000485745,0.000485745,0.000485745,0.000485745,0.000485745,0.000485745,0.000485745,0.000485745,0.000484249,0.000484249,0.000484249,0.000484249,0.000484249,0.000484249,0.000484249,0.000484249,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000145275,0.000145275,0.000145275,0.000145275,0.000145275,0.000145275,0.000145275,0.000145275,4.36E-05,4.36E-05,4.36E-05,4.36E-05,4.36E-05,4.36E-05,4.36E-05,4.36E-05 +Massachusetts,biomass,0.108628445,0.108642591,0.108649664,0.108649664,0.108649664,0.108649664,0.108649664,0.108649664,0.379126656,0.379126748,0.379126794,0.379126794,0.379126794,0.379126794,0.379126794,0.379126794,0.009857347,0.009857313,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604669,0.009604587,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480233,0.000480229,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920934,0.001920917,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Massachusetts,coal,0.042378752,0.042378752,0.042378752,0.042378752,0.042378752,0.042378752,0.042378752,0.042378752,0.423257672,0.423257672,0.423257672,0.423257672,0.423257672,0.423257672,0.423257672,0.423257672,0.018282418,0.018282418,0.018282418,0.018282418,0.018282418,0.018282418,0.018282418,0.018282418,0.014008296,0.014008296,0.014008296,0.014008296,0.014008296,0.014008296,0.014008296,0.014008296,0.001222465,0.001222465,0.001222465,0.001222465,0.001222465,0.001222465,0.001222465,0.001222465,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611231,0.000611231,0.000611231,0.000611231,0.000611231,0.000611231,0.000611231,0.000611231,8.40E-05,8.40E-05,8.40E-05,8.40E-05,8.40E-05,8.40E-05,8.40E-05,8.40E-05,0,0,0,0,0,0,0,0 +Massachusetts,gas,0.006197325,0.006128685,0.006094365,0.006179561,0.00639255,0.00639255,0.00639255,0.00639255,,,,,,,,,0.000147798,0.000147697,0.000147647,0.000147557,0.000147331,0.000147331,0.000147331,0.000147331,9.11E-05,9.09E-05,9.09E-05,9.08E-05,9.05E-05,9.05E-05,9.05E-05,9.05E-05,0.000986154,0.000984568,0.000983775,0.000982346,0.000978774,0.000978774,0.000978774,0.000978774,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003021873,0.00302344,0.003024224,0.003025636,0.003029166,0.003029166,0.003029166,0.003029166,5.46E-06,5.46E-06,5.45E-06,5.45E-06,5.43E-06,5.43E-06,5.43E-06,5.43E-06,4.55E-05,4.55E-05,4.54E-05,4.54E-05,4.53E-05,4.53E-05,4.53E-05,4.53E-05 +Michigan,biomass,0.108130137,0.098305621,0.093393363,0.093094052,0.092345774,0.092345774,0.092345774,0.092345774,0.339869464,0.337296641,0.335699676,0.336733738,0.339543164,0.339543164,0.339543164,0.339543164,0.009504404,0.009049475,0.00882201,0.008833649,0.008862746,0.008862746,0.008862746,0.008862746,0.009407503,0.008937114,0.00870192,0.008711733,0.008736268,0.008736268,0.008736268,0.008736268,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000470375,0.000446856,0.000435096,0.000435587,0.000436813,0.000436813,0.000436813,0.000436813,0.001881501,0.001787423,0.001740384,0.001742347,0.001747254,0.001747254,0.001747254,0.001747254 +Michigan,coal,0.110521512,0.104700785,0.101790422,0.10198053,0.1024558,0.1024558,0.1024558,0.1024558,0.161777947,0.157936294,0.145314737,0.146664298,0.149868828,0.149868828,0.149868828,0.149868828,0.0102921,0.010385921,0.010432832,0.010496047,0.010654086,0.010654086,0.010654086,0.010654086,0.008090356,0.008116731,0.008129918,0.008192414,0.008348654,0.008348654,0.008348654,0.008348654,0.001472766,0.001462653,0.001457596,0.001457697,0.001457951,0.001457951,0.001457951,0.001457951,0.015414143,0.015577508,0.015659191,0.0156726,0.015706121,0.015706121,0.015706121,0.015706121,0.000738162,0.000733245,0.000730787,0.000730853,0.000731017,0.000731017,0.000731017,0.000731017,4.85E-05,4.87E-05,4.88E-05,4.92E-05,5.01E-05,5.01E-05,5.01E-05,5.01E-05,0,0,0,0,0,0,0,0 +Michigan,gas,0.052439517,0.052439517,0.052439517,0.04822964,0.037704947,0.037704947,0.037704947,0.037704947,,,,,,,,,0.000147706,0.000147706,0.000147706,0.000147475,0.000146895,0.000146895,0.000146895,0.000146895,9.10E-05,9.10E-05,9.10E-05,9.07E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000984712,0.000984712,0.000984712,0.000981046,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003023298,0.003023298,0.003023298,0.00302692,0.003035976,0.003035976,0.003035976,0.003035976,5.46E-06,5.46E-06,5.46E-06,5.44E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.55E-05,4.55E-05,4.55E-05,4.53E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Minnesota,biomass,0.135294887,0.135294887,0.135294887,0.133973081,0.130668565,0.130668565,0.130668565,0.130668565,0.392984871,0.392984871,0.392984871,0.385982825,0.368489764,0.368489764,0.368489764,0.368489764,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Minnesota,coal,0.083477119,0.075994242,0.072252804,0.072237878,0.072200563,0.072200563,0.072200563,0.072200563,0.462176136,0.462176136,0.462176136,0.462578816,0.461762246,0.461762246,0.461762246,0.461762246,0.028956769,0.028956769,0.028956769,0.028949309,0.02893066,0.02893066,0.02893066,0.02893066,0.021335028,0.021335028,0.021335028,0.021329894,0.021317061,0.021317061,0.021317061,0.021317061,0.001761143,0.001761143,0.001761143,0.001761084,0.001760936,0.001760936,0.001760936,0.001760936,0.014243873,0.014243873,0.014243873,0.014243539,0.014242704,0.014242704,0.014242704,0.014242704,0.000799035,0.000799035,0.000799035,0.000799035,0.000799037,0.000799037,0.000799037,0.000799037,0.00012801,0.00012801,0.00012801,0.000127979,0.000127902,0.000127902,0.000127902,0.000127902,0,0,0,0,0,0,0,0 +Minnesota,gas,0.022696114,0.021525981,0.020940914,0.020932493,0.02091144,0.02091144,0.02091144,0.02091144,,,,,,,,,0.000153817,0.000153817,0.000153817,0.000153381,0.000152292,0.000152292,0.000152292,0.000152292,9.79E-05,9.79E-05,9.79E-05,9.74E-05,9.62E-05,9.62E-05,9.62E-05,9.62E-05,0.001081342,0.001081342,0.001081342,0.00107445,0.00105722,0.00105722,0.00105722,0.00105722,0.037109621,0.037109621,0.037109621,0.037220438,0.037497481,0.037497481,0.037497481,0.037497481,0.002927805,0.002927805,0.002927805,0.002934616,0.002951643,0.002951643,0.002951643,0.002951643,5.88E-06,5.88E-06,5.88E-06,5.85E-06,5.77E-06,5.77E-06,5.77E-06,5.77E-06,4.90E-05,4.90E-05,4.90E-05,4.87E-05,4.81E-05,4.81E-05,4.81E-05,4.81E-05 +Mississippi,biomass,0.131942807,0.131942807,0.131942807,0.131776207,0.131359708,0.131359708,0.131359708,0.131359708,0.424697988,0.424697988,0.424697988,0.419722395,0.417852641,0.417852641,0.417852641,0.417852641,0.0098186,0.0098186,0.0098186,0.009819756,0.009822646,0.009822646,0.009822646,0.009822646,0.00973731,0.00973731,0.00973731,0.009738913,0.00974292,0.00974292,0.00974292,0.00974292,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000486866,0.000486866,0.000486866,0.000486946,0.000487146,0.000487146,0.000487146,0.000487146,0.001947462,0.001947462,0.001947462,0.001947783,0.001948584,0.001948584,0.001948584,0.001948584 +Mississippi,coal,0.080158539,0.080158539,0.080158539,0.080891472,0.082723804,0.082723804,0.082723804,0.082723804,0.766461813,0.766461813,0.766461813,0.742727375,0.683399638,0.683399638,0.683399638,0.683399638,0.016370214,0.016370214,0.016370214,0.016006388,0.015096823,0.015096823,0.015096823,0.015096823,0.015155381,0.015155381,0.015155381,0.014807373,0.013937351,0.013937351,0.013937351,0.013937351,0.00090043,0.00090043,0.00090043,0.000900046,0.000899086,0.000899086,0.000899086,0.000899086,0.008009929,0.008009929,0.008009929,0.008019713,0.008044173,0.008044173,0.008044173,0.008044173,0.000783504,0.000783504,0.000783504,0.000782729,0.000780794,0.000780794,0.000780794,0.000780794,9.09E-05,9.09E-05,9.09E-05,8.88E-05,8.36E-05,8.36E-05,8.36E-05,8.36E-05,0,0,0,0,0,0,0,0 +Mississippi,gas,0.019664468,0.019664468,0.019664468,0.018755593,0.016483407,0.016483407,0.016483407,0.016483407,,,,,,,,,0.000154988,0.000154988,0.000154988,0.000154519,0.000153346,0.000153346,0.000153346,0.000153346,9.93E-05,9.93E-05,9.93E-05,9.87E-05,9.74E-05,9.74E-05,9.74E-05,9.74E-05,0.001099858,0.001099858,0.001099858,0.00109244,0.001073895,0.001073895,0.001073895,0.001073895,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002909507,0.002909507,0.002909507,0.002916837,0.002935164,0.002935164,0.002935164,0.002935164,5.96E-06,5.96E-06,5.96E-06,5.92E-06,5.84E-06,5.84E-06,5.84E-06,5.84E-06,4.96E-05,4.96E-05,4.96E-05,4.94E-05,4.87E-05,4.87E-05,4.87E-05,4.87E-05 +Missouri,biomass,0.042355783,0.042355783,0.042355783,0.045570027,0.053605638,0.053605638,0.053605638,0.053605638,0.183376521,0.183376521,0.183376521,0.174627386,0.158394367,0.158394367,0.158394367,0.158394367,0.008680248,0.008680248,0.008680248,0.008239328,0.00713703,0.00713703,0.00713703,0.00713703,0.008680248,0.008680248,0.008680248,0.008237258,0.007129784,0.007129784,0.007129784,0.007129784,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000434012,0.000434012,0.000434012,0.000411863,0.000356489,0.000356489,0.000356489,0.000356489,0.00173605,0.00173605,0.00173605,0.001647452,0.001425957,0.001425957,0.001425957,0.001425957 +Missouri,coal,0.050313115,0.050313115,0.050313115,0.050246621,0.050080386,0.050080386,0.050080386,0.050080386,0.751598385,0.751598385,0.751598385,0.785445627,0.876374476,0.876374476,0.876374476,0.876374476,0.006471788,0.006471788,0.006471788,0.006514219,0.006620297,0.006620297,0.006620297,0.006620297,0.005869339,0.005869339,0.005869339,0.005904789,0.005993412,0.005993412,0.005993412,0.005993412,0.001869585,0.001869585,0.001869585,0.001870053,0.001871222,0.001871222,0.001871222,0.001871222,0.013381829,0.013381829,0.013381829,0.013384081,0.013389713,0.013389713,0.013389713,0.013389713,0.000779154,0.000779154,0.000779154,0.00077897,0.000778509,0.000778509,0.000778509,0.000778509,3.52E-05,3.52E-05,3.52E-05,3.54E-05,3.60E-05,3.60E-05,3.60E-05,3.60E-05,0,0,0,0,0,0,0,0 +Missouri,gas,0.018536104,0.018536104,0.018536104,0.02003616,0.023786299,0.023786299,0.023786299,0.023786299,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Montana,biomass,0.088668604,0.088668604,0.088668604,0.08579629,0.078615507,0.078615507,0.078615507,0.078615507,0.121797469,0.121797469,0.121797469,0.131131527,0.154465128,0.154465128,0.154465128,0.154465128,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Montana,coal,0.138345448,0.095542784,0.074141452,0.074062873,0.073866427,0.073866427,0.073866427,0.073866427,0.657847982,0.657847982,0.657847982,0.681451529,0.87243158,0.87243158,0.87243158,0.87243158,0.033711605,0.033711605,0.033711605,0.033889568,0.034334475,0.034334475,0.034334475,0.034334475,0.02107853,0.02107853,0.02107853,0.021269692,0.021747598,0.021747598,0.021747598,0.021747598,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000126471,0.000126471,0.000126471,0.000127618,0.000130486,0.000130486,0.000130486,0.000130486,0,0,0,0,0,0,0,0 +Montana,gas,0.040567557,0.040567557,0.040567557,0.041014161,0.04213067,0.04213067,0.04213067,0.04213067,0.379127448,0.379127448,0.379127448,0.321696572,0.178123892,0.178123892,0.178123892,0.178123892,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Nebraska,coal,0.097404539,0.097404539,0.097404539,0.097404539,0.097404539,0.097404539,0.097404539,0.097404539,0.734582173,0.734582173,0.734582173,0.734582173,0.734582173,0.734582173,0.734582173,0.734582173,0.006684623,0.006684623,0.006684623,0.006684623,0.006684623,0.006684623,0.006684623,0.006684623,0.005680262,0.005680262,0.005680262,0.005680262,0.005680262,0.005680262,0.005680262,0.005680262,0.001677312,0.001677312,0.001677312,0.001677312,0.001677312,0.001677312,0.001677312,0.001677312,0.021065819,0.021065819,0.021065819,0.021065819,0.021065819,0.021065819,0.021065819,0.021065819,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,3.41E-05,3.41E-05,3.41E-05,3.41E-05,3.41E-05,3.41E-05,3.41E-05,3.41E-05,0,0,0,0,0,0,0,0 +Nebraska,gas,0.021070769,0.021070769,0.021070769,0.028272702,0.046277535,0.046277535,0.046277535,0.046277535,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Nevada,coal,0.104901072,0.110218814,0.112877685,0.087626201,0.024497491,0.024497491,0.024497491,0.024497491,0.192955514,0.922374643,0.833878439,0.695958193,0.351157575,0.351157575,0.351157575,0.351157575,0.012807996,0.010798449,0.009793676,0.009062241,0.007233654,0.007233654,0.007233654,0.007233654,0.011011743,0.009024799,0.008031326,0.007303876,0.005485251,0.005485251,0.005485251,0.005485251,0.001239642,0.001303444,0.001335344,0.001408268,0.001590577,0.001590577,0.001590577,0.001590577,0.01033035,0.010862031,0.011127871,0.011735568,0.013254811,0.013254811,0.013254811,0.013254811,0.000619821,0.000651722,0.000667672,0.000704134,0.000795289,0.000795289,0.000795289,0.000795289,6.61E-05,5.41E-05,4.82E-05,4.38E-05,3.29E-05,3.29E-05,3.29E-05,3.29E-05,0,0,0,0,0,0,0,0 +Nevada,gas,0.007209886,0.007209886,0.007209886,0.007827236,0.009370611,0.009370611,0.009370611,0.009370611,,,,,,,,,0.000147041,0.000147041,0.000147041,0.000146999,0.000146895,0.000146895,0.000146895,0.000146895,9.02E-05,9.02E-05,9.02E-05,9.02E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000974184,0.000974184,0.000974184,0.000973526,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003033702,0.003033702,0.003033702,0.003034352,0.003035976,0.003035976,0.003035976,0.003035976,5.41E-06,5.41E-06,5.41E-06,5.41E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.51E-05,4.51E-05,4.51E-05,4.51E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +New Hampshire,biomass,0.039332749,0.039332749,0.039332749,0.038865965,0.037699005,0.037699005,0.037699005,0.037699005,0.379126831,0.379126831,0.379126831,0.379126836,0.379126828,0.379126828,0.379126828,0.379126828,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +New Hampshire,gas,0.004534778,0.004534778,0.004534778,0.004553401,0.004599961,0.004599961,0.004599961,0.004599961,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +New Jersey,biomass,0.039033788,0.039033788,0.039033788,0.038045701,0.035575483,0.035575483,0.035575483,0.035575483,0.379126844,0.379126844,0.379126844,0.379126835,0.379126821,0.379126821,0.379126821,0.379126821,0.008712263,0.008712263,0.008712263,0.008740793,0.00881212,0.00881212,0.00881212,0.00881212,0.00850444,0.00850444,0.00850444,0.008528752,0.008589532,0.008589532,0.008589532,0.008589532,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000425222,0.000425222,0.000425222,0.000426438,0.000429477,0.000429477,0.000429477,0.000429477,0.001700888,0.001700888,0.001700888,0.00170575,0.001717906,0.001717906,0.001717906,0.001717906 +New Jersey,coal,0.051105342,0.051105342,0.051105342,0.051076844,0.0510056,0.0510056,0.0510056,0.0510056,0.762131918,0.762131918,0.762131918,0.752498419,0.733211634,0.733211634,0.733211634,0.733211634,0.016629787,0.016629787,0.016629787,0.016697234,0.016865851,0.016865851,0.016865851,0.016865851,0.013260176,0.013260176,0.013260176,0.013275984,0.013315502,0.013315502,0.013315502,0.013315502,0.001096955,0.001096955,0.001096955,0.00109848,0.001102293,0.001102293,0.001102293,0.001102293,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,7.96E-05,7.96E-05,7.96E-05,7.97E-05,7.99E-05,7.99E-05,7.99E-05,7.99E-05,0,0,0,0,0,0,0,0 +New Jersey,gas,0.018025266,0.018025266,0.018025266,0.018103203,0.018298047,0.018298047,0.018298047,0.018298047,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +New Mexico,biomass,0.09376114,0.09376114,0.09376114,0.09376114,0.09376114,0.09376114,0.09376114,0.09376114,0.284345985,0.284345985,0.284345985,0.284345985,0.284345985,0.284345985,0.284345985,0.284345985,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.00903862,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000451931,0.000451931,0.000451931,0.000451931,0.000451931,0.000451931,0.000451931,0.000451931,0.001807724,0.001807724,0.001807724,0.001807724,0.001807724,0.001807724,0.001807724,0.001807724 +New Mexico,coal,0.124428818,0.124428818,0.124428818,0.124428818,0.124428818,0.124428818,0.124428818,0.124428818,0.396148172,0.396148172,0.396148172,0.396148172,0.396148172,0.396148172,0.396148172,0.396148172,0.022415947,0.022415947,0.022415947,0.022415947,0.022415947,0.022415947,0.022415947,0.022415947,0.017203235,0.017203235,0.017203235,0.017203235,0.017203235,0.017203235,0.017203235,0.017203235,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000103219,0.000103219,0.000103219,0.000103219,0.000103219,0.000103219,0.000103219,0.000103219,0,0,0,0,0,0,0,0 +New Mexico,gas,0.024038819,0.024038819,0.024038819,0.024617692,0.026064874,0.026064874,0.026064874,0.026064874,,,,,,,,,0.000166887,0.000166887,0.000166887,0.000166499,0.000165531,0.000165531,0.000165531,0.000165531,0.00011288,0.00011288,0.00011288,0.000112437,0.000111331,0.000111331,0.000111331,0.000111331,0.001288005,0.001288005,0.001288005,0.001281881,0.00126657,0.00126657,0.00126657,0.00126657,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002723573,0.002723573,0.002723573,0.002729625,0.002744756,0.002744756,0.002744756,0.002744756,6.77E-06,6.77E-06,6.77E-06,6.75E-06,6.68E-06,6.68E-06,6.68E-06,6.68E-06,5.64E-05,5.64E-05,5.64E-05,5.62E-05,5.57E-05,5.57E-05,5.57E-05,5.57E-05 +New York,biomass,0.088868528,0.088868528,0.088868528,0.088862166,0.08884626,0.08884626,0.08884626,0.08884626,0.285647177,0.285647177,0.285647177,0.285577932,0.285159336,0.285159336,0.285159336,0.285159336,0.009001946,0.009001946,0.009001946,0.009008065,0.009023362,0.009023362,0.009023362,0.009023362,0.008792163,0.008792163,0.008792163,0.008798894,0.00881572,0.00881572,0.00881572,0.00881572,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000439608,0.000439608,0.000439608,0.000439945,0.000440786,0.000440786,0.000440786,0.000440786,0.001758433,0.001758433,0.001758433,0.001759779,0.001763144,0.001763144,0.001763144,0.001763144 +New York,coal,0.148917105,0.148917105,0.148917105,0.149031755,0.14931838,0.14931838,0.14931838,0.14931838,0.916825841,0.916825841,0.916825841,0.915291272,0.913312994,0.913312994,0.913312994,0.913312994,0.018186095,0.018186095,0.018186095,0.018198957,0.018231112,0.018231112,0.018231112,0.018231112,0.013661281,0.013661281,0.013661281,0.013671571,0.013697297,0.013697297,0.013697297,0.013697297,0.001244501,0.001244501,0.001244501,0.001243935,0.001242521,0.001242521,0.001242521,0.001242521,0.010370843,0.010370843,0.010370843,0.010366129,0.010354343,0.010354343,0.010354343,0.010354343,0.000622251,0.000622251,0.000622251,0.000621968,0.000621261,0.000621261,0.000621261,0.000621261,8.20E-05,8.20E-05,8.20E-05,8.20E-05,8.22E-05,8.22E-05,8.22E-05,8.22E-05,0,0,0,0,0,0,0,0 +New York,gas,0.014891315,0.014891315,0.014891315,0.013836064,0.011197935,0.011197935,0.011197935,0.011197935,,,,,,,,,0.00016018,0.00016018,0.00016018,0.000158605,0.000154665,0.000154665,0.000154665,0.000154665,0.000105215,0.000105215,0.000105215,0.000103415,9.89E-05,9.89E-05,9.89E-05,9.89E-05,0.001181957,0.001181957,0.001181957,0.001157041,0.001094752,0.001094752,0.001094752,0.001094752,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002828373,0.002828373,0.002828373,0.002852996,0.002914553,0.002914553,0.002914553,0.002914553,6.31E-06,6.31E-06,6.31E-06,6.20E-06,5.93E-06,5.93E-06,5.93E-06,5.93E-06,5.26E-05,5.26E-05,5.26E-05,5.17E-05,4.95E-05,4.95E-05,4.95E-05,4.95E-05 +New York,oil,0.128220314,0.128220314,0.128220314,0.128220314,0.128220314,0.128220314,0.128220314,0.128220314,,,,,,,,,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.005472613,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.000206047,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.022733872,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.001641784,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535,0.000492535 +North Carolina,biomass,0.096068931,0.096068931,0.096068931,0.096191918,0.096499385,0.096499385,0.096499385,0.096499385,0.396589718,0.396589718,0.396589718,0.396795542,0.397311393,0.397311393,0.397311393,0.397311393,0.00867288,0.00867288,0.00867288,0.008684288,0.008712809,0.008712809,0.008712809,0.008712809,0.008517639,0.008517639,0.008517639,0.008528981,0.008557335,0.008557335,0.008557335,0.008557335,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000425882,0.000425882,0.000425882,0.000426449,0.000427867,0.000427867,0.000427867,0.000427867,0.001703528,0.001703528,0.001703528,0.001705796,0.001711467,0.001711467,0.001711467,0.001711467 +North Carolina,coal,0.07298058,0.07298058,0.07298058,0.072945583,0.072858092,0.072858092,0.072858092,0.072858092,0.494872945,0.494872945,0.494872945,0.588414925,0.543758162,0.543758162,0.543758162,0.543758162,0.014546503,0.014546503,0.014546503,0.014619141,0.014800734,0.014800734,0.014800734,0.014800734,0.012159483,0.012159483,0.012159483,0.012189967,0.012266176,0.012266176,0.012266176,0.012266176,0.001217631,0.001217631,0.001217631,0.001217253,0.001216308,0.001216308,0.001216308,0.001216308,0.012361851,0.012361851,0.012361851,0.012532028,0.012957472,0.012957472,0.012957472,0.012957472,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,7.30E-05,7.30E-05,7.30E-05,7.31E-05,7.36E-05,7.36E-05,7.36E-05,7.36E-05,0,0,0,0,0,0,0,0 +North Carolina,gas,0.014660935,0.014660935,0.014660935,0.014090782,0.012665401,0.012665401,0.012665401,0.012665401,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +North Dakota,biomass,0.164935412,0.108380381,0.080102865,0.080086731,0.080046397,0.080046397,0.080046397,0.080046397,0.291568968,0.291568968,0.291568968,0.291519525,0.291398973,0.291398973,0.291398973,0.291398973,0.009167318,0.009167318,0.009167318,0.009168117,0.009170116,0.009170116,0.009170116,0.009170116,0.009167318,0.009167318,0.009167318,0.009168117,0.009170116,0.009170116,0.009170116,0.009170116,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000458366,0.000458366,0.000458366,0.000458406,0.000458506,0.000458506,0.000458506,0.000458506,0.001833464,0.001833464,0.001833464,0.001833623,0.001834023,0.001834023,0.001834023,0.001834023 +North Dakota,coal,0.170708899,0.159146758,0.153365687,0.153595406,0.154169704,0.154169704,0.154169704,0.154169704,0.853264679,0.853264679,0.853264679,0.865288171,0.886346994,0.886346994,0.886346994,0.886346994,0.013577018,0.013577018,0.013577018,0.013585142,0.01360545,0.01360545,0.01360545,0.01360545,0.011653707,0.011653707,0.011653707,0.011661513,0.011681027,0.011681027,0.011681027,0.011681027,0.002319273,0.002319273,0.002319273,0.002319274,0.002319275,0.002319275,0.002319275,0.002319275,0.030048107,0.030048107,0.030048107,0.030033551,0.029997161,0.029997161,0.029997161,0.029997161,0.00096126,0.00096126,0.00096126,0.000961409,0.000961784,0.000961784,0.000961784,0.000961784,6.99E-05,6.99E-05,6.99E-05,7.00E-05,7.01E-05,7.01E-05,7.01E-05,7.01E-05,0,0,0,0,0,0,0,0 +North Dakota,gas,0.026690128,0.017633643,0.013105401,0.013215939,0.013492284,0.013492284,0.013492284,0.013492284,,,,,,,,,0.000245116,0.000245116,0.000245116,0.000244807,0.000244033,0.000244033,0.000244033,0.000244033,0.000202285,0.000202285,0.000202285,0.000201931,0.000201047,0.000201047,0.000201047,0.000201047,0.002525032,0.002525032,0.002525032,0.002520137,0.0025079,0.0025079,0.0025079,0.0025079,0.011466783,0.011466783,0.011466783,0.011553164,0.011769115,0.011769115,0.011769115,0.011769115,0.001501099,0.001501099,0.001501099,0.001505936,0.00151803,0.00151803,0.00151803,0.00151803,1.21E-05,1.21E-05,1.21E-05,1.21E-05,1.21E-05,1.21E-05,1.21E-05,1.21E-05,0.000101143,0.000101143,0.000101143,0.000100966,0.000100523,0.000100523,0.000100523,0.000100523 +Ohio,biomass,0.077615045,0.077615045,0.077615045,0.0771522,0.075995087,0.075995087,0.075995087,0.075995087,0.272298445,0.272298445,0.272298445,0.274259911,0.279163579,0.279163579,0.279163579,0.279163579,0.008030248,0.008030248,0.008030248,0.008218376,0.008688696,0.008688696,0.008688696,0.008688696,0.007999923,0.007999923,0.007999923,0.008176651,0.008618472,0.008618472,0.008618472,0.008618472,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000399996,0.000399996,0.000399996,0.000408833,0.000430924,0.000430924,0.000430924,0.000430924,0.001599985,0.001599985,0.001599985,0.00163533,0.001723694,0.001723694,0.001723694,0.001723694 +Ohio,coal,0.073320893,0.073320893,0.073320893,0.072859973,0.071707673,0.071707673,0.071707673,0.071707673,0.122744965,0.122744965,0.122744965,0.123841816,0.126583945,0.126583945,0.126583945,0.126583945,0.020796943,0.020796943,0.020796943,0.020887337,0.021113322,0.021113322,0.021113322,0.021113322,0.01600768,0.01600768,0.01600768,0.016024045,0.016064957,0.016064957,0.016064957,0.016064957,0.001191263,0.001191263,0.001191263,0.001191738,0.001192924,0.001192924,0.001192924,0.001192924,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,9.60E-05,9.60E-05,9.60E-05,9.61E-05,9.64E-05,9.64E-05,9.64E-05,9.64E-05,0,0,0,0,0,0,0,0 +Ohio,gas,0.015888849,0.015888849,0.015888849,0.014036228,0.009404676,0.009404676,0.009404676,0.009404676,0.385252629,0.385252629,0.385252629,0.343984532,0.249327456,0.249327456,0.249327456,0.249327456,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Ohio,oil,1.137059457,1.137059457,1.137059457,1.137059457,1.137059457,1.137059457,1.137059457,1.137059457,,,,,,,,,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.005472621,0.000206049,0.000206049,0.000206049,0.000206049,0.000206049,0.000206049,0.000206049,0.000206049,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.022733923,0.022733923,0.022733923,0.022733923,0.022733923,0.022733923,0.022733923,0.022733923,0.001641786,0.001641786,0.001641786,0.001641786,0.001641786,0.001641786,0.001641786,0.001641786,0.000492536,0.000492536,0.000492536,0.000492536,0.000492536,0.000492536,0.000492536,0.000492536 +Oklahoma,biomass,0.061140368,0.061140368,0.061140368,0.064495186,0.072882232,0.072882232,0.072882232,0.072882232,0.559748528,0.559748528,0.559748528,0.642699525,0.857718878,0.857718878,0.857718878,0.857718878,0.00960968,0.00960968,0.00960968,0.008825976,0.006866716,0.006866716,0.006866716,0.006866716,0.00960968,0.00960968,0.00960968,0.008825976,0.006866716,0.006866716,0.006866716,0.006866716,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480484,0.000480484,0.000480484,0.000441299,0.000343336,0.000343336,0.000343336,0.000343336,0.001921936,0.001921936,0.001921936,0.001765195,0.001373343,0.001373343,0.001373343,0.001373343 +Oklahoma,coal,0.115882146,0.10205374,0.095139537,0.095026927,0.094745403,0.094745403,0.094745403,0.094745403,0.597458868,0.597458868,0.597458868,0.615891812,0.675947417,0.675947417,0.675947417,0.675947417,0.007820629,0.007820629,0.007820629,0.007842219,0.007896195,0.007896195,0.007896195,0.007896195,0.006628885,0.006628885,0.006628885,0.006641758,0.006673943,0.006673943,0.006673943,0.006673943,0.00156209,0.00156209,0.00156209,0.001562099,0.00156212,0.00156212,0.00156212,0.00156212,0.036981022,0.036981022,0.036981022,0.036975826,0.036962837,0.036962837,0.036962837,0.036962837,0.000787859,0.000787859,0.000787859,0.000787862,0.000787869,0.000787869,0.000787869,0.000787869,3.98E-05,3.98E-05,3.98E-05,3.99E-05,4.00E-05,4.00E-05,4.00E-05,4.00E-05,0,0,0,0,0,0,0,0 +Oklahoma,gas,0.050621892,0.050621892,0.050621892,0.04637869,0.035770686,0.035770686,0.035770686,0.035770686,,,,,,,,,0.000179701,0.000179701,0.000179701,0.000174752,0.000162379,0.000162379,0.000162379,0.000162379,0.000127525,0.000127525,0.000127525,0.000121869,0.000107729,0.000107729,0.000107729,0.000107729,0.00149063,0.00149063,0.00149063,0.001412373,0.001216731,0.001216731,0.001216731,0.001216731,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002523332,0.002523332,0.002523332,0.002600668,0.002794008,0.002794008,0.002794008,0.002794008,7.65E-06,7.65E-06,7.65E-06,7.31E-06,6.46E-06,6.46E-06,6.46E-06,6.46E-06,6.38E-05,6.38E-05,6.38E-05,6.09E-05,5.39E-05,5.39E-05,5.39E-05,5.39E-05 +Oregon,biomass,0.107822047,0.107822047,0.107822047,0.107843173,0.107895991,0.107895991,0.107895991,0.107895991,0.576562139,0.576562139,0.576562139,0.543751779,0.496172619,0.496172619,0.496172619,0.496172619,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Oregon,gas,0.011554052,0.011554052,0.011554052,0.011418005,0.011077888,0.011077888,0.011077888,0.011077888,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Pennsylvania,biomass,0.112387131,0.110347262,0.109327328,0.108464611,0.106307818,0.106307818,0.106307818,0.106307818,0.335765175,0.337383728,0.338537333,0.324739988,0.299246625,0.299246625,0.299246625,0.299246625,0.007592712,0.007623818,0.007639371,0.007897863,0.008544093,0.008544093,0.008544093,0.008544093,0.007556899,0.007587574,0.007602911,0.007863982,0.008516658,0.008516658,0.008516658,0.008516658,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000377845,0.000379379,0.000380146,0.000393199,0.000425833,0.000425833,0.000425833,0.000425833,0.00151138,0.001517515,0.001520582,0.001572796,0.001703332,0.001703332,0.001703332,0.001703332 +Pennsylvania,coal,0.137506314,0.136950807,0.136673053,0.136699812,0.136766709,0.136766709,0.136766709,0.136766709,0.676563761,0.67165674,0.669456924,0.687335343,0.732331814,0.732331814,0.732331814,0.732331814,0.016799338,0.016820127,0.016830522,0.016862641,0.01694294,0.01694294,0.01694294,0.01694294,0.013763639,0.013774852,0.013780459,0.013787686,0.013805755,0.013805755,0.013805755,0.013805755,0.001204175,0.001204116,0.001204086,0.001204553,0.001205721,0.001205721,0.001205721,0.001205721,0.011470372,0.011474516,0.011476589,0.011479546,0.011486938,0.011486938,0.011486938,0.011486938,0.000613212,0.000613219,0.000613222,0.000613226,0.000613238,0.000613238,0.000613238,0.000613238,8.26E-05,8.26E-05,8.27E-05,8.27E-05,8.28E-05,8.28E-05,8.28E-05,8.28E-05,0,0,0,0,0,0,0,0 +Pennsylvania,gas,0.013055117,0.013055117,0.013055117,0.012717426,0.011873201,0.011873201,0.011873201,0.011873201,,,,,,,,,0.000147254,0.000147254,0.000147254,0.000147151,0.000146895,0.000146895,0.000146895,0.000146895,9.04E-05,9.04E-05,9.04E-05,9.03E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000977557,0.000977557,0.000977557,0.000975936,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003030369,0.003030369,0.003030369,0.003031971,0.003035976,0.003035976,0.003035976,0.003035976,5.43E-06,5.43E-06,5.43E-06,5.42E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.52E-05,4.52E-05,4.52E-05,4.52E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Rhode Island,gas,0.00522164,0.00522164,0.00522164,0.005322385,0.005574249,0.005574249,0.005574249,0.005574249,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +South Carolina,biomass,0.031063739,0.031063739,0.031063739,0.031213654,0.03158844,0.03158844,0.03158844,0.03158844,0.349515797,0.349515797,0.349515797,0.348862519,0.347221389,0.347221389,0.347221389,0.347221389,0.012522163,0.012522163,0.012522163,0.012549121,0.012616515,0.012616515,0.012616515,0.012616515,0.012385407,0.012385407,0.012385407,0.012413483,0.012483674,0.012483674,0.012483674,0.012483674,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.00061927,0.00061927,0.00061927,0.000620674,0.000624184,0.000624184,0.000624184,0.000624184,0.002477081,0.002477081,0.002477081,0.002482697,0.002496735,0.002496735,0.002496735,0.002496735 +South Carolina,coal,0.043995812,0.043995812,0.043995812,0.043890815,0.043628322,0.043628322,0.043628322,0.043628322,0.847423647,0.847423647,0.847423647,0.871681422,0.932325857,0.932325857,0.932325857,0.932325857,0.025382258,0.025382258,0.025382258,0.025308431,0.025123864,0.025123864,0.025123864,0.025123864,0.016703314,0.016703314,0.016703314,0.016654598,0.01653281,0.01653281,0.01653281,0.01653281,0.001114329,0.001114329,0.001114329,0.001114971,0.001116576,0.001116576,0.001116576,0.001116576,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.00010022,0.00010022,0.00010022,9.99E-05,9.92E-05,9.92E-05,9.92E-05,9.92E-05,0,0,0,0,0,0,0,0 +South Carolina,gas,0.009809698,0.009809698,0.009809698,0.009320113,0.008096149,0.008096149,0.008096149,0.008096149,,,,,,,,,0.000147097,0.000147097,0.000147097,0.000147069,0.000146998,0.000146998,0.000146998,0.000146998,9.03E-05,9.03E-05,9.03E-05,9.02E-05,9.02E-05,9.02E-05,9.02E-05,9.02E-05,0.000975078,0.000975078,0.000975078,0.000974632,0.000973517,0.000973517,0.000973517,0.000973517,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003032818,0.003032818,0.003032818,0.003033259,0.003034361,0.003034361,0.003034361,0.003034361,5.42E-06,5.42E-06,5.42E-06,5.41E-06,5.41E-06,5.41E-06,5.41E-06,5.41E-06,4.51E-05,4.51E-05,4.51E-05,4.51E-05,4.51E-05,4.51E-05,4.51E-05,4.51E-05 +South Dakota,coal,0.034432548,0.034432548,0.034432548,0.034432548,0.034432548,0.034432548,0.034432548,0.034432548,0.388519585,0.388519585,0.388519585,0.388519585,0.388519585,0.388519585,0.388519585,0.388519585,0.005600269,0.005600269,0.005600269,0.005600269,0.005600269,0.005600269,0.005600269,0.005600269,0.005388038,0.005388038,0.005388038,0.005388038,0.005388038,0.005388038,0.005388038,0.005388038,0.002935244,0.002935244,0.002935244,0.002935244,0.002935244,0.002935244,0.002935244,0.002935244,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,3.23E-05,3.23E-05,3.23E-05,3.23E-05,3.23E-05,3.23E-05,3.23E-05,3.23E-05,0,0,0,0,0,0,0,0 +South Dakota,gas,0.023982326,0.023982326,0.023982326,0.024274348,0.025004404,0.025004404,0.025004404,0.025004404,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Tennessee,biomass,0.030189385,0.030189385,0.030189385,0.030189385,0.030189385,0.030189385,0.030189385,0.030189385,0.286581988,0.286581988,0.286581988,0.286581988,0.286581988,0.286581988,0.286581988,0.286581988,0.007585216,0.007585216,0.007585216,0.007585216,0.007585216,0.007585216,0.007585216,0.007585216,0.00757925,0.00757925,0.00757925,0.00757925,0.00757925,0.00757925,0.00757925,0.00757925,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000378963,0.000378963,0.000378963,0.000378963,0.000378963,0.000378963,0.000378963,0.000378963,0.00151585,0.00151585,0.00151585,0.00151585,0.00151585,0.00151585,0.00151585,0.00151585 +Tennessee,coal,0.031483799,0.031483799,0.031483799,0.031625686,0.031980403,0.031980403,0.031980403,0.031980403,0.977376633,0.977376633,0.977376633,0.967369771,0.942132912,0.942132912,0.942132912,0.942132912,0.018678615,0.018678615,0.018678615,0.018664183,0.018628103,0.018628103,0.018628103,0.018628103,0.0140438,0.0140438,0.0140438,0.01406095,0.014103824,0.014103824,0.014103824,0.014103824,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,8.43E-05,8.43E-05,8.43E-05,8.44E-05,8.46E-05,8.46E-05,8.46E-05,8.46E-05,0,0,0,0,0,0,0,0 +Tennessee,gas,0.007770758,0.007770758,0.007770758,0.007507748,0.006850222,0.006850222,0.006850222,0.006850222,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Texas,biomass,0.022641039,0.018220392,0.016010068,0.016884149,0.019069353,0.019069353,0.019069353,0.019069353,0.376971768,0.382185853,0.384792896,0.384528419,0.383869243,0.383869243,0.383869243,0.383869243,0.016334792,0.012016462,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.016154917,0.011788003,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000807746,0.0005894,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.003230983,0.002357601,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Texas,coal,0.059054414,0.059515346,0.059745811,0.059818956,0.060001817,0.060001817,0.060001817,0.060001817,0.118936283,0.864837832,0.787788644,0.786559142,0.783484941,0.783484941,0.783484941,0.783484941,0.021736809,0.020478588,0.019849478,0.019872232,0.019929117,0.019929117,0.019929117,0.019929117,0.014511393,0.013889214,0.013578125,0.013584149,0.013599211,0.013599211,0.013599211,0.013599211,0.00187472,0.001887278,0.001893557,0.00189276,0.001890769,0.001890769,0.001890769,0.001890769,0.014416672,0.014465984,0.01449064,0.014487512,0.014479691,0.014479691,0.014479691,0.014479691,0.000895632,0.000899996,0.000902178,0.000901902,0.000901209,0.000901209,0.000901209,0.000901209,8.71E-05,8.33E-05,8.15E-05,8.15E-05,8.16E-05,8.16E-05,8.16E-05,8.16E-05,0,0,0,0,0,0,0,0 +Texas,gas,0.022797135,0.022797135,0.022797135,0.021467105,0.01814203,0.01814203,0.01814203,0.01814203,0.142569665,0.142569665,0.142569665,0.199654712,9.28E-06,9.28E-06,9.28E-06,9.28E-06,0.000161896,0.000161896,0.000161896,0.000160005,0.000155276,0.000155276,0.000155276,0.000155276,0.000107177,0.000107177,0.000107177,0.000105015,9.96E-05,9.96E-05,9.96E-05,9.96E-05,0.001209095,0.001209095,0.001209095,0.001179186,0.001104413,0.001104413,0.001104413,0.001104413,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.002801555,0.002801555,0.002801555,0.002831112,0.002905005,0.002905005,0.002905005,0.002905005,6.43E-06,6.43E-06,6.43E-06,6.30E-06,5.98E-06,5.98E-06,5.98E-06,5.98E-06,5.36E-05,5.36E-05,5.36E-05,5.25E-05,4.98E-05,4.98E-05,4.98E-05,4.98E-05 +Utah,coal,0.154669202,0.154669202,0.154669202,0.154641339,0.154571679,0.154571679,0.154571679,0.154571679,0.455393212,0.455393212,0.455393212,0.454549986,0.452651647,0.452651647,0.452651647,0.452651647,0.013605152,0.013605152,0.013605152,0.013565484,0.013466314,0.013466314,0.013466314,0.013466314,0.010271173,0.010271173,0.010271173,0.010232889,0.010137179,0.010137179,0.010137179,0.010137179,0.00121702,0.00121702,0.00121702,0.001217021,0.001217023,0.001217023,0.001217023,0.001217023,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,6.16E-05,6.16E-05,6.16E-05,6.14E-05,6.08E-05,6.08E-05,6.08E-05,6.08E-05,0,0,0,0,0,0,0,0 +Utah,gas,0.020454078,0.020454078,0.020454078,0.018975359,0.01527856,0.01527856,0.01527856,0.01527856,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Vermont,biomass,0.054445642,0.054445642,0.054445642,0.054445642,0.054445642,0.054445642,0.054445642,0.054445642,0.379126799,0.379126799,0.379126799,0.379126799,0.379126799,0.379126799,0.379126799,0.379126799,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Vermont,gas,0.037912677,0.037912677,0.037912677,0.037912677,0.037912677,0.037912677,0.037912677,0.037912677,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Virginia,biomass,0.026134991,0.026134991,0.026134991,0.022967388,0.015048381,0.015048381,0.015048381,0.015048381,0.372564422,0.372564422,0.372564422,0.374436517,0.3791268,0.3791268,0.3791268,0.3791268,0.00963839,0.00963839,0.00963839,0.009700934,0.009857297,0.009857297,0.009857297,0.009857297,0.009403149,0.009403149,0.009403149,0.009460691,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000470157,0.000470157,0.000470157,0.000473035,0.000480227,0.000480227,0.000480227,0.000480227,0.00188063,0.00188063,0.00188063,0.001892138,0.001920909,0.001920909,0.001920909,0.001920909 +Virginia,coal,0.098269457,0.098269457,0.098269457,0.099266573,0.101759362,0.101759362,0.101759362,0.101759362,0.854278732,0.854278732,0.854278732,0.799749839,0.785614825,0.785614825,0.785614825,0.785614825,0.01490102,0.01490102,0.01490102,0.014982915,0.015187654,0.015187654,0.015187654,0.015187654,0.012622312,0.012622312,0.012622312,0.012680468,0.012825859,0.012825859,0.012825859,0.012825859,0.001150716,0.001150716,0.001150716,0.00115194,0.001155001,0.001155001,0.001155001,0.001155001,0.094314946,0.094314946,0.094314946,0.092037739,0.086344723,0.086344723,0.086344723,0.086344723,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,7.57E-05,7.57E-05,7.57E-05,7.61E-05,7.70E-05,7.70E-05,7.70E-05,7.70E-05,0,0,0,0,0,0,0,0 +Virginia,gas,0.018742562,0.018742562,0.018742562,0.018658303,0.018447653,0.018447653,0.018447653,0.018447653,4.47E-06,4.47E-06,4.47E-06,4.65E-06,4.95E-06,4.95E-06,4.95E-06,4.95E-06,0.000147277,0.000147277,0.000147277,0.000147168,0.000146895,0.000146895,0.000146895,0.000146895,9.05E-05,9.05E-05,9.05E-05,9.03E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000977916,0.000977916,0.000977916,0.000976192,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003030014,0.003030014,0.003030014,0.003031717,0.003035976,0.003035976,0.003035976,0.003035976,5.43E-06,5.43E-06,5.43E-06,5.42E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.52E-05,4.52E-05,4.52E-05,4.52E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Virginia,oil,0.01118836,0.01118836,0.01118836,0.01118836,0.01118836,0.01118836,0.01118836,0.01118836,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.499436377,0.000923599,0.000923599,0.000923599,0.000923599,0.000923599,0.000923599,0.000923599,0.000923599,0.000885921,0.000885921,0.000885921,0.000885921,0.000885921,0.000885921,0.000885921,0.000885921,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.000240114,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.001579695,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000252751,0.000265776,0.000265776,0.000265776,0.000265776,0.000265776,0.000265776,0.000265776,0.000265776,7.97E-05,7.97E-05,7.97E-05,7.97E-05,7.97E-05,7.97E-05,7.97E-05,7.97E-05 +Washington,biomass,0.112850521,0.112850521,0.112850521,0.112831867,0.112785231,0.112785231,0.112785231,0.112785231,0.455694432,0.455694432,0.455694432,0.455354425,0.454544619,0.454544619,0.454544619,0.454544619,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009857297,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.009604546,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.000480227,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909,0.001920909 +Washington,coal,0.107294855,0.107294855,0.107294855,0.107294855,0.107294855,0.107294855,0.107294855,0.107294855,0.291389689,0.291389689,0.291389689,0.291389689,0.291389689,0.291389689,0.291389689,0.291389689,0.004877723,0.004877723,0.004877723,0.004877723,0.004877723,0.004877723,0.004877723,0.004877723,0.004870991,0.004870991,0.004870991,0.004870991,0.004870991,0.004870991,0.004870991,0.004870991,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,2.92E-05,2.92E-05,2.92E-05,2.92E-05,2.92E-05,2.92E-05,2.92E-05,2.92E-05,0,0,0,0,0,0,0,0 +Washington,gas,0.018826951,0.018826951,0.018826951,0.016956273,0.012279578,0.012279578,0.012279578,0.012279578,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +West Virginia,biomass,0.029053592,0.029053592,0.029053592,0.029053592,0.029053592,0.029053592,0.029053592,0.029053592,0.284345999,0.284345999,0.284345999,0.284345999,0.284345999,0.284345999,0.284345999,0.284345999,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.010029089,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000501454,0.000501454,0.000501454,0.000501454,0.000501454,0.000501454,0.000501454,0.000501454,0.002005818,0.002005818,0.002005818,0.002005818,0.002005818,0.002005818,0.002005818,0.002005818 +West Virginia,coal,0.078524196,0.078524196,0.078524196,0.078646706,0.078952979,0.078952979,0.078952979,0.078952979,0.942912516,0.942912516,0.942912516,0.943748627,0.945867646,0.945867646,0.945867646,0.945867646,0.019118237,0.019118237,0.019118237,0.019107573,0.019080912,0.019080912,0.019080912,0.019080912,0.014236108,0.014236108,0.014236108,0.014231367,0.014219516,0.014219516,0.014219516,0.014219516,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.001222464,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.010187199,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,0.000611232,8.54E-05,8.54E-05,8.54E-05,8.54E-05,8.53E-05,8.53E-05,8.53E-05,8.53E-05,0,0,0,0,0,0,0,0 +West Virginia,gas,0.027095457,0.027095457,0.027095457,0.021057146,0.005961369,0.005961369,0.005961369,0.005961369,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.000971883,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 +Wisconsin,biomass,0.025551885,0.025551885,0.025551885,0.025171824,0.02422167,0.02422167,0.02422167,0.02422167,0.329258495,0.329258495,0.329258495,0.321241486,0.311989638,0.311989638,0.311989638,0.311989638,0.008372363,0.008372363,0.008372363,0.008394118,0.008448507,0.008448507,0.008448507,0.008448507,0.00822029,0.00822029,0.00822029,0.008247328,0.008314923,0.008314923,0.008314923,0.008314923,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.007503551,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.26854815,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.003554314,0.000411014,0.000411014,0.000411014,0.000412366,0.000415746,0.000415746,0.000415746,0.000415746,0.001644058,0.001644058,0.001644058,0.001649466,0.001662985,0.001662985,0.001662985,0.001662985 +Wisconsin,coal,0.037104659,0.037104659,0.037104659,0.036294961,0.034270714,0.034270714,0.034270714,0.034270714,0.296579191,0.296579191,0.296579191,0.298546614,0.291348585,0.291348585,0.291348585,0.291348585,0.008972263,0.008972263,0.008972263,0.008952216,0.008902098,0.008902098,0.008902098,0.008902098,0.007537513,0.007537513,0.007537513,0.007519355,0.007473962,0.007473962,0.007473962,0.007473962,0.001549419,0.001549419,0.001549419,0.001550119,0.00155187,0.00155187,0.00155187,0.00155187,0.013451294,0.013451294,0.013451294,0.013461212,0.013486007,0.013486007,0.013486007,0.013486007,0.000798837,0.000798837,0.000798837,0.000799226,0.000800196,0.000800196,0.000800196,0.000800196,4.52E-05,4.52E-05,4.52E-05,4.51E-05,4.48E-05,4.48E-05,4.48E-05,4.48E-05,0,0,0,0,0,0,0,0 +Wisconsin,gas,0.010740975,0.010740975,0.010740975,0.011005308,0.011666142,0.011666142,0.011666142,0.011666142,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146987,0.000147217,0.000147217,0.000147217,0.000147217,9.00E-05,9.00E-05,9.00E-05,9.01E-05,9.04E-05,9.04E-05,9.04E-05,9.04E-05,0.000971883,0.000971883,0.000971883,0.000973336,0.00097697,0.00097697,0.00097697,0.00097697,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.00303454,0.003030949,0.003030949,0.003030949,0.003030949,5.40E-06,5.40E-06,5.40E-06,5.41E-06,5.42E-06,5.42E-06,5.42E-06,5.42E-06,4.50E-05,4.50E-05,4.50E-05,4.51E-05,4.52E-05,4.52E-05,4.52E-05,4.52E-05 +Wyoming,coal,0.120721522,0.074542167,0.051452489,0.049964062,0.046242993,0.046242993,0.046242993,0.046242993,0.542546562,0.542546562,0.542546562,0.563197792,0.614825871,0.614825871,0.614825871,0.614825871,0.013472593,0.013472593,0.013472593,0.014035712,0.01544351,0.01544351,0.01544351,0.01544351,0.010941869,0.010941869,0.010941869,0.011403223,0.012556609,0.012556609,0.012556609,0.012556609,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.001601042,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.013342019,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,0.000800521,6.57E-05,6.57E-05,6.57E-05,6.84E-05,7.53E-05,7.53E-05,7.53E-05,7.53E-05,0,0,0,0,0,0,0,0 +Wyoming,gas,0.023695451,0.023695451,0.023695451,0.023695451,0.023695451,0.023695451,0.023695451,0.023695451,,,,,,,,,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,0.000146895,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,9.00E-05,0.000971882,0.000971882,0.000971882,0.000971882,0.000971882,0.000971882,0.000971882,0.000971882,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.038875307,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,0.003035976,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,5.40E-06,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05,4.50E-05 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ_post2015.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ_post2015.csv new file mode 100644 index 0000000000..4b9350c803 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/EPA_state_egu_emission_factors_ktPJ_post2015.csv @@ -0,0 +1,148 @@ +# File: EPA_state_egu_emission_factors_ktPJ_post2015.csv +# Title: Electric Generating Unit (EGU) emission factors for US states for plants built after 2015 +# Source: Dan Loughlin at EPA-ORD. For most pollutants these came from GREET. NOx SO2 and PM emissions came from IPM +# Comments: Emission factors are assumed constant for all years +# Units: kilotonne per PJ fuel input +# Column types: cccn +# ---------- +fuel,technology,Non.CO2,emiss.coeff +refined liquids,refined liquids (steam/CT),CH4,2.87E-03 +refined liquids,refined liquids (steam/CT),N2O,5.72E-04 +refined liquids,refined liquids (steam/CT),NOx,2.43E-01 +refined liquids,refined liquids (steam/CT),SO2,3.11E-02 +refined liquids,refined liquids (steam/CT),PM10,2.46E-02 +refined liquids,refined liquids (steam/CT),PM2.5,6.23E-03 +refined liquids,refined liquids (steam/CT),CO,1.48E-03 +refined liquids,refined liquids (steam/CT),NMVOC,2.45E-04 +refined liquids,refined liquids (steam/CT),BC,3.74E-04 +refined liquids,refined liquids (steam/CT),OC,2.49E-04 +coal,coal (conv pul),CH4,1.00E-03 +coal,coal (conv pul),N2O,1.50E-03 +coal,coal (conv pul),NOx,3.01E-02 +coal,coal (conv pul),SO2,2.58E-02 +coal,coal (conv pul),PM10,2.13E-02 +coal,coal (conv pul),PM2.5,1.60E-02 +coal,coal (conv pul),CO,1.18E-02 +coal,coal (conv pul),NMVOC,1.42E-03 +coal,coal (conv pul),BC,6.90E-04 +coal,coal (conv pul),OC,1.30E-03 +coal,coal (IGCC),CH4,9.95E-04 +coal,coal (IGCC),N2O,1.50E-03 +coal,coal (IGCC),NOx,5.59E-03 +coal,coal (IGCC),SO2,6.45E-03 +coal,coal (IGCC),PM10,2.39E-01 +coal,coal (IGCC),PM2.5,6.96E-02 +coal,coal (IGCC),CO,2.12E-03 +coal,coal (IGCC),NMVOC,1.16E-04 +coal,coal (IGCC),BC,2.99E-03 +coal,coal (IGCC),OC,5.64E-03 +gas,gas (steam/CT),CH4,1.00E-03 +gas,gas (steam/CT),N2O,9.67E-05 +gas,gas (steam/CT),NOx,4.73E-03 +gas,gas (steam/CT),SO2,0 +gas,gas (steam/CT),PM10,3.39E-03 +gas,gas (steam/CT),PM2.5,3.39E-03 +gas,gas (steam/CT),CO,3.91E-02 +gas,gas (steam/CT),NMVOC,1.00E-03 +gas,gas (steam/CT),BC,9.83E-05 +gas,gas (steam/CT),OC,2.30E-03 +gas,gas (CC),CH4,1.08E-03 +gas,gas (CC),N2O,1.13E-04 +gas,gas (CC),NOx,4.73E-03 +gas,gas (CC),SO2,0 +gas,gas (CC),PM10,1.26E-04 +gas,gas (CC),PM2.5,1.26E-04 +gas,gas (CC),CO,1.38E-02 +gas,gas (CC),NMVOC,2.53E-04 +gas,gas (CC),BC,3.66E-06 +gas,gas (CC),OC,8.57E-05 +biomass,biomass (conv),CH4,9.35E-03 +biomass,biomass (conv),N2O,5.79E-03 +biomass,biomass (conv),NOx,8.61E-03 +biomass,biomass (conv),SO2,3.44E-02 +biomass,biomass (conv),PM10,3.47E-02 +biomass,biomass (conv),PM2.5,3.11E-02 +biomass,biomass (conv),CO,2.67E-01 +biomass,biomass (conv),NMVOC,7.57E-03 +biomass,biomass (conv),BC,4.30E-03 +biomass,biomass (conv),OC,1.10E-02 +biomass,biomass (IGCC),CH4,1.08E-03 +biomass,biomass (IGCC),N2O,1.13E-04 +biomass,biomass (IGCC),NOx,4.73E-03 +biomass,biomass (IGCC),SO2,0 +biomass,biomass (IGCC),PM10,1.26E-04 +biomass,biomass (IGCC),PM2.5,1.26E-04 +biomass,biomass (IGCC),CO,1.38E-02 +biomass,biomass (IGCC),NMVOC,2.53E-04 +biomass,biomass (IGCC),BC,3.66E-06 +biomass,biomass (IGCC),OC,8.57E-05 +refined liquids,refined liquids (CC),CH4,2.87E-03 +refined liquids,refined liquids (CC),N2O,5.72E-04 +refined liquids,refined liquids (CC),NOx,2.43E-01 +refined liquids,refined liquids (CC),SO2,3.11E-02 +refined liquids,refined liquids (CC),PM10,2.46E-02 +refined liquids,refined liquids (CC),PM2.5,6.23E-03 +refined liquids,refined liquids (CC),CO,1.48E-03 +refined liquids,refined liquids (CC),NMVOC,2.45E-04 +refined liquids,refined liquids (CC),BC,3.74E-04 +refined liquids,refined liquids (CC),OC,2.49E-04 +refined liquids,refined liquids (CC CCS),CH4,2.87E-03 +refined liquids,refined liquids (CC CCS),N2O,5.72E-04 +refined liquids,refined liquids (CC CCS),NOx,2.43E-01 +refined liquids,refined liquids (CC CCS),SO2,3.11E-02 +refined liquids,refined liquids (CC CCS),PM10,2.46E-02 +refined liquids,refined liquids (CC CCS),PM2.5,6.23E-03 +refined liquids,refined liquids (CC CCS),CO,1.48E-03 +refined liquids,refined liquids (CC CCS),NMVOC,2.45E-04 +refined liquids,refined liquids (CC CCS),BC,3.74E-04 +refined liquids,refined liquids (CC CCS),OC,2.49E-04 +coal,coal (conv pul CCS),CH4,1.00E-03 +coal,coal (conv pul CCS),N2O,1.50E-03 +coal,coal (conv pul CCS),NOx,3.01E-02 +coal,coal (conv pul CCS),SO2,2.58E-02 +coal,coal (conv pul CCS),PM10,2.13E-02 +coal,coal (conv pul CCS),PM2.5,1.60E-02 +coal,coal (conv pul CCS),CO,1.18E-02 +coal,coal (conv pul CCS),NMVOC,1.42E-03 +coal,coal (conv pul CCS),BC,6.90E-04 +coal,coal (conv pul CCS),OC,1.30E-03 +coal,coal (IGCC CCS),CH4,6.90E-04 +coal,coal (IGCC CCS),N2O,1.30E-03 +coal,coal (IGCC CCS),NOx,5.59E-03 +coal,coal (IGCC CCS),SO2,6.45E-03 +coal,coal (IGCC CCS),PM10,2.39E-01 +coal,coal (IGCC CCS),PM2.5,6.96E-02 +coal,coal (IGCC CCS),CO,2.12E-03 +coal,coal (IGCC CCS),NMVOC,1.16E-04 +coal,coal (IGCC CCS),BC,2.99E-03 +coal,coal (IGCC CCS),OC,5.64E-03 +biomass,biomass (conv CCS),CH4,9.35E-03 +biomass,biomass (conv CCS),N2O,5.79E-03 +biomass,biomass (conv CCS),NOx,8.61E-03 +biomass,biomass (conv CCS),SO2,3.44E-02 +biomass,biomass (conv CCS),PM10,3.47E-02 +biomass,biomass (conv CCS),PM2.5,3.11E-02 +biomass,biomass (conv CCS),CO,2.67E-01 +biomass,biomass (conv CCS),NMVOC,7.57E-03 +biomass,biomass (conv CCS),BC,4.30E-03 +biomass,biomass (conv CCS),OC,1.10E-02 +biomass,biomass (IGCC CCS),CH4,1.08E-03 +biomass,biomass (IGCC CCS),N2O,1.13E-04 +biomass,biomass (IGCC CCS),NOx,4.73E-03 +biomass,biomass (IGCC CCS),SO2,0 +biomass,biomass (IGCC CCS),PM10,1.26E-04 +biomass,biomass (IGCC CCS),PM2.5,1.26E-04 +biomass,biomass (IGCC CCS),CO,1.38E-02 +biomass,biomass (IGCC CCS),NMVOC,2.53E-04 +biomass,biomass (IGCC CCS),BC,3.66E-06 +biomass,biomass (IGCC CCS),OC,8.57E-05 +gas,gas (CC CCS),CH4,1.08E-03 +gas,gas (CC CCS),N2O,1.13E-04 +gas,gas (CC CCS),NOx,4.73E-03 +gas,gas (CC CCS),SO2,0 +gas,gas (CC CCS),PM10,1.26E-04 +gas,gas (CC CCS),PM2.5,1.26E-04 +gas,gas (CC CCS),CO,1.38E-02 +gas,gas (CC CCS),NMVOC,2.53E-04 +gas,gas (CC CCS),BC,3.66E-06 +gas,gas (CC CCS),OC,8.57E-05 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/GREET2014_LDV_CNG_EFs_tgEJ.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/GREET2014_LDV_CNG_EFs_tgEJ.csv new file mode 100644 index 0000000000..f0ebc367f3 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/GREET2014_LDV_CNG_EFs_tgEJ.csv @@ -0,0 +1,18 @@ +# File: GREET2014_LDV_CNG_EFs_tgEJ.csv +# Title: LDV CNG emission factors from GREET +# Source: Provided by Dan Loughlin from GREET 2014 doi: 10.11578/GREET-Excel-2014/dc.20200803.5 +# Comments: NA +# Units: Tg/EJ (input-driven) +# Column types: ccn +# ---------- +pollutant,Fuel,value +CH4,CNG,0.026104239 +N2O,CNG,0.001277042 +VOC,CNG,0.032602129 +CO,CNG,0.794864691 +NOX,CNG,0.037259576 +PM10,CNG,0.004807687 +PM2.5,CNG,0.002197263 +SO2,CNG,0.000254551 +BC,CNG,0.000404624 +OC,CNG,0.001194103 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/GREET2014_indrefining_EF_USA_tgEJ.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/GREET2014_indrefining_EF_USA_tgEJ.csv new file mode 100644 index 0000000000..28ac1ef959 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/GREET2014_indrefining_EF_USA_tgEJ.csv @@ -0,0 +1,80 @@ +# File: GREET2014_indrefining_EF_USA_tgEJ.csv +# Title: Emission factors for refining technologies +# Units: Tg/EJ (output-driven) +# Comments: From ORD +# Source: Provided by Dan Loughlin at ORD from GREET 2014 +# Column types: ccccicn +# ---------- +region,supplysector,subsector,stub.technology,year,Non.CO2,emiss.coeff +USA,refining,coal to liquids,coal to liquids,2015,NOx,0.00793 +USA,refining,coal to liquids,coal to liquids,2015,SO2,0.00654 +USA,refining,coal to liquids,coal to liquids,2015,CO,0.0029 +USA,refining,coal to liquids,coal to liquids,2015,PM10,0.00818 +USA,refining,coal to liquids,coal to liquids,2015,PM2.5,0.00122 +USA,refining,coal to liquids,coal to liquids,2015,BC,0.000041 +USA,refining,coal to liquids,coal to liquids,2015,OC,0.00015 +USA,refining,coal to liquids,coal to liquids,2015,CH4_epa,0.14 +USA,refining,coal to liquids,coal to liquids,2015,N2O_epa,0.0000282 +USA,refining,gas to liquids,gas to liquids,2015,NOx,0.0252 +USA,refining,gas to liquids,gas to liquids,2015,SO2,0.00648 +USA,refining,gas to liquids,gas to liquids,2015,CO,0.0178 +USA,refining,gas to liquids,gas to liquids,2015,PM10,0.0131 +USA,refining,gas to liquids,gas to liquids,2015,PM2.5,0.013 +USA,refining,gas to liquids,gas to liquids,2015,BC,0.000059 +USA,refining,gas to liquids,gas to liquids,2015,OC,0.000074 +USA,refining,gas to liquids,gas to liquids,2015,CH4_epa,0.0659 +USA,refining,gas to liquids,gas to liquids,2015,N2O_epa,0.0000807 +USA,refining,biomass liquids,cellulosic ethanol,2015,NOx,0.0158 +USA,refining,biomass liquids,cellulosic ethanol,2015,SO2,0.0209 +USA,refining,biomass liquids,cellulosic ethanol,2015,CO,0.0118 +USA,refining,biomass liquids,cellulosic ethanol,2015,PM10,0.00102 +USA,refining,biomass liquids,cellulosic ethanol,2015,PM2.5,0.000303 +USA,refining,biomass liquids,cellulosic ethanol,2015,BC,0.000022 +USA,refining,biomass liquids,cellulosic ethanol,2015,OC,0.000047 +USA,refining,biomass liquids,cellulosic ethanol,2015,CH4_epa,0.00235 +USA,refining,biomass liquids,cellulosic ethanol,2015,N2O_epa,0.000892 +USA,refining,biomass liquids,corn ethanol,2015,NOx,0.00209 +USA,refining,biomass liquids,corn ethanol,2015,SO2,0.00154 +USA,refining,biomass liquids,corn ethanol,2015,CO,0.00147 +USA,refining,biomass liquids,corn ethanol,2015,PM10,0.000982 +USA,refining,biomass liquids,corn ethanol,2015,PM2.5,0.00025 +USA,refining,biomass liquids,corn ethanol,2015,BC,0.000017 +USA,refining,biomass liquids,corn ethanol,2015,OC,0.000041 +USA,refining,biomass liquids,corn ethanol,2015,CH4_epa,0.00557 +USA,refining,biomass liquids,corn ethanol,2015,N2O_epa,0.0000552 +USA,refining,oil refining,oil refining,2005,NOx,0.0152 +USA,refining,oil refining,oil refining,2010,NOx,0.0112 +USA,refining,oil refining,oil refining,2015,NOx,0.00875 +USA,refining,oil refining,oil refining,2020,NOx,0.00787 +USA,refining,oil refining,oil refining,2005,CH4_epa,0.0169 +USA,refining,oil refining,oil refining,2010,CH4_epa,0.0171 +USA,refining,oil refining,oil refining,2015,CH4_epa,0.0165 +USA,refining,oil refining,oil refining,2020,CH4_epa,0.0163 +USA,refining,oil refining,oil refining,2005,N2O_epa,0.000112 +USA,refining,oil refining,oil refining,2010,N2O_epa,0.000156 +USA,refining,oil refining,oil refining,2015,N2O_epa,0.000148 +USA,refining,oil refining,oil refining,2020,N2O_epa,0.000146 +USA,refining,oil refining,oil refining,2005,SO2,0.0122 +USA,refining,oil refining,oil refining,2010,SO2,0.0137 +USA,refining,oil refining,oil refining,2015,SO2,0.0114 +USA,refining,oil refining,oil refining,2020,SO2,0.00729 +USA,refining,oil refining,oil refining,2005,CO,0.00568 +USA,refining,oil refining,oil refining,2010,CO,0.00556 +USA,refining,oil refining,oil refining,2015,CO,0.00513 +USA,refining,oil refining,oil refining,2020,CO,0.00496 +USA,refining,oil refining,oil refining,2005,PM10,0.0012 +USA,refining,oil refining,oil refining,2010,PM10,0.00123 +USA,refining,oil refining,oil refining,2015,PM10,0.000783 +USA,refining,oil refining,oil refining,2020,PM10,0.000745 +USA,refining,oil refining,oil refining,2005,PM2.5,0.00092 +USA,refining,oil refining,oil refining,2010,PM2.5,0.000776 +USA,refining,oil refining,oil refining,2015,PM2.5,0.000602 +USA,refining,oil refining,oil refining,2020,PM2.5,0.000563 +USA,refining,oil refining,oil refining,2005,BC,0.0000898 +USA,refining,oil refining,oil refining,2010,BC,0.0000786 +USA,refining,oil refining,oil refining,2015,BC,0.0000623 +USA,refining,oil refining,oil refining,2020,BC,0.0000543 +USA,refining,oil refining,oil refining,2005,OC,0.000188 +USA,refining,oil refining,oil refining,2010,OC,0.000173 +USA,refining,oil refining,oil refining,2015,OC,0.000139 +USA,refining,oil refining,oil refining,2020,OC,0.000129 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/IMO_Shipping_EF.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/IMO_Shipping_EF.csv new file mode 100644 index 0000000000..e2eeef5c76 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/IMO_Shipping_EF.csv @@ -0,0 +1,37 @@ +# File: IMO_Shipping_EF.csv +# Title: Emission factors for shipping in GCAM-USA +# Units: kg/kg +# Source: Fourth IMO GHG Study 2020 (MEPC 75-7-15) +# Column types: ccnnnnnnn +# ---------- +pollutant,CEDS_Fuel,2012,2013,2014,2015,2016,2017,2018 +CO2,heavy_oil,3.114,3.114,3.114,3.114,3.114,3.114,3.114 +CO2,diesel_oil,3.206,3.206,3.206,3.206,3.206,3.206,3.206 +CO2,natural_gas,2.75,2.75,2.749,2.749,2.75,2.753,2.755 +CH4,heavy_oil,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005 +CH4,diesel_oil,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005,0.00005 +CH4,natural_gas,0.00531,0.006,0.00735,0.00848,0.0102,0.01122,0.01196 +N2O,heavy_oil,0.00017,0.00017,0.00017,0.00017,0.00018,0.00018,0.00018 +N2O,diesel_oil,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018,0.00018 +N2O,natural_gas,0.00008,0.00008,0.00008,0.00009,0.00009,0.0001,0.0001 +NOx,heavy_oil,0.07861,0.07718,0.07619,0.07698,0.07671,0.07667,0.0759 +NOx,diesel_oil,0.05312,0.05251,0.05214,0.05768,0.05745,0.05762,0.05671 +NOx,natural_gas,0.0056,0.0059,0.00582,0.00599,0.00746,0.01095,0.01344 +CO,heavy_oil,0.00284,0.00283,0.00284,0.00286,0.00286,0.00287,0.00288 +CO,diesel_oil,0.00248,0.00247,0.00247,0.00258,0.00258,0.0026,0.00259 +CO,natural_gas,0.00188,0.00207,0.00238,0.00264,0.0031,0.00357,0.00397 +NMVOC,heavy_oil,0.00314,0.00313,0.00313,0.00317,0.00318,0.00319,0.0032 +NMVOC,diesel_oil,0.00216,0.00215,0.00215,0.00239,0.00239,0.00242,0.0024 +NMVOC,natural_gas,0.00081,0.00088,0.00099,0.00109,0.00126,0.00144,0.00159 +SOx,heavy_oil,0.04663,0.0448,0.04531,0.0479,0.05044,0.05083,0.05083 +SOx,diesel_oil,0.00274,0.00254,0.00235,0.00156,0.00156,0.00156,0.00137 +SOx,natural_gas,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003,0.00003 +PM,heavy_oil,0.00711,0.00696,0.00701,0.00726,0.00748,0.00753,0.00755 +PM,diesel_oil,0.00097,0.00096,0.00094,0.00092,0.00092,0.00092,0.0009 +PM,natural_gas,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011,0.00011 +PM2.5,heavy_oil,0.00654,0.00641,0.00645,0.00668,0.00688,0.00693,0.00694 +PM2.5,diesel_oil,0.0009,0.00088,0.00087,0.00084,0.00084,0.00085,0.00083 +PM2.5,natural_gas,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001,0.0001 +BC,heavy_oil,0.00026,0.00027,0.00027,0.00026,0.00026,0.00026,0.00026 +BC,diesel_oil,0.00043,0.00043,0.00043,0.00037,0.00037,0.00037,0.00038 +BC,natural_gas,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002,0.00002 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_GCAM_mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_GCAM_mapping.csv new file mode 100644 index 0000000000..2b0c14946f --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_GCAM_mapping.csv @@ -0,0 +1,19 @@ +# File: MARKAL_GCAM_mapping.csv +# Title: Mapping file between MARKAL and GCAM +# Source: NA - Mapping file +# Comments: NA +# Units: NA +# Column types: cc +# ---------- +class,GCAM_sector +Bus,Road-bus +Commercial truck,Road-truck-Light-Commertial +Compact car,Road-LDV +Full size car,Road-LDV +Heavy duty long haul truck,Road-truck-Long-haul +Heavy duty short haul truck,Road-truck-Short-haul +Large SUV,Road-LDV +Mini car,Road-LDV +Minivan,Road-LDV +Pickup,Road-LDV +Small SUV,Road-LDV diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_HDV_EFs_gpm.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_HDV_EFs_gpm.csv new file mode 100644 index 0000000000..a798148901 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_HDV_EFs_gpm.csv @@ -0,0 +1,269 @@ +# File: MARKAL_HDV_EFs_gpm.csv +# Title: Heavy Duty Vehicle Emission Factors (EFs) +# Source: MOVES2014 +# Comments: EFs by class fuel vintage pollutant year and region +# Units: grams per vehicle mile +# Column types: ccinnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn +# ---------- +Class,Fuel,Vintage,BC.2005.1,BC.2010.1,BC.2015.1,BC.2020.1,BC.2025.1,BC.2030.1,BC.2035.1,BC.2040.1,BC.2045.1,BC.2050.1,CH4.2005.1,CH4.2010.1,CH4.2015.1,CH4.2020.1,CH4.2025.1,CH4.2030.1,CH4.2035.1,CH4.2040.1,CH4.2045.1,CH4.2050.1,CO.2005.1,CO.2010.1,CO.2015.1,CO.2020.1,CO.2025.1,CO.2030.1,CO.2035.1,CO.2040.1,CO.2045.1,CO.2050.1,CO2.2005.1,CO2.2010.1,CO2.2015.1,CO2.2020.1,CO2.2025.1,CO2.2030.1,CO2.2035.1,CO2.2040.1,CO2.2045.1,CO2.2050.1,N2O.2005.1,N2O.2010.1,N2O.2015.1,N2O.2020.1,N2O.2025.1,N2O.2030.1,N2O.2035.1,N2O.2040.1,N2O.2045.1,N2O.2050.1,NH3.2005.1,NH3.2010.1,NH3.2015.1,NH3.2020.1,NH3.2025.1,NH3.2030.1,NH3.2035.1,NH3.2040.1,NH3.2045.1,NH3.2050.1,NOX.2005.1,NOX.2010.1,NOX.2015.1,NOX.2020.1,NOX.2025.1,NOX.2030.1,NOX.2035.1,NOX.2040.1,NOX.2045.1,NOX.2050.1,OC.2005.1,OC.2010.1,OC.2015.1,OC.2020.1,OC.2025.1,OC.2030.1,OC.2035.1,OC.2040.1,OC.2045.1,OC.2050.1,PM10.2005.1,PM10.2010.1,PM10.2015.1,PM10.2020.1,PM10.2025.1,PM10.2030.1,PM10.2035.1,PM10.2040.1,PM10.2045.1,PM10.2050.1,PM2_5.2005.1,PM2_5.2010.1,PM2_5.2015.1,PM2_5.2020.1,PM2_5.2025.1,PM2_5.2030.1,PM2_5.2035.1,PM2_5.2040.1,PM2_5.2045.1,PM2_5.2050.1,SO2.2005.1,SO2.2010.1,SO2.2015.1,SO2.2020.1,SO2.2025.1,SO2.2030.1,SO2.2035.1,SO2.2040.1,SO2.2045.1,SO2.2050.1,VOC.2005.1,VOC.2010.1,VOC.2015.1,VOC.2020.1,VOC.2025.1,VOC.2030.1,VOC.2035.1,VOC.2040.1,VOC.2045.1,VOC.2050.1,BC.2005.2,BC.2010.2,BC.2015.2,BC.2020.2,BC.2025.2,BC.2030.2,BC.2035.2,BC.2040.2,BC.2045.2,BC.2050.2,CH4.2005.2,CH4.2010.2,CH4.2015.2,CH4.2020.2,CH4.2025.2,CH4.2030.2,CH4.2035.2,CH4.2040.2,CH4.2045.2,CH4.2050.2,CO.2005.2,CO.2010.2,CO.2015.2,CO.2020.2,CO.2025.2,CO.2030.2,CO.2035.2,CO.2040.2,CO.2045.2,CO.2050.2,CO2.2005.2,CO2.2010.2,CO2.2015.2,CO2.2020.2,CO2.2025.2,CO2.2030.2,CO2.2035.2,CO2.2040.2,CO2.2045.2,CO2.2050.2,N2O.2005.2,N2O.2010.2,N2O.2015.2,N2O.2020.2,N2O.2025.2,N2O.2030.2,N2O.2035.2,N2O.2040.2,N2O.2045.2,N2O.2050.2,NH3.2005.2,NH3.2010.2,NH3.2015.2,NH3.2020.2,NH3.2025.2,NH3.2030.2,NH3.2035.2,NH3.2040.2,NH3.2045.2,NH3.2050.2,NOX.2005.2,NOX.2010.2,NOX.2015.2,NOX.2020.2,NOX.2025.2,NOX.2030.2,NOX.2035.2,NOX.2040.2,NOX.2045.2,NOX.2050.2,OC.2005.2,OC.2010.2,OC.2015.2,OC.2020.2,OC.2025.2,OC.2030.2,OC.2035.2,OC.2040.2,OC.2045.2,OC.2050.2,PM10.2005.2,PM10.2010.2,PM10.2015.2,PM10.2020.2,PM10.2025.2,PM10.2030.2,PM10.2035.2,PM10.2040.2,PM10.2045.2,PM10.2050.2,PM2_5.2005.2,PM2_5.2010.2,PM2_5.2015.2,PM2_5.2020.2,PM2_5.2025.2,PM2_5.2030.2,PM2_5.2035.2,PM2_5.2040.2,PM2_5.2045.2,PM2_5.2050.2,SO2.2005.2,SO2.2010.2,SO2.2015.2,SO2.2020.2,SO2.2025.2,SO2.2030.2,SO2.2035.2,SO2.2040.2,SO2.2045.2,SO2.2050.2,VOC.2005.2,VOC.2010.2,VOC.2015.2,VOC.2020.2,VOC.2025.2,VOC.2030.2,VOC.2035.2,VOC.2040.2,VOC.2045.2,VOC.2050.2,BC.2005.3,BC.2010.3,BC.2015.3,BC.2020.3,BC.2025.3,BC.2030.3,BC.2035.3,BC.2040.3,BC.2045.3,BC.2050.3,CH4.2005.3,CH4.2010.3,CH4.2015.3,CH4.2020.3,CH4.2025.3,CH4.2030.3,CH4.2035.3,CH4.2040.3,CH4.2045.3,CH4.2050.3,CO.2005.3,CO.2010.3,CO.2015.3,CO.2020.3,CO.2025.3,CO.2030.3,CO.2035.3,CO.2040.3,CO.2045.3,CO.2050.3,CO2.2005.3,CO2.2010.3,CO2.2015.3,CO2.2020.3,CO2.2025.3,CO2.2030.3,CO2.2035.3,CO2.2040.3,CO2.2045.3,CO2.2050.3,N2O.2005.3,N2O.2010.3,N2O.2015.3,N2O.2020.3,N2O.2025.3,N2O.2030.3,N2O.2035.3,N2O.2040.3,N2O.2045.3,N2O.2050.3,NH3.2005.3,NH3.2010.3,NH3.2015.3,NH3.2020.3,NH3.2025.3,NH3.2030.3,NH3.2035.3,NH3.2040.3,NH3.2045.3,NH3.2050.3,NOX.2005.3,NOX.2010.3,NOX.2015.3,NOX.2020.3,NOX.2025.3,NOX.2030.3,NOX.2035.3,NOX.2040.3,NOX.2045.3,NOX.2050.3,OC.2005.3,OC.2010.3,OC.2015.3,OC.2020.3,OC.2025.3,OC.2030.3,OC.2035.3,OC.2040.3,OC.2045.3,OC.2050.3,PM10.2005.3,PM10.2010.3,PM10.2015.3,PM10.2020.3,PM10.2025.3,PM10.2030.3,PM10.2035.3,PM10.2040.3,PM10.2045.3,PM10.2050.3,PM2_5.2005.3,PM2_5.2010.3,PM2_5.2015.3,PM2_5.2020.3,PM2_5.2025.3,PM2_5.2030.3,PM2_5.2035.3,PM2_5.2040.3,PM2_5.2045.3,PM2_5.2050.3,SO2.2005.3,SO2.2010.3,SO2.2015.3,SO2.2020.3,SO2.2025.3,SO2.2030.3,SO2.2035.3,SO2.2040.3,SO2.2045.3,SO2.2050.3,VOC.2005.3,VOC.2010.3,VOC.2015.3,VOC.2020.3,VOC.2025.3,VOC.2030.3,VOC.2035.3,VOC.2040.3,VOC.2045.3,VOC.2050.3,BC.2005.4,BC.2010.4,BC.2015.4,BC.2020.4,BC.2025.4,BC.2030.4,BC.2035.4,BC.2040.4,BC.2045.4,BC.2050.4,CH4.2005.4,CH4.2010.4,CH4.2015.4,CH4.2020.4,CH4.2025.4,CH4.2030.4,CH4.2035.4,CH4.2040.4,CH4.2045.4,CH4.2050.4,CO.2005.4,CO.2010.4,CO.2015.4,CO.2020.4,CO.2025.4,CO.2030.4,CO.2035.4,CO.2040.4,CO.2045.4,CO.2050.4,CO2.2005.4,CO2.2010.4,CO2.2015.4,CO2.2020.4,CO2.2025.4,CO2.2030.4,CO2.2035.4,CO2.2040.4,CO2.2045.4,CO2.2050.4,N2O.2005.4,N2O.2010.4,N2O.2015.4,N2O.2020.4,N2O.2025.4,N2O.2030.4,N2O.2035.4,N2O.2040.4,N2O.2045.4,N2O.2050.4,NH3.2005.4,NH3.2010.4,NH3.2015.4,NH3.2020.4,NH3.2025.4,NH3.2030.4,NH3.2035.4,NH3.2040.4,NH3.2045.4,NH3.2050.4,NOX.2005.4,NOX.2010.4,NOX.2015.4,NOX.2020.4,NOX.2025.4,NOX.2030.4,NOX.2035.4,NOX.2040.4,NOX.2045.4,NOX.2050.4,OC.2005.4,OC.2010.4,OC.2015.4,OC.2020.4,OC.2025.4,OC.2030.4,OC.2035.4,OC.2040.4,OC.2045.4,OC.2050.4,PM10.2005.4,PM10.2010.4,PM10.2015.4,PM10.2020.4,PM10.2025.4,PM10.2030.4,PM10.2035.4,PM10.2040.4,PM10.2045.4,PM10.2050.4,PM2_5.2005.4,PM2_5.2010.4,PM2_5.2015.4,PM2_5.2020.4,PM2_5.2025.4,PM2_5.2030.4,PM2_5.2035.4,PM2_5.2040.4,PM2_5.2045.4,PM2_5.2050.4,SO2.2005.4,SO2.2010.4,SO2.2015.4,SO2.2020.4,SO2.2025.4,SO2.2030.4,SO2.2035.4,SO2.2040.4,SO2.2045.4,SO2.2050.4,VOC.2005.4,VOC.2010.4,VOC.2015.4,VOC.2020.4,VOC.2025.4,VOC.2030.4,VOC.2035.4,VOC.2040.4,VOC.2045.4,VOC.2050.4,BC.2005.5,BC.2010.5,BC.2015.5,BC.2020.5,BC.2025.5,BC.2030.5,BC.2035.5,BC.2040.5,BC.2045.5,BC.2050.5,CH4.2005.5,CH4.2010.5,CH4.2015.5,CH4.2020.5,CH4.2025.5,CH4.2030.5,CH4.2035.5,CH4.2040.5,CH4.2045.5,CH4.2050.5,CO.2005.5,CO.2010.5,CO.2015.5,CO.2020.5,CO.2025.5,CO.2030.5,CO.2035.5,CO.2040.5,CO.2045.5,CO.2050.5,CO2.2005.5,CO2.2010.5,CO2.2015.5,CO2.2020.5,CO2.2025.5,CO2.2030.5,CO2.2035.5,CO2.2040.5,CO2.2045.5,CO2.2050.5,N2O.2005.5,N2O.2010.5,N2O.2015.5,N2O.2020.5,N2O.2025.5,N2O.2030.5,N2O.2035.5,N2O.2040.5,N2O.2045.5,N2O.2050.5,NH3.2005.5,NH3.2010.5,NH3.2015.5,NH3.2020.5,NH3.2025.5,NH3.2030.5,NH3.2035.5,NH3.2040.5,NH3.2045.5,NH3.2050.5,NOX.2005.5,NOX.2010.5,NOX.2015.5,NOX.2020.5,NOX.2025.5,NOX.2030.5,NOX.2035.5,NOX.2040.5,NOX.2045.5,NOX.2050.5,OC.2005.5,OC.2010.5,OC.2015.5,OC.2020.5,OC.2025.5,OC.2030.5,OC.2035.5,OC.2040.5,OC.2045.5,OC.2050.5,PM10.2005.5,PM10.2010.5,PM10.2015.5,PM10.2020.5,PM10.2025.5,PM10.2030.5,PM10.2035.5,PM10.2040.5,PM10.2045.5,PM10.2050.5,PM2_5.2005.5,PM2_5.2010.5,PM2_5.2015.5,PM2_5.2020.5,PM2_5.2025.5,PM2_5.2030.5,PM2_5.2035.5,PM2_5.2040.5,PM2_5.2045.5,PM2_5.2050.5,SO2.2005.5,SO2.2010.5,SO2.2015.5,SO2.2020.5,SO2.2025.5,SO2.2030.5,SO2.2035.5,SO2.2040.5,SO2.2045.5,SO2.2050.5,VOC.2005.5,VOC.2010.5,VOC.2015.5,VOC.2020.5,VOC.2025.5,VOC.2030.5,VOC.2035.5,VOC.2040.5,VOC.2045.5,VOC.2050.5,BC.2005.6,BC.2010.6,BC.2015.6,BC.2020.6,BC.2025.6,BC.2030.6,BC.2035.6,BC.2040.6,BC.2045.6,BC.2050.6,CH4.2005.6,CH4.2010.6,CH4.2015.6,CH4.2020.6,CH4.2025.6,CH4.2030.6,CH4.2035.6,CH4.2040.6,CH4.2045.6,CH4.2050.6,CO.2005.6,CO.2010.6,CO.2015.6,CO.2020.6,CO.2025.6,CO.2030.6,CO.2035.6,CO.2040.6,CO.2045.6,CO.2050.6,CO2.2005.6,CO2.2010.6,CO2.2015.6,CO2.2020.6,CO2.2025.6,CO2.2030.6,CO2.2035.6,CO2.2040.6,CO2.2045.6,CO2.2050.6,N2O.2005.6,N2O.2010.6,N2O.2015.6,N2O.2020.6,N2O.2025.6,N2O.2030.6,N2O.2035.6,N2O.2040.6,N2O.2045.6,N2O.2050.6,NH3.2005.6,NH3.2010.6,NH3.2015.6,NH3.2020.6,NH3.2025.6,NH3.2030.6,NH3.2035.6,NH3.2040.6,NH3.2045.6,NH3.2050.6,NOX.2005.6,NOX.2010.6,NOX.2015.6,NOX.2020.6,NOX.2025.6,NOX.2030.6,NOX.2035.6,NOX.2040.6,NOX.2045.6,NOX.2050.6,OC.2005.6,OC.2010.6,OC.2015.6,OC.2020.6,OC.2025.6,OC.2030.6,OC.2035.6,OC.2040.6,OC.2045.6,OC.2050.6,PM10.2005.6,PM10.2010.6,PM10.2015.6,PM10.2020.6,PM10.2025.6,PM10.2030.6,PM10.2035.6,PM10.2040.6,PM10.2045.6,PM10.2050.6,PM2_5.2005.6,PM2_5.2010.6,PM2_5.2015.6,PM2_5.2020.6,PM2_5.2025.6,PM2_5.2030.6,PM2_5.2035.6,PM2_5.2040.6,PM2_5.2045.6,PM2_5.2050.6,SO2.2005.6,SO2.2010.6,SO2.2015.6,SO2.2020.6,SO2.2025.6,SO2.2030.6,SO2.2035.6,SO2.2040.6,SO2.2045.6,SO2.2050.6,VOC.2005.6,VOC.2010.6,VOC.2015.6,VOC.2020.6,VOC.2025.6,VOC.2030.6,VOC.2035.6,VOC.2040.6,VOC.2045.6,VOC.2050.6,BC.2005.7,BC.2010.7,BC.2015.7,BC.2020.7,BC.2025.7,BC.2030.7,BC.2035.7,BC.2040.7,BC.2045.7,BC.2050.7,CH4.2005.7,CH4.2010.7,CH4.2015.7,CH4.2020.7,CH4.2025.7,CH4.2030.7,CH4.2035.7,CH4.2040.7,CH4.2045.7,CH4.2050.7,CO.2005.7,CO.2010.7,CO.2015.7,CO.2020.7,CO.2025.7,CO.2030.7,CO.2035.7,CO.2040.7,CO.2045.7,CO.2050.7,CO2.2005.7,CO2.2010.7,CO2.2015.7,CO2.2020.7,CO2.2025.7,CO2.2030.7,CO2.2035.7,CO2.2040.7,CO2.2045.7,CO2.2050.7,N2O.2005.7,N2O.2010.7,N2O.2015.7,N2O.2020.7,N2O.2025.7,N2O.2030.7,N2O.2035.7,N2O.2040.7,N2O.2045.7,N2O.2050.7,NH3.2005.7,NH3.2010.7,NH3.2015.7,NH3.2020.7,NH3.2025.7,NH3.2030.7,NH3.2035.7,NH3.2040.7,NH3.2045.7,NH3.2050.7,NOX.2005.7,NOX.2010.7,NOX.2015.7,NOX.2020.7,NOX.2025.7,NOX.2030.7,NOX.2035.7,NOX.2040.7,NOX.2045.7,NOX.2050.7,OC.2005.7,OC.2010.7,OC.2015.7,OC.2020.7,OC.2025.7,OC.2030.7,OC.2035.7,OC.2040.7,OC.2045.7,OC.2050.7,PM10.2005.7,PM10.2010.7,PM10.2015.7,PM10.2020.7,PM10.2025.7,PM10.2030.7,PM10.2035.7,PM10.2040.7,PM10.2045.7,PM10.2050.7,PM2_5.2005.7,PM2_5.2010.7,PM2_5.2015.7,PM2_5.2020.7,PM2_5.2025.7,PM2_5.2030.7,PM2_5.2035.7,PM2_5.2040.7,PM2_5.2045.7,PM2_5.2050.7,SO2.2005.7,SO2.2010.7,SO2.2015.7,SO2.2020.7,SO2.2025.7,SO2.2030.7,SO2.2035.7,SO2.2040.7,SO2.2045.7,SO2.2050.7,VOC.2005.7,VOC.2010.7,VOC.2015.7,VOC.2020.7,VOC.2025.7,VOC.2030.7,VOC.2035.7,VOC.2040.7,VOC.2045.7,VOC.2050.7,BC.2005.8,BC.2010.8,BC.2015.8,BC.2020.8,BC.2025.8,BC.2030.8,BC.2035.8,BC.2040.8,BC.2045.8,BC.2050.8,CH4.2005.8,CH4.2010.8,CH4.2015.8,CH4.2020.8,CH4.2025.8,CH4.2030.8,CH4.2035.8,CH4.2040.8,CH4.2045.8,CH4.2050.8,CO.2005.8,CO.2010.8,CO.2015.8,CO.2020.8,CO.2025.8,CO.2030.8,CO.2035.8,CO.2040.8,CO.2045.8,CO.2050.8,CO2.2005.8,CO2.2010.8,CO2.2015.8,CO2.2020.8,CO2.2025.8,CO2.2030.8,CO2.2035.8,CO2.2040.8,CO2.2045.8,CO2.2050.8,N2O.2005.8,N2O.2010.8,N2O.2015.8,N2O.2020.8,N2O.2025.8,N2O.2030.8,N2O.2035.8,N2O.2040.8,N2O.2045.8,N2O.2050.8,NH3.2005.8,NH3.2010.8,NH3.2015.8,NH3.2020.8,NH3.2025.8,NH3.2030.8,NH3.2035.8,NH3.2040.8,NH3.2045.8,NH3.2050.8,NOX.2005.8,NOX.2010.8,NOX.2015.8,NOX.2020.8,NOX.2025.8,NOX.2030.8,NOX.2035.8,NOX.2040.8,NOX.2045.8,NOX.2050.8,OC.2005.8,OC.2010.8,OC.2015.8,OC.2020.8,OC.2025.8,OC.2030.8,OC.2035.8,OC.2040.8,OC.2045.8,OC.2050.8,PM10.2005.8,PM10.2010.8,PM10.2015.8,PM10.2020.8,PM10.2025.8,PM10.2030.8,PM10.2035.8,PM10.2040.8,PM10.2045.8,PM10.2050.8,PM2_5.2005.8,PM2_5.2010.8,PM2_5.2015.8,PM2_5.2020.8,PM2_5.2025.8,PM2_5.2030.8,PM2_5.2035.8,PM2_5.2040.8,PM2_5.2045.8,PM2_5.2050.8,SO2.2005.8,SO2.2010.8,SO2.2015.8,SO2.2020.8,SO2.2025.8,SO2.2030.8,SO2.2035.8,SO2.2040.8,SO2.2045.8,SO2.2050.8,VOC.2005.8,VOC.2010.8,VOC.2015.8,VOC.2020.8,VOC.2025.8,VOC.2030.8,VOC.2035.8,VOC.2040.8,VOC.2045.8,VOC.2050.8,BC.2005.9,BC.2010.9,BC.2015.9,BC.2020.9,BC.2025.9,BC.2030.9,BC.2035.9,BC.2040.9,BC.2045.9,BC.2050.9,CH4.2005.9,CH4.2010.9,CH4.2015.9,CH4.2020.9,CH4.2025.9,CH4.2030.9,CH4.2035.9,CH4.2040.9,CH4.2045.9,CH4.2050.9,CO.2005.9,CO.2010.9,CO.2015.9,CO.2020.9,CO.2025.9,CO.2030.9,CO.2035.9,CO.2040.9,CO.2045.9,CO.2050.9,CO2.2005.9,CO2.2010.9,CO2.2015.9,CO2.2020.9,CO2.2025.9,CO2.2030.9,CO2.2035.9,CO2.2040.9,CO2.2045.9,CO2.2050.9,N2O.2005.9,N2O.2010.9,N2O.2015.9,N2O.2020.9,N2O.2025.9,N2O.2030.9,N2O.2035.9,N2O.2040.9,N2O.2045.9,N2O.2050.9,NH3.2005.9,NH3.2010.9,NH3.2015.9,NH3.2020.9,NH3.2025.9,NH3.2030.9,NH3.2035.9,NH3.2040.9,NH3.2045.9,NH3.2050.9,NOX.2005.9,NOX.2010.9,NOX.2015.9,NOX.2020.9,NOX.2025.9,NOX.2030.9,NOX.2035.9,NOX.2040.9,NOX.2045.9,NOX.2050.9,OC.2005.9,OC.2010.9,OC.2015.9,OC.2020.9,OC.2025.9,OC.2030.9,OC.2035.9,OC.2040.9,OC.2045.9,OC.2050.9,PM10.2005.9,PM10.2010.9,PM10.2015.9,PM10.2020.9,PM10.2025.9,PM10.2030.9,PM10.2035.9,PM10.2040.9,PM10.2045.9,PM10.2050.9,PM2_5.2005.9,PM2_5.2010.9,PM2_5.2015.9,PM2_5.2020.9,PM2_5.2025.9,PM2_5.2030.9,PM2_5.2035.9,PM2_5.2040.9,PM2_5.2045.9,PM2_5.2050.9,SO2.2005.9,SO2.2010.9,SO2.2015.9,SO2.2020.9,SO2.2025.9,SO2.2030.9,SO2.2035.9,SO2.2040.9,SO2.2045.9,SO2.2050.9,VOC.2005.9,VOC.2010.9,VOC.2015.9,VOC.2020.9,VOC.2025.9,VOC.2030.9,VOC.2035.9,VOC.2040.9,VOC.2045.9,VOC.2050.9 +Bus,B0,1990,1.047162229,,,,,,,,,,0.004293784,,,,,,,,,,5.864554937,,,,,,,,,,1470.432965,,,,,,,,,,0.002477486,,,,,,,,,,0.022684111,,,,,,,,,,29.78012012,,,,,,,,,,0.468454491,,,,,,,,,,1.982945977,,,,,,,,,,1.735160133,,,,,,,,,,0.112064834,,,,,,,,,,1.466052062,,,,,,,,,,1.048607742,,,,,,,,,,0.004297506,,,,,,,,,,5.871927723,,,,,,,,,,1480.36818,,,,,,,,,,0.002495124,,,,,,,,,,0.022691987,,,,,,,,,,29.75205567,,,,,,,,,,0.469470479,,,,,,,,,,1.988120507,,,,,,,,,,1.738318141,,,,,,,,,,0.112822014,,,,,,,,,,1.467257209,,,,,,,,,,1.046995745,,,,,,,,,,0.004479222,,,,,,,,,,6.031847064,,,,,,,,,,1485.773398,,,,,,,,,,0.002665043,,,,,,,,,,0.022892169,,,,,,,,,,29.77166144,,,,,,,,,,0.495851953,,,,,,,,,,2.040463126,,,,,,,,,,1.776255419,,,,,,,,,,0.113233955,,,,,,,,,,1.526684178,,,,,,,,,,1.035321536,,,,,,,,,,0.00416845,,,,,,,,,,5.716445863,,,,,,,,,,1463.113146,,,,,,,,,,0.002354213,,,,,,,,,,0.022474324,,,,,,,,,,29.02828818,,,,,,,,,,0.452299116,,,,,,,,,,1.935781437,,,,,,,,,,1.698954428,,,,,,,,,,0.111506981,,,,,,,,,,1.424647069,,,,,,,,,,1.044661975,,,,,,,,,,0.004368323,,,,,,,,,,5.993050746,,,,,,,,,,1498.097482,,,,,,,,,,0.002629792,,,,,,,,,,0.022838974,,,,,,,,,,28.40469139,,,,,,,,,,0.491094926,,,,,,,,,,2.027831414,,,,,,,,,,1.766747765,,,,,,,,,,0.114173199,,,,,,,,,,1.490072755,,,,,,,,,,1.036297747,,,,,,,,,,0.004213682,,,,,,,,,,5.806165929,,,,,,,,,,1477.649809,,,,,,,,,,0.002453534,,,,,,,,,,0.022586811,,,,,,,,,,28.47492514,,,,,,,,,,0.466346267,,,,,,,,,,1.966713324,,,,,,,,,,1.721122223,,,,,,,,,,0.112614851,,,,,,,,,,1.439139251,,,,,,,,,,1.044461402,,,,,,,,,,0.004221805,,,,,,,,,,5.858964936,,,,,,,,,,1496.643881,,,,,,,,,,0.002483256,,,,,,,,,,0.022670095,,,,,,,,,,28.29958069,,,,,,,,,,0.469437165,,,,,,,,,,1.982265963,,,,,,,,,,1.733962314,,,,,,,,,,0.114062424,,,,,,,,,,1.442423116,,,,,,,,,,1.048914919,,,,,,,,,,0.004302844,,,,,,,,,,5.905191362,,,,,,,,,,1492.243259,,,,,,,,,,0.002532621,,,,,,,,,,0.02272983,,,,,,,,,,30.74683969,,,,,,,,,,0.474361556,,,,,,,,,,1.998995067,,,,,,,,,,1.746022078,,,,,,,,,,0.113727038,,,,,,,,,,1.468975497,,,,,,,,,,1.057690133,,,,,,,,,,0.004312535,,,,,,,,,,5.981479816,,,,,,,,,,1490.530266,,,,,,,,,,0.00257592,,,,,,,,,,0.022849365,,,,,,,,,,30.1744235,,,,,,,,,,0.48056569,,,,,,,,,,2.020690489,,,,,,,,,,1.764027441,,,,,,,,,,0.113596493,,,,,,,,,,1.472158834,,,,,,,,, +Bus,B0,1995,0.580537013,0.788374608,,,,,,,,,0.004673776,0.004434014,,,,,,,,,5.676005471,5.708320162,,,,,,,,,1382.057757,1416.732857,,,,,,,,,0.002574682,0.002541772,,,,,,,,,0.022141213,0.022380519,,,,,,,,,20.60920693,24.77468177,,,,,,,,,0.280062361,0.370254331,,,,,,,,,1.17513302,1.530707878,,,,,,,,,0.996947105,1.321669258,,,,,,,,,0.105329572,0.012458334,,,,,,,,,1.508866184,1.49210113,,,,,,,,,0.58258239,0.790142035,,,,,,,,,0.00467101,0.004434326,,,,,,,,,5.676712231,5.711866214,,,,,,,,,1393.722302,1427.540015,,,,,,,,,0.002590615,0.002558257,,,,,,,,,0.022129657,0.022377327,,,,,,,,,20.59103445,24.75368219,,,,,,,,,0.282572881,0.372053413,,,,,,,,,1.183058072,1.537257093,,,,,,,,,1.00282383,1.326195666,,,,,,,,,0.106218552,0.012553371,,,,,,,,,1.508473076,1.492327492,,,,,,,,,0.58394885,0.790234736,,,,,,,,,0.00487011,0.004623727,,,,,,,,,5.827330179,5.867767629,,,,,,,,,1396.46711,1431.735958,,,,,,,,,0.0027645,0.002730827,,,,,,,,,0.022301846,0.022564285,,,,,,,,,20.5746559,24.75305531,,,,,,,,,0.304992521,0.396419743,,,,,,,,,1.231306882,1.586744906,,,,,,,,,1.037901439,1.361999288,,,,,,,,,0.106427742,0.012590267,,,,,,,,,1.569971463,1.553542253,,,,,,,,,0.569259557,0.776838502,,,,,,,,,0.004535283,0.004303115,,,,,,,,,5.529896076,5.561310697,,,,,,,,,1379.942061,1411.922433,,,,,,,,,0.00244686,0.002415472,,,,,,,,,0.021928459,0.022168539,,,,,,,,,20.07164023,24.13884406,,,,,,,,,0.264821668,0.354523909,,,,,,,,,1.130842006,1.485597559,,,,,,,,,0.962723515,1.286994047,,,,,,,,,0.105168333,0.012416033,,,,,,,,,1.465797225,1.449479016,,,,,,,,,0.581510676,0.78783908,,,,,,,,,0.004729032,0.004497813,,,,,,,,,5.789954555,5.829699041,,,,,,,,,1416.496224,1447.858275,,,,,,,,,0.002728261,0.002694917,,,,,,,,,0.022251126,0.022512241,,,,,,,,,19.62845824,23.61538222,,,,,,,,,0.300534206,0.391805056,,,,,,,,,1.21927562,1.574580695,,,,,,,,,1.028749562,1.352814778,,,,,,,,,0.107954205,0.012732043,,,,,,,,,1.527408189,1.512882063,,,,,,,,,0.571979784,0.778800143,,,,,,,,,0.00456726,0.004340947,,,,,,,,,5.610928077,5.646673495,,,,,,,,,1396.414545,1427.465261,,,,,,,,,0.002547332,0.002515549,,,,,,,,,0.022015451,0.02226781,,,,,,,,,19.67797402,23.67353745,,,,,,,,,0.277936094,0.368114505,,,,,,,,,1.161472194,1.515960615,,,,,,,,,0.985201872,1.308959098,,,,,,,,,0.106423729,0.012552714,,,,,,,,,1.476522822,1.461704113,,,,,,,,,0.578705416,0.786159287,,,,,,,,,0.004572771,0.004347349,,,,,,,,,5.667069287,5.70103735,,,,,,,,,1420.127102,1448.851257,,,,,,,,,0.002579516,0.002546913,,,,,,,,,0.022114818,0.022359806,,,,,,,,,19.57598254,23.53851952,,,,,,,,,0.281099171,0.371262633,,,,,,,,,1.175406487,1.530515408,,,,,,,,,0.996686836,1.320953332,,,,,,,,,0.108230926,0.012740775,,,,,,,,,1.479232509,1.464495901,,,,,,,,,0.58358362,0.790839518,,,,,,,,,0.004667417,0.004434899,,,,,,,,,5.706859679,5.743622429,,,,,,,,,1409.074778,1441.170344,,,,,,,,,0.002628776,0.002596189,,,,,,,,,0.022156399,0.022409308,,,,,,,,,21.27479865,25.57923461,,,,,,,,,0.287289888,0.376864157,,,,,,,,,1.194138982,1.548094503,,,,,,,,,1.010936513,1.333984795,,,,,,,,,0.107388588,0.012673231,,,,,,,,,1.508016138,1.492678613,,,,,,,,,0.590577542,0.798631653,,,,,,,,,0.004673275,0.004442107,,,,,,,,,5.789936242,5.823497501,,,,,,,,,1403.599474,1437.586519,,,,,,,,,0.002676267,0.002642298,,,,,,,,,0.022304606,0.022544947,,,,,,,,,20.89938866,25.11354728,,,,,,,,,0.292148963,0.382394079,,,,,,,,,1.21160994,1.567353845,,,,,,,,,1.025204514,1.349828554,,,,,,,,,0.106971312,0.012641717,,,,,,,,,1.510047871,1.49499507,,,,,,,, +Bus,B0,2000,0.433248663,0.446032635,0.478095116,,,,,,,,0.003516363,0.003624595,0.004105379,,,,,,,,5.252236458,5.619978334,5.279516008,,,,,,,,1362.614957,1361.142001,1200.087459,,,,,,,,0.002653597,0.002660277,0.002583099,,,,,,,,0.02198868,0.022009112,0.021055635,,,,,,,,16.13961014,15.90157906,16.99314664,,,,,,,,0.2387003,0.246454336,0.29813538,,,,,,,,0.948366014,0.965403639,1.066790264,,,,,,,,0.789944354,0.80518085,0.908112543,,,,,,,,0.103847784,0.011969485,0.010553219,,,,,,,,1.432380582,1.520842879,1.564072744,,,,,,,,0.434763677,0.447577139,0.478600269,,,,,,,,0.00351268,0.003621465,0.004101834,,,,,,,,5.251307771,5.619078404,5.271575948,,,,,,,,1375.084044,1373.567927,1209.022835,,,,,,,,0.002669628,0.002676168,0.002600049,,,,,,,,0.021971868,0.021992782,0.021005777,,,,,,,,16.12141127,15.88485066,16.97379333,,,,,,,,0.240802338,0.248617109,0.299464045,,,,,,,,0.955007564,0.972101014,1.070658935,,,,,,,,0.794694656,0.809973649,0.91064303,,,,,,,,0.104798083,0.012078755,0.010631793,,,,,,,,1.431448696,1.520077009,1.562986467,,,,,,,,0.437835989,0.45072524,0.475826543,,,,,,,,0.003661828,0.003776111,0.004268028,,,,,,,,5.393737828,5.767568312,5.389372482,,,,,,,,1376.805816,1375.724042,1205.255126,,,,,,,,0.002848343,0.002855178,0.002774672,,,,,,,,0.022133692,0.022158585,0.021112715,,,,,,,,16.08693581,15.85555363,16.89910283,,,,,,,,0.259644498,0.268056199,0.319023622,,,,,,,,0.999181639,1.016604375,1.10683283,,,,,,,,0.826293585,0.841824572,0.936479433,,,,,,,,0.104929299,0.012097714,0.010598662,,,,,,,,1.490609329,1.58222036,1.62359046,,,,,,,,0.424641909,0.437211417,0.470615117,,,,,,,,0.003412563,0.00351684,0.003983061,,,,,,,,5.114330092,5.474421508,5.148141151,,,,,,,,1362.790955,1360.883297,1197.85419,,,,,,,,0.002521926,0.002528277,0.002455065,,,,,,,,0.02177562,0.021795506,0.020838601,,,,,,,,15.7293542,15.49525446,16.52321953,,,,,,,,0.226206041,0.23356859,0.284823318,,,,,,,,0.911516746,0.928160524,1.031871478,,,,,,,,0.762370156,0.777281509,0.881147516,,,,,,,,0.103861205,0.01196721,0.010533579,,,,,,,,1.391302658,1.477306687,1.518987417,,,,,,,,0.435862285,0.448702953,0.474484067,,,,,,,,0.003550569,0.003663737,0.004153795,,,,,,,,5.358561762,5.730541441,5.357429367,,,,,,,,1400.17679,1398.602651,1223.501252,,,,,,,,0.002811067,0.00281783,0.002738304,,,,,,,,0.022083899,0.022108417,0.021067748,,,,,,,,15.35109647,15.12945619,16.12106722,,,,,,,,0.255960267,0.264256424,0.315197351,,,,,,,,0.988938009,1.006260222,1.097636407,,,,,,,,0.818727981,0.834177661,0.929531668,,,,,,,,0.10671045,0.012298903,0.010759113,,,,,,,,1.447642175,1.538164366,1.582247096,,,,,,,,0.427635682,0.44027424,0.470147208,,,,,,,,0.00343169,0.00353917,0.00401257,,,,,,,,5.189956471,5.553411258,5.207254016,,,,,,,,1380.210981,1378.355262,1208.639748,,,,,,,,0.002625007,0.002631432,0.002556602,,,,,,,,0.021854374,0.021876475,0.020870505,,,,,,,,15.40801132,15.18168888,16.17145607,,,,,,,,0.237202889,0.244909606,0.29571088,,,,,,,,0.9389166,0.955776541,1.053612843,,,,,,,,0.782050783,0.797129038,0.896659277,,,,,,,,0.105188823,0.012120855,0.010628424,,,,,,,,1.399783345,1.487173532,1.530009237,,,,,,,,0.432190362,0.444945017,0.475940435,,,,,,,,0.003434549,0.003542976,0.004023613,,,,,,,,5.243342852,5.610274004,5.265452513,,,,,,,,1405.877798,1403.761924,1232.473138,,,,,,,,0.002658386,0.002664992,0.002588369,,,,,,,,0.021958563,0.021979721,0.021003444,,,,,,,,15.32811081,15.10273647,16.12320146,,,,,,,,0.23964704,0.247429943,0.298738229,,,,,,,,0.949317121,0.966334401,1.065855897,,,,,,,,0.790325155,0.805540194,0.906864871,,,,,,,,0.107144953,0.012344274,0.010838009,,,,,,,,1.401742363,1.489756137,1.534978488,,,,,,,,0.435853532,0.44869118,0.478366153,,,,,,,,0.003507398,0.003617325,0.004100191,,,,,,,,5.279593813,5.648494336,5.293073506,,,,,,,,1391.98137,1390.336551,1221.214587,,,,,,,,0.002708822,0.002715402,0.002638591,,,,,,,,0.021995133,0.022016873,0.021008927,,,,,,,,16.65159901,16.40847582,17.52548596,,,,,,,,0.244762747,0.252700858,0.303295835,,,,,,,,0.964921151,0.982090787,1.078298415,,,,,,,,0.801798551,0.817135907,0.916040887,,,,,,,,0.106085879,0.012226213,0.010739003,,,,,,,,1.430067625,1.519115423,1.562700919,,,,,,,,0.440757955,0.453726531,0.484729508,,,,,,,,0.003509838,0.003621212,0.004114867,,,,,,,,5.35933405,5.73311863,5.380407853,,,,,,,,1384.783545,1383.321045,1219.55446,,,,,,,,0.00275816,0.002765064,0.002685038,,,,,,,,0.022151318,0.02217209,0.021214703,,,,,,,,16.35787969,16.11850859,17.25809538,,,,,,,,0.248590707,0.256652774,0.308410975,,,,,,,,0.978452563,0.995816955,1.094896903,,,,,,,,0.812487916,0.827994205,0.92981447,,,,,,,,0.105537315,0.012164521,0.010724404,,,,,,,,1.430886117,1.520844559,1.56828551,,,,,,, +Bus,B0,2005,0.245270086,0.318976512,0.281449096,0.350157554,,,,,,,0.002841991,0.002985768,0.003086874,0.003638078,,,,,,,2.589267522,4.174223171,4.177739681,4.682191891,,,,,,,1386.665708,1388.451193,1215.682581,1197.229259,,,,,,,0.002615482,0.002620228,0.002588206,0.002605104,,,,,,,0.022088416,0.02213367,0.021086958,0.021046719,,,,,,,9.508321286,9.409318288,8.222088376,11.79223837,,,,,,,0.133995806,0.177374121,0.186774188,0.232356896,,,,,,,0.581254788,0.723200347,0.683276702,0.827605424,,,,,,,0.451569489,0.581428152,0.555334702,0.687971101,,,,,,,0.105680734,0.012209632,0.010690356,0.010528085,,,,,,,0.648825783,1.101830487,1.158928865,1.372583521,,,,,,,0.246029979,0.319983977,0.281871129,0.350780745,,,,,,,0.002816964,0.002978997,0.003079213,0.003632017,,,,,,,2.581650531,4.169191354,4.166870027,4.672422086,,,,,,,1399.590139,1401.41966,1225.788836,1206.845923,,,,,,,0.002632222,0.002636855,0.002605827,0.002622072,,,,,,,0.02207549,0.022122045,0.021038592,0.020996361,,,,,,,9.496267189,9.397797001,8.20542698,11.77596132,,,,,,,0.135074735,0.17879092,0.187941216,0.233804196,,,,,,,0.585518599,0.728229908,0.686819693,0.831780766,,,,,,,0.454099482,0.584644719,0.557556878,0.690785679,,,,,,,0.106665751,0.012323676,0.010779231,0.01061265,,,,,,,0.645340906,1.100466621,1.156906022,1.370872823,,,,,,,0.248538495,0.323288641,0.282468117,0.35029956,,,,,,,0.002965189,0.003124728,0.003218258,0.003787572,,,,,,,2.657997365,4.28519114,4.259479476,4.779169139,,,,,,,1401.410599,1403.88072,1221.694976,1203.259844,,,,,,,0.002809345,0.002814202,0.002781431,0.002798056,,,,,,,0.022239091,0.022291665,0.021143111,0.021104894,,,,,,,9.532254803,9.437149902,8.211781667,11.7431446,,,,,,,0.145094781,0.192002026,0.200690302,0.250106223,,,,,,,0.615482737,0.763656771,0.716316233,0.8654783,,,,,,,0.472477344,0.607951541,0.577220649,0.714347193,,,,,,,0.10680449,0.012345318,0.010743229,0.010581114,,,,,,,0.67603618,1.151599005,1.206218053,1.426837443,,,,,,,0.24093304,0.313365983,0.277264037,0.34436188,,,,,,,0.002751404,0.002887874,0.002987671,0.003525584,,,,,,,2.51634364,4.066823708,4.077449546,4.565768163,,,,,,,1387.614327,1388.958714,1215.853957,1196.082577,,,,,,,0.002485616,0.00249012,0.002459868,0.002475989,,,,,,,0.021876683,0.021921359,0.02087103,0.020829176,,,,,,,9.24209559,9.145181768,7.980472758,11.45761531,,,,,,,0.127579441,0.168925543,0.178547067,0.221474604,,,,,,,0.558406958,0.69603126,0.659661449,0.798223014,,,,,,,0.436984289,0.562938,0.538790161,0.666097126,,,,,,,0.105753053,0.012214096,0.010691863,0.010518001,,,,,,,0.629689287,1.067439997,1.123359937,1.33171381,,,,,,,0.247488897,0.321925628,0.28158335,0.349146644,,,,,,,0.00277273,0.003005716,0.003108389,0.003672123,,,,,,,2.639839561,4.257809426,4.235283445,4.750921363,,,,,,,1425.942051,1427.991358,1243.600245,1223.38014,,,,,,,0.002772463,0.002777265,0.002744897,0.002761396,,,,,,,0.022189167,0.022241178,0.021098383,0.021059768,,,,,,,9.087749055,8.996663438,7.828747864,11.19981536,,,,,,,0.143182839,0.189483696,0.19826212,0.246933828,,,,,,,0.608972062,0.755929014,0.709739562,0.857485297,,,,,,,0.468378317,0.602753707,0.572689533,0.708505719,,,,,,,0.108674092,0.012557339,0.010935858,0.010758047,,,,,,,0.641603706,1.112454736,1.169067642,1.386390947,,,,,,,0.242887763,0.31593831,0.278096791,0.344929482,,,,,,,0.002698467,0.00289679,0.002998933,0.003545209,,,,,,,2.552400552,4.125368838,4.120792117,4.617537014,,,,,,,1405.749004,1407.335465,1228.32101,1207.955053,,,,,,,0.002588258,0.002592811,0.002562302,0.002578252,,,,,,,0.021958696,0.022007069,0.020902681,0.020861522,,,,,,,9.079036098,8.985793102,7.825673618,11.22087944,,,,,,,0.13338702,0.176577742,0.185810048,0.230756325,,,,,,,0.576692562,0.717652399,0.67731924,0.8186391,,,,,,,0.44818239,0.577143631,0.550524349,0.68039271,,,,,,,0.107135143,0.012375699,0.010801496,0.010622403,,,,,,,0.623358634,1.072785741,1.128909782,1.339705414,,,,,,,0.244903763,0.318521425,0.280668545,0.348860904,,,,,,,0.002672104,0.002894593,0.003002646,0.00355214,,,,,,,2.582478584,4.166770042,4.165889789,4.669250801,,,,,,,1431.881166,1433.22178,1254.045156,1232.828598,,,,,,,0.002620654,0.002625343,0.00259379,0.002610357,,,,,,,0.022060291,0.02210691,0.021035141,0.020994512,,,,,,,9.033442964,8.93998845,7.802502358,11.18878584,,,,,,,0.134542197,0.178095056,0.18738314,0.233030279,,,,,,,0.582346081,0.72444775,0.683848861,0.827710264,,,,,,,0.45206858,0.582065088,0.555470121,0.687680214,,,,,,,0.109126722,0.012603335,0.011027709,0.010841134,,,,,,,0.620116495,1.073281251,1.131517451,1.343293787,,,,,,,0.246740158,0.320920026,0.282147559,0.350956541,,,,,,,0.00277345,0.002968696,0.003070736,0.003626254,,,,,,,2.595865087,4.191217458,4.18275412,4.691375293,,,,,,,1417.162027,1418.972261,1239.928103,1220.158991,,,,,,,0.002671162,0.002675822,0.002644652,0.002660899,,,,,,,0.022100318,0.02214832,0.02104181,0.020999619,,,,,,,9.817864783,9.716845217,8.476968727,12.16102749,,,,,,,0.137168179,0.181547492,0.19053632,0.237109623,,,,,,,0.592148664,0.736063692,0.693139719,0.8390622,,,,,,,0.458145954,0.589775911,0.561732774,0.695855307,,,,,,,0.108004942,0.012478028,0.010903565,0.010729722,,,,,,,0.639044274,1.098277177,1.154937556,1.369489225,,,,,,,0.248988225,0.323790065,0.28505972,0.355258751,,,,,,,0.00273241,0.002964224,0.003075468,0.003635314,,,,,,,2.644036255,4.25610641,4.253248805,4.770706891,,,,,,,1409.156759,1411.040697,1236.062801,1217.307414,,,,,,,0.002718801,0.00272371,0.002690516,0.002707877,,,,,,,0.022251088,0.022296837,0.021245758,0.021205954,,,,,,,9.653568754,9.553511063,8.357127905,11.98114353,,,,,,,0.139052484,0.184029577,0.19319089,0.240851403,,,,,,,0.599782985,0.745233734,0.702239814,0.851328511,,,,,,,0.463388175,0.596412716,0.568605828,0.70564254,,,,,,,0.107394838,0.012408278,0.010869579,0.010704645,,,,,,,0.632417778,1.097138473,1.157205954,1.373119715,,,,,, +Bus,B0,2010,,0.074973481,0.058004532,0.057164729,0.217791992,,,,,,,0.054263143,0.079244966,0.083116839,0.03541828,,,,,,,1.513046095,1.600575199,1.64015802,3.384457642,,,,,,,1370.092206,1201.340361,1193.542995,1190.122072,,,,,,,0.002636298,0.002593594,0.002609278,0.0026239,,,,,,,0.022031207,0.021011439,0.021005026,0.021028055,,,,,,,4.624642264,3.904605357,3.879165409,7.862018827,,,,,,,0.044157742,0.043017434,0.04290108,0.150931605,,,,,,,0.261749986,0.232355317,0.2323828,0.564681749,,,,,,,0.157826999,0.141135478,0.140887557,0.446020277,,,,,,,0.011414046,0.009984631,0.009917466,0.010236909,,,,,,,0.297975602,0.307945202,0.311502323,0.926892791,,,,,,,0.075224442,0.058096125,0.057256433,0.218240068,,,,,,,0.051885394,0.077070338,0.080854788,0.034481398,,,,,,,1.501786999,1.588731986,1.627922815,3.373304359,,,,,,,1382.909735,1211.38233,1203.482656,1199.95234,,,,,,,0.002652649,0.002611135,0.002626514,0.002640768,,,,,,,0.022015881,0.020960266,0.020953277,0.020976786,,,,,,,4.617730874,3.893419546,3.86812368,7.848410051,,,,,,,0.044496041,0.043259714,0.043140068,0.15192857,,,,,,,0.264304555,0.234132285,0.2341569,0.567988933,,,,,,,0.158802383,0.141759105,0.141508595,0.448041144,,,,,,,0.011520856,0.010068123,0.010000078,0.010321471,,,,,,,0.295410571,0.305428748,0.308889105,0.924650087,,,,,,,0.076041586,0.058219952,0.057381502,0.218412787,,,,,,,0.056076106,0.082111299,0.086129881,0.036704148,,,,,,,1.551506729,1.632228136,1.672612095,3.454874693,,,,,,,1384.892675,1206.984247,1199.507264,1196.589909,,,,,,,0.002830643,0.00278694,0.002802985,0.002817797,,,,,,,0.022180403,0.021061546,0.021058129,0.021087115,,,,,,,4.662885253,3.909316747,3.884410416,7.841109123,,,,,,,0.047674209,0.046019067,0.045877186,0.162549507,,,,,,,0.281756017,0.248022096,0.24804604,0.593840121,,,,,,,0.165742714,0.147187285,0.146924858,0.464399669,,,,,,,0.011537529,0.010031705,0.009967166,0.010292635,,,,,,,0.310740973,0.31973024,0.323438829,0.963842495,,,,,,,0.07364702,0.057150875,0.05632391,0.214276141,,,,,,,0.052597644,0.076747873,0.080495019,0.034304472,,,,,,,1.464450916,1.553757096,1.592033619,3.296648587,,,,,,,1370.69467,1201.615375,1193.288478,1189.175461,,,,,,,0.002505444,0.002465014,0.002479949,0.002493873,,,,,,,0.021818279,0.020794894,0.020787567,0.020809777,,,,,,,4.483051455,3.786281591,3.76126296,7.634583143,,,,,,,0.042112093,0.041213844,0.041110279,0.143912392,,,,,,,0.24893888,0.221971342,0.22200281,0.543556617,,,,,,,0.152421611,0.136674239,0.136438396,0.431731695,,,,,,,0.011418981,0.009986813,0.009915244,0.010228703,,,,,,,0.289104909,0.298887418,0.302306898,0.899061343,,,,,,,0.075716358,0.058038987,0.057202993,0.217681592,,,,,,,0.044061065,0.070566451,0.0741055,0.03170092,,,,,,,1.539910329,1.621391343,1.661479223,3.43377435,,,,,,,1409.039556,1229.032083,1220.934918,1217.18821,,,,,,,0.002793546,0.002750357,0.002766237,0.002780905,,,,,,,0.022130371,0.0210171,0.021013344,0.021041813,,,,,,,4.441379508,3.725747762,3.70190751,7.476769356,,,,,,,0.047066015,0.04548982,0.045351976,0.16049256,,,,,,,0.278056129,0.245061556,0.245086558,0.587977815,,,,,,,0.164213398,0.145956521,0.145697402,0.460515042,,,,,,,0.011738635,0.010214906,0.010145155,0.010469747,,,,,,,0.290100678,0.301084217,0.304269672,0.931396025,,,,,,,0.07428026,0.057325343,0.056498169,0.214883182,,,,,,,0.045379464,0.070575597,0.074085085,0.03165901,,,,,,,1.484106063,1.569970505,1.608652924,3.333860276,,,,,,,1388.71594,1213.921895,1205.555295,1201.436954,,,,,,,0.002608326,0.002567514,0.002582626,0.002596628,,,,,,,0.021899258,0.020823257,0.020817292,0.02084242,,,,,,,4.4164186,3.716708335,3.692441799,7.481830818,,,,,,,0.04395234,0.042780702,0.04266377,0.149990148,,,,,,,0.259601972,0.230308149,0.230337154,0.559192519,,,,,,,0.156656771,0.139913236,0.139669373,0.441640817,,,,,,,0.011569199,0.010089178,0.010017233,0.0103342,,,,,,,0.282819635,0.293502008,0.296661968,0.900960883,,,,,,,0.07487664,0.05784761,0.057011216,0.217111205,,,,,,,0.042361846,0.068038677,0.071450912,0.030571251,,,,,,,1.506349951,1.592984603,1.632332701,3.373694276,,,,,,,1414.748513,1239.816929,1231.16655,1226.620303,,,,,,,0.002641261,0.002599133,0.002614654,0.002629086,,,,,,,0.022002126,0.020957931,0.020951716,0.020975668,,,,,,,4.395155235,3.705612103,3.681494787,7.460214373,,,,,,,0.044327124,0.043140049,0.043021786,0.151406682,,,,,,,0.262532437,0.232844104,0.23287138,0.565147847,,,,,,,0.158047776,0.141202669,0.140954683,0.446063447,,,,,,,0.011786035,0.010304409,0.010230044,0.010550778,,,,,,,0.280177976,0.291826747,0.294871738,0.902066793,,,,,,,0.07545618,0.058154897,0.057315345,0.218448148,,,,,,,0.047608516,0.073260635,0.076894221,0.032842066,,,,,,,1.51024233,1.595632777,1.635009187,3.387392039,,,,,,,1400.329715,1225.503191,1217.401831,1213.615004,,,,,,,0.002691727,0.00265,0.00266548,0.002679802,,,,,,,0.022040093,0.020962033,0.020955467,0.020980048,,,,,,,4.778518161,4.023352024,3.997320169,8.106611618,,,,,,,0.045158751,0.043818409,0.043693863,0.154099785,,,,,,,0.268182913,0.237136909,0.237160469,0.57359763,,,,,,,0.16033594,0.142914895,0.142661438,0.451576277,,,,,,,0.011666,0.010185516,0.01011575,0.010438984,,,,,,,0.290727296,0.301292141,0.304584247,0.921784048,,,,,,,0.076113223,0.058742647,0.057892048,0.220877486,,,,,,,0.043023739,0.069405866,0.072891705,0.03118884,,,,,,,1.548051738,1.63420217,1.674710342,3.450225082,,,,,,,1392.563119,1221.708045,1213.884902,1210.430931,,,,,,,0.002740299,0.002696072,0.002712268,0.002727358,,,,,,,0.022194056,0.021170067,0.021163986,0.021187498,,,,,,,4.703401609,3.969840209,3.944263451,7.989765096,,,,,,,0.045769157,0.044422227,0.044295623,0.156423953,,,,,,,0.272146102,0.240700109,0.240723488,0.581725212,,,,,,,0.162210229,0.144713215,0.144455206,0.457556546,,,,,,,0.011601285,0.010153986,0.010086551,0.010411608,,,,,,,0.285220452,0.297418785,0.300558393,0.921880162,,,,, +Bus,B0,2015,,,0.001180049,0.00165,0.00173083,0.088831095,,,,,,,0.066576623,0.073976533,0.076152582,0.059260061,,,,,,,0.800519,0.86591151,0.894739144,2.030005274,,,,,,,1198.00739,1188.162792,1179.0675,1179.151274,,,,,,,0.002557241,0.002576531,0.002594412,0.002626039,,,,,,,0.02106943,0.021063658,0.021058357,0.021039368,,,,,,,0.78853192,1.078771108,1.127156111,3.796374421,,,,,,,0.002051679,0.002868753,0.003009287,0.064567478,,,,,,,0.105784599,0.111946719,0.113340439,0.297850585,,,,,,,0.025035974,0.030346583,0.031301741,0.200505069,,,,,,,0.009788844,0.009708404,0.00963409,0.009882642,,,,,,,0.098007223,0.104575587,0.106319597,0.468243123,,,,,,,0.001183511,0.001654911,0.001735957,0.088979295,,,,,,,0.063841618,0.071136536,0.073197731,0.057203636,,,,,,,0.790052297,0.854970811,0.883372774,2.01808877,,,,,,,1207.956996,1198.041268,1188.859387,1188.942084,,,,,,,0.002575473,0.002594389,0.002611921,0.002642937,,,,,,,0.02102107,0.021014629,0.021008713,0.020988443,,,,,,,0.786221663,1.075620352,1.123851856,3.787895797,,,,,,,0.002057698,0.002877291,0.0030182,0.064939201,,,,,,,0.107118141,0.113298507,0.114695399,0.299897946,,,,,,,0.025237505,0.030564393,0.031522029,0.201363804,,,,,,,0.009870143,0.009789121,0.009714097,0.009964722,,,,,,,0.095770429,0.102239234,0.10387406,0.465665465,,,,,,,0.001212032,0.001694935,0.001777895,0.08918881,,,,,,,0.06865358,0.076360806,0.078595087,0.061245695,,,,,,,0.81768066,0.884406652,0.91388114,2.072281147,,,,,,,1203.052545,1193.675108,1184.986674,1185.727238,,,,,,,0.002749751,0.002769484,0.002787778,0.002820132,,,,,,,0.021115175,0.021113184,0.021111349,0.021098487,,,,,,,0.788945145,1.079421327,1.127816868,3.796192212,,,,,,,0.002107285,0.002946878,0.003091116,0.069163219,,,,,,,0.116775711,0.12311684,0.124556124,0.316177289,,,,,,,0.026734596,0.032192707,0.033174145,0.208903895,,,,,,,0.00983007,0.009753447,0.009682453,0.009937873,,,,,,,0.100086956,0.106954595,0.108764939,0.486365498,,,,,,,0.001150609,0.001609109,0.001687957,0.087521188,,,,,,,0.064574079,0.071730259,0.073844024,0.057440407,,,,,,,0.770004571,0.833473463,0.861116666,1.971743532,,,,,,,1199.132246,1188.731982,1179.092132,1178.300186,,,,,,,0.002430385,0.002448755,0.002465784,0.002495903,,,,,,,0.020855523,0.020848644,0.02084235,0.020821359,,,,,,,0.764962824,1.046369715,1.093282698,3.682616587,,,,,,,0.002000493,0.002797659,0.002934745,0.061823436,,,,,,,0.098978111,0.104985444,0.106340957,0.28550505,,,,,,,0.023892937,0.029073578,0.030004798,0.194302661,,,,,,,0.009798037,0.009713056,0.009634291,0.009875447,,,,,,,0.096183158,0.102508581,0.104178311,0.454452875,,,,,,,0.001204377,0.001684271,0.001766716,0.088909425,,,,,,,0.054954526,0.062010796,0.063686914,0.050718225,,,,,,,0.810849614,0.877128832,0.906339451,2.058593424,,,,,,,1225.537603,1215.550965,1206.241875,1206.268748,,,,,,,0.002713545,0.002733077,0.002751182,0.002783207,,,,,,,0.021071448,0.021069036,0.021066798,0.021053229,,,,,,,0.752069387,1.028903198,1.075030436,3.618457853,,,,,,,0.002093975,0.002928338,0.00307168,0.068356265,,,,,,,0.114791108,0.121091336,0.122520352,0.312675671,,,,,,,0.026410107,0.031834048,0.032809223,0.207193769,,,,,,,0.010013793,0.009932194,0.00985613,0.010109996,,,,,,,0.088056146,0.094301365,0.095575015,0.463513337,,,,,,,0.001168158,0.001633738,0.001713751,0.087802933,,,,,,,0.056361725,0.063267274,0.065028672,0.051390427,,,,,,,0.778579522,0.842732183,0.870696901,1.993700811,,,,,,,1211.231995,1200.873135,1191.238745,1190.576671,,,,,,,0.002532478,0.002551062,0.002568291,0.002598761,,,,,,,0.020882201,0.020877039,0.020872316,0.020854074,,,,,,,0.750669488,1.026855185,1.072883937,3.61323622,,,,,,,0.002031004,0.002840478,0.002979593,0.064221318,,,,,,,0.104810846,0.110915412,0.112295306,0.295264501,,,,,,,0.024799703,0.030060881,0.031006427,0.198797134,,,,,,,0.009896903,0.009812262,0.009733539,0.009978389,,,,,,,0.088929172,0.095023278,0.096366234,0.450398877,,,,,,,0.001178997,0.00164864,0.001729392,0.088596377,,,,,,,0.052996394,0.05979581,0.061412963,0.048907335,,,,,,,0.794614849,0.859702226,0.888295853,2.021470502,,,,,,,1236.883997,1226.249586,1216.329486,1215.569414,,,,,,,0.002563149,0.002582238,0.002599936,0.002631238,,,,,,,0.021016297,0.021010788,0.021005746,0.020987116,,,,,,,0.748396079,1.023810536,1.069720571,3.60281415,,,,,,,0.002049848,0.002866388,0.003006786,0.064759574,,,,,,,0.106260451,0.112418777,0.11381162,0.298367964,,,,,,,0.025086352,0.03039352,0.031347813,0.200594369,,,,,,,0.010106502,0.010019612,0.009938556,0.010187853,,,,,,,0.086582421,0.092569719,0.093770194,0.449174763,,,,,,,0.001189759,0.001663662,0.00174512,0.089075227,,,,,,,0.058969564,0.066088227,0.067943913,0.053562835,,,,,,,0.794368401,0.859577144,0.888147481,2.027075149,,,,,,,1222.048817,1211.97497,1202.614249,1202.578329,,,,,,,0.002614103,0.002633141,0.002650792,0.002682009,,,,,,,0.021022554,0.02101664,0.021011223,0.020991774,,,,,,,0.812312544,1.111350306,1.161179721,3.913877508,,,,,,,0.002068559,0.002892506,0.003034132,0.065794511,,,,,,,0.109235113,0.115449708,0.116855184,0.303409803,,,,,,,0.025565411,0.030920766,0.031883462,0.20296675,,,,,,,0.009985285,0.009902973,0.009826488,0.010079028,,,,,,,0.091676029,0.097976507,0.099415228,0.461558908,,,,,,,0.001203968,0.001683217,0.001765654,0.089964885,,,,,,,0.053859248,0.060816372,0.062453386,0.049791758,,,,,,,0.821889841,0.888665406,0.918320428,2.072568325,,,,,,,1217.902054,1208.06944,1198.966536,1199.30313,,,,,,,0.002658529,0.002678451,0.002696922,0.002729584,,,,,,,0.021227248,0.02122188,0.021216954,0.021198717,,,,,,,0.80145855,1.096581975,1.145779333,3.859987633,,,,,,,0.002093265,0.002926506,0.003069833,0.066704095,,,,,,,0.111270442,0.117557418,0.118981512,0.30776751,,,,,,,0.025958798,0.031374853,0.032349326,0.205477246,,,,,,,0.009951404,0.009871062,0.009796681,0.010051573,,,,,,,0.086808952,0.092966835,0.094210421,0.458334253,,,, +Bus,B0,2020,,,,0.001157645,0.001573768,0.001646432,0.0182013,,,,,,,0.067134223,0.073820106,0.075895732,0.076209935,,,,,,,0.811468008,0.871193135,0.899369509,1.127667173,,,,,,,1117.531952,1109.190542,1101.527303,1129.463445,,,,,,,0.002566857,0.002585169,0.002603082,0.002626969,,,,,,,0.02105164,0.021047112,0.021042972,0.021035122,,,,,,,0.770280431,1.022863793,1.066460082,1.687531469,,,,,,,0.002012726,0.002736213,0.00286255,0.014868069,,,,,,,0.105563634,0.11104363,0.112312408,0.148456277,,,,,,,0.024791026,0.029496319,0.030356967,0.063167158,,,,,,,0.009131287,0.009063128,0.009000513,0.009278636,,,,,,,0.096090672,0.102041978,0.10373609,0.164841654,,,,,,,0.001161003,0.001578414,0.001651273,0.018233994,,,,,,,0.064335384,0.07092041,0.072880644,0.073275376,,,,,,,0.800775511,0.860052764,0.887803851,1.115427237,,,,,,,1126.885231,1118.477125,1110.729632,1138.851855,,,,,,,0.002584908,0.002602864,0.00262043,0.002643852,,,,,,,0.021002184,0.020997031,0.020992321,0.020983802,,,,,,,0.768006241,1.019852578,1.06331365,1.682720334,,,,,,,0.002018563,0.002744291,0.002870965,0.014945569,,,,,,,0.106889183,0.112385442,0.113657144,0.149935898,,,,,,,0.024990546,0.029710323,0.030573216,0.063506532,,,,,,,0.00920771,0.009139008,0.009075705,0.00935577,,,,,,,0.093776587,0.099632326,0.101216827,0.162139497,,,,,,,0.001189089,0.00161676,0.001691346,0.018305415,,,,,,,0.069207661,0.076168813,0.078297735,0.078657937,,,,,,,0.828873561,0.889825831,0.918637695,1.151290545,,,,,,,1122.780782,1114.844242,1107.528592,1135.968038,,,,,,,0.002759589,0.002778321,0.002796647,0.002821084,,,,,,,0.021097963,0.021096842,0.021095825,0.021092815,,,,,,,0.770765389,1.02358285,1.067199115,1.689589804,,,,,,,0.002067395,0.00281096,0.002940639,0.01581764,,,,,,,0.116519241,0.122159802,0.12347041,0.161019085,,,,,,,0.026479966,0.031316902,0.032201349,0.066281202,,,,,,,0.009174173,0.009109323,0.009049548,0.009332101,,,,,,,0.09817327,0.104392259,0.10614635,0.170026041,,,,,,,0.001128749,0.001534723,0.001605603,0.017921112,,,,,,,0.065121822,0.071588393,0.073605223,0.073899996,,,,,,,0.780411806,0.838354802,0.865357967,1.088486775,,,,,,,1118.240225,1109.400172,1101.241699,1128.538107,,,,,,,0.002439547,0.002456985,0.002474044,0.002496792,,,,,,,0.020837039,0.020831521,0.020826494,0.020817269,,,,,,,0.747103235,0.991950299,1.034219095,1.636214405,,,,,,,0.001962487,0.002668328,0.002791562,0.014280971,,,,,,,0.098779876,0.104121947,0.105355773,0.140450209,,,,,,,0.023656111,0.028246107,0.029085148,0.060946003,,,,,,,0.009137072,0.009064841,0.008998178,0.009271014,,,,,,,0.094244864,0.099977592,0.101602188,0.160627021,,,,,,,0.001181572,0.001606573,0.001680696,0.018244054,,,,,,,0.055220356,0.061566904,0.063137738,0.063844347,,,,,,,0.821925897,0.882463947,0.911014875,1.142414023,,,,,,,1143.681798,1135.195677,1127.307361,1155.631467,,,,,,,0.002723282,0.002741824,0.002759962,0.002784149,,,,,,,0.021054079,0.021052588,0.021051216,0.021047674,,,,,,,0.734702684,0.975634851,1.017205924,1.610272579,,,,,,,0.002054327,0.00279325,0.002922123,0.01564696,,,,,,,0.114541207,0.120145284,0.121446576,0.158706944,,,,,,,0.026157651,0.030964231,0.031843031,0.065662178,,,,,,,0.009344954,0.009275615,0.009211159,0.009493628,,,,,,,0.085827104,0.091459191,0.092678124,0.154166984,,,,,,,0.001145991,0.001558273,0.001630205,0.017994468,,,,,,,0.056705214,0.062925142,0.064586343,0.065154655,,,,,,,0.789105611,0.847677098,0.874995304,1.100403107,,,,,,,1129.810427,1120.999649,1112.829899,1140.407593,,,,,,,0.002541748,0.00255939,0.002576649,0.002599662,,,,,,,0.020863836,0.020859861,0.020856246,0.02084925,,,,,,,0.7331874,0.973506536,1.014983712,1.606206472,,,,,,,0.001992464,0.002709271,0.002834336,0.014777918,,,,,,,0.104593062,0.110022273,0.111278485,0.147123782,,,,,,,0.024557449,0.029219276,0.030071281,0.06261112,,,,,,,0.009231614,0.009159619,0.009092865,0.009368537,,,,,,,0.086785336,0.092290094,0.093584371,0.152791161,,,,,,,0.001156615,0.001572478,0.001645073,0.018156113,,,,,,,0.053257862,0.059373659,0.060889338,0.061568129,,,,,,,0.805442973,0.864883674,0.892826591,1.12051836,,,,,,,1153.86371,1144.805584,1136.37342,1164.389591,,,,,,,0.002572667,0.002590789,0.002608519,0.002632159,,,,,,,0.020998251,0.020993962,0.020990053,0.020982593,,,,,,,0.731046597,0.970720688,1.012088959,1.601553572,,,,,,,0.002010933,0.002733969,0.002860185,0.014902934,,,,,,,0.106037471,0.111514317,0.112782305,0.148936632,,,,,,,0.024841362,0.029543756,0.030403635,0.063223285,,,,,,,0.009428149,0.009354134,0.009285237,0.009565553,,,,,,,0.084314134,0.089714767,0.090866104,0.150122728,,,,,,,0.001167139,0.001586783,0.001660014,0.018259367,,,,,,,0.059348306,0.065762981,0.067516375,0.068060348,,,,,,,0.805163882,0.864710027,0.89262734,1.121074655,,,,,,,1140.156027,1131.601538,1123.681241,1151.963281,,,,,,,0.0026236,0.002641674,0.002659355,0.002682931,,,,,,,0.021003594,0.020998915,0.020994643,0.020986836,,,,,,,0.793504737,1.053743421,1.098645644,1.738847619,,,,,,,0.002029232,0.002758841,0.002886162,0.015122709,,,,,,,0.108998734,0.114525701,0.115805208,0.152350785,,,,,,,0.025316447,0.030061634,0.030929091,0.064103808,,,,,,,0.009316145,0.009246249,0.009181531,0.009463485,,,,,,,0.089550661,0.095243883,0.096631231,0.157345333,,,,,,,0.001181103,0.001605464,0.001679574,0.018442352,,,,,,,0.054113857,0.060370044,0.061902745,0.062614602,,,,,,,0.833210947,0.894216545,0.923210203,1.155345711,,,,,,,1136.367662,1128.03335,1120.354799,1148.859646,,,,,,,0.00266846,0.002687372,0.002705874,0.002730545,,,,,,,0.021209583,0.0212054,0.021201589,0.021194288,,,,,,,0.783026818,1.039898937,1.084229,1.715899493,,,,,,,0.002053512,0.002791322,0.002920171,0.015326758,,,,,,,0.111029665,0.116620923,0.117917461,0.154899759,,,,,,,0.025706923,0.030505711,0.031383781,0.064952912,,,,,,,0.00928519,0.009217091,0.00915435,0.009437989,,,,,,,0.084579216,0.090132055,0.091321947,0.152091427,,, +Bus,B0,2025,,,,,0.001157874,0.001573279,0.001646693,0.001629014,,,,,,,0.067210119,0.073949515,0.075986593,0.077625924,,,,,,,0.812881145,0.87374732,0.901086791,0.929907782,,,,,,,1108.846758,1100.994173,1093.756043,1098.617509,,,,,,,0.002567978,0.002587265,0.002604453,0.002627236,,,,,,,0.021052716,0.021048268,0.021044204,0.021039572,,,,,,,0.759138844,1.007795008,1.051902633,1.052551364,,,,,,,0.002013124,0.002735364,0.002863005,0.002832267,,,,,,,0.105583675,0.111054604,0.112332608,0.11266556,,,,,,,0.024795806,0.029493039,0.030362091,0.030233037,,,,,,,0.009060321,0.008996157,0.008937014,0.008976736,,,,,,,0.095898412,0.101914148,0.103585382,0.105253481,,,,,,,0.001161234,0.001577927,0.001651538,0.001633842,,,,,,,0.064403937,0.071035995,0.072962511,0.074451781,,,,,,,0.802162219,0.862558328,0.88948896,0.917782457,,,,,,,1118.129083,1110.212909,1102.895627,1107.762088,,,,,,,0.002586006,0.002604919,0.002621774,0.002644113,,,,,,,0.021003293,0.020998225,0.020993593,0.020988268,,,,,,,0.756869573,1.004792031,1.048762323,1.049466123,,,,,,,0.002018965,0.002743444,0.002871426,0.002840659,,,,,,,0.106909729,0.112396942,0.113677933,0.114012189,,,,,,,0.02499541,0.02970712,0.030578443,0.030449392,,,,,,,0.009136164,0.009071482,0.009011692,0.009051456,,,,,,,0.093575385,0.09948963,0.101055844,0.102584881,,,,,,,0.001189334,0.001616276,0.00169163,0.001673946,,,,,,,0.069284549,0.076299347,0.07838974,0.080050851,,,,,,,0.830321499,0.892442845,0.920397749,0.94993079,,,,,,,1114.070054,1106.620785,1099.729637,1105.101457,,,,,,,0.002760736,0.002780465,0.002798049,0.002821357,,,,,,,0.021099168,0.021098129,0.021097185,0.021097053,,,,,,,0.759495549,1.008349067,1.052475236,1.053431667,,,,,,,0.002067822,0.002810119,0.002941133,0.002910386,,,,,,,0.116542509,0.122173994,0.123494173,0.123856804,,,,,,,0.026485313,0.03131407,0.032207134,0.032081746,,,,,,,0.009102999,0.009042132,0.008985823,0.009029716,,,,,,,0.097981191,0.104264648,0.105995847,0.107699577,,,,,,,0.001128969,0.00153424,0.001605853,0.001588591,,,,,,,0.065195829,0.071714779,0.073693829,0.075293385,,,,,,,0.781757463,0.840785544,0.866992586,0.894446915,,,,,,,1109.548278,1101.201838,1093.474535,1097.663861,,,,,,,0.002440614,0.002458981,0.002475349,0.002497045,,,,,,,0.020838106,0.020832681,0.020827725,0.020821851,,,,,,,0.736278376,0.977310592,1.020075342,1.020584833,,,,,,,0.001962869,0.002667489,0.002791996,0.002761984,,,,,,,0.098797909,0.104131037,0.105373778,0.105690914,,,,,,,0.023660548,0.028242652,0.029089881,0.028962879,,,,,,,0.00906605,0.008997853,0.008934713,0.008968945,,,,,,,0.094050643,0.099846903,0.101449482,0.10306036,,,,,,,0.001181814,0.001606089,0.001680977,0.001663375,,,,,,,0.055262787,0.061633171,0.063187667,0.06414782,,,,,,,0.82335848,0.885053646,0.912756743,0.941987483,,,,,,,1134.804372,1126.813833,1119.367378,1124.217229,,,,,,,0.002724417,0.002743945,0.00276135,0.00278442,,,,,,,0.021055279,0.021053854,0.021052574,0.021051953,,,,,,,0.723958494,0.961113378,1.003171317,1.004046471,,,,,,,0.002054749,0.002792409,0.00292261,0.002892007,,,,,,,0.114563915,0.120158876,0.121469709,0.121827491,,,,,,,0.026162893,0.030961322,0.03184871,0.031723503,,,,,,,0.009272418,0.009207127,0.00914628,0.00918591,,,,,,,0.085597988,0.091267165,0.092484294,0.09352189,,,,,,,0.00114622,0.001557792,0.001630467,0.001613172,,,,,,,0.056755721,0.063007217,0.064646204,0.065768609,,,,,,,0.790468544,0.850138535,0.876650851,0.904455242,,,,,,,1121.034428,1112.718216,1104.986573,1109.292006,,,,,,,0.002542828,0.00256141,0.00257797,0.002599918,,,,,,,0.020864969,0.02086109,0.020857544,0.020853726,,,,,,,0.722503559,0.95906282,1.001025786,1.001685871,,,,,,,0.001992861,0.002708436,0.002834791,0.002804721,,,,,,,0.104612856,0.110033131,0.111298404,0.111630629,,,,,,,0.02456219,0.029216059,0.030076369,0.029950939,,,,,,,0.009159903,0.009091953,0.009028778,0.009063957,,,,,,,0.086566763,0.092115782,0.09340269,0.094574358,,,,,,,0.001156844,0.001571992,0.001645336,0.001627756,,,,,,,0.053298701,0.059437563,0.060937368,0.061863892,,,,,,,0.806842079,0.867412963,0.894526224,0.92306632,,,,,,,1144.895291,1136.341378,1128.359341,1132.616578,,,,,,,0.002573776,0.002592865,0.002609876,0.002632422,,,,,,,0.02099935,0.020995153,0.020991319,0.020987045,,,,,,,0.720436341,0.956375576,0.998228006,0.998885294,,,,,,,0.002011333,0.002733125,0.002860643,0.002830078,,,,,,,0.106057643,0.111525501,0.112802722,0.113137135,,,,,,,0.024846172,0.029540537,0.030408804,0.030280891,,,,,,,0.00935487,0.009284978,0.009219755,0.00925454,,,,,,,0.084080761,0.089518115,0.090668299,0.091656743,,,,,,,0.001167374,0.001586297,0.001660283,0.001642585,,,,,,,0.059403481,0.065853459,0.067581898,0.068799328,,,,,,,0.806560396,0.867232986,0.894323939,0.922813892,,,,,,,1131.298732,1123.240382,1115.758503,1120.549055,,,,,,,0.002624707,0.002643743,0.002660708,0.002683194,,,,,,,0.021004736,0.021000139,0.020995949,0.020991275,,,,,,,0.781977542,1.038153835,1.083582435,1.084367209,,,,,,,0.00202964,0.002757996,0.002886631,0.00285586,,,,,,,0.10901997,0.114537885,0.115826718,0.11616633,,,,,,,0.025321437,0.030058528,0.030934461,0.030806049,,,,,,,0.009243774,0.009177929,0.009116795,0.009155938,,,,,,,0.089333963,0.095074928,0.096452394,0.09772691,,,,,,,0.001181339,0.001604971,0.001679845,0.001661811,,,,,,,0.054154353,0.060432927,0.0619503,0.062870898,,,,,,,0.834670419,0.896856001,0.92498412,0.95475209,,,,,,,1127.533165,1119.691319,1112.446081,1117.527466,,,,,,,0.002669618,0.002689536,0.002707289,0.002730821,,,,,,,0.021210668,0.021206558,0.021202821,0.021198654,,,,,,,0.77171234,1.0245972,1.069445903,1.070211103,,,,,,,0.002053923,0.002790464,0.002920641,0.002889288,,,,,,,0.111051339,0.116633424,0.117939411,0.11828422,,,,,,,0.025711977,0.030502574,0.03138922,0.031258228,,,,,,,0.009213003,0.00914893,0.009089729,0.009131249,,,,,,,0.084349612,0.089938081,0.091126865,0.092134741,, +Bus,B0,2030,,,,,,0.001157517,0.001573686,0.001646886,0.001616456,,,,,,,0.067342764,0.074045655,0.076047507,0.07750297,,,,,,,0.815463409,0.875519544,0.90222885,0.929217412,,,,,,,1109.038339,1101.201624,1093.979456,1085.471429,,,,,,,0.002570082,0.002588659,0.002605356,0.00262749,,,,,,,0.02105426,0.021049874,0.021045874,0.021039231,,,,,,,0.758117606,1.007378287,1.051352106,1.038295349,,,,,,,0.002012503,0.002736071,0.002863339,0.002810432,,,,,,,0.1056058,0.111085529,0.11236064,0.11251741,,,,,,,0.024795214,0.029500929,0.03036755,0.030093134,,,,,,,0.009061887,0.008997851,0.00893884,0.008869321,,,,,,,0.096027291,0.102009647,0.103648642,0.104741802,,,,,,,0.001160877,0.001578339,0.001651735,0.001621244,,,,,,,0.064522716,0.071123038,0.07301754,0.074326719,,,,,,,0.804695421,0.864297679,0.890609705,0.917087243,,,,,,,1118.323316,1110.424014,1103.123713,1094.516261,,,,,,,0.002588069,0.002606286,0.002622657,0.002644362,,,,,,,0.02100488,0.020999888,0.020995319,0.020987845,,,,,,,0.755851257,1.004377436,1.048213986,1.035236614,,,,,,,0.002018346,0.00274416,0.002871768,0.002818755,,,,,,,0.10693261,0.112428735,0.113706804,0.113863171,,,,,,,0.024994922,0.029715167,0.03058405,0.030308994,,,,,,,0.00913775,0.009073206,0.009013556,0.008943225,,,,,,,0.093691501,0.099576763,0.10111381,0.102068224,,,,,,,0.001188984,0.001616716,0.00169185,0.001661064,,,,,,,0.06941849,0.076396938,0.078451748,0.079920821,,,,,,,0.832968015,0.894259878,0.92157104,0.949230275,,,,,,,1114.282144,1106.847587,1099.972337,1091.946846,,,,,,,0.002762888,0.002781891,0.002798973,0.002821617,,,,,,,0.021100917,0.021099936,0.021099055,0.021096662,,,,,,,0.758474959,1.007937227,1.051929861,1.039129792,,,,,,,0.002067213,0.002810884,0.002941516,0.00288799,,,,,,,0.116569287,0.122209936,0.123527257,0.123703102,,,,,,,0.026485373,0.031322912,0.032213503,0.03193803,,,,,,,0.009104732,0.009043984,0.008987807,0.008922231,,,,,,,0.09811189,0.104362056,0.106060689,0.107181079,,,,,,,0.001128615,0.001534631,0.001606033,0.001576333,,,,,,,0.065325343,0.071808498,0.073753175,0.075175167,,,,,,,0.784215473,0.842473352,0.868080141,0.893760546,,,,,,,1109.734828,1101.405597,1093.696251,1084.49777,,,,,,,0.002442618,0.002460309,0.002476209,0.002497287,,,,,,,0.020839648,0.020834286,0.020829391,0.020821497,,,,,,,0.735286056,0.976904485,1.019539174,1.006726251,,,,,,,0.001962253,0.002668168,0.002792311,0.002740673,,,,,,,0.098817345,0.104158986,0.105398812,0.105547313,,,,,,,0.02365965,0.028250008,0.029094855,0.028826459,,,,,,,0.009067576,0.008999517,0.008936525,0.008861365,,,,,,,0.094176458,0.099940031,0.101511255,0.102552463,,,,,,,0.001181464,0.001606525,0.001681193,0.001650572,,,,,,,0.055332222,0.061687912,0.063221873,0.064012073,,,,,,,0.825977465,0.88685257,0.91391778,0.941288784,,,,,,,1135.010214,1127.038084,1119.610445,1110.833093,,,,,,,0.002726548,0.002745358,0.002762265,0.002784676,,,,,,,0.021057015,0.021055664,0.021054429,0.021051561,,,,,,,0.722985574,0.960720791,1.002650699,0.990408235,,,,,,,0.00205414,0.002793166,0.002922987,0.002869747,,,,,,,0.11458987,0.120194007,0.121501929,0.121675008,,,,,,,0.026162857,0.030970021,0.031854927,0.031580696,,,,,,,0.009274099,0.009208959,0.00914827,0.00907655,,,,,,,0.085668644,0.091324743,0.092523404,0.092991128,,,,,,,0.001145869,0.0015582,0.001630663,0.001600736,,,,,,,0.056840853,0.063071794,0.064686751,0.065641649,,,,,,,0.792957466,0.851848001,0.877753829,0.903763207,,,,,,,1121.227385,1112.929609,1105.218488,1096.025965,,,,,,,0.002544855,0.002562752,0.002578839,0.002600163,,,,,,,0.020866614,0.020862792,0.020859319,0.02085333,,,,,,,0.721530317,0.958666413,1.000502756,0.988067494,,,,,,,0.001992252,0.002709144,0.002835132,0.0027831,,,,,,,0.104634743,0.110063701,0.111326161,0.111483964,,,,,,,0.024561632,0.029223912,0.030081834,0.02981241,,,,,,,0.00916148,0.00909368,0.009030671,0.008955561,,,,,,,0.086651577,0.092182082,0.093447335,0.094055325,,,,,,,0.00115649,0.001572402,0.001645531,0.001615209,,,,,,,0.053365615,0.059490147,0.060970104,0.061733546,,,,,,,0.809398519,0.869167657,0.895657971,0.922374925,,,,,,,1145.085961,1136.552219,1128.590873,1119.082888,,,,,,,0.002575858,0.002594244,0.002610769,0.002632674,,,,,,,0.021000939,0.020996809,0.020993028,0.020986675,,,,,,,0.719467243,0.955980627,0.997706022,0.985336973,,,,,,,0.002010715,0.002733837,0.002860982,0.002808262,,,,,,,0.106080051,0.11155672,0.112831026,0.112989003,,,,,,,0.024845635,0.029548496,0.030414326,0.030141095,,,,,,,0.009356429,0.009286698,0.009221647,0.009143957,,,,,,,0.084148646,0.089573249,0.090705664,0.091126475,,,,,,,0.001167019,0.001586716,0.001660486,0.001629923,,,,,,,0.059497062,0.06592388,0.067626206,0.068670125,,,,,,,0.809111028,0.868984853,0.895453893,0.922117812,,,,,,,1131.495709,1123.455133,1115.991851,1107.168577,,,,,,,0.002626783,0.002645119,0.002661598,0.002683445,,,,,,,0.021006371,0.021001845,0.020997712,0.02099083,,,,,,,0.780925331,1.037726433,1.083017045,1.069657828,,,,,,,0.002029024,0.002758724,0.002886984,0.002833846,,,,,,,0.109043772,0.114570657,0.11585659,0.1160162,,,,,,,0.025321079,0.030066766,0.030940248,0.030664905,,,,,,,0.009245381,0.009179683,0.009118701,0.009046607,,,,,,,0.089426742,0.095146782,0.096500577,0.097202338,,,,,,,0.00118098,0.001605391,0.001680046,0.001649005,,,,,,,0.054220312,0.06048509,0.061982757,0.062736525,,,,,,,0.837338576,0.898686034,0.926164829,0.954056812,,,,,,,1127.723885,1119.899718,1112.672393,1104.186019,,,,,,,0.00267179,0.002690976,0.002708222,0.002731083,,,,,,,0.021212217,0.021208177,0.021204501,0.021198298,,,,,,,0.770676038,1.024175671,1.068887594,1.055742025,,,,,,,0.002053298,0.002791195,0.002920992,0.002867023,,,,,,,0.111075712,0.116666853,0.117969937,0.118132289,,,,,,,0.025711647,0.030510911,0.03139508,0.03111546,,,,,,,0.009214562,0.009150633,0.009091578,0.009022237,,,,,,,0.084416557,0.089992788,0.091163819,0.091606558, +Bus,B0,2035,,,,,,,0.00115859,0.001573705,0.001647073,0.00161699,,,,,,,0.067443179,0.074103392,0.076040929,0.077481267,,,,,,,0.817227214,0.876643986,0.902105388,0.928807449,,,,,,,1109.137052,1101.296631,1094.048858,1083.901706,,,,,,,0.002571437,0.002589576,0.002605253,0.002627145,,,,,,,0.021054453,0.021050041,0.021046005,0.021040085,,,,,,,0.758701471,1.00734926,1.051445253,1.03579131,,,,,,,0.002014369,0.002736105,0.002863664,0.00281136,,,,,,,0.105618762,0.111084687,0.112361297,0.112527561,,,,,,,0.024807214,0.029501021,0.030369444,0.030099607,,,,,,,0.009062691,0.008998629,0.008939407,0.008856495,,,,,,,0.096123443,0.102066094,0.103644651,0.104674191,,,,,,,0.001161954,0.001578358,0.001651923,0.001621781,,,,,,,0.064614221,0.071174694,0.073011692,0.074307368,,,,,,,0.806427588,0.865400693,0.890489972,0.916686074,,,,,,,1118.420752,1110.517772,1103.193093,1092.933601,,,,,,,0.0025894,0.002607184,0.002622557,0.002644024,,,,,,,0.021005094,0.02100006,0.020995454,0.020988741,,,,,,,0.756433713,1.004348382,1.048307023,1.032733988,,,,,,,0.002020217,0.002744192,0.002872095,0.00281969,,,,,,,0.106945717,0.11242793,0.113707499,0.113873739,,,,,,,0.02500697,0.029715257,0.030585962,0.030315556,,,,,,,0.009138546,0.009073973,0.009014124,0.008930294,,,,,,,0.093779312,0.099627548,0.101110483,0.102002408,,,,,,,0.001190088,0.001616736,0.001692041,0.001661616,,,,,,,0.069520224,0.07645509,0.078445183,0.079899212,,,,,,,0.834772296,0.895410209,0.921445329,0.948812634,,,,,,,1114.380004,1106.941009,1100.039112,1090.365414,,,,,,,0.002764275,0.00278283,0.002798868,0.002821263,,,,,,,0.02110111,0.021100099,0.02109917,0.021097544,,,,,,,0.759059881,1.007908538,1.052022587,1.036595325,,,,,,,0.002069133,0.002810919,0.002941848,0.00288895,,,,,,,0.116582976,0.122209365,0.123528102,0.123715263,,,,,,,0.026497759,0.031323044,0.032215457,0.031944929,,,,,,,0.009105531,0.009044748,0.008988353,0.008909309,,,,,,,0.098209226,0.104418844,0.106056611,0.107113214,,,,,,,0.00112966,0.001534648,0.001606216,0.001576852,,,,,,,0.065423259,0.071864878,0.073746758,0.075153909,,,,,,,0.78589789,0.843543827,0.867962827,0.893370525,,,,,,,1109.833403,1101.50149,1093.767907,1082.936232,,,,,,,0.002443909,0.002461181,0.00247611,0.002496958,,,,,,,0.020839844,0.020834456,0.02082953,0.02082237,,,,,,,0.735852251,0.976876634,1.019630618,1.004295291,,,,,,,0.001964071,0.002668198,0.002792628,0.002741575,,,,,,,0.098829753,0.104157977,0.105399378,0.105556257,,,,,,,0.023671306,0.02825006,0.029096692,0.028832631,,,,,,,0.00906838,0.009000302,0.008937111,0.008848606,,,,,,,0.09427029,0.099995243,0.101507474,0.102485525,,,,,,,0.001182562,0.001606544,0.001681383,0.001651119,,,,,,,0.055392262,0.061717918,0.063218381,0.064000936,,,,,,,0.827764369,0.887990519,0.913793054,0.940875254,,,,,,,1135.10386,1127.129255,1119.678987,1109.226746,,,,,,,0.002727921,0.002746285,0.00276216,0.002784327,,,,,,,0.021057213,0.021055818,0.021054548,0.021052441,,,,,,,0.723543331,0.960693146,1.00273921,0.987992535,,,,,,,0.002056048,0.002793199,0.002923317,0.002870699,,,,,,,0.114603416,0.120193334,0.121502703,0.121686784,,,,,,,0.026175158,0.03097013,0.031856864,0.031587509,,,,,,,0.009274864,0.009209703,0.009148831,0.009063423,,,,,,,0.085727189,0.091355343,0.092522241,0.092932215,,,,,,,0.001146931,0.001558217,0.001630847,0.001601265,,,,,,,0.056910398,0.063108751,0.064682503,0.06562778,,,,,,,0.794659398,0.852931661,0.877635301,0.903369318,,,,,,,1121.322249,1113.022566,1105.289151,1094.447106,,,,,,,0.002546161,0.002563636,0.00257874,0.00259983,,,,,,,0.020866815,0.020862959,0.020859449,0.020854223,,,,,,,0.722086561,0.958639411,1.000591844,0.985667243,,,,,,,0.001994098,0.002709175,0.002835452,0.002784019,,,,,,,0.104647566,0.110062845,0.111326802,0.111493983,,,,,,,0.024573505,0.029223982,0.030083699,0.029818817,,,,,,,0.009162254,0.00909444,0.00903125,0.008942661,,,,,,,0.086718973,0.092219188,0.09344552,0.093994702,,,,,,,0.001157562,0.001572421,0.001645718,0.001615743,,,,,,,0.053423643,0.059519176,0.060966692,0.061722615,,,,,,,0.811145635,0.870280618,0.895536791,0.921969551,,,,,,,1145.180674,1136.645101,1128.662657,1117.466859,,,,,,,0.002577201,0.002595151,0.002610667,0.002632333,,,,,,,0.021001148,0.020996976,0.020993164,0.020987549,,,,,,,0.720021854,0.955953038,0.997794745,0.982952847,,,,,,,0.002012581,0.002733869,0.002861307,0.00280919,,,,,,,0.106093075,0.111555892,0.112831735,0.112999274,,,,,,,0.024857637,0.029548575,0.030416225,0.030147587,,,,,,,0.009357198,0.009287456,0.009222234,0.009130754,,,,,,,0.084205327,0.089603009,0.090704697,0.091067467,,,,,,,0.001168102,0.001586735,0.001660675,0.001630464,,,,,,,0.059572397,0.065964507,0.06762158,0.06865493,,,,,,,0.810854224,0.870095023,0.895332524,0.921714162,,,,,,,1131.590457,1123.547729,1116.061811,1105.567294,,,,,,,0.002628122,0.002646023,0.002661497,0.002683105,,,,,,,0.021006574,0.021002017,0.020997857,0.020991733,,,,,,,0.781526945,1.037696452,1.083113499,1.067066417,,,,,,,0.002030905,0.002758757,0.002887312,0.002834787,,,,,,,0.109056971,0.114569903,0.115857383,0.116027175,,,,,,,0.025333195,0.030066865,0.030942179,0.03067155,,,,,,,0.009246157,0.00918044,0.009119271,0.009033523,,,,,,,0.089499521,0.095187286,0.09649839,0.097139807,,,,,,,0.001182076,0.001605412,0.001680237,0.001649553,,,,,,,0.05427809,0.060513734,0.061979414,0.062725826,,,,,,,0.839158535,0.899847739,0.926037304,0.953634783,,,,,,,1127.818257,1119.991782,1112.741702,1102.58574,,,,,,,0.002673191,0.002691923,0.002708116,0.002730728,,,,,,,0.021212412,0.021208345,0.021204629,0.021199158,,,,,,,0.771269868,1.024145491,1.06898204,1.053198452,,,,,,,0.002055203,0.002791231,0.002921325,0.002867976,,,,,,,0.111089168,0.116666148,0.117970727,0.118143523,,,,,,,0.025723922,0.030511034,0.03139704,0.031122205,,,,,,,0.009215331,0.009151383,0.009092142,0.009009162,,,,,,,0.084473035,0.090022146,0.091162826,0.091548239 +Bus,B0,2040,,,,,,,,0.001158528,0.001573689,0.001647143,,,,,,,,0.067501054,0.074099329,0.076041949,,,,,,,,0.818358549,0.876584091,0.902134885,,,,,,,,1109.113506,1101.24405,1093.984508,,,,,,,,0.002572369,0.00258954,0.002605286,,,,,,,,0.021053544,0.021049108,0.021045051,,,,,,,,0.758682754,1.007394624,1.05152305,,,,,,,,0.002014261,0.002736076,0.002863786,,,,,,,,0.105599523,0.111066034,0.112344076,,,,,,,,0.024804152,0.029498472,0.030367909,,,,,,,,0.009062499,0.008998198,0.008938881,,,,,,,,0.09617642,0.102060719,0.103643648,,,,,,,,0.001161888,0.001578337,0.00165199,,,,,,,,0.064665837,0.071170767,0.073012375,,,,,,,,0.807536202,0.865341312,0.890517527,,,,,,,,1118.392441,1110.461627,1103.125572,,,,,,,,0.002590313,0.002607149,0.002622591,,,,,,,,0.021004153,0.020999093,0.020994475,,,,,,,,0.75641356,1.004391477,1.048382853,,,,,,,,0.002020103,0.002744157,0.002872212,,,,,,,,0.106926005,0.112408746,0.113689814,,,,,,,,0.025003806,0.029712607,0.030584342,,,,,,,,0.009138318,0.009073514,0.009013572,,,,,,,,0.093826367,0.099622178,0.101109093,,,,,,,,0.001190012,0.001616703,0.001692097,,,,,,,,0.069578163,0.076450578,0.078445771,,,,,,,,0.835927374,0.895346114,0.921471495,,,,,,,,1114.341582,1106.873759,1099.96068,,,,,,,,0.002765228,0.002782793,0.002798901,,,,,,,,0.021100055,0.021099014,0.021098072,,,,,,,,0.759034742,1.00794556,1.052091852,,,,,,,,0.002069,0.002810861,0.002941944,,,,,,,,0.116560708,0.122187579,0.123507782,,,,,,,,0.026494178,0.03131994,0.032213394,,,,,,,,0.009105218,0.009044196,0.008987712,,,,,,,,0.098261809,0.104412634,0.106054803,,,,,,,,0.001129601,0.001534636,0.001606287,,,,,,,,0.065479889,0.071861013,0.073747796,,,,,,,,0.786975214,0.843487436,0.867990955,,,,,,,,1109.812472,1101.453027,1093.706755,,,,,,,,0.002444796,0.002461148,0.002476142,,,,,,,,0.020838942,0.020833536,0.020828578,,,,,,,,0.735835008,0.976922196,1.019707131,,,,,,,,0.001963968,0.002668177,0.002792752,,,,,,,,0.098812308,0.104141173,0.10538394,,,,,,,,0.023668499,0.028247785,0.029095395,,,,,,,,0.00906821,0.008999905,0.008936611,,,,,,,,0.094322184,0.09999019,0.101506586,,,,,,,,0.001182486,0.001606513,0.001681439,,,,,,,,0.055421699,0.061714591,0.063218014,,,,,,,,0.828907678,0.887927531,0.91381913,,,,,,,,1135.062526,1127.063037,1119.601094,,,,,,,,0.002728864,0.00274625,0.002762193,,,,,,,,0.02105616,0.021054753,0.021053453,,,,,,,,0.723519809,0.960729789,1.002805803,,,,,,,,0.002055917,0.002793146,0.002923414,,,,,,,,0.114581655,0.120172131,0.121482917,,,,,,,,0.02617165,0.030967121,0.03185487,,,,,,,,0.009274528,0.009209163,0.009148191,,,,,,,,0.085753234,0.091350247,0.092519542,,,,,,,,0.001146865,0.001558196,0.001630911,,,,,,,,0.056947105,0.063105412,0.064682619,,,,,,,,0.795748977,0.852872704,0.877661695,,,,,,,,1121.290906,1112.965938,1105.220215,,,,,,,,0.002547059,0.002563601,0.002578772,,,,,,,,0.020865841,0.020861968,0.020858429,,,,,,,,0.722066605,0.958679837,1.000662845,,,,,,,,0.001993983,0.002709139,0.002835563,,,,,,,,0.104628504,0.110044347,0.111309723,,,,,,,,0.024570423,0.029221411,0.030082126,,,,,,,,0.009162001,0.009093977,0.009030687,,,,,,,,0.0867521,0.092214388,0.093443551,,,,,,,,0.001157497,0.001572402,0.001645785,,,,,,,,0.053452326,0.059516197,0.060966599,,,,,,,,0.812264686,0.870221039,0.895564702,,,,,,,,1145.149233,1136.589635,1128.594805,,,,,,,,0.002578123,0.002595117,0.0026107,,,,,,,,0.021000199,0.020996016,0.020992184,,,,,,,,0.720002697,0.955995324,0.997866866,,,,,,,,0.002012468,0.002733837,0.002861423,,,,,,,,0.106073609,0.11153709,0.112814282,,,,,,,,0.024854517,0.029545988,0.030414634,,,,,,,,0.009356943,0.009287005,0.00922168,,,,,,,,0.084230992,0.089598559,0.090702544,,,,,,,,0.001168033,0.001586712,0.001660739,,,,,,,,0.059612785,0.065960938,0.067621781,,,,,,,,0.811970312,0.870034353,0.895360008,,,,,,,,1131.557656,1123.48854,1115.990489,,,,,,,,0.002629042,0.002645988,0.002661531,,,,,,,,0.021005611,0.021001029,0.020996841,,,,,,,,0.781504835,1.037739849,1.083189785,,,,,,,,0.002030786,0.002758717,0.002887423,,,,,,,,0.109036661,0.114550125,0.11583903,,,,,,,,0.025329936,0.030064112,0.030940444,,,,,,,,0.009245888,0.009179955,0.009118692,,,,,,,,0.089535992,0.095182176,0.096496428,,,,,,,,0.00118201,0.001605393,0.001680306,,,,,,,,0.054306329,0.060510704,0.061979246,,,,,,,,0.840327255,0.899785768,0.926066678,,,,,,,,1127.78764,1119.935206,1112.67309,,,,,,,,0.002674153,0.002691887,0.00270815,,,,,,,,0.021211494,0.021207403,0.021203661,,,,,,,,0.771249599,1.024190752,1.069059447,,,,,,,,0.002055089,0.002791197,0.002921444,,,,,,,,0.111068424,0.116646018,0.117951993,,,,,,,,0.025720641,0.030508269,0.031395293,,,,,,,,0.009215082,0.009150923,0.009091582,,,,,,,,0.084498323,0.090017632,0.091160593 +Bus,B0,2045,,,,,,,,,0.001159268,0.001573997,,,,,,,,,0.067510178,0.074104445,,,,,,,,,0.818414679,0.876641,,,,,,,,,1109.143792,1101.275264,,,,,,,,,0.002572359,0.002589565,,,,,,,,,0.021053895,0.021049473,,,,,,,,,0.759097833,1.007557489,,,,,,,,,0.002015548,0.002736613,,,,,,,,,0.105614805,0.111076248,,,,,,,,,0.024813233,0.029502752,,,,,,,,,0.009062746,0.008998453,,,,,,,,,0.096185815,0.102066414,,,,,,,,,0.001162631,0.001578649,,,,,,,,,0.064675091,0.071175818,,,,,,,,,0.807592368,0.865397993,,,,,,,,,1118.424093,1110.494443,,,,,,,,,0.002590303,0.002607176,,,,,,,,,0.021004519,0.020999479,,,,,,,,,0.756827989,1.004555106,,,,,,,,,0.002021395,0.002744699,,,,,,,,,0.106941482,0.112419228,,,,,,,,,0.025012953,0.02971695,,,,,,,,,0.009138575,0.009073783,,,,,,,,,0.093835919,0.099627856,,,,,,,,,0.001190777,0.001617024,,,,,,,,,0.069587867,0.076455997,,,,,,,,,0.835984583,0.895405582,,,,,,,,,1114.376994,1106.909458,,,,,,,,,0.002765218,0.002782818,,,,,,,,,0.021100466,0.02109943,,,,,,,,,0.759452581,1.008110557,,,,,,,,,0.00207033,0.002811419,,,,,,,,,0.116577387,0.122199032,,,,,,,,,0.026503678,0.031324497,,,,,,,,,0.009105506,0.009044489,,,,,,,,,0.098271888,0.104418718,,,,,,,,,0.001130322,0.001534935,,,,,,,,,0.065488665,0.071865941,,,,,,,,,0.787030397,0.84354194,,,,,,,,,1109.841919,1101.482576,,,,,,,,,0.002444786,0.002461172,,,,,,,,,0.020839296,0.020833894,,,,,,,,,0.736237235,0.977079924,,,,,,,,,0.001965221,0.002668697,,,,,,,,,0.098826732,0.104150595,,,,,,,,,0.023677289,0.028251876,,,,,,,,,0.00906845,0.009000147,,,,,,,,,0.094331219,0.099995661,,,,,,,,,0.001183246,0.001606831,,,,,,,,,0.055431559,0.061719149,,,,,,,,,0.828964497,0.887986053,,,,,,,,,1135.097423,1127.097905,,,,,,,,,0.002728854,0.002746275,,,,,,,,,0.021056563,0.021055161,,,,,,,,,0.723917896,0.960886792,,,,,,,,,0.002057238,0.002793699,,,,,,,,,0.114598066,0.120183333,,,,,,,,,0.026181066,0.03097162,,,,,,,,,0.009274812,0.009209448,,,,,,,,,0.085763446,0.091355519,,,,,,,,,0.001147599,0.001558503,,,,,,,,,0.056956383,0.063109959,,,,,,,,,0.795804774,0.852928961,,,,,,,,,1121.322857,1112.998301,,,,,,,,,0.002547049,0.002563626,,,,,,,,,0.02086622,0.020862355,,,,,,,,,0.722462444,0.958835973,,,,,,,,,0.00199526,0.002709672,,,,,,,,,0.104643662,0.110054492,,,,,,,,,0.024579435,0.029225667,,,,,,,,,0.009162261,0.009094242,,,,,,,,,0.086761674,0.092219578,,,,,,,,,0.001158238,0.00157271,,,,,,,,,0.05346176,0.059520468,,,,,,,,,0.812320615,0.870276733,,,,,,,,,1145.180845,1136.620723,,,,,,,,,0.002578113,0.00259514,,,,,,,,,0.021000568,0.020996378,,,,,,,,,0.720397228,0.956149577,,,,,,,,,0.002013755,0.002734373,,,,,,,,,0.106088976,0.111547301,,,,,,,,,0.024863618,0.02955026,,,,,,,,,0.009357203,0.009287256,,,,,,,,,0.084240696,0.089603464,,,,,,,,,0.001168781,0.001587024,,,,,,,,,0.05962223,0.065965678,,,,,,,,,0.812026155,0.870091914,,,,,,,,,1131.590196,1123.521316,,,,,,,,,0.002629032,0.002646013,,,,,,,,,0.021005986,0.021001414,,,,,,,,,0.781933528,1.037908469,,,,,,,,,0.002032087,0.002759261,,,,,,,,,0.109052437,0.114560774,,,,,,,,,0.02533916,0.030068485,,,,,,,,,0.009246154,0.009180224,,,,,,,,,0.089545739,0.09518756,,,,,,,,,0.001182766,0.001605708,,,,,,,,,0.054316049,0.060515111,,,,,,,,,0.840383719,0.89984457,,,,,,,,,1127.819239,1119.967377,,,,,,,,,0.002674142,0.002691913,,,,,,,,,0.021211851,0.021207775,,,,,,,,,0.771672098,1.024356308,,,,,,,,,0.002056403,0.002791747,,,,,,,,,0.111084444,0.116656854,,,,,,,,,0.025729965,0.030512696,,,,,,,,,0.009215341,0.009151188,,,,,,,,,0.084508281,0.090022697 +Bus,B0,2050,,,,,,,,,,0.001159193,,,,,,,,,,0.067514983,,,,,,,,,,0.818504719,,,,,,,,,,1109.102968,,,,,,,,,,0.002572433,,,,,,,,,,0.021053825,,,,,,,,,,0.759060183,,,,,,,,,,0.002015417,,,,,,,,,,0.105615,,,,,,,,,,0.024812526,,,,,,,,,,0.009062412,,,,,,,,,,0.096189028,,,,,,,,,,0.001162556,,,,,,,,,,0.064679432,,,,,,,,,,0.807680859,,,,,,,,,,1118.38322,,,,,,,,,,0.002590377,,,,,,,,,,0.021004443,,,,,,,,,,0.756790503,,,,,,,,,,0.002021265,,,,,,,,,,0.106941653,,,,,,,,,,0.025012244,,,,,,,,,,0.009138241,,,,,,,,,,0.093838684,,,,,,,,,,0.0011907,,,,,,,,,,0.069592666,,,,,,,,,,0.83607663,,,,,,,,,,1114.337362,,,,,,,,,,0.002765293,,,,,,,,,,0.021100393,,,,,,,,,,0.759414876,,,,,,,,,,0.002070196,,,,,,,,,,0.116577428,,,,,,,,,,0.026502939,,,,,,,,,,0.009105182,,,,,,,,,,0.098275162,,,,,,,,,,0.001130249,,,,,,,,,,0.065493331,,,,,,,,,,0.787116191,,,,,,,,,,1109.799402,,,,,,,,,,0.002444857,,,,,,,,,,0.020839221,,,,,,,,,,0.736200241,,,,,,,,,,0.001965094,,,,,,,,,,0.098826942,,,,,,,,,,0.023676607,,,,,,,,,,0.009068104,,,,,,,,,,0.0943343,,,,,,,,,,0.00118317,,,,,,,,,,0.055434141,,,,,,,,,,0.829055531,,,,,,,,,,1135.056683,,,,,,,,,,0.002728928,,,,,,,,,,0.021056493,,,,,,,,,,0.72388185,,,,,,,,,,0.002057105,,,,,,,,,,0.114598114,,,,,,,,,,0.026180335,,,,,,,,,,0.009274478,,,,,,,,,,0.08576462,,,,,,,,,,0.001147525,,,,,,,,,,0.056959533,,,,,,,,,,0.795891043,,,,,,,,,,1121.280854,,,,,,,,,,0.002547121,,,,,,,,,,0.020866146,,,,,,,,,,0.722426452,,,,,,,,,,0.001995131,,,,,,,,,,0.104643824,,,,,,,,,,0.024578739,,,,,,,,,,0.009161918,,,,,,,,,,0.086763331,,,,,,,,,,0.001158163,,,,,,,,,,0.053464284,,,,,,,,,,0.81240968,,,,,,,,,,1145.138596,,,,,,,,,,0.002578186,,,,,,,,,,0.021000495,,,,,,,,,,0.720361673,,,,,,,,,,0.002013625,,,,,,,,,,0.106089148,,,,,,,,,,0.024862912,,,,,,,,,,0.009356858,,,,,,,,,,0.084241784,,,,,,,,,,0.001168706,,,,,,,,,,0.059625683,,,,,,,,,,0.812114985,,,,,,,,,,1131.549153,,,,,,,,,,0.002629105,,,,,,,,,,0.021005909,,,,,,,,,,0.781894734,,,,,,,,,,0.002031956,,,,,,,,,,0.10905256,,,,,,,,,,0.025338441,,,,,,,,,,0.009245819,,,,,,,,,,0.089547704,,,,,,,,,,0.001182689,,,,,,,,,,0.054318537,,,,,,,,,,0.840476545,,,,,,,,,,1127.778516,,,,,,,,,,0.002674218,,,,,,,,,,0.021211778,,,,,,,,,,0.771634165,,,,,,,,,,0.00205627,,,,,,,,,,0.111084549,,,,,,,,,,0.025729235,,,,,,,,,,0.009215007,,,,,,,,,,0.084509359 +Bus,B20,1990,0.883805015,,,,,,,,,,0.00368836,,,,,,,,,,5.055246046,,,,,,,,,,1463.077356,,,,,,,,,,0.002477486,,,,,,,,,,0.022684111,,,,,,,,,,30.43528107,,,,,,,,,,0.395375622,,,,,,,,,,1.695940624,,,,,,,,,,1.471116018,,,,,,,,,,0.117378364,,,,,,,,,,1.267718012,,,,,,,,,,0.88502489,,,,,,,,,,0.003691557,,,,,,,,,,5.061601454,,,,,,,,,,1472.962773,,,,,,,,,,0.002495124,,,,,,,,,,0.022691987,,,,,,,,,,30.40660063,,,,,,,,,,0.396233062,,,,,,,,,,1.700632845,,,,,,,,,,1.473830426,,,,,,,,,,0.118171458,,,,,,,,,,1.268809751,,,,,,,,,,0.883664445,,,,,,,,,,0.003847652,,,,,,,,,,5.199452034,,,,,,,,,,1478.340888,,,,,,,,,,0.002665043,,,,,,,,,,0.022892169,,,,,,,,,,30.42663613,,,,,,,,,,0.418499032,,,,,,,,,,1.74708532,,,,,,,,,,1.506348905,,,,,,,,,,0.118602918,,,,,,,,,,1.319888435,,,,,,,,,,0.873811461,,,,,,,,,,0.003580698,,,,,,,,,,4.927575921,,,,,,,,,,1455.794128,,,,,,,,,,0.002354213,,,,,,,,,,0.022474324,,,,,,,,,,29.66691167,,,,,,,,,,0.381740493,,,,,,,,,,1.654558215,,,,,,,,,,1.440229968,,,,,,,,,,0.116794065,,,,,,,,,,1.232109371,,,,,,,,,,0.881694758,,,,,,,,,,0.003752389,,,,,,,,,,5.166009627,,,,,,,,,,1490.603383,,,,,,,,,,0.002629792,,,,,,,,,,0.022838974,,,,,,,,,,29.02959598,,,,,,,,,,0.414484106,,,,,,,,,,1.735960798,,,,,,,,,,1.4982276,,,,,,,,,,0.119586712,,,,,,,,,,1.288509612,,,,,,,,,,0.87463535,,,,,,,,,,0.003619553,,,,,,,,,,5.004914671,,,,,,,,,,1470.257964,,,,,,,,,,0.002453534,,,,,,,,,,0.022586811,,,,,,,,,,29.10137134,,,,,,,,,,0.393596223,,,,,,,,,,1.68204278,,,,,,,,,,1.459226299,,,,,,,,,,0.117954454,,,,,,,,,,1.244641052,,,,,,,,,,0.881525441,,,,,,,,,,0.003626531,,,,,,,,,,5.05042807,,,,,,,,,,1489.157144,,,,,,,,,,0.002483256,,,,,,,,,,0.022670095,,,,,,,,,,28.92217194,,,,,,,,,,0.396204991,,,,,,,,,,1.695488991,,,,,,,,,,1.470128526,,,,,,,,,,0.119470683,,,,,,,,,,1.247570108,,,,,,,,,,0.885284232,,,,,,,,,,0.003696143,,,,,,,,,,5.090275191,,,,,,,,,,1484.778406,,,,,,,,,,0.002532621,,,,,,,,,,0.02272983,,,,,,,,,,31.42327075,,,,,,,,,,0.400361132,,,,,,,,,,1.710312527,,,,,,,,,,1.480435037,,,,,,,,,,0.119119392,,,,,,,,,,1.270353529,,,,,,,,,,0.892690375,,,,,,,,,,0.003704467,,,,,,,,,,5.156036252,,,,,,,,,,1483.074125,,,,,,,,,,0.00257592,,,,,,,,,,0.022849365,,,,,,,,,,30.83826314,,,,,,,,,,0.405597451,,,,,,,,,,1.729070614,,,,,,,,,,1.495737996,,,,,,,,,,0.118982653,,,,,,,,,,1.273078159,,,,,,,,, +Bus,B20,1995,0.489973193,0.665388173,,,,,,,,,0.004014774,0.003808818,,,,,,,,,4.892716121,4.920571773,,,,,,,,,1375.14408,1409.645713,,,,,,,,,0.002574682,0.002541772,,,,,,,,,0.022141213,0.022380519,,,,,,,,,21.06260887,25.31972474,,,,,,,,,0.236372657,0.312494659,,,,,,,,,1.011263316,1.310525484,,,,,,,,,0.846187418,1.119101942,,,,,,,,,0.110323753,0.013049044,,,,,,,,,1.303991728,1.289788142,,,,,,,,,0.491699595,0.66687977,,,,,,,,,0.004012397,0.003809086,,,,,,,,,4.893325554,4.923628804,,,,,,,,,1386.750266,1420.398969,,,,,,,,,0.002590615,0.002558257,,,,,,,,,0.022129657,0.022377327,,,,,,,,,21.04403882,25.298263,,,,,,,,,0.23849151,0.314013067,,,,,,,,,1.018254913,1.316354674,,,,,,,,,0.851205255,1.122966114,,,,,,,,,0.111254891,0.013148585,,,,,,,,,1.303720544,1.29004434,,,,,,,,,0.492852801,0.666958194,,,,,,,,,0.004183424,0.003971782,,,,,,,,,5.023158346,5.058015936,,,,,,,,,1389.481536,1424.573953,,,,,,,,,0.0027645,0.002730827,,,,,,,,,0.022301846,0.022564285,,,,,,,,,21.02729623,25.29762015,,,,,,,,,0.257413689,0.334578287,,,,,,,,,1.061034424,1.36013427,,,,,,,,,0.881251094,1.153518038,,,,,,,,,0.111474012,0.013187233,,,,,,,,,1.35656317,1.342651388,,,,,,,,,0.480455033,0.655651706,,,,,,,,,0.003895808,0.003696375,,,,,,,,,4.766769818,4.793849743,,,,,,,,,1373.039017,1404.859439,,,,,,,,,0.00244686,0.002415472,,,,,,,,,0.021928459,0.022168539,,,,,,,,,20.51321703,24.66989948,,,,,,,,,0.223509469,0.299218183,,,,,,,,,0.972445209,1.271046267,,,,,,,,,0.816998823,1.089607465,,,,,,,,,0.110154879,0.013004737,,,,,,,,,1.266983604,1.253148394,,,,,,,,,0.490795038,0.664936158,,,,,,,,,0.004062238,0.003863621,,,,,,,,,4.99094055,5.025200565,,,,,,,,,1409.410406,1440.615526,,,,,,,,,0.002728261,0.002694917,,,,,,,,,0.022251126,0.022512241,,,,,,,,,20.06028366,24.13492102,,,,,,,,,0.253650849,0.330683441,,,,,,,,,1.050458122,1.349454307,,,,,,,,,0.873437905,1.145699155,,,,,,,,,0.113072826,0.013335731,,,,,,,,,1.320115562,1.307816207,,,,,,,,,0.482750894,0.657307273,,,,,,,,,0.003923276,0.003728874,,,,,,,,,4.836620524,4.867432581,,,,,,,,,1389.42888,1420.324666,,,,,,,,,0.002547332,0.002515549,,,,,,,,,0.022015451,0.02226781,,,,,,,,,20.11089192,24.19435429,,,,,,,,,0.234578092,0.310688672,,,,,,,,,0.999550352,1.297901663,,,,,,,,,0.836234097,1.108345449,,,,,,,,,0.111469779,0.013147898,,,,,,,,,1.276290668,1.263738297,,,,,,,,,0.488427397,0.663518483,,,,,,,,,0.00392801,0.003734372,,,,,,,,,4.885014188,4.914294528,,,,,,,,,1413.023197,1441.60354,,,,,,,,,0.002579516,0.002546913,,,,,,,,,0.022114818,0.022359806,,,,,,,,,20.00665475,24.056367,,,,,,,,,0.237247731,0.313345668,,,,,,,,,1.011605172,1.310473,,,,,,,,,0.845990069,1.118515068,,,,,,,,,0.113362683,0.013344876,,,,,,,,,1.278753106,1.266258386,,,,,,,,,0.492544529,0.667468532,,,,,,,,,0.004009311,0.003809578,,,,,,,,,4.919313242,4.951002809,,,,,,,,,1402.025887,1433.961086,,,,,,,,,0.002628776,0.002596189,,,,,,,,,0.022156399,0.022409308,,,,,,,,,21.7428453,26.14197898,,,,,,,,,0.242472643,0.318073344,,,,,,,,,1.028064154,1.325949854,,,,,,,,,0.858148151,1.129612414,,,,,,,,,0.112480404,0.01327413,,,,,,,,,1.303415638,1.290423426,,,,,,,,,0.49844762,0.674045147,,,,,,,,,0.004014344,0.00381577,,,,,,,,,4.990925246,5.019854577,,,,,,,,,1396.578168,1430.395301,,,,,,,,,0.002676267,0.002642298,,,,,,,,,0.022304606,0.022544947,,,,,,,,,21.35917337,25.66604761,,,,,,,,,0.246573733,0.322740619,,,,,,,,,1.043213814,1.342595949,,,,,,,,,0.870280619,1.143051874,,,,,,,,,0.112043353,0.013241122,,,,,,,,,1.305129693,1.292392771,,,,,,,, +Bus,B20,2000,0.365661902,0.376451522,0.403512288,,,,,,,,0.003020556,0.003113527,0.00352652,,,,,,,,4.527427622,4.844421844,4.550942605,,,,,,,,1355.798585,1354.332937,1194.084332,,,,,,,,0.002653597,0.002660277,0.002583099,,,,,,,,0.02198868,0.022009112,0.021055635,,,,,,,,16.49468154,16.25141684,17.36699663,,,,,,,,0.201463042,0.208007456,0.251626238,,,,,,,,0.819134257,0.832192628,0.91606899,,,,,,,,0.671051587,0.682627129,0.769449486,,,,,,,,0.108771706,0.012537016,0.011053599,,,,,,,,1.238179804,1.314160547,1.350377261,,,,,,,,0.366940534,0.377755177,0.403938598,,,,,,,,0.003017392,0.003110839,0.003523475,,,,,,,,4.526627497,4.843645277,4.544098386,,,,,,,,1368.205234,1366.696841,1202.974804,,,,,,,,0.002669628,0.002676168,0.002600049,,,,,,,,0.021971868,0.021992782,0.021005777,,,,,,,,16.47608369,16.23431596,17.34721604,,,,,,,,0.203237124,0.209832837,0.252747675,,,,,,,,0.825027645,0.838122792,0.919541702,,,,,,,,0.675113787,0.686714261,0.771615601,,,,,,,,0.109767065,0.012651468,0.011135898,,,,,,,,1.237450269,1.313573342,1.349495035,,,,,,,,0.369533603,0.380412095,0.401597588,,,,,,,,0.003145511,0.00324368,0.003666236,,,,,,,,4.649402252,4.971643677,4.645639158,,,,,,,,1369.918474,1368.842178,1199.226208,,,,,,,,0.002848343,0.002855178,0.002774672,,,,,,,,0.022133692,0.022158585,0.021112715,,,,,,,,16.44084949,16.20437577,17.270883,,,,,,,,0.219139932,0.226239451,0.269255926,,,,,,,,0.86427905,0.87755089,0.951616375,,,,,,,,0.702183553,0.713895899,0.793680674,,,,,,,,0.109904501,0.012671326,0.011101196,,,,,,,,1.288279177,1.366966927,1.401532363,,,,,,,,0.358397732,0.369006382,0.397199151,,,,,,,,0.002931392,0.003020966,0.00342145,,,,,,,,4.408552789,4.71895161,4.437698474,,,,,,,,1355.973767,1354.075629,1191.861889,,,,,,,,0.002521926,0.002528277,0.002455065,,,,,,,,0.02177562,0.021795506,0.020838601,,,,,,,,16.0754007,15.8361492,16.88672926,,,,,,,,0.190917896,0.197131868,0.240390875,,,,,,,,0.786663354,0.799455824,0.885528694,,,,,,,,0.647505465,0.658873548,0.746512558,,,,,,,,0.108785784,0.012534632,0.011033027,,,,,,,,1.202894947,1.276761477,1.311636207,,,,,,,,0.367867751,0.378705316,0.400464557,,,,,,,,0.003049939,0.00314715,0.00356811,,,,,,,,4.619080256,4.939726638,4.618104259,,,,,,,,1393.172453,1391.6064,1217.380841,,,,,,,,0.002811067,0.00281783,0.002738304,,,,,,,,0.022083899,0.022108417,0.021067748,,,,,,,,15.68882252,15.4623058,16.47573113,,,,,,,,0.216030436,0.22303245,0.266026571,,,,,,,,0.855230755,0.868437423,0.943541403,,,,,,,,0.695717723,0.707381036,0.787764731,,,,,,,,0.11177011,0.012882053,0.011269254,,,,,,,,1.251503446,1.32925324,1.366122573,,,,,,,,0.360924518,0.371591441,0.396804285,,,,,,,,0.002947822,0.003040147,0.003446798,,,,,,,,4.473742445,4.787040517,4.488653036,,,,,,,,1373.306614,1371.460287,1202.593654,,,,,,,,0.002625007,0.002631432,0.002556602,,,,,,,,0.021854374,0.021876475,0.020870505,,,,,,,,15.74699121,15.51568793,16.52722596,,,,,,,,0.200199211,0.206703703,0.249579978,,,,,,,,0.810986472,0.823902932,0.904805748,,,,,,,,0.664355425,0.675805764,0.759757228,,,,,,,,0.110176345,0.012695562,0.011132369,,,,,,,,1.210279062,1.28533656,1.321165237,,,,,,,,0.364768773,0.375533616,0.401693753,,,,,,,,0.002950278,0.003043417,0.003456284,,,,,,,,4.519760566,4.83605657,4.538819719,,,,,,,,1398.84504,1396.739759,1226.307872,,,,,,,,0.002658386,0.002664992,0.002588369,,,,,,,,0.021958563,0.021979721,0.021003444,,,,,,,,15.66532917,15.43499567,16.47791128,,,,,,,,0.202262093,0.208830907,0.252135054,,,,,,,,0.820043699,0.833079837,0.915359215,,,,,,,,0.671393937,0.682946392,0.768408326,,,,,,,,0.112225207,0.012929575,0.011351891,,,,,,,,1.212108014,1.28770005,1.325569767,,,,,,,,0.367860369,0.378695321,0.403741036,,,,,,,,0.003012855,0.003107283,0.003522064,,,,,,,,4.551010066,4.86900233,4.562629117,,,,,,,,1385.018199,1383.381509,1215.105573,,,,,,,,0.002708822,0.002715402,0.002638591,,,,,,,,0.021995133,0.022016873,0.021008927,,,,,,,,17.01793451,16.76946317,17.91104659,,,,,,,,0.206579768,0.213279527,0.255981665,,,,,,,,0.833831438,0.846969679,0.926325724,,,,,,,,0.681196366,0.692824912,0.776226382,,,,,,,,0.111115925,0.012805916,0.011248191,,,,,,,,1.236360285,1.312843239,1.349319314,,,,,,,,0.371999768,0.38294516,0.40911171,,,,,,,,0.003014951,0.003110621,0.003534671,,,,,,,,4.619745909,4.941948336,4.637911317,,,,,,,,1377.856378,1376.401178,1213.453517,,,,,,,,0.00275816,0.002765064,0.002685038,,,,,,,,0.022151318,0.02217209,0.021214703,,,,,,,,16.71775106,16.4731138,17.63777428,,,,,,,,0.209810568,0.216614957,0.260298842,,,,,,,,0.845636646,0.85891872,0.940650011,,,,,,,,0.690297821,0.70204821,0.787907796,,,,,,,,0.110541335,0.012741299,0.011232901,,,,,,,,1.23702209,1.31428885,1.354106766,,,,,,, +Bus,B20,2005,0.207007944,0.269216188,0.237543053,0.295532963,,,,,,,0.00244127,0.002564775,0.002651625,0.00312511,,,,,,,2.231948661,3.598180789,3.601211549,4.036049328,,,,,,,1379.728745,1381.505471,1209.601425,1191.240268,,,,,,,0.002615482,0.002620228,0.002588206,0.002605104,,,,,,,0.022088416,0.02213367,0.021086958,0.021046719,,,,,,,9.717505566,9.616323993,8.402974776,12.05166683,,,,,,,0.113092466,0.149703764,0.157637426,0.196109209,,,,,,,0.508359024,0.62767247,0.591916268,0.713945223,,,,,,,0.384505652,0.493542712,0.47128339,0.583404036,,,,,,,0.110691598,0.01278855,0.01119724,0.011027272,,,,,,,0.565243239,0.954384497,1.002447659,1.185871678,,,,,,,0.207649273,0.270066503,0.237899209,0.296058939,,,,,,,0.002419772,0.002558958,0.002645044,0.003119903,,,,,,,2.225383633,3.593842548,3.591842,4.027628024,,,,,,,1392.588944,1394.409302,1219.657127,1200.808852,,,,,,,0.002632222,0.002636855,0.002605827,0.002622072,,,,,,,0.02207549,0.022122045,0.021038592,0.020996361,,,,,,,9.705184624,9.604548844,8.385945917,12.03503219,,,,,,,0.114003071,0.15089953,0.158622389,0.197330727,,,,,,,0.512242,0.632200189,0.595115209,0.717676859,,,,,,,0.386685202,0.496297696,0.473188914,0.585810353,,,,,,,0.111723296,0.012908001,0.011290324,0.011115848,,,,,,,0.562323484,0.953286911,1.000767575,1.184456962,,,,,,,0.209766465,0.272855649,0.238403067,0.295652849,,,,,,,0.002547098,0.002684141,0.002764483,0.003253524,,,,,,,2.291193877,3.693834577,3.671671105,4.119643822,,,,,,,1394.400244,1396.858137,1215.583618,1197.240625,,,,,,,0.002809345,0.002814202,0.002781431,0.002798056,,,,,,,0.022239091,0.022291665,0.021143111,0.021104894,,,,,,,9.741964476,9.644766556,8.392442179,12.00149381,,,,,,,0.122460001,0.162049729,0.169382603,0.211089631,,,,,,,0.539439757,0.663980196,0.621531924,0.747647363,,,,,,,0.402518023,0.516249366,0.490019314,0.605943061,,,,,,,0.111868613,0.012930671,0.011252615,0.011082817,,,,,,,0.588701033,0.997223565,1.043103131,1.232510137,,,,,,,0.203347499,0.264480867,0.234010847,0.290641417,,,,,,,0.002363456,0.002480684,0.00256641,0.003028477,,,,,,,2.169088308,3.505602096,3.514761066,3.935692176,,,,,,,1380.672944,1382.010409,1209.771778,1190.099313,,,,,,,0.002485616,0.00249012,0.002459868,0.002475989,,,,,,,0.021876683,0.021921359,0.02087103,0.020829176,,,,,,,9.445421033,9.346375181,8.156042962,11.70968318,,,,,,,0.107677045,0.142573167,0.150693728,0.186924576,,,,,,,0.487745694,0.603428555,0.570932729,0.688088039,,,,,,,0.371976104,0.47774378,0.457159994,0.564773242,,,,,,,0.11076732,0.012793225,0.011198817,0.01101671,,,,,,,0.548810459,0.924845883,0.971894857,1.150758106,,,,,,,0.208880647,0.271705229,0.237656341,0.294679761,,,,,,,0.002381775,0.00258191,0.002670107,0.003154354,,,,,,,2.275542009,3.670231537,3.650814153,4.095293753,,,,,,,1418.809044,1420.84801,1237.379481,1217.260325,,,,,,,0.002772463,0.002777265,0.002744897,0.002761396,,,,,,,0.022189167,0.022241178,0.021098383,0.021059768,,,,,,,9.287679527,9.194589743,8.000980236,11.4462119,,,,,,,0.120846323,0.15992424,0.167333227,0.208412164,,,,,,,0.533553742,0.657071936,0.61567252,0.740590991,,,,,,,0.398993665,0.511805426,0.486148187,0.600963326,,,,,,,0.113826858,0.013152745,0.011454379,0.011268137,,,,,,,0.559263465,0.96373616,1.0113159,1.197881274,,,,,,,0.204997275,0.266651951,0.234713682,0.291120473,,,,,,,0.002317983,0.002488342,0.002576084,0.003045335,,,,,,,2.200169503,3.556068571,3.552122604,3.980317081,,,,,,,1398.717151,1400.295404,1222.176395,1201.912269,,,,,,,0.002588258,0.002592811,0.002562302,0.002578252,,,,,,,0.021958696,0.022007069,0.020902681,0.020861522,,,,,,,9.278773026,9.183478863,7.997838819,11.46773843,,,,,,,0.112578646,0.149031622,0.156823675,0.194758355,,,,,,,0.504343011,0.622825786,0.586752615,0.706239382,,,,,,,0.381621063,0.489903355,0.467203215,0.576985259,,,,,,,0.112214926,0.012962489,0.011313647,0.011126064,,,,,,,0.543475734,0.929542741,0.976733101,1.157690518,,,,,,,0.206698786,0.268832139,0.236884227,0.294438587,,,,,,,0.002295338,0.002486455,0.002579273,0.003051289,,,,,,,2.226096983,3.591756556,3.590997432,4.024894076,,,,,,,1424.718357,1426.052556,1247.771954,1226.661585,,,,,,,0.002620654,0.002625343,0.00259379,0.002610357,,,,,,,0.022060291,0.02210691,0.021035141,0.020994512,,,,,,,9.232179026,9.136668725,7.974157294,11.43493799,,,,,,,0.113553614,0.150312205,0.15815133,0.196677557,,,,,,,0.509384789,0.628828565,0.592478508,0.714112651,,,,,,,0.384944447,0.494095724,0.471409646,0.583170745,,,,,,,0.114300939,0.013200921,0.011550585,0.011355165,,,,,,,0.540839664,0.930115857,0.979119678,1.160914649,,,,,,,0.208248703,0.270856505,0.238132531,0.296207314,,,,,,,0.002382394,0.00255011,0.002637763,0.003114952,,,,,,,2.237635647,3.612829369,3.605534398,4.043965722,,,,,,,1410.07299,1411.87404,1233.725362,1214.055236,,,,,,,0.002671162,0.002675822,0.002644652,0.002660899,,,,,,,0.022100318,0.02214832,0.02104181,0.020999619,,,,,,,10.03385904,9.930616029,8.663462617,12.42857012,,,,,,,0.115769946,0.153226069,0.160812652,0.200120536,,,,,,,0.518262577,0.639231261,0.600781972,0.724156187,,,,,,,0.390170884,0.500690336,0.47676395,0.590142106,,,,,,,0.113125984,0.01306967,0.011420556,0.011238469,,,,,,,0.557014731,0.951506057,0.999157008,1.183344358,,,,,,,0.210146019,0.273278804,0.240590403,0.299838358,,,,,,,0.002347141,0.002546269,0.002641827,0.003122735,,,,,,,2.27915971,3.668763623,3.666300505,4.112350022,,,,,,,1402.107841,1403.982166,1229.87945,1211.217943,,,,,,,0.002718801,0.00272371,0.002690516,0.002707877,,,,,,,0.022251088,0.022296837,0.021245758,0.021205954,,,,,,,9.865947137,9.763690365,8.54098466,12.24472772,,,,,,,0.1173603,0.155320984,0.163053149,0.203278609,,,,,,,0.525075393,0.647334664,0.608768018,0.734818687,,,,,,,0.394657312,0.506345854,0.482612093,0.598453908,,,,,,,0.112486941,0.012996615,0.011384957,0.011212205,,,,,,,0.551277009,0.950482887,1.001083349,1.186446815,,,,,, +Bus,B20,2010,,0.063425644,0.049175826,0.048481394,0.18390853,,,,,,,0.054168751,0.079156019,0.083028989,0.035085485,,,,,,,1.396954251,1.492976029,1.532384174,2.9653089,,,,,,,1363.238463,1195.330386,1187.572254,1184.168756,,,,,,,0.002636298,0.002593594,0.002609278,0.0026239,,,,,,,0.022031207,0.021011439,0.021005026,0.021028055,,,,,,,4.666932824,3.938210213,3.912014721,8.014328529,,,,,,,0.037526504,0.036689222,0.036615972,0.127546418,,,,,,,0.239266582,0.213281473,0.213531456,0.492829375,,,,,,,0.137142359,0.123587585,0.123544403,0.379916332,,,,,,,0.011955241,0.010458051,0.010387703,0.010722292,,,,,,,0.270780145,0.281655787,0.28517452,0.807307742,,,,,,,0.063638101,0.049253778,0.048559462,0.184287009,,,,,,,0.051791431,0.076981779,0.080767331,0.034149342,,,,,,,1.386021347,1.481558719,1.520578069,2.955177848,,,,,,,1375.991958,1205.322427,1197.462464,1193.949735,,,,,,,0.002652649,0.002611135,0.002626514,0.002640768,,,,,,,0.022015881,0.020960266,0.020953277,0.020976786,,,,,,,4.659952976,3.926926848,3.900878834,8.000478618,,,,,,,0.03781315,0.036894834,0.036818858,0.128388323,,,,,,,0.241702006,0.214988691,0.215236727,0.495828736,,,,,,,0.138008116,0.124147059,0.12410207,0.381653932,,,,,,,0.012067115,0.010545503,0.01047423,0.010810862,,,,,,,0.268339126,0.279267284,0.28269085,0.805315398,,,,,,,0.064332101,0.049363584,0.048670672,0.184435001,,,,,,,0.055976995,0.082018375,0.086038107,0.036357393,,,,,,,1.432344014,1.522592946,1.562796947,3.026997693,,,,,,,1377.964696,1200.946481,1193.506751,1190.60404,,,,,,,0.002830643,0.00278694,0.002802985,0.002817797,,,,,,,0.022180403,0.021061546,0.021058129,0.021087115,,,,,,,4.705452986,3.942939437,3.917281856,7.992918872,,,,,,,0.040503063,0.03923294,0.039138774,0.137356278,,,,,,,0.258288393,0.228232433,0.228485967,0.519177524,,,,,,,0.144152569,0.128980844,0.128929665,0.395710309,,,,,,,0.012084579,0.010507359,0.010439757,0.010780658,,,,,,,0.282062743,0.292182606,0.295852464,0.839239737,,,,,,,0.062302137,0.04844994,0.04776597,0.180938906,,,,,,,0.052506583,0.076661947,0.080410151,0.033982179,,,,,,,1.351387352,1.448734603,1.486845323,2.887965168,,,,,,,1363.837819,1195.604431,1187.319131,1183.226782,,,,,,,0.002505444,0.002465014,0.002479949,0.002493873,,,,,,,0.021818279,0.020794894,0.020787567,0.020809777,,,,,,,4.524074708,3.818872033,3.793118145,7.782521951,,,,,,,0.035793069,0.035157575,0.035094502,0.121618258,,,,,,,0.227143692,0.203443623,0.203691128,0.473931975,,,,,,,0.132370105,0.119628774,0.119591726,0.367677214,,,,,,,0.011960411,0.010460336,0.010385373,0.010713695,,,,,,,0.26294885,0.273552721,0.27693395,0.783259306,,,,,,,0.064056527,0.04920943,0.048518485,0.183817281,,,,,,,0.04396684,0.070477455,0.074017651,0.031365627,,,,,,,1.421514017,1.512372224,1.552281615,3.008435466,,,,,,,1401.990971,1222.883843,1214.827448,1211.09944,,,,,,,0.002793546,0.002750357,0.002766237,0.002780905,,,,,,,0.022130371,0.0210171,0.021013344,0.021041813,,,,,,,4.481934669,3.757794125,3.733236118,7.621537481,,,,,,,0.03998788,0.038783793,0.038692873,0.135619181,,,,,,,0.254781771,0.225420975,0.225673945,0.513917578,,,,,,,0.142801058,0.127887303,0.12783782,0.392379835,,,,,,,0.012295221,0.010699245,0.010626185,0.010966168,,,,,,,0.262903002,0.274784416,0.277938825,0.810841542,,,,,,,0.062839303,0.048600429,0.047916497,0.181452601,,,,,,,0.045288701,0.070489757,0.074000337,0.031335372,,,,,,,1.36944782,1.463887552,1.50240151,2.920540759,,,,,,,1381.769312,1207.849408,1199.524673,1195.427096,,,,,,,0.002608326,0.002567514,0.002582626,0.002596628,,,,,,,0.021899258,0.020823257,0.020817292,0.02084242,,,,,,,4.456796737,3.748689572,3.723703185,7.62676796,,,,,,,0.037350953,0.036485658,0.03641166,0.126750278,,,,,,,0.237279536,0.211396799,0.211645792,0.488050058,,,,,,,0.136120178,0.122514854,0.122473355,0.376189964,,,,,,,0.012117748,0.010567554,0.010492199,0.010824194,,,,,,,0.256708425,0.268189477,0.271316316,0.784613515,,,,,,,0.063343926,0.049043203,0.04835163,0.183333902,,,,,,,0.042271416,0.067952901,0.071366241,0.030247181,,,,,,,1.390505909,1.48572305,1.524897572,2.955727591,,,,,,,1407.671349,1233.614837,1225.007567,1220.484334,,,,,,,0.002641261,0.002599133,0.002614654,0.002629086,,,,,,,0.022002126,0.020957931,0.020951716,0.020975668,,,,,,,4.435339926,3.737500861,3.712666839,7.604735448,,,,,,,0.037669466,0.036792381,0.036717489,0.127947255,,,,,,,0.240025942,0.213767564,0.214017154,0.493299662,,,,,,,0.137341864,0.123652281,0.123608856,0.379963343,,,,,,,0.012344868,0.010792992,0.0107151,0.011051042,,,,,,,0.254193036,0.266566229,0.269579899,0.785564172,,,,,,,0.063834676,0.049304524,0.048610404,0.184463098,,,,,,,0.047515241,0.073172574,0.076807276,0.032510824,,,,,,,1.393864756,1.488062087,1.527265513,2.967557355,,,,,,,1393.324452,1219.372869,1211.311886,1207.543941,,,,,,,0.002691727,0.00265,0.00266548,0.002679802,,,,,,,0.022040093,0.020962033,0.020955467,0.020980048,,,,,,,4.822197944,4.057973495,4.031165456,8.263670501,,,,,,,0.038374193,0.037368382,0.037288378,0.130221669,,,,,,,0.245389864,0.217857072,0.218105433,0.500896656,,,,,,,0.139366419,0.125177535,0.125130884,0.384691606,,,,,,,0.012219141,0.010668461,0.010595386,0.010933947,,,,,,,0.263856558,0.275296435,0.278554604,0.80271775,,,,,,,0.06439085,0.049803203,0.049099933,0.186514525,,,,,,,0.042930994,0.069317909,0.072804884,0.030857055,,,,,,,1.429708358,1.524707264,1.565035446,3.02316804,,,,,,,1385.597038,1215.596616,1207.812904,1204.375804,,,,,,,0.002740299,0.002696072,0.002712268,0.002727358,,,,,,,0.022194056,0.021170067,0.021163986,0.021187498,,,,,,,4.746391872,4.004003865,3.977661307,8.144536349,,,,,,,0.038892179,0.03788251,0.037801098,0.132185151,,,,,,,0.249104968,0.221189161,0.221440272,0.508073278,,,,,,,0.141012459,0.126763213,0.126714788,0.389796982,,,,,,,0.012151358,0.010635435,0.010564807,0.010905272,,,,,,,0.258482589,0.271443352,0.274552664,0.802565418,,,,, +Bus,B20,2015,,,0.001180049,0.00165,0.00173083,0.075156879,,,,,,,0.066576623,0.073976533,0.076152582,0.059110685,,,,,,,0.800519,0.86591151,0.894739144,1.840856121,,,,,,,1192.01446,1182.218922,1173.169604,1173.252744,,,,,,,0.002557241,0.002576531,0.002594412,0.002626039,,,,,,,0.02106943,0.021063658,0.021058357,0.021039368,,,,,,,0.78853192,1.078771108,1.127156111,3.854292422,,,,,,,0.002051679,0.002868753,0.003009287,0.054813873,,,,,,,0.105784599,0.111946719,0.113340439,0.268379836,,,,,,,0.025035974,0.030346583,0.031301741,0.173392056,,,,,,,0.01025298,0.010168728,0.010090889,0.010351226,,,,,,,0.099725215,0.106279459,0.108010432,0.416554612,,,,,,,0.001183511,0.001654911,0.001735957,0.075282489,,,,,,,0.063841618,0.071136536,0.073197731,0.057054697,,,,,,,0.790052297,0.854970811,0.883372774,1.829481922,,,,,,,1201.914395,1192.048172,1182.91221,1182.994473,,,,,,,0.002575473,0.002594389,0.002611921,0.002642937,,,,,,,0.02102107,0.021014629,0.021008713,0.020988443,,,,,,,0.786221663,1.075620352,1.123851856,3.845700036,,,,,,,0.002057698,0.002877291,0.0030182,0.05512853,,,,,,,0.107118141,0.113298507,0.114695399,0.270317205,,,,,,,0.025237505,0.030564393,0.031522029,0.174149606,,,,,,,0.010338133,0.010253271,0.010174689,0.010437199,,,,,,,0.097502693,0.103957273,0.105578935,0.414127431,,,,,,,0.001212032,0.001694935,0.001777895,0.0754638,,,,,,,0.06865358,0.076360806,0.078595087,0.061089911,,,,,,,0.81768066,0.884406652,0.91388114,1.879226003,,,,,,,1197.034381,1187.703934,1179.05886,1179.795838,,,,,,,0.002749751,0.002769484,0.002787778,0.002820132,,,,,,,0.021115175,0.021113184,0.021111349,0.021098487,,,,,,,0.788945145,1.079421327,1.127816868,3.85406636,,,,,,,0.002107285,0.002946878,0.003091116,0.058701399,,,,,,,0.116775711,0.12311684,0.124556124,0.285590712,,,,,,,0.026734596,0.032192707,0.033174145,0.180764325,,,,,,,0.010296159,0.010215905,0.010141545,0.010409075,,,,,,,0.101812179,0.108666377,0.110464257,0.432412956,,,,,,,0.001150609,0.001609109,0.001687957,0.074046775,,,,,,,0.064574079,0.071730259,0.073844024,0.057295854,,,,,,,0.770004571,0.833473463,0.861116666,1.787300296,,,,,,,1193.133853,1182.785403,1173.193973,1172.405871,,,,,,,0.002430385,0.002448755,0.002465784,0.002495903,,,,,,,0.020855523,0.020848644,0.02084235,0.020821359,,,,,,,0.764962824,1.046369715,1.093282698,3.738811742,,,,,,,0.002000493,0.002797659,0.002934745,0.052489996,,,,,,,0.098978111,0.104985444,0.106340957,0.256880708,,,,,,,0.023892937,0.029073578,0.030004798,0.167968372,,,,,,,0.010262609,0.0101736,0.010091098,0.010343689,,,,,,,0.097902767,0.104213269,0.105869173,0.404470328,,,,,,,0.001204377,0.001684271,0.001766716,0.075226813,,,,,,,0.054954526,0.062010796,0.063686914,0.050568098,,,,,,,0.810849614,0.877128832,0.906339451,1.866676967,,,,,,,1219.407018,1209.470356,1200.207973,1200.234311,,,,,,,0.002713545,0.002733077,0.002751182,0.002783207,,,,,,,0.021071448,0.021069036,0.021066798,0.021053229,,,,,,,0.752069387,1.028903198,1.075030436,3.673627129,,,,,,,0.002093975,0.002928338,0.00307168,0.058018267,,,,,,,0.114791108,0.121091336,0.122520352,0.282320626,,,,,,,0.026410107,0.031834048,0.032809223,0.179267189,,,,,,,0.010488596,0.010403127,0.010323454,0.010589361,,,,,,,0.089813606,0.096044519,0.097304815,0.411528066,,,,,,,0.001168158,0.001633738,0.001713751,0.074287328,,,,,,,0.056361725,0.063267274,0.065028672,0.051245539,,,,,,,0.778579522,0.842732183,0.870696901,1.8071947,,,,,,,1205.172983,1194.865891,1185.27963,1184.620761,,,,,,,0.002532478,0.002551062,0.002568291,0.002598761,,,,,,,0.020882201,0.020877039,0.020872316,0.020854074,,,,,,,0.750669488,1.026855185,1.072883937,3.668356678,,,,,,,0.002031004,0.002840478,0.002979593,0.054518596,,,,,,,0.104810846,0.110915412,0.112295306,0.266042369,,,,,,,0.024799703,0.030060881,0.031006427,0.171912845,,,,,,,0.010366163,0.01027751,0.010195054,0.010451514,,,,,,,0.090666125,0.096745376,0.098074515,0.400266019,,,,,,,0.001178997,0.00164864,0.001729392,0.074958621,,,,,,,0.052996394,0.05979581,0.061412963,0.04876237,,,,,,,0.794614849,0.859702226,0.888295853,1.832868613,,,,,,,1230.696579,1220.115424,1210.244942,1209.488729,,,,,,,0.002563149,0.002582238,0.002599936,0.002631238,,,,,,,0.021016297,0.021010788,0.021005746,0.020987116,,,,,,,0.748396079,1.023810536,1.069720571,3.657776382,,,,,,,0.002049848,0.002866388,0.003006786,0.054975738,,,,,,,0.106260451,0.112418777,0.11381162,0.268891557,,,,,,,0.025086352,0.03039352,0.031347813,0.173476169,,,,,,,0.010585701,0.010494688,0.010409789,0.010670908,,,,,,,0.088356168,0.094328213,0.095514461,0.399032027,,,,,,,0.001189759,0.001663662,0.00174512,0.075364428,,,,,,,0.058969564,0.066088227,0.067943913,0.05341443,,,,,,,0.794368401,0.859577144,0.888147481,1.837702728,,,,,,,1215.93554,1205.912075,1196.598234,1196.5625,,,,,,,0.002614103,0.002633141,0.002650792,0.002682009,,,,,,,0.021022554,0.02101664,0.021011223,0.020991774,,,,,,,0.812312544,1.111350306,1.161179721,3.973600281,,,,,,,0.002068559,0.002892506,0.003034132,0.055852115,,,,,,,0.109235113,0.115449708,0.116855184,0.273616597,,,,,,,0.025565411,0.030920766,0.031883462,0.175557059,,,,,,,0.010458737,0.01037252,0.010292408,0.010556923,,,,,,,0.093428498,0.099714525,0.101139823,0.410201901,,,,,,,0.001203968,0.001683217,0.001765654,0.076117465,,,,,,,0.053859248,0.060816372,0.062453386,0.049643277,,,,,,,0.821889841,0.888665406,0.918320428,1.879888686,,,,,,,1211.809634,1202.026124,1192.968727,1193.303704,,,,,,,0.002658529,0.002678451,0.002696922,0.002729584,,,,,,,0.021227248,0.02122188,0.021216954,0.021198717,,,,,,,0.80145855,1.096581975,1.145779333,3.918873917,,,,,,,0.002093265,0.002926506,0.003069833,0.056623575,,,,,,,0.111270442,0.117557418,0.118981512,0.277618894,,,,,,,0.025958798,0.031374853,0.032349326,0.177740596,,,,,,,0.010423247,0.010339095,0.010261189,0.010528168,,,,,,,0.088555472,0.094699258,0.095929778,0.406919856,,,, +Bus,B20,2020,,,,0.001157645,0.001573768,0.001646432,0.015605683,,,,,,,0.067134223,0.073820106,0.075895732,0.076183319,,,,,,,0.811468008,0.871193135,0.899369509,1.094917214,,,,,,,1111.941751,1103.642022,1096.016907,1123.813556,,,,,,,0.002566857,0.002585169,0.002603082,0.002626969,,,,,,,0.02105164,0.021047112,0.021042972,0.021035122,,,,,,,0.770280431,1.022863793,1.066460082,1.697412957,,,,,,,0.002012726,0.002736213,0.00286255,0.0129725,,,,,,,0.105563634,0.11104363,0.112312408,0.142796051,,,,,,,0.024791026,0.029496319,0.030356967,0.057959764,,,,,,,0.009564245,0.009492855,0.00942727,0.009718581,,,,,,,0.097693255,0.103632604,0.105315725,0.15798101,,,,,,,0.001161003,0.001578414,0.001651273,0.01563399,,,,,,,0.064335384,0.07092041,0.072880644,0.073248887,,,,,,,0.800775511,0.860052764,0.887803851,1.082809424,,,,,,,1121.248087,1112.882003,1105.173523,1133.15488,,,,,,,0.002584908,0.002602864,0.00262043,0.002643852,,,,,,,0.021002184,0.020997031,0.020992321,0.020983802,,,,,,,0.768006241,1.019852578,1.06331365,1.692574261,,,,,,,0.002018563,0.002744291,0.002870965,0.013039164,,,,,,,0.106889183,0.112385442,0.113657144,0.144254684,,,,,,,0.024990546,0.029710323,0.030573216,0.05827983,,,,,,,0.009644292,0.009572333,0.009506027,0.009799372,,,,,,,0.095392585,0.101236269,0.102809659,0.155329545,,,,,,,0.001189089,0.00161676,0.001691346,0.01570026,,,,,,,0.069207661,0.076168813,0.078297735,0.078630131,,,,,,,0.828873561,0.889825831,0.918637695,1.11790907,,,,,,,1117.164216,1109.267404,1101.988157,1130.285573,,,,,,,0.002759589,0.002778321,0.002796647,0.002821084,,,,,,,0.021097963,0.021096842,0.021095825,0.021092815,,,,,,,0.770765389,1.02358285,1.067199115,1.699481603,,,,,,,0.002067395,0.00281096,0.002940639,0.013785602,,,,,,,0.116519241,0.122159802,0.12347041,0.155144106,,,,,,,0.026479966,0.031316902,0.032201349,0.060876243,,,,,,,0.009609165,0.009541242,0.00947863,0.00977458,,,,,,,0.09978338,0.105990988,0.107734588,0.162790615,,,,,,,0.001128749,0.001534723,0.001605603,0.015363161,,,,,,,0.065121822,0.071588393,0.073605223,0.073874284,,,,,,,0.780411806,0.838354802,0.865357967,1.056530956,,,,,,,1112.646271,1103.850474,1095.732747,1122.892669,,,,,,,0.002439547,0.002456985,0.002474044,0.002496792,,,,,,,0.020837039,0.020831521,0.020826494,0.020817269,,,,,,,0.747103235,0.991950299,1.034219095,1.645796353,,,,,,,0.001962487,0.002668328,0.002791562,0.012466484,,,,,,,0.098779876,0.104121947,0.105355773,0.134952352,,,,,,,0.023656111,0.028246107,0.029085148,0.055887987,,,,,,,0.009570306,0.009494648,0.009424825,0.009710598,,,,,,,0.095848465,0.101568519,0.103181409,0.15405401,,,,,,,0.001181572,0.001606573,0.001680696,0.015646893,,,,,,,0.055220356,0.061566904,0.063137738,0.063817765,,,,,,,0.821925897,0.882463947,0.911014875,1.109222687,,,,,,,1137.960627,1129.517097,1121.667984,1149.850429,,,,,,,0.002723282,0.002741824,0.002759962,0.002784149,,,,,,,0.021054079,0.021052588,0.021051216,0.021047674,,,,,,,0.734702684,0.975634851,1.017205924,1.619699987,,,,,,,0.002054327,0.00279325,0.002922123,0.013638797,,,,,,,0.114541207,0.120145284,0.121446576,0.152876416,,,,,,,0.026157651,0.030964231,0.031843031,0.060298108,,,,,,,0.009788043,0.009715417,0.009647905,0.009943766,,,,,,,0.087467191,0.093087106,0.094294724,0.147342861,,,,,,,0.001145991,0.001558273,0.001630205,0.015428739,,,,,,,0.056705214,0.062925142,0.064586343,0.065129004,,,,,,,0.789105611,0.847677098,0.874995304,1.068118573,,,,,,,1124.158834,1115.391846,1107.263125,1134.702854,,,,,,,0.002541748,0.00255939,0.002576649,0.002599662,,,,,,,0.020863836,0.020859861,0.020856246,0.02084925,,,,,,,0.7331874,0.973506536,1.014983712,1.615611628,,,,,,,0.001992464,0.002709271,0.002834336,0.012892287,,,,,,,0.104593062,0.110022273,0.111278485,0.141510927,,,,,,,0.024557449,0.029219276,0.030071281,0.057447314,,,,,,,0.00966933,0.00959392,0.009524001,0.009812745,,,,,,,0.08840553,0.093897652,0.095180215,0.146246558,,,,,,,0.001156615,0.001572478,0.001645073,0.015567351,,,,,,,0.053257862,0.059373659,0.060889338,0.061542512,,,,,,,0.805442973,0.864883674,0.892826591,1.087871705,,,,,,,1148.092035,1139.078814,1130.688667,1158.564843,,,,,,,0.002572667,0.002590789,0.002608519,0.002632159,,,,,,,0.020998251,0.020993962,0.020990053,0.020982593,,,,,,,0.731046597,0.970720688,1.012088959,1.61093106,,,,,,,0.002010933,0.002733969,0.002860185,0.013001596,,,,,,,0.106037471,0.111514317,0.112782305,0.143275223,,,,,,,0.024841362,0.029543756,0.030403635,0.058014804,,,,,,,0.009875185,0.009797659,0.009725495,0.010019102,,,,,,,0.085968822,0.091356464,0.092495709,0.143621811,,,,,,,0.001167139,0.001586783,0.001660014,0.015656718,,,,,,,0.059348306,0.065762981,0.067516375,0.068034027,,,,,,,0.805163882,0.864710027,0.89262734,1.088332708,,,,,,,1134.452461,1125.941094,1118.060204,1146.200682,,,,,,,0.0026236,0.002641674,0.002659355,0.002682931,,,,,,,0.021003594,0.020998915,0.020994643,0.020986836,,,,,,,0.793504737,1.053743421,1.098645644,1.7490303,,,,,,,0.002029232,0.002758841,0.002886162,0.013190939,,,,,,,0.108998734,0.114525701,0.115805208,0.146628696,,,,,,,0.025316447,0.030061634,0.030929091,0.058839504,,,,,,,0.009757869,0.009684657,0.009616872,0.009912195,,,,,,,0.091185687,0.096866641,0.098242633,0.15060396,,,,,,,0.001181103,0.001605464,0.001679574,0.015814031,,,,,,,0.054113857,0.060370044,0.061902745,0.062588336,,,,,,,0.833210947,0.894216545,0.923210203,1.122011926,,,,,,,1130.683085,1122.390631,1114.750228,1143.112639,,,,,,,0.00266846,0.002687372,0.002705874,0.002730545,,,,,,,0.021209583,0.0212054,0.021201589,0.021194288,,,,,,,0.783026818,1.039898937,1.084229,1.725946631,,,,,,,0.002053512,0.002791322,0.002920171,0.013368154,,,,,,,0.111029665,0.116620923,0.117917461,0.149109579,,,,,,,0.025706923,0.030505711,0.031383781,0.059625976,,,,,,,0.009725446,0.009654122,0.0095884,0.009885489,,,,,,,0.086208811,0.091749702,0.092928578,0.145360752,,, +Bus,B20,2025,,,,,0.001157874,0.001573279,0.001646693,0.001629014,,,,,,,0.067210119,0.073949515,0.075986593,0.077625924,,,,,,,0.812881145,0.87374732,0.901086791,0.929907782,,,,,,,1103.299933,1095.486626,1088.284612,1093.121799,,,,,,,0.002567978,0.002587265,0.002604453,0.002627236,,,,,,,0.021052716,0.021048268,0.021044204,0.021039572,,,,,,,0.759138844,1.007795008,1.051902633,1.052551364,,,,,,,0.002013124,0.002735364,0.002863005,0.002832267,,,,,,,0.105583675,0.111054604,0.112332608,0.11266556,,,,,,,0.024795806,0.029493039,0.030362091,0.030233037,,,,,,,0.009489913,0.009422709,0.00936076,0.009402366,,,,,,,0.09748854,0.103493014,0.105153869,0.106828942,,,,,,,0.001161234,0.001577927,0.001651538,0.001633842,,,,,,,0.064403937,0.071035995,0.072962511,0.074451781,,,,,,,0.802162219,0.862558328,0.88948896,0.917782457,,,,,,,1112.535818,1104.659233,1097.37863,1102.220731,,,,,,,0.002586006,0.002604919,0.002621774,0.002644113,,,,,,,0.021003293,0.020998225,0.020993593,0.020988268,,,,,,,0.756869573,1.004792031,1.048762323,1.049466123,,,,,,,0.002018965,0.002743444,0.002871426,0.002840659,,,,,,,0.106909729,0.112396942,0.113677933,0.114012189,,,,,,,0.02499541,0.02970712,0.030578443,0.030449392,,,,,,,0.009569353,0.009501604,0.009438981,0.00948063,,,,,,,0.095178826,0.101081721,0.10263744,0.104173454,,,,,,,0.001189334,0.001616276,0.00169163,0.001673946,,,,,,,0.069284549,0.076299347,0.07838974,0.080050851,,,,,,,0.830321499,0.892442845,0.920397749,0.94993079,,,,,,,1108.497129,1101.085106,1094.228145,1099.573359,,,,,,,0.002760736,0.002780465,0.002798049,0.002821357,,,,,,,0.021099168,0.021098129,0.021097185,0.021097053,,,,,,,0.759495549,1.008349067,1.052475236,1.053431667,,,,,,,0.002067822,0.002810119,0.002941133,0.002910386,,,,,,,0.116542509,0.122173994,0.123494173,0.123856804,,,,,,,0.026485313,0.03131407,0.032207134,0.032081746,,,,,,,0.009534616,0.009470863,0.009411884,0.009457859,,,,,,,0.099578808,0.105851584,0.107572899,0.109284338,,,,,,,0.001128969,0.00153424,0.001605853,0.001588591,,,,,,,0.065195829,0.071714779,0.073693829,0.075293385,,,,,,,0.781757463,0.840785544,0.866992586,0.894446915,,,,,,,1103.997797,1095.693174,1088.004473,1092.172865,,,,,,,0.002440614,0.002458981,0.002475349,0.002497045,,,,,,,0.020838106,0.020832681,0.020827725,0.020821851,,,,,,,0.736278376,0.977310592,1.020075342,1.020584833,,,,,,,0.001962869,0.002667489,0.002791996,0.002761984,,,,,,,0.098797909,0.104131037,0.105373778,0.105690914,,,,,,,0.023660548,0.028242652,0.029089881,0.028962879,,,,,,,0.009495916,0.009424485,0.009358351,0.009394205,,,,,,,0.095641779,0.101426069,0.103017567,0.104634454,,,,,,,0.001181814,0.001606089,0.001680977,0.001663375,,,,,,,0.055262787,0.061633171,0.063187667,0.06414782,,,,,,,0.82335848,0.885053646,0.912756743,0.941987483,,,,,,,1129.127595,1121.177022,1113.767679,1118.59353,,,,,,,0.002724417,0.002743945,0.00276135,0.00278442,,,,,,,0.021055279,0.021053854,0.021052574,0.021051953,,,,,,,0.723958494,0.961113378,1.003171317,1.004046471,,,,,,,0.002054749,0.002792409,0.00292261,0.002892007,,,,,,,0.114563915,0.120158876,0.121469709,0.121827491,,,,,,,0.026162893,0.030961322,0.03184871,0.031723503,,,,,,,0.009712069,0.009643681,0.009579951,0.009621458,,,,,,,0.087225343,0.092883061,0.094089507,0.095134063,,,,,,,0.00114622,0.001557792,0.001630467,0.001613172,,,,,,,0.056755721,0.063007217,0.064646204,0.065768609,,,,,,,0.790468544,0.850138535,0.876650851,0.904455242,,,,,,,1115.426549,1107.152175,1099.459011,1103.742765,,,,,,,0.002542828,0.00256141,0.00257797,0.002599918,,,,,,,0.020864969,0.02086109,0.020857544,0.020853726,,,,,,,0.722503559,0.95906282,1.001025786,1.001685871,,,,,,,0.001992861,0.002708436,0.002834791,0.002804721,,,,,,,0.104612856,0.110033131,0.111298404,0.111630629,,,,,,,0.02456219,0.029216059,0.030076369,0.029950939,,,,,,,0.009594219,0.009523046,0.009456876,0.009493722,,,,,,,0.088174366,0.09371146,0.094987287,0.096165127,,,,,,,0.001156844,0.001571992,0.001645336,0.001627756,,,,,,,0.053298701,0.059437563,0.060937368,0.061863892,,,,,,,0.806842079,0.867412963,0.894526224,0.92306632,,,,,,,1139.168174,1130.657154,1122.714948,1126.950868,,,,,,,0.002573776,0.002592865,0.002609876,0.002632422,,,,,,,0.02099935,0.020995153,0.020991319,0.020987045,,,,,,,0.720436341,0.956375576,0.998228006,0.998885294,,,,,,,0.002011333,0.002733125,0.002860643,0.002830078,,,,,,,0.106057643,0.111525501,0.112802722,0.113137135,,,,,,,0.024846172,0.029540537,0.030408804,0.030280891,,,,,,,0.00979843,0.009725222,0.009656907,0.009693342,,,,,,,0.085722592,0.091147677,0.092286405,0.093280962,,,,,,,0.001167374,0.001586297,0.001660283,0.001642585,,,,,,,0.059403481,0.065853459,0.067581898,0.068799328,,,,,,,0.806560396,0.867232986,0.894323939,0.922813892,,,,,,,1125.639724,1117.62136,1110.177015,1114.943609,,,,,,,0.002624707,0.002643743,0.002660708,0.002683194,,,,,,,0.021004736,0.021000139,0.020995949,0.020991275,,,,,,,0.781977542,1.038153835,1.083582435,1.084367209,,,,,,,0.00202964,0.002757996,0.002886631,0.00285586,,,,,,,0.10901997,0.114537885,0.115826718,0.11616633,,,,,,,0.025321437,0.030058528,0.030934461,0.030806049,,,,,,,0.009682066,0.009613098,0.009549067,0.009590065,,,,,,,0.090956291,0.096685701,0.098052439,0.099333821,,,,,,,0.001181339,0.001604971,0.001679845,0.001661811,,,,,,,0.054154353,0.060432927,0.0619503,0.062870898,,,,,,,0.834670419,0.896856001,0.92498412,0.95475209,,,,,,,1121.89276,1114.090549,1106.881271,1111.937238,,,,,,,0.002669618,0.002689536,0.002707289,0.002730821,,,,,,,0.021210668,0.021206558,0.021202821,0.021198654,,,,,,,0.77171234,1.0245972,1.069445903,1.070211103,,,,,,,0.002053923,0.002790464,0.002920641,0.002889288,,,,,,,0.111051339,0.116633424,0.117939411,0.11828422,,,,,,,0.025711977,0.030502574,0.03138922,0.031258228,,,,,,,0.009649836,0.009582723,0.00952072,0.009564206,,,,,,,0.08596654,0.091543763,0.092722154,0.09373732,, +Bus,B20,2030,,,,,,0.001157517,0.001573686,0.001646886,0.001616456,,,,,,,0.067342764,0.074045655,0.076047507,0.07750297,,,,,,,0.815463409,0.875519544,0.90222885,0.929217412,,,,,,,1103.490664,1095.692845,1088.507044,1080.041482,,,,,,,0.002570082,0.002588659,0.002605356,0.00262749,,,,,,,0.02105426,0.021049874,0.021045874,0.021039231,,,,,,,0.758117606,1.007378287,1.051352106,1.038295349,,,,,,,0.002012503,0.002736071,0.002863339,0.002810432,,,,,,,0.1056058,0.111085529,0.11236064,0.11251741,,,,,,,0.024795214,0.029500929,0.03036755,0.030093134,,,,,,,0.009491552,0.009424482,0.009362673,0.009289859,,,,,,,0.097617696,0.103588809,0.105217456,0.106298409,,,,,,,0.001160877,0.001578339,0.001651735,0.001621244,,,,,,,0.064522716,0.071123038,0.07301754,0.074326719,,,,,,,0.804695421,0.864297679,0.890609705,0.917087243,,,,,,,1112.728932,1104.869138,1097.605332,1089.040961,,,,,,,0.002588069,0.002606286,0.002622657,0.002644362,,,,,,,0.02100488,0.020999888,0.020995319,0.020987845,,,,,,,0.755851257,1.004377436,1.048213986,1.035236614,,,,,,,0.002018346,0.00274416,0.002871768,0.002818755,,,,,,,0.10693261,0.112428735,0.113706804,0.113863171,,,,,,,0.024994922,0.029715167,0.03058405,0.030308994,,,,,,,0.009571016,0.009503411,0.009440933,0.009367266,,,,,,,0.095295214,0.101169153,0.102695738,0.103637802,,,,,,,0.001188984,0.001616716,0.00169185,0.001661064,,,,,,,0.06941849,0.076396938,0.078451748,0.079920821,,,,,,,0.832968015,0.894259878,0.92157104,0.949230275,,,,,,,1108.708075,1101.310652,1094.469818,1086.484513,,,,,,,0.002762888,0.002781891,0.002798973,0.002821617,,,,,,,0.021100917,0.021099936,0.021099055,0.021096662,,,,,,,0.758474959,1.007937227,1.051929861,1.039129792,,,,,,,0.002067213,0.002810884,0.002941516,0.00288799,,,,,,,0.116569287,0.122209936,0.123527257,0.123703102,,,,,,,0.026485373,0.031322912,0.032213503,0.03193803,,,,,,,0.009536432,0.009472803,0.009413963,0.009345277,,,,,,,0.09970982,0.105949317,0.107638094,0.108746972,,,,,,,0.001128615,0.001534631,0.001606033,0.001576333,,,,,,,0.065325343,0.071808498,0.073753175,0.075175167,,,,,,,0.784215473,0.842473352,0.868080141,0.893760546,,,,,,,1104.183426,1095.895835,1088.225245,1079.07269,,,,,,,0.002442618,0.002460309,0.002476209,0.002497287,,,,,,,0.020839648,0.020834286,0.020829391,0.020821497,,,,,,,0.735286056,0.976904485,1.019539174,1.006726251,,,,,,,0.001962253,0.002668168,0.002792311,0.002740673,,,,,,,0.098817345,0.104158986,0.105398812,0.105547313,,,,,,,0.02365965,0.028250008,0.029094855,0.028826459,,,,,,,0.009497513,0.009426227,0.00936025,0.009281525,,,,,,,0.095767859,0.101519489,0.103079662,0.104107676,,,,,,,0.001181464,0.001606525,0.001681193,0.001650572,,,,,,,0.055332222,0.061687912,0.063221873,0.064012073,,,,,,,0.825977465,0.88685257,0.91391778,0.941288784,,,,,,,1129.332425,1121.400293,1114.009938,1105.2762,,,,,,,0.002726548,0.002745358,0.002762265,0.002784676,,,,,,,0.021057015,0.021055664,0.021054429,0.021051561,,,,,,,0.722985574,0.960720791,1.002650699,0.990408235,,,,,,,0.00205414,0.002793166,0.002922987,0.002869747,,,,,,,0.11458987,0.120194007,0.121501929,0.121675008,,,,,,,0.026162857,0.030970021,0.031854927,0.031580696,,,,,,,0.009713829,0.0096456,0.009582032,0.009506913,,,,,,,0.087296295,0.092940962,0.094128972,0.094584105,,,,,,,0.001145869,0.0015582,0.001630663,0.001600736,,,,,,,0.056840853,0.063071794,0.064686751,0.065641649,,,,,,,0.792957466,0.851848001,0.877753829,0.903763207,,,,,,,1115.618549,1107.362243,1099.689514,1090.543086,,,,,,,0.002544855,0.002562752,0.002578839,0.002600163,,,,,,,0.020866614,0.020862792,0.020859319,0.02085333,,,,,,,0.721530317,0.958666413,1.000502756,0.988067494,,,,,,,0.001992252,0.002709144,0.002835132,0.0027831,,,,,,,0.104634743,0.110063701,0.111326161,0.111483964,,,,,,,0.024561632,0.029223912,0.030081834,0.02981241,,,,,,,0.009595869,0.009524855,0.009458859,0.009380187,,,,,,,0.088259465,0.093778069,0.095032259,0.095627068,,,,,,,0.00115649,0.001572402,0.001645531,0.001615209,,,,,,,0.053365615,0.059490147,0.060970104,0.061733546,,,,,,,0.809398519,0.869167657,0.895657971,0.922374925,,,,,,,1139.358043,1130.866519,1122.945251,1113.484778,,,,,,,0.002575858,0.002594244,0.002610769,0.002632674,,,,,,,0.021000939,0.020996809,0.020993028,0.020986675,,,,,,,0.719467243,0.955980627,0.997706022,0.985336973,,,,,,,0.002010715,0.002733837,0.002860982,0.002808262,,,,,,,0.106080051,0.11155672,0.112831026,0.112989003,,,,,,,0.024845635,0.029548496,0.030414326,0.030141095,,,,,,,0.009800064,0.009727027,0.009658891,0.009577516,,,,,,,0.085790744,0.091203104,0.092324106,0.092731285,,,,,,,0.001167019,0.001586716,0.001660486,0.001629923,,,,,,,0.059497062,0.06592388,0.067626206,0.068670125,,,,,,,0.809111028,0.868984853,0.895453893,0.922117812,,,,,,,1125.835495,1117.835162,1110.409294,1101.630122,,,,,,,0.002626783,0.002645119,0.002661598,0.002683445,,,,,,,0.021006371,0.021001845,0.020997712,0.02099083,,,,,,,0.780925331,1.037726433,1.083017045,1.069657828,,,,,,,0.002029024,0.002758724,0.002886984,0.002833846,,,,,,,0.109043772,0.114570657,0.11585659,0.1160162,,,,,,,0.025321079,0.030066766,0.030940248,0.030664905,,,,,,,0.00968375,0.009614937,0.009551062,0.009475551,,,,,,,0.09104935,0.096757858,0.098100952,0.098790062,,,,,,,0.00118098,0.001605391,0.001680046,0.001649005,,,,,,,0.054220312,0.06048509,0.061982757,0.062736525,,,,,,,0.837338576,0.898686034,0.926164829,0.954056812,,,,,,,1122.082613,1114.297646,1107.106323,1098.662583,,,,,,,0.00267179,0.002690976,0.002708222,0.002731083,,,,,,,0.021212217,0.021208177,0.021204501,0.021198298,,,,,,,0.770676038,1.024175671,1.068887594,1.055742025,,,,,,,0.002053298,0.002791195,0.002920992,0.002867023,,,,,,,0.111075712,0.116666853,0.117969937,0.118132289,,,,,,,0.025711647,0.030510911,0.03139508,0.03111546,,,,,,,0.009651468,0.009584509,0.009522654,0.009450025,,,,,,,0.086033762,0.091598766,0.092759432,0.093190006, +Bus,B20,2035,,,,,,,0.00115859,0.001573705,0.001647073,0.00161699,,,,,,,0.067443179,0.074103392,0.076040929,0.077481267,,,,,,,0.817227214,0.876643986,0.902105388,0.928807449,,,,,,,1103.588864,1095.787647,1088.576149,1078.479759,,,,,,,0.002571437,0.002589576,0.002605253,0.002627145,,,,,,,0.021054453,0.021050041,0.021046005,0.021040085,,,,,,,0.758701471,1.00734926,1.051445253,1.03579131,,,,,,,0.002014369,0.002736105,0.002863664,0.00281136,,,,,,,0.105618762,0.111084687,0.112361297,0.112527561,,,,,,,0.024807214,0.029501021,0.030369444,0.030099607,,,,,,,0.009492397,0.009425297,0.009363267,0.009276425,,,,,,,0.09771399,0.103645397,0.105213555,0.106228552,,,,,,,0.001161954,0.001578358,0.001651923,0.001621781,,,,,,,0.064614221,0.071174694,0.073011692,0.074307368,,,,,,,0.806427588,0.865400693,0.890489972,0.916686074,,,,,,,1112.825921,1104.962636,1097.674559,1087.466266,,,,,,,0.0025894,0.002607184,0.002622557,0.002644024,,,,,,,0.021005094,0.02100006,0.020995454,0.020988741,,,,,,,0.756433713,1.004348382,1.048307023,1.032733988,,,,,,,0.002020217,0.002744192,0.002872095,0.00281969,,,,,,,0.106945717,0.11242793,0.113707499,0.113873739,,,,,,,0.02500697,0.029715257,0.030585962,0.030315556,,,,,,,0.00957185,0.009504213,0.009441527,0.009353722,,,,,,,0.095383173,0.101220081,0.102692504,0.103569712,,,,,,,0.001190088,0.001616736,0.001692041,0.001661616,,,,,,,0.069520224,0.07645509,0.078445183,0.079899212,,,,,,,0.834772296,0.895410209,0.921445329,0.948812634,,,,,,,1108.805481,1101.403714,1094.536319,1084.910977,,,,,,,0.002764275,0.00278283,0.002798868,0.002821263,,,,,,,0.02110111,0.021100099,0.02109917,0.021097544,,,,,,,0.759059881,1.007908538,1.052022587,1.036595325,,,,,,,0.002069133,0.002810919,0.002941848,0.00288895,,,,,,,0.116582976,0.122209365,0.123528102,0.123715263,,,,,,,0.026497759,0.031323044,0.032215457,0.031944929,,,,,,,0.009537268,0.009473603,0.009414533,0.009331743,,,,,,,0.099807294,0.106006242,0.107634109,0.108676842,,,,,,,0.00112966,0.001534648,0.001606216,0.001576852,,,,,,,0.065423259,0.071864878,0.073746758,0.075153909,,,,,,,0.78589789,0.843543827,0.867962827,0.893370525,,,,,,,1104.281605,1095.99149,1088.296452,1077.519045,,,,,,,0.002443909,0.002461181,0.00247611,0.002496958,,,,,,,0.020839844,0.020834456,0.02082953,0.02082237,,,,,,,0.735852251,0.976876634,1.019630618,1.004295291,,,,,,,0.001964071,0.002668198,0.002792628,0.002741575,,,,,,,0.098829753,0.104157977,0.105399378,0.105556257,,,,,,,0.023671306,0.02825006,0.029096692,0.028832631,,,,,,,0.009498356,0.00942705,0.009360863,0.009268162,,,,,,,0.095861837,0.101574839,0.103075985,0.104038502,,,,,,,0.001182562,0.001606544,0.001681383,0.001651119,,,,,,,0.055392262,0.061717918,0.063218381,0.064000936,,,,,,,0.827764369,0.887990519,0.913793054,0.940875254,,,,,,,1129.425531,1121.490872,1114.078011,1103.677903,,,,,,,0.002727921,0.002746285,0.00276216,0.002784327,,,,,,,0.021057213,0.021055818,0.021054548,0.021052441,,,,,,,0.723543331,0.960693146,1.00273921,0.987992535,,,,,,,0.002056048,0.002793199,0.002923317,0.002870699,,,,,,,0.114603416,0.120193334,0.121502703,0.121686784,,,,,,,0.026175158,0.03097013,0.031856864,0.031587509,,,,,,,0.00971463,0.009646381,0.009582619,0.009493165,,,,,,,0.087354976,0.092971693,0.0941279,0.09452289,,,,,,,0.001146931,0.001558217,0.001630847,0.001601265,,,,,,,0.056910398,0.063108751,0.064682503,0.06562778,,,,,,,0.794659398,0.852931661,0.877635301,0.903369318,,,,,,,1115.712816,1107.454754,1099.759985,1088.972349,,,,,,,0.002546161,0.002563636,0.00257874,0.00259983,,,,,,,0.020866815,0.020862959,0.020859449,0.020854223,,,,,,,0.722086561,0.958639411,1.000591844,0.985667243,,,,,,,0.001994098,0.002709175,0.002835452,0.002784019,,,,,,,0.104647566,0.110062845,0.111326802,0.111493983,,,,,,,0.024573505,0.029223982,0.030083699,0.029818817,,,,,,,0.009596682,0.009525651,0.009459465,0.009366676,,,,,,,0.088326995,0.0938153,0.095030553,0.095564182,,,,,,,0.001157562,0.001572421,0.001645718,0.001615743,,,,,,,0.053423643,0.059519176,0.060966692,0.061722615,,,,,,,0.811145635,0.870280618,0.895536791,0.921969551,,,,,,,1139.451903,1130.959084,1123.016443,1111.876869,,,,,,,0.002577201,0.002595151,0.002610667,0.002632333,,,,,,,0.021001148,0.020996976,0.020993164,0.020987549,,,,,,,0.720021854,0.955953038,0.997794745,0.982952847,,,,,,,0.002012581,0.002733869,0.002861307,0.00280919,,,,,,,0.106093075,0.111555892,0.112831735,0.112999274,,,,,,,0.024857637,0.029548575,0.030416225,0.030147587,,,,,,,0.009800872,0.009727818,0.009659505,0.009563686,,,,,,,0.085847557,0.091233,0.092323246,0.092669956,,,,,,,0.001168102,0.001586735,0.001660675,0.001630464,,,,,,,0.059572397,0.065964507,0.06762158,0.06865493,,,,,,,0.810854224,0.870095023,0.895332524,0.921714162,,,,,,,1125.929934,1117.927315,1110.478737,1100.036784,,,,,,,0.002628122,0.002646023,0.002661497,0.002683105,,,,,,,0.021006574,0.021002017,0.020997857,0.020991733,,,,,,,0.781526945,1.037696452,1.083113499,1.067066417,,,,,,,0.002030905,0.002758757,0.002887312,0.002834787,,,,,,,0.109056971,0.114569903,0.115857383,0.116027175,,,,,,,0.025333195,0.030066865,0.030942179,0.03067155,,,,,,,0.009684562,0.009615728,0.00955166,0.009461846,,,,,,,0.091122268,0.096798496,0.09809887,0.098725235,,,,,,,0.001182076,0.001605412,0.001680237,0.001649553,,,,,,,0.05427809,0.060513734,0.061979414,0.062725826,,,,,,,0.839158535,0.899847739,0.926037304,0.953634783,,,,,,,1122.176316,1114.389021,1107.175072,1097.070192,,,,,,,0.002673191,0.002691923,0.002708116,0.002730728,,,,,,,0.021212412,0.021208345,0.021204629,0.021199158,,,,,,,0.771269868,1.024145491,1.06898204,1.053198452,,,,,,,0.002055203,0.002791231,0.002921325,0.002867976,,,,,,,0.111089168,0.116666148,0.117970727,0.118143523,,,,,,,0.025723922,0.030511034,0.03139704,0.031122205,,,,,,,0.009652276,0.009585293,0.009523246,0.00943633,,,,,,,0.086090372,0.091628258,0.092758542,0.09312939 +Bus,B20,2040,,,,,,,,0.001158528,0.001573689,0.001647143,,,,,,,,0.067501054,0.074099329,0.076041949,,,,,,,,0.818358549,0.876584091,0.902134885,,,,,,,,1103.56527,1095.735044,1088.511952,,,,,,,,0.002572369,0.00258954,0.002605286,,,,,,,,0.021053544,0.021049108,0.021045051,,,,,,,,0.758682754,1.007394624,1.05152305,,,,,,,,0.002014261,0.002736076,0.002863786,,,,,,,,0.105599523,0.111066034,0.112344076,,,,,,,,0.024804152,0.029498472,0.030367909,,,,,,,,0.009492195,0.009424845,0.009362716,,,,,,,,0.097766937,0.103639942,0.105212462,,,,,,,,0.001161888,0.001578337,0.00165199,,,,,,,,0.064665837,0.071170767,0.073012375,,,,,,,,0.807536202,0.865341312,0.890517527,,,,,,,,1112.797942,1104.906593,1097.607334,,,,,,,,0.002590313,0.002607149,0.002622591,,,,,,,,0.021004153,0.020999093,0.020994475,,,,,,,,0.75641356,1.004391477,1.048382853,,,,,,,,0.002020103,0.002744157,0.002872212,,,,,,,,0.106926005,0.112408746,0.113689814,,,,,,,,0.025003806,0.029712607,0.030584342,,,,,,,,0.009571608,0.009503733,0.009440949,,,,,,,,0.095430182,0.101214622,0.102691025,,,,,,,,0.001190012,0.001616703,0.001692097,,,,,,,,0.069578163,0.076450578,0.078445771,,,,,,,,0.835927374,0.895346114,0.921471495,,,,,,,,1108.767287,1101.336641,1094.458219,,,,,,,,0.002765228,0.002782793,0.002798901,,,,,,,,0.021100055,0.021099014,0.021098072,,,,,,,,0.759034742,1.00794556,1.052091852,,,,,,,,0.002069,0.002810861,0.002941944,,,,,,,,0.116560708,0.122187579,0.123507782,,,,,,,,0.026494178,0.03131994,0.032213394,,,,,,,,0.00953694,0.009473025,0.009413863,,,,,,,,0.09985982,0.105999932,0.107632193,,,,,,,,0.001129601,0.001534636,0.001606287,,,,,,,,0.065479889,0.071861013,0.073747796,,,,,,,,0.786975214,0.843487436,0.867990955,,,,,,,,1104.26073,1095.943143,1088.235679,,,,,,,,0.002444796,0.002461148,0.002476142,,,,,,,,0.020838942,0.020833536,0.020828578,,,,,,,,0.735835008,0.976922196,1.019707131,,,,,,,,0.001963968,0.002668177,0.002792752,,,,,,,,0.098812308,0.104141173,0.10538394,,,,,,,,0.023668499,0.028247785,0.029095395,,,,,,,,0.009498177,0.009426635,0.009360339,,,,,,,,0.0959137,0.101569717,0.103074999,,,,,,,,0.001182486,0.001606513,0.001681439,,,,,,,,0.055421699,0.061714591,0.063218014,,,,,,,,0.828907678,0.887927531,0.91381913,,,,,,,,1129.384538,1121.425026,1114.000365,,,,,,,,0.002728864,0.00274625,0.002762193,,,,,,,,0.02105616,0.021054753,0.021053453,,,,,,,,0.723519809,0.960729789,1.002805803,,,,,,,,0.002055917,0.002793146,0.002923414,,,,,,,,0.114581655,0.120172131,0.121482917,,,,,,,,0.02617165,0.030967121,0.03185487,,,,,,,,0.009714278,0.009645814,0.009581952,,,,,,,,0.087380962,0.092966495,0.094125091,,,,,,,,0.001146865,0.001558196,0.001630911,,,,,,,,0.056947105,0.063105412,0.064682619,,,,,,,,0.795748977,0.852872704,0.877661695,,,,,,,,1115.681875,1107.398575,1099.691553,,,,,,,,0.002547059,0.002563601,0.002578772,,,,,,,,0.020865841,0.020861968,0.020858429,,,,,,,,0.722066605,0.958679837,1.000662845,,,,,,,,0.001993983,0.002709139,0.002835563,,,,,,,,0.104628504,0.110044347,0.111309723,,,,,,,,0.024570423,0.029221411,0.030082126,,,,,,,,0.009596415,0.009525167,0.009458877,,,,,,,,0.088360073,0.093810429,0.095028479,,,,,,,,0.001157497,0.001572402,0.001645785,,,,,,,,0.053452326,0.059516197,0.060966599,,,,,,,,0.812264686,0.870221039,0.895564702,,,,,,,,1139.420714,1130.903871,1122.949128,,,,,,,,0.002578123,0.002595117,0.0026107,,,,,,,,0.021000199,0.020996016,0.020992184,,,,,,,,0.720002697,0.955995324,0.997866866,,,,,,,,0.002012468,0.002733837,0.002861423,,,,,,,,0.106073609,0.11153709,0.112814282,,,,,,,,0.024854517,0.029545988,0.030414634,,,,,,,,0.009800601,0.009727347,0.009658923,,,,,,,,0.085873178,0.091228478,0.092320996,,,,,,,,0.001168033,0.001586712,0.001660739,,,,,,,,0.059612785,0.065960938,0.067621781,,,,,,,,0.811970312,0.870034353,0.895360008,,,,,,,,1125.897141,1117.868271,1110.407846,,,,,,,,0.002629042,0.002645988,0.002661531,,,,,,,,0.021005611,0.021001029,0.020996841,,,,,,,,0.781504835,1.037739849,1.083189785,,,,,,,,0.002030786,0.002758717,0.002887423,,,,,,,,0.109036661,0.114550125,0.11583903,,,,,,,,0.025329936,0.030064112,0.030940444,,,,,,,,0.00968428,0.009615221,0.009551051,,,,,,,,0.091158688,0.096793306,0.098096805,,,,,,,,0.00118201,0.001605393,0.001680306,,,,,,,,0.054306329,0.060510704,0.061979246,,,,,,,,0.840327255,0.899785768,0.926066678,,,,,,,,1122.14603,1114.333158,1107.106868,,,,,,,,0.002674153,0.002691887,0.00270815,,,,,,,,0.021211494,0.021207403,0.021203661,,,,,,,,0.771249599,1.024190752,1.069059447,,,,,,,,0.002055089,0.002791197,0.002921444,,,,,,,,0.111068424,0.116646018,0.117951993,,,,,,,,0.025720641,0.030508269,0.031395293,,,,,,,,0.009652013,0.009584815,0.009522658,,,,,,,,0.086115612,0.091623663,0.092756207 +Bus,B20,2045,,,,,,,,,0.001159268,0.001573997,,,,,,,,,0.067510178,0.074104445,,,,,,,,,0.818414679,0.876641,,,,,,,,,1103.595447,1095.766362,,,,,,,,,0.002572359,0.002589565,,,,,,,,,0.021053895,0.021049473,,,,,,,,,0.759097833,1.007557489,,,,,,,,,0.002015548,0.002736613,,,,,,,,,0.105614805,0.111076248,,,,,,,,,0.024813233,0.029502752,,,,,,,,,0.009492456,0.009425113,,,,,,,,,0.097776365,0.103645691,,,,,,,,,0.001162631,0.001578649,,,,,,,,,0.064675091,0.071175818,,,,,,,,,0.807592368,0.865397993,,,,,,,,,1112.829313,1104.939476,,,,,,,,,0.002590303,0.002607176,,,,,,,,,0.021004519,0.020999479,,,,,,,,,0.756827989,1.004555106,,,,,,,,,0.002021395,0.002744699,,,,,,,,,0.106941482,0.112419228,,,,,,,,,0.025012953,0.02971695,,,,,,,,,0.009571879,0.009504014,,,,,,,,,0.095439783,0.101220348,,,,,,,,,0.001190777,0.001617024,,,,,,,,,0.069587867,0.076455997,,,,,,,,,0.835984583,0.895405582,,,,,,,,,1108.802519,1101.372187,,,,,,,,,0.002765218,0.002782818,,,,,,,,,0.021100466,0.02109943,,,,,,,,,0.759452581,1.008110557,,,,,,,,,0.00207033,0.002811419,,,,,,,,,0.116577387,0.122199032,,,,,,,,,0.026503678,0.031324497,,,,,,,,,0.009537243,0.009473332,,,,,,,,,0.099869948,0.106006072,,,,,,,,,0.001130322,0.001534935,,,,,,,,,0.065488665,0.071865941,,,,,,,,,0.787030397,0.84354194,,,,,,,,,1104.290003,1095.972477,,,,,,,,,0.002444786,0.002461172,,,,,,,,,0.020839296,0.020833894,,,,,,,,,0.736237235,0.977079924,,,,,,,,,0.001965221,0.002668697,,,,,,,,,0.098826732,0.104150595,,,,,,,,,0.023677289,0.028251876,,,,,,,,,0.00949843,0.009426889,,,,,,,,,0.095922772,0.10157523,,,,,,,,,0.001183246,0.001606831,,,,,,,,,0.055431559,0.061719149,,,,,,,,,0.828964497,0.887986053,,,,,,,,,1129.419285,1121.459702,,,,,,,,,0.002728854,0.002746275,,,,,,,,,0.021056563,0.021055161,,,,,,,,,0.723917896,0.960886792,,,,,,,,,0.002057238,0.002793699,,,,,,,,,0.114598066,0.120183333,,,,,,,,,0.026181066,0.03097162,,,,,,,,,0.009714574,0.009646112,,,,,,,,,0.08739122,0.092971821,,,,,,,,,0.001147599,0.001558503,,,,,,,,,0.056956383,0.063109959,,,,,,,,,0.795804774,0.852928961,,,,,,,,,1115.713574,1107.430721,,,,,,,,,0.002547049,0.002563626,,,,,,,,,0.02086622,0.020862355,,,,,,,,,0.722462444,0.958835973,,,,,,,,,0.00199526,0.002709672,,,,,,,,,0.104643662,0.110054492,,,,,,,,,0.024579435,0.029225667,,,,,,,,,0.009596688,0.009525444,,,,,,,,,0.088369695,0.093815668,,,,,,,,,0.001158238,0.00157271,,,,,,,,,0.05346176,0.059520468,,,,,,,,,0.812320615,0.870276733,,,,,,,,,1139.452252,1130.934677,,,,,,,,,0.002578113,0.00259514,,,,,,,,,0.021000568,0.020996378,,,,,,,,,0.720397228,0.956149577,,,,,,,,,0.002013755,0.002734373,,,,,,,,,0.106088976,0.111547301,,,,,,,,,0.024863618,0.02955026,,,,,,,,,0.009800873,0.009727611,,,,,,,,,0.085882925,0.091233422,,,,,,,,,0.001168781,0.001587024,,,,,,,,,0.05962223,0.065965678,,,,,,,,,0.812026155,0.870091914,,,,,,,,,1125.929443,1117.900997,,,,,,,,,0.002629032,0.002646013,,,,,,,,,0.021005986,0.021001414,,,,,,,,,0.781933528,1.037908469,,,,,,,,,0.002032087,0.002759261,,,,,,,,,0.109052437,0.114560774,,,,,,,,,0.02533916,0.030068485,,,,,,,,,0.009684559,0.009615503,,,,,,,,,0.091168486,0.096798737,,,,,,,,,0.001182766,0.001605708,,,,,,,,,0.054316049,0.060515111,,,,,,,,,0.840383719,0.89984457,,,,,,,,,1122.177424,1114.364839,,,,,,,,,0.002674142,0.002691913,,,,,,,,,0.021211851,0.021207775,,,,,,,,,0.771672098,1.024356308,,,,,,,,,0.002056403,0.002791747,,,,,,,,,0.111084444,0.116656854,,,,,,,,,0.025729965,0.030512696,,,,,,,,,0.009652286,0.009585088,,,,,,,,,0.086125618,0.09162878 +Bus,B20,2050,,,,,,,,,,0.001159193,,,,,,,,,,0.067514983,,,,,,,,,,0.818504719,,,,,,,,,,1103.554736,,,,,,,,,,0.002572433,,,,,,,,,,0.021053825,,,,,,,,,,0.759060183,,,,,,,,,,0.002015417,,,,,,,,,,0.105615,,,,,,,,,,0.024812526,,,,,,,,,,0.009492105,,,,,,,,,,0.097779531,,,,,,,,,,0.001162556,,,,,,,,,,0.064679432,,,,,,,,,,0.807680859,,,,,,,,,,1112.788626,,,,,,,,,,0.002590377,,,,,,,,,,0.021004443,,,,,,,,,,0.756790503,,,,,,,,,,0.002021265,,,,,,,,,,0.106941653,,,,,,,,,,0.025012244,,,,,,,,,,0.009571529,,,,,,,,,,0.095442487,,,,,,,,,,0.0011907,,,,,,,,,,0.069592666,,,,,,,,,,0.83607663,,,,,,,,,,1108.762954,,,,,,,,,,0.002765293,,,,,,,,,,0.021100393,,,,,,,,,,0.759414876,,,,,,,,,,0.002070196,,,,,,,,,,0.116577428,,,,,,,,,,0.026502939,,,,,,,,,,0.009536902,,,,,,,,,,0.099873166,,,,,,,,,,0.001130249,,,,,,,,,,0.065493331,,,,,,,,,,0.787116191,,,,,,,,,,1104.247843,,,,,,,,,,0.002444857,,,,,,,,,,0.020839221,,,,,,,,,,0.736200241,,,,,,,,,,0.001965094,,,,,,,,,,0.098826942,,,,,,,,,,0.023676607,,,,,,,,,,0.009498066,,,,,,,,,,0.0959258,,,,,,,,,,0.00118317,,,,,,,,,,0.055434141,,,,,,,,,,0.829055531,,,,,,,,,,1129.378695,,,,,,,,,,0.002728928,,,,,,,,,,0.021056493,,,,,,,,,,0.72388185,,,,,,,,,,0.002057105,,,,,,,,,,0.114598114,,,,,,,,,,0.026180335,,,,,,,,,,0.009714227,,,,,,,,,,0.087392337,,,,,,,,,,0.001147525,,,,,,,,,,0.056959533,,,,,,,,,,0.795891043,,,,,,,,,,1115.671838,,,,,,,,,,0.002547121,,,,,,,,,,0.020866146,,,,,,,,,,0.722426452,,,,,,,,,,0.001995131,,,,,,,,,,0.104643824,,,,,,,,,,0.024578739,,,,,,,,,,0.009596328,,,,,,,,,,0.088371289,,,,,,,,,,0.001158163,,,,,,,,,,0.053464284,,,,,,,,,,0.81240968,,,,,,,,,,1139.410064,,,,,,,,,,0.002578186,,,,,,,,,,0.021000495,,,,,,,,,,0.720361673,,,,,,,,,,0.002013625,,,,,,,,,,0.106089148,,,,,,,,,,0.024862912,,,,,,,,,,0.009800512,,,,,,,,,,0.085883955,,,,,,,,,,0.001168706,,,,,,,,,,0.059625683,,,,,,,,,,0.812114985,,,,,,,,,,1125.888761,,,,,,,,,,0.002629105,,,,,,,,,,0.021005909,,,,,,,,,,0.781894734,,,,,,,,,,0.002031956,,,,,,,,,,0.10905256,,,,,,,,,,0.025338441,,,,,,,,,,0.009684208,,,,,,,,,,0.09117039,,,,,,,,,,0.001182689,,,,,,,,,,0.054318537,,,,,,,,,,0.840476545,,,,,,,,,,1122.137015,,,,,,,,,,0.002674218,,,,,,,,,,0.021211778,,,,,,,,,,0.771634165,,,,,,,,,,0.00205627,,,,,,,,,,0.111084549,,,,,,,,,,0.025729235,,,,,,,,,,0.009651939,,,,,,,,,,0.086126638 +Bus,CNG,1990,0.023385495,,,,,,,,,,18.67617662,,,,,,,,,,24.89828358,,,,,,,,,,1512.490071,,,,,,,,,,0.088785165,,,,,,,,,,0.035353444,,,,,,,,,,14.30372803,,,,,,,,,,0.093551063,,,,,,,,,,0.366388048,,,,,,,,,,0.263374253,,,,,,,,,,0.008007864,,,,,,,,,,2.859946022,,,,,,,,,,0.023138497,,,,,,,,,,18.73987257,,,,,,,,,,24.86516876,,,,,,,,,,1519.421845,,,,,,,,,,0.088455433,,,,,,,,,,0.035298612,,,,,,,,,,14.26328845,,,,,,,,,,0.092562707,,,,,,,,,,0.364636226,,,,,,,,,,0.260862341,,,,,,,,,,0.008044566,,,,,,,,,,2.869698682,,,,,,,,,,0.022059659,,,,,,,,,,19.09943342,,,,,,,,,,24.36512576,,,,,,,,,,1510.258181,,,,,,,,,,0.093535472,,,,,,,,,,0.035271438,,,,,,,,,,13.99546802,,,,,,,,,,0.088247259,,,,,,,,,,0.360228639,,,,,,,,,,0.250307943,,,,,,,,,,0.007996051,,,,,,,,,,2.924761697,,,,,,,,,,0.023232293,,,,,,,,,,18.19680242,,,,,,,,,,24.78681307,,,,,,,,,,1511.837576,,,,,,,,,,0.084465266,,,,,,,,,,0.035042351,,,,,,,,,,14.24390407,,,,,,,,,,0.092938377,,,,,,,,,,0.358459943,,,,,,,,,,0.260953073,,,,,,,,,,0.008004405,,,,,,,,,,2.786539544,,,,,,,,,,0.022109676,,,,,,,,,,18.96285501,,,,,,,,,,24.37441712,,,,,,,,,,1531.170791,,,,,,,,,,0.092419424,,,,,,,,,,0.035216205,,,,,,,,,,14.00209555,,,,,,,,,,0.088447335,,,,,,,,,,0.359058547,,,,,,,,,,0.250623778,,,,,,,,,,0.008106763,,,,,,,,,,2.903846276,,,,,,,,,,0.022577715,,,,,,,,,,18.42658669,,,,,,,,,,24.53943744,,,,,,,,,,1519.627154,,,,,,,,,,0.086950162,,,,,,,,,,0.035014665,,,,,,,,,,14.09642382,,,,,,,,,,0.090319541,,,,,,,,,,0.35578888,,,,,,,,,,0.254548257,,,,,,,,,,0.008045652,,,,,,,,,,2.82172684,,,,,,,,,,0.023072944,,,,,,,,,,18.62593987,,,,,,,,,,24.77205547,,,,,,,,,,1546.60258,,,,,,,,,,0.08853074,,,,,,,,,,0.035252901,,,,,,,,,,14.22801356,,,,,,,,,,0.092300625,,,,,,,,,,0.363052121,,,,,,,,,,0.26005578,,,,,,,,,,0.008188471,,,,,,,,,,2.852252633,,,,,,,,,,0.022877654,,,,,,,,,,18.81883173,,,,,,,,,,24.7736157,,,,,,,,,,1530.865814,,,,,,,,,,0.089479335,,,,,,,,,,0.0352784,,,,,,,,,,14.20547176,,,,,,,,,,0.091519626,,,,,,,,,,0.363390211,,,,,,,,,,0.258288151,,,,,,,,,,0.008105153,,,,,,,,,,2.881791173,,,,,,,,,,0.023508814,,,,,,,,,,19.05713911,,,,,,,,,,25.01616459,,,,,,,,,,1532.214866,,,,,,,,,,0.092043372,,,,,,,,,,0.035598984,,,,,,,,,,14.35927721,,,,,,,,,,0.094044652,,,,,,,,,,0.372788609,,,,,,,,,,0.265326204,,,,,,,,,,0.008112293,,,,,,,,,,2.918283408,,,,,,,,, +Bus,CNG,1995,0.01772666,0.023500724,,,,,,,,,18.67157719,18.67710939,,,,,,,,,24.84523483,24.90939853,,,,,,,,,1515.091726,1515.558563,,,,,,,,,0.083206925,0.089959357,,,,,,,,,0.035353422,0.035353412,,,,,,,,,14.30371002,14.30370689,,,,,,,,,0.070913508,0.094011982,,,,,,,,,0.29720887,0.367796436,,,,,,,,,0.202177105,0.264620255,,,,,,,,,0.008021636,0.00802411,,,,,,,,,2.859244013,2.860090296,,,,,,,,,0.017539327,0.023252534,,,,,,,,,18.73578057,18.74074906,,,,,,,,,24.8131718,24.87612693,,,,,,,,,1523.257615,1523.479519,,,,,,,,,0.082983449,0.089607276,,,,,,,,,0.03529863,0.035298647,,,,,,,,,14.26329912,14.26330544,,,,,,,,,0.070164114,0.093019086,,,,,,,,,0.29618736,0.366030829,,,,,,,,,0.200311128,0.262096079,,,,,,,,,0.00806487,0.008066049,,,,,,,,,2.869073515,2.869836275,,,,,,,,,0.01672299,0.022168643,,,,,,,,,19.0948463,19.10042213,,,,,,,,,24.31091875,24.37656258,,,,,,,,,1513.963922,1514.267941,,,,,,,,,0.087829709,0.094736724,,,,,,,,,0.035271491,0.035271515,,,,,,,,,13.99546868,13.99547512,,,,,,,,,0.066898438,0.088683175,,,,,,,,,0.294987946,0.361560895,,,,,,,,,0.192594808,0.251486499,,,,,,,,,0.008015665,0.008017274,,,,,,,,,2.924059907,2.924913482,,,,,,,,,0.017609938,0.02334673,,,,,,,,,18.19235287,18.19774795,,,,,,,,,24.7362976,24.79742238,,,,,,,,,1516.679291,1516.746441,,,,,,,,,0.079151369,0.085583945,,,,,,,,,0.035042369,0.035042358,,,,,,,,,14.2439031,14.2439011,,,,,,,,,0.070446548,0.093395985,,,,,,,,,0.289726424,0.359858555,,,,,,,,,0.200150012,0.262190279,,,,,,,,,0.008030046,0.008030398,,,,,,,,,2.785857496,2.786684131,,,,,,,,,0.016760699,0.022218845,,,,,,,,,18.96039558,18.96335604,,,,,,,,,24.32071563,24.38568167,,,,,,,,,1538.500005,1538.065935,,,,,,,,,0.086771391,0.09360843,,,,,,,,,0.035216189,0.035216176,,,,,,,,,14.00208482,14.0020815,,,,,,,,,0.067049236,0.088883952,,,,,,,,,0.293666833,0.360392511,,,,,,,,,0.192777268,0.251804058,,,,,,,,,0.008145572,0.008143276,,,,,,,,,2.903471085,2.90392487,,,,,,,,,0.017114357,0.02268899,,,,,,,,,18.42361755,18.42721089,,,,,,,,,24.48835929,24.55020635,,,,,,,,,1526.330112,1525.996692,,,,,,,,,0.081573946,0.088081943,,,,,,,,,0.03501465,0.035014638,,,,,,,,,14.09642955,14.09642138,,,,,,,,,0.068464028,0.09076475,,,,,,,,,0.288999552,0.357149321,,,,,,,,,0.195465149,0.255751748,,,,,,,,,0.008081139,0.008079375,,,,,,,,,2.82127161,2.821822682,,,,,,,,,0.017489833,0.02318671,,,,,,,,,18.62355522,18.6264356,,,,,,,,,24.71959112,24.78311367,,,,,,,,,1555.213036,1554.545324,,,,,,,,,0.083009374,0.089693096,,,,,,,,,0.03525289,0.035252893,,,,,,,,,14.22802119,14.2280251,,,,,,,,,0.06996613,0.09275581,,,,,,,,,0.29479888,0.364442882,,,,,,,,,0.199677716,0.261286041,,,,,,,,,0.008234056,0.008230522,,,,,,,,,2.851889334,2.852329711,,,,,,,,,0.017341919,0.022990472,,,,,,,,,18.81555446,18.81949845,,,,,,,,,24.72124654,24.78461565,,,,,,,,,1536.693178,1536.532136,,,,,,,,,0.083971073,0.090638779,,,,,,,,,0.03527837,0.035278377,,,,,,,,,14.20545653,14.20545539,,,,,,,,,0.069374361,0.091970775,,,,,,,,,0.295715348,0.364768788,,,,,,,,,0.198421755,0.259507799,,,,,,,,,0.008136007,0.008135154,,,,,,,,,2.881290008,2.881894928,,,,,,,,,0.017820675,0.023624834,,,,,,,,,19.05479356,19.05763159,,,,,,,,,24.9613764,25.02763393,,,,,,,,,1535.932799,1536.097812,,,,,,,,,0.086283289,0.09325597,,,,,,,,,0.035599,0.035598996,,,,,,,,,14.3592632,14.35926057,,,,,,,,,0.071289563,0.094508457,,,,,,,,,0.303250425,0.374206081,,,,,,,,,0.203811252,0.266580018,,,,,,,,,0.00813198,0.008132853,,,,,,,,,2.917926596,2.918362115,,,,,,,, +Bus,CNG,2000,0.013583008,0.017730391,0.025300108,,,,,,,,17.22425845,18.67263314,18.66658738,,,,,,,,22.97067451,24.8572604,24.78699818,,,,,,,,1517.245138,1517.683597,1515.408488,,,,,,,,0.078557628,0.084469467,0.077075081,,,,,,,,0.035353453,0.035353427,0.035353439,,,,,,,,14.02857766,14.30372314,14.30372039,,,,,,,,0.054337329,0.070928497,0.101210243,,,,,,,,0.246553042,0.29725465,0.389794059,,,,,,,,0.157365872,0.202217584,0.284079646,,,,,,,,0.008033037,0.008035362,0.008023314,,,,,,,,2.637610307,2.859405311,2.85847893,,,,,,,,0.013439298,0.01754294,0.025033248,,,,,,,,17.28132791,18.73667605,18.73125739,,,,,,,,22.94065956,24.82489148,24.75598204,,,,,,,,1526.421592,1526.656678,1524.046623,,,,,,,,0.078422497,0.084221805,0.076968252,,,,,,,,0.035298552,0.035298553,0.035298574,,,,,,,,13.98988475,14.26326807,14.26328699,,,,,,,,0.053762407,0.070178538,0.100142693,,,,,,,,0.246064476,0.296231251,0.38780017,,,,,,,,0.155971627,0.200350091,0.281353677,,,,,,,,0.008081622,0.008082867,0.00806905,,,,,,,,2.646349592,2.869211402,2.868380934,,,,,,,,0.012815044,0.016726797,0.023862113,,,,,,,,17.59921271,19.09589009,19.08978872,,,,,,,,22.47955026,24.32320083,24.25131701,,,,,,,,1517.025432,1517.331242,1514.66673,,,,,,,,0.083073874,0.089121071,0.081557445,,,,,,,,0.03527151,0.035271499,0.035271488,,,,,,,,13.73304899,13.99547314,13.99546789,,,,,,,,0.051265141,0.066913672,0.095457695,,,,,,,,0.247213437,0.295034451,0.382263412,,,,,,,,0.150332532,0.192635986,0.269800328,,,,,,,,0.008031878,0.008033494,0.008019389,,,,,,,,2.695028089,2.924219529,2.923284924,,,,,,,,0.013492969,0.017613469,0.025136262,,,,,,,,16.79025796,18.19336055,18.18743997,,,,,,,,22.86898183,24.74772966,24.68078548,,,,,,,,1520.683084,1520.791262,1517.829725,,,,,,,,0.074722209,0.080354076,0.073309899,,,,,,,,0.035042364,0.035042366,0.035042353,,,,,,,,13.96608123,14.24390016,14.24389615,,,,,,,,0.053977096,0.070460719,0.100554823,,,,,,,,0.239396652,0.289769666,0.381735516,,,,,,,,0.155627353,0.200188312,0.281543103,,,,,,,,0.008051242,0.008051816,0.008036134,,,,,,,,2.571150285,2.786010625,2.785105596,,,,,,,,0.012843752,0.016764444,0.023916786,,,,,,,,17.47826406,18.96093957,18.95769962,,,,,,,,22.48826361,24.33286899,24.26172696,,,,,,,,1544.564137,1544.255616,1540.618394,,,,,,,,0.082063636,0.088049588,0.080562577,,,,,,,,0.035216178,0.035216166,0.035216186,,,,,,,,13.73837733,14.00207838,14.00208587,,,,,,,,0.051379967,0.067064314,0.095676425,,,,,,,,0.245782447,0.293712825,0.381149897,,,,,,,,0.150417789,0.192817944,0.27016641,,,,,,,,0.008177681,0.008176046,0.008156788,,,,,,,,2.676506524,2.903554323,2.903057506,,,,,,,,0.013113787,0.017117933,0.024353991,,,,,,,,16.99584046,18.42429466,18.43560956,,,,,,,,22.64111245,24.49992097,24.39798904,,,,,,,,1531.872748,1531.64733,1530.786257,,,,,,,,0.07709283,0.082790831,0.075862145,,,,,,,,0.035014676,0.035014673,0.035009872,,,,,,,,13.82506404,14.09643125,14.07909439,,,,,,,,0.05246023,0.068478399,0.097425413,,,,,,,,0.240092872,0.289043422,0.377959928,,,,,,,,0.152201304,0.195503954,0.27381559,,,,,,,,0.008110487,0.008109291,0.008104731,,,,,,,,2.602632556,2.821375475,2.823106853,,,,,,,,0.013401541,0.01749348,0.024961805,,,,,,,,17.1794138,18.62406577,18.62092363,,,,,,,,22.85465596,24.7314194,24.66187724,,,,,,,,1562.331159,1561.828092,1557.808189,,,,,,,,0.078407163,0.084258881,0.076939726,,,,,,,,0.035252811,0.035252789,0.035252808,,,,,,,,13.95471505,14.22799094,14.22799694,,,,,,,,0.053611366,0.069980698,0.099856865,,,,,,,,0.244819468,0.294843235,0.386143162,,,,,,,,0.155465068,0.199717059,0.280482695,,,,,,,,0.008271744,0.008269081,0.008247801,,,,,,,,2.630742227,2.851966665,2.851485877,,,,,,,,0.013288305,0.017345587,0.024750314,,,,,,,,17.35215682,18.816293,18.81197172,,,,,,,,22.85609546,24.73310706,24.6637224,,,,,,,,1541.513105,1541.430117,1538.248539,,,,,,,,0.079380044,0.085217763,0.077916134,,,,,,,,0.035278398,0.035278397,0.035278389,,,,,,,,13.93451985,14.20546487,14.20545956,,,,,,,,0.053158357,0.069389086,0.099010856,,,,,,,,0.246160182,0.295760383,0.38628287,,,,,,,,0.154584301,0.198461568,0.278539458,,,,,,,,0.008161525,0.008161086,0.008144242,,,,,,,,2.657195387,2.88140369,2.88074186,,,,,,,,0.013655406,0.017824501,0.025432366,,,,,,,,17.57173831,19.0553134,19.05221425,,,,,,,,23.07846816,24.97380619,24.90123153,,,,,,,,1539.007727,1539.192552,1536.736989,,,,,,,,0.081482103,0.087586885,0.079951227,,,,,,,,0.035598978,0.03559901,0.035599,,,,,,,,14.08618053,14.35927337,14.35927641,,,,,,,,0.054626843,0.071304914,0.101739285,,,,,,,,0.252330189,0.303297444,0.396303156,,,,,,,,0.158766116,0.20385285,0.286127306,,,,,,,,0.008148262,0.008149241,0.008136236,,,,,,,,2.690820487,2.918005835,2.917532012,,,,,,, +Bus,CNG,2005,0.002166228,0.002819159,0.003514721,0.016519826,,,,,,,3.797970753,8.296774111,9.800320751,13.82321027,,,,,,,2.900473506,5.767221323,6.176892853,14.66308895,,,,,,,1309.769931,1309.74956,1309.094375,1403.119441,,,,,,,0.072825035,0.077727268,0.070608306,0.078982098,,,,,,,0.035353443,0.035353448,0.035353449,0.03535344,,,,,,,6.485501918,7.370850947,7.697424072,10.69153145,,,,,,,0.008415336,0.010875567,0.013546544,0.065718809,,,,,,,0.106167634,0.113655478,0.121795437,0.281260477,,,,,,,0.033178337,0.039802214,0.047002981,0.188068807,,,,,,,0.006934564,0.006934456,0.006930988,0.007428802,,,,,,,0.35684427,0.813712593,0.892537968,1.783181248,,,,,,,0.002143807,0.002790628,0.003479878,0.016347252,,,,,,,3.82194327,8.370777725,9.896290204,13.90452996,,,,,,,2.8905287,5.752936356,6.162796198,14.64033172,,,,,,,1317.942556,1317.773133,1317.055108,1411.238035,,,,,,,0.072799037,0.077607974,0.070624552,0.078838911,,,,,,,0.035298535,0.035298553,0.035298556,0.035298554,,,,,,,6.465586402,7.345940359,7.670902477,10.65869931,,,,,,,0.00832797,0.010764872,0.013411144,0.065031299,,,,,,,0.10716954,0.114586363,0.122650906,0.280428457,,,,,,,0.033102521,0.039663529,0.046797588,0.18637063,,,,,,,0.006977835,0.006976938,0.006973134,0.007471786,,,,,,,0.358564735,0.819770351,0.899704325,1.791522362,,,,,,,0.002057587,0.002679652,0.003337975,0.015596768,,,,,,,3.990707646,8.838742548,10.4916994,14.39308211,,,,,,,2.880860769,5.700515951,6.107238971,14.38340658,,,,,,,1309.812244,1309.701849,1308.913167,1402.598047,,,,,,,0.077210156,0.082224604,0.074942676,0.083508127,,,,,,,0.03527148,0.035271502,0.035271499,0.035271492,,,,,,,6.376648728,7.233266406,7.551686602,10.47213878,,,,,,,0.007986189,0.010327651,0.012854291,0.062037008,,,,,,,0.114906157,0.122032025,0.129731794,0.280060149,,,,,,,0.033290993,0.03959465,0.046406015,0.17938935,,,,,,,0.006934787,0.006934205,0.006930027,0.007426041,,,,,,,0.370545163,0.85734789,0.943569467,1.840380141,,,,,,,0.002143638,0.002788308,0.003477457,0.016402766,,,,,,,3.642785611,7.893314495,9.296251127,13.33033662,,,,,,,2.860693682,5.705977095,6.11181571,14.57692092,,,,,,,1313.202001,1312.947112,1312.109791,1405.634181,,,,,,,0.069261202,0.073931229,0.06714946,0.07512661,,,,,,,0.035042366,0.035042368,0.035042364,0.035042373,,,,,,,6.44519525,7.333719925,7.660266933,10.64410378,,,,,,,0.008331815,0.010762507,0.013409913,0.065259297,,,,,,,0.099858231,0.107256529,0.115324823,0.27380243,,,,,,,0.032189038,0.03873369,0.045871066,0.186063392,,,,,,,0.006952734,0.006951384,0.006946952,0.007442117,,,,,,,0.344621822,0.77926749,0.853054272,1.728381472,,,,,,,0.002059748,0.002682065,0.003341369,0.015629553,,,,,,,3.937177545,8.713854702,10.34100333,14.24869167,,,,,,,2.874335931,5.692554204,6.098698928,14.38292157,,,,,,,1334.323386,1333.760238,1332.803253,1426.972739,,,,,,,0.076259361,0.081223,0.074014808,0.082493516,,,,,,,0.035216212,0.035216198,0.035216203,0.035216191,,,,,,,6.375324348,7.234287033,7.553193676,10.47596133,,,,,,,0.007995825,0.010338684,0.012869382,0.062169206,,,,,,,0.113153921,0.120284083,0.127996302,0.278682384,,,,,,,0.033092036,0.039399539,0.046221906,0.179521695,,,,,,,0.007064563,0.007061578,0.007056513,0.007555094,,,,,,,0.366390869,0.846913727,0.931930531,1.824617484,,,,,,,0.002090342,0.00272003,0.003381969,0.015947621,,,,,,,3.739780438,8.17794333,9.692855572,13.63512258,,,,,,,2.852588209,5.676540131,6.076647936,14.44811479,,,,,,,1323.23992,1322.738303,1324.217772,1415.416357,,,,,,,0.071567656,0.076292539,0.06962257,0.077501951,,,,,,,0.035014694,0.035014701,0.035009898,0.035014682,,,,,,,6.393361095,7.267330801,7.58212137,10.53872285,,,,,,,0.008121085,0.010494017,0.013035512,0.063443503,,,,,,,0.104546526,0.111768739,0.119970015,0.273586137,,,,,,,0.032294379,0.038683277,0.045592691,0.181830111,,,,,,,0.007005882,0.007003224,0.007011057,0.007493908,,,,,,,0.351522332,0.802336724,0.882411527,1.759212605,,,,,,,0.002137841,0.002782285,0.003468632,0.016299567,,,,,,,3.786098929,8.291566557,9.803004823,13.80181333,,,,,,,2.885737719,5.738231252,6.146416477,14.58920193,,,,,,,1349.921078,1349.215518,1348.169385,1443.028594,,,,,,,0.072733047,0.077585396,0.070538804,0.078827391,,,,,,,0.035252906,0.035252894,0.035252892,0.035252849,,,,,,,6.453066257,7.333300227,7.658157082,10.63574193,,,,,,,0.00830477,0.01073293,0.013368487,0.064842196,,,,,,,0.106315574,0.113705763,0.121737726,0.279067526,,,,,,,0.032941712,0.039479215,0.046584451,0.185761514,,,,,,,0.007147144,0.007143407,0.00713787,0.007640101,,,,,,,0.35559607,0.812832939,0.89212144,1.77953101,,,,,,,0.002122656,0.002763458,0.003445347,0.016165803,,,,,,,3.855199811,8.472096896,10.02808064,14.0123409,,,,,,,2.887458812,5.741684795,6.150744722,14.59226554,,,,,,,1331.376853,1330.974484,1330.135103,1424.597837,,,,,,,0.073719411,0.078560097,0.071530485,0.079799186,,,,,,,0.035278358,0.035278371,0.035278362,0.035278371,,,,,,,6.444407681,7.31909733,7.642426187,10.61692346,,,,,,,0.008244306,0.010658015,0.013275778,0.064307404,,,,,,,0.108855622,0.116201733,0.124179285,0.280158268,,,,,,,0.033122125,0.039620595,0.04667775,0.184659691,,,,,,,0.007048962,0.007046832,0.007042385,0.007542519,,,,,,,0.360899321,0.827961841,0.909438873,1.802335306,,,,,,,0.002184091,0.002843724,0.003544708,0.016614322,,,,,,,3.912772935,8.613734207,10.20290553,14.21591681,,,,,,,2.931871534,5.818247161,6.231289906,14.74629913,,,,,,,1328.776009,1328.555471,1327.954867,1422.897271,,,,,,,0.075562504,0.080624693,0.073273481,0.081920488,,,,,,,0.035599019,0.035599,0.035599012,0.035599023,,,,,,,6.519046522,7.401748073,7.72827932,10.73358161,,,,,,,0.008481487,0.01096566,0.013656537,0.066089741,,,,,,,0.111261138,0.11882154,0.127021927,0.287285078,,,,,,,0.033973783,0.040661868,0.04791607,0.189687852,,,,,,,0.007035192,0.007034025,0.007030846,0.007533516,,,,,,,0.365895993,0.840924169,0.924130284,1.826919439,,,,,, +Bus,CNG,2010,,0.000251878,0.00035318,0.000456375,0.008783899,,,,,,,1.530044371,3.553486513,3.923878217,8.881265171,,,,,,,3.106770304,5.861335984,6.669633096,10.5148809,,,,,,,1272.817148,1271.553775,1271.832167,1336.550712,,,,,,,0.072942693,0.06670241,0.070906863,0.080493491,,,,,,,0.035353387,0.035353393,0.035353383,0.035353406,,,,,,,2.027068328,2.244026619,2.27304478,6.501743174,,,,,,,0.000848557,0.001189837,0.001537494,0.034691818,,,,,,,0.083062238,0.084092332,0.085141642,0.186427507,,,,,,,0.01273894,0.013650162,0.014578405,0.104177784,,,,,,,0.006738917,0.006732231,0.006733704,0.007076355,,,,,,,0.074809104,0.173705958,0.191529563,0.978133972,,,,,,,0.000249884,0.000350622,0.000453102,0.008693481,,,,,,,1.541875158,3.595609479,3.971016371,8.946155887,,,,,,,3.094861603,5.843393244,6.648972938,10.49244585,,,,,,,1280.753273,1279.430944,1279.553473,1344.350186,,,,,,,0.072914625,0.066793146,0.070917595,0.080321577,,,,,,,0.035298593,0.035298592,0.035298581,0.035298565,,,,,,,2.020166259,2.235821881,2.2646632,6.480989798,,,,,,,0.000841836,0.001181217,0.001526469,0.034333409,,,,,,,0.084310559,0.085334867,0.086376955,0.186601383,,,,,,,0.012880954,0.013787101,0.014708931,0.10336943,,,,,,,0.006780935,0.006773932,0.006774582,0.007117648,,,,,,,0.075388347,0.175766262,0.193831128,0.983462843,,,,,,,0.000244789,0.000342143,0.000441959,0.008303418,,,,,,,1.636871101,3.868584891,4.276638534,9.351033762,,,,,,,3.130898483,5.88701868,6.696993017,10.3932772,,,,,,,1272.860389,1271.481321,1271.653659,1336.151644,,,,,,,0.077330512,0.07094743,0.075248126,0.085054126,,,,,,,0.035271458,0.035271469,0.035271463,0.035271486,,,,,,,1.993555986,2.204210914,2.232363932,6.371697672,,,,,,,0.000824671,0.001152653,0.001488926,0.032783435,,,,,,,0.093039036,0.094029034,0.095043967,0.190647276,,,,,,,0.013946979,0.014822703,0.015720553,0.100293056,,,,,,,0.006739146,0.006731844,0.006732755,0.007074243,,,,,,,0.080032724,0.189112273,0.208748807,1.01572419,,,,,,,0.000245718,0.000345033,0.000445917,0.008714969,,,,,,,1.451842583,3.335998065,3.681118793,8.508775122,,,,,,,3.040165909,5.749757058,6.543124055,10.40745787,,,,,,,1276.146858,1274.723054,1274.744542,1339.100831,,,,,,,0.069373339,0.063428598,0.067433905,0.076566421,,,,,,,0.035042347,0.035042347,0.035042343,0.035042351,,,,,,,2.014709937,2.232363341,2.261492231,6.472072066,,,,,,,0.000827801,0.00116239,0.00150226,0.034426489,,,,,,,0.076944139,0.077954014,0.078979814,0.179563252,,,,,,,0.011918792,0.012812148,0.013719602,0.102697629,,,,,,,0.006756546,0.006749009,0.006749123,0.007089856,,,,,,,0.070985342,0.163072706,0.179679912,0.944726376,,,,,,,0.000244019,0.000341221,0.000440789,0.008318922,,,,,,,1.603400948,3.79789272,4.197093323,9.235473682,,,,,,,3.116646729,5.863973281,6.670972432,10.37955448,,,,,,,1296.652717,1295.114405,1294.816268,1359.553861,,,,,,,0.076378421,0.070059923,0.074317093,0.084023853,,,,,,,0.035216152,0.035216155,0.035216154,0.035216177,,,,,,,1.993170297,2.204341878,2.232569396,6.373678658,,,,,,,0.000822079,0.001149546,0.001484986,0.032846659,,,,,,,0.091249284,0.092237713,0.093250136,0.18905881,,,,,,,0.01371487,0.014589208,0.015484841,0.100238967,,,,,,,0.006865114,0.00685697,0.00685539,0.007198144,,,,,,,0.078399624,0.185659186,0.204868862,1.005687748,,,,,,,0.000242472,0.000339329,0.000439295,0.008478488,,,,,,,1.501246486,3.513086571,3.863421974,8.755244502,,,,,,,3.053914508,5.767445064,6.560737534,10.35396921,,,,,,,1285.88374,1286.748396,1284.170443,1348.499988,,,,,,,0.07168106,0.065853893,0.069718864,0.078958629,,,,,,,0.035014669,0.035009867,0.035014663,0.035014665,,,,,,,1.998604082,2.21100217,2.24171041,6.409467381,,,,,,,0.000816865,0.001143174,0.00147995,0.033486777,,,,,,,0.082242807,0.083683719,0.084244164,0.182024493,,,,,,,0.012564165,0.013493209,0.01433461,0.100832937,,,,,,,0.006808097,0.006812676,0.006799027,0.00713962,,,,,,,0.073403555,0.171733317,0.188580723,0.964658962,,,,,,,0.000248795,0.000348812,0.000450724,0.008667193,,,,,,,1.519885267,3.553100997,3.923086074,8.868477954,,,,,,,3.092732262,5.835381859,6.63985621,10.46349321,,,,,,,1311.80474,1310.180571,1309.732339,1374.924727,,,,,,,0.072849552,0.066672663,0.070834397,0.080323466,,,,,,,0.03525285,0.035252835,0.035252835,0.035252843,,,,,,,2.016960397,2.2327613,2.261624351,6.468067906,,,,,,,0.000838168,0.00117512,0.001518455,0.034230465,,,,,,,0.083516092,0.084533061,0.085569353,0.185503826,,,,,,,0.012772915,0.013672572,0.014589286,0.102993266,,,,,,,0.006945338,0.006936738,0.006934365,0.007279525,,,,,,,0.074315948,0.173690502,0.191494,0.976165566,,,,,,,0.000248569,0.000348527,0.00045036,0.008599117,,,,,,,1.558067098,3.65370279,4.035844394,9.033250019,,,,,,,3.099023571,5.846868382,6.65262097,10.47117321,,,,,,,1293.796231,1292.361551,1292.238537,1357.190957,,,,,,,0.073835682,0.067673672,0.071825408,0.081291681,,,,,,,0.035278375,0.035278379,0.035278384,0.035278381,,,,,,,2.013516159,2.227894957,2.256560288,6.456025148,,,,,,,0.000837407,0.001174159,0.00151723,0.033958487,,,,,,,0.086238718,0.087255133,0.088290613,0.187397755,,,,,,,0.013114739,0.014013874,0.014929879,0.10260196,,,,,,,0.00684999,0.006842396,0.006841743,0.007185633,,,,,,,0.076181495,0.178607891,0.196996727,0.990453492,,,,,,,0.000256812,0.000359818,0.000464913,0.008839617,,,,,,,1.581208021,3.721638075,4.11096737,9.172595612,,,,,,,3.156951005,5.946731725,6.766469702,10.60531659,,,,,,,1291.265207,1290.03887,1290.126605,1355.392628,,,,,,,0.075683966,0.069240027,0.073581664,0.083481192,,,,,,,0.035598954,0.035598935,0.035598949,0.03559898,,,,,,,2.037055855,2.253350234,2.282267932,6.52747522,,,,,,,0.000865178,0.001212199,0.001566257,0.03490623,,,,,,,0.088004791,0.089052159,0.090120821,0.191973428,,,,,,,0.01340087,0.014327411,0.015272763,0.105373468,,,,,,,0.006836589,0.006830098,0.006830562,0.007176112,,,,,,,0.077314579,0.18193055,0.200664971,1.004440517,,,,, +Bus,CNG,2015,,,0.000175318,0.000277745,0.000370105,0.001805973,,,,,,,1.198547042,2.70462794,3.201428016,4.583323562,,,,,,,3.354776917,6.303834243,7.299305562,7.281599413,,,,,,,1268.576301,1268.73757,1268.945358,1279.701708,,,,,,,0.063111418,0.066674344,0.070865847,0.079510731,,,,,,,0.035321175,0.035320426,0.035319699,0.03533352,,,,,,,1.307845081,1.497295623,1.559433207,2.827150853,,,,,,,0.000590641,0.00093571,0.001246872,0.006784624,,,,,,,0.082283969,0.083325474,0.084264619,0.101146198,,,,,,,0.012050317,0.012971655,0.013802454,0.028736242,,,,,,,0.006716467,0.006717318,0.00671842,0.006775369,,,,,,,0.057860853,0.130568147,0.154551573,0.309636524,,,,,,,0.000174083,0.000275824,0.000367562,0.001789277,,,,,,,1.208146067,2.735807889,3.239439985,4.631949667,,,,,,,3.34380777,6.284747668,7.27697786,7.259263578,,,,,,,1276.575005,1276.603547,1276.657513,1287.229086,,,,,,,0.063270468,0.066765576,0.070877277,0.079357575,,,,,,,0.035266131,0.035265404,0.035264664,0.035278573,,,,,,,1.303375765,1.491844991,1.553659705,2.817152619,,,,,,,0.00058648,0.000929239,0.001238302,0.006720979,,,,,,,0.083539822,0.084574353,0.085507169,0.102220825,,,,,,,0.012199143,0.013114317,0.013939514,0.028724701,,,,,,,0.006758812,0.006758965,0.006759251,0.006815222,,,,,,,0.058324264,0.132073318,0.156386579,0.312441073,,,,,,,0.000169667,0.000268626,0.00035788,0.001720938,,,,,,,1.282543797,2.942007447,3.489245293,4.94993322,,,,,,,3.378941098,6.331610863,7.3290103,7.290291697,,,,,,,1268.735309,1268.809378,1268.916232,1279.464147,,,,,,,0.067274223,0.070918712,0.075206185,0.084048899,,,,,,,0.035244262,0.035243644,0.03524303,0.035254687,,,,,,,1.286306818,1.471034354,1.531634592,2.774738083,,,,,,,0.000571602,0.000904991,0.001205684,0.00645838,,,,,,,0.092275393,0.093281661,0.094189209,0.110200889,,,,,,,0.013271303,0.014161455,0.014964309,0.029128589,,,,,,,0.006717306,0.006717699,0.006718263,0.00677411,,,,,,,0.06191586,0.142027833,0.168446207,0.330545695,,,,,,,0.000171343,0.000271521,0.000361844,0.001782797,,,,,,,1.137093776,2.54034612,3.003296847,4.324171365,,,,,,,3.285904941,6.183839752,7.16109297,7.153867262,,,,,,,1271.864292,1271.805198,1271.759092,1282.194312,,,,,,,0.060007653,0.06340183,0.067394827,0.075630213,,,,,,,0.035008358,0.035007589,0.035006814,0.035021379,,,,,,,1.299781325,1.489258228,1.551396792,2.813179675,,,,,,,0.00057725,0.000914744,0.00121904,0.006701989,,,,,,,0.076188084,0.077206732,0.078125169,0.094840201,,,,,,,0.011249837,0.012150952,0.012963422,0.027749915,,,,,,,0.006733873,0.00673356,0.006733316,0.006788564,,,,,,,0.054894128,0.122637273,0.144986636,0.294207081,,,,,,,0.000169233,0.000267961,0.000357004,0.001721543,,,,,,,1.257593752,2.886375852,3.422323842,4.862979688,,,,,,,3.364239198,6.306826683,7.300597423,7.265126673,,,,,,,1292.729263,1292.404688,1292.049257,1302.038432,,,,,,,0.066423931,0.070031534,0.074275604,0.083028793,,,,,,,0.035188331,0.035187713,0.035187072,0.035198991,,,,,,,1.286034724,1.471055176,1.531748969,2.775170963,,,,,,,0.000570139,0.000902751,0.001202734,0.006461927,,,,,,,0.09048912,0.091493055,0.092398438,0.108430066,,,,,,,0.013042212,0.01393029,0.014731253,0.028913194,,,,,,,0.006844343,0.006842622,0.006840742,0.006893629,,,,,,,0.060711395,0.139342186,0.165215552,0.325474198,,,,,,,0.000168421,0.000267328,0.000356221,0.001741566,,,,,,,1.180800622,2.661687437,3.150606449,4.512050198,,,,,,,3.301218321,6.201457123,7.180255935,7.162593788,,,,,,,1284.211813,1281.555211,1281.260979,1291.327413,,,,,,,0.062388949,0.065639371,0.069679248,0.078011367,,,,,,,0.034978507,0.034982275,0.03498155,0.034995129,,,,,,,1.288309408,1.476513839,1.537874322,2.787775484,,,,,,,0.000567405,0.000900617,0.001200097,0.006543447,,,,,,,0.081945801,0.082495496,0.083399391,0.099688533,,,,,,,0.011955883,0.012787771,0.013587382,0.027997012,,,,,,,0.006799244,0.00678518,0.006783624,0.006836921,,,,,,,0.057004133,0.128495145,0.152098152,0.304981799,,,,,,,0.00017314,0.000274286,0.000365494,0.001782508,,,,,,,1.191952619,2.701866361,3.198696792,4.577840872,,,,,,,3.340260001,6.275956585,7.266740969,7.248014305,,,,,,,1307.785757,1307.329969,1306.825356,1316.749742,,,,,,,0.063118059,0.066644742,0.070793683,0.079350636,,,,,,,0.035220913,0.03522018,0.035219454,0.035233155,,,,,,,1.301307993,1.489767154,1.551579705,2.812793621,,,,,,,0.000583302,0.00092406,0.001231335,0.006696206,,,,,,,0.082746679,0.083775172,0.084702643,0.101362067,,,,,,,0.012092396,0.013002229,0.013822654,0.028559882,,,,,,,0.00692406,0.006921646,0.006918973,0.006971518,,,,,,,0.057542504,0.130434826,0.154419719,0.309184237,,,,,,,0.000173004,0.000274076,0.000365215,0.001772688,,,,,,,1.221421612,2.778651313,3.291533023,4.69825303,,,,,,,3.347650035,6.288460062,7.280848307,7.259960681,,,,,,,1289.731271,1289.551317,1289.366122,1299.640587,,,,,,,0.064127702,0.067645905,0.071784874,0.08032126,,,,,,,0.035246769,0.035246029,0.035245331,0.035258872,,,,,,,1.2990995,1.486615624,1.548120266,2.806840926,,,,,,,0.000582843,0.00092335,0.001230397,0.00665727,,,,,,,0.085470455,0.086498112,0.087424907,0.103968193,,,,,,,0.012435056,0.013344209,0.014164029,0.028798557,,,,,,,0.006828469,0.006827516,0.006826535,0.006880935,,,,,,,0.058965127,0.134141662,0.158901489,0.316238541,,,,,,,0.000178575,0.000282863,0.000376908,0.001824829,,,,,,,1.240224539,2.829168141,3.351949941,4.780442363,,,,,,,3.407063314,6.395725733,7.405186517,7.380242215,,,,,,,1287.284763,1287.286705,1287.308677,1297.841414,,,,,,,0.065531973,0.069211141,0.073539489,0.082466354,,,,,,,0.035567873,0.035567153,0.035566443,0.035579767,,,,,,,1.314354605,1.503724911,1.565841873,2.838580255,,,,,,,0.000601614,0.000952954,0.00126979,0.006851826,,,,,,,0.087209614,0.088269998,0.089226337,0.106242335,,,,,,,0.01269719,0.013635268,0.014481221,0.029534019,,,,,,,0.006815514,0.006815523,0.006815643,0.00687141,,,,,,,0.059872867,0.136580435,0.161818178,0.321451246,,,, +Bus,CNG,2020,,,,0.000173934,0.000278216,0.000369828,0.000590853,,,,,,,1.196329806,2.738110513,3.197143777,3.393098059,,,,,,,3.347764444,6.363390967,7.286338979,7.207043505,,,,,,,1265.192211,1265.381411,1265.627007,1268.095736,,,,,,,0.063183144,0.066759246,0.071019651,0.07944126,,,,,,,0.035282326,0.035282318,0.035282341,0.035302004,,,,,,,1.304759475,1.498773031,1.556196029,1.742368732,,,,,,,0.000585976,0.000937298,0.001245939,0.001990554,,,,,,,0.082269846,0.083330194,0.084261822,0.086509243,,,,,,,0.012037854,0.012975885,0.013799968,0.015788094,,,,,,,0.006698548,0.00669955,0.00670085,0.00671392,,,,,,,0.057753803,0.132184525,0.154344739,0.164351126,,,,,,,0.000172705,0.000276288,0.000367281,0.000586752,,,,,,,1.205924031,2.769839779,3.235145102,3.432742899,,,,,,,3.336746425,6.343998926,7.263886519,7.183530966,,,,,,,1273.183271,1273.240367,1273.333065,1275.566356,,,,,,,0.063340843,0.066848899,0.071028096,0.07928935,,,,,,,0.035227136,0.035227124,0.035227134,0.035246911,,,,,,,1.30028465,1.493292114,1.55041532,1.735912621,,,,,,,0.000581837,0.000930804,0.001237358,0.001976738,,,,,,,0.083525809,0.084579058,0.085504343,0.087736011,,,,,,,0.012186747,0.013118491,0.013936997,0.015911153,,,,,,,0.006740857,0.006741158,0.006741649,0.006753474,,,,,,,0.058216973,0.133716307,0.15617935,0.166271652,,,,,,,0.000168328,0.000269077,0.000357608,0.00057151,,,,,,,1.28032889,2.979373944,3.484969139,3.697834881,,,,,,,3.37195225,6.391513088,7.316316188,7.238173304,,,,,,,1265.520205,1265.617643,1265.757196,1267.996081,,,,,,,0.067347627,0.071005644,0.075363473,0.083977832,,,,,,,0.035211492,0.035211499,0.035211493,0.035228098,,,,,,,1.283371984,1.472578576,1.528576614,1.711353859,,,,,,,0.000567092,0.000906511,0.001204771,0.001925387,,,,,,,0.092261781,0.093286237,0.094186464,0.096361458,,,,,,,0.013259261,0.014165514,0.014961869,0.016885921,,,,,,,0.006700285,0.006700799,0.00670154,0.006713393,,,,,,,0.061808908,0.143831758,0.168239802,0.179111692,,,,,,,0.000169978,0.000271967,0.000361553,0.000577576,,,,,,,1.134856644,2.571246287,2.999021849,3.183224981,,,,,,,3.278694025,6.241788729,7.147745538,7.067793761,,,,,,,1268.362599,1268.332703,1268.326543,1270.47686,,,,,,,0.060076009,0.063482803,0.067541339,0.075564035,,,,,,,0.034967393,0.034967401,0.034967403,0.034988148,,,,,,,1.296606677,1.490629348,1.548053412,1.733344742,,,,,,,0.000572651,0.000916245,0.00121806,0.001945824,,,,,,,0.076174207,0.077211277,0.078122219,0.08031878,,,,,,,0.011237558,0.012154959,0.012960809,0.014903945,,,,,,,0.006715332,0.006715175,0.006715143,0.006726527,,,,,,,0.054786149,0.124129053,0.14478024,0.154185461,,,,,,,0.000167895,0.000268409,0.00035673,0.000570085,,,,,,,1.255346512,2.92297142,3.417989957,3.624217074,,,,,,,3.35721344,6.366394582,7.287813728,7.209486476,,,,,,,1289.476374,1289.174761,1288.858939,1290.391428,,,,,,,0.066496566,0.070117502,0.074431269,0.082958464,,,,,,,0.035154804,0.035154795,0.035154798,0.035171792,,,,,,,1.28307444,1.47257423,1.528660616,1.711470123,,,,,,,0.000565631,0.000904258,0.00120181,0.001920587,,,,,,,0.090475478,0.091497539,0.092395655,0.094565088,,,,,,,0.013030177,0.013934309,0.014728786,0.016647923,,,,,,,0.00682712,0.006825522,0.006823851,0.006831963,,,,,,,0.060602877,0.141108867,0.165006295,0.175546913,,,,,,,0.000167402,0.000267764,0.000355933,0.000568682,,,,,,,1.174643505,2.694651666,3.146292044,3.337256108,,,,,,,3.292711922,6.259616839,7.167037278,7.087541027,,,,,,,1278.417552,1278.172931,1277.920414,1279.625077,,,,,,,0.062274556,0.065721338,0.069827445,0.077944394,,,,,,,0.034944985,0.034944984,0.034944976,0.034964249,,,,,,,1.286326945,1.477918235,1.534621708,1.718260255,,,,,,,0.000563972,0.000902088,0.001199127,0.001915859,,,,,,,0.08147946,0.082499956,0.083396494,0.085559776,,,,,,,0.011888924,0.012791701,0.013584795,0.015498477,,,,,,,0.006768569,0.006767274,0.006765936,0.006774961,,,,,,,0.056706897,0.130086547,0.151889851,0.161647023,,,,,,,0.000171769,0.000274746,0.000365214,0.000583495,,,,,,,1.189703371,2.735451873,3.194353176,3.38738098,,,,,,,3.333198077,6.335119596,7.253700747,7.174331843,,,,,,,1304.375318,1303.943958,1303.482502,1304.872728,,,,,,,0.063189098,0.066728826,0.070945877,0.079281857,,,,,,,0.035182599,0.035182571,0.035182591,0.035202031,,,,,,,1.298225718,1.491223491,1.548345284,1.733590187,,,,,,,0.000578684,0.000925611,0.001230391,0.001965765,,,,,,,0.082732785,0.0837798,0.084699778,0.086919358,,,,,,,0.012080076,0.013006353,0.013820132,0.015783597,,,,,,,0.006906,0.006903719,0.006901277,0.006908635,,,,,,,0.057433895,0.132056226,0.154210052,0.16407523,,,,,,,0.000171634,0.000274536,0.000364936,0.000583046,,,,,,,1.219187654,2.813436018,3.287219099,3.48680376,,,,,,,3.340591336,6.347737748,7.267787135,7.187886927,,,,,,,1286.361816,1286.210504,1286.064396,1287.914063,,,,,,,0.064198543,0.067729846,0.07193673,0.080252654,,,,,,,0.035208722,0.035208731,0.035208737,0.035228012,,,,,,,1.296032917,1.488069369,1.544904498,1.729728627,,,,,,,0.00057823,0.000924901,0.001229456,0.001964251,,,,,,,0.085456453,0.086502857,0.087422065,0.089639867,,,,,,,0.012422731,0.013348355,0.014161519,0.01612343,,,,,,,0.00681063,0.006809829,0.006809055,0.006818848,,,,,,,0.058857266,0.135820983,0.158693202,0.168890588,,,,,,,0.000177174,0.000283355,0.000376641,0.000601766,,,,,,,1.237994009,2.86473973,3.347595868,3.549570769,,,,,,,3.400206178,6.456497805,7.392474136,7.313380191,,,,,,,1283.981601,1284.012593,1284.074753,1286.182622,,,,,,,0.065606089,0.069298866,0.073698241,0.082394662,,,,,,,0.035530347,0.035530321,0.035530354,0.035549345,,,,,,,1.311333483,1.505276354,1.562676748,1.749560172,,,,,,,0.000596892,0.000954611,0.001268891,0.002027317,,,,,,,0.087195371,0.088274983,0.089223635,0.091512683,,,,,,,0.012684585,0.013639689,0.014478829,0.016503826,,,,,,,0.00679803,0.006798192,0.00679852,0.006809682,,,,,,,0.059765141,0.13829767,0.161608024,0.171931366,,, +Bus,CNG,2025,,,,,0.000173993,0.000277997,0.000369852,0.000553187,,,,,,,1.196371635,2.725508879,3.197198775,3.204894911,,,,,,,3.348237563,6.33975892,7.286962587,7.368372439,,,,,,,1265.176856,1265.372311,1265.610425,1266.748,,,,,,,0.063232992,0.066859297,0.071085897,0.07944882,,,,,,,0.035282334,0.035282333,0.035282328,0.035287342,,,,,,,1.304759313,1.497174147,1.556195004,1.556629753,,,,,,,0.000586175,0.00093656,0.001246017,0.001863667,,,,,,,0.08227043,0.083328008,0.08426203,0.086126272,,,,,,,0.012038384,0.012973918,0.013800174,0.015449303,,,,,,,0.006698467,0.0066995,0.006700762,0.006706784,,,,,,,0.057755822,0.13157623,0.154347398,0.154718935,,,,,,,0.000172763,0.00027607,0.000367304,0.000549402,,,,,,,1.205961924,2.757043659,3.235197146,3.242169262,,,,,,,3.337211498,6.320412575,7.264501554,7.344406693,,,,,,,1273.169154,1273.231312,1273.31868,1274.21777,,,,,,,0.063389779,0.066946982,0.071093095,0.079296744,,,,,,,0.03522713,0.035227127,0.035227126,0.035232155,,,,,,,1.300284528,1.491700575,1.550415271,1.550849954,,,,,,,0.000582034,0.000930069,0.001237436,0.001850917,,,,,,,0.083526394,0.084576839,0.085504578,0.08735619,,,,,,,0.012187271,0.013116534,0.013937202,0.015575201,,,,,,,0.006740782,0.00674111,0.006741573,0.006746334,,,,,,,0.058218802,0.133098559,0.156181736,0.156518401,,,,,,,0.000168386,0.000268868,0.000357632,0.0005348,,,,,,,1.280371438,2.96547608,3.485026508,3.492777183,,,,,,,3.372438601,6.367873018,7.316959847,7.400153696,,,,,,,1265.505705,1265.607458,1265.7417,1266.71065,,,,,,,0.067398646,0.071107899,0.075431272,0.083985583,,,,,,,0.035211505,0.035211487,0.035211486,0.035215725,,,,,,,1.283372261,1.471018451,1.528576557,1.528987189,,,,,,,0.000567288,0.000905805,0.001204852,0.001801722,,,,,,,0.092262392,0.093284078,0.094186702,0.095988234,,,,,,,0.013259785,0.014163627,0.014962084,0.016555737,,,,,,,0.006700205,0.006700746,0.006701458,0.006706589,,,,,,,0.061810986,0.14316083,0.168242538,0.168616703,,,,,,,0.000170036,0.000271751,0.000361575,0.000540863,,,,,,,1.134897961,2.559508873,2.999075846,3.006606881,,,,,,,3.279144931,6.218527654,7.148341506,7.226026658,,,,,,,1268.348026,1268.323029,1268.3128,1269.086881,,,,,,,0.060123516,0.063578006,0.067604421,0.075571224,,,,,,,0.034967395,0.034967386,0.034967389,0.034972687,,,,,,,1.296606561,1.489028934,1.548052663,1.548501688,,,,,,,0.000572845,0.00091552,0.001218135,0.001822148,,,,,,,0.07617477,0.077209042,0.078122419,0.079945496,,,,,,,0.011238073,0.012153017,0.012961004,0.014573726,,,,,,,0.006715256,0.006715124,0.006715069,0.006719167,,,,,,,0.054788125,0.123562428,0.144782873,0.145146401,,,,,,,0.000167953,0.000268199,0.000356753,0.000533503,,,,,,,1.255368756,2.909280631,3.418020996,3.422428886,,,,,,,3.357693392,6.342829735,7.288449717,7.370831504,,,,,,,1289.463614,1289.167734,1288.849217,1289.102003,,,,,,,0.066547072,0.070218784,0.074498361,0.082966119,,,,,,,0.035154795,0.035154799,0.035154795,0.035159127,,,,,,,1.283074549,1.4710122,1.528660014,1.529074464,,,,,,,0.000565826,0.000903553,0.00120189,0.00179735,,,,,,,0.090476058,0.091495423,0.092395865,0.094193134,,,,,,,0.013030696,0.013932429,0.014728998,0.016318878,,,,,,,0.006827052,0.006825484,0.006823797,0.006825136,,,,,,,0.060603972,0.140447928,0.165007755,0.165220513,,,,,,,0.000167459,0.000267553,0.000355956,0.000532405,,,,,,,1.174670847,2.682190227,3.146327441,3.151551568,,,,,,,3.293166706,6.236337369,7.167638584,7.246197961,,,,,,,1278.404238,1278.165271,1277.909967,1278.275788,,,,,,,0.062322603,0.065817667,0.069891321,0.077951646,,,,,,,0.034944967,0.034944975,0.034944966,0.034949875,,,,,,,1.286326824,1.476337898,1.5346211,1.535057889,,,,,,,0.000564164,0.000901378,0.001199203,0.001793652,,,,,,,0.081479961,0.082497785,0.083396699,0.085190911,,,,,,,0.011889432,0.012789799,0.013584991,0.015172182,,,,,,,0.006768499,0.006767231,0.006765882,0.006767819,,,,,,,0.056708216,0.129484936,0.151891553,0.152143723,,,,,,,0.000171828,0.00027453,0.000365237,0.000546282,,,,,,,1.18972516,2.722765738,3.194382133,3.198668221,,,,,,,3.333666972,6.311589555,7.254320602,7.334929309,,,,,,,1304.362306,1303.93853,1303.473737,1303.52451,,,,,,,0.063238434,0.066827803,0.071011392,0.079289296,,,,,,,0.035182587,0.035182585,0.035182576,0.03518754,,,,,,,1.298225065,1.489632861,1.548344107,1.548778829,,,,,,,0.000578881,0.000924883,0.001230469,0.001840403,,,,,,,0.082733359,0.083777702,0.0847,0.086540956,,,,,,,0.012080594,0.013004427,0.013820341,0.015448873,,,,,,,0.006905932,0.006903687,0.006901227,0.006901498,,,,,,,0.057434955,0.131443775,0.154211374,0.154418376,,,,,,,0.000171693,0.00027432,0.000364959,0.000545869,,,,,,,1.21921916,2.800368782,3.287259199,3.292924391,,,,,,,3.34106306,6.324155659,7.26841039,7.348827031,,,,,,,1286.349797,1286.20167,1286.052703,1286.578838,,,,,,,0.064247839,0.067828546,0.072002142,0.080260106,,,,,,,0.035208755,0.035208723,0.035208739,0.035213645,,,,,,,1.29603427,1.486485055,1.544904978,1.545335885,,,,,,,0.000578427,0.000924173,0.001229534,0.001839013,,,,,,,0.085457152,0.086500618,0.087422307,0.08926189,,,,,,,0.012423273,0.013346407,0.01416173,0.015789042,,,,,,,0.006810566,0.006809783,0.006808994,0.006811779,,,,,,,0.058858802,0.135190128,0.158695129,0.158968643,,,,,,,0.000177234,0.000283133,0.000376665,0.000563347,,,,,,,1.23801539,2.851385084,3.347622276,3.351868395,,,,,,,3.400694975,6.432572329,7.393118013,7.477095254,,,,,,,1283.969283,1284.00589,1284.060411,1284.875222,,,,,,,0.065657564,0.069402181,0.073766596,0.082402466,,,,,,,0.035530337,0.035530344,0.035530311,0.035535179,,,,,,,1.311332468,1.503678166,1.562676477,1.563101868,,,,,,,0.000597096,0.000953862,0.001268972,0.001897893,,,,,,,0.087195962,0.088272815,0.089223792,0.0911221,,,,,,,0.012685124,0.013637694,0.014479027,0.016158266,,,,,,,0.006797962,0.006798154,0.006798447,0.006802758,,,,,,,0.059766214,0.137653007,0.161609198,0.161814227,, +Bus,CNG,2030,,,,,,0.000173907,0.000278021,0.000369871,0.000549996,,,,,,,1.1964575,2.730696734,3.19724536,3.204202759,,,,,,,3.349192344,6.350397569,7.28747714,7.365315626,,,,,,,1265.191781,1265.383862,1265.620573,1266.260043,,,,,,,0.063333348,0.06693376,0.071139397,0.079330842,,,,,,,0.035282332,0.035282348,0.035282336,0.035282333,,,,,,,1.304759614,1.497821022,1.556195231,1.55619535,,,,,,,0.000585887,0.000936643,0.001246081,0.001852914,,,,,,,0.082269595,0.083328303,0.084262244,0.086093824,,,,,,,0.01203762,0.012974145,0.013800345,0.015420597,,,,,,,0.006698544,0.006699562,0.006700814,0.006704201,,,,,,,0.057759995,0.131826681,0.154349646,0.154685516,,,,,,,0.000172678,0.000276094,0.000367323,0.000546231,,,,,,,1.206038703,2.762298342,3.235238055,3.241487543,,,,,,,3.338146192,6.331006926,7.265003661,7.341360464,,,,,,,1273.182909,1273.24177,1273.328925,1273.733615,,,,,,,0.063488194,0.067020017,0.071145573,0.079181018,,,,,,,0.035227127,0.035227117,0.035227135,0.035227131,,,,,,,1.300284737,1.492343115,1.550415576,1.550415667,,,,,,,0.000581747,0.00093015,0.001237498,0.001840232,,,,,,,0.083525536,0.0845771,0.085504792,0.087323974,,,,,,,0.012186505,0.013116748,0.013937371,0.015546675,,,,,,,0.006740855,0.006741168,0.006741628,0.00674377,,,,,,,0.058222506,0.133352289,0.156183783,0.156485538,,,,,,,0.000168306,0.000268893,0.000357652,0.000531715,,,,,,,1.280457137,2.971186427,3.485071907,3.492083406,,,,,,,3.373412406,6.378535613,7.317478482,7.397101831,,,,,,,1265.519744,1265.619067,1265.751989,1266.244671,,,,,,,0.067501246,0.071184037,0.075485965,0.08386489,,,,,,,0.035211485,0.0352115,0.035211492,0.035211484,,,,,,,1.28337155,1.471648323,1.528576532,1.528576427,,,,,,,0.000567016,0.00090589,0.001204917,0.001791327,,,,,,,0.092261543,0.093284358,0.094186876,0.095956818,,,,,,,0.013259059,0.014163851,0.014962258,0.016527978,,,,,,,0.006700283,0.006700808,0.006701509,0.006704119,,,,,,,0.061815114,0.143436454,0.168244756,0.168583245,,,,,,,0.000169951,0.000271775,0.000361593,0.000537737,,,,,,,1.134981152,2.564344775,2.999120796,3.005918183,,,,,,,3.280053307,6.228962467,7.1488254,7.222981789,,,,,,,1268.361998,1268.334629,1268.323177,1268.588725,,,,,,,0.060219082,0.063648954,0.067655394,0.075458842,,,,,,,0.034967391,0.034967407,0.034967391,0.034967398,,,,,,,1.296606491,1.489675699,1.548052788,1.548052871,,,,,,,0.00057256,0.000915598,0.001218196,0.001811617,,,,,,,0.076173912,0.077209316,0.07812263,0.079913727,,,,,,,0.011237312,0.012153231,0.012961168,0.014545608,,,,,,,0.006715331,0.006715185,0.006715127,0.006716531,,,,,,,0.054792157,0.123795862,0.144785013,0.145113205,,,,,,,0.000167872,0.000268224,0.000356772,0.000530424,,,,,,,1.255414961,2.91486126,3.418045582,3.421784374,,,,,,,3.358660214,6.353447924,7.288965671,7.367782656,,,,,,,1289.476661,1289.177122,1288.860872,1288.644993,,,,,,,0.06664867,0.070294107,0.074552561,0.082846656,,,,,,,0.035154812,0.035154781,0.035154808,0.035154801,,,,,,,1.283074754,1.471642226,1.528660154,1.528660033,,,,,,,0.000565555,0.000903636,0.001201955,0.001786977,,,,,,,0.090475265,0.091495586,0.09239609,0.094161813,,,,,,,0.013029978,0.013932649,0.014729169,0.016291183,,,,,,,0.006827122,0.006825536,0.006823859,0.006822717,,,,,,,0.06060617,0.140717305,0.165008941,0.165189435,,,,,,,0.000167377,0.000267577,0.000355974,0.000529329,,,,,,,1.17472642,2.687284812,3.146358113,3.150896493,,,,,,,3.294086989,6.246786154,7.168132587,7.243155833,,,,,,,1278.417011,1278.174753,1277.920997,1277.797954,,,,,,,0.062419266,0.065889412,0.069942906,0.077837932,,,,,,,0.034944976,0.034944977,0.034944971,0.034944975,,,,,,,1.286326723,1.476975662,1.534621287,1.53462146,,,,,,,0.000563886,0.000901457,0.001199264,0.001783286,,,,,,,0.08147913,0.082498019,0.083396898,0.085159618,,,,,,,0.01188869,0.012790009,0.013585161,0.015144505,,,,,,,0.006768565,0.006767284,0.006765939,0.006765287,,,,,,,0.056710882,0.129730918,0.151893043,0.152112104,,,,,,,0.000171743,0.000274554,0.000365256,0.000543128,,,,,,,1.189769633,2.727939681,3.194407088,3.19802505,,,,,,,3.33461027,6.322170945,7.254828363,7.331874377,,,,,,,1304.374506,1303.947925,1303.485836,1303.049878,,,,,,,0.063337748,0.066901491,0.071064437,0.079172525,,,,,,,0.03518259,0.035182585,0.03518259,0.035182586,,,,,,,1.298225278,1.490275082,1.548344725,1.548344677,,,,,,,0.000578597,0.000924964,0.001230533,0.001829779,,,,,,,0.08273254,0.083777897,0.084700214,0.086508898,,,,,,,0.012079837,0.013004636,0.013820515,0.015420504,,,,,,,0.006905999,0.00690374,0.006901294,0.006898985,,,,,,,0.057437114,0.131693531,0.154212673,0.154387223,,,,,,,0.000171608,0.000274344,0.000364978,0.000542718,,,,,,,1.219279567,2.805716278,3.287291491,3.29226118,,,,,,,3.342002998,6.33475823,7.268911919,7.345774276,,,,,,,1286.362588,1286.212896,1286.063685,1286.103142,,,,,,,0.064346893,0.067902078,0.072054971,0.080143615,,,,,,,0.035208752,0.035208735,0.035208742,0.035208736,,,,,,,1.296033867,1.487125116,1.544904861,1.544904882,,,,,,,0.000578143,0.000924254,0.001229597,0.001828397,,,,,,,0.085456275,0.086500896,0.087422501,0.089229816,,,,,,,0.012422511,0.013346628,0.014161899,0.015760699,,,,,,,0.006810635,0.006809841,0.006809051,0.006809261,,,,,,,0.058861721,0.135448285,0.158696728,0.158936619,,,,,,,0.000177148,0.000283158,0.000376684,0.0005601,,,,,,,1.238058759,2.856827547,3.347646232,3.351222519,,,,,,,3.401678604,6.443356767,7.393640369,7.474031519,,,,,,,1283.98131,1284.015119,1284.070276,1284.406373,,,,,,,0.065761151,0.069479001,0.0738219,0.082280637,,,,,,,0.035530332,0.035530332,0.03553032,0.035530342,,,,,,,1.311332084,1.504323311,1.56267658,1.562677365,,,,,,,0.000596804,0.000953946,0.001269037,0.001886956,,,,,,,0.087195072,0.08827298,0.089223985,0.091089101,,,,,,,0.012684345,0.013637917,0.014479208,0.016129065,,,,,,,0.006798028,0.0067982,0.006798496,0.006800277,,,,,,,0.059768316,0.137915745,0.161610403,0.161783053, +Bus,CNG,2035,,,,,,,0.000174092,0.000277996,0.000369869,0.00054914,,,,,,,1.196515617,2.727490815,3.197239984,3.204098738,,,,,,,3.349842533,6.344574053,7.287422491,7.364154668,,,,,,,1265.201088,1265.390811,1265.620178,1266.235473,,,,,,,0.063401758,0.066983692,0.071133906,0.079208776,,,,,,,0.035282335,0.035282346,0.035282331,0.035282328,,,,,,,1.304759564,1.497411331,1.556195178,1.556194906,,,,,,,0.000586511,0.000936557,0.001246074,0.001850031,,,,,,,0.082271493,0.083328039,0.084262212,0.086085094,,,,,,,0.012039285,0.012973915,0.013800327,0.015412898,,,,,,,0.006698594,0.006699599,0.006700811,0.006704071,,,,,,,0.057762776,0.131671815,0.154349381,0.154680491,,,,,,,0.000172862,0.000276068,0.000367321,0.000545382,,,,,,,1.206090267,2.759041312,3.23523203,3.241394917,,,,,,,3.338783617,6.325193883,7.264950238,7.340224563,,,,,,,1273.191352,1273.248563,1273.328016,1273.710837,,,,,,,0.063555301,0.06706902,0.071140217,0.079061299,,,,,,,0.035227125,0.035227139,0.035227124,0.035227133,,,,,,,1.300284369,1.491935748,1.5504151,1.550415328,,,,,,,0.000582365,0.000930064,0.001237491,0.001837371,,,,,,,0.083527391,0.084576849,0.08550473,0.087315332,,,,,,,0.012188156,0.013116519,0.013937349,0.015539036,,,,,,,0.006740898,0.006741202,0.006741623,0.006743648,,,,,,,0.058225007,0.133194938,0.15618349,0.156481049,,,,,,,0.000168486,0.000268869,0.00035765,0.000530886,,,,,,,1.280516152,2.967647759,3.485068623,3.491980222,,,,,,,3.374078404,6.372718594,7.317428462,7.395916846,,,,,,,1265.529294,1265.625901,1265.75188,1266.220527,,,,,,,0.067571247,0.071235128,0.075480407,0.083740071,,,,,,,0.0352115,0.035211497,0.035211496,0.035211499,,,,,,,1.283372012,1.471248486,1.528576635,1.528576752,,,,,,,0.000567623,0.00090581,0.00120491,0.001788536,,,,,,,0.092263421,0.093284142,0.094186896,0.095948419,,,,,,,0.013260677,0.01416364,0.014962244,0.016520529,,,,,,,0.006700331,0.006700845,0.006701509,0.006703991,,,,,,,0.061817956,0.143265639,0.168244519,0.168578242,,,,,,,0.000170132,0.000271749,0.000361591,0.000536902,,,,,,,1.135037833,2.56135827,2.999115716,3.005816733,,,,,,,3.280672471,6.223222736,7.148776733,7.221876539,,,,,,,1268.370189,1268.34103,1268.323109,1268.566012,,,,,,,0.060284258,0.063696488,0.067650179,0.075342552,,,,,,,0.034967392,0.034967385,0.034967388,0.034967397,,,,,,,1.296606112,1.489265584,1.548052536,1.548052903,,,,,,,0.000573168,0.000915512,0.00121819,0.001808801,,,,,,,0.076175751,0.077209016,0.078122586,0.079905219,,,,,,,0.011238936,0.012152998,0.01296115,0.01453809,,,,,,,0.006715373,0.006715217,0.006715125,0.00671641,,,,,,,0.054794884,0.123651678,0.144784795,0.145108268,,,,,,,0.000168052,0.0002682,0.00035677,0.000529597,,,,,,,1.255445962,2.911367011,3.418042191,3.421728273,,,,,,,3.359316594,6.347650238,7.288912945,7.366608213,,,,,,,1289.483005,1289.183679,1288.860205,1288.62565,,,,,,,0.066717891,0.070344718,0.074547021,0.08272306,,,,,,,0.0351548,0.0351548,0.035154797,0.035154796,,,,,,,1.283074459,1.471242989,1.528660246,1.528659828,,,,,,,0.00056616,0.000903556,0.001201948,0.001784193,,,,,,,0.090477086,0.091495441,0.09239604,0.094153421,,,,,,,0.013031589,0.013932441,0.014729149,0.01628375,,,,,,,0.006827156,0.006825572,0.006823858,0.006822615,,,,,,,0.060607696,0.140548621,0.165008811,0.165186693,,,,,,,0.000167555,0.000267552,0.000355972,0.000528505,,,,,,,1.174764784,2.684106693,3.146355804,3.150828124,,,,,,,3.294713988,6.241044909,7.168082778,7.242037208,,,,,,,1278.42433,1278.180533,1277.921359,1277.778309,,,,,,,0.062485231,0.065937529,0.069937666,0.077720283,,,,,,,0.034944985,0.034944954,0.03494498,0.03494497,,,,,,,1.286327017,1.476570714,1.534622138,1.534621349,,,,,,,0.000564487,0.000901374,0.001199259,0.001780512,,,,,,,0.081480997,0.082497756,0.083396912,0.085151251,,,,,,,0.0118903,0.012789786,0.013585146,0.015137098,,,,,,,0.006768605,0.006767312,0.006765942,0.006765185,,,,,,,0.056712744,0.129577456,0.151892957,0.152108802,,,,,,,0.000171926,0.000274529,0.000365254,0.000542284,,,,,,,1.189799398,2.724700519,3.194404738,3.197971547,,,,,,,3.335253887,6.316371759,7.254776605,7.330728074,,,,,,,1304.381215,1303.953147,1303.48638,1303.032066,,,,,,,0.063405471,0.066950912,0.071059023,0.079051692,,,,,,,0.03518259,0.03518258,0.035182587,0.035182588,,,,,,,1.298224866,1.489868005,1.548345048,1.548344744,,,,,,,0.000579213,0.000924879,0.001230526,0.001826933,,,,,,,0.082734353,0.08377766,0.08470021,0.086500316,,,,,,,0.012081481,0.013004412,0.013820496,0.015412904,,,,,,,0.006906031,0.00690377,0.006901295,0.006898892,,,,,,,0.05743857,0.131537166,0.154212479,0.154384683,,,,,,,0.000171791,0.000274319,0.000364976,0.000541874,,,,,,,1.219320591,2.802384149,3.287287137,3.292187541,,,,,,,3.342644084,6.328945759,7.268858723,7.344630452,,,,,,,1286.369362,1286.218507,1286.062814,1286.083135,,,,,,,0.064414427,0.067951368,0.072049579,0.080023117,,,,,,,0.035208734,0.035208734,0.035208736,0.035208744,,,,,,,1.296033171,1.486719513,1.544904508,1.544904986,,,,,,,0.000578758,0.000924169,0.00122959,0.001825554,,,,,,,0.085458106,0.086500625,0.087422455,0.089221265,,,,,,,0.012424148,0.0133464,0.014161875,0.015753107,,,,,,,0.00681067,0.006809872,0.006809048,0.006809154,,,,,,,0.058863708,0.135287395,0.158696494,0.158933073,,,,,,,0.000177337,0.000283132,0.000376682,0.000559229,,,,,,,1.238089007,2.853416877,3.347643919,3.351169764,,,,,,,3.402350343,6.437470777,7.393591654,7.472832104,,,,,,,1283.989029,1284.020551,1284.069936,1284.385877,,,,,,,0.065831785,0.069530575,0.073816242,0.082154601,,,,,,,0.035530337,0.035530334,0.035530328,0.035530336,,,,,,,1.311332273,1.503913946,1.562677049,1.562678058,,,,,,,0.00059744,0.000953859,0.00126903,0.00188402,,,,,,,0.087196997,0.088272749,0.089224046,0.091080235,,,,,,,0.012686043,0.013637685,0.014479196,0.016121225,,,,,,,0.006798071,0.006798233,0.006798498,0.006800168,,,,,,,0.059769754,0.137751055,0.161610352,0.161780494 +Bus,CNG,2040,,,,,,,,0.000174094,0.000277982,0.000369869,,,,,,,,1.196553678,2.729701504,3.197238916,,,,,,,,3.350268108,6.348845008,7.287427979,,,,,,,,1265.207125,1265.390483,1265.620279,,,,,,,,0.063446561,0.066981904,0.071134676,,,,,,,,0.035282333,0.035282334,0.035282322,,,,,,,,1.304759478,1.497689895,1.556194701,,,,,,,,0.000586517,0.00093651,0.001246075,,,,,,,,0.0822715,0.083327895,0.084262196,,,,,,,,0.012039301,0.012973788,0.013800324,,,,,,,,0.006698626,0.006699597,0.006700813,,,,,,,,0.057764598,0.131778594,0.154349361,,,,,,,,0.000172863,0.000276054,0.000367321,,,,,,,,1.2061249,2.761282872,3.235234141,,,,,,,,3.339202104,6.329450353,7.264959857,,,,,,,,1273.197533,1273.247981,1273.329391,,,,,,,,0.063599267,0.067067228,0.071140983,,,,,,,,0.035227136,0.035227116,0.035227129,,,,,,,,1.300284387,1.492212477,1.550415736,,,,,,,,0.000582371,0.000930017,0.001237493,,,,,,,,0.083527413,0.084576668,0.085504775,,,,,,,,0.012188175,0.013116389,0.013937358,,,,,,,,0.006740931,0.0067412,0.006741631,,,,,,,,0.058226679,0.133303215,0.156183575,,,,,,,,0.000168489,0.000268856,0.00035765,,,,,,,,1.280554021,2.970085517,3.485069266,,,,,,,,3.374512931,6.376993701,7.3174344,,,,,,,,1265.535222,1265.62615,1265.752989,,,,,,,,0.067617078,0.071233321,0.075481155,,,,,,,,0.035211491,0.035211491,0.03521149,,,,,,,,1.283371836,1.471520626,1.528576801,,,,,,,,0.000567632,0.000905765,0.001204911,,,,,,,,0.092263419,0.093283966,0.094186885,,,,,,,,0.013260705,0.014163517,0.014962245,,,,,,,,0.006700364,0.006700845,0.006701517,,,,,,,,0.061819795,0.143383369,0.16824457,,,,,,,,0.000170133,0.000271736,0.000361592,,,,,,,,1.135075082,2.563418455,2.999116882,,,,,,,,3.281077962,6.227422677,7.148783216,,,,,,,,1268.376277,1268.341239,1268.324327,,,,,,,,0.060326956,0.063694831,0.067650904,,,,,,,,0.034967384,0.034967395,0.034967387,,,,,,,,1.296606252,1.489544645,1.548052579,,,,,,,,0.000573173,0.000915467,0.00121819,,,,,,,,0.076175765,0.077208892,0.078122618,,,,,,,,0.011238948,0.012152878,0.012961151,,,,,,,,0.006715405,0.006715221,0.00671513,,,,,,,,0.054796686,0.12375117,0.14478484,,,,,,,,0.000168054,0.000268187,0.000356771,,,,,,,,1.255466036,2.913762151,3.418043446,,,,,,,,3.359746645,6.351910281,7.288921751,,,,,,,,1289.488242,1289.184505,1288.862353,,,,,,,,0.066763281,0.070342942,0.074547798,,,,,,,,0.035154791,0.035154803,0.035154803,,,,,,,,1.283074376,1.471515438,1.52866084,,,,,,,,0.000566168,0.000903512,0.001201949,,,,,,,,0.09047709,0.091495295,0.09239608,,,,,,,,0.013031609,0.013932323,0.014729152,,,,,,,,0.006827183,0.006825574,0.006823868,,,,,,,,0.060608646,0.140664262,0.165008834,,,,,,,,0.000167557,0.000267539,0.000355972,,,,,,,,1.17478916,2.686291087,3.146355025,,,,,,,,3.295123079,6.245256494,7.168088025,,,,,,,,1278.429458,1278.182018,1277.922506,,,,,,,,0.062528415,0.065935838,0.069938357,,,,,,,,0.034944966,0.034944991,0.034944971,,,,,,,,1.286326654,1.476847309,1.534621328,,,,,,,,0.000564493,0.00090133,0.001199259,,,,,,,,0.081480978,0.08249767,0.083396887,,,,,,,,0.011890313,0.012789674,0.013585148,,,,,,,,0.006768633,0.006767322,0.006765948,,,,,,,,0.056713921,0.129682894,0.151892897,,,,,,,,0.000171928,0.000274516,0.000365254,,,,,,,,1.189818714,2.726919962,3.194404385,,,,,,,,3.33567399,6.32062497,7.254782343,,,,,,,,1304.385633,1303.954626,1303.487993,,,,,,,,0.063449815,0.066949178,0.071059738,,,,,,,,0.035182572,0.035182578,0.035182582,,,,,,,,1.298224797,1.490145042,1.548344644,,,,,,,,0.000579219,0.000924833,0.001230527,,,,,,,,0.082734375,0.083777491,0.084700229,,,,,,,,0.012081492,0.013004289,0.013820496,,,,,,,,0.006906056,0.006903773,0.006901305,,,,,,,,0.057439488,0.131644315,0.154212513,,,,,,,,0.000171793,0.000274305,0.000364976,,,,,,,,1.219347581,2.804672918,3.287289413,,,,,,,,3.343064383,6.333203288,7.268869547,,,,,,,,1286.374604,1286.218951,1286.064699,,,,,,,,0.064458665,0.067949619,0.072050351,,,,,,,,0.035208727,0.035208739,0.03520875,,,,,,,,1.296033243,1.486995578,1.544905203,,,,,,,,0.000578764,0.000924123,0.001229592,,,,,,,,0.085458098,0.08650048,0.087422514,,,,,,,,0.012424163,0.013346276,0.014161886,,,,,,,,0.006810699,0.006809874,0.006809059,,,,,,,,0.058865003,0.135397888,0.15869661,,,,,,,,0.000177339,0.000283118,0.000376683,,,,,,,,1.238108898,2.855754763,3.347644876,,,,,,,,3.402790277,6.441798846,7.393599201,,,,,,,,1283.994851,1284.021433,1284.072075,,,,,,,,0.065878073,0.069528789,0.073817032,,,,,,,,0.035530344,0.035530343,0.035530331,,,,,,,,1.311332735,1.504193464,1.562677608,,,,,,,,0.000597448,0.000953813,0.001269031,,,,,,,,0.087197018,0.088272639,0.089224045,,,,,,,,0.012686069,0.013637569,0.014479196,,,,,,,,0.006798094,0.006798236,0.006798502,,,,,,,,0.059770702,0.137863928,0.161610345 +Bus,CNG,2045,,,,,,,,,0.000174275,0.000278116,,,,,,,,,1.196557816,2.731876992,,,,,,,,,3.350316844,6.353122442,,,,,,,,,1265.207061,1265.390666,,,,,,,,,0.063451641,0.066989827,,,,,,,,,0.035282333,0.035282345,,,,,,,,,1.304759373,1.497963389,,,,,,,,,0.000587124,0.00093696,,,,,,,,,0.082273324,0.083329228,,,,,,,,,0.01204092,0.012974989,,,,,,,,,0.006698625,0.006699598,,,,,,,,,0.057764824,0.131883617,,,,,,,,,0.000173042,0.000276187,,,,,,,,,1.206128239,2.763491327,,,,,,,,,3.339248684,6.333719224,,,,,,,,,1273.196582,1273.24843,,,,,,,,,0.063604241,0.067075054,,,,,,,,,0.035227111,0.035227127,,,,,,,,,1.30028389,1.49248516,,,,,,,,,0.000582974,0.000930465,,,,,,,,,0.083529199,0.084578032,,,,,,,,,0.012189776,0.013117588,,,,,,,,,0.006740926,0.006741201,,,,,,,,,0.058226836,0.133409835,,,,,,,,,0.000168663,0.000268985,,,,,,,,,1.28055832,2.972483799,,,,,,,,,3.374563085,6.38127963,,,,,,,,,1265.535449,1265.626073,,,,,,,,,0.067622282,0.071241439,,,,,,,,,0.035211497,0.035211504,,,,,,,,,1.283372229,1.471787618,,,,,,,,,0.000568219,0.000906201,,,,,,,,,0.092265194,0.093285308,,,,,,,,,0.01326227,0.014164681,,,,,,,,,0.006700365,0.006700845,,,,,,,,,0.061820003,0.143499122,,,,,,,,,0.00017031,0.000271866,,,,,,,,,1.135079132,2.565446726,,,,,,,,,3.281124622,6.231628552,,,,,,,,,1268.375934,1268.340916,,,,,,,,,0.060331823,0.063702379,,,,,,,,,0.034967389,0.034967395,,,,,,,,,1.29660647,1.489818321,,,,,,,,,0.000573767,0.000915907,,,,,,,,,0.076177562,0.077210237,,,,,,,,,0.011240535,0.012154057,,,,,,,,,0.006715405,0.006715218,,,,,,,,,0.054796885,0.123849065,,,,,,,,,0.000168228,0.000268316,,,,,,,,,1.25546899,2.916113891,,,,,,,,,3.359797277,6.356181377,,,,,,,,,1289.488054,1289.18311,,,,,,,,,0.066768456,0.070350935,,,,,,,,,0.035154806,0.035154791,,,,,,,,,1.28307465,1.471782308,,,,,,,,,0.000566754,0.000903946,,,,,,,,,0.090478884,0.091496569,,,,,,,,,0.013033177,0.013933479,,,,,,,,,0.006827181,0.006825567,,,,,,,,,0.060608791,0.140777818,,,,,,,,,0.00016773,0.000267668,,,,,,,,,1.174792102,2.688435762,,,,,,,,,3.295169418,6.249465324,,,,,,,,,1278.4287,1278.18113,,,,,,,,,0.062533323,0.065943519,,,,,,,,,0.034944969,0.034944982,,,,,,,,,1.28632662,1.477117386,,,,,,,,,0.000565077,0.000901763,,,,,,,,,0.081482756,0.082498982,,,,,,,,,0.011891874,0.012790832,,,,,,,,,0.006768629,0.006767316,,,,,,,,,0.056714057,0.129786472,,,,,,,,,0.000172106,0.000274648,,,,,,,,,1.189821021,2.729101465,,,,,,,,,3.335722778,6.324885031,,,,,,,,,1304.384988,1303.953134,,,,,,,,,0.06345485,0.066957025,,,,,,,,,0.035182581,0.03518258,,,,,,,,,1.298224806,1.490417495,,,,,,,,,0.000579819,0.000925278,,,,,,,,,0.082736182,0.083778851,,,,,,,,,0.012083098,0.013005472,,,,,,,,,0.006906055,0.006903766,,,,,,,,,0.057439613,0.131749639,,,,,,,,,0.000171971,0.000274437,,,,,,,,,1.219350769,2.806922826,,,,,,,,,3.343112235,6.337472925,,,,,,,,,1286.374591,1286.218701,,,,,,,,,0.064463697,0.067957473,,,,,,,,,0.03520873,0.03520874,,,,,,,,,1.296033212,1.487266564,,,,,,,,,0.000579363,0.000924568,,,,,,,,,0.085459916,0.086501833,,,,,,,,,0.012425766,0.013347464,,,,,,,,,0.006810698,0.006809872,,,,,,,,,0.058865162,0.135506529,,,,,,,,,0.000177522,0.000283254,,,,,,,,,1.238110555,2.858050418,,,,,,,,,3.402839965,6.446137357,,,,,,,,,1283.993802,1284.021266,,,,,,,,,0.065883308,0.069536977,,,,,,,,,0.035530336,0.035530343,,,,,,,,,1.311332452,1.504466465,,,,,,,,,0.000598066,0.000954272,,,,,,,,,0.087198851,0.088274042,,,,,,,,,0.012687714,0.01363879,,,,,,,,,0.006798094,0.006798239,,,,,,,,,0.059770821,0.137974778 +Bus,CNG,2050,,,,,,,,,,0.000174256,,,,,,,,,,1.196558526,,,,,,,,,,3.350319122,,,,,,,,,,1265.207605,,,,,,,,,,0.063451896,,,,,,,,,,0.035282346,,,,,,,,,,1.304759892,,,,,,,,,,0.000587063,,,,,,,,,,0.082273165,,,,,,,,,,0.012040761,,,,,,,,,,0.006698628,,,,,,,,,,0.057764839,,,,,,,,,,0.000173024,,,,,,,,,,1.206128544,,,,,,,,,,3.339251196,,,,,,,,,,1273.196831,,,,,,,,,,0.063604467,,,,,,,,,,0.035227115,,,,,,,,,,1.300284109,,,,,,,,,,0.000582913,,,,,,,,,,0.083529015,,,,,,,,,,0.012189611,,,,,,,,,,0.006740928,,,,,,,,,,0.058226851,,,,,,,,,,0.000168645,,,,,,,,,,1.280558051,,,,,,,,,,3.374563976,,,,,,,,,,1265.535268,,,,,,,,,,0.067622511,,,,,,,,,,0.035211496,,,,,,,,,,1.283371667,,,,,,,,,,0.00056816,,,,,,,,,,0.092264972,,,,,,,,,,0.013262108,,,,,,,,,,0.006700363,,,,,,,,,,0.06182001,,,,,,,,,,0.000170292,,,,,,,,,,1.135079649,,,,,,,,,,3.281126625,,,,,,,,,,1268.376369,,,,,,,,,,0.060332029,,,,,,,,,,0.034967391,,,,,,,,,,1.296606516,,,,,,,,,,0.000573707,,,,,,,,,,0.076177392,,,,,,,,,,0.011240376,,,,,,,,,,0.006715405,,,,,,,,,,0.054796895,,,,,,,,,,0.00016821,,,,,,,,,,1.255468163,,,,,,,,,,3.359798531,,,,,,,,,,1289.4877,,,,,,,,,,0.066768658,,,,,,,,,,0.035154794,,,,,,,,,,1.283074103,,,,,,,,,,0.000566695,,,,,,,,,,0.090478676,,,,,,,,,,0.013033013,,,,,,,,,,0.00682718,,,,,,,,,,0.060608785,,,,,,,,,,0.000167713,,,,,,,,,,1.174792191,,,,,,,,,,3.295171161,,,,,,,,,,1278.428732,,,,,,,,,,0.062533546,,,,,,,,,,0.03494497,,,,,,,,,,1.28632665,,,,,,,,,,0.000565018,,,,,,,,,,0.081482567,,,,,,,,,,0.011891714,,,,,,,,,,0.00676863,,,,,,,,,,0.05671406,,,,,,,,,,0.000172088,,,,,,,,,,1.189822016,,,,,,,,,,3.335726336,,,,,,,,,,1304.385873,,,,,,,,,,0.06345508,,,,,,,,,,0.035182598,,,,,,,,,,1.298225547,,,,,,,,,,0.000579758,,,,,,,,,,0.08273606,,,,,,,,,,0.012082942,,,,,,,,,,0.006906055,,,,,,,,,,0.057439642,,,,,,,,,,0.000171953,,,,,,,,,,1.219351156,,,,,,,,,,3.343114316,,,,,,,,,,1286.374879,,,,,,,,,,0.064463916,,,,,,,,,,0.035208738,,,,,,,,,,1.296033321,,,,,,,,,,0.000579303,,,,,,,,,,0.085459747,,,,,,,,,,0.012425604,,,,,,,,,,0.006810699,,,,,,,,,,0.058865171,,,,,,,,,,0.000177504,,,,,,,,,,1.238110732,,,,,,,,,,3.40284215,,,,,,,,,,1283.994344,,,,,,,,,,0.065883535,,,,,,,,,,0.035530339,,,,,,,,,,1.311332294,,,,,,,,,,0.000598003,,,,,,,,,,0.087198712,,,,,,,,,,0.012687548,,,,,,,,,,0.006798096,,,,,,,,,,0.059770793 +Bus,E0,1990,0.140076912,,,,,,,,,,0.425133299,,,,,,,,,,104.9461816,,,,,,,,,,991.4746672,,,,,,,,,,0.050343031,,,,,,,,,,0.033892826,,,,,,,,,,8.592763103,,,,,,,,,,0.401235564,,,,,,,,,,0.911641551,,,,,,,,,,0.740433427,,,,,,,,,,0.044124991,,,,,,,,,,5.480080807,,,,,,,,,,0.121209515,,,,,,,,,,0.418345039,,,,,,,,,,104.6789437,,,,,,,,,,990.3300245,,,,,,,,,,0.04982685,,,,,,,,,,0.033762153,,,,,,,,,,8.552964706,,,,,,,,,,0.353417271,,,,,,,,,,0.813543846,,,,,,,,,,0.652897614,,,,,,,,,,0.0490034,,,,,,,,,,5.529720242,,,,,,,,,,0.132830641,,,,,,,,,,0.462237638,,,,,,,,,,112.8167663,,,,,,,,,,985.9427657,,,,,,,,,,0.052376199,,,,,,,,,,0.033922594,,,,,,,,,,8.628613926,,,,,,,,,,0.371998909,,,,,,,,,,0.869701816,,,,,,,,,,0.696449013,,,,,,,,,,0.06909179,,,,,,,,,,6.072817217,,,,,,,,,,0.148763461,,,,,,,,,,0.424759279,,,,,,,,,,108.6883435,,,,,,,,,,981.4189752,,,,,,,,,,0.047922869,,,,,,,,,,0.033513998,,,,,,,,,,8.695853348,,,,,,,,,,0.425249537,,,,,,,,,,0.961994556,,,,,,,,,,0.789188483,,,,,,,,,,0.064071089,,,,,,,,,,5.606679825,,,,,,,,,,0.071833221,,,,,,,,,,0.4017116,,,,,,,,,,101.7784538,,,,,,,,,,983.0199923,,,,,,,,,,0.051792023,,,,,,,,,,0.033849159,,,,,,,,,,8.039630901,,,,,,,,,,0.218337125,,,,,,,,,,0.541748939,,,,,,,,,,0.407566038,,,,,,,,,,0.05685601,,,,,,,,,,5.859261274,,,,,,,,,,0.084921477,,,,,,,,,,0.399277695,,,,,,,,,,103.9182366,,,,,,,,,,975.1914023,,,,,,,,,,0.048968777,,,,,,,,,,0.033528378,,,,,,,,,,8.312992142,,,,,,,,,,0.258499685,,,,,,,,,,0.616958211,,,,,,,,,,0.480327584,,,,,,,,,,0.06284719,,,,,,,,,,5.645208328,,,,,,,,,,0.070124223,,,,,,,,,,0.385287857,,,,,,,,,,101.332119,,,,,,,,,,991.3667731,,,,,,,,,,0.050041589,,,,,,,,,,0.033781811,,,,,,,,,,8.186201389,,,,,,,,,,0.217962782,,,,,,,,,,0.532673682,,,,,,,,,,0.404894167,,,,,,,,,,0.057949671,,,,,,,,,,5.660826688,,,,,,,,,,0.096718276,,,,,,,,,,0.410243538,,,,,,,,,,104.4137144,,,,,,,,,,989.7069738,,,,,,,,,,0.050298998,,,,,,,,,,0.033748881,,,,,,,,,,8.941674142,,,,,,,,,,0.288397744,,,,,,,,,,0.682595909,,,,,,,,,,0.535745883,,,,,,,,,,0.056843948,,,,,,,,,,5.81896137,,,,,,,,,,0.069849492,,,,,,,,,,0.387343508,,,,,,,,,,98.04000096,,,,,,,,,,996.9931645,,,,,,,,,,0.052102332,,,,,,,,,,0.034158523,,,,,,,,,,8.264793003,,,,,,,,,,0.215917087,,,,,,,,,,0.527699936,,,,,,,,,,0.397429941,,,,,,,,,,0.027482335,,,,,,,,,,5.512843984,,,,,,,,, +Bus,E0,1995,0.025174562,0.095759361,,,,,,,,,0.294726048,0.379598425,,,,,,,,,127.3002152,104.0849481,,,,,,,,,1005.123858,993.6238337,,,,,,,,,0.074277705,0.055083799,,,,,,,,,0.033928478,0.033898121,,,,,,,,,6.156219679,7.909636337,,,,,,,,,0.068080918,0.261421258,,,,,,,,,0.229266697,0.622770343,,,,,,,,,0.136162417,0.484810019,,,,,,,,,0.044685486,0.021137989,,,,,,,,,3.787560028,4.9168964,,,,,,,,,0.021723926,0.082861268,,,,,,,,,0.29102398,0.373346852,,,,,,,,,127.8832404,103.27892,,,,,,,,,1007.388558,993.2819422,,,,,,,,,0.073523932,0.0545231,,,,,,,,,0.03379967,0.033767905,,,,,,,,,6.147316054,7.81872999,,,,,,,,,0.059949368,0.230971105,,,,,,,,,0.213259963,0.559912675,,,,,,,,,0.121229285,0.428445292,,,,,,,,,0.049805651,0.021294892,,,,,,,,,3.824273569,4.956823601,,,,,,,,,0.023860136,0.092290591,,,,,,,,,0.318529135,0.408258899,,,,,,,,,136.5370318,108.2542201,,,,,,,,,1002.461545,988.8162171,,,,,,,,,0.077293181,0.057317427,,,,,,,,,0.033955508,0.03392838,,,,,,,,,6.300608054,7.587918727,,,,,,,,,0.062770477,0.247338189,,,,,,,,,0.229144467,0.604563853,,,,,,,,,0.129060138,0.461803461,,,,,,,,,0.07028858,0.021647992,,,,,,,,,4.166540251,5.355081797,,,,,,,,,0.025894594,0.100645309,,,,,,,,,0.297829421,0.383104649,,,,,,,,,132.7695993,106.0213795,,,,,,,,,1000.927215,984.8711182,,,,,,,,,0.070706168,0.052434851,,,,,,,,,0.033551309,0.033519178,,,,,,,,,6.235982626,7.853856945,,,,,,,,,0.068765513,0.272768259,,,,,,,,,0.226469365,0.644171245,,,,,,,,,0.137964572,0.507962768,,,,,,,,,0.065353055,0.037122419,,,,,,,,,3.931722859,5.056593307,,,,,,,,,0.012565417,0.04897201,,,,,,,,,0.288260562,0.361052175,,,,,,,,,126.1238665,99.87897194,,,,,,,,,1009.825895,988.2398039,,,,,,,,,0.076430116,0.056676903,,,,,,,,,0.03388252,0.033854551,,,,,,,,,5.846492445,7.299682959,,,,,,,,,0.036118087,0.143144177,,,,,,,,,0.170321191,0.385091048,,,,,,,,,0.078273695,0.268887561,,,,,,,,,0.058375783,0.021511249,,,,,,,,,4.060857147,5.268181474,,,,,,,,,0.014538937,0.057074395,,,,,,,,,0.283911196,0.356572644,,,,,,,,,128.6800284,100.8051507,,,,,,,,,1000.152102,980.0137625,,,,,,,,,0.072258045,0.053585138,,,,,,,,,0.033564683,0.033534518,,,,,,,,,5.997587298,7.422388039,,,,,,,,,0.041515235,0.166239171,,,,,,,,,0.173406273,0.423833644,,,,,,,,,0.087329967,0.309402668,,,,,,,,,0.06445533,0.021430028,,,,,,,,,3.940502727,5.047306985,,,,,,,,,0.012267919,0.04722089,,,,,,,,,0.27837241,0.350115214,,,,,,,,,126.1205875,100.3059256,,,,,,,,,1021.554948,997.3406208,,,,,,,,,0.073836725,0.054756132,,,,,,,,,0.033817774,0.033787383,,,,,,,,,5.907964726,7.429203199,,,,,,,,,0.036253576,0.141085488,,,,,,,,,0.163145806,0.374012277,,,,,,,,,0.077367356,0.264455433,,,,,,,,,0.059703157,0.029867253,,,,,,,,,3.961355936,5.126412662,,,,,,,,,0.017150528,0.065834883,,,,,,,,,0.290546532,0.374750363,,,,,,,,,128.8387093,105.2634846,,,,,,,,,1012.356641,993.9581831,,,,,,,,,0.074223067,0.05504105,,,,,,,,,0.033786212,0.033754703,,,,,,,,,6.445882569,8.138599041,,,,,,,,,0.048412948,0.188057483,,,,,,,,,0.191239395,0.474474481,,,,,,,,,0.100415333,0.35154937,,,,,,,,,0.058050026,0.033567408,,,,,,,,,4.0088145,5.310665689,,,,,,,,,0.012766327,0.047652294,,,,,,,,,0.281022389,0.359729518,,,,,,,,,122.3216826,101.7387653,,,,,,,,,1014.377159,1000.042012,,,,,,,,,0.0768756,0.057009796,,,,,,,,,0.034193669,0.034163745,,,,,,,,,5.931563483,7.626996005,,,,,,,,,0.038049592,0.142083476,,,,,,,,,0.169926512,0.378165301,,,,,,,,,0.080253921,0.2650588,,,,,,,,,0.027881598,0.012653018,,,,,,,,,3.85525911,5.096723754,,,,,,,, +Bus,E0,2000,0.015789246,0.020341329,0.052124001,,,,,,,,0.079385651,0.07832148,0.250505387,,,,,,,,91.7495637,94.97213941,90.69059008,,,,,,,,1060.07236,1051.741641,988.1581302,,,,,,,,0.125683693,0.127039101,0.049967674,,,,,,,,0.034147502,0.034114427,0.033919458,,,,,,,,5.292922399,5.260387939,7.064189739,,,,,,,,0.046728042,0.059917781,0.152349187,,,,,,,,0.189176451,0.214112189,0.396442308,,,,,,,,0.096609552,0.119289933,0.284214032,,,,,,,,0.04712168,0.022374621,0.018911588,,,,,,,,2.951316475,3.047865381,3.91000992,,,,,,,,0.013683987,0.017619589,0.045288119,,,,,,,,0.078012877,0.076845952,0.248221361,,,,,,,,91.88886091,94.51483865,90.36911674,,,,,,,,1063.785287,1055.237875,989.8578938,,,,,,,,0.124503438,0.125830841,0.049599075,,,,,,,,0.034030061,0.03399543,0.033790366,,,,,,,,5.290219318,5.204039889,6.984480195,,,,,,,,0.041162333,0.05275846,0.134763243,,,,,,,,0.178913377,0.200507682,0.361134078,,,,,,,,0.086654015,0.106393707,0.252210175,,,,,,,,0.052578537,0.022624392,0.018944118,,,,,,,,2.976648178,3.066401838,3.965625393,,,,,,,,0.014640609,0.018840154,0.049448892,,,,,,,,0.085891651,0.08376034,0.270029795,,,,,,,,98.42418949,98.66568082,93.6040652,,,,,,,,1058.383161,1049.975227,984.1593352,,,,,,,,0.130976896,0.132360781,0.05227368,,,,,,,,0.034157637,0.03412799,0.033948091,,,,,,,,5.455046556,5.099281119,6.760279427,,,,,,,,0.042109892,0.053881865,0.141559259,,,,,,,,0.191019406,0.212406118,0.384686326,,,,,,,,0.090539994,0.110186065,0.266846939,,,,,,,,0.074227459,0.022996655,0.018835059,,,,,,,,3.279416339,3.316254028,4.2668584,,,,,,,,0.015852708,0.020405056,0.053485369,,,,,,,,0.079999612,0.079204584,0.24846981,,,,,,,,95.3054616,95.81958633,90.32964332,,,,,,,,1058.137448,1049.408671,981.813853,,,,,,,,0.119632087,0.120922305,0.04755289,,,,,,,,0.033780578,0.033745568,0.033541515,,,,,,,,5.394185322,5.238181891,6.874620071,,,,,,,,0.045879155,0.058733572,0.154019102,,,,,,,,0.182270527,0.206711631,0.394901062,,,,,,,,0.095194469,0.117374552,0.287110989,,,,,,,,0.069092161,0.039622531,0.018790172,,,,,,,,3.090138754,3.175808373,3.944523852,,,,,,,,0.007895173,0.010142645,0.026657749,,,,,,,,0.076658571,0.075452291,0.246850945,,,,,,,,90.65765737,92.77492232,87.86203388,,,,,,,,1069.917387,1060.792667,990.3493959,,,,,,,,0.129502656,0.130871229,0.051672346,,,,,,,,0.034087436,0.034056917,0.033874525,,,,,,,,5.043913641,4.90662711,6.499431492,,,,,,,,0.0244554,0.031268911,0.082276802,,,,,,,,0.151941188,0.163958952,0.260820902,,,,,,,,0.057344242,0.068684546,0.158519043,,,,,,,,0.061842785,0.023092599,0.018953524,,,,,,,,3.129710343,3.229831806,4.268014686,,,,,,,,0.009050755,0.011628025,0.030719821,,,,,,,,0.075441472,0.07394307,0.24090854,,,,,,,,92.20512829,93.15394887,88.69962833,,,,,,,,1059.691945,1050.688896,981.1366053,,,,,,,,0.12236235,0.123668469,0.048749927,,,,,,,,0.033787417,0.033754518,0.033556243,,,,,,,,5.186194987,4.945734508,6.61535522,,,,,,,,0.027820535,0.03556908,0.094226458,,,,,,,,0.149855884,0.163643863,0.276677552,,,,,,,,0.062449635,0.075260674,0.178847518,,,,,,,,0.068289854,0.022981332,0.018777205,,,,,,,,3.0562249,3.125794027,4.072593077,,,,,,,,0.007857008,0.010100929,0.026078455,,,,,,,,0.073746661,0.073138046,0.236851948,,,,,,,,90.2981631,92.50647801,87.6277615,,,,,,,,1082.89862,1073.549461,1001.004189,,,,,,,,0.124982878,0.12632396,0.049737216,,,,,,,,0.034038319,0.034005205,0.033808925,,,,,,,,5.094842709,4.974677721,6.551848422,,,,,,,,0.024968895,0.031971785,0.082239515,,,,,,,,0.144931695,0.157591757,0.253096789,,,,,,,,0.057128155,0.068954623,0.157105688,,,,,,,,0.063286948,0.032152637,0.019157441,,,,,,,,3.04665379,3.150314409,4.108267552,,,,,,,,0.010830455,0.013934972,0.036021008,,,,,,,,0.077522934,0.077494423,0.247830866,,,,,,,,92.47383095,96.23282691,90.375119,,,,,,,,1070.944356,1062.051632,993.8326732,,,,,,,,0.125717738,0.127053332,0.050114983,,,,,,,,0.034015536,0.03398117,0.033777074,,,,,,,,5.562873643,5.449919124,7.149562673,,,,,,,,0.033151155,0.042462472,0.109323852,,,,,,,,0.164620669,0.181838211,0.310764864,,,,,,,,0.072537578,0.088426421,0.20632389,,,,,,,,0.061384443,0.035885502,0.01706179,,,,,,,,3.113247708,3.262015411,4.170545625,,,,,,,,0.008400006,0.010815591,0.027089579,,,,,,,,0.075152237,0.076787831,0.244941831,,,,,,,,89.05176656,96.90937533,89.4045961,,,,,,,,1071.090464,1062.474559,998.9116948,,,,,,,,0.130105201,0.13150388,0.051752059,,,,,,,,0.034409672,0.034377042,0.034184817,,,,,,,,5.083805189,5.103577442,6.80560952,,,,,,,,0.027039688,0.034698257,0.085943454,,,,,,,,0.152877492,0.166880435,0.263759125,,,,,,,,0.06074119,0.073802225,0.163438791,,,,,,,,0.029430011,0.013418656,0.009088329,,,,,,,,2.970094089,3.192407635,4.113439816,,,,,,, +Bus,E0,2005,0.005129902,0.007760337,0.00907915,0.035571537,,,,,,,0.040802492,0.036008219,0.02699306,0.165063163,,,,,,,30.06086782,45.68035137,41.4263729,88.93711978,,,,,,,1103.114734,1092.831438,1077.651017,1008.386578,,,,,,,0.038401433,0.039279731,0.031116845,0.059391496,,,,,,,0.03431032,0.034267472,0.034249596,0.033986306,,,,,,,3.637085909,4.013137588,3.956190353,4.810474253,,,,,,,0.015873032,0.023778899,0.029622169,0.107918377,,,,,,,0.129989377,0.144567123,0.155335391,0.305800523,,,,,,,0.041239212,0.054935551,0.064792458,0.202786057,,,,,,,0.049038977,0.023248979,0.020624321,0.006432909,,,,,,,1.406670463,1.973757833,1.783024857,2.994368063,,,,,,,0.0046261,0.006789607,0.008012024,0.030936985,,,,,,,0.039375049,0.034504831,0.026018737,0.162275586,,,,,,,29.54314061,44.82126252,40.74624924,88.20145758,,,,,,,1107.394304,1096.871143,1082.327815,1011.609965,,,,,,,0.038070007,0.038931888,0.030924346,0.058959427,,,,,,,0.034201269,0.034156391,0.034137613,0.033860687,,,,,,,3.630351776,3.959221062,3.901132327,4.755493665,,,,,,,0.014482701,0.021236953,0.02658901,0.095340431,,,,,,,0.128402224,0.140552513,0.150379058,0.28123027,,,,,,,0.038882241,0.05045098,0.059483124,0.180249647,,,,,,,0.054730678,0.023517104,0.020713834,0.00645347,,,,,,,1.41139078,1.966076648,1.789796909,3.015807531,,,,,,,0.005257732,0.006025211,0.007112788,0.032912002,,,,,,,0.04310198,0.035911652,0.026945963,0.172816342,,,,,,,31.29239771,49.57864246,44.32749501,89.88212604,,,,,,,1101.910707,1091.573661,1076.170252,1005.733837,,,,,,,0.040077323,0.040976786,0.032627172,0.062144682,,,,,,,0.034307886,0.034269257,0.034252759,0.034009782,,,,,,,3.738127742,3.913611994,3.839500558,4.644482898,,,,,,,0.015512834,0.018958311,0.023714485,0.097303083,,,,,,,0.140511438,0.145509372,0.154150758,0.294768494,,,,,,,0.042326597,0.047684542,0.055717115,0.185844471,,,,,,,0.077284867,0.023908509,0.020595984,0.006415986,,,,,,,1.548182904,2.054417216,1.86447479,3.189264333,,,,,,,0.005462865,0.007648363,0.008896328,0.036004027,,,,,,,0.03958318,0.036683549,0.025380354,0.163725718,,,,,,,29.86620624,47.37755282,39.76180135,88.49514193,,,,,,,1102.217989,1091.538983,1076.527572,1004.752334,,,,,,,0.036549819,0.037386197,0.029609786,0.056520669,,,,,,,0.033950995,0.033905768,0.033887067,0.033611492,,,,,,,3.673889274,4.1187306,3.853338396,4.670032274,,,,,,,0.016419589,0.023063065,0.028652977,0.107366974,,,,,,,0.124844543,0.137070375,0.147077413,0.299459904,,,,,,,0.041690106,0.053224883,0.062374474,0.201564548,,,,,,,0.071971551,0.0412172,0.020602821,0.006409725,,,,,,,1.477752648,2.078941588,1.772693212,3.030414408,,,,,,,0.003045625,0.004527526,0.005443756,0.018099926,,,,,,,0.03701288,0.03271767,0.025163352,0.159740382,,,,,,,29.54534576,43.20548802,39.59385461,85.32758444,,,,,,,1114.872475,1103.731555,1090.800777,1016.387166,,,,,,,0.039622604,0.040512422,0.032247284,0.061429027,,,,,,,0.034239776,0.034200114,0.034183402,0.033937067,,,,,,,3.456770707,3.695466055,3.622298353,4.435486339,,,,,,,0.009828263,0.014581422,0.018520686,0.057441602,,,,,,,0.126535865,0.134543452,0.141607491,0.211747519,,,,,,,0.031428435,0.039425711,0.046052899,0.113686036,,,,,,,0.064440686,0.024027431,0.020875985,0.006483948,,,,,,,1.495571381,2.086822367,1.937519731,3.230626795,,,,,,,0.003478712,0.004641566,0.005586901,0.020832005,,,,,,,0.036255245,0.031218406,0.023759827,0.155720609,,,,,,,29.02352196,43.88145505,39.96520593,85.56004063,,,,,,,1104.493721,1093.474253,1080.271617,1006.392512,,,,,,,0.0374162,0.038263634,0.030395957,0.057950191,,,,,,,0.03395301,0.033910179,0.033891993,0.033624247,,,,,,,3.554756874,3.751267192,3.685716987,4.490538333,,,,,,,0.011064281,0.015097054,0.019148658,0.065766009,,,,,,,0.119365725,0.125983328,0.133344558,0.21984819,,,,,,,0.032495308,0.039140337,0.045979938,0.127343073,,,,,,,0.071174825,0.023917496,0.020674475,0.006420186,,,,,,,1.452332937,1.96689247,1.811198839,3.085933256,,,,,,,0.003024251,0.004379894,0.005325264,0.018007922,,,,,,,0.035344924,0.033040327,0.024391113,0.154498798,,,,,,,29.36646348,45.39355061,39.69035326,85.84155167,,,,,,,1128.37609,1117.009546,1104.324366,1028.569799,,,,,,,0.038201212,0.039070892,0.030991007,0.059120449,,,,,,,0.034202247,0.034159344,0.034141343,0.033876223,,,,,,,3.485481931,3.831877847,3.664366324,4.460404064,,,,,,,0.010007926,0.014521387,0.018534579,0.058513177,,,,,,,0.118425898,0.126173315,0.133338746,0.206134269,,,,,,,0.030639896,0.038301041,0.044973832,0.114305531,,,,,,,0.065945608,0.033457229,0.0211348,0.006561666,,,,,,,1.464988091,2.08206331,1.873050026,3.138011823,,,,,,,0.003934789,0.005347603,0.00639617,0.024626492,,,,,,,0.037811256,0.035364971,0.024867643,0.16424609,,,,,,,30.25398513,49.2780619,41.19691217,89.55676649,,,,,,,1115.35288,1104.454066,1090.934492,1018.043585,,,,,,,0.038450688,0.039318348,0.031257815,0.059574632,,,,,,,0.034185993,0.034141426,0.034122721,0.033847055,,,,,,,3.787949604,4.079369104,3.796971722,4.904810065,,,,,,,0.012501306,0.01723474,0.021753585,0.077220094,,,,,,,0.126469962,0.134629327,0.142635756,0.246445603,,,,,,,0.035597804,0.043663082,0.051096364,0.14810763,,,,,,,0.063926283,0.037321132,0.018718126,0.006398667,,,,,,,1.487705498,2.131114396,1.843274992,3.213684861,,,,,,,0.002889051,0.004112673,0.005045648,0.018988128,,,,,,,0.03304275,0.031966061,0.023872647,0.170463799,,,,,,,28.05256014,46.84394674,41.32418911,93.13078913,,,,,,,1114.437442,1103.767627,1091.082341,1020.56777,,,,,,,0.039760143,0.040667168,0.032238017,0.061514064,,,,,,,0.034570244,0.034528011,0.034510384,0.034250722,,,,,,,3.054594768,2.659585027,2.524315386,4.772333456,,,,,,,0.009774072,0.014007071,0.017925769,0.062237769,,,,,,,0.122503201,0.129624752,0.136664665,0.217563461,,,,,,,0.030606359,0.037773875,0.044360317,0.121224413,,,,,,,0.030625288,0.013943429,0.009919174,0.006022371,,,,,,,1.314919932,1.905649012,1.70324104,3.294701899,,,,,, +Bus,E0,2010,,0.002850937,0.003898888,0.005072488,0.021874789,,,,,,,0.036760847,0.023719245,0.02454071,0.095000311,,,,,,,22.60903319,28.2982521,30.24269047,66.11044765,,,,,,,1129.575023,1118.343596,1105.904316,1041.167406,,,,,,,0.036293418,0.02904363,0.030000593,0.052532305,,,,,,,0.034423233,0.034416042,0.034364546,0.034108391,,,,,,,1.934137857,2.155502754,1.066791718,3.325214078,,,,,,,0.007387284,0.011190924,0.014419984,0.066939153,,,,,,,0.115513257,0.12282387,0.128030091,0.226562212,,,,,,,0.026504719,0.033097394,0.03864556,0.13047114,,,,,,,0.024030945,0.021403105,0.007055014,0.006642031,,,,,,,0.732624264,0.949484219,0.874940002,2.251078557,,,,,,,0.002598227,0.003617128,0.004743166,0.019193944,,,,,,,0.033197461,0.021904675,0.022466278,0.09278626,,,,,,,22.03255302,27.74062597,29.26029002,65.23036337,,,,,,,1134.277146,1123.626992,1110.889926,1045.151762,,,,,,,0.036002324,0.028890521,0.029829329,0.052161738,,,,,,,0.034320202,0.034312651,0.034258517,0.033989063,,,,,,,1.909437769,2.126523212,1.04902028,3.28334549,,,,,,,0.007114955,0.010872535,0.014067311,0.059744865,,,,,,,0.116142098,0.123341546,0.128413992,0.213001188,,,,,,,0.026057612,0.03255514,0.038008913,0.11761719,,,,,,,0.024319304,0.021504223,0.007086819,0.006667448,,,,,,,0.753718873,0.976284242,0.897303945,2.267749008,,,,,,,0.0022874,0.003189789,0.004747685,0.0200347,,,,,,,0.036129449,0.023427388,0.023797773,0.098710842,,,,,,,24.95056164,30.59334843,30.25057766,66.6741098,,,,,,,1128.578685,1117.161267,1104.556333,1039.16845,,,,,,,0.037922201,0.030506562,0.031485417,0.054990911,,,,,,,0.034412986,0.034406371,0.034358851,0.034122427,,,,,,,1.880231063,2.087425316,1.031721597,3.212873038,,,,,,,0.006303887,0.009640438,0.013409458,0.059795829,,,,,,,0.124464169,0.130818302,0.137056719,0.222697182,,,,,,,0.025860763,0.031629276,0.038253941,0.119484302,,,,,,,0.024720844,0.02138048,0.007046414,0.006629278,,,,,,,0.806318341,1.030037799,0.953302272,2.398366977,,,,,,,0.002846618,0.003865132,0.005081382,0.021847194,,,,,,,0.038977354,0.023085679,0.023709462,0.093796972,,,,,,,23.16890893,26.96085356,28.68201052,65.12638585,,,,,,,1129.109949,1118.055952,1105.191621,1038.892368,,,,,,,0.034541167,0.027634648,0.028546342,0.049991953,,,,,,,0.034068787,0.034061267,0.034007385,0.033739247,,,,,,,1.984925694,2.100821648,1.037796036,3.227838056,,,,,,,0.007223443,0.01090138,0.014174151,0.06554513,,,,,,,0.108467248,0.115451178,0.120895705,0.21806974,,,,,,,0.025475027,0.031765679,0.037428039,0.127573805,,,,,,,0.042644074,0.021397602,0.007050466,0.006627517,,,,,,,0.835919472,1.001190638,0.92708845,2.280339728,,,,,,,0.002118066,0.003067895,0.003886029,0.011719568,,,,,,,0.027102915,0.019232367,0.019337561,0.090345255,,,,,,,20.80591582,26.69762518,28.29012513,63.13582235,,,,,,,1142.669794,1133.480297,1120.004302,1051.908608,,,,,,,0.037488712,0.030148114,0.031117079,0.054356213,,,,,,,0.034345854,0.034339136,0.034290964,0.034051273,,,,,,,1.763977002,1.96114895,0.967187397,3.060677234,,,,,,,0.006511238,0.010117433,0.012766855,0.037776734,,,,,,,0.122619427,0.129466735,0.133200838,0.175845991,,,,,,,0.025754402,0.031955326,0.03633596,0.079389955,,,,,,,0.024875174,0.021692799,0.007144964,0.006710553,,,,,,,0.874238547,1.125704593,1.030427504,2.442617242,,,,,,,0.002072232,0.002999657,0.004009066,0.013194011,,,,,,,0.026911734,0.018635416,0.01879335,0.087976389,,,,,,,21.35313644,27.0954187,27.6884207,62.97721657,,,,,,,1132.240999,1122.810238,1109.436484,1041.612899,,,,,,,0.035385229,0.028397661,0.029320063,0.051269193,,,,,,,0.034068601,0.03406129,0.034008951,0.033748394,,,,,,,1.800609844,2.003941351,0.984292718,3.098790212,,,,,,,0.006362581,0.009883397,0.012926671,0.042196131,,,,,,,0.112171508,0.118884503,0.123638214,0.175709992,,,,,,,0.024220282,0.03028301,0.03542138,0.086100541,,,,,,,0.02476593,0.021488592,0.007077545,0.006644873,,,,,,,0.835060877,1.054295865,0.973348702,2.32738116,,,,,,,0.002054582,0.003015071,0.003818525,0.01168484,,,,,,,0.027218557,0.018606459,0.018794987,0.087382533,,,,,,,22.00556167,26.87080026,28.9638659,63.70557239,,,,,,,1156.407807,1147.449332,1133.734479,1064.820451,,,,,,,0.036114872,0.028938841,0.029886059,0.052298143,,,,,,,0.034316169,0.034308956,0.034257081,0.033999173,,,,,,,1.834356847,1.988024157,0.981565109,3.080662415,,,,,,,0.006551632,0.010228428,0.012931933,0.0386363,,,,,,,0.11392865,0.120888333,0.124865865,0.169544314,,,,,,,0.024713801,0.030997174,0.035467394,0.079697066,,,,,,,0.034639154,0.02196014,0.007232553,0.006792923,,,,,,,0.865478679,1.087890473,0.999262745,2.369863472,,,,,,,0.002208463,0.003154766,0.004275652,0.015497537,,,,,,,0.031859634,0.020199175,0.021091393,0.093329251,,,,,,,24.29830165,28.15924636,29.88786639,66.33420535,,,,,,,1142.80621,1133.083765,1119.901973,1052.740479,,,,,,,0.036369422,0.029210528,0.030155518,0.05270973,,,,,,,0.034304481,0.034296973,0.034243064,0.033974849,,,,,,,1.954274026,2.059621975,1.092892861,3.392372289,,,,,,,0.006530628,0.010091696,0.013424064,0.049228222,,,,,,,0.117042251,0.123747041,0.129015226,0.193637703,,,,,,,0.025211913,0.031276184,0.036935254,0.099041303,,,,,,,0.038621186,0.019440766,0.007038708,0.006616647,,,,,,,0.874513593,1.061886458,1.00458304,2.424126559,,,,,,,0.001875488,0.002779605,0.003824752,0.012355264,,,,,,,0.026775774,0.018804801,0.021458747,0.09695384,,,,,,,23.79177085,28.82026192,31.86996843,69.43220624,,,,,,,1141.642579,1132.631498,1119.759085,1053.941153,,,,,,,0.037583446,0.030097208,0.031085374,0.05441289,,,,,,,0.034681619,0.03467453,0.034623744,0.034371128,,,,,,,1.206350259,1.315135985,1.047995069,3.298938482,,,,,,,0.006144533,0.009625423,0.012982692,0.041235285,,,,,,,0.117995066,0.124584056,0.129871494,0.179019231,,,,,,,0.024525065,0.030490082,0.036189393,0.084721189,,,,,,,0.014424575,0.010298354,0.006607745,0.006219271,,,,,,,0.767432603,0.946818007,0.981297912,2.476507177,,,,, +Bus,E0,2015,,,0.002163338,0.003454457,0.00466702,0.009401064,,,,,,,0.020271535,0.019150296,0.020123077,0.024435848,,,,,,,11.44080197,18.68874929,23.30516712,30.36621613,,,,,,,1187.340028,1173.050263,1158.694201,1106.30557,,,,,,,0.006915996,0.007245081,0.007577273,0.021570042,,,,,,,0.034700866,0.03464296,0.034584976,0.034368165,,,,,,,0.954829404,0.512183126,0.53407307,1.079448363,,,,,,,0.007020256,0.011033772,0.014640959,0.028552502,,,,,,,0.121590234,0.128043547,0.13380445,0.15635315,,,,,,,0.026357372,0.033190972,0.039415725,0.063497542,,,,,,,0.022723575,0.007483366,0.007391782,0.007057573,,,,,,,0.518763687,0.59593808,0.647947113,1.08313211,,,,,,,0.002069016,0.003318445,0.004471146,0.008651566,,,,,,,0.018417335,0.017540277,0.018500924,0.022660027,,,,,,,11.16365852,18.03917163,22.4815706,29.37136704,,,,,,,1193.60233,1178.990716,1164.297577,1111.071588,,,,,,,0.006893334,0.007216167,0.007542026,0.021429665,,,,,,,0.034612572,0.0345516,0.034490459,0.034262297,,,,,,,0.942989978,0.504264646,0.525622447,1.061394509,,,,,,,0.00690334,0.010881971,0.014422839,0.026981981,,,,,,,0.122808732,0.129126141,0.134681057,0.154280756,,,,,,,0.026293409,0.033035097,0.039106149,0.06068362,,,,,,,0.022843426,0.007521261,0.007427528,0.007087978,,,,,,,0.556201665,0.62980842,0.680280415,1.103003901,,,,,,,0.001838542,0.003252027,0.004391549,0.008673631,,,,,,,0.019899444,0.018496187,0.019450992,0.023841298,,,,,,,12.56781709,18.66678485,23.26063654,30.41158253,,,,,,,1186.783899,1172.340164,1157.818384,1104.92896,,,,,,,0.007291978,0.007628592,0.007968375,0.022603266,,,,,,,0.034670165,0.034616608,0.034562941,0.034362438,,,,,,,0.925883063,0.494968657,0.515948433,1.044918277,,,,,,,0.006172103,0.010339007,0.013701955,0.026018074,,,,,,,0.132402218,0.138958592,0.143978529,0.162456443,,,,,,,0.026412358,0.033530906,0.039294667,0.060488479,,,,,,,0.022712934,0.007478834,0.007386194,0.007048791,,,,,,,0.596598892,0.675231399,0.726986567,1.166810152,,,,,,,0.002122127,0.003421839,0.004623316,0.00933229,,,,,,,0.019878396,0.018414262,0.019307709,0.023438488,,,,,,,10.76177476,17.60370283,21.92500552,28.79362446,,,,,,,1188.268875,1173.538785,1158.719971,1105.231338,,,,,,,0.006579294,0.006892801,0.007209267,0.020525882,,,,,,,0.034359223,0.034298633,0.034237944,0.034011085,,,,,,,0.930238581,0.49894933,0.520288601,1.049184875,,,,,,,0.006826009,0.010821216,0.014351669,0.02789528,,,,,,,0.113618605,0.120197237,0.125967373,0.148422317,,,,,,,0.025069396,0.031899184,0.038017093,0.061594184,,,,,,,0.022741349,0.007486481,0.007391945,0.00705072,,,,,,,0.607867078,0.672643691,0.717062911,1.121076422,,,,,,,0.001877797,0.002913324,0.003895033,0.006577943,,,,,,,0.014941135,0.014831318,0.015869272,0.019952374,,,,,,,10.60354471,17.41974926,21.70411002,28.41528505,,,,,,,1205.772949,1190.379229,1174.869521,1119.650716,,,,,,,0.007204616,0.007537825,0.00787417,0.022340921,,,,,,,0.034606464,0.034552178,0.034497775,0.034294572,,,,,,,0.865343477,0.460091662,0.479627709,0.982824919,,,,,,,0.006608533,0.010164917,0.013422403,0.02188598,,,,,,,0.13092101,0.13615865,0.140897857,0.151506387,,,,,,,0.026793997,0.032711944,0.038193264,0.052300447,,,,,,,0.023076347,0.007593912,0.007494971,0.007142708,,,,,,,0.701053345,0.77010277,0.821316523,1.242662458,,,,,,,0.001828807,0.002966241,0.003971675,0.006924047,,,,,,,0.014950465,0.014573923,0.015529108,0.019378698,,,,,,,10.84680354,17.01037414,21.18159017,27.79042046,,,,,,,1194.759441,1179.465647,1164.06236,1109.119501,,,,,,,0.006776142,0.007093332,0.007413508,0.021063313,,,,,,,0.034351334,0.034292382,0.034233314,0.034012652,,,,,,,0.885953774,0.471317247,0.491324235,0.997621013,,,,,,,0.006441754,0.010237955,0.013528368,0.022759272,,,,,,,0.119335378,0.125290943,0.130335179,0.143330833,,,,,,,0.025089571,0.031471562,0.037051096,0.05264077,,,,,,,0.022865568,0.00752429,0.007426028,0.007075525,,,,,,,0.66983659,0.734108005,0.780437621,1.174544897,,,,,,,0.001861009,0.002888154,0.00385482,0.00647889,,,,,,,0.014473997,0.014478252,0.015511769,0.019432748,,,,,,,10.74447301,17.91608871,22.36925056,29.12389555,,,,,,,1220.271318,1204.624094,1188.850741,1133.097562,,,,,,,0.006897622,0.007223356,0.007552175,0.021479496,,,,,,,0.034595923,0.034537559,0.034479145,0.034260749,,,,,,,0.876780243,0.467529244,0.487430986,0.994734587,,,,,,,0.006665971,0.010277807,0.01357354,0.022148445,,,,,,,0.121289784,0.126814057,0.131809199,0.143291524,,,,,,,0.025650878,0.031673229,0.037231105,0.051562289,,,,,,,0.023353821,0.007684787,0.007584162,0.00722849,,,,,,,0.685994838,0.751512861,0.799885868,1.205364244,,,,,,,0.001874658,0.003094841,0.004154204,0.007567129,,,,,,,0.01649818,0.016395156,0.017429753,0.021563523,,,,,,,11.42182541,18.46577119,23.0168507,30.00035368,,,,,,,1204.433779,1189.345428,1174.157278,1119.738493,,,,,,,0.00697408,0.007299041,0.007627069,0.021658571,,,,,,,0.034595737,0.034534969,0.034474105,0.0342469,,,,,,,0.909803752,0.524218401,0.546335528,1.103932204,,,,,,,0.006500399,0.010521447,0.013925323,0.024481411,,,,,,,0.124353482,0.130671942,0.135859159,0.151161899,,,,,,,0.025831997,0.032612738,0.038396625,0.056312925,,,,,,,0.020664274,0.007475135,0.007379712,0.007037731,,,,,,,0.675263116,0.749429615,0.797910075,1.215188019,,,,,,,0.001721649,0.0028811,0.003853188,0.006583875,,,,,,,0.014826136,0.016582614,0.017819055,0.022210995,,,,,,,12.0849779,19.87479364,24.81318387,32.05720093,,,,,,,1203.113956,1188.319272,1173.445175,1119.819529,,,,,,,0.007170562,0.007510372,0.007853403,0.022345421,,,,,,,0.034955627,0.034898474,0.03484125,0.034627356,,,,,,,0.561156076,0.495779933,0.517176922,1.064307106,,,,,,,0.006256755,0.010269249,0.013589422,0.022585003,,,,,,,0.125967143,0.132234319,0.137171955,0.149074731,,,,,,,0.025594325,0.032357384,0.037948218,0.052958552,,,,,,,0.010941917,0.007012446,0.006924677,0.006608157,,,,,,,0.603536298,0.705774495,0.76176136,1.211787436,,,, +Bus,E0,2020,,,,0.00210576,0.00343001,0.004607115,0.007224801,,,,,,,0.02041792,0.019681993,0.020713066,0.023321642,,,,,,,11.30126491,19.36488213,23.74862885,27.01671163,,,,,,,1117.428769,1104.137683,1090.897147,1091.396871,,,,,,,0.007029477,0.007351616,0.007683537,0.012092779,,,,,,,0.034658245,0.034603915,0.034549729,0.034443335,,,,,,,0.440446198,0.511126395,0.530189939,0.633580836,,,,,,,0.006848178,0.010960936,0.014462044,0.021578349,,,,,,,0.12033444,0.127088665,0.132668929,0.144375152,,,,,,,0.025873386,0.032955558,0.038995998,0.051472993,,,,,,,0.007128532,0.007043743,0.006959277,0.006962465,,,,,,,0.467630277,0.573055597,0.619950774,0.810898619,,,,,,,0.00203085,0.003298961,0.004418846,0.006858593,,,,,,,0.018456892,0.018096718,0.019105493,0.021454407,,,,,,,10.8814078,18.69082648,22.90822861,26.05379177,,,,,,,1123.273839,1109.679139,1096.120827,1096.207187,,,,,,,0.007004665,0.007320672,0.007646273,0.012018729,,,,,,,0.034568104,0.034510712,0.034453473,0.034341342,,,,,,,0.433728507,0.50314283,0.521719674,0.623014373,,,,,,,0.006763207,0.010812945,0.014250113,0.021174671,,,,,,,0.121604168,0.128161932,0.133543522,0.144689448,,,,,,,0.025870479,0.032806818,0.038699408,0.050734184,,,,,,,0.00716582,0.007079095,0.006992601,0.006993151,,,,,,,0.50049273,0.604157719,0.649537648,0.83726851,,,,,,,0.001983102,0.003228843,0.004333802,0.006782339,,,,,,,0.019653267,0.019023339,0.020035714,0.022562559,,,,,,,11.27754818,19.33577017,23.70779016,26.97409392,,,,,,,1117.061307,1103.621875,1090.222895,1090.31984,,,,,,,0.007408056,0.007737559,0.00807707,0.012681334,,,,,,,0.034631847,0.034581364,0.034531032,0.034432209,,,,,,,0.425927278,0.493897211,0.512131982,0.612052554,,,,,,,0.0064201,0.010264032,0.0135238,0.020115799,,,,,,,0.131891636,0.137862568,0.142713337,0.152887171,,,,,,,0.02669558,0.033275656,0.038861022,0.050347958,,,,,,,0.007126188,0.007040452,0.006954975,0.006955594,,,,,,,0.539381485,0.647002989,0.693148315,0.888722339,,,,,,,0.002082087,0.003391988,0.004556197,0.007169924,,,,,,,0.019787022,0.01887659,0.019831029,0.022390912,,,,,,,10.61611111,18.23685765,22.34213121,25.44052818,,,,,,,1118.079535,1104.376034,1090.700742,1090.519264,,,,,,,0.006687407,0.006994293,0.007310502,0.011506989,,,,,,,0.034314454,0.034257599,0.034200908,0.034089654,,,,,,,0.4287221,0.497856262,0.516424196,0.616693947,,,,,,,0.006712393,0.010738699,0.01416143,0.021137235,,,,,,,0.112562139,0.119302926,0.12488478,0.136630202,,,,,,,0.024697821,0.031655261,0.037584612,0.04987998,,,,,,,0.007132685,0.007045264,0.006958024,0.006956866,,,,,,,0.54870799,0.641640403,0.681628459,0.860868656,,,,,,,0.001800106,0.002901903,0.003857256,0.005830239,,,,,,,0.014787798,0.015466343,0.016525129,0.018454251,,,,,,,10.46070005,18.05630238,22.12076188,25.13068126,,,,,,,1134.772876,1120.442545,1106.107532,1105.044181,,,,,,,0.007319517,0.007645688,0.007981769,0.012533576,,,,,,,0.034567482,0.034516349,0.034465364,0.034365251,,,,,,,0.395326949,0.459002039,0.475977439,0.570242817,,,,,,,0.006338819,0.010098842,0.013261015,0.019485038,,,,,,,0.129374671,0.135112778,0.13970276,0.148897844,,,,,,,0.026142048,0.032482664,0.037803881,0.048360851,,,,,,,0.007239177,0.00714776,0.007056309,0.007049526,,,,,,,0.628194549,0.734320798,0.779774172,0.975267187,,,,,,,0.001829354,0.002953349,0.003931049,0.005971678,,,,,,,0.014792464,0.015163511,0.016147017,0.018045853,,,,,,,10.21306997,17.62524792,21.58494383,24.53472513,,,,,,,1124.170697,1109.936914,1095.706756,1094.654664,,,,,,,0.006885528,0.007196014,0.007515933,0.011813395,,,,,,,0.034308371,0.034252903,0.034197624,0.034089167,,,,,,,0.404864858,0.470202465,0.487578945,0.582783052,,,,,,,0.006379763,0.010170868,0.013363749,0.019676707,,,,,,,0.118329761,0.124364213,0.129249224,0.139084748,,,,,,,0.02482055,0.031254986,0.036669355,0.04747026,,,,,,,0.007171542,0.007080739,0.006989959,0.006983248,,,,,,,0.603845051,0.699707683,0.740763451,0.922830907,,,,,,,0.001787614,0.002876914,0.003817816,0.005746482,,,,,,,0.014382607,0.015116262,0.016168738,0.018031903,,,,,,,10.78087846,18.59338579,22.82089436,25.93259768,,,,,,,1148.298715,1133.732802,1119.14739,1118.084588,,,,,,,0.007009945,0.007328814,0.007657361,0.012044232,,,,,,,0.034553184,0.034498404,0.034443721,0.034336464,,,,,,,0.401533329,0.466415837,0.48371635,0.579241369,,,,,,,0.006410469,0.010213941,0.013414549,0.019719956,,,,,,,0.119876682,0.125878998,0.130721001,0.140398894,,,,,,,0.025033646,0.031461014,0.036858813,0.047561381,,,,,,,0.007325464,0.007232544,0.007139497,0.007132716,,,,,,,0.616590786,0.715933148,0.759039035,0.947229801,,,,,,,0.001903504,0.003080575,0.004111102,0.006297745,,,,,,,0.01680087,0.017013819,0.018082458,0.020240739,,,,,,,11.12740582,19.13330494,23.45015926,26.64236363,,,,,,,1133.450579,1119.409647,1105.381082,1104.883959,,,,,,,0.007086138,0.00740424,0.007732002,0.012148585,,,,,,,0.034551668,0.034494462,0.034437412,0.034325634,,,,,,,0.450775729,0.523001361,0.542223721,0.647807587,,,,,,,0.006550166,0.010458333,0.013764168,0.020351669,,,,,,,0.123509885,0.12969525,0.134723371,0.14497221,,,,,,,0.025749706,0.032394002,0.0380112,0.049324204,,,,,,,0.00712379,0.007035576,0.00694744,0.006944369,,,,,,,0.614757173,0.715452214,0.758928839,0.947524218,,,,,,,0.001783053,0.002875167,0.003822523,0.005768143,,,,,,,0.016367259,0.017337788,0.018593485,0.020727664,,,,,,,12.00644125,20.59826249,25.28353811,28.68148184,,,,,,,1132.314034,1118.548664,1104.813984,1104.790302,,,,,,,0.007287744,0.007620383,0.007963128,0.01252872,,,,,,,0.034913817,0.034860142,0.034806615,0.034701559,,,,,,,0.425917426,0.494784821,0.513418772,0.61666954,,,,,,,0.006404126,0.010223402,0.013451464,0.019826767,,,,,,,0.125343548,0.131274562,0.136067381,0.145684453,,,,,,,0.025722028,0.032168592,0.037604808,0.048411075,,,,,,,0.006681916,0.006600691,0.006519647,0.006519507,,,,,,,0.56646576,0.676858246,0.726610832,0.928038267,,, +Bus,E0,2025,,,,,0.002104838,0.003426708,0.004606604,0.007065856,,,,,,,0.020460207,0.019758885,0.020738108,0.022991254,,,,,,,11.34445694,19.41748995,23.82213088,26.19624127,,,,,,,1117.388331,1104.166528,1090.92234,1079.520648,,,,,,,0.007039934,0.007370461,0.007696657,0.008502209,,,,,,,0.034657946,0.034603725,0.03454961,0.034466736,,,,,,,0.439362241,0.509104552,0.528559352,0.525235514,,,,,,,0.006844167,0.01094454,0.014455802,0.021522537,,,,,,,0.120318459,0.127052749,0.132654891,0.144717546,,,,,,,0.025865707,0.032927788,0.038986081,0.051341361,,,,,,,0.007128276,0.007043928,0.006959437,0.006886702,,,,,,,0.465587209,0.569279075,0.615955316,0.750877853,,,,,,,0.002029963,0.003295506,0.004418134,0.006743756,,,,,,,0.018494742,0.018164806,0.019127635,0.021176492,,,,,,,10.92247117,18.74052118,22.97875706,25.24641279,,,,,,,1123.228326,1109.701189,1096.143005,1084.308595,,,,,,,0.007014912,0.007339154,0.007659146,0.008453136,,,,,,,0.034567755,0.034510491,0.034453364,0.034365869,,,,,,,0.432659164,0.501147581,0.520112464,0.516566246,,,,,,,0.006759316,0.010796406,0.014243672,0.021161996,,,,,,,0.12158807,0.128125424,0.133528972,0.145159457,,,,,,,0.025862954,0.032778686,0.038689022,0.050704492,,,,,,,0.00716553,0.007079235,0.006992742,0.006917245,,,,,,,0.497706881,0.59960372,0.644874091,0.775323368,,,,,,,0.001982787,0.003225632,0.004333211,0.006637479,,,,,,,0.019700093,0.019105769,0.020066931,0.022268265,,,,,,,11.31905422,19.39447546,23.78750326,26.18279958,,,,,,,1117.020573,1103.650945,1090.249292,1078.577365,,,,,,,0.007418748,0.007756835,0.008090493,0.008921985,,,,,,,0.034631551,0.034581174,0.034530926,0.034453911,,,,,,,0.424894015,0.491939258,0.510550188,0.50705363,,,,,,,0.006417491,0.010248197,0.013517487,0.020075797,,,,,,,0.13187703,0.137826766,0.142698588,0.153367767,,,,,,,0.026690247,0.033248689,0.03885086,0.050263671,,,,,,,0.00712593,0.007040638,0.006955144,0.006880684,,,,,,,0.536112231,0.64150251,0.687885886,0.82087217,,,,,,,0.00208055,0.003387358,0.004554234,0.006979555,,,,,,,0.019835309,0.018960789,0.019862666,0.022080718,,,,,,,10.66194641,18.29467698,22.42021021,24.6797677,,,,,,,1118.035919,1104.400908,1090.724462,1078.690737,,,,,,,0.006697363,0.007012245,0.007322997,0.008090102,,,,,,,0.034314117,0.03425739,0.034200774,0.034114094,,,,,,,0.42764423,0.495851791,0.514811264,0.511361803,,,,,,,0.006707006,0.01071969,0.014152306,0.021039481,,,,,,,0.112544123,0.119261987,0.124864969,0.136815033,,,,,,,0.024687723,0.031622662,0.037569326,0.049653303,,,,,,,0.007132405,0.007045423,0.006958174,0.006881407,,,,,,,0.544347606,0.635752026,0.676119374,0.793987691,,,,,,,0.001799202,0.002898336,0.003856218,0.005807532,,,,,,,0.014815359,0.015514707,0.016539769,0.018239639,,,,,,,10.49985423,18.10172893,22.18734308,24.34008855,,,,,,,1134.71832,1120.449187,1106.120072,1093.183799,,,,,,,0.007330101,0.007664771,0.007995051,0.008817669,,,,,,,0.034567182,0.034516159,0.034465254,0.034387248,,,,,,,0.394339316,0.457155329,0.474483937,0.470925348,,,,,,,0.006335062,0.010082933,0.01325468,0.019568204,,,,,,,0.129357837,0.135076673,0.139687601,0.149680792,,,,,,,0.026134575,0.032455295,0.037793298,0.048557159,,,,,,,0.007238829,0.007147801,0.00705639,0.006973863,,,,,,,0.623071526,0.727049562,0.772329914,0.905329418,,,,,,,0.00182861,0.002949777,0.003930031,0.005933172,,,,,,,0.014823037,0.015216961,0.016165071,0.017862518,,,,,,,10.25054524,17.67111062,21.65151492,23.75761359,,,,,,,1124.11695,1109.94602,1095.720545,1082.879998,,,,,,,0.006895598,0.007214177,0.007528576,0.008308809,,,,,,,0.034308026,0.034252703,0.034197496,0.034112945,,,,,,,0.403860205,0.468313732,0.48605803,0.482452265,,,,,,,0.006376364,0.010154737,0.013357234,0.019740614,,,,,,,0.118314899,0.124328529,0.129234237,0.139733529,,,,,,,0.024813888,0.03122739,0.036658588,0.047614032,,,,,,,0.007171199,0.007080798,0.006990047,0.006908132,,,,,,,0.599239803,0.693018345,0.734064459,0.857161625,,,,,,,0.001785782,0.00287207,0.003815488,0.005724704,,,,,,,0.014404545,0.015157908,0.016178539,0.017825056,,,,,,,10.8300115,18.65178525,22.89985629,25.21106201,,,,,,,1148.242872,1133.735596,1119.158325,1105.982961,,,,,,,0.007020296,0.007347463,0.007670343,0.008469501,,,,,,,0.034552883,0.034498173,0.034443595,0.034360001,,,,,,,0.40050148,0.464512912,0.482180425,0.478571961,,,,,,,0.006404074,0.010194541,0.013404863,0.019781248,,,,,,,0.11985586,0.125836555,0.130699547,0.141070601,,,,,,,0.025021715,0.031427551,0.03684233,0.047717024,,,,,,,0.007325108,0.007232561,0.007139565,0.007055516,,,,,,,0.611423794,0.708887784,0.751739504,0.880126716,,,,,,,0.001902998,0.003077826,0.004111009,0.006239101,,,,,,,0.016834058,0.017072887,0.018101203,0.020016604,,,,,,,11.16440255,19.17489047,23.51355303,25.78048718,,,,,,,1133.400329,1119.422312,1105.397308,1092.929662,,,,,,,0.007096462,0.00742285,0.007744961,0.008545414,,,,,,,0.034551348,0.034494253,0.0344373,0.034350051,,,,,,,0.449675308,0.52093755,0.540561078,0.536688295,,,,,,,0.006547561,0.010444315,0.013760009,0.020405392,,,,,,,0.123496126,0.129663436,0.134713006,0.145624504,,,,,,,0.025744351,0.032370114,0.038004626,0.049441064,,,,,,,0.007123476,0.007035655,0.006947543,0.006869235,,,,,,,0.610750136,0.709694414,0.753068808,0.882422893,,,,,,,0.00178349,0.0028736,0.003823558,0.005771726,,,,,,,0.016393726,0.017387296,0.018606426,0.020535338,,,,,,,12.03536908,20.62936783,25.33753377,27.73557572,,,,,,,1132.261531,1118.556635,1104.824875,1092.78321,,,,,,,0.007298534,0.007639846,0.007976675,0.008809506,,,,,,,0.034913499,0.034859943,0.034806484,0.034724641,,,,,,,0.424906616,0.492855595,0.511852823,0.508699384,,,,,,,0.006404308,0.010213267,0.01345105,0.019954328,,,,,,,0.125334946,0.131250071,0.136064084,0.146531769,,,,,,,0.025721474,0.032151297,0.037604598,0.048689753,,,,,,,0.006681606,0.006600739,0.006519713,0.006448664,,,,,,,0.564079744,0.672117113,0.72099846,0.865746104,, +Bus,E0,2030,,,,,,0.002103285,0.003426204,0.004585892,0.007024154,,,,,,,0.020564677,0.019819826,0.020789338,0.022980176,,,,,,,11.40972806,19.49825035,24.02627319,26.10843467,,,,,,,1117.30387,1104.078482,1090.835043,1071.131272,,,,,,,0.007059473,0.007384765,0.007707123,0.008197686,,,,,,,0.034657301,0.034603156,0.034549114,0.034464779,,,,,,,0.43929419,0.509231308,0.528155823,0.524312228,,,,,,,0.00683484,0.01093833,0.014405888,0.021414714,,,,,,,0.120284004,0.127026605,0.13253938,0.144435695,,,,,,,0.025848305,0.032916242,0.038894246,0.051136084,,,,,,,0.007127734,0.007043366,0.00695888,0.006833182,,,,,,,0.464873122,0.569001738,0.613727485,0.742110245,,,,,,,0.002028261,0.0032948,0.004398831,0.006707168,,,,,,,0.018589146,0.018222032,0.019181191,0.021179741,,,,,,,10.98527013,18.81857639,23.17873239,25.16053769,,,,,,,1123.135771,1109.608207,1096.05176,1075.883275,,,,,,,0.007034079,0.007353183,0.007669412,0.008150645,,,,,,,0.034567063,0.034509908,0.034452827,0.034363773,,,,,,,0.432586013,0.501267873,0.519712152,0.515653188,,,,,,,0.006749839,0.010789987,0.014195047,0.021059173,,,,,,,0.121552743,0.128098403,0.133416492,0.144889323,,,,,,,0.025845145,0.032766619,0.038600182,0.050510707,,,,,,,0.00716494,0.007078643,0.006992161,0.006863497,,,,,,,0.496335981,0.598839457,0.639376743,0.767776315,,,,,,,0.001981243,0.003225052,0.004312801,0.006599042,,,,,,,0.019809304,0.019171712,0.020157828,0.022238981,,,,,,,11.38841106,19.48031802,24.02767514,26.07575758,,,,,,,1116.935841,1103.563388,1090.16201,1070.225636,,,,,,,0.007438736,0.007771465,0.008101193,0.008602976,,,,,,,0.034630952,0.034580651,0.034530445,0.034452127,,,,,,,0.424819793,0.492053539,0.510119412,0.506177348,,,,,,,0.006408368,0.010241908,0.013467906,0.019975872,,,,,,,0.13183995,0.137797803,0.14258148,0.153092341,,,,,,,0.026672788,0.033236636,0.038759461,0.050071696,,,,,,,0.007125388,0.00704008,0.006954586,0.006827405,,,,,,,0.533723377,0.640037992,0.6787337,0.814647793,,,,,,,0.002078211,0.00338582,0.004525418,0.006941913,,,,,,,0.019944705,0.019025088,0.01994569,0.022039258,,,,,,,10.72969608,18.378539,22.668368,24.56579225,,,,,,,1117.94588,1104.309145,1090.634972,1070.288902,,,,,,,0.006715979,0.00702587,0.007332972,0.007800314,,,,,,,0.034313453,0.034256798,0.034200252,0.034112036,,,,,,,0.427551266,0.495952526,0.514290946,0.510517755,,,,,,,0.006696045,0.010711349,0.014086792,0.020942108,,,,,,,0.112508023,0.119232917,0.124717534,0.136560224,,,,,,,0.024667518,0.031607348,0.037448198,0.049467461,,,,,,,0.007131832,0.007044837,0.006957605,0.006827809,,,,,,,0.54131002,0.633777236,0.664559148,0.789143839,,,,,,,0.001797287,0.002897272,0.003840992,0.005781693,,,,,,,0.014889252,0.015565877,0.016595558,0.018273557,,,,,,,10.5594514,18.17638622,22.37888413,24.26030564,,,,,,,1134.60819,1120.342411,1106.020611,1084.717813,,,,,,,0.007349889,0.00767925,0.00800565,0.008502353,,,,,,,0.03456659,0.034515626,0.03446478,0.034385422,,,,,,,0.394262914,0.457259287,0.474119649,0.470072706,,,,,,,0.00632576,0.010076458,0.013212214,0.019477048,,,,,,,0.129320679,0.135047361,0.13958753,0.149433696,,,,,,,0.026116603,0.032442601,0.037716622,0.048388949,,,,,,,0.007238127,0.00714712,0.007055755,0.006919856,,,,,,,0.619994386,0.725005415,0.760853974,0.897779674,,,,,,,0.001826712,0.002948744,0.00391402,0.005905629,,,,,,,0.014900354,0.015268771,0.016229476,0.017883622,,,,,,,10.30992687,17.74546965,21.84880591,23.67318462,,,,,,,1124.009179,1109.840844,1095.622404,1074.461507,,,,,,,0.006914433,0.00722796,0.007538667,0.00801149,,,,,,,0.034307375,0.034252117,0.034196986,0.034110936,,,,,,,0.403781119,0.468419291,0.485673071,0.4815896,,,,,,,0.006366952,0.01014815,0.013312977,0.019648048,,,,,,,0.118280157,0.124301369,0.129132581,0.139491277,,,,,,,0.024796099,0.031214853,0.036578912,0.047443369,,,,,,,0.007170512,0.007080127,0.00698942,0.006854427,,,,,,,0.596170361,0.690976712,0.722588305,0.85069678,,,,,,,0.001783082,0.002870044,0.003794861,0.005704307,,,,,,,0.014471886,0.015204287,0.016210113,0.017874503,,,,,,,10.89783032,18.73627742,23.14502524,25.10581882,,,,,,,1148.12772,1133.626055,1119.057221,1097.399456,,,,,,,0.007039637,0.00736162,0.007680704,0.008166284,,,,,,,0.034552229,0.034497601,0.034443093,0.034358051,,,,,,,0.400404728,0.464602078,0.481719293,0.477749874,,,,,,,0.006392656,0.010185588,0.013346056,0.019702022,,,,,,,0.119816685,0.125804262,0.130569311,0.140855864,,,,,,,0.025000277,0.031410701,0.036737578,0.04757149,,,,,,,0.007324374,0.007231861,0.007138921,0.007000758,,,,,,,0.608561716,0.706957336,0.740943989,0.872503061,,,,,,,0.001901646,0.003077513,0.004098396,0.006205142,,,,,,,0.016919177,0.017128223,0.018156601,0.02003822,,,,,,,11.22281601,19.24766425,23.67114579,25.7187391,,,,,,,1133.296624,1119.320752,1105.299779,1084.446226,,,,,,,0.007115757,0.007436974,0.007755291,0.008239709,,,,,,,0.034550676,0.034493669,0.034436738,0.034347964,,,,,,,0.449611484,0.521075806,0.540250486,0.53567922,,,,,,,0.006539561,0.010439569,0.013726717,0.020300499,,,,,,,0.123463021,0.129639017,0.134631557,0.145351659,,,,,,,0.025728915,0.032360741,0.037943629,0.049246382,,,,,,,0.007122825,0.007035019,0.00694693,0.006815914,,,,,,,0.608618426,0.708358973,0.744971848,0.874584231,,,,,,,0.001782789,0.002874066,0.003820832,0.005738614,,,,,,,0.016472479,0.017442743,0.018650865,0.020590931,,,,,,,12.08838376,20.69522708,25.41906291,27.71888716,,,,,,,1132.154622,1118.453329,1104.72632,1084.307852,,,,,,,0.007318713,0.007654616,0.007987483,0.008494042,,,,,,,0.034912858,0.034859388,0.034805979,0.0347227,,,,,,,0.42488162,0.493019709,0.511741898,0.507649897,,,,,,,0.006398702,0.010211375,0.013441397,0.019842115,,,,,,,0.125305964,0.13123065,0.1360306,0.146246117,,,,,,,0.02571,0.032146667,0.037586238,0.048484848,,,,,,,0.006680979,0.006600128,0.006519132,0.006398645,,,,,,,0.563489204,0.671901965,0.718690542,0.854429643, +Bus,E0,2035,,,,,,,0.002105268,0.003410859,0.004596511,0.007031623,,,,,,,0.02062073,0.019862317,0.020779737,0.022940484,,,,,,,11.45805818,19.64659194,23.94738896,25.98212864,,,,,,,1117.426012,1104.212976,1090.942003,1070.423839,,,,,,,0.007070168,0.00739195,0.007705528,0.008191547,,,,,,,0.034657583,0.03460355,0.034549532,0.034465856,,,,,,,0.439331428,0.508843794,0.528354025,0.524230175,,,,,,,0.006839542,0.010901846,0.014430381,0.021425827,,,,,,,0.120301808,0.126962608,0.132601384,0.144488806,,,,,,,0.025858189,0.032851711,0.038940368,0.0511611,,,,,,,0.007128515,0.007044223,0.006959563,0.006828669,,,,,,,0.464488859,0.566869897,0.614611383,0.740479991,,,,,,,0.00203009,0.003280531,0.004408675,0.006713896,,,,,,,0.018640506,0.018266609,0.019169349,0.021138952,,,,,,,11.03185834,18.96384047,23.10112539,25.03662236,,,,,,,1123.255354,1109.740338,1096.160215,1075.176266,,,,,,,0.007044571,0.007360234,0.007667848,0.008144627,,,,,,,0.034567378,0.034510309,0.034453269,0.034364915,,,,,,,0.432620167,0.500885178,0.519908083,0.515575636,,,,,,,0.00675438,0.010754508,0.01421883,0.021069743,,,,,,,0.121570387,0.128037281,0.13347691,0.144941629,,,,,,,0.025854691,0.032704471,0.038644668,0.050534431,,,,,,,0.007165702,0.007079485,0.006992851,0.006858987,,,,,,,0.495478776,0.593413041,0.641827591,0.767680935,,,,,,,0.00198307,0.003209973,0.00432325,0.006606955,,,,,,,0.019870133,0.019251717,0.020129605,0.02217591,,,,,,,11.43991518,19.65689349,23.93229057,25.92715181,,,,,,,1117.058961,1103.698035,1090.270173,1069.520679,,,,,,,0.007449677,0.007778813,0.008099567,0.0085967,,,,,,,0.034631227,0.034581014,0.034530848,0.034453133,,,,,,,0.424852178,0.491644393,0.510331108,0.506123158,,,,,,,0.006412606,0.010205801,0.013492236,0.019989103,,,,,,,0.131858151,0.137736447,0.142645131,0.153154501,,,,,,,0.026682016,0.033173102,0.038805469,0.050100917,,,,,,,0.007126174,0.007040939,0.006955277,0.006822907,,,,,,,0.532105116,0.630834895,0.682842207,0.816481346,,,,,,,0.002079551,0.003364657,0.004539751,0.006956595,,,,,,,0.020004822,0.019097914,0.019921111,0.021981373,,,,,,,10.78003461,18.56174882,22.56840902,24.41184222,,,,,,,1118.066777,1104.44299,1090.744042,1069.587682,,,,,,,0.006726168,0.007032715,0.007331452,0.007794468,,,,,,,0.03431375,0.034257204,0.034200701,0.034113155,,,,,,,0.427567752,0.495455231,0.514541768,0.510508816,,,,,,,0.006699298,0.010663349,0.014118416,0.020966988,,,,,,,0.112522021,0.119143407,0.124793646,0.136639892,,,,,,,0.024674645,0.031521058,0.03750766,0.049518209,,,,,,,0.007132603,0.007045691,0.006958301,0.006823334,,,,,,,0.539205289,0.622141645,0.669750746,0.792461564,,,,,,,0.001798772,0.002886127,0.003848676,0.00578638,,,,,,,0.014931088,0.015611571,0.016580658,0.018231279,,,,,,,10.60380104,18.31478686,22.30447365,24.14114339,,,,,,,1134.718781,1120.470249,1106.131704,1084.013112,,,,,,,0.00736072,0.007686526,0.008004035,0.008496141,,,,,,,0.034566866,0.034516,0.034465174,0.034386439,,,,,,,0.394291652,0.456914491,0.474297149,0.469996476,,,,,,,0.006329976,0.01004579,0.013232928,0.019485135,,,,,,,0.129338291,0.134998374,0.139642195,0.149483528,,,,,,,0.026125469,0.03239022,0.037755006,0.048407923,,,,,,,0.007238834,0.007147935,0.007056465,0.006915361,,,,,,,0.617946978,0.713646491,0.765943925,0.899943053,,,,,,,0.001828226,0.00293699,0.003922107,0.00591077,,,,,,,0.014944133,0.015323154,0.016210538,0.017836798,,,,,,,10.35411655,17.8887399,21.77141844,23.55050729,,,,,,,1124.121584,1109.969192,1095.733261,1073.765014,,,,,,,0.006924741,0.007234885,0.00753713,0.008005576,,,,,,,0.034307668,0.034252511,0.034197414,0.034112037,,,,,,,0.403808049,0.468052843,0.485859917,0.481520764,,,,,,,0.00637111,0.010116081,0.013334544,0.019657264,,,,,,,0.118296536,0.124247865,0.129187302,0.139538946,,,,,,,0.024804762,0.031159716,0.036618655,0.047463786,,,,,,,0.007171228,0.007080944,0.00699013,0.006849985,,,,,,,0.594099092,0.67955703,0.727702974,0.853284448,,,,,,,0.001783975,0.002854912,0.003804918,0.005713541,,,,,,,0.014509168,0.015227468,0.01620613,0.01784661,,,,,,,10.9483274,18.91697776,23.0468493,24.95414654,,,,,,,1148.236441,1133.752631,1119.170273,1096.685468,,,,,,,0.007050221,0.007368733,0.007679132,0.008160204,,,,,,,0.034552505,0.034497988,0.034443539,0.034359115,,,,,,,0.40041799,0.46416456,0.481940327,0.477721355,,,,,,,0.006395354,0.010142473,0.0133741,0.019722606,,,,,,,0.119830148,0.125729583,0.130636852,0.140926553,,,,,,,0.025006312,0.031336683,0.036788434,0.047611879,,,,,,,0.007325068,0.007232669,0.007139644,0.006996203,,,,,,,0.606679906,0.69635047,0.745719017,0.874382613,,,,,,,0.001903641,0.003068221,0.004105008,0.006206971,,,,,,,0.016966229,0.017173489,0.018143158,0.019996033,,,,,,,11.26609189,19.3587264,23.61320472,25.62045052,,,,,,,1133.410812,1119.449668,1105.4109,1083.738169,,,,,,,0.007126321,0.007444066,0.007753721,0.008233653,,,,,,,0.034550987,0.034494064,0.034437205,0.034349112,,,,,,,0.449659296,0.520778955,0.540405044,0.535539255,,,,,,,0.006544978,0.010415675,0.013743337,0.020299777,,,,,,,0.123482505,0.129601985,0.134677591,0.145381815,,,,,,,0.025739894,0.03231965,0.037975042,0.049249747,,,,,,,0.007123544,0.007035829,0.006947628,0.006811463,,,,,,,0.607247233,0.700361287,0.748574636,0.875481776,,,,,,,0.001785177,0.00287206,0.003822715,0.005732719,,,,,,,0.016516322,0.017476134,0.018642676,0.020553843,,,,,,,12.1274205,20.74534739,25.39723136,27.66735324,,,,,,,1132.265361,1118.579313,1104.836001,1083.59685,,,,,,,0.007329756,0.007662031,0.007985841,0.008487711,,,,,,,0.034913153,0.034859756,0.03480641,0.034723763,,,,,,,0.42495343,0.492908093,0.51180461,0.507406746,,,,,,,0.00640572,0.010205133,0.01344699,0.019822594,,,,,,,0.125328588,0.131229797,0.136054293,0.146238649,,,,,,,0.025723662,0.032137387,0.037597678,0.048454423,,,,,,,0.006681633,0.006600871,0.00651978,0.00639445,,,,,,,0.563283204,0.669846313,0.719639707,0.851722511 +Bus,E0,2040,,,,,,,,0.002096106,0.003418435,0.004609244,,,,,,,,0.020662187,0.0198456,0.020768034,,,,,,,,11.55020534,19.58169528,23.85400495,,,,,,,,1117.63146,1104.393878,1091.12483,,,,,,,,0.007075683,0.007389437,0.007703547,,,,,,,,0.03465828,0.034604262,0.034550252,,,,,,,,0.439133228,0.509149484,0.52860797,,,,,,,,0.006817611,0.010920413,0.014460163,,,,,,,,0.120275618,0.127019976,0.132682053,,,,,,,,0.025821078,0.032887719,0.038997052,,,,,,,,0.007129826,0.007045378,0.006960729,,,,,,,,0.462477086,0.567918581,0.615900577,,,,,,,,0.002021564,0.003287605,0.004420502,,,,,,,,0.01868291,0.018248901,0.019155009,,,,,,,,11.12225264,18.90030699,23.00923533,,,,,,,,1123.46006,1109.923409,1096.34528,,,,,,,,0.007049982,0.007357767,0.007665905,,,,,,,,0.034568112,0.034511058,0.034454043,,,,,,,,0.432424944,0.501187728,0.520159372,,,,,,,,0.006733043,0.010772627,0.014247791,,,,,,,,0.121546235,0.128093932,0.133555883,,,,,,,,0.025819036,0.032739466,0.038699462,,,,,,,,0.00716701,0.007080653,0.006994033,,,,,,,,0.490081531,0.596059476,0.644784279,,,,,,,,0.001974063,0.003217457,0.004335791,,,,,,,,0.019947938,0.01921787,0.020095864,,,,,,,,11.5500141,19.57917752,23.81934975,,,,,,,,1117.264879,1103.88027,1090.453652,,,,,,,,0.007455314,0.007776245,0.008097535,,,,,,,,0.034631848,0.034581685,0.03453152,,,,,,,,0.424631908,0.491958923,0.510600584,,,,,,,,0.006390881,0.010224329,0.013521851,,,,,,,,0.131835556,0.137797042,0.142728635,,,,,,,,0.026645731,0.033209405,0.038862166,,,,,,,,0.007127487,0.007042101,0.006956448,,,,,,,,0.522708174,0.635196754,0.687801004,,,,,,,,0.002066945,0.0033749,0.004556894,,,,,,,,0.020075154,0.019067159,0.019891664,,,,,,,,10.89503906,18.48094072,22.45001866,,,,,,,,1118.273294,1104.627716,1090.929586,,,,,,,,0.006731421,0.007030324,0.007329563,,,,,,,,0.03431447,0.034257977,0.034201452,,,,,,,,0.427275192,0.495808106,0.514857429,,,,,,,,0.006670316,0.010687221,0.014156679,,,,,,,,0.112479104,0.119210092,0.124890442,,,,,,,,0.02462416,0.031566775,0.037580119,,,,,,,,0.00713392,0.00704687,0.006959484,,,,,,,,0.527333206,0.627581901,0.676036017,,,,,,,,0.001792117,0.002891778,0.00385797,,,,,,,,0.014971309,0.015593537,0.016562806,,,,,,,,10.69012009,18.25438864,22.21640621,,,,,,,,1134.921016,1120.658399,1106.321566,,,,,,,,0.007366304,0.007683983,0.008002029,,,,,,,,0.034567508,0.034516676,0.034465861,,,,,,,,0.394119411,0.45719071,0.474525576,,,,,,,,0.006311572,0.010061837,0.01325831,,,,,,,,0.129322834,0.135052556,0.139715143,,,,,,,,0.026095906,0.032421313,0.037802771,,,,,,,,0.007240123,0.007149136,0.007057675,,,,,,,,0.606436709,0.719006718,0.772079639,,,,,,,,0.001821199,0.002942916,0.003931873,,,,,,,,0.014993514,0.015300935,0.016187885,,,,,,,,10.4436365,17.82607204,21.67982016,,,,,,,,1124.324585,1110.157598,1095.922565,,,,,,,,0.006930054,0.007232464,0.007535218,,,,,,,,0.034308365,0.034253259,0.034198148,,,,,,,,0.403620311,0.468340961,0.486099534,,,,,,,,0.006351832,0.010132739,0.013360922,,,,,,,,0.118276499,0.12430041,0.129259391,,,,,,,,0.024773268,0.031191563,0.036667892,,,,,,,,0.007172523,0.007082147,0.006991335,,,,,,,,0.582483501,0.684931721,0.73386829,,,,,,,,0.001774885,0.002862328,0.00381701,,,,,,,,0.014529151,0.015219687,0.016201076,,,,,,,,11.06029499,18.83732093,22.93052792,,,,,,,,1148.438618,1133.943571,1119.360674,,,,,,,,0.007055678,0.007366252,0.007677164,,,,,,,,0.034553189,0.034498746,0.034444247,,,,,,,,0.400170595,0.464483174,0.482219493,,,,,,,,0.006369172,0.010164022,0.013408111,,,,,,,,0.119797149,0.125792017,0.130723988,,,,,,,,0.024963083,0.031376941,0.036850755,,,,,,,,0.007326357,0.007233887,0.007140857,,,,,,,,0.59608778,0.701355662,0.75148693,,,,,,,,0.001898119,0.003073006,0.004113015,,,,,,,,0.017006058,0.017155612,0.018126937,,,,,,,,11.33531652,19.31087222,23.54453496,,,,,,,,1133.613326,1119.63618,1105.598946,,,,,,,,0.007131762,0.007441584,0.007751764,,,,,,,,0.034551687,0.034494825,0.034437975,,,,,,,,0.449541573,0.521048406,0.540608121,,,,,,,,0.006530805,0.010428506,0.013763824,,,,,,,,0.12347349,0.129648432,0.134739663,,,,,,,,0.025717241,0.032345124,0.038014399,,,,,,,,0.007124818,0.007037001,0.006948809,,,,,,,,0.599174196,0.704194631,0.752917741,,,,,,,,0.001784051,0.002873454,0.003825127,,,,,,,,0.01654321,0.017464126,0.018632644,,,,,,,,12.15808331,20.72535426,25.37116496,,,,,,,,1132.465756,1118.764512,1105.02137,,,,,,,,0.007335456,0.007659442,0.007983793,,,,,,,,0.034913849,0.03486049,0.034807126,,,,,,,,0.424982309,0.493084062,0.511897624,,,,,,,,0.00640246,0.01020972,0.013454393,,,,,,,,0.1253423,0.131260079,0.136090028,,,,,,,,0.025720647,0.032148101,0.037613363,,,,,,,,0.006682815,0.006601967,0.006520873,,,,,,,,0.561311101,0.670985029,0.720803809 +Bus,E0,2045,,,,,,,,,0.002102777,0.003429087,,,,,,,,,0.020658443,0.019844987,,,,,,,,,11.52121554,19.53100044,,,,,,,,,1117.589127,1104.345824,,,,,,,,,0.007076358,0.007390506,,,,,,,,,0.034658098,0.034604074,,,,,,,,,0.439258697,0.5094187,,,,,,,,,0.006834814,0.010945211,,,,,,,,,0.120305979,0.127065728,,,,,,,,,0.025851388,0.032932198,,,,,,,,,0.007129556,0.007045071,,,,,,,,,0.463366346,0.569308383,,,,,,,,,0.002027818,0.00329748,,,,,,,,,0.018677325,0.018245256,,,,,,,,,11.09347378,18.85001294,,,,,,,,,1123.417081,1109.87522,,,,,,,,,0.007050644,0.007358818,,,,,,,,,0.034567921,0.034510882,,,,,,,,,0.432547781,0.501452102,,,,,,,,,0.006749843,0.010796692,,,,,,,,,0.121575423,0.128137689,,,,,,,,,0.025848389,0.032782232,,,,,,,,,0.007166735,0.007080346,,,,,,,,,0.492600736,0.599133406,,,,,,,,,0.001980536,0.003227852,,,,,,,,,0.019927,0.019196147,,,,,,,,,11.51276427,19.51307898,,,,,,,,,1117.222923,1103.831631,,,,,,,,,0.007456008,0.007777338,,,,,,,,,0.034631703,0.034581502,,,,,,,,,0.424767367,0.492238693,,,,,,,,,0.006407588,0.010248635,,,,,,,,,0.131864187,0.13784081,,,,,,,,,0.026675039,0.033252833,,,,,,,,,0.007127219,0.007041791,,,,,,,,,0.527036588,0.640331364,,,,,,,,,0.002075169,0.003388705,,,,,,,,,0.020057762,0.019049353,,,,,,,,,10.85470432,18.40926707,,,,,,,,,1118.23061,1104.578029,,,,,,,,,0.006732066,0.007031339,,,,,,,,,0.034314303,0.034257764,,,,,,,,,0.427442521,0.496134278,,,,,,,,,0.006690609,0.010718181,,,,,,,,,0.112516532,0.119269477,,,,,,,,,0.024660319,0.031622921,,,,,,,,,0.007133648,0.007046552,,,,,,,,,0.532768409,0.634044537,,,,,,,,,0.001797171,0.002899468,,,,,,,,,0.014964195,0.015586012,,,,,,,,,10.66260577,18.20651949,,,,,,,,,1134.876713,1120.607083,,,,,,,,,0.007366983,0.007685064,,,,,,,,,0.034567343,0.034516495,,,,,,,,,0.394228132,0.457428538,,,,,,,,,0.006326526,0.010082707,,,,,,,,,0.12934731,0.135088288,,,,,,,,,0.026121489,0.032457497,,,,,,,,,0.007239839,0.007148808,,,,,,,,,0.61171667,0.725293969,,,,,,,,,0.001826469,0.002951007,,,,,,,,,0.014982195,0.015288516,,,,,,,,,10.41434462,17.77484098,,,,,,,,,1124.280248,1110.106475,,,,,,,,,0.006930705,0.007233495,,,,,,,,,0.034308192,0.034253061,,,,,,,,,0.403736459,0.468590831,,,,,,,,,0.006367238,0.010154442,,,,,,,,,0.118302648,0.12433872,,,,,,,,,0.024799778,0.031229394,,,,,,,,,0.007172241,0.007081821,,,,,,,,,0.58780911,0.691246918,,,,,,,,,0.001780994,0.002872068,,,,,,,,,0.014531082,0.015223962,,,,,,,,,11.02168804,18.76783343,,,,,,,,,1148.394914,1133.890408,,,,,,,,,0.007056353,0.007367298,,,,,,,,,0.034553046,0.034498511,,,,,,,,,0.400313386,0.464770076,,,,,,,,,0.006387675,0.010191545,,,,,,,,,0.119829202,0.125841228,,,,,,,,,0.024994818,0.031424607,,,,,,,,,0.007326077,0.007233548,,,,,,,,,0.600944345,0.707236031,,,,,,,,,0.001902805,0.003079907,,,,,,,,,0.017000629,0.017150349,,,,,,,,,11.31647334,19.27966869,,,,,,,,,1133.56973,1119.585947,,,,,,,,,0.007132428,0.007442641,,,,,,,,,0.034551513,0.034494622,,,,,,,,,0.449629287,0.521266632,,,,,,,,,0.006544068,0.010445988,,,,,,,,,0.123495276,0.129678316,,,,,,,,,0.025740125,0.032375786,,,,,,,,,0.007124544,0.007036686,,,,,,,,,0.602905248,0.708658877,,,,,,,,,0.001786528,0.002876115,,,,,,,,,0.016543732,0.017465701,,,,,,,,,12.15807265,20.72980194,,,,,,,,,1132.422242,1118.71491,,,,,,,,,0.00733615,0.007660542,,,,,,,,,0.034913669,0.034860291,,,,,,,,,0.425001651,0.493200866,,,,,,,,,0.006410508,0.010217368,,,,,,,,,0.125353243,0.131269621,,,,,,,,,0.025734076,0.032160889,,,,,,,,,0.006682559,0.006601673,,,,,,,,,0.562279344,0.672235222 +Bus,E0,2050,,,,,,,,,,0.002108127,,,,,,,,,,0.020656293,,,,,,,,,,11.48124291,,,,,,,,,,1117.534614,,,,,,,,,,0.007077256,,,,,,,,,,0.034657887,,,,,,,,,,0.439400628,,,,,,,,,,0.006846698,,,,,,,,,,0.120324581,,,,,,,,,,0.025872338,,,,,,,,,,0.007129207,,,,,,,,,,0.464626827,,,,,,,,,,0.002032755,,,,,,,,,,0.018672507,,,,,,,,,,11.05399773,,,,,,,,,,1123.361872,,,,,,,,,,0.00705153,,,,,,,,,,0.034567699,,,,,,,,,,0.432686646,,,,,,,,,,0.006761344,,,,,,,,,,0.121592839,,,,,,,,,,0.025868418,,,,,,,,,,0.007166382,,,,,,,,,,0.495596953,,,,,,,,,,0.001985794,,,,,,,,,,0.019904368,,,,,,,,,,11.46302932,,,,,,,,,,1117.167725,,,,,,,,,,0.007456924,,,,,,,,,,0.03463149,,,,,,,,,,0.424920709,,,,,,,,,,0.006419388,,,,,,,,,,0.131881509,,,,,,,,,,0.026695659,,,,,,,,,,0.007126867,,,,,,,,,,0.532212191,,,,,,,,,,0.002082397,,,,,,,,,,0.02003952,,,,,,,,,,10.80165176,,,,,,,,,,1118.174682,,,,,,,,,,0.006732921,,,,,,,,,,0.03431406,,,,,,,,,,0.427633878,,,,,,,,,,0.006706334,,,,,,,,,,0.11254379,,,,,,,,,,0.024688499,,,,,,,,,,0.007133292,,,,,,,,,,0.539300171,,,,,,,,,,0.001800942,,,,,,,,,,0.01495642,,,,,,,,,,10.62484501,,,,,,,,,,1134.819933,,,,,,,,,,0.007367894,,,,,,,,,,0.034567139,,,,,,,,,,0.394350025,,,,,,,,,,0.006336322,,,,,,,,,,0.12936013,,,,,,,,,,0.026137971,,,,,,,,,,0.007239477,,,,,,,,,,0.618027508,,,,,,,,,,0.001830465,,,,,,,,,,0.014969677,,,,,,,,,,10.37462299,,,,,,,,,,1124.223276,,,,,,,,,,0.006931572,,,,,,,,,,0.03430797,,,,,,,,,,0.403867358,,,,,,,,,,0.006377523,,,,,,,,,,0.11831736,,,,,,,,,,0.024817273,,,,,,,,,,0.007171878,,,,,,,,,,0.594176234,,,,,,,,,,0.001786033,,,,,,,,,,0.014533851,,,,,,,,,,10.97046312,,,,,,,,,,1148.336499,,,,,,,,,,0.007057239,,,,,,,,,,0.03455281,,,,,,,,,,0.400475246,,,,,,,,,,0.006401606,,,,,,,,,,0.119850744,,,,,,,,,,0.025018471,,,,,,,,,,0.007325708,,,,,,,,,,0.606761613,,,,,,,,,,0.001906026,,,,,,,,,,0.016995415,,,,,,,,,,11.28860906,,,,,,,,,,1133.513872,,,,,,,,,,0.007133319,,,,,,,,,,0.034551295,,,,,,,,,,0.449726058,,,,,,,,,,0.006551619,,,,,,,,,,0.123504416,,,,,,,,,,0.025752942,,,,,,,,,,0.007124192,,,,,,,,,,0.607352302,,,,,,,,,,0.001787264,,,,,,,,,,0.016544895,,,,,,,,,,12.15193112,,,,,,,,,,1132.366269,,,,,,,,,,0.007337077,,,,,,,,,,0.034913445,,,,,,,,,,0.42501732,,,,,,,,,,0.006412057,,,,,,,,,,0.125349977,,,,,,,,,,0.025736062,,,,,,,,,,0.006682229,,,,,,,,,,0.563418848 +Bus,E10,1990,0.140076912,,,,,,,,,,0.420263962,,,,,,,,,,94.58918291,,,,,,,,,,991.4746672,,,,,,,,,,0.050343031,,,,,,,,,,0.033892826,,,,,,,,,,9.213427641,,,,,,,,,,0.401235564,,,,,,,,,,0.911641551,,,,,,,,,,0.740433427,,,,,,,,,,0.045948647,,,,,,,,,,5.923494132,,,,,,,,,,0.121209515,,,,,,,,,,0.415142288,,,,,,,,,,94.94114754,,,,,,,,,,990.3300245,,,,,,,,,,0.04982685,,,,,,,,,,0.033762153,,,,,,,,,,9.149953507,,,,,,,,,,0.353417271,,,,,,,,,,0.813543846,,,,,,,,,,0.652897614,,,,,,,,,,0.051028683,,,,,,,,,,6.017667542,,,,,,,,,,0.132830641,,,,,,,,,,0.465913572,,,,,,,,,,105.0614362,,,,,,,,,,985.9427657,,,,,,,,,,0.052376199,,,,,,,,,,0.033922594,,,,,,,,,,9.156243682,,,,,,,,,,0.371998909,,,,,,,,,,0.869701816,,,,,,,,,,0.696449013,,,,,,,,,,0.071947317,,,,,,,,,,6.686611237,,,,,,,,,,0.148763461,,,,,,,,,,0.429613893,,,,,,,,,,101.3944725,,,,,,,,,,981.4189752,,,,,,,,,,0.047922869,,,,,,,,,,0.033513998,,,,,,,,,,9.254008168,,,,,,,,,,0.425249537,,,,,,,,,,0.961994556,,,,,,,,,,0.789188483,,,,,,,,,,0.066719114,,,,,,,,,,6.214590572,,,,,,,,,,0.071833221,,,,,,,,,,0.401472054,,,,,,,,,,92.78986548,,,,,,,,,,983.0199923,,,,,,,,,,0.051792023,,,,,,,,,,0.033849159,,,,,,,,,,8.56127212,,,,,,,,,,0.218337125,,,,,,,,,,0.541748939,,,,,,,,,,0.407566038,,,,,,,,,,0.059205829,,,,,,,,,,6.501363335,,,,,,,,,,0.084921477,,,,,,,,,,0.400216988,,,,,,,,,,95.79076308,,,,,,,,,,975.1914023,,,,,,,,,,0.048968777,,,,,,,,,,0.033528378,,,,,,,,,,8.831592748,,,,,,,,,,0.258499685,,,,,,,,,,0.616958211,,,,,,,,,,0.480327584,,,,,,,,,,0.065444626,,,,,,,,,,6.256418587,,,,,,,,,,0.070124223,,,,,,,,,,0.386104104,,,,,,,,,,92.13657191,,,,,,,,,,991.3667731,,,,,,,,,,0.050041589,,,,,,,,,,0.033781811,,,,,,,,,,8.72263419,,,,,,,,,,0.217962782,,,,,,,,,,0.532673682,,,,,,,,,,0.404894167,,,,,,,,,,0.060344701,,,,,,,,,,6.320500384,,,,,,,,,,0.096718276,,,,,,,,,,0.403962042,,,,,,,,,,95.47051917,,,,,,,,,,989.7069738,,,,,,,,,,0.050298998,,,,,,,,,,0.033748881,,,,,,,,,,9.527478247,,,,,,,,,,0.288397744,,,,,,,,,,0.682595909,,,,,,,,,,0.535745883,,,,,,,,,,0.059193278,,,,,,,,,,6.420568377,,,,,,,,,,0.069849492,,,,,,,,,,0.374015337,,,,,,,,,,87.98713732,,,,,,,,,,996.9931645,,,,,,,,,,0.052102332,,,,,,,,,,0.034158523,,,,,,,,,,8.913975989,,,,,,,,,,0.215917087,,,,,,,,,,0.527699936,,,,,,,,,,0.397429941,,,,,,,,,,0.028618171,,,,,,,,,,5.942787607,,,,,,,,, +Bus,E10,1995,0.025174562,0.095759361,,,,,,,,,0.291398534,0.377047755,,,,,,,,,113.9462439,93.94515169,,,,,,,,,1005.123858,993.6238337,,,,,,,,,0.074277705,0.055083799,,,,,,,,,0.033928478,0.033898121,,,,,,,,,6.600985782,8.562733415,,,,,,,,,0.068080918,0.261421258,,,,,,,,,0.229266697,0.622770343,,,,,,,,,0.136162417,0.484810019,,,,,,,,,0.046532311,0.022011612,,,,,,,,,4.098046097,5.347286009,,,,,,,,,0.021723926,0.082861268,,,,,,,,,0.288858558,0.371751775,,,,,,,,,115.2310725,93.63232593,,,,,,,,,1007.388558,993.2819422,,,,,,,,,0.073523932,0.0545231,,,,,,,,,0.03379967,0.033767905,,,,,,,,,6.576026974,8.46732411,,,,,,,,,0.059949368,0.230971105,,,,,,,,,0.213259963,0.559912675,,,,,,,,,0.121229285,0.428445292,,,,,,,,,0.051864061,0.022174993,,,,,,,,,4.167288241,5.421453905,,,,,,,,,0.023860136,0.092290591,,,,,,,,,0.321241899,0.402250013,,,,,,,,,126.4795389,98.94958893,,,,,,,,,1002.461545,988.8162171,,,,,,,,,0.077293181,0.057317427,,,,,,,,,0.033955508,0.03392838,,,,,,,,,6.685823093,8.254769081,,,,,,,,,0.062770477,0.247338189,,,,,,,,,0.229144467,0.604563853,,,,,,,,,0.129060138,0.461803461,,,,,,,,,0.073193551,0.022542692,,,,,,,,,4.597998821,5.812040803,,,,,,,,,0.025894594,0.100645309,,,,,,,,,0.301318656,0.376960374,,,,,,,,,123.2138907,97.99407527,,,,,,,,,1000.927215,984.8711182,,,,,,,,,0.070706168,0.052434851,,,,,,,,,0.033551309,0.033519178,,,,,,,,,6.636245672,8.447900049,,,,,,,,,0.068765513,0.272768259,,,,,,,,,0.226469365,0.644171245,,,,,,,,,0.137964572,0.507962768,,,,,,,,,0.068054051,0.038656668,,,,,,,,,4.363033577,5.497484145,,,,,,,,,0.012565417,0.04897201,,,,,,,,,0.288220334,0.364327106,,,,,,,,,114.3677151,91.45360782,,,,,,,,,1009.825895,988.2398039,,,,,,,,,0.076430116,0.056676903,,,,,,,,,0.03388252,0.033854551,,,,,,,,,6.225802579,7.892615409,,,,,,,,,0.036118087,0.143144177,,,,,,,,,0.170321191,0.385091048,,,,,,,,,0.078273695,0.268887561,,,,,,,,,0.06078843,0.022400295,,,,,,,,,4.506950584,5.896817171,,,,,,,,,0.014538937,0.057074395,,,,,,,,,0.284712953,0.356687829,,,,,,,,,118.0000117,92.39559347,,,,,,,,,1000.152102,980.0137625,,,,,,,,,0.072258045,0.053585138,,,,,,,,,0.033564683,0.033534518,,,,,,,,,6.371759178,8.047153297,,,,,,,,,0.041515235,0.166239171,,,,,,,,,0.173406273,0.423833644,,,,,,,,,0.087329967,0.309402668,,,,,,,,,0.067119236,0.022315719,,,,,,,,,4.370436176,5.601259343,,,,,,,,,0.012267919,0.04722089,,,,,,,,,0.279053273,0.347198449,,,,,,,,,114.0414796,91.10257151,,,,,,,,,1021.554948,997.3406208,,,,,,,,,0.073836725,0.054756132,,,,,,,,,0.033817774,0.033787383,,,,,,,,,6.295094628,8.007062875,,,,,,,,,0.036253576,0.141085488,,,,,,,,,0.163145806,0.374012277,,,,,,,,,0.077367356,0.264455433,,,,,,,,,0.062170649,0.031101652,,,,,,,,,4.419476962,5.683870546,,,,,,,,,0.017150528,0.065834883,,,,,,,,,0.286165397,0.364102145,,,,,,,,,117.1666579,96.77584462,,,,,,,,,1012.356641,993.9581831,,,,,,,,,0.074223067,0.05504105,,,,,,,,,0.033786212,0.033754703,,,,,,,,,6.868014311,8.770204022,,,,,,,,,0.048412948,0.188057483,,,,,,,,,0.191239395,0.474474481,,,,,,,,,0.100415333,0.35154937,,,,,,,,,0.060449193,0.034954735,,,,,,,,,4.397875826,5.800497855,,,,,,,,,0.012766327,0.047652294,,,,,,,,,0.271326448,0.341155519,,,,,,,,,109.1455686,92.22516128,,,,,,,,,1014.377159,1000.042012,,,,,,,,,0.0768756,0.057009796,,,,,,,,,0.034193669,0.034163745,,,,,,,,,6.39719258,8.286184343,,,,,,,,,0.038049592,0.142083476,,,,,,,,,0.169926512,0.378165301,,,,,,,,,0.080253921,0.2650588,,,,,,,,,0.029033931,0.01317596,,,,,,,,,4.147684341,5.435269351,,,,,,,, +Bus,E10,2000,0.015789246,0.020341329,0.052124001,,,,,,,,0.078485622,0.077822408,0.24898616,,,,,,,,81.97548243,85.21226661,81.76019313,,,,,,,,1060.07236,1051.741641,988.1581302,,,,,,,,0.125683693,0.127039101,0.049967674,,,,,,,,0.034147502,0.034114427,0.033919458,,,,,,,,5.675202541,5.69474837,7.654147516,,,,,,,,0.046728042,0.059917781,0.152349187,,,,,,,,0.189176451,0.214112189,0.396442308,,,,,,,,0.096609552,0.119289933,0.284214032,,,,,,,,0.049069177,0.023299351,0.019693195,,,,,,,,3.177392593,3.301241184,4.256359806,,,,,,,,0.013683987,0.017619589,0.045288119,,,,,,,,0.077429236,0.076543945,0.247313812,,,,,,,,82.65844393,85.23111837,81.80846502,,,,,,,,1063.785287,1055.237875,989.8578938,,,,,,,,0.124503438,0.125830841,0.049599075,,,,,,,,0.034030061,0.03399543,0.033790366,,,,,,,,5.659032463,5.635714976,7.571562193,,,,,,,,0.041162333,0.05275846,0.134763243,,,,,,,,0.178913377,0.200507682,0.361134078,,,,,,,,0.086654015,0.106393707,0.252210175,,,,,,,,0.054751562,0.023559444,0.019727068,,,,,,,,3.226991544,3.341186925,4.340629404,,,,,,,,0.014640609,0.018840154,0.049448892,,,,,,,,0.086611724,0.082587256,0.266148599,,,,,,,,91.07904001,89.87758376,85.20427899,,,,,,,,1058.383161,1049.975227,984.1593352,,,,,,,,0.130976896,0.132360781,0.05227368,,,,,,,,0.034157637,0.03412799,0.033948091,,,,,,,,5.788534999,5.547438014,7.368146926,,,,,,,,0.042109892,0.053881865,0.141559259,,,,,,,,0.191019406,0.212406118,0.384686326,,,,,,,,0.090539994,0.110186065,0.266846939,,,,,,,,0.077295229,0.023947091,0.019613496,,,,,,,,3.601706284,3.583322258,4.634446293,,,,,,,,0.015852708,0.020405056,0.053485369,,,,,,,,0.080934224,0.077972285,0.24450726,,,,,,,,88.35745127,88.21224429,83.37884729,,,,,,,,1058.137448,1049.408671,981.813853,,,,,,,,0.119632087,0.120922305,0.04755289,,,,,,,,0.033780578,0.033745568,0.033541515,,,,,,,,5.740412674,5.634215256,7.44846895,,,,,,,,0.045879155,0.058733572,0.154019102,,,,,,,,0.182270527,0.206711631,0.394901062,,,,,,,,0.095194469,0.117374552,0.287110989,,,,,,,,0.071947699,0.041260103,0.019566759,,,,,,,,3.415754652,3.435713219,4.295886252,,,,,,,,0.007895173,0.010142645,0.026657749,,,,,,,,0.076641258,0.076155301,0.249281268,,,,,,,,82.06538357,84.56944132,80.39318393,,,,,,,,1069.917387,1060.792667,990.3493959,,,,,,,,0.129502656,0.130871229,0.051672346,,,,,,,,0.034087436,0.034056917,0.033874525,,,,,,,,5.371103736,5.305172816,7.03480369,,,,,,,,0.0244554,0.031268911,0.082276802,,,,,,,,0.151941188,0.163958952,0.260820902,,,,,,,,0.057344242,0.068684546,0.158519043,,,,,,,,0.064398712,0.024047001,0.019736861,,,,,,,,3.452333978,3.600677207,4.7735547,,,,,,,,0.009050755,0.011628025,0.030719821,,,,,,,,0.075647498,0.074002053,0.241122569,,,,,,,,84.4315113,85.06250969,81.12557901,,,,,,,,1059.691945,1050.688896,981.1366053,,,,,,,,0.12236235,0.123668469,0.048749927,,,,,,,,0.033787417,0.033754518,0.033556243,,,,,,,,5.509724011,5.361960572,7.182582105,,,,,,,,0.027820535,0.03556908,0.094226458,,,,,,,,0.149855884,0.163643863,0.276677552,,,,,,,,0.062449635,0.075260674,0.178847518,,,,,,,,0.07111223,0.023931131,0.019553256,,,,,,,,3.373014725,3.455463944,4.518282944,,,,,,,,0.007857008,0.010100929,0.026078455,,,,,,,,0.073922639,0.072555857,0.235009606,,,,,,,,81.5051172,83.60811915,79.50189626,,,,,,,,1082.89862,1073.549461,1001.004189,,,,,,,,0.124982878,0.12632396,0.049737216,,,,,,,,0.034038319,0.034005205,0.033808925,,,,,,,,5.428633791,5.361513798,7.092263314,,,,,,,,0.024968895,0.031971785,0.082239515,,,,,,,,0.144931695,0.157591757,0.253096789,,,,,,,,0.057128155,0.068954623,0.157105688,,,,,,,,0.065902579,0.033481481,0.019949205,,,,,,,,3.37730252,3.471393563,4.550912318,,,,,,,,0.010830455,0.013934972,0.036021008,,,,,,,,0.07634629,0.075297613,0.240895606,,,,,,,,83.95529461,88.10673173,82.98190351,,,,,,,,1070.944356,1062.051632,993.8326732,,,,,,,,0.125717738,0.127053332,0.050114983,,,,,,,,0.034015536,0.03398117,0.033777074,,,,,,,,5.927018825,5.872690905,7.756819212,,,,,,,,0.033151155,0.042462472,0.109323852,,,,,,,,0.164620669,0.181838211,0.310764864,,,,,,,,0.072537578,0.088426421,0.20632389,,,,,,,,0.063921428,0.037368627,0.017766942,,,,,,,,3.388878751,3.523407883,4.547025847,,,,,,,,0.008400006,0.010815591,0.027089579,,,,,,,,0.072555428,0.072812737,0.232397338,,,,,,,,79.30099683,87.42883689,80.95970051,,,,,,,,1071.090464,1062.474559,998.9116948,,,,,,,,0.130105201,0.13150388,0.051752059,,,,,,,,0.034409672,0.034377042,0.034184817,,,,,,,,5.482609057,5.544623615,7.405444216,,,,,,,,0.027039688,0.034698257,0.085943454,,,,,,,,0.152877492,0.166880435,0.263759125,,,,,,,,0.06074119,0.073802225,0.163438791,,,,,,,,0.030646336,0.013973239,0.009463944,,,,,,,,3.170244705,3.368377199,4.383569117,,,,,,, +Bus,E10,2005,0.005406215,0.008215142,0.009654127,0.035683998,,,,,,,0.038040782,0.033524462,0.025311745,0.163088091,,,,,,,26.3149903,39.75236025,36.66199547,79.83058245,,,,,,,1103.114734,1092.831438,1077.651017,1008.386578,,,,,,,0.038401433,0.039279731,0.031116845,0.059391496,,,,,,,0.03431032,0.034267472,0.034249596,0.033986306,,,,,,,3.872388394,4.270413083,4.214714466,5.233683023,,,,,,,0.017006627,0.025514952,0.031843208,0.108362885,,,,,,,0.132116376,0.147854314,0.159534429,0.306638438,,,,,,,0.043120795,0.057843472,0.068507,0.203527292,,,,,,,0.051065727,0.024209845,0.021476708,0.006698776,,,,,,,1.468581949,2.018492714,1.845115193,3.256931314,,,,,,,0.00488255,0.00720405,0.00853751,0.031041164,,,,,,,0.036888254,0.03219665,0.024451876,0.161109069,,,,,,,26.03654255,39.25841629,36.26937779,79.66895053,,,,,,,1107.394304,1096.871143,1082.327815,1011.609965,,,,,,,0.038070007,0.038931888,0.030924346,0.058959427,,,,,,,0.034201269,0.034156391,0.034137613,0.033860687,,,,,,,3.864706867,4.213261881,4.156200135,5.173589632,,,,,,,0.01553259,0.022820219,0.028620329,0.095750125,,,,,,,0.130372671,0.143550089,0.154219074,0.282003053,,,,,,,0.040625352,0.053102701,0.062880064,0.180933268,,,,,,,0.056992672,0.024489052,0.021569923,0.006720189,,,,,,,1.491954978,2.029099874,1.868382522,3.308215045,,,,,,,0.00552171,0.006414077,0.00760041,0.033017309,,,,,,,0.040686308,0.033012242,0.024994094,0.172522531,,,,,,,27.73158261,43.25519986,39.25150713,82.90231512,,,,,,,1101.910707,1091.573661,1076.170252,1005.733837,,,,,,,0.040077323,0.040976786,0.032627172,0.062144682,,,,,,,0.034307886,0.034269257,0.034252759,0.034009782,,,,,,,3.97775407,4.164524369,4.090359971,5.056860255,,,,,,,0.016596405,0.02040101,0.025558268,0.097703215,,,,,,,0.142544436,0.148251396,0.157646275,0.295526595,,,,,,,0.044125027,0.050110188,0.058809319,0.186515102,,,,,,,0.080479004,0.024896636,0.021447204,0.006681154,,,,,,,1.646525775,2.109229407,1.94064351,3.513359593,,,,,,,0.005767103,0.008060112,0.009426123,0.036111966,,,,,,,0.037229494,0.034081229,0.023741919,0.161695776,,,,,,,26.27463823,42.31810806,35.9624234,81.39180217,,,,,,,1102.217989,1091.538983,1076.527572,1004.752334,,,,,,,0.036549819,0.037386197,0.029609786,0.056520669,,,,,,,0.033950995,0.033905768,0.033887067,0.033611492,,,,,,,3.912229609,4.382145503,4.104773166,5.078560464,,,,,,,0.017594725,0.024709084,0.030767132,0.107796653,,,,,,,0.12706624,0.140168761,0.151057896,0.300269143,,,,,,,0.043655456,0.055965783,0.065895687,0.202280418,,,,,,,0.074946092,0.042920688,0.021454322,0.006674634,,,,,,,1.584476464,2.148612702,1.863169605,3.32530695,,,,,,,0.003232602,0.004828592,0.005829249,0.018175686,,,,,,,0.035068155,0.030971191,0.02395724,0.160647228,,,,,,,26.36145192,38.43878649,35.7433994,77.72962649,,,,,,,1114.872475,1103.731555,1090.800777,1016.387166,,,,,,,0.039622604,0.040512422,0.032247284,0.061429027,,,,,,,0.034239776,0.034200114,0.034183402,0.033937067,,,,,,,3.677313404,3.931926249,3.858477904,4.822140012,,,,,,,0.010583607,0.015730074,0.020010169,0.057737025,,,,,,,0.127955836,0.136718558,0.144423375,0.212305361,,,,,,,0.032684567,0.041349851,0.048543895,0.114179515,,,,,,,0.067103984,0.025020471,0.021738777,0.006751924,,,,,,,1.631050522,2.213895557,2.073117525,3.62577057,,,,,,,0.003683052,0.004955048,0.005986779,0.02091409,,,,,,,0.034338152,0.02923503,0.022401597,0.156340842,,,,,,,25.9571278,38.89533179,35.94161929,78.55312088,,,,,,,1104.493721,1093.474253,1080.271617,1006.392512,,,,,,,0.0374162,0.038263634,0.030395957,0.057950191,,,,,,,0.03395301,0.033910179,0.033891993,0.033624247,,,,,,,3.782181267,3.991723275,3.926368309,4.884738494,,,,,,,0.011894802,0.016287332,0.020688062,0.066083716,,,,,,,0.120925851,0.128238668,0.136256193,0.220448688,,,,,,,0.033875421,0.041135457,0.048555632,0.127874284,,,,,,,0.074116439,0.024905995,0.02152894,0.006685528,,,,,,,1.581937861,2.077518694,1.933567594,3.45208039,,,,,,,0.003221976,0.004674681,0.005706751,0.018083902,,,,,,,0.033451165,0.031034409,0.023059688,0.153145732,,,,,,,25.96702381,40.26895109,35.69388907,77.52427875,,,,,,,1128.37609,1117.009546,1104.324366,1028.569799,,,,,,,0.038201212,0.039070892,0.030991007,0.059120449,,,,,,,0.034202247,0.034159344,0.034141343,0.033876223,,,,,,,3.70979758,4.077839269,3.903995756,4.851357394,,,,,,,0.010792573,0.015673748,0.020034525,0.058812127,,,,,,,0.119904247,0.128348611,0.136168105,0.206698128,,,,,,,0.031947675,0.040225352,0.04747674,0.114804332,,,,,,,0.068671089,0.034839996,0.022008295,0.006832856,,,,,,,1.605638563,2.197449006,2.001006264,3.498706963,,,,,,,0.004162477,0.005674768,0.006819841,0.024713712,,,,,,,0.035520389,0.032746639,0.023179602,0.159373813,,,,,,,27.00390602,44.14575593,37.35353589,81.99001536,,,,,,,1115.35288,1104.454066,1090.934492,1018.043585,,,,,,,0.038450688,0.039318348,0.031257815,0.059574632,,,,,,,0.034185993,0.034141426,0.034122721,0.033847055,,,,,,,4.028738194,4.336892586,4.042242474,5.329190263,,,,,,,0.013429979,0.01854085,0.023444125,0.077570966,,,,,,,0.128213706,0.137088307,0.1458187,0.247105549,,,,,,,0.037140356,0.045838341,0.053912045,0.14869143,,,,,,,0.066568316,0.038863595,0.019491736,0.00666312,,,,,,,1.610073234,2.222643217,1.955225137,3.52388423,,,,,,,0.003076878,0.004387298,0.005405406,0.019061171,,,,,,,0.030719113,0.029210265,0.021952707,0.160456424,,,,,,,24.90276456,41.84356776,37.3226378,84.15737404,,,,,,,1114.437442,1103.767627,1091.082341,1020.56777,,,,,,,0.039760143,0.040667168,0.032238017,0.061514064,,,,,,,0.034570244,0.034528011,0.034510384,0.034250722,,,,,,,3.250526267,2.820818274,2.682025942,5.17814447,,,,,,,0.010540672,0.015117699,0.019375062,0.062540876,,,,,,,0.123942504,0.131712345,0.139390147,0.218131403,,,,,,,0.031879594,0.0396206,0.046771323,0.121726822,,,,,,,0.031891019,0.014519701,0.010329127,0.006271272,,,,,,,1.41383565,1.972419133,1.789626567,3.514697212,,,,,, +Bus,E10,2010,,0.003001214,0.004132392,0.005357372,0.022175962,,,,,,,0.033787029,0.021933658,0.022492034,0.093136705,,,,,,,19.15008847,24.6394352,26.0753207,58.85946094,,,,,,,1129.575023,1118.343596,1105.904316,1041.167406,,,,,,,0.036293418,0.02904363,0.030000593,0.052532305,,,,,,,0.034423233,0.034416042,0.034364546,0.034108391,,,,,,,2.063098639,2.300327434,1.136039959,3.604333903,,,,,,,0.007942745,0.012073566,0.015537833,0.068122405,,,,,,,0.116569503,0.12449729,0.130139229,0.228794397,,,,,,,0.027439096,0.03457773,0.040511346,0.132445767,,,,,,,0.025024131,0.022287683,0.007346593,0.006916542,,,,,,,0.832547736,1.046669548,0.969563119,2.439567925,,,,,,,0.002746511,0.003848172,0.005029761,0.019481446,,,,,,,0.030588227,0.020310446,0.020678471,0.091436789,,,,,,,18.79741652,24.30847665,25.33548943,58.42275939,,,,,,,1134.277146,1123.626992,1110.889926,1045.151762,,,,,,,0.036002324,0.028890521,0.029829329,0.052161738,,,,,,,0.034320202,0.034312651,0.034258517,0.033989063,,,,,,,2.036842006,2.269453928,1.117383014,3.559036199,,,,,,,0.007667111,0.011750575,0.015184711,0.060868066,,,,,,,0.117191026,0.125005071,0.130524008,0.21512161,,,,,,,0.026985514,0.034026728,0.039875473,0.119492957,,,,,,,0.025324407,0.02239298,0.007379712,0.006943011,,,,,,,0.869223542,1.088401873,1.008409978,2.480595902,,,,,,,0.002429977,0.00340833,0.005035666,0.020325136,,,,,,,0.032550075,0.021309113,0.021855452,0.097749429,,,,,,,21.24458884,26.68571125,26.13784749,60.69048253,,,,,,,1128.578685,1117.161267,1104.556333,1039.16845,,,,,,,0.037922201,0.030506562,0.031485417,0.054990911,,,,,,,0.034412986,0.034406371,0.034358851,0.034122427,,,,,,,2.005637745,2.227674083,1.09911114,3.484961681,,,,,,,0.006811944,0.010444569,0.014473227,0.060881701,,,,,,,0.125435096,0.132348335,0.139079718,0.224758894,,,,,,,0.026719663,0.032982772,0.04004352,0.12130813,,,,,,,0.025742542,0.022264122,0.007337638,0.006903262,,,,,,,0.928041042,1.149045101,1.074975276,2.634283121,,,,,,,0.002977803,0.004075981,0.005355723,0.022136459,,,,,,,0.035709505,0.021278228,0.0217089,0.091941391,,,,,,,20.23335307,24.05855233,25.18234842,59.31843119,,,,,,,1129.109949,1118.055952,1105.191621,1038.892368,,,,,,,0.034541167,0.027634648,0.028546342,0.049991953,,,,,,,0.034068787,0.034061267,0.034007385,0.033739247,,,,,,,2.117115106,2.241829471,1.10517759,3.497499884,,,,,,,0.007748071,0.011742099,0.015263511,0.066691347,,,,,,,0.109454739,0.117034226,0.122948,0.22022972,,,,,,,0.026348578,0.03316607,0.039243537,0.129484561,,,,,,,0.044406531,0.022281951,0.007341858,0.006901427,,,,,,,0.964300824,1.126846524,1.05053587,2.498043223,,,,,,,0.002259043,0.003288835,0.004160583,0.011953267,,,,,,,0.025458474,0.018145013,0.018042691,0.090247916,,,,,,,18.06665827,23.76249995,24.70815749,57.01767356,,,,,,,1142.669794,1133.480297,1120.004302,1051.908608,,,,,,,0.037488712,0.030148114,0.031117079,0.054356213,,,,,,,0.034345854,0.034339136,0.034290964,0.034051273,,,,,,,1.881579234,2.092775797,1.030612225,3.316114762,,,,,,,0.007044283,0.010966504,0.013832962,0.03868361,,,,,,,0.123629998,0.131073033,0.135215041,0.177559501,,,,,,,0.026648374,0.033376289,0.038117764,0.080905758,,,,,,,0.025903251,0.022589344,0.007440261,0.006987896,,,,,,,1.042298267,1.28778602,1.189620317,2.734268336,,,,,,,0.00221264,0.00321897,0.004289217,0.013440931,,,,,,,0.024922212,0.017361602,0.017455753,0.08771703,,,,,,,18.47338243,24.02044358,24.15805455,57.23355583,,,,,,,1132.240999,1122.810238,1109.436484,1041.612899,,,,,,,0.035385229,0.028397661,0.029320063,0.051269193,,,,,,,0.034068601,0.03406129,0.034008951,0.033748394,,,,,,,1.920690965,2.13848339,1.04886271,3.358990572,,,,,,,0.00688894,0.010720991,0.014002575,0.043145291,,,,,,,0.113170534,0.120470368,0.125673824,0.177505587,,,,,,,0.025104037,0.031685897,0.037222115,0.087688961,,,,,,,0.02578949,0.022376702,0.007370057,0.006919502,,,,,,,0.993231991,1.207472182,1.125501369,2.599471515,,,,,,,0.002193018,0.0032346,0.004095784,0.011920056,,,,,,,0.025380608,0.01742771,0.017391804,0.086086048,,,,,,,19.05857279,23.82025553,25.18325852,57.0685243,,,,,,,1156.407807,1147.449332,1133.734479,1064.820451,,,,,,,0.036114872,0.028938841,0.029886059,0.052298143,,,,,,,0.034316169,0.034308956,0.034257081,0.033999173,,,,,,,1.956800296,2.12162062,1.045814135,3.338931961,,,,,,,0.007090526,0.011089382,0.014020043,0.039558256,,,,,,,0.11494646,0.12251288,0.126918847,0.171284089,,,,,,,0.025614175,0.032434275,0.037283502,0.081236106,,,,,,,0.036070774,0.022867742,0.00753147,0.007073671,,,,,,,1.029884055,1.24620242,1.155186871,2.639250946,,,,,,,0.002337528,0.003361601,0.004544673,0.015748504,,,,,,,0.029190166,0.018600881,0.019377358,0.090101448,,,,,,,21.33680208,25.22455742,26.61447823,60.37873737,,,,,,,1142.80621,1133.083765,1119.901973,1052.740479,,,,,,,0.036369422,0.029210528,0.030155518,0.05270973,,,,,,,0.034304481,0.034296973,0.034243064,0.033974849,,,,,,,2.084006933,2.197475574,1.163290808,3.672394697,,,,,,,0.007045685,0.010916603,0.014508906,0.050237632,,,,,,,0.118011982,0.125300267,0.131055075,0.195536324,,,,,,,0.026069758,0.032650199,0.038739741,0.100720865,,,,,,,0.04021738,0.020244242,0.007329614,0.006890109,,,,,,,1.030639027,1.213035547,1.154570426,2.660706663,,,,,,,0.001999567,0.002979633,0.004080119,0.012576192,,,,,,,0.024295624,0.017124791,0.019600579,0.091005712,,,,,,,20.9024039,25.75364709,29.02709162,62.85839857,,,,,,,1141.642579,1132.631498,1119.759085,1053.941153,,,,,,,0.037583446,0.030097208,0.031085374,0.05441289,,,,,,,0.034681619,0.03467453,0.034623744,0.034371128,,,,,,,1.28473764,1.401549249,1.114979321,3.566723773,,,,,,,0.006647717,0.010432498,0.014050624,0.042157128,,,,,,,0.11894055,0.1261015,0.131870628,0.180745363,,,,,,,0.025361466,0.031832446,0.037957874,0.086248155,,,,,,,0.015020734,0.01072398,0.006880838,0.006476309,,,,,,,0.905470362,1.078744136,1.110705255,2.651963131,,,,, +Bus,E10,2015,,,0.002314256,0.003683972,0.004970733,0.00989979,,,,,,,0.01858835,0.017460187,0.018339079,0.022458561,,,,,,,9.698693209,15.90313437,19.73954235,26.02921425,,,,,,,1187.340028,1173.050263,1158.694201,1106.30557,,,,,,,0.006915996,0.007245081,0.007577273,0.021570042,,,,,,,0.034700866,0.03464296,0.034584976,0.034368165,,,,,,,1.020280479,0.546733706,0.569975493,1.152340819,,,,,,,0.007602128,0.011936319,0.01583073,0.030501051,,,,,,,0.122690575,0.129745984,0.136049766,0.160031646,,,,,,,0.027330753,0.034696982,0.041401968,0.066751617,,,,,,,0.023662725,0.007792649,0.007697279,0.007349258,,,,,,,0.631947467,0.703904455,0.755144736,1.189913084,,,,,,,0.002219021,0.003548738,0.004775824,0.009139487,,,,,,,0.016922015,0.016053131,0.0169239,0.020914635,,,,,,,9.531634889,15.4145594,19.12040209,25.28515501,,,,,,,1193.60233,1178.990716,1164.297577,1111.071588,,,,,,,0.006893334,0.007216167,0.007542026,0.021429665,,,,,,,0.034612572,0.0345516,0.034490459,0.034262297,,,,,,,1.007659111,0.538356921,0.561043549,1.133351818,,,,,,,0.007483348,0.01178433,0.015612115,0.028879096,,,,,,,0.123905144,0.130829006,0.136926464,0.157864381,,,,,,,0.027263316,0.034541481,0.041092482,0.063853761,,,,,,,0.023787528,0.007832111,0.007734504,0.007380921,,,,,,,0.68442441,0.753982799,0.803762756,1.226974335,,,,,,,0.001979042,0.003478622,0.004692165,0.009163142,,,,,,,0.017865485,0.016888156,0.017754351,0.021976622,,,,,,,10.70359382,15.91921471,19.74622428,26.16209663,,,,,,,1186.783899,1172.340164,1157.818384,1104.92896,,,,,,,0.007291978,0.007628592,0.007968375,0.022603266,,,,,,,0.034670165,0.034616608,0.034562941,0.034362438,,,,,,,0.989376824,0.528464535,0.550754366,1.116046647,,,,,,,0.006705119,0.011198364,0.014834187,0.027837493,,,,,,,0.133412293,0.140587156,0.146126169,0.165913619,,,,,,,0.02730589,0.034971567,0.041194508,0.063546766,,,,,,,0.023651644,0.00778793,0.007691461,0.007340113,,,,,,,0.735131287,0.810886451,0.861697705,1.301998547,,,,,,,0.002263149,0.003645003,0.004918327,0.009813527,,,,,,,0.018173457,0.016779562,0.017587994,0.021531615,,,,,,,9.390165584,15.27294302,18.92826491,25.13106942,,,,,,,1188.268875,1173.538785,1158.719971,1105.231338,,,,,,,0.006579294,0.006892801,0.007209267,0.020525882,,,,,,,0.034359223,0.034298633,0.034237944,0.034011085,,,,,,,0.993969926,0.532621964,0.555283605,1.119998556,,,,,,,0.007386395,0.011704967,0.015515606,0.029789907,,,,,,,0.114674245,0.121862741,0.128161947,0.151995546,,,,,,,0.026003236,0.033372518,0.039958452,0.064755137,,,,,,,0.023681236,0.007795893,0.007697448,0.007342122,,,,,,,0.75219831,0.811094826,0.853422581,1.254840548,,,,,,,0.002023434,0.003135211,0.004187954,0.007009785,,,,,,,0.013992644,0.013756531,0.01470705,0.018665605,,,,,,,9.21338168,15.01798349,18.62210301,24.67164178,,,,,,,1205.772949,1190.379229,1174.869521,1119.650716,,,,,,,0.007204616,0.007537825,0.00787417,0.022340921,,,,,,,0.034606464,0.034552178,0.034497775,0.034294572,,,,,,,0.92472703,0.491339811,0.512111124,1.049836982,,,,,,,0.007175127,0.011032272,0.014563568,0.023558646,,,,,,,0.13199122,0.137795954,0.143052964,0.154667583,,,,,,,0.027740725,0.034160334,0.04009971,0.055096904,,,,,,,0.024030078,0.007907763,0.007804734,0.007437911,,,,,,,0.879738941,0.942528822,0.992523521,1.416475427,,,,,,,0.001972677,0.003191027,0.004268801,0.007371295,,,,,,,0.01379297,0.013454576,0.014326234,0.018051679,,,,,,,9.38758406,14.64625091,18.15078158,24.11619102,,,,,,,1194.759441,1179.465647,1164.06236,1109.119501,,,,,,,0.006776142,0.007093332,0.007413508,0.021063313,,,,,,,0.034351334,0.034292382,0.034233314,0.034012652,,,,,,,0.946696596,0.503294287,0.524566263,1.06573836,,,,,,,0.006999371,0.011110646,0.014677208,0.024474996,,,,,,,0.12038914,0.126939765,0.132506879,0.146577447,,,,,,,0.02602175,0.032930141,0.038972227,0.055512784,,,,,,,0.02381059,0.007835265,0.007732941,0.007367952,,,,,,,0.840226321,0.899472479,0.944461359,1.3397912,,,,,,,0.002006225,0.003111759,0.004150072,0.006914064,,,,,,,0.0134577,0.013313105,0.014247575,0.018011733,,,,,,,9.296547299,15.37751546,19.09873714,25.14497203,,,,,,,1220.271318,1204.624094,1188.850741,1133.097562,,,,,,,0.006897622,0.007223356,0.007552175,0.021479496,,,,,,,0.034595923,0.034537559,0.034479145,0.034260749,,,,,,,0.936938004,0.499251902,0.520410288,1.062496713,,,,,,,0.00723795,0.01115817,0.014732715,0.023850372,,,,,,,0.122368463,0.128474406,0.133996153,0.14650405,,,,,,,0.026605099,0.033142001,0.039165727,0.05440415,,,,,,,0.024319022,0.008002395,0.007897612,0.007527239,,,,,,,0.861559264,0.921281807,0.968340656,1.373874016,,,,,,,0.002012712,0.003314834,0.004444153,0.008009964,,,,,,,0.015062302,0.014975407,0.015910785,0.019839053,,,,,,,10.03091332,16.27886657,20.21695391,26.58639483,,,,,,,1204.433779,1189.345428,1174.157278,1119.738493,,,,,,,0.00697408,0.007299041,0.007627069,0.021658571,,,,,,,0.034595737,0.034534969,0.034474105,0.0342469,,,,,,,0.972338995,0.559677899,0.583142358,1.17758029,,,,,,,0.007049744,0.011402252,0.015084993,0.026256432,,,,,,,0.125388145,0.132329613,0.138041938,0.154502007,,,,,,,0.026747279,0.034079144,0.040327556,0.059267651,,,,,,,0.021518315,0.007784077,0.007684712,0.007328596,,,,,,,0.846492338,0.915139368,0.962197647,1.376470149,,,,,,,0.001854957,0.003091548,0.004129601,0.006988941,,,,,,,0.01340626,0.015059721,0.016170121,0.020279228,,,,,,,10.62195297,17.97515576,22.39592736,29.07877478,,,,,,,1203.113956,1188.319272,1173.445175,1119.819529,,,,,,,0.007170562,0.007510372,0.007853403,0.022345421,,,,,,,0.034955627,0.034898474,0.03484125,0.034627356,,,,,,,0.599557186,0.529289516,0.551975772,1.134558598,,,,,,,0.006791735,0.011134295,0.014728728,0.024270964,,,,,,,0.126973679,0.133857046,0.139308442,0.152232613,,,,,,,0.026484726,0.033792883,0.039838199,0.055752065,,,,,,,0.011394139,0.007302266,0.007210869,0.006881268,,,,,,,0.756060066,0.852130657,0.907475539,1.352220765,,,, +Bus,E10,2020,,,,0.002249201,0.003658959,0.004908385,0.007667284,,,,,,,0.018582703,0.017940663,0.018871601,0.021249286,,,,,,,9.554556467,16.43863652,20.06836774,22.82088992,,,,,,,1117.428769,1104.137683,1090.897147,1091.396871,,,,,,,0.007029477,0.007351616,0.007683537,0.012092779,,,,,,,0.034658245,0.034603915,0.034549729,0.034443335,,,,,,,0.470223236,0.545574685,0.565801589,0.67546566,,,,,,,0.007412539,0.011858582,0.015638743,0.023297641,,,,,,,0.121398906,0.128782504,0.134890412,0.147623146,,,,,,,0.026815032,0.034453962,0.040961168,0.054346232,,,,,,,0.007423151,0.007334857,0.007246899,0.00725022,,,,,,,0.570680109,0.672239402,0.718322797,0.919686727,,,,,,,0.002174715,0.00352855,0.004720905,0.007302386,,,,,,,0.016862356,0.016557366,0.017471016,0.019621309,,,,,,,9.237456448,15.93220698,19.43664972,22.09582133,,,,,,,1123.273839,1109.679139,1096.120827,1096.207187,,,,,,,0.007004665,0.007320672,0.007646273,0.012018729,,,,,,,0.034568104,0.034510712,0.034453473,0.034341342,,,,,,,0.463116103,0.537131349,0.556851299,0.66433918,,,,,,,0.007327415,0.011710182,0.015426037,0.022892384,,,,,,,0.122668778,0.129855697,0.135764473,0.147936083,,,,,,,0.026812253,0.034305155,0.040664109,0.053606217,,,,,,,0.007461978,0.007371671,0.007281601,0.007282174,,,,,,,0.618646988,0.718597714,0.763208636,0.961870878,,,,,,,0.002124175,0.003454577,0.004631759,0.007224246,,,,,,,0.017903481,0.017366798,0.018283316,0.020589936,,,,,,,9.554584861,16.45132985,20.07297191,22.82325273,,,,,,,1117.061307,1103.621875,1090.222895,1090.31984,,,,,,,0.007408056,0.007737559,0.00807707,0.012681334,,,,,,,0.034631847,0.034581364,0.034531032,0.034432209,,,,,,,0.454812342,0.527293858,0.546656082,0.652717478,,,,,,,0.006957167,0.011117882,0.014642578,0.021750063,,,,,,,0.132908922,0.139481256,0.144836321,0.155994606,,,,,,,0.02759549,0.034707578,0.040739052,0.053096855,,,,,,,0.007420709,0.00733143,0.00724242,0.007243065,,,,,,,0.668441145,0.772155798,0.817076864,1.0237062,,,,,,,0.002221692,0.003614596,0.004848951,0.007598836,,,,,,,0.017992919,0.017198268,0.018060771,0.02039058,,,,,,,9.154933496,15.7765086,19.23271113,21.87897103,,,,,,,1118.079535,1104.376034,1090.700742,1090.519264,,,,,,,0.006687407,0.006994293,0.007310502,0.011506989,,,,,,,0.034314454,0.034257599,0.034200908,0.034089654,,,,,,,0.457721211,0.531427203,0.55113342,0.65749426,,,,,,,0.007265155,0.011617144,0.015312034,0.02281549,,,,,,,0.113603889,0.120959172,0.127055271,0.139797846,,,,,,,0.025619372,0.033120409,0.039504671,0.052682138,,,,,,,0.007427475,0.00733644,0.007245594,0.007244389,,,,,,,0.680688688,0.768637634,0.806611388,0.995157113,,,,,,,0.001938753,0.003122732,0.004147181,0.006254589,,,,,,,0.013704399,0.014337285,0.015306416,0.017098403,,,,,,,8.960989113,15.52676004,18.93255913,21.49787895,,,,,,,1134.772876,1120.442545,1106.107532,1105.044181,,,,,,,0.007319517,0.007645688,0.007981769,0.012533576,,,,,,,0.034567482,0.034516349,0.034465364,0.034365251,,,,,,,0.422241469,0.490156504,0.50819596,0.608305593,,,,,,,0.006881383,0.010960299,0.014388208,0.021125873,,,,,,,0.130398723,0.136739374,0.141832032,0.151999568,,,,,,,0.027047944,0.033921578,0.039687474,0.051104693,,,,,,,0.007538368,0.007443173,0.007347942,0.007340879,,,,,,,0.791200207,0.892924196,0.937047746,1.14545598,,,,,,,0.00196967,0.003177104,0.004225206,0.006403668,,,,,,,0.013639328,0.013992157,0.014888915,0.016644103,,,,,,,8.735809992,15.13757846,18.44900911,20.95886671,,,,,,,1124.170697,1109.936914,1095.706756,1094.654664,,,,,,,0.006885528,0.007196014,0.007515933,0.011813395,,,,,,,0.034308371,0.034252903,0.034197624,0.034089167,,,,,,,0.432394059,0.502083124,0.520548871,0.621661563,,,,,,,0.006925434,0.01103772,0.014498588,0.021330937,,,,,,,0.1193605,0.126002443,0.13139507,0.142215727,,,,,,,0.025732364,0.032704194,0.038567611,0.050239985,,,,,,,0.007467937,0.007373381,0.00727885,0.007271861,,,,,,,0.760430106,0.85207426,0.891631882,1.085277004,,,,,,,0.001927364,0.003099533,0.004110131,0.00617456,,,,,,,0.013218439,0.013888806,0.014840294,0.016555416,,,,,,,9.195490275,15.90964462,19.42942988,22.06230761,,,,,,,1148.298715,1133.732802,1119.14739,1118.084588,,,,,,,0.007009945,0.007328814,0.007657361,0.012044232,,,,,,,0.034553184,0.034498404,0.034443721,0.034336464,,,,,,,0.428845279,0.498043471,0.516426675,0.617856722,,,,,,,0.00696101,0.011088655,0.014559953,0.021390785,,,,,,,0.120914914,0.127529112,0.132882514,0.143553527,,,,,,,0.025952089,0.03292073,0.038770933,0.050352022,,,,,,,0.007628222,0.00753146,0.007434567,0.007427508,,,,,,,0.777117954,0.871891965,0.913612365,1.114173562,,,,,,,0.002041261,0.003299645,0.004398212,0.006715826,,,,,,,0.015325499,0.015534528,0.016500296,0.018474452,,,,,,,9.760939312,16.83456691,20.55988354,23.35055719,,,,,,,1133.450579,1119.409647,1105.381082,1104.883959,,,,,,,0.007086138,0.00740424,0.007732002,0.012148585,,,,,,,0.034551668,0.034494462,0.034437412,0.034325634,,,,,,,0.48136555,0.558344104,0.57872154,0.690561941,,,,,,,0.007101252,0.011333877,0.014910498,0.022021862,,,,,,,0.124547136,0.131343388,0.136881513,0.148116375,,,,,,,0.026667279,0.033851977,0.039920334,0.052105592,,,,,,,0.007418213,0.007326351,0.007234573,0.007231376,,,,,,,0.772227142,0.868080576,0.910071842,1.110166173,,,,,,,0.001915081,0.00308446,0.004095873,0.006163646,,,,,,,0.014857996,0.015737915,0.016865502,0.018809759,,,,,,,10.82262278,18.61322064,22.80183924,25.86914682,,,,,,,1132.314034,1118.548664,1104.813984,1104.790302,,,,,,,0.007287744,0.007620383,0.007963128,0.01252872,,,,,,,0.034913817,0.034860142,0.034806615,0.034701559,,,,,,,0.454818268,0.528191315,0.547931973,0.657203614,,,,,,,0.006945501,0.011083795,0.014578243,0.021469145,,,,,,,0.126359405,0.132888535,0.138180364,0.148761557,,,,,,,0.026620674,0.033596346,0.039473996,0.051133138,,,,,,,0.006958076,0.006873493,0.0067891,0.006788953,,,,,,,0.706393045,0.811751624,0.860685457,1.074468771,,, +Bus,E10,2025,,,,,0.002248531,0.003655841,0.004908327,0.007516653,,,,,,,0.018616667,0.018005904,0.018890767,0.020904214,,,,,,,9.576183701,16.45689492,20.10736109,21.91228606,,,,,,,1117.388331,1104.166528,1090.92234,1079.520648,,,,,,,0.007039934,0.007370461,0.007696657,0.008502209,,,,,,,0.034657946,0.034603725,0.03454961,0.034466736,,,,,,,0.469066919,0.543417788,0.564064957,0.56038649,,,,,,,0.0074085,0.011841201,0.015632436,0.023258386,,,,,,,0.121383112,0.128745135,0.134876694,0.148000645,,,,,,,0.026807516,0.034424906,0.040951527,0.054245651,,,,,,,0.007422882,0.007335048,0.007247066,0.007171325,,,,,,,0.566853349,0.666574583,0.712392432,0.855693548,,,,,,,0.00217403,0.003525202,0.004720563,0.007194941,,,,,,,0.016892938,0.016615196,0.017487913,0.019324378,,,,,,,9.25771549,15.94813833,19.47330208,21.19677363,,,,,,,1123.228326,1109.701189,1096.143005,1084.308595,,,,,,,0.007014912,0.007339154,0.007659146,0.008453136,,,,,,,0.034567755,0.034510491,0.034453364,0.034365869,,,,,,,0.461975528,0.535002637,0.5551396,0.55123663,,,,,,,0.007323451,0.011692583,0.015419452,0.022895477,,,,,,,0.12265275,0.129817539,0.135750027,0.148439019,,,,,,,0.02680479,0.034275568,0.040653817,0.053605654,,,,,,,0.007461678,0.007371816,0.007281748,0.00720313,,,,,,,0.614094926,0.712150305,0.756551297,0.896778917,,,,,,,0.002124076,0.003451615,0.004631683,0.007086059,,,,,,,0.017942476,0.01743707,0.018308105,0.020275754,,,,,,,9.57577972,16.47002116,20.1128386,21.91147716,,,,,,,1117.020573,1103.650945,1090.249292,1078.577365,,,,,,,0.007418748,0.007756835,0.008090493,0.008921985,,,,,,,0.034631551,0.034581174,0.034530926,0.034453911,,,,,,,0.453709839,0.525205344,0.544971625,0.541130439,,,,,,,0.006954567,0.011101162,0.014636258,0.021725328,,,,,,,0.132894534,0.139444232,0.144822038,0.156506628,,,,,,,0.027590351,0.034679528,0.040729306,0.053040367,,,,,,,0.00742044,0.007331623,0.007242596,0.007165058,,,,,,,0.66325363,0.764377494,0.809573652,0.951384366,,,,,,,0.002220459,0.003610313,0.004847619,0.007418783,,,,,,,0.018031946,0.017269498,0.018085435,0.020064391,,,,,,,9.174798578,15.79151132,19.26860696,20.96980392,,,,,,,1118.035919,1104.400908,1090.724462,1078.690737,,,,,,,0.006697363,0.007012245,0.007322997,0.008090102,,,,,,,0.034314117,0.03425739,0.034200774,0.034114094,,,,,,,0.456572328,0.529290058,0.549416726,0.545619908,,,,,,,0.007259721,0.011597188,0.015302887,0.022735249,,,,,,,0.113586082,0.120916998,0.127036014,0.140021234,,,,,,,0.025609459,0.033086715,0.039489879,0.05248957,,,,,,,0.007427183,0.007336607,0.007245752,0.007165812,,,,,,,0.673654646,0.760013348,0.798521978,0.922475691,,,,,,,0.00193794,0.003119097,0.004146314,0.006237586,,,,,,,0.013726806,0.014378573,0.015317246,0.016859997,,,,,,,8.979363962,15.5389413,18.9658482,20.60701049,,,,,,,1134.71832,1120.449187,1106.120072,1093.183799,,,,,,,0.007330101,0.007664771,0.007995051,0.008817669,,,,,,,0.034567182,0.034516159,0.034465254,0.034387248,,,,,,,0.421187972,0.48818654,0.506605082,0.502722817,,,,,,,0.006877464,0.010943225,0.014381569,0.021223902,,,,,,,0.130381707,0.136701287,0.141816537,0.15281236,,,,,,,0.02704031,0.033892458,0.039676593,0.051327408,,,,,,,0.007538008,0.007443216,0.007348026,0.007262089,,,,,,,0.783180297,0.882605225,0.92648964,1.068722847,,,,,,,0.001969032,0.003173504,0.004224403,0.006370823,,,,,,,0.013664512,0.014037827,0.014902778,0.01643631,,,,,,,8.753718325,15.14964091,18.4818018,20.07832771,,,,,,,1124.11695,1109.94602,1095.720545,1082.879998,,,,,,,0.006895598,0.007214177,0.007528576,0.008308809,,,,,,,0.034308026,0.034252703,0.034197496,0.034112945,,,,,,,0.431322164,0.500068263,0.518928808,0.514993183,,,,,,,0.006921903,0.011020443,0.014491797,0.021409313,,,,,,,0.119345526,0.125964851,0.131379835,0.142893666,,,,,,,0.025725599,0.03267491,0.038556626,0.050409547,,,,,,,0.007467581,0.007373443,0.007278941,0.007193641,,,,,,,0.753276608,0.842614914,0.882170647,1.013236456,,,,,,,0.001925599,0.003094575,0.004107931,0.006158231,,,,,,,0.013234062,0.013922345,0.014845569,0.016318605,,,,,,,9.216839367,15.92651201,19.4671802,21.19853367,,,,,,,1148.242872,1133.735596,1119.158325,1105.982961,,,,,,,0.007020296,0.007347463,0.007670343,0.008469501,,,,,,,0.034552883,0.034498173,0.034443595,0.034360001,,,,,,,0.427745368,0.496014427,0.514791408,0.510856786,,,,,,,0.006954273,0.011067839,0.014549732,0.021464605,,,,,,,0.120893588,0.127484225,0.132860303,0.144250998,,,,,,,0.025939709,0.032885112,0.038753782,0.05053046,,,,,,,0.00762785,0.007531478,0.00743464,0.007347115,,,,,,,0.768994065,0.861783362,0.903181882,1.040680216,,,,,,,0.002040877,0.003296846,0.004398307,0.006663932,,,,,,,0.015352904,0.015585351,0.016515102,0.018233036,,,,,,,9.780880288,16.84979247,20.5966958,22.42204695,,,,,,,1133.400329,1119.422312,1105.397308,1092.929662,,,,,,,0.007096462,0.00742285,0.007744961,0.008545414,,,,,,,0.034551348,0.034494253,0.0344373,0.034350051,,,,,,,0.480191154,0.556141922,0.576951058,0.572669792,,,,,,,0.007098582,0.011318811,0.014906168,0.022091857,,,,,,,0.124533384,0.1313098,0.13687104,0.148801828,,,,,,,0.026661929,0.033826517,0.039913662,0.052251783,,,,,,,0.007417885,0.007326434,0.007234679,0.007153136,,,,,,,0.765732982,0.859693995,0.901511266,1.040109248,,,,,,,0.00191554,0.003082677,0.004096904,0.006172482,,,,,,,0.014880778,0.015781381,0.016876218,0.018604049,,,,,,,10.8444446,18.6331565,22.84380095,24.92956344,,,,,,,1132.261531,1118.556635,1104.824875,1092.78321,,,,,,,0.007298534,0.007639846,0.007976675,0.008809506,,,,,,,0.034913499,0.034859943,0.034806484,0.034724641,,,,,,,0.453738523,0.526131905,0.546263957,0.54274342,,,,,,,0.006945682,0.011072692,0.014577701,0.021612724,,,,,,,0.126350828,0.132862247,0.13817685,0.149640195,,,,,,,0.026620146,0.033577466,0.039473594,0.051439517,,,,,,,0.006957752,0.006873543,0.00678917,0.006715183,,,,,,,0.702187453,0.804987131,0.852799816,1.009689535,, +Bus,E10,2030,,,,,,0.002247076,0.003655606,0.00488992,0.007470431,,,,,,,0.018707253,0.018058263,0.018921837,0.020902721,,,,,,,9.617192966,16.50841728,20.17440427,21.88937205,,,,,,,1117.30387,1104.078482,1090.835043,1071.131272,,,,,,,0.007059473,0.007384765,0.007707123,0.008197686,,,,,,,0.034657301,0.034603156,0.034549114,0.034464779,,,,,,,0.468992988,0.543552547,0.563648005,0.559393939,,,,,,,0.00739858,0.011834748,0.015582117,0.023140202,,,,,,,0.121347772,0.128718844,0.134762683,0.147697477,,,,,,,0.026789335,0.03441323,0.040861021,0.054021521,,,,,,,0.007422321,0.007334465,0.007246488,0.007115594,,,,,,,0.565433516,0.665728692,0.706922673,0.846374724,,,,,,,0.002172384,0.003524707,0.004703106,0.007154173,,,,,,,0.016975093,0.016664609,0.017522564,0.019334994,,,,,,,9.296823984,15.99755503,19.53677404,21.17558644,,,,,,,1123.135771,1109.608207,1096.05176,1075.883275,,,,,,,0.007034079,0.007353183,0.007669412,0.008150645,,,,,,,0.034567063,0.034509908,0.034452827,0.034363773,,,,,,,0.461896329,0.535130758,0.554725129,0.550255384,,,,,,,0.007313338,0.011685865,0.015369973,0.022782621,,,,,,,0.122616428,0.129790229,0.135637892,0.148148421,,,,,,,0.026786104,0.034263244,0.04056527,0.053393775,,,,,,,0.007461063,0.007371197,0.007281142,0.007147161,,,,,,,0.612123725,0.710880754,0.74915849,0.887758198,,,,,,,0.002122672,0.00345135,0.004613692,0.007042824,,,,,,,0.018037433,0.017494077,0.01837551,0.020257808,,,,,,,9.617486098,16.52235873,20.18697723,21.8841303,,,,,,,1116.935841,1103.563388,1090.16201,1070.225636,,,,,,,0.007438736,0.007771465,0.008101193,0.008602976,,,,,,,0.034630952,0.034580651,0.034530445,0.034452127,,,,,,,0.453630148,0.525327654,0.54452684,0.540187264,,,,,,,0.006944904,0.011094674,0.014586386,0.021615155,,,,,,,0.132856697,0.139415238,0.144706735,0.156209805,,,,,,,0.02757222,0.034667447,0.0406395,0.052829469,,,,,,,0.007419876,0.007331042,0.007242016,0.007109577,,,,,,,0.659871968,0.762148461,0.79718968,0.944224406,,,,,,,0.002218308,0.003609163,0.004822083,0.007375881,,,,,,,0.018126314,0.017324454,0.01814269,0.020037076,,,,,,,9.213625589,15.84016395,19.3314161,20.94616771,,,,,,,1117.94588,1104.309145,1090.634972,1070.288902,,,,,,,0.006715979,0.00702587,0.007332972,0.007800314,,,,,,,0.034313453,0.034256798,0.034200252,0.034112036,,,,,,,0.456472893,0.529398225,0.548879968,0.544709515,,,,,,,0.007248174,0.011588619,0.015237227,0.022627339,,,,,,,0.113549192,0.120887919,0.126891425,0.139744115,,,,,,,0.025588558,0.033071396,0.039371266,0.052283994,,,,,,,0.007426586,0.007335996,0.007245158,0.007109998,,,,,,,0.669122566,0.756887998,0.782277581,0.917322975,,,,,,,0.001935979,0.003118102,0.004131859,0.006208521,,,,,,,0.013792076,0.014423539,0.015357085,0.016896929,,,,,,,9.015912481,15.5855493,19.020133,20.59209357,,,,,,,1134.60819,1120.342411,1106.020611,1084.717813,,,,,,,0.007349889,0.00767925,0.00800565,0.008502353,,,,,,,0.03456659,0.034515626,0.03446478,0.034385422,,,,,,,0.42110602,0.488297723,0.506227149,0.501807243,,,,,,,0.006867461,0.010936342,0.014337425,0.021123722,,,,,,,0.130343353,0.136671371,0.141714425,0.15254737,,,,,,,0.027021281,0.033879229,0.039598113,0.051143367,,,,,,,0.007537274,0.007442507,0.007347365,0.007205849,,,,,,,0.778933938,0.879613921,0.911099542,1.059686731,,,,,,,0.001967113,0.003172576,0.004209372,0.006339811,,,,,,,0.013732494,0.014083141,0.014950155,0.01646162,,,,,,,8.789741167,15.19556368,18.53861109,20.06066717,,,,,,,1124.009179,1109.840844,1095.622404,1074.461507,,,,,,,0.006914433,0.00722796,0.007538667,0.00801149,,,,,,,0.034307375,0.034252117,0.034196986,0.034110936,,,,,,,0.431237333,0.50018107,0.518529398,0.514066581,,,,,,,0.006911804,0.011013467,0.014445966,0.021307502,,,,,,,0.119309631,0.125937147,0.131276514,0.142632919,,,,,,,0.025706791,0.032661895,0.038475477,0.050222525,,,,,,,0.007466865,0.007372744,0.007278289,0.007137716,,,,,,,0.749033208,0.839653593,0.866757698,1.005623419,,,,,,,0.001922824,0.003092588,0.004087902,0.006134719,,,,,,,0.013291639,0.013961542,0.014857386,0.01637199,,,,,,,9.256437938,15.97654984,19.53585551,21.17762366,,,,,,,1148.12772,1133.626055,1119.057221,1097.399456,,,,,,,0.007039637,0.00736162,0.007680704,0.008166284,,,,,,,0.034552229,0.034497601,0.034443093,0.034358051,,,,,,,0.427642099,0.496110248,0.514313398,0.509972317,,,,,,,0.006942001,0.011058301,0.014488051,0.02137709,,,,,,,0.120852943,0.12745101,0.132725889,0.144019673,,,,,,,0.025916964,0.032867446,0.038645333,0.050370257,,,,,,,0.007627087,0.007530749,0.007433969,0.007290094,,,,,,,0.765021473,0.858969567,0.888822763,1.031374679,,,,,,,0.002039491,0.003296617,0.00438671,0.006626673,,,,,,,0.015427718,0.015633834,0.016556452,0.018257332,,,,,,,9.820627873,16.89998016,20.64860631,22.40989873,,,,,,,1133.296624,1119.320752,1105.299779,1084.446226,,,,,,,0.007115757,0.007436974,0.007755291,0.008239709,,,,,,,0.034550676,0.034493669,0.034436738,0.034347964,,,,,,,0.480120826,0.556288194,0.576627953,0.571589108,,,,,,,0.007089958,0.011313757,0.01487201,0.02197736,,,,,,,0.124499221,0.131284951,0.13678912,0.148510053,,,,,,,0.026645556,0.033816768,0.039852251,0.052040358,,,,,,,0.007417207,0.007325773,0.007234042,0.007097611,,,,,,,0.762710256,0.857638966,0.890578623,1.030545761,,,,,,,0.001914712,0.003083097,0.004094329,0.006136928,,,,,,,0.014950887,0.015830791,0.016913779,0.018655086,,,,,,,10.88836639,18.68824461,22.89169615,24.92618015,,,,,,,1132.154622,1118.453329,1104.72632,1084.307852,,,,,,,0.007318713,0.007654616,0.007987483,0.008494042,,,,,,,0.034912858,0.034859388,0.034805979,0.0347227,,,,,,,0.453708703,0.526304678,0.546145923,0.541624379,,,,,,,0.006939519,0.011070549,0.014567579,0.021491054,,,,,,,0.12632081,0.132842375,0.138142741,0.149336661,,,,,,,0.026607751,0.033572428,0.039454679,0.051218811,,,,,,,0.006957099,0.006872907,0.006788563,0.006663098,,,,,,,0.701233625,0.804430281,0.849581505,0.995824121, +Bus,E10,2035,,,,,,,0.002249391,0.003641836,0.004899511,0.007475095,,,,,,,0.018755174,0.0180825,0.018920112,0.020876018,,,,,,,9.647417633,16.54890488,20.15535803,21.84558341,,,,,,,1117.426012,1104.212976,1090.942003,1070.423839,,,,,,,0.007070168,0.00739195,0.007705528,0.008191547,,,,,,,0.034657583,0.03460355,0.034549532,0.034465856,,,,,,,0.469032503,0.543151134,0.563852702,0.559299497,,,,,,,0.00740385,0.011797883,0.01560687,0.023148943,,,,,,,0.121366827,0.128655702,0.134824156,0.147744039,,,,,,,0.026800327,0.034349455,0.040906674,0.054040742,,,,,,,0.007423131,0.007335357,0.007247198,0.007110894,,,,,,,0.564624737,0.660471093,0.709314035,0.845734386,,,,,,,0.002174512,0.003511694,0.004712134,0.00715851,,,,,,,0.017019209,0.01669217,0.01751816,0.019306384,,,,,,,9.325697078,16.03537101,19.51888335,21.13381041,,,,,,,1123.255354,1109.740338,1096.160215,1075.176266,,,,,,,0.007044571,0.007360234,0.007667848,0.008144627,,,,,,,0.034567378,0.034510309,0.034453269,0.034364915,,,,,,,0.461932708,0.534733817,0.554927869,0.550166126,,,,,,,0.007318419,0.011649695,0.015394221,0.02279123,,,,,,,0.122635243,0.12972915,0.135698306,0.148195259,,,,,,,0.026796682,0.034201131,0.040609757,0.053412651,,,,,,,0.007461857,0.007372076,0.007281861,0.007142465,,,,,,,0.610918492,0.703702375,0.752407825,0.887973588,,,,,,,0.002124853,0.003437921,0.004623074,0.007047832,,,,,,,0.018089744,0.017552672,0.018356723,0.0202097,,,,,,,9.648284768,16.56787575,20.16464529,21.83544503,,,,,,,1117.058961,1103.698035,1090.270173,1069.520679,,,,,,,0.007449677,0.007778813,0.008099567,0.0085967,,,,,,,0.034631227,0.034581014,0.034530848,0.034453133,,,,,,,0.453664953,0.524904177,0.544745299,0.540121505,,,,,,,0.006949708,0.011058268,0.014610938,0.021626057,,,,,,,0.132876163,0.139354938,0.144769745,0.1562654,,,,,,,0.027582569,0.034604855,0.040684943,0.052852875,,,,,,,0.007420695,0.007331937,0.007242734,0.007104894,,,,,,,0.657643778,0.749841045,0.802695521,0.947082042,,,,,,,0.002220043,0.003590243,0.004834944,0.007386863,,,,,,,0.01817739,0.017373694,0.018128564,0.019995504,,,,,,,9.242263931,15.87650239,19.3136688,20.90379001,,,,,,,1118.066777,1104.44299,1090.744042,1069.587682,,,,,,,0.006726168,0.007032715,0.007331452,0.007794468,,,,,,,0.03431375,0.034257204,0.034200701,0.034113155,,,,,,,0.456490941,0.528883785,0.549138555,0.544690094,,,,,,,0.007251989,0.011540364,0.015268992,0.022649574,,,,,,,0.113564488,0.120800102,0.12696639,0.139815947,,,,,,,0.025596832,0.032986602,0.039429711,0.052327804,,,,,,,0.007427389,0.007336885,0.007245882,0.007105339,,,,,,,0.666015139,0.740674657,0.789442459,0.922540118,,,,,,,0.001937679,0.003107473,0.004139218,0.006211841,,,,,,,0.013828651,0.014455153,0.015348586,0.016865021,,,,,,,9.042999389,15.61587212,19.00599705,20.55552894,,,,,,,1134.718781,1120.470249,1106.131704,1084.013112,,,,,,,0.00736072,0.007686526,0.008004035,0.008496141,,,,,,,0.034566866,0.034516,0.034465174,0.034386439,,,,,,,0.42113672,0.487939127,0.50641129,0.501720499,,,,,,,0.006872137,0.010904436,0.014358984,0.021130774,,,,,,,0.130361924,0.136620827,0.141770182,0.152594209,,,,,,,0.027030994,0.033825476,0.039637462,0.051159694,,,,,,,0.00753801,0.007443354,0.007348105,0.007201168,,,,,,,0.776156322,0.864525808,0.917874291,1.062957509,,,,,,,0.001968863,0.003161478,0.004217041,0.006343377,,,,,,,0.013770597,0.014122371,0.01493807,0.016425777,,,,,,,8.816424066,15.22811831,18.52300348,20.02251902,,,,,,,1124.121584,1109.969192,1095.733261,1073.765014,,,,,,,0.006924741,0.007234885,0.00753713,0.008005576,,,,,,,0.034307668,0.034252511,0.034197414,0.034112037,,,,,,,0.431266243,0.499799991,0.518723072,0.513987184,,,,,,,0.006916433,0.010980221,0.014468336,0.021315547,,,,,,,0.119327008,0.125882325,0.13133216,0.142677177,,,,,,,0.025716337,0.032605591,0.038516039,0.050239926,,,,,,,0.00746761,0.007373596,0.007279027,0.00713309,,,,,,,0.74623054,0.824451911,0.873581682,1.009453408,,,,,,,0.001923913,0.003077825,0.00409771,0.006142691,,,,,,,0.013322876,0.013967247,0.014861447,0.016356872,,,,,,,9.285768177,16.01786261,19.51565071,21.13219692,,,,,,,1148.236441,1133.752631,1119.170273,1096.685468,,,,,,,0.007050221,0.007368733,0.007679132,0.008160204,,,,,,,0.034552505,0.034497988,0.034443539,0.034359115,,,,,,,0.427656729,0.4956555,0.514542443,0.509934429,,,,,,,0.006945049,0.011013015,0.014517481,0.021397498,,,,,,,0.120867163,0.127373099,0.132795483,0.144088879,,,,,,,0.025923676,0.032790567,0.038698,0.050409335,,,,,,,0.007627808,0.007531591,0.00743472,0.007285352,,,,,,,0.762480952,0.844996177,0.89511508,1.034162725,,,,,,,0.002041711,0.003288026,0.004392877,0.006626942,,,,,,,0.015468757,0.01566673,0.016548275,0.018224438,,,,,,,9.849956444,16.92802601,20.63676108,22.37520768,,,,,,,1133.410812,1119.449668,1105.4109,1083.738169,,,,,,,0.007126321,0.007444066,0.007753721,0.008233653,,,,,,,0.034550987,0.034494064,0.034437205,0.034349112,,,,,,,0.480171031,0.555978998,0.576788351,0.57143648,,,,,,,0.007095906,0.011289236,0.014889094,0.021974891,,,,,,,0.124519788,0.13124755,0.136835505,0.14853586,,,,,,,0.026657496,0.033775347,0.039883973,0.052039878,,,,,,,0.007417957,0.007326616,0.007234769,0.007092976,,,,,,,0.76083019,0.846993996,0.895394808,1.032052451,,,,,,,0.001917248,0.003081219,0.004096152,0.006130338,,,,,,,0.014989877,0.015858639,0.016907491,0.018623129,,,,,,,10.9206798,18.7128673,22.88340909,24.89494205,,,,,,,1132.265361,1118.579313,1104.836001,1083.59685,,,,,,,0.007329756,0.007662031,0.007985841,0.008487711,,,,,,,0.034913153,0.034859756,0.03480641,0.034723763,,,,,,,0.453783463,0.526186356,0.546212121,0.541366636,,,,,,,0.006947096,0.011064056,0.014573445,0.021469631,,,,,,,0.126344496,0.132841226,0.138166819,0.149325419,,,,,,,0.026622357,0.033562889,0.039466462,0.051185034,,,,,,,0.006957781,0.006873681,0.006789237,0.006658729,,,,,,,0.7008981,0.801674697,0.850864906,0.992701961 +Bus,E10,2040,,,,,,,,0.002241108,0.003648734,0.004911052,,,,,,,,0.018778687,0.018073912,0.018917728,,,,,,,,9.674263477,16.53301628,20.13271481,,,,,,,,1117.63146,1104.393878,1091.12483,,,,,,,,0.007075683,0.007389437,0.007703547,,,,,,,,0.03465828,0.034604262,0.034550252,,,,,,,,0.468830684,0.543472037,0.564115585,,,,,,,,0.007381619,0.011816783,0.015637042,,,,,,,,0.121340972,0.128712983,0.134904336,,,,,,,,0.026763509,0.034385382,0.040962926,,,,,,,,0.007424497,0.007336559,0.007248411,,,,,,,,0.559424853,0.663052482,0.712206862,,,,,,,,0.002166683,0.003518237,0.004723015,,,,,,,,0.017045199,0.01668203,0.017512643,,,,,,,,9.351123495,16.02067425,19.49760251,,,,,,,,1123.46006,1109.923409,1096.34528,,,,,,,,0.007049982,0.007357767,0.007665905,,,,,,,,0.034568112,0.034511058,0.034454043,,,,,,,,0.461733358,0.53505152,0.555188515,,,,,,,,0.007296605,0.011668292,0.015423817,,,,,,,,0.122610961,0.12978609,0.135777431,,,,,,,,0.026760913,0.034236381,0.040664682,,,,,,,,0.007463218,0.007373293,0.007283092,,,,,,,,0.603720309,0.707166432,0.756325044,,,,,,,,0.002116765,0.003444698,0.004634374,,,,,,,,0.018146468,0.017528401,0.018334179,,,,,,,,9.679001775,16.54975551,20.13809323,,,,,,,,1117.264879,1103.88027,1090.453652,,,,,,,,0.007455314,0.007776245,0.008097535,,,,,,,,0.034631848,0.034581685,0.03453152,,,,,,,,0.453440207,0.525234001,0.545024178,,,,,,,,0.006927729,0.011077107,0.014640896,,,,,,,,0.132854015,0.139415385,0.144852642,,,,,,,,0.027546678,0.034641018,0.040741108,,,,,,,,0.007422061,0.007333148,0.007243953,,,,,,,,0.645074059,0.755628147,0.809347704,,,,,,,,0.002208687,0.003599506,0.004850366,,,,,,,,0.018224376,0.017353518,0.018111523,,,,,,,,9.268135166,15.86249313,19.29254743,,,,,,,,1118.273294,1104.627716,1090.929586,,,,,,,,0.006731421,0.007030324,0.007329563,,,,,,,,0.03431447,0.034257977,0.034201452,,,,,,,,0.456191608,0.529253229,0.549464785,,,,,,,,0.007222741,0.011564519,0.015307503,,,,,,,,0.113522309,0.120866329,0.127061975,,,,,,,,0.025547,0.03303191,0.039501096,,,,,,,,0.007428761,0.007338112,0.007247114,,,,,,,,0.64947914,0.748123194,0.798290931,,,,,,,,0.001931301,0.003112934,0.004148148,,,,,,,,0.013856237,0.014443355,0.01533832,,,,,,,,9.064210636,15.60460958,18.98918457,,,,,,,,1134.921016,1120.658399,1106.321566,,,,,,,,0.007366304,0.007683983,0.008002029,,,,,,,,0.034567508,0.034516676,0.034465861,,,,,,,,0.420959938,0.488229803,0.506648797,,,,,,,,0.006852956,0.010921226,0.014385452,,,,,,,,0.130345447,0.13667605,0.141844573,,,,,,,,0.027000531,0.033857488,0.039686501,,,,,,,,0.007539353,0.007444605,0.007349364,,,,,,,,0.760838003,0.871605669,0.926039335,,,,,,,,0.001962191,0.003167149,0.004226332,,,,,,,,0.013806042,0.014106886,0.014923544,,,,,,,,8.83915746,15.21579779,18.50443983,,,,,,,,1124.324585,1110.157598,1095.922565,,,,,,,,0.006930054,0.007232464,0.007535218,,,,,,,,0.034308365,0.034253259,0.034198148,,,,,,,,0.431073533,0.500103224,0.518972319,,,,,,,,0.006896408,0.010997593,0.014495741,,,,,,,,0.119306075,0.125935802,0.131405494,,,,,,,,0.02568405,0.032638262,0.038566374,,,,,,,,0.007468959,0.007374848,0.007280284,,,,,,,,0.730758391,0.831570353,0.881803247,,,,,,,,0.001915,0.003085115,0.004109528,,,,,,,,0.01332727,0.013967221,0.014865955,,,,,,,,9.313717149,16.00157488,19.49156377,,,,,,,,1148.438618,1133.943571,1119.360674,,,,,,,,0.007055678,0.007366252,0.007677164,,,,,,,,0.034553189,0.034498746,0.034444247,,,,,,,,0.42740179,0.495990111,0.514832216,,,,,,,,0.006917495,0.011035717,0.01455321,,,,,,,,0.12083207,0.127437314,0.132885184,,,,,,,,0.025878595,0.032832405,0.038762603,,,,,,,,0.00762915,0.00753286,0.007435984,,,,,,,,0.748440936,0.851551232,0.902721606,,,,,,,,0.00203658,0.003292533,0.004400377,,,,,,,,0.015497146,0.01565428,0.016538318,,,,,,,,9.869092524,16.91788139,20.62259399,,,,,,,,1133.613326,1119.63618,1105.598946,,,,,,,,0.007131762,0.007441584,0.007751764,,,,,,,,0.034551687,0.034494825,0.034437975,,,,,,,,0.480051481,0.55626322,0.576999836,,,,,,,,0.00708134,0.011302517,0.014910212,,,,,,,,0.124510495,0.131294474,0.136898134,,,,,,,,0.026634595,0.033801246,0.039923827,,,,,,,,0.007419282,0.007327837,0.007235999,,,,,,,,0.750062453,0.852066163,0.901178797,,,,,,,,0.001916206,0.003082591,0.00409851,,,,,,,,0.015012038,0.015848874,0.016899781,,,,,,,,10.93613364,18.70436805,22.87338788,,,,,,,,1132.465756,1118.764512,1105.02137,,,,,,,,0.007335456,0.007659442,0.007983793,,,,,,,,0.034913849,0.03486049,0.034807126,,,,,,,,0.453815397,0.526373929,0.5463103,,,,,,,,0.00694373,0.011068902,0.01458124,,,,,,,,0.126358108,0.132871923,0.138203152,,,,,,,,0.02661925,0.033573969,0.039482678,,,,,,,,0.006959011,0.006874822,0.006790379,,,,,,,,0.698218205,0.803157545,0.852435535 +Bus,E10,2045,,,,,,,,,0.002247526,0.003658631,,,,,,,,,0.018781643,0.018080965,,,,,,,,,9.67257859,16.53496969,,,,,,,,,1117.589127,1104.345824,,,,,,,,,0.007076358,0.007390506,,,,,,,,,0.034658098,0.034604074,,,,,,,,,0.468959439,0.54375146,,,,,,,,,0.007399526,0.011842129,,,,,,,,,0.121372254,0.128758927,,,,,,,,,0.026794634,0.034430038,,,,,,,,,0.007424217,0.007336239,,,,,,,,,0.561858115,0.666041416,,,,,,,,,0.002172767,0.00352753,,,,,,,,,0.017045797,0.016685626,,,,,,,,,9.349643316,16.02311753,,,,,,,,,1123.417081,1109.87522,,,,,,,,,0.007050644,0.007358818,,,,,,,,,0.034567921,0.034510882,,,,,,,,,0.461859788,0.535326414,,,,,,,,,0.007314189,0.011693072,,,,,,,,,0.122641281,0.129830482,,,,,,,,,0.026791266,0.034279709,,,,,,,,,0.007462932,0.007372972,,,,,,,,,0.607058825,0.711187732,,,,,,,,,0.002122969,0.003454309,,,,,,,,,0.018133726,0.017516143,,,,,,,,,9.675492885,16.54887451,,,,,,,,,1117.222923,1103.831631,,,,,,,,,0.007456008,0.007777338,,,,,,,,,0.034631703,0.034581502,,,,,,,,,0.453579423,0.525524257,,,,,,,,,0.006945098,0.011101914,,,,,,,,,0.132883486,0.139459238,,,,,,,,,0.027576729,0.034684521,,,,,,,,,0.007421783,0.007332824,,,,,,,,,0.650836199,0.762449937,,,,,,,,,0.002216486,0.003612191,,,,,,,,,0.018216189,0.017346331,,,,,,,,,9.266314574,15.86536776,,,,,,,,,1118.23061,1104.578029,,,,,,,,,0.006732066,0.007031339,,,,,,,,,0.034314303,0.034257764,,,,,,,,,0.45636368,0.529591147,,,,,,,,,0.00724371,0.01159595,,,,,,,,,0.113560453,0.120925438,,,,,,,,,0.025583792,0.033087813,,,,,,,,,0.007428477,0.007337782,,,,,,,,,0.656937858,0.757152834,,,,,,,,,0.001936371,0.003120438,,,,,,,,,0.013853949,0.014441988,,,,,,,,,9.064247418,15.61024533,,,,,,,,,1134.876713,1120.607083,,,,,,,,,0.007366983,0.007685064,,,,,,,,,0.034567343,0.034516495,,,,,,,,,0.421072307,0.488477688,,,,,,,,,0.006868812,0.010943094,,,,,,,,,0.130371427,0.136713252,,,,,,,,,0.027027442,0.033894967,,,,,,,,,0.007539058,0.007444265,,,,,,,,,0.767846794,0.879917491,,,,,,,,,0.001967445,0.003174982,,,,,,,,,0.013800089,0.014101165,,,,,,,,,8.838218014,15.21956685,,,,,,,,,1124.280248,1110.106475,,,,,,,,,0.006930705,0.007233495,,,,,,,,,0.034308192,0.034253061,,,,,,,,,0.43119345,0.500363721,,,,,,,,,0.006912707,0.011020263,,,,,,,,,0.119333677,0.125975465,,,,,,,,,0.025711847,0.032677289,,,,,,,,,0.007468666,0.007374508,,,,,,,,,0.737835073,0.839937179,,,,,,,,,0.001921171,0.003094744,,,,,,,,,0.013335276,0.013979368,,,,,,,,,9.311106645,16.00216137,,,,,,,,,1148.394914,1133.890408,,,,,,,,,0.007056353,0.007367298,,,,,,,,,0.034553046,0.034498511,,,,,,,,,0.427549574,0.496288887,,,,,,,,,0.006937176,0.011064741,,,,,,,,,0.12086612,0.127488902,,,,,,,,,0.025912095,0.032882168,,,,,,,,,0.00762886,0.007532506,,,,,,,,,0.754857973,0.859263521,,,,,,,,,0.002041227,0.003299138,,,,,,,,,0.015495707,0.015653837,,,,,,,,,9.871162727,16.92714584,,,,,,,,,1133.56973,1119.585947,,,,,,,,,0.007132428,0.007442641,,,,,,,,,0.034551513,0.034494622,,,,,,,,,0.480141559,0.556490643,,,,,,,,,0.007095335,0.011320663,,,,,,,,,0.124533447,0.131325173,,,,,,,,,0.026658512,0.033832629,,,,,,,,,0.007418997,0.007327508,,,,,,,,,0.755027461,0.857955619,,,,,,,,,0.001918772,0.00308525,,,,,,,,,0.015013414,0.015851441,,,,,,,,,10.94144211,18.71893903,,,,,,,,,1132.422242,1118.71491,,,,,,,,,0.00733615,0.007660542,,,,,,,,,0.034913669,0.034860291,,,,,,,,,0.453834699,0.526496809,,,,,,,,,0.006952366,0.011076996,,,,,,,,,0.126370103,0.132882198,,,,,,,,,0.026633609,0.033587406,,,,,,,,,0.006958743,0.006874515,,,,,,,,,0.699511764,0.804786023 +Bus,E10,2050,,,,,,,,,,0.002252396,,,,,,,,,,0.018787165,,,,,,,,,,9.665986742,,,,,,,,,,1117.534614,,,,,,,,,,0.007077256,,,,,,,,,,0.034657887,,,,,,,,,,0.469104947,,,,,,,,,,0.007411539,,,,,,,,,,0.121390611,,,,,,,,,,0.026815368,,,,,,,,,,0.007423854,,,,,,,,,,0.564755804,,,,,,,,,,0.002177323,,,,,,,,,,0.017048094,,,,,,,,,,9.343481318,,,,,,,,,,1123.361872,,,,,,,,,,0.00705153,,,,,,,,,,0.034567699,,,,,,,,,,0.462002428,,,,,,,,,,0.007325912,,,,,,,,,,0.122658707,,,,,,,,,,0.026811299,,,,,,,,,,0.007462565,,,,,,,,,,0.611034308,,,,,,,,,,0.002127733,,,,,,,,,,0.018120541,,,,,,,,,,9.666771207,,,,,,,,,,1117.167725,,,,,,,,,,0.007456924,,,,,,,,,,0.03463149,,,,,,,,,,0.453736862,,,,,,,,,,0.00695701,,,,,,,,,,0.132900523,,,,,,,,,,0.027597096,,,,,,,,,,0.007421416,,,,,,,,,,0.65774192,,,,,,,,,,0.002223033,,,,,,,,,,0.018208578,,,,,,,,,,9.25981214,,,,,,,,,,1118.174682,,,,,,,,,,0.006732921,,,,,,,,,,0.03431406,,,,,,,,,,0.456560374,,,,,,,,,,0.007259544,,,,,,,,,,0.113587247,,,,,,,,,,0.025611561,,,,,,,,,,0.007428106,,,,,,,,,,0.666090097,,,,,,,,,,0.001939989,,,,,,,,,,0.013851809,,,,,,,,,,9.060033617,,,,,,,,,,1134.819933,,,,,,,,,,0.007367894,,,,,,,,,,0.034567139,,,,,,,,,,0.421198246,,,,,,,,,,0.006878994,,,,,,,,,,0.13038474,,,,,,,,,,0.02704436,,,,,,,,,,0.00753868,,,,,,,,,,0.776230608,,,,,,,,,,0.001971246,,,,,,,,,,0.013793832,,,,,,,,,,8.832965394,,,,,,,,,,1124.223276,,,,,,,,,,0.006931572,,,,,,,,,,0.03430797,,,,,,,,,,0.431328641,,,,,,,,,,0.006923364,,,,,,,,,,0.119348819,,,,,,,,,,0.02572972,,,,,,,,,,0.007468288,,,,,,,,,,0.746300148,,,,,,,,,,0.001926108,,,,,,,,,,0.013345203,,,,,,,,,,9.30354367,,,,,,,,,,1148.336499,,,,,,,,,,0.007057239,,,,,,,,,,0.03455281,,,,,,,,,,0.427716963,,,,,,,,,,0.006951812,,,,,,,,,,0.120888728,,,,,,,,,,0.025936692,,,,,,,,,,0.007628474,,,,,,,,,,0.762557268,,,,,,,,,,0.002044228,,,,,,,,,,0.015495058,,,,,,,,,,9.868892778,,,,,,,,,,1133.513872,,,,,,,,,,0.007133319,,,,,,,,,,0.034551295,,,,,,,,,,0.480240775,,,,,,,,,,0.007103059,,,,,,,,,,0.124542666,,,,,,,,,,0.0266714,,,,,,,,,,0.007418631,,,,,,,,,,0.760932107,,,,,,,,,,0.00191945,,,,,,,,,,0.015015518,,,,,,,,,,10.94229,,,,,,,,,,1132.366269,,,,,,,,,,0.007337077,,,,,,,,,,0.034913445,,,,,,,,,,0.453850263,,,,,,,,,,0.006953929,,,,,,,,,,0.126366805,,,,,,,,,,0.026635565,,,,,,,,,,0.006958401,,,,,,,,,,0.701040033 +Bus,E15,1990,0.140076912,,,,,,,,,,0.447997215,,,,,,,,,,89.20908786,,,,,,,,,,991.4746672,,,,,,,,,,0.050343031,,,,,,,,,,0.033892826,,,,,,,,,,9.635262837,,,,,,,,,,0.401235564,,,,,,,,,,0.911641551,,,,,,,,,,0.740433427,,,,,,,,,,0.046894125,,,,,,,,,,5.938023045,,,,,,,,,,0.121209515,,,,,,,,,,0.443232641,,,,,,,,,,89.52076908,,,,,,,,,,990.3300245,,,,,,,,,,0.04982685,,,,,,,,,,0.033762153,,,,,,,,,,9.557971493,,,,,,,,,,0.353417271,,,,,,,,,,0.813543846,,,,,,,,,,0.652897614,,,,,,,,,,0.052078695,,,,,,,,,,6.034917121,,,,,,,,,,0.132830641,,,,,,,,,,0.502118489,,,,,,,,,,99.09788698,,,,,,,,,,985.9427657,,,,,,,,,,0.052376199,,,,,,,,,,0.033922594,,,,,,,,,,9.525984789,,,,,,,,,,0.371998909,,,,,,,,,,0.869701816,,,,,,,,,,0.696449013,,,,,,,,,,0.073427767,,,,,,,,,,6.749487678,,,,,,,,,,0.148763461,,,,,,,,,,0.464602603,,,,,,,,,,95.7346814,,,,,,,,,,981.4189752,,,,,,,,,,0.047922869,,,,,,,,,,0.033513998,,,,,,,,,,9.6424172,,,,,,,,,,0.425249537,,,,,,,,,,0.961994556,,,,,,,,,,0.789188483,,,,,,,,,,0.068091969,,,,,,,,,,6.30159229,,,,,,,,,,0.071833221,,,,,,,,,,0.429363987,,,,,,,,,,87.41729296,,,,,,,,,,983.0199923,,,,,,,,,,0.051792023,,,,,,,,,,0.033849159,,,,,,,,,,8.922095468,,,,,,,,,,0.218337125,,,,,,,,,,0.541748939,,,,,,,,,,0.407566038,,,,,,,,,,0.060424107,,,,,,,,,,6.529892745,,,,,,,,,,0.084921477,,,,,,,,,,0.429099769,,,,,,,,,,90.27136309,,,,,,,,,,975.1914023,,,,,,,,,,0.048968777,,,,,,,,,,0.033528378,,,,,,,,,,9.193305963,,,,,,,,,,0.258499685,,,,,,,,,,0.616958211,,,,,,,,,,0.480327584,,,,,,,,,,0.066791275,,,,,,,,,,6.296758486,,,,,,,,,,0.070124223,,,,,,,,,,0.414052813,,,,,,,,,,86.8641243,,,,,,,,,,991.3667731,,,,,,,,,,0.050041589,,,,,,,,,,0.033781811,,,,,,,,,,9.093818418,,,,,,,,,,0.217962782,,,,,,,,,,0.532673682,,,,,,,,,,0.404894167,,,,,,,,,,0.0615864,,,,,,,,,,6.366241046,,,,,,,,,,0.096718276,,,,,,,,,,0.429225266,,,,,,,,,,89.98695365,,,,,,,,,,989.7069738,,,,,,,,,,0.050298998,,,,,,,,,,0.033748881,,,,,,,,,,9.930312127,,,,,,,,,,0.288397744,,,,,,,,,,0.682595909,,,,,,,,,,0.535745883,,,,,,,,,,0.060411286,,,,,,,,,,6.430700229,,,,,,,,,,0.069849492,,,,,,,,,,0.392333461,,,,,,,,,,82.83366504,,,,,,,,,,996.9931645,,,,,,,,,,0.052102332,,,,,,,,,,0.034158523,,,,,,,,,,9.346804671,,,,,,,,,,0.215917087,,,,,,,,,,0.527699936,,,,,,,,,,0.397429941,,,,,,,,,,0.029207039,,,,,,,,,,5.899593897,,,,,,,,, +Bus,E15,1995,0.025174562,0.095759361,,,,,,,,,0.310460186,0.405031471,,,,,,,,,107.181528,88.68256969,,,,,,,,,1005.123858,993.6238337,,,,,,,,,0.074277705,0.055083799,,,,,,,,,0.033928478,0.033898121,,,,,,,,,6.903297083,9.014792593,,,,,,,,,0.068080918,0.261421258,,,,,,,,,0.229266697,0.622770343,,,,,,,,,0.136162417,0.484810019,,,,,,,,,0.047489798,0.022464539,,,,,,,,,4.119596682,5.398566623,,,,,,,,,0.021723926,0.082861268,,,,,,,,,0.308252336,0.398184012,,,,,,,,,108.3679141,88.58082798,,,,,,,,,1007.388558,993.2819422,,,,,,,,,0.073523932,0.0545231,,,,,,,,,0.03379967,0.033767905,,,,,,,,,6.869090863,8.907676667,,,,,,,,,0.059949368,0.230971105,,,,,,,,,0.213259963,0.559912675,,,,,,,,,0.121229285,0.428445292,,,,,,,,,0.052931266,0.022631287,,,,,,,,,4.192611567,5.460442247,,,,,,,,,0.023860136,0.092290591,,,,,,,,,0.346165677,0.423604409,,,,,,,,,119.0086232,95.12170347,,,,,,,,,1002.461545,988.8162171,,,,,,,,,0.077293181,0.057317427,,,,,,,,,0.033955508,0.03392838,,,,,,,,,6.955772549,8.66185478,,,,,,,,,0.062770477,0.247338189,,,,,,,,,0.229144467,0.604563853,,,,,,,,,0.129060138,0.461803461,,,,,,,,,0.074699645,0.023006548,,,,,,,,,4.659984515,5.79305514,,,,,,,,,0.025894594,0.100645309,,,,,,,,,0.325740889,0.403383602,,,,,,,,,116.0468944,92.45964826,,,,,,,,,1000.927215,984.8711182,,,,,,,,,0.070706168,0.052434851,,,,,,,,,0.033551309,0.033519178,,,,,,,,,6.914783932,8.851475497,,,,,,,,,0.068765513,0.272768259,,,,,,,,,0.226469365,0.644171245,,,,,,,,,0.137964572,0.507962768,,,,,,,,,0.069454399,0.039452101,,,,,,,,,4.436937295,5.537714893,,,,,,,,,0.012565417,0.04897201,,,,,,,,,0.308167674,0.391649721,,,,,,,,,107.4607745,86.31569747,,,,,,,,,1009.825895,988.2398039,,,,,,,,,0.076430116,0.056676903,,,,,,,,,0.03388252,0.033854551,,,,,,,,,6.488168537,8.295509507,,,,,,,,,0.036118087,0.143144177,,,,,,,,,0.170321191,0.385091048,,,,,,,,,0.078273695,0.268887561,,,,,,,,,0.062039262,0.02286122,,,,,,,,,4.54708999,5.957513822,,,,,,,,,0.014538937,0.057074395,,,,,,,,,0.30517944,0.37943739,,,,,,,,,110.9147559,87.94139958,,,,,,,,,1000.152102,980.0137625,,,,,,,,,0.072258045,0.053585138,,,,,,,,,0.033564683,0.033534518,,,,,,,,,6.632710234,8.448679912,,,,,,,,,0.041515235,0.166239171,,,,,,,,,0.173406273,0.423833644,,,,,,,,,0.087329967,0.309402668,,,,,,,,,0.068500336,0.022774904,,,,,,,,,4.41430656,5.625268574,,,,,,,,,0.012267919,0.04722089,,,,,,,,,0.299158535,0.372880318,,,,,,,,,107.2322144,85.88557565,,,,,,,,,1021.554948,997.3406208,,,,,,,,,0.073836725,0.054756132,,,,,,,,,0.033817774,0.033787383,,,,,,,,,6.562952541,8.40649498,,,,,,,,,0.036253576,0.141085488,,,,,,,,,0.163145806,0.374012277,,,,,,,,,0.077367356,0.264455433,,,,,,,,,0.063449948,0.031741625,,,,,,,,,4.468513583,5.740838049,,,,,,,,,0.017150528,0.065834883,,,,,,,,,0.30393437,0.382176437,,,,,,,,,110.1548961,91.30351498,,,,,,,,,1012.356641,993.9581831,,,,,,,,,0.074223067,0.05504105,,,,,,,,,0.033786212,0.033754703,,,,,,,,,7.158365381,9.187865804,,,,,,,,,0.048412948,0.188057483,,,,,,,,,0.191239395,0.474474481,,,,,,,,,0.100415333,0.35154937,,,,,,,,,0.061693051,0.035673989,,,,,,,,,4.416686265,5.771233668,,,,,,,,,0.012766327,0.047652294,,,,,,,,,0.284445726,0.35357716,,,,,,,,,102.4985995,86.87079499,,,,,,,,,1014.377159,1000.042012,,,,,,,,,0.0768756,0.057009796,,,,,,,,,0.034193669,0.034163745,,,,,,,,,6.707717228,8.718282377,,,,,,,,,0.038049592,0.142083476,,,,,,,,,0.169926512,0.378165301,,,,,,,,,0.080253921,0.2650588,,,,,,,,,0.029631361,0.013447079,,,,,,,,,4.129337793,5.367427696,,,,,,,, +Bus,E15,2000,0.015789246,0.020341329,0.052124001,,,,,,,,0.083630404,0.083569823,0.267295311,,,,,,,,77.02490888,80.27623977,77.19103244,,,,,,,,1060.07236,1051.741641,988.1581302,,,,,,,,0.125683693,0.127039101,0.049967674,,,,,,,,0.034147502,0.034114427,0.033919458,,,,,,,,5.935062476,5.99544863,8.061433374,,,,,,,,0.046728042,0.059917781,0.152349187,,,,,,,,0.189176451,0.214112189,0.396442308,,,,,,,,0.096609552,0.119289933,0.284214032,,,,,,,,0.050078874,0.023778783,0.020098419,,,,,,,,3.199093098,3.349636088,4.266343381,,,,,,,,0.013683987,0.017619589,0.045288119,,,,,,,,0.082637107,0.081972935,0.264823858,,,,,,,,77.65084005,80.45523095,77.40481578,,,,,,,,1063.785287,1055.237875,989.8578938,,,,,,,,0.124503438,0.125830841,0.049599075,,,,,,,,0.034030061,0.03399543,0.033790366,,,,,,,,5.911173416,5.928764712,7.968751627,,,,,,,,0.041162333,0.05275846,0.134763243,,,,,,,,0.178913377,0.200507682,0.361134078,,,,,,,,0.086654015,0.106393707,0.252210175,,,,,,,,0.055878205,0.02404422,0.020132989,,,,,,,,3.251667905,3.382345307,4.343311184,,,,,,,,0.014640609,0.018840154,0.049448892,,,,,,,,0.093334383,0.087099341,0.280873479,,,,,,,,85.60960589,86.14133519,81.91961514,,,,,,,,1058.383161,1049.975227,984.1593352,,,,,,,,0.130976896,0.132360781,0.05227368,,,,,,,,0.034157637,0.03412799,0.033948091,,,,,,,,6.022231959,5.82104191,7.734669656,,,,,,,,0.042109892,0.053881865,0.141559259,,,,,,,,0.191019406,0.212406118,0.384686326,,,,,,,,0.090539994,0.110186065,0.266846939,,,,,,,,0.078885708,0.024439848,0.020017081,,,,,,,,3.657177064,3.589658763,4.597126999,,,,,,,,0.015852708,0.020405056,0.053485369,,,,,,,,0.087505349,0.083422783,0.261633357,,,,,,,,83.1326664,83.05470315,78.69194491,,,,,,,,1058.137448,1049.408671,981.813853,,,,,,,,0.119632087,0.120922305,0.04755289,,,,,,,,0.033780578,0.033745568,0.033541515,,,,,,,,5.981352501,5.90323828,7.832368044,,,,,,,,0.045879155,0.058733572,0.154019102,,,,,,,,0.182270527,0.206711631,0.394901062,,,,,,,,0.095194469,0.117374552,0.287110989,,,,,,,,0.07342816,0.042109099,0.019969378,,,,,,,,3.483782628,3.479790013,4.305340791,,,,,,,,0.007895173,0.010142645,0.026657749,,,,,,,,0.081949545,0.081835902,0.267826567,,,,,,,,77.02447113,79.63782511,75.88713024,,,,,,,,1069.917387,1060.792667,990.3493959,,,,,,,,0.129502656,0.130871229,0.051672346,,,,,,,,0.034087436,0.034056917,0.033874525,,,,,,,,5.597435285,5.575970084,7.397871211,,,,,,,,0.0244554,0.031268911,0.082276802,,,,,,,,0.151941188,0.163958952,0.260820902,,,,,,,,0.057344242,0.068684546,0.158519043,,,,,,,,0.065723837,0.024541813,0.020142982,,,,,,,,3.486643541,3.658369139,4.795654362,,,,,,,,0.009050755,0.011628025,0.031922174,,,,,,,,0.08108929,0.078757088,0.257466214,,,,,,,,79.27633422,80.74583101,77.59415392,,,,,,,,1059.691945,1050.688896,982.4645516,,,,,,,,0.12236235,0.123668469,0.048852495,,,,,,,,0.033787417,0.033754518,0.033564459,,,,,,,,5.735363544,5.629501643,7.527159444,,,,,,,,0.027820535,0.03556908,0.097728179,,,,,,,,0.149855884,0.163643863,0.284199449,,,,,,,,0.062449635,0.075260674,0.185176233,,,,,,,,0.072575494,0.024423562,0.019982608,,,,,,,,3.412821741,3.487986439,4.62150972,,,,,,,,0.007857008,0.010100929,0.026078455,,,,,,,,0.07925321,0.077906645,0.252331249,,,,,,,,76.55476525,78.65637685,74.96635266,,,,,,,,1082.89862,1073.549461,1001.004189,,,,,,,,0.124982878,0.12632396,0.049737216,,,,,,,,0.034038319,0.034005205,0.033808925,,,,,,,,5.659598907,5.628855181,7.462033374,,,,,,,,0.024968895,0.031971785,0.082239515,,,,,,,,0.144931695,0.157591757,0.253096789,,,,,,,,0.057128155,0.068954623,0.157105688,,,,,,,,0.067258641,0.034170424,0.020359704,,,,,,,,3.419998588,3.525071511,4.574230387,,,,,,,,0.010830455,0.013934972,0.036021008,,,,,,,,0.081091365,0.07900364,0.252671791,,,,,,,,78.84696008,82.93763607,78.31452702,,,,,,,,1070.944356,1062.051632,993.8326732,,,,,,,,0.125717738,0.127053332,0.050114983,,,,,,,,0.034015536,0.03398117,0.033777074,,,,,,,,6.177504539,6.152308854,8.152309688,,,,,,,,0.033151155,0.042462472,0.109323852,,,,,,,,0.164620669,0.181838211,0.310764864,,,,,,,,0.072537578,0.088426421,0.20632389,,,,,,,,0.065236735,0.038137549,0.01813253,,,,,,,,3.406775346,3.515930672,4.501317067,,,,,,,,0.008400006,0.010815591,0.027089579,,,,,,,,0.076067693,0.07543543,0.240718209,,,,,,,,74.39490788,82.17628848,76.2735213,,,,,,,,1071.090464,1062.474559,998.9116948,,,,,,,,0.130105201,0.13150388,0.051752059,,,,,,,,0.034409672,0.034377042,0.034184817,,,,,,,,5.748591201,5.833772395,7.797171531,,,,,,,,0.027039688,0.034698257,0.085943454,,,,,,,,0.152877492,0.166880435,0.263759125,,,,,,,,0.06074119,0.073802225,0.163438791,,,,,,,,0.031276935,0.014260766,0.009658684,,,,,,,,3.154344062,3.327440583,4.304449792,,,,,,, +Bus,E15,2005,0.005604134,0.008550003,0.010054662,0.035761948,,,,,,,0.037936862,0.033529647,0.0253327,0.173781702,,,,,,,25.78445278,38.75863455,35.76279988,75.5699529,,,,,,,1103.114734,1092.831438,1077.651017,1008.386578,,,,,,,0.038401433,0.039279731,0.031116845,0.059391496,,,,,,,0.03431032,0.034267472,0.034249596,0.033986306,,,,,,,4.00246915,4.412858866,4.357450872,5.511377734,,,,,,,0.017712523,0.026607009,0.03321582,0.108636884,,,,,,,0.133465206,0.149968035,0.162172035,0.307163063,,,,,,,0.044313998,0.059713325,0.070840278,0.203991385,,,,,,,0.052116498,0.024708005,0.021918632,0.006836616,,,,,,,1.507492818,2.063180441,1.887161482,3.285650734,,,,,,,0.005061727,0.007497734,0.008892331,0.031111618,,,,,,,0.036837375,0.032192881,0.024464971,0.172065776,,,,,,,25.56271207,38.3553068,35.44075544,75.41299007,,,,,,,1107.394304,1096.871143,1082.327815,1011.609965,,,,,,,0.038070007,0.038931888,0.030924346,0.058959427,,,,,,,0.034201269,0.034156391,0.034137613,0.033860687,,,,,,,3.994277891,4.353875376,4.297004697,5.448017454,,,,,,,0.016179807,0.023800711,0.02985922,0.09600003,,,,,,,0.13160723,0.145441332,0.156593407,0.282480946,,,,,,,0.041717464,0.054775724,0.064980429,0.181356017,,,,,,,0.058165397,0.02499296,0.022013758,0.006858469,,,,,,,1.535329684,2.076460212,1.913156906,3.343002142,,,,,,,0.005720436,0.006685477,0.007926082,0.033091498,,,,,,,0.040871705,0.032823359,0.024889471,0.185107368,,,,,,,27.30357124,42.33173035,38.40319108,78.52465645,,,,,,,1101.910707,1091.573661,1076.170252,1005.733837,,,,,,,0.040077323,0.040976786,0.032627172,0.062144682,,,,,,,0.034307886,0.034269257,0.034252759,0.034009782,,,,,,,4.110327312,4.303397379,4.228844211,5.327512714,,,,,,,0.017280344,0.021289144,0.026676731,0.097950825,,,,,,,0.143857885,0.149969548,0.15979483,0.296004217,,,,,,,0.045286927,0.051630093,0.060709973,0.186937616,,,,,,,0.082134993,0.025408928,0.021888519,0.00681863,,,,,,,1.700887246,2.153778724,1.984721062,3.563272365,,,,,,,0.005997518,0.00836354,0.009794586,0.036187426,,,,,,,0.037434881,0.033945723,0.023673492,0.172130904,,,,,,,25.79161198,41.6412714,35.34067118,77.02110471,,,,,,,1102.217989,1091.538983,1076.527572,1004.752334,,,,,,,0.036549819,0.037386197,0.029609786,0.056520669,,,,,,,0.033950995,0.033905768,0.033887067,0.033611492,,,,,,,4.043994916,4.527953568,4.243591308,5.346497675,,,,,,,0.018341552,0.025742207,0.032071447,0.108062,,,,,,,0.128513088,0.142155849,0.153552806,0.300777173,,,,,,,0.044935375,0.057723593,0.068102724,0.202729831,,,,,,,0.076488239,0.043803857,0.021895784,0.006811977,,,,,,,1.641224565,2.196036749,1.908777532,3.359257148,,,,,,,0.003351197,0.005020826,0.006068497,0.018222743,,,,,,,0.035081255,0.031029736,0.024006115,0.172391137,,,,,,,25.97890213,37.71139093,35.05069241,73.53511786,,,,,,,1114.872475,1103.731555,1090.800777,1016.387166,,,,,,,0.039622604,0.040512422,0.032247284,0.061429027,,,,,,,0.034239776,0.034200114,0.034183402,0.033937067,,,,,,,3.799402299,4.062865378,3.988922813,5.076260214,,,,,,,0.01103071,0.016410284,0.020884466,0.057910426,,,,,,,0.128803799,0.138019748,0.146088459,0.212635232,,,,,,,0.033434695,0.042500903,0.05001686,0.114471323,,,,,,,0.068484778,0.025535308,0.02218609,0.006890858,,,,,,,1.687676804,2.275615711,2.131068702,3.683338326,,,,,,,0.003818081,0.005156624,0.006289144,0.020966557,,,,,,,0.034407015,0.029201985,0.022506698,0.167861283,,,,,,,25.60028597,38.15909484,35.56268339,74.3500654,,,,,,,1104.493721,1093.474253,1082.454878,1006.392512,,,,,,,0.0374162,0.038263634,0.030463041,0.057950191,,,,,,,0.03395301,0.033910179,0.033897211,0.033624247,,,,,,,3.90804238,4.124832044,4.048424778,5.143883838,,,,,,,0.012394496,0.016994941,0.021802245,0.066272521,,,,,,,0.121875898,0.12959378,0.138899291,0.220809016,,,,,,,0.034715853,0.04233422,0.050522149,0.128193038,,,,,,,0.075641514,0.025418476,0.022016339,0.006823095,,,,,,,1.638313552,2.133745856,2.007515548,3.507124624,,,,,,,0.003346475,0.004857783,0.005938488,0.018130113,,,,,,,0.033499976,0.030968236,0.023027633,0.163132655,,,,,,,25.50276283,39.48382982,34.97085651,73.34139623,,,,,,,1128.37609,1117.009546,1104.324366,1028.569799,,,,,,,0.038201212,0.039070892,0.030991007,0.059120449,,,,,,,0.034202247,0.034159344,0.034141343,0.033876223,,,,,,,3.833903005,4.214053417,4.036363905,5.108041866,,,,,,,0.011255639,0.016349954,0.02090881,0.058986369,,,,,,,0.120784056,0.129634609,0.137826091,0.207028588,,,,,,,0.032725974,0.041362968,0.048943422,0.115096662,,,,,,,0.070084135,0.035556885,0.022461153,0.006973453,,,,,,,1.664142665,2.253721843,2.054829147,3.540629244,,,,,,,0.004315494,0.005890931,0.007090077,0.024769518,,,,,,,0.035466932,0.032465122,0.022999975,0.167656869,,,,,,,26.65431882,43.55263632,36.80382767,77.52941727,,,,,,,1115.35288,1104.454066,1090.934492,1018.043585,,,,,,,0.038450688,0.039318348,0.031257815,0.059574632,,,,,,,0.034185993,0.034141426,0.034122721,0.033847055,,,,,,,4.161823453,4.47936311,4.1775654,5.606197877,,,,,,,0.013993039,0.019327601,0.024451977,0.077780232,,,,,,,0.129285048,0.138587481,0.147732907,0.24750272,,,,,,,0.038088076,0.047164539,0.055605389,0.149042775,,,,,,,0.067938083,0.039663283,0.019892816,0.006800225,,,,,,,1.663751886,2.270310157,2.002419995,3.53854021,,,,,,,0.003191493,0.004553031,0.005619356,0.019103872,,,,,,,0.030375314,0.028673918,0.021572339,0.165206603,,,,,,,24.54394692,41.34289502,36.83292963,79.40386289,,,,,,,1114.437442,1103.767627,1091.082341,1020.56777,,,,,,,0.039760143,0.040667168,0.032238017,0.061514064,,,,,,,0.034570244,0.034528011,0.034510384,0.034250722,,,,,,,3.358865162,2.91060568,2.769493091,5.441855802,,,,,,,0.010989272,0.015764561,0.020215463,0.062715889,,,,,,,0.12478919,0.13293366,0.140975553,0.218459822,,,,,,,0.032628585,0.040700997,0.048173831,0.122017351,,,,,,,0.032547233,0.014818472,0.010541669,0.006400315,,,,,,,1.453497014,2.004854221,1.824098443,3.479013212,,,,,, +Bus,E15,2010,,0.003122145,0.004303672,0.005565397,0.02239108,,,,,,,0.033763186,0.02192851,0.022397776,0.098581683,,,,,,,18.65350536,24.02105955,25.44879784,56.06617135,,,,,,,1129.575023,1118.343596,1105.904316,1041.167406,,,,,,,0.036293418,0.02904363,0.030000593,0.052532305,,,,,,,0.034423233,0.034416042,0.034364546,0.034108391,,,,,,,2.13414618,2.380003855,1.17435486,3.783982088,,,,,,,0.0082898,0.012607876,0.016211854,0.068848473,,,,,,,0.117254903,0.125538479,0.131445096,0.230192648,,,,,,,0.028045418,0.035498787,0.041666542,0.133682692,,,,,,,0.025539048,0.022746297,0.007497763,0.007058862,,,,,,,0.869305906,1.08310038,1.005293608,2.473366383,,,,,,,0.002857436,0.004008268,0.005229246,0.019679949,,,,,,,0.030552705,0.020298523,0.020616944,0.097028919,,,,,,,18.35587078,23.74583354,24.75394332,55.65289247,,,,,,,1134.277146,1123.626992,1110.889926,1045.151762,,,,,,,0.036002324,0.028890521,0.029829329,0.052161738,,,,,,,0.034320202,0.034312651,0.034258517,0.033989063,,,,,,,2.107020312,2.348082495,1.15519221,3.736516048,,,,,,,0.008003435,0.012272337,0.015849039,0.061548609,,,,,,,0.117849336,0.126015068,0.131805862,0.21642925,,,,,,,0.027567867,0.03492019,0.041009433,0.12064972,,,,,,,0.025845498,0.022853756,0.007531563,0.007085874,,,,,,,0.909525642,1.128194702,1.048039951,2.519507099,,,,,,,0.00253372,0.003556809,0.005248446,0.020535915,,,,,,,0.032236735,0.021146324,0.02182999,0.10419033,,,,,,,20.78868838,26.10638084,25.55524028,57.84776372,,,,,,,1128.578685,1117.161267,1104.556333,1039.16845,,,,,,,0.037922201,0.030506562,0.031485417,0.054990911,,,,,,,0.034412986,0.034406371,0.034358851,0.034122427,,,,,,,2.074718481,2.304832305,1.13637915,3.660097783,,,,,,,0.007117782,0.010917367,0.015118406,0.061551227,,,,,,,0.126036444,0.133266758,0.140342568,0.226059955,,,,,,,0.027251629,0.033795226,0.041160666,0.122459074,,,,,,,0.026272241,0.022722244,0.007488623,0.007045309,,,,,,,0.970302709,1.191158949,1.119010173,2.684041606,,,,,,,0.003084077,0.004230254,0.005558121,0.022345174,,,,,,,0.035526523,0.021189661,0.021598803,0.097250935,,,,,,,19.93543401,23.65846431,24.74148328,56.54433105,,,,,,,1129.109949,1118.055952,1105.191621,1038.892368,,,,,,,0.034541167,0.027634648,0.028546342,0.049991953,,,,,,,0.034068787,0.034061267,0.034007385,0.033739247,,,,,,,2.189945194,2.319419774,1.142449631,3.670958783,,,,,,,0.008073592,0.012248051,0.015920655,0.067395786,,,,,,,0.110090882,0.118012702,0.124220777,0.221586336,,,,,,,0.026911322,0.034031647,0.040369462,0.130684651,,,,,,,0.045320272,0.022740443,0.007492931,0.007043436,,,,,,,1.008719778,1.170162023,1.094152157,2.53780913,,,,,,,0.00234855,0.003424231,0.004329078,0.012098477,,,,,,,0.02550047,0.018178242,0.018035758,0.096264569,,,,,,,17.73455272,23.30913991,24.19384693,54.31247828,,,,,,,1142.669794,1133.480297,1120.004302,1051.908608,,,,,,,0.037488712,0.030148114,0.031117079,0.054356213,,,,,,,0.034345854,0.034339136,0.034290964,0.034051273,,,,,,,1.946365991,2.165209555,1.065684761,3.480711734,,,,,,,0.007353117,0.011453498,0.014444526,0.039211368,,,,,,,0.124222871,0.132002512,0.136380834,0.178565354,,,,,,,0.027172842,0.034198525,0.039149044,0.081795555,,,,,,,0.026436257,0.023054162,0.007593358,0.007131684,,,,,,,1.0961936,1.340440344,1.242236338,2.791615194,,,,,,,0.002302528,0.003319583,0.004467059,0.01359938,,,,,,,0.024858282,0.017499047,0.017453384,0.09361875,,,,,,,18.13292914,23.81685151,23.65522705,54.52999672,,,,,,,1132.240999,1125.0732,1109.436484,1041.612899,,,,,,,0.035385229,0.028462575,0.029320063,0.051269193,,,,,,,0.034068601,0.034064998,0.034008951,0.033748394,,,,,,,1.986848084,2.205889595,1.084564149,3.526701617,,,,,,,0.007193808,0.011061333,0.014625382,0.043704189,,,,,,,0.113757233,0.121643069,0.126866928,0.178575188,,,,,,,0.025623046,0.032329285,0.038277563,0.088635146,,,,,,,0.026320156,0.022883167,0.007521709,0.007061882,,,,,,,1.044442751,1.271893651,1.176539588,2.654765996,,,,,,,0.002278186,0.00336602,0.004262096,0.012062918,,,,,,,0.025310876,0.017391102,0.017307229,0.091176223,,,,,,,18.69463426,23.34122973,24.63196469,54.35498192,,,,,,,1156.407807,1147.449332,1133.734479,1064.820451,,,,,,,0.036114872,0.028938841,0.029886059,0.052298143,,,,,,,0.034316169,0.034308956,0.034257081,0.033999173,,,,,,,2.024263501,2.19515121,1.081348487,3.505209268,,,,,,,0.007400043,0.011580299,0.014640673,0.040091171,,,,,,,0.115536374,0.123445076,0.128097511,0.172296219,,,,,,,0.026136024,0.033258913,0.038326171,0.082131456,,,,,,,0.036812989,0.023338284,0.007686444,0.007219224,,,,,,,1.082179181,1.297163962,1.206175896,2.686494996,,,,,,,0.002423842,0.00349295,0.00471636,0.015910033,,,,,,,0.028908592,0.018430045,0.01918682,0.094263469,,,,,,,21.08766459,24.87927658,26.29904099,57.60397934,,,,,,,1142.80621,1133.083765,1119.901973,1052.740479,,,,,,,0.036369422,0.029210528,0.030155518,0.05270973,,,,,,,0.034304481,0.034296973,0.034243064,0.033974849,,,,,,,2.155383982,2.273233148,1.202176508,3.851729455,,,,,,,0.007347943,0.011394025,0.015137334,0.050833724,,,,,,,0.11859102,0.126210173,0.132251639,0.196670075,,,,,,,0.026581984,0.033455118,0.039798245,0.101723801,,,,,,,0.041044921,0.020660803,0.007480434,0.007031886,,,,,,,1.080688997,1.261513874,1.203050508,2.690165789,,,,,,,0.002073434,0.003096585,0.004226242,0.012704326,,,,,,,0.023829473,0.016800202,0.019147617,0.093232863,,,,,,,20.68836067,25.44377139,28.9259307,59.99858091,,,,,,,1141.642579,1132.631498,1119.759085,1053.941153,,,,,,,0.037583446,0.030097208,0.031085374,0.05441289,,,,,,,0.034681619,0.03467453,0.034623744,0.034371128,,,,,,,1.328005782,1.449167365,1.152017083,3.737575127,,,,,,,0.006934394,0.010890298,0.014653254,0.042684267,,,,,,,0.119482203,0.126965532,0.133000643,0.181734124,,,,,,,0.02584062,0.032596787,0.0389575,0.087122825,,,,,,,0.015329813,0.010944645,0.007022425,0.006609571,,,,,,,0.948631472,1.119843571,1.149516779,2.646459954,,,,, +Bus,E15,2015,,,0.002413168,0.003834431,0.0051728,0.010251891,,,,,,,0.018571999,0.01737732,0.018253359,0.02246219,,,,,,,9.445964861,15.51583083,19.24774748,25.33327178,,,,,,,1187.340028,1173.050263,1158.694201,1106.30557,,,,,,,0.006915996,0.007245081,0.007577273,0.021570042,,,,,,,0.034700866,0.03464296,0.034584976,0.034368165,,,,,,,1.056211327,0.565764458,0.589762174,1.19418429,,,,,,,0.007942573,0.01246402,0.016529309,0.031679233,,,,,,,0.123344365,0.130756689,0.137390467,0.162303452,,,,,,,0.02790911,0.035591068,0.04258798,0.06876129,,,,,,,0.024149628,0.007952995,0.007855664,0.007500483,,,,,,,0.668446463,0.739813374,0.79164656,1.233321119,,,,,,,0.002314074,0.003695684,0.004972697,0.009471824,,,,,,,0.016899096,0.0159966,0.016865764,0.020950117,,,,,,,9.30625441,15.05752879,18.66720495,24.63463154,,,,,,,1193.60233,1178.990716,1164.297577,1111.071588,,,,,,,0.006893334,0.007216167,0.007542026,0.021429665,,,,,,,0.034612572,0.0345516,0.034490459,0.034262297,,,,,,,1.043158746,0.557129469,0.58055845,1.174641656,,,,,,,0.007819158,0.012307869,0.016304564,0.030012255,,,,,,,0.124547666,0.131829541,0.138252177,0.160043427,,,,,,,0.027831703,0.035426575,0.042265235,0.065781385,,,,,,,0.024277,0.00799327,0.007893654,0.007532796,,,,,,,0.724931737,0.793943886,0.844247165,1.274328134,,,,,,,0.002066478,0.003628787,0.004894461,0.009513654,,,,,,,0.017684225,0.01685856,0.017725039,0.022063003,,,,,,,10.4697218,15.56243751,19.29409636,25.50389806,,,,,,,1186.783899,1172.340164,1157.818384,1104.92896,,,,,,,0.007291978,0.007628592,0.007968375,0.022603266,,,,,,,0.034670165,0.034616608,0.034562941,0.034362438,,,,,,,1.024235565,0.54691257,0.569934461,1.156860211,,,,,,,0.00701031,0.011701995,0.015500887,0.028942497,,,,,,,0.133997217,0.141557945,0.147414584,0.168063402,,,,,,,0.027823325,0.035830344,0.042334267,0.065448502,,,,,,,0.024138321,0.007948181,0.007849726,0.007491149,,,,,,,0.778777746,0.854799519,0.906141205,1.354255019,,,,,,,0.002354531,0.003791281,0.005114685,0.01015573,,,,,,,0.018082862,0.016684951,0.017491231,0.021520689,,,,,,,9.24463899,15.01202671,18.59348041,24.60848512,,,,,,,1188.268875,1173.538785,1158.719971,1105.231338,,,,,,,0.006579294,0.006892801,0.007209267,0.020525882,,,,,,,0.034359223,0.034298633,0.034237944,0.034011085,,,,,,,1.028968346,0.55117191,0.574572586,1.160623435,,,,,,,0.00771241,0.012220584,0.01619765,0.030935806,,,,,,,0.115297178,0.122849606,0.129470042,0.154204863,,,,,,,0.026554295,0.034245521,0.041115619,0.066709539,,,,,,,0.02416852,0.007956306,0.007855839,0.0074932,,,,,,,0.797645906,0.855742293,0.898210045,1.305333733,,,,,,,0.002109348,0.003266587,0.004362472,0.007274642,,,,,,,0.014015519,0.01374623,0.014697696,0.018759143,,,,,,,9.042539675,14.70600093,18.22545245,24.08576868,,,,,,,1205.772949,1190.379229,1174.869521,1119.650716,,,,,,,0.007204616,0.007537825,0.00787417,0.022340921,,,,,,,0.034606464,0.034552178,0.034497775,0.034294572,,,,,,,0.957323462,0.508534099,0.529993843,1.088288148,,,,,,,0.007496817,0.011525154,0.015213107,0.02452293,,,,,,,0.132601882,0.138731345,0.144286958,0.156504975,,,,,,,0.028280927,0.0349878,0.04119133,0.056722292,,,,,,,0.024524541,0.00807048,0.007965329,0.00759096,,,,,,,0.934476455,0.996086021,1.046436145,1.477484488,,,,,,,0.002034985,0.00332697,0.004449952,0.007654127,,,,,,,0.013929914,0.01344654,0.01431917,0.018146341,,,,,,,9.33968021,14.34207321,17.76480752,23.54384798,,,,,,,1197.142546,1179.465647,1164.06236,1109.119501,,,,,,,0.006792795,0.007093332,0.007413508,0.021063313,,,,,,,0.034352486,0.034292382,0.034233314,0.034012652,,,,,,,0.976942994,0.520897338,0.542874634,1.104821611,,,,,,,0.007226976,0.011609175,0.015334934,0.025473746,,,,,,,0.121396872,0.127888759,0.133760606,0.148488521,,,,,,,0.026476803,0.033769636,0.040081296,0.057203356,,,,,,,0.024349006,0.00799649,0.00789206,0.007519561,,,,,,,0.904635045,0.951274198,0.996573024,1.398683163,,,,,,,0.002090819,0.00324244,0.004323521,0.007175654,,,,,,,0.013421654,0.013239448,0.014170057,0.018013705,,,,,,,9.111959348,15.03953027,18.66484506,24.51664803,,,,,,,1220.271318,1204.624094,1188.850741,1133.097562,,,,,,,0.006897622,0.007223356,0.007552175,0.021479496,,,,,,,0.034595923,0.034537559,0.034479145,0.034260749,,,,,,,0.969965656,0.516709832,0.538568434,1.101372016,,,,,,,0.007561829,0.011656979,0.015390372,0.024826185,,,,,,,0.12298149,0.129418904,0.135242517,0.148357345,,,,,,,0.027147393,0.033977522,0.040268281,0.056043614,,,,,,,0.024819429,0.008167059,0.00806012,0.007682125,,,,,,,0.915193328,0.973777221,1.021113887,1.432366681,,,,,,,0.002095613,0.003447588,0.004620497,0.008290353,,,,,,,0.014909582,0.014818036,0.015743133,0.019723674,,,,,,,9.910834136,16.10279294,19.99526848,26.19812771,,,,,,,1204.433779,1189.345428,1174.157278,1119.738493,,,,,,,0.00697408,0.007299041,0.007627069,0.021658571,,,,,,,0.034595737,0.034534969,0.034474105,0.0342469,,,,,,,1.0066169,0.579166599,0.603382518,1.219735396,,,,,,,0.007363135,0.011905278,0.015748602,0.027291133,,,,,,,0.125982301,0.133283007,0.139300832,0.156469984,,,,,,,0.027272884,0.034922531,0.041441193,0.061008561,,,,,,,0.021961094,0.007944248,0.007842838,0.007479395,,,,,,,0.898899821,0.966181784,1.013355328,1.431440389,,,,,,,0.001931434,0.003210445,0.00428587,0.00722121,,,,,,,0.013138661,0.014697497,0.015777932,0.019871883,,,,,,,10.51234055,17.94413005,22.36456942,28.9080206,,,,,,,1203.113956,1188.319272,1173.445175,1119.819529,,,,,,,0.007170562,0.007510372,0.007853403,0.022345421,,,,,,,0.034955627,0.034898474,0.03484125,0.034627356,,,,,,,0.620619809,0.547700761,0.571106606,1.174775791,,,,,,,0.007093806,0.011621012,0.015369849,0.025227284,,,,,,,0.127543143,0.134770535,0.140511394,0.154026207,,,,,,,0.026988481,0.034600968,0.040902354,0.057338708,,,,,,,0.011628595,0.007452522,0.007359247,0.007022862,,,,,,,0.802580458,0.896000375,0.951468387,1.396539363,,,, +Bus,E15,2020,,,,0.002341811,0.003808897,0.005108609,0.007974685,,,,,,,0.018492332,0.017857302,0.018785074,0.021154302,,,,,,,9.320407254,16.03009396,19.55875646,22.23414788,,,,,,,1117.428769,1104.137683,1090.897147,1091.396871,,,,,,,0.007029477,0.007351616,0.007683537,0.012092779,,,,,,,0.034658245,0.034603915,0.034549729,0.034443335,,,,,,,0.486623056,0.564552813,0.585432005,0.698603186,,,,,,,0.00774114,0.012383333,0.016329527,0.024319944,,,,,,,0.122027255,0.129787855,0.136216537,0.149596147,,,,,,,0.027370883,0.035343312,0.042134283,0.056091583,,,,,,,0.007575895,0.007485785,0.007396018,0.007399406,,,,,,,0.604493174,0.705874,0.752495388,0.960333293,,,,,,,0.002265388,0.00367501,0.004916028,0.007599708,,,,,,,0.016800329,0.01650083,0.01741271,0.019558049,,,,,,,9.022530056,15.55527086,18.96643035,21.55375155,,,,,,,1123.273839,1109.679139,1096.120827,1096.207187,,,,,,,0.007004665,0.007320672,0.007646273,0.012018729,,,,,,,0.034568104,0.034510712,0.034453473,0.034341342,,,,,,,0.479296377,0.555850122,0.576210412,0.687157655,,,,,,,0.007653673,0.012230755,0.016110717,0.023902921,,,,,,,0.123291443,0.1308509,0.137075749,0.149880213,,,,,,,0.027363076,0.035185527,0.041824086,0.055326033,,,,,,,0.007615522,0.007523355,0.007431433,0.007432018,,,,,,,0.656287447,0.756000355,0.801080571,1.006224095,,,,,,,0.0022162,0.003604033,0.004832116,0.007535179,,,,,,,0.017867137,0.017338321,0.018255468,0.02056082,,,,,,,9.339750482,16.07512886,19.60179937,22.27798263,,,,,,,1117.061307,1103.621875,1090.222895,1090.31984,,,,,,,0.007408056,0.007737559,0.00807707,0.012681334,,,,,,,0.034631847,0.034581364,0.034531032,0.034432209,,,,,,,0.470719735,0.545690689,0.565684638,0.675174889,,,,,,,0.007270464,0.01161821,0.015301305,0.022726224,,,,,,,0.133511515,0.140445933,0.146109784,0.157894944,,,,,,,0.028128555,0.035560949,0.041865584,0.05477793,,,,,,,0.007573404,0.007482287,0.007391446,0.007392103,,,,,,,0.709633702,0.813269308,0.858625181,1.072054052,,,,,,,0.002311715,0.003760278,0.00504351,0.007897849,,,,,,,0.01788762,0.017103827,0.017963953,0.020284117,,,,,,,9.000380268,15.49654123,18.87959998,21.46540696,,,,,,,1118.079535,1104.376034,1090.700742,1090.519264,,,,,,,0.006687407,0.006994293,0.007310502,0.011506989,,,,,,,0.034314454,0.034257599,0.034200908,0.034089654,,,,,,,0.473695755,0.549924745,0.5702684,0.680031147,,,,,,,0.00758624,0.012129511,0.015986093,0.023812227,,,,,,,0.114217425,0.121940124,0.128348523,0.141720839,,,,,,,0.026162117,0.033988176,0.040648706,0.05438326,,,,,,,0.007580308,0.0074874,0.007394687,0.007393456,,,,,,,0.722930125,0.810248434,0.848347358,1.042821259,,,,,,,0.002020433,0.003253594,0.00432006,0.006511738,,,,,,,0.013692236,0.014328202,0.015298253,0.017091164,,,,,,,8.774931381,15.19609588,18.51967112,21.02085701,,,,,,,1134.772876,1120.442545,1106.107532,1105.044181,,,,,,,0.007319517,0.007645688,0.007981769,0.012533576,,,,,,,0.034567482,0.034516349,0.034465364,0.034365251,,,,,,,0.437047418,0.507301631,0.525935412,0.629307551,,,,,,,0.007189301,0.011449948,0.015029948,0.022064063,,,,,,,0.130982715,0.137668956,0.143051645,0.153786732,,,,,,,0.027564555,0.034743906,0.040766366,0.052685652,,,,,,,0.007693485,0.007596329,0.00749914,0.00749193,,,,,,,0.84172843,0.942887213,0.987300106,1.202729449,,,,,,,0.002053946,0.003312532,0.004404697,0.006672983,,,,,,,0.013628759,0.013985319,0.014883152,0.016639593,,,,,,,8.55445233,14.81572168,18.04691687,20.49370183,,,,,,,1124.170697,1109.936914,1095.706756,1094.654664,,,,,,,0.006885528,0.007196014,0.007515933,0.011813395,,,,,,,0.034308371,0.034252903,0.034197624,0.034089167,,,,,,,0.447545994,0.519635796,0.538710114,0.64311924,,,,,,,0.007236582,0.011533033,0.015148468,0.022283884,,,,,,,0.119952263,0.126945655,0.132634315,0.144038646,,,,,,,0.026255848,0.033538576,0.03966387,0.051852574,,,,,,,0.007621604,0.007525102,0.007428626,0.007421493,,,,,,,0.809229089,0.900437985,0.940231564,1.140396537,,,,,,,0.002008737,0.003229794,0.004282051,0.006429467,,,,,,,0.013144271,0.01381369,0.014761074,0.016469763,,,,,,,8.992956322,15.54863903,18.97561561,21.53684404,,,,,,,1148.298715,1133.732802,1119.14739,1118.084588,,,,,,,0.007009945,0.007328814,0.007657361,0.012044232,,,,,,,0.034553184,0.034498404,0.034443721,0.034336464,,,,,,,0.44387213,0.515451587,0.534439407,0.639166397,,,,,,,0.007272655,0.01158442,0.015210001,0.022342081,,,,,,,0.121504754,0.128468206,0.134114905,0.145360145,,,,,,,0.026473875,0.033751471,0.039861134,0.051950204,,,,,,,0.007785187,0.007686433,0.007587547,0.007580341,,,,,,,0.826759409,0.920831531,0.9627862,1.169998764,,,,,,,0.00212376,0.003431818,0.004572785,0.006976022,,,,,,,0.015165194,0.015371591,0.016326713,0.018282422,,,,,,,9.660180158,16.64715576,20.32845926,23.08011333,,,,,,,1133.450579,1119.409647,1105.381082,1104.883959,,,,,,,0.007086138,0.00740424,0.007732002,0.012148585,,,,,,,0.034551668,0.034494462,0.034437412,0.034325634,,,,,,,0.498174442,0.577771878,0.598795175,0.714128608,,,,,,,0.007415376,0.011833888,0.015566454,0.022983305,,,,,,,0.125142121,0.132291268,0.13812613,0.149944697,,,,,,,0.027193615,0.034690491,0.041021347,0.053722962,,,,,,,0.007570856,0.007477103,0.007383437,0.007380174,,,,,,,0.820899884,0.915693278,0.957777116,1.164131863,,,,,,,0.00198956,0.003202601,0.004250279,0.006388009,,,,,,,0.014504452,0.015357667,0.016454936,0.018354078,,,,,,,10.81297306,18.58178789,22.77087884,25.83013556,,,,,,,1132.314034,1118.548664,1104.813984,1104.790302,,,,,,,0.007287744,0.007620383,0.007963128,0.01252872,,,,,,,0.034913817,0.034860142,0.034806615,0.034701559,,,,,,,0.470691716,0.546548985,0.566908823,0.679550409,,,,,,,0.007249996,0.011567792,0.015212184,0.022394092,,,,,,,0.12693098,0.133796831,0.139369743,0.150496029,,,,,,,0.027126304,0.034399843,0.040526142,0.052667481,,,,,,,0.007101251,0.007014928,0.006928798,0.006928648,,,,,,,0.749137427,0.852584405,0.901586036,1.121604483,,, +Bus,E15,2025,,,,,0.002341419,0.003806128,0.005109079,0.007825323,,,,,,,0.018528303,0.017924135,0.018805663,0.020816914,,,,,,,9.336772187,16.04051809,19.58984488,21.30521044,,,,,,,1117.388331,1104.166528,1090.92234,1079.520648,,,,,,,0.007039934,0.007370461,0.007696657,0.008502209,,,,,,,0.034657946,0.034603725,0.03454961,0.034466736,,,,,,,0.485427198,0.562321789,0.583637174,0.579779346,,,,,,,0.007737213,0.012365629,0.016323442,0.024286712,,,,,,,0.122011906,0.129750285,0.136203683,0.149984756,,,,,,,0.027363762,0.035314081,0.042125406,0.056000835,,,,,,,0.007575623,0.007485981,0.007396188,0.007318887,,,,,,,0.60047842,0.699992987,0.746307086,0.895332783,,,,,,,0.002264934,0.003671938,0.004916134,0.007494054,,,,,,,0.016832763,0.016560245,0.017430963,0.01926805,,,,,,,9.037653961,15.56339518,18.99521672,20.63342847,,,,,,,1123.228326,1109.701189,1096.143005,1084.308595,,,,,,,0.007014912,0.007339154,0.007659146,0.008453136,,,,,,,0.034567755,0.034510491,0.034453364,0.034365869,,,,,,,0.478116643,0.553648205,0.574441138,0.570356557,,,,,,,0.007649781,0.012212765,0.016104279,0.023912585,,,,,,,0.123275753,0.130812353,0.137061967,0.150395654,,,,,,,0.027355909,0.035155601,0.041814375,0.055336534,,,,,,,0.007615215,0.007523504,0.007431582,0.007351348,,,,,,,0.651500186,0.749287639,0.79412178,0.939908636,,,,,,,0.002216349,0.003601486,0.004832636,0.007397307,,,,,,,0.017907806,0.017410522,0.018281848,0.020254248,,,,,,,9.355985295,16.08422791,19.63210797,21.33535468,,,,,,,1117.020573,1103.650945,1090.249292,1078.577365,,,,,,,0.007418748,0.007756835,0.008090493,0.008921985,,,,,,,0.034631551,0.034581174,0.034530926,0.034453911,,,,,,,0.46957934,0.543530585,0.563943569,0.559927633,,,,,,,0.007267987,0.011601256,0.015295274,0.022706735,,,,,,,0.133497563,0.140408917,0.146096544,0.158415903,,,,,,,0.028123803,0.035532906,0.041856758,0.054729347,,,,,,,0.007573128,0.007482484,0.007391626,0.007312492,,,,,,,0.704158961,0.805126589,0.850754332,0.998010394,,,,,,,0.002310807,0.003756489,0.005042865,0.007720254,,,,,,,0.017929037,0.017177141,0.017990443,0.019968751,,,,,,,9.01325312,15.50057246,18.90470328,20.51469628,,,,,,,1118.035919,1104.400908,1090.724462,1078.690737,,,,,,,0.006697363,0.007012245,0.007322997,0.008090102,,,,,,,0.034314117,0.03425739,0.034200774,0.034114094,,,,,,,0.472507906,0.547714776,0.568494685,0.564521328,,,,,,,0.007580926,0.012109308,0.015977249,0.023738589,,,,,,,0.114200121,0.121898008,0.128330407,0.141957414,,,,,,,0.026152651,0.033954535,0.040634922,0.054202353,,,,,,,0.00758001,0.00748757,0.007394846,0.007313261,,,,,,,0.715475111,0.801187647,0.83984136,0.968315212,,,,,,,0.002019747,0.003250055,0.004319435,0.006497739,,,,,,,0.013716299,0.014371062,0.01531036,0.016858936,,,,,,,8.787976246,15.20029377,18.5449451,20.10590834,,,,,,,1134.71832,1120.449187,1106.120072,1093.183799,,,,,,,0.007330101,0.007664771,0.007995051,0.008817669,,,,,,,0.034567182,0.034516159,0.034465254,0.034387248,,,,,,,0.435957852,0.505264049,0.524290991,0.520241301,,,,,,,0.007185361,0.011432346,0.015023281,0.022170215,,,,,,,0.130965787,0.137630086,0.143036331,0.154615733,,,,,,,0.027556998,0.034714093,0.040755646,0.0529227,,,,,,,0.007693114,0.007596373,0.007499225,0.007411519,,,,,,,0.833255603,0.932074145,0.976219407,1.123909756,,,,,,,0.00205345,0.003309074,0.004404188,0.006642681,,,,,,,0.013655468,0.014032567,0.01489829,0.016437675,,,,,,,8.56741793,14.81966154,18.07156867,19.58814048,,,,,,,1124.11695,1109.94602,1095.720545,1082.879998,,,,,,,0.006895598,0.007214177,0.007528576,0.008308809,,,,,,,0.034308026,0.034252703,0.034197496,0.034112945,,,,,,,0.446437366,0.517551588,0.537035388,0.532929561,,,,,,,0.007233056,0.011515263,0.015141688,0.022369739,,,,,,,0.119937424,0.126907379,0.13261937,0.144731295,,,,,,,0.026249204,0.033508691,0.039653144,0.052035152,,,,,,,0.007621239,0.007525164,0.007428719,0.007341664,,,,,,,0.801665763,0.890512104,0.930292914,1.066301073,,,,,,,0.0020071,0.003224918,0.004280083,0.00641655,,,,,,,0.013162033,0.013849006,0.014767896,0.016240582,,,,,,,9.007050359,15.55530643,19.00323922,20.63730677,,,,,,,1148.242872,1133.735596,1119.158325,1105.982961,,,,,,,0.007020296,0.007347463,0.007670343,0.008469501,,,,,,,0.034552883,0.034498173,0.034443595,0.034360001,,,,,,,0.442734816,0.513353097,0.532749326,0.528645755,,,,,,,0.007265809,0.011562949,0.015199634,0.022423257,,,,,,,0.121483374,0.128422308,0.134092665,0.146072959,,,,,,,0.026461446,0.033714964,0.039843951,0.052142202,,,,,,,0.007784808,0.007686452,0.007587621,0.007498296,,,,,,,0.818187184,0.910257616,0.951857065,1.094662757,,,,,,,0.002123519,0.003429115,0.004573126,0.006926638,,,,,,,0.015193676,0.01542306,0.016342303,0.018045758,,,,,,,9.67590146,16.65649593,20.35933959,22.13521335,,,,,,,1133.400329,1119.422312,1105.397308,1092.929662,,,,,,,0.007096462,0.00742285,0.007744961,0.008545414,,,,,,,0.034551348,0.034494253,0.0344373,0.034350051,,,,,,,0.496959562,0.575493861,0.596965309,0.592473637,,,,,,,0.007412739,0.011818351,0.015562155,0.023061188,,,,,,,0.125128556,0.132256995,0.138115943,0.150645504,,,,,,,0.027188431,0.034664426,0.04101493,0.053882735,,,,,,,0.007570521,0.007477189,0.007383546,0.007300325,,,,,,,0.814049882,0.906923254,0.948802975,1.092644146,,,,,,,0.001990048,0.003200721,0.004251334,0.006399401,,,,,,,0.014527,0.015400337,0.016465585,0.018149584,,,,,,,10.83377816,18.60074832,22.81168683,24.89678037,,,,,,,1132.261531,1118.556635,1104.824875,1092.78321,,,,,,,0.007298534,0.007639846,0.007976675,0.008809506,,,,,,,0.034913499,0.034859943,0.034806484,0.034724641,,,,,,,0.469574285,0.544418309,0.565184646,0.561475624,,,,,,,0.007250194,0.011556169,0.015211601,0.022546284,,,,,,,0.126922456,0.133769594,0.139366176,0.151391262,,,,,,,0.027125819,0.034380122,0.040525697,0.052988545,,,,,,,0.007100921,0.00701498,0.006928869,0.00685336,,,,,,,0.744734308,0.84555935,0.893342845,1.056402465,, +Bus,E15,2030,,,,,,0.002340171,0.003806243,0.005092986,0.00777494,,,,,,,0.018620463,0.017977729,0.018844968,0.02081125,,,,,,,9.372305606,16.0852272,19.61892405,21.3012263,,,,,,,1117.30387,1104.078482,1090.835043,1071.131272,,,,,,,0.007059473,0.007384765,0.007707123,0.008197686,,,,,,,0.034657301,0.034603156,0.034549114,0.034464779,,,,,,,0.485350374,0.562461394,0.583212372,0.57874908,,,,,,,0.007727102,0.012359228,0.016273858,0.024161166,,,,,,,0.121976448,0.129724413,0.136093067,0.149665542,,,,,,,0.027345473,0.035302778,0.042037905,0.055762508,,,,,,,0.007575048,0.007485384,0.007395597,0.00726201,,,,,,,0.598962956,0.699084013,0.740594452,0.885524251,,,,,,,0.00226345,0.003671737,0.004900631,0.007449586,,,,,,,0.016916479,0.016610881,0.017473416,0.019274723,,,,,,,9.071349249,15.60605081,19.02042833,20.63135602,,,,,,,1123.135771,1109.608207,1096.05176,1075.883275,,,,,,,0.007034079,0.007353183,0.007669412,0.008150645,,,,,,,0.034567063,0.034509908,0.034452827,0.034363773,,,,,,,0.478034513,0.553781015,0.574018592,0.569338032,,,,,,,0.007639436,0.012206045,0.016055187,0.023792809,,,,,,,0.1232392,0.130785318,0.136952302,0.150090188,,,,,,,0.02733702,0.03514351,0.041728028,0.055111487,,,,,,,0.007614588,0.007522874,0.007430964,0.007294227,,,,,,,0.649394269,0.747925205,0.786337662,0.930423614,,,,,,,0.002215192,0.003601623,0.004817168,0.0073496,,,,,,,0.018004752,0.017469049,0.018358281,0.020231892,,,,,,,9.39118354,16.12845154,19.65901152,21.33173753,,,,,,,1116.935841,1103.563388,1090.16201,1070.225636,,,,,,,0.007438736,0.007771465,0.008101193,0.008602976,,,,,,,0.034630952,0.034580651,0.034530445,0.034452127,,,,,,,0.469496945,0.543657586,0.563490571,0.558948145,,,,,,,0.007258182,0.01159487,0.015246342,0.022589121,,,,,,,0.133459726,0.140380467,0.145985158,0.158102614,,,,,,,0.028105672,0.03552131,0.041770419,0.054503886,,,,,,,0.007572553,0.007481892,0.007391034,0.007255869,,,,,,,0.700538148,0.802732239,0.837605883,0.990532627,,,,,,,0.002308943,0.003755798,0.005020509,0.007672467,,,,,,,0.018025506,0.017233722,0.018058199,0.01993623,,,,,,,9.044825863,15.54016142,18.91220497,20.51905658,,,,,,,1117.94588,1104.309145,1090.634972,1070.288902,,,,,,,0.006715979,0.00702587,0.007332972,0.007800314,,,,,,,0.034313453,0.034256798,0.034200252,0.034112036,,,,,,,0.472405258,0.547827191,0.567948156,0.563574934,,,,,,,0.007569222,0.01210084,0.015912768,0.023622931,,,,,,,0.114163244,0.121869525,0.128190762,0.141662944,,,,,,,0.026131759,0.033939745,0.04052068,0.053981426,,,,,,,0.007579402,0.007486947,0.00739424,0.007256299,,,,,,,0.710619319,0.79783398,0.822561877,0.962975845,,,,,,,0.00201784,0.003249205,0.004306055,0.006466148,,,,,,,0.013783086,0.014417233,0.015357182,0.016892393,,,,,,,8.81907454,15.24004718,18.55936263,20.11095836,,,,,,,1134.60819,1120.342411,1106.020611,1084.717813,,,,,,,0.007349889,0.00767925,0.00800565,0.008502353,,,,,,,0.03456659,0.034515626,0.03446478,0.034385422,,,,,,,0.435873039,0.505379388,0.523905167,0.519291279,,,,,,,0.007175041,0.011425332,0.014978791,0.0220643,,,,,,,0.130926958,0.137600095,0.142934665,0.154338913,,,,,,,0.027537551,0.034700798,0.040677559,0.052728196,,,,,,,0.007692367,0.007595649,0.00749855,0.007354123,,,,,,,0.828711927,0.928866311,0.959839051,1.114465304,,,,,,,0.002051613,0.003308327,0.00439042,0.006608858,,,,,,,0.013724998,0.014079092,0.014952667,0.016459523,,,,,,,8.597911859,14.85864682,18.08778878,19.59085274,,,,,,,1124.009179,1109.840844,1095.622404,1074.461507,,,,,,,0.006914433,0.00722796,0.007538667,0.00801149,,,,,,,0.034307375,0.034252117,0.034196986,0.034110936,,,,,,,0.446349542,0.517668775,0.536627758,0.531967977,,,,,,,0.007222659,0.011508188,0.015095643,0.02226193,,,,,,,0.119901118,0.126879683,0.132516886,0.144458025,,,,,,,0.026230033,0.033495679,0.039572734,0.051837045,,,,,,,0.007620509,0.007524452,0.007428053,0.007284587,,,,,,,0.797122629,0.887335031,0.913874298,1.058357105,,,,,,,0.002004369,0.003223066,0.004261131,0.006390558,,,,,,,0.013221203,0.013889496,0.014788287,0.016289355,,,,,,,9.039825553,15.59678313,19.02146266,20.64164037,,,,,,,1148.12772,1133.626055,1119.057221,1097.399456,,,,,,,0.007039637,0.00736162,0.007680704,0.008166284,,,,,,,0.034552229,0.034497601,0.034443093,0.034358051,,,,,,,0.442628207,0.513452783,0.532261614,0.527727132,,,,,,,0.007253142,0.011553196,0.015137045,0.022330396,,,,,,,0.121442116,0.128388871,0.133957776,0.145830494,,,,,,,0.026438158,0.033697094,0.03973508,0.051972143,,,,,,,0.007784028,0.007685707,0.007586936,0.007440101,,,,,,,0.813943994,0.907251852,0.936649182,1.084894625,,,,,,,0.002122189,0.003429034,0.004562648,0.006886743,,,,,,,0.015268894,0.015471931,0.016388524,0.018067019,,,,,,,9.711611169,16.70155586,20.37998648,22.13897258,,,,,,,1133.296624,1119.320752,1105.299779,1084.446226,,,,,,,0.007115757,0.007436974,0.007755291,0.008239709,,,,,,,0.034550676,0.034493669,0.034436738,0.034347964,,,,,,,0.496886134,0.575644791,0.596635092,0.591353781,,,,,,,0.007403836,0.011813221,0.015528027,0.022940556,,,,,,,0.125093988,0.132232159,0.138035123,0.150341153,,,,,,,0.027171699,0.034654686,0.040954489,0.053660177,,,,,,,0.00756983,0.007476513,0.007382897,0.007243657,,,,,,,0.810811764,0.904707877,0.937158127,1.082630782,,,,,,,0.001989162,0.003201134,0.004248979,0.006362277,,,,,,,0.014595621,0.015448703,0.016503638,0.018198394,,,,,,,10.87682105,18.6546191,22.85104882,24.89804329,,,,,,,1132.154622,1118.453329,1104.72632,1084.307852,,,,,,,0.007318713,0.007654616,0.007987483,0.008494042,,,,,,,0.034912858,0.034859388,0.034805979,0.0347227,,,,,,,0.469542014,0.544596015,0.565062906,0.560318299,,,,,,,0.007243731,0.011553903,0.015201343,0.022419112,,,,,,,0.126891891,0.133749514,0.139332053,0.151077194,,,,,,,0.027112943,0.034374905,0.040506762,0.052758516,,,,,,,0.007100254,0.007014328,0.006928251,0.006800203,,,,,,,0.743709252,0.844935492,0.889915106,1.041825656, +Bus,E15,2035,,,,,,,0.002342793,0.003794052,0.00510156,0.00777701,,,,,,,0.018669695,0.018009919,0.018839411,0.020779722,,,,,,,9.398394395,16.09558308,19.61688885,21.28032427,,,,,,,1117.426012,1104.212976,1090.942003,1070.423839,,,,,,,0.007070168,0.00739195,0.007705528,0.008191547,,,,,,,0.034657583,0.03460355,0.034549532,0.034465856,,,,,,,0.48539142,0.56205189,0.583420702,0.578647953,,,,,,,0.007732809,0.012322804,0.016298342,0.02416761,,,,,,,0.12199651,0.129663481,0.136153131,0.14970588,,,,,,,0.027357354,0.035240956,0.042082312,0.055776224,,,,,,,0.007575877,0.007486293,0.007396322,0.007257213,,,,,,,0.598096124,0.693580495,0.743089594,0.884843964,,,,,,,0.002265853,0.003660053,0.004908801,0.007451675,,,,,,,0.01696188,0.016645953,0.017465407,0.019241544,,,,,,,9.096132705,15.61348588,19.0197081,20.61265924,,,,,,,1123.255354,1109.740338,1096.160215,1075.176266,,,,,,,0.007044571,0.007360234,0.007667848,0.008144627,,,,,,,0.034567378,0.034510309,0.034453269,0.034364915,,,,,,,0.478072258,0.553375809,0.574225108,0.569242475,,,,,,,0.007644918,0.012170075,0.016079323,0.023799457,,,,,,,0.123258934,0.130725817,0.137011716,0.15013167,,,,,,,0.027348411,0.035082806,0.041771628,0.055125643,,,,,,,0.007615397,0.00752377,0.0074317,0.007289434,,,,,,,0.648102097,0.740352377,0.789757872,0.93066913,,,,,,,0.002217707,0.003589915,0.004825445,0.007351819,,,,,,,0.018058644,0.017536344,0.018335347,0.020178482,,,,,,,9.417057726,16.13638608,19.65793996,21.31153888,,,,,,,1117.058961,1103.698035,1090.270173,1069.520679,,,,,,,0.007449677,0.007778813,0.008099567,0.0085967,,,,,,,0.034631227,0.034581014,0.034530848,0.034453133,,,,,,,0.469533213,0.543225679,0.563713151,0.558876251,,,,,,,0.007263432,0.011559047,0.015270541,0.022597622,,,,,,,0.13348024,0.140322754,0.146046547,0.158151627,,,,,,,0.028116947,0.035460998,0.041814428,0.054521469,,,,,,,0.007573388,0.007482805,0.007391767,0.00725109,,,,,,,0.698147027,0.7896485,0.843451288,0.993618479,,,,,,,0.002311044,0.003739052,0.005031956,0.007680066,,,,,,,0.01807833,0.017293119,0.018039216,0.019888506,,,,,,,9.067967183,15.53237427,18.91946731,20.51004895,,,,,,,1118.066777,1104.44299,1090.744042,1069.587682,,,,,,,0.006726168,0.007032715,0.007331452,0.007794468,,,,,,,0.03431375,0.034257204,0.034200701,0.034113155,,,,,,,0.472424336,0.547302854,0.568211432,0.563550052,,,,,,,0.007573488,0.012053305,0.015944061,0.023642445,,,,,,,0.114179627,0.121784943,0.128263614,0.141727101,,,,,,,0.026140994,0.033857809,0.040577259,0.054018453,,,,,,,0.00758022,0.007487855,0.00739498,0.007251545,,,,,,,0.707285278,0.780568362,0.830181898,0.968580804,,,,,,,0.002019724,0.003239307,0.004312946,0.006468087,,,,,,,0.013820833,0.014455491,0.015345487,0.016856395,,,,,,,8.842034297,15.23871097,18.56316772,20.09843612,,,,,,,1134.718781,1120.470249,1106.131704,1084.013112,,,,,,,0.00736072,0.007686526,0.008004035,0.008496141,,,,,,,0.034566866,0.034516,0.034465174,0.034386439,,,,,,,0.435905046,0.50501292,0.524093012,0.519198761,,,,,,,0.007180032,0.011393144,0.015000562,0.022070195,,,,,,,0.130946227,0.137549774,0.142990326,0.15438255,,,,,,,0.027547878,0.034647239,0.040716826,0.05274169,,,,,,,0.007693119,0.007596515,0.007499305,0.007349346,,,,,,,0.825731897,0.912788372,0.96705211,1.118024939,,,,,,,0.002053569,0.003298087,0.004397539,0.00661085,,,,,,,0.013764299,0.014124999,0.01493738,0.016419571,,,,,,,8.620413475,14.85894727,18.09046803,19.57718438,,,,,,,1124.121584,1109.969192,1095.733261,1073.765014,,,,,,,0.006924741,0.007234885,0.00753713,0.008005576,,,,,,,0.034307668,0.034252511,0.034197414,0.034112037,,,,,,,0.446379672,0.517279393,0.536825483,0.531882846,,,,,,,0.007227623,0.011474737,0.015118164,0.022268666,,,,,,,0.119919239,0.126825331,0.13257227,0.144498641,,,,,,,0.026240236,0.033439795,0.039613064,0.051851229,,,,,,,0.00762127,0.007525321,0.007428805,0.007279866,,,,,,,0.794114963,0.871124019,0.921145298,1.062510028,,,,,,,0.002005634,0.003209024,0.004270467,0.006397124,,,,,,,0.013253739,0.013903405,0.014788382,0.016269251,,,,,,,9.063990791,15.59799067,19.02398166,20.62664138,,,,,,,1148.236441,1133.752631,1119.170273,1096.685468,,,,,,,0.007050221,0.007368733,0.007679132,0.008160204,,,,,,,0.034552505,0.034497988,0.034443539,0.034359115,,,,,,,0.442643627,0.512988203,0.53249526,0.527684238,,,,,,,0.00725645,0.011507178,0.015166934,0.022350035,,,,,,,0.121456932,0.128310437,0.134027689,0.145897116,,,,,,,0.026445394,0.033619752,0.039788035,0.052008934,,,,,,,0.007784763,0.007686568,0.007587703,0.007435261,,,,,,,0.811222844,0.892426232,0.943314295,1.087899779,,,,,,,0.002124595,0.003421211,0.004568323,0.006885597,,,,,,,0.015310432,0.015509576,0.016378,0.018031359,,,,,,,9.73787174,16.70471298,20.38230592,22.12313802,,,,,,,1133.410812,1119.449668,1105.4109,1083.738169,,,,,,,0.007126321,0.007444066,0.007753721,0.008233653,,,,,,,0.034550987,0.034494064,0.034437205,0.034349112,,,,,,,0.496937639,0.575328497,0.596798851,0.591194228,,,,,,,0.007410138,0.011788698,0.015545151,0.022936602,,,,,,,0.125115316,0.132195478,0.138081108,0.150363172,,,,,,,0.027184311,0.034613901,0.040985858,0.053656357,,,,,,,0.007570594,0.007477374,0.007383636,0.007238927,,,,,,,0.80879006,0.893359099,0.942289297,1.084310013,,,,,,,0.001991793,0.003199421,0.004250706,0.006355171,,,,,,,0.014633865,0.015477234,0.016496852,0.018166401,,,,,,,10.90846317,18.67243099,22.84670774,24.87196508,,,,,,,1132.265361,1118.579313,1104.836001,1083.59685,,,,,,,0.007329756,0.007662031,0.007985841,0.008487711,,,,,,,0.034913153,0.034859756,0.03480641,0.034723763,,,,,,,0.469618529,0.544474045,0.56513089,0.560052353,,,,,,,0.007251635,0.011547358,0.015207305,0.022396508,,,,,,,0.126916203,0.133748434,0.139356203,0.151063514,,,,,,,0.027128097,0.034365425,0.040518611,0.052722586,,,,,,,0.007100949,0.00701512,0.006928938,0.006795744,,,,,,,0.743339696,0.842002281,0.891282851,1.038583942 +Bus,E15,2040,,,,,,,,0.002335395,0.003800256,0.005111907,,,,,,,,0.018701516,0.017997685,0.018832521,,,,,,,,9.40684442,16.09338948,19.614328,,,,,,,,1117.63146,1104.393878,1091.12483,,,,,,,,0.007075683,0.007389437,0.007703547,,,,,,,,0.03465828,0.034604262,0.034550252,,,,,,,,0.48518705,0.562381239,0.58368894,,,,,,,,0.007710778,0.012341598,0.016328234,,,,,,,,0.121971818,0.129719934,0.136231736,,,,,,,,0.027321566,0.03527615,0.042137167,,,,,,,,0.007577269,0.007487522,0.00739756,,,,,,,,0.592572139,0.696280246,0.746109512,,,,,,,,0.002258767,0.003666016,0.004918681,,,,,,,,0.01699559,0.016632379,0.017455633,,,,,,,,9.103039414,15.61259819,19.0187059,,,,,,,,1123.46006,1109.923409,1096.34528,,,,,,,,0.007049982,0.007357767,0.007665905,,,,,,,,0.034568112,0.034511058,0.034454043,,,,,,,,0.477870269,0.553702063,0.574491173,,,,,,,,0.007623169,0.012188674,0.016108826,,,,,,,,0.12323546,0.130782216,0.13708975,,,,,,,,0.027313356,0.035117572,0.041825589,,,,,,,,0.007616787,0.007525011,0.007432954,,,,,,,,0.640428884,0.744003015,0.793882378,,,,,,,,0.002210583,0.003595935,0.004835449,,,,,,,,0.018124384,0.017508106,0.018307904,,,,,,,,9.424843975,16.13535745,19.65650474,,,,,,,,1117.264879,1103.88027,1090.453652,,,,,,,,0.007455314,0.007776245,0.008097535,,,,,,,,0.034631848,0.034581685,0.03453152,,,,,,,,0.46930574,0.543564187,0.563997626,,,,,,,,0.007241733,0.011577722,0.015300125,,,,,,,,0.133459461,0.140382214,0.146127611,,,,,,,,0.028082271,0.035496293,0.041868966,,,,,,,,0.007574784,0.007484039,0.007393011,,,,,,,,0.68470413,0.795795091,0.85051464,,,,,,,,0.002300908,0.003747349,0.005045717,,,,,,,,0.018136016,0.017268297,0.018016436,,,,,,,,9.066888105,15.53843217,18.92793891,,,,,,,,1118.273294,1104.627716,1090.929586,,,,,,,,0.006731421,0.007030324,0.007329563,,,,,,,,0.03431447,0.034257977,0.034201452,,,,,,,,0.472120656,0.547681461,0.568543858,,,,,,,,0.007544577,0.012077227,0.015982055,,,,,,,,0.114139153,0.121849874,0.128356785,,,,,,,,0.02609267,0.033901977,0.040646509,,,,,,,,0.007581621,0.007489106,0.007396237,,,,,,,,0.689592876,0.788494004,0.839595513,,,,,,,,0.00201375,0.003244461,0.004321335,,,,,,,,0.013854867,0.014440661,0.015331449,,,,,,,,8.844021943,15.24184488,18.56755426,,,,,,,,1134.921016,1120.658399,1106.321566,,,,,,,,0.007366304,0.007683983,0.008002029,,,,,,,,0.034567508,0.034516676,0.034465861,,,,,,,,0.435725559,0.505311692,0.524335814,,,,,,,,0.007160648,0.011410164,0.015027322,,,,,,,,0.130929797,0.13760509,0.143064694,,,,,,,,0.027517459,0.034679334,0.040765841,,,,,,,,0.007694489,0.007597793,0.007500591,,,,,,,,0.809332894,0.920326531,0.97574618,,,,,,,,0.002047372,0.003303394,0.004406194,,,,,,,,0.013806348,0.014106473,0.014919078,,,,,,,,8.623539927,14.8612895,18.09349813,,,,,,,,1124.324585,1110.157598,1095.922565,,,,,,,,0.006930054,0.007232464,0.007535218,,,,,,,,0.034308365,0.034253259,0.034198148,,,,,,,,0.446183913,0.517590917,0.53707994,,,,,,,,0.007207437,0.0114923,0.0151458,,,,,,,,0.119898488,0.126878785,0.13264538,,,,,,,,0.026208111,0.033472441,0.039663202,,,,,,,,0.007622646,0.007526599,0.007430088,,,,,,,,0.777547349,0.878709423,0.929906207,,,,,,,,0.001997112,0.003216009,0.004281738,,,,,,,,0.013266093,0.013899625,0.014788192,,,,,,,,9.067609742,15.59993648,19.02677164,,,,,,,,1148.438618,1133.943571,1119.360674,,,,,,,,0.007055678,0.007366252,0.007677164,,,,,,,,0.034553189,0.034498746,0.034444247,,,,,,,,0.44238426,0.513331774,0.53279125,,,,,,,,0.007228403,0.011530307,0.015203252,,,,,,,,0.121421394,0.128375063,0.13411784,,,,,,,,0.026399923,0.033661955,0.039853034,,,,,,,,0.007786135,0.00768786,0.007588993,,,,,,,,0.796221947,0.899376056,0.951373602,,,,,,,,0.002119896,0.003425392,0.004575257,,,,,,,,0.015343668,0.01549493,0.016365281,,,,,,,,9.741838777,16.70587779,20.38484942,,,,,,,,1133.613326,1119.63618,1105.598946,,,,,,,,0.007131762,0.007441584,0.007751764,,,,,,,,0.034551687,0.034494825,0.034437975,,,,,,,,0.496816862,0.575621155,0.597015098,,,,,,,,0.007395549,0.011802071,0.015566355,,,,,,,,0.125106391,0.132242248,0.138143347,,,,,,,,0.027161736,0.034639663,0.041025365,,,,,,,,0.007571947,0.00747862,0.007384893,,,,,,,,0.797259354,0.898760106,0.948452148,,,,,,,,0.00199085,0.003200738,0.004252962,,,,,,,,0.014656873,0.01546709,0.016488541,,,,,,,,10.91971487,18.66698721,22.84134126,,,,,,,,1132.465756,1118.764512,1105.02137,,,,,,,,0.007335456,0.007659442,0.007983793,,,,,,,,0.034913849,0.03486049,0.034807126,,,,,,,,0.469652398,0.544667978,0.565231841,,,,,,,,0.007248256,0.011552314,0.015215253,,,,,,,,0.126929889,0.133779251,0.139392686,,,,,,,,0.027125058,0.034376612,0.040534965,,,,,,,,0.007102206,0.007016285,0.006930101,,,,,,,,0.740465942,0.843573706,0.892956482 +Bus,E15,2045,,,,,,,,,0.002341515,0.00380939,,,,,,,,,0.018700611,0.018000351,,,,,,,,,9.413256143,16.11092826,,,,,,,,,1117.589127,1104.345824,,,,,,,,,0.007076358,0.007390506,,,,,,,,,0.034658098,0.034604074,,,,,,,,,0.485318031,0.56266669,,,,,,,,,0.007728933,0.012366932,,,,,,,,,0.122003225,0.129765139,,,,,,,,,0.027352804,0.035320154,,,,,,,,,0.007576982,0.007487196,,,,,,,,,0.595154058,0.699405077,,,,,,,,,0.002264614,0.003674674,,,,,,,,,0.016992608,0.016631852,,,,,,,,,9.109734433,15.63082107,,,,,,,,,1123.417081,1109.87522,,,,,,,,,0.007050644,0.007358818,,,,,,,,,0.034567921,0.034510882,,,,,,,,,0.477998785,0.553983037,,,,,,,,,0.007641059,0.012213568,,,,,,,,,0.123266061,0.130826193,,,,,,,,,0.027343958,0.03516053,,,,,,,,,0.007616495,0.007524684,,,,,,,,,0.643984913,0.748240447,,,,,,,,,0.002216456,0.003604717,,,,,,,,,0.018107498,0.017491115,,,,,,,,,9.431521748,16.15413234,,,,,,,,,1117.222923,1103.831631,,,,,,,,,0.007456008,0.007777338,,,,,,,,,0.034631703,0.034581502,,,,,,,,,0.469447284,0.54386062,,,,,,,,,0.007259304,0.01160244,,,,,,,,,0.133488953,0.140425141,,,,,,,,,0.028112339,0.035538974,,,,,,,,,0.007574499,0.00748371,,,,,,,,,0.690863359,0.803041379,,,,,,,,,0.002308253,0.003758949,,,,,,,,,0.018122871,0.01725552,,,,,,,,,9.077157337,15.5646769,,,,,,,,,1118.23061,1104.578029,,,,,,,,,0.006732066,0.007031339,,,,,,,,,0.034314303,0.034257764,,,,,,,,,0.472295701,0.548026446,,,,,,,,,0.007565726,0.01210849,,,,,,,,,0.114177162,0.121907685,,,,,,,,,0.026129346,0.03395673,,,,,,,,,0.007581332,0.007488771,,,,,,,,,0.697569368,0.798104232,,,,,,,,,0.002018724,0.003251635,,,,,,,,,0.013849629,0.014435699,,,,,,,,,8.852600237,15.26402983,,,,,,,,,1134.876713,1120.607083,,,,,,,,,0.007366983,0.007685064,,,,,,,,,0.034567343,0.034516495,,,,,,,,,0.435840081,0.505565315,,,,,,,,,0.007176911,0.011432382,,,,,,,,,0.130956356,0.137642553,,,,,,,,,0.027544881,0.034717051,,,,,,,,,0.007694188,0.007597443,,,,,,,,,0.81683347,0.929178398,,,,,,,,,0.002052502,0.003310835,,,,,,,,,0.013797381,0.014097132,,,,,,,,,8.631319101,14.88194831,,,,,,,,,1124.280248,1110.106475,,,,,,,,,0.006930705,0.007233495,,,,,,,,,0.034308192,0.034253061,,,,,,,,,0.44630621,0.517857385,,,,,,,,,0.007224127,0.011515283,,,,,,,,,0.11992662,0.126918593,,,,,,,,,0.026236375,0.033511598,,,,,,,,,0.007622346,0.007526252,,,,,,,,,0.785122372,0.887626626,,,,,,,,,0.00200319,0.003225311,,,,,,,,,0.013270417,0.013907256,,,,,,,,,9.075830499,15.62157103,,,,,,,,,1148.394914,1133.890408,,,,,,,,,0.007056353,0.007367298,,,,,,,,,0.034553046,0.034498511,,,,,,,,,0.442535007,0.513637375,,,,,,,,,0.007248624,0.011559917,,,,,,,,,0.121456249,0.12842731,,,,,,,,,0.026434135,0.0337123,,,,,,,,,0.007785837,0.0076875,,,,,,,,,0.803075253,0.90755396,,,,,,,,,0.002124434,0.003431645,,,,,,,,,0.015339882,0.015491733,,,,,,,,,9.750724621,16.72832917,,,,,,,,,1133.56973,1119.585947,,,,,,,,,0.007132428,0.007442641,,,,,,,,,0.034551513,0.034494622,,,,,,,,,0.496908413,0.575853765,,,,,,,,,0.007409873,0.011820417,,,,,,,,,0.125129783,0.132272946,,,,,,,,,0.027186041,0.034671043,,,,,,,,,0.007571656,0.007478285,,,,,,,,,0.802572794,0.905032363,,,,,,,,,0.001993444,0.003203347,,,,,,,,,0.014657575,0.01546882,,,,,,,,,10.92697698,18.68531124,,,,,,,,,1132.422242,1118.71491,,,,,,,,,0.00733615,0.007660542,,,,,,,,,0.034913669,0.034860291,,,,,,,,,0.469671699,0.544794063,,,,,,,,,0.007257198,0.011560611,,,,,,,,,0.126942418,0.133789819,,,,,,,,,0.027139887,0.034390303,,,,,,,,,0.007101933,0.00701597,,,,,,,,,0.741848923,0.845298356 +Bus,E15,2050,,,,,,,,,,0.002345916,,,,,,,,,,0.018701551,,,,,,,,,,9.416375573,,,,,,,,,,1117.534614,,,,,,,,,,0.007077256,,,,,,,,,,0.034657887,,,,,,,,,,0.485465707,,,,,,,,,,0.007740828,,,,,,,,,,0.122020948,,,,,,,,,,0.027372978,,,,,,,,,,0.007576612,,,,,,,,,,0.598230089,,,,,,,,,,0.002268775,,,,,,,,,,0.016990678,,,,,,,,,,9.113370287,,,,,,,,,,1123.361872,,,,,,,,,,0.00705153,,,,,,,,,,0.034567699,,,,,,,,,,0.478143855,,,,,,,,,,0.007652738,,,,,,,,,,0.123283044,,,,,,,,,,0.027363601,,,,,,,,,,0.007616121,,,,,,,,,,0.648220342,,,,,,,,,,0.002220712,,,,,,,,,,0.018089406,,,,,,,,,,9.43497197,,,,,,,,,,1117.167725,,,,,,,,,,0.007456924,,,,,,,,,,0.03463149,,,,,,,,,,0.469607241,,,,,,,,,,0.007271063,,,,,,,,,,0.133505263,,,,,,,,,,0.028132059,,,,,,,,,,0.007574125,,,,,,,,,,0.698245986,,,,,,,,,,0.002314151,,,,,,,,,,0.018109376,,,,,,,,,,9.085060719,,,,,,,,,,1118.174682,,,,,,,,,,0.006732921,,,,,,,,,,0.03431406,,,,,,,,,,0.472495653,,,,,,,,,,0.007581369,,,,,,,,,,0.114203031,,,,,,,,,,0.026156296,,,,,,,,,,0.007580953,,,,,,,,,,0.707359212,,,,,,,,,,0.002022124,,,,,,,,,,0.013843995,,,,,,,,,,8.858585496,,,,,,,,,,1134.819933,,,,,,,,,,0.007367894,,,,,,,,,,0.034567139,,,,,,,,,,0.435968352,,,,,,,,,,0.00718719,,,,,,,,,,0.130969618,,,,,,,,,,0.027561757,,,,,,,,,,0.007693802,,,,,,,,,,0.825806597,,,,,,,,,,0.00205605,,,,,,,,,,0.013787544,,,,,,,,,,8.636485693,,,,,,,,,,1124.223276,,,,,,,,,,0.006931572,,,,,,,,,,0.03430797,,,,,,,,,,0.446443939,,,,,,,,,,0.007234859,,,,,,,,,,0.119941645,,,,,,,,,,0.026254148,,,,,,,,,,0.007621962,,,,,,,,,,0.794184616,,,,,,,,,,0.002007916,,,,,,,,,,0.013275955,,,,,,,,,,9.081210203,,,,,,,,,,1148.336499,,,,,,,,,,0.007057239,,,,,,,,,,0.03455281,,,,,,,,,,0.442705684,,,,,,,,,,0.007263509,,,,,,,,,,0.121479068,,,,,,,,,,0.026458918,,,,,,,,,,0.007785445,,,,,,,,,,0.811299943,,,,,,,,,,0.002127201,,,,,,,,,,0.015336457,,,,,,,,,,9.756559767,,,,,,,,,,1133.513872,,,,,,,,,,0.007133319,,,,,,,,,,0.034551295,,,,,,,,,,0.497009199,,,,,,,,,,0.007417595,,,,,,,,,,0.125138777,,,,,,,,,,0.027198729,,,,,,,,,,0.007571282,,,,,,,,,,0.808892978,,,,,,,,,,0.00199406,,,,,,,,,,0.014658863,,,,,,,,,,10.93011995,,,,,,,,,,1132.366269,,,,,,,,,,0.007337077,,,,,,,,,,0.034913445,,,,,,,,,,0.469687269,,,,,,,,,,0.007258744,,,,,,,,,,0.126939032,,,,,,,,,,0.027141768,,,,,,,,,,0.007101582,,,,,,,,,,0.743484116 +Commercial truck,B0,1990,0.642644217,,,,,,,,,,0.004110269,,,,,,,,,,4.489398957,,,,,,,,,,1021.46473,,,,,,,,,,0.003297379,,,,,,,,,,0.025841526,,,,,,,,,,17.97812159,,,,,,,,,,0.395811113,,,,,,,,,,1.360728586,,,,,,,,,,1.217485462,,,,,,,,,,0.077848003,,,,,,,,,,1.756852249,,,,,,,,,,0.641690099,,,,,,,,,,0.00411429,,,,,,,,,,4.551863011,,,,,,,,,,1031.556251,,,,,,,,,,0.003307677,,,,,,,,,,0.025836787,,,,,,,,,,18.09352153,,,,,,,,,,0.400317305,,,,,,,,,,1.36754711,,,,,,,,,,1.223108845,,,,,,,,,,0.078617103,,,,,,,,,,1.757504432,,,,,,,,,,0.646087424,,,,,,,,,,0.004345313,,,,,,,,,,4.776986034,,,,,,,,,,1043.36872,,,,,,,,,,0.003506211,,,,,,,,,,0.026166535,,,,,,,,,,18.29778716,,,,,,,,,,0.423572759,,,,,,,,,,1.41289841,,,,,,,,,,1.261478355,,,,,,,,,,0.079517351,,,,,,,,,,1.852985856,,,,,,,,,,0.633172579,,,,,,,,,,0.003988323,,,,,,,,,,4.390196395,,,,,,,,,,1014.199313,,,,,,,,,,0.003144348,,,,,,,,,,0.02559436,,,,,,,,,,17.46248255,,,,,,,,,,0.383775373,,,,,,,,,,1.328807539,,,,,,,,,,1.19034935,,,,,,,,,,0.077294291,,,,,,,,,,1.70727196,,,,,,,,,,0.64405665,,,,,,,,,,0.004148812,,,,,,,,,,4.825926754,,,,,,,,,,1048.300954,,,,,,,,,,0.003464212,,,,,,,,,,0.02609989,,,,,,,,,,17.50685815,,,,,,,,,,0.419574364,,,,,,,,,,1.40359314,,,,,,,,,,1.253590892,,,,,,,,,,0.079893252,,,,,,,,,,1.766642861,,,,,,,,,,0.635230925,,,,,,,,,,0.003997657,,,,,,,,,,4.575311131,,,,,,,,,,1028.315315,,,,,,,,,,0.003255231,,,,,,,,,,0.025762028,,,,,,,,,,17.3356651,,,,,,,,,,0.39841509,,,,,,,,,,1.356622465,,,,,,,,,,1.213795912,,,,,,,,,,0.078370107,,,,,,,,,,1.70669845,,,,,,,,,,0.640752472,,,,,,,,,,0.003971385,,,,,,,,,,4.651812878,,,,,,,,,,1039.276134,,,,,,,,,,0.003299047,,,,,,,,,,0.025836779,,,,,,,,,,17.25987285,,,,,,,,,,0.398490623,,,,,,,,,,1.36319007,,,,,,,,,,1.219486149,,,,,,,,,,0.079205436,,,,,,,,,,1.694280469,,,,,,,,,,0.642197183,,,,,,,,,,0.004099507,,,,,,,,,,4.656151643,,,,,,,,,,1041.386618,,,,,,,,,,0.003352384,,,,,,,,,,0.025892666,,,,,,,,,,18.82041533,,,,,,,,,,0.405839304,,,,,,,,,,1.37773386,,,,,,,,,,1.231682281,,,,,,,,,,0.079366308,,,,,,,,,,1.749172283,,,,,,,,,,0.649947616,,,,,,,,,,0.00403656,,,,,,,,,,4.638079887,,,,,,,,,,1034.993513,,,,,,,,,,0.003417046,,,,,,,,,,0.026023854,,,,,,,,,,18.35421449,,,,,,,,,,0.405709047,,,,,,,,,,1.386456624,,,,,,,,,,1.239315134,,,,,,,,,,0.078879057,,,,,,,,,,1.719959778,,,,,,,,, +Commercial truck,B0,1995,0.397906373,0.473284648,,,,,,,,,0.003899342,0.003823102,,,,,,,,,4.383066692,4.474904805,,,,,,,,,928.3669318,984.1291572,,,,,,,,,0.002823897,0.003308503,,,,,,,,,0.02555355,0.025702942,,,,,,,,,12.15569327,14.41244861,,,,,,,,,0.31569359,0.337871598,,,,,,,,,0.969896532,1.07323272,,,,,,,,,0.857573082,0.952819617,,,,,,,,,0.07075285,0.008654144,,,,,,,,,1.681687771,1.753525046,,,,,,,,,0.39976437,0.474562365,,,,,,,,,0.003915283,0.003826207,,,,,,,,,4.460942262,4.550605776,,,,,,,,,939.6579426,994.9491829,,,,,,,,,0.002838933,0.00331746,,,,,,,,,0.025534241,0.025690432,,,,,,,,,12.26341208,14.52338714,,,,,,,,,0.321185643,0.343070804,,,,,,,,,0.981261891,1.083337229,,,,,,,,,0.867420098,0.961485257,,,,,,,,,0.071613333,0.008749292,,,,,,,,,1.68819591,1.754384041,,,,,,,,,0.407556118,0.481333677,,,,,,,,,0.00411908,0.004039552,,,,,,,,,4.68590962,4.778013607,,,,,,,,,954.1687317,1008.874076,,,,,,,,,0.003022627,0.003519311,,,,,,,,,0.025888503,0.026031882,,,,,,,,,12.51450199,14.75719501,,,,,,,,,0.349015735,0.369282549,,,,,,,,,1.037419061,1.134857066,,,,,,,,,0.915753469,1.005544489,,,,,,,,,0.072719235,0.008871744,,,,,,,,,1.776915934,1.850038446,,,,,,,,,0.387626137,0.463312586,,,,,,,,,0.003794895,0.00371547,,,,,,,,,4.322808887,4.40453054,,,,,,,,,921.2363208,977.0265412,,,,,,,,,0.002690006,0.003153784,,,,,,,,,0.025294841,0.025449812,,,,,,,,,11.73917166,13.9656063,,,,,,,,,0.298901471,0.322597728,,,,,,,,,0.929733671,1.036336602,,,,,,,,,0.822802784,0.921077886,,,,,,,,,0.070209388,0.008591685,,,,,,,,,1.636288864,1.70586517,,,,,,,,,0.404951052,0.478899716,,,,,,,,,0.003994057,0.003858064,,,,,,,,,4.800054545,4.878821523,,,,,,,,,965.4641599,1017.307322,,,,,,,,,0.002984593,0.003476731,,,,,,,,,0.025818725,0.025963721,,,,,,,,,12.02380103,14.16406334,,,,,,,,,0.343712233,0.364413912,,,,,,,,,1.025462144,1.123948728,,,,,,,,,0.905418086,0.996176997,,,,,,,,,0.073580084,0.008945903,,,,,,,,,1.722889006,1.766307915,,,,,,,,,0.393126605,0.467958693,,,,,,,,,0.003841375,0.003721158,,,,,,,,,4.53643708,4.614799437,,,,,,,,,940.340387,993.9953514,,,,,,,,,0.00279469,0.003265112,,,,,,,,,0.025463996,0.025617696,,,,,,,,,11.75389441,13.93024422,,,,,,,,,0.316534416,0.339241237,,,,,,,,,0.96589829,1.069418552,,,,,,,,,0.853984589,0.949397708,,,,,,,,,0.071665353,0.008740906,,,,,,,,,1.656096919,1.706101743,,,,,,,,,0.397373906,0.472455767,,,,,,,,,0.003833053,0.003697555,,,,,,,,,4.645955666,4.718607407,,,,,,,,,956.2232062,1008.018662,,,,,,,,,0.002828725,0.003309765,,,,,,,,,0.025544763,0.02569588,,,,,,,,,11.78319584,13.92440079,,,,,,,,,0.318310981,0.340497451,,,,,,,,,0.97372737,1.07666029,,,,,,,,,0.860842896,0.955713071,,,,,,,,,0.072875773,0.008864222,,,,,,,,,1.653697298,1.695168489,,,,,,,,,0.401778215,0.476214321,,,,,,,,,0.003924988,0.003812759,,,,,,,,,4.599808542,4.683747636,,,,,,,,,953.4692761,1007.200856,,,,,,,,,0.00287997,0.003362335,,,,,,,,,0.025589277,0.025745649,,,,,,,,,12.83732791,15.16191125,,,,,,,,,0.327822755,0.349339772,,,,,,,,,0.994803205,1.095680998,,,,,,,,,0.879099618,0.972053272,,,,,,,,,0.072665916,0.00885703,,,,,,,,,1.692593666,1.747383705,,,,,,,,,0.406591622,0.481573647,,,,,,,,,0.003882967,0.003748703,,,,,,,,,4.546443771,4.637600594,,,,,,,,,947.3134242,1000.40555,,,,,,,,,0.002929879,0.003429277,,,,,,,,,0.025740309,0.025887492,,,,,,,,,12.52589293,14.78575386,,,,,,,,,0.329639706,0.35052425,,,,,,,,,1.003393509,1.103816034,,,,,,,,,0.886594488,0.979140036,,,,,,,,,0.072196743,0.008797278,,,,,,,,,1.674386423,1.716797076,,,,,,,, +Commercial truck,B0,2000,0.294939105,0.294452648,0.327527143,,,,,,,,0.002901724,0.003042753,0.003170797,,,,,,,,4.521793792,4.540812778,4.543904948,,,,,,,,858.3346691,868.5567095,892.3345805,,,,,,,,0.002771815,0.002942256,0.003526725,,,,,,,,0.026495808,0.026506526,0.026206857,,,,,,,,8.032793391,8.056965119,9.470242564,,,,,,,,0.198522353,0.196116256,0.235788966,,,,,,,,0.674455021,0.662558554,0.7591326,,,,,,,,0.586121049,0.575194077,0.663945725,,,,,,,,0.065415512,0.007637834,0.007846928,,,,,,,,1.589658716,1.61513078,1.718193231,,,,,,,,0.295717397,0.29520803,0.328457941,,,,,,,,0.002920779,0.003058641,0.003169876,,,,,,,,4.635673134,4.653467433,4.644321924,,,,,,,,869.6999895,879.7692865,902.7363043,,,,,,,,0.002794633,0.002962894,0.003537362,,,,,,,,0.026474918,0.026486101,0.02618586,,,,,,,,8.130019418,8.151777503,9.568273691,,,,,,,,0.201863605,0.199398829,0.239615658,,,,,,,,0.681388844,0.669252371,0.766817177,,,,,,,,0.59181043,0.580660902,0.670346423,,,,,,,,0.066281692,0.007736432,0.007938399,,,,,,,,1.600512919,1.623833576,1.718534,,,,,,,,0.301071556,0.300529293,0.333588207,,,,,,,,0.003071224,0.003216881,0.00334624,,,,,,,,4.868902606,4.887017329,4.876430127,,,,,,,,880.7419704,890.9445248,915.4070407,,,,,,,,0.002970484,0.003144832,0.003743586,,,,,,,,0.0267878,0.026797382,0.026509188,,,,,,,,8.288517517,8.308643695,9.747465889,,,,,,,,0.215366919,0.212688975,0.256274772,,,,,,,,0.712418765,0.699402183,0.801910677,,,,,,,,0.617100565,0.605140098,0.699361585,,,,,,,,0.067123226,0.007834704,0.008049821,,,,,,,,1.679511013,1.705307086,1.81031991,,,,,,,,0.288870704,0.288455921,0.320765117,,,,,,,,0.002830036,0.002968403,0.003089928,,,,,,,,4.510497885,4.526654909,4.511880442,,,,,,,,855.2379636,865.3261276,887.1316764,,,,,,,,0.002644051,0.002807694,0.00336663,,,,,,,,0.026246448,0.026257889,0.025954136,,,,,,,,7.822760977,7.84703102,9.194905836,,,,,,,,0.190600803,0.188308387,0.226071875,,,,,,,,0.652768584,0.641426833,0.734253876,,,,,,,,0.568318767,0.5579045,0.643211719,,,,,,,,0.065179514,0.007609424,0.007801177,,,,,,,,1.552307471,1.577119174,1.676432507,,,,,,,,0.299533748,0.299009421,0.331911999,,,,,,,,0.002995696,0.003119474,0.003175956,,,,,,,,5.077646729,5.091679141,5.050182084,,,,,,,,893.6941428,903.1847389,924.6863294,,,,,,,,0.002934058,0.0031069,0.003699843,,,,,,,,0.026723217,0.026733016,0.026443168,,,,,,,,8.064755258,8.083121052,9.436052745,,,,,,,,0.21282656,0.21018791,0.253161974,,,,,,,,0.705956881,0.693117068,0.79452032,,,,,,,,0.611806299,0.600009141,0.69321581,,,,,,,,0.068110349,0.007942342,0.008131422,,,,,,,,1.639485697,1.654659865,1.721439369,,,,,,,,0.292301821,0.291853324,0.324227963,,,,,,,,0.002876029,0.003002106,0.003074322,,,,,,,,4.78315407,4.79755838,4.764144332,,,,,,,,872.9721542,882.5903037,903.1115559,,,,,,,,0.002750768,0.002916474,0.003482155,,,,,,,,0.026396456,0.026407464,0.026108793,,,,,,,,7.873624839,7.894915485,9.227687805,,,,,,,,0.199671699,0.197235713,0.237041044,,,,,,,,0.673354227,0.661410619,0.757402915,,,,,,,,0.58513027,0.574159696,0.662393382,,,,,,,,0.06653107,0.007761241,0.0079417,,,,,,,,1.576834718,1.594463726,1.668695251,,,,,,,,0.294660018,0.29417802,0.327088899,,,,,,,,0.002878712,0.002998401,0.003050428,,,,,,,,4.94067323,4.953394518,4.905680163,,,,,,,,887.4892174,896.8753824,917.1365031,,,,,,,,0.002779763,0.002948991,0.003528343,,,,,,,,0.026482191,0.026492985,0.026194065,,,,,,,,7.934260126,7.954105786,9.276283142,,,,,,,,0.200110887,0.197675915,0.23765274,,,,,,,,0.676990984,0.664995085,0.761844095,,,,,,,,0.588170109,0.577151447,0.666164025,,,,,,,,0.067637444,0.00788686,0.008065031,,,,,,,,1.577465879,1.592041568,1.655589376,,,,,,,,0.296933954,0.296412327,0.329696857,,,,,,,,0.002938148,0.003068564,0.00315086,,,,,,,,4.833400124,4.84912445,4.821296079,,,,,,,,883.2839001,893.0417894,914.9098092,,,,,,,,0.002836441,0.003005983,0.003584629,,,,,,,,0.026522712,0.026533807,0.026235353,,,,,,,,8.578309163,8.59669067,10.05012322,,,,,,,,0.205326986,0.202807941,0.243790681,,,,,,,,0.689127979,0.676763147,0.775525075,,,,,,,,0.598133559,0.586772952,0.677566235,,,,,,,,0.067316954,0.00785315,0.008045449,,,,,,,,1.609736179,1.628919836,1.708781761,,,,,,,,0.29986114,0.299309337,0.333103977,,,,,,,,0.002898905,0.003019721,0.003076526,,,,,,,,4.717051124,4.735490735,4.729741893,,,,,,,,874.5659176,884.2136664,907.0394108,,,,,,,,0.002874315,0.003049574,0.003651864,,,,,,,,0.026674979,0.026685301,0.026388574,,,,,,,,8.295854344,8.317297759,9.762752492,,,,,,,,0.205240952,0.20273541,0.243961753,,,,,,,,0.692550672,0.680174354,0.779899492,,,,,,,,0.600987646,0.589617391,0.68126851,,,,,,,,0.066652538,0.007775514,0.00797624,,,,,,,,1.587939867,1.602734138,1.668923759,,,,,,, +Commercial truck,B0,2005,0.141878396,0.195105957,0.194041377,0.233468561,,,,,,,0.00258078,0.002650224,0.002684921,0.003048705,,,,,,,1.947540639,3.694492999,3.67857715,3.957883729,,,,,,,883.5939729,896.3787651,887.5682693,918.2263578,,,,,,,0.002741641,0.00279992,0.003028418,0.003678075,,,,,,,0.02745907,0.027290797,0.027456502,0.026906499,,,,,,,5.334853757,5.38999103,5.303781489,6.758564659,,,,,,,0.082062291,0.118655167,0.115167299,0.155289385,,,,,,,0.325631913,0.436129276,0.429595557,0.533862594,,,,,,,0.265591091,0.367186829,0.361239061,0.45699054,,,,,,,0.067340579,0.007882493,0.007805016,0.008074614,,,,,,,0.621380807,1.118201072,1.124982546,1.388204318,,,,,,,0.141922675,0.195216697,0.19413286,0.233946411,,,,,,,0.002570325,0.002664346,0.002692153,0.003039636,,,,,,,2.006722656,3.799703313,3.785100082,4.056337985,,,,,,,895.2074045,908.0295647,898.665155,928.8542384,,,,,,,0.002770437,0.002827029,0.00305403,0.003692406,,,,,,,0.02744162,0.027272234,0.027438147,0.026887223,,,,,,,5.401458823,5.452457502,5.365494343,6.82767259,,,,,,,0.08342276,0.120546938,0.11705231,0.157827575,,,,,,,0.328776921,0.440086185,0.433539545,0.539168333,,,,,,,0.267713047,0.370070011,0.364095731,0.461141863,,,,,,,0.068225659,0.007984947,0.007902599,0.008168072,,,,,,,0.621994923,1.124957257,1.128921916,1.385012979,,,,,,,0.142930754,0.196518062,0.195363045,0.236101103,,,,,,,0.00272232,0.002806439,0.002838921,0.003212225,,,,,,,2.103300463,3.972676648,3.955876343,4.24226949,,,,,,,908.5369171,921.706522,912.3484181,943.0314236,,,,,,,0.002938311,0.002997905,0.003230225,0.003894329,,,,,,,0.027695369,0.02753687,0.027691115,0.027170563,,,,,,,5.504827558,5.556285424,5.467837774,6.942883109,,,,,,,0.087494899,0.126349282,0.122646855,0.166918244,,,,,,,0.340264208,0.454387132,0.44742668,0.559432965,,,,,,,0.275089497,0.380022264,0.373683369,0.476562627,,,,,,,0.06924155,0.008105218,0.008022926,0.008292744,,,,,,,0.655075426,1.1816804,1.186967509,1.459344368,,,,,,,0.140410009,0.193127164,0.192110904,0.230285152,,,,,,,0.00252239,0.002588052,0.002623669,0.002977336,,,,,,,1.961850772,3.716426354,3.70330339,3.957216789,,,,,,,880.0502201,892.3984627,883.3916408,913.1426206,,,,,,,0.002618722,0.002674269,0.002895736,0.003518439,,,,,,,0.027232981,0.027059871,0.02723028,0.026667601,,,,,,,5.234674748,5.283039799,5.201184889,6.600265444,,,,,,,0.079895117,0.115625351,0.112227721,0.150213676,,,,,,,0.317963189,0.426670475,0.420335687,0.519965182,,,,,,,0.260664336,0.360617508,0.354845245,0.446344726,,,,,,,0.067070508,0.007847492,0.007768287,0.00802991,,,,,,,0.608258217,1.093589587,1.101016996,1.357912533,,,,,,,0.142589497,0.196056699,0.194917254,0.235331232,,,,,,,0.002527549,0.002711774,0.002711163,0.003001577,,,,,,,2.222711621,4.175851645,4.162481008,4.422304708,,,,,,,922.0091502,934.9220379,924.2036407,952.5676308,,,,,,,0.002903365,0.002962292,0.003193149,0.003851101,,,,,,,0.027639155,0.02747907,0.027634981,0.027109995,,,,,,,5.388807007,5.428238232,5.34668012,6.750101262,,,,,,,0.086758427,0.125311475,0.12164133,0.165250866,,,,,,,0.337935877,0.451494976,0.444604347,0.55524113,,,,,,,0.273586702,0.37800284,0.371725116,0.47335099,,,,,,,0.07026829,0.008221431,0.008127177,0.008376602,,,,,,,0.621192055,1.144693143,1.136750211,1.366844533,,,,,,,0.141018991,0.193952379,0.192888507,0.231834083,,,,,,,0.002464034,0.002610382,0.00262076,0.002923608,,,,,,,2.093700791,3.94815697,3.936079288,4.18471962,,,,,,,899.4888155,911.9058314,901.7857802,929.9914585,,,,,,,0.002726383,0.002782279,0.003006169,0.003635419,,,,,,,0.027357425,0.027188799,0.027353779,0.026804958,,,,,,,5.275527388,5.31760583,5.237285517,6.622875892,,,,,,,0.082876741,0.119831644,0.116332446,0.156526907,,,,,,,0.326022353,0.436706991,0.430172966,0.533980056,,,,,,,0.2659079,0.367687141,0.361726061,0.457090177,,,,,,,0.068551962,0.008019034,0.007930041,0.008178074,,,,,,,0.603290192,1.103842189,1.100864269,1.334141928,,,,,,,0.14171388,0.194891146,0.193819994,0.233236501,,,,,,,0.002430988,0.00260697,0.002607626,0.002886531,,,,,,,2.17490722,4.08544351,4.074757015,4.315652708,,,,,,,914.0529338,926.6910591,915.9447082,944.0588462,,,,,,,0.002751788,0.002809324,0.003036772,0.00368077,,,,,,,0.027442576,0.027274543,0.027439518,0.026891162,,,,,,,5.318450646,5.355407893,5.276446359,6.657409802,,,,,,,0.082727826,0.119599033,0.116096664,0.156534116,,,,,,,0.326887333,0.437722432,0.431166159,0.535882158,,,,,,,0.266433044,0.368344553,0.36237068,0.458550659,,,,,,,0.069661922,0.00814905,0.008054551,0.008301779,,,,,,,0.598601432,1.102135594,1.095064502,1.316689903,,,,,,,0.142124716,0.195495006,0.194393993,0.234506545,,,,,,,0.002533572,0.002671336,0.002685531,0.003002088,,,,,,,2.108627467,3.976402162,3.963591428,4.22383395,,,,,,,909.7248442,922.5577445,912.4232937,941.646395,,,,,,,0.002812776,0.002869638,0.003098358,0.003741039,,,,,,,0.027480695,0.027312767,0.027476783,0.026930662,,,,,,,5.714317315,5.758615493,5.666866095,7.175988607,,,,,,,0.084592133,0.122193911,0.118664563,0.160269746,,,,,,,0.331854464,0.443925078,0.437310524,0.544516653,,,,,,,0.269727433,0.372788042,0.366748503,0.465255876,,,,,,,0.069332073,0.008112704,0.008023583,0.008280564,,,,,,,0.618236877,1.128396912,1.126739332,1.368331772,,,,,,,0.143031849,0.196682939,0.195574791,0.236105177,,,,,,,0.002432619,0.002614863,0.002612727,0.00289961,,,,,,,2.037825631,3.851792013,3.836159147,4.117910887,,,,,,,900.4134074,913.4280646,903.3877109,932.7354749,,,,,,,0.002841338,0.002901442,0.003135078,0.003803475,,,,,,,0.027622151,0.027457096,0.027619452,0.027078487,,,,,,,5.497688597,5.549751301,5.461150201,6.949988614,,,,,,,0.083995411,0.121351802,0.117796871,0.159668441,,,,,,,0.332145127,0.444193061,0.437505,0.545646713,,,,,,,0.269808865,0.372829453,0.366743786,0.466053603,,,,,,,0.068622436,0.008032417,0.00794413,0.008202202,,,,,,,0.598977983,1.105156911,1.096972548,1.322208304,,,,,, +Commercial truck,B0,2010,,0.062097592,0.058010056,0.053542525,0.130635275,,,,,,,0.051034327,0.083800251,0.099778193,0.069467626,,,,,,,1.283950693,1.40636224,1.362370732,2.54226346,,,,,,,912.1541632,901.0795686,907.5849132,940.4546189,,,,,,,0.002684716,0.002827258,0.003114562,0.003855406,,,,,,,0.026996862,0.02719743,0.027302708,0.027001666,,,,,,,3.231409708,3.179254887,3.150307227,4.809389283,,,,,,,0.041113287,0.037359991,0.033674683,0.087182947,,,,,,,0.177671889,0.171527176,0.161331952,0.323034176,,,,,,,0.129277609,0.123701159,0.114381034,0.263089803,,,,,,,0.007642612,0.007535869,0.007575314,0.008040144,,,,,,,0.366882943,0.379426381,0.382709348,0.878951602,,,,,,,0.06213705,0.058038677,0.053567209,0.130893488,,,,,,,0.049028021,0.081539418,0.096247622,0.06631741,,,,,,,1.315407001,1.44179086,1.395933034,2.601239372,,,,,,,924.1333321,912.602271,918.7301148,951.1375829,,,,,,,0.002711331,0.002853371,0.003138123,0.00386861,,,,,,,0.026975186,0.027175948,0.027282581,0.026983161,,,,,,,3.261959229,3.210789228,3.180854242,4.852832282,,,,,,,0.041715931,0.037923793,0.034191081,0.088530698,,,,,,,0.179581898,0.173420402,0.163165525,0.326332522,,,,,,,0.130304969,0.124695823,0.115309715,0.265384284,,,,,,,0.007742953,0.007632183,0.007668258,0.00813155,,,,,,,0.366744922,0.378346419,0.379194214,0.87075526,,,,,,,0.062565096,0.058457273,0.053960239,0.131905781,,,,,,,0.052754042,0.087048349,0.103139516,0.071540069,,,,,,,1.370578622,1.501669798,1.453529535,2.712113009,,,,,,,938.8178382,927.0842687,933.1992742,965.9810208,,,,,,,0.002880873,0.003026023,0.003318459,0.004074384,,,,,,,0.027259656,0.027447598,0.027545394,0.027258354,,,,,,,3.328868635,3.279342491,3.249313657,4.93993917,,,,,,,0.043674226,0.039692671,0.035802108,0.09319128,,,,,,,0.187225059,0.180863079,0.170339626,0.33875101,,,,,,,0.134112051,0.128336183,0.118710878,0.273593316,,,,,,,0.007866034,0.007753407,0.007789169,0.00825796,,,,,,,0.386506766,0.399063215,0.401056268,0.920286478,,,,,,,0.061439475,0.057385679,0.052966045,0.129130135,,,,,,,0.050043631,0.08219938,0.098001272,0.068182926,,,,,,,1.288420193,1.412665221,1.367441163,2.541546044,,,,,,,907.4160782,896.3348157,902.815925,935.2327161,,,,,,,0.002562043,0.002700196,0.002977926,0.003690443,,,,,,,0.026757218,0.026962655,0.027071781,0.026765957,,,,,,,3.159166626,3.109540991,3.081284928,4.699797503,,,,,,,0.040104761,0.036431933,0.032814676,0.084633814,,,,,,,0.172633605,0.166568548,0.156521333,0.314694852,,,,,,,0.126778142,0.121267148,0.112082713,0.257557196,,,,,,,0.007602863,0.007496104,0.007535391,0.007995841,,,,,,,0.358756216,0.371347303,0.374907122,0.860718879,,,,,,,0.062411093,0.058311443,0.053825591,0.131540383,,,,,,,0.041380795,0.072602018,0.082344913,0.054258306,,,,,,,1.430310736,1.569280508,1.517831389,2.818819101,,,,,,,952.9005824,940.1358026,944.9324562,975.2787292,,,,,,,0.002845773,0.00299004,0.003280442,0.004030061,,,,,,,0.027199012,0.027388772,0.027487807,0.0271989,,,,,,,3.234087613,3.192187325,3.165619404,4.804729083,,,,,,,0.043327331,0.039375724,0.035511025,0.092345149,,,,,,,0.185689169,0.17935981,0.168887101,0.336218107,,,,,,,0.133343557,0.127594361,0.118014581,0.271906929,,,,,,,0.007983972,0.007862474,0.007886956,0.008337276,,,,,,,0.365119253,0.372608621,0.363933067,0.83486001,,,,,,,0.061712138,0.057645213,0.053208204,0.129882307,,,,,,,0.043000349,0.07385276,0.08520307,0.057152784,,,,,,,1.359182908,1.491324138,1.442717938,2.677391673,,,,,,,928.1762611,916.1509832,921.5623181,952.2012745,,,,,,,0.002668404,0.002808357,0.003089114,0.003809188,,,,,,,0.026893499,0.027093018,0.027198824,0.026899973,,,,,,,3.172269633,3.127083102,3.099879376,4.715572716,,,,,,,0.041495071,0.037704425,0.033978343,0.087902382,,,,,,,0.177842413,0.171677502,0.16146146,0.323315044,,,,,,,0.129422374,0.123812276,0.114465779,0.263333112,,,,,,,0.007776787,0.007661814,0.007691812,0.008140535,,,,,,,0.354926427,0.363862858,0.359087575,0.824446093,,,,,,,0.062025642,0.057941243,0.053479836,0.130536482,,,,,,,0.039933289,0.070056378,0.079554543,0.052410609,,,,,,,1.400216807,1.537266964,1.487106311,2.754949827,,,,,,,944.0387994,931.3667191,936.1644542,966.3877625,,,,,,,0.002694226,0.002836258,0.003121969,0.00385728,,,,,,,0.02698066,0.027180364,0.027285574,0.026986015,,,,,,,3.183815686,3.142263682,3.116267592,4.737607332,,,,,,,0.041421228,0.037641604,0.033929237,0.087852104,,,,,,,0.17844947,0.172286793,0.162062335,0.324335974,,,,,,,0.129694193,0.124094862,0.114744222,0.26398629,,,,,,,0.007909686,0.007789061,0.00781367,0.008261597,,,,,,,0.351639296,0.359077878,0.35098665,0.804933128,,,,,,,0.062229349,0.058125944,0.053649039,0.131170953,,,,,,,0.044993255,0.076714406,0.08892854,0.060030744,,,,,,,1.368772995,1.501576822,1.453188074,2.701416233,,,,,,,939.4346637,927.2444093,932.6830014,964.0528146,,,,,,,0.00275287,0.002896101,0.003182955,0.003918526,,,,,,,0.027018023,0.027216722,0.027322314,0.02702551,,,,,,,3.429813791,3.379429575,3.345922115,5.092344766,,,,,,,0.042258702,0.038421805,0.034647081,0.089802315,,,,,,,0.181558988,0.175360599,0.165042552,0.329632264,,,,,,,0.131317307,0.125670559,0.116223454,0.267610845,,,,,,,0.007871134,0.007754607,0.007784661,0.008241795,,,,,,,0.363832707,0.373446746,0.369690692,0.848487289,,,,,,,0.062625065,0.058505937,0.053998862,0.131891731,,,,,,,0.039880652,0.070029803,0.079379607,0.052278754,,,,,,,1.332275843,1.459855346,1.414113356,2.637743942,,,,,,,930.8292594,918.6797412,923.8644542,954.7724283,,,,,,,0.00278391,0.002929708,0.003223909,0.003984709,,,,,,,0.027168675,0.027365761,0.027468622,0.027171571,,,,,,,3.318691005,3.268277312,3.238612563,4.939141615,,,,,,,0.042004078,0.038183028,0.034436467,0.08939682,,,,,,,0.181918842,0.17570691,0.165383426,0.330115935,,,,,,,0.131409346,0.125775234,0.116336252,0.26782583,,,,,,,0.007799076,0.007683048,0.007711143,0.008162101,,,,,,,0.352707513,0.359738289,0.351254346,0.807293224,,,,, +Commercial truck,B0,2015,,,0.000798002,0.001229412,0.001235224,0.030743416,,,,,,,0.07598811,0.092613806,0.110186876,0.129252759,,,,,,,0.327673887,0.392715943,0.417982648,0.975797539,,,,,,,891.4365486,891.4560029,893.0810135,915.7854526,,,,,,,0.002661415,0.002797479,0.003050435,0.003727832,,,,,,,0.026708381,0.026774908,0.026927764,0.027236111,,,,,,,0.746366523,1.068187634,1.124338102,2.098551847,,,,,,,0.001387437,0.002137502,0.002147608,0.020100206,,,,,,,0.053223331,0.058426582,0.058405824,0.116400737,,,,,,,0.014646615,0.019465099,0.019518937,0.073056883,,,,,,,0.007283875,0.007284033,0.00729731,0.007572641,,,,,,,0.087560563,0.102974456,0.119292816,0.329365672,,,,,,,0.000803261,0.001237776,0.001243715,0.030779139,,,,,,,0.072993342,0.088855952,0.104867007,0.121996874,,,,,,,0.333383232,0.399542559,0.424734768,0.995705759,,,,,,,903.1105116,902.8661905,904.1097031,926.2215034,,,,,,,0.002686582,0.002821311,0.00307212,0.003744127,,,,,,,0.026684149,0.02675111,0.026905067,0.027217427,,,,,,,0.751866367,1.076713278,1.132574395,2.114631253,,,,,,,0.001396579,0.002152044,0.002162371,0.020391623,,,,,,,0.054173435,0.059422388,0.05942163,0.117902155,,,,,,,0.014817529,0.01967176,0.019729375,0.073681381,,,,,,,0.00737926,0.007377265,0.007387425,0.007658881,,,,,,,0.08503025,0.099731208,0.114593372,0.320593533,,,,,,,0.000827513,0.001274815,0.001280889,0.031020698,,,,,,,0.078642601,0.095760375,0.113393293,0.132185746,,,,,,,0.34680313,0.415544316,0.441500911,1.036607414,,,,,,,918.4161138,918.1669357,919.2979986,940.9956159,,,,,,,0.002857399,0.002996423,0.003254439,0.003943109,,,,,,,0.026986717,0.027049339,0.027193028,0.02747988,,,,,,,0.775050539,1.109140327,1.166562207,2.164306486,,,,,,,0.001438746,0.00221644,0.002227,0.021397104,,,,,,,0.058556511,0.063954755,0.063941674,0.124011222,,,,,,,0.015609294,0.0206057,0.020663046,0.076099732,,,,,,,0.00750432,0.007502284,0.007511528,0.007780994,,,,,,,0.090496865,0.106361511,0.12272448,0.341716195,,,,,,,0.000780066,0.001202083,0.001207604,0.03041669,,,,,,,0.074405474,0.090724372,0.108100714,0.127166992,,,,,,,0.326248545,0.390990062,0.415606373,0.973730161,,,,,,,885.7920279,885.729513,887.4261159,910.6628953,,,,,,,0.002538658,0.002669671,0.002913765,0.003569438,,,,,,,0.026461434,0.026529592,0.026686456,0.027005551,,,,,,,0.725158157,1.038477508,1.093197191,2.04793834,,,,,,,0.001356251,0.002089988,0.002099586,0.019541814,,,,,,,0.050311902,0.055402276,0.055380685,0.112298129,,,,,,,0.014104358,0.018818,0.018868909,0.071415158,,,,,,,0.007237754,0.007237242,0.007251104,0.007530342,,,,,,,0.086030749,0.101158954,0.117297558,0.323261247,,,,,,,0.000822293,0.001266839,0.001272861,0.030941817,,,,,,,0.061790692,0.074730432,0.084699558,0.094005104,,,,,,,0.358008038,0.428937501,0.455163559,1.075140827,,,,,,,932.2196784,931.1861179,931.1273236,950.3620019,,,,,,,0.002822145,0.002960074,0.003216205,0.003900338,,,,,,,0.026923552,0.026986766,0.027131881,0.027422296,,,,,,,0.756893744,1.082609539,1.140275067,2.114050689,,,,,,,0.001429669,0.002202574,0.002213044,0.021213427,,,,,,,0.057677396,0.063043126,0.063031679,0.122777421,,,,,,,0.015447354,0.020413081,0.020470132,0.07560571,,,,,,,0.007617111,0.007608665,0.007608185,0.007858213,,,,,,,0.07514412,0.087117619,0.0963477,0.285561222,,,,,,,0.000796154,0.001226885,0.001232627,0.030577426,,,,,,,0.064073931,0.077723991,0.089691574,0.101785942,,,,,,,0.341230475,0.408896067,0.434078555,1.022674851,,,,,,,906.6599196,905.9866214,906.652792,927.5984064,,,,,,,0.002644283,0.002776985,0.003024095,0.003686697,,,,,,,0.026604509,0.02667094,0.026823728,0.027133382,,,,,,,0.733472706,1.050040009,1.105695808,2.063366143,,,,,,,0.001384224,0.00213311,0.002143094,0.020249523,,,,,,,0.053194591,0.058395345,0.058386971,0.116466632,,,,,,,0.014625864,0.019437501,0.019492238,0.073087304,,,,,,,0.007408264,0.007402761,0.007408204,0.007670154,,,,,,,0.076829665,0.089469908,0.100569857,0.290551849,,,,,,,0.000799708,0.001232151,0.001237982,0.030718986,,,,,,,0.059567956,0.072068225,0.081799839,0.091023189,,,,,,,0.350298493,0.419760243,0.445651681,1.052402817,,,,,,,922.9101477,921.8442568,921.8543092,941.4562571,,,,,,,0.00267049,0.002805742,0.003057316,0.003731173,,,,,,,0.026692469,0.02675884,0.026911368,0.027219517,,,,,,,0.740721208,1.059795327,1.116699163,2.07921824,,,,,,,0.001390403,0.002142264,0.002152402,0.020243333,,,,,,,0.053609853,0.058828362,0.058814112,0.117000989,,,,,,,0.014712328,0.019542711,0.019597556,0.073301526,,,,,,,0.007541043,0.007532332,0.007532413,0.007784616,,,,,,,0.07294776,0.084513382,0.093525556,0.275964112,,,,,,,0.000809365,0.001247182,0.001253245,0.030837163,,,,,,,0.06704588,0.081386466,0.094367433,0.107636489,,,,,,,0.344424562,0.412754182,0.438430044,1.03231747,,,,,,,918.3434672,917.6698099,918.2451778,939.0207392,,,,,,,0.002727701,0.002863495,0.00311627,0.003793198,,,,,,,0.026729144,0.026795525,0.026948141,0.027257553,,,,,,,0.789654444,1.131778574,1.18856888,2.216326834,,,,,,,0.001407192,0.002168396,0.002178938,0.020667817,,,,,,,0.055255464,0.060546543,0.060551981,0.119483725,,,,,,,0.015013866,0.019905259,0.019964863,0.07432325,,,,,,,0.007503728,0.007498223,0.007502926,0.007764583,,,,,,,0.079803279,0.093083841,0.105121657,0.301791508,,,,,,,0.000812919,0.001252215,0.00125827,0.031007953,,,,,,,0.059580677,0.072048403,0.081596283,0.090482254,,,,,,,0.338866644,0.406118699,0.432193381,1.011642948,,,,,,,910.7352394,910.042351,910.3673067,929.9980419,,,,,,,0.002760469,0.002900156,0.003159508,0.003852636,,,,,,,0.026884829,0.02695029,0.027100514,0.027402163,,,,,,,0.770954959,1.103118299,1.160781044,2.159208046,,,,,,,0.001413372,0.002177147,0.002187675,0.020584325,,,,,,,0.055639556,0.060938564,0.060920712,0.119837982,,,,,,,0.015096712,0.020003355,0.020059916,0.074443354,,,,,,,0.007441561,0.0074359,0.007438558,0.00768988,,,,,,,0.072688092,0.084230396,0.093077369,0.27565962,,,, +Commercial truck,B0,2020,,,,0.000837452,0.00123457,0.001237052,0.005326699,,,,,,,0.078257556,0.093923796,0.112157483,0.151346644,,,,,,,0.33391309,0.394089774,0.420377978,0.547651724,,,,,,,826.4062669,826.0341447,821.6338163,848.4024872,,,,,,,0.002678807,0.00280978,0.00307772,0.003704999,,,,,,,0.026517103,0.026582824,0.026876221,0.027375099,,,,,,,0.627285765,0.804974152,0.865894154,1.194752834,,,,,,,0.001456026,0.002146471,0.002150786,0.004169385,,,,,,,0.053802482,0.05858889,0.058454068,0.065614093,,,,,,,0.015099841,0.019534927,0.01954255,0.026376042,,,,,,,0.006752516,0.006749475,0.00671352,0.006944679,,,,,,,0.088627396,0.103152043,0.119883849,0.180868154,,,,,,,0.000842792,0.001242661,0.001245454,0.005332435,,,,,,,0.07511692,0.09004363,0.106657595,0.142439361,,,,,,,0.339351263,0.400505758,0.426981979,0.556454231,,,,,,,837.3975073,836.8046176,831.9790616,858.1906986,,,,,,,0.002702638,0.002832292,0.003098717,0.003722486,,,,,,,0.026492416,0.026558519,0.026853395,0.027356567,,,,,,,0.631183597,0.81026062,0.871255338,1.201855716,,,,,,,0.001465309,0.002160539,0.002165394,0.00421878,,,,,,,0.05473236,0.059560228,0.059463027,0.066736697,,,,,,,0.015268955,0.019735833,0.019751254,0.026641905,,,,,,,0.006842325,0.006837479,0.006798051,0.007024763,,,,,,,0.085948674,0.099783103,0.115003485,0.172380367,,,,,,,0.000868151,0.001279974,0.001282722,0.005421179,,,,,,,0.081024953,0.097157744,0.115403199,0.154472172,,,,,,,0.353054114,0.416626292,0.443857537,0.578087879,,,,,,,851.4846326,850.8237691,845.5189019,871.5400071,,,,,,,0.002875383,0.003009341,0.003282473,0.003919112,,,,,,,0.026805368,0.026867384,0.027144138,0.027610923,,,,,,,0.650795762,0.835250651,0.897863939,1.235552762,,,,,,,0.0015094,0.002225411,0.002230187,0.004411643,,,,,,,0.059145853,0.064112752,0.063988652,0.07146447,,,,,,,0.016075242,0.020674963,0.020686535,0.027797978,,,,,,,0.006957429,0.00695203,0.006908684,0.0071341,,,,,,,0.091643096,0.106594571,0.123315415,0.185345075,,,,,,,0.000818768,0.001207114,0.001209366,0.005240898,,,,,,,0.076559155,0.091923691,0.110011081,0.149042832,,,,,,,0.331953354,0.391765724,0.41774207,0.544561768,,,,,,,821.0841656,820.6772112,816.6696677,843.9597224,,,,,,,0.002554708,0.002680677,0.002939706,0.003548572,,,,,,,0.026266676,0.026333829,0.026633909,0.027148023,,,,,,,0.608703801,0.781409757,0.841167341,1.163440918,,,,,,,0.001423541,0.002098735,0.002102649,0.004043682,,,,,,,0.050876712,0.055557815,0.055426664,0.062411688,,,,,,,0.014548576,0.018885748,0.018891598,0.025558659,,,,,,,0.006709029,0.006705703,0.006672958,0.006908272,,,,,,,0.08698975,0.101234307,0.117840477,0.178134959,,,,,,,0.000862701,0.001271954,0.001274676,0.005399366,,,,,,,0.06350734,0.075629858,0.085867664,0.107939959,,,,,,,0.363608456,0.429098287,0.457232759,0.59683508,,,,,,,864.3708624,863.0345613,856.5319333,880.3344789,,,,,,,0.002839748,0.002972617,0.003243916,0.003876839,,,,,,,0.026740801,0.026803364,0.027082616,0.027554536,,,,,,,0.634930251,0.814896213,0.878040707,1.211505142,,,,,,,0.001499924,0.002211467,0.002216199,0.004373347,,,,,,,0.058260983,0.063197642,0.06307764,0.070508873,,,,,,,0.015910362,0.020481481,0.020493321,0.027558265,,,,,,,0.007062721,0.007051802,0.006998672,0.007206021,,,,,,,0.075656324,0.086874314,0.096141759,0.13910104,,,,,,,0.000835446,0.001231821,0.001234366,0.005292781,,,,,,,0.065852735,0.078657378,0.09104212,0.117807703,,,,,,,0.346697503,0.409160099,0.436089612,0.56901663,,,,,,,840.5224505,839.5625947,834.3027297,859.5956294,,,,,,,0.002660238,0.002787901,0.003050312,0.003665497,,,,,,,0.026414206,0.026479737,0.026772398,0.027272068,,,,,,,0.615208925,0.789794885,0.850796564,1.176322009,,,,,,,0.001452538,0.002141693,0.002146118,0.004176613,,,,,,,0.053755268,0.05853845,0.058429566,0.065616925,,,,,,,0.015075217,0.019502743,0.019514277,0.026339587,,,,,,,0.006867858,0.006860015,0.006817037,0.007036232,,,,,,,0.077420046,0.089278796,0.100567065,0.147801729,,,,,,,0.000839186,0.001237215,0.001239776,0.005323501,,,,,,,0.061185134,0.072889418,0.082918598,0.104603867,,,,,,,0.355541713,0.419633752,0.447593367,0.585140308,,,,,,,855.7816374,854.4550131,848.2665871,872.2870788,,,,,,,0.002687366,0.002817541,0.003084286,0.003708852,,,,,,,0.026501873,0.026567413,0.026859992,0.027358047,,,,,,,0.621150049,0.797315987,0.859725287,1.189035644,,,,,,,0.001459041,0.002151068,0.002155521,0.004190117,,,,,,,0.054181815,0.058982018,0.058859876,0.066058892,,,,,,,0.015164908,0.019610517,0.019620524,0.026473887,,,,,,,0.00699254,0.006981699,0.006931135,0.007140107,,,,,,,0.07337442,0.084204963,0.093287426,0.135033692,,,,,,,0.000849113,0.001252016,0.001254972,0.005350761,,,,,,,0.068937159,0.082401664,0.095835263,0.12480612,,,,,,,0.350070467,0.413172686,0.440533607,0.57497684,,,,,,,851.5996208,850.6220083,845.003473,870.0534715,,,,,,,0.002743724,0.002874421,0.003143033,0.00377143,,,,,,,0.026538961,0.026604518,0.026896883,0.027395371,,,,,,,0.661581295,0.849736227,0.912478764,1.256356504,,,,,,,0.001476299,0.0021768,0.002181941,0.004270079,,,,,,,0.055811807,0.06067854,0.060591812,0.067945021,,,,,,,0.015467044,0.01996808,0.019986429,0.026938003,,,,,,,0.006958369,0.006950381,0.006904471,0.007121839,,,,,,,0.080490047,0.092960462,0.105213091,0.15528635,,,,,,,0.000852975,0.001257427,0.001260133,0.005393218,,,,,,,0.061255971,0.072937387,0.082723956,0.103848212,,,,,,,0.345065368,0.407274332,0.434584521,0.5668644,,,,,,,844.5697791,843.5545583,837.51494,861.4084985,,,,,,,0.00277869,0.002913248,0.003187704,0.003828508,,,,,,,0.026696008,0.026760781,0.027049659,0.027538645,,,,,,,0.647650776,0.831109459,0.893823646,1.231470602,,,,,,,0.001483014,0.002186208,0.002190913,0.00427547,,,,,,,0.056227727,0.061103124,0.060969818,0.068279675,,,,,,,0.015556908,0.020073967,0.020083964,0.027054384,,,,,,,0.006900928,0.006892633,0.006843285,0.007051104,,,,,,,0.073188547,0.084003576,0.092863689,0.134114229,,, +Commercial truck,B0,2025,,,,,0.000838136,0.001236121,0.001236712,0.00124798,,,,,,,0.078989007,0.094402995,0.112271549,0.156637346,,,,,,,0.334664346,0.394608723,0.420522756,0.484500165,,,,,,,815.7774051,815.2076435,809.0333372,818.8744935,,,,,,,0.00268712,0.002815648,0.003080429,0.003727646,,,,,,,0.026434665,0.02653797,0.02689666,0.027464785,,,,,,,0.343748478,0.456870075,0.531147083,0.780700633,,,,,,,0.001457214,0.002149167,0.002150194,0.002169786,,,,,,,0.053851736,0.058629158,0.058437642,0.05823434,,,,,,,0.015112479,0.019554874,0.019537244,0.019621702,,,,,,,0.006665668,0.006661012,0.006610562,0.006690974,,,,,,,0.089191533,0.103453617,0.119769857,0.161042028,,,,,,,0.000843393,0.001244154,0.001245145,0.001257029,,,,,,,0.075778787,0.090478182,0.106762452,0.147263689,,,,,,,0.339946621,0.400929731,0.427167783,0.49147873,,,,,,,826.7095275,825.923413,819.3107259,828.3942265,,,,,,,0.002710377,0.00283782,0.003101533,0.003745554,,,,,,,0.026409853,0.026513594,0.026873965,0.027446738,,,,,,,0.344903012,0.458788858,0.533284476,0.783731549,,,,,,,0.001466355,0.002163134,0.002164856,0.002185519,,,,,,,0.054771734,0.059594998,0.059449301,0.059320256,,,,,,,0.015279541,0.019754517,0.019746596,0.019846485,,,,,,,0.006754995,0.006748571,0.006694536,0.006768758,,,,,,,0.08644756,0.100042448,0.114879531,0.152552797,,,,,,,0.000868798,0.001281546,0.001282394,0.001294337,,,,,,,0.081789382,0.097658747,0.115506939,0.159716904,,,,,,,0.353697004,0.417083862,0.444034019,0.509743271,,,,,,,840.5194894,839.6006517,832.3798229,840.9530749,,,,,,,0.002883979,0.003015423,0.003285164,0.003941567,,,,,,,0.026727146,0.026824839,0.027163365,0.027695086,,,,,,,0.356007563,0.473285443,0.549716897,0.8065432,,,,,,,0.001510525,0.002228143,0.002229616,0.002250382,,,,,,,0.059193095,0.064152456,0.063972976,0.063795392,,,,,,,0.016087263,0.020695038,0.020681444,0.020775736,,,,,,,0.006867833,0.006860326,0.006801325,0.006871376,,,,,,,0.092235329,0.106911637,0.123182752,0.164279197,,,,,,,0.000819443,0.001208627,0.00120903,0.001219682,,,,,,,0.077246256,0.092374206,0.11013582,0.154344385,,,,,,,0.332474867,0.392142678,0.417942974,0.48121226,,,,,,,810.5350724,810.0028218,804.3494205,814.8766664,,,,,,,0.002562405,0.002686125,0.002942439,0.003571298,,,,,,,0.026182834,0.02628818,0.026654866,0.027240391,,,,,,,0.33292753,0.442853792,0.515470427,0.759312032,,,,,,,0.001424714,0.002101365,0.002102066,0.002120586,,,,,,,0.05092339,0.055596235,0.055410621,0.055208387,,,,,,,0.014560803,0.018905098,0.018886387,0.018965028,,,,,,,0.006622832,0.006618483,0.00657229,0.006658307,,,,,,,0.087512312,0.101510739,0.117740997,0.158886434,,,,,,,0.000863343,0.001273513,0.001274351,0.001286207,,,,,,,0.063970075,0.075936788,0.085914299,0.110840505,,,,,,,0.363906814,0.429346218,0.457504489,0.524948331,,,,,,,853.3012363,851.7329943,843.3250917,849.4798659,,,,,,,0.002848172,0.002978586,0.003246624,0.003899367,,,,,,,0.026661996,0.026760504,0.027102037,0.027639587,,,,,,,0.347916586,0.462453415,0.538490493,0.792981219,,,,,,,0.00150104,0.002214177,0.002215633,0.002236247,,,,,,,0.058306855,0.063236506,0.063062291,0.062891504,,,,,,,0.01592216,0.020501322,0.020488299,0.020582604,,,,,,,0.006972273,0.006959457,0.006890757,0.006941048,,,,,,,0.075967477,0.087010296,0.095954799,0.119114049,,,,,,,0.000836074,0.001233324,0.001234049,0.001245376,,,,,,,0.066358703,0.078991662,0.091115487,0.121385439,,,,,,,0.347029647,0.409423977,0.436345396,0.501446595,,,,,,,829.7490663,828.6463359,821.6698278,829.8339792,,,,,,,0.002667914,0.002793367,0.003053084,0.003688341,,,,,,,0.026332263,0.026435141,0.026792811,0.027361864,,,,,,,0.336527584,0.447632792,0.521350849,0.7684596,,,,,,,0.00145363,0.002144306,0.002145565,0.002165259,,,,,,,0.053796796,0.058574309,0.058415073,0.05826007,,,,,,,0.015086336,0.019521672,0.019509433,0.019600619,,,,,,,0.006779828,0.006770818,0.006713814,0.006780523,,,,,,,0.077772772,0.089444466,0.100414555,0.128578934,,,,,,,0.000839842,0.001238746,0.001239447,0.001250866,,,,,,,0.061615517,0.073175195,0.082970901,0.107469532,,,,,,,0.355733415,0.419813017,0.447894267,0.515088281,,,,,,,844.880019,843.3662662,835.359711,841.9276988,,,,,,,0.002695455,0.002823273,0.003087028,0.003731612,,,,,,,0.026419759,0.026522733,0.026880387,0.027447546,,,,,,,0.3402873,0.452450154,0.527398325,0.77813436,,,,,,,0.001460182,0.00215373,0.002154948,0.002174801,,,,,,,0.054227581,0.059020347,0.05884438,0.058665579,,,,,,,0.015176837,0.019630027,0.019615436,0.019704478,,,,,,,0.006903463,0.006891095,0.006825672,0.00687934,,,,,,,0.073656534,0.084323703,0.09311062,0.115886262,,,,,,,0.000849693,0.001253502,0.001254672,0.00126693,,,,,,,0.069488669,0.082765478,0.095914151,0.128680839,,,,,,,0.350464944,0.41347542,0.44077792,0.506859517,,,,,,,840.7625507,839.586586,832.1421826,839.8008268,,,,,,,0.002751457,0.002879962,0.00314588,0.003794668,,,,,,,0.026457065,0.026559973,0.026917272,0.027484693,,,,,,,0.359595326,0.478972601,0.556047961,0.815651387,,,,,,,0.001477308,0.002179384,0.002181418,0.002202731,,,,,,,0.055848782,0.060712112,0.060578774,0.060471491,,,,,,,0.015477118,0.019986551,0.019981936,0.020088217,,,,,,,0.006869818,0.00686021,0.006799382,0.00686196,,,,,,,0.08088521,0.093152251,0.105061682,0.13553,,,,,,,0.000853653,0.001258996,0.001259794,0.001271628,,,,,,,0.061709026,0.073237519,0.082765942,0.106616406,,,,,,,0.345740928,0.407749332,0.434757307,0.50080875,,,,,,,833.8000029,832.5352522,824.5954518,831.1964207,,,,,,,0.002787388,0.002919387,0.003190413,0.003851175,,,,,,,0.026614584,0.026716502,0.02706975,0.027626522,,,,,,,0.354738565,0.47146799,0.547895103,0.804594854,,,,,,,0.001484192,0.002188938,0.002190323,0.0022109,,,,,,,0.056277796,0.061144171,0.060953424,0.060757612,,,,,,,0.015569581,0.020094195,0.020078671,0.020169579,,,,,,,0.00681293,0.006802595,0.006737719,0.006791654,,,,,,,0.073494162,0.084136972,0.092677333,0.11484897,, +Commercial truck,B0,2030,,,,,,0.000838744,0.001237642,0.001237922,0.001247064,,,,,,,0.079398672,0.094512239,0.112486698,0.156722219,,,,,,,0.335029779,0.394617016,0.420709673,0.48475825,,,,,,,818.1041717,817.3597078,810.7344375,808.8415577,,,,,,,0.002691796,0.002815878,0.003082702,0.003729562,,,,,,,0.026380518,0.026486348,0.026860388,0.027500689,,,,,,,0.327225743,0.444838599,0.520519983,0.667961087,,,,,,,0.001458272,0.002151812,0.002152298,0.002168193,,,,,,,0.053885886,0.058673109,0.058469478,0.058204556,,,,,,,0.015122541,0.019574992,0.019552861,0.019609181,,,,,,,0.006684681,0.006678594,0.006624461,0.006608995,,,,,,,0.089657918,0.103636746,0.120035286,0.160915136,,,,,,,0.000843949,0.00124561,0.00124631,0.001256158,,,,,,,0.076149081,0.090576056,0.106956159,0.147346429,,,,,,,0.34021173,0.400836001,0.427279539,0.491810154,,,,,,,829.0619012,828.1044434,821.0346515,818.2902313,,,,,,,0.002714683,0.002837745,0.003103548,0.00374773,,,,,,,0.02635563,0.026461893,0.026837594,0.027482874,,,,,,,0.328157197,0.446579997,0.522494589,0.669960866,,,,,,,0.001467322,0.002165665,0.002166883,0.002184004,,,,,,,0.054799381,0.059632619,0.05947677,0.05929481,,,,,,,0.01528827,0.019773196,0.019761226,0.019834952,,,,,,,0.006774214,0.006766391,0.006708624,0.0066862,,,,,,,0.086878263,0.100215987,0.115125832,0.15242214,,,,,,,0.00086939,0.001283083,0.001283618,0.001293421,,,,,,,0.082220512,0.097789394,0.115741252,0.159775122,,,,,,,0.353988995,0.417007691,0.444170845,0.510042859,,,,,,,843.0021436,841.8978774,834.1763971,830.5385792,,,,,,,0.002888826,0.003015748,0.0032876,0.003943267,,,,,,,0.026675711,0.026775862,0.02712906,0.027728717,,,,,,,0.338813179,0.460734855,0.538623614,0.68944462,,,,,,,0.001511554,0.002230814,0.002231745,0.00224879,,,,,,,0.059226046,0.064195606,0.064004257,0.063766558,,,,,,,0.016097008,0.020715188,0.020697124,0.020763342,,,,,,,0.006888119,0.006879096,0.006816005,0.00678628,,,,,,,0.092726113,0.107118865,0.123468726,0.16412046,,,,,,,0.000820041,0.001210114,0.001210214,0.00121878,,,,,,,0.077627744,0.092457915,0.110327233,0.154459114,,,,,,,0.332694938,0.392009454,0.418019237,0.481578258,,,,,,,812.7475226,812.0502973,805.9859131,805.0299996,,,,,,,0.002566704,0.00268613,0.002944416,0.003573505,,,,,,,0.026127821,0.026235664,0.026617801,0.027277425,,,,,,,0.316772444,0.431055739,0.505043068,0.649487226,,,,,,,0.001425754,0.002103951,0.002104124,0.002119018,,,,,,,0.050955784,0.055638229,0.055441051,0.05517949,,,,,,,0.01457055,0.01892464,0.018901575,0.018952756,,,,,,,0.00664091,0.006635213,0.006585661,0.006577851,,,,,,,0.087949797,0.101667627,0.11798286,0.158790322,,,,,,,0.00086393,0.001275037,0.001275565,0.001285297,,,,,,,0.064233984,0.076037281,0.086065111,0.110858147,,,,,,,0.36397397,0.429031527,0.457473455,0.525410677,,,,,,,855.8088382,854.0668681,845.1472286,839.0201342,,,,,,,0.002852913,0.002978839,0.003248976,0.003901151,,,,,,,0.026610205,0.026711161,0.027067445,0.027673576,,,,,,,0.331121187,0.450097423,0.527560151,0.678448042,,,,,,,0.001502061,0.002216826,0.002217746,0.002234665,,,,,,,0.058338909,0.06327869,0.063092911,0.062863209,,,,,,,0.015931753,0.020521231,0.020503804,0.020570336,,,,,,,0.006992762,0.006978529,0.006905646,0.006855582,,,,,,,0.07630404,0.087190674,0.096164169,0.11891636,,,,,,,0.000836645,0.001234794,0.001235223,0.001244492,,,,,,,0.066642939,0.079075611,0.091267167,0.121442703,,,,,,,0.347124279,0.409152563,0.436329625,0.501899789,,,,,,,832.0581685,830.7937365,823.3716227,819.7734064,,,,,,,0.00267219,0.002793314,0.003055069,0.003690522,,,,,,,0.026278462,0.026383811,0.026756639,0.027397836,,,,,,,0.320178575,0.435638985,0.510742915,0.657305618,,,,,,,0.001454624,0.002146862,0.002147607,0.002163721,,,,,,,0.053825868,0.058613228,0.058443384,0.058233543,,,,,,,0.015095401,0.019540653,0.019524256,0.01958882,,,,,,,0.006798696,0.006788366,0.006727719,0.006698318,,,,,,,0.078122892,0.089604495,0.100621531,0.128425365,,,,,,,0.000840433,0.001240246,0.001240642,0.001249963,,,,,,,0.061859105,0.073258638,0.083106037,0.107502738,,,,,,,0.355733067,0.419430899,0.447808145,0.515611121,,,,,,,847.300993,845.6221524,837.1339559,831.6633918,,,,,,,0.002699989,0.002823391,0.003089199,0.003733622,,,,,,,0.026365825,0.026471303,0.026844221,0.027483374,,,,,,,0.323812285,0.440317293,0.516664292,0.665900759,,,,,,,0.001461209,0.002156337,0.002157026,0.002173233,,,,,,,0.054259448,0.059062044,0.058874637,0.058637282,,,,,,,0.01518644,0.019649647,0.019630711,0.019692283,,,,,,,0.006923245,0.006909527,0.006840172,0.006795471,,,,,,,0.073971892,0.084486122,0.093304171,0.115706375,,,,,,,0.000850237,0.001254947,0.001255831,0.001266068,,,,,,,0.069798789,0.082857563,0.096080479,0.128738466,,,,,,,0.350597601,0.413236207,0.440790535,0.50728864,,,,,,,843.1724378,841.8269852,833.9068687,829.5568256,,,,,,,0.002755756,0.00287985,0.003147891,0.003796862,,,,,,,0.026403284,0.026508687,0.026881213,0.027520475,,,,,,,0.341840158,0.466005661,0.544578613,0.695891425,,,,,,,0.001478253,0.002181896,0.002183434,0.002201233,,,,,,,0.05587491,0.060748264,0.060605252,0.060447109,,,,,,,0.015485533,0.020004935,0.01999638,0.020076911,,,,,,,0.00688951,0.006878518,0.006813803,0.006778258,,,,,,,0.081261864,0.093322202,0.105283852,0.135373131,,,,,,,0.00085426,0.001260534,0.001261016,0.001270707,,,,,,,0.061968078,0.073340632,0.082915334,0.106628982,,,,,,,0.346053175,0.407689962,0.434905708,0.501104681,,,,,,,836.2721824,834.8354096,826.3912101,820.945701,,,,,,,0.002792298,0.002919743,0.00319287,0.003852916,,,,,,,0.026561058,0.026665519,0.027034023,0.027661666,,,,,,,0.337667822,0.459013382,0.53689007,0.688160235,,,,,,,0.001485248,0.00219161,0.002192449,0.002209299,,,,,,,0.056312528,0.06118887,0.060985791,0.060727632,,,,,,,0.015579701,0.020114551,0.020094473,0.020156991,,,,,,,0.006833131,0.00682139,0.006752392,0.006707897,,,,,,,0.073824549,0.084318172,0.092884071,0.114650794, +Commercial truck,B0,2035,,,,,,,0.000839704,0.00123821,0.001238335,0.001247354,,,,,,,0.079563875,0.094695908,0.112530948,0.156548927,,,,,,,0.335255347,0.394825145,0.42073678,0.484506477,,,,,,,818.6746407,818.134258,811.3480066,807.6372779,,,,,,,0.002693996,0.002818218,0.003083117,0.003726823,,,,,,,0.02637056,0.026471964,0.02684919,0.027491132,,,,,,,0.327557327,0.44511146,0.520647009,0.632575285,,,,,,,0.001459941,0.002152799,0.002153017,0.002168697,,,,,,,0.053901836,0.058686391,0.058479302,0.058211896,,,,,,,0.015133799,0.019582112,0.019558067,0.019612889,,,,,,,0.00668934,0.006684925,0.006629476,0.006599155,,,,,,,0.089832702,0.103836283,0.120100128,0.160747232,,,,,,,0.000844907,0.00124616,0.001246712,0.001256439,,,,,,,0.076300106,0.090742777,0.1069957,0.147186964,,,,,,,0.340418896,0.401013041,0.427283871,0.491540797,,,,,,,829.6381782,828.8877707,821.6570475,817.0926812,,,,,,,0.002716798,0.002839971,0.003103889,0.003744949,,,,,,,0.026345669,0.02644751,0.026826377,0.027473276,,,,,,,0.328475491,0.446828612,0.52260526,0.634225196,,,,,,,0.001468988,0.002166622,0.002167581,0.002184494,,,,,,,0.05481427,0.059644195,0.059485297,0.059301072,,,,,,,0.01529937,0.019779934,0.019766148,0.019838439,,,,,,,0.006778922,0.00677279,0.00671371,0.006676414,,,,,,,0.087040111,0.100400069,0.115186621,0.152267411,,,,,,,0.000870366,0.001283661,0.001284039,0.001293718,,,,,,,0.08239094,0.097980402,0.1157911,0.159607696,,,,,,,0.354204747,0.417196391,0.444181313,0.509775157,,,,,,,843.6003202,842.7125524,834.8186986,829.2894284,,,,,,,0.002891089,0.003018168,0.003288058,0.003940538,,,,,,,0.02666623,0.026762185,0.027118454,0.027719719,,,,,,,0.339148851,0.461003584,0.538747347,0.652504465,,,,,,,0.001513251,0.00223182,0.002232478,0.002249306,,,,,,,0.059242049,0.064208806,0.064014012,0.063773817,,,,,,,0.016108426,0.020722404,0.020702399,0.020767101,,,,,,,0.006893008,0.006885752,0.006821254,0.006776074,,,,,,,0.092906637,0.107326405,0.123539638,0.163957613,,,,,,,0.000820993,0.001210667,0.001210619,0.001219066,,,,,,,0.077786133,0.092631756,0.110364579,0.154279892,,,,,,,0.3328907,0.392169834,0.418013424,0.481304452,,,,,,,813.2999344,812.7984289,806.5827536,803.8494046,,,,,,,0.002568779,0.002688315,0.002944752,0.003570767,,,,,,,0.026117721,0.026221048,0.026606378,0.027267594,,,,,,,0.317076085,0.431287263,0.505140138,0.615010712,,,,,,,0.00142741,0.002104912,0.002104828,0.002119515,,,,,,,0.050971252,0.055650838,0.055450398,0.055186449,,,,,,,0.01458167,0.018931534,0.018906638,0.018956375,,,,,,,0.006645424,0.006641326,0.006590539,0.006568204,,,,,,,0.08811785,0.101857433,0.118040909,0.15861732,,,,,,,0.000864903,0.001275611,0.001275983,0.001285591,,,,,,,0.064339287,0.076152889,0.086098718,0.110767099,,,,,,,0.364147454,0.429151562,0.457431874,0.525100421,,,,,,,856.4117957,854.8886866,845.7994769,837.7923111,,,,,,,0.002855144,0.002981218,0.003249411,0.003898417,,,,,,,0.026600652,0.026697386,0.027056742,0.027664488,,,,,,,0.331434657,0.450329387,0.527649656,0.642101787,,,,,,,0.001503752,0.002217824,0.002218472,0.002235177,,,,,,,0.058354693,0.0632916,0.063102411,0.06287029,,,,,,,0.015943108,0.020528367,0.020509013,0.02057405,,,,,,,0.006997688,0.006985243,0.006910977,0.00684555,,,,,,,0.076424345,0.087328576,0.096220383,0.118825003,,,,,,,0.000837604,0.001235347,0.001235627,0.001244777,,,,,,,0.066760078,0.079203126,0.091298736,0.121324542,,,,,,,0.347299179,0.409276635,0.436294727,0.501600047,,,,,,,832.6279199,831.5664616,823.9896315,818.5860471,,,,,,,0.002674279,0.002795512,0.003055403,0.003687769,,,,,,,0.026268591,0.026369516,0.026745497,0.027388274,,,,,,,0.320477252,0.435856047,0.510825637,0.622227482,,,,,,,0.00145629,0.002147822,0.002148309,0.002164218,,,,,,,0.053840934,0.05862508,0.058452155,0.058240012,,,,,,,0.01510653,0.019547444,0.019529236,0.019592369,,,,,,,0.006803353,0.006794679,0.006732768,0.006688616,,,,,,,0.078253204,0.089752066,0.100674885,0.128309188,,,,,,,0.000841393,0.001240807,0.001241052,0.001250252,,,,,,,0.061958889,0.073366914,0.083135247,0.107410065,,,,,,,0.355891298,0.419528107,0.447750567,0.515289045,,,,,,,847.8901268,846.423421,837.7739212,830.4673768,,,,,,,0.002702152,0.002825684,0.003089586,0.003730873,,,,,,,0.026355912,0.026456976,0.026833064,0.027473839,,,,,,,0.324112051,0.440530975,0.516740044,0.630328626,,,,,,,0.001462878,0.002157314,0.002157739,0.002173734,,,,,,,0.054275,0.059074714,0.058884004,0.058644249,,,,,,,0.015197647,0.019656633,0.019635825,0.019695925,,,,,,,0.006928058,0.006916073,0.0068454,0.006785698,,,,,,,0.074086649,0.08461663,0.093355901,0.115613943,,,,,,,0.000851197,0.001255495,0.001256231,0.001266349,,,,,,,0.069925428,0.082996384,0.096115323,0.128611488,,,,,,,0.350781354,0.413373801,0.440763561,0.506991468,,,,,,,843.7591138,842.6253165,834.5428236,828.3555303,,,,,,,0.002757879,0.002882083,0.003148228,0.00379406,,,,,,,0.026393397,0.026494404,0.026870085,0.027510963,,,,,,,0.342149598,0.466225593,0.544671418,0.658163802,,,,,,,0.001479923,0.00218285,0.002184129,0.00220172,,,,,,,0.055889553,0.060759447,0.060613476,0.060453119,,,,,,,0.015496627,0.020011603,0.02000125,0.020080354,,,,,,,0.006894303,0.006885039,0.006818998,0.006768443,,,,,,,0.081401468,0.093480927,0.105340701,0.135248721,,,,,,,0.000855227,0.00126111,0.001261435,0.001271,,,,,,,0.06207036,0.073453418,0.082949074,0.106543121,,,,,,,0.346271517,0.407884792,0.434919843,0.50083771,,,,,,,836.8672864,835.6455273,827.0343167,819.7467869,,,,,,,0.002794581,0.002922183,0.003193335,0.003850167,,,,,,,0.026551217,0.026651303,0.027023003,0.027652297,,,,,,,0.338006898,0.459288476,0.537017426,0.651481066,,,,,,,0.001486929,0.002192612,0.002193178,0.002209807,,,,,,,0.056328734,0.061202474,0.060995855,0.060735134,,,,,,,0.015591059,0.020121797,0.020099766,0.020160738,,,,,,,0.006837991,0.006828007,0.006757649,0.006698102,,,,,,,0.073941614,0.084452881,0.092939959,0.114564457 +Commercial truck,B0,2040,,,,,,,,0.000839686,0.001238974,0.001239188,,,,,,,,0.079692586,0.094688625,0.112564461,,,,,,,,0.335349372,0.394762159,0.420713338,,,,,,,,819.4292752,819.2440696,812.5882558,,,,,,,,0.002695549,0.002817284,0.003082833,,,,,,,,0.026354048,0.026444938,0.026820691,,,,,,,,0.327834004,0.445193731,0.520711766,,,,,,,,0.00145991,0.002154128,0.0021545,,,,,,,,0.053909517,0.05870899,0.058503344,,,,,,,,0.01513456,0.019592285,0.019569272,,,,,,,,0.006695507,0.006693994,0.006639608,,,,,,,,0.089981232,0.10387247,0.120179672,,,,,,,,0.000844872,0.001246889,0.001247529,,,,,,,,0.076416076,0.090735318,0.107024359,,,,,,,,0.34048156,0.400897063,0.42720299,,,,,,,,830.4005103,830.0118428,822.9148774,,,,,,,,0.002718237,0.00283889,0.003103424,,,,,,,,0.026329138,0.02642042,0.026797788,,,,,,,,0.328733385,0.446879578,0.522629623,,,,,,,,0.001468926,0.00216789,0.002169002,,,,,,,,0.054819945,0.059663417,0.059505862,,,,,,,,0.015299708,0.019789333,0.019776565,,,,,,,,0.006785152,0.006781977,0.006723988,,,,,,,,0.087177106,0.100436625,0.115262247,,,,,,,,0.000870337,0.001284432,0.0012849,,,,,,,,0.082526081,0.097983784,0.115838803,,,,,,,,0.354274899,0.417087292,0.444114762,,,,,,,,844.4023335,843.8990248,836.1345478,,,,,,,,0.002892698,0.003017261,0.003287859,,,,,,,,0.026650504,0.026736515,0.027091489,,,,,,,,0.339427617,0.461076171,0.538804011,,,,,,,,0.001513201,0.002233161,0.002233974,,,,,,,,0.059249266,0.064230951,0.064037521,,,,,,,,0.016109023,0.02073258,0.020713604,,,,,,,,0.00689956,0.006895448,0.006832005,,,,,,,,0.093062548,0.107374733,0.123634538,,,,,,,,0.000820975,0.001211414,0.001211454,,,,,,,,0.077906159,0.0926121,0.110381238,,,,,,,,0.332939916,0.392035154,0.417908865,,,,,,,,814.020348,813.8526948,807.7702534,,,,,,,,0.00257021,0.002687306,0.002944313,,,,,,,,0.026100958,0.026193563,0.026577274,,,,,,,,0.317315802,0.431312147,0.505132964,,,,,,,,0.001427377,0.002106211,0.00210628,,,,,,,,0.05097842,0.055672418,0.055473432,,,,,,,,0.014582361,0.018941409,0.018917544,,,,,,,,0.006651311,0.006649941,0.006600241,,,,,,,,0.088257483,0.101880796,0.118103632,,,,,,,,0.000864874,0.001276375,0.001276837,,,,,,,,0.064420093,0.076168979,0.086139995,,,,,,,,0.364148045,0.428917631,0.45723434,,,,,,,,857.2221378,856.0954577,847.1380127,,,,,,,,0.002856719,0.002980281,0.003249164,,,,,,,,0.026584827,0.026671519,0.02702955,,,,,,,,0.331680295,0.450327432,0.52762425,,,,,,,,0.001503702,0.002219153,0.002219956,,,,,,,,0.058361666,0.063313225,0.063125416,,,,,,,,0.015943669,0.020538408,0.020520089,,,,,,,,0.007004309,0.006995103,0.006921913,,,,,,,,0.076530154,0.08738935,0.096310075,,,,,,,,0.000837574,0.001236084,0.001236452,,,,,,,,0.066847994,0.0792034,0.091325656,,,,,,,,0.347308897,0.409068416,0.436115783,,,,,,,,833.3776216,832.6742717,825.2314317,,,,,,,,0.002675705,0.002794459,0.003054947,,,,,,,,0.026252171,0.026342634,0.026717087,,,,,,,,0.320706546,0.435847971,0.510784105,,,,,,,,0.001456238,0.002149104,0.002149745,,,,,,,,0.053847029,0.058645012,0.058473461,,,,,,,,0.015106972,0.019557012,0.01953983,,,,,,,,0.006809477,0.006803731,0.006742916,,,,,,,,0.078363965,0.089795536,0.100748693,,,,,,,,0.000841369,0.001241561,0.001241893,,,,,,,,0.062033481,0.073375197,0.083166279,,,,,,,,0.355871793,0.419260578,0.447512934,,,,,,,,848.6742683,847.5891264,839.0743091,,,,,,,,0.00270366,0.002824701,0.003089237,,,,,,,,0.026339451,0.026430049,0.026804657,,,,,,,,0.324339321,0.440502205,0.516679697,,,,,,,,0.001462836,0.002158623,0.002159202,,,,,,,,0.054281963,0.059096133,0.058906842,,,,,,,,0.015198255,0.019666545,0.019646763,,,,,,,,0.006934466,0.006925599,0.006856024,,,,,,,,0.074185993,0.084669031,0.093435096,,,,,,,,0.000851157,0.001256218,0.001257042,,,,,,,,0.070021689,0.082997108,0.096145799,,,,,,,,0.350802807,0.413180928,0.44060323,,,,,,,,844.5392603,843.7815965,835.8337526,,,,,,,,0.002759317,0.002880974,0.003147745,,,,,,,,0.026376993,0.026467537,0.026841738,,,,,,,,0.342390141,0.466238627,0.544647185,,,,,,,,0.001479852,0.002184107,0.00218554,,,,,,,,0.055894753,0.060777894,0.060633226,,,,,,,,0.015496851,0.020020845,0.020011505,,,,,,,,0.00690068,0.006894489,0.006829546,,,,,,,,0.08152074,0.093526011,0.105419076,,,,,,,,0.000855207,0.001261882,0.001262296,,,,,,,,0.062149687,0.073472491,0.082992474,,,,,,,,0.346348927,0.407784176,0.434861814,,,,,,,,837.6661533,836.8347524,828.3539816,,,,,,,,0.002796211,0.002921286,0.003193142,,,,,,,,0.026534889,0.0266246,0.026994928,,,,,,,,0.338289428,0.459365698,0.537080048,,,,,,,,0.001486893,0.002193954,0.002194675,,,,,,,,0.05633658,0.061225422,0.061020262,,,,,,,,0.015591816,0.020132081,0.020111091,,,,,,,,0.00684452,0.006837726,0.006768431,,,,,,,,0.074045494,0.084515569,0.093030681 +Commercial truck,B0,2045,,,,,,,,,0.000839816,0.001238669,,,,,,,,,0.079761236,0.094767819,,,,,,,,,0.335486667,0.394890658,,,,,,,,,818.9833266,818.801774,,,,,,,,,0.002696936,0.002818918,,,,,,,,,0.026367524,0.026458694,,,,,,,,,0.328028532,0.445387799,,,,,,,,,0.001460135,0.002153597,,,,,,,,,0.053903928,0.058697942,,,,,,,,,0.015135134,0.019587975,,,,,,,,,0.006691863,0.00669038,,,,,,,,,0.090028652,0.103929655,,,,,,,,,0.000845017,0.001246602,,,,,,,,,0.076479362,0.0908077,,,,,,,,,0.340640935,0.401050978,,,,,,,,,829.9485089,829.5626832,,,,,,,,,0.002719683,0.002840583,,,,,,,,,0.026342651,0.02643422,,,,,,,,,0.32893786,0.447087116,,,,,,,,,0.001469178,0.002167391,,,,,,,,,0.054816047,0.059654107,,,,,,,,,0.015300647,0.019785422,,,,,,,,,0.006781458,0.006778307,,,,,,,,,0.087219364,0.100487264,,,,,,,,,0.000870474,0.001284127,,,,,,,,,0.08259111,0.098058138,,,,,,,,,0.35443461,0.417240875,,,,,,,,,843.9174014,843.4172833,,,,,,,,,0.002894104,0.003018908,,,,,,,,,0.026663306,0.026749562,,,,,,,,,0.339629115,0.461276838,,,,,,,,,0.001513438,0.002232632,,,,,,,,,0.059244059,0.064220214,,,,,,,,,0.016109709,0.020728316,,,,,,,,,0.006895598,0.006891511,,,,,,,,,0.093105504,0.107426331,,,,,,,,,0.000821107,0.001211115,,,,,,,,,0.077978817,0.092696265,,,,,,,,,0.333104804,0.392196085,,,,,,,,,813.6049861,813.4413577,,,,,,,,,0.002571587,0.00268893,,,,,,,,,0.026114666,0.026207568,,,,,,,,,0.317524517,0.431528197,,,,,,,,,0.001427607,0.002105691,,,,,,,,,0.050973244,0.055661809,,,,,,,,,0.014583014,0.018937212,,,,,,,,,0.006647917,0.00664658,,,,,,,,,0.088309345,0.101943335,,,,,,,,,0.000865011,0.001276073,,,,,,,,,0.064453181,0.076203757,,,,,,,,,0.364360469,0.429133393,,,,,,,,,856.7267328,855.6025248,,,,,,,,,0.002858128,0.002981933,,,,,,,,,0.02659771,0.026684668,,,,,,,,,0.331904147,0.450560701,,,,,,,,,0.00150394,0.002218628,,,,,,,,,0.058356656,0.063302722,,,,,,,,,0.015944392,0.020534206,,,,,,,,,0.007000262,0.006991076,,,,,,,,,0.076543188,0.087403889,,,,,,,,,0.000837714,0.001235792,,,,,,,,,0.066894075,0.079254451,,,,,,,,,0.347506528,0.409267669,,,,,,,,,832.9341017,832.234244,,,,,,,,,0.002677119,0.002796121,,,,,,,,,0.026265568,0.026356332,,,,,,,,,0.320927512,0.436080225,,,,,,,,,0.001456482,0.002148597,,,,,,,,,0.053842721,0.05863532,,,,,,,,,0.015107815,0.01955301,,,,,,,,,0.006805855,0.006800136,,,,,,,,,0.078390414,0.089826548,,,,,,,,,0.000841504,0.001241261,,,,,,,,,0.062068687,0.073412671,,,,,,,,,0.356096436,0.419491707,,,,,,,,,848.2014403,847.1185454,,,,,,,,,0.002705064,0.002826351,,,,,,,,,0.026352879,0.026443763,,,,,,,,,0.324569924,0.440746416,,,,,,,,,0.001463071,0.002158102,,,,,,,,,0.054276971,0.05908569,,,,,,,,,0.015198959,0.019662371,,,,,,,,,0.006930602,0.006921754,,,,,,,,,0.074201587,0.084686717,,,,,,,,,0.000851306,0.001255935,,,,,,,,,0.070071232,0.083052369,,,,,,,,,0.350995829,0.413374388,,,,,,,,,844.0711243,843.3159804,,,,,,,,,0.002760784,0.00288269,,,,,,,,,0.026390397,0.026481221,,,,,,,,,0.342612305,0.466467457,,,,,,,,,0.001480112,0.002183615,,,,,,,,,0.055891255,0.060769006,,,,,,,,,0.015497885,0.020017028,,,,,,,,,0.006896854,0.006890683,,,,,,,,,0.08154981,0.093560323,,,,,,,,,0.000855337,0.001261575,,,,,,,,,0.062179943,0.073503999,,,,,,,,,0.346504507,0.40793425,,,,,,,,,837.1777316,836.349017,,,,,,,,,0.002797614,0.002922935,,,,,,,,,0.026548209,0.026638188,,,,,,,,,0.338490253,0.459566044,,,,,,,,,0.00148712,0.00219342,,,,,,,,,0.056330891,0.061214262,,,,,,,,,0.015592389,0.020127743,,,,,,,,,0.00684053,0.006833756,,,,,,,,,0.074056231,0.084527444 +Commercial truck,B0,2050,,,,,,,,,,0.000839869,,,,,,,,,,0.079802703,,,,,,,,,,0.335539177,,,,,,,,,,819.1036501,,,,,,,,,,0.002697529,,,,,,,,,,0.026366355,,,,,,,,,,0.328133903,,,,,,,,,,0.001460228,,,,,,,,,,0.053904845,,,,,,,,,,0.015135763,,,,,,,,,,0.006692847,,,,,,,,,,0.090071926,,,,,,,,,,0.000845069,,,,,,,,,,0.076516983,,,,,,,,,,0.340690623,,,,,,,,,,830.0695637,,,,,,,,,,0.002720261,,,,,,,,,,0.026341476,,,,,,,,,,0.329040851,,,,,,,,,,0.001469268,,,,,,,,,,0.054816816,,,,,,,,,,0.015301243,,,,,,,,,,0.00678245,,,,,,,,,,0.087259142,,,,,,,,,,0.000870529,,,,,,,,,,0.082633278,,,,,,,,,,0.354486434,,,,,,,,,,844.0404222,,,,,,,,,,0.002894712,,,,,,,,,,0.026662173,,,,,,,,,,0.339735912,,,,,,,,,,0.001513535,,,,,,,,,,0.059244982,,,,,,,,,,0.01611036,,,,,,,,,,0.006896603,,,,,,,,,,0.093149581,,,,,,,,,,0.000821158,,,,,,,,,,0.078019051,,,,,,,,,,0.333152291,,,,,,,,,,813.7242995,,,,,,,,,,0.002572151,,,,,,,,,,0.02611348,,,,,,,,,,0.317624273,,,,,,,,,,0.001427696,,,,,,,,,,0.050974057,,,,,,,,,,0.014583606,,,,,,,,,,0.006648892,,,,,,,,,,0.08835149,,,,,,,,,,0.000865066,,,,,,,,,,0.064477495,,,,,,,,,,0.364407077,,,,,,,,,,856.8505919,,,,,,,,,,0.002858729,,,,,,,,,,0.026596572,,,,,,,,,,0.332007475,,,,,,,,,,0.001504035,,,,,,,,,,0.058357556,,,,,,,,,,0.015945033,,,,,,,,,,0.007001273,,,,,,,,,,0.076570746,,,,,,,,,,0.000837766,,,,,,,,,,0.066922317,,,,,,,,,,0.347551811,,,,,,,,,,833.0546201,,,,,,,,,,0.002677688,,,,,,,,,,0.026264399,,,,,,,,,,0.321026971,,,,,,,,,,0.001456572,,,,,,,,,,0.053843496,,,,,,,,,,0.015108406,,,,,,,,,,0.006806838,,,,,,,,,,0.078421483,,,,,,,,,,0.000841557,,,,,,,,,,0.062091981,,,,,,,,,,0.356140719,,,,,,,,,,848.3243124,,,,,,,,,,0.00270565,,,,,,,,,,0.026351713,,,,,,,,,,0.324670608,,,,,,,,,,0.001463163,,,,,,,,,,0.054277821,,,,,,,,,,0.015199574,,,,,,,,,,0.006931605,,,,,,,,,,0.07422816,,,,,,,,,,0.000851358,,,,,,,,,,0.07010196,,,,,,,,,,0.351042912,,,,,,,,,,844.1934066,,,,,,,,,,0.002761366,,,,,,,,,,0.026389227,,,,,,,,,,0.342714778,,,,,,,,,,0.001480203,,,,,,,,,,0.055892001,,,,,,,,,,0.01549848,,,,,,,,,,0.006897852,,,,,,,,,,0.081583244,,,,,,,,,,0.000855392,,,,,,,,,,0.062203404,,,,,,,,,,0.346557162,,,,,,,,,,837.2996672,,,,,,,,,,0.002798226,,,,,,,,,,0.026547038,,,,,,,,,,0.338597875,,,,,,,,,,0.001487215,,,,,,,,,,0.056331848,,,,,,,,,,0.015593032,,,,,,,,,,0.006841524,,,,,,,,,,0.074082877 +Commercial truck,B20,1990,0.542391741,,,,,,,,,,0.003530721,,,,,,,,,,3.869862078,,,,,,,,,,1016.354954,,,,,,,,,,0.003297379,,,,,,,,,,0.025841526,,,,,,,,,,18.37363846,,,,,,,,,,0.3340646,,,,,,,,,,1.159283108,,,,,,,,,,1.032156242,,,,,,,,,,0.081539152,,,,,,,,,,1.514956963,,,,,,,,,,0.541586481,,,,,,,,,,0.003534175,,,,,,,,,,3.923706032,,,,,,,,,,1026.396048,,,,,,,,,,0.003307677,,,,,,,,,,0.025836787,,,,,,,,,,18.4915786,,,,,,,,,,0.337867817,,,,,,,,,,1.165210759,,,,,,,,,,1.036960075,,,,,,,,,,0.082344733,,,,,,,,,,1.515574808,,,,,,,,,,0.54529776,,,,,,,,,,0.003732624,,,,,,,,,,4.117761979,,,,,,,,,,1038.149385,,,,,,,,,,0.003506211,,,,,,,,,,0.026166535,,,,,,,,,,18.70033928,,,,,,,,,,0.357495399,,,,,,,,,,1.204383373,,,,,,,,,,1.069645132,,,,,,,,,,0.083287659,,,,,,,,,,1.597660615,,,,,,,,,,0.53439767,,,,,,,,,,0.003425969,,,,,,,,,,3.784348978,,,,,,,,,,1009.125923,,,,,,,,,,0.003144348,,,,,,,,,,0.02559436,,,,,,,,,,17.846655,,,,,,,,,,0.323906393,,,,,,,,,,1.131780277,,,,,,,,,,1.009084803,,,,,,,,,,0.08095919,,,,,,,,,,1.472326156,,,,,,,,,,0.54358378,,,,,,,,,,0.00356383,,,,,,,,,,4.15994883,,,,,,,,,,1043.056929,,,,,,,,,,0.003464212,,,,,,,,,,0.02609989,,,,,,,,,,17.89201014,,,,,,,,,,0.354120765,,,,,,,,,,1.196356591,,,,,,,,,,1.062933951,,,,,,,,,,0.083681374,,,,,,,,,,1.523520094,,,,,,,,,,0.536134946,,,,,,,,,,0.003433988,,,,,,,,,,3.943918253,,,,,,,,,,1023.171343,,,,,,,,,,0.003255231,,,,,,,,,,0.025762028,,,,,,,,,,17.71704796,,,,,,,,,,0.336262355,,,,,,,,,,1.155825907,,,,,,,,,,1.02906363,,,,,,,,,,0.082086014,,,,,,,,,,1.471913751,,,,,,,,,,0.540795122,,,,,,,,,,0.00341142,,,,,,,,,,4.009862874,,,,,,,,,,1034.077157,,,,,,,,,,0.003299047,,,,,,,,,,0.025836779,,,,,,,,,,17.63959263,,,,,,,,,,0.336326106,,,,,,,,,,1.161439484,,,,,,,,,,1.033876037,,,,,,,,,,0.082960965,,,,,,,,,,1.461309404,,,,,,,,,,0.542014476,,,,,,,,,,0.003521477,,,,,,,,,,4.013602249,,,,,,,,,,1036.177235,,,,,,,,,,0.003352384,,,,,,,,,,0.025892666,,,,,,,,,,19.23446697,,,,,,,,,,0.342528362,,,,,,,,,,1.174021432,,,,,,,,,,1.044267508,,,,,,,,,,0.083129447,,,,,,,,,,1.5084733,,,,,,,,,,0.548555719,,,,,,,,,,0.003467404,,,,,,,,,,3.998025839,,,,,,,,,,1029.815914,,,,,,,,,,0.003417046,,,,,,,,,,0.026023854,,,,,,,,,,18.75800796,,,,,,,,,,0.342418431,,,,,,,,,,1.181460302,,,,,,,,,,1.050719111,,,,,,,,,,0.082619097,,,,,,,,,,1.483343272,,,,,,,,, +Commercial truck,B20,1995,0.335832953,0.399452227,,,,,,,,,0.003349535,0.003284044,,,,,,,,,3.778203605,3.857367923,,,,,,,,,923.7230449,979.2061693,,,,,,,,,0.002823897,0.003308503,,,,,,,,,0.02555355,0.025702942,,,,,,,,,12.42311709,14.72952217,,,,,,,,,0.26644536,0.285163655,,,,,,,,,0.828669467,0.914040845,,,,,,,,,0.727644533,0.806363551,,,,,,,,,0.07410758,0.00906448,,,,,,,,,1.449860232,1.511886042,,,,,,,,,0.337401166,0.400530582,,,,,,,,,0.003363229,0.003286712,,,,,,,,,3.845331484,3.922622436,,,,,,,,,934.9573802,989.9720162,,,,,,,,,0.002838933,0.00331746,,,,,,,,,0.025534241,0.025690432,,,,,,,,,12.5332079,14.84290273,,,,,,,,,0.271080755,0.289551686,,,,,,,,,0.838436642,0.922714127,,,,,,,,,0.73602149,0.813712482,,,,,,,,,0.075008865,0.009164138,,,,,,,,,1.455514979,1.512685827,,,,,,,,,0.343977422,0.406245678,,,,,,,,,0.003538289,0.003469975,,,,,,,,,4.0392543,4.118647461,,,,,,,,,949.3956529,1003.827425,,,,,,,,,0.003022627,0.003519311,,,,,,,,,0.025888503,0.026031882,,,,,,,,,12.78982232,15.08185234,,,,,,,,,0.294569258,0.311674472,,,,,,,,,0.886770643,0.966961865,,,,,,,,,0.777157636,0.851081487,,,,,,,,,0.076167213,0.009292396,,,,,,,,,1.531807967,1.594932207,,,,,,,,,0.327156476,0.391035851,,,,,,,,,0.003259815,0.003191589,,,,,,,,,3.726261351,3.796705622,,,,,,,,,916.6280144,972.1391098,,,,,,,,,0.002690006,0.003153784,,,,,,,,,0.025294841,0.025449812,,,,,,,,,11.9974335,14.27284851,,,,,,,,,0.252272819,0.272272453,,,,,,,,,0.794173019,0.882404022,,,,,,,,,0.698087206,0.779460465,,,,,,,,,0.073538343,0.008999059,,,,,,,,,1.41082195,1.470905786,,,,,,,,,0.341778692,0.40419142,,,,,,,,,0.003430896,0.003314077,,,,,,,,,4.137648037,4.205544025,,,,,,,,,960.6345066,1012.218329,,,,,,,,,0.002984593,0.003476731,,,,,,,,,0.025818725,0.025963721,,,,,,,,,12.28832416,14.47567043,,,,,,,,,0.290093152,0.307565297,,,,,,,,,0.876494675,0.957603727,,,,,,,,,0.768368316,0.843140143,,,,,,,,,0.077068876,0.009370072,,,,,,,,,1.485463508,1.523055686,,,,,,,,,0.331798845,0.3949571,,,,,,,,,0.003299741,0.003196475,,,,,,,,,3.910408531,3.977957082,,,,,,,,,935.6364494,989.0231232,,,,,,,,,0.00279469,0.003265112,,,,,,,,,0.025463996,0.025617696,,,,,,,,,12.01247995,14.23671038,,,,,,,,,0.267155028,0.286319593,,,,,,,,,0.825285297,0.910809949,,,,,,,,,0.724620993,0.803478259,,,,,,,,,0.075063358,0.009155353,,,,,,,,,1.427945798,1.471205663,,,,,,,,,0.335383529,0.398752695,,,,,,,,,0.003292592,0.003176199,,,,,,,,,4.004813368,4.067439528,,,,,,,,,951.43984,1002.97617,,,,,,,,,0.002828725,0.003309765,,,,,,,,,0.025544763,0.02569588,,,,,,,,,12.04242511,14.23073732,,,,,,,,,0.268654495,0.287379809,,,,,,,,,0.831978863,0.91699539,,,,,,,,,0.730434834,0.808821946,,,,,,,,,0.0763312,0.009284517,,,,,,,,,1.425974779,1.461893984,,,,,,,,,0.339100797,0.401924883,,,,,,,,,0.003371565,0.00327516,,,,,,,,,3.965034621,4.037390833,,,,,,,,,948.6996422,1002.162496,,,,,,,,,0.00287997,0.003362335,,,,,,,,,0.025589277,0.025745649,,,,,,,,,13.11974906,15.49547667,,,,,,,,,0.276682417,0.294842775,,,,,,,,,0.850085908,0.933313157,,,,,,,,,0.745960139,0.822675198,,,,,,,,,0.076111364,0.009276985,,,,,,,,,1.459371379,1.506742379,,,,,,,,,0.343163341,0.406448181,,,,,,,,,0.003335469,0.003220136,,,,,,,,,3.919034377,3.99761204,,,,,,,,,942.5746076,995.4013924,,,,,,,,,0.002929879,0.003429277,,,,,,,,,0.025740309,0.025887492,,,,,,,,,12.80146262,15.11104098,,,,,,,,,0.278215889,0.295842468,,,,,,,,,0.8574353,0.940262579,,,,,,,,,0.752313431,0.828671299,,,,,,,,,0.075619962,0.009214399,,,,,,,,,1.44369635,1.480429732,,,,,,,, +Commercial truck,B20,2000,0.248928633,0.248518007,0.276432895,,,,,,,,0.002492581,0.002613725,0.002723715,,,,,,,,3.897786818,3.914180584,3.916846065,,,,,,,,854.0408014,864.2117868,887.8707226,,,,,,,,0.002771815,0.002942256,0.003526725,,,,,,,,0.026495808,0.026506526,0.026206857,,,,,,,,8.209514719,8.234219913,9.678587676,,,,,,,,0.167552839,0.165522121,0.199005864,,,,,,,,0.578061668,0.566809014,0.648503987,,,,,,,,0.49743934,0.487104807,0.56216771,,,,,,,,0.068517167,0.00799998,0.008218989,,,,,,,,1.368944608,1.390885949,1.479917639,,,,,,,,0.249585469,0.249155562,0.27721851,,,,,,,,0.002508948,0.002627373,0.002722923,,,,,,,,3.99594944,4.011289027,4.003405445,,,,,,,,865.3493238,875.368415,898.2204279,,,,,,,,0.002794633,0.002962894,0.003537362,,,,,,,,0.026474918,0.026486101,0.02618586,,,,,,,,8.308881325,8.331116073,9.778775843,,,,,,,,0.1703729,0.168292643,0.202235622,,,,,,,,0.584082916,0.572607922,0.655136857,,,,,,,,0.502289311,0.491748328,0.567600874,,,,,,,,0.069424418,0.008103255,0.008314796,,,,,,,,1.378318011,1.398411315,1.480260866,,,,,,,,0.254104392,0.253646709,0.28154847,,,,,,,,0.002638182,0.002763301,0.00287442,,,,,,,,4.196994403,4.212608618,4.203482628,,,,,,,,876.3362064,886.4875161,910.827757,,,,,,,,0.002970484,0.003144832,0.003743586,,,,,,,,0.0267878,0.026797382,0.026509188,,,,,,,,8.470865482,8.491433563,9.961910362,,,,,,,,0.181769672,0.179509505,0.216295919,,,,,,,,0.611050233,0.598750462,0.685468273,,,,,,,,0.52384181,0.512540837,0.592234983,,,,,,,,0.070305852,0.008206186,0.008431503,,,,,,,,1.446211898,1.468432088,1.559152524,,,,,,,,0.243806884,0.243456823,0.270725744,,,,,,,,0.002431001,0.002549859,0.002654248,,,,,,,,3.888049527,3.901976061,3.889241134,,,,,,,,850.9596764,860.9974339,882.6940107,,,,,,,,0.002644051,0.002807694,0.00336663,,,,,,,,0.026246448,0.026257889,0.025954136,,,,,,,,7.994861669,8.019665911,9.397194147,,,,,,,,0.160867124,0.158932288,0.190804656,,,,,,,,0.559254979,0.548518323,0.627042251,,,,,,,,0.482286517,0.472428924,0.544577351,,,,,,,,0.068269983,0.007970226,0.00817107,,,,,,,,1.336854581,1.358228576,1.444027935,,,,,,,,0.252806495,0.25236394,0.280133746,,,,,,,,0.002573303,0.002679628,0.002728146,,,,,,,,4.376931358,4.389026425,4.353256756,,,,,,,,889.2236102,898.6666761,920.0607956,,,,,,,,0.002934058,0.0031069,0.003699843,,,,,,,,0.026723217,0.026733016,0.026443168,,,,,,,,8.242178703,8.260948276,9.643645984,,,,,,,,0.179625621,0.177398587,0.213668705,,,,,,,,0.605442458,0.593307365,0.679089406,,,,,,,,0.519333403,0.508184497,0.587019747,,,,,,,,0.071339768,0.008318928,0.008516973,,,,,,,,1.411885382,1.424978974,1.482847372,,,,,,,,0.246702801,0.246324204,0.273648396,,,,,,,,0.002470509,0.002578809,0.002640842,,,,,,,,4.12307837,4.135495349,4.10669245,,,,,,,,868.6051073,878.1750826,898.593921,,,,,,,,0.002750768,0.002916474,0.003482155,,,,,,,,0.026396456,0.026407464,0.026108793,,,,,,,,8.046844731,8.06860412,9.430697118,,,,,,,,0.168522949,0.16646693,0.200062647,,,,,,,,0.577139614,0.565840454,0.647041378,,,,,,,,0.496612992,0.486235488,0.560861094,,,,,,,,0.069685625,0.008129239,0.008318254,,,,,,,,1.357993166,1.373196237,1.437451402,,,,,,,,0.24869308,0.24828625,0.27606303,,,,,,,,0.002472813,0.002575626,0.002620318,,,,,,,,4.2588607,4.269825764,4.228695792,,,,,,,,883.0497589,892.3890218,912.5487521,,,,,,,,0.002779763,0.002948991,0.003528343,,,,,,,,0.026482191,0.026492985,0.026194065,,,,,,,,8.108812957,8.129096881,9.480361328,,,,,,,,0.168893572,0.166838483,0.200578899,,,,,,,,0.580273793,0.568927999,0.650854418,,,,,,,,0.499190695,0.488769757,0.564053759,,,,,,,,0.070844466,0.008260815,0.008447434,,,,,,,,1.358591372,1.371170789,1.426253775,,,,,,,,0.250612247,0.250172003,0.278264144,,,,,,,,0.002523869,0.002635897,0.002706589,,,,,,,,4.166390899,4.179945031,4.155956838,,,,,,,,878.8654196,888.5745696,910.3329765,,,,,,,,0.002836441,0.003005983,0.003584629,,,,,,,,0.026522712,0.026533807,0.026235353,,,,,,,,8.767032274,8.785817229,10.27122622,,,,,,,,0.173295976,0.171169901,0.205759337,,,,,,,,0.59080672,0.57911801,0.662659221,,,,,,,,0.507678232,0.496939825,0.573730016,,,,,,,,0.070508768,0.008225505,0.008426923,,,,,,,,1.386295641,1.402834597,1.471937637,,,,,,,,0.253082792,0.25261707,0.281139763,,,,,,,,0.00249016,0.00259394,0.002642737,,,,,,,,4.066097324,4.081992704,4.077036738,,,,,,,,870.1908386,879.7904876,902.5019637,,,,,,,,0.002874315,0.003049574,0.003651864,,,,,,,,0.026674979,0.026685301,0.026388574,,,,,,,,8.478362954,8.500274676,9.977536002,,,,,,,,0.173223411,0.171108682,0.205903697,,,,,,,,0.593752857,0.582054811,0.666415776,,,,,,,,0.510094177,0.499347728,0.576863732,,,,,,,,0.069812847,0.00814419,0.008354433,,,,,,,,1.367530536,1.38029789,1.437658288,,,,,,, +Commercial truck,B20,2005,0.119745358,0.164669438,0.163770893,0.197047479,,,,,,,0.00221689,0.002276543,0.002306347,0.002618838,,,,,,,1.678779683,3.184653285,3.170933206,3.411696184,,,,,,,879.1739795,891.8947244,883.1283607,913.6330267,,,,,,,0.002741641,0.00279992,0.003028418,0.003678075,,,,,,,0.02745907,0.027290797,0.027456502,0.026906499,,,,,,,5.452220592,5.508570252,5.420464743,6.907253233,,,,,,,0.069260562,0.100144956,0.097201196,0.131064232,,,,,,,0.282400324,0.375323029,0.36978373,0.457989222,,,,,,,0.225818158,0.311245217,0.306212336,0.38718722,,,,,,,0.07053353,0.00825624,0.00817509,0.008457471,,,,,,,0.536970944,0.963823281,0.969566643,1.196090656,,,,,,,0.119782745,0.164762922,0.163848115,0.197450781,,,,,,,0.00220791,0.002288674,0.002312559,0.002611048,,,,,,,1.729795031,3.275343864,3.262756537,3.496563212,,,,,,,890.7291752,903.4873902,894.1699348,924.2077115,,,,,,,0.002770437,0.002827029,0.00305403,0.003692406,,,,,,,0.02744162,0.027272234,0.027438147,0.026887223,,,,,,,5.520290562,5.572410388,5.483536132,6.977880865,,,,,,,0.070408823,0.101741607,0.098792142,0.133206471,,,,,,,0.285220019,0.378819242,0.373271889,0.462620972,,,,,,,0.227640798,0.313704561,0.308649596,0.390718555,,,,,,,0.07146056,0.008363552,0.0082773,0.00855536,,,,,,,0.537545154,0.96967413,0.972995116,1.193396114,,,,,,,0.120633546,0.165861234,0.164886416,0.199269327,,,,,,,0.002338473,0.002410731,0.002438633,0.002759301,,,,,,,1.813044898,3.424447198,3.409964966,3.656836435,,,,,,,903.9921005,917.0956454,907.7845834,938.3140595,,,,,,,0.002938311,0.002997905,0.003230225,0.003894329,,,,,,,0.027695369,0.02753687,0.027691115,0.027170563,,,,,,,5.625933847,5.678524859,5.588130479,7.095625777,,,,,,,0.073845697,0.106638788,0.103513948,0.140878999,,,,,,,0.295584939,0.391543883,0.385643241,0.480396322,,,,,,,0.233984702,0.322206625,0.316842784,0.403849183,,,,,,,0.072524617,0.008489523,0.008403332,0.008685942,,,,,,,0.565997471,1.01843693,1.022893514,1.257289179,,,,,,,0.118506051,0.162999352,0.162141586,0.194360676,,,,,,,0.002166732,0.002223136,0.002253731,0.002557532,,,,,,,1.691115248,3.20355998,3.192247628,3.411120809,,,,,,,875.6479603,887.9344035,878.972511,908.5747719,,,,,,,0.002618722,0.002674269,0.002895736,0.003518439,,,,,,,0.027232981,0.027059871,0.02723028,0.026667601,,,,,,,5.349837623,5.399266674,5.315610808,6.745471574,,,,,,,0.06743148,0.097587787,0.094720188,0.126780351,,,,,,,0.275486948,0.366907627,0.36153807,0.445817577,,,,,,,0.221586309,0.305635866,0.300751599,0.378129168,,,,,,,0.070250647,0.008219579,0.008136619,0.008410647,,,,,,,0.525694581,0.94267654,0.948973487,1.170059336,,,,,,,0.120345532,0.165471869,0.164510168,0.198619559,,,,,,,0.002171165,0.002329414,0.002328889,0.002578354,,,,,,,1.915977337,3.599584225,3.588057765,3.812026874,,,,,,,917.3969725,930.2452254,919.580451,947.8026113,,,,,,,0.002903365,0.002962292,0.003193149,0.003851101,,,,,,,0.027639155,0.02747907,0.027634981,0.027109995,,,,,,,5.507361354,5.547660033,5.464306603,6.898603157,,,,,,,0.073224125,0.105762898,0.102665287,0.139471721,,,,,,,0.293486559,0.388972393,0.383131405,0.476724578,,,,,,,0.232693434,0.320482297,0.315170277,0.401116036,,,,,,,0.073600049,0.008611249,0.008512527,0.008773777,,,,,,,0.536943963,0.986717087,0.979803493,1.17787312,,,,,,,0.119020034,0.1636958,0.162797909,0.195667972,,,,,,,0.002116605,0.002242318,0.002251233,0.00251138,,,,,,,1.804769857,3.403311669,3.392900019,3.607228288,,,,,,,894.9892001,907.3441304,897.2748051,925.3393897,,,,,,,0.002726383,0.002782279,0.003006169,0.003635419,,,,,,,0.027357425,0.027188799,0.027353779,0.026804958,,,,,,,5.391589098,5.434593502,5.352506262,6.76857999,,,,,,,0.069947963,0.101137889,0.098184595,0.13210872,,,,,,,0.282746282,0.375821558,0.370284546,0.458094854,,,,,,,0.226094026,0.31167273,0.306628875,0.387276031,,,,,,,0.071802337,0.008399254,0.008306042,0.008565836,,,,,,,0.52149499,0.951552554,0.948906345,1.149703817,,,,,,,0.11960652,0.164488127,0.163584089,0.196851614,,,,,,,0.002088219,0.002239387,0.00223995,0.00247953,,,,,,,1.874770399,3.521652537,3.512440033,3.720092248,,,,,,,909.4806211,922.0551998,911.3628318,939.336484,,,,,,,0.002751788,0.002809324,0.003036772,0.00368077,,,,,,,0.027442576,0.027274543,0.027439518,0.026891162,,,,,,,5.435456409,5.473225918,5.392526865,6.803872841,,,,,,,0.069822261,0.100941596,0.097985606,0.132114789,,,,,,,0.28352813,0.376732083,0.371174781,0.459757301,,,,,,,0.226542716,0.312233581,0.307178751,0.388516109,,,,,,,0.072964942,0.008535436,0.008436456,0.008695406,,,,,,,0.517517655,0.950138279,0.9439732,1.134765181,,,,,,,0.119953272,0.164997791,0.164068512,0.197923522,,,,,,,0.002176339,0.002294678,0.002306871,0.002578794,,,,,,,1.817636812,3.427658395,3.416615706,3.640944787,,,,,,,905.1741378,917.942769,907.8588513,936.9358487,,,,,,,0.002812776,0.002869638,0.003098358,0.003741039,,,,,,,0.027480695,0.027312767,0.027476783,0.026930662,,,,,,,5.840032247,5.885305201,5.791537265,7.333860638,,,,,,,0.071395756,0.103131662,0.100152893,0.135267665,,,,,,,0.287990071,0.382226093,0.376621897,0.467303771,,,,,,,0.229372323,0.316025194,0.310915141,0.394220195,,,,,,,0.072619445,0.008497366,0.00840402,0.008673184,,,,,,,0.534369502,0.972682155,0.971169983,1.179117286,,,,,,,0.120718909,0.166000329,0.165065129,0.199272767,,,,,,,0.002089619,0.002246167,0.002244332,0.002490764,,,,,,,1.756605775,3.320245473,3.306768696,3.549639453,,,,,,,895.9093532,908.858627,898.868939,928.0695174,,,,,,,0.002841338,0.002901442,0.003135078,0.003803475,,,,,,,0.027622151,0.027457096,0.027619452,0.027078487,,,,,,,5.618638896,5.67184575,5.581295868,7.102887695,,,,,,,0.070892116,0.102420919,0.099420576,0.13476016,,,,,,,0.288266176,0.382489369,0.376818685,0.468303056,,,,,,,0.229440466,0.316062135,0.310912632,0.394897557,,,,,,,0.071876153,0.008413274,0.008320799,0.00859111,,,,,,,0.517784597,0.952677344,0.945560274,1.139453522,,,,,, +Commercial truck,B20,2010,,0.052487415,0.049113724,0.045349527,0.110345886,,,,,,,0.050911773,0.083687649,0.09966965,0.069201834,,,,,,,1.136389229,1.269221738,1.235679793,2.227789611,,,,,,,907.591148,896.5720776,903.0449296,935.7501611,,,,,,,0.002684716,0.002827258,0.003114562,0.003855406,,,,,,,0.026996862,0.02719743,0.027302708,0.027001666,,,,,,,3.267646334,3.212281578,3.180808103,4.892871111,,,,,,,0.034833561,0.031798263,0.028698979,0.073738388,,,,,,,0.157820885,0.153527166,0.144973789,0.280841554,,,,,,,0.111014762,0.107141202,0.09933155,0.224272738,,,,,,,0.008004984,0.007893182,0.007934497,0.008421365,,,,,,,0.325005335,0.339980893,0.344931505,0.767429184,,,,,,,0.052521242,0.049139048,0.045371562,0.110564408,,,,,,,0.048904932,0.081426582,0.09613932,0.066053518,,,,,,,1.164056161,1.300972027,1.265846063,2.279256381,,,,,,,919.5105563,908.0371705,914.134279,946.3794456,,,,,,,0.002711331,0.002853371,0.003138123,0.00386861,,,,,,,0.026975186,0.027175948,0.027282581,0.026983161,,,,,,,3.298508185,3.244111177,3.211621261,4.937071764,,,,,,,0.035343127,0.032276077,0.029136889,0.074876935,,,,,,,0.159585435,0.155288086,0.146686956,0.283783541,,,,,,,0.111908286,0.108014127,0.100149463,0.226239337,,,,,,,0.008110085,0.007994061,0.008031845,0.008517107,,,,,,,0.324672193,0.338802913,0.341495037,0.760024027,,,,,,,0.052884852,0.049496867,0.045707993,0.111421685,,,,,,,0.052624099,0.086929037,0.103024805,0.071260727,,,,,,,1.212811934,1.35480919,1.31785332,2.376291901,,,,,,,934.1214666,922.4466059,928.531125,961.1487337,,,,,,,0.002880873,0.003026023,0.003318459,0.004074384,,,,,,,0.027259656,0.027447598,0.027545394,0.027258354,,,,,,,3.366041638,3.313237415,3.280610536,5.02548382,,,,,,,0.036999956,0.033776928,0.030504834,0.078815498,,,,,,,0.166707054,0.162263339,0.153435453,0.294952091,,,,,,,0.115235531,0.111224454,0.103159089,0.233298446,,,,,,,0.008239001,0.008121034,0.008158493,0.008649509,,,,,,,0.342167661,0.357351379,0.361207812,0.803282177,,,,,,,0.051930224,0.048583377,0.044859439,0.109073369,,,,,,,0.049924155,0.082089573,0.097895346,0.06792315,,,,,,,1.140164961,1.27472295,1.24004702,2.227006163,,,,,,,902.876875,891.8509757,898.2997332,930.5543638,,,,,,,0.002562043,0.002700196,0.002977926,0.003690443,,,,,,,0.026757218,0.026962655,0.027071781,0.026765957,,,,,,,3.194654211,3.141910394,3.111182995,4.781443489,,,,,,,0.033979368,0.031009113,0.027966999,0.071583126,,,,,,,0.153123489,0.148878851,0.140448839,0.273345126,,,,,,,0.10882893,0.10499268,0.097296052,0.219515532,,,,,,,0.007963351,0.007851531,0.007892682,0.008374962,,,,,,,0.317890539,0.332826771,0.33799214,0.751595308,,,,,,,0.052754345,0.049372809,0.045593324,0.111112671,,,,,,,0.041255502,0.07248814,0.082237476,0.054002294,,,,,,,1.265396256,1.415369016,1.375640729,2.469536087,,,,,,,948.1338094,935.4327831,940.2055445,970.4000902,,,,,,,0.002845773,0.00299004,0.003280442,0.004030061,,,,,,,0.027199012,0.027388772,0.027487807,0.0271989,,,,,,,3.270159058,3.225135226,3.19606337,4.887864599,,,,,,,0.036706311,0.033507727,0.030257379,0.078100267,,,,,,,0.16527646,0.160855195,0.152069983,0.292676577,,,,,,,0.114563965,0.11057014,0.102542897,0.231848803,,,,,,,0.008362531,0.00823527,0.008260915,0.008732587,,,,,,,0.322366981,0.332792161,0.32665124,0.727701235,,,,,,,0.052161915,0.048805575,0.045067106,0.109710113,,,,,,,0.042879912,0.073742973,0.085098781,0.056901616,,,,,,,1.202560966,1.345314215,1.30785385,2.345767956,,,,,,,923.5329617,911.5679974,916.9524734,947.4379863,,,,,,,0.002668404,0.002808357,0.003089114,0.003809188,,,,,,,0.026893499,0.027093018,0.027198824,0.026899973,,,,,,,3.207794941,3.159515469,3.129842439,4.797354956,,,,,,,0.035155528,0.032088544,0.02895483,0.074345115,,,,,,,0.157967075,0.153658051,0.145088152,0.281081197,,,,,,,0.111137105,0.107234455,0.099402365,0.22447806,,,,,,,0.008145521,0.008025098,0.008056518,0.008526517,,,,,,,0.313750368,0.325373185,0.32279425,0.719063498,,,,,,,0.052426857,0.049056032,0.045297015,0.110262695,,,,,,,0.039813015,0.069947045,0.079451337,0.05216429,,,,,,,1.2387893,1.386544153,1.347856437,2.413662462,,,,,,,939.316401,926.7077141,931.4814031,961.5535244,,,,,,,0.002694226,0.002836258,0.003121969,0.00385728,,,,,,,0.02698066,0.027180364,0.027285574,0.026986015,,,,,,,3.219424795,3.174802826,3.146338936,4.819702783,,,,,,,0.035093772,0.032036596,0.028914503,0.074303485,,,,,,,0.158539391,0.154234081,0.145656767,0.282004505,,,,,,,0.111376934,0.107486431,0.099651145,0.22504148,,,,,,,0.00828472,0.008158378,0.008184155,0.00865332,,,,,,,0.310579942,0.320818127,0.315147226,0.701736927,,,,,,,0.052599755,0.049213864,0.04544187,0.11079933,,,,,,,0.04486992,0.076601818,0.088821368,0.059772298,,,,,,,1.211104971,1.354609409,1.317404979,2.366849136,,,,,,,934.7352235,922.6059179,928.0172562,959.2302133,,,,,,,0.00275287,0.002896101,0.003182955,0.003918526,,,,,,,0.027018023,0.027216722,0.027322314,0.02702551,,,,,,,3.46818838,3.414441441,3.378235066,5.180695149,,,,,,,0.035802269,0.032698488,0.029523937,0.075951439,,,,,,,0.161422292,0.157101546,0.148448174,0.2867418,,,,,,,0.112791593,0.108872271,0.10095668,0.228151723,,,,,,,0.008244343,0.008122291,0.008153769,0.008632579,,,,,,,0.321697519,0.334015328,0.332424791,0.740127466,,,,,,,0.052934105,0.049535081,0.045737629,0.111408146,,,,,,,0.039759818,0.0699201,0.079276127,0.052031496,,,,,,,1.17907913,1.317282346,1.28236772,2.311356262,,,,,,,926.1730253,914.0841357,919.2423699,949.9963445,,,,,,,0.00278391,0.002929708,0.003223909,0.003984709,,,,,,,0.027168675,0.027365761,0.027468622,0.027171571,,,,,,,3.355821556,3.302135822,3.269880096,5.024783027,,,,,,,0.035587851,0.032497843,0.029347083,0.075610025,,,,,,,0.161775603,0.157441034,0.148780791,0.287199593,,,,,,,0.112877581,0.108970611,0.101061876,0.228342928,,,,,,,0.008168869,0.00804734,0.008076766,0.008549106,,,,,,,0.311434514,0.321328853,0.315301974,0.703693619,,,,, +Commercial truck,B20,2015,,,0.000798002,0.001229412,0.001235224,0.026117246,,,,,,,0.07598811,0.092613806,0.110186876,0.129185316,,,,,,,0.327673887,0.392715943,0.417982648,0.899882515,,,,,,,886.9773981,886.9965372,888.6135454,911.2043674,,,,,,,0.002661415,0.002797479,0.003050435,0.003727832,,,,,,,0.026708381,0.026774908,0.026927764,0.027236111,,,,,,,0.746366523,1.068187634,1.124338102,2.117689233,,,,,,,0.001387437,0.002137502,0.002147608,0.0172598,,,,,,,0.053223331,0.058426582,0.058405824,0.107117162,,,,,,,0.014646615,0.019465099,0.019518937,0.064516017,,,,,,,0.007629238,0.007629404,0.007643311,0.007931697,,,,,,,0.088369174,0.103782474,0.120101448,0.30312589,,,,,,,0.000803261,0.001237776,0.001243715,0.026148599,,,,,,,0.072993342,0.088855952,0.104867007,0.121930214,,,,,,,0.333383232,0.399542559,0.424734768,0.917914199,,,,,,,898.5928074,898.3498515,899.5868934,921.5881405,,,,,,,0.002686582,0.002821311,0.00307212,0.003744127,,,,,,,0.026684149,0.02675111,0.026905067,0.027217427,,,,,,,0.751866367,1.076713278,1.132574395,2.133932649,,,,,,,0.001396579,0.002152044,0.002162371,0.017507849,,,,,,,0.054173435,0.059422388,0.05942163,0.108548893,,,,,,,0.014817529,0.01967176,0.019729375,0.065076411,,,,,,,0.007729147,0.007727058,0.007737699,0.008022025,,,,,,,0.085850636,0.100550772,0.115413226,0.294685605,,,,,,,0.000827513,0.001274815,0.001280889,0.026357557,,,,,,,0.078642601,0.095760375,0.113393293,0.132114938,,,,,,,0.34680313,0.415544316,0.441500911,0.955417088,,,,,,,913.821732,913.5738082,914.6992782,936.288466,,,,,,,0.002857399,0.002996423,0.003254439,0.003943109,,,,,,,0.026986717,0.027049339,0.027193028,0.02747988,,,,,,,0.775050539,1.109140327,1.166562207,2.183941442,,,,,,,0.001438746,0.00221644,0.002227,0.018365302,,,,,,,0.058556511,0.063954755,0.063941674,0.114400794,,,,,,,0.015609294,0.0206057,0.020663046,0.067258167,,,,,,,0.007860138,0.007858004,0.007867687,0.008149928,,,,,,,0.091327916,0.107191693,0.123554754,0.314198677,,,,,,,0.000780066,0.001202083,0.001207604,0.02583766,,,,,,,0.074405474,0.090724372,0.108100714,0.127101076,,,,,,,0.326248545,0.390990062,0.415606373,0.897712557,,,,,,,881.3610536,881.2988782,882.9868213,906.1075401,,,,,,,0.002538658,0.002669671,0.002913765,0.003569438,,,,,,,0.026461434,0.026529592,0.026686456,0.027005551,,,,,,,0.725158157,1.038477508,1.093197191,2.066672149,,,,,,,0.001356251,0.002089988,0.002099586,0.016781859,,,,,,,0.050311902,0.055402276,0.055380685,0.103186316,,,,,,,0.014104358,0.018818,0.018868909,0.063032315,,,,,,,0.00758093,0.007580395,0.007594915,0.007887392,,,,,,,0.08683645,0.101964017,0.118103365,0.297602231,,,,,,,0.000822293,0.001266839,0.001272861,0.026289873,,,,,,,0.061790692,0.074730432,0.084699558,0.093941554,,,,,,,0.358008038,0.428937501,0.455163559,0.990462803,,,,,,,927.556377,926.5280289,926.4695199,945.6080581,,,,,,,0.002822145,0.002960074,0.003216205,0.003900338,,,,,,,0.026923552,0.026986766,0.027131881,0.027422296,,,,,,,0.756893744,1.082609539,1.140275067,2.133173033,,,,,,,0.001429669,0.002202574,0.002213044,0.018208357,,,,,,,0.057677396,0.063043126,0.063031679,0.113219215,,,,,,,0.015447354,0.020413081,0.020470132,0.066812193,,,,,,,0.007978274,0.007969428,0.007968926,0.008230809,,,,,,,0.075988615,0.087960558,0.097189691,0.261012029,,,,,,,0.000796154,0.001226885,0.001232627,0.025976792,,,,,,,0.064073931,0.077723991,0.089691574,0.10172322,,,,,,,0.341230475,0.408896067,0.434078555,0.942375905,,,,,,,902.1245515,901.4544662,902.1174163,922.9580926,,,,,,,0.002644283,0.002776985,0.003024095,0.003686697,,,,,,,0.026604509,0.02667094,0.026823728,0.027133382,,,,,,,0.733472706,1.050040009,1.105695808,2.082155722,,,,,,,0.001384224,0.00213311,0.002143094,0.017385195,,,,,,,0.053194591,0.058395345,0.058386971,0.107175014,,,,,,,0.014625864,0.019437501,0.019492238,0.064539042,,,,,,,0.007759526,0.007753762,0.007759463,0.008033833,,,,,,,0.077653631,0.090292677,0.10139242,0.266246483,,,,,,,0.000799708,0.001232151,0.001237982,0.026097012,,,,,,,0.059567956,0.072068225,0.081799839,0.090962071,,,,,,,0.350298493,0.419760243,0.445651681,0.969619107,,,,,,,918.293535,917.2328899,917.2425732,936.7466925,,,,,,,0.00267049,0.002805742,0.003057316,0.003731173,,,,,,,0.026692469,0.02675884,0.026911368,0.027219517,,,,,,,0.740721208,1.059795327,1.116699163,2.098096392,,,,,,,0.001390403,0.002142264,0.002152402,0.017381263,,,,,,,0.053609853,0.058828362,0.058814112,0.10768954,,,,,,,0.014712328,0.019542711,0.019597556,0.064735023,,,,,,,0.007898599,0.007889478,0.007889561,0.008153722,,,,,,,0.073785898,0.085349963,0.094361308,0.252357061,,,,,,,0.000809365,0.001247182,0.001253245,0.026198901,,,,,,,0.06704588,0.081386466,0.094367433,0.107571761,,,,,,,0.344424562,0.412754182,0.438430044,0.951331295,,,,,,,913.7495416,913.0791661,913.6517583,934.3232861,,,,,,,0.002727701,0.002863495,0.00311627,0.003793198,,,,,,,0.026729144,0.026795525,0.026948141,0.027257553,,,,,,,0.789654444,1.131778574,1.18856888,2.236576204,,,,,,,0.001407192,0.002168396,0.002178938,0.017743272,,,,,,,0.055255464,0.060546543,0.060551981,0.110061005,,,,,,,0.015013866,0.019905259,0.019964863,0.065654376,,,,,,,0.007859516,0.00785375,0.007858676,0.008132739,,,,,,,0.080637488,0.093916837,0.105954332,0.276704706,,,,,,,0.000812919,0.001252215,0.00125827,0.026343716,,,,,,,0.059580677,0.072048403,0.081596283,0.090420968,,,,,,,0.338866644,0.406118699,0.432193381,0.932744269,,,,,,,906.179282,905.4899938,905.813532,925.3458232,,,,,,,0.002760469,0.002900156,0.003159508,0.003852636,,,,,,,0.026884829,0.02695029,0.027100514,0.027402163,,,,,,,0.770954959,1.103118299,1.160781044,2.178842833,,,,,,,0.001413372,0.002177147,0.002187675,0.017673958,,,,,,,0.055639556,0.060938564,0.060920712,0.110408216,,,,,,,0.015096712,0.020003355,0.020059916,0.065767991,,,,,,,0.007794401,0.007788472,0.007791255,0.008054495,,,,,,,0.073513364,0.085054438,0.09390083,0.251974219,,,, +Commercial truck,B20,2020,,,,0.000837452,0.00123457,0.001237052,0.004687657,,,,,,,0.078257556,0.093923796,0.112157483,0.151336919,,,,,,,0.33391309,0.394089774,0.420377978,0.537873313,,,,,,,822.2722988,821.9020366,817.5236322,844.1584457,,,,,,,0.002678807,0.00280978,0.00307772,0.003704999,,,,,,,0.026517103,0.026582824,0.026876221,0.027375099,,,,,,,0.627285765,0.804974152,0.865894154,1.19714855,,,,,,,0.001456026,0.002146471,0.002150786,0.003852647,,,,,,,0.053802482,0.05858889,0.058454068,0.064444921,,,,,,,0.015099841,0.019534927,0.01954255,0.025300408,,,,,,,0.007072685,0.0070695,0.00703184,0.00727396,,,,,,,0.089386748,0.103910845,0.120633807,0.178231253,,,,,,,0.000842792,0.001242661,0.001245454,0.004693879,,,,,,,0.07511692,0.09004363,0.106657595,0.142429799,,,,,,,0.339351263,0.400505758,0.426981979,0.546409403,,,,,,,833.2085423,832.6186008,827.8173034,853.8977457,,,,,,,0.002702638,0.002832292,0.003098717,0.003722486,,,,,,,0.026492416,0.026558519,0.026853395,0.027356567,,,,,,,0.631183597,0.81026062,0.871255338,1.204268747,,,,,,,0.001465309,0.002160539,0.002165394,0.003896736,,,,,,,0.05473236,0.059560228,0.059463027,0.065560108,,,,,,,0.015268955,0.019735833,0.019751254,0.025559448,,,,,,,0.007166753,0.007161678,0.007120379,0.00735784,,,,,,,0.086719184,0.100552877,0.115764008,0.169815525,,,,,,,0.000868151,0.001279974,0.001282722,0.004774497,,,,,,,0.081024953,0.097157744,0.115403199,0.154461948,,,,,,,0.353054114,0.416626292,0.443857537,0.567552209,,,,,,,847.2251996,846.5677554,841.289268,867.1802311,,,,,,,0.002875383,0.003009341,0.003282473,0.003919112,,,,,,,0.026805368,0.026867384,0.027144138,0.027610923,,,,,,,0.650795762,0.835250651,0.897863939,1.238017813,,,,,,,0.0015094,0.002225411,0.002230187,0.004069453,,,,,,,0.059145853,0.064112752,0.063988652,0.070248872,,,,,,,0.016075242,0.020674963,0.020686535,0.026679632,,,,,,,0.007287314,0.007281659,0.007236258,0.007472363,,,,,,,0.092423683,0.107374326,0.124085286,0.182560697,,,,,,,0.000818768,0.001207114,0.001209366,0.004610918,,,,,,,0.076559155,0.091923691,0.110011081,0.149033345,,,,,,,0.331953354,0.391765724,0.41774207,0.534755011,,,,,,,816.9769578,816.5718957,812.5843905,839.7378188,,,,,,,0.002554708,0.002680677,0.002939706,0.003548572,,,,,,,0.026266676,0.026333829,0.026633909,0.027148023,,,,,,,0.608703801,0.781409757,0.841167341,1.165785407,,,,,,,0.001423541,0.002098735,0.002102649,0.003739034,,,,,,,0.050876712,0.055557815,0.055426664,0.061270478,,,,,,,0.014548576,0.018885748,0.018891598,0.024508749,,,,,,,0.007027137,0.007023653,0.006989356,0.007235826,,,,,,,0.087746171,0.101990178,0.118587978,0.175575638,,,,,,,0.000862701,0.001271954,0.001274676,0.004754842,,,,,,,0.06350734,0.075629858,0.085867664,0.107930983,,,,,,,0.363608456,0.429098287,0.457232759,0.585754702,,,,,,,860.0469977,858.7173012,852.2472315,875.9307035,,,,,,,0.002839748,0.002972617,0.003243916,0.003876839,,,,,,,0.026740801,0.026803364,0.027082616,0.027554536,,,,,,,0.634930251,0.814896213,0.878040707,1.213911212,,,,,,,0.001499924,0.002211467,0.002216199,0.004034967,,,,,,,0.058260983,0.063197642,0.06307764,0.069301329,,,,,,,0.015910362,0.020481481,0.020493321,0.026447328,,,,,,,0.007397599,0.007386162,0.007330511,0.007547693,,,,,,,0.076449579,0.087666146,0.096922596,0.136786595,,,,,,,0.000835446,0.001231821,0.001234366,0.004658634,,,,,,,0.065852735,0.078657378,0.09104212,0.117798817,,,,,,,0.346697503,0.409160099,0.436089612,0.558580519,,,,,,,836.3177022,835.3629852,830.1292574,855.2955541,,,,,,,0.002660238,0.002787901,0.003050312,0.003665497,,,,,,,0.026414206,0.026479737,0.026772398,0.027272068,,,,,,,0.615208925,0.789794885,0.850796564,1.178678689,,,,,,,0.001452538,0.002141693,0.002146118,0.003858058,,,,,,,0.053755268,0.05853845,0.058429566,0.064450358,,,,,,,0.015075217,0.019502743,0.019514277,0.02526635,,,,,,,0.007193496,0.007185282,0.007140266,0.007369854,,,,,,,0.078193748,0.09005144,0.10133008,0.145487608,,,,,,,0.000839186,0.001237215,0.001239776,0.0046854,,,,,,,0.061185134,0.072889418,0.082918598,0.104595252,,,,,,,0.355541713,0.419633752,0.447593367,0.574311699,,,,,,,851.5007508,850.1807948,844.0232355,867.9235945,,,,,,,0.002687366,0.002817541,0.003084286,0.003708852,,,,,,,0.026501873,0.026567413,0.026859992,0.027358047,,,,,,,0.621150049,0.797315987,0.859725287,1.191408609,,,,,,,0.001459041,0.002151068,0.002155521,0.003870912,,,,,,,0.054181815,0.058982018,0.058859876,0.064887051,,,,,,,0.015164908,0.019610517,0.019620524,0.025395796,,,,,,,0.007324089,0.007312737,0.007259772,0.007478654,,,,,,,0.074161642,0.084990796,0.09406267,0.132836203,,,,,,,0.000849113,0.001252016,0.001254972,0.004710859,,,,,,,0.068937159,0.082401664,0.095835263,0.124796911,,,,,,,0.350070467,0.413172686,0.440533607,0.564451928,,,,,,,847.3395704,846.366831,840.7763551,865.701125,,,,,,,0.002743724,0.002874421,0.003143033,0.00377143,,,,,,,0.026538961,0.026604518,0.026896883,0.027395371,,,,,,,0.661581295,0.849736227,0.912478764,1.258889516,,,,,,,0.001476299,0.0021768,0.002181941,0.003942662,,,,,,,0.055811807,0.06067854,0.060591812,0.066758923,,,,,,,0.015467044,0.01996808,0.019986429,0.025846796,,,,,,,0.007288298,0.007279932,0.007231846,0.00745952,,,,,,,0.081273613,0.093742943,0.105985529,0.152868282,,,,,,,0.000852975,0.001257427,0.001260133,0.004747417,,,,,,,0.061255971,0.072937387,0.082723956,0.103839583,,,,,,,0.345065368,0.407274332,0.434584521,0.556640615,,,,,,,840.3448531,839.3348369,833.3255158,857.0993249,,,,,,,0.00277869,0.002913248,0.003187704,0.003828508,,,,,,,0.026696008,0.026760781,0.027049659,0.027538645,,,,,,,0.647650776,0.831109459,0.893823646,1.233931908,,,,,,,0.001483014,0.002186208,0.002190913,0.003948468,,,,,,,0.056227727,0.061103124,0.060969818,0.067087779,,,,,,,0.015556908,0.020073967,0.020083964,0.025957843,,,,,,,0.007228134,0.007219447,0.007167758,0.007385432,,,,,,,0.073963843,0.084777746,0.093627406,0.131900322,,, +Commercial truck,B20,2025,,,,,0.000838136,0.001236121,0.001236712,0.00124798,,,,,,,0.078989007,0.094402995,0.112271549,0.156637346,,,,,,,0.334664346,0.394608723,0.420522756,0.484500165,,,,,,,811.6965724,811.1296628,804.9861756,814.7781625,,,,,,,0.00268712,0.002815648,0.003080429,0.003727646,,,,,,,0.026434665,0.02653797,0.02689666,0.027464785,,,,,,,0.343748478,0.456870075,0.531147083,0.780700633,,,,,,,0.001457214,0.002149167,0.002150194,0.002169786,,,,,,,0.053851736,0.058629158,0.058437642,0.05823434,,,,,,,0.015112479,0.019554874,0.019537244,0.019621702,,,,,,,0.006981719,0.006976843,0.006924001,0.007008225,,,,,,,0.089945451,0.104205638,0.120509392,0.161786626,,,,,,,0.000843393,0.001244154,0.001245145,0.001257029,,,,,,,0.075778787,0.090478182,0.106762452,0.147263689,,,,,,,0.339946621,0.400929731,0.427167783,0.49147873,,,,,,,822.5742173,821.7919508,815.2121928,824.250189,,,,,,,0.002710377,0.00283782,0.003101533,0.003745554,,,,,,,0.026409853,0.026513594,0.026873965,0.027446738,,,,,,,0.344903012,0.458788858,0.533284476,0.783731549,,,,,,,0.001466355,0.002163134,0.002164856,0.002185519,,,,,,,0.054771734,0.059594998,0.059449301,0.059320256,,,,,,,0.015279541,0.019754517,0.019746596,0.019846485,,,,,,,0.007075281,0.007068552,0.007011958,0.007089698,,,,,,,0.087212605,0.100805401,0.115629563,0.153307267,,,,,,,0.000868798,0.001281546,0.001282394,0.001294337,,,,,,,0.081789382,0.097658747,0.115506939,0.159716904,,,,,,,0.353697004,0.417083862,0.444034019,0.509743271,,,,,,,836.3147982,835.4005229,828.216055,836.7462566,,,,,,,0.002883979,0.003015423,0.003285164,0.003941567,,,,,,,0.026727146,0.026824839,0.027163365,0.027695086,,,,,,,0.356007563,0.473285443,0.549716897,0.8065432,,,,,,,0.001510525,0.002228143,0.002229616,0.002250382,,,,,,,0.059193095,0.064152456,0.063972976,0.063795392,,,,,,,0.016087263,0.020695038,0.020681444,0.020775736,,,,,,,0.00719347,0.007185606,0.007123808,0.007197181,,,,,,,0.093010367,0.107684384,0.123941772,0.165041802,,,,,,,0.000819443,0.001208627,0.00120903,0.001219682,,,,,,,0.077246256,0.092374206,0.11013582,0.154344385,,,,,,,0.332474867,0.392142678,0.417942974,0.48121226,,,,,,,806.4803063,805.950906,800.3258162,810.8004146,,,,,,,0.002562405,0.002686125,0.002942439,0.003571298,,,,,,,0.026182834,0.02628818,0.026654866,0.027240391,,,,,,,0.33292753,0.442853792,0.515470427,0.759312032,,,,,,,0.001424714,0.002101365,0.002102066,0.002120586,,,,,,,0.05092339,0.055596235,0.055410621,0.055208387,,,,,,,0.014560803,0.018905098,0.018886387,0.018965028,,,,,,,0.006936851,0.006932298,0.006883915,0.00697401,,,,,,,0.088263286,0.102259892,0.118478293,0.159629702,,,,,,,0.000863343,0.001273513,0.001274351,0.001286207,,,,,,,0.063970075,0.075936788,0.085914299,0.110840505,,,,,,,0.363906814,0.429346218,0.457504489,0.524948331,,,,,,,849.0327095,847.4722345,839.1065652,845.2305623,,,,,,,0.002848172,0.002978586,0.003246624,0.003899367,,,,,,,0.026661996,0.026760504,0.027102037,0.027639587,,,,,,,0.347916586,0.462453415,0.538490493,0.792981219,,,,,,,0.00150104,0.002214177,0.002215633,0.002236247,,,,,,,0.058306855,0.063236506,0.063062291,0.062891504,,,,,,,0.01592216,0.020501322,0.020488299,0.020582604,,,,,,,0.007302862,0.007289439,0.007217482,0.007270158,,,,,,,0.076755127,0.087795068,0.096724719,0.119885449,,,,,,,0.000836074,0.001233324,0.001234049,0.001245376,,,,,,,0.066358703,0.078991662,0.091115487,0.121385439,,,,,,,0.347029647,0.409423977,0.436345396,0.501446595,,,,,,,825.5983391,824.5011649,817.55949,825.6827933,,,,,,,0.002667914,0.002793367,0.003053084,0.003688341,,,,,,,0.026332263,0.026435141,0.026792811,0.027361864,,,,,,,0.336527584,0.447632792,0.521350849,0.7684596,,,,,,,0.00145363,0.002144306,0.002145565,0.002165259,,,,,,,0.053796796,0.058574309,0.058415073,0.05826007,,,,,,,0.015086336,0.019521672,0.019509433,0.019600619,,,,,,,0.007101293,0.007091856,0.007032148,0.00710202,,,,,,,0.078540936,0.09021026,0.101167111,0.129335188,,,,,,,0.000839842,0.001238746,0.001239447,0.001250866,,,,,,,0.061615517,0.073175195,0.082970901,0.107469532,,,,,,,0.355733415,0.419813017,0.447894267,0.515088281,,,,,,,840.6535763,839.1474695,831.1807421,837.7161076,,,,,,,0.002695455,0.002823273,0.003087028,0.003731612,,,,,,,0.026419759,0.026522733,0.026880387,0.027447546,,,,,,,0.3402873,0.452450154,0.527398325,0.77813436,,,,,,,0.001460182,0.00215373,0.002154948,0.002174801,,,,,,,0.054227581,0.059020347,0.05884438,0.058665579,,,,,,,0.015176837,0.019630027,0.019615436,0.019704478,,,,,,,0.00723079,0.007217834,0.007149311,0.007205523,,,,,,,0.074438195,0.085102593,0.093875182,0.116652919,,,,,,,0.000849693,0.001253502,0.001254672,0.00126693,,,,,,,0.069488669,0.082765478,0.095914151,0.128680839,,,,,,,0.350464944,0.41347542,0.44077792,0.506859517,,,,,,,836.5567362,835.3865593,827.9794417,835.5997772,,,,,,,0.002751457,0.002879962,0.00314588,0.003794668,,,,,,,0.026457065,0.026559973,0.026917272,0.027484693,,,,,,,0.359595326,0.478972601,0.556047961,0.815651387,,,,,,,0.001477308,0.002179384,0.002181418,0.002202731,,,,,,,0.055848782,0.060712112,0.060578774,0.060471491,,,,,,,0.015477118,0.019986551,0.019981936,0.020088217,,,,,,,0.00719555,0.007185486,0.007121774,0.00718732,,,,,,,0.081663248,0.093927823,0.105823466,0.13629488,,,,,,,0.000853653,0.001258996,0.001259794,0.001271628,,,,,,,0.061709026,0.073237519,0.082765942,0.106616406,,,,,,,0.345740928,0.407749332,0.434757307,0.50080875,,,,,,,829.6291294,828.3705893,820.4705746,827.038377,,,,,,,0.002787388,0.002919387,0.003190413,0.003851175,,,,,,,0.026614584,0.026716502,0.02706975,0.027626522,,,,,,,0.354738565,0.47146799,0.547895103,0.804594854,,,,,,,0.001484192,0.002188938,0.002190323,0.0022109,,,,,,,0.056277796,0.061144171,0.060953424,0.060757612,,,,,,,0.015569581,0.020094195,0.020078671,0.020169579,,,,,,,0.007135964,0.007125138,0.007057188,0.007113681,,,,,,,0.074264016,0.084904267,0.093430364,0.115603976,, +Commercial truck,B20,2030,,,,,,0.000838744,0.001237642,0.001237922,0.001247064,,,,,,,0.079398672,0.094512239,0.112486698,0.156722219,,,,,,,0.335029779,0.394617016,0.420709673,0.48475825,,,,,,,814.0118762,813.2708905,806.6787696,804.7954711,,,,,,,0.002691796,0.002815878,0.003082702,0.003729562,,,,,,,0.026380518,0.026486348,0.026860388,0.027500689,,,,,,,0.327225743,0.444838599,0.520519983,0.667961087,,,,,,,0.001458272,0.002151812,0.002152298,0.002168193,,,,,,,0.053885886,0.058673109,0.058469478,0.058204556,,,,,,,0.015122541,0.019574992,0.019552861,0.019609181,,,,,,,0.007001634,0.00699526,0.006938559,0.00692236,,,,,,,0.090415926,0.104392651,0.120777942,0.16164998,,,,,,,0.000843949,0.00124561,0.00124631,0.001256158,,,,,,,0.076149081,0.090576056,0.106956159,0.147346429,,,,,,,0.34021173,0.400836001,0.427279539,0.491810154,,,,,,,824.9145298,823.9619268,816.9274271,814.1968846,,,,,,,0.002714683,0.002837745,0.003103548,0.00374773,,,,,,,0.02635563,0.026461893,0.026837594,0.027482874,,,,,,,0.328157197,0.446579997,0.522494589,0.669960866,,,,,,,0.001467322,0.002165665,0.002166883,0.002184004,,,,,,,0.054799381,0.059632619,0.05947677,0.05929481,,,,,,,0.01528827,0.019773196,0.019761226,0.019834952,,,,,,,0.007095412,0.007087218,0.007026712,0.007003225,,,,,,,0.087647438,0.100982862,0.115879019,0.153166774,,,,,,,0.00086939,0.001283083,0.001283618,0.001293421,,,,,,,0.082220512,0.097789394,0.115741252,0.159775122,,,,,,,0.353988995,0.417007691,0.444170845,0.510042859,,,,,,,838.7849944,837.6863636,830.0035774,826.3838051,,,,,,,0.002888826,0.003015748,0.0032876,0.003943267,,,,,,,0.026675711,0.026775862,0.02712906,0.027728717,,,,,,,0.338813179,0.460734855,0.538623614,0.68944462,,,,,,,0.001511554,0.002230814,0.002231745,0.00224879,,,,,,,0.059226046,0.064195606,0.064004257,0.063766558,,,,,,,0.016097008,0.020715188,0.020697124,0.020763342,,,,,,,0.007214718,0.007205267,0.007139185,0.00710805,,,,,,,0.093505455,0.107895689,0.124230994,0.164872972,,,,,,,0.000820041,0.001210114,0.001210214,0.00121878,,,,,,,0.077627744,0.092457915,0.110327233,0.154459114,,,,,,,0.332694938,0.392009454,0.418019237,0.481578258,,,,,,,808.6818382,807.9881673,801.9540078,801.0029635,,,,,,,0.002566704,0.00268613,0.002944416,0.003573505,,,,,,,0.026127821,0.026235664,0.026617801,0.027277425,,,,,,,0.316772444,0.431055739,0.505043068,0.649487226,,,,,,,0.001425754,0.002103951,0.002104124,0.002119018,,,,,,,0.050955784,0.055638229,0.055441051,0.05517949,,,,,,,0.01457055,0.01892464,0.018901575,0.018952756,,,,,,,0.006955787,0.006949821,0.00689792,0.006889738,,,,,,,0.088704727,0.102420539,0.118723207,0.159523985,,,,,,,0.00086393,0.001275037,0.001275565,0.001285297,,,,,,,0.064233984,0.076037281,0.086065111,0.110858147,,,,,,,0.36397397,0.429031527,0.457473455,0.525410677,,,,,,,851.5277961,849.7945073,840.9193911,834.8229526,,,,,,,0.002852913,0.002978839,0.003248976,0.003901151,,,,,,,0.026610205,0.026711161,0.027067445,0.027673576,,,,,,,0.331121187,0.450097423,0.527560151,0.678448042,,,,,,,0.001502061,0.002216826,0.002217746,0.002234665,,,,,,,0.058338909,0.06327869,0.063092911,0.062863209,,,,,,,0.015931753,0.020521231,0.020503804,0.020570336,,,,,,,0.007324322,0.007309415,0.007233076,0.007180638,,,,,,,0.077096038,0.087979583,0.096937383,0.11967761,,,,,,,0.000836645,0.001234794,0.001235223,0.001244492,,,,,,,0.066642939,0.079075611,0.091267167,0.121442703,,,,,,,0.347124279,0.409152563,0.436329625,0.501899789,,,,,,,827.8958124,826.6380172,819.2527122,815.6725856,,,,,,,0.00267219,0.002793314,0.003055069,0.003690522,,,,,,,0.026278462,0.026383811,0.026756639,0.027397836,,,,,,,0.320178575,0.435638985,0.510742915,0.657305618,,,,,,,0.001454624,0.002146862,0.002147607,0.002163721,,,,,,,0.053825868,0.058613228,0.058443384,0.058233543,,,,,,,0.015095401,0.019540653,0.019524256,0.01958882,,,,,,,0.007121054,0.007110235,0.007046713,0.007015918,,,,,,,0.078895149,0.090374183,0.10137723,0.129171818,,,,,,,0.000840433,0.001240246,0.001240642,0.001249963,,,,,,,0.061859105,0.073258638,0.083106037,0.107502738,,,,,,,0.355733067,0.419430899,0.447808145,0.515611121,,,,,,,843.0623905,841.3919335,832.9463636,827.5031926,,,,,,,0.002699989,0.002823391,0.003089199,0.003733622,,,,,,,0.026365825,0.026471303,0.026844221,0.027483374,,,,,,,0.323812285,0.440317293,0.516664292,0.665900759,,,,,,,0.001461209,0.002156337,0.002157026,0.002173233,,,,,,,0.054259448,0.059062044,0.058874637,0.058637282,,,,,,,0.01518644,0.019649647,0.019630711,0.019692283,,,,,,,0.007251509,0.007237139,0.007164497,0.007117677,,,,,,,0.074757799,0.085269039,0.094071965,0.116463042,,,,,,,0.000850237,0.001254947,0.001255831,0.001266068,,,,,,,0.069798789,0.082857563,0.096080479,0.128738466,,,,,,,0.350597601,0.413236207,0.440790535,0.50728864,,,,,,,838.9544659,837.6159832,829.7353874,825.4070136,,,,,,,0.002755756,0.00287985,0.003147891,0.003796862,,,,,,,0.026403284,0.026508687,0.026881213,0.027520475,,,,,,,0.341840158,0.466005661,0.544578613,0.695891425,,,,,,,0.001478253,0.002181896,0.002183434,0.002201233,,,,,,,0.05587491,0.060748264,0.060605252,0.060447109,,,,,,,0.015485533,0.020004935,0.01999638,0.020076911,,,,,,,0.007216175,0.007204662,0.007136878,0.007099648,,,,,,,0.082044118,0.09410178,0.106048851,0.136128039,,,,,,,0.00085426,0.001260534,0.001261016,0.001270707,,,,,,,0.061968078,0.073340632,0.082915334,0.106628982,,,,,,,0.346053175,0.407689962,0.434905708,0.501104681,,,,,,,832.0891154,830.6591953,822.2571224,816.8390753,,,,,,,0.002792298,0.002919743,0.00319287,0.003852916,,,,,,,0.026561058,0.026665519,0.027034023,0.027661666,,,,,,,0.337667822,0.459013382,0.53689007,0.688160235,,,,,,,0.001485248,0.00219161,0.002192449,0.002209299,,,,,,,0.056312528,0.06118887,0.060985791,0.060727632,,,,,,,0.015579701,0.020114551,0.020094473,0.020156991,,,,,,,0.007157123,0.007144824,0.007072557,0.007025951,,,,,,,0.074598673,0.085089523,0.093640334,0.115395854, +Commercial truck,B20,2035,,,,,,,0.000839704,0.00123821,0.001238335,0.001247354,,,,,,,0.079563875,0.094695908,0.112530948,0.156548927,,,,,,,0.335255347,0.394825145,0.42073678,0.484506477,,,,,,,814.5794785,814.0417003,807.2893623,803.5971011,,,,,,,0.002693996,0.002818218,0.003083117,0.003726823,,,,,,,0.02637056,0.026471964,0.02684919,0.027491132,,,,,,,0.327557327,0.44511146,0.520647009,0.632575285,,,,,,,0.001459941,0.002152799,0.002153017,0.002168697,,,,,,,0.053901836,0.058686391,0.058479302,0.058211896,,,,,,,0.015133799,0.019582112,0.019558067,0.019612889,,,,,,,0.007006516,0.00700189,0.006943812,0.006912052,,,,,,,0.09059173,0.104593564,0.120843909,0.16148174,,,,,,,0.000844907,0.00124616,0.001246712,0.001256439,,,,,,,0.076300106,0.090742777,0.1069957,0.147186964,,,,,,,0.340418896,0.401013041,0.427283871,0.491540797,,,,,,,825.4878969,824.7412899,817.5467774,813.0051527,,,,,,,0.002716798,0.002839971,0.003103889,0.003744949,,,,,,,0.026345669,0.02644751,0.026826377,0.027473276,,,,,,,0.328475491,0.446828612,0.52260526,0.634225196,,,,,,,0.001468988,0.002166622,0.002167581,0.002184494,,,,,,,0.05481427,0.059644195,0.059485297,0.059301072,,,,,,,0.01529937,0.019779934,0.019766148,0.019838439,,,,,,,0.007100343,0.00709392,0.007032039,0.006992975,,,,,,,0.087810318,0.101168338,0.11594095,0.153011725,,,,,,,0.000870366,0.001283661,0.001284039,0.001293718,,,,,,,0.08239094,0.097980402,0.1157911,0.159607696,,,,,,,0.354204747,0.417196391,0.444181313,0.509775157,,,,,,,839.3804146,838.4970335,830.6426831,825.1410637,,,,,,,0.002891089,0.003018168,0.003288058,0.003940538,,,,,,,0.02666623,0.026762185,0.027118454,0.027719719,,,,,,,0.339148851,0.461003584,0.538747347,0.652504465,,,,,,,0.001513251,0.00223182,0.002232478,0.002249306,,,,,,,0.059242049,0.064208806,0.064014012,0.063773817,,,,,,,0.016108426,0.020722404,0.020702399,0.020767101,,,,,,,0.007219838,0.007212239,0.007144682,0.007097359,,,,,,,0.093687041,0.108104669,0.124303075,0.164709773,,,,,,,0.000820993,0.001210667,0.001210619,0.001219066,,,,,,,0.077786133,0.092631756,0.110364579,0.154279892,,,,,,,0.3328907,0.392169834,0.418013424,0.481304452,,,,,,,809.231526,808.7325168,802.5479762,799.8281896,,,,,,,0.002568779,0.002688315,0.002944752,0.003570767,,,,,,,0.026117721,0.026221048,0.026606378,0.027267594,,,,,,,0.317076085,0.431287263,0.505140138,0.615010712,,,,,,,0.00142741,0.002104912,0.002104828,0.002119515,,,,,,,0.050971252,0.055650838,0.055450398,0.055186449,,,,,,,0.01458167,0.018931534,0.018906638,0.018956375,,,,,,,0.006960516,0.006956225,0.006903028,0.006879634,,,,,,,0.088873781,0.102611694,0.118782362,0.159350664,,,,,,,0.000864903,0.001275611,0.001275983,0.001285591,,,,,,,0.064339287,0.076152889,0.086098718,0.110767099,,,,,,,0.364147454,0.429151562,0.457431874,0.525100421,,,,,,,852.1276794,850.6121702,841.5686363,833.6013525,,,,,,,0.002855144,0.002981218,0.003249411,0.003898417,,,,,,,0.026600652,0.026697386,0.027056742,0.027664488,,,,,,,0.331434657,0.450329387,0.527649656,0.642101787,,,,,,,0.001503752,0.002217824,0.002218472,0.002235177,,,,,,,0.058354693,0.0632916,0.063102411,0.06287029,,,,,,,0.015943108,0.020528367,0.020509013,0.02057405,,,,,,,0.007329483,0.007316446,0.00723866,0.007170131,,,,,,,0.077217415,0.088118935,0.096994784,0.119585928,,,,,,,0.000837604,0.001235347,0.001235627,0.001244777,,,,,,,0.066760078,0.079203126,0.091298736,0.121324542,,,,,,,0.347299179,0.409276635,0.436294727,0.501600047,,,,,,,828.4628615,827.4066596,819.8676446,814.4911418,,,,,,,0.002674279,0.002795512,0.003055403,0.003687769,,,,,,,0.026268591,0.026369516,0.026745497,0.027388274,,,,,,,0.320477252,0.435856047,0.510825637,0.622227482,,,,,,,0.00145629,0.002147822,0.002148309,0.002164218,,,,,,,0.053840934,0.05862508,0.058452155,0.058240012,,,,,,,0.01510653,0.019547444,0.019529236,0.019592369,,,,,,,0.007125932,0.007116846,0.007052001,0.007005756,,,,,,,0.079026488,0.090523144,0.101431724,0.129055333,,,,,,,0.000841393,0.001240807,0.001241052,0.001250252,,,,,,,0.061958889,0.073366914,0.083135247,0.107410065,,,,,,,0.355891298,0.419528107,0.447750567,0.515289045,,,,,,,843.6486411,842.1892589,833.5829989,826.3130469,,,,,,,0.002702152,0.002825684,0.003089586,0.003730873,,,,,,,0.026355912,0.026456976,0.026833064,0.027473839,,,,,,,0.324112051,0.440530975,0.516740044,0.630328626,,,,,,,0.001462878,0.002157314,0.002157739,0.002173734,,,,,,,0.054275,0.059074714,0.058884004,0.058644249,,,,,,,0.015197647,0.019656633,0.019635825,0.019695925,,,,,,,0.007256551,0.007243997,0.007169974,0.007107441,,,,,,,0.074873602,0.085400968,0.09412486,0.116370306,,,,,,,0.000851197,0.001255495,0.001256231,0.001266349,,,,,,,0.069925428,0.082996384,0.096115323,0.128611488,,,,,,,0.350781354,0.413373801,0.440763561,0.506991468,,,,,,,839.5382557,838.410205,830.3680506,824.2118026,,,,,,,0.002757879,0.002882083,0.003148228,0.00379406,,,,,,,0.026393397,0.026494404,0.026870085,0.027510963,,,,,,,0.342149598,0.466225593,0.544671418,0.658163802,,,,,,,0.001479923,0.00218285,0.002184129,0.00220172,,,,,,,0.055889553,0.060759447,0.060613476,0.060453119,,,,,,,0.015496627,0.020011603,0.02000125,0.020080354,,,,,,,0.007221197,0.007211493,0.00714232,0.007089368,,,,,,,0.08218477,0.094261924,0.106106866,0.136003315,,,,,,,0.000855227,0.00126111,0.001261435,0.001271,,,,,,,0.06207036,0.073453418,0.082949074,0.106543121,,,,,,,0.346271517,0.407884792,0.434919843,0.50083771,,,,,,,832.680941,831.4653885,822.8972696,815.6460789,,,,,,,0.002794581,0.002922183,0.003193335,0.003850167,,,,,,,0.026551217,0.026651303,0.027023003,0.027652297,,,,,,,0.338006898,0.459288476,0.537017426,0.651481066,,,,,,,0.001486929,0.002192612,0.002193178,0.002209807,,,,,,,0.056328734,0.061202474,0.060995855,0.060735134,,,,,,,0.015591059,0.020121797,0.020099766,0.020160738,,,,,,,0.007162214,0.007151757,0.00707806,0.007015691,,,,,,,0.074716785,0.08522565,0.093697384,0.115309197 +Commercial truck,B20,2040,,,,,,,,0.000839686,0.001238974,0.001239188,,,,,,,,0.079692586,0.094688625,0.112564461,,,,,,,,0.335349372,0.394762159,0.420713338,,,,,,,,815.3301086,815.1458442,808.5234396,,,,,,,,0.002695549,0.002817284,0.003082833,,,,,,,,0.026354048,0.026444938,0.026820691,,,,,,,,0.327834004,0.445193731,0.520711766,,,,,,,,0.00145991,0.002154128,0.0021545,,,,,,,,0.053909517,0.05870899,0.058503344,,,,,,,,0.01513456,0.019592285,0.019569272,,,,,,,,0.007012971,0.007011387,0.006954425,,,,,,,,0.090741643,0.104631788,0.12092575,,,,,,,,0.000844872,0.001246889,0.001247529,,,,,,,,0.076416076,0.090735318,0.107024359,,,,,,,,0.34048156,0.400897063,0.42720299,,,,,,,,826.2466497,825.8598067,818.7983623,,,,,,,,0.002718237,0.00283889,0.003103424,,,,,,,,0.026329138,0.02642042,0.026797788,,,,,,,,0.328733385,0.446879578,0.522629623,,,,,,,,0.001468926,0.00216789,0.002169002,,,,,,,,0.054819945,0.059663417,0.059505862,,,,,,,,0.015299708,0.019789333,0.019776565,,,,,,,,0.007106869,0.007103543,0.007042804,,,,,,,,0.087948706,0.101206955,0.116018903,,,,,,,,0.000870337,0.001284432,0.0012849,,,,,,,,0.082526081,0.097983784,0.115838803,,,,,,,,0.354274899,0.417087292,0.444114762,,,,,,,,840.1782892,839.6775806,831.9519597,,,,,,,,0.002892698,0.003017261,0.003287859,,,,,,,,0.026650504,0.026736515,0.027091489,,,,,,,,0.339427617,0.461076171,0.538804011,,,,,,,,0.001513201,0.002233161,0.002233974,,,,,,,,0.059249266,0.064230951,0.064037521,,,,,,,,0.016109023,0.02073258,0.020713604,,,,,,,,0.007226701,0.007222392,0.007155943,,,,,,,,0.0938444,0.108155142,0.124400378,,,,,,,,0.000820975,0.001211414,0.001211454,,,,,,,,0.077906159,0.0926121,0.110381238,,,,,,,,0.332939916,0.392035154,0.417908865,,,,,,,,809.9482714,809.7814208,803.7293925,,,,,,,,0.00257021,0.002687306,0.002944313,,,,,,,,0.026100958,0.026193563,0.026577274,,,,,,,,0.317315802,0.431312147,0.505132964,,,,,,,,0.001427377,0.002106211,0.00210628,,,,,,,,0.05097842,0.055672418,0.055473432,,,,,,,,0.014582361,0.018941409,0.018917544,,,,,,,,0.006966681,0.006965246,0.00691319,,,,,,,,0.089014754,0.102637032,0.118847329,,,,,,,,0.000864874,0.001276375,0.001276837,,,,,,,,0.064420093,0.076168979,0.086139995,,,,,,,,0.364148045,0.428917631,0.45723434,,,,,,,,852.9339877,851.8129234,842.9004244,,,,,,,,0.002856719,0.002980281,0.003249164,,,,,,,,0.026584827,0.026671519,0.02702955,,,,,,,,0.331680295,0.450327432,0.52762425,,,,,,,,0.001503702,0.002219153,0.002219956,,,,,,,,0.058361666,0.063313225,0.063125416,,,,,,,,0.015943669,0.020538408,0.020520089,,,,,,,,0.007336418,0.007326776,0.007250115,,,,,,,,0.077324685,0.088181884,0.097086917,,,,,,,,0.000837574,0.001236084,0.001236452,,,,,,,,0.066847994,0.0792034,0.091325656,,,,,,,,0.347308897,0.409068416,0.436115783,,,,,,,,829.2085223,828.5088252,821.1032311,,,,,,,,0.002675705,0.002794459,0.003054947,,,,,,,,0.026252171,0.026342634,0.026717087,,,,,,,,0.320706546,0.435847971,0.510784105,,,,,,,,0.001456238,0.002149104,0.002149745,,,,,,,,0.053847029,0.058645012,0.058473461,,,,,,,,0.015106972,0.019557012,0.01953983,,,,,,,,0.007132346,0.007126328,0.007062629,,,,,,,,0.079138631,0.090568661,0.101507846,,,,,,,,0.000841369,0.001241561,0.001241893,,,,,,,,0.062033481,0.073375197,0.083166279,,,,,,,,0.355871793,0.419260578,0.447512934,,,,,,,,844.4289974,843.3491078,834.8768537,,,,,,,,0.00270366,0.002824701,0.003089237,,,,,,,,0.026339451,0.026430049,0.026804657,,,,,,,,0.324339321,0.440502205,0.516679697,,,,,,,,0.001462836,0.002158623,0.002159202,,,,,,,,0.054281963,0.059096133,0.058906842,,,,,,,,0.015198255,0.019666545,0.019646763,,,,,,,,0.007263262,0.007253976,0.007181101,,,,,,,,0.074974372,0.085455493,0.094206444,,,,,,,,0.000851157,0.001256218,0.001257042,,,,,,,,0.070021689,0.082997108,0.096145799,,,,,,,,0.350802807,0.413180928,0.44060323,,,,,,,,840.3146965,839.5607546,831.6524182,,,,,,,,0.002759317,0.002880974,0.003147745,,,,,,,,0.026376993,0.026467537,0.026841738,,,,,,,,0.342390141,0.466238627,0.544647185,,,,,,,,0.001479852,0.002184107,0.00218554,,,,,,,,0.055894753,0.060777894,0.060633226,,,,,,,,0.015496851,0.020020845,0.020011505,,,,,,,,0.007227874,0.007221389,0.007153368,,,,,,,,0.082305461,0.094309119,0.106187613,,,,,,,,0.000855207,0.001261882,0.001262296,,,,,,,,0.062149687,0.073472491,0.082992474,,,,,,,,0.346348927,0.407784176,0.434861814,,,,,,,,833.4758214,832.6486445,824.2102311,,,,,,,,0.002796211,0.002921286,0.003193142,,,,,,,,0.026534889,0.0266246,0.026994928,,,,,,,,0.338289428,0.459365698,0.537080048,,,,,,,,0.001486893,0.002193954,0.002194675,,,,,,,,0.05633658,0.061225422,0.061020262,,,,,,,,0.015591816,0.020132081,0.020111091,,,,,,,,0.007169052,0.007161936,0.007089354,,,,,,,,0.074822105,0.085290482,0.093790503 +Commercial truck,B20,2045,,,,,,,,,0.000839816,0.001238669,,,,,,,,,0.079761236,0.094767819,,,,,,,,,0.335486667,0.394890658,,,,,,,,,814.886647,814.7058311,,,,,,,,,0.002696936,0.002818918,,,,,,,,,0.026367524,0.026458694,,,,,,,,,0.328028532,0.445387799,,,,,,,,,0.001460135,0.002153597,,,,,,,,,0.053903928,0.058697942,,,,,,,,,0.015135134,0.019587975,,,,,,,,,0.007009157,0.007007603,,,,,,,,,0.090788286,0.104688194,,,,,,,,,0.000845017,0.001246602,,,,,,,,,0.076479362,0.0908077,,,,,,,,,0.340640935,0.401050978,,,,,,,,,825.7967795,825.4130697,,,,,,,,,0.002719683,0.002840583,,,,,,,,,0.026342651,0.02643422,,,,,,,,,0.32893786,0.447087116,,,,,,,,,0.001469178,0.002167391,,,,,,,,,0.054816047,0.059654107,,,,,,,,,0.015300647,0.019785422,,,,,,,,,0.007103001,0.007099699,,,,,,,,,0.087990181,0.10125681,,,,,,,,,0.000870474,0.001284127,,,,,,,,,0.08259111,0.098058138,,,,,,,,,0.35443461,0.417240875,,,,,,,,,839.6956977,839.1982482,,,,,,,,,0.002894104,0.003018908,,,,,,,,,0.026663306,0.026749562,,,,,,,,,0.339629115,0.461276838,,,,,,,,,0.001513438,0.002232632,,,,,,,,,0.059244059,0.064220214,,,,,,,,,0.016109709,0.020728316,,,,,,,,,0.007222551,0.00721827,,,,,,,,,0.093886527,0.108205912,,,,,,,,,0.000821107,0.001211115,,,,,,,,,0.077978817,0.092696265,,,,,,,,,0.333104804,0.392196085,,,,,,,,,809.5349993,809.3721086,,,,,,,,,0.002571587,0.00268893,,,,,,,,,0.026114666,0.026207568,,,,,,,,,0.317524517,0.431528197,,,,,,,,,0.001427607,0.002105691,,,,,,,,,0.050973244,0.055661809,,,,,,,,,0.014583014,0.018937212,,,,,,,,,0.006963128,0.006961726,,,,,,,,,0.08906588,0.102698836,,,,,,,,,0.000865011,0.001276073,,,,,,,,,0.064453181,0.076203757,,,,,,,,,0.364360469,0.429133393,,,,,,,,,852.4409503,851.3224525,,,,,,,,,0.002858128,0.002981933,,,,,,,,,0.02659771,0.026684668,,,,,,,,,0.331904147,0.450560701,,,,,,,,,0.00150394,0.002218628,,,,,,,,,0.058356656,0.063302722,,,,,,,,,0.015944392,0.020534206,,,,,,,,,0.007332178,0.007322557,,,,,,,,,0.077336882,0.088195584,,,,,,,,,0.000837714,0.001235792,,,,,,,,,0.066894075,0.079254451,,,,,,,,,0.347506528,0.409267669,,,,,,,,,828.7673963,828.0713351,,,,,,,,,0.002677119,0.002796121,,,,,,,,,0.026265568,0.026356332,,,,,,,,,0.320927512,0.436080225,,,,,,,,,0.001456482,0.002148597,,,,,,,,,0.053842721,0.05863532,,,,,,,,,0.015107815,0.01955301,,,,,,,,,0.007128552,0.007122563,,,,,,,,,0.079164307,0.090598899,,,,,,,,,0.000841504,0.001241261,,,,,,,,,0.062068687,0.073412671,,,,,,,,,0.356096436,0.419491707,,,,,,,,,843.9585096,842.8808503,,,,,,,,,0.002705064,0.002826351,,,,,,,,,0.026352879,0.026443763,,,,,,,,,0.324569924,0.440746416,,,,,,,,,0.001463071,0.002158102,,,,,,,,,0.054276971,0.05908569,,,,,,,,,0.015198959,0.019662371,,,,,,,,,0.007259216,0.007249947,,,,,,,,,0.074989156,0.085472369,,,,,,,,,0.000851306,0.001255935,,,,,,,,,0.070071232,0.083052369,,,,,,,,,0.350995829,0.413374388,,,,,,,,,839.8488332,839.0974406,,,,,,,,,0.002760784,0.00288269,,,,,,,,,0.026390397,0.026481221,,,,,,,,,0.342612305,0.466467457,,,,,,,,,0.001480112,0.002183615,,,,,,,,,0.055891255,0.060769006,,,,,,,,,0.015497885,0.020017028,,,,,,,,,0.007223867,0.007217404,,,,,,,,,0.08233373,0.094342622,,,,,,,,,0.000855337,0.001261575,,,,,,,,,0.062179943,0.073503999,,,,,,,,,0.346504507,0.40793425,,,,,,,,,832.9899326,832.1653527,,,,,,,,,0.002797614,0.002922935,,,,,,,,,0.026548209,0.026638188,,,,,,,,,0.338490253,0.459566044,,,,,,,,,0.00148712,0.00219342,,,,,,,,,0.056330891,0.061214262,,,,,,,,,0.015592389,0.020127743,,,,,,,,,0.007164871,0.007157778,,,,,,,,,0.074832019,0.085301515 +Commercial truck,B20,2050,,,,,,,,,,0.000839869,,,,,,,,,,0.079802703,,,,,,,,,,0.335539177,,,,,,,,,,815.006266,,,,,,,,,,0.002697529,,,,,,,,,,0.026366355,,,,,,,,,,0.328133903,,,,,,,,,,0.001460228,,,,,,,,,,0.053904845,,,,,,,,,,0.015135763,,,,,,,,,,0.007010186,,,,,,,,,,0.09083179,,,,,,,,,,0.000845069,,,,,,,,,,0.076516983,,,,,,,,,,0.340690623,,,,,,,,,,825.9171598,,,,,,,,,,0.002720261,,,,,,,,,,0.026341476,,,,,,,,,,0.329040851,,,,,,,,,,0.001469268,,,,,,,,,,0.054816816,,,,,,,,,,0.015301243,,,,,,,,,,0.007104035,,,,,,,,,,0.08803019,,,,,,,,,,0.000870529,,,,,,,,,,0.082633278,,,,,,,,,,0.354486434,,,,,,,,,,839.8182455,,,,,,,,,,0.002894712,,,,,,,,,,0.026662173,,,,,,,,,,0.339735912,,,,,,,,,,0.001513535,,,,,,,,,,0.059244982,,,,,,,,,,0.01611036,,,,,,,,,,0.007223605,,,,,,,,,,0.093930844,,,,,,,,,,0.000821158,,,,,,,,,,0.078019051,,,,,,,,,,0.333152291,,,,,,,,,,809.6537243,,,,,,,,,,0.002572151,,,,,,,,,,0.02611348,,,,,,,,,,0.317624273,,,,,,,,,,0.001427696,,,,,,,,,,0.050974057,,,,,,,,,,0.014583606,,,,,,,,,,0.006964148,,,,,,,,,,0.089108252,,,,,,,,,,0.000865066,,,,,,,,,,0.064477495,,,,,,,,,,0.364407077,,,,,,,,,,852.56417,,,,,,,,,,0.002858729,,,,,,,,,,0.026596572,,,,,,,,,,0.332007475,,,,,,,,,,0.001504035,,,,,,,,,,0.058357556,,,,,,,,,,0.015945033,,,,,,,,,,0.007333236,,,,,,,,,,0.077364677,,,,,,,,,,0.000837766,,,,,,,,,,0.066922317,,,,,,,,,,0.347551811,,,,,,,,,,828.8875222,,,,,,,,,,0.002677688,,,,,,,,,,0.026264399,,,,,,,,,,0.321026971,,,,,,,,,,0.001456572,,,,,,,,,,0.053843496,,,,,,,,,,0.015108406,,,,,,,,,,0.007129583,,,,,,,,,,0.07919561,,,,,,,,,,0.000841557,,,,,,,,,,0.062091981,,,,,,,,,,0.356140719,,,,,,,,,,844.0806585,,,,,,,,,,0.00270565,,,,,,,,,,0.026351713,,,,,,,,,,0.324670608,,,,,,,,,,0.001463163,,,,,,,,,,0.054277821,,,,,,,,,,0.015199574,,,,,,,,,,0.007260267,,,,,,,,,,0.075015965,,,,,,,,,,0.000851358,,,,,,,,,,0.07010196,,,,,,,,,,0.351042912,,,,,,,,,,839.9703446,,,,,,,,,,0.002761366,,,,,,,,,,0.026389227,,,,,,,,,,0.342714778,,,,,,,,,,0.001480203,,,,,,,,,,0.055892001,,,,,,,,,,0.01549848,,,,,,,,,,0.007224913,,,,,,,,,,0.082367399,,,,,,,,,,0.000855392,,,,,,,,,,0.062203404,,,,,,,,,,0.346557162,,,,,,,,,,833.1112299,,,,,,,,,,0.002798226,,,,,,,,,,0.026547038,,,,,,,,,,0.338597875,,,,,,,,,,0.001487215,,,,,,,,,,0.056331848,,,,,,,,,,0.015593032,,,,,,,,,,0.007165914,,,,,,,,,,0.074858899 +Commercial truck,E0,1990,0.103195896,,,,,,,,,,0.224938757,,,,,,,,,,67.48665183,,,,,,,,,,857.4836821,,,,,,,,,,0.081238515,,,,,,,,,,0.046237475,,,,,,,,,,7.551794309,,,,,,,,,,0.210680275,,,,,,,,,,0.501053261,,,,,,,,,,0.410881323,,,,,,,,,,0.03810162,,,,,,,,,,5.080096563,,,,,,,,,,0.088197762,,,,,,,,,,0.2217198,,,,,,,,,,67.54347868,,,,,,,,,,860.5114303,,,,,,,,,,0.080816537,,,,,,,,,,0.046209946,,,,,,,,,,7.60508569,,,,,,,,,,0.184419576,,,,,,,,,,0.443681371,,,,,,,,,,0.359366295,,,,,,,,,,0.042742352,,,,,,,,,,5.130446854,,,,,,,,,,0.101480881,,,,,,,,,,0.243679832,,,,,,,,,,73.74641225,,,,,,,,,,868.591645,,,,,,,,,,0.083658875,,,,,,,,,,0.046596251,,,,,,,,,,7.841429225,,,,,,,,,,0.204772877,,,,,,,,,,0.497284469,,,,,,,,,,0.403760731,,,,,,,,,,0.060824193,,,,,,,,,,5.598355057,,,,,,,,,,0.110067871,,,,,,,,,,0.228447128,,,,,,,,,,70.89526801,,,,,,,,,,853.2423637,,,,,,,,,,0.078385759,,,,,,,,,,0.045876977,,,,,,,,,,7.701895938,,,,,,,,,,0.221121122,,,,,,,,,,0.525401123,,,,,,,,,,0.434442257,,,,,,,,,,0.055704344,,,,,,,,,,5.214836683,,,,,,,,,,0.04997005,,,,,,,,,,0.20730106,,,,,,,,,,64.6592233,,,,,,,,,,862.3769149,,,,,,,,,,0.082982412,,,,,,,,,,0.046508461,,,,,,,,,,7.378924157,,,,,,,,,,0.112560738,,,,,,,,,,0.28848104,,,,,,,,,,0.219654737,,,,,,,,,,0.049878931,,,,,,,,,,5.352566324,,,,,,,,,,0.05851209,,,,,,,,,,0.20932922,,,,,,,,,,66.41045689,,,,,,,,,,852.9466519,,,,,,,,,,0.079712709,,,,,,,,,,0.046066802,,,,,,,,,,7.515855331,,,,,,,,,,0.129611386,,,,,,,,,,0.322316336,,,,,,,,,,0.252704917,,,,,,,,,,0.054903251,,,,,,,,,,5.209359164,,,,,,,,,,0.047033189,,,,,,,,,,0.199072273,,,,,,,,,,63.94005617,,,,,,,,,,858.3224153,,,,,,,,,,0.08095077,,,,,,,,,,0.046208125,,,,,,,,,,7.383507592,,,,,,,,,,0.108429325,,,,,,,,,,0.274944887,,,,,,,,,,0.210553221,,,,,,,,,,0.050170736,,,,,,,,,,5.170102182,,,,,,,,,,0.06848633,,,,,,,,,,0.215444226,,,,,,,,,,66.91188295,,,,,,,,,,861.9021552,,,,,,,,,,0.08153801,,,,,,,,,,0.046269538,,,,,,,,,,8.013313463,,,,,,,,,,0.147794099,,,,,,,,,,0.364555582,,,,,,,,,,0.288584024,,,,,,,,,,0.049461754,,,,,,,,,,5.322255458,,,,,,,,,,0.04721462,,,,,,,,,,0.197668484,,,,,,,,,,60.66753514,,,,,,,,,,855.107765,,,,,,,,,,0.083366734,,,,,,,,,,0.046498291,,,,,,,,,,7.277071194,,,,,,,,,,0.109021415,,,,,,,,,,0.275631509,,,,,,,,,,0.209779231,,,,,,,,,,0.02352749,,,,,,,,,,5.001205509,,,,,,,,, +Commercial truck,E0,1995,0.022319522,0.061854676,,,,,,,,,0.125220794,0.187633445,,,,,,,,,64.36534955,67.77723923,,,,,,,,,701.7833513,734.6173692,,,,,,,,,0.074292062,0.095884207,,,,,,,,,0.046210222,0.046293724,,,,,,,,,4.877686929,6.138775402,,,,,,,,,0.055101808,0.126177204,,,,,,,,,0.158800193,0.315053049,,,,,,,,,0.108099604,0.246352293,,,,,,,,,0.031135963,0.015625708,,,,,,,,,3.02458363,4.327426147,,,,,,,,,0.019282604,0.052948368,,,,,,,,,0.125085937,0.184662222,,,,,,,,,65.62743843,67.89187431,,,,,,,,,708.9869052,739.8498469,,,,,,,,,0.074076649,0.095405172,,,,,,,,,0.046179296,0.046266083,,,,,,,,,4.936502767,6.142282112,,,,,,,,,0.048662078,0.110778242,,,,,,,,,0.146061861,0.281673221,,,,,,,,,0.096074294,0.216057754,,,,,,,,,0.035164177,0.015864768,,,,,,,,,3.078627534,4.383731139,,,,,,,,,0.021587089,0.060527539,,,,,,,,,0.137228631,0.200725611,,,,,,,,,70.91419022,71.85202892,,,,,,,,,713.5940326,746.0338033,,,,,,,,,0.077012004,0.098777187,,,,,,,,,0.046571909,0.046648956,,,,,,,,,5.139371385,6.098389042,,,,,,,,,0.052318899,0.121461282,,,,,,,,,0.159167647,0.310769007,,,,,,,,,0.10463842,0.238773379,,,,,,,,,0.050016752,0.01632914,,,,,,,,,3.383238105,4.698053958,,,,,,,,,0.023401001,0.065620431,,,,,,,,,0.12921533,0.193170784,,,,,,,,,68.41813977,70.0123902,,,,,,,,,701.9402538,732.9067453,,,,,,,,,0.071542201,0.09250795,,,,,,,,,0.045846083,0.045934644,,,,,,,,,5.000225915,6.152513263,,,,,,,,,0.056568058,0.130991559,,,,,,,,,0.160439228,0.325252421,,,,,,,,,0.111571656,0.257396485,,,,,,,,,0.045835939,0.027558875,,,,,,,,,3.171423988,4.477308698,,,,,,,,,0.011107375,0.029746272,,,,,,,,,0.122701769,0.17389427,,,,,,,,,66.22730929,66.28042172,,,,,,,,,718.221287,744.0721302,,,,,,,,,0.076335818,0.097974109,,,,,,,,,0.046483186,0.046561199,,,,,,,,,4.827302433,5.942072893,,,,,,,,,0.029654694,0.066610055,,,,,,,,,0.109033007,0.188273024,,,,,,,,,0.060894538,0.131016748,,,,,,,,,0.041519823,0.016194723,,,,,,,,,3.279450211,4.679672073,,,,,,,,,0.012908198,0.034821936,,,,,,,,,0.122293904,0.174629203,,,,,,,,,66.98867758,66.69002545,,,,,,,,,708.6214437,735.3073844,,,,,,,,,0.073030983,0.094097559,,,,,,,,,0.046036707,0.046123607,,,,,,,,,4.901166119,5.939798262,,,,,,,,,0.03397451,0.076628962,,,,,,,,,0.11424427,0.205908348,,,,,,,,,0.068625309,0.149734771,,,,,,,,,0.045622121,0.016077665,,,,,,,,,3.183230667,4.507175735,,,,,,,,,0.010664951,0.028128527,,,,,,,,,0.118190692,0.168996071,,,,,,,,,65.91251717,66.1312883,,,,,,,,,716.6518337,741.2009934,,,,,,,,,0.074107618,0.095552284,,,,,,,,,0.046179852,0.046264285,,,,,,,,,4.820552037,5.94643755,,,,,,,,,0.02917792,0.064698753,,,,,,,,,0.104034301,0.180199837,,,,,,,,,0.059345979,0.126748722,,,,,,,,,0.041880659,0.022185947,,,,,,,,,3.169456876,4.556124679,,,,,,,,,0.015138083,0.041072941,,,,,,,,,0.124851545,0.183586604,,,,,,,,,66.96302959,69.45987808,,,,,,,,,715.6103754,743.3560512,,,,,,,,,0.07481513,0.096263564,,,,,,,,,0.046238786,0.046324917,,,,,,,,,5.242231717,6.459043925,,,,,,,,,0.039219678,0.088608007,,,,,,,,,0.12726696,0.23477324,,,,,,,,,0.078663309,0.173782087,,,,,,,,,0.04097636,0.02510983,,,,,,,,,3.242828325,4.675062164,,,,,,,,,0.01089024,0.028493174,,,,,,,,,0.115937862,0.17179871,,,,,,,,,61.28317756,65.53228014,,,,,,,,,706.3112766,734.3042996,,,,,,,,,0.076374336,0.098405787,,,,,,,,,0.046472749,0.046553045,,,,,,,,,4.714185966,5.940358007,,,,,,,,,0.030049753,0.06608317,,,,,,,,,0.106884345,0.18390082,,,,,,,,,0.06048493,0.128643223,,,,,,,,,0.019377958,0.009285021,,,,,,,,,3.030436425,4.500253615,,,,,,,, +Commercial truck,E0,2000,0.010943558,0.015916545,0.043214534,,,,,,,,0.066804056,0.066555779,0.136537071,,,,,,,,34.50923937,40.6745147,58.2263403,,,,,,,,696.2037978,696.00841,725.8073557,,,,,,,,0.110542764,0.127684881,0.150723909,,,,,,,,0.046703186,0.046873038,0.046437114,,,,,,,,3.844744937,4.173894837,5.259076967,,,,,,,,0.02974169,0.041002314,0.089252262,,,,,,,,0.104409616,0.127542313,0.234778993,,,,,,,,0.06009387,0.080598558,0.1753701,,,,,,,,0.030862804,0.014804247,0.013890661,,,,,,,,1.716044,2.035364995,3.555904626,,,,,,,,0.009480573,0.013746095,0.036946872,,,,,,,,0.066316501,0.065550651,0.133710727,,,,,,,,35.03187776,40.93608736,58.25289488,,,,,,,,703.997624,703.3610327,731.7999566,,,,,,,,0.11044206,0.127437731,0.150014711,,,,,,,,0.046677466,0.046848705,0.046411493,,,,,,,,3.900443297,4.187505944,5.262695475,,,,,,,,0.026225573,0.036089184,0.078114983,,,,,,,,0.098113063,0.118201801,0.211088246,,,,,,,,0.053743446,0.071546591,0.153639021,,,,,,,,0.034919697,0.015083609,0.014005348,,,,,,,,1.740712778,2.054073962,3.583089415,,,,,,,,0.010312227,0.015051136,0.041823863,,,,,,,,0.07427455,0.072085554,0.146096145,,,,,,,,38.17912432,43.50829837,61.91480971,,,,,,,,708.7252289,708.4296198,738.0617017,,,,,,,,0.114866841,0.132216229,0.155262129,,,,,,,,0.047032994,0.047191421,0.046783179,,,,,,,,4.089755599,4.177651592,5.241341323,,,,,,,,0.027301874,0.037690859,0.084145583,,,,,,,,0.10507655,0.126083846,0.229759942,,,,,,,,0.056893161,0.075513996,0.167139501,,,,,,,,0.049684293,0.015513368,0.014125188,,,,,,,,1.939361532,2.243099144,3.852075193,,,,,,,,0.011259761,0.016451645,0.045581795,,,,,,,,0.068443287,0.068385467,0.13858549,,,,,,,,36.75408332,42.02603144,59.09676433,,,,,,,,697.4600719,697.0251538,725.3896934,,,,,,,,0.10649818,0.123168096,0.145463548,,,,,,,,0.046357436,0.04653351,0.046083757,,,,,,,,3.980076923,4.22205474,5.15858372,,,,,,,,0.029804747,0.041184321,0.091599783,,,,,,,,0.102578825,0.126118208,0.238243376,,,,,,,,0.060492048,0.081355234,0.180455054,,,,,,,,0.045545767,0.02625052,0.013882665,,,,,,,,1.82522802,2.144553974,3.635526094,,,,,,,,0.005435543,0.007815282,0.020580808,,,,,,,,0.064759559,0.06288372,0.125045731,,,,,,,,35.53680865,41.16190644,57.30506447,,,,,,,,715.9049458,713.9791518,738.1659729,,,,,,,,0.113855986,0.131105223,0.154010228,,,,,,,,0.046949839,0.047109715,0.046697104,,,,,,,,3.84861426,4.096991136,5.134618839,,,,,,,,0.015682447,0.021479549,0.04622155,,,,,,,,0.079394875,0.090958395,0.144902407,,,,,,,,0.034777733,0.045043878,0.092677569,,,,,,,,0.041377422,0.015540775,0.014127183,,,,,,,,1.817281617,2.132423624,3.780661801,,,,,,,,0.006293648,0.009075578,0.024115434,,,,,,,,0.063778043,0.062124008,0.125588454,,,,,,,,35.77128436,41.00962867,57.45688107,,,,,,,,705.7681316,704.2424041,728.9642888,,,,,,,,0.10888686,0.125681663,0.14796556,,,,,,,,0.046533273,0.046704835,0.046268564,,,,,,,,3.910554626,4.078852934,5.107213482,,,,,,,,0.01791569,0.024574745,0.053239106,,,,,,,,0.080057427,0.093304743,0.15599651,,,,,,,,0.038474942,0.050227346,0.105606074,,,,,,,,0.045433631,0.015401935,0.013951078,,,,,,,,1.779388596,2.07456955,3.658879283,,,,,,,,0.005338625,0.007643583,0.01963573,,,,,,,,0.061442935,0.060426839,0.120198617,,,,,,,,35.2356446,40.83697191,56.49103223,,,,,,,,714.7122365,712.5499806,735.8336143,,,,,,,,0.110365259,0.127419332,0.150220298,,,,,,,,0.046672771,0.046842608,0.046407895,,,,,,,,3.846337197,4.107169097,5.070406549,,,,,,,,0.015815793,0.021629597,0.045567217,,,,,,,,0.075761778,0.087430439,0.139148249,,,,,,,,0.034436769,0.044796847,0.090460853,,,,,,,,0.041762908,0.021321989,0.014082549,,,,,,,,1.75207636,2.058862926,3.652035118,,,,,,,,0.007457414,0.01076983,0.028611312,,,,,,,,0.065787885,0.065552987,0.13039857,,,,,,,,35.7384859,42.15005764,58.77598133,,,,,,,,711.96809,710.5645249,736.5269983,,,,,,,,0.111595182,0.128699643,0.151367205,,,,,,,,0.046732378,0.046901787,0.046469107,,,,,,,,4.174266591,4.461501417,5.430826106,,,,,,,,0.021066044,0.028923868,0.062247839,,,,,,,,0.088530674,0.104541296,0.177385424,,,,,,,,0.044476234,0.058669438,0.12303587,,,,,,,,0.040738544,0.02401338,0.012640048,,,,,,,,1.820923939,2.173695965,3.75115239,,,,,,,,0.00557706,0.007963764,0.020081789,,,,,,,,0.060875705,0.062121009,0.124257402,,,,,,,,32.91509709,40.636152,57.07993315,,,,,,,,701.9549789,700.3292595,726.0657001,,,,,,,,0.113646917,0.131130379,0.154661593,,,,,,,,0.046953938,0.047119266,0.04669288,,,,,,,,3.711826641,4.06791096,5.093671661,,,,,,,,0.016764944,0.022908058,0.04731494,,,,,,,,0.079042327,0.091412659,0.144028531,,,,,,,,0.03596533,0.046949718,0.093401267,,,,,,,,0.019227444,0.008833184,0.006598728,,,,,,,,1.672288365,2.053629082,3.670178998,,,,,,, +Commercial truck,E0,2005,0.003412072,0.005429727,0.00787995,0.024224216,,,,,,,0.073127599,0.062908213,0.059118961,0.083356635,,,,,,,16.74540916,26.69520296,33.87160096,47.8886648,,,,,,,640.06977,649.5855028,650.0678634,694.2424186,,,,,,,0.036927395,0.039390828,0.046605698,0.106967824,,,,,,,0.048667143,0.04851462,0.048680444,0.047721687,,,,,,,2.90476646,3.575463053,3.962606695,3.648879629,,,,,,,0.00881299,0.013743328,0.018139254,0.049584624,,,,,,,0.060662245,0.070833758,0.08050941,0.148924469,,,,,,,0.021868232,0.030829435,0.039428655,0.099726903,,,,,,,0.028332681,0.013815768,0.012441142,0.004428855,,,,,,,0.78804626,1.211646058,1.506209859,2.560411247,,,,,,,0.003079189,0.004716643,0.006811393,0.020848164,,,,,,,0.072642485,0.062034043,0.058052042,0.080661074,,,,,,,16.93654778,26.92506082,34.00111515,47.40013169,,,,,,,647.0272932,656.4740742,656.3783414,699.9160055,,,,,,,0.037004062,0.039440499,0.046610238,0.106580738,,,,,,,0.048667793,0.048512207,0.048680692,0.047710974,,,,,,,2.955316114,3.59128571,3.974813013,3.639944026,,,,,,,0.008083578,0.012290908,0.016212317,0.043771816,,,,,,,0.060269652,0.06884384,0.077398863,0.137072771,,,,,,,0.020644209,0.02819995,0.035799202,0.088406418,,,,,,,0.032144428,0.01407934,0.012561916,0.004465049,,,,,,,0.77444864,1.194231818,1.478842326,2.527195706,,,,,,,0.003665719,0.004183927,0.006002134,0.023030296,,,,,,,0.080557712,0.064510343,0.060082357,0.085052817,,,,,,,18.09360091,29.13323033,36.90274854,49.11996816,,,,,,,652.4353707,661.953136,662.3076253,706.4357172,,,,,,,0.038249105,0.040747356,0.048004394,0.109577366,,,,,,,0.048852755,0.048712862,0.04886475,0.047978217,,,,,,,3.091522744,3.610043432,3.989490325,3.641215329,,,,,,,0.009001067,0.011168259,0.014684448,0.04605273,,,,,,,0.066363858,0.07041091,0.078034594,0.146858008,,,,,,,0.02308981,0.026634727,0.033415811,0.094089468,,,,,,,0.045726459,0.014495535,0.01267539,0.004506641,,,,,,,0.842998311,1.236443483,1.525641451,2.633453377,,,,,,,0.003800185,0.005540935,0.008087157,0.025475953,,,,,,,0.072632125,0.064635243,0.056516654,0.082548319,,,,,,,17.80888457,29.36621038,33.94006635,48.06166903,,,,,,,641.4678331,650.854362,651.0582462,694.6330166,,,,,,,0.035760419,0.03814906,0.045216211,0.103769267,,,,,,,0.048414754,0.04825284,0.048428216,0.04742294,,,,,,,3.000998211,3.750073981,3.941048781,3.59878909,,,,,,,0.009402553,0.013687774,0.018134636,0.050585432,,,,,,,0.059489358,0.068362663,0.078046151,0.149099847,,,,,,,0.022839368,0.030652483,0.039257806,0.101894626,,,,,,,0.041889358,0.024493576,0.012460097,0.004431346,,,,,,,0.812109735,1.276600802,1.480972703,2.563111207,,,,,,,0.00200053,0.003110927,0.004475163,0.011975385,,,,,,,0.07067663,0.061359609,0.056703696,0.074142747,,,,,,,17.55649166,27.28960437,33.93693168,46.43736721,,,,,,,658.5652225,667.500618,665.8198784,706.2394023,,,,,,,0.037956842,0.040438522,0.047666063,0.108830535,,,,,,,0.048795813,0.048652954,0.04880742,0.047907998,,,,,,,2.932385041,3.497114106,3.87254179,3.539497944,,,,,,,0.005575811,0.008604417,0.011464188,0.026993487,,,,,,,0.058050479,0.064144831,0.070212915,0.103595905,,,,,,,0.016328407,0.02168564,0.027089701,0.056416581,,,,,,,0.038058633,0.014528727,0.012742607,0.004505388,,,,,,,0.735638728,1.17944092,1.449755045,2.531336316,,,,,,,0.002326079,0.003183237,0.004559736,0.013830662,,,,,,,0.068416779,0.057436697,0.053411612,0.073268668,,,,,,,17.52813677,27.60225568,34.53467414,46.19878394,,,,,,,649.1915044,658.2111814,656.9410291,697.7358595,,,,,,,0.036517934,0.038925647,0.046022821,0.105255641,,,,,,,0.048521924,0.048366967,0.048535595,0.047565528,,,,,,,2.981255528,3.506464412,3.876985485,3.525119289,,,,,,,0.006283461,0.008856274,0.011736247,0.030537114,,,,,,,0.055532999,0.060603813,0.066727986,0.107229627,,,,,,,0.017185132,0.021638416,0.027089648,0.062725812,,,,,,,0.041774183,0.014395039,0.012572683,0.00445114,,,,,,,0.735905811,1.132356851,1.393620702,2.460248822,,,,,,,0.001929484,0.00290799,0.004146187,0.011296125,,,,,,,0.066626528,0.060633607,0.05428881,0.071690669,,,,,,,17.63741937,28.6871498,34.32570802,46.98562795,,,,,,,656.5605293,665.4942402,663.5007939,703.79223,,,,,,,0.036913537,0.039362236,0.046547345,0.106660225,,,,,,,0.04863915,0.048486221,0.048652401,0.04769302,,,,,,,2.934080945,3.595030673,3.874664163,3.527731083,,,,,,,0.00553418,0.008325343,0.011038539,0.02647483,,,,,,,0.054119637,0.059761204,0.065404925,0.098317919,,,,,,,0.015732828,0.020689017,0.025718528,0.054625443,,,,,,,0.038359573,0.019902549,0.012698225,0.004489777,,,,,,,0.711949062,1.181087223,1.407871273,2.468610682,,,,,,,0.002593054,0.003630147,0.005201468,0.016230853,,,,,,,0.069974554,0.062551331,0.054428745,0.078570808,,,,,,,17.75033623,30.28434543,35.2794387,48.63471887,,,,,,,654.3310664,663.5359367,662.4714224,704.4137892,,,,,,,0.037383469,0.039835274,0.047045585,0.107466428,,,,,,,0.048701963,0.048547964,0.048714434,0.047755517,,,,,,,3.166721115,3.832872777,4.02856796,3.827435341,,,,,,,0.006967496,0.009911172,0.013076113,0.035270193,,,,,,,0.059000922,0.064970973,0.071645201,0.119480836,,,,,,,0.01870554,0.023959633,0.029892764,0.072038867,,,,,,,0.03741822,0.022423775,0.011360336,0.004427344,,,,,,,0.766136229,1.240274729,1.438643692,2.593149249,,,,,,,0.001764137,0.002599,0.00365866,0.011427665,,,,,,,0.057024118,0.048923463,0.046199504,0.077806685,,,,,,,15.29764532,27.3269716,34.82046977,48.8155097,,,,,,,644.3920134,653.4714096,652.1252983,693.1606341,,,,,,,0.037850067,0.040366468,0.047692152,0.109392966,,,,,,,0.048858727,0.048711564,0.048871409,0.04794248,,,,,,,2.511871718,2.602464217,2.927871757,3.681550918,,,,,,,0.005233005,0.007757013,0.010209836,0.027211336,,,,,,,0.055119501,0.060203259,0.065283361,0.10149141,,,,,,,0.015274087,0.019735283,0.024268925,0.056076936,,,,,,,0.017609934,0.008227266,0.005910886,0.004089908,,,,,,,0.63405265,1.030213296,1.277191577,2.602380978,,,,,, +Commercial truck,E0,2010,,0.002325446,0.004031624,0.006065483,0.018596541,,,,,,,0.050963694,0.064112077,0.042064269,0.066033717,,,,,,,11.64228408,22.45465277,26.12514691,41.60310138,,,,,,,667.476968,666.5133306,670.5203843,698.0556129,,,,,,,0.035370844,0.039823584,0.048624701,0.095198878,,,,,,,0.047990177,0.048125642,0.048216719,0.047870634,,,,,,,1.806352511,2.467653689,1.621883525,2.79236867,,,,,,,0.004914237,0.008022786,0.011101707,0.034586856,,,,,,,0.052991607,0.059813691,0.066800814,0.118253987,,,,,,,0.014920994,0.02098817,0.027191959,0.072631919,,,,,,,0.014196696,0.012755878,0.004277522,0.004453181,,,,,,,0.335430997,0.639793455,0.695549286,2.025264881,,,,,,,0.002071877,0.003563717,0.005394923,0.016103073,,,,,,,0.049497714,0.063519331,0.040554976,0.063275569,,,,,,,11.6544232,22.6211274,25.97464447,41.02019423,,,,,,,674.9940906,673.6328741,677.0214955,703.4550011,,,,,,,0.035426714,0.039848912,0.048584329,0.094837742,,,,,,,0.047979673,0.048116921,0.048209901,0.047862434,,,,,,,1.813643904,2.475453555,1.617167873,2.78024689,,,,,,,0.004670276,0.007573017,0.010469791,0.030959963,,,,,,,0.053458587,0.059744123,0.066244915,0.110931902,,,,,,,0.0144909,0.020076646,0.025844683,0.065310325,,,,,,,0.014476367,0.012892135,0.004318994,0.004487626,,,,,,,0.324236007,0.627709122,0.673104689,1.981933375,,,,,,,0.001816843,0.003111786,0.005731316,0.017580715,,,,,,,0.052247978,0.066445557,0.042413565,0.066272091,,,,,,,12.75497911,24.40777858,26.74989016,42.41381126,,,,,,,680.0915439,679.007727,682.8912412,710.349289,,,,,,,0.036731465,0.041218699,0.050093993,0.097391873,,,,,,,0.048229293,0.048354016,0.0484375,0.048115899,,,,,,,1.819598087,2.485108638,1.622778903,2.78601789,,,,,,,0.004197698,0.006786218,0.010575046,0.03221294,,,,,,,0.056357159,0.061930679,0.070639883,0.118326672,,,,,,,0.014085758,0.019046276,0.026771705,0.068883943,,,,,,,0.014894617,0.012994998,0.004356441,0.004531607,,,,,,,0.342485705,0.653941528,0.698776066,2.054646333,,,,,,,0.002386658,0.004150568,0.00634667,0.019539522,,,,,,,0.053015903,0.060959341,0.040554121,0.064765612,,,,,,,12.80049569,22.76279627,26.34971804,41.52317786,,,,,,,668.9771481,667.807714,671.5133767,698.4284462,,,,,,,0.034176535,0.038528779,0.047122928,0.092415515,,,,,,,0.047700526,0.047842956,0.047939451,0.047579637,,,,,,,1.891495366,2.452080327,1.606057959,2.755110909,,,,,,,0.004895407,0.008017102,0.011264678,0.035222981,,,,,,,0.050420083,0.057257009,0.06467636,0.11753068,,,,,,,0.014657499,0.020736951,0.027322718,0.07400419,,,,,,,0.025191892,0.012780651,0.004283856,0.004455559,,,,,,,0.364510775,0.633848479,0.691041049,2.012951379,,,,,,,0.001577436,0.002650819,0.003727754,0.009704484,,,,,,,0.048370393,0.065393408,0.038751658,0.057745574,,,,,,,11.59095113,23.00214967,26.1677829,40.1732237,,,,,,,687.2971006,684.8516046,686.4215473,709.1294991,,,,,,,0.036430129,0.040896985,0.049729853,0.096747132,,,,,,,0.048161767,0.048288424,0.048373373,0.048047782,,,,,,,1.752031741,2.403042085,1.564941506,2.700925547,,,,,,,0.004188028,0.006686216,0.008759239,0.020763683,,,,,,,0.055312481,0.060518208,0.06494057,0.090893914,,,,,,,0.013758427,0.01839282,0.022325454,0.045213222,,,,,,,0.014959933,0.013106843,0.004378962,0.004523826,,,,,,,0.312457789,0.630250477,0.656996603,1.956232409,,,,,,,0.001551939,0.002613266,0.004017619,0.010961877,,,,,,,0.044994246,0.059620002,0.036608553,0.0564917,,,,,,,11.80210396,23.18532175,25.84412914,39.89785069,,,,,,,677.4936652,675.3496647,677.3722274,700.772729,,,,,,,0.034946272,0.039321317,0.047962243,0.093671483,,,,,,,0.047834272,0.047971519,0.04806446,0.047716912,,,,,,,1.762399535,2.409024252,1.563048041,2.689314436,,,,,,,0.004072052,0.006508702,0.008998794,0.022754063,,,,,,,0.051017191,0.056114396,0.061535417,0.09134495,,,,,,,0.013051443,0.017587731,0.022402288,0.048705003,,,,,,,0.014817522,0.012924992,0.004321233,0.004470515,,,,,,,0.304032522,0.595539694,0.631138142,1.901242256,,,,,,,0.001476538,0.002465877,0.003427939,0.008974022,,,,,,,0.04742822,0.061602453,0.037059516,0.055876185,,,,,,,12.20044296,23.15232542,26.70372435,40.94792244,,,,,,,685.6839625,683.0210021,684.2713871,706.5155206,,,,,,,0.035351276,0.039784446,0.048544646,0.094916395,,,,,,,0.04796072,0.048096356,0.048187743,0.047842381,,,,,,,1.804131998,2.406938035,1.571501373,2.698071483,,,,,,,0.00408137,0.006493138,0.008461186,0.020118675,,,,,,,0.051276493,0.056234102,0.060374629,0.085359032,,,,,,,0.013067166,0.017482607,0.021166418,0.04319571,,,,,,,0.020509073,0.013071809,0.004365245,0.004507149,,,,,,,0.31190372,0.60676488,0.638712995,1.91051785,,,,,,,0.001681435,0.002852386,0.004450169,0.012668083,,,,,,,0.048850683,0.059301746,0.039301452,0.061103186,,,,,,,12.98771608,23.48482445,27.00714527,42.15119659,,,,,,,682.9255682,680.904598,683.2070514,707.518023,,,,,,,0.035800565,0.040248846,0.049035995,0.095608243,,,,,,,0.048021245,0.04815695,0.048248875,0.047905475,,,,,,,1.924167061,2.498235911,1.728955523,2.936083813,,,,,,,0.004187451,0.006722978,0.009485589,0.025636141,,,,,,,0.053399004,0.058718864,0.064787528,0.099826,,,,,,,0.013630823,0.018360488,0.023744789,0.054678187,,,,,,,0.023081866,0.011674445,0.004293771,0.004446904,,,,,,,0.333946269,0.608165111,0.674968281,2.009879558,,,,,,,0.001300313,0.002156404,0.003359899,0.008972316,,,,,,,0.036283987,0.0477283,0.039384363,0.060788893,,,,,,,11.67671685,22.75880766,26.69808127,42.33610909,,,,,,,672.8653508,670.7073124,672.6278524,695.8789645,,,,,,,0.036306755,0.040833917,0.049787308,0.097308217,,,,,,,0.048204619,0.048335712,0.04842341,0.048086594,,,,,,,1.256346289,1.737567005,1.643714991,2.832702575,,,,,,,0.003742943,0.00593262,0.008346723,0.020394294,,,,,,,0.052284135,0.056756964,0.061912844,0.087632323,,,,,,,0.012605773,0.016594655,0.021178231,0.043853172,,,,,,,0.008472959,0.006079549,0.003968422,0.004105959,,,,,,,0.271918176,0.521383958,0.672667611,2.025408725,,,,, +Commercial truck,E0,2015,,,0.001812844,0.003206755,0.004997954,0.01142028,,,,,,,0.019973741,0.01911586,0.024239403,0.044197913,,,,,,,4.637076204,9.396928507,12.65668451,23.74789521,,,,,,,686.5980518,686.7095839,685.158042,683.2262382,,,,,,,0.00941081,0.010704022,0.012890388,0.038235842,,,,,,,0.047380583,0.047474973,0.047683965,0.048177025,,,,,,,0.509249288,0.475940273,0.663457938,1.383991368,,,,,,,0.004277706,0.007164318,0.01025153,0.01999139,,,,,,,0.051622668,0.057738299,0.064558506,0.086812036,,,,,,,0.013564523,0.018997172,0.025080815,0.044887486,,,,,,,0.013140266,0.0043808,0.004370902,0.004358578,,,,,,,0.187611827,0.280965004,0.439049189,1.150473943,,,,,,,0.001664121,0.002962359,0.004579822,0.010134315,,,,,,,0.018479283,0.017874284,0.022820475,0.041796537,,,,,,,4.690852204,9.544538053,12.84142567,23.60862665,,,,,,,694.5128558,694.2443921,692.0733447,688.7051538,,,,,,,0.009420288,0.010702858,0.012872972,0.038106352,,,,,,,0.047361898,0.047457562,0.047669479,0.048171141,,,,,,,0.508092888,0.47215101,0.657689063,1.373332783,,,,,,,0.004133389,0.006937176,0.009860558,0.01855666,,,,,,,0.052313696,0.058207474,0.064605366,0.084331185,,,,,,,0.013362938,0.018594394,0.024293495,0.041836518,,,,,,,0.013291738,0.004428867,0.004415018,0.004393531,,,,,,,0.184778895,0.274685522,0.428311393,1.121058353,,,,,,,0.001459787,0.003052774,0.004758584,0.010805541,,,,,,,0.019159949,0.01824953,0.023188506,0.04280324,,,,,,,4.932545596,9.85155232,13.2851064,24.37200362,,,,,,,699.3914913,699.3855242,697.6514322,695.3955079,,,,,,,0.009791131,0.01109836,0.01330462,0.039111328,,,,,,,0.047664811,0.047752139,0.047945262,0.048399354,,,,,,,0.498901221,0.467302752,0.652625677,1.372485499,,,,,,,0.003709694,0.006836844,0.009788817,0.01893206,,,,,,,0.055365122,0.062062767,0.06857956,0.089491546,,,,,,,0.013071835,0.019017897,0.024829877,0.043441282,,,,,,,0.013385109,0.004461665,0.004450603,0.004436211,,,,,,,0.194769467,0.284398955,0.439066364,1.148462999,,,,,,,0.001824505,0.003270637,0.005119178,0.011894645,,,,,,,0.020012428,0.018784517,0.023683618,0.043137195,,,,,,,4.915558862,9.937832018,13.29493736,24.07278196,,,,,,,688.1400576,688.0564338,686.2511003,683.7660923,,,,,,,0.009076644,0.010336054,0.012469624,0.037136812,,,,,,,0.047061817,0.047160652,0.047379844,0.047899671,,,,,,,0.507408885,0.472504662,0.658073179,1.368567776,,,,,,,0.004210436,0.007134478,0.010248013,0.020269541,,,,,,,0.048858388,0.05508422,0.062001988,0.085057878,,,,,,,0.013133901,0.018663421,0.024832098,0.045346069,,,,,,,0.013169776,0.004389392,0.004377875,0.004362022,,,,,,,0.200677426,0.289227502,0.442320122,1.138750303,,,,,,,0.001364024,0.002299735,0.003457163,0.006828099,,,,,,,0.015268822,0.015414394,0.020165969,0.037198943,,,,,,,4.889313693,10.1609839,13.64825843,23.7826765,,,,,,,707.4394198,706.0795433,702.1777377,694.8792129,,,,,,,0.009706492,0.011006678,0.013202105,0.038856543,,,,,,,0.047589098,0.047677696,0.047873718,0.048335157,,,,,,,0.471420137,0.442600001,0.621190519,1.320438789,,,,,,,0.003824914,0.006194323,0.008647206,0.014575692,,,,,,,0.054663148,0.05948941,0.064659363,0.07766972,,,,,,,0.01305105,0.017341099,0.021960391,0.033578903,,,,,,,0.013539133,0.004504368,0.004479478,0.004432917,,,,,,,0.185391879,0.273371959,0.427012772,1.107437365,,,,,,,0.001330035,0.002407161,0.003646998,0.007432457,,,,,,,0.015511775,0.015413732,0.020002624,0.036665048,,,,,,,4.893421431,10.00321195,13.39793719,23.51308774,,,,,,,697.2237062,696.1681412,692.7799468,686.5969946,,,,,,,0.009289363,0.0105572,0.012703335,0.037641144,,,,,,,0.047217061,0.047312597,0.047524257,0.048025643,,,,,,,0.48543507,0.450551484,0.629351891,1.321994026,,,,,,,0.00370824,0.006271145,0.008793509,0.015235324,,,,,,,0.050345434,0.055626432,0.06099447,0.075267139,,,,,,,0.012333574,0.017024298,0.021815411,0.034542608,,,,,,,0.013343622,0.00444114,0.004419525,0.004380081,,,,,,,0.183313235,0.26780207,0.41556531,1.07591076,,,,,,,0.001294613,0.002168603,0.003227228,0.006238913,,,,,,,0.015185624,0.015344939,0.020088639,0.036688468,,,,,,,4.917943541,10.23065284,13.72440583,24.23816636,,,,,,,706.1206459,704.5616605,700.3495386,692.3068769,,,,,,,0.009403554,0.010690304,0.012866499,0.038128928,,,,,,,0.047350405,0.047444896,0.047654178,0.04814848,,,,,,,0.478705801,0.449139024,0.629399815,1.327584254,,,,,,,0.003759327,0.00607607,0.008430015,0.013985681,,,,,,,0.050698686,0.055381785,0.06029735,0.072354026,,,,,,,0.012420943,0.016584671,0.020979663,0.03175666,,,,,,,0.013513894,0.004494684,0.004467816,0.004416507,,,,,,,0.182447323,0.269559103,0.421752035,1.089042657,,,,,,,0.001402506,0.002579506,0.003931722,0.008272899,,,,,,,0.016239283,0.016764929,0.021829023,0.040127504,,,,,,,4.814873068,10.06379527,13.54553537,24.50351997,,,,,,,702.9229233,702.0024161,698.7871822,693.0184716,,,,,,,0.009521565,0.010812114,0.012995362,0.038416584,,,,,,,0.047409918,0.047504538,0.047714201,0.048210534,,,,,,,0.499989719,0.497668398,0.694487879,1.45411049,,,,,,,0.003777939,0.006506253,0.009155871,0.016331632,,,,,,,0.052525203,0.058185732,0.063882073,0.079931719,,,,,,,0.012750734,0.017774589,0.022850169,0.037133789,,,,,,,0.012050595,0.004411761,0.004391679,0.004355706,,,,,,,0.190955967,0.284052977,0.4404995,1.136701293,,,,,,,0.001148685,0.002133056,0.00317303,0.006143047,,,,,,,0.013059328,0.016577443,0.022165833,0.040603567,,,,,,,4.348790491,9.434124071,12.77455317,24.0612266,,,,,,,692.8475915,691.7654574,688.2266281,681.6010233,,,,,,,0.009670839,0.010988639,0.013213767,0.039072215,,,,,,,0.047613418,0.047704952,0.047907493,0.048383944,,,,,,,0.329668774,0.469702651,0.661239744,1.404540586,,,,,,,0.003466693,0.006017397,0.008345854,0.013879479,,,,,,,0.051851102,0.057056929,0.061911057,0.073887531,,,,,,,0.012077778,0.016705551,0.021049815,0.031764188,,,,,,,0.006281707,0.004081341,0.00406054,0.004021613,,,,,,,0.165479078,0.275032428,0.442067415,1.157410827,,,, +Commercial truck,E0,2020,,,,0.001814947,0.003205871,0.004940383,0.009675474,,,,,,,0.017282066,0.019046452,0.023223237,0.038150276,,,,,,,3.467427957,7.225757771,9.051732161,14.57297834,,,,,,,653.2468066,652.534944,643.0012187,644.790099,,,,,,,0.009605833,0.010836668,0.013085381,0.022115172,,,,,,,0.047112177,0.047208434,0.047622159,0.048303813,,,,,,,0.258316309,0.449929773,0.593801043,0.885537592,,,,,,,0.004366762,0.007271337,0.010208593,0.016861804,,,,,,,0.051818995,0.05800409,0.064453621,0.079861763,,,,,,,0.013674192,0.019168904,0.024972998,0.03876713,,,,,,,0.004167327,0.004162786,0.004101966,0.004113378,,,,,,,0.170202756,0.267429908,0.398680075,0.848247972,,,,,,,0.0016939,0.002973397,0.0045411,0.008731188,,,,,,,0.015777884,0.017813528,0.021828537,0.035923423,,,,,,,3.466535914,7.306658158,9.129567126,14.56665066,,,,,,,660.8259255,659.7719036,649.5377891,650.0323079,,,,,,,0.009610126,0.010830539,0.013065172,0.022052354,,,,,,,0.047090753,0.047188223,0.047607045,0.048298798,,,,,,,0.255830283,0.445923141,0.588183235,0.876945394,,,,,,,0.004254891,0.007055259,0.009835435,0.015970434,,,,,,,0.052572944,0.058485698,0.064543809,0.07862232,,,,,,,0.013541351,0.018790057,0.024227025,0.036809662,,,,,,,0.004215677,0.004208953,0.004143666,0.00414682,,,,,,,0.167140768,0.261204733,0.387598861,0.827214977,,,,,,,0.001728982,0.00305539,0.004707568,0.009195899,,,,,,,0.016421373,0.018196873,0.022201106,0.036496496,,,,,,,3.592812789,7.549845811,9.448188479,15.06039853,,,,,,,665.2464926,664.4015929,654.5615222,656.2249812,,,,,,,0.00999383,0.01123891,0.013503794,0.022644081,,,,,,,0.047415612,0.047504831,0.047888002,0.048516471,,,,,,,0.252865935,0.44225971,0.583880297,0.872439785,,,,,,,0.004162561,0.006935728,0.009749295,0.016110592,,,,,,,0.056408511,0.062312616,0.068485101,0.08318914,,,,,,,0.013934589,0.019179287,0.024732191,0.037892449,,,,,,,0.004243878,0.004238488,0.004175714,0.004186326,,,,,,,0.176184944,0.2710988,0.398662528,0.845483904,,,,,,,0.001838227,0.003256632,0.005045172,0.009998696,,,,,,,0.017195139,0.01870206,0.022725855,0.037335264,,,,,,,3.652350583,7.599773938,9.461656263,14.98114665,,,,,,,654.7664102,653.88762,644.1424138,645.4201715,,,,,,,0.00925975,0.010457422,0.012657017,0.021477089,,,,,,,0.046782014,0.046882602,0.047315335,0.048032188,,,,,,,0.256253607,0.446228363,0.588993275,0.877956688,,,,,,,0.004327814,0.007222325,0.010186551,0.017012988,,,,,,,0.0491103,0.055302918,0.061850208,0.077755006,,,,,,,0.013294712,0.018795418,0.024683232,0.038913016,,,,,,,0.004177022,0.004171415,0.004109247,0.004117398,,,,,,,0.181898013,0.275475835,0.402792409,0.842185724,,,,,,,0.001356371,0.002333778,0.00345751,0.006238173,,,,,,,0.012451572,0.015361739,0.019138377,0.031614297,,,,,,,3.540471735,7.693835753,9.553884558,14.8809124,,,,,,,672.971617,670.9232446,658.8324183,655.895392,,,,,,,0.009906364,0.011144501,0.013399591,0.022495018,,,,,,,0.047336559,0.047427025,0.047815665,0.048453881,,,,,,,0.236391771,0.418934753,0.55513631,0.832926919,,,,,,,0.003855859,0.006324416,0.0086573,0.013425553,,,,,,,0.05475081,0.059818659,0.064695264,0.075141879,,,,,,,0.013069903,0.01757426,0.021978373,0.03136859,,,,,,,0.00429316,0.004280093,0.00420296,0.004184224,,,,,,,0.166811415,0.259058686,0.382137156,0.824343017,,,,,,,0.001408367,0.002435956,0.003639903,0.006685698,,,,,,,0.012793619,0.015366185,0.019050386,0.031413392,,,,,,,3.524074438,7.582931854,9.408931089,14.69646149,,,,,,,663.3468254,661.5960034,650.1849746,648.1705913,,,,,,,0.009475766,0.010681888,0.012892815,0.021782013,,,,,,,0.046946435,0.047043699,0.047461936,0.048153373,,,,,,,0.24209362,0.425606167,0.562545337,0.840426141,,,,,,,0.003889911,0.006396658,0.008796258,0.013795834,,,,,,,0.050756203,0.055937424,0.061009841,0.072105536,,,,,,,0.012642699,0.017245674,0.021816234,0.031770079,,,,,,,0.004231759,0.004220589,0.004147794,0.004134943,,,,,,,0.165665754,0.254428943,0.373898227,0.801717553,,,,,,,0.001290361,0.002203928,0.00322908,0.005714002,,,,,,,0.012314636,0.015287606,0.019068603,0.031477553,,,,,,,3.579874041,7.753139587,9.635196462,15.11165319,,,,,,,671.9070815,669.6921232,657.2697599,653.5270894,,,,,,,0.009596157,0.010820722,0.013060016,0.022058642,,,,,,,0.047082037,0.047178384,0.047592368,0.048275115,,,,,,,0.240364112,0.425358732,0.563464487,0.84280848,,,,,,,0.003802226,0.006211724,0.008441656,0.012897692,,,,,,,0.050809377,0.055723168,0.060337682,0.069989507,,,,,,,0.012459422,0.016827747,0.021001355,0.029691278,,,,,,,0.004286368,0.004272239,0.004192991,0.004169115,,,,,,,0.16415139,0.255049212,0.376966019,0.812659999,,,,,,,0.001498598,0.00260355,0.003914966,0.007299057,,,,,,,0.014147496,0.016690694,0.020774578,0.034433158,,,,,,,3.583004392,7.668258076,9.569722016,15.17014269,,,,,,,668.8192706,667.1776506,655.8118786,654.161047,,,,,,,0.009712965,0.010941096,0.013188935,0.022235785,,,,,,,0.047141595,0.047238078,0.047652488,0.048336617,,,,,,,0.268455886,0.471309796,0.622407151,0.92768709,,,,,,,0.004025669,0.006634771,0.009152453,0.014489395,,,,,,,0.05305743,0.058488947,0.063876161,0.075880918,,,,,,,0.013174081,0.017995724,0.022833702,0.033572459,,,,,,,0.004203166,0.004192921,0.004121602,0.004111469,,,,,,,0.175658012,0.269759653,0.396676293,0.842633761,,,,,,,0.001272438,0.002174087,0.003180796,0.005610652,,,,,,,0.013146837,0.016499742,0.020968491,0.035009955,,,,,,,3.334123839,7.213799489,9.049120759,14.60825592,,,,,,,659.2463314,657.4711118,645.8193364,643.3103377,,,,,,,0.009873925,0.011128827,0.013414062,0.022602928,,,,,,,0.047352343,0.047445837,0.04784743,0.048506896,,,,,,,0.251764074,0.447077969,0.594385853,0.892802625,,,,,,,0.003773514,0.006166869,0.008369275,0.0127457,,,,,,,0.052555644,0.057433127,0.061977984,0.071435074,,,,,,,0.012636908,0.016974848,0.02109393,0.02962286,,,,,,,0.003889494,0.003879072,0.003810365,0.003795669,,,,,,,0.161053652,0.260794246,0.395529241,0.860480316,,, +Commercial truck,E0,2025,,,,,0.001822158,0.003201624,0.004927221,0.009498585,,,,,,,0.014472861,0.014613194,0.01819306,0.032595981,,,,,,,1.811478028,3.170919968,4.425114314,8.932615677,,,,,,,650.7833181,648.2102707,635.3073202,626.845007,,,,,,,0.009677987,0.01086591,0.013079493,0.018324125,,,,,,,0.046988632,0.047142766,0.047650828,0.048407503,,,,,,,0.116604024,0.189739487,0.266187609,0.535767659,,,,,,,0.004386116,0.007271762,0.010183277,0.016695423,,,,,,,0.051896771,0.058021449,0.064389902,0.079389888,,,,,,,0.013713999,0.019168893,0.02492343,0.038373689,,,,,,,0.004151612,0.004135197,0.004052884,0.003998899,,,,,,,0.155262542,0.216725172,0.325372155,0.760748699,,,,,,,0.001700588,0.002969683,0.004529188,0.008608395,,,,,,,0.012945416,0.013394128,0.016846058,0.030485867,,,,,,,1.756830286,3.122152452,4.361625538,8.857687793,,,,,,,658.3956043,655.4659753,641.8232247,631.9335243,,,,,,,0.00968005,0.01085859,0.013059831,0.018277712,,,,,,,0.046965989,0.047121893,0.047636117,0.048403745,,,,,,,0.1142773,0.186436814,0.261645767,0.528309317,,,,,,,0.004273642,0.007056035,0.009811379,0.015856155,,,,,,,0.052641367,0.058499969,0.064485224,0.078293998,,,,,,,0.013578812,0.018790463,0.024180585,0.03653855,,,,,,,0.004200174,0.004181484,0.004094451,0.004031361,,,,,,,0.152025028,0.210301479,0.314060451,0.740259155,,,,,,,0.00173631,0.003051092,0.004694964,0.009037335,,,,,,,0.01369211,0.013879591,0.017279456,0.031021169,,,,,,,1.842834314,3.248292447,4.527686444,9.172132018,,,,,,,662.5937195,659.8722905,646.6334068,637.8988503,,,,,,,0.010069332,0.011270046,0.013496924,0.018765143,,,,,,,0.047300805,0.04744387,0.047914564,0.048611991,,,,,,,0.113031199,0.184483708,0.258901717,0.523885156,,,,,,,0.004179796,0.006934112,0.009725958,0.015966761,,,,,,,0.056480508,0.062325245,0.068425817,0.082774069,,,,,,,0.013970952,0.01917599,0.024686133,0.037547759,,,,,,,0.004226955,0.004209593,0.004125138,0.004069416,,,,,,,0.161454111,0.220767223,0.326044216,0.759009061,,,,,,,0.001843881,0.003249185,0.005029491,0.00976077,,,,,,,0.014516885,0.014478277,0.017943847,0.032094593,,,,,,,1.873679618,3.279339959,4.569564172,9.193340198,,,,,,,652.3992289,649.6656284,636.5532423,627.540193,,,,,,,0.009326876,0.010483994,0.012652375,0.01779988,,,,,,,0.046653396,0.046814186,0.047345336,0.04814118,,,,,,,0.115301808,0.187791394,0.263720443,0.531092544,,,,,,,0.00434403,0.007217919,0.010158704,0.016783587,,,,,,,0.049180097,0.055308569,0.061780189,0.077122189,,,,,,,0.013328408,0.01878555,0.024627952,0.038376667,,,,,,,0.00416192,0.004144482,0.004060832,0.004003334,,,,,,,0.167671322,0.227252882,0.332905671,0.757701611,,,,,,,0.001361498,0.00233169,0.003448786,0.006223805,,,,,,,0.009437317,0.010764306,0.014018941,0.026153144,,,,,,,1.643430985,3.053446389,4.274172275,8.827732158,,,,,,,670.3985663,666.4787458,650.9492111,637.4684814,,,,,,,0.009980666,0.011174992,0.013393029,0.018642363,,,,,,,0.047220258,0.04736527,0.04784261,0.048550884,,,,,,,0.102578402,0.171045436,0.241662456,0.495103323,,,,,,,0.0038708,0.006325183,0.008637796,0.013422325,,,,,,,0.054815974,0.059836817,0.064646165,0.075096608,,,,,,,0.013100927,0.017576214,0.021941181,0.031350496,,,,,,,0.004276744,0.004251739,0.00415267,0.00406667,,,,,,,0.150590746,0.205241196,0.303800467,0.732924084,,,,,,,0.001413644,0.002433256,0.003630849,0.00665428,,,,,,,0.009928267,0.010991608,0.014184076,0.026285681,,,,,,,1.662864746,3.055954664,4.278081425,8.786370022,,,,,,,660.9285798,657.330238,642.5268918,630.0906826,,,,,,,0.009544303,0.010709254,0.012887763,0.01805469,,,,,,,0.046821945,0.046977523,0.047490955,0.048258403,,,,,,,0.105903383,0.175048859,0.246681565,0.502433608,,,,,,,0.003905348,0.006396914,0.008776252,0.013773861,,,,,,,0.050819608,0.055952725,0.060960184,0.072014914,,,,,,,0.012674244,0.017246196,0.021778099,0.031710452,,,,,,,0.004216332,0.004193377,0.00409894,0.004019604,,,,,,,0.150559715,0.203940508,0.300365557,0.716354377,,,,,,,0.001294649,0.002201199,0.003219339,0.005692239,,,,,,,0.009272994,0.010674895,0.013965105,0.026109915,,,,,,,1.673175165,3.107167647,4.361068658,9.004913937,,,,,,,669.4980145,665.3971237,649.5069628,635.1941754,,,,,,,0.009667294,0.010849426,0.01305437,0.018279803,,,,,,,0.046958577,0.047112734,0.047621082,0.048378879,,,,,,,0.10478688,0.174556763,0.246493984,0.502661925,,,,,,,0.003817023,0.006211973,0.008419216,0.012874043,,,,,,,0.050874085,0.055740154,0.060282601,0.069902922,,,,,,,0.012489719,0.016828523,0.020958955,0.029637064,,,,,,,0.004271,0.004244839,0.004143468,0.004052162,,,,,,,0.14793364,0.201717221,0.299073313,0.721690624,,,,,,,0.001504927,0.002601789,0.003905921,0.007244717,,,,,,,0.011263809,0.012204746,0.015682754,0.028947073,,,,,,,1.74831284,3.176355443,4.449005941,9.116670065,,,,,,,666.3757446,662.8527842,648.0437187,635.8805054,,,,,,,0.009783509,0.010969454,0.013183484,0.018430433,,,,,,,0.047018166,0.047172499,0.047681249,0.048440328,,,,,,,0.117982691,0.194363493,0.273327072,0.555131569,,,,,,,0.004044064,0.006638012,0.009132384,0.014448201,,,,,,,0.053122873,0.058508064,0.06382735,0.075739722,,,,,,,0.013210424,0.018001194,0.022795542,0.033465654,,,,,,,0.004187819,0.004165744,0.004072777,0.003996577,,,,,,,0.160032633,0.217430826,0.320040554,0.75225035,,,,,,,0.001279582,0.002175607,0.003175202,0.005632184,,,,,,,0.010024779,0.011650987,0.015423175,0.029141454,,,,,,,1.615676524,2.989577388,4.208431101,8.705666026,,,,,,,656.7974342,653.1568111,638.0878114,625.2163418,,,,,,,0.009949459,0.011159858,0.013407367,0.018726126,,,,,,,0.04723211,0.047381969,0.047875218,0.048607177,,,,,,,0.110882992,0.185239318,0.262324713,0.536049384,,,,,,,0.003794769,0.006175672,0.008353431,0.012784293,,,,,,,0.052636655,0.05746984,0.061936961,0.071489458,,,,,,,0.012679469,0.016991909,0.021064447,0.029694916,,,,,,,0.003875081,0.003853638,0.003764749,0.003688903,,,,,,,0.14434097,0.204628706,0.312381876,0.7640912,, +Commercial truck,E0,2030,,,,,,0.001822357,0.0031962,0.004893412,0.009492497,,,,,,,0.014505032,0.01447319,0.018131775,0.029867935,,,,,,,1.734637059,2.999002812,4.270519996,7.184627223,,,,,,,653.890259,650.9972677,637.1116206,620.3055637,,,,,,,0.009702935,0.010855594,0.013093632,0.018110204,,,,,,,0.046905671,0.047065898,0.047602323,0.048450839,,,,,,,0.107964891,0.177266061,0.252995657,0.412860028,,,,,,,0.004394973,0.007282686,0.010150988,0.016664471,,,,,,,0.051937848,0.058059191,0.064320903,0.079316969,,,,,,,0.013730835,0.019184218,0.024851007,0.03831931,,,,,,,0.004171432,0.004152977,0.004064395,0.003957182,,,,,,,0.155028268,0.214686635,0.323000054,0.716864673,,,,,,,0.001700992,0.002965416,0.004499348,0.008606116,,,,,,,0.01295654,0.013247041,0.016779087,0.027812729,,,,,,,1.676810483,2.944538086,4.199132507,7.072824575,,,,,,,661.5425035,658.2975274,643.6541235,625.3549115,,,,,,,0.009703719,0.010847312,0.013073054,0.018065701,,,,,,,0.04688222,0.047044287,0.047587052,0.048447682,,,,,,,0.105647497,0.173997673,0.248493342,0.405955588,,,,,,,0.004282577,0.007067903,0.00978264,0.015828969,,,,,,,0.052677476,0.058535536,0.064422765,0.078233674,,,,,,,0.013595247,0.018807506,0.02411625,0.036493303,,,,,,,0.004220249,0.004199547,0.004106131,0.003989393,,,,,,,0.15180019,0.208335573,0.311374678,0.696186862,,,,,,,0.00173624,0.003045634,0.004662067,0.009033447,,,,,,,0.013726748,0.013749079,0.017252448,0.028341854,,,,,,,1.760546874,3.066536234,4.362356598,7.32032003,,,,,,,665.7537142,662.7061879,648.4615099,631.2251585,,,,,,,0.010096239,0.011261376,0.013512709,0.01854499,,,,,,,0.047223631,0.04737245,0.047869634,0.048651923,,,,,,,0.104486932,0.172148807,0.245815746,0.402032913,,,,,,,0.004186501,0.006942103,0.009691744,0.015943098,,,,,,,0.056516194,0.062356565,0.068353408,0.08271647,,,,,,,0.013984124,0.019186663,0.024611398,0.037506263,,,,,,,0.004247114,0.004227672,0.0041368,0.004026843,,,,,,,0.161238992,0.218859179,0.323360828,0.715813631,,,,,,,0.001842201,0.003240659,0.00497883,0.009768118,,,,,,,0.014556756,0.014346981,0.017915699,0.029462944,,,,,,,1.791033775,3.094995518,4.402425713,7.383987662,,,,,,,655.4883595,652.4403122,638.354702,621.0327114,,,,,,,0.009349118,0.010471824,0.012664386,0.017594273,,,,,,,0.046567084,0.046734121,0.047294626,0.048186798,,,,,,,0.106670559,0.175338595,0.250425888,0.40937166,,,,,,,0.004349691,0.007223887,0.010104844,0.016769806,,,,,,,0.049213222,0.055334366,0.061659293,0.07709054,,,,,,,0.013338856,0.018790876,0.024509934,0.038358585,,,,,,,0.004181627,0.004162182,0.004072325,0.00396182,,,,,,,0.16733811,0.22524125,0.329807508,0.715873411,,,,,,,0.001362452,0.002330505,0.003429875,0.00622746,,,,,,,0.009397918,0.010596828,0.013931362,0.023480405,,,,,,,1.5528481,2.856850672,4.086042929,6.892800987,,,,,,,673.6278132,669.4017244,652.8229544,630.8156438,,,,,,,0.010006903,0.011165837,0.013408291,0.018424126,,,,,,,0.047142103,0.047292904,0.047797062,0.048591423,,,,,,,0.094356673,0.159175403,0.229085428,0.376884954,,,,,,,0.003878743,0.006337658,0.008618397,0.013404505,,,,,,,0.054854038,0.059879006,0.064611004,0.075056382,,,,,,,0.01311667,0.01759694,0.021899632,0.03132416,,,,,,,0.004297346,0.004270385,0.004164623,0.004024229,,,,,,,0.150436383,0.203407516,0.300466427,0.684893826,,,,,,,0.001414267,0.002431104,0.003609563,0.006657563,,,,,,,0.009901494,0.010833745,0.014113047,0.023717664,,,,,,,1.574800841,2.863421157,4.095888877,6.91072674,,,,,,,664.0783264,660.1789416,644.3634626,623.5537065,,,,,,,0.009567317,0.010697691,0.012900463,0.017845749,,,,,,,0.046738364,0.046900045,0.04744194,0.048302345,,,,,,,0.097555061,0.16301786,0.233943922,0.383862817,,,,,,,0.003913058,0.006408578,0.008754342,0.013755077,,,,,,,0.050855115,0.055990996,0.060917638,0.071973403,,,,,,,0.012689146,0.017264731,0.021730795,0.031682397,,,,,,,0.004236426,0.00421155,0.004110656,0.003977903,,,,,,,0.15039894,0.2021654,0.297203811,0.671317157,,,,,,,0.00129532,0.002200146,0.003194952,0.005702621,,,,,,,0.009226345,0.010501226,0.013855622,0.02345856,,,,,,,1.583024793,2.909777316,4.175450152,7.067455729,,,,,,,672.7379904,668.3351379,651.3936474,628.5818567,,,,,,,0.009691683,0.010838728,0.013068109,0.018067006,,,,,,,0.046875623,0.047035863,0.047572525,0.048422304,,,,,,,0.096428669,0.162491529,0.233616577,0.383525285,,,,,,,0.003825063,0.006225309,0.00839004,0.012863698,,,,,,,0.05091236,0.055784283,0.060226464,0.069880888,,,,,,,0.012505484,0.016850783,0.020898734,0.029626987,,,,,,,0.004291668,0.004263581,0.004155506,0.004009979,,,,,,,0.147753772,0.199847108,0.295572129,0.673677597,,,,,,,0.001506268,0.002600138,0.003888221,0.007239652,,,,,,,0.011251526,0.012049516,0.015606473,0.026203964,,,,,,,1.66133295,2.985309829,4.268331353,7.21419532,,,,,,,669.5753217,665.7433382,649.905727,629.2630236,,,,,,,0.009807455,0.010958245,0.01319691,0.018216589,,,,,,,0.046935298,0.047095701,0.047632708,0.048483745,,,,,,,0.108764374,0.181079613,0.259385668,0.424309634,,,,,,,0.004054121,0.00665251,0.009119699,0.014416252,,,,,,,0.053160361,0.058549143,0.063801914,0.075669829,,,,,,,0.013229081,0.018024071,0.022764568,0.033411406,,,,,,,0.00420793,0.004183911,0.004084481,0.003954982,,,,,,,0.15994823,0.215608699,0.317056339,0.705349948,,,,,,,0.001282721,0.002178062,0.003175047,0.005619517,,,,,,,0.009986055,0.011477902,0.015319713,0.026138949,,,,,,,1.534458093,2.810778531,4.037206632,6.880464483,,,,,,,659.994256,656.0495056,639.9433689,618.6747646,,,,,,,0.009976203,0.011150704,0.013422923,0.018506194,,,,,,,0.047151314,0.04730715,0.047828139,0.048649089,,,,,,,0.102226874,0.172698938,0.249294296,0.40982852,,,,,,,0.003808208,0.006196262,0.008366135,0.012739262,,,,,,,0.052688173,0.057531124,0.061973805,0.071387526,,,,,,,0.012705484,0.017028013,0.021085666,0.02961482,,,,,,,0.003893958,0.003870719,0.003775705,0.0036503,,,,,,,0.144316595,0.202749577,0.309801273,0.711817475, +Commercial truck,E0,2035,,,,,,,0.001820388,0.003175181,0.004911585,0.009533302,,,,,,,0.014550361,0.014535493,0.018158948,0.028891598,,,,,,,1.733653586,3.003295707,4.262562315,6.560273022,,,,,,,654.4586914,651.8254259,637.6838871,619.6272397,,,,,,,0.009704912,0.010867705,0.013094785,0.018099286,,,,,,,0.046889908,0.047044042,0.047586749,0.048439957,,,,,,,0.10789462,0.176884596,0.253036912,0.366253469,,,,,,,0.004395418,0.007255155,0.010180523,0.016721497,,,,,,,0.051941848,0.058001111,0.064391748,0.079453012,,,,,,,0.013730659,0.019127718,0.024910052,0.038437101,,,,,,,0.004175057,0.004158259,0.004068045,0.003952854,,,,,,,0.155039028,0.214776845,0.323176344,0.701748583,,,,,,,0.001699345,0.002946633,0.004515712,0.008642572,,,,,,,0.012996094,0.013305544,0.016800663,0.026844771,,,,,,,1.675618456,2.946733988,4.192160285,6.435980704,,,,,,,662.1202363,659.1362335,644.2357599,624.6847534,,,,,,,0.009705482,0.010859012,0.013073944,0.018054615,,,,,,,0.046866303,0.047022233,0.047571316,0.048436652,,,,,,,0.105578272,0.173618991,0.24852712,0.359556764,,,,,,,0.004283307,0.007042378,0.009810465,0.015881907,,,,,,,0.052681264,0.058481489,0.064488135,0.078358213,,,,,,,0.013595624,0.018755607,0.024171163,0.03660143,,,,,,,0.004223934,0.004204898,0.004109842,0.003985118,,,,,,,0.151783636,0.208013015,0.311757613,0.681135476,,,,,,,0.001734251,0.003025107,0.004679633,0.00907291,,,,,,,0.013774695,0.01383522,0.017263396,0.027363983,,,,,,,1.759543952,3.070060916,4.354794368,6.6587974,,,,,,,666.3326458,663.5477824,649.0418892,630.5211542,,,,,,,0.010098552,0.011274166,0.013514359,0.018534488,,,,,,,0.047208976,0.047352128,0.047855241,0.048641902,,,,,,,0.104419048,0.171758894,0.245887819,0.355818956,,,,,,,0.004186387,0.006914033,0.009720077,0.015998376,,,,,,,0.056518959,0.0622976,0.068421394,0.082848081,,,,,,,0.01398305,0.019129686,0.024668104,0.037620311,,,,,,,0.004250807,0.004233042,0.004140502,0.004022351,,,,,,,0.161146999,0.218237341,0.323823713,0.701154138,,,,,,,0.001839119,0.003210021,0.005003859,0.009827048,,,,,,,0.014605283,0.014430245,0.017928259,0.028505344,,,,,,,1.78974399,3.09708316,4.394741018,6.736884137,,,,,,,656.0534439,653.2639185,638.9261597,620.3674944,,,,,,,0.009350661,0.010482971,0.012664943,0.01758301,,,,,,,0.046550675,0.046711377,0.047278366,0.048175341,,,,,,,0.106583211,0.174849642,0.25051613,0.363256836,,,,,,,0.004348472,0.007183457,0.010142556,0.016847114,,,,,,,0.049213252,0.05524575,0.061749919,0.077276917,,,,,,,0.013335292,0.018707517,0.024586559,0.038520979,,,,,,,0.004185232,0.004167436,0.004075971,0.003957577,,,,,,,0.167146999,0.224181506,0.330412799,0.701688475,,,,,,,0.001361612,0.002317826,0.00344141,0.006252343,,,,,,,0.009424241,0.010644468,0.013944119,0.022494205,,,,,,,1.551120443,2.853237208,4.082379484,6.204334796,,,,,,,674.226121,670.2597915,653.4198778,630.1488432,,,,,,,0.010009106,0.011178396,0.013409786,0.018413524,,,,,,,0.047127231,0.047272335,0.047782431,0.048581246,,,,,,,0.094298914,0.158839214,0.229116195,0.3319439,,,,,,,0.003879899,0.006318098,0.008640456,0.013444988,,,,,,,0.054859826,0.0598413,0.064662823,0.075149872,,,,,,,0.013118389,0.017558871,0.021942154,0.031404534,,,,,,,0.004301163,0.00427586,0.004168432,0.004019976,,,,,,,0.15036987,0.202382531,0.301262328,0.668866687,,,,,,,0.001413241,0.00241722,0.003621837,0.00668437,,,,,,,0.009930581,0.010888895,0.014121769,0.022765221,,,,,,,1.573088536,2.860635496,4.0913471,6.242813842,,,,,,,664.6603924,661.017108,644.948249,622.9035026,,,,,,,0.009568988,0.010709119,0.012901217,0.017834656,,,,,,,0.046722494,0.046878036,0.047426237,0.048291311,,,,,,,0.097488536,0.162651483,0.233966421,0.338832816,,,,,,,0.003914054,0.006387577,0.008777367,0.013797772,,,,,,,0.050860141,0.055949311,0.060971472,0.072072138,,,,,,,0.012690438,0.017223501,0.021775312,0.031767568,,,,,,,0.004240139,0.004216897,0.004114387,0.003973755,,,,,,,0.150306517,0.201127496,0.297939888,0.656190296,,,,,,,0.001294215,0.002183831,0.003209235,0.005734015,,,,,,,0.009249254,0.010533,0.013876318,0.022487903,,,,,,,1.581360994,2.90777346,4.170092699,6.374311518,,,,,,,673.3391456,669.1962901,651.9958777,627.9366552,,,,,,,0.009693565,0.010850652,0.013069156,0.01805602,,,,,,,0.046859848,0.047014037,0.047557005,0.048411372,,,,,,,0.096358335,0.162068089,0.233683988,0.338250988,,,,,,,0.003825697,0.006198141,0.008417861,0.012915191,,,,,,,0.050917119,0.055730745,0.060290537,0.069998702,,,,,,,0.012506251,0.016798645,0.020951996,0.029728862,,,,,,,0.004295504,0.004269075,0.004159347,0.004005863,,,,,,,0.147697155,0.198808399,0.296410115,0.657658516,,,,,,,0.001505502,0.00258851,0.003899219,0.007263163,,,,,,,0.011284533,0.012102512,0.015624373,0.025201901,,,,,,,1.659672384,2.983529589,4.263592996,6.537419983,,,,,,,670.1659431,666.5943579,650.4986796,628.6026085,,,,,,,0.009809251,0.01097005,0.01319785,0.018205501,,,,,,,0.046919549,0.047073858,0.047617157,0.048472862,,,,,,,0.108702131,0.180764845,0.259353875,0.374522487,,,,,,,0.004056036,0.006637477,0.009139975,0.014452936,,,,,,,0.053166654,0.058518714,0.063849552,0.075755249,,,,,,,0.013231883,0.017993356,0.022803982,0.033485062,,,,,,,0.004211642,0.004189261,0.004088208,0.003950831,,,,,,,0.159930482,0.214977254,0.317653646,0.689464111,,,,,,,0.001283258,0.002176697,0.003178745,0.005625141,,,,,,,0.010012923,0.011518536,0.015342305,0.02504325,,,,,,,1.532946284,2.808806419,4.03373679,6.23268172,,,,,,,660.586642,656.8994852,640.5350531,618.0249983,,,,,,,0.009978466,0.011163476,0.013424469,0.018495466,,,,,,,0.047135966,0.047285895,0.04781305,0.048638544,,,,,,,0.102186907,0.172544446,0.249178281,0.361595095,,,,,,,0.003812203,0.006197337,0.008376168,0.012753226,,,,,,,0.052700429,0.057538706,0.061998987,0.071419548,,,,,,,0.012712588,0.017029573,0.021104278,0.029640628,,,,,,,0.003897455,0.003875738,0.003779198,0.003646467,,,,,,,0.144462725,0.202886703,0.310113815,0.693800001 +Commercial truck,E0,2040,,,,,,,,0.001808451,0.003186013,0.004934505,,,,,,,,0.014611569,0.014546657,0.018208451,,,,,,,,1.7365882,2.994431332,4.249950407,,,,,,,,655.3470274,653.2469543,639.046132,,,,,,,,0.009713838,0.01086245,0.013097635,,,,,,,,0.046866379,0.047005238,0.047549961,,,,,,,,0.107705725,0.176740052,0.25292055,,,,,,,,0.004378872,0.007280387,0.010222798,,,,,,,,0.051910783,0.058065453,0.064495099,,,,,,,,0.013697645,0.019175501,0.024992826,,,,,,,,0.004180725,0.004167328,0.004076735,,,,,,,,0.155074676,0.215080222,0.323571761,,,,,,,,0.001688639,0.002956642,0.004536482,,,,,,,,0.013051289,0.013312058,0.016841156,,,,,,,,1.677143389,2.93856596,4.180498082,,,,,,,,663.0198743,660.5790946,645.6190501,,,,,,,,0.009714021,0.010853258,0.013076139,,,,,,,,0.046842556,0.046983027,0.047534107,,,,,,,,0.105392358,0.173468471,0.248397891,,,,,,,,0.004267855,0.007066787,0.009850664,,,,,,,,0.052651637,0.058541213,0.064583704,,,,,,,,0.013565034,0.018801187,0.024248818,,,,,,,,0.004229674,0.004214103,0.004118666,,,,,,,,0.151373757,0.208595671,0.312401169,,,,,,,,0.001722563,0.003035531,0.004701753,,,,,,,,0.013857364,0.013835576,0.017293771,,,,,,,,1.762300046,3.061650725,4.342687768,,,,,,,,667.2363382,664.9939372,650.4225922,,,,,,,,0.010108069,0.011269754,0.013518379,,,,,,,,0.047187073,0.04731608,0.047821153,,,,,,,,0.104223717,0.171648903,0.245826069,,,,,,,,0.004169451,0.006937547,0.009759926,,,,,,,,0.056487017,0.062357965,0.068519164,,,,,,,,0.013949588,0.019174452,0.024746471,,,,,,,,0.004256571,0.004242267,0.00414931,,,,,,,,0.160321044,0.219013342,0.324601768,,,,,,,,0.001821995,0.003224482,0.005034508,,,,,,,,0.01468509,0.014429331,0.017958971,,,,,,,,1.791939351,3.088064461,4.381800173,,,,,,,,656.9366001,654.6784882,640.2859208,,,,,,,,0.009358755,0.01047677,0.012666355,,,,,,,,0.046526226,0.046670981,0.047239881,,,,,,,,0.106329205,0.174720494,0.25043901,,,,,,,,0.004324646,0.007212972,0.010193736,,,,,,,,0.049165074,0.055320126,0.06187482,,,,,,,,0.013287303,0.018764464,0.024688638,,,,,,,,0.004190866,0.00417646,0.004084645,,,,,,,,0.165898264,0.225083686,0.331328492,,,,,,,,0.00135428,0.002325589,0.003456525,,,,,,,,0.009462681,0.010644996,0.013970766,,,,,,,,1.548763384,2.847600785,4.074439524,,,,,,,,675.1494057,671.7480419,654.8380787,,,,,,,,0.010018419,0.011173725,0.013413449,,,,,,,,0.047105085,0.047235777,0.047747865,,,,,,,,0.094139564,0.158704013,0.229003557,,,,,,,,0.003867748,0.006338742,0.008673081,,,,,,,,0.054839729,0.059894106,0.064741846,,,,,,,,0.013095506,0.017597209,0.022004138,,,,,,,,0.004307053,0.004285354,0.004177478,,,,,,,,0.149196876,0.203560023,0.302507755,,,,,,,,0.001405237,0.002425174,0.003637663,,,,,,,,0.009977355,0.010885532,0.014142928,,,,,,,,1.571388567,2.854143555,4.082121599,,,,,,,,665.5604815,662.4672883,646.3375748,,,,,,,,0.009577318,0.010703221,0.012903118,,,,,,,,0.046698797,0.046838905,0.047389055,,,,,,,,0.097310503,0.162494211,0.233822744,,,,,,,,0.003901082,0.006408634,0.008811049,,,,,,,,0.050837514,0.056002119,0.061052155,,,,,,,,0.012665735,0.017262494,0.021839336,,,,,,,,0.004245881,0.004226148,0.00412325,,,,,,,,0.149101008,0.202236555,0.299080732,,,,,,,,0.001284877,0.002193627,0.003227725,,,,,,,,0.009274627,0.01053827,0.013911271,,,,,,,,1.579782167,2.900757847,4.159823481,,,,,,,,674.2649519,670.6919167,653.4239329,,,,,,,,0.009702322,0.010845202,0.013071723,,,,,,,,0.046836342,0.04697527,0.047520156,,,,,,,,0.096151151,0.161940644,0.233595944,,,,,,,,0.003809044,0.006223609,0.008457942,,,,,,,,0.050887798,0.055793648,0.060385234,,,,,,,,0.01247517,0.016845793,0.021027751,,,,,,,,0.004301411,0.004278617,0.004168457,,,,,,,,0.146592985,0.199960938,0.297683256,,,,,,,,0.001498771,0.002595661,0.003913714,,,,,,,,0.011329393,0.012106645,0.015659063,,,,,,,,1.658510235,2.976738638,4.254292607,,,,,,,,671.0799465,668.0661099,651.9072726,,,,,,,,0.009817877,0.010964333,0.013200169,,,,,,,,0.046896014,0.047035056,0.047580347,,,,,,,,0.108556314,0.180561344,0.259134193,,,,,,,,0.004046679,0.006657126,0.009171125,,,,,,,,0.053150406,0.058567256,0.063923693,,,,,,,,0.013213425,0.018029527,0.022863134,,,,,,,,0.004217387,0.004198511,0.004097062,,,,,,,,0.15918498,0.215893487,0.31862304,,,,,,,,0.001282245,0.002180111,0.003184935,,,,,,,,0.010042949,0.011526397,0.015382756,,,,,,,,1.531295007,2.803202937,4.026502911,,,,,,,,661.5007289,658.3726144,641.939439,,,,,,,,0.009987951,0.011158813,0.013428251,,,,,,,,0.047113078,0.047248121,0.047777326,,,,,,,,0.10213039,0.172304733,0.248881113,,,,,,,,0.00381229,0.006211222,0.008395817,,,,,,,,0.052707095,0.057577468,0.062049372,,,,,,,,0.01271292,0.017054708,0.02114021,,,,,,,,0.003902854,0.003884436,0.003787492,,,,,,,,0.144534521,0.203440758,0.310737887 +Commercial truck,E0,2045,,,,,,,,,0.001814727,0.00319961,,,,,,,,,0.014615756,0.014552637,,,,,,,,,1.736694731,2.994926042,,,,,,,,,654.5640959,652.474136,,,,,,,,,0.009720603,0.010871904,,,,,,,,,0.046887837,0.047026691,,,,,,,,,0.107839379,0.177072928,,,,,,,,,0.004385853,0.007294873,,,,,,,,,0.051921418,0.058095197,,,,,,,,,0.013712098,0.019206851,,,,,,,,,0.00417573,0.004162398,,,,,,,,,0.155042816,0.215159818,,,,,,,,,0.001694206,0.002968661,,,,,,,,,0.013054646,0.013316246,,,,,,,,,1.677817248,2.940055085,,,,,,,,,662.2253453,659.7937274,,,,,,,,,0.009720991,0.010862919,,,,,,,,,0.046864233,0.047004698,,,,,,,,,0.105522829,0.173796549,,,,,,,,,0.004274214,0.007079855,,,,,,,,,0.05266196,0.058568492,,,,,,,,,0.013578169,0.018829332,,,,,,,,,0.004224606,0.004209092,,,,,,,,,0.151536822,0.20886113,,,,,,,,,0.001728696,0.003048771,,,,,,,,,0.013849478,0.013826101,,,,,,,,,1.762445202,3.062471992,,,,,,,,,666.4391136,664.2073733,,,,,,,,,0.010114513,0.011278834,,,,,,,,,0.047207028,0.047336016,,,,,,,,,0.104356744,0.171979382,,,,,,,,,0.004176776,0.006952569,,,,,,,,,0.056498494,0.062388665,,,,,,,,,0.0139645,0.019206377,,,,,,,,,0.004251487,0.004237249,,,,,,,,,0.16066324,0.219438013,,,,,,,,,0.001830763,0.00324353,,,,,,,,,0.014681683,0.014424438,,,,,,,,,1.792509772,3.089901251,,,,,,,,,656.1583338,653.9092168,,,,,,,,,0.00936583,0.010486546,,,,,,,,,0.046548551,0.046693303,,,,,,,,,0.106496221,0.175115457,,,,,,,,,0.004335185,0.007234853,,,,,,,,,0.049184164,0.055367412,,,,,,,,,0.013309067,0.018811183,,,,,,,,,0.004185901,0.004171553,,,,,,,,,0.166440501,0.225766985,,,,,,,,,0.001357916,0.002333347,,,,,,,,,0.009464531,0.010645626,,,,,,,,,1.550949406,2.851793717,,,,,,,,,674.3283112,670.935622,,,,,,,,,0.010024953,0.011182906,,,,,,,,,0.047125282,0.047256008,,,,,,,,,0.094248444,0.15899177,,,,,,,,,0.003872388,0.006347947,,,,,,,,,0.054844555,0.059910248,,,,,,,,,0.013104438,0.017616106,,,,,,,,,0.004301815,0.004280171,,,,,,,,,0.149640352,0.204135312,,,,,,,,,0.001409286,0.002433817,,,,,,,,,0.009977247,0.010883726,,,,,,,,,1.573388825,2.858062315,,,,,,,,,664.7617549,661.6764328,,,,,,,,,0.009584297,0.010712888,,,,,,,,,0.046720398,0.046860555,,,,,,,,,0.097433289,0.162806584,,,,,,,,,0.003906208,0.006418842,,,,,,,,,0.050844036,0.056021232,,,,,,,,,0.012675782,0.017283651,,,,,,,,,0.004240785,0.004221103,,,,,,,,,0.149572007,0.202834069,,,,,,,,,0.001289312,0.002203086,,,,,,,,,0.009282329,0.010547361,,,,,,,,,1.581705993,2.904268468,,,,,,,,,673.4413362,669.8746256,,,,,,,,,0.00970917,0.010854721,,,,,,,,,0.046857815,0.046996679,,,,,,,,,0.096284495,0.162279875,,,,,,,,,0.003815525,0.006236502,,,,,,,,,0.050896385,0.055817298,,,,,,,,,0.012487427,0.016871426,,,,,,,,,0.004296156,0.004273403,,,,,,,,,0.147010149,0.200546438,,,,,,,,,0.001502289,0.002603249,,,,,,,,,0.011333322,0.012109837,,,,,,,,,1.660343018,2.98029134,,,,,,,,,670.2691355,667.263782,,,,,,,,,0.009824858,0.01097402,,,,,,,,,0.046917451,0.047056515,,,,,,,,,0.10866738,0.180855971,,,,,,,,,0.004050071,0.006664056,,,,,,,,,0.053154253,0.058580619,,,,,,,,,0.013220579,0.018045088,,,,,,,,,0.004212292,0.004193469,,,,,,,,,0.159452885,0.216280988,,,,,,,,,0.001282822,0.002181402,,,,,,,,,0.010050115,0.011533539,,,,,,,,,1.533152235,2.806603917,,,,,,,,,660.6883425,657.5683133,,,,,,,,,0.009994537,0.011168072,,,,,,,,,0.047133961,0.047269,,,,,,,,,0.102195203,0.172504439,,,,,,,,,0.003810963,0.006208603,,,,,,,,,0.052698628,0.057567385,,,,,,,,,0.012710503,0.017050846,,,,,,,,,0.003898057,0.003879688,,,,,,,,,0.144437699,0.203411545 +Commercial truck,E0,2050,,,,,,,,,,0.001822053,,,,,,,,,,0.014620352,,,,,,,,,,1.734432523,,,,,,,,,,654.6213613,,,,,,,,,,0.009724408,,,,,,,,,,0.046886455,,,,,,,,,,0.10794819,,,,,,,,,,0.004397106,,,,,,,,,,0.051947285,,,,,,,,,,0.013734665,,,,,,,,,,0.004176096,,,,,,,,,,0.155222666,,,,,,,,,,0.001700796,,,,,,,,,,0.013056976,,,,,,,,,,1.676194081,,,,,,,,,,662.282936,,,,,,,,,,0.00972475,,,,,,,,,,0.046862845,,,,,,,,,,0.105627213,,,,,,,,,,0.004284791,,,,,,,,,,0.052685943,,,,,,,,,,0.013599124,,,,,,,,,,0.004224973,,,,,,,,,,0.151959649,,,,,,,,,,0.001735817,,,,,,,,,,0.013840965,,,,,,,,,,1.760275973,,,,,,,,,,666.4975423,,,,,,,,,,0.010118401,,,,,,,,,,0.047205759,,,,,,,,,,0.104472092,,,,,,,,,,0.004187881,,,,,,,,,,0.056523897,,,,,,,,,,0.013986674,,,,,,,,,,0.004251859,,,,,,,,,,0.161330712,,,,,,,,,,0.001840809,,,,,,,,,,0.014675999,,,,,,,,,,1.790431938,,,,,,,,,,656.2149954,,,,,,,,,,0.009369491,,,,,,,,,,0.04654711,,,,,,,,,,0.106632929,,,,,,,,,,0.00435015,,,,,,,,,,0.049218679,,,,,,,,,,0.0133393,,,,,,,,,,0.004186262,,,,,,,,,,0.167330087,,,,,,,,,,0.001362501,,,,,,,,,,0.009463811,,,,,,,,,,1.551195415,,,,,,,,,,674.386087,,,,,,,,,,0.010028812,,,,,,,,,,0.047124,,,,,,,,,,0.094335026,,,,,,,,,,0.003880748,,,,,,,,,,0.054863064,,,,,,,,,,0.013120498,,,,,,,,,,0.004302183,,,,,,,,,,0.150537874,,,,,,,,,,0.001414228,,,,,,,,,,0.009973563,,,,,,,,,,1.573247226,,,,,,,,,,664.8181532,,,,,,,,,,0.009587999,,,,,,,,,,0.046719015,,,,,,,,,,0.097526222,,,,,,,,,,0.003915024,,,,,,,,,,0.050863574,,,,,,,,,,0.012692797,,,,,,,,,,0.004241145,,,,,,,,,,0.150471912,,,,,,,,,,0.001294986,,,,,,,,,,0.009287439,,,,,,,,,,1.581432619,,,,,,,,,,673.4982219,,,,,,,,,,0.00971294,,,,,,,,,,0.046856404,,,,,,,,,,0.096391863,,,,,,,,,,0.003826492,,,,,,,,,,0.050920162,,,,,,,,,,0.012508188,,,,,,,,,,0.004296519,,,,,,,,,,0.147861425,,,,,,,,,,0.001506646,,,,,,,,,,0.01133557,,,,,,,,,,1.66001203,,,,,,,,,,670.3267944,,,,,,,,,,0.009828643,,,,,,,,,,0.046916089,,,,,,,,,,0.108745462,,,,,,,,,,0.004057221,,,,,,,,,,0.053170473,,,,,,,,,,0.013234677,,,,,,,,,,0.004212654,,,,,,,,,,0.16010744,,,,,,,,,,0.001284073,,,,,,,,,,0.010055936,,,,,,,,,,1.533219142,,,,,,,,,,660.7454173,,,,,,,,,,0.009998444,,,,,,,,,,0.04713262,,,,,,,,,,0.102227342,,,,,,,,,,0.00381313,,,,,,,,,,0.052703813,,,,,,,,,,0.012714766,,,,,,,,,,0.003898393,,,,,,,,,,0.144638172 +Commercial truck,E10,1990,0.103195896,,,,,,,,,,0.222353848,,,,,,,,,,60.8731981,,,,,,,,,,857.4836821,,,,,,,,,,0.081238515,,,,,,,,,,0.046237475,,,,,,,,,,8.09823117,,,,,,,,,,0.210680275,,,,,,,,,,0.501053261,,,,,,,,,,0.410881323,,,,,,,,,,0.039676339,,,,,,,,,,5.52928077,,,,,,,,,,0.088197762,,,,,,,,,,0.220016774,,,,,,,,,,61.30167151,,,,,,,,,,860.5114303,,,,,,,,,,0.080816537,,,,,,,,,,0.046209946,,,,,,,,,,8.135427998,,,,,,,,,,0.184419576,,,,,,,,,,0.443681371,,,,,,,,,,0.359366295,,,,,,,,,,0.044508868,,,,,,,,,,5.623938549,,,,,,,,,,0.101480881,,,,,,,,,,0.245590201,,,,,,,,,,68.73780852,,,,,,,,,,868.591645,,,,,,,,,,0.083658875,,,,,,,,,,0.046596251,,,,,,,,,,8.321187102,,,,,,,,,,0.204772877,,,,,,,,,,0.497284469,,,,,,,,,,0.403760731,,,,,,,,,,0.063338025,,,,,,,,,,6.197059892,,,,,,,,,,0.110067871,,,,,,,,,,0.231063224,,,,,,,,,,66.21918203,,,,,,,,,,853.2423637,,,,,,,,,,0.078385759,,,,,,,,,,0.045876977,,,,,,,,,,8.196746566,,,,,,,,,,0.221121122,,,,,,,,,,0.525401123,,,,,,,,,,0.434442257,,,,,,,,,,0.058006568,,,,,,,,,,5.809800529,,,,,,,,,,0.04997005,,,,,,,,,,0.207172362,,,,,,,,,,58.89879791,,,,,,,,,,862.3769149,,,,,,,,,,0.082982412,,,,,,,,,,0.046508461,,,,,,,,,,7.858461421,,,,,,,,,,0.112560738,,,,,,,,,,0.28848104,,,,,,,,,,0.219654737,,,,,,,,,,0.051940398,,,,,,,,,,5.992559098,,,,,,,,,,0.05851209,,,,,,,,,,0.209813827,,,,,,,,,,61.20033459,,,,,,,,,,852.9466519,,,,,,,,,,0.079712709,,,,,,,,,,0.046066802,,,,,,,,,,7.98558659,,,,,,,,,,0.129611386,,,,,,,,,,0.322316336,,,,,,,,,,0.252704917,,,,,,,,,,0.057172371,,,,,,,,,,5.817750374,,,,,,,,,,0.047033189,,,,,,,,,,0.19949484,,,,,,,,,,58.08393857,,,,,,,,,,858.3224153,,,,,,,,,,0.08095077,,,,,,,,,,0.046208125,,,,,,,,,,7.868177942,,,,,,,,,,0.108429325,,,,,,,,,,0.274944887,,,,,,,,,,0.210553221,,,,,,,,,,0.052244267,,,,,,,,,,5.826052228,,,,,,,,,,0.06848633,,,,,,,,,,0.212137398,,,,,,,,,,61.16452777,,,,,,,,,,861.9021552,,,,,,,,,,0.08153801,,,,,,,,,,0.046269538,,,,,,,,,,8.539295454,,,,,,,,,,0.147794099,,,,,,,,,,0.364555582,,,,,,,,,,0.288584024,,,,,,,,,,0.051505982,,,,,,,,,,5.898524104,,,,,,,,,,0.04721462,,,,,,,,,,0.190871428,,,,,,,,,,54.41728523,,,,,,,,,,855.107765,,,,,,,,,,0.083366734,,,,,,,,,,0.046498291,,,,,,,,,,7.849439153,,,,,,,,,,0.109021415,,,,,,,,,,0.275631509,,,,,,,,,,0.209779231,,,,,,,,,,0.024499868,,,,,,,,,,5.449286792,,,,,,,,, +Commercial truck,E10,1995,0.022319522,0.061854676,,,,,,,,,0.123806607,0.186370077,,,,,,,,,57.57583503,61.0849953,,,,,,,,,701.7833513,734.6173692,,,,,,,,,0.074292062,0.095884207,,,,,,,,,0.046210222,0.046293724,,,,,,,,,5.230773772,6.64595576,,,,,,,,,0.055101808,0.126177204,,,,,,,,,0.158800193,0.315053049,,,,,,,,,0.108099604,0.246352293,,,,,,,,,0.03242279,0.016271511,,,,,,,,,3.279881417,4.75981876,,,,,,,,,0.019282604,0.052948368,,,,,,,,,0.124163943,0.183872475,,,,,,,,,59.09712906,61.46612918,,,,,,,,,708.9869052,739.8498469,,,,,,,,,0.074076649,0.095405172,,,,,,,,,0.046179296,0.046266083,,,,,,,,,5.280734031,6.651946105,,,,,,,,,0.048662078,0.110778242,,,,,,,,,0.146061861,0.281673221,,,,,,,,,0.096074294,0.216057754,,,,,,,,,0.036617491,0.01652045,,,,,,,,,3.363429701,4.852931837,,,,,,,,,0.021587089,0.060527539,,,,,,,,,0.138398965,0.197752199,,,,,,,,,65.6183021,65.61338756,,,,,,,,,713.5940326,746.0338033,,,,,,,,,0.077012004,0.098777187,,,,,,,,,0.046571909,0.046648956,,,,,,,,,5.453885668,6.634074115,,,,,,,,,0.052318899,0.121461282,,,,,,,,,0.159167647,0.310769007,,,,,,,,,0.10463842,0.238773379,,,,,,,,,0.052083918,0.017004013,,,,,,,,,3.740171622,5.157323668,,,,,,,,,0.023401001,0.065620431,,,,,,,,,0.130737478,0.190093934,,,,,,,,,63.45186533,64.6609731,,,,,,,,,701.9402538,732.9067453,,,,,,,,,0.071542201,0.09250795,,,,,,,,,0.045846083,0.045934644,,,,,,,,,5.321609419,6.618185689,,,,,,,,,0.056568058,0.130991559,,,,,,,,,0.160439228,0.325252421,,,,,,,,,0.111571656,0.257396485,,,,,,,,,0.047730301,0.028697868,,,,,,,,,3.526787843,4.925492231,,,,,,,,,0.011107375,0.029746272,,,,,,,,,0.122694595,0.17547538,,,,,,,,,59.96365224,60.55597772,,,,,,,,,718.221287,744.0721302,,,,,,,,,0.076335818,0.097974109,,,,,,,,,0.046483186,0.046561199,,,,,,,,,5.141189814,6.425054482,,,,,,,,,0.029654694,0.066610055,,,,,,,,,0.109033007,0.188273024,,,,,,,,,0.060894538,0.131016748,,,,,,,,,0.043235806,0.016864041,,,,,,,,,3.652261207,5.312606626,,,,,,,,,0.012908198,0.034821936,,,,,,,,,0.122648195,0.174689898,,,,,,,,,61.33338171,61.02822454,,,,,,,,,708.6214437,735.3073844,,,,,,,,,0.073030983,0.094097559,,,,,,,,,0.046036707,0.046123607,,,,,,,,,5.207625403,6.439333983,,,,,,,,,0.03397451,0.076628962,,,,,,,,,0.11424427,0.205908348,,,,,,,,,0.068625309,0.149734771,,,,,,,,,0.047507654,0.016742147,,,,,,,,,3.541518453,5.069063693,,,,,,,,,0.010664951,0.028128527,,,,,,,,,0.118491403,0.167599224,,,,,,,,,59.49741114,59.90467984,,,,,,,,,716.6518337,741.2009934,,,,,,,,,0.074107618,0.095552284,,,,,,,,,0.046179852,0.046264285,,,,,,,,,5.137165008,6.409559587,,,,,,,,,0.02917792,0.064698753,,,,,,,,,0.104034301,0.180199837,,,,,,,,,0.059345979,0.126748722,,,,,,,,,0.043611565,0.023102873,,,,,,,,,3.550291327,5.136622828,,,,,,,,,0.015138083,0.041072941,,,,,,,,,0.12298043,0.178385338,,,,,,,,,60.83020813,63.7501888,,,,,,,,,715.6103754,743.3560512,,,,,,,,,0.07481513,0.096263564,,,,,,,,,0.046238786,0.046324917,,,,,,,,,5.586487873,6.960374612,,,,,,,,,0.039219678,0.088608007,,,,,,,,,0.12726696,0.23477324,,,,,,,,,0.078663309,0.173782087,,,,,,,,,0.042669889,0.026147604,,,,,,,,,3.574831202,5.180111394,,,,,,,,,0.01089024,0.028493174,,,,,,,,,0.111953824,0.162938738,,,,,,,,,54.63148592,59.28068074,,,,,,,,,706.3112766,734.3042996,,,,,,,,,0.076374336,0.098405787,,,,,,,,,0.046472749,0.046553045,,,,,,,,,5.084949463,6.454041346,,,,,,,,,0.030049753,0.06608317,,,,,,,,,0.106884345,0.18390082,,,,,,,,,0.06048493,0.128643223,,,,,,,,,0.020178837,0.009668765,,,,,,,,,3.276417102,4.886561432,,,,,,,, +Commercial truck,E10,2000,0.010943558,0.015916545,0.043214534,,,,,,,,0.066040054,0.066112006,0.135645942,,,,,,,,30.80470877,36.47079292,52.467159,,,,,,,,696.2037978,696.00841,725.8073557,,,,,,,,0.110542764,0.127684881,0.150723909,,,,,,,,0.046703186,0.046873038,0.046437114,,,,,,,,4.123162779,4.51889693,5.698583359,,,,,,,,0.02974169,0.041002314,0.089252262,,,,,,,,0.104409616,0.127542313,0.234778993,,,,,,,,0.06009387,0.080598558,0.1753701,,,,,,,,0.032138344,0.015416098,0.014464756,,,,,,,,1.854580453,2.205528075,3.905263187,,,,,,,,0.009480573,0.013746095,0.036946872,,,,,,,,0.065827212,0.065287399,0.13316059,,,,,,,,31.48156204,36.89057939,52.70834843,,,,,,,,703.997624,703.3610327,731.7999566,,,,,,,,0.11044206,0.127437731,0.150014711,,,,,,,,0.046677466,0.046848705,0.046411493,,,,,,,,4.172464221,4.535091622,5.705222631,,,,,,,,0.026225573,0.036089184,0.078114983,,,,,,,,0.098113063,0.118201801,0.211088246,,,,,,,,0.053743446,0.071546591,0.153639021,,,,,,,,0.03636291,0.015707003,0.014584181,,,,,,,,1.895601929,2.240288589,3.96061209,,,,,,,,0.010312227,0.015051136,0.041823863,,,,,,,,0.074891496,0.071044265,0.143836965,,,,,,,,35.28338394,39.60939461,56.34090532,,,,,,,,708.7252289,708.4296198,738.0617017,,,,,,,,0.114866841,0.132216229,0.155262129,,,,,,,,0.047032994,0.047191421,0.046783179,,,,,,,,4.340144062,4.544430491,5.712294231,,,,,,,,0.027301874,0.037690859,0.084145583,,,,,,,,0.10507655,0.126083846,0.229759942,,,,,,,,0.056893161,0.075513996,0.167139501,,,,,,,,0.051737715,0.016154525,0.014708974,,,,,,,,2.138339841,2.4248276,4.217509355,,,,,,,,0.011259761,0.016451645,0.045581795,,,,,,,,0.069248533,0.067316413,0.136321629,,,,,,,,34.04734805,38.67501889,54.55660673,,,,,,,,697.4600719,697.0251538,725.3896934,,,,,,,,0.10649818,0.123168096,0.145463548,,,,,,,,0.046357436,0.04653351,0.046083757,,,,,,,,4.236035874,4.541626403,5.589551901,,,,,,,,0.029804747,0.041184321,0.091599783,,,,,,,,0.102578825,0.126118208,0.238243376,,,,,,,,0.060492048,0.081355234,0.180455054,,,,,,,,0.047428137,0.027335436,0.014456429,,,,,,,,2.026355241,2.322085561,3.992534221,,,,,,,,0.005435543,0.007815282,0.020580808,,,,,,,,0.064750041,0.063468233,0.126238198,,,,,,,,32.09228745,37.44598832,52.33848471,,,,,,,,715.9049458,713.9791518,738.1659729,,,,,,,,0.113855986,0.131105223,0.154010228,,,,,,,,0.046949839,0.047109715,0.046697104,,,,,,,,4.099094256,4.430195713,5.557953995,,,,,,,,0.015682447,0.021479549,0.04622155,,,,,,,,0.079394875,0.090958395,0.144902407,,,,,,,,0.034777733,0.045043878,0.092677569,,,,,,,,0.043087522,0.016183062,0.01471105,,,,,,,,2.017825416,2.383106904,4.287886756,,,,,,,,0.006293648,0.009075578,0.024115434,,,,,,,,0.063954709,0.062169512,0.125628097,,,,,,,,32.67928598,37.39515049,52.487544,,,,,,,,705.7681316,704.2424041,728.9642888,,,,,,,,0.10888686,0.125681663,0.14796556,,,,,,,,0.046533273,0.046704835,0.046268564,,,,,,,,4.155281592,4.421806682,5.544589995,,,,,,,,0.01791569,0.024574745,0.053239106,,,,,,,,0.080057427,0.093304743,0.15599651,,,,,,,,0.038474942,0.050227346,0.105606074,,,,,,,,0.04731138,0.016038488,0.014527668,,,,,,,,1.975865788,2.298434139,4.108775836,,,,,,,,0.005338625,0.007643583,0.01963573,,,,,,,,0.061596801,0.059944052,0.11922059,,,,,,,,31.71887782,36.81219624,51.1355383,,,,,,,,714.7122365,712.5499806,735.8336143,,,,,,,,0.110365259,0.127419332,0.150220298,,,,,,,,0.046672771,0.046842608,0.046407895,,,,,,,,4.099186073,4.427212069,5.489252989,,,,,,,,0.015815793,0.021629597,0.045567217,,,,,,,,0.075761778,0.087430439,0.139148249,,,,,,,,0.034436769,0.044796847,0.090460853,,,,,,,,0.043488953,0.022203214,0.014664569,,,,,,,,1.955680234,2.275469102,4.114156193,,,,,,,,0.007457414,0.01076983,0.028611312,,,,,,,,0.064791418,0.063697765,0.12672659,,,,,,,,32.39031396,38.53223171,53.90251483,,,,,,,,711.96809,710.5645249,736.5269983,,,,,,,,0.111595182,0.128699643,0.151367205,,,,,,,,0.046732378,0.046901787,0.046469107,,,,,,,,4.448609818,4.807894075,5.892413381,,,,,,,,0.021066044,0.028923868,0.062247839,,,,,,,,0.088530674,0.104541296,0.177385424,,,,,,,,0.044476234,0.058669438,0.12303587,,,,,,,,0.042422242,0.025005842,0.013162454,,,,,,,,1.995982989,2.355162783,4.151364917,,,,,,,,0.00557706,0.007963764,0.020081789,,,,,,,,0.058778301,0.058911272,0.117868334,,,,,,,,29.26430425,36.59562703,51.60817814,,,,,,,,701.9549789,700.3292595,726.0657001,,,,,,,,0.113646917,0.131130379,0.154661593,,,,,,,,0.046953938,0.047119266,0.04669288,,,,,,,,4.003828626,4.419901965,5.542841908,,,,,,,,0.016764944,0.022908058,0.04731494,,,,,,,,0.079042327,0.091412659,0.144028531,,,,,,,,0.03596533,0.046949718,0.093401267,,,,,,,,0.020022103,0.009198256,0.006871449,,,,,,,,1.798479766,2.174839906,3.977615875,,,,,,, +Commercial truck,E10,2005,0.003546947,0.005683408,0.008209785,0.024478394,,,,,,,0.069649886,0.060044176,0.056155265,0.080295079,,,,,,,15.037584,23.8944747,29.95402769,42.4019753,,,,,,,640.06977,649.5855028,650.0678634,694.2424186,,,,,,,0.036927395,0.039390828,0.046605698,0.106967824,,,,,,,0.048667143,0.04851462,0.048680444,0.047721687,,,,,,,3.090525314,3.802594407,4.208648066,3.913070445,,,,,,,0.009382994,0.014668006,0.019305243,0.050548662,,,,,,,0.061727938,0.072595408,0.082740152,0.150751391,,,,,,,0.022810966,0.032387818,0.041402015,0.10134304,,,,,,,0.029503651,0.014386763,0.012955327,0.004611896,,,,,,,0.784339473,1.195588952,1.480403594,2.67293285,,,,,,,0.003205909,0.004949797,0.007115676,0.021092467,,,,,,,0.069512513,0.05935189,0.055277196,0.078066796,,,,,,,15.32613497,24.26931162,30.28982747,42.22195919,,,,,,,647.0272932,656.4740742,656.3783414,699.9160055,,,,,,,0.037004062,0.039440499,0.046610238,0.106580738,,,,,,,0.048667793,0.048512207,0.048680692,0.047710974,,,,,,,3.144068281,3.819940959,4.2222631,3.904938586,,,,,,,0.008616772,0.013141968,0.017290628,0.044676582,,,,,,,0.061267043,0.070464921,0.07946115,0.138792798,,,,,,,0.021526517,0.02963398,0.037623541,0.089927982,,,,,,,0.033472939,0.01466123,0.013081092,0.004649586,,,,,,,0.77903513,1.185824982,1.461692387,2.661815286,,,,,,,0.003799621,0.004415512,0.006310989,0.023324385,,,,,,,0.077582751,0.061178799,0.056648488,0.082640124,,,,,,,16.48303586,26.16420647,32.74862376,44.20917816,,,,,,,652.4353707,661.953136,662.3076253,706.4357172,,,,,,,0.038249105,0.040747356,0.048004394,0.109577366,,,,,,,0.048852755,0.048712862,0.04886475,0.047978217,,,,,,,3.288111928,3.840562702,4.23880128,3.909393464,,,,,,,0.009565964,0.011973372,0.015712734,0.047004952,,,,,,,0.067420219,0.071954847,0.080018808,0.148703066,,,,,,,0.024024289,0.028000521,0.035171089,0.095721638,,,,,,,0.047616301,0.015094626,0.013199257,0.004692898,,,,,,,0.854029,1.21633757,1.492748496,2.779517298,,,,,,,0.003964531,0.005760478,0.008362843,0.025714774,,,,,,,0.069639149,0.061448095,0.053482353,0.079542752,,,,,,,16.10934363,26.87641306,30.72062652,43.48530984,,,,,,,641.4678331,650.854362,651.0582462,694.6330166,,,,,,,0.035760419,0.03814906,0.045216211,0.103769267,,,,,,,0.048414754,0.04825284,0.048428216,0.04742294,,,,,,,3.193759471,3.987878451,4.185415039,3.858530029,,,,,,,0.010016178,0.014566353,0.019232042,0.051523383,,,,,,,0.060654635,0.07001624,0.080112969,0.150869345,,,,,,,0.023870196,0.032115266,0.041086151,0.103459969,,,,,,,0.043620617,0.025505883,0.012975063,0.004614491,,,,,,,0.823916142,1.26433315,1.462773368,2.695936401,,,,,,,0.002098407,0.003286302,0.004708008,0.012170095,,,,,,,0.068408327,0.059426198,0.054702345,0.07269497,,,,,,,16.14060061,25.06268524,30.84218045,41.81321137,,,,,,,658.5652225,667.500618,665.8198784,706.2394023,,,,,,,0.037956842,0.040438522,0.047666063,0.108830535,,,,,,,0.048795813,0.048652954,0.04880742,0.047907998,,,,,,,3.118573355,3.720763673,4.114967647,3.799370113,,,,,,,0.005975595,0.009246171,0.012294396,0.027693051,,,,,,,0.058801009,0.065366817,0.071799364,0.104931302,,,,,,,0.01699234,0.022766631,0.028493099,0.057597897,,,,,,,0.039631572,0.015129189,0.013269252,0.004691593,,,,,,,0.763922146,1.201004196,1.468076487,2.740304811,,,,,,,0.002431019,0.003366327,0.004803018,0.014045852,,,,,,,0.066098498,0.055163477,0.051056353,0.07166766,,,,,,,16.1208772,25.21195495,31.199606,41.69890389,,,,,,,649.1915044,658.2111814,656.9410291,697.7358595,,,,,,,0.036517934,0.038925647,0.046022821,0.105255641,,,,,,,0.048521924,0.048366967,0.048535595,0.047565528,,,,,,,3.170377041,3.730291671,4.1191391,3.784633171,,,,,,,0.00671791,0.009518318,0.012589922,0.031283282,,,,,,,0.056347268,0.061866479,0.068362908,0.108661051,,,,,,,0.017905451,0.022755396,0.028535936,0.063992081,,,,,,,0.043500685,0.014989981,0.013092305,0.004635103,,,,,,,0.761144749,1.143275385,1.3985222,2.649601721,,,,,,,0.002033054,0.003071172,0.004359255,0.011479081,,,,,,,0.064476802,0.058394383,0.052067374,0.069475268,,,,,,,16.11708859,26.27814855,31.08122709,42.02156068,,,,,,,656.5605293,665.4942402,663.5007939,703.79223,,,,,,,0.036913537,0.039362236,0.046547345,0.106660225,,,,,,,0.04863915,0.048486221,0.048652401,0.04769302,,,,,,,3.121935896,3.825388709,4.118074901,3.786508334,,,,,,,0.005942543,0.008949411,0.011841715,0.027155753,,,,,,,0.054889658,0.060942578,0.066928236,0.099611547,,,,,,,0.016414001,0.021734085,0.027066081,0.055769813,,,,,,,0.039944949,0.02072511,0.013223035,0.004675336,,,,,,,0.741821534,1.195581396,1.419439186,2.660276398,,,,,,,0.00270686,0.003804586,0.005422841,0.01641497,,,,,,,0.067187428,0.05953028,0.051513922,0.07500746,,,,,,,16.26563375,27.83252522,32.1120806,44.19372865,,,,,,,654.3310664,663.5359367,662.4714224,704.4137892,,,,,,,0.037383469,0.039835274,0.047045585,0.107466428,,,,,,,0.048701963,0.048547964,0.048714434,0.047755517,,,,,,,3.3659754,4.073524077,4.274495055,4.097436455,,,,,,,0.007442394,0.010607248,0.013957122,0.036033637,,,,,,,0.059890151,0.066281536,0.073304509,0.12091145,,,,,,,0.01949217,0.025118981,0.031360617,0.073304415,,,,,,,0.038964692,0.023350537,0.011829853,0.004610323,,,,,,,0.787159303,1.239048666,1.432475095,2.751715181,,,,,,,0.001856502,0.002740474,0.003837604,0.01155442,,,,,,,0.054420228,0.046022526,0.043192703,0.072757073,,,,,,,13.92882182,25.03174542,31.62563648,44.5001229,,,,,,,644.3920134,653.4714096,652.1252983,693.1606341,,,,,,,0.037850067,0.040366468,0.047692152,0.109392966,,,,,,,0.048858727,0.048711564,0.048871409,0.04794248,,,,,,,2.671558343,2.760135224,3.099351641,3.935775335,,,,,,,0.005618794,0.008337023,0.010949181,0.027841161,,,,,,,0.055841793,0.061291643,0.066669417,0.102647965,,,,,,,0.015913042,0.020698088,0.025495056,0.057100045,,,,,,,0.018337741,0.008567294,0.006155178,0.004258941,,,,,,,0.648569327,1.022598493,1.26036604,2.709712082,,,,,, +Commercial truck,E10,2010,,0.002419739,0.004183026,0.006234164,0.018905928,,,,,,,0.049035991,0.06223565,0.039776438,0.062544299,,,,,,,10.37377064,20.19097802,23.27550489,36.53714325,,,,,,,667.476968,666.5133306,670.5203843,698.0556129,,,,,,,0.035370844,0.039823584,0.048624701,0.095198878,,,,,,,0.047990177,0.048125642,0.048216719,0.047870634,,,,,,,1.925186084,2.627874698,1.719706625,2.975034576,,,,,,,0.005241978,0.008535502,0.011730859,0.035719606,,,,,,,0.053620122,0.060800601,0.067995748,0.120410736,,,,,,,0.015476989,0.021861213,0.028249015,0.074539823,,,,,,,0.014783435,0.01328307,0.004454311,0.004637228,,,,,,,0.341775942,0.639070707,0.691944283,2.081201815,,,,,,,0.002164874,0.003712593,0.005569771,0.016410873,,,,,,,0.047778194,0.061797534,0.038528373,0.060218964,,,,,,,10.46130761,20.47942967,23.2740759,36.23497522,,,,,,,674.9940906,673.6328741,677.0214955,703.4550011,,,,,,,0.035426714,0.039848912,0.048584329,0.094837742,,,,,,,0.047979673,0.048116921,0.048209901,0.047862434,,,,,,,1.93317537,2.636500134,1.715650223,2.96372021,,,,,,,0.004997469,0.008084395,0.01110652,0.032056255,,,,,,,0.054084981,0.060726449,0.067458134,0.11302713,,,,,,,0.015045018,0.02094563,0.02691792,0.0671638,,,,,,,0.015074664,0.013424956,0.004497496,0.004673097,,,,,,,0.3342947,0.631176117,0.675773822,2.053528052,,,,,,,0.001911766,0.00326614,0.005943254,0.017966645,,,,,,,0.04996044,0.064272129,0.040312117,0.063202171,,,,,,,11.39607641,21.99715337,23.95340964,37.65397826,,,,,,,680.0915439,679.007727,682.8912412,710.349289,,,,,,,0.036731465,0.041218699,0.050093993,0.097391873,,,,,,,0.048229293,0.048354016,0.0484375,0.048115899,,,,,,,1.939716281,2.6471304,1.722665135,2.972348978,,,,,,,0.004510567,0.007277774,0.011230122,0.033369396,,,,,,,0.056961777,0.062885526,0.071918238,0.120594542,,,,,,,0.014620616,0.019890954,0.027902564,0.070890149,,,,,,,0.015510203,0.013532074,0.00453649,0.004718896,,,,,,,0.348800499,0.651766884,0.70126371,2.131320271,,,,,,,0.002462635,0.004269481,0.00650305,0.01982651,,,,,,,0.050733621,0.058886861,0.038257404,0.061320139,,,,,,,11.6694672,20.88640056,23.8574421,37.18336308,,,,,,,668.9771481,667.807714,671.5133767,698.4284462,,,,,,,0.034176535,0.038528779,0.047122928,0.092415515,,,,,,,0.047700526,0.047842956,0.047939451,0.047579637,,,,,,,2.015856774,2.611225346,1.703057146,2.935077811,,,,,,,0.005199686,0.008489562,0.011874963,0.036320573,,,,,,,0.050992713,0.058147033,0.065828629,0.11960844,,,,,,,0.01516406,0.021524282,0.028342037,0.075842214,,,,,,,0.026233058,0.013308867,0.004460906,0.004639705,,,,,,,0.373327481,0.636198197,0.692204427,2.081042235,,,,,,,0.00166643,0.002792136,0.003901763,0.009973934,,,,,,,0.04725886,0.06413517,0.037268291,0.055693276,,,,,,,10.61795146,21.21574302,23.78625039,35.9338647,,,,,,,687.2971006,684.8516046,686.4215473,709.1294991,,,,,,,0.036430129,0.040896985,0.049729853,0.096747132,,,,,,,0.048161767,0.048288424,0.048373373,0.048047782,,,,,,,1.867913573,2.560004263,1.662479842,2.882605643,,,,,,,0.004510964,0.007189789,0.009386616,0.021701667,,,,,,,0.055928093,0.061480566,0.066137592,0.092692322,,,,,,,0.01430301,0.019244142,0.023384363,0.046804125,,,,,,,0.015578219,0.01364854,0.004559942,0.004710793,,,,,,,0.33486477,0.648330177,0.677321242,2.078659814,,,,,,,0.001640735,0.002754951,0.004200673,0.011256982,,,,,,,0.043656788,0.058182604,0.035069771,0.05430575,,,,,,,10.74760243,21.26517641,23.42493169,35.67871713,,,,,,,677.4936652,675.3496647,677.3722274,700.772729,,,,,,,0.034946272,0.039321317,0.047962243,0.093671483,,,,,,,0.047834272,0.047971519,0.04806446,0.047716912,,,,,,,1.878786739,2.56610477,1.660117832,2.870121127,,,,,,,0.004388483,0.007002873,0.009631853,0.02373482,,,,,,,0.051621906,0.057061618,0.062750313,0.093237951,,,,,,,0.013586385,0.018425662,0.023477007,0.050379588,,,,,,,0.015429923,0.013459175,0.004499826,0.004655278,,,,,,,0.322899956,0.60901128,0.648060683,2.010942406,,,,,,,0.001559457,0.002596104,0.003593432,0.009226695,,,,,,,0.046163923,0.060211076,0.035426774,0.053366854,,,,,,,11.15314373,21.29081587,24.17828029,36.40874993,,,,,,,685.6839625,683.0210021,684.2713871,706.5155206,,,,,,,0.035351276,0.039784446,0.048544646,0.094916395,,,,,,,0.04796072,0.048096356,0.048187743,0.047842381,,,,,,,1.923604349,2.564495985,1.668901067,2.878836883,,,,,,,0.004397195,0.006984064,0.009078892,0.021035627,,,,,,,0.051874678,0.057165191,0.061547702,0.087107001,,,,,,,0.01359633,0.018306265,0.022204141,0.044741998,,,,,,,0.021356698,0.013612057,0.004545658,0.004693428,,,,,,,0.333400086,0.623402974,0.657020439,2.0220463,,,,,,,0.001756817,0.002969597,0.00459486,0.012898292,,,,,,,0.04699609,0.057416282,0.037271478,0.057693963,,,,,,,11.90416944,21.65584627,24.75657178,38.12505091,,,,,,,682.9255682,680.904598,683.2070514,707.518023,,,,,,,0.035800565,0.040248846,0.049035995,0.095608243,,,,,,,0.048021245,0.04815695,0.048248875,0.047905475,,,,,,,2.050244576,2.6592518,1.831521527,3.122506206,,,,,,,0.0044881,0.007189036,0.010087257,0.026593329,,,,,,,0.053965095,0.059596743,0.065914606,0.101619078,,,,,,,0.0141316,0.019137076,0.024741821,0.056264379,,,,,,,0.024035826,0.012156943,0.00447123,0.004630692,,,,,,,0.350707134,0.618294514,0.68709148,2.100283177,,,,,,,0.001370308,0.002264072,0.003474105,0.009126909,,,,,,,0.034632795,0.045785739,0.037096793,0.056600702,,,,,,,10.67829336,20.93045964,24.8125327,38.73301652,,,,,,,672.8653508,670.7073124,672.6278524,695.8789645,,,,,,,0.036306755,0.040833917,0.049787308,0.097308217,,,,,,,0.048204619,0.048335712,0.04842341,0.048086594,,,,,,,1.33672961,1.846376463,1.739588676,3.008608675,,,,,,,0.004030734,0.006377557,0.008909169,0.021216622,,,,,,,0.05282398,0.057591075,0.062946624,0.089132109,,,,,,,0.01308333,0.017332524,0.022092729,0.04517991,,,,,,,0.008823143,0.006330815,0.004132434,0.004275656,,,,,,,0.286005987,0.526938261,0.677239005,2.087278245,,,,, +Commercial truck,E10,2015,,,0.001899408,0.003335411,0.005175682,0.01170848,,,,,,,0.018717454,0.017743276,0.022336591,0.04077803,,,,,,,4.374051427,8.887055247,11.88536871,21.21141428,,,,,,,686.5980518,686.7095839,685.158042,683.2262382,,,,,,,0.00941081,0.010704022,0.012890388,0.038235842,,,,,,,0.047380583,0.047474973,0.047683965,0.048177025,,,,,,,0.542619226,0.505120515,0.702919225,1.463467964,,,,,,,0.004585194,0.007649205,0.010904606,0.02100673,,,,,,,0.052210553,0.058657963,0.065801347,0.088755495,,,,,,,0.014084579,0.019810723,0.026180262,0.046606694,,,,,,,0.013683344,0.004561855,0.004551548,0.004538716,,,,,,,0.202489331,0.292128794,0.447677078,1.168297542,,,,,,,0.001749918,0.003093742,0.004761785,0.010428169,,,,,,,0.017365283,0.016659968,0.02110917,0.038720008,,,,,,,4.446098941,9.062271981,12.11072793,21.20931502,,,,,,,694.5128558,694.2443921,692.0733447,688.7051538,,,,,,,0.009420288,0.010702858,0.012872972,0.038106352,,,,,,,0.047361898,0.047457562,0.047669479,0.048171141,,,,,,,0.541482861,0.501368861,0.697234111,1.453269641,,,,,,,0.004440714,0.007425861,0.010519306,0.019568215,,,,,,,0.052900591,0.059135962,0.065861545,0.086273728,,,,,,,0.013882117,0.019415752,0.02540473,0.043554922,,,,,,,0.013841077,0.00461191,0.004597488,0.004575113,,,,,,,0.202887701,0.28995809,0.441927151,1.147667795,,,,,,,0.001545347,0.003197784,0.004965973,0.011172413,,,,,,,0.017638342,0.016965118,0.021406603,0.039618612,,,,,,,4.644868796,9.341957892,12.51695783,21.89510431,,,,,,,699.3914913,699.3855242,697.6514322,695.3955079,,,,,,,0.009791131,0.01109836,0.01330462,0.039111328,,,,,,,0.047664811,0.047752139,0.047945262,0.048399354,,,,,,,0.531697632,0.496430742,0.692245466,1.453661613,,,,,,,0.004000417,0.007323602,0.010452502,0.019991821,,,,,,,0.055924455,0.063000913,0.069867812,0.091582239,,,,,,,0.013566631,0.019847799,0.025969486,0.04529075,,,,,,,0.013938308,0.004646064,0.004634543,0.004619557,,,,,,,0.211574374,0.300300166,0.453194848,1.175593026,,,,,,,0.001898244,0.003392918,0.005287325,0.012163937,,,,,,,0.018679592,0.017420212,0.021818808,0.039779948,,,,,,,4.680385595,9.467419519,12.5894497,21.83170817,,,,,,,688.1400576,688.0564338,686.2511003,683.7660923,,,,,,,0.009076644,0.010336054,0.012469624,0.037136812,,,,,,,0.047061817,0.047160652,0.047379844,0.047899671,,,,,,,0.540690393,0.50157101,0.697347971,1.44730584,,,,,,,0.004499582,0.007607001,0.010883731,0.021255,,,,,,,0.04940399,0.05597752,0.06320723,0.086934322,,,,,,,0.013616551,0.019453652,0.025898276,0.047006007,,,,,,,0.013714078,0.004570803,0.004558809,0.004542302,,,,,,,0.219961473,0.305297391,0.456146656,1.162950974,,,,,,,0.001446721,0.002429111,0.003636156,0.00710621,,,,,,,0.014613614,0.014562181,0.018887178,0.034913765,,,,,,,4.697417971,9.739211299,13.00533835,21.67544525,,,,,,,707.4394198,706.0795433,702.1777377,694.8792129,,,,,,,0.009706492,0.011006678,0.013202105,0.038856543,,,,,,,0.047589098,0.047677696,0.047873718,0.048335157,,,,,,,0.502604638,0.470594898,0.659529992,1.39996062,,,,,,,0.00412773,0.006672667,0.009292437,0.015525992,,,,,,,0.055239699,0.060398975,0.065890479,0.079496561,,,,,,,0.013561077,0.018145719,0.023049461,0.03519496,,,,,,,0.014098698,0.004690531,0.004664612,0.004616126,,,,,,,0.214361059,0.300743928,0.455745016,1.162241276,,,,,,,0.001412206,0.002540424,0.00383304,0.007731335,,,,,,,0.014674403,0.014506856,0.018664522,0.034266578,,,,,,,4.682659297,9.572041934,12.74303904,21.37506521,,,,,,,697.2237062,696.1681412,692.7799468,686.5969946,,,,,,,0.009289363,0.0105572,0.012703335,0.037641144,,,,,,,0.047217061,0.047312597,0.047524257,0.048025643,,,,,,,0.51748846,0.478976711,0.668080768,1.401262554,,,,,,,0.004004803,0.006751204,0.009442751,0.016207977,,,,,,,0.050911193,0.056542484,0.06223883,0.077150346,,,,,,,0.012834054,0.017834653,0.022916196,0.036208532,,,,,,,0.013895104,0.004624689,0.004602181,0.004561108,,,,,,,0.209507141,0.292788819,0.441061582,1.12376313,,,,,,,0.001373024,0.002294031,0.003399377,0.006500486,,,,,,,0.014483098,0.014412223,0.01867536,0.03413959,,,,,,,4.72479134,9.795335705,13.05558431,21.99343797,,,,,,,706.1206459,704.5616605,700.3495386,692.3068769,,,,,,,0.009403554,0.010690304,0.012866499,0.038128928,,,,,,,0.047350405,0.047444896,0.047654178,0.04814848,,,,,,,0.510431412,0.477449499,0.66807312,1.406950793,,,,,,,0.004057745,0.006550857,0.009068388,0.014916711,,,,,,,0.051263959,0.056281779,0.061510726,0.074133557,,,,,,,0.012920994,0.017380821,0.022053043,0.033330869,,,,,,,0.014072415,0.004680448,0.004652468,0.004599039,,,,,,,0.2112194,0.296313767,0.449075396,1.139185231,,,,,,,0.00147484,0.002695905,0.004087869,0.008499773,,,,,,,0.015196776,0.015600388,0.020145122,0.037070417,,,,,,,4.610835519,9.649527589,12.92097434,22.50484649,,,,,,,702.9229233,702.0024161,698.7871822,693.0184716,,,,,,,0.009521565,0.010812114,0.012995362,0.038416584,,,,,,,0.047409918,0.047504538,0.047714201,0.048210534,,,,,,,0.532720028,0.52790736,0.735119512,1.534918012,,,,,,,0.004063055,0.006975553,0.009783329,0.017252856,,,,,,,0.053062847,0.059068184,0.065062409,0.081662432,,,,,,,0.013226343,0.018555225,0.023894316,0.038664807,,,,,,,0.01254864,0.004594096,0.004573184,0.004535724,,,,,,,0.217059674,0.307829976,0.463491314,1.177119673,,,,,,,0.001216059,0.002232371,0.003299482,0.006298573,,,,,,,0.0121272,0.015343288,0.020322893,0.037231757,,,,,,,4.165466847,9.085036382,12.25035776,22.38973663,,,,,,,692.8475915,691.7654574,688.2266281,681.6010233,,,,,,,0.009670839,0.010988639,0.013213767,0.039072215,,,,,,,0.047613418,0.047704952,0.047907493,0.048383944,,,,,,,0.350784952,0.497928942,0.699352617,1.480879866,,,,,,,0.003740395,0.006463627,0.008935774,0.014703421,,,,,,,0.052365279,0.057885303,0.063001616,0.075390857,,,,,,,0.012532629,0.017438346,0.022014543,0.033094054,,,,,,,0.006541327,0.004250021,0.004228361,0.004187825,,,,,,,0.188205855,0.294117527,0.459255351,1.188377726,,,, +Commercial truck,E10,2020,,,,0.001896627,0.003339281,0.005120905,0.009945667,,,,,,,0.015990817,0.017699275,0.021426291,0.035003687,,,,,,,3.24204543,6.793971772,8.427865705,13.21960059,,,,,,,653.2468066,652.534944,643.0012187,644.790099,,,,,,,0.009605833,0.010836668,0.013085381,0.022115172,,,,,,,0.047112177,0.047208434,0.047622159,0.048303813,,,,,,,0.274451385,0.477767916,0.629620588,0.936041793,,,,,,,0.004677254,0.007770315,0.010865433,0.017791616,,,,,,,0.052407229,0.058951436,0.065705301,0.081647407,,,,,,,0.014194555,0.020006945,0.026080255,0.040346744,,,,,,,0.00433956,0.004334831,0.004271498,0.004283382,,,,,,,0.183031986,0.276465501,0.404403379,0.866454851,,,,,,,0.001777004,0.00310929,0.004725523,0.009009454,,,,,,,0.014667073,0.016622666,0.020217114,0.033084289,,,,,,,3.258473734,6.900204886,8.542010235,13.28987356,,,,,,,660.8259255,659.7719036,649.5377891,650.0323079,,,,,,,0.009610126,0.010830539,0.013065172,0.022052354,,,,,,,0.047090753,0.047188223,0.047607045,0.048298798,,,,,,,0.271959887,0.473760784,0.62403143,0.927640591,,,,,,,0.004567472,0.007557784,0.010497604,0.016910231,,,,,,,0.053165959,0.059441222,0.065807938,0.080432011,,,,,,,0.014065943,0.019635334,0.025345296,0.038410551,,,,,,,0.004389909,0.004382907,0.004314921,0.004318206,,,,,,,0.183336603,0.274073678,0.397776932,0.851715809,,,,,,,0.001818255,0.00320424,0.004917127,0.009538757,,,,,,,0.015206146,0.016935256,0.020516889,0.033549656,,,,,,,3.367641847,7.119156278,8.827396045,13.7232692,,,,,,,665.2464926,664.4015929,654.5615222,656.2249812,,,,,,,0.00999383,0.01123891,0.013503794,0.022644081,,,,,,,0.047415612,0.047504831,0.047888002,0.048516471,,,,,,,0.268900246,0.470054774,0.619779682,0.923571986,,,,,,,0.00447091,0.00743474,0.0104159,0.017088179,,,,,,,0.057000364,0.063274556,0.069780201,0.085121889,,,,,,,0.014458156,0.020030236,0.025877862,0.039602193,,,,,,,0.004419275,0.004413662,0.004348294,0.004359344,,,,,,,0.193142054,0.284704541,0.409336103,0.870285649,,,,,,,0.001916295,0.003383865,0.005216931,0.010253174,,,,,,,0.015884123,0.01736303,0.020959044,0.03424648,,,,,,,3.443440674,7.202503342,8.891294088,13.76208793,,,,,,,654.7664102,653.88762,644.1424138,645.4201715,,,,,,,0.00925975,0.010457422,0.012657017,0.021477089,,,,,,,0.046782014,0.046882602,0.047315335,0.048032188,,,,,,,0.272334081,0.473940141,0.624664551,0.928235073,,,,,,,0.004630581,0.007708595,0.01082658,0.017917091,,,,,,,0.049682409,0.056223519,0.063065948,0.079483515,,,,,,,0.013800812,0.019609798,0.025758699,0.040442092,,,,,,,0.004349655,0.004343817,0.004279079,0.004287567,,,,,,,0.199159036,0.289073849,0.413058472,0.864920369,,,,,,,0.001437901,0.002466941,0.003638171,0.006510765,,,,,,,0.011770592,0.014530713,0.017951823,0.029483721,,,,,,,3.373086734,7.343132283,9.046737841,13.77559458,,,,,,,672.971617,670.9232446,658.8324183,655.895392,,,,,,,0.009906364,0.011144501,0.013399591,0.022495018,,,,,,,0.047336559,0.047427025,0.047815665,0.048453881,,,,,,,0.251645627,0.445662426,0.589845449,0.882770251,,,,,,,0.004160968,0.006815049,0.009305004,0.014348193,,,,,,,0.055330039,0.06075203,0.065932024,0.076917977,,,,,,,0.013582299,0.01839994,0.023072435,0.032939758,,,,,,,0.004470594,0.004456986,0.004376666,0.004357155,,,,,,,0.192454017,0.282713528,0.405216279,0.869290786,,,,,,,0.001491834,0.002573008,0.003827697,0.006975506,,,,,,,0.01203447,0.014480567,0.017802624,0.029178341,,,,,,,3.348661605,7.223659395,8.889512975,13.56487789,,,,,,,663.3468254,661.5960034,650.1849746,648.1705913,,,,,,,0.009475766,0.010681888,0.012892815,0.021782013,,,,,,,0.046946435,0.047043699,0.047461936,0.048153373,,,,,,,0.25765931,0.452680787,0.597603806,0.890493059,,,,,,,0.004195676,0.006889058,0.009448035,0.014730355,,,,,,,0.051338336,0.056877364,0.062260022,0.073917408,,,,,,,0.013157664,0.018077165,0.022922173,0.033372896,,,,,,,0.004406655,0.004395024,0.00431922,0.004305838,,,,,,,0.189690079,0.276219661,0.394481777,0.841565567,,,,,,,0.001369967,0.002333345,0.003402981,0.005971025,,,,,,,0.011585503,0.014379226,0.017759585,0.02911463,,,,,,,3.407795842,7.38963046,9.105234218,13.93975826,,,,,,,671.9070815,669.6921232,657.2697599,653.5270894,,,,,,,0.009596157,0.010820722,0.013060016,0.022058642,,,,,,,0.047082037,0.047178384,0.047592368,0.048275115,,,,,,,0.255836641,0.452420584,0.598569899,0.892944467,,,,,,,0.004106071,0.006699364,0.009082585,0.013802323,,,,,,,0.051384713,0.056648082,0.061556925,0.071721284,,,,,,,0.012968375,0.017645943,0.022079919,0.031223236,,,,,,,0.004463521,0.004448809,0.004366284,0.004341422,,,,,,,0.189430456,0.27783273,0.398415544,0.85442669,,,,,,,0.001573694,0.002724077,0.004073023,0.007518789,,,,,,,0.013150875,0.015551417,0.019200349,0.031641296,,,,,,,3.412551299,7.323470782,9.075585587,14.11024787,,,,,,,668.8192706,667.1776506,655.8118786,654.161047,,,,,,,0.009712965,0.010941096,0.013188935,0.022235785,,,,,,,0.047141595,0.047238078,0.047652488,0.048336617,,,,,,,0.285243237,0.500295971,0.659516457,0.979310081,,,,,,,0.004327267,0.007117384,0.009782866,0.015364649,,,,,,,0.053624815,0.059397212,0.06506316,0.077529205,,,,,,,0.013676001,0.018799193,0.023883745,0.035030563,,,,,,,0.004376879,0.004366212,0.004291945,0.004281394,,,,,,,0.199192673,0.290098643,0.414634713,0.877920797,,,,,,,0.001338323,0.002276817,0.003308105,0.005763395,,,,,,,0.012192832,0.015295903,0.019261989,0.031966539,,,,,,,3.198135645,6.92718337,8.641875325,13.74271549,,,,,,,659.2463314,657.4711118,645.8193364,643.3103377,,,,,,,0.009873925,0.011128827,0.013414062,0.022602928,,,,,,,0.047352343,0.047445837,0.04784743,0.048506896,,,,,,,0.26743464,0.474328973,0.62940859,0.94161384,,,,,,,0.004062318,0.006626105,0.008961431,0.013543205,,,,,,,0.053093286,0.058286134,0.063073024,0.072892235,,,,,,,0.01311252,0.017729433,0.022062624,0.030911888,,,,,,,0.004050244,0.004039393,0.003967845,0.003952541,,,,,,,0.181270108,0.27699191,0.40872949,0.890288672,,, +Commercial truck,E10,2025,,,,,0.001904847,0.003336256,0.005108783,0.009787463,,,,,,,0.013238288,0.013428408,0.01667889,0.029776019,,,,,,,1.637890973,2.88198947,3.999597758,8.034440664,,,,,,,650.7833181,648.2102707,635.3073202,626.845007,,,,,,,0.009677987,0.01086591,0.013079493,0.018324125,,,,,,,0.046988632,0.047142766,0.047650828,0.048407503,,,,,,,0.123302341,0.200596599,0.281033246,0.565281832,,,,,,,0.004698678,0.007772313,0.010839995,0.017643447,,,,,,,0.052489363,0.058972535,0.065642354,0.081223129,,,,,,,0.014238218,0.020010242,0.026031371,0.03999541,,,,,,,0.004323195,0.004306103,0.004220387,0.004164171,,,,,,,0.167272977,0.225472547,0.330891419,0.778554365,,,,,,,0.001784608,0.00310664,0.004714454,0.008902936,,,,,,,0.011892012,0.012359343,0.015503472,0.027949341,,,,,,,1.60013799,2.856376953,3.968171519,8.0173798,,,,,,,658.3956043,655.4659753,641.8232247,631.9335243,,,,,,,0.00968005,0.01085859,0.013059831,0.018277712,,,,,,,0.046965989,0.047121893,0.047636117,0.048403745,,,,,,,0.120957262,0.197274809,0.276484827,0.557899018,,,,,,,0.004588197,0.007559969,0.010473239,0.01681188,,,,,,,0.053238494,0.059458815,0.065749637,0.080145248,,,,,,,0.014107041,0.019638675,0.025299109,0.038176205,,,,,,,0.004373764,0.004354302,0.004263672,0.004197975,,,,,,,0.167311721,0.222660999,0.323599564,0.763620493,,,,,,,0.001826456,0.003201122,0.004905587,0.009398057,,,,,,,0.012523916,0.012762734,0.015854804,0.028369507,,,,,,,1.670075472,2.96113237,4.105595707,8.279042752,,,,,,,662.5937195,659.8722905,646.6334068,637.8988503,,,,,,,0.010069332,0.011270046,0.013496924,0.018765143,,,,,,,0.047300805,0.04744387,0.047914564,0.048611991,,,,,,,0.119707294,0.195328015,0.273783497,0.553708577,,,,,,,0.004489893,0.007434483,0.010392587,0.016962225,,,,,,,0.057076065,0.06329053,0.069721958,0.084753078,,,,,,,0.014497792,0.020029901,0.025832724,0.039298435,,,,,,,0.004401653,0.004383573,0.004295627,0.004237602,,,,,,,0.177532626,0.233749524,0.33602632,0.782685391,,,,,,,0.001923057,0.003378043,0.00520288,0.01004108,,,,,,,0.013257523,0.013290247,0.016440429,0.029307905,,,,,,,1.713414451,3.014886689,4.180672134,8.364238258,,,,,,,652.3992289,649.6656284,636.5532423,627.540193,,,,,,,0.009326876,0.010483994,0.012652375,0.01779988,,,,,,,0.046653396,0.046814186,0.047345336,0.04814118,,,,,,,0.121996515,0.198629823,0.278553664,0.560574308,,,,,,,0.004648822,0.007705996,0.010799164,0.017712373,,,,,,,0.049756587,0.056233672,0.062998174,0.078915675,,,,,,,0.013838382,0.019603916,0.025705402,0.039963219,,,,,,,0.00433393,0.00431577,0.004228664,0.00416879,,,,,,,0.183904466,0.240210674,0.342434931,0.779063207,,,,,,,0.001443663,0.002465467,0.003629795,0.006506443,,,,,,,0.008820832,0.010083268,0.013078672,0.024283079,,,,,,,1.527660331,2.841928912,3.956002161,8.123758651,,,,,,,670.3985663,666.4787458,650.9492111,637.4684814,,,,,,,0.009980666,0.011174992,0.013393029,0.018642363,,,,,,,0.047220258,0.04736527,0.04784261,0.048550884,,,,,,,0.108861785,0.181411277,0.255990796,0.524077994,,,,,,,0.004177413,0.006816655,0.009284849,0.014355569,,,,,,,0.055398276,0.060772149,0.065882183,0.076899626,,,,,,,0.013616042,0.018403626,0.023034584,0.032945482,,,,,,,0.004453499,0.004427461,0.004324297,0.004234744,,,,,,,0.174666971,0.227335457,0.324574295,0.773527256,,,,,,,0.001497785,0.002571009,0.003819106,0.006955519,,,,,,,0.009227335,0.010249168,0.013177462,0.024307983,,,,,,,1.538604125,2.834247627,3.945735377,8.056305195,,,,,,,660.9285798,657.330238,642.5268918,630.0906826,,,,,,,0.009544303,0.010709254,0.012887763,0.01805469,,,,,,,0.046821945,0.046977523,0.047490955,0.048258403,,,,,,,0.112342656,0.185596976,0.261223867,0.531672687,,,,,,,0.004212685,0.006890244,0.009427469,0.014720099,,,,,,,0.051404964,0.056894856,0.062209882,0.07385685,,,,,,,0.013192061,0.018079628,0.022883608,0.033339864,,,,,,,0.00439059,0.004366686,0.004268347,0.004185732,,,,,,,0.173305287,0.224498136,0.31917749,0.752730378,,,,,,,0.001374958,0.002331296,0.003393625,0.005959832,,,,,,,0.008618297,0.00993688,0.01293451,0.024036707,,,,,,,1.553600514,2.886292117,4.026541971,8.253885982,,,,,,,669.4980145,665.3971237,649.5069628,635.1941754,,,,,,,0.009667294,0.010849426,0.01305437,0.018279803,,,,,,,0.046958577,0.047112734,0.047621082,0.048378879,,,,,,,0.111185134,0.185097989,0.261044416,0.531919477,,,,,,,0.004122491,0.006700522,0.009059354,0.013788563,,,,,,,0.051452752,0.056667204,0.061500897,0.071660932,,,,,,,0.013001619,0.017648611,0.022036684,0.031192239,,,,,,,0.004447518,0.004420275,0.004314716,0.004219636,,,,,,,0.17154295,0.222941735,0.31835088,0.759097799,,,,,,,0.001580722,0.002723032,0.004064386,0.007475038,,,,,,,0.010346607,0.011251037,0.014409387,0.026488396,,,,,,,1.626927269,2.963614454,4.132669157,8.433292377,,,,,,,666.3757446,662.8527842,648.0437187,635.8805054,,,,,,,0.009783509,0.010969454,0.013183484,0.018430433,,,,,,,0.047018166,0.047172499,0.047681249,0.048440328,,,,,,,0.124785183,0.205396792,0.288317954,0.584868986,,,,,,,0.004347428,0.007121752,0.009762182,0.015334597,,,,,,,0.053693828,0.059418858,0.065013721,0.077416328,,,,,,,0.013715501,0.018806898,0.023845031,0.034948811,,,,,,,0.004360899,0.004337911,0.004241102,0.004161753,,,,,,,0.18221536,0.236737613,0.336592637,0.784652683,,,,,,,0.001345911,0.002278688,0.003302402,0.005787563,,,,,,,0.009193585,0.010699643,0.014100123,0.026518192,,,,,,,1.525461174,2.823986763,3.961075681,8.170750559,,,,,,,656.7974342,653.1568111,638.0878114,625.2163418,,,,,,,0.009949459,0.011159858,0.013407367,0.018726126,,,,,,,0.04723211,0.047381969,0.047875218,0.048607177,,,,,,,0.117268194,0.195675648,0.276554015,0.564258264,,,,,,,0.004085272,0.006635892,0.008944556,0.013585916,,,,,,,0.053177513,0.058324801,0.063030201,0.072955883,,,,,,,0.013157924,0.017748224,0.022031551,0.030992147,,,,,,,0.004035235,0.004012907,0.003920345,0.003841364,,,,,,,0.16367885,0.220760415,0.325497358,0.792815288,, +Commercial truck,E10,2030,,,,,,0.001905871,0.003332076,0.005082533,0.009772845,,,,,,,0.013256014,0.013286551,0.016603122,0.027276882,,,,,,,1.562424516,2.715080452,3.838010064,6.416516405,,,,,,,653.890259,650.9972677,637.1116206,620.3055637,,,,,,,0.009702935,0.010855594,0.013093632,0.018110204,,,,,,,0.046905671,0.047065898,0.047602323,0.048450839,,,,,,,0.114089091,0.187313884,0.267036789,0.434965819,,,,,,,0.004709094,0.007785858,0.010814979,0.017602085,,,,,,,0.052533786,0.059015766,0.065592454,0.081125032,,,,,,,0.014258013,0.020030424,0.025975847,0.039918757,,,,,,,0.004343834,0.004324617,0.004232373,0.00412073,,,,,,,0.167106837,0.223538486,0.32804326,0.734037023,,,,,,,0.001785754,0.003103493,0.004691127,0.008893176,,,,,,,0.011891299,0.012211227,0.015423691,0.025492239,,,,,,,1.521591977,2.683724088,3.799293641,6.358243025,,,,,,,661.5425035,658.2975274,643.6541235,625.3549115,,,,,,,0.009703719,0.010847312,0.013073054,0.018065701,,,,,,,0.04688222,0.047044287,0.047587052,0.048447682,,,,,,,0.111752542,0.18402524,0.262524827,0.428106002,,,,,,,0.004598602,0.007574324,0.010450755,0.016775297,,,,,,,0.053277721,0.059499532,0.065703607,0.080062403,,,,,,,0.014126237,0.019660278,0.025249307,0.038111029,,,,,,,0.004394669,0.004373113,0.004275835,0.004154272,,,,,,,0.167201152,0.22081305,0.320608222,0.718457473,,,,,,,0.00182717,0.003196769,0.004880278,0.009385321,,,,,,,0.012543652,0.012629315,0.015810312,0.025906968,,,,,,,1.588910038,2.784052287,3.930767344,6.559394885,,,,,,,665.7537142,662.7061879,648.4615099,631.2251585,,,,,,,0.010096239,0.011261376,0.013512709,0.01854499,,,,,,,0.047223631,0.04737245,0.047869634,0.048651923,,,,,,,0.110592724,0.182186484,0.259894902,0.424364689,,,,,,,0.004497956,0.007444715,0.010365434,0.016928295,,,,,,,0.057114724,0.063326587,0.069668333,0.084670243,,,,,,,0.014513597,0.02004476,0.025774598,0.039234605,,,,,,,0.004422645,0.004402399,0.004307771,0.00419327,,,,,,,0.177367009,0.231949747,0.332848149,0.738568889,,,,,,,0.001922397,0.003371055,0.005162738,0.010036803,,,,,,,0.01328199,0.013156434,0.016393012,0.026897069,,,,,,,1.631411892,2.834495791,4.000516719,6.679212014,,,,,,,655.4883595,652.4403122,638.354702,621.0327114,,,,,,,0.009349118,0.010471824,0.012664386,0.017594273,,,,,,,0.046567084,0.046734121,0.047294626,0.048186798,,,,,,,0.112793361,0.185370583,0.264463922,0.431489521,,,,,,,0.004656111,0.007714698,0.010754949,0.017685577,,,,,,,0.049793355,0.056265423,0.062903068,0.078851644,,,,,,,0.013852051,0.019614508,0.025610204,0.039916497,,,,,,,0.004354451,0.004334202,0.004240631,0.00412556,,,,,,,0.183573395,0.238256925,0.338603849,0.736419659,,,,,,,0.001445105,0.002465031,0.003614543,0.006505683,,,,,,,0.008775792,0.009916755,0.012982878,0.021801047,,,,,,,1.438867061,2.650287103,3.763572692,6.305832024,,,,,,,673.6278132,669.4017244,652.8229544,630.8156438,,,,,,,0.010006903,0.011165837,0.013408291,0.018424126,,,,,,,0.047142103,0.047292904,0.047797062,0.048591423,,,,,,,0.100089156,0.168760019,0.242628813,0.398526584,,,,,,,0.004186451,0.006831063,0.009268873,0.014331607,,,,,,,0.055438603,0.060818221,0.065856104,0.076845126,,,,,,,0.013633788,0.018427787,0.02300107,0.032906517,,,,,,,0.004474952,0.004446877,0.004336744,0.004190548,,,,,,,0.17459471,0.225562003,0.320657039,0.72308253,,,,,,,0.001498943,0.002569655,0.003802112,0.006953627,,,,,,,0.009193539,0.010091661,0.013096599,0.0219312,,,,,,,1.452191456,2.646575152,3.75814221,6.29863812,,,,,,,664.0783264,660.1789416,644.3634626,623.5537065,,,,,,,0.009567317,0.010697691,0.012900463,0.017845749,,,,,,,0.046738364,0.046900045,0.04744194,0.048302345,,,,,,,0.103435805,0.172775698,0.247694402,0.405759748,,,,,,,0.004221544,0.006903899,0.009409569,0.01469439,,,,,,,0.051442865,0.056937161,0.062177984,0.073799062,,,,,,,0.013209082,0.018101724,0.022845721,0.033297407,,,,,,,0.004411515,0.004385611,0.004280547,0.004142307,,,,,,,0.173216521,0.222814793,0.315442363,0.705767403,,,,,,,0.001376158,0.002331073,0.00337321,0.005965392,,,,,,,0.00856594,0.00976459,0.012815074,0.021602276,,,,,,,1.465048127,2.69369294,3.833623945,6.442996505,,,,,,,672.7379904,668.3351379,651.3936474,628.5818567,,,,,,,0.009691683,0.010838728,0.013068109,0.018067006,,,,,,,0.046875623,0.047035863,0.047572525,0.048422304,,,,,,,0.102268551,0.172241457,0.247376093,0.40541596,,,,,,,0.004131695,0.006715928,0.009033473,0.013771793,,,,,,,0.051493445,0.056715522,0.061453929,0.071623783,,,,,,,0.013019521,0.017674577,0.021984575,0.031168782,,,,,,,0.004469041,0.004439791,0.00432725,0.004175709,,,,,,,0.171416586,0.221134601,0.314276236,0.708736288,,,,,,,0.001582618,0.002722279,0.004050752,0.007465265,,,,,,,0.010325961,0.011097091,0.014325716,0.023972875,,,,,,,1.541673334,2.77745925,3.948857767,6.638664847,,,,,,,669.5753217,665.7433382,649.905727,629.2630236,,,,,,,0.009807455,0.010958245,0.01319691,0.018216589,,,,,,,0.046935298,0.047095701,0.047632708,0.048483745,,,,,,,0.114954119,0.191253331,0.273515741,0.446376212,,,,,,,0.004358797,0.007138539,0.009753791,0.015295721,,,,,,,0.053733999,0.05946455,0.064999189,0.077330593,,,,,,,0.013736533,0.018833859,0.0238237,0.034880548,,,,,,,0.004381841,0.00435683,0.00425329,0.00411844,,,,,,,0.182236997,0.235047026,0.333206121,0.735951731,,,,,,,0.001349421,0.002281831,0.003303526,0.005773198,,,,,,,0.009150366,0.010531345,0.01399719,0.023784178,,,,,,,1.446378354,2.65022555,3.792885888,6.432321279,,,,,,,659.994256,656.0495056,639.9433689,618.6747646,,,,,,,0.009976203,0.011150704,0.013422923,0.018506194,,,,,,,0.047151314,0.04730715,0.047828139,0.048649089,,,,,,,0.108038023,0.182327511,0.262703052,0.430810306,,,,,,,0.00409999,0.006658755,0.008959627,0.013536349,,,,,,,0.053231488,0.058390472,0.063072153,0.072844885,,,,,,,0.013186112,0.017788211,0.022057284,0.030904027,,,,,,,0.004054892,0.004030693,0.003931752,0.003801165,,,,,,,0.163839418,0.219081766,0.322874328,0.739149935, +Commercial truck,E10,2035,,,,,,,0.001904397,0.003315216,0.005097602,0.009804966,,,,,,,0.013294944,0.013334359,0.016632142,0.026386045,,,,,,,1.560524765,2.709942937,3.836613826,5.847987756,,,,,,,654.4586914,651.8254259,637.6838871,619.6272397,,,,,,,0.009704912,0.010867705,0.013094785,0.018099286,,,,,,,0.046889908,0.047044042,0.047586749,0.048439957,,,,,,,0.114018539,0.186937789,0.267057415,0.385515608,,,,,,,0.004710221,0.007761676,0.010842605,0.017652358,,,,,,,0.052539373,0.058967115,0.065657229,0.08124177,,,,,,,0.014259242,0.019982264,0.026029521,0.040019474,,,,,,,0.00434761,0.004330118,0.004236175,0.004116223,,,,,,,0.167115859,0.22319125,0.328541112,0.719163815,,,,,,,0.00178454,0.003088262,0.004704861,0.008922191,,,,,,,0.011925356,0.012256755,0.015447234,0.024605757,,,,,,,1.519562212,2.677091782,3.798541023,5.775320199,,,,,,,662.1202363,659.1362335,644.2357599,624.6847534,,,,,,,0.009705482,0.010859012,0.013073944,0.018054615,,,,,,,0.046866303,0.047022233,0.047571316,0.048436652,,,,,,,0.1116828,0.183650715,0.262538578,0.3788532,,,,,,,0.004599952,0.007551556,0.010477123,0.016822681,,,,,,,0.053282942,0.059453371,0.065764099,0.080170788,,,,,,,0.014127881,0.019615356,0.025299905,0.038204871,,,,,,,0.004398507,0.004378684,0.004279699,0.004149821,,,,,,,0.167192268,0.220252563,0.321230822,0.703462773,,,,,,,0.00182566,0.003180451,0.004894667,0.009415932,,,,,,,0.01258501,0.012699235,0.015824396,0.025011734,,,,,,,1.586796477,2.776472118,3.930875565,5.955818551,,,,,,,666.3326458,663.5477824,649.0418892,630.5211542,,,,,,,0.010098552,0.011274166,0.013514359,0.018534488,,,,,,,0.047208976,0.047352128,0.047855241,0.048641902,,,,,,,0.110524682,0.181803098,0.259947026,0.375273395,,,,,,,0.004498463,0.007419954,0.010391735,0.016976618,,,,,,,0.057118961,0.063277037,0.069729974,0.084782067,,,,,,,0.014513824,0.019996113,0.025825697,0.039331151,,,,,,,0.004426489,0.00440799,0.004311627,0.004188592,,,,,,,0.177252544,0.230883532,0.333642172,0.724112419,,,,,,,0.001919971,0.003346254,0.005183293,0.010083308,,,,,,,0.013323484,0.013221944,0.01640963,0.026024857,,,,,,,1.628757207,2.823440141,4.001949994,6.089144409,,,,,,,656.0534439,653.2639185,638.9261597,620.3674944,,,,,,,0.009350661,0.010482971,0.012664943,0.01758301,,,,,,,0.046550675,0.046711377,0.047278366,0.048175341,,,,,,,0.112705714,0.184890244,0.26452944,0.382541634,,,,,,,0.004655679,0.007678909,0.010789579,0.0177528,,,,,,,0.049795296,0.056189948,0.062984399,0.079009721,,,,,,,0.013850177,0.019542771,0.025678606,0.040053845,,,,,,,0.004358205,0.004339674,0.004244427,0.004121141,,,,,,,0.183303433,0.236506648,0.339643733,0.72256859,,,,,,,0.001444528,0.002454283,0.003624706,0.00652654,,,,,,,0.008798812,0.009955423,0.012997481,0.020887671,,,,,,,1.436523853,2.63962454,3.765014083,5.666895781,,,,,,,674.226121,670.2597915,653.4198778,630.1488432,,,,,,,0.010009106,0.011178396,0.013409786,0.018413524,,,,,,,0.047127231,0.047272335,0.047782431,0.048581246,,,,,,,0.100030523,0.168425712,0.242642416,0.350767637,,,,,,,0.004188035,0.006812718,0.00929058,0.014369688,,,,,,,0.055445344,0.060784334,0.065906053,0.076930871,,,,,,,0.013636349,0.018393096,0.023041941,0.032980041,,,,,,,0.004478928,0.004452579,0.00434071,0.004186119,,,,,,,0.174499906,0.224068868,0.321814272,0.706772433,,,,,,,0.001498214,0.002558062,0.003812722,0.006975594,,,,,,,0.009218832,0.010136645,0.013107545,0.021052224,,,,,,,1.449777564,2.63597958,3.759245711,5.681295508,,,,,,,664.6603924,661.017108,644.948249,622.9035026,,,,,,,0.009568988,0.010709119,0.012901217,0.017834656,,,,,,,0.046722494,0.046878036,0.047426237,0.048291311,,,,,,,0.103368187,0.172410979,0.247698174,0.357910733,,,,,,,0.004223003,0.006884431,0.009431986,0.014733935,,,,,,,0.051448933,0.056900153,0.062229249,0.073888049,,,,,,,0.013211296,0.018064637,0.022887966,0.03337396,,,,,,,0.004415381,0.004391179,0.004284432,0.004137987,,,,,,,0.173100312,0.221281623,0.316549346,0.690525718,,,,,,,0.001375335,0.002316819,0.00338601,0.005992348,,,,,,,0.008585244,0.00978587,0.01283848,0.020715561,,,,,,,1.462563252,2.682547879,3.834887688,5.805046321,,,,,,,673.3391456,669.1962901,651.9958777,627.9366552,,,,,,,0.009693565,0.010850652,0.013069156,0.01805602,,,,,,,0.046859848,0.047014037,0.047557005,0.048411372,,,,,,,0.102197317,0.171821387,0.247423329,0.357305042,,,,,,,0.004132749,0.006689717,0.009061123,0.013820928,,,,,,,0.051499162,0.0566655,0.061516327,0.071733537,,,,,,,0.013021135,0.017625546,0.02203635,0.031263525,,,,,,,0.004473035,0.004445513,0.004331251,0.004171423,,,,,,,0.171348078,0.219669527,0.31546346,0.692478454,,,,,,,0.001582154,0.002712814,0.004060236,0.007484408,,,,,,,0.010354608,0.011140405,0.01434416,0.023055112,,,,,,,1.539464589,2.769509508,3.948556184,6.00700414,,,,,,,670.1659431,666.5943579,650.4986796,628.6026085,,,,,,,0.009809251,0.01097005,0.01319785,0.018205501,,,,,,,0.046919549,0.047073858,0.047617157,0.048472862,,,,,,,0.114890928,0.190938501,0.273465413,0.393639557,,,,,,,0.004361239,0.00712525,0.009773472,0.015329459,,,,,,,0.053741443,0.05943903,0.06504442,0.077407044,,,,,,,0.013740353,0.018807486,0.023860986,0.03494627,,,,,,,0.004385707,0.0043624,0.00425717,0.004114117,,,,,,,0.182231715,0.234095891,0.334119863,0.719911653,,,,,,,0.001350118,0.002281052,0.003307009,0.005778026,,,,,,,0.009173909,0.010566232,0.014017801,0.022784913,,,,,,,1.444787342,2.646646878,3.790666895,5.817811442,,,,,,,660.586642,656.8994852,640.5350531,618.0249983,,,,,,,0.009978466,0.011163476,0.013424469,0.018495466,,,,,,,0.047135966,0.047285895,0.04781305,0.048638544,,,,,,,0.107996669,0.182166892,0.262575115,0.3797965,,,,,,,0.004104446,0.006660608,0.008970025,0.013550306,,,,,,,0.053244654,0.058399882,0.06309773,0.072876143,,,,,,,0.013194021,0.01779139,0.022076245,0.030929157,,,,,,,0.004058534,0.004035919,0.003935391,0.003797174,,,,,,,0.164048679,0.219213566,0.323326955,0.721030562 +Commercial truck,E10,2040,,,,,,,,0.001894599,0.003324464,0.005117028,,,,,,,,0.013341909,0.013346821,0.016681676,,,,,,,,1.557565967,2.705883442,3.831890018,,,,,,,,655.3470274,653.2469543,639.046132,,,,,,,,0.009713838,0.01086245,0.013097635,,,,,,,,0.046866379,0.047005238,0.047549961,,,,,,,,0.113835745,0.186771109,0.266905578,,,,,,,,0.004695286,0.007786695,0.010883314,,,,,,,,0.052512977,0.059029617,0.06575471,,,,,,,,0.014230356,0.02002842,0.026107103,,,,,,,,0.004353512,0.004339561,0.004245224,,,,,,,,0.166736478,0.223880309,0.329358575,,,,,,,,0.001775656,0.003096957,0.004722691,,,,,,,,0.011968194,0.012264629,0.015488185,,,,,,,,1.515715851,2.6734324,3.794367158,,,,,,,,663.0198743,660.5790946,645.6190501,,,,,,,,0.009714021,0.010853258,0.013076139,,,,,,,,0.046842556,0.046983027,0.047534107,,,,,,,,0.111502077,0.183478161,0.262374137,,,,,,,,0.004585797,0.007576009,0.010516288,,,,,,,,0.053257167,0.05951193,0.0658552,,,,,,,,0.014100697,0.019659903,0.025373609,,,,,,,,0.004404483,0.004388269,0.004288888,,,,,,,,0.166569733,0.221139706,0.322231094,,,,,,,,0.001816131,0.003189195,0.004913179,,,,,,,,0.012651733,0.012701722,0.015856357,,,,,,,,1.582669299,2.773584504,3.927945627,,,,,,,,667.2363382,664.9939372,650.4225922,,,,,,,,0.010108069,0.011269754,0.013518379,,,,,,,,0.047187073,0.04731608,0.047821153,,,,,,,,0.11033588,0.181671874,0.259851541,,,,,,,,0.004483102,0.007443051,0.010429764,,,,,,,,0.057091648,0.063335131,0.069821348,,,,,,,,0.014484456,0.020038871,0.025898409,,,,,,,,0.004432493,0.004417597,0.004320799,,,,,,,,0.176010955,0.232065934,0.334903552,,,,,,,,0.001905855,0.003358344,0.005208812,,,,,,,,0.013385688,0.013224032,0.016443145,,,,,,,,1.622727135,2.820934818,3.999948559,,,,,,,,656.9366001,654.6784882,640.2859208,,,,,,,,0.009358755,0.01047677,0.012666355,,,,,,,,0.046526226,0.046670981,0.047239881,,,,,,,,0.112459544,0.184735389,0.264410806,,,,,,,,0.004634096,0.00770753,0.010837755,,,,,,,,0.049753644,0.056260615,0.063099527,,,,,,,,0.013807964,0.01959644,0.025772037,,,,,,,,0.004364072,0.004349071,0.00425346,,,,,,,,0.181394471,0.237921179,0.341183919,,,,,,,,0.001438168,0.002461432,0.003638349,,,,,,,,0.00882983,0.009957003,0.013024962,,,,,,,,1.430284866,2.637560803,3.763208223,,,,,,,,675.1494057,671.7480419,654.8380787,,,,,,,,0.010018419,0.011173725,0.013413449,,,,,,,,0.047105085,0.047235777,0.047747865,,,,,,,,0.099874039,0.168270945,0.242499143,,,,,,,,0.004176376,0.006833936,0.009323389,,,,,,,,0.055426973,0.060837509,0.06598399,,,,,,,,0.013614995,0.018431764,0.023102963,,,,,,,,0.004485061,0.004462465,0.00435013,,,,,,,,0.172871041,0.225710349,0.323587234,,,,,,,,0.001491367,0.002565231,0.003826727,,,,,,,,0.009256759,0.010134722,0.013129974,,,,,,,,1.443643491,2.633471828,3.756820434,,,,,,,,665.5604815,662.4672883,646.3375748,,,,,,,,0.009577318,0.010703221,0.012903118,,,,,,,,0.046698797,0.046838905,0.047389055,,,,,,,,0.103193198,0.172232165,0.247520822,,,,,,,,0.004210685,0.00690592,0.009465552,,,,,,,,0.051428474,0.056952936,0.062308029,,,,,,,,0.013188508,0.018103607,0.022950305,,,,,,,,0.004421361,0.004400812,0.004293661,,,,,,,,0.171414345,0.222859576,0.318224111,,,,,,,,0.001367026,0.002325975,0.003402909,,,,,,,,0.008602113,0.009792755,0.012875238,,,,,,,,1.455973749,2.680106478,3.832575064,,,,,,,,674.2649519,670.6919167,653.4239329,,,,,,,,0.009702322,0.010845202,0.013071723,,,,,,,,0.046836342,0.04697527,0.047520156,,,,,,,,0.101993799,0.171671758,0.247299955,,,,,,,,0.004116402,0.006715993,0.009101658,,,,,,,,0.051471314,0.056729136,0.06161027,,,,,,,,0.012991358,0.017673343,0.022111444,,,,,,,,0.004479185,0.004455449,0.004340737,,,,,,,,0.169839915,0.22126251,0.317254117,,,,,,,,0.001576531,0.002719298,0.004073113,,,,,,,,0.010390866,0.011144904,0.014377753,,,,,,,,1.534700593,2.765922682,3.944616974,,,,,,,,671.0799465,668.0661099,651.9072726,,,,,,,,0.009817877,0.010964333,0.013200169,,,,,,,,0.046896014,0.047035056,0.047580347,,,,,,,,0.114747828,0.190713551,0.273211499,,,,,,,,0.004352697,0.007145387,0.009804589,,,,,,,,0.053727581,0.059487748,0.065116982,,,,,,,,0.013724004,0.018843814,0.02391874,,,,,,,,0.004391689,0.004372033,0.004266391,,,,,,,,0.181178588,0.23542649,0.335516894,,,,,,,,0.001349411,0.002284559,0.003313123,,,,,,,,0.009199407,0.010572807,0.014054091,,,,,,,,1.442252489,2.642055045,3.784995993,,,,,,,,661.5007289,658.3726144,641.939439,,,,,,,,0.009987951,0.011158813,0.013428251,,,,,,,,0.047113078,0.047248121,0.047777326,,,,,,,,0.107939286,0.181910715,0.262252931,,,,,,,,0.004104921,0.006675517,0.008990812,,,,,,,,0.053252248,0.058440421,0.063149921,,,,,,,,0.013195173,0.017818095,0.022113772,,,,,,,,0.004064155,0.004044978,0.003944028,,,,,,,,0.16411707,0.21999856,0.324201182 +Commercial truck,E10,2045,,,,,,,,,0.001899871,0.003335773,,,,,,,,,0.013349552,0.01335685,,,,,,,,,1.560143667,2.711017873,,,,,,,,,654.5640959,652.474136,,,,,,,,,0.009720603,0.010871904,,,,,,,,,0.046887837,0.047026691,,,,,,,,,0.113967964,0.187105883,,,,,,,,,0.004701385,0.007799107,,,,,,,,,0.052521212,0.059053789,,,,,,,,,0.014242688,0.020054841,,,,,,,,,0.004348311,0.004334427,,,,,,,,,0.166872968,0.224152785,,,,,,,,,0.001780365,0.003107019,,,,,,,,,0.011974581,0.012272523,,,,,,,,,1.518643804,2.679274307,,,,,,,,,662.2253453,659.7937274,,,,,,,,,0.009720991,0.010862919,,,,,,,,,0.046864233,0.047004698,,,,,,,,,0.111631592,0.183808933,,,,,,,,,0.00459142,0.007587326,,,,,,,,,0.05326547,0.059534484,,,,,,,,,0.014112047,0.019683867,,,,,,,,,0.004399206,0.004383051,,,,,,,,,0.166792406,0.221499761,,,,,,,,,0.00182127,0.003200163,,,,,,,,,0.012648271,0.012697459,,,,,,,,,1.585742616,2.779960323,,,,,,,,,666.4391136,664.2073733,,,,,,,,,0.010114513,0.011278834,,,,,,,,,0.047207028,0.047336016,,,,,,,,,0.110467379,0.182003842,,,,,,,,,0.004489596,0.007456088,,,,,,,,,0.057100822,0.06336042,,,,,,,,,0.01449733,0.02006601,,,,,,,,,0.004427198,0.004412373,,,,,,,,,0.176495534,0.232699232,,,,,,,,,0.001913226,0.003374198,,,,,,,,,0.013387146,0.013224888,,,,,,,,,1.626836464,2.829441481,,,,,,,,,656.1583338,653.9092168,,,,,,,,,0.00936583,0.010486546,,,,,,,,,0.046548551,0.046693303,,,,,,,,,0.112624671,0.185130946,,,,,,,,,0.004643477,0.007726658,,,,,,,,,0.049769512,0.056300362,,,,,,,,,0.013826876,0.019636489,,,,,,,,,0.004358902,0.004343961,,,,,,,,,0.182181114,0.238953864,,,,,,,,,0.001441337,0.002468112,,,,,,,,,0.008833567,0.00996038,,,,,,,,,1.434108129,2.645253441,,,,,,,,,674.3283112,670.935622,,,,,,,,,0.010024953,0.011182906,,,,,,,,,0.047125282,0.047256008,,,,,,,,,0.099982984,0.168562607,,,,,,,,,0.004180665,0.006842252,,,,,,,,,0.055430781,0.060851172,,,,,,,,,0.013623024,0.018448464,,,,,,,,,0.004479606,0.004457067,,,,,,,,,0.173474714,0.226504146,,,,,,,,,0.001494869,0.00257261,,,,,,,,,0.009258944,0.010136053,,,,,,,,,1.447514364,2.641271431,,,,,,,,,664.7617549,661.6764328,,,,,,,,,0.009584297,0.010712888,,,,,,,,,0.046720398,0.046860555,,,,,,,,,0.10331621,0.172548855,,,,,,,,,0.004215391,0.006915076,,,,,,,,,0.051433787,0.056969123,,,,,,,,,0.013197489,0.018122177,,,,,,,,,0.004416054,0.004395559,,,,,,,,,0.172058505,0.223688957,,,,,,,,,0.001370963,0.002334274,,,,,,,,,0.008612079,0.009805226,,,,,,,,,1.460037847,2.688222285,,,,,,,,,673.4413362,669.8746256,,,,,,,,,0.00970917,0.010854721,,,,,,,,,0.046857815,0.046996679,,,,,,,,,0.102126969,0.172014192,,,,,,,,,0.004122602,0.006728112,,,,,,,,,0.051478968,0.056750416,,,,,,,,,0.013002791,0.017696882,,,,,,,,,0.004473714,0.004450019,,,,,,,,,0.17039218,0.222046403,,,,,,,,,0.001579508,0.002725652,,,,,,,,,0.010396465,0.011150341,,,,,,,,,1.538031163,2.772489937,,,,,,,,,670.2691355,667.263782,,,,,,,,,0.009824858,0.01097402,,,,,,,,,0.046917451,0.047056515,,,,,,,,,0.11485877,0.191012617,,,,,,,,,0.004355567,0.007151096,,,,,,,,,0.053730057,0.059497936,,,,,,,,,0.013729945,0.018856567,,,,,,,,,0.004386382,0.004366782,,,,,,,,,0.181554619,0.235931106,,,,,,,,,0.001349798,0.002285433,,,,,,,,,0.009206666,0.010580214,,,,,,,,,1.444416693,2.646100676,,,,,,,,,660.6883425,657.5683133,,,,,,,,,0.009994537,0.011168072,,,,,,,,,0.047133961,0.047269,,,,,,,,,0.108005351,0.182117697,,,,,,,,,0.004103244,0.006672156,,,,,,,,,0.053243021,0.058428722,,,,,,,,,0.013192087,0.017812806,,,,,,,,,0.004059161,0.004040034,,,,,,,,,0.163980441,0.219936521 +Commercial truck,E10,2050,,,,,,,,,,0.001906088,,,,,,,,,,0.013357614,,,,,,,,,,1.561027323,,,,,,,,,,654.6213613,,,,,,,,,,0.009724408,,,,,,,,,,0.046886455,,,,,,,,,,0.11407297,,,,,,,,,,0.004711943,,,,,,,,,,0.052544892,,,,,,,,,,0.014263318,,,,,,,,,,0.004348692,,,,,,,,,,0.167312402,,,,,,,,,,0.001786018,,,,,,,,,,0.011980005,,,,,,,,,,1.519896059,,,,,,,,,,662.282936,,,,,,,,,,0.00972475,,,,,,,,,,0.046862845,,,,,,,,,,0.111732568,,,,,,,,,,0.00460147,,,,,,,,,,0.0532877,,,,,,,,,,0.014131453,,,,,,,,,,0.004399588,,,,,,,,,,0.167385181,,,,,,,,,,0.001827269,,,,,,,,,,0.012644275,,,,,,,,,,1.587246502,,,,,,,,,,666.4975423,,,,,,,,,,0.010118401,,,,,,,,,,0.047205759,,,,,,,,,,0.110579017,,,,,,,,,,0.004499997,,,,,,,,,,0.057124008,,,,,,,,,,0.014517543,,,,,,,,,,0.004427585,,,,,,,,,,0.177452019,,,,,,,,,,0.001921688,,,,,,,,,,0.013386731,,,,,,,,,,1.629178723,,,,,,,,,,656.2149954,,,,,,,,,,0.009369491,,,,,,,,,,0.04654711,,,,,,,,,,0.112756273,,,,,,,,,,0.004657388,,,,,,,,,,0.049800801,,,,,,,,,,0.013854255,,,,,,,,,,0.004359278,,,,,,,,,,0.183500147,,,,,,,,,,0.001445436,,,,,,,,,,0.00883478,,,,,,,,,,1.43643941,,,,,,,,,,674.386087,,,,,,,,,,0.010028812,,,,,,,,,,0.047124,,,,,,,,,,0.100067475,,,,,,,,,,0.004188902,,,,,,,,,,0.055448632,,,,,,,,,,0.013638501,,,,,,,,,,0.00447999,,,,,,,,,,0.174694909,,,,,,,,,,0.001499226,,,,,,,,,,0.009257689,,,,,,,,,,1.449758944,,,,,,,,,,664.8181532,,,,,,,,,,0.009587999,,,,,,,,,,0.046719015,,,,,,,,,,0.103406672,,,,,,,,,,0.004223999,,,,,,,,,,0.051452436,,,,,,,,,,0.013213715,,,,,,,,,,0.004416429,,,,,,,,,,0.173289943,,,,,,,,,,0.001376124,,,,,,,,,,0.008619615,,,,,,,,,,1.46246469,,,,,,,,,,673.4982219,,,,,,,,,,0.00971294,,,,,,,,,,0.046856404,,,,,,,,,,0.102231442,,,,,,,,,,0.004133567,,,,,,,,,,0.051502256,,,,,,,,,,0.013023122,,,,,,,,,,0.004474092,,,,,,,,,,0.171539464,,,,,,,,,,0.001583308,,,,,,,,,,0.010400329,,,,,,,,,,1.539633825,,,,,,,,,,670.3267944,,,,,,,,,,0.009828643,,,,,,,,,,0.046916089,,,,,,,,,,0.114934363,,,,,,,,,,0.004362441,,,,,,,,,,0.053745298,,,,,,,,,,0.013743177,,,,,,,,,,0.00438676,,,,,,,,,,0.182434215,,,,,,,,,,0.001350924,,,,,,,,,,0.009212299,,,,,,,,,,1.444956974,,,,,,,,,,660.7454173,,,,,,,,,,0.009998444,,,,,,,,,,0.04713262,,,,,,,,,,0.108037166,,,,,,,,,,0.004105376,,,,,,,,,,0.053248033,,,,,,,,,,0.013196198,,,,,,,,,,0.004059511,,,,,,,,,,0.164249362 +Commercial truck,E15,1990,0.103195896,,,,,,,,,,0.237057605,,,,,,,,,,57.38112059,,,,,,,,,,857.4836821,,,,,,,,,,0.081238515,,,,,,,,,,0.046237475,,,,,,,,,,8.46937988,,,,,,,,,,0.210680275,,,,,,,,,,0.501053261,,,,,,,,,,0.410881323,,,,,,,,,,0.040492749,,,,,,,,,,5.611945292,,,,,,,,,,0.088197762,,,,,,,,,,0.23492769,,,,,,,,,,57.77014417,,,,,,,,,,860.5114303,,,,,,,,,,0.080816537,,,,,,,,,,0.046209946,,,,,,,,,,8.497711657,,,,,,,,,,0.184419576,,,,,,,,,,0.443681371,,,,,,,,,,0.359366295,,,,,,,,,,0.045424716,,,,,,,,,,5.708454931,,,,,,,,,,0.101480881,,,,,,,,,,0.264682827,,,,,,,,,,64.79941118,,,,,,,,,,868.591645,,,,,,,,,,0.083658875,,,,,,,,,,0.046596251,,,,,,,,,,8.657110738,,,,,,,,,,0.204772877,,,,,,,,,,0.497284469,,,,,,,,,,0.403760731,,,,,,,,,,0.064641316,,,,,,,,,,6.32498647,,,,,,,,,,0.110067871,,,,,,,,,,0.249924591,,,,,,,,,,62.49092473,,,,,,,,,,853.2423637,,,,,,,,,,0.078385759,,,,,,,,,,0.045876977,,,,,,,,,,8.540750607,,,,,,,,,,0.221121122,,,,,,,,,,0.525401123,,,,,,,,,,0.434442257,,,,,,,,,,0.05920016,,,,,,,,,,5.960462243,,,,,,,,,,0.04997005,,,,,,,,,,0.221566453,,,,,,,,,,55.45673771,,,,,,,,,,862.3769149,,,,,,,,,,0.082982412,,,,,,,,,,0.046508461,,,,,,,,,,8.189587763,,,,,,,,,,0.112560738,,,,,,,,,,0.28848104,,,,,,,,,,0.219654737,,,,,,,,,,0.053009166,,,,,,,,,,6.081976108,,,,,,,,,,0.05851209,,,,,,,,,,0.224960234,,,,,,,,,,57.64106091,,,,,,,,,,852.9466519,,,,,,,,,,0.079712709,,,,,,,,,,0.046066802,,,,,,,,,,8.312650069,,,,,,,,,,0.129611386,,,,,,,,,,0.322316336,,,,,,,,,,0.252704917,,,,,,,,,,0.058348787,,,,,,,,,,5.92025635,,,,,,,,,,0.047033189,,,,,,,,,,0.213937752,,,,,,,,,,54.72866456,,,,,,,,,,858.3224153,,,,,,,,,,0.08095077,,,,,,,,,,0.046208125,,,,,,,,,,8.202901577,,,,,,,,,,0.108429325,,,,,,,,,,0.274944887,,,,,,,,,,0.210553221,,,,,,,,,,0.053319286,,,,,,,,,,5.929852887,,,,,,,,,,0.06848633,,,,,,,,,,0.225415385,,,,,,,,,,57.61972262,,,,,,,,,,861.9021552,,,,,,,,,,0.08153801,,,,,,,,,,0.046269538,,,,,,,,,,8.900585644,,,,,,,,,,0.147794099,,,,,,,,,,0.364555582,,,,,,,,,,0.288584024,,,,,,,,,,0.05256581,,,,,,,,,,5.970869533,,,,,,,,,,0.04721462,,,,,,,,,,0.200226677,,,,,,,,,,51.20332948,,,,,,,,,,855.107765,,,,,,,,,,0.083366734,,,,,,,,,,0.046498291,,,,,,,,,,8.230845514,,,,,,,,,,0.109021415,,,,,,,,,,0.275631509,,,,,,,,,,0.209779231,,,,,,,,,,0.025004001,,,,,,,,,,5.474481625,,,,,,,,, +Commercial truck,E15,1995,0.022319522,0.061854676,,,,,,,,,0.131907166,0.200222203,,,,,,,,,54.15645936,57.62877558,,,,,,,,,701.7833513,734.6173692,,,,,,,,,0.074292062,0.095884207,,,,,,,,,0.046210222,0.046293724,,,,,,,,,5.470525668,6.996941268,,,,,,,,,0.055101808,0.126177204,,,,,,,,,0.158800193,0.315053049,,,,,,,,,0.108099604,0.246352293,,,,,,,,,0.033089952,0.016606327,,,,,,,,,3.291150821,4.861815217,,,,,,,,,0.019282604,0.052948368,,,,,,,,,0.132501985,0.196949742,,,,,,,,,55.57482027,58.11153428,,,,,,,,,708.9869052,739.8498469,,,,,,,,,0.074076649,0.095405172,,,,,,,,,0.046179296,0.046266083,,,,,,,,,5.51580614,6.997530129,,,,,,,,,0.048662078,0.110778242,,,,,,,,,0.146061861,0.281673221,,,,,,,,,0.096074294,0.216057754,,,,,,,,,0.037370961,0.016860389,,,,,,,,,3.376445632,4.94481608,,,,,,,,,0.021587089,0.060527539,,,,,,,,,0.14913415,0.208220887,,,,,,,,,61.74084455,63.02138635,,,,,,,,,713.5940326,746.0338033,,,,,,,,,0.077012004,0.098777187,,,,,,,,,0.046571909,0.046648956,,,,,,,,,5.673997381,6.961430551,,,,,,,,,0.052318899,0.121461282,,,,,,,,,0.159167647,0.310769007,,,,,,,,,0.10463842,0.238773379,,,,,,,,,0.053155628,0.017353901,,,,,,,,,3.778779177,5.200170542,,,,,,,,,0.023401001,0.065620431,,,,,,,,,0.141341753,0.203468094,,,,,,,,,59.75960574,60.96938374,,,,,,,,,701.9402538,732.9067453,,,,,,,,,0.071542201,0.09250795,,,,,,,,,0.045846083,0.045934644,,,,,,,,,5.54490701,6.934149707,,,,,,,,,0.056568058,0.130991559,,,,,,,,,0.160439228,0.325252421,,,,,,,,,0.111571656,0.257396485,,,,,,,,,0.048712446,0.029288379,,,,,,,,,3.579964625,5.020436025,,,,,,,,,0.011107375,0.029746272,,,,,,,,,0.131175829,0.188611982,,,,,,,,,56.33979123,57.10611919,,,,,,,,,718.221287,744.0721302,,,,,,,,,0.076335818,0.097974109,,,,,,,,,0.046483186,0.046561199,,,,,,,,,5.357781131,6.752474517,,,,,,,,,0.029654694,0.066610055,,,,,,,,,0.109033007,0.188273024,,,,,,,,,0.060894538,0.131016748,,,,,,,,,0.044125465,0.017211047,,,,,,,,,3.671069447,5.423525629,,,,,,,,,0.012908198,0.034821936,,,,,,,,,0.131458553,0.185823344,,,,,,,,,57.64875029,58.02448362,,,,,,,,,708.6214437,735.3073844,,,,,,,,,0.073030983,0.094097559,,,,,,,,,0.046036707,0.046123607,,,,,,,,,5.420862817,6.760384994,,,,,,,,,0.03397451,0.076628962,,,,,,,,,0.11424427,0.205908348,,,,,,,,,0.068625309,0.149734771,,,,,,,,,0.048485208,0.017086645,,,,,,,,,3.566492431,5.148838955,,,,,,,,,0.010664951,0.028128527,,,,,,,,,0.127019564,0.17997517,,,,,,,,,55.94259723,56.43390757,,,,,,,,,716.6518337,741.2009934,,,,,,,,,0.074107618,0.095552284,,,,,,,,,0.046179852,0.046264285,,,,,,,,,5.355650645,6.728910566,,,,,,,,,0.02917792,0.064698753,,,,,,,,,0.104034301,0.180199837,,,,,,,,,0.059345979,0.126748722,,,,,,,,,0.044508944,0.023578261,,,,,,,,,3.577713331,5.243480908,,,,,,,,,0.015138083,0.041072941,,,,,,,,,0.130615357,0.187237818,,,,,,,,,57.1871912,60.10167456,,,,,,,,,715.6103754,743.3560512,,,,,,,,,0.07481513,0.096263564,,,,,,,,,0.046238786,0.046324917,,,,,,,,,5.822797503,7.291625884,,,,,,,,,0.039219678,0.088608007,,,,,,,,,0.12726696,0.23477324,,,,,,,,,0.078663309,0.173782087,,,,,,,,,0.0435479,0.026685638,,,,,,,,,3.581350592,5.216674921,,,,,,,,,0.01089024,0.028493174,,,,,,,,,0.117366396,0.168864142,,,,,,,,,51.30169412,55.79972658,,,,,,,,,706.3112766,734.3042996,,,,,,,,,0.076374336,0.098405787,,,,,,,,,0.046472749,0.046553045,,,,,,,,,5.331928269,6.790633252,,,,,,,,,0.030049753,0.06608317,,,,,,,,,0.106884345,0.18390082,,,,,,,,,0.06048493,0.128643223,,,,,,,,,0.020594054,0.009867718,,,,,,,,,3.253896908,4.891987477,,,,,,,, +Commercial truck,E15,2000,0.010943558,0.015916545,0.043214534,,,,,,,,0.070375238,0.071015298,0.145718874,,,,,,,,28.93538636,34.34966787,49.50398381,,,,,,,,696.2037978,696.00841,725.8073557,,,,,,,,0.110542764,0.127684881,0.150723909,,,,,,,,0.046703186,0.046873038,0.046437114,,,,,,,,4.312133883,4.757507227,6.001929055,,,,,,,,0.02974169,0.041002314,0.089252262,,,,,,,,0.104409616,0.127542313,0.234778993,,,,,,,,0.06009387,0.080598558,0.1753701,,,,,,,,0.03279965,0.015733312,0.014762392,,,,,,,,1.874478318,2.251326411,4.014367112,,,,,,,,0.009480573,0.013746095,0.036946872,,,,,,,,0.070261968,0.069924056,0.142625793,,,,,,,,29.56438647,34.81263351,49.83995138,,,,,,,,703.997624,703.3610327,731.7999566,,,,,,,,0.11044206,0.127437731,0.150014711,,,,,,,,0.046677466,0.046848705,0.046411493,,,,,,,,4.358128749,4.770582999,6.004154381,,,,,,,,0.026225573,0.036089184,0.078114983,,,,,,,,0.098113063,0.118201801,0.211088246,,,,,,,,0.053743446,0.071546591,0.153639021,,,,,,,,0.037111146,0.016030205,0.014884277,,,,,,,,1.916620491,2.279911928,4.060957267,,,,,,,,0.010312227,0.015051136,0.041823863,,,,,,,,0.080702088,0.074869089,0.151437396,,,,,,,,33.15444503,37.94549549,54.14411526,,,,,,,,708.7252289,708.4296198,738.0617017,,,,,,,,0.114866841,0.132216229,0.155262129,,,,,,,,0.047032994,0.047191421,0.046783179,,,,,,,,4.51525908,4.768716742,5.99666783,,,,,,,,0.027301874,0.037690859,0.084145583,,,,,,,,0.10507655,0.126083846,0.229759942,,,,,,,,0.056893161,0.075513996,0.167139501,,,,,,,,0.052802309,0.016486934,0.015011637,,,,,,,,2.176598782,2.437954667,4.27787373,,,,,,,,0.011259761,0.016451645,0.045581795,,,,,,,,0.074884031,0.072049624,0.145989246,,,,,,,,32.0244551,36.40311188,51.45240253,,,,,,,,697.4600719,697.0251538,725.3896934,,,,,,,,0.10649818,0.123168096,0.145463548,,,,,,,,0.046357436,0.04653351,0.046083757,,,,,,,,4.413750887,4.758229772,5.877454369,,,,,,,,0.029804747,0.041184321,0.091599783,,,,,,,,0.102578825,0.126118208,0.238243376,,,,,,,,0.060492048,0.081355234,0.180455054,,,,,,,,0.048404062,0.027897913,0.014753897,,,,,,,,2.075462315,2.367081027,4.101035459,,,,,,,,0.005435543,0.007815282,0.020580808,,,,,,,,0.069227286,0.0681978,0.135675464,,,,,,,,30.11080711,35.24382379,49.36280479,,,,,,,,715.9049458,713.9791518,738.1659729,,,,,,,,0.113855986,0.131105223,0.154010228,,,,,,,,0.046949839,0.047109715,0.046697104,,,,,,,,4.271748237,4.655676259,5.844148686,,,,,,,,0.015682447,0.021479549,0.04622155,,,,,,,,0.079394875,0.090958395,0.144902407,,,,,,,,0.034777733,0.045043878,0.092677569,,,,,,,,0.04397412,0.016516058,0.015013756,,,,,,,,2.040845391,2.428661707,4.403467806,,,,,,,,0.006293648,0.009075578,0.025151532,,,,,,,,0.068550911,0.066149796,0.134510634,,,,,,,,30.67402406,35.46746221,50.40490225,,,,,,,,705.7681316,704.2424041,730.9448677,,,,,,,,0.10888686,0.125681663,0.148136749,,,,,,,,0.046533273,0.046704835,0.046288747,,,,,,,,4.325396663,4.642129674,5.826947529,,,,,,,,0.01791569,0.024574745,0.055311495,,,,,,,,0.080057427,0.093304743,0.160679068,,,,,,,,0.038474942,0.050227346,0.109597702,,,,,,,,0.048284893,0.016368511,0.014866884,,,,,,,,2.00425531,2.329529217,4.340385792,,,,,,,,0.005338625,0.007643583,0.01963573,,,,,,,,0.066032639,0.064358003,0.128028497,,,,,,,,29.78240872,34.61880149,48.18119587,,,,,,,,714.7122365,712.5499806,735.8336143,,,,,,,,0.110365259,0.127419332,0.150220298,,,,,,,,0.046672771,0.046842608,0.046407895,,,,,,,,4.273470339,4.647505317,5.774978076,,,,,,,,0.015815793,0.021629597,0.045567217,,,,,,,,0.075761778,0.087430439,0.139148249,,,,,,,,0.034436769,0.044796847,0.090460853,,,,,,,,0.044383809,0.022660084,0.014966319,,,,,,,,1.984246267,2.318967348,4.226692927,,,,,,,,0.007457414,0.01076983,0.028611312,,,,,,,,0.068816622,0.066841933,0.132976775,,,,,,,,30.40936491,36.25879899,50.83117658,,,,,,,,711.96809,710.5645249,736.5269983,,,,,,,,0.111595182,0.128699643,0.151367205,,,,,,,,0.046732378,0.046901787,0.046469107,,,,,,,,4.636742087,5.036509518,6.192757397,,,,,,,,0.021066044,0.028923868,0.062247839,,,,,,,,0.088530674,0.104541296,0.177385424,,,,,,,,0.044476234,0.058669438,0.12303587,,,,,,,,0.043295154,0.025520378,0.013433295,,,,,,,,2.012494868,2.361408755,4.207508326,,,,,,,,0.00557706,0.007963764,0.020081789,,,,,,,,0.061622141,0.06103829,0.122116968,,,,,,,,27.44480527,34.3854861,48.58374995,,,,,,,,701.9549789,700.3292595,726.0657001,,,,,,,,0.113646917,0.131130379,0.154661593,,,,,,,,0.046953938,0.047119266,0.04669288,,,,,,,,4.198232466,4.650373875,5.836084817,,,,,,,,0.016764944,0.022908058,0.04731494,,,,,,,,0.079042327,0.091412659,0.144028531,,,,,,,,0.03596533,0.046949718,0.093401267,,,,,,,,0.020434095,0.009387525,0.007012842,,,,,,,,1.79416504,2.158065434,4.001359826,,,,,,, +Commercial truck,E15,2005,0.003662156,0.005905326,0.008525281,0.024753549,,,,,,,0.069584422,0.0601877,0.056268364,0.083317889,,,,,,,14.73366027,23.32216733,29.22108535,40.78012986,,,,,,,640.06977,649.5855028,650.0678634,694.2424186,,,,,,,0.036927395,0.039390828,0.046605698,0.106967824,,,,,,,0.048667143,0.04851462,0.048680444,0.047721687,,,,,,,3.193332657,3.9284531,4.345437942,4.077508001,,,,,,,0.009754904,0.015284256,0.020109309,0.051237108,,,,,,,0.062448887,0.073819222,0.084361378,0.152144234,,,,,,,0.023448727,0.033470432,0.042836189,0.102575176,,,,,,,0.030110743,0.014682797,0.013221906,0.004706795,,,,,,,0.797849761,1.213522482,1.502064696,2.736750096,,,,,,,0.003309789,0.005142045,0.007386999,0.021337277,,,,,,,0.06950186,0.059459342,0.055359829,0.081163487,,,,,,,15.03856032,23.72523327,29.60046834,40.62503985,,,,,,,647.0272932,656.4740742,656.3783414,699.9160055,,,,,,,0.037004062,0.039440499,0.046610238,0.106580738,,,,,,,0.048667793,0.048512207,0.048680692,0.047710974,,,,,,,3.248507372,3.946557188,4.359727086,4.069713524,,,,,,,0.008959479,0.013695516,0.018012174,0.045304474,,,,,,,0.061929235,0.071557538,0.080904906,0.140057343,,,,,,,0.022112308,0.030600538,0.038900711,0.091046624,,,,,,,0.034161699,0.014962913,0.013350258,0.004745261,,,,,,,0.794162238,1.203967998,1.483338616,2.729008683,,,,,,,0.003922092,0.004598068,0.006570638,0.023628492,,,,,,,0.07792734,0.061090763,0.056529152,0.086297157,,,,,,,16.20802568,25.60887437,32.04216058,42.55096707,,,,,,,652.4353707,661.953136,662.3076253,706.4357172,,,,,,,0.038249105,0.040747356,0.048004394,0.109577366,,,,,,,0.048852755,0.048712862,0.04886475,0.047978217,,,,,,,3.396915751,3.968133174,4.377205933,4.075879761,,,,,,,0.009942292,0.012489937,0.016389116,0.047690203,,,,,,,0.068155286,0.072977437,0.081377187,0.150117911,,,,,,,0.024674544,0.028905122,0.036372732,0.096973236,,,,,,,0.048596095,0.015405225,0.013470855,0.004789463,,,,,,,0.874681854,1.230292929,1.508865989,2.856845225,,,,,,,0.004114992,0.005957283,0.008638408,0.025985897,,,,,,,0.070048267,0.061335503,0.05338373,0.082550847,,,,,,,15.80506264,26.41321599,30.19167841,41.93121014,,,,,,,641.4678331,650.854362,651.0582462,694.6330166,,,,,,,0.035760419,0.03814906,0.045216211,0.103769267,,,,,,,0.048414754,0.04825284,0.048428216,0.04742294,,,,,,,3.30039389,4.119552948,4.32116959,4.019934839,,,,,,,0.010431594,0.015150749,0.01998811,0.052201194,,,,,,,0.061480428,0.071163949,0.08161755,0.15224088,,,,,,,0.024600707,0.03313055,0.042417145,0.10467325,,,,,,,0.044518189,0.026030711,0.01324205,0.004709443,,,,,,,0.845562132,1.280588826,1.481901996,2.762366097,,,,,,,0.002165696,0.003407612,0.00487613,0.012319409,,,,,,,0.068427822,0.059538266,0.054807526,0.075829071,,,,,,,15.87565133,24.57472789,30.24494373,40.27278924,,,,,,,658.5652225,667.500618,665.8198784,706.2394023,,,,,,,0.037956842,0.040438522,0.047666063,0.108830535,,,,,,,0.048795813,0.048652954,0.04880742,0.047907998,,,,,,,3.22158388,3.844475353,4.249465024,3.960490257,,,,,,,0.006216897,0.009635135,0.012804239,0.028130577,,,,,,,0.059261749,0.066121597,0.072797291,0.105792428,,,,,,,0.01739992,0.023434325,0.029375887,0.058359668,,,,,,,0.040447071,0.0154405,0.013542289,0.004788131,,,,,,,0.782738687,1.223285282,1.494397836,2.818615555,,,,,,,0.002508949,0.003494846,0.005010921,0.014224974,,,,,,,0.066214022,0.055185305,0.051468994,0.074860454,,,,,,,15.86718901,24.72179288,31.06638641,40.1626893,,,,,,,649.1915044,658.2111814,658.8573094,697.7358595,,,,,,,0.036517934,0.038925647,0.04607332,0.105255641,,,,,,,0.048521924,0.048366967,0.048544409,0.047565528,,,,,,,3.275040008,3.854133734,4.258955232,3.945705738,,,,,,,0.006987078,0.009922349,0.013215725,0.031766733,,,,,,,0.056863919,0.062652856,0.069797058,0.109625879,,,,,,,0.01836249,0.023451045,0.029659948,0.064845581,,,,,,,0.044395794,0.015298426,0.013400676,0.004730479,,,,,,,0.780557698,1.162600799,1.442473856,2.727345702,,,,,,,0.002103614,0.003179845,0.004506574,0.011612127,,,,,,,0.064589639,0.058359499,0.052034467,0.072032616,,,,,,,15.81623232,25.75823328,30.45604068,40.46709588,,,,,,,656.5605293,665.4942402,663.5007939,703.79223,,,,,,,0.036913537,0.039362236,0.046547345,0.106660225,,,,,,,0.04863915,0.048486221,0.048652401,0.04769302,,,,,,,3.225804361,3.952833782,4.253150421,3.946915218,,,,,,,0.006188512,0.009322477,0.012326614,0.027573076,,,,,,,0.055361163,0.061659277,0.067865488,0.10042408,,,,,,,0.016831105,0.022368092,0.027895193,0.056488594,,,,,,,0.040766896,0.021151565,0.013495121,0.004771539,,,,,,,0.761313561,1.214553903,1.441631474,2.727546603,,,,,,,0.002794087,0.003934228,0.005598714,0.016577117,,,,,,,0.067157359,0.059236271,0.051222942,0.077076953,,,,,,,16.02077073,27.40151279,31.63398902,42.73407595,,,,,,,654.3310664,663.5359367,662.4714224,704.4137892,,,,,,,0.037383469,0.039835274,0.047045585,0.107466428,,,,,,,0.048701963,0.048547964,0.048714434,0.047755517,,,,,,,3.476125501,4.206616906,4.411007196,4.264693307,,,,,,,0.007740087,0.011039821,0.014514515,0.036529917,,,,,,,0.060462531,0.067115977,0.074388037,0.121881412,,,,,,,0.019998506,0.025857144,0.032319127,0.074162466,,,,,,,0.039766462,0.023831017,0.012073274,0.004705189,,,,,,,0.805111526,1.252973484,1.448196786,2.804562111,,,,,,,0.001916094,0.002830064,0.003954177,0.011634528,,,,,,,0.054009202,0.045444042,0.042591628,0.073377356,,,,,,,13.70544824,24.67206273,31.1971025,43.18621513,,,,,,,644.3920134,653.4714096,652.1252983,693.1606341,,,,,,,0.037850067,0.040366468,0.047692152,0.109392966,,,,,,,0.048858727,0.048711564,0.048871409,0.04794248,,,,,,,2.759903953,2.847897121,3.19526677,4.093072793,,,,,,,0.005847383,0.008678514,0.011386891,0.028209614,,,,,,,0.05627435,0.061938376,0.067500018,0.103330167,,,,,,,0.016295693,0.021270197,0.026229819,0.057703537,,,,,,,0.018715075,0.008743581,0.006281833,0.004346577,,,,,,,0.659390266,1.028501198,1.266267102,2.72941804,,,,,, +Commercial truck,E15,2010,,0.002512648,0.004342064,0.006436806,0.019296174,,,,,,,0.049191784,0.06247929,0.039737777,0.063707199,,,,,,,10.12398918,19.70899455,22.73720995,35.39443822,,,,,,,667.476968,666.5133306,670.5203843,698.0556129,,,,,,,0.035370844,0.039823584,0.048624701,0.095198878,,,,,,,0.047990177,0.048125642,0.048216719,0.047870634,,,,,,,1.990741765,2.71640358,1.774419294,3.08500969,,,,,,,0.005464381,0.008894447,0.012187703,0.036577828,,,,,,,0.054073862,0.061541474,0.068938899,0.122191539,,,,,,,0.015878379,0.022516599,0.029083349,0.07611516,,,,,,,0.015087632,0.013556393,0.004545965,0.004732647,,,,,,,0.349840531,0.648928911,0.703118133,2.132853524,,,,,,,0.002247712,0.003852962,0.005755627,0.016759733,,,,,,,0.047898498,0.06199491,0.038525499,0.061441905,,,,,,,10.22562792,20.01975985,22.75473869,35.12701895,,,,,,,674.9940906,673.6328741,677.0214955,703.4550011,,,,,,,0.035426714,0.039848912,0.048584329,0.094837742,,,,,,,0.047979673,0.048116921,0.048209901,0.047862434,,,,,,,1.999081599,2.725433606,1.770657492,3.074018434,,,,,,,0.005210386,0.008425717,0.011548013,0.032852526,,,,,,,0.054513622,0.061420722,0.068360204,0.114666928,,,,,,,0.015424202,0.021559802,0.027715904,0.068614404,,,,,,,0.015384853,0.013701201,0.00459004,0.004769254,,,,,,,0.342622841,0.641056717,0.687854308,2.107494581,,,,,,,0.00199101,0.003401172,0.006176205,0.018411147,,,,,,,0.049935404,0.064371464,0.040396686,0.064714347,,,,,,,11.1527907,21.52454457,23.42959385,36.51590018,,,,,,,680.0915439,679.007727,682.8912412,710.349289,,,,,,,0.036731465,0.041218699,0.050093993,0.097391873,,,,,,,0.048229293,0.048354016,0.0484375,0.048115899,,,,,,,2.005925031,2.73657169,1.778385769,3.084152359,,,,,,,0.00470983,0.007598152,0.011706516,0.034249075,,,,,,,0.057364547,0.063540279,0.072922127,0.122461786,,,,,,,0.014976915,0.020470161,0.028790622,0.072541944,,,,,,,0.015829355,0.013810521,0.004629837,0.004815995,,,,,,,0.35600396,0.660002029,0.714891209,2.191682241,,,,,,,0.002541846,0.004404235,0.006702704,0.020212229,,,,,,,0.050677126,0.058894652,0.038176208,0.062453659,,,,,,,11.46991357,20.5132898,23.41765225,36.16726805,,,,,,,668.9771481,667.807714,671.5133767,698.4284462,,,,,,,0.034176535,0.038528779,0.047122928,0.092415515,,,,,,,0.047700526,0.047842956,0.047939451,0.047579637,,,,,,,2.084428966,2.699115723,1.757233052,3.043217439,,,,,,,0.005405377,0.008819707,0.012324307,0.037166017,,,,,,,0.051406036,0.058817607,0.066756623,0.121363945,,,,,,,0.015529694,0.022117488,0.029162957,0.077395166,,,,,,,0.026772847,0.013582721,0.004552697,0.004735175,,,,,,,0.381630028,0.64536884,0.704158013,2.134022253,,,,,,,0.001727695,0.002892486,0.004031843,0.010190834,,,,,,,0.047349703,0.064266845,0.037307436,0.056973816,,,,,,,10.41097647,20.79879818,23.2931029,34.88884439,,,,,,,687.2971006,684.8516046,686.4215473,709.1294991,,,,,,,0.036430129,0.040896985,0.049729853,0.096747132,,,,,,,0.048161767,0.048288424,0.048373373,0.048047782,,,,,,,1.931744739,2.646591386,1.716818856,2.99142845,,,,,,,0.004702885,0.007492311,0.009769453,0.022295499,,,,,,,0.056301843,0.062073256,0.066890541,0.093874494,,,,,,,0.014633635,0.019768447,0.024050436,0.047849899,,,,,,,0.015898769,0.013929385,0.004653771,0.004807726,,,,,,,0.345153743,0.660088063,0.692411122,2.140698577,,,,,,,0.001703106,0.002845912,0.00435098,0.0115183,,,,,,,0.043699414,0.058727688,0.035132013,0.055623532,,,,,,,10.5381519,21.16470294,22.93868673,34.63965847,,,,,,,677.4936652,677.2650091,677.3722274,700.772729,,,,,,,0.034946272,0.039372923,0.047962243,0.093671483,,,,,,,0.047834272,0.047983575,0.04806446,0.047716912,,,,,,,1.942921207,2.655890989,1.714213461,2.978515634,,,,,,,0.004577415,0.007243438,0.010032283,0.024382953,,,,,,,0.051991775,0.057736815,0.063551282,0.094551376,,,,,,,0.013913577,0.018876683,0.024185559,0.051541467,,,,,,,0.015747421,0.013775078,0.004592419,0.004751069,,,,,,,0.332273271,0.629802706,0.66280785,2.072002506,,,,,,,0.00161422,0.002684471,0.003710654,0.009418448,,,,,,,0.046167802,0.060246694,0.035365727,0.054324675,,,,,,,10.93271003,20.86019319,23.66100494,35.33090577,,,,,,,685.6839625,683.0210021,684.2713871,706.5155206,,,,,,,0.035351276,0.039784446,0.048544646,0.094916395,,,,,,,0.04796072,0.048096356,0.048187743,0.047842381,,,,,,,1.989419209,2.651423747,1.723188365,2.987127792,,,,,,,0.004582278,0.007274145,0.009448717,0.02160236,,,,,,,0.052231039,0.057726105,0.062267117,0.088220871,,,,,,,0.013911575,0.018802465,0.022840546,0.045727348,,,,,,,0.021796152,0.013892149,0.004639193,0.004790004,,,,,,,0.343076767,0.634031525,0.670516978,2.076834537,,,,,,,0.001814478,0.00306391,0.004723254,0.013123026,,,,,,,0.046833991,0.057261828,0.03703936,0.058316978,,,,,,,11.72170555,21.31048286,24.39582763,37.2382299,,,,,,,682.9255682,680.904598,683.2070514,707.518023,,,,,,,0.035800565,0.040248846,0.049035995,0.095608243,,,,,,,0.048021245,0.04815695,0.048248875,0.047905475,,,,,,,2.119645984,2.748050029,1.888720702,3.234287962,,,,,,,0.004671484,0.007477843,0.010469998,0.027230232,,,,,,,0.054321392,0.060161162,0.066665812,0.102879555,,,,,,,0.014446786,0.019636372,0.025406353,0.057379421,,,,,,,0.024530404,0.012407094,0.004563234,0.004725977,,,,,,,0.359217312,0.626729535,0.698199373,2.146059826,,,,,,,0.001414121,0.002332891,0.003544125,0.009226871,,,,,,,0.034297948,0.045371793,0.03643849,0.056291042,,,,,,,10.52670289,20.62135243,24.60774749,38.05740968,,,,,,,672.8653508,670.7073124,672.6278524,695.8789645,,,,,,,0.036306755,0.040833917,0.049787308,0.097308217,,,,,,,0.048204619,0.048335712,0.04842341,0.048086594,,,,,,,1.381160076,1.906684643,1.793214457,3.11416622,,,,,,,0.004196717,0.006635508,0.009230832,0.021695615,,,,,,,0.053138578,0.058080672,0.063542273,0.090015044,,,,,,,0.013361629,0.017765634,0.022619652,0.045960969,,,,,,,0.009004694,0.006461083,0.004217467,0.004363635,,,,,,,0.292251341,0.531718964,0.68131823,2.111462678,,,,, +Commercial truck,E15,2015,,,0.00197385,0.003451589,0.005351759,0.012070053,,,,,,,0.018736573,0.01769226,0.022257371,0.040735707,,,,,,,4.276987963,8.694127413,11.62382424,20.68715407,,,,,,,686.5980518,686.7095839,685.158042,683.2262382,,,,,,,0.00941081,0.010704022,0.012890388,0.038235842,,,,,,,0.047380583,0.047474973,0.047683965,0.048177025,,,,,,,0.561088188,0.521450073,0.72509846,1.509179338,,,,,,,0.004782683,0.007963698,0.011344573,0.02177293,,,,,,,0.052605879,0.05928527,0.066691698,0.090357762,,,,,,,0.014434292,0.020365654,0.02696788,0.048024095,,,,,,,0.013964906,0.004655724,0.004645205,0.004632108,,,,,,,0.211123716,0.301273249,0.459511794,1.198118948,,,,,,,0.001818174,0.003203889,0.004927224,0.010757373,,,,,,,0.017373708,0.016629575,0.021058567,0.038729481,,,,,,,4.349991738,8.868478215,11.84896331,20.70127353,,,,,,,694.5128558,694.2443921,692.0733447,688.7051538,,,,,,,0.009420288,0.010702858,0.012872972,0.038106352,,,,,,,0.047361898,0.047457562,0.047669479,0.048171141,,,,,,,0.559949631,0.517695758,0.719423652,1.499151274,,,,,,,0.004632392,0.007735084,0.010949769,0.020297194,,,,,,,0.05328052,0.05974891,0.066726218,0.087784213,,,,,,,0.014218208,0.019957978,0.026169639,0.044891132,,,,,,,0.014125883,0.004706808,0.004692089,0.004669254,,,,,,,0.212150078,0.299982888,0.454783809,1.17900289,,,,,,,0.001609815,0.003325946,0.005163475,0.011589658,,,,,,,0.017523999,0.016964311,0.021394892,0.039716113,,,,,,,4.545743064,9.143270636,12.24848304,21.37801011,,,,,,,699.3914913,699.3855242,697.6514322,695.3955079,,,,,,,0.009791131,0.01109836,0.01330462,0.039111328,,,,,,,0.047664811,0.047752139,0.047945262,0.048399354,,,,,,,0.549842202,0.512701685,0.714460023,1.500167707,,,,,,,0.0041782,0.007641231,0.010902191,0.020792395,,,,,,,0.056277937,0.06364467,0.070794341,0.093293544,,,,,,,0.013879326,0.02041728,0.026789113,0.046804599,,,,,,,0.014225114,0.004741664,0.004729907,0.004714613,,,,,,,0.220421017,0.311081529,0.467045302,1.209252958,,,,,,,0.001962522,0.003505585,0.005458346,0.012520049,,,,,,,0.018622927,0.017352652,0.021723446,0.039711161,,,,,,,4.588471034,9.278240708,12.33760355,21.37998835,,,,,,,688.1400576,688.0564338,686.2511003,683.7660923,,,,,,,0.009076644,0.010336054,0.012469624,0.037136812,,,,,,,0.047061817,0.047160652,0.047379844,0.047899671,,,,,,,0.559107161,0.517818397,0.719389138,1.492492055,,,,,,,0.004683683,0.00791411,0.011313579,0.022008457,,,,,,,0.049767696,0.056589361,0.064076149,0.088510456,,,,,,,0.013938293,0.0199949,0.026666939,0.048400291,,,,,,,0.013996267,0.004664855,0.004652616,0.004635768,,,,,,,0.229648223,0.315721456,0.46913613,1.193534763,,,,,,,0.001500856,0.002515851,0.003761409,0.007325396,,,,,,,0.014638829,0.014563816,0.018885198,0.035009675,,,,,,,4.601119782,9.537233835,12.73421619,21.18937227,,,,,,,707.4394198,706.0795433,702.1777377,694.8792129,,,,,,,0.009706492,0.011006678,0.013202105,0.038856543,,,,,,,0.047589098,0.047677696,0.047873718,0.048335157,,,,,,,0.519817956,0.486183664,0.680962275,1.445401481,,,,,,,0.004304925,0.006954415,0.009677978,0.016120835,,,,,,,0.055582481,0.060944636,0.066643337,0.080682555,,,,,,,0.01386431,0.018628422,0.023715452,0.036244112,,,,,,,0.014388804,0.004787047,0.004760594,0.004711111,,,,,,,0.226377114,0.313818658,0.472333694,1.199616958,,,,,,,0.001455964,0.002635841,0.003973512,0.007990866,,,,,,,0.014808657,0.01451571,0.018669378,0.034374427,,,,,,,4.651782192,9.373196722,12.47696525,20.89455109,,,,,,,699.1673147,696.1681412,692.7799468,686.5969946,,,,,,,0.009303793,0.0105572,0.012703335,0.037641144,,,,,,,0.047233116,0.047312597,0.047524257,0.048025643,,,,,,,0.534687222,0.49481508,0.689741223,1.446577935,,,,,,,0.004138328,0.007040053,0.009841217,0.016843206,,,,,,,0.051368063,0.057108011,0.063027307,0.078440839,,,,,,,0.013089767,0.018334933,0.023613696,0.037350125,,,,,,,0.014220553,0.004719851,0.004696879,0.00465496,,,,,,,0.226733016,0.305248836,0.456839435,1.159670453,,,,,,,0.00142276,0.002375198,0.003515109,0.006695969,,,,,,,0.014467375,0.014362112,0.018595905,0.034082433,,,,,,,4.627688264,9.590705501,12.78014163,21.48442044,,,,,,,706.1206459,704.5616605,700.3495386,692.3068769,,,,,,,0.009403554,0.010690304,0.012866499,0.038128928,,,,,,,0.047350405,0.047444896,0.047654178,0.04814848,,,,,,,0.527943239,0.493216,0.689696503,1.452325348,,,,,,,0.004230666,0.006827515,0.009444801,0.01548701,,,,,,,0.051595561,0.05681381,0.062239589,0.075256815,,,,,,,0.013214335,0.017851465,0.022697802,0.034324518,,,,,,,0.01436198,0.004776758,0.004748201,0.004693673,,,,,,,0.223064307,0.308931117,0.464701414,1.173543489,,,,,,,0.001525489,0.002780475,0.004209032,0.008715158,,,,,,,0.015094324,0.01547097,0.019957061,0.036807828,,,,,,,4.523129075,9.468783417,12.68340864,22.12797609,,,,,,,702.9229233,702.0024161,698.7871822,693.0184716,,,,,,,0.009521565,0.010812114,0.012995362,0.038416584,,,,,,,0.047409918,0.047504538,0.047714201,0.048210534,,,,,,,0.550787376,0.544764107,0.757874449,1.581252534,,,,,,,0.004232645,0.007257264,0.010167449,0.017856603,,,,,,,0.053389823,0.059611743,0.065809073,0.082859504,,,,,,,0.013515593,0.019036066,0.024554828,0.03972376,,,,,,,0.012806849,0.004688629,0.004667286,0.004629055,,,,,,,0.22812542,0.319380136,0.477353667,1.207395069,,,,,,,0.001256769,0.002289449,0.003372751,0.006394876,,,,,,,0.011950336,0.015026697,0.019865025,0.036454205,,,,,,,4.087857918,8.934319312,12.05844898,22.15067208,,,,,,,692.8475915,691.7654574,688.2266281,681.6010233,,,,,,,0.009670839,0.010988639,0.013213767,0.039072215,,,,,,,0.047613418,0.047704952,0.047907493,0.048383944,,,,,,,0.362482619,0.513682579,0.720740341,1.524791166,,,,,,,0.003896901,0.006715602,0.009269394,0.015176306,,,,,,,0.052661352,0.058354003,0.063620013,0.076260279,,,,,,,0.012794539,0.017852965,0.022561589,0.033863169,,,,,,,0.006675925,0.004337472,0.004315366,0.004273997,,,,,,,0.197488526,0.302436844,0.468503378,1.209284035,,,, +Commercial truck,E15,2020,,,,0.001964694,0.003457283,0.005297192,0.010271973,,,,,,,0.01594155,0.017653359,0.021356432,0.034871641,,,,,,,3.171034561,6.644755741,8.239437783,12.91190044,,,,,,,653.2468066,652.534944,643.0012187,644.790099,,,,,,,0.009605833,0.010836668,0.013085381,0.022115172,,,,,,,0.047112177,0.047208434,0.047622159,0.048303813,,,,,,,0.283479354,0.493329959,0.649721009,0.964638396,,,,,,,0.004872955,0.008091914,0.011306206,0.018481224,,,,,,,0.052793607,0.059592165,0.066597173,0.083090338,,,,,,,0.014536353,0.020573742,0.02686922,0.041623186,,,,,,,0.004428854,0.004424029,0.004359391,0.00437152,,,,,,,0.190149302,0.284254376,0.414312292,0.890016133,,,,,,,0.0018421,0.003221403,0.004891439,0.00931068,,,,,,,0.014636928,0.016596698,0.020173959,0.032999105,,,,,,,3.188255199,6.751189932,8.354858616,12.98915305,,,,,,,660.8259255,659.7719036,649.5377891,650.0323079,,,,,,,0.009610126,0.010830539,0.013065172,0.022052354,,,,,,,0.047090753,0.047188223,0.047607045,0.048298798,,,,,,,0.280969756,0.48929986,0.644114995,0.95628511,,,,,,,0.004760631,0.007874233,0.010929121,0.01757677,,,,,,,0.053545352,0.060067926,0.066674802,0.081813333,,,,,,,0.014401561,0.02018973,0.026112137,0.039632486,,,,,,,0.004480239,0.004473093,0.004403708,0.004407061,,,,,,,0.191146174,0.282604835,0.408503494,0.876396253,,,,,,,0.001892034,0.003333676,0.005114532,0.00991667,,,,,,,0.015198361,0.016938352,0.020510652,0.033526559,,,,,,,3.295358161,6.966386204,8.635356573,13.41614028,,,,,,,665.2464926,664.4015929,654.5615222,656.2249812,,,,,,,0.00999383,0.01123891,0.013503794,0.022644081,,,,,,,0.047415612,0.047504831,0.047888002,0.048516471,,,,,,,0.277858805,0.485566357,0.63988077,0.952425059,,,,,,,0.004666411,0.00775839,0.010865965,0.017813844,,,,,,,0.057391793,0.063929434,0.07070726,0.086672791,,,,,,,0.01480442,0.020609552,0.026697959,0.040974153,,,,,,,0.004510209,0.004504481,0.004437768,0.004449046,,,,,,,0.201522594,0.294004192,0.421030424,0.896474244,,,,,,,0.001982195,0.00349826,0.005388463,0.010573192,,,,,,,0.015816366,0.017300809,0.020873535,0.034092384,,,,,,,3.3753513,7.058084718,8.712682032,13.48771311,,,,,,,654.7664102,653.88762,644.1424138,645.4201715,,,,,,,0.00925975,0.010457422,0.012657017,0.021477089,,,,,,,0.046782014,0.046882602,0.047315335,0.048032188,,,,,,,0.281323675,0.48941446,0.644653643,0.956647752,,,,,,,0.004821484,0.008022403,0.011257394,0.018593742,,,,,,,0.050058844,0.056848022,0.063936941,0.080899185,,,,,,,0.014133815,0.020162243,0.026529196,0.041694418,,,,,,,0.004439157,0.004433199,0.004367129,0.004375792,,,,,,,0.207490323,0.297989779,0.423945011,0.889110035,,,,,,,0.001490879,0.002555819,0.00376435,0.006720996,,,,,,,0.011770364,0.014535288,0.017953328,0.029481193,,,,,,,3.302899184,7.189931875,8.856621115,13.48170729,,,,,,,672.971617,670.9232446,658.8324183,655.895392,,,,,,,0.009906364,0.011144501,0.013399591,0.022495018,,,,,,,0.047336559,0.047427025,0.047815665,0.048453881,,,,,,,0.260125188,0.460526275,0.609211601,0.910791591,,,,,,,0.004338962,0.007103697,0.009691922,0.014920375,,,,,,,0.055673046,0.061311071,0.06668802,0.078058216,,,,,,,0.01388573,0.018894479,0.023741203,0.033948433,,,,,,,0.004562584,0.004548696,0.004466723,0.004446811,,,,,,,0.202473751,0.293663281,0.418803016,0.898791417,,,,,,,0.0015492,0.00267044,0.003968997,0.007221208,,,,,,,0.012039463,0.014492515,0.017811117,0.029184342,,,,,,,3.278780977,7.072675639,8.702247399,13.27458914,,,,,,,663.3468254,661.5960034,650.1849746,648.1705913,,,,,,,0.009475766,0.010681888,0.012892815,0.021782013,,,,,,,0.046946435,0.047043699,0.047461936,0.048153373,,,,,,,0.266323293,0.467749349,0.617178815,0.918658567,,,,,,,0.004377145,0.007184716,0.009847775,0.015333768,,,,,,,0.051691198,0.057456003,0.063051373,0.075142485,,,,,,,0.013469813,0.018589039,0.023622216,0.034456622,,,,,,,0.00449733,0.00448546,0.004408095,0.004394439,,,,,,,0.199354026,0.28681393,0.407575198,0.869770882,,,,,,,0.001420161,0.002416897,0.003519887,0.006160023,,,,,,,0.011546521,0.014334476,0.017690497,0.028985173,,,,,,,3.336342792,7.233827368,8.910837075,13.63355492,,,,,,,671.9070815,669.6921232,657.2697599,653.5270894,,,,,,,0.009596157,0.010820722,0.013060016,0.022058642,,,,,,,0.047082037,0.047178384,0.047592368,0.048275115,,,,,,,0.264437405,0.467470631,0.618158758,0.921140632,,,,,,,0.0042818,0.006983372,0.009460613,0.014352655,,,,,,,0.051721369,0.057194464,0.06228955,0.072805544,,,,,,,0.013266188,0.018129283,0.022728014,0.032182399,,,,,,,0.004555366,0.00454035,0.004456129,0.004430755,,,,,,,0.19918386,0.288201041,0.410980882,0.881934805,,,,,,,0.001625552,0.002810637,0.004194719,0.00771915,,,,,,,0.013044682,0.015426807,0.019027265,0.031334238,,,,,,,3.350156136,7.187748889,8.911635975,13.87586937,,,,,,,668.8192706,667.1776506,655.8118786,654.161047,,,,,,,0.009712965,0.010941096,0.013188935,0.022235785,,,,,,,0.047141595,0.047238078,0.047652488,0.048336617,,,,,,,0.294587442,0.516432256,0.680255372,1.008431475,,,,,,,0.004505767,0.00740625,0.010168128,0.01592947,,,,,,,0.053967602,0.059954427,0.06581221,0.078648024,,,,,,,0.013979237,0.019292115,0.024546368,0.036020292,,,,,,,0.004466942,0.004456054,0.004380259,0.004369491,,,,,,,0.208516779,0.299639377,0.425842787,0.902751165,,,,,,,0.00137587,0.002335605,0.003381551,0.005854711,,,,,,,0.011952429,0.014985575,0.018836458,0.031222772,,,,,,,3.147777709,6.816351115,8.514139342,13.58633316,,,,,,,659.2463314,657.4711118,645.8193364,643.3103377,,,,,,,0.009873925,0.011128827,0.013414062,0.022602928,,,,,,,0.047352343,0.047445837,0.04784743,0.048506896,,,,,,,0.276153215,0.48951081,0.649007663,0.969218864,,,,,,,0.004225112,0.006885186,0.009296013,0.013996611,,,,,,,0.053396731,0.058768144,0.06369318,0.073724891,,,,,,,0.013380951,0.018155829,0.022611224,0.031648472,,,,,,,0.004133585,0.00412251,0.004049493,0.004033872,,,,,,,0.188750159,0.283649307,0.415944155,0.909221295,,, +Commercial truck,E15,2025,,,,,0.001973802,0.003455255,0.005286018,0.010125223,,,,,,,0.013184307,0.013380493,0.016615862,0.029666296,,,,,,,1.600509531,2.815750843,3.90628824,7.8381079,,,,,,,650.7833181,648.2102707,635.3073202,626.845007,,,,,,,0.009677987,0.01086591,0.013079493,0.018324125,,,,,,,0.046988632,0.047142766,0.047650828,0.048407503,,,,,,,0.127136797,0.206786712,0.2895263,0.582156093,,,,,,,0.004895849,0.008095091,0.011281047,0.018344192,,,,,,,0.052878996,0.059616142,0.066535579,0.082695176,,,,,,,0.014582895,0.020579589,0.026821536,0.04129761,,,,,,,0.004412153,0.004394708,0.004307229,0.004249857,,,,,,,0.173926717,0.23255162,0.339663495,0.800903399,,,,,,,0.001850494,0.003219633,0.004881184,0.009215092,,,,,,,0.011856112,0.012328798,0.015462678,0.02788034,,,,,,,1.564437408,2.792315186,3.878023943,7.826921638,,,,,,,658.3956043,655.4659753,641.8232247,631.9335243,,,,,,,0.00968005,0.01085859,0.013059831,0.018277712,,,,,,,0.046965989,0.047121893,0.047636117,0.048403745,,,,,,,0.124767836,0.203435891,0.284948204,0.574768628,,,,,,,0.004782725,0.007877477,0.010904908,0.017489066,,,,,,,0.053620887,0.06008809,0.066617522,0.081554391,,,,,,,0.014445315,0.020195346,0.026066849,0.039422757,,,,,,,0.004463762,0.004443901,0.004351405,0.004284356,,,,,,,0.174604696,0.230396625,0.333053293,0.78686206,,,,,,,0.001901041,0.003331584,0.005104,0.009787534,,,,,,,0.012503528,0.012751542,0.015840039,0.028351702,,,,,,,1.632996806,2.895125344,4.012907289,8.082508778,,,,,,,662.5937195,659.8722905,646.6334068,637.8988503,,,,,,,0.010069332,0.011270046,0.013496924,0.018765143,,,,,,,0.047300805,0.04744387,0.047914564,0.048611991,,,,,,,0.123518779,0.201493216,0.28226779,0.570689899,,,,,,,0.004686675,0.007759243,0.010843061,0.017699383,,,,,,,0.057470361,0.063948199,0.070650641,0.086333801,,,,,,,0.014846595,0.020611688,0.026654253,0.04069677,,,,,,,0.004492224,0.004473773,0.004384017,0.004324798,,,,,,,0.185378654,0.242160772,0.346335166,0.807334331,,,,,,,0.001989928,0.003493769,0.005375861,0.01037754,,,,,,,0.013187992,0.013229791,0.016364543,0.029183138,,,,,,,1.680101328,2.955131313,4.097081979,8.185264003,,,,,,,652.3992289,649.6656284,636.5532423,627.540193,,,,,,,0.009326876,0.010483994,0.012652375,0.01779988,,,,,,,0.046653396,0.046814186,0.047345336,0.04814118,,,,,,,0.125822525,0.204797736,0.287020887,0.577388722,,,,,,,0.004841195,0.008021216,0.011230727,0.01840472,,,,,,,0.050136359,0.056861754,0.063871765,0.080372671,,,,,,,0.014174336,0.020159529,0.026478197,0.041252107,,,,,,,0.004423108,0.004404575,0.004315676,0.00425457,,,,,,,0.191727026,0.248391933,0.352159089,0.801968607,,,,,,,0.001497164,0.0025549,0.003756426,0.006724982,,,,,,,0.008815976,0.01008198,0.013076547,0.024287005,,,,,,,1.495340419,2.781557667,3.871271619,7.942671565,,,,,,,670.3985663,666.4787458,650.9492111,637.4684814,,,,,,,0.009980666,0.011174992,0.013393029,0.018642363,,,,,,,0.047220258,0.04736527,0.04784261,0.048550884,,,,,,,0.112405504,0.187251325,0.264089989,0.540470758,,,,,,,0.004356408,0.007105975,0.009671645,0.014936248,,,,,,,0.055743425,0.061332817,0.066638402,0.078061681,,,,,,,0.013921367,0.018899603,0.023703552,0.033973457,,,,,,,0.004545138,0.004518564,0.004413278,0.004321881,,,,,,,0.183929143,0.237168874,0.336400311,0.800792164,,,,,,,0.001555711,0.002669063,0.003960951,0.00721043,,,,,,,0.009224226,0.010251118,0.013179127,0.024318159,,,,,,,1.50587509,2.773768518,3.860812986,7.87537378,,,,,,,660.9285798,657.330238,642.5268918,630.0906826,,,,,,,0.009544303,0.010709254,0.012887763,0.01805469,,,,,,,0.046821945,0.046977523,0.047490955,0.048258403,,,,,,,0.115984962,0.19155144,0.269458374,0.548235342,,,,,,,0.00439521,0.00718664,0.009827169,0.015332755,,,,,,,0.051760092,0.057475298,0.063001679,0.075105816,,,,,,,0.013506215,0.018593094,0.023584045,0.034444724,,,,,,,0.004480935,0.004456539,0.004356176,0.004271861,,,,,,,0.182307399,0.234064559,0.330645674,0.778905514,,,,,,,0.001425731,0.002415478,0.00351106,0.006158353,,,,,,,0.008580456,0.009897246,0.01287842,0.023935212,,,,,,,1.520187154,2.823674544,3.938045744,8.062777824,,,,,,,669.4980145,665.3971237,649.5069628,635.1941754,,,,,,,0.009667294,0.010849426,0.01305437,0.018279803,,,,,,,0.046958577,0.047112734,0.047621082,0.048378879,,,,,,,0.114792286,0.19103544,0.269268175,0.548475578,,,,,,,0.004299307,0.006985274,0.009437238,0.014347881,,,,,,,0.051791745,0.057215408,0.062233786,0.072768968,,,,,,,0.013301496,0.01813356,0.02268501,0.032172421,,,,,,,0.004539034,0.00451123,0.004403499,0.004306462,,,,,,,0.180513419,0.2322525,0.329290564,0.784558955,,,,,,,0.001633141,0.002810165,0.004186521,0.0076824,,,,,,,0.010251843,0.011149829,0.014272522,0.026229824,,,,,,,1.599723076,2.913398038,4.063653509,8.288398684,,,,,,,666.3757446,662.8527842,648.0437187,635.8805054,,,,,,,0.009783509,0.010969454,0.013183484,0.018430433,,,,,,,0.047018166,0.047172499,0.047681249,0.048440328,,,,,,,0.128643062,0.211642511,0.296838906,0.601789367,,,,,,,0.004527079,0.007411413,0.010147298,0.015906674,,,,,,,0.054039037,0.059977922,0.065762941,0.078553692,,,,,,,0.01402088,0.01930146,0.024507805,0.035954943,,,,,,,0.004450632,0.004427172,0.004328371,0.004247388,,,,,,,0.190904989,0.245530437,0.346631437,0.808022092,,,,,,,0.001383738,0.002337717,0.003375844,0.005880125,,,,,,,0.008997716,0.010467927,0.013779743,0.025890167,,,,,,,1.506746267,2.789065838,3.91523122,8.079086378,,,,,,,656.7974342,653.1568111,638.0878114,625.2163418,,,,,,,0.009949459,0.011159858,0.013407367,0.018726126,,,,,,,0.04723211,0.047381969,0.047875218,0.048607177,,,,,,,0.120878209,0.201577641,0.284641117,0.580336338,,,,,,,0.004249051,0.006895572,0.009278616,0.014041411,,,,,,,0.05348284,0.058808022,0.063649492,0.073793152,,,,,,,0.013428024,0.018175694,0.022579383,0.031732807,,,,,,,0.004118268,0.004095481,0.004001013,0.003920406,,,,,,,0.170799229,0.227338906,0.332475444,0.811345372,, +Commercial truck,E15,2030,,,,,,0.00197546,0.003451853,0.005266284,0.01010246,,,,,,,0.013202582,0.013239179,0.016547425,0.027169444,,,,,,,1.52621892,2.651912807,3.744141626,6.260746418,,,,,,,653.890259,650.9972677,637.1116206,620.3055637,,,,,,,0.009702935,0.010855594,0.013093632,0.018110204,,,,,,,0.046905671,0.047065898,0.047602323,0.048450839,,,,,,,0.117607744,0.193056981,0.275083337,0.447701127,,,,,,,0.004907302,0.008110182,0.011262286,0.018293773,,,,,,,0.052925723,0.059662655,0.06650211,0.082574497,,,,,,,0.014604729,0.020602673,0.026780546,0.041200982,,,,,,,0.004433217,0.004413603,0.004319462,0.004205521,,,,,,,0.173772695,0.230639862,0.33687687,0.755114592,,,,,,,0.001852209,0.003217197,0.004863587,0.009198214,,,,,,,0.011856001,0.012181156,0.015389846,0.02542247,,,,,,,1.487151283,2.62284438,3.708881954,6.20839095,,,,,,,661.5425035,658.2975274,643.6541235,625.3549115,,,,,,,0.009703719,0.010847312,0.013073054,0.018065701,,,,,,,0.04688222,0.047044287,0.047587052,0.048447682,,,,,,,0.115246964,0.189738796,0.270540431,0.440823759,,,,,,,0.004794103,0.007893306,0.010887914,0.017444423,,,,,,,0.053662252,0.060131906,0.066585922,0.081451571,,,,,,,0.0144664,0.020219685,0.026029815,0.039339914,,,,,,,0.004485098,0.004463097,0.004363819,0.004239754,,,,,,,0.174503772,0.228569719,0.33010147,0.740317189,,,,,,,0.001902396,0.003327965,0.00508554,0.009766108,,,,,,,0.012523903,0.012618337,0.015803055,0.025882136,,,,,,,1.55302691,2.721178031,3.836962799,6.40536565,,,,,,,665.7537142,662.7061879,648.4615099,631.2251585,,,,,,,0.010096239,0.011261376,0.013512709,0.01854499,,,,,,,0.047223631,0.04737245,0.047869634,0.048651923,,,,,,,0.114090722,0.18790656,0.267934328,0.437170755,,,,,,,0.00469569,0.007770836,0.010822345,0.017656127,,,,,,,0.057511189,0.063987191,0.070614065,0.086227421,,,,,,,0.014864319,0.020629145,0.026611214,0.040612115,,,,,,,0.004513649,0.004492986,0.004396412,0.004279553,,,,,,,0.185215863,0.240377547,0.343164112,0.761826163,,,,,,,0.001990067,0.003487799,0.005344712,0.010362421,,,,,,,0.013213494,0.013097032,0.016326936,0.026773046,,,,,,,1.599128353,2.777666146,3.914589496,6.540684603,,,,,,,655.4883595,652.4403122,638.354702,621.0327114,,,,,,,0.009349118,0.010471824,0.012664386,0.017594273,,,,,,,0.046567084,0.046734121,0.047294626,0.048186798,,,,,,,0.116304789,0.191093166,0.272489391,0.444197349,,,,,,,0.004849614,0.008031601,0.011194877,0.018366494,,,,,,,0.050175736,0.056897235,0.063798903,0.08027961,,,,,,,0.014190313,0.020173418,0.026402669,0.041179705,,,,,,,0.004444052,0.004423387,0.00432789,0.004210451,,,,,,,0.191392539,0.246456535,0.348326207,0.758047061,,,,,,,0.001498991,0.00255499,0.003744703,0.006719976,,,,,,,0.008771668,0.009915954,0.012986812,0.021798966,,,,,,,1.408085326,2.593494741,3.679553008,6.166840908,,,,,,,673.6278132,669.4017244,652.8229544,630.8156438,,,,,,,0.010006903,0.011165837,0.013408291,0.018424126,,,,,,,0.047142103,0.047292904,0.047797062,0.048591423,,,,,,,0.10333,0.174169148,0.250293358,0.41083087,,,,,,,0.004366167,0.007121566,0.009658996,0.014907148,,,,,,,0.055785302,0.061381336,0.066621129,0.077994728,,,,,,,0.013940484,0.018925931,0.023677826,0.033923475,,,,,,,0.004567033,0.004538381,0.004425981,0.004276776,,,,,,,0.183845158,0.235405526,0.332438852,0.748527513,,,,,,,0.001557291,0.002668252,0.003948018,0.007203569,,,,,,,0.00919109,0.010093925,0.013104435,0.021934355,,,,,,,1.420913366,2.589557458,3.673527454,6.158873058,,,,,,,664.0783264,660.1789416,644.3634626,623.5537065,,,,,,,0.009567317,0.010697691,0.012900463,0.017845749,,,,,,,0.046738364,0.046900045,0.04744194,0.048302345,,,,,,,0.106770971,0.178294109,0.255490347,0.418230525,,,,,,,0.004404828,0.0072015,0.009813094,0.015301186,,,,,,,0.051799641,0.057520097,0.062979906,0.0750337,,,,,,,0.013524694,0.018617401,0.023555115,0.03438959,,,,,,,0.004502289,0.004475853,0.004368627,0.004227543,,,,,,,0.182212806,0.23239466,0.32686787,0.730282647,,,,,,,0.00142736,0.002415866,0.003494616,0.006159239,,,,,,,0.008529022,0.009725944,0.012767094,0.021504483,,,,,,,1.433097843,2.634589056,3.744985259,6.295673211,,,,,,,672.7379904,668.3351379,651.3936474,628.5818567,,,,,,,0.009691683,0.010838728,0.013068109,0.018067006,,,,,,,0.046875623,0.047035863,0.047572525,0.048422304,,,,,,,0.10556865,0.177742379,0.255161402,0.417863706,,,,,,,0.004309289,0.007001982,0.009414877,0.014325626,,,,,,,0.051834122,0.057266442,0.062196347,0.07271838,,,,,,,0.01332089,0.01816193,0.022641334,0.032137081,,,,,,,0.004561,0.00453115,0.004416291,0.004261632,,,,,,,0.180371356,0.230460571,0.325206974,0.732420295,,,,,,,0.001635441,0.002809976,0.00417642,0.007668252,,,,,,,0.010231476,0.010996957,0.014193862,0.023735269,,,,,,,1.515855052,2.730529186,3.880479947,6.529399855,,,,,,,669.5753217,665.7433382,649.905727,629.2630236,,,,,,,0.009807455,0.010958245,0.01319691,0.018216589,,,,,,,0.046935298,0.047095701,0.047632708,0.048483745,,,,,,,0.118475593,0.197025308,0.281560563,0.459016878,,,,,,,0.004539273,0.007429541,0.010142511,0.015862253,,,,,,,0.054080948,0.060026355,0.065757672,0.078454709,,,,,,,0.01404345,0.01933084,0.024494667,0.035874966,,,,,,,0.004472005,0.004446479,0.004340809,0.004203184,,,,,,,0.190929319,0.243873604,0.34324134,0.757916557,,,,,,,0.001387481,0.002341278,0.003378003,0.005864352,,,,,,,0.008954565,0.010302034,0.013679423,0.02322127,,,,,,,1.429046154,2.618386099,3.749267937,6.366738434,,,,,,,659.994256,656.0495056,639.9433689,618.6747646,,,,,,,0.009976203,0.011150704,0.013422923,0.018506194,,,,,,,0.047151314,0.04730715,0.047828139,0.048649089,,,,,,,0.111332581,0.187783795,0.270336527,0.442839111,,,,,,,0.004264509,0.006919738,0.009295318,0.013988861,,,,,,,0.053538258,0.058876239,0.063695099,0.073675912,,,,,,,0.013457486,0.018217927,0.022608356,0.031639171,,,,,,,0.004138329,0.004113633,0.004012656,0.00387938,,,,,,,0.170990887,0.22572853,0.329904025,0.756741074, +Commercial truck,E15,2035,,,,,,,0.001974373,0.003438662,0.005278545,0.010126801,,,,,,,0.013242452,0.013293203,0.016572631,0.026274778,,,,,,,1.524032003,2.644127077,3.744628104,5.708968339,,,,,,,654.4586914,651.8254259,637.6838871,619.6272397,,,,,,,0.009704912,0.010867705,0.013094785,0.018099286,,,,,,,0.046889908,0.047044042,0.047586749,0.048439957,,,,,,,0.117536761,0.192682654,0.275093576,0.396664032,,,,,,,0.004908917,0.008089155,0.011287818,0.018337477,,,,,,,0.052932482,0.059622654,0.066560806,0.082673089,,,,,,,0.014606994,0.020562165,0.026828837,0.041285652,,,,,,,0.004437071,0.004419218,0.004323342,0.004200922,,,,,,,0.173799955,0.2303516,0.337370412,0.739828296,,,,,,,0.00185134,0.003205178,0.00487487,0.009220406,,,,,,,0.011890979,0.012232597,0.015409824,0.024531371,,,,,,,1.484862888,2.61374582,3.709914638,5.642120565,,,,,,,662.1202363,659.1362335,644.2357599,624.6847534,,,,,,,0.009705482,0.010859012,0.013073944,0.018054615,,,,,,,0.046866303,0.047022233,0.047571316,0.048436652,,,,,,,0.115176691,0.189365479,0.270543937,0.389979696,,,,,,,0.004795899,0.007873245,0.010912533,0.017486157,,,,,,,0.053668531,0.060093227,0.066641228,0.081544225,,,,,,,0.014468981,0.020181383,0.026075835,0.039419835,,,,,,,0.004489013,0.004468783,0.004367761,0.004235211,,,,,,,0.174510611,0.228048682,0.33073274,0.724884356,,,,,,,0.001901282,0.003315529,0.005096945,0.009788477,,,,,,,0.01256637,0.012694965,0.015813228,0.024979534,,,,,,,1.550573982,2.710484939,3.839273827,5.819648706,,,,,,,666.3326458,663.5477824,649.0418892,630.5211542,,,,,,,0.010098552,0.011274166,0.013514359,0.018534488,,,,,,,0.047208976,0.047352128,0.047855241,0.048641902,,,,,,,0.114022313,0.187525588,0.267976357,0.386477687,,,,,,,0.004696666,0.007749384,0.010846352,0.017697416,,,,,,,0.057516577,0.063946742,0.070669121,0.086319899,,,,,,,0.014865562,0.020588548,0.026656486,0.040691546,,,,,,,0.004517572,0.004498693,0.004400347,0.00427478,,,,,,,0.185109093,0.239308119,0.343982841,0.746937912,,,,,,,0.001988165,0.003468082,0.005361305,0.010398013,,,,,,,0.013256288,0.013170757,0.016338622,0.025895093,,,,,,,1.596041076,2.762762232,3.918742311,5.968426583,,,,,,,656.0534439,653.2639185,638.9261597,620.3674944,,,,,,,0.009350661,0.010482971,0.012664943,0.01758301,,,,,,,0.046550675,0.046711377,0.047278366,0.048175341,,,,,,,0.116216648,0.190615918,0.272542569,0.393671686,,,,,,,0.00484977,0.00800014,0.011226387,0.018424292,,,,,,,0.050179142,0.056833674,0.06387137,0.080411889,,,,,,,0.014189735,0.020112223,0.026463236,0.041294231,,,,,,,0.004447883,0.004428971,0.004331765,0.004205941,,,,,,,0.191122892,0.244674452,0.349397798,0.743804003,,,,,,,0.00149864,0.002546187,0.003753415,0.006736739,,,,,,,0.008795497,0.009959714,0.012998443,0.020879853,,,,,,,1.405564646,2.580899796,3.68246933,5.544730059,,,,,,,674.226121,670.2597915,653.4198778,630.1488432,,,,,,,0.010009106,0.011178396,0.013409786,0.018413524,,,,,,,0.047127231,0.047272335,0.047782431,0.048581246,,,,,,,0.103270726,0.173835088,0.250298172,0.361502572,,,,,,,0.004368065,0.007104722,0.009679858,0.01494213,,,,,,,0.055792774,0.061351751,0.066668316,0.078071509,,,,,,,0.013943692,0.018895044,0.023716256,0.033989071,,,,,,,0.004571089,0.004544199,0.004430029,0.004272256,,,,,,,0.183757476,0.233881217,0.333650592,0.731678222,,,,,,,0.001556813,0.00265891,0.003956922,0.007220731,,,,,,,0.009217238,0.010144227,0.013112283,0.021049065,,,,,,,1.418293531,2.576814129,3.676253318,5.558209217,,,,,,,664.6603924,661.017108,644.948249,622.9035026,,,,,,,0.009568988,0.010709119,0.012901217,0.017834656,,,,,,,0.046722494,0.046878036,0.047426237,0.048291311,,,,,,,0.106702569,0.17792943,0.255484457,0.368812048,,,,,,,0.004406628,0.007183813,0.009834433,0.015336969,,,,,,,0.051806507,0.057488142,0.06302779,0.075111964,,,,,,,0.013527613,0.018584782,0.023594369,0.03445666,,,,,,,0.004506236,0.004481536,0.004372593,0.004223134,,,,,,,0.182101618,0.230821899,0.328027967,0.714548907,,,,,,,0.001426789,0.002403781,0.003505781,0.006181549,,,,,,,0.008549267,0.0097537,0.012786529,0.020614427,,,,,,,1.430378505,2.62094428,3.748137537,5.675758055,,,,,,,673.3391456,669.1962901,651.9958777,627.9366552,,,,,,,0.009693565,0.010850652,0.013069156,0.01805602,,,,,,,0.046859848,0.047014037,0.047557005,0.048411372,,,,,,,0.105496706,0.177323074,0.255198375,0.368172821,,,,,,,0.004310669,0.006977274,0.009441662,0.014371372,,,,,,,0.051840614,0.057220939,0.062255784,0.072818171,,,,,,,0.013323192,0.0181169,0.022690489,0.032223016,,,,,,,0.004565076,0.004536987,0.004420374,0.004257258,,,,,,,0.180314592,0.228992459,0.326433947,0.715629095,,,,,,,0.001635208,0.002802458,0.004184469,0.007683355,,,,,,,0.010260475,0.011043792,0.014209756,0.022822165,,,,,,,1.51346634,2.72079253,3.881520257,5.911956101,,,,,,,670.1659431,666.5943579,650.4986796,628.6026085,,,,,,,0.009809251,0.01097005,0.01319785,0.018205501,,,,,,,0.046919549,0.047073858,0.047617157,0.048472862,,,,,,,0.118411662,0.196709656,0.28150071,0.404636326,,,,,,,0.004542069,0.007417928,0.010161298,0.015892821,,,,,,,0.054089194,0.060005431,0.065800078,0.078522132,,,,,,,0.01404798,0.019308534,0.024529458,0.035932702,,,,,,,0.00447595,0.004452164,0.00434477,0.004198772,,,,,,,0.190939182,0.242922794,0.344201027,0.741483195,,,,,,,0.001388285,0.002341011,0.003381218,0.005868346,,,,,,,0.008977641,0.010337015,0.013698824,0.022244672,,,,,,,1.427417641,2.614378891,3.747429625,5.761668372,,,,,,,660.586642,656.8994852,640.5350531,618.0249983,,,,,,,0.009978466,0.011163476,0.013424469,0.018495466,,,,,,,0.047135966,0.047285895,0.04781305,0.048638544,,,,,,,0.111290378,0.187619722,0.270202214,0.39026886,,,,,,,0.004269241,0.0069222,0.009305783,0.014002445,,,,,,,0.053551978,0.058887137,0.063720531,0.073705772,,,,,,,0.013465886,0.01822242,0.022627189,0.031663063,,,,,,,0.004142046,0.004118966,0.00401637,0.003875308,,,,,,,0.171227203,0.225909188,0.330387507,0.738406632 +Commercial truck,E15,2040,,,,,,,,0.001966465,0.00344635,0.005294737,,,,,,,,0.013295541,0.013302493,0.01661752,,,,,,,,1.519382317,2.641420869,3.742192877,,,,,,,,655.3470274,653.2469543,639.046132,,,,,,,,0.009713838,0.01086245,0.013097635,,,,,,,,0.046866379,0.047005238,0.047549961,,,,,,,,0.117356535,0.192504098,0.274923347,,,,,,,,0.004895542,0.008113413,0.011326437,,,,,,,,0.052910432,0.059682437,0.066651788,,,,,,,,0.014581953,0.020605916,0.026900677,,,,,,,,0.004443093,0.004428855,0.004332577,,,,,,,,0.173434384,0.231058614,0.338183698,,,,,,,,0.001844106,0.003212526,0.00488989,,,,,,,,0.011939507,0.012237522,0.015446451,,,,,,,,1.479486537,2.611360169,3.70791783,,,,,,,,663.0198743,660.5790946,645.6190501,,,,,,,,0.009714021,0.010853258,0.013076139,,,,,,,,0.046842556,0.046983027,0.047534107,,,,,,,,0.114998128,0.189181123,0.270361208,,,,,,,,0.00478307,0.007897142,0.010950013,,,,,,,,0.053646491,0.060149603,0.066726909,,,,,,,,0.014445101,0.020224,0.026144734,,,,,,,,0.004495115,0.004478566,0.00437714,,,,,,,,0.173880734,0.228968272,0.331744659,,,,,,,,0.001893749,0.003322578,0.005111999,,,,,,,,0.01263965,0.012694161,0.015840468,,,,,,,,1.544484717,2.709157444,3.839011027,,,,,,,,667.2363382,664.9939372,650.4225922,,,,,,,,0.010108069,0.011269754,0.013518379,,,,,,,,0.047187073,0.04731608,0.047821153,,,,,,,,0.113836301,0.187383088,0.267863431,,,,,,,,0.004682937,0.007771528,0.010881996,,,,,,,,0.057493829,0.06400167,0.070753307,,,,,,,,0.014840233,0.020628504,0.026722839,,,,,,,,0.0045237,0.004508497,0.004409707,,,,,,,,0.183812778,0.240545827,0.345278094,,,,,,,,0.001976671,0.003477945,0.005382213,,,,,,,,0.013326659,0.013168752,0.016366144,,,,,,,,1.587564373,2.762166403,3.920030686,,,,,,,,656.9366001,654.6784882,640.2859208,,,,,,,,0.009358755,0.01047677,0.012666355,,,,,,,,0.046526226,0.046670981,0.047239881,,,,,,,,0.115973683,0.190447479,0.272402483,,,,,,,,0.004830335,0.008027403,0.011271225,,,,,,,,0.050143496,0.056900011,0.063976654,,,,,,,,0.014152835,0.020162059,0.026547963,,,,,,,,0.00445387,0.004438561,0.004340982,,,,,,,,0.189123903,0.246156811,0.350981405,,,,,,,,0.001493273,0.00255258,0.003765424,,,,,,,,0.008831042,0.009958881,0.013022371,,,,,,,,1.39825069,2.57986359,3.682479655,,,,,,,,675.1494057,671.7480419,654.8380787,,,,,,,,0.010018419,0.011173725,0.013413449,,,,,,,,0.047105085,0.047235777,0.047747865,,,,,,,,0.10311535,0.173669844,0.250138893,,,,,,,,0.004357107,0.00712587,0.009711998,,,,,,,,0.05577649,0.061404098,0.066743613,,,,,,,,0.013924184,0.018932976,0.023774941,,,,,,,,0.004577349,0.004554288,0.004439643,,,,,,,,0.182042223,0.235604286,0.33548913,,,,,,,,0.001551117,0.002665164,0.003968987,,,,,,,,0.009260004,0.010139761,0.013131003,,,,,,,,1.410926025,2.575441726,3.675822848,,,,,,,,665.5604815,662.4672883,646.3375748,,,,,,,,0.009577318,0.010703221,0.012903118,,,,,,,,0.046698797,0.046838905,0.047389055,,,,,,,,0.106528703,0.177739051,0.255289405,,,,,,,,0.00439515,0.007205092,0.009867057,,,,,,,,0.051788517,0.057539718,0.063103188,,,,,,,,0.013507009,0.018622685,0.023653718,,,,,,,,0.004512338,0.004491367,0.004382011,,,,,,,,0.180323801,0.232482498,0.329768923,,,,,,,,0.001419585,0.002412099,0.003520835,,,,,,,,0.008571878,0.009757383,0.012818473,,,,,,,,1.422405249,2.619802717,3.748136639,,,,,,,,674.2649519,670.6919167,653.4239329,,,,,,,,0.009702322,0.010845202,0.013071723,,,,,,,,0.046836342,0.04697527,0.047520156,,,,,,,,0.105294559,0.177161656,0.255056603,,,,,,,,0.004294998,0.007003549,0.009481541,,,,,,,,0.051814918,0.05728378,0.062346907,,,,,,,,0.013295317,0.018163992,0.022763087,,,,,,,,0.004571353,0.004547127,0.004430055,,,,,,,,0.178740429,0.230653101,0.32827044,,,,,,,,0.001630587,0.002808205,0.004195739,,,,,,,,0.01030011,0.011046261,0.014240137,,,,,,,,1.507640385,2.71815261,3.879234711,,,,,,,,671.0799465,668.0661099,651.9072726,,,,,,,,0.009817877,0.010964333,0.013200169,,,,,,,,0.046896014,0.047035056,0.047580347,,,,,,,,0.118269551,0.196473125,0.281228762,,,,,,,,0.004534344,0.007437994,0.010191732,,,,,,,,0.05407762,0.060053336,0.065870003,,,,,,,,0.014033656,0.019344141,0.024584879,,,,,,,,0.004482056,0.004461996,0.00435418,,,,,,,,0.189840036,0.244320832,0.34565026,,,,,,,,0.001387846,0.002344486,0.003387121,,,,,,,,0.009003425,0.010342767,0.013733291,,,,,,,,1.424637036,2.61007602,3.742268002,,,,,,,,661.5007289,658.3726144,641.939439,,,,,,,,0.009987951,0.011158813,0.013428251,,,,,,,,0.047113078,0.047248121,0.047777326,,,,,,,,0.111232411,0.187354419,0.269866321,,,,,,,,0.004270026,0.006937606,0.009327043,,,,,,,,0.053560334,0.058928459,0.063773306,,,,,,,,0.013467713,0.018249822,0.022665232,,,,,,,,0.004147783,0.004128211,0.004025183,,,,,,,,0.171316241,0.226735996,0.331300117 +Commercial truck,E15,2045,,,,,,,,,0.001970891,0.003455731,,,,,,,,,0.013300252,0.013308988,,,,,,,,,1.522699089,2.647920305,,,,,,,,,654.5640959,652.474136,,,,,,,,,0.009720603,0.010871904,,,,,,,,,0.046887837,0.047026691,,,,,,,,,0.117488545,0.192841055,,,,,,,,,0.004900876,0.008124048,,,,,,,,,0.052916613,0.059701863,,,,,,,,,0.014592467,0.02062814,,,,,,,,,0.004437785,0.004423616,,,,,,,,,0.173559892,0.231307674,,,,,,,,,0.001848074,0.003220896,,,,,,,,,0.011943202,0.012242093,,,,,,,,,1.483082574,2.618473275,,,,,,,,,662.2253453,659.7937274,,,,,,,,,0.009720991,0.010862919,,,,,,,,,0.046864233,0.047004698,,,,,,,,,0.115127628,0.189514349,,,,,,,,,0.004788033,0.007906916,,,,,,,,,0.053653012,0.060168015,,,,,,,,,0.014454872,0.020244299,,,,,,,,,0.004489728,0.00447324,,,,,,,,,0.174101336,0.229315912,,,,,,,,,0.001898006,0.003331531,,,,,,,,,0.012633134,0.012686203,,,,,,,,,1.548422055,2.717152985,,,,,,,,,666.4391136,664.2073733,,,,,,,,,0.010114513,0.011278834,,,,,,,,,0.047207028,0.047336016,,,,,,,,,0.113967552,0.187716902,,,,,,,,,0.004688656,0.007782746,,,,,,,,,0.057500894,0.06402207,,,,,,,,,0.014851242,0.020651318,,,,,,,,,0.004518295,0.004503165,,,,,,,,,0.184315378,0.241189644,,,,,,,,,0.001982865,0.003491113,,,,,,,,,0.013324227,0.013164961,,,,,,,,,1.592759867,2.772694526,,,,,,,,,656.1583338,653.9092168,,,,,,,,,0.00936583,0.010486546,,,,,,,,,0.046548551,0.046693303,,,,,,,,,0.1161385,0.190844656,,,,,,,,,0.004838693,0.008044131,,,,,,,,,0.050156571,0.056933272,,,,,,,,,0.014169277,0.020196373,,,,,,,,,0.004448594,0.004433346,,,,,,,,,0.189943523,0.2472161,,,,,,,,,0.001495987,0.002558215,,,,,,,,,0.008832698,0.009959489,,,,,,,,,1.40254147,2.588552586,,,,,,,,,674.3283112,670.935622,,,,,,,,,0.010024953,0.011182906,,,,,,,,,0.047125282,0.047256008,,,,,,,,,0.103224684,0.173964303,,,,,,,,,0.004361015,0.00713327,,,,,,,,,0.055779241,0.06141527,,,,,,,,,0.013931281,0.018947475,,,,,,,,,0.004571782,0.00454878,,,,,,,,,0.182677621,0.236427932,,,,,,,,,0.001554099,0.002671352,,,,,,,,,0.009259966,0.010138202,,,,,,,,,1.415334351,2.584349815,,,,,,,,,664.7617549,661.6764328,,,,,,,,,0.009584297,0.010712888,,,,,,,,,0.046720398,0.046860555,,,,,,,,,0.106652254,0.17805891,,,,,,,,,0.004399418,0.007213198,,,,,,,,,0.051792621,0.057553056,,,,,,,,,0.013514919,0.018638732,,,,,,,,,0.004506922,0.004486006,,,,,,,,,0.181002077,0.233343851,,,,,,,,,0.00142301,0.002419221,,,,,,,,,0.008579134,0.009766226,,,,,,,,,1.427074607,2.629215868,,,,,,,,,673.4413362,669.8746256,,,,,,,,,0.00970917,0.010854721,,,,,,,,,0.046857815,0.046996679,,,,,,,,,0.105428068,0.177506727,,,,,,,,,0.00430082,0.007014727,,,,,,,,,0.05182147,0.05730241,,,,,,,,,0.013305774,0.018185184,,,,,,,,,0.004565769,0.004541586,,,,,,,,,0.179315397,0.231452946,,,,,,,,,0.0016331,0.002813506,,,,,,,,,0.010303946,0.011049489,,,,,,,,,1.511438349,2.725651966,,,,,,,,,670.2691355,667.263782,,,,,,,,,0.009824858,0.01097402,,,,,,,,,0.046917451,0.047056515,,,,,,,,,0.118380851,0.19677541,,,,,,,,,0.004536771,0.007442674,,,,,,,,,0.054078931,0.060060836,,,,,,,,,0.014038565,0.019354519,,,,,,,,,0.00447664,0.004456636,,,,,,,,,0.190230021,0.244835725,,,,,,,,,0.001388083,0.002345028,,,,,,,,,0.009010113,0.010349477,,,,,,,,,1.426908954,2.614346443,,,,,,,,,660.6883425,657.5683133,,,,,,,,,0.009994537,0.011168072,,,,,,,,,0.047133961,0.047269,,,,,,,,,0.111299411,0.187565737,,,,,,,,,0.004268111,0.006933737,,,,,,,,,0.053550578,0.058915609,,,,,,,,,0.013464156,0.018243513,,,,,,,,,0.004142686,0.004123164,,,,,,,,,0.171162911,0.226655791 +Commercial truck,E15,2050,,,,,,,,,,0.001976124,,,,,,,,,,0.01330478,,,,,,,,,,1.524508761,,,,,,,,,,654.6213613,,,,,,,,,,0.009724408,,,,,,,,,,0.046886455,,,,,,,,,,0.117592032,,,,,,,,,,0.0049107,,,,,,,,,,0.052938156,,,,,,,,,,0.014611208,,,,,,,,,,0.004438173,,,,,,,,,,0.174011878,,,,,,,,,,0.00185287,,,,,,,,,,0.011945387,,,,,,,,,,1.485176497,,,,,,,,,,662.282936,,,,,,,,,,0.00972475,,,,,,,,,,0.046862845,,,,,,,,,,0.11522727,,,,,,,,,,0.004797472,,,,,,,,,,0.05367343,,,,,,,,,,0.014472675,,,,,,,,,,0.004490118,,,,,,,,,,0.174720179,,,,,,,,,,0.001902962,,,,,,,,,,0.012625457,,,,,,,,,,1.55099873,,,,,,,,,,666.4975423,,,,,,,,,,0.010118401,,,,,,,,,,0.047205759,,,,,,,,,,0.114077729,,,,,,,,,,0.00469827,,,,,,,,,,0.057521802,,,,,,,,,,0.014869441,,,,,,,,,,0.004518691,,,,,,,,,,0.185325256,,,,,,,,,,0.001989942,,,,,,,,,,0.013319136,,,,,,,,,,1.5964421,,,,,,,,,,656.2149954,,,,,,,,,,0.009369491,,,,,,,,,,0.04654711,,,,,,,,,,0.116268006,,,,,,,,,,0.00485154,,,,,,,,,,0.050184806,,,,,,,,,,0.014193952,,,,,,,,,,0.004448978,,,,,,,,,,0.19133594,,,,,,,,,,0.001499575,,,,,,,,,,0.00883142,,,,,,,,,,1.405473606,,,,,,,,,,674.386087,,,,,,,,,,0.010028812,,,,,,,,,,0.047124,,,,,,,,,,0.10330836,,,,,,,,,,0.004368958,,,,,,,,,,0.055796128,,,,,,,,,,0.013945905,,,,,,,,,,0.004572173,,,,,,,,,,0.183974684,,,,,,,,,,0.001557862,,,,,,,,,,0.009256038,,,,,,,,,,1.418266167,,,,,,,,,,664.8181532,,,,,,,,,,0.009587999,,,,,,,,,,0.046719015,,,,,,,,,,0.106741734,,,,,,,,,,0.004407659,,,,,,,,,,0.051810102,,,,,,,,,,0.013530114,,,,,,,,,,0.004507305,,,,,,,,,,0.182311232,,,,,,,,,,0.001427602,,,,,,,,,,0.008583415,,,,,,,,,,1.430271395,,,,,,,,,,673.4982219,,,,,,,,,,0.00971294,,,,,,,,,,0.046856404,,,,,,,,,,0.105531403,,,,,,,,,,0.004311513,,,,,,,,,,0.051843774,,,,,,,,,,0.013325234,,,,,,,,,,0.004566155,,,,,,,,,,0.18052884,,,,,,,,,,0.001636388,,,,,,,,,,0.010305683,,,,,,,,,,1.513635159,,,,,,,,,,670.3267944,,,,,,,,,,0.009828643,,,,,,,,,,0.046916089,,,,,,,,,,0.118455482,,,,,,,,,,0.004543299,,,,,,,,,,0.054093119,,,,,,,,,,0.014050868,,,,,,,,,,0.004477026,,,,,,,,,,0.191162886,,,,,,,,,,0.001389087,,,,,,,,,,0.009015054,,,,,,,,,,1.427601934,,,,,,,,,,660.7454173,,,,,,,,,,0.009998444,,,,,,,,,,0.04713262,,,,,,,,,,0.111331184,,,,,,,,,,0.004270175,,,,,,,,,,0.053555361,,,,,,,,,,0.013468064,,,,,,,,,,0.004143043,,,,,,,,,,0.171447181 +Heavy duty long haul truck,B0,1990,1.71412234,,,,,,,,,,0.006570652,,,,,,,,,,7.327851744,,,,,,,,,,1943.587368,,,,,,,,,,0.002113486,,,,,,,,,,0.032657611,,,,,,,,,,38.66894414,,,,,,,,,,0.567294859,,,,,,,,,,2.889128722,,,,,,,,,,2.549809134,,,,,,,,,,0.148124932,,,,,,,,,,2.559335908,,,,,,,,,,1.722646309,,,,,,,,,,0.008042022,,,,,,,,,,7.694571408,,,,,,,,,,2002.592536,,,,,,,,,,0.00209757,,,,,,,,,,0.035533209,,,,,,,,,,39.09770914,,,,,,,,,,0.574279757,,,,,,,,,,2.909254953,,,,,,,,,,2.569174875,,,,,,,,,,0.152621849,,,,,,,,,,3.117705197,,,,,,,,,,1.728973338,,,,,,,,,,0.006529226,,,,,,,,,,7.490608001,,,,,,,,,,1971.083932,,,,,,,,,,0.002263545,,,,,,,,,,0.032662595,,,,,,,,,,38.80555892,,,,,,,,,,0.597497892,,,,,,,,,,2.970348799,,,,,,,,,,2.610258781,,,,,,,,,,0.150220511,,,,,,,,,,2.54558087,,,,,,,,,,1.707715571,,,,,,,,,,0.007894505,,,,,,,,,,7.542799126,,,,,,,,,,1986.754572,,,,,,,,,,0.002006657,,,,,,,,,,0.035215766,,,,,,,,,,38.39878264,,,,,,,,,,0.556657963,,,,,,,,,,2.854015428,,,,,,,,,,2.527413303,,,,,,,,,,0.151414797,,,,,,,,,,3.060872464,,,,,,,,,,1.726429198,,,,,,,,,,0.006754349,,,,,,,,,,7.519071104,,,,,,,,,,1994.196357,,,,,,,,,,0.002230558,,,,,,,,,,0.033160639,,,,,,,,,,37.18511414,,,,,,,,,,0.593013245,,,,,,,,,,2.956872386,,,,,,,,,,2.600953851,,,,,,,,,,0.151981965,,,,,,,,,,2.631079338,,,,,,,,,,1.715986379,,,,,,,,,,0.008067393,,,,,,,,,,7.671512387,,,,,,,,,,2013.324324,,,,,,,,,,0.002073426,,,,,,,,,,0.03563589,,,,,,,,,,37.79290328,,,,,,,,,,0.571463402,,,,,,,,,,2.894362682,,,,,,,,,,2.5580879,,,,,,,,,,0.153439736,,,,,,,,,,3.127464693,,,,,,,,,,1.716419253,,,,,,,,,,0.007128914,,,,,,,,,,7.474497698,,,,,,,,,,1996.341145,,,,,,,,,,0.002108116,,,,,,,,,,0.033820906,,,,,,,,,,37.01619663,,,,,,,,,,0.570761895,,,,,,,,,,2.897015749,,,,,,,,,,2.557410572,,,,,,,,,,0.152145409,,,,,,,,,,2.771990305,,,,,,,,,,1.726476434,,,,,,,,,,0.008263593,,,,,,,,,,7.782115695,,,,,,,,,,2024.42622,,,,,,,,,,0.002120293,,,,,,,,,,0.036003873,,,,,,,,,,40.51757701,,,,,,,,,,0.580280141,,,,,,,,,,2.92567284,,,,,,,,,,2.582113398,,,,,,,,,,0.154285844,,,,,,,,,,3.202297453,,,,,,,,,,1.72240106,,,,,,,,,,0.005940445,,,,,,,,,,7.272521365,,,,,,,,,,1940.609415,,,,,,,,,,0.002194026,,,,,,,,,,0.031515546,,,,,,,,,,38.7457661,,,,,,,,,,0.577754571,,,,,,,,,,2.923686915,,,,,,,,,,2.573936792,,,,,,,,,,0.147897995,,,,,,,,,,2.321116462,,,,,,,,, +Heavy duty long haul truck,B0,1995,0.8280102,0.981477398,,,,,,,,,0.004637984,0.004885129,,,,,,,,,7.095489289,7.186903651,,,,,,,,,1888.255851,1889.989222,,,,,,,,,0.002011914,0.002121022,,,,,,,,,0.032154214,0.032143887,,,,,,,,,29.35663684,31.00264691,,,,,,,,,0.263690787,0.323243504,,,,,,,,,1.448965239,1.694932383,,,,,,,,,1.227497949,1.453588514,,,,,,,,,0.143908044,0.016620011,,,,,,,,,1.839949816,1.998489966,,,,,,,,,0.836648443,0.990211341,,,,,,,,,0.005302133,0.005687906,,,,,,,,,7.481041972,7.560933228,,,,,,,,,1945.668658,1947.340447,,,,,,,,,0.002001506,0.002106464,,,,,,,,,0.034887687,0.034874444,,,,,,,,,30.30286249,31.83361198,,,,,,,,,0.277052356,0.335420406,,,,,,,,,1.479619869,1.722707306,,,,,,,,,1.25641865,1.479857949,,,,,,,,,0.148283548,0.017124336,,,,,,,,,2.11456203,2.32760013,,,,,,,,,0.841377844,0.99470155,,,,,,,,,0.004677182,0.004906379,,,,,,,,,7.241513966,7.34252203,,,,,,,,,1918.589827,1919.508851,,,,,,,,,0.002155126,0.002272982,,,,,,,,,0.032162972,0.032152729,,,,,,,,,29.37475119,31.04455774,,,,,,,,,0.28118464,0.343442419,,,,,,,,,1.508077373,1.757443089,,,,,,,,,1.268090406,1.497272894,,,,,,,,,0.146219822,0.016879598,,,,,,,,,1.853681478,2.007927892,,,,,,,,,0.819936578,0.973724827,,,,,,,,,0.005201334,0.005583343,,,,,,,,,7.33656762,7.411282628,,,,,,,,,1933.344417,1934.176681,,,,,,,,,0.001914363,0.002013816,,,,,,,,,0.03458246,0.034569431,,,,,,,,,29.7259744,31.23093437,,,,,,,,,0.26485612,0.322086961,,,,,,,,,1.431216383,1.67330244,,,,,,,,,1.220700104,1.443239404,,,,,,,,,0.147344272,0.017008591,,,,,,,,,2.07474125,2.284809261,,,,,,,,,0.838588537,0.991989852,,,,,,,,,0.004765498,0.005006047,,,,,,,,,7.276333215,7.37331163,,,,,,,,,1952.740808,1950.793693,,,,,,,,,0.002124638,0.002239901,,,,,,,,,0.03263388,0.032623099,,,,,,,,,28.26211492,29.83627501,,,,,,,,,0.280003326,0.341600299,,,,,,,,,1.499704662,1.748060023,,,,,,,,,1.263356893,1.491615658,,,,,,,,,0.148822572,0.017154713,,,,,,,,,1.892227678,2.049655353,,,,,,,,,0.827682507,0.981412451,,,,,,,,,0.005304491,0.005688075,,,,,,,,,7.460270403,7.537858052,,,,,,,,,1964.748809,1964.161367,,,,,,,,,0.001978936,0.002081942,,,,,,,,,0.034982025,0.034968565,,,,,,,,,29.31064955,30.78035379,,,,,,,,,0.274848449,0.333137126,,,,,,,,,1.463275523,1.706478401,,,,,,,,,1.243926363,1.467476578,,,,,,,,,0.14973771,0.01727226,,,,,,,,,2.116924994,2.328409263,,,,,,,,,0.829662052,0.983205072,,,,,,,,,0.004888885,0.005176768,,,,,,,,,7.249207833,7.335991882,,,,,,,,,1958.346998,1955.669026,,,,,,,,,0.002008771,0.002116206,,,,,,,,,0.033258564,0.033247046,,,,,,,,,28.33475517,29.85896783,,,,,,,,,0.269222271,0.32841793,,,,,,,,,1.459548273,1.704576381,,,,,,,,,1.237530206,1.462755388,,,,,,,,,0.149249793,0.017197582,,,,,,,,,1.945661248,2.119522131,,,,,,,,,0.840283249,0.993838237,,,,,,,,,0.005410806,0.005810729,,,,,,,,,7.568245182,7.648412665,,,,,,,,,1972.652664,1972.96842,,,,,,,,,0.002023522,0.002129802,,,,,,,,,0.035335331,0.035321607,,,,,,,,,31.49444434,33.06095889,,,,,,,,,0.282063104,0.340673115,,,,,,,,,1.494257414,1.737420393,,,,,,,,,1.267768846,1.491272048,,,,,,,,,0.150340089,0.017349709,,,,,,,,,2.159696644,2.378468217,,,,,,,,,0.83791327,0.991139662,,,,,,,,,0.004379766,0.004546855,,,,,,,,,7.025300653,7.126667368,,,,,,,,,1891.715387,1891.986334,,,,,,,,,0.002086338,0.002202081,,,,,,,,,0.031074944,0.03106594,,,,,,,,,29.1497451,30.86171524,,,,,,,,,0.266909848,0.32789563,,,,,,,,,1.473505906,1.721576554,,,,,,,,,1.242687539,1.470698312,,,,,,,,,0.144171631,0.01663757,,,,,,,,,1.732976525,1.860458925,,,,,,,, +Heavy duty long haul truck,B0,2000,0.607923237,0.604615641,0.647966502,,,,,,,,0.004030362,0.004024908,0.004074159,,,,,,,,7.206474973,7.255754095,7.326258838,,,,,,,,1923.423014,1927.632876,1930.642029,,,,,,,,0.002015503,0.002041717,0.002103916,,,,,,,,0.032502637,0.032541631,0.032558952,,,,,,,,24.18839218,24.00092192,25.01770447,,,,,,,,0.221532818,0.220777229,0.230204379,,,,,,,,1.147742928,1.132749276,1.193988356,,,,,,,,0.947715295,0.933795678,0.99031603,,,,,,,,0.146588157,0.016951033,0.016977499,,,,,,,,1.836711544,1.843878699,1.866335902,,,,,,,,0.615816631,0.61247523,0.655897994,,,,,,,,0.004740371,0.004724065,0.004760064,,,,,,,,7.608698934,7.658286505,7.725574438,,,,,,,,1981.788187,1985.892586,1988.706133,,,,,,,,0.002005505,0.002030578,0.002090041,,,,,,,,0.035334649,0.035384608,0.035406818,,,,,,,,25.1748058,24.99109013,25.99693729,,,,,,,,0.237181211,0.236473623,0.245602484,,,,,,,,1.181235327,1.16492818,1.225776736,,,,,,,,0.979342413,0.964224548,1.020388654,,,,,,,,0.151036344,0.017463358,0.0174881,,,,,,,,2.124291336,2.132256246,2.158171881,,,,,,,,0.620978363,0.617707201,0.66141672,,,,,,,,0.004036588,0.004033215,0.00408653,,,,,,,,7.350686127,7.402928904,7.47954173,,,,,,,,1956.198558,1960.441385,1963.13497,,,,,,,,0.002157463,0.002185689,0.002252976,,,,,,,,0.032508584,0.032547294,0.03256451,,,,,,,,24.14803271,23.96128508,24.99391639,,,,,,,,0.235815411,0.234974755,0.245071751,,,,,,,,1.202060453,1.186521911,1.249139515,,,,,,,,0.983440005,0.968996285,1.026811433,,,,,,,,0.149086065,0.017239545,0.017263235,,,,,,,,1.845871828,1.853118168,1.87587883,,,,,,,,0.603580341,0.600364768,0.64292044,,,,,,,,0.00465213,0.004636547,0.004673336,,,,,,,,7.464260053,7.511970506,7.575600803,,,,,,,,1970.939658,1974.949755,1977.347861,,,,,,,,0.001919505,0.001943362,0.001999676,,,,,,,,0.035021031,0.035070027,0.035091797,,,,,,,,24.72688039,24.54601464,25.52708791,,,,,,,,0.226743365,0.226081749,0.234853837,,,,,,,,1.140115969,1.124453643,1.183838482,,,,,,,,0.950573501,0.936059445,0.990859187,,,,,,,,0.150209518,0.017367135,0.017388219,,,,,,,,2.085268426,2.093366705,2.11938257,,,,,,,,0.619013753,0.615759599,0.659272636,,,,,,,,0.004148291,0.004139182,0.004179571,,,,,,,,7.388981111,7.440678716,7.5154551,,,,,,,,1994.789947,1998.578216,1999.71495,,,,,,,,0.002127304,0.002154895,0.002220608,,,,,,,,0.032998335,0.03303912,0.033057275,,,,,,,,23.28418967,23.10624067,24.08926273,,,,,,,,0.235676601,0.234860749,0.244776421,,,,,,,,1.196108591,1.180484437,1.242615922,,,,,,,,0.981045239,0.966529316,1.02389306,,,,,,,,0.152027167,0.017574912,0.017584906,,,,,,,,1.890234587,1.895960281,1.914872604,,,,,,,,0.610873485,0.607662175,0.650420588,,,,,,,,0.004752892,0.00473442,0.004764709,,,,,,,,7.589479606,7.638626181,7.704668069,,,,,,,,2004.946644,2008.783257,2010.439965,,,,,,,,0.001983343,0.002007968,0.002066285,,,,,,,,0.035434735,0.035485352,0.035507843,,,,,,,,24.38644565,24.20996644,25.17788338,,,,,,,,0.235575771,0.234881198,0.243916388,,,,,,,,1.17011898,1.1540032,1.213991653,,,,,,,,0.971729098,0.956790946,1.012159702,,,,,,,,0.152801236,0.017664647,0.017679222,,,,,,,,2.129012572,2.136199006,2.160011724,,,,,,,,0.610346206,0.607061345,0.650280292,,,,,,,,0.004307665,0.004294668,0.004329528,,,,,,,,7.367150864,7.416593533,7.485840527,,,,,,,,2001.072475,2004.633904,2005.285426,,,,,,,,0.002012534,0.002038287,0.002099386,,,,,,,,0.033647868,0.033691366,0.033710745,,,,,,,,23.43048298,23.25354534,24.21812502,,,,,,,,0.227972941,0.227235649,0.236552764,,,,,,,,1.160617985,1.145129316,1.206051475,,,,,,,,0.959891544,0.945521298,1.001751248,,,,,,,,0.152505999,0.017628165,0.017633892,,,,,,,,1.950148721,1.956111248,1.975889025,,,,,,,,0.619241537,0.615899013,0.659396852,,,,,,,,0.004854437,0.004835456,0.004866444,,,,,,,,7.698151968,7.748428334,7.816554332,,,,,,,,2011.139804,2015.047973,2017.134363,,,,,,,,0.002027134,0.00205248,0.002112687,,,,,,,,0.03579818,0.035849921,0.035872921,,,,,,,,26.19044475,26.0012975,27.04184556,,,,,,,,0.242042681,0.241329276,0.250517822,,,,,,,,1.195508726,1.178896664,1.239909788,,,,,,,,0.990303976,0.974904122,1.03122481,,,,,,,,0.153273271,0.017719742,0.017738092,,,,,,,,2.171767911,2.179292039,2.204264012,,,,,,,,0.614192955,0.610787539,0.654863053,,,,,,,,0.003748695,0.003744198,0.003788979,,,,,,,,7.127874863,7.17852949,7.253653891,,,,,,,,1928.335439,1932.328327,1934.603785,,,,,,,,0.002088861,0.002116672,0.002182875,,,,,,,,0.031379832,0.031413941,0.031429134,,,,,,,,23.89120226,23.70069925,24.7358082,,,,,,,,0.222247661,0.221432259,0.231285882,,,,,,,,1.16466249,1.149777488,1.212443569,,,,,,,,0.955636642,0.94180271,0.999647538,,,,,,,,0.146962563,0.016992331,0.017012341,,,,,,,,1.725278746,1.730217443,1.746389206,,,,,,, +Heavy duty long haul truck,B0,2005,0.406626977,0.51239107,0.513763408,0.556502891,,,,,,,0.005347063,0.003862371,0.003850611,0.003959141,,,,,,,3.49237869,4.798418115,4.780008402,5.719814577,,,,,,,1936.786555,1937.214553,1943.28903,1948.127224,,,,,,,0.002001951,0.002013783,0.002036007,0.002109947,,,,,,,0.032633984,0.032639504,0.032697112,0.032731688,,,,,,,14.93057025,14.59817822,14.48622539,17.99911264,,,,,,,0.163845845,0.197435682,0.197130173,0.206621285,,,,,,,0.837875609,0.995972243,0.997245913,1.058695264,,,,,,,0.663186333,0.808612747,0.809597541,0.865761337,,,,,,,0.147606617,0.017035297,0.017088715,0.01713126,,,,,,,1.308558614,1.627177712,1.62909311,1.717656313,,,,,,,0.413759612,0.519515006,0.520877079,0.563881957,,,,,,,0.006636536,0.004572511,0.004555406,0.004663342,,,,,,,3.895251866,5.196786719,5.179391915,6.119911584,,,,,,,1995.513714,1995.779136,2001.804897,2006.427723,,,,,,,0.001992093,0.002003446,0.002024621,0.002095473,,,,,,,0.035502918,0.035510016,0.035583806,0.035628079,,,,,,,15.93052199,15.59877929,15.49190445,19.00434252,,,,,,,0.178749313,0.212031091,0.211779394,0.221692064,,,,,,,0.869246027,1.025597197,1.026925501,1.089313145,,,,,,,0.692888126,0.836709977,0.837759602,0.894797988,,,,,,,0.152082355,0.017550301,0.017603294,0.017643942,,,,,,,1.597014279,1.914958053,1.918107118,2.008148139,,,,,,,0.415516273,0.523874073,0.525368012,0.568933018,,,,,,,0.005332901,0.0039018,0.003891503,0.003990632,,,,,,,3.536793562,4.888028068,4.870420777,5.836724953,,,,,,,1970.180519,1970.511274,1976.657677,1981.407634,,,,,,,0.002142379,0.002155164,0.002179027,0.002258968,,,,,,,0.032639087,0.03264458,0.032701861,0.032736279,,,,,,,14.939124,14.60922037,14.49919683,18.00049331,,,,,,,0.173372133,0.209954168,0.209621035,0.219794862,,,,,,,0.880169421,1.045345275,1.046755218,1.110213458,,,,,,,0.687908763,0.839843355,0.840916655,0.898871634,,,,,,,0.150151689,0.0173281,0.017382147,0.017423923,,,,,,,1.308121145,1.643996351,1.646112513,1.732280229,,,,,,,0.406107108,0.50991859,0.511237413,0.553097076,,,,,,,0.006490565,0.004463964,0.004447189,0.004562834,,,,,,,3.81867804,5.094232141,5.076343846,5.997615494,,,,,,,1984.942154,1985.090988,1991.016887,1995.358129,,,,,,,0.001907152,0.001917921,0.001938133,0.002005315,,,,,,,0.035186088,0.035193039,0.035265383,0.035308795,,,,,,,15.58534215,15.25672483,15.15042957,18.62061031,,,,,,,0.171276671,0.202815638,0.20256873,0.211999636,,,,,,,0.837812861,0.989727343,0.990994325,1.051359585,,,,,,,0.672978705,0.812721015,0.813730923,0.868941702,,,,,,,0.151276638,0.017456309,0.017508421,0.017546598,,,,,,,1.56329648,1.871022417,1.874124757,1.966313932,,,,,,,0.414668766,0.522429086,0.523902775,0.567216838,,,,,,,0.005541738,0.004005493,0.003990632,0.004081229,,,,,,,3.596664315,4.938324939,4.920772826,5.881263627,,,,,,,2009.602741,2009.478042,2015.162024,2018.72279,,,,,,,0.002112549,0.002125045,0.002148367,0.002226483,,,,,,,0.033135888,0.033141662,0.033202038,0.033238289,,,,,,,14.46163459,14.14542085,14.04081951,17.3951073,,,,,,,0.174049181,0.209990596,0.20967084,0.219777006,,,,,,,0.876696441,1.040088902,1.041484174,1.104553133,,,,,,,0.687787987,0.838082988,0.839153358,0.896764158,,,,,,,0.153156118,0.01767076,0.017720743,0.017752061,,,,,,,1.355304826,1.686888899,1.687772599,1.769947654,,,,,,,0.411287144,0.51630286,0.517673134,0.559975945,,,,,,,0.006662752,0.004579175,0.004560115,0.00466461,,,,,,,3.897879397,5.193482556,5.176142623,6.109874872,,,,,,,2019.523068,2019.453743,2025.227625,2029.036012,,,,,,,0.00197023,0.001981374,0.002002183,0.002071729,,,,,,,0.035605213,0.035612371,0.035687149,0.035732014,,,,,,,15.44269441,15.12152874,15.018941,18.41795802,,,,,,,0.177815372,0.210680512,0.21042789,0.220233341,,,,,,,0.861878466,1.01680026,1.018129681,1.079579073,,,,,,,0.688709872,0.831217332,0.832273337,0.888458067,,,,,,,0.153912182,0.017758479,0.017809256,0.017842749,,,,,,,1.603327654,1.918382112,1.920852801,2.009070207,,,,,,,0.40921062,0.514898618,0.516274978,0.558970805,,,,,,,0.005851215,0.004138669,0.004121665,0.00422037,,,,,,,3.654349585,4.959219774,4.941286197,5.880893767,,,,,,,2015.912343,2015.617226,2021.042129,2024.159185,,,,,,,0.00199903,0.002010671,0.002032471,0.002105175,,,,,,,0.033794524,0.033800699,0.033865027,0.033903644,,,,,,,14.6136057,14.29709362,14.19261962,17.54053502,,,,,,,0.169941987,0.203443607,0.20315794,0.212820075,,,,,,,0.850335598,1.007703232,1.009005134,1.07067086,,,,,,,0.674991472,0.81974763,0.820763901,0.877131588,,,,,,,0.153636984,0.017724747,0.017772455,0.017799865,,,,,,,1.422960343,1.740771222,1.741877099,1.826640017,,,,,,,0.416370704,0.522545845,0.523925356,0.567112242,,,,,,,0.006839993,0.004691475,0.004672538,0.004775188,,,,,,,3.968599243,5.276740264,5.259778412,6.205153838,,,,,,,2025.343304,2025.383324,2031.218222,2035.313084,,,,,,,0.002013414,0.002024904,0.002046286,0.002118005,,,,,,,0.035972521,0.035979844,0.03605628,0.036102151,,,,,,,16.64360445,16.30113503,16.19186091,19.82123854,,,,,,,0.182721443,0.216434777,0.2161874,0.226279766,,,,,,,0.881211185,1.038420314,1.039778457,1.102650059,,,,,,,0.701741985,0.846352926,0.847427137,0.904903404,,,,,,,0.154355745,0.01781063,0.017861938,0.017897949,,,,,,,1.643382705,1.963727985,1.966611847,2.054823193,,,,,,,0.409411241,0.516765406,0.518174966,0.561765043,,,,,,,0.004824823,0.003595087,0.003582031,0.003673909,,,,,,,3.358626696,4.687415551,4.668894494,5.624129006,,,,,,,1941.84857,1942.128658,1947.949362,1952.22036,,,,,,,0.002074418,0.002086979,0.002110552,0.002189107,,,,,,,0.031494864,0.031499695,0.031550156,0.031580463,,,,,,,14.60980853,14.27696644,14.16262845,17.68445016,,,,,,,0.162565741,0.197685667,0.197350815,0.207023289,,,,,,,0.847901493,1.010407133,1.011704296,1.074387317,,,,,,,0.664789289,0.814269693,0.815253301,0.872518835,,,,,,,0.147992396,0.01707851,0.017129706,0.017167256,,,,,,,1.193232879,1.519515225,1.519365772,1.600564099,,,,,, +Heavy duty long haul truck,B0,2010,,0.138979879,0.129675828,0.12341058,0.300019749,,,,,,,0.280362417,0.310687993,0.318007953,0.187508371,,,,,,,2.069685468,2.198043461,2.197541194,3.669661117,,,,,,,1938.293783,1942.743804,1948.720406,1954.20533,,,,,,,0.002002139,0.002013094,0.002037602,0.002131464,,,,,,,0.032454169,0.032455945,0.032492138,0.032630898,,,,,,,9.280238648,9.178240699,9.116369211,12.44527323,,,,,,,0.055973872,0.053509503,0.050978903,0.115175786,,,,,,,0.388655184,0.382892334,0.372903739,0.653588807,,,,,,,0.249301881,0.24383863,0.234480449,0.492721818,,,,,,,0.016169439,0.01618031,0.016213588,0.016649018,,,,,,,0.710737278,0.71029337,0.699305686,1.128196272,,,,,,,0.141036451,0.131600234,0.125251383,0.304145682,,,,,,,0.376797831,0.409560596,0.418794788,0.246149875,,,,,,,2.465458141,2.593218014,2.593284812,4.065587882,,,,,,,1996.04045,2000.222951,2006.007711,2011.749855,,,,,,,0.001992151,0.002002526,0.002025886,0.00211595,,,,,,,0.03524847,0.035245528,0.035289317,0.035479653,,,,,,,10.18258947,10.07766979,10.01703519,13.39382514,,,,,,,0.060184172,0.057458565,0.054770707,0.123726365,,,,,,,0.397325836,0.391004856,0.380675791,0.670931085,,,,,,,0.258133484,0.252169539,0.242513545,0.509564902,,,,,,,0.016651445,0.016659383,0.016690593,0.017139596,,,,,,,0.874957862,0.87139249,0.858760926,1.342565489,,,,,,,0.142115796,0.13262995,0.126243918,0.306888542,,,,,,,0.273758632,0.30528859,0.312599017,0.184470168,,,,,,,2.073995386,2.207548751,2.20819515,3.729173065,,,,,,,1971.902588,1976.387239,1982.413325,1987.882716,,,,,,,0.002142448,0.002154142,0.002180481,0.002282033,,,,,,,0.032466644,0.032469764,0.032506385,0.032641116,,,,,,,9.301199428,9.198792199,9.136761915,12.45903344,,,,,,,0.059382126,0.056705723,0.054003407,0.122380197,,,,,,,0.415610108,0.409656504,0.39933416,0.690470331,,,,,,,0.259813017,0.254143913,0.244446073,0.512302186,,,,,,,0.016449769,0.016460451,0.016493852,0.01693593,,,,,,,0.711017996,0.711292108,0.700049342,1.135503326,,,,,,,0.138409573,0.129140986,0.12290549,0.29837907,,,,,,,0.369253828,0.40104053,0.410148361,0.241165135,,,,,,,2.415544402,2.540318002,2.539438689,3.980592107,,,,,,,1985.554893,1989.638343,1995.292011,2000.80083,,,,,,,0.00190732,0.001917283,0.001939566,0.002024919,,,,,,,0.034936475,0.034933584,0.034976534,0.035163174,,,,,,,9.922981804,9.820504467,9.761119297,13.08933433,,,,,,,0.057638669,0.055063991,0.052495431,0.118385641,,,,,,,0.37879053,0.372667012,0.362612538,0.644708304,,,,,,,0.250147437,0.244379242,0.234990233,0.494532775,,,,,,,0.016563931,0.016571198,0.016601407,0.01704625,,,,,,,0.855649178,0.852098915,0.839979829,1.314213914,,,,,,,0.141741569,0.132278116,0.125907913,0.305990518,,,,,,,0.290351427,0.321791872,0.328862485,0.193242036,,,,,,,2.140960329,2.273418206,2.273916711,3.784872862,,,,,,,2011.139889,2015.121879,2020.531371,2025.113701,,,,,,,0.002112611,0.002124039,0.002149778,0.002249027,,,,,,,0.03294936,0.032951624,0.032989727,0.033134179,,,,,,,9.046285071,8.948025709,8.889075783,12.07884257,,,,,,,0.059430736,0.056749853,0.054053939,0.122422434,,,,,,,0.411485556,0.405475908,0.395166199,0.685715804,,,,,,,0.259115826,0.253403994,0.24372767,0.511045307,,,,,,,0.016777087,0.01678309,0.016810994,0.017253069,,,,,,,0.738048773,0.737226048,0.724809057,1.162299768,,,,,,,0.140168699,0.130795296,0.124490467,0.302177199,,,,,,,0.379508441,0.412031309,0.421046223,0.247119846,,,,,,,2.475265075,2.602364967,2.602154189,4.065885044,,,,,,,2020.084458,2023.98098,2029.408661,2034.531018,,,,,,,0.001970302,0.001980507,0.00200346,0.002091872,,,,,,,0.035348231,0.035345427,0.035389895,0.035582283,,,,,,,9.878966811,9.777868909,9.719801377,12.98896558,,,,,,,0.059814556,0.057104659,0.054434332,0.122932729,,,,,,,0.39246812,0.386171172,0.37590817,0.664217579,,,,,,,0.256280304,0.250343076,0.240752468,0.506013357,,,,,,,0.016851986,0.016857235,0.016885258,0.01733361,,,,,,,0.878705969,0.874762201,0.861679283,1.342981928,,,,,,,0.139710986,0.130362867,0.124070655,0.301453624,,,,,,,0.317897486,0.34896566,0.356527827,0.2093037,,,,,,,2.228843841,2.357059064,2.356792212,3.829116152,,,,,,,2017.067029,2020.742639,2025.812026,2030.163696,,,,,,,0.001999164,0.002009884,0.002033931,0.002126275,,,,,,,0.03358496,0.033585053,0.033624555,0.033784075,,,,,,,9.191279371,9.093076252,9.034737498,12.22594615,,,,,,,0.057702466,0.055128931,0.052532726,0.118689048,,,,,,,0.392081746,0.386095557,0.375973941,0.660423137,,,,,,,0.252801338,0.247137566,0.237663245,0.499369547,,,,,,,0.01682659,0.016830002,0.016855041,0.01729614,,,,,,,0.77640844,0.77432168,0.761791172,1.207192325,,,,,,,0.141882396,0.132394785,0.126012483,0.305936863,,,,,,,0.391075233,0.424335281,0.433678623,0.254590062,,,,,,,2.53117635,2.659747342,2.660250454,4.141029597,,,,,,,2025.74218,2029.687508,2035.199125,2040.601743,,,,,,,0.002013431,0.002023884,0.002047478,0.002138661,,,,,,,0.03570703,0.035703562,0.03574872,0.035946868,,,,,,,10.68630201,10.57726369,10.5147905,14.01307073,,,,,,,0.061421854,0.058619348,0.055878157,0.126285896,,,,,,,0.403098477,0.396654171,0.38621459,0.67972546,,,,,,,0.261276758,0.255197373,0.245437594,0.51548535,,,,,,,0.016899237,0.016904803,0.016933491,0.017385412,,,,,,,0.901568276,0.897456806,0.88417947,1.375866644,,,,,,,0.140125082,0.130747458,0.124429839,0.302730146,,,,,,,0.238481878,0.268108142,0.2739886,0.161161992,,,,,,,1.917979845,2.048968421,2.048955916,3.546104978,,,,,,,1943.757411,1948.07206,1953.792146,1958.586335,,,,,,,0.0020746,0.002086212,0.002112214,0.002211903,,,,,,,0.03134693,0.031350584,0.031383281,0.031499858,,,,,,,8.978950598,8.87701841,8.81378849,12.13424893,,,,,,,0.055957388,0.053500459,0.050951488,0.115278566,,,,,,,0.399318385,0.393670259,0.383628469,0.666246201,,,,,,,0.251437193,0.246060149,0.236631879,0.496649241,,,,,,,0.016214875,0.016224504,0.016255579,0.016686149,,,,,,,0.645286746,0.645878222,0.634269742,1.037897492,,,,, +Heavy duty long haul truck,B0,2015,,,0.003836059,0.004533569,0.004561659,0.127847078,,,,,,,0.284818883,0.293276559,0.297773682,0.264899364,,,,,,,1.190169463,1.249869782,1.288553111,2.339323085,,,,,,,1808.868877,1810.568536,1817.208733,1896.145756,,,,,,,0.002009055,0.002018949,0.002045299,0.002168636,,,,,,,0.03004078,0.030090563,0.030160324,0.031467306,,,,,,,2.881547187,3.244607044,3.267434066,7.202087997,,,,,,,0.006977343,0.008192984,0.008245354,0.053299936,,,,,,,0.169913233,0.178608944,0.179214551,0.378615857,,,,,,,0.049286285,0.057022199,0.057260948,0.239965045,,,,,,,0.014784404,0.01479833,0.014852636,0.0157904,,,,,,,0.348189517,0.356424539,0.361202288,0.698510988,,,,,,,0.004536154,0.005238738,0.005273922,0.129984761,,,,,,,0.378103532,0.387282359,0.39256173,0.347371811,,,,,,,1.510221688,1.572171694,1.613128233,2.698976337,,,,,,,1856.549686,1858.203128,1864.81016,1948.643162,,,,,,,0.001999807,0.002009059,0.002034066,0.002151834,,,,,,,0.031983609,0.032049511,0.032139261,0.033900527,,,,,,,3.538816941,3.906346463,3.936044746,8.013777294,,,,,,,0.008314978,0.009540512,0.009606501,0.057661993,,,,,,,0.172665744,0.181352994,0.18196013,0.387445363,,,,,,,0.05258585,0.060335836,0.060602491,0.248962267,,,,,,,0.015175661,0.015189221,0.015243278,0.016229026,,,,,,,0.447764131,0.456769335,0.462395562,0.849925458,,,,,,,0.003847287,0.004570816,0.004599844,0.130731631,,,,,,,0.278947154,0.287770264,0.292376013,0.260618018,,,,,,,1.176359941,1.238438256,1.279510456,2.365137632,,,,,,,1842.408649,1844.258302,1851.10795,1930.215022,,,,,,,0.002151029,0.002161445,0.00218961,0.002322412,,,,,,,0.030134482,0.030184662,0.030254318,0.031518455,,,,,,,2.826551484,3.195433704,3.21832649,7.186124701,,,,,,,0.006985922,0.008246801,0.008300796,0.056360966,,,,,,,0.18818989,0.197265743,0.197960101,0.405056572,,,,,,,0.052043599,0.060078694,0.060337845,0.249979512,,,,,,,0.015058311,0.015073457,0.015129472,0.016073729,,,,,,,0.342676134,0.351258445,0.356147962,0.699547091,,,,,,,0.004437249,0.005121421,0.005155389,0.127556138,,,,,,,0.370572456,0.379504056,0.38477153,0.340601301,,,,,,,1.479505305,1.539751194,1.578846107,2.638868906,,,,,,,1845.333205,1846.83105,1853.315705,1937.367133,,,,,,,0.001913653,0.001922654,0.001946627,0.002058773,,,,,,,0.031722971,0.031786987,0.03187482,0.03360872,,,,,,,3.446381192,3.804561489,3.833209373,7.817862254,,,,,,,0.008134953,0.009328358,0.009392087,0.055292489,,,,,,,0.160504969,0.168944327,0.169507589,0.369225733,,,,,,,0.050355378,0.057900276,0.058154284,0.241273827,,,,,,,0.015083899,0.015096191,0.015149241,0.016135184,,,,,,,0.439676556,0.448434084,0.45402891,0.832913998,,,,,,,0.003962984,0.004681847,0.004712016,0.130432986,,,,,,,0.294231177,0.302781676,0.306662691,0.271529447,,,,,,,1.233650579,1.295673609,1.336665581,2.421332433,,,,,,,1878.064069,1879.45872,1885.808068,1965.62236,,,,,,,0.002121024,0.002131203,0.002158728,0.002288506,,,,,,,0.030454187,0.030507276,0.030580671,0.0319319,,,,,,,2.824097276,3.176768583,3.199950919,7.014924525,,,,,,,0.007209782,0.008462743,0.008518962,0.056501145,,,,,,,0.184874369,0.193866981,0.194543043,0.401063759,,,,,,,0.052025743,0.059999047,0.06025937,0.249412469,,,,,,,0.015349955,0.015361389,0.015413327,0.016368707,,,,,,,0.360114679,0.368449961,0.372675467,0.716852975,,,,,,,0.00454455,0.005241574,0.005277073,0.129208844,,,,,,,0.380276514,0.389274228,0.394164301,0.348037237,,,,,,,1.519764985,1.581477562,1.622076978,2.703435483,,,,,,,1877.95676,1879.356343,1885.731471,1970.270568,,,,,,,0.001977684,0.001986798,0.002011385,0.002127076,,,,,,,0.032047192,0.032113882,0.032204793,0.033985781,,,,,,,3.455132842,3.809826404,3.839103091,7.784183472,,,,,,,0.008333999,0.009549921,0.009616518,0.057331739,,,,,,,0.169341177,0.177949831,0.178547445,0.382683766,,,,,,,0.052109998,0.059794926,0.060061578,0.247200767,,,,,,,0.01535064,0.015362128,0.015414286,0.016409129,,,,,,,0.450852071,0.459686668,0.464950404,0.849654105,,,,,,,0.004115192,0.004814507,0.004845564,0.128622873,,,,,,,0.320520399,0.328971392,0.333009539,0.294233803,,,,,,,1.318419905,1.379081588,1.418717287,2.483947531,,,,,,,1880.746645,1881.805654,1887.791845,1968.802526,,,,,,,0.002006396,0.002016027,0.002041834,0.002162935,,,,,,,0.030829274,0.030885748,0.030963808,0.032453642,,,,,,,2.997894025,3.34570541,3.370226422,7.17578045,,,,,,,0.007510832,0.008730058,0.008788122,0.055082426,,,,,,,0.170995,0.179684422,0.180292054,0.382106252,,,,,,,0.050594831,0.058333461,0.058584336,0.243530991,,,,,,,0.015372374,0.01538108,0.01543004,0.016395776,,,,,,,0.388108509,0.396362568,0.400748097,0.752184591,,,,,,,0.004652421,0.00536007,0.005396589,0.130803153,,,,,,,0.391764385,0.401004483,0.406131514,0.358734647,,,,,,,1.560608176,1.623378817,1.66526172,2.763257131,,,,,,,1883.992701,1885.469699,1891.895225,1976.426302,,,,,,,0.002021536,0.002030813,0.002056027,0.002175053,,,,,,,0.032315853,0.032384502,0.032477562,0.034306331,,,,,,,3.762835789,4.144550039,4.176471936,8.422396215,,,,,,,0.008535041,0.009769561,0.009838088,0.058869297,,,,,,,0.176072909,0.184818987,0.185439162,0.393160717,,,,,,,0.053571613,0.061372261,0.061646669,0.252053476,,,,,,,0.015400143,0.015412266,0.015464839,0.016460481,,,,,,,0.462982742,0.472058006,0.477559431,0.871938164,,,,,,,0.003577428,0.00428718,0.004312623,0.128790004,,,,,,,0.243935481,0.251873083,0.255095903,0.22619658,,,,,,,1.06021725,1.120131535,1.15917853,2.213635588,,,,,,,1818.733659,1820.25168,1826.624271,1902.661812,,,,,,,0.002082087,0.002092552,0.002120482,0.002251381,,,,,,,0.029306427,0.0293495,0.029410603,0.030518217,,,,,,,2.612539423,2.978204385,2.998137316,6.908719776,,,,,,,0.006475968,0.007712442,0.007759668,0.053072072,,,,,,,0.178311831,0.187214781,0.187858932,0.388954376,,,,,,,0.049480392,0.057374765,0.057609967,0.241783359,,,,,,,0.014864296,0.014876727,0.014928842,0.015843737,,,,,,,0.305564674,0.313271251,0.316809786,0.629761231,,,, +Heavy duty long haul truck,B0,2020,,,,0.003712105,0.004360372,0.004398501,0.024223756,,,,,,,0.284833933,0.292513019,0.297432426,0.307193047,,,,,,,1.18569351,1.243218005,1.286415862,1.579062489,,,,,,,1678.01745,1682.319685,1691.558157,1771.556132,,,,,,,0.002008634,0.002020912,0.002050299,0.002171253,,,,,,,0.029846001,0.029891418,0.02997192,0.030459447,,,,,,,2.808011566,3.140257707,3.16986558,4.049262186,,,,,,,0.006762518,0.007891731,0.007961779,0.015303604,,,,,,,0.168458419,0.176494982,0.177239373,0.210954974,,,,,,,0.047885742,0.055088367,0.055434598,0.085895978,,,,,,,0.013715234,0.013750417,0.013825953,0.014527563,,,,,,,0.344344785,0.351840726,0.357110412,0.426468244,,,,,,,0.004413096,0.005064868,0.005110588,0.025151238,,,,,,,0.378315213,0.386470667,0.392210845,0.40231418,,,,,,,1.506485427,1.565399669,1.610948854,1.912271747,,,,,,,1724.443437,1728.714886,1737.980041,1819.579361,,,,,,,0.001999342,0.002010956,0.00203886,0.002154509,,,,,,,0.031780157,0.031837832,0.031940018,0.032569254,,,,,,,3.466891196,3.802167892,3.839072768,4.759782403,,,,,,,0.008101962,0.00923805,0.009322662,0.017115786,,,,,,,0.17120526,0.179233762,0.179980405,0.214590361,,,,,,,0.051185294,0.058396301,0.058772748,0.09010191,,,,,,,0.014096246,0.014131179,0.01420696,0.014922899,,,,,,,0.444087862,0.452098977,0.458262561,0.5371145,,,,,,,0.003720891,0.004393627,0.004432924,0.024716943,,,,,,,0.278924537,0.286960683,0.292004016,0.302254578,,,,,,,1.17162803,1.23161758,1.277503346,1.584825914,,,,,,,1710.915303,1715.257313,1724.694033,1805.358656,,,,,,,0.002150508,0.002163579,0.002195006,0.002325369,,,,,,,0.029953187,0.029998233,0.030078135,0.030549586,,,,,,,2.753333043,3.091054212,3.120765438,4.009198333,,,,,,,0.006766852,0.007938614,0.008010686,0.015843813,,,,,,,0.186720395,0.195100656,0.195941471,0.231043944,,,,,,,0.050617714,0.058099922,0.058469747,0.090100157,,,,,,,0.013983893,0.014019391,0.014096557,0.014804455,,,,,,,0.338779427,0.346610248,0.352005705,0.422944883,,,,,,,0.004315312,0.004949741,0.00499404,0.024664005,,,,,,,0.370783848,0.378736338,0.384466742,0.394721573,,,,,,,1.475824668,1.533059327,1.576536856,1.867329076,,,,,,,1712.166359,1716.366242,1725.5601,1807.458481,,,,,,,0.001913269,0.001924443,0.001951178,0.002061182,,,,,,,0.031510833,0.031567519,0.031667944,0.032291298,,,,,,,3.374816299,3.701492613,3.737185391,4.635228727,,,,,,,0.007923862,0.009029704,0.009111693,0.016557063,,,,,,,0.159052533,0.166852775,0.167551135,0.201165905,,,,,,,0.048967551,0.055985169,0.056346735,0.086809217,,,,,,,0.013995813,0.014030171,0.014105361,0.01482349,,,,,,,0.435964033,0.443774889,0.449909492,0.527441901,,,,,,,0.003837188,0.004505268,0.004545749,0.024761195,,,,,,,0.294258891,0.301913192,0.306139752,0.313511634,,,,,,,1.229101255,1.28885655,1.334614619,1.640429212,,,,,,,1744.068716,1748.04362,1757.060172,1838.059498,,,,,,,0.002120514,0.002133289,0.002164003,0.002291408,,,,,,,0.030268445,0.030315831,0.030399863,0.030899463,,,,,,,2.754163428,3.076803441,3.106581106,3.962172821,,,,,,,0.006991801,0.008155601,0.008229985,0.016043807,,,,,,,0.183405933,0.191710279,0.192531324,0.227495899,,,,,,,0.050604288,0.058027449,0.0583982,0.089932837,,,,,,,0.014255095,0.014287608,0.014361336,0.015072798,,,,,,,0.356193854,0.363673409,0.368323383,0.436059296,,,,,,,0.004421649,0.005067974,0.005113989,0.025028824,,,,,,,0.380506525,0.388438708,0.393742616,0.402427664,,,,,,,1.516084032,1.574691846,1.619829401,1.918834616,,,,,,,1743.641626,1747.716699,1756.820041,1839.067535,,,,,,,0.001977235,0.00198866,0.002016091,0.002129681,,,,,,,0.031840127,0.031898534,0.03200204,0.032639029,,,,,,,3.3853501,3.708748515,3.745020991,4.636328235,,,,,,,0.008121271,0.009247922,0.00933311,0.017069721,,,,,,,0.167880081,0.175834405,0.176570268,0.210943502,,,,,,,0.050710514,0.057858505,0.058234481,0.089361064,,,,,,,0.014253167,0.014286506,0.01436096,0.015082719,,,,,,,0.447127264,0.454928906,0.460688899,0.537386098,,,,,,,0.003991522,0.00464092,0.004682222,0.024581072,,,,,,,0.320622445,0.328133257,0.332520778,0.339799261,,,,,,,1.314241455,1.372371674,1.416555522,1.712826689,,,,,,,1745.66074,1749.43403,1758.149566,1839.343055,,,,,,,0.002005957,0.002017966,0.00204675,0.002165575,,,,,,,0.030630795,0.03068129,0.030770797,0.031315748,,,,,,,2.928372459,3.246230177,3.27738264,4.131693836,,,,,,,0.007296606,0.008428116,0.008504246,0.016033089,,,,,,,0.169536971,0.177567014,0.178313637,0.212385496,,,,,,,0.04919337,0.05639606,0.056755335,0.087561908,,,,,,,0.014268607,0.014299478,0.014370741,0.015083867,,,,,,,0.38422779,0.391583333,0.39640075,0.465426448,,,,,,,0.004529122,0.005185454,0.005232626,0.02538322,,,,,,,0.392005329,0.400156213,0.40571895,0.414948682,,,,,,,1.556951093,1.616569428,1.663124743,1.968990141,,,,,,,1750.640891,1754.752434,1763.867721,1845.847465,,,,,,,0.002021044,0.002032739,0.002060878,0.00217781,,,,,,,0.032113191,0.032172842,0.03227852,0.032928427,,,,,,,3.688811589,4.036870259,4.07632121,5.036838222,,,,,,,0.008321651,0.009465793,0.00955316,0.017499614,,,,,,,0.174608933,0.182690873,0.183451656,0.218429967,,,,,,,0.052166967,0.059424634,0.059809661,0.091470072,,,,,,,0.014310547,0.014344183,0.014418737,0.01513845,,,,,,,0.459300732,0.46731606,0.473334021,0.552389978,,,,,,,0.003452149,0.004112612,0.004148002,0.024170767,,,,,,,0.243857253,0.251037339,0.254560343,0.261027206,,,,,,,1.055322766,1.113484328,1.157176685,1.454170109,,,,,,,1687.74314,1691.837769,1700.780272,1779.651173,,,,,,,0.002081633,0.002094637,0.002125787,0.002254165,,,,,,,0.029122827,0.029162772,0.029233627,0.029656274,,,,,,,2.538448208,2.873676605,2.900249644,3.770923463,,,,,,,0.006258733,0.007408823,0.007473532,0.014872526,,,,,,,0.176854648,0.18508168,0.185867964,0.219956453,,,,,,,0.048070111,0.055424708,0.05576801,0.086504858,,,,,,,0.013793985,0.013827464,0.013900581,0.01459311,,,,,,,0.301620686,0.308618009,0.312531254,0.373594913,,, +Heavy duty long haul truck,B0,2025,,,,,0.003736508,0.004377731,0.004411217,0.004473207,,,,,,,0.286839232,0.29401623,0.298581262,0.309060046,,,,,,,1.193191558,1.250659411,1.293144952,1.420534721,,,,,,,1675.373956,1678.742392,1687.411655,1714.070144,,,,,,,0.002007615,0.002022096,0.002051947,0.002152987,,,,,,,0.029901866,0.029930285,0.030000345,0.030117345,,,,,,,2.823532444,3.149583371,3.176536032,3.222262137,,,,,,,0.006807553,0.007923726,0.007985212,0.008097741,,,,,,,0.168949943,0.176841646,0.177493173,0.178607044,,,,,,,0.048103018,0.055243783,0.055548482,0.056140816,,,,,,,0.013693667,0.013721211,0.013792094,0.01400998,,,,,,,0.346423808,0.353334882,0.358202922,0.369269294,,,,,,,0.004442856,0.005085917,0.005125994,0.005197506,,,,,,,0.381060454,0.388473341,0.393718426,0.404730095,,,,,,,1.516501063,1.574500407,1.618836125,1.746324914,,,,,,,1721.878977,1725.172514,1733.842817,1760.510438,,,,,,,0.001998132,0.002011934,0.002040324,0.00213695,,,,,,,0.031851088,0.03188719,0.031976084,0.032121371,,,,,,,3.487597057,3.815117288,3.848394282,3.903290205,,,,,,,0.008157264,0.009277123,0.009351257,0.009482073,,,,,,,0.171699541,0.17958191,0.180235062,0.181350594,,,,,,,0.051424529,0.058566586,0.058897423,0.059527153,,,,,,,0.01407534,0.014102269,0.014173176,0.014391167,,,,,,,0.446947253,0.454121022,0.459734251,0.471461339,,,,,,,0.003745905,0.004411485,0.004446017,0.004509974,,,,,,,0.280923023,0.288466112,0.293159144,0.304083661,,,,,,,1.17915239,1.239264151,1.284497245,1.421318015,,,,,,,1708.270299,1711.644001,1720.492893,1747.63892,,,,,,,0.002149156,0.002164688,0.002196669,0.002305591,,,,,,,0.030008593,0.030036797,0.030106355,0.030221774,,,,,,,2.768608169,3.100109866,3.127234475,3.173224829,,,,,,,0.006812944,0.007971472,0.008034777,0.008150728,,,,,,,0.187276311,0.19549304,0.196228894,0.197472159,,,,,,,0.050849154,0.058266016,0.058591566,0.059219217,,,,,,,0.013962312,0.013989898,0.014062243,0.014284118,,,,,,,0.340855027,0.34810772,0.353104038,0.364605146,,,,,,,0.004344169,0.004970139,0.005008968,0.005078418,,,,,,,0.373447776,0.380689468,0.385940156,0.397157791,,,,,,,1.485542074,1.541836244,1.584119196,1.705290365,,,,,,,1709.700407,1712.901295,1721.488083,1748.057507,,,,,,,0.001912331,0.001925513,0.001952668,0.002044562,,,,,,,0.03158055,0.031616018,0.031703385,0.031846976,,,,,,,3.394904426,3.714104766,3.746265483,3.799474474,,,,,,,0.007977484,0.00906757,0.009139399,0.009266432,,,,,,,0.159514297,0.167177951,0.167788976,0.168839684,,,,,,,0.049197334,0.056148641,0.05646641,0.057074377,,,,,,,0.013975712,0.014001893,0.014072114,0.014289297,,,,,,,0.438738299,0.44574469,0.451345437,0.463237858,,,,,,,0.003863078,0.004523718,0.004559274,0.004624624,,,,,,,0.296401475,0.303456031,0.307295918,0.315061485,,,,,,,1.237083763,1.296766569,1.341767373,1.476643731,,,,,,,1741.36896,1744.355649,1752.777751,1779.249916,,,,,,,0.002119188,0.00213437,0.002165626,0.002272075,,,,,,,0.030326752,0.030356421,0.03042958,0.030550582,,,,,,,2.769771523,3.086185112,3.113290535,3.158986463,,,,,,,0.00703959,0.008189613,0.008254916,0.008373611,,,,,,,0.183948825,0.192093449,0.192811949,0.194028525,,,,,,,0.050836975,0.058194218,0.058520492,0.059148136,,,,,,,0.014233079,0.014257495,0.014326364,0.014542736,,,,,,,0.358419007,0.365215574,0.369429034,0.378010365,,,,,,,0.004451625,0.005089176,0.005129509,0.005201348,,,,,,,0.383289944,0.390437848,0.39523514,0.404677939,,,,,,,1.52621249,1.583831203,1.627722801,1.753412585,,,,,,,1741.143674,1744.196395,1752.682858,1779.123614,,,,,,,0.001976078,0.00198964,0.002017545,0.002112447,,,,,,,0.031911974,0.031948541,0.032038605,0.032185849,,,,,,,3.405798716,3.721597811,3.754272704,3.80811565,,,,,,,0.008176985,0.00928729,0.009361928,0.009493389,,,,,,,0.168367092,0.176177446,0.176821329,0.177922703,,,,,,,0.050949535,0.05802868,0.05835912,0.058987727,,,,,,,0.014232809,0.014257775,0.014327183,0.014543318,,,,,,,0.450027889,0.456951397,0.462148953,0.472421281,,,,,,,0.004018156,0.004659822,0.004696066,0.004762052,,,,,,,0.322939553,0.329792807,0.333758902,0.341534891,,,,,,,1.322778727,1.380499768,1.4237652,1.551258817,,,,,,,1742.938161,1745.733755,1753.862685,1779.842813,,,,,,,0.002004857,0.002019064,0.002048325,0.002147593,,,,,,,0.03069291,0.030724528,0.03080241,0.030931181,,,,,,,2.945218251,3.256554791,3.284785377,3.332075417,,,,,,,0.007345914,0.008463065,0.008529842,0.008650032,,,,,,,0.170030578,0.177914908,0.178568397,0.179684865,,,,,,,0.049420028,0.056557879,0.05687392,0.05748257,,,,,,,0.0142464,0.014269266,0.014335742,0.0145481,,,,,,,0.386632847,0.393246463,0.397591801,0.40620138,,,,,,,0.004559873,0.005207195,0.005248543,0.005321969,,,,,,,0.394876226,0.402223824,0.407265053,0.417313098,,,,,,,1.567394124,1.625993726,1.671264781,1.80091363,,,,,,,1748.035888,1751.154907,1759.672656,1786.149942,,,,,,,0.002019738,0.002033672,0.002062321,0.002160025,,,,,,,0.032186551,0.032223876,0.032315842,0.032465544,,,,,,,3.71110467,4.050860144,4.086405424,4.144807661,,,,,,,0.008378832,0.009506177,0.009582722,0.009717155,,,,,,,0.175112771,0.18304563,0.183711334,0.18484584,,,,,,,0.052411966,0.059598931,0.059937347,0.060578798,,,,,,,0.01428931,0.014314825,0.014384484,0.014600925,,,,,,,0.462291458,0.469408232,0.474848172,0.485705007,,,,,,,0.003474538,0.004128609,0.004159728,0.004218492,,,,,,,0.24555737,0.252268948,0.255486481,0.262217131,,,,,,,1.061775593,1.12034125,1.163561219,1.296083336,,,,,,,1684.898646,1688.093334,1696.491375,1722.657803,,,,,,,0.002080516,0.002095872,0.002127523,0.002234767,,,,,,,0.029171953,0.02919699,0.029258652,0.029362563,,,,,,,2.551655446,2.881317959,2.905680972,2.947646945,,,,,,,0.006299865,0.007438171,0.00749504,0.007601236,,,,,,,0.177373689,0.185448107,0.186136277,0.187306681,,,,,,,0.048284083,0.05557826,0.055880586,0.056471928,,,,,,,0.013770771,0.013796895,0.013865553,0.014079414,,,,,,,0.303374176,0.309830018,0.313394319,0.320902652,, +Heavy duty long haul truck,B0,2030,,,,,,0.003745277,0.004385591,0.00441883,0.004463431,,,,,,,0.287803699,0.294775181,0.299314886,0.309087587,,,,,,,1.198465152,1.255463682,1.297987685,1.418223535,,,,,,,1678.250656,1680.885229,1689.494208,1702.852772,,,,,,,0.002009155,0.002023896,0.002053662,0.002150093,,,,,,,0.029925491,0.029947748,0.030017305,0.03011012,,,,,,,2.830871799,3.155718767,3.18246111,3.216655368,,,,,,,0.0068239,0.007938205,0.007999239,0.008081112,,,,,,,0.169138978,0.176998173,0.1776449,0.178510939,,,,,,,0.048177578,0.055314281,0.055616723,0.056023068,,,,,,,0.013717191,0.013738731,0.013809119,0.013918331,,,,,,,0.34753055,0.354196262,0.359036356,0.368998047,,,,,,,0.004453889,0.005095429,0.005135208,0.005188447,,,,,,,0.382322805,0.389446478,0.394659968,0.404879623,,,,,,,1.522754709,1.579991715,1.624336393,1.744463804,,,,,,,1724.823103,1727.362879,1735.971617,1749.21455,,,,,,,0.001999515,0.002013591,0.0020419,0.002134135,,,,,,,0.031881076,0.031909353,0.031997611,0.032115342,,,,,,,3.497103223,3.822840045,3.855861875,3.898418024,,,,,,,0.00817795,0.009294775,0.009368357,0.009466825,,,,,,,0.17188966,0.179738907,0.180387204,0.181254326,,,,,,,0.051508336,0.058643704,0.05897207,0.059412107,,,,,,,0.014099412,0.014120186,0.014190586,0.014298878,,,,,,,0.448370744,0.455211263,0.460789822,0.471313655,,,,,,,0.003754879,0.004419577,0.004453859,0.004499982,,,,,,,0.281892683,0.289231813,0.29389983,0.304095081,,,,,,,1.18461431,1.244280633,1.289567248,1.418772524,,,,,,,1711.240921,1713.858085,1722.646373,1736.33894,,,,,,,0.002150716,0.002166558,0.002198454,0.00230243,,,,,,,0.030032038,0.030054144,0.030123214,0.030215461,,,,,,,2.775940645,3.10625648,3.133173286,3.167590824,,,,,,,0.006829649,0.007986355,0.008049203,0.008133724,,,,,,,0.187491938,0.195670219,0.196400866,0.197380808,,,,,,,0.050929105,0.058341405,0.058664591,0.059099983,,,,,,,0.013986601,0.014008001,0.014079856,0.014191793,,,,,,,0.341970767,0.348978811,0.353947344,0.364317061,,,,,,,0.004354856,0.004979358,0.005017894,0.0050694,,,,,,,0.374681921,0.381644947,0.386864104,0.397288833,,,,,,,1.491557567,1.547109089,1.589395882,1.703536293,,,,,,,1712.659347,1715.102471,1723.627443,1736.709634,,,,,,,0.00191373,0.001927148,0.001954224,0.002041923,,,,,,,0.031610018,0.031637802,0.031724532,0.031840176,,,,,,,3.404080017,3.721576132,3.753485073,3.794593369,,,,,,,0.007997521,0.009084674,0.009155966,0.009251237,,,,,,,0.159691126,0.16732465,0.167931183,0.168741314,,,,,,,0.049277583,0.056222692,0.056538069,0.056959926,,,,,,,0.013999904,0.014019893,0.014089607,0.01419658,,,,,,,0.440131277,0.446814936,0.452381112,0.463069712,,,,,,,0.003872431,0.00453207,0.004567369,0.004614806,,,,,,,0.297366735,0.30419651,0.308012673,0.315184626,,,,,,,1.242685878,1.301865074,1.346910721,1.474230459,,,,,,,1744.374341,1746.59183,1754.954154,1767.774608,,,,,,,0.002120709,0.002136195,0.002167366,0.002268983,,,,,,,0.030351395,0.030374651,0.030447298,0.030544304,,,,,,,2.777184167,3.092354514,3.119251685,3.153720661,,,,,,,0.007057027,0.008205003,0.008269835,0.008356933,,,,,,,0.184158992,0.192266304,0.192979756,0.193936064,,,,,,,0.050917553,0.058269843,0.058593758,0.059029663,,,,,,,0.014257648,0.014275784,0.014344161,0.014448978,,,,,,,0.359538849,0.366069159,0.37025601,0.37782284,,,,,,,0.00446276,0.005098756,0.005138791,0.005192345,,,,,,,0.384536213,0.391389321,0.396156025,0.404877407,,,,,,,1.532473831,1.589314042,1.633212278,1.751618981,,,,,,,1744.15603,1746.435591,1754.860147,1767.680863,,,,,,,0.001977449,0.001991275,0.002019101,0.002109688,,,,,,,0.031942354,0.031970988,0.032060402,0.032179674,,,,,,,3.415153977,3.729190262,3.761613499,3.803437027,,,,,,,0.008197868,0.009305072,0.009379157,0.009478242,,,,,,,0.168554282,0.176332129,0.1769714,0.177825884,,,,,,,0.051033406,0.058105736,0.058433728,0.058872937,,,,,,,0.014257445,0.014276091,0.01434499,0.014449827,,,,,,,0.451440821,0.458024133,0.463187958,0.472316094,,,,,,,0.004027869,0.00466837,0.004704346,0.004752567,,,,,,,0.323972997,0.330581416,0.33452231,0.341691947,,,,,,,1.328456651,1.385587834,1.428880572,1.549131634,,,,,,,1745.909128,1747.943094,1756.011503,1768.308778,,,,,,,0.002006332,0.002020805,0.002049983,0.00214473,,,,,,,0.030719173,0.030743934,0.030821257,0.030924434,,,,,,,2.953073083,3.263030173,3.291044027,3.327008638,,,,,,,0.007364067,0.008478866,0.008545146,0.008633961,,,,,,,0.170220418,0.178071896,0.178720512,0.17958866,,,,,,,0.049498545,0.056631239,0.056944905,0.057365879,,,,,,,0.014270699,0.014287331,0.01435331,0.014453859,,,,,,,0.387823037,0.394149865,0.398466608,0.406046285,,,,,,,0.004571315,0.00521702,0.005258061,0.005312997,,,,,,,0.396167912,0.403211538,0.408221147,0.417511098,,,,,,,1.573852243,1.631648206,1.676926522,1.799076852,,,,,,,1751.014275,1753.37065,1761.826195,1774.756423,,,,,,,0.002021104,0.002035325,0.002063893,0.002157163,,,,,,,0.032217565,0.032246808,0.032338109,0.032459879,,,,,,,3.721313107,4.059128354,4.094402069,4.139902519,,,,,,,0.008400295,0.009524418,0.009600398,0.00970208,,,,,,,0.175306925,0.183205735,0.183866522,0.18475024,,,,,,,0.052498121,0.059677893,0.060013771,0.06046396,,,,,,,0.014313672,0.014332944,0.014402098,0.014507836,,,,,,,0.46375039,0.470517634,0.475922723,0.485601594,,,,,,,0.003482429,0.004135859,0.00416675,0.004208319,,,,,,,0.246331586,0.252866691,0.256064358,0.262286521,,,,,,,1.066741883,1.124972892,1.168250745,1.293453801,,,,,,,1687.744647,1690.212085,1698.551558,1711.40245,,,,,,,0.002082138,0.002097773,0.002129336,0.002231694,,,,,,,0.029192757,0.029212366,0.02927359,0.029355319,,,,,,,2.558080249,2.886784565,2.910957445,2.941705561,,,,,,,0.006314516,0.007451468,0.00750792,0.007583862,,,,,,,0.177574123,0.18561353,0.186296684,0.187212727,,,,,,,0.048356927,0.05564797,0.055948064,0.056352395,,,,,,,0.013794043,0.013814216,0.013882393,0.013987451,,,,,,,0.304288167,0.31052979,0.314071906,0.320664092, +Heavy duty long haul truck,B0,2035,,,,,,,0.003754297,0.004392384,0.004423978,0.004466975,,,,,,,0.288452436,0.295425471,0.299697635,0.309233437,,,,,,,1.202671347,1.259526272,1.299256245,1.417372874,,,,,,,1679.964405,1682.733897,1690.87618,1703.090539,,,,,,,0.002010794,0.002025358,0.002053023,0.002147816,,,,,,,0.029939433,0.029962864,0.03002892,0.03011825,,,,,,,2.837238751,3.161141851,3.186578919,3.219296976,,,,,,,0.006840232,0.007950719,0.008008732,0.008087653,,,,,,,0.169297286,0.177133422,0.177748002,0.178582349,,,,,,,0.048264528,0.055375202,0.055662742,0.056054601,,,,,,,0.013731201,0.013753847,0.013820419,0.013920277,,,,,,,0.348258078,0.354935738,0.359494832,0.3691838,,,,,,,0.004464238,0.005103651,0.005141457,0.00519276,,,,,,,0.383141113,0.390282968,0.395199211,0.405149385,,,,,,,1.5275034,1.584651444,1.626134866,1.744050152,,,,,,,1726.574351,1729.252745,1737.387864,1749.472595,,,,,,,0.002001033,0.002014932,0.002041237,0.00213191,,,,,,,0.031898777,0.031928516,0.032012343,0.032125647,,,,,,,3.5047376,3.829635558,3.861029897,3.901802144,,,,,,,0.008196827,0.009310028,0.00937996,0.009474841,,,,,,,0.172048467,0.179874644,0.180490768,0.181326013,,,,,,,0.05160068,0.058710346,0.059022506,0.059446735,,,,,,,0.014113736,0.014135642,0.014202167,0.014300992,,,,,,,0.449279481,0.45614907,0.461413315,0.47162813,,,,,,,0.003764168,0.004426569,0.004459162,0.004503633,,,,,,,0.282549399,0.289887529,0.294279576,0.304231286,,,,,,,1.189009869,1.248518928,1.290823562,1.417776294,,,,,,,1713.010574,1715.767418,1724.073816,1736.590879,,,,,,,0.002152426,0.002168072,0.002197713,0.002299936,,,,,,,0.030045873,0.030069135,0.030134757,0.030223543,,,,,,,2.782344388,3.111697262,3.137302663,3.170227112,,,,,,,0.006846448,0.007999216,0.008058963,0.00814045,,,,,,,0.18766773,0.195823313,0.19651782,0.197461899,,,,,,,0.051020903,0.058406524,0.058713831,0.059133747,,,,,,,0.01400107,0.01402361,0.014091523,0.014193856,,,,,,,0.342708379,0.349725681,0.354405069,0.364494827,,,,,,,0.004364899,0.004987324,0.00502395,0.005073582,,,,,,,0.37548586,0.382465158,0.387385259,0.397539221,,,,,,,1.496119834,1.551583843,1.591145598,1.703174911,,,,,,,1714.418739,1717.001403,1725.04961,1736.977829,,,,,,,0.00191522,0.001928476,0.001953638,0.002039845,,,,,,,0.031627431,0.031656652,0.031739011,0.031850312,,,,,,,3.411469254,3.728142861,3.758483817,3.797869723,,,,,,,0.008015844,0.009099459,0.00916721,0.009259008,,,,,,,0.159840911,0.167451522,0.168027833,0.168808301,,,,,,,0.049366699,0.056286684,0.056586488,0.05699319,,,,,,,0.014014299,0.01403542,0.014101239,0.014198776,,,,,,,0.441023998,0.44773471,0.452985453,0.463364838,,,,,,,0.003881913,0.004539291,0.004572845,0.00461858,,,,,,,0.297996293,0.304833433,0.308436147,0.315412004,,,,,,,1.24714289,1.306176652,1.348267523,1.473345342,,,,,,,1746.160776,1748.520761,1756.40141,1768.038099,,,,,,,0.002122381,0.002137675,0.00216664,0.002266542,,,,,,,0.030365962,0.030390434,0.030459425,0.030552803,,,,,,,2.783536869,3.097808918,3.12339116,3.156375266,,,,,,,0.007074206,0.008218309,0.008279934,0.008363897,,,,,,,0.18433126,0.192415876,0.193093767,0.194015158,,,,,,,0.051009375,0.058335215,0.058643154,0.059063566,,,,,,,0.014272256,0.014291552,0.01435599,0.014451138,,,,,,,0.360256064,0.366803691,0.370758435,0.378088059,,,,,,,0.004473135,0.005107037,0.005145085,0.005196692,,,,,,,0.385333769,0.39220805,0.396710291,0.405186729,,,,,,,1.53721263,1.593967788,1.635038684,1.751255841,,,,,,,1745.944692,1748.366764,1756.311357,1767.961275,,,,,,,0.001978946,0.001992601,0.002018457,0.00210751,,,,,,,0.03196028,0.031990399,0.032075331,0.032190122,,,,,,,3.422626545,3.735866304,3.766695626,3.80676684,,,,,,,0.008216806,0.009320441,0.00939085,0.009486326,,,,,,,0.168710981,0.176465933,0.177073387,0.177896578,,,,,,,0.051125401,0.058172341,0.058484143,0.058907575,,,,,,,0.014272072,0.014291883,0.014356855,0.014452122,,,,,,,0.452332551,0.458947799,0.463827348,0.472668374,,,,,,,0.004037441,0.004675761,0.004709956,0.004756433,,,,,,,0.324639472,0.331260481,0.334983104,0.341950636,,,,,,,1.332888747,1.389897804,1.43036847,1.548460975,,,,,,,1747.672547,1749.847022,1757.440893,1768.566683,,,,,,,0.002007922,0.002022218,0.002049333,0.002142474,,,,,,,0.030734678,0.030760735,0.030834176,0.030933474,,,,,,,2.959645681,3.268746813,3.295385687,3.329818532,,,,,,,0.007381456,0.008492527,0.008555522,0.008641121,,,,,,,0.170379158,0.178207654,0.178824067,0.179660415,,,,,,,0.049587795,0.056694636,0.056992845,0.057398769,,,,,,,0.014285116,0.014302899,0.014365005,0.014455974,,,,,,,0.388578475,0.394927739,0.399007194,0.406343053,,,,,,,0.004581929,0.00522551,0.005264515,0.005317455,,,,,,,0.396995789,0.404061277,0.408791293,0.417823759,,,,,,,1.578735257,1.636447977,1.678810489,1.798702043,,,,,,,1752.784044,1755.28096,1763.258957,1775.021213,,,,,,,0.002022621,0.002036662,0.002063204,0.002154899,,,,,,,0.032235872,0.032266627,0.032353341,0.032470542,,,,,,,3.729438018,4.06640021,4.099936928,4.143535885,,,,,,,0.008419676,0.009540188,0.009612391,0.00971037,,,,,,,0.175468369,0.183344101,0.18397196,0.184823334,,,,,,,0.05259211,0.059746119,0.060065409,0.060499428,,,,,,,0.014328143,0.014348567,0.014413817,0.014510006,,,,,,,0.464672727,0.471472822,0.476578815,0.485958509,,,,,,,0.003491015,0.004142125,0.004171493,0.004211577,,,,,,,0.24684601,0.253380266,0.256396933,0.262454139,,,,,,,1.07082365,1.128880777,1.169287291,1.292336384,,,,,,,1689.437794,1692.040146,1699.922256,1711.629051,,,,,,,0.002083871,0.002099317,0.002128653,0.002229274,,,,,,,0.029205037,0.029225656,0.02928382,0.029362489,,,,,,,2.563940376,2.891636539,2.914631664,2.944027935,,,,,,,0.006329995,0.007462956,0.007516624,0.007589847,,,,,,,0.177740257,0.185756512,0.186405751,0.187288361,,,,,,,0.048443852,0.055708202,0.055993535,0.056383524,,,,,,,0.01380789,0.01382916,0.013893602,0.013989307,,,,,,,0.304881508,0.311131964,0.314475931,0.320864413 +Heavy duty long haul truck,B0,2040,,,,,,,,0.003756361,0.004395454,0.004426512,,,,,,,,0.288661659,0.295661621,0.299880235,,,,,,,,1.204965177,1.26035062,1.29977396,,,,,,,,1680.303022,1683.558356,1691.556123,,,,,,,,0.002012451,0.002025113,0.002052619,,,,,,,,0.029941945,0.02996975,0.030034634,,,,,,,,2.838595213,3.163619523,3.188607151,,,,,,,,0.006843938,0.007956379,0.008013405,,,,,,,,0.169331169,0.177194814,0.177798747,,,,,,,,0.04828511,0.055402688,0.055685371,,,,,,,,0.013733969,0.013760585,0.01382598,,,,,,,,0.3484758,0.355216139,0.359715214,,,,,,,,0.004466541,0.005107374,0.005144533,,,,,,,,0.383370502,0.390610966,0.395460235,,,,,,,,1.529837258,1.585789292,1.626919216,,,,,,,,1726.918225,1730.096084,1738.084713,,,,,,,,0.002002615,0.002014667,0.002040825,,,,,,,,0.031901981,0.031937264,0.03201961,,,,,,,,3.506322379,3.832734925,3.863579921,,,,,,,,0.008200993,0.009316938,0.009385675,,,,,,,,0.172082544,0.179936147,0.18054171,,,,,,,,0.051622244,0.058740434,0.059047341,,,,,,,,0.014116548,0.01414254,0.01420787,,,,,,,,0.449520209,0.456526785,0.461716373,,,,,,,,0.003766299,0.00442973,0.00446177,,,,,,,,0.282766167,0.290122549,0.29446036,,,,,,,,1.191462555,1.249341401,1.29132583,,,,,,,,1713.361899,1716.618547,1724.775701,,,,,,,,0.002154206,0.002167777,0.002197251,,,,,,,,0.030048371,0.030075976,0.030140435,,,,,,,,2.783710674,3.114183515,3.139338352,,,,,,,,0.00685027,0.008005033,0.008063765,,,,,,,,0.187704972,0.195892863,0.196575273,,,,,,,,0.051042549,0.058435908,0.058738033,,,,,,,,0.014003939,0.014030562,0.014097261,,,,,,,,0.342933682,0.35000638,0.354624728,,,,,,,,0.004367135,0.004990932,0.005026928,,,,,,,,0.375717079,0.382783048,0.387636132,,,,,,,,1.498342194,1.552688748,1.591909129,,,,,,,,1714.762867,1717.849634,1725.749671,,,,,,,,0.001916728,0.00192825,0.001953268,,,,,,,,0.031630555,0.031665225,0.031746137,,,,,,,,3.413004837,3.731141153,3.760945483,,,,,,,,0.008019885,0.009106156,0.009172741,,,,,,,,0.159873045,0.167509033,0.168075347,,,,,,,,0.049387517,0.056315581,0.056610296,,,,,,,,0.014017113,0.014042355,0.014106962,,,,,,,,0.441265692,0.448101432,0.453277667,,,,,,,,0.003884073,0.004542554,0.00457554,,,,,,,,0.298162888,0.305089832,0.308641653,,,,,,,,1.249568665,1.307056978,1.348822401,,,,,,,,1746.508268,1749.383618,1757.114766,,,,,,,,0.002124119,0.002137385,0.002166188,,,,,,,,0.030368575,0.030397615,0.030465398,,,,,,,,2.784883076,3.100299589,3.125433452,,,,,,,,0.007078087,0.008224325,0.008284904,,,,,,,,0.184367765,0.192483645,0.193149943,,,,,,,,0.051030963,0.058364697,0.058667476,,,,,,,,0.014275095,0.01429861,0.014361825,,,,,,,,0.360435411,0.367106863,0.371003109,,,,,,,,0.004475437,0.005110789,0.005148185,,,,,,,,0.385537617,0.392543105,0.396979544,,,,,,,,1.539516442,1.595122104,1.635838685,,,,,,,,1746.291621,1749.232998,1757.026753,,,,,,,,0.001980499,0.001992346,0.002018055,,,,,,,,0.031963517,0.031999268,0.032082688,,,,,,,,3.424175002,3.738916439,3.769200707,,,,,,,,0.008220971,0.009327408,0.009396607,,,,,,,,0.168744452,0.17652672,0.177123624,,,,,,,,0.051146827,0.058202456,0.058508966,,,,,,,,0.014274904,0.014298966,0.014362705,,,,,,,,0.45254944,0.459333442,0.464138866,,,,,,,,0.004039603,0.004679103,0.004712715,,,,,,,,0.324808802,0.331539075,0.335207377,,,,,,,,1.335200481,1.390852524,1.43099609,,,,,,,,1748.013853,1750.70052,1758.14696,,,,,,,,0.002009547,0.002021963,0.002048925,,,,,,,,0.030737472,0.030768388,0.030840529,,,,,,,,2.961032151,3.271354099,3.297525819,,,,,,,,0.007385352,0.008498709,0.008560627,,,,,,,,0.170413081,0.178269163,0.178874966,,,,,,,,0.049608782,0.05672323,0.057016417,,,,,,,,0.014287906,0.014309878,0.014370774,,,,,,,,0.388760812,0.395253455,0.399270774,,,,,,,,0.004584282,0.005229357,0.005267692,,,,,,,,0.397210847,0.404406462,0.409068194,,,,,,,,1.58111114,1.637637359,1.679634239,,,,,,,,1753.128647,1756.136397,1763.965796,,,,,,,,0.002024218,0.002036384,0.002062778,,,,,,,,0.032239174,0.032275683,0.032360854,,,,,,,,3.731118692,4.069719937,4.102665537,,,,,,,,0.008423934,0.009547333,0.009618297,,,,,,,,0.175502801,0.18340694,0.184023936,,,,,,,,0.052613968,0.059776952,0.060090827,,,,,,,,0.014330963,0.014355561,0.014419595,,,,,,,,0.464900854,0.47186868,0.476898551,,,,,,,,0.003493012,0.004144953,0.004173825,,,,,,,,0.246988876,0.253582406,0.256557614,,,,,,,,1.073189325,1.129571224,1.169684431,,,,,,,,1689.770924,1692.856484,1700.596326,,,,,,,,0.002085627,0.002099053,0.00212822,,,,,,,,0.029207255,0.029231707,0.029288851,,,,,,,,2.565208904,2.893848647,2.916442916,,,,,,,,0.006333566,0.007468146,0.007520909,,,,,,,,0.177775659,0.185821334,0.186459416,,,,,,,,0.04846457,0.055735333,0.056015882,,,,,,,,0.013810608,0.013835831,0.013899112,,,,,,,,0.305035988,0.311376136,0.31467205 +Heavy duty long haul truck,B0,2045,,,,,,,,,0.003757723,0.004395915,,,,,,,,,0.288698609,0.295697119,,,,,,,,,1.205173357,1.260459128,,,,,,,,,1680.385706,1683.680599,,,,,,,,,0.002012494,0.002025075,,,,,,,,,0.029942631,0.029970773,,,,,,,,,2.83936893,3.163992993,,,,,,,,,0.006846335,0.007957228,,,,,,,,,0.169350098,0.177203951,,,,,,,,,0.048299658,0.055406799,,,,,,,,,0.013734643,0.013761586,,,,,,,,,0.348516125,0.355258271,,,,,,,,,0.004467965,0.005107935,,,,,,,,,0.383415753,0.390660806,,,,,,,,,1.530072758,1.585946639,,,,,,,,,1727.00139,1730.22247,,,,,,,,,0.002002653,0.002014627,,,,,,,,,0.031902832,0.031938584,,,,,,,,,3.50715497,3.833207083,,,,,,,,,0.008203509,0.00931798,,,,,,,,,0.172101345,0.179945478,,,,,,,,,0.051637005,0.058744992,,,,,,,,,0.014117228,0.014143573,,,,,,,,,0.449569281,0.456583823,,,,,,,,,0.003767707,0.004430204,,,,,,,,,0.282803672,0.290157766,,,,,,,,,1.191677281,1.249448087,,,,,,,,,1713.44638,1716.744661,,,,,,,,,0.002154251,0.002167731,,,,,,,,,0.03004905,0.030076995,,,,,,,,,2.784494514,3.114559723,,,,,,,,,0.00685275,0.008005906,,,,,,,,,0.187725173,0.195903277,,,,,,,,,0.051057712,0.058440324,,,,,,,,,0.014004635,0.014031597,,,,,,,,,0.342974683,0.35004836,,,,,,,,,0.004368518,0.004991476,,,,,,,,,0.375761187,0.382830889,,,,,,,,,1.49857001,1.552840802,,,,,,,,,1714.847056,1717.976261,,,,,,,,,0.001916767,0.001928215,,,,,,,,,0.031631401,0.031666528,,,,,,,,,3.413812749,3.731595873,,,,,,,,,0.008022333,0.009107165,,,,,,,,,0.159891209,0.167517697,,,,,,,,,0.049401856,0.056319947,,,,,,,,,0.014017802,0.014043393,,,,,,,,,0.44131363,0.448156651,,,,,,,,,0.003885484,0.004543046,,,,,,,,,0.29820017,0.305128575,,,,,,,,,1.249787582,1.307172816,,,,,,,,,1746.593836,1749.51183,,,,,,,,,0.002124163,0.002137339,,,,,,,,,0.030369296,0.030398695,,,,,,,,,2.785641299,3.100677183,,,,,,,,,0.007080575,0.008225231,,,,,,,,,0.184387729,0.192493816,,,,,,,,,0.051046052,0.058369129,,,,,,,,,0.014275794,0.014299658,,,,,,,,,0.360476462,0.36715244,,,,,,,,,0.004476855,0.005111354,,,,,,,,,0.385582222,0.392593332,,,,,,,,,1.539753339,1.595279997,,,,,,,,,1746.377282,1749.36136,,,,,,,,,0.001980538,0.001992306,,,,,,,,,0.031964388,0.032000593,,,,,,,,,3.424983279,3.739376648,,,,,,,,,0.008223481,0.009328457,,,,,,,,,0.168763164,0.176535837,,,,,,,,,0.051161503,0.058206987,,,,,,,,,0.014275607,0.014300015,,,,,,,,,0.452598425,0.459391109,,,,,,,,,0.004040991,0.004679609,,,,,,,,,0.324847543,0.331580918,,,,,,,,,1.335419759,1.390980565,,,,,,,,,1748.098632,1750.827603,,,,,,,,,0.00200959,0.002021925,,,,,,,,,0.03073824,0.030769547,,,,,,,,,2.961791195,3.271751464,,,,,,,,,0.0073878,0.00849964,,,,,,,,,0.170432005,0.178278516,,,,,,,,,0.049623434,0.05672756,,,,,,,,,0.014288599,0.014310916,,,,,,,,,0.388803535,0.395302473,,,,,,,,,0.004585725,0.005229937,,,,,,,,,0.397257236,0.404458479,,,,,,,,,1.581353159,1.637801351,,,,,,,,,1753.213599,1756.263489,,,,,,,,,0.002024258,0.002036342,,,,,,,,,0.032240075,0.032277045,,,,,,,,,3.731992359,4.070223836,,,,,,,,,0.008426489,0.009548408,,,,,,,,,0.175521933,0.183416387,,,,,,,,,0.052628908,0.059781605,,,,,,,,,0.014331656,0.014356605,,,,,,,,,0.46495137,0.471928214,,,,,,,,,0.003494369,0.004145379,,,,,,,,,0.247020516,0.253613009,,,,,,,,,1.073387975,1.129659055,,,,,,,,,1689.850881,1692.978224,,,,,,,,,0.002085672,0.002099012,,,,,,,,,0.02920783,0.02923264,,,,,,,,,2.565962128,2.894188802,,,,,,,,,0.006335954,0.007468928,,,,,,,,,0.177795001,0.185831116,,,,,,,,,0.048479285,0.055739425,,,,,,,,,0.013811259,0.013836833,,,,,,,,,0.305070792,0.311412985 +Heavy duty long haul truck,B0,2050,,,,,,,,,,0.003760972,,,,,,,,,,0.288985162,,,,,,,,,,1.206096314,,,,,,,,,,1681.392804,,,,,,,,,,0.002012147,,,,,,,,,,0.02995107,,,,,,,,,,2.842135358,,,,,,,,,,0.006852379,,,,,,,,,,0.16941902,,,,,,,,,,0.048327599,,,,,,,,,,0.013742881,,,,,,,,,,0.34885711,,,,,,,,,,0.004472023,,,,,,,,,,0.383815291,,,,,,,,,,1.531382851,,,,,,,,,,1728.034971,,,,,,,,,,0.002002285,,,,,,,,,,0.031913548,,,,,,,,,,3.510692745,,,,,,,,,,0.008211102,,,,,,,,,,0.172170725,,,,,,,,,,0.051668278,,,,,,,,,,0.014125679,,,,,,,,,,0.45002981,,,,,,,,,,0.003771036,,,,,,,,,,0.28308832,,,,,,,,,,1.192589434,,,,,,,,,,1714.48655,,,,,,,,,,0.002153837,,,,,,,,,,0.030057415,,,,,,,,,,2.787263613,,,,,,,,,,0.00685893,,,,,,,,,,0.187803657,,,,,,,,,,0.051087644,,,,,,,,,,0.014013132,,,,,,,,,,0.343315306,,,,,,,,,,0.00437245,,,,,,,,,,0.376147788,,,,,,,,,,1.499844048,,,,,,,,,,1715.885343,,,,,,,,,,0.00191645,,,,,,,,,,0.031641926,,,,,,,,,,3.417226122,,,,,,,,,,0.008029689,,,,,,,,,,0.15995576,,,,,,,,,,0.04943181,,,,,,,,,,0.014026291,,,,,,,,,,0.441760312,,,,,,,,,,0.003888948,,,,,,,,,,0.298513065,,,,,,,,,,1.250773521,,,,,,,,,,1747.650667,,,,,,,,,,0.002123759,,,,,,,,,,0.030378104,,,,,,,,,,2.788432329,,,,,,,,,,0.007087017,,,,,,,,,,0.184464339,,,,,,,,,,0.05107621,,,,,,,,,,0.014284435,,,,,,,,,,0.36084645,,,,,,,,,,0.00448095,,,,,,,,,,0.385990648,,,,,,,,,,1.541083057,,,,,,,,,,1747.436858,,,,,,,,,,0.001980181,,,,,,,,,,0.031975239,,,,,,,,,,3.428460094,,,,,,,,,,0.008231141,,,,,,,,,,0.168831484,,,,,,,,,,0.051192774,,,,,,,,,,0.014284274,,,,,,,,,,0.453068691,,,,,,,,,,0.004044576,,,,,,,,,,0.325187062,,,,,,,,,,1.336501704,,,,,,,,,,1749.142497,,,,,,,,,,0.002009232,,,,,,,,,,0.030747598,,,,,,,,,,2.964732234,,,,,,,,,,0.007394485,,,,,,,,,,0.170501176,,,,,,,,,,0.049652758,,,,,,,,,,0.014297137,,,,,,,,,,0.389200676,,,,,,,,,,0.004589929,,,,,,,,,,0.397677907,,,,,,,,,,1.58272452,,,,,,,,,,1754.260023,,,,,,,,,,0.002023872,,,,,,,,,,0.032251136,,,,,,,,,,3.735785279,,,,,,,,,,0.008434358,,,,,,,,,,0.175592696,,,,,,,,,,0.052660992,,,,,,,,,,0.014340213,,,,,,,,,,0.465434128,,,,,,,,,,0.003497308,,,,,,,,,,0.247266766,,,,,,,,,,1.074141775,,,,,,,,,,1690.850038,,,,,,,,,,0.002085299,,,,,,,,,,0.029215254,,,,,,,,,,2.568406163,,,,,,,,,,0.006341396,,,,,,,,,,0.177868134,,,,,,,,,,0.048506648,,,,,,,,,,0.01381943,,,,,,,,,,0.30536874 +Heavy duty long haul truck,B20,1990,1.446719,,,,,,,,,,0.005644191,,,,,,,,,,6.316609857,,,,,,,,,,1933.864674,,,,,,,,,,0.002113486,,,,,,,,,,0.032657611,,,,,,,,,,39.51965644,,,,,,,,,,0.47879689,,,,,,,,,,2.465870939,,,,,,,,,,2.160413058,,,,,,,,,,0.155148266,,,,,,,,,,2.209545152,,,,,,,,,,1.453913284,,,,,,,,,,0.006908098,,,,,,,,,,6.6327218,,,,,,,,,,1992.57483,,,,,,,,,,0.00209757,,,,,,,,,,0.035533209,,,,,,,,,,39.95785376,,,,,,,,,,0.484692164,,,,,,,,,,2.482892524,,,,,,,,,,2.17692281,,,,,,,,,,0.159858397,,,,,,,,,,2.689520453,,,,,,,,,,1.459253631,,,,,,,,,,0.005608606,,,,,,,,,,6.456903901,,,,,,,,,,1961.223776,,,,,,,,,,0.002263545,,,,,,,,,,0.032662595,,,,,,,,,,39.65927377,,,,,,,,,,0.504288247,,,,,,,,,,2.537519061,,,,,,,,,,2.212056661,,,,,,,,,,0.157343188,,,,,,,,,,2.197886425,,,,,,,,,,1.441312104,,,,,,,,,,0.006781379,,,,,,,,,,6.501892362,,,,,,,,,,1976.81594,,,,,,,,,,0.002006657,,,,,,,,,,0.035215766,,,,,,,,,,39.243552,,,,,,,,,,0.469819356,,,,,,,,,,2.434303724,,,,,,,,,,2.14128012,,,,,,,,,,0.158594104,,,,,,,,,,2.640610651,,,,,,,,,,1.457105984,,,,,,,,,,0.005801985,,,,,,,,,,6.481438852,,,,,,,,,,1984.22093,,,,,,,,,,0.002230558,,,,,,,,,,0.033160639,,,,,,,,,,38.00318313,,,,,,,,,,0.500503217,,,,,,,,,,2.525516424,,,,,,,,,,2.204107713,,,,,,,,,,0.15918817,,,,,,,,,,2.271460841,,,,,,,,,,1.448292373,,,,,,,,,,0.006929891,,,,,,,,,,6.612844256,,,,,,,,,,2003.252758,,,,,,,,,,0.002073426,,,,,,,,,,0.03563589,,,,,,,,,,38.62435776,,,,,,,,,,0.482315142,,,,,,,,,,2.469787192,,,,,,,,,,2.167479577,,,,,,,,,,0.160715063,,,,,,,,,,2.69796512,,,,,,,,,,1.448657822,,,,,,,,,,0.006123736,,,,,,,,,,6.443016533,,,,,,,,,,1986.354877,,,,,,,,,,0.002108116,,,,,,,,,,0.033820906,,,,,,,,,,37.8305513,,,,,,,,,,0.481723054,,,,,,,,,,2.472547886,,,,,,,,,,2.166900922,,,,,,,,,,0.159359379,,,,,,,,,,2.392515861,,,,,,,,,,1.457146065,,,,,,,,,,0.007098426,,,,,,,,,,6.708184188,,,,,,,,,,2014.299119,,,,,,,,,,0.002120293,,,,,,,,,,0.036003873,,,,,,,,,,41.40896487,,,,,,,,,,0.489756398,,,,,,,,,,2.497255923,,,,,,,,,,2.187971128,,,,,,,,,,0.161601269,,,,,,,,,,2.762309607,,,,,,,,,,1.453706593,,,,,,,,,,0.005102841,,,,,,,,,,6.268913137,,,,,,,,,,1930.902121,,,,,,,,,,0.002194026,,,,,,,,,,0.031515546,,,,,,,,,,39.59817838,,,,,,,,,,0.487624923,,,,,,,,,,2.496593505,,,,,,,,,,2.181011964,,,,,,,,,,0.154910548,,,,,,,,,,2.004897298,,,,,,,,, +Heavy duty long haul truck,B20,1995,0.69884061,0.828366938,,,,,,,,,0.003984029,0.004196326,,,,,,,,,6.116311341,6.195110463,,,,,,,,,1878.810134,1880.534923,,,,,,,,,0.002011914,0.002121022,,,,,,,,,0.032154214,0.032143887,,,,,,,,,30.00247862,31.68471,,,,,,,,,0.222554996,0.27281753,,,,,,,,,1.246872071,1.452906426,,,,,,,,,1.041572878,1.230925326,,,,,,,,,0.150731361,0.017408046,,,,,,,,,1.591277081,1.727473159,,,,,,,,,0.706131162,0.835738393,,,,,,,,,0.004554531,0.004885911,,,,,,,,,6.448654488,6.517525332,,,,,,,,,1935.935809,1937.599044,,,,,,,,,0.002001506,0.002106464,,,,,,,,,0.034887687,0.034874444,,,,,,,,,30.96952389,32.53395128,,,,,,,,,0.233832174,0.283094822,,,,,,,,,1.272906187,1.476323085,,,,,,,,,1.066242873,1.253185337,,,,,,,,,0.155314392,0.017936288,,,,,,,,,1.827496186,2.010505482,,,,,,,,,0.710122771,0.839528063,,,,,,,,,0.004017698,0.004214579,,,,,,,,,6.242183565,6.329253743,,,,,,,,,1908.992449,1909.906342,,,,,,,,,0.002155126,0.002272982,,,,,,,,,0.032162972,0.032152729,,,,,,,,,30.02099813,31.72753647,,,,,,,,,0.237319848,0.289865366,,,,,,,,,1.299633587,1.508459168,,,,,,,,,1.076323002,1.26820842,,,,,,,,,0.153152822,0.017679939,,,,,,,,,1.60324556,1.735748329,,,,,,,,,0.692026469,0.821823696,,,,,,,,,0.004467945,0.004796092,,,,,,,,,6.324121901,6.388525033,,,,,,,,,1923.672962,1924.501766,,,,,,,,,0.001914363,0.002013816,,,,,,,,,0.03458246,0.034569431,,,,,,,,,30.37994333,31.91801544,,,,,,,,,0.223538565,0.271841399,,,,,,,,,1.230188207,1.432830991,,,,,,,,,1.035754789,1.222006163,,,,,,,,,0.154330554,0.017815046,,,,,,,,,1.793219648,1.973673039,,,,,,,,,0.707768946,0.83723946,,,,,,,,,0.004093563,0.004300194,,,,,,,,,6.272198936,6.355793797,,,,,,,,,1942.972583,1941.035078,,,,,,,,,0.002124638,0.002239901,,,,,,,,,0.03263388,0.032623099,,,,,,,,,28.88387846,30.49267685,,,,,,,,,0.236322803,0.28831062,,,,,,,,,1.292003382,1.499959771,,,,,,,,,1.072272438,1.263364261,,,,,,,,,0.155878942,0.017968098,,,,,,,,,1.636551365,1.771770995,,,,,,,,,0.698563945,0.828312117,,,,,,,,,0.004556557,0.004886055,,,,,,,,,6.430753262,6.497632264,,,,,,,,,1954.919987,1954.335876,,,,,,,,,0.001978936,0.002081942,,,,,,,,,0.034982025,0.034968565,,,,,,,,,29.95548474,31.45752401,,,,,,,,,0.231972078,0.281167704,,,,,,,,,1.258595967,1.462118494,,,,,,,,,1.055621894,1.242665842,,,,,,,,,0.156837446,0.01809122,,,,,,,,,1.829634732,2.011296455,,,,,,,,,0.700234745,0.829825191,,,,,,,,,0.004199552,0.004446843,,,,,,,,,6.248817255,6.323623754,,,,,,,,,1948.550065,1945.885855,,,,,,,,,0.002008771,0.002116206,,,,,,,,,0.033258564,0.033247046,,,,,,,,,28.9581292,30.51586718,,,,,,,,,0.227223562,0.277184684,,,,,,,,,1.255869063,1.461035407,,,,,,,,,1.050145966,1.238698588,,,,,,,,,0.156326441,0.018013004,,,,,,,,,1.682482233,1.831813809,,,,,,,,,0.709199244,0.838799383,,,,,,,,,0.004647883,0.004991416,,,,,,,,,6.523827581,6.592931951,,,,,,,,,1962.784465,1963.098806,,,,,,,,,0.002023522,0.002129802,,,,,,,,,0.035335331,0.035321607,,,,,,,,,32.18732169,33.78829694,,,,,,,,,0.238061273,0.28752809,,,,,,,,,1.285751757,1.489189092,,,,,,,,,1.075944411,1.262899981,,,,,,,,,0.157468439,0.01817234,,,,,,,,,1.866420558,2.054347007,,,,,,,,,0.707199041,0.836521869,,,,,,,,,0.00376222,0.003905746,,,,,,,,,6.055809928,6.143186169,,,,,,,,,1882.252375,1882.521862,,,,,,,,,0.002086338,0.002202081,,,,,,,,,0.031074944,0.03106594,,,,,,,,,29.79104481,31.54066311,,,,,,,,,0.225271902,0.276743894,,,,,,,,,1.268995837,1.476839632,,,,,,,,,1.054539367,1.245540963,,,,,,,,,0.15100754,0.017426445,,,,,,,,,1.49940713,1.608915629,,,,,,,, +Heavy duty long haul truck,B20,2000,0.513087153,0.510295595,0.546883766,,,,,,,,0.00346208,0.003457396,0.003499702,,,,,,,,6.211980523,6.254459541,6.315234232,,,,,,,,1913.800849,1917.989566,1920.98426,,,,,,,,0.002015503,0.002041717,0.002103916,,,,,,,,0.032502637,0.032541631,0.032558952,,,,,,,,24.72053346,24.52893462,25.56809215,,,,,,,,0.186973713,0.186335944,0.194292488,,,,,,,,0.992804845,0.978548189,1.030234939,,,,,,,,0.80517284,0.791931034,0.839663516,,,,,,,,0.153538607,0.017754766,0.01778249,,,,,,,,1.588643262,1.594828791,1.614155499,,,,,,,,0.519749244,0.516929196,0.553577973,,,,,,,,0.004071978,0.004057973,0.004088895,,,,,,,,6.558696999,6.601441818,6.659445795,,,,,,,,1971.874737,1975.958113,1978.757914,,,,,,,,0.002005505,0.002030578,0.002090041,,,,,,,,0.035334649,0.035384608,0.035406818,,,,,,,,25.72865591,25.54090124,26.56887102,,,,,,,,0.20018094,0.199583735,0.207288543,,,,,,,,1.021263894,1.005687875,1.0570423,,,,,,,,0.832169152,0.817723975,0.865153494,,,,,,,,0.158197671,0.018291383,0.018317296,,,,,,,,1.836007167,1.84287768,1.865173246,,,,,,,,0.52410576,0.521344901,0.558235742,,,,,,,,0.003467429,0.003464532,0.00351033,,,,,,,,6.336292131,6.3813241,6.447365449,,,,,,,,1946.412953,1950.634844,1953.314523,,,,,,,,0.002157463,0.002185689,0.002252976,,,,,,,,0.032508584,0.032547294,0.03256451,,,,,,,,24.67928143,24.48843542,25.54378418,,,,,,,,0.199028183,0.198318691,0.206840575,,,,,,,,1.041575506,1.026787409,1.07963548,,,,,,,,0.835794285,0.822040794,0.870868115,,,,,,,,0.156154972,0.018056957,0.01808177,,,,,,,,1.596694796,1.602948427,1.622535525,,,,,,,,0.509421833,0.506707954,0.542624832,,,,,,,,0.003996179,0.003982793,0.004014396,,,,,,,,6.434191706,6.475317915,6.530168954,,,,,,,,1961.080278,1965.070614,1967.456318,,,,,,,,0.001919505,0.001943362,0.001999676,,,,,,,,0.035021031,0.035070027,0.035091797,,,,,,,,25.27087461,25.08602438,26.08868151,,,,,,,,0.191371405,0.190812954,0.198216612,,,,,,,,0.984660459,0.969697243,1.019818316,,,,,,,,0.807555002,0.79368403,0.839961324,,,,,,,,0.157331671,0.018190595,0.018212678,,,,,,,,1.802426554,1.809410334,1.831789903,,,,,,,,0.522447681,0.519701011,0.556426214,,,,,,,,0.003563383,0.003555558,0.003590252,,,,,,,,6.369301434,6.413866931,6.478322399,,,,,,,,1984.810879,1988.580989,1989.711389,,,,,,,,0.002127304,0.002154895,0.002220608,,,,,,,,0.032998335,0.03303912,0.033057275,,,,,,,,23.79644538,23.61458013,24.61922696,,,,,,,,0.198911043,0.198222452,0.206591295,,,,,,,,1.035981749,1.021099509,1.07353726,,,,,,,,0.833729023,0.819895858,0.868340946,,,,,,,,0.159235545,0.018408229,0.018418695,,,,,,,,1.635022165,1.639966861,1.656239929,,,,,,,,0.515577169,0.512866765,0.548955043,,,,,,,,0.004082735,0.004066867,0.004092886,,,,,,,,6.542131835,6.584495793,6.641424739,,,,,,,,1994.91726,1998.734849,2000.382919,,,,,,,,0.001983343,0.002007968,0.002066285,,,,,,,,0.035434735,0.035485352,0.035507843,,,,,,,,24.92294982,24.74258314,25.73179875,,,,,,,,0.198825981,0.198239755,0.205865456,,,,,,,,1.011359201,0.995949607,1.046578554,,,,,,,,0.825670839,0.811382078,0.85814015,,,,,,,,0.160046261,0.018502219,0.018517478,,,,,,,,1.840194558,1.846394452,1.866877638,,,,,,,,0.51513214,0.512359787,0.548836767,,,,,,,,0.003700283,0.00368912,0.003719065,,,,,,,,6.350483933,6.393103205,6.452794976,,,,,,,,1991.06236,1994.605856,1995.254582,,,,,,,,0.002012534,0.002038287,0.002099386,,,,,,,,0.033647868,0.033691366,0.033710745,,,,,,,,23.94594572,23.76512425,24.75092407,,,,,,,,0.192409251,0.191786912,0.199650553,,,,,,,,1.003748608,0.988988881,1.040407131,,,,,,,,0.815572428,0.801872306,0.849358956,,,,,,,,0.159737092,0.018464005,0.018469998,,,,,,,,1.686526343,1.691673545,1.708686361,,,,,,,,0.522639874,0.519818824,0.556530883,,,,,,,,0.004169961,0.004153657,0.004180275,,,,,,,,6.635807004,6.679144167,6.737870712,,,,,,,,2001.079484,2004.967956,2007.043796,,,,,,,,0.002027134,0.00205248,0.002112687,,,,,,,,0.03579818,0.035849921,0.035872921,,,,,,,,26.76663112,26.57332661,27.6367674,,,,,,,,0.204284031,0.203681898,0.211437038,,,,,,,,1.033814749,1.017935705,1.06942788,,,,,,,,0.841546189,0.826820348,0.874382013,,,,,,,,0.160540723,0.018559922,0.018579139,,,,,,,,1.876955676,1.88344607,1.904927814,,,,,,,,0.518378978,0.51550453,0.5527043,,,,,,,,0.003220129,0.003216266,0.003254733,,,,,,,,6.14422807,6.187892161,6.252648682,,,,,,,,1918.689443,1922.661896,1924.925512,,,,,,,,0.002088861,0.002116672,0.002182875,,,,,,,,0.031379832,0.031413941,0.031429134,,,,,,,,24.41680466,24.22211508,25.27999915,,,,,,,,0.18757701,0.186888854,0.195205256,,,,,,,,1.008510633,0.994393901,1.047284583,,,,,,,,0.811977761,0.79884953,0.847701765,,,,,,,,0.153930805,0.017798018,0.017818975,,,,,,,,1.492948098,1.497218516,1.511142635,,,,,,, +Heavy duty long haul truck,B20,2005,0.343193093,0.432458068,0.433616375,0.469688383,,,,,,,0.004593127,0.003317777,0.003307674,0.003400902,,,,,,,3.010431012,4.136237832,4.120367054,4.930480153,,,,,,,1927.097407,1927.52347,1933.567582,1938.381623,,,,,,,0.002001951,0.002013783,0.002036007,0.002109947,,,,,,,0.032633984,0.032639504,0.032697112,0.032731688,,,,,,,15.25903932,14.91933613,14.80492664,18.39509322,,,,,,,0.138285893,0.166635708,0.16637786,0.174388346,,,,,,,0.730553763,0.862869601,0.863981335,0.915962846,,,,,,,0.564450541,0.686158662,0.686994364,0.734448137,,,,,,,0.154605328,0.017843025,0.017898975,0.017943537,,,,,,,1.135052147,1.40874961,1.41043586,1.486546963,,,,,,,0.349213076,0.438470684,0.439620246,0.47591631,,,,,,,0.005700784,0.003927788,0.003913094,0.00400581,,,,,,,3.357707944,4.479629515,4.464636874,5.275363994,,,,,,,1985.531433,1985.795784,1991.791535,1996.391447,,,,,,,0.001992093,0.002003446,0.002024621,0.002095473,,,,,,,0.035502918,0.035510016,0.035583806,0.035628079,,,,,,,16.28099008,15.9419554,15.83272615,19.42243894,,,,,,,0.150864433,0.178954305,0.17874181,0.187108107,,,,,,,0.757196284,0.887839993,0.888995424,0.941770995,,,,,,,0.589802946,0.70997378,0.71086457,0.759059524,,,,,,,0.159293329,0.018382446,0.018437955,0.018480528,,,,,,,1.38317027,1.656286111,1.659032258,1.736411958,,,,,,,0.350695704,0.442149698,0.443410517,0.480179438,,,,,,,0.004580961,0.003351646,0.003342802,0.003427953,,,,,,,3.048716092,4.213480412,4.198302431,5.031257015,,,,,,,1960.325037,1960.653996,1966.769706,1971.496013,,,,,,,0.002142379,0.002155164,0.002179027,0.002258968,,,,,,,0.032639087,0.03264458,0.032701861,0.032736279,,,,,,,15.26778728,14.93062707,14.81818073,18.39650328,,,,,,,0.146326104,0.177201342,0.176920169,0.185506862,,,,,,,0.769118002,0.907374044,0.908607949,0.962299191,,,,,,,0.585741694,0.712910136,0.713821559,0.762790882,,,,,,,0.157271061,0.018149707,0.018206319,0.018250073,,,,,,,1.13486356,1.423383057,1.425243182,1.499296653,,,,,,,0.342754475,0.430371322,0.431484517,0.466814008,,,,,,,0.005575396,0.003834547,0.003820135,0.003919475,,,,,,,3.291699674,4.39122845,4.375807536,5.1699448,,,,,,,1975.012384,1975.160936,1981.057061,1985.376672,,,,,,,0.001907152,0.001917921,0.001938133,0.002005315,,,,,,,0.035186088,0.035193039,0.035265383,0.035308795,,,,,,,15.92821838,15.59237407,15.48373663,19.03026487,,,,,,,0.144557513,0.171176381,0.170968002,0.178927686,,,,,,,0.728809098,0.855752957,0.856853289,0.907913196,,,,,,,0.572695469,0.689464857,0.690321674,0.736971391,,,,,,,0.158449381,0.018283997,0.018338578,0.018378569,,,,,,,1.354148018,1.618485804,1.621191095,1.700413772,,,,,,,0.349980387,0.440930173,0.442173908,0.478731117,,,,,,,0.004760353,0.003440719,0.003427953,0.003505775,,,,,,,3.100324227,4.256836118,4.241705442,5.069648887,,,,,,,1999.549839,1999.425715,2005.081104,2008.624494,,,,,,,0.002112549,0.002125045,0.002148367,0.002226483,,,,,,,0.033135888,0.033141662,0.033202038,0.033238289,,,,,,,14.77979161,14.45662168,14.34971745,17.77780039,,,,,,,0.146897512,0.177232063,0.176962151,0.185491802,,,,,,,0.765623623,0.902347073,0.903566648,0.956926787,,,,,,,0.58560135,0.711361063,0.712269858,0.760948343,,,,,,,0.160417984,0.018508614,0.018560968,0.018593771,,,,,,,1.175618957,1.460449961,1.461248427,1.531865655,,,,,,,0.347126381,0.435759643,0.436916177,0.47261968,,,,,,,0.005723306,0.003933511,0.00391714,0.0040069,,,,,,,3.35997125,4.476781717,4.461834244,5.266712714,,,,,,,2009.420792,2009.351118,2015.096234,2018.885831,,,,,,,0.00197023,0.001981374,0.002002183,0.002071729,,,,,,,0.035605213,0.035612371,0.035687149,0.035732014,,,,,,,15.78243516,15.45420257,15.34935989,18.82315173,,,,,,,0.150076192,0.17781434,0.177601163,0.185876936,,,,,,,0.750464863,0.879901867,0.881057574,0.933038456,,,,,,,0.586209784,0.705271398,0.706167142,0.753641349,,,,,,,0.161209876,0.018600502,0.01865368,0.018688762,,,,,,,1.388730423,1.659361838,1.661523955,1.737332305,,,,,,,0.34537375,0.43457446,0.435736053,0.471771238,,,,,,,0.005026193,0.003555117,0.003540512,0.003625298,,,,,,,3.150048833,4.274847035,4.25938937,5.069329681,,,,,,,2005.828248,2005.534232,2010.93201,2014.033621,,,,,,,0.00199903,0.002010671,0.002032471,0.002105175,,,,,,,0.033794524,0.033800699,0.033865027,0.033903644,,,,,,,14.9350998,14.61163384,14.5048575,17.92642578,,,,,,,0.143431036,0.171706383,0.171465325,0.179620146,,,,,,,0.741136964,0.87275705,0.873891899,0.926056629,,,,,,,0.574529247,0.695597459,0.696460235,0.744087041,,,,,,,0.160921637,0.018565162,0.018615134,0.018643839,,,,,,,1.233772676,1.506771302,1.507759687,1.580596555,,,,,,,0.351416878,0.441028541,0.442192986,0.478642766,,,,,,,0.005875556,0.004029977,0.004013709,0.004101887,,,,,,,3.420932239,4.548549607,4.533929871,5.348843059,,,,,,,2015.211955,2015.251475,2021.057102,2025.131349,,,,,,,0.002013414,0.002024904,0.002046286,0.002118005,,,,,,,0.035972521,0.035979844,0.03605628,0.036102151,,,,,,,17.00976076,16.65976211,16.54808367,20.25730594,,,,,,,0.154216886,0.182670947,0.182462173,0.190980116,,,,,,,0.767785301,0.899115143,0.900296423,0.953482732,,,,,,,0.5973906,0.718192521,0.719103939,0.767669896,,,,,,,0.161674471,0.018655117,0.018708858,0.018746577,,,,,,,1.423170173,1.698347563,1.700865254,1.776669622,,,,,,,0.345543076,0.436149957,0.437339761,0.474129596,,,,,,,0.004144524,0.003088179,0.003076963,0.003155889,,,,,,,2.895136278,4.040551717,4.024586567,4.847999833,,,,,,,1932.134792,1932.413758,1938.205627,1942.454571,,,,,,,0.002074418,0.002086979,0.002110552,0.002189107,,,,,,,0.031494864,0.031499695,0.031550156,0.031580463,,,,,,,14.93122561,14.59105541,14.47420767,18.07351376,,,,,,,0.137205496,0.166846727,0.166564089,0.174727658,,,,,,,0.740422066,0.876520105,0.877655794,0.930685139,,,,,,,0.565908755,0.691093731,0.691928858,0.740313248,,,,,,,0.155009457,0.017888288,0.0179419,0.017981238,,,,,,,1.036014255,1.316293188,1.316205237,1.385986514,,,,,, +Heavy duty long haul truck,B20,2010,,0.117571712,0.109866024,0.10458717,0.253465428,,,,,,,0.280213235,0.310552299,0.317878713,0.187197458,,,,,,,1.920306146,2.058794753,2.064195513,3.264991233,,,,,,,1928.59771,1933.025424,1938.972307,1944.429564,,,,,,,0.002002139,0.002013094,0.002037602,0.002131464,,,,,,,0.032454169,0.032455945,0.032492138,0.032630898,,,,,,,9.353668736,9.246080956,9.18079833,12.64039061,,,,,,,0.047716018,0.045891742,0.043771458,0.097640901,,,,,,,0.352992864,0.349927701,0.34162668,0.576671773,,,,,,,0.216492598,0.21351129,0.205705661,0.421958312,,,,,,,0.016936107,0.016947496,0.016982353,0.017438429,,,,,,,0.655625949,0.659347762,0.650938404,1.003133242,,,,,,,0.119324242,0.111507336,0.106158148,0.256957778,,,,,,,0.376620098,0.409399236,0.418641096,0.245782998,,,,,,,2.300293808,2.439184304,2.445795826,3.629647058,,,,,,,1986.055854,1990.217465,1995.972866,2001.686314,,,,,,,0.001992151,0.002002526,0.002025886,0.00211595,,,,,,,0.03524847,0.035245528,0.035289317,0.035479653,,,,,,,10.26218132,10.15123393,10.0869267,13.60147879,,,,,,,0.051298679,0.049254333,0.04700188,0.104875074,,,,,,,0.360383149,0.356844792,0.348255786,0.591332821,,,,,,,0.224146117,0.2207424,0.212687192,0.436334731,,,,,,,0.017440969,0.017449282,0.017481983,0.017952265,,,,,,,0.808653784,0.810050048,0.80048897,1.194697563,,,,,,,0.120225339,0.112371683,0.106991162,0.259270096,,,,,,,0.273607582,0.305151133,0.312468103,0.184156138,,,,,,,1.922119378,2.065965922,2.072566438,3.316083099,,,,,,,1962.03839,1966.500389,1972.496824,1977.938856,,,,,,,0.002142448,0.002154142,0.002180481,0.002282033,,,,,,,0.032466644,0.032469764,0.032506385,0.032641116,,,,,,,9.374797752,9.266783156,9.201334348,12.65428514,,,,,,,0.050604598,0.048610741,0.046346103,0.103734171,,,,,,,0.378646076,0.375490548,0.366917512,0.610734215,,,,,,,0.225806316,0.222711333,0.214622834,0.43894524,,,,,,,0.01722973,0.017240924,0.017275906,0.017738947,,,,,,,0.655274631,0.659767757,0.651137828,1.009245798,,,,,,,0.117100247,0.109421164,0.104167454,0.25208455,,,,,,,0.369080645,0.400883296,0.409998567,0.240806501,,,,,,,2.253694115,2.389390809,2.394960177,3.553649892,,,,,,,1975.62228,1979.685595,1985.310925,1990.792136,,,,,,,0.00190732,0.001917283,0.001939566,0.002024919,,,,,,,0.034936475,0.034933584,0.034976534,0.035163174,,,,,,,10.00063726,9.892282225,9.829315133,13.2925591,,,,,,,0.049138341,0.047214989,0.045062829,0.100356627,,,,,,,0.342863207,0.339445175,0.3310827,0.567314004,,,,,,,0.217094382,0.213815194,0.205982876,0.423330192,,,,,,,0.017349311,0.017356915,0.01738856,0.017854494,,,,,,,0.791092016,0.792370232,0.783231447,1.169673727,,,,,,,0.119910808,0.112074954,0.106707816,0.258512226,,,,,,,0.29019622,0.321650785,0.328728278,0.192921653,,,,,,,1.986857415,2.129749308,2.136304229,3.368131404,,,,,,,2001.078921,2005.041533,2010.424381,2014.983072,,,,,,,0.002112611,0.002124039,0.002149778,0.002249027,,,,,,,0.03294936,0.032951624,0.032989727,0.033134179,,,,,,,9.11770553,9.014012192,8.951749441,12.26777306,,,,,,,0.050647988,0.048648419,0.046389151,0.103770057,,,,,,,0.374576858,0.371358356,0.362793937,0.606118687,,,,,,,0.225159892,0.222016004,0.213945117,0.437816256,,,,,,,0.017572562,0.017578856,0.017608092,0.018071122,,,,,,,0.680704176,0.684247885,0.674576406,1.033518508,,,,,,,0.118590643,0.110825632,0.105513534,0.255295038,,,,,,,0.379330467,0.411869788,0.420892456,0.246753312,,,,,,,2.309970203,2.448211078,2.45456591,3.630498271,,,,,,,2009.978987,2013.856695,2019.257119,2024.353514,,,,,,,0.001970302,0.001980507,0.00200346,0.002091872,,,,,,,0.035348231,0.035345427,0.035389895,0.035582283,,,,,,,9.956144526,9.849209581,9.787582942,13.19027013,,,,,,,0.0509846,0.048951517,0.046713794,0.104202809,,,,,,,0.35575392,0.352221123,0.343686586,0.585132578,,,,,,,0.222503311,0.219109093,0.211108564,0.43325545,,,,,,,0.017651019,0.017656516,0.017685873,0.018155484,,,,,,,0.812329555,0.813369024,0.803390326,1.195292807,,,,,,,0.118195391,0.110452618,0.105151036,0.254679618,,,,,,,0.317737154,0.348820024,0.35638927,0.208972692,,,,,,,2.073073955,2.211825237,2.217721063,3.411825041,,,,,,,2006.977071,2010.634126,2015.678353,2020.00776,,,,,,,0.001999164,0.002009884,0.002033931,0.002126275,,,,,,,0.03358496,0.033585053,0.033624555,0.033784075,,,,,,,9.263629305,9.159929818,9.09824671,12.41672717,,,,,,,0.049186491,0.04727016,0.04509474,0.100612961,,,,,,,0.355911937,0.352657053,0.344243656,0.582448287,,,,,,,0.219525408,0.216374294,0.208471284,0.427632928,,,,,,,0.017624413,0.017627993,0.017654219,0.018116231,,,,,,,0.717002539,0.719420957,0.709717959,1.07404497,,,,,,,0.120042058,0.112182696,0.1068054,0.258472344,,,,,,,0.390892656,0.424169586,0.433520861,0.254214453,,,,,,,2.363016267,2.502905152,2.510062169,3.69851423,,,,,,,2015.608479,2019.533579,2025.018311,2030.393738,,,,,,,0.002013431,0.002023884,0.002047478,0.002138661,,,,,,,0.03570703,0.035703562,0.03574872,0.035946868,,,,,,,10.76967682,10.65433211,10.58801395,14.22993529,,,,,,,0.052349989,0.050242322,0.047945065,0.107040224,,,,,,,0.365735935,0.362104326,0.353423441,0.59923276,,,,,,,0.226903265,0.223411661,0.215269826,0.441432303,,,,,,,0.017700511,0.017706342,0.01773639,0.018209738,,,,,,,0.833401208,0.834398049,0.824296784,1.224484589,,,,,,,0.118535699,0.110770901,0.105447713,0.255753191,,,,,,,0.238343251,0.267982004,0.273868667,0.160874309,,,,,,,1.773609152,1.914409708,1.920063857,3.149365571,,,,,,,1934.034911,1938.327228,1944.018508,1948.788276,,,,,,,0.0020746,0.002086212,0.002112214,0.002211903,,,,,,,0.03134693,0.031350584,0.031383281,0.031499858,,,,,,,9.050383772,8.942993952,8.876434491,12.32535939,,,,,,,0.047697614,0.045884558,0.04374883,0.097727946,,,,,,,0.363460419,0.360531001,0.352190013,0.588855129,,,,,,,0.218448067,0.215572291,0.207708556,0.425449724,,,,,,,0.016983704,0.016993787,0.017026331,0.017477318,,,,,,,0.594374802,0.598877491,0.589741102,0.922391463,,,,, +Heavy duty long haul truck,B20,2015,,,0.003598168,0.004293416,0.004318777,0.108286509,,,,,,,0.284809251,0.293266835,0.297763847,0.264759715,,,,,,,1.173334047,1.232874218,1.271364504,2.165218637,,,,,,,1799.820163,1801.511362,1808.118639,1886.66076,,,,,,,0.002009055,0.002018949,0.002045299,0.002168636,,,,,,,0.03004078,0.030090563,0.030160324,0.031467306,,,,,,,2.883666205,3.246746169,3.269597477,7.277994589,,,,,,,0.006515716,0.007726967,0.007774043,0.045652026,,,,,,,0.168956494,0.177643105,0.178237739,0.345873975,,,,,,,0.048406087,0.056133629,0.056362285,0.209842607,,,,,,,0.015485404,0.015499991,0.015556872,0.016539099,,,,,,,0.346585447,0.354785714,0.359528117,0.644533341,,,,,,,0.004205188,0.004904681,0.004936141,0.110104833,,,,,,,0.37809013,0.387268833,0.392548052,0.347206135,,,,,,,1.486799433,1.548530775,1.589223692,2.508145742,,,,,,,1847.262979,1848.906823,1855.481677,1938.895432,,,,,,,0.001999807,0.002009059,0.002034066,0.002151834,,,,,,,0.031983609,0.032049511,0.032139261,0.033900527,,,,,,,3.541739988,3.909296809,3.939027965,8.095551055,,,,,,,0.007672739,0.008892278,0.008951042,0.049358184,,,,,,,0.171334676,0.180009502,0.180601656,0.353363658,,,,,,,0.051361274,0.059099824,0.059352704,0.217607239,,,,,,,0.015895213,0.015909411,0.015966036,0.016998522,,,,,,,0.444593059,0.453548856,0.459122209,0.785352119,,,,,,,0.003617845,0.004339114,0.004365416,0.110732786,,,,,,,0.278937863,0.287760882,0.29236652,0.260476936,,,,,,,1.160122549,1.222040943,1.262920244,2.187628227,,,,,,,1833.193342,1835.032772,1841.848024,1920.559531,,,,,,,0.002151029,0.002161445,0.00218961,0.002322412,,,,,,,0.030134482,0.030184662,0.030254318,0.031518455,,,,,,,2.828581972,3.197484232,3.220401193,7.262063113,,,,,,,0.006540692,0.007797187,0.007845891,0.0482559,,,,,,,0.187267131,0.196333899,0.197017292,0.371154542,,,,,,,0.051194666,0.0592214,0.059470463,0.218789729,,,,,,,0.015772296,0.015788161,0.015846835,0.016835862,,,,,,,0.341267258,0.349815312,0.354670043,0.645081485,,,,,,,0.00411252,0.004793697,0.004824053,0.108045288,,,,,,,0.370559307,0.379490786,0.384758113,0.340439338,,,,,,,1.4565244,1.516558298,1.555397618,2.452173571,,,,,,,1836.101967,1837.592268,1844.044847,1927.675356,,,,,,,0.001913653,0.001922654,0.001946627,0.002058773,,,,,,,0.031722971,0.031786987,0.03187482,0.03360872,,,,,,,3.449224786,3.807431402,3.836110912,7.8977963,,,,,,,0.007504819,0.008692408,0.008749131,0.047341282,,,,,,,0.159198991,0.167626299,0.168175037,0.336074024,,,,,,,0.049153882,0.05668769,0.056928338,0.210774339,,,,,,,0.0157991,0.015811975,0.015867542,0.016900234,,,,,,,0.436599677,0.445309173,0.450852811,0.769815002,,,,,,,0.003716,0.00443245,0.00445971,0.110480606,,,,,,,0.294221176,0.302771577,0.306652474,0.271386133,,,,,,,1.216171627,1.278023971,1.318810056,2.241649322,,,,,,,1868.669313,1870.056735,1876.374517,1955.789568,,,,,,,0.002121024,0.002131203,0.002158728,0.002288506,,,,,,,0.030454187,0.030507276,0.030580671,0.0319319,,,,,,,2.826190449,3.178882188,3.202089199,7.088569474,,,,,,,0.006730511,0.007978789,0.008029362,0.048373992,,,,,,,0.183881057,0.192863968,0.193528326,0.36717725,,,,,,,0.051111898,0.059076279,0.059325835,0.218236943,,,,,,,0.016077771,0.016089746,0.016144145,0.017144827,,,,,,,0.358448537,0.366746233,0.370933069,0.661515789,,,,,,,0.004210165,0.004904063,0.004935792,0.109447646,,,,,,,0.380262974,0.389260562,0.394150482,0.347872081,,,,,,,1.49610102,1.557592172,1.597924965,2.51272417,,,,,,,1868.562952,1869.955099,1876.298529,1960.414414,,,,,,,0.001977684,0.001986798,0.002011385,0.002127076,,,,,,,0.032047192,0.032113882,0.032204793,0.033985781,,,,,,,3.458003923,3.81272436,3.842033361,7.86349254,,,,,,,0.007685129,0.008894983,0.008954266,0.049075408,,,,,,,0.167996368,0.176592444,0.1771749,0.348801879,,,,,,,0.050872775,0.058546131,0.058798838,0.216029538,,,,,,,0.016078486,0.016090523,0.016145155,0.017187165,,,,,,,0.447651581,0.456435819,0.461645562,0.785318323,,,,,,,0.003840055,0.004536767,0.004564687,0.108946777,,,,,,,0.320509258,0.328960145,0.332998165,0.294085478,,,,,,,1.298948816,1.359426186,1.398839779,2.303096649,,,,,,,1871.33832,1872.392919,1878.348653,1958.953887,,,,,,,0.002006396,0.002016027,0.002041834,0.002162935,,,,,,,0.030829274,0.030885748,0.030963808,0.032453642,,,,,,,3.000221329,3.348054729,3.372602319,7.250378436,,,,,,,0.006976933,0.008191109,0.008243081,0.047166065,,,,,,,0.169888473,0.178567425,0.179162433,0.348832629,,,,,,,0.049576833,0.057305826,0.057545083,0.212919384,,,,,,,0.016101252,0.016110367,0.016161652,0.017173178,,,,,,,0.385952443,0.394164968,0.398507142,0.694757434,,,,,,,0.004307611,0.005012031,0.005044661,0.110799758,,,,,,,0.391750423,0.40099039,0.406117263,0.358565169,,,,,,,1.536206188,1.598748417,1.640356031,2.569066747,,,,,,,1874.568066,1876.037798,1882.431163,1966.539464,,,,,,,0.002021536,0.002030813,0.002056027,0.002175053,,,,,,,0.032315853,0.032384502,0.032477562,0.034306331,,,,,,,3.765981945,4.147725552,4.179683,8.507953561,,,,,,,0.007865939,0.009094197,0.009155173,0.050384471,,,,,,,0.17468617,0.183419265,0.184023791,0.358672227,,,,,,,0.052295816,0.06008452,0.060344537,0.22032421,,,,,,,0.016130337,0.016143039,0.016198101,0.01724095,,,,,,,0.459607317,0.468630629,0.474076041,0.805855477,,,,,,,0.003379501,0.004087337,0.00411047,0.109083425,,,,,,,0.243927466,0.251864991,0.255087718,0.226068571,,,,,,,1.046209967,1.105988765,1.144872263,2.044305441,,,,,,,1809.635928,1811.14575,1817.486304,1893.143264,,,,,,,0.002082087,0.002092552,0.002120482,0.002251381,,,,,,,0.029306427,0.0293495,0.029410603,0.030518217,,,,,,,2.614312158,2.979994227,2.99994785,6.982676449,,,,,,,0.00609189,0.007324647,0.00736739,0.045461559,,,,,,,0.177515811,0.186411062,0.187045923,0.356114165,,,,,,,0.048748057,0.056635347,0.056862,0.211570525,,,,,,,0.015569086,0.015582108,0.015636688,0.016594967,,,,,,,0.304676059,0.312353883,0.315864205,0.580594258,,,, +Heavy duty long haul truck,B20,2020,,,,0.003473683,0.004120313,0.004155541,0.020891969,,,,,,,0.284824279,0.292503298,0.297422588,0.307161771,,,,,,,1.168820455,1.22622916,1.269221676,1.537733278,,,,,,,1669.623532,1673.904215,1683.095728,1762.694272,,,,,,,0.002008634,0.002020912,0.002050299,0.002171253,,,,,,,0.029846001,0.029891418,0.02997192,0.030459447,,,,,,,2.810135277,3.14239603,3.172029739,4.061821293,,,,,,,0.00629986,0.007425897,0.007490314,0.013693629,,,,,,,0.16749954,0.175529522,0.176262246,0.20491234,,,,,,,0.047003578,0.054200147,0.054535644,0.080336781,,,,,,,0.014365537,0.01440239,0.014481507,0.015216388,,,,,,,0.342545279,0.35002038,0.355255434,0.416310153,,,,,,,0.004081403,0.00473094,0.0047727,0.021691061,,,,,,,0.378301782,0.386457146,0.392197163,0.402275636,,,,,,,1.483011698,1.541767819,1.58703672,1.86287848,,,,,,,1715.817509,1720.066995,1729.286044,1810.47708,,,,,,,0.001999342,0.002010956,0.00203886,0.002154509,,,,,,,0.031780157,0.031837832,0.031940018,0.032569254,,,,,,,3.469820682,3.805117149,3.842056979,4.773966861,,,,,,,0.007458316,0.008590068,0.008666997,0.015251437,,,,,,,0.16987127,0.177890794,0.178621502,0.20802335,,,,,,,0.049958029,0.057160766,0.057522568,0.084060266,,,,,,,0.014764613,0.014801208,0.014880579,0.015630465,,,,,,,0.440716119,0.4486958,0.454806166,0.523967331,,,,,,,0.003490918,0.00416202,0.004198418,0.021322162,,,,,,,0.278915225,0.286951304,0.29199452,0.302223246,,,,,,,1.155353089,1.215226899,1.260907572,1.543299021,,,,,,,1702.356455,1706.676808,1716.066359,1796.327643,,,,,,,0.002150508,0.002163579,0.002195006,0.002325369,,,,,,,0.029953187,0.029998233,0.030078135,0.030549586,,,,,,,2.755368249,3.093103897,3.122840738,4.021699517,,,,,,,0.006320592,0.007489181,0.007555629,0.014173809,,,,,,,0.185795501,0.19416919,0.194998349,0.224843267,,,,,,,0.049766818,0.05724298,0.057602076,0.084395545,,,,,,,0.014646934,0.014684125,0.014764941,0.015506409,,,,,,,0.337174333,0.344984556,0.350345923,0.412836726,,,,,,,0.003989879,0.004622141,0.004662601,0.021268121,,,,,,,0.37077067,0.378723073,0.384453321,0.394683833,,,,,,,1.45279393,1.509875233,1.553081046,1.819048008,,,,,,,1703.601254,1707.780353,1716.928037,1798.416781,,,,,,,0.001913269,0.001924443,0.001951178,0.002061182,,,,,,,0.031510833,0.031567519,0.031667944,0.032291298,,,,,,,3.37766611,3.70436144,3.740087804,4.649061519,,,,,,,0.007292361,0.008393997,0.008468536,0.014759507,,,,,,,0.15774372,0.165535242,0.166218167,0.194769073,,,,,,,0.047763445,0.054773047,0.055120406,0.080924153,,,,,,,0.01465942,0.014695409,0.014774164,0.015526343,,,,,,,0.43268529,0.440465765,0.446549034,0.514604849,,,,,,,0.003589636,0.004255972,0.004293359,0.021359255,,,,,,,0.294248867,0.301903097,0.306129533,0.313479765,,,,,,,1.211582198,1.271214004,1.316753078,1.59756587,,,,,,,1735.34416,1739.299278,1748.270306,1828.864933,,,,,,,0.002120514,0.002133289,0.002164003,0.002291408,,,,,,,0.030268445,0.030315831,0.030399863,0.030899463,,,,,,,2.756261395,3.078916196,3.108720041,3.974416822,,,,,,,0.006511429,0.007671843,0.007740223,0.014342146,,,,,,,0.18241034,0.190707671,0.191516271,0.221239285,,,,,,,0.049688344,0.057105054,0.057464356,0.084176777,,,,,,,0.014930999,0.014965053,0.015042274,0.015787471,,,,,,,0.3543273,0.361783772,0.366395676,0.425741788,,,,,,,0.00408653,0.004730593,0.004772599,0.021584855,,,,,,,0.380492956,0.388425047,0.393728792,0.402389291,,,,,,,1.492367899,1.550815635,1.59566969,1.869281709,,,,,,,1734.919424,1738.973921,1748.031891,1829.867714,,,,,,,0.001977235,0.00198866,0.002016091,0.002129681,,,,,,,0.031840127,0.031898534,0.03200204,0.032639029,,,,,,,3.388227505,3.711645336,3.747952195,4.650116951,,,,,,,0.007470972,0.008593237,0.008670649,0.015207538,,,,,,,0.166532316,0.174477541,0.175197278,0.204397199,,,,,,,0.049470568,0.056610199,0.056971341,0.083338502,,,,,,,0.01492898,0.014963899,0.015041884,0.015797864,,,,,,,0.443722803,0.45149229,0.457197999,0.52432309,,,,,,,0.003715775,0.004363289,0.004401253,0.021199882,,,,,,,0.32061128,0.328122015,0.332509401,0.339765709,,,,,,,1.294727076,1.352724027,1.396671689,1.668257809,,,,,,,1736.928328,1740.683077,1749.353941,1830.141904,,,,,,,0.002005957,0.002017966,0.00204675,0.002165575,,,,,,,0.030630795,0.03068129,0.030770797,0.031315748,,,,,,,2.930704964,3.248578631,3.279759299,4.144286933,,,,,,,0.006761522,0.007889377,0.007959028,0.014320327,,,,,,,0.168427986,0.176450454,0.177183653,0.206133683,,,,,,,0.048173106,0.055368827,0.055715757,0.081810252,,,,,,,0.01494515,0.014977482,0.015052137,0.015799067,,,,,,,0.381868864,0.389198549,0.393973005,0.454384588,,,,,,,0.004183552,0.004837551,0.004880586,0.021891783,,,,,,,0.391991336,0.400142126,0.405704695,0.414909187,,,,,,,1.532495463,1.591948575,1.63821111,1.918220533,,,,,,,1741.883572,1745.974426,1755.043986,1836.613976,,,,,,,0.002021044,0.002032739,0.002060878,0.00217781,,,,,,,0.032113191,0.032172842,0.03227852,0.032928427,,,,,,,3.69196465,4.040044582,4.079533244,5.051773349,,,,,,,0.007651077,0.008790688,0.008870028,0.015583954,,,,,,,0.173219138,0.181291691,0.18203584,0.211751539,,,,,,,0.050888363,0.058137386,0.058507113,0.085325944,,,,,,,0.01498908,0.015024309,0.015102399,0.015856238,,,,,,,0.455722312,0.463704302,0.469665813,0.538875344,,,,,,,0.003253771,0.003912848,0.003945783,0.020848824,,,,,,,0.24384922,0.25102925,0.254552154,0.260999524,,,,,,,1.041283658,1.099347153,1.142865759,1.415847196,,,,,,,1679.3001,1683.374564,1692.272297,1770.749103,,,,,,,0.002081633,0.002094637,0.002125787,0.002254165,,,,,,,0.029122827,0.029162772,0.029233627,0.029656274,,,,,,,2.540224971,2.875465738,2.902060781,3.782875806,,,,,,,0.005873781,0.007021184,0.007081128,0.013332534,,,,,,,0.176056818,0.184278282,0.185054687,0.214030975,,,,,,,0.047336111,0.054685581,0.055019798,0.081053427,,,,,,,0.014448028,0.014483092,0.014559673,0.015285039,,,,,,,0.300537951,0.307518661,0.31140479,0.364943073,,, +Heavy duty long haul truck,B20,2025,,,,,0.003496072,0.00413627,0.004167233,0.004225549,,,,,,,0.286829496,0.294006452,0.298571383,0.309050018,,,,,,,1.17617602,1.233571445,1.275878286,1.403008144,,,,,,,1666.992895,1670.344529,1678.970651,1705.495592,,,,,,,0.002007615,0.002022096,0.002051947,0.002152987,,,,,,,0.029901866,0.029930285,0.030000345,0.030117345,,,,,,,2.825674074,3.151734131,3.178709307,3.224468133,,,,,,,0.006340986,0.007455172,0.007511761,0.007617163,,,,,,,0.167982967,0.175870549,0.176511919,0.177611025,,,,,,,0.047213402,0.054350378,0.054645736,0.055224478,,,,,,,0.014342952,0.014371801,0.01444604,0.014674262,,,,,,,0.344587403,0.351486357,0.356325122,0.367369014,,,,,,,0.004108416,0.004750078,0.004786707,0.00485321,,,,,,,0.381046911,0.388459743,0.393704687,0.404716153,,,,,,,1.492832704,1.550733181,1.594825121,1.721959353,,,,,,,1713.26521,1716.542722,1725.169533,1751.703541,,,,,,,0.001998132,0.002011934,0.002040324,0.00213695,,,,,,,0.031851088,0.03188719,0.031976084,0.032121371,,,,,,,3.490550799,3.818083438,3.851390765,3.906330992,,,,,,,0.007508282,0.008625429,0.00869288,0.008813971,,,,,,,0.170354498,0.178231243,0.178870541,0.179965925,,,,,,,0.050187094,0.057323976,0.057642066,0.058253261,,,,,,,0.014742719,0.014770928,0.0148452,0.015073521,,,,,,,0.443525769,0.450680722,0.456248485,0.467929614,,,,,,,0.003513921,0.004178479,0.004210487,0.00427077,,,,,,,0.280913629,0.288456677,0.293149606,0.304073975,,,,,,,1.162735143,1.222774456,1.267828946,1.404389734,,,,,,,1699.725148,1703.081585,1711.885968,1738.896608,,,,,,,0.002149156,0.002164688,0.002196669,0.002305591,,,,,,,0.030008593,0.030036797,0.030106355,0.030221774,,,,,,,2.770661172,3.102171942,3.129318859,3.175341739,,,,,,,0.006362782,0.007519325,0.007577733,0.007686555,,,,,,,0.186343336,0.194555946,0.195281654,0.196510142,,,,,,,0.049990816,0.057403891,0.057720104,0.058334162,,,,,,,0.014624332,0.014653225,0.014729001,0.014961399,,,,,,,0.339213266,0.346453952,0.351421481,0.362901059,,,,,,,0.00401607,0.004640684,0.004676172,0.004740769,,,,,,,0.37343449,0.380676127,0.38592668,0.397144118,,,,,,,1.462322687,1.518520911,1.560567509,1.68139508,,,,,,,1701.147845,1704.332667,1712.876666,1739.31307,,,,,,,0.001912331,0.001925513,0.001952668,0.002044562,,,,,,,0.03158055,0.031616018,0.031703385,0.031846976,,,,,,,3.397777616,3.716989811,3.749179715,3.802431229,,,,,,,0.007340809,0.008428264,0.008493612,0.008611225,,,,,,,0.158194761,0.165852963,0.166450559,0.167481738,,,,,,,0.04798337,0.054929658,0.05523507,0.055825073,,,,,,,0.014638368,0.01466579,0.014739341,0.01496682,,,,,,,0.435411348,0.442399545,0.447956439,0.459805281,,,,,,,0.00361338,0.004272928,0.00430579,0.00436722,,,,,,,0.296391364,0.303445875,0.307285653,0.315051062,,,,,,,1.219412793,1.279018304,1.323828463,1.45842739,,,,,,,1732.658267,1735.629133,1744.009504,1770.34941,,,,,,,0.002119188,0.00213437,0.002165626,0.002272075,,,,,,,0.030326752,0.030356421,0.03042958,0.030550582,,,,,,,2.771887672,3.088310517,3.115438766,3.161167935,,,,,,,0.006555052,0.007702956,0.007763033,0.00787412,,,,,,,0.182944601,0.191084832,0.191792498,0.192993311,,,,,,,0.049913094,0.057266293,0.057582601,0.058195741,,,,,,,0.014907934,0.014933515,0.015005642,0.015232277,,,,,,,0.356513312,0.363296119,0.367477213,0.376031771,,,,,,,0.004113723,0.00474986,0.004786706,0.004853472,,,,,,,0.383276262,0.390424108,0.395221259,0.404663853,,,,,,,1.502299529,1.559818046,1.603462882,1.728793864,,,,,,,1732.433628,1735.470938,1743.915098,1770.223967,,,,,,,0.001976078,0.00198964,0.002017545,0.002112447,,,,,,,0.031911974,0.031948541,0.032038605,0.032185849,,,,,,,3.408699993,3.724511295,3.757216171,3.811102567,,,,,,,0.007521292,0.008628848,0.008696719,0.008818342,,,,,,,0.167008137,0.174812797,0.175442654,0.17652364,,,,,,,0.049699297,0.056773213,0.057090748,0.057700589,,,,,,,0.014907656,0.014933807,0.015006504,0.015232889,,,,,,,0.446573229,0.453477297,0.45862838,0.468853376,,,,,,,0.003740093,0.004380578,0.004413918,0.004475681,,,,,,,0.322928293,0.3297815,0.333747477,0.341523295,,,,,,,1.303100312,1.360737914,1.40379791,1.530992506,,,,,,,1734.219532,1737.000679,1745.089717,1770.939472,,,,,,,0.002004857,0.002019064,0.002048325,0.002147593,,,,,,,0.03069291,0.030724528,0.03080241,0.030931181,,,,,,,2.947570302,3.258916844,3.28717203,3.334497759,,,,,,,0.006806334,0.007921198,0.007982337,0.00809433,,,,,,,0.168912274,0.176791863,0.177433669,0.17853315,,,,,,,0.048391193,0.055524682,0.055829976,0.056423001,,,,,,,0.014921892,0.014945842,0.01501547,0.015237894,,,,,,,0.38423165,0.39082966,0.395138414,0.403714999,,,,,,,0.004211433,0.004857294,0.004895043,0.004963235,,,,,,,0.394862117,0.402209655,0.407250739,0.417298572,,,,,,,1.542735323,1.601231385,1.646247772,1.775526271,,,,,,,1739.291577,1742.395183,1750.869992,1777.215003,,,,,,,0.002019738,0.002033672,0.002062321,0.002160025,,,,,,,0.032186551,0.032223876,0.032315842,0.032465544,,,,,,,3.714283874,4.054052763,4.089630886,4.148080801,,,,,,,0.007702686,0.008827195,0.008896758,0.009021035,,,,,,,0.173711427,0.181638418,0.182289645,0.183403099,,,,,,,0.051122737,0.058304297,0.058629396,0.059251483,,,,,,,0.014966837,0.01499356,0.015066523,0.015293222,,,,,,,0.458661143,0.465757841,0.471149452,0.48195619,,,,,,,0.003274457,0.00392766,0.003956641,0.004012294,,,,,,,0.245549268,0.252260811,0.255478258,0.262208782,,,,,,,1.047615888,1.106120161,1.149188865,1.281490807,,,,,,,1676.469809,1679.649132,1688.005096,1714.040422,,,,,,,0.002080516,0.002095872,0.002127523,0.002234767,,,,,,,0.029171953,0.02919699,0.029258652,0.029362563,,,,,,,2.553447474,2.883117708,2.907499886,2.949493717,,,,,,,0.005911605,0.007048229,0.007100951,0.007201109,,,,,,,0.176569008,0.184639936,0.185319512,0.186477404,,,,,,,0.047543779,0.054834745,0.055129164,0.055708992,,,,,,,0.014423712,0.014451075,0.014522985,0.014746986,,,,,,,0.302259768,0.308706099,0.312247721,0.319742913,, +Heavy duty long haul truck,B20,2030,,,,,,0.003503991,0.004143501,0.004174233,0.00421549,,,,,,,0.287793928,0.294765378,0.299304981,0.309077547,,,,,,,1.181389456,1.23833114,1.280677696,1.40067687,,,,,,,1669.855644,1672.476757,1681.042538,1694.334593,,,,,,,0.002009155,0.002023896,0.002053662,0.002150093,,,,,,,0.029925491,0.029947748,0.030017305,0.03011012,,,,,,,2.833021085,3.157875086,3.18463978,3.218863888,,,,,,,0.006355684,0.00746843,0.0075246,0.007599983,,,,,,,0.168168579,0.176024547,0.17666119,0.177513779,,,,,,,0.04728481,0.054418549,0.054711711,0.055105682,,,,,,,0.014367589,0.01439015,0.014463875,0.014578262,,,,,,,0.3456842,0.352340418,0.357151459,0.367077022,,,,,,,0.004118286,0.004758731,0.004795088,0.004843765,,,,,,,0.382309215,0.389432845,0.394646196,0.404865666,,,,,,,1.499004149,1.556163721,1.600266356,1.720070969,,,,,,,1716.194905,1718.722351,1727.287828,1740.464505,,,,,,,0.001999515,0.002013591,0.0020419,0.002134135,,,,,,,0.031881076,0.031909353,0.031997611,0.032115342,,,,,,,3.500067235,3.825813812,3.858865788,3.901462164,,,,,,,0.007526712,0.00864141,0.00870836,0.008797972,,,,,,,0.170539947,0.178384787,0.179019323,0.179868102,,,,,,,0.050266605,0.057397919,0.057713627,0.058136787,,,,,,,0.014767933,0.014789693,0.014863432,0.014976855,,,,,,,0.444933953,0.451759686,0.457293125,0.467759253,,,,,,,0.003522046,0.004185942,0.004217718,0.004260495,,,,,,,0.281883255,0.289222353,0.293890268,0.304085383,,,,,,,1.168136869,1.227746441,1.272855775,1.401824138,,,,,,,1702.680857,1705.284674,1714.029205,1727.653095,,,,,,,0.002150716,0.002166558,0.002198454,0.00230243,,,,,,,0.030032038,0.030054144,0.030123214,0.030215461,,,,,,,2.778001193,3.108324112,3.135263133,3.169710205,,,,,,,0.006377838,0.007532988,0.007590973,0.007669,,,,,,,0.18655554,0.194730592,0.195451166,0.19641765,,,,,,,0.05006762,0.057476955,0.057790867,0.058213878,,,,,,,0.014649771,0.014672184,0.014747449,0.014864696,,,,,,,0.340319277,0.347317881,0.352257827,0.362592173,,,,,,,0.00402563,0.00464907,0.004684291,0.004731376,,,,,,,0.37466859,0.381631573,0.386850595,0.397275146,,,,,,,1.468258522,1.523734858,1.565786899,1.679614499,,,,,,,1704.091962,1706.523446,1715.005234,1728.021672,,,,,,,0.00191373,0.001927148,0.001954224,0.002041923,,,,,,,0.031610018,0.031637802,0.031724532,0.031840176,,,,,,,3.406963071,3.724468416,3.756406396,3.797553456,,,,,,,0.00735866,0.008443752,0.008508611,0.008595302,,,,,,,0.158367061,0.165996315,0.166589514,0.167381864,,,,,,,0.048059444,0.055000627,0.055303735,0.055709236,,,,,,,0.014663712,0.014684647,0.014757662,0.014869709,,,,,,,0.436789648,0.443458951,0.448981592,0.459614617,,,,,,,0.003621826,0.004280608,0.004313234,0.0043571,,,,,,,0.297356587,0.304186327,0.308002382,0.31517419,,,,,,,1.2249507,1.284069271,1.328925697,1.455992676,,,,,,,1735.64845,1737.85473,1746.175568,1758.931896,,,,,,,0.002120709,0.002136195,0.002167366,0.002268983,,,,,,,0.030351395,0.030374651,0.030447298,0.030544304,,,,,,,2.779308011,3.094485663,3.121405414,3.155904682,,,,,,,0.00657073,0.007717042,0.007776687,0.007856853,,,,,,,0.183151119,0.191254989,0.191957684,0.192899628,,,,,,,0.04999031,0.057339431,0.057653453,0.058076148,,,,,,,0.014933671,0.014952667,0.015024286,0.015134073,,,,,,,0.357622485,0.364141833,0.368296552,0.375822836,,,,,,,0.004123683,0.004758569,0.004795142,0.004844078,,,,,,,0.384522483,0.391375546,0.396142109,0.404863305,,,,,,,1.508477584,1.565239275,1.60889252,1.726972433,,,,,,,1735.431117,1737.699069,1746.081879,1758.838313,,,,,,,0.001977449,0.001991275,0.002019101,0.002109688,,,,,,,0.031942354,0.031970988,0.032060402,0.032179674,,,,,,,3.418065338,3.732111192,3.76456411,3.806427331,,,,,,,0.007539893,0.00864494,0.008712309,0.008802435,,,,,,,0.167190596,0.174963984,0.175589333,0.176425245,,,,,,,0.049778822,0.056847046,0.057162226,0.057584352,,,,,,,0.014933456,0.01495299,0.015025157,0.015134964,,,,,,,0.447970718,0.454538635,0.459656358,0.468725222,,,,,,,0.003748825,0.004388403,0.004421496,0.004465869,,,,,,,0.323961698,0.33057008,0.334510857,0.341680338,,,,,,,1.308709025,1.365774865,1.408863485,1.528842255,,,,,,,1737.175503,1739.199337,1747.226725,1759.4627,,,,,,,0.002006332,0.002020805,0.002049983,0.00214473,,,,,,,0.030719173,0.030743934,0.030821257,0.030924434,,,,,,,2.955433436,3.265398361,3.293436588,3.329433724,,,,,,,0.006822586,0.007935594,0.007996281,0.008077628,,,,,,,0.169098177,0.176945939,0.177582961,0.178435636,,,,,,,0.048466086,0.055595364,0.055898361,0.056305098,,,,,,,0.014947338,0.014964763,0.015033867,0.015139185,,,,,,,0.385409815,0.391724231,0.396004629,0.403537964,,,,,,,0.004221661,0.004866221,0.004903689,0.004953859,,,,,,,0.396153754,0.403197333,0.408206797,0.417496556,,,,,,,1.549107473,1.606822398,1.651847929,1.773660955,,,,,,,1742.255057,1744.599514,1753.012731,1765.878573,,,,,,,0.002021104,0.002035325,0.002063893,0.002157163,,,,,,,0.032217565,0.032246808,0.032338109,0.032459879,,,,,,,3.724503466,4.06232911,4.097635394,4.143179364,,,,,,,0.007721795,0.008843695,0.008912742,0.009005175,,,,,,,0.173900703,0.18179491,0.182441327,0.183305878,,,,,,,0.0512044,0.058379936,0.058702596,0.05913515,,,,,,,0.01499235,0.015012539,0.01508497,0.015195724,,,,,,,0.460103954,0.466855311,0.472212428,0.481829673,,,,,,,0.003281626,0.003934377,0.003963146,0.004001881,,,,,,,0.246323455,0.252858533,0.256056114,0.262278162,,,,,,,1.052531152,1.110714083,1.15384178,1.278844297,,,,,,,1679.302004,1681.756856,1690.054937,1702.841123,,,,,,,0.002082138,0.002097773,0.002129336,0.002231694,,,,,,,0.029192757,0.029212366,0.02927359,0.029355319,,,,,,,2.559878734,2.888589151,2.912781023,2.94355456,,,,,,,0.005924859,0.007060492,0.007112827,0.007183269,,,,,,,0.176766545,0.184803216,0.185477837,0.186382482,,,,,,,0.047613959,0.054902484,0.055194723,0.055588573,,,,,,,0.014448085,0.014469216,0.014540624,0.014650662,,,,,,,0.303166142,0.309400267,0.312919841,0.319484339, +Heavy duty long haul truck,B20,2035,,,,,,,0.003512507,0.004149748,0.004178963,0.00421874,,,,,,,0.288442646,0.295415646,0.299687714,0.309223386,,,,,,,1.185560051,1.242355158,1.281916681,1.399805482,,,,,,,1671.560371,1674.316407,1682.418023,1694.571357,,,,,,,0.002010794,0.002025358,0.002053023,0.002147816,,,,,,,0.029939433,0.029962864,0.03002892,0.03011825,,,,,,,2.839392467,3.163303022,3.188761343,3.221508093,,,,,,,0.006371039,0.007479888,0.007533282,0.007605955,,,,,,,0.168324864,0.176157605,0.176762612,0.177584011,,,,,,,0.047369905,0.054477453,0.054756186,0.05513613,,,,,,,0.014382264,0.014405984,0.014475713,0.014580307,,,,,,,0.346405893,0.353073574,0.35760502,0.367258308,,,,,,,0.004127948,0.004766209,0.004800766,0.004847678,,,,,,,0.383127495,0.390269304,0.395185416,0.405135412,,,,,,,1.503704554,1.560770918,1.602024463,1.719628969,,,,,,,1717.93745,1720.602529,1728.696183,1740.721136,,,,,,,0.002001033,0.002014932,0.002041237,0.00213191,,,,,,,0.031898777,0.031928516,0.032012343,0.032125647,,,,,,,3.507707702,3.832615822,3.864038837,3.904849869,,,,,,,0.00754426,0.008655224,0.008718853,0.008805214,,,,,,,0.170695991,0.178517536,0.179120594,0.179938186,,,,,,,0.050356408,0.05746181,0.057761953,0.058169935,,,,,,,0.014782934,0.014805878,0.014875561,0.014979072,,,,,,,0.445833694,0.452687743,0.457909087,0.468067436,,,,,,,0.003530833,0.00419239,0.004222603,0.004263851,,,,,,,0.282539951,0.289878046,0.294269997,0.304221577,,,,,,,1.172496894,1.231946236,1.274082474,1.400807147,,,,,,,1704.441569,1707.184125,1715.449078,1727.903792,,,,,,,0.002152426,0.002168072,0.002197713,0.002299936,,,,,,,0.030045873,0.030069135,0.030134757,0.030223543,,,,,,,2.784409339,3.113769697,3.139396166,3.172349092,,,,,,,0.006393661,0.007544792,0.00759992,0.007675156,,,,,,,0.186729312,0.194881502,0.195566432,0.19649756,,,,,,,0.050157563,0.057540059,0.057838561,0.058246557,,,,,,,0.014664926,0.014688538,0.014759668,0.014866855,,,,,,,0.34105117,0.348058549,0.352710744,0.362765471,,,,,,,0.004035008,0.004656317,0.004689792,0.00473517,,,,,,,0.375472502,0.382451754,0.387371729,0.397525518,,,,,,,1.472773693,1.528158658,1.567497474,1.679225695,,,,,,,1705.842903,1708.411671,1716.420221,1728.288502,,,,,,,0.00191522,0.001928476,0.001953638,0.002039845,,,,,,,0.031627431,0.031656652,0.031739011,0.031850312,,,,,,,3.414358078,3.731041467,3.761410049,3.800833201,,,,,,,0.007375693,0.00845714,0.008518781,0.008602321,,,,,,,0.158514171,0.166120292,0.166683934,0.167447294,,,,,,,0.048146102,0.055061953,0.055350109,0.055741066,,,,,,,0.014678786,0.014700908,0.014769845,0.01487201,,,,,,,0.437673713,0.44436933,0.449578683,0.459903649,,,,,,,0.003630771,0.004287249,0.004318262,0.00436056,,,,,,,0.297986123,0.304823227,0.308425838,0.315401556,,,,,,,1.22936976,1.288339768,1.330250863,1.45508542,,,,,,,1737.425651,1739.773963,1747.615254,1759.1938,,,,,,,0.002122381,0.002137675,0.00216664,0.002266542,,,,,,,0.030365962,0.030390434,0.030459425,0.030552803,,,,,,,2.785665271,3.099944967,3.125548714,3.158561975,,,,,,,0.006586868,0.007729222,0.007785917,0.007863211,,,,,,,0.183321229,0.191402224,0.192069896,0.192977465,,,,,,,0.050080152,0.057402659,0.057701198,0.058108891,,,,,,,0.014948971,0.014969184,0.015036676,0.015136334,,,,,,,0.358333411,0.364869556,0.3687937,0.376083289,,,,,,,0.004133363,0.004766099,0.00480086,0.004848023,,,,,,,0.385320011,0.392194245,0.396696352,0.405172611,,,,,,,1.513167272,1.569839851,1.610678002,1.726580765,,,,,,,1737.211057,1739.620677,1747.525498,1759.116947,,,,,,,0.001978946,0.001992601,0.002018457,0.00210751,,,,,,,0.03196028,0.031990399,0.032075331,0.032190122,,,,,,,3.42554391,3.738793637,3.769651179,3.809760642,,,,,,,0.007557479,0.008658854,0.008722882,0.008809733,,,,,,,0.167344505,0.17509477,0.175688996,0.176494309,,,,,,,0.049868243,0.05691087,0.05721051,0.057617493,,,,,,,0.014948776,0.014969529,0.01503758,0.015137368,,,,,,,0.448853318,0.45545248,0.460288096,0.469071122,,,,,,,0.003757819,0.004395169,0.004426625,0.004469399,,,,,,,0.324628149,0.331249119,0.334971631,0.341939013,,,,,,,1.313100175,1.370040473,1.410317275,1.528147785,,,,,,,1738.930336,1741.093815,1748.650098,1759.719926,,,,,,,0.002007922,0.002022218,0.002049333,0.002142474,,,,,,,0.030734678,0.030760735,0.030834176,0.030933474,,,,,,,2.962010844,3.27112031,3.297782282,3.332246468,,,,,,,0.006838853,0.007948038,0.008005721,0.008084133,,,,,,,0.16925459,0.177079182,0.177684579,0.178506034,,,,,,,0.048553199,0.055656444,0.055944519,0.056336743,,,,,,,0.014962444,0.014981073,0.015046116,0.015141398,,,,,,,0.386158189,0.392494464,0.39653926,0.403829503,,,,,,,0.004231558,0.004873936,0.004909547,0.0049579,,,,,,,0.396981601,0.404047041,0.40877692,0.4178092,,,,,,,1.553939811,1.611567285,1.653689597,1.773256564,,,,,,,1744.015932,1746.500367,1754.438306,1766.141917,,,,,,,0.002022621,0.002036662,0.002063204,0.002154899,,,,,,,0.032235872,0.032266627,0.032353341,0.032470542,,,,,,,3.732634836,4.069608006,4.10317571,4.146816495,,,,,,,0.007739784,0.008857959,0.008923578,0.009012656,,,,,,,0.174059265,0.181930156,0.182544371,0.183377292,,,,,,,0.051295739,0.05844529,0.058752022,0.059169074,,,,,,,0.015007511,0.015028902,0.015097244,0.015197997,,,,,,,0.461016766,0.467800195,0.472860564,0.482179963,,,,,,,0.003289786,0.003940183,0.003967534,0.004004891,,,,,,,0.246837862,0.253372089,0.256388674,0.26244577,,,,,,,1.056582923,1.114589369,1.15485321,1.277709247,,,,,,,1680.987551,1683.576057,1691.418377,1703.066521,,,,,,,0.002083871,0.002099317,0.002128653,0.002229274,,,,,,,0.029205037,0.029225656,0.02928382,0.029362489,,,,,,,2.565742635,2.893445195,2.916458401,2.945879123,,,,,,,0.005939512,0.007071087,0.007120844,0.007188773,,,,,,,0.176930968,0.184944344,0.185585479,0.18645712,,,,,,,0.047699307,0.05496101,0.055238885,0.055618785,,,,,,,0.014462588,0.014484867,0.014552362,0.014652609,,,,,,,0.303755019,0.309997583,0.313320051,0.319680948 +Heavy duty long haul truck,B20,2040,,,,,,,,0.003514481,0.004152572,0.00418129,,,,,,,,0.288651865,0.295651786,0.299870305,,,,,,,,1.187847443,1.243162004,1.28241977,,,,,,,,1671.897789,1675.136162,1683.094313,,,,,,,,0.002012451,0.002025113,0.002052619,,,,,,,,0.029941945,0.02996975,0.030034634,,,,,,,,2.84074974,3.165782997,3.19079144,,,,,,,,0.006374569,0.007485068,0.007537554,,,,,,,,0.168358388,0.176218001,0.176812528,,,,,,,,0.047390151,0.054504022,0.05477805,,,,,,,,0.014385161,0.014413042,0.014481534,,,,,,,,0.346622576,0.35335104,0.357822953,,,,,,,,0.004130127,0.004769593,0.00480356,,,,,,,,0.38335688,0.390597289,0.395446429,,,,,,,,1.506029336,1.561884748,1.602788849,,,,,,,,1718.279738,1721.442128,1729.390884,,,,,,,,0.002002615,0.002014667,0.002040825,,,,,,,,0.031901981,0.031937264,0.03201961,,,,,,,,3.50929361,3.83571819,3.866591368,,,,,,,,0.007548186,0.008661478,0.008724019,,,,,,,,0.170729574,0.178577676,0.179170408,,,,,,,,0.050377515,0.057490647,0.057785744,,,,,,,,0.01478588,0.014813106,0.014881532,,,,,,,,0.446072769,0.453060959,0.458208384,,,,,,,,0.003532873,0.004195302,0.004225004,,,,,,,,0.282756715,0.290113057,0.294450772,,,,,,,,1.174943174,1.232751161,1.274570087,,,,,,,,1704.790748,1708.031058,1716.147731,,,,,,,,0.002154206,0.002167777,0.002197251,,,,,,,,0.030048371,0.030075976,0.030140435,,,,,,,,2.785776438,3.116258104,3.14143366,,,,,,,,0.006397308,0.007550126,0.007604322,,,,,,,,0.186766191,0.194950054,0.195623058,,,,,,,,0.05017887,0.057568527,0.057862001,,,,,,,,0.014667935,0.014695824,0.014765678,,,,,,,,0.341275491,0.348336407,0.352928017,,,,,,,,0.004037124,0.004659596,0.004692498,,,,,,,,0.375703717,0.382769631,0.38762259,,,,,,,,1.47498755,1.529240298,1.568241788,,,,,,,,1706.185117,1709.256214,1717.116625,,,,,,,,0.001916728,0.00192825,0.001953268,,,,,,,,0.031630555,0.031665225,0.031746137,,,,,,,,3.415894744,3.734042601,3.763874076,,,,,,,,0.007379501,0.008463198,0.008523783,,,,,,,,0.158545824,0.166176482,0.166730357,,,,,,,,0.048166476,0.055089638,0.055372906,,,,,,,,0.014681731,0.014708174,0.014775842,,,,,,,,0.437913876,0.444731738,0.449867304,,,,,,,,0.003632834,0.004290248,0.004320738,,,,,,,,0.298152715,0.305079615,0.308631336,,,,,,,,1.231788701,1.28920137,1.330790205,,,,,,,,1737.771863,1740.632441,1748.325016,,,,,,,,0.002124119,0.002137385,0.002166188,,,,,,,,0.030368575,0.030397615,0.030465398,,,,,,,,2.787012301,3.102437849,3.12759287,,,,,,,,0.006590562,0.007734725,0.007790461,,,,,,,,0.183357347,0.191468926,0.192125189,,,,,,,,0.050101379,0.057431158,0.057724702,,,,,,,,0.014951945,0.014976574,0.015042788,,,,,,,,0.358511664,0.365169616,0.369035766,,,,,,,,0.004135541,0.004769508,0.004803675,,,,,,,,0.385523854,0.392529286,0.396965594,,,,,,,,1.515462216,1.570969883,1.611457867,,,,,,,,1737.555995,1740.482193,1748.237186,,,,,,,,0.001980499,0.001992346,0.002018055,,,,,,,,0.031963517,0.031999268,0.032082688,,,,,,,,3.427093415,3.741846755,3.77215871,,,,,,,,0.007561404,0.008665157,0.008728086,,,,,,,,0.167377473,0.175154174,0.175738083,,,,,,,,0.049889208,0.056939716,0.057234277,,,,,,,,0.014951747,0.014976948,0.01504371,,,,,,,,0.449068626,0.455833546,0.460595854,,,,,,,,0.003759878,0.004398226,0.004429147,,,,,,,,0.324797475,0.331527702,0.335195895,,,,,,,,1.31540445,1.370975024,1.410928105,,,,,,,,1739.269687,1741.942755,1749.351937,,,,,,,,0.002009547,0.002021963,0.002048925,,,,,,,,0.030737472,0.030768388,0.030840529,,,,,,,,2.963398282,3.273730029,3.299924509,,,,,,,,0.006842547,0.007953665,0.008010364,,,,,,,,0.169288094,0.177139541,0.177734521,,,,,,,,0.048573798,0.055683981,0.055967217,,,,,,,,0.014965366,0.014988379,0.015052158,,,,,,,,0.386339301,0.392816643,0.396799924,,,,,,,,0.004233782,0.00487743,0.004912431,,,,,,,,0.397196655,0.404392212,0.409053808,,,,,,,,1.556306472,1.61273163,1.654492538,,,,,,,,1744.358667,1747.351333,1755.141882,,,,,,,,0.002024218,0.002036384,0.002062778,,,,,,,,0.032239174,0.032275683,0.032360854,,,,,,,,3.734316746,4.072930956,4.105907061,,,,,,,,0.007743792,0.008864418,0.008928913,,,,,,,,0.174093178,0.181991574,0.18259516,,,,,,,,0.051317119,0.058474818,0.058776359,,,,,,,,0.015010462,0.015036227,0.015103299,,,,,,,,0.461243216,0.468191345,0.473176346,,,,,,,,0.003291708,0.003942801,0.003969692,,,,,,,,0.246980725,0.25357422,0.256549348,,,,,,,,1.058943155,1.11526495,1.155238013,,,,,,,,1681.317671,1684.387717,1692.089277,,,,,,,,0.002085627,0.002099053,0.00212822,,,,,,,,0.029207255,0.029231707,0.029288851,,,,,,,,2.567011865,2.895659211,2.9182712,,,,,,,,0.005942935,0.007075866,0.007124786,,,,,,,,0.17696606,0.18500832,0.185638437,,,,,,,,0.04771974,0.054987364,0.055260584,,,,,,,,0.014465436,0.014491855,0.014558141,,,,,,,,0.303908718,0.310239508,0.313514274 +Heavy duty long haul truck,B20,2045,,,,,,,,,0.003515818,0.004152995,,,,,,,,,0.288688814,0.295687283,,,,,,,,,1.188053885,1.243267881,,,,,,,,,1671.979641,1675.25797,,,,,,,,,0.002012494,0.002025075,,,,,,,,,0.029942631,0.029970773,,,,,,,,,2.841523679,3.166156784,,,,,,,,,0.006376921,0.007485844,,,,,,,,,0.168377215,0.176226988,,,,,,,,,0.047404607,0.054507995,,,,,,,,,0.014385871,0.014414086,,,,,,,,,0.346662636,0.353392751,,,,,,,,,0.004131516,0.004770103,,,,,,,,,0.383402129,0.390647126,,,,,,,,,1.506262681,1.562038397,,,,,,,,,1718.362346,1721.567813,,,,,,,,,0.002002653,0.002014627,,,,,,,,,0.031902832,0.031938584,,,,,,,,,3.510126513,3.836190779,,,,,,,,,0.007550636,0.008662421,,,,,,,,,0.17074824,0.1785868,,,,,,,,,0.05039215,0.05749501,,,,,,,,,0.014786592,0.014814189,,,,,,,,,0.446121473,0.453117337,,,,,,,,,0.003534257,0.00419574,,,,,,,,,0.282794219,0.290148272,,,,,,,,,1.175156172,1.232855193,,,,,,,,,1704.875354,1708.156651,,,,,,,,,0.002154251,0.002167731,,,,,,,,,0.03004905,0.030076995,,,,,,,,,2.786560521,3.11663472,,,,,,,,,0.006399743,0.007550929,,,,,,,,,0.186786291,0.194960317,,,,,,,,,0.050193947,0.057572801,,,,,,,,,0.014668659,0.014696905,,,,,,,,,0.341316239,0.348377963,,,,,,,,,0.004038475,0.00466009,,,,,,,,,0.375747822,0.382817471,,,,,,,,,1.475213081,1.529388811,,,,,,,,,1706.268655,1709.382318,,,,,,,,,0.001916767,0.001928215,,,,,,,,,0.031631401,0.031666528,,,,,,,,,3.416702904,3.734497803,,,,,,,,,0.007381886,0.008464114,,,,,,,,,0.158563859,0.166184942,,,,,,,,,0.048180696,0.055093817,,,,,,,,,0.014682454,0.014709259,,,,,,,,,0.437961391,0.444786325,,,,,,,,,0.003634219,0.004290699,,,,,,,,,0.298189995,0.305118357,,,,,,,,,1.232005752,1.289314389,,,,,,,,,1737.856983,1740.760007,,,,,,,,,0.002124163,0.002137339,,,,,,,,,0.030369296,0.030398695,,,,,,,,,2.787770726,3.102815827,,,,,,,,,0.006592998,0.007735554,,,,,,,,,0.183377206,0.191478942,,,,,,,,,0.050116372,0.057435443,,,,,,,,,0.014952681,0.014977673,,,,,,,,,0.358552398,0.365214707,,,,,,,,,0.004136924,0.004770021,,,,,,,,,0.385568457,0.392579511,,,,,,,,,1.515696676,1.571124132,,,,,,,,,1737.64102,1740.610631,,,,,,,,,0.001980538,0.001992306,,,,,,,,,0.031964388,0.032000593,,,,,,,,,3.427902005,3.742307414,,,,,,,,,0.007563847,0.008666104,,,,,,,,,0.16739605,0.175163081,,,,,,,,,0.049903756,0.056944057,,,,,,,,,0.014952484,0.014978045,,,,,,,,,0.449117165,0.455890541,,,,,,,,,0.003761238,0.004398687,,,,,,,,,0.324836215,0.331569543,,,,,,,,,1.315621837,1.371100013,,,,,,,,,1739.35414,1742.069018,,,,,,,,,0.00200959,0.002021925,,,,,,,,,0.03073824,0.030769547,,,,,,,,,2.964157638,3.27412773,,,,,,,,,0.00684494,0.007954514,,,,,,,,,0.169306902,0.177148719,,,,,,,,,0.048588344,0.055688151,,,,,,,,,0.014966092,0.014989466,,,,,,,,,0.386381649,0.392865105,,,,,,,,,0.00423519,0.004877956,,,,,,,,,0.397243042,0.404444226,,,,,,,,,1.556546066,1.612891806,,,,,,,,,1744.443152,1747.478073,,,,,,,,,0.002024258,0.002036342,,,,,,,,,0.032240075,0.032277045,,,,,,,,,3.735190722,4.073435371,,,,,,,,,0.007746277,0.008865391,,,,,,,,,0.17411217,0.182000806,,,,,,,,,0.051331927,0.058479273,,,,,,,,,0.01501119,0.01503732,,,,,,,,,0.46129328,0.468250168,,,,,,,,,0.003293044,0.003943194,,,,,,,,,0.247012364,0.253604822,,,,,,,,,1.059140312,1.115350524,,,,,,,,,1681.397486,1684.509854,,,,,,,,,0.002085672,0.002099012,,,,,,,,,0.02920783,0.02923264,,,,,,,,,2.567765292,2.895999612,,,,,,,,,0.005945282,0.007076589,,,,,,,,,0.176985318,0.185017977,,,,,,,,,0.047734381,0.054991343,,,,,,,,,0.014466117,0.014492901,,,,,,,,,0.303943303,0.310275987 +Heavy duty long haul truck,B20,2050,,,,,,,,,,0.003518764,,,,,,,,,,0.288975355,,,,,,,,,,1.188955371,,,,,,,,,,1672.982284,,,,,,,,,,0.002012147,,,,,,,,,,0.02995107,,,,,,,,,,2.844292772,,,,,,,,,,0.006382373,,,,,,,,,,0.168444916,,,,,,,,,,0.047431422,,,,,,,,,,0.0143945,,,,,,,,,,0.347000048,,,,,,,,,,0.004135161,,,,,,,,,,0.383801651,,,,,,,,,,1.507543404,,,,,,,,,,1719.390519,,,,,,,,,,0.002002285,,,,,,,,,,0.031913548,,,,,,,,,,3.513667747,,,,,,,,,,0.007557424,,,,,,,,,,0.170815952,,,,,,,,,,0.050421888,,,,,,,,,,0.014795446,,,,,,,,,,0.446576515,,,,,,,,,,0.003537282,,,,,,,,,,0.283078855,,,,,,,,,,1.176046837,,,,,,,,,,1705.909844,,,,,,,,,,0.002153837,,,,,,,,,,0.030057415,,,,,,,,,,2.789332288,,,,,,,,,,0.006405331,,,,,,,,,,0.186863556,,,,,,,,,,0.050222752,,,,,,,,,,0.014677566,,,,,,,,,,0.341653355,,,,,,,,,,0.004042006,,,,,,,,,,0.376134408,,,,,,,,,,1.476458592,,,,,,,,,,1707.302077,,,,,,,,,,0.00191645,,,,,,,,,,0.031641926,,,,,,,,,,3.420119828,,,,,,,,,,0.007388464,,,,,,,,,,0.15862679,,,,,,,,,,0.048209163,,,,,,,,,,0.014691345,,,,,,,,,,0.438402801,,,,,,,,,,0.003637359,,,,,,,,,,0.298502877,,,,,,,,,,1.232968713,,,,,,,,,,1738.908019,,,,,,,,,,0.002123759,,,,,,,,,,0.030378104,,,,,,,,,,2.790564537,,,,,,,,,,0.006598811,,,,,,,,,,0.18345251,,,,,,,,,,0.050145331,,,,,,,,,,0.01496173,,,,,,,,,,0.35891858,,,,,,,,,,0.004140599,,,,,,,,,,0.385976867,,,,,,,,,,1.516996712,,,,,,,,,,1738.695556,,,,,,,,,,0.001980181,,,,,,,,,,0.031975239,,,,,,,,,,3.431382417,,,,,,,,,,0.007570694,,,,,,,,,,0.167462677,,,,,,,,,,0.049933477,,,,,,,,,,0.01496156,,,,,,,,,,0.449581865,,,,,,,,,,0.003764472,,,,,,,,,,0.32517572,,,,,,,,,,1.316678995,,,,,,,,,,1740.392878,,,,,,,,,,0.002009232,,,,,,,,,,0.030747598,,,,,,,,,,2.967101536,,,,,,,,,,0.006850947,,,,,,,,,,0.169374671,,,,,,,,,,0.048616375,,,,,,,,,,0.014975031,,,,,,,,,,0.386774481,,,,,,,,,,0.004238961,,,,,,,,,,0.397663695,,,,,,,,,,1.557886668,,,,,,,,,,1745.484153,,,,,,,,,,0.002023872,,,,,,,,,,0.032251136,,,,,,,,,,3.738987576,,,,,,,,,,0.007753308,,,,,,,,,,0.174181188,,,,,,,,,,0.051362409,,,,,,,,,,0.01502015,,,,,,,,,,0.461770239,,,,,,,,,,0.003295726,,,,,,,,,,0.247258603,,,,,,,,,,1.059875735,,,,,,,,,,1682.391607,,,,,,,,,,0.002085299,,,,,,,,,,0.029215254,,,,,,,,,,2.57021158,,,,,,,,,,0.005950225,,,,,,,,,,0.177057419,,,,,,,,,,0.047760791,,,,,,,,,,0.01447468,,,,,,,,,,0.30423852 +Heavy duty long haul truck,E0,1990,0.068553793,,,,,,,,,,0.288465781,,,,,,,,,,74.76309184,,,,,,,,,,960.2491957,,,,,,,,,,0.059481437,,,,,,,,,,0.038702923,,,,,,,,,,8.492675611,,,,,,,,,,0.176123322,,,,,,,,,,0.433153734,,,,,,,,,,0.333838726,,,,,,,,,,0.042753804,,,,,,,,,,4.617835663,,,,,,,,,,0.059003222,,,,,,,,,,0.283751176,,,,,,,,,,74.76674311,,,,,,,,,,964.0092356,,,,,,,,,,0.058739492,,,,,,,,,,0.038686063,,,,,,,,,,8.492472171,,,,,,,,,,0.15511619,,,,,,,,,,0.389323282,,,,,,,,,,0.294494282,,,,,,,,,,0.047665458,,,,,,,,,,4.715534572,,,,,,,,,,0.067271773,,,,,,,,,,0.319800666,,,,,,,,,,82.20913931,,,,,,,,,,981.6421925,,,,,,,,,,0.062781181,,,,,,,,,,0.039342909,,,,,,,,,,8.814629741,,,,,,,,,,0.168766672,,,,,,,,,,0.429360016,,,,,,,,,,0.32489502,,,,,,,,,,0.068828507,,,,,,,,,,5.213260629,,,,,,,,,,0.070804494,,,,,,,,,,0.285165522,,,,,,,,,,76.30128782,,,,,,,,,,944.5333882,,,,,,,,,,0.056073729,,,,,,,,,,0.038316279,,,,,,,,,,8.507366315,,,,,,,,,,0.180042527,,,,,,,,,,0.440307394,,,,,,,,,,0.343381378,,,,,,,,,,0.061672738,,,,,,,,,,4.632466284,,,,,,,,,,0.034899419,,,,,,,,,,0.279860374,,,,,,,,,,74.07763394,,,,,,,,,,982.3241889,,,,,,,,,,0.061900442,,,,,,,,,,0.039226297,,,,,,,,,,8.172226482,,,,,,,,,,0.096351566,,,,,,,,,,0.271311856,,,,,,,,,,0.186082636,,,,,,,,,,0.056813072,,,,,,,,,,5.127320105,,,,,,,,,,0.039888602,,,,,,,,,,0.271182629,,,,,,,,,,73.83418998,,,,,,,,,,955.1176109,,,,,,,,,,0.057669881,,,,,,,,,,0.038625933,,,,,,,,,,8.267496622,,,,,,,,,,0.109737183,,,,,,,,,,0.293200521,,,,,,,,,,0.21041496,,,,,,,,,,0.061548044,,,,,,,,,,4.835156742,,,,,,,,,,0.033098527,,,,,,,,,,0.264179577,,,,,,,,,,72.63593704,,,,,,,,,,972.831964,,,,,,,,,,0.059099636,,,,,,,,,,0.03871274,,,,,,,,,,8.117033192,,,,,,,,,,0.09386517,,,,,,,,,,0.259712578,,,,,,,,,,0.180157103,,,,,,,,,,0.056871497,,,,,,,,,,4.899864355,,,,,,,,,,0.046748656,,,,,,,,,,0.280476962,,,,,,,,,,75.01402621,,,,,,,,,,971.6293831,,,,,,,,,,0.059417226,,,,,,,,,,0.038791768,,,,,,,,,,8.940994511,,,,,,,,,,0.126186059,,,,,,,,,,0.33042142,,,,,,,,,,0.241347096,,,,,,,,,,0.055751158,,,,,,,,,,4.96870867,,,,,,,,,,0.034014536,,,,,,,,,,0.26817798,,,,,,,,,,70.83812401,,,,,,,,,,976.5363742,,,,,,,,,,0.061980599,,,,,,,,,,0.03898654,,,,,,,,,,8.237850072,,,,,,,,,,0.09651633,,,,,,,,,,0.26603266,,,,,,,,,,0.183384565,,,,,,,,,,0.026950534,,,,,,,,,,4.826887329,,,,,,,,, +Heavy duty long haul truck,E0,1995,0.017981059,0.042602526,,,,,,,,,0.169336949,0.242484989,,,,,,,,,79.78299339,82.67535965,,,,,,,,,946.6253505,958.8050726,,,,,,,,,0.043053199,0.065549806,,,,,,,,,0.03870291,0.038703106,,,,,,,,,5.417380401,6.561534326,,,,,,,,,0.058119877,0.110739195,,,,,,,,,0.187027349,0.295592735,,,,,,,,,0.112840976,0.210847,,,,,,,,,0.042093351,0.020398799,,,,,,,,,2.732324455,3.942435093,,,,,,,,,0.015722059,0.036697227,,,,,,,,,0.169310156,0.23864821,,,,,,,,,80.69719585,82.38505602,,,,,,,,,953.6995102,964.1365743,,,,,,,,,0.042752142,0.064753546,,,,,,,,,0.03868607,0.038686485,,,,,,,,,5.433561158,6.517666807,,,,,,,,,0.051500318,0.097577381,,,,,,,,,0.174476769,0.268472875,,,,,,,,,0.101127251,0.186269817,,,,,,,,,0.04710769,0.020670977,,,,,,,,,2.802363238,4.023956035,,,,,,,,,0.01695589,0.041436046,,,,,,,,,0.189248905,0.265121465,,,,,,,,,88.01654322,87.63285233,,,,,,,,,969.3118256,981.3214782,,,,,,,,,0.045761305,0.069216288,,,,,,,,,0.039342897,0.039344118,,,,,,,,,5.687148048,6.52883205,,,,,,,,,0.053711889,0.104718699,,,,,,,,,0.187318498,0.291764119,,,,,,,,,0.107122003,0.201722763,,,,,,,,,0.068014808,0.021493616,,,,,,,,,3.107691368,4.363646969,,,,,,,,,0.01763472,0.043044686,,,,,,,,,0.170170518,0.24305552,,,,,,,,,82.23388912,82.88870526,,,,,,,,,935.2725893,945.4435894,,,,,,,,,0.040699809,0.061803759,,,,,,,,,0.03831624,0.038316037,,,,,,,,,5.423081019,6.436423237,,,,,,,,,0.056025852,0.109422522,,,,,,,,,0.179431171,0.290576935,,,,,,,,,0.109560243,0.209710052,,,,,,,,,0.06107753,0.035698678,,,,,,,,,2.825894335,3.982493161,,,,,,,,,0.009364299,0.021447295,,,,,,,,,0.173946055,0.238235308,,,,,,,,,81.05211063,81.62150252,,,,,,,,,980.8959311,986.8372478,,,,,,,,,0.045123863,0.068244742,,,,,,,,,0.039226285,0.039226965,,,,,,,,,5.239252995,6.247376384,,,,,,,,,0.031366428,0.059482683,,,,,,,,,0.139519311,0.194792033,,,,,,,,,0.065907734,0.116966778,,,,,,,,,0.056703581,0.021481806,,,,,,,,,3.078489221,4.402760527,,,,,,,,,0.010458178,0.024223629,,,,,,,,,0.167648762,0.229146704,,,,,,,,,80.95917896,80.15822988,,,,,,,,,952.1832101,958.8173902,,,,,,,,,0.04203093,0.063580431,,,,,,,,,0.038625939,0.038627001,,,,,,,,,5.281741601,6.189628381,,,,,,,,,0.034818212,0.066592223,,,,,,,,,0.139735281,0.202773495,,,,,,,,,0.071414463,0.129127938,,,,,,,,,0.06136155,0.020970999,,,,,,,,,2.931567665,4.134833912,,,,,,,,,0.009221078,0.020501709,,,,,,,,,0.165358239,0.227848762,,,,,,,,,79.82650589,80.69677391,,,,,,,,,974.070698,978.6663859,,,,,,,,,0.042894519,0.065140021,,,,,,,,,0.03871275,0.038713237,,,,,,,,,5.184887646,6.1906902,,,,,,,,,0.031454217,0.058568749,,,,,,,,,0.133449229,0.186947931,,,,,,,,,0.06517518,0.114478409,,,,,,,,,0.056932949,0.029328383,,,,,,,,,2.961446439,4.242681773,,,,,,,,,0.012589965,0.028976889,,,,,,,,,0.171695037,0.242343171,,,,,,,,,81.87141731,84.75023084,,,,,,,,,966.5770541,974.264869,,,,,,,,,0.043290525,0.06550482,,,,,,,,,0.038791794,0.038792306,,,,,,,,,5.749186779,6.839034967,,,,,,,,,0.041797149,0.078916418,,,,,,,,,0.15658016,0.231647921,,,,,,,,,0.084181615,0.152624624,,,,,,,,,0.055372129,0.032929027,,,,,,,,,2.9908686,4.322946059,,,,,,,,,0.01001334,0.021690523,,,,,,,,,0.165466676,0.236590825,,,,,,,,,77.29783496,82.96079015,,,,,,,,,969.1573858,977.3003383,,,,,,,,,0.044820992,0.068300185,,,,,,,,,0.038986488,0.038986718,,,,,,,,,5.272418751,6.399338421,,,,,,,,,0.034477196,0.062704249,,,,,,,,,0.141915165,0.197478517,,,,,,,,,0.070135256,0.121368339,,,,,,,,,0.026673855,0.012385384,,,,,,,,,2.864072943,4.265281167,,,,,,,, +Heavy duty long haul truck,E0,2000,0.010139659,0.015234696,0.032113675,,,,,,,,0.01873766,0.021270895,0.107179985,,,,,,,,20.59856859,30.40848439,55.08844717,,,,,,,,944.8581491,947.634854,960.148412,,,,,,,,0.052438765,0.061673635,0.09042936,,,,,,,,0.038702875,0.038703055,0.038703055,,,,,,,,3.448758872,3.880069653,4.948842244,,,,,,,,0.037028515,0.053775239,0.090385257,,,,,,,,0.135356827,0.167854676,0.247362123,,,,,,,,0.073155959,0.101933968,0.171008927,,,,,,,,0.04199639,0.020161282,0.018375532,,,,,,,,1.016326319,1.422255699,2.835341046,,,,,,,,0.008889678,0.013320293,0.027702061,,,,,,,,0.018581651,0.02093684,0.10496382,,,,,,,,20.68174814,30.28623782,54.65020948,,,,,,,,953.1422918,955.6238426,966.5197937,,,,,,,,0.052261481,0.061302329,0.089360675,,,,,,,,0.038686081,0.038686487,0.038686459,,,,,,,,3.458142467,3.851289894,4.907898766,,,,,,,,0.032644744,0.047369807,0.079410409,,,,,,,,0.127425242,0.155825043,0.225288127,,,,,,,,0.065607823,0.090760784,0.150933499,,,,,,,,0.047063933,0.020489476,0.018497465,,,,,,,,1.051406255,1.457175764,2.880264066,,,,,,,,0.008962784,0.013556471,0.030224013,,,,,,,,0.021227476,0.02354455,0.117281073,,,,,,,,22.96071256,32.77218845,59.07498547,,,,,,,,968.3026587,971.1658032,983.5724627,,,,,,,,0.055993912,0.065635462,0.095527892,,,,,,,,0.039342858,0.03934408,0.039344097,,,,,,,,3.628671166,3.846237412,4.919693176,,,,,,,,0.032248851,0.04691061,0.081970082,,,,,,,,0.133497804,0.161430134,0.238293042,,,,,,,,0.066289157,0.09103089,0.157607956,,,,,,,,0.067960281,0.021279931,0.018823828,,,,,,,,1.198279252,1.624353084,3.155970908,,,,,,,,0.009588326,0.014476352,0.031714703,,,,,,,,0.018660163,0.021135546,0.105319857,,,,,,,,21.17842054,30.28749939,53.81022427,,,,,,,,935.3178256,937.7565964,948.5403263,,,,,,,,0.049663243,0.058330389,0.085275848,,,,,,,,0.038316217,0.038315988,0.038316013,,,,,,,,3.493486032,3.84471171,4.757074478,,,,,,,,0.034646558,0.050379708,0.086826693,,,,,,,,0.127340247,0.158017357,0.236802665,,,,,,,,0.069065628,0.096231321,0.164759327,,,,,,,,0.061083642,0.035461712,0.018153375,,,,,,,,1.09909048,1.486009236,2.824819,,,,,,,,0.005180746,0.007732008,0.015964911,,,,,,,,0.018801678,0.021077024,0.104126979,,,,,,,,20.92111907,30.57989324,54.60738324,,,,,,,,983.7125629,985.4380406,992.2359392,,,,,,,,0.055217523,0.064721405,0.094187463,,,,,,,,0.039226236,0.039226923,0.039226914,,,,,,,,3.331905965,3.677744364,4.720094393,,,,,,,,0.01916331,0.027765646,0.047075716,,,,,,,,0.105643845,0.122048721,0.164338167,,,,,,,,0.042583069,0.057127457,0.093148728,,,,,,,,0.05685612,0.021452755,0.018989629,,,,,,,,1.197534123,1.631211497,3.141051326,,,,,,,,0.005793476,0.008657558,0.017992208,,,,,,,,0.017968665,0.01999349,0.100129068,,,,,,,,20.75696272,29.8534143,53.32589647,,,,,,,,954.3638676,956.2179597,963.5906459,,,,,,,,0.051425714,0.060283579,0.08774902,,,,,,,,0.038625975,0.038627029,0.038626992,,,,,,,,3.38898666,3.666131044,4.670764751,,,,,,,,0.021378231,0.030988655,0.052636049,,,,,,,,0.104084286,0.122304835,0.169399781,,,,,,,,0.045845994,0.061992807,0.102406434,,,,,,,,0.061502562,0.020918315,0.01844141,,,,,,,,1.135480016,1.52885058,2.949896091,,,,,,,,0.0053499,0.007943886,0.01567669,,,,,,,,0.017617065,0.019912169,0.098337177,,,,,,,,20.3075665,29.64138657,52.76822565,,,,,,,,977.9208633,979.4028964,985.0049026,,,,,,,,0.052339939,0.061476493,0.089879041,,,,,,,,0.038712746,0.038713213,0.038713236,,,,,,,,3.311037466,3.665673821,4.623289543,,,,,,,,0.020005989,0.0289525,0.047749481,,,,,,,,0.101938117,0.119166578,0.159741093,,,,,,,,0.043357007,0.058627278,0.093254299,,,,,,,,0.057154036,0.029347524,0.01885124,,,,,,,,1.152730692,1.552284736,2.986628533,,,,,,,,0.007131984,0.01065694,0.021876641,,,,,,,,0.018661074,0.021300943,0.104252385,,,,,,,,20.92516331,31.02822878,55.0582876,,,,,,,,967.9618263,969.9664729,978.3375382,,,,,,,,0.052955583,0.062085716,0.090403105,,,,,,,,0.038791748,0.038792278,0.038792301,,,,,,,,3.669078233,4.065802821,5.044853837,,,,,,,,0.026335295,0.038181402,0.063904557,,,,,,,,0.116358547,0.139306761,0.194687004,,,,,,,,0.054845138,0.075176142,0.122861235,,,,,,,,0.0554187,0.032796766,0.016787556,,,,,,,,1.163208127,1.608354534,3.044571909,,,,,,,,0.006037013,0.008939109,0.017062451,,,,,,,,0.017966585,0.021138384,0.103952992,,,,,,,,20.07279112,31.21205082,55.80193434,,,,,,,,969.2022706,971.1748675,979.782136,,,,,,,,0.054559049,0.064195678,0.09421848,,,,,,,,0.038986446,0.038986644,0.038986678,,,,,,,,3.330341721,3.780491595,4.815000094,,,,,,,,0.02271445,0.032854429,0.052893607,,,,,,,,0.109612806,0.129207216,0.172387294,,,,,,,,0.047940852,0.065306083,0.10217005,,,,,,,,0.026647342,0.012285841,0.008924387,,,,,,,,1.086862007,1.562127033,3.057175018,,,,,,, +Heavy duty long haul truck,E0,2005,0.010234017,0.012848223,0.016626051,0.03932924,,,,,,,0.014389714,0.01405218,0.019529482,0.111419447,,,,,,,12.88167235,25.78776646,30.45492649,62.41826652,,,,,,,943.5560803,945.3634226,951.1992471,970.0784796,,,,,,,0.0197186,0.022447927,0.030939636,0.119823088,,,,,,,0.038702923,0.038703093,0.038703075,0.038703053,,,,,,,3.213224624,3.82531466,4.000172598,4.70022854,,,,,,,0.038926178,0.048216801,0.05953382,0.106859311,,,,,,,0.127835361,0.145301915,0.168099029,0.280420178,,,,,,,0.074951583,0.090392853,0.110546187,0.200689818,,,,,,,0.041936013,0.020112985,0.018204269,0.006188525,,,,,,,0.713955307,1.198504549,1.482436478,3.457455632,,,,,,,0.009144394,0.011198714,0.014431794,0.033810108,,,,,,,0.014212597,0.013673379,0.01879145,0.108022454,,,,,,,13.00589123,25.7672361,30.20309528,61.33547082,,,,,,,951.9623341,953.5512637,958.7395447,975.8182568,,,,,,,0.019667819,0.022340769,0.030656634,0.118159129,,,,,,,0.038686031,0.038686448,0.038686415,0.038686493,,,,,,,3.219055242,3.790651048,3.958217896,4.65261278,,,,,,,0.034839333,0.042206235,0.052051151,0.093620946,,,,,,,0.120347585,0.134022924,0.153807102,0.253591376,,,,,,,0.06790856,0.079995685,0.097483486,0.176414169,,,,,,,0.047003433,0.020445136,0.018348567,0.006225142,,,,,,,0.739638635,1.219047073,1.490701434,3.476013125,,,,,,,0.009768328,0.009959428,0.01282867,0.036885434,,,,,,,0.015862481,0.014422611,0.019865757,0.119309958,,,,,,,14.46053424,27.52696939,32.82474672,66.00687637,,,,,,,966.9775623,968.8431968,974.7098535,993.9101745,,,,,,,0.021077046,0.023927926,0.032796144,0.126242783,,,,,,,0.039342901,0.039344115,0.03934407,0.039344097,,,,,,,3.369533954,3.810689848,3.983178225,4.695195158,,,,,,,0.036649608,0.037538877,0.046278736,0.095986717,,,,,,,0.129423832,0.130098005,0.147718925,0.26668733,,,,,,,0.072197343,0.072781133,0.088353504,0.183219624,,,,,,,0.06786986,0.021229939,0.018654207,0.006340557,,,,,,,0.830115329,1.297618554,1.582154575,3.769698848,,,,,,,0.010323294,0.012158822,0.015804739,0.038765445,,,,,,,0.013832075,0.013963415,0.018102666,0.109009686,,,,,,,13.41250733,27.43178834,29.38428714,60.85144621,,,,,,,934.1253929,935.6509277,940.8512463,958.1367022,,,,,,,0.018682545,0.021244513,0.029216102,0.112875399,,,,,,,0.038316247,0.038316025,0.038316051,0.038316007,,,,,,,3.22686082,3.903634336,3.867986793,4.516112064,,,,,,,0.038985924,0.045395046,0.056110194,0.102015384,,,,,,,0.12538333,0.137351652,0.158364745,0.267610083,,,,,,,0.075167165,0.085745819,0.104322079,0.192416462,,,,,,,0.061006203,0.035386829,0.01800622,0.006112344,,,,,,,0.775847103,1.252921483,1.453519186,3.401424015,,,,,,,0.005696402,0.006980427,0.008981824,0.019293832,,,,,,,0.014355511,0.013762055,0.018397173,0.105584841,,,,,,,13.60573543,26.43112415,30.43936898,60.92786051,,,,,,,982.8381928,983.8491465,987.4308523,1000.134706,,,,,,,0.020785123,0.023595283,0.032337612,0.124466647,,,,,,,0.039226277,0.039226977,0.039226969,0.039226926,,,,,,,3.096981027,3.575000061,3.746718222,4.489155477,,,,,,,0.021748523,0.026350753,0.032483913,0.054905682,,,,,,,0.098360604,0.106771023,0.119069405,0.179542539,,,,,,,0.045460842,0.052889128,0.063753427,0.107082128,,,,,,,0.05680467,0.021418255,0.018897671,0.006380266,,,,,,,0.856172698,1.374095582,1.63321969,3.723102064,,,,,,,0.006500791,0.007281622,0.00932711,0.021750632,,,,,,,0.013539081,0.012582436,0.017027994,0.101235983,,,,,,,13.3980112,25.66008157,29.76963041,58.95093263,,,,,,,953.4505322,954.5735713,958.3627879,971.5776675,,,,,,,0.019357107,0.021976278,0.030123858,0.115967794,,,,,,,0.0386259,0.038626942,0.038626942,0.038627019,,,,,,,3.146891882,3.591560997,3.748269173,4.426406833,,,,,,,0.024774482,0.027611416,0.03399191,0.061369592,,,,,,,0.099634167,0.104466024,0.117249133,0.186541054,,,,,,,0.050281852,0.054545455,0.065840321,0.118002867,,,,,,,0.061443919,0.020882652,0.018341363,0.006198089,,,,,,,0.809048665,1.256688639,1.50185407,3.492564258,,,,,,,0.005811993,0.006950656,0.008862331,0.018945677,,,,,,,0.013530044,0.013510973,0.017528914,0.099895985,,,,,,,13.26483674,26.61132648,29.56446323,59.02714826,,,,,,,977.1323634,977.9497661,981.0668952,992.5255152,,,,,,,0.019689354,0.022390178,0.030792567,0.118970176,,,,,,,0.038712758,0.038713271,0.038713231,0.038713215,,,,,,,3.077456531,3.650694249,3.717762887,4.396546628,,,,,,,0.022338915,0.026484932,0.032567589,0.055960015,,,,,,,0.09527079,0.102992896,0.114906411,0.175589231,,,,,,,0.045955561,0.052776292,0.06330172,0.107713514,,,,,,,0.057107494,0.029303478,0.018775869,0.006331724,,,,,,,0.833839337,1.335588804,1.555446195,3.548428344,,,,,,,0.00765059,0.008768819,0.011233188,0.02658645,,,,,,,0.013860286,0.013944573,0.01788127,0.108113276,,,,,,,13.49365242,27.95051039,30.32806103,62.34278836,,,,,,,966.9759964,968.2058873,972.3879871,986.6813482,,,,,,,0.019932101,0.022631656,0.031030132,0.119489976,,,,,,,0.038791805,0.038792373,0.03879234,0.038792277,,,,,,,3.372158081,3.90210747,3.872302711,4.802710681,,,,,,,0.029197137,0.033248805,0.040934594,0.075062156,,,,,,,0.110339978,0.117859022,0.132820992,0.216742299,,,,,,,0.058281465,0.064922166,0.078143805,0.142825533,,,,,,,0.055358881,0.032738457,0.016679818,0.006201607,,,,,,,0.820900371,1.333819254,1.535766909,3.657802088,,,,,,,0.005873926,0.00693599,0.008771059,0.020698491,,,,,,,0.012203985,0.012052328,0.017033918,0.111658677,,,,,,,11.64914045,23.92670859,28.98196349,65.25078552,,,,,,,968.2503369,969.4929709,973.6457417,987.4475206,,,,,,,0.02051309,0.023361017,0.032221719,0.124887007,,,,,,,0.038986474,0.038986639,0.038986675,0.038986668,,,,,,,2.682171367,2.401736148,2.573919206,4.69550882,,,,,,,0.022707378,0.026652257,0.032703366,0.062450456,,,,,,,0.097819356,0.10529727,0.117248631,0.191183678,,,,,,,0.046461015,0.053065427,0.063623404,0.119261589,,,,,,,0.026618597,0.012263055,0.008862855,0.005827851,,,,,,,0.727323275,1.150328135,1.425945551,3.78062185,,,,,, +Heavy duty long haul truck,E0,2010,,,,,0.041126089,,,,,,,,,,0.082741041,,,,,,,,,,64.20925621,,,,,,,,,,981.6582118,,,,,,,,,,0.157987672,,,,,,,,,,0.038703078,,,,,,,,,,4.796636678,,,,,,,,,,0.108421839,,,,,,,,,,0.283438244,,,,,,,,,,0.204321349,,,,,,,,,,0.006262396,,,,,,,,,,3.82154023,,,,,,,,,,0.035257471,,,,,,,,,,0.079721274,,,,,,,,,,62.80830696,,,,,,,,,,986.6822769,,,,,,,,,,0.15557174,,,,,,,,,,0.038686483,,,,,,,,,,4.741599292,,,,,,,,,,0.094764931,,,,,,,,,,0.255564247,,,,,,,,,,0.179133508,,,,,,,,,,0.006294447,,,,,,,,,,3.811990866,,,,,,,,,,0.038488639,,,,,,,,,,0.088556584,,,,,,,,,,68.18758814,,,,,,,,,,1005.981245,,,,,,,,,,0.166151162,,,,,,,,,,0.039344077,,,,,,,,,,4.802165722,,,,,,,,,,0.096694845,,,,,,,,,,0.267917841,,,,,,,,,,0.185387777,,,,,,,,,,0.006417563,,,,,,,,,,4.151974873,,,,,,,,,,0.040553892,,,,,,,,,,0.080874455,,,,,,,,,,62.46744072,,,,,,,,,,969.3632115,,,,,,,,,,0.148720659,,,,,,,,,,0.038316009,,,,,,,,,,4.603659365,,,,,,,,,,0.103271052,,,,,,,,,,0.270186996,,,,,,,,,,0.195589429,,,,,,,,,,0.006183963,,,,,,,,,,3.744791182,,,,,,,,,,0.019978738,,,,,,,,,,0.076806491,,,,,,,,,,62.39883434,,,,,,,,,,1009.431704,,,,,,,,,,0.163809376,,,,,,,,,,0.039226934,,,,,,,,,,4.602413144,,,,,,,,,,0.055133947,,,,,,,,,,0.179153889,,,,,,,,,,0.107796744,,,,,,,,,,0.006439576,,,,,,,,,,4.014302382,,,,,,,,,,0.022554925,,,,,,,,,,0.073813689,,,,,,,,,,60.19590731,,,,,,,,,,980.9639399,,,,,,,,,,0.152632601,,,,,,,,,,0.038626994,,,,,,,,,,4.522139678,,,,,,,,,,0.061717218,,,,,,,,,,0.186602898,,,,,,,,,,0.119010864,,,,,,,,,,0.006257968,,,,,,,,,,3.778187716,,,,,,,,,,0.019605226,,,,,,,,,,0.072483878,,,,,,,,,,60.17959376,,,,,,,,,,1001.404482,,,,,,,,,,0.156752702,,,,,,,,,,0.038713253,,,,,,,,,,4.498900481,,,,,,,,,,0.056390221,,,,,,,,,,0.175645548,,,,,,,,,,0.108730259,,,,,,,,,,0.006388367,,,,,,,,,,3.817074746,,,,,,,,,,0.027638412,,,,,,,,,,0.079160791,,,,,,,,,,63.74608128,,,,,,,,,,996.470524,,,,,,,,,,0.157281548,,,,,,,,,,0.038792275,,,,,,,,,,4.883128489,,,,,,,,,,0.075779751,,,,,,,,,,0.217603171,,,,,,,,,,0.144583091,,,,,,,,,,0.006263301,,,,,,,,,,3.966253534,,,,,,,,,,0.021437943,,,,,,,,,,0.081274045,,,,,,,,,,66.73521861,,,,,,,,,,996.4135025,,,,,,,,,,0.164702909,,,,,,,,,,0.038986639,,,,,,,,,,4.795500794,,,,,,,,,,0.063149363,,,,,,,,,,0.191706695,,,,,,,,,,0.120741713,,,,,,,,,,0.005880915,,,,,,,,,,4.099927477,,,,, +Heavy duty long haul truck,E0,2015,,,,,,0.045417379,,,,,,,,,,0.084595471,,,,,,,,,,85.55878456,,,,,,,,,,1004.615481,,,,,,,,,,0.188901621,,,,,,,,,,0.038703048,,,,,,,,,,5.188865176,,,,,,,,,,0.10868426,,,,,,,,,,0.292411616,,,,,,,,,,0.208719973,,,,,,,,,,0.006408852,,,,,,,,,,5.012373798,,,,,,,,,,0.03872829,,,,,,,,,,0.081228202,,,,,,,,,,83.3141194,,,,,,,,,,1007.905776,,,,,,,,,,0.185739324,,,,,,,,,,0.03868644,,,,,,,,,,5.119657646,,,,,,,,,,0.094688027,,,,,,,,,,0.263282661,,,,,,,,,,0.182375239,,,,,,,,,,0.006429841,,,,,,,,,,4.96138823,,,,,,,,,,0.042985118,,,,,,,,,,0.090226172,,,,,,,,,,91.12130534,,,,,,,,,,1029.675679,,,,,,,,,,0.198292148,,,,,,,,,,0.039344059,,,,,,,,,,5.214535698,,,,,,,,,,0.097538739,,,,,,,,,,0.278652185,,,,,,,,,,0.190900671,,,,,,,,,,0.00656872,,,,,,,,,,5.407966362,,,,,,,,,,0.045233216,,,,,,,,,,0.082398575,,,,,,,,,,82.77911304,,,,,,,,,,991.1163641,,,,,,,,,,0.177690387,,,,,,,,,,0.03831601,,,,,,,,,,4.967845048,,,,,,,,,,0.104265969,,,,,,,,,,0.280420382,,,,,,,,,,0.201360081,,,,,,,,,,0.006322736,,,,,,,,,,4.87850981,,,,,,,,,,0.021810015,,,,,,,,,,0.07810754,,,,,,,,,,83.12394891,,,,,,,,,,1026.647431,,,,,,,,,,0.195492108,,,,,,,,,,0.0392269,,,,,,,,,,5.013649166,,,,,,,,,,0.054908224,,,,,,,,,,0.185559465,,,,,,,,,,0.109560217,,,,,,,,,,0.006549402,,,,,,,,,,5.141542736,,,,,,,,,,0.024682424,,,,,,,,,,0.074972679,,,,,,,,,,79.74780743,,,,,,,,,,998.5368344,,,,,,,,,,0.182163846,,,,,,,,,,0.038626998,,,,,,,,,,4.895281036,,,,,,,,,,0.061601766,,,,,,,,,,0.192943751,,,,,,,,,,0.121112787,,,,,,,,,,0.006370074,,,,,,,,,,4.85185819,,,,,,,,,,0.021094033,,,,,,,,,,0.073744733,,,,,,,,,,79.91440769,,,,,,,,,,1017.509598,,,,,,,,,,0.187288725,,,,,,,,,,0.03871322,,,,,,,,,,4.886475233,,,,,,,,,,0.055711505,,,,,,,,,,0.180523036,,,,,,,,,,0.109485943,,,,,,,,,,0.006491109,,,,,,,,,,4.885575495,,,,,,,,,,0.030182347,,,,,,,,,,0.080539734,,,,,,,,,,84.61975169,,,,,,,,,,1015.053246,,,,,,,,,,0.187728745,,,,,,,,,,0.038792315,,,,,,,,,,5.258453375,,,,,,,,,,0.075465767,,,,,,,,,,0.22419462,,,,,,,,,,0.146744888,,,,,,,,,,0.006380494,,,,,,,,,,5.108919267,,,,,,,,,,0.022833664,,,,,,,,,,0.083000316,,,,,,,,,,88.99796222,,,,,,,,,,1013.78734,,,,,,,,,,0.196978629,,,,,,,,,,0.038986649,,,,,,,,,,5.201347691,,,,,,,,,,0.061945622,,,,,,,,,,0.195862341,,,,,,,,,,0.120668433,,,,,,,,,,0.005983821,,,,,,,,,,5.302627912,,,, +Heavy duty long haul truck,E0,2020,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E0,2025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E0,2030,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E10,1990,0.068553793,,,,,,,,,,0.285178637,,,,,,,,,,67.234653,,,,,,,,,,960.2491957,,,,,,,,,,0.059481437,,,,,,,,,,0.038702923,,,,,,,,,,9.105863417,,,,,,,,,,0.176123322,,,,,,,,,,0.433153734,,,,,,,,,,0.333838726,,,,,,,,,,0.044520798,,,,,,,,,,5.060044647,,,,,,,,,,0.059003222,,,,,,,,,,0.281602164,,,,,,,,,,67.66999541,,,,,,,,,,964.0092356,,,,,,,,,,0.058739492,,,,,,,,,,0.038686063,,,,,,,,,,9.085166512,,,,,,,,,,0.15511619,,,,,,,,,,0.389323282,,,,,,,,,,0.294494282,,,,,,,,,,0.049635449,,,,,,,,,,5.202985863,,,,,,,,,,0.067271773,,,,,,,,,,0.322410795,,,,,,,,,,76.42263454,,,,,,,,,,981.6421925,,,,,,,,,,0.062781181,,,,,,,,,,0.039342909,,,,,,,,,,9.353606035,,,,,,,,,,0.168766672,,,,,,,,,,0.429360016,,,,,,,,,,0.32489502,,,,,,,,,,0.071673147,,,,,,,,,,5.808716059,,,,,,,,,,0.070804494,,,,,,,,,,0.288459998,,,,,,,,,,71.0623819,,,,,,,,,,944.5333882,,,,,,,,,,0.056073729,,,,,,,,,,0.038316279,,,,,,,,,,9.053446751,,,,,,,,,,0.180042527,,,,,,,,,,0.440307394,,,,,,,,,,0.343381378,,,,,,,,,,0.064221639,,,,,,,,,,5.194386184,,,,,,,,,,0.034899419,,,,,,,,,,0.279747046,,,,,,,,,,67.41532618,,,,,,,,,,982.3241889,,,,,,,,,,0.061900442,,,,,,,,,,0.039226297,,,,,,,,,,8.702398897,,,,,,,,,,0.096351566,,,,,,,,,,0.271311856,,,,,,,,,,0.186082636,,,,,,,,,,0.059161115,,,,,,,,,,5.771270755,,,,,,,,,,0.039888602,,,,,,,,,,0.271874113,,,,,,,,,,67.9443379,,,,,,,,,,955.1176109,,,,,,,,,,0.057669881,,,,,,,,,,0.038625933,,,,,,,,,,8.783299222,,,,,,,,,,0.109737183,,,,,,,,,,0.293200521,,,,,,,,,,0.21041496,,,,,,,,,,0.064091802,,,,,,,,,,5.431272775,,,,,,,,,,0.033098527,,,,,,,,,,0.264777022,,,,,,,,,,65.92243248,,,,,,,,,,972.831964,,,,,,,,,,0.059099636,,,,,,,,,,0.03871274,,,,,,,,,,8.648849624,,,,,,,,,,0.09386517,,,,,,,,,,0.259712578,,,,,,,,,,0.180157103,,,,,,,,,,0.059221961,,,,,,,,,,5.548084236,,,,,,,,,,0.046748656,,,,,,,,,,0.276213497,,,,,,,,,,68.47016444,,,,,,,,,,971.6293831,,,,,,,,,,0.059417226,,,,,,,,,,0.038791768,,,,,,,,,,9.526822837,,,,,,,,,,0.126186059,,,,,,,,,,0.33042142,,,,,,,,,,0.241347096,,,,,,,,,,0.058055313,,,,,,,,,,5.550692909,,,,,,,,,,0.034014536,,,,,,,,,,0.258949514,,,,,,,,,,63.45857724,,,,,,,,,,976.5363742,,,,,,,,,,0.061980599,,,,,,,,,,0.03898654,,,,,,,,,,8.884561862,,,,,,,,,,0.09651633,,,,,,,,,,0.26603266,,,,,,,,,,0.183384565,,,,,,,,,,0.028064384,,,,,,,,,,5.293259072,,,,,,,,, +Heavy duty long haul truck,E10,1995,0.017981059,0.042602526,,,,,,,,,0.167442267,0.240951275,,,,,,,,,71.35612685,74.37529649,,,,,,,,,946.6253505,958.8050726,,,,,,,,,0.043053199,0.065549806,,,,,,,,,0.03870291,0.038703106,,,,,,,,,5.808639037,7.103308907,,,,,,,,,0.058119877,0.110739195,,,,,,,,,0.187027349,0.295592735,,,,,,,,,0.112840976,0.210847,,,,,,,,,0.043833032,0.021241868,,,,,,,,,2.985871531,4.363639887,,,,,,,,,0.015722059,0.036697227,,,,,,,,,0.168072314,0.237713505,,,,,,,,,72.66133241,74.47104811,,,,,,,,,953.6995102,964.1365743,,,,,,,,,0.042752142,0.064753546,,,,,,,,,0.03868607,0.038686485,,,,,,,,,5.812615692,7.058335644,,,,,,,,,0.051500318,0.097577381,,,,,,,,,0.174476769,0.268472875,,,,,,,,,0.101127251,0.186269817,,,,,,,,,0.049054624,0.021525297,,,,,,,,,3.084926082,4.481496536,,,,,,,,,0.01695589,0.041436046,,,,,,,,,0.190915064,0.261429856,,,,,,,,,81.46155407,79.94259028,,,,,,,,,969.3118256,981.3214782,,,,,,,,,0.045761305,0.069216288,,,,,,,,,0.039342897,0.039344118,,,,,,,,,6.034874424,7.102628181,,,,,,,,,0.053711889,0.104718699,,,,,,,,,0.187318498,0.291764119,,,,,,,,,0.107122003,0.201722763,,,,,,,,,0.070825808,0.022381933,,,,,,,,,3.462430212,4.82747254,,,,,,,,,0.01763472,0.043044686,,,,,,,,,0.17217995,0.239259824,,,,,,,,,76.2525574,76.43173151,,,,,,,,,935.2725893,945.4435894,,,,,,,,,0.040699809,0.061803759,,,,,,,,,0.03831624,0.038316037,,,,,,,,,5.771193226,6.923248841,,,,,,,,,0.056025852,0.109422522,,,,,,,,,0.179431171,0.290576935,,,,,,,,,0.109560243,0.209710052,,,,,,,,,0.063601823,0.037174086,,,,,,,,,3.167380495,4.411577191,,,,,,,,,0.009364299,0.021447295,,,,,,,,,0.173955051,0.240461542,,,,,,,,,73.46167698,74.56041487,,,,,,,,,980.8959311,986.8372478,,,,,,,,,0.045123863,0.068244742,,,,,,,,,0.039226285,0.039226965,,,,,,,,,5.579115964,6.754818498,,,,,,,,,0.031366428,0.059482683,,,,,,,,,0.139519311,0.194792033,,,,,,,,,0.065907734,0.116966778,,,,,,,,,0.059047089,0.022369633,,,,,,,,,3.452685158,5.02235392,,,,,,,,,0.010458178,0.024223629,,,,,,,,,0.168158458,0.229332732,,,,,,,,,74.19985055,73.32309928,,,,,,,,,952.1832101,958.8173902,,,,,,,,,0.04203093,0.063580431,,,,,,,,,0.038625939,0.038627001,,,,,,,,,5.611213613,6.710534548,,,,,,,,,0.034818212,0.066592223,,,,,,,,,0.139735281,0.202773495,,,,,,,,,0.071414463,0.129127938,,,,,,,,,0.063897587,0.021837716,,,,,,,,,3.285766317,4.676452161,,,,,,,,,0.009221078,0.020501709,,,,,,,,,0.165786934,0.226026226,,,,,,,,,72.14649736,73.10703047,,,,,,,,,974.070698,978.6663859,,,,,,,,,0.042894519,0.065140021,,,,,,,,,0.03871275,0.038713237,,,,,,,,,5.524549386,6.672140444,,,,,,,,,0.031454217,0.058568749,,,,,,,,,0.133449229,0.186947931,,,,,,,,,0.06517518,0.114478409,,,,,,,,,0.059285954,0.030540499,,,,,,,,,3.338049322,4.803248797,,,,,,,,,0.012589965,0.028976889,,,,,,,,,0.169143511,0.235517054,,,,,,,,,74.42035206,77.74277805,,,,,,,,,966.5770541,974.264869,,,,,,,,,0.043290525,0.06550482,,,,,,,,,0.038791794,0.038792306,,,,,,,,,6.125872521,7.369687789,,,,,,,,,0.041797149,0.078916418,,,,,,,,,0.15658016,0.231647921,,,,,,,,,0.084181615,0.152624624,,,,,,,,,0.057660611,0.034289962,,,,,,,,,3.322722663,4.819440451,,,,,,,,,0.01001334,0.021690523,,,,,,,,,0.159783002,0.224416857,,,,,,,,,68.94585663,75.01222333,,,,,,,,,969.1573858,977.3003383,,,,,,,,,0.044820992,0.068300185,,,,,,,,,0.038986488,0.038986718,,,,,,,,,5.686237076,6.952297617,,,,,,,,,0.034477196,0.062704249,,,,,,,,,0.141915165,0.197478517,,,,,,,,,0.070135256,0.121368339,,,,,,,,,0.027776264,0.012897262,,,,,,,,,3.121960281,4.662454343,,,,,,,, +Heavy duty long haul truck,E10,2000,0.010139659,0.015234696,0.032113675,,,,,,,,0.018525409,0.021135032,0.106517879,,,,,,,,18.37562523,27.24192339,49.59539703,,,,,,,,944.8581491,947.634854,960.148412,,,,,,,,0.052438765,0.061673635,0.09042936,,,,,,,,0.038702875,0.038703055,0.038703055,,,,,,,,3.697656517,4.200427591,5.362106187,,,,,,,,0.037028515,0.053775239,0.090385257,,,,,,,,0.135356827,0.167854676,0.247362123,,,,,,,,0.073155959,0.101933968,0.171008927,,,,,,,,0.043732078,0.020994538,0.019134983,,,,,,,,1.139437723,1.571440519,3.131358034,,,,,,,,0.008889678,0.013320293,0.027702061,,,,,,,,0.018445219,0.020857173,0.104563505,,,,,,,,18.57783871,27.27501121,49.41609315,,,,,,,,953.1422918,955.6238426,966.5197937,,,,,,,,0.052261481,0.061302329,0.089360675,,,,,,,,0.038686081,0.038686487,0.038686459,,,,,,,,3.699347646,4.170780226,5.320422457,,,,,,,,0.032644744,0.047369807,0.079410409,,,,,,,,0.127425242,0.155825043,0.225288127,,,,,,,,0.065607823,0.090760784,0.150933499,,,,,,,,0.049009045,0.021336291,0.01926196,,,,,,,,1.189388277,1.622161341,3.201611544,,,,,,,,0.008962784,0.013556471,0.030224013,,,,,,,,0.0214086,0.023218435,0.115554226,,,,,,,,21.22149953,29.82595127,53.73613381,,,,,,,,968.3026587,971.1658032,983.5724627,,,,,,,,0.055993912,0.065635462,0.095527892,,,,,,,,0.039342858,0.03934408,0.039344097,,,,,,,,3.850517709,4.184260134,5.362101961,,,,,,,,0.032248851,0.04691061,0.081970082,,,,,,,,0.133497804,0.161430134,0.238293042,,,,,,,,0.066289157,0.09103089,0.157607956,,,,,,,,0.070769025,0.022159418,0.019601805,,,,,,,,1.369033557,1.795966954,3.480606468,,,,,,,,0.009588326,0.014476352,0.031714703,,,,,,,,0.018879794,0.020808079,0.10362985,,,,,,,,19.61515803,27.8566633,49.64102112,,,,,,,,935.3178256,937.7565964,948.5403263,,,,,,,,0.049663243,0.058330389,0.085275848,,,,,,,,0.038316217,0.038315988,0.038316013,,,,,,,,3.717728001,4.135400813,5.154163464,,,,,,,,0.034646558,0.050379708,0.086826693,,,,,,,,0.127340247,0.158017357,0.236802665,,,,,,,,0.069065628,0.096231321,0.164759327,,,,,,,,0.063608183,0.03692732,0.018903641,,,,,,,,1.268432445,1.649698542,3.12632675,,,,,,,,0.005180746,0.007732008,0.015964911,,,,,,,,0.01879997,0.021275205,0.105141379,,,,,,,,18.91096298,27.83866487,49.89906211,,,,,,,,983.7125629,985.4380406,992.2359392,,,,,,,,0.055217523,0.064721405,0.094187463,,,,,,,,0.039226236,0.039226923,0.039226914,,,,,,,,3.547993806,3.976469256,5.108891037,,,,,,,,0.01916331,0.027765646,0.047075716,,,,,,,,0.105643845,0.122048721,0.164338167,,,,,,,,0.042583069,0.057127457,0.093148728,,,,,,,,0.059205951,0.022339377,0.01977446,,,,,,,,1.383499331,1.85936694,3.575288569,,,,,,,,0.005793476,0.008657558,0.017992208,,,,,,,,0.018020586,0.02001207,0.100198476,,,,,,,,18.98134844,27.23126275,48.7211481,,,,,,,,954.3638676,956.2179597,963.5906459,,,,,,,,0.051425714,0.060283579,0.08774902,,,,,,,,0.038625975,0.038627029,0.038626992,,,,,,,,3.600367528,3.974659215,5.071117806,,,,,,,,0.021378231,0.030988655,0.052636049,,,,,,,,0.104084286,0.122304835,0.169399781,,,,,,,,0.045845994,0.061992807,0.102406434,,,,,,,,0.064044431,0.021782857,0.019203581,,,,,,,,1.313046717,1.733173754,3.330678278,,,,,,,,0.0053499,0.007943886,0.01567669,,,,,,,,0.017661233,0.01975465,0.097561941,,,,,,,,18.30316646,26.75206423,47.80518921,,,,,,,,977.9208633,979.4028964,985.0049026,,,,,,,,0.052339939,0.061476493,0.089879041,,,,,,,,0.038712746,0.038713213,0.038713236,,,,,,,,3.527884246,3.950620451,5.004654773,,,,,,,,0.020005989,0.0289525,0.047749481,,,,,,,,0.101938117,0.119166578,0.159741093,,,,,,,,0.043357007,0.058627278,0.093254299,,,,,,,,0.059516179,0.030560436,0.019630349,,,,,,,,1.339387136,1.753108254,3.375458089,,,,,,,,0.007131984,0.01065694,0.021876641,,,,,,,,0.018380528,0.020698961,0.101328651,,,,,,,,18.97220722,28.37631392,50.50020222,,,,,,,,967.9618263,969.9664729,978.3375382,,,,,,,,0.052955583,0.062085716,0.090403105,,,,,,,,0.038791748,0.038792278,0.038792301,,,,,,,,3.909297941,4.381218159,5.473288593,,,,,,,,0.026335295,0.038181402,0.063904557,,,,,,,,0.116358547,0.139306761,0.194687004,,,,,,,,0.054845138,0.075176142,0.122861235,,,,,,,,0.057709116,0.034152236,0.017481376,,,,,,,,1.3310026,1.786537132,3.388388555,,,,,,,,0.006037013,0.008939109,0.017062451,,,,,,,,0.017348326,0.020046812,0.098615895,,,,,,,,17.84878924,28.12315579,50.46789186,,,,,,,,969.2022706,971.1748675,979.782136,,,,,,,,0.054559049,0.064195678,0.09421848,,,,,,,,0.038986446,0.038986644,0.038986678,,,,,,,,3.591448979,4.107131796,5.23929464,,,,,,,,0.02271445,0.032854429,0.052893607,,,,,,,,0.109612806,0.129207216,0.172387294,,,,,,,,0.047940852,0.065306083,0.10217005,,,,,,,,0.027748671,0.01279361,0.009293226,,,,,,,,1.221554563,1.697012569,3.332683052,,,,,,, +Heavy duty long haul truck,E10,2005,0.01097457,0.013778413,0.017767537,0.039396636,,,,,,,0.013815268,0.013418028,0.01838258,0.110119778,,,,,,,12.0643713,24.18244103,27.88739413,56.13494899,,,,,,,943.5560803,945.3634226,951.1992471,970.0784796,,,,,,,0.0197186,0.022447927,0.030939636,0.119823088,,,,,,,0.038702923,0.038703093,0.038703075,0.038703053,,,,,,,3.430401863,4.08177312,4.261639924,5.11904966,,,,,,,0.041896485,0.051897284,0.064014801,0.107126014,,,,,,,0.133424229,0.152238922,0.176553208,0.280922854,,,,,,,0.079895598,0.096529435,0.118024909,0.201134491,,,,,,,0.043669209,0.020944243,0.018956636,0.006444293,,,,,,,0.789204358,1.267815877,1.544767484,3.786113742,,,,,,,0.009813646,0.012023478,0.01544397,0.033870668,,,,,,,0.013693076,0.013082607,0.01772738,0.107282873,,,,,,,12.23025519,24.2445104,27.7864577,55.51920396,,,,,,,951.9623341,953.5512637,958.7395447,975.8182568,,,,,,,0.019667819,0.022340769,0.030656634,0.118159129,,,,,,,0.038686031,0.038686448,0.038686415,0.038686493,,,,,,,3.436427291,4.044876951,4.217154874,5.066822621,,,,,,,0.03752302,0.04546944,0.056024063,0.093859431,,,,,,,0.125397197,0.140173392,0.161302811,0.254041135,,,,,,,0.072375651,0.085436538,0.104114343,0.176812038,,,,,,,0.048946048,0.021290124,0.0191069,0.006482422,,,,,,,0.827141307,1.301281655,1.567929426,3.837260277,,,,,,,0.010461758,0.01070368,0.013748937,0.03694682,,,,,,,0.015356397,0.013668845,0.018500915,0.119146368,,,,,,,13.64102881,25.79900313,30.0368042,61.09016742,,,,,,,966.9775623,968.8431968,974.7098535,993.9101745,,,,,,,0.021077046,0.023927926,0.032796144,0.126242783,,,,,,,0.039342901,0.039344115,0.03934407,0.039344097,,,,,,,3.596524339,4.066164812,4.243561649,5.117542969,,,,,,,0.039431606,0.040462962,0.049844595,0.096220811,,,,,,,0.134658209,0.1356142,0.154457774,0.267130637,,,,,,,0.076827782,0.077660847,0.094314848,0.183611785,,,,,,,0.070674889,0.022107349,0.019425174,0.006602609,,,,,,,0.932384618,1.385212653,1.659165616,4.171713985,,,,,,,0.011069887,0.013021087,0.016852415,0.038828616,,,,,,,0.013369154,0.013290341,0.016993933,0.107699576,,,,,,,12.61946348,26.00707093,27.32129613,56.11029738,,,,,,,934.1253929,935.6509277,940.8512463,958.1367022,,,,,,,0.018682545,0.021244513,0.029216102,0.112875399,,,,,,,0.038316247,0.038316025,0.038316051,0.038316007,,,,,,,3.44510185,4.165033996,4.120554051,4.916216749,,,,,,,0.041951127,0.048839455,0.060292682,0.102266941,,,,,,,0.13096946,0.143835881,0.166239015,0.268083831,,,,,,,0.080108776,0.091481856,0.111287747,0.192835547,,,,,,,0.063527531,0.036849346,0.018750406,0.006364963,,,,,,,0.881216794,1.3423151,1.537979321,3.751176175,,,,,,,0.006133953,0.007520232,0.009645349,0.019333137,,,,,,,0.013928291,0.013296708,0.017575219,0.106216515,,,,,,,12.87308618,25.05646949,28.30834334,55.57849124,,,,,,,982.8381928,983.8491465,987.4308523,1000.134706,,,,,,,0.020785123,0.023595283,0.032337612,0.124466647,,,,,,,0.039226277,0.039226977,0.039226969,0.039226926,,,,,,,3.304939561,3.814196954,3.991128857,4.885273386,,,,,,,0.023499704,0.028483189,0.035081192,0.055058807,,,,,,,0.101656474,0.110791039,0.123971428,0.179831717,,,,,,,0.048376432,0.056445281,0.068089864,0.107337943,,,,,,,0.059152379,0.022303453,0.019678692,0.006643958,,,,,,,0.983713347,1.501572965,1.762506426,4.201521036,,,,,,,0.00698965,0.007844467,0.010019566,0.021793927,,,,,,,0.013133698,0.012071635,0.016116569,0.101671788,,,,,,,12.69726862,24.27373864,27.59722457,54.22600332,,,,,,,953.4505322,954.5735713,958.3627879,971.5776675,,,,,,,0.019357107,0.021976278,0.030123858,0.115967794,,,,,,,0.0386259,0.038626942,0.038626942,0.038627019,,,,,,,3.358446634,3.832073784,3.993187517,4.819775706,,,,,,,0.026732932,0.029832968,0.036698089,0.061537159,,,,,,,0.103319687,0.108654485,0.122357689,0.186857769,,,,,,,0.053542151,0.058250658,0.070359434,0.118283043,,,,,,,0.063983375,0.021745712,0.019099401,0.006454253,,,,,,,0.929378827,1.373337772,1.616696681,3.927148449,,,,,,,0.006267029,0.007493653,0.009525548,0.018985011,,,,,,,0.013133719,0.012982944,0.016638542,0.099047555,,,,,,,12.50905524,25.17982562,27.40769006,53.36952472,,,,,,,977.1323634,977.9497661,981.0668952,992.5255152,,,,,,,0.019689354,0.022390178,0.030792567,0.118970176,,,,,,,0.038712758,0.038713271,0.038713231,0.038713215,,,,,,,3.284732197,3.895220778,3.960961786,4.786752427,,,,,,,0.024154147,0.028642854,0.035191906,0.056114719,,,,,,,0.098688614,0.107057856,0.119852688,0.175881041,,,,,,,0.04897903,0.056372234,0.067677296,0.107971653,,,,,,,0.059467691,0.030514577,0.019551861,0.006593411,,,,,,,0.963041069,1.455649398,1.676461433,3.984656892,,,,,,,0.008221787,0.009423766,0.012028933,0.026634957,,,,,,,0.013374936,0.013250579,0.016737781,0.104941642,,,,,,,12.75855994,26.50177709,28.23265495,57.1424591,,,,,,,966.9759964,968.2058873,972.3879871,986.6813482,,,,,,,0.019932101,0.022631656,0.031030132,0.119489976,,,,,,,0.038791805,0.038792373,0.03879234,0.038792277,,,,,,,3.599055712,4.162494941,4.122622881,5.223537873,,,,,,,0.031486536,0.035864362,0.044111121,0.075257231,,,,,,,0.114648037,0.12278309,0.138801416,0.217109225,,,,,,,0.062092475,0.06927802,0.083434207,0.143150121,,,,,,,0.057646828,0.034091519,0.017369197,0.006457916,,,,,,,0.940193296,1.444728826,1.643491263,4.043697561,,,,,,,0.00633502,0.007478761,0.00942841,0.020737675,,,,,,,0.01169399,0.011310472,0.015736838,0.105105139,,,,,,,10.95865502,22.56848287,26.8320737,58.95534348,,,,,,,968.2503369,969.4929709,973.6457417,987.4475206,,,,,,,0.02051309,0.023361017,0.032221719,0.124887007,,,,,,,0.038986474,0.038986639,0.038986675,0.038986668,,,,,,,2.863018955,2.558694963,2.73472432,5.099724156,,,,,,,0.02455592,0.028826016,0.035341736,0.062613047,,,,,,,0.101297764,0.109388164,0.122212529,0.191488338,,,,,,,0.049538134,0.056684359,0.068014592,0.119531094,,,,,,,0.027718717,0.012769881,0.009229158,0.006068712,,,,,,,0.82960307,1.24506671,1.514156944,4.080009084,,,,,, +Heavy duty long haul truck,E10,2010,,,,,0.041238282,,,,,,,,,,0.081693214,,,,,,,,,,57.75830223,,,,,,,,,,981.6582118,,,,,,,,,,0.157987672,,,,,,,,,,0.038703078,,,,,,,,,,5.222621304,,,,,,,,,,0.108863231,,,,,,,,,,0.284270772,,,,,,,,,,0.205057827,,,,,,,,,,0.006521218,,,,,,,,,,4.143703745,,,,,,,,,,0.035358491,,,,,,,,,,0.079096605,,,,,,,,,,56.85507656,,,,,,,,,,986.6822769,,,,,,,,,,0.15557174,,,,,,,,,,0.038686483,,,,,,,,,,5.162374583,,,,,,,,,,0.095159829,,,,,,,,,,0.256309693,,,,,,,,,,0.179792943,,,,,,,,,,0.006554592,,,,,,,,,,4.16516296,,,,,,,,,,0.038592598,,,,,,,,,,0.088339898,,,,,,,,,,63.07425538,,,,,,,,,,1005.981245,,,,,,,,,,0.166151162,,,,,,,,,,0.039344077,,,,,,,,,,5.232700845,,,,,,,,,,0.097084027,,,,,,,,,,0.268656647,,,,,,,,,,0.186041336,,,,,,,,,,0.006682798,,,,,,,,,,4.548972514,,,,,,,,,,0.04065882,,,,,,,,,,0.079836947,,,,,,,,,,57.56310135,,,,,,,,,,969.3632115,,,,,,,,,,0.148720659,,,,,,,,,,0.038316009,,,,,,,,,,5.010298667,,,,,,,,,,0.103687094,,,,,,,,,,0.27097094,,,,,,,,,,0.196282923,,,,,,,,,,0.006439542,,,,,,,,,,4.085025389,,,,,,,,,,0.020044611,,,,,,,,,,0.077189102,,,,,,,,,,56.89389503,,,,,,,,,,1009.431704,,,,,,,,,,0.163809376,,,,,,,,,,0.039226934,,,,,,,,,,5.007378123,,,,,,,,,,0.055387805,,,,,,,,,,0.179633973,,,,,,,,,,0.108221437,,,,,,,,,,0.00670572,,,,,,,,,,4.47504553,,,,,,,,,,0.022627703,,,,,,,,,,0.074056483,,,,,,,,,,55.33701213,,,,,,,,,,980.9639399,,,,,,,,,,0.152632601,,,,,,,,,,0.038626994,,,,,,,,,,4.922845871,,,,,,,,,,0.061995248,,,,,,,,,,0.187129289,,,,,,,,,,0.119476519,,,,,,,,,,0.006516606,,,,,,,,,,4.199867743,,,,,,,,,,0.019670848,,,,,,,,,,0.071806551,,,,,,,,,,54.38546832,,,,,,,,,,1001.404482,,,,,,,,,,0.156752702,,,,,,,,,,0.038713253,,,,,,,,,,4.897193478,,,,,,,,,,0.056646337,,,,,,,,,,0.176129109,,,,,,,,,,0.109158035,,,,,,,,,,0.006652394,,,,,,,,,,4.23076871,,,,,,,,,,0.027718468,,,,,,,,,,0.076788115,,,,,,,,,,58.42194379,,,,,,,,,,996.470524,,,,,,,,,,0.157281548,,,,,,,,,,0.038792275,,,,,,,,,,5.309270603,,,,,,,,,,0.076101969,,,,,,,,,,0.218209179,,,,,,,,,,0.145119182,,,,,,,,,,0.006522159,,,,,,,,,,4.328385974,,,,,,,,,,0.021501509,,,,,,,,,,0.076464779,,,,,,,,,,60.35877553,,,,,,,,,,996.4135025,,,,,,,,,,0.164702909,,,,,,,,,,0.038986639,,,,,,,,,,5.206341506,,,,,,,,,,0.063416968,,,,,,,,,,0.192207242,,,,,,,,,,0.121184502,,,,,,,,,,0.00612397,,,,,,,,,,4.371801046,,,,, +Heavy duty long haul truck,E10,2015,,,,,,0.045623819,,,,,,,,,,0.083271562,,,,,,,,,,76.78621688,,,,,,,,,,1004.615481,,,,,,,,,,0.188901621,,,,,,,,,,0.038703048,,,,,,,,,,5.642700594,,,,,,,,,,0.109487701,,,,,,,,,,0.293929116,,,,,,,,,,0.21006238,,,,,,,,,,0.006673725,,,,,,,,,,5.363131719,,,,,,,,,,0.038914864,,,,,,,,,,0.080350566,,,,,,,,,,75.23931457,,,,,,,,,,1007.905776,,,,,,,,,,0.185739324,,,,,,,,,,0.03868644,,,,,,,,,,5.567346587,,,,,,,,,,0.095407507,,,,,,,,,,0.264643206,,,,,,,,,,0.183578798,,,,,,,,,,0.006695581,,,,,,,,,,5.346130794,,,,,,,,,,0.043182463,,,,,,,,,,0.089729859,,,,,,,,,,84.00909422,,,,,,,,,,1029.675679,,,,,,,,,,0.198292148,,,,,,,,,,0.039344059,,,,,,,,,,5.67531571,,,,,,,,,,0.098253038,,,,,,,,,,0.280014332,,,,,,,,,,0.192105652,,,,,,,,,,0.006840202,,,,,,,,,,5.8447145,,,,,,,,,,0.045425689,,,,,,,,,,0.08111627,,,,,,,,,,76.05213583,,,,,,,,,,991.1163641,,,,,,,,,,0.177690387,,,,,,,,,,0.03831601,,,,,,,,,,5.400238264,,,,,,,,,,0.105022525,,,,,,,,,,0.28184754,,,,,,,,,,0.202622577,,,,,,,,,,0.006584052,,,,,,,,,,5.245042156,,,,,,,,,,0.021932682,,,,,,,,,,0.078265615,,,,,,,,,,75.59267697,,,,,,,,,,1026.647431,,,,,,,,,,0.195492108,,,,,,,,,,0.0392269,,,,,,,,,,5.448933789,,,,,,,,,,0.055371756,,,,,,,,,,0.186438312,,,,,,,,,,0.110337674,,,,,,,,,,0.006820084,,,,,,,,,,5.637507468,,,,,,,,,,0.024818702,,,,,,,,,,0.074996513,,,,,,,,,,73.09445909,,,,,,,,,,998.5368344,,,,,,,,,,0.182163846,,,,,,,,,,0.038626998,,,,,,,,,,5.32324434,,,,,,,,,,0.062110162,,,,,,,,,,0.193909304,,,,,,,,,,0.121966956,,,,,,,,,,0.006633344,,,,,,,,,,5.308935726,,,,,,,,,,0.021215264,,,,,,,,,,0.072852816,,,,,,,,,,72.03097949,,,,,,,,,,1017.509598,,,,,,,,,,0.187288725,,,,,,,,,,0.03871322,,,,,,,,,,5.31325429,,,,,,,,,,0.056178097,,,,,,,,,,0.181405583,,,,,,,,,,0.110266651,,,,,,,,,,0.006759382,,,,,,,,,,5.319214661,,,,,,,,,,0.030327291,,,,,,,,,,0.077948634,,,,,,,,,,77.41071183,,,,,,,,,,1015.053246,,,,,,,,,,0.187728745,,,,,,,,,,0.038792315,,,,,,,,,,5.709559822,,,,,,,,,,0.076050051,,,,,,,,,,0.22529331,,,,,,,,,,0.147716809,,,,,,,,,,0.006644197,,,,,,,,,,5.482678681,,,,,,,,,,0.022945005,,,,,,,,,,0.077965599,,,,,,,,,,80.50773811,,,,,,,,,,1013.78734,,,,,,,,,,0.196978629,,,,,,,,,,0.038986649,,,,,,,,,,5.638857095,,,,,,,,,,0.062427438,,,,,,,,,,0.196760639,,,,,,,,,,0.121463083,,,,,,,,,,0.006231129,,,,,,,,,,5.562115144,,,, +Heavy duty long haul truck,E10,2020,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E10,2025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E10,2030,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E15,1990,0.068553793,,,,,,,,,,0.303936951,,,,,,,,,,63.35972232,,,,,,,,,,960.2491957,,,,,,,,,,0.059481437,,,,,,,,,,0.038702923,,,,,,,,,,9.522632462,,,,,,,,,,0.176123322,,,,,,,,,,0.433153734,,,,,,,,,,0.333838726,,,,,,,,,,0.045436874,,,,,,,,,,5.083051276,,,,,,,,,,0.059003222,,,,,,,,,,0.300600283,,,,,,,,,,63.75545831,,,,,,,,,,964.0092356,,,,,,,,,,0.058739492,,,,,,,,,,0.038686063,,,,,,,,,,9.490252438,,,,,,,,,,0.15511619,,,,,,,,,,0.389323282,,,,,,,,,,0.294494282,,,,,,,,,,0.050656772,,,,,,,,,,5.231807402,,,,,,,,,,0.067271773,,,,,,,,,,0.347449526,,,,,,,,,,72.03093304,,,,,,,,,,981.6421925,,,,,,,,,,0.062781181,,,,,,,,,,0.039342909,,,,,,,,,,9.731292917,,,,,,,,,,0.168766672,,,,,,,,,,0.429360016,,,,,,,,,,0.32489502,,,,,,,,,,0.073147955,,,,,,,,,,5.872434479,,,,,,,,,,0.070804494,,,,,,,,,,0.31191642,,,,,,,,,,67.04443448,,,,,,,,,,944.5333882,,,,,,,,,,0.056073729,,,,,,,,,,0.038316279,,,,,,,,,,9.433450276,,,,,,,,,,0.180042527,,,,,,,,,,0.440307394,,,,,,,,,,0.343381378,,,,,,,,,,0.065543103,,,,,,,,,,5.269797476,,,,,,,,,,0.034899419,,,,,,,,,,0.299149917,,,,,,,,,,63.46013313,,,,,,,,,,982.3241889,,,,,,,,,,0.061900442,,,,,,,,,,0.039226297,,,,,,,,,,9.069134032,,,,,,,,,,0.096351566,,,,,,,,,,0.271311856,,,,,,,,,,0.186082636,,,,,,,,,,0.06037845,,,,,,,,,,5.815464654,,,,,,,,,,0.039888602,,,,,,,,,,0.291463813,,,,,,,,,,63.97884784,,,,,,,,,,955.1176109,,,,,,,,,,0.057669881,,,,,,,,,,0.038625933,,,,,,,,,,9.143060115,,,,,,,,,,0.109737183,,,,,,,,,,0.293200521,,,,,,,,,,0.21041496,,,,,,,,,,0.065410609,,,,,,,,,,5.480958377,,,,,,,,,,0.033098527,,,,,,,,,,0.283904915,,,,,,,,,,62.09936767,,,,,,,,,,972.831964,,,,,,,,,,0.059099636,,,,,,,,,,0.03871274,,,,,,,,,,9.016859334,,,,,,,,,,0.09386517,,,,,,,,,,0.259712578,,,,,,,,,,0.180157103,,,,,,,,,,0.060440555,,,,,,,,,,5.604222359,,,,,,,,,,0.046748656,,,,,,,,,,0.293441454,,,,,,,,,,64.4868581,,,,,,,,,,971.6293831,,,,,,,,,,0.059417226,,,,,,,,,,0.038791768,,,,,,,,,,9.929646094,,,,,,,,,,0.126186059,,,,,,,,,,0.33042142,,,,,,,,,,0.241347096,,,,,,,,,,0.059249912,,,,,,,,,,5.575558204,,,,,,,,,,0.034014536,,,,,,,,,,0.27156992,,,,,,,,,,59.69690391,,,,,,,,,,976.5363742,,,,,,,,,,0.061980599,,,,,,,,,,0.03898654,,,,,,,,,,9.315762292,,,,,,,,,,0.09651633,,,,,,,,,,0.26603266,,,,,,,,,,0.183384565,,,,,,,,,,0.028641859,,,,,,,,,,5.281282421,,,,,,,,, +Heavy duty long haul truck,E15,1995,0.017981059,0.042602526,,,,,,,,,0.178347851,0.258734032,,,,,,,,,67.11576764,70.14593443,,,,,,,,,946.6253505,958.8050726,,,,,,,,,0.043053199,0.065549806,,,,,,,,,0.03870291,0.038703106,,,,,,,,,6.074547648,7.478299537,,,,,,,,,0.058119877,0.110739195,,,,,,,,,0.187027349,0.295592735,,,,,,,,,0.112840976,0.210847,,,,,,,,,0.044734985,0.021678957,,,,,,,,,2.966961114,4.425809186,,,,,,,,,0.015722059,0.036697227,,,,,,,,,0.179316792,0.254569323,,,,,,,,,68.32953958,70.38119366,,,,,,,,,953.6995102,964.1365743,,,,,,,,,0.042752142,0.064753546,,,,,,,,,0.03868607,0.038686485,,,,,,,,,6.071700077,7.425366633,,,,,,,,,0.051500318,0.097577381,,,,,,,,,0.174476769,0.268472875,,,,,,,,,0.101127251,0.186269817,,,,,,,,,0.05006399,0.021968223,,,,,,,,,3.070090978,4.539585676,,,,,,,,,0.01695589,0.041436046,,,,,,,,,0.205711572,0.275753841,,,,,,,,,76.64681178,76.72709742,,,,,,,,,969.3118256,981.3214782,,,,,,,,,0.045761305,0.069216288,,,,,,,,,0.039342897,0.039344118,,,,,,,,,6.278526969,7.452897492,,,,,,,,,0.053711889,0.104718699,,,,,,,,,0.187318498,0.291764119,,,,,,,,,0.107122003,0.201722763,,,,,,,,,0.072283188,0.022842484,,,,,,,,,3.467863448,4.851039334,,,,,,,,,0.01763472,0.043044686,,,,,,,,,0.186089907,0.255945034,,,,,,,,,71.81295028,72.04787856,,,,,,,,,935.2725893,945.4435894,,,,,,,,,0.040699809,0.061803759,,,,,,,,,0.03831624,0.038316037,,,,,,,,,6.013429844,7.253950552,,,,,,,,,0.056025852,0.109422522,,,,,,,,,0.179431171,0.290576935,,,,,,,,,0.109560243,0.209710052,,,,,,,,,0.064910552,0.037939003,,,,,,,,,3.183296756,4.465002027,,,,,,,,,0.009364299,0.021447295,,,,,,,,,0.185971504,0.258384625,,,,,,,,,69.02095285,70.29882454,,,,,,,,,980.8959311,986.8372478,,,,,,,,,0.045123863,0.068244742,,,,,,,,,0.039226285,0.039226965,,,,,,,,,5.814227531,7.099606901,,,,,,,,,0.031366428,0.059482683,,,,,,,,,0.139519311,0.194792033,,,,,,,,,0.065907734,0.116966778,,,,,,,,,0.060262094,0.022829928,,,,,,,,,3.450212517,5.105144996,,,,,,,,,0.010458178,0.024223629,,,,,,,,,0.180228025,0.244074072,,,,,,,,,69.7412827,69.69935328,,,,,,,,,952.1832101,958.8173902,,,,,,,,,0.04203093,0.063580431,,,,,,,,,0.038625939,0.038627001,,,,,,,,,5.841031841,7.045385902,,,,,,,,,0.034818212,0.066592223,,,,,,,,,0.139735281,0.202773495,,,,,,,,,0.071414463,0.129127938,,,,,,,,,0.065212386,0.022287065,,,,,,,,,3.286523697,4.729801706,,,,,,,,,0.009221078,0.020501709,,,,,,,,,0.17770847,0.242668486,,,,,,,,,67.83463028,68.85705328,,,,,,,,,974.070698,978.6663859,,,,,,,,,0.042894519,0.065140021,,,,,,,,,0.03871275,0.038713237,,,,,,,,,5.759606726,7.004911782,,,,,,,,,0.031454217,0.058568749,,,,,,,,,0.133449229,0.186947931,,,,,,,,,0.06517518,0.114478409,,,,,,,,,0.060505898,0.031168936,,,,,,,,,3.343457602,4.880829333,,,,,,,,,0.012589965,0.028976889,,,,,,,,,0.179624224,0.247120473,,,,,,,,,69.96304903,73.27337836,,,,,,,,,966.5770541,974.264869,,,,,,,,,0.043290525,0.06550482,,,,,,,,,0.038791794,0.038792306,,,,,,,,,6.384852446,7.720602912,,,,,,,,,0.041797149,0.078916418,,,,,,,,,0.15658016,0.231647921,,,,,,,,,0.084181615,0.152624624,,,,,,,,,0.058847095,0.034995547,,,,,,,,,3.307115501,4.833580932,,,,,,,,,0.01001334,0.021690523,,,,,,,,,0.167489675,0.23252524,,,,,,,,,64.74391416,70.59088493,,,,,,,,,969.1573858,977.3003383,,,,,,,,,0.044820992,0.068300185,,,,,,,,,0.038986488,0.038986718,,,,,,,,,5.962131993,7.314768209,,,,,,,,,0.034477196,0.062704249,,,,,,,,,0.141915165,0.197478517,,,,,,,,,0.070135256,0.121368339,,,,,,,,,0.028347811,0.013162646,,,,,,,,,3.082181536,4.651223115,,,,,,,, +Heavy duty long haul truck,E15,2000,0.010139659,0.015234696,0.032113675,,,,,,,,0.019736905,0.022694243,0.114376619,,,,,,,,17.25318838,25.6482483,46.78522368,,,,,,,,944.8581491,947.634854,960.148412,,,,,,,,0.052438765,0.061673635,0.09042936,,,,,,,,0.038702875,0.038703055,0.038703055,,,,,,,,3.866837496,4.422126161,5.647434826,,,,,,,,0.037028515,0.053775239,0.090385257,,,,,,,,0.135356827,0.167854676,0.247362123,,,,,,,,0.073155959,0.101933968,0.171008927,,,,,,,,0.044631942,0.021426535,0.019528717,,,,,,,,1.153747369,1.593259654,3.206541212,,,,,,,,0.008889678,0.013320293,0.027702061,,,,,,,,0.019683945,0.022335485,0.111976314,,,,,,,,17.43951829,25.73004884,46.71739398,,,,,,,,953.1422918,955.6238426,966.5197937,,,,,,,,0.052261481,0.061302329,0.089360675,,,,,,,,0.038686081,0.038686487,0.038686459,,,,,,,,3.864220515,4.387667611,5.599483192,,,,,,,,0.032644744,0.047369807,0.079410409,,,,,,,,0.127425242,0.155825043,0.225288127,,,,,,,,0.065607823,0.090760784,0.150933499,,,,,,,,0.050017511,0.021775325,0.019658302,,,,,,,,1.206551583,1.642963758,3.273589016,,,,,,,,0.008962784,0.013556471,0.030224013,,,,,,,,0.023068772,0.024496368,0.121853139,,,,,,,,19.93337099,28.56343732,51.62425047,,,,,,,,968.3026587,971.1658032,983.5724627,,,,,,,,0.055993912,0.065635462,0.095527892,,,,,,,,0.039342858,0.03934408,0.039344097,,,,,,,,4.005964546,4.390584783,5.628840989,,,,,,,,0.032248851,0.04691061,0.081970082,,,,,,,,0.133497804,0.161430134,0.238293042,,,,,,,,0.066289157,0.09103089,0.157607956,,,,,,,,0.07222524,0.02261539,0.020005148,,,,,,,,1.395910196,1.803128668,3.528061675,,,,,,,,0.009588326,0.014476352,0.031714703,,,,,,,,0.020411017,0.022260612,0.110922046,,,,,,,,18.4426884,26.21090325,46.80797866,,,,,,,,935.3178256,937.7565964,948.5403263,,,,,,,,0.049663243,0.058330389,0.085275848,,,,,,,,0.038316217,0.038315988,0.038316013,,,,,,,,3.873770369,4.332845841,5.419801284,,,,,,,,0.034646558,0.050379708,0.086826693,,,,,,,,0.127340247,0.158017357,0.236802665,,,,,,,,0.069065628,0.096231321,0.164759327,,,,,,,,0.064917026,0.03768717,0.019292618,,,,,,,,1.301039867,1.6743801,3.201038506,,,,,,,,0.005180746,0.007732008,0.015964911,,,,,,,,0.020099988,0.022859196,0.112975283,,,,,,,,17.73616303,26.19685456,47.05884692,,,,,,,,983.7125629,985.4380406,992.2359392,,,,,,,,0.055217523,0.064721405,0.094187463,,,,,,,,0.039226236,0.039226923,0.039226914,,,,,,,,3.697496826,4.179448444,5.372517931,,,,,,,,0.01916331,0.027765646,0.047075716,,,,,,,,0.105643845,0.122048721,0.164338167,,,,,,,,0.042583069,0.057127457,0.093148728,,,,,,,,0.060424213,0.022799052,0.02018135,,,,,,,,1.410068461,1.892237523,3.666616398,,,,,,,,0.005793476,0.008657558,0.018725332,,,,,,,,0.01931562,0.021299836,0.107146638,,,,,,,,17.80950189,25.82784238,46.63078951,,,,,,,,954.3638676,956.2179597,966.9826588,,,,,,,,0.051425714,0.060283579,0.087967583,,,,,,,,0.038625975,0.038627029,0.038664659,,,,,,,,3.747818253,4.173007031,5.318596639,,,,,,,,0.021378231,0.030988655,0.054738242,,,,,,,,0.104084286,0.122304835,0.174004094,,,,,,,,0.045845994,0.061992807,0.10622459,,,,,,,,0.065362257,0.022231079,0.019667723,,,,,,,,1.340650917,1.75643984,3.487574618,,,,,,,,0.0053499,0.007943886,0.01567669,,,,,,,,0.01893286,0.021208807,0.104756979,,,,,,,,17.17877808,25.1513908,45.03804741,,,,,,,,977.9208633,979.4028964,985.0049026,,,,,,,,0.052339939,0.061476493,0.089879041,,,,,,,,0.038712746,0.038713213,0.038713236,,,,,,,,3.677962726,4.147560538,5.265549531,,,,,,,,0.020005989,0.0289525,0.047749481,,,,,,,,0.101938117,0.119166578,0.159741093,,,,,,,,0.043357007,0.058627278,0.093254299,,,,,,,,0.060740825,0.031189272,0.02003428,,,,,,,,1.369286476,1.784785108,3.463032034,,,,,,,,0.007131984,0.01065694,0.021876641,,,,,,,,0.019521334,0.021716447,0.106293068,,,,,,,,17.80514618,26.69329357,47.61455932,,,,,,,,967.9618263,969.9664729,978.3375382,,,,,,,,0.052955583,0.062085716,0.090403105,,,,,,,,0.038791748,0.038792278,0.038792301,,,,,,,,4.074471777,4.589766234,5.752380642,,,,,,,,0.026335295,0.038181402,0.063904557,,,,,,,,0.116358547,0.139306761,0.194687004,,,,,,,,0.054845138,0.075176142,0.122861235,,,,,,,,0.05889658,0.034854982,0.017841087,,,,,,,,1.352625243,1.792938874,3.4318537,,,,,,,,0.006037013,0.008939109,0.017062451,,,,,,,,0.018186609,0.020768028,0.102150248,,,,,,,,16.73308365,26.4166305,47.5032242,,,,,,,,969.2022706,971.1748675,979.782136,,,,,,,,0.054559049,0.064195678,0.09421848,,,,,,,,0.038986446,0.038986644,0.038986678,,,,,,,,3.765551057,4.321219106,5.516442627,,,,,,,,0.02271445,0.032854429,0.052893607,,,,,,,,0.109612806,0.129207216,0.172387294,,,,,,,,0.047940852,0.065306083,0.10217005,,,,,,,,0.028319643,0.013056861,0.00948445,,,,,,,,1.230470993,1.687057454,3.35087288,,,,,,, +Heavy duty long haul truck,E15,2005,0.01143382,0.014365027,0.018515166,0.03944315,,,,,,,0.01381104,0.013450342,0.018404441,0.117459333,,,,,,,11.81398761,23.63783083,27.23615647,53.04320125,,,,,,,943.5560803,945.3634226,951.1992471,970.0784796,,,,,,,0.0197186,0.022447927,0.030939636,0.119823088,,,,,,,0.038702923,0.038703093,0.038703075,0.038703053,,,,,,,3.549732386,4.222853089,4.405988664,5.395325864,,,,,,,0.043694973,0.054134851,0.066765838,0.107291995,,,,,,,0.136818419,0.156476108,0.181787556,0.281239997,,,,,,,0.082898152,0.100277785,0.122655322,0.201415029,,,,,,,0.044567777,0.021375214,0.019346697,0.006576895,,,,,,,0.817276755,1.29943223,1.581996988,3.899045293,,,,,,,0.010225525,0.012537048,0.01609526,0.033911676,,,,,,,0.013698075,0.013108449,0.017742674,0.114693804,,,,,,,11.9853719,23.71638613,27.16832282,52.45802926,,,,,,,951.9623341,953.5512637,958.7395447,975.8182568,,,,,,,0.019667819,0.022340769,0.030656634,0.118159129,,,,,,,0.038686031,0.038686448,0.038686415,0.038686493,,,,,,,3.555881509,4.184719023,4.360078671,5.340139066,,,,,,,0.039139177,0.047438056,0.058441146,0.094006545,,,,,,,0.128446571,0.143898961,0.165896536,0.254322016,,,,,,,0.075073133,0.088732195,0.108178037,0.177060514,,,,,,,0.049953204,0.021728194,0.019500056,0.006615811,,,,,,,0.858398738,1.335486239,1.607777352,3.957030667,,,,,,,0.010896606,0.011165624,0.014338817,0.036990104,,,,,,,0.015428427,0.013651871,0.018433001,0.127969959,,,,,,,13.38202779,25.25319564,29.39263957,57.76273527,,,,,,,966.9775623,968.8431968,974.7098535,993.9101745,,,,,,,0.021077046,0.023927926,0.032796144,0.126242783,,,,,,,0.039342901,0.039344115,0.03934407,0.039344097,,,,,,,3.721275708,4.206682795,4.387285211,5.396216355,,,,,,,0.041121026,0.042222061,0.05200803,0.096367309,,,,,,,0.137849819,0.138946102,0.158575981,0.267412645,,,,,,,0.079651138,0.080608324,0.097957859,0.183861256,,,,,,,0.072129157,0.022562252,0.019824885,0.00673847,,,,,,,0.969884459,1.421364956,1.699342157,4.313884221,,,,,,,0.011539908,0.013564408,0.017537954,0.038872633,,,,,,,0.013451378,0.013268846,0.016950882,0.114774381,,,,,,,12.36570899,25.5050495,26.81192593,52.99240304,,,,,,,934.1253929,935.6509277,940.8512463,958.1367022,,,,,,,0.018682545,0.021244513,0.029216102,0.112875399,,,,,,,0.038316247,0.038316025,0.038316051,0.038316007,,,,,,,3.565044216,4.308835581,4.259975716,5.180003838,,,,,,,0.04375624,0.050933799,0.062860132,0.102423902,,,,,,,0.134384735,0.147796445,0.171112598,0.268383764,,,,,,,0.083129951,0.094985488,0.115599059,0.193100878,,,,,,,0.064834741,0.037607593,0.01913622,0.006495935,,,,,,,0.919561683,1.377281876,1.577546068,3.865743812,,,,,,,0.006394241,0.007843148,0.010050359,0.019357908,,,,,,,0.013935627,0.013325982,0.017611874,0.114081727,,,,,,,12.63228202,24.54617448,27.74132906,52.47753991,,,,,,,982.8381928,983.8491465,987.4308523,1000.134706,,,,,,,0.020785123,0.023595283,0.032337612,0.124466647,,,,,,,0.039226277,0.039226977,0.039226969,0.039226926,,,,,,,3.419319805,3.945845606,4.126107603,5.14697149,,,,,,,0.024527861,0.02973466,0.036613304,0.055149896,,,,,,,0.103594755,0.113156051,0.126875927,0.180005052,,,,,,,0.05009106,0.058537433,0.070659234,0.107491276,,,,,,,0.060369534,0.022762388,0.020083617,0.00678067,,,,,,,1.025695727,1.546645634,1.814365436,4.345730703,,,,,,,0.007284762,0.008182681,0.010632549,0.021821957,,,,,,,0.013159461,0.012080512,0.016212699,0.109263015,,,,,,,12.46281063,23.78032327,27.23108187,51.23037383,,,,,,,953.4505322,954.5735713,961.8276475,971.5776675,,,,,,,0.019357107,0.021976278,0.030205027,0.115967794,,,,,,,0.0386259,0.038626942,0.03866461,0.038627019,,,,,,,3.474794647,3.964438095,4.119096837,5.079709247,,,,,,,0.027894907,0.031142111,0.039054944,0.061638156,,,,,,,0.105511132,0.111128805,0.127167584,0.187050488,,,,,,,0.055480739,0.060439503,0.074416463,0.118453527,,,,,,,0.065299966,0.022193167,0.01956288,0.006587061,,,,,,,0.969758528,1.415327982,1.686322762,4.064943192,,,,,,,0.006536609,0.007815179,0.009924017,0.019009226,,,,,,,0.013160149,0.012976875,0.016620094,0.105594262,,,,,,,12.25965622,24.66247877,26.8440354,50.39386364,,,,,,,977.1323634,977.9497661,981.0668952,992.5255152,,,,,,,0.019689354,0.022390178,0.030792567,0.118970176,,,,,,,0.038712758,0.038713271,0.038713231,0.038713215,,,,,,,3.398721694,4.029825615,4.095292495,5.044257788,,,,,,,0.025216389,0.02990331,0.036730377,0.056205962,,,,,,,0.100691729,0.109436374,0.122761424,0.176054098,,,,,,,0.050751054,0.058476297,0.070250407,0.108124747,,,,,,,0.060691343,0.031142467,0.01995419,0.006729081,,,,,,,1.005728424,1.497690411,1.724136841,4.107906064,,,,,,,0.008568606,0.009821878,0.012523577,0.026666289,,,,,,,0.013373914,0.013183018,0.016618433,0.110508569,,,,,,,12.52828421,26.01620076,27.75452939,53.90880016,,,,,,,966.9759964,968.2058873,972.3879871,986.6813482,,,,,,,0.019932101,0.022631656,0.031030132,0.119489976,,,,,,,0.038791805,0.038792373,0.03879234,0.038792277,,,,,,,3.723627852,4.305579679,4.260714177,5.499719053,,,,,,,0.032851357,0.037421405,0.046012616,0.075375129,,,,,,,0.117222225,0.125722132,0.142398563,0.217332881,,,,,,,0.064369671,0.071878003,0.086616307,0.143347972,,,,,,,0.058833008,0.034793013,0.017726589,0.006590799,,,,,,,0.980103144,1.483497157,1.686119919,4.140830333,,,,,,,0.006606211,0.007797608,0.009817927,0.020760839,,,,,,,0.01161121,0.011161644,0.015479319,0.108309155,,,,,,,10.7568086,22.17531314,26.41330507,55.46332188,,,,,,,968.2503369,969.4929709,973.6457417,987.4475206,,,,,,,0.02051309,0.023361017,0.032221719,0.124887007,,,,,,,0.038986474,0.038986639,0.038986675,0.038986668,,,,,,,2.962350765,2.645215426,2.823902271,5.363793398,,,,,,,0.025635095,0.030092943,0.036882661,0.062707959,,,,,,,0.103330383,0.111774729,0.125116952,0.191666446,,,,,,,0.051336238,0.058795584,0.070583818,0.119688655,,,,,,,0.028289078,0.013032642,0.009419063,0.006193586,,,,,,,0.862390086,1.276106212,1.547126725,4.127214586,,,,,, +Heavy duty long haul truck,E15,2010,,,,,0.041319461,,,,,,,,,,0.087094607,,,,,,,,,,54.63151617,,,,,,,,,,981.6582118,,,,,,,,,,0.157987672,,,,,,,,,,0.038703078,,,,,,,,,,5.503476915,,,,,,,,,,0.10914157,,,,,,,,,,0.284805586,,,,,,,,,,0.205530925,,,,,,,,,,0.006655403,,,,,,,,,,4.287972434,,,,,,,,,,0.035429882,,,,,,,,,,0.084518301,,,,,,,,,,53.77388114,,,,,,,,,,986.6822769,,,,,,,,,,0.15557174,,,,,,,,,,0.038686483,,,,,,,,,,5.43986342,,,,,,,,,,0.095406343,,,,,,,,,,0.256782878,,,,,,,,,,0.180211536,,,,,,,,,,0.006689466,,,,,,,,,,4.315676671,,,,,,,,,,0.038669731,,,,,,,,,,0.094834109,,,,,,,,,,59.69402217,,,,,,,,,,1005.981245,,,,,,,,,,0.166151162,,,,,,,,,,0.039344077,,,,,,,,,,5.516602128,,,,,,,,,,0.097331447,,,,,,,,,,0.269136722,,,,,,,,,,0.186466028,,,,,,,,,,0.006820308,,,,,,,,,,4.726670474,,,,,,,,,,0.040735731,,,,,,,,,,0.085053676,,,,,,,,,,54.42217725,,,,,,,,,,969.3632115,,,,,,,,,,0.148720659,,,,,,,,,,0.038316009,,,,,,,,,,5.278237096,,,,,,,,,,0.103950367,,,,,,,,,,0.271476921,,,,,,,,,,0.196730527,,,,,,,,,,0.006572048,,,,,,,,,,4.229874902,,,,,,,,,,0.020087276,,,,,,,,,,0.082859209,,,,,,,,,,53.7753696,,,,,,,,,,1009.431704,,,,,,,,,,0.163809376,,,,,,,,,,0.039226934,,,,,,,,,,5.274718803,,,,,,,,,,0.055539954,,,,,,,,,,0.179924707,,,,,,,,,,0.108478628,,,,,,,,,,0.006843702,,,,,,,,,,4.649010068,,,,,,,,,,0.022676393,,,,,,,,,,0.079543834,,,,,,,,,,52.33221563,,,,,,,,,,980.9639399,,,,,,,,,,0.152632601,,,,,,,,,,0.038626994,,,,,,,,,,5.187423697,,,,,,,,,,0.062164382,,,,,,,,,,0.187453669,,,,,,,,,,0.119763469,,,,,,,,,,0.006650697,,,,,,,,,,4.367060881,,,,,,,,,,0.019712125,,,,,,,,,,0.076518584,,,,,,,,,,51.40790174,,,,,,,,,,1001.404482,,,,,,,,,,0.156752702,,,,,,,,,,0.038713253,,,,,,,,,,5.159836726,,,,,,,,,,0.056798245,,,,,,,,,,0.176418145,,,,,,,,,,0.109413713,,,,,,,,,,0.00678928,,,,,,,,,,4.380099625,,,,,,,,,,0.02777187,,,,,,,,,,0.080828099,,,,,,,,,,55.17943622,,,,,,,,,,996.470524,,,,,,,,,,0.157281548,,,,,,,,,,0.038792275,,,,,,,,,,5.588838394,,,,,,,,,,0.076298323,,,,,,,,,,0.21858282,,,,,,,,,,0.145449711,,,,,,,,,,0.006656364,,,,,,,,,,4.450115334,,,,,,,,,,0.021539347,,,,,,,,,,0.078750908,,,,,,,,,,56.8590985,,,,,,,,,,996.4135025,,,,,,,,,,0.164702909,,,,,,,,,,0.038986639,,,,,,,,,,5.47464767,,,,,,,,,,0.063573412,,,,,,,,,,0.192500502,,,,,,,,,,0.121443926,,,,,,,,,,0.006249981,,,,,,,,,,4.437829614,,,,, +Heavy duty long haul truck,E15,2015,,,,,,0.045785662,,,,,,,,,,0.088578589,,,,,,,,,,72.70397181,,,,,,,,,,1004.615481,,,,,,,,,,0.188901621,,,,,,,,,,0.038703048,,,,,,,,,,5.941216155,,,,,,,,,,0.110006548,,,,,,,,,,0.294935954,,,,,,,,,,0.210953047,,,,,,,,,,0.006811052,,,,,,,,,,5.579610037,,,,,,,,,,0.039056637,,,,,,,,,,0.085669359,,,,,,,,,,71.23679312,,,,,,,,,,1007.905776,,,,,,,,,,0.185739324,,,,,,,,,,0.03868644,,,,,,,,,,5.861850061,,,,,,,,,,0.095866415,,,,,,,,,,0.265532438,,,,,,,,,,0.184365424,,,,,,,,,,0.006833354,,,,,,,,,,5.569401787,,,,,,,,,,0.043341464,,,,,,,,,,0.096122104,,,,,,,,,,79.58743782,,,,,,,,,,1029.675679,,,,,,,,,,0.198292148,,,,,,,,,,0.039344059,,,,,,,,,,5.978378926,,,,,,,,,,0.098720087,,,,,,,,,,0.2809332,,,,,,,,,,0.192918493,,,,,,,,,,0.006980952,,,,,,,,,,6.106798606,,,,,,,,,,0.045579453,,,,,,,,,,0.086241759,,,,,,,,,,71.99259555,,,,,,,,,,991.1163641,,,,,,,,,,0.177690387,,,,,,,,,,0.03831601,,,,,,,,,,5.684438973,,,,,,,,,,0.105513642,,,,,,,,,,0.282801086,,,,,,,,,,0.203466108,,,,,,,,,,0.00671953,,,,,,,,,,5.458970082,,,,,,,,,,0.022015942,,,,,,,,,,0.08383333,,,,,,,,,,71.52947992,,,,,,,,,,1026.647431,,,,,,,,,,0.195492108,,,,,,,,,,0.0392269,,,,,,,,,,5.735461368,,,,,,,,,,0.055653366,,,,,,,,,,0.186980474,,,,,,,,,,0.110817272,,,,,,,,,,0.006960421,,,,,,,,,,5.888258516,,,,,,,,,,0.024915069,,,,,,,,,,0.080382439,,,,,,,,,,69.20165258,,,,,,,,,,998.5368344,,,,,,,,,,0.182163846,,,,,,,,,,0.038626998,,,,,,,,,,5.605005462,,,,,,,,,,0.062424662,,,,,,,,,,0.194517973,,,,,,,,,,0.122505385,,,,,,,,,,0.006769836,,,,,,,,,,5.550025939,,,,,,,,,,0.021294425,,,,,,,,,,0.077472242,,,,,,,,,,68.16585433,,,,,,,,,,1017.509598,,,,,,,,,,0.187288725,,,,,,,,,,0.03871322,,,,,,,,,,5.593886905,,,,,,,,,,0.056457698,,,,,,,,,,0.181940572,,,,,,,,,,0.110739918,,,,,,,,,,0.006898468,,,,,,,,,,5.53472437,,,,,,,,,,0.030429649,,,,,,,,,,0.081885304,,,,,,,,,,73.22806791,,,,,,,,,,1015.053246,,,,,,,,,,0.187728745,,,,,,,,,,0.038792315,,,,,,,,,,6.00491108,,,,,,,,,,0.076411525,,,,,,,,,,0.225984971,,,,,,,,,,0.148328671,,,,,,,,,,0.006780912,,,,,,,,,,5.663093649,,,,,,,,,,0.023012166,,,,,,,,,,0.080135138,,,,,,,,,,75.99752666,,,,,,,,,,1013.78734,,,,,,,,,,0.196978629,,,,,,,,,,0.038986649,,,,,,,,,,5.924050438,,,,,,,,,,0.062709924,,,,,,,,,,0.197289083,,,,,,,,,,0.121930554,,,,,,,,,,0.006359345,,,,,,,,,,5.669028355,,,, +Heavy duty long haul truck,E15,2020,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E15,2025,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty long haul truck,E15,2030,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Heavy duty short haul truck,B0,1990,0.922999057,,,,,,,,,,0.003092393,,,,,,,,,,6.11812987,,,,,,,,,,1418.647944,,,,,,,,,,0.003169957,,,,,,,,,,0.024121028,,,,,,,,,,26.67436957,,,,,,,,,,0.517371725,,,,,,,,,,1.939237514,,,,,,,,,,1.683332819,,,,,,,,,,0.108118187,,,,,,,,,,1.424805097,,,,,,,,,,0.92700197,,,,,,,,,,0.00305816,,,,,,,,,,6.100221876,,,,,,,,,,1432.05578,,,,,,,,,,0.00314002,,,,,,,,,,0.0241277,,,,,,,,,,26.74440299,,,,,,,,,,0.51574402,,,,,,,,,,1.941516024,,,,,,,,,,1.68505045,,,,,,,,,,0.109140046,,,,,,,,,,1.409506492,,,,,,,,,,0.924197962,,,,,,,,,,0.003236509,,,,,,,,,,6.35896782,,,,,,,,,,1448.189836,,,,,,,,,,0.003396815,,,,,,,,,,0.02444625,,,,,,,,,,26.93254989,,,,,,,,,,0.551239966,,,,,,,,,,2.010038732,,,,,,,,,,1.735310981,,,,,,,,,,0.110369642,,,,,,,,,,1.492486007,,,,,,,,,,0.915306339,,,,,,,,,,0.002997983,,,,,,,,,,5.927113181,,,,,,,,,,1412.475971,,,,,,,,,,0.002986771,,,,,,,,,,0.023951064,,,,,,,,,,26.00694252,,,,,,,,,,0.497782645,,,,,,,,,,1.889651904,,,,,,,,,,1.646136346,,,,,,,,,,0.107647806,,,,,,,,,,1.38084494,,,,,,,,,,0.922457364,,,,,,,,,,0.003044123,,,,,,,,,,6.303941935,,,,,,,,,,1458.475217,,,,,,,,,,0.003344508,,,,,,,,,,0.024389794,,,,,,,,,,25.69121237,,,,,,,,,,0.545007011,,,,,,,,,,1.995122505,,,,,,,,,,1.724194925,,,,,,,,,,0.111153517,,,,,,,,,,1.406589112,,,,,,,,,,0.916969803,,,,,,,,,,0.002955763,,,,,,,,,,6.041507588,,,,,,,,,,1432.265144,,,,,,,,,,0.003092471,,,,,,,,,,0.024105543,,,,,,,,,,25.64543963,,,,,,,,,,0.513539463,,,,,,,,,,1.924078489,,,,,,,,,,1.671459732,,,,,,,,,,0.109155993,,,,,,,,,,1.363796812,,,,,,,,,,0.921951315,,,,,,,,,,0.002930892,,,,,,,,,,6.107986518,,,,,,,,,,1447.500959,,,,,,,,,,0.003157475,,,,,,,,,,0.024133863,,,,,,,,,,25.40666414,,,,,,,,,,0.517826065,,,,,,,,,,1.938991348,,,,,,,,,,1.682959697,,,,,,,,,,0.110317122,,,,,,,,,,1.353665528,,,,,,,,,,0.927941942,,,,,,,,,,0.003018968,,,,,,,,,,6.143111607,,,,,,,,,,1446.045827,,,,,,,,,,0.003179428,,,,,,,,,,0.024182502,,,,,,,,,,27.70264189,,,,,,,,,,0.521083102,,,,,,,,,,1.953712362,,,,,,,,,,1.694022873,,,,,,,,,,0.110206243,,,,,,,,,,1.392828402,,,,,,,,,,0.931296038,,,,,,,,,,0.002990332,,,,,,,,,,6.265080547,,,,,,,,,,1437.924821,,,,,,,,,,0.003306439,,,,,,,,,,0.024251682,,,,,,,,,,27.05688557,,,,,,,,,,0.5317179,,,,,,,,,,1.979103651,,,,,,,,,,1.713319032,,,,,,,,,,0.109587318,,,,,,,,,,1.381091272,,,,,,,,, +Heavy duty short haul truck,B0,1995,0.610930793,0.683238473,,,,,,,,,0.003288312,0.003201133,,,,,,,,,5.501833245,6.05067899,,,,,,,,,1450.675355,1408.976038,,,,,,,,,0.002446229,0.003233847,,,,,,,,,0.024213971,0.024083793,,,,,,,,,20.98265082,22.21263164,,,,,,,,,0.297006227,0.375967916,,,,,,,,,1.250206965,1.43848046,,,,,,,,,1.053739968,1.226342897,,,,,,,,,0.110559071,0.012390124,,,,,,,,,1.351931473,1.460715527,,,,,,,,,0.614215766,0.686624716,,,,,,,,,0.003273855,0.003165193,,,,,,,,,5.503263803,6.034793141,,,,,,,,,1467.685473,1423.950327,,,,,,,,,0.002435665,0.003202978,,,,,,,,,0.024221341,0.02409013,,,,,,,,,21.03122298,22.27367641,,,,,,,,,0.297181832,0.3757733,,,,,,,,,1.254358501,1.442348334,,,,,,,,,1.057313469,1.229514323,,,,,,,,,0.111855431,0.012521805,,,,,,,,,1.346242153,1.444786943,,,,,,,,,0.617755798,0.687805754,,,,,,,,,0.003446223,0.003352891,,,,,,,,,5.700999307,6.289752002,,,,,,,,,1482.012179,1440.242949,,,,,,,,,0.002628207,0.003464295,,,,,,,,,0.024533103,0.024411534,,,,,,,,,21.16258292,22.43580541,,,,,,,,,0.326043184,0.407471877,,,,,,,,,1.318623812,1.50723723,,,,,,,,,1.104274813,1.277071224,,,,,,,,,0.11294731,0.012665075,,,,,,,,,1.417472957,1.532177835,,,,,,,,,0.600028419,0.673261098,,,,,,,,,0.00318981,0.00310219,,,,,,,,,5.36284887,5.863073453,,,,,,,,,1451.174344,1405.27301,,,,,,,,,0.002316506,0.003046587,,,,,,,,,0.024049309,0.023911625,,,,,,,,,20.48186151,21.64712508,,,,,,,,,0.279591657,0.357525064,,,,,,,,,1.201001046,1.389425503,,,,,,,,,1.016524776,1.189231649,,,,,,,,,0.110597077,0.01235756,,,,,,,,,1.311556145,1.41461765,,,,,,,,,0.614988024,0.685385929,,,,,,,,,0.003342279,0.003148553,,,,,,,,,5.659048808,6.235591417,,,,,,,,,1502.766956,1454.86182,,,,,,,,,0.002589496,0.003410996,,,,,,,,,0.024477923,0.024354548,,,,,,,,,20.1946493,21.39987414,,,,,,,,,0.320524359,0.40161476,,,,,,,,,1.303857616,1.492558026,,,,,,,,,1.093178486,1.266045261,,,,,,,,,0.114529074,0.012793629,,,,,,,,,1.375873963,1.442061202,,,,,,,,,0.604209985,0.676429226,,,,,,,,,0.003215342,0.003056519,,,,,,,,,5.458751313,5.977009582,,,,,,,,,1476.056786,1427.39681,,,,,,,,,0.002402215,0.003154117,,,,,,,,,0.024200488,0.02406745,,,,,,,,,20.18469537,21.35130061,,,,,,,,,0.293379274,0.372454506,,,,,,,,,1.234587536,1.423250337,,,,,,,,,1.04147056,1.214293655,,,,,,,,,0.112493431,0.01255211,,,,,,,,,1.322899837,1.396936315,,,,,,,,,0.60988597,0.682072808,,,,,,,,,0.003217685,0.003029347,,,,,,,,,5.500580824,6.041487736,,,,,,,,,1495.393552,1445.19739,,,,,,,,,0.002442443,0.003220877,,,,,,,,,0.024227098,0.024096493,,,,,,,,,19.98645502,21.15749148,,,,,,,,,0.297497795,0.376571021,,,,,,,,,1.249944792,1.438316388,,,,,,,,,1.053414534,1.22604509,,,,,,,,,0.113967156,0.012708645,,,,,,,,,1.324609838,1.38622196,,,,,,,,,0.615959199,0.688021252,,,,,,,,,0.003271937,0.003123263,,,,,,,,,5.538565999,6.077619638,,,,,,,,,1486.696012,1440.385966,,,,,,,,,0.002466767,0.003243213,,,,,,,,,0.024275126,0.024145351,,,,,,,,,21.77977357,23.07290117,,,,,,,,,0.302014657,0.380970595,,,,,,,,,1.266446203,1.454490658,,,,,,,,,1.066336803,1.238538822,,,,,,,,,0.113304288,0.012666334,,,,,,,,,1.346091645,1.427393894,,,,,,,,,0.621415754,0.693067743,,,,,,,,,0.003286523,0.003091323,,,,,,,,,5.612493417,6.195351605,,,,,,,,,1473.199423,1429.700387,,,,,,,,,0.002545291,0.003373271,,,,,,,,,0.024340987,0.024215934,,,,,,,,,21.2613081,22.54040966,,,,,,,,,0.310514017,0.390019036,,,,,,,,,1.290746293,1.478608113,,,,,,,,,1.084654926,1.256885828,,,,,,,,,0.11227563,0.012572369,,,,,,,,,1.352155117,1.414795923,,,,,,,, +Heavy duty short haul truck,B0,2000,0.42457716,0.399980794,0.484828632,,,,,,,,0.002450853,0.00262121,0.002845934,,,,,,,,5.17992139,5.246693048,5.928821317,,,,,,,,1388.502288,1350.138479,1363.813265,,,,,,,,0.002358869,0.002567456,0.003426244,,,,,,,,0.024059998,0.023958155,0.023958944,,,,,,,,15.88544466,14.93423994,17.20842475,,,,,,,,0.237366845,0.24027294,0.285562284,,,,,,,,0.948998081,0.915559136,1.078789645,,,,,,,,0.780933485,0.751737344,0.900383312,,,,,,,,0.105820725,0.011872724,0.011992974,,,,,,,,1.360115564,1.420971524,1.523787404,,,,,,,,0.426728162,0.402023916,0.487412635,,,,,,,,0.002445745,0.002611627,0.00281172,,,,,,,,5.188043509,5.252201623,5.915398793,,,,,,,,1406.579772,1367.586344,1379.513737,,,,,,,,0.002355034,0.002559599,0.003394095,,,,,,,,0.024066143,0.023963225,0.023964009,,,,,,,,15.92911015,14.97870041,17.26173737,,,,,,,,0.237477862,0.24053031,0.285829986,,,,,,,,0.951972014,0.918746236,1.082596449,,,,,,,,0.783300617,0.754212245,0.903414237,,,,,,,,0.107198458,0.012026154,0.012131041,,,,,,,,1.357271398,1.415914904,1.506662311,,,,,,,,0.430315041,0.405219162,0.489635152,,,,,,,,0.002572512,0.002755534,0.002984028,,,,,,,,5.369123869,5.446553642,6.167985868,,,,,,,,1421.021876,1383.014041,1396.69168,,,,,,,,0.002537343,0.002758962,0.003667499,,,,,,,,0.024389372,0.024294722,0.024295445,,,,,,,,15.98168906,15.04104007,17.35721895,,,,,,,,0.259016132,0.261906398,0.310806276,,,,,,,,1.003796357,0.968665539,1.137254954,,,,,,,,0.819648915,0.789127485,0.94244756,,,,,,,,0.108299111,0.01216182,0.012282097,,,,,,,,1.429331037,1.494830492,1.601304836,,,,,,,,0.417266022,0.393070332,0.476873531,,,,,,,,0.002377087,0.002539214,0.002756292,,,,,,,,5.05424846,5.110209041,5.742877433,,,,,,,,1389.419673,1349.18066,1360.37724,,,,,,,,0.002238043,0.002432097,0.00322813,,,,,,,,0.023886397,0.023778209,0.023779047,,,,,,,,15.53175888,14.5825829,16.78336595,,,,,,,,0.224614159,0.227690614,0.270877338,,,,,,,,0.911666748,0.879692754,1.038388219,,,,,,,,0.754098414,0.726028994,0.870654284,,,,,,,,0.105890651,0.011864298,0.01196276,,,,,,,,1.31856916,1.376298978,1.474168799,,,,,,,,0.428394297,0.40342177,0.487640795,,,,,,,,0.002511754,0.002668904,0.002785051,,,,,,,,5.330720898,5.405420531,6.114378189,,,,,,,,1444.519005,1404.753598,1413.354824,,,,,,,,0.002500828,0.002718804,0.003611524,,,,,,,,0.024332037,0.02423587,0.024236612,,,,,,,,15.25856777,14.35551003,16.5614752,,,,,,,,0.254974587,0.257914962,0.306148541,,,,,,,,0.992475379,0.957796612,1.125094922,,,,,,,,0.811550599,0.781377059,0.933557341,,,,,,,,0.110089871,0.012352994,0.01242863,,,,,,,,1.396183075,1.448780983,1.501646259,,,,,,,,0.42059288,0.396145438,0.479910407,,,,,,,,0.002409984,0.002562425,0.002705919,,,,,,,,5.146637508,5.207857441,5.857728556,,,,,,,,1416.199629,1375.477673,1384.03201,,,,,,,,0.00232331,0.002523662,0.003341433,,,,,,,,0.024043115,0.023938777,0.023939578,,,,,,,,15.28932041,14.36395977,16.5449928,,,,,,,,0.234930081,0.238051968,0.282962786,,,,,,,,0.9385336,0.905857623,1.067297623,,,,,,,,0.773152887,0.744517312,0.891542794,,,,,,,,0.107931597,0.01209555,0.012170773,,,,,,,,1.337927902,1.389851044,1.45369969,,,,,,,,0.424068702,0.399474907,0.484080657,,,,,,,,0.002415923,0.002563156,0.002676607,,,,,,,,5.181586349,5.247182686,5.92068339,,,,,,,,1437.611541,1396.8467,1403.842832,,,,,,,,0.00235797,0.00256465,0.003412439,,,,,,,,0.024072626,0.023970388,0.023971168,,,,,,,,15.13259761,14.22582434,16.39327418,,,,,,,,0.237806161,0.24079017,0.286160305,,,,,,,,0.949300872,0.916015514,1.079114443,,,,,,,,0.78107744,0.751984065,0.9005016,,,,,,,,0.109563419,0.012283463,0.012344984,,,,,,,,1.342058198,1.391030191,1.441021234,,,,,,,,0.428077314,0.403274018,0.488697811,,,,,,,,0.002451878,0.00261089,0.002768591,,,,,,,,5.222126289,5.288433019,5.958813416,,,,,,,,1427.304079,1387.733314,1397.433754,,,,,,,,0.002385997,0.002593277,0.003436918,,,,,,,,0.024121607,0.024019856,0.024020639,,,,,,,,16.49025661,15.50919866,17.87689485,,,,,,,,0.241088931,0.244172692,0.290081488,,,,,,,,0.961608537,0.928159196,1.093033111,,,,,,,,0.790159137,0.760884561,0.910983362,,,,,,,,0.108777884,0.012203321,0.012288623,,,,,,,,1.361326367,1.416157729,1.487064148,,,,,,,,0.431482687,0.406507519,0.492518073,,,,,,,,0.002468331,0.002619859,0.002731647,,,,,,,,5.281466971,5.355914992,6.072517082,,,,,,,,1413.094354,1374.82025,1385.951236,,,,,,,,0.002452327,0.002671293,0.003573754,,,,,,,,0.024193105,0.024095511,0.024096273,,,,,,,,16.07844646,15.13283639,17.45444213,,,,,,,,0.247181146,0.249968368,0.296867905,,,,,,,,0.979357441,0.94474503,1.111849521,,,,,,,,0.802893952,0.772778994,0.924867305,,,,,,,,0.107694945,0.012089766,0.012187651,,,,,,,,1.370898685,1.421307326,1.471508213,,,,,,, +Heavy duty short haul truck,B0,2005,0.234078501,0.282112803,0.275063288,0.369960639,,,,,,,0.002168435,0.002357005,0.002382959,0.002815296,,,,,,,2.346125929,3.73869778,3.794704196,5.286634226,,,,,,,1345.10239,1299.47554,1283.95168,1353.839046,,,,,,,0.002308762,0.002395546,0.002625652,0.003661963,,,,,,,0.023954429,0.023839995,0.023792995,0.023922063,,,,,,,9.186068893,8.468486422,8.145388464,12.50658816,,,,,,,0.145019371,0.19289627,0.194489429,0.226872815,,,,,,,0.58666959,0.703790354,0.697447236,0.857481129,,,,,,,0.456264683,0.56594991,0.561000646,0.702338937,,,,,,,0.102513131,0.011427207,0.011290696,0.011905265,,,,,,,0.654024005,1.094598238,1.11467254,1.392763525,,,,,,,0.235207667,0.283396978,0.27629663,0.371899722,,,,,,,0.002155789,0.002350758,0.002370678,0.002773066,,,,,,,2.347418809,3.739844345,3.792332252,5.268734521,,,,,,,1363.151212,1316.888764,1300.7952,1369.654422,,,,,,,0.002308111,0.002394497,0.002619407,0.003624696,,,,,,,0.023959435,0.023843559,0.023795903,0.023926699,,,,,,,9.201067753,8.480734326,8.155343153,12.53893791,,,,,,,0.144977988,0.192952263,0.194592885,0.227007101,,,,,,,0.588339672,0.705886864,0.699602266,0.860367529,,,,,,,0.457396932,0.567389086,0.562460514,0.704535668,,,,,,,0.103888663,0.011580335,0.011438814,0.012044339,,,,,,,0.651691909,1.092155469,1.109359519,1.37286943,,,,,,,0.236931475,0.285440248,0.278257441,0.374181979,,,,,,,0.002290847,0.002498542,0.002526302,0.002964017,,,,,,,2.433230157,3.890564691,3.952846219,5.50504806,,,,,,,1378.10158,1332.937688,1317.739106,1387.485398,,,,,,,0.002485229,0.002577968,0.002821157,0.003916601,,,,,,,0.024291261,0.024185312,0.02414192,0.024261255,,,,,,,9.292390469,8.590204417,8.275746285,12.62362469,,,,,,,0.156443565,0.207836905,0.209438716,0.246106693,,,,,,,0.620723597,0.742931837,0.736302711,0.905071176,,,,,,,0.477191969,0.591832972,0.586743908,0.735256595,,,,,,,0.105028081,0.011721464,0.011587812,0.012201141,,,,,,,0.688753928,1.159192679,1.180851642,1.466836468,,,,,,,0.23116894,0.278478772,0.271471854,0.36433481,,,,,,,0.002092249,0.002271281,0.002294989,0.002717417,,,,,,,2.288137042,3.641335267,3.689452335,5.115121098,,,,,,,1345.000463,1297.295784,1280.50531,1350.423792,,,,,,,0.002192177,0.002273401,0.002487674,0.003447945,,,,,,,0.023774239,0.023652259,0.023602027,0.023739788,,,,,,,8.946564027,8.22594122,7.900565345,12.19614062,,,,,,,0.138351159,0.184346881,0.185986425,0.215642296,,,,,,,0.564746874,0.67878871,0.672699955,0.825571533,,,,,,,0.442717948,0.549318361,0.544493126,0.679868936,,,,,,,0.102505363,0.011408039,0.011260389,0.011875232,,,,,,,0.633180225,1.055975294,1.074517466,1.344612296,,,,,,,0.236128879,0.284459016,0.277295949,0.372718872,,,,,,,0.002193933,0.002421955,0.002420778,0.002728186,,,,,,,2.415632342,3.86081363,3.921180089,5.455894175,,,,,,,1401.590132,1354.909888,1338.237347,1404.485177,,,,,,,0.00244982,0.002541193,0.002780433,0.003856635,,,,,,,0.024232358,0.024124609,0.024080458,0.024201857,,,,,,,8.861426132,8.185838044,7.883799625,12.04658988,,,,,,,0.15433419,0.205124217,0.206739399,0.242555593,,,,,,,0.613983711,0.735257071,0.728711727,0.895392133,,,,,,,0.47303302,0.586736631,0.581691096,0.728476118,,,,,,,0.10681817,0.011914681,0.011768068,0.012350632,,,,,,,0.665396174,1.1254311,1.133304853,1.355020125,,,,,,,0.232802478,0.280397497,0.273322435,0.366873779,,,,,,,0.002101393,0.002305884,0.002311135,0.002648509,,,,,,,2.330427355,3.714874925,3.765796563,5.219297544,,,,,,,1372.22292,1324.311354,1307.01181,1374.405789,,,,,,,0.002277171,0.002361673,0.002582027,0.003567458,,,,,,,0.023934937,0.023817463,0.023769154,0.023901744,,,,,,,8.828659221,8.128913227,7.813931812,12.02672674,,,,,,,0.143791966,0.191500056,0.19316094,0.224851427,,,,,,,0.581401743,0.698024891,0.6918352,0.849042775,,,,,,,0.452976604,0.562053831,0.557183259,0.696162642,,,,,,,0.104580041,0.011645606,0.01149348,0.012086123,,,,,,,0.638340417,1.072339631,1.082535248,1.3138408,,,,,,,0.234021756,0.281982599,0.274913442,0.369591501,,,,,,,0.002097583,0.002310486,0.002307897,0.002611199,,,,,,,2.346533581,3.740190931,3.794794416,5.277937963,,,,,,,1394.217019,1346.400401,1328.959204,1394.910502,,,,,,,0.002309212,0.002395708,0.002623362,0.003645742,,,,,,,0.023966632,0.02385167,0.023804425,0.023934125,,,,,,,8.749276592,8.064635306,7.757034952,11.91682389,,,,,,,0.14525583,0.193276932,0.194895473,0.227310192,,,,,,,0.58716966,0.704469707,0.698162941,0.857966343,,,,,,,0.456571932,0.566383744,0.561452682,0.702609835,,,,,,,0.106256254,0.011839853,0.011686477,0.012266436,,,,,,,0.638552043,1.074989608,1.081595843,1.297116461,,,,,,,0.23588427,0.284184109,0.277054925,0.372963702,,,,,,,0.00214826,0.002355738,0.002364934,0.002718201,,,,,,,2.363069883,3.766547004,3.820218913,5.308152968,,,,,,,1384.106365,1337.393979,1320.775547,1387.980476,,,,,,,0.002339039,0.00242689,0.002654433,0.003670187,,,,,,,0.024016122,0.023901593,0.023854495,0.023983751,,,,,,,9.531573745,8.788804531,8.452901792,12.98449918,,,,,,,0.146872012,0.195453172,0.197107573,0.230242493,,,,,,,0.594303445,0.712787988,0.706476355,0.868834514,,,,,,,0.461082266,0.571964233,0.567024159,0.710436412,,,,,,,0.1054857,0.011760651,0.011614514,0.012205495,,,,,,,0.651251328,1.0949618,1.107226519,1.34775594,,,,,,,0.236889908,0.285579796,0.278477891,0.375383802,,,,,,,0.002149404,0.002370594,0.002367713,0.002670014,,,,,,,2.391989695,3.814539023,3.875745781,5.417203745,,,,,,,1370.628063,1325.514252,1309.741743,1376.123856,,,,,,,0.002399516,0.002490459,0.002731751,0.003820736,,,,,,,0.024091949,0.023982507,0.023937633,0.024060973,,,,,,,9.321177842,8.60994941,8.290142802,12.68394732,,,,,,,0.150089073,0.199397852,0.200960323,0.235487881,,,,,,,0.60428948,0.723875336,0.717326742,0.883425608,,,,,,,0.467200746,0.579339424,0.574282552,0.720715745,,,,,,,0.104458492,0.011656187,0.011517487,0.012101231,,,,,,,0.652271482,1.101483778,1.108325494,1.325685779,,,,,, +Heavy duty short haul truck,B0,2010,,0.077008772,0.070728941,0.064199497,0.206586124,,,,,,,0.043586278,0.078574421,0.093392859,0.064918564,,,,,,,1.200539311,1.399054786,1.486322022,3.726197312,,,,,,,1294.744668,1301.715442,1320.380231,1359.026637,,,,,,,0.002320325,0.002420623,0.002705409,0.003900577,,,,,,,0.023830998,0.023844613,0.023879037,0.023923746,,,,,,,4.816530928,4.722477408,4.665930295,8.099611613,,,,,,,0.054599195,0.051094213,0.04614305,0.128217953,,,,,,,0.278176224,0.272273407,0.259079367,0.534057833,,,,,,,0.173878016,0.168140495,0.155422427,0.406828698,,,,,,,0.01080778,0.010842015,0.010974846,0.011629116,,,,,,,0.321915087,0.339535927,0.340421983,0.911559271,,,,,,,0.07734226,0.071023261,0.064455911,0.207645116,,,,,,,0.042221099,0.07676532,0.090162898,0.061484356,,,,,,,1.19694927,1.393949217,1.476707771,3.700814696,,,,,,,1312.305213,1319.094092,1337.43851,1374.762042,,,,,,,0.002321426,0.002418825,0.002695338,0.003856913,,,,,,,0.023834428,0.023848233,0.023883122,0.023928396,,,,,,,4.817132098,4.722556606,4.66489509,8.111667189,,,,,,,0.054620605,0.051109708,0.046142852,0.128221391,,,,,,,0.279231968,0.273282575,0.259991518,0.535782545,,,,,,,0.174346505,0.168575534,0.15579372,0.407975258,,,,,,,0.010954305,0.010986681,0.011116508,0.011763696,,,,,,,0.320404408,0.337183501,0.335591906,0.891467794,,,,,,,0.077957101,0.071632963,0.065049797,0.209049294,,,,,,,0.046066814,0.083258628,0.098733698,0.068430482,,,,,,,1.252191538,1.459973566,1.553440562,3.888183925,,,,,,,1328.294613,1335.147483,1353.733635,1393.017071,,,,,,,0.00249861,0.002604417,0.002905128,0.004169073,,,,,,,0.024176989,0.024189574,0.0242214,0.02426281,,,,,,,4.915873919,4.820125369,4.762354245,8.199554269,,,,,,,0.058765269,0.054944174,0.049619371,0.138575076,,,,,,,0.298659396,0.292482488,0.278787292,0.566069478,,,,,,,0.182513458,0.176480689,0.163219466,0.425720724,,,,,,,0.011087986,0.011120698,0.011252352,0.011919577,,,,,,,0.341106919,0.35973927,0.360141905,0.959786017,,,,,,,0.075972178,0.069755197,0.06329847,0.203707209,,,,,,,0.041798907,0.075369361,0.089471254,0.062045002,,,,,,,1.164515738,1.355499664,1.432986576,3.587008619,,,,,,,1292.693646,1299.533045,1318.12981,1355.642771,,,,,,,0.002203552,0.00229667,0.002560905,0.003669488,,,,,,,0.023642633,0.02365718,0.023693919,0.023741581,,,,,,,4.660367343,4.56916291,4.514504216,7.884302124,,,,,,,0.052216434,0.0488816,0.044128745,0.122117626,,,,,,,0.265170919,0.259409422,0.246483793,0.513014561,,,,,,,0.168326088,0.162755385,0.150359709,0.39416707,,,,,,,0.010790478,0.010823595,0.010955817,0.011600392,,,,,,,0.310501523,0.3273191,0.327918942,0.87869424,,,,,,,0.077677934,0.071370042,0.064805555,0.208279921,,,,,,,0.039254715,0.073825436,0.082974142,0.052480088,,,,,,,1.241537069,1.447193718,1.538294675,3.849427307,,,,,,,1350.737095,1357.002756,1374.511754,1409.737979,,,,,,,0.002463188,0.002567187,0.002862712,0.004104782,,,,,,,0.024116146,0.024128955,0.024161329,0.024203437,,,,,,,4.679042553,4.588299161,4.534522767,7.823380974,,,,,,,0.058009315,0.054243076,0.048982247,0.136652882,,,,,,,0.294661458,0.288529709,0.274918007,0.559648654,,,,,,,0.180813391,0.174833441,0.161672035,0.421879048,,,,,,,0.01127525,0.011302641,0.011424886,0.012062225,,,,,,,0.326962512,0.341752008,0.331805139,0.855314959,,,,,,,0.076513365,0.070265742,0.063773654,0.205154551,,,,,,,0.03869695,0.07183652,0.082053988,0.053386036,,,,,,,1.18903448,1.384320891,1.464363139,3.66295882,,,,,,,1320.006059,1326.461921,1344.307146,1379.46106,,,,,,,0.002290047,0.002385524,0.002656578,0.003795098,,,,,,,0.023808214,0.023822211,0.023857575,0.023903473,,,,,,,4.618302671,4.528137568,4.474257098,7.785671365,,,,,,,0.054212664,0.050725345,0.04579008,0.127067106,,,,,,,0.275228544,0.26932393,0.256131382,0.528740935,,,,,,,0.172574501,0.166854751,0.154183105,0.403485968,,,,,,,0.011018519,0.011047969,0.011173465,0.011803706,,,,,,,0.312429665,0.327256822,0.320543566,0.837167149,,,,,,,0.076965763,0.070687434,0.064160532,0.206460388,,,,,,,0.037295159,0.07012646,0.078756214,0.049709453,,,,,,,1.199695819,1.397653858,1.482827945,3.714887861,,,,,,,1342.313368,1348.486253,1365.878257,1400.102038,,,,,,,0.002321465,0.002420446,0.002701488,0.003881453,,,,,,,0.023842602,0.023856291,0.023890884,0.023935807,,,,,,,4.586612559,4.4973825,4.444496725,7.719815465,,,,,,,0.054706792,0.051189962,0.046222396,0.128428642,,,,,,,0.278544884,0.272621833,0.259390483,0.534453274,,,,,,,0.174020213,0.168268425,0.15552759,0.407024485,,,,,,,0.011204781,0.0112315,0.011352853,0.01198001,,,,,,,0.312281466,0.326262162,0.316686006,0.8177867,,,,,,,0.077561114,0.071227965,0.064645257,0.2082526,,,,,,,0.040190079,0.07425673,0.085365747,0.056167787,,,,,,,1.205879555,1.40447729,1.488393295,3.729981318,,,,,,,1333.049326,1339.536711,1357.363548,1393.069158,,,,,,,0.002353067,0.002451461,0.002730833,0.003904955,,,,,,,0.023892569,0.023906217,0.023940698,0.023985438,,,,,,,4.99586616,4.897467096,4.836743685,8.400451996,,,,,,,0.055319019,0.051754597,0.046723269,0.129956642,,,,,,,0.282834792,0.27683173,0.263440247,0.541443761,,,,,,,0.175871003,0.170045443,0.15716307,0.411348941,,,,,,,0.011127468,0.011156963,0.011282117,0.011920065,,,,,,,0.319709808,0.335242672,0.329521084,0.862912562,,,,,,,0.077984435,0.071637456,0.065033833,0.209368624,,,,,,,0.038205936,0.071941093,0.080695568,0.05082996,,,,,,,1.227459913,1.43145299,1.525397732,3.82937069,,,,,,,1321.101042,1327.645573,1345.321538,1380.929875,,,,,,,0.002411508,0.002516786,0.002815835,0.004071278,,,,,,,0.023973899,0.023986917,0.024019816,0.024062579,,,,,,,4.908652162,4.812878762,4.755082377,8.222635612,,,,,,,0.056412892,0.052778654,0.047674622,0.132877695,,,,,,,0.288598701,0.282576333,0.269153163,0.551057114,,,,,,,0.178342037,0.172466957,0.159482485,0.417127998,,,,,,,0.011027885,0.011058124,0.011182278,0.011815894,,,,,,,0.319413673,0.333758263,0.32372173,0.835242088,,,,, +Heavy duty short haul truck,B0,2015,,,0.001260066,0.001846526,0.001860775,0.052445101,,,,,,,0.060806849,0.073960004,0.089018774,0.120994687,,,,,,,0.441621243,0.540360915,0.665522654,1.844998497,,,,,,,1266.772152,1281.227692,1287.833494,1332.409605,,,,,,,0.002314277,0.002406384,0.002641101,0.003705315,,,,,,,0.023815665,0.023852072,0.023862385,0.023908615,,,,,,,0.840229722,1.194426618,1.221379424,3.007598307,,,,,,,0.002190797,0.003210441,0.003235214,0.03355214,,,,,,,0.116838064,0.124898455,0.125390657,0.226126222,,,,,,,0.027261321,0.033941157,0.03414251,0.125701534,,,,,,,0.010350718,0.010468833,0.01052281,0.011031511,,,,,,,0.088260434,0.101067386,0.115277357,0.365038972,,,,,,,0.001264353,0.001852189,0.001866194,0.052714029,,,,,,,0.058875386,0.071386147,0.084838934,0.1130991,,,,,,,0.437780098,0.535111037,0.65682407,1.819952325,,,,,,,1283.850477,1298.187147,1304.428271,1348.016062,,,,,,,0.002315082,0.002403947,0.002631998,0.003666406,,,,,,,0.023816679,0.023853189,0.023863402,0.023911182,,,,,,,0.839889616,1.193665033,1.219959498,3.006900725,,,,,,,0.002198251,0.003220288,0.003244638,0.033538159,,,,,,,0.117473231,0.125509662,0.125984845,0.226938616,,,,,,,0.027382378,0.034072468,0.034269321,0.126044291,,,,,,,0.010490264,0.010607407,0.010658404,0.011160656,,,,,,,0.086932383,0.099144112,0.111856434,0.351437776,,,,,,,0.001301945,0.001908675,0.001923583,0.053083338,,,,,,,0.06427966,0.078164588,0.09386588,0.127193773,,,,,,,0.461705195,0.565359494,0.697752122,1.93368426,,,,,,,1299.810059,1314.006954,1320.613607,1365.896296,,,,,,,0.002491969,0.002588932,0.002837034,0.003962908,,,,,,,0.024163057,0.024196751,0.024206319,0.024249027,,,,,,,0.858014002,1.219959175,1.248193959,3.059165141,,,,,,,0.00226361,0.003318494,0.003344414,0.036018941,,,,,,,0.12985979,0.138297237,0.138842499,0.243947983,,,,,,,0.029307216,0.036230053,0.036444425,0.13186031,,,,,,,0.010620668,0.01073667,0.010790653,0.011308323,,,,,,,0.09218984,0.105674299,0.120482041,0.38318465,,,,,,,0.001230715,0.001803026,0.001816584,0.051826268,,,,,,,0.058294498,0.0708577,0.085169632,0.115503366,,,,,,,0.424138134,0.518084725,0.634213116,1.756313799,,,,,,,1264.651325,1279.384625,1285.665576,1329.265871,,,,,,,0.002197791,0.002283063,0.002500801,0.003487787,,,,,,,0.023624086,0.023662574,0.02367335,0.023723575,,,,,,,0.812320525,1.154555776,1.179848404,2.917222835,,,,,,,0.002139768,0.003134809,0.003158382,0.032065076,,,,,,,0.108588325,0.116356721,0.116799269,0.214642447,,,,,,,0.025939411,0.032445943,0.032634387,0.121651804,,,,,,,0.010333389,0.010453772,0.010505094,0.011005775,,,,,,,0.085994343,0.098261726,0.111771074,0.351500355,,,,,,,0.001293158,0.001895635,0.001910356,0.052910141,,,,,,,0.054712646,0.065649392,0.074211883,0.091095235,,,,,,,0.456876042,0.559238925,0.689349854,1.910031411,,,,,,,1321.77925,1335.609144,1341.188837,1383.022205,,,,,,,0.002456611,0.002551838,0.002795653,0.003901999,,,,,,,0.02410143,0.0241356,0.024145286,0.024188948,,,,,,,0.817588822,1.162291879,1.189932015,2.919650148,,,,,,,0.002248332,0.003295822,0.003321416,0.035553903,,,,,,,0.127319779,0.135668795,0.136199199,0.240420614,,,,,,,0.028902484,0.03577315,0.03598384,0.13062343,,,,,,,0.010800178,0.010913181,0.010958772,0.011449674,,,,,,,0.083887382,0.094632511,0.102793856,0.316987436,,,,,,,0.001251804,0.001834144,0.001847979,0.052193562,,,,,,,0.053932706,0.064948349,0.074819635,0.094851218,,,,,,,0.433471841,0.529633416,0.648929459,1.796744114,,,,,,,1291.461597,1305.778696,1311.44719,1353.115424,,,,,,,0.002283867,0.002371027,0.002594561,0.003608432,,,,,,,0.023789842,0.023826801,0.023837115,0.023885707,,,,,,,0.805652965,1.145067247,1.170823325,2.888393231,,,,,,,0.002176433,0.003188913,0.003212967,0.033242448,,,,,,,0.114968792,0.122907581,0.123370138,0.223351828,,,,,,,0.026947209,0.033571949,0.033765566,0.124678325,,,,,,,0.010552454,0.010669439,0.010715754,0.011202693,,,,,,,0.082563459,0.0933897,0.102766023,0.317567667,,,,,,,0.001260493,0.001847038,0.001861181,0.05244378,,,,,,,0.05196997,0.062331507,0.070388744,0.086216102,,,,,,,0.440059479,0.538207135,0.661805208,1.833967817,,,,,,,1313.37751,1327.337032,1332.669422,1373.624546,,,,,,,0.002315308,0.002405978,0.002637677,0.003688414,,,,,,,0.023826217,0.023862638,0.023872893,0.023919775,,,,,,,0.801039392,1.138508419,1.16496159,2.869481076,,,,,,,0.002191542,0.003211329,0.003235919,0.033591136,,,,,,,0.117068779,0.125111901,0.125596498,0.226376692,,,,,,,0.027294832,0.033973287,0.034172655,0.125779416,,,,,,,0.010731526,0.010845588,0.01088916,0.011372154,,,,,,,0.081236597,0.091450828,0.099137146,0.303160024,,,,,,,0.001272138,0.001863606,0.001877715,0.052870415,,,,,,,0.056020518,0.067569498,0.07841738,0.100647305,,,,,,,0.441352019,0.539537057,0.6625791,1.835938192,,,,,,,1304.175837,1318.24073,1324.017432,1366.30401,,,,,,,0.002346529,0.002436161,0.002666642,0.003712303,,,,,,,0.023874644,0.023910651,0.0239207,0.023968094,,,,,,,0.870381925,1.237087232,1.263762971,3.113027464,,,,,,,0.002211787,0.003240136,0.003264665,0.033950925,,,,,,,0.119755241,0.127848855,0.128329766,0.230058922,,,,,,,0.027745146,0.034477452,0.034676017,0.12714064,,,,,,,0.010656342,0.010771265,0.010818466,0.011311771,,,,,,,0.08477382,0.096090441,0.106376048,0.330359795,,,,,,,0.001284667,0.001882752,0.001897493,0.053053126,,,,,,,0.053250113,0.063863541,0.072010866,0.087977356,,,,,,,0.454333506,0.556489091,0.687949087,1.90864606,,,,,,,1292.663918,1306.51045,1312.411139,1354.44637,,,,,,,0.002405195,0.002501964,0.00274849,0.00386649,,,,,,,0.023960484,0.023995481,0.024005473,0.024049158,,,,,,,0.856926938,1.218203387,1.246275814,3.060390035,,,,,,,0.002233571,0.003273423,0.003299052,0.03468737,,,,,,,0.123438727,0.131728697,0.132257262,0.235333045,,,,,,,0.028329518,0.035150414,0.03536109,0.128981436,,,,,,,0.010562276,0.010675419,0.010723632,0.011213242,,,,,,,0.081814379,0.092254368,0.100036517,0.308467496,,,, +Heavy duty short haul truck,B0,2020,,,,0.001297646,0.001797724,0.001816192,0.007608522,,,,,,,0.062040563,0.074569957,0.090695064,0.144504697,,,,,,,0.45197121,0.546675421,0.683091229,1.283773077,,,,,,,1209.831653,1214.876165,1221.57746,1272.936039,,,,,,,0.002326528,0.002424389,0.002675324,0.003605944,,,,,,,0.023819594,0.023831596,0.023841419,0.023883704,,,,,,,0.832241793,1.112021925,1.143031454,1.485685228,,,,,,,0.002256136,0.00312559,0.0031577,0.006399058,,,,,,,0.118487063,0.12486081,0.125327928,0.137570741,,,,,,,0.027838614,0.033468726,0.033707191,0.044414928,,,,,,,0.00988546,0.00992668,0.009981434,0.010417873,,,,,,,0.088255883,0.100078231,0.115259881,0.192622616,,,,,,,0.001301722,0.001802911,0.001821167,0.007648076,,,,,,,0.059988195,0.071852241,0.086261794,0.134354043,,,,,,,0.447783892,0.541054092,0.67370663,1.259267574,,,,,,,1225.960018,1230.825261,1237.178248,1287.857658,,,,,,,0.002326051,0.002420996,0.002664833,0.00356914,,,,,,,0.023818007,0.023830074,0.023839942,0.023883559,,,,,,,0.8318771,1.111405508,1.141772115,1.482663777,,,,,,,0.002263223,0.003134611,0.003166352,0.006403758,,,,,,,0.119067576,0.125441674,0.125895386,0.138139808,,,,,,,0.027950735,0.033591615,0.03382634,0.044554632,,,,,,,0.010017245,0.010056997,0.010108905,0.010539978,,,,,,,0.086793806,0.097995528,0.111577965,0.182395961,,,,,,,0.001341221,0.001858825,0.001878067,0.00773073,,,,,,,0.06558228,0.078793578,0.095613152,0.151776713,,,,,,,0.472702703,0.572183529,0.716519903,1.351112538,,,,,,,1241.210638,1246.144277,1252.863468,1305.116695,,,,,,,0.002504392,0.002607772,0.002873162,0.003858087,,,,,,,0.024166933,0.024178032,0.024187131,0.024226212,,,,,,,0.849437309,1.135177146,1.167567681,1.518162512,,,,,,,0.002331897,0.003231822,0.003265276,0.006749611,,,,,,,0.131696701,0.138325398,0.13883643,0.151630788,,,,,,,0.029924438,0.035755752,0.036007188,0.047141583,,,,,,,0.010141856,0.010182169,0.010237071,0.010681131,,,,,,,0.092221716,0.104675528,0.120503023,0.201413657,,,,,,,0.001266887,0.001754662,0.001772365,0.00750853,,,,,,,0.059450611,0.071419105,0.08674201,0.137858898,,,,,,,0.433730018,0.523648735,0.650204859,1.210052162,,,,,,,1208.023039,1212.953792,1219.313426,1269.84245,,,,,,,0.002208868,0.002299599,0.002532324,0.00339507,,,,,,,0.023625679,0.0236384,0.023648809,0.023694663,,,,,,,0.804981356,1.075435977,1.104640662,1.435024572,,,,,,,0.002202657,0.003050721,0.0030815,0.00617145,,,,,,,0.110066698,0.116252455,0.116678701,0.128527592,,,,,,,0.02648164,0.031969362,0.032195299,0.042609159,,,,,,,0.009870683,0.009910971,0.009962936,0.010392635,,,,,,,0.085918325,0.097217658,0.11164697,0.185410929,,,,,,,0.001332019,0.001845937,0.001864969,0.007701561,,,,,,,0.055553092,0.065697904,0.074890577,0.105637244,,,,,,,0.46767026,0.565874909,0.707718153,1.331898904,,,,,,,1262.108422,1266.519135,1272.220778,1321.744164,,,,,,,0.002468722,0.002570298,0.002831086,0.003798826,,,,,,,0.024104723,0.024115993,0.024125235,0.024165168,,,,,,,0.809544921,1.081783965,1.113361994,1.449958126,,,,,,,0.002315897,0.003209415,0.003242505,0.006679987,,,,,,,0.129104679,0.135676796,0.136175611,0.148850321,,,,,,,0.029509153,0.035297787,0.035545665,0.046591086,,,,,,,0.01031261,0.010348649,0.01039524,0.010817097,,,,,,,0.083467469,0.093064959,0.101792843,0.15325616,,,,,,,0.00128873,0.001785176,0.001803219,0.007575674,,,,,,,0.054821496,0.065130625,0.075715768,0.111076141,,,,,,,0.443316069,0.535393288,0.66541797,1.240183137,,,,,,,1233.41906,1238.001821,1243.768883,1292.897513,,,,,,,0.002294699,0.002387775,0.002626778,0.003513144,,,,,,,0.023790765,0.023802987,0.023812982,0.023857326,,,,,,,0.798162249,1.066365723,1.096003259,1.424999548,,,,,,,0.002240635,0.003103775,0.003135146,0.006340802,,,,,,,0.116518368,0.122825047,0.123268161,0.135378835,,,,,,,0.027505639,0.03309225,0.033323583,0.043946443,,,,,,,0.010078193,0.010115638,0.010162761,0.010581178,,,,,,,0.082213355,0.091966192,0.101986676,0.15799468,,,,,,,0.001297955,0.001798077,0.001816448,0.007610872,,,,,,,0.052759444,0.062367294,0.071015582,0.099927039,,,,,,,0.45026574,0.544357428,0.679070318,1.27294793,,,,,,,1254.160832,1258.490621,1263.940327,1312.645764,,,,,,,0.002327024,0.002423573,0.0026713,0.003590058,,,,,,,0.023828999,0.02384102,0.023850856,0.023893689,,,,,,,0.793449152,1.060113043,1.090419033,1.419443378,,,,,,,0.002256673,0.003126204,0.003158144,0.006401682,,,,,,,0.118692909,0.125061316,0.125522426,0.137757565,,,,,,,0.027867826,0.033497695,0.033734455,0.044443614,,,,,,,0.010247673,0.010283051,0.010327582,0.01074271,,,,,,,0.080773203,0.089870265,0.098086832,0.146778186,,,,,,,0.00130975,0.001814071,0.001832459,0.007676002,,,,,,,0.056972302,0.067816313,0.079445565,0.118284985,,,,,,,0.451445345,0.545559653,0.67966461,1.271402082,,,,,,,1245.220851,1249.8126,1255.716459,1305.471769,,,,,,,0.002357357,0.002453278,0.002699743,0.003613905,,,,,,,0.023875463,0.023887363,0.023897112,0.023940364,,,,,,,0.861995559,1.151678212,1.182590908,1.533998027,,,,,,,0.002277181,0.003154011,0.003185981,0.006464156,,,,,,,0.121369235,0.127785544,0.128244334,0.140583064,,,,,,,0.028318294,0.033994697,0.034231325,0.04503711,,,,,,,0.010174624,0.010212142,0.010260382,0.010684056,,,,,,,0.084464944,0.094714785,0.105707702,0.166006323,,,,,,,0.001323325,0.001833473,0.001852501,0.007704073,,,,,,,0.054066795,0.063896369,0.072642442,0.10188531,,,,,,,0.465201865,0.56331124,0.706600558,1.335847551,,,,,,,1234.247138,1238.902447,1244.925568,1294.350185,,,,,,,0.002418129,0.002520928,0.002784533,0.003762404,,,,,,,0.023965669,0.023977186,0.023986614,0.024026631,,,,,,,0.848480561,1.133798505,1.166016335,1.516189689,,,,,,,0.002300782,0.003187744,0.003220826,0.006577612,,,,,,,0.125213746,0.131738135,0.132235233,0.144793891,,,,,,,0.028933052,0.03467931,0.034926944,0.045874168,,,,,,,0.010084958,0.010122997,0.010172211,0.010592939,,,,,,,0.081396768,0.090706115,0.099026219,0.1484764,,, +Heavy duty short haul truck,B0,2025,,,,,0.001307427,0.001800507,0.001816741,0.001872967,,,,,,,0.062603809,0.075354216,0.091331811,0.149745542,,,,,,,0.457208203,0.553851626,0.689887749,1.232643533,,,,,,,1209.242817,1209.672409,1215.845928,1255.542496,,,,,,,0.00233477,0.002436682,0.002685444,0.003604063,,,,,,,0.023837927,0.023835834,0.023841854,0.023887907,,,,,,,0.785068104,1.049026385,1.081744223,1.189633077,,,,,,,0.002273142,0.00313043,0.003158654,0.003256411,,,,,,,0.119058988,0.124999315,0.125345472,0.127078941,,,,,,,0.02800768,0.033513644,0.033714759,0.034481768,,,,,,,0.009880651,0.009884159,0.009934604,0.010258961,,,,,,,0.088876536,0.100701409,0.1157101,0.171154242,,,,,,,0.001311479,0.001805675,0.001821708,0.001877131,,,,,,,0.060480932,0.072549263,0.086829759,0.138942857,,,,,,,0.45283254,0.548019024,0.680314766,1.207728181,,,,,,,1225.323382,1225.538285,1231.373144,1270.202627,,,,,,,0.002333704,0.002432863,0.002674666,0.003566655,,,,,,,0.023836448,0.023834331,0.02384039,0.023886874,,,,,,,0.785073459,1.048889185,1.080997438,1.186704379,,,,,,,0.002280187,0.003139416,0.003167292,0.003263654,,,,,,,0.119619101,0.125575294,0.12591241,0.127589272,,,,,,,0.028116984,0.033635722,0.033833767,0.034585873,,,,,,,0.010012043,0.010013798,0.010061474,0.010378748,,,,,,,0.087349238,0.098535865,0.111962351,0.161543496,,,,,,,0.001351286,0.001861701,0.00187864,0.001937301,,,,,,,0.066173253,0.079612477,0.096277331,0.157266784,,,,,,,0.478273807,0.579786624,0.723712976,1.298656077,,,,,,,1240.323703,1240.73252,1246.966444,1287.225209,,,,,,,0.002512913,0.002620739,0.002883867,0.003856428,,,,,,,0.0241839,0.024181953,0.024187532,0.024230193,,,,,,,0.79992361,1.069366251,1.103571415,1.216292893,,,,,,,0.002349396,0.003236823,0.003266273,0.003368263,,,,,,,0.132336298,0.138479904,0.138855824,0.140769423,,,,,,,0.030104725,0.035803572,0.03601523,0.036828338,,,,,,,0.010134609,0.01013795,0.010188887,0.010517839,,,,,,,0.092863802,0.105326862,0.120975196,0.178827581,,,,,,,0.001276453,0.001757365,0.001772888,0.001826571,,,,,,,0.059977881,0.072162169,0.087347094,0.142798589,,,,,,,0.438549768,0.530292187,0.656508025,1.159430724,,,,,,,1207.736022,1207.831892,1213.612327,1252.59488,,,,,,,0.002216399,0.002310971,0.002541709,0.00339277,,,,,,,0.023645108,0.023642892,0.023649274,0.02369823,,,,,,,0.760615692,1.015895524,1.046695287,1.148345579,,,,,,,0.00221929,0.003055421,0.003082409,0.003175746,,,,,,,0.110577171,0.116376416,0.116694536,0.118260033,,,,,,,0.0266409,0.032011672,0.032202401,0.032923722,,,,,,,0.009868337,0.00986912,0.009916353,0.010234876,,,,,,,0.086512696,0.097804079,0.11206799,0.164747872,,,,,,,0.001342014,0.001848789,0.001865536,0.001923501,,,,,,,0.055861152,0.066136663,0.075248295,0.108312521,,,,,,,0.473132482,0.573342525,0.714786447,1.279623502,,,,,,,1261.210413,1260.999321,1266.224625,1303.68174,,,,,,,0.002477056,0.002583031,0.002841605,0.003797024,,,,,,,0.024121948,0.024119979,0.024125648,0.024168998,,,,,,,0.762721455,1.01946761,1.052669058,1.162252769,,,,,,,0.002333275,0.003214374,0.00324349,0.00334427,,,,,,,0.129725379,0.135826868,0.136194531,0.138057584,,,,,,,0.029686393,0.035344814,0.035553581,0.036353615,,,,,,,0.010305273,0.010303548,0.010346245,0.010652304,,,,,,,0.083848792,0.093361248,0.101978047,0.133857618,,,,,,,0.001298415,0.001787916,0.001803753,0.001858479,,,,,,,0.055175696,0.065637964,0.076130233,0.114274859,,,,,,,0.448268418,0.542220099,0.671894793,1.188842014,,,,,,,1232.926496,1232.708841,1237.934229,1275.313237,,,,,,,0.00230223,0.002399413,0.002636415,0.003510753,,,,,,,0.023809433,0.0238073,0.023813434,0.023860547,,,,,,,0.753577017,1.006686695,1.037905367,1.140923857,,,,,,,0.002257474,0.00310854,0.003136074,0.003231221,,,,,,,0.117054044,0.122954926,0.123284707,0.124918562,,,,,,,0.027669198,0.033135663,0.033330881,0.034070827,,,,,,,0.010074168,0.010072389,0.010115087,0.010420507,,,,,,,0.082644582,0.092330422,0.102227766,0.138815672,,,,,,,0.00130772,0.001800851,0.001816992,0.00187285,,,,,,,0.053047146,0.062779283,0.071351907,0.102419819,,,,,,,0.455421999,0.5514392,0.685781438,1.221643063,,,,,,,1253.472485,1253.057371,1257.9981,1294.742642,,,,,,,0.002335017,0.002435678,0.00268129,0.003587965,,,,,,,0.023847363,0.023845267,0.02385129,0.023897498,,,,,,,0.748625311,1.000236813,1.032086719,1.13722583,,,,,,,0.002273651,0.003131028,0.003159091,0.003256208,,,,,,,0.11925562,0.125197658,0.125539697,0.127247872,,,,,,,0.028035576,0.033542247,0.033741945,0.034502198,,,,,,,0.010242046,0.010238655,0.010279024,0.010579263,,,,,,,0.0811399,0.090143234,0.098253011,0.128262899,,,,,,,0.001319548,0.001816849,0.001833004,0.001888832,,,,,,,0.057362799,0.068374889,0.079901643,0.121850718,,,,,,,0.456544162,0.552600125,0.686345029,1.219586538,,,,,,,1244.471869,1244.410134,1249.815163,1287.555823,,,,,,,0.002364995,0.002465254,0.002709681,0.003611326,,,,,,,0.02389365,0.023891571,0.023897549,0.023943475,,,,,,,0.813320545,1.086711151,1.119500318,1.227322093,,,,,,,0.002294216,0.00315884,0.003186928,0.003283993,,,,,,,0.121927631,0.127920842,0.128261499,0.129958328,,,,,,,0.0284858,0.034039145,0.034238807,0.034997314,,,,,,,0.010168504,0.010167998,0.010212163,0.01052054,,,,,,,0.084924575,0.095124271,0.105985978,0.146114091,,,,,,,0.001333282,0.001836319,0.001853069,0.001911143,,,,,,,0.054362472,0.064313976,0.072982147,0.104408069,,,,,,,0.470724671,0.570857356,0.713740922,1.284237331,,,,,,,1233.344431,1233.500757,1239.056749,1276.608897,,,,,,,0.002426814,0.002533851,0.002795165,0.003760736,,,,,,,0.023983265,0.02398126,0.023987031,0.024031142,,,,,,,0.799501912,1.068621297,1.102619541,1.21463773,,,,,,,0.002318093,0.003192692,0.003221815,0.003322783,,,,,,,0.125831024,0.131887419,0.132254081,0.134110762,,,,,,,0.029109516,0.034726179,0.03493486,0.035735203,,,,,,,0.010077583,0.010078858,0.010124257,0.010431092,,,,,,,0.081763813,0.090985076,0.099197795,0.129553618,, +Heavy duty short haul truck,B0,2030,,,,,,0.001305298,0.001795961,0.001815529,0.001864023,,,,,,,0.063371258,0.076035443,0.091989883,0.150765227,,,,,,,0.463416684,0.559300091,0.695955165,1.24041255,,,,,,,1208.11419,1206.478001,1214.981847,1245.343834,,,,,,,0.002347003,0.002447471,0.002695857,0.003620642,,,,,,,0.023834806,0.023827874,0.023839419,0.023876175,,,,,,,0.781294085,1.044456988,1.079533309,1.16489651,,,,,,,0.00226944,0.003122526,0.003156547,0.003240862,,,,,,,0.11895587,0.124747511,0.125270481,0.126768069,,,,,,,0.027973698,0.033436912,0.033693265,0.03435515,,,,,,,0.009871429,0.009858058,0.009927541,0.010175628,,,,,,,0.089540767,0.10120441,0.116283923,0.171787375,,,,,,,0.001309339,0.00180114,0.001820494,0.001868165,,,,,,,0.061167582,0.073164326,0.087419783,0.139861678,,,,,,,0.458876552,0.55334558,0.686227285,1.215353859,,,,,,,1224.17208,1222.306951,1230.491193,1259.882413,,,,,,,0.002345663,0.002443524,0.00268485,0.00358303,,,,,,,0.0238333,0.023826338,0.023837937,0.02387488,,,,,,,0.781298711,1.044331191,1.078789375,1.162165472,,,,,,,0.002276466,0.003131531,0.003165181,0.003248064,,,,,,,0.119519258,0.125332357,0.125840045,0.12728681,,,,,,,0.02808331,0.033560222,0.033812587,0.034460098,,,,,,,0.010002636,0.009987396,0.01005427,0.010294422,,,,,,,0.08793769,0.098975885,0.112472414,0.162079048,,,,,,,0.001349107,0.001857025,0.001877397,0.001928136,,,,,,,0.066972643,0.080320038,0.096961852,0.158315505,,,,,,,0.48483709,0.58552547,0.730117118,1.306752049,,,,,,,1239.214927,1237.573552,1246.118323,1276.946752,,,,,,,0.002525886,0.002632218,0.00289489,0.00387385,,,,,,,0.024181006,0.024174591,0.024185274,0.024219337,,,,,,,0.796068732,1.064770614,1.101320297,1.19070745,,,,,,,0.002345608,0.003228692,0.003264112,0.003352329,,,,,,,0.132221596,0.13819862,0.138771856,0.140426767,,,,,,,0.030068811,0.035721888,0.035992311,0.036695597,,,,,,,0.010125551,0.010112138,0.010181958,0.010433854,,,,,,,0.093557744,0.105854163,0.121573652,0.179485097,,,,,,,0.001274349,0.001752909,0.00177169,0.001817754,,,,,,,0.060708726,0.072814697,0.087974888,0.143781478,,,,,,,0.444313679,0.535375766,0.662151379,1.16673469,,,,,,,1206.547964,1204.508509,1212.702274,1242.230728,,,,,,,0.00222777,0.002321048,0.0025514,0.003408359,,,,,,,0.023641801,0.02363446,0.023646685,0.023685608,,,,,,,0.756960824,1.011403134,1.044545815,1.12472357,,,,,,,0.002215631,0.003047674,0.003080326,0.003160415,,,,,,,0.110484423,0.116151223,0.116627544,0.117976859,,,,,,,0.026608459,0.031939161,0.032182049,0.03280181,,,,,,,0.00985863,0.009841965,0.009908916,0.010150192,,,,,,,0.087141453,0.098277124,0.112612549,0.165341937,,,,,,,0.001339845,0.001844144,0.001864299,0.001914381,,,,,,,0.056295341,0.066532204,0.075622762,0.108880102,,,,,,,0.479584402,0.578991423,0.721084332,1.287610347,,,,,,,1260.042227,1257.746148,1265.329152,1293.225997,,,,,,,0.002489814,0.002594333,0.002852447,0.00381421,,,,,,,0.02411902,0.024112501,0.02412335,0.024157919,,,,,,,0.759092945,1.015105152,1.050547432,1.137896517,,,,,,,0.002329505,0.003206297,0.00324134,0.003328413,,,,,,,0.12961393,0.135553744,0.136113022,0.137723446,,,,,,,0.029650989,0.035264453,0.035531027,0.036222378,,,,,,,0.010295728,0.010276967,0.010338927,0.010566871,,,,,,,0.084202101,0.09359582,0.102287368,0.134063126,,,,,,,0.001296288,0.001783409,0.001802543,0.001849561,,,,,,,0.055678478,0.066094355,0.076563726,0.114945404,,,,,,,0.454190481,0.547439113,0.677688898,1.196307043,,,,,,,1231.721069,1229.373141,1237.01025,1264.850602,,,,,,,0.002313946,0.002409849,0.002646392,0.003526784,,,,,,,0.023806246,0.023799198,0.023810944,0.023848355,,,,,,,0.749974126,1.002288456,1.035791278,1.117351065,,,,,,,0.002253775,0.003100702,0.00313397,0.003215718,,,,,,,0.116956913,0.122718802,0.123214395,0.124623255,,,,,,,0.027635988,0.033061281,0.033309999,0.033946431,,,,,,,0.010064319,0.010045134,0.010107536,0.010335017,,,,,,,0.083060968,0.092620271,0.102591424,0.139116717,,,,,,,0.001305589,0.001796311,0.00181578,0.001863901,,,,,,,0.053455948,0.063153157,0.071705141,0.102960281,,,,,,,0.461555126,0.556829034,0.691777181,1.229335378,,,,,,,1252.26991,1249.735284,1257.077067,1284.223447,,,,,,,0.002347124,0.002446399,0.002691596,0.003604428,,,,,,,0.023844234,0.023837295,0.023848858,0.02388566,,,,,,,0.745072822,0.995916476,1.030005684,1.113640847,,,,,,,0.002269945,0.003123134,0.003156983,0.003240648,,,,,,,0.119154047,0.12494979,0.125465898,0.126940778,,,,,,,0.028001764,0.033466071,0.033720604,0.034376009,,,,,,,0.010232221,0.010211512,0.0102715,0.010493311,,,,,,,0.081468862,0.090356116,0.098542053,0.128441297,,,,,,,0.001317401,0.001812297,0.001831787,0.001879829,,,,,,,0.057915904,0.068875365,0.080377998,0.122588734,,,,,,,0.462655887,0.557986612,0.692322554,1.227290909,,,,,,,1243.303221,1241.154253,1248.919804,1277.134333,,,,,,,0.002377103,0.002476073,0.002719989,0.003627908,,,,,,,0.023890556,0.023883679,0.023895132,0.023931585,,,,,,,0.809379325,1.081975897,1.117197073,1.201902576,,,,,,,0.002290482,0.003150927,0.003184812,0.00326834,,,,,,,0.121826662,0.127674913,0.128188285,0.129652403,,,,,,,0.028451912,0.033963115,0.034217493,0.034870754,,,,,,,0.010158955,0.010141397,0.010204848,0.010435386,,,,,,,0.085388403,0.095456641,0.106390018,0.146478608,,,,,,,0.001331128,0.001831698,0.001851843,0.001902084,,,,,,,0.054774683,0.064689184,0.073337902,0.104947421,,,,,,,0.477243819,0.576563447,0.720105715,1.29233748,,,,,,,1232.211451,1230.335565,1238.18753,1266.382045,,,,,,,0.002439657,0.00254516,0.00280609,0.003778036,,,,,,,0.023980259,0.023973612,0.023984684,0.024019989,,,,,,,0.795666626,1.064030658,1.100379405,1.189226976,,,,,,,0.002314348,0.003184659,0.003219682,0.003307034,,,,,,,0.125720217,0.131615901,0.132173098,0.133779246,,,,,,,0.029074321,0.034646255,0.034912475,0.035604877,,,,,,,0.010068324,0.010053,0.010117155,0.010347531,,,,,,,0.082098044,0.091204081,0.099490737,0.129739848, +Heavy duty short haul truck,B0,2035,,,,,,,0.001309028,0.001802217,0.00182183,0.001865764,,,,,,,0.063691613,0.0762228,0.091781042,0.14982863,,,,,,,0.467106117,0.562477492,0.695596872,1.231229929,,,,,,,1211.039975,1210.820243,1219.327756,1245.9734,,,,,,,0.002351791,0.002450382,0.002692523,0.00360576,,,,,,,0.023841534,0.023838025,0.023849807,0.02387967,,,,,,,0.783808626,1.048579329,1.083320508,1.160931993,,,,,,,0.002275924,0.003133403,0.003167503,0.003243887,,,,,,,0.119167527,0.125074315,0.125603841,0.126875549,,,,,,,0.02803731,0.033539908,0.033797557,0.034385985,,,,,,,0.009895333,0.009893539,0.009963053,0.010180774,,,,,,,0.089952557,0.101549383,0.116263008,0.170954738,,,,,,,0.001313047,0.001807368,0.00182677,0.001869905,,,,,,,0.061450193,0.073323133,0.087223013,0.139020544,,,,,,,0.462447929,0.55640079,0.685828839,1.206390605,,,,,,,1227.116071,1226.680569,1234.874525,1260.531571,,,,,,,0.002350185,0.002446141,0.002681364,0.003568446,,,,,,,0.023840063,0.023836536,0.023848386,0.023878388,,,,,,,0.783792088,1.048430831,1.082563464,1.158273329,,,,,,,0.002282913,0.003142361,0.003176094,0.003251089,,,,,,,0.119723261,0.125647651,0.126161658,0.127390355,,,,,,,0.028145755,0.033661497,0.033915156,0.034490429,,,,,,,0.01002669,0.010023131,0.010090084,0.010299726,,,,,,,0.088315501,0.099296018,0.112464488,0.161335713,,,,,,,0.001352975,0.001863476,0.001883895,0.001929924,,,,,,,0.067308717,0.080518797,0.096751047,0.157344955,,,,,,,0.488755429,0.588918372,0.72980095,1.297092093,,,,,,,1242.122701,1241.884485,1250.430787,1277.544716,,,,,,,0.002530882,0.002635213,0.002891334,0.003858153,,,,,,,0.024187242,0.024183985,0.024194902,0.024222575,,,,,,,0.798602247,1.068869015,1.105063118,1.186474578,,,,,,,0.002352333,0.003239908,0.003275409,0.003355438,,,,,,,0.132458607,0.138563389,0.139144228,0.140547254,,,,,,,0.030136942,0.035831521,0.036103394,0.036728532,,,,,,,0.010149309,0.010147362,0.010217193,0.01043874,,,,,,,0.093984564,0.10621025,0.121551439,0.1786207,,,,,,,0.001277971,0.001759016,0.001777846,0.001819469,,,,,,,0.061010041,0.072986698,0.08776727,0.14288493,,,,,,,0.447721111,0.538287673,0.66175858,1.158168755,,,,,,,1209.567761,1208.997666,1217.203045,1242.926295,,,,,,,0.002232167,0.002323664,0.002548177,0.003394463,,,,,,,0.023648933,0.023645217,0.023657693,0.023689303,,,,,,,0.75942594,1.01549797,1.048333192,1.121073909,,,,,,,0.002221928,0.003058291,0.003091031,0.003163397,,,,,,,0.110673116,0.116443617,0.116925689,0.118072676,,,,,,,0.02666815,0.032036384,0.032280514,0.032830933,,,,,,,0.009883304,0.009878646,0.009945692,0.010155875,,,,,,,0.087538051,0.098611667,0.112596731,0.164548102,,,,,,,0.001343679,0.001850546,0.001870748,0.001916159,,,,,,,0.056474592,0.066624643,0.075492229,0.108350029,,,,,,,0.483429983,0.582314621,0.720754848,1.278102548,,,,,,,1262.989355,1262.130012,1269.733328,1293.895033,,,,,,,0.002494708,0.00259725,0.002848911,0.003798756,,,,,,,0.024125341,0.024122039,0.02413312,0.02416121,,,,,,,0.761524602,1.01903769,1.054125598,1.133825227,,,,,,,0.002336171,0.003217429,0.003252553,0.003331506,,,,,,,0.129843849,0.135907967,0.136474523,0.137840375,,,,,,,0.029717898,0.035372294,0.035640277,0.036254767,,,,,,,0.010319809,0.010312787,0.010374914,0.010572338,,,,,,,0.084485168,0.093856197,0.10234305,0.133609537,,,,,,,0.001299969,0.001789594,0.001808779,0.001851295,,,,,,,0.055883865,0.066202542,0.076411506,0.114328211,,,,,,,0.457693471,0.550435663,0.677301024,1.187524104,,,,,,,1234.73165,1233.853032,1241.513015,1265.565335,,,,,,,0.002318391,0.002412431,0.002642994,0.003512499,,,,,,,0.023813118,0.02380953,0.023821529,0.023851916,,,,,,,0.752401132,1.006285825,1.039469294,1.113611319,,,,,,,0.002260175,0.003111455,0.003144812,0.003218732,,,,,,,0.117155173,0.123025286,0.123527006,0.124723914,,,,,,,0.027697447,0.033161023,0.03341104,0.033976341,,,,,,,0.010088917,0.010081738,0.010144326,0.010340856,,,,,,,0.083369124,0.092896549,0.102628272,0.138582958,,,,,,,0.001309309,0.001802554,0.001822069,0.001865641,,,,,,,0.05362346,0.063237883,0.071578466,0.102458664,,,,,,,0.465193172,0.559954848,0.691407005,1.220257202,,,,,,,1255.263547,1254.19249,1261.5596,1284.931694,,,,,,,0.002351798,0.002449188,0.00268821,0.003589691,,,,,,,0.023850973,0.02384746,0.023859261,0.023889154,,,,,,,0.747475134,0.999843238,1.033596537,1.109797336,,,,,,,0.002276413,0.003133987,0.003167918,0.003243673,,,,,,,0.119362286,0.125271439,0.125794005,0.127046514,,,,,,,0.028064855,0.033568281,0.033824116,0.034406615,,,,,,,0.010256679,0.01024793,0.010308125,0.010499098,,,,,,,0.08174208,0.090611005,0.098603047,0.128014959,,,,,,,0.001321128,0.001818552,0.001838088,0.001881573,,,,,,,0.058141839,0.068996192,0.080212613,0.121910478,,,,,,,0.466264795,0.561073525,0.691919724,1.218231865,,,,,,,1246.253436,1245.542588,1253.324473,1277.801254,,,,,,,0.002381638,0.002478667,0.002716414,0.003613152,,,,,,,0.023897228,0.023893748,0.023905441,0.023935047,,,,,,,0.811949814,1.08620631,1.121101265,1.19790585,,,,,,,0.002296962,0.003161802,0.003195768,0.003271373,,,,,,,0.122033199,0.127994084,0.128513802,0.129757234,,,,,,,0.028514854,0.034065123,0.03432079,0.034901292,,,,,,,0.01018306,0.010177251,0.010240837,0.010440837,,,,,,,0.085714437,0.095742839,0.106412688,0.145887197,,,,,,,0.001334939,0.001838073,0.001858261,0.001903847,,,,,,,0.054945895,0.064777893,0.073214281,0.104443615,,,,,,,0.48112793,0.57992211,0.719766546,1.282721565,,,,,,,1235.08558,1234.608082,1242.4763,1267.019743,,,,,,,0.002444697,0.002548247,0.002802647,0.003762452,,,,,,,0.023986721,0.023983356,0.023994668,0.024023351,,,,,,,0.798198815,1.068140212,1.104134441,1.185043907,,,,,,,0.002320975,0.003195742,0.003230841,0.003310099,,,,,,,0.125948768,0.131968129,0.132532536,0.133895341,,,,,,,0.029140862,0.034753587,0.035021175,0.035637017,,,,,,,0.01009181,0.010087907,0.010152199,0.010352742,,,,,,,0.082370888,0.091456812,0.099548505,0.129309405 +Heavy duty short haul truck,B0,2040,,,,,,,,0.001316428,0.001815405,0.001835419,,,,,,,,0.063762924,0.0758682,0.091235689,,,,,,,,0.469445025,0.561765379,0.694417256,,,,,,,,1217.505248,1219.903407,1228.704348,,,,,,,,0.002352632,0.002444618,0.002683892,,,,,,,,0.023856775,0.023859705,0.023872288,,,,,,,,0.788620176,1.056883443,1.091315043,,,,,,,,0.002288791,0.003156331,0.003191128,,,,,,,,0.119634067,0.125770223,0.126324444,,,,,,,,0.028169686,0.033757942,0.034022689,,,,,,,,0.009948161,0.009967756,0.010039667,,,,,,,,0.090274315,0.101581194,0.116130435,,,,,,,,0.001320421,0.001820504,0.001840301,,,,,,,,0.061503905,0.072988642,0.08671367,,,,,,,,0.464681307,0.555633756,0.684573159,,,,,,,,1233.630633,1235.839787,1244.328373,,,,,,,,0.002350699,0.002440081,0.002672442,,,,,,,,0.023855385,0.023858324,0.02387097,,,,,,,,0.788581943,1.056704032,1.090530637,,,,,,,,0.002295733,0.003165198,0.003199619,,,,,,,,0.120172613,0.126318938,0.126856512,,,,,,,,0.0282757,0.033875912,0.034136475,,,,,,,,0.010079921,0.010097972,0.010167331,,,,,,,,0.088623462,0.099350205,0.112369051,,,,,,,,0.001360605,0.001877074,0.001897914,,,,,,,,0.067386751,0.080156345,0.096196991,,,,,,,,0.491263459,0.588233271,0.728687112,,,,,,,,1248.542662,1250.898168,1259.738736,,,,,,,,0.002531616,0.002628938,0.002882131,,,,,,,,0.024201355,0.024204072,0.024215732,,,,,,,,0.803386144,1.077091889,1.112954483,,,,,,,,0.002365599,0.003263551,0.003299784,,,,,,,,0.132981732,0.139340777,0.139949657,,,,,,,,0.03027863,0.036063741,0.036343321,,,,,,,,0.010201766,0.010221013,0.010293249,,,,,,,,0.094313493,0.106235945,0.121412167,,,,,,,,0.0012852,0.001771899,0.001791118,,,,,,,,0.06107062,0.072636538,0.087229542,,,,,,,,0.449851559,0.537550098,0.660533933,,,,,,,,1216.254781,1218.402057,1226.909338,,,,,,,,0.002232846,0.002318136,0.002539893,,,,,,,,0.023665074,0.023668174,0.0236815,,,,,,,,0.764206438,1.023783361,1.056337172,,,,,,,,0.002234498,0.003080691,0.003114106,,,,,,,,0.111088458,0.117065924,0.117569774,,,,,,,,0.026792426,0.032242218,0.032492952,,,,,,,,0.009937944,0.009955489,0.010025001,,,,,,,,0.087855577,0.098655862,0.11247961,,,,,,,,0.001351254,0.001864043,0.001884662,,,,,,,,0.056500514,0.066397261,0.075155478,,,,,,,,0.485882231,0.581617095,0.719620332,,,,,,,,1269.52864,1271.331072,1279.240836,,,,,,,,0.002495396,0.002591023,0.002839779,,,,,,,,0.024139676,0.024142421,0.024154264,,,,,,,,0.766107729,1.026905057,1.061662583,,,,,,,,0.00234934,0.003240895,0.003276744,,,,,,,,0.130351258,0.136662639,0.13725636,,,,,,,,0.029857072,0.03560068,0.035876223,,,,,,,,0.010373241,0.010387968,0.010452599,,,,,,,,0.084770411,0.094014258,0.102412699,,,,,,,,0.001307291,0.001802641,0.001822221,,,,,,,,0.055914598,0.065941643,0.076020371,,,,,,,,0.459885512,0.549688587,0.676076638,,,,,,,,1241.411074,1243.258514,1251.226028,,,,,,,,0.002318918,0.002406528,0.002634291,,,,,,,,0.023828611,0.023831592,0.023844406,,,,,,,,0.757065184,1.014345867,1.047232929,,,,,,,,0.002272906,0.00313414,0.003168183,,,,,,,,0.117591413,0.123677822,0.124202517,,,,,,,,0.027825233,0.033372226,0.033629063,,,,,,,,0.010143494,0.010158589,0.010223689,,,,,,,,0.08366058,0.093026138,0.102649934,,,,,,,,0.001316696,0.001815716,0.001835632,,,,,,,,0.053645501,0.063019329,0.071253431,,,,,,,,0.467488789,0.559226208,0.690206661,,,,,,,,1261.913017,1263.555821,1271.231379,,,,,,,,0.002352507,0.002443316,0.002679484,,,,,,,,0.023866241,0.023869161,0.023881772,,,,,,,,0.752052771,1.007727218,1.041166856,,,,,,,,0.002289257,0.003156871,0.003191498,,,,,,,,0.119821201,0.125956327,0.126503185,,,,,,,,0.028196136,0.033784673,0.034047543,,,,,,,,0.010311014,0.010324437,0.010387154,,,,,,,,0.082026168,0.09078084,0.09868711,,,,,,,,0.001328533,0.00183174,0.001851674,,,,,,,,0.058177465,0.068712894,0.079786968,,,,,,,,0.468519485,0.560293652,0.690650536,,,,,,,,1252.793921,1254.745204,1262.826171,,,,,,,,0.002382076,0.002472427,0.002707286,,,,,,,,0.023912348,0.02391525,0.023927734,,,,,,,,0.816897602,1.094760451,1.129348541,,,,,,,,0.002309837,0.003184732,0.003219389,,,,,,,,0.122488284,0.128673596,0.12921725,,,,,,,,0.028645815,0.034281077,0.034543708,,,,,,,,0.010236502,0.010252446,0.010318476,,,,,,,,0.086007663,0.095847594,0.106398147,,,,,,,,0.001342478,0.001851504,0.001872102,,,,,,,,0.054972084,0.064563833,0.07289498,,,,,,,,0.483607928,0.57921952,0.718606833,,,,,,,,1241.455621,1243.568204,1251.732277,,,,,,,,0.002445611,0.002542254,0.002793702,,,,,,,,0.024001362,0.024004168,0.024016241,,,,,,,,0.80299558,1.076388743,1.112049499,,,,,,,,0.002334082,0.003219094,0.003254905,,,,,,,,0.126453131,0.132718336,0.13330953,,,,,,,,0.029279329,0.034980805,0.035255836,,,,,,,,0.010143858,0.01016112,0.010227829,,,,,,,,0.082649995,0.091618201,0.099624988 +Heavy duty short haul truck,B0,2045,,,,,,,,,0.001321407,0.001819851,,,,,,,,,0.063723656,0.075793305,,,,,,,,,0.469663433,0.561852829,,,,,,,,,1220.562818,1222.94409,,,,,,,,,0.002351608,0.002443364,,,,,,,,,0.02386404,0.023866936,,,,,,,,,0.7916155,1.059729097,,,,,,,,,0.002297447,0.003164062,,,,,,,,,0.119874053,0.126003009,,,,,,,,,0.028248999,0.033831213,,,,,,,,,0.009973143,0.009992601,,,,,,,,,0.09035908,0.101632326,,,,,,,,,0.001325395,0.001824931,,,,,,,,,0.061465929,0.072915908,,,,,,,,,0.464877501,0.555693835,,,,,,,,,1236.71188,1238.903824,,,,,,,,,0.002349557,0.00243871,,,,,,,,,0.023862688,0.02386559,,,,,,,,,0.79157065,1.059536978,,,,,,,,,0.002304381,0.003172896,,,,,,,,,0.12040446,0.126543426,,,,,,,,,0.028353939,0.033947946,,,,,,,,,0.010105097,0.010123007,,,,,,,,,0.088710607,0.099404507,,,,,,,,,0.001365733,0.001881662,,,,,,,,,0.067347776,0.080080651,,,,,,,,,0.491507666,0.588348528,,,,,,,,,1251.578683,1253.917667,,,,,,,,,0.002530457,0.002627551,,,,,,,,,0.024208096,0.024210778,,,,,,,,,0.806371051,1.079914863,,,,,,,,,0.002374515,0.003271527,,,,,,,,,0.13324925,0.139600914,,,,,,,,,0.030362838,0.036141806,,,,,,,,,0.010226573,0.010245684,,,,,,,,,0.094398968,0.106286786,,,,,,,,,0.001290071,0.001776241,,,,,,,,,0.061030107,0.072561022,,,,,,,,,0.450041542,0.537605694,,,,,,,,,1219.41755,1221.547125,,,,,,,,,0.002231847,0.002316914,,,,,,,,,0.023672765,0.023675833,,,,,,,,,0.767174722,1.026617187,,,,,,,,,0.002242967,0.00308824,,,,,,,,,0.111303645,0.117274037,,,,,,,,,0.026867585,0.032311371,,,,,,,,,0.009963786,0.009981187,,,,,,,,,0.087941873,0.098709072,,,,,,,,,0.001356346,0.001868596,,,,,,,,,0.056479503,0.066346312,,,,,,,,,0.48611738,0.581722297,,,,,,,,,1272.623857,1274.410033,,,,,,,,,0.002494241,0.002589641,,,,,,,,,0.024146504,0.024149228,,,,,,,,,0.768962652,1.029607835,,,,,,,,,0.002358194,0.003248812,,,,,,,,,0.130611077,0.136915183,,,,,,,,,0.029939974,0.035677456,,,,,,,,,0.010398531,0.010413128,,,,,,,,,0.084874851,0.094090343,,,,,,,,,0.001312228,0.00180704,,,,,,,,,0.0558871,0.065883276,,,,,,,,,0.460081173,0.549749412,,,,,,,,,1244.573243,1246.403325,,,,,,,,,0.002317812,0.002405198,,,,,,,,,0.02383601,0.023838963,,,,,,,,,0.759965885,1.017106617,,,,,,,,,0.002281489,0.003141788,,,,,,,,,0.117816887,0.123896123,,,,,,,,,0.02790231,0.033443205,,,,,,,,,0.010169332,0.010184286,,,,,,,,,0.083759811,0.093096122,,,,,,,,,0.001321669,0.001820153,,,,,,,,,0.053624942,0.062969877,,,,,,,,,0.467699213,0.559303983,,,,,,,,,1265.060269,1266.685951,,,,,,,,,0.002351436,0.002442018,,,,,,,,,0.023873505,0.023876412,,,,,,,,,0.754901201,1.010431016,,,,,,,,,0.002297904,0.003164587,,,,,,,,,0.120057456,0.126185429,,,,,,,,,0.028274927,0.033857392,,,,,,,,,0.010336731,0.010350015,,,,,,,,,0.082132163,0.090859425,,,,,,,,,0.00133353,0.001836186,,,,,,,,,0.05814672,0.068649824,,,,,,,,,0.468715591,0.560353093,,,,,,,,,1255.888856,1257.82254,,,,,,,,,0.002380883,0.002471003,,,,,,,,,0.023919556,0.023922422,,,,,,,,,0.819988249,1.097687926,,,,,,,,,0.002318524,0.003192461,,,,,,,,,0.122722957,0.128900836,,,,,,,,,0.028724628,0.034353631,,,,,,,,,0.010261792,0.010277591,,,,,,,,,0.086102548,0.095911866,,,,,,,,,0.001347544,0.001856035,,,,,,,,,0.054953427,0.064516151,,,,,,,,,0.483843925,0.579326716,,,,,,,,,1244.46986,1246.567561,,,,,,,,,0.002444547,0.002540958,,,,,,,,,0.024008329,0.024011116,,,,,,,,,0.805988636,1.079219365,,,,,,,,,0.00234289,0.003226971,,,,,,,,,0.126711383,0.132969337,,,,,,,,,0.029361783,0.035057178,,,,,,,,,0.010168488,0.010185626,,,,,,,,,0.082753568,0.09169431 +Heavy duty short haul truck,B0,2050,,,,,,,,,,0.001325545,,,,,,,,,,0.063643425,,,,,,,,,,0.469605705,,,,,,,,,,1223.974042,,,,,,,,,,0.002350127,,,,,,,,,,0.023872154,,,,,,,,,,0.794208858,,,,,,,,,,0.002304642,,,,,,,,,,0.120124871,,,,,,,,,,0.028321695,,,,,,,,,,0.010001017,,,,,,,,,,0.09041993,,,,,,,,,,0.001329519,,,,,,,,,,0.061389354,,,,,,,,,,0.464799899,,,,,,,,,,1240.149952,,,,,,,,,,0.002347954,,,,,,,,,,0.023870832,,,,,,,,,,0.794153888,,,,,,,,,,0.002311552,,,,,,,,,,0.120646031,,,,,,,,,,0.028425328,,,,,,,,,,0.010133188,,,,,,,,,,0.088776182,,,,,,,,,,0.001370001,,,,,,,,,,0.067266077,,,,,,,,,,0.491464058,,,,,,,,,,1254.966539,,,,,,,,,,0.002528806,,,,,,,,,,0.024215613,,,,,,,,,,0.808947345,,,,,,,,,,0.002381935,,,,,,,,,,0.133530419,,,,,,,,,,0.030440593,,,,,,,,,,0.010254255,,,,,,,,,,0.094459007,,,,,,,,,,0.001294114,,,,,,,,,,0.060950042,,,,,,,,,,0.449968001,,,,,,,,,,1222.946562,,,,,,,,,,0.002230419,,,,,,,,,,0.023681356,,,,,,,,,,0.769753245,,,,,,,,,,0.002249996,,,,,,,,,,0.111527022,,,,,,,,,,0.026935903,,,,,,,,,,0.009992622,,,,,,,,,,0.088005887,,,,,,,,,,0.001360583,,,,,,,,,,0.05642828,,,,,,,,,,0.486068086,,,,,,,,,,1276.080479,,,,,,,,,,0.0024926,,,,,,,,,,0.02415414,,,,,,,,,,0.77142757,,,,,,,,,,0.002365561,,,,,,,,,,0.130883838,,,,,,,,,,0.030016371,,,,,,,,,,0.010426775,,,,,,,,,,0.084965776,,,,,,,,,,0.001316324,,,,,,,,,,0.055827507,,,,,,,,,,0.460007365,,,,,,,,,,1248.102459,,,,,,,,,,0.002316254,,,,,,,,,,0.023844262,,,,,,,,,,0.762479528,,,,,,,,,,0.00228861,,,,,,,,,,0.118051505,,,,,,,,,,0.027972552,,,,,,,,,,0.010198169,,,,,,,,,,0.083843795,,,,,,,,,,0.0013258,,,,,,,,,,0.053575555,,,,,,,,,,0.467634747,,,,,,,,,,1268.574668,,,,,,,,,,0.002349907,,,,,,,,,,0.023881626,,,,,,,,,,0.757364575,,,,,,,,,,0.002305086,,,,,,,,,,0.12030413,,,,,,,,,,0.028347023,,,,,,,,,,0.010365447,,,,,,,,,,0.082226031,,,,,,,,,,0.001337672,,,,,,,,,,0.058081804,,,,,,,,,,0.468635255,,,,,,,,,,1259.342312,,,,,,,,,,0.002379218,,,,,,,,,,0.023927596,,,,,,,,,,0.822659198,,,,,,,,,,0.002325726,,,,,,,,,,0.122967578,,,,,,,,,,0.028796568,,,,,,,,,,0.010290009,,,,,,,,,,0.086180094,,,,,,,,,,0.001351759,,,,,,,,,,0.054905742,,,,,,,,,,0.483794926,,,,,,,,,,1247.835619,,,,,,,,,,0.002443006,,,,,,,,,,0.024016128,,,,,,,,,,0.808572062,,,,,,,,,,0.002350218,,,,,,,,,,0.126982497,,,,,,,,,,0.029437773,,,,,,,,,,0.010195988,,,,,,,,,,0.082844345 +Heavy duty short haul truck,B20,1990,0.77901117,,,,,,,,,,0.002656366,,,,,,,,,,5.27382782,,,,,,,,,,1411.551422,,,,,,,,,,0.003169957,,,,,,,,,,0.024121028,,,,,,,,,,27.26120692,,,,,,,,,,0.436661764,,,,,,,,,,1.66185541,,,,,,,,,,1.428142026,,,,,,,,,,0.113244592,,,,,,,,,,1.231991876,,,,,,,,,,0.782389637,,,,,,,,,,0.002626959,,,,,,,,,,5.258391459,,,,,,,,,,1424.892248,,,,,,,,,,0.00314002,,,,,,,,,,0.0241277,,,,,,,,,,27.33278234,,,,,,,,,,0.435287968,,,,,,,,,,1.663835799,,,,,,,,,,1.429585271,,,,,,,,,,0.114314898,,,,,,,,,,1.218926788,,,,,,,,,,0.780023063,,,,,,,,,,0.002780162,,,,,,,,,,5.481430114,,,,,,,,,,1440.945483,,,,,,,,,,0.003396815,,,,,,,,,,0.02444625,,,,,,,,,,27.52506271,,,,,,,,,,0.465246528,,,,,,,,,,1.724540738,,,,,,,,,,1.472653694,,,,,,,,,,0.1156028,,,,,,,,,,1.290298046,,,,,,,,,,0.772518537,,,,,,,,,,0.002575267,,,,,,,,,,5.109171249,,,,,,,,,,1405.410329,,,,,,,,,,0.002986771,,,,,,,,,,0.023951064,,,,,,,,,,26.5790951,,,,,,,,,,0.420128566,,,,,,,,,,1.618151061,,,,,,,,,,1.396356294,,,,,,,,,,0.112751915,,,,,,,,,,1.194194806,,,,,,,,,,0.778554002,,,,,,,,,,0.002614902,,,,,,,,,,5.433997652,,,,,,,,,,1451.179267,,,,,,,,,,0.003344508,,,,,,,,,,0.024389794,,,,,,,,,,26.25641612,,,,,,,,,,0.459985924,,,,,,,,,,1.71137594,,,,,,,,,,1.463148939,,,,,,,,,,0.11642383,,,,,,,,,,1.216571083,,,,,,,,,,0.773922547,,,,,,,,,,0.002539,,,,,,,,,,5.207779137,,,,,,,,,,1425.100543,,,,,,,,,,0.003092471,,,,,,,,,,0.024105543,,,,,,,,,,26.20964042,,,,,,,,,,0.433427299,,,,,,,,,,1.648614291,,,,,,,,,,1.41803346,,,,,,,,,,0.114331596,,,,,,,,,,1.179663184,,,,,,,,,,0.778126908,,,,,,,,,,0.002517637,,,,,,,,,,5.265084377,,,,,,,,,,1440.259819,,,,,,,,,,0.003157475,,,,,,,,,,0.024133863,,,,,,,,,,25.96561381,,,,,,,,,,0.437045252,,,,,,,,,,1.661680975,,,,,,,,,,1.427834734,,,,,,,,,,0.115547799,,,,,,,,,,1.171047321,,,,,,,,,,0.783183019,,,,,,,,,,0.002593294,,,,,,,,,,5.295362034,,,,,,,,,,1438.812232,,,,,,,,,,0.003179428,,,,,,,,,,0.024182502,,,,,,,,,,28.31209934,,,,,,,,,,0.439794127,,,,,,,,,,1.67462512,,,,,,,,,,1.437263576,,,,,,,,,,0.115431643,,,,,,,,,,1.204679909,,,,,,,,,,0.786013992,,,,,,,,,,0.002568695,,,,,,,,,,5.400500262,,,,,,,,,,1430.731917,,,,,,,,,,0.003306439,,,,,,,,,,0.024251682,,,,,,,,,,27.65213521,,,,,,,,,,0.4487699,,,,,,,,,,1.696962972,,,,,,,,,,1.45375021,,,,,,,,,,0.114783371,,,,,,,,,,1.194551602,,,,,,,,, +Heavy duty short haul truck,B20,1995,0.515625572,0.576653314,,,,,,,,,0.00282466,0.002749773,,,,,,,,,4.742579743,5.215685394,,,,,,,,,1443.418398,1401.927864,,,,,,,,,0.002446229,0.003233847,,,,,,,,,0.024213971,0.024083793,,,,,,,,,21.44426875,22.70130821,,,,,,,,,0.25067327,0.317316921,,,,,,,,,1.077225636,1.234788166,,,,,,,,,0.894597419,1.038946589,,,,,,,,,0.115801185,0.012977599,,,,,,,,,1.169575957,1.262783626,,,,,,,,,0.518398205,0.579511249,,,,,,,,,0.002812242,0.002718901,,,,,,,,,4.74381338,5.201991626,,,,,,,,,1460.343296,1416.827292,,,,,,,,,0.002435665,0.003202978,,,,,,,,,0.024221341,0.02409013,,,,,,,,,21.49390901,22.76369914,,,,,,,,,0.250821518,0.317152643,,,,,,,,,1.080779023,1.238127326,,,,,,,,,0.897620944,1.041631705,,,,,,,,,0.117159039,0.013115525,,,,,,,,,1.164785701,1.249186345,,,,,,,,,0.521385855,0.580508091,,,,,,,,,0.002960305,0.002880133,,,,,,,,,4.914260746,5.421765899,,,,,,,,,1474.598736,1433.038423,,,,,,,,,0.002628207,0.003464295,,,,,,,,,0.024533103,0.024411534,,,,,,,,,21.62816171,22.92939696,,,,,,,,,0.275180443,0.343906263,,,,,,,,,1.13770131,1.295410306,,,,,,,,,0.937826681,1.082191116,,,,,,,,,0.1183027,0.013265588,,,,,,,,,1.226054528,1.324347962,,,,,,,,,0.506424067,0.568232389,,,,,,,,,0.002740047,0.002664781,,,,,,,,,4.62277593,5.053969415,,,,,,,,,1443.914751,1398.243163,,,,,,,,,0.002316506,0.003046587,,,,,,,,,0.024049309,0.023911625,,,,,,,,,20.93246412,22.12336088,,,,,,,,,0.235975354,0.301751158,,,,,,,,,1.033936648,1.191733976,,,,,,,,,0.862826186,1.007356057,,,,,,,,,0.115841008,0.012943491,,,,,,,,,1.134896284,1.223164533,,,,,,,,,0.519049842,0.578465754,,,,,,,,,0.002871018,0.002704607,,,,,,,,,4.878099935,5.375080361,,,,,,,,,1495.249514,1447.584012,,,,,,,,,0.002589496,0.003410996,,,,,,,,,0.024477923,0.024354548,,,,,,,,,20.63892963,21.8706711,,,,,,,,,0.270522557,0.338962862,,,,,,,,,1.124693652,1.282509685,,,,,,,,,0.928348398,1.072801453,,,,,,,,,0.119959441,0.013400238,,,,,,,,,1.190439313,1.247021124,,,,,,,,,0.509953257,0.570906202,,,,,,,,,0.002761979,0.00262555,,,,,,,,,4.705444204,5.152182234,,,,,,,,,1468.672982,1420.256447,,,,,,,,,0.002402215,0.003154117,,,,,,,,,0.024200488,0.02406745,,,,,,,,,20.62875725,21.8210275,,,,,,,,,0.247612106,0.314351609,,,,,,,,,1.06359312,1.221533661,,,,,,,,,0.88415621,1.028714927,,,,,,,,,0.117827313,0.013147267,,,,,,,,,1.144782388,1.208102251,,,,,,,,,0.51474369,0.575669411,,,,,,,,,0.002763991,0.002602209,,,,,,,,,4.741501267,5.207762335,,,,,,,,,1487.913374,1437.967908,,,,,,,,,0.002442443,0.003220877,,,,,,,,,0.024227098,0.024096493,,,,,,,,,20.42615705,21.62295627,,,,,,,,,0.251088146,0.317825929,,,,,,,,,1.077025609,1.234680787,,,,,,,,,0.894329243,1.038701079,,,,,,,,,0.119370887,0.013311221,,,,,,,,,1.146361414,1.199000228,,,,,,,,,0.519869516,0.580689948,,,,,,,,,0.002810594,0.002682883,,,,,,,,,4.774243826,5.238908179,,,,,,,,,1479.25915,1433.180556,,,,,,,,,0.002466767,0.003243213,,,,,,,,,0.024275126,0.024145351,,,,,,,,,22.25892897,23.58050565,,,,,,,,,0.254900362,0.321539179,,,,,,,,,1.091442077,1.248818752,,,,,,,,,0.905333422,1.049321116,,,,,,,,,0.118676586,0.013266906,,,,,,,,,1.164764649,1.234339471,,,,,,,,,0.524474817,0.584949186,,,,,,,,,0.002823124,0.002655447,,,,,,,,,4.837969851,5.340393334,,,,,,,,,1465.829772,1422.548769,,,,,,,,,0.002545291,0.003373271,,,,,,,,,0.024340987,0.024215934,,,,,,,,,21.72905948,23.03629743,,,,,,,,,0.262073815,0.329176056,,,,,,,,,1.11283089,1.269966162,,,,,,,,,0.920973447,1.064935739,,,,,,,,,0.117599163,0.013168486,,,,,,,,,1.169896384,1.223456824,,,,,,,, +Heavy duty short haul truck,B20,2000,0.35834312,0.337583814,0.409195391,,,,,,,,0.002105282,0.002251619,0.002444657,,,,,,,,4.465093283,4.522649429,5.110643517,,,,,,,,1381.556345,1343.384709,1356.990854,,,,,,,,0.002358869,0.002567456,0.003426244,,,,,,,,0.024059998,0.023958155,0.023958944,,,,,,,,16.23492859,15.26279239,17.58700834,,,,,,,,0.200337609,0.202790351,0.241014553,,,,,,,,0.821549293,0.791601325,0.929860896,,,,,,,,0.663680993,0.637696581,0.763369337,,,,,,,,0.110838176,0.012435668,0.01256162,,,,,,,,1.175493433,1.227465773,1.316125115,,,,,,,,0.360158561,0.339308215,0.411376307,,,,,,,,0.002100895,0.002243387,0.002415267,,,,,,,,4.472093713,4.527398449,5.099074162,,,,,,,,1399.543494,1360.745137,1372.612791,,,,,,,,0.002355034,0.002559599,0.003394095,,,,,,,,0.024066143,0.023963225,0.023964009,,,,,,,,16.27955033,15.30823232,17.64149432,,,,,,,,0.200431326,0.203007586,0.241240513,,,,,,,,0.824132599,0.794382068,0.933167229,,,,,,,,0.665688756,0.639797476,0.765939693,,,,,,,,0.112281237,0.012596373,0.01270623,,,,,,,,1.173149892,1.223217392,1.301502016,,,,,,,,0.363185933,0.342004989,0.413252074,,,,,,,,0.002209788,0.002367004,0.00256328,,,,,,,,4.628184724,4.694929407,5.316803875,,,,,,,,1413.913432,1376.095646,1389.704656,,,,,,,,0.002537343,0.002758962,0.003667499,,,,,,,,0.024389372,0.024294722,0.024295445,,,,,,,,16.3332851,15.37194345,17.73907718,,,,,,,,0.218609612,0.221049007,0.262320514,,,,,,,,0.870316832,0.838765368,0.98161337,,,,,,,,0.696848048,0.669619817,0.799257798,,,,,,,,0.113434083,0.01273847,0.012864451,,,,,,,,1.23509336,1.291053519,1.382869504,,,,,,,,0.3521725,0.331751392,0.402481254,,,,,,,,0.002041918,0.002181185,0.002367655,,,,,,,,4.356761913,4.405000242,4.950360589,,,,,,,,1382.469273,1342.431419,1353.572177,,,,,,,,0.002238043,0.002432097,0.00322813,,,,,,,,0.023886397,0.023778209,0.023779047,,,,,,,,15.87345851,14.90340091,17.15260049,,,,,,,,0.189574379,0.192170882,0.228620469,,,,,,,,0.788437137,0.759846447,0.894239484,,,,,,,,0.640727499,0.615770664,0.738037843,,,,,,,,0.110911434,0.012426843,0.012529973,,,,,,,,1.139832384,1.18911028,1.273499866,,,,,,,,0.361564848,0.340488019,0.411568861,,,,,,,,0.002157596,0.002292589,0.002392358,,,,,,,,4.59508133,4.659472629,5.270594098,,,,,,,,1437.292882,1397.726629,1406.284646,,,,,,,,0.002500828,0.002718804,0.003611524,,,,,,,,0.024332037,0.02423587,0.024236612,,,,,,,,15.59425825,14.67133223,16.92582779,,,,,,,,0.215198535,0.21768022,0.258389365,,,,,,,,0.860265754,0.829133872,0.970879739,,,,,,,,0.689918163,0.663007633,0.791679768,,,,,,,,0.115309769,0.012938708,0.013017931,,,,,,,,1.206744762,1.251612237,1.297353153,,,,,,,,0.354980543,0.334346743,0.405044388,,,,,,,,0.002070177,0.002201123,0.002324385,,,,,,,,4.43640131,4.489173312,5.04936217,,,,,,,,1409.115172,1368.596818,1377.108638,,,,,,,,0.00232331,0.002523662,0.003341433,,,,,,,,0.024043115,0.023938777,0.023939578,,,,,,,,15.62568621,14.6799654,16.90898357,,,,,,,,0.198281001,0.200915857,0.238820588,,,,,,,,0.812329752,0.783069224,0.919810275,,,,,,,,0.657045751,0.631552294,0.755854951,,,,,,,,0.113049155,0.01266906,0.012747849,,,,,,,,1.156588561,1.200874032,1.256033883,,,,,,,,0.357913997,0.337156805,0.408564065,,,,,,,,0.002075278,0.002201751,0.002299206,,,,,,,,4.466527384,4.523071797,5.103629067,,,,,,,,1430.419984,1389.859279,1396.820079,,,,,,,,0.00235797,0.00256465,0.003412439,,,,,,,,0.024072626,0.023970388,0.023971168,,,,,,,,15.46551638,14.53879371,16.75392767,,,,,,,,0.200708412,0.203226902,0.241519288,,,,,,,,0.821835677,0.792022729,0.930172914,,,,,,,,0.663809929,0.637911006,0.763475794,,,,,,,,0.114758377,0.012865881,0.01293032,,,,,,,,1.160236126,1.201984499,1.245239759,,,,,,,,0.361297277,0.340363268,0.412460937,,,,,,,,0.002106164,0.002242755,0.002378219,,,,,,,,4.5014728,4.558629712,5.136497366,,,,,,,,1420.164067,1380.79128,1390.44318,,,,,,,,0.002385997,0.002593277,0.003436918,,,,,,,,0.024121607,0.024019856,0.024020639,,,,,,,,16.85304295,15.85039929,18.2701847,,,,,,,,0.203479066,0.206081752,0.244828775,,,,,,,,0.832696823,0.802732019,0.94239255,,,,,,,,0.671560663,0.645491944,0.772394454,,,,,,,,0.11393557,0.012781938,0.012871287,,,,,,,,1.176736022,1.223524592,1.284758609,,,,,,,,0.364171389,0.343092339,0.415685339,,,,,,,,0.002120296,0.002250458,0.002346485,,,,,,,,4.552624712,4.616797981,5.23450995,,,,,,,,1406.025949,1367.942866,1379.018268,,,,,,,,0.002452327,0.002671293,0.003573754,,,,,,,,0.024193105,0.024095511,0.024096273,,,,,,,,16.43217438,15.46575691,17.83843997,,,,,,,,0.208620884,0.210973294,0.250556492,,,,,,,,0.848444773,0.817415391,0.958975368,,,,,,,,0.682454835,0.655636158,0.784223562,,,,,,,,0.112801303,0.012663004,0.012765527,,,,,,,,1.184866377,1.2278632,1.271322624,,,,,,, +Heavy duty short haul truck,B20,2005,0.197562287,0.23810323,0.2321534,0.312246788,,,,,,,0.001862685,0.002024668,0.002046962,0.00241834,,,,,,,2.022360436,3.222757472,3.27103493,4.557078808,,,,,,,1338.373626,1292.975054,1277.528897,1347.066664,,,,,,,0.002308762,0.002395546,0.002625652,0.003661963,,,,,,,0.023954429,0.023839995,0.023792995,0.023922063,,,,,,,9.388163925,8.654792648,8.324586579,12.78173374,,,,,,,0.122396344,0.162804454,0.164149081,0.191480652,,,,,,,0.51309732,0.6108878,0.60536699,0.741740255,,,,,,,0.388578427,0.48047979,0.47628706,0.595857743,,,,,,,0.107373766,0.011969026,0.011826043,0.012469751,,,,,,,0.568377938,0.946463861,0.963568103,1.203157406,,,,,,,0.198515281,0.239187052,0.233194328,0.313883377,,,,,,,0.001851823,0.002019301,0.002036412,0.002382064,,,,,,,2.023474995,3.223745885,3.268990937,4.541649213,,,,,,,1356.33218,1310.301096,1294.288211,1362.802752,,,,,,,0.002308111,0.002394497,0.002619407,0.003624696,,,,,,,0.023959435,0.023843559,0.023795903,0.023926699,,,,,,,9.403491794,8.667310492,8.334759601,12.81479401,,,,,,,0.122361426,0.162851706,0.164236396,0.191593985,,,,,,,0.514585607,0.612753473,0.607288822,0.744266726,,,,,,,0.38954343,0.481706701,0.477532367,0.597723252,,,,,,,0.108814516,0.012129414,0.011981183,0.01261542,,,,,,,0.56647008,0.944455637,0.959090641,1.186154091,,,,,,,0.199970155,0.240911577,0.234849273,0.315809585,,,,,,,0.001967838,0.002146247,0.002170093,0.002546091,,,,,,,2.09744434,3.353666767,3.407353509,4.745350973,,,,,,,1371.207863,1326.269823,1311.147246,1380.544639,,,,,,,0.002485229,0.002577968,0.002821157,0.003916601,,,,,,,0.024291261,0.024185312,0.02414192,0.024261255,,,,,,,9.496822846,8.779188921,8.457812459,12.90134434,,,,,,,0.132038369,0.17541433,0.176766263,0.207714058,,,,,,,0.543998551,0.645974554,0.640188264,0.784120778,,,,,,,0.406605203,0.502632528,0.498318917,0.623982597,,,,,,,0.110007955,0.012277235,0.012137247,0.012779656,,,,,,,0.59834623,1.002085143,1.020551298,1.266931637,,,,,,,0.195106602,0.235036089,0.229122236,0.307498572,,,,,,,0.001797242,0.001951031,0.001971396,0.002334261,,,,,,,1.972373922,3.138831155,3.180307909,4.409234712,,,,,,,1338.272301,1290.806067,1274.099683,1343.668489,,,,,,,0.002192177,0.002273401,0.002487674,0.003447945,,,,,,,0.023774239,0.023652259,0.023602027,0.023739788,,,,,,,9.14338831,8.406911121,8.074377283,12.46445502,,,,,,,0.116768382,0.155588769,0.15697255,0.182002103,,,,,,,0.493225858,0.588499766,0.583215328,0.71340876,,,,,,,0.376918836,0.466252787,0.462167503,0.576679518,,,,,,,0.107365634,0.01194895,0.011794299,0.012438295,,,,,,,0.550497467,0.91330037,0.929081983,1.161800296,,,,,,,0.19929276,0.24008345,0.234037814,0.314574705,,,,,,,0.001884589,0.00208046,0.002079448,0.002343511,,,,,,,2.082275292,3.328021181,3.380057198,4.702980787,,,,,,,1394.578862,1348.13207,1331.543093,1397.459517,,,,,,,0.00244982,0.002541193,0.002780433,0.003856635,,,,,,,0.024232358,0.024124609,0.024080458,0.024201857,,,,,,,9.056378558,8.365927456,8.057243144,12.31161659,,,,,,,0.13025806,0.173124845,0.17448806,0.204716917,,,,,,,0.537887587,0.639099892,0.63339096,0.775519579,,,,,,,0.403024771,0.498272319,0.493996313,0.618193688,,,,,,,0.111882946,0.012479614,0.012326049,0.012936236,,,,,,,0.5784013,0.973193551,0.979810227,1.170971037,,,,,,,0.196485324,0.236655493,0.230684145,0.309641462,,,,,,,0.001805096,0.001980754,0.001985265,0.00227507,,,,,,,2.008828257,3.202222414,3.246116611,4.499034453,,,,,,,1365.358583,1317.686607,1300.47372,1367.53046,,,,,,,0.002277171,0.002361673,0.002582027,0.003567458,,,,,,,0.023934937,0.023817463,0.023769154,0.023901744,,,,,,,9.022889846,8.307748924,7.985838404,12.29131465,,,,,,,0.121360423,0.161626035,0.16302784,0.189774607,,,,,,,0.508332635,0.60573943,0.600360595,0.734297947,,,,,,,0.385753272,0.477151484,0.473026968,0.590597736,,,,,,,0.109538686,0.01219778,0.012038442,0.012659184,,,,,,,0.55505094,0.927474692,0.936083431,1.13547729,,,,,,,0.197514356,0.237993287,0.232026964,0.311935236,,,,,,,0.001801824,0.001984707,0.001982483,0.00224302,,,,,,,2.022712084,3.224044527,3.271113234,4.54958257,,,,,,,1387.242608,1339.665255,1322.311289,1387.932649,,,,,,,0.002309212,0.002395708,0.002623362,0.003645742,,,,,,,0.023966632,0.02385167,0.023804425,0.023934125,,,,,,,8.941758912,8.242057261,7.927689101,12.17899487,,,,,,,0.122595916,0.163125758,0.164491779,0.191849807,,,,,,,0.5135518,0.611500406,0.606013266,0.742185989,,,,,,,0.388843706,0.480852105,0.476675201,0.596092302,,,,,,,0.111294387,0.012401236,0.01224059,0.012848047,,,,,,,0.55532834,0.929845161,0.935369164,1.121203332,,,,,,,0.199086349,0.239851395,0.233834371,0.314781343,,,,,,,0.001845355,0.002023579,0.002031478,0.002334935,,,,,,,2.036966325,3.246763556,3.293028783,4.575627994,,,,,,,1377.182515,1330.70383,1314.16864,1381.037202,,,,,,,0.002339039,0.00242689,0.002654433,0.003670187,,,,,,,0.024016122,0.023901593,0.023854495,0.023983751,,,,,,,9.741266956,8.982157833,8.638865474,13.27015829,,,,,,,0.123959978,0.164962475,0.166358799,0.194324662,,,,,,,0.519992202,0.618936895,0.613446763,0.751797371,,,,,,,0.392716116,0.485621546,0.481437275,0.602762612,,,,,,,0.110487295,0.012318282,0.012165215,0.012784217,,,,,,,0.566189689,0.946960139,0.957348987,1.164669833,,,,,,,0.199935083,0.241029325,0.235035378,0.316823913,,,,,,,0.001846338,0.00203634,0.002033866,0.002293541,,,,,,,2.061894953,3.28813241,3.34089274,4.669629782,,,,,,,1363.771559,1318.883716,1303.18995,1369.239898,,,,,,,0.002399516,0.002490459,0.002731751,0.003820736,,,,,,,0.024091949,0.023982507,0.023937633,0.024060973,,,,,,,9.526243011,8.799367886,8.472525019,12.96299424,,,,,,,0.126675194,0.168291781,0.169610504,0.198751758,,,,,,,0.529056051,0.628865781,0.623155568,0.764752194,,,,,,,0.397986216,0.49193093,0.487645455,0.611536575,,,,,,,0.109411352,0.012208862,0.012063585,0.012675009,,,,,,,0.566979259,0.952485553,0.958221295,1.145633916,,,,,, +Heavy duty short haul truck,B20,2010,,0.0651335,0.059942207,0.054444444,0.174490163,,,,,,,0.043496306,0.07849515,0.093318155,0.064669501,,,,,,,1.078859893,1.284432976,1.377178178,3.280410856,,,,,,,1288.267783,1295.203607,1313.775311,1352.228237,,,,,,,0.002320325,0.002420623,0.002705409,0.003900577,,,,,,,0.023830998,0.023844613,0.023879037,0.023923746,,,,,,,4.86101764,4.762551131,4.702135519,8.244333192,,,,,,,0.046321831,0.043552896,0.039396892,0.108444529,,,,,,,0.252872036,0.249254557,0.238372467,0.469553734,,,,,,,0.15059825,0.146963242,0.136372112,0.347485133,,,,,,,0.011320228,0.011356086,0.011495216,0.012180509,,,,,,,0.288250741,0.308021375,0.310848734,0.797891824,,,,,,,0.06541549,0.060191448,0.054661702,0.175384241,,,,,,,0.042131384,0.076686424,0.090088957,0.061240523,,,,,,,1.07537376,1.279501101,1.367921063,3.257468402,,,,,,,1305.740551,1312.495511,1330.748157,1367.884919,,,,,,,0.002321426,0.002418825,0.002695338,0.003856913,,,,,,,0.023834428,0.023848233,0.023883122,0.023928396,,,,,,,4.861624604,4.762628273,4.701087425,8.256689861,,,,,,,0.046340808,0.043567406,0.039398183,0.108447982,,,,,,,0.253868147,0.250213286,0.239244285,0.471099391,,,,,,,0.151011841,0.14735186,0.136706372,0.348466958,,,,,,,0.011473701,0.011507613,0.011643597,0.01232147,,,,,,,0.286864314,0.305853234,0.306366,0.78027279,,,,,,,0.065938423,0.060713449,0.055170785,0.176573634,,,,,,,0.045971009,0.08317427,0.098654272,0.068168023,,,,,,,1.125382131,1.340460251,1.439522137,3.423513908,,,,,,,1321.650061,1328.468496,1346.961764,1386.048652,,,,,,,0.00249861,0.002604417,0.002905128,0.004169073,,,,,,,0.024176989,0.024189574,0.0242214,0.02426281,,,,,,,4.961310243,4.861067104,4.79935086,8.345743263,,,,,,,0.049845873,0.046816621,0.042346022,0.117193893,,,,,,,0.272237827,0.268441426,0.257156116,0.498744718,,,,,,,0.158205678,0.154362982,0.143318829,0.363782114,,,,,,,0.011613722,0.011647985,0.01178588,0.012484742,,,,,,,0.30518997,0.326118149,0.328616734,0.839905835,,,,,,,0.064255444,0.059114585,0.053677872,0.172057074,,,,,,,0.041712477,0.075293217,0.089399552,0.061805095,,,,,,,1.046047336,1.24403276,1.327165978,3.156904778,,,,,,,1286.227212,1293.03213,1311.535957,1348.861335,,,,,,,0.002203552,0.00229667,0.002560905,0.003669488,,,,,,,0.023642633,0.02365718,0.023693919,0.023741581,,,,,,,4.703378111,4.607895962,4.549491202,8.025408084,,,,,,,0.044305258,0.041675417,0.037686225,0.103290176,,,,,,,0.240587434,0.237051356,0.226377818,0.450412138,,,,,,,0.145709418,0.142186042,0.131862293,0.336573011,,,,,,,0.011302107,0.011336794,0.011475287,0.012150423,,,,,,,0.278229238,0.297123539,0.299611224,0.769301233,,,,,,,0.06570186,0.060489812,0.054962812,0.175923306,,,,,,,0.039161941,0.073744369,0.082899505,0.052245011,,,,,,,1.115713728,1.328639516,1.425361274,3.389171287,,,,,,,1343.980342,1350.214446,1367.635924,1402.685969,,,,,,,0.002463188,0.002567187,0.002862712,0.004104782,,,,,,,0.024116146,0.024128955,0.024161329,0.024203437,,,,,,,4.722277898,4.627257663,4.5697343,7.962916589,,,,,,,0.049206196,0.046221897,0.041805116,0.115569864,,,,,,,0.268460323,0.264690662,0.253470347,0.492899887,,,,,,,0.156708453,0.152901557,0.14194025,0.360470369,,,,,,,0.011809864,0.011838553,0.011966596,0.012634154,,,,,,,0.292261728,0.309543848,0.302321997,0.748191176,,,,,,,0.064714499,0.059549646,0.054083314,0.173280923,,,,,,,0.038609012,0.071759499,0.081982649,0.05315649,,,,,,,1.068111949,1.270521963,1.356285394,3.223946729,,,,,,,1313.40282,1319.826413,1337.582387,1372.560681,,,,,,,0.002290047,0.002385524,0.002656578,0.003795098,,,,,,,0.023808214,0.023822211,0.023857575,0.023903473,,,,,,,4.660939599,4.566540343,4.50895076,7.924871116,,,,,,,0.045994068,0.043238765,0.039095988,0.107471495,,,,,,,0.250095413,0.246463893,0.235572805,0.46474504,,,,,,,0.149452079,0.14582359,0.135269263,0.344609941,,,,,,,0.01154096,0.011571806,0.011703254,0.012363376,,,,,,,0.279595964,0.296723241,0.292419282,0.732611355,,,,,,,0.065097274,0.059907235,0.054411653,0.174384043,,,,,,,0.037206986,0.070049406,0.078685305,0.049484915,,,,,,,1.077971418,1.283024388,1.373766979,3.270203803,,,,,,,1335.598527,1341.740383,1359.045332,1393.098223,,,,,,,0.002321465,0.002420446,0.002701488,0.003881453,,,,,,,0.023842602,0.023856291,0.023890884,0.023935807,,,,,,,4.628969942,4.535539549,4.478975556,7.857753536,,,,,,,0.046412743,0.04363385,0.039463995,0.10862236,,,,,,,0.253223035,0.249588033,0.238671978,0.469921383,,,,,,,0.150724195,0.14707738,0.136466584,0.347655312,,,,,,,0.011736055,0.011764039,0.011891148,0.012548041,,,,,,,0.279379222,0.295738173,0.288766136,0.715576423,,,,,,,0.065601055,0.060365719,0.054823111,0.175897801,,,,,,,0.040100114,0.074177866,0.08529251,0.055931271,,,,,,,1.083429128,1.28919529,1.378790671,3.283229883,,,,,,,1326.380874,1332.835902,1350.57337,1386.100537,,,,,,,0.002353067,0.002451461,0.002730833,0.003904955,,,,,,,0.023892569,0.023906217,0.023940698,0.023985438,,,,,,,5.042016537,4.93903098,4.874277613,8.550609784,,,,,,,0.046931745,0.044114367,0.039890853,0.109913981,,,,,,,0.257273853,0.253582725,0.242531258,0.476255233,,,,,,,0.152355022,0.148656434,0.137926841,0.35137565,,,,,,,0.011655075,0.01168597,0.011817056,0.012485253,,,,,,,0.286095481,0.303950714,0.300615208,0.755140595,,,,,,,0.065959661,0.060713814,0.055153714,0.176841294,,,,,,,0.038115271,0.071861877,0.080622691,0.050600273,,,,,,,1.103345189,1.314451647,1.413779269,3.371853173,,,,,,,1314.492431,1321.004684,1338.591734,1374.021949,,,,,,,0.002411508,0.002516786,0.002815835,0.004071278,,,,,,,0.023973899,0.023986917,0.024019816,0.024062579,,,,,,,4.954016874,4.853751349,4.792013204,8.369401207,,,,,,,0.047857237,0.044982957,0.040698385,0.112382018,,,,,,,0.262715272,0.259027748,0.247965744,0.48500227,,,,,,,0.154529315,0.150802282,0.139990087,0.35635771,,,,,,,0.011550773,0.011582441,0.011712485,0.012376144,,,,,,,0.285505214,0.302296596,0.294945899,0.730600558,,,,, +Heavy duty short haul truck,B20,2015,,,0.001260066,0.001846526,0.001860775,0.04451878,,,,,,,0.060806849,0.073960004,0.089018774,0.12092532,,,,,,,0.441621243,0.540360915,0.665522654,1.722620514,,,,,,,1260.435375,1274.818549,1281.3914,1325.744337,,,,,,,0.002314277,0.002406384,0.002641101,0.003705315,,,,,,,0.023815665,0.023852072,0.023862385,0.023908615,,,,,,,0.840229722,1.194426618,1.221379424,3.039873332,,,,,,,0.002190797,0.003210441,0.003235214,0.02876157,,,,,,,0.116838064,0.124898455,0.125390657,0.210334537,,,,,,,0.027261321,0.033941157,0.03414251,0.111173226,,,,,,,0.010841496,0.010965212,0.011021747,0.011554568,,,,,,,0.089770117,0.102605646,0.116826872,0.335739133,,,,,,,0.001264353,0.001852189,0.001866194,0.044746374,,,,,,,0.058875386,0.071386147,0.084838934,0.113031821,,,,,,,0.437780098,0.535111037,0.65682407,1.698619798,,,,,,,1277.428262,1291.693035,1297.903019,1341.272612,,,,,,,0.002315082,0.002403947,0.002631998,0.003666406,,,,,,,0.023816679,0.023853189,0.023863402,0.023911182,,,,,,,0.839889616,1.193665033,1.219959498,3.039220797,,,,,,,0.002198251,0.003220288,0.003244638,0.02875084,,,,,,,0.117473231,0.125509662,0.125984845,0.211106922,,,,,,,0.027382378,0.034072468,0.034269321,0.111479186,,,,,,,0.010987658,0.011110355,0.011163771,0.011689837,,,,,,,0.088464072,0.100704419,0.113427637,0.323107244,,,,,,,0.001301945,0.001908675,0.001923583,0.045066216,,,,,,,0.06427966,0.078164588,0.09386588,0.12712071,,,,,,,0.461705195,0.565359494,0.697752122,1.805952444,,,,,,,1293.307817,1307.433689,1314.007381,1359.063637,,,,,,,0.002491969,0.002588932,0.002837034,0.003962908,,,,,,,0.024163057,0.024196751,0.024206319,0.024249027,,,,,,,0.858014002,1.219959175,1.248193959,3.091821184,,,,,,,0.00226361,0.003318494,0.003344414,0.030858778,,,,,,,0.12985979,0.138297237,0.138842499,0.227503999,,,,,,,0.029307216,0.036230053,0.036444425,0.116731887,,,,,,,0.011124245,0.011245748,0.011302289,0.011844505,,,,,,,0.093733057,0.107246015,0.122065091,0.352270557,,,,,,,0.001230715,0.001803026,0.001816584,0.043990232,,,,,,,0.058294498,0.0708577,0.085169632,0.115436683,,,,,,,0.424138134,0.518084725,0.634213116,1.638761003,,,,,,,1258.325184,1272.984606,1279.234151,1322.616313,,,,,,,0.002197791,0.002283063,0.002500801,0.003487787,,,,,,,0.023624086,0.023662574,0.02367335,0.023723575,,,,,,,0.812320525,1.154555776,1.179848404,2.948669697,,,,,,,0.002139768,0.003134809,0.003158382,0.027495604,,,,,,,0.108588325,0.116356721,0.116799269,0.199280147,,,,,,,0.025939411,0.032445943,0.032634387,0.107518527,,,,,,,0.010823345,0.010949437,0.011003192,0.011527612,,,,,,,0.087507113,0.099803438,0.113323684,0.32340221,,,,,,,0.001293158,0.001895635,0.001910356,0.044918171,,,,,,,0.054712646,0.065649392,0.074211883,0.09103254,,,,,,,0.456876042,0.559238925,0.689349854,1.783625022,,,,,,,1315.167238,1328.927871,1334.479613,1376.103874,,,,,,,0.002456611,0.002551838,0.002795653,0.003901999,,,,,,,0.02410143,0.0241356,0.024145286,0.024188948,,,,,,,0.817588822,1.162291879,1.189932015,2.950827913,,,,,,,0.002248332,0.003295822,0.003321416,0.030463042,,,,,,,0.127319779,0.135668795,0.136199199,0.224107791,,,,,,,0.028902484,0.03577315,0.03598384,0.11561569,,,,,,,0.011312265,0.011430627,0.011478381,0.011992559,,,,,,,0.085457833,0.096231284,0.104402891,0.290782767,,,,,,,0.001251804,0.001834144,0.001847979,0.044304582,,,,,,,0.053932706,0.064948349,0.074819635,0.094789292,,,,,,,0.433471841,0.529633416,0.648929459,1.676703774,,,,,,,1285.001215,1299.246684,1304.886949,1346.346615,,,,,,,0.002283867,0.002371027,0.002594561,0.003608432,,,,,,,0.023789842,0.023826801,0.023837115,0.023885707,,,,,,,0.805652965,1.145067247,1.170823325,2.919442392,,,,,,,0.002176433,0.003188913,0.003212967,0.028496879,,,,,,,0.114968792,0.122907581,0.123370138,0.207668218,,,,,,,0.026947209,0.033571949,0.033765566,0.110249442,,,,,,,0.011052797,0.011175329,0.01122384,0.011733867,,,,,,,0.084105446,0.094960384,0.104347002,0.291661171,,,,,,,0.001260493,0.001847038,0.001861181,0.04451767,,,,,,,0.05196997,0.062331507,0.070388744,0.086156311,,,,,,,0.440059479,0.538207135,0.661805208,1.712051732,,,,,,,1306.807474,1320.697086,1326.002904,1366.753316,,,,,,,0.002315308,0.002405978,0.002637677,0.003688414,,,,,,,0.023826217,0.023862638,0.023872893,0.023919775,,,,,,,0.801039392,1.138508419,1.16496159,2.900258962,,,,,,,0.002191542,0.003211329,0.003235919,0.028794495,,,,,,,0.117068779,0.125111901,0.125596498,0.210576166,,,,,,,0.027294832,0.033973287,0.034172655,0.111242982,,,,,,,0.011240359,0.011359831,0.011405467,0.011911363,,,,,,,0.082802021,0.093044715,0.100740997,0.278245269,,,,,,,0.001272138,0.001863606,0.001877715,0.04487997,,,,,,,0.056020518,0.067569498,0.07841738,0.10058313,,,,,,,0.441352019,0.539537057,0.6625791,1.713639309,,,,,,,1297.651876,1311.646409,1317.394057,1359.469286,,,,,,,0.002346529,0.002436161,0.002666642,0.003712303,,,,,,,0.023874644,0.023910651,0.0239207,0.023968094,,,,,,,0.870381925,1.237087232,1.263762971,3.146487246,,,,,,,0.002211787,0.003240136,0.003264665,0.029101993,,,,,,,0.119755241,0.127848855,0.128329766,0.214110159,,,,,,,0.027745146,0.034477452,0.034676017,0.112467826,,,,,,,0.011161611,0.011281982,0.011331421,0.011848117,,,,,,,0.08632876,0.097673862,0.107969913,0.303459864,,,,,,,0.001284667,0.001882752,0.001897493,0.045037114,,,,,,,0.053250113,0.063863541,0.072010866,0.08791621,,,,,,,0.454333506,0.556489091,0.687949087,1.782728749,,,,,,,1286.197465,1299.974623,1305.846117,1347.670969,,,,,,,0.002405195,0.002501964,0.00274849,0.00386649,,,,,,,0.023960484,0.023995481,0.024005473,0.024049158,,,,,,,0.856926938,1.218203387,1.246275814,3.093131468,,,,,,,0.002233571,0.003273423,0.003299052,0.029728673,,,,,,,0.123438727,0.131728697,0.132257262,0.219191991,,,,,,,0.028329518,0.035150414,0.03536109,0.114131712,,,,,,,0.011063085,0.011181588,0.011232091,0.011744917,,,,,,,0.08335088,0.093818947,0.101611649,0.282922948,,,, +Heavy duty short haul truck,B20,2020,,,,0.001297646,0.001797724,0.001816192,0.006710416,,,,,,,0.062040563,0.074569957,0.090695064,0.144495777,,,,,,,0.45197121,0.546675421,0.683091229,1.268266055,,,,,,,1203.779515,1208.79897,1215.46661,1266.568221,,,,,,,0.002326528,0.002424389,0.002675324,0.003605944,,,,,,,0.023819594,0.023831596,0.023841419,0.023883704,,,,,,,0.832241793,1.112021925,1.143031454,1.488809676,,,,,,,0.002256136,0.00312559,0.0031577,0.005902966,,,,,,,0.118487063,0.12486081,0.125327928,0.135851271,,,,,,,0.027838614,0.033468726,0.033707191,0.042833019,,,,,,,0.010354178,0.010397353,0.010454703,0.010911837,,,,,,,0.089711073,0.101542753,0.116734826,0.190491395,,,,,,,0.001301722,0.001802911,0.001821167,0.006744469,,,,,,,0.059988195,0.071852241,0.086261794,0.134345541,,,,,,,0.447783892,0.541054092,0.67370663,1.243979795,,,,,,,1219.827293,1224.66811,1230.989346,1281.415409,,,,,,,0.002326051,0.002420996,0.002664833,0.00356914,,,,,,,0.023818007,0.023830074,0.023839942,0.023883559,,,,,,,0.8318771,1.111405508,1.141772115,1.485791102,,,,,,,0.002263223,0.003134611,0.003166352,0.005908098,,,,,,,0.119067576,0.125441674,0.125895386,0.136415012,,,,,,,0.027950735,0.033591615,0.03382634,0.042967825,,,,,,,0.010492211,0.010533847,0.01058822,0.011039729,,,,,,,0.088269962,0.099480866,0.113073365,0.180458014,,,,,,,0.001341221,0.001858825,0.001878067,0.006823468,,,,,,,0.06558228,0.078793578,0.095613152,0.151767337,,,,,,,0.472702703,0.572183529,0.716519903,1.334873676,,,,,,,1235.001647,1239.91071,1246.596033,1298.588019,,,,,,,0.002504392,0.002607772,0.002873162,0.003858087,,,,,,,0.024166933,0.024178032,0.024187131,0.024226212,,,,,,,0.849437309,1.135177146,1.167567681,1.521330307,,,,,,,0.002331897,0.003231822,0.003265276,0.006216055,,,,,,,0.131696701,0.138325398,0.13883643,0.149845233,,,,,,,0.029924438,0.035755752,0.036007188,0.045498879,,,,,,,0.01062273,0.010664955,0.01072246,0.011187575,,,,,,,0.093709136,0.106172214,0.122010196,0.199126107,,,,,,,0.001266887,0.001754662,0.001772365,0.006618902,,,,,,,0.059450611,0.071419105,0.08674201,0.137850348,,,,,,,0.433730018,0.523648735,0.650204859,1.195292574,,,,,,,1201.980219,1206.886101,1213.213968,1263.490158,,,,,,,0.002208868,0.002299599,0.002532324,0.00339507,,,,,,,0.023625679,0.0236384,0.023648809,0.023694663,,,,,,,0.804981356,1.075435977,1.104640662,1.438066007,,,,,,,0.002202657,0.003050721,0.0030815,0.005698482,,,,,,,0.110066698,0.116252455,0.116678701,0.126851989,,,,,,,0.02648164,0.031969362,0.032195299,0.041067607,,,,,,,0.010338701,0.010380898,0.010435327,0.0108854,,,,,,,0.087376624,0.098685164,0.113124521,0.183434736,,,,,,,0.001332019,0.001845937,0.001864969,0.006796728,,,,,,,0.055553092,0.065697904,0.074890577,0.105629848,,,,,,,0.46767026,0.565874909,0.707718153,1.315858473,,,,,,,1255.794785,1260.183408,1265.856578,1315.132321,,,,,,,0.002468722,0.002570298,0.002831086,0.003798826,,,,,,,0.024104723,0.024115993,0.024125235,0.024165168,,,,,,,0.809544921,1.081783965,1.113361994,1.452983812,,,,,,,0.002315897,0.003209415,0.003242505,0.006153608,,,,,,,0.129104679,0.135676796,0.136175611,0.147078165,,,,,,,0.029509153,0.035297787,0.035545665,0.044960708,,,,,,,0.01080158,0.010839329,0.010888127,0.011329987,,,,,,,0.08498103,0.094587271,0.103324561,0.151810339,,,,,,,0.00128873,0.001785176,0.001803219,0.006680492,,,,,,,0.054821496,0.065130625,0.075715768,0.111068651,,,,,,,0.443316069,0.535393288,0.66541797,1.225091356,,,,,,,1227.248973,1231.809,1237.547155,1286.429985,,,,,,,0.002294699,0.002387775,0.002626778,0.003513144,,,,,,,0.023790765,0.023802987,0.023812982,0.023857326,,,,,,,0.798162249,1.066365723,1.096003259,1.428006282,,,,,,,0.002240635,0.003103775,0.003135146,0.00584997,,,,,,,0.116518368,0.122825047,0.123268161,0.133670432,,,,,,,0.027505639,0.03309225,0.033323583,0.042374719,,,,,,,0.010556048,0.010595268,0.010644625,0.011082882,,,,,,,0.083699643,0.09346136,0.103491276,0.156482855,,,,,,,0.001297955,0.001798077,0.001816448,0.006712394,,,,,,,0.052759444,0.062367294,0.071015582,0.099920001,,,,,,,0.45026574,0.544357428,0.679070318,1.257537792,,,,,,,1247.887332,1252.195321,1257.617727,1306.07953,,,,,,,0.002327024,0.002423573,0.0026713,0.003590058,,,,,,,0.023828999,0.02384102,0.023850856,0.023893689,,,,,,,0.793449152,1.060113043,1.090419033,1.422425376,,,,,,,0.002256673,0.003126204,0.003158144,0.005905169,,,,,,,0.118692909,0.125061316,0.125522426,0.136037062,,,,,,,0.027867826,0.033497695,0.033734455,0.042860755,,,,,,,0.010733565,0.01077062,0.01081726,0.011252074,,,,,,,0.082281923,0.091387638,0.099613304,0.145474901,,,,,,,0.00130975,0.001814071,0.001832459,0.006769846,,,,,,,0.056972302,0.067816313,0.079445565,0.118277137,,,,,,,0.451445345,0.545559653,0.67966461,1.255981892,,,,,,,1238.991851,1243.560547,1249.434898,1298.941372,,,,,,,0.002357357,0.002453278,0.002699743,0.003613905,,,,,,,0.023875463,0.023887363,0.023897112,0.023940364,,,,,,,0.861995559,1.151678212,1.182590908,1.537234996,,,,,,,0.002277181,0.003154011,0.003185981,0.005962212,,,,,,,0.121369235,0.127785544,0.128244334,0.138846082,,,,,,,0.028318294,0.033994697,0.034231325,0.04343909,,,,,,,0.010657052,0.010696351,0.010746877,0.011190639,,,,,,,0.085963365,0.096222124,0.107224645,0.164359516,,,,,,,0.001323325,0.001833473,0.001852501,0.006796929,,,,,,,0.054066795,0.063896369,0.072642442,0.101878122,,,,,,,0.465201865,0.56331124,0.706600558,1.319805327,,,,,,,1228.072854,1232.705196,1238.697948,1287.875263,,,,,,,0.002418129,0.002520928,0.002784533,0.003762404,,,,,,,0.023965669,0.023977186,0.023986614,0.024026631,,,,,,,0.848480561,1.133798505,1.166016335,1.519361345,,,,,,,0.002300782,0.003187744,0.003220826,0.006063864,,,,,,,0.125213746,0.131738135,0.132235233,0.143038138,,,,,,,0.028933052,0.03467931,0.034926944,0.044258878,,,,,,,0.010563135,0.010602977,0.010654527,0.011095203,,,,,,,0.082877539,0.09219585,0.100525658,0.147084449,,, +Heavy duty short haul truck,B20,2025,,,,,0.001307427,0.001800507,0.001816741,0.001872967,,,,,,,0.062603809,0.075354216,0.091331811,0.149745542,,,,,,,0.457208203,0.553851626,0.689887749,1.232643533,,,,,,,1203.193908,1203.621155,1209.763986,1249.261748,,,,,,,0.00233477,0.002436682,0.002685444,0.003604063,,,,,,,0.023837927,0.023835834,0.023841854,0.023887907,,,,,,,0.785068104,1.049026385,1.081744223,1.189633077,,,,,,,0.002273142,0.00313043,0.003158654,0.003256411,,,,,,,0.119058988,0.124999315,0.125345472,0.127078941,,,,,,,0.02800768,0.033513644,0.033714759,0.034481768,,,,,,,0.01034914,0.010352815,0.010405651,0.010745388,,,,,,,0.090336373,0.102160979,0.117178376,0.172681512,,,,,,,0.001311479,0.001805675,0.001821708,0.001877131,,,,,,,0.060480932,0.072549263,0.086829759,0.138942857,,,,,,,0.45283254,0.548019024,0.680314766,1.207728181,,,,,,,1219.19391,1219.407569,1225.213449,1263.848607,,,,,,,0.002333704,0.002432863,0.002674666,0.003566655,,,,,,,0.023836448,0.023834331,0.02384039,0.023886874,,,,,,,0.785073459,1.048889185,1.080997438,1.186704379,,,,,,,0.002280187,0.003139416,0.003167292,0.003263654,,,,,,,0.119619101,0.125575294,0.12591241,0.127589272,,,,,,,0.028116984,0.033635722,0.033833767,0.034585873,,,,,,,0.010486763,0.010488601,0.010538537,0.010870855,,,,,,,0.088830064,0.100016157,0.113450998,0.163090325,,,,,,,0.001351286,0.001861701,0.00187864,0.001937301,,,,,,,0.066173253,0.079612477,0.096277331,0.157266784,,,,,,,0.478273807,0.579786624,0.723712976,1.298656077,,,,,,,1234.119007,1234.525879,1240.728644,1280.785943,,,,,,,0.002512913,0.002620739,0.002883867,0.003856428,,,,,,,0.0241839,0.024181953,0.024187532,0.024230193,,,,,,,0.79992361,1.069366251,1.103571415,1.216292893,,,,,,,0.002349396,0.003236823,0.003266273,0.003368263,,,,,,,0.132336298,0.138479904,0.138855824,0.140769423,,,,,,,0.030104725,0.035803572,0.03601523,0.036828338,,,,,,,0.01061514,0.010618639,0.01067199,0.01101654,,,,,,,0.094355662,0.106818407,0.12247554,0.180387787,,,,,,,0.001276453,0.001757365,0.001772888,0.001826571,,,,,,,0.059977881,0.072162169,0.087347094,0.142798589,,,,,,,0.438549768,0.530292187,0.656508025,1.159430724,,,,,,,1201.69432,1201.789879,1207.541595,1246.328879,,,,,,,0.002216399,0.002310971,0.002541709,0.00339277,,,,,,,0.023645108,0.023642892,0.023649274,0.02369823,,,,,,,0.760615692,1.015895524,1.046695287,1.148345579,,,,,,,0.00221929,0.003055421,0.003082409,0.003175746,,,,,,,0.110577171,0.116376416,0.116694536,0.118260033,,,,,,,0.0266409,0.032011672,0.032202401,0.032923722,,,,,,,0.010336242,0.010337063,0.010386536,0.010720161,,,,,,,0.087975983,0.099266704,0.11353888,0.166277005,,,,,,,0.001342014,0.001848789,0.001865536,0.001923501,,,,,,,0.055861152,0.066136663,0.075248295,0.108312521,,,,,,,0.473132482,0.573342525,0.714786447,1.279623502,,,,,,,1254.901487,1254.691226,1259.890478,1297.160275,,,,,,,0.002477056,0.002583031,0.002841605,0.003797024,,,,,,,0.024121948,0.024119979,0.024125648,0.024168998,,,,,,,0.762721455,1.01946761,1.052669058,1.162252769,,,,,,,0.002333275,0.003214374,0.00324349,0.00334427,,,,,,,0.129725379,0.135826868,0.136194531,0.138057584,,,,,,,0.029686393,0.035344814,0.035553581,0.036353615,,,,,,,0.010793896,0.010792089,0.01083681,0.011157382,,,,,,,0.085366884,0.0948783,0.10350281,0.135439297,,,,,,,0.001298415,0.001787916,0.001803753,0.001858479,,,,,,,0.055175696,0.065637964,0.076130233,0.114274859,,,,,,,0.448268418,0.542220099,0.671894793,1.188842014,,,,,,,1226.759055,1226.54235,1231.741783,1268.933644,,,,,,,0.00230223,0.002399413,0.002636415,0.003510753,,,,,,,0.023809433,0.0238073,0.023813434,0.023860547,,,,,,,0.753577017,1.006686695,1.037905367,1.140923857,,,,,,,0.002257474,0.00310854,0.003136074,0.003231221,,,,,,,0.117054044,0.122954926,0.123284707,0.124918562,,,,,,,0.027669198,0.033135663,0.033330881,0.034070827,,,,,,,0.010551832,0.01054997,0.01059469,0.010914593,,,,,,,0.084135726,0.093820542,0.103725562,0.140370127,,,,,,,0.00130772,0.001800851,0.001816992,0.00187285,,,,,,,0.053047146,0.062779283,0.071351907,0.102419819,,,,,,,0.455421999,0.5514392,0.685781438,1.221643063,,,,,,,1247.202168,1246.789021,1251.704991,1288.265861,,,,,,,0.002335017,0.002435678,0.00268129,0.003587965,,,,,,,0.023847363,0.023845267,0.02385129,0.023897498,,,,,,,0.748625311,1.000236813,1.032086719,1.13722583,,,,,,,0.002273651,0.003131028,0.003159091,0.003256208,,,,,,,0.11925562,0.125197658,0.125539697,0.127247872,,,,,,,0.028035576,0.033542247,0.033741945,0.034502198,,,,,,,0.010727671,0.010724121,0.010766404,0.011080876,,,,,,,0.082653348,0.091655414,0.099772575,0.129838557,,,,,,,0.001319548,0.001816849,0.001833004,0.001888832,,,,,,,0.057362799,0.068374889,0.079901643,0.121850718,,,,,,,0.456544162,0.552600125,0.686345029,1.219586538,,,,,,,1238.246541,1238.185004,1243.563036,1281.115017,,,,,,,0.002364995,0.002465254,0.002709681,0.003611326,,,,,,,0.02389365,0.023891571,0.023897549,0.023943475,,,,,,,0.813320545,1.086711151,1.119500318,1.227322093,,,,,,,0.002294216,0.00315884,0.003186928,0.003283993,,,,,,,0.121927631,0.127920842,0.128261499,0.129958328,,,,,,,0.0284858,0.034039145,0.034238807,0.034997314,,,,,,,0.010650641,0.010650112,0.010696372,0.01101937,,,,,,,0.086427611,0.096626452,0.107496051,0.1476813,,,,,,,0.001333282,0.001836319,0.001853069,0.001911143,,,,,,,0.054362472,0.064313976,0.072982147,0.104408069,,,,,,,0.470724671,0.570857356,0.713740922,1.284237331,,,,,,,1227.174653,1227.330271,1232.858687,1270.222731,,,,,,,0.002426814,0.002533851,0.002795165,0.003760736,,,,,,,0.023983265,0.02398126,0.023987031,0.024031142,,,,,,,0.799501912,1.068621297,1.102619541,1.21463773,,,,,,,0.002318093,0.003192692,0.003221815,0.003322783,,,,,,,0.125831024,0.131887419,0.132254081,0.134110762,,,,,,,0.029109516,0.034726179,0.03493486,0.035735203,,,,,,,0.010555411,0.010556747,0.010604297,0.010925681,,,,,,,0.083248977,0.092469654,0.100690426,0.131102994,, +Heavy duty short haul truck,B20,2030,,,,,,0.001305298,0.001795961,0.001815529,0.001864023,,,,,,,0.063371258,0.076035443,0.091989883,0.150765227,,,,,,,0.463416684,0.559300091,0.695955165,1.24041255,,,,,,,1202.070845,1200.442762,1208.903917,1239.114236,,,,,,,0.002347003,0.002447471,0.002695857,0.003620642,,,,,,,0.023834806,0.023827874,0.023839419,0.023876175,,,,,,,0.781294085,1.044456988,1.079533309,1.16489651,,,,,,,0.00226944,0.003122526,0.003156547,0.003240862,,,,,,,0.11895587,0.124747511,0.125270481,0.126768069,,,,,,,0.027973698,0.033436912,0.033693265,0.03435515,,,,,,,0.010339481,0.010325475,0.010398255,0.010658105,,,,,,,0.090998337,0.102657858,0.117750461,0.173299801,,,,,,,0.001309339,0.00180114,0.001820494,0.001868165,,,,,,,0.061167582,0.073164326,0.087419783,0.139861678,,,,,,,0.458876552,0.55334558,0.686227285,1.215353859,,,,,,,1218.048397,1216.192455,1224.335933,1253.57996,,,,,,,0.002345663,0.002443524,0.00268485,0.00358303,,,,,,,0.0238333,0.023826338,0.023837937,0.02387488,,,,,,,0.781298711,1.044331191,1.078789375,1.162165472,,,,,,,0.002276466,0.003131531,0.003165181,0.003248064,,,,,,,0.119519258,0.125332357,0.125840045,0.12728681,,,,,,,0.02808331,0.033560222,0.033812587,0.034460098,,,,,,,0.01047691,0.010460946,0.010530991,0.01078253,,,,,,,0.089416201,0.100449986,0.113959283,0.163610849,,,,,,,0.001349107,0.001857025,0.001877397,0.001928136,,,,,,,0.066972643,0.080320038,0.096961852,0.158315505,,,,,,,0.48483709,0.58552547,0.730117118,1.306752049,,,,,,,1233.01599,1231.382643,1239.884794,1270.559006,,,,,,,0.002525886,0.002632218,0.00289489,0.00387385,,,,,,,0.024181006,0.024174591,0.024185274,0.024219337,,,,,,,0.796068732,1.064770614,1.101320297,1.19070745,,,,,,,0.002345608,0.003228692,0.003264112,0.003352329,,,,,,,0.132221596,0.13819862,0.138771856,0.140426767,,,,,,,0.030068811,0.035721888,0.035992311,0.036695597,,,,,,,0.010605651,0.010591602,0.010664733,0.010928574,,,,,,,0.095047339,0.10733958,0.123072251,0.181030337,,,,,,,0.001274349,0.001752909,0.00177169,0.001817754,,,,,,,0.060708726,0.072814697,0.087974888,0.143781478,,,,,,,0.444313679,0.535375766,0.662151379,1.16673469,,,,,,,1200.512398,1198.483142,1206.635757,1236.016718,,,,,,,0.00222777,0.002321048,0.0025514,0.003408359,,,,,,,0.023641801,0.02363446,0.023646685,0.023685608,,,,,,,0.756960824,1.011403134,1.044545815,1.12472357,,,,,,,0.002215631,0.003047674,0.003080326,0.003160415,,,,,,,0.110484423,0.116151223,0.116627544,0.117976859,,,,,,,0.026608459,0.031939161,0.032182049,0.03280181,,,,,,,0.010326076,0.010308621,0.010378745,0.010631461,,,,,,,0.088602399,0.099733472,0.114081641,0.166856005,,,,,,,0.001339845,0.001844144,0.001864299,0.001914381,,,,,,,0.056295341,0.066532204,0.075622762,0.108880102,,,,,,,0.479584402,0.578991423,0.721084332,1.287610347,,,,,,,1253.738986,1251.454325,1258.999547,1286.756791,,,,,,,0.002489814,0.002594333,0.002852447,0.00381421,,,,,,,0.02411902,0.024112501,0.02412335,0.024157919,,,,,,,0.759092945,1.015105152,1.050547432,1.137896517,,,,,,,0.002329505,0.003206297,0.00324134,0.003328413,,,,,,,0.12961393,0.135553744,0.136113022,0.137723446,,,,,,,0.029650989,0.035264453,0.035531027,0.036222378,,,,,,,0.010783898,0.010764247,0.010829146,0.011067897,,,,,,,0.085717839,0.095106598,0.103810318,0.135629579,,,,,,,0.001296288,0.001783409,0.001802543,0.001849561,,,,,,,0.055678478,0.066094355,0.076563726,0.114945404,,,,,,,0.454190481,0.547439113,0.677688898,1.196307043,,,,,,,1225.559595,1223.223315,1230.822216,1258.523338,,,,,,,0.002313946,0.002409849,0.002646392,0.003526784,,,,,,,0.023806246,0.023799198,0.023810944,0.023848355,,,,,,,0.749974126,1.002288456,1.035791278,1.117351065,,,,,,,0.002253775,0.003100702,0.00313397,0.003215718,,,,,,,0.116956913,0.122718802,0.123214395,0.124623255,,,,,,,0.027635988,0.033061281,0.033309999,0.033946431,,,,,,,0.010541516,0.010521422,0.010586783,0.010825049,,,,,,,0.084549744,0.094104054,0.104087394,0.140655942,,,,,,,0.001305589,0.001796311,0.00181578,0.001863901,,,,,,,0.053455948,0.063153157,0.071705141,0.102960281,,,,,,,0.461555126,0.556829034,0.691777181,1.229335378,,,,,,,1246.005245,1243.483864,1250.7886,1277.799096,,,,,,,0.002347124,0.002446399,0.002691596,0.003604428,,,,,,,0.023844234,0.023837295,0.023848858,0.02388566,,,,,,,0.745072822,0.995916476,1.030005684,1.113640847,,,,,,,0.002269945,0.003123134,0.003156983,0.003240648,,,,,,,0.119154047,0.12494979,0.125465898,0.126940778,,,,,,,0.028001764,0.033466071,0.033720604,0.034376009,,,,,,,0.010717378,0.010695686,0.010758521,0.01099085,,,,,,,0.082979931,0.091861943,0.100059775,0.13000163,,,,,,,0.001317401,0.001812297,0.001831787,0.001879829,,,,,,,0.057915904,0.068875365,0.080377998,0.122588734,,,,,,,0.462655887,0.557986612,0.692322554,1.227290909,,,,,,,1237.08375,1234.945559,1242.672081,1270.745531,,,,,,,0.002377103,0.002476073,0.002719989,0.003627908,,,,,,,0.023890556,0.023883679,0.023895132,0.023931585,,,,,,,0.809379325,1.081975897,1.117197073,1.201902576,,,,,,,0.002290482,0.003150927,0.003184812,0.00326834,,,,,,,0.121826662,0.127674913,0.128188285,0.129652403,,,,,,,0.028451912,0.033963115,0.034217493,0.034870754,,,,,,,0.01064064,0.010622249,0.010688708,0.010930179,,,,,,,0.086889099,0.096952563,0.107898293,0.148030634,,,,,,,0.001331128,0.001831698,0.001851843,0.001902084,,,,,,,0.054774683,0.064689184,0.073337902,0.104947421,,,,,,,0.477243819,0.576563447,0.720105715,1.29233748,,,,,,,1226.047638,1224.180958,1231.993637,1260.047261,,,,,,,0.002439657,0.00254516,0.00280609,0.003778036,,,,,,,0.023980259,0.023973612,0.023984684,0.024019989,,,,,,,0.795666626,1.064030658,1.100379405,1.189226976,,,,,,,0.002314348,0.003184659,0.003219682,0.003307034,,,,,,,0.125720217,0.131615901,0.132173098,0.133779246,,,,,,,0.029074321,0.034646255,0.034912475,0.035604877,,,,,,,0.010545713,0.010529659,0.010596859,0.010838158,,,,,,,0.083580922,0.092682543,0.10098161,0.131274331, +Heavy duty short haul truck,B20,2035,,,,,,,0.001309028,0.001802217,0.00182183,0.001865764,,,,,,,0.063691613,0.0762228,0.091781042,0.14982863,,,,,,,0.467106117,0.562477492,0.695596872,1.231229929,,,,,,,1204.982047,1204.763241,1213.22815,1239.740662,,,,,,,0.002351791,0.002450382,0.002692523,0.00360576,,,,,,,0.023841534,0.023838025,0.023849807,0.02387967,,,,,,,0.783808626,1.048579329,1.083320508,1.160931993,,,,,,,0.002275924,0.003133403,0.003167503,0.003243887,,,,,,,0.119167527,0.125074315,0.125603841,0.126875549,,,,,,,0.02803731,0.033539908,0.033797557,0.034385985,,,,,,,0.010364519,0.010362639,0.010435449,0.010663494,,,,,,,0.091415561,0.103010944,0.117737736,0.172468897,,,,,,,0.001313047,0.001807368,0.00182677,0.001869905,,,,,,,0.061450193,0.073323133,0.087223013,0.139020544,,,,,,,0.462447929,0.55640079,0.685828839,1.206390605,,,,,,,1220.977514,1220.54407,1228.697092,1254.225703,,,,,,,0.002350185,0.002446141,0.002681364,0.003568446,,,,,,,0.023840063,0.023836536,0.023848386,0.023878388,,,,,,,0.783792088,1.048430831,1.082563464,1.158273329,,,,,,,0.002282913,0.003142361,0.003176094,0.003251089,,,,,,,0.119723261,0.125647651,0.126161658,0.127390355,,,,,,,0.028145755,0.033661497,0.033915156,0.034490429,,,,,,,0.010502103,0.010498377,0.010568503,0.010788087,,,,,,,0.089799493,0.100778312,0.113959643,0.162869275,,,,,,,0.001352975,0.001863476,0.001883895,0.001929924,,,,,,,0.067308717,0.080518797,0.096751047,0.157344955,,,,,,,0.488755429,0.588918372,0.72980095,1.297092093,,,,,,,1235.909082,1235.672143,1244.175803,1271.153935,,,,,,,0.002530882,0.002635213,0.002891334,0.003858153,,,,,,,0.024187242,0.024183985,0.024194902,0.024222575,,,,,,,0.798602247,1.068869015,1.105063118,1.186474578,,,,,,,0.002352333,0.003239908,0.003275409,0.003355438,,,,,,,0.132458607,0.138563389,0.139144228,0.140547254,,,,,,,0.030136942,0.035831521,0.036103394,0.036728532,,,,,,,0.010630536,0.010628499,0.01070164,0.010933691,,,,,,,0.095479611,0.107703806,0.123058267,0.180167657,,,,,,,0.001277971,0.001759016,0.001777846,0.001819469,,,,,,,0.061010041,0.072986698,0.08776727,0.14288493,,,,,,,0.447721111,0.538287673,0.66175858,1.158168755,,,,,,,1203.517013,1202.949818,1211.114174,1236.708631,,,,,,,0.002232167,0.002323664,0.002548177,0.003394463,,,,,,,0.023648933,0.023645217,0.023657693,0.023689303,,,,,,,0.75942594,1.01549797,1.048333192,1.121073909,,,,,,,0.002221928,0.003058291,0.003091031,0.003163397,,,,,,,0.110673116,0.116443617,0.116925689,0.118072676,,,,,,,0.02666815,0.032036384,0.032280514,0.032830933,,,,,,,0.01035192,0.01034704,0.010417265,0.010637413,,,,,,,0.089004546,0.10007631,0.114074205,0.166063971,,,,,,,0.001343679,0.001850546,0.001870748,0.001916159,,,,,,,0.056474592,0.066624643,0.075492229,0.108350029,,,,,,,0.483429983,0.582314621,0.720754848,1.278102548,,,,,,,1256.671356,1255.816298,1263.381777,1287.422554,,,,,,,0.002494708,0.00259725,0.002848911,0.003798756,,,,,,,0.024125341,0.024122039,0.02413312,0.02416121,,,,,,,0.761524602,1.01903769,1.054125598,1.133825227,,,,,,,0.002336171,0.003217429,0.003252553,0.003331506,,,,,,,0.129843849,0.135907967,0.136474523,0.137840375,,,,,,,0.029717898,0.035372294,0.035640277,0.036254767,,,,,,,0.010809122,0.010801767,0.010866839,0.011073624,,,,,,,0.086006446,0.095375254,0.103874381,0.135177805,,,,,,,0.001299969,0.001789594,0.001808779,0.001851295,,,,,,,0.055883865,0.066202542,0.076411506,0.114328211,,,,,,,0.457693471,0.550435663,0.677301024,1.187524104,,,,,,,1228.555079,1227.680766,1235.302391,1259.234432,,,,,,,0.002318391,0.002412431,0.002642994,0.003512499,,,,,,,0.023813118,0.02380953,0.023821529,0.023851916,,,,,,,0.752401132,1.006285825,1.039469294,1.113611319,,,,,,,0.002260175,0.003111455,0.003144812,0.003218732,,,,,,,0.117155173,0.123025286,0.123527006,0.124723914,,,,,,,0.027697447,0.033161023,0.03341104,0.033976341,,,,,,,0.010567281,0.010559762,0.010625319,0.010831167,,,,,,,0.084863474,0.094388679,0.104132687,0.140124033,,,,,,,0.001309309,0.001802554,0.001822069,0.001865641,,,,,,,0.05362346,0.063237883,0.071578466,0.102458664,,,,,,,0.465193172,0.559954848,0.691407005,1.220257202,,,,,,,1248.984226,1247.918637,1255.248955,1278.503859,,,,,,,0.002351798,0.002449188,0.00268821,0.003589691,,,,,,,0.023850973,0.02384746,0.023859261,0.023889154,,,,,,,0.747475134,0.999843238,1.033596537,1.109797336,,,,,,,0.002276413,0.003133987,0.003167918,0.003243673,,,,,,,0.119362286,0.125271439,0.125794005,0.127046514,,,,,,,0.028064855,0.033568281,0.033824116,0.034406615,,,,,,,0.010742999,0.010733833,0.010796885,0.010996911,,,,,,,0.083258731,0.092125189,0.100129231,0.129577141,,,,,,,0.001321128,0.001818552,0.001838088,0.001881573,,,,,,,0.058141839,0.068996192,0.080212613,0.121910478,,,,,,,0.466264795,0.561073525,0.691919724,1.218231865,,,,,,,1240.019217,1239.311863,1247.054914,1271.409271,,,,,,,0.002381638,0.002478667,0.002716414,0.003613152,,,,,,,0.023897228,0.023893748,0.023905441,0.023935047,,,,,,,0.811949814,1.08620631,1.121101265,1.19790585,,,,,,,0.002296962,0.003161802,0.003195768,0.003271373,,,,,,,0.122033199,0.127994084,0.128513802,0.129757234,,,,,,,0.028514854,0.034065123,0.03432079,0.034901292,,,,,,,0.010665888,0.010659805,0.010726405,0.010935887,,,,,,,0.087220648,0.097247017,0.107929312,0.14744102,,,,,,,0.001334939,0.001838073,0.001858261,0.001903847,,,,,,,0.054945895,0.064777893,0.073214281,0.104443615,,,,,,,0.48112793,0.57992211,0.719766546,1.282721565,,,,,,,1228.907445,1228.432232,1236.261091,1260.681431,,,,,,,0.002444697,0.002548247,0.002802647,0.003762452,,,,,,,0.023986721,0.023983356,0.023994668,0.024023351,,,,,,,0.798198815,1.068140212,1.104134441,1.185043907,,,,,,,0.002320975,0.003195742,0.003230841,0.003310099,,,,,,,0.125948768,0.131968129,0.132532536,0.133895341,,,,,,,0.029140862,0.034753587,0.035021175,0.035637017,,,,,,,0.010570311,0.010566224,0.010633564,0.010843613,,,,,,,0.083859167,0.09294335,0.101047556,0.130845635 +Heavy duty short haul truck,B20,2040,,,,,,,,0.001316428,0.001815405,0.001835419,,,,,,,,0.063762924,0.0758682,0.091235689,,,,,,,,0.469445025,0.561765379,0.694417256,,,,,,,,1211.414742,1213.801034,1222.557837,,,,,,,,0.002352632,0.002444618,0.002683892,,,,,,,,0.023856775,0.023859705,0.023872288,,,,,,,,0.788620176,1.056883443,1.091315043,,,,,,,,0.002288791,0.003156331,0.003191128,,,,,,,,0.119634067,0.125770223,0.126324444,,,,,,,,0.028169686,0.033757942,0.034022689,,,,,,,,0.010419851,0.010440376,0.010515696,,,,,,,,0.091749435,0.103059862,0.11762287,,,,,,,,0.001320421,0.001820504,0.001840301,,,,,,,,0.061503905,0.072988642,0.08671367,,,,,,,,0.464681307,0.555633756,0.684573159,,,,,,,,1227.459647,1229.657828,1238.103747,,,,,,,,0.002350699,0.002440081,0.002672442,,,,,,,,0.023855385,0.023858324,0.02387097,,,,,,,,0.788581943,1.056704032,1.090530637,,,,,,,,0.002295733,0.003165198,0.003199619,,,,,,,,0.120172613,0.126318938,0.126856512,,,,,,,,0.0282757,0.033875912,0.034136475,,,,,,,,0.010557858,0.010576766,0.010649415,,,,,,,,0.090119691,0.100849782,0.11388208,,,,,,,,0.001360605,0.001877074,0.001897914,,,,,,,,0.067386751,0.080156345,0.096196991,,,,,,,,0.491263459,0.588233271,0.728687112,,,,,,,,1242.296998,1244.64066,1253.437169,,,,,,,,0.002531616,0.002628938,0.002882131,,,,,,,,0.024201355,0.024204072,0.024215732,,,,,,,,0.803386144,1.077091889,1.112954483,,,,,,,,0.002365599,0.003263551,0.003299784,,,,,,,,0.132981732,0.139340777,0.139949657,,,,,,,,0.03027863,0.036063741,0.036343321,,,,,,,,0.010685481,0.01070564,0.010781301,,,,,,,,0.095820703,0.107746668,0.122936767,,,,,,,,0.0012852,0.001771899,0.001791118,,,,,,,,0.06107062,0.072636538,0.087229542,,,,,,,,0.449851559,0.537550098,0.660533933,,,,,,,,1210.170522,1212.307248,1220.771748,,,,,,,,0.002232846,0.002318136,0.002539893,,,,,,,,0.023665074,0.023668174,0.0236815,,,,,,,,0.764206438,1.023783361,1.056337172,,,,,,,,0.002234498,0.003080691,0.003114106,,,,,,,,0.111088458,0.117065924,0.117569774,,,,,,,,0.026792426,0.032242218,0.032492952,,,,,,,,0.01040915,0.010427527,0.010500334,,,,,,,,0.089334463,0.100138007,0.113975189,,,,,,,,0.001351254,0.001864043,0.001884662,,,,,,,,0.056500514,0.066397261,0.075155478,,,,,,,,0.485882231,0.581617095,0.719620332,,,,,,,,1263.177879,1264.97137,1272.841646,,,,,,,,0.002495396,0.002591023,0.002839779,,,,,,,,0.024139676,0.024142421,0.024154264,,,,,,,,0.766107729,1.026905057,1.061662583,,,,,,,,0.00234934,0.003240895,0.003276744,,,,,,,,0.130351258,0.136662639,0.13725636,,,,,,,,0.029857072,0.03560068,0.035876223,,,,,,,,0.010865086,0.010880512,0.010948207,,,,,,,,0.086304073,0.095550816,0.103962157,,,,,,,,0.001307291,0.001802641,0.001822221,,,,,,,,0.055914598,0.065941643,0.076020371,,,,,,,,0.459885512,0.549688587,0.676076638,,,,,,,,1235.200991,1237.03919,1244.966629,,,,,,,,0.002318918,0.002406528,0.002634291,,,,,,,,0.023828611,0.023831592,0.023844406,,,,,,,,0.757065184,1.014345867,1.047232929,,,,,,,,0.002272906,0.00313414,0.003168183,,,,,,,,0.117591413,0.123677822,0.124202517,,,,,,,,0.027825233,0.033372226,0.033629063,,,,,,,,0.010624445,0.010640258,0.010708443,,,,,,,,0.085167395,0.094535895,0.104172585,,,,,,,,0.001316696,0.001815716,0.001835632,,,,,,,,0.053645501,0.063019329,0.071253431,,,,,,,,0.467488789,0.559226208,0.690206661,,,,,,,,1255.600265,1257.234934,1264.87229,,,,,,,,0.002352507,0.002443316,0.002679484,,,,,,,,0.023866241,0.023869161,0.023881772,,,,,,,,0.752052771,1.007727218,1.041166856,,,,,,,,0.002289257,0.003156871,0.003191498,,,,,,,,0.119821201,0.125956327,0.126503185,,,,,,,,0.028196136,0.033784673,0.034047543,,,,,,,,0.010799909,0.010813967,0.010879659,,,,,,,,0.08355532,0.092312695,0.100231578,,,,,,,,0.001328533,0.00183174,0.001851674,,,,,,,,0.058177465,0.068712894,0.079786968,,,,,,,,0.468519485,0.560293652,0.690650536,,,,,,,,1246.527064,1248.468541,1256.509074,,,,,,,,0.002382076,0.002472427,0.002707286,,,,,,,,0.023912348,0.02391525,0.023927734,,,,,,,,0.816897602,1.094760451,1.129348541,,,,,,,,0.002309837,0.003184732,0.003219389,,,,,,,,0.122488284,0.128673596,0.12921725,,,,,,,,0.028645815,0.034281077,0.034543708,,,,,,,,0.010721865,0.010738566,0.010807724,,,,,,,,0.087526216,0.097369205,0.107932808,,,,,,,,0.001342478,0.001851504,0.001872102,,,,,,,,0.054972084,0.064563833,0.07289498,,,,,,,,0.483607928,0.57921952,0.718606833,,,,,,,,1235.245302,1237.347475,1245.471162,,,,,,,,0.002445611,0.002542254,0.002793702,,,,,,,,0.024001362,0.024004168,0.024016241,,,,,,,,0.80299558,1.076388743,1.112049499,,,,,,,,0.002334082,0.003219094,0.003254905,,,,,,,,0.126453131,0.132718336,0.13330953,,,,,,,,0.029279329,0.034980805,0.035255836,,,,,,,,0.010624828,0.010642907,0.01071278,,,,,,,,0.084150364,0.093121812,0.101141711 +Heavy duty short haul truck,B20,2045,,,,,,,,,0.001321407,0.001819851,,,,,,,,,0.063723656,0.075793305,,,,,,,,,0.469663433,0.561852829,,,,,,,,,1214.45702,1216.826406,,,,,,,,,0.002351608,0.002443364,,,,,,,,,0.02386404,0.023866936,,,,,,,,,0.7916155,1.059729097,,,,,,,,,0.002297447,0.003164062,,,,,,,,,0.119874053,0.126003009,,,,,,,,,0.028248999,0.033831213,,,,,,,,,0.010446018,0.010466399,,,,,,,,,0.091839954,0.103116717,,,,,,,,,0.001325395,0.001824931,,,,,,,,,0.061465929,0.072915908,,,,,,,,,0.464877501,0.555693835,,,,,,,,,1230.52543,1232.706397,,,,,,,,,0.002349557,0.00243871,,,,,,,,,0.023862688,0.02386559,,,,,,,,,0.79157065,1.059536978,,,,,,,,,0.002304381,0.003172896,,,,,,,,,0.12040446,0.126543426,,,,,,,,,0.028353939,0.033947946,,,,,,,,,0.010584229,0.010602988,,,,,,,,,0.090212639,0.100909849,,,,,,,,,0.001365733,0.001881662,,,,,,,,,0.067347776,0.080080651,,,,,,,,,0.491507666,0.588348528,,,,,,,,,1245.317806,1247.644984,,,,,,,,,0.002530457,0.002627551,,,,,,,,,0.024208096,0.024210778,,,,,,,,,0.806371051,1.079914863,,,,,,,,,0.002374515,0.003271527,,,,,,,,,0.13324925,0.139600914,,,,,,,,,0.030362838,0.036141806,,,,,,,,,0.010711464,0.010731482,,,,,,,,,0.09591195,0.107803246,,,,,,,,,0.001290071,0.001776241,,,,,,,,,0.061030107,0.072561022,,,,,,,,,0.450041542,0.537605694,,,,,,,,,1213.317479,1215.436326,,,,,,,,,0.002231847,0.002316914,,,,,,,,,0.023672765,0.023675833,,,,,,,,,0.767174722,1.026617187,,,,,,,,,0.002242967,0.00308824,,,,,,,,,0.111303645,0.117274037,,,,,,,,,0.026867585,0.032311371,,,,,,,,,0.010436217,0.010454442,,,,,,,,,0.089426633,0.100197059,,,,,,,,,0.001356346,0.001868596,,,,,,,,,0.056479503,0.066346312,,,,,,,,,0.48611738,0.581722297,,,,,,,,,1266.257722,1268.034929,,,,,,,,,0.002494241,0.002589641,,,,,,,,,0.024146504,0.024149228,,,,,,,,,0.768962652,1.029607835,,,,,,,,,0.002358194,0.003248812,,,,,,,,,0.130611077,0.136915183,,,,,,,,,0.029939974,0.035677456,,,,,,,,,0.010891577,0.010906863,,,,,,,,,0.086414387,0.095632745,,,,,,,,,0.001312228,0.00180704,,,,,,,,,0.0558871,0.065883276,,,,,,,,,0.460081173,0.549749412,,,,,,,,,1238.347353,1240.168334,,,,,,,,,0.002317812,0.002405198,,,,,,,,,0.02383601,0.023838963,,,,,,,,,0.759965885,1.017106617,,,,,,,,,0.002281489,0.003141788,,,,,,,,,0.117816887,0.123896123,,,,,,,,,0.02790231,0.033443205,,,,,,,,,0.01065151,0.010667172,,,,,,,,,0.085272548,0.094611752,,,,,,,,,0.001321669,0.001820153,,,,,,,,,0.053624942,0.062969877,,,,,,,,,0.467699213,0.559303983,,,,,,,,,1258.732073,1260.349628,,,,,,,,,0.002351436,0.002442018,,,,,,,,,0.023873505,0.023876412,,,,,,,,,0.754901201,1.010431016,,,,,,,,,0.002297904,0.003164587,,,,,,,,,0.120057456,0.126185429,,,,,,,,,0.028274927,0.033857392,,,,,,,,,0.010826846,0.010840756,,,,,,,,,0.083667245,0.092397185,,,,,,,,,0.00133353,0.001836186,,,,,,,,,0.05814672,0.068649824,,,,,,,,,0.468715591,0.560353093,,,,,,,,,1249.60645,1251.530414,,,,,,,,,0.002380883,0.002471003,,,,,,,,,0.023919556,0.023922422,,,,,,,,,0.819988249,1.097687926,,,,,,,,,0.002318524,0.003192461,,,,,,,,,0.122722957,0.128900836,,,,,,,,,0.028724628,0.034353631,,,,,,,,,0.010748352,0.010764902,,,,,,,,,0.087626949,0.097439295,,,,,,,,,0.001347544,0.001856035,,,,,,,,,0.054953427,0.064516151,,,,,,,,,0.483843925,0.579326716,,,,,,,,,1238.24445,1240.331511,,,,,,,,,0.002444547,0.002540958,,,,,,,,,0.024008329,0.024011116,,,,,,,,,0.805988636,1.079219365,,,,,,,,,0.00234289,0.003226971,,,,,,,,,0.126711383,0.132969337,,,,,,,,,0.029361783,0.035057178,,,,,,,,,0.010650625,0.010668576,,,,,,,,,0.084259669,0.093203625 +Heavy duty short haul truck,B20,2050,,,,,,,,,,0.001325545,,,,,,,,,,0.063643425,,,,,,,,,,0.469605705,,,,,,,,,,1217.851238,,,,,,,,,,0.002350127,,,,,,,,,,0.023872154,,,,,,,,,,0.794208858,,,,,,,,,,0.002304642,,,,,,,,,,0.120124871,,,,,,,,,,0.028321695,,,,,,,,,,0.010475214,,,,,,,,,,0.091907214,,,,,,,,,,0.001329519,,,,,,,,,,0.061389354,,,,,,,,,,0.464799899,,,,,,,,,,1233.94612,,,,,,,,,,0.002347954,,,,,,,,,,0.023870832,,,,,,,,,,0.794153888,,,,,,,,,,0.002311552,,,,,,,,,,0.120646031,,,,,,,,,,0.028425328,,,,,,,,,,0.01061365,,,,,,,,,,0.090284693,,,,,,,,,,0.001370001,,,,,,,,,,0.067266077,,,,,,,,,,0.491464058,,,,,,,,,,1248.688784,,,,,,,,,,0.002528806,,,,,,,,,,0.024215613,,,,,,,,,,0.808947345,,,,,,,,,,0.002381935,,,,,,,,,,0.133530419,,,,,,,,,,0.030440593,,,,,,,,,,0.010740459,,,,,,,,,,0.095978428,,,,,,,,,,0.001294114,,,,,,,,,,0.060950042,,,,,,,,,,0.449968001,,,,,,,,,,1216.828919,,,,,,,,,,0.002230419,,,,,,,,,,0.023681356,,,,,,,,,,0.769753245,,,,,,,,,,0.002249996,,,,,,,,,,0.111527022,,,,,,,,,,0.026935903,,,,,,,,,,0.01046642,,,,,,,,,,0.089497202,,,,,,,,,,0.001360583,,,,,,,,,,0.05642828,,,,,,,,,,0.486068086,,,,,,,,,,1269.697082,,,,,,,,,,0.0024926,,,,,,,,,,0.02415414,,,,,,,,,,0.77142757,,,,,,,,,,0.002365561,,,,,,,,,,0.130883838,,,,,,,,,,0.030016371,,,,,,,,,,0.010921158,,,,,,,,,,0.086511882,,,,,,,,,,0.001316324,,,,,,,,,,0.055827507,,,,,,,,,,0.460007365,,,,,,,,,,1241.859093,,,,,,,,,,0.002316254,,,,,,,,,,0.023844262,,,,,,,,,,0.762479528,,,,,,,,,,0.00228861,,,,,,,,,,0.118051505,,,,,,,,,,0.027972552,,,,,,,,,,0.010681714,,,,,,,,,,0.085363133,,,,,,,,,,0.0013258,,,,,,,,,,0.053575555,,,,,,,,,,0.467634747,,,,,,,,,,1262.22884,,,,,,,,,,0.002349907,,,,,,,,,,0.023881626,,,,,,,,,,0.757364575,,,,,,,,,,0.002305086,,,,,,,,,,0.12030413,,,,,,,,,,0.028347023,,,,,,,,,,0.01085692,,,,,,,,,,0.083767737,,,,,,,,,,0.001337672,,,,,,,,,,0.058081804,,,,,,,,,,0.468635255,,,,,,,,,,1253.042647,,,,,,,,,,0.002379218,,,,,,,,,,0.023927596,,,,,,,,,,0.822659198,,,,,,,,,,0.002325726,,,,,,,,,,0.122967578,,,,,,,,,,0.028796568,,,,,,,,,,0.010777908,,,,,,,,,,0.08771103,,,,,,,,,,0.001351759,,,,,,,,,,0.054905742,,,,,,,,,,0.483794926,,,,,,,,,,1241.593298,,,,,,,,,,0.002443006,,,,,,,,,,0.024016128,,,,,,,,,,0.808572062,,,,,,,,,,0.002350218,,,,,,,,,,0.126982497,,,,,,,,,,0.029437773,,,,,,,,,,0.010679429,,,,,,,,,,0.084356846 +Heavy duty short haul truck,E0,1990,0.096402677,,,,,,,,,,0.438142015,,,,,,,,,,104.0055553,,,,,,,,,,1045.61859,,,,,,,,,,0.094191028,,,,,,,,,,0.038672831,,,,,,,,,,9.499770858,,,,,,,,,,0.216122157,,,,,,,,,,0.525781199,,,,,,,,,,0.416844621,,,,,,,,,,0.046600953,,,,,,,,,,5.896431708,,,,,,,,,,0.082365723,,,,,,,,,,0.428115409,,,,,,,,,,103.7096165,,,,,,,,,,1048.88442,,,,,,,,,,0.092680619,,,,,,,,,,0.038657787,,,,,,,,,,9.501407205,,,,,,,,,,0.189718309,,,,,,,,,,0.468680704,,,,,,,,,,0.365785531,,,,,,,,,,0.051891664,,,,,,,,,,5.975129005,,,,,,,,,,0.095515009,,,,,,,,,,0.482726733,,,,,,,,,,114.8869997,,,,,,,,,,1070.782742,,,,,,,,,,0.099003617,,,,,,,,,,0.039338508,,,,,,,,,,9.92163757,,,,,,,,,,0.208664006,,,,,,,,,,0.522537344,,,,,,,,,,0.408416472,,,,,,,,,,0.075048678,,,,,,,,,,6.581435891,,,,,,,,,,0.099801564,,,,,,,,,,0.432220547,,,,,,,,,,106.0586781,,,,,,,,,,1028.007249,,,,,,,,,,0.088624126,,,,,,,,,,0.038277061,,,,,,,,,,9.502916791,,,,,,,,,,0.220967977,,,,,,,,,,0.535925853,,,,,,,,,,0.429028053,,,,,,,,,,0.067118693,,,,,,,,,,5.893766953,,,,,,,,,,0.047760864,,,,,,,,,,0.415272868,,,,,,,,,,102.6622577,,,,,,,,,,1065.512899,,,,,,,,,,0.09760364,,,,,,,,,,0.039218375,,,,,,,,,,9.216748655,,,,,,,,,,0.116322346,,,,,,,,,,0.316060771,,,,,,,,,,0.226760837,,,,,,,,,,0.06164189,,,,,,,,,,6.582388026,,,,,,,,,,0.05461192,,,,,,,,,,0.405052005,,,,,,,,,,102.2646572,,,,,,,,,,1036.806729,,,,,,,,,,0.090919634,,,,,,,,,,0.038599154,,,,,,,,,,9.271748249,,,,,,,,,,0.13239963,,,,,,,,,,0.344377791,,,,,,,,,,0.2567675,,,,,,,,,,0.066806314,,,,,,,,,,6.196565594,,,,,,,,,,0.044780128,,,,,,,,,,0.392275023,,,,,,,,,,99.99240709,,,,,,,,,,1052.536557,,,,,,,,,,0.093423241,,,,,,,,,,0.038685083,,,,,,,,,,9.114977222,,,,,,,,,,0.112573688,,,,,,,,,,0.301261496,,,,,,,,,,0.217986298,,,,,,,,,,0.061540518,,,,,,,,,,6.285387737,,,,,,,,,,0.064615312,,,,,,,,,,0.419472227,,,,,,,,,,103.7427765,,,,,,,,,,1054.875259,,,,,,,,,,0.093689488,,,,,,,,,,0.038768046,,,,,,,,,,9.985013884,,,,,,,,,,0.153424953,,,,,,,,,,0.392282751,,,,,,,,,,0.297170326,,,,,,,,,,0.060574998,,,,,,,,,,6.285277073,,,,,,,,,,0.046096012,,,,,,,,,,0.400690895,,,,,,,,,,97.96693359,,,,,,,,,,1058.093499,,,,,,,,,,0.098212515,,,,,,,,,,0.038963349,,,,,,,,,,9.218379349,,,,,,,,,,0.116078279,,,,,,,,,,0.309103496,,,,,,,,,,0.22256246,,,,,,,,,,0.029261157,,,,,,,,,,6.274210303,,,,,,,,, +Heavy duty short haul truck,E0,1995,0.021986602,0.07264171,,,,,,,,,0.212253435,0.388155924,,,,,,,,,97.12442511,111.0194519,,,,,,,,,1013.957645,1040.417011,,,,,,,,,0.065870896,0.11295621,,,,,,,,,0.038638664,0.038641829,,,,,,,,,6.097119756,7.859720777,,,,,,,,,0.064819815,0.154135945,,,,,,,,,0.193776646,0.391313745,,,,,,,,,0.125218819,0.299746109,,,,,,,,,0.045105611,0.022135083,,,,,,,,,3.194403881,5.435588065,,,,,,,,,0.019092305,0.061812555,,,,,,,,,0.210894087,0.378782718,,,,,,,,,98.18267673,110.2685582,,,,,,,,,1021.736296,1045.029192,,,,,,,,,0.065098362,0.111153879,,,,,,,,,0.038622749,0.038626204,,,,,,,,,6.120127557,7.803469998,,,,,,,,,0.05729403,0.134744341,,,,,,,,,0.178982606,0.349043097,,,,,,,,,0.111605496,0.261822932,,,,,,,,,0.050486027,0.022404658,,,,,,,,,3.26123506,5.50485503,,,,,,,,,0.021025163,0.071810222,,,,,,,,,0.236510243,0.423639448,,,,,,,,,107.4652142,118.6507675,,,,,,,,,1040.556597,1066.967815,,,,,,,,,0.069585942,0.118686195,,,,,,,,,0.039307615,0.039311525,,,,,,,,,6.446874341,7.868470395,,,,,,,,,0.060455471,0.147705958,,,,,,,,,0.193349837,0.386512951,,,,,,,,,0.119568042,0.290189849,,,,,,,,,0.07300311,0.023361826,,,,,,,,,3.617029569,5.960596062,,,,,,,,,0.022065204,0.074600322,,,,,,,,,0.213148315,0.38728904,,,,,,,,,100.2251521,110.9303428,,,,,,,,,1001.798152,1024.912879,,,,,,,,,0.062124514,0.106301463,,,,,,,,,0.038239816,0.038242836,,,,,,,,,6.111394167,7.703828302,,,,,,,,,0.063937646,0.154890713,,,,,,,,,0.189286058,0.39184733,,,,,,,,,0.124280497,0.30327402,,,,,,,,,0.065421127,0.038653604,,,,,,,,,3.296207979,5.454502917,,,,,,,,,0.011307546,0.035332309,,,,,,,,,0.213916237,0.369072012,,,,,,,,,98.79247681,108.9842544,,,,,,,,,1050.753496,1065.995223,,,,,,,,,0.068611965,0.117013908,,,,,,,,,0.039186785,0.039190209,,,,,,,,,5.941415541,7.552197367,,,,,,,,,0.035031723,0.08120163,,,,,,,,,0.138436435,0.238449869,,,,,,,,,0.071934058,0.16016115,,,,,,,,,0.060750214,0.02320379,,,,,,,,,3.598121816,6.127763533,,,,,,,,,0.012782025,0.040232012,,,,,,,,,0.206806461,0.358374663,,,,,,,,,98.65819657,107.1332955,,,,,,,,,1019.818866,1036.225404,,,,,,,,,0.063926389,0.109040339,,,,,,,,,0.038563639,0.038567786,,,,,,,,,5.970286594,7.435925411,,,,,,,,,0.039379562,0.091657527,,,,,,,,,0.141396576,0.254568463,,,,,,,,,0.079244982,0.179143906,,,,,,,,,0.065714078,0.022660882,,,,,,,,,3.422295706,5.735343415,,,,,,,,,0.010987272,0.033129222,,,,,,,,,0.203015748,0.352004278,,,,,,,,,96.87903699,106.8076524,,,,,,,,,1041.247712,1054.147734,,,,,,,,,0.065472814,0.112036693,,,,,,,,,0.038650625,0.038654077,,,,,,,,,5.859312448,7.452693509,,,,,,,,,0.034859678,0.078952599,,,,,,,,,0.132474374,0.227741478,,,,,,,,,0.070753816,0.154809632,,,,,,,,,0.060863984,0.031598544,,,,,,,,,3.455123748,5.892454156,,,,,,,,,0.015216725,0.048189735,,,,,,,,,0.212356172,0.378640722,,,,,,,,,99.59379998,112.6869517,,,,,,,,,1035.047057,1053.364998,,,,,,,,,0.065857983,0.112360315,,,,,,,,,0.038733453,0.038736991,,,,,,,,,6.473921594,8.170426615,,,,,,,,,0.046526784,0.108200678,,,,,,,,,0.158439777,0.293509063,,,,,,,,,0.092452237,0.211709265,,,,,,,,,0.059308692,0.03559525,,,,,,,,,3.472619177,5.899898182,,,,,,,,,0.011667106,0.034575435,,,,,,,,,0.204404414,0.368657831,,,,,,,,,94.18671154,110.7770643,,,,,,,,,1036.1403,1054.705848,,,,,,,,,0.068626204,0.117763809,,,,,,,,,0.038931057,0.038934066,,,,,,,,,5.929256104,7.664816554,,,,,,,,,0.037338665,0.083330905,,,,,,,,,0.139442777,0.2384803,,,,,,,,,0.074690552,0.162065875,,,,,,,,,0.028545982,0.013391536,,,,,,,,,3.37137727,6.0153087,,,,,,,, +Heavy duty short haul truck,E0,2000,0.011994112,0.017613049,0.052853621,,,,,,,,0.035662414,0.042480752,0.227824597,,,,,,,,47.0322144,55.07124898,94.45151378,,,,,,,,1009.002576,1013.852911,1040.236796,,,,,,,,0.089115838,0.112860455,0.176005281,,,,,,,,0.038629011,0.038629215,0.038632746,,,,,,,,4.465354904,4.712238762,6.419156493,,,,,,,,0.0402146,0.055622275,0.115765916,,,,,,,,0.141779892,0.172337981,0.306833071,,,,,,,,0.079412875,0.106501209,0.225538852,,,,,,,,0.044862224,0.021570158,0.019908283,,,,,,,,1.773618129,2.150352904,4.612560843,,,,,,,,0.010463571,0.015295062,0.044955167,,,,,,,,0.035226329,0.04161796,0.22147306,,,,,,,,47.36718019,54.89686253,93.57541542,,,,,,,,1018.071682,1022.445167,1046.046015,,,,,,,,0.088314139,0.111561195,0.173221283,,,,,,,,0.038612798,0.038613192,0.038616849,,,,,,,,4.482473374,4.680083637,6.36356746,,,,,,,,0.035450317,0.048946661,0.100941228,,,,,,,,0.132935299,0.159478355,0.275021125,,,,,,,,0.07106347,0.094600455,0.19687368,,,,,,,,0.050288401,0.021922157,0.020019458,,,,,,,,1.813891812,2.180163729,4.64937976,,,,,,,,0.010910108,0.016163807,0.051446432,,,,,,,,0.039923696,0.04660276,0.248577611,,,,,,,,52.20598294,59.0850469,101.5126434,,,,,,,,1036.387148,1041.374258,1067.907911,,,,,,,,0.094462596,0.119246996,0.184941933,,,,,,,,0.039298898,0.0393001,0.039303312,,,,,,,,4.729718259,4.702943165,6.433292531,,,,,,,,0.035710641,0.049499557,0.107975339,,,,,,,,0.140554017,0.167416579,0.299073244,,,,,,,,0.073086055,0.096911147,0.21344184,,,,,,,,0.072728918,0.022815588,0.020437857,,,,,,,,2.054143922,2.416706806,5.063741999,,,,,,,,0.011627492,0.017179161,0.0537235,,,,,,,,0.035583519,0.042357613,0.224273408,,,,,,,,48.32595711,54.73560587,92.30482694,,,,,,,,998.6811509,1003.042863,1026.739451,,,,,,,,0.084166072,0.106456026,0.165655792,,,,,,,,0.038229285,0.03822906,0.038232923,,,,,,,,4.512146876,4.65296761,6.146191683,,,,,,,,0.03834964,0.053122377,0.114276949,,,,,,,,0.134852346,0.164324211,0.30106691,,,,,,,,0.07629815,0.102421827,0.223446456,,,,,,,,0.065221166,0.037910583,0.019649963,,,,,,,,1.869271716,2.225865141,4.568358586,,,,,,,,0.006114362,0.008868011,0.025444806,,,,,,,,0.035436238,0.041405194,0.215397625,,,,,,,,47.79590054,55.11507964,93.19629573,,,,,,,,1050.82032,1054.003914,1070.643352,,,,,,,,0.093146134,0.117578576,0.182339776,,,,,,,,0.039177867,0.039178556,0.039181822,,,,,,,,4.345227891,4.50198055,6.192282899,,,,,,,,0.021033091,0.028932293,0.059629172,,,,,,,,0.109002123,0.12428425,0.191629393,,,,,,,,0.046111797,0.059692038,0.119331105,,,,,,,,0.060742471,0.022944773,0.020490208,,,,,,,,2.003213259,2.387986666,5.138069,,,,,,,,0.006882973,0.010000042,0.028962942,,,,,,,,0.03409338,0.039681405,0.20889128,,,,,,,,47.50132574,53.89079208,91.09331654,,,,,,,,1019.125834,1022.487764,1040.051655,,,,,,,,0.086781592,0.109558837,0.169930859,,,,,,,,0.038553601,0.038554659,0.038558334,,,,,,,,4.394468523,4.455918941,6.070548747,,,,,,,,0.023587061,0.03246577,0.067286803,,,,,,,,0.108156491,0.125236184,0.201786139,,,,,,,,0.050025809,0.06518933,0.132968629,,,,,,,,0.065669541,0.022366707,0.019904737,,,,,,,,1.908843014,2.253234134,4.813255584,,,,,,,,0.006178422,0.008893423,0.024171356,,,,,,,,0.033384623,0.039312299,0.203610521,,,,,,,,46.56179069,53.60213871,89.93029713,,,,,,,,1042.375133,1045.192324,1059.859212,,,,,,,,0.088697848,0.112190197,0.174583089,,,,,,,,0.038640858,0.038641325,0.038644918,,,,,,,,4.298181109,4.465407633,6.028781206,,,,,,,,0.021658838,0.029742128,0.059131032,,,,,,,,0.104801944,0.120570816,0.184291348,,,,,,,,0.046465771,0.060471283,0.116900943,,,,,,,,0.060925169,0.031323483,0.020283822,,,,,,,,1.918559539,2.280500827,4.897144457,,,,,,,,0.008364887,0.012167714,0.035005279,,,,,,,,0.035271858,0.042035937,0.218074303,,,,,,,,47.99808721,56.18862754,94.23524846,,,,,,,,1033.51462,1037.132018,1056.385523,,,,,,,,0.089390702,0.112866926,0.175103699,,,,,,,,0.0387237,0.038724218,0.038727808,,,,,,,,4.753656661,4.935879261,6.519039773,,,,,,,,0.028643996,0.039473329,0.080736504,,,,,,,,0.120723173,0.142065472,0.232643355,,,,,,,,0.059284908,0.078222491,0.158412184,,,,,,,,0.059183471,0.035067252,0.018135335,,,,,,,,1.95028422,2.360703873,4.899025889,,,,,,,,0.006814819,0.009776934,0.025610784,,,,,,,,0.034086039,0.041679382,0.216433901,,,,,,,,46.07136038,56.66582372,95.67533083,,,,,,,,1033.371918,1036.880683,1055.899774,,,,,,,,0.092799865,0.117574064,0.183486711,,,,,,,,0.038921961,0.038922176,0.038925501,,,,,,,,4.320798408,4.60361568,6.255900906,,,,,,,,0.024121748,0.033119945,0.063902496,,,,,,,,0.111984717,0.129619835,0.196216657,,,,,,,,0.050608401,0.066268231,0.12524292,,,,,,,,0.028436895,0.013131801,0.009629974,,,,,,,,1.85080899,2.318139032,5.075148618,,,,,,, +Heavy duty short haul truck,E0,2005,0.004179229,0.006373337,0.008977295,0.037561617,,,,,,,0.020707698,0.019654726,0.025862309,0.137069167,,,,,,,16.58182307,29.24542709,39.88587717,83.24126775,,,,,,,1008.074331,1009.749925,1016.192888,1046.250366,,,,,,,0.026816628,0.02967386,0.03957654,0.165309789,,,,,,,0.038629066,0.038629261,0.038629224,0.03863025,,,,,,,3.408817076,3.867209688,4.219796705,4.588541719,,,,,,,0.014550907,0.021553226,0.02778291,0.082802814,,,,,,,0.093587264,0.107327157,0.120375027,0.237790299,,,,,,,0.034164141,0.046296842,0.057811986,0.163007123,,,,,,,0.044816302,0.021482922,0.019448123,0.006674457,,,,,,,0.763502658,1.22129725,1.598461042,4.056519681,,,,,,,0.00378223,0.005623365,0.007876785,0.032061178,,,,,,,0.020183899,0.01895148,0.024781699,0.131616962,,,,,,,16.60851813,29.0588979,39.38618831,81.2773739,,,,,,,1017.43478,1018.878724,1024.693398,1052.066445,,,,,,,0.026620634,0.029419043,0.0391174,0.162521163,,,,,,,0.038612888,0.038613259,0.038613256,0.038614316,,,,,,,3.417072724,3.83345989,4.17676024,4.527684435,,,,,,,0.013256715,0.019284984,0.024892352,0.072535551,,,,,,,0.091742624,0.103490161,0.11515702,0.216043845,,,,,,,0.031970504,0.042340091,0.052633133,0.14322558,,,,,,,0.0502528,0.021845925,0.019610807,0.006711559,,,,,,,0.774374551,1.223650808,1.587501441,4.022527135,,,,,,,0.004158376,0.005021482,0.007023421,0.036133244,,,,,,,0.022604672,0.020082504,0.026269913,0.144864461,,,,,,,18.36808295,31.75712475,43.64314644,87.21788777,,,,,,,1035.596276,1037.312258,1043.85254,1074.526217,,,,,,,0.028487301,0.0314714,0.041811241,0.173459604,,,,,,,0.039298968,0.039300154,0.039300142,0.039301076,,,,,,,3.58921456,3.865899388,4.21499639,4.617812921,,,,,,,0.014010738,0.017237162,0.022226297,0.076137543,,,,,,,0.100181863,0.106176801,0.116586622,0.232281393,,,,,,,0.034410577,0.039687463,0.048865207,0.152712523,,,,,,,0.072677739,0.022728678,0.019977479,0.00685484,,,,,,,0.867926615,1.299789875,1.67961418,4.310828673,,,,,,,0.004288723,0.006111504,0.008669284,0.037930755,,,,,,,0.019887858,0.019652044,0.024045192,0.133269857,,,,,,,16.93852762,30.6805091,38.00687716,80.04078536,,,,,,,998.1521037,999.5149678,1005.39298,1033.201865,,,,,,,0.025348539,0.028031021,0.037329043,0.155509279,,,,,,,0.038229343,0.038229094,0.038229071,0.038230199,,,,,,,3.419993627,3.941554833,4.077216785,4.391176244,,,,,,,0.014661101,0.020420524,0.026382544,0.08097275,,,,,,,0.089827597,0.101199051,0.113460078,0.230884576,,,,,,,0.034052367,0.04409217,0.054913421,0.160015715,,,,,,,0.065187425,0.037788904,0.019241432,0.006591215,,,,,,,0.797106905,1.258802229,1.535711789,3.940455729,,,,,,,0.002523198,0.003811306,0.005359909,0.018531369,,,,,,,0.019727588,0.018589871,0.024002428,0.126052757,,,,,,,17.26399576,29.42995914,39.32087929,80.39986564,,,,,,,1050.972736,1051.800091,1056.080042,1076.986653,,,,,,,0.028091061,0.031032569,0.04122617,0.171016858,,,,,,,0.039177924,0.039178568,0.039178566,0.039179542,,,,,,,3.298614533,3.627284658,3.965877703,4.4148619,,,,,,,0.008976059,0.013297424,0.017425652,0.044008877,,,,,,,0.088465145,0.096818431,0.105310376,0.160350906,,,,,,,0.025045117,0.032409572,0.039891377,0.09005143,,,,,,,0.06074888,0.022897054,0.02021149,0.006870537,,,,,,,0.852887569,1.336445395,1.703131686,4.324073899,,,,,,,0.002822167,0.003863976,0.005387384,0.020850036,,,,,,,0.018797191,0.017206505,0.02234491,0.121117746,,,,,,,16.85444542,28.75910512,38.66820041,77.51474748,,,,,,,1019.13868,1020.091037,1024.553186,1046.187192,,,,,,,0.026169499,0.028911847,0.038414364,0.15939144,,,,,,,0.038553669,0.038554694,0.038554671,0.038555757,,,,,,,3.342993381,3.633069379,3.957609277,4.309341968,,,,,,,0.009964887,0.013580005,0.017685909,0.048979083,,,,,,,0.083959338,0.090850006,0.09928808,0.164564557,,,,,,,0.026029306,0.032102193,0.039539689,0.098599422,,,,,,,0.065670557,0.022315114,0.019608125,0.006674054,,,,,,,0.807746614,1.224495665,1.562728668,4.032375529,,,,,,,0.002539561,0.003730809,0.005179095,0.017547515,,,,,,,0.018539604,0.018339829,0.022923421,0.119589001,,,,,,,16.79530305,29.8021041,38.39870683,78.75092615,,,,,,,1042.765603,1043.385605,1047.228873,1066.318991,,,,,,,0.02671342,0.029540866,0.039339739,0.16388705,,,,,,,0.038640978,0.038641406,0.038641383,0.038642402,,,,,,,3.267902147,3.694290583,3.925948786,4.311369034,,,,,,,0.009182676,0.013294289,0.017361968,0.043683857,,,,,,,0.0831366,0.091154495,0.099347817,0.153386582,,,,,,,0.024668276,0.031738722,0.03895927,0.088098179,,,,,,,0.060947037,0.031268393,0.020042097,0.006802484,,,,,,,0.821742511,1.303656753,1.62003328,4.134127503,,,,,,,0.003243272,0.004503002,0.00626356,0.025082342,,,,,,,0.019490403,0.019320163,0.023649342,0.130289917,,,,,,,17.18659765,31.72828381,39.86243529,82.78500466,,,,,,,1033.339489,1034.404253,1039.244647,1062.47555,,,,,,,0.026953813,0.029780036,0.039574459,0.164252896,,,,,,,0.038723733,0.038724245,0.038724221,0.038725266,,,,,,,3.581952286,3.952693854,4.09280106,4.683930466,,,,,,,0.01146027,0.015751557,0.020398288,0.058469077,,,,,,,0.089557958,0.097975754,0.107351223,0.187102287,,,,,,,0.028997971,0.0364213,0.044686663,0.116614624,,,,,,,0.059165578,0.034977969,0.017828057,0.006678242,,,,,,,0.825122796,1.317187113,1.601997096,4.199535886,,,,,,,0.00251137,0.003623687,0.004962695,0.018537941,,,,,,,0.017036062,0.016994108,0.02283901,0.134357312,,,,,,,15.18923636,28.25062297,39.45510773,87.27022211,,,,,,,1032.95375,1034.067798,1038.759803,1060.98785,,,,,,,0.027917616,0.030898563,0.04123013,0.172364075,,,,,,,0.038921981,0.038922165,0.038922182,0.038923134,,,,,,,2.853280412,2.462208321,2.749759478,4.626434188,,,,,,,0.009203298,0.01315137,0.017086163,0.047063359,,,,,,,0.08607255,0.093789061,0.101734848,0.163071932,,,,,,,0.024905637,0.031708476,0.038708405,0.094378218,,,,,,,0.028418897,0.013091959,0.00946075,0.006262295,,,,,,,0.731484348,1.15432628,1.513934173,4.473254801,,,,,, +Heavy duty short haul truck,E0,2010,,0.0020386,0.003497167,0.005643086,0.027863871,,,,,,,0.018455128,0.02005048,0.032228998,0.097974635,,,,,,,11.32190631,23.11617308,30.45814902,77.95629936,,,,,,,1007.438663,1010.144032,1018.683701,1055.026561,,,,,,,0.026089433,0.030546938,0.043767677,0.156890287,,,,,,,0.038629194,0.038629174,0.03862918,0.038629553,,,,,,,2.036326144,2.409373121,1.273364293,3.343964994,,,,,,,0.006154581,0.009884407,0.013800103,0.055809523,,,,,,,0.075770492,0.083132238,0.091394386,0.183251494,,,,,,,0.019217554,0.025997139,0.033498966,0.114616017,,,,,,,0.021433783,0.019332358,0.006498598,0.006730444,,,,,,,0.396678433,0.70329548,0.770242266,3.420474903,,,,,,,0.001906764,0.003231367,0.005151001,0.023912149,,,,,,,0.016884237,0.018528166,0.029350943,0.092110319,,,,,,,11.16237574,22.83595276,29.50937985,75.38083318,,,,,,,1016.849973,1019.226811,1026.962824,1060.277323,,,,,,,0.025908608,0.030274098,0.043221958,0.15412694,,,,,,,0.038613171,0.038613161,0.038613194,0.038613547,,,,,,,2.020000261,2.386935641,1.254788204,3.288084696,,,,,,,0.00599712,0.009581098,0.013288882,0.049546492,,,,,,,0.076107281,0.083092704,0.090792323,0.169725409,,,,,,,0.018964407,0.025414723,0.03242155,0.102104104,,,,,,,0.021802552,0.019506188,0.006551413,0.00676394,,,,,,,0.404651003,0.708708824,0.765474006,3.360133437,,,,,,,0.001695124,0.002870833,0.005358012,0.026798011,,,,,,,0.018569468,0.020208656,0.031750475,0.100572157,,,,,,,12.40903718,25.24991545,31.29666609,80.88866082,,,,,,,1035.011871,1037.709297,1046.399084,1083.674402,,,,,,,0.027728735,0.032383004,0.046187292,0.164464083,,,,,,,0.039300093,0.039300097,0.039300084,0.03930042,,,,,,,2.032970194,2.399208762,1.269021729,3.370639025,,,,,,,0.005333732,0.008517726,0.012918406,0.051560806,,,,,,,0.081302,0.087434894,0.096782113,0.182217864,,,,,,,0.01862769,0.024354951,0.032841761,0.108260773,,,,,,,0.022679391,0.019859904,0.006675404,0.006913199,,,,,,,0.435456782,0.753727892,0.818358259,3.589656448,,,,,,,0.001974641,0.003402593,0.005603853,0.028162093,,,,,,,0.019137097,0.019212913,0.030748828,0.094269565,,,,,,,11.75244123,22.07184737,28.6101931,73.66290329,,,,,,,997.4981978,999.864163,1007.702023,1041.683965,,,,,,,0.024665475,0.028850777,0.04126423,0.147534319,,,,,,,0.038229016,0.038229018,0.038229021,0.038229429,,,,,,,2.07291934,2.330991181,1.226537485,3.195247015,,,,,,,0.005855814,0.009422786,0.013352898,0.054580645,,,,,,,0.071128127,0.078121328,0.086477827,0.177292361,,,,,,,0.018264097,0.024697431,0.032268157,0.112473192,,,,,,,0.037718876,0.019135619,0.006428541,0.006645326,,,,,,,0.430892353,0.692726559,0.757239012,3.290654049,,,,,,,0.001649316,0.002726734,0.003983288,0.014511567,,,,,,,0.014583083,0.01663594,0.025487993,0.084917033,,,,,,,11.05475924,22.81347623,29.09687494,74.0840565,,,,,,,1050.487564,1052.038037,1057.823714,1083.961917,,,,,,,0.027342847,0.031931298,0.04554037,0.162146221,,,,,,,0.03917852,0.039178527,0.039178511,0.039178859,,,,,,,1.900572443,2.247847774,1.189059216,3.216882382,,,,,,,0.005603412,0.008868899,0.011723893,0.032603525,,,,,,,0.080399371,0.086574808,0.092212678,0.137510697,,,,,,,0.018810288,0.024568892,0.029769835,0.069685458,,,,,,,0.022868617,0.020134136,0.006748288,0.006915035,,,,,,,0.464385389,0.791002403,0.835285311,3.549988733,,,,,,,0.001582676,0.002616551,0.004083533,0.015976011,,,,,,,0.013971242,0.015761907,0.024359421,0.0815048,,,,,,,10.9178924,22.41829783,27.89798248,71.06442879,,,,,,,1018.67763,1020.341087,1026.353566,1053.233204,,,,,,,0.025472275,0.029749638,0.042436077,0.151130599,,,,,,,0.038554592,0.03855459,0.038554611,0.038554997,,,,,,,1.907537075,2.255786085,1.181342041,3.127348873,,,,,,,0.005374581,0.008506147,0.011716489,0.035225651,,,,,,,0.073528522,0.079482515,0.085934359,0.136930803,,,,,,,0.017607686,0.023139385,0.029037949,0.074010264,,,,,,,0.022284637,0.019527515,0.006547527,0.006719003,,,,,,,0.430888242,0.72005202,0.770255803,3.310090643,,,,,,,0.00162534,0.002662922,0.003808816,0.013496061,,,,,,,0.014354043,0.015829779,0.024459997,0.081013141,,,,,,,11.29952019,22.25144686,29.10141494,73.511461,,,,,,,1042.277685,1043.589183,1048.823561,1072.959487,,,,,,,0.025994016,0.030404814,0.043486877,0.155481829,,,,,,,0.038641307,0.038641321,0.038641314,0.038641718,,,,,,,1.938152362,2.231722524,1.179021685,3.143125034,,,,,,,0.005670068,0.008947632,0.011746975,0.032071982,,,,,,,0.074936539,0.081096674,0.08656506,0.130156239,,,,,,,0.018233139,0.023951257,0.028982803,0.06740213,,,,,,,0.031234663,0.019972445,0.006690872,0.006844845,,,,,,,0.451712922,0.748092051,0.79485881,3.395573198,,,,,,,0.001686747,0.002810106,0.004498954,0.018911642,,,,,,,0.016293666,0.017133278,0.027635357,0.089523957,,,,,,,12.19349349,23.07183039,30.2129229,76.88051142,,,,,,,1032.817553,1034.682836,1041.176002,1069.84086,,,,,,,0.026234828,0.030643583,0.043719763,0.155746563,,,,,,,0.038724169,0.038724179,0.038724187,0.038724543,,,,,,,2.075237396,2.325325939,1.314832105,3.410848388,,,,,,,0.00559719,0.008883045,0.012496523,0.041007352,,,,,,,0.076645452,0.08285412,0.090186208,0.151995389,,,,,,,0.01842012,0.024189793,0.030876197,0.085407354,,,,,,,0.034925893,0.017746952,0.0065438,0.006724664,,,,,,,0.453542578,0.726799939,0.805871637,3.462573733,,,,,,,0.001539465,0.002505668,0.003885713,0.014062766,,,,,,,0.013507123,0.016019353,0.02841641,0.092573942,,,,,,,11.1716073,22.69658812,32.16554683,82.09765816,,,,,,,1032.457022,1034.344999,1040.600963,1067.739137,,,,,,,0.027158929,0.031809481,0.045602706,0.163604393,,,,,,,0.038922118,0.038922124,0.038922131,0.038922474,,,,,,,1.251320652,1.485188923,1.270724701,3.395940903,,,,,,,0.005472963,0.008618866,0.012056046,0.033990433,,,,,,,0.077513719,0.083390673,0.09020444,0.136997426,,,,,,,0.018198804,0.023681353,0.029913814,0.071157966,,,,,,,0.013069333,0.009417815,0.006141432,0.006302254,,,,,,,0.393417853,0.653480284,0.831559901,3.70362249,,,,, +Heavy duty short haul truck,E0,2015,,,0.00171727,0.003036581,0.0049031,0.013927154,,,,,,,0.016121521,0.019333818,0.031572528,0.072787809,,,,,,,7.049374373,13.43888457,22.65369697,53.89900628,,,,,,,1005.440855,1008.255126,1015.191417,1044.684234,,,,,,,0.007125952,0.008496589,0.011578714,0.052741959,,,,,,,0.038641011,0.038642229,0.03864308,0.03863965,,,,,,,0.892541658,0.510290494,0.584014933,1.316940126,,,,,,,0.005444133,0.009076356,0.013066847,0.027094918,,,,,,,0.073275869,0.080612783,0.089112572,0.121369483,,,,,,,0.017747223,0.024237596,0.031756653,0.060155051,,,,,,,0.019242349,0.00643207,0.006476319,0.006664466,,,,,,,0.264547767,0.354113505,0.497306069,1.648887935,,,,,,,0.001632965,0.002883778,0.004585595,0.012343481,,,,,,,0.014525164,0.017597774,0.028931926,0.06683706,,,,,,,6.904282144,13.01731131,21.84098379,51.67472183,,,,,,,1014.867638,1017.331048,1023.595298,1050.644591,,,,,,,0.007076406,0.00841875,0.01143725,0.051821981,,,,,,,0.038625118,0.038626347,0.038627169,0.038623734,,,,,,,0.884507551,0.503746656,0.575388356,1.290229931,,,,,,,0.005334972,0.00890053,0.012722802,0.025242233,,,,,,,0.073723355,0.080883681,0.088946889,0.117490002,,,,,,,0.017602697,0.023936862,0.031069743,0.056180793,,,,,,,0.019422758,0.006489968,0.006529932,0.00670249,,,,,,,0.276890176,0.363960165,0.504158076,1.622635769,,,,,,,0.001448569,0.00286818,0.004660364,0.013360131,,,,,,,0.016119263,0.019002697,0.03102189,0.07170388,,,,,,,7.813832997,13.78961253,23.16087627,55.02644874,,,,,,,1033.032354,1035.849429,1042.906722,1073.120475,,,,,,,0.007573498,0.009004635,0.012222805,0.055300042,,,,,,,0.039311077,0.0393122,0.039312961,0.039309802,,,,,,,0.887837986,0.506450591,0.580518842,1.322841713,,,,,,,0.004740954,0.008467795,0.01222847,0.025414758,,,,,,,0.078940507,0.086519342,0.094558791,0.125114457,,,,,,,0.017374938,0.024079321,0.031191158,0.058065755,,,,,,,0.019770401,0.006608105,0.006653126,0.006845872,,,,,,,0.299851374,0.392946234,0.539080608,1.714460427,,,,,,,0.001647437,0.002951589,0.004796234,0.013937118,,,,,,,0.015639474,0.018367438,0.029867414,0.068966424,,,,,,,6.623241025,12.58714003,21.05399468,49.85758469,,,,,,,995.5059704,997.9636893,1004.309863,1031.877561,,,,,,,0.006736952,0.008023889,0.010917809,0.049601128,,,,,,,0.038241361,0.038242623,0.038243507,0.038239949,,,,,,,0.862142492,0.492898331,0.563455077,1.259643787,,,,,,,0.005160899,0.008692835,0.012552846,0.026413324,,,,,,,0.068644258,0.075795872,0.084051926,0.116113297,,,,,,,0.016745032,0.023071495,0.030374933,0.058611347,,,,,,,0.019052212,0.006366415,0.006406901,0.006582767,,,,,,,0.289903304,0.370097581,0.502118368,1.580729817,,,,,,,0.001459906,0.002459522,0.003765598,0.00866765,,,,,,,0.011663398,0.014902673,0.025181738,0.058629921,,,,,,,6.737278062,12.85262871,21.45581065,50.32436654,,,,,,,1048.61113,1050.200846,1054.84322,1076.071297,,,,,,,0.007468101,0.008878994,0.012051647,0.054520887,,,,,,,0.039189654,0.039190778,0.039191585,0.039188365,,,,,,,0.827379892,0.469650301,0.538063741,1.245313964,,,,,,,0.005036131,0.00816611,0.011492215,0.020259455,,,,,,,0.078160823,0.084357096,0.091213415,0.110791413,,,,,,,0.017648281,0.023129644,0.029194828,0.046361798,,,,,,,0.020068551,0.006699658,0.006729275,0.006864696,,,,,,,0.3361961,0.425765245,0.576123013,1.741141811,,,,,,,0.001396637,0.002472776,0.003813605,0.009093439,,,,,,,0.011532667,0.014423373,0.024193467,0.056273526,,,,,,,6.705324777,12.30915287,20.51264634,48.09863167,,,,,,,1016.759463,1018.464777,1023.293408,1045.136414,,,,,,,0.006957188,0.008272437,0.011229996,0.050816652,,,,,,,0.038566516,0.038567758,0.038568579,0.038565145,,,,,,,0.831994046,0.471812371,0.538807739,1.216761148,,,,,,,0.004825497,0.008101929,0.011434081,0.020674973,,,,,,,0.071440101,0.077949453,0.084848463,0.105556727,,,,,,,0.016489281,0.022247548,0.028350569,0.046534209,,,,,,,0.019458968,0.006497202,0.006528006,0.00666735,,,,,,,0.313631541,0.395594943,0.533149841,1.615113768,,,,,,,0.001446466,0.002418747,0.003640131,0.007984002,,,,,,,0.011100863,0.01432299,0.024310405,0.056612735,,,,,,,6.65662386,12.88575517,21.67130227,51.08447095,,,,,,,1040.401619,1041.737345,1045.917493,1065.526011,,,,,,,0.007099807,0.008456069,0.011505866,0.052272876,,,,,,,0.038653103,0.038654305,0.03865515,0.038651757,,,,,,,0.822315506,0.467608475,0.534674467,1.223278116,,,,,,,0.005104559,0.008266789,0.011558677,0.019868619,,,,,,,0.072767191,0.078996538,0.085724632,0.104014564,,,,,,,0.017055013,0.022565626,0.028517397,0.044559483,,,,,,,0.019911439,0.006645664,0.006672334,0.006797423,,,,,,,0.322470815,0.40684049,0.550485811,1.670198165,,,,,,,0.001470528,0.00265249,0.004125071,0.010262056,,,,,,,0.012893079,0.016400971,0.027409364,0.063640913,,,,,,,7.02431901,13.35174002,22.41160632,52.89319564,,,,,,,1030.884155,1032.802554,1038.032571,1061.320985,,,,,,,0.007165476,0.00852112,0.011569533,0.052368283,,,,,,,0.038735962,0.038737157,0.038737987,0.038734598,,,,,,,0.857977823,0.526272653,0.600567651,1.346796579,,,,,,,0.005008111,0.008555693,0.012115833,0.022607689,,,,,,,0.07433734,0.081409254,0.088819268,0.112449004,,,,,,,0.017144203,0.023400171,0.029955209,0.050716254,,,,,,,0.017679921,0.006490977,0.006524003,0.006670942,,,,,,,0.318298312,0.408488431,0.550552799,1.680612619,,,,,,,0.001371853,0.002473715,0.003718749,0.008153189,,,,,,,0.011473483,0.016614703,0.028419251,0.066301745,,,,,,,7.228698923,14.28826655,24.23399207,57.56581783,,,,,,,1030.554946,1032.484398,1037.527895,1059.624742,,,,,,,0.0074181,0.008848091,0.012063684,0.054997474,,,,,,,0.038933631,0.038934814,0.038935633,0.038932313,,,,,,,0.53099081,0.498788281,0.57288866,1.337891794,,,,,,,0.004930162,0.008493583,0.011878207,0.020479883,,,,,,,0.075376281,0.082445976,0.089359952,0.10825085,,,,,,,0.017092009,0.023345978,0.029462173,0.046027757,,,,,,,0.009381336,0.006093335,0.006123248,0.006254195,,,,,,,0.286961481,0.401677485,0.562086588,1.811225511,,,, +Heavy duty short haul truck,E0,2020,,,,0.001774755,0.003103568,0.004957844,0.011446054,,,,,,,0.016809251,0.019852563,0.031979251,0.073120422,,,,,,,6.882023503,13.91801114,22.94190559,46.87551207,,,,,,,954.1985289,956.966223,963.9828651,1002.020423,,,,,,,0.007500262,0.00885044,0.012107889,0.02790589,,,,,,,0.038653369,0.038653388,0.03865338,0.038650284,,,,,,,0.366521429,0.448946213,0.499358451,0.705015683,,,,,,,0.005590655,0.00921333,0.013100053,0.022929367,,,,,,,0.073518236,0.080907515,0.089218817,0.111838801,,,,,,,0.017961632,0.024498308,0.031850652,0.051866184,,,,,,,0.006087221,0.006104877,0.00614964,0.006392296,,,,,,,0.233062324,0.337810923,0.461111715,1.094647699,,,,,,,0.001700248,0.002948539,0.004638886,0.010350798,,,,,,,0.015028557,0.018090974,0.029295252,0.066969742,,,,,,,6.639565134,13.45635872,22.07929198,44.87303165,,,,,,,963.0636492,965.5057141,971.8561317,1007.951547,,,,,,,0.007442996,0.008765296,0.011955492,0.027436931,,,,,,,0.038637602,0.038637582,0.03863755,0.038634443,,,,,,,0.361953215,0.442904955,0.491546791,0.690322828,,,,,,,0.005500577,0.009034917,0.012754433,0.021822786,,,,,,,0.07400722,0.081171913,0.089049106,0.109669693,,,,,,,0.01785378,0.024191834,0.031160192,0.049407044,,,,,,,0.006143773,0.006159353,0.006199867,0.006430133,,,,,,,0.243513034,0.34632753,0.46611903,1.087237628,,,,,,,0.00167214,0.002934924,0.004716747,0.011005061,,,,,,,0.016462709,0.019508714,0.031418576,0.071761515,,,,,,,7.033353851,14.2557885,23.42610479,47.70629019,,,,,,,980.4369221,983.2036651,990.3408551,1029.331533,,,,,,,0.007964335,0.009374106,0.012775333,0.029283646,,,,,,,0.039322533,0.039322518,0.039322524,0.039319648,,,,,,,0.363522653,0.445444748,0.496217762,0.704319781,,,,,,,0.005210176,0.008600012,0.012264163,0.021639856,,,,,,,0.079874876,0.086805585,0.094670793,0.116336608,,,,,,,0.018201481,0.024332533,0.031290255,0.050462261,,,,,,,0.006254605,0.006272256,0.006317786,0.006566525,,,,,,,0.265455125,0.373944647,0.498989659,1.14819309,,,,,,,0.001717493,0.003013634,0.004843521,0.011347586,,,,,,,0.016136892,0.018840579,0.030254037,0.069222047,,,,,,,6.423202488,12.99370884,21.26399814,43.15542462,,,,,,,944.6643965,947.1024373,953.535438,989.7954336,,,,,,,0.007088408,0.008356137,0.011414664,0.026252487,,,,,,,0.038254242,0.03825426,0.038254255,0.038251011,,,,,,,0.353490592,0.433465933,0.481471627,0.676364972,,,,,,,0.005344534,0.008819323,0.012576817,0.022241101,,,,,,,0.068962437,0.076068275,0.084135851,0.106487578,,,,,,,0.017026499,0.023312445,0.030449181,0.050227102,,,,,,,0.006026399,0.006041952,0.006082991,0.006314307,,,,,,,0.257021982,0.351935152,0.465957244,1.058408597,,,,,,,0.001480243,0.002516525,0.003813036,0.007768041,,,,,,,0.011812634,0.015353316,0.025406485,0.058285889,,,,,,,6.498991797,13.26032706,21.64438052,43.65689916,,,,,,,994.9630083,996.5909916,1001.328834,1032.93693,,,,,,,0.007853403,0.009243236,0.012596362,0.02887136,,,,,,,0.039201252,0.039201243,0.039201262,0.039198343,,,,,,,0.33607664,0.412396205,0.458618169,0.650959145,,,,,,,0.005082868,0.00828918,0.011519381,0.01871271,,,,,,,0.078208922,0.084618829,0.091302657,0.107134216,,,,,,,0.01769083,0.023361179,0.0292738,0.043284609,,,,,,,0.006347274,0.006357659,0.006387884,0.006589525,,,,,,,0.294563027,0.402405471,0.528031676,1.19831901,,,,,,,0.001482294,0.002529559,0.003860272,0.008010057,,,,,,,0.011709583,0.014864011,0.024457241,0.056060444,,,,,,,6.230716469,12.68874476,20.68123115,41.68005438,,,,,,,964.6970207,966.4347479,971.3597781,1003.07245,,,,,,,0.007316379,0.008611989,0.011737778,0.026908954,,,,,,,0.038579014,0.038579001,0.038578985,0.038575859,,,,,,,0.33790634,0.414345038,0.459392028,0.644526849,,,,,,,0.005035799,0.008223295,0.01145955,0.018794311,,,,,,,0.071819328,0.078208109,0.084934183,0.101186025,,,,,,,0.016824709,0.022476358,0.028426398,0.042808518,,,,,,,0.006154195,0.00616528,0.006196699,0.006399007,,,,,,,0.277058158,0.374422728,0.490122264,1.1088076,,,,,,,0.001466347,0.002470445,0.003678974,0.007195846,,,,,,,0.01127998,0.01477033,0.024530226,0.05636737,,,,,,,6.545988038,13.34313488,21.93825771,44.5774012,,,,,,,987.0908232,988.4854774,992.7653161,1022.889621,,,,,,,0.007470186,0.008806213,0.012029482,0.02766653,,,,,,,0.038665427,0.03866546,0.038665445,0.038662356,,,,,,,0.334823667,0.410587558,0.455673946,0.642710491,,,,,,,0.005157688,0.008384188,0.011574929,0.018425714,,,,,,,0.07282247,0.079244275,0.085787716,0.100653763,,,,,,,0.017103929,0.022784736,0.028573227,0.041729492,,,,,,,0.006297053,0.00630595,0.006333254,0.006525429,,,,,,,0.283314424,0.384428337,0.504773407,1.149012908,,,,,,,0.001582524,0.00271231,0.00417397,0.008850921,,,,,,,0.013501523,0.016896418,0.027720642,0.063594688,,,,,,,6.79440417,13.80392966,22.65286758,45.99107508,,,,,,,978.1621175,980.098789,985.4227898,1018.547099,,,,,,,0.00753569,0.008871099,0.012092917,0.027729616,,,,,,,0.038748258,0.038748254,0.038748273,0.038745193,,,,,,,0.377842441,0.462320353,0.512370495,0.718266538,,,,,,,0.005310006,0.008684956,0.012145319,0.020153195,,,,,,,0.07489776,0.081684205,0.08891378,0.106794256,,,,,,,0.017639987,0.02364341,0.030038805,0.045861811,,,,,,,0.006147507,0.006159754,0.00619337,0.006402036,,,,,,,0.285312068,0.387505765,0.508064803,1.14079591,,,,,,,0.001501434,0.002529603,0.0037626,0.007329542,,,,,,,0.012965268,0.017166429,0.028691834,0.066196767,,,,,,,7.299685979,14.83616883,24.58760977,50.35116656,,,,,,,977.8674869,979.8123426,984.9475139,1017.097884,,,,,,,0.007808621,0.009217256,0.012615768,0.029096304,,,,,,,0.038945626,0.038945625,0.038945625,0.038942643,,,,,,,0.357192057,0.438409242,0.488806621,0.699597156,,,,,,,0.005301869,0.008623933,0.011906788,0.018921102,,,,,,,0.076106056,0.082719381,0.089448074,0.104648496,,,,,,,0.017737572,0.023587847,0.029540176,0.042992447,,,,,,,0.005770936,0.005782488,0.005812943,0.006003139,,,,,,,0.269633687,0.381460531,0.516535622,1.224221749,,, +Heavy duty short haul truck,E0,2025,,,,,0.001793703,0.003124269,0.004973553,0.011383943,,,,,,,0.01680367,0.019150109,0.029843446,0.07189691,,,,,,,6.730975511,13.25610456,22.11064228,46.68766264,,,,,,,954.5600296,957.2523659,964.0424183,991.3955866,,,,,,,0.007694786,0.009018893,0.012194231,0.023487471,,,,,,,0.038653387,0.03865339,0.038653378,0.038652922,,,,,,,0.284196577,0.345401874,0.3891266,0.536273217,,,,,,,0.005602493,0.009214867,0.01311064,0.022939949,,,,,,,0.0735557,0.080929019,0.089251361,0.111805591,,,,,,,0.017994751,0.024517318,0.031879443,0.051836224,,,,,,,0.006089528,0.006106702,0.006150019,0.006324516,,,,,,,0.224376566,0.31015111,0.422014502,1.022773508,,,,,,,0.001716336,0.002965545,0.004652202,0.010332735,,,,,,,0.014954454,0.017363297,0.027206713,0.065764523,,,,,,,6.473546812,12.77535679,21.23803114,44.66829552,,,,,,,963.3963284,965.7690657,971.9140163,997.2036198,,,,,,,0.007633496,0.008930262,0.012040057,0.023100471,,,,,,,0.03863758,0.038637543,0.038637575,0.038637089,,,,,,,0.280371238,0.34043421,0.382635269,0.524323311,,,,,,,0.005509767,0.009032971,0.012762731,0.021874951,,,,,,,0.074037518,0.081184086,0.089075625,0.109746768,,,,,,,0.017880607,0.024202637,0.031183617,0.049474676,,,,,,,0.006145897,0.006161034,0.006200234,0.006361567,,,,,,,0.234266949,0.317892201,0.426091674,1.014440204,,,,,,,0.001691346,0.00295543,0.004732098,0.010952921,,,,,,,0.016435254,0.018797127,0.029295796,0.0706671,,,,,,,6.862531763,13.54830677,22.54981715,47.57028784,,,,,,,980.8089053,983.4987928,990.4042463,1018.430605,,,,,,,0.00816744,0.009549988,0.012865495,0.024657607,,,,,,,0.039322526,0.039322511,0.039322528,0.039322068,,,,,,,0.281574617,0.342380911,0.38626987,0.53472869,,,,,,,0.00522324,0.008602398,0.012274442,0.021652653,,,,,,,0.07991459,0.086828349,0.09470252,0.116315789,,,,,,,0.018236618,0.024352695,0.031318305,0.050443369,,,,,,,0.00625698,0.006274138,0.006318192,0.006496983,,,,,,,0.255790365,0.343999681,0.457522265,1.072634557,,,,,,,0.001736212,0.003033422,0.004857364,0.011224829,,,,,,,0.016174705,0.018233417,0.028322657,0.068210669,,,,,,,6.255821041,12.32290466,20.44393926,43.05330024,,,,,,,945.0059074,947.3737373,953.5948698,979.2561969,,,,,,,0.00727105,0.008514296,0.01149574,0.022099494,,,,,,,0.038254253,0.03825426,0.038254234,0.038253761,,,,,,,0.273834883,0.333217737,0.374982183,0.514320295,,,,,,,0.005355792,0.008819582,0.012584516,0.022179484,,,,,,,0.068998735,0.076086868,0.084161869,0.106277545,,,,,,,0.017058599,0.023328892,0.03047222,0.050040679,,,,,,,0.006028577,0.006043683,0.006083369,0.006247073,,,,,,,0.248270708,0.326083757,0.429820542,0.988622547,,,,,,,0.001489949,0.002525655,0.003821154,0.007830206,,,,,,,0.011549415,0.014470195,0.023186825,0.056828225,,,,,,,6.308075615,12.53234876,20.76200849,43.43260456,,,,,,,995.2313506,996.8065828,1001.381116,1021.794055,,,,,,,0.008053636,0.009416634,0.012685247,0.024310586,,,,,,,0.039201256,0.039201265,0.039201262,0.039200819,,,,,,,0.259390323,0.315738838,0.355166055,0.489136252,,,,,,,0.005086325,0.008280829,0.011523093,0.018839198,,,,,,,0.078223699,0.084613052,0.091316584,0.107409381,,,,,,,0.017703908,0.023356038,0.029286115,0.043527523,,,,,,,0.006348985,0.006359035,0.006388218,0.006518439,,,,,,,0.28298578,0.369164973,0.48063344,1.112613379,,,,,,,0.001492944,0.002539721,0.003869023,0.008057119,,,,,,,0.011516736,0.014091991,0.022441918,0.054844061,,,,,,,6.043090281,11.9852998,19.83151814,41.47183511,,,,,,,964.9710241,966.6538589,971.4117348,992.2608795,,,,,,,0.007503035,0.00877362,0.011820637,0.02265782,,,,,,,0.038578995,0.038578983,0.038578974,0.038578506,,,,,,,0.260986415,0.317538333,0.356382908,0.486626842,,,,,,,0.005040403,0.008216005,0.011463767,0.018903823,,,,,,,0.071836871,0.078205014,0.08494955,0.1014189,,,,,,,0.016840258,0.022473643,0.028439992,0.043013947,,,,,,,0.006155942,0.006166678,0.006197032,0.006330036,,,,,,,0.266870443,0.344972963,0.448051591,1.031922426,,,,,,,0.001473379,0.002476019,0.003684161,0.007241272,,,,,,,0.011019618,0.013906005,0.022357261,0.054868933,,,,,,,6.383597365,12.67255964,21.11124228,44.52818199,,,,,,,987.3418996,988.6866744,992.8158115,1011.81514,,,,,,,0.007662671,0.008972889,0.012114922,0.023289851,,,,,,,0.038665461,0.038665448,0.038665425,0.038664975,,,,,,,0.258542467,0.314478724,0.353055413,0.483235987,,,,,,,0.005157064,0.008370362,0.011574051,0.018524871,,,,,,,0.07282803,0.07922598,0.085791274,0.100868686,,,,,,,0.017108818,0.022768578,0.028576396,0.041919065,,,,,,,0.006298654,0.006307234,0.006333575,0.00645478,,,,,,,0.272285688,0.353248502,0.459846404,1.066814852,,,,,,,0.001595054,0.002725234,0.004185105,0.008886046,,,,,,,0.013340735,0.016085672,0.025531113,0.062242423,,,,,,,6.62001481,13.09697805,21.77859405,45.6899697,,,,,,,978.4525161,980.3307875,985.476494,1007.599175,,,,,,,0.007728082,0.009037705,0.012178322,0.023348382,,,,,,,0.038748248,0.038748258,0.038748274,0.038747783,,,,,,,0.292169857,0.354717492,0.397931121,0.543369602,,,,,,,0.005316613,0.008680769,0.01215293,0.020264996,,,,,,,0.074920424,0.081688842,0.088937014,0.107019798,,,,,,,0.017660041,0.0236475,0.030059357,0.046060848,,,,,,,0.00614934,0.006161218,0.006193708,0.006333234,,,,,,,0.275229697,0.357888807,0.46586845,1.063603244,,,,,,,0.001510351,0.002538149,0.0037718,0.007428841,,,,,,,0.012681126,0.016164561,0.026134292,0.064441657,,,,,,,7.148362353,14.15444414,23.71321382,49.93184798,,,,,,,978.1398094,980.0297164,984.9945979,1006.142934,,,,,,,0.008011563,0.009393002,0.012705839,0.024488084,,,,,,,0.038945627,0.038945639,0.038945619,0.038945175,,,,,,,0.276222771,0.336134555,0.378865536,0.525739517,,,,,,,0.00530644,0.008617461,0.011914728,0.019113683,,,,,,,0.076121874,0.08271599,0.08946994,0.105068477,,,,,,,0.017751578,0.02358483,0.029559534,0.043363481,,,,,,,0.005772551,0.005783776,0.005813223,0.00593849,,,,,,,0.259351735,0.349403744,0.468860189,1.136777292,, +Heavy duty short haul truck,E0,2030,,,,,,0.001808042,0.00313776,0.004963885,0.011352058,,,,,,,0.017297615,0.019369211,0.030066235,0.069493399,,,,,,,6.902836599,13.40251447,22.43101066,46.17905352,,,,,,,954.8843707,957.4451465,964.2423345,988.4670509,,,,,,,0.007840422,0.009105412,0.012283152,0.023265634,,,,,,,0.03865338,0.038653382,0.038653401,0.03865338,,,,,,,0.28138631,0.342320341,0.385926465,0.489372938,,,,,,,0.005612499,0.009225571,0.013077718,0.022857221,,,,,,,0.073585857,0.080959644,0.089188397,0.111640264,,,,,,,0.018021427,0.02454443,0.031823724,0.051685094,,,,,,,0.006091596,0.006107932,0.006151295,0.006305833,,,,,,,0.225155302,0.310220163,0.421310636,0.97864901,,,,,,,0.001728512,0.002977058,0.0046427,0.010307026,,,,,,,0.015387758,0.017559011,0.027413184,0.063446018,,,,,,,6.6361315,12.91360095,21.54719685,44.16377182,,,,,,,963.6944786,965.9478516,972.0986116,994.2701344,,,,,,,0.007776121,0.009015003,0.012127154,0.022882941,,,,,,,0.038637548,0.038637572,0.038637581,0.038637579,,,,,,,0.277550702,0.337363106,0.379454841,0.478185162,,,,,,,0.005517703,0.009041781,0.012729955,0.021798455,,,,,,,0.074062124,0.081209761,0.089013004,0.10959788,,,,,,,0.017902426,0.02422531,0.031128203,0.049337985,,,,,,,0.0061478,0.006162175,0.006201413,0.006342853,,,,,,,0.234662103,0.317662842,0.424043319,0.969658593,,,,,,,0.001705404,0.002968611,0.004722288,0.010924653,,,,,,,0.01692251,0.019017263,0.029572634,0.06821638,,,,,,,7.038487771,13.69937045,22.91368053,46.99797894,,,,,,,981.142963,983.6981026,990.6093688,1015.425697,,,,,,,0.008319501,0.009640334,0.012958337,0.024425594,,,,,,,0.039322516,0.039322523,0.039322509,0.039322513,,,,,,,0.278776331,0.339312585,0.383042192,0.487663257,,,,,,,0.005233069,0.008612749,0.012241561,0.021578184,,,,,,,0.07994419,0.086858167,0.094639436,0.116168679,,,,,,,0.018262815,0.024379041,0.031262521,0.050307708,,,,,,,0.00625911,0.00627541,0.006319501,0.006477814,,,,,,,0.255913839,0.343569187,0.454303441,1.027786016,,,,,,,0.001749985,0.003045947,0.00483682,0.011205984,,,,,,,0.01665952,0.018449582,0.028583226,0.065942944,,,,,,,6.415529289,12.46029703,20.79738711,42.49602859,,,,,,,945.3121985,947.5562488,953.7840966,976.3695698,,,,,,,0.00740779,0.00859554,0.011579235,0.021891094,,,,,,,0.03825425,0.038254255,0.038254256,0.038254262,,,,,,,0.271085187,0.330208157,0.371751333,0.469472613,,,,,,,0.005364627,0.00882849,0.012535404,0.022116341,,,,,,,0.069026437,0.076113656,0.084062007,0.106156484,,,,,,,0.01708311,0.023352589,0.030383852,0.049929047,,,,,,,0.006030531,0.006044847,0.006084578,0.006228658,,,,,,,0.248210313,0.325594946,0.425913219,0.949456562,,,,,,,0.001497421,0.002532847,0.003812731,0.007816871,,,,,,,0.011865142,0.014623651,0.023359427,0.054440945,,,,,,,6.462570647,12.66364988,21.06097709,42.92415619,,,,,,,995.4719881,996.9500851,1001.530955,1018.820071,,,,,,,0.008203551,0.0095057,0.012776777,0.02408185,,,,,,,0.039201258,0.039201264,0.039201259,0.039201263,,,,,,,0.256678842,0.312813113,0.352132909,0.444211744,,,,,,,0.005090052,0.008285728,0.011493453,0.018776759,,,,,,,0.078236961,0.084628087,0.091260018,0.107296561,,,,,,,0.017715619,0.023369337,0.029236067,0.043422306,,,,,,,0.006350521,0.00635995,0.006389172,0.006499467,,,,,,,0.282454115,0.368136499,0.47585475,1.057968254,,,,,,,0.001500984,0.002547425,0.003860512,0.008041891,,,,,,,0.011840159,0.014246653,0.022627673,0.052635028,,,,,,,6.1912203,12.11131858,20.1277277,40.97028974,,,,,,,965.2163626,966.800333,971.5647759,989.3641437,,,,,,,0.00764278,0.008856649,0.011905967,0.022444598,,,,,,,0.038578971,0.038578979,0.038578989,0.038578982,,,,,,,0.258270506,0.314605324,0.353344686,0.442765471,,,,,,,0.005044624,0.008221305,0.011433527,0.018840687,,,,,,,0.071851437,0.078221182,0.084891927,0.101302366,,,,,,,0.016853169,0.022487959,0.028389016,0.042906007,,,,,,,0.006157508,0.006167612,0.006198007,0.006311557,,,,,,,0.26640564,0.344076662,0.443566254,0.983263039,,,,,,,0.001478854,0.002481121,0.003668373,0.007236859,,,,,,,0.011317677,0.014050141,0.022491647,0.052572298,,,,,,,6.546796002,12.81444518,21.46587368,43.98062228,,,,,,,987.5656101,988.8202823,992.9565566,1008.87626,,,,,,,0.007806776,0.009058497,0.012202913,0.023070227,,,,,,,0.038665444,0.038665443,0.038665447,0.038665475,,,,,,,0.255819994,0.311547783,0.349940117,0.439122213,,,,,,,0.005157759,0.008371957,0.011527988,0.018475714,,,,,,,0.072834337,0.079233582,0.085700742,0.100785317,,,,,,,0.017114428,0.022775317,0.028496283,0.041840347,,,,,,,0.006300082,0.006308086,0.006334475,0.006436032,,,,,,,0.271825663,0.352296678,0.455298579,1.014394857,,,,,,,0.001604795,0.002734709,0.004181362,0.008860389,,,,,,,0.013719248,0.016262881,0.025721995,0.059841377,,,,,,,6.782693616,13.233647,22.04767253,45.22413931,,,,,,,978.713694,980.4865443,985.6375493,1004.653906,,,,,,,0.007872125,0.009123285,0.012266267,0.02312863,,,,,,,0.038748261,0.038748275,0.038748258,0.038748255,,,,,,,0.289169475,0.351477309,0.394679652,0.494591541,,,,,,,0.005323102,0.008688646,0.012133097,0.020184932,,,,,,,0.074940397,0.081710994,0.088901011,0.106865487,,,,,,,0.017677699,0.023667078,0.030027536,0.04591925,,,,,,,0.006150987,0.0061622,0.006194724,0.00631472,,,,,,,0.275218147,0.357340549,0.462686608,1.015648386,,,,,,,0.001517555,0.002545647,0.003777381,0.007398415,,,,,,,0.013028583,0.016334983,0.026301904,0.061699121,,,,,,,7.323521203,14.29966409,23.91783773,49.55682549,,,,,,,978.3839513,980.174691,985.145353,1003.207773,,,,,,,0.008163498,0.009483274,0.012798623,0.024256695,,,,,,,0.038945604,0.038945623,0.038945604,0.038945636,,,,,,,0.273409794,0.333088745,0.375949314,0.477022584,,,,,,,0.005311825,0.008625085,0.011915414,0.019020177,,,,,,,0.076137553,0.082735775,0.089476451,0.104887578,,,,,,,0.017765461,0.023602353,0.029565315,0.043198243,,,,,,,0.005773997,0.005784635,0.005814113,0.005921162,,,,,,,0.259844729,0.349159546,0.467606835,1.07780723, +Heavy duty short haul truck,E0,2035,,,,,,,0.001816445,0.003131236,0.004984632,0.011368293,,,,,,,0.017547819,0.019576744,0.03014143,0.06834051,,,,,,,6.999592763,13.59907383,22.40938137,45.69737345,,,,,,,955.0376908,957.5806712,964.296907,988.1054724,,,,,,,0.00790939,0.009166318,0.012307915,0.023194423,,,,,,,0.038653389,0.038653386,0.038653373,0.038653392,,,,,,,0.281678876,0.342316592,0.386286459,0.477045917,,,,,,,0.005622897,0.009200934,0.01310838,0.022892315,,,,,,,0.073611334,0.080913062,0.08925849,0.111712965,,,,,,,0.018043963,0.024503206,0.031885755,0.051749382,,,,,,,0.006092573,0.006108796,0.006151643,0.006303526,,,,,,,0.225757002,0.310333642,0.422137958,0.963615457,,,,,,,0.001735848,0.002970554,0.004661107,0.010322062,,,,,,,0.015609542,0.017751056,0.027477434,0.062333875,,,,,,,6.728284422,13.10305487,21.52400545,43.69388093,,,,,,,963.8358151,966.072943,972.1491393,993.9240824,,,,,,,0.007843667,0.009074656,0.012151412,0.022813195,,,,,,,0.038637558,0.038637576,0.038637573,0.038637583,,,,,,,0.277822493,0.337345458,0.379800771,0.466108112,,,,,,,0.005527055,0.009017162,0.012758384,0.021832397,,,,,,,0.074084889,0.081163184,0.089077214,0.109667598,,,,,,,0.017922532,0.024184109,0.03118502,0.049399656,,,,,,,0.006148701,0.006162973,0.006201735,0.006340647,,,,,,,0.235029212,0.316514344,0.425411603,0.95486243,,,,,,,0.001713551,0.002962043,0.004742788,0.010941059,,,,,,,0.017172136,0.019258119,0.029618886,0.06700141,,,,,,,7.138599438,13.91936689,22.87340826,46.45438817,,,,,,,981.3007392,983.8372986,990.6664632,1015.053464,,,,,,,0.008391515,0.009703925,0.012984202,0.024351248,,,,,,,0.039322533,0.039322514,0.039322524,0.039322521,,,,,,,0.279066607,0.339283675,0.383423246,0.475265812,,,,,,,0.005242916,0.008588268,0.01227191,0.02161321,,,,,,,0.079968515,0.086811748,0.094708837,0.116241403,,,,,,,0.018284317,0.024338008,0.031323898,0.050372028,,,,,,,0.006260117,0.006276298,0.006319865,0.006475439,,,,,,,0.25605344,0.341113408,0.456261751,1.013412822,,,,,,,0.001757819,0.003033628,0.004862651,0.011239805,,,,,,,0.016905504,0.018676918,0.028633887,0.064821898,,,,,,,6.50713446,12.67175744,20.74895862,41.9681054,,,,,,,945.4561379,947.6841639,953.8361859,976.0212541,,,,,,,0.007472544,0.008652726,0.01160249,0.021824223,,,,,,,0.038254241,0.038254266,0.038254261,0.03825425,,,,,,,0.271346952,0.33010025,0.372153052,0.457837663,,,,,,,0.005373749,0.008794041,0.012573564,0.022172703,,,,,,,0.069049244,0.076045458,0.084149283,0.106280718,,,,,,,0.017103296,0.023292249,0.030461048,0.050038952,,,,,,,0.006031449,0.006045663,0.006084911,0.006226437,,,,,,,0.248169185,0.322313436,0.428212608,0.937325247,,,,,,,0.001502381,0.002526924,0.003825614,0.007828673,,,,,,,0.012033257,0.01478725,0.023407559,0.053316909,,,,,,,6.550981966,12.8462987,21.03747997,42.4600459,,,,,,,995.5846754,997.0506989,1001.57129,1018.510024,,,,,,,0.008274546,0.009568396,0.012802277,0.024008545,,,,,,,0.039201259,0.039201268,0.039201251,0.039201264,,,,,,,0.256907637,0.312789323,0.35244732,0.432297901,,,,,,,0.00509708,0.008263278,0.011515628,0.018805904,,,,,,,0.078253542,0.084585588,0.091308693,0.107355511,,,,,,,0.017730295,0.023331735,0.02927914,0.043474443,,,,,,,0.006351239,0.006360591,0.006389431,0.00649749,,,,,,,0.282285113,0.364653727,0.478214622,1.040715987,,,,,,,0.001506202,0.002541435,0.003874042,0.008053919,,,,,,,0.012010655,0.014416049,0.022668273,0.051575047,,,,,,,6.276263289,12.29163799,20.10007319,40.51272459,,,,,,,965.3326872,966.9033184,971.606561,989.0549144,,,,,,,0.007708964,0.008915095,0.011929726,0.02237628,,,,,,,0.038578999,0.038578987,0.038578994,0.038578993,,,,,,,0.258499232,0.314565945,0.353660544,0.431278242,,,,,,,0.005051799,0.008198412,0.011456562,0.018870441,,,,,,,0.071868569,0.07817791,0.084942653,0.101362501,,,,,,,0.016868288,0.022449663,0.028433886,0.042959197,,,,,,,0.006158248,0.006168269,0.006198273,0.006309584,,,,,,,0.266228652,0.340658722,0.445844819,0.96795224,,,,,,,0.001482701,0.002470756,0.003683158,0.007258152,,,,,,,0.011475789,0.014188261,0.022552603,0.051513332,,,,,,,6.640164177,13.02750456,21.42151463,43.45221142,,,,,,,987.6702485,988.9135568,992.995121,1008.57759,,,,,,,0.007875018,0.009118764,0.012227437,0.022999741,,,,,,,0.038665446,0.03866544,0.038665474,0.038665441,,,,,,,0.256030377,0.311445243,0.35029163,0.427554402,,,,,,,0.005162991,0.00833825,0.011556263,0.018521243,,,,,,,0.07284694,0.07916833,0.085761316,0.100880128,,,,,,,0.017125571,0.022717599,0.028549825,0.041924275,,,,,,,0.006300751,0.006308683,0.00633472,0.006434127,,,,,,,0.271703892,0.349071335,0.457553878,0.997830938,,,,,,,0.00161103,0.002731571,0.004194111,0.008866409,,,,,,,0.013915948,0.01644169,0.025779826,0.058701124,,,,,,,6.874245451,13.4013043,22.04561146,44.80092542,,,,,,,978.8361434,980.5950997,985.6818615,1004.332583,,,,,,,0.007940339,0.009183522,0.012290771,0.023058216,,,,,,,0.038748269,0.038748265,0.038748264,0.038748268,,,,,,,0.28944047,0.351525636,0.394977882,0.481739926,,,,,,,0.00533197,0.008672804,0.012152718,0.020204455,,,,,,,0.074961261,0.081681997,0.088945419,0.106903073,,,,,,,0.017696152,0.023641436,0.030066796,0.045952491,,,,,,,0.006151759,0.006162885,0.006195004,0.006312696,,,,,,,0.27534719,0.355191199,0.464474359,1.000133973,,,,,,,0.001522783,0.002547952,0.003782473,0.007390289,,,,,,,0.01321281,0.016501893,0.026368894,0.060428091,,,,,,,7.419585089,14.43440701,23.95957732,49.21840053,,,,,,,978.4992624,980.2768809,985.1874955,1002.897533,,,,,,,0.008235455,0.009546818,0.012824466,0.024182402,,,,,,,0.038945614,0.038945622,0.038945639,0.038945642,,,,,,,0.273689755,0.333288598,0.376156042,0.46378056,,,,,,,0.005320825,0.008623077,0.011922421,0.019017192,,,,,,,0.076157696,0.082734675,0.089492883,0.104874867,,,,,,,0.017783264,0.023601371,0.029579817,0.043187001,,,,,,,0.005774681,0.005785242,0.005814363,0.005919328,,,,,,,0.260411433,0.349231057,0.468465748,1.057503241 +Heavy duty short haul truck,E0,2040,,,,,,,,0.001812013,0.003142649,0.005007773,,,,,,,,0.017736423,0.01962222,0.030211391,,,,,,,,7.104602335,13.59311191,22.37085333,,,,,,,,955.145418,957.6188192,964.3495174,,,,,,,,0.007957818,0.009183392,0.012331372,,,,,,,,0.038653386,0.038653386,0.03865339,,,,,,,,0.281693108,0.342650009,0.38667064,,,,,,,,0.005606291,0.00922032,0.013143305,,,,,,,,0.07357979,0.080955799,0.0893379,,,,,,,,0.018016067,0.024541019,0.031955984,,,,,,,,0.006093262,0.00610904,0.006151978,,,,,,,,0.225546538,0.311039973,0.423076996,,,,,,,,0.001731444,0.00298079,0.004681677,,,,,,,,0.015779693,0.017789919,0.027536161,,,,,,,,6.829367646,13.09636188,21.48422333,,,,,,,,963.9355621,966.1082495,972.1975533,,,,,,,,0.007891097,0.009091373,0.012174379,,,,,,,,0.038637556,0.038637572,0.038637574,,,,,,,,0.277826419,0.337668813,0.380170192,,,,,,,,0.005510482,0.009035416,0.012790851,,,,,,,,0.074053405,0.081202951,0.089150131,,,,,,,,0.017894696,0.024219294,0.031249518,,,,,,,,0.006149336,0.006163198,0.006202044,,,,,,,,0.233545951,0.317776832,0.426926816,,,,,,,,0.001709129,0.002973316,0.004765667,,,,,,,,0.017387597,0.019285351,0.029654794,,,,,,,,7.256246752,13.90397963,22.81246346,,,,,,,,981.4118065,983.8772746,990.7203294,,,,,,,,0.00844208,0.009721758,0.013008683,,,,,,,,0.039322522,0.039322535,0.039322513,,,,,,,,0.279060284,0.339630373,0.38383135,,,,,,,,0.005226506,0.008607425,0.012306482,,,,,,,,0.079937313,0.08685403,0.094787367,,,,,,,,0.018256719,0.024375378,0.031393395,,,,,,,,0.006260825,0.006276554,0.006320208,,,,,,,,0.2531184,0.34301514,0.45848277,,,,,,,,0.001750357,0.003047745,0.004891845,,,,,,,,0.017111199,0.01870702,0.028675576,,,,,,,,6.620403958,12.65193334,20.67949235,,,,,,,,945.5584547,947.7201612,953.8859521,,,,,,,,0.00751802,0.008668758,0.011624507,,,,,,,,0.038254255,0.038254256,0.038254259,,,,,,,,0.271285432,0.330463853,0.372589071,,,,,,,,0.005351627,0.008817946,0.012617409,,,,,,,,0.069005804,0.076098168,0.084249053,,,,,,,,0.01706485,0.023338896,0.030549322,,,,,,,,0.006032102,0.006045893,0.006085227,,,,,,,,0.244435725,0.324543246,0.430859816,,,,,,,,0.00149839,0.002534303,0.00384008,,,,,,,,0.012164991,0.014816644,0.023449888,,,,,,,,6.647982739,12.84000779,20.99773799,,,,,,,,995.6649852,997.0787628,1001.610679,,,,,,,,0.008324396,0.009585969,0.012826414,,,,,,,,0.039201259,0.03920124,0.039201259,,,,,,,,0.25690027,0.313083034,0.352783062,,,,,,,,0.005081952,0.008278057,0.011541112,,,,,,,,0.078224829,0.084616874,0.091364319,,,,,,,,0.017704893,0.023359445,0.029328354,,,,,,,,0.006351752,0.00636077,0.006389682,,,,,,,,0.278407201,0.366925484,0.480924348,,,,,,,,0.001502159,0.002549157,0.003889221,,,,,,,,0.012150856,0.014440646,0.022702087,,,,,,,,6.372188601,12.28287016,20.05594388,,,,,,,,965.4138305,966.9320376,971.64668,,,,,,,,0.007755435,0.008931479,0.011952237,,,,,,,,0.038578977,0.038578972,0.038578996,,,,,,,,0.258484561,0.314864311,0.353998874,,,,,,,,0.005036394,0.008213693,0.011483008,,,,,,,,0.071839316,0.078210367,0.085000554,,,,,,,,0.016842437,0.022478399,0.028485103,,,,,,,,0.006158768,0.006168453,0.006198529,,,,,,,,0.262407552,0.342864719,0.448464672,,,,,,,,0.001476222,0.002479411,0.003700015,,,,,,,,0.011587195,0.014225553,0.022610555,,,,,,,,6.752883801,13.0095811,21.35642884,,,,,,,,987.7454616,988.9409966,993.030978,,,,,,,,0.007922943,0.009135671,0.012250625,,,,,,,,0.038665444,0.038665474,0.038665436,,,,,,,,0.255967382,0.311767202,0.350672073,,,,,,,,0.005141093,0.008357447,0.011589086,,,,,,,,0.072804736,0.079208185,0.085831226,,,,,,,,0.017088227,0.022752825,0.028611713,,,,,,,,0.00630123,0.006308858,0.006334948,,,,,,,,0.268200719,0.351198015,0.46014311,,,,,,,,0.001608557,0.00273871,0.004208236,,,,,,,,0.014065805,0.016477092,0.025832027,,,,,,,,6.963530235,13.40644446,22.0306666,,,,,,,,978.9226788,980.6258113,985.7245169,,,,,,,,0.007988237,0.009200411,0.012313967,,,,,,,,0.038748257,0.038748263,0.038748279,,,,,,,,0.289491883,0.35181789,0.395290827,,,,,,,,0.005320726,0.00868556,0.012175008,,,,,,,,0.074940364,0.081709781,0.088995503,,,,,,,,0.017677679,0.023666019,0.030111086,,,,,,,,0.006152306,0.006163078,0.006195273,,,,,,,,0.272821324,0.356881076,0.466494769,,,,,,,,0.001523391,0.002550854,0.003787811,,,,,,,,0.013344009,0.016543274,0.026431619,,,,,,,,7.491018816,14.46296885,23.99540094,,,,,,,,978.5812981,980.3056812,985.2260162,,,,,,,,0.00828599,0.009564629,0.012848932,,,,,,,,0.038945647,0.038945623,0.038945598,,,,,,,,0.273842782,0.333505763,0.376359417,,,,,,,,0.005317901,0.008627848,0.011930036,,,,,,,,0.076153426,0.082745293,0.089510416,,,,,,,,0.017779467,0.023610782,0.029595374,,,,,,,,0.005775167,0.005785411,0.005814591,,,,,,,,0.260116872,0.349958751,0.469362211 +Heavy duty short haul truck,E0,2045,,,,,,,,,0.00181886,0.003155669,,,,,,,,,0.017779313,0.019668711,,,,,,,,,7.101888572,13.57793708,,,,,,,,,955.175734,957.6545124,,,,,,,,,0.007971603,0.009199472,,,,,,,,,0.038653376,0.038653395,,,,,,,,,0.281857972,0.342908928,,,,,,,,,0.005619826,0.009243174,,,,,,,,,0.073608689,0.081005822,,,,,,,,,0.01804163,0.024585258,,,,,,,,,0.006093454,0.006109268,,,,,,,,,0.226024849,0.311761918,,,,,,,,,0.00173767,0.002992505,,,,,,,,,0.015815922,0.017828934,,,,,,,,,6.826182202,13.08052318,,,,,,,,,963.9637275,966.1408173,,,,,,,,,0.0079046,0.009107118,,,,,,,,,0.038637577,0.03863757,,,,,,,,,0.277984976,0.33791833,,,,,,,,,0.005523416,0.009057019,,,,,,,,,0.07408075,0.08124965,,,,,,,,,0.017918868,0.024260614,,,,,,,,,0.006149517,0.006163406,,,,,,,,,0.234602148,0.319092412,,,,,,,,,0.001715857,0.002986172,,,,,,,,,0.017414965,0.019310197,,,,,,,,,7.248407161,13.87725954,,,,,,,,,981.4431451,983.913718,,,,,,,,,0.008456475,0.009738547,,,,,,,,,0.039322515,0.039322539,,,,,,,,,0.279235386,0.339906364,,,,,,,,,0.005239744,0.008629987,,,,,,,,,0.079965591,0.086903405,,,,,,,,,0.018281747,0.024419046,,,,,,,,,0.006261025,0.006276787,,,,,,,,,0.254861128,0.345088699,,,,,,,,,0.001758597,0.003063981,,,,,,,,,0.017142014,0.018735767,,,,,,,,,6.610107755,12.62058529,,,,,,,,,945.5871645,947.7534665,,,,,,,,,0.007530965,0.008683851,,,,,,,,,0.038254254,0.038254253,,,,,,,,,0.271475168,0.330762538,,,,,,,,,0.005367618,0.008846163,,,,,,,,,0.069040056,0.076160039,,,,,,,,,0.017095149,0.023393623,,,,,,,,,0.006032285,0.006046105,,,,,,,,,0.246521405,0.327043529,,,,,,,,,0.001503053,0.002542818,,,,,,,,,0.012190549,0.01484453,,,,,,,,,6.644905379,12.82466983,,,,,,,,,995.6870262,997.1048694,,,,,,,,,0.00833859,0.009602518,,,,,,,,,0.039201259,0.039201256,,,,,,,,,0.25703926,0.313308169,,,,,,,,,0.005092836,0.008295703,,,,,,,,,0.078247275,0.084654051,,,,,,,,,0.017724756,0.023392321,,,,,,,,,0.006351893,0.006360937,,,,,,,,,0.280500501,0.369450771,,,,,,,,,0.001507003,0.002558052,,,,,,,,,0.012173162,0.014463326,,,,,,,,,6.367763414,12.26489745,,,,,,,,,965.4371497,966.9590945,,,,,,,,,0.007768665,0.008946906,,,,,,,,,0.038578987,0.038578992,,,,,,,,,0.258627755,0.315093214,,,,,,,,,0.005047538,0.008231901,,,,,,,,,0.071862398,0.078248849,,,,,,,,,0.016862832,0.022512415,,,,,,,,,0.006158915,0.006168625,,,,,,,,,0.264464179,0.34532914,,,,,,,,,0.001481637,0.002489498,,,,,,,,,0.011618276,0.014262897,,,,,,,,,6.743882964,12.98035308,,,,,,,,,987.7663197,988.9640869,,,,,,,,,0.007936592,0.009151565,,,,,,,,,0.038665467,0.038665422,,,,,,,,,0.256127114,0.312025568,,,,,,,,,0.005154724,0.008380382,,,,,,,,,0.072832455,0.079255467,,,,,,,,,0.017112727,0.022794701,,,,,,,,,0.006301363,0.006309004,,,,,,,,,0.27010902,0.353563056,,,,,,,,,0.00161308,0.002746864,,,,,,,,,0.014098353,0.016511895,,,,,,,,,6.966606222,13.40450003,,,,,,,,,978.9473432,980.6542838,,,,,,,,,0.008001875,0.009216312,,,,,,,,,0.038748263,0.038748266,,,,,,,,,0.289622901,0.352025758,,,,,,,,,0.005330415,0.008700751,,,,,,,,,0.07496075,0.081742568,,,,,,,,,0.017695696,0.023695023,,,,,,,,,0.006152461,0.006163258,,,,,,,,,0.274325822,0.35871231,,,,,,,,,0.001525602,0.002554121,,,,,,,,,0.013379361,0.016584291,,,,,,,,,7.506679582,14.48853203,,,,,,,,,978.6037644,980.3325863,,,,,,,,,0.008300369,0.009581408,,,,,,,,,0.038945612,0.038945634,,,,,,,,,0.273921098,0.333632873,,,,,,,,,0.005322953,0.008633721,,,,,,,,,0.076163955,0.082758158,,,,,,,,,0.017788805,0.023622137,,,,,,,,,0.005775299,0.00578557,,,,,,,,,0.260616953,0.350626887 +Heavy duty short haul truck,E0,2050,,,,,,,,,,0.0018253,,,,,,,,,,0.017813842,,,,,,,,,,7.090782432,,,,,,,,,,955.2021191,,,,,,,,,,0.007983334,,,,,,,,,,0.038653388,,,,,,,,,,0.282028277,,,,,,,,,,0.005631827,,,,,,,,,,0.073634535,,,,,,,,,,0.018064496,,,,,,,,,,0.006093623,,,,,,,,,,0.226608664,,,,,,,,,,0.001743496,,,,,,,,,,0.015844285,,,,,,,,,,6.814893021,,,,,,,,,,963.9878143,,,,,,,,,,0.007916089,,,,,,,,,,0.038637575,,,,,,,,,,0.278149006,,,,,,,,,,0.00553483,,,,,,,,,,0.074105037,,,,,,,,,,0.017940357,,,,,,,,,,0.006149671,,,,,,,,,,0.235804944,,,,,,,,,,0.001722229,,,,,,,,,,0.017431427,,,,,,,,,,7.231081102,,,,,,,,,,981.4699616,,,,,,,,,,0.008468725,,,,,,,,,,0.039322513,,,,,,,,,,0.279417443,,,,,,,,,,0.005251642,,,,,,,,,,0.07999118,,,,,,,,,,0.018304397,,,,,,,,,,0.006261196,,,,,,,,,,0.256887134,,,,,,,,,,0.001766731,,,,,,,,,,0.017162812,,,,,,,,,,6.590598228,,,,,,,,,,945.6118164,,,,,,,,,,0.007541981,,,,,,,,,,0.038254255,,,,,,,,,,0.271676331,,,,,,,,,,0.005382698,,,,,,,,,,0.069072564,,,,,,,,,,0.017123908,,,,,,,,,,0.006032443,,,,,,,,,,0.248971149,,,,,,,,,,0.00150734,,,,,,,,,,0.012209284,,,,,,,,,,6.634019051,,,,,,,,,,995.7065903,,,,,,,,,,0.008350666,,,,,,,,,,0.039201258,,,,,,,,,,0.25718313,,,,,,,,,,0.005102254,,,,,,,,,,0.078266825,,,,,,,,,,0.017742052,,,,,,,,,,0.006352017,,,,,,,,,,0.282954829,,,,,,,,,,0.00151148,,,,,,,,,,0.012188134,,,,,,,,,,6.35559606,,,,,,,,,,965.4566441,,,,,,,,,,0.00777992,,,,,,,,,,0.038578974,,,,,,,,,,0.258776621,,,,,,,,,,0.00505727,,,,,,,,,,0.071882603,,,,,,,,,,0.01688074,,,,,,,,,,0.00615904,,,,,,,,,,0.266876858,,,,,,,,,,0.001486879,,,,,,,,,,0.01164396,,,,,,,,,,6.725668859,,,,,,,,,,987.7835734,,,,,,,,,,0.007948188,,,,,,,,,,0.038665429,,,,,,,,,,0.256296284,,,,,,,,,,0.005167406,,,,,,,,,,0.072858211,,,,,,,,,,0.017135563,,,,,,,,,,0.006301473,,,,,,,,,,0.27234632,,,,,,,,,,0.001617065,,,,,,,,,,0.01412367,,,,,,,,,,6.962602522,,,,,,,,,,978.9683256,,,,,,,,,,0.008013479,,,,,,,,,,0.038748263,,,,,,,,,,0.289754793,,,,,,,,,,0.005338204,,,,,,,,,,0.074977338,,,,,,,,,,0.017710367,,,,,,,,,,0.006152593,,,,,,,,,,0.276068704,,,,,,,,,,0.001527016,,,,,,,,,,0.013408328,,,,,,,,,,7.516872457,,,,,,,,,,978.6233817,,,,,,,,,,0.00831261,,,,,,,,,,0.038945618,,,,,,,,,,0.273991258,,,,,,,,,,0.005325371,,,,,,,,,,0.076169266,,,,,,,,,,0.0177935,,,,,,,,,,0.005775415,,,,,,,,,,0.261155647 +Heavy duty short haul truck,E10,1990,0.096402677,,,,,,,,,,0.433129305,,,,,,,,,,93.64537309,,,,,,,,,,1045.61859,,,,,,,,,,0.094191028,,,,,,,,,,0.038672831,,,,,,,,,,10.18575059,,,,,,,,,,0.216122157,,,,,,,,,,0.525781199,,,,,,,,,,0.416844621,,,,,,,,,,0.048526941,,,,,,,,,,6.449207735,,,,,,,,,,0.082365723,,,,,,,,,,0.424826374,,,,,,,,,,93.97018031,,,,,,,,,,1048.88442,,,,,,,,,,0.092680619,,,,,,,,,,0.038657787,,,,,,,,,,10.16430195,,,,,,,,,,0.189718309,,,,,,,,,,0.468680704,,,,,,,,,,0.365785531,,,,,,,,,,0.054036321,,,,,,,,,,6.579245238,,,,,,,,,,0.095515009,,,,,,,,,,0.486559924,,,,,,,,,,106.9175524,,,,,,,,,,1070.782742,,,,,,,,,,0.099003617,,,,,,,,,,0.039338508,,,,,,,,,,10.52825873,,,,,,,,,,0.208664006,,,,,,,,,,0.522537344,,,,,,,,,,0.408416472,,,,,,,,,,0.078150395,,,,,,,,,,7.315725062,,,,,,,,,,0.099801564,,,,,,,,,,0.437172802,,,,,,,,,,98.88693017,,,,,,,,,,1028.007249,,,,,,,,,,0.088624126,,,,,,,,,,0.038277061,,,,,,,,,,10.11289252,,,,,,,,,,0.220967977,,,,,,,,,,0.535925853,,,,,,,,,,0.429028053,,,,,,,,,,0.069892665,,,,,,,,,,6.591119941,,,,,,,,,,0.047760864,,,,,,,,,,0.415032612,,,,,,,,,,93.49790399,,,,,,,,,,1065.512899,,,,,,,,,,0.09760364,,,,,,,,,,0.039218375,,,,,,,,,,9.814709183,,,,,,,,,,0.116322346,,,,,,,,,,0.316060771,,,,,,,,,,0.226760837,,,,,,,,,,0.064189513,,,,,,,,,,7.395686178,,,,,,,,,,0.05461192,,,,,,,,,,0.406011751,,,,,,,,,,94.18282083,,,,,,,,,,1036.806729,,,,,,,,,,0.090919634,,,,,,,,,,0.038599154,,,,,,,,,,9.850296805,,,,,,,,,,0.13239963,,,,,,,,,,0.344377791,,,,,,,,,,0.2567675,,,,,,,,,,0.069567379,,,,,,,,,,6.944503115,,,,,,,,,,0.044780128,,,,,,,,,,0.39311247,,,,,,,,,,90.8196663,,,,,,,,,,1052.536557,,,,,,,,,,0.093423241,,,,,,,,,,0.038685083,,,,,,,,,,9.712254062,,,,,,,,,,0.112573688,,,,,,,,,,0.301261496,,,,,,,,,,0.217986298,,,,,,,,,,0.064083953,,,,,,,,,,7.103433176,,,,,,,,,,0.064615312,,,,,,,,,,0.413040715,,,,,,,,,,94.76496496,,,,,,,,,,1054.875259,,,,,,,,,,0.093689488,,,,,,,,,,0.038768046,,,,,,,,,,10.63916157,,,,,,,,,,0.153424953,,,,,,,,,,0.392282751,,,,,,,,,,0.297170326,,,,,,,,,,0.063078523,,,,,,,,,,6.997915458,,,,,,,,,,0.046096012,,,,,,,,,,0.386887805,,,,,,,,,,87.82510174,,,,,,,,,,1058.093499,,,,,,,,,,0.098212515,,,,,,,,,,0.038963349,,,,,,,,,,9.941977505,,,,,,,,,,0.116078279,,,,,,,,,,0.309103496,,,,,,,,,,0.22256246,,,,,,,,,,0.030470503,,,,,,,,,,6.870304887,,,,,,,,, +Heavy duty short haul truck,E10,1995,0.021986602,0.07264171,,,,,,,,,0.209871103,0.385569073,,,,,,,,,86.89138115,100.0350511,,,,,,,,,1013.957645,1040.417011,,,,,,,,,0.065870896,0.11295621,,,,,,,,,0.038638664,0.038641829,,,,,,,,,6.537459249,8.508659187,,,,,,,,,0.064819815,0.154135945,,,,,,,,,0.193776646,0.391313745,,,,,,,,,0.125218819,0.299746109,,,,,,,,,0.046969784,0.023049914,,,,,,,,,3.48268368,6.008326717,,,,,,,,,0.019092305,0.061812555,,,,,,,,,0.20933862,0.377160385,,,,,,,,,88.426431,99.81612833,,,,,,,,,1021.736296,1045.029192,,,,,,,,,0.065098362,0.111153879,,,,,,,,,0.038622749,0.038626204,,,,,,,,,6.546927092,8.450762196,,,,,,,,,0.05729403,0.134744341,,,,,,,,,0.178982606,0.349043097,,,,,,,,,0.111605496,0.261822932,,,,,,,,,0.052572581,0.023330631,,,,,,,,,3.580943263,6.121449468,,,,,,,,,0.021025163,0.071810222,,,,,,,,,0.238556147,0.417396777,,,,,,,,,99.48928647,108.3475143,,,,,,,,,1040.556597,1066.967815,,,,,,,,,0.069585942,0.118686195,,,,,,,,,0.039307615,0.039311525,,,,,,,,,6.841023414,8.560041577,,,,,,,,,0.060455471,0.147705958,,,,,,,,,0.193349837,0.386512951,,,,,,,,,0.119568042,0.290189849,,,,,,,,,0.076020295,0.024327355,,,,,,,,,4.019035102,6.577421326,,,,,,,,,0.022065204,0.074600322,,,,,,,,,0.215656785,0.381118736,,,,,,,,,92.96515117,102.4273328,,,,,,,,,1001.798152,1024.912879,,,,,,,,,0.062124514,0.106301463,,,,,,,,,0.038239816,0.038242836,,,,,,,,,6.503687356,8.286499085,,,,,,,,,0.063937646,0.154890713,,,,,,,,,0.189286058,0.39184733,,,,,,,,,0.124280497,0.30327402,,,,,,,,,0.06812493,0.040251136,,,,,,,,,3.684190167,6.028844784,,,,,,,,,0.011307546,0.035332309,,,,,,,,,0.213907979,0.372421705,,,,,,,,,89.55385845,99.65253101,,,,,,,,,1050.753496,1065.995223,,,,,,,,,0.068611965,0.117013908,,,,,,,,,0.039186785,0.039190209,,,,,,,,,6.326821296,8.165631471,,,,,,,,,0.035031723,0.08120163,,,,,,,,,0.138436435,0.238449869,,,,,,,,,0.071934058,0.16016115,,,,,,,,,0.063260981,0.024162788,,,,,,,,,4.025666376,6.981603051,,,,,,,,,0.012782025,0.040232012,,,,,,,,,0.207414765,0.358492799,,,,,,,,,90.43374268,98.08199467,,,,,,,,,1019.818866,1036.225404,,,,,,,,,0.063926389,0.109040339,,,,,,,,,0.038563639,0.038567786,,,,,,,,,6.342750711,8.061627672,,,,,,,,,0.039379562,0.091657527,,,,,,,,,0.141396576,0.254568463,,,,,,,,,0.079244982,0.179143906,,,,,,,,,0.068430003,0.023597444,,,,,,,,,3.825501037,6.474348701,,,,,,,,,0.010987272,0.033129222,,,,,,,,,0.20353001,0.34909415,,,,,,,,,87.571845,96.85865707,,,,,,,,,1041.247712,1054.147734,,,,,,,,,0.065472814,0.112036693,,,,,,,,,0.038650625,0.038654077,,,,,,,,,6.243168494,8.032361456,,,,,,,,,0.034859678,0.078952599,,,,,,,,,0.132474374,0.227741478,,,,,,,,,0.070753816,0.154809632,,,,,,,,,0.063379475,0.032904481,,,,,,,,,3.885364829,6.669558306,,,,,,,,,0.015216725,0.048189735,,,,,,,,,0.209181387,0.367882759,,,,,,,,,90.54139726,103.4709099,,,,,,,,,1035.047057,1053.364998,,,,,,,,,0.065857983,0.112360315,,,,,,,,,0.038733453,0.038736991,,,,,,,,,6.897995873,8.804261775,,,,,,,,,0.046526784,0.108200678,,,,,,,,,0.158439777,0.293509063,,,,,,,,,0.092452237,0.211709265,,,,,,,,,0.061759893,0.037066379,,,,,,,,,3.844002029,6.567067953,,,,,,,,,0.011667106,0.034575435,,,,,,,,,0.197377036,0.349601718,,,,,,,,,84.01803639,100.2684147,,,,,,,,,1036.1403,1054.705848,,,,,,,,,0.068626204,0.117763809,,,,,,,,,0.038931057,0.038934066,,,,,,,,,6.394483732,8.32700144,,,,,,,,,0.037338665,0.083330905,,,,,,,,,0.139442777,0.2384803,,,,,,,,,0.074690552,0.162065875,,,,,,,,,0.029725775,0.013945,,,,,,,,,3.665271389,6.575112041,,,,,,,, +Heavy duty short haul truck,E10,2000,0.011994112,0.017613049,0.052853621,,,,,,,,0.035259111,0.042208083,0.226363791,,,,,,,,41.98529242,49.38357234,85.12365595,,,,,,,,1009.002576,1013.852911,1040.236796,,,,,,,,0.089115838,0.112860455,0.176005281,,,,,,,,0.038629011,0.038629215,0.038632746,,,,,,,,4.787694851,5.101311565,6.95518887,,,,,,,,0.0402146,0.055622275,0.115765916,,,,,,,,0.141779892,0.172337981,0.306833071,,,,,,,,0.079412875,0.106501209,0.225538852,,,,,,,,0.046716348,0.022461646,0.020731081,,,,,,,,1.938617933,2.35222471,5.091786754,,,,,,,,0.010463571,0.015295062,0.044955167,,,,,,,,0.034965356,0.04145356,0.220569528,,,,,,,,42.57516792,49.48073467,84.69140749,,,,,,,,1018.071682,1022.445167,1046.046015,,,,,,,,0.088314139,0.111561195,0.173221283,,,,,,,,0.038612798,0.038613192,0.038616849,,,,,,,,4.795030917,5.06831137,6.89840938,,,,,,,,0.035450317,0.048946661,0.100941228,,,,,,,,0.132935299,0.159478355,0.275021125,,,,,,,,0.07106347,0.094600455,0.19687368,,,,,,,,0.052366794,0.022828184,0.020846848,,,,,,,,1.99814678,2.401048856,5.164158839,,,,,,,,0.010910108,0.016163807,0.051446432,,,,,,,,0.040262226,0.045946169,0.244776864,,,,,,,,48.26976869,53.80343459,92.39431671,,,,,,,,1036.387148,1041.374258,1067.907911,,,,,,,,0.094462596,0.119246996,0.184941933,,,,,,,,0.039298898,0.0393001,0.039303312,,,,,,,,5.018866799,5.116271455,7.011856961,,,,,,,,0.035710641,0.049499557,0.107975339,,,,,,,,0.140554017,0.167416579,0.299073244,,,,,,,,0.073086055,0.096911147,0.21344184,,,,,,,,0.075734768,0.02375854,0.021282543,,,,,,,,2.290008593,2.640999313,5.574501407,,,,,,,,0.011627492,0.017179161,0.0537235,,,,,,,,0.036001043,0.041697667,0.220612675,,,,,,,,44.77236698,50.37488783,85.22252474,,,,,,,,998.6811509,1003.042863,1026.739451,,,,,,,,0.084166072,0.106456026,0.165655792,,,,,,,,0.038229285,0.03822906,0.038232923,,,,,,,,4.801776943,5.004771567,6.659226686,,,,,,,,0.03834964,0.053122377,0.114276949,,,,,,,,0.134852346,0.164324211,0.30106691,,,,,,,,0.07629815,0.102421827,0.223446456,,,,,,,,0.067916706,0.039477406,0.020462086,,,,,,,,2.100480286,2.438027933,5.043485191,,,,,,,,0.006114362,0.008868011,0.025444806,,,,,,,,0.03543117,0.041790722,0.217454323,,,,,,,,43.23619301,50.21433024,85.22140628,,,,,,,,1050.82032,1054.003914,1070.643352,,,,,,,,0.093146134,0.117578576,0.182339776,,,,,,,,0.039177867,0.039178556,0.039181822,,,,,,,,4.627045962,4.867652669,6.702346792,,,,,,,,0.021033091,0.028932293,0.059629172,,,,,,,,0.109002123,0.12428425,0.191629393,,,,,,,,0.046111797,0.059692038,0.119331105,,,,,,,,0.063252909,0.023893064,0.021337055,,,,,,,,2.249612726,2.69398991,5.849334638,,,,,,,,0.006882973,0.010000042,0.028962942,,,,,,,,0.034189838,0.039711828,0.208964652,,,,,,,,43.46557282,49.18908175,83.27625019,,,,,,,,1019.125834,1022.487764,1040.051655,,,,,,,,0.086781592,0.109558837,0.169930859,,,,,,,,0.038553601,0.038554659,0.038558334,,,,,,,,4.66859125,4.830879037,6.590792671,,,,,,,,0.023587061,0.03246577,0.067286803,,,,,,,,0.108156491,0.125236184,0.201786139,,,,,,,,0.050025809,0.06518933,0.132968629,,,,,,,,0.068383621,0.023291108,0.020727387,,,,,,,,2.144822257,2.522911086,5.427341632,,,,,,,,0.006178422,0.008893423,0.024171356,,,,,,,,0.033466809,0.038998383,0.201955726,,,,,,,,41.99870428,48.41861291,81.53389353,,,,,,,,1042.375133,1045.192324,1059.859212,,,,,,,,0.088697848,0.112190197,0.174583089,,,,,,,,0.038640858,0.038641325,0.038644918,,,,,,,,4.57970334,4.812568416,6.526124783,,,,,,,,0.021658838,0.029742128,0.059131032,,,,,,,,0.104801944,0.120570816,0.184291348,,,,,,,,0.046465771,0.060471283,0.116900943,,,,,,,,0.063443174,0.032618066,0.021122137,,,,,,,,2.165698318,2.546184717,5.539943602,,,,,,,,0.008364887,0.012167714,0.035005279,,,,,,,,0.034739971,0.040845485,0.211921671,,,,,,,,43.54763654,51.42104813,86.49160474,,,,,,,,1033.51462,1037.132018,1056.385523,,,,,,,,0.089390702,0.112866926,0.175103699,,,,,,,,0.0387237,0.038724218,0.038727808,,,,,,,,5.064895906,5.318751584,7.072563452,,,,,,,,0.028643996,0.039473329,0.080736504,,,,,,,,0.120723173,0.142065472,0.232643355,,,,,,,,0.059284908,0.078222491,0.158412184,,,,,,,,0.061629482,0.036516558,0.018884858,,,,,,,,2.164106459,2.58666469,5.445992866,,,,,,,,0.006814819,0.009776934,0.025610784,,,,,,,,0.032911675,0.039524477,0.205286937,,,,,,,,40.99976706,51.09627886,86.5932946,,,,,,,,1033.371918,1036.880683,1055.899774,,,,,,,,0.092799865,0.117574064,0.183486711,,,,,,,,0.038921961,0.038922176,0.038925501,,,,,,,,4.659576071,5.001361904,6.807065825,,,,,,,,0.024121748,0.033119945,0.063902496,,,,,,,,0.111984717,0.129619835,0.196216657,,,,,,,,0.050608401,0.066268231,0.12524292,,,,,,,,0.029612172,0.013674535,0.010027975,,,,,,,,2.015081077,2.483748742,5.534998218,,,,,,, +Heavy duty short haul truck,E10,2005,0.004449662,0.006792586,0.009513058,0.037918942,,,,,,,0.019614135,0.018555589,0.024179128,0.133934368,,,,,,,15.2057718,26.72824181,35.6814177,73.81260643,,,,,,,1008.074331,1009.749925,1016.192888,1046.250366,,,,,,,0.026816628,0.02967386,0.03957654,0.165309789,,,,,,,0.038629066,0.038629261,0.038629224,0.03863025,,,,,,,3.637374633,4.124054853,4.493184422,4.951234187,,,,,,,0.015644906,0.023184177,0.029831055,0.084193654,,,,,,,0.09564352,0.110407822,0.124252413,0.240417219,,,,,,,0.035983148,0.04902205,0.061242014,0.165330946,,,,,,,0.046668524,0.022370798,0.020251903,0.006950307,,,,,,,0.807680892,1.255520167,1.622041149,4.335846716,,,,,,,0.004031826,0.006004871,0.008366446,0.032395276,,,,,,,0.019202468,0.017932388,0.023221206,0.129233533,,,,,,,15.31222521,26.68632026,35.43771289,72.50268121,,,,,,,1017.43478,1018.878724,1024.693398,1052.066445,,,,,,,0.026620634,0.029419043,0.0391174,0.162521163,,,,,,,0.038612888,0.038613259,0.038613256,0.038614316,,,,,,,3.645950826,4.088214808,4.447642865,4.886536712,,,,,,,0.014265441,0.020769827,0.026766174,0.073820157,,,,,,,0.093638837,0.106294657,0.118703923,0.218473949,,,,,,,0.03364792,0.044820979,0.055770791,0.145375284,,,,,,,0.052329717,0.022748805,0.020421312,0.006988945,,,,,,,0.828635431,1.268159273,1.62307151,4.337012941,,,,,,,0.004415295,0.005373878,0.007482799,0.036494083,,,,,,,0.021633901,0.018769998,0.024266078,0.142962597,,,,,,,17.00868648,29.02835361,39.06594268,78.95754098,,,,,,,1035.596276,1037.312258,1043.85254,1074.526217,,,,,,,0.028487301,0.0314714,0.041811241,0.173459604,,,,,,,0.039298968,0.039300154,0.039300142,0.039301076,,,,,,,3.828856611,4.122708049,4.4881843,4.987638306,,,,,,,0.015050681,0.018583669,0.023932281,0.077415748,,,,,,,0.102136379,0.108726067,0.119828613,0.234726134,,,,,,,0.03613957,0.041942584,0.051733139,0.154875179,,,,,,,0.075681477,0.023668034,0.020803133,0.007138146,,,,,,,0.93340493,1.342933893,1.707958386,4.656803787,,,,,,,0.004568901,0.006492976,0.00914646,0.038262351,,,,,,,0.018982197,0.018500325,0.022426819,0.130257869,,,,,,,15.61958635,28.50814606,34.68186794,72.64078396,,,,,,,998.1521037,999.5149678,1005.39298,1033.201865,,,,,,,0.025348539,0.028031021,0.037329043,0.155509279,,,,,,,0.038229343,0.038229094,0.038229071,0.038230199,,,,,,,3.649551868,4.202991616,4.341079884,4.736761805,,,,,,,0.015761834,0.021944896,0.028286201,0.082286243,,,,,,,0.091904115,0.104068601,0.11704436,0.23335989,,,,,,,0.035889293,0.046630631,0.058084147,0.162205429,,,,,,,0.067881582,0.039350702,0.020036666,0.006863626,,,,,,,0.865147421,1.3063903,1.575368964,4.242749062,,,,,,,0.002701717,0.004087851,0.005721717,0.018779555,,,,,,,0.018950609,0.017807701,0.022802422,0.125389449,,,,,,,16.05243329,27.32553167,35.85782828,72.30763634,,,,,,,1050.972736,1051.800091,1056.080042,1076.986653,,,,,,,0.028091061,0.031032569,0.04122617,0.171016858,,,,,,,0.039177924,0.039178568,0.039178566,0.039179542,,,,,,,3.518117093,3.867775117,4.222386315,4.764711223,,,,,,,0.009693084,0.014372351,0.018808706,0.044943372,,,,,,,0.089814045,0.098849029,0.107928689,0.162123543,,,,,,,0.02623838,0.03420588,0.042207582,0.091619538,,,,,,,0.063259598,0.023843375,0.021046818,0.007154491,,,,,,,0.939083194,1.418011187,1.782781895,4.781725786,,,,,,,0.003015982,0.004146854,0.005756866,0.021118217,,,,,,,0.018048164,0.016336647,0.021010376,0.120266183,,,,,,,15.70335611,26.61992529,35.12769279,70.08927716,,,,,,,1019.13868,1020.091037,1024.553186,1046.187192,,,,,,,0.026169499,0.028911847,0.038414364,0.15939144,,,,,,,0.038553669,0.038554694,0.038554671,0.038555757,,,,,,,3.565762333,3.87419856,4.214039473,4.652652498,,,,,,,0.010745602,0.014676552,0.019091779,0.049971463,,,,,,,0.085427529,0.092922183,0.101951193,0.166451339,,,,,,,0.027328098,0.033935278,0.041895533,0.100268511,,,,,,,0.068384686,0.023237386,0.020418518,0.006949889,,,,,,,0.88862818,1.296046603,1.62891362,4.438356743,,,,,,,0.002726221,0.004005077,0.00553413,0.017791487,,,,,,,0.017807924,0.017456057,0.021624341,0.117320496,,,,,,,15.53617529,27.5952184,34.87591019,70.26743521,,,,,,,1042.765603,1043.385605,1047.228873,1066.318991,,,,,,,0.02671342,0.029540866,0.039339739,0.16388705,,,,,,,0.038640978,0.038641406,0.038641383,0.038642402,,,,,,,3.486216535,3.939568034,4.18067032,4.65365718,,,,,,,0.009925833,0.014376172,0.01875117,0.044623118,,,,,,,0.0845362,0.093194412,0.101969877,0.155163096,,,,,,,0.02590639,0.033543273,0.041278794,0.089669717,,,,,,,0.063465944,0.032560696,0.02087043,0.007083625,,,,,,,0.909401099,1.377850372,1.691683719,4.552558944,,,,,,,0.003463866,0.004811954,0.00665494,0.025350789,,,,,,,0.018587681,0.018152727,0.021983493,0.12542654,,,,,,,15.96947729,29.50331259,36.45670644,75.15574286,,,,,,,1033.339489,1034.404253,1039.244647,1062.47555,,,,,,,0.026953813,0.029780036,0.039574459,0.164252896,,,,,,,0.038723733,0.038724245,0.038724221,0.038725266,,,,,,,3.820545195,4.21347967,4.354537751,5.045596308,,,,,,,0.012350254,0.016985175,0.021959531,0.059560997,,,,,,,0.091231313,0.100298204,0.110290838,0.189153251,,,,,,,0.030478252,0.038475788,0.047287075,0.118428947,,,,,,,0.061610858,0.036423584,0.018564883,0.006954249,,,,,,,0.90383613,1.379819545,1.657644349,4.548470256,,,,,,,0.002696095,0.003889685,0.005300931,0.018752632,,,,,,,0.016115802,0.015762944,0.020952482,0.125830381,,,,,,,14.02554508,26.11407009,35.90537831,79.07182259,,,,,,,1032.95375,1034.067798,1038.759803,1060.98785,,,,,,,0.027917616,0.030898563,0.04123013,0.172364075,,,,,,,0.038921981,0.038922165,0.038922182,0.038923134,,,,,,,3.043924026,2.620537129,2.919052601,4.976643742,,,,,,,0.00994877,0.014221276,0.018452352,0.048010565,,,,,,,0.087474137,0.095801463,0.104303193,0.164833957,,,,,,,0.02614551,0.03348868,0.040980435,0.095936943,,,,,,,0.029593433,0.013633043,0.009851758,0.006521112,,,,,,,0.797035997,1.203691359,1.552225301,4.749738759,,,,,, +Heavy duty short haul truck,E10,2010,,0.002168229,0.003702702,0.005897223,0.028337028,,,,,,,0.017190966,0.018584494,0.029408749,0.092983322,,,,,,,10.12491966,20.75323373,26.42360941,67.55156879,,,,,,,1007.438663,1010.144032,1018.683701,1055.026561,,,,,,,0.026089433,0.030546938,0.043767677,0.156890287,,,,,,,0.038629194,0.038629174,0.03862918,0.038629553,,,,,,,2.174672983,2.571198933,1.35271259,3.578642801,,,,,,,0.006650086,0.010658772,0.014785372,0.057599938,,,,,,,0.076708557,0.084601001,0.093256239,0.186645499,,,,,,,0.020047381,0.02729644,0.035145998,0.117618417,,,,,,,0.022319627,0.020131354,0.00676718,0.007008608,,,,,,,0.437161456,0.740280488,0.805741461,3.587413003,,,,,,,0.002035092,0.003434443,0.005407896,0.024371167,,,,,,,0.015779174,0.017221742,0.026889864,0.087867829,,,,,,,10.04104329,20.617255,25.71882289,65.66948034,,,,,,,1016.849973,1019.226811,1026.962824,1060.277323,,,,,,,0.025908608,0.030274098,0.043221958,0.15412694,,,,,,,0.038613171,0.038613161,0.038613194,0.038613547,,,,,,,2.157278274,2.547332016,1.33351654,3.520338751,,,,,,,0.00648977,0.01035059,0.01427433,0.051252928,,,,,,,0.077039416,0.084551126,0.09265707,0.17296781,,,,,,,0.019788992,0.026704872,0.034071136,0.104972383,,,,,,,0.022703634,0.020312362,0.006822179,0.00704349,,,,,,,0.451533114,0.752550219,0.810443986,3.554218109,,,,,,,0.001815752,0.003063941,0.005629459,0.027323162,,,,,,,0.017013839,0.018433294,0.029017048,0.096206391,,,,,,,11.10344874,22.67656931,27.22663659,71.03854233,,,,,,,1035.011871,1037.709297,1046.399084,1083.674402,,,,,,,0.027728735,0.032383004,0.046187292,0.164464083,,,,,,,0.039300093,0.039300097,0.039300084,0.03930042,,,,,,,2.171119921,2.560375023,1.348980208,3.611527508,,,,,,,0.005784378,0.009223673,0.013870681,0.053274193,,,,,,,0.082157717,0.088779292,0.098605935,0.185533988,,,,,,,0.019384674,0.025544232,0.034455152,0.111194287,,,,,,,0.023616716,0.020680705,0.006951296,0.007198917,,,,,,,0.485663248,0.79943345,0.867715523,3.801924651,,,,,,,0.002090382,0.003583125,0.00584047,0.028596173,,,,,,,0.017753164,0.017747833,0.028040056,0.089518925,,,,,,,10.73070268,20.19834066,25.26029641,65.23131692,,,,,,,997.4981978,999.864163,1007.702023,1041.683965,,,,,,,0.024665475,0.028850777,0.04126423,0.147534319,,,,,,,0.038229016,0.038229018,0.038229021,0.038229429,,,,,,,2.213623981,2.487419524,1.30306263,3.418896065,,,,,,,0.006318416,0.010142572,0.0142887,0.056269089,,,,,,,0.07199893,0.079476672,0.088241721,0.180481649,,,,,,,0.019034424,0.025896393,0.033828531,0.115294493,,,,,,,0.039277777,0.019926483,0.006694229,0.006919973,,,,,,,0.481511528,0.739821075,0.804137512,3.47407481,,,,,,,0.001771982,0.002920122,0.0042298,0.014893547,,,,,,,0.013878218,0.015728578,0.023663663,0.082171768,,,,,,,10.08080861,20.86974242,25.58825448,65.09930398,,,,,,,1050.487564,1052.038037,1057.823714,1083.961917,,,,,,,0.027342847,0.031931298,0.04554037,0.162146221,,,,,,,0.03917852,0.039178527,0.039178511,0.039178859,,,,,,,2.029571366,2.398647822,1.264492209,3.446600174,,,,,,,0.006078181,0.00960973,0.012662238,0.0339925,,,,,,,0.081296727,0.087976914,0.093990078,0.14015776,,,,,,,0.019604107,0.025809222,0.031342156,0.072027099,,,,,,,0.023813759,0.020966267,0.00702719,0.007200828,,,,,,,0.534112035,0.85930815,0.909439389,3.846834233,,,,,,,0.00170207,0.00280518,0.004333068,0.016383236,,,,,,,0.013135552,0.014721345,0.022514701,0.078663796,,,,,,,9.919040136,20.43043149,24.50667538,62.60142303,,,,,,,1018.67763,1020.341087,1026.353566,1053.233204,,,,,,,0.025472275,0.029749638,0.042436077,0.151130599,,,,,,,0.038554592,0.03855459,0.038554611,0.038554997,,,,,,,2.037016071,2.4071965,1.256355589,3.351289889,,,,,,,0.005834409,0.009224003,0.012649165,0.036665108,,,,,,,0.074398197,0.080842309,0.087705266,0.139684774,,,,,,,0.018377017,0.024342285,0.03060453,0.076446477,,,,,,,0.023205651,0.020334576,0.006818131,0.006996696,,,,,,,0.494949167,0.782030479,0.837759492,3.572209571,,,,,,,0.001747719,0.002854534,0.004054843,0.013867837,,,,,,,0.013579426,0.014862473,0.022514498,0.077426655,,,,,,,10.27532857,20.27616897,25.46657568,64.12685416,,,,,,,1042.277685,1043.589183,1048.823561,1072.959487,,,,,,,0.025994016,0.030404814,0.043486877,0.155481829,,,,,,,0.038641307,0.038641321,0.038641314,0.038641718,,,,,,,2.069745344,2.381616349,1.253573255,3.367190049,,,,,,,0.006151885,0.009698211,0.012700887,0.033468314,,,,,,,0.075845238,0.082513163,0.088367634,0.132805801,,,,,,,0.019036991,0.025204313,0.030577398,0.069745989,,,,,,,0.032525567,0.020797893,0.006967402,0.007127739,,,,,,,0.518576555,0.8131523,0.865271323,3.664689352,,,,,,,0.001803078,0.002991251,0.004732902,0.019279105,,,,,,,0.015155175,0.015817726,0.025268341,0.084340079,,,,,,,11.15610019,21.15874272,27.04313435,68.63240037,,,,,,,1032.817553,1034.682836,1041.176002,1069.84086,,,,,,,0.026234828,0.030643583,0.043719763,0.155746563,,,,,,,0.038724169,0.038724179,0.038724187,0.038724543,,,,,,,2.216119018,2.480895574,1.395530115,3.642679322,,,,,,,0.006061605,0.009605457,0.013446541,0.042511111,,,,,,,0.077519794,0.084214367,0.091971004,0.154817803,,,,,,,0.019193581,0.025393093,0.032455061,0.087904119,,,,,,,0.036369358,0.018480421,0.006814252,0.00700259,,,,,,,0.516813749,0.786669806,0.869416873,3.683083423,,,,,,,0.001654612,0.002684181,0.004104324,0.014352548,,,,,,,0.012447505,0.014624909,0.025830148,0.085528141,,,,,,,10.17086459,20.70925019,29.39680398,74.15810867,,,,,,,1032.457022,1034.344999,1040.600963,1067.739137,,,,,,,0.027158929,0.031809481,0.045602706,0.163604393,,,,,,,0.038922118,0.038922124,0.038922131,0.038922474,,,,,,,1.33523402,1.582639427,1.347639624,3.621780775,,,,,,,0.00593668,0.009339546,0.013001727,0.035350364,,,,,,,0.078385801,0.084745584,0.09196764,0.139509836,,,,,,,0.018970262,0.024879928,0.031473574,0.073380487,,,,,,,0.013609482,0.009807048,0.006395252,0.006562723,,,,,,,0.44959921,0.705047668,0.885048224,3.879434287,,,,, +Heavy duty short haul truck,E10,2015,,,0.001833894,0.003221295,0.005159314,0.014350192,,,,,,,0.014766316,0.01758554,0.028656284,0.066172334,,,,,,,6.126430605,11.61102851,19.22681954,45.04981457,,,,,,,1005.440855,1008.255126,1015.191417,1044.684234,,,,,,,0.007125952,0.008496589,0.011578714,0.052741959,,,,,,,0.038641011,0.038642229,0.03864308,0.03863965,,,,,,,0.953621291,0.544134002,0.621492601,1.39278213,,,,,,,0.005891601,0.009798341,0.014051965,0.028640887,,,,,,,0.074122582,0.081975686,0.090976131,0.12431374,,,,,,,0.018496241,0.025443245,0.033405189,0.062759603,,,,,,,0.020037622,0.006697903,0.006743981,0.006939904,,,,,,,0.308602103,0.396620649,0.542639673,1.71621295,,,,,,,0.001748584,0.003069078,0.004843304,0.012769038,,,,,,,0.013329598,0.01606558,0.02635089,0.060980207,,,,,,,6.040912652,11.29812866,18.61852153,43.36880864,,,,,,,1014.867638,1017.331048,1023.595298,1050.644591,,,,,,,0.007076406,0.00841875,0.01143725,0.051821981,,,,,,,0.038625118,0.038626347,0.038627169,0.038623734,,,,,,,0.94506805,0.53727294,0.612530538,1.365546838,,,,,,,0.005780005,0.009621249,0.013706885,0.026772258,,,,,,,0.07456511,0.08224505,0.090810157,0.120410383,,,,,,,0.018347328,0.025141154,0.032718016,0.058764213,,,,,,,0.020225494,0.006758194,0.00679981,0.006979499,,,,,,,0.326973604,0.413493243,0.55761109,1.705114549,,,,,,,0.001556627,0.003052712,0.004925341,0.013855204,,,,,,,0.014438278,0.017302973,0.028187706,0.065295619,,,,,,,6.805224583,11.94681289,19.71044803,46.14841702,,,,,,,1033.032354,1035.849429,1042.906722,1073.120475,,,,,,,0.007573498,0.009004635,0.012222805,0.055300042,,,,,,,0.039311077,0.0393122,0.039312961,0.039309802,,,,,,,0.94862301,0.540208759,0.618098142,1.401069733,,,,,,,0.005147357,0.009153173,0.013172642,0.026945309,,,,,,,0.079711522,0.087821789,0.096363171,0.128101168,,,,,,,0.018056993,0.025231491,0.032787347,0.060707854,,,,,,,0.0205875,0.006881216,0.006928095,0.007128808,,,,,,,0.35439448,0.447777737,0.597543339,1.801568471,,,,,,,0.001752978,0.00312593,0.005036726,0.014325791,,,,,,,0.014279626,0.016697903,0.027105141,0.062704315,,,,,,,5.90077793,11.07313128,18.21070278,42.50165638,,,,,,,995.5059704,997.9636893,1004.309863,1031.877561,,,,,,,0.006736952,0.008023889,0.010917809,0.049601128,,,,,,,0.038241361,0.038242623,0.038243507,0.038239949,,,,,,,0.921112014,0.525620665,0.599687196,1.332342865,,,,,,,0.005579889,0.009380772,0.013490043,0.027874326,,,,,,,0.069433635,0.077092937,0.085821767,0.118885279,,,,,,,0.017443329,0.024218904,0.031940562,0.061063493,,,,,,,0.01983963,0.006629536,0.006671694,0.006854829,,,,,,,0.34471702,0.423514664,0.558111531,1.658963649,,,,,,,0.001570736,0.002636471,0.004012008,0.009063083,,,,,,,0.010914433,0.01378787,0.02322573,0.054175275,,,,,,,5.98968709,11.25473399,18.45687655,42.61881428,,,,,,,1048.61113,1050.200846,1054.84322,1076.071297,,,,,,,0.007468101,0.008878994,0.012051647,0.054520887,,,,,,,0.039189654,0.039190778,0.039191585,0.039188365,,,,,,,0.884055214,0.501106329,0.573178495,1.320167083,,,,,,,0.005465304,0.008851522,0.012428422,0.021664484,,,,,,,0.07897195,0.08565246,0.092987192,0.113477578,,,,,,,0.018365821,0.024275548,0.030763946,0.048738031,,,,,,,0.020897971,0.006976551,0.007007391,0.007148409,,,,,,,0.408146559,0.497998115,0.656126751,1.875876908,,,,,,,0.001504384,0.002649746,0.004061725,0.009505742,,,,,,,0.010624945,0.013281429,0.022215129,0.051778442,,,,,,,5.936626747,10.76687644,17.62156421,40.67823699,,,,,,,1016.759463,1018.464777,1023.293408,1045.136414,,,,,,,0.006957188,0.008272437,0.011229996,0.050816652,,,,,,,0.038566516,0.038567758,0.038568579,0.038565145,,,,,,,0.88894191,0.503392957,0.573956225,1.289839106,,,,,,,0.005240966,0.00878099,0.012363301,0.022092085,,,,,,,0.072225761,0.079234379,0.086612349,0.108278686,,,,,,,0.017184289,0.023384214,0.029910937,0.048942105,,,,,,,0.020263192,0.006765726,0.006797803,0.006942907,,,,,,,0.380151301,0.462569143,0.606459848,1.734166266,,,,,,,0.001557375,0.002597214,0.003886764,0.008368482,,,,,,,0.01031595,0.013136461,0.022215239,0.05180048,,,,,,,5.89341045,11.22865898,18.54483299,43.02477021,,,,,,,1040.401619,1041.737345,1045.917493,1065.526011,,,,,,,0.007099807,0.008456069,0.011505866,0.052272876,,,,,,,0.038653103,0.038654305,0.03865515,0.038651757,,,,,,,0.878639194,0.498883933,0.569494309,1.296309013,,,,,,,0.005540462,0.008965429,0.012510808,0.021284584,,,,,,,0.073589476,0.080315117,0.087524839,0.106708428,,,,,,,0.017782423,0.023732066,0.030109898,0.046942531,,,,,,,0.020734365,0.006920327,0.006948097,0.007078357,,,,,,,0.391943974,0.476617377,0.627520077,1.795323443,,,,,,,0.001576243,0.002827399,0.004362705,0.010612896,,,,,,,0.011759835,0.014943616,0.024908299,0.057893129,,,,,,,6.285939113,11.91245878,19.7217177,45.98163901,,,,,,,1030.884155,1032.802554,1038.032571,1061.320985,,,,,,,0.007165476,0.00852112,0.011569533,0.052368283,,,,,,,0.038735962,0.038737157,0.038737987,0.038734598,,,,,,,0.916824979,0.561180679,0.638934307,1.421347712,,,,,,,0.005428496,0.009256575,0.013067401,0.024025791,,,,,,,0.075129177,0.082728172,0.090610079,0.11511471,,,,,,,0.017844676,0.024566912,0.0315394,0.053074387,,,,,,,0.018410622,0.006759245,0.006793636,0.006946648,,,,,,,0.385513486,0.47535546,0.622768353,1.787680965,,,,,,,0.001476395,0.002642884,0.003941533,0.008435741,,,,,,,0.010371362,0.015054166,0.025671595,0.059892403,,,,,,,6.453380482,13.02814709,21.89741615,51.56019095,,,,,,,1030.554946,1032.484398,1037.527895,1059.624742,,,,,,,0.0074181,0.008848091,0.012063684,0.054997474,,,,,,,0.038933631,0.038934814,0.038935633,0.038932313,,,,,,,0.567199139,0.53175694,0.609217807,1.410252272,,,,,,,0.005349934,0.009196669,0.012826305,0.021829879,,,,,,,0.076166004,0.083763117,0.091131071,0.110740101,,,,,,,0.017790613,0.024511148,0.031028942,0.048229791,,,,,,,0.009769062,0.006345168,0.006376316,0.006512677,,,,,,,0.347151153,0.460701667,0.626911528,1.90962519,,,, +Heavy duty short haul truck,E10,2020,,,,0.001890697,0.00329163,0.005215795,0.011845691,,,,,,,0.015260892,0.018034669,0.028996176,0.066171245,,,,,,,5.899740293,11.9276132,19.31576593,38.76608654,,,,,,,954.1985289,956.966223,963.9828651,1002.020423,,,,,,,0.007500262,0.00885044,0.012107889,0.02790589,,,,,,,0.038653369,0.038653388,0.03865338,0.038650284,,,,,,,0.39110086,0.478547661,0.531173291,0.745549052,,,,,,,0.006045541,0.009944964,0.014085144,0.024369533,,,,,,,0.07437652,0.08228946,0.091083971,0.114586786,,,,,,,0.018720885,0.025720803,0.033500605,0.054297105,,,,,,,0.006338802,0.006357188,0.0064038,0.006656485,,,,,,,0.272682912,0.375752523,0.50045275,1.164170159,,,,,,,0.001816386,0.003137112,0.004898192,0.01075618,,,,,,,0.013695227,0.016493504,0.026653305,0.060805176,,,,,,,5.717410337,11.58389991,18.66809827,37.24970652,,,,,,,963.0636492,965.5057141,971.8561317,1007.951547,,,,,,,0.007442996,0.008765296,0.011955492,0.027436931,,,,,,,0.038637602,0.038637582,0.03863755,0.038634443,,,,,,,0.386298426,0.472227239,0.523073963,0.730560477,,,,,,,0.005954488,0.009765183,0.013738336,0.023264902,,,,,,,0.074864082,0.082552081,0.09091358,0.112426303,,,,,,,0.018611774,0.025412761,0.032809536,0.051845595,,,,,,,0.006397692,0.006413915,0.006456104,0.006695887,,,,,,,0.289253307,0.390872832,0.512977762,1.167917867,,,,,,,0.001786317,0.003123094,0.004984354,0.011469654,,,,,,,0.014953573,0.017740763,0.028516297,0.064996401,,,,,,,6.043329765,12.25100806,19.76842421,39.51649193,,,,,,,980.4369221,983.2036651,990.3408551,1029.331533,,,,,,,0.007964335,0.009374106,0.012775333,0.029283646,,,,,,,0.039322533,0.039322518,0.039322524,0.039319648,,,,,,,0.388001518,0.47498597,0.528145608,0.745751439,,,,,,,0.005640384,0.009294954,0.013209237,0.023071637,,,,,,,0.080690859,0.088127208,0.096479139,0.119131961,,,,,,,0.018923314,0.025501666,0.032889945,0.052935079,,,,,,,0.006513105,0.006531485,0.006578897,0.006837915,,,,,,,0.316245018,0.423407939,0.550348409,1.23318769,,,,,,,0.001827207,0.003191196,0.005086002,0.01171738,,,,,,,0.014636082,0.017107796,0.027427749,0.062642432,,,,,,,5.609737552,11.33934799,18.24220471,36.38078698,,,,,,,944.6643965,947.1024373,953.535438,989.7954336,,,,,,,0.007088408,0.008356137,0.011414664,0.026252487,,,,,,,0.038254242,0.03825426,0.038254255,0.038251011,,,,,,,0.377218149,0.462086437,0.512228773,0.715456851,,,,,,,0.005778183,0.009516312,0.013514039,0.023605226,,,,,,,0.069779884,0.077383282,0.08590761,0.109082245,,,,,,,0.01774963,0.024475725,0.032016511,0.052522396,,,,,,,0.006275465,0.006291662,0.006334396,0.006575274,,,,,,,0.306813761,0.399875637,0.515046388,1.136300538,,,,,,,0.001591022,0.002696442,0.004060641,0.008156289,,,,,,,0.01092185,0.014182894,0.023407309,0.053576794,,,,,,,5.646576414,11.51708286,18.46613632,36.56553017,,,,,,,994.9630083,996.5909916,1001.328834,1032.93693,,,,,,,0.007853403,0.009243236,0.012596362,0.02887136,,,,,,,0.039201252,0.039201243,0.039201262,0.039198343,,,,,,,0.358817067,0.439910664,0.488418486,0.690006186,,,,,,,0.005514414,0.008983523,0.012455121,0.020085496,,,,,,,0.079023907,0.085931696,0.093076798,0.109760522,,,,,,,0.018411781,0.024522566,0.030843238,0.045607885,,,,,,,0.006609603,0.006620418,0.006651892,0.006861866,,,,,,,0.359741997,0.467409025,0.59829277,1.31850811,,,,,,,0.001592779,0.002709569,0.004109806,0.008410672,,,,,,,0.010769403,0.013666638,0.02243208,0.051305174,,,,,,,5.406822137,11.00787172,17.61675133,34.83826263,,,,,,,964.6970207,966.4347479,971.3597781,1003.07245,,,,,,,0.007316379,0.008611989,0.011737778,0.026908954,,,,,,,0.038579014,0.038579001,0.038578985,0.038575859,,,,,,,0.360743905,0.441967717,0.489220902,0.683144196,,,,,,,0.005462997,0.008911229,0.012388425,0.020166491,,,,,,,0.072626878,0.079510512,0.086698834,0.103822977,,,,,,,0.01753908,0.02362849,0.029987444,0.045141213,,,,,,,0.006408544,0.006420087,0.006452805,0.006663474,,,,,,,0.337952903,0.43494107,0.554806231,1.216647018,,,,,,,0.001578384,0.002651752,0.003926524,0.007574437,,,,,,,0.010343777,0.01352242,0.022388158,0.051313898,,,,,,,5.661538089,11.52735808,18.61510275,37.14196283,,,,,,,987.0908232,988.4854774,992.7653161,1022.889621,,,,,,,0.007470186,0.008806213,0.012029482,0.02766653,,,,,,,0.038665427,0.03866546,0.038665445,0.038662356,,,,,,,0.357454207,0.437942012,0.48521881,0.681060771,,,,,,,0.005597865,0.009091573,0.012526077,0.019811181,,,,,,,0.073652857,0.080579925,0.08758718,0.103291863,,,,,,,0.017838505,0.02396628,0.030165068,0.044063202,,,,,,,0.006557307,0.006566571,0.006595003,0.006795121,,,,,,,0.346294664,0.446993065,0.572076994,1.263476346,,,,,,,0.001693052,0.002889854,0.004412115,0.009192637,,,,,,,0.012285994,0.015373748,0.025165835,0.057614417,,,,,,,6.025412064,12.23817974,19.80990112,39.66137977,,,,,,,978.1621175,980.098789,985.4227898,1018.547099,,,,,,,0.00753569,0.008871099,0.012092917,0.027729616,,,,,,,0.038748258,0.038748254,0.038748273,0.038745193,,,,,,,0.403260938,0.492807624,0.544878522,0.75863728,,,,,,,0.005752304,0.009394748,0.013095843,0.021515712,,,,,,,0.075730216,0.083020279,0.090703354,0.109359832,,,,,,,0.018376392,0.024825325,0.031621899,0.048131372,,,,,,,0.00640158,0.006414332,0.006449338,0.006666629,,,,,,,0.346698836,0.447708273,0.571517116,1.244132846,,,,,,,0.001609378,0.002700572,0.003984357,0.007609647,,,,,,,0.011746827,0.015532846,0.025895552,0.059622523,,,,,,,6.629071878,13.47432748,22.13332499,44.92675845,,,,,,,977.8674869,979.8123426,984.9475139,1017.097884,,,,,,,0.007808621,0.009217256,0.012615768,0.029096304,,,,,,,0.038945626,0.038945625,0.038945625,0.038942643,,,,,,,0.381194543,0.467211813,0.519592215,0.738232041,,,,,,,0.005746611,0.00933553,0.012852718,0.020240719,,,,,,,0.076940102,0.084052231,0.091214653,0.107085398,,,,,,,0.01847539,0.024766918,0.031102916,0.04514818,,,,,,,0.006009447,0.006021475,0.006053187,0.006251245,,,,,,,0.324290244,0.434470862,0.573220293,1.325020992,,, +Heavy duty short haul truck,E10,2025,,,,,0.001909917,0.003312631,0.005232537,0.011806128,,,,,,,0.015222921,0.017365746,0.027026594,0.06496436,,,,,,,5.708044473,11.23066765,18.47765313,38.24486576,,,,,,,954.5600296,957.2523659,964.0424183,991.3955866,,,,,,,0.007694786,0.009018893,0.012194231,0.023487471,,,,,,,0.038653387,0.03865339,0.038653378,0.038652922,,,,,,,0.303127881,0.368063984,0.413830341,0.567321229,,,,,,,0.006057086,0.009945175,0.014096334,0.024407964,,,,,,,0.074413757,0.082309065,0.091118472,0.114620683,,,,,,,0.018753805,0.02573813,0.033531129,0.054326509,,,,,,,0.006341204,0.006359088,0.006404197,0.006585905,,,,,,,0.262556403,0.346349293,0.458668573,1.088115562,,,,,,,0.00183272,0.003154354,0.004912411,0.010757953,,,,,,,0.013596485,0.015801043,0.024722188,0.059616798,,,,,,,5.513560854,10.87025889,17.82028621,36.71483802,,,,,,,963.3963284,965.7690657,971.9140163,997.2036198,,,,,,,0.007633496,0.008930262,0.012040057,0.023100471,,,,,,,0.03863758,0.038637543,0.038637575,0.038637089,,,,,,,0.299118926,0.362878331,0.407108559,0.555117669,,,,,,,0.005963367,0.009761855,0.013747111,0.023342273,,,,,,,0.074894098,0.082562209,0.090941729,0.112563576,,,,,,,0.018638354,0.025421749,0.032834405,0.051966473,,,,,,,0.006399904,0.006415666,0.006456486,0.006624488,,,,,,,0.278526118,0.360588426,0.469981107,1.090438066,,,,,,,0.001806016,0.003144303,0.005001039,0.011440751,,,,,,,0.014893477,0.017059336,0.026552057,0.063897989,,,,,,,5.832461775,11.50474396,18.88014627,38.97607032,,,,,,,980.8089053,983.4987928,990.4042463,1018.430605,,,,,,,0.00816744,0.009549988,0.012865495,0.024657607,,,,,,,0.039322526,0.039322511,0.039322528,0.039322068,,,,,,,0.300427633,0.364996128,0.411057746,0.566422634,,,,,,,0.005653451,0.009296488,0.013220409,0.023112351,,,,,,,0.080731043,0.088149229,0.096513591,0.119178988,,,,,,,0.018958867,0.025521172,0.03292041,0.052976216,,,,,,,0.006515577,0.006533445,0.006579318,0.006765499,,,,,,,0.304989285,0.391353017,0.505742562,1.152585798,,,,,,,0.001846207,0.003211439,0.005101169,0.011623238,,,,,,,0.014638784,0.016525707,0.025642332,0.061617493,,,,,,,5.405564694,10.63273537,17.40617409,35.85248155,,,,,,,945.0059074,947.3737373,953.5948698,979.2561969,,,,,,,0.00727105,0.008514296,0.01149574,0.022099494,,,,,,,0.038254253,0.03825426,0.038254234,0.038253761,,,,,,,0.292103866,0.355124899,0.398870388,0.544320906,,,,,,,0.005789124,0.009515358,0.013522526,0.023576091,,,,,,,0.069815924,0.077400304,0.08593617,0.108952645,,,,,,,0.017781499,0.024490784,0.032041794,0.052407122,,,,,,,0.006277734,0.006293464,0.006334791,0.006505261,,,,,,,0.296254625,0.371907378,0.475873869,1.061257502,,,,,,,0.001600886,0.002705624,0.004069322,0.008231901,,,,,,,0.010653013,0.013344404,0.021339492,0.052157275,,,,,,,5.420686015,10.759261,17.57750837,36.00292892,,,,,,,995.2313506,996.8065828,1001.381116,1021.794055,,,,,,,0.008053636,0.009416634,0.012685247,0.024310586,,,,,,,0.039201256,0.039201265,0.039201262,0.039200819,,,,,,,0.27687732,0.336760987,0.378234771,0.518774409,,,,,,,0.005517509,0.008973712,0.012459019,0.020230876,,,,,,,0.079038239,0.085923563,0.093091558,0.110079464,,,,,,,0.018424465,0.024515341,0.030856289,0.045889528,,,,,,,0.006611385,0.006621849,0.006652239,0.006787842,,,,,,,0.34586797,0.431223173,0.546107227,1.222971279,,,,,,,0.001603645,0.002719888,0.004119227,0.008472328,,,,,,,0.01056631,0.012933387,0.020559329,0.050111985,,,,,,,5.185892559,10.27484092,16.75990763,34.29344142,,,,,,,964.9710241,966.6538589,971.4117348,992.2608795,,,,,,,0.007503035,0.00877362,0.011820637,0.02265782,,,,,,,0.038578995,0.038578983,0.038578974,0.038578506,,,,,,,0.278553708,0.338654279,0.379500142,0.516053341,,,,,,,0.005467316,0.008902586,0.012392922,0.020295774,,,,,,,0.072644154,0.079505331,0.086715287,0.104102159,,,,,,,0.017554398,0.023623929,0.030001999,0.045387605,,,,,,,0.006410363,0.006421544,0.00645315,0.006591652,,,,,,,0.325811118,0.402939963,0.508693769,1.131553494,,,,,,,0.001585506,0.002657275,0.003932214,0.007633354,,,,,,,0.010078682,0.012708007,0.020382049,0.049851458,,,,,,,5.458805125,10.81979493,17.77427681,36.66872552,,,,,,,987.3418996,988.6866744,992.8158115,1011.81514,,,,,,,0.007662671,0.008972889,0.012114922,0.023289851,,,,,,,0.038665461,0.038665448,0.038665425,0.038664975,,,,,,,0.275952434,0.335387384,0.375939278,0.512395109,,,,,,,0.005596677,0.009076,0.012525168,0.019928214,,,,,,,0.073657569,0.080558706,0.087591156,0.103548911,,,,,,,0.017842643,0.023947536,0.030168608,0.044290049,,,,,,,0.006558974,0.006567909,0.006595338,0.006721553,,,,,,,0.33293281,0.412850414,0.522386515,1.171622629,,,,,,,0.001705596,0.002902624,0.004423686,0.009240902,,,,,,,0.012111938,0.01461123,0.023152544,0.056318512,,,,,,,5.82126477,11.50857406,18.93496749,39.10389074,,,,,,,978.4525161,980.3307875,985.476494,1007.599175,,,,,,,0.007728082,0.009037705,0.012178322,0.023348382,,,,,,,0.038748248,0.038748258,0.038748274,0.038747783,,,,,,,0.311712163,0.378025568,0.423144237,0.574309389,,,,,,,0.00575845,0.009388952,0.013103609,0.021647079,,,,,,,0.075752135,0.083022118,0.090727256,0.109629974,,,,,,,0.018395788,0.024826941,0.031643038,0.048369854,,,,,,,0.006403488,0.006415857,0.006449689,0.006594983,,,,,,,0.334610028,0.415613612,0.525368166,1.159637422,,,,,,,0.001618018,0.002708503,0.003993462,0.007713125,,,,,,,0.011465207,0.014606165,0.023568484,0.058001058,,,,,,,6.457320644,12.78321785,21.27135729,44.4136617,,,,,,,978.1398094,980.0297164,984.9945979,1006.142934,,,,,,,0.008011563,0.009393002,0.012705839,0.024488084,,,,,,,0.038945627,0.038945639,0.038945619,0.038945175,,,,,,,0.294685285,0.358155186,0.402725847,0.555217598,,,,,,,0.005750567,0.009327175,0.012860487,0.020445922,,,,,,,0.076954645,0.084045168,0.091236148,0.107530107,,,,,,,0.018488266,0.024760649,0.031121957,0.045541085,,,,,,,0.006011127,0.006022816,0.006053479,0.006183924,,,,,,,0.312394117,0.400449509,0.522018994,1.231402291,, +Heavy duty short haul truck,E10,2030,,,,,,0.001924572,0.003326665,0.005227777,0.011764317,,,,,,,0.015663007,0.017559491,0.027202458,0.062802158,,,,,,,5.838236091,11.33478229,18.63630527,37.88767216,,,,,,,954.8843707,957.4451465,964.2423345,988.4670509,,,,,,,0.007840422,0.009105412,0.012283152,0.023265634,,,,,,,0.03865338,0.038653382,0.038653401,0.03865338,,,,,,,0.300105299,0.364763905,0.410438086,0.517712162,,,,,,,0.006067069,0.009956207,0.014066056,0.024311088,,,,,,,0.074444178,0.082340746,0.091064493,0.114422706,,,,,,,0.018780713,0.025766178,0.033483354,0.054146493,,,,,,,0.006343358,0.006360369,0.006405523,0.006566449,,,,,,,0.262965561,0.346056922,0.4564602,1.040284676,,,,,,,0.001845183,0.003166353,0.004907037,0.010723508,,,,,,,0.013983527,0.015974537,0.024885973,0.057523457,,,,,,,5.63661953,10.9680782,17.97036446,36.36008801,,,,,,,963.6944786,965.9478516,972.0986116,994.2701344,,,,,,,0.007776121,0.009015003,0.012127154,0.022882941,,,,,,,0.038637548,0.038637572,0.038637581,0.038637579,,,,,,,0.296087737,0.359590502,0.403736548,0.506285578,,,,,,,0.005971251,0.009770938,0.013716231,0.023252794,,,,,,,0.074918892,0.082588789,0.090886119,0.112385068,,,,,,,0.01866034,0.025445229,0.032785203,0.051803589,,,,,,,0.006401883,0.006416854,0.006457712,0.006605,,,,,,,0.278606132,0.360020061,0.466936233,1.041191655,,,,,,,0.001820606,0.003158242,0.004996651,0.01140171,,,,,,,0.01532719,0.017253902,0.02677628,0.061688739,,,,,,,5.9642484,11.60992957,19.05000368,38.58845266,,,,,,,981.142963,983.6981026,990.6093688,1015.425697,,,,,,,0.008319501,0.009640334,0.012958337,0.024425594,,,,,,,0.039322516,0.039322523,0.039322509,0.039322513,,,,,,,0.297421097,0.361711957,0.407639864,0.516576332,,,,,,,0.005663471,0.009307371,0.013190685,0.02302331,,,,,,,0.080761459,0.088180636,0.096460812,0.118997751,,,,,,,0.018985787,0.025548921,0.032873749,0.052810358,,,,,,,0.006517796,0.006534768,0.006580682,0.006745538,,,,,,,0.304610228,0.390470195,0.500959588,1.103545738,,,,,,,0.001860356,0.00322463,0.005087299,0.011591708,,,,,,,0.015069913,0.016716351,0.02584818,0.059581573,,,,,,,5.52583823,10.72786226,17.55687205,35.49210835,,,,,,,945.3121985,947.5562488,953.7840966,976.3695698,,,,,,,0.00740779,0.00859554,0.011579235,0.021891094,,,,,,,0.03825425,0.038254255,0.038254256,0.038254262,,,,,,,0.289149182,0.351904131,0.395455676,0.496866571,,,,,,,0.005797938,0.009524637,0.013477253,0.023496745,,,,,,,0.069843947,0.077428331,0.085848916,0.108792963,,,,,,,0.017806295,0.024515576,0.031964586,0.052261325,,,,,,,0.006279769,0.006294676,0.006336049,0.006486085,,,,,,,0.295538537,0.3708418,0.469894909,1.018568711,,,,,,,0.001608548,0.002713138,0.004063173,0.008212856,,,,,,,0.010938506,0.013482026,0.021478271,0.049976472,,,,,,,5.53793317,10.85184494,17.71651917,35.64607912,,,,,,,995.4719881,996.9500851,1001.530955,1018.820071,,,,,,,0.008203551,0.0095057,0.012776777,0.02408185,,,,,,,0.039201258,0.039201264,0.039201259,0.039201263,,,,,,,0.273969027,0.333631951,0.375018745,0.471174494,,,,,,,0.005521118,0.00897875,0.012429689,0.020158526,,,,,,,0.079051487,0.085939126,0.093037645,0.10994494,,,,,,,0.018436165,0.024529108,0.030808587,0.045765112,,,,,,,0.006612984,0.006622802,0.006653233,0.006768086,,,,,,,0.344813163,0.429656872,0.539479549,1.161689895,,,,,,,0.00161193,0.002727978,0.004113366,0.008450789,,,,,,,0.0108573,0.013071469,0.020709572,0.048101873,,,,,,,5.297647841,10.3629311,16.89646321,33.94381709,,,,,,,965.2163626,966.800333,971.5647759,989.3641437,,,,,,,0.00764278,0.008856649,0.011905967,0.022444598,,,,,,,0.038578971,0.038578979,0.038578989,0.038578982,,,,,,,0.27564008,0.33551683,0.376278923,0.469575366,,,,,,,0.005471468,0.008908078,0.012363304,0.02022225,,,,,,,0.072658837,0.079522181,0.086661184,0.103962568,,,,,,,0.017567411,0.023638846,0.029954138,0.045259277,,,,,,,0.006411994,0.006422516,0.006454167,0.006572409,,,,,,,0.324826427,0.401549066,0.502416327,1.077352829,,,,,,,0.001591112,0.002662644,0.003918615,0.007623065,,,,,,,0.010344676,0.012834966,0.020476736,0.047785236,,,,,,,5.580887217,10.9179081,17.93138959,36.30994379,,,,,,,987.5656101,988.8202823,992.9565566,1008.87626,,,,,,,0.007806776,0.009058497,0.012202913,0.023070227,,,,,,,0.038665444,0.038665443,0.038665447,0.038665475,,,,,,,0.273032706,0.332253205,0.372642534,0.465661861,,,,,,,0.005597095,0.009077561,0.012478471,0.019869435,,,,,,,0.073663546,0.080566507,0.087501641,0.103444167,,,,,,,0.017847961,0.023954447,0.030089388,0.04419242,,,,,,,0.006560461,0.006568795,0.006596273,0.006702029,,,,,,,0.331961254,0.411387111,0.516131972,1.112608674,,,,,,,0.001715416,0.002912322,0.004422289,0.009209496,,,,,,,0.012449978,0.01476865,0.023309963,0.05414827,,,,,,,5.951872292,11.61264189,19.07957235,38.7554399,,,,,,,978.713694,980.4865443,985.6375493,1004.653906,,,,,,,0.007872125,0.009123285,0.012266267,0.02312863,,,,,,,0.038748261,0.038748275,0.038748258,0.038748255,,,,,,,0.308486036,0.374555725,0.419689057,0.522843896,,,,,,,0.005764767,0.009396941,0.013084617,0.021556568,,,,,,,0.075771898,0.083044666,0.090694848,0.109453037,,,,,,,0.018413261,0.024846871,0.031614395,0.048208243,,,,,,,0.006405203,0.00641688,0.006450748,0.006575703,,,,,,,0.334156409,0.414623824,0.520786402,1.106063588,,,,,,,0.001625065,0.002715928,0.003999376,0.00768016,,,,,,,0.011775078,0.014757839,0.023714369,0.055527527,,,,,,,6.609014397,12.90645785,21.42568323,44.08181125,,,,,,,978.3839513,980.174691,985.145353,1003.207773,,,,,,,0.008163498,0.009483274,0.012798623,0.024256695,,,,,,,0.038945604,0.038945623,0.038945604,0.038945636,,,,,,,0.291659606,0.354892722,0.399614067,0.503909379,,,,,,,0.005755669,0.00933477,0.01286109,0.020344293,,,,,,,0.076969713,0.084064827,0.091242832,0.107333447,,,,,,,0.018501606,0.024778062,0.031127885,0.045361903,,,,,,,0.006012632,0.00602371,0.006054407,0.006165881,,,,,,,0.312657656,0.39991379,0.520136382,1.166038073, +Heavy duty short haul truck,E10,2035,,,,,,,0.001933348,0.003322352,0.005246412,0.011771178,,,,,,,0.015885779,0.017731802,0.027281229,0.061785565,,,,,,,5.911351255,11.43840797,18.66268698,37.60412097,,,,,,,955.0376908,957.5806712,964.296907,988.1054724,,,,,,,0.00790939,0.009166318,0.012307915,0.023194423,,,,,,,0.038653389,0.038653386,0.038653373,0.038653392,,,,,,,0.300407902,0.364765639,0.410801416,0.504715555,,,,,,,0.006078035,0.009932094,0.014095632,0.024338899,,,,,,,0.074470936,0.082297104,0.091130813,0.114474584,,,,,,,0.018804387,0.025727556,0.033542039,0.054192368,,,,,,,0.006344376,0.00636127,0.006405886,0.006564047,,,,,,,0.263395559,0.344969015,0.457874345,1.024594665,,,,,,,0.001852863,0.00316168,0.004923703,0.010730571,,,,,,,0.014181572,0.016134806,0.02495413,0.056538446,,,,,,,5.706220884,11.06622883,17.99555042,36.08512104,,,,,,,963.8358151,966.072943,972.1491393,993.9240824,,,,,,,0.007843667,0.009074656,0.012151412,0.022813195,,,,,,,0.038637558,0.038637576,0.038637573,0.038637583,,,,,,,0.296369331,0.359577642,0.404086274,0.493542204,,,,,,,0.005981144,0.009746474,0.013743929,0.023280794,,,,,,,0.074942871,0.082544192,0.090947479,0.112437507,,,,,,,0.01868152,0.025405777,0.032839496,0.051849964,,,,,,,0.006402822,0.006417684,0.006458048,0.006602702,,,,,,,0.278833508,0.358186022,0.468627001,1.025316065,,,,,,,0.001829231,0.003154147,0.005014998,0.011407901,,,,,,,0.015549336,0.017456185,0.026829102,0.060614818,,,,,,,6.038806505,11.71877719,19.07218357,38.28212699,,,,,,,981.3007392,983.8372986,990.6664632,1015.053464,,,,,,,0.008391515,0.009703925,0.012984202,0.024351248,,,,,,,0.039322533,0.039322514,0.039322524,0.039322521,,,,,,,0.297723144,0.361690144,0.408025185,0.503477935,,,,,,,0.005673962,0.009283677,0.013219898,0.023050228,,,,,,,0.080787295,0.088137849,0.096526324,0.119047491,,,,,,,0.019008625,0.025511098,0.032931681,0.052854349,,,,,,,0.006518843,0.006535694,0.006581061,0.006743064,,,,,,,0.304503928,0.386779932,0.50348424,1.088439417,,,,,,,0.001868613,0.003215346,0.005110187,0.011612815,,,,,,,0.015288329,0.016903938,0.025906668,0.058598544,,,,,,,5.593974201,10.82349917,17.57932835,35.21180261,,,,,,,945.4561379,947.6841639,953.8361859,976.0212541,,,,,,,0.007472544,0.008652726,0.01160249,0.021824223,,,,,,,0.038254241,0.038254266,0.038254261,0.03825425,,,,,,,0.289420657,0.351800934,0.39585985,0.484586086,,,,,,,0.005807616,0.009491132,0.013513759,0.023543004,,,,,,,0.069868069,0.077364546,0.085930691,0.108888592,,,,,,,0.017827643,0.02445914,0.032036917,0.052345926,,,,,,,0.006280726,0.006295527,0.006336395,0.006483772,,,,,,,0.295115887,0.36581228,0.472966621,1.006177508,,,,,,,0.001613768,0.002708155,0.004075157,0.008220058,,,,,,,0.011090632,0.013620956,0.021530793,0.048966041,,,,,,,5.604875058,10.94295811,17.74350363,35.37810073,,,,,,,995.5846754,997.0506989,1001.57129,1018.510024,,,,,,,0.008274546,0.009568396,0.012802277,0.024008545,,,,,,,0.039201259,0.039201268,0.039201251,0.039201264,,,,,,,0.27420771,0.333612894,0.375338281,0.458580831,,,,,,,0.005528601,0.008955745,0.012451854,0.020184811,,,,,,,0.079069061,0.085896599,0.09308546,0.109994849,,,,,,,0.018451719,0.024491479,0.030850898,0.045809254,,,,,,,0.006613732,0.006623471,0.006653503,0.006766027,,,,,,,0.344382381,0.424752531,0.542519917,1.14291508,,,,,,,0.001617438,0.002723109,0.004125862,0.008457546,,,,,,,0.011010776,0.013215008,0.020754923,0.047153499,,,,,,,5.361645208,10.45190312,16.91994022,33.68187591,,,,,,,965.3326872,966.9033184,971.606561,989.0549144,,,,,,,0.007708964,0.008915095,0.011929726,0.02237628,,,,,,,0.038578999,0.038578987,0.038578994,0.038578993,,,,,,,0.275878471,0.335481481,0.37659971,0.457432133,,,,,,,0.005479119,0.008884769,0.012386223,0.020248538,,,,,,,0.072677026,0.079479274,0.086710747,0.104012031,,,,,,,0.017583466,0.023600876,0.029997979,0.045303023,,,,,,,0.006412765,0.0064232,0.006454444,0.006570355,,,,,,,0.324390939,0.396709575,0.505368863,1.060888819,,,,,,,0.001595187,0.002653103,0.003932504,0.007639604,,,,,,,0.010485667,0.012944605,0.020544047,0.046854833,,,,,,,5.650118627,11.01824346,17.95339938,36.02313517,,,,,,,987.6702485,988.9135568,992.995121,1008.57759,,,,,,,0.007875018,0.009118764,0.012227437,0.022999741,,,,,,,0.038665446,0.03866544,0.038665474,0.038665441,,,,,,,0.273251937,0.332153729,0.372998523,0.453432392,,,,,,,0.005602683,0.009042543,0.01250713,0.019912631,,,,,,,0.073676948,0.080499868,0.087562002,0.103530665,,,,,,,0.017859813,0.023895501,0.030142746,0.044268985,,,,,,,0.006561157,0.006569416,0.006596531,0.006700045,,,,,,,0.331612438,0.40690261,0.518991274,1.094508046,,,,,,,0.001721864,0.002910194,0.004433977,0.009210891,,,,,,,0.012625856,0.01492159,0.02336856,0.053130702,,,,,,,6.025206167,11.7088062,19.11430735,38.48522502,,,,,,,978.8361434,980.5950997,985.6818615,1004.332583,,,,,,,0.007940339,0.009183522,0.012290771,0.023058216,,,,,,,0.038748269,0.038748265,0.038748264,0.038748268,,,,,,,0.308764806,0.37460648,0.419990479,0.509350903,,,,,,,0.005774097,0.009380953,0.013103863,0.021572853,,,,,,,0.075793726,0.083016378,0.09073764,0.109480936,,,,,,,0.018432568,0.024821858,0.031652228,0.048232916,,,,,,,0.006406008,0.006417593,0.006451038,0.006573595,,,,,,,0.334099615,0.411457096,0.523065407,1.089179667,,,,,,,0.00163036,0.002718336,0.004004169,0.007671283,,,,,,,0.011939886,0.014905433,0.023776277,0.054386358,,,,,,,6.692589727,13.0116696,21.47340587,43.80662481,,,,,,,978.4992624,980.2768809,985.1874955,1002.897533,,,,,,,0.008235455,0.009546818,0.012824466,0.024182402,,,,,,,0.038945614,0.038945622,0.038945639,0.038945642,,,,,,,0.291947328,0.355096051,0.399825123,0.49004578,,,,,,,0.005765087,0.009332495,0.012868,0.020341008,,,,,,,0.076990607,0.084063387,0.091258825,0.107319526,,,,,,,0.018520076,0.024776774,0.031141994,0.045349591,,,,,,,0.006013344,0.00602434,0.00605467,0.006163969,,,,,,,0.313182894,0.399711843,0.521127319,1.143785132 +Heavy duty short haul truck,E10,2040,,,,,,,,0.001929911,0.003332825,0.00526703,,,,,,,,0.016042981,0.017779537,0.027357344,,,,,,,,5.967358624,11.45915135,18.68367302,,,,,,,,955.145418,957.6188192,964.3495174,,,,,,,,0.007957818,0.009183392,0.012331372,,,,,,,,0.038653386,0.038653386,0.03865339,,,,,,,,0.300426573,0.365109524,0.411187892,,,,,,,,0.006061307,0.00995131,0.01412925,,,,,,,,0.074440133,0.082338679,0.091205684,,,,,,,,0.018777141,0.025764339,0.033608265,,,,,,,,0.006345093,0.006361523,0.006406235,,,,,,,,0.262002217,0.346235276,0.459440214,,,,,,,,0.001849268,0.003171156,0.004942186,,,,,,,,0.014324028,0.016176053,0.025019177,,,,,,,,5.759273944,11.0864422,18.01556612,,,,,,,,963.9355621,966.1082495,972.1975533,,,,,,,,0.007891097,0.009091373,0.012174379,,,,,,,,0.038637556,0.038637572,0.038637574,,,,,,,,0.296377088,0.359911684,0.404458611,,,,,,,,0.005964267,0.009764735,0.013775507,,,,,,,,0.074911651,0.082583252,0.091016979,,,,,,,,0.018653915,0.025440336,0.032900957,,,,,,,,0.006403485,0.006417918,0.00645837,,,,,,,,0.276674946,0.359747339,0.470527929,,,,,,,,0.001825935,0.003164458,0.005035285,,,,,,,,0.01573055,0.017487534,0.026874682,,,,,,,,6.097878367,11.73821717,19.08796898,,,,,,,,981.4118065,983.8772746,990.7203294,,,,,,,,0.00844208,0.009721758,0.013008683,,,,,,,,0.039322522,0.039322535,0.039322513,,,,,,,,0.297721834,0.362048057,0.408436553,,,,,,,,0.005657572,0.009302639,0.013253087,,,,,,,,0.080757184,0.088178903,0.096600124,,,,,,,,0.018981995,0.025547384,0.032997,,,,,,,,0.006519581,0.006535959,0.006581418,,,,,,,,0.300350066,0.389219292,0.50639631,,,,,,,,0.001862539,0.003228132,0.005135867,,,,,,,,0.01545847,0.016938952,0.025959484,,,,,,,,5.646128458,10.84332499,17.59629427,,,,,,,,945.5584547,947.7201612,953.8859521,,,,,,,,0.00751802,0.008668758,0.011624507,,,,,,,,0.038254255,0.038254256,0.038254259,,,,,,,,0.289362288,0.352175032,0.396297292,,,,,,,,0.005785524,0.009514663,0.013555613,,,,,,,,0.069825983,0.077415385,0.086023874,,,,,,,,0.017790397,0.024504136,0.03211936,,,,,,,,0.006281405,0.006295766,0.006336725,,,,,,,,0.28965502,0.368782283,0.476612865,,,,,,,,0.001610152,0.002715178,0.00408854,,,,,,,,0.011202749,0.013652837,0.021579584,,,,,,,,5.654047019,10.96471957,17.76590028,,,,,,,,995.6649852,997.0787628,1001.610679,,,,,,,,0.008324396,0.009585969,0.012826414,,,,,,,,0.039201259,0.03920124,0.039201259,,,,,,,,0.274203442,0.333917576,0.375678573,,,,,,,,0.005512851,0.008970851,0.012477308,,,,,,,,0.079039677,0.085928092,0.093140012,,,,,,,,0.018425723,0.024519376,0.030899168,,,,,,,,0.006614266,0.006623657,0.006653763,,,,,,,,0.339078792,0.427677261,0.54604401,,,,,,,,0.001613859,0.002730412,0.004139794,,,,,,,,0.011129793,0.013242381,0.020795661,,,,,,,,5.40975253,10.47157298,16.93864832,,,,,,,,965.4138305,966.9320376,971.64668,,,,,,,,0.007755435,0.008931479,0.011952237,,,,,,,,0.038578977,0.038578972,0.038578996,,,,,,,,0.275866658,0.335790895,0.376942225,,,,,,,,0.005463155,0.008900332,0.012412506,,,,,,,,0.07264729,0.079511808,0.086767209,,,,,,,,0.017557185,0.023629679,0.030047919,,,,,,,,0.006413307,0.006423391,0.006454709,,,,,,,,0.319150276,0.399563063,0.5087955,,,,,,,,0.001588999,0.002661436,0.00394828,,,,,,,,0.010574736,0.012985542,0.020610943,,,,,,,,5.703958519,11.03731055,17.96956085,,,,,,,,987.7454616,988.9409966,993.030978,,,,,,,,0.007922943,0.009135671,0.012250625,,,,,,,,0.038665444,0.038665474,0.038665436,,,,,,,,0.273190378,0.332486768,0.373382713,,,,,,,,0.005579678,0.009062394,0.012540392,,,,,,,,0.073633195,0.080540501,0.08763162,,,,,,,,0.017821098,0.023931417,0.030204374,,,,,,,,0.006561656,0.006569599,0.006596769,,,,,,,,0.32684953,0.409602068,0.522311526,,,,,,,,0.001719816,0.002916879,0.00444684,,,,,,,,0.012753994,0.014957387,0.023423285,,,,,,,,6.076995674,11.73435902,19.14499793,,,,,,,,978.9226788,980.6258113,985.7245169,,,,,,,,0.007988237,0.009200411,0.012313967,,,,,,,,0.038748257,0.038748263,0.038748279,,,,,,,,0.308819326,0.374908942,0.420305993,,,,,,,,0.00576249,0.009393787,0.013125701,,,,,,,,0.075772628,0.083043864,0.090785791,,,,,,,,0.018413914,0.024846176,0.031694808,,,,,,,,0.006406577,0.006417795,0.006451319,,,,,,,,0.330565511,0.413614971,0.525643903,,,,,,,,0.001630978,0.002721118,0.004009166,,,,,,,,0.012055675,0.014943618,0.023834674,,,,,,,,6.748595109,13.04333398,21.51794272,,,,,,,,978.5812981,980.3056812,985.2260162,,,,,,,,0.00828599,0.009564629,0.012848932,,,,,,,,0.038945647,0.038945623,0.038945598,,,,,,,,0.292105009,0.355322447,0.400032599,,,,,,,,0.005761867,0.009337324,0.012875503,,,,,,,,0.076985858,0.084073987,0.091275856,,,,,,,,0.018515851,0.024786174,0.031157117,,,,,,,,0.00601385,0.006024518,0.006054908,,,,,,,,0.312623325,0.400558762,0.522180837 +Heavy duty short haul truck,E10,2045,,,,,,,,,0.001936378,0.003344729,,,,,,,,,0.016087201,0.017829434,,,,,,,,,5.97840144,11.47672156,,,,,,,,,955.175734,957.6545124,,,,,,,,,0.007971603,0.009199472,,,,,,,,,0.038653376,0.038653395,,,,,,,,,0.30059492,0.365372164,,,,,,,,,0.006075087,0.009974,,,,,,,,,0.074469073,0.08238738,,,,,,,,,0.018802743,0.025807411,,,,,,,,,0.006345293,0.00636176,,,,,,,,,0.263044503,0.347555589,,,,,,,,,0.001855202,0.003181969,,,,,,,,,0.014361723,0.016218582,,,,,,,,,5.769934212,11.10353355,,,,,,,,,963.9637275,966.1408173,,,,,,,,,0.0079046,0.009107118,,,,,,,,,0.038637577,0.03863757,,,,,,,,,0.296539352,0.360165338,,,,,,,,,0.005977531,0.009786378,,,,,,,,,0.074939263,0.082629174,,,,,,,,,0.018678325,0.025480966,,,,,,,,,0.006403674,0.006418136,,,,,,,,,0.278035145,0.361423591,,,,,,,,,0.001832271,0.003176167,,,,,,,,,0.015760827,0.017517976,,,,,,,,,6.108058382,11.75392899,,,,,,,,,981.4431451,983.913718,,,,,,,,,0.008456475,0.009738547,,,,,,,,,0.039322515,0.039322539,,,,,,,,,0.297901103,0.362328638,,,,,,,,,0.005671029,0.009324991,,,,,,,,,0.080785455,0.088226851,,,,,,,,,0.019007014,0.025589796,,,,,,,,,0.00651979,0.006536202,,,,,,,,,0.302634673,0.391952318,,,,,,,,,0.001870211,0.003242788,,,,,,,,,0.01549286,0.016974215,,,,,,,,,5.656473961,10.8600315,,,,,,,,,945.5871645,947.7534665,,,,,,,,,0.007530965,0.008683851,,,,,,,,,0.038254254,0.038254253,,,,,,,,,0.289556046,0.352477728,,,,,,,,,0.005801675,0.009542467,,,,,,,,,0.069859964,0.07747509,,,,,,,,,0.017820456,0.024556939,,,,,,,,,0.006281596,0.006295987,,,,,,,,,0.29248335,0.372245415,,,,,,,,,0.001614718,0.002723273,,,,,,,,,0.011229857,0.013684263,,,,,,,,,5.665334435,10.98360875,,,,,,,,,995.6870262,997.1048694,,,,,,,,,0.00833859,0.009602518,,,,,,,,,0.039201259,0.039201256,,,,,,,,,0.274346559,0.334147626,,,,,,,,,0.005524202,0.00898892,,,,,,,,,0.079062802,0.08596557,,,,,,,,,0.018446185,0.024552515,,,,,,,,,0.006614413,0.00662383,,,,,,,,,0.341829261,0.430988513,,,,,,,,,0.001618575,0.002738811,,,,,,,,,0.011153916,0.013268926,,,,,,,,,5.41993139,10.48826815,,,,,,,,,965.4371497,966.9590945,,,,,,,,,0.007768665,0.008946906,,,,,,,,,0.038578987,0.038578992,,,,,,,,,0.276013961,0.336024513,,,,,,,,,0.005474744,0.008918909,,,,,,,,,0.072670983,0.079550421,,,,,,,,,0.017578126,0.023663813,,,,,,,,,0.006413459,0.006423571,,,,,,,,,0.321857471,0.402805971,,,,,,,,,0.001594346,0.002671145,,,,,,,,,0.010608217,0.013027865,,,,,,,,,5.713964881,11.05302757,,,,,,,,,987.7663197,988.9640869,,,,,,,,,0.007936592,0.009151565,,,,,,,,,0.038665467,0.038665422,,,,,,,,,0.273354703,0.332750237,,,,,,,,,0.005593989,0.00908614,,,,,,,,,0.073661973,0.080588759,,,,,,,,,0.017846533,0.023974159,,,,,,,,,0.006561794,0.006569749,,,,,,,,,0.329335296,0.412664596,,,,,,,,,0.001724186,0.002924504,,,,,,,,,0.012786376,0.014993351,,,,,,,,,6.090520246,11.75746476,,,,,,,,,978.9473432,980.6542838,,,,,,,,,0.008001875,0.009216312,,,,,,,,,0.038748263,0.038748266,,,,,,,,,0.308953238,0.375119981,,,,,,,,,0.005772501,0.009409113,,,,,,,,,0.0757934,0.083076372,,,,,,,,,0.018432273,0.024874934,,,,,,,,,0.006406738,0.006417981,,,,,,,,,0.332541407,0.415985227,,,,,,,,,0.001633185,0.002724259,,,,,,,,,0.012088183,0.014981671,,,,,,,,,6.76566396,13.07324323,,,,,,,,,978.6037644,980.3325863,,,,,,,,,0.008300369,0.009581408,,,,,,,,,0.038945612,0.038945634,,,,,,,,,0.292185238,0.355452419,,,,,,,,,0.005767172,0.009343314,,,,,,,,,0.076996798,0.084086921,,,,,,,,,0.018525551,0.024797595,,,,,,,,,0.006013988,0.006024685,,,,,,,,,0.313248795,0.401374943 +Heavy duty short haul truck,E10,2050,,,,,,,,,,0.001942285,,,,,,,,,,0.016124954,,,,,,,,,,5.985156264,,,,,,,,,,955.2021191,,,,,,,,,,0.007983334,,,,,,,,,,0.038653388,,,,,,,,,,0.300768599,,,,,,,,,,0.006087085,,,,,,,,,,0.074494414,,,,,,,,,,0.018825159,,,,,,,,,,0.006345469,,,,,,,,,,0.264228834,,,,,,,,,,0.001860601,,,,,,,,,,0.014393245,,,,,,,,,,5.776517431,,,,,,,,,,963.9878143,,,,,,,,,,0.007916089,,,,,,,,,,0.038637575,,,,,,,,,,0.296706987,,,,,,,,,,0.005989043,,,,,,,,,,0.074963312,,,,,,,,,,0.018699602,,,,,,,,,,0.006403833,,,,,,,,,,0.27960187,,,,,,,,,,0.001838094,,,,,,,,,,0.015782342,,,,,,,,,,6.113683601,,,,,,,,,,981.4699616,,,,,,,,,,0.008468725,,,,,,,,,,0.039322513,,,,,,,,,,0.298087147,,,,,,,,,,0.005682902,,,,,,,,,,0.080810487,,,,,,,,,,0.01902917,,,,,,,,,,0.006519968,,,,,,,,,,0.305322304,,,,,,,,,,0.001877593,,,,,,,,,,0.015519505,,,,,,,,,,5.662808797,,,,,,,,,,945.6118164,,,,,,,,,,0.007541981,,,,,,,,,,0.038254255,,,,,,,,,,0.289761203,,,,,,,,,,0.005816667,,,,,,,,,,0.069891617,,,,,,,,,,0.017848458,,,,,,,,,,0.00628176,,,,,,,,,,0.295895564,,,,,,,,,,0.001618815,,,,,,,,,,0.011251434,,,,,,,,,,5.672835894,,,,,,,,,,995.7065903,,,,,,,,,,0.008350666,,,,,,,,,,0.039201258,,,,,,,,,,0.274494503,,,,,,,,,,0.005533897,,,,,,,,,,0.079082626,,,,,,,,,,0.018463724,,,,,,,,,,0.006614543,,,,,,,,,,0.345071715,,,,,,,,,,0.001622824,,,,,,,,,,0.011172082,,,,,,,,,,5.426398322,,,,,,,,,,965.4566441,,,,,,,,,,0.00777992,,,,,,,,,,0.038578974,,,,,,,,,,0.276166867,,,,,,,,,,0.005484728,,,,,,,,,,0.072691389,,,,,,,,,,0.01759621,,,,,,,,,,0.006413588,,,,,,,,,,0.325049528,,,,,,,,,,0.001599433,,,,,,,,,,0.010637834,,,,,,,,,,5.719762985,,,,,,,,,,987.7835734,,,,,,,,,,0.007948188,,,,,,,,,,0.038665429,,,,,,,,,,0.273528284,,,,,,,,,,0.005607199,,,,,,,,,,0.073688449,,,,,,,,,,0.017870009,,,,,,,,,,0.006561908,,,,,,,,,,0.332272348,,,,,,,,,,0.001727918,,,,,,,,,,0.012812824,,,,,,,,,,6.100104698,,,,,,,,,,978.9683256,,,,,,,,,,0.008013479,,,,,,,,,,0.038748263,,,,,,,,,,0.309087944,,,,,,,,,,0.005780391,,,,,,,,,,0.075809918,,,,,,,,,,0.018446883,,,,,,,,,,0.006406876,,,,,,,,,,0.334825817,,,,,,,,,,0.00163453,,,,,,,,,,0.012115106,,,,,,,,,,6.778502149,,,,,,,,,,978.6233817,,,,,,,,,,0.00831261,,,,,,,,,,0.038945618,,,,,,,,,,0.292257144,,,,,,,,,,0.005769616,,,,,,,,,,0.07700209,,,,,,,,,,0.018530235,,,,,,,,,,0.006014109,,,,,,,,,,0.313937916 +Heavy duty short haul truck,E15,1990,0.096402677,,,,,,,,,,0.461721311,,,,,,,,,,88.26584375,,,,,,,,,,1045.61859,,,,,,,,,,0.094191028,,,,,,,,,,0.038672831,,,,,,,,,,10.65202803,,,,,,,,,,0.216122157,,,,,,,,,,0.525781199,,,,,,,,,,0.416844621,,,,,,,,,,0.049525463,,,,,,,,,,6.524249119,,,,,,,,,,0.082365723,,,,,,,,,,0.453570202,,,,,,,,,,88.55143886,,,,,,,,,,1048.88442,,,,,,,,,,0.092680619,,,,,,,,,,0.038657787,,,,,,,,,,10.61741606,,,,,,,,,,0.189718309,,,,,,,,,,0.468680704,,,,,,,,,,0.365785531,,,,,,,,,,0.055148209,,,,,,,,,,6.660047428,,,,,,,,,,0.095515009,,,,,,,,,,0.52438053,,,,,,,,,,100.789779,,,,,,,,,,1070.782742,,,,,,,,,,0.099003617,,,,,,,,,,0.039338508,,,,,,,,,,10.95338366,,,,,,,,,,0.208664006,,,,,,,,,,0.522537344,,,,,,,,,,0.408416472,,,,,,,,,,0.079758479,,,,,,,,,,7.446108594,,,,,,,,,,0.099801564,,,,,,,,,,0.472799523,,,,,,,,,,93.31333712,,,,,,,,,,1028.007249,,,,,,,,,,0.088624126,,,,,,,,,,0.038277061,,,,,,,,,,10.53736908,,,,,,,,,,0.220967977,,,,,,,,,,0.535925853,,,,,,,,,,0.429028053,,,,,,,,,,0.071330836,,,,,,,,,,6.73260747,,,,,,,,,,0.047760864,,,,,,,,,,0.443866407,,,,,,,,,,88.02965081,,,,,,,,,,1065.512899,,,,,,,,,,0.09760364,,,,,,,,,,0.039218375,,,,,,,,,,10.22830306,,,,,,,,,,0.116322346,,,,,,,,,,0.316060771,,,,,,,,,,0.226760837,,,,,,,,,,0.065510331,,,,,,,,,,7.503459383,,,,,,,,,,0.05461192,,,,,,,,,,0.435311168,,,,,,,,,,88.70205428,,,,,,,,,,1036.806729,,,,,,,,,,0.090919634,,,,,,,,,,0.038599154,,,,,,,,,,10.25377081,,,,,,,,,,0.13239963,,,,,,,,,,0.344377791,,,,,,,,,,0.2567675,,,,,,,,,,0.070998842,,,,,,,,,,7.055374242,,,,,,,,,,0.044780128,,,,,,,,,,0.421563579,,,,,,,,,,85.56944434,,,,,,,,,,1052.536557,,,,,,,,,,0.093423241,,,,,,,,,,0.038685083,,,,,,,,,,10.12550898,,,,,,,,,,0.112573688,,,,,,,,,,0.301261496,,,,,,,,,,0.217986298,,,,,,,,,,0.065402588,,,,,,,,,,7.22313219,,,,,,,,,,0.064615312,,,,,,,,,,0.438865706,,,,,,,,,,89.26854634,,,,,,,,,,1054.875259,,,,,,,,,,0.093689488,,,,,,,,,,0.038768046,,,,,,,,,,11.08906969,,,,,,,,,,0.153424953,,,,,,,,,,0.392282751,,,,,,,,,,0.297170326,,,,,,,,,,0.064376478,,,,,,,,,,7.072506141,,,,,,,,,,0.046096012,,,,,,,,,,0.405815097,,,,,,,,,,82.63417435,,,,,,,,,,1058.093499,,,,,,,,,,0.098212515,,,,,,,,,,0.038963349,,,,,,,,,,10.42455358,,,,,,,,,,0.116078279,,,,,,,,,,0.309103496,,,,,,,,,,0.22256246,,,,,,,,,,0.031097493,,,,,,,,,,6.906127959,,,,,,,,, +Heavy duty short haul truck,E15,1995,0.021986602,0.07264171,,,,,,,,,0.223576319,0.414199454,,,,,,,,,81.73032459,94.37288181,,,,,,,,,1013.957645,1040.417011,,,,,,,,,0.065870896,0.11295621,,,,,,,,,0.038638664,0.038641829,,,,,,,,,6.836752481,8.957917011,,,,,,,,,0.064819815,0.154135945,,,,,,,,,0.193776646,0.391313745,,,,,,,,,0.125218819,0.299746109,,,,,,,,,0.047936285,0.023524207,,,,,,,,,3.475942801,6.144241324,,,,,,,,,0.019092305,0.061812555,,,,,,,,,0.223371994,0.403979175,,,,,,,,,83.15740172,94.36759338,,,,,,,,,1021.736296,1045.029192,,,,,,,,,0.065098362,0.111153879,,,,,,,,,0.038622749,0.038626204,,,,,,,,,6.838673781,8.89016589,,,,,,,,,0.05729403,0.134744341,,,,,,,,,0.178982606,0.349043097,,,,,,,,,0.111605496,0.261822932,,,,,,,,,0.053654359,0.023810699,,,,,,,,,3.578248049,6.248596837,,,,,,,,,0.021025163,0.071810222,,,,,,,,,0.257056876,0.439539625,,,,,,,,,93.61136485,104.0661647,,,,,,,,,1040.556597,1066.967815,,,,,,,,,0.069585942,0.118686195,,,,,,,,,0.039307615,0.039311525,,,,,,,,,7.117215882,8.982219884,,,,,,,,,0.060455471,0.147705958,,,,,,,,,0.193349837,0.386512951,,,,,,,,,0.119568042,0.290189849,,,,,,,,,0.077584537,0.024827934,,,,,,,,,4.041947485,6.651683085,,,,,,,,,0.022065204,0.074600322,,,,,,,,,0.233113885,0.40789541,,,,,,,,,87.55551806,96.57909126,,,,,,,,,1001.798152,1024.912879,,,,,,,,,0.062124514,0.106301463,,,,,,,,,0.038239816,0.038242836,,,,,,,,,6.776671559,8.682313706,,,,,,,,,0.063937646,0.154890713,,,,,,,,,0.189286058,0.39184733,,,,,,,,,0.124280497,0.30327402,,,,,,,,,0.069526736,0.041079377,,,,,,,,,3.718271118,6.150064358,,,,,,,,,0.011307546,0.035332309,,,,,,,,,0.22869684,0.400330006,,,,,,,,,84.1430564,93.98684103,,,,,,,,,1050.753496,1065.995223,,,,,,,,,0.068611965,0.117013908,,,,,,,,,0.039186785,0.039190209,,,,,,,,,6.59342653,8.582386797,,,,,,,,,0.035031723,0.08120163,,,,,,,,,0.138436435,0.238449869,,,,,,,,,0.071934058,0.16016115,,,,,,,,,0.064562689,0.02465998,,,,,,,,,4.038643854,7.150817078,,,,,,,,,0.012782025,0.040232012,,,,,,,,,0.222314159,0.381355525,,,,,,,,,85.0019765,93.27781496,,,,,,,,,1019.818866,1036.225404,,,,,,,,,0.063926389,0.109040339,,,,,,,,,0.038563639,0.038567786,,,,,,,,,6.602531412,8.463878528,,,,,,,,,0.039379562,0.091657527,,,,,,,,,0.141396576,0.254568463,,,,,,,,,0.079244982,0.179143906,,,,,,,,,0.069838074,0.024083003,,,,,,,,,3.841200542,6.595954852,,,,,,,,,0.010987272,0.033129222,,,,,,,,,0.218179125,0.374905496,,,,,,,,,82.34070312,91.25186924,,,,,,,,,1041.247712,1054.147734,,,,,,,,,0.065472814,0.112036693,,,,,,,,,0.038650625,0.038654077,,,,,,,,,6.508791076,8.432950532,,,,,,,,,0.034859678,0.078952599,,,,,,,,,0.132474374,0.227741478,,,,,,,,,0.070753816,0.154809632,,,,,,,,,0.064683602,0.03358156,,,,,,,,,3.906599049,6.828393243,,,,,,,,,0.015216725,0.048189735,,,,,,,,,0.222160196,0.386126605,,,,,,,,,85.12095632,97.55112981,,,,,,,,,1035.047057,1053.364998,,,,,,,,,0.065857983,0.112360315,,,,,,,,,0.038733453,0.038736991,,,,,,,,,7.189615223,9.223536156,,,,,,,,,0.046526784,0.108200678,,,,,,,,,0.158439777,0.293509063,,,,,,,,,0.092452237,0.211709265,,,,,,,,,0.063030712,0.037829087,,,,,,,,,3.8391129,6.633705294,,,,,,,,,0.011667106,0.034575435,,,,,,,,,0.206913209,0.362304397,,,,,,,,,78.89960853,94.38333683,,,,,,,,,1036.1403,1054.705848,,,,,,,,,0.068626204,0.117763809,,,,,,,,,0.038931057,0.038934066,,,,,,,,,6.704711532,8.761193155,,,,,,,,,0.037338665,0.083330905,,,,,,,,,0.139442777,0.2384803,,,,,,,,,0.074690552,0.162065875,,,,,,,,,0.030337438,0.014231945,,,,,,,,,3.633941703,6.615292272,,,,,,,, +Heavy duty short haul truck,E15,2000,0.011994112,0.017613049,0.052853621,,,,,,,,0.037567365,0.045327708,0.243141961,,,,,,,,39.43985486,46.51201224,80.31992803,,,,,,,,1009.002576,1013.852911,1040.236796,,,,,,,,0.089115838,0.112860455,0.176005281,,,,,,,,0.038629011,0.038629215,0.038632746,,,,,,,,5.006800225,5.370610561,7.325385179,,,,,,,,0.0402146,0.055622275,0.115765916,,,,,,,,0.141779892,0.172337981,0.306833071,,,,,,,,0.079412875,0.106501209,0.225538852,,,,,,,,0.047677625,0.022923832,0.021157657,,,,,,,,1.94222483,2.385999054,5.242197778,,,,,,,,0.010463571,0.015295062,0.044955167,,,,,,,,0.037314782,0.044394396,0.236238987,,,,,,,,39.98592423,46.69653805,80.08916907,,,,,,,,1018.071682,1022.445167,1046.046015,,,,,,,,0.088314139,0.111561195,0.173221283,,,,,,,,0.038612798,0.038613192,0.038616849,,,,,,,,5.00869221,5.331848723,7.26020445,,,,,,,,0.035450317,0.048946661,0.100941228,,,,,,,,0.132935299,0.159478355,0.275021125,,,,,,,,0.07106347,0.094600455,0.19687368,,,,,,,,0.05344433,0.02329792,0.021275813,,,,,,,,2.004645672,2.431105301,5.306538333,,,,,,,,0.010910108,0.016163807,0.051446432,,,,,,,,0.043385888,0.048449429,0.257794972,,,,,,,,45.36086411,51.55147391,88.80911892,,,,,,,,1036.387148,1041.374258,1067.907911,,,,,,,,0.094462596,0.119246996,0.184941933,,,,,,,,0.039298898,0.0393001,0.039303312,,,,,,,,5.221478376,5.368583302,7.360704909,,,,,,,,0.035710641,0.049499557,0.107975339,,,,,,,,0.140554017,0.167416579,0.299073244,,,,,,,,0.073086055,0.096911147,0.21344184,,,,,,,,0.077293145,0.024247416,0.021720469,,,,,,,,2.31292921,2.648039862,5.673510417,,,,,,,,0.011627492,0.017179161,0.0537235,,,,,,,,0.038921888,0.044615402,0.236213569,,,,,,,,42.1151859,47.41752107,80.37859397,,,,,,,,998.6811509,1003.042863,1026.739451,,,,,,,,0.084166072,0.106456026,0.165655792,,,,,,,,0.038229285,0.03822906,0.038232923,,,,,,,,5.003323062,5.243730167,7.002443265,,,,,,,,0.03834964,0.053122377,0.114276949,,,,,,,,0.134852346,0.164324211,0.30106691,,,,,,,,0.07629815,0.102421827,0.223446456,,,,,,,,0.069314223,0.040289725,0.020883131,,,,,,,,2.132623683,2.471456979,5.187132251,,,,,,,,0.006114362,0.008868011,0.025444806,,,,,,,,0.037882849,0.044907457,0.233721772,,,,,,,,40.5701546,47.27281946,80.39301405,,,,,,,,1050.82032,1054.003914,1070.643352,,,,,,,,0.093146134,0.117578576,0.182339776,,,,,,,,0.039177867,0.039178556,0.039181822,,,,,,,,4.822012489,5.116108884,7.048156727,,,,,,,,0.021033091,0.028932293,0.059629172,,,,,,,,0.109002123,0.12428425,0.191629393,,,,,,,,0.046111797,0.059692038,0.119331105,,,,,,,,0.064554455,0.024384709,0.021776102,,,,,,,,2.265770722,2.739243427,6.02826178,,,,,,,,0.006882973,0.010000042,0.030147765,,,,,,,,0.036647857,0.042261378,0.223491544,,,,,,,,40.80188313,46.6778429,79.75310014,,,,,,,,1019.125834,1022.487764,1043.768318,,,,,,,,0.086781592,0.109558837,0.17030035,,,,,,,,0.038553601,0.038554659,0.038597688,,,,,,,,4.85979651,5.071943684,6.916324746,,,,,,,,0.023587061,0.03246577,0.06993896,,,,,,,,0.108156491,0.125236184,0.207728151,,,,,,,,0.050025809,0.06518933,0.137976126,,,,,,,,0.069790747,0.023770369,0.021229485,,,,,,,,2.163994315,2.551201534,5.771121924,,,,,,,,0.006178422,0.008893423,0.024171356,,,,,,,,0.035877945,0.041872999,0.216888228,,,,,,,,39.4379899,45.53941733,76.83278057,,,,,,,,1042.375133,1045.192324,1059.859212,,,,,,,,0.088697848,0.112190197,0.174583089,,,,,,,,0.038640858,0.038641325,0.038644918,,,,,,,,4.774530292,5.052488082,6.866312778,,,,,,,,0.021658838,0.029742128,0.059131032,,,,,,,,0.104801944,0.120570816,0.184291348,,,,,,,,0.046465771,0.060471283,0.116900943,,,,,,,,0.064748625,0.033289239,0.021556767,,,,,,,,2.187633647,2.58849066,5.709695996,,,,,,,,0.008364887,0.012167714,0.035005279,,,,,,,,0.036897612,0.042857227,0.222360229,,,,,,,,40.88818757,48.39127919,81.57087012,,,,,,,,1033.51462,1037.132018,1056.385523,,,,,,,,0.089390702,0.112866926,0.175103699,,,,,,,,0.0387237,0.038724218,0.038727808,,,,,,,,5.27892637,5.571952082,7.43327039,,,,,,,,0.028643996,0.039473329,0.080736504,,,,,,,,0.120723173,0.142065472,0.232643355,,,,,,,,0.059284908,0.078222491,0.158412184,,,,,,,,0.062897615,0.037267957,0.019273447,,,,,,,,2.170863137,2.587984834,5.537839263,,,,,,,,0.006814819,0.009776934,0.025610784,,,,,,,,0.034503582,0.040949197,0.212677983,,,,,,,,38.45448054,48.01453177,81.52626438,,,,,,,,1033.371918,1036.880683,1055.899774,,,,,,,,0.092799865,0.117574064,0.183486711,,,,,,,,0.038921961,0.038922176,0.038925501,,,,,,,,4.885491635,5.262098686,7.167212928,,,,,,,,0.024121748,0.033119945,0.063902496,,,,,,,,0.111984717,0.129619835,0.196216657,,,,,,,,0.050608401,0.066268231,0.12524292,,,,,,,,0.030221501,0.01395591,0.01023432,,,,,,,,2.001733254,2.46184659,5.595394015,,,,,,, +Heavy duty short haul truck,E15,2005,0.004626136,0.007076419,0.009902955,0.038219149,,,,,,,0.019586707,0.018581872,0.024193162,0.141504088,,,,,,,14.89299501,26.10406425,34.8196976,70.50375341,,,,,,,1008.074331,1009.749925,1016.192888,1046.250366,,,,,,,0.026816628,0.02967386,0.03957654,0.165309789,,,,,,,0.038629066,0.038629261,0.038629224,0.03863025,,,,,,,3.763102672,4.265541201,4.644310742,5.183177998,,,,,,,0.016310498,0.02418513,0.031112211,0.085101384,,,,,,,0.096905788,0.112323457,0.126729388,0.242194763,,,,,,,0.037099776,0.050716658,0.063433188,0.166903396,,,,,,,0.047628817,0.022831117,0.020668622,0.007093323,,,,,,,0.829174369,1.280828552,1.652533015,4.464817054,,,,,,,0.004192288,0.006256369,0.008709597,0.032662931,,,,,,,0.019194565,0.017951348,0.023228022,0.13685395,,,,,,,15.01399285,26.0942059,34.63504622,69.2666882,,,,,,,1017.43478,1018.878724,1024.693398,1052.066445,,,,,,,0.026620634,0.029419043,0.0391174,0.162521163,,,,,,,0.038612888,0.038613259,0.038613256,0.038614316,,,,,,,3.771866792,4.228530993,4.597345566,5.115955728,,,,,,,0.014874636,0.02167039,0.027920349,0.074643914,,,,,,,0.094793159,0.108014533,0.120927766,0.22008255,,,,,,,0.034669069,0.046342433,0.057738036,0.146798293,,,,,,,0.053406496,0.023216909,0.020841515,0.007132754,,,,,,,0.852567531,1.295006815,1.654971177,4.472501538,,,,,,,0.004587903,0.005604498,0.007801218,0.036802916,,,,,,,0.021733297,0.018707609,0.024147586,0.152121786,,,,,,,16.70342326,28.4122616,38.2236437,75.4631594,,,,,,,1035.596276,1037.312258,1043.85254,1074.526217,,,,,,,0.028487301,0.0314714,0.041811241,0.173459604,,,,,,,0.039298968,0.039300154,0.039300142,0.039301076,,,,,,,3.960724332,4.264144153,4.639161699,5.223998265,,,,,,,0.015688094,0.019396656,0.024977846,0.078261281,,,,,,,0.103348616,0.11028206,0.121850302,0.236409377,,,,,,,0.037211945,0.043319049,0.053521561,0.156364205,,,,,,,0.077238753,0.02415505,0.021231195,0.007285026,,,,,,,0.96338244,1.369643387,1.73804882,4.815471418,,,,,,,0.004758367,0.006750759,0.009494234,0.038547579,,,,,,,0.019093251,0.018450765,0.022355791,0.137565656,,,,,,,15.31341515,27.98901126,34.06690362,69.48789839,,,,,,,998.1521037,999.5149678,1005.39298,1033.201865,,,,,,,0.025348539,0.028031021,0.037329043,0.155509279,,,,,,,0.038229343,0.038229094,0.038229071,0.038230199,,,,,,,3.775852644,4.347001604,4.486919024,4.957511645,,,,,,,0.016439272,0.022879206,0.029474726,0.083148242,,,,,,,0.093198139,0.105849963,0.119329113,0.235048028,,,,,,,0.037034015,0.04820645,0.06010528,0.16369878,,,,,,,0.069278364,0.040160419,0.020448961,0.007004858,,,,,,,0.895658122,1.332615687,1.60545053,4.371189795,,,,,,,0.002810018,0.004257561,0.005951228,0.01894965,,,,,,,0.018959076,0.017844468,0.022847959,0.133398706,,,,,,,15.77172403,26.78161868,35.15479913,69.0951995,,,,,,,1050.972736,1051.800091,1056.080042,1076.986653,,,,,,,0.028091061,0.031032569,0.04122617,0.171016858,,,,,,,0.039177924,0.039178568,0.039178566,0.039179542,,,,,,,3.638986081,4.000301555,4.364213499,4.98836623,,,,,,,0.010113102,0.015002023,0.019624956,0.045507336,,,,,,,0.090607714,0.100045785,0.109489013,0.16321245,,,,,,,0.026940472,0.035264551,0.043587877,0.092582808,,,,,,,0.064561282,0.024333999,0.021479892,0.007301708,,,,,,,0.970932193,1.453083491,1.824150589,4.948612022,,,,,,,0.00313647,0.004321333,0.006036277,0.021311615,,,,,,,0.018083617,0.016335076,0.021137003,0.128044149,,,,,,,15.43474535,26.09094794,34.75184131,66.99121204,,,,,,,1019.13868,1020.091037,1028.363357,1046.187192,,,,,,,0.026169499,0.028911847,0.038510234,0.15939144,,,,,,,0.038553669,0.038554694,0.038594044,0.038555757,,,,,,,3.688416623,4.007060523,4.346671045,4.872131774,,,,,,,0.011208526,0.015320932,0.02010034,0.050582718,,,,,,,0.086303336,0.094147646,0.104255796,0.167640066,,,,,,,0.02810285,0.035019351,0.043668325,0.101320081,,,,,,,0.069791827,0.023715529,0.020916159,0.007092895,,,,,,,0.91958694,1.32795846,1.689627523,4.595530088,,,,,,,0.002838873,0.004170189,0.005753152,0.017951488,,,,,,,0.017839635,0.017435734,0.021590684,0.123906373,,,,,,,15.23579536,27.03774685,34.16586216,67.14380572,,,,,,,1042.765603,1043.385605,1047.228873,1066.318991,,,,,,,0.02671342,0.029540866,0.039339739,0.16388705,,,,,,,0.038640978,0.038641406,0.038641383,0.038642402,,,,,,,3.606408167,4.074755739,4.321531999,4.872301458,,,,,,,0.010359909,0.015005841,0.019563636,0.045181654,,,,,,,0.085357115,0.094386833,0.103514087,0.156233566,,,,,,,0.026632584,0.034598109,0.042644831,0.090616674,,,,,,,0.064771883,0.03323069,0.021299873,0.007229384,,,,,,,0.94185577,1.409558081,1.728430145,4.695730146,,,,,,,0.003602358,0.005005947,0.006911149,0.02554601,,,,,,,0.018574842,0.018033127,0.021805601,0.130976194,,,,,,,15.705425,29.01128365,35.89337782,72.01737162,,,,,,,1033.339489,1034.404253,1039.244647,1062.47555,,,,,,,0.026953813,0.029780036,0.039574459,0.164252896,,,,,,,0.038723733,0.038724245,0.038724221,0.038725266,,,,,,,3.951694669,4.356982578,4.499121825,5.275984682,,,,,,,0.012881042,0.017718487,0.022895803,0.060234223,,,,,,,0.092235825,0.101688498,0.112073941,0.190445748,,,,,,,0.031366861,0.039705671,0.048864462,0.119572313,,,,,,,0.062878611,0.037173065,0.018946889,0.007097346,,,,,,,0.933892373,1.40730302,1.687899035,4.660951731,,,,,,,0.00280572,0.004046995,0.005503939,0.018881463,,,,,,,0.015974465,0.015520366,0.020580549,0.128655054,,,,,,,13.78490126,25.71109782,35.40676697,75.90982535,,,,,,,1032.95375,1034.067798,1038.759803,1060.98785,,,,,,,0.027917616,0.030898563,0.04123013,0.172364075,,,,,,,0.038921981,0.038922165,0.038922182,0.038923134,,,,,,,3.148764126,2.708002117,3.013131418,5.199108191,,,,,,,0.010382298,0.014841333,0.019245831,0.048560337,,,,,,,0.088291308,0.096970717,0.105801062,0.165860633,,,,,,,0.026868395,0.034523017,0.042305461,0.096845157,,,,,,,0.030202371,0.013913567,0.010054477,0.006655296,,,,,,,0.8202261,1.223459082,1.572717691,4.814653836,,,,,, +Heavy duty short haul truck,E15,2010,,0.002259203,0.003855553,0.006111816,0.028815613,,,,,,,0.017199113,0.018584012,0.029271431,0.096007023,,,,,,,9.881290953,20.2546223,25.79289324,65.09835059,,,,,,,1007.438663,1010.144032,1018.683701,1055.026561,,,,,,,0.026089433,0.030546938,0.043767677,0.156890287,,,,,,,0.038629194,0.038629174,0.03862918,0.038629553,,,,,,,2.25066268,2.660222823,1.396889635,3.724224919,,,,,,,0.006945869,0.011129657,0.01540775,0.05883515,,,,,,,0.077281318,0.085520391,0.094483247,0.189130325,,,,,,,0.02055406,0.028109749,0.036231431,0.11981654,,,,,,,0.022778893,0.020545591,0.006906428,0.007152824,,,,,,,0.45257911,0.757304594,0.825345471,3.699920073,,,,,,,0.002120846,0.003576737,0.005609779,0.024799928,,,,,,,0.015779854,0.017215253,0.026797728,0.090957858,,,,,,,9.814559762,20.15151672,25.1310926,63.32329197,,,,,,,1016.849973,1019.226811,1026.962824,1060.277323,,,,,,,0.025908608,0.030274098,0.043221958,0.15412694,,,,,,,0.038613171,0.038613161,0.038613194,0.038613547,,,,,,,2.232678436,2.635560389,1.377312932,3.664269836,,,,,,,0.006779325,0.010809441,0.01488285,0.052396043,,,,,,,0.077597009,0.085440762,0.093849288,0.175254039,,,,,,,0.020282249,0.027491865,0.0351258,0.106994839,,,,,,,0.023170805,0.020730334,0.006962558,0.007188422,,,,,,,0.468308311,0.77072683,0.831971616,3.671454941,,,,,,,0.001895227,0.003196984,0.005860159,0.027848204,,,,,,,0.016894851,0.018300486,0.028969229,0.100010463,,,,,,,10.86665626,22.1878845,26.62130232,68.52551208,,,,,,,1035.011871,1037.709297,1046.399084,1083.674402,,,,,,,0.027728735,0.032383004,0.046187292,0.164464083,,,,,,,0.039300093,0.039300097,0.039300084,0.03930042,,,,,,,2.24699455,2.649029787,1.393448606,3.760731583,,,,,,,0.006046749,0.009640659,0.01447945,0.054477554,,,,,,,0.082664626,0.089591264,0.099825696,0.188010112,,,,,,,0.019833099,0.026262521,0.035534174,0.113384715,,,,,,,0.024102672,0.02110625,0.007094331,0.007347048,,,,,,,0.503571473,0.818504541,0.892194347,3.936513364,,,,,,,0.00217131,0.003717483,0.006044872,0.029052434,,,,,,,0.017683748,0.017677771,0.027885895,0.092418956,,,,,,,10.54534543,19.83726792,24.81285071,63.11019772,,,,,,,997.4981978,999.864163,1007.702023,1041.683965,,,,,,,0.024665475,0.028850777,0.04126423,0.147534319,,,,,,,0.038229016,0.038229018,0.038229021,0.038229429,,,,,,,2.290920416,2.573484934,1.345633992,3.557390688,,,,,,,0.006593172,0.010577922,0.014881963,0.057444561,,,,,,,0.072527604,0.080320129,0.089411186,0.182847077,,,,,,,0.019502102,0.026642528,0.03486306,0.117386994,,,,,,,0.040085985,0.020336506,0.006831974,0.007062364,,,,,,,0.499305821,0.758245698,0.826057129,3.585102518,,,,,,,0.001846038,0.003039467,0.004390185,0.015174005,,,,,,,0.013904157,0.015757941,0.023648273,0.085504326,,,,,,,9.883921356,20.45902236,25.05491748,62.84413233,,,,,,,1050.487564,1052.038037,1057.823714,1083.961917,,,,,,,0.027342847,0.031931298,0.04554037,0.162146221,,,,,,,0.03917852,0.039178527,0.039178511,0.039178859,,,,,,,2.10044962,2.481631314,1.306433844,3.588813646,,,,,,,0.006349378,0.010035471,0.013209482,0.034843217,,,,,,,0.08181307,0.088790408,0.095042308,0.141822821,,,,,,,0.020060874,0.026528855,0.032272978,0.073500041,,,,,,,0.024303773,0.021397688,0.007171788,0.007348998,,,,,,,0.55650231,0.88289606,0.937954557,3.987697449,,,,,,,0.00177441,0.002890186,0.004503979,0.016703773,,,,,,,0.013118463,0.014845815,0.022504138,0.081907043,,,,,,,9.725440268,20.20515559,23.99583038,60.43899272,,,,,,,1018.67763,1024.141834,1026.353566,1053.233204,,,,,,,0.025472275,0.029829956,0.042436077,0.151130599,,,,,,,0.038554592,0.038593967,0.038554611,0.038554997,,,,,,,2.108165498,2.484072878,1.298047862,3.48987695,,,,,,,0.006096547,0.009509288,0.01320152,0.03757152,,,,,,,0.074898006,0.081731611,0.088775826,0.141479294,,,,,,,0.018819157,0.024869993,0.031551564,0.078033944,,,,,,,0.023683147,0.020830301,0.006958427,0.007140665,,,,,,,0.515852184,0.815364406,0.86479666,3.704799935,,,,,,,0.001820103,0.002969726,0.004208991,0.014125552,,,,,,,0.013556758,0.014833852,0.022392541,0.080023954,,,,,,,10.07069468,19.86266899,24.91014833,61.87828502,,,,,,,1042.277685,1043.589183,1048.823561,1072.959487,,,,,,,0.025994016,0.030404814,0.043486877,0.155481829,,,,,,,0.038641307,0.038641321,0.038641314,0.038641718,,,,,,,2.142062849,2.464116084,1.295035989,3.505837223,,,,,,,0.006425765,0.010126666,0.013251383,0.034306424,,,,,,,0.076364422,0.083327213,0.089419356,0.134428697,,,,,,,0.019496272,0.025924435,0.031507767,0.071181623,,,,,,,0.033194845,0.021225847,0.007110768,0.007274406,,,,,,,0.539828749,0.835198017,0.8916257,3.787510522,,,,,,,0.001875262,0.003107173,0.004895297,0.019578946,,,,,,,0.015039655,0.015677997,0.025004615,0.086325085,,,,,,,10.98525987,20.8267862,26.70800608,66.69493719,,,,,,,1032.817553,1034.682836,1041.176002,1069.84086,,,,,,,0.026234828,0.030643583,0.043719763,0.155746563,,,,,,,0.038724169,0.038724179,0.038724187,0.038724543,,,,,,,2.29340027,2.566384897,1.440379945,3.786082537,,,,,,,0.006328761,0.010024412,0.01400929,0.043459145,,,,,,,0.078027722,0.085013461,0.093050661,0.156661374,,,,,,,0.019642902,0.026099987,0.033410147,0.089534978,,,,,,,0.037117723,0.01886069,0.006954467,0.007146681,,,,,,,0.537082812,0.806876457,0.892990024,3.784569852,,,,,,,0.001721392,0.002788783,0.004231151,0.014529529,,,,,,,0.012246182,0.014354978,0.025209565,0.08588814,,,,,,,10.02944487,20.41615814,29.26915041,72.49961801,,,,,,,1032.457022,1034.344999,1040.600963,1067.739137,,,,,,,0.027158929,0.031809481,0.045602706,0.163604393,,,,,,,0.038922118,0.038922124,0.038922131,0.038922474,,,,,,,1.381346919,1.636344068,1.390473239,3.761385873,,,,,,,0.006199201,0.009748558,0.013536956,0.036136042,,,,,,,0.078881004,0.085517645,0.092968488,0.140970353,,,,,,,0.019408329,0.025562912,0.032358946,0.07467248,,,,,,,0.013889521,0.010008845,0.006526847,0.006697762,,,,,,,0.467042345,0.721422561,0.901884757,3.947215897,,,,, +Heavy duty short haul truck,E15,2015,,,0.001911724,0.003348789,0.005354395,0.014801893,,,,,,,0.014752543,0.017497829,0.028509247,0.066013598,,,,,,,5.972307512,11.33263555,18.74902943,43.82843092,,,,,,,1005.440855,1008.255126,1015.191417,1044.684234,,,,,,,0.007125952,0.008496589,0.011578714,0.052741959,,,,,,,0.038641011,0.038642229,0.03864308,0.03863965,,,,,,,0.987158183,0.562823859,0.642307738,1.436847276,,,,,,,0.006154802,0.010226715,0.014654445,0.02972016,,,,,,,0.074629311,0.082801192,0.092151997,0.126516452,,,,,,,0.018944505,0.026173503,0.034445382,0.064708166,,,,,,,0.020449937,0.006835724,0.006882751,0.007082705,,,,,,,0.323410372,0.412018222,0.561276302,1.767193837,,,,,,,0.001822936,0.003192552,0.005029944,0.013181694,,,,,,,0.013310223,0.016005144,0.026249074,0.060922486,,,,,,,5.900859017,11.03921048,18.1780331,42.24580956,,,,,,,1014.867638,1017.331048,1023.595298,1050.644591,,,,,,,0.007076406,0.00841875,0.01143725,0.051821981,,,,,,,0.038625118,0.038626347,0.038627169,0.038623734,,,,,,,0.97831772,0.555778812,0.633141995,1.409214487,,,,,,,0.006038755,0.010044528,0.014299592,0.027802412,,,,,,,0.075061233,0.083058379,0.091961982,0.122495423,,,,,,,0.018786208,0.025860636,0.033736942,0.060608686,,,,,,,0.020641667,0.006897257,0.006939728,0.007123115,,,,,,,0.343261502,0.430539945,0.578065242,1.758979917,,,,,,,0.001624994,0.003182233,0.00513008,0.01436707,,,,,,,0.014284225,0.017267722,0.028128492,0.065368454,,,,,,,6.657246962,11.68082444,19.25959877,44.98544139,,,,,,,1033.032354,1035.849429,1042.906722,1073.120475,,,,,,,0.007573498,0.009004635,0.012222805,0.055300042,,,,,,,0.039311077,0.0393122,0.039312961,0.039309802,,,,,,,0.981999388,0.558846047,0.638955889,1.446388754,,,,,,,0.005381187,0.009562146,0.013755467,0.028032304,,,,,,,0.080160974,0.088617255,0.097515767,0.13037325,,,,,,,0.018454587,0.025935176,0.03380696,0.062717785,,,,,,,0.021011126,0.007022807,0.007070653,0.007275496,,,,,,,0.372073828,0.466911323,0.620282504,1.860730104,,,,,,,0.001822715,0.003246663,0.0052212,0.014755595,,,,,,,0.014206828,0.016599681,0.026945049,0.062516245,,,,,,,5.803002349,10.87851295,17.88739922,41.65906493,,,,,,,995.5059704,997.9636893,1004.309863,1031.877561,,,,,,,0.006736952,0.008023889,0.010917809,0.049601128,,,,,,,0.038241361,0.038242623,0.038243507,0.038239949,,,,,,,0.953500018,0.543690277,0.619801881,1.374484498,,,,,,,0.005824948,0.009788391,0.014062906,0.028901774,,,,,,,0.069902866,0.077877897,0.086938871,0.120982017,,,,,,,0.01785842,0.024913289,0.032928776,0.062918308,,,,,,,0.020247869,0.00676595,0.006808976,0.006995879,,,,,,,0.362360851,0.441755687,0.579213129,1.710103729,,,,,,,0.001636658,0.002743523,0.004167242,0.009354098,,,,,,,0.010931827,0.013775383,0.023204944,0.054306122,,,,,,,5.875434867,11.02037772,18.0636706,41.61952582,,,,,,,1048.61113,1050.200846,1054.84322,1076.071297,,,,,,,0.007468101,0.008878994,0.012051647,0.054520887,,,,,,,0.039189654,0.039190778,0.039191585,0.039188365,,,,,,,0.915171247,0.518454627,0.592635684,1.363441108,,,,,,,0.005709506,0.00924325,0.012969584,0.022520381,,,,,,,0.079436178,0.086398365,0.09402456,0.115161118,,,,,,,0.018776486,0.024935388,0.031681619,0.05022732,,,,,,,0.021327987,0.007120107,0.007151579,0.0072955,,,,,,,0.430183058,0.520950883,0.683403048,1.943242358,,,,,,,0.001549221,0.002759897,0.004224562,0.009833085,,,,,,,0.010740175,0.013270899,0.022197108,0.051910115,,,,,,,5.892146355,10.54269324,17.24668811,39.72485102,,,,,,,1020.578183,1018.464777,1023.293408,1045.136414,,,,,,,0.006977017,0.008272437,0.011229996,0.050816652,,,,,,,0.038605841,0.038567758,0.038568579,0.038565145,,,,,,,0.917628746,0.520815649,0.593436851,1.332059003,,,,,,,0.005402412,0.00917199,0.012906736,0.022980871,,,,,,,0.072870132,0.079982001,0.087660614,0.110050586,,,,,,,0.017498358,0.024045579,0.030838253,0.050509566,,,,,,,0.020757815,0.006904943,0.00693768,0.007085771,,,,,,,0.408539902,0.484297268,0.632114291,1.796780863,,,,,,,0.001622327,0.002703132,0.004037897,0.008635983,,,,,,,0.010287744,0.013060154,0.022082299,0.051647123,,,,,,,5.774948236,10.98302297,18.124005,41.95033926,,,,,,,1040.401619,1041.737345,1045.917493,1065.526011,,,,,,,0.007099807,0.008456069,0.011505866,0.052272876,,,,,,,0.038653103,0.038654305,0.03865515,0.038651757,,,,,,,0.909567644,0.516135334,0.588791067,1.338540463,,,,,,,0.005787624,0.009362852,0.013057088,0.022130155,,,,,,,0.074057669,0.08106933,0.088566779,0.108352819,,,,,,,0.018196592,0.024399255,0.031031609,0.048397184,,,,,,,0.021161011,0.007062727,0.007091068,0.007224007,,,,,,,0.413067952,0.498507577,0.653299226,1.856590706,,,,,,,0.00164031,0.002935842,0.004518333,0.010903362,,,,,,,0.011640123,0.014782604,0.024631054,0.057393164,,,,,,,6.200323744,11.76893271,19.5015355,45.41640301,,,,,,,1030.884155,1032.802554,1038.032571,1061.320985,,,,,,,0.007165476,0.00852112,0.011569533,0.052368283,,,,,,,0.038735962,0.038737157,0.038737987,0.038734598,,,,,,,0.949087422,0.580413478,0.660184452,1.464571293,,,,,,,0.005668881,0.009659613,0.013622552,0.024914228,,,,,,,0.075585374,0.083494012,0.09167085,0.116851316,,,,,,,0.018248238,0.025244388,0.032477776,0.054610623,,,,,,,0.018789452,0.006898329,0.006933428,0.007089588,,,,,,,0.406057444,0.496228789,0.646741283,1.841381783,,,,,,,0.001536521,0.00273864,0.004068232,0.008604557,,,,,,,0.010165178,0.014686587,0.025026027,0.058496508,,,,,,,6.376376851,12.97914208,21.86059266,51.4590522,,,,,,,1030.554946,1032.484398,1037.527895,1059.624742,,,,,,,0.0074181,0.008848091,0.012063684,0.054997474,,,,,,,0.038933631,0.038934814,0.038935633,0.038932313,,,,,,,0.58706695,0.549922404,0.629349679,1.452335108,,,,,,,0.005587099,0.009592431,0.01336053,0.022599875,,,,,,,0.076613188,0.084505023,0.092130133,0.112167093,,,,,,,0.0181862,0.025167454,0.031912728,0.049492135,,,,,,,0.009970076,0.006475732,0.006507524,0.006646688,,,,,,,0.365415125,0.478123917,0.647113619,1.954393783,,,, +Heavy duty short haul truck,E15,2020,,,,0.001967363,0.003422052,0.005413404,0.012252832,,,,,,,0.015183306,0.017944676,0.028848072,0.065824688,,,,,,,5.757236294,11.63440612,18.82321078,37.74221539,,,,,,,954.1985289,956.966223,963.9828651,1002.020423,,,,,,,0.007500262,0.00885044,0.012107889,0.02790589,,,,,,,0.038653369,0.038653388,0.03865338,0.038650284,,,,,,,0.40465791,0.494917085,0.548877158,0.768526369,,,,,,,0.006312165,0.010379758,0.014689093,0.025353641,,,,,,,0.074887789,0.083128294,0.092264637,0.116590826,,,,,,,0.019173166,0.026462847,0.034545042,0.056069914,,,,,,,0.006469234,0.006487999,0.006535569,0.006793455,,,,,,,0.286438765,0.390247245,0.517776288,1.202890685,,,,,,,0.001891069,0.003263358,0.005087158,0.011133573,,,,,,,0.01364156,0.016431526,0.026550979,0.060565063,,,,,,,5.585673721,11.31203276,18.21495057,36.31540601,,,,,,,963.0636492,965.5057141,971.8561317,1007.951547,,,,,,,0.007442996,0.008765296,0.011955492,0.027436931,,,,,,,0.038637602,0.038637582,0.03863755,0.038634443,,,,,,,0.399720224,0.488432858,0.540600322,0.753320497,,,,,,,0.006218418,0.010194712,0.014332309,0.02421809,,,,,,,0.075369053,0.083378315,0.092069678,0.114351401,,,,,,,0.019058478,0.026143662,0.033832246,0.053548569,,,,,,,0.006529337,0.006545892,0.006588949,0.006833667,,,,,,,0.304495534,0.406905013,0.531966074,1.208891955,,,,,,,0.001862998,0.003255795,0.005192365,0.011931117,,,,,,,0.014918469,0.017704453,0.028457163,0.064855209,,,,,,,5.908218095,11.97236416,19.30304717,38.55471824,,,,,,,980.4369221,983.2036651,990.3408551,1029.331533,,,,,,,0.007964335,0.009374106,0.012775333,0.029283646,,,,,,,0.039322533,0.039322518,0.039322524,0.039319648,,,,,,,0.401500661,0.491316477,0.545899461,0.769181802,,,,,,,0.005893557,0.009710375,0.013794287,0.024066422,,,,,,,0.081179992,0.088936286,0.097638478,0.121204732,,,,,,,0.01935601,0.026217388,0.033915525,0.054768691,,,,,,,0.006647123,0.006665882,0.00671427,0.006978618,,,,,,,0.33325803,0.441410161,0.571475368,1.277366487,,,,,,,0.001899831,0.003314674,0.005273031,0.012103336,,,,,,,0.014546572,0.017007807,0.027267277,0.062272151,,,,,,,5.512457296,11.13517809,17.90843549,35.70563241,,,,,,,944.6643965,947.1024373,953.535438,989.7954336,,,,,,,0.007088408,0.008356137,0.011414664,0.026252487,,,,,,,0.038254242,0.03825426,0.038254255,0.038251011,,,,,,,0.390306365,0.477911652,0.529335781,0.737581068,,,,,,,0.006031893,0.009929902,0.014088293,0.02454096,,,,,,,0.070266079,0.078180659,0.087029412,0.11098666,,,,,,,0.018179731,0.025181099,0.033008875,0.054207077,,,,,,,0.006404594,0.006421124,0.006464738,0.006710572,,,,,,,0.323395903,0.416981849,0.534655167,1.175689454,,,,,,,0.001656981,0.002805659,0.004217369,0.0084355,,,,,,,0.010910144,0.014170736,0.023387541,0.053530193,,,,,,,5.529056125,11.2719008,18.06292902,35.74710881,,,,,,,994.9630083,996.5909916,1001.328834,1032.93693,,,,,,,0.007853403,0.009243236,0.012596362,0.02887136,,,,,,,0.039201252,0.039201243,0.039201262,0.039198343,,,,,,,0.371341145,0.455099438,0.504951216,0.711994735,,,,,,,0.005760009,0.009380734,0.012996808,0.02091397,,,,,,,0.079490465,0.086688672,0.09411643,0.111387779,,,,,,,0.018824507,0.025192202,0.031762921,0.047047389,,,,,,,0.006745608,0.006756644,0.006788767,0.007003061,,,,,,,0.380296232,0.488899614,0.623453623,1.37021092,,,,,,,0.001660084,0.002822068,0.004274488,0.008720376,,,,,,,0.010758571,0.013656128,0.02241478,0.051263199,,,,,,,5.294281035,10.77384091,17.2322461,34.05801003,,,,,,,964.6970207,966.4347479,971.3597781,1003.07245,,,,,,,0.007316379,0.008611989,0.011737778,0.026908954,,,,,,,0.038579014,0.038579001,0.038578985,0.038575859,,,,,,,0.373327775,0.457221946,0.505775786,0.704897232,,,,,,,0.005707521,0.009307815,0.012932675,0.021016944,,,,,,,0.073092939,0.080269541,0.087750181,0.10551515,,,,,,,0.017951369,0.024299944,0.030917487,0.046638142,,,,,,,0.006540411,0.006552191,0.006585582,0.006800586,,,,,,,0.35739148,0.455312179,0.578514212,1.264518375,,,,,,,0.00164409,0.002759716,0.004078924,0.00783341,,,,,,,0.010283135,0.013444005,0.022254982,0.051001181,,,,,,,5.537373738,11.26713635,18.17916773,36.24114794,,,,,,,987.0908232,988.4854774,992.7653161,1022.889621,,,,,,,0.007470186,0.008806213,0.012029482,0.02766653,,,,,,,0.038665427,0.03866546,0.038665445,0.038662356,,,,,,,0.369919609,0.453044415,0.501611954,0.702664067,,,,,,,0.005847493,0.009494331,0.01307253,0.020632916,,,,,,,0.074125816,0.081344853,0.088630588,0.104888956,,,,,,,0.018256893,0.024642947,0.031088083,0.045476024,,,,,,,0.006692236,0.00670169,0.006730707,0.006934943,,,,,,,0.366034117,0.467457731,0.595819826,1.311825506,,,,,,,0.00176007,0.003000257,0.004568752,0.009464288,,,,,,,0.012155349,0.015206878,0.02488523,0.05695898,,,,,,,5.95635785,12.09271197,19.59125878,39.25916625,,,,,,,978.1621175,980.098789,985.4227898,1018.547099,,,,,,,0.00753569,0.008871099,0.012092917,0.027729616,,,,,,,0.038748258,0.038748254,0.038748273,0.038745193,,,,,,,0.417245783,0.5096235,0.5629116,0.781438935,,,,,,,0.006005207,0.009803247,0.0136511,0.022356592,,,,,,,0.076209805,0.083796956,0.091765254,0.111000396,,,,,,,0.018800647,0.02551239,0.032561272,0.049582642,,,,,,,0.006533304,0.006546319,0.006582045,0.006803806,,,,,,,0.365962563,0.46724786,0.593706428,1.288086994,,,,,,,0.001670315,0.002797271,0.004110344,0.007772963,,,,,,,0.011465493,0.01514992,0.025241489,0.058091438,,,,,,,6.610762054,13.43462572,22.11322665,44.97818255,,,,,,,977.8674869,979.8123426,984.9475139,1017.097884,,,,,,,0.007808621,0.009217256,0.012615768,0.029096304,,,,,,,0.038945626,0.038945625,0.038945625,0.038942643,,,,,,,0.394395592,0.483098291,0.536675451,0.760090086,,,,,,,0.0059968,0.009736008,0.013385594,0.020987934,,,,,,,0.077409494,0.084802791,0.092210834,0.10846971,,,,,,,0.01889062,0.025430883,0.031984159,0.046372764,,,,,,,0.006133102,0.006145379,0.006177743,0.006379876,,,,,,,0.34106402,0.450701939,0.591772261,1.365964615,,, +Heavy duty short haul truck,E15,2025,,,,,0.001987361,0.003444114,0.005431548,0.012229411,,,,,,,0.015144358,0.017278392,0.026888232,0.064647267,,,,,,,5.566147183,10.94647643,17.99607862,37.14927397,,,,,,,954.5600296,957.2523659,964.0424183,991.3955866,,,,,,,0.007694786,0.009018893,0.012194231,0.023487471,,,,,,,0.038653387,0.03865339,0.038653378,0.038652922,,,,,,,0.313589373,0.380617556,0.427602402,0.584949551,,,,,,,0.006324142,0.01038008,0.014701405,0.025411033,,,,,,,0.074926472,0.083149078,0.092302316,0.11667113,,,,,,,0.019207363,0.026481229,0.034578376,0.056140372,,,,,,,0.006471685,0.006489938,0.006535973,0.006721421,,,,,,,0.276199558,0.360578687,0.47534848,1.125796386,,,,,,,0.00190806,0.003281484,0.005102586,0.011150372,,,,,,,0.013542061,0.015740943,0.024626738,0.059402611,,,,,,,5.383011804,10.60796075,17.3782462,35.70891452,,,,,,,963.3963284,965.7690657,971.9140163,997.2036198,,,,,,,0.007633496,0.008930262,0.012040057,0.023100471,,,,,,,0.03863758,0.038637543,0.038637575,0.038637089,,,,,,,0.309472504,0.375301802,0.420735785,0.572559259,,,,,,,0.006227621,0.01019133,0.014342022,0.024313322,,,,,,,0.07540022,0.083389181,0.092100518,0.114532227,,,,,,,0.019086079,0.026153302,0.033859492,0.053707984,,,,,,,0.006531593,0.006547681,0.00658934,0.006760797,,,,,,,0.293631081,0.376314742,0.488252148,1.130106797,,,,,,,0.001883642,0.003278397,0.005210726,0.011919727,,,,,,,0.014856548,0.017023163,0.026495625,0.06378361,,,,,,,5.698852718,11.23511636,18.4248823,37.92120558,,,,,,,980.8089053,983.4987928,990.4042463,1018.430605,,,,,,,0.00816744,0.009549988,0.012865495,0.024657607,,,,,,,0.039322526,0.039322511,0.039322528,0.039322068,,,,,,,0.310843744,0.377519239,0.424866453,0.584376746,,,,,,,0.005907266,0.009712389,0.01380685,0.024127058,,,,,,,0.081222123,0.088960405,0.097676795,0.121301053,,,,,,,0.019393286,0.026238753,0.033949405,0.054853435,,,,,,,0.006649646,0.006667883,0.006714699,0.006904711,,,,,,,0.321825644,0.408955752,0.526067778,1.195279955,,,,,,,0.001919612,0.003336106,0.005289846,0.012029544,,,,,,,0.01454845,0.016428776,0.025492061,0.06128317,,,,,,,5.309633831,10.4367734,17.08011511,35.07045708,,,,,,,945.0059074,947.3737373,953.5948698,979.2561969,,,,,,,0.00727105,0.008514296,0.01149574,0.022099494,,,,,,,0.038254253,0.03825426,0.038254234,0.038253761,,,,,,,0.302199798,0.367258537,0.412181016,0.561327323,,,,,,,0.006043252,0.00992916,0.014098086,0.024534133,,,,,,,0.070303547,0.078199151,0.087061673,0.110912958,,,,,,,0.018212861,0.025197457,0.033037435,0.054141256,,,,,,,0.00640691,0.006422964,0.006465141,0.006639119,,,,,,,0.312646508,0.388700553,0.494842551,1.099427395,,,,,,,0.001667176,0.002815236,0.004226743,0.00852243,,,,,,,0.010641322,0.013332971,0.021321554,0.052131025,,,,,,,5.305114317,10.52468126,17.18578818,35.10892668,,,,,,,995.2313506,996.8065828,1001.381116,1021.794055,,,,,,,0.008053636,0.009416634,0.012685247,0.024310586,,,,,,,0.039201256,0.039201265,0.039201262,0.039200819,,,,,,,0.286519252,0.348376847,0.391043832,0.535464515,,,,,,,0.005763131,0.009370454,0.013001171,0.021073544,,,,,,,0.079505154,0.086680137,0.094132609,0.111740754,,,,,,,0.018837505,0.025184619,0.031777222,0.047359137,,,,,,,0.006747427,0.006758106,0.006789121,0.006927514,,,,,,,0.366174734,0.452240307,0.570213278,1.27227501,,,,,,,0.001671381,0.002832944,0.004284747,0.008794278,,,,,,,0.010554951,0.012923116,0.020543168,0.050089524,,,,,,,5.075453367,10.05089893,16.38623422,33.43749507,,,,,,,964.9710241,966.6538589,971.4117348,992.2608795,,,,,,,0.007503035,0.00877362,0.011820637,0.02265782,,,,,,,0.038578995,0.038578983,0.038578974,0.038578506,,,,,,,0.28824628,0.350328334,0.392344319,0.532637944,,,,,,,0.005711977,0.009298859,0.012937769,0.021161189,,,,,,,0.073110848,0.080264376,0.087768413,0.105830498,,,,,,,0.017967243,0.024295392,0.030933611,0.046916529,,,,,,,0.006542268,0.006553678,0.006585936,0.006727287,,,,,,,0.345024838,0.42285933,0.531444178,1.177284656,,,,,,,0.001651473,0.002765538,0.004085264,0.007904331,,,,,,,0.01001876,0.012633961,0.020260824,0.049570399,,,,,,,5.334856883,10.5675607,17.34707287,35.66861436,,,,,,,987.3418996,988.6866744,992.8158115,1011.81514,,,,,,,0.007662671,0.008972889,0.012114922,0.023289851,,,,,,,0.038665461,0.038665448,0.038665425,0.038664975,,,,,,,0.285552894,0.346941498,0.388646966,0.528818104,,,,,,,0.005846188,0.00947809,0.013071952,0.020764217,,,,,,,0.074130588,0.081322819,0.088635725,0.105180818,,,,,,,0.018261083,0.02462348,0.031092653,0.045733662,,,,,,,0.006693937,0.006703055,0.006731049,0.006859861,,,,,,,0.352431983,0.432882342,0.545159402,1.217882706,,,,,,,0.001772908,0.003013353,0.004580962,0.009522108,,,,,,,0.011981686,0.014451853,0.022894339,0.055691877,,,,,,,5.756490428,11.37632079,18.72907652,38.64925849,,,,,,,978.4525161,980.3307875,985.476494,1007.599175,,,,,,,0.007728082,0.009037705,0.012178322,0.023348382,,,,,,,0.038748248,0.038748258,0.038748274,0.038747783,,,,,,,0.322479463,0.39089751,0.437147783,0.591791793,,,,,,,0.006011369,0.00979694,0.013659327,0.022501013,,,,,,,0.076232028,0.083798262,0.091790513,0.111301037,,,,,,,0.018820309,0.025513535,0.032583615,0.049848109,,,,,,,0.006535252,0.006547875,0.006582404,0.006730687,,,,,,,0.353705858,0.434882309,0.546866639,1.202178834,,,,,,,0.001678828,0.0028049,0.004119453,0.007878587,,,,,,,0.011187572,0.014244104,0.022972396,0.056513284,,,,,,,6.44684209,12.76127962,21.26778588,44.46599533,,,,,,,978.1398094,980.0297164,984.9945979,1006.142934,,,,,,,0.008011563,0.009393002,0.012705839,0.024488084,,,,,,,0.038945627,0.038945639,0.038945619,0.038945175,,,,,,,0.304851365,0.370312251,0.415975818,0.571884397,,,,,,,0.006000437,0.009726639,0.013393322,0.021200039,,,,,,,0.077423393,0.084793771,0.09223226,0.108927795,,,,,,,0.018902929,0.025422881,0.032003136,0.046777504,,,,,,,0.006134817,0.006146746,0.006178041,0.00631117,,,,,,,0.329128286,0.416654909,0.540087641,1.271376323,, +Heavy duty short haul truck,E15,2030,,,,,,0.00200269,0.003458995,0.005431712,0.012178039,,,,,,,0.015583423,0.017472364,0.027074457,0.062482532,,,,,,,5.690258489,11.04388744,18.1143841,36.83704704,,,,,,,954.8843707,957.4451465,964.2423345,988.4670509,,,,,,,0.007840422,0.009105412,0.012283152,0.023265634,,,,,,,0.03865338,0.038653382,0.038653401,0.03865338,,,,,,,0.310453173,0.377199144,0.424104637,0.533816186,,,,,,,0.006334587,0.010391816,0.014674681,0.025302402,,,,,,,0.074958288,0.083182711,0.092258819,0.116444795,,,,,,,0.019235505,0.026510995,0.034539874,0.055935267,,,,,,,0.006473884,0.006491245,0.006537329,0.006701566,,,,,,,0.276595559,0.360270518,0.473101554,1.076331277,,,,,,,0.001921102,0.003294214,0.005101445,0.011107613,,,,,,,0.013928691,0.015914892,0.024800356,0.057304309,,,,,,,5.500368738,10.69938758,17.48809585,35.39929425,,,,,,,963.6944786,965.9478516,972.0986116,994.2701344,,,,,,,0.007776121,0.009015003,0.012127154,0.022882941,,,,,,,0.038637548,0.038637572,0.038637581,0.038637579,,,,,,,0.306328296,0.371896376,0.417258427,0.522212914,,,,,,,0.006235875,0.010201001,0.014314037,0.024213296,,,,,,,0.075426163,0.083417422,0.092053652,0.114328533,,,,,,,0.019109081,0.026178252,0.03381802,0.053522807,,,,,,,0.006533616,0.006548892,0.006590592,0.006740909,,,,,,,0.293683818,0.375718355,0.485107691,1.079135991,,,,,,,0.001899086,0.003293368,0.005211886,0.011870109,,,,,,,0.01529057,0.017218637,0.026731772,0.061562861,,,,,,,5.824158679,11.33281206,18.54444357,37.58935993,,,,,,,981.142963,983.6981026,990.6093688,1015.425697,,,,,,,0.008319501,0.009640334,0.012958337,0.024425594,,,,,,,0.039322516,0.039322523,0.039322509,0.039322513,,,,,,,0.307725698,0.374118064,0.421344101,0.532969691,,,,,,,0.005917922,0.009724147,0.013781283,0.024025518,,,,,,,0.08125439,0.08899423,0.097636094,0.121089264,,,,,,,0.019421846,0.026268644,0.033913427,0.054660551,,,,,,,0.006651911,0.006669233,0.006716091,0.006884339,,,,,,,0.321381078,0.408018875,0.521050741,1.144548902,,,,,,,0.001934487,0.003350249,0.005282396,0.01198604,,,,,,,0.014978706,0.016619917,0.025711189,0.059241198,,,,,,,5.424104525,10.52472144,17.1750589,34.77179798,,,,,,,945.3121985,947.5562488,953.7840966,976.3695698,,,,,,,0.00740779,0.00859554,0.011579235,0.021891094,,,,,,,0.03825425,0.038254255,0.038254256,0.038254262,,,,,,,0.299135281,0.363923203,0.408664821,0.512409613,,,,,,,0.006052548,0.0099392,0.014057515,0.024441063,,,,,,,0.070333046,0.078229323,0.086988213,0.1107194,,,,,,,0.018238961,0.025224147,0.032972426,0.053965487,,,,,,,0.006408986,0.006424201,0.006466425,0.006619548,,,,,,,0.311835161,0.387560828,0.488547678,1.055341234,,,,,,,0.001675144,0.002823162,0.004223137,0.008498121,,,,,,,0.010927503,0.013471485,0.021469295,0.04994069,,,,,,,5.417059507,10.61111016,17.28284171,34.79949073,,,,,,,995.4719881,996.9500851,1001.530955,1018.820071,,,,,,,0.008203551,0.0095057,0.012776777,0.02408185,,,,,,,0.039201258,0.039201264,0.039201259,0.039201263,,,,,,,0.283504643,0.345136856,0.387727187,0.486360702,,,,,,,0.005766864,0.009375791,0.012973215,0.020993668,,,,,,,0.079518892,0.086696579,0.094083355,0.111588885,,,,,,,0.018849641,0.025199167,0.031733643,0.047219375,,,,,,,0.006749058,0.006759079,0.006790136,0.006907352,,,,,,,0.365031785,0.450593991,0.563235278,1.20872901,,,,,,,0.001680061,0.002841542,0.004281792,0.00876685,,,,,,,0.010846611,0.013062076,0.020702328,0.048069425,,,,,,,5.182028723,10.1329456,16.48098541,33.13504175,,,,,,,965.2163626,966.800333,971.5647759,989.3641437,,,,,,,0.00764278,0.008856649,0.011905967,0.022444598,,,,,,,0.038578971,0.038578979,0.038578989,0.038578982,,,,,,,0.285225965,0.347079754,0.389022367,0.484691172,,,,,,,0.005716334,0.009304735,0.012909851,0.021079597,,,,,,,0.07312624,0.080282336,0.087719843,0.105672076,,,,,,,0.017980886,0.024311297,0.03089064,0.046771534,,,,,,,0.006543933,0.006554671,0.006586973,0.006707649,,,,,,,0.343952036,0.421391571,0.524821788,1.121086492,,,,,,,0.001657329,0.002771271,0.004074279,0.007888557,,,,,,,0.010284266,0.012761333,0.020365889,0.047503228,,,,,,,5.450604059,10.65815882,17.45212812,35.36704492,,,,,,,987.5656101,988.8202823,992.9565566,1008.87626,,,,,,,0.007806776,0.009058497,0.012202913,0.023070227,,,,,,,0.038665444,0.038665443,0.038665447,0.038665475,,,,,,,0.282526686,0.343696694,0.385249938,0.480611975,,,,,,,0.00584662,0.00947984,0.013026226,0.020697949,,,,,,,0.074136817,0.081331266,0.088550264,0.105058581,,,,,,,0.018266625,0.024630968,0.031017023,0.045620556,,,,,,,0.006695453,0.006703961,0.006732005,0.006839936,,,,,,,0.351380006,0.431348228,0.538625242,1.156697543,,,,,,,0.001783,0.00302343,0.004582009,0.009485465,,,,,,,0.012316661,0.014608219,0.023056982,0.053538196,,,,,,,5.884053835,11.47664248,18.84212614,38.33852565,,,,,,,978.713694,980.4865443,985.6375493,1004.653906,,,,,,,0.007872125,0.009123285,0.012266267,0.02312863,,,,,,,0.038748261,0.038748275,0.038748258,0.038748255,,,,,,,0.319131988,0.387303018,0.433580895,0.538813292,,,,,,,0.006017807,0.009805233,0.013641877,0.022402714,,,,,,,0.076252247,0.083821671,0.091762947,0.111106348,,,,,,,0.018838186,0.025534219,0.032559258,0.049670798,,,,,,,0.006537002,0.006548919,0.006583484,0.006711009,,,,,,,0.353187655,0.433832236,0.542033457,1.146853633,,,,,,,0.001685808,0.002812315,0.004125798,0.007843686,,,,,,,0.011489588,0.014391956,0.023116363,0.054101616,,,,,,,6.598842478,12.88470378,21.41456158,44.14817968,,,,,,,978.3839513,980.174691,985.145353,1003.207773,,,,,,,0.008163498,0.009483274,0.012798623,0.024256695,,,,,,,0.038945604,0.038945623,0.038945604,0.038945636,,,,,,,0.301711209,0.366932129,0.412757152,0.519108444,,,,,,,0.0060054,0.009734244,0.013394111,0.021093362,,,,,,,0.077438173,0.084813446,0.092239663,0.108720992,,,,,,,0.018916009,0.025440302,0.032009698,0.046589347,,,,,,,0.006136354,0.00614766,0.006178988,0.006292755,,,,,,,0.329372135,0.416085104,0.538105041,1.203993856, +Heavy duty short haul truck,E15,2035,,,,,,,0.002011958,0.003456996,0.005448568,0.012175914,,,,,,,0.015806205,0.017651332,0.027147592,0.06145706,,,,,,,5.759423308,11.12438138,18.15636736,36.60418124,,,,,,,955.0376908,957.5806712,964.296907,988.1054724,,,,,,,0.00790939,0.009166318,0.012307915,0.023194423,,,,,,,0.038653389,0.038653386,0.038653373,0.038653392,,,,,,,0.310762673,0.377204584,0.424471089,0.52043725,,,,,,,0.006346142,0.010369012,0.014703085,0.025322566,,,,,,,0.074986481,0.083143412,0.092321531,0.116475619,,,,,,,0.019260445,0.026476217,0.034595376,0.055962523,,,,,,,0.006474923,0.006492164,0.006537699,0.006699114,,,,,,,0.277020338,0.359145853,0.474535345,1.060058341,,,,,,,0.001929213,0.003291515,0.005116586,0.011106899,,,,,,,0.01412701,0.016081518,0.02486339,0.056309863,,,,,,,5.566202885,10.77452148,17.52912159,35.17488715,,,,,,,963.8358151,966.072943,972.1491393,993.9240824,,,,,,,0.007843667,0.009074656,0.012151412,0.022813195,,,,,,,0.038637558,0.038637576,0.038637573,0.038637583,,,,,,,0.30661665,0.371886817,0.417611447,0.509089672,,,,,,,0.006246297,0.010177523,0.0143408,0.024234809,,,,,,,0.075451421,0.083376309,0.092112045,0.114362951,,,,,,,0.019131395,0.02614188,0.033869694,0.05355325,,,,,,,0.006534571,0.006549739,0.006590935,0.006738564,,,,,,,0.293895589,0.373791654,0.486844989,1.062670759,,,,,,,0.001908294,0.003291898,0.005228321,0.011866257,,,,,,,0.015513458,0.017428799,0.026778712,0.060475209,,,,,,,5.894349691,11.41295656,18.5869689,37.34590923,,,,,,,981.3007392,983.8372986,990.6664632,1015.053464,,,,,,,0.008391515,0.009703925,0.012984202,0.024351248,,,,,,,0.039322533,0.039322514,0.039322524,0.039322521,,,,,,,0.308035549,0.374100736,0.421732963,0.519472946,,,,,,,0.005929077,0.009702073,0.013809192,0.024043762,,,,,,,0.081281869,0.088956581,0.097697654,0.121115279,,,,,,,0.019446135,0.026235367,0.033967859,0.054683545,,,,,,,0.00665298,0.006670177,0.006716479,0.006881815,,,,,,,0.321231804,0.404095269,0.523684125,1.128916282,,,,,,,0.001943281,0.003343987,0.005302799,0.011995378,,,,,,,0.015197342,0.0168161,0.025762643,0.058245534,,,,,,,5.48808394,10.58865224,17.22121603,34.56086891,,,,,,,945.4561379,947.6841639,953.8361859,976.0212541,,,,,,,0.007472544,0.008652726,0.01160249,0.021824223,,,,,,,0.038254241,0.038254266,0.038254261,0.03825425,,,,,,,0.299413353,0.363822932,0.409071909,0.499762195,,,,,,,0.006062822,0.009907476,0.014092301,0.024477225,,,,,,,0.070358654,0.078171322,0.08706481,0.110787309,,,,,,,0.018261627,0.025172826,0.033040183,0.054025573,,,,,,,0.006409963,0.006425069,0.006466779,0.006617187,,,,,,,0.311346252,0.38220748,0.491761157,1.042558167,,,,,,,0.001680628,0.00281933,0.004234176,0.008500525,,,,,,,0.011080342,0.013616242,0.021517584,0.048919611,,,,,,,5.480389716,10.67830697,17.32684469,34.58427536,,,,,,,995.5846754,997.0506989,1001.57129,1018.510024,,,,,,,0.008274546,0.009568396,0.012802277,0.024008545,,,,,,,0.039201259,0.039201268,0.039201251,0.039201264,,,,,,,0.283749634,0.345120918,0.388050514,0.4733803,,,,,,,0.005774715,0.009353062,0.012994957,0.021016238,,,,,,,0.079537322,0.086655593,0.094129586,0.111628147,,,,,,,0.018865952,0.0251629,0.031774554,0.047254102,,,,,,,0.006749821,0.006759761,0.006790411,0.00690525,,,,,,,0.364543641,0.445368297,0.566431567,1.189270078,,,,,,,0.001685883,0.002838001,0.00429325,0.008768181,,,,,,,0.011000809,0.013211446,0.020743459,0.047110264,,,,,,,5.242479224,10.19809097,16.52150707,32.92561253,,,,,,,965.3326872,966.9033184,971.606561,989.0549144,,,,,,,0.007708964,0.008915095,0.011929726,0.02237628,,,,,,,0.038578999,0.038578987,0.038578994,0.038578993,,,,,,,0.2854706,0.347047043,0.389346719,0.472175276,,,,,,,0.005724396,0.009281857,0.012932268,0.021101584,,,,,,,0.073145399,0.080241391,0.087767604,0.105709344,,,,,,,0.017997799,0.024275058,0.030932889,0.0468045,,,,,,,0.006544719,0.006555369,0.006587256,0.006705552,,,,,,,0.343458961,0.416229368,0.527929196,1.104032692,,,,,,,0.001661641,0.002762874,0.004087137,0.007899993,,,,,,,0.010425418,0.01287751,0.020427732,0.046564738,,,,,,,5.515516242,10.72890345,17.49542546,35.14517645,,,,,,,987.6702485,988.9135568,992.995121,1008.57759,,,,,,,0.007875018,0.009118764,0.012227437,0.022999741,,,,,,,0.038665446,0.03866544,0.038665474,0.038665441,,,,,,,0.282751567,0.343598962,0.385609416,0.468006052,,,,,,,0.005852513,0.009444735,0.013054595,0.020737502,,,,,,,0.074150947,0.081265565,0.08860919,0.105134265,,,,,,,0.018279122,0.024572856,0.031069109,0.045687566,,,,,,,0.006696164,0.006704592,0.006732266,0.006837912,,,,,,,0.350982004,0.426606768,0.541604383,1.137918861,,,,,,,0.001789698,0.003022425,0.004592763,0.009482314,,,,,,,0.012491262,0.014764079,0.02311166,0.05252366,,,,,,,5.9550856,11.55478012,18.8904777,38.1083248,,,,,,,978.8361434,980.5950997,985.6818615,1004.332583,,,,,,,0.007940339,0.009183522,0.012290771,0.023058216,,,,,,,0.038748269,0.038748265,0.038748264,0.038748268,,,,,,,0.319416165,0.387355785,0.4338851,0.524953015,,,,,,,0.006027522,0.009789688,0.013660592,0.022415324,,,,,,,0.076274943,0.083795173,0.09180398,0.111123908,,,,,,,0.018858261,0.025510791,0.032595536,0.049686321,,,,,,,0.006537823,0.006549647,0.006583781,0.006708859,,,,,,,0.35309106,0.430438996,0.544422444,1.129436921,,,,,,,0.001691158,0.002814902,0.004130322,0.00783395,,,,,,,0.011650356,0.014536998,0.023175767,0.052987891,,,,,,,6.682244647,12.98546041,21.46644231,43.88379161,,,,,,,978.4992624,980.2768809,985.1874955,1002.897533,,,,,,,0.008235455,0.009546818,0.012824466,0.024182402,,,,,,,0.038945614,0.038945622,0.038945639,0.038945642,,,,,,,0.302004247,0.367138274,0.412971477,0.504885304,,,,,,,0.006015069,0.009731933,0.013400868,0.021089487,,,,,,,0.077459528,0.084812118,0.092255142,0.108705302,,,,,,,0.01893489,0.02543911,0.032023361,0.04657547,,,,,,,0.006137079,0.006148303,0.006179254,0.006290804,,,,,,,0.329892197,0.415830078,0.539128591,1.181061934 +Heavy duty short haul truck,E15,2040,,,,,,,,0.002009605,0.003466655,0.005467028,,,,,,,,0.015969482,0.01769534,0.027217111,,,,,,,,5.803182994,11.15380648,18.19618358,,,,,,,,955.145418,957.6188192,964.3495174,,,,,,,,0.007957818,0.009183392,0.012331372,,,,,,,,0.038653386,0.038653386,0.03865339,,,,,,,,0.310784252,0.377555034,0.424860175,,,,,,,,0.006329846,0.010387867,0.014735264,,,,,,,,0.074957405,0.083183624,0.092392001,,,,,,,,0.019234731,0.026511793,0.034657702,,,,,,,,0.006475654,0.006492423,0.006538055,,,,,,,,0.275535745,0.360440758,0.476122832,,,,,,,,0.001926535,0.0033003,0.005133218,,,,,,,,0.014275159,0.016119384,0.024922415,,,,,,,,5.607098203,10.80353906,17.56822142,,,,,,,,963.9355621,966.1082495,972.1975533,,,,,,,,0.007891097,0.009091373,0.012174379,,,,,,,,0.038637556,0.038637572,0.038637574,,,,,,,,0.306626878,0.372227422,0.417986717,,,,,,,,0.006229691,0.010195538,0.014371234,,,,,,,,0.07542151,0.083414314,0.092177913,,,,,,,,0.019104948,0.026175507,0.033927944,,,,,,,,0.006535249,0.006549979,0.006591263,,,,,,,,0.291589541,0.37540776,0.488799557,,,,,,,,0.001906237,0.003301331,0.005246274,,,,,,,,0.015701783,0.017456239,0.026817351,,,,,,,,5.938240741,11.44373473,18.62722428,,,,,,,,981.4118065,983.8772746,990.7203294,,,,,,,,0.00844208,0.009721758,0.013008683,,,,,,,,0.039322522,0.039322535,0.039322513,,,,,,,,0.308037369,0.374465566,0.422147594,,,,,,,,0.005913274,0.009720608,0.013840768,,,,,,,,0.081253892,0.088996101,0.0977666,,,,,,,,0.019421391,0.026270293,0.034028888,,,,,,,,0.006653735,0.006670448,0.006716842,,,,,,,,0.316780999,0.406654079,0.526725347,,,,,,,,0.001938634,0.003355625,0.005325481,,,,,,,,0.015375384,0.016846451,0.025807191,,,,,,,,5.523461316,10.62171616,17.26657683,,,,,,,,945.5584547,947.7201612,953.8859521,,,,,,,,0.00751802,0.008668758,0.011624507,,,,,,,,0.038254255,0.038254256,0.038254259,,,,,,,,0.299356945,0.364203713,0.409511664,,,,,,,,0.006041359,0.009930417,0.014132061,,,,,,,,0.070318947,0.078220108,0.087151722,,,,,,,,0.018226481,0.025216007,0.03311708,,,,,,,,0.006410657,0.006425312,0.006467114,,,,,,,,0.305497665,0.38533218,0.495581968,,,,,,,,0.00167753,0.00282594,0.004246413,,,,,,,,0.011197329,0.013645365,0.021561358,,,,,,,,5.517018866,10.70951378,17.3696922,,,,,,,,995.6649852,997.0787628,1001.610679,,,,,,,,0.008324396,0.009585969,0.012826414,,,,,,,,0.039201259,0.03920124,0.039201259,,,,,,,,0.283747325,0.345432128,0.388394223,,,,,,,,0.005758903,0.009368151,0.013019888,,,,,,,,0.079508325,0.086686668,0.094182195,,,,,,,,0.018840297,0.025190425,0.031821104,,,,,,,,0.006750366,0.00675995,0.006790677,,,,,,,,0.35886071,0.44845459,0.570139802,,,,,,,,0.001682907,0.002844846,0.00430592,,,,,,,,0.0111248,0.013236056,0.020779203,,,,,,,,5.278071669,10.22723351,16.56069769,,,,,,,,965.4138305,966.9320376,971.64668,,,,,,,,0.007755435,0.008931479,0.011952237,,,,,,,,0.038578977,0.038578972,0.038578996,,,,,,,,0.285460722,0.347362991,0.389692554,,,,,,,,0.005708441,0.009297369,0.012957928,,,,,,,,0.073116249,0.08027341,0.087821845,,,,,,,,0.017972036,0.024303405,0.030980868,,,,,,,,0.006545272,0.006555564,0.006587528,,,,,,,,0.337841495,0.419243739,0.531539043,,,,,,,,0.001655951,0.00277077,0.004101671,,,,,,,,0.01051996,0.012914876,0.020488189,,,,,,,,5.553853594,10.75981312,17.53721183,,,,,,,,987.7454616,988.9409966,993.030978,,,,,,,,0.007922943,0.009135671,0.012250625,,,,,,,,0.038665444,0.038665474,0.038665436,,,,,,,,0.28269099,0.343938828,0.385996841,,,,,,,,0.005829205,0.009464711,0.013087496,,,,,,,,0.074107165,0.081305985,0.088677035,,,,,,,,0.018240379,0.024608582,0.031129167,,,,,,,,0.006696674,0.00670478,0.006732507,,,,,,,,0.34589458,0.429435261,0.545067214,,,,,,,,0.001788162,0.003028691,0.004604496,,,,,,,,0.012622059,0.014797324,0.023161888,,,,,,,,5.997374316,11.5878986,18.93744638,,,,,,,,978.9226788,980.6258113,985.7245169,,,,,,,,0.007988237,0.009200411,0.012313967,,,,,,,,0.038748257,0.038748263,0.038748279,,,,,,,,0.319472899,0.387664445,0.434203019,,,,,,,,0.006015967,0.009802414,0.01368178,,,,,,,,0.076254415,0.083822083,0.091849996,,,,,,,,0.018840111,0.025534601,0.032636228,,,,,,,,0.006538404,0.006549853,0.006584067,,,,,,,,0.349292994,0.432709843,0.547128876,,,,,,,,0.001691841,0.002817568,0.004135007,,,,,,,,0.011764288,0.014573618,0.02323159,,,,,,,,6.735879917,13.01939786,21.51586053,,,,,,,,978.5812981,980.3056812,985.2260162,,,,,,,,0.00828599,0.009564629,0.012848932,,,,,,,,0.038945647,0.038945623,0.038945598,,,,,,,,0.302165139,0.367370218,0.413181799,,,,,,,,0.006011738,0.009736749,0.013408193,,,,,,,,0.077454661,0.084822587,0.092271598,,,,,,,,0.018930561,0.025448393,0.032037964,,,,,,,,0.006137597,0.006148484,0.006179499,,,,,,,,0.329267479,0.416705784,0.540219434 +Heavy duty short haul truck,E15,2045,,,,,,,,,0.002015725,0.003477578,,,,,,,,,0.016010279,0.017740838,,,,,,,,,5.818803153,11.18187636,,,,,,,,,955.175734,957.6545124,,,,,,,,,0.007971603,0.009199472,,,,,,,,,0.038653376,0.038653395,,,,,,,,,0.310955146,0.377820501,,,,,,,,,0.006343634,0.010410128,,,,,,,,,0.074986038,0.083230693,,,,,,,,,0.01926006,0.026553423,,,,,,,,,0.006475859,0.006492665,,,,,,,,,0.276626641,0.361794599,,,,,,,,,0.001932181,0.003310282,,,,,,,,,0.014309792,0.016157909,,,,,,,,,5.62238964,10.83126773,,,,,,,,,963.9637275,966.1408173,,,,,,,,,0.0079046,0.009107118,,,,,,,,,0.038637577,0.03863757,,,,,,,,,0.3067917,0.372484143,,,,,,,,,0.006243023,0.0102169,,,,,,,,,0.075448964,0.083458976,,,,,,,,,0.019129216,0.026215026,,,,,,,,,0.006535442,0.0065502,,,,,,,,,0.293024242,0.377148486,,,,,,,,,0.001912195,0.003311975,,,,,,,,,0.015728484,0.017482049,,,,,,,,,5.954396553,11.47311133,,,,,,,,,981.4431451,983.913718,,,,,,,,,0.008456475,0.009738547,,,,,,,,,0.039322515,0.039322539,,,,,,,,,0.308219564,0.374749483,,,,,,,,,0.005926703,0.009742444,,,,,,,,,0.081281759,0.089042199,,,,,,,,,0.019446054,0.026311066,,,,,,,,,0.006653946,0.006670696,,,,,,,,,0.31920806,0.409529826,,,,,,,,,0.001945795,0.003368899,,,,,,,,,0.015405451,0.0168762,,,,,,,,,5.540801392,10.65433005,,,,,,,,,945.5871645,947.7534665,,,,,,,,,0.007530965,0.008683851,,,,,,,,,0.038254254,0.038254253,,,,,,,,,0.299553452,0.364509475,,,,,,,,,0.006057421,0.009957519,,,,,,,,,0.070352301,0.078277354,,,,,,,,,0.018255988,0.025266638,,,,,,,,,0.006410851,0.006425538,,,,,,,,,0.30850535,0.388986193,,,,,,,,,0.001681938,0.00283354,,,,,,,,,0.01122211,0.013673512,,,,,,,,,5.533243714,10.73979435,,,,,,,,,995.6870262,997.1048694,,,,,,,,,0.00833859,0.009602518,,,,,,,,,0.039201259,0.039201256,,,,,,,,,0.283893096,0.345665397,,,,,,,,,0.005770421,0.009386212,,,,,,,,,0.079531572,0.086723669,,,,,,,,,0.018860869,0.025223142,,,,,,,,,0.006750516,0.006760128,,,,,,,,,0.361792281,0.451958434,,,,,,,,,0.001687445,0.002852695,,,,,,,,,0.011146542,0.01325932,,,,,,,,,5.293211116,10.25533895,,,,,,,,,965.4371497,966.9590945,,,,,,,,,0.007768665,0.008946906,,,,,,,,,0.038578987,0.038578992,,,,,,,,,0.285610644,0.3475999,,,,,,,,,0.005720182,0.009315894,,,,,,,,,0.073140025,0.080311424,,,,,,,,,0.017993045,0.024337008,,,,,,,,,0.006545428,0.006555747,,,,,,,,,0.340727868,0.422678413,,,,,,,,,0.001661136,0.002779957,,,,,,,,,0.010550459,0.012953014,,,,,,,,,5.570046511,10.78979992,,,,,,,,,987.7663197,988.9640869,,,,,,,,,0.007936592,0.009151565,,,,,,,,,0.038665467,0.038665422,,,,,,,,,0.282858133,0.344205836,,,,,,,,,0.005843781,0.009488612,,,,,,,,,0.074136224,0.081354015,,,,,,,,,0.018266063,0.024651118,,,,,,,,,0.006696815,0.006704935,,,,,,,,,0.348534636,0.432652899,,,,,,,,,0.001792369,0.003035817,,,,,,,,,0.012652181,0.014830332,,,,,,,,,6.014889664,11.62011304,,,,,,,,,978.9473432,980.6542838,,,,,,,,,0.008001875,0.009216312,,,,,,,,,0.038748263,0.038748266,,,,,,,,,0.319608835,0.387877958,,,,,,,,,0.006026085,0.009817624,,,,,,,,,0.076275211,0.08385393,,,,,,,,,0.018858491,0.025562776,,,,,,,,,0.006538568,0.006550043,,,,,,,,,0.351395412,0.435214003,,,,,,,,,0.001694021,0.002820577,,,,,,,,,0.011795453,0.014609988,,,,,,,,,6.754178036,13.05206892,,,,,,,,,978.6037644,980.3325863,,,,,,,,,0.008300369,0.009581408,,,,,,,,,0.038945612,0.038945634,,,,,,,,,0.302246792,0.36750209,,,,,,,,,0.006017162,0.00974275,,,,,,,,,0.077465775,0.084835413,,,,,,,,,0.018940416,0.025459724,,,,,,,,,0.006137737,0.006148653,,,,,,,,,0.329926888,0.417557967 +Heavy duty short haul truck,E15,2050,,,,,,,,,,0.002021154,,,,,,,,,,0.016044047,,,,,,,,,,5.831174596,,,,,,,,,,955.2021191,,,,,,,,,,0.007983334,,,,,,,,,,0.038653388,,,,,,,,,,0.311131126,,,,,,,,,,0.006355461,,,,,,,,,,0.075010643,,,,,,,,,,0.019281826,,,,,,,,,,0.006476038,,,,,,,,,,0.277868339,,,,,,,,,,0.001937176,,,,,,,,,,0.014337746,,,,,,,,,,5.634642913,,,,,,,,,,963.9878143,,,,,,,,,,0.007916089,,,,,,,,,,0.038637575,,,,,,,,,,0.306961825,,,,,,,,,,0.006254436,,,,,,,,,,0.075472467,,,,,,,,,,0.019150009,,,,,,,,,,0.006535604,,,,,,,,,,0.294679071,,,,,,,,,,0.001917495,,,,,,,,,,0.015745788,,,,,,,,,,5.96729889,,,,,,,,,,981.4699616,,,,,,,,,,0.008468725,,,,,,,,,,0.039322513,,,,,,,,,,0.308408263,,,,,,,,,,0.00593836,,,,,,,,,,0.081305945,,,,,,,,,,0.019467464,,,,,,,,,,0.006654127,,,,,,,,,,0.322066205,,,,,,,,,,0.001952506,,,,,,,,,,0.015427031,,,,,,,,,,5.555583129,,,,,,,,,,945.6118164,,,,,,,,,,0.007541981,,,,,,,,,,0.038254255,,,,,,,,,,0.299761412,,,,,,,,,,0.006072127,,,,,,,,,,0.070382855,,,,,,,,,,0.018283017,,,,,,,,,,0.006411018,,,,,,,,,,0.312137907,,,,,,,,,,0.001685797,,,,,,,,,,0.011240935,,,,,,,,,,5.546757041,,,,,,,,,,995.7065903,,,,,,,,,,0.008350666,,,,,,,,,,0.039201258,,,,,,,,,,0.284043567,,,,,,,,,,0.00578015,,,,,,,,,,0.07955123,,,,,,,,,,0.018878263,,,,,,,,,,0.006750648,,,,,,,,,,0.365250574,,,,,,,,,,0.001691429,,,,,,,,,,0.011161891,,,,,,,,,,5.30571053,,,,,,,,,,965.4566441,,,,,,,,,,0.00777992,,,,,,,,,,0.038578974,,,,,,,,,,0.28576613,,,,,,,,,,0.00573018,,,,,,,,,,0.073160203,,,,,,,,,,0.01801093,,,,,,,,,,0.00654556,,,,,,,,,,0.344133501,,,,,,,,,,0.00166598,,,,,,,,,,0.010576591,,,,,,,,,,5.58337178,,,,,,,,,,987.7835734,,,,,,,,,,0.007948188,,,,,,,,,,0.038665429,,,,,,,,,,0.283034594,,,,,,,,,,0.005857139,,,,,,,,,,0.074162716,,,,,,,,,,0.018289555,,,,,,,,,,0.006696932,,,,,,,,,,0.351656764,,,,,,,,,,0.001795857,,,,,,,,,,0.012676084,,,,,,,,,,6.029280282,,,,,,,,,,978.9683256,,,,,,,,,,0.008013479,,,,,,,,,,0.038748263,,,,,,,,,,0.319745469,,,,,,,,,,0.006033938,,,,,,,,,,0.076291435,,,,,,,,,,0.018872843,,,,,,,,,,0.006538709,,,,,,,,,,0.353829179,,,,,,,,,,0.001695298,,,,,,,,,,0.011821079,,,,,,,,,,6.768462365,,,,,,,,,,978.6233817,,,,,,,,,,0.00831261,,,,,,,,,,0.038945618,,,,,,,,,,0.302319765,,,,,,,,,,0.006019594,,,,,,,,,,0.077470973,,,,,,,,,,0.01894502,,,,,,,,,,0.00613786,,,,,,,,,,0.330655884 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_EFs_gpm.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_EFs_gpm.csv new file mode 100644 index 0000000000..b739d04400 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_EFs_gpm.csv @@ -0,0 +1,1190 @@ +# File: MARKAL_LDV_EFs_gpm.csv +# Title: Light Duty Vehicle Emission Factors (EFs) +# Source: MOVES2014 +# Comments: EFs by class fuel vintage pollutant year and region +# Units: grams per vehicle mile +# Column types: ccinnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn +# ---------- +Class,Fuel,Vintage,BC.2005.1,BC.2010.1,BC.2015.1,BC.2020.1,BC.2025.1,BC.2030.1,BC.2035.1,BC.2040.1,BC.2045.1,BC.2050.1,BC.2005.2,BC.2010.2,BC.2015.2,BC.2020.2,BC.2025.2,BC.2030.2,BC.2035.2,BC.2040.2,BC.2045.2,BC.2050.2,BC.2005.3,BC.2010.3,BC.2015.3,BC.2020.3,BC.2025.3,BC.2030.3,BC.2035.3,BC.2040.3,BC.2045.3,BC.2050.3,BC.2005.4,BC.2010.4,BC.2015.4,BC.2020.4,BC.2025.4,BC.2030.4,BC.2035.4,BC.2040.4,BC.2045.4,BC.2050.4,BC.2005.5,BC.2010.5,BC.2015.5,BC.2020.5,BC.2025.5,BC.2030.5,BC.2035.5,BC.2040.5,BC.2045.5,BC.2050.5,BC.2005.6,BC.2010.6,BC.2015.6,BC.2020.6,BC.2025.6,BC.2030.6,BC.2035.6,BC.2040.6,BC.2045.6,BC.2050.6,BC.2005.7,BC.2010.7,BC.2015.7,BC.2020.7,BC.2025.7,BC.2030.7,BC.2035.7,BC.2040.7,BC.2045.7,BC.2050.7,BC.2005.8,BC.2010.8,BC.2015.8,BC.2020.8,BC.2025.8,BC.2030.8,BC.2035.8,BC.2040.8,BC.2045.8,BC.2050.8,BC.2005.9,BC.2010.9,BC.2015.9,BC.2020.9,BC.2025.9,BC.2030.9,BC.2035.9,BC.2040.9,BC.2045.9,BC.2050.9,CH4.2005.1,CH4.2010.1,CH4.2015.1,CH4.2020.1,CH4.2025.1,CH4.2030.1,CH4.2035.1,CH4.2040.1,CH4.2045.1,CH4.2050.1,CH4.2005.2,CH4.2010.2,CH4.2015.2,CH4.2020.2,CH4.2025.2,CH4.2030.2,CH4.2035.2,CH4.2040.2,CH4.2045.2,CH4.2050.2,CH4.2005.3,CH4.2010.3,CH4.2015.3,CH4.2020.3,CH4.2025.3,CH4.2030.3,CH4.2035.3,CH4.2040.3,CH4.2045.3,CH4.2050.3,CH4.2005.4,CH4.2010.4,CH4.2015.4,CH4.2020.4,CH4.2025.4,CH4.2030.4,CH4.2035.4,CH4.2040.4,CH4.2045.4,CH4.2050.4,CH4.2005.5,CH4.2010.5,CH4.2015.5,CH4.2020.5,CH4.2025.5,CH4.2030.5,CH4.2035.5,CH4.2040.5,CH4.2045.5,CH4.2050.5,CH4.2005.6,CH4.2010.6,CH4.2015.6,CH4.2020.6,CH4.2025.6,CH4.2030.6,CH4.2035.6,CH4.2040.6,CH4.2045.6,CH4.2050.6,CH4.2005.7,CH4.2010.7,CH4.2015.7,CH4.2020.7,CH4.2025.7,CH4.2030.7,CH4.2035.7,CH4.2040.7,CH4.2045.7,CH4.2050.7,CH4.2005.8,CH4.2010.8,CH4.2015.8,CH4.2020.8,CH4.2025.8,CH4.2030.8,CH4.2035.8,CH4.2040.8,CH4.2045.8,CH4.2050.8,CH4.2005.9,CH4.2010.9,CH4.2015.9,CH4.2020.9,CH4.2025.9,CH4.2030.9,CH4.2035.9,CH4.2040.9,CH4.2045.9,CH4.2050.9,CO.2005.1,CO.2010.1,CO.2015.1,CO.2020.1,CO.2025.1,CO.2030.1,CO.2035.1,CO.2040.1,CO.2045.1,CO.2050.1,CO.2005.2,CO.2010.2,CO.2015.2,CO.2020.2,CO.2025.2,CO.2030.2,CO.2035.2,CO.2040.2,CO.2045.2,CO.2050.2,CO.2005.3,CO.2010.3,CO.2015.3,CO.2020.3,CO.2025.3,CO.2030.3,CO.2035.3,CO.2040.3,CO.2045.3,CO.2050.3,CO.2005.4,CO.2010.4,CO.2015.4,CO.2020.4,CO.2025.4,CO.2030.4,CO.2035.4,CO.2040.4,CO.2045.4,CO.2050.4,CO.2005.5,CO.2010.5,CO.2015.5,CO.2020.5,CO.2025.5,CO.2030.5,CO.2035.5,CO.2040.5,CO.2045.5,CO.2050.5,CO.2005.6,CO.2010.6,CO.2015.6,CO.2020.6,CO.2025.6,CO.2030.6,CO.2035.6,CO.2040.6,CO.2045.6,CO.2050.6,CO.2005.7,CO.2010.7,CO.2015.7,CO.2020.7,CO.2025.7,CO.2030.7,CO.2035.7,CO.2040.7,CO.2045.7,CO.2050.7,CO.2005.8,CO.2010.8,CO.2015.8,CO.2020.8,CO.2025.8,CO.2030.8,CO.2035.8,CO.2040.8,CO.2045.8,CO.2050.8,CO.2005.9,CO.2010.9,CO.2015.9,CO.2020.9,CO.2025.9,CO.2030.9,CO.2035.9,CO.2040.9,CO.2045.9,CO.2050.9,CO2.2005.1,CO2.2010.1,CO2.2015.1,CO2.2020.1,CO2.2025.1,CO2.2030.1,CO2.2035.1,CO2.2040.1,CO2.2045.1,CO2.2050.1,CO2.2005.2,CO2.2010.2,CO2.2015.2,CO2.2020.2,CO2.2025.2,CO2.2030.2,CO2.2035.2,CO2.2040.2,CO2.2045.2,CO2.2050.2,CO2.2005.3,CO2.2010.3,CO2.2015.3,CO2.2020.3,CO2.2025.3,CO2.2030.3,CO2.2035.3,CO2.2040.3,CO2.2045.3,CO2.2050.3,CO2.2005.4,CO2.2010.4,CO2.2015.4,CO2.2020.4,CO2.2025.4,CO2.2030.4,CO2.2035.4,CO2.2040.4,CO2.2045.4,CO2.2050.4,CO2.2005.5,CO2.2010.5,CO2.2015.5,CO2.2020.5,CO2.2025.5,CO2.2030.5,CO2.2035.5,CO2.2040.5,CO2.2045.5,CO2.2050.5,CO2.2005.6,CO2.2010.6,CO2.2015.6,CO2.2020.6,CO2.2025.6,CO2.2030.6,CO2.2035.6,CO2.2040.6,CO2.2045.6,CO2.2050.6,CO2.2005.7,CO2.2010.7,CO2.2015.7,CO2.2020.7,CO2.2025.7,CO2.2030.7,CO2.2035.7,CO2.2040.7,CO2.2045.7,CO2.2050.7,CO2.2005.8,CO2.2010.8,CO2.2015.8,CO2.2020.8,CO2.2025.8,CO2.2030.8,CO2.2035.8,CO2.2040.8,CO2.2045.8,CO2.2050.8,CO2.2005.9,CO2.2010.9,CO2.2015.9,CO2.2020.9,CO2.2025.9,CO2.2030.9,CO2.2035.9,CO2.2040.9,CO2.2045.9,CO2.2050.9,N2O.2005.1,N2O.2010.1,N2O.2015.1,N2O.2020.1,N2O.2025.1,N2O.2030.1,N2O.2035.1,N2O.2040.1,N2O.2045.1,N2O.2050.1,N2O.2005.2,N2O.2010.2,N2O.2015.2,N2O.2020.2,N2O.2025.2,N2O.2030.2,N2O.2035.2,N2O.2040.2,N2O.2045.2,N2O.2050.2,N2O.2005.3,N2O.2010.3,N2O.2015.3,N2O.2020.3,N2O.2025.3,N2O.2030.3,N2O.2035.3,N2O.2040.3,N2O.2045.3,N2O.2050.3,N2O.2005.4,N2O.2010.4,N2O.2015.4,N2O.2020.4,N2O.2025.4,N2O.2030.4,N2O.2035.4,N2O.2040.4,N2O.2045.4,N2O.2050.4,N2O.2005.5,N2O.2010.5,N2O.2015.5,N2O.2020.5,N2O.2025.5,N2O.2030.5,N2O.2035.5,N2O.2040.5,N2O.2045.5,N2O.2050.5,N2O.2005.6,N2O.2010.6,N2O.2015.6,N2O.2020.6,N2O.2025.6,N2O.2030.6,N2O.2035.6,N2O.2040.6,N2O.2045.6,N2O.2050.6,N2O.2005.7,N2O.2010.7,N2O.2015.7,N2O.2020.7,N2O.2025.7,N2O.2030.7,N2O.2035.7,N2O.2040.7,N2O.2045.7,N2O.2050.7,N2O.2005.8,N2O.2010.8,N2O.2015.8,N2O.2020.8,N2O.2025.8,N2O.2030.8,N2O.2035.8,N2O.2040.8,N2O.2045.8,N2O.2050.8,N2O.2005.9,N2O.2010.9,N2O.2015.9,N2O.2020.9,N2O.2025.9,N2O.2030.9,N2O.2035.9,N2O.2040.9,N2O.2045.9,N2O.2050.9,NH3.2005.1,NH3.2010.1,NH3.2015.1,NH3.2020.1,NH3.2025.1,NH3.2030.1,NH3.2035.1,NH3.2040.1,NH3.2045.1,NH3.2050.1,NH3.2005.2,NH3.2010.2,NH3.2015.2,NH3.2020.2,NH3.2025.2,NH3.2030.2,NH3.2035.2,NH3.2040.2,NH3.2045.2,NH3.2050.2,NH3.2005.3,NH3.2010.3,NH3.2015.3,NH3.2020.3,NH3.2025.3,NH3.2030.3,NH3.2035.3,NH3.2040.3,NH3.2045.3,NH3.2050.3,NH3.2005.4,NH3.2010.4,NH3.2015.4,NH3.2020.4,NH3.2025.4,NH3.2030.4,NH3.2035.4,NH3.2040.4,NH3.2045.4,NH3.2050.4,NH3.2005.5,NH3.2010.5,NH3.2015.5,NH3.2020.5,NH3.2025.5,NH3.2030.5,NH3.2035.5,NH3.2040.5,NH3.2045.5,NH3.2050.5,NH3.2005.6,NH3.2010.6,NH3.2015.6,NH3.2020.6,NH3.2025.6,NH3.2030.6,NH3.2035.6,NH3.2040.6,NH3.2045.6,NH3.2050.6,NH3.2005.7,NH3.2010.7,NH3.2015.7,NH3.2020.7,NH3.2025.7,NH3.2030.7,NH3.2035.7,NH3.2040.7,NH3.2045.7,NH3.2050.7,NH3.2005.8,NH3.2010.8,NH3.2015.8,NH3.2020.8,NH3.2025.8,NH3.2030.8,NH3.2035.8,NH3.2040.8,NH3.2045.8,NH3.2050.8,NH3.2005.9,NH3.2010.9,NH3.2015.9,NH3.2020.9,NH3.2025.9,NH3.2030.9,NH3.2035.9,NH3.2040.9,NH3.2045.9,NH3.2050.9,NOX.2005.1,NOX.2010.1,NOX.2015.1,NOX.2020.1,NOX.2025.1,NOX.2030.1,NOX.2035.1,NOX.2040.1,NOX.2045.1,NOX.2050.1,NOX.2005.2,NOX.2010.2,NOX.2015.2,NOX.2020.2,NOX.2025.2,NOX.2030.2,NOX.2035.2,NOX.2040.2,NOX.2045.2,NOX.2050.2,NOX.2005.3,NOX.2010.3,NOX.2015.3,NOX.2020.3,NOX.2025.3,NOX.2030.3,NOX.2035.3,NOX.2040.3,NOX.2045.3,NOX.2050.3,NOX.2005.4,NOX.2010.4,NOX.2015.4,NOX.2020.4,NOX.2025.4,NOX.2030.4,NOX.2035.4,NOX.2040.4,NOX.2045.4,NOX.2050.4,NOX.2005.5,NOX.2010.5,NOX.2015.5,NOX.2020.5,NOX.2025.5,NOX.2030.5,NOX.2035.5,NOX.2040.5,NOX.2045.5,NOX.2050.5,NOX.2005.6,NOX.2010.6,NOX.2015.6,NOX.2020.6,NOX.2025.6,NOX.2030.6,NOX.2035.6,NOX.2040.6,NOX.2045.6,NOX.2050.6,NOX.2005.7,NOX.2010.7,NOX.2015.7,NOX.2020.7,NOX.2025.7,NOX.2030.7,NOX.2035.7,NOX.2040.7,NOX.2045.7,NOX.2050.7,NOX.2005.8,NOX.2010.8,NOX.2015.8,NOX.2020.8,NOX.2025.8,NOX.2030.8,NOX.2035.8,NOX.2040.8,NOX.2045.8,NOX.2050.8,NOX.2005.9,NOX.2010.9,NOX.2015.9,NOX.2020.9,NOX.2025.9,NOX.2030.9,NOX.2035.9,NOX.2040.9,NOX.2045.9,NOX.2050.9,OC.2005.1,OC.2010.1,OC.2015.1,OC.2020.1,OC.2025.1,OC.2030.1,OC.2035.1,OC.2040.1,OC.2045.1,OC.2050.1,OC.2005.2,OC.2010.2,OC.2015.2,OC.2020.2,OC.2025.2,OC.2030.2,OC.2035.2,OC.2040.2,OC.2045.2,OC.2050.2,OC.2005.3,OC.2010.3,OC.2015.3,OC.2020.3,OC.2025.3,OC.2030.3,OC.2035.3,OC.2040.3,OC.2045.3,OC.2050.3,OC.2005.4,OC.2010.4,OC.2015.4,OC.2020.4,OC.2025.4,OC.2030.4,OC.2035.4,OC.2040.4,OC.2045.4,OC.2050.4,OC.2005.5,OC.2010.5,OC.2015.5,OC.2020.5,OC.2025.5,OC.2030.5,OC.2035.5,OC.2040.5,OC.2045.5,OC.2050.5,OC.2005.6,OC.2010.6,OC.2015.6,OC.2020.6,OC.2025.6,OC.2030.6,OC.2035.6,OC.2040.6,OC.2045.6,OC.2050.6,OC.2005.7,OC.2010.7,OC.2015.7,OC.2020.7,OC.2025.7,OC.2030.7,OC.2035.7,OC.2040.7,OC.2045.7,OC.2050.7,OC.2005.8,OC.2010.8,OC.2015.8,OC.2020.8,OC.2025.8,OC.2030.8,OC.2035.8,OC.2040.8,OC.2045.8,OC.2050.8,OC.2005.9,OC.2010.9,OC.2015.9,OC.2020.9,OC.2025.9,OC.2030.9,OC.2035.9,OC.2040.9,OC.2045.9,OC.2050.9,PM10.2005.1,PM10.2010.1,PM10.2015.1,PM10.2020.1,PM10.2025.1,PM10.2030.1,PM10.2035.1,PM10.2040.1,PM10.2045.1,PM10.2050.1,PM10.2005.2,PM10.2010.2,PM10.2015.2,PM10.2020.2,PM10.2025.2,PM10.2030.2,PM10.2035.2,PM10.2040.2,PM10.2045.2,PM10.2050.2,PM10.2005.3,PM10.2010.3,PM10.2015.3,PM10.2020.3,PM10.2025.3,PM10.2030.3,PM10.2035.3,PM10.2040.3,PM10.2045.3,PM10.2050.3,PM10.2005.4,PM10.2010.4,PM10.2015.4,PM10.2020.4,PM10.2025.4,PM10.2030.4,PM10.2035.4,PM10.2040.4,PM10.2045.4,PM10.2050.4,PM10.2005.5,PM10.2010.5,PM10.2015.5,PM10.2020.5,PM10.2025.5,PM10.2030.5,PM10.2035.5,PM10.2040.5,PM10.2045.5,PM10.2050.5,PM10.2005.6,PM10.2010.6,PM10.2015.6,PM10.2020.6,PM10.2025.6,PM10.2030.6,PM10.2035.6,PM10.2040.6,PM10.2045.6,PM10.2050.6,PM10.2005.7,PM10.2010.7,PM10.2015.7,PM10.2020.7,PM10.2025.7,PM10.2030.7,PM10.2035.7,PM10.2040.7,PM10.2045.7,PM10.2050.7,PM10.2005.8,PM10.2010.8,PM10.2015.8,PM10.2020.8,PM10.2025.8,PM10.2030.8,PM10.2035.8,PM10.2040.8,PM10.2045.8,PM10.2050.8,PM10.2005.9,PM10.2010.9,PM10.2015.9,PM10.2020.9,PM10.2025.9,PM10.2030.9,PM10.2035.9,PM10.2040.9,PM10.2045.9,PM10.2050.9,PM2_5.2005.1,PM2_5.2010.1,PM2_5.2015.1,PM2_5.2020.1,PM2_5.2025.1,PM2_5.2030.1,PM2_5.2035.1,PM2_5.2040.1,PM2_5.2045.1,PM2_5.2050.1,PM2_5.2005.2,PM2_5.2010.2,PM2_5.2015.2,PM2_5.2020.2,PM2_5.2025.2,PM2_5.2030.2,PM2_5.2035.2,PM2_5.2040.2,PM2_5.2045.2,PM2_5.2050.2,PM2_5.2005.3,PM2_5.2010.3,PM2_5.2015.3,PM2_5.2020.3,PM2_5.2025.3,PM2_5.2030.3,PM2_5.2035.3,PM2_5.2040.3,PM2_5.2045.3,PM2_5.2050.3,PM2_5.2005.4,PM2_5.2010.4,PM2_5.2015.4,PM2_5.2020.4,PM2_5.2025.4,PM2_5.2030.4,PM2_5.2035.4,PM2_5.2040.4,PM2_5.2045.4,PM2_5.2050.4,PM2_5.2005.5,PM2_5.2010.5,PM2_5.2015.5,PM2_5.2020.5,PM2_5.2025.5,PM2_5.2030.5,PM2_5.2035.5,PM2_5.2040.5,PM2_5.2045.5,PM2_5.2050.5,PM2_5.2005.6,PM2_5.2010.6,PM2_5.2015.6,PM2_5.2020.6,PM2_5.2025.6,PM2_5.2030.6,PM2_5.2035.6,PM2_5.2040.6,PM2_5.2045.6,PM2_5.2050.6,PM2_5.2005.7,PM2_5.2010.7,PM2_5.2015.7,PM2_5.2020.7,PM2_5.2025.7,PM2_5.2030.7,PM2_5.2035.7,PM2_5.2040.7,PM2_5.2045.7,PM2_5.2050.7,PM2_5.2005.8,PM2_5.2010.8,PM2_5.2015.8,PM2_5.2020.8,PM2_5.2025.8,PM2_5.2030.8,PM2_5.2035.8,PM2_5.2040.8,PM2_5.2045.8,PM2_5.2050.8,PM2_5.2005.9,PM2_5.2010.9,PM2_5.2015.9,PM2_5.2020.9,PM2_5.2025.9,PM2_5.2030.9,PM2_5.2035.9,PM2_5.2040.9,PM2_5.2045.9,PM2_5.2050.9,SO2.2005.1,SO2.2010.1,SO2.2015.1,SO2.2020.1,SO2.2025.1,SO2.2030.1,SO2.2035.1,SO2.2040.1,SO2.2045.1,SO2.2050.1,SO2.2005.2,SO2.2010.2,SO2.2015.2,SO2.2020.2,SO2.2025.2,SO2.2030.2,SO2.2035.2,SO2.2040.2,SO2.2045.2,SO2.2050.2,SO2.2005.3,SO2.2010.3,SO2.2015.3,SO2.2020.3,SO2.2025.3,SO2.2030.3,SO2.2035.3,SO2.2040.3,SO2.2045.3,SO2.2050.3,SO2.2005.4,SO2.2010.4,SO2.2015.4,SO2.2020.4,SO2.2025.4,SO2.2030.4,SO2.2035.4,SO2.2040.4,SO2.2045.4,SO2.2050.4,SO2.2005.5,SO2.2010.5,SO2.2015.5,SO2.2020.5,SO2.2025.5,SO2.2030.5,SO2.2035.5,SO2.2040.5,SO2.2045.5,SO2.2050.5,SO2.2005.6,SO2.2010.6,SO2.2015.6,SO2.2020.6,SO2.2025.6,SO2.2030.6,SO2.2035.6,SO2.2040.6,SO2.2045.6,SO2.2050.6,SO2.2005.7,SO2.2010.7,SO2.2015.7,SO2.2020.7,SO2.2025.7,SO2.2030.7,SO2.2035.7,SO2.2040.7,SO2.2045.7,SO2.2050.7,SO2.2005.8,SO2.2010.8,SO2.2015.8,SO2.2020.8,SO2.2025.8,SO2.2030.8,SO2.2035.8,SO2.2040.8,SO2.2045.8,SO2.2050.8,SO2.2005.9,SO2.2010.9,SO2.2015.9,SO2.2020.9,SO2.2025.9,SO2.2030.9,SO2.2035.9,SO2.2040.9,SO2.2045.9,SO2.2050.9,VOC.2005.1,VOC.2010.1,VOC.2015.1,VOC.2020.1,VOC.2025.1,VOC.2030.1,VOC.2035.1,VOC.2040.1,VOC.2045.1,VOC.2050.1,VOC.2005.2,VOC.2010.2,VOC.2015.2,VOC.2020.2,VOC.2025.2,VOC.2030.2,VOC.2035.2,VOC.2040.2,VOC.2045.2,VOC.2050.2,VOC.2005.3,VOC.2010.3,VOC.2015.3,VOC.2020.3,VOC.2025.3,VOC.2030.3,VOC.2035.3,VOC.2040.3,VOC.2045.3,VOC.2050.3,VOC.2005.4,VOC.2010.4,VOC.2015.4,VOC.2020.4,VOC.2025.4,VOC.2030.4,VOC.2035.4,VOC.2040.4,VOC.2045.4,VOC.2050.4,VOC.2005.5,VOC.2010.5,VOC.2015.5,VOC.2020.5,VOC.2025.5,VOC.2030.5,VOC.2035.5,VOC.2040.5,VOC.2045.5,VOC.2050.5,VOC.2005.6,VOC.2010.6,VOC.2015.6,VOC.2020.6,VOC.2025.6,VOC.2030.6,VOC.2035.6,VOC.2040.6,VOC.2045.6,VOC.2050.6,VOC.2005.7,VOC.2010.7,VOC.2015.7,VOC.2020.7,VOC.2025.7,VOC.2030.7,VOC.2035.7,VOC.2040.7,VOC.2045.7,VOC.2050.7,VOC.2005.8,VOC.2010.8,VOC.2015.8,VOC.2020.8,VOC.2025.8,VOC.2030.8,VOC.2035.8,VOC.2040.8,VOC.2045.8,VOC.2050.8,VOC.2005.9,VOC.2010.9,VOC.2015.9,VOC.2020.9,VOC.2025.9,VOC.2030.9,VOC.2035.9,VOC.2040.9,VOC.2045.9,VOC.2050.9 +Compact car,B20,1990,0.02195,,,,,,,,,,0.02184,,,,,,,,,,0.02159,,,,,,,,,,0.02205,,,,,,,,,,0.02162,,,,,,,,,,0.02185,,,,,,,,,,0.0219,,,,,,,,,,0.02183,,,,,,,,,,0.02188,,,,,,,,,,0.00745,,,,,,,,,,0.00748,,,,,,,,,,0.00759,,,,,,,,,,0.00751,,,,,,,,,,0.00746,,,,,,,,,,0.00746,,,,,,,,,,0.00739,,,,,,,,,,0.00749,,,,,,,,,,0.00727,,,,,,,,,,47.14799,,,,,,,,,,48.05647,,,,,,,,,,48.33487,,,,,,,,,,48.55934,,,,,,,,,,50.67524,,,,,,,,,,50.05546,,,,,,,,,,51.19958,,,,,,,,,,49.67276,,,,,,,,,,47.9112,,,,,,,,,,328.33637,,,,,,,,,,329.47068,,,,,,,,,,333.75801,,,,,,,,,,328.87192,,,,,,,,,,330.25152,,,,,,,,,,327.89924,,,,,,,,,,327.69225,,,,,,,,,,329.78335,,,,,,,,,,323.99835,,,,,,,,,,0.00089,,,,,,,,,,0.0009,,,,,,,,,,0.00093,,,,,,,,,,0.00088,,,,,,,,,,0.00093,,,,,,,,,,0.0009,,,,,,,,,,0.0009,,,,,,,,,,0.00091,,,,,,,,,,0.0009,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,3.1253,,,,,,,,,,3.14279,,,,,,,,,,3.13178,,,,,,,,,,3.15423,,,,,,,,,,3.10834,,,,,,,,,,3.13563,,,,,,,,,,3.14384,,,,,,,,,,3.28373,,,,,,,,,,3.15383,,,,,,,,,,0.04905,,,,,,,,,,0.04867,,,,,,,,,,0.04788,,,,,,,,,,0.04851,,,,,,,,,,0.04784,,,,,,,,,,0.0479,,,,,,,,,,0.04865,,,,,,,,,,0.04847,,,,,,,,,,0.04941,,,,,,,,,,0.1305,,,,,,,,,,0.13077,,,,,,,,,,0.13176,,,,,,,,,,0.12818,,,,,,,,,,0.13128,,,,,,,,,,0.12909,,,,,,,,,,0.13026,,,,,,,,,,0.13123,,,,,,,,,,0.13231,,,,,,,,,,0.09771,,,,,,,,,,0.09719,,,,,,,,,,0.09611,,,,,,,,,,0.09686,,,,,,,,,,0.09603,,,,,,,,,,0.09604,,,,,,,,,,0.09715,,,,,,,,,,0.09699,,,,,,,,,,0.09832,,,,,,,,,,0.02634,,,,,,,,,,0.02643,,,,,,,,,,0.02678,,,,,,,,,,0.02638,,,,,,,,,,0.0265,,,,,,,,,,0.02631,,,,,,,,,,0.02629,,,,,,,,,,0.02646,,,,,,,,,,0.02599,,,,,,,,,,3.88481,,,,,,,,,,3.89701,,,,,,,,,,3.95282,,,,,,,,,,3.91458,,,,,,,,,,3.88645,,,,,,,,,,3.89292,,,,,,,,,,3.8526,,,,,,,,,,3.90097,,,,,,,,,,3.79227,,,,,,,,, +Compact car,B20,1995,0.00303,0.01897,,,,,,,,,0.00301,0.01887,,,,,,,,,0.00298,0.01861,,,,,,,,,0.00302,0.0191,,,,,,,,,0.00298,0.01865,,,,,,,,,0.003,0.0189,,,,,,,,,0.00302,0.01893,,,,,,,,,0.00301,0.01885,,,,,,,,,0.00304,0.01888,,,,,,,,,0.00275,0.00727,,,,,,,,,0.00274,0.00728,,,,,,,,,0.00278,0.0074,,,,,,,,,0.00277,0.00732,,,,,,,,,0.00268,0.00724,,,,,,,,,0.0027,0.00725,,,,,,,,,0.00266,0.00717,,,,,,,,,0.00272,0.00728,,,,,,,,,0.00261,0.00706,,,,,,,,,13.08391,40.31524,,,,,,,,,13.44577,41.14935,,,,,,,,,13.45768,41.40135,,,,,,,,,13.61458,41.57811,,,,,,,,,14.48824,43.5481,,,,,,,,,14.18931,42.95147,,,,,,,,,14.84255,44.03323,,,,,,,,,14.1033,42.6214,,,,,,,,,13.49219,41.04099,,,,,,,,,425.87078,339.93803,,,,,,,,,429.95066,341.30952,,,,,,,,,436.15987,345.91948,,,,,,,,,425.68919,340.45326,,,,,,,,,439.31854,342.68107,,,,,,,,,431.85343,339.89379,,,,,,,,,435.44383,339.91377,,,,,,,,,434.92278,341.93564,,,,,,,,,428.46783,335.8411,,,,,,,,,0.00068,0.00088,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00072,0.00092,,,,,,,,,0.00067,0.00086,,,,,,,,,0.00072,0.00091,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00069,0.00088,,,,,,,,,0.0007,0.0009,,,,,,,,,0.0007,0.00089,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,2.19386,3.23661,,,,,,,,,2.21135,3.25502,,,,,,,,,2.20313,3.24358,,,,,,,,,2.21657,3.26794,,,,,,,,,2.19551,3.22212,,,,,,,,,2.20924,3.25013,,,,,,,,,2.2251,3.25907,,,,,,,,,2.32308,3.39892,,,,,,,,,2.22343,3.26572,,,,,,,,,0.00782,0.04254,,,,,,,,,0.00774,0.04216,,,,,,,,,0.00764,0.04131,,,,,,,,,0.00767,0.04225,,,,,,,,,0.00763,0.04131,,,,,,,,,0.00758,0.04158,,,,,,,,,0.00774,0.04219,,,,,,,,,0.0077,0.04194,,,,,,,,,0.00791,0.04272,,,,,,,,,0.0441,0.11448,,,,,,,,,0.04493,0.11477,,,,,,,,,0.04725,0.11568,,,,,,,,,0.04224,0.11257,,,,,,,,,0.04677,0.11528,,,,,,,,,0.04416,0.11342,,,,,,,,,0.04439,0.11433,,,,,,,,,0.04565,0.11519,,,,,,,,,0.04558,0.11598,,,,,,,,,0.01822,0.08298,,,,,,,,,0.01821,0.08247,,,,,,,,,0.01836,0.08132,,,,,,,,,0.0178,0.0825,,,,,,,,,0.01828,0.08131,,,,,,,,,0.01791,0.08162,,,,,,,,,0.01815,0.08249,,,,,,,,,0.01826,0.08223,,,,,,,,,0.01853,0.0833,,,,,,,,,0.03417,0.00315,,,,,,,,,0.03449,0.00316,,,,,,,,,0.03499,0.0032,,,,,,,,,0.03415,0.00315,,,,,,,,,0.03525,0.00317,,,,,,,,,0.03465,0.00315,,,,,,,,,0.03493,0.00315,,,,,,,,,0.03489,0.00317,,,,,,,,,0.03437,0.00311,,,,,,,,,1.27716,3.3697,,,,,,,,,1.27531,3.37788,,,,,,,,,1.29544,3.42899,,,,,,,,,1.28997,3.39584,,,,,,,,,1.24557,3.35613,,,,,,,,,1.25781,3.3652,,,,,,,,,1.23771,3.32661,,,,,,,,,1.26421,3.37505,,,,,,,,,1.21389,3.27292,,,,,,,, +Compact car,B20,2000,0.00107,0.00178,0.00754,,,,,,,,0.00106,0.00176,0.00751,,,,,,,,0.00105,0.00174,0.00743,,,,,,,,0.00105,0.00175,0.00757,,,,,,,,0.00104,0.00173,0.00744,,,,,,,,0.00104,0.00172,0.00751,,,,,,,,0.00106,0.00176,0.00753,,,,,,,,0.00106,0.00175,0.00751,,,,,,,,0.00109,0.0018,0.00753,,,,,,,,0.00101,0.00191,0.00381,,,,,,,,0.00099,0.0019,0.0038,,,,,,,,0.00101,0.00192,0.00385,,,,,,,,0.00103,0.00194,0.00385,,,,,,,,0.00091,0.00182,0.0037,,,,,,,,0.00095,0.00186,0.00375,,,,,,,,0.00091,0.00181,0.00368,,,,,,,,0.00095,0.00186,0.00376,,,,,,,,0.00088,0.00177,0.00361,,,,,,,,4.68367,7.7993,16.79852,,,,,,,,4.81854,8.01257,17.22283,,,,,,,,4.80666,7.97725,17.26567,,,,,,,,4.90894,8.15519,17.45264,,,,,,,,5.21287,8.65012,18.45493,,,,,,,,5.11874,8.48775,18.13384,,,,,,,,5.37116,8.93372,18.83342,,,,,,,,5.06904,8.4233,17.99071,,,,,,,,4.83023,8.05587,17.23488,,,,,,,,422.41217,424.73423,400.03899,,,,,,,,426.9168,429.11963,403.33094,,,,,,,,433.07582,435.32282,409.15479,,,,,,,,422.63194,424.9542,400.31588,,,,,,,,437.78097,439.54974,410.32729,,,,,,,,429.85458,431.79251,404.31012,,,,,,,,434.17707,435.90156,406.83536,,,,,,,,432.73994,434.70119,407.02503,,,,,,,,426.01965,427.88371,400.26579,,,,,,,,0.00064,0.00066,0.00076,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00068,0.0007,0.0008,,,,,,,,0.00062,0.00065,0.00075,,,,,,,,0.00067,0.0007,0.00079,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00066,0.00069,0.00078,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,1.0421,1.54753,2.44792,,,,,,,,1.04966,1.55891,2.46386,,,,,,,,1.04255,1.54984,2.45238,,,,,,,,1.05578,1.56777,2.47586,,,,,,,,1.04276,1.54922,2.44459,,,,,,,,1.05136,1.56214,2.46515,,,,,,,,1.06034,1.57279,2.47708,,,,,,,,1.10051,1.63133,2.57435,,,,,,,,1.055,1.56481,2.47243,,,,,,,,0.00292,0.00467,0.01701,,,,,,,,0.00287,0.00459,0.01688,,,,,,,,0.00282,0.00451,0.01665,,,,,,,,0.0028,0.00447,0.01679,,,,,,,,0.00281,0.00448,0.01663,,,,,,,,0.00275,0.00439,0.01661,,,,,,,,0.00287,0.00458,0.01687,,,,,,,,0.00285,0.00456,0.01681,,,,,,,,0.003,0.0048,0.01715,,,,,,,,0.03418,0.03748,0.06276,,,,,,,,0.03507,0.03832,0.06349,,,,,,,,0.03748,0.04067,0.06557,,,,,,,,0.03234,0.03552,0.06084,,,,,,,,0.037,0.04017,0.06509,,,,,,,,0.03434,0.03747,0.06258,,,,,,,,0.03451,0.03776,0.06296,,,,,,,,0.03581,0.03904,0.06417,,,,,,,,0.03565,0.03904,0.06428,,,,,,,,0.0091,0.01214,0.03539,,,,,,,,0.00914,0.01213,0.03529,,,,,,,,0.00938,0.01231,0.03521,,,,,,,,0.00869,0.01162,0.03491,,,,,,,,0.00929,0.01221,0.03514,,,,,,,,0.00887,0.01175,0.03485,,,,,,,,0.00906,0.01205,0.03523,,,,,,,,0.00921,0.01218,0.0353,,,,,,,,0.0094,0.01251,0.03574,,,,,,,,0.03389,0.00393,0.0037,,,,,,,,0.03425,0.00397,0.00373,,,,,,,,0.03474,0.00403,0.00379,,,,,,,,0.03391,0.00393,0.00371,,,,,,,,0.03512,0.00407,0.0038,,,,,,,,0.03449,0.004,0.00374,,,,,,,,0.03483,0.00404,0.00377,,,,,,,,0.03472,0.00402,0.00377,,,,,,,,0.03418,0.00396,0.00371,,,,,,,,0.46994,0.88695,1.76031,,,,,,,,0.46251,0.88053,1.7558,,,,,,,,0.47084,0.89153,1.77953,,,,,,,,0.47943,0.90171,1.7825,,,,,,,,0.42477,0.84271,1.71139,,,,,,,,0.44272,0.86326,1.73521,,,,,,,,0.42445,0.84193,1.70353,,,,,,,,0.44532,0.86479,1.73899,,,,,,,,0.41344,0.82282,1.66999,,,,,,, +Compact car,B20,2005,0.00045,0.00068,0.00112,0.00245,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00242,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00242,,,,,,,0.00045,0.00068,0.00111,0.00243,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00046,0.00069,0.00112,0.00246,,,,,,,0.00061,0.00096,0.00148,0.00214,,,,,,,0.00058,0.00093,0.00144,0.0021,,,,,,,0.00059,0.00095,0.00146,0.00212,,,,,,,0.00063,0.00099,0.00152,0.00219,,,,,,,0.00044,0.00079,0.00127,0.00189,,,,,,,0.0005,0.00086,0.00136,0.002,,,,,,,0.00045,0.00079,0.00128,0.00191,,,,,,,0.00051,0.00086,0.00136,0.00201,,,,,,,0.00043,0.00077,0.00124,0.00186,,,,,,,1.56697,3.32566,4.8634,6.80959,,,,,,,1.59958,3.40201,4.975,6.96106,,,,,,,1.57837,3.38183,4.95811,6.93641,,,,,,,1.63121,3.45535,5.04588,7.06469,,,,,,,1.70124,3.64116,5.32511,7.42865,,,,,,,1.67884,3.57606,5.22615,7.30589,,,,,,,1.76995,3.75838,5.47768,7.63484,,,,,,,1.67091,3.56089,5.20432,7.26809,,,,,,,1.61431,3.42898,5.00984,6.99902,,,,,,,420.59384,421.9057,425.24177,431.32059,,,,,,,425.20989,426.43788,429.6153,435.41732,,,,,,,431.33524,432.58737,435.82903,441.74838,,,,,,,420.84284,422.12796,425.48477,431.61952,,,,,,,436.47524,437.40271,439.9997,444.78351,,,,,,,428.40237,429.43846,432.2673,437.46314,,,,,,,432.92134,433.81007,436.35273,441.04794,,,,,,,431.25802,432.31734,435.17226,440.40892,,,,,,,424.58436,425.61568,428.31002,433.23517,,,,,,,0.00062,0.00063,0.00067,0.00073,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00066,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00065,0.00072,,,,,,,0.00065,0.00067,0.0007,0.00077,,,,,,,0.00063,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00064,0.00067,0.00074,,,,,,,0.00064,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.198,0.41241,0.57687,0.95177,,,,,,,0.19909,0.41453,0.57948,0.95628,,,,,,,0.19781,0.41182,0.57537,0.94993,,,,,,,0.20073,0.41814,0.58513,0.96515,,,,,,,0.19755,0.41123,0.5746,0.94885,,,,,,,0.19966,0.4158,0.58158,0.9599,,,,,,,0.20064,0.41757,0.58341,0.96252,,,,,,,0.20744,0.43132,0.6014,0.99182,,,,,,,0.19963,0.41545,0.58021,0.95711,,,,,,,0.00125,0.00184,0.00284,0.00566,,,,,,,0.00125,0.00183,0.00283,0.00562,,,,,,,0.00125,0.00183,0.00283,0.00559,,,,,,,0.00122,0.00179,0.00277,0.00553,,,,,,,0.00124,0.00182,0.00282,0.00557,,,,,,,0.00122,0.00179,0.00277,0.00549,,,,,,,0.00124,0.00182,0.00282,0.00561,,,,,,,0.00125,0.00183,0.00283,0.00561,,,,,,,0.00128,0.00187,0.00288,0.00576,,,,,,,0.03086,0.03194,0.03395,0.03975,,,,,,,0.03182,0.0329,0.03491,0.04065,,,,,,,0.03433,0.0354,0.03741,0.04309,,,,,,,0.02918,0.03025,0.03223,0.03792,,,,,,,0.03386,0.03493,0.03694,0.0426,,,,,,,0.03127,0.03233,0.03432,0.03994,,,,,,,0.03127,0.03234,0.03435,0.04009,,,,,,,0.0326,0.03368,0.03569,0.04142,,,,,,,0.03222,0.03332,0.03535,0.04123,,,,,,,0.00604,0.00704,0.00888,0.01422,,,,,,,0.00616,0.00715,0.00899,0.01428,,,,,,,0.00647,0.00746,0.00931,0.01453,,,,,,,0.00578,0.00676,0.00859,0.01382,,,,,,,0.0064,0.00739,0.00923,0.01445,,,,,,,0.00605,0.00702,0.00885,0.01402,,,,,,,0.00608,0.00707,0.00891,0.0142,,,,,,,0.00625,0.00725,0.0091,0.01437,,,,,,,0.00624,0.00725,0.00912,0.01453,,,,,,,0.03374,0.00391,0.00394,0.00399,,,,,,,0.03411,0.00395,0.00398,0.00403,,,,,,,0.0346,0.004,0.00403,0.00409,,,,,,,0.03376,0.00391,0.00394,0.004,,,,,,,0.03502,0.00405,0.00407,0.00412,,,,,,,0.03437,0.00398,0.004,0.00405,,,,,,,0.03473,0.00402,0.00404,0.00408,,,,,,,0.0346,0.004,0.00403,0.00408,,,,,,,0.03406,0.00394,0.00396,0.00401,,,,,,,0.17651,0.27643,0.42119,0.70547,,,,,,,0.16845,0.26763,0.41061,0.69263,,,,,,,0.17386,0.27273,0.41588,0.70068,,,,,,,0.1826,0.28474,0.43295,0.72245,,,,,,,0.13177,0.22761,0.36256,0.6323,,,,,,,0.14814,0.24688,0.38725,0.66441,,,,,,,0.1324,0.22927,0.36558,0.63549,,,,,,,0.15084,0.24888,0.3886,0.66557,,,,,,,0.12724,0.22201,0.35513,0.61913,,,,,, +Compact car,B20,2010,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00127,0.00237,,,,,,,0.00051,0.00074,0.00128,0.00239,,,,,,,0.00051,0.00074,0.00127,0.00237,,,,,,,0.00051,0.00074,0.00127,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.05891,0.09169,0.16167,0.18123,,,,,,,0.05564,0.08782,0.15672,0.17585,,,,,,,0.05784,0.0902,0.15932,0.17865,,,,,,,0.06116,0.09477,0.16647,0.18657,,,,,,,0.04082,0.07026,0.13424,0.15147,,,,,,,0.04728,0.07826,0.1452,0.16349,,,,,,,0.04103,0.07078,0.13545,0.1528,,,,,,,0.04848,0.07946,0.14626,0.16454,,,,,,,0.03918,0.06816,0.13123,0.14813,,,,,,,1.68976,3.13805,4.79147,6.146,,,,,,,1.7256,3.20772,4.89818,6.27364,,,,,,,1.69702,3.17249,4.8604,6.23037,,,,,,,1.76191,3.26575,4.97821,6.3749,,,,,,,1.83701,3.42517,5.23199,6.67224,,,,,,,1.81277,3.37084,5.14408,6.5732,,,,,,,1.92044,3.55711,5.40998,6.88142,,,,,,,1.80506,3.35693,5.12294,6.54286,,,,,,,1.74485,3.23856,4.93933,6.31622,,,,,,,421.0849,423.30045,427.03856,432.9663,,,,,,,425.74107,427.85118,431.42551,437.08652,,,,,,,431.86895,434.02105,437.6672,443.44222,,,,,,,421.30525,423.52623,427.29641,433.2824,,,,,,,437.14059,438.86559,441.8364,446.51636,,,,,,,428.9945,430.87012,434.08388,439.16214,,,,,,,433.57761,435.26399,438.17938,442.77531,,,,,,,431.86225,433.75794,436.99719,442.11353,,,,,,,425.23264,427.03253,430.08629,434.89576,,,,,,,0.00061,0.00063,0.00067,0.00073,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00072,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.09426,0.16941,0.25245,0.44422,,,,,,,0.09455,0.16986,0.25298,0.44541,,,,,,,0.09289,0.16686,0.24844,0.43971,,,,,,,0.09578,0.17217,0.25666,0.45138,,,,,,,0.09283,0.16677,0.24832,0.4395,,,,,,,0.09451,0.16988,0.25317,0.44689,,,,,,,0.09526,0.17108,0.25466,0.44819,,,,,,,0.09829,0.17626,0.26185,0.46006,,,,,,,0.0949,0.17038,0.25349,0.44549,,,,,,,0.00075,0.001,0.00141,0.00301,,,,,,,0.00075,0.001,0.00141,0.003,,,,,,,0.00075,0.00099,0.00141,0.00299,,,,,,,0.00074,0.00098,0.0014,0.00296,,,,,,,0.00075,0.00099,0.00141,0.00299,,,,,,,0.00074,0.00098,0.00139,0.00296,,,,,,,0.00075,0.00099,0.00141,0.003,,,,,,,0.00075,0.001,0.00141,0.003,,,,,,,0.00076,0.00101,0.00143,0.00305,,,,,,,0.0314,0.03262,0.03545,0.04042,,,,,,,0.03237,0.03359,0.03642,0.04137,,,,,,,0.03487,0.03609,0.03891,0.04384,,,,,,,0.02974,0.03095,0.03376,0.03867,,,,,,,0.03441,0.03563,0.03844,0.04337,,,,,,,0.03183,0.03304,0.03584,0.04074,,,,,,,0.03181,0.03303,0.03586,0.0408,,,,,,,0.03315,0.03437,0.0372,0.04216,,,,,,,0.03275,0.03399,0.03684,0.04184,,,,,,,0.00654,0.00766,0.01027,0.01484,,,,,,,0.00666,0.00778,0.01038,0.01494,,,,,,,0.00697,0.00809,0.01069,0.01523,,,,,,,0.0063,0.00741,0.00999,0.01451,,,,,,,0.00691,0.00803,0.01062,0.01515,,,,,,,0.00656,0.00767,0.01025,0.01476,,,,,,,0.00658,0.0077,0.0103,0.01485,,,,,,,0.00676,0.00788,0.01049,0.01504,,,,,,,0.00673,0.00787,0.01049,0.01509,,,,,,,0.00371,0.00372,0.00374,0.00382,,,,,,,0.00375,0.00376,0.00378,0.00385,,,,,,,0.0038,0.00381,0.00383,0.00391,,,,,,,0.00371,0.00372,0.00374,0.00382,,,,,,,0.00385,0.00386,0.00387,0.00393,,,,,,,0.00378,0.00379,0.0038,0.00387,,,,,,,0.00382,0.00382,0.00384,0.0039,,,,,,,0.0038,0.00381,0.00383,0.0039,,,,,,,0.00374,0.00375,0.00377,0.00383,,,,,,,0.11405,0.16425,0.24308,0.40067,,,,,,,0.1088,0.15831,0.23603,0.39091,,,,,,,0.11237,0.16198,0.23987,0.39617,,,,,,,0.11793,0.16934,0.25008,0.4116,,,,,,,0.08482,0.1312,0.20386,0.3463,,,,,,,0.0954,0.14376,0.21959,0.36911,,,,,,,0.08523,0.13211,0.20553,0.34881,,,,,,,0.09728,0.14549,0.22109,0.37046,,,,,,,0.08187,0.12762,0.19928,0.33897,,,,, +Compact car,B20,2015,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00133,0.0023,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.00052,0.00081,0.00133,0.0023,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.08628,0.13981,0.21316,0.26678,,,,,,,0.08155,0.13428,0.20654,0.25882,,,,,,,0.08473,0.1376,0.21006,0.26299,,,,,,,0.08955,0.14439,0.21954,0.27467,,,,,,,0.0601,0.10915,0.17644,0.22273,,,,,,,0.06946,0.12074,0.19107,0.24051,,,,,,,0.06041,0.11,0.178,0.22466,,,,,,,0.07119,0.12236,0.19251,0.24206,,,,,,,0.05772,0.10609,0.17242,0.21779,,,,,,,1.50615,3.35216,4.9018,5.93185,,,,,,,1.53702,3.42585,5.00954,6.05401,,,,,,,1.50784,3.38732,4.96771,6.00463,,,,,,,1.57139,3.48841,5.09306,6.15419,,,,,,,1.63277,3.65582,5.34642,6.43624,,,,,,,1.61378,3.59917,5.2594,6.34208,,,,,,,1.71139,3.79726,5.53154,6.64876,,,,,,,1.60669,3.5841,5.23754,6.31446,,,,,,,1.55484,3.45857,5.05188,6.09936,,,,,,,338.87929,340.21066,340.4814,347.12404,,,,,,,342.67392,343.88312,343.98149,350.43648,,,,,,,347.85144,349.09203,349.21465,355.77342,,,,,,,338.97517,340.31664,340.61394,347.31326,,,,,,,351.83331,352.60666,352.10568,357.85412,,,,,,,345.14106,346.09515,345.85788,351.88691,,,,,,,348.72241,349.46412,348.93639,354.61893,,,,,,,347.57366,348.54097,348.30754,354.37097,,,,,,,342.03744,342.91051,342.55674,348.35541,,,,,,,0.00061,0.00064,0.00068,0.00073,,,,,,,0.00062,0.00065,0.00069,0.00074,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00071,,,,,,,0.00065,0.00067,0.00071,0.00076,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00073,,,,,,,0.00063,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.0669,0.14623,0.22002,0.28571,,,,,,,0.06703,0.14648,0.22034,0.28607,,,,,,,0.06553,0.14331,0.21577,0.28068,,,,,,,0.06805,0.14875,0.22383,0.29066,,,,,,,0.06552,0.14328,0.21572,0.28062,,,,,,,0.06693,0.14636,0.22035,0.28651,,,,,,,0.06754,0.14752,0.2218,0.28781,,,,,,,0.06961,0.15183,0.2279,0.2951,,,,,,,0.06731,0.14695,0.22083,0.2863,,,,,,,0.00041,0.00062,0.00096,0.00166,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00095,0.00164,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00095,0.00163,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00096,0.00166,,,,,,,0.00042,0.00062,0.00097,0.00167,,,,,,,0.03156,0.03317,0.03594,0.04063,,,,,,,0.03253,0.03414,0.03691,0.04159,,,,,,,0.03503,0.03664,0.0394,0.04407,,,,,,,0.0299,0.0315,0.03425,0.0389,,,,,,,0.03457,0.03618,0.03893,0.0436,,,,,,,0.03199,0.03359,0.03633,0.04098,,,,,,,0.03198,0.03359,0.03635,0.04103,,,,,,,0.03331,0.03493,0.0377,0.04238,,,,,,,0.03292,0.03455,0.03734,0.04205,,,,,,,0.00669,0.00817,0.01072,0.01503,,,,,,,0.00681,0.00829,0.01084,0.01514,,,,,,,0.00712,0.0086,0.01114,0.01544,,,,,,,0.00644,0.00791,0.01044,0.01472,,,,,,,0.00706,0.00854,0.01107,0.01536,,,,,,,0.00671,0.00818,0.0107,0.01498,,,,,,,0.00673,0.00821,0.01075,0.01506,,,,,,,0.00691,0.00839,0.01094,0.01525,,,,,,,0.00688,0.00838,0.01095,0.01528,,,,,,,0.00291,0.00293,0.00293,0.00299,,,,,,,0.00295,0.00296,0.00296,0.00302,,,,,,,0.00299,0.003,0.003,0.00307,,,,,,,0.00292,0.00293,0.00293,0.00299,,,,,,,0.00303,0.00303,0.00303,0.00308,,,,,,,0.00297,0.00298,0.00297,0.00303,,,,,,,0.003,0.00301,0.003,0.00306,,,,,,,0.00299,0.003,0.003,0.00305,,,,,,,0.00294,0.00295,0.00295,0.003,,,,,,,0.08545,0.13514,0.2032,0.27131,,,,,,,0.08112,0.13007,0.19711,0.26357,,,,,,,0.08415,0.13323,0.20047,0.26772,,,,,,,0.08849,0.13939,0.20912,0.27914,,,,,,,0.06137,0.10689,0.16931,0.22831,,,,,,,0.06995,0.11754,0.18279,0.24572,,,,,,,0.0616,0.10763,0.17071,0.23017,,,,,,,0.07159,0.11908,0.18417,0.24722,,,,,,,0.059,0.10389,0.16544,0.22325,,,, +Compact car,B20,2020,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00188,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00048,0.0007,0.00102,0.00187,,,,,,,0.07955,0.11217,0.15133,0.21057,,,,,,,0.07468,0.10656,0.14468,0.20224,,,,,,,0.07804,0.11022,0.14885,0.20728,,,,,,,0.08274,0.11624,0.15651,0.2175,,,,,,,0.05258,0.0811,0.1145,0.16448,,,,,,,0.06207,0.09237,0.12816,0.18197,,,,,,,0.05278,0.08159,0.11529,0.16566,,,,,,,0.06395,0.09431,0.13026,0.18431,,,,,,,0.0502,0.07821,0.11093,0.15981,,,,,,,1.19391,2.1344,2.82594,3.83882,,,,,,,1.2178,2.17907,2.88375,3.91229,,,,,,,1.19354,2.1469,2.84465,3.86498,,,,,,,1.24561,2.22272,2.9393,3.98502,,,,,,,1.29181,2.31811,3.06395,4.14169,,,,,,,1.27788,2.28717,3.02354,4.09267,,,,,,,1.35511,2.41689,3.18797,4.29553,,,,,,,1.27219,2.2774,3.01073,4.07411,,,,,,,1.23197,2.20151,2.91154,3.94403,,,,,,,266.13609,267.35825,268.24247,281.31394,,,,,,,269.04375,270.16773,270.91097,283.88463,,,,,,,273.15196,274.30163,275.06915,288.25465,,,,,,,266.23896,267.47229,268.38432,281.51633,,,,,,,275.96422,276.7379,276.98939,289.48347,,,,,,,270.82127,271.74108,272.20913,284.83021,,,,,,,273.49036,274.23968,274.47049,286.83436,,,,,,,272.73969,273.66927,274.14083,286.84457,,,,,,,268.28135,269.13119,269.49125,281.8162,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00072,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00066,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.04804,0.09113,0.1223,0.17441,,,,,,,0.04809,0.09119,0.12233,0.17445,,,,,,,0.04687,0.08895,0.11941,0.17071,,,,,,,0.04891,0.0928,0.12457,0.17763,,,,,,,0.04689,0.08898,0.11946,0.17077,,,,,,,0.04801,0.09112,0.12236,0.17477,,,,,,,0.04844,0.09182,0.12311,0.17547,,,,,,,0.04979,0.09423,0.12611,0.1794,,,,,,,0.04825,0.09141,0.1225,0.17444,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00038,0.00053,0.00074,0.00125,,,,,,,0.03126,0.03246,0.03413,0.0382,,,,,,,0.03224,0.03343,0.0351,0.03916,,,,,,,0.03474,0.03593,0.0376,0.04165,,,,,,,0.02961,0.03079,0.03246,0.0365,,,,,,,0.03428,0.03546,0.03713,0.04118,,,,,,,0.0317,0.03288,0.03454,0.03858,,,,,,,0.03168,0.03287,0.03455,0.0386,,,,,,,0.03302,0.03421,0.03589,0.03995,,,,,,,0.03262,0.03382,0.03551,0.03959,,,,,,,0.00641,0.00751,0.00906,0.01279,,,,,,,0.00654,0.00763,0.00917,0.01291,,,,,,,0.00685,0.00795,0.00948,0.01321,,,,,,,0.00618,0.00726,0.00879,0.01251,,,,,,,0.00679,0.00788,0.00942,0.01313,,,,,,,0.00644,0.00753,0.00906,0.01277,,,,,,,0.00646,0.00756,0.00909,0.01282,,,,,,,0.00664,0.00773,0.00928,0.01301,,,,,,,0.00661,0.00772,0.00927,0.01302,,,,,,,0.00229,0.0023,0.00231,0.00242,,,,,,,0.00231,0.00232,0.00233,0.00244,,,,,,,0.00235,0.00236,0.00237,0.00248,,,,,,,0.00229,0.0023,0.00231,0.00242,,,,,,,0.00237,0.00238,0.00238,0.00249,,,,,,,0.00233,0.00234,0.00234,0.00245,,,,,,,0.00235,0.00236,0.00236,0.00247,,,,,,,0.00235,0.00235,0.00236,0.00247,,,,,,,0.00231,0.00231,0.00232,0.00242,,,,,,,0.07805,0.10833,0.14468,0.2016,,,,,,,0.07357,0.10317,0.13855,0.19386,,,,,,,0.07676,0.10664,0.14249,0.19864,,,,,,,0.08101,0.11211,0.1495,0.20808,,,,,,,0.05318,0.07965,0.11065,0.15871,,,,,,,0.0619,0.09003,0.12325,0.17498,,,,,,,0.05333,0.08007,0.11134,0.15978,,,,,,,0.06368,0.09187,0.12523,0.17719,,,,,,,0.05084,0.07685,0.10722,0.15423,,, +Compact car,B20,2025,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.0013,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.06948,0.09009,0.1176,0.16463,,,,,,,0.06458,0.0845,0.11099,0.15624,,,,,,,0.06807,0.08837,0.11545,0.16178,,,,,,,0.07249,0.09373,0.12211,0.17068,,,,,,,0.04232,0.05913,0.08101,0.11823,,,,,,,0.05171,0.07,0.09405,0.13504,,,,,,,0.0424,0.05935,0.08141,0.11887,,,,,,,0.05371,0.07217,0.09649,0.13794,,,,,,,0.04,0.05641,0.07772,0.1139,,,,,,,0.75481,1.36799,1.85261,2.54958,,,,,,,0.76903,1.39514,1.88894,2.59604,,,,,,,0.74992,1.36741,1.85479,2.5542,,,,,,,0.78851,1.42663,1.92951,2.64946,,,,,,,0.81289,1.47933,2.0018,2.74068,,,,,,,0.8063,1.46333,1.97957,2.71396,,,,,,,0.8575,1.55151,2.09394,2.85562,,,,,,,0.80265,1.45708,1.97124,2.70161,,,,,,,0.77894,1.41151,1.9097,2.61992,,,,,,,214.62743,215.69269,216.76528,228.85495,,,,,,,216.90591,217.88973,218.84284,230.84091,,,,,,,220.22536,221.23149,222.21037,234.41111,,,,,,,214.74657,215.82308,216.92405,229.0766,,,,,,,222.25926,222.95159,223.48322,235.03108,,,,,,,218.22472,219.03887,219.75518,231.42358,,,,,,,220.26841,220.94096,221.45352,232.87862,,,,,,,219.76199,220.58426,221.30437,233.0493,,,,,,,216.09262,216.8454,217.45813,228.83609,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00076,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02682,0.05159,0.07257,0.10821,,,,,,,0.02678,0.05151,0.07245,0.10808,,,,,,,0.02591,0.0499,0.07028,0.10531,,,,,,,0.02737,0.05264,0.07407,0.11039,,,,,,,0.02595,0.04997,0.07038,0.10544,,,,,,,0.02673,0.05146,0.07246,0.10831,,,,,,,0.02697,0.05185,0.07289,0.1087,,,,,,,0.02758,0.05295,0.07431,0.11068,,,,,,,0.02684,0.05158,0.07246,0.10795,,,,,,,0.00024,0.00034,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00047,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00025,0.00034,0.00048,0.00085,,,,,,,0.03026,0.03099,0.03213,0.03514,,,,,,,0.03123,0.03196,0.0331,0.03611,,,,,,,0.03374,0.03447,0.03561,0.0386,,,,,,,0.02862,0.02934,0.03048,0.03347,,,,,,,0.03328,0.03401,0.03514,0.03813,,,,,,,0.03071,0.03143,0.03256,0.03555,,,,,,,0.03068,0.03141,0.03255,0.03555,,,,,,,0.03201,0.03275,0.03389,0.03689,,,,,,,0.0316,0.03234,0.03349,0.03651,,,,,,,0.00549,0.00616,0.00722,0.00998,,,,,,,0.00561,0.00629,0.00734,0.0101,,,,,,,0.00593,0.0066,0.00765,0.0104,,,,,,,0.00526,0.00593,0.00697,0.00972,,,,,,,0.00587,0.00654,0.00758,0.01034,,,,,,,0.00553,0.0062,0.00724,0.00998,,,,,,,0.00554,0.00621,0.00726,0.01002,,,,,,,0.00571,0.00639,0.00744,0.0102,,,,,,,0.00568,0.00635,0.00741,0.01019,,,,,,,0.00185,0.00186,0.00186,0.00197,,,,,,,0.00187,0.00187,0.00188,0.00199,,,,,,,0.00189,0.0019,0.00191,0.00202,,,,,,,0.00185,0.00186,0.00187,0.00197,,,,,,,0.00191,0.00192,0.00192,0.00202,,,,,,,0.00188,0.00188,0.00189,0.00199,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00186,0.00187,0.00187,0.00197,,,,,,,0.06789,0.08703,0.11256,0.1564,,,,,,,0.06337,0.08187,0.10647,0.14865,,,,,,,0.06667,0.08552,0.11066,0.15384,,,,,,,0.07068,0.0904,0.11676,0.16201,,,,,,,0.04281,0.05841,0.07873,0.11344,,,,,,,0.05145,0.06844,0.09076,0.12899,,,,,,,0.04284,0.05858,0.07906,0.114,,,,,,,0.05334,0.07048,0.09305,0.1317,,,,,,,0.04056,0.05579,0.07557,0.10932,, +Compact car,B20,2030,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00067,0.00113,,,,,,,0.06649,0.0839,0.10901,0.14537,,,,,,,0.06159,0.07833,0.10241,0.13701,,,,,,,0.0651,0.08224,0.10695,0.14271,,,,,,,0.06943,0.0874,0.11336,0.15103,,,,,,,0.03936,0.05306,0.07247,0.09911,,,,,,,0.04869,0.06379,0.08535,0.11556,,,,,,,0.0394,0.05321,0.07276,0.09955,,,,,,,0.05072,0.06602,0.08788,0.11866,,,,,,,0.03707,0.0504,0.06924,0.09495,,,,,,,0.64076,1.17885,1.61853,2.07987,,,,,,,0.6526,1.20185,1.64987,2.11724,,,,,,,0.63506,1.17563,1.61741,2.07812,,,,,,,0.66978,1.2301,1.68659,2.16311,,,,,,,0.68905,1.27301,1.74708,2.23338,,,,,,,0.6841,1.26036,1.72886,2.21338,,,,,,,0.72861,1.33819,1.83102,2.33395,,,,,,,0.68101,1.25499,1.72162,2.20354,,,,,,,0.66141,1.21666,1.66884,2.1386,,,,,,,197.442,198.94324,201.27385,208.74759,,,,,,,199.51309,200.94427,203.17395,210.51763,,,,,,,202.56912,204.02895,206.30392,213.77924,,,,,,,197.56554,199.07789,201.43876,208.9737,,,,,,,204.35243,205.52601,207.38332,214.19719,,,,,,,200.68329,201.96044,203.97152,210.97725,,,,,,,202.523,203.67353,205.50126,212.23657,,,,,,,202.09373,203.38191,205.40524,212.454,,,,,,,198.69021,199.90429,201.79958,208.56216,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04113,0.06005,0.08369,,,,,,,0.02107,0.04101,0.05989,0.08349,,,,,,,0.02028,0.03956,0.0579,0.08106,,,,,,,0.02159,0.04203,0.06136,0.08547,,,,,,,0.02033,0.03964,0.05802,0.08122,,,,,,,0.02102,0.04096,0.05989,0.08367,,,,,,,0.02121,0.04128,0.06025,0.08396,,,,,,,0.02162,0.04203,0.06127,0.08526,,,,,,,0.0211,0.04104,0.05987,0.08334,,,,,,,0.00024,0.00034,0.00048,0.00075,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00075,,,,,,,0.00025,0.00034,0.00048,0.00075,,,,,,,0.03026,0.03099,0.03213,0.03435,,,,,,,0.03123,0.03196,0.0331,0.03532,,,,,,,0.03374,0.03447,0.03561,0.03782,,,,,,,0.02862,0.02934,0.03048,0.03269,,,,,,,0.03328,0.034,0.03514,0.03735,,,,,,,0.03071,0.03143,0.03256,0.03477,,,,,,,0.03068,0.03141,0.03255,0.03477,,,,,,,0.03201,0.03274,0.03389,0.03611,,,,,,,0.0316,0.03234,0.03349,0.03572,,,,,,,0.00549,0.00616,0.00721,0.00926,,,,,,,0.00561,0.00628,0.00733,0.00938,,,,,,,0.00593,0.0066,0.00765,0.00968,,,,,,,0.00526,0.00593,0.00697,0.00901,,,,,,,0.00587,0.00654,0.00758,0.00962,,,,,,,0.00553,0.00619,0.00724,0.00927,,,,,,,0.00554,0.00621,0.00726,0.0093,,,,,,,0.00571,0.00639,0.00744,0.00948,,,,,,,0.00567,0.00635,0.00741,0.00946,,,,,,,0.0017,0.00171,0.00173,0.0018,,,,,,,0.00172,0.00173,0.00175,0.00181,,,,,,,0.00174,0.00175,0.00177,0.00184,,,,,,,0.0017,0.00171,0.00173,0.0018,,,,,,,0.00176,0.00177,0.00178,0.00184,,,,,,,0.00173,0.00174,0.00175,0.00181,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00171,0.00172,0.00174,0.00179,,,,,,,0.06483,0.08101,0.10435,0.13821,,,,,,,0.06032,0.07588,0.09826,0.13048,,,,,,,0.06363,0.07955,0.10252,0.13582,,,,,,,0.06757,0.08427,0.10839,0.14346,,,,,,,0.03977,0.0525,0.07054,0.09537,,,,,,,0.04837,0.06241,0.08244,0.11058,,,,,,,0.03978,0.05261,0.07078,0.09574,,,,,,,0.05028,0.0645,0.08481,0.11348,,,,,,,0.03756,0.04994,0.06746,0.09142, +Compact car,B20,2035,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00112,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.06625,0.08388,0.10899,0.14208,,,,,,,0.06137,0.07831,0.10239,0.13371,,,,,,,0.06488,0.08222,0.10693,0.13944,,,,,,,0.06919,0.08738,0.11334,0.14767,,,,,,,0.03923,0.05305,0.07246,0.09577,,,,,,,0.04852,0.06378,0.08533,0.11217,,,,,,,0.03927,0.0532,0.07275,0.09616,,,,,,,0.05055,0.06601,0.08787,0.11532,,,,,,,0.03695,0.05039,0.06923,0.09163,,,,,,,0.64138,1.17879,1.61842,2.00267,,,,,,,0.65324,1.20178,1.64976,2.03863,,,,,,,0.63568,1.17558,1.6173,1.99997,,,,,,,0.67043,1.23003,1.68647,2.08323,,,,,,,0.68978,1.27296,1.74696,2.15032,,,,,,,0.68479,1.2603,1.72874,2.1313,,,,,,,0.7294,1.33813,1.83089,2.24861,,,,,,,0.68171,1.25493,1.72151,2.1219,,,,,,,0.66209,1.2166,1.66874,2.05964,,,,,,,197.39877,198.9384,201.27053,205.66042,,,,,,,199.47153,200.93963,203.17053,207.39687,,,,,,,202.52651,204.0243,206.30052,210.61088,,,,,,,197.52118,199.07306,201.43526,205.88753,,,,,,,204.31625,205.52194,207.38021,210.99603,,,,,,,200.64476,201.95608,203.96823,207.83676,,,,,,,202.48706,203.66949,205.49815,209.06493,,,,,,,202.05514,203.37755,205.4021,209.29043,,,,,,,198.65463,199.9004,201.79666,205.44751,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04114,0.06005,0.07962,,,,,,,0.02106,0.04103,0.05988,0.07941,,,,,,,0.02028,0.03957,0.05789,0.07704,,,,,,,0.02159,0.04204,0.06135,0.08134,,,,,,,0.02033,0.03966,0.05801,0.0772,,,,,,,0.02102,0.04097,0.05989,0.07958,,,,,,,0.02121,0.04129,0.06024,0.07986,,,,,,,0.02162,0.04205,0.06127,0.08105,,,,,,,0.0211,0.04106,0.05986,0.07926,,,,,,,0.00024,0.00034,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00047,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00025,0.00034,0.00048,0.00074,,,,,,,0.03026,0.03099,0.03213,0.03425,,,,,,,0.03123,0.03196,0.0331,0.03522,,,,,,,0.03374,0.03447,0.03561,0.03771,,,,,,,0.02862,0.02934,0.03048,0.03258,,,,,,,0.03328,0.034,0.03514,0.03725,,,,,,,0.03071,0.03143,0.03256,0.03467,,,,,,,0.03068,0.03141,0.03255,0.03466,,,,,,,0.03201,0.03274,0.03389,0.036,,,,,,,0.0316,0.03234,0.03349,0.03562,,,,,,,0.00549,0.00616,0.00721,0.00916,,,,,,,0.00561,0.00629,0.00733,0.00928,,,,,,,0.00593,0.0066,0.00765,0.00959,,,,,,,0.00526,0.00593,0.00697,0.00891,,,,,,,0.00587,0.00654,0.00758,0.00952,,,,,,,0.00553,0.00619,0.00724,0.00917,,,,,,,0.00554,0.00621,0.00726,0.0092,,,,,,,0.00571,0.00639,0.00744,0.00938,,,,,,,0.00567,0.00635,0.00741,0.00937,,,,,,,0.0017,0.00171,0.00173,0.00177,,,,,,,0.00172,0.00173,0.00175,0.00178,,,,,,,0.00174,0.00175,0.00177,0.00181,,,,,,,0.0017,0.00171,0.00173,0.00177,,,,,,,0.00176,0.00177,0.00178,0.00181,,,,,,,0.00173,0.00174,0.00175,0.00179,,,,,,,0.00174,0.00175,0.00177,0.0018,,,,,,,0.00174,0.00175,0.00177,0.0018,,,,,,,0.00171,0.00172,0.00174,0.00177,,,,,,,0.06462,0.08099,0.10433,0.13511,,,,,,,0.06012,0.07586,0.09824,0.12737,,,,,,,0.06342,0.07953,0.1025,0.13274,,,,,,,0.06734,0.08425,0.10837,0.1403,,,,,,,0.03965,0.05249,0.07053,0.09222,,,,,,,0.04822,0.06239,0.08243,0.10739,,,,,,,0.03966,0.0526,0.07077,0.09255,,,,,,,0.05012,0.06448,0.0848,0.11033,,,,,,,0.03744,0.04993,0.06745,0.08829 +Compact car,B20,2040,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.06621,0.08382,0.10898,,,,,,,,0.06133,0.07826,0.10239,,,,,,,,0.06483,0.08216,0.10693,,,,,,,,0.06914,0.08733,0.11333,,,,,,,,0.0392,0.05301,0.07245,,,,,,,,0.04849,0.06374,0.08533,,,,,,,,0.03924,0.05317,0.07274,,,,,,,,0.05051,0.06596,0.08786,,,,,,,,0.03692,0.05035,0.06922,,,,,,,,0.64078,1.17853,1.61839,,,,,,,,0.65264,1.20153,1.64973,,,,,,,,0.63509,1.17532,1.61727,,,,,,,,0.66981,1.22977,1.68644,,,,,,,,0.68914,1.2727,1.74693,,,,,,,,0.68416,1.26003,1.72871,,,,,,,,0.72874,1.33787,1.83086,,,,,,,,0.68108,1.25467,1.72147,,,,,,,,0.66147,1.21634,1.6687,,,,,,,,197.39176,198.93068,201.26942,,,,,,,,199.46466,200.93212,203.16953,,,,,,,,202.51968,204.01662,206.29932,,,,,,,,197.51405,199.06503,201.43412,,,,,,,,204.31053,205.51561,207.37937,,,,,,,,200.6385,201.94928,203.96736,,,,,,,,202.48143,203.66305,205.49733,,,,,,,,202.04896,203.37055,205.40101,,,,,,,,198.64888,199.89403,201.79583,,,,,,,,0.00062,0.00064,0.00068,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00066,0.00068,0.00071,,,,,,,,0.0006,0.00063,0.00066,,,,,,,,0.00065,0.00068,0.00071,,,,,,,,0.00063,0.00065,0.00068,,,,,,,,0.00062,0.00065,0.00068,,,,,,,,0.00064,0.00066,0.0007,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,0.0211,0.04112,0.06004,,,,,,,,0.02105,0.041,0.05988,,,,,,,,0.02026,0.03955,0.05789,,,,,,,,0.02157,0.04202,0.06135,,,,,,,,0.02031,0.03963,0.05801,,,,,,,,0.021,0.04095,0.05988,,,,,,,,0.02119,0.04127,0.06024,,,,,,,,0.0216,0.04202,0.06126,,,,,,,,0.02108,0.04103,0.05986,,,,,,,,0.00024,0.00034,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00025,0.00034,0.00048,,,,,,,,0.03026,0.03099,0.03213,,,,,,,,0.03123,0.03196,0.0331,,,,,,,,0.03374,0.03447,0.0356,,,,,,,,0.02862,0.02934,0.03048,,,,,,,,0.03327,0.034,0.03514,,,,,,,,0.03071,0.03143,0.03256,,,,,,,,0.03068,0.03141,0.03255,,,,,,,,0.03201,0.03274,0.03389,,,,,,,,0.0316,0.03234,0.03349,,,,,,,,0.00549,0.00616,0.00721,,,,,,,,0.00561,0.00628,0.00733,,,,,,,,0.00593,0.0066,0.00765,,,,,,,,0.00526,0.00593,0.00697,,,,,,,,0.00587,0.00654,0.00758,,,,,,,,0.00553,0.00619,0.00724,,,,,,,,0.00554,0.00621,0.00726,,,,,,,,0.00571,0.00638,0.00744,,,,,,,,0.00567,0.00635,0.00741,,,,,,,,0.0017,0.00171,0.00173,,,,,,,,0.00172,0.00173,0.00175,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.0017,0.00171,0.00173,,,,,,,,0.00176,0.00177,0.00178,,,,,,,,0.00173,0.00174,0.00175,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00171,0.00172,0.00174,,,,,,,,0.06458,0.08094,0.10433,,,,,,,,0.06008,0.07581,0.09823,,,,,,,,0.06338,0.07949,0.1025,,,,,,,,0.0673,0.0842,0.10836,,,,,,,,0.03963,0.05246,0.07053,,,,,,,,0.04818,0.06236,0.08242,,,,,,,,0.03963,0.05257,0.07077,,,,,,,,0.05008,0.06444,0.08479,,,,,,,,0.03742,0.0499,0.06744 +Compact car,B20,2045,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.06618,0.08382,,,,,,,,,0.0613,0.07826,,,,,,,,,0.0648,0.08216,,,,,,,,,0.06911,0.08732,,,,,,,,,0.03918,0.05301,,,,,,,,,0.04846,0.06374,,,,,,,,,0.03922,0.05316,,,,,,,,,0.05049,0.06596,,,,,,,,,0.0369,0.05035,,,,,,,,,0.64071,1.17849,,,,,,,,,0.65257,1.20148,,,,,,,,,0.63502,1.17528,,,,,,,,,0.66974,1.22972,,,,,,,,,0.68907,1.27265,,,,,,,,,0.68409,1.25999,,,,,,,,,0.72867,1.33782,,,,,,,,,0.68101,1.25463,,,,,,,,,0.66141,1.2163,,,,,,,,,197.38569,198.93053,,,,,,,,,199.45889,200.93195,,,,,,,,,202.51378,204.01654,,,,,,,,,197.50783,199.06486,,,,,,,,,204.30562,205.51541,,,,,,,,,200.63304,201.94895,,,,,,,,,202.47654,203.663,,,,,,,,,202.0436,203.37044,,,,,,,,,198.64399,199.89377,,,,,,,,,0.00062,0.00064,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00066,0.00068,,,,,,,,,0.0006,0.00063,,,,,,,,,0.00065,0.00068,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00062,0.00065,,,,,,,,,0.00064,0.00066,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,0.0211,0.04111,,,,,,,,,0.02104,0.041,,,,,,,,,0.02026,0.03955,,,,,,,,,0.02157,0.04202,,,,,,,,,0.0203,0.03963,,,,,,,,,0.02099,0.04095,,,,,,,,,0.02118,0.04126,,,,,,,,,0.0216,0.04202,,,,,,,,,0.02108,0.04103,,,,,,,,,0.00024,0.00034,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00025,0.00034,,,,,,,,,0.03026,0.03099,,,,,,,,,0.03123,0.03196,,,,,,,,,0.03374,0.03447,,,,,,,,,0.02862,0.02934,,,,,,,,,0.03327,0.034,,,,,,,,,0.03071,0.03143,,,,,,,,,0.03068,0.03141,,,,,,,,,0.03201,0.03274,,,,,,,,,0.0316,0.03234,,,,,,,,,0.00549,0.00616,,,,,,,,,0.00561,0.00628,,,,,,,,,0.00593,0.0066,,,,,,,,,0.00526,0.00593,,,,,,,,,0.00587,0.00654,,,,,,,,,0.00553,0.00619,,,,,,,,,0.00554,0.00621,,,,,,,,,0.00571,0.00638,,,,,,,,,0.00567,0.00635,,,,,,,,,0.0017,0.00171,,,,,,,,,0.00172,0.00173,,,,,,,,,0.00174,0.00175,,,,,,,,,0.0017,0.00171,,,,,,,,,0.00176,0.00177,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00171,0.00172,,,,,,,,,0.06454,0.08094,,,,,,,,,0.06005,0.07581,,,,,,,,,0.06335,0.07948,,,,,,,,,0.06727,0.08419,,,,,,,,,0.03961,0.05246,,,,,,,,,0.04816,0.06235,,,,,,,,,0.03962,0.05257,,,,,,,,,0.05006,0.06444,,,,,,,,,0.0374,0.0499 +Compact car,B20,2050,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.06618,,,,,,,,,,0.0613,,,,,,,,,,0.0648,,,,,,,,,,0.06911,,,,,,,,,,0.03918,,,,,,,,,,0.04846,,,,,,,,,,0.03922,,,,,,,,,,0.05049,,,,,,,,,,0.0369,,,,,,,,,,0.64071,,,,,,,,,,0.65257,,,,,,,,,,0.63502,,,,,,,,,,0.66975,,,,,,,,,,0.68908,,,,,,,,,,0.68409,,,,,,,,,,0.72868,,,,,,,,,,0.68102,,,,,,,,,,0.66141,,,,,,,,,,197.38571,,,,,,,,,,199.45888,,,,,,,,,,202.51376,,,,,,,,,,197.50777,,,,,,,,,,204.30554,,,,,,,,,,200.63309,,,,,,,,,,202.47657,,,,,,,,,,202.04355,,,,,,,,,,198.64397,,,,,,,,,,0.00062,,,,,,,,,,0.00063,,,,,,,,,,0.00066,,,,,,,,,,0.0006,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00062,,,,,,,,,,0.00064,,,,,,,,,,0.00063,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,0.0211,,,,,,,,,,0.02104,,,,,,,,,,0.02026,,,,,,,,,,0.02157,,,,,,,,,,0.0203,,,,,,,,,,0.02099,,,,,,,,,,0.02118,,,,,,,,,,0.0216,,,,,,,,,,0.02108,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00025,,,,,,,,,,0.03026,,,,,,,,,,0.03123,,,,,,,,,,0.03374,,,,,,,,,,0.02862,,,,,,,,,,0.03327,,,,,,,,,,0.03071,,,,,,,,,,0.03068,,,,,,,,,,0.03201,,,,,,,,,,0.0316,,,,,,,,,,0.00549,,,,,,,,,,0.00561,,,,,,,,,,0.00593,,,,,,,,,,0.00526,,,,,,,,,,0.00587,,,,,,,,,,0.00553,,,,,,,,,,0.00554,,,,,,,,,,0.00571,,,,,,,,,,0.00567,,,,,,,,,,0.0017,,,,,,,,,,0.00172,,,,,,,,,,0.00174,,,,,,,,,,0.0017,,,,,,,,,,0.00176,,,,,,,,,,0.00173,,,,,,,,,,0.00174,,,,,,,,,,0.00174,,,,,,,,,,0.00171,,,,,,,,,,0.06454,,,,,,,,,,0.06005,,,,,,,,,,0.06335,,,,,,,,,,0.06727,,,,,,,,,,0.03961,,,,,,,,,,0.04816,,,,,,,,,,0.03962,,,,,,,,,,0.05006,,,,,,,,,,0.0374 +Compact car,DSL,1990,0.026,,,,,,,,,,0.02588,,,,,,,,,,0.02558,,,,,,,,,,0.02612,,,,,,,,,,0.02562,,,,,,,,,,0.02589,,,,,,,,,,0.02594,,,,,,,,,,0.02587,,,,,,,,,,0.02592,,,,,,,,,,0.00868,,,,,,,,,,0.00871,,,,,,,,,,0.00884,,,,,,,,,,0.00874,,,,,,,,,,0.00868,,,,,,,,,,0.00869,,,,,,,,,,0.0086,,,,,,,,,,0.00871,,,,,,,,,,0.00847,,,,,,,,,,54.69607,,,,,,,,,,55.74997,,,,,,,,,,56.07294,,,,,,,,,,56.33335,,,,,,,,,,58.78798,,,,,,,,,,58.069,,,,,,,,,,59.39625,,,,,,,,,,57.62502,,,,,,,,,,55.58144,,,,,,,,,,329.98713,,,,,,,,,,331.1271,,,,,,,,,,335.43599,,,,,,,,,,330.52535,,,,,,,,,,331.91184,,,,,,,,,,329.54774,,,,,,,,,,329.33953,,,,,,,,,,331.4414,,,,,,,,,,325.62729,,,,,,,,,,0.00089,,,,,,,,,,0.0009,,,,,,,,,,0.00093,,,,,,,,,,0.00088,,,,,,,,,,0.00093,,,,,,,,,,0.0009,,,,,,,,,,0.0009,,,,,,,,,,0.00091,,,,,,,,,,0.0009,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,3.05803,,,,,,,,,,3.07514,,,,,,,,,,3.06437,,,,,,,,,,3.08633,,,,,,,,,,3.04143,,,,,,,,,,3.06813,,,,,,,,,,3.07616,,,,,,,,,,3.21304,,,,,,,,,,3.08594,,,,,,,,,,0.05811,,,,,,,,,,0.05767,,,,,,,,,,0.05673,,,,,,,,,,0.05748,,,,,,,,,,0.05669,,,,,,,,,,0.05676,,,,,,,,,,0.05765,,,,,,,,,,0.05743,,,,,,,,,,0.05854,,,,,,,,,,0.14852,,,,,,,,,,0.14866,,,,,,,,,,0.14938,,,,,,,,,,0.14606,,,,,,,,,,0.1489,,,,,,,,,,0.14677,,,,,,,,,,0.14816,,,,,,,,,,0.14906,,,,,,,,,,0.15041,,,,,,,,,,0.11429,,,,,,,,,,0.11365,,,,,,,,,,0.11232,,,,,,,,,,0.11331,,,,,,,,,,0.11224,,,,,,,,,,0.1123,,,,,,,,,,0.11362,,,,,,,,,,0.11339,,,,,,,,,,0.11497,,,,,,,,,,0.02515,,,,,,,,,,0.02524,,,,,,,,,,0.02556,,,,,,,,,,0.02519,,,,,,,,,,0.0253,,,,,,,,,,0.02512,,,,,,,,,,0.0251,,,,,,,,,,0.02526,,,,,,,,,,0.02482,,,,,,,,,,4.5203,,,,,,,,,,4.53449,,,,,,,,,,4.59942,,,,,,,,,,4.55494,,,,,,,,,,4.52218,,,,,,,,,,4.52974,,,,,,,,,,4.48279,,,,,,,,,,4.53909,,,,,,,,,,4.41259,,,,,,,,, +Compact car,DSL,1995,0.00359,0.02248,,,,,,,,,0.00357,0.02236,,,,,,,,,0.00353,0.02205,,,,,,,,,0.00358,0.02263,,,,,,,,,0.00353,0.0221,,,,,,,,,0.00355,0.02239,,,,,,,,,0.00358,0.02243,,,,,,,,,0.00356,0.02234,,,,,,,,,0.0036,0.02237,,,,,,,,,0.0032,0.00846,,,,,,,,,0.00319,0.00848,,,,,,,,,0.00324,0.00861,,,,,,,,,0.00323,0.00852,,,,,,,,,0.00311,0.00842,,,,,,,,,0.00315,0.00845,,,,,,,,,0.0031,0.00835,,,,,,,,,0.00316,0.00847,,,,,,,,,0.00304,0.00821,,,,,,,,,15.17855,46.76942,,,,,,,,,15.59833,47.73708,,,,,,,,,15.61216,48.02942,,,,,,,,,15.79418,48.23447,,,,,,,,,16.80771,50.51983,,,,,,,,,16.46091,49.8277,,,,,,,,,17.21873,51.08265,,,,,,,,,16.36114,49.44477,,,,,,,,,15.65219,47.61137,,,,,,,,,428.01183,341.64702,,,,,,,,,432.11228,343.02552,,,,,,,,,438.3528,347.6586,,,,,,,,,427.8292,342.16497,,,,,,,,,441.52723,344.40394,,,,,,,,,434.02469,341.60258,,,,,,,,,437.63309,341.62274,,,,,,,,,437.10942,343.65474,,,,,,,,,430.62199,337.52958,,,,,,,,,0.00068,0.00088,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00072,0.00092,,,,,,,,,0.00067,0.00086,,,,,,,,,0.00072,0.00091,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00069,0.00088,,,,,,,,,0.0007,0.0009,,,,,,,,,0.0007,0.00089,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,2.14663,3.16694,,,,,,,,,2.16375,3.18495,,,,,,,,,2.1557,3.17375,,,,,,,,,2.16886,3.19759,,,,,,,,,2.14825,3.15276,,,,,,,,,2.16168,3.18016,,,,,,,,,2.1772,3.18891,,,,,,,,,2.27308,3.32576,,,,,,,,,2.17557,3.19542,,,,,,,,,0.00926,0.05041,,,,,,,,,0.00917,0.04996,,,,,,,,,0.00906,0.04894,,,,,,,,,0.00909,0.05006,,,,,,,,,0.00903,0.04895,,,,,,,,,0.00898,0.04927,,,,,,,,,0.00917,0.04999,,,,,,,,,0.00913,0.04969,,,,,,,,,0.00937,0.05062,,,,,,,,,0.04688,0.1301,,,,,,,,,0.04768,0.13026,,,,,,,,,0.04997,0.13088,,,,,,,,,0.04498,0.12813,,,,,,,,,0.04948,0.13049,,,,,,,,,0.04687,0.12875,,,,,,,,,0.04714,0.12983,,,,,,,,,0.04839,0.13061,,,,,,,,,0.04838,0.13163,,,,,,,,,0.02078,0.09734,,,,,,,,,0.02074,0.09672,,,,,,,,,0.02086,0.0953,,,,,,,,,0.02031,0.09681,,,,,,,,,0.02078,0.0953,,,,,,,,,0.02039,0.09573,,,,,,,,,0.02068,0.09676,,,,,,,,,0.02078,0.09642,,,,,,,,,0.02111,0.09769,,,,,,,,,0.03262,0.003,,,,,,,,,0.03293,0.00302,,,,,,,,,0.03341,0.00306,,,,,,,,,0.03261,0.00301,,,,,,,,,0.03365,0.00303,,,,,,,,,0.03308,0.003,,,,,,,,,0.03335,0.003,,,,,,,,,0.03331,0.00302,,,,,,,,,0.03282,0.00297,,,,,,,,,1.48396,3.92055,,,,,,,,,1.48178,3.93007,,,,,,,,,1.50517,3.98953,,,,,,,,,1.49888,3.95098,,,,,,,,,1.4471,3.90473,,,,,,,,,1.46139,3.91532,,,,,,,,,1.43796,3.87038,,,,,,,,,1.46883,3.92676,,,,,,,,,1.41028,3.80792,,,,,,,, +Compact car,DSL,2000,0.00127,0.00211,0.00894,,,,,,,,0.00126,0.00209,0.0089,,,,,,,,0.00124,0.00206,0.00881,,,,,,,,0.00125,0.00207,0.00897,,,,,,,,0.00124,0.00205,0.00882,,,,,,,,0.00123,0.00204,0.0089,,,,,,,,0.00126,0.00209,0.00892,,,,,,,,0.00125,0.00208,0.00889,,,,,,,,0.00129,0.00213,0.00892,,,,,,,,0.00117,0.00223,0.00443,,,,,,,,0.00115,0.00221,0.00442,,,,,,,,0.00117,0.00224,0.00448,,,,,,,,0.00119,0.00226,0.00449,,,,,,,,0.00106,0.00211,0.00431,,,,,,,,0.0011,0.00217,0.00437,,,,,,,,0.00106,0.00211,0.00429,,,,,,,,0.00111,0.00217,0.00438,,,,,,,,0.00103,0.00206,0.0042,,,,,,,,5.43349,9.04791,19.48785,,,,,,,,5.58995,9.29532,19.98008,,,,,,,,5.57617,9.25435,20.02978,,,,,,,,5.69483,9.46078,20.24668,,,,,,,,6.04741,10.03494,21.40943,,,,,,,,5.93821,9.84658,21.03693,,,,,,,,6.23104,10.36394,21.84852,,,,,,,,5.88055,9.7718,20.87089,,,,,,,,5.60351,9.34556,19.99406,,,,,,,,424.53585,426.86961,402.05017,,,,,,,,429.06318,431.27719,405.35869,,,,,,,,435.25315,437.51151,411.21184,,,,,,,,424.75673,427.09067,402.32845,,,,,,,,439.98205,441.75958,412.39028,,,,,,,,432.01564,433.96324,406.3428,,,,,,,,436.35979,438.09288,408.88078,,,,,,,,434.91551,436.88665,409.0714,,,,,,,,428.16158,430.03498,402.27813,,,,,,,,0.00064,0.00066,0.00076,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00068,0.0007,0.0008,,,,,,,,0.00062,0.00065,0.00075,,,,,,,,0.00067,0.0007,0.00079,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00066,0.00069,0.00078,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,1.01966,1.51422,2.39522,,,,,,,,1.02707,1.52535,2.41082,,,,,,,,1.0201,1.51647,2.39959,,,,,,,,1.03305,1.53403,2.42256,,,,,,,,1.02031,1.51587,2.39197,,,,,,,,1.02873,1.52851,2.41208,,,,,,,,1.03752,1.53893,2.42376,,,,,,,,1.07682,1.59622,2.51893,,,,,,,,1.03229,1.53113,2.41921,,,,,,,,0.00346,0.00553,0.02015,,,,,,,,0.00341,0.00544,0.02,,,,,,,,0.00335,0.00534,0.01973,,,,,,,,0.00331,0.00529,0.0199,,,,,,,,0.00333,0.00531,0.0197,,,,,,,,0.00326,0.0052,0.01968,,,,,,,,0.0034,0.00543,0.01999,,,,,,,,0.00338,0.0054,0.01992,,,,,,,,0.00356,0.00569,0.02032,,,,,,,,0.0352,0.03913,0.06899,,,,,,,,0.03608,0.03994,0.06968,,,,,,,,0.03848,0.04227,0.07168,,,,,,,,0.03333,0.03711,0.06702,,,,,,,,0.03798,0.04176,0.0712,,,,,,,,0.03532,0.03903,0.06869,,,,,,,,0.03552,0.03938,0.06915,,,,,,,,0.03681,0.04065,0.07034,,,,,,,,0.03671,0.04073,0.07055,,,,,,,,0.01004,0.01366,0.04112,,,,,,,,0.01007,0.01363,0.04098,,,,,,,,0.01029,0.01378,0.04084,,,,,,,,0.0096,0.01308,0.04059,,,,,,,,0.0102,0.01367,0.04075,,,,,,,,0.00977,0.01319,0.04048,,,,,,,,0.00999,0.01354,0.04093,,,,,,,,0.01013,0.01366,0.04098,,,,,,,,0.01037,0.01407,0.0415,,,,,,,,0.03235,0.00375,0.00354,,,,,,,,0.0327,0.00379,0.00356,,,,,,,,0.03317,0.00385,0.00362,,,,,,,,0.03237,0.00376,0.00354,,,,,,,,0.03353,0.00388,0.00363,,,,,,,,0.03292,0.00382,0.00357,,,,,,,,0.03326,0.00385,0.0036,,,,,,,,0.03315,0.00384,0.0036,,,,,,,,0.03263,0.00378,0.00354,,,,,,,,0.54567,1.03112,2.04743,,,,,,,,0.53701,1.02363,2.04216,,,,,,,,0.54668,1.03642,2.06977,,,,,,,,0.55671,1.04831,2.07326,,,,,,,,0.49304,0.97957,1.99044,,,,,,,,0.51395,1.00352,2.01819,,,,,,,,0.49267,0.97867,1.98131,,,,,,,,0.51698,1.0053,2.02259,,,,,,,,0.47988,0.95645,1.94229,,,,,,, +Compact car,DSL,2005,0.00054,0.00081,0.00132,0.0029,,,,,,,0.00053,0.00081,0.00132,0.00289,,,,,,,0.00053,0.0008,0.00131,0.00287,,,,,,,0.00053,0.0008,0.00132,0.00289,,,,,,,0.00053,0.0008,0.00131,0.00287,,,,,,,0.00053,0.0008,0.00131,0.00288,,,,,,,0.00053,0.00081,0.00132,0.00289,,,,,,,0.00054,0.00081,0.00132,0.00289,,,,,,,0.00054,0.00081,0.00133,0.00291,,,,,,,0.0007,0.00112,0.00172,0.00249,,,,,,,0.00067,0.00108,0.00168,0.00244,,,,,,,0.00069,0.0011,0.0017,0.00247,,,,,,,0.00073,0.00115,0.00177,0.00256,,,,,,,0.00052,0.00092,0.00148,0.00221,,,,,,,0.00059,0.001,0.00158,0.00233,,,,,,,0.00052,0.00092,0.00149,0.00222,,,,,,,0.0006,0.001,0.00159,0.00233,,,,,,,0.0005,0.00089,0.00145,0.00216,,,,,,,1.81784,3.85807,5.64199,7.89975,,,,,,,1.85566,3.94664,5.77147,8.07547,,,,,,,1.83106,3.92323,5.75186,8.04688,,,,,,,1.89236,4.00853,5.85369,8.19569,,,,,,,1.97359,4.22408,6.17762,8.61792,,,,,,,1.94761,4.14856,6.06282,8.47551,,,,,,,2.05331,4.36007,6.35462,8.85713,,,,,,,1.93841,4.13096,6.03749,8.43165,,,,,,,1.87275,3.97793,5.81188,8.11952,,,,,,,422.70823,424.02676,427.37967,433.48902,,,,,,,427.34753,428.5819,431.77522,437.60642,,,,,,,433.50386,434.7623,438.02017,443.96917,,,,,,,422.95866,424.2502,427.62391,433.7895,,,,,,,438.66966,439.60178,442.21181,447.01959,,,,,,,430.55618,431.59761,434.4406,439.66258,,,,,,,435.09796,435.99109,438.54674,443.26521,,,,,,,433.42617,434.49086,437.36002,442.62302,,,,,,,426.71897,427.7554,430.46337,435.41348,,,,,,,0.00062,0.00063,0.00067,0.00073,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00066,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00065,0.00072,,,,,,,0.00065,0.00067,0.0007,0.00077,,,,,,,0.00063,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00064,0.00067,0.00074,,,,,,,0.00064,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.19374,0.40353,0.56445,0.93128,,,,,,,0.1948,0.4056,0.567,0.93569,,,,,,,0.19355,0.40295,0.56299,0.92948,,,,,,,0.19641,0.40913,0.57253,0.94438,,,,,,,0.1933,0.40238,0.56223,0.92842,,,,,,,0.19536,0.40685,0.56906,0.93924,,,,,,,0.19633,0.40858,0.57086,0.9418,,,,,,,0.20297,0.42203,0.58845,0.97047,,,,,,,0.19533,0.40651,0.56772,0.93651,,,,,,,0.00148,0.00218,0.00336,0.00671,,,,,,,0.00148,0.00217,0.00335,0.00666,,,,,,,0.00148,0.00217,0.00335,0.00662,,,,,,,0.00145,0.00212,0.00329,0.00655,,,,,,,0.00147,0.00216,0.00334,0.0066,,,,,,,0.00144,0.00212,0.00329,0.00651,,,,,,,0.00147,0.00216,0.00334,0.00665,,,,,,,0.00148,0.00217,0.00335,0.00665,,,,,,,0.00151,0.00222,0.00342,0.00682,,,,,,,0.03129,0.03258,0.03496,0.04181,,,,,,,0.03226,0.03355,0.03592,0.0427,,,,,,,0.03476,0.03605,0.03842,0.04513,,,,,,,0.02961,0.03088,0.03322,0.03994,,,,,,,0.03429,0.03558,0.03794,0.04463,,,,,,,0.0317,0.03296,0.03531,0.04195,,,,,,,0.0317,0.03299,0.03535,0.04214,,,,,,,0.03304,0.03432,0.0367,0.04347,,,,,,,0.03267,0.03398,0.03637,0.04332,,,,,,,0.00644,0.00763,0.00981,0.01612,,,,,,,0.00656,0.00774,0.00992,0.01617,,,,,,,0.00687,0.00805,0.01024,0.01641,,,,,,,0.00618,0.00734,0.0095,0.01568,,,,,,,0.0068,0.00798,0.01016,0.01631,,,,,,,0.00644,0.0076,0.00976,0.01587,,,,,,,0.00648,0.00766,0.00984,0.01608,,,,,,,0.00666,0.00784,0.01002,0.01625,,,,,,,0.00665,0.00786,0.01006,0.01645,,,,,,,0.03222,0.00373,0.00376,0.00381,,,,,,,0.03257,0.00377,0.0038,0.00385,,,,,,,0.03304,0.00382,0.00385,0.0039,,,,,,,0.03223,0.00373,0.00376,0.00381,,,,,,,0.03343,0.00387,0.00389,0.00393,,,,,,,0.03281,0.0038,0.00382,0.00387,,,,,,,0.03316,0.00383,0.00386,0.0039,,,,,,,0.03303,0.00382,0.00385,0.00389,,,,,,,0.03252,0.00376,0.00379,0.00383,,,,,,,0.20408,0.3204,0.48891,0.81979,,,,,,,0.19468,0.31014,0.47658,0.80483,,,,,,,0.20096,0.31605,0.48269,0.81418,,,,,,,0.21117,0.33007,0.5026,0.83955,,,,,,,0.15195,0.26351,0.42061,0.73457,,,,,,,0.17103,0.28597,0.44937,0.77197,,,,,,,0.15269,0.26546,0.42413,0.7383,,,,,,,0.17417,0.2883,0.45094,0.77331,,,,,,,0.14672,0.25703,0.412,0.71927,,,,,, +Compact car,DSL,2010,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00132,0.00254,,,,,,,0.00054,0.00078,0.00133,0.00256,,,,,,,0.00054,0.00078,0.00132,0.00254,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.0594,0.09236,0.16247,0.18186,,,,,,,0.05611,0.08847,0.1575,0.17647,,,,,,,0.05832,0.09087,0.16011,0.17928,,,,,,,0.06166,0.09546,0.1673,0.18722,,,,,,,0.0412,0.07081,0.13491,0.15201,,,,,,,0.0477,0.07886,0.14593,0.16407,,,,,,,0.0414,0.07133,0.13612,0.15334,,,,,,,0.0489,0.08006,0.14699,0.16512,,,,,,,0.03954,0.0687,0.13188,0.14866,,,,,,,1.8136,3.29322,4.96691,6.50306,,,,,,,1.85219,3.36648,5.0774,6.63792,,,,,,,1.82204,3.33036,5.0386,6.59299,,,,,,,1.89088,3.42695,5.16017,6.74484,,,,,,,1.97218,3.5952,5.42309,7.059,,,,,,,1.94584,3.53775,5.33203,6.95452,,,,,,,2.06109,3.7326,5.60693,7.27876,,,,,,,1.93758,3.52316,5.31009,6.92214,,,,,,,1.87273,3.39862,5.11985,6.68225,,,,,,,423.2017,425.42868,429.18554,435.14299,,,,,,,427.88141,430.0022,433.59459,439.28373,,,,,,,434.04025,436.20306,439.86734,445.67168,,,,,,,423.42338,425.65556,429.44467,435.46072,,,,,,,439.33815,441.07226,444.05767,448.76123,,,,,,,431.15134,433.03628,436.2664,441.37011,,,,,,,435.75745,437.45235,440.38242,445.00131,,,,,,,434.03339,435.93862,439.19421,444.33616,,,,,,,427.3705,429.17956,432.24851,437.08229,,,,,,,0.00061,0.00063,0.00067,0.00073,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00072,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.09317,0.16776,0.2507,0.43866,,,,,,,0.09345,0.1682,0.25122,0.43983,,,,,,,0.0918,0.16522,0.24671,0.43418,,,,,,,0.09466,0.17049,0.25489,0.44574,,,,,,,0.09175,0.16513,0.2466,0.43397,,,,,,,0.09341,0.16822,0.25141,0.44128,,,,,,,0.09416,0.1694,0.2529,0.44258,,,,,,,0.09714,0.17454,0.26004,0.45429,,,,,,,0.0938,0.16871,0.25174,0.43991,,,,,,,0.00084,0.00111,0.00154,0.00338,,,,,,,0.00084,0.00111,0.00154,0.00337,,,,,,,0.00083,0.0011,0.00154,0.00336,,,,,,,0.00082,0.00109,0.00152,0.00333,,,,,,,0.00083,0.0011,0.00153,0.00335,,,,,,,0.00082,0.00109,0.00152,0.00332,,,,,,,0.00083,0.0011,0.00154,0.00336,,,,,,,0.00084,0.00111,0.00154,0.00337,,,,,,,0.00085,0.00112,0.00156,0.00342,,,,,,,0.03156,0.03283,0.0357,0.04116,,,,,,,0.03253,0.0338,0.03666,0.04211,,,,,,,0.03504,0.0363,0.03916,0.04458,,,,,,,0.0299,0.03116,0.034,0.0394,,,,,,,0.03457,0.03584,0.03869,0.0441,,,,,,,0.03199,0.03325,0.03608,0.04147,,,,,,,0.03198,0.03325,0.0361,0.04154,,,,,,,0.03332,0.03459,0.03745,0.0429,,,,,,,0.03292,0.0342,0.03708,0.04259,,,,,,,0.00669,0.00786,0.01049,0.01552,,,,,,,0.00681,0.00798,0.01061,0.01562,,,,,,,0.00713,0.00829,0.01091,0.01591,,,,,,,0.00645,0.0076,0.01021,0.01518,,,,,,,0.00706,0.00822,0.01084,0.01583,,,,,,,0.00671,0.00787,0.01048,0.01543,,,,,,,0.00673,0.0079,0.01053,0.01553,,,,,,,0.00691,0.00808,0.01071,0.01572,,,,,,,0.00689,0.00806,0.01072,0.01578,,,,,,,0.00354,0.00355,0.00357,0.00364,,,,,,,0.00358,0.00359,0.00361,0.00368,,,,,,,0.00363,0.00364,0.00366,0.00373,,,,,,,0.00354,0.00355,0.00357,0.00365,,,,,,,0.00368,0.00368,0.00369,0.00376,,,,,,,0.00361,0.00361,0.00363,0.00369,,,,,,,0.00365,0.00365,0.00366,0.00373,,,,,,,0.00363,0.00364,0.00365,0.00372,,,,,,,0.00358,0.00358,0.0036,0.00366,,,,,,,0.12284,0.17646,0.25767,0.43798,,,,,,,0.11719,0.1701,0.25018,0.42741,,,,,,,0.12102,0.174,0.25425,0.43309,,,,,,,0.12704,0.18194,0.26512,0.4499,,,,,,,0.09142,0.14108,0.21603,0.37908,,,,,,,0.10282,0.15455,0.23275,0.40387,,,,,,,0.09187,0.14207,0.21781,0.38182,,,,,,,0.10482,0.15638,0.23432,0.40527,,,,,,,0.08826,0.13726,0.21118,0.37109,,,,, +Compact car,DSL,2015,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.00052,0.00081,0.00133,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00133,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.08628,0.13981,0.21316,0.26684,,,,,,,0.08155,0.13428,0.20654,0.25888,,,,,,,0.08473,0.1376,0.21006,0.26305,,,,,,,0.08955,0.14439,0.21954,0.27474,,,,,,,0.0601,0.10915,0.17644,0.22278,,,,,,,0.06946,0.12074,0.19107,0.24057,,,,,,,0.06041,0.11,0.178,0.22471,,,,,,,0.07119,0.12236,0.19251,0.24211,,,,,,,0.05772,0.10609,0.17242,0.21784,,,,,,,1.50615,3.35216,4.9018,5.95994,,,,,,,1.53702,3.42585,5.00954,6.08262,,,,,,,1.50784,3.38732,4.96771,6.0331,,,,,,,1.57139,3.48841,5.09306,6.18325,,,,,,,1.63277,3.65582,5.34642,6.46647,,,,,,,1.61378,3.59917,5.2594,6.37196,,,,,,,1.71139,3.79726,5.53154,6.67979,,,,,,,1.60669,3.5841,5.23754,6.34417,,,,,,,1.55484,3.45857,5.05188,6.12807,,,,,,,340.58306,341.92105,342.19319,348.86925,,,,,,,344.39677,345.61199,345.71094,352.19832,,,,,,,349.60016,350.84708,350.97032,357.56216,,,,,,,340.67929,342.0276,342.32627,349.05937,,,,,,,353.60221,354.37935,353.87575,359.65328,,,,,,,346.87639,347.83518,347.59674,353.65616,,,,,,,350.47577,351.22104,350.6907,356.40186,,,,,,,349.32115,350.29328,350.0587,356.1526,,,,,,,343.75689,344.63462,344.27903,350.10678,,,,,,,0.00061,0.00064,0.00068,0.00073,,,,,,,0.00062,0.00065,0.00069,0.00074,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00071,,,,,,,0.00065,0.00067,0.00071,0.00076,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00073,,,,,,,0.00063,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.0669,0.14623,0.22002,0.28531,,,,,,,0.06703,0.14648,0.22034,0.28566,,,,,,,0.06553,0.14331,0.21577,0.28027,,,,,,,0.06805,0.14875,0.22383,0.29025,,,,,,,0.06552,0.14328,0.21572,0.28021,,,,,,,0.06693,0.14636,0.22035,0.28609,,,,,,,0.06754,0.14752,0.2218,0.28739,,,,,,,0.06961,0.15183,0.2279,0.29468,,,,,,,0.06731,0.14695,0.22083,0.28589,,,,,,,0.00041,0.00062,0.00096,0.00169,,,,,,,0.00041,0.00061,0.00096,0.00169,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00095,0.00167,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00095,0.00166,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00096,0.00169,,,,,,,0.00042,0.00062,0.00097,0.0017,,,,,,,0.03156,0.03317,0.03594,0.04069,,,,,,,0.03253,0.03414,0.03691,0.04165,,,,,,,0.03503,0.03664,0.0394,0.04413,,,,,,,0.0299,0.0315,0.03425,0.03896,,,,,,,0.03457,0.03618,0.03893,0.04366,,,,,,,0.03199,0.03359,0.03633,0.04104,,,,,,,0.03198,0.03359,0.03635,0.04109,,,,,,,0.03331,0.03493,0.0377,0.04244,,,,,,,0.03292,0.03455,0.03734,0.04211,,,,,,,0.00669,0.00817,0.01072,0.01509,,,,,,,0.00681,0.00829,0.01084,0.0152,,,,,,,0.00712,0.0086,0.01114,0.01549,,,,,,,0.00644,0.00791,0.01044,0.01478,,,,,,,0.00706,0.00854,0.01107,0.01542,,,,,,,0.00671,0.00818,0.0107,0.01504,,,,,,,0.00673,0.00821,0.01075,0.01511,,,,,,,0.00691,0.00839,0.01094,0.01531,,,,,,,0.00688,0.00838,0.01095,0.01534,,,,,,,0.00278,0.00279,0.0028,0.00286,,,,,,,0.00281,0.00282,0.00282,0.00288,,,,,,,0.00286,0.00287,0.00287,0.00293,,,,,,,0.00278,0.00279,0.0028,0.00286,,,,,,,0.00289,0.0029,0.00289,0.00295,,,,,,,0.00283,0.00284,0.00284,0.0029,,,,,,,0.00286,0.00287,0.00287,0.00292,,,,,,,0.00285,0.00286,0.00286,0.00292,,,,,,,0.00281,0.00282,0.00281,0.00287,,,,,,,0.08521,0.1349,0.20296,0.27412,,,,,,,0.08088,0.12982,0.19686,0.2663,,,,,,,0.0839,0.13298,0.20022,0.27049,,,,,,,0.08825,0.13915,0.20888,0.28203,,,,,,,0.06111,0.10664,0.16906,0.23072,,,,,,,0.0697,0.11729,0.18254,0.2483,,,,,,,0.06135,0.10738,0.17046,0.2326,,,,,,,0.07134,0.11883,0.18392,0.2498,,,,,,,0.05876,0.10365,0.16519,0.22562,,,, +Compact car,DSL,2020,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00188,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00048,0.0007,0.00102,0.00187,,,,,,,0.07955,0.11217,0.15133,0.21057,,,,,,,0.07468,0.10656,0.14468,0.20224,,,,,,,0.07804,0.11022,0.14885,0.20729,,,,,,,0.08274,0.11624,0.15651,0.21751,,,,,,,0.05258,0.0811,0.1145,0.16449,,,,,,,0.06207,0.09237,0.12816,0.18198,,,,,,,0.05278,0.08159,0.11529,0.16567,,,,,,,0.06395,0.09431,0.13026,0.18432,,,,,,,0.0502,0.07821,0.11093,0.15982,,,,,,,1.19391,2.1344,2.82594,3.84164,,,,,,,1.2178,2.17907,2.88375,3.91516,,,,,,,1.19354,2.1469,2.84465,3.86784,,,,,,,1.24561,2.22272,2.9393,3.98793,,,,,,,1.29181,2.31811,3.06395,4.14472,,,,,,,1.27788,2.28717,3.02354,4.09566,,,,,,,1.35511,2.41689,3.18797,4.29865,,,,,,,1.27219,2.2774,3.01073,4.07709,,,,,,,1.23197,2.20151,2.91154,3.94692,,,,,,,267.47413,268.7024,269.59109,282.72822,,,,,,,270.39636,271.52604,272.27294,285.31187,,,,,,,274.52522,275.6807,276.45205,289.70385,,,,,,,267.57742,268.81704,269.73372,282.93159,,,,,,,277.35167,278.12917,278.38198,290.93884,,,,,,,272.18285,273.10729,273.57779,286.26224,,,,,,,274.86534,275.61838,275.85038,288.27644,,,,,,,274.11096,275.04517,275.51904,288.28668,,,,,,,269.62999,270.48429,270.84623,283.23313,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00072,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00066,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.04804,0.09113,0.1223,0.17438,,,,,,,0.04809,0.09119,0.12233,0.17442,,,,,,,0.04687,0.08895,0.11941,0.17068,,,,,,,0.04891,0.0928,0.12457,0.17759,,,,,,,0.04689,0.08898,0.11946,0.17074,,,,,,,0.04801,0.09112,0.12236,0.17474,,,,,,,0.04844,0.09182,0.12311,0.17544,,,,,,,0.04979,0.09423,0.12611,0.17937,,,,,,,0.04825,0.09141,0.1225,0.17441,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00072,0.00123,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00038,0.00053,0.00074,0.00125,,,,,,,0.03126,0.03246,0.03413,0.0382,,,,,,,0.03224,0.03343,0.0351,0.03917,,,,,,,0.03474,0.03593,0.0376,0.04165,,,,,,,0.02961,0.03079,0.03246,0.0365,,,,,,,0.03428,0.03546,0.03713,0.04118,,,,,,,0.0317,0.03288,0.03454,0.03858,,,,,,,0.03168,0.03287,0.03455,0.03861,,,,,,,0.03302,0.03421,0.03589,0.03996,,,,,,,0.03262,0.03382,0.03551,0.0396,,,,,,,0.00641,0.00751,0.00906,0.0128,,,,,,,0.00654,0.00763,0.00917,0.01291,,,,,,,0.00685,0.00795,0.00948,0.01321,,,,,,,0.00618,0.00726,0.00879,0.01252,,,,,,,0.00679,0.00788,0.00942,0.01314,,,,,,,0.00644,0.00753,0.00906,0.01277,,,,,,,0.00646,0.00756,0.00909,0.01283,,,,,,,0.00664,0.00773,0.00928,0.01302,,,,,,,0.00661,0.00772,0.00927,0.01303,,,,,,,0.00219,0.0022,0.0022,0.00231,,,,,,,0.00221,0.00222,0.00222,0.00233,,,,,,,0.00224,0.00225,0.00226,0.00237,,,,,,,0.00219,0.0022,0.0022,0.00231,,,,,,,0.00227,0.00227,0.00227,0.00238,,,,,,,0.00222,0.00223,0.00224,0.00234,,,,,,,0.00225,0.00225,0.00225,0.00236,,,,,,,0.00224,0.00225,0.00225,0.00236,,,,,,,0.0022,0.00221,0.00221,0.00231,,,,,,,0.07786,0.10814,0.14449,0.20169,,,,,,,0.07338,0.10298,0.13836,0.19395,,,,,,,0.07656,0.10644,0.14229,0.19872,,,,,,,0.08082,0.11192,0.1493,0.20819,,,,,,,0.05298,0.07945,0.11045,0.15876,,,,,,,0.06171,0.08983,0.12306,0.17504,,,,,,,0.05313,0.07987,0.11114,0.15983,,,,,,,0.06348,0.09167,0.12503,0.17725,,,,,,,0.05065,0.07665,0.10702,0.15427,,, +Compact car,DSL,2025,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.0013,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.06948,0.09009,0.1176,0.16463,,,,,,,0.06458,0.0845,0.11099,0.15624,,,,,,,0.06807,0.08837,0.11545,0.16178,,,,,,,0.07249,0.09373,0.12211,0.17068,,,,,,,0.04232,0.05913,0.08101,0.11823,,,,,,,0.05171,0.07,0.09405,0.13504,,,,,,,0.0424,0.05935,0.08141,0.11887,,,,,,,0.05371,0.07217,0.09649,0.13794,,,,,,,0.04,0.05641,0.07772,0.1139,,,,,,,0.75481,1.36799,1.85261,2.54958,,,,,,,0.76903,1.39514,1.88894,2.59604,,,,,,,0.74992,1.36741,1.85479,2.5542,,,,,,,0.78851,1.42663,1.92951,2.64946,,,,,,,0.81289,1.47933,2.0018,2.74068,,,,,,,0.8063,1.46333,1.97957,2.71396,,,,,,,0.8575,1.55151,2.09394,2.85562,,,,,,,0.80265,1.45708,1.97124,2.70161,,,,,,,0.77894,1.41151,1.9097,2.61992,,,,,,,215.70646,216.77705,217.85506,230.00549,,,,,,,217.99641,218.9852,219.94309,232.0016,,,,,,,221.33256,222.34378,223.32755,235.5896,,,,,,,215.82613,216.90812,218.0146,230.22831,,,,,,,223.37661,224.0725,224.60684,236.21274,,,,,,,219.32184,220.14011,220.86006,232.58707,,,,,,,221.37594,222.05176,222.56686,234.04938,,,,,,,220.86683,221.69325,222.41697,234.22095,,,,,,,217.17904,217.9356,218.55139,229.98659,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00076,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02682,0.05159,0.07257,0.10821,,,,,,,0.02678,0.05151,0.07245,0.10808,,,,,,,0.02591,0.0499,0.07028,0.10531,,,,,,,0.02737,0.05264,0.07407,0.11039,,,,,,,0.02595,0.04997,0.07038,0.10544,,,,,,,0.02673,0.05146,0.07246,0.10831,,,,,,,0.02697,0.05185,0.07289,0.1087,,,,,,,0.02758,0.05295,0.07431,0.11068,,,,,,,0.02684,0.05158,0.07246,0.10795,,,,,,,0.00024,0.00034,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00047,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00025,0.00034,0.00048,0.00085,,,,,,,0.03026,0.03099,0.03213,0.03514,,,,,,,0.03123,0.03196,0.0331,0.03611,,,,,,,0.03374,0.03447,0.03561,0.0386,,,,,,,0.02862,0.02934,0.03048,0.03347,,,,,,,0.03328,0.03401,0.03514,0.03813,,,,,,,0.03071,0.03143,0.03256,0.03555,,,,,,,0.03068,0.03141,0.03255,0.03555,,,,,,,0.03201,0.03275,0.03389,0.03689,,,,,,,0.0316,0.03234,0.03349,0.03651,,,,,,,0.00549,0.00616,0.00722,0.00998,,,,,,,0.00561,0.00629,0.00734,0.0101,,,,,,,0.00593,0.0066,0.00765,0.0104,,,,,,,0.00526,0.00593,0.00697,0.00972,,,,,,,0.00587,0.00654,0.00758,0.01034,,,,,,,0.00553,0.0062,0.00724,0.00998,,,,,,,0.00554,0.00621,0.00726,0.01002,,,,,,,0.00571,0.00639,0.00744,0.0102,,,,,,,0.00568,0.00635,0.00741,0.01019,,,,,,,0.00176,0.00177,0.00178,0.00188,,,,,,,0.00178,0.00179,0.0018,0.0019,,,,,,,0.00181,0.00182,0.00182,0.00192,,,,,,,0.00176,0.00177,0.00178,0.00188,,,,,,,0.00183,0.00183,0.00184,0.00193,,,,,,,0.00179,0.0018,0.0018,0.0019,,,,,,,0.00181,0.00181,0.00182,0.00191,,,,,,,0.0018,0.00181,0.00182,0.00191,,,,,,,0.00177,0.00178,0.00179,0.00188,,,,,,,0.06773,0.08687,0.11241,0.15623,,,,,,,0.06322,0.08172,0.10631,0.14848,,,,,,,0.06651,0.08536,0.1105,0.15367,,,,,,,0.07053,0.09025,0.1166,0.16185,,,,,,,0.04265,0.05825,0.07857,0.11327,,,,,,,0.05129,0.06828,0.0906,0.12882,,,,,,,0.04269,0.05842,0.0789,0.11383,,,,,,,0.05318,0.07032,0.09289,0.13153,,,,,,,0.0404,0.05563,0.07541,0.10916,, +Compact car,DSL,2030,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00067,0.00113,,,,,,,0.06649,0.0839,0.10901,0.14537,,,,,,,0.06159,0.07833,0.10241,0.13701,,,,,,,0.0651,0.08224,0.10695,0.14271,,,,,,,0.06943,0.0874,0.11336,0.15103,,,,,,,0.03936,0.05306,0.07247,0.09911,,,,,,,0.04869,0.06379,0.08535,0.11556,,,,,,,0.0394,0.05321,0.07276,0.09955,,,,,,,0.05072,0.06602,0.08788,0.11866,,,,,,,0.03707,0.0504,0.06924,0.09495,,,,,,,0.64076,1.17885,1.61853,2.07987,,,,,,,0.6526,1.20185,1.64987,2.11724,,,,,,,0.63506,1.17563,1.61741,2.07812,,,,,,,0.66978,1.2301,1.68659,2.16311,,,,,,,0.68905,1.27301,1.74708,2.23338,,,,,,,0.6841,1.26036,1.72886,2.21338,,,,,,,0.72861,1.33819,1.83102,2.33395,,,,,,,0.68101,1.25499,1.72162,2.20354,,,,,,,0.66141,1.21666,1.66884,2.1386,,,,,,,198.43459,199.94343,202.28578,209.79703,,,,,,,200.51609,201.9545,204.19538,211.57597,,,,,,,203.58757,205.05473,207.34106,214.85406,,,,,,,198.55882,200.07879,202.45148,210.02432,,,,,,,205.37985,206.55929,208.42594,215.27412,,,,,,,201.6922,202.97577,204.99694,212.03794,,,,,,,203.5412,204.69754,206.53444,213.30353,,,,,,,203.10975,204.40441,206.43796,213.52213,,,,,,,199.68908,200.90927,202.81414,209.61078,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04113,0.06005,0.08369,,,,,,,0.02107,0.04101,0.05989,0.08349,,,,,,,0.02028,0.03956,0.0579,0.08106,,,,,,,0.02159,0.04203,0.06136,0.08547,,,,,,,0.02033,0.03964,0.05802,0.08122,,,,,,,0.02102,0.04096,0.05989,0.08367,,,,,,,0.02121,0.04128,0.06025,0.08396,,,,,,,0.02162,0.04203,0.06127,0.08526,,,,,,,0.0211,0.04104,0.05987,0.08334,,,,,,,0.00024,0.00034,0.00048,0.00075,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00075,,,,,,,0.00025,0.00034,0.00048,0.00075,,,,,,,0.03026,0.03099,0.03213,0.03435,,,,,,,0.03123,0.03196,0.0331,0.03532,,,,,,,0.03374,0.03447,0.03561,0.03782,,,,,,,0.02862,0.02934,0.03048,0.03269,,,,,,,0.03328,0.034,0.03514,0.03735,,,,,,,0.03071,0.03143,0.03256,0.03477,,,,,,,0.03068,0.03141,0.03255,0.03477,,,,,,,0.03201,0.03274,0.03389,0.03611,,,,,,,0.0316,0.03234,0.03349,0.03572,,,,,,,0.00549,0.00616,0.00721,0.00926,,,,,,,0.00561,0.00628,0.00733,0.00938,,,,,,,0.00593,0.0066,0.00765,0.00968,,,,,,,0.00526,0.00593,0.00697,0.00901,,,,,,,0.00587,0.00654,0.00758,0.00962,,,,,,,0.00553,0.00619,0.00724,0.00927,,,,,,,0.00554,0.00621,0.00726,0.0093,,,,,,,0.00571,0.00639,0.00744,0.00948,,,,,,,0.00567,0.00635,0.00741,0.00946,,,,,,,0.00162,0.00163,0.00165,0.00171,,,,,,,0.00164,0.00165,0.00167,0.00173,,,,,,,0.00166,0.00168,0.00169,0.00176,,,,,,,0.00162,0.00163,0.00165,0.00172,,,,,,,0.00168,0.00169,0.0017,0.00176,,,,,,,0.00165,0.00166,0.00168,0.00173,,,,,,,0.00166,0.00167,0.00169,0.00174,,,,,,,0.00166,0.00167,0.00169,0.00174,,,,,,,0.00163,0.00164,0.00166,0.00171,,,,,,,0.06469,0.08087,0.10421,0.13806,,,,,,,0.06018,0.07573,0.09811,0.13033,,,,,,,0.06349,0.07941,0.10237,0.13566,,,,,,,0.06743,0.08412,0.10824,0.14331,,,,,,,0.03963,0.05236,0.07039,0.09522,,,,,,,0.04822,0.06226,0.08229,0.11043,,,,,,,0.03964,0.05247,0.07064,0.09559,,,,,,,0.05013,0.06435,0.08467,0.11333,,,,,,,0.03741,0.0498,0.06731,0.09127, +Compact car,DSL,2035,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00112,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.06625,0.08388,0.10899,0.14208,,,,,,,0.06137,0.07831,0.10239,0.13371,,,,,,,0.06488,0.08222,0.10693,0.13944,,,,,,,0.06919,0.08738,0.11334,0.14767,,,,,,,0.03923,0.05305,0.07246,0.09577,,,,,,,0.04852,0.06378,0.08533,0.11217,,,,,,,0.03927,0.0532,0.07275,0.09616,,,,,,,0.05055,0.06601,0.08787,0.11532,,,,,,,0.03695,0.05039,0.06923,0.09163,,,,,,,0.64138,1.17879,1.61842,2.00267,,,,,,,0.65324,1.20178,1.64976,2.03863,,,,,,,0.63568,1.17558,1.6173,1.99997,,,,,,,0.67043,1.23003,1.68647,2.08323,,,,,,,0.68978,1.27296,1.74696,2.15032,,,,,,,0.68479,1.2603,1.72874,2.1313,,,,,,,0.7294,1.33813,1.83089,2.24861,,,,,,,0.68171,1.25493,1.72151,2.1219,,,,,,,0.66209,1.2166,1.66874,2.05964,,,,,,,198.39128,199.93868,202.28244,206.69439,,,,,,,200.47433,201.94983,204.19198,208.43955,,,,,,,203.5447,205.05006,207.3377,211.66977,,,,,,,198.51421,200.07392,202.44798,206.92264,,,,,,,205.34345,206.55515,208.42285,212.05687,,,,,,,201.65353,202.97141,204.99377,208.88161,,,,,,,203.50502,204.6935,206.53127,210.11597,,,,,,,203.07102,204.40004,206.43478,210.34267,,,,,,,199.65343,200.90546,202.81126,206.48042,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04114,0.06005,0.07962,,,,,,,0.02106,0.04103,0.05988,0.07941,,,,,,,0.02028,0.03957,0.05789,0.07704,,,,,,,0.02159,0.04204,0.06135,0.08134,,,,,,,0.02033,0.03966,0.05801,0.0772,,,,,,,0.02102,0.04097,0.05989,0.07958,,,,,,,0.02121,0.04129,0.06024,0.07986,,,,,,,0.02162,0.04205,0.06127,0.08105,,,,,,,0.0211,0.04106,0.05986,0.07926,,,,,,,0.00024,0.00034,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00047,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00025,0.00034,0.00048,0.00074,,,,,,,0.03026,0.03099,0.03213,0.03425,,,,,,,0.03123,0.03196,0.0331,0.03522,,,,,,,0.03374,0.03447,0.03561,0.03771,,,,,,,0.02862,0.02934,0.03048,0.03258,,,,,,,0.03328,0.034,0.03514,0.03725,,,,,,,0.03071,0.03143,0.03256,0.03467,,,,,,,0.03068,0.03141,0.03255,0.03466,,,,,,,0.03201,0.03274,0.03389,0.036,,,,,,,0.0316,0.03234,0.03349,0.03562,,,,,,,0.00549,0.00616,0.00721,0.00916,,,,,,,0.00561,0.00629,0.00733,0.00928,,,,,,,0.00593,0.0066,0.00765,0.00959,,,,,,,0.00526,0.00593,0.00697,0.00891,,,,,,,0.00587,0.00654,0.00758,0.00952,,,,,,,0.00553,0.00619,0.00724,0.00917,,,,,,,0.00554,0.00621,0.00726,0.0092,,,,,,,0.00571,0.00639,0.00744,0.00938,,,,,,,0.00567,0.00635,0.00741,0.00937,,,,,,,0.00162,0.00163,0.00165,0.00169,,,,,,,0.00164,0.00165,0.00167,0.0017,,,,,,,0.00166,0.00168,0.00169,0.00173,,,,,,,0.00162,0.00163,0.00165,0.00169,,,,,,,0.00168,0.00169,0.0017,0.00173,,,,,,,0.00165,0.00166,0.00167,0.00171,,,,,,,0.00166,0.00167,0.00169,0.00172,,,,,,,0.00166,0.00167,0.00169,0.00172,,,,,,,0.00163,0.00164,0.00166,0.00169,,,,,,,0.06448,0.08085,0.10419,0.13496,,,,,,,0.05998,0.07571,0.0981,0.12722,,,,,,,0.06327,0.07939,0.10235,0.13258,,,,,,,0.0672,0.0841,0.10822,0.14015,,,,,,,0.03951,0.05235,0.07038,0.09206,,,,,,,0.04807,0.06225,0.08228,0.10724,,,,,,,0.03952,0.05246,0.07062,0.0924,,,,,,,0.04997,0.06434,0.08465,0.11018,,,,,,,0.0373,0.04979,0.0673,0.08814 +Compact car,DSL,2040,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.06621,0.08382,0.10898,,,,,,,,0.06133,0.07826,0.10239,,,,,,,,0.06483,0.08216,0.10693,,,,,,,,0.06914,0.08733,0.11333,,,,,,,,0.0392,0.05301,0.07245,,,,,,,,0.04849,0.06374,0.08533,,,,,,,,0.03924,0.05317,0.07274,,,,,,,,0.05051,0.06596,0.08786,,,,,,,,0.03692,0.05035,0.06922,,,,,,,,0.64078,1.17853,1.61839,,,,,,,,0.65264,1.20153,1.64973,,,,,,,,0.63509,1.17532,1.61727,,,,,,,,0.66981,1.22977,1.68644,,,,,,,,0.68914,1.2727,1.74693,,,,,,,,0.68416,1.26003,1.72871,,,,,,,,0.72874,1.33787,1.83086,,,,,,,,0.68108,1.25467,1.72147,,,,,,,,0.66147,1.21634,1.6687,,,,,,,,198.38409,199.93079,202.28129,,,,,,,,200.46747,201.94231,204.19092,,,,,,,,203.53787,205.04234,207.33654,,,,,,,,198.50706,200.06584,202.44683,,,,,,,,205.33777,206.54885,208.42194,,,,,,,,201.64715,202.96455,204.9928,,,,,,,,203.49952,204.68694,206.53052,,,,,,,,203.06478,204.39303,206.43364,,,,,,,,199.64762,200.89888,202.81036,,,,,,,,0.00062,0.00064,0.00068,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00066,0.00068,0.00071,,,,,,,,0.0006,0.00063,0.00066,,,,,,,,0.00065,0.00068,0.00071,,,,,,,,0.00063,0.00065,0.00068,,,,,,,,0.00062,0.00065,0.00068,,,,,,,,0.00064,0.00066,0.0007,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,0.0211,0.04112,0.06004,,,,,,,,0.02105,0.041,0.05988,,,,,,,,0.02026,0.03955,0.05789,,,,,,,,0.02157,0.04202,0.06135,,,,,,,,0.02031,0.03963,0.05801,,,,,,,,0.021,0.04095,0.05988,,,,,,,,0.02119,0.04127,0.06024,,,,,,,,0.0216,0.04202,0.06126,,,,,,,,0.02108,0.04103,0.05986,,,,,,,,0.00024,0.00034,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00025,0.00034,0.00048,,,,,,,,0.03026,0.03099,0.03213,,,,,,,,0.03123,0.03196,0.0331,,,,,,,,0.03374,0.03447,0.0356,,,,,,,,0.02862,0.02934,0.03048,,,,,,,,0.03327,0.034,0.03514,,,,,,,,0.03071,0.03143,0.03256,,,,,,,,0.03068,0.03141,0.03255,,,,,,,,0.03201,0.03274,0.03389,,,,,,,,0.0316,0.03234,0.03349,,,,,,,,0.00549,0.00616,0.00721,,,,,,,,0.00561,0.00628,0.00733,,,,,,,,0.00593,0.0066,0.00765,,,,,,,,0.00526,0.00593,0.00697,,,,,,,,0.00587,0.00654,0.00758,,,,,,,,0.00553,0.00619,0.00724,,,,,,,,0.00554,0.00621,0.00726,,,,,,,,0.00571,0.00638,0.00744,,,,,,,,0.00567,0.00635,0.00741,,,,,,,,0.00162,0.00163,0.00165,,,,,,,,0.00164,0.00165,0.00167,,,,,,,,0.00166,0.00168,0.00169,,,,,,,,0.00162,0.00163,0.00165,,,,,,,,0.00168,0.00169,0.0017,,,,,,,,0.00165,0.00166,0.00167,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.00163,0.00164,0.00166,,,,,,,,0.06443,0.0808,0.10418,,,,,,,,0.05994,0.07567,0.09809,,,,,,,,0.06323,0.07934,0.10235,,,,,,,,0.06716,0.08405,0.10821,,,,,,,,0.03948,0.05231,0.07038,,,,,,,,0.04804,0.06221,0.08227,,,,,,,,0.03949,0.05243,0.07062,,,,,,,,0.04994,0.0643,0.08464,,,,,,,,0.03728,0.04976,0.0673 +Compact car,DSL,2045,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.06618,0.08382,,,,,,,,,0.0613,0.07826,,,,,,,,,0.0648,0.08216,,,,,,,,,0.06911,0.08732,,,,,,,,,0.03918,0.05301,,,,,,,,,0.04846,0.06374,,,,,,,,,0.03922,0.05316,,,,,,,,,0.05049,0.06596,,,,,,,,,0.0369,0.05035,,,,,,,,,0.64071,1.17849,,,,,,,,,0.65257,1.20148,,,,,,,,,0.63502,1.17528,,,,,,,,,0.66974,1.22972,,,,,,,,,0.68907,1.27265,,,,,,,,,0.68409,1.25999,,,,,,,,,0.72867,1.33782,,,,,,,,,0.68101,1.25463,,,,,,,,,0.66141,1.2163,,,,,,,,,198.37811,199.9306,,,,,,,,,200.46167,201.94212,,,,,,,,,203.53194,205.04223,,,,,,,,,198.50076,200.06567,,,,,,,,,205.33274,206.54864,,,,,,,,,201.64177,202.96431,,,,,,,,,203.49447,204.687,,,,,,,,,203.05936,204.39291,,,,,,,,,199.64263,200.89865,,,,,,,,,0.00062,0.00064,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00066,0.00068,,,,,,,,,0.0006,0.00063,,,,,,,,,0.00065,0.00068,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00062,0.00065,,,,,,,,,0.00064,0.00066,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,0.0211,0.04111,,,,,,,,,0.02104,0.041,,,,,,,,,0.02026,0.03955,,,,,,,,,0.02157,0.04202,,,,,,,,,0.0203,0.03963,,,,,,,,,0.02099,0.04095,,,,,,,,,0.02118,0.04126,,,,,,,,,0.0216,0.04202,,,,,,,,,0.02108,0.04103,,,,,,,,,0.00024,0.00034,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00025,0.00034,,,,,,,,,0.03026,0.03099,,,,,,,,,0.03123,0.03196,,,,,,,,,0.03374,0.03447,,,,,,,,,0.02862,0.02934,,,,,,,,,0.03327,0.034,,,,,,,,,0.03071,0.03143,,,,,,,,,0.03068,0.03141,,,,,,,,,0.03201,0.03274,,,,,,,,,0.0316,0.03234,,,,,,,,,0.00549,0.00616,,,,,,,,,0.00561,0.00628,,,,,,,,,0.00593,0.0066,,,,,,,,,0.00526,0.00593,,,,,,,,,0.00587,0.00654,,,,,,,,,0.00553,0.00619,,,,,,,,,0.00554,0.00621,,,,,,,,,0.00571,0.00638,,,,,,,,,0.00567,0.00635,,,,,,,,,0.00162,0.00163,,,,,,,,,0.00164,0.00165,,,,,,,,,0.00166,0.00168,,,,,,,,,0.00162,0.00163,,,,,,,,,0.00168,0.00169,,,,,,,,,0.00165,0.00166,,,,,,,,,0.00166,0.00167,,,,,,,,,0.00166,0.00167,,,,,,,,,0.00163,0.00164,,,,,,,,,0.0644,0.0808,,,,,,,,,0.05991,0.07566,,,,,,,,,0.0632,0.07934,,,,,,,,,0.06712,0.08405,,,,,,,,,0.03946,0.05231,,,,,,,,,0.04802,0.06221,,,,,,,,,0.03947,0.05242,,,,,,,,,0.04991,0.06429,,,,,,,,,0.03726,0.04976 +Compact car,DSL,2050,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.06618,,,,,,,,,,0.0613,,,,,,,,,,0.0648,,,,,,,,,,0.06911,,,,,,,,,,0.03918,,,,,,,,,,0.04846,,,,,,,,,,0.03922,,,,,,,,,,0.05049,,,,,,,,,,0.0369,,,,,,,,,,0.64071,,,,,,,,,,0.65257,,,,,,,,,,0.63502,,,,,,,,,,0.66975,,,,,,,,,,0.68908,,,,,,,,,,0.68409,,,,,,,,,,0.72868,,,,,,,,,,0.68102,,,,,,,,,,0.66141,,,,,,,,,,198.37808,,,,,,,,,,200.46167,,,,,,,,,,203.53191,,,,,,,,,,198.50078,,,,,,,,,,205.33273,,,,,,,,,,201.64176,,,,,,,,,,203.49449,,,,,,,,,,203.05929,,,,,,,,,,199.64275,,,,,,,,,,0.00062,,,,,,,,,,0.00063,,,,,,,,,,0.00066,,,,,,,,,,0.0006,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00062,,,,,,,,,,0.00064,,,,,,,,,,0.00063,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,0.0211,,,,,,,,,,0.02104,,,,,,,,,,0.02026,,,,,,,,,,0.02157,,,,,,,,,,0.0203,,,,,,,,,,0.02099,,,,,,,,,,0.02118,,,,,,,,,,0.0216,,,,,,,,,,0.02108,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00025,,,,,,,,,,0.03026,,,,,,,,,,0.03123,,,,,,,,,,0.03374,,,,,,,,,,0.02862,,,,,,,,,,0.03327,,,,,,,,,,0.03071,,,,,,,,,,0.03068,,,,,,,,,,0.03201,,,,,,,,,,0.0316,,,,,,,,,,0.00549,,,,,,,,,,0.00561,,,,,,,,,,0.00593,,,,,,,,,,0.00526,,,,,,,,,,0.00587,,,,,,,,,,0.00553,,,,,,,,,,0.00554,,,,,,,,,,0.00571,,,,,,,,,,0.00567,,,,,,,,,,0.00162,,,,,,,,,,0.00164,,,,,,,,,,0.00166,,,,,,,,,,0.00162,,,,,,,,,,0.00168,,,,,,,,,,0.00165,,,,,,,,,,0.00166,,,,,,,,,,0.00166,,,,,,,,,,0.00163,,,,,,,,,,0.0644,,,,,,,,,,0.05991,,,,,,,,,,0.0632,,,,,,,,,,0.06712,,,,,,,,,,0.03946,,,,,,,,,,0.04802,,,,,,,,,,0.03947,,,,,,,,,,0.04991,,,,,,,,,,0.03726 +Compact car,E10,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07059,,,,,,,,,,0.06061,,,,,,,,,,0.07766,,,,,,,,,,0.07986,,,,,,,,,,0.06493,,,,,,,,,,0.07201,,,,,,,,,,0.06666,,,,,,,,,,0.06387,,,,,,,,,,0.05378,,,,,,,,,,41.09405,,,,,,,,,,36.68685,,,,,,,,,,46.46014,,,,,,,,,,48.20712,,,,,,,,,,38.88807,,,,,,,,,,43.51966,,,,,,,,,,40.38021,,,,,,,,,,39.0815,,,,,,,,,,31.98119,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,2.9666,,,,,,,,,,2.81631,,,,,,,,,,3.10536,,,,,,,,,,3.2754,,,,,,,,,,3.04738,,,,,,,,,,3.19266,,,,,,,,,,3.04408,,,,,,,,,,3.21553,,,,,,,,,,2.67871,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.02114,,,,,,,,,,0.02411,,,,,,,,,,0.03431,,,,,,,,,,0.03133,,,,,,,,,,0.02788,,,,,,,,,,0.03072,,,,,,,,,,0.02781,,,,,,,,,,0.02753,,,,,,,,,,0.01276,,,,,,,,,,4.6564,,,,,,,,,,4.21937,,,,,,,,,,5.04455,,,,,,,,,,5.24797,,,,,,,,,,4.75701,,,,,,,,,,5.03074,,,,,,,,,,4.88323,,,,,,,,,,4.78463,,,,,,,,,,4.06399,,,,,,,,, +Compact car,E10,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.039,0.04546,,,,,,,,,0.03637,0.04065,,,,,,,,,0.04465,0.04989,,,,,,,,,0.04618,0.05361,,,,,,,,,0.03755,0.04304,,,,,,,,,0.04081,0.04726,,,,,,,,,0.03731,0.04266,,,,,,,,,0.03778,0.04314,,,,,,,,,0.02981,0.03292,,,,,,,,,15.07931,20.70615,,,,,,,,,14.44862,19.03873,,,,,,,,,17.83287,23.08281,,,,,,,,,18.82322,25.0077,,,,,,,,,15.19572,19.99361,,,,,,,,,16.64983,21.95229,,,,,,,,,15.55074,20.47747,,,,,,,,,15.43813,20.95542,,,,,,,,,11.86242,16.20717,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.23009,2.70688,,,,,,,,,2.16857,2.56214,,,,,,,,,2.38025,2.79543,,,,,,,,,2.48674,3.02468,,,,,,,,,2.31919,2.81805,,,,,,,,,2.43147,2.94491,,,,,,,,,2.33171,2.81285,,,,,,,,,2.47634,2.97953,,,,,,,,,2.06662,2.45342,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.0173,0.00877,,,,,,,,,0.01983,0.0089,,,,,,,,,0.02825,0.00924,,,,,,,,,0.02572,0.01543,,,,,,,,,0.02324,0.00909,,,,,,,,,0.02549,0.00902,,,,,,,,,0.02323,0.01229,,,,,,,,,0.02279,0.01403,,,,,,,,,0.01057,0.00506,,,,,,,,,2.00449,2.87682,,,,,,,,,1.95383,2.74589,,,,,,,,,2.26736,3.14145,,,,,,,,,2.36184,3.33126,,,,,,,,,2.15514,3.14869,,,,,,,,,2.2233,3.24476,,,,,,,,,2.15249,3.13118,,,,,,,,,2.21425,3.18559,,,,,,,,,1.79138,2.59347,,,,,,,, +Compact car,E10,2000,0.00446,0.00727,0.02121,,,,,,,,0.00385,0.00626,0.01818,,,,,,,,0.00432,0.00704,0.02055,,,,,,,,0.00488,0.00799,0.02359,,,,,,,,0.00215,0.00348,0.00996,,,,,,,,0.00258,0.00418,0.01212,,,,,,,,0.00206,0.00333,0.00949,,,,,,,,0.00297,0.00482,0.01394,,,,,,,,0.00204,0.00329,0.00926,,,,,,,,0.0178,0.01911,0.03078,,,,,,,,0.01674,0.01836,0.02775,,,,,,,,0.02112,0.02216,0.035,,,,,,,,0.02212,0.02368,0.03628,,,,,,,,0.01592,0.01849,0.02936,,,,,,,,0.01769,0.02001,0.03162,,,,,,,,0.01576,0.01826,0.02785,,,,,,,,0.01692,0.01896,0.02866,,,,,,,,0.01299,0.01512,0.02191,,,,,,,,7.18027,9.66695,14.76938,,,,,,,,6.9088,9.38321,13.8175,,,,,,,,8.61347,11.31945,16.99401,,,,,,,,9.21465,12.27159,17.97838,,,,,,,,6.39637,9.25206,14.12063,,,,,,,,7.18604,10.12088,15.28854,,,,,,,,6.4861,9.44421,13.93659,,,,,,,,6.94757,9.94053,14.61426,,,,,,,,5.20972,7.86305,11.35169,,,,,,,,376.89916,380.04698,390.21548,,,,,,,,380.22649,383.1569,392.65296,,,,,,,,386.71942,389.79323,399.70862,,,,,,,,377.04161,380.20786,390.42822,,,,,,,,387.04471,389.14643,396.12873,,,,,,,,380.64318,383.06092,390.92793,,,,,,,,383.03518,385.04841,391.71743,,,,,,,,383.69574,386.15466,394.21333,,,,,,,,376.31992,378.50164,385.74944,,,,,,,,0.02444,0.02719,0.04141,,,,,,,,0.02454,0.02728,0.04157,,,,,,,,0.02472,0.02744,0.04186,,,,,,,,0.02468,0.02748,0.0418,,,,,,,,0.02474,0.02748,0.04191,,,,,,,,0.02483,0.02762,0.04206,,,,,,,,0.02458,0.02734,0.04164,,,,,,,,0.02471,0.02746,0.04186,,,,,,,,0.02432,0.02703,0.0412,,,,,,,,0.05942,0.07773,0.0825,,,,,,,,0.05955,0.07791,0.08268,,,,,,,,0.05972,0.07812,0.08287,,,,,,,,0.05901,0.07719,0.08197,,,,,,,,0.05963,0.078,0.08275,,,,,,,,0.05921,0.07746,0.08223,,,,,,,,0.0594,0.07771,0.08247,,,,,,,,0.05963,0.07801,0.08277,,,,,,,,0.05976,0.07818,0.08294,,,,,,,,1.07385,1.45021,2.16624,,,,,,,,1.05342,1.44095,2.1148,,,,,,,,1.23284,1.60085,2.35507,,,,,,,,1.2796,1.70705,2.4498,,,,,,,,1.17365,1.5795,2.34518,,,,,,,,1.22983,1.63247,2.41065,,,,,,,,1.19206,1.606,2.27243,,,,,,,,1.24723,1.67166,2.39624,,,,,,,,1.03643,1.41412,1.98543,,,,,,,,0.00947,0.01481,0.03898,,,,,,,,0.00834,0.01302,0.03415,,,,,,,,0.00914,0.01429,0.03766,,,,,,,,0.00995,0.0156,0.04186,,,,,,,,0.00505,0.00783,0.0203,,,,,,,,0.00581,0.00904,0.0238,,,,,,,,0.00491,0.00762,0.01968,,,,,,,,0.00662,0.01032,0.02697,,,,,,,,0.00497,0.00771,0.01958,,,,,,,,0.0488,0.06032,0.11423,,,,,,,,0.04731,0.05732,0.10422,,,,,,,,0.05174,0.06271,0.11486,,,,,,,,0.04852,0.06083,0.11967,,,,,,,,0.04215,0.04798,0.07515,,,,,,,,0.04133,0.04812,0.08054,,,,,,,,0.03924,0.04494,0.07108,,,,,,,,0.04436,0.05226,0.08886,,,,,,,,0.04011,0.04585,0.07146,,,,,,,,0.02183,0.03202,0.07971,,,,,,,,0.01976,0.02863,0.07011,,,,,,,,0.02179,0.03149,0.07762,,,,,,,,0.0228,0.0337,0.08574,,,,,,,,0.01365,0.0188,0.04284,,,,,,,,0.01486,0.02087,0.04955,,,,,,,,0.01304,0.01808,0.04121,,,,,,,,0.01657,0.02355,0.05593,,,,,,,,0.01313,0.01821,0.04086,,,,,,,,0.01722,0.00841,0.00778,,,,,,,,0.01977,0.00856,0.00783,,,,,,,,0.02818,0.00888,0.00797,,,,,,,,0.02563,0.01484,0.00778,,,,,,,,0.02327,0.00882,0.00789,,,,,,,,0.0255,0.00872,0.00779,,,,,,,,0.02328,0.01193,0.00781,,,,,,,,0.02277,0.01356,0.00703,,,,,,,,0.01055,0.00488,0.0036,,,,,,,,0.79032,1.15496,2.22547,,,,,,,,0.75408,1.12158,2.11328,,,,,,,,0.90036,1.30278,2.46505,,,,,,,,0.96742,1.40112,2.58058,,,,,,,,0.70707,1.13681,2.34471,,,,,,,,0.76964,1.20933,2.42041,,,,,,,,0.7033,1.12189,2.2796,,,,,,,,0.79479,1.2148,2.38578,,,,,,,,0.59128,0.95412,1.92441,,,,,,, +Compact car,E10,2005,0.00162,0.00237,0.00385,0.01246,,,,,,,0.00146,0.00206,0.00333,0.01075,,,,,,,0.0018,0.00183,0.00294,0.01199,,,,,,,0.00192,0.00252,0.00411,0.01378,,,,,,,0.00094,0.00134,0.00216,0.00612,,,,,,,0.00113,0.00139,0.00224,0.00729,,,,,,,0.00089,0.00121,0.00195,0.0057,,,,,,,0.00122,0.00154,0.00248,0.00828,,,,,,,0.00076,0.00102,0.00162,0.00547,,,,,,,0.01749,0.01283,0.01269,0.01937,,,,,,,0.01586,0.01144,0.0118,0.01772,,,,,,,0.0181,0.01257,0.01294,0.0213,,,,,,,0.0193,0.01576,0.01482,0.02314,,,,,,,0.01054,0.00885,0.00992,0.01646,,,,,,,0.01251,0.00998,0.01089,0.0182,,,,,,,0.0102,0.0094,0.0098,0.01582,,,,,,,0.01342,0.01103,0.01065,0.01749,,,,,,,0.0081,0.0068,0.00743,0.01361,,,,,,,3.26887,4.3796,5.58768,9.3007,,,,,,,3.13261,4.25362,5.61227,8.96163,,,,,,,3.58479,5.15297,6.8677,10.81248,,,,,,,3.82532,5.8085,6.9469,11.62735,,,,,,,2.92286,4.3463,5.97297,9.23613,,,,,,,3.14325,4.68616,6.38162,9.91195,,,,,,,2.99075,4.78293,6.01972,9.26204,,,,,,,3.21055,5.15141,6.14005,9.69485,,,,,,,2.28533,4.00405,5.30012,8.02987,,,,,,,383.61442,385.38819,389.77412,396.47833,,,,,,,387.18708,388.82902,392.91571,398.96561,,,,,,,393.48041,395.21334,399.46747,405.9233,,,,,,,383.88261,385.64187,390.09117,396.91151,,,,,,,394.88049,396.01522,398.98771,402.60517,,,,,,,388.20643,389.53503,392.91936,397.42511,,,,,,,391.1224,392.19344,395.0643,398.40755,,,,,,,391.19,392.54205,395.99785,400.65679,,,,,,,383.91967,385.1314,388.19316,391.9956,,,,,,,0.00715,0.00771,0.00905,0.02207,,,,,,,0.00716,0.00772,0.00907,0.02212,,,,,,,0.00717,0.00773,0.00907,0.02218,,,,,,,0.00725,0.00782,0.0092,0.02237,,,,,,,0.00719,0.00775,0.00909,0.02222,,,,,,,0.00726,0.00783,0.0092,0.02243,,,,,,,0.00718,0.00774,0.0091,0.02218,,,,,,,0.0072,0.00776,0.00911,0.02225,,,,,,,0.00708,0.00763,0.00896,0.02189,,,,,,,0.02404,0.02736,0.03368,0.04793,,,,,,,0.02409,0.02742,0.03376,0.04803,,,,,,,0.02416,0.0275,0.03385,0.04815,,,,,,,0.02387,0.02717,0.03345,0.0476,,,,,,,0.02412,0.02746,0.0338,0.04808,,,,,,,0.02395,0.02727,0.03356,0.04777,,,,,,,0.02403,0.02735,0.03367,0.04791,,,,,,,0.02412,0.02746,0.0338,0.04809,,,,,,,0.02418,0.02752,0.03387,0.04819,,,,,,,0.2815,0.41372,0.54552,1.02948,,,,,,,0.27759,0.40358,0.54845,1.01505,,,,,,,0.31754,0.45366,0.60457,1.14976,,,,,,,0.31627,0.52847,0.63849,1.22238,,,,,,,0.28312,0.43349,0.58636,1.1354,,,,,,,0.30131,0.453,0.60671,1.17372,,,,,,,0.28577,0.46498,0.58114,1.1075,,,,,,,0.30956,0.49763,0.59853,1.1702,,,,,,,0.22359,0.33009,0.44123,0.99446,,,,,,,0.00357,0.00513,0.00768,0.02205,,,,,,,0.00331,0.0046,0.00689,0.01953,,,,,,,0.00388,0.00432,0.00641,0.0213,,,,,,,0.004,0.00529,0.00795,0.02351,,,,,,,0.00232,0.00326,0.00493,0.01227,,,,,,,0.00264,0.00337,0.00507,0.01401,,,,,,,0.00223,0.00304,0.00458,0.01167,,,,,,,0.00284,0.00366,0.00548,0.01563,,,,,,,0.00201,0.0027,0.00403,0.01144,,,,,,,0.03603,0.03931,0.045,0.07718,,,,,,,0.03642,0.03911,0.04416,0.07231,,,,,,,0.04025,0.04095,0.04555,0.07896,,,,,,,0.03547,0.03818,0.0441,0.07925,,,,,,,0.03629,0.03821,0.04179,0.05782,,,,,,,0.03446,0.0359,0.03956,0.05929,,,,,,,0.03348,0.03514,0.03841,0.05383,,,,,,,0.03618,0.03785,0.04177,0.06423,,,,,,,0.03386,0.03525,0.03807,0.05414,,,,,,,0.01053,0.01343,0.01846,0.04693,,,,,,,0.01013,0.01251,0.01698,0.04189,,,,,,,0.01162,0.01225,0.01631,0.04587,,,,,,,0.01126,0.01365,0.01889,0.04999,,,,,,,0.00847,0.01016,0.01333,0.02752,,,,,,,0.00879,0.01005,0.0133,0.03075,,,,,,,0.00795,0.00941,0.01231,0.02595,,,,,,,0.00933,0.01081,0.01427,0.03414,,,,,,,0.0076,0.00883,0.01132,0.02555,,,,,,,0.01752,0.00853,0.00777,0.00263,,,,,,,0.02013,0.00869,0.00783,0.00265,,,,,,,0.02868,0.00901,0.00796,0.0027,,,,,,,0.0261,0.01506,0.00777,0.00264,,,,,,,0.02374,0.00898,0.00795,0.00267,,,,,,,0.02601,0.00887,0.00783,0.00264,,,,,,,0.02377,0.01215,0.00787,0.00265,,,,,,,0.0232,0.01379,0.00706,0.00262,,,,,,,0.01076,0.00497,0.00362,0.00241,,,,,,,0.37985,0.41663,0.57941,1.38514,,,,,,,0.3454,0.37843,0.53987,1.31803,,,,,,,0.39284,0.40932,0.58562,1.50045,,,,,,,0.42144,0.50338,0.66487,1.61045,,,,,,,0.23395,0.29741,0.46553,1.35092,,,,,,,0.27374,0.32913,0.50295,1.41737,,,,,,,0.22478,0.30705,0.45448,1.31612,,,,,,,0.31522,0.38861,0.53941,1.44546,,,,,,,0.19002,0.25643,0.39842,1.18182,,,,,, +Compact car,E10,2010,,0.00116,0.00189,0.0031,0.00797,,,,,,,0.00102,0.00165,0.00275,0.00696,,,,,,,0.00089,0.00143,0.00295,0.00759,,,,,,,0.00124,0.00202,0.00339,0.00877,,,,,,,0.00074,0.00117,0.00183,0.00427,,,,,,,0.00075,0.00119,0.00205,0.00493,,,,,,,0.00067,0.00107,0.00166,0.00387,,,,,,,0.00079,0.00127,0.00221,0.00544,,,,,,,0.00056,0.00088,0.00154,0.00363,,,,,,,0.01447,0.01215,0.0104,0.01403,,,,,,,0.01256,0.01108,0.00955,0.01295,,,,,,,0.01335,0.01238,0.01077,0.01496,,,,,,,0.01716,0.01452,0.01243,0.01691,,,,,,,0.00887,0.00965,0.00843,0.01156,,,,,,,0.00971,0.01036,0.0091,0.01267,,,,,,,0.00926,0.00954,0.00833,0.01131,,,,,,,0.01139,0.01018,0.00921,0.01258,,,,,,,0.00725,0.0073,0.00781,0.01028,,,,,,,2.48341,3.81182,5.09585,7.07901,,,,,,,2.34814,3.77798,5.02469,6.93758,,,,,,,2.78107,4.54085,5.76238,8.17696,,,,,,,3.07668,4.58732,6.30228,8.88624,,,,,,,2.06758,3.80096,5.24678,7.22417,,,,,,,2.27568,4.08347,5.50331,7.67962,,,,,,,2.2653,3.84868,5.35225,7.33121,,,,,,,2.61412,4.01182,5.47259,7.56878,,,,,,,1.98774,3.45469,4.7501,6.44189,,,,,,,378.34318,381.0668,385.69408,394.85501,,,,,,,381.92659,384.43966,388.73293,397.32087,,,,,,,388.14052,390.76153,395.23755,404.18724,,,,,,,378.57539,381.32694,386.03125,395.35071,,,,,,,389.70767,391.44169,394.49287,400.93104,,,,,,,383.05742,385.07754,388.59252,395.82336,,,,,,,385.99822,387.65935,390.60209,396.83497,,,,,,,385.98142,388.05307,391.64271,399.01043,,,,,,,378.86597,380.6927,383.84057,390.36286,,,,,,,0.00688,0.00779,0.0093,0.01424,,,,,,,0.00689,0.0078,0.00932,0.01426,,,,,,,0.00691,0.00781,0.00931,0.01424,,,,,,,0.00697,0.0079,0.00945,0.01448,,,,,,,0.00692,0.00783,0.00934,0.01429,,,,,,,0.00699,0.00791,0.00946,0.01448,,,,,,,0.00691,0.00783,0.00935,0.01431,,,,,,,0.00693,0.00784,0.00936,0.01433,,,,,,,0.00682,0.00771,0.00921,0.01409,,,,,,,0.01689,0.01977,0.02529,0.03064,,,,,,,0.01693,0.01982,0.02535,0.0307,,,,,,,0.01698,0.01987,0.02542,0.03079,,,,,,,0.01678,0.01964,0.02511,0.03042,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01684,0.01971,0.0252,0.03053,,,,,,,0.01689,0.01977,0.02528,0.03062,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01699,0.01989,0.02543,0.03081,,,,,,,0.11365,0.18688,0.19795,0.45071,,,,,,,0.10842,0.18623,0.19575,0.44713,,,,,,,0.11319,0.20453,0.21161,0.50538,,,,,,,0.13095,0.21903,0.22831,0.54491,,,,,,,0.1018,0.19275,0.19798,0.48954,,,,,,,0.10773,0.20231,0.20843,0.5107,,,,,,,0.10985,0.19239,0.19874,0.48248,,,,,,,0.12283,0.20102,0.21646,0.51283,,,,,,,0.08256,0.14586,0.19175,0.44209,,,,,,,0.00208,0.00323,0.00504,0.01277,,,,,,,0.00195,0.00301,0.00472,0.0116,,,,,,,0.00178,0.00274,0.0049,0.01236,,,,,,,0.00214,0.00333,0.00529,0.01356,,,,,,,0.00172,0.00261,0.00388,0.00832,,,,,,,0.00168,0.00255,0.00404,0.00905,,,,,,,0.00162,0.00245,0.00363,0.00778,,,,,,,0.0017,0.0026,0.00419,0.00972,,,,,,,0.00143,0.00215,0.00346,0.00747,,,,,,,0.03298,0.0356,0.03976,0.05733,,,,,,,0.03362,0.036,0.03988,0.05539,,,,,,,0.03573,0.03785,0.04287,0.05977,,,,,,,0.03156,0.03428,0.03884,0.05778,,,,,,,0.03501,0.03692,0.03966,0.04942,,,,,,,0.03241,0.0343,0.03759,0.04872,,,,,,,0.0322,0.03396,0.03649,0.04556,,,,,,,0.03379,0.03574,0.03926,0.0516,,,,,,,0.03266,0.03418,0.037,0.04573,,,,,,,0.00783,0.01015,0.01383,0.02937,,,,,,,0.00766,0.00976,0.0132,0.02692,,,,,,,0.00762,0.0095,0.01394,0.02889,,,,,,,0.0078,0.0102,0.01424,0.03099,,,,,,,0.00734,0.00902,0.01145,0.02008,,,,,,,0.00696,0.00864,0.01155,0.0214,,,,,,,0.00682,0.00837,0.01061,0.01864,,,,,,,0.00722,0.00894,0.01206,0.02298,,,,,,,0.00654,0.00789,0.01038,0.01811,,,,,,,0.00837,0.00759,0.00256,0.00262,,,,,,,0.00853,0.00766,0.00258,0.00264,,,,,,,0.00885,0.00779,0.00263,0.00269,,,,,,,0.01479,0.0076,0.00256,0.00263,,,,,,,0.00883,0.0078,0.00262,0.00266,,,,,,,0.00872,0.00767,0.00258,0.00263,,,,,,,0.01196,0.00773,0.00259,0.00264,,,,,,,0.01356,0.00691,0.00256,0.00261,,,,,,,0.00488,0.00355,0.00236,0.0024,,,,,,,0.18098,0.25247,0.37083,0.8927,,,,,,,0.16025,0.23056,0.34556,0.85354,,,,,,,0.17144,0.25452,0.38245,0.94682,,,,,,,0.21414,0.29699,0.43445,1.03021,,,,,,,0.12265,0.20457,0.32885,0.85584,,,,,,,0.13123,0.2161,0.34393,0.89186,,,,,,,0.12541,0.20048,0.32273,0.83646,,,,,,,0.15757,0.23211,0.36726,0.92325,,,,,,,0.11055,0.17693,0.30936,0.78655,,,,, +Compact car,E10,2015,,,0.00096,0.0015,0.00256,0.00538,,,,,,,0.00087,0.00137,0.00234,0.00483,,,,,,,0.00076,0.00144,0.00246,0.00513,,,,,,,0.001,0.0016,0.00275,0.00582,,,,,,,0.00068,0.00102,0.0017,0.0033,,,,,,,0.00068,0.0011,0.00186,0.00368,,,,,,,0.00062,0.00093,0.00155,0.00299,,,,,,,0.0007,0.00116,0.00195,0.00392,,,,,,,0.00052,0.00087,0.00145,0.00278,,,,,,,0.01117,0.00844,0.00855,0.01056,,,,,,,0.01026,0.00785,0.0081,0.00995,,,,,,,0.01046,0.00874,0.00906,0.01124,,,,,,,0.01198,0.0099,0.01022,0.01269,,,,,,,0.00792,0.00704,0.00778,0.00944,,,,,,,0.00845,0.00758,0.00829,0.01014,,,,,,,0.0079,0.00697,0.00775,0.00937,,,,,,,0.00873,0.00765,0.00816,0.00999,,,,,,,0.00639,0.00663,0.00723,0.00866,,,,,,,1.84521,3.27085,4.44326,5.63916,,,,,,,1.83028,3.26131,4.47109,5.63973,,,,,,,2.05065,3.64192,5.11485,6.51889,,,,,,,2.05861,3.9482,5.55835,7.06961,,,,,,,1.70532,3.47292,4.95619,6.1746,,,,,,,1.81676,3.59,5.13403,6.44868,,,,,,,1.7484,3.55912,5.06815,6.31376,,,,,,,1.84788,3.59034,5.02826,6.31762,,,,,,,1.63266,3.21732,4.46806,5.5653,,,,,,,338.57847,341.09603,343.67549,354.78827,,,,,,,341.7079,344.00277,346.28136,356.96524,,,,,,,347.29401,349.69827,352.11188,363.1334,,,,,,,338.82115,341.3785,344.02646,355.26598,,,,,,,348.39569,349.87174,351.05478,360.07829,,,,,,,342.56263,344.34647,345.95334,355.55556,,,,,,,345.07041,346.47751,347.58297,356.41349,,,,,,,345.18202,347.01345,348.6733,358.41328,,,,,,,338.71426,340.28094,341.58215,350.58905,,,,,,,0.00442,0.00499,0.00575,0.00808,,,,,,,0.00445,0.00501,0.00577,0.0081,,,,,,,0.00449,0.00505,0.00581,0.00812,,,,,,,0.00445,0.00503,0.0058,0.00819,,,,,,,0.00449,0.00506,0.00581,0.00814,,,,,,,0.00449,0.00506,0.00584,0.00821,,,,,,,0.00445,0.00501,0.00578,0.00812,,,,,,,0.00448,0.00505,0.00581,0.00815,,,,,,,0.00441,0.00497,0.00572,0.00801,,,,,,,0.01689,0.01958,0.02529,0.02574,,,,,,,0.01693,0.01962,0.02535,0.0258,,,,,,,0.01698,0.01968,0.02542,0.02587,,,,,,,0.01678,0.01944,0.02511,0.02556,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01684,0.01951,0.0252,0.02565,,,,,,,0.01689,0.01957,0.02528,0.02573,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01699,0.01969,0.02543,0.02589,,,,,,,0.08822,0.11553,0.1702,0.2441,,,,,,,0.08727,0.11347,0.16786,0.24136,,,,,,,0.08786,0.12294,0.18091,0.26458,,,,,,,0.09291,0.13305,0.19586,0.28721,,,,,,,0.07778,0.1116,0.16753,0.24829,,,,,,,0.08284,0.11864,0.17726,0.262,,,,,,,0.07917,0.11207,0.16856,0.24831,,,,,,,0.08569,0.1242,0.18438,0.26916,,,,,,,0.06323,0.10911,0.16275,0.23593,,,,,,,0.00186,0.00279,0.00452,0.00864,,,,,,,0.00178,0.00269,0.00432,0.00812,,,,,,,0.00163,0.00275,0.00443,0.00841,,,,,,,0.00189,0.00288,0.00468,0.00903,,,,,,,0.00164,0.00237,0.00375,0.00663,,,,,,,0.00159,0.00242,0.00386,0.00695,,,,,,,0.00155,0.00224,0.00353,0.00621,,,,,,,0.00159,0.00247,0.00394,0.00718,,,,,,,0.00137,0.00214,0.00337,0.00591,,,,,,,0.03243,0.03449,0.0384,0.04795,,,,,,,0.03318,0.03517,0.03883,0.04754,,,,,,,0.03534,0.03784,0.04164,0.05083,,,,,,,0.0309,0.03311,0.03721,0.04741,,,,,,,0.03481,0.03635,0.03932,0.04567,,,,,,,0.03218,0.03398,0.0371,0.04401,,,,,,,0.03202,0.03346,0.03623,0.04208,,,,,,,0.03349,0.03538,0.0386,0.04591,,,,,,,0.03251,0.03413,0.03676,0.0423,,,,,,,0.00734,0.00917,0.01262,0.02108,,,,,,,0.00727,0.00903,0.01227,0.01997,,,,,,,0.00728,0.00949,0.01285,0.02098,,,,,,,0.00721,0.00917,0.0128,0.02182,,,,,,,0.00716,0.00852,0.01115,0.01677,,,,,,,0.00677,0.00835,0.01112,0.01723,,,,,,,0.00666,0.00793,0.01038,0.01556,,,,,,,0.00695,0.00862,0.01148,0.01794,,,,,,,0.00641,0.00785,0.01017,0.01507,,,,,,,0.00675,0.00227,0.00228,0.00236,,,,,,,0.00681,0.00229,0.0023,0.00237,,,,,,,0.00692,0.00232,0.00234,0.00241,,,,,,,0.00675,0.00227,0.00229,0.00236,,,,,,,0.00694,0.00232,0.00233,0.00239,,,,,,,0.00683,0.00229,0.0023,0.00236,,,,,,,0.00688,0.0023,0.00231,0.00237,,,,,,,0.00615,0.00227,0.00228,0.00235,,,,,,,0.00316,0.00209,0.0021,0.00215,,,,,,,0.13491,0.19169,0.31026,0.60939,,,,,,,0.12547,0.18062,0.29783,0.59149,,,,,,,0.13,0.19722,0.32609,0.64085,,,,,,,0.1474,0.22136,0.36153,0.69391,,,,,,,0.10555,0.17274,0.30547,0.61445,,,,,,,0.11038,0.18026,0.31545,0.62979,,,,,,,0.10534,0.17059,0.30145,0.60398,,,,,,,0.12204,0.19364,0.33031,0.65195,,,,,,,0.09553,0.16351,0.28839,0.58089,,,, +Compact car,E10,2020,,,,0.00083,0.00125,0.00192,0.00384,,,,,,,0.00076,0.00115,0.00176,0.00348,,,,,,,0.0008,0.00121,0.00184,0.00367,,,,,,,0.00088,0.00134,0.00205,0.00413,,,,,,,0.00058,0.00086,0.00129,0.00246,,,,,,,0.00063,0.00093,0.00141,0.00272,,,,,,,0.00054,0.00079,0.00118,0.00223,,,,,,,0.00065,0.00097,0.00147,0.00287,,,,,,,0.0005,0.00074,0.0011,0.00207,,,,,,,0.00839,0.00687,0.0064,0.00782,,,,,,,0.00753,0.0063,0.00595,0.00729,,,,,,,0.00791,0.00702,0.00665,0.00827,,,,,,,0.00905,0.00801,0.00756,0.00938,,,,,,,0.00524,0.00528,0.00529,0.00665,,,,,,,0.00583,0.00579,0.00573,0.00722,,,,,,,0.00516,0.00522,0.00524,0.00659,,,,,,,0.00639,0.00592,0.00574,0.00716,,,,,,,0.00515,0.00493,0.00487,0.00605,,,,,,,1.50957,2.23696,2.78755,3.69885,,,,,,,1.46807,2.20153,2.75941,3.6651,,,,,,,1.55379,2.45976,3.14908,4.25243,,,,,,,1.69786,2.69056,3.46083,4.64806,,,,,,,1.34445,2.2537,2.91441,3.92529,,,,,,,1.40929,2.35515,3.05701,4.1371,,,,,,,1.38749,2.31445,2.99057,4.02543,,,,,,,1.48071,2.37339,3.02562,4.06322,,,,,,,1.30738,2.09496,2.6454,3.53495,,,,,,,271.96867,273.86852,275.68648,290.82129,,,,,,,274.31603,276.03072,277.5877,292.40308,,,,,,,278.85543,280.6576,282.324,297.52236,,,,,,,272.22635,274.16033,276.03818,291.29223,,,,,,,279.09756,280.1349,280.74701,294.2357,,,,,,,274.66253,275.95649,276.93841,290.83456,,,,,,,276.41031,277.39344,277.94311,291.2138,,,,,,,276.77516,278.10662,279.13032,293.18636,,,,,,,271.38059,272.49515,273.21747,286.5266,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06275,0.09664,0.12938,0.17234,,,,,,,0.06114,0.09451,0.12691,0.16929,,,,,,,0.06183,0.10193,0.13608,0.18411,,,,,,,0.06638,0.11092,0.14819,0.2011,,,,,,,0.05194,0.09054,0.12274,0.16787,,,,,,,0.05643,0.09722,0.13136,0.17929,,,,,,,0.05298,0.09133,0.1241,0.16889,,,,,,,0.06121,0.1022,0.13744,0.18568,,,,,,,0.05387,0.08912,0.12031,0.16153,,,,,,,0.00163,0.00235,0.0034,0.0062,,,,,,,0.00158,0.00227,0.00326,0.00588,,,,,,,0.00161,0.00231,0.00334,0.00606,,,,,,,0.00167,0.00242,0.00351,0.00646,,,,,,,0.00142,0.00201,0.00284,0.00495,,,,,,,0.00144,0.00205,0.00292,0.00515,,,,,,,0.00134,0.0019,0.00268,0.00464,,,,,,,0.00146,0.00209,0.00298,0.00528,,,,,,,0.00129,0.00181,0.00256,0.00442,,,,,,,0.0319,0.03352,0.03591,0.04242,,,,,,,0.03273,0.03425,0.03649,0.04252,,,,,,,0.03532,0.03689,0.03921,0.0455,,,,,,,0.0304,0.03209,0.03459,0.04149,,,,,,,0.03434,0.0356,0.0374,0.04205,,,,,,,0.03187,0.03319,0.03509,0.04007,,,,,,,0.03158,0.03275,0.03443,0.03872,,,,,,,0.03321,0.03457,0.03653,0.04171,,,,,,,0.03235,0.03347,0.03506,0.03911,,,,,,,0.00688,0.0083,0.01042,0.01618,,,,,,,0.00687,0.00822,0.0102,0.01553,,,,,,,0.00726,0.00865,0.01071,0.01627,,,,,,,0.00678,0.00827,0.01048,0.01658,,,,,,,0.00674,0.00786,0.00945,0.01356,,,,,,,0.00649,0.00766,0.00934,0.01375,,,,,,,0.00627,0.00731,0.00879,0.01259,,,,,,,0.00671,0.00791,0.00964,0.01423,,,,,,,0.00627,0.00726,0.00866,0.01225,,,,,,,0.00181,0.00182,0.00183,0.00193,,,,,,,0.00182,0.00183,0.00184,0.00194,,,,,,,0.00185,0.00186,0.00188,0.00198,,,,,,,0.00181,0.00182,0.00183,0.00194,,,,,,,0.00185,0.00186,0.00187,0.00195,,,,,,,0.00182,0.00183,0.00184,0.00193,,,,,,,0.00184,0.00184,0.00185,0.00193,,,,,,,0.00181,0.00182,0.00183,0.00192,,,,,,,0.00167,0.00167,0.00168,0.00176,,,,,,,0.11385,0.15527,0.23291,0.47649,,,,,,,0.10455,0.14355,0.21904,0.45978,,,,,,,0.11026,0.15851,0.24245,0.50008,,,,,,,0.12432,0.1791,0.27058,0.53963,,,,,,,0.08326,0.1294,0.2126,0.473,,,,,,,0.08906,0.13763,0.22291,0.48616,,,,,,,0.08222,0.12606,0.20653,0.46113,,,,,,,0.10059,0.14965,0.23626,0.50349,,,,,,,0.0798,0.1214,0.19895,0.44666,,, +Compact car,E10,2025,,,,,0.00054,0.0008,0.00124,0.00256,,,,,,,0.0005,0.00073,0.00114,0.00232,,,,,,,0.00052,0.00077,0.00119,0.00245,,,,,,,0.00057,0.00085,0.00133,0.00274,,,,,,,0.00038,0.00055,0.00083,0.00165,,,,,,,0.00041,0.0006,0.00091,0.00183,,,,,,,0.00035,0.0005,0.00076,0.0015,,,,,,,0.00042,0.00062,0.00095,0.00192,,,,,,,0.00033,0.00047,0.00071,0.0014,,,,,,,0.0071,0.0054,0.00486,0.00596,,,,,,,0.00621,0.00481,0.00439,0.00542,,,,,,,0.00662,0.00536,0.0049,0.00614,,,,,,,0.0077,0.00621,0.00565,0.00705,,,,,,,0.00383,0.00353,0.00345,0.00445,,,,,,,0.00444,0.004,0.00385,0.00496,,,,,,,0.00372,0.00345,0.0034,0.00438,,,,,,,0.00501,0.00423,0.00398,0.00505,,,,,,,0.00371,0.00327,0.00317,0.00403,,,,,,,1.1285,1.61852,2.03503,2.67453,,,,,,,1.07088,1.56149,1.97838,2.60527,,,,,,,1.14227,1.74727,2.25674,3.01416,,,,,,,1.26434,1.93432,2.50599,3.32612,,,,,,,0.90333,1.49966,1.97387,2.64234,,,,,,,0.96878,1.59367,2.10019,2.82059,,,,,,,0.93269,1.54262,2.02871,2.71458,,,,,,,1.03817,1.62904,2.10469,2.80558,,,,,,,0.88425,1.40034,1.79759,2.39435,,,,,,,219.79055,221.42766,223.33293,236.96005,,,,,,,221.55546,223.03798,224.7172,238.04539,,,,,,,225.26595,226.82303,228.60383,242.28136,,,,,,,220.05063,221.7187,223.68094,237.42605,,,,,,,224.95387,225.86908,226.72345,238.81764,,,,,,,221.56775,222.69787,223.8734,236.35339,,,,,,,222.76989,223.6395,224.43786,236.33729,,,,,,,223.28135,224.44311,225.65654,238.27886,,,,,,,218.76119,219.73734,220.67422,232.60211,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04803,0.06983,0.09285,0.12606,,,,,,,0.0462,0.06754,0.09015,0.12275,,,,,,,0.04666,0.0721,0.0958,0.1325,,,,,,,0.0506,0.07914,0.1052,0.14565,,,,,,,0.03696,0.06108,0.08291,0.11658,,,,,,,0.04117,0.06691,0.0903,0.12637,,,,,,,0.03786,0.06195,0.08423,0.11769,,,,,,,0.04482,0.07073,0.09492,0.13151,,,,,,,0.03856,0.06075,0.08206,0.1132,,,,,,,0.00106,0.0015,0.00221,0.00416,,,,,,,0.00103,0.00145,0.00212,0.00395,,,,,,,0.00105,0.00148,0.00217,0.00406,,,,,,,0.00109,0.00154,0.00228,0.00431,,,,,,,0.00092,0.00128,0.00185,0.00334,,,,,,,0.00094,0.00131,0.0019,0.00347,,,,,,,0.00087,0.00121,0.00174,0.00313,,,,,,,0.00095,0.00133,0.00194,0.00356,,,,,,,0.00084,0.00116,0.00167,0.00299,,,,,,,0.03067,0.03166,0.03327,0.03777,,,,,,,0.03155,0.03248,0.03399,0.03818,,,,,,,0.03412,0.03507,0.03664,0.041,,,,,,,0.02913,0.03016,0.03184,0.03658,,,,,,,0.03332,0.03409,0.03531,0.03858,,,,,,,0.03082,0.03163,0.03291,0.03641,,,,,,,0.03061,0.03133,0.03247,0.03548,,,,,,,0.03214,0.03297,0.0343,0.03793,,,,,,,0.03143,0.03211,0.03319,0.03608,,,,,,,0.00579,0.00666,0.00809,0.01207,,,,,,,0.00583,0.00665,0.00799,0.01169,,,,,,,0.0062,0.00705,0.00843,0.01228,,,,,,,0.00565,0.00656,0.00805,0.01224,,,,,,,0.00584,0.00652,0.0076,0.01049,,,,,,,0.00556,0.00627,0.00741,0.01051,,,,,,,0.00541,0.00605,0.00705,0.00972,,,,,,,0.00576,0.00649,0.00767,0.01088,,,,,,,0.00545,0.00606,0.00701,0.00956,,,,,,,0.00146,0.00147,0.00148,0.00157,,,,,,,0.00147,0.00148,0.00149,0.00158,,,,,,,0.0015,0.00151,0.00152,0.00161,,,,,,,0.00146,0.00147,0.00149,0.00158,,,,,,,0.00149,0.0015,0.00151,0.00159,,,,,,,0.00147,0.00148,0.00149,0.00157,,,,,,,0.00148,0.00149,0.00149,0.00157,,,,,,,0.00146,0.00147,0.00148,0.00156,,,,,,,0.00134,0.00135,0.00135,0.00143,,,,,,,0.09761,0.1246,0.18328,0.38815,,,,,,,0.08762,0.11195,0.16796,0.36938,,,,,,,0.09366,0.12522,0.18865,0.40487,,,,,,,0.10684,0.14325,0.21242,0.43708,,,,,,,0.06346,0.09131,0.15154,0.3669,,,,,,,0.06993,0.09998,0.16236,0.38059,,,,,,,0.06181,0.08702,0.14416,0.35281,,,,,,,0.08068,0.11109,0.17476,0.39558,,,,,,,0.06016,0.08466,0.1405,0.34603,, +Compact car,E10,2030,,,,,,0.00054,0.0008,0.00123,0.00223,,,,,,,0.0005,0.00073,0.00113,0.00203,,,,,,,0.00052,0.00077,0.00118,0.00214,,,,,,,0.00057,0.00085,0.00131,0.00239,,,,,,,0.00038,0.00055,0.00083,0.00145,,,,,,,0.00041,0.00059,0.00091,0.0016,,,,,,,0.00035,0.0005,0.00076,0.00132,,,,,,,0.00042,0.00062,0.00095,0.00168,,,,,,,0.00033,0.00047,0.00071,0.00123,,,,,,,0.00665,0.00492,0.00441,0.00524,,,,,,,0.00575,0.00433,0.00394,0.0047,,,,,,,0.00617,0.00482,0.0044,0.00529,,,,,,,0.00722,0.00562,0.00511,0.00611,,,,,,,0.00335,0.00297,0.00292,0.00357,,,,,,,0.00396,0.00342,0.00331,0.00404,,,,,,,0.00324,0.00289,0.00286,0.00349,,,,,,,0.00454,0.0037,0.00348,0.0042,,,,,,,0.00323,0.00275,0.00268,0.00324,,,,,,,1.02822,1.46511,1.85482,2.33379,,,,,,,0.96681,1.4031,1.79041,2.25236,,,,,,,1.03467,1.57084,2.04202,2.5941,,,,,,,1.15058,1.74599,2.27395,2.87836,,,,,,,0.78898,1.31395,1.74456,2.20814,,,,,,,0.85424,1.4055,1.86701,2.37229,,,,,,,0.81453,1.35209,1.7936,2.27019,,,,,,,0.92264,1.44525,1.88172,2.38019,,,,,,,0.77383,1.22921,1.59353,2.008,,,,,,,202.37594,204.42196,207.59024,216.57276,,,,,,,203.95177,205.85843,208.81947,217.48287,,,,,,,207.3841,209.3687,212.4505,221.38071,,,,,,,202.63559,204.71112,207.93816,217.0329,,,,,,,206.90582,208.2932,210.47961,217.89872,,,,,,,203.86263,205.44197,207.91823,215.77045,,,,,,,204.89053,206.23087,208.35053,215.62512,,,,,,,205.4427,207.05521,209.57762,217.53359,,,,,,,201.21947,202.64801,204.87349,212.24266,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04246,0.06053,0.08157,0.10797,,,,,,,0.04054,0.05817,0.07879,0.10451,,,,,,,0.04085,0.06172,0.08334,0.11182,,,,,,,0.04451,0.06805,0.09184,0.12334,,,,,,,0.03129,0.05089,0.07065,0.09597,,,,,,,0.03536,0.05639,0.07763,0.10506,,,,,,,0.03214,0.05175,0.0719,0.09724,,,,,,,0.03858,0.05978,0.08181,0.10978,,,,,,,0.03277,0.05094,0.07035,0.09399,,,,,,,0.00106,0.0015,0.0022,0.00366,,,,,,,0.00103,0.00145,0.00211,0.00348,,,,,,,0.00105,0.00148,0.00216,0.00358,,,,,,,0.00109,0.00154,0.00227,0.0038,,,,,,,0.00092,0.00128,0.00184,0.00295,,,,,,,0.00094,0.00131,0.00189,0.00307,,,,,,,0.00087,0.00121,0.00173,0.00277,,,,,,,0.00095,0.00133,0.00193,0.00314,,,,,,,0.00084,0.00116,0.00167,0.00265,,,,,,,0.03067,0.03165,0.03324,0.03663,,,,,,,0.03155,0.03248,0.03397,0.03712,,,,,,,0.03411,0.03507,0.03661,0.03989,,,,,,,0.02913,0.03015,0.03181,0.03539,,,,,,,0.03331,0.03408,0.03529,0.03774,,,,,,,0.03082,0.03162,0.03289,0.03552,,,,,,,0.03061,0.03133,0.03244,0.03471,,,,,,,0.03214,0.03296,0.03428,0.037,,,,,,,0.03143,0.03211,0.03319,0.03533,,,,,,,0.00579,0.00666,0.00806,0.01106,,,,,,,0.00583,0.00665,0.00797,0.01076,,,,,,,0.00619,0.00704,0.00841,0.01131,,,,,,,0.00565,0.00655,0.00802,0.01119,,,,,,,0.00583,0.00651,0.00758,0.00975,,,,,,,0.00556,0.00627,0.0074,0.00972,,,,,,,0.00541,0.00604,0.00703,0.00904,,,,,,,0.00576,0.00649,0.00765,0.01006,,,,,,,0.00545,0.00606,0.00701,0.0089,,,,,,,0.00134,0.00136,0.00138,0.00144,,,,,,,0.00135,0.00137,0.00139,0.00144,,,,,,,0.00138,0.00139,0.00141,0.00147,,,,,,,0.00135,0.00136,0.00138,0.00144,,,,,,,0.00137,0.00138,0.0014,0.00145,,,,,,,0.00135,0.00136,0.00138,0.00143,,,,,,,0.00136,0.00137,0.00138,0.00143,,,,,,,0.00134,0.00135,0.00137,0.00142,,,,,,,0.00124,0.00124,0.00126,0.0013,,,,,,,0.09314,0.11685,0.17275,0.35226,,,,,,,0.08307,0.10412,0.15728,0.33269,,,,,,,0.08914,0.11675,0.17706,0.36549,,,,,,,0.10203,0.13401,0.19953,0.39542,,,,,,,0.05854,0.08228,0.1388,0.32397,,,,,,,0.06505,0.09087,0.14949,0.33755,,,,,,,0.05678,0.07792,0.13124,0.30945,,,,,,,0.07551,0.10197,0.16172,0.3532,,,,,,,0.05515,0.07593,0.12842,0.30524, +Compact car,E10,2035,,,,,,,0.00054,0.00079,0.00124,0.0022,,,,,,,0.0005,0.00073,0.00113,0.002,,,,,,,0.00052,0.00076,0.00119,0.0021,,,,,,,0.00057,0.00084,0.00132,0.00236,,,,,,,0.00038,0.00054,0.00083,0.00143,,,,,,,0.00041,0.00059,0.00091,0.00157,,,,,,,0.00035,0.0005,0.00076,0.0013,,,,,,,0.00042,0.00062,0.00095,0.00165,,,,,,,0.00033,0.00047,0.00071,0.00121,,,,,,,0.00662,0.00492,0.00441,0.00513,,,,,,,0.00573,0.00433,0.00394,0.00458,,,,,,,0.00614,0.00483,0.0044,0.00513,,,,,,,0.0072,0.00563,0.0051,0.00595,,,,,,,0.00334,0.00297,0.00292,0.00341,,,,,,,0.00395,0.00343,0.00331,0.00387,,,,,,,0.00323,0.00289,0.00286,0.00334,,,,,,,0.00452,0.0037,0.00348,0.00406,,,,,,,0.00321,0.00275,0.00268,0.0031,,,,,,,1.02688,1.46501,1.85448,2.28071,,,,,,,0.96573,1.40222,1.79058,2.19756,,,,,,,1.03349,1.56958,2.04243,2.52781,,,,,,,1.14909,1.74336,2.27516,2.80835,,,,,,,0.78864,1.31041,1.74643,2.14046,,,,,,,0.85372,1.4022,1.86871,2.30199,,,,,,,0.81418,1.34838,1.79555,2.20087,,,,,,,0.9219,1.44316,1.88262,2.31347,,,,,,,0.77354,1.22854,1.59364,1.94662,,,,,,,202.31712,204.41466,207.58447,213.41988,,,,,,,203.89648,205.85154,208.81373,214.30222,,,,,,,207.32639,209.36151,212.4449,218.14804,,,,,,,202.575,204.70376,207.93235,213.87923,,,,,,,206.86326,208.28791,210.47523,214.66023,,,,,,,203.81517,205.43598,207.91323,212.58504,,,,,,,204.84879,206.22545,208.34629,212.41826,,,,,,,205.39473,207.04914,209.57269,214.32318,,,,,,,201.1776,202.64302,204.86944,209.091,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.00459,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04235,0.06038,0.08165,0.10515,,,,,,,0.04044,0.05803,0.07886,0.10164,,,,,,,0.04075,0.06156,0.08342,0.10849,,,,,,,0.0444,0.06784,0.09195,0.11974,,,,,,,0.03123,0.05079,0.07071,0.09257,,,,,,,0.03529,0.05626,0.0777,0.10155,,,,,,,0.03207,0.05161,0.07197,0.09391,,,,,,,0.0385,0.05969,0.08186,0.10623,,,,,,,0.03272,0.05091,0.07036,0.09083,,,,,,,0.00106,0.00149,0.00221,0.00361,,,,,,,0.00102,0.00144,0.00212,0.00343,,,,,,,0.00104,0.00147,0.00217,0.00353,,,,,,,0.00108,0.00153,0.00227,0.00374,,,,,,,0.00092,0.00128,0.00185,0.00291,,,,,,,0.00094,0.00131,0.0019,0.00302,,,,,,,0.00087,0.00121,0.00174,0.00273,,,,,,,0.00095,0.00133,0.00193,0.00309,,,,,,,0.00084,0.00116,0.00167,0.0026,,,,,,,0.03066,0.03163,0.03325,0.0365,,,,,,,0.03154,0.03246,0.03398,0.037,,,,,,,0.03411,0.03505,0.03662,0.03977,,,,,,,0.02912,0.03013,0.03182,0.03526,,,,,,,0.03331,0.03407,0.0353,0.03765,,,,,,,0.03081,0.03161,0.0329,0.03541,,,,,,,0.0306,0.03131,0.03245,0.03463,,,,,,,0.03213,0.03295,0.03429,0.03689,,,,,,,0.03143,0.03211,0.03319,0.03523,,,,,,,0.00578,0.00664,0.00807,0.01095,,,,,,,0.00582,0.00663,0.00797,0.01065,,,,,,,0.00619,0.00702,0.00841,0.0112,,,,,,,0.00564,0.00653,0.00803,0.01108,,,,,,,0.00583,0.0065,0.00759,0.00967,,,,,,,0.00556,0.00626,0.0074,0.00963,,,,,,,0.00541,0.00603,0.00704,0.00896,,,,,,,0.00575,0.00648,0.00766,0.00996,,,,,,,0.00545,0.00605,0.00701,0.00882,,,,,,,0.00134,0.00136,0.00138,0.00142,,,,,,,0.00135,0.00137,0.00139,0.00142,,,,,,,0.00138,0.00139,0.00141,0.00145,,,,,,,0.00135,0.00136,0.00138,0.00142,,,,,,,0.00137,0.00138,0.0014,0.00143,,,,,,,0.00135,0.00136,0.00138,0.00141,,,,,,,0.00136,0.00137,0.00138,0.00141,,,,,,,0.00134,0.00135,0.00137,0.0014,,,,,,,0.00123,0.00124,0.00126,0.00128,,,,,,,0.09285,0.11686,0.17269,0.34809,,,,,,,0.08281,0.10413,0.15723,0.32835,,,,,,,0.08888,0.11679,0.17698,0.36071,,,,,,,0.10171,0.13388,0.19956,0.39041,,,,,,,0.05837,0.08212,0.13888,0.31869,,,,,,,0.06485,0.09074,0.14955,0.33222,,,,,,,0.0566,0.07772,0.13135,0.30405,,,,,,,0.07522,0.10149,0.16216,0.348,,,,,,,0.05499,0.07589,0.12841,0.30019 +Compact car,E10,2040,,,,,,,,0.00053,0.00079,0.00124,,,,,,,,0.00049,0.00073,0.00114,,,,,,,,0.00051,0.00076,0.00119,,,,,,,,0.00056,0.00084,0.00132,,,,,,,,0.00037,0.00055,0.00083,,,,,,,,0.0004,0.00059,0.00091,,,,,,,,0.00034,0.0005,0.00076,,,,,,,,0.00042,0.00062,0.00095,,,,,,,,0.00033,0.00047,0.00071,,,,,,,,0.00662,0.00492,0.00441,,,,,,,,0.00574,0.00433,0.00394,,,,,,,,0.00616,0.00482,0.00439,,,,,,,,0.00721,0.00562,0.0051,,,,,,,,0.00334,0.00297,0.00292,,,,,,,,0.00396,0.00342,0.00331,,,,,,,,0.00323,0.00289,0.00286,,,,,,,,0.00453,0.00369,0.00347,,,,,,,,0.00322,0.00275,0.00267,,,,,,,,1.02684,1.46443,1.85435,,,,,,,,0.96512,1.40207,1.79102,,,,,,,,1.03299,1.56952,2.04319,,,,,,,,1.14793,1.74384,2.2769,,,,,,,,0.78632,1.31166,1.74882,,,,,,,,0.85167,1.40328,1.87092,,,,,,,,0.81177,1.34969,1.79804,,,,,,,,0.92041,1.44362,1.88391,,,,,,,,0.77274,1.22846,1.59394,,,,,,,,202.30794,204.40446,207.58357,,,,,,,,203.88772,205.84183,208.81287,,,,,,,,207.31737,209.35159,212.44393,,,,,,,,202.56569,204.69324,207.93131,,,,,,,,206.85683,208.28076,210.47469,,,,,,,,203.80767,205.4279,207.91246,,,,,,,,204.84254,206.21834,208.34554,,,,,,,,205.38707,207.04092,209.57195,,,,,,,,201.17118,202.6359,204.86889,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04222,0.06042,0.08174,,,,,,,,0.04032,0.05806,0.07896,,,,,,,,0.04061,0.0616,0.08353,,,,,,,,0.04422,0.0679,0.09209,,,,,,,,0.03114,0.05081,0.07079,,,,,,,,0.03518,0.05629,0.07779,,,,,,,,0.03196,0.05165,0.07208,,,,,,,,0.0384,0.0597,0.08192,,,,,,,,0.03268,0.0509,0.07037,,,,,,,,0.00105,0.0015,0.00221,,,,,,,,0.00102,0.00144,0.00212,,,,,,,,0.00104,0.00147,0.00217,,,,,,,,0.00108,0.00154,0.00228,,,,,,,,0.00092,0.00128,0.00185,,,,,,,,0.00093,0.00131,0.0019,,,,,,,,0.00087,0.00121,0.00174,,,,,,,,0.00095,0.00133,0.00194,,,,,,,,0.00084,0.00116,0.00167,,,,,,,,0.03065,0.03164,0.03327,,,,,,,,0.03153,0.03247,0.03399,,,,,,,,0.03409,0.03506,0.03664,,,,,,,,0.0291,0.03014,0.03184,,,,,,,,0.0333,0.03408,0.03531,,,,,,,,0.0308,0.03161,0.03291,,,,,,,,0.03059,0.03132,0.03247,,,,,,,,0.03213,0.03296,0.03429,,,,,,,,0.03142,0.03211,0.03319,,,,,,,,0.00577,0.00665,0.00808,,,,,,,,0.00581,0.00664,0.00799,,,,,,,,0.00618,0.00703,0.00843,,,,,,,,0.00563,0.00654,0.00805,,,,,,,,0.00583,0.00651,0.0076,,,,,,,,0.00555,0.00626,0.00741,,,,,,,,0.0054,0.00603,0.00705,,,,,,,,0.00575,0.00648,0.00766,,,,,,,,0.00545,0.00605,0.00701,,,,,,,,0.00134,0.00136,0.00138,,,,,,,,0.00135,0.00137,0.00139,,,,,,,,0.00138,0.00139,0.00141,,,,,,,,0.00135,0.00136,0.00138,,,,,,,,0.00137,0.00138,0.0014,,,,,,,,0.00135,0.00136,0.00138,,,,,,,,0.00136,0.00137,0.00138,,,,,,,,0.00134,0.00135,0.00137,,,,,,,,0.00123,0.00124,0.00126,,,,,,,,0.09285,0.11678,0.17267,,,,,,,,0.0828,0.10406,0.15722,,,,,,,,0.08891,0.11669,0.17697,,,,,,,,0.10163,0.13385,0.19969,,,,,,,,0.05827,0.08215,0.13904,,,,,,,,0.06478,0.09075,0.14968,,,,,,,,0.05647,0.07776,0.13153,,,,,,,,0.07486,0.10179,0.16235,,,,,,,,0.05495,0.07587,0.12844 +Compact car,E10,2045,,,,,,,,,0.00053,0.0008,,,,,,,,,0.00049,0.00073,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00057,0.00085,,,,,,,,,0.00038,0.00055,,,,,,,,,0.0004,0.00059,,,,,,,,,0.00035,0.0005,,,,,,,,,0.00042,0.00062,,,,,,,,,0.00033,0.00047,,,,,,,,,0.00662,0.00491,,,,,,,,,0.00573,0.00432,,,,,,,,,0.00615,0.00481,,,,,,,,,0.0072,0.00561,,,,,,,,,0.00334,0.00297,,,,,,,,,0.00395,0.00342,,,,,,,,,0.00323,0.00289,,,,,,,,,0.00452,0.00369,,,,,,,,,0.00321,0.00275,,,,,,,,,1.02626,1.46429,,,,,,,,,0.96486,1.40237,,,,,,,,,1.03262,1.57,,,,,,,,,1.14778,1.74502,,,,,,,,,0.78701,1.31344,,,,,,,,,0.85217,1.4049,,,,,,,,,0.81249,1.35156,,,,,,,,,0.92061,1.44458,,,,,,,,,0.77272,1.22868,,,,,,,,,202.29977,204.40428,,,,,,,,,203.88009,205.84189,,,,,,,,,207.30962,209.35158,,,,,,,,,202.5573,204.69315,,,,,,,,,206.85099,208.28066,,,,,,,,,203.80131,205.42781,,,,,,,,,204.83695,206.2183,,,,,,,,,205.38059,207.04076,,,,,,,,,201.16547,202.63575,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04225,0.06049,,,,,,,,,0.04035,0.05814,,,,,,,,,0.04064,0.06169,,,,,,,,,0.04427,0.06801,,,,,,,,,0.03116,0.05086,,,,,,,,,0.03521,0.05636,,,,,,,,,0.03199,0.05173,,,,,,,,,0.03842,0.05975,,,,,,,,,0.03268,0.05091,,,,,,,,,0.00106,0.0015,,,,,,,,,0.00102,0.00145,,,,,,,,,0.00104,0.00148,,,,,,,,,0.00108,0.00154,,,,,,,,,0.00092,0.00128,,,,,,,,,0.00094,0.00131,,,,,,,,,0.00087,0.00121,,,,,,,,,0.00095,0.00133,,,,,,,,,0.00084,0.00116,,,,,,,,,0.03066,0.03165,,,,,,,,,0.03154,0.03247,,,,,,,,,0.0341,0.03507,,,,,,,,,0.02911,0.03015,,,,,,,,,0.03331,0.03408,,,,,,,,,0.03081,0.03162,,,,,,,,,0.0306,0.03132,,,,,,,,,0.03213,0.03296,,,,,,,,,0.03142,0.03211,,,,,,,,,0.00578,0.00665,,,,,,,,,0.00582,0.00665,,,,,,,,,0.00618,0.00704,,,,,,,,,0.00563,0.00655,,,,,,,,,0.00583,0.00651,,,,,,,,,0.00555,0.00627,,,,,,,,,0.0054,0.00604,,,,,,,,,0.00575,0.00649,,,,,,,,,0.00545,0.00606,,,,,,,,,0.00134,0.00136,,,,,,,,,0.00135,0.00137,,,,,,,,,0.00138,0.00139,,,,,,,,,0.00135,0.00136,,,,,,,,,0.00137,0.00138,,,,,,,,,0.00135,0.00136,,,,,,,,,0.00136,0.00137,,,,,,,,,0.00134,0.00135,,,,,,,,,0.00123,0.00124,,,,,,,,,0.09278,0.11675,,,,,,,,,0.08275,0.10404,,,,,,,,,0.08883,0.11666,,,,,,,,,0.10159,0.1339,,,,,,,,,0.05827,0.08223,,,,,,,,,0.06477,0.09081,,,,,,,,,0.05649,0.07787,,,,,,,,,0.07507,0.1019,,,,,,,,,0.05493,0.07588 +Compact car,E10,2050,,,,,,,,,,0.00054,,,,,,,,,,0.0005,,,,,,,,,,0.00052,,,,,,,,,,0.00057,,,,,,,,,,0.00038,,,,,,,,,,0.00041,,,,,,,,,,0.00035,,,,,,,,,,0.00042,,,,,,,,,,0.00033,,,,,,,,,,0.00661,,,,,,,,,,0.00573,,,,,,,,,,0.00614,,,,,,,,,,0.00719,,,,,,,,,,0.00334,,,,,,,,,,0.00395,,,,,,,,,,0.00323,,,,,,,,,,0.00452,,,,,,,,,,0.00321,,,,,,,,,,1.0259,,,,,,,,,,0.96483,,,,,,,,,,1.03248,,,,,,,,,,1.14795,,,,,,,,,,0.78793,,,,,,,,,,0.85293,,,,,,,,,,0.81346,,,,,,,,,,0.92104,,,,,,,,,,0.77284,,,,,,,,,,202.29983,,,,,,,,,,203.88015,,,,,,,,,,207.3096,,,,,,,,,,202.55725,,,,,,,,,,206.85097,,,,,,,,,,203.80119,,,,,,,,,,204.83681,,,,,,,,,,205.3805,,,,,,,,,,201.16542,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04231,,,,,,,,,,0.0404,,,,,,,,,,0.0407,,,,,,,,,,0.04435,,,,,,,,,,0.0312,,,,,,,,,,0.03525,,,,,,,,,,0.03204,,,,,,,,,,0.03846,,,,,,,,,,0.03269,,,,,,,,,,0.00106,,,,,,,,,,0.00102,,,,,,,,,,0.00104,,,,,,,,,,0.00108,,,,,,,,,,0.00092,,,,,,,,,,0.00094,,,,,,,,,,0.00087,,,,,,,,,,0.00095,,,,,,,,,,0.00084,,,,,,,,,,0.03066,,,,,,,,,,0.03154,,,,,,,,,,0.03411,,,,,,,,,,0.02912,,,,,,,,,,0.03331,,,,,,,,,,0.03081,,,,,,,,,,0.0306,,,,,,,,,,0.03213,,,,,,,,,,0.03143,,,,,,,,,,0.00578,,,,,,,,,,0.00582,,,,,,,,,,0.00619,,,,,,,,,,0.00564,,,,,,,,,,0.00583,,,,,,,,,,0.00556,,,,,,,,,,0.0054,,,,,,,,,,0.00575,,,,,,,,,,0.00545,,,,,,,,,,0.00134,,,,,,,,,,0.00135,,,,,,,,,,0.00138,,,,,,,,,,0.00135,,,,,,,,,,0.00137,,,,,,,,,,0.00135,,,,,,,,,,0.00136,,,,,,,,,,0.00134,,,,,,,,,,0.00123,,,,,,,,,,0.09275,,,,,,,,,,0.08273,,,,,,,,,,0.08878,,,,,,,,,,0.1016,,,,,,,,,,0.05831,,,,,,,,,,0.06479,,,,,,,,,,0.05655,,,,,,,,,,0.07515,,,,,,,,,,0.05494 +Compact car,E15,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07526,,,,,,,,,,0.06473,,,,,,,,,,0.0837,,,,,,,,,,0.08637,,,,,,,,,,0.06943,,,,,,,,,,0.07719,,,,,,,,,,0.07147,,,,,,,,,,0.06789,,,,,,,,,,0.05643,,,,,,,,,,38.75413,,,,,,,,,,34.5872,,,,,,,,,,43.81328,,,,,,,,,,45.50875,,,,,,,,,,36.63041,,,,,,,,,,41.00509,,,,,,,,,,38.06441,,,,,,,,,,36.83159,,,,,,,,,,30.10628,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,3.10269,,,,,,,,,,2.94127,,,,,,,,,,3.23061,,,,,,,,,,3.41282,,,,,,,,,,3.17568,,,,,,,,,,3.32336,,,,,,,,,,3.17346,,,,,,,,,,3.35141,,,,,,,,,,2.80875,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.02157,,,,,,,,,,0.02461,,,,,,,,,,0.03502,,,,,,,,,,0.03198,,,,,,,,,,0.02845,,,,,,,,,,0.03135,,,,,,,,,,0.02839,,,,,,,,,,0.0281,,,,,,,,,,0.01302,,,,,,,,,,4.79581,,,,,,,,,,4.35786,,,,,,,,,,5.22498,,,,,,,,,,5.4577,,,,,,,,,,4.89405,,,,,,,,,,5.18592,,,,,,,,,,5.03252,,,,,,,,,,4.91977,,,,,,,,,,4.14616,,,,,,,,, +Compact car,E15,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.04157,0.04885,,,,,,,,,0.03883,0.04354,,,,,,,,,0.04812,0.05248,,,,,,,,,0.04994,0.05738,,,,,,,,,0.04014,0.04624,,,,,,,,,0.04374,0.05028,,,,,,,,,0.03999,0.04578,,,,,,,,,0.04014,0.0453,,,,,,,,,0.03127,0.03414,,,,,,,,,14.18519,19.53846,,,,,,,,,13.58838,18.00916,,,,,,,,,16.77905,22.19802,,,,,,,,,17.72937,23.58247,,,,,,,,,14.27817,18.85506,,,,,,,,,15.65044,20.87293,,,,,,,,,14.62253,19.29152,,,,,,,,,14.51468,19.75992,,,,,,,,,11.14031,15.25823,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.33238,2.8498,,,,,,,,,2.2648,2.69489,,,,,,,,,2.47624,2.93329,,,,,,,,,2.59105,3.16899,,,,,,,,,2.4168,2.96123,,,,,,,,,2.53099,3.09153,,,,,,,,,2.4308,2.95262,,,,,,,,,2.58106,3.12099,,,,,,,,,2.16696,2.58118,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.01765,0.00895,,,,,,,,,0.02024,0.00908,,,,,,,,,0.02883,0.00943,,,,,,,,,0.02625,0.01575,,,,,,,,,0.02372,0.00928,,,,,,,,,0.02602,0.0092,,,,,,,,,0.0237,0.01255,,,,,,,,,0.02326,0.01431,,,,,,,,,0.01078,0.00516,,,,,,,,,2.06676,2.98575,,,,,,,,,2.01681,2.84631,,,,,,,,,2.34924,3.21213,,,,,,,,,2.45703,3.44696,,,,,,,,,2.21926,3.25783,,,,,,,,,2.29305,3.33907,,,,,,,,,2.21968,3.23669,,,,,,,,,2.27834,3.26574,,,,,,,,,1.8306,2.64667,,,,,,,, +Compact car,E15,2000,0.00445,0.00726,0.02112,,,,,,,,0.00384,0.00625,0.01811,,,,,,,,0.00431,0.00703,0.02047,,,,,,,,0.00487,0.00798,0.0235,,,,,,,,0.00215,0.00348,0.00992,,,,,,,,0.00257,0.00418,0.01261,,,,,,,,0.00206,0.00332,0.00945,,,,,,,,0.00296,0.00482,0.01389,,,,,,,,0.00204,0.00328,0.00922,,,,,,,,0.01896,0.02052,0.03298,,,,,,,,0.01786,0.01965,0.02964,,,,,,,,0.02274,0.02329,0.03673,,,,,,,,0.02391,0.02533,0.03874,,,,,,,,0.01699,0.01984,0.03145,,,,,,,,0.01893,0.02127,0.0339,,,,,,,,0.01686,0.01957,0.0298,,,,,,,,0.01796,0.01988,0.02999,,,,,,,,0.01361,0.01566,0.02266,,,,,,,,6.73755,9.1045,13.90876,,,,,,,,6.48024,8.85739,13.04968,,,,,,,,8.08269,10.86183,16.32129,,,,,,,,8.65746,11.5488,16.92516,,,,,,,,5.99268,8.7064,13.29109,,,,,,,,6.73541,9.60154,14.83085,,,,,,,,6.081,8.8791,13.10477,,,,,,,,6.51433,9.3538,13.75817,,,,,,,,4.87913,7.3873,10.67034,,,,,,,,376.9009,380.04536,390.17789,,,,,,,,380.22919,383.15664,392.61867,,,,,,,,386.72196,389.79259,399.67214,,,,,,,,377.0437,380.2069,390.39124,,,,,,,,387.0503,389.14988,396.10595,,,,,,,,380.64772,383.06314,392.40551,,,,,,,,383.04132,385.05237,391.69651,,,,,,,,383.70018,386.15671,394.18572,,,,,,,,376.32404,378.50339,385.72456,,,,,,,,0.02441,0.02715,0.04129,,,,,,,,0.02451,0.02724,0.04146,,,,,,,,0.02468,0.0274,0.04175,,,,,,,,0.02464,0.02744,0.04169,,,,,,,,0.02471,0.02743,0.04179,,,,,,,,0.02479,0.02758,0.04196,,,,,,,,0.02454,0.0273,0.04153,,,,,,,,0.02468,0.02742,0.04174,,,,,,,,0.02429,0.02699,0.04109,,,,,,,,0.05939,0.07773,0.08246,,,,,,,,0.05953,0.07791,0.08264,,,,,,,,0.05969,0.07812,0.08283,,,,,,,,0.05898,0.07719,0.08193,,,,,,,,0.0596,0.078,0.08271,,,,,,,,0.05918,0.07746,0.0822,,,,,,,,0.05937,0.07771,0.08244,,,,,,,,0.0596,0.07801,0.08273,,,,,,,,0.05973,0.07818,0.0829,,,,,,,,1.12182,1.52662,2.27744,,,,,,,,1.09871,1.51549,2.22205,,,,,,,,1.28081,1.67959,2.46843,,,,,,,,1.33146,1.78823,2.57182,,,,,,,,1.22134,1.65953,2.46172,,,,,,,,1.27841,1.71355,2.5332,,,,,,,,1.24098,1.68556,2.38681,,,,,,,,1.29826,1.75093,2.51422,,,,,,,,1.08526,1.48759,2.08759,,,,,,,,0.00945,0.01479,0.03884,,,,,,,,0.00832,0.01301,0.03403,,,,,,,,0.00912,0.01427,0.03752,,,,,,,,0.00993,0.01558,0.0417,,,,,,,,0.00504,0.00782,0.02022,,,,,,,,0.0058,0.00903,0.02461,,,,,,,,0.0049,0.00761,0.01961,,,,,,,,0.00661,0.0103,0.02687,,,,,,,,0.00496,0.0077,0.01951,,,,,,,,0.04876,0.06029,0.1139,,,,,,,,0.04727,0.05729,0.10393,,,,,,,,0.0517,0.06267,0.11454,,,,,,,,0.04848,0.06079,0.1193,,,,,,,,0.04212,0.04796,0.07498,,,,,,,,0.04131,0.0481,0.08248,,,,,,,,0.03922,0.04492,0.07092,,,,,,,,0.04433,0.05223,0.08863,,,,,,,,0.04009,0.04584,0.0713,,,,,,,,0.02179,0.03199,0.07941,,,,,,,,0.01973,0.0286,0.06985,,,,,,,,0.02175,0.03146,0.07734,,,,,,,,0.02276,0.03366,0.08542,,,,,,,,0.01363,0.01879,0.04269,,,,,,,,0.01484,0.02085,0.05117,,,,,,,,0.01302,0.01807,0.04107,,,,,,,,0.01654,0.02353,0.05573,,,,,,,,0.01312,0.0182,0.04073,,,,,,,,0.01757,0.00859,0.00794,,,,,,,,0.02018,0.00874,0.00799,,,,,,,,0.02876,0.00906,0.00813,,,,,,,,0.02616,0.01514,0.00794,,,,,,,,0.02375,0.009,0.00806,,,,,,,,0.02603,0.0089,0.00798,,,,,,,,0.02376,0.01218,0.00797,,,,,,,,0.02324,0.01384,0.00717,,,,,,,,0.01077,0.00499,0.00368,,,,,,,,0.82153,1.20412,2.3112,,,,,,,,0.78397,1.16464,2.19027,,,,,,,,0.94086,1.32841,2.51778,,,,,,,,1.01599,1.45475,2.67434,,,,,,,,0.73124,1.17738,2.42422,,,,,,,,0.79831,1.24329,2.59745,,,,,,,,0.72841,1.16013,2.35553,,,,,,,,0.82151,1.24109,2.44274,,,,,,,,0.60479,0.96472,1.95835,,,,,,, +Compact car,E15,2005,0.00166,0.00246,0.00399,0.0125,,,,,,,0.0015,0.00213,0.00345,0.01079,,,,,,,0.00185,0.00191,0.00306,0.01205,,,,,,,0.00199,0.0026,0.00423,0.01381,,,,,,,0.00097,0.00138,0.00223,0.00615,,,,,,,0.00116,0.00144,0.00234,0.00733,,,,,,,0.00092,0.00125,0.00201,0.00571,,,,,,,0.00126,0.00159,0.00255,0.00829,,,,,,,0.00078,0.00104,0.00166,0.00545,,,,,,,0.01743,0.01282,0.01269,0.0199,,,,,,,0.01583,0.01143,0.01179,0.01823,,,,,,,0.01816,0.01244,0.01283,0.02203,,,,,,,0.01939,0.01568,0.01476,0.02377,,,,,,,0.01053,0.00886,0.00994,0.01706,,,,,,,0.01252,0.00995,0.01105,0.01886,,,,,,,0.01021,0.00938,0.00978,0.01629,,,,,,,0.01339,0.01094,0.01056,0.01783,,,,,,,0.00803,0.00669,0.00731,0.01364,,,,,,,3.20315,4.27438,5.45316,8.8989,,,,,,,3.07383,4.15658,5.48416,8.58421,,,,,,,3.52881,5.04003,6.71632,10.34714,,,,,,,3.75274,5.70751,6.82315,11.14126,,,,,,,2.86973,4.25866,5.8533,8.85436,,,,,,,3.09101,4.59129,6.40035,9.4972,,,,,,,2.93115,4.68771,5.89803,8.88157,,,,,,,3.15922,5.0677,6.0405,9.31593,,,,,,,2.24492,3.94227,5.21926,7.74447,,,,,,,383.61346,385.3866,389.77241,396.4698,,,,,,,387.18589,388.82745,392.91381,398.96071,,,,,,,393.47964,395.21184,399.4659,405.91614,,,,,,,383.8817,385.64041,390.08954,396.90328,,,,,,,394.88007,396.01386,398.98689,402.61405,,,,,,,388.20564,389.53393,394.37923,397.4292,,,,,,,391.12159,392.19247,395.06349,398.41881,,,,,,,391.18938,392.54087,395.99653,400.65998,,,,,,,383.91948,385.12982,388.19211,392.00294,,,,,,,0.00715,0.00771,0.00905,0.02189,,,,,,,0.00716,0.00772,0.00907,0.02194,,,,,,,0.00717,0.00773,0.00906,0.02199,,,,,,,0.00725,0.00782,0.0092,0.02219,,,,,,,0.00719,0.00775,0.00909,0.02204,,,,,,,0.00726,0.00783,0.0092,0.02225,,,,,,,0.00718,0.00774,0.0091,0.022,,,,,,,0.0072,0.00776,0.00911,0.02207,,,,,,,0.00708,0.00763,0.00896,0.02171,,,,,,,0.02398,0.0273,0.03361,0.04766,,,,,,,0.02404,0.02736,0.03369,0.04776,,,,,,,0.0241,0.02744,0.03378,0.04788,,,,,,,0.02381,0.02711,0.03338,0.04734,,,,,,,0.02407,0.0274,0.03373,0.04781,,,,,,,0.0239,0.02721,0.0335,0.0475,,,,,,,0.02397,0.02729,0.0336,0.04764,,,,,,,0.02407,0.0274,0.03373,0.04782,,,,,,,0.02412,0.02746,0.03381,0.04792,,,,,,,0.28948,0.42599,0.56162,1.06758,,,,,,,0.28544,0.41558,0.56473,1.05292,,,,,,,0.32639,0.46735,0.62275,1.19357,,,,,,,0.32526,0.54412,0.65738,1.26785,,,,,,,0.29111,0.44668,0.60414,1.17825,,,,,,,0.3097,0.46669,0.62655,1.21817,,,,,,,0.29398,0.47915,0.59883,1.14933,,,,,,,0.31789,0.51205,0.6157,1.21244,,,,,,,0.22993,0.33938,0.45352,1.02955,,,,,,,0.0037,0.00533,0.00799,0.02217,,,,,,,0.00343,0.00479,0.00717,0.01965,,,,,,,0.00402,0.0045,0.00669,0.02144,,,,,,,0.00416,0.00549,0.00825,0.02363,,,,,,,0.00241,0.0034,0.00513,0.01238,,,,,,,0.00274,0.00351,0.00531,0.01412,,,,,,,0.00231,0.00316,0.00475,0.01177,,,,,,,0.00295,0.0038,0.00569,0.01572,,,,,,,0.00208,0.0028,0.00418,0.0115,,,,,,,0.03629,0.03973,0.04565,0.07741,,,,,,,0.03666,0.03949,0.04474,0.07254,,,,,,,0.04053,0.04132,0.04611,0.07925,,,,,,,0.03579,0.03858,0.0447,0.07945,,,,,,,0.03646,0.03847,0.04218,0.05803,,,,,,,0.03465,0.03617,0.04018,0.05951,,,,,,,0.03365,0.03537,0.03875,0.054,,,,,,,0.03639,0.03812,0.04217,0.06438,,,,,,,0.034,0.03544,0.03835,0.05422,,,,,,,0.01076,0.01381,0.01904,0.04713,,,,,,,0.01034,0.01285,0.01749,0.04209,,,,,,,0.01187,0.01257,0.01681,0.04612,,,,,,,0.01154,0.01401,0.01943,0.05017,,,,,,,0.00862,0.01039,0.01368,0.02769,,,,,,,0.00895,0.01029,0.01375,0.03094,,,,,,,0.0081,0.00962,0.01261,0.0261,,,,,,,0.00951,0.01105,0.01463,0.03428,,,,,,,0.00773,0.009,0.01158,0.02561,,,,,,,0.01788,0.00871,0.00793,0.00269,,,,,,,0.02055,0.00886,0.00799,0.0027,,,,,,,0.02927,0.00919,0.00812,0.00275,,,,,,,0.02664,0.01537,0.00793,0.00269,,,,,,,0.02423,0.00916,0.00812,0.00273,,,,,,,0.02654,0.00905,0.00802,0.00269,,,,,,,0.02426,0.0124,0.00804,0.0027,,,,,,,0.02368,0.01407,0.0072,0.00268,,,,,,,0.01098,0.00507,0.0037,0.00246,,,,,,,0.38481,0.4233,0.5894,1.41928,,,,,,,0.35068,0.38456,0.54923,1.3524,,,,,,,0.40083,0.4117,0.59052,1.54142,,,,,,,0.43041,0.50916,0.67405,1.64865,,,,,,,0.23917,0.30446,0.47679,1.38813,,,,,,,0.27972,0.3348,0.53473,1.45687,,,,,,,0.23017,0.31302,0.46391,1.34765,,,,,,,0.32144,0.39386,0.5478,1.47528,,,,,,,0.19301,0.25887,0.40277,1.19619,,,,,, +Compact car,E15,2010,,0.0012,0.00195,0.0032,0.00811,,,,,,,0.00106,0.00171,0.00284,0.00709,,,,,,,0.00092,0.00149,0.00306,0.00777,,,,,,,0.00127,0.00208,0.00349,0.00892,,,,,,,0.00076,0.00121,0.00189,0.00435,,,,,,,0.00077,0.00123,0.00212,0.00503,,,,,,,0.00069,0.0011,0.0017,0.00394,,,,,,,0.00082,0.00131,0.00227,0.00552,,,,,,,0.00057,0.0009,0.00156,0.00365,,,,,,,0.01447,0.01215,0.01036,0.01408,,,,,,,0.01255,0.01108,0.00952,0.01301,,,,,,,0.01321,0.01228,0.01076,0.01508,,,,,,,0.01707,0.01446,0.01237,0.01696,,,,,,,0.00888,0.00966,0.00842,0.01167,,,,,,,0.00968,0.01048,0.0091,0.01279,,,,,,,0.00924,0.00952,0.0083,0.01136,,,,,,,0.0113,0.0101,0.00912,0.01256,,,,,,,0.00714,0.00719,0.00765,0.01012,,,,,,,2.42027,3.71737,4.97826,6.86119,,,,,,,2.29124,3.68869,4.91155,6.72949,,,,,,,2.7153,4.43643,5.63382,7.92832,,,,,,,3.02006,4.50171,6.18223,8.64025,,,,,,,2.02191,3.72081,5.136,7.01864,,,,,,,2.2252,4.09775,5.38621,7.45751,,,,,,,2.21663,3.76745,5.23763,7.1217,,,,,,,2.56824,3.94275,5.38457,7.38735,,,,,,,1.95449,3.39834,4.69674,6.32184,,,,,,,378.31447,381.03636,385.66488,394.79629,,,,,,,381.89848,384.40947,388.70422,397.26495,,,,,,,388.11129,390.73102,395.20838,404.12884,,,,,,,378.54672,381.29637,386.00201,395.29109,,,,,,,389.67976,391.41272,394.46659,400.88563,,,,,,,383.02943,386.45795,388.56578,395.77439,,,,,,,385.97086,387.63077,390.57628,396.79116,,,,,,,385.95346,388.02362,391.61544,398.96077,,,,,,,378.83874,380.66413,383.81442,390.31801,,,,,,,0.00688,0.00778,0.0093,0.01417,,,,,,,0.00689,0.0078,0.00931,0.01419,,,,,,,0.0069,0.00781,0.00931,0.01417,,,,,,,0.00697,0.0079,0.00945,0.01441,,,,,,,0.00692,0.00783,0.00934,0.01422,,,,,,,0.00699,0.00791,0.00945,0.01441,,,,,,,0.00691,0.00782,0.00935,0.01424,,,,,,,0.00693,0.00784,0.00936,0.01426,,,,,,,0.00682,0.00771,0.00921,0.01402,,,,,,,0.01689,0.01977,0.02529,0.03052,,,,,,,0.01693,0.01981,0.02535,0.03059,,,,,,,0.01698,0.01986,0.02542,0.03067,,,,,,,0.01678,0.01963,0.02511,0.03031,,,,,,,0.01695,0.01983,0.02538,0.03062,,,,,,,0.01684,0.0197,0.0252,0.03041,,,,,,,0.01689,0.01976,0.02528,0.03051,,,,,,,0.01695,0.01984,0.02538,0.03063,,,,,,,0.01699,0.01988,0.02543,0.03069,,,,,,,0.11676,0.19201,0.20321,0.46294,,,,,,,0.11142,0.19137,0.20106,0.45944,,,,,,,0.11635,0.21027,0.21753,0.51963,,,,,,,0.13452,0.22509,0.23445,0.5597,,,,,,,0.1047,0.19822,0.20369,0.50343,,,,,,,0.11076,0.20876,0.21438,0.52516,,,,,,,0.11298,0.19788,0.20439,0.4961,,,,,,,0.12612,0.20641,0.22199,0.52609,,,,,,,0.08473,0.14966,0.19659,0.45327,,,,,,,0.00216,0.00336,0.00522,0.01305,,,,,,,0.00203,0.00313,0.0049,0.01187,,,,,,,0.00186,0.00285,0.0051,0.01267,,,,,,,0.00221,0.00344,0.00548,0.01384,,,,,,,0.00179,0.00271,0.00403,0.00854,,,,,,,0.00175,0.00265,0.0042,0.00929,,,,,,,0.00168,0.00254,0.00377,0.00798,,,,,,,0.00177,0.0027,0.00433,0.00993,,,,,,,0.00148,0.00223,0.00357,0.00762,,,,,,,0.03316,0.03588,0.04016,0.05793,,,,,,,0.03378,0.03625,0.04025,0.05596,,,,,,,0.03588,0.03809,0.04331,0.06046,,,,,,,0.03172,0.03452,0.03924,0.05837,,,,,,,0.03515,0.03713,0.03996,0.04986,,,,,,,0.03254,0.03461,0.03792,0.04921,,,,,,,0.03232,0.03414,0.03677,0.04596,,,,,,,0.03392,0.03592,0.03956,0.05202,,,,,,,0.03276,0.03433,0.0372,0.04598,,,,,,,0.00799,0.01039,0.01418,0.0299,,,,,,,0.0078,0.00999,0.01353,0.02742,,,,,,,0.00776,0.00972,0.01433,0.0295,,,,,,,0.00794,0.01042,0.01459,0.03152,,,,,,,0.00746,0.00921,0.01172,0.02048,,,,,,,0.00709,0.00882,0.01184,0.02183,,,,,,,0.00693,0.00854,0.01086,0.01899,,,,,,,0.00733,0.00911,0.01232,0.02334,,,,,,,0.00663,0.00802,0.01056,0.01833,,,,,,,0.00855,0.00775,0.00261,0.00268,,,,,,,0.00871,0.00782,0.00264,0.00269,,,,,,,0.00903,0.00795,0.00268,0.00274,,,,,,,0.01509,0.00776,0.00262,0.00268,,,,,,,0.00901,0.00796,0.00267,0.00272,,,,,,,0.0089,0.00786,0.00263,0.00268,,,,,,,0.01221,0.00788,0.00265,0.00269,,,,,,,0.01384,0.00705,0.00261,0.00266,,,,,,,0.00498,0.00362,0.0024,0.00245,,,,,,,0.18422,0.25677,0.37707,0.91172,,,,,,,0.16324,0.23458,0.35204,0.87297,,,,,,,0.1729,0.25675,0.38993,0.96899,,,,,,,0.217,0.30101,0.44142,1.05096,,,,,,,0.12597,0.20948,0.33708,0.87854,,,,,,,0.13398,0.23039,0.35215,0.91497,,,,,,,0.12837,0.20468,0.32982,0.85637,,,,,,,0.16015,0.2357,0.37404,0.94232,,,,,,,0.11219,0.17892,0.31274,0.79823,,,,, +Compact car,E15,2015,,,0.00099,0.00155,0.00265,0.00554,,,,,,,0.0009,0.00142,0.00242,0.00497,,,,,,,0.00079,0.0015,0.00256,0.00532,,,,,,,0.00103,0.00166,0.00283,0.00598,,,,,,,0.0007,0.00105,0.00175,0.0034,,,,,,,0.0007,0.00115,0.00193,0.0038,,,,,,,0.00064,0.00096,0.0016,0.00307,,,,,,,0.00072,0.00119,0.002,0.00401,,,,,,,0.00053,0.00089,0.00147,0.00281,,,,,,,0.01117,0.00842,0.00853,0.01052,,,,,,,0.01026,0.00784,0.00809,0.00993,,,,,,,0.01038,0.00875,0.00907,0.01124,,,,,,,0.01194,0.00987,0.01019,0.01264,,,,,,,0.00793,0.00705,0.00779,0.00944,,,,,,,0.00857,0.00759,0.0083,0.01014,,,,,,,0.00789,0.00696,0.00773,0.00934,,,,,,,0.00867,0.00759,0.0081,0.0099,,,,,,,0.0063,0.0065,0.00708,0.00848,,,,,,,1.804,3.20148,4.34362,5.50212,,,,,,,1.79132,3.1938,4.37315,5.50632,,,,,,,2.00869,3.56752,5.00436,6.36528,,,,,,,2.02534,3.87885,5.45359,6.92326,,,,,,,1.67314,3.40503,4.85328,6.03762,,,,,,,1.82634,3.51951,5.02709,6.30418,,,,,,,1.71534,3.48836,4.96074,6.17056,,,,,,,1.82008,3.53642,4.94764,6.20982,,,,,,,1.60911,3.18281,4.41711,5.50043,,,,,,,338.80339,341.30043,343.85056,354.80234,,,,,,,341.93464,344.20868,346.45659,356.97999,,,,,,,347.52458,349.90756,352.29061,363.14818,,,,,,,339.04625,341.58311,344.20128,355.27976,,,,,,,348.62633,350.07938,351.23012,360.09517,,,,,,,344.04239,344.55172,346.12705,355.57142,,,,,,,345.29903,346.68302,347.75623,356.43062,,,,,,,345.41102,347.22009,348.84856,358.42916,,,,,,,338.93875,340.48354,341.7538,350.60517,,,,,,,0.00442,0.00499,0.00575,0.00807,,,,,,,0.00445,0.00501,0.00577,0.00809,,,,,,,0.00449,0.00505,0.00581,0.00811,,,,,,,0.00445,0.00503,0.00581,0.00818,,,,,,,0.0045,0.00506,0.00582,0.00812,,,,,,,0.0045,0.00507,0.00584,0.0082,,,,,,,0.00445,0.00502,0.00578,0.00811,,,,,,,0.00448,0.00505,0.00581,0.00813,,,,,,,0.00441,0.00497,0.00572,0.008,,,,,,,0.01689,0.01959,0.02529,0.02573,,,,,,,0.01693,0.01963,0.02535,0.02579,,,,,,,0.01698,0.01969,0.02542,0.02586,,,,,,,0.01678,0.01945,0.02511,0.02555,,,,,,,0.01695,0.01966,0.02538,0.02582,,,,,,,0.01684,0.01952,0.0252,0.02564,,,,,,,0.01689,0.01958,0.02528,0.02572,,,,,,,0.01695,0.01966,0.02538,0.02582,,,,,,,0.01699,0.0197,0.02543,0.02588,,,,,,,0.09082,0.11896,0.17492,0.25037,,,,,,,0.08987,0.11691,0.17262,0.24769,,,,,,,0.09054,0.12679,0.1862,0.2717,,,,,,,0.0957,0.13708,0.20138,0.2946,,,,,,,0.08022,0.11522,0.17258,0.25515,,,,,,,0.08595,0.12245,0.18255,0.26917,,,,,,,0.08166,0.11567,0.17357,0.25509,,,,,,,0.08822,0.12782,0.18932,0.27568,,,,,,,0.06505,0.11227,0.16707,0.24159,,,,,,,0.00194,0.00291,0.0047,0.00894,,,,,,,0.00186,0.0028,0.00449,0.0084,,,,,,,0.0017,0.00287,0.00462,0.00874,,,,,,,0.00196,0.00299,0.00485,0.00933,,,,,,,0.0017,0.00247,0.0039,0.00687,,,,,,,0.00165,0.00253,0.00402,0.00721,,,,,,,0.00161,0.00233,0.00367,0.00643,,,,,,,0.00165,0.00256,0.00408,0.00742,,,,,,,0.00142,0.00221,0.00348,0.00608,,,,,,,0.03259,0.03473,0.03876,0.04859,,,,,,,0.03334,0.0354,0.03919,0.04815,,,,,,,0.03549,0.0381,0.04204,0.05155,,,,,,,0.03105,0.03335,0.03757,0.04805,,,,,,,0.03495,0.03655,0.03962,0.04617,,,,,,,0.03243,0.03418,0.03742,0.04455,,,,,,,0.03214,0.03364,0.0365,0.04253,,,,,,,0.03361,0.03557,0.03889,0.04638,,,,,,,0.03262,0.03428,0.03697,0.04261,,,,,,,0.00749,0.00938,0.01295,0.02164,,,,,,,0.00741,0.00923,0.01258,0.02051,,,,,,,0.00741,0.00972,0.01321,0.02162,,,,,,,0.00734,0.00938,0.01312,0.02239,,,,,,,0.00728,0.00869,0.01141,0.0172,,,,,,,0.00689,0.00854,0.0114,0.01771,,,,,,,0.00677,0.00809,0.01062,0.01595,,,,,,,0.00706,0.00879,0.01173,0.01835,,,,,,,0.0065,0.00797,0.01035,0.01534,,,,,,,0.00689,0.00231,0.00233,0.00241,,,,,,,0.00695,0.00233,0.00235,0.00242,,,,,,,0.00707,0.00237,0.00239,0.00246,,,,,,,0.0069,0.00232,0.00233,0.00241,,,,,,,0.00709,0.00237,0.00238,0.00244,,,,,,,0.007,0.00234,0.00235,0.00241,,,,,,,0.00702,0.00235,0.00236,0.00242,,,,,,,0.00628,0.00232,0.00233,0.00239,,,,,,,0.00323,0.00213,0.00214,0.0022,,,,,,,0.13792,0.19546,0.31648,0.62368,,,,,,,0.12835,0.18451,0.30427,0.60619,,,,,,,0.13189,0.20166,0.33345,0.657,,,,,,,0.15025,0.22558,0.36851,0.70941,,,,,,,0.10878,0.17758,0.31365,0.63234,,,,,,,0.11921,0.18508,0.32361,0.64755,,,,,,,0.10829,0.17485,0.30861,0.6202,,,,,,,0.12472,0.19777,0.33721,0.66783,,,,,,,0.09732,0.16568,0.2921,0.59213,,,, +Compact car,E15,2020,,,,0.00085,0.00129,0.00198,0.00397,,,,,,,0.00079,0.00119,0.00181,0.0036,,,,,,,0.00083,0.00125,0.00191,0.00382,,,,,,,0.00091,0.00138,0.00211,0.00426,,,,,,,0.0006,0.00089,0.00133,0.00254,,,,,,,0.00065,0.00097,0.00145,0.00281,,,,,,,0.00055,0.00082,0.00121,0.0023,,,,,,,0.00067,0.001,0.00151,0.00294,,,,,,,0.00051,0.00075,0.00111,0.0021,,,,,,,0.00835,0.00685,0.00638,0.0078,,,,,,,0.00751,0.00629,0.00594,0.00728,,,,,,,0.0079,0.00702,0.00665,0.00827,,,,,,,0.009,0.00797,0.00753,0.00934,,,,,,,0.00523,0.00528,0.00529,0.00665,,,,,,,0.00583,0.00579,0.00574,0.00723,,,,,,,0.00513,0.0052,0.00523,0.00657,,,,,,,0.00633,0.00587,0.00569,0.00711,,,,,,,0.00505,0.00483,0.00478,0.00593,,,,,,,1.47507,2.18535,2.72235,3.61207,,,,,,,1.43521,2.15191,2.69644,3.58142,,,,,,,1.51908,2.40483,3.07785,4.15643,,,,,,,1.66567,2.63842,3.39252,4.55715,,,,,,,1.31593,2.20588,2.85206,3.84211,,,,,,,1.37913,2.30482,2.99108,4.04861,,,,,,,1.35776,2.26451,2.92528,3.93788,,,,,,,1.45666,2.33428,2.97559,3.99875,,,,,,,1.29202,2.07013,2.61462,3.49828,,,,,,,271.96044,273.86134,275.68014,290.8604,,,,,,,274.30751,276.02333,277.58098,292.44204,,,,,,,278.84698,280.65015,282.31755,297.56201,,,,,,,272.21821,274.15305,276.03176,291.33138,,,,,,,279.08912,280.12761,280.74049,294.27474,,,,,,,274.65408,275.949,276.93179,290.87296,,,,,,,276.40167,277.38592,277.93652,291.25227,,,,,,,276.7667,278.09928,279.12396,293.2253,,,,,,,271.37236,272.48826,273.21136,286.56473,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06444,0.09931,0.13295,0.17702,,,,,,,0.06284,0.09718,0.13049,0.17399,,,,,,,0.06361,0.10491,0.14005,0.1894,,,,,,,0.06822,0.11405,0.15237,0.20667,,,,,,,0.05349,0.09328,0.12644,0.17286,,,,,,,0.0581,0.10014,0.13528,0.18458,,,,,,,0.05455,0.09407,0.1278,0.17385,,,,,,,0.06285,0.10498,0.14115,0.19054,,,,,,,0.05531,0.09153,0.12354,0.16573,,,,,,,0.0017,0.00244,0.00353,0.00644,,,,,,,0.00164,0.00236,0.00339,0.00611,,,,,,,0.00168,0.00241,0.00348,0.00632,,,,,,,0.00174,0.00251,0.00364,0.00669,,,,,,,0.00148,0.00209,0.00295,0.00514,,,,,,,0.0015,0.00214,0.00304,0.00535,,,,,,,0.0014,0.00197,0.00278,0.00482,,,,,,,0.00152,0.00216,0.00308,0.00546,,,,,,,0.00133,0.00188,0.00264,0.00455,,,,,,,0.03203,0.0337,0.03618,0.04292,,,,,,,0.03286,0.03444,0.03676,0.043,,,,,,,0.03546,0.0371,0.03951,0.04606,,,,,,,0.03053,0.03227,0.03487,0.04199,,,,,,,0.03446,0.03576,0.03762,0.04244,,,,,,,0.03199,0.03336,0.03534,0.0405,,,,,,,0.03169,0.0329,0.03464,0.03908,,,,,,,0.03332,0.03472,0.03675,0.04209,,,,,,,0.03243,0.03358,0.03521,0.03936,,,,,,,0.00699,0.00847,0.01066,0.01663,,,,,,,0.00698,0.00838,0.01043,0.01596,,,,,,,0.00739,0.00884,0.01097,0.01677,,,,,,,0.00689,0.00843,0.01072,0.01703,,,,,,,0.00684,0.008,0.00965,0.01391,,,,,,,0.0066,0.00781,0.00956,0.01413,,,,,,,0.00636,0.00744,0.00897,0.0129,,,,,,,0.0068,0.00804,0.00983,0.01456,,,,,,,0.00634,0.00736,0.0088,0.01247,,,,,,,0.00184,0.00186,0.00187,0.00197,,,,,,,0.00186,0.00187,0.00188,0.00198,,,,,,,0.00189,0.0019,0.00191,0.00202,,,,,,,0.00185,0.00186,0.00187,0.00198,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00186,0.00187,0.00188,0.00197,,,,,,,0.00187,0.00188,0.00188,0.00197,,,,,,,0.00185,0.00186,0.00186,0.00196,,,,,,,0.0017,0.00171,0.00171,0.0018,,,,,,,0.11583,0.15786,0.23734,0.48946,,,,,,,0.1066,0.14621,0.22358,0.47295,,,,,,,0.1125,0.16164,0.24776,0.5146,,,,,,,0.12639,0.18201,0.27561,0.55381,,,,,,,0.08558,0.13275,0.21839,0.48872,,,,,,,0.09137,0.141,0.22872,0.50185,,,,,,,0.08431,0.12893,0.21153,0.47553,,,,,,,0.10266,0.15251,0.24127,0.51803,,,,,,,0.08097,0.12282,0.20182,0.45788,,, +Compact car,E15,2025,,,,,0.00056,0.00082,0.00128,0.00264,,,,,,,0.00052,0.00076,0.00117,0.0024,,,,,,,0.00054,0.0008,0.00124,0.00255,,,,,,,0.00059,0.00088,0.00137,0.00283,,,,,,,0.00039,0.00057,0.00086,0.00171,,,,,,,0.00042,0.00062,0.00094,0.00189,,,,,,,0.00036,0.00052,0.00079,0.00155,,,,,,,0.00044,0.00064,0.00098,0.00197,,,,,,,0.00033,0.00048,0.00072,0.00142,,,,,,,0.00706,0.00538,0.00484,0.00594,,,,,,,0.00619,0.00479,0.00438,0.00541,,,,,,,0.0066,0.00535,0.0049,0.00614,,,,,,,0.00766,0.00618,0.00563,0.00702,,,,,,,0.00382,0.00353,0.00345,0.00446,,,,,,,0.00443,0.004,0.00385,0.00496,,,,,,,0.00371,0.00344,0.00338,0.00437,,,,,,,0.00497,0.0042,0.00395,0.00501,,,,,,,0.00363,0.00321,0.00311,0.00395,,,,,,,1.1023,1.58065,1.98689,2.60748,,,,,,,1.04651,1.52576,1.93267,2.54168,,,,,,,1.11624,1.70742,2.20479,2.9405,,,,,,,1.24014,1.89629,2.45592,3.25424,,,,,,,0.88394,1.46751,1.93128,2.58303,,,,,,,0.94772,1.55912,2.05435,2.7562,,,,,,,0.91247,1.50903,1.98411,2.65163,,,,,,,1.02156,1.60227,2.06989,2.75823,,,,,,,0.8745,1.38418,1.77703,2.36889,,,,,,,219.79517,221.43235,223.33795,236.97996,,,,,,,221.5603,223.04263,224.72229,238.06534,,,,,,,225.27095,226.82779,228.60892,242.30158,,,,,,,220.05545,221.72341,223.68594,237.44594,,,,,,,224.95881,225.87377,226.72836,238.83748,,,,,,,221.57259,222.70262,223.8785,236.37313,,,,,,,222.77487,223.64421,224.44286,236.3569,,,,,,,223.28628,224.44783,225.66151,238.29869,,,,,,,218.76573,219.74207,220.67897,232.6215,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04928,0.0717,0.09533,0.1294,,,,,,,0.04744,0.06939,0.09262,0.12609,,,,,,,0.04796,0.07417,0.09853,0.13626,,,,,,,0.05196,0.08132,0.10809,0.14963,,,,,,,0.03805,0.06291,0.08537,0.12001,,,,,,,0.04237,0.06889,0.09295,0.13006,,,,,,,0.03896,0.06378,0.0867,0.12112,,,,,,,0.04598,0.07259,0.0974,0.13488,,,,,,,0.03955,0.06234,0.08419,0.11607,,,,,,,0.0011,0.00156,0.0023,0.00432,,,,,,,0.00107,0.00151,0.00221,0.00411,,,,,,,0.00109,0.00154,0.00226,0.00424,,,,,,,0.00113,0.0016,0.00237,0.00448,,,,,,,0.00096,0.00134,0.00192,0.00347,,,,,,,0.00098,0.00137,0.00198,0.00361,,,,,,,0.00091,0.00126,0.00181,0.00325,,,,,,,0.00099,0.00139,0.00201,0.00368,,,,,,,0.00087,0.0012,0.00172,0.00308,,,,,,,0.03076,0.03178,0.03345,0.03812,,,,,,,0.03164,0.0326,0.03417,0.03851,,,,,,,0.03421,0.03521,0.03683,0.04138,,,,,,,0.02922,0.03028,0.03202,0.03693,,,,,,,0.03339,0.03419,0.03546,0.03885,,,,,,,0.0309,0.03173,0.03307,0.0367,,,,,,,0.03068,0.03143,0.0326,0.03573,,,,,,,0.03221,0.03307,0.03444,0.03818,,,,,,,0.03148,0.03219,0.03329,0.03624,,,,,,,0.00587,0.00677,0.00824,0.01238,,,,,,,0.0059,0.00676,0.00814,0.01199,,,,,,,0.00628,0.00716,0.0086,0.01263,,,,,,,0.00573,0.00667,0.00821,0.01255,,,,,,,0.0059,0.00661,0.00773,0.01073,,,,,,,0.00563,0.00637,0.00755,0.01077,,,,,,,0.00547,0.00613,0.00717,0.00994,,,,,,,0.00582,0.00658,0.00779,0.0111,,,,,,,0.0055,0.00612,0.0071,0.00971,,,,,,,0.00149,0.0015,0.00151,0.00161,,,,,,,0.0015,0.00151,0.00152,0.00161,,,,,,,0.00153,0.00154,0.00155,0.00164,,,,,,,0.00149,0.0015,0.00152,0.00161,,,,,,,0.00153,0.00153,0.00154,0.00162,,,,,,,0.0015,0.00151,0.00152,0.0016,,,,,,,0.00151,0.00152,0.00152,0.0016,,,,,,,0.00149,0.0015,0.00151,0.00159,,,,,,,0.00137,0.00138,0.00138,0.00146,,,,,,,0.09923,0.12657,0.1867,0.39882,,,,,,,0.08927,0.11393,0.17137,0.38007,,,,,,,0.09548,0.12762,0.19277,0.41681,,,,,,,0.10851,0.14549,0.21635,0.4488,,,,,,,0.06526,0.09375,0.15585,0.37948,,,,,,,0.07174,0.10246,0.16674,0.39325,,,,,,,0.0634,0.08905,0.1478,0.36426,,,,,,,0.08233,0.11324,0.1786,0.40741,,,,,,,0.06112,0.08577,0.14282,0.35549,, +Compact car,E15,2030,,,,,,0.00056,0.00082,0.00127,0.00231,,,,,,,0.00051,0.00076,0.00117,0.0021,,,,,,,0.00054,0.0008,0.00123,0.00222,,,,,,,0.00059,0.00087,0.00136,0.00247,,,,,,,0.00039,0.00057,0.00086,0.0015,,,,,,,0.00042,0.00062,0.00094,0.00166,,,,,,,0.00036,0.00052,0.00078,0.00136,,,,,,,0.00044,0.00064,0.00097,0.00172,,,,,,,0.00033,0.00048,0.00072,0.00124,,,,,,,0.00661,0.0049,0.0044,0.00522,,,,,,,0.00573,0.00431,0.00393,0.00468,,,,,,,0.00615,0.00481,0.0044,0.00528,,,,,,,0.00718,0.00559,0.00508,0.00609,,,,,,,0.00335,0.00297,0.00292,0.00357,,,,,,,0.00396,0.00342,0.00331,0.00404,,,,,,,0.00322,0.00288,0.00285,0.00348,,,,,,,0.0045,0.00366,0.00345,0.00417,,,,,,,0.00316,0.0027,0.00262,0.00317,,,,,,,1.00381,1.43027,1.80816,2.27607,,,,,,,0.9443,1.37045,1.7465,2.19802,,,,,,,1.01044,1.5343,1.99167,2.53146,,,,,,,1.12789,1.71093,2.2242,2.81775,,,,,,,0.7717,1.28537,1.70513,2.15886,,,,,,,0.83523,1.37452,1.82402,2.3185,,,,,,,0.7965,1.32221,1.75197,2.2182,,,,,,,0.90765,1.42121,1.84889,2.34032,,,,,,,0.76533,1.21498,1.57491,1.9863,,,,,,,202.37588,204.42168,207.58991,216.57033,,,,,,,203.95157,205.85813,208.81899,217.48026,,,,,,,207.38391,209.36859,212.45013,221.37827,,,,,,,202.63544,204.71083,207.93779,217.03032,,,,,,,206.9057,208.29309,210.47947,217.89649,,,,,,,203.86231,205.44171,207.91787,215.768,,,,,,,204.89027,206.23058,208.35024,215.62272,,,,,,,205.44263,207.055,209.57727,217.53119,,,,,,,201.21948,202.64792,204.87342,212.24055,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04353,0.0621,0.08371,0.11074,,,,,,,0.0416,0.05972,0.08091,0.10727,,,,,,,0.04197,0.06345,0.08568,0.11492,,,,,,,0.04568,0.06988,0.09432,0.12662,,,,,,,0.03219,0.05238,0.07272,0.09873,,,,,,,0.03637,0.05802,0.07988,0.10805,,,,,,,0.03305,0.05324,0.07398,0.1,,,,,,,0.03953,0.0613,0.08389,0.11251,,,,,,,0.03358,0.05222,0.07213,0.09629,,,,,,,0.0011,0.00156,0.00229,0.0038,,,,,,,0.00107,0.0015,0.0022,0.00362,,,,,,,0.00109,0.00154,0.00225,0.00373,,,,,,,0.00113,0.0016,0.00235,0.00394,,,,,,,0.00096,0.00134,0.00192,0.00307,,,,,,,0.00098,0.00137,0.00197,0.00319,,,,,,,0.00091,0.00126,0.0018,0.00288,,,,,,,0.00099,0.00138,0.002,0.00325,,,,,,,0.00087,0.0012,0.00172,0.00273,,,,,,,0.03076,0.03177,0.03342,0.03693,,,,,,,0.03163,0.03259,0.03414,0.03741,,,,,,,0.0342,0.0352,0.03681,0.04023,,,,,,,0.02921,0.03027,0.03199,0.03569,,,,,,,0.03339,0.03419,0.03544,0.03798,,,,,,,0.03089,0.03173,0.03305,0.03577,,,,,,,0.03068,0.03142,0.03258,0.03493,,,,,,,0.03221,0.03306,0.03442,0.03722,,,,,,,0.03148,0.03219,0.03329,0.03548,,,,,,,0.00586,0.00676,0.00822,0.01133,,,,,,,0.0059,0.00675,0.00812,0.01101,,,,,,,0.00628,0.00716,0.00858,0.0116,,,,,,,0.00572,0.00666,0.00818,0.01146,,,,,,,0.0059,0.00661,0.00771,0.00996,,,,,,,0.00563,0.00637,0.00754,0.00994,,,,,,,0.00547,0.00613,0.00715,0.00923,,,,,,,0.00582,0.00657,0.00778,0.01025,,,,,,,0.0055,0.00612,0.0071,0.00903,,,,,,,0.00137,0.00139,0.00141,0.00147,,,,,,,0.00138,0.0014,0.00142,0.00147,,,,,,,0.00141,0.00142,0.00144,0.0015,,,,,,,0.00137,0.00139,0.00141,0.00147,,,,,,,0.0014,0.00141,0.00143,0.00148,,,,,,,0.00138,0.00139,0.00141,0.00146,,,,,,,0.00139,0.0014,0.00141,0.00146,,,,,,,0.00137,0.00138,0.0014,0.00145,,,,,,,0.00126,0.00127,0.00128,0.00133,,,,,,,0.09467,0.11871,0.17606,0.36182,,,,,,,0.08464,0.10598,0.16057,0.34223,,,,,,,0.09086,0.119,0.18103,0.37621,,,,,,,0.10363,0.13612,0.20335,0.40596,,,,,,,0.06023,0.08454,0.1429,0.3352,,,,,,,0.06675,0.09318,0.15367,0.34886,,,,,,,0.05828,0.07981,0.13473,0.31962,,,,,,,0.07707,0.104,0.16543,0.36389,,,,,,,0.05608,0.07704,0.13077,0.31389, +Compact car,E15,2035,,,,,,,0.00055,0.00082,0.00128,0.00227,,,,,,,0.00051,0.00075,0.00117,0.00206,,,,,,,0.00054,0.00079,0.00124,0.00219,,,,,,,0.00059,0.00087,0.00136,0.00243,,,,,,,0.00039,0.00056,0.00086,0.00147,,,,,,,0.00042,0.00061,0.00094,0.00163,,,,,,,0.00036,0.00052,0.00078,0.00134,,,,,,,0.00043,0.00063,0.00098,0.00169,,,,,,,0.00033,0.00048,0.00072,0.00122,,,,,,,0.00659,0.0049,0.00439,0.0051,,,,,,,0.00571,0.00432,0.00393,0.00456,,,,,,,0.00613,0.00482,0.00439,0.00513,,,,,,,0.00715,0.0056,0.00508,0.00592,,,,,,,0.00334,0.00297,0.00292,0.00341,,,,,,,0.00395,0.00343,0.00331,0.00387,,,,,,,0.00321,0.00288,0.00285,0.00332,,,,,,,0.00448,0.00367,0.00345,0.00402,,,,,,,0.00315,0.0027,0.00262,0.00304,,,,,,,1.00229,1.42816,1.80906,2.22619,,,,,,,0.94308,1.3678,1.74777,2.14624,,,,,,,1.00906,1.53074,1.99351,2.46899,,,,,,,1.12607,1.70515,2.22735,2.75229,,,,,,,0.77132,1.28076,1.70773,2.09393,,,,,,,0.83464,1.36985,1.82663,2.25131,,,,,,,0.79607,1.31711,1.75484,2.15207,,,,,,,0.90685,1.41794,1.85057,2.27597,,,,,,,0.76507,1.21407,1.57522,1.92592,,,,,,,202.31732,204.41513,207.58516,213.42055,,,,,,,203.89656,205.8518,208.81424,214.30283,,,,,,,207.32669,209.36189,212.44549,218.14861,,,,,,,202.57521,204.70413,207.93289,213.87998,,,,,,,206.8634,208.28824,210.47564,214.66073,,,,,,,203.81533,205.43641,207.91369,212.58557,,,,,,,204.84903,206.2258,208.34664,212.41867,,,,,,,205.39488,207.04945,209.57317,214.32364,,,,,,,201.1778,202.64334,204.86989,209.09153,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.0046,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04342,0.06196,0.08378,0.10784,,,,,,,0.0415,0.05959,0.08098,0.10432,,,,,,,0.04187,0.0633,0.08576,0.11148,,,,,,,0.04557,0.06969,0.09443,0.12291,,,,,,,0.03213,0.05228,0.07278,0.09523,,,,,,,0.03629,0.0579,0.07995,0.10444,,,,,,,0.03298,0.05312,0.07405,0.09657,,,,,,,0.03945,0.06122,0.08394,0.10885,,,,,,,0.03353,0.0522,0.07213,0.09306,,,,,,,0.0011,0.00155,0.00229,0.00374,,,,,,,0.00107,0.0015,0.0022,0.00356,,,,,,,0.00109,0.00153,0.00226,0.00367,,,,,,,0.00113,0.00159,0.00236,0.00388,,,,,,,0.00096,0.00133,0.00192,0.00302,,,,,,,0.00098,0.00136,0.00198,0.00314,,,,,,,0.00091,0.00126,0.00181,0.00283,,,,,,,0.00099,0.00138,0.00201,0.0032,,,,,,,0.00087,0.0012,0.00172,0.00268,,,,,,,0.03075,0.03176,0.03343,0.03679,,,,,,,0.03163,0.03258,0.03415,0.03728,,,,,,,0.0342,0.03519,0.03682,0.04009,,,,,,,0.02921,0.03025,0.03201,0.03555,,,,,,,0.03339,0.03418,0.03545,0.03787,,,,,,,0.03089,0.03172,0.03306,0.03566,,,,,,,0.03067,0.03141,0.03259,0.03484,,,,,,,0.03221,0.03305,0.03443,0.03711,,,,,,,0.03148,0.03218,0.03329,0.03538,,,,,,,0.00586,0.00675,0.00823,0.0112,,,,,,,0.0059,0.00674,0.00813,0.01089,,,,,,,0.00627,0.00714,0.00859,0.01148,,,,,,,0.00572,0.00664,0.00819,0.01133,,,,,,,0.0059,0.0066,0.00772,0.00987,,,,,,,0.00563,0.00636,0.00754,0.00985,,,,,,,0.00547,0.00612,0.00716,0.00915,,,,,,,0.00582,0.00657,0.00778,0.01015,,,,,,,0.0055,0.00612,0.0071,0.00895,,,,,,,0.00137,0.00139,0.00141,0.00145,,,,,,,0.00138,0.0014,0.00142,0.00145,,,,,,,0.00141,0.00142,0.00144,0.00148,,,,,,,0.00137,0.00139,0.00141,0.00145,,,,,,,0.0014,0.00141,0.00143,0.00146,,,,,,,0.00138,0.00139,0.00141,0.00144,,,,,,,0.00139,0.0014,0.00141,0.00144,,,,,,,0.00137,0.00138,0.0014,0.00143,,,,,,,0.00126,0.00127,0.00128,0.00131,,,,,,,0.09439,0.11877,0.17599,0.3576,,,,,,,0.08438,0.10602,0.16051,0.33781,,,,,,,0.09061,0.11908,0.18093,0.37136,,,,,,,0.10331,0.13605,0.20337,0.40089,,,,,,,0.06005,0.0844,0.14298,0.32985,,,,,,,0.06656,0.09307,0.15372,0.34346,,,,,,,0.0581,0.07963,0.13483,0.31415,,,,,,,0.07677,0.10353,0.16589,0.35865,,,,,,,0.05593,0.07701,0.13077,0.30885 +Compact car,E15,2040,,,,,,,,0.00055,0.00082,0.00128,,,,,,,,0.00051,0.00075,0.00117,,,,,,,,0.00054,0.00079,0.00124,,,,,,,,0.00058,0.00087,0.00137,,,,,,,,0.00039,0.00056,0.00086,,,,,,,,0.00042,0.00061,0.00094,,,,,,,,0.00036,0.00052,0.00079,,,,,,,,0.00043,0.00063,0.00098,,,,,,,,0.00033,0.00048,0.00072,,,,,,,,0.0066,0.0049,0.00439,,,,,,,,0.00572,0.00431,0.00392,,,,,,,,0.00615,0.00481,0.00439,,,,,,,,0.00717,0.00559,0.00507,,,,,,,,0.00334,0.00297,0.00292,,,,,,,,0.00395,0.00342,0.00331,,,,,,,,0.00322,0.00288,0.00285,,,,,,,,0.00449,0.00366,0.00344,,,,,,,,0.00315,0.0027,0.00262,,,,,,,,1.0006,1.42851,1.81031,,,,,,,,0.94103,1.36847,1.74944,,,,,,,,1.00674,1.53175,1.99588,,,,,,,,1.12242,1.70709,2.23129,,,,,,,,0.76822,1.28251,1.71092,,,,,,,,0.83156,1.37156,1.82987,,,,,,,,0.79266,1.31907,1.75838,,,,,,,,0.90443,1.41894,1.85271,,,,,,,,0.76404,1.21409,1.57572,,,,,,,,202.30798,204.40452,207.5837,,,,,,,,203.88766,205.84202,208.813,,,,,,,,207.3175,209.35175,212.4441,,,,,,,,202.56574,204.69344,207.93146,,,,,,,,206.85685,208.28084,210.47473,,,,,,,,203.80768,205.42791,207.91252,,,,,,,,204.84263,206.21851,208.34561,,,,,,,,205.38715,207.0409,209.57207,,,,,,,,201.17121,202.63584,204.86895,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04329,0.06199,0.08387,,,,,,,,0.04138,0.05962,0.08107,,,,,,,,0.04173,0.06333,0.08586,,,,,,,,0.04539,0.06974,0.09457,,,,,,,,0.03204,0.0523,0.07285,,,,,,,,0.03619,0.05793,0.08003,,,,,,,,0.03287,0.05315,0.07415,,,,,,,,0.03936,0.06123,0.084,,,,,,,,0.03349,0.05219,0.07214,,,,,,,,0.0011,0.00156,0.0023,,,,,,,,0.00106,0.0015,0.0022,,,,,,,,0.00108,0.00154,0.00226,,,,,,,,0.00112,0.0016,0.00237,,,,,,,,0.00096,0.00133,0.00192,,,,,,,,0.00097,0.00136,0.00198,,,,,,,,0.0009,0.00126,0.00181,,,,,,,,0.00098,0.00138,0.00201,,,,,,,,0.00087,0.0012,0.00172,,,,,,,,0.03074,0.03176,0.03344,,,,,,,,0.03162,0.03259,0.03416,,,,,,,,0.03419,0.03519,0.03683,,,,,,,,0.02919,0.03026,0.03202,,,,,,,,0.03338,0.03418,0.03545,,,,,,,,0.03088,0.03172,0.03307,,,,,,,,0.03066,0.03141,0.0326,,,,,,,,0.0322,0.03306,0.03444,,,,,,,,0.03148,0.03218,0.03329,,,,,,,,0.00585,0.00676,0.00824,,,,,,,,0.00589,0.00674,0.00814,,,,,,,,0.00626,0.00715,0.0086,,,,,,,,0.00571,0.00665,0.00821,,,,,,,,0.00589,0.0066,0.00773,,,,,,,,0.00562,0.00636,0.00755,,,,,,,,0.00546,0.00612,0.00717,,,,,,,,0.00581,0.00657,0.00779,,,,,,,,0.0055,0.00612,0.0071,,,,,,,,0.00137,0.00139,0.00141,,,,,,,,0.00138,0.0014,0.00142,,,,,,,,0.00141,0.00142,0.00144,,,,,,,,0.00137,0.00139,0.00141,,,,,,,,0.0014,0.00141,0.00143,,,,,,,,0.00138,0.00139,0.00141,,,,,,,,0.00139,0.0014,0.00141,,,,,,,,0.00137,0.00138,0.0014,,,,,,,,0.00126,0.00127,0.00128,,,,,,,,0.09442,0.11866,0.17594,,,,,,,,0.0844,0.10593,0.16047,,,,,,,,0.09066,0.11896,0.1809,,,,,,,,0.10327,0.13599,0.20346,,,,,,,,0.05995,0.08442,0.14313,,,,,,,,0.06649,0.09307,0.15384,,,,,,,,0.05798,0.07966,0.135,,,,,,,,0.07641,0.10384,0.16607,,,,,,,,0.05589,0.07698,0.1308 +Compact car,E15,2045,,,,,,,,,0.00055,0.00082,,,,,,,,,0.00051,0.00076,,,,,,,,,0.00054,0.0008,,,,,,,,,0.00058,0.00087,,,,,,,,,0.00039,0.00057,,,,,,,,,0.00042,0.00061,,,,,,,,,0.00036,0.00052,,,,,,,,,0.00043,0.00064,,,,,,,,,0.00033,0.00048,,,,,,,,,0.00659,0.00489,,,,,,,,,0.00571,0.00431,,,,,,,,,0.00613,0.00481,,,,,,,,,0.00716,0.00558,,,,,,,,,0.00334,0.00297,,,,,,,,,0.00395,0.00342,,,,,,,,,0.00321,0.00288,,,,,,,,,0.00448,0.00366,,,,,,,,,0.00315,0.00269,,,,,,,,,1.00076,1.42949,,,,,,,,,0.94141,1.36976,,,,,,,,,1.00717,1.5335,,,,,,,,,1.12337,1.71,,,,,,,,,0.76923,1.2849,,,,,,,,,0.8325,1.37396,,,,,,,,,0.79381,1.32172,,,,,,,,,0.90501,1.42057,,,,,,,,,0.7641,1.21447,,,,,,,,,202.29998,204.40452,,,,,,,,,203.88008,205.84178,,,,,,,,,207.30962,209.35166,,,,,,,,,202.55717,204.69292,,,,,,,,,206.85113,208.28078,,,,,,,,,203.80114,205.42783,,,,,,,,,204.83696,206.21826,,,,,,,,,205.38063,207.04086,,,,,,,,,201.16556,202.63587,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04332,0.06206,,,,,,,,,0.0414,0.05969,,,,,,,,,0.04176,0.06341,,,,,,,,,0.04544,0.06984,,,,,,,,,0.03206,0.05235,,,,,,,,,0.03621,0.05799,,,,,,,,,0.0329,0.05322,,,,,,,,,0.03938,0.06127,,,,,,,,,0.03349,0.0522,,,,,,,,,0.0011,0.00156,,,,,,,,,0.00106,0.0015,,,,,,,,,0.00109,0.00154,,,,,,,,,0.00112,0.0016,,,,,,,,,0.00096,0.00133,,,,,,,,,0.00097,0.00137,,,,,,,,,0.00091,0.00126,,,,,,,,,0.00099,0.00138,,,,,,,,,0.00087,0.0012,,,,,,,,,0.03074,0.03177,,,,,,,,,0.03162,0.03259,,,,,,,,,0.03419,0.0352,,,,,,,,,0.0292,0.03027,,,,,,,,,0.03338,0.03419,,,,,,,,,0.03089,0.03173,,,,,,,,,0.03067,0.03142,,,,,,,,,0.0322,0.03306,,,,,,,,,0.03148,0.03219,,,,,,,,,0.00585,0.00676,,,,,,,,,0.00589,0.00675,,,,,,,,,0.00627,0.00716,,,,,,,,,0.00571,0.00666,,,,,,,,,0.00589,0.0066,,,,,,,,,0.00562,0.00637,,,,,,,,,0.00546,0.00613,,,,,,,,,0.00581,0.00657,,,,,,,,,0.0055,0.00612,,,,,,,,,0.00137,0.00139,,,,,,,,,0.00138,0.0014,,,,,,,,,0.00141,0.00142,,,,,,,,,0.00137,0.00139,,,,,,,,,0.0014,0.00141,,,,,,,,,0.00138,0.00139,,,,,,,,,0.00139,0.0014,,,,,,,,,0.00137,0.00138,,,,,,,,,0.00126,0.00127,,,,,,,,,0.09433,0.11861,,,,,,,,,0.08433,0.10589,,,,,,,,,0.09057,0.11891,,,,,,,,,0.10321,0.13601,,,,,,,,,0.05996,0.08449,,,,,,,,,0.06647,0.09312,,,,,,,,,0.058,0.07976,,,,,,,,,0.07663,0.10394,,,,,,,,,0.05587,0.07699 +Compact car,E15,2050,,,,,,,,,,0.00055,,,,,,,,,,0.00051,,,,,,,,,,0.00054,,,,,,,,,,0.00059,,,,,,,,,,0.00039,,,,,,,,,,0.00042,,,,,,,,,,0.00036,,,,,,,,,,0.00043,,,,,,,,,,0.00033,,,,,,,,,,0.00658,,,,,,,,,,0.0057,,,,,,,,,,0.00612,,,,,,,,,,0.00715,,,,,,,,,,0.00333,,,,,,,,,,0.00394,,,,,,,,,,0.00321,,,,,,,,,,0.00448,,,,,,,,,,0.00315,,,,,,,,,,1.00129,,,,,,,,,,0.94214,,,,,,,,,,1.00801,,,,,,,,,,1.12488,,,,,,,,,,0.77057,,,,,,,,,,0.8338,,,,,,,,,,0.79531,,,,,,,,,,0.90594,,,,,,,,,,0.76433,,,,,,,,,,202.30003,,,,,,,,,,203.88013,,,,,,,,,,207.30957,,,,,,,,,,202.55706,,,,,,,,,,206.85117,,,,,,,,,,203.80131,,,,,,,,,,204.83679,,,,,,,,,,205.38064,,,,,,,,,,201.1655,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04337,,,,,,,,,,0.04145,,,,,,,,,,0.04182,,,,,,,,,,0.04552,,,,,,,,,,0.0321,,,,,,,,,,0.03626,,,,,,,,,,0.03295,,,,,,,,,,0.03941,,,,,,,,,,0.03349,,,,,,,,,,0.0011,,,,,,,,,,0.00107,,,,,,,,,,0.00109,,,,,,,,,,0.00113,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00091,,,,,,,,,,0.00099,,,,,,,,,,0.00087,,,,,,,,,,0.03075,,,,,,,,,,0.03163,,,,,,,,,,0.0342,,,,,,,,,,0.02921,,,,,,,,,,0.03339,,,,,,,,,,0.03089,,,,,,,,,,0.03067,,,,,,,,,,0.0322,,,,,,,,,,0.03148,,,,,,,,,,0.00586,,,,,,,,,,0.0059,,,,,,,,,,0.00627,,,,,,,,,,0.00572,,,,,,,,,,0.0059,,,,,,,,,,0.00563,,,,,,,,,,0.00547,,,,,,,,,,0.00582,,,,,,,,,,0.0055,,,,,,,,,,0.00137,,,,,,,,,,0.00138,,,,,,,,,,0.00141,,,,,,,,,,0.00137,,,,,,,,,,0.0014,,,,,,,,,,0.00138,,,,,,,,,,0.00139,,,,,,,,,,0.00137,,,,,,,,,,0.00126,,,,,,,,,,0.09429,,,,,,,,,,0.08429,,,,,,,,,,0.09051,,,,,,,,,,0.10319,,,,,,,,,,0.05999,,,,,,,,,,0.06649,,,,,,,,,,0.05805,,,,,,,,,,0.0767,,,,,,,,,,0.05587 +Compact car,E85,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,E85,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,E85,2000,,0.00646,0.01096,,,,,,,,,0.00556,0.0094,,,,,,,,,0.00624,0.01058,,,,,,,,,0.00706,0.01205,,,,,,,,,0.00309,0.00518,,,,,,,,,0.00371,0.00651,,,,,,,,,0.00297,0.00495,,,,,,,,,0.00428,0.00722,,,,,,,,,0.00294,0.00489,,,,,,,,,0.1043,0.10801,,,,,,,,,0.09912,0.10538,,,,,,,,,0.11745,0.12381,,,,,,,,,0.12435,0.13076,,,,,,,,,0.0979,0.10436,,,,,,,,,0.10561,0.11273,,,,,,,,,0.09825,0.10152,,,,,,,,,0.10164,0.10689,,,,,,,,,0.08449,0.08929,,,,,,,,,10.46323,12.29875,,,,,,,,,10.1003,12.09664,,,,,,,,,11.54872,13.76171,,,,,,,,,12.5148,14.86778,,,,,,,,,10.18655,12.11852,,,,,,,,,10.85035,13.04615,,,,,,,,,10.56603,12.22233,,,,,,,,,10.43698,12.33731,,,,,,,,,8.5791,10.15353,,,,,,,,,376.02843,381.76732,,,,,,,,,379.21137,384.55522,,,,,,,,,385.75012,391.31159,,,,,,,,,376.22326,382.03424,,,,,,,,,385.51251,389.38635,,,,,,,,,379.35954,385.24023,,,,,,,,,381.50323,385.23906,,,,,,,,,382.39194,386.90262,,,,,,,,,374.84749,378.85541,,,,,,,,,0.02345,0.02778,,,,,,,,,0.02352,0.02785,,,,,,,,,0.02363,0.02792,,,,,,,,,0.02372,0.02815,,,,,,,,,0.02367,0.02798,,,,,,,,,0.02383,0.02823,,,,,,,,,0.02358,0.02792,,,,,,,,,0.02367,0.02801,,,,,,,,,0.02329,0.02756,,,,,,,,,0.07773,0.07773,,,,,,,,,0.07791,0.07791,,,,,,,,,0.07812,0.07812,,,,,,,,,0.07719,0.07719,,,,,,,,,0.078,0.078,,,,,,,,,0.07746,0.07747,,,,,,,,,0.07771,0.07771,,,,,,,,,0.07801,0.07801,,,,,,,,,0.07818,0.07818,,,,,,,,,1.34699,1.60074,,,,,,,,,1.33398,1.61983,,,,,,,,,1.48783,1.79273,,,,,,,,,1.55348,1.86975,,,,,,,,,1.45143,1.76315,,,,,,,,,1.50273,1.81274,,,,,,,,,1.47847,1.75034,,,,,,,,,1.53645,1.83287,,,,,,,,,1.36428,1.63897,,,,,,,,,0.01343,0.02127,,,,,,,,,0.0118,0.01863,,,,,,,,,0.0129,0.02042,,,,,,,,,0.01405,0.02235,,,,,,,,,0.00709,0.01108,,,,,,,,,0.00815,0.01328,,,,,,,,,0.00693,0.01081,,,,,,,,,0.00934,0.01469,,,,,,,,,0.00706,0.01099,,,,,,,,,0.05724,0.07467,,,,,,,,,0.0546,0.06973,,,,,,,,,0.0596,0.07636,,,,,,,,,0.05721,0.07589,,,,,,,,,0.04636,0.05505,,,,,,,,,0.04618,0.0576,,,,,,,,,0.04337,0.05179,,,,,,,,,0.05002,0.06181,,,,,,,,,0.04448,0.05295,,,,,,,,,0.02929,0.04471,,,,,,,,,0.02622,0.0396,,,,,,,,,0.02874,0.04357,,,,,,,,,0.03049,0.04702,,,,,,,,,0.01737,0.02507,,,,,,,,,0.01915,0.02916,,,,,,,,,0.01669,0.02414,,,,,,,,,0.02158,0.032,,,,,,,,,0.01699,0.02449,,,,,,,,,0.01231,0.01102,,,,,,,,,0.01242,0.0111,,,,,,,,,0.01263,0.0113,,,,,,,,,0.01232,0.01103,,,,,,,,,0.01262,0.01124,,,,,,,,,0.01242,0.01112,,,,,,,,,0.01249,0.01112,,,,,,,,,0.01252,0.01117,,,,,,,,,0.01227,0.01094,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,, +Compact car,E85,2005,,0.00252,0.00415,0.00796,,,,,,,,0.00221,0.00362,0.00691,,,,,,,,0.00247,0.00406,0.00777,,,,,,,,0.00276,0.00456,0.00881,,,,,,,,0.00135,0.00219,0.00403,,,,,,,,0.00157,0.00265,0.00477,,,,,,,,0.00129,0.00209,0.00385,,,,,,,,0.00177,0.00288,0.00543,,,,,,,,0.00127,0.00206,0.00378,,,,,,,,0.05366,0.04305,0.05106,,,,,,,,0.04786,0.03986,0.04788,,,,,,,,0.05534,0.04602,0.05661,,,,,,,,0.06135,0.05085,0.06169,,,,,,,,0.03372,0.03133,0.04069,,,,,,,,0.04005,0.03678,0.04597,,,,,,,,0.03323,0.03048,0.03942,,,,,,,,0.04178,0.03615,0.04513,,,,,,,,0.0295,0.027,0.03405,,,,,,,,4.27021,5.43228,7.3777,,,,,,,,4.10243,5.41519,7.31027,,,,,,,,4.6053,6.18697,8.42498,,,,,,,,4.95648,6.66506,9.05886,,,,,,,,4.24619,5.85746,7.74911,,,,,,,,4.41903,6.13778,8.10099,,,,,,,,4.40302,5.92641,7.81561,,,,,,,,4.32503,5.76681,7.69855,,,,,,,,3.73334,4.96647,6.49375,,,,,,,,381.40448,385.73771,392.04761,,,,,,,,384.81454,388.85246,394.67791,,,,,,,,391.13188,395.33509,401.45077,,,,,,,,381.65622,386.05248,392.47664,,,,,,,,391.94133,394.88062,398.90112,,,,,,,,385.52286,390.31431,393.55672,,,,,,,,388.16047,390.99977,394.8442,,,,,,,,388.49771,391.91338,396.71268,,,,,,,,381.16645,384.19259,388.32535,,,,,,,,0.00769,0.00903,0.01373,,,,,,,,0.0077,0.00905,0.01374,,,,,,,,0.00771,0.00905,0.01373,,,,,,,,0.0078,0.00918,0.01395,,,,,,,,0.00773,0.00907,0.01377,,,,,,,,0.00782,0.00918,0.01395,,,,,,,,0.00773,0.00908,0.01379,,,,,,,,0.00775,0.00909,0.01381,,,,,,,,0.00762,0.00894,0.01358,,,,,,,,0.0254,0.0315,0.03552,,,,,,,,0.02546,0.03157,0.0356,,,,,,,,0.02553,0.03165,0.0357,,,,,,,,0.02523,0.03128,0.03528,,,,,,,,0.02549,0.03161,0.03565,,,,,,,,0.02532,0.03139,0.0354,,,,,,,,0.0254,0.03149,0.03551,,,,,,,,0.02549,0.03161,0.03565,,,,,,,,0.02555,0.03168,0.03573,,,,,,,,0.40964,0.54392,0.63575,,,,,,,,0.39887,0.54686,0.63907,,,,,,,,0.44885,0.60545,0.7197,,,,,,,,0.46965,0.63416,0.76018,,,,,,,,0.42851,0.5863,0.70048,,,,,,,,0.44706,0.6072,0.72627,,,,,,,,0.43577,0.58189,0.69223,,,,,,,,0.45634,0.61099,0.71815,,,,,,,,0.40509,0.5459,0.63333,,,,,,,,0.00535,0.00812,0.01436,,,,,,,,0.00483,0.00733,0.01284,,,,,,,,0.00528,0.00802,0.01407,,,,,,,,0.00563,0.00858,0.01524,,,,,,,,0.00326,0.00497,0.00842,,,,,,,,0.00363,0.00567,0.00946,,,,,,,,0.00316,0.00481,0.00817,,,,,,,,0.00402,0.0061,0.01055,,,,,,,,0.00318,0.00482,0.00819,,,,,,,,0.03982,0.04601,0.06002,,,,,,,,0.03963,0.04516,0.05745,,,,,,,,0.04314,0.04925,0.06284,,,,,,,,0.0389,0.04556,0.06066,,,,,,,,0.0382,0.04187,0.04939,,,,,,,,0.03648,0.04107,0.04928,,,,,,,,0.03539,0.03893,0.0462,,,,,,,,0.03861,0.04318,0.053,,,,,,,,0.03629,0.03981,0.04707,,,,,,,,0.01388,0.01936,0.03175,,,,,,,,0.01298,0.01787,0.02874,,,,,,,,0.01418,0.01958,0.03161,,,,,,,,0.01429,0.02018,0.03354,,,,,,,,0.01016,0.01341,0.02005,,,,,,,,0.01057,0.01454,0.02189,,,,,,,,0.00964,0.01277,0.0192,,,,,,,,0.01148,0.01552,0.02421,,,,,,,,0.00975,0.01287,0.01929,,,,,,,,0.01249,0.01114,0.00377,,,,,,,,0.0126,0.01123,0.0038,,,,,,,,0.01281,0.01142,0.00386,,,,,,,,0.0125,0.01115,0.00378,,,,,,,,0.01283,0.0114,0.00384,,,,,,,,0.01262,0.01127,0.00379,,,,,,,,0.01271,0.01129,0.0038,,,,,,,,0.01272,0.01132,0.00382,,,,,,,,0.01248,0.01109,0.00374,,,,,,,,0.34619,0.45995,0.47959,,,,,,,,0.30694,0.42044,0.43793,,,,,,,,0.3542,0.48457,0.5032,,,,,,,,0.39397,0.53717,0.5564,,,,,,,,0.20204,0.30778,0.31744,,,,,,,,0.24482,0.37006,0.37204,,,,,,,,0.19658,0.29637,0.30547,,,,,,,,0.2591,0.36851,0.3817,,,,,,,,0.17513,0.26386,0.2717,,,,,, +Compact car,E85,2010,,0.00124,0.002,0.00323,0.00684,,,,,,,0.0011,0.00177,0.00285,0.00597,,,,,,,0.00122,0.00196,0.00316,0.00669,,,,,,,0.00136,0.00221,0.00357,0.0076,,,,,,,0.00074,0.00116,0.00184,0.00367,,,,,,,0.00083,0.00136,0.0021,0.00427,,,,,,,0.00072,0.00112,0.00177,0.00352,,,,,,,0.00092,0.00146,0.00233,0.00479,,,,,,,0.00071,0.00111,0.00174,0.00344,,,,,,,0.0466,0.03215,0.02481,0.03238,,,,,,,0.04012,0.029,0.02273,0.02997,,,,,,,0.04548,0.03417,0.02678,0.0356,,,,,,,0.05257,0.03902,0.03042,0.03981,,,,,,,0.02541,0.02329,0.01943,0.02592,,,,,,,0.0295,0.02668,0.02156,0.02899,,,,,,,0.02462,0.02269,0.01902,0.02527,,,,,,,0.03286,0.02672,0.02153,0.02855,,,,,,,0.02367,0.0207,0.01698,0.02204,,,,,,,2.34552,3.64526,4.88194,6.25986,,,,,,,2.19629,3.58182,4.83606,6.19455,,,,,,,2.34845,3.99168,5.50917,7.14234,,,,,,,2.55452,4.32638,5.98278,7.72275,,,,,,,1.95002,3.65359,5.1282,6.58641,,,,,,,2.05296,3.84996,5.3336,6.89061,,,,,,,2.01268,3.72218,5.20828,6.66463,,,,,,,2.11939,3.70794,5.103,6.54347,,,,,,,1.79573,3.20272,4.36717,5.53591,,,,,,,373.8286,376.48579,381.03238,388.99366,,,,,,,377.37699,379.83005,384.05277,391.52063,,,,,,,383.51483,386.07304,390.47474,398.24205,,,,,,,374.05833,376.743,381.36699,389.45895,,,,,,,385.08983,386.79058,389.80923,395.42654,,,,,,,378.50964,381.87893,383.95487,390.2564,,,,,,,381.42668,383.05673,385.97092,391.41827,,,,,,,381.39757,383.4241,386.96506,393.38401,,,,,,,374.37219,376.16073,379.26763,384.97694,,,,,,,0.00685,0.00774,0.00923,0.01206,,,,,,,0.00686,0.00775,0.00924,0.01207,,,,,,,0.00688,0.00776,0.00924,0.01205,,,,,,,0.00694,0.00785,0.00938,0.01226,,,,,,,0.00689,0.00778,0.00927,0.01209,,,,,,,0.00696,0.00786,0.00938,0.01226,,,,,,,0.00688,0.00778,0.00928,0.01211,,,,,,,0.0069,0.00779,0.00929,0.01213,,,,,,,0.00679,0.00767,0.00914,0.01192,,,,,,,0.01689,0.0196,0.02529,0.02701,,,,,,,0.01693,0.01964,0.02535,0.02707,,,,,,,0.01698,0.0197,0.02542,0.02714,,,,,,,0.01678,0.01946,0.02511,0.02682,,,,,,,0.01695,0.01967,0.02538,0.0271,,,,,,,0.01684,0.01953,0.0252,0.02691,,,,,,,0.01689,0.01959,0.02528,0.027,,,,,,,0.01695,0.01967,0.02538,0.0271,,,,,,,0.01699,0.01971,0.02543,0.02716,,,,,,,0.10867,0.17763,0.18977,0.31855,,,,,,,0.10408,0.17698,0.18848,0.31788,,,,,,,0.10819,0.19527,0.20583,0.35707,,,,,,,0.11242,0.20745,0.21881,0.38076,,,,,,,0.09689,0.18327,0.19294,0.34107,,,,,,,0.10245,0.19297,0.20307,0.35743,,,,,,,0.09914,0.18316,0.19283,0.33806,,,,,,,0.10861,0.19571,0.20352,0.35215,,,,,,,0.09774,0.17375,0.18033,0.30781,,,,,,,0.0022,0.00339,0.00524,0.01077,,,,,,,0.00207,0.00317,0.00486,0.00982,,,,,,,0.00217,0.00335,0.00516,0.0106,,,,,,,0.00229,0.00355,0.00551,0.01145,,,,,,,0.00171,0.00258,0.00389,0.00722,,,,,,,0.00179,0.00274,0.00411,0.00784,,,,,,,0.00169,0.00254,0.00383,0.00706,,,,,,,0.00189,0.00287,0.00437,0.00849,,,,,,,0.0017,0.00255,0.00384,0.00706,,,,,,,0.03326,0.03598,0.04021,0.05289,,,,,,,0.03388,0.03636,0.0402,0.05146,,,,,,,0.03668,0.03935,0.04351,0.05594,,,,,,,0.03191,0.03482,0.03937,0.05312,,,,,,,0.03501,0.03686,0.03968,0.04701,,,,,,,0.03266,0.0349,0.03774,0.04605,,,,,,,0.03235,0.03416,0.03692,0.044,,,,,,,0.03419,0.03635,0.03968,0.04891,,,,,,,0.03326,0.03507,0.03781,0.04484,,,,,,,0.00808,0.01048,0.01422,0.02545,,,,,,,0.00789,0.01008,0.01348,0.02344,,,,,,,0.00846,0.01083,0.0145,0.0255,,,,,,,0.00811,0.01068,0.01471,0.02687,,,,,,,0.00733,0.00897,0.01147,0.01795,,,,,,,0.00719,0.00907,0.01169,0.01904,,,,,,,0.00695,0.00855,0.01099,0.01725,,,,,,,0.00757,0.00948,0.01242,0.0206,,,,,,,0.00707,0.00867,0.0111,0.01732,,,,,,,0.01224,0.01087,0.00367,0.00374,,,,,,,0.01236,0.01097,0.0037,0.00377,,,,,,,0.01256,0.01115,0.00376,0.00383,,,,,,,0.01225,0.01088,0.00367,0.00375,,,,,,,0.01261,0.01117,0.00375,0.00381,,,,,,,0.01239,0.01103,0.0037,0.00376,,,,,,,0.01249,0.01106,0.00372,0.00377,,,,,,,0.01249,0.01107,0.00372,0.00379,,,,,,,0.01226,0.01086,0.00365,0.00371,,,,,,,0.13711,0.19278,0.26132,0.37789,,,,,,,0.11608,0.1704,0.23575,0.34366,,,,,,,0.13369,0.20123,0.27801,0.40613,,,,,,,0.15637,0.23229,0.3182,0.45895,,,,,,,0.06809,0.12556,0.18978,0.27666,,,,,,,0.08143,0.14761,0.21345,0.31424,,,,,,,0.065,0.1208,0.18402,0.2678,,,,,,,0.09224,0.15044,0.21657,0.31576,,,,,,,0.06239,0.11087,0.1654,0.23613,,,,, +Compact car,E85,2015,,,0.00107,0.00165,0.00275,0.00543,,,,,,,0.00097,0.00149,0.00248,0.00485,,,,,,,0.00105,0.00162,0.0027,0.00532,,,,,,,0.00115,0.00178,0.00298,0.00593,,,,,,,0.0007,0.00106,0.00173,0.00323,,,,,,,0.00079,0.00118,0.00194,0.00367,,,,,,,0.00068,0.00104,0.00169,0.00313,,,,,,,0.00083,0.00127,0.0021,0.00402,,,,,,,0.00067,0.00102,0.00166,0.00306,,,,,,,0.03485,0.02289,0.02063,0.02374,,,,,,,0.03152,0.02121,0.01951,0.02243,,,,,,,0.03447,0.02463,0.0227,0.0263,,,,,,,0.03851,0.0275,0.02521,0.02913,,,,,,,0.02223,0.01819,0.01813,0.02087,,,,,,,0.02576,0.02018,0.01983,0.0229,,,,,,,0.02178,0.01784,0.0179,0.02056,,,,,,,0.02692,0.02019,0.01929,0.02218,,,,,,,0.02101,0.01623,0.01592,0.01805,,,,,,,1.84654,3.25444,4.35461,5.38343,,,,,,,1.81477,3.25144,4.38764,5.40675,,,,,,,1.88894,3.60697,4.98466,6.18481,,,,,,,2.03745,3.88002,5.37692,6.64872,,,,,,,1.71328,3.49235,4.89905,5.99997,,,,,,,1.79117,3.58375,5.03942,6.2051,,,,,,,1.76746,3.57149,4.99542,6.10296,,,,,,,1.78965,3.46223,4.76612,5.84872,,,,,,,1.58714,3.06512,4.17539,5.0757,,,,,,,338.70878,341.25982,343.76078,351.50711,,,,,,,341.83755,344.15928,346.35219,353.67892,,,,,,,347.42618,349.85922,352.18677,359.78371,,,,,,,338.95121,341.53891,344.10576,351.97229,,,,,,,348.52169,350.00298,351.07207,356.81472,,,,,,,343.94128,344.48491,345.98897,352.31121,,,,,,,345.19505,346.60429,347.59402,353.18517,,,,,,,345.30944,347.15564,348.71385,355.14246,,,,,,,338.83939,340.41919,341.61991,347.4129,,,,,,,0.00444,0.00502,0.0058,0.00773,,,,,,,0.00447,0.00504,0.00582,0.00775,,,,,,,0.00451,0.00509,0.00586,0.00777,,,,,,,0.00447,0.00506,0.00586,0.00783,,,,,,,0.00452,0.00509,0.00586,0.00779,,,,,,,0.00452,0.0051,0.00589,0.00786,,,,,,,0.00447,0.00505,0.00583,0.00777,,,,,,,0.0045,0.00508,0.00586,0.0078,,,,,,,0.00443,0.005,0.00577,0.00767,,,,,,,0.01689,0.01974,0.02529,0.02546,,,,,,,0.01693,0.01979,0.02535,0.02552,,,,,,,0.01698,0.01984,0.02542,0.02559,,,,,,,0.01678,0.01961,0.02511,0.02529,,,,,,,0.01695,0.01981,0.02538,0.02555,,,,,,,0.01684,0.01968,0.0252,0.02538,,,,,,,0.01689,0.01974,0.02528,0.02546,,,,,,,0.01695,0.01981,0.02538,0.02555,,,,,,,0.01699,0.01986,0.02543,0.02561,,,,,,,0.08873,0.11753,0.16803,0.2269,,,,,,,0.08787,0.11607,0.16648,0.22512,,,,,,,0.0894,0.12717,0.18135,0.24781,,,,,,,0.0937,0.1356,0.19339,0.26473,,,,,,,0.07904,0.11606,0.16835,0.23214,,,,,,,0.08462,0.12322,0.17801,0.24507,,,,,,,0.08041,0.11602,0.16859,0.23163,,,,,,,0.08878,0.12446,0.17859,0.24333,,,,,,,0.08006,0.10955,0.1577,0.2136,,,,,,,0.00203,0.00303,0.00478,0.00866,,,,,,,0.00193,0.00288,0.00452,0.00809,,,,,,,0.00201,0.003,0.00473,0.00855,,,,,,,0.00208,0.00312,0.00495,0.00908,,,,,,,0.00167,0.00246,0.00379,0.00648,,,,,,,0.00174,0.00255,0.00396,0.00687,,,,,,,0.00165,0.00243,0.00375,0.00638,,,,,,,0.0018,0.00267,0.00415,0.00727,,,,,,,0.00166,0.00245,0.00376,0.00639,,,,,,,0.0328,0.03502,0.03899,0.04803,,,,,,,0.03353,0.0356,0.03929,0.0475,,,,,,,0.03624,0.03842,0.04235,0.05123,,,,,,,0.03135,0.03368,0.03787,0.04757,,,,,,,0.03488,0.03654,0.03942,0.04535,,,,,,,0.03266,0.03425,0.03734,0.04386,,,,,,,0.03225,0.03388,0.03671,0.0425,,,,,,,0.03396,0.03582,0.0391,0.04615,,,,,,,0.03316,0.03479,0.03761,0.04335,,,,,,,0.00767,0.00963,0.01315,0.02114,,,,,,,0.00758,0.00941,0.01267,0.01993,,,,,,,0.00807,0.01001,0.01348,0.02133,,,,,,,0.00761,0.00967,0.01338,0.02197,,,,,,,0.00722,0.00869,0.01124,0.01648,,,,,,,0.0071,0.0086,0.01133,0.01709,,,,,,,0.00686,0.0083,0.0108,0.01592,,,,,,,0.00737,0.00901,0.01191,0.01815,,,,,,,0.00698,0.00843,0.01092,0.016,,,,,,,0.00978,0.00328,0.00331,0.00338,,,,,,,0.00987,0.00331,0.00333,0.0034,,,,,,,0.01003,0.00337,0.00339,0.00346,,,,,,,0.00979,0.00329,0.00331,0.00339,,,,,,,0.01006,0.00337,0.00338,0.00343,,,,,,,0.00993,0.00332,0.00333,0.00339,,,,,,,0.00997,0.00334,0.00335,0.0034,,,,,,,0.00997,0.00334,0.00336,0.00342,,,,,,,0.00978,0.00328,0.00329,0.00334,,,,,,,0.09857,0.14333,0.21165,0.28985,,,,,,,0.08741,0.13087,0.19744,0.27031,,,,,,,0.09711,0.152,0.22956,0.31668,,,,,,,0.10992,0.17081,0.25617,0.35284,,,,,,,0.05693,0.10564,0.17445,0.24013,,,,,,,0.06835,0.11892,0.19293,0.26625,,,,,,,0.05507,0.10266,0.1708,0.23483,,,,,,,0.07209,0.12068,0.19006,0.26088,,,,,,,0.05293,0.0938,0.15285,0.20746,,,, +Compact car,E85,2020,,,,0.00087,0.00132,0.00202,0.00412,,,,,,,0.0008,0.0012,0.00184,0.0037,,,,,,,0.00085,0.0013,0.00199,0.00404,,,,,,,0.00093,0.00141,0.00218,0.00448,,,,,,,0.00058,0.00087,0.0013,0.00252,,,,,,,0.00064,0.00096,0.00145,0.00285,,,,,,,0.00057,0.00085,0.00127,0.00245,,,,,,,0.00069,0.00103,0.00156,0.0031,,,,,,,0.00057,0.00084,0.00125,0.0024,,,,,,,0.02681,0.0184,0.01519,0.01768,,,,,,,0.02379,0.01675,0.01408,0.0165,,,,,,,0.02646,0.01947,0.01639,0.01951,,,,,,,0.02992,0.0219,0.01835,0.02174,,,,,,,0.01524,0.01318,0.01202,0.01471,,,,,,,0.01785,0.01495,0.01341,0.01637,,,,,,,0.01476,0.01286,0.01181,0.01445,,,,,,,0.0195,0.01527,0.01332,0.01598,,,,,,,0.01413,0.0117,0.01053,0.0126,,,,,,,1.45352,2.16089,2.69234,3.59311,,,,,,,1.41959,2.13393,2.67506,3.57809,,,,,,,1.48991,2.36658,3.03156,4.13073,,,,,,,1.61907,2.57225,3.31014,4.48364,,,,,,,1.3158,2.21066,2.86233,3.9013,,,,,,,1.36795,2.29185,2.97826,4.07701,,,,,,,1.35422,2.26522,2.9278,3.97383,,,,,,,1.38697,2.22909,2.8408,3.84006,,,,,,,1.21288,1.94605,2.45152,3.27953,,,,,,,269.01533,270.89532,272.70549,288.82344,,,,,,,271.33691,273.03425,274.58678,290.39166,,,,,,,275.82729,277.61108,279.27164,295.47622,,,,,,,269.27046,271.18449,273.05384,289.29186,,,,,,,276.06689,277.09473,277.71353,292.20287,,,,,,,271.67987,272.9616,273.94543,288.82857,,,,,,,273.40893,274.3833,274.93984,289.2015,,,,,,,273.76964,275.08856,276.11337,291.16434,,,,,,,268.43382,269.53809,270.26469,284.54788,,,,,,,0.00453,0.00505,0.00577,0.00714,,,,,,,0.00455,0.00507,0.0058,0.00716,,,,,,,0.0046,0.00511,0.00583,0.00718,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00511,0.00584,0.0072,,,,,,,0.0046,0.00512,0.00587,0.00725,,,,,,,0.00455,0.00507,0.00581,0.00717,,,,,,,0.00458,0.0051,0.00584,0.0072,,,,,,,0.00451,0.00502,0.00574,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01972,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06124,0.0945,0.12673,0.1696,,,,,,,0.06,0.09287,0.12491,0.16743,,,,,,,0.06149,0.10133,0.13546,0.18437,,,,,,,0.065,0.1087,0.1454,0.19837,,,,,,,0.05169,0.09018,0.12245,0.16857,,,,,,,0.05617,0.09681,0.13099,0.17994,,,,,,,0.05249,0.09057,0.12326,0.16877,,,,,,,0.05882,0.09832,0.13227,0.17926,,,,,,,0.0517,0.08561,0.1155,0.15524,,,,,,,0.0017,0.00245,0.00356,0.0066,,,,,,,0.00163,0.00234,0.00338,0.00619,,,,,,,0.00168,0.00243,0.00352,0.00652,,,,,,,0.00174,0.00252,0.00368,0.00688,,,,,,,0.00142,0.00202,0.00286,0.00505,,,,,,,0.00146,0.00209,0.00298,0.00533,,,,,,,0.00141,0.002,0.00283,0.00498,,,,,,,0.00153,0.00218,0.00312,0.00561,,,,,,,0.00142,0.00201,0.00284,0.00499,,,,,,,0.03205,0.03375,0.03627,0.04333,,,,,,,0.03284,0.03442,0.03676,0.04324,,,,,,,0.0355,0.03717,0.03966,0.04661,,,,,,,0.03056,0.03233,0.03499,0.04252,,,,,,,0.03435,0.03562,0.03744,0.04227,,,,,,,0.03192,0.03327,0.03523,0.04049,,,,,,,0.03172,0.03297,0.03476,0.0395,,,,,,,0.03335,0.03477,0.03685,0.04249,,,,,,,0.03264,0.03388,0.03567,0.04036,,,,,,,0.00701,0.00851,0.01074,0.01699,,,,,,,0.00697,0.00837,0.01044,0.01617,,,,,,,0.00742,0.0089,0.0111,0.01725,,,,,,,0.00691,0.00848,0.01083,0.0175,,,,,,,0.00675,0.00787,0.00949,0.01376,,,,,,,0.00654,0.00773,0.00946,0.01412,,,,,,,0.00639,0.0075,0.00908,0.01327,,,,,,,0.00683,0.00809,0.00993,0.01492,,,,,,,0.00652,0.00762,0.0092,0.01335,,,,,,,0.00259,0.00261,0.00262,0.00278,,,,,,,0.00261,0.00263,0.00264,0.0028,,,,,,,0.00265,0.00267,0.00269,0.00284,,,,,,,0.00259,0.00261,0.00263,0.00278,,,,,,,0.00266,0.00267,0.00267,0.00281,,,,,,,0.00261,0.00263,0.00264,0.00278,,,,,,,0.00263,0.00264,0.00265,0.00278,,,,,,,0.00264,0.00265,0.00266,0.0028,,,,,,,0.00258,0.00259,0.0026,0.00274,,,,,,,0.08216,0.11442,0.15619,0.21824,,,,,,,0.07213,0.10264,0.1424,0.20078,,,,,,,0.08106,0.11925,0.16565,0.23725,,,,,,,0.09228,0.13498,0.18658,0.26605,,,,,,,0.04408,0.0752,0.11299,0.16907,,,,,,,0.0527,0.08696,0.12835,0.19074,,,,,,,0.04227,0.07265,0.10993,0.16461,,,,,,,0.05801,0.09032,0.12989,0.18885,,,,,,,0.04032,0.06646,0.09873,0.14442,,, +Compact car,E85,2025,,,,,0.00057,0.00084,0.00131,0.00275,,,,,,,0.00052,0.00077,0.00119,0.00247,,,,,,,0.00056,0.00083,0.00129,0.0027,,,,,,,0.00061,0.00091,0.00142,0.00298,,,,,,,0.00038,0.00056,0.00085,0.0017,,,,,,,0.00042,0.00062,0.00094,0.00192,,,,,,,0.00037,0.00054,0.00082,0.00165,,,,,,,0.00045,0.00066,0.00102,0.00208,,,,,,,0.00037,0.00054,0.00081,0.00162,,,,,,,0.02351,0.01489,0.01178,0.01359,,,,,,,0.02039,0.01319,0.01062,0.01237,,,,,,,0.02304,0.01537,0.01238,0.01461,,,,,,,0.02641,0.01752,0.01404,0.01647,,,,,,,0.01161,0.00901,0.00796,0.00986,,,,,,,0.01419,0.01062,0.00917,0.01127,,,,,,,0.01109,0.00869,0.00774,0.00961,,,,,,,0.01595,0.01125,0.00942,0.01132,,,,,,,0.01058,0.00795,0.00694,0.00843,,,,,,,1.08539,1.56339,1.96562,2.58505,,,,,,,1.03627,1.5157,1.92032,2.53384,,,,,,,1.09635,1.68349,2.17513,2.91486,,,,,,,1.2089,1.85454,2.40288,3.19971,,,,,,,0.88898,1.47777,1.94572,2.62271,,,,,,,0.94479,1.55716,2.05286,2.77409,,,,,,,0.91344,1.51548,1.99261,2.67546,,,,,,,0.97421,1.53404,1.98107,2.64422,,,,,,,0.82125,1.30501,1.6716,2.21604,,,,,,,217.66378,219.28844,221.18074,235.00765,,,,,,,219.41191,220.88356,222.55123,236.08278,,,,,,,223.08672,224.63174,226.40032,240.28406,,,,,,,217.92165,219.57679,221.52542,235.46978,,,,,,,222.77742,223.68621,224.53661,236.84508,,,,,,,219.42429,220.5464,221.71518,234.40238,,,,,,,220.61456,221.4783,222.27308,234.38491,,,,,,,221.12115,222.27455,223.48068,236.3124,,,,,,,216.64457,217.61431,218.54645,230.68156,,,,,,,0.00456,0.00504,0.00575,0.00702,,,,,,,0.00458,0.00506,0.00578,0.00704,,,,,,,0.00462,0.0051,0.00581,0.00707,,,,,,,0.00459,0.00508,0.00581,0.0071,,,,,,,0.00463,0.00511,0.00582,0.00708,,,,,,,0.00463,0.00512,0.00585,0.00713,,,,,,,0.00458,0.00507,0.00579,0.00706,,,,,,,0.00461,0.0051,0.00582,0.00708,,,,,,,0.00454,0.00502,0.00572,0.00697,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04691,0.06846,0.09104,0.12418,,,,,,,0.0454,0.06658,0.08888,0.12158,,,,,,,0.04658,0.07207,0.09571,0.13307,,,,,,,0.04969,0.0779,0.10349,0.14401,,,,,,,0.03693,0.06116,0.08298,0.1173,,,,,,,0.04116,0.06699,0.09036,0.12712,,,,,,,0.03763,0.06173,0.0839,0.11789,,,,,,,0.04308,0.06819,0.09138,0.12694,,,,,,,0.03685,0.05828,0.07856,0.10842,,,,,,,0.00111,0.00158,0.00232,0.00442,,,,,,,0.00106,0.0015,0.0022,0.00416,,,,,,,0.0011,0.00156,0.0023,0.00437,,,,,,,0.00114,0.00162,0.0024,0.00461,,,,,,,0.00093,0.0013,0.00187,0.0034,,,,,,,0.00096,0.00134,0.00194,0.00359,,,,,,,0.00092,0.00128,0.00185,0.00336,,,,,,,0.001,0.0014,0.00203,0.00378,,,,,,,0.00093,0.00129,0.00186,0.00336,,,,,,,0.03078,0.03182,0.03352,0.03838,,,,,,,0.03163,0.03261,0.03418,0.03866,,,,,,,0.03424,0.03527,0.03694,0.04173,,,,,,,0.02924,0.03033,0.03212,0.03729,,,,,,,0.03333,0.03411,0.03534,0.03873,,,,,,,0.03086,0.03169,0.03301,0.03668,,,,,,,0.03071,0.03148,0.03269,0.03601,,,,,,,0.03224,0.03311,0.03451,0.03844,,,,,,,0.03162,0.03239,0.0336,0.03689,,,,,,,0.00589,0.00681,0.00831,0.01261,,,,,,,0.0059,0.00676,0.00815,0.01212,,,,,,,0.00631,0.00722,0.00869,0.01293,,,,,,,0.00575,0.00671,0.00829,0.01287,,,,,,,0.00585,0.00654,0.00763,0.01062,,,,,,,0.0056,0.00633,0.0075,0.01075,,,,,,,0.0055,0.00618,0.00725,0.01019,,,,,,,0.00584,0.00662,0.00786,0.01133,,,,,,,0.00562,0.0063,0.00737,0.01028,,,,,,,0.0021,0.00211,0.00213,0.00226,,,,,,,0.00211,0.00213,0.00214,0.00227,,,,,,,0.00215,0.00216,0.00218,0.00231,,,,,,,0.0021,0.00211,0.00213,0.00227,,,,,,,0.00214,0.00215,0.00216,0.00228,,,,,,,0.00211,0.00212,0.00213,0.00226,,,,,,,0.00212,0.00213,0.00214,0.00226,,,,,,,0.00213,0.00214,0.00215,0.00227,,,,,,,0.00209,0.00209,0.0021,0.00222,,,,,,,0.07296,0.09507,0.12517,0.17166,,,,,,,0.06262,0.083,0.11094,0.15395,,,,,,,0.07139,0.09674,0.12936,0.18163,,,,,,,0.08235,0.11099,0.14764,0.20603,,,,,,,0.03367,0.05226,0.07628,0.11432,,,,,,,0.04216,0.06311,0.09001,0.13304,,,,,,,0.03181,0.04984,0.07339,0.11035,,,,,,,0.0479,0.0682,0.09461,0.13618,,,,,,,0.03024,0.04581,0.06634,0.09752,, +Compact car,E85,2030,,,,,,0.00057,0.00084,0.00131,0.00237,,,,,,,0.00052,0.00077,0.00119,0.00214,,,,,,,0.00056,0.00083,0.00129,0.00233,,,,,,,0.00061,0.0009,0.00141,0.00257,,,,,,,0.00038,0.00055,0.00084,0.00147,,,,,,,0.00042,0.00061,0.00094,0.00166,,,,,,,0.00037,0.00054,0.00082,0.00143,,,,,,,0.00045,0.00066,0.00101,0.0018,,,,,,,0.00037,0.00053,0.00081,0.0014,,,,,,,0.02236,0.01377,0.01077,0.01198,,,,,,,0.01923,0.01206,0.0096,0.01074,,,,,,,0.02185,0.01406,0.0112,0.01262,,,,,,,0.02517,0.01612,0.01277,0.01433,,,,,,,0.0104,0.00771,0.00677,0.00788,,,,,,,0.01296,0.00926,0.00793,0.00917,,,,,,,0.00987,0.00739,0.00656,0.00764,,,,,,,0.01474,0.00998,0.00828,0.00944,,,,,,,0.00941,0.00678,0.0059,0.00676,,,,,,,0.98558,1.41119,1.78735,2.24138,,,,,,,0.93289,1.35869,1.73542,2.17671,,,,,,,0.99005,1.50974,1.96577,2.49085,,,,,,,1.09763,1.67095,2.18034,2.75085,,,,,,,0.77517,1.29287,1.72198,2.17577,,,,,,,0.83148,1.37107,1.82657,2.31624,,,,,,,0.79585,1.32603,1.76386,2.22195,,,,,,,0.86339,1.35825,1.77077,2.22899,,,,,,,0.71656,1.14344,1.48068,1.84947,,,,,,,200.30571,202.3278,205.46049,214.30265,,,,,,,201.86591,203.75013,206.67797,215.20462,,,,,,,205.2631,207.22437,210.27146,219.06104,,,,,,,200.56287,202.61433,205.80491,214.75751,,,,,,,204.79094,206.16221,208.32421,215.62132,,,,,,,201.77862,203.33949,205.78757,213.51296,,,,,,,202.79611,204.12091,206.21704,213.37154,,,,,,,203.34232,204.93589,207.42999,215.25765,,,,,,,199.16263,200.5746,202.77501,210.02386,,,,,,,0.00455,0.00502,0.00575,0.00698,,,,,,,0.00457,0.00504,0.00577,0.007,,,,,,,0.00462,0.00509,0.00581,0.00703,,,,,,,0.00458,0.00506,0.0058,0.00707,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00462,0.0051,0.00584,0.00709,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00693,,,,,,,0.01689,0.01965,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04137,0.0591,0.07995,0.10563,,,,,,,0.03976,0.05713,0.07767,0.10283,,,,,,,0.04076,0.06155,0.08336,0.11163,,,,,,,0.04365,0.06677,0.09043,0.12112,,,,,,,0.03121,0.05078,0.07074,0.09592,,,,,,,0.03531,0.05629,0.07774,0.10501,,,,,,,0.03188,0.05138,0.07166,0.09672,,,,,,,0.03694,0.05733,0.07862,0.10518,,,,,,,0.03113,0.04851,0.06706,0.08926,,,,,,,0.00111,0.00157,0.00232,0.00386,,,,,,,0.00106,0.0015,0.0022,0.00363,,,,,,,0.0011,0.00156,0.0023,0.00381,,,,,,,0.00114,0.00161,0.0024,0.00401,,,,,,,0.00093,0.00129,0.00187,0.00298,,,,,,,0.00096,0.00134,0.00194,0.00314,,,,,,,0.00092,0.00128,0.00185,0.00295,,,,,,,0.001,0.0014,0.00203,0.00331,,,,,,,0.00093,0.00129,0.00186,0.00295,,,,,,,0.03078,0.03181,0.03351,0.03708,,,,,,,0.03163,0.03259,0.03418,0.03746,,,,,,,0.03424,0.03525,0.03694,0.04045,,,,,,,0.02924,0.03032,0.03212,0.03591,,,,,,,0.03333,0.0341,0.03534,0.03781,,,,,,,0.03086,0.03168,0.03301,0.0357,,,,,,,0.03071,0.03147,0.03269,0.03512,,,,,,,0.03223,0.0331,0.03451,0.03738,,,,,,,0.03162,0.03238,0.03359,0.036,,,,,,,0.00588,0.00679,0.0083,0.01146,,,,,,,0.0059,0.00675,0.00815,0.01106,,,,,,,0.0063,0.0072,0.00869,0.0118,,,,,,,0.00575,0.0067,0.00829,0.01165,,,,,,,0.00585,0.00653,0.00763,0.00982,,,,,,,0.00559,0.00632,0.0075,0.00988,,,,,,,0.0055,0.00617,0.00725,0.0094,,,,,,,0.00584,0.00661,0.00786,0.0104,,,,,,,0.00562,0.00629,0.00737,0.00949,,,,,,,0.00193,0.00195,0.00198,0.00206,,,,,,,0.00194,0.00196,0.00199,0.00207,,,,,,,0.00198,0.00199,0.00202,0.00211,,,,,,,0.00193,0.00195,0.00198,0.00207,,,,,,,0.00197,0.00198,0.00201,0.00208,,,,,,,0.00194,0.00196,0.00198,0.00206,,,,,,,0.00195,0.00196,0.00198,0.00205,,,,,,,0.00196,0.00197,0.002,0.00207,,,,,,,0.00192,0.00193,0.00195,0.00202,,,,,,,0.0696,0.08869,0.11629,0.15342,,,,,,,0.05924,0.07661,0.10197,0.13549,,,,,,,0.0679,0.08937,0.11901,0.15916,,,,,,,0.07869,0.10307,0.1365,0.18182,,,,,,,0.03022,0.04508,0.06595,0.09205,,,,,,,0.03862,0.05558,0.0792,0.10947,,,,,,,0.02837,0.04271,0.06311,0.08831,,,,,,,0.04444,0.06117,0.08463,0.11497,,,,,,,0.02693,0.03939,0.05722,0.07884, +Compact car,E85,2035,,,,,,,0.00057,0.00084,0.00131,0.00233,,,,,,,0.00052,0.00077,0.00119,0.0021,,,,,,,0.00056,0.00083,0.00129,0.00229,,,,,,,0.00061,0.0009,0.00142,0.00252,,,,,,,0.00038,0.00056,0.00084,0.00145,,,,,,,0.00042,0.00061,0.00094,0.00163,,,,,,,0.00037,0.00054,0.00082,0.00141,,,,,,,0.00045,0.00066,0.00102,0.00177,,,,,,,0.00037,0.00054,0.00081,0.00138,,,,,,,0.0222,0.01375,0.01078,0.01175,,,,,,,0.0191,0.01204,0.00961,0.0105,,,,,,,0.0217,0.01404,0.01121,0.01232,,,,,,,0.025,0.0161,0.01278,0.014,,,,,,,0.01034,0.00771,0.00678,0.00755,,,,,,,0.01288,0.00926,0.00794,0.00884,,,,,,,0.00981,0.00739,0.00656,0.00732,,,,,,,0.01464,0.00997,0.00829,0.00914,,,,,,,0.00935,0.00678,0.0059,0.0065,,,,,,,0.98657,1.41248,1.78821,2.19293,,,,,,,0.93426,1.36,1.73617,2.12567,,,,,,,0.99163,1.51136,1.96664,2.42952,,,,,,,1.09929,1.67271,2.18132,2.68577,,,,,,,0.7778,1.29441,1.72248,2.10907,,,,,,,0.834,1.37269,1.82716,2.24814,,,,,,,0.79861,1.32758,1.76433,2.15426,,,,,,,0.86555,1.35965,1.77141,2.16803,,,,,,,0.71875,1.14457,1.48115,1.79525,,,,,,,200.25816,202.33776,205.47918,211.25641,,,,,,,201.82136,203.75952,206.69507,212.12905,,,,,,,205.21644,207.23425,210.28993,215.93624,,,,,,,200.51388,202.6244,205.82391,211.712,,,,,,,204.75598,206.1685,208.33593,212.4795,,,,,,,201.73976,203.34697,205.8017,210.42728,,,,,,,202.7624,204.12714,206.22844,210.26037,,,,,,,203.30325,204.94361,207.44444,212.14766,,,,,,,199.12895,200.58166,202.78793,206.96749,,,,,,,0.00454,0.00502,0.00575,0.007,,,,,,,0.00456,0.00505,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00705,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00582,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00457,0.00505,0.00578,0.00704,,,,,,,0.0046,0.00508,0.00581,0.00706,,,,,,,0.00453,0.005,0.00572,0.00695,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01972,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.04135,0.05924,0.08,0.10286,,,,,,,0.03975,0.05728,0.07772,0.10002,,,,,,,0.04075,0.06171,0.08341,0.10833,,,,,,,0.04365,0.06694,0.09049,0.11758,,,,,,,0.03124,0.05094,0.07078,0.09257,,,,,,,0.03533,0.05645,0.07778,0.10155,,,,,,,0.0319,0.05153,0.0717,0.09341,,,,,,,0.03695,0.05749,0.07867,0.10182,,,,,,,0.03115,0.04865,0.0671,0.08631,,,,,,,0.00111,0.00157,0.00232,0.00379,,,,,,,0.00106,0.0015,0.0022,0.00357,,,,,,,0.0011,0.00156,0.0023,0.00375,,,,,,,0.00114,0.00162,0.0024,0.00395,,,,,,,0.00093,0.0013,0.00187,0.00294,,,,,,,0.00096,0.00134,0.00194,0.00309,,,,,,,0.00092,0.00128,0.00185,0.0029,,,,,,,0.001,0.0014,0.00203,0.00325,,,,,,,0.00093,0.00129,0.00186,0.00291,,,,,,,0.03078,0.03182,0.03351,0.03693,,,,,,,0.03163,0.0326,0.03418,0.03733,,,,,,,0.03424,0.03526,0.03694,0.0403,,,,,,,0.02924,0.03033,0.03212,0.03575,,,,,,,0.03333,0.03411,0.03534,0.03771,,,,,,,0.03086,0.03169,0.03301,0.03559,,,,,,,0.03071,0.03148,0.03269,0.03502,,,,,,,0.03223,0.03311,0.03451,0.03726,,,,,,,0.03162,0.03239,0.0336,0.0359,,,,,,,0.00588,0.0068,0.0083,0.01133,,,,,,,0.0059,0.00676,0.00815,0.01094,,,,,,,0.0063,0.00721,0.00869,0.01167,,,,,,,0.00575,0.00671,0.00829,0.01151,,,,,,,0.00585,0.00654,0.00763,0.00972,,,,,,,0.00559,0.00633,0.0075,0.00978,,,,,,,0.0055,0.00618,0.00725,0.00931,,,,,,,0.00584,0.00662,0.00786,0.01029,,,,,,,0.00562,0.0063,0.00737,0.00941,,,,,,,0.00193,0.00195,0.00198,0.00203,,,,,,,0.00194,0.00196,0.00199,0.00204,,,,,,,0.00198,0.00199,0.00202,0.00208,,,,,,,0.00193,0.00195,0.00198,0.00204,,,,,,,0.00197,0.00198,0.00201,0.00205,,,,,,,0.00194,0.00196,0.00198,0.00203,,,,,,,0.00195,0.00196,0.00199,0.00202,,,,,,,0.00196,0.00197,0.002,0.00204,,,,,,,0.00192,0.00193,0.00195,0.00199,,,,,,,0.06944,0.08881,0.11639,0.15086,,,,,,,0.05912,0.07672,0.10207,0.13281,,,,,,,0.06775,0.08951,0.11912,0.15578,,,,,,,0.07852,0.10322,0.13663,0.1782,,,,,,,0.03018,0.04519,0.06601,0.08842,,,,,,,0.03856,0.0557,0.07927,0.10567,,,,,,,0.02834,0.04282,0.06316,0.08473,,,,,,,0.04436,0.06128,0.0847,0.11165,,,,,,,0.02689,0.03948,0.05727,0.07588 +Compact car,E85,2040,,,,,,,,0.00057,0.00084,0.00131,,,,,,,,0.00052,0.00077,0.00119,,,,,,,,0.00056,0.00083,0.00129,,,,,,,,0.00061,0.0009,0.00141,,,,,,,,0.00038,0.00055,0.00084,,,,,,,,0.00042,0.00061,0.00094,,,,,,,,0.00037,0.00054,0.00082,,,,,,,,0.00045,0.00066,0.00102,,,,,,,,0.00037,0.00053,0.00081,,,,,,,,0.02221,0.01375,0.01078,,,,,,,,0.0191,0.01204,0.0096,,,,,,,,0.02171,0.01404,0.01121,,,,,,,,0.02501,0.01609,0.01277,,,,,,,,0.01034,0.0077,0.00677,,,,,,,,0.01288,0.00926,0.00794,,,,,,,,0.00982,0.00739,0.00656,,,,,,,,0.01465,0.00997,0.00829,,,,,,,,0.00935,0.00678,0.0059,,,,,,,,0.98525,1.41142,1.78775,,,,,,,,0.93295,1.35899,1.73577,,,,,,,,0.99013,1.51014,1.96617,,,,,,,,1.09762,1.67136,2.18079,,,,,,,,0.77646,1.29343,1.7222,,,,,,,,0.83258,1.37162,1.82683,,,,,,,,0.79725,1.32661,1.76407,,,,,,,,0.86417,1.35866,1.77106,,,,,,,,0.7176,1.14381,1.48089,,,,,,,,200.24516,202.32145,205.46903,,,,,,,,201.80909,203.74434,206.68595,,,,,,,,205.20366,207.21809,210.27973,,,,,,,,200.50052,202.60759,205.81349,,,,,,,,204.74695,206.15721,208.32926,,,,,,,,201.72947,203.33405,205.79394,,,,,,,,202.75346,204.11593,206.22203,,,,,,,,203.29271,204.93044,207.43627,,,,,,,,199.1195,200.57008,202.78087,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00582,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01977,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.0413,0.05916,0.07997,,,,,,,,0.0397,0.05719,0.0777,,,,,,,,0.0407,0.06161,0.08338,,,,,,,,0.0436,0.06684,0.09046,,,,,,,,0.03119,0.05085,0.07075,,,,,,,,0.03528,0.05636,0.07776,,,,,,,,0.03186,0.05145,0.07168,,,,,,,,0.0369,0.0574,0.07864,,,,,,,,0.03111,0.04857,0.06708,,,,,,,,0.00111,0.00157,0.00232,,,,,,,,0.00106,0.0015,0.0022,,,,,,,,0.0011,0.00156,0.0023,,,,,,,,0.00113,0.00162,0.0024,,,,,,,,0.00093,0.00129,0.00187,,,,,,,,0.00096,0.00134,0.00194,,,,,,,,0.00092,0.00128,0.00185,,,,,,,,0.001,0.0014,0.00203,,,,,,,,0.00093,0.00129,0.00186,,,,,,,,0.03078,0.03181,0.03351,,,,,,,,0.03163,0.0326,0.03418,,,,,,,,0.03424,0.03526,0.03694,,,,,,,,0.02924,0.03032,0.03212,,,,,,,,0.03333,0.03411,0.03534,,,,,,,,0.03086,0.03168,0.03301,,,,,,,,0.03071,0.03148,0.03269,,,,,,,,0.03223,0.03311,0.03451,,,,,,,,0.03162,0.03238,0.0336,,,,,,,,0.00588,0.0068,0.0083,,,,,,,,0.0059,0.00675,0.00815,,,,,,,,0.0063,0.00721,0.00869,,,,,,,,0.00575,0.00671,0.00829,,,,,,,,0.00585,0.00654,0.00763,,,,,,,,0.00559,0.00632,0.0075,,,,,,,,0.0055,0.00618,0.00725,,,,,,,,0.00584,0.00661,0.00786,,,,,,,,0.00562,0.0063,0.00737,,,,,,,,0.00193,0.00195,0.00198,,,,,,,,0.00194,0.00196,0.00199,,,,,,,,0.00198,0.00199,0.00202,,,,,,,,0.00193,0.00195,0.00198,,,,,,,,0.00197,0.00198,0.00201,,,,,,,,0.00194,0.00196,0.00198,,,,,,,,0.00195,0.00196,0.00198,,,,,,,,0.00196,0.00197,0.002,,,,,,,,0.00192,0.00193,0.00195,,,,,,,,0.06936,0.0887,0.11634,,,,,,,,0.05905,0.07663,0.10202,,,,,,,,0.06768,0.08939,0.11906,,,,,,,,0.07843,0.10309,0.13656,,,,,,,,0.03014,0.04512,0.06598,,,,,,,,0.03851,0.05562,0.07923,,,,,,,,0.0283,0.04275,0.06314,,,,,,,,0.0443,0.06119,0.08466,,,,,,,,0.02686,0.03942,0.05725 +Compact car,E85,2045,,,,,,,,,0.00057,0.00084,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00056,0.00083,,,,,,,,,0.00061,0.0009,,,,,,,,,0.00038,0.00055,,,,,,,,,0.00042,0.00061,,,,,,,,,0.00037,0.00054,,,,,,,,,0.00045,0.00066,,,,,,,,,0.00037,0.00053,,,,,,,,,0.02221,0.01375,,,,,,,,,0.01911,0.01204,,,,,,,,,0.02171,0.01404,,,,,,,,,0.02501,0.01609,,,,,,,,,0.01034,0.0077,,,,,,,,,0.01288,0.00926,,,,,,,,,0.00982,0.00739,,,,,,,,,0.01465,0.00997,,,,,,,,,0.00935,0.00678,,,,,,,,,0.98441,1.41117,,,,,,,,,0.93214,1.35875,,,,,,,,,0.98921,1.50985,,,,,,,,,1.0966,1.67104,,,,,,,,,0.77567,1.29318,,,,,,,,,0.83174,1.37136,,,,,,,,,0.79645,1.32636,,,,,,,,,0.86335,1.35842,,,,,,,,,0.71691,1.14361,,,,,,,,,200.2348,202.31787,,,,,,,,,201.80023,203.74198,,,,,,,,,205.19357,207.21474,,,,,,,,,200.4901,202.6043,,,,,,,,,204.73938,206.1543,,,,,,,,,201.72166,203.33161,,,,,,,,,202.74611,204.11347,,,,,,,,,203.2848,204.92815,,,,,,,,,199.11168,200.5669,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04127,0.05913,,,,,,,,,0.03967,0.05717,,,,,,,,,0.04067,0.06159,,,,,,,,,0.04356,0.06681,,,,,,,,,0.03116,0.05083,,,,,,,,,0.03525,0.05634,,,,,,,,,0.03183,0.05142,,,,,,,,,0.03687,0.05738,,,,,,,,,0.03108,0.04855,,,,,,,,,0.00111,0.00157,,,,,,,,,0.00106,0.0015,,,,,,,,,0.0011,0.00156,,,,,,,,,0.00113,0.00161,,,,,,,,,0.00093,0.00129,,,,,,,,,0.00096,0.00134,,,,,,,,,0.00092,0.00128,,,,,,,,,0.001,0.0014,,,,,,,,,0.00093,0.00129,,,,,,,,,0.03077,0.03181,,,,,,,,,0.03163,0.0326,,,,,,,,,0.03423,0.03526,,,,,,,,,0.02924,0.03032,,,,,,,,,0.03333,0.03411,,,,,,,,,0.03085,0.03168,,,,,,,,,0.03071,0.03148,,,,,,,,,0.03223,0.0331,,,,,,,,,0.03162,0.03238,,,,,,,,,0.00588,0.0068,,,,,,,,,0.0059,0.00675,,,,,,,,,0.0063,0.00721,,,,,,,,,0.00574,0.00671,,,,,,,,,0.00585,0.00653,,,,,,,,,0.00559,0.00632,,,,,,,,,0.0055,0.00618,,,,,,,,,0.00584,0.00661,,,,,,,,,0.00562,0.0063,,,,,,,,,0.00193,0.00195,,,,,,,,,0.00194,0.00196,,,,,,,,,0.00198,0.00199,,,,,,,,,0.00193,0.00195,,,,,,,,,0.00197,0.00198,,,,,,,,,0.00194,0.00196,,,,,,,,,0.00195,0.00196,,,,,,,,,0.00196,0.00197,,,,,,,,,0.00192,0.00193,,,,,,,,,0.06931,0.08867,,,,,,,,,0.059,0.0766,,,,,,,,,0.06762,0.08936,,,,,,,,,0.07837,0.10306,,,,,,,,,0.03011,0.0451,,,,,,,,,0.03848,0.05559,,,,,,,,,0.02827,0.04273,,,,,,,,,0.04427,0.06117,,,,,,,,,0.02683,0.03941 +Compact car,E85,2050,,,,,,,,,,0.00057,,,,,,,,,,0.00052,,,,,,,,,,0.00056,,,,,,,,,,0.00061,,,,,,,,,,0.00038,,,,,,,,,,0.00042,,,,,,,,,,0.00037,,,,,,,,,,0.00045,,,,,,,,,,0.00037,,,,,,,,,,0.02221,,,,,,,,,,0.01911,,,,,,,,,,0.02171,,,,,,,,,,0.02501,,,,,,,,,,0.01034,,,,,,,,,,0.01288,,,,,,,,,,0.00982,,,,,,,,,,0.01465,,,,,,,,,,0.00935,,,,,,,,,,0.98441,,,,,,,,,,0.93214,,,,,,,,,,0.98921,,,,,,,,,,1.0966,,,,,,,,,,0.77567,,,,,,,,,,0.83174,,,,,,,,,,0.79646,,,,,,,,,,0.86335,,,,,,,,,,0.71691,,,,,,,,,,200.2347,,,,,,,,,,201.80021,,,,,,,,,,205.1935,,,,,,,,,,200.49023,,,,,,,,,,204.73927,,,,,,,,,,201.72163,,,,,,,,,,202.74602,,,,,,,,,,203.28478,,,,,,,,,,199.11168,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04127,,,,,,,,,,0.03967,,,,,,,,,,0.04067,,,,,,,,,,0.04356,,,,,,,,,,0.03116,,,,,,,,,,0.03525,,,,,,,,,,0.03183,,,,,,,,,,0.03687,,,,,,,,,,0.03108,,,,,,,,,,0.00111,,,,,,,,,,0.00106,,,,,,,,,,0.0011,,,,,,,,,,0.00113,,,,,,,,,,0.00093,,,,,,,,,,0.00096,,,,,,,,,,0.00092,,,,,,,,,,0.001,,,,,,,,,,0.00093,,,,,,,,,,0.03077,,,,,,,,,,0.03163,,,,,,,,,,0.03423,,,,,,,,,,0.02924,,,,,,,,,,0.03333,,,,,,,,,,0.03085,,,,,,,,,,0.03071,,,,,,,,,,0.03223,,,,,,,,,,0.03162,,,,,,,,,,0.00588,,,,,,,,,,0.0059,,,,,,,,,,0.0063,,,,,,,,,,0.00574,,,,,,,,,,0.00585,,,,,,,,,,0.00559,,,,,,,,,,0.0055,,,,,,,,,,0.00584,,,,,,,,,,0.00562,,,,,,,,,,0.00193,,,,,,,,,,0.00194,,,,,,,,,,0.00198,,,,,,,,,,0.00193,,,,,,,,,,0.00197,,,,,,,,,,0.00194,,,,,,,,,,0.00195,,,,,,,,,,0.00196,,,,,,,,,,0.00192,,,,,,,,,,0.06931,,,,,,,,,,0.059,,,,,,,,,,0.06762,,,,,,,,,,0.07837,,,,,,,,,,0.03011,,,,,,,,,,0.03848,,,,,,,,,,0.02827,,,,,,,,,,0.04427,,,,,,,,,,0.02683 +Compact car,ELC,1990,0.02838,,,,,,,,,,0.02935,,,,,,,,,,0.03186,,,,,,,,,,0.02676,,,,,,,,,,0.0314,,,,,,,,,,0.02885,,,,,,,,,,0.0288,,,,,,,,,,0.03013,,,,,,,,,,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,1995,0.02838,0.02838,,,,,,,,,0.02935,0.02935,,,,,,,,,0.03186,0.03186,,,,,,,,,0.02676,0.02676,,,,,,,,,0.0314,0.0314,,,,,,,,,0.02885,0.02885,,,,,,,,,0.0288,0.0288,,,,,,,,,0.03013,0.03013,,,,,,,,,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2000,0.02838,0.02838,0.02838,,,,,,,,0.02935,0.02935,0.02935,,,,,,,,0.03186,0.03186,0.03186,,,,,,,,0.02676,0.02676,0.02676,,,,,,,,0.0314,0.0314,0.0314,,,,,,,,0.02885,0.02885,0.02885,,,,,,,,0.0288,0.0288,0.0288,,,,,,,,0.03013,0.03013,0.03013,,,,,,,,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2005,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00461,0.00735,0.01002,0.02419,,,,,,,0.00422,0.00653,0.00888,0.02126,,,,,,,0.00489,0.00602,0.00813,0.0231,,,,,,,0.00503,0.00746,0.01019,0.02536,,,,,,,0.00294,0.0046,0.00628,0.01327,,,,,,,0.00331,0.0047,0.0064,0.01503,,,,,,,0.00285,0.00434,0.0059,0.01265,,,,,,,0.00362,0.0052,0.00707,0.01704,,,,,,,0.00263,0.00393,0.00532,0.01261,,,,,,,0.0508,0.05663,0.06269,0.09455,,,,,,,0.05134,0.05618,0.06148,0.0892,,,,,,,0.05696,0.05906,0.06378,0.0976,,,,,,,0.04901,0.05418,0.06036,0.09466,,,,,,,0.0517,0.0551,0.05878,0.07417,,,,,,,0.04825,0.05103,0.05475,0.07388,,,,,,,0.04743,0.05048,0.05385,0.06862,,,,,,,0.05122,0.05449,0.05856,0.08076,,,,,,,0.04876,0.05141,0.05438,0.07035,,,,,,,0.0141,0.01926,0.02462,0.05281,,,,,,,0.01351,0.0178,0.02249,0.04702,,,,,,,0.01544,0.0173,0.02148,0.0514,,,,,,,0.01467,0.01925,0.02472,0.05506,,,,,,,0.01141,0.01442,0.01768,0.0313,,,,,,,0.01162,0.01409,0.01738,0.03431,,,,,,,0.0107,0.01341,0.0164,0.02946,,,,,,,0.01251,0.01541,0.01901,0.03864,,,,,,,0.01046,0.01282,0.01544,0.02957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2010,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00277,0.00467,0.00659,0.01716,,,,,,,0.00258,0.00432,0.00611,0.01532,,,,,,,0.00233,0.00389,0.00632,0.01635,,,,,,,0.00281,0.00476,0.00681,0.0179,,,,,,,0.00224,0.00368,0.00491,0.01041,,,,,,,0.00218,0.00359,0.0051,0.0114,,,,,,,0.00212,0.00348,0.00462,0.0098,,,,,,,0.00224,0.00372,0.00539,0.01262,,,,,,,0.0019,0.0031,0.00449,0.00967,,,,,,,0.04704,0.0514,0.05589,0.07973,,,,,,,0.04794,0.05187,0.05601,0.07668,,,,,,,0.05138,0.05487,0.06064,0.08326,,,,,,,0.04438,0.04884,0.05368,0.07885,,,,,,,0.0502,0.05331,0.05601,0.06816,,,,,,,0.04579,0.04885,0.05225,0.06624,,,,,,,0.04588,0.04878,0.05125,0.06262,,,,,,,0.04831,0.05153,0.05532,0.07146,,,,,,,0.04723,0.04978,0.05285,0.06419,,,,,,,0.01078,0.01464,0.01861,0.0397,,,,,,,0.01051,0.01399,0.01766,0.03594,,,,,,,0.01051,0.0136,0.0187,0.03871,,,,,,,0.01058,0.01452,0.01881,0.04107,,,,,,,0.01008,0.01284,0.01523,0.02597,,,,,,,0.00945,0.01216,0.01517,0.02755,,,,,,,0.00935,0.01191,0.0141,0.02416,,,,,,,0.00994,0.01279,0.01614,0.03042,,,,,,,0.00912,0.01138,0.0141,0.02412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2015,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00236,0.00401,0.00584,0.01128,,,,,,,0.00224,0.00382,0.00553,0.01038,,,,,,,0.00203,0.00389,0.00565,0.01079,,,,,,,0.00237,0.00407,0.00595,0.01163,,,,,,,0.00203,0.00332,0.00471,0.00801,,,,,,,0.00197,0.00339,0.00484,0.00843,,,,,,,0.00194,0.00316,0.00447,0.00751,,,,,,,0.00199,0.0035,0.00502,0.009,,,,,,,0.00174,0.00308,0.00435,0.00734,,,,,,,0.04603,0.04969,0.05391,0.06664,,,,,,,0.04711,0.05059,0.05449,0.06575,,,,,,,0.05065,0.05481,0.05885,0.07088,,,,,,,0.04324,0.04704,0.05139,0.06479,,,,,,,0.04972,0.05245,0.0555,0.06291,,,,,,,0.0453,0.04835,0.05156,0.05973,,,,,,,0.04545,0.04801,0.05085,0.05764,,,,,,,0.04769,0.05095,0.05435,0.06346,,,,,,,0.04686,0.0497,0.05247,0.05913,,,,,,,0.00989,0.01312,0.01686,0.02812,,,,,,,0.00978,0.01286,0.01631,0.02627,,,,,,,0.00987,0.01354,0.01712,0.02776,,,,,,,0.00957,0.01294,0.01679,0.02864,,,,,,,0.00967,0.01208,0.01478,0.02133,,,,,,,0.00902,0.01172,0.01456,0.02178,,,,,,,0.00896,0.01123,0.01375,0.01975,,,,,,,0.00939,0.01228,0.01528,0.02334,,,,,,,0.0088,0.01131,0.01376,0.01965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2020,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00215,0.00349,0.00466,0.00836,,,,,,,0.00207,0.00334,0.00442,0.00782,,,,,,,0.00209,0.00339,0.00451,0.00805,,,,,,,0.00218,0.00354,0.00474,0.00857,,,,,,,0.00183,0.00291,0.00379,0.00638,,,,,,,0.00186,0.00297,0.00388,0.00662,,,,,,,0.00175,0.00277,0.00359,0.006,,,,,,,0.00191,0.00307,0.00402,0.00695,,,,,,,0.0017,0.0027,0.0035,0.00585,,,,,,,0.04555,0.04855,0.05126,0.06005,,,,,,,0.04671,0.04953,0.05203,0.06001,,,,,,,0.05082,0.05371,0.05631,0.06468,,,,,,,0.04279,0.04586,0.04866,0.05781,,,,,,,0.04928,0.0516,0.05353,0.05938,,,,,,,0.04507,0.04747,0.0495,0.05576,,,,,,,0.04503,0.04721,0.04899,0.05437,,,,,,,0.0475,0.05002,0.05218,0.05893,,,,,,,0.0468,0.04892,0.05067,0.05592,,,,,,,0.00946,0.01211,0.01451,0.02229,,,,,,,0.00943,0.01192,0.01414,0.0212,,,,,,,0.01001,0.01257,0.01487,0.02228,,,,,,,0.00917,0.01189,0.01437,0.02247,,,,,,,0.00928,0.01133,0.01303,0.01821,,,,,,,0.00882,0.01094,0.01274,0.01827,,,,,,,0.0086,0.01052,0.0121,0.01686,,,,,,,0.00923,0.01145,0.01337,0.01934,,,,,,,0.00875,0.01062,0.01217,0.01681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2025,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00142,0.00225,0.00301,0.00602,,,,,,,0.00136,0.00216,0.00286,0.00565,,,,,,,0.00138,0.00219,0.00291,0.0058,,,,,,,0.00144,0.00228,0.00306,0.00614,,,,,,,0.00121,0.00189,0.00245,0.00465,,,,,,,0.00123,0.00192,0.00251,0.00482,,,,,,,0.00115,0.00179,0.00232,0.00436,,,,,,,0.00126,0.00198,0.0026,0.00505,,,,,,,0.00113,0.00175,0.00227,0.00428,,,,,,,0.04396,0.04582,0.04757,0.05464,,,,,,,0.0452,0.04695,0.04857,0.05506,,,,,,,0.04928,0.05108,0.05275,0.05951,,,,,,,0.04117,0.04307,0.04487,0.05217,,,,,,,0.04799,0.04943,0.05068,0.0556,,,,,,,0.04374,0.04523,0.04655,0.05177,,,,,,,0.0438,0.04515,0.04632,0.05084,,,,,,,0.04613,0.04769,0.04909,0.05468,,,,,,,0.04561,0.04693,0.04807,0.05253,,,,,,,0.00805,0.0097,0.01125,0.01751,,,,,,,0.00809,0.00964,0.01107,0.01682,,,,,,,0.00865,0.01024,0.01172,0.01771,,,,,,,0.00774,0.00942,0.01102,0.01747,,,,,,,0.00813,0.00941,0.01052,0.01486,,,,,,,0.00764,0.00896,0.01013,0.01474,,,,,,,0.00751,0.00871,0.00973,0.01373,,,,,,,0.00801,0.0094,0.01064,0.01558,,,,,,,0.00769,0.00886,0.00986,0.01381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2030,,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00142,0.00225,0.00299,0.00497,,,,,,,0.00136,0.00215,0.00284,0.00467,,,,,,,0.00138,0.00218,0.0029,0.00479,,,,,,,0.00143,0.00228,0.00303,0.00508,,,,,,,0.00121,0.00188,0.00244,0.00386,,,,,,,0.00123,0.00192,0.0025,0.004,,,,,,,0.00115,0.00179,0.00231,0.00363,,,,,,,0.00126,0.00198,0.00259,0.00418,,,,,,,0.00112,0.00175,0.00227,0.00355,,,,,,,0.04395,0.04581,0.04752,0.05222,,,,,,,0.04519,0.04694,0.04853,0.05283,,,,,,,0.04927,0.05106,0.05271,0.05719,,,,,,,0.04116,0.04306,0.04481,0.04968,,,,,,,0.04798,0.04942,0.05065,0.05387,,,,,,,0.04374,0.04523,0.04652,0.04995,,,,,,,0.04379,0.04515,0.04628,0.04924,,,,,,,0.04613,0.04769,0.04907,0.05273,,,,,,,0.04561,0.04693,0.04806,0.05094,,,,,,,0.00805,0.00969,0.01121,0.01536,,,,,,,0.00809,0.00963,0.01104,0.01484,,,,,,,0.00865,0.01023,0.01169,0.01565,,,,,,,0.00773,0.00941,0.01096,0.01527,,,,,,,0.00813,0.0094,0.01049,0.01334,,,,,,,0.00764,0.00896,0.0101,0.01313,,,,,,,0.0075,0.0087,0.0097,0.01232,,,,,,,0.00801,0.00939,0.01061,0.01386,,,,,,,0.00769,0.00886,0.00986,0.01241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2035,,,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00141,0.00224,0.003,0.00461,,,,,,,0.00136,0.00214,0.00285,0.00434,,,,,,,0.00137,0.00217,0.0029,0.00445,,,,,,,0.00143,0.00226,0.00304,0.00471,,,,,,,0.0012,0.00187,0.00245,0.00359,,,,,,,0.00122,0.00191,0.0025,0.00371,,,,,,,0.00115,0.00178,0.00232,0.00338,,,,,,,0.00126,0.00197,0.0026,0.00388,,,,,,,0.00112,0.00175,0.00227,0.00329,,,,,,,0.04394,0.04577,0.04754,0.05138,,,,,,,0.04518,0.04691,0.04854,0.05205,,,,,,,0.04926,0.05103,0.05272,0.05639,,,,,,,0.04114,0.04301,0.04484,0.04884,,,,,,,0.04798,0.0494,0.05066,0.05326,,,,,,,0.04373,0.0452,0.04654,0.04931,,,,,,,0.04379,0.04512,0.0463,0.04869,,,,,,,0.04612,0.04766,0.04908,0.05205,,,,,,,0.0456,0.04692,0.04806,0.05038,,,,,,,0.00804,0.00966,0.01122,0.01462,,,,,,,0.00808,0.0096,0.01105,0.01415,,,,,,,0.00864,0.0102,0.0117,0.01494,,,,,,,0.00772,0.00937,0.01099,0.01452,,,,,,,0.00812,0.00938,0.0105,0.0128,,,,,,,0.00763,0.00893,0.01011,0.01257,,,,,,,0.00749,0.00867,0.00971,0.01183,,,,,,,0.008,0.00937,0.01062,0.01325,,,,,,,0.00768,0.00885,0.00986,0.01191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2040,,,,,,,,0.02838,0.02838,0.02838,,,,,,,,0.02935,0.02935,0.02935,,,,,,,,0.03186,0.03186,0.03186,,,,,,,,0.02676,0.02676,0.02676,,,,,,,,0.0314,0.0314,0.0314,,,,,,,,0.02885,0.02885,0.02885,,,,,,,,0.0288,0.0288,0.0288,,,,,,,,0.03013,0.03013,0.03013,,,,,,,,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0014,0.00224,0.00301,,,,,,,,0.00135,0.00214,0.00286,,,,,,,,0.00137,0.00217,0.00291,,,,,,,,0.00142,0.00227,0.00305,,,,,,,,0.0012,0.00188,0.00245,,,,,,,,0.00122,0.00191,0.00251,,,,,,,,0.00114,0.00178,0.00232,,,,,,,,0.00125,0.00197,0.0026,,,,,,,,0.00112,0.00175,0.00227,,,,,,,,0.04392,0.04578,0.04756,,,,,,,,0.04517,0.04692,0.04856,,,,,,,,0.04924,0.05104,0.05274,,,,,,,,0.04112,0.04302,0.04487,,,,,,,,0.04796,0.04941,0.05068,,,,,,,,0.04371,0.04521,0.04655,,,,,,,,0.04377,0.04513,0.04631,,,,,,,,0.0461,0.04767,0.04909,,,,,,,,0.0456,0.04692,0.04806,,,,,,,,0.00802,0.00967,0.01124,,,,,,,,0.00806,0.00961,0.01107,,,,,,,,0.00862,0.01021,0.01172,,,,,,,,0.00769,0.00938,0.01101,,,,,,,,0.00811,0.00939,0.01051,,,,,,,,0.00762,0.00894,0.01013,,,,,,,,0.00748,0.00868,0.00973,,,,,,,,0.00799,0.00937,0.01063,,,,,,,,0.00768,0.00885,0.00986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2045,,,,,,,,,0.02838,0.02838,,,,,,,,,0.02935,0.02935,,,,,,,,,0.03186,0.03186,,,,,,,,,0.02676,0.02676,,,,,,,,,0.0314,0.0314,,,,,,,,,0.02885,0.02885,,,,,,,,,0.0288,0.0288,,,,,,,,,0.03013,0.03013,,,,,,,,,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00141,0.00225,,,,,,,,,0.00135,0.00215,,,,,,,,,0.00137,0.00218,,,,,,,,,0.00142,0.00228,,,,,,,,,0.0012,0.00188,,,,,,,,,0.00122,0.00192,,,,,,,,,0.00114,0.00179,,,,,,,,,0.00125,0.00198,,,,,,,,,0.00112,0.00175,,,,,,,,,0.04392,0.0458,,,,,,,,,0.04517,0.04693,,,,,,,,,0.04925,0.05106,,,,,,,,,0.04113,0.04305,,,,,,,,,0.04797,0.04942,,,,,,,,,0.04372,0.04522,,,,,,,,,0.04377,0.04514,,,,,,,,,0.04611,0.04768,,,,,,,,,0.0456,0.04692,,,,,,,,,0.00802,0.00968,,,,,,,,,0.00807,0.00963,,,,,,,,,0.00863,0.01022,,,,,,,,,0.0077,0.0094,,,,,,,,,0.00811,0.0094,,,,,,,,,0.00762,0.00895,,,,,,,,,0.00749,0.00869,,,,,,,,,0.00799,0.00938,,,,,,,,,0.00768,0.00885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,ELC,2050,,,,,,,,,,0.02838,,,,,,,,,,0.02935,,,,,,,,,,0.03186,,,,,,,,,,0.02676,,,,,,,,,,0.0314,,,,,,,,,,0.02885,,,,,,,,,,0.0288,,,,,,,,,,0.03013,,,,,,,,,,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00141,,,,,,,,,,0.00136,,,,,,,,,,0.00137,,,,,,,,,,0.00143,,,,,,,,,,0.0012,,,,,,,,,,0.00122,,,,,,,,,,0.00115,,,,,,,,,,0.00126,,,,,,,,,,0.00112,,,,,,,,,,0.04393,,,,,,,,,,0.04518,,,,,,,,,,0.04926,,,,,,,,,,0.04114,,,,,,,,,,0.04797,,,,,,,,,,0.04373,,,,,,,,,,0.04378,,,,,,,,,,0.04612,,,,,,,,,,0.0456,,,,,,,,,,0.00803,,,,,,,,,,0.00808,,,,,,,,,,0.00863,,,,,,,,,,0.00772,,,,,,,,,,0.00812,,,,,,,,,,0.00763,,,,,,,,,,0.00749,,,,,,,,,,0.008,,,,,,,,,,0.00768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Compact car,GSL,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07141,,,,,,,,,,0.06107,,,,,,,,,,0.07705,,,,,,,,,,0.07896,,,,,,,,,,0.06496,,,,,,,,,,0.07184,,,,,,,,,,0.0665,,,,,,,,,,0.06484,,,,,,,,,,0.05566,,,,,,,,,,45.44025,,,,,,,,,,40.29902,,,,,,,,,,49.74959,,,,,,,,,,51.52873,,,,,,,,,,42.68365,,,,,,,,,,47.22271,,,,,,,,,,44.46094,,,,,,,,,,42.70044,,,,,,,,,,35.6,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,2.7661,,,,,,,,,,2.63331,,,,,,,,,,2.92629,,,,,,,,,,3.07741,,,,,,,,,,2.86105,,,,,,,,,,3.00445,,,,,,,,,,2.85615,,,,,,,,,,3.0173,,,,,,,,,,2.48338,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.0203,,,,,,,,,,0.02315,,,,,,,,,,0.03295,,,,,,,,,,0.03009,,,,,,,,,,0.02677,,,,,,,,,,0.0295,,,,,,,,,,0.02671,,,,,,,,,,0.02644,,,,,,,,,,0.01225,,,,,,,,,,4.27258,,,,,,,,,,3.81754,,,,,,,,,,4.54577,,,,,,,,,,4.70482,,,,,,,,,,4.21618,,,,,,,,,,4.48853,,,,,,,,,,4.30598,,,,,,,,,,4.24389,,,,,,,,,,3.69123,,,,,,,,, +Compact car,GSL,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.03944,0.04576,,,,,,,,,0.03664,0.04083,,,,,,,,,0.04429,0.05065,,,,,,,,,0.04565,0.05449,,,,,,,,,0.03755,0.04264,,,,,,,,,0.0407,0.04723,,,,,,,,,0.03721,0.04302,,,,,,,,,0.03835,0.04438,,,,,,,,,0.03085,0.03465,,,,,,,,,16.78884,22.88556,,,,,,,,,15.98794,20.96026,,,,,,,,,19.21178,25.22672,,,,,,,,,20.22435,27.00424,,,,,,,,,16.79945,21.89209,,,,,,,,,18.19395,23.98917,,,,,,,,,17.25291,22.63177,,,,,,,,,16.98237,22.80651,,,,,,,,,13.3002,17.89803,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.07933,2.50022,,,,,,,,,2.02759,2.36568,,,,,,,,,2.24294,2.56978,,,,,,,,,2.33637,2.81169,,,,,,,,,2.17733,2.606,,,,,,,,,2.28807,2.71654,,,,,,,,,2.18766,2.60941,,,,,,,,,2.32345,2.7651,,,,,,,,,1.91582,2.25828,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.01661,0.00842,,,,,,,,,0.01905,0.00855,,,,,,,,,0.02713,0.00887,,,,,,,,,0.0247,0.01482,,,,,,,,,0.02232,0.00873,,,,,,,,,0.02448,0.00866,,,,,,,,,0.0223,0.01181,,,,,,,,,0.02188,0.01347,,,,,,,,,0.01015,0.00486,,,,,,,,,1.81297,2.58416,,,,,,,,,1.74397,2.43547,,,,,,,,,2.01266,2.82579,,,,,,,,,2.08667,2.99372,,,,,,,,,1.87427,2.72045,,,,,,,,,1.94673,2.84104,,,,,,,,,1.85754,2.71927,,,,,,,,,1.92176,2.78589,,,,,,,,,1.59187,2.31303,,,,,,,, +Compact car,GSL,2000,0.00446,0.00727,0.02121,,,,,,,,0.00385,0.00626,0.01818,,,,,,,,0.00432,0.00704,0.02055,,,,,,,,0.00488,0.00799,0.02359,,,,,,,,0.00215,0.00348,0.00996,,,,,,,,0.00258,0.00418,0.01212,,,,,,,,0.00206,0.00333,0.00949,,,,,,,,0.00297,0.00482,0.01394,,,,,,,,0.00204,0.00329,0.00926,,,,,,,,0.018,0.01924,0.03098,,,,,,,,0.01687,0.01844,0.02788,,,,,,,,0.02096,0.0225,0.03556,,,,,,,,0.02187,0.02406,0.03689,,,,,,,,0.01593,0.01832,0.02908,,,,,,,,0.01765,0.02,0.0316,,,,,,,,0.01572,0.01841,0.02808,,,,,,,,0.01718,0.01951,0.02948,,,,,,,,0.01344,0.01592,0.02304,,,,,,,,7.9736,10.71224,16.31106,,,,,,,,7.63036,10.36213,15.21624,,,,,,,,9.24745,12.38733,18.63257,,,,,,,,9.85903,13.26364,19.40211,,,,,,,,7.08158,10.17429,15.47276,,,,,,,,7.84768,11.09523,16.73859,,,,,,,,7.20494,10.48973,15.41956,,,,,,,,7.64135,10.84985,15.91466,,,,,,,,5.84893,8.72488,12.54593,,,,,,,,376.89916,380.04698,390.21548,,,,,,,,380.22649,383.1569,392.65296,,,,,,,,386.71942,389.79323,399.70862,,,,,,,,377.04161,380.20786,390.42822,,,,,,,,387.04471,389.14643,396.12873,,,,,,,,380.64318,383.06092,390.92793,,,,,,,,383.03518,385.04841,391.71743,,,,,,,,383.69574,386.15466,394.21333,,,,,,,,376.31992,378.50164,385.74944,,,,,,,,0.02444,0.02719,0.04141,,,,,,,,0.02454,0.02728,0.04157,,,,,,,,0.02472,0.02744,0.04186,,,,,,,,0.02468,0.02748,0.0418,,,,,,,,0.02474,0.02748,0.04191,,,,,,,,0.02483,0.02762,0.04206,,,,,,,,0.02458,0.02734,0.04164,,,,,,,,0.02471,0.02746,0.04186,,,,,,,,0.02432,0.02703,0.0412,,,,,,,,0.05942,0.07773,0.0825,,,,,,,,0.05955,0.07791,0.08268,,,,,,,,0.05972,0.07812,0.08287,,,,,,,,0.05901,0.07719,0.08197,,,,,,,,0.05963,0.078,0.08275,,,,,,,,0.05921,0.07746,0.08223,,,,,,,,0.0594,0.07771,0.08247,,,,,,,,0.05963,0.07801,0.08277,,,,,,,,0.05976,0.07818,0.08294,,,,,,,,1.00125,1.3395,1.99915,,,,,,,,0.98492,1.3305,1.95065,,,,,,,,1.16176,1.47162,2.16103,,,,,,,,1.20225,1.58687,2.26082,,,,,,,,1.10189,1.46064,2.16643,,,,,,,,1.15729,1.50595,2.22061,,,,,,,,1.11845,1.48987,2.09885,,,,,,,,1.17031,1.55114,2.20843,,,,,,,,0.96099,1.30162,1.8246,,,,,,,,0.00947,0.01481,0.03898,,,,,,,,0.00834,0.01302,0.03415,,,,,,,,0.00914,0.01429,0.03766,,,,,,,,0.00995,0.0156,0.04186,,,,,,,,0.00505,0.00783,0.0203,,,,,,,,0.00581,0.00904,0.0238,,,,,,,,0.00491,0.00762,0.01968,,,,,,,,0.00662,0.01032,0.02697,,,,,,,,0.00497,0.00771,0.01958,,,,,,,,0.0488,0.06032,0.11423,,,,,,,,0.04731,0.05732,0.10422,,,,,,,,0.05174,0.06271,0.11486,,,,,,,,0.04852,0.06083,0.11967,,,,,,,,0.04215,0.04798,0.07515,,,,,,,,0.04133,0.04812,0.08054,,,,,,,,0.03924,0.04494,0.07108,,,,,,,,0.04436,0.05226,0.08886,,,,,,,,0.04011,0.04585,0.07146,,,,,,,,0.02183,0.03202,0.07971,,,,,,,,0.01976,0.02863,0.07011,,,,,,,,0.02179,0.03149,0.07762,,,,,,,,0.0228,0.0337,0.08574,,,,,,,,0.01365,0.0188,0.04284,,,,,,,,0.01486,0.02087,0.04955,,,,,,,,0.01304,0.01808,0.04121,,,,,,,,0.01657,0.02355,0.05593,,,,,,,,0.01313,0.01821,0.04086,,,,,,,,0.01653,0.00808,0.00747,,,,,,,,0.01899,0.00822,0.00751,,,,,,,,0.02706,0.00853,0.00765,,,,,,,,0.02462,0.01425,0.00747,,,,,,,,0.02235,0.00847,0.00758,,,,,,,,0.02449,0.00838,0.00748,,,,,,,,0.02235,0.01146,0.0075,,,,,,,,0.02186,0.01302,0.00675,,,,,,,,0.01013,0.00469,0.00346,,,,,,,,0.72711,1.06387,2.0172,,,,,,,,0.68577,1.02453,1.89637,,,,,,,,0.81315,1.20741,2.24646,,,,,,,,0.86921,1.29736,2.34636,,,,,,,,0.62061,1.00677,2.04738,,,,,,,,0.68204,1.08708,2.14188,,,,,,,,0.61212,1.00282,1.99881,,,,,,,,0.69779,1.09614,2.10942,,,,,,,,0.5325,0.88513,1.7362,,,,,,, +Compact car,GSL,2005,0.00157,0.00229,0.00372,0.01236,,,,,,,0.00142,0.00198,0.00321,0.01065,,,,,,,0.00176,0.00175,0.00281,0.01185,,,,,,,0.00186,0.00245,0.00401,0.01369,,,,,,,0.00091,0.00128,0.00207,0.00604,,,,,,,0.00109,0.00133,0.00215,0.0072,,,,,,,0.00085,0.00116,0.00187,0.00562,,,,,,,0.00118,0.00149,0.0024,0.0082,,,,,,,0.00074,0.00098,0.00156,0.00542,,,,,,,0.01901,0.0139,0.01373,0.02039,,,,,,,0.01715,0.01239,0.01274,0.01857,,,,,,,0.01941,0.01391,0.01426,0.0222,,,,,,,0.02078,0.01709,0.01603,0.0243,,,,,,,0.01115,0.00933,0.01045,0.01687,,,,,,,0.01327,0.0107,0.01165,0.01873,,,,,,,0.01076,0.00994,0.01037,0.01641,,,,,,,0.0144,0.01194,0.01151,0.01848,,,,,,,0.00868,0.00738,0.00807,0.01461,,,,,,,3.65985,4.92001,6.28176,10.36951,,,,,,,3.47267,4.74078,6.25313,9.92852,,,,,,,3.93967,5.77433,7.69159,11.84093,,,,,,,4.26506,6.37793,7.63642,12.70471,,,,,,,3.14949,4.69452,6.45624,10.09242,,,,,,,3.39607,5.11373,6.96781,10.81847,,,,,,,3.2294,5.16195,6.51177,10.17918,,,,,,,3.49226,5.5873,6.66755,10.54744,,,,,,,2.47971,4.32598,5.73291,8.72071,,,,,,,383.61442,385.38819,389.77412,396.47833,,,,,,,387.18708,388.82902,392.91571,398.96561,,,,,,,393.48041,395.21334,399.46747,405.9233,,,,,,,383.88261,385.64187,390.09117,396.91151,,,,,,,394.88049,396.01522,398.98771,402.60517,,,,,,,388.20643,389.53503,392.91936,397.42511,,,,,,,391.1224,392.19344,395.0643,398.40755,,,,,,,391.19,392.54205,395.99785,400.65679,,,,,,,383.91967,385.1314,388.19316,391.9956,,,,,,,0.00715,0.00771,0.00905,0.02207,,,,,,,0.00716,0.00772,0.00907,0.02212,,,,,,,0.00717,0.00773,0.00907,0.02218,,,,,,,0.00725,0.00782,0.0092,0.02237,,,,,,,0.00719,0.00775,0.00909,0.02222,,,,,,,0.00726,0.00783,0.0092,0.02243,,,,,,,0.00718,0.00774,0.0091,0.02218,,,,,,,0.0072,0.00776,0.00911,0.02225,,,,,,,0.00708,0.00763,0.00896,0.02189,,,,,,,0.02404,0.02736,0.03368,0.04793,,,,,,,0.02409,0.02742,0.03376,0.04803,,,,,,,0.02416,0.0275,0.03385,0.04815,,,,,,,0.02387,0.02717,0.03345,0.0476,,,,,,,0.02412,0.02746,0.0338,0.04808,,,,,,,0.02395,0.02727,0.03356,0.04777,,,,,,,0.02403,0.02735,0.03367,0.04791,,,,,,,0.02412,0.02746,0.0338,0.04809,,,,,,,0.02418,0.02752,0.03387,0.04819,,,,,,,0.26711,0.39195,0.51733,0.95688,,,,,,,0.26349,0.38223,0.51986,0.94325,,,,,,,0.30149,0.42923,0.57253,1.06658,,,,,,,0.29995,0.50062,0.6053,1.1359,,,,,,,0.26847,0.4098,0.55488,1.05341,,,,,,,0.28599,0.42851,0.57447,1.08888,,,,,,,0.27071,0.43957,0.54982,1.02772,,,,,,,0.29438,0.47188,0.56832,1.08909,,,,,,,0.21201,0.31363,0.41977,0.92727,,,,,,,0.00338,0.00483,0.00726,0.02167,,,,,,,0.00313,0.00433,0.0065,0.01916,,,,,,,0.00367,0.00404,0.00602,0.02089,,,,,,,0.00379,0.00502,0.00756,0.02314,,,,,,,0.00218,0.00305,0.00462,0.01197,,,,,,,0.00249,0.00315,0.00475,0.01369,,,,,,,0.00209,0.00284,0.00429,0.01139,,,,,,,0.00268,0.00344,0.00517,0.01533,,,,,,,0.00188,0.00252,0.00378,0.01121,,,,,,,0.03567,0.03875,0.0442,0.07646,,,,,,,0.03608,0.03858,0.04341,0.07162,,,,,,,0.03987,0.04042,0.04478,0.07816,,,,,,,0.03505,0.03765,0.04336,0.07854,,,,,,,0.03603,0.0378,0.04119,0.05725,,,,,,,0.03418,0.03548,0.03895,0.05868,,,,,,,0.03322,0.03476,0.03786,0.0533,,,,,,,0.03588,0.03744,0.04118,0.06366,,,,,,,0.03362,0.03492,0.0376,0.05371,,,,,,,0.01021,0.01293,0.01775,0.0463,,,,,,,0.00984,0.01205,0.01632,0.04128,,,,,,,0.01129,0.01178,0.01563,0.04516,,,,,,,0.01089,0.01319,0.01824,0.04936,,,,,,,0.00823,0.0098,0.0128,0.02701,,,,,,,0.00853,0.00968,0.01275,0.0302,,,,,,,0.00772,0.00908,0.01182,0.02549,,,,,,,0.00907,0.01044,0.01375,0.03364,,,,,,,0.00739,0.00854,0.01091,0.02517,,,,,,,0.01682,0.00819,0.00746,0.00253,,,,,,,0.01933,0.00834,0.00752,0.00255,,,,,,,0.02754,0.00865,0.00765,0.00259,,,,,,,0.02506,0.01446,0.00747,0.00253,,,,,,,0.0228,0.00862,0.00764,0.00257,,,,,,,0.02498,0.00852,0.00752,0.00254,,,,,,,0.02283,0.01167,0.00756,0.00254,,,,,,,0.02228,0.01324,0.00678,0.00252,,,,,,,0.01033,0.00477,0.00348,0.00231,,,,,,,0.39514,0.43204,0.59703,1.3187,,,,,,,0.35519,0.38936,0.55255,1.2417,,,,,,,0.40141,0.43233,0.61327,1.41594,,,,,,,0.43194,0.52177,0.68283,1.52729,,,,,,,0.22675,0.2889,0.45338,1.22545,,,,,,,0.2701,0.3289,0.50138,1.30004,,,,,,,0.21544,0.2995,0.44323,1.19594,,,,,,,0.30655,0.38403,0.52996,1.32507,,,,,,,0.18592,0.25556,0.39667,1.10333,,,,,, +Compact car,GSL,2010,,0.00112,0.00183,0.00304,0.00785,,,,,,,0.00099,0.0016,0.00268,0.00683,,,,,,,0.00085,0.00138,0.00286,0.00742,,,,,,,0.00121,0.00198,0.00333,0.00866,,,,,,,0.0007,0.00112,0.00176,0.00415,,,,,,,0.00071,0.00114,0.00198,0.0048,,,,,,,0.00064,0.00102,0.00159,0.00376,,,,,,,0.00077,0.00123,0.00216,0.00536,,,,,,,0.00054,0.00085,0.00151,0.00359,,,,,,,0.0157,0.01309,0.01131,0.01516,,,,,,,0.0136,0.0119,0.01032,0.01392,,,,,,,0.01484,0.01355,0.01166,0.01606,,,,,,,0.0187,0.01566,0.01349,0.01823,,,,,,,0.00936,0.01012,0.00894,0.01218,,,,,,,0.01043,0.01101,0.00971,0.01341,,,,,,,0.00981,0.01004,0.00889,0.01202,,,,,,,0.01235,0.01094,0.00994,0.01354,,,,,,,0.00787,0.0079,0.00846,0.01115,,,,,,,2.81533,4.28515,5.70965,7.96511,,,,,,,2.64095,4.20862,5.58461,7.74811,,,,,,,3.15879,5.09396,6.40765,9.09955,,,,,,,3.41534,5.04656,6.94936,9.82645,,,,,,,2.24206,4.09923,5.68289,7.89177,,,,,,,2.50182,4.45273,5.99996,8.42497,,,,,,,2.44908,4.1495,5.8058,8.03416,,,,,,,2.85086,4.35082,5.92444,8.2455,,,,,,,2.14836,3.72464,5.05971,6.92498,,,,,,,378.34318,381.0668,385.69408,394.85501,,,,,,,381.92659,384.43966,388.73293,397.32087,,,,,,,388.14052,390.76153,395.23755,404.18724,,,,,,,378.57539,381.32694,386.03125,395.35071,,,,,,,389.70767,391.44169,394.49287,400.93104,,,,,,,383.05742,385.07754,388.59252,395.82336,,,,,,,385.99822,387.65935,390.60209,396.83497,,,,,,,385.98142,388.05307,391.64271,399.01043,,,,,,,378.86597,380.6927,383.84057,390.36286,,,,,,,0.00688,0.00779,0.0093,0.01424,,,,,,,0.00689,0.0078,0.00932,0.01426,,,,,,,0.00691,0.00781,0.00931,0.01424,,,,,,,0.00697,0.0079,0.00945,0.01448,,,,,,,0.00692,0.00783,0.00934,0.01429,,,,,,,0.00699,0.00791,0.00946,0.01448,,,,,,,0.00691,0.00783,0.00935,0.01431,,,,,,,0.00693,0.00784,0.00936,0.01433,,,,,,,0.00682,0.00771,0.00921,0.01409,,,,,,,0.01689,0.01977,0.02529,0.03064,,,,,,,0.01693,0.01982,0.02535,0.0307,,,,,,,0.01698,0.01987,0.02542,0.03079,,,,,,,0.01678,0.01964,0.02511,0.03042,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01684,0.01971,0.0252,0.03053,,,,,,,0.01689,0.01977,0.02528,0.03062,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01699,0.01989,0.02543,0.03081,,,,,,,0.10797,0.17736,0.18874,0.42449,,,,,,,0.10295,0.17662,0.1864,0.42077,,,,,,,0.10737,0.19377,0.20112,0.47463,,,,,,,0.12438,0.20769,0.21747,0.51286,,,,,,,0.09636,0.18234,0.18773,0.45915,,,,,,,0.10207,0.19153,0.19779,0.47921,,,,,,,0.10397,0.18197,0.1886,0.45281,,,,,,,0.11669,0.19084,0.20664,0.4837,,,,,,,0.07855,0.13872,0.18314,0.41752,,,,,,,0.00197,0.00306,0.00481,0.01236,,,,,,,0.00184,0.00285,0.00449,0.01118,,,,,,,0.00167,0.00257,0.00464,0.01189,,,,,,,0.00203,0.00318,0.00507,0.01315,,,,,,,0.0016,0.00244,0.00364,0.00792,,,,,,,0.00157,0.00239,0.0038,0.00865,,,,,,,0.00151,0.00229,0.00341,0.00741,,,,,,,0.0016,0.00245,0.00397,0.00935,,,,,,,0.00134,0.00201,0.00327,0.00717,,,,,,,0.03277,0.03528,0.03933,0.05653,,,,,,,0.0334,0.03568,0.03943,0.05459,,,,,,,0.0355,0.03752,0.04236,0.05884,,,,,,,0.03137,0.034,0.03842,0.057,,,,,,,0.03479,0.03659,0.0392,0.04866,,,,,,,0.03219,0.03398,0.03712,0.04793,,,,,,,0.032,0.03366,0.03606,0.04485,,,,,,,0.0336,0.03546,0.03886,0.05091,,,,,,,0.03248,0.03392,0.03665,0.04518,,,,,,,0.00764,0.00986,0.01345,0.02867,,,,,,,0.00746,0.00948,0.0128,0.02621,,,,,,,0.00742,0.00921,0.01349,0.02807,,,,,,,0.00763,0.00995,0.01387,0.03031,,,,,,,0.00714,0.00874,0.01104,0.01941,,,,,,,0.00677,0.00836,0.01114,0.02069,,,,,,,0.00663,0.00811,0.01023,0.01801,,,,,,,0.00705,0.00869,0.0117,0.02237,,,,,,,0.00638,0.00766,0.01007,0.01762,,,,,,,0.00804,0.00729,0.00246,0.00252,,,,,,,0.00819,0.00736,0.00248,0.00253,,,,,,,0.0085,0.00748,0.00252,0.00258,,,,,,,0.0142,0.0073,0.00246,0.00252,,,,,,,0.00848,0.00749,0.00252,0.00256,,,,,,,0.00838,0.00737,0.00248,0.00253,,,,,,,0.01149,0.00742,0.00249,0.00253,,,,,,,0.01302,0.00664,0.00246,0.00251,,,,,,,0.00469,0.00341,0.00226,0.0023,,,,,,,0.1834,0.2564,0.37494,0.87021,,,,,,,0.16013,0.23155,0.34523,0.82398,,,,,,,0.17656,0.26231,0.38423,0.91684,,,,,,,0.21798,0.30153,0.43831,1.0031,,,,,,,0.11355,0.19413,0.31418,0.79823,,,,,,,0.12554,0.21018,0.33298,0.84003,,,,,,,0.11604,0.18995,0.3086,0.78122,,,,,,,0.15086,0.22382,0.3534,0.86611,,,,,,,0.10507,0.17179,0.30158,0.74747,,,,, +Compact car,GSL,2015,,,0.00092,0.00146,0.0025,0.00526,,,,,,,0.00083,0.00133,0.00227,0.00471,,,,,,,0.00072,0.00139,0.00237,0.00497,,,,,,,0.00098,0.00156,0.00269,0.00571,,,,,,,0.00064,0.00097,0.00163,0.00318,,,,,,,0.00064,0.00106,0.00179,0.00355,,,,,,,0.00059,0.00089,0.00149,0.00288,,,,,,,0.00067,0.00112,0.0019,0.00383,,,,,,,0.0005,0.00084,0.00141,0.00273,,,,,,,0.01203,0.00913,0.00924,0.01145,,,,,,,0.01102,0.00846,0.00871,0.01074,,,,,,,0.0115,0.00942,0.00974,0.01214,,,,,,,0.01295,0.0107,0.01101,0.01374,,,,,,,0.00832,0.00744,0.00824,0.01003,,,,,,,0.00901,0.00805,0.00881,0.01081,,,,,,,0.00833,0.00742,0.00825,0.01002,,,,,,,0.00941,0.00823,0.00878,0.01079,,,,,,,0.00692,0.00715,0.0078,0.0094,,,,,,,2.06583,3.6226,4.92713,6.31237,,,,,,,2.03019,3.58601,4.92274,6.26672,,,,,,,2.29864,4.00651,5.62976,7.24134,,,,,,,2.26276,4.31008,6.07293,7.79439,,,,,,,1.83498,3.73579,5.34386,6.71193,,,,,,,1.97763,3.88292,5.56387,7.04799,,,,,,,1.87953,3.83436,5.47625,6.88076,,,,,,,1.9991,3.85766,5.4111,6.84761,,,,,,,1.75413,3.41091,4.74473,5.94053,,,,,,,338.57847,341.09603,343.67549,354.78827,,,,,,,341.7079,344.00277,346.28136,356.96524,,,,,,,347.29401,349.69827,352.11188,363.1334,,,,,,,338.82115,341.3785,344.02646,355.26598,,,,,,,348.39569,349.87174,351.05478,360.07829,,,,,,,342.56263,344.34647,345.95334,355.55556,,,,,,,345.07041,346.47751,347.58297,356.41349,,,,,,,345.18202,347.01345,348.6733,358.41328,,,,,,,338.71426,340.28094,341.58215,350.58905,,,,,,,0.00442,0.00499,0.00575,0.00808,,,,,,,0.00445,0.00501,0.00577,0.0081,,,,,,,0.00449,0.00505,0.00581,0.00812,,,,,,,0.00445,0.00503,0.0058,0.00819,,,,,,,0.00449,0.00506,0.00581,0.00814,,,,,,,0.00449,0.00506,0.00584,0.00821,,,,,,,0.00445,0.00501,0.00578,0.00812,,,,,,,0.00448,0.00505,0.00581,0.00815,,,,,,,0.00441,0.00497,0.00572,0.00801,,,,,,,0.01689,0.01958,0.02529,0.02574,,,,,,,0.01693,0.01962,0.02535,0.0258,,,,,,,0.01698,0.01968,0.02542,0.02587,,,,,,,0.01678,0.01944,0.02511,0.02556,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01684,0.01951,0.0252,0.02565,,,,,,,0.01689,0.01957,0.02528,0.02573,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01699,0.01969,0.02543,0.02589,,,,,,,0.08395,0.11021,0.16233,0.23277,,,,,,,0.08296,0.10809,0.15989,0.22985,,,,,,,0.08345,0.11687,0.17199,0.25144,,,,,,,0.08834,0.12675,0.1866,0.27358,,,,,,,0.07368,0.1058,0.15887,0.2354,,,,,,,0.07856,0.11257,0.16823,0.24859,,,,,,,0.07498,0.10632,0.15996,0.23561,,,,,,,0.08151,0.11853,0.17604,0.25706,,,,,,,0.06022,0.10415,0.15546,0.22547,,,,,,,0.00175,0.00264,0.00429,0.00825,,,,,,,0.00167,0.00253,0.00409,0.00772,,,,,,,0.00152,0.00258,0.00418,0.00798,,,,,,,0.00179,0.00273,0.00445,0.00866,,,,,,,0.00152,0.00221,0.00351,0.00624,,,,,,,0.00148,0.00227,0.00362,0.00655,,,,,,,0.00144,0.00209,0.0033,0.00583,,,,,,,0.00149,0.00232,0.00372,0.00682,,,,,,,0.00128,0.00201,0.00317,0.0056,,,,,,,0.03221,0.03421,0.03795,0.04721,,,,,,,0.03297,0.03488,0.03838,0.04678,,,,,,,0.03513,0.03752,0.04114,0.04997,,,,,,,0.03071,0.03284,0.03678,0.04668,,,,,,,0.0346,0.03605,0.03886,0.04491,,,,,,,0.03198,0.03367,0.03664,0.04323,,,,,,,0.03182,0.03318,0.03579,0.04136,,,,,,,0.0333,0.03511,0.03819,0.04524,,,,,,,0.03234,0.03389,0.0364,0.04175,,,,,,,0.00715,0.00892,0.01223,0.02042,,,,,,,0.00709,0.00877,0.01187,0.0193,,,,,,,0.00709,0.00921,0.01241,0.02022,,,,,,,0.00704,0.00893,0.01241,0.02118,,,,,,,0.00697,0.00826,0.01074,0.01609,,,,,,,0.00658,0.00809,0.01071,0.01654,,,,,,,0.00648,0.00768,0.00999,0.01492,,,,,,,0.00678,0.00838,0.01111,0.01735,,,,,,,0.00626,0.00763,0.00985,0.01458,,,,,,,0.00648,0.00218,0.00219,0.00226,,,,,,,0.00654,0.00219,0.00221,0.00228,,,,,,,0.00665,0.00223,0.00225,0.00232,,,,,,,0.00648,0.00218,0.00219,0.00227,,,,,,,0.00667,0.00223,0.00224,0.0023,,,,,,,0.00656,0.0022,0.00221,0.00227,,,,,,,0.0066,0.00221,0.00222,0.00227,,,,,,,0.0059,0.00218,0.00219,0.00225,,,,,,,0.00303,0.00201,0.00201,0.00207,,,,,,,0.13385,0.19168,0.30942,0.59559,,,,,,,0.12268,0.17815,0.29387,0.57295,,,,,,,0.13049,0.19581,0.32311,0.6237,,,,,,,0.14585,0.22058,0.35957,0.67797,,,,,,,0.09586,0.16181,0.28998,0.57785,,,,,,,0.10336,0.17165,0.303,0.5979,,,,,,,0.09514,0.15958,0.28651,0.56892,,,,,,,0.11304,0.18271,0.31443,0.61442,,,,,,,0.0891,0.15698,0.27944,0.55401,,,, +Compact car,GSL,2020,,,,0.0008,0.00122,0.00187,0.00375,,,,,,,0.00074,0.00112,0.0017,0.00339,,,,,,,0.00077,0.00116,0.00178,0.00355,,,,,,,0.00086,0.0013,0.002,0.00405,,,,,,,0.00055,0.00082,0.00123,0.00237,,,,,,,0.0006,0.00089,0.00135,0.00262,,,,,,,0.00051,0.00076,0.00113,0.00215,,,,,,,0.00063,0.00094,0.00143,0.0028,,,,,,,0.00048,0.00072,0.00107,0.00203,,,,,,,0.00916,0.00746,0.00693,0.0085,,,,,,,0.00818,0.0068,0.00641,0.00789,,,,,,,0.00863,0.00759,0.00717,0.00895,,,,,,,0.00989,0.00868,0.00817,0.01018,,,,,,,0.00557,0.00559,0.00559,0.00707,,,,,,,0.00625,0.00615,0.00609,0.00771,,,,,,,0.00551,0.00555,0.00557,0.00704,,,,,,,0.00693,0.00637,0.00617,0.00774,,,,,,,0.00557,0.00532,0.00526,0.00656,,,,,,,1.6915,2.49519,3.11486,4.16084,,,,,,,1.63085,2.43641,3.05924,4.09089,,,,,,,1.73413,2.72559,3.49384,4.74907,,,,,,,1.87862,2.95774,3.80936,5.14963,,,,,,,1.4536,2.43222,3.15221,4.27573,,,,,,,1.53597,2.55786,3.32659,4.5339,,,,,,,1.50056,2.50095,3.23989,4.39415,,,,,,,1.60232,2.56071,3.26966,4.41578,,,,,,,1.38875,2.22443,2.81303,3.77549,,,,,,,271.96867,273.86852,275.68648,290.82129,,,,,,,274.31603,276.03072,277.5877,292.40308,,,,,,,278.85543,280.6576,282.324,297.52236,,,,,,,272.22635,274.16033,276.03818,291.29223,,,,,,,279.09756,280.1349,280.74701,294.2357,,,,,,,274.66253,275.95649,276.93841,290.83456,,,,,,,276.41031,277.39344,277.94311,291.2138,,,,,,,276.77516,278.10662,279.13032,293.18636,,,,,,,271.38059,272.49515,273.21747,286.5266,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.05999,0.0922,0.1234,0.16461,,,,,,,0.05835,0.09003,0.12087,0.16146,,,,,,,0.05889,0.09688,0.12934,0.17522,,,,,,,0.06337,0.10563,0.14113,0.1918,,,,,,,0.04928,0.08579,0.11633,0.15932,,,,,,,0.05361,0.09221,0.1246,0.17031,,,,,,,0.05031,0.0866,0.11769,0.16041,,,,,,,0.05848,0.09748,0.13112,0.17751,,,,,,,0.05144,0.08499,0.1148,0.15447,,,,,,,0.00154,0.00222,0.00323,0.00592,,,,,,,0.00148,0.00214,0.00308,0.00559,,,,,,,0.00151,0.00218,0.00315,0.00574,,,,,,,0.00158,0.00229,0.00334,0.00617,,,,,,,0.00132,0.00187,0.00266,0.00465,,,,,,,0.00135,0.00192,0.00274,0.00484,,,,,,,0.00125,0.00177,0.0025,0.00435,,,,,,,0.00137,0.00196,0.00281,0.00501,,,,,,,0.0012,0.0017,0.00241,0.00418,,,,,,,0.03173,0.03327,0.03557,0.04186,,,,,,,0.03255,0.034,0.03615,0.04194,,,,,,,0.03513,0.03662,0.03883,0.04485,,,,,,,0.03023,0.03185,0.03426,0.04094,,,,,,,0.03416,0.03534,0.03705,0.04147,,,,,,,0.03169,0.03293,0.03474,0.03948,,,,,,,0.03141,0.03251,0.0341,0.03817,,,,,,,0.03305,0.03434,0.03622,0.0412,,,,,,,0.0322,0.03326,0.03478,0.03869,,,,,,,0.00672,0.00809,0.01012,0.01568,,,,,,,0.00671,0.008,0.00989,0.01502,,,,,,,0.00709,0.00841,0.01037,0.0157,,,,,,,0.00662,0.00805,0.01019,0.0161,,,,,,,0.00658,0.00763,0.00914,0.01305,,,,,,,0.00633,0.00743,0.00903,0.01322,,,,,,,0.00611,0.00709,0.00849,0.0121,,,,,,,0.00656,0.0077,0.00936,0.01377,,,,,,,0.00613,0.00708,0.00842,0.01187,,,,,,,0.00173,0.00175,0.00176,0.00186,,,,,,,0.00175,0.00176,0.00177,0.00187,,,,,,,0.00178,0.00179,0.0018,0.0019,,,,,,,0.00174,0.00175,0.00176,0.00186,,,,,,,0.00178,0.00179,0.00179,0.00188,,,,,,,0.00175,0.00176,0.00177,0.00186,,,,,,,0.00176,0.00177,0.00177,0.00186,,,,,,,0.00174,0.00175,0.00175,0.00184,,,,,,,0.0016,0.00161,0.00161,0.00169,,,,,,,0.11502,0.15737,0.23418,0.46466,,,,,,,0.10405,0.14371,0.21789,0.44466,,,,,,,0.11044,0.15929,0.24188,0.48542,,,,,,,0.12517,0.18075,0.27096,0.52592,,,,,,,0.07745,0.12265,0.20218,0.44371,,,,,,,0.08467,0.13261,0.21478,0.46013,,,,,,,0.07619,0.11947,0.19687,0.43326,,,,,,,0.09474,0.14263,0.22554,0.47291,,,,,,,0.07609,0.11765,0.19281,0.42371,,, +Compact car,GSL,2025,,,,,0.00052,0.00077,0.00121,0.00249,,,,,,,0.00048,0.00071,0.0011,0.00226,,,,,,,0.0005,0.00074,0.00115,0.00236,,,,,,,0.00056,0.00083,0.00129,0.00267,,,,,,,0.00036,0.00052,0.0008,0.00159,,,,,,,0.00039,0.00057,0.00087,0.00175,,,,,,,0.00033,0.00048,0.00073,0.00144,,,,,,,0.00041,0.0006,0.00093,0.00187,,,,,,,0.00032,0.00046,0.00069,0.00137,,,,,,,0.00781,0.00591,0.0053,0.00652,,,,,,,0.0068,0.00524,0.00477,0.0059,,,,,,,0.00728,0.00585,0.00533,0.00669,,,,,,,0.00849,0.00679,0.00616,0.0077,,,,,,,0.0041,0.00375,0.00367,0.00475,,,,,,,0.0048,0.00428,0.00412,0.00532,,,,,,,0.00401,0.00369,0.00363,0.0047,,,,,,,0.00548,0.00459,0.00432,0.00548,,,,,,,0.00404,0.00355,0.00343,0.00438,,,,,,,1.28004,1.82213,2.29163,3.03913,,,,,,,1.20359,1.74288,2.20878,2.93541,,,,,,,1.29195,1.95533,2.52412,3.4028,,,,,,,1.41672,2.1462,2.77925,3.72628,,,,,,,0.98344,1.62445,2.14039,2.89265,,,,,,,1.06532,1.73991,2.29418,3.11087,,,,,,,1.0149,1.67194,2.20204,2.97831,,,,,,,1.13293,1.76703,2.28397,3.06719,,,,,,,0.94245,1.48927,1.91352,2.56138,,,,,,,219.79055,221.42766,223.33293,236.96005,,,,,,,221.55546,223.03798,224.7172,238.04539,,,,,,,225.26595,226.82303,228.60383,242.28136,,,,,,,220.05063,221.7187,223.68094,237.42605,,,,,,,224.95387,225.86908,226.72345,238.81764,,,,,,,221.56775,222.69787,223.8734,236.35339,,,,,,,222.76989,223.6395,224.43786,236.33729,,,,,,,223.28135,224.44311,225.65654,238.27886,,,,,,,218.76119,219.73734,220.67422,232.60211,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04608,0.06684,0.08884,0.12065,,,,,,,0.04424,0.06453,0.08611,0.11729,,,,,,,0.04457,0.06871,0.09129,0.12631,,,,,,,0.04845,0.07557,0.10045,0.13913,,,,,,,0.03516,0.058,0.07873,0.11077,,,,,,,0.03922,0.0636,0.08583,0.12019,,,,,,,0.03604,0.05886,0.08004,0.11191,,,,,,,0.04298,0.06765,0.09082,0.12596,,,,,,,0.03694,0.05809,0.0785,0.10845,,,,,,,0.001,0.00142,0.0021,0.00396,,,,,,,0.00097,0.00136,0.002,0.00375,,,,,,,0.00098,0.00139,0.00205,0.00384,,,,,,,0.00103,0.00146,0.00217,0.00411,,,,,,,0.00086,0.0012,0.00173,0.00313,,,,,,,0.00088,0.00123,0.00178,0.00326,,,,,,,0.00082,0.00113,0.00163,0.00293,,,,,,,0.0009,0.00126,0.00183,0.00337,,,,,,,0.00078,0.00109,0.00157,0.00283,,,,,,,0.03056,0.0315,0.03305,0.03738,,,,,,,0.03144,0.03232,0.03377,0.03778,,,,,,,0.03399,0.0349,0.03639,0.04055,,,,,,,0.02902,0.03,0.03163,0.03619,,,,,,,0.0332,0.03392,0.03508,0.03818,,,,,,,0.0307,0.03146,0.03268,0.036,,,,,,,0.0305,0.03117,0.03225,0.03511,,,,,,,0.03203,0.03282,0.03409,0.03757,,,,,,,0.03133,0.03198,0.03301,0.03578,,,,,,,0.00569,0.00652,0.00789,0.01172,,,,,,,0.00573,0.00651,0.00779,0.01134,,,,,,,0.00609,0.00689,0.00821,0.01189,,,,,,,0.00555,0.00642,0.00786,0.0119,,,,,,,0.00573,0.00637,0.00739,0.01014,,,,,,,0.00546,0.00613,0.00721,0.01014,,,,,,,0.00531,0.00591,0.00686,0.00939,,,,,,,0.00566,0.00636,0.00748,0.01056,,,,,,,0.00537,0.00594,0.00685,0.00931,,,,,,,0.0014,0.00141,0.00142,0.00151,,,,,,,0.00141,0.00142,0.00143,0.00152,,,,,,,0.00144,0.00145,0.00146,0.00155,,,,,,,0.0014,0.00141,0.00143,0.00151,,,,,,,0.00144,0.00144,0.00145,0.00152,,,,,,,0.00141,0.00142,0.00143,0.00151,,,,,,,0.00142,0.00143,0.00143,0.00151,,,,,,,0.0014,0.00141,0.00142,0.0015,,,,,,,0.00129,0.0013,0.0013,0.00137,,,,,,,0.10037,0.12834,0.18648,0.38014,,,,,,,0.08893,0.11407,0.16926,0.35883,,,,,,,0.09561,0.12784,0.19016,0.39411,,,,,,,0.10964,0.14681,0.21499,0.4276,,,,,,,0.06039,0.0877,0.14513,0.3445,,,,,,,0.06798,0.09772,0.15759,0.36058,,,,,,,0.05866,0.08376,0.13857,0.33208,,,,,,,0.07746,0.10736,0.16807,0.37238,,,,,,,0.05838,0.08294,0.13681,0.32784,, +Compact car,GSL,2030,,,,,,0.00052,0.00077,0.0012,0.00218,,,,,,,0.00048,0.00071,0.00109,0.00197,,,,,,,0.0005,0.00074,0.00114,0.00206,,,,,,,0.00055,0.00082,0.00128,0.00234,,,,,,,0.00036,0.00052,0.00079,0.00139,,,,,,,0.00039,0.00057,0.00087,0.00154,,,,,,,0.00033,0.00048,0.00072,0.00126,,,,,,,0.00041,0.0006,0.00092,0.00164,,,,,,,0.00032,0.00046,0.00069,0.0012,,,,,,,0.00734,0.0054,0.00483,0.00576,,,,,,,0.00633,0.00473,0.0043,0.00513,,,,,,,0.00681,0.00528,0.00481,0.00578,,,,,,,0.00799,0.00617,0.00559,0.0067,,,,,,,0.00361,0.00317,0.00312,0.00381,,,,,,,0.00431,0.00369,0.00355,0.00434,,,,,,,0.00351,0.0031,0.00306,0.00375,,,,,,,0.00499,0.00403,0.00378,0.00458,,,,,,,0.00353,0.00299,0.00291,0.00353,,,,,,,1.17215,1.65559,2.10275,2.65422,,,,,,,1.09196,1.57161,2.01158,2.53948,,,,,,,1.17695,1.76507,2.30057,2.93126,,,,,,,1.29642,1.94489,2.54195,3.22512,,,,,,,0.86161,1.42567,1.89891,2.4146,,,,,,,0.94312,1.53804,2.04905,2.6147,,,,,,,0.88883,1.46758,1.95506,2.48593,,,,,,,1.01048,1.57125,2.05041,2.60241,,,,,,,0.82587,1.30814,1.69823,2.14736,,,,,,,202.37594,204.42196,207.59024,216.57276,,,,,,,203.95177,205.85843,208.81947,217.48287,,,,,,,207.3841,209.3687,212.4505,221.38071,,,,,,,202.63559,204.71112,207.93816,217.0329,,,,,,,206.90582,208.2932,210.47961,217.89872,,,,,,,203.86263,205.44197,207.91823,215.77045,,,,,,,204.89053,206.23087,208.35053,215.62512,,,,,,,205.4427,207.05521,209.57762,217.53359,,,,,,,201.21947,202.64801,204.87349,212.24266,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04083,0.05806,0.07816,0.10353,,,,,,,0.03891,0.05569,0.07537,0.10004,,,,,,,0.0391,0.05893,0.07951,0.10677,,,,,,,0.04271,0.06511,0.08779,0.11801,,,,,,,0.02982,0.0484,0.06717,0.09131,,,,,,,0.03375,0.05369,0.07387,0.10005,,,,,,,0.03065,0.04925,0.06839,0.09258,,,,,,,0.03708,0.05732,0.0784,0.10533,,,,,,,0.03148,0.04882,0.06742,0.09019,,,,,,,0.001,0.00142,0.00208,0.00349,,,,,,,0.00096,0.00136,0.00199,0.0033,,,,,,,0.00098,0.00139,0.00203,0.00339,,,,,,,0.00103,0.00146,0.00215,0.00362,,,,,,,0.00086,0.0012,0.00172,0.00277,,,,,,,0.00088,0.00123,0.00177,0.00288,,,,,,,0.00081,0.00113,0.00162,0.0026,,,,,,,0.00089,0.00125,0.00182,0.00297,,,,,,,0.00078,0.00109,0.00157,0.0025,,,,,,,0.03055,0.03149,0.03301,0.03629,,,,,,,0.03143,0.03231,0.03374,0.03677,,,,,,,0.03398,0.03489,0.03636,0.0395,,,,,,,0.02901,0.02999,0.03158,0.03505,,,,,,,0.03319,0.03392,0.03506,0.03739,,,,,,,0.0307,0.03146,0.03266,0.03516,,,,,,,0.03049,0.03117,0.03222,0.03438,,,,,,,0.03203,0.03281,0.03407,0.03669,,,,,,,0.03133,0.03198,0.03301,0.03507,,,,,,,0.00568,0.00651,0.00786,0.01076,,,,,,,0.00572,0.0065,0.00776,0.01045,,,,,,,0.00608,0.00688,0.00818,0.01096,,,,,,,0.00555,0.00641,0.00782,0.01089,,,,,,,0.00573,0.00637,0.00738,0.00944,,,,,,,0.00545,0.00612,0.00719,0.0094,,,,,,,0.00531,0.0059,0.00684,0.00874,,,,,,,0.00566,0.00635,0.00746,0.00978,,,,,,,0.00536,0.00594,0.00685,0.00867,,,,,,,0.00129,0.0013,0.00132,0.00138,,,,,,,0.0013,0.00131,0.00133,0.00139,,,,,,,0.00132,0.00134,0.00136,0.00141,,,,,,,0.00129,0.00131,0.00133,0.00138,,,,,,,0.00132,0.00133,0.00134,0.00139,,,,,,,0.0013,0.00131,0.00133,0.00138,,,,,,,0.00131,0.00132,0.00133,0.00138,,,,,,,0.00129,0.0013,0.00132,0.00137,,,,,,,0.00119,0.00119,0.00121,0.00125,,,,,,,0.09597,0.12053,0.17587,0.34547,,,,,,,0.08449,0.10626,0.15853,0.32358,,,,,,,0.09122,0.11933,0.17849,0.35592,,,,,,,0.10497,0.13752,0.20211,0.38701,,,,,,,0.05571,0.07883,0.13249,0.30362,,,,,,,0.06332,0.08869,0.14477,0.31928,,,,,,,0.05389,0.07477,0.12573,0.29074,,,,,,,0.0726,0.09836,0.15525,0.33171,,,,,,,0.05346,0.07414,0.12449,0.28855, +Compact car,GSL,2035,,,,,,,0.00052,0.00077,0.0012,0.00214,,,,,,,0.00048,0.0007,0.0011,0.00194,,,,,,,0.0005,0.00073,0.00114,0.00203,,,,,,,0.00055,0.00081,0.00128,0.00231,,,,,,,0.00036,0.00052,0.0008,0.00137,,,,,,,0.00039,0.00056,0.00087,0.00151,,,,,,,0.00033,0.00048,0.00073,0.00125,,,,,,,0.00041,0.0006,0.00092,0.00161,,,,,,,0.00031,0.00046,0.00069,0.00118,,,,,,,0.00731,0.00541,0.00483,0.00563,,,,,,,0.0063,0.00474,0.00429,0.005,,,,,,,0.00679,0.00529,0.0048,0.00562,,,,,,,0.00796,0.00618,0.00558,0.00653,,,,,,,0.0036,0.00318,0.00311,0.00365,,,,,,,0.00429,0.00369,0.00355,0.00417,,,,,,,0.0035,0.0031,0.00306,0.00359,,,,,,,0.00497,0.00403,0.00378,0.00443,,,,,,,0.00352,0.00299,0.00291,0.00339,,,,,,,1.17139,1.66244,2.09836,2.58897,,,,,,,1.09139,1.57691,2.00811,2.47313,,,,,,,1.17648,1.77183,2.29622,2.85045,,,,,,,1.29599,1.95283,2.53692,3.13833,,,,,,,0.86159,1.42604,1.89834,2.33638,,,,,,,0.94303,1.5397,2.04769,2.5324,,,,,,,0.88894,1.46894,1.95385,2.40444,,,,,,,1.01005,1.57318,2.04887,2.52605,,,,,,,0.82558,1.3084,1.69774,2.08066,,,,,,,202.31712,204.41466,207.58447,213.41988,,,,,,,203.89648,205.85154,208.81373,214.30222,,,,,,,207.32639,209.36151,212.4449,218.14804,,,,,,,202.575,204.70376,207.93235,213.87923,,,,,,,206.86326,208.28791,210.47523,214.66023,,,,,,,203.81517,205.43598,207.91323,212.58504,,,,,,,204.84879,206.22545,208.34629,212.41826,,,,,,,205.39473,207.04914,209.57269,214.32318,,,,,,,201.1776,202.64302,204.86944,209.091,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.00459,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04072,0.0579,0.07824,0.10087,,,,,,,0.0388,0.05554,0.07544,0.09735,,,,,,,0.039,0.05876,0.0796,0.10363,,,,,,,0.0426,0.06488,0.08791,0.11463,,,,,,,0.02976,0.04829,0.06723,0.08811,,,,,,,0.03367,0.05355,0.07394,0.09675,,,,,,,0.03058,0.04911,0.06847,0.08945,,,,,,,0.037,0.05721,0.07846,0.10197,,,,,,,0.03142,0.04879,0.06743,0.08719,,,,,,,0.001,0.00141,0.00209,0.00343,,,,,,,0.00096,0.00135,0.002,0.00325,,,,,,,0.00098,0.00138,0.00204,0.00333,,,,,,,0.00102,0.00145,0.00216,0.00357,,,,,,,0.00086,0.00119,0.00173,0.00273,,,,,,,0.00088,0.00122,0.00178,0.00284,,,,,,,0.00081,0.00112,0.00162,0.00256,,,,,,,0.00089,0.00125,0.00182,0.00293,,,,,,,0.00078,0.00109,0.00157,0.00246,,,,,,,0.03055,0.03147,0.03303,0.03617,,,,,,,0.03143,0.0323,0.03375,0.03666,,,,,,,0.03398,0.03487,0.03637,0.03939,,,,,,,0.02901,0.02997,0.0316,0.03494,,,,,,,0.03319,0.03391,0.03507,0.0373,,,,,,,0.03069,0.03144,0.03267,0.03506,,,,,,,0.03049,0.03115,0.03223,0.0343,,,,,,,0.03202,0.0328,0.03408,0.03658,,,,,,,0.03133,0.03198,0.03301,0.03498,,,,,,,0.00568,0.0065,0.00787,0.01065,,,,,,,0.00572,0.00649,0.00777,0.01035,,,,,,,0.00608,0.00687,0.00819,0.01086,,,,,,,0.00554,0.00639,0.00784,0.01079,,,,,,,0.00573,0.00636,0.00738,0.00936,,,,,,,0.00545,0.00611,0.0072,0.00931,,,,,,,0.0053,0.00589,0.00685,0.00868,,,,,,,0.00566,0.00634,0.00747,0.00969,,,,,,,0.00536,0.00594,0.00685,0.00859,,,,,,,0.00129,0.0013,0.00132,0.00136,,,,,,,0.0013,0.00131,0.00133,0.00137,,,,,,,0.00132,0.00134,0.00136,0.00139,,,,,,,0.00129,0.00131,0.00133,0.00136,,,,,,,0.00132,0.00133,0.00134,0.00137,,,,,,,0.0013,0.00131,0.00133,0.00136,,,,,,,0.00131,0.00132,0.00133,0.00136,,,,,,,0.00129,0.0013,0.00132,0.00135,,,,,,,0.00119,0.00119,0.00121,0.00123,,,,,,,0.09568,0.12064,0.17575,0.3413,,,,,,,0.08424,0.10634,0.15844,0.31927,,,,,,,0.09096,0.11948,0.17836,0.35106,,,,,,,0.10466,0.13758,0.20203,0.38184,,,,,,,0.05555,0.07875,0.13252,0.29842,,,,,,,0.06314,0.08865,0.14477,0.31397,,,,,,,0.05373,0.07468,0.12577,0.2854,,,,,,,0.07236,0.09813,0.15536,0.32675,,,,,,,0.05331,0.07411,0.12446,0.28355 +Compact car,GSL,2040,,,,,,,,0.00051,0.00077,0.00121,,,,,,,,0.00047,0.0007,0.0011,,,,,,,,0.00049,0.00073,0.00115,,,,,,,,0.00055,0.00082,0.00129,,,,,,,,0.00036,0.00052,0.0008,,,,,,,,0.00038,0.00057,0.00087,,,,,,,,0.00033,0.00048,0.00073,,,,,,,,0.00041,0.0006,0.00092,,,,,,,,0.00031,0.00046,0.00069,,,,,,,,0.00732,0.0054,0.00483,,,,,,,,0.00631,0.00473,0.00429,,,,,,,,0.00681,0.00529,0.0048,,,,,,,,0.00798,0.00617,0.00558,,,,,,,,0.0036,0.00317,0.00311,,,,,,,,0.0043,0.00369,0.00355,,,,,,,,0.0035,0.0031,0.00306,,,,,,,,0.00497,0.00403,0.00378,,,,,,,,0.00352,0.00299,0.00291,,,,,,,,1.17673,1.65855,2.09351,,,,,,,,1.09547,1.57382,2.00431,,,,,,,,1.182,1.76797,2.29143,,,,,,,,1.30278,1.94835,2.53134,,,,,,,,0.86185,1.42543,1.89788,,,,,,,,0.94437,1.53842,2.04633,,,,,,,,0.88987,1.46787,1.95264,,,,,,,,1.01144,1.57172,2.04732,,,,,,,,0.82541,1.30783,1.69737,,,,,,,,202.30794,204.40446,207.58357,,,,,,,,203.88772,205.84183,208.81287,,,,,,,,207.31737,209.35159,212.44393,,,,,,,,202.56569,204.69324,207.93131,,,,,,,,206.85683,208.28076,210.47469,,,,,,,,203.80767,205.4279,207.91246,,,,,,,,204.84254,206.21834,208.34554,,,,,,,,205.38707,207.04092,209.57195,,,,,,,,201.17118,202.6359,204.86889,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04058,0.05794,0.07835,,,,,,,,0.03867,0.05558,0.07555,,,,,,,,0.03885,0.05881,0.07972,,,,,,,,0.04241,0.06495,0.08807,,,,,,,,0.02967,0.04831,0.06731,,,,,,,,0.03356,0.05358,0.07404,,,,,,,,0.03047,0.04915,0.06858,,,,,,,,0.0369,0.05723,0.07853,,,,,,,,0.03138,0.04878,0.06745,,,,,,,,0.00099,0.00141,0.0021,,,,,,,,0.00096,0.00136,0.002,,,,,,,,0.00097,0.00138,0.00204,,,,,,,,0.00102,0.00145,0.00217,,,,,,,,0.00085,0.00119,0.00173,,,,,,,,0.00087,0.00122,0.00178,,,,,,,,0.00081,0.00113,0.00163,,,,,,,,0.00089,0.00125,0.00183,,,,,,,,0.00078,0.00109,0.00157,,,,,,,,0.03053,0.03148,0.03304,,,,,,,,0.03141,0.0323,0.03376,,,,,,,,0.03397,0.03488,0.03639,,,,,,,,0.02899,0.02998,0.03162,,,,,,,,0.03318,0.03391,0.03508,,,,,,,,0.03068,0.03145,0.03268,,,,,,,,0.03048,0.03116,0.03225,,,,,,,,0.03202,0.03281,0.03409,,,,,,,,0.03133,0.03198,0.03301,,,,,,,,0.00567,0.0065,0.00789,,,,,,,,0.00571,0.00649,0.00779,,,,,,,,0.00606,0.00687,0.00821,,,,,,,,0.00552,0.0064,0.00786,,,,,,,,0.00572,0.00636,0.00739,,,,,,,,0.00544,0.00612,0.00721,,,,,,,,0.00529,0.0059,0.00686,,,,,,,,0.00565,0.00635,0.00748,,,,,,,,0.00536,0.00594,0.00685,,,,,,,,0.00129,0.0013,0.00132,,,,,,,,0.0013,0.00131,0.00133,,,,,,,,0.00132,0.00134,0.00136,,,,,,,,0.00129,0.00131,0.00133,,,,,,,,0.00132,0.00133,0.00134,,,,,,,,0.0013,0.00131,0.00133,,,,,,,,0.00131,0.00132,0.00133,,,,,,,,0.00129,0.0013,0.00132,,,,,,,,0.00119,0.00119,0.00121,,,,,,,,0.09576,0.12051,0.17567,,,,,,,,0.08429,0.10623,0.15837,,,,,,,,0.09107,0.11933,0.17826,,,,,,,,0.10472,0.13746,0.202,,,,,,,,0.0555,0.07874,0.13261,,,,,,,,0.06312,0.08862,0.14482,,,,,,,,0.05368,0.07468,0.12587,,,,,,,,0.07219,0.09818,0.15556,,,,,,,,0.05328,0.07408,0.12448 +Compact car,GSL,2045,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00048,0.00071,,,,,,,,,0.00049,0.00074,,,,,,,,,0.00055,0.00082,,,,,,,,,0.00036,0.00052,,,,,,,,,0.00039,0.00057,,,,,,,,,0.00033,0.00048,,,,,,,,,0.00041,0.0006,,,,,,,,,0.00031,0.00046,,,,,,,,,0.00731,0.0054,,,,,,,,,0.0063,0.00473,,,,,,,,,0.0068,0.00528,,,,,,,,,0.00797,0.00616,,,,,,,,,0.0036,0.00317,,,,,,,,,0.00429,0.00368,,,,,,,,,0.0035,0.0031,,,,,,,,,0.00497,0.00403,,,,,,,,,0.00352,0.00299,,,,,,,,,1.17358,1.65463,,,,,,,,,1.09298,1.57076,,,,,,,,,1.17876,1.76408,,,,,,,,,1.29888,1.94379,,,,,,,,,0.8613,1.42507,,,,,,,,,0.94325,1.53734,,,,,,,,,0.88901,1.46697,,,,,,,,,1.01025,1.57048,,,,,,,,,0.82507,1.30754,,,,,,,,,202.29977,204.40428,,,,,,,,,203.88009,205.84189,,,,,,,,,207.30962,209.35158,,,,,,,,,202.5573,204.69315,,,,,,,,,206.85099,208.28066,,,,,,,,,203.80131,205.42781,,,,,,,,,204.83695,206.2183,,,,,,,,,205.38059,207.04076,,,,,,,,,201.16547,202.63575,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04062,0.05802,,,,,,,,,0.03871,0.05566,,,,,,,,,0.0389,0.0589,,,,,,,,,0.04247,0.06507,,,,,,,,,0.02969,0.04837,,,,,,,,,0.03359,0.05366,,,,,,,,,0.0305,0.04923,,,,,,,,,0.03693,0.05728,,,,,,,,,0.03138,0.04879,,,,,,,,,0.00099,0.00142,,,,,,,,,0.00096,0.00136,,,,,,,,,0.00098,0.00139,,,,,,,,,0.00102,0.00146,,,,,,,,,0.00086,0.0012,,,,,,,,,0.00087,0.00123,,,,,,,,,0.00081,0.00113,,,,,,,,,0.00089,0.00125,,,,,,,,,0.00078,0.00109,,,,,,,,,0.03054,0.03149,,,,,,,,,0.03142,0.03231,,,,,,,,,0.03397,0.03489,,,,,,,,,0.029,0.02999,,,,,,,,,0.03319,0.03392,,,,,,,,,0.03069,0.03145,,,,,,,,,0.03048,0.03117,,,,,,,,,0.03202,0.03281,,,,,,,,,0.03133,0.03198,,,,,,,,,0.00567,0.00651,,,,,,,,,0.00571,0.0065,,,,,,,,,0.00607,0.00688,,,,,,,,,0.00553,0.00641,,,,,,,,,0.00572,0.00637,,,,,,,,,0.00544,0.00612,,,,,,,,,0.0053,0.0059,,,,,,,,,0.00565,0.00635,,,,,,,,,0.00536,0.00594,,,,,,,,,0.00129,0.0013,,,,,,,,,0.0013,0.00131,,,,,,,,,0.00132,0.00134,,,,,,,,,0.00129,0.00131,,,,,,,,,0.00132,0.00133,,,,,,,,,0.0013,0.00131,,,,,,,,,0.00131,0.00132,,,,,,,,,0.00129,0.0013,,,,,,,,,0.00119,0.00119,,,,,,,,,0.09565,0.12043,,,,,,,,,0.08421,0.10617,,,,,,,,,0.09096,0.11923,,,,,,,,,0.10461,0.1374,,,,,,,,,0.05548,0.07878,,,,,,,,,0.06309,0.08863,,,,,,,,,0.05367,0.07472,,,,,,,,,0.07222,0.09829,,,,,,,,,0.05326,0.07408 +Compact car,GSL,2050,,,,,,,,,,0.00052,,,,,,,,,,0.00048,,,,,,,,,,0.0005,,,,,,,,,,0.00055,,,,,,,,,,0.00036,,,,,,,,,,0.00039,,,,,,,,,,0.00033,,,,,,,,,,0.00041,,,,,,,,,,0.00031,,,,,,,,,,0.0073,,,,,,,,,,0.0063,,,,,,,,,,0.00678,,,,,,,,,,0.00796,,,,,,,,,,0.0036,,,,,,,,,,0.00429,,,,,,,,,,0.00349,,,,,,,,,,0.00497,,,,,,,,,,0.00352,,,,,,,,,,1.17027,,,,,,,,,,1.09037,,,,,,,,,,1.17532,,,,,,,,,,1.29471,,,,,,,,,,0.8608,,,,,,,,,,0.94214,,,,,,,,,,0.88814,,,,,,,,,,1.0091,,,,,,,,,,0.82482,,,,,,,,,,202.29983,,,,,,,,,,203.88015,,,,,,,,,,207.3096,,,,,,,,,,202.55725,,,,,,,,,,206.85097,,,,,,,,,,203.80119,,,,,,,,,,204.83681,,,,,,,,,,205.3805,,,,,,,,,,201.16542,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04068,,,,,,,,,,0.03876,,,,,,,,,,0.03896,,,,,,,,,,0.04255,,,,,,,,,,0.02973,,,,,,,,,,0.03364,,,,,,,,,,0.03055,,,,,,,,,,0.03696,,,,,,,,,,0.03139,,,,,,,,,,0.001,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00102,,,,,,,,,,0.00086,,,,,,,,,,0.00087,,,,,,,,,,0.00081,,,,,,,,,,0.00089,,,,,,,,,,0.00078,,,,,,,,,,0.03055,,,,,,,,,,0.03143,,,,,,,,,,0.03398,,,,,,,,,,0.02901,,,,,,,,,,0.03319,,,,,,,,,,0.03069,,,,,,,,,,0.03049,,,,,,,,,,0.03202,,,,,,,,,,0.03133,,,,,,,,,,0.00568,,,,,,,,,,0.00572,,,,,,,,,,0.00608,,,,,,,,,,0.00554,,,,,,,,,,0.00573,,,,,,,,,,0.00545,,,,,,,,,,0.0053,,,,,,,,,,0.00565,,,,,,,,,,0.00536,,,,,,,,,,0.00129,,,,,,,,,,0.0013,,,,,,,,,,0.00132,,,,,,,,,,0.00129,,,,,,,,,,0.00132,,,,,,,,,,0.0013,,,,,,,,,,0.00131,,,,,,,,,,0.00129,,,,,,,,,,0.00119,,,,,,,,,,0.09558,,,,,,,,,,0.08415,,,,,,,,,,0.09086,,,,,,,,,,0.10454,,,,,,,,,,0.05549,,,,,,,,,,0.06307,,,,,,,,,,0.05368,,,,,,,,,,0.07228,,,,,,,,,,0.05326 +Compact car,PH10E,1990,0.00511,0,0,0,0,0,0,0,0,0,0.00528,0,0,0,0,0,0,0,0,0,0.00573,0,0,0,0,0,0,0,0,0,0.00482,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.00519,0,0,0,0,0,0,0,0,0,0.00518,0,0,0,0,0,0,0,0,0,0.00542,0,0,0,0,0,0,0,0,0,0.00535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01783,0,0,0,0,0,0,0,0,0,0.01557,0,0,0,0,0,0,0,0,0,0.01736,0,0,0,0,0,0,0,0,0,0.01912,0,0,0,0,0,0,0,0,0,0.00929,0,0,0,0,0,0,0,0,0,0.01086,0,0,0,0,0,0,0,0,0,0.00892,0,0,0,0,0,0,0,0,0,0.01235,0,0,0,0,0,0,0,0,0,0.00882,0,0,0,0,0,0,0,0,0,0.04731,0,0,0,0,0,0,0,0,0,0.04236,0,0,0,0,0,0,0,0,0,0.04749,0,0,0,0,0,0,0,0,0,0.05006,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.03145,0,0,0,0,0,0,0,0,0,0.027,0,0,0,0,0,0,0,0,0,0.03528,0,0,0,0,0,0,0,0,0,0.02695,0,0,0,0,0,0,0,0,0,0.0363,0,0,0,0,0,0,0,0,0,0.03173,0,0,0,0,0,0,0,0,0,0.03572,0,0,0,0,0,0,0,0,0,0.03912,0,0,0,0,0,0,0,0,0,0.01913,0,0,0,0,0,0,0,0,0,0.02223,0,0,0,0,0,0,0,0,0,0.01826,0,0,0,0,0,0,0,0,0,0.02531,0,0,0,0,0,0,0,0,0,0.01796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH10E,1995,0.00511,0.00511,0,0,0,0,0,0,0,0,0.00528,0.00528,0,0,0,0,0,0,0,0,0.00573,0.00573,0,0,0,0,0,0,0,0,0.00482,0.00482,0,0,0,0,0,0,0,0,0.00565,0.00565,0,0,0,0,0,0,0,0,0.00519,0.00519,0,0,0,0,0,0,0,0,0.00518,0.00518,0,0,0,0,0,0,0,0,0.00542,0.00542,0,0,0,0,0,0,0,0,0.00535,0.00535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00482,0.01056,0,0,0,0,0,0,0,0,0.00422,0.00922,0,0,0,0,0,0,0,0,0.00468,0.01027,0,0,0,0,0,0,0,0,0.00513,0.01127,0,0,0,0,0,0,0,0,0.00254,0.00547,0,0,0,0,0,0,0,0,0.00295,0.00638,0,0,0,0,0,0,0,0,0.00245,0.00526,0,0,0,0,0,0,0,0,0.00336,0.0073,0,0,0,0,0,0,0,0,0.00244,0.00523,0,0,0,0,0,0,0,0,0.018,0.0309,0,0,0,0,0,0,0,0,0.0169,0.02806,0,0,0,0,0,0,0,0,0.01874,0.03126,0,0,0,0,0,0,0,0,0.01828,0.03219,0,0,0,0,0,0,0,0,0.01369,0.02011,0,0,0,0,0,0,0,0,0.01386,0.0214,0,0,0,0,0,0,0,0,0.01275,0.0189,0,0,0,0,0,0,0,0,0.01519,0.02396,0,0,0,0,0,0,0,0,0.01301,0.01912,0,0,0,0,0,0,0,0,0.01038,0.02179,0,0,0,0,0,0,0,0,0.00921,0.01908,0,0,0,0,0,0,0,0,0.01029,0.02137,0,0,0,0,0,0,0,0,0.01101,0.02332,0,0,0,0,0,0,0,0,0.00594,0.01162,0,0,0,0,0,0,0,0,0.00667,0.01334,0,0,0,0,0,0,0,0,0.00566,0.0111,0,0,0,0,0,0,0,0,0.00754,0.01529,0,0,0,0,0,0,0,0,0.00563,0.01104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH10E,2000,0.00511,0.0104,0.01409,0,0,0,0,0,0,0,0.00528,0.00984,0.01299,0,0,0,0,0,0,0,0.00573,0.01085,0.01441,0,0,0,0,0,0,0,0.00482,0.01061,0.0147,0,0,0,0,0,0,0,0.00565,0.00819,0.0099,0,0,0,0,0,0,0,0.00519,0.00823,0.01053,0,0,0,0,0,0,0,0.00518,0.00762,0.00924,0,0,0,0,0,0,0,0.00542,0.00894,0.01134,0,0,0,0,0,0,0,0.00535,0.00776,0.00936,0,0,0,0,0,0,0,0,0.08553,0.08857,0,0,0,0,0,0,0,0,0.08128,0.08641,0,0,0,0,0,0,0,0,0.09631,0.10152,0,0,0,0,0,0,0,0,0.10197,0.10723,0,0,0,0,0,0,0,0,0.08027,0.08558,0,0,0,0,0,0,0,0,0.0866,0.09244,0,0,0,0,0,0,0,0,0.08057,0.08325,0,0,0,0,0,0,0,0,0.08335,0.08765,0,0,0,0,0,0,0,0,0.06928,0.07321,0,0,0,0,0,0,0,0,8.57985,10.08498,0,0,0,0,0,0,0,0,8.28224,9.91924,0,0,0,0,0,0,0,0,9.46995,11.28461,0,0,0,0,0,0,0,0,10.26214,12.19158,0,0,0,0,0,0,0,0,8.35297,9.93719,0,0,0,0,0,0,0,0,8.89729,10.69785,0,0,0,0,0,0,0,0,8.66415,10.02231,0,0,0,0,0,0,0,0,8.55832,10.11659,0,0,0,0,0,0,0,0,7.03486,8.3259,0,0,0,0,0,0,0,0,308.34332,313.0492,0,0,0,0,0,0,0,0,310.95332,315.33528,0,0,0,0,0,0,0,0,316.3151,320.87551,0,0,0,0,0,0,0,0,308.50307,313.26807,0,0,0,0,0,0,0,0,316.12025,319.2968,0,0,0,0,0,0,0,0,311.07482,315.89699,0,0,0,0,0,0,0,0,312.83265,315.89603,0,0,0,0,0,0,0,0,313.56139,317.26015,0,0,0,0,0,0,0,0,307.37494,310.66143,0,0,0,0,0,0,0,0,0.01923,0.02278,0,0,0,0,0,0,0,0,0.01929,0.02283,0,0,0,0,0,0,0,0,0.01938,0.0229,0,0,0,0,0,0,0,0,0.01945,0.02308,0,0,0,0,0,0,0,0,0.01941,0.02294,0,0,0,0,0,0,0,0,0.01954,0.02315,0,0,0,0,0,0,0,0,0.01933,0.0229,0,0,0,0,0,0,0,0,0.01941,0.02297,0,0,0,0,0,0,0,0,0.0191,0.0226,0,0,0,0,0,0,0,0,0.06374,0.06374,0,0,0,0,0,0,0,0,0.06388,0.06388,0,0,0,0,0,0,0,0,0.06406,0.06406,0,0,0,0,0,0,0,0,0.0633,0.0633,0,0,0,0,0,0,0,0,0.06396,0.06396,0,0,0,0,0,0,0,0,0.06352,0.06352,0,0,0,0,0,0,0,0,0.06372,0.06372,0,0,0,0,0,0,0,0,0.06397,0.06397,0,0,0,0,0,0,0,0,0.06411,0.06411,0,0,0,0,0,0,0,0,1.10454,1.31261,0,0,0,0,0,0,0,0,1.09387,1.32826,0,0,0,0,0,0,0,0,1.22002,1.47004,0,0,0,0,0,0,0,0,1.27385,1.5332,0,0,0,0,0,0,0,0,1.19017,1.44578,0,0,0,0,0,0,0,0,1.23224,1.48645,0,0,0,0,0,0,0,0,1.21235,1.43527,0,0,0,0,0,0,0,0,1.25989,1.50295,0,0,0,0,0,0,0,0,1.11871,1.34395,0,0,0,0,0,0,0,0.00267,0.01475,0.02486,0,0,0,0,0,0,0,0.00234,0.01295,0.02175,0,0,0,0,0,0,0,0.00255,0.01415,0.0239,0,0,0,0,0,0,0,0.00278,0.01542,0.02619,0,0,0,0,0,0,0,0.00142,0.00778,0.01292,0,0,0,0,0,0,0,0.00163,0.00895,0.01535,0,0,0,0,0,0,0,0.00139,0.0076,0.01257,0,0,0,0,0,0,0,0.00187,0.01026,0.01717,0,0,0,0,0,0,0,0.00141,0.00774,0.01274,0,0,0,0,0,0,0,0.01309,0.06231,0.08503,0,0,0,0,0,0,0,0.01263,0.05938,0.07905,0,0,0,0,0,0,0,0.01387,0.0649,0.08682,0,0,0,0,0,0,0,0.01289,0.06222,0.08658,0,0,0,0,0,0,0,0.01119,0.05035,0.06163,0,0,0,0,0,0,0,0.01089,0.05008,0.06436,0,0,0,0,0,0,0,0.01039,0.04706,0.05792,0,0,0,0,0,0,0,0.01182,0.0544,0.06971,0,0,0,0,0,0,0,0.01074,0.04834,0.05922,0,0,0,0,0,0,0,0.00603,0.03207,0.05217,0,0,0,0,0,0,0,0.00543,0.02868,0.04608,0,0,0,0,0,0,0,0.00598,0.03146,0.05085,0,0,0,0,0,0,0,0.00624,0.03338,0.05493,0,0,0,0,0,0,0,0.00373,0.01898,0.02896,0,0,0,0,0,0,0,0.00405,0.02092,0.03347,0,0,0,0,0,0,0,0.00356,0.01824,0.02785,0,0,0,0,0,0,0,0.00456,0.02363,0.03717,0,0,0,0,0,0,0,0.00362,0.01856,0.02818,0,0,0,0,0,0,0,0,0.01009,0.00904,0,0,0,0,0,0,0,0,0.01018,0.00911,0,0,0,0,0,0,0,0,0.01036,0.00927,0,0,0,0,0,0,0,0,0.0101,0.00905,0,0,0,0,0,0,0,0,0.01035,0.00922,0,0,0,0,0,0,0,0,0.01019,0.00912,0,0,0,0,0,0,0,0,0.01024,0.00912,0,0,0,0,0,0,0,0,0.01027,0.00916,0,0,0,0,0,0,0,0,0.01006,0.00897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH10E,2005,0.00511,0.00718,0.00851,0.01164,0,0,0,0,0,0,0.00528,0.0071,0.00826,0.01095,0,0,0,0,0,0,0.00573,0.00776,0.00907,0.01211,0,0,0,0,0,0,0.00482,0.00708,0.00856,0.01204,0,0,0,0,0,0,0.00565,0.00676,0.00745,0.00896,0,0,0,0,0,0,0.00519,0.00648,0.00737,0.00911,0,0,0,0,0,0,0.00518,0.00624,0.0069,0.00834,0,0,0,0,0,0,0.00542,0.00687,0.00779,0.00987,0,0,0,0,0,0,0.00535,0.00639,0.00703,0.00845,0,0,0,0,0,0,0,0.044,0.0353,0.04187,0,0,0,0,0,0,0,0.03924,0.03269,0.03926,0,0,0,0,0,0,0,0.04538,0.03774,0.04642,0,0,0,0,0,0,0,0.05031,0.0417,0.05059,0,0,0,0,0,0,0,0.02765,0.02569,0.03337,0,0,0,0,0,0,0,0.03284,0.03016,0.03769,0,0,0,0,0,0,0,0.02725,0.02499,0.03232,0,0,0,0,0,0,0,0.03426,0.02964,0.037,0,0,0,0,0,0,0,0.02419,0.02214,0.02792,0,0,0,0,0,0,0,3.50157,4.45447,6.04971,0,0,0,0,0,0,0,3.36399,4.44045,5.99442,0,0,0,0,0,0,0,3.77635,5.07331,6.90848,0,0,0,0,0,0,0,4.06431,5.46535,7.42827,0,0,0,0,0,0,0,3.48187,4.80312,6.35427,0,0,0,0,0,0,0,3.62361,5.03298,6.64281,0,0,0,0,0,0,0,3.61047,4.85966,6.4088,0,0,0,0,0,0,0,3.54652,4.72878,6.31281,0,0,0,0,0,0,0,3.06134,4.07251,5.32488,0,0,0,0,0,0,0,312.75167,316.30492,321.47904,0,0,0,0,0,0,0,315.54793,318.85902,323.63589,0,0,0,0,0,0,0,320.72814,324.17477,329.18963,0,0,0,0,0,0,0,312.9581,316.56303,321.83084,0,0,0,0,0,0,0,321.39189,323.80211,327.09892,0,0,0,0,0,0,0,316.12875,320.05773,322.71651,0,0,0,0,0,0,0,318.29158,320.61981,323.77224,0,0,0,0,0,0,0,318.56812,321.36897,325.3044,0,0,0,0,0,0,0,312.55649,315.03793,318.42679,0,0,0,0,0,0,0,0.00631,0.00741,0.01126,0,0,0,0,0,0,0,0.00632,0.00742,0.01127,0,0,0,0,0,0,0,0.00632,0.00742,0.01126,0,0,0,0,0,0,0,0.0064,0.00753,0.01144,0,0,0,0,0,0,0,0.00634,0.00744,0.01129,0,0,0,0,0,0,0,0.00641,0.00753,0.01144,0,0,0,0,0,0,0,0.00634,0.00744,0.01131,0,0,0,0,0,0,0,0.00635,0.00746,0.01133,0,0,0,0,0,0,0,0.00625,0.00733,0.01114,0,0,0,0,0,0,0,0.02083,0.02583,0.02913,0,0,0,0,0,0,0,0.02088,0.02589,0.0292,0,0,0,0,0,0,0,0.02094,0.02596,0.02928,0,0,0,0,0,0,0,0.02069,0.02565,0.02893,0,0,0,0,0,0,0,0.0209,0.02592,0.02923,0,0,0,0,0,0,0,0.02076,0.02574,0.02903,0,0,0,0,0,0,0,0.02083,0.02582,0.02912,0,0,0,0,0,0,0,0.02091,0.02592,0.02923,0,0,0,0,0,0,0,0.02095,0.02597,0.0293,0,0,0,0,0,0,0,0.3359,0.44601,0.52131,0,0,0,0,0,0,0,0.32708,0.44842,0.52403,0,0,0,0,0,0,0,0.36806,0.49647,0.59015,0,0,0,0,0,0,0,0.38511,0.52001,0.62335,0,0,0,0,0,0,0,0.35138,0.48076,0.57439,0,0,0,0,0,0,0,0.36659,0.4979,0.59554,0,0,0,0,0,0,0,0.35733,0.47715,0.56763,0,0,0,0,0,0,0,0.3742,0.50101,0.58888,0,0,0,0,0,0,0,0.33218,0.44764,0.51933,0,0,0,0,0,0,0.00083,0.00571,0.00846,0.01613,0,0,0,0,0,0,0.00076,0.00514,0.00761,0.01435,0,0,0,0,0,0,0.00088,0.00542,0.00804,0.0157,0,0,0,0,0,0,0.0009,0.00596,0.00887,0.01706,0,0,0,0,0,0,0.00053,0.0035,0.0052,0.00929,0,0,0,0,0,0,0.0006,0.00382,0.0058,0.01047,0,0,0,0,0,0,0.00051,0.00337,0.00501,0.00898,0,0,0,0,0,0,0.00065,0.00423,0.00628,0.01172,0,0,0,0,0,0,0.00047,0.00331,0.00491,0.00899,0,0,0,0,0,0,0.00914,0.04285,0.04901,0.06624,0,0,0,0,0,0,0.00924,0.04261,0.0481,0.06317,0,0,0,0,0,0,0.01025,0.04601,0.05186,0.0691,0,0,0,0,0,0,0.00882,0.04165,0.04822,0.06678,0,0,0,0,0,0,0.00931,0.04125,0.04492,0.05385,0,0,0,0,0,0,0.00868,0.0391,0.04353,0.05371,0,0,0,0,0,0,0.00854,0.03811,0.04162,0.05024,0,0,0,0,0,0,0.00922,0.04147,0.04595,0.05799,0,0,0,0,0,0,0.00878,0.03901,0.04243,0.05126,0,0,0,0,0,0,0.00254,0.01485,0.0203,0.03554,0,0,0,0,0,0,0.00243,0.01384,0.0187,0.03203,0,0,0,0,0,0,0.00278,0.01475,0.01993,0.03517,0,0,0,0,0,0,0.00264,0.01518,0.021,0.03741,0,0,0,0,0,0,0.00205,0.01093,0.01418,0.02208,0,0,0,0,0,0,0.00209,0.0112,0.01505,0.02413,0,0,0,0,0,0,0.00193,0.01032,0.01342,0.02105,0,0,0,0,0,0,0.00225,0.01219,0.01615,0.02681,0,0,0,0,0,0,0.00188,0.01031,0.01333,0.02114,0,0,0,0,0,0,0,0.01024,0.00913,0.00309,0,0,0,0,0,0,0,0.01033,0.00921,0.00312,0,0,0,0,0,0,0,0.0105,0.00936,0.00317,0,0,0,0,0,0,0,0.01025,0.00914,0.0031,0,0,0,0,0,0,0,0.01052,0.00935,0.00315,0,0,0,0,0,0,0,0.01035,0.00924,0.00311,0,0,0,0,0,0,0,0.01042,0.00926,0.00312,0,0,0,0,0,0,0,0.01043,0.00928,0.00313,0,0,0,0,0,0,0,0.01023,0.0091,0.00306,0,0,0,0,0,0,0,0.28388,0.37716,0.39327,0,0,0,0,0,0,0,0.25169,0.34476,0.3591,0,0,0,0,0,0,0,0.29044,0.39734,0.41263,0,0,0,0,0,0,0,0.32306,0.44048,0.45625,0,0,0,0,0,0,0,0.16567,0.25238,0.2603,0,0,0,0,0,0,0,0.20076,0.30345,0.30507,0,0,0,0,0,0,0,0.1612,0.24302,0.25049,0,0,0,0,0,0,0,0.21246,0.30218,0.31299,0,0,0,0,0,0,0,0.14361,0.21637,0.22279,0,0,0,0,0,0 +Compact car,PH10E,2010,0,0.00613,0.00675,0.00776,0.01072,0,0,0,0,0,0,0.00619,0.00674,0.00762,0.01018,0,0,0,0,0,0,0.00673,0.00734,0.00833,0.01122,0,0,0,0,0,0,0.00593,0.00663,0.00774,0.01105,0,0,0,0,0,0,0.00626,0.00661,0.00716,0.00866,0,0,0,0,0,0,0.00588,0.00631,0.00691,0.0087,0,0,0,0,0,0,0.00577,0.00611,0.00664,0.00807,0,0,0,0,0,0,0.00618,0.00662,0.00733,0.00935,0,0,0,0,0,0,0.00593,0.00625,0.00677,0.00817,0,0,0,0,0,0,0.03821,0.02636,0.02034,0.02656,0,0,0,0,0,0,0.0329,0.02378,0.01864,0.02457,0,0,0,0,0,0,0.03729,0.02802,0.02196,0.02919,0,0,0,0,0,0,0.04311,0.032,0.02495,0.03265,0,0,0,0,0,0,0.02084,0.01909,0.01594,0.02126,0,0,0,0,0,0,0.02419,0.02187,0.01768,0.02377,0,0,0,0,0,0,0.02019,0.01861,0.0156,0.02072,0,0,0,0,0,0,0.02695,0.02191,0.01765,0.02341,0,0,0,0,0,0,0.01941,0.01697,0.01392,0.01807,0,0,0,0,0,0,1.92333,2.98911,4.00319,5.13308,0,0,0,0,0,0,1.80096,2.9371,3.96557,5.07953,0,0,0,0,0,0,1.92573,3.27318,4.51752,5.85672,0,0,0,0,0,0,2.09471,3.54763,4.90588,6.33265,0,0,0,0,0,0,1.59901,2.99595,4.20513,5.40086,0,0,0,0,0,0,1.68343,3.15697,4.37356,5.6503,0,0,0,0,0,0,1.65039,3.05219,4.27079,5.465,0,0,0,0,0,0,1.7379,3.04051,4.18446,5.36564,0,0,0,0,0,0,1.4725,2.62623,3.58108,4.53945,0,0,0,0,0,0,306.53945,308.71835,312.44655,318.9748,0,0,0,0,0,0,309.44913,311.46064,314.92327,321.04691,0,0,0,0,0,0,314.48216,316.57989,320.18929,326.55848,0,0,0,0,0,0,306.72783,308.92926,312.72093,319.35634,0,0,0,0,0,0,315.77366,317.16827,319.64357,324.24976,0,0,0,0,0,0,310.3779,313.14072,314.843,320.01025,0,0,0,0,0,0,312.76988,314.10652,316.49615,320.96298,0,0,0,0,0,0,312.746,314.40776,317.31135,322.57488,0,0,0,0,0,0,306.9852,308.4518,310.99946,315.68109,0,0,0,0,0,0,0.00561,0.00634,0.00757,0.00989,0,0,0,0,0,0,0.00563,0.00636,0.00758,0.00989,0,0,0,0,0,0,0.00564,0.00636,0.00758,0.00988,0,0,0,0,0,0,0.00569,0.00644,0.00769,0.01006,0,0,0,0,0,0,0.00565,0.00638,0.0076,0.00991,0,0,0,0,0,0,0.00571,0.00645,0.00769,0.01005,0,0,0,0,0,0,0.00564,0.00638,0.00761,0.00993,0,0,0,0,0,0,0.00566,0.00639,0.00762,0.00994,0,0,0,0,0,0,0.00557,0.00629,0.00749,0.00978,0,0,0,0,0,0,0.01385,0.01607,0.02074,0.02215,0,0,0,0,0,0,0.01388,0.01611,0.02078,0.0222,0,0,0,0,0,0,0.01392,0.01615,0.02084,0.02226,0,0,0,0,0,0,0.01376,0.01596,0.02059,0.02199,0,0,0,0,0,0,0.0139,0.01613,0.02081,0.02222,0,0,0,0,0,0,0.01381,0.01602,0.02067,0.02207,0,0,0,0,0,0,0.01385,0.01607,0.02073,0.02214,0,0,0,0,0,0,0.0139,0.01613,0.02081,0.02222,0,0,0,0,0,0,0.01393,0.01616,0.02086,0.02227,0,0,0,0,0,0,0.08911,0.14566,0.15561,0.26121,0,0,0,0,0,0,0.08534,0.14512,0.15455,0.26066,0,0,0,0,0,0,0.08871,0.16012,0.16878,0.2928,0,0,0,0,0,0,0.09218,0.17011,0.17943,0.31222,0,0,0,0,0,0,0.07945,0.15028,0.15821,0.27968,0,0,0,0,0,0,0.08401,0.15824,0.16652,0.29309,0,0,0,0,0,0,0.0813,0.15019,0.15812,0.27721,0,0,0,0,0,0,0.08906,0.16049,0.16689,0.28876,0,0,0,0,0,0,0.08015,0.14247,0.14787,0.2524,0,0,0,0,0,0,0.0023,0.00362,0.00548,0.01192,0,0,0,0,0,0,0.00216,0.00337,0.00509,0.01081,0,0,0,0,0,0,0.0022,0.00344,0.00537,0.01163,0,0,0,0,0,0,0.00239,0.00377,0.00575,0.01261,0,0,0,0,0,0,0.00181,0.00277,0.00407,0.0078,0,0,0,0,0,0,0.00186,0.0029,0.00429,0.00848,0,0,0,0,0,0,0.00177,0.00271,0.00397,0.00755,0,0,0,0,0,0,0.00195,0.00302,0.00455,0.00923,0,0,0,0,0,0,0.00174,0.00265,0.00396,0.00753,0,0,0,0,0,0,0.03574,0.03875,0.04303,0.05772,0,0,0,0,0,0,0.03641,0.03915,0.04305,0.056,0,0,0,0,0,0,0.03932,0.04214,0.04659,0.06086,0,0,0,0,0,0,0.03416,0.03734,0.04195,0.05775,0,0,0,0,0,0,0.03774,0.03982,0.04262,0.05082,0,0,0,0,0,0,0.03503,0.03741,0.04036,0.04969,0,0,0,0,0,0,0.03478,0.03679,0.0395,0.04735,0,0,0,0,0,0,0.03673,0.03908,0.04249,0.05297,0,0,0,0,0,0,0.03577,0.03772,0.04052,0.04832,0,0,0,0,0,0,0.00856,0.01123,0.01501,0.02801,0,0,0,0,0,0,0.00836,0.01079,0.01423,0.02569,0,0,0,0,0,0,0.00883,0.01133,0.01526,0.02788,0,0,0,0,0,0,0.00855,0.01138,0.01545,0.02943,0,0,0,0,0,0,0.00783,0.00967,0.01215,0.0194,0,0,0,0,0,0,0.0076,0.00963,0.01231,0.02057,0,0,0,0,0,0,0.00738,0.00915,0.01155,0.0185,0,0,0,0,0,0,0.008,0.01008,0.01309,0.02236,0,0,0,0,0,0,0.00744,0.00916,0.01164,0.01854,0,0,0,0,0,0,0.01004,0.00891,0.00301,0.00307,0,0,0,0,0,0,0.01013,0.00899,0.00303,0.00309,0,0,0,0,0,0,0.0103,0.00914,0.00308,0.00314,0,0,0,0,0,0,0.01004,0.00892,0.00301,0.00307,0,0,0,0,0,0,0.01034,0.00916,0.00308,0.00312,0,0,0,0,0,0,0.01016,0.00904,0.00303,0.00308,0,0,0,0,0,0,0.01024,0.00907,0.00305,0.00309,0,0,0,0,0,0,0.01024,0.00908,0.00305,0.0031,0,0,0,0,0,0,0.01005,0.00891,0.00299,0.00304,0,0,0,0,0,0,0.11243,0.15808,0.21429,0.30987,0,0,0,0,0,0,0.09519,0.13973,0.19332,0.2818,0,0,0,0,0,0,0.10962,0.16501,0.22797,0.33302,0,0,0,0,0,0,0.12822,0.19048,0.26093,0.37634,0,0,0,0,0,0,0.05584,0.10296,0.15562,0.22686,0,0,0,0,0,0,0.06678,0.12104,0.17503,0.25768,0,0,0,0,0,0,0.0533,0.09906,0.1509,0.2196,0,0,0,0,0,0,0.07564,0.12336,0.17759,0.25892,0,0,0,0,0,0,0.05116,0.09091,0.13563,0.19363,0,0,0,0,0 +Compact car,PH10E,2015,0,0,0.00598,0.00646,0.00736,0.00956,0,0,0,0,0,0,0.00608,0.00651,0.00732,0.00926,0,0,0,0,0,0,0.00659,0.00706,0.00795,0.0101,0,0,0,0,0,0,0.00576,0.00627,0.00726,0.00968,0,0,0,0,0,0,0.00622,0.00652,0.00707,0.0083,0,0,0,0,0,0,0.00584,0.00616,0.00678,0.0082,0,0,0,0,0,0,0.00574,0.00603,0.00657,0.00775,0,0,0,0,0,0,0.0061,0.00647,0.00715,0.00872,0,0,0,0,0,0,0.0059,0.00618,0.00671,0.00786,0,0,0,0,0,0,0.02858,0.01877,0.01692,0.01947,0,0,0,0,0,0,0.02585,0.01739,0.016,0.01839,0,0,0,0,0,0,0.02827,0.0202,0.01861,0.02156,0,0,0,0,0,0,0.03158,0.02255,0.02067,0.02389,0,0,0,0,0,0,0.01822,0.01492,0.01487,0.01711,0,0,0,0,0,0,0.02112,0.01655,0.01626,0.01878,0,0,0,0,0,0,0.01786,0.01463,0.01467,0.01686,0,0,0,0,0,0,0.02207,0.01655,0.01582,0.01818,0,0,0,0,0,0,0.01723,0.0133,0.01305,0.0148,0,0,0,0,0,0,1.51417,2.66864,3.57078,4.41441,0,0,0,0,0,0,1.48811,2.66618,3.59787,4.43354,0,0,0,0,0,0,1.54893,2.95771,4.08742,5.07154,0,0,0,0,0,0,1.67071,3.18161,4.40907,5.45195,0,0,0,0,0,0,1.40489,2.86373,4.01722,4.91998,0,0,0,0,0,0,1.46876,2.93868,4.13233,5.08818,0,0,0,0,0,0,1.44932,2.92862,4.09625,5.00443,0,0,0,0,0,0,1.46752,2.83903,3.90822,4.79595,0,0,0,0,0,0,1.30145,2.5134,3.42382,4.16208,0,0,0,0,0,0,277.7412,279.83305,281.88384,288.23583,0,0,0,0,0,0,280.30679,282.21061,284.00879,290.01671,0,0,0,0,0,0,284.88947,286.88456,288.79315,295.02264,0,0,0,0,0,0,277.94,280.06191,282.16672,288.61727,0,0,0,0,0,0,285.78779,287.00245,287.8791,292.58807,0,0,0,0,0,0,282.03185,282.47762,283.71095,288.89519,0,0,0,0,0,0,283.05994,284.21552,285.0271,289.61184,0,0,0,0,0,0,283.15374,284.66763,285.94535,291.21682,0,0,0,0,0,0,277.8483,279.14374,280.12833,284.87858,0,0,0,0,0,0,0.00364,0.00412,0.00475,0.00634,0,0,0,0,0,0,0.00366,0.00414,0.00477,0.00636,0,0,0,0,0,0,0.0037,0.00417,0.0048,0.00637,0,0,0,0,0,0,0.00367,0.00415,0.0048,0.00642,0,0,0,0,0,0,0.0037,0.00417,0.00481,0.00639,0,0,0,0,0,0,0.0037,0.00418,0.00483,0.00644,0,0,0,0,0,0,0.00367,0.00414,0.00478,0.00637,0,0,0,0,0,0,0.00369,0.00417,0.0048,0.00639,0,0,0,0,0,0,0.00364,0.0041,0.00473,0.00629,0,0,0,0,0,0,0.01385,0.01619,0.02074,0.02088,0,0,0,0,0,0,0.01388,0.01623,0.02078,0.02093,0,0,0,0,0,0,0.01392,0.01627,0.02084,0.02098,0,0,0,0,0,0,0.01376,0.01608,0.02059,0.02073,0,0,0,0,0,0,0.0139,0.01625,0.02081,0.02095,0,0,0,0,0,0,0.01381,0.01613,0.02067,0.02081,0,0,0,0,0,0,0.01385,0.01618,0.02073,0.02087,0,0,0,0,0,0,0.0139,0.01625,0.02081,0.02095,0,0,0,0,0,0,0.01393,0.01628,0.02086,0.021,0,0,0,0,0,0,0.07275,0.09638,0.13778,0.18606,0,0,0,0,0,0,0.07205,0.09517,0.13651,0.1846,0,0,0,0,0,0,0.07331,0.10428,0.14871,0.2032,0,0,0,0,0,0,0.07684,0.11119,0.15858,0.21708,0,0,0,0,0,0,0.06481,0.09517,0.13805,0.19036,0,0,0,0,0,0,0.06939,0.10104,0.14597,0.20096,0,0,0,0,0,0,0.06594,0.09513,0.13825,0.18993,0,0,0,0,0,0,0.0728,0.10206,0.14645,0.19953,0,0,0,0,0,0,0.06565,0.08983,0.12931,0.17515,0,0,0,0,0,0,0.00209,0.0032,0.00497,0.00913,0,0,0,0,0,0,0.00199,0.00305,0.0047,0.0085,0,0,0,0,0,0,0.00201,0.00316,0.00489,0.00896,0,0,0,0,0,0,0.00213,0.00329,0.00513,0.00954,0,0,0,0,0,0,0.00173,0.00261,0.00396,0.00676,0,0,0,0,0,0,0.00178,0.0027,0.00411,0.00715,0,0,0,0,0,0,0.0017,0.00256,0.00388,0.00659,0,0,0,0,0,0,0.00183,0.00282,0.00431,0.00758,0,0,0,0,0,0,0.00168,0.00256,0.00387,0.00656,0,0,0,0,0,0,0.03518,0.03766,0.04168,0.05138,0,0,0,0,0,0,0.03597,0.0383,0.04203,0.05078,0,0,0,0,0,0,0.03883,0.04137,0.04532,0.05476,0,0,0,0,0,0,0.03349,0.03608,0.04031,0.05067,0,0,0,0,0,0,0.03756,0.03941,0.04231,0.04851,0,0,0,0,0,0,0.03494,0.03679,0.0399,0.04671,0,0,0,0,0,0,0.03462,0.03642,0.03925,0.04522,0,0,0,0,0,0,0.03643,0.03854,0.04184,0.04926,0,0,0,0,0,0,0.03562,0.03748,0.04028,0.04619,0,0,0,0,0,0,0.00807,0.01026,0.01382,0.0224,0,0,0,0,0,0,0.00797,0.01003,0.01333,0.02107,0,0,0,0,0,0,0.0084,0.01064,0.01413,0.02249,0,0,0,0,0,0,0.00797,0.01026,0.014,0.02317,0,0,0,0,0,0,0.00766,0.0093,0.01187,0.01736,0,0,0,0,0,0,0.00744,0.00916,0.01191,0.01794,0,0,0,0,0,0,0.00724,0.00883,0.01133,0.01661,0,0,0,0,0,0,0.00773,0.0096,0.01252,0.01908,0,0,0,0,0,0,0.00731,0.00895,0.01143,0.01666,0,0,0,0,0,0,0.00802,0.00269,0.00271,0.00277,0,0,0,0,0,0,0.00809,0.00272,0.00273,0.00279,0,0,0,0,0,0,0.00823,0.00276,0.00278,0.00284,0,0,0,0,0,0,0.00803,0.0027,0.00272,0.00278,0,0,0,0,0,0,0.00825,0.00276,0.00277,0.00282,0,0,0,0,0,0,0.00814,0.00272,0.00273,0.00278,0,0,0,0,0,0,0.00817,0.00274,0.00274,0.00279,0,0,0,0,0,0,0.00818,0.00274,0.00275,0.0028,0,0,0,0,0,0,0.00802,0.00269,0.0027,0.00274,0,0,0,0,0,0,0.08082,0.11753,0.17355,0.23767,0,0,0,0,0,0,0.07168,0.10731,0.1619,0.22166,0,0,0,0,0,0,0.07963,0.12464,0.18824,0.25967,0,0,0,0,0,0,0.09014,0.14006,0.21006,0.28933,0,0,0,0,0,0,0.04669,0.08662,0.14305,0.1969,0,0,0,0,0,0,0.05604,0.09751,0.1582,0.21833,0,0,0,0,0,0,0.04516,0.08418,0.14005,0.19256,0,0,0,0,0,0,0.05911,0.09896,0.15585,0.21392,0,0,0,0,0,0,0.0434,0.07691,0.12534,0.17012,0,0,0,0 +Compact car,PH10E,2020,0,0,0,0.00582,0.00619,0.00677,0.00849,0,0,0,0,0,0,0.00594,0.00627,0.00679,0.00832,0,0,0,0,0,0,0.00644,0.0068,0.00737,0.00905,0,0,0,0,0,0,0.00558,0.00598,0.00661,0.00849,0,0,0,0,0,0,0.00613,0.00636,0.00672,0.00772,0,0,0,0,0,0,0.00572,0.00598,0.00638,0.00753,0,0,0,0,0,0,0.00565,0.00588,0.00622,0.00719,0,0,0,0,0,0,0.00599,0.00627,0.00671,0.00797,0,0,0,0,0,0,0.00581,0.00603,0.00637,0.00731,0,0,0,0,0,0,0.02198,0.01508,0.01246,0.0145,0,0,0,0,0,0,0.01951,0.01373,0.01155,0.01353,0,0,0,0,0,0,0.0217,0.01596,0.01344,0.016,0,0,0,0,0,0,0.02453,0.01795,0.01505,0.01783,0,0,0,0,0,0,0.01249,0.0108,0.00986,0.01206,0,0,0,0,0,0,0.01464,0.01226,0.011,0.01343,0,0,0,0,0,0,0.0121,0.01054,0.00969,0.01185,0,0,0,0,0,0,0.01599,0.01252,0.01093,0.0131,0,0,0,0,0,0,0.01159,0.0096,0.00863,0.01033,0,0,0,0,0,0,1.19189,1.77193,2.20772,2.94635,0,0,0,0,0,0,1.16407,1.74982,2.19355,2.93403,0,0,0,0,0,0,1.22173,1.9406,2.48588,3.3872,0,0,0,0,0,0,1.32764,2.10925,2.71431,3.67658,0,0,0,0,0,0,1.07895,1.81274,2.34711,3.19906,0,0,0,0,0,0,1.12172,1.87932,2.44218,3.34315,0,0,0,0,0,0,1.11046,1.85748,2.4008,3.25854,0,0,0,0,0,0,1.13731,1.82785,2.32946,3.14885,0,0,0,0,0,0,0.99457,1.59576,2.01024,2.68922,0,0,0,0,0,0,220.59257,222.13416,223.6185,236.83522,0,0,0,0,0,0,222.49626,223.88809,225.16116,238.12116,0,0,0,0,0,0,226.17838,227.64109,229.00274,242.2905,0,0,0,0,0,0,220.80178,222.37128,223.90415,237.21932,0,0,0,0,0,0,226.37485,227.21768,227.72509,239.60635,0,0,0,0,0,0,222.77749,223.82852,224.63525,236.83943,0,0,0,0,0,0,224.19532,224.9943,225.45067,237.14523,0,0,0,0,0,0,224.49111,225.57262,226.41296,238.75475,0,0,0,0,0,0,220.11573,221.02123,221.61705,233.32926,0,0,0,0,0,0,0.00371,0.00414,0.00473,0.00585,0,0,0,0,0,0,0.00373,0.00416,0.00475,0.00587,0,0,0,0,0,0,0.00377,0.00419,0.00478,0.00589,0,0,0,0,0,0,0.00374,0.00417,0.00478,0.00592,0,0,0,0,0,0,0.00377,0.00419,0.00479,0.0059,0,0,0,0,0,0,0.00377,0.0042,0.00481,0.00595,0,0,0,0,0,0,0.00373,0.00416,0.00476,0.00588,0,0,0,0,0,0,0.00376,0.00419,0.00478,0.0059,0,0,0,0,0,0,0.0037,0.00412,0.00471,0.00581,0,0,0,0,0,0,0.01385,0.01614,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01617,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01622,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01603,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01608,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01613,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.0162,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01623,0.02086,0.02086,0,0,0,0,0,0,0.05022,0.07749,0.10392,0.13907,0,0,0,0,0,0,0.0492,0.07615,0.10243,0.13729,0,0,0,0,0,0,0.05042,0.08309,0.11108,0.15119,0,0,0,0,0,0,0.0533,0.08913,0.11923,0.16266,0,0,0,0,0,0,0.04239,0.07395,0.10041,0.13823,0,0,0,0,0,0,0.04606,0.07938,0.10741,0.14755,0,0,0,0,0,0,0.04304,0.07426,0.10108,0.13839,0,0,0,0,0,0,0.04823,0.08062,0.10846,0.14699,0,0,0,0,0,0,0.04239,0.0702,0.09471,0.12729,0,0,0,0,0,0,0.00178,0.00264,0.00376,0.00691,0,0,0,0,0,0,0.00171,0.00252,0.00357,0.00649,0,0,0,0,0,0,0.00176,0.0026,0.0037,0.00679,0,0,0,0,0,0,0.00182,0.00271,0.00387,0.00719,0,0,0,0,0,0,0.0015,0.00218,0.00302,0.00529,0,0,0,0,0,0,0.00154,0.00225,0.00314,0.00556,0,0,0,0,0,0,0.00147,0.00214,0.00296,0.00516,0,0,0,0,0,0,0.00159,0.00234,0.00328,0.00586,0,0,0,0,0,0,0.00147,0.00214,0.00296,0.00514,0,0,0,0,0,0,0.03448,0.03641,0.03897,0.04634,0,0,0,0,0,0,0.03534,0.03714,0.03951,0.04626,0,0,0,0,0,0,0.03826,0.04015,0.04265,0.04986,0,0,0,0,0,0,0.03276,0.03477,0.03745,0.04528,0,0,0,0,0,0,0.03704,0.03849,0.04034,0.04535,0,0,0,0,0,0,0.03429,0.03582,0.0378,0.04324,0,0,0,0,0,0,0.03412,0.03553,0.03732,0.04217,0,0,0,0,0,0,0.0359,0.03752,0.03961,0.04545,0,0,0,0,0,0,0.03519,0.03659,0.03837,0.04316,0,0,0,0,0,0,0.00745,0.00916,0.01142,0.01794,0,0,0,0,0,0,0.00741,0.00901,0.0111,0.01707,0,0,0,0,0,0,0.00789,0.00956,0.01178,0.01815,0,0,0,0,0,0,0.00732,0.0091,0.01147,0.01839,0,0,0,0,0,0,0.00721,0.00849,0.01012,0.01456,0,0,0,0,0,0,0.00695,0.00831,0.01005,0.01487,0,0,0,0,0,0,0.00679,0.00804,0.00963,0.01392,0,0,0,0,0,0,0.00726,0.00869,0.01054,0.01571,0,0,0,0,0,0,0.00692,0.00816,0.00973,0.01398,0,0,0,0,0,0,0.00212,0.00214,0.00215,0.00228,0,0,0,0,0,0,0.00214,0.00215,0.00217,0.00229,0,0,0,0,0,0,0.00218,0.00219,0.0022,0.00233,0,0,0,0,0,0,0.00213,0.00214,0.00216,0.00228,0,0,0,0,0,0,0.00218,0.00219,0.00219,0.00231,0,0,0,0,0,0,0.00214,0.00215,0.00216,0.00228,0,0,0,0,0,0,0.00216,0.00217,0.00217,0.00228,0,0,0,0,0,0,0.00216,0.00217,0.00218,0.0023,0,0,0,0,0,0,0.00212,0.00213,0.00213,0.00225,0,0,0,0,0,0,0.06737,0.09382,0.12807,0.17896,0,0,0,0,0,0,0.05915,0.08416,0.11677,0.16464,0,0,0,0,0,0,0.06647,0.09779,0.13583,0.19454,0,0,0,0,0,0,0.07567,0.11068,0.153,0.21816,0,0,0,0,0,0,0.03614,0.06167,0.09265,0.13863,0,0,0,0,0,0,0.04322,0.0713,0.10525,0.15641,0,0,0,0,0,0,0.03467,0.05957,0.09015,0.13498,0,0,0,0,0,0,0.04757,0.07406,0.10651,0.15486,0,0,0,0,0,0,0.03306,0.0545,0.08096,0.11843,0,0,0 +Compact car,PH10E,2025,0,0,0,0,0.00557,0.0058,0.00619,0.00736,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.00731,0,0,0,0,0,0,0.00619,0.00642,0.00679,0.00795,0,0,0,0,0,0,0.00532,0.00556,0.00598,0.00726,0,0,0,0,0,0,0.00597,0.00611,0.00635,0.00704,0,0,0,0,0,0,0.00554,0.0057,0.00597,0.00676,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00654,0,0,0,0,0,0,0.00579,0.00597,0.00626,0.00713,0,0,0,0,0,0,0.00565,0.00579,0.00601,0.00667,0,0,0,0,0,0,0.01928,0.01221,0.00966,0.01115,0,0,0,0,0,0,0.01672,0.01081,0.00871,0.01015,0,0,0,0,0,0,0.0189,0.0126,0.01015,0.01198,0,0,0,0,0,0,0.02166,0.01437,0.01151,0.0135,0,0,0,0,0,0,0.00952,0.00739,0.00652,0.00808,0,0,0,0,0,0,0.01164,0.00871,0.00752,0.00924,0,0,0,0,0,0,0.00909,0.00713,0.00635,0.00788,0,0,0,0,0,0,0.01308,0.00922,0.00773,0.00928,0,0,0,0,0,0,0.00868,0.00652,0.00569,0.00691,0,0,0,0,0,0,0.89002,1.28198,1.61181,2.11974,0,0,0,0,0,0,0.84974,1.24287,1.57466,2.07774,0,0,0,0,0,0,0.89901,1.38046,1.78361,2.39019,0,0,0,0,0,0,0.9913,1.52072,1.97036,2.62377,0,0,0,0,0,0,0.72896,1.21177,1.59549,2.15063,0,0,0,0,0,0,0.77473,1.27688,1.68334,2.27475,0,0,0,0,0,0,0.74902,1.2427,1.63394,2.19387,0,0,0,0,0,0,0.79885,1.25791,1.62447,2.16826,0,0,0,0,0,0,0.67343,1.07011,1.37071,1.81715,0,0,0,0,0,0,178.4843,179.81652,181.36821,192.70627,0,0,0,0,0,0,179.91777,181.12452,182.49201,193.58788,0,0,0,0,0,0,182.93111,184.19802,185.64826,197.03293,0,0,0,0,0,0,178.69575,180.05297,181.65085,193.08522,0,0,0,0,0,0,182.67748,183.42269,184.12002,194.21297,0,0,0,0,0,0,179.92792,180.84804,181.80645,192.20995,0,0,0,0,0,0,180.90394,181.61221,182.26392,192.19562,0,0,0,0,0,0,181.31934,182.26513,183.25416,193.77617,0,0,0,0,0,0,177.64855,178.44373,179.20809,189.15888,0,0,0,0,0,0,0.00374,0.00413,0.00472,0.00575,0,0,0,0,0,0,0.00375,0.00415,0.00474,0.00577,0,0,0,0,0,0,0.00379,0.00419,0.00477,0.0058,0,0,0,0,0,0,0.00376,0.00417,0.00477,0.00582,0,0,0,0,0,0,0.00379,0.00419,0.00477,0.00581,0,0,0,0,0,0,0.00379,0.0042,0.00479,0.00585,0,0,0,0,0,0,0.00376,0.00416,0.00475,0.00579,0,0,0,0,0,0,0.00378,0.00418,0.00477,0.00581,0,0,0,0,0,0,0.00372,0.00412,0.00469,0.00571,0,0,0,0,0,0,0.01385,0.01613,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01616,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01621,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01601,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01618,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01607,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01612,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01618,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01622,0.02086,0.02086,0,0,0,0,0,0,0.03847,0.05613,0.07465,0.10182,0,0,0,0,0,0,0.03723,0.0546,0.07288,0.0997,0,0,0,0,0,0,0.0382,0.0591,0.07849,0.10911,0,0,0,0,0,0,0.04075,0.06387,0.08486,0.11809,0,0,0,0,0,0,0.03028,0.05015,0.06804,0.09618,0,0,0,0,0,0,0.03375,0.05493,0.07409,0.10424,0,0,0,0,0,0,0.03085,0.05062,0.0688,0.09667,0,0,0,0,0,0,0.03533,0.05591,0.07493,0.10409,0,0,0,0,0,0,0.03022,0.04779,0.06442,0.08891,0,0,0,0,0,0,0.00117,0.0017,0.00245,0.00471,0,0,0,0,0,0,0.00112,0.00162,0.00232,0.00442,0,0,0,0,0,0,0.00115,0.00167,0.00241,0.00462,0,0,0,0,0,0,0.00119,0.00174,0.00252,0.00488,0,0,0,0,0,0,0.00098,0.0014,0.00197,0.00363,0,0,0,0,0,0,0.00101,0.00145,0.00205,0.00381,0,0,0,0,0,0,0.00096,0.00138,0.00193,0.00354,0,0,0,0,0,0,0.00104,0.0015,0.00214,0.004,0,0,0,0,0,0,0.00096,0.00137,0.00193,0.00353,0,0,0,0,0,0,0.03315,0.03434,0.03605,0.04131,0,0,0,0,0,0,0.03407,0.03519,0.03677,0.04161,0,0,0,0,0,0,0.03695,0.03811,0.03979,0.04493,0,0,0,0,0,0,0.03139,0.03263,0.03442,0.03997,0,0,0,0,0,0,0.03597,0.03687,0.0381,0.04176,0,0,0,0,0,0,0.03318,0.03413,0.03545,0.0394,0,0,0,0,0,0,0.03307,0.03394,0.03515,0.03868,0,0,0,0,0,0,0.03474,0.03574,0.03714,0.04136,0,0,0,0,0,0,0.03414,0.03501,0.0362,0.0397,0,0,0,0,0,0,0.00628,0.00733,0.00883,0.01349,0,0,0,0,0,0,0.0063,0.00728,0.00868,0.01296,0,0,0,0,0,0,0.00673,0.00776,0.00924,0.01379,0,0,0,0,0,0,0.00611,0.0072,0.00878,0.0137,0,0,0,0,0,0,0.00626,0.00706,0.00815,0.01139,0,0,0,0,0,0,0.00596,0.0068,0.00797,0.01147,0,0,0,0,0,0,0.00586,0.00663,0.0077,0.01083,0,0,0,0,0,0,0.00623,0.00712,0.00836,0.01209,0,0,0,0,0,0,0.00599,0.00676,0.00782,0.01092,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.00185,0,0,0,0,0,0,0.00173,0.00174,0.00176,0.00186,0,0,0,0,0,0,0.00176,0.00177,0.00179,0.0019,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.00186,0,0,0,0,0,0,0.00176,0.00177,0.00177,0.00187,0,0,0,0,0,0,0.00173,0.00174,0.00175,0.00185,0,0,0,0,0,0,0.00174,0.00175,0.00175,0.00185,0,0,0,0,0,0,0.00175,0.00175,0.00176,0.00187,0,0,0,0,0,0,0.00171,0.00172,0.00172,0.00182,0,0,0,0,0,0,0.05982,0.07796,0.10264,0.14076,0,0,0,0,0,0,0.05135,0.06806,0.09097,0.12624,0,0,0,0,0,0,0.05854,0.07933,0.10608,0.14894,0,0,0,0,0,0,0.06753,0.09101,0.12106,0.16895,0,0,0,0,0,0,0.02761,0.04285,0.06255,0.09374,0,0,0,0,0,0,0.03457,0.05175,0.07381,0.10909,0,0,0,0,0,0,0.02609,0.04087,0.06018,0.09049,0,0,0,0,0,0,0.03928,0.05592,0.07758,0.11167,0,0,0,0,0,0,0.0248,0.03757,0.0544,0.07997,0,0 +Compact car,PH10E,2030,0,0,0,0,0,0.00557,0.0058,0.00618,0.00705,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.00704,0,0,0,0,0,0,0.00619,0.00641,0.00679,0.00764,0,0,0,0,0,0,0.00531,0.00556,0.00598,0.00692,0,0,0,0,0,0,0.00597,0.00611,0.00634,0.00686,0,0,0,0,0,0,0.00554,0.00569,0.00596,0.00655,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00636,0,0,0,0,0,0,0.00579,0.00596,0.00626,0.0069,0,0,0,0,0,0,0.00565,0.00578,0.00601,0.0065,0,0,0,0,0,0,0.01833,0.01129,0.00883,0.00983,0,0,0,0,0,0,0.01577,0.00989,0.00787,0.00881,0,0,0,0,0,0,0.01792,0.01153,0.00919,0.01035,0,0,0,0,0,0,0.02064,0.01321,0.01047,0.01175,0,0,0,0,0,0,0.00853,0.00632,0.00555,0.00646,0,0,0,0,0,0,0.01063,0.0076,0.00651,0.00752,0,0,0,0,0,0,0.00809,0.00606,0.00538,0.00626,0,0,0,0,0,0,0.01208,0.00818,0.00679,0.00774,0,0,0,0,0,0,0.00771,0.00556,0.00484,0.00555,0,0,0,0,0,0,0.80818,1.15718,1.46563,1.83793,0,0,0,0,0,0,0.76497,1.11412,1.42304,1.78491,0,0,0,0,0,0,0.81184,1.23798,1.61193,2.0425,0,0,0,0,0,0,0.90005,1.37018,1.78788,2.2557,0,0,0,0,0,0,0.63564,1.06015,1.41202,1.78413,0,0,0,0,0,0,0.68181,1.12428,1.49778,1.89931,0,0,0,0,0,0,0.6526,1.08734,1.44637,1.822,0,0,0,0,0,0,0.70798,1.11376,1.45203,1.82777,0,0,0,0,0,0,0.58758,0.93762,1.21416,1.51657,0,0,0,0,0,0,164.25068,165.90879,168.4776,175.72817,0,0,0,0,0,0,165.53005,167.07511,169.47594,176.46779,0,0,0,0,0,0,168.31575,169.92398,172.4226,179.63006,0,0,0,0,0,0,164.46155,166.14375,168.76003,176.10116,0,0,0,0,0,0,167.92857,169.05301,170.82585,176.80948,0,0,0,0,0,0,165.45847,166.73838,168.74581,175.08063,0,0,0,0,0,0,166.29281,167.37914,169.09797,174.96466,0,0,0,0,0,0,166.7407,168.04743,170.09259,176.51128,0,0,0,0,0,0,163.31335,164.47117,166.27551,172.21957,0,0,0,0,0,0,0.00373,0.00412,0.00471,0.00572,0,0,0,0,0,0,0.00375,0.00414,0.00473,0.00574,0,0,0,0,0,0,0.00379,0.00417,0.00476,0.00577,0,0,0,0,0,0,0.00376,0.00415,0.00476,0.00579,0,0,0,0,0,0,0.00379,0.00417,0.00477,0.00578,0,0,0,0,0,0,0.00379,0.00418,0.00479,0.00582,0,0,0,0,0,0,0.00375,0.00414,0.00474,0.00576,0,0,0,0,0,0,0.00378,0.00417,0.00476,0.00578,0,0,0,0,0,0,0.00372,0.0041,0.00469,0.00568,0,0,0,0,0,0,0.01385,0.01612,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01615,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.0162,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.016,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01617,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01606,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01611,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01617,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01621,0.02086,0.02086,0,0,0,0,0,0,0.03392,0.04846,0.06556,0.08661,0,0,0,0,0,0,0.0326,0.04685,0.06369,0.08432,0,0,0,0,0,0,0.03342,0.05047,0.06835,0.09154,0,0,0,0,0,0,0.03579,0.05475,0.07415,0.09932,0,0,0,0,0,0,0.02559,0.04164,0.058,0.07865,0,0,0,0,0,0,0.02895,0.04616,0.06375,0.08611,0,0,0,0,0,0,0.02614,0.04213,0.05876,0.07931,0,0,0,0,0,0,0.03029,0.04701,0.06447,0.08625,0,0,0,0,0,0,0.02552,0.03978,0.05499,0.07319,0,0,0,0,0,0,0.00116,0.00169,0.00244,0.00406,0,0,0,0,0,0,0.00112,0.00162,0.00232,0.00382,0,0,0,0,0,0,0.00115,0.00167,0.0024,0.00399,0,0,0,0,0,0,0.00119,0.00173,0.00251,0.0042,0,0,0,0,0,0,0.00098,0.0014,0.00197,0.00314,0,0,0,0,0,0,0.001,0.00144,0.00204,0.0033,0,0,0,0,0,0,0.00096,0.00137,0.00193,0.00307,0,0,0,0,0,0,0.00104,0.0015,0.00213,0.00346,0,0,0,0,0,0,0.00096,0.00137,0.00193,0.00306,0,0,0,0,0,0,0.03315,0.03433,0.03603,0.03981,0,0,0,0,0,0,0.03407,0.03518,0.03676,0.04023,0,0,0,0,0,0,0.03694,0.0381,0.03977,0.04346,0,0,0,0,0,0,0.03138,0.03261,0.0344,0.03839,0,0,0,0,0,0,0.03597,0.03686,0.0381,0.0407,0,0,0,0,0,0,0.03317,0.03412,0.03544,0.03826,0,0,0,0,0,0,0.03306,0.03393,0.03514,0.03766,0,0,0,0,0,0,0.03473,0.03573,0.03713,0.04015,0,0,0,0,0,0,0.03413,0.035,0.0362,0.03869,0,0,0,0,0,0,0.00627,0.00732,0.00882,0.01216,0,0,0,0,0,0,0.00629,0.00727,0.00867,0.01174,0,0,0,0,0,0,0.00673,0.00775,0.00923,0.01249,0,0,0,0,0,0,0.0061,0.00719,0.00877,0.0123,0,0,0,0,0,0,0.00626,0.00705,0.00814,0.01045,0,0,0,0,0,0,0.00596,0.0068,0.00797,0.01046,0,0,0,0,0,0,0.00586,0.00663,0.00769,0.00992,0,0,0,0,0,0,0.00623,0.00711,0.00835,0.01102,0,0,0,0,0,0,0.00599,0.00676,0.00782,0.01002,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00169,0,0,0,0,0,0,0.00159,0.00161,0.00163,0.0017,0,0,0,0,0,0,0.00162,0.00164,0.00166,0.00173,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.0017,0,0,0,0,0,0,0.00162,0.00163,0.00164,0.0017,0,0,0,0,0,0,0.00159,0.0016,0.00162,0.00169,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00168,0,0,0,0,0,0,0.0016,0.00162,0.00164,0.0017,0,0,0,0,0,0,0.00157,0.00158,0.0016,0.00166,0,0,0,0,0,0,0.05707,0.07272,0.09535,0.12581,0,0,0,0,0,0,0.04858,0.06282,0.08362,0.1111,0,0,0,0,0,0,0.05567,0.07329,0.09759,0.13051,0,0,0,0,0,0,0.06452,0.08452,0.11193,0.14909,0,0,0,0,0,0,0.02478,0.03697,0.05408,0.07548,0,0,0,0,0,0,0.03167,0.04558,0.06494,0.08977,0,0,0,0,0,0,0.02326,0.03502,0.05175,0.07242,0,0,0,0,0,0,0.03644,0.05016,0.06939,0.09427,0,0,0,0,0,0,0.02208,0.0323,0.04692,0.06465,0 +Compact car,PH10E,2035,0,0,0,0,0,0,0.00557,0.0058,0.00618,0.00702,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.007,0,0,0,0,0,0,0.00619,0.00641,0.00679,0.00761,0,0,0,0,0,0,0.00531,0.00556,0.00598,0.00689,0,0,0,0,0,0,0.00597,0.00611,0.00635,0.00684,0,0,0,0,0,0,0.00554,0.0057,0.00596,0.00653,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00634,0,0,0,0,0,0,0.00579,0.00596,0.00626,0.00687,0,0,0,0,0,0,0.00565,0.00579,0.00601,0.00648,0,0,0,0,0,0,0.01821,0.01128,0.00884,0.00964,0,0,0,0,0,0,0.01566,0.00987,0.00788,0.00861,0,0,0,0,0,0,0.0178,0.01151,0.00919,0.0101,0,0,0,0,0,0,0.0205,0.0132,0.01048,0.01148,0,0,0,0,0,0,0.00848,0.00632,0.00556,0.00619,0,0,0,0,0,0,0.01056,0.00759,0.00651,0.00725,0,0,0,0,0,0,0.00805,0.00606,0.00538,0.006,0,0,0,0,0,0,0.01201,0.00818,0.0068,0.0075,0,0,0,0,0,0,0.00767,0.00556,0.00484,0.00533,0,0,0,0,0,0,0.80899,1.15823,1.46633,1.7982,0,0,0,0,0,0,0.7661,1.1152,1.42366,1.74305,0,0,0,0,0,0,0.81314,1.23931,1.61265,1.9922,0,0,0,0,0,0,0.90142,1.37163,1.78868,2.20234,0,0,0,0,0,0,0.6378,1.06142,1.41243,1.72944,0,0,0,0,0,0,0.68388,1.12561,1.49827,1.84347,0,0,0,0,0,0,0.65486,1.08862,1.44675,1.76649,0,0,0,0,0,0,0.70975,1.11491,1.45255,1.77778,0,0,0,0,0,0,0.58938,0.93855,1.21454,1.47211,0,0,0,0,0,0,164.21169,165.91696,168.49293,173.23026,0,0,0,0,0,0,165.49351,167.0828,169.48996,173.94582,0,0,0,0,0,0,168.27748,169.93209,172.43774,177.06771,0,0,0,0,0,0,164.42138,166.15201,168.77561,173.60384,0,0,0,0,0,0,167.89991,169.05817,170.83546,174.23319,0,0,0,0,0,0,165.4266,166.74451,168.75739,172.55037,0,0,0,0,0,0,166.26517,167.38426,169.10732,172.4135,0,0,0,0,0,0,166.70867,168.05376,170.10444,173.96108,0,0,0,0,0,0,163.28574,164.47696,166.2861,169.71334,0,0,0,0,0,0,0.00372,0.00412,0.00472,0.00574,0,0,0,0,0,0,0.00374,0.00414,0.00473,0.00576,0,0,0,0,0,0,0.00378,0.00417,0.00476,0.00578,0,0,0,0,0,0,0.00375,0.00415,0.00476,0.00581,0,0,0,0,0,0,0.00378,0.00418,0.00477,0.00579,0,0,0,0,0,0,0.00378,0.00418,0.00479,0.00583,0,0,0,0,0,0,0.00374,0.00414,0.00474,0.00577,0,0,0,0,0,0,0.00377,0.00417,0.00477,0.00579,0,0,0,0,0,0,0.00371,0.0041,0.00469,0.0057,0,0,0,0,0,0,0.01385,0.01614,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01617,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01622,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01602,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01608,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01613,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01623,0.02086,0.02086,0,0,0,0,0,0,0.03391,0.04858,0.0656,0.08435,0,0,0,0,0,0,0.03259,0.04697,0.06373,0.08202,0,0,0,0,0,0,0.03342,0.0506,0.0684,0.08883,0,0,0,0,0,0,0.0358,0.05489,0.0742,0.09641,0,0,0,0,0,0,0.02561,0.04177,0.05804,0.07591,0,0,0,0,0,0,0.02897,0.04629,0.06378,0.08327,0,0,0,0,0,0,0.02616,0.04226,0.0588,0.0766,0,0,0,0,0,0,0.0303,0.04714,0.06451,0.08349,0,0,0,0,0,0,0.02554,0.03989,0.05502,0.07078,0,0,0,0,0,0,0.00116,0.00169,0.00244,0.00394,0,0,0,0,0,0,0.00112,0.00162,0.00232,0.00371,0,0,0,0,0,0,0.00115,0.00167,0.00241,0.00387,0,0,0,0,0,0,0.00119,0.00173,0.00251,0.00408,0,0,0,0,0,0,0.00098,0.0014,0.00197,0.00305,0,0,0,0,0,0,0.001,0.00144,0.00204,0.0032,0,0,0,0,0,0,0.00096,0.00137,0.00193,0.00299,0,0,0,0,0,0,0.00104,0.0015,0.00214,0.00336,0,0,0,0,0,0,0.00096,0.00137,0.00193,0.00298,0,0,0,0,0,0,0.03315,0.03433,0.03604,0.03953,0,0,0,0,0,0,0.03407,0.03518,0.03676,0.03998,0,0,0,0,0,0,0.03694,0.0381,0.03978,0.0432,0,0,0,0,0,0,0.03138,0.03261,0.03441,0.03811,0,0,0,0,0,0,0.03597,0.03686,0.0381,0.04051,0,0,0,0,0,0,0.03317,0.03412,0.03544,0.03806,0,0,0,0,0,0,0.03306,0.03394,0.03514,0.03748,0,0,0,0,0,0,0.03473,0.03573,0.03713,0.03993,0,0,0,0,0,0,0.03414,0.035,0.0362,0.0385,0,0,0,0,0,0,0.00627,0.00732,0.00883,0.01192,0,0,0,0,0,0,0.00629,0.00727,0.00867,0.01152,0,0,0,0,0,0,0.00672,0.00775,0.00923,0.01226,0,0,0,0,0,0,0.0061,0.00719,0.00878,0.01205,0,0,0,0,0,0,0.00626,0.00705,0.00815,0.01028,0,0,0,0,0,0,0.00596,0.0068,0.00797,0.01028,0,0,0,0,0,0,0.00586,0.00663,0.0077,0.00976,0,0,0,0,0,0,0.00623,0.00711,0.00835,0.01082,0,0,0,0,0,0,0.00599,0.00676,0.00782,0.00986,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00167,0,0,0,0,0,0,0.00159,0.00161,0.00163,0.00167,0,0,0,0,0,0,0.00162,0.00164,0.00166,0.0017,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00167,0,0,0,0,0,0,0.00162,0.00163,0.00164,0.00168,0,0,0,0,0,0,0.00159,0.0016,0.00162,0.00166,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00166,0,0,0,0,0,0,0.0016,0.00162,0.00164,0.00167,0,0,0,0,0,0,0.00157,0.00158,0.0016,0.00163,0,0,0,0,0,0,0.05694,0.07282,0.09544,0.12371,0,0,0,0,0,0,0.04847,0.06291,0.08369,0.1089,0,0,0,0,0,0,0.05556,0.0734,0.09767,0.12774,0,0,0,0,0,0,0.06439,0.08464,0.11203,0.14612,0,0,0,0,0,0,0.02475,0.03705,0.05413,0.07251,0,0,0,0,0,0,0.03162,0.04568,0.065,0.08665,0,0,0,0,0,0,0.02324,0.03511,0.0518,0.06948,0,0,0,0,0,0,0.03637,0.05025,0.06945,0.09156,0,0,0,0,0,0,0.02205,0.03238,0.04697,0.06222 +Compact car,PH10E,2040,0,0,0,0,0,0,0,0.00557,0.0058,0.00618,0,0,0,0,0,0,0,0.00571,0.00591,0.00626,0,0,0,0,0,0,0,0.00619,0.00641,0.00679,0,0,0,0,0,0,0,0.00531,0.00556,0.00598,0,0,0,0,0,0,0,0.00597,0.00611,0.00634,0,0,0,0,0,0,0,0.00554,0.0057,0.00596,0,0,0,0,0,0,0,0.00549,0.00563,0.00586,0,0,0,0,0,0,0,0.00579,0.00596,0.00626,0,0,0,0,0,0,0,0.00565,0.00578,0.00601,0,0,0,0,0,0,0,0.01821,0.01128,0.00884,0,0,0,0,0,0,0,0.01566,0.00987,0.00787,0,0,0,0,0,0,0,0.0178,0.01151,0.00919,0,0,0,0,0,0,0,0.0205,0.0132,0.01047,0,0,0,0,0,0,0,0.00848,0.00632,0.00556,0,0,0,0,0,0,0,0.01056,0.00759,0.00651,0,0,0,0,0,0,0,0.00805,0.00606,0.00538,0,0,0,0,0,0,0,0.01201,0.00818,0.0068,0,0,0,0,0,0,0,0.00767,0.00556,0.00484,0,0,0,0,0,0,0,0.8079,1.15736,1.46595,0,0,0,0,0,0,0,0.76502,1.11437,1.42333,0,0,0,0,0,0,0,0.81191,1.23831,1.61226,0,0,0,0,0,0,0,0.90005,1.37052,1.78825,0,0,0,0,0,0,0,0.6367,1.06062,1.41221,0,0,0,0,0,0,0,0.68272,1.12473,1.498,0,0,0,0,0,0,0,0.65375,1.08782,1.44654,0,0,0,0,0,0,0,0.70862,1.1141,1.45227,0,0,0,0,0,0,0,0.58843,0.93792,1.21433,0,0,0,0,0,0,0,164.20103,165.90359,168.4846,0,0,0,0,0,0,0,165.48346,167.07036,169.48248,0,0,0,0,0,0,0,168.26701,169.91884,172.42938,0,0,0,0,0,0,0,164.41042,166.13822,168.76706,0,0,0,0,0,0,0,167.8925,169.04891,170.82999,0,0,0,0,0,0,0,165.41817,166.73392,168.75103,0,0,0,0,0,0,0,166.25783,167.37506,169.10207,0,0,0,0,0,0,0,166.70002,168.04296,170.09774,0,0,0,0,0,0,0,163.27799,164.46747,166.28032,0,0,0,0,0,0,0,0.00372,0.00412,0.00471,0,0,0,0,0,0,0,0.00374,0.00413,0.00473,0,0,0,0,0,0,0,0.00378,0.00417,0.00476,0,0,0,0,0,0,0,0.00374,0.00415,0.00476,0,0,0,0,0,0,0,0.00378,0.00417,0.00477,0,0,0,0,0,0,0,0.00378,0.00418,0.00479,0,0,0,0,0,0,0,0.00374,0.00414,0.00474,0,0,0,0,0,0,0,0.00377,0.00416,0.00476,0,0,0,0,0,0,0,0.00371,0.0041,0.00469,0,0,0,0,0,0,0,0.01385,0.01613,0.02074,0,0,0,0,0,0,0,0.01388,0.01616,0.02078,0,0,0,0,0,0,0,0.01392,0.01621,0.02084,0,0,0,0,0,0,0,0.01376,0.01602,0.02059,0,0,0,0,0,0,0,0.0139,0.01618,0.02081,0,0,0,0,0,0,0,0.01381,0.01607,0.02067,0,0,0,0,0,0,0,0.01385,0.01612,0.02073,0,0,0,0,0,0,0,0.0139,0.01618,0.02081,0,0,0,0,0,0,0,0.01393,0.01622,0.02086,0,0,0,0,0,0,0,0.03387,0.04851,0.06558,0,0,0,0,0,0,0,0.03256,0.0469,0.06371,0,0,0,0,0,0,0,0.03338,0.05052,0.06838,0,0,0,0,0,0,0,0.03575,0.05481,0.07418,0,0,0,0,0,0,0,0.02558,0.0417,0.05802,0,0,0,0,0,0,0,0.02893,0.04622,0.06376,0,0,0,0,0,0,0,0.02612,0.04219,0.05878,0,0,0,0,0,0,0,0.03026,0.04707,0.06449,0,0,0,0,0,0,0,0.02551,0.03983,0.055,0,0,0,0,0,0,0,0.00116,0.00169,0.00244,0,0,0,0,0,0,0,0.00111,0.00162,0.00232,0,0,0,0,0,0,0,0.00115,0.00167,0.00241,0,0,0,0,0,0,0,0.00119,0.00173,0.00251,0,0,0,0,0,0,0,0.00098,0.0014,0.00197,0,0,0,0,0,0,0,0.001,0.00144,0.00205,0,0,0,0,0,0,0,0.00096,0.00137,0.00193,0,0,0,0,0,0,0,0.00104,0.0015,0.00214,0,0,0,0,0,0,0,0.00096,0.00137,0.00193,0,0,0,0,0,0,0,0.03314,0.03433,0.03604,0,0,0,0,0,0,0,0.03407,0.03518,0.03677,0,0,0,0,0,0,0,0.03694,0.0381,0.03978,0,0,0,0,0,0,0,0.03138,0.03261,0.03441,0,0,0,0,0,0,0,0.03596,0.03686,0.0381,0,0,0,0,0,0,0,0.03317,0.03412,0.03545,0,0,0,0,0,0,0,0.03306,0.03393,0.03514,0,0,0,0,0,0,0,0.03473,0.03573,0.03714,0,0,0,0,0,0,0,0.03413,0.035,0.0362,0,0,0,0,0,0,0,0.00627,0.00731,0.00883,0,0,0,0,0,0,0,0.00629,0.00727,0.00868,0,0,0,0,0,0,0,0.00672,0.00775,0.00924,0,0,0,0,0,0,0,0.0061,0.00719,0.00878,0,0,0,0,0,0,0,0.00625,0.00705,0.00815,0,0,0,0,0,0,0,0.00596,0.0068,0.00797,0,0,0,0,0,0,0,0.00585,0.00663,0.0077,0,0,0,0,0,0,0,0.00623,0.00711,0.00836,0,0,0,0,0,0,0,0.00599,0.00676,0.00782,0,0,0,0,0,0,0,0.00158,0.0016,0.00162,0,0,0,0,0,0,0,0.00159,0.00161,0.00163,0,0,0,0,0,0,0,0.00162,0.00164,0.00166,0,0,0,0,0,0,0,0.00158,0.0016,0.00162,0,0,0,0,0,0,0,0.00162,0.00163,0.00164,0,0,0,0,0,0,0,0.00159,0.0016,0.00162,0,0,0,0,0,0,0,0.0016,0.00161,0.00163,0,0,0,0,0,0,0,0.0016,0.00162,0.00164,0,0,0,0,0,0,0,0.00157,0.00158,0.0016,0,0,0,0,0,0,0,0.05688,0.07273,0.0954,0,0,0,0,0,0,0,0.04842,0.06283,0.08365,0,0,0,0,0,0,0,0.05549,0.0733,0.09763,0,0,0,0,0,0,0,0.06431,0.08453,0.11198,0,0,0,0,0,0,0,0.02472,0.037,0.0541,0,0,0,0,0,0,0,0.03158,0.04561,0.06497,0,0,0,0,0,0,0,0.0232,0.03505,0.05177,0,0,0,0,0,0,0,0.03633,0.05018,0.06942,0,0,0,0,0,0,0,0.02202,0.03233,0.04694 +Compact car,PH10E,2045,0,0,0,0,0,0,0,0,0.00557,0.0058,0,0,0,0,0,0,0,0,0.00571,0.00591,0,0,0,0,0,0,0,0,0.00619,0.00641,0,0,0,0,0,0,0,0,0.00531,0.00556,0,0,0,0,0,0,0,0,0.00597,0.00611,0,0,0,0,0,0,0,0,0.00554,0.0057,0,0,0,0,0,0,0,0,0.00549,0.00563,0,0,0,0,0,0,0,0,0.00579,0.00596,0,0,0,0,0,0,0,0,0.00565,0.00578,0,0,0,0,0,0,0,0,0.01822,0.01128,0,0,0,0,0,0,0,0,0.01567,0.00987,0,0,0,0,0,0,0,0,0.0178,0.01151,0,0,0,0,0,0,0,0,0.02051,0.0132,0,0,0,0,0,0,0,0,0.00848,0.00632,0,0,0,0,0,0,0,0,0.01056,0.00759,0,0,0,0,0,0,0,0,0.00805,0.00606,0,0,0,0,0,0,0,0,0.01201,0.00818,0,0,0,0,0,0,0,0,0.00767,0.00556,0,0,0,0,0,0,0,0,0.80721,1.15716,0,0,0,0,0,0,0,0,0.76435,1.11417,0,0,0,0,0,0,0,0,0.81115,1.23807,0,0,0,0,0,0,0,0,0.89921,1.37026,0,0,0,0,0,0,0,0,0.63605,1.06041,0,0,0,0,0,0,0,0,0.68202,1.12451,0,0,0,0,0,0,0,0,0.65309,1.08761,0,0,0,0,0,0,0,0,0.70794,1.1139,0,0,0,0,0,0,0,0,0.58787,0.93776,0,0,0,0,0,0,0,0,164.19254,165.90065,0,0,0,0,0,0,0,0,165.47619,167.06842,0,0,0,0,0,0,0,0,168.25873,169.91609,0,0,0,0,0,0,0,0,164.40188,166.13552,0,0,0,0,0,0,0,0,167.8863,169.04653,0,0,0,0,0,0,0,0,165.41176,166.73192,0,0,0,0,0,0,0,0,166.25181,167.37304,0,0,0,0,0,0,0,0,166.69353,168.04108,0,0,0,0,0,0,0,0,163.27158,164.46486,0,0,0,0,0,0,0,0,0.00372,0.00412,0,0,0,0,0,0,0,0,0.00374,0.00413,0,0,0,0,0,0,0,0,0.00377,0.00417,0,0,0,0,0,0,0,0,0.00374,0.00415,0,0,0,0,0,0,0,0,0.00378,0.00417,0,0,0,0,0,0,0,0,0.00378,0.00418,0,0,0,0,0,0,0,0,0.00374,0.00414,0,0,0,0,0,0,0,0,0.00376,0.00416,0,0,0,0,0,0,0,0,0.00371,0.0041,0,0,0,0,0,0,0,0,0.01385,0.01613,0,0,0,0,0,0,0,0,0.01388,0.01616,0,0,0,0,0,0,0,0,0.01392,0.01621,0,0,0,0,0,0,0,0,0.01376,0.01601,0,0,0,0,0,0,0,0,0.0139,0.01618,0,0,0,0,0,0,0,0,0.01381,0.01607,0,0,0,0,0,0,0,0,0.01385,0.01612,0,0,0,0,0,0,0,0,0.0139,0.01618,0,0,0,0,0,0,0,0,0.01393,0.01622,0,0,0,0,0,0,0,0,0.03384,0.04849,0,0,0,0,0,0,0,0,0.03253,0.04688,0,0,0,0,0,0,0,0,0.03335,0.0505,0,0,0,0,0,0,0,0,0.03572,0.05479,0,0,0,0,0,0,0,0,0.02556,0.04168,0,0,0,0,0,0,0,0,0.0289,0.0462,0,0,0,0,0,0,0,0,0.0261,0.04217,0,0,0,0,0,0,0,0,0.03024,0.04705,0,0,0,0,0,0,0,0,0.02549,0.03981,0,0,0,0,0,0,0,0,0.00116,0.00169,0,0,0,0,0,0,0,0,0.00111,0.00162,0,0,0,0,0,0,0,0,0.00115,0.00167,0,0,0,0,0,0,0,0,0.00119,0.00173,0,0,0,0,0,0,0,0,0.00098,0.0014,0,0,0,0,0,0,0,0,0.001,0.00144,0,0,0,0,0,0,0,0,0.00096,0.00137,0,0,0,0,0,0,0,0,0.00104,0.0015,0,0,0,0,0,0,0,0,0.00096,0.00137,0,0,0,0,0,0,0,0,0.03314,0.03433,0,0,0,0,0,0,0,0,0.03407,0.03518,0,0,0,0,0,0,0,0,0.03694,0.0381,0,0,0,0,0,0,0,0,0.03138,0.03261,0,0,0,0,0,0,0,0,0.03596,0.03686,0,0,0,0,0,0,0,0,0.03317,0.03412,0,0,0,0,0,0,0,0,0.03306,0.03394,0,0,0,0,0,0,0,0,0.03473,0.03573,0,0,0,0,0,0,0,0,0.03413,0.035,0,0,0,0,0,0,0,0,0.00627,0.00732,0,0,0,0,0,0,0,0,0.00629,0.00727,0,0,0,0,0,0,0,0,0.00672,0.00775,0,0,0,0,0,0,0,0,0.0061,0.00719,0,0,0,0,0,0,0,0,0.00625,0.00705,0,0,0,0,0,0,0,0,0.00596,0.0068,0,0,0,0,0,0,0,0,0.00586,0.00663,0,0,0,0,0,0,0,0,0.00623,0.00711,0,0,0,0,0,0,0,0,0.00599,0.00676,0,0,0,0,0,0,0,0,0.00158,0.0016,0,0,0,0,0,0,0,0,0.00159,0.00161,0,0,0,0,0,0,0,0,0.00162,0.00164,0,0,0,0,0,0,0,0,0.00158,0.0016,0,0,0,0,0,0,0,0,0.00162,0.00163,0,0,0,0,0,0,0,0,0.00159,0.0016,0,0,0,0,0,0,0,0,0.0016,0.00161,0,0,0,0,0,0,0,0,0.0016,0.00162,0,0,0,0,0,0,0,0,0.00157,0.00158,0,0,0,0,0,0,0,0,0.05683,0.07271,0,0,0,0,0,0,0,0,0.04838,0.06281,0,0,0,0,0,0,0,0,0.05545,0.07328,0,0,0,0,0,0,0,0,0.06426,0.08451,0,0,0,0,0,0,0,0,0.02469,0.03698,0,0,0,0,0,0,0,0,0.03155,0.04559,0,0,0,0,0,0,0,0,0.02318,0.03504,0,0,0,0,0,0,0,0,0.0363,0.05016,0,0,0,0,0,0,0,0,0.022,0.03231 +Compact car,PH10E,2050,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00571,0,0,0,0,0,0,0,0,0,0.00619,0,0,0,0,0,0,0,0,0,0.00531,0,0,0,0,0,0,0,0,0,0.00597,0,0,0,0,0,0,0,0,0,0.00554,0,0,0,0,0,0,0,0,0,0.00549,0,0,0,0,0,0,0,0,0,0.00579,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.01822,0,0,0,0,0,0,0,0,0,0.01567,0,0,0,0,0,0,0,0,0,0.0178,0,0,0,0,0,0,0,0,0,0.02051,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.01056,0,0,0,0,0,0,0,0,0,0.00805,0,0,0,0,0,0,0,0,0,0.01201,0,0,0,0,0,0,0,0,0,0.00767,0,0,0,0,0,0,0,0,0,0.80722,0,0,0,0,0,0,0,0,0,0.76435,0,0,0,0,0,0,0,0,0,0.81115,0,0,0,0,0,0,0,0,0,0.89921,0,0,0,0,0,0,0,0,0,0.63605,0,0,0,0,0,0,0,0,0,0.68203,0,0,0,0,0,0,0,0,0,0.65309,0,0,0,0,0,0,0,0,0,0.70795,0,0,0,0,0,0,0,0,0,0.58787,0,0,0,0,0,0,0,0,0,164.19246,0,0,0,0,0,0,0,0,0,165.47617,0,0,0,0,0,0,0,0,0,168.25867,0,0,0,0,0,0,0,0,0,164.40199,0,0,0,0,0,0,0,0,0,167.8862,0,0,0,0,0,0,0,0,0,165.41174,0,0,0,0,0,0,0,0,0,166.25174,0,0,0,0,0,0,0,0,0,166.69352,0,0,0,0,0,0,0,0,0,163.27158,0,0,0,0,0,0,0,0,0,0.00372,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00377,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00378,0,0,0,0,0,0,0,0,0,0.00378,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00376,0,0,0,0,0,0,0,0,0,0.00371,0,0,0,0,0,0,0,0,0,0.01385,0,0,0,0,0,0,0,0,0,0.01388,0,0,0,0,0,0,0,0,0,0.01392,0,0,0,0,0,0,0,0,0,0.01376,0,0,0,0,0,0,0,0,0,0.0139,0,0,0,0,0,0,0,0,0,0.01381,0,0,0,0,0,0,0,0,0,0.01385,0,0,0,0,0,0,0,0,0,0.0139,0,0,0,0,0,0,0,0,0,0.01393,0,0,0,0,0,0,0,0,0,0.03384,0,0,0,0,0,0,0,0,0,0.03253,0,0,0,0,0,0,0,0,0,0.03335,0,0,0,0,0,0,0,0,0,0.03572,0,0,0,0,0,0,0,0,0,0.02556,0,0,0,0,0,0,0,0,0,0.0289,0,0,0,0,0,0,0,0,0,0.0261,0,0,0,0,0,0,0,0,0,0.03024,0,0,0,0,0,0,0,0,0,0.02549,0,0,0,0,0,0,0,0,0,0.00116,0,0,0,0,0,0,0,0,0,0.00111,0,0,0,0,0,0,0,0,0,0.00115,0,0,0,0,0,0,0,0,0,0.00119,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.001,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00104,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.03314,0,0,0,0,0,0,0,0,0,0.03407,0,0,0,0,0,0,0,0,0,0.03694,0,0,0,0,0,0,0,0,0,0.03138,0,0,0,0,0,0,0,0,0,0.03596,0,0,0,0,0,0,0,0,0,0.03317,0,0,0,0,0,0,0,0,0,0.03306,0,0,0,0,0,0,0,0,0,0.03473,0,0,0,0,0,0,0,0,0,0.03413,0,0,0,0,0,0,0,0,0,0.00627,0,0,0,0,0,0,0,0,0,0.00629,0,0,0,0,0,0,0,0,0,0.00672,0,0,0,0,0,0,0,0,0,0.0061,0,0,0,0,0,0,0,0,0,0.00626,0,0,0,0,0,0,0,0,0,0.00596,0,0,0,0,0,0,0,0,0,0.00586,0,0,0,0,0,0,0,0,0,0.00623,0,0,0,0,0,0,0,0,0,0.00599,0,0,0,0,0,0,0,0,0,0.00158,0,0,0,0,0,0,0,0,0,0.00159,0,0,0,0,0,0,0,0,0,0.00162,0,0,0,0,0,0,0,0,0,0.00158,0,0,0,0,0,0,0,0,0,0.00162,0,0,0,0,0,0,0,0,0,0.00159,0,0,0,0,0,0,0,0,0,0.0016,0,0,0,0,0,0,0,0,0,0.0016,0,0,0,0,0,0,0,0,0,0.00157,0,0,0,0,0,0,0,0,0,0.05683,0,0,0,0,0,0,0,0,0,0.04838,0,0,0,0,0,0,0,0,0,0.05545,0,0,0,0,0,0,0,0,0,0.06426,0,0,0,0,0,0,0,0,0,0.02469,0,0,0,0,0,0,0,0,0,0.03155,0,0,0,0,0,0,0,0,0,0.02318,0,0,0,0,0,0,0,0,0,0.0363,0,0,0,0,0,0,0,0,0,0.022 +Compact car,PH10G,1990,0.04893,0,0,0,0,0,0,0,0,0,0.04286,0,0,0,0,0,0,0,0,0,0.04825,0,0,0,0,0,0,0,0,0,0.05378,0,0,0,0,0,0,0,0,0,0.02621,0,0,0,0,0,0,0,0,0,0.03029,0,0,0,0,0,0,0,0,0,0.02473,0,0,0,0,0,0,0,0,0,0.03424,0,0,0,0,0,0,0,0,0,0.02432,0,0,0,0,0,0,0,0,0,0.04999,0,0,0,0,0,0,0,0,0,0.04275,0,0,0,0,0,0,0,0,0,0.05394,0,0,0,0,0,0,0,0,0,0.05527,0,0,0,0,0,0,0,0,0,0.04547,0,0,0,0,0,0,0,0,0,0.05029,0,0,0,0,0,0,0,0,0,0.04655,0,0,0,0,0,0,0,0,0,0.04539,0,0,0,0,0,0,0,0,0,0.03896,0,0,0,0,0,0,0,0,0,31.80818,0,0,0,0,0,0,0,0,0,28.20931,0,0,0,0,0,0,0,0,0,34.82471,0,0,0,0,0,0,0,0,0,36.07011,0,0,0,0,0,0,0,0,0,29.87856,0,0,0,0,0,0,0,0,0,33.0559,0,0,0,0,0,0,0,0,0,31.12265,0,0,0,0,0,0,0,0,0,29.89031,0,0,0,0,0,0,0,0,0,24.92,0,0,0,0,0,0,0,0,0,322.83197,0,0,0,0,0,0,0,0,0,324.06422,0,0,0,0,0,0,0,0,0,330.10145,0,0,0,0,0,0,0,0,0,322.71745,0,0,0,0,0,0,0,0,0,324.29113,0,0,0,0,0,0,0,0,0,320.96772,0,0,0,0,0,0,0,0,0,320.21977,0,0,0,0,0,0,0,0,0,323.80156,0,0,0,0,0,0,0,0,0,316.75428,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.04215,0,0,0,0,0,0,0,0,0,0.04274,0,0,0,0,0,0,0,0,0,0.042,0,0,0,0,0,0,0,0,0,0.04272,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04213,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.0253,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02535,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.02549,0,0,0,0,0,0,0,0,0,1.93627,0,0,0,0,0,0,0,0,0,1.84332,0,0,0,0,0,0,0,0,0,2.0484,0,0,0,0,0,0,0,0,0,2.15419,0,0,0,0,0,0,0,0,0,2.00274,0,0,0,0,0,0,0,0,0,2.10311,0,0,0,0,0,0,0,0,0,1.9993,0,0,0,0,0,0,0,0,0,2.11211,0,0,0,0,0,0,0,0,0,1.73837,0,0,0,0,0,0,0,0,0,0.09693,0,0,0,0,0,0,0,0,0,0.08494,0,0,0,0,0,0,0,0,0,0.09393,0,0,0,0,0,0,0,0,0,0.1048,0,0,0,0,0,0,0,0,0,0.05046,0,0,0,0,0,0,0,0,0,0.05948,0,0,0,0,0,0,0,0,0,0.04878,0,0,0,0,0,0,0,0,0,0.06716,0,0,0,0,0,0,0,0,0,0.04811,0,0,0,0,0,0,0,0,0,0.24348,0,0,0,0,0,0,0,0,0,0.21701,0,0,0,0,0,0,0,0,0,0.24161,0,0,0,0,0,0,0,0,0,0.26205,0,0,0,0,0,0,0,0,0,0.14077,0,0,0,0,0,0,0,0,0,0.15903,0,0,0,0,0,0,0,0,0,0.13421,0,0,0,0,0,0,0,0,0,0.17776,0,0,0,0,0,0,0,0,0,0.13248,0,0,0,0,0,0,0,0,0,0.1949,0,0,0,0,0,0,0,0,0,0.17077,0,0,0,0,0,0,0,0,0,0.19066,0,0,0,0,0,0,0,0,0,0.21257,0,0,0,0,0,0,0,0,0,0.10181,0,0,0,0,0,0,0,0,0,0.1199,0,0,0,0,0,0,0,0,0,0.09793,0,0,0,0,0,0,0,0,0,0.13547,0,0,0,0,0,0,0,0,0,0.09567,0,0,0,0,0,0,0,0,0,0.01421,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.02307,0,0,0,0,0,0,0,0,0,0.02106,0,0,0,0,0,0,0,0,0,0.01874,0,0,0,0,0,0,0,0,0,0.02065,0,0,0,0,0,0,0,0,0,0.0187,0,0,0,0,0,0,0,0,0,0.01851,0,0,0,0,0,0,0,0,0,0.00858,0,0,0,0,0,0,0,0,0,2.99081,0,0,0,0,0,0,0,0,0,2.67228,0,0,0,0,0,0,0,0,0,3.18204,0,0,0,0,0,0,0,0,0,3.29337,0,0,0,0,0,0,0,0,0,2.95133,0,0,0,0,0,0,0,0,0,3.14197,0,0,0,0,0,0,0,0,0,3.01419,0,0,0,0,0,0,0,0,0,2.97072,0,0,0,0,0,0,0,0,0,2.58386,0,0,0,0,0,0,0,0,0 +Compact car,PH10G,1995,0.01309,0.02695,0,0,0,0,0,0,0,0,0.01216,0.02403,0,0,0,0,0,0,0,0,0.01349,0.02689,0,0,0,0,0,0,0,0,0.01367,0.02917,0,0,0,0,0,0,0,0,0.0095,0.01598,0,0,0,0,0,0,0,0,0.00984,0.01778,0,0,0,0,0,0,0,0,0.00886,0.01503,0,0,0,0,0,0,0,0,0.01074,0.01984,0,0,0,0,0,0,0,0,0.00893,0.01491,0,0,0,0,0,0,0,0,0.02761,0.03203,0,0,0,0,0,0,0,0,0.02564,0.02858,0,0,0,0,0,0,0,0,0.031,0.03546,0,0,0,0,0,0,0,0,0.03195,0.03814,0,0,0,0,0,0,0,0,0.02629,0.02985,0,0,0,0,0,0,0,0,0.02849,0.03306,0,0,0,0,0,0,0,0,0.02605,0.03011,0,0,0,0,0,0,0,0,0.02684,0.03106,0,0,0,0,0,0,0,0,0.0216,0.02426,0,0,0,0,0,0,0,0,11.75219,16.0199,0,0,0,0,0,0,0,0,11.19156,14.67218,0,0,0,0,0,0,0,0,13.44825,17.6587,0,0,0,0,0,0,0,0,14.15705,18.90297,0,0,0,0,0,0,0,0,11.75961,15.32446,0,0,0,0,0,0,0,0,12.73577,16.79242,0,0,0,0,0,0,0,0,12.07704,15.84224,0,0,0,0,0,0,0,0,11.88766,15.96456,0,0,0,0,0,0,0,0,9.31014,12.52862,0,0,0,0,0,0,0,0,264.86785,277.27618,0,0,0,0,0,0,0,0,266.86954,278.87251,0,0,0,0,0,0,0,0,271.51811,283.95373,0,0,0,0,0,0,0,0,264.80367,277.22122,0,0,0,0,0,0,0,0,270.46415,280.86466,0,0,0,0,0,0,0,0,266.36823,277.278,0,0,0,0,0,0,0,0,267.48167,277.55464,0,0,0,0,0,0,0,0,268.62355,279.6898,0,0,0,0,0,0,0,0,263.41372,273.82247,0,0,0,0,0,0,0,0,0.03075,0.03752,0,0,0,0,0,0,0,0,0.03098,0.03776,0,0,0,0,0,0,0,0,0.03147,0.03826,0,0,0,0,0,0,0,0,0.03079,0.03767,0,0,0,0,0,0,0,0,0.03144,0.03825,0,0,0,0,0,0,0,0,0.03122,0.0381,0,0,0,0,0,0,0,0,0.03095,0.03775,0,0,0,0,0,0,0,0,0.03126,0.03808,0,0,0,0,0,0,0,0,0.03079,0.0375,0,0,0,0,0,0,0,0,0.07126,0.05832,0,0,0,0,0,0,0,0,0.0714,0.05844,0,0,0,0,0,0,0,0,0.07151,0.05852,0,0,0,0,0,0,0,0,0.07087,0.05801,0,0,0,0,0,0,0,0,0.07143,0.05846,0,0,0,0,0,0,0,0,0.07105,0.05816,0,0,0,0,0,0,0,0,0.07124,0.05831,0,0,0,0,0,0,0,0,0.07147,0.05849,0,0,0,0,0,0,0,0,0.07159,0.05858,0,0,0,0,0,0,0,0,1.45553,1.75016,0,0,0,0,0,0,0,0,1.41931,1.65598,0,0,0,0,0,0,0,0,1.57006,1.79884,0,0,0,0,0,0,0,0,1.63546,1.96818,0,0,0,0,0,0,0,0,1.52413,1.8242,0,0,0,0,0,0,0,0,1.60165,1.90158,0,0,0,0,0,0,0,0,1.53136,1.82659,0,0,0,0,0,0,0,0,1.62642,1.93557,0,0,0,0,0,0,0,0,1.34107,1.5808,0,0,0,0,0,0,0,0,0.02118,0.05189,0,0,0,0,0,0,0,0,0.01864,0.04548,0,0,0,0,0,0,0,0,0.02056,0.05015,0,0,0,0,0,0,0,0,0.02269,0.05596,0,0,0,0,0,0,0,0,0.01128,0.02713,0,0,0,0,0,0,0,0,0.01317,0.03194,0,0,0,0,0,0,0,0,0.01093,0.0263,0,0,0,0,0,0,0,0,0.01483,0.03602,0,0,0,0,0,0,0,0,0.01083,0.02597,0,0,0,0,0,0,0,0,0.0734,0.14128,0,0,0,0,0,0,0,0,0.06868,0.12765,0,0,0,0,0,0,0,0,0.07579,0.14097,0,0,0,0,0,0,0,0,0.07563,0.14984,0,0,0,0,0,0,0,0,0.05439,0.08856,0,0,0,0,0,0,0,0,0.0561,0.09676,0,0,0,0,0,0,0,0,0.05101,0.08418,0,0,0,0,0,0,0,0,0.06108,0.10751,0,0,0,0,0,0,0,0,0.05148,0.08399,0,0,0,0,0,0,0,0,0.04444,0.10449,0,0,0,0,0,0,0,0,0.03956,0.09173,0,0,0,0,0,0,0,0,0.04397,0.10163,0,0,0,0,0,0,0,0,0.04766,0.11331,0,0,0,0,0,0,0,0,0.0254,0.05562,0,0,0,0,0,0,0,0,0.02885,0.06481,0,0,0,0,0,0,0,0,0.02434,0.05367,0,0,0,0,0,0,0,0,0.03226,0.07333,0,0,0,0,0,0,0,0,0.02402,0.05278,0,0,0,0,0,0,0,0,0.01163,0.00589,0,0,0,0,0,0,0,0,0.01333,0.00598,0,0,0,0,0,0,0,0,0.01899,0.00621,0,0,0,0,0,0,0,0,0.01729,0.01037,0,0,0,0,0,0,0,0,0.01562,0.00611,0,0,0,0,0,0,0,0,0.01714,0.00606,0,0,0,0,0,0,0,0,0.01561,0.00826,0,0,0,0,0,0,0,0,0.01532,0.00943,0,0,0,0,0,0,0,0,0.0071,0.0034,0,0,0,0,0,0,0,0,1.26908,1.80891,0,0,0,0,0,0,0,0,1.22078,1.70483,0,0,0,0,0,0,0,0,1.40886,1.97805,0,0,0,0,0,0,0,0,1.46067,2.0956,0,0,0,0,0,0,0,0,1.31199,1.90432,0,0,0,0,0,0,0,0,1.36271,1.98873,0,0,0,0,0,0,0,0,1.30028,1.90349,0,0,0,0,0,0,0,0,1.34523,1.95012,0,0,0,0,0,0,0,0,1.11431,1.61912,0,0,0,0,0,0,0,0 +Compact car,PH10G,2000,0.00823,0.0102,0.01995,0,0,0,0,0,0,0,0.00798,0.00966,0.01801,0,0,0,0,0,0,0,0.00876,0.01066,0.02012,0,0,0,0,0,0,0,0.00824,0.01041,0.02133,0,0,0,0,0,0,0,0.00716,0.00809,0.01263,0,0,0,0,0,0,0,0.007,0.00812,0.01368,0,0,0,0,0,0,0,0.00663,0.00751,0.01183,0,0,0,0,0,0,0,0.0075,0.0088,0.01518,0,0,0,0,0,0,0,0.00677,0.00765,0.01183,0,0,0,0,0,0,0,0.0126,0.01347,0.02169,0,0,0,0,0,0,0,0.01181,0.01291,0.01951,0,0,0,0,0,0,0,0.01467,0.01575,0.02489,0,0,0,0,0,0,0,0.01531,0.01684,0.02582,0,0,0,0,0,0,0,0.01115,0.01282,0.02036,0,0,0,0,0,0,0,0.01235,0.014,0.02212,0,0,0,0,0,0,0,0.011,0.01289,0.01966,0,0,0,0,0,0,0,0.01203,0.01366,0.02063,0,0,0,0,0,0,0,0.00941,0.01115,0.01613,0,0,0,0,0,0,0,5.58152,7.49857,11.41774,0,0,0,0,0,0,0,5.34125,7.25349,10.65137,0,0,0,0,0,0,0,6.47322,8.67113,13.0428,0,0,0,0,0,0,0,6.90132,9.28455,13.58148,0,0,0,0,0,0,0,4.95711,7.12201,10.83094,0,0,0,0,0,0,0,5.49337,7.76666,11.71701,0,0,0,0,0,0,0,5.04346,7.34281,10.79369,0,0,0,0,0,0,0,5.34894,7.59489,11.14026,0,0,0,0,0,0,0,4.09425,6.10741,8.78215,0,0,0,0,0,0,0,263.82942,266.03289,273.15083,0,0,0,0,0,0,0,266.15854,268.20983,274.85707,0,0,0,0,0,0,0,270.70359,272.85526,279.79604,0,0,0,0,0,0,0,263.92913,266.1455,273.29976,0,0,0,0,0,0,0,270.93129,272.4025,277.29011,0,0,0,0,0,0,0,266.45023,268.14264,273.64955,0,0,0,0,0,0,0,268.12463,269.53389,274.2022,0,0,0,0,0,0,0,268.58701,270.30826,275.94933,0,0,0,0,0,0,0,263.42394,264.95115,270.02461,0,0,0,0,0,0,0,0.01711,0.01903,0.02899,0,0,0,0,0,0,0,0.01718,0.0191,0.0291,0,0,0,0,0,0,0,0.0173,0.01921,0.0293,0,0,0,0,0,0,0,0.01727,0.01924,0.02926,0,0,0,0,0,0,0,0.01732,0.01923,0.02934,0,0,0,0,0,0,0,0.01738,0.01934,0.02944,0,0,0,0,0,0,0,0.01721,0.01914,0.02915,0,0,0,0,0,0,0,0.0173,0.01923,0.0293,0,0,0,0,0,0,0,0.01703,0.01892,0.02884,0,0,0,0,0,0,0,0.0416,0.05441,0.05775,0,0,0,0,0,0,0,0.04169,0.05454,0.05787,0,0,0,0,0,0,0,0.0418,0.05468,0.05801,0,0,0,0,0,0,0,0.0413,0.05403,0.05738,0,0,0,0,0,0,0,0.04174,0.0546,0.05793,0,0,0,0,0,0,0,0.04145,0.05422,0.05756,0,0,0,0,0,0,0,0.04158,0.0544,0.05773,0,0,0,0,0,0,0,0.04174,0.05461,0.05794,0,0,0,0,0,0,0,0.04183,0.05472,0.05806,0,0,0,0,0,0,0,0.70088,0.93765,1.3994,0,0,0,0,0,0,0,0.68945,0.93135,1.36546,0,0,0,0,0,0,0,0.81323,1.03013,1.51272,0,0,0,0,0,0,0,0.84158,1.11081,1.58258,0,0,0,0,0,0,0,0.77132,1.02245,1.5165,0,0,0,0,0,0,0,0.8101,1.05416,1.55442,0,0,0,0,0,0,0,0.78292,1.04291,1.4692,0,0,0,0,0,0,0,0.81922,1.0858,1.5459,0,0,0,0,0,0,0,0.67269,0.91113,1.27722,0,0,0,0,0,0,0,0.0093,0.0141,0.03471,0,0,0,0,0,0,0,0.00818,0.01238,0.03038,0,0,0,0,0,0,0,0.00895,0.01357,0.03352,0,0,0,0,0,0,0,0.00975,0.01482,0.03716,0,0,0,0,0,0,0,0.00495,0.00745,0.01804,0,0,0,0,0,0,0,0.0057,0.00859,0.02112,0,0,0,0,0,0,0,0.00483,0.00726,0.01749,0,0,0,0,0,0,0,0.0065,0.00982,0.024,0,0,0,0,0,0,0,0.00489,0.00735,0.01743,0,0,0,0,0,0,0,0.04725,0.05761,0.10376,0,0,0,0,0,0,0,0.04574,0.05473,0.09482,0,0,0,0,0,0,0,0.05009,0.05992,0.10461,0,0,0,0,0,0,0,0.04686,0.05789,0.10812,0,0,0,0,0,0,0,0.0407,0.04592,0.06909,0,0,0,0,0,0,0,0.03983,0.0459,0.0735,0,0,0,0,0,0,0,0.03785,0.04296,0.06521,0,0,0,0,0,0,0,0.04288,0.04996,0.08123,0,0,0,0,0,0,0,0.03881,0.04397,0.06582,0,0,0,0,0,0,0,0.02131,0.03047,0.0713,0,0,0,0,0,0,0,0.01927,0.02722,0.06268,0,0,0,0,0,0,0,0.02123,0.02993,0.06946,0,0,0,0,0,0,0,0.02221,0.03197,0.0764,0,0,0,0,0,0,0,0.01328,0.0179,0.0384,0,0,0,0,0,0,0,0.01445,0.01983,0.04424,0,0,0,0,0,0,0,0.0127,0.01721,0.03689,0,0,0,0,0,0,0,0.01616,0.02242,0.05008,0,0,0,0,0,0,0,0.01281,0.01738,0.0367,0,0,0,0,0,0,0,0.01157,0.00565,0.00523,0,0,0,0,0,0,0,0.01329,0.00575,0.00526,0,0,0,0,0,0,0,0.01894,0.00597,0.00535,0,0,0,0,0,0,0,0.01723,0.00998,0.00523,0,0,0,0,0,0,0,0.01565,0.00593,0.00531,0,0,0,0,0,0,0,0.01714,0.00586,0.00524,0,0,0,0,0,0,0,0.01565,0.00802,0.00525,0,0,0,0,0,0,0,0.01531,0.00912,0.00473,0,0,0,0,0,0,0,0.00709,0.00328,0.00242,0,0,0,0,0,0,0,0.50898,0.74471,1.41204,0,0,0,0,0,0,0,0.48004,0.71717,1.32746,0,0,0,0,0,0,0,0.56921,0.84518,1.57252,0,0,0,0,0,0,0,0.60845,0.90815,1.64245,0,0,0,0,0,0,0,0.43443,0.70474,1.43316,0,0,0,0,0,0,0,0.47743,0.76096,1.49931,0,0,0,0,0,0,0,0.42849,0.70198,1.39917,0,0,0,0,0,0,0,0.48845,0.7673,1.4766,0,0,0,0,0,0,0,0.37275,0.61959,1.21534,0,0,0,0,0,0,0 +Compact car,PH10G,2005,0.00621,0.00671,0.00771,0.01376,0,0,0,0,0,0,0.00628,0.00667,0.00753,0.01274,0,0,0,0,0,0,0.00696,0.00696,0.0077,0.01403,0,0,0,0,0,0,0.00612,0.00653,0.00762,0.0144,0,0,0,0,0,0,0.00629,0.00655,0.0071,0.00988,0,0,0,0,0,0,0.00596,0.00612,0.0067,0.01023,0,0,0,0,0,0,0.00578,0.006,0.00649,0.00912,0,0,0,0,0,0,0.00625,0.00646,0.0071,0.01117,0,0,0,0,0,0,0.00586,0.00603,0.00644,0.00914,0,0,0,0,0,0,0.01331,0.00973,0.00961,0.01427,0,0,0,0,0,0,0.01201,0.00868,0.00892,0.013,0,0,0,0,0,0,0.01359,0.00974,0.00998,0.01554,0,0,0,0,0,0,0.01455,0.01196,0.01122,0.01701,0,0,0,0,0,0,0.00781,0.00653,0.00732,0.01181,0,0,0,0,0,0,0.00929,0.00749,0.00815,0.01311,0,0,0,0,0,0,0.00753,0.00696,0.00726,0.01148,0,0,0,0,0,0,0.01008,0.00835,0.00806,0.01293,0,0,0,0,0,0,0.00607,0.00517,0.00565,0.01023,0,0,0,0,0,0,2.56189,3.44401,4.39723,7.25866,0,0,0,0,0,0,2.43087,3.31855,4.37719,6.94997,0,0,0,0,0,0,2.75777,4.04203,5.38411,8.28865,0,0,0,0,0,0,2.98554,4.46455,5.34549,8.8933,0,0,0,0,0,0,2.20464,3.28616,4.51936,7.06469,0,0,0,0,0,0,2.37725,3.57961,4.87747,7.57293,0,0,0,0,0,0,2.26058,3.61337,4.55824,7.12542,0,0,0,0,0,0,2.44458,3.91111,4.66729,7.38321,0,0,0,0,0,0,1.7358,3.02818,4.01304,6.1045,0,0,0,0,0,0,268.53009,269.77174,272.84189,277.53483,0,0,0,0,0,0,271.03096,272.18032,275.041,279.27593,0,0,0,0,0,0,275.43629,276.64934,279.62723,284.14631,0,0,0,0,0,0,268.71783,269.94931,273.06382,277.83806,0,0,0,0,0,0,276.41634,277.21066,279.2914,281.82362,0,0,0,0,0,0,271.7445,272.67452,275.04355,278.19758,0,0,0,0,0,0,273.78568,274.53541,276.54501,278.88529,0,0,0,0,0,0,273.833,274.77943,277.1985,280.45976,0,0,0,0,0,0,268.74377,269.59198,271.73521,274.39692,0,0,0,0,0,0,0.005,0.00539,0.00634,0.01545,0,0,0,0,0,0,0.00501,0.0054,0.00635,0.01548,0,0,0,0,0,0,0.00502,0.00541,0.00635,0.01552,0,0,0,0,0,0,0.00507,0.00547,0.00644,0.01566,0,0,0,0,0,0,0.00503,0.00542,0.00636,0.01556,0,0,0,0,0,0,0.00508,0.00548,0.00644,0.0157,0,0,0,0,0,0,0.00503,0.00542,0.00637,0.01553,0,0,0,0,0,0,0.00504,0.00543,0.00638,0.01558,0,0,0,0,0,0,0.00496,0.00534,0.00627,0.01532,0,0,0,0,0,0,0.01683,0.01915,0.02358,0.03355,0,0,0,0,0,0,0.01686,0.0192,0.02363,0.03362,0,0,0,0,0,0,0.01691,0.01925,0.02369,0.03371,0,0,0,0,0,0,0.01671,0.01902,0.02341,0.03332,0,0,0,0,0,0,0.01688,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01677,0.01909,0.02349,0.03344,0,0,0,0,0,0,0.01682,0.01915,0.02357,0.03354,0,0,0,0,0,0,0.01689,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01692,0.01926,0.02371,0.03373,0,0,0,0,0,0,0.18697,0.27436,0.36213,0.66982,0,0,0,0,0,0,0.18444,0.26756,0.3639,0.66028,0,0,0,0,0,0,0.21104,0.30046,0.40077,0.74661,0,0,0,0,0,0,0.20997,0.35044,0.42371,0.79513,0,0,0,0,0,0,0.18793,0.28686,0.38841,0.73738,0,0,0,0,0,0,0.2002,0.29995,0.40213,0.76222,0,0,0,0,0,0,0.1895,0.3077,0.38487,0.7194,0,0,0,0,0,0,0.20606,0.33031,0.39782,0.76237,0,0,0,0,0,0,0.14841,0.21954,0.29384,0.64909,0,0,0,0,0,0,0.0032,0.00471,0.00688,0.01952,0,0,0,0,0,0,0.00295,0.00421,0.00615,0.01724,0,0,0,0,0,0,0.00345,0.00391,0.00568,0.01878,0,0,0,0,0,0,0.00356,0.00485,0.00713,0.02076,0,0,0,0,0,0,0.00205,0.00296,0.00436,0.01077,0,0,0,0,0,0,0.00234,0.00305,0.00447,0.01229,0,0,0,0,0,0,0.00197,0.00277,0.00406,0.01025,0,0,0,0,0,0,0.00253,0.00335,0.00489,0.01379,0,0,0,0,0,0,0.00179,0.00247,0.0036,0.01012,0,0,0,0,0,0,0.03412,0.03732,0.04222,0.07054,0,0,0,0,0,0,0.0345,0.03712,0.04145,0.06619,0,0,0,0,0,0,0.03816,0.03893,0.04283,0.07228,0,0,0,0,0,0,0.03336,0.03611,0.04122,0.07202,0,0,0,0,0,0,0.03452,0.03638,0.03941,0.05343,0,0,0,0,0,0,0.03261,0.03402,0.03712,0.05437,0,0,0,0,0,0,0.03179,0.03342,0.03619,0.04966,0,0,0,0,0,0,0.03434,0.03601,0.03937,0.0591,0,0,0,0,0,0,0.03231,0.0337,0.0361,0.05026,0,0,0,0,0,0,0.00969,0.01252,0.01686,0.04191,0,0,0,0,0,0,0.00932,0.01164,0.01547,0.03736,0,0,0,0,0,0,0.01068,0.01136,0.01481,0.04086,0,0,0,0,0,0,0.01026,0.0127,0.01722,0.04446,0,0,0,0,0,0,0.00782,0.00946,0.01214,0.02454,0,0,0,0,0,0,0.00806,0.00931,0.01205,0.02732,0,0,0,0,0,0,0.00733,0.00877,0.01123,0.02314,0,0,0,0,0,0,0.0086,0.01008,0.01305,0.0305,0,0,0,0,0,0,0.00706,0.00829,0.01042,0.02294,0,0,0,0,0,0,0.01178,0.00573,0.00522,0.00177,0,0,0,0,0,0,0.01353,0.00584,0.00526,0.00178,0,0,0,0,0,0,0.01928,0.00605,0.00535,0.00181,0,0,0,0,0,0,0.01755,0.01012,0.00523,0.00177,0,0,0,0,0,0,0.01596,0.00603,0.00535,0.0018,0,0,0,0,0,0,0.01748,0.00596,0.00526,0.00177,0,0,0,0,0,0,0.01598,0.00817,0.00529,0.00178,0,0,0,0,0,0,0.0156,0.00927,0.00474,0.00176,0,0,0,0,0,0,0.00723,0.00334,0.00244,0.00162,0,0,0,0,0,0,0.2766,0.30243,0.41792,0.92309,0,0,0,0,0,0,0.24864,0.27255,0.38678,0.86919,0,0,0,0,0,0,0.28098,0.30263,0.42929,0.99116,0,0,0,0,0,0,0.30236,0.36524,0.47798,1.0691,0,0,0,0,0,0,0.15872,0.20223,0.31737,0.85781,0,0,0,0,0,0,0.18907,0.23023,0.35097,0.91003,0,0,0,0,0,0,0.15081,0.20965,0.31026,0.83716,0,0,0,0,0,0,0.21459,0.26882,0.37097,0.92755,0,0,0,0,0,0,0.13014,0.17889,0.27767,0.77233,0,0,0,0,0,0 +Compact car,PH10G,2010,0,0.00589,0.00639,0.00724,0.0106,0,0,0,0,0,0,0.00597,0.0064,0.00716,0.01007,0,0,0,0,0,0,0.00633,0.0067,0.00773,0.01093,0,0,0,0,0,0,0.00566,0.0062,0.00715,0.01088,0,0,0,0,0,0,0.00615,0.00644,0.00689,0.00856,0,0,0,0,0,0,0.00569,0.00599,0.00658,0.00855,0,0,0,0,0,0,0.00564,0.0059,0.0063,0.00782,0,0,0,0,0,0,0.00596,0.00629,0.00694,0.00917,0,0,0,0,0,0,0.00572,0.00594,0.0064,0.00786,0,0,0,0,0,0,0.01099,0.00916,0.00791,0.01061,0,0,0,0,0,0,0.00952,0.00833,0.00723,0.00974,0,0,0,0,0,0,0.01039,0.00949,0.00816,0.01124,0,0,0,0,0,0,0.01309,0.01096,0.00944,0.01276,0,0,0,0,0,0,0.00655,0.00708,0.00626,0.00853,0,0,0,0,0,0,0.0073,0.0077,0.0068,0.00939,0,0,0,0,0,0,0.00687,0.00703,0.00623,0.00841,0,0,0,0,0,0,0.00864,0.00766,0.00696,0.00948,0,0,0,0,0,0,0.00551,0.00553,0.00592,0.0078,0,0,0,0,0,0,1.97073,2.9996,3.99676,5.57558,0,0,0,0,0,0,1.84867,2.94603,3.90923,5.42368,0,0,0,0,0,0,2.21116,3.56577,4.48536,6.36968,0,0,0,0,0,0,2.39073,3.53259,4.86455,6.87851,0,0,0,0,0,0,1.56944,2.86946,3.97802,5.52424,0,0,0,0,0,0,1.75127,3.11691,4.19997,5.89748,0,0,0,0,0,0,1.71436,2.90465,4.06406,5.62391,0,0,0,0,0,0,1.99561,3.04557,4.1471,5.77185,0,0,0,0,0,0,1.50385,2.60725,3.54179,4.84749,0,0,0,0,0,0,264.84022,266.74676,269.98586,276.3985,0,0,0,0,0,0,267.34861,269.10776,272.11305,278.12461,0,0,0,0,0,0,271.69836,273.53307,276.66628,282.93107,0,0,0,0,0,0,265.00277,266.92886,270.22187,276.7455,0,0,0,0,0,0,272.79537,274.00919,276.14501,280.65173,0,0,0,0,0,0,268.14019,269.55428,272.01477,277.07635,0,0,0,0,0,0,270.19876,271.36154,273.42146,277.78448,0,0,0,0,0,0,270.18699,271.63715,274.1499,279.3073,0,0,0,0,0,0,265.20618,266.48489,268.6884,273.254,0,0,0,0,0,0,0.00481,0.00545,0.00651,0.00997,0,0,0,0,0,0,0.00482,0.00546,0.00652,0.00998,0,0,0,0,0,0,0.00483,0.00547,0.00652,0.00997,0,0,0,0,0,0,0.00488,0.00553,0.00662,0.01014,0,0,0,0,0,0,0.00485,0.00548,0.00654,0.01,0,0,0,0,0,0,0.00489,0.00554,0.00662,0.01014,0,0,0,0,0,0,0.00484,0.00548,0.00654,0.01002,0,0,0,0,0,0,0.00485,0.00549,0.00655,0.01003,0,0,0,0,0,0,0.00477,0.0054,0.00645,0.00986,0,0,0,0,0,0,0.01183,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01185,0.01387,0.01774,0.02149,0,0,0,0,0,0,0.01188,0.01391,0.01779,0.02155,0,0,0,0,0,0,0.01174,0.01374,0.01758,0.0213,0,0,0,0,0,0,0.01187,0.01389,0.01776,0.02152,0,0,0,0,0,0,0.01178,0.01379,0.01764,0.02137,0,0,0,0,0,0,0.01182,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01187,0.01389,0.01777,0.02152,0,0,0,0,0,0,0.01189,0.01392,0.0178,0.02157,0,0,0,0,0,0,0.07558,0.12415,0.13212,0.29714,0,0,0,0,0,0,0.07207,0.12364,0.13048,0.29454,0,0,0,0,0,0,0.07516,0.13564,0.14078,0.33224,0,0,0,0,0,0,0.08707,0.14538,0.15223,0.359,0,0,0,0,0,0,0.06745,0.12764,0.13141,0.3214,0,0,0,0,0,0,0.07145,0.13407,0.13845,0.33545,0,0,0,0,0,0,0.07278,0.12738,0.13202,0.31696,0,0,0,0,0,0,0.08168,0.13359,0.14465,0.33859,0,0,0,0,0,0,0.05499,0.0971,0.1282,0.29226,0,0,0,0,0,0,0.00187,0.00298,0.00455,0.01174,0,0,0,0,0,0,0.00175,0.00277,0.00424,0.01058,0,0,0,0,0,0,0.00159,0.0025,0.00439,0.01127,0,0,0,0,0,0,0.00193,0.00308,0.00478,0.01243,0,0,0,0,0,0,0.00153,0.00237,0.00343,0.00742,0,0,0,0,0,0,0.00149,0.00232,0.00358,0.0081,0,0,0,0,0,0,0.00144,0.00223,0.00322,0.00695,0,0,0,0,0,0,0.00153,0.00239,0.00375,0.00882,0,0,0,0,0,0,0.00128,0.00197,0.0031,0.00676,0,0,0,0,0,0,0.0314,0.03395,0.03759,0.05392,0,0,0,0,0,0,0.03201,0.03431,0.03768,0.05201,0,0,0,0,0,0,0.0341,0.03614,0.04057,0.05617,0,0,0,0,0,0,0.02994,0.03259,0.03656,0.0541,0,0,0,0,0,0,0.03339,0.03521,0.03752,0.04633,0,0,0,0,0,0,0.03077,0.03258,0.03539,0.04547,0,0,0,0,0,0,0.03066,0.03234,0.03447,0.04267,0,0,0,0,0,0,0.03221,0.0341,0.03716,0.0485,0,0,0,0,0,0,0.03124,0.03271,0.03517,0.04318,0,0,0,0,0,0,0.00729,0.00954,0.01276,0.02721,0,0,0,0,0,0,0.00712,0.00915,0.01214,0.02481,0,0,0,0,0,0,0.00709,0.00889,0.01281,0.02662,0,0,0,0,0,0,0.00724,0.00958,0.01309,0.02861,0,0,0,0,0,0,0.00682,0.00843,0.01047,0.01826,0,0,0,0,0,0,0.00644,0.00804,0.01053,0.01944,0,0,0,0,0,0,0.00633,0.00782,0.0097,0.01695,0,0,0,0,0,0,0.00672,0.00839,0.0111,0.02113,0,0,0,0,0,0,0.00611,0.00741,0.00959,0.01668,0,0,0,0,0,0,0.00563,0.00511,0.00172,0.00176,0,0,0,0,0,0,0.00574,0.00515,0.00174,0.00177,0,0,0,0,0,0,0.00595,0.00523,0.00176,0.0018,0,0,0,0,0,0,0.00994,0.00511,0.00172,0.00177,0,0,0,0,0,0,0.00594,0.00524,0.00176,0.00179,0,0,0,0,0,0,0.00586,0.00516,0.00174,0.00177,0,0,0,0,0,0,0.00804,0.00519,0.00174,0.00177,0,0,0,0,0,0,0.00911,0.00465,0.00172,0.00176,0,0,0,0,0,0,0.00328,0.00239,0.00158,0.00161,0,0,0,0,0,0,0.12838,0.17948,0.26246,0.60914,0,0,0,0,0,0,0.11209,0.16209,0.24166,0.57678,0,0,0,0,0,0,0.12359,0.18362,0.26896,0.64179,0,0,0,0,0,0,0.15259,0.21107,0.30682,0.70217,0,0,0,0,0,0,0.07948,0.13589,0.21992,0.55876,0,0,0,0,0,0,0.08788,0.14713,0.23308,0.58802,0,0,0,0,0,0,0.08123,0.13296,0.21602,0.54686,0,0,0,0,0,0,0.1056,0.15667,0.24738,0.60628,0,0,0,0,0,0,0.07355,0.12026,0.21111,0.52323,0,0,0,0,0 +Compact car,PH10G,2015,0,0,0.00575,0.00613,0.00686,0.00879,0,0,0,0,0,0,0.00587,0.00621,0.00687,0.00858,0,0,0,0,0,0,0.00624,0.00671,0.0074,0.00921,0,0,0,0,0,0,0.0055,0.00591,0.0067,0.00882,0,0,0,0,0,0,0.0061,0.00633,0.00679,0.00788,0,0,0,0,0,0,0.00564,0.00593,0.00644,0.00768,0,0,0,0,0,0,0.0056,0.00581,0.00623,0.0072,0,0,0,0,0,0,0.00589,0.00621,0.00675,0.00811,0,0,0,0,0,0,0.00569,0.00594,0.00633,0.00726,0,0,0,0,0,0,0.00842,0.00639,0.00646,0.00802,0,0,0,0,0,0,0.00771,0.00592,0.0061,0.00752,0,0,0,0,0,0,0.00805,0.0066,0.00682,0.0085,0,0,0,0,0,0,0.00906,0.00749,0.00771,0.00962,0,0,0,0,0,0,0.00582,0.00521,0.00576,0.00702,0,0,0,0,0,0,0.00631,0.00564,0.00617,0.00757,0,0,0,0,0,0,0.00583,0.00519,0.00578,0.00701,0,0,0,0,0,0,0.00659,0.00576,0.00614,0.00755,0,0,0,0,0,0,0.00484,0.00501,0.00546,0.00658,0,0,0,0,0,0,1.44608,2.53582,3.44899,4.41866,0,0,0,0,0,0,1.42113,2.51021,3.44592,4.3867,0,0,0,0,0,0,1.60905,2.80456,3.94083,5.06894,0,0,0,0,0,0,1.58393,3.01706,4.25105,5.45608,0,0,0,0,0,0,1.28449,2.61505,3.7407,4.69835,0,0,0,0,0,0,1.38434,2.71804,3.89471,4.9336,0,0,0,0,0,0,1.31567,2.68405,3.83338,4.81653,0,0,0,0,0,0,1.39937,2.70036,3.78777,4.79333,0,0,0,0,0,0,1.22789,2.38763,3.32131,4.15837,0,0,0,0,0,0,237.00493,238.76722,240.57284,248.35179,0,0,0,0,0,0,239.19553,240.80194,242.39695,249.87567,0,0,0,0,0,0,243.10581,244.78879,246.47832,254.19338,0,0,0,0,0,0,237.1748,238.96495,240.81852,248.68619,0,0,0,0,0,0,243.87698,244.91022,245.73835,252.0548,0,0,0,0,0,0,239.79384,241.04253,242.16734,248.88889,0,0,0,0,0,0,241.54929,242.53425,243.30808,249.48944,0,0,0,0,0,0,241.62742,242.90942,244.07131,250.8893,0,0,0,0,0,0,237.09998,238.19666,239.1075,245.41233,0,0,0,0,0,0,0.0031,0.00349,0.00402,0.00566,0,0,0,0,0,0,0.00311,0.00351,0.00404,0.00567,0,0,0,0,0,0,0.00314,0.00354,0.00406,0.00568,0,0,0,0,0,0,0.00312,0.00352,0.00406,0.00573,0,0,0,0,0,0,0.00315,0.00354,0.00407,0.0057,0,0,0,0,0,0,0.00314,0.00355,0.00409,0.00575,0,0,0,0,0,0,0.00311,0.00351,0.00405,0.00569,0,0,0,0,0,0,0.00314,0.00353,0.00407,0.0057,0,0,0,0,0,0,0.00309,0.00348,0.004,0.00561,0,0,0,0,0,0,0.01183,0.01371,0.0177,0.01802,0,0,0,0,0,0,0.01185,0.01374,0.01774,0.01806,0,0,0,0,0,0,0.01188,0.01377,0.01779,0.01811,0,0,0,0,0,0,0.01174,0.01361,0.01758,0.01789,0,0,0,0,0,0,0.01187,0.01375,0.01776,0.01808,0,0,0,0,0,0,0.01178,0.01366,0.01764,0.01796,0,0,0,0,0,0,0.01182,0.0137,0.0177,0.01801,0,0,0,0,0,0,0.01187,0.01375,0.01777,0.01808,0,0,0,0,0,0,0.01189,0.01378,0.0178,0.01812,0,0,0,0,0,0,0.05876,0.07715,0.11363,0.16294,0,0,0,0,0,0,0.05807,0.07567,0.11192,0.1609,0,0,0,0,0,0,0.05841,0.08181,0.12039,0.17601,0,0,0,0,0,0,0.06184,0.08872,0.13062,0.19151,0,0,0,0,0,0,0.05157,0.07406,0.11121,0.16478,0,0,0,0,0,0,0.05499,0.0788,0.11776,0.17401,0,0,0,0,0,0,0.05248,0.07443,0.11197,0.16493,0,0,0,0,0,0,0.05706,0.08297,0.12323,0.17994,0,0,0,0,0,0,0.04216,0.07291,0.10882,0.15783,0,0,0,0,0,0,0.00165,0.00257,0.00405,0.00781,0,0,0,0,0,0,0.00157,0.00246,0.00386,0.00727,0,0,0,0,0,0,0.00143,0.00251,0.00394,0.00753,0,0,0,0,0,0,0.00168,0.00265,0.00419,0.00815,0,0,0,0,0,0,0.00143,0.00215,0.0033,0.00581,0,0,0,0,0,0,0.00139,0.0022,0.0034,0.0061,0,0,0,0,0,0,0.00136,0.00203,0.00312,0.00543,0,0,0,0,0,0,0.0014,0.00226,0.00351,0.0064,0,0,0,0,0,0,0.00121,0.00196,0.003,0.00524,0,0,0,0,0,0,0.03084,0.03289,0.03627,0.04504,0,0,0,0,0,0,0.03156,0.03352,0.03667,0.04458,0,0,0,0,0,0,0.03371,0.03613,0.03939,0.04773,0,0,0,0,0,0,0.02928,0.03145,0.03499,0.04434,0,0,0,0,0,0,0.03317,0.03468,0.03719,0.04276,0,0,0,0,0,0,0.03054,0.03227,0.03493,0.04101,0,0,0,0,0,0,0.03045,0.03187,0.03421,0.03933,0,0,0,0,0,0,0.03189,0.03375,0.03651,0.04309,0,0,0,0,0,0,0.03107,0.03267,0.03492,0.03987,0,0,0,0,0,0,0.00679,0.0086,0.0116,0.01936,0,0,0,0,0,0,0.00672,0.00845,0.01124,0.01824,0,0,0,0,0,0,0.00674,0.00889,0.01177,0.01915,0,0,0,0,0,0,0.00665,0.00858,0.01171,0.01998,0,0,0,0,0,0,0.00662,0.00795,0.01018,0.01511,0,0,0,0,0,0,0.00623,0.00777,0.01012,0.0155,0,0,0,0,0,0,0.00615,0.0074,0.00947,0.014,0,0,0,0,0,0,0.00644,0.00808,0.01053,0.01634,0,0,0,0,0,0,0.00596,0.00738,0.00937,0.01374,0,0,0,0,0,0,0.00454,0.00152,0.00153,0.00158,0,0,0,0,0,0,0.00458,0.00154,0.00155,0.00159,0,0,0,0,0,0,0.00465,0.00156,0.00157,0.00162,0,0,0,0,0,0,0.00454,0.00152,0.00154,0.00159,0,0,0,0,0,0,0.00467,0.00156,0.00157,0.00161,0,0,0,0,0,0,0.00459,0.00154,0.00154,0.00159,0,0,0,0,0,0,0.00462,0.00155,0.00155,0.00159,0,0,0,0,0,0,0.00413,0.00153,0.00153,0.00158,0,0,0,0,0,0,0.00212,0.0014,0.00141,0.00145,0,0,0,0,0,0,0.09369,0.13417,0.2166,0.41691,0,0,0,0,0,0,0.08588,0.1247,0.20571,0.40107,0,0,0,0,0,0,0.09134,0.13707,0.22618,0.43659,0,0,0,0,0,0,0.10209,0.1544,0.2517,0.47458,0,0,0,0,0,0,0.0671,0.11327,0.20299,0.4045,0,0,0,0,0,0,0.07235,0.12016,0.2121,0.41853,0,0,0,0,0,0,0.0666,0.11171,0.20056,0.39824,0,0,0,0,0,0,0.07913,0.1279,0.2201,0.43009,0,0,0,0,0,0,0.06237,0.10989,0.19561,0.38781,0,0,0,0 +Compact car,PH10G,2020,0,0,0,0.00567,0.00596,0.00641,0.00773,0,0,0,0,0,0,0.0058,0.00606,0.00647,0.00766,0,0,0,0,0,0,0.00627,0.00655,0.00698,0.00822,0,0,0,0,0,0,0.00542,0.00573,0.00622,0.00765,0,0,0,0,0,0,0.00604,0.00623,0.00652,0.00731,0,0,0,0,0,0,0.00561,0.00582,0.00614,0.00703,0,0,0,0,0,0,0.00554,0.00571,0.00597,0.00669,0,0,0,0,0,0,0.00586,0.00608,0.00642,0.00738,0,0,0,0,0,0,0.00569,0.00585,0.00609,0.00677,0,0,0,0,0,0,0.00641,0.00522,0.00485,0.00595,0,0,0,0,0,0,0.00573,0.00476,0.00449,0.00552,0,0,0,0,0,0,0.00604,0.00531,0.00502,0.00626,0,0,0,0,0,0,0.00693,0.00607,0.00572,0.00712,0,0,0,0,0,0,0.0039,0.00391,0.00391,0.00495,0,0,0,0,0,0,0.00438,0.00431,0.00426,0.0054,0,0,0,0,0,0,0.00386,0.00388,0.0039,0.00493,0,0,0,0,0,0,0.00485,0.00446,0.00432,0.00542,0,0,0,0,0,0,0.0039,0.00372,0.00368,0.00459,0,0,0,0,0,0,1.18405,1.74663,2.1804,2.91259,0,0,0,0,0,0,1.14159,1.70549,2.14147,2.86362,0,0,0,0,0,0,1.21389,1.90791,2.44569,3.32435,0,0,0,0,0,0,1.31503,2.07042,2.66655,3.60474,0,0,0,0,0,0,1.01752,1.70255,2.20655,2.99301,0,0,0,0,0,0,1.07518,1.7905,2.32861,3.17373,0,0,0,0,0,0,1.05039,1.75067,2.26792,3.07591,0,0,0,0,0,0,1.12163,1.7925,2.28876,3.09105,0,0,0,0,0,0,0.97213,1.5571,1.96912,2.64284,0,0,0,0,0,0,190.37807,191.70796,192.98054,203.57491,0,0,0,0,0,0,192.02122,193.2215,194.31139,204.68216,0,0,0,0,0,0,195.1988,196.46032,197.6268,208.26565,0,0,0,0,0,0,190.55845,191.91223,193.22672,203.90456,0,0,0,0,0,0,195.36829,196.09443,196.52291,205.96499,0,0,0,0,0,0,192.26377,193.16954,193.85688,203.58419,0,0,0,0,0,0,193.48721,194.17541,194.56018,203.84966,0,0,0,0,0,0,193.74261,194.67463,195.39123,205.23045,0,0,0,0,0,0,189.96641,190.7466,191.25223,200.56862,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00504,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00407,0.00503,0,0,0,0,0,0,0.00321,0.00357,0.00409,0.00505,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00497,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01385,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04199,0.06454,0.08638,0.11523,0,0,0,0,0,0,0.04084,0.06302,0.08461,0.11302,0,0,0,0,0,0,0.04122,0.06782,0.09054,0.12265,0,0,0,0,0,0,0.04436,0.07394,0.09879,0.13426,0,0,0,0,0,0,0.0345,0.06005,0.08143,0.11152,0,0,0,0,0,0,0.03752,0.06455,0.08722,0.11922,0,0,0,0,0,0,0.03522,0.06062,0.08238,0.11228,0,0,0,0,0,0,0.04094,0.06823,0.09178,0.12426,0,0,0,0,0,0,0.03601,0.05949,0.08036,0.10813,0,0,0,0,0,0,0.00146,0.00219,0.0031,0.00565,0,0,0,0,0,0,0.00141,0.0021,0.00295,0.00532,0,0,0,0,0,0,0.00143,0.00213,0.00301,0.00546,0,0,0,0,0,0,0.0015,0.00224,0.00319,0.00586,0,0,0,0,0,0,0.00125,0.00184,0.00254,0.0044,0,0,0,0,0,0,0.00128,0.00188,0.00262,0.00458,0,0,0,0,0,0,0.00119,0.00174,0.0024,0.00413,0,0,0,0,0,0,0.00131,0.00193,0.00269,0.00476,0,0,0,0,0,0,0.00115,0.00168,0.00231,0.00398,0,0,0,0,0,0,0.03041,0.03203,0.03412,0.04011,0,0,0,0,0,0,0.03119,0.03272,0.03467,0.04016,0,0,0,0,0,0,0.03374,0.0353,0.03732,0.04304,0,0,0,0,0,0,0.02886,0.03055,0.03274,0.03906,0,0,0,0,0,0,0.03278,0.03403,0.03557,0.03971,0,0,0,0,0,0,0.0303,0.0316,0.03323,0.03767,0,0,0,0,0,0,0.03009,0.03126,0.03269,0.03651,0,0,0,0,0,0,0.03168,0.03304,0.03474,0.03945,0,0,0,0,0,0,0.03096,0.03209,0.03347,0.03715,0,0,0,0,0,0,0.00641,0.00784,0.0097,0.01499,0,0,0,0,0,0,0.0064,0.00774,0.00947,0.01433,0,0,0,0,0,0,0.00677,0.00815,0.00994,0.015,0,0,0,0,0,0,0.00629,0.00778,0.00972,0.01531,0,0,0,0,0,0,0.00628,0.00738,0.00874,0.01241,0,0,0,0,0,0,0.00602,0.00717,0.00861,0.01254,0,0,0,0,0,0,0.00583,0.00686,0.00812,0.01151,0,0,0,0,0,0,0.00625,0.00745,0.00896,0.01312,0,0,0,0,0,0,0.00587,0.00686,0.00808,0.01134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00122,0.00123,0.00124,0.00131,0,0,0,0,0,0,0.00125,0.00125,0.00126,0.00133,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00125,0.00125,0.00125,0.00131,0,0,0,0,0,0,0.00123,0.00123,0.00124,0.0013,0,0,0,0,0,0,0.00123,0.00124,0.00124,0.0013,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00129,0,0,0,0,0,0,0.00112,0.00112,0.00113,0.00118,0,0,0,0,0,0,0.08051,0.11016,0.16393,0.32526,0,0,0,0,0,0,0.07283,0.1006,0.15252,0.31126,0,0,0,0,0,0,0.07731,0.11151,0.16932,0.33979,0,0,0,0,0,0,0.08762,0.12652,0.18967,0.36814,0,0,0,0,0,0,0.05421,0.08585,0.14153,0.3106,0,0,0,0,0,0,0.05927,0.09283,0.15034,0.32209,0,0,0,0,0,0,0.05333,0.08363,0.13781,0.30328,0,0,0,0,0,0,0.06632,0.09984,0.15788,0.33104,0,0,0,0,0,0,0.05327,0.08236,0.13497,0.2966,0,0,0 +Compact car,PH10G,2025,0,0,0,0,0.00547,0.00565,0.00595,0.00685,0,0,0,0,0,0,0.00562,0.00578,0.00605,0.00686,0,0,0,0,0,0,0.00608,0.00625,0.00654,0.00739,0,0,0,0,0,0,0.00521,0.0054,0.00572,0.00669,0,0,0,0,0,0,0.00591,0.00602,0.00621,0.00676,0,0,0,0,0,0,0.00547,0.00559,0.0058,0.00642,0,0,0,0,0,0,0.00542,0.00552,0.0057,0.00619,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00673,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00631,0,0,0,0,0,0,0.00547,0.00414,0.00371,0.00456,0,0,0,0,0,0,0.00476,0.00367,0.00334,0.00413,0,0,0,0,0,0,0.0051,0.00409,0.00373,0.00468,0,0,0,0,0,0,0.00594,0.00475,0.00431,0.00539,0,0,0,0,0,0,0.00287,0.00263,0.00257,0.00332,0,0,0,0,0,0,0.00336,0.003,0.00288,0.00372,0,0,0,0,0,0,0.00281,0.00258,0.00254,0.00329,0,0,0,0,0,0,0.00384,0.00322,0.00302,0.00384,0,0,0,0,0,0,0.00283,0.00248,0.0024,0.00307,0,0,0,0,0,0,0.89603,1.27549,1.60414,2.12739,0,0,0,0,0,0,0.84251,1.22002,1.54614,2.05479,0,0,0,0,0,0,0.90437,1.36873,1.76688,2.38196,0,0,0,0,0,0,0.99171,1.50234,1.94547,2.60839,0,0,0,0,0,0,0.68841,1.13711,1.49828,2.02486,0,0,0,0,0,0,0.74572,1.21794,1.60593,2.17761,0,0,0,0,0,0,0.71043,1.17036,1.54143,2.08482,0,0,0,0,0,0,0.79305,1.23692,1.59878,2.14703,0,0,0,0,0,0,0.65972,1.04249,1.33946,1.79297,0,0,0,0,0,0,153.85338,154.99936,156.33305,165.87204,0,0,0,0,0,0,155.08883,156.12659,157.30204,166.63178,0,0,0,0,0,0,157.68617,158.77612,160.02268,169.59695,0,0,0,0,0,0,154.03544,155.20309,156.57666,166.19824,0,0,0,0,0,0,157.46771,158.10835,158.70642,167.17235,0,0,0,0,0,0,155.09742,155.88851,156.71138,165.44737,0,0,0,0,0,0,155.93892,156.54765,157.1065,165.4361,0,0,0,0,0,0,156.29694,157.11018,157.95958,166.7952,0,0,0,0,0,0,153.13283,153.81614,154.47195,162.82148,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00492,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00494,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00487,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03226,0.04679,0.06218,0.08446,0,0,0,0,0,0,0.03097,0.04517,0.06028,0.08211,0,0,0,0,0,0,0.0312,0.0481,0.0639,0.08842,0,0,0,0,0,0,0.03392,0.0529,0.07031,0.09739,0,0,0,0,0,0,0.02461,0.0406,0.05511,0.07754,0,0,0,0,0,0,0.02745,0.04452,0.06008,0.08413,0,0,0,0,0,0,0.02523,0.0412,0.05603,0.07833,0,0,0,0,0,0,0.03008,0.04736,0.06357,0.08817,0,0,0,0,0,0,0.02586,0.04066,0.05495,0.07591,0,0,0,0,0,0,0.00096,0.0014,0.00201,0.00385,0,0,0,0,0,0,0.00092,0.00134,0.00192,0.00364,0,0,0,0,0,0,0.00094,0.00137,0.00196,0.00373,0,0,0,0,0,0,0.00098,0.00144,0.00207,0.00398,0,0,0,0,0,0,0.00082,0.00118,0.00165,0.00303,0,0,0,0,0,0,0.00084,0.00121,0.0017,0.00315,0,0,0,0,0,0,0.00078,0.00112,0.00156,0.00284,0,0,0,0,0,0,0.00085,0.00124,0.00175,0.00327,0,0,0,0,0,0,0.00075,0.00108,0.00151,0.00275,0,0,0,0,0,0,0.0293,0.0303,0.03169,0.036,0,0,0,0,0,0,0.03014,0.03108,0.03238,0.03636,0,0,0,0,0,0,0.03266,0.03362,0.03497,0.0391,0,0,0,0,0,0,0.02772,0.02876,0.03022,0.03472,0,0,0,0,0,0,0.03188,0.03264,0.03368,0.03674,0,0,0,0,0,0,0.02936,0.03016,0.03126,0.03452,0,0,0,0,0,0,0.02923,0.02995,0.03091,0.03373,0,0,0,0,0,0,0.03072,0.03156,0.0327,0.03614,0,0,0,0,0,0,0.03014,0.03084,0.03176,0.0345,0,0,0,0,0,0,0.00543,0.00631,0.00755,0.01136,0,0,0,0,0,0,0.00547,0.00629,0.00744,0.01096,0,0,0,0,0,0,0.00582,0.00667,0.00786,0.01151,0,0,0,0,0,0,0.00528,0.00619,0.00748,0.01147,0,0,0,0,0,0,0.00548,0.00615,0.00707,0.00977,0,0,0,0,0,0,0.00519,0.0059,0.00687,0.00975,0,0,0,0,0,0,0.00507,0.0057,0.00655,0.00904,0,0,0,0,0,0,0.00541,0.00614,0.00715,0.0102,0,0,0,0,0,0,0.00514,0.00575,0.00657,0.009,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00101,0.00101,0.00102,0.00108,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.001,0.00101,0.00101,0.00107,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00098,0.00099,0.00099,0.00105,0,0,0,0,0,0,0.0009,0.00091,0.00091,0.00096,0,0,0,0,0,0,0.07026,0.08984,0.13054,0.2661,0,0,0,0,0,0,0.06225,0.07985,0.11848,0.25118,0,0,0,0,0,0,0.06692,0.08949,0.13311,0.27588,0,0,0,0,0,0,0.07675,0.10277,0.15049,0.29932,0,0,0,0,0,0,0.04227,0.06139,0.10159,0.24115,0,0,0,0,0,0,0.04759,0.0684,0.11031,0.25241,0,0,0,0,0,0,0.04106,0.05863,0.097,0.23245,0,0,0,0,0,0,0.05422,0.07515,0.11765,0.26067,0,0,0,0,0,0,0.04087,0.05806,0.09577,0.22949,0,0 +Compact car,PH10G,2030,0,0,0,0,0,0.00547,0.00565,0.00595,0.00663,0,0,0,0,0,0,0.00562,0.00578,0.00605,0.00666,0,0,0,0,0,0,0.00608,0.00625,0.00653,0.00718,0,0,0,0,0,0,0.00521,0.00539,0.00571,0.00645,0,0,0,0,0,0,0.0059,0.00602,0.00621,0.00663,0,0,0,0,0,0,0.00547,0.00559,0.0058,0.00627,0,0,0,0,0,0,0.00542,0.00552,0.00569,0.00607,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00657,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00619,0,0,0,0,0,0,0.00514,0.00378,0.00338,0.00403,0,0,0,0,0,0,0.00443,0.00331,0.00301,0.00359,0,0,0,0,0,0,0.00477,0.0037,0.00337,0.00405,0,0,0,0,0,0,0.00559,0.00432,0.00391,0.00469,0,0,0,0,0,0,0.00253,0.00222,0.00218,0.00267,0,0,0,0,0,0,0.00301,0.00258,0.00249,0.00304,0,0,0,0,0,0,0.00246,0.00217,0.00215,0.00263,0,0,0,0,0,0,0.00349,0.00282,0.00265,0.00321,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00247,0,0,0,0,0,0,0.82051,1.15892,1.47192,1.85795,0,0,0,0,0,0,0.76437,1.10013,1.40811,1.77763,0,0,0,0,0,0,0.82386,1.23555,1.6104,2.05188,0,0,0,0,0,0,0.90749,1.36142,1.77937,2.25759,0,0,0,0,0,0,0.60313,0.99797,1.32924,1.69022,0,0,0,0,0,0,0.66019,1.07663,1.43434,1.83029,0,0,0,0,0,0,0.62218,1.02731,1.36854,1.74015,0,0,0,0,0,0,0.70734,1.09987,1.43529,1.82169,0,0,0,0,0,0,0.57811,0.9157,1.18876,1.50316,0,0,0,0,0,0,141.66316,143.09537,145.31317,151.60093,0,0,0,0,0,0,142.76624,144.1009,146.17363,152.23801,0,0,0,0,0,0,145.16887,146.55809,148.71535,154.9665,0,0,0,0,0,0,141.84491,143.29779,145.55671,151.92303,0,0,0,0,0,0,144.83407,145.80524,147.33573,152.5291,0,0,0,0,0,0,142.70384,143.80938,145.54276,151.03931,0,0,0,0,0,0,143.42337,144.36161,145.84537,150.93759,0,0,0,0,0,0,143.80989,144.93865,146.70433,152.27351,0,0,0,0,0,0,140.85363,141.85361,143.41144,148.56986,0,0,0,0,0,0,0.00319,0.00352,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00321,0.00355,0.00407,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02858,0.04064,0.05471,0.07247,0,0,0,0,0,0,0.02723,0.03898,0.05276,0.07003,0,0,0,0,0,0,0.02737,0.04125,0.05566,0.07474,0,0,0,0,0,0,0.0299,0.04557,0.06146,0.08261,0,0,0,0,0,0,0.02088,0.03388,0.04702,0.06392,0,0,0,0,0,0,0.02362,0.03758,0.05171,0.07003,0,0,0,0,0,0,0.02145,0.03448,0.04787,0.06481,0,0,0,0,0,0,0.02596,0.04012,0.05488,0.07373,0,0,0,0,0,0,0.02203,0.03417,0.0472,0.06313,0,0,0,0,0,0,0.00096,0.0014,0.002,0.00334,0,0,0,0,0,0,0.00092,0.00134,0.00191,0.00315,0,0,0,0,0,0,0.00093,0.00136,0.00194,0.00323,0,0,0,0,0,0,0.00098,0.00143,0.00205,0.00345,0,0,0,0,0,0,0.00082,0.00118,0.00164,0.00264,0,0,0,0,0,0,0.00083,0.0012,0.00169,0.00274,0,0,0,0,0,0,0.00078,0.00111,0.00155,0.00247,0,0,0,0,0,0,0.00085,0.00123,0.00174,0.00283,0,0,0,0,0,0,0.00075,0.00108,0.00151,0.00239,0,0,0,0,0,0,0.0293,0.03029,0.03166,0.0348,0,0,0,0,0,0,0.03014,0.03107,0.03235,0.03525,0,0,0,0,0,0,0.03266,0.03362,0.03494,0.03795,0,0,0,0,0,0,0.02772,0.02875,0.03017,0.03348,0,0,0,0,0,0,0.03187,0.03264,0.03366,0.03587,0,0,0,0,0,0,0.02936,0.03016,0.03123,0.0336,0,0,0,0,0,0,0.02923,0.02995,0.03089,0.03293,0,0,0,0,0,0,0.03072,0.03155,0.03268,0.03517,0,0,0,0,0,0,0.03014,0.03083,0.03176,0.03372,0,0,0,0,0,0,0.00543,0.0063,0.00752,0.0103,0,0,0,0,0,0,0.00546,0.00629,0.00742,0.00998,0,0,0,0,0,0,0.00581,0.00666,0.00783,0.01049,0,0,0,0,0,0,0.00527,0.00618,0.00745,0.01037,0,0,0,0,0,0,0.00547,0.00615,0.00705,0.00901,0,0,0,0,0,0,0.00519,0.0059,0.00685,0.00894,0,0,0,0,0,0,0.00506,0.0057,0.00653,0.00834,0,0,0,0,0,0,0.0054,0.00614,0.00714,0.00934,0,0,0,0,0,0,0.00514,0.00575,0.00657,0.0083,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00097,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00099,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00096,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00088,0,0,0,0,0,0,0.06718,0.08437,0.12311,0.24183,0,0,0,0,0,0,0.05915,0.07438,0.11097,0.2265,0,0,0,0,0,0,0.06385,0.08353,0.12494,0.24914,0,0,0,0,0,0,0.07348,0.09626,0.14147,0.27091,0,0,0,0,0,0,0.03899,0.05518,0.09274,0.21253,0,0,0,0,0,0,0.04432,0.06208,0.10134,0.2235,0,0,0,0,0,0,0.03772,0.05234,0.08801,0.20352,0,0,0,0,0,0,0.05082,0.06885,0.10868,0.23219,0,0,0,0,0,0,0.03742,0.05189,0.08714,0.20198,0 +Compact car,PH10G,2035,0,0,0,0,0,0,0.00547,0.00564,0.00595,0.00661,0,0,0,0,0,0,0.00562,0.00577,0.00605,0.00664,0,0,0,0,0,0,0.00608,0.00625,0.00653,0.00716,0,0,0,0,0,0,0.0052,0.00539,0.00572,0.00643,0,0,0,0,0,0,0.0059,0.00602,0.00621,0.00661,0,0,0,0,0,0,0.00546,0.00559,0.0058,0.00625,0,0,0,0,0,0,0.00542,0.00552,0.00569,0.00606,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00655,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00617,0,0,0,0,0,0,0.00512,0.00379,0.00338,0.00394,0,0,0,0,0,0,0.00441,0.00332,0.00301,0.0035,0,0,0,0,0,0,0.00475,0.00371,0.00336,0.00394,0,0,0,0,0,0,0.00557,0.00433,0.00391,0.00457,0,0,0,0,0,0,0.00252,0.00223,0.00218,0.00255,0,0,0,0,0,0,0.003,0.00258,0.00249,0.00292,0,0,0,0,0,0,0.00245,0.00217,0.00214,0.00251,0,0,0,0,0,0,0.00348,0.00282,0.00265,0.0031,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00237,0,0,0,0,0,0,0.81997,1.16371,1.46885,1.81228,0,0,0,0,0,0,0.76398,1.10384,1.40568,1.73119,0,0,0,0,0,0,0.82354,1.24028,1.60736,1.99531,0,0,0,0,0,0,0.90719,1.36698,1.77584,2.19683,0,0,0,0,0,0,0.60311,0.99823,1.32884,1.63547,0,0,0,0,0,0,0.66012,1.07779,1.43338,1.77268,0,0,0,0,0,0,0.62226,1.02826,1.3677,1.68311,0,0,0,0,0,0,0.70703,1.10123,1.43421,1.76824,0,0,0,0,0,0,0.57791,0.91588,1.18842,1.45646,0,0,0,0,0,0,141.62199,143.09026,145.30913,149.39391,0,0,0,0,0,0,142.72754,144.09608,146.16961,150.01156,0,0,0,0,0,0,145.12847,146.55305,148.71143,152.70363,0,0,0,0,0,0,141.8025,143.29263,145.55264,149.71546,0,0,0,0,0,0,144.80428,145.80154,147.33266,150.26216,0,0,0,0,0,0,142.67062,143.80519,145.53926,148.80953,0,0,0,0,0,0,143.39415,144.35781,145.8424,148.69279,0,0,0,0,0,0,143.77631,144.9344,146.70088,150.02623,0,0,0,0,0,0,140.82432,141.85012,143.40861,146.3637,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00354,0.00406,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.00319,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.0285,0.04053,0.05477,0.07061,0,0,0,0,0,0,0.02716,0.03888,0.05281,0.06814,0,0,0,0,0,0,0.0273,0.04113,0.05572,0.07254,0,0,0,0,0,0,0.02982,0.04541,0.06154,0.08024,0,0,0,0,0,0,0.02083,0.0338,0.04706,0.06168,0,0,0,0,0,0,0.02357,0.03749,0.05176,0.06773,0,0,0,0,0,0,0.02141,0.03437,0.04793,0.06262,0,0,0,0,0,0,0.0259,0.04005,0.05492,0.07138,0,0,0,0,0,0,0.02199,0.03415,0.0472,0.06103,0,0,0,0,0,0,0.00095,0.00139,0.002,0.00323,0,0,0,0,0,0,0.00092,0.00133,0.00191,0.00306,0,0,0,0,0,0,0.00093,0.00136,0.00195,0.00313,0,0,0,0,0,0,0.00097,0.00142,0.00206,0.00335,0,0,0,0,0,0,0.00082,0.00117,0.00165,0.00256,0,0,0,0,0,0,0.00083,0.0012,0.0017,0.00266,0,0,0,0,0,0,0.00078,0.00111,0.00155,0.0024,0,0,0,0,0,0,0.00085,0.00123,0.00174,0.00275,0,0,0,0,0,0,0.00075,0.00108,0.00151,0.00232,0,0,0,0,0,0,0.02929,0.03027,0.03168,0.03457,0,0,0,0,0,0,0.03013,0.03105,0.03236,0.03503,0,0,0,0,0,0,0.03265,0.0336,0.03495,0.03772,0,0,0,0,0,0,0.02771,0.02872,0.03019,0.03325,0,0,0,0,0,0,0.03187,0.03263,0.03367,0.0357,0,0,0,0,0,0,0.02936,0.03015,0.03124,0.03342,0,0,0,0,0,0,0.02922,0.02993,0.0309,0.03278,0,0,0,0,0,0,0.03072,0.03154,0.03269,0.03498,0,0,0,0,0,0,0.03014,0.03083,0.03176,0.03355,0,0,0,0,0,0,0.00542,0.00629,0.00753,0.01009,0,0,0,0,0,0,0.00546,0.00627,0.00743,0.00979,0,0,0,0,0,0,0.00581,0.00664,0.00784,0.01029,0,0,0,0,0,0,0.00527,0.00616,0.00746,0.01017,0,0,0,0,0,0,0.00547,0.00614,0.00706,0.00886,0,0,0,0,0,0,0.00519,0.00589,0.00686,0.00878,0,0,0,0,0,0,0.00506,0.00568,0.00654,0.0082,0,0,0,0,0,0,0.0054,0.00613,0.00714,0.00917,0,0,0,0,0,0,0.00514,0.00575,0.00657,0.00816,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00097,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00096,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00094,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00086,0,0,0,0,0,0,0.06698,0.08445,0.12303,0.23891,0,0,0,0,0,0,0.05897,0.07444,0.11091,0.22349,0,0,0,0,0,0,0.06367,0.08363,0.12485,0.24574,0,0,0,0,0,0,0.07326,0.09631,0.14142,0.26729,0,0,0,0,0,0,0.03888,0.05512,0.09277,0.20889,0,0,0,0,0,0,0.0442,0.06206,0.10134,0.21978,0,0,0,0,0,0,0.03761,0.05227,0.08804,0.19978,0,0,0,0,0,0,0.05065,0.06869,0.10875,0.22872,0,0,0,0,0,0,0.03732,0.05188,0.08712,0.19849 +Compact car,PH10G,2040,0,0,0,0,0,0,0,0.00547,0.00565,0.00595,0,0,0,0,0,0,0,0.00561,0.00578,0.00605,0,0,0,0,0,0,0,0.00608,0.00625,0.00654,0,0,0,0,0,0,0,0.0052,0.00539,0.00572,0,0,0,0,0,0,0,0.0059,0.00602,0.00621,0,0,0,0,0,0,0,0.00546,0.00559,0.0058,0,0,0,0,0,0,0,0.00541,0.00552,0.0057,0,0,0,0,0,0,0,0.00571,0.00584,0.00607,0,0,0,0,0,0,0,0.00557,0.00567,0.00583,0,0,0,0,0,0,0,0.00512,0.00378,0.00338,0,0,0,0,0,0,0,0.00442,0.00331,0.003,0,0,0,0,0,0,0,0.00477,0.0037,0.00336,0,0,0,0,0,0,0,0.00559,0.00432,0.0039,0,0,0,0,0,0,0,0.00252,0.00222,0.00218,0,0,0,0,0,0,0,0.00301,0.00258,0.00248,0,0,0,0,0,0,0,0.00245,0.00217,0.00214,0,0,0,0,0,0,0,0.00348,0.00282,0.00264,0,0,0,0,0,0,0,0.00247,0.00209,0.00203,0,0,0,0,0,0,0,0.82371,1.16098,1.46545,0,0,0,0,0,0,0,0.76683,1.10167,1.40302,0,0,0,0,0,0,0,0.8274,1.23758,1.604,0,0,0,0,0,0,0,0.91194,1.36384,1.77194,0,0,0,0,0,0,0,0.6033,0.9978,1.32851,0,0,0,0,0,0,0,0.66106,1.07689,1.43243,0,0,0,0,0,0,0,0.62291,1.02751,1.36685,0,0,0,0,0,0,0,0.70801,1.1002,1.43312,0,0,0,0,0,0,0,0.57779,0.91548,1.18816,0,0,0,0,0,0,0,141.61556,143.08312,145.3085,0,0,0,0,0,0,0,142.72141,144.08928,146.16901,0,0,0,0,0,0,0,145.12216,146.54611,148.71075,0,0,0,0,0,0,0,141.79599,143.28527,145.55192,0,0,0,0,0,0,0,144.79978,145.79653,147.33228,0,0,0,0,0,0,0,142.66537,143.79953,145.53872,0,0,0,0,0,0,0,143.38978,144.35284,145.84188,0,0,0,0,0,0,0,143.77095,144.92865,146.70037,0,0,0,0,0,0,0,140.81982,141.84513,143.40822,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00321,0.00355,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01383,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01381,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01381,0.01777,0,0,0,0,0,0,0,0.01189,0.01384,0.0178,0,0,0,0,0,0,0,0.02841,0.04056,0.05484,0,0,0,0,0,0,0,0.02707,0.03891,0.05288,0,0,0,0,0,0,0,0.0272,0.04116,0.0558,0,0,0,0,0,0,0,0.02969,0.04546,0.06165,0,0,0,0,0,0,0,0.02077,0.03382,0.04712,0,0,0,0,0,0,0,0.02349,0.03751,0.05183,0,0,0,0,0,0,0,0.02133,0.0344,0.04801,0,0,0,0,0,0,0,0.02583,0.04006,0.05497,0,0,0,0,0,0,0,0.02197,0.03414,0.04721,0,0,0,0,0,0,0,0.00095,0.00139,0.00201,0,0,0,0,0,0,0,0.00091,0.00134,0.00192,0,0,0,0,0,0,0,0.00093,0.00136,0.00196,0,0,0,0,0,0,0,0.00097,0.00142,0.00207,0,0,0,0,0,0,0,0.00081,0.00117,0.00165,0,0,0,0,0,0,0,0.00083,0.0012,0.0017,0,0,0,0,0,0,0,0.00077,0.00111,0.00156,0,0,0,0,0,0,0,0.00085,0.00123,0.00175,0,0,0,0,0,0,0,0.00075,0.00108,0.00151,0,0,0,0,0,0,0,0.02928,0.03028,0.03169,0,0,0,0,0,0,0,0.03012,0.03106,0.03238,0,0,0,0,0,0,0,0.03264,0.0336,0.03497,0,0,0,0,0,0,0,0.02769,0.02873,0.03021,0,0,0,0,0,0,0,0.03186,0.03263,0.03368,0,0,0,0,0,0,0,0.02935,0.03015,0.03125,0,0,0,0,0,0,0,0.02921,0.02994,0.03091,0,0,0,0,0,0,0,0.03071,0.03154,0.0327,0,0,0,0,0,0,0,0.03014,0.03083,0.03176,0,0,0,0,0,0,0,0.00541,0.00629,0.00754,0,0,0,0,0,0,0,0.00545,0.00628,0.00744,0,0,0,0,0,0,0,0.0058,0.00665,0.00785,0,0,0,0,0,0,0,0.00525,0.00617,0.00748,0,0,0,0,0,0,0,0.00546,0.00614,0.00707,0,0,0,0,0,0,0,0.00518,0.00589,0.00687,0,0,0,0,0,0,0,0.00505,0.00569,0.00655,0,0,0,0,0,0,0,0.00539,0.00613,0.00715,0,0,0,0,0,0,0,0.00513,0.00575,0.00657,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00093,0.00093,0.00095,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00092,0.00093,0.00094,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.0009,0.00091,0.00092,0,0,0,0,0,0,0,0.00083,0.00084,0.00085,0,0,0,0,0,0,0,0.06703,0.08436,0.12297,0,0,0,0,0,0,0,0.059,0.07436,0.11086,0,0,0,0,0,0,0,0.06375,0.08353,0.12478,0,0,0,0,0,0,0,0.07331,0.09622,0.1414,0,0,0,0,0,0,0,0.03885,0.05512,0.09283,0,0,0,0,0,0,0,0.04419,0.06203,0.10138,0,0,0,0,0,0,0,0.03757,0.05227,0.08811,0,0,0,0,0,0,0,0.05054,0.06873,0.10889,0,0,0,0,0,0,0,0.03729,0.05186,0.08714 +Compact car,PH10G,2045,0,0,0,0,0,0,0,0,0.00547,0.00565,0,0,0,0,0,0,0,0,0.00562,0.00578,0,0,0,0,0,0,0,0,0.00608,0.00625,0,0,0,0,0,0,0,0,0.0052,0.00539,0,0,0,0,0,0,0,0,0.0059,0.00602,0,0,0,0,0,0,0,0,0.00546,0.00559,0,0,0,0,0,0,0,0,0.00541,0.00552,0,0,0,0,0,0,0,0,0.00571,0.00584,0,0,0,0,0,0,0,0,0.00557,0.00567,0,0,0,0,0,0,0,0,0.00512,0.00378,0,0,0,0,0,0,0,0,0.00441,0.00331,0,0,0,0,0,0,0,0,0.00476,0.00369,0,0,0,0,0,0,0,0,0.00558,0.00431,0,0,0,0,0,0,0,0,0.00252,0.00222,0,0,0,0,0,0,0,0,0.00301,0.00258,0,0,0,0,0,0,0,0,0.00245,0.00217,0,0,0,0,0,0,0,0,0.00348,0.00282,0,0,0,0,0,0,0,0,0.00246,0.00209,0,0,0,0,0,0,0,0,0.82151,1.15824,0,0,0,0,0,0,0,0,0.76508,1.09953,0,0,0,0,0,0,0,0,0.82513,1.23486,0,0,0,0,0,0,0,0,0.90922,1.36065,0,0,0,0,0,0,0,0,0.60291,0.99755,0,0,0,0,0,0,0,0,0.66028,1.07614,0,0,0,0,0,0,0,0,0.62231,1.02688,0,0,0,0,0,0,0,0,0.70718,1.09934,0,0,0,0,0,0,0,0,0.57755,0.91528,0,0,0,0,0,0,0,0,141.60984,143.08299,0,0,0,0,0,0,0,0,142.71607,144.08932,0,0,0,0,0,0,0,0,145.11673,146.54611,0,0,0,0,0,0,0,0,141.79011,143.2852,0,0,0,0,0,0,0,0,144.79569,145.79646,0,0,0,0,0,0,0,0,142.66092,143.79947,0,0,0,0,0,0,0,0,143.38586,144.35281,0,0,0,0,0,0,0,0,143.76642,144.92854,0,0,0,0,0,0,0,0,140.81583,141.84503,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02843,0.04061,0,0,0,0,0,0,0,0,0.0271,0.03896,0,0,0,0,0,0,0,0,0.02723,0.04123,0,0,0,0,0,0,0,0,0.02973,0.04555,0,0,0,0,0,0,0,0,0.02079,0.03386,0,0,0,0,0,0,0,0,0.02351,0.03756,0,0,0,0,0,0,0,0,0.02135,0.03446,0,0,0,0,0,0,0,0,0.02585,0.0401,0,0,0,0,0,0,0,0,0.02197,0.03415,0,0,0,0,0,0,0,0,0.00095,0.0014,0,0,0,0,0,0,0,0,0.00092,0.00134,0,0,0,0,0,0,0,0,0.00093,0.00136,0,0,0,0,0,0,0,0,0.00097,0.00143,0,0,0,0,0,0,0,0,0.00082,0.00118,0,0,0,0,0,0,0,0,0.00083,0.0012,0,0,0,0,0,0,0,0,0.00077,0.00111,0,0,0,0,0,0,0,0,0.00085,0.00123,0,0,0,0,0,0,0,0,0.00075,0.00108,0,0,0,0,0,0,0,0,0.02928,0.03029,0,0,0,0,0,0,0,0,0.03012,0.03107,0,0,0,0,0,0,0,0,0.03264,0.03361,0,0,0,0,0,0,0,0,0.0277,0.02874,0,0,0,0,0,0,0,0,0.03186,0.03264,0,0,0,0,0,0,0,0,0.02935,0.03016,0,0,0,0,0,0,0,0,0.02922,0.02994,0,0,0,0,0,0,0,0,0.03071,0.03155,0,0,0,0,0,0,0,0,0.03014,0.03083,0,0,0,0,0,0,0,0,0.00542,0.0063,0,0,0,0,0,0,0,0,0.00545,0.00628,0,0,0,0,0,0,0,0,0.0058,0.00666,0,0,0,0,0,0,0,0,0.00526,0.00618,0,0,0,0,0,0,0,0,0.00547,0.00615,0,0,0,0,0,0,0,0,0.00518,0.0059,0,0,0,0,0,0,0,0,0.00506,0.0057,0,0,0,0,0,0,0,0,0.00539,0.00614,0,0,0,0,0,0,0,0,0.00514,0.00575,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00093,0.00093,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00092,0.00093,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00083,0.00084,0,0,0,0,0,0,0,0,0.06696,0.0843,0,0,0,0,0,0,0,0,0.05895,0.07432,0,0,0,0,0,0,0,0,0.06367,0.08346,0,0,0,0,0,0,0,0,0.07323,0.09618,0,0,0,0,0,0,0,0,0.03884,0.05514,0,0,0,0,0,0,0,0,0.04416,0.06204,0,0,0,0,0,0,0,0,0.03757,0.0523,0,0,0,0,0,0,0,0,0.05055,0.0688,0,0,0,0,0,0,0,0,0.03728,0.05186 +Compact car,PH10G,2050,0,0,0,0,0,0,0,0,0,0.00547,0,0,0,0,0,0,0,0,0,0.00562,0,0,0,0,0,0,0,0,0,0.00608,0,0,0,0,0,0,0,0,0,0.0052,0,0,0,0,0,0,0,0,0,0.0059,0,0,0,0,0,0,0,0,0,0.00546,0,0,0,0,0,0,0,0,0,0.00542,0,0,0,0,0,0,0,0,0,0.00571,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00511,0,0,0,0,0,0,0,0,0,0.00441,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00252,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00245,0,0,0,0,0,0,0,0,0,0.00348,0,0,0,0,0,0,0,0,0,0.00246,0,0,0,0,0,0,0,0,0,0.81919,0,0,0,0,0,0,0,0,0,0.76326,0,0,0,0,0,0,0,0,0,0.82273,0,0,0,0,0,0,0,0,0,0.9063,0,0,0,0,0,0,0,0,0,0.60256,0,0,0,0,0,0,0,0,0,0.6595,0,0,0,0,0,0,0,0,0,0.6217,0,0,0,0,0,0,0,0,0,0.70637,0,0,0,0,0,0,0,0,0,0.57738,0,0,0,0,0,0,0,0,0,141.60988,0,0,0,0,0,0,0,0,0,142.7161,0,0,0,0,0,0,0,0,0,145.11672,0,0,0,0,0,0,0,0,0,141.79007,0,0,0,0,0,0,0,0,0,144.79568,0,0,0,0,0,0,0,0,0,142.66083,0,0,0,0,0,0,0,0,0,143.38576,0,0,0,0,0,0,0,0,0,143.76635,0,0,0,0,0,0,0,0,0,140.81579,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.02714,0,0,0,0,0,0,0,0,0,0.02727,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02355,0,0,0,0,0,0,0,0,0,0.02139,0,0,0,0,0,0,0,0,0,0.02587,0,0,0,0,0,0,0,0,0,0.02197,0,0,0,0,0,0,0,0,0,0.00095,0,0,0,0,0,0,0,0,0,0.00092,0,0,0,0,0,0,0,0,0,0.00093,0,0,0,0,0,0,0,0,0,0.00097,0,0,0,0,0,0,0,0,0,0.00082,0,0,0,0,0,0,0,0,0,0.00083,0,0,0,0,0,0,0,0,0,0.00077,0,0,0,0,0,0,0,0,0,0.00085,0,0,0,0,0,0,0,0,0,0.00075,0,0,0,0,0,0,0,0,0,0.02929,0,0,0,0,0,0,0,0,0,0.03013,0,0,0,0,0,0,0,0,0,0.03265,0,0,0,0,0,0,0,0,0,0.02771,0,0,0,0,0,0,0,0,0,0.03187,0,0,0,0,0,0,0,0,0,0.02936,0,0,0,0,0,0,0,0,0,0.02922,0,0,0,0,0,0,0,0,0,0.03072,0,0,0,0,0,0,0,0,0,0.03014,0,0,0,0,0,0,0,0,0,0.00542,0,0,0,0,0,0,0,0,0,0.00546,0,0,0,0,0,0,0,0,0,0.00581,0,0,0,0,0,0,0,0,0,0.00527,0,0,0,0,0,0,0,0,0,0.00547,0,0,0,0,0,0,0,0,0,0.00519,0,0,0,0,0,0,0,0,0,0.00506,0,0,0,0,0,0,0,0,0,0.0054,0,0,0,0,0,0,0,0,0,0.00514,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00093,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00092,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00083,0,0,0,0,0,0,0,0,0,0.06691,0,0,0,0,0,0,0,0,0,0.05891,0,0,0,0,0,0,0,0,0,0.06361,0,0,0,0,0,0,0,0,0,0.07318,0,0,0,0,0,0,0,0,0,0.03885,0,0,0,0,0,0,0,0,0,0.04415,0,0,0,0,0,0,0,0,0,0.03758,0,0,0,0,0,0,0,0,0,0.0506,0,0,0,0,0,0,0,0,0,0.03728 +Compact car,PH20E,1990,0.00851,0,0,0,0,0,0,0,0,0,0.00881,0,0,0,0,0,0,0,0,0,0.00956,0,0,0,0,0,0,0,0,0,0.00803,0,0,0,0,0,0,0,0,0,0.00942,0,0,0,0,0,0,0,0,0,0.00865,0,0,0,0,0,0,0,0,0,0.00864,0,0,0,0,0,0,0,0,0,0.00904,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02972,0,0,0,0,0,0,0,0,0,0.02595,0,0,0,0,0,0,0,0,0,0.02894,0,0,0,0,0,0,0,0,0,0.03187,0,0,0,0,0,0,0,0,0,0.01548,0,0,0,0,0,0,0,0,0,0.0181,0,0,0,0,0,0,0,0,0,0.01486,0,0,0,0,0,0,0,0,0,0.02058,0,0,0,0,0,0,0,0,0,0.01471,0,0,0,0,0,0,0,0,0,0.07884,0,0,0,0,0,0,0,0,0,0.07061,0,0,0,0,0,0,0,0,0,0.07915,0,0,0,0,0,0,0,0,0,0.08344,0,0,0,0,0,0,0,0,0,0.04768,0,0,0,0,0,0,0,0,0,0.05242,0,0,0,0,0,0,0,0,0,0.045,0,0,0,0,0,0,0,0,0,0.0588,0,0,0,0,0,0,0,0,0,0.04492,0,0,0,0,0,0,0,0,0,0.0605,0,0,0,0,0,0,0,0,0,0.05289,0,0,0,0,0,0,0,0,0,0.05954,0,0,0,0,0,0,0,0,0,0.06521,0,0,0,0,0,0,0,0,0,0.03188,0,0,0,0,0,0,0,0,0,0.03705,0,0,0,0,0,0,0,0,0,0.03044,0,0,0,0,0,0,0,0,0,0.04218,0,0,0,0,0,0,0,0,0,0.02994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH20E,1995,0.00851,0.00851,0,0,0,0,0,0,0,0,0.00881,0.00881,0,0,0,0,0,0,0,0,0.00956,0.00956,0,0,0,0,0,0,0,0,0.00803,0.00803,0,0,0,0,0,0,0,0,0.00942,0.00942,0,0,0,0,0,0,0,0,0.00865,0.00865,0,0,0,0,0,0,0,0,0.00864,0.00864,0,0,0,0,0,0,0,0,0.00904,0.00904,0,0,0,0,0,0,0,0,0.00891,0.00891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00804,0.0176,0,0,0,0,0,0,0,0,0.00704,0.01536,0,0,0,0,0,0,0,0,0.0078,0.01712,0,0,0,0,0,0,0,0,0.00855,0.01878,0,0,0,0,0,0,0,0,0.00423,0.00912,0,0,0,0,0,0,0,0,0.00492,0.01064,0,0,0,0,0,0,0,0,0.00408,0.00876,0,0,0,0,0,0,0,0,0.0056,0.01216,0,0,0,0,0,0,0,0,0.00407,0.00872,0,0,0,0,0,0,0,0,0.03,0.0515,0,0,0,0,0,0,0,0,0.02817,0.04676,0,0,0,0,0,0,0,0,0.03124,0.0521,0,0,0,0,0,0,0,0,0.03047,0.05365,0,0,0,0,0,0,0,0,0.02282,0.03352,0,0,0,0,0,0,0,0,0.0231,0.03567,0,0,0,0,0,0,0,0,0.02125,0.0315,0,0,0,0,0,0,0,0,0.02532,0.03993,0,0,0,0,0,0,0,0,0.02169,0.03186,0,0,0,0,0,0,0,0,0.01729,0.03631,0,0,0,0,0,0,0,0,0.01535,0.0318,0,0,0,0,0,0,0,0,0.01715,0.03561,0,0,0,0,0,0,0,0,0.01835,0.03886,0,0,0,0,0,0,0,0,0.0099,0.01936,0,0,0,0,0,0,0,0,0.01112,0.02224,0,0,0,0,0,0,0,0,0.00943,0.0185,0,0,0,0,0,0,0,0,0.01256,0.02549,0,0,0,0,0,0,0,0,0.00939,0.01839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH20E,2000,0.00851,0.01303,0.01618,0,0,0,0,0,0,0,0.00881,0.0127,0.01539,0,0,0,0,0,0,0,0.00956,0.01392,0.01697,0,0,0,0,0,0,0,0.00803,0.01297,0.01646,0,0,0,0,0,0,0,0.00942,0.01159,0.01304,0,0,0,0,0,0,0,0.00865,0.01125,0.01321,0,0,0,0,0,0,0,0.00864,0.01072,0.01211,0,0,0,0,0,0,0,0.00904,0.01204,0.01409,0,0,0,0,0,0,0,0.00891,0.01097,0.01234,0,0,0,0,0,0,0,0,0.07301,0.07561,0,0,0,0,0,0,0,0,0.06939,0.07376,0,0,0,0,0,0,0,0,0.08221,0.08666,0,0,0,0,0,0,0,0,0.08704,0.09153,0,0,0,0,0,0,0,0,0.06853,0.07305,0,0,0,0,0,0,0,0,0.07392,0.07891,0,0,0,0,0,0,0,0,0.06878,0.07107,0,0,0,0,0,0,0,0,0.07115,0.07482,0,0,0,0,0,0,0,0,0.05914,0.0625,0,0,0,0,0,0,0,0,7.32426,8.60913,0,0,0,0,0,0,0,0,7.07021,8.46765,0,0,0,0,0,0,0,0,8.0841,9.6332,0,0,0,0,0,0,0,0,8.76036,10.40745,0,0,0,0,0,0,0,0,7.13059,8.48297,0,0,0,0,0,0,0,0,7.59524,9.13231,0,0,0,0,0,0,0,0,7.39622,8.55563,0,0,0,0,0,0,0,0,7.30588,8.63612,0,0,0,0,0,0,0,0,6.00537,7.10747,0,0,0,0,0,0,0,0,263.2199,267.23712,0,0,0,0,0,0,0,0,265.44796,269.18865,0,0,0,0,0,0,0,0,270.02508,273.91811,0,0,0,0,0,0,0,0,263.35628,267.42397,0,0,0,0,0,0,0,0,269.85875,272.57044,0,0,0,0,0,0,0,0,265.55168,269.66816,0,0,0,0,0,0,0,0,267.05226,269.66734,0,0,0,0,0,0,0,0,267.67436,270.83183,0,0,0,0,0,0,0,0,262.39324,265.19879,0,0,0,0,0,0,0,0,0.01642,0.01945,0,0,0,0,0,0,0,0,0.01647,0.01949,0,0,0,0,0,0,0,0,0.01654,0.01955,0,0,0,0,0,0,0,0,0.01661,0.01971,0,0,0,0,0,0,0,0,0.01657,0.01959,0,0,0,0,0,0,0,0,0.01668,0.01976,0,0,0,0,0,0,0,0,0.0165,0.01955,0,0,0,0,0,0,0,0,0.01657,0.01961,0,0,0,0,0,0,0,0,0.01631,0.01929,0,0,0,0,0,0,0,0,0.05441,0.05441,0,0,0,0,0,0,0,0,0.05454,0.05454,0,0,0,0,0,0,0,0,0.05468,0.05468,0,0,0,0,0,0,0,0,0.05403,0.05403,0,0,0,0,0,0,0,0,0.0546,0.0546,0,0,0,0,0,0,0,0,0.05422,0.05423,0,0,0,0,0,0,0,0,0.0544,0.0544,0,0,0,0,0,0,0,0,0.05461,0.05461,0,0,0,0,0,0,0,0,0.05472,0.05472,0,0,0,0,0,0,0,0,0.9429,1.12052,0,0,0,0,0,0,0,0,0.93379,1.13388,0,0,0,0,0,0,0,0,1.04148,1.25491,0,0,0,0,0,0,0,0,1.08743,1.30883,0,0,0,0,0,0,0,0,1.016,1.2342,0,0,0,0,0,0,0,0,1.05191,1.26892,0,0,0,0,0,0,0,0,1.03493,1.22523,0,0,0,0,0,0,0,0,1.07551,1.28301,0,0,0,0,0,0,0,0,0.95499,1.14728,0,0,0,0,0,0,0,0.00445,0.01563,0.02726,0,0,0,0,0,0,0,0.0039,0.01371,0.02382,0,0,0,0,0,0,0,0.00426,0.01498,0.02621,0,0,0,0,0,0,0,0.00464,0.01633,0.02875,0,0,0,0,0,0,0,0.00236,0.00824,0.01414,0,0,0,0,0,0,0,0.00272,0.00948,0.01673,0,0,0,0,0,0,0,0.00231,0.00805,0.01374,0,0,0,0,0,0,0,0.00312,0.01088,0.01882,0,0,0,0,0,0,0,0.00235,0.0082,0.01391,0,0,0,0,0,0,0,0.02182,0.0657,0.09193,0,0,0,0,0,0,0,0.02105,0.06256,0.08526,0,0,0,0,0,0,0,0.02311,0.06843,0.0938,0,0,0,0,0,0,0,0.02149,0.06556,0.09371,0,0,0,0,0,0,0,0.01866,0.05301,0.06602,0,0,0,0,0,0,0,0.01816,0.05268,0.06886,0,0,0,0,0,0,0,0.01731,0.04953,0.062,0,0,0,0,0,0,0,0.0197,0.05732,0.07498,0,0,0,0,0,0,0,0.01789,0.05092,0.06339,0,0,0,0,0,0,0,0.01005,0.03393,0.05714,0,0,0,0,0,0,0,0.00905,0.03032,0.0504,0,0,0,0,0,0,0,0.00997,0.03326,0.05571,0,0,0,0,0,0,0,0.0104,0.03531,0.06021,0,0,0,0,0,0,0,0.00621,0.02005,0.03156,0,0,0,0,0,0,0,0.00675,0.0221,0.03634,0,0,0,0,0,0,0,0.00594,0.01927,0.03031,0,0,0,0,0,0,0,0.00759,0.025,0.04062,0,0,0,0,0,0,0,0.00603,0.01961,0.03064,0,0,0,0,0,0,0,0,0.00862,0.00772,0,0,0,0,0,0,0,0,0.00869,0.00777,0,0,0,0,0,0,0,0,0.00884,0.00791,0,0,0,0,0,0,0,0,0.00862,0.00772,0,0,0,0,0,0,0,0,0.00884,0.00787,0,0,0,0,0,0,0,0,0.0087,0.00779,0,0,0,0,0,0,0,0,0.00874,0.00779,0,0,0,0,0,0,0,0,0.00876,0.00782,0,0,0,0,0,0,0,0,0.00859,0.00766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH20E,2005,0.00851,0.01028,0.01142,0.01409,0,0,0,0,0,0,0.00881,0.01035,0.01134,0.01364,0,0,0,0,0,0,0.00956,0.01129,0.0124,0.015,0,0,0,0,0,0,0.00803,0.00996,0.01122,0.01419,0,0,0,0,0,0,0.00942,0.01036,0.01095,0.01225,0,0,0,0,0,0,0.00865,0.00975,0.01051,0.012,0,0,0,0,0,0,0.00864,0.00954,0.01011,0.01134,0,0,0,0,0,0,0.00904,0.01028,0.01106,0.01284,0,0,0,0,0,0,0.00891,0.0098,0.01035,0.01156,0,0,0,0,0,0,0,0.03756,0.03014,0.03574,0,0,0,0,0,0,0,0.0335,0.0279,0.03351,0,0,0,0,0,0,0,0.03874,0.03222,0.03963,0,0,0,0,0,0,0,0.04294,0.0356,0.04319,0,0,0,0,0,0,0,0.0236,0.02193,0.02848,0,0,0,0,0,0,0,0.02803,0.02574,0.03218,0,0,0,0,0,0,0,0.02326,0.02133,0.02759,0,0,0,0,0,0,0,0.02925,0.02531,0.03159,0,0,0,0,0,0,0,0.02065,0.0189,0.02383,0,0,0,0,0,0,0,2.98915,3.8026,5.16439,0,0,0,0,0,0,0,2.8717,3.79063,5.11719,0,0,0,0,0,0,0,3.22371,4.33088,5.89749,0,0,0,0,0,0,0,3.46953,4.66554,6.3412,0,0,0,0,0,0,0,2.97233,4.10022,5.42437,0,0,0,0,0,0,0,3.09332,4.29645,5.67069,0,0,0,0,0,0,0,3.08211,4.14849,5.47093,0,0,0,0,0,0,0,3.02752,4.03677,5.38899,0,0,0,0,0,0,0,2.61333,3.47653,4.54563,0,0,0,0,0,0,0,266.98314,270.0164,274.43332,0,0,0,0,0,0,0,269.37018,272.19672,276.27454,0,0,0,0,0,0,0,273.79232,276.73456,281.01554,0,0,0,0,0,0,0,267.15935,270.23674,274.73365,0,0,0,0,0,0,0,274.35893,276.41644,279.23079,0,0,0,0,0,0,0,269.866,273.22002,275.48971,0,0,0,0,0,0,0,271.71233,273.69984,276.39094,0,0,0,0,0,0,0,271.9484,274.33936,277.69888,0,0,0,0,0,0,0,266.81651,268.93481,271.82775,0,0,0,0,0,0,0,0.00538,0.00632,0.00961,0,0,0,0,0,0,0,0.00539,0.00633,0.00962,0,0,0,0,0,0,0,0.0054,0.00633,0.00961,0,0,0,0,0,0,0,0.00546,0.00643,0.00977,0,0,0,0,0,0,0,0.00541,0.00635,0.00964,0,0,0,0,0,0,0,0.00547,0.00643,0.00977,0,0,0,0,0,0,0,0.00541,0.00636,0.00966,0,0,0,0,0,0,0,0.00542,0.00637,0.00967,0,0,0,0,0,0,0,0.00533,0.00626,0.00951,0,0,0,0,0,0,0,0.01778,0.02205,0.02487,0,0,0,0,0,0,0,0.01782,0.0221,0.02492,0,0,0,0,0,0,0,0.01787,0.02216,0.02499,0,0,0,0,0,0,0,0.01766,0.02189,0.02469,0,0,0,0,0,0,0,0.01784,0.02212,0.02495,0,0,0,0,0,0,0,0.01772,0.02197,0.02478,0,0,0,0,0,0,0,0.01778,0.02204,0.02486,0,0,0,0,0,0,0,0.01785,0.02213,0.02496,0,0,0,0,0,0,0,0.01789,0.02217,0.02501,0,0,0,0,0,0,0,0.28675,0.38074,0.44502,0,0,0,0,0,0,0,0.27921,0.3828,0.44735,0,0,0,0,0,0,0,0.3142,0.42382,0.50379,0,0,0,0,0,0,0,0.32875,0.44391,0.53212,0,0,0,0,0,0,0,0.29996,0.41041,0.49034,0,0,0,0,0,0,0,0.31294,0.42504,0.50839,0,0,0,0,0,0,0,0.30504,0.40733,0.48456,0,0,0,0,0,0,0,0.31944,0.4277,0.5027,0,0,0,0,0,0,0,0.28356,0.38213,0.44333,0,0,0,0,0,0,0.00138,0.00595,0.00869,0.01731,0,0,0,0,0,0,0.00127,0.00534,0.00779,0.01536,0,0,0,0,0,0,0.00147,0.0055,0.00805,0.01678,0,0,0,0,0,0,0.00151,0.00618,0.00907,0.01827,0,0,0,0,0,0,0.00088,0.00366,0.00536,0.00988,0,0,0,0,0,0,0.00099,0.00395,0.00589,0.01113,0,0,0,0,0,0,0.00085,0.00352,0.00514,0.00952,0,0,0,0,0,0,0.00109,0.00437,0.00639,0.01249,0,0,0,0,0,0,0.00079,0.0034,0.00497,0.00952,0,0,0,0,0,0,0.01524,0.04487,0.05101,0.07038,0,0,0,0,0,0,0.0154,0.0446,0.05006,0.06698,0,0,0,0,0,0,0.01709,0.04792,0.05361,0.07327,0,0,0,0,0,0,0.0147,0.04348,0.05,0.07086,0,0,0,0,0,0,0.01551,0.04327,0.04695,0.05682,0,0,0,0,0,0,0.01447,0.04084,0.04518,0.05666,0,0,0,0,0,0,0.01423,0.03992,0.04341,0.05293,0,0,0,0,0,0,0.01537,0.04337,0.04779,0.06132,0,0,0,0,0,0,0.01463,0.04083,0.04418,0.05405,0,0,0,0,0,0,0.00423,0.0155,0.02093,0.03807,0,0,0,0,0,0,0.00405,0.01442,0.01926,0.03422,0,0,0,0,0,0,0.00463,0.01512,0.02015,0.03755,0,0,0,0,0,0,0.0044,0.01578,0.02154,0.04,0,0,0,0,0,0,0.00342,0.01144,0.01469,0.02343,0,0,0,0,0,0,0.00349,0.01162,0.01539,0.02562,0,0,0,0,0,0,0.00321,0.01077,0.01386,0.02228,0,0,0,0,0,0,0.00375,0.01266,0.01657,0.02854,0,0,0,0,0,0,0.00314,0.01067,0.01364,0.02238,0,0,0,0,0,0,0,0.00874,0.0078,0.00264,0,0,0,0,0,0,0,0.00882,0.00786,0.00266,0,0,0,0,0,0,0,0.00896,0.00799,0.0027,0,0,0,0,0,0,0,0.00875,0.0078,0.00264,0,0,0,0,0,0,0,0.00898,0.00798,0.00269,0,0,0,0,0,0,0,0.00884,0.00789,0.00265,0,0,0,0,0,0,0,0.0089,0.0079,0.00266,0,0,0,0,0,0,0,0.0089,0.00792,0.00267,0,0,0,0,0,0,0,0.00874,0.00777,0.00262,0,0,0,0,0,0,0,0.24233,0.32197,0.33572,0,0,0,0,0,0,0,0.21486,0.2943,0.30655,0,0,0,0,0,0,0,0.24794,0.3392,0.35224,0,0,0,0,0,0,0,0.27578,0.37602,0.38948,0,0,0,0,0,0,0,0.14143,0.21544,0.22221,0,0,0,0,0,0,0,0.17138,0.25905,0.26043,0,0,0,0,0,0,0,0.13761,0.20746,0.21383,0,0,0,0,0,0,0,0.18137,0.25796,0.26719,0,0,0,0,0,0,0,0.12259,0.1847,0.19019,0,0,0,0,0,0 +Compact car,PH20E,2010,0,0.00938,0.00992,0.01077,0.0133,0,0,0,0,0,0,0.00958,0.01005,0.0108,0.01299,0,0,0,0,0,0,0.01041,0.01093,0.01177,0.01424,0,0,0,0,0,0,0.00898,0.00957,0.01052,0.01334,0,0,0,0,0,0,0.00994,0.01024,0.01071,0.01199,0,0,0,0,0,0,0.00924,0.00961,0.01012,0.01165,0,0,0,0,0,0,0.00914,0.00943,0.00988,0.0111,0,0,0,0,0,0,0.00968,0.01006,0.01067,0.01239,0,0,0,0,0,0,0.00941,0.00969,0.01013,0.01132,0,0,0,0,0,0,0.03262,0.02251,0.01737,0.02267,0,0,0,0,0,0,0.02808,0.0203,0.01591,0.02098,0,0,0,0,0,0,0.03183,0.02392,0.01874,0.02492,0,0,0,0,0,0,0.0368,0.02731,0.0213,0.02787,0,0,0,0,0,0,0.01779,0.0163,0.0136,0.01815,0,0,0,0,0,0,0.02065,0.01867,0.01509,0.02029,0,0,0,0,0,0,0.01723,0.01588,0.01331,0.01769,0,0,0,0,0,0,0.023,0.01871,0.01507,0.01998,0,0,0,0,0,0,0.01657,0.01449,0.01189,0.01543,0,0,0,0,0,0,1.64186,2.55168,3.41736,4.3819,0,0,0,0,0,0,1.53741,2.50728,3.38524,4.33618,0,0,0,0,0,0,1.64391,2.79417,3.85642,4.99964,0,0,0,0,0,0,1.78816,3.02847,4.18794,5.40592,0,0,0,0,0,0,1.36501,2.55751,3.58974,4.61049,0,0,0,0,0,0,1.43707,2.69497,3.73352,4.82343,0,0,0,0,0,0,1.40887,2.60553,3.6458,4.66524,0,0,0,0,0,0,1.48358,2.59556,3.5721,4.58043,0,0,0,0,0,0,1.25701,2.2419,3.05702,3.87514,0,0,0,0,0,0,261.68002,263.54005,266.72266,272.29556,0,0,0,0,0,0,264.16389,265.88104,268.83694,274.06444,0,0,0,0,0,0,268.46038,270.25113,273.33232,278.76943,0,0,0,0,0,0,261.84083,263.7201,266.95689,272.62126,0,0,0,0,0,0,269.56288,270.7534,272.86646,276.79857,0,0,0,0,0,0,264.95675,267.31525,268.76841,273.17948,0,0,0,0,0,0,266.99868,268.13971,270.17964,273.99279,0,0,0,0,0,0,266.9783,268.39687,270.87555,275.3688,0,0,0,0,0,0,262.06053,263.31251,265.48734,269.48386,0,0,0,0,0,0,0.00479,0.00542,0.00646,0.00844,0,0,0,0,0,0,0.0048,0.00543,0.00647,0.00845,0,0,0,0,0,0,0.00481,0.00543,0.00647,0.00843,0,0,0,0,0,0,0.00486,0.0055,0.00657,0.00858,0,0,0,0,0,0,0.00482,0.00544,0.00649,0.00846,0,0,0,0,0,0,0.00487,0.0055,0.00657,0.00858,0,0,0,0,0,0,0.00482,0.00544,0.00649,0.00848,0,0,0,0,0,0,0.00483,0.00546,0.0065,0.00849,0,0,0,0,0,0,0.00475,0.00537,0.0064,0.00835,0,0,0,0,0,0,0.01183,0.01372,0.0177,0.01891,0,0,0,0,0,0,0.01185,0.01375,0.01774,0.01895,0,0,0,0,0,0,0.01188,0.01379,0.01779,0.019,0,0,0,0,0,0,0.01174,0.01362,0.01758,0.01877,0,0,0,0,0,0,0.01187,0.01377,0.01776,0.01897,0,0,0,0,0,0,0.01178,0.01367,0.01764,0.01884,0,0,0,0,0,0,0.01182,0.01371,0.0177,0.0189,0,0,0,0,0,0,0.01187,0.01377,0.01777,0.01897,0,0,0,0,0,0,0.01189,0.0138,0.0178,0.01901,0,0,0,0,0,0,0.07607,0.12434,0.13284,0.22298,0,0,0,0,0,0,0.07285,0.12388,0.13194,0.22252,0,0,0,0,0,0,0.07573,0.13669,0.14408,0.24995,0,0,0,0,0,0,0.07869,0.14522,0.15317,0.26653,0,0,0,0,0,0,0.06782,0.12829,0.13506,0.23875,0,0,0,0,0,0,0.07172,0.13508,0.14215,0.2502,0,0,0,0,0,0,0.0694,0.12821,0.13498,0.23664,0,0,0,0,0,0,0.07603,0.137,0.14247,0.2465,0,0,0,0,0,0,0.06842,0.12162,0.12623,0.21547,0,0,0,0,0,0,0.00237,0.00377,0.00564,0.01269,0,0,0,0,0,0,0.00222,0.00351,0.00524,0.01147,0,0,0,0,0,0,0.00222,0.00351,0.00551,0.01232,0,0,0,0,0,0,0.00245,0.00392,0.0059,0.01339,0,0,0,0,0,0,0.00187,0.00291,0.00419,0.00818,0,0,0,0,0,0,0.00191,0.003,0.00441,0.00891,0,0,0,0,0,0,0.00182,0.00282,0.00406,0.00788,0,0,0,0,0,0,0.00199,0.00312,0.00467,0.00973,0,0,0,0,0,0,0.00176,0.00272,0.00404,0.00785,0,0,0,0,0,0,0.03739,0.0406,0.04491,0.06094,0,0,0,0,0,0,0.0381,0.04101,0.04495,0.05903,0,0,0,0,0,0,0.04109,0.04401,0.04865,0.06414,0,0,0,0,0,0,0.03565,0.03903,0.04366,0.06084,0,0,0,0,0,0,0.03956,0.0418,0.04458,0.05336,0,0,0,0,0,0,0.0366,0.03908,0.0421,0.05211,0,0,0,0,0,0,0.03641,0.03855,0.04122,0.04959,0,0,0,0,0,0,0.03843,0.04091,0.04437,0.05568,0,0,0,0,0,0,0.03745,0.03948,0.04232,0.05064,0,0,0,0,0,0,0.00889,0.01173,0.01554,0.02972,0,0,0,0,0,0,0.00868,0.01126,0.01473,0.02719,0,0,0,0,0,0,0.00908,0.01166,0.01576,0.02947,0,0,0,0,0,0,0.00885,0.01184,0.01594,0.03113,0,0,0,0,0,0,0.00816,0.01013,0.0126,0.02036,0,0,0,0,0,0,0.00787,0.01,0.01273,0.02159,0,0,0,0,0,0,0.00767,0.00956,0.01192,0.01933,0,0,0,0,0,0,0.00828,0.01048,0.01354,0.02354,0,0,0,0,0,0,0.00769,0.00948,0.012,0.01936,0,0,0,0,0,0,0.00857,0.00761,0.00257,0.00262,0,0,0,0,0,0,0.00865,0.00768,0.00259,0.00264,0,0,0,0,0,0,0.00879,0.0078,0.00263,0.00268,0,0,0,0,0,0,0.00857,0.00762,0.00257,0.00262,0,0,0,0,0,0,0.00883,0.00782,0.00263,0.00266,0,0,0,0,0,0,0.00868,0.00772,0.00259,0.00263,0,0,0,0,0,0,0.00874,0.00774,0.0026,0.00264,0,0,0,0,0,0,0.00874,0.00775,0.00261,0.00265,0,0,0,0,0,0,0.00858,0.0076,0.00256,0.00259,0,0,0,0,0,0,0.09598,0.13494,0.18293,0.26452,0,0,0,0,0,0,0.08126,0.11928,0.16503,0.24056,0,0,0,0,0,0,0.09358,0.14086,0.19461,0.28429,0,0,0,0,0,0,0.10946,0.1626,0.22274,0.32126,0,0,0,0,0,0,0.04766,0.08789,0.13284,0.19366,0,0,0,0,0,0,0.057,0.10333,0.14942,0.21997,0,0,0,0,0,0,0.0455,0.08456,0.12881,0.18746,0,0,0,0,0,0,0.06457,0.10531,0.1516,0.22103,0,0,0,0,0,0,0.04367,0.07761,0.11578,0.16529,0,0,0,0,0 +Compact car,PH20E,2015,0,0,0.00926,0.00967,0.01044,0.01231,0,0,0,0,0,0,0.00948,0.00985,0.01054,0.0122,0,0,0,0,0,0,0.01029,0.01069,0.01145,0.01328,0,0,0,0,0,0,0.00883,0.00927,0.01011,0.01218,0,0,0,0,0,0,0.00991,0.01016,0.01063,0.01168,0,0,0,0,0,0,0.00921,0.00948,0.01001,0.01122,0,0,0,0,0,0,0.00912,0.00937,0.00982,0.01083,0,0,0,0,0,0,0.00962,0.00993,0.01051,0.01185,0,0,0,0,0,0,0.00938,0.00963,0.01007,0.01106,0,0,0,0,0,0,0.02439,0.01602,0.01444,0.01662,0,0,0,0,0,0,0.02206,0.01485,0.01366,0.0157,0,0,0,0,0,0,0.02413,0.01724,0.01589,0.01841,0,0,0,0,0,0,0.02696,0.01925,0.01764,0.02039,0,0,0,0,0,0,0.01556,0.01273,0.01269,0.01461,0,0,0,0,0,0,0.01803,0.01412,0.01388,0.01603,0,0,0,0,0,0,0.01525,0.01249,0.01253,0.01439,0,0,0,0,0,0,0.01884,0.01413,0.0135,0.01552,0,0,0,0,0,0,0.0147,0.01136,0.01114,0.01264,0,0,0,0,0,0,1.29258,2.27811,3.04823,3.7684,0,0,0,0,0,0,1.27034,2.27601,3.07135,3.78473,0,0,0,0,0,0,1.32226,2.52488,3.48926,4.32937,0,0,0,0,0,0,1.42622,2.71601,3.76384,4.6541,0,0,0,0,0,0,1.19929,2.44464,3.42934,4.19998,0,0,0,0,0,0,1.25382,2.50863,3.5276,4.34357,0,0,0,0,0,0,1.23722,2.50005,3.49679,4.27207,0,0,0,0,0,0,1.25276,2.42356,3.33628,4.0941,0,0,0,0,0,0,1.111,2.14558,2.92278,3.55299,0,0,0,0,0,0,237.09614,238.88187,240.63254,246.05498,0,0,0,0,0,0,239.28629,240.91149,242.44653,247.57524,0,0,0,0,0,0,243.19833,244.90146,246.53074,251.8486,0,0,0,0,0,0,237.26585,239.07724,240.87403,246.3806,0,0,0,0,0,0,243.96518,245.00209,245.75045,249.7703,0,0,0,0,0,0,240.7589,241.13943,242.19228,246.61785,0,0,0,0,0,0,241.63654,242.623,243.31581,247.22962,0,0,0,0,0,0,241.71661,243.00895,244.09969,248.59972,0,0,0,0,0,0,237.18757,238.29343,239.13394,243.18903,0,0,0,0,0,0,0.00311,0.00352,0.00406,0.00541,0,0,0,0,0,0,0.00313,0.00353,0.00407,0.00543,0,0,0,0,0,0,0.00316,0.00356,0.0041,0.00544,0,0,0,0,0,0,0.00313,0.00354,0.0041,0.00548,0,0,0,0,0,0,0.00316,0.00356,0.00411,0.00545,0,0,0,0,0,0,0.00316,0.00357,0.00412,0.0055,0,0,0,0,0,0,0.00313,0.00354,0.00408,0.00544,0,0,0,0,0,0,0.00315,0.00356,0.0041,0.00546,0,0,0,0,0,0,0.0031,0.0035,0.00404,0.00537,0,0,0,0,0,0,0.01183,0.01382,0.0177,0.01783,0,0,0,0,0,0,0.01185,0.01385,0.01774,0.01786,0,0,0,0,0,0,0.01188,0.01389,0.01779,0.01791,0,0,0,0,0,0,0.01174,0.01372,0.01758,0.0177,0,0,0,0,0,0,0.01187,0.01387,0.01776,0.01789,0,0,0,0,0,0,0.01179,0.01377,0.01764,0.01776,0,0,0,0,0,0,0.01182,0.01382,0.0177,0.01782,0,0,0,0,0,0,0.01187,0.01387,0.01777,0.01789,0,0,0,0,0,0,0.01189,0.0139,0.0178,0.01793,0,0,0,0,0,0,0.06211,0.08227,0.11762,0.15883,0,0,0,0,0,0,0.06151,0.08125,0.11653,0.15758,0,0,0,0,0,0,0.06258,0.08902,0.12695,0.17346,0,0,0,0,0,0,0.06559,0.09492,0.13538,0.18531,0,0,0,0,0,0,0.05533,0.08124,0.11785,0.1625,0,0,0,0,0,0,0.05924,0.08626,0.12461,0.17155,0,0,0,0,0,0,0.05629,0.08121,0.11802,0.16214,0,0,0,0,0,0,0.06215,0.08712,0.12501,0.17033,0,0,0,0,0,0,0.05604,0.07668,0.11039,0.14952,0,0,0,0,0,0,0.00213,0.00332,0.0051,0.00945,0,0,0,0,0,0,0.00202,0.00316,0.00482,0.00878,0,0,0,0,0,0,0.00201,0.00326,0.005,0.00922,0,0,0,0,0,0,0.00217,0.00341,0.00525,0.00985,0,0,0,0,0,0,0.00178,0.00272,0.00407,0.00694,0,0,0,0,0,0,0.00181,0.0028,0.00422,0.00734,0,0,0,0,0,0,0.00174,0.00265,0.00396,0.00672,0,0,0,0,0,0,0.00186,0.00292,0.00441,0.00779,0,0,0,0,0,0,0.00169,0.00264,0.00394,0.00668,0,0,0,0,0,0,0.03677,0.03942,0.04347,0.05361,0,0,0,0,0,0,0.0376,0.0401,0.04385,0.05297,0,0,0,0,0,0,0.04056,0.04334,0.0473,0.05712,0,0,0,0,0,0,0.03492,0.03769,0.04193,0.05274,0,0,0,0,0,0,0.03934,0.04131,0.04424,0.05062,0,0,0,0,0,0,0.03645,0.03848,0.0416,0.04862,0,0,0,0,0,0,0.03621,0.03812,0.04095,0.04704,0,0,0,0,0,0,0.03808,0.04036,0.04367,0.05134,0,0,0,0,0,0,0.03727,0.03926,0.04207,0.04809,0,0,0,0,0,0,0.00834,0.01068,0.01426,0.02324,0,0,0,0,0,0,0.00824,0.01044,0.01377,0.02184,0,0,0,0,0,0,0.00861,0.01107,0.01457,0.02326,0,0,0,0,0,0,0.0082,0.01065,0.01441,0.02397,0,0,0,0,0,0,0.00796,0.00971,0.0123,0.01794,0,0,0,0,0,0,0.00767,0.00953,0.0123,0.0185,0,0,0,0,0,0,0.00749,0.00918,0.01169,0.01707,0,0,0,0,0,0,0.00797,0.00999,0.01292,0.01971,0,0,0,0,0,0,0.00753,0.00929,0.01177,0.0171,0,0,0,0,0,0,0.00685,0.0023,0.00232,0.00237,0,0,0,0,0,0,0.00691,0.00232,0.00233,0.00238,0,0,0,0,0,0,0.00702,0.00236,0.00237,0.00242,0,0,0,0,0,0,0.00685,0.0023,0.00232,0.00237,0,0,0,0,0,0,0.00704,0.00236,0.00237,0.0024,0,0,0,0,0,0,0.00695,0.00232,0.00233,0.00237,0,0,0,0,0,0,0.00698,0.00234,0.00234,0.00238,0,0,0,0,0,0,0.00698,0.00234,0.00235,0.00239,0,0,0,0,0,0,0.00685,0.00229,0.0023,0.00234,0,0,0,0,0,0,0.069,0.10033,0.14815,0.20289,0,0,0,0,0,0,0.06119,0.09161,0.1382,0.18922,0,0,0,0,0,0,0.06798,0.1064,0.16069,0.22167,0,0,0,0,0,0,0.07695,0.11956,0.17932,0.24699,0,0,0,0,0,0,0.03985,0.07394,0.12212,0.16809,0,0,0,0,0,0,0.04784,0.08324,0.13505,0.18638,0,0,0,0,0,0,0.03855,0.07186,0.11956,0.16438,0,0,0,0,0,0,0.05046,0.08448,0.13304,0.18261,0,0,0,0,0,0,0.03705,0.06566,0.10699,0.14522,0,0,0,0 +Compact car,PH20E,2020,0,0,0,0.00912,0.00944,0.00993,0.0114,0,0,0,0,0,0,0.00936,0.00965,0.01009,0.0114,0,0,0,0,0,0,0.01016,0.01047,0.01095,0.01239,0,0,0,0,0,0,0.00868,0.00902,0.00955,0.01116,0,0,0,0,0,0,0.00983,0.01003,0.01033,0.01119,0,0,0,0,0,0,0.0091,0.00933,0.00967,0.01065,0,0,0,0,0,0,0.00904,0.00923,0.00953,0.01036,0,0,0,0,0,0,0.00952,0.00976,0.01013,0.01121,0,0,0,0,0,0,0.00931,0.0095,0.00978,0.01059,0,0,0,0,0,0,0.01877,0.01288,0.01063,0.01237,0,0,0,0,0,0,0.01665,0.01172,0.00986,0.01155,0,0,0,0,0,0,0.01852,0.01363,0.01148,0.01366,0,0,0,0,0,0,0.02094,0.01533,0.01285,0.01522,0,0,0,0,0,0,0.01067,0.00922,0.00841,0.0103,0,0,0,0,0,0,0.01249,0.01047,0.00939,0.01146,0,0,0,0,0,0,0.01033,0.009,0.00827,0.01011,0,0,0,0,0,0,0.01365,0.01069,0.00933,0.01118,0,0,0,0,0,0,0.00989,0.00819,0.00737,0.00882,0,0,0,0,0,0,1.01746,1.51263,1.88464,2.51517,0,0,0,0,0,0,0.99371,1.49375,1.87254,2.50466,0,0,0,0,0,0,1.04294,1.65661,2.12209,2.89151,0,0,0,0,0,0,1.13335,1.80058,2.3171,3.13855,0,0,0,0,0,0,0.92106,1.54746,2.00363,2.73091,0,0,0,0,0,0,0.95756,1.6043,2.08478,2.85391,0,0,0,0,0,0,0.94796,1.58565,2.04946,2.78168,0,0,0,0,0,0,0.97088,1.56036,1.98856,2.68804,0,0,0,0,0,0,0.84902,1.36223,1.71606,2.29567,0,0,0,0,0,0,188.31073,189.62672,190.89384,202.17641,0,0,0,0,0,0,189.93583,191.12398,192.21074,203.27416,0,0,0,0,0,0,193.0791,194.32776,195.49015,206.83336,0,0,0,0,0,0,188.48932,189.82914,191.13769,202.5043,0,0,0,0,0,0,193.24682,193.96631,194.39947,204.54201,0,0,0,0,0,0,190.17591,191.07312,191.7618,202.18,0,0,0,0,0,0,191.38625,192.06831,192.45789,202.44105,0,0,0,0,0,0,191.63875,192.56199,193.27936,203.81503,0,0,0,0,0,0,187.90367,188.67666,189.18528,199.18352,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00318,0.00355,0.00406,0.00501,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00503,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00321,0.00357,0.00408,0.00504,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00496,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04287,0.06615,0.08871,0.11872,0,0,0,0,0,0,0.042,0.06501,0.08744,0.1172,0,0,0,0,0,0,0.04304,0.07093,0.09482,0.12906,0,0,0,0,0,0,0.0455,0.07609,0.10178,0.13886,0,0,0,0,0,0,0.03618,0.06313,0.08571,0.118,0,0,0,0,0,0,0.03932,0.06777,0.09169,0.12596,0,0,0,0,0,0,0.03674,0.0634,0.08628,0.11814,0,0,0,0,0,0,0.04117,0.06882,0.09259,0.12548,0,0,0,0,0,0,0.03619,0.05993,0.08085,0.10866,0,0,0,0,0,0,0.00184,0.00277,0.00389,0.00713,0,0,0,0,0,0,0.00176,0.00264,0.00369,0.00668,0,0,0,0,0,0,0.00181,0.00272,0.00382,0.00698,0,0,0,0,0,0,0.00187,0.00283,0.004,0.00739,0,0,0,0,0,0,0.00154,0.00229,0.00314,0.00545,0,0,0,0,0,0,0.00158,0.00235,0.00325,0.00572,0,0,0,0,0,0,0.00151,0.00223,0.00306,0.00528,0,0,0,0,0,0,0.00164,0.00244,0.00339,0.00602,0,0,0,0,0,0,0.00151,0.00222,0.00304,0.00524,0,0,0,0,0,0,0.0361,0.03819,0.04076,0.04834,0,0,0,0,0,0,0.037,0.03895,0.04134,0.04827,0,0,0,0,0,0,0.0401,0.04213,0.04465,0.05203,0,0,0,0,0,0,0.03423,0.03639,0.03909,0.04711,0,0,0,0,0,0,0.03883,0.04041,0.04227,0.0474,0,0,0,0,0,0,0.03587,0.03753,0.03951,0.04507,0,0,0,0,0,0,0.03572,0.03724,0.03903,0.04396,0,0,0,0,0,0,0.0376,0.03935,0.04145,0.04742,0,0,0,0,0,0,0.03689,0.03839,0.04017,0.04503,0,0,0,0,0,0,0.00775,0.00959,0.01187,0.01858,0,0,0,0,0,0,0.00771,0.00943,0.01155,0.01768,0,0,0,0,0,0,0.0082,0.01,0.01223,0.01876,0,0,0,0,0,0,0.00759,0.0095,0.01189,0.01899,0,0,0,0,0,0,0.00751,0.00891,0.01055,0.01509,0,0,0,0,0,0,0.00722,0.00869,0.01044,0.01537,0,0,0,0,0,0,0.00706,0.00841,0.00999,0.01435,0,0,0,0,0,0,0.00755,0.0091,0.01096,0.01624,0,0,0,0,0,0,0.00719,0.00852,0.01009,0.01439,0,0,0,0,0,0,0.00181,0.00183,0.00184,0.00195,0,0,0,0,0,0,0.00183,0.00184,0.00185,0.00196,0,0,0,0,0,0,0.00186,0.00187,0.00188,0.00199,0,0,0,0,0,0,0.00181,0.00183,0.00184,0.00195,0,0,0,0,0,0,0.00186,0.00187,0.00187,0.00197,0,0,0,0,0,0,0.00183,0.00184,0.00185,0.00195,0,0,0,0,0,0,0.00184,0.00185,0.00185,0.00195,0,0,0,0,0,0,0.00184,0.00185,0.00186,0.00196,0,0,0,0,0,0,0.00181,0.00182,0.00182,0.00192,0,0,0,0,0,0,0.05751,0.08009,0.10933,0.15277,0,0,0,0,0,0,0.05049,0.07184,0.09968,0.14055,0,0,0,0,0,0,0.05674,0.08348,0.11595,0.16607,0,0,0,0,0,0,0.0646,0.09448,0.13061,0.18624,0,0,0,0,0,0,0.03085,0.05264,0.0791,0.11835,0,0,0,0,0,0,0.03689,0.06087,0.08985,0.13352,0,0,0,0,0,0,0.02959,0.05085,0.07695,0.11523,0,0,0,0,0,0,0.04061,0.06322,0.09092,0.1322,0,0,0,0,0,0,0.02822,0.04652,0.06911,0.1011,0,0,0 +Compact car,PH20E,2025,0,0,0,0,0.00891,0.0091,0.00943,0.01044,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.01054,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01145,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.01011,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01061,0,0,0,0,0,0,0.00895,0.00909,0.00931,0.01,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.0098,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.01049,0,0,0,0,0,0,0.00917,0.00929,0.00948,0.01004,0,0,0,0,0,0,0.01646,0.01042,0.00825,0.00951,0,0,0,0,0,0,0.01428,0.00923,0.00743,0.00866,0,0,0,0,0,0,0.01613,0.01076,0.00867,0.01023,0,0,0,0,0,0,0.01849,0.01227,0.00983,0.01153,0,0,0,0,0,0,0.00813,0.00631,0.00557,0.0069,0,0,0,0,0,0,0.00993,0.00744,0.00642,0.00789,0,0,0,0,0,0,0.00776,0.00609,0.00542,0.00673,0,0,0,0,0,0,0.01116,0.00787,0.0066,0.00793,0,0,0,0,0,0,0.00741,0.00556,0.00486,0.0059,0,0,0,0,0,0,0.75977,1.09437,1.37594,1.80954,0,0,0,0,0,0,0.72539,1.06099,1.34422,1.77368,0,0,0,0,0,0,0.76744,1.17844,1.52259,2.0404,0,0,0,0,0,0,0.84623,1.29818,1.68202,2.2398,0,0,0,0,0,0,0.62229,1.03444,1.362,1.8359,0,0,0,0,0,0,0.66135,1.09002,1.437,1.94186,0,0,0,0,0,0,0.63941,1.06084,1.39482,1.87282,0,0,0,0,0,0,0.68195,1.07383,1.38675,1.85096,0,0,0,0,0,0,0.57488,0.91351,1.17012,1.55123,0,0,0,0,0,0,152.36465,153.50191,154.82652,164.50535,0,0,0,0,0,0,153.58834,154.61849,155.78586,165.25795,0,0,0,0,0,0,156.1607,157.24222,158.48023,168.19884,0,0,0,0,0,0,152.54515,153.70376,155.0678,164.82885,0,0,0,0,0,0,155.94419,156.58035,157.17563,165.79156,0,0,0,0,0,0,153.597,154.38248,155.20063,164.08166,0,0,0,0,0,0,154.43019,155.03481,155.59115,164.06944,0,0,0,0,0,0,154.7848,155.59219,156.43647,165.41868,0,0,0,0,0,0,151.6512,152.33002,152.98252,161.47709,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00493,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00358,0.00407,0.00496,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00496,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00488,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03284,0.04792,0.06373,0.08692,0,0,0,0,0,0,0.03178,0.04661,0.06221,0.08511,0,0,0,0,0,0,0.03261,0.05045,0.067,0.09315,0,0,0,0,0,0,0.03478,0.05453,0.07244,0.10081,0,0,0,0,0,0,0.02585,0.04281,0.05808,0.08211,0,0,0,0,0,0,0.02881,0.0469,0.06325,0.08898,0,0,0,0,0,0,0.02634,0.04321,0.05873,0.08252,0,0,0,0,0,0,0.03016,0.04773,0.06397,0.08886,0,0,0,0,0,0,0.02579,0.0408,0.055,0.07589,0,0,0,0,0,0,0.0012,0.00178,0.00253,0.0049,0,0,0,0,0,0,0.00115,0.0017,0.0024,0.0046,0,0,0,0,0,0,0.00119,0.00175,0.00248,0.0048,0,0,0,0,0,0,0.00123,0.00182,0.0026,0.00507,0,0,0,0,0,0,0.00101,0.00147,0.00204,0.00378,0,0,0,0,0,0,0.00104,0.00152,0.00211,0.00396,0,0,0,0,0,0,0.00099,0.00144,0.00199,0.00366,0,0,0,0,0,0,0.00108,0.00157,0.00221,0.00416,0,0,0,0,0,0,0.00099,0.00143,0.00198,0.00364,0,0,0,0,0,0,0.03473,0.03602,0.03773,0.04326,0,0,0,0,0,0,0.0357,0.03691,0.0385,0.04358,0,0,0,0,0,0,0.03875,0.04001,0.04168,0.04706,0,0,0,0,0,0,0.03282,0.03415,0.03595,0.04175,0,0,0,0,0,0,0.03773,0.03871,0.03995,0.04379,0,0,0,0,0,0,0.03472,0.03575,0.03707,0.04121,0,0,0,0,0,0,0.03464,0.03558,0.03678,0.04046,0,0,0,0,0,0,0.0364,0.03749,0.03889,0.04331,0,0,0,0,0,0,0.03582,0.03675,0.03794,0.04158,0,0,0,0,0,0,0.00654,0.00767,0.00919,0.01408,0,0,0,0,0,0,0.00656,0.00763,0.00903,0.01353,0,0,0,0,0,0,0.00701,0.00812,0.0096,0.01436,0,0,0,0,0,0,0.00635,0.00753,0.00911,0.01425,0,0,0,0,0,0,0.00653,0.0074,0.0085,0.01189,0,0,0,0,0,0,0.00621,0.00712,0.00829,0.01195,0,0,0,0,0,0,0.0061,0.00694,0.008,0.01125,0,0,0,0,0,0,0.00649,0.00745,0.00869,0.0126,0,0,0,0,0,0,0.00624,0.00707,0.00812,0.01134,0,0,0,0,0,0,0.00147,0.00148,0.00149,0.00158,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00159,0,0,0,0,0,0,0.0015,0.00151,0.00153,0.00162,0,0,0,0,0,0,0.00147,0.00148,0.00149,0.00159,0,0,0,0,0,0,0.0015,0.00151,0.00151,0.0016,0,0,0,0,0,0,0.00148,0.00149,0.00149,0.00158,0,0,0,0,0,0,0.00149,0.00149,0.0015,0.00158,0,0,0,0,0,0,0.00149,0.0015,0.00151,0.00159,0,0,0,0,0,0,0.00146,0.00147,0.00147,0.00155,0,0,0,0,0,0,0.05107,0.06655,0.08762,0.12016,0,0,0,0,0,0,0.04383,0.0581,0.07766,0.10776,0,0,0,0,0,0,0.04998,0.06772,0.09055,0.12714,0,0,0,0,0,0,0.05765,0.07769,0.10335,0.14422,0,0,0,0,0,0,0.02357,0.03658,0.0534,0.08002,0,0,0,0,0,0,0.02952,0.04418,0.06301,0.09313,0,0,0,0,0,0,0.02227,0.03489,0.05137,0.07725,0,0,0,0,0,0,0.03353,0.04774,0.06623,0.09533,0,0,0,0,0,0,0.02117,0.03207,0.04644,0.06826,0,0 +Compact car,PH20E,2030,0,0,0,0,0,0.00891,0.0091,0.00943,0.01017,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.0103,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01119,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.00983,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01045,0,0,0,0,0,0,0.00895,0.00908,0.00931,0.00982,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.00964,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.0103,0,0,0,0,0,0,0.00917,0.00928,0.00948,0.00989,0,0,0,0,0,0,0.01565,0.00964,0.00754,0.00839,0,0,0,0,0,0,0.01346,0.00844,0.00672,0.00752,0,0,0,0,0,0,0.01529,0.00984,0.00784,0.00884,0,0,0,0,0,0,0.01762,0.01128,0.00894,0.01003,0,0,0,0,0,0,0.00728,0.0054,0.00474,0.00551,0,0,0,0,0,0,0.00907,0.00648,0.00555,0.00642,0,0,0,0,0,0,0.00691,0.00517,0.00459,0.00535,0,0,0,0,0,0,0.01032,0.00699,0.0058,0.00661,0,0,0,0,0,0,0.00658,0.00475,0.00413,0.00473,0,0,0,0,0,0,0.68991,0.98783,1.25114,1.56897,0,0,0,0,0,0,0.65302,0.95108,1.21479,1.5237,0,0,0,0,0,0,0.69303,1.05682,1.37604,1.7436,0,0,0,0,0,0,0.76834,1.16966,1.52624,1.9256,0,0,0,0,0,0,0.54262,0.90501,1.20539,1.52304,0,0,0,0,0,0,0.58203,0.95975,1.2786,1.62137,0,0,0,0,0,0,0.55709,0.92822,1.23471,1.55536,0,0,0,0,0,0,0.60438,0.95077,1.23954,1.56029,0,0,0,0,0,0,0.50159,0.80041,1.03648,1.29463,0,0,0,0,0,0,140.214,141.62946,143.82234,150.01186,0,0,0,0,0,0,141.30614,142.62509,144.67458,150.64323,0,0,0,0,0,0,143.68417,145.05706,147.19002,153.34273,0,0,0,0,0,0,140.39401,141.83003,144.06344,150.33026,0,0,0,0,0,0,143.35366,144.31354,145.82695,150.93492,0,0,0,0,0,0,141.24503,142.33764,144.0513,149.45908,0,0,0,0,0,0,141.95728,142.88464,144.35193,149.36008,0,0,0,0,0,0,142.33962,143.45512,145.20099,150.68036,0,0,0,0,0,0,139.41384,140.40222,141.94251,147.0167,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.0049,0,0,0,0,0,0,0.00323,0.00356,0.00406,0.00492,0,0,0,0,0,0,0.00321,0.00354,0.00406,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00353,0.00405,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00485,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.02896,0.04137,0.05596,0.07394,0,0,0,0,0,0,0.02783,0.03999,0.05437,0.07198,0,0,0,0,0,0,0.02853,0.04308,0.05835,0.07814,0,0,0,0,0,0,0.03055,0.04674,0.0633,0.08478,0,0,0,0,0,0,0.02185,0.03555,0.04951,0.06714,0,0,0,0,0,0,0.02472,0.03941,0.05442,0.0735,0,0,0,0,0,0,0.02231,0.03597,0.05016,0.0677,0,0,0,0,0,0,0.02586,0.04013,0.05504,0.07363,0,0,0,0,0,0,0.02179,0.03396,0.04694,0.06248,0,0,0,0,0,0,0.0012,0.00177,0.00252,0.00419,0,0,0,0,0,0,0.00115,0.00169,0.00239,0.00394,0,0,0,0,0,0,0.00118,0.00174,0.00248,0.00411,0,0,0,0,0,0,0.00122,0.00181,0.00259,0.00433,0,0,0,0,0,0,0.00101,0.00147,0.00204,0.00325,0,0,0,0,0,0,0.00104,0.00151,0.00211,0.0034,0,0,0,0,0,0,0.00099,0.00143,0.00199,0.00315,0,0,0,0,0,0,0.00107,0.00157,0.0022,0.00357,0,0,0,0,0,0,0.00099,0.00143,0.00198,0.00313,0,0,0,0,0,0,0.03473,0.03601,0.03772,0.04162,0,0,0,0,0,0,0.0357,0.0369,0.03848,0.04207,0,0,0,0,0,0,0.03875,0.04,0.04167,0.04547,0,0,0,0,0,0,0.03282,0.03414,0.03592,0.04004,0,0,0,0,0,0,0.03772,0.0387,0.03994,0.04263,0,0,0,0,0,0,0.03472,0.03574,0.03706,0.03997,0,0,0,0,0,0,0.03463,0.03558,0.03677,0.03935,0,0,0,0,0,0,0.0364,0.03748,0.03888,0.04199,0,0,0,0,0,0,0.03581,0.03674,0.03793,0.04048,0,0,0,0,0,0,0.00653,0.00766,0.00917,0.01263,0,0,0,0,0,0,0.00655,0.00762,0.00902,0.01219,0,0,0,0,0,0,0.00701,0.00811,0.00959,0.01296,0,0,0,0,0,0,0.00634,0.00751,0.00909,0.01273,0,0,0,0,0,0,0.00653,0.00739,0.00849,0.01087,0,0,0,0,0,0,0.00621,0.00711,0.00828,0.01085,0,0,0,0,0,0,0.0061,0.00693,0.00799,0.01027,0,0,0,0,0,0,0.00649,0.00744,0.00868,0.01143,0,0,0,0,0,0,0.00624,0.00706,0.00812,0.01037,0,0,0,0,0,0,0.00135,0.00136,0.00138,0.00144,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00145,0,0,0,0,0,0,0.00138,0.0014,0.00142,0.00148,0,0,0,0,0,0,0.00135,0.00137,0.00139,0.00145,0,0,0,0,0,0,0.00138,0.00139,0.0014,0.00145,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00144,0,0,0,0,0,0,0.00137,0.00138,0.00139,0.00144,0,0,0,0,0,0,0.00137,0.00138,0.0014,0.00145,0,0,0,0,0,0,0.00134,0.00135,0.00137,0.00142,0,0,0,0,0,0,0.04872,0.06208,0.0814,0.1074,0,0,0,0,0,0,0.04147,0.05363,0.07138,0.09484,0,0,0,0,0,0,0.04753,0.06256,0.0833,0.11141,0,0,0,0,0,0,0.05508,0.07215,0.09555,0.12727,0,0,0,0,0,0,0.02115,0.03156,0.04617,0.06443,0,0,0,0,0,0,0.02703,0.03891,0.05544,0.07663,0,0,0,0,0,0,0.01986,0.0299,0.04418,0.06182,0,0,0,0,0,0,0.03111,0.04282,0.05924,0.08048,0,0,0,0,0,0,0.01885,0.02758,0.04006,0.05519,0 +Compact car,PH20E,2035,0,0,0,0,0,0,0.00891,0.0091,0.00943,0.01014,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.01028,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01116,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.00979,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01043,0,0,0,0,0,0,0.00895,0.00908,0.00931,0.0098,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.00963,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.01028,0,0,0,0,0,0,0.00917,0.00929,0.00948,0.00988,0,0,0,0,0,0,0.01554,0.00963,0.00755,0.00823,0,0,0,0,0,0,0.01337,0.00843,0.00672,0.00735,0,0,0,0,0,0,0.01519,0.00983,0.00785,0.00862,0,0,0,0,0,0,0.0175,0.01127,0.00894,0.0098,0,0,0,0,0,0,0.00724,0.0054,0.00474,0.00529,0,0,0,0,0,0,0.00901,0.00648,0.00556,0.00619,0,0,0,0,0,0,0.00687,0.00517,0.00459,0.00512,0,0,0,0,0,0,0.01025,0.00698,0.0058,0.0064,0,0,0,0,0,0,0.00654,0.00475,0.00413,0.00455,0,0,0,0,0,0,0.6906,0.98874,1.25175,1.53505,0,0,0,0,0,0,0.65398,0.952,1.21532,1.48797,0,0,0,0,0,0,0.69414,1.05795,1.37665,1.70066,0,0,0,0,0,0,0.7695,1.1709,1.52692,1.88004,0,0,0,0,0,0,0.54446,0.90609,1.20574,1.47635,0,0,0,0,0,0,0.5838,0.96088,1.27901,1.5737,0,0,0,0,0,0,0.55902,0.92931,1.23503,1.50798,0,0,0,0,0,0,0.60588,0.95176,1.23999,1.51762,0,0,0,0,0,0,0.50313,0.8012,1.0368,1.25668,0,0,0,0,0,0,140.18071,141.63643,143.83542,147.87949,0,0,0,0,0,0,141.27495,142.63166,144.68655,148.49033,0,0,0,0,0,0,143.65151,145.06398,147.20295,151.15537,0,0,0,0,0,0,140.35972,141.83708,144.07674,148.1984,0,0,0,0,0,0,143.32919,144.31795,145.83515,148.73565,0,0,0,0,0,0,141.21783,142.34288,144.06119,147.2991,0,0,0,0,0,0,141.93368,142.889,144.3599,147.18226,0,0,0,0,0,0,142.31228,143.46052,145.2111,148.50336,0,0,0,0,0,0,139.39026,140.40716,141.95155,144.87724,0,0,0,0,0,0,0.00318,0.00352,0.00403,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00355,0.00407,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02894,0.04147,0.056,0.072,0,0,0,0,0,0,0.02782,0.04009,0.05441,0.07001,0,0,0,0,0,0,0.02853,0.04319,0.05839,0.07583,0,0,0,0,0,0,0.03056,0.04686,0.06334,0.08231,0,0,0,0,0,0,0.02187,0.03565,0.04954,0.0648,0,0,0,0,0,0,0.02473,0.03952,0.05445,0.07109,0,0,0,0,0,0,0.02233,0.03607,0.05019,0.06539,0,0,0,0,0,0,0.02587,0.04024,0.05507,0.07127,0,0,0,0,0,0,0.0218,0.03405,0.04697,0.06042,0,0,0,0,0,0,0.0012,0.00177,0.00252,0.00404,0,0,0,0,0,0,0.00115,0.00169,0.0024,0.0038,0,0,0,0,0,0,0.00118,0.00174,0.00248,0.00396,0,0,0,0,0,0,0.00122,0.00181,0.00259,0.00418,0,0,0,0,0,0,0.00101,0.00147,0.00204,0.00313,0,0,0,0,0,0,0.00104,0.00151,0.00211,0.00328,0,0,0,0,0,0,0.00099,0.00143,0.00199,0.00304,0,0,0,0,0,0,0.00107,0.00157,0.0022,0.00344,0,0,0,0,0,0,0.00099,0.00143,0.00198,0.00302,0,0,0,0,0,0,0.03473,0.036,0.03772,0.04127,0,0,0,0,0,0,0.0357,0.03689,0.03849,0.04174,0,0,0,0,0,0,0.03874,0.03999,0.04167,0.04513,0,0,0,0,0,0,0.03281,0.03413,0.03593,0.03968,0,0,0,0,0,0,0.03772,0.0387,0.03994,0.04238,0,0,0,0,0,0,0.03472,0.03574,0.03707,0.0397,0,0,0,0,0,0,0.03463,0.03557,0.03677,0.03912,0,0,0,0,0,0,0.0364,0.03748,0.03888,0.0417,0,0,0,0,0,0,0.03581,0.03675,0.03794,0.04024,0,0,0,0,0,0,0.00653,0.00766,0.00918,0.01232,0,0,0,0,0,0,0.00655,0.00761,0.00902,0.0119,0,0,0,0,0,0,0.007,0.00811,0.0096,0.01265,0,0,0,0,0,0,0.00634,0.00751,0.0091,0.01241,0,0,0,0,0,0,0.00653,0.00739,0.00849,0.01065,0,0,0,0,0,0,0.00621,0.00711,0.00828,0.01062,0,0,0,0,0,0,0.0061,0.00693,0.00799,0.01006,0,0,0,0,0,0,0.00649,0.00744,0.00869,0.01118,0,0,0,0,0,0,0.00624,0.00707,0.00812,0.01016,0,0,0,0,0,0,0.00135,0.00136,0.00138,0.00142,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00143,0,0,0,0,0,0,0.00138,0.0014,0.00142,0.00145,0,0,0,0,0,0,0.00135,0.00137,0.00139,0.00143,0,0,0,0,0,0,0.00138,0.00139,0.0014,0.00143,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00142,0,0,0,0,0,0,0.00137,0.00138,0.00139,0.00142,0,0,0,0,0,0,0.00137,0.00138,0.0014,0.00143,0,0,0,0,0,0,0.00134,0.00135,0.00137,0.00139,0,0,0,0,0,0,0.04861,0.06217,0.08148,0.1056,0,0,0,0,0,0,0.04138,0.05371,0.07145,0.09297,0,0,0,0,0,0,0.04743,0.06266,0.08338,0.10905,0,0,0,0,0,0,0.05496,0.07226,0.09564,0.12474,0,0,0,0,0,0,0.02113,0.03163,0.04621,0.0619,0,0,0,0,0,0,0.02699,0.03899,0.05549,0.07397,0,0,0,0,0,0,0.01983,0.02997,0.04422,0.05931,0,0,0,0,0,0,0.03105,0.04289,0.05929,0.07816,0,0,0,0,0,0,0.01883,0.02764,0.04009,0.05312 +Compact car,PH20E,2040,0,0,0,0,0,0,0,0.00891,0.0091,0.00943,0,0,0,0,0,0,0,0.00917,0.00934,0.00964,0,0,0,0,0,0,0,0.00995,0.01014,0.01046,0,0,0,0,0,0,0,0.00845,0.00866,0.00902,0,0,0,0,0,0,0,0.00969,0.00981,0.01001,0,0,0,0,0,0,0,0.00895,0.00908,0.00931,0,0,0,0,0,0,0,0.0089,0.00902,0.00922,0,0,0,0,0,0,0,0.00935,0.0095,0.00975,0,0,0,0,0,0,0,0.00917,0.00929,0.00948,0,0,0,0,0,0,0,0.01555,0.00963,0.00754,0,0,0,0,0,0,0,0.01337,0.00843,0.00672,0,0,0,0,0,0,0,0.0152,0.00983,0.00784,0,0,0,0,0,0,0,0.0175,0.01127,0.00894,0,0,0,0,0,0,0,0.00724,0.00539,0.00474,0,0,0,0,0,0,0,0.00902,0.00648,0.00556,0,0,0,0,0,0,0,0.00687,0.00517,0.00459,0,0,0,0,0,0,0,0.01025,0.00698,0.0058,0,0,0,0,0,0,0,0.00655,0.00474,0.00413,0,0,0,0,0,0,0,0.68967,0.98799,1.25142,0,0,0,0,0,0,0,0.65306,0.95129,1.21504,0,0,0,0,0,0,0,0.69309,1.0571,1.37632,0,0,0,0,0,0,0,0.76834,1.16995,1.52655,0,0,0,0,0,0,0,0.54352,0.9054,1.20554,0,0,0,0,0,0,0,0.58281,0.96014,1.27878,0,0,0,0,0,0,0,0.55808,0.92863,1.23485,0,0,0,0,0,0,0,0.60492,0.95106,1.23974,0,0,0,0,0,0,0,0.50232,0.80066,1.03662,0,0,0,0,0,0,0,140.17161,141.62501,143.82832,0,0,0,0,0,0,0,141.26637,142.62104,144.68017,0,0,0,0,0,0,0,143.64257,145.05267,147.19581,0,0,0,0,0,0,0,140.35036,141.82531,144.06944,0,0,0,0,0,0,0,143.32286,144.31005,145.83048,0,0,0,0,0,0,0,141.21063,142.33383,144.05576,0,0,0,0,0,0,0,141.92742,142.88115,144.35542,0,0,0,0,0,0,0,142.3049,143.45131,145.20539,0,0,0,0,0,0,0,139.38365,140.39906,141.94661,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01384,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01382,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01382,0.01777,0,0,0,0,0,0,0,0.01189,0.01385,0.0178,0,0,0,0,0,0,0,0.02891,0.04141,0.05598,0,0,0,0,0,0,0,0.02779,0.04004,0.05439,0,0,0,0,0,0,0,0.02849,0.04313,0.05837,0,0,0,0,0,0,0,0.03052,0.04679,0.06332,0,0,0,0,0,0,0,0.02183,0.0356,0.04953,0,0,0,0,0,0,0,0.0247,0.03945,0.05443,0,0,0,0,0,0,0,0.0223,0.03601,0.05018,0,0,0,0,0,0,0,0.02583,0.04018,0.05505,0,0,0,0,0,0,0,0.02177,0.034,0.04695,0,0,0,0,0,0,0,0.0012,0.00177,0.00253,0,0,0,0,0,0,0,0.00115,0.00169,0.0024,0,0,0,0,0,0,0,0.00118,0.00174,0.00248,0,0,0,0,0,0,0,0.00122,0.00181,0.00259,0,0,0,0,0,0,0,0.00101,0.00147,0.00204,0,0,0,0,0,0,0,0.00103,0.00151,0.00211,0,0,0,0,0,0,0,0.00099,0.00143,0.00199,0,0,0,0,0,0,0,0.00107,0.00157,0.0022,0,0,0,0,0,0,0,0.00099,0.00143,0.00198,0,0,0,0,0,0,0,0.03472,0.036,0.03773,0,0,0,0,0,0,0,0.03569,0.03689,0.03849,0,0,0,0,0,0,0,0.03874,0.03999,0.04168,0,0,0,0,0,0,0,0.0328,0.03413,0.03594,0,0,0,0,0,0,0,0.03772,0.0387,0.03994,0,0,0,0,0,0,0,0.03471,0.03574,0.03707,0,0,0,0,0,0,0,0.03463,0.03557,0.03678,0,0,0,0,0,0,0,0.03639,0.03747,0.03889,0,0,0,0,0,0,0,0.03581,0.03675,0.03794,0,0,0,0,0,0,0,0.00652,0.00766,0.00918,0,0,0,0,0,0,0,0.00655,0.00761,0.00903,0,0,0,0,0,0,0,0.007,0.00811,0.0096,0,0,0,0,0,0,0,0.00633,0.00751,0.00911,0,0,0,0,0,0,0,0.00653,0.00739,0.00849,0,0,0,0,0,0,0,0.0062,0.00711,0.00829,0,0,0,0,0,0,0,0.00609,0.00693,0.008,0,0,0,0,0,0,0,0.00648,0.00744,0.00869,0,0,0,0,0,0,0,0.00624,0.00706,0.00812,0,0,0,0,0,0,0,0.00135,0.00136,0.00138,0,0,0,0,0,0,0,0.00136,0.00137,0.00139,0,0,0,0,0,0,0,0.00138,0.0014,0.00142,0,0,0,0,0,0,0,0.00135,0.00137,0.00139,0,0,0,0,0,0,0,0.00138,0.00139,0.0014,0,0,0,0,0,0,0,0.00136,0.00137,0.00139,0,0,0,0,0,0,0,0.00137,0.00138,0.00139,0,0,0,0,0,0,0,0.00137,0.00138,0.0014,0,0,0,0,0,0,0,0.00134,0.00135,0.00137,0,0,0,0,0,0,0,0.04855,0.06209,0.08144,0,0,0,0,0,0,0,0.04133,0.05364,0.07141,0,0,0,0,0,0,0,0.04737,0.06257,0.08334,0,0,0,0,0,0,0,0.0549,0.07216,0.09559,0,0,0,0,0,0,0,0.0211,0.03158,0.04619,0,0,0,0,0,0,0,0.02696,0.03893,0.05546,0,0,0,0,0,0,0,0.01981,0.02992,0.04419,0,0,0,0,0,0,0,0.03101,0.04283,0.05926,0,0,0,0,0,0,0,0.0188,0.0276,0.04007 +Compact car,PH20E,2045,0,0,0,0,0,0,0,0,0.00891,0.0091,0,0,0,0,0,0,0,0,0.00917,0.00934,0,0,0,0,0,0,0,0,0.00995,0.01014,0,0,0,0,0,0,0,0,0.00845,0.00866,0,0,0,0,0,0,0,0,0.00969,0.00981,0,0,0,0,0,0,0,0,0.00895,0.00908,0,0,0,0,0,0,0,0,0.0089,0.00902,0,0,0,0,0,0,0,0,0.00935,0.0095,0,0,0,0,0,0,0,0,0.00917,0.00929,0,0,0,0,0,0,0,0,0.01555,0.00963,0,0,0,0,0,0,0,0,0.01337,0.00843,0,0,0,0,0,0,0,0,0.0152,0.00983,0,0,0,0,0,0,0,0,0.01751,0.01127,0,0,0,0,0,0,0,0,0.00724,0.00539,0,0,0,0,0,0,0,0,0.00902,0.00648,0,0,0,0,0,0,0,0,0.00687,0.00517,0,0,0,0,0,0,0,0,0.01025,0.00698,0,0,0,0,0,0,0,0,0.00655,0.00474,0,0,0,0,0,0,0,0,0.68909,0.98782,0,0,0,0,0,0,0,0,0.65249,0.95112,0,0,0,0,0,0,0,0,0.69245,1.05689,0,0,0,0,0,0,0,0,0.76762,1.16973,0,0,0,0,0,0,0,0,0.54297,0.90522,0,0,0,0,0,0,0,0,0.58222,0.95995,0,0,0,0,0,0,0,0,0.55752,0.92845,0,0,0,0,0,0,0,0,0.60434,0.95089,0,0,0,0,0,0,0,0,0.50184,0.80053,0,0,0,0,0,0,0,0,140.16436,141.62251,0,0,0,0,0,0,0,0,141.26016,142.61938,0,0,0,0,0,0,0,0,143.6355,145.05032,0,0,0,0,0,0,0,0,140.34307,141.82301,0,0,0,0,0,0,0,0,143.31757,144.30801,0,0,0,0,0,0,0,0,141.20516,142.33212,0,0,0,0,0,0,0,0,141.92227,142.87943,0,0,0,0,0,0,0,0,142.29936,143.4497,0,0,0,0,0,0,0,0,139.37818,140.39683,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02889,0.04139,0,0,0,0,0,0,0,0,0.02777,0.04002,0,0,0,0,0,0,0,0,0.02847,0.04311,0,0,0,0,0,0,0,0,0.03049,0.04677,0,0,0,0,0,0,0,0,0.02182,0.03558,0,0,0,0,0,0,0,0,0.02467,0.03944,0,0,0,0,0,0,0,0,0.02228,0.036,0,0,0,0,0,0,0,0,0.02581,0.04016,0,0,0,0,0,0,0,0,0.02176,0.03398,0,0,0,0,0,0,0,0,0.0012,0.00177,0,0,0,0,0,0,0,0,0.00115,0.00169,0,0,0,0,0,0,0,0,0.00118,0.00174,0,0,0,0,0,0,0,0,0.00122,0.00181,0,0,0,0,0,0,0,0,0.00101,0.00147,0,0,0,0,0,0,0,0,0.00103,0.00151,0,0,0,0,0,0,0,0,0.00099,0.00143,0,0,0,0,0,0,0,0,0.00107,0.00157,0,0,0,0,0,0,0,0,0.00099,0.00143,0,0,0,0,0,0,0,0,0.03472,0.03601,0,0,0,0,0,0,0,0,0.03569,0.0369,0,0,0,0,0,0,0,0,0.03874,0.04,0,0,0,0,0,0,0,0,0.0328,0.03414,0,0,0,0,0,0,0,0,0.03772,0.0387,0,0,0,0,0,0,0,0,0.03471,0.03574,0,0,0,0,0,0,0,0,0.03463,0.03558,0,0,0,0,0,0,0,0,0.03639,0.03748,0,0,0,0,0,0,0,0,0.03581,0.03674,0,0,0,0,0,0,0,0,0.00652,0.00766,0,0,0,0,0,0,0,0,0.00655,0.00762,0,0,0,0,0,0,0,0,0.007,0.00811,0,0,0,0,0,0,0,0,0.00633,0.00751,0,0,0,0,0,0,0,0,0.00653,0.00739,0,0,0,0,0,0,0,0,0.0062,0.00711,0,0,0,0,0,0,0,0,0.00609,0.00693,0,0,0,0,0,0,0,0,0.00649,0.00744,0,0,0,0,0,0,0,0,0.00624,0.00706,0,0,0,0,0,0,0,0,0.00135,0.00136,0,0,0,0,0,0,0,0,0.00136,0.00137,0,0,0,0,0,0,0,0,0.00138,0.0014,0,0,0,0,0,0,0,0,0.00135,0.00137,0,0,0,0,0,0,0,0,0.00138,0.00139,0,0,0,0,0,0,0,0,0.00136,0.00137,0,0,0,0,0,0,0,0,0.00137,0.00138,0,0,0,0,0,0,0,0,0.00137,0.00138,0,0,0,0,0,0,0,0,0.00134,0.00135,0,0,0,0,0,0,0,0,0.04852,0.06207,0,0,0,0,0,0,0,0,0.0413,0.05362,0,0,0,0,0,0,0,0,0.04734,0.06256,0,0,0,0,0,0,0,0,0.05486,0.07214,0,0,0,0,0,0,0,0,0.02108,0.03157,0,0,0,0,0,0,0,0,0.02693,0.03892,0,0,0,0,0,0,0,0,0.01979,0.02991,0,0,0,0,0,0,0,0,0.03099,0.04282,0,0,0,0,0,0,0,0,0.01878,0.02758 +Compact car,PH20E,2050,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00917,0,0,0,0,0,0,0,0,0,0.00995,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00969,0,0,0,0,0,0,0,0,0,0.00895,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00935,0,0,0,0,0,0,0,0,0,0.00917,0,0,0,0,0,0,0,0,0,0.01555,0,0,0,0,0,0,0,0,0,0.01337,0,0,0,0,0,0,0,0,0,0.0152,0,0,0,0,0,0,0,0,0,0.01751,0,0,0,0,0,0,0,0,0,0.00724,0,0,0,0,0,0,0,0,0,0.00902,0,0,0,0,0,0,0,0,0,0.00687,0,0,0,0,0,0,0,0,0,0.01025,0,0,0,0,0,0,0,0,0,0.00655,0,0,0,0,0,0,0,0,0,0.68909,0,0,0,0,0,0,0,0,0,0.6525,0,0,0,0,0,0,0,0,0,0.69245,0,0,0,0,0,0,0,0,0,0.76762,0,0,0,0,0,0,0,0,0,0.54297,0,0,0,0,0,0,0,0,0,0.58222,0,0,0,0,0,0,0,0,0,0.55752,0,0,0,0,0,0,0,0,0,0.60434,0,0,0,0,0,0,0,0,0,0.50184,0,0,0,0,0,0,0,0,0,140.16429,0,0,0,0,0,0,0,0,0,141.26014,0,0,0,0,0,0,0,0,0,143.63545,0,0,0,0,0,0,0,0,0,140.34316,0,0,0,0,0,0,0,0,0,143.31749,0,0,0,0,0,0,0,0,0,141.20514,0,0,0,0,0,0,0,0,0,141.92222,0,0,0,0,0,0,0,0,0,142.29935,0,0,0,0,0,0,0,0,0,139.37818,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02889,0,0,0,0,0,0,0,0,0,0.02777,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.03049,0,0,0,0,0,0,0,0,0,0.02182,0,0,0,0,0,0,0,0,0,0.02467,0,0,0,0,0,0,0,0,0,0.02228,0,0,0,0,0,0,0,0,0,0.02581,0,0,0,0,0,0,0,0,0,0.02176,0,0,0,0,0,0,0,0,0,0.0012,0,0,0,0,0,0,0,0,0,0.00115,0,0,0,0,0,0,0,0,0,0.00118,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00101,0,0,0,0,0,0,0,0,0,0.00104,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00107,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.03472,0,0,0,0,0,0,0,0,0,0.03569,0,0,0,0,0,0,0,0,0,0.03874,0,0,0,0,0,0,0,0,0,0.03281,0,0,0,0,0,0,0,0,0,0.03772,0,0,0,0,0,0,0,0,0,0.03472,0,0,0,0,0,0,0,0,0,0.03463,0,0,0,0,0,0,0,0,0,0.0364,0,0,0,0,0,0,0,0,0,0.03581,0,0,0,0,0,0,0,0,0,0.00653,0,0,0,0,0,0,0,0,0,0.00655,0,0,0,0,0,0,0,0,0,0.007,0,0,0,0,0,0,0,0,0,0.00634,0,0,0,0,0,0,0,0,0,0.00653,0,0,0,0,0,0,0,0,0,0.0062,0,0,0,0,0,0,0,0,0,0.0061,0,0,0,0,0,0,0,0,0,0.00649,0,0,0,0,0,0,0,0,0,0.00624,0,0,0,0,0,0,0,0,0,0.00135,0,0,0,0,0,0,0,0,0,0.00136,0,0,0,0,0,0,0,0,0,0.00138,0,0,0,0,0,0,0,0,0,0.00135,0,0,0,0,0,0,0,0,0,0.00138,0,0,0,0,0,0,0,0,0,0.00136,0,0,0,0,0,0,0,0,0,0.00137,0,0,0,0,0,0,0,0,0,0.00137,0,0,0,0,0,0,0,0,0,0.00134,0,0,0,0,0,0,0,0,0,0.04852,0,0,0,0,0,0,0,0,0,0.0413,0,0,0,0,0,0,0,0,0,0.04734,0,0,0,0,0,0,0,0,0,0.05486,0,0,0,0,0,0,0,0,0,0.02108,0,0,0,0,0,0,0,0,0,0.02693,0,0,0,0,0,0,0,0,0,0.01979,0,0,0,0,0,0,0,0,0,0.03099,0,0,0,0,0,0,0,0,0,0.01878 +Compact car,PH20G,1990,0.05234,0,0,0,0,0,0,0,0,0,0.04638,0,0,0,0,0,0,0,0,0,0.05207,0,0,0,0,0,0,0,0,0,0.05699,0,0,0,0,0,0,0,0,0,0.02997,0,0,0,0,0,0,0,0,0,0.03375,0,0,0,0,0,0,0,0,0,0.02819,0,0,0,0,0,0,0,0,0,0.03785,0,0,0,0,0,0,0,0,0,0.02788,0,0,0,0,0,0,0,0,0,0.04999,0,0,0,0,0,0,0,0,0,0.04275,0,0,0,0,0,0,0,0,0,0.05394,0,0,0,0,0,0,0,0,0,0.05527,0,0,0,0,0,0,0,0,0,0.04547,0,0,0,0,0,0,0,0,0,0.05029,0,0,0,0,0,0,0,0,0,0.04655,0,0,0,0,0,0,0,0,0,0.04539,0,0,0,0,0,0,0,0,0,0.03896,0,0,0,0,0,0,0,0,0,31.80818,0,0,0,0,0,0,0,0,0,28.20931,0,0,0,0,0,0,0,0,0,34.82471,0,0,0,0,0,0,0,0,0,36.07011,0,0,0,0,0,0,0,0,0,29.87856,0,0,0,0,0,0,0,0,0,33.0559,0,0,0,0,0,0,0,0,0,31.12265,0,0,0,0,0,0,0,0,0,29.89031,0,0,0,0,0,0,0,0,0,24.92,0,0,0,0,0,0,0,0,0,322.83197,0,0,0,0,0,0,0,0,0,324.06422,0,0,0,0,0,0,0,0,0,330.10145,0,0,0,0,0,0,0,0,0,322.71745,0,0,0,0,0,0,0,0,0,324.29113,0,0,0,0,0,0,0,0,0,320.96772,0,0,0,0,0,0,0,0,0,320.21977,0,0,0,0,0,0,0,0,0,323.80156,0,0,0,0,0,0,0,0,0,316.75428,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.04215,0,0,0,0,0,0,0,0,0,0.04274,0,0,0,0,0,0,0,0,0,0.042,0,0,0,0,0,0,0,0,0,0.04272,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04213,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.0253,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02535,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.02549,0,0,0,0,0,0,0,0,0,1.93627,0,0,0,0,0,0,0,0,0,1.84332,0,0,0,0,0,0,0,0,0,2.0484,0,0,0,0,0,0,0,0,0,2.15419,0,0,0,0,0,0,0,0,0,2.00274,0,0,0,0,0,0,0,0,0,2.10311,0,0,0,0,0,0,0,0,0,1.9993,0,0,0,0,0,0,0,0,0,2.11211,0,0,0,0,0,0,0,0,0,1.73837,0,0,0,0,0,0,0,0,0,0.10882,0,0,0,0,0,0,0,0,0,0.09532,0,0,0,0,0,0,0,0,0,0.1055,0,0,0,0,0,0,0,0,0,0.11754,0,0,0,0,0,0,0,0,0,0.05665,0,0,0,0,0,0,0,0,0,0.06672,0,0,0,0,0,0,0,0,0,0.05473,0,0,0,0,0,0,0,0,0,0.07539,0,0,0,0,0,0,0,0,0,0.054,0,0,0,0,0,0,0,0,0,0.27502,0,0,0,0,0,0,0,0,0,0.24525,0,0,0,0,0,0,0,0,0,0.27327,0,0,0,0,0,0,0,0,0,0.29542,0,0,0,0,0,0,0,0,0,0.15985,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,0,0,0,0,0,0.15221,0,0,0,0,0,0,0,0,0,0.20128,0,0,0,0,0,0,0,0,0,0.15044,0,0,0,0,0,0,0,0,0,0.21909,0,0,0,0,0,0,0,0,0,0.19193,0,0,0,0,0,0,0,0,0,0.21447,0,0,0,0,0,0,0,0,0,0.23865,0,0,0,0,0,0,0,0,0,0.11456,0,0,0,0,0,0,0,0,0,0.13473,0,0,0,0,0,0,0,0,0,0.11011,0,0,0,0,0,0,0,0,0,0.15234,0,0,0,0,0,0,0,0,0,0.10764,0,0,0,0,0,0,0,0,0,0.01421,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.02307,0,0,0,0,0,0,0,0,0,0.02106,0,0,0,0,0,0,0,0,0,0.01874,0,0,0,0,0,0,0,0,0,0.02065,0,0,0,0,0,0,0,0,0,0.0187,0,0,0,0,0,0,0,0,0,0.01851,0,0,0,0,0,0,0,0,0,0.00858,0,0,0,0,0,0,0,0,0,2.99081,0,0,0,0,0,0,0,0,0,2.67228,0,0,0,0,0,0,0,0,0,3.18204,0,0,0,0,0,0,0,0,0,3.29337,0,0,0,0,0,0,0,0,0,2.95133,0,0,0,0,0,0,0,0,0,3.14197,0,0,0,0,0,0,0,0,0,3.01419,0,0,0,0,0,0,0,0,0,2.97072,0,0,0,0,0,0,0,0,0,2.58386,0,0,0,0,0,0,0,0,0 +Compact car,PH20G,1995,0.0165,0.03036,0,0,0,0,0,0,0,0,0.01569,0.02755,0,0,0,0,0,0,0,0,0.01731,0.03071,0,0,0,0,0,0,0,0,0.01688,0.03238,0,0,0,0,0,0,0,0,0.01327,0.01975,0,0,0,0,0,0,0,0,0.01331,0.02124,0,0,0,0,0,0,0,0,0.01231,0.01849,0,0,0,0,0,0,0,0,0.01436,0.02345,0,0,0,0,0,0,0,0,0.01249,0.01848,0,0,0,0,0,0,0,0,0.02761,0.03203,0,0,0,0,0,0,0,0,0.02564,0.02858,0,0,0,0,0,0,0,0,0.031,0.03546,0,0,0,0,0,0,0,0,0.03195,0.03814,0,0,0,0,0,0,0,0,0.02629,0.02985,0,0,0,0,0,0,0,0,0.02849,0.03306,0,0,0,0,0,0,0,0,0.02605,0.03011,0,0,0,0,0,0,0,0,0.02684,0.03106,0,0,0,0,0,0,0,0,0.0216,0.02426,0,0,0,0,0,0,0,0,11.75219,16.0199,0,0,0,0,0,0,0,0,11.19156,14.67218,0,0,0,0,0,0,0,0,13.44825,17.6587,0,0,0,0,0,0,0,0,14.15705,18.90297,0,0,0,0,0,0,0,0,11.75961,15.32446,0,0,0,0,0,0,0,0,12.73577,16.79242,0,0,0,0,0,0,0,0,12.07704,15.84224,0,0,0,0,0,0,0,0,11.88766,15.96456,0,0,0,0,0,0,0,0,9.31014,12.52862,0,0,0,0,0,0,0,0,264.86785,277.27618,0,0,0,0,0,0,0,0,266.86954,278.87251,0,0,0,0,0,0,0,0,271.51811,283.95373,0,0,0,0,0,0,0,0,264.80367,277.22122,0,0,0,0,0,0,0,0,270.46415,280.86466,0,0,0,0,0,0,0,0,266.36823,277.278,0,0,0,0,0,0,0,0,267.48167,277.55464,0,0,0,0,0,0,0,0,268.62355,279.6898,0,0,0,0,0,0,0,0,263.41372,273.82247,0,0,0,0,0,0,0,0,0.03075,0.03752,0,0,0,0,0,0,0,0,0.03098,0.03776,0,0,0,0,0,0,0,0,0.03147,0.03826,0,0,0,0,0,0,0,0,0.03079,0.03767,0,0,0,0,0,0,0,0,0.03144,0.03825,0,0,0,0,0,0,0,0,0.03122,0.0381,0,0,0,0,0,0,0,0,0.03095,0.03775,0,0,0,0,0,0,0,0,0.03126,0.03808,0,0,0,0,0,0,0,0,0.03079,0.0375,0,0,0,0,0,0,0,0,0.07126,0.05832,0,0,0,0,0,0,0,0,0.0714,0.05844,0,0,0,0,0,0,0,0,0.07151,0.05852,0,0,0,0,0,0,0,0,0.07087,0.05801,0,0,0,0,0,0,0,0,0.07143,0.05846,0,0,0,0,0,0,0,0,0.07105,0.05816,0,0,0,0,0,0,0,0,0.07124,0.05831,0,0,0,0,0,0,0,0,0.07147,0.05849,0,0,0,0,0,0,0,0,0.07159,0.05858,0,0,0,0,0,0,0,0,1.45553,1.75016,0,0,0,0,0,0,0,0,1.41931,1.65598,0,0,0,0,0,0,0,0,1.57006,1.79884,0,0,0,0,0,0,0,0,1.63546,1.96818,0,0,0,0,0,0,0,0,1.52413,1.8242,0,0,0,0,0,0,0,0,1.60165,1.90158,0,0,0,0,0,0,0,0,1.53136,1.82659,0,0,0,0,0,0,0,0,1.62642,1.93557,0,0,0,0,0,0,0,0,1.34107,1.5808,0,0,0,0,0,0,0,0,0.02439,0.05892,0,0,0,0,0,0,0,0,0.02146,0.05162,0,0,0,0,0,0,0,0,0.02368,0.057,0,0,0,0,0,0,0,0,0.02611,0.06347,0,0,0,0,0,0,0,0,0.01298,0.03078,0,0,0,0,0,0,0,0,0.01514,0.03619,0,0,0,0,0,0,0,0,0.01256,0.0298,0,0,0,0,0,0,0,0,0.01707,0.04088,0,0,0,0,0,0,0,0,0.01245,0.02946,0,0,0,0,0,0,0,0,0.0854,0.16188,0,0,0,0,0,0,0,0,0.07995,0.14636,0,0,0,0,0,0,0,0,0.08828,0.16181,0,0,0,0,0,0,0,0,0.08782,0.1713,0,0,0,0,0,0,0,0,0.06352,0.10197,0,0,0,0,0,0,0,0,0.06534,0.11102,0,0,0,0,0,0,0,0,0.05951,0.09678,0,0,0,0,0,0,0,0,0.07121,0.12348,0,0,0,0,0,0,0,0,0.06015,0.09674,0,0,0,0,0,0,0,0,0.05136,0.11901,0,0,0,0,0,0,0,0,0.0457,0.10445,0,0,0,0,0,0,0,0,0.05083,0.11587,0,0,0,0,0,0,0,0,0.055,0.12885,0,0,0,0,0,0,0,0,0.02936,0.06336,0,0,0,0,0,0,0,0,0.0333,0.07371,0,0,0,0,0,0,0,0,0.02811,0.06107,0,0,0,0,0,0,0,0,0.03729,0.08353,0,0,0,0,0,0,0,0,0.02777,0.06014,0,0,0,0,0,0,0,0,0.01163,0.00589,0,0,0,0,0,0,0,0,0.01333,0.00598,0,0,0,0,0,0,0,0,0.01899,0.00621,0,0,0,0,0,0,0,0,0.01729,0.01037,0,0,0,0,0,0,0,0,0.01562,0.00611,0,0,0,0,0,0,0,0,0.01714,0.00606,0,0,0,0,0,0,0,0,0.01561,0.00826,0,0,0,0,0,0,0,0,0.01532,0.00943,0,0,0,0,0,0,0,0,0.0071,0.0034,0,0,0,0,0,0,0,0,1.26908,1.80891,0,0,0,0,0,0,0,0,1.22078,1.70483,0,0,0,0,0,0,0,0,1.40886,1.97805,0,0,0,0,0,0,0,0,1.46067,2.0956,0,0,0,0,0,0,0,0,1.31199,1.90432,0,0,0,0,0,0,0,0,1.36271,1.98873,0,0,0,0,0,0,0,0,1.30028,1.90349,0,0,0,0,0,0,0,0,1.34523,1.95012,0,0,0,0,0,0,0,0,1.11431,1.61912,0,0,0,0,0,0,0,0 +Compact car,PH20G,2000,0.01163,0.0136,0.02336,0,0,0,0,0,0,0,0.0115,0.01319,0.02153,0,0,0,0,0,0,0,0.01258,0.01449,0.02395,0,0,0,0,0,0,0,0.01145,0.01362,0.02454,0,0,0,0,0,0,0,0.01093,0.01186,0.0164,0,0,0,0,0,0,0,0.01046,0.01158,0.01714,0,0,0,0,0,0,0,0.01009,0.01097,0.01528,0,0,0,0,0,0,0,0.01112,0.01241,0.0188,0,0,0,0,0,0,0,0.01034,0.01121,0.01539,0,0,0,0,0,0,0,0.0126,0.01347,0.02169,0,0,0,0,0,0,0,0.01181,0.01291,0.01951,0,0,0,0,0,0,0,0.01467,0.01575,0.02489,0,0,0,0,0,0,0,0.01531,0.01684,0.02582,0,0,0,0,0,0,0,0.01115,0.01282,0.02036,0,0,0,0,0,0,0,0.01235,0.014,0.02212,0,0,0,0,0,0,0,0.011,0.01289,0.01966,0,0,0,0,0,0,0,0.01203,0.01366,0.02063,0,0,0,0,0,0,0,0.00941,0.01115,0.01613,0,0,0,0,0,0,0,5.58152,7.49857,11.41774,0,0,0,0,0,0,0,5.34125,7.25349,10.65137,0,0,0,0,0,0,0,6.47322,8.67113,13.0428,0,0,0,0,0,0,0,6.90132,9.28455,13.58148,0,0,0,0,0,0,0,4.95711,7.12201,10.83094,0,0,0,0,0,0,0,5.49337,7.76666,11.71701,0,0,0,0,0,0,0,5.04346,7.34281,10.79369,0,0,0,0,0,0,0,5.34894,7.59489,11.14026,0,0,0,0,0,0,0,4.09425,6.10741,8.78215,0,0,0,0,0,0,0,263.82942,266.03289,273.15083,0,0,0,0,0,0,0,266.15854,268.20983,274.85707,0,0,0,0,0,0,0,270.70359,272.85526,279.79604,0,0,0,0,0,0,0,263.92913,266.1455,273.29976,0,0,0,0,0,0,0,270.93129,272.4025,277.29011,0,0,0,0,0,0,0,266.45023,268.14264,273.64955,0,0,0,0,0,0,0,268.12463,269.53389,274.2022,0,0,0,0,0,0,0,268.58701,270.30826,275.94933,0,0,0,0,0,0,0,263.42394,264.95115,270.02461,0,0,0,0,0,0,0,0.01711,0.01903,0.02899,0,0,0,0,0,0,0,0.01718,0.0191,0.0291,0,0,0,0,0,0,0,0.0173,0.01921,0.0293,0,0,0,0,0,0,0,0.01727,0.01924,0.02926,0,0,0,0,0,0,0,0.01732,0.01923,0.02934,0,0,0,0,0,0,0,0.01738,0.01934,0.02944,0,0,0,0,0,0,0,0.01721,0.01914,0.02915,0,0,0,0,0,0,0,0.0173,0.01923,0.0293,0,0,0,0,0,0,0,0.01703,0.01892,0.02884,0,0,0,0,0,0,0,0.0416,0.05441,0.05775,0,0,0,0,0,0,0,0.04169,0.05454,0.05787,0,0,0,0,0,0,0,0.0418,0.05468,0.05801,0,0,0,0,0,0,0,0.0413,0.05403,0.05738,0,0,0,0,0,0,0,0.04174,0.0546,0.05793,0,0,0,0,0,0,0,0.04145,0.05422,0.05756,0,0,0,0,0,0,0,0.04158,0.0544,0.05773,0,0,0,0,0,0,0,0.04174,0.05461,0.05794,0,0,0,0,0,0,0,0.04183,0.05472,0.05806,0,0,0,0,0,0,0,0.70088,0.93765,1.3994,0,0,0,0,0,0,0,0.68945,0.93135,1.36546,0,0,0,0,0,0,0,0.81323,1.03013,1.51272,0,0,0,0,0,0,0,0.84158,1.11081,1.58258,0,0,0,0,0,0,0,0.77132,1.02245,1.5165,0,0,0,0,0,0,0,0.8101,1.05416,1.55442,0,0,0,0,0,0,0,0.78292,1.04291,1.4692,0,0,0,0,0,0,0,0.81922,1.0858,1.5459,0,0,0,0,0,0,0,0.67269,0.91113,1.27722,0,0,0,0,0,0,0,0.01108,0.01659,0.03966,0,0,0,0,0,0,0,0.00974,0.01456,0.03469,0,0,0,0,0,0,0,0.01066,0.01595,0.03828,0,0,0,0,0,0,0,0.0116,0.01741,0.0424,0,0,0,0,0,0,0,0.0059,0.00876,0.02059,0,0,0,0,0,0,0,0.00679,0.0101,0.02409,0,0,0,0,0,0,0,0.00575,0.00854,0.01996,0,0,0,0,0,0,0,0.00775,0.01156,0.02741,0,0,0,0,0,0,0,0.00583,0.00865,0.01992,0,0,0,0,0,0,0,0.05598,0.06786,0.11963,0,0,0,0,0,0,0,0.05416,0.06446,0.1094,0,0,0,0,0,0,0,0.05933,0.0706,0.12075,0,0,0,0,0,0,0,0.05545,0.06809,0.12435,0,0,0,0,0,0,0,0.04816,0.05414,0.08008,0,0,0,0,0,0,0,0.04709,0.05404,0.08491,0,0,0,0,0,0,0,0.04478,0.05062,0.07551,0,0,0,0,0,0,0,0.05076,0.05888,0.09391,0,0,0,0,0,0,0,0.04597,0.05189,0.07635,0,0,0,0,0,0,0,0.02533,0.03584,0.08164,0,0,0,0,0,0,0,0.02289,0.032,0.07176,0,0,0,0,0,0,0,0.02522,0.03518,0.07955,0,0,0,0,0,0,0,0.02637,0.03755,0.08732,0,0,0,0,0,0,0,0.01576,0.02105,0.044,0,0,0,0,0,0,0,0.01715,0.0233,0.05061,0,0,0,0,0,0,0,0.01507,0.02025,0.04226,0,0,0,0,0,0,0,0.01919,0.02638,0.05737,0,0,0,0,0,0,0,0.01523,0.02046,0.0421,0,0,0,0,0,0,0,0.01157,0.00565,0.00523,0,0,0,0,0,0,0,0.01329,0.00575,0.00526,0,0,0,0,0,0,0,0.01894,0.00597,0.00535,0,0,0,0,0,0,0,0.01723,0.00998,0.00523,0,0,0,0,0,0,0,0.01565,0.00593,0.00531,0,0,0,0,0,0,0,0.01714,0.00586,0.00524,0,0,0,0,0,0,0,0.01565,0.00802,0.00525,0,0,0,0,0,0,0,0.01531,0.00912,0.00473,0,0,0,0,0,0,0,0.00709,0.00328,0.00242,0,0,0,0,0,0,0,0.50898,0.74471,1.41204,0,0,0,0,0,0,0,0.48004,0.71717,1.32746,0,0,0,0,0,0,0,0.56921,0.84518,1.57252,0,0,0,0,0,0,0,0.60845,0.90815,1.64245,0,0,0,0,0,0,0,0.43443,0.70474,1.43316,0,0,0,0,0,0,0,0.47743,0.76096,1.49931,0,0,0,0,0,0,0,0.42849,0.70198,1.39917,0,0,0,0,0,0,0,0.48845,0.7673,1.4766,0,0,0,0,0,0,0,0.37275,0.61959,1.21534,0,0,0,0,0,0,0 +Compact car,PH20G,2005,0.00961,0.01011,0.01112,0.01716,0,0,0,0,0,0,0.0098,0.01019,0.01105,0.01626,0,0,0,0,0,0,0.01079,0.01078,0.01153,0.01785,0,0,0,0,0,0,0.00933,0.00974,0.01084,0.01761,0,0,0,0,0,0,0.01006,0.01032,0.01087,0.01365,0,0,0,0,0,0,0.00942,0.00959,0.01016,0.01369,0,0,0,0,0,0,0.00924,0.00945,0.00995,0.01257,0,0,0,0,0,0,0.00987,0.01008,0.01072,0.01478,0,0,0,0,0,0,0.00943,0.00959,0.01,0.01271,0,0,0,0,0,0,0.01331,0.00973,0.00961,0.01427,0,0,0,0,0,0,0.01201,0.00868,0.00892,0.013,0,0,0,0,0,0,0.01359,0.00974,0.00998,0.01554,0,0,0,0,0,0,0.01455,0.01196,0.01122,0.01701,0,0,0,0,0,0,0.00781,0.00653,0.00732,0.01181,0,0,0,0,0,0,0.00929,0.00749,0.00815,0.01311,0,0,0,0,0,0,0.00753,0.00696,0.00726,0.01148,0,0,0,0,0,0,0.01008,0.00835,0.00806,0.01293,0,0,0,0,0,0,0.00607,0.00517,0.00565,0.01023,0,0,0,0,0,0,2.56189,3.44401,4.39723,7.25866,0,0,0,0,0,0,2.43087,3.31855,4.37719,6.94997,0,0,0,0,0,0,2.75777,4.04203,5.38411,8.28865,0,0,0,0,0,0,2.98554,4.46455,5.34549,8.8933,0,0,0,0,0,0,2.20464,3.28616,4.51936,7.06469,0,0,0,0,0,0,2.37725,3.57961,4.87747,7.57293,0,0,0,0,0,0,2.26058,3.61337,4.55824,7.12542,0,0,0,0,0,0,2.44458,3.91111,4.66729,7.38321,0,0,0,0,0,0,1.7358,3.02818,4.01304,6.1045,0,0,0,0,0,0,268.53009,269.77174,272.84189,277.53483,0,0,0,0,0,0,271.03096,272.18032,275.041,279.27593,0,0,0,0,0,0,275.43629,276.64934,279.62723,284.14631,0,0,0,0,0,0,268.71783,269.94931,273.06382,277.83806,0,0,0,0,0,0,276.41634,277.21066,279.2914,281.82362,0,0,0,0,0,0,271.7445,272.67452,275.04355,278.19758,0,0,0,0,0,0,273.78568,274.53541,276.54501,278.88529,0,0,0,0,0,0,273.833,274.77943,277.1985,280.45976,0,0,0,0,0,0,268.74377,269.59198,271.73521,274.39692,0,0,0,0,0,0,0.005,0.00539,0.00634,0.01545,0,0,0,0,0,0,0.00501,0.0054,0.00635,0.01548,0,0,0,0,0,0,0.00502,0.00541,0.00635,0.01552,0,0,0,0,0,0,0.00507,0.00547,0.00644,0.01566,0,0,0,0,0,0,0.00503,0.00542,0.00636,0.01556,0,0,0,0,0,0,0.00508,0.00548,0.00644,0.0157,0,0,0,0,0,0,0.00503,0.00542,0.00637,0.01553,0,0,0,0,0,0,0.00504,0.00543,0.00638,0.01558,0,0,0,0,0,0,0.00496,0.00534,0.00627,0.01532,0,0,0,0,0,0,0.01683,0.01915,0.02358,0.03355,0,0,0,0,0,0,0.01686,0.0192,0.02363,0.03362,0,0,0,0,0,0,0.01691,0.01925,0.02369,0.03371,0,0,0,0,0,0,0.01671,0.01902,0.02341,0.03332,0,0,0,0,0,0,0.01688,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01677,0.01909,0.02349,0.03344,0,0,0,0,0,0,0.01682,0.01915,0.02357,0.03354,0,0,0,0,0,0,0.01689,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01692,0.01926,0.02371,0.03373,0,0,0,0,0,0,0.18697,0.27436,0.36213,0.66982,0,0,0,0,0,0,0.18444,0.26756,0.3639,0.66028,0,0,0,0,0,0,0.21104,0.30046,0.40077,0.74661,0,0,0,0,0,0,0.20997,0.35044,0.42371,0.79513,0,0,0,0,0,0,0.18793,0.28686,0.38841,0.73738,0,0,0,0,0,0,0.2002,0.29995,0.40213,0.76222,0,0,0,0,0,0,0.1895,0.3077,0.38487,0.7194,0,0,0,0,0,0,0.20606,0.33031,0.39782,0.76237,0,0,0,0,0,0,0.14841,0.21954,0.29384,0.64909,0,0,0,0,0,0,0.00375,0.00559,0.00809,0.02243,0,0,0,0,0,0,0.00346,0.00499,0.00721,0.01979,0,0,0,0,0,0,0.00404,0.00464,0.00665,0.02155,0,0,0,0,0,0,0.00416,0.00575,0.00835,0.0238,0,0,0,0,0,0,0.00241,0.00352,0.00512,0.01236,0,0,0,0,0,0,0.00273,0.00362,0.00524,0.01409,0,0,0,0,0,0,0.00231,0.00329,0.00477,0.01177,0,0,0,0,0,0,0.00296,0.00397,0.00574,0.01584,0,0,0,0,0,0,0.00211,0.00295,0.00424,0.01163,0,0,0,0,0,0,0.04021,0.04411,0.04974,0.08189,0,0,0,0,0,0,0.04066,0.04386,0.04883,0.0769,0,0,0,0,0,0,0.045,0.04602,0.05048,0.08399,0,0,0,0,0,0,0.03924,0.04261,0.04846,0.08338,0,0,0,0,0,0,0.04073,0.04299,0.04647,0.06233,0,0,0,0,0,0,0.0384,0.04014,0.04369,0.06324,0,0,0,0,0,0,0.03748,0.03948,0.04266,0.0579,0,0,0,0,0,0,0.04048,0.04255,0.04639,0.06879,0,0,0,0,0,0,0.03816,0.03987,0.04263,0.0587,0,0,0,0,0,0,0.01138,0.01483,0.01981,0.04825,0,0,0,0,0,0,0.01094,0.01378,0.01817,0.043,0,0,0,0,0,0,0.01253,0.01344,0.01739,0.04703,0,0,0,0,0,0,0.01202,0.01501,0.02018,0.05107,0,0,0,0,0,0,0.00919,0.01119,0.01426,0.0283,0,0,0,0,0,0,0.00946,0.011,0.01414,0.03144,0,0,0,0,0,0,0.00861,0.01038,0.01319,0.02668,0,0,0,0,0,0,0.0101,0.01193,0.01533,0.03514,0,0,0,0,0,0,0.00831,0.00983,0.01227,0.02649,0,0,0,0,0,0,0.01178,0.00573,0.00522,0.00177,0,0,0,0,0,0,0.01353,0.00584,0.00526,0.00178,0,0,0,0,0,0,0.01928,0.00605,0.00535,0.00181,0,0,0,0,0,0,0.01755,0.01012,0.00523,0.00177,0,0,0,0,0,0,0.01596,0.00603,0.00535,0.0018,0,0,0,0,0,0,0.01748,0.00596,0.00526,0.00177,0,0,0,0,0,0,0.01598,0.00817,0.00529,0.00178,0,0,0,0,0,0,0.0156,0.00927,0.00474,0.00176,0,0,0,0,0,0,0.00723,0.00334,0.00244,0.00162,0,0,0,0,0,0,0.2766,0.30243,0.41792,0.92309,0,0,0,0,0,0,0.24864,0.27255,0.38678,0.86919,0,0,0,0,0,0,0.28098,0.30263,0.42929,0.99116,0,0,0,0,0,0,0.30236,0.36524,0.47798,1.0691,0,0,0,0,0,0,0.15872,0.20223,0.31737,0.85781,0,0,0,0,0,0,0.18907,0.23023,0.35097,0.91003,0,0,0,0,0,0,0.15081,0.20965,0.31026,0.83716,0,0,0,0,0,0,0.21459,0.26882,0.37097,0.92755,0,0,0,0,0,0,0.13014,0.17889,0.27767,0.77233,0,0,0,0,0,0 +Compact car,PH20G,2010,0,0.0093,0.0098,0.01064,0.01401,0,0,0,0,0,0,0.0095,0.00992,0.01068,0.01359,0,0,0,0,0,0,0.01015,0.01052,0.01156,0.01475,0,0,0,0,0,0,0.00888,0.00941,0.01036,0.01409,0,0,0,0,0,0,0.00991,0.01021,0.01066,0.01233,0,0,0,0,0,0,0.00915,0.00945,0.01004,0.01201,0,0,0,0,0,0,0.00909,0.00936,0.00976,0.01128,0,0,0,0,0,0,0.00958,0.0099,0.01055,0.01279,0,0,0,0,0,0,0.00929,0.0095,0.00997,0.01142,0,0,0,0,0,0,0.01099,0.00916,0.00791,0.01061,0,0,0,0,0,0,0.00952,0.00833,0.00723,0.00974,0,0,0,0,0,0,0.01039,0.00949,0.00816,0.01124,0,0,0,0,0,0,0.01309,0.01096,0.00944,0.01276,0,0,0,0,0,0,0.00655,0.00708,0.00626,0.00853,0,0,0,0,0,0,0.0073,0.0077,0.0068,0.00939,0,0,0,0,0,0,0.00687,0.00703,0.00623,0.00841,0,0,0,0,0,0,0.00864,0.00766,0.00696,0.00948,0,0,0,0,0,0,0.00551,0.00553,0.00592,0.0078,0,0,0,0,0,0,1.97073,2.9996,3.99676,5.57558,0,0,0,0,0,0,1.84867,2.94603,3.90923,5.42368,0,0,0,0,0,0,2.21116,3.56577,4.48536,6.36968,0,0,0,0,0,0,2.39073,3.53259,4.86455,6.87851,0,0,0,0,0,0,1.56944,2.86946,3.97802,5.52424,0,0,0,0,0,0,1.75127,3.11691,4.19997,5.89748,0,0,0,0,0,0,1.71436,2.90465,4.06406,5.62391,0,0,0,0,0,0,1.99561,3.04557,4.1471,5.77185,0,0,0,0,0,0,1.50385,2.60725,3.54179,4.84749,0,0,0,0,0,0,264.84022,266.74676,269.98586,276.3985,0,0,0,0,0,0,267.34861,269.10776,272.11305,278.12461,0,0,0,0,0,0,271.69836,273.53307,276.66628,282.93107,0,0,0,0,0,0,265.00277,266.92886,270.22187,276.7455,0,0,0,0,0,0,272.79537,274.00919,276.14501,280.65173,0,0,0,0,0,0,268.14019,269.55428,272.01477,277.07635,0,0,0,0,0,0,270.19876,271.36154,273.42146,277.78448,0,0,0,0,0,0,270.18699,271.63715,274.1499,279.3073,0,0,0,0,0,0,265.20618,266.48489,268.6884,273.254,0,0,0,0,0,0,0.00481,0.00545,0.00651,0.00997,0,0,0,0,0,0,0.00482,0.00546,0.00652,0.00998,0,0,0,0,0,0,0.00483,0.00547,0.00652,0.00997,0,0,0,0,0,0,0.00488,0.00553,0.00662,0.01014,0,0,0,0,0,0,0.00485,0.00548,0.00654,0.01,0,0,0,0,0,0,0.00489,0.00554,0.00662,0.01014,0,0,0,0,0,0,0.00484,0.00548,0.00654,0.01002,0,0,0,0,0,0,0.00485,0.00549,0.00655,0.01003,0,0,0,0,0,0,0.00477,0.0054,0.00645,0.00986,0,0,0,0,0,0,0.01183,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01185,0.01387,0.01774,0.02149,0,0,0,0,0,0,0.01188,0.01391,0.01779,0.02155,0,0,0,0,0,0,0.01174,0.01374,0.01758,0.0213,0,0,0,0,0,0,0.01187,0.01389,0.01776,0.02152,0,0,0,0,0,0,0.01178,0.01379,0.01764,0.02137,0,0,0,0,0,0,0.01182,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01187,0.01389,0.01777,0.02152,0,0,0,0,0,0,0.01189,0.01392,0.0178,0.02157,0,0,0,0,0,0,0.07558,0.12415,0.13212,0.29714,0,0,0,0,0,0,0.07207,0.12364,0.13048,0.29454,0,0,0,0,0,0,0.07516,0.13564,0.14078,0.33224,0,0,0,0,0,0,0.08707,0.14538,0.15223,0.359,0,0,0,0,0,0,0.06745,0.12764,0.13141,0.3214,0,0,0,0,0,0,0.07145,0.13407,0.13845,0.33545,0,0,0,0,0,0,0.07278,0.12738,0.13202,0.31696,0,0,0,0,0,0,0.08168,0.13359,0.14465,0.33859,0,0,0,0,0,0,0.05499,0.0971,0.1282,0.29226,0,0,0,0,0,0,0.00221,0.00354,0.00534,0.0138,0,0,0,0,0,0,0.00206,0.00329,0.00497,0.01242,0,0,0,0,0,0,0.00187,0.00296,0.00515,0.01323,0,0,0,0,0,0,0.00227,0.00365,0.0056,0.01458,0,0,0,0,0,0,0.00179,0.00281,0.00402,0.00867,0,0,0,0,0,0,0.00175,0.00275,0.00419,0.00947,0,0,0,0,0,0,0.00169,0.00265,0.00377,0.00813,0,0,0,0,0,0,0.00179,0.00283,0.0044,0.01033,0,0,0,0,0,0,0.0015,0.00234,0.00363,0.00792,0,0,0,0,0,0,0.03705,0.04012,0.0443,0.06349,0,0,0,0,0,0,0.03776,0.04053,0.04441,0.06122,0,0,0,0,0,0,0.04027,0.04272,0.04785,0.06617,0,0,0,0,0,0,0.03527,0.03845,0.043,0.06356,0,0,0,0,0,0,0.03941,0.04161,0.04424,0.05451,0,0,0,0,0,0,0.03627,0.03844,0.04166,0.05342,0,0,0,0,0,0,0.03616,0.0382,0.04062,0.05018,0,0,0,0,0,0,0.03801,0.04028,0.0438,0.05708,0,0,0,0,0,0,0.03691,0.03868,0.04151,0.05088,0,0,0,0,0,0,0.00858,0.0113,0.01499,0.03198,0,0,0,0,0,0,0.00838,0.01083,0.01426,0.02913,0,0,0,0,0,0,0.00835,0.01052,0.01506,0.03126,0,0,0,0,0,0,0.00851,0.01133,0.01535,0.03354,0,0,0,0,0,0,0.00803,0.00997,0.0123,0.02138,0,0,0,0,0,0,0.00758,0.0095,0.01235,0.02275,0,0,0,0,0,0,0.00745,0.00925,0.01139,0.01985,0,0,0,0,0,0,0.00792,0.00992,0.01303,0.02478,0,0,0,0,0,0,0.00721,0.00877,0.01128,0.01957,0,0,0,0,0,0,0.00563,0.00511,0.00172,0.00176,0,0,0,0,0,0,0.00574,0.00515,0.00174,0.00177,0,0,0,0,0,0,0.00595,0.00523,0.00176,0.0018,0,0,0,0,0,0,0.00994,0.00511,0.00172,0.00177,0,0,0,0,0,0,0.00594,0.00524,0.00176,0.00179,0,0,0,0,0,0,0.00586,0.00516,0.00174,0.00177,0,0,0,0,0,0,0.00804,0.00519,0.00174,0.00177,0,0,0,0,0,0,0.00911,0.00465,0.00172,0.00176,0,0,0,0,0,0,0.00328,0.00239,0.00158,0.00161,0,0,0,0,0,0,0.12838,0.17948,0.26246,0.60914,0,0,0,0,0,0,0.11209,0.16209,0.24166,0.57678,0,0,0,0,0,0,0.12359,0.18362,0.26896,0.64179,0,0,0,0,0,0,0.15259,0.21107,0.30682,0.70217,0,0,0,0,0,0,0.07948,0.13589,0.21992,0.55876,0,0,0,0,0,0,0.08788,0.14713,0.23308,0.58802,0,0,0,0,0,0,0.08123,0.13296,0.21602,0.54686,0,0,0,0,0,0,0.1056,0.15667,0.24738,0.60628,0,0,0,0,0,0,0.07355,0.12026,0.21111,0.52323,0,0,0,0,0 +Compact car,PH20G,2015,0,0,0.00916,0.00953,0.01026,0.0122,0,0,0,0,0,0,0.00939,0.00974,0.01039,0.0121,0,0,0,0,0,0,0.01006,0.01053,0.01122,0.01304,0,0,0,0,0,0,0.00871,0.00912,0.00991,0.01203,0,0,0,0,0,0,0.00987,0.0101,0.01056,0.01165,0,0,0,0,0,0,0.00911,0.0094,0.0099,0.01114,0,0,0,0,0,0,0.00906,0.00927,0.00968,0.01066,0,0,0,0,0,0,0.00951,0.00982,0.01037,0.01172,0,0,0,0,0,0,0.00926,0.0095,0.0099,0.01082,0,0,0,0,0,0,0.00842,0.00639,0.00646,0.00802,0,0,0,0,0,0,0.00771,0.00592,0.0061,0.00752,0,0,0,0,0,0,0.00805,0.0066,0.00682,0.0085,0,0,0,0,0,0,0.00906,0.00749,0.00771,0.00962,0,0,0,0,0,0,0.00582,0.00521,0.00576,0.00702,0,0,0,0,0,0,0.00631,0.00564,0.00617,0.00757,0,0,0,0,0,0,0.00583,0.00519,0.00578,0.00701,0,0,0,0,0,0,0.00659,0.00576,0.00614,0.00755,0,0,0,0,0,0,0.00484,0.00501,0.00546,0.00658,0,0,0,0,0,0,1.44608,2.53582,3.44899,4.41866,0,0,0,0,0,0,1.42113,2.51021,3.44592,4.3867,0,0,0,0,0,0,1.60905,2.80456,3.94083,5.06894,0,0,0,0,0,0,1.58393,3.01706,4.25105,5.45608,0,0,0,0,0,0,1.28449,2.61505,3.7407,4.69835,0,0,0,0,0,0,1.38434,2.71804,3.89471,4.9336,0,0,0,0,0,0,1.31567,2.68405,3.83338,4.81653,0,0,0,0,0,0,1.39937,2.70036,3.78777,4.79333,0,0,0,0,0,0,1.22789,2.38763,3.32131,4.15837,0,0,0,0,0,0,237.00493,238.76722,240.57284,248.35179,0,0,0,0,0,0,239.19553,240.80194,242.39695,249.87567,0,0,0,0,0,0,243.10581,244.78879,246.47832,254.19338,0,0,0,0,0,0,237.1748,238.96495,240.81852,248.68619,0,0,0,0,0,0,243.87698,244.91022,245.73835,252.0548,0,0,0,0,0,0,239.79384,241.04253,242.16734,248.88889,0,0,0,0,0,0,241.54929,242.53425,243.30808,249.48944,0,0,0,0,0,0,241.62742,242.90942,244.07131,250.8893,0,0,0,0,0,0,237.09998,238.19666,239.1075,245.41233,0,0,0,0,0,0,0.0031,0.00349,0.00402,0.00566,0,0,0,0,0,0,0.00311,0.00351,0.00404,0.00567,0,0,0,0,0,0,0.00314,0.00354,0.00406,0.00568,0,0,0,0,0,0,0.00312,0.00352,0.00406,0.00573,0,0,0,0,0,0,0.00315,0.00354,0.00407,0.0057,0,0,0,0,0,0,0.00314,0.00355,0.00409,0.00575,0,0,0,0,0,0,0.00311,0.00351,0.00405,0.00569,0,0,0,0,0,0,0.00314,0.00353,0.00407,0.0057,0,0,0,0,0,0,0.00309,0.00348,0.004,0.00561,0,0,0,0,0,0,0.01183,0.01371,0.0177,0.01802,0,0,0,0,0,0,0.01185,0.01374,0.01774,0.01806,0,0,0,0,0,0,0.01188,0.01377,0.01779,0.01811,0,0,0,0,0,0,0.01174,0.01361,0.01758,0.01789,0,0,0,0,0,0,0.01187,0.01375,0.01776,0.01808,0,0,0,0,0,0,0.01178,0.01366,0.01764,0.01796,0,0,0,0,0,0,0.01182,0.0137,0.0177,0.01801,0,0,0,0,0,0,0.01187,0.01375,0.01777,0.01808,0,0,0,0,0,0,0.01189,0.01378,0.0178,0.01812,0,0,0,0,0,0,0.05876,0.07715,0.11363,0.16294,0,0,0,0,0,0,0.05807,0.07567,0.11192,0.1609,0,0,0,0,0,0,0.05841,0.08181,0.12039,0.17601,0,0,0,0,0,0,0.06184,0.08872,0.13062,0.19151,0,0,0,0,0,0,0.05157,0.07406,0.11121,0.16478,0,0,0,0,0,0,0.05499,0.0788,0.11776,0.17401,0,0,0,0,0,0,0.05248,0.07443,0.11197,0.16493,0,0,0,0,0,0,0.05706,0.08297,0.12323,0.17994,0,0,0,0,0,0,0.04216,0.07291,0.10882,0.15783,0,0,0,0,0,0,0.00193,0.00305,0.00476,0.00916,0,0,0,0,0,0,0.00184,0.00292,0.00452,0.00852,0,0,0,0,0,0,0.00167,0.00297,0.00462,0.00882,0,0,0,0,0,0,0.00196,0.00313,0.0049,0.00955,0,0,0,0,0,0,0.00168,0.00254,0.00387,0.00677,0,0,0,0,0,0,0.00163,0.0026,0.00398,0.00711,0,0,0,0,0,0,0.00159,0.00241,0.00365,0.00634,0,0,0,0,0,0,0.00164,0.00268,0.00411,0.00748,0,0,0,0,0,0,0.00141,0.00233,0.00353,0.00612,0,0,0,0,0,0,0.03636,0.03885,0.04274,0.05304,0,0,0,0,0,0,0.03721,0.03959,0.04321,0.05247,0,0,0,0,0,0,0.03979,0.04271,0.04645,0.05624,0,0,0,0,0,0,0.03446,0.0371,0.04116,0.05212,0,0,0,0,0,0,0.03914,0.04097,0.04385,0.05031,0,0,0,0,0,0,0.03597,0.03808,0.04111,0.04818,0,0,0,0,0,0,0.03591,0.03763,0.04031,0.04625,0,0,0,0,0,0,0.03762,0.03986,0.04304,0.05071,0,0,0,0,0,0,0.0367,0.03864,0.04122,0.04696,0,0,0,0,0,0,0.00797,0.01018,0.01362,0.02273,0,0,0,0,0,0,0.0079,0.01,0.0132,0.02139,0,0,0,0,0,0,0.00793,0.01051,0.01382,0.02248,0,0,0,0,0,0,0.0078,0.01013,0.01373,0.02342,0,0,0,0,0,0,0.00778,0.0094,0.01195,0.01767,0,0,0,0,0,0,0.00732,0.00918,0.01186,0.01811,0,0,0,0,0,0,0.00722,0.00875,0.01112,0.01637,0,0,0,0,0,0,0.00757,0.00955,0.01236,0.01914,0,0,0,0,0,0,0.00702,0.00874,0.01102,0.0161,0,0,0,0,0,0,0.00454,0.00152,0.00153,0.00158,0,0,0,0,0,0,0.00458,0.00154,0.00155,0.00159,0,0,0,0,0,0,0.00465,0.00156,0.00157,0.00162,0,0,0,0,0,0,0.00454,0.00152,0.00154,0.00159,0,0,0,0,0,0,0.00467,0.00156,0.00157,0.00161,0,0,0,0,0,0,0.00459,0.00154,0.00154,0.00159,0,0,0,0,0,0,0.00462,0.00155,0.00155,0.00159,0,0,0,0,0,0,0.00413,0.00153,0.00153,0.00158,0,0,0,0,0,0,0.00212,0.0014,0.00141,0.00145,0,0,0,0,0,0,0.09369,0.13417,0.2166,0.41691,0,0,0,0,0,0,0.08588,0.1247,0.20571,0.40107,0,0,0,0,0,0,0.09134,0.13707,0.22618,0.43659,0,0,0,0,0,0,0.10209,0.1544,0.2517,0.47458,0,0,0,0,0,0,0.0671,0.11327,0.20299,0.4045,0,0,0,0,0,0,0.07235,0.12016,0.2121,0.41853,0,0,0,0,0,0,0.0666,0.11171,0.20056,0.39824,0,0,0,0,0,0,0.07913,0.1279,0.2201,0.43009,0,0,0,0,0,0,0.06237,0.10989,0.19561,0.38781,0,0,0,0 +Compact car,PH20G,2020,0,0,0,0.00907,0.00936,0.00982,0.01114,0,0,0,0,0,0,0.00932,0.00959,0.01,0.01118,0,0,0,0,0,0,0.01009,0.01037,0.0108,0.01204,0,0,0,0,0,0,0.00863,0.00894,0.00943,0.01086,0,0,0,0,0,0,0.00981,0.01,0.01028,0.01108,0,0,0,0,0,0,0.00907,0.00928,0.0096,0.01049,0,0,0,0,0,0,0.009,0.00917,0.00943,0.01014,0,0,0,0,0,0,0.00948,0.0097,0.01004,0.011,0,0,0,0,0,0,0.00925,0.00941,0.00966,0.01033,0,0,0,0,0,0,0.00641,0.00522,0.00485,0.00595,0,0,0,0,0,0,0.00573,0.00476,0.00449,0.00552,0,0,0,0,0,0,0.00604,0.00531,0.00502,0.00626,0,0,0,0,0,0,0.00693,0.00607,0.00572,0.00712,0,0,0,0,0,0,0.0039,0.00391,0.00391,0.00495,0,0,0,0,0,0,0.00438,0.00431,0.00426,0.0054,0,0,0,0,0,0,0.00386,0.00388,0.0039,0.00493,0,0,0,0,0,0,0.00485,0.00446,0.00432,0.00542,0,0,0,0,0,0,0.0039,0.00372,0.00368,0.00459,0,0,0,0,0,0,1.18405,1.74663,2.1804,2.91259,0,0,0,0,0,0,1.14159,1.70549,2.14147,2.86362,0,0,0,0,0,0,1.21389,1.90791,2.44569,3.32435,0,0,0,0,0,0,1.31503,2.07042,2.66655,3.60474,0,0,0,0,0,0,1.01752,1.70255,2.20655,2.99301,0,0,0,0,0,0,1.07518,1.7905,2.32861,3.17373,0,0,0,0,0,0,1.05039,1.75067,2.26792,3.07591,0,0,0,0,0,0,1.12163,1.7925,2.28876,3.09105,0,0,0,0,0,0,0.97213,1.5571,1.96912,2.64284,0,0,0,0,0,0,190.37807,191.70796,192.98054,203.57491,0,0,0,0,0,0,192.02122,193.2215,194.31139,204.68216,0,0,0,0,0,0,195.1988,196.46032,197.6268,208.26565,0,0,0,0,0,0,190.55845,191.91223,193.22672,203.90456,0,0,0,0,0,0,195.36829,196.09443,196.52291,205.96499,0,0,0,0,0,0,192.26377,193.16954,193.85688,203.58419,0,0,0,0,0,0,193.48721,194.17541,194.56018,203.84966,0,0,0,0,0,0,193.74261,194.67463,195.39123,205.23045,0,0,0,0,0,0,189.96641,190.7466,191.25223,200.56862,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00504,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00407,0.00503,0,0,0,0,0,0,0.00321,0.00357,0.00409,0.00505,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00497,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01385,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04199,0.06454,0.08638,0.11523,0,0,0,0,0,0,0.04084,0.06302,0.08461,0.11302,0,0,0,0,0,0,0.04122,0.06782,0.09054,0.12265,0,0,0,0,0,0,0.04436,0.07394,0.09879,0.13426,0,0,0,0,0,0,0.0345,0.06005,0.08143,0.11152,0,0,0,0,0,0,0.03752,0.06455,0.08722,0.11922,0,0,0,0,0,0,0.03522,0.06062,0.08238,0.11228,0,0,0,0,0,0,0.04094,0.06823,0.09178,0.12426,0,0,0,0,0,0,0.03601,0.05949,0.08036,0.10813,0,0,0,0,0,0,0.00172,0.0026,0.00366,0.00665,0,0,0,0,0,0,0.00166,0.0025,0.00348,0.00626,0,0,0,0,0,0,0.00168,0.00254,0.00356,0.00643,0,0,0,0,0,0,0.00176,0.00267,0.00376,0.00689,0,0,0,0,0,0,0.00147,0.00219,0.003,0.00517,0,0,0,0,0,0,0.0015,0.00224,0.00308,0.00538,0,0,0,0,0,0,0.0014,0.00207,0.00283,0.00484,0,0,0,0,0,0,0.00153,0.00229,0.00317,0.00559,0,0,0,0,0,0,0.00135,0.002,0.00273,0.00468,0,0,0,0,0,0,0.03587,0.03785,0.04027,0.04731,0,0,0,0,0,0,0.0368,0.03866,0.04091,0.04737,0,0,0,0,0,0,0.03983,0.04175,0.04408,0.0508,0,0,0,0,0,0,0.034,0.03605,0.03858,0.046,0,0,0,0,0,0,0.0387,0.04022,0.04199,0.04684,0,0,0,0,0,0,0.0357,0.03729,0.03917,0.04436,0,0,0,0,0,0,0.03549,0.03692,0.03857,0.04303,0,0,0,0,0,0,0.03738,0.03904,0.041,0.04652,0,0,0,0,0,0,0.03658,0.03796,0.03955,0.04386,0,0,0,0,0,0,0.00754,0.0093,0.01144,0.01766,0,0,0,0,0,0,0.00753,0.00917,0.01117,0.01688,0,0,0,0,0,0,0.00797,0.00966,0.01172,0.01767,0,0,0,0,0,0,0.00739,0.0092,0.01144,0.01801,0,0,0,0,0,0,0.00739,0.00874,0.01031,0.0146,0,0,0,0,0,0,0.00708,0.00848,0.01014,0.01474,0,0,0,0,0,0,0.00686,0.00812,0.00958,0.01353,0,0,0,0,0,0,0.00736,0.00883,0.01056,0.01544,0,0,0,0,0,0,0.00692,0.00814,0.00954,0.01335,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00122,0.00123,0.00124,0.00131,0,0,0,0,0,0,0.00125,0.00125,0.00126,0.00133,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00125,0.00125,0.00125,0.00131,0,0,0,0,0,0,0.00123,0.00123,0.00124,0.0013,0,0,0,0,0,0,0.00123,0.00124,0.00124,0.0013,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00129,0,0,0,0,0,0,0.00112,0.00112,0.00113,0.00118,0,0,0,0,0,0,0.08051,0.11016,0.16393,0.32526,0,0,0,0,0,0,0.07283,0.1006,0.15252,0.31126,0,0,0,0,0,0,0.07731,0.11151,0.16932,0.33979,0,0,0,0,0,0,0.08762,0.12652,0.18967,0.36814,0,0,0,0,0,0,0.05421,0.08585,0.14153,0.3106,0,0,0,0,0,0,0.05927,0.09283,0.15034,0.32209,0,0,0,0,0,0,0.05333,0.08363,0.13781,0.30328,0,0,0,0,0,0,0.06632,0.09984,0.15788,0.33104,0,0,0,0,0,0,0.05327,0.08236,0.13497,0.2966,0,0,0 +Compact car,PH20G,2025,0,0,0,0,0.00888,0.00906,0.00936,0.01026,0,0,0,0,0,0,0.00914,0.0093,0.00958,0.01038,0,0,0,0,0,0,0.00991,0.01008,0.01036,0.01121,0,0,0,0,0,0,0.00842,0.00861,0.00893,0.0099,0,0,0,0,0,0,0.00967,0.00979,0.00998,0.01053,0,0,0,0,0,0,0.00893,0.00905,0.00927,0.00988,0,0,0,0,0,0,0.00887,0.00898,0.00915,0.00965,0,0,0,0,0,0,0.00933,0.00946,0.00969,0.01035,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00987,0,0,0,0,0,0,0.00547,0.00414,0.00371,0.00456,0,0,0,0,0,0,0.00476,0.00367,0.00334,0.00413,0,0,0,0,0,0,0.0051,0.00409,0.00373,0.00468,0,0,0,0,0,0,0.00594,0.00475,0.00431,0.00539,0,0,0,0,0,0,0.00287,0.00263,0.00257,0.00332,0,0,0,0,0,0,0.00336,0.003,0.00288,0.00372,0,0,0,0,0,0,0.00281,0.00258,0.00254,0.00329,0,0,0,0,0,0,0.00384,0.00322,0.00302,0.00384,0,0,0,0,0,0,0.00283,0.00248,0.0024,0.00307,0,0,0,0,0,0,0.89603,1.27549,1.60414,2.12739,0,0,0,0,0,0,0.84251,1.22002,1.54614,2.05479,0,0,0,0,0,0,0.90437,1.36873,1.76688,2.38196,0,0,0,0,0,0,0.99171,1.50234,1.94547,2.60839,0,0,0,0,0,0,0.68841,1.13711,1.49828,2.02486,0,0,0,0,0,0,0.74572,1.21794,1.60593,2.17761,0,0,0,0,0,0,0.71043,1.17036,1.54143,2.08482,0,0,0,0,0,0,0.79305,1.23692,1.59878,2.14703,0,0,0,0,0,0,0.65972,1.04249,1.33946,1.79297,0,0,0,0,0,0,153.85338,154.99936,156.33305,165.87204,0,0,0,0,0,0,155.08883,156.12659,157.30204,166.63178,0,0,0,0,0,0,157.68617,158.77612,160.02268,169.59695,0,0,0,0,0,0,154.03544,155.20309,156.57666,166.19824,0,0,0,0,0,0,157.46771,158.10835,158.70642,167.17235,0,0,0,0,0,0,155.09742,155.88851,156.71138,165.44737,0,0,0,0,0,0,155.93892,156.54765,157.1065,165.4361,0,0,0,0,0,0,156.29694,157.11018,157.95958,166.7952,0,0,0,0,0,0,153.13283,153.81614,154.47195,162.82148,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00492,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00494,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00487,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03226,0.04679,0.06218,0.08446,0,0,0,0,0,0,0.03097,0.04517,0.06028,0.08211,0,0,0,0,0,0,0.0312,0.0481,0.0639,0.08842,0,0,0,0,0,0,0.03392,0.0529,0.07031,0.09739,0,0,0,0,0,0,0.02461,0.0406,0.05511,0.07754,0,0,0,0,0,0,0.02745,0.04452,0.06008,0.08413,0,0,0,0,0,0,0.02523,0.0412,0.05603,0.07833,0,0,0,0,0,0,0.03008,0.04736,0.06357,0.08817,0,0,0,0,0,0,0.02586,0.04066,0.05495,0.07591,0,0,0,0,0,0,0.00113,0.00167,0.00237,0.00458,0,0,0,0,0,0,0.00109,0.0016,0.00226,0.00432,0,0,0,0,0,0,0.0011,0.00163,0.00231,0.00443,0,0,0,0,0,0,0.00115,0.00171,0.00244,0.00472,0,0,0,0,0,0,0.00097,0.00141,0.00195,0.00359,0,0,0,0,0,0,0.00098,0.00144,0.002,0.00373,0,0,0,0,0,0,0.00092,0.00133,0.00184,0.00336,0,0,0,0,0,0,0.00101,0.00147,0.00206,0.00387,0,0,0,0,0,0,0.00089,0.00129,0.00178,0.00327,0,0,0,0,0,0,0.03458,0.0358,0.0374,0.04256,0,0,0,0,0,0,0.03557,0.03671,0.03821,0.04297,0,0,0,0,0,0,0.03858,0.03975,0.0413,0.04624,0,0,0,0,0,0,0.03266,0.03392,0.0356,0.04098,0,0,0,0,0,0,0.03763,0.03857,0.03976,0.04341,0,0,0,0,0,0,0.03461,0.03559,0.03684,0.04073,0,0,0,0,0,0,0.03449,0.03537,0.03647,0.03983,0,0,0,0,0,0,0.03626,0.03728,0.03859,0.0427,0,0,0,0,0,0,0.03561,0.03647,0.03753,0.04081,0,0,0,0,0,0,0.0064,0.00748,0.0089,0.01346,0,0,0,0,0,0,0.00644,0.00745,0.00877,0.01298,0,0,0,0,0,0,0.00686,0.0079,0.00926,0.01363,0,0,0,0,0,0,0.00621,0.00732,0.00881,0.01357,0,0,0,0,0,0,0.00645,0.00728,0.00833,0.01156,0,0,0,0,0,0,0.00611,0.00698,0.00808,0.01152,0,0,0,0,0,0,0.00597,0.00675,0.00772,0.01069,0,0,0,0,0,0,0.00637,0.00727,0.00843,0.01207,0,0,0,0,0,0,0.00606,0.00682,0.00776,0.01066,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00101,0.00101,0.00102,0.00108,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.001,0.00101,0.00101,0.00107,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00098,0.00099,0.00099,0.00105,0,0,0,0,0,0,0.0009,0.00091,0.00091,0.00096,0,0,0,0,0,0,0.07026,0.08984,0.13054,0.2661,0,0,0,0,0,0,0.06225,0.07985,0.11848,0.25118,0,0,0,0,0,0,0.06692,0.08949,0.13311,0.27588,0,0,0,0,0,0,0.07675,0.10277,0.15049,0.29932,0,0,0,0,0,0,0.04227,0.06139,0.10159,0.24115,0,0,0,0,0,0,0.04759,0.0684,0.11031,0.25241,0,0,0,0,0,0,0.04106,0.05863,0.097,0.23245,0,0,0,0,0,0,0.05422,0.07515,0.11765,0.26067,0,0,0,0,0,0,0.04087,0.05806,0.09577,0.22949,0,0 +Compact car,PH20G,2030,0,0,0,0,0,0.00888,0.00905,0.00935,0.01004,0,0,0,0,0,0,0.00914,0.0093,0.00957,0.01019,0,0,0,0,0,0,0.00991,0.01007,0.01035,0.011,0,0,0,0,0,0,0.00842,0.0086,0.00892,0.00966,0,0,0,0,0,0,0.00967,0.00979,0.00998,0.0104,0,0,0,0,0,0,0.00893,0.00905,0.00926,0.00973,0,0,0,0,0,0,0.00887,0.00898,0.00915,0.00953,0,0,0,0,0,0,0.00933,0.00946,0.00968,0.01019,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00975,0,0,0,0,0,0,0.00514,0.00378,0.00338,0.00403,0,0,0,0,0,0,0.00443,0.00331,0.00301,0.00359,0,0,0,0,0,0,0.00477,0.0037,0.00337,0.00405,0,0,0,0,0,0,0.00559,0.00432,0.00391,0.00469,0,0,0,0,0,0,0.00253,0.00222,0.00218,0.00267,0,0,0,0,0,0,0.00301,0.00258,0.00249,0.00304,0,0,0,0,0,0,0.00246,0.00217,0.00215,0.00263,0,0,0,0,0,0,0.00349,0.00282,0.00265,0.00321,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00247,0,0,0,0,0,0,0.82051,1.15892,1.47192,1.85795,0,0,0,0,0,0,0.76437,1.10013,1.40811,1.77763,0,0,0,0,0,0,0.82386,1.23555,1.6104,2.05188,0,0,0,0,0,0,0.90749,1.36142,1.77937,2.25759,0,0,0,0,0,0,0.60313,0.99797,1.32924,1.69022,0,0,0,0,0,0,0.66019,1.07663,1.43434,1.83029,0,0,0,0,0,0,0.62218,1.02731,1.36854,1.74015,0,0,0,0,0,0,0.70734,1.09987,1.43529,1.82169,0,0,0,0,0,0,0.57811,0.9157,1.18876,1.50316,0,0,0,0,0,0,141.66316,143.09537,145.31317,151.60093,0,0,0,0,0,0,142.76624,144.1009,146.17363,152.23801,0,0,0,0,0,0,145.16887,146.55809,148.71535,154.9665,0,0,0,0,0,0,141.84491,143.29779,145.55671,151.92303,0,0,0,0,0,0,144.83407,145.80524,147.33573,152.5291,0,0,0,0,0,0,142.70384,143.80938,145.54276,151.03931,0,0,0,0,0,0,143.42337,144.36161,145.84537,150.93759,0,0,0,0,0,0,143.80989,144.93865,146.70433,152.27351,0,0,0,0,0,0,140.85363,141.85361,143.41144,148.56986,0,0,0,0,0,0,0.00319,0.00352,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00321,0.00355,0.00407,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02858,0.04064,0.05471,0.07247,0,0,0,0,0,0,0.02723,0.03898,0.05276,0.07003,0,0,0,0,0,0,0.02737,0.04125,0.05566,0.07474,0,0,0,0,0,0,0.0299,0.04557,0.06146,0.08261,0,0,0,0,0,0,0.02088,0.03388,0.04702,0.06392,0,0,0,0,0,0,0.02362,0.03758,0.05171,0.07003,0,0,0,0,0,0,0.02145,0.03448,0.04787,0.06481,0,0,0,0,0,0,0.02596,0.04012,0.05488,0.07373,0,0,0,0,0,0,0.02203,0.03417,0.0472,0.06313,0,0,0,0,0,0,0.00113,0.00167,0.00236,0.00393,0,0,0,0,0,0,0.00108,0.0016,0.00225,0.00372,0,0,0,0,0,0,0.0011,0.00163,0.00229,0.00381,0,0,0,0,0,0,0.00115,0.00171,0.00241,0.00406,0,0,0,0,0,0,0.00096,0.0014,0.00194,0.0031,0,0,0,0,0,0,0.00098,0.00143,0.00199,0.00322,0,0,0,0,0,0,0.00091,0.00133,0.00183,0.00291,0,0,0,0,0,0,0.001,0.00147,0.00205,0.00334,0,0,0,0,0,0,0.00089,0.00129,0.00178,0.00282,0,0,0,0,0,0,0.03457,0.03579,0.03737,0.04107,0,0,0,0,0,0,0.03556,0.0367,0.03817,0.04159,0,0,0,0,0,0,0.03857,0.03974,0.04126,0.04481,0,0,0,0,0,0,0.03266,0.03391,0.03555,0.03944,0,0,0,0,0,0,0.03763,0.03857,0.03974,0.04233,0,0,0,0,0,0,0.03461,0.03559,0.03682,0.03959,0,0,0,0,0,0,0.03448,0.03536,0.03644,0.03884,0,0,0,0,0,0,0.03626,0.03727,0.03857,0.0415,0,0,0,0,0,0,0.03561,0.03646,0.03752,0.03983,0,0,0,0,0,0,0.00639,0.00747,0.00886,0.01214,0,0,0,0,0,0,0.00643,0.00744,0.00874,0.01176,0,0,0,0,0,0,0.00685,0.00789,0.00923,0.01237,0,0,0,0,0,0,0.0062,0.00731,0.00876,0.0122,0,0,0,0,0,0,0.00645,0.00728,0.00831,0.01061,0,0,0,0,0,0,0.00611,0.00697,0.00806,0.01052,0,0,0,0,0,0,0.00596,0.00674,0.0077,0.00982,0,0,0,0,0,0,0.00636,0.00726,0.00841,0.011,0,0,0,0,0,0,0.00606,0.00681,0.00775,0.00979,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00097,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00099,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00096,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00088,0,0,0,0,0,0,0.06718,0.08437,0.12311,0.24183,0,0,0,0,0,0,0.05915,0.07438,0.11097,0.2265,0,0,0,0,0,0,0.06385,0.08353,0.12494,0.24914,0,0,0,0,0,0,0.07348,0.09626,0.14147,0.27091,0,0,0,0,0,0,0.03899,0.05518,0.09274,0.21253,0,0,0,0,0,0,0.04432,0.06208,0.10134,0.2235,0,0,0,0,0,0,0.03772,0.05234,0.08801,0.20352,0,0,0,0,0,0,0.05082,0.06885,0.10868,0.23219,0,0,0,0,0,0,0.03742,0.05189,0.08714,0.20198,0 +Compact car,PH20G,2035,0,0,0,0,0,0,0.00888,0.00905,0.00935,0.01001,0,0,0,0,0,0,0.00914,0.0093,0.00957,0.01017,0,0,0,0,0,0,0.00991,0.01007,0.01036,0.01098,0,0,0,0,0,0,0.00841,0.0086,0.00893,0.00964,0,0,0,0,0,0,0.00967,0.00978,0.00998,0.01038,0,0,0,0,0,0,0.00893,0.00905,0.00926,0.00972,0,0,0,0,0,0,0.00887,0.00897,0.00915,0.00951,0,0,0,0,0,0,0.00933,0.00946,0.00968,0.01017,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00974,0,0,0,0,0,0,0.00512,0.00379,0.00338,0.00394,0,0,0,0,0,0,0.00441,0.00332,0.00301,0.0035,0,0,0,0,0,0,0.00475,0.00371,0.00336,0.00394,0,0,0,0,0,0,0.00557,0.00433,0.00391,0.00457,0,0,0,0,0,0,0.00252,0.00223,0.00218,0.00255,0,0,0,0,0,0,0.003,0.00258,0.00249,0.00292,0,0,0,0,0,0,0.00245,0.00217,0.00214,0.00251,0,0,0,0,0,0,0.00348,0.00282,0.00265,0.0031,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00237,0,0,0,0,0,0,0.81997,1.16371,1.46885,1.81228,0,0,0,0,0,0,0.76398,1.10384,1.40568,1.73119,0,0,0,0,0,0,0.82354,1.24028,1.60736,1.99531,0,0,0,0,0,0,0.90719,1.36698,1.77584,2.19683,0,0,0,0,0,0,0.60311,0.99823,1.32884,1.63547,0,0,0,0,0,0,0.66012,1.07779,1.43338,1.77268,0,0,0,0,0,0,0.62226,1.02826,1.3677,1.68311,0,0,0,0,0,0,0.70703,1.10123,1.43421,1.76824,0,0,0,0,0,0,0.57791,0.91588,1.18842,1.45646,0,0,0,0,0,0,141.62199,143.09026,145.30913,149.39391,0,0,0,0,0,0,142.72754,144.09608,146.16961,150.01156,0,0,0,0,0,0,145.12847,146.55305,148.71143,152.70363,0,0,0,0,0,0,141.8025,143.29263,145.55264,149.71546,0,0,0,0,0,0,144.80428,145.80154,147.33266,150.26216,0,0,0,0,0,0,142.67062,143.80519,145.53926,148.80953,0,0,0,0,0,0,143.39415,144.35781,145.8424,148.69279,0,0,0,0,0,0,143.77631,144.9344,146.70088,150.02623,0,0,0,0,0,0,140.82432,141.85012,143.40861,146.3637,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00354,0.00406,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.00319,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.0285,0.04053,0.05477,0.07061,0,0,0,0,0,0,0.02716,0.03888,0.05281,0.06814,0,0,0,0,0,0,0.0273,0.04113,0.05572,0.07254,0,0,0,0,0,0,0.02982,0.04541,0.06154,0.08024,0,0,0,0,0,0,0.02083,0.0338,0.04706,0.06168,0,0,0,0,0,0,0.02357,0.03749,0.05176,0.06773,0,0,0,0,0,0,0.02141,0.03437,0.04793,0.06262,0,0,0,0,0,0,0.0259,0.04005,0.05492,0.07138,0,0,0,0,0,0,0.02199,0.03415,0.0472,0.06103,0,0,0,0,0,0,0.00112,0.00166,0.00236,0.00379,0,0,0,0,0,0,0.00108,0.00159,0.00225,0.00358,0,0,0,0,0,0,0.0011,0.00162,0.0023,0.00367,0,0,0,0,0,0,0.00115,0.00169,0.00242,0.00392,0,0,0,0,0,0,0.00096,0.0014,0.00194,0.00299,0,0,0,0,0,0,0.00098,0.00143,0.002,0.0031,0,0,0,0,0,0,0.00091,0.00132,0.00183,0.00281,0,0,0,0,0,0,0.001,0.00147,0.00206,0.00321,0,0,0,0,0,0,0.00089,0.00129,0.00178,0.00271,0,0,0,0,0,0,0.03457,0.03576,0.03738,0.04073,0,0,0,0,0,0,0.03555,0.03668,0.03819,0.04128,0,0,0,0,0,0,0.03856,0.03972,0.04128,0.04449,0,0,0,0,0,0,0.03265,0.03388,0.03557,0.03911,0,0,0,0,0,0,0.03763,0.03855,0.03975,0.04209,0,0,0,0,0,0,0.0346,0.03557,0.03683,0.03934,0,0,0,0,0,0,0.03448,0.03534,0.03645,0.03862,0,0,0,0,0,0,0.03625,0.03726,0.03858,0.04122,0,0,0,0,0,0,0.03561,0.03646,0.03753,0.0396,0,0,0,0,0,0,0.00639,0.00745,0.00888,0.01184,0,0,0,0,0,0,0.00643,0.00742,0.00876,0.01149,0,0,0,0,0,0,0.00684,0.00787,0.00924,0.01208,0,0,0,0,0,0,0.00619,0.00728,0.00878,0.01191,0,0,0,0,0,0,0.00645,0.00726,0.00832,0.01039,0,0,0,0,0,0,0.0061,0.00696,0.00807,0.01029,0,0,0,0,0,0,0.00596,0.00673,0.00771,0.00962,0,0,0,0,0,0,0.00636,0.00725,0.00842,0.01076,0,0,0,0,0,0,0.00606,0.00681,0.00775,0.00959,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00097,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00096,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00094,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00086,0,0,0,0,0,0,0.06698,0.08445,0.12303,0.23891,0,0,0,0,0,0,0.05897,0.07444,0.11091,0.22349,0,0,0,0,0,0,0.06367,0.08363,0.12485,0.24574,0,0,0,0,0,0,0.07326,0.09631,0.14142,0.26729,0,0,0,0,0,0,0.03888,0.05512,0.09277,0.20889,0,0,0,0,0,0,0.0442,0.06206,0.10134,0.21978,0,0,0,0,0,0,0.03761,0.05227,0.08804,0.19978,0,0,0,0,0,0,0.05065,0.06869,0.10875,0.22872,0,0,0,0,0,0,0.03732,0.05188,0.08712,0.19849 +Compact car,PH20G,2040,0,0,0,0,0,0,0,0.00887,0.00905,0.00936,0,0,0,0,0,0,0,0.00914,0.0093,0.00958,0,0,0,0,0,0,0,0.0099,0.01007,0.01036,0,0,0,0,0,0,0,0.00841,0.0086,0.00893,0,0,0,0,0,0,0,0.00967,0.00979,0.00998,0,0,0,0,0,0,0,0.00892,0.00905,0.00927,0,0,0,0,0,0,0,0.00887,0.00898,0.00915,0,0,0,0,0,0,0,0.00932,0.00946,0.00969,0,0,0,0,0,0,0,0.00913,0.00923,0.0094,0,0,0,0,0,0,0,0.00512,0.00378,0.00338,0,0,0,0,0,0,0,0.00442,0.00331,0.003,0,0,0,0,0,0,0,0.00477,0.0037,0.00336,0,0,0,0,0,0,0,0.00559,0.00432,0.0039,0,0,0,0,0,0,0,0.00252,0.00222,0.00218,0,0,0,0,0,0,0,0.00301,0.00258,0.00248,0,0,0,0,0,0,0,0.00245,0.00217,0.00214,0,0,0,0,0,0,0,0.00348,0.00282,0.00264,0,0,0,0,0,0,0,0.00247,0.00209,0.00203,0,0,0,0,0,0,0,0.82371,1.16098,1.46545,0,0,0,0,0,0,0,0.76683,1.10167,1.40302,0,0,0,0,0,0,0,0.8274,1.23758,1.604,0,0,0,0,0,0,0,0.91194,1.36384,1.77194,0,0,0,0,0,0,0,0.6033,0.9978,1.32851,0,0,0,0,0,0,0,0.66106,1.07689,1.43243,0,0,0,0,0,0,0,0.62291,1.02751,1.36685,0,0,0,0,0,0,0,0.70801,1.1002,1.43312,0,0,0,0,0,0,0,0.57779,0.91548,1.18816,0,0,0,0,0,0,0,141.61556,143.08312,145.3085,0,0,0,0,0,0,0,142.72141,144.08928,146.16901,0,0,0,0,0,0,0,145.12216,146.54611,148.71075,0,0,0,0,0,0,0,141.79599,143.28527,145.55192,0,0,0,0,0,0,0,144.79978,145.79653,147.33228,0,0,0,0,0,0,0,142.66537,143.79953,145.53872,0,0,0,0,0,0,0,143.38978,144.35284,145.84188,0,0,0,0,0,0,0,143.77095,144.92865,146.70037,0,0,0,0,0,0,0,140.81982,141.84513,143.40822,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00321,0.00355,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01383,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01381,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01381,0.01777,0,0,0,0,0,0,0,0.01189,0.01384,0.0178,0,0,0,0,0,0,0,0.02841,0.04056,0.05484,0,0,0,0,0,0,0,0.02707,0.03891,0.05288,0,0,0,0,0,0,0,0.0272,0.04116,0.0558,0,0,0,0,0,0,0,0.02969,0.04546,0.06165,0,0,0,0,0,0,0,0.02077,0.03382,0.04712,0,0,0,0,0,0,0,0.02349,0.03751,0.05183,0,0,0,0,0,0,0,0.02133,0.0344,0.04801,0,0,0,0,0,0,0,0.02583,0.04006,0.05497,0,0,0,0,0,0,0,0.02197,0.03414,0.04721,0,0,0,0,0,0,0,0.00112,0.00166,0.00237,0,0,0,0,0,0,0,0.00107,0.00159,0.00226,0,0,0,0,0,0,0,0.00109,0.00162,0.0023,0,0,0,0,0,0,0,0.00114,0.0017,0.00243,0,0,0,0,0,0,0,0.00096,0.0014,0.00195,0,0,0,0,0,0,0,0.00097,0.00143,0.002,0,0,0,0,0,0,0,0.00091,0.00132,0.00184,0,0,0,0,0,0,0,0.001,0.00147,0.00206,0,0,0,0,0,0,0,0.00088,0.00129,0.00178,0,0,0,0,0,0,0,0.03455,0.03577,0.0374,0,0,0,0,0,0,0,0.03554,0.03669,0.0382,0,0,0,0,0,0,0,0.03855,0.03973,0.04129,0,0,0,0,0,0,0,0.03263,0.03389,0.0356,0,0,0,0,0,0,0,0.03762,0.03856,0.03976,0,0,0,0,0,0,0,0.03459,0.03558,0.03684,0,0,0,0,0,0,0,0.03447,0.03535,0.03647,0,0,0,0,0,0,0,0.03624,0.03727,0.03859,0,0,0,0,0,0,0,0.03561,0.03646,0.03753,0,0,0,0,0,0,0,0.00637,0.00745,0.00889,0,0,0,0,0,0,0,0.00641,0.00743,0.00877,0,0,0,0,0,0,0,0.00683,0.00787,0.00926,0,0,0,0,0,0,0,0.00617,0.00729,0.0088,0,0,0,0,0,0,0,0.00644,0.00727,0.00833,0,0,0,0,0,0,0,0.00609,0.00696,0.00808,0,0,0,0,0,0,0,0.00595,0.00673,0.00772,0,0,0,0,0,0,0,0.00635,0.00726,0.00843,0,0,0,0,0,0,0,0.00606,0.00681,0.00776,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00093,0.00093,0.00095,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00092,0.00093,0.00094,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.0009,0.00091,0.00092,0,0,0,0,0,0,0,0.00083,0.00084,0.00085,0,0,0,0,0,0,0,0.06703,0.08436,0.12297,0,0,0,0,0,0,0,0.059,0.07436,0.11086,0,0,0,0,0,0,0,0.06375,0.08353,0.12478,0,0,0,0,0,0,0,0.07331,0.09622,0.1414,0,0,0,0,0,0,0,0.03885,0.05512,0.09283,0,0,0,0,0,0,0,0.04419,0.06203,0.10138,0,0,0,0,0,0,0,0.03757,0.05227,0.08811,0,0,0,0,0,0,0,0.05054,0.06873,0.10889,0,0,0,0,0,0,0,0.03729,0.05186,0.08714 +Compact car,PH20G,2045,0,0,0,0,0,0,0,0,0.00887,0.00905,0,0,0,0,0,0,0,0,0.00914,0.0093,0,0,0,0,0,0,0,0,0.0099,0.01007,0,0,0,0,0,0,0,0,0.00841,0.0086,0,0,0,0,0,0,0,0,0.00967,0.00979,0,0,0,0,0,0,0,0,0.00892,0.00905,0,0,0,0,0,0,0,0,0.00887,0.00898,0,0,0,0,0,0,0,0,0.00932,0.00946,0,0,0,0,0,0,0,0,0.00913,0.00923,0,0,0,0,0,0,0,0,0.00512,0.00378,0,0,0,0,0,0,0,0,0.00441,0.00331,0,0,0,0,0,0,0,0,0.00476,0.00369,0,0,0,0,0,0,0,0,0.00558,0.00431,0,0,0,0,0,0,0,0,0.00252,0.00222,0,0,0,0,0,0,0,0,0.00301,0.00258,0,0,0,0,0,0,0,0,0.00245,0.00217,0,0,0,0,0,0,0,0,0.00348,0.00282,0,0,0,0,0,0,0,0,0.00246,0.00209,0,0,0,0,0,0,0,0,0.82151,1.15824,0,0,0,0,0,0,0,0,0.76508,1.09953,0,0,0,0,0,0,0,0,0.82513,1.23486,0,0,0,0,0,0,0,0,0.90922,1.36065,0,0,0,0,0,0,0,0,0.60291,0.99755,0,0,0,0,0,0,0,0,0.66028,1.07614,0,0,0,0,0,0,0,0,0.62231,1.02688,0,0,0,0,0,0,0,0,0.70718,1.09934,0,0,0,0,0,0,0,0,0.57755,0.91528,0,0,0,0,0,0,0,0,141.60984,143.08299,0,0,0,0,0,0,0,0,142.71607,144.08932,0,0,0,0,0,0,0,0,145.11673,146.54611,0,0,0,0,0,0,0,0,141.79011,143.2852,0,0,0,0,0,0,0,0,144.79569,145.79646,0,0,0,0,0,0,0,0,142.66092,143.79947,0,0,0,0,0,0,0,0,143.38586,144.35281,0,0,0,0,0,0,0,0,143.76642,144.92854,0,0,0,0,0,0,0,0,140.81583,141.84503,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02843,0.04061,0,0,0,0,0,0,0,0,0.0271,0.03896,0,0,0,0,0,0,0,0,0.02723,0.04123,0,0,0,0,0,0,0,0,0.02973,0.04555,0,0,0,0,0,0,0,0,0.02079,0.03386,0,0,0,0,0,0,0,0,0.02351,0.03756,0,0,0,0,0,0,0,0,0.02135,0.03446,0,0,0,0,0,0,0,0,0.02585,0.0401,0,0,0,0,0,0,0,0,0.02197,0.03415,0,0,0,0,0,0,0,0,0.00112,0.00167,0,0,0,0,0,0,0,0,0.00108,0.0016,0,0,0,0,0,0,0,0,0.00109,0.00162,0,0,0,0,0,0,0,0,0.00114,0.0017,0,0,0,0,0,0,0,0,0.00096,0.0014,0,0,0,0,0,0,0,0,0.00098,0.00143,0,0,0,0,0,0,0,0,0.00091,0.00133,0,0,0,0,0,0,0,0,0.001,0.00147,0,0,0,0,0,0,0,0,0.00088,0.00129,0,0,0,0,0,0,0,0,0.03456,0.03578,0,0,0,0,0,0,0,0,0.03554,0.0367,0,0,0,0,0,0,0,0,0.03855,0.03974,0,0,0,0,0,0,0,0,0.03263,0.03391,0,0,0,0,0,0,0,0,0.03762,0.03857,0,0,0,0,0,0,0,0,0.0346,0.03558,0,0,0,0,0,0,0,0,0.03447,0.03536,0,0,0,0,0,0,0,0,0.03625,0.03727,0,0,0,0,0,0,0,0,0.03561,0.03646,0,0,0,0,0,0,0,0,0.00638,0.00746,0,0,0,0,0,0,0,0,0.00642,0.00744,0,0,0,0,0,0,0,0,0.00684,0.00789,0,0,0,0,0,0,0,0,0.00618,0.00731,0,0,0,0,0,0,0,0,0.00644,0.00728,0,0,0,0,0,0,0,0,0.0061,0.00697,0,0,0,0,0,0,0,0,0.00595,0.00674,0,0,0,0,0,0,0,0,0.00635,0.00726,0,0,0,0,0,0,0,0,0.00606,0.00681,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00093,0.00093,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00092,0.00093,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00083,0.00084,0,0,0,0,0,0,0,0,0.06696,0.0843,0,0,0,0,0,0,0,0,0.05895,0.07432,0,0,0,0,0,0,0,0,0.06367,0.08346,0,0,0,0,0,0,0,0,0.07323,0.09618,0,0,0,0,0,0,0,0,0.03884,0.05514,0,0,0,0,0,0,0,0,0.04416,0.06204,0,0,0,0,0,0,0,0,0.03757,0.0523,0,0,0,0,0,0,0,0,0.05055,0.0688,0,0,0,0,0,0,0,0,0.03728,0.05186 +Compact car,PH20G,2050,0,0,0,0,0,0,0,0,0,0.00888,0,0,0,0,0,0,0,0,0,0.00914,0,0,0,0,0,0,0,0,0,0.00991,0,0,0,0,0,0,0,0,0,0.00841,0,0,0,0,0,0,0,0,0,0.00967,0,0,0,0,0,0,0,0,0,0.00893,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.00932,0,0,0,0,0,0,0,0,0,0.00913,0,0,0,0,0,0,0,0,0,0.00511,0,0,0,0,0,0,0,0,0,0.00441,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00252,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00245,0,0,0,0,0,0,0,0,0,0.00348,0,0,0,0,0,0,0,0,0,0.00246,0,0,0,0,0,0,0,0,0,0.81919,0,0,0,0,0,0,0,0,0,0.76326,0,0,0,0,0,0,0,0,0,0.82273,0,0,0,0,0,0,0,0,0,0.9063,0,0,0,0,0,0,0,0,0,0.60256,0,0,0,0,0,0,0,0,0,0.6595,0,0,0,0,0,0,0,0,0,0.6217,0,0,0,0,0,0,0,0,0,0.70637,0,0,0,0,0,0,0,0,0,0.57738,0,0,0,0,0,0,0,0,0,141.60988,0,0,0,0,0,0,0,0,0,142.7161,0,0,0,0,0,0,0,0,0,145.11672,0,0,0,0,0,0,0,0,0,141.79007,0,0,0,0,0,0,0,0,0,144.79568,0,0,0,0,0,0,0,0,0,142.66083,0,0,0,0,0,0,0,0,0,143.38576,0,0,0,0,0,0,0,0,0,143.76635,0,0,0,0,0,0,0,0,0,140.81579,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.02714,0,0,0,0,0,0,0,0,0,0.02727,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02355,0,0,0,0,0,0,0,0,0,0.02139,0,0,0,0,0,0,0,0,0,0.02587,0,0,0,0,0,0,0,0,0,0.02197,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.00108,0,0,0,0,0,0,0,0,0,0.0011,0,0,0,0,0,0,0,0,0,0.00114,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.001,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.03456,0,0,0,0,0,0,0,0,0,0.03555,0,0,0,0,0,0,0,0,0,0.03856,0,0,0,0,0,0,0,0,0,0.03265,0,0,0,0,0,0,0,0,0,0.03763,0,0,0,0,0,0,0,0,0,0.0346,0,0,0,0,0,0,0,0,0,0.03448,0,0,0,0,0,0,0,0,0,0.03625,0,0,0,0,0,0,0,0,0,0.03561,0,0,0,0,0,0,0,0,0,0.00639,0,0,0,0,0,0,0,0,0,0.00642,0,0,0,0,0,0,0,0,0,0.00684,0,0,0,0,0,0,0,0,0,0.00619,0,0,0,0,0,0,0,0,0,0.00644,0,0,0,0,0,0,0,0,0,0.0061,0,0,0,0,0,0,0,0,0,0.00596,0,0,0,0,0,0,0,0,0,0.00636,0,0,0,0,0,0,0,0,0,0.00606,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00093,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00092,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00083,0,0,0,0,0,0,0,0,0,0.06691,0,0,0,0,0,0,0,0,0,0.05891,0,0,0,0,0,0,0,0,0,0.06361,0,0,0,0,0,0,0,0,0,0.07318,0,0,0,0,0,0,0,0,0,0.03885,0,0,0,0,0,0,0,0,0,0.04415,0,0,0,0,0,0,0,0,0,0.03758,0,0,0,0,0,0,0,0,0,0.0506,0,0,0,0,0,0,0,0,0,0.03728 +Compact car,PH40E,1990,0.01419,0,0,0,0,0,0,0,0,0,0.01468,0,0,0,0,0,0,0,0,0,0.01593,0,0,0,0,0,0,0,0,0,0.01338,0,0,0,0,0,0,0,0,0,0.0157,0,0,0,0,0,0,0,0,0,0.01442,0,0,0,0,0,0,0,0,0,0.0144,0,0,0,0,0,0,0,0,0,0.01507,0,0,0,0,0,0,0,0,0,0.01485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04953,0,0,0,0,0,0,0,0,0,0.04325,0,0,0,0,0,0,0,0,0,0.04823,0,0,0,0,0,0,0,0,0,0.05311,0,0,0,0,0,0,0,0,0,0.02579,0,0,0,0,0,0,0,0,0,0.03017,0,0,0,0,0,0,0,0,0,0.02477,0,0,0,0,0,0,0,0,0,0.03429,0,0,0,0,0,0,0,0,0,0.02451,0,0,0,0,0,0,0,0,0,0.13141,0,0,0,0,0,0,0,0,0,0.11768,0,0,0,0,0,0,0,0,0,0.13192,0,0,0,0,0,0,0,0,0,0.13906,0,0,0,0,0,0,0,0,0,0.07947,0,0,0,0,0,0,0,0,0,0.08737,0,0,0,0,0,0,0,0,0,0.075,0,0,0,0,0,0,0,0,0,0.098,0,0,0,0,0,0,0,0,0,0.07487,0,0,0,0,0,0,0,0,0,0.10083,0,0,0,0,0,0,0,0,0,0.08815,0,0,0,0,0,0,0,0,0,0.09923,0,0,0,0,0,0,0,0,0,0.10868,0,0,0,0,0,0,0,0,0,0.05314,0,0,0,0,0,0,0,0,0,0.06176,0,0,0,0,0,0,0,0,0,0.05073,0,0,0,0,0,0,0,0,0,0.0703,0,0,0,0,0,0,0,0,0,0.0499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH40E,1995,0.01419,0.01419,0,0,0,0,0,0,0,0,0.01468,0.01468,0,0,0,0,0,0,0,0,0.01593,0.01593,0,0,0,0,0,0,0,0,0.01338,0.01338,0,0,0,0,0,0,0,0,0.0157,0.0157,0,0,0,0,0,0,0,0,0.01442,0.01442,0,0,0,0,0,0,0,0,0.0144,0.0144,0,0,0,0,0,0,0,0,0.01507,0.01507,0,0,0,0,0,0,0,0,0.01485,0.01485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0134,0.02933,0,0,0,0,0,0,0,0,0.01173,0.0256,0,0,0,0,0,0,0,0,0.01301,0.02854,0,0,0,0,0,0,0,0,0.01425,0.03131,0,0,0,0,0,0,0,0,0.00705,0.0152,0,0,0,0,0,0,0,0,0.0082,0.01773,0,0,0,0,0,0,0,0,0.0068,0.0146,0,0,0,0,0,0,0,0,0.00934,0.02027,0,0,0,0,0,0,0,0,0.00678,0.01454,0,0,0,0,0,0,0,0,0.05,0.08584,0,0,0,0,0,0,0,0,0.04694,0.07794,0,0,0,0,0,0,0,0,0.05206,0.08684,0,0,0,0,0,0,0,0,0.05078,0.08942,0,0,0,0,0,0,0,0,0.03804,0.05587,0,0,0,0,0,0,0,0,0.0385,0.05944,0,0,0,0,0,0,0,0,0.03541,0.0525,0,0,0,0,0,0,0,0,0.0422,0.06655,0,0,0,0,0,0,0,0,0.03615,0.0531,0,0,0,0,0,0,0,0,0.02882,0.06052,0,0,0,0,0,0,0,0,0.02559,0.05301,0,0,0,0,0,0,0,0,0.02859,0.05935,0,0,0,0,0,0,0,0,0.03058,0.06476,0,0,0,0,0,0,0,0,0.01649,0.03227,0,0,0,0,0,0,0,0,0.01853,0.03706,0,0,0,0,0,0,0,0,0.01571,0.03083,0,0,0,0,0,0,0,0,0.02094,0.04248,0,0,0,0,0,0,0,0,0.01565,0.03065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH40E,2000,0.01419,0.01742,0.01967,0,0,0,0,0,0,0,0.01468,0.01745,0.01938,0,0,0,0,0,0,0,0.01593,0.01905,0.02122,0,0,0,0,0,0,0,0.01338,0.01691,0.0194,0,0,0,0,0,0,0,0.0157,0.01725,0.01829,0,0,0,0,0,0,0,0.01442,0.01628,0.01768,0,0,0,0,0,0,0,0.0144,0.01589,0.01688,0,0,0,0,0,0,0,0.01507,0.01721,0.01867,0,0,0,0,0,0,0,0.01485,0.01632,0.0173,0,0,0,0,0,0,0,0,0.05215,0.054,0,0,0,0,0,0,0,0,0.04956,0.05269,0,0,0,0,0,0,0,0,0.05872,0.0619,0,0,0,0,0,0,0,0,0.06217,0.06538,0,0,0,0,0,0,0,0,0.04895,0.05218,0,0,0,0,0,0,0,0,0.0528,0.05637,0,0,0,0,0,0,0,0,0.04913,0.05076,0,0,0,0,0,0,0,0,0.05082,0.05344,0,0,0,0,0,0,0,0,0.04224,0.04464,0,0,0,0,0,0,0,0,5.23162,6.14938,0,0,0,0,0,0,0,0,5.05015,6.04832,0,0,0,0,0,0,0,0,5.77436,6.88086,0,0,0,0,0,0,0,0,6.2574,7.43389,0,0,0,0,0,0,0,0,5.09328,6.05926,0,0,0,0,0,0,0,0,5.42517,6.52308,0,0,0,0,0,0,0,0,5.28302,6.11116,0,0,0,0,0,0,0,0,5.21849,6.16865,0,0,0,0,0,0,0,0,4.28955,5.07677,0,0,0,0,0,0,0,0,188.01422,190.88366,0,0,0,0,0,0,0,0,189.60568,192.27761,0,0,0,0,0,0,0,0,192.87506,195.6558,0,0,0,0,0,0,0,0,188.11163,191.01712,0,0,0,0,0,0,0,0,192.75625,194.69317,0,0,0,0,0,0,0,0,189.67977,192.62012,0,0,0,0,0,0,0,0,190.75161,192.61953,0,0,0,0,0,0,0,0,191.19597,193.45131,0,0,0,0,0,0,0,0,187.42374,189.4277,0,0,0,0,0,0,0,0,0.01173,0.01389,0,0,0,0,0,0,0,0,0.01176,0.01392,0,0,0,0,0,0,0,0,0.01182,0.01396,0,0,0,0,0,0,0,0,0.01186,0.01408,0,0,0,0,0,0,0,0,0.01184,0.01399,0,0,0,0,0,0,0,0,0.01191,0.01412,0,0,0,0,0,0,0,0,0.01179,0.01396,0,0,0,0,0,0,0,0,0.01184,0.01401,0,0,0,0,0,0,0,0,0.01165,0.01378,0,0,0,0,0,0,0,0,0.03887,0.03887,0,0,0,0,0,0,0,0,0.03895,0.03895,0,0,0,0,0,0,0,0,0.03906,0.03906,0,0,0,0,0,0,0,0,0.03859,0.03859,0,0,0,0,0,0,0,0,0.039,0.039,0,0,0,0,0,0,0,0,0.03873,0.03873,0,0,0,0,0,0,0,0,0.03885,0.03885,0,0,0,0,0,0,0,0,0.039,0.039,0,0,0,0,0,0,0,0,0.03909,0.03909,0,0,0,0,0,0,0,0,0.6735,0.80037,0,0,0,0,0,0,0,0,0.66699,0.80992,0,0,0,0,0,0,0,0,0.74392,0.89637,0,0,0,0,0,0,0,0,0.77674,0.93488,0,0,0,0,0,0,0,0,0.72571,0.88157,0,0,0,0,0,0,0,0,0.75137,0.90637,0,0,0,0,0,0,0,0,0.73924,0.87517,0,0,0,0,0,0,0,0,0.76822,0.91643,0,0,0,0,0,0,0,0,0.68214,0.81948,0,0,0,0,0,0,0,0.00742,0.01709,0.03126,0,0,0,0,0,0,0,0.00651,0.01498,0.02729,0,0,0,0,0,0,0,0.00709,0.01637,0.03008,0,0,0,0,0,0,0,0.00773,0.01785,0.03301,0,0,0,0,0,0,0,0.00394,0.00901,0.01618,0,0,0,0,0,0,0,0.00453,0.01037,0.01902,0,0,0,0,0,0,0,0.00385,0.0088,0.0157,0,0,0,0,0,0,0,0.00519,0.0119,0.02156,0,0,0,0,0,0,0,0.00392,0.00896,0.01585,0,0,0,0,0,0,0,0.03637,0.07134,0.10344,0,0,0,0,0,0,0,0.03508,0.06787,0.09562,0,0,0,0,0,0,0,0.03852,0.07431,0.10542,0,0,0,0,0,0,0,0.03581,0.07112,0.10558,0,0,0,0,0,0,0,0.0311,0.05744,0.07332,0,0,0,0,0,0,0,0.03026,0.05702,0.07636,0,0,0,0,0,0,0,0.02885,0.05363,0.06882,0,0,0,0,0,0,0,0.03284,0.06218,0.08375,0,0,0,0,0,0,0,0.02982,0.05522,0.07035,0,0,0,0,0,0,0,0.01676,0.03702,0.06542,0,0,0,0,0,0,0,0.01509,0.03305,0.0576,0,0,0,0,0,0,0,0.01661,0.03627,0.0638,0,0,0,0,0,0,0,0.01734,0.03852,0.06901,0,0,0,0,0,0,0,0.01035,0.02184,0.03589,0,0,0,0,0,0,0,0.01124,0.02406,0.04113,0,0,0,0,0,0,0,0.0099,0.02099,0.03443,0,0,0,0,0,0,0,0.01265,0.02728,0.04636,0,0,0,0,0,0,0,0.01005,0.02135,0.03474,0,0,0,0,0,0,0,0,0.00616,0.00551,0,0,0,0,0,0,0,0,0.00621,0.00555,0,0,0,0,0,0,0,0,0.00631,0.00565,0,0,0,0,0,0,0,0,0.00616,0.00552,0,0,0,0,0,0,0,0,0.00631,0.00562,0,0,0,0,0,0,0,0,0.00621,0.00556,0,0,0,0,0,0,0,0,0.00625,0.00556,0,0,0,0,0,0,0,0,0.00626,0.00559,0,0,0,0,0,0,0,0,0.00614,0.00547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Compact car,PH40E,2005,0.01419,0.01545,0.01626,0.01817,0,0,0,0,0,0,0.01468,0.01578,0.01649,0.01813,0,0,0,0,0,0,0.01593,0.01717,0.01796,0.01982,0,0,0,0,0,0,0.01338,0.01476,0.01566,0.01778,0,0,0,0,0,0,0.0157,0.01637,0.0168,0.01772,0,0,0,0,0,0,0.01442,0.01521,0.01575,0.01681,0,0,0,0,0,0,0.0144,0.01505,0.01545,0.01633,0,0,0,0,0,0,0.01507,0.01595,0.01651,0.01778,0,0,0,0,0,0,0.01485,0.01549,0.01588,0.01674,0,0,0,0,0,0,0,0.02683,0.02153,0.02553,0,0,0,0,0,0,0,0.02393,0.01993,0.02394,0,0,0,0,0,0,0,0.02767,0.02301,0.02831,0,0,0,0,0,0,0,0.03067,0.02543,0.03085,0,0,0,0,0,0,0,0.01686,0.01566,0.02035,0,0,0,0,0,0,0,0.02002,0.01839,0.02298,0,0,0,0,0,0,0,0.01662,0.01524,0.01971,0,0,0,0,0,0,0,0.02089,0.01808,0.02256,0,0,0,0,0,0,0,0.01475,0.0135,0.01702,0,0,0,0,0,0,0,2.1351,2.71614,3.68885,0,0,0,0,0,0,0,2.05122,2.70759,3.65514,0,0,0,0,0,0,0,2.30265,3.09348,4.21249,0,0,0,0,0,0,0,2.47824,3.33253,4.52943,0,0,0,0,0,0,0,2.12309,2.92873,3.87455,0,0,0,0,0,0,0,2.20952,3.06889,4.0505,0,0,0,0,0,0,0,2.20151,2.9632,3.9078,0,0,0,0,0,0,0,2.16251,2.8834,3.84928,0,0,0,0,0,0,0,1.86667,2.48324,3.24688,0,0,0,0,0,0,0,190.70224,192.86885,196.0238,0,0,0,0,0,0,0,192.40727,194.42623,197.33896,0,0,0,0,0,0,0,195.56594,197.66754,200.72538,0,0,0,0,0,0,0,190.82811,193.02624,196.23832,0,0,0,0,0,0,0,195.97067,197.44031,199.45056,0,0,0,0,0,0,0,192.76143,195.15715,196.77836,0,0,0,0,0,0,0,194.08023,195.49989,197.4221,0,0,0,0,0,0,0,194.24886,195.95669,198.35634,0,0,0,0,0,0,0,190.58322,192.0963,194.16268,0,0,0,0,0,0,0,0.00384,0.00452,0.00686,0,0,0,0,0,0,0,0.00385,0.00452,0.00687,0,0,0,0,0,0,0,0.00386,0.00452,0.00687,0,0,0,0,0,0,0,0.0039,0.00459,0.00698,0,0,0,0,0,0,0,0.00387,0.00454,0.00689,0,0,0,0,0,0,0,0.00391,0.00459,0.00698,0,0,0,0,0,0,0,0.00386,0.00454,0.0069,0,0,0,0,0,0,0,0.00387,0.00455,0.00691,0,0,0,0,0,0,0,0.00381,0.00447,0.00679,0,0,0,0,0,0,0,0.0127,0.01575,0.01776,0,0,0,0,0,0,0,0.01273,0.01578,0.0178,0,0,0,0,0,0,0,0.01277,0.01583,0.01785,0,0,0,0,0,0,0,0.01261,0.01564,0.01764,0,0,0,0,0,0,0,0.01275,0.0158,0.01782,0,0,0,0,0,0,0,0.01266,0.01569,0.0177,0,0,0,0,0,0,0,0.0127,0.01574,0.01776,0,0,0,0,0,0,0,0.01275,0.0158,0.01783,0,0,0,0,0,0,0,0.01278,0.01584,0.01786,0,0,0,0,0,0,0,0.20482,0.27196,0.31787,0,0,0,0,0,0,0,0.19944,0.27343,0.31953,0,0,0,0,0,0,0,0.22443,0.30273,0.35985,0,0,0,0,0,0,0,0.23482,0.31708,0.38009,0,0,0,0,0,0,0,0.21426,0.29315,0.35024,0,0,0,0,0,0,0,0.22353,0.3036,0.36313,0,0,0,0,0,0,0,0.21789,0.29095,0.34612,0,0,0,0,0,0,0,0.22817,0.3055,0.35907,0,0,0,0,0,0,0,0.20255,0.27295,0.31667,0,0,0,0,0,0,0.0023,0.00635,0.00907,0.01927,0,0,0,0,0,0,0.00211,0.00568,0.00811,0.01705,0,0,0,0,0,0,0.00244,0.00565,0.00808,0.01858,0,0,0,0,0,0,0.00251,0.00654,0.00939,0.0203,0,0,0,0,0,0,0.00147,0.00393,0.00562,0.01085,0,0,0,0,0,0,0.00165,0.00416,0.00603,0.01225,0,0,0,0,0,0,0.00142,0.00375,0.00536,0.01041,0,0,0,0,0,0,0.00181,0.00461,0.00658,0.01379,0,0,0,0,0,0,0.00131,0.00355,0.00507,0.0104,0,0,0,0,0,0,0.0254,0.04823,0.05435,0.07729,0,0,0,0,0,0,0.02567,0.0479,0.05332,0.07333,0,0,0,0,0,0,0.02848,0.0511,0.05652,0.08022,0,0,0,0,0,0,0.02451,0.04654,0.05296,0.07766,0,0,0,0,0,0,0.02585,0.04665,0.05033,0.06178,0,0,0,0,0,0,0.02412,0.04376,0.04791,0.06158,0,0,0,0,0,0,0.02371,0.04294,0.04639,0.05741,0,0,0,0,0,0,0.02561,0.04655,0.05087,0.06688,0,0,0,0,0,0,0.02438,0.04385,0.04709,0.05871,0,0,0,0,0,0,0.00705,0.01657,0.02199,0.04228,0,0,0,0,0,0,0.00676,0.01539,0.02018,0.03788,0,0,0,0,0,0,0.00772,0.01574,0.02053,0.0415,0,0,0,0,0,0,0.00734,0.01677,0.02245,0.0443,0,0,0,0,0,0,0.0057,0.01229,0.01554,0.02568,0,0,0,0,0,0,0.00581,0.01233,0.01596,0.0281,0,0,0,0,0,0,0.00535,0.01153,0.01458,0.02433,0,0,0,0,0,0,0.00625,0.01344,0.01726,0.03143,0,0,0,0,0,0,0.00523,0.01129,0.01415,0.02443,0,0,0,0,0,0,0,0.00624,0.00557,0.00189,0,0,0,0,0,0,0,0.0063,0.00561,0.0019,0,0,0,0,0,0,0,0.0064,0.00571,0.00193,0,0,0,0,0,0,0,0.00625,0.00557,0.00189,0,0,0,0,0,0,0,0.00642,0.0057,0.00192,0,0,0,0,0,0,0,0.00631,0.00564,0.00189,0,0,0,0,0,0,0,0.00636,0.00565,0.0019,0,0,0,0,0,0,0,0.00636,0.00566,0.00191,0,0,0,0,0,0,0,0.00624,0.00555,0.00187,0,0,0,0,0,0,0,0.17309,0.22998,0.2398,0,0,0,0,0,0,0,0.15347,0.21022,0.21897,0,0,0,0,0,0,0,0.1771,0.24228,0.2516,0,0,0,0,0,0,0,0.19699,0.26858,0.2782,0,0,0,0,0,0,0,0.10102,0.15389,0.15872,0,0,0,0,0,0,0,0.12241,0.18503,0.18602,0,0,0,0,0,0,0,0.09829,0.14818,0.15274,0,0,0,0,0,0,0,0.12955,0.18426,0.19085,0,0,0,0,0,0,0,0.08757,0.13193,0.13585,0,0,0,0,0,0 +Compact car,PH40E,2010,0,0.01481,0.01519,0.0158,0.01761,0,0,0,0,0,0,0.01523,0.01556,0.0161,0.01766,0,0,0,0,0,0,0.01654,0.01691,0.01751,0.01927,0,0,0,0,0,0,0.01406,0.01448,0.01516,0.01718,0,0,0,0,0,0,0.01607,0.01628,0.01662,0.01754,0,0,0,0,0,0,0.01484,0.01511,0.01547,0.01656,0,0,0,0,0,0,0.01476,0.01496,0.01529,0.01616,0,0,0,0,0,0,0.01552,0.0158,0.01623,0.01746,0,0,0,0,0,0,0.0152,0.01541,0.01572,0.01657,0,0,0,0,0,0,0.0233,0.01608,0.0124,0.01619,0,0,0,0,0,0,0.02006,0.0145,0.01137,0.01498,0,0,0,0,0,0,0.02274,0.01708,0.01339,0.0178,0,0,0,0,0,0,0.02629,0.01951,0.01521,0.01991,0,0,0,0,0,0,0.0127,0.01164,0.00972,0.01296,0,0,0,0,0,0,0.01475,0.01334,0.01078,0.0145,0,0,0,0,0,0,0.01231,0.01135,0.00951,0.01264,0,0,0,0,0,0,0.01643,0.01336,0.01076,0.01427,0,0,0,0,0,0,0.01184,0.01035,0.00849,0.01102,0,0,0,0,0,0,1.17276,1.82263,2.44097,3.12993,0,0,0,0,0,0,1.09815,1.79091,2.41803,3.09727,0,0,0,0,0,0,1.17422,1.99584,2.75458,3.57117,0,0,0,0,0,0,1.27726,2.16319,2.99139,3.86137,0,0,0,0,0,0,0.97501,1.8268,2.5641,3.2932,0,0,0,0,0,0,1.02648,1.92498,2.6668,3.44531,0,0,0,0,0,0,1.00634,1.86109,2.60414,3.33232,0,0,0,0,0,0,1.0597,1.85397,2.5515,3.27173,0,0,0,0,0,0,0.89787,1.60136,2.18358,2.76796,0,0,0,0,0,0,186.9143,188.2429,190.51619,194.49683,0,0,0,0,0,0,188.6885,189.91503,192.02638,195.76031,0,0,0,0,0,0,191.75741,193.03652,195.23737,199.12102,0,0,0,0,0,0,187.02917,188.3715,190.68349,194.72947,0,0,0,0,0,0,192.54492,193.39529,194.90462,197.71327,0,0,0,0,0,0,189.25482,190.93947,191.97744,195.1282,0,0,0,0,0,0,190.71334,191.52836,192.98546,195.70913,0,0,0,0,0,0,190.69878,191.71205,193.48253,196.692,0,0,0,0,0,0,187.1861,188.08037,189.63382,192.48847,0,0,0,0,0,0,0.00342,0.00387,0.00462,0.00603,0,0,0,0,0,0,0.00343,0.00388,0.00462,0.00603,0,0,0,0,0,0,0.00344,0.00388,0.00462,0.00602,0,0,0,0,0,0,0.00347,0.00393,0.00469,0.00613,0,0,0,0,0,0,0.00345,0.00389,0.00463,0.00604,0,0,0,0,0,0,0.00348,0.00393,0.00469,0.00613,0,0,0,0,0,0,0.00344,0.00389,0.00464,0.00606,0,0,0,0,0,0,0.00345,0.0039,0.00465,0.00606,0,0,0,0,0,0,0.00339,0.00383,0.00457,0.00596,0,0,0,0,0,0,0.00845,0.0098,0.01264,0.0135,0,0,0,0,0,0,0.00847,0.00982,0.01267,0.01353,0,0,0,0,0,0,0.00849,0.00985,0.01271,0.01357,0,0,0,0,0,0,0.00839,0.00973,0.01256,0.01341,0,0,0,0,0,0,0.00848,0.00983,0.01269,0.01355,0,0,0,0,0,0,0.00842,0.00977,0.0126,0.01346,0,0,0,0,0,0,0.00844,0.0098,0.01264,0.0135,0,0,0,0,0,0,0.00848,0.00983,0.01269,0.01355,0,0,0,0,0,0,0.0085,0.00986,0.01272,0.01358,0,0,0,0,0,0,0.05434,0.08882,0.09489,0.15927,0,0,0,0,0,0,0.05204,0.08849,0.09424,0.15894,0,0,0,0,0,0,0.05409,0.09763,0.10292,0.17853,0,0,0,0,0,0,0.05621,0.10373,0.10941,0.19038,0,0,0,0,0,0,0.04844,0.09163,0.09647,0.17054,0,0,0,0,0,0,0.05123,0.09649,0.10153,0.17871,0,0,0,0,0,0,0.04957,0.09158,0.09641,0.16903,0,0,0,0,0,0,0.0543,0.09786,0.10176,0.17607,0,0,0,0,0,0,0.04887,0.08687,0.09017,0.1539,0,0,0,0,0,0,0.00248,0.00403,0.00591,0.01396,0,0,0,0,0,0,0.00232,0.00374,0.00549,0.01257,0,0,0,0,0,0,0.00225,0.00362,0.00574,0.01347,0,0,0,0,0,0,0.00255,0.00416,0.00616,0.01468,0,0,0,0,0,0,0.00198,0.00313,0.0044,0.00881,0,0,0,0,0,0,0.00198,0.00317,0.0046,0.00962,0,0,0,0,0,0,0.00191,0.00301,0.00422,0.00843,0,0,0,0,0,0,0.00207,0.00329,0.00488,0.01056,0,0,0,0,0,0,0.0018,0.00283,0.00417,0.00837,0,0,0,0,0,0,0.04015,0.04369,0.04805,0.06631,0,0,0,0,0,0,0.04091,0.04412,0.04811,0.06407,0,0,0,0,0,0,0.04403,0.04711,0.05207,0.0696,0,0,0,0,0,0,0.03814,0.04183,0.04653,0.06598,0,0,0,0,0,0,0.0426,0.04509,0.04785,0.05759,0,0,0,0,0,0,0.03923,0.04187,0.045,0.05615,0,0,0,0,0,0,0.03911,0.04147,0.04409,0.05331,0,0,0,0,0,0,0.04125,0.04394,0.0475,0.06019,0,0,0,0,0,0,0.04024,0.04242,0.04533,0.05451,0,0,0,0,0,0,0.00943,0.01256,0.01642,0.03257,0,0,0,0,0,0,0.0092,0.01204,0.01557,0.02969,0,0,0,0,0,0,0.00949,0.01221,0.0166,0.03211,0,0,0,0,0,0,0.00934,0.0126,0.01676,0.03397,0,0,0,0,0,0,0.00871,0.01091,0.01335,0.02196,0,0,0,0,0,0,0.00832,0.01062,0.01343,0.02329,0,0,0,0,0,0,0.00815,0.01023,0.01254,0.02071,0,0,0,0,0,0,0.00876,0.01114,0.01428,0.02551,0,0,0,0,0,0,0.0081,0.01002,0.0126,0.02072,0,0,0,0,0,0,0.00612,0.00544,0.00183,0.00187,0,0,0,0,0,0,0.00618,0.00548,0.00185,0.00188,0,0,0,0,0,0,0.00628,0.00557,0.00188,0.00192,0,0,0,0,0,0,0.00612,0.00544,0.00184,0.00187,0,0,0,0,0,0,0.00631,0.00558,0.00188,0.0019,0,0,0,0,0,0,0.0062,0.00551,0.00185,0.00188,0,0,0,0,0,0,0.00625,0.00553,0.00186,0.00188,0,0,0,0,0,0,0.00624,0.00554,0.00186,0.00189,0,0,0,0,0,0,0.00613,0.00543,0.00183,0.00185,0,0,0,0,0,0,0.06856,0.09639,0.13066,0.18895,0,0,0,0,0,0,0.05804,0.0852,0.11788,0.17183,0,0,0,0,0,0,0.06684,0.10061,0.139,0.20306,0,0,0,0,0,0,0.07819,0.11615,0.1591,0.22947,0,0,0,0,0,0,0.03405,0.06278,0.09489,0.13833,0,0,0,0,0,0,0.04072,0.0738,0.10673,0.15712,0,0,0,0,0,0,0.0325,0.0604,0.09201,0.1339,0,0,0,0,0,0,0.04612,0.07522,0.10829,0.15788,0,0,0,0,0,0,0.0312,0.05543,0.0827,0.11807,0,0,0,0,0 +Compact car,PH40E,2015,0,0,0.01472,0.01501,0.01556,0.0169,0,0,0,0,0,0,0.01516,0.01542,0.01592,0.0171,0,0,0,0,0,0,0.01645,0.01674,0.01728,0.01859,0,0,0,0,0,0,0.01395,0.01427,0.01487,0.01635,0,0,0,0,0,0,0.01605,0.01623,0.01657,0.01731,0,0,0,0,0,0,0.01482,0.01501,0.01539,0.01626,0,0,0,0,0,0,0.01474,0.01492,0.01525,0.01597,0,0,0,0,0,0,0.01548,0.0157,0.01612,0.01708,0,0,0,0,0,0,0.01519,0.01536,0.01568,0.01638,0,0,0,0,0,0,0.01742,0.01145,0.01031,0.01187,0,0,0,0,0,0,0.01576,0.01061,0.00975,0.01121,0,0,0,0,0,0,0.01724,0.01232,0.01135,0.01315,0,0,0,0,0,0,0.01925,0.01375,0.0126,0.01457,0,0,0,0,0,0,0.01111,0.0091,0.00907,0.01044,0,0,0,0,0,0,0.01288,0.01009,0.00991,0.01145,0,0,0,0,0,0,0.01089,0.00892,0.00895,0.01028,0,0,0,0,0,0,0.01346,0.01009,0.00964,0.01109,0,0,0,0,0,0,0.0105,0.00811,0.00796,0.00903,0,0,0,0,0,0,0.92327,1.62722,2.1773,2.69171,0,0,0,0,0,0,0.90739,1.62572,2.19382,2.70338,0,0,0,0,0,0,0.94447,1.80348,2.49233,3.0924,0,0,0,0,0,0,1.01873,1.94001,2.68846,3.32436,0,0,0,0,0,0,0.85664,1.74617,2.44953,2.99999,0,0,0,0,0,0,0.89558,1.79188,2.51971,3.10255,0,0,0,0,0,0,0.88373,1.78575,2.49771,3.05148,0,0,0,0,0,0,0.89483,1.73112,2.38306,2.92436,0,0,0,0,0,0,0.79357,1.53256,2.0877,2.53785,0,0,0,0,0,0,169.35439,170.62991,171.88039,175.75356,0,0,0,0,0,0,170.91878,172.07964,173.17609,176.83946,0,0,0,0,0,0,173.71309,174.92961,176.09338,179.89186,0,0,0,0,0,0,169.47561,170.76946,172.05288,175.98614,0,0,0,0,0,0,174.26085,175.00149,175.53604,178.40736,0,0,0,0,0,0,171.97064,172.24245,172.99448,176.1556,0,0,0,0,0,0,172.59753,173.30214,173.79701,176.59259,0,0,0,0,0,0,172.65472,173.57782,174.35692,177.57123,0,0,0,0,0,0,169.41969,170.20959,170.80996,173.70645,0,0,0,0,0,0,0.00222,0.00251,0.0029,0.00387,0,0,0,0,0,0,0.00223,0.00252,0.00291,0.00388,0,0,0,0,0,0,0.00226,0.00254,0.00293,0.00389,0,0,0,0,0,0,0.00224,0.00253,0.00293,0.00392,0,0,0,0,0,0,0.00226,0.00255,0.00293,0.00389,0,0,0,0,0,0,0.00226,0.00255,0.00295,0.00393,0,0,0,0,0,0,0.00224,0.00253,0.00292,0.00389,0,0,0,0,0,0,0.00225,0.00254,0.00293,0.0039,0,0,0,0,0,0,0.00222,0.0025,0.00288,0.00384,0,0,0,0,0,0,0.00845,0.00987,0.01264,0.01273,0,0,0,0,0,0,0.00847,0.00989,0.01267,0.01276,0,0,0,0,0,0,0.00849,0.00992,0.01271,0.0128,0,0,0,0,0,0,0.00839,0.0098,0.01256,0.01264,0,0,0,0,0,0,0.00848,0.00991,0.01269,0.01278,0,0,0,0,0,0,0.00842,0.00984,0.0126,0.01269,0,0,0,0,0,0,0.00844,0.00987,0.01264,0.01273,0,0,0,0,0,0,0.00848,0.00991,0.01269,0.01278,0,0,0,0,0,0,0.0085,0.00993,0.01272,0.0128,0,0,0,0,0,0,0.04436,0.05877,0.08401,0.11345,0,0,0,0,0,0,0.04393,0.05803,0.08324,0.11256,0,0,0,0,0,0,0.0447,0.06358,0.09068,0.1239,0,0,0,0,0,0,0.04685,0.0678,0.0967,0.13236,0,0,0,0,0,0,0.03952,0.05803,0.08418,0.11607,0,0,0,0,0,0,0.04231,0.06161,0.08901,0.12254,0,0,0,0,0,0,0.04021,0.05801,0.0843,0.11581,0,0,0,0,0,0,0.04439,0.06223,0.0893,0.12167,0,0,0,0,0,0,0.04003,0.05477,0.07885,0.1068,0,0,0,0,0,0,0.00219,0.00352,0.00531,0.00997,0,0,0,0,0,0,0.00209,0.00335,0.00503,0.00923,0,0,0,0,0,0,0.00202,0.00344,0.00519,0.00967,0,0,0,0,0,0,0.00222,0.0036,0.00545,0.01036,0,0,0,0,0,0,0.00185,0.00289,0.00425,0.00724,0,0,0,0,0,0,0.00185,0.00297,0.0044,0.00765,0,0,0,0,0,0,0.00179,0.0028,0.00411,0.00695,0,0,0,0,0,0,0.0019,0.00308,0.00459,0.00814,0,0,0,0,0,0,0.0017,0.00276,0.00406,0.00687,0,0,0,0,0,0,0.03941,0.04235,0.04645,0.05734,0,0,0,0,0,0,0.04032,0.04309,0.04689,0.05662,0,0,0,0,0,0,0.04344,0.04661,0.0506,0.06105,0,0,0,0,0,0,0.03729,0.04036,0.04463,0.05618,0,0,0,0,0,0,0.0423,0.0445,0.04746,0.05413,0,0,0,0,0,0,0.03898,0.0413,0.04445,0.05179,0,0,0,0,0,0,0.03885,0.04095,0.04378,0.05007,0,0,0,0,0,0,0.04082,0.04338,0.04672,0.0548,0,0,0,0,0,0,0.04001,0.04225,0.04504,0.05124,0,0,0,0,0,0,0.00878,0.01138,0.015,0.02463,0,0,0,0,0,0,0.00868,0.01113,0.01449,0.0231,0,0,0,0,0,0,0.00897,0.01177,0.0153,0.02455,0,0,0,0,0,0,0.00859,0.0113,0.01509,0.0253,0,0,0,0,0,0,0.00845,0.01038,0.01301,0.01891,0,0,0,0,0,0,0.00806,0.01016,0.01294,0.01944,0,0,0,0,0,0,0.00791,0.00977,0.01228,0.01784,0,0,0,0,0,0,0.00838,0.01064,0.0136,0.02075,0,0,0,0,0,0,0.00789,0.00987,0.01234,0.01783,0,0,0,0,0,0,0.00489,0.00164,0.00165,0.00169,0,0,0,0,0,0,0.00494,0.00166,0.00167,0.0017,0,0,0,0,0,0,0.00502,0.00168,0.00169,0.00173,0,0,0,0,0,0,0.00489,0.00164,0.00166,0.00169,0,0,0,0,0,0,0.00503,0.00168,0.00169,0.00172,0,0,0,0,0,0,0.00497,0.00166,0.00167,0.0017,0,0,0,0,0,0,0.00498,0.00167,0.00167,0.0017,0,0,0,0,0,0,0.00499,0.00167,0.00168,0.00171,0,0,0,0,0,0,0.00489,0.00164,0.00164,0.00167,0,0,0,0,0,0,0.04928,0.07166,0.10582,0.14492,0,0,0,0,0,0,0.0437,0.06543,0.09872,0.13516,0,0,0,0,0,0,0.04855,0.076,0.11478,0.15834,0,0,0,0,0,0,0.05496,0.0854,0.12808,0.17642,0,0,0,0,0,0,0.02847,0.05282,0.08723,0.12006,0,0,0,0,0,0,0.03417,0.05946,0.09647,0.13313,0,0,0,0,0,0,0.02754,0.05133,0.0854,0.11742,0,0,0,0,0,0,0.03605,0.06034,0.09503,0.13044,0,0,0,0,0,0,0.02646,0.0469,0.07642,0.10373,0,0,0,0 +Compact car,PH40E,2020,0,0,0,0.01462,0.01485,0.0152,0.01625,0,0,0,0,0,0,0.01507,0.01528,0.01559,0.01653,0,0,0,0,0,0,0.01636,0.01658,0.01692,0.01795,0,0,0,0,0,0,0.01384,0.01409,0.01447,0.01562,0,0,0,0,0,0,0.01599,0.01614,0.01635,0.01696,0,0,0,0,0,0,0.01475,0.0149,0.01515,0.01585,0,0,0,0,0,0,0.01469,0.01483,0.01504,0.01563,0,0,0,0,0,0,0.01541,0.01558,0.01585,0.01662,0,0,0,0,0,0,0.01513,0.01527,0.01548,0.01605,0,0,0,0,0,0,0.0134,0.0092,0.00759,0.00884,0,0,0,0,0,0,0.01189,0.00837,0.00704,0.00825,0,0,0,0,0,0,0.01323,0.00973,0.0082,0.00975,0,0,0,0,0,0,0.01496,0.01095,0.00918,0.01087,0,0,0,0,0,0,0.00762,0.00659,0.00601,0.00735,0,0,0,0,0,0,0.00892,0.00748,0.00671,0.00819,0,0,0,0,0,0,0.00738,0.00643,0.00591,0.00722,0,0,0,0,0,0,0.00975,0.00763,0.00666,0.00799,0,0,0,0,0,0,0.00707,0.00585,0.00527,0.0063,0,0,0,0,0,0,0.72676,1.08045,1.34617,1.79655,0,0,0,0,0,0,0.7098,1.06696,1.33753,1.78905,0,0,0,0,0,0,0.74496,1.18329,1.51578,2.06536,0,0,0,0,0,0,0.80954,1.28613,1.65507,2.24182,0,0,0,0,0,0,0.6579,1.10533,1.43117,1.95065,0,0,0,0,0,0,0.68397,1.14593,1.48913,2.0385,0,0,0,0,0,0,0.67711,1.13261,1.4639,1.98691,0,0,0,0,0,0,0.69348,1.11454,1.4204,1.92003,0,0,0,0,0,0,0.60644,0.97302,1.22576,1.63977,0,0,0,0,0,0,134.50766,135.44766,136.35274,144.41172,0,0,0,0,0,0,135.66845,136.51713,137.29339,145.19583,0,0,0,0,0,0,137.91364,138.80554,139.63582,147.73811,0,0,0,0,0,0,134.63523,135.59225,136.52692,144.64593,0,0,0,0,0,0,138.03345,138.54737,138.85676,146.10143,0,0,0,0,0,0,135.83994,136.4808,136.97271,144.41428,0,0,0,0,0,0,136.70446,137.19165,137.46992,144.60075,0,0,0,0,0,0,136.88482,137.54428,138.05669,145.58217,0,0,0,0,0,0,134.21691,134.76904,135.13235,142.27394,0,0,0,0,0,0,0.00226,0.00252,0.00289,0.00357,0,0,0,0,0,0,0.00227,0.00253,0.0029,0.00358,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00359,0,0,0,0,0,0,0.00228,0.00254,0.00292,0.00361,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.0023,0.00256,0.00293,0.00363,0,0,0,0,0,0,0.00228,0.00254,0.0029,0.00359,0,0,0,0,0,0,0.00229,0.00255,0.00292,0.0036,0,0,0,0,0,0,0.00226,0.00251,0.00287,0.00354,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00988,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.03062,0.04725,0.06336,0.0848,0,0,0,0,0,0,0.03,0.04643,0.06245,0.08372,0,0,0,0,0,0,0.03074,0.05067,0.06773,0.09219,0,0,0,0,0,0,0.0325,0.05435,0.0727,0.09918,0,0,0,0,0,0,0.02585,0.04509,0.06122,0.08429,0,0,0,0,0,0,0.02809,0.0484,0.06549,0.08997,0,0,0,0,0,0,0.02625,0.04528,0.06163,0.08439,0,0,0,0,0,0,0.02941,0.04916,0.06613,0.08963,0,0,0,0,0,0,0.02585,0.04281,0.05775,0.07762,0,0,0,0,0,0,0.00193,0.00297,0.00411,0.00748,0,0,0,0,0,0,0.00185,0.00284,0.0039,0.00701,0,0,0,0,0,0,0.00189,0.00291,0.00402,0.00728,0,0,0,0,0,0,0.00196,0.00303,0.00421,0.00773,0,0,0,0,0,0,0.00163,0.00247,0.00332,0.00572,0,0,0,0,0,0,0.00166,0.00253,0.00343,0.00598,0,0,0,0,0,0,0.00158,0.00239,0.00321,0.00549,0,0,0,0,0,0,0.00172,0.00262,0.00357,0.00628,0,0,0,0,0,0,0.00156,0.00236,0.00317,0.00542,0,0,0,0,0,0,0.0388,0.04115,0.04376,0.05169,0,0,0,0,0,0,0.03978,0.04198,0.0444,0.05163,0,0,0,0,0,0,0.04316,0.04544,0.04798,0.05564,0,0,0,0,0,0,0.03667,0.0391,0.04182,0.05017,0,0,0,0,0,0,0.04182,0.04361,0.04548,0.05083,0,0,0,0,0,0,0.0385,0.04037,0.04236,0.04813,0,0,0,0,0,0,0.03838,0.04009,0.04188,0.04694,0,0,0,0,0,0,0.04043,0.04239,0.04452,0.05071,0,0,0,0,0,0,0.03972,0.0414,0.04317,0.04814,0,0,0,0,0,0,0.00824,0.01031,0.01263,0.01964,0,0,0,0,0,0,0.0082,0.01015,0.01229,0.01868,0,0,0,0,0,0,0.00872,0.01074,0.01299,0.01976,0,0,0,0,0,0,0.00804,0.01019,0.0126,0.01998,0,0,0,0,0,0,0.00802,0.0096,0.01126,0.01598,0,0,0,0,0,0,0.00768,0.00933,0.0111,0.0162,0,0,0,0,0,0,0.0075,0.00901,0.01059,0.01507,0,0,0,0,0,0,0.00803,0.00977,0.01165,0.01713,0,0,0,0,0,0,0.00763,0.00912,0.01068,0.01508,0,0,0,0,0,0,0.00129,0.0013,0.00131,0.00139,0,0,0,0,0,0,0.00131,0.00131,0.00132,0.0014,0,0,0,0,0,0,0.00133,0.00134,0.00134,0.00142,0,0,0,0,0,0,0.0013,0.00131,0.00131,0.00139,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00141,0,0,0,0,0,0,0.00131,0.00131,0.00132,0.00139,0,0,0,0,0,0,0.00132,0.00132,0.00132,0.00139,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.0014,0,0,0,0,0,0,0.00129,0.0013,0.0013,0.00137,0,0,0,0,0,0,0.04108,0.05721,0.07809,0.10912,0,0,0,0,0,0,0.03606,0.05132,0.0712,0.10039,0,0,0,0,0,0,0.04053,0.05963,0.08282,0.11862,0,0,0,0,0,0,0.04614,0.06749,0.09329,0.13303,0,0,0,0,0,0,0.02204,0.0376,0.0565,0.08453,0,0,0,0,0,0,0.02635,0.04348,0.06418,0.09537,0,0,0,0,0,0,0.02114,0.03632,0.05497,0.08231,0,0,0,0,0,0,0.02901,0.04516,0.06494,0.09443,0,0,0,0,0,0,0.02016,0.03323,0.04937,0.07221,0,0,0 +Compact car,PH40E,2025,0,0,0,0,0.01447,0.01461,0.01484,0.01556,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01591,0,0,0,0,0,0,0.01621,0.01635,0.01658,0.01728,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01487,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01655,0,0,0,0,0,0,0.01463,0.01473,0.0149,0.01538,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01523,0,0,0,0,0,0,0.01529,0.0154,0.01557,0.0161,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01566,0,0,0,0,0,0,0.01175,0.00745,0.00589,0.0068,0,0,0,0,0,0,0.0102,0.00659,0.00531,0.00619,0,0,0,0,0,0,0.01152,0.00769,0.00619,0.00731,0,0,0,0,0,0,0.0132,0.00876,0.00702,0.00823,0,0,0,0,0,0,0.00581,0.00451,0.00398,0.00493,0,0,0,0,0,0,0.0071,0.00531,0.00459,0.00564,0,0,0,0,0,0,0.00555,0.00435,0.00387,0.00481,0,0,0,0,0,0,0.00797,0.00562,0.00471,0.00566,0,0,0,0,0,0,0.00529,0.00397,0.00347,0.00422,0,0,0,0,0,0,0.54269,0.78169,0.98281,1.29253,0,0,0,0,0,0,0.51814,0.75785,0.96016,1.26692,0,0,0,0,0,0,0.54817,0.84174,1.08757,1.45743,0,0,0,0,0,0,0.60445,0.92727,1.20144,1.59986,0,0,0,0,0,0,0.44449,0.73889,0.97286,1.31136,0,0,0,0,0,0,0.4724,0.77858,1.02643,1.38704,0,0,0,0,0,0,0.45672,0.75774,0.9963,1.33773,0,0,0,0,0,0,0.4871,0.76702,0.99053,1.32211,0,0,0,0,0,0,0.41063,0.65251,0.8358,1.10802,0,0,0,0,0,0,108.83189,109.64422,110.59037,117.50382,0,0,0,0,0,0,109.70596,110.44178,111.27562,118.04139,0,0,0,0,0,0,111.54336,112.31587,113.20016,120.14203,0,0,0,0,0,0,108.96082,109.7884,110.76271,117.73489,0,0,0,0,0,0,111.38871,111.84311,112.26831,118.42254,0,0,0,0,0,0,109.71215,110.2732,110.85759,117.20119,0,0,0,0,0,0,110.30728,110.73915,111.13654,117.19245,0,0,0,0,0,0,110.56057,111.13728,111.74034,118.1562,0,0,0,0,0,0,108.32229,108.80715,109.27323,115.34078,0,0,0,0,0,0,0.00228,0.00252,0.00288,0.00351,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.00229,0.00254,0.00291,0.00355,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00231,0.00256,0.00292,0.00357,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00353,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00227,0.00251,0.00286,0.00348,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02345,0.03423,0.04552,0.06209,0,0,0,0,0,0,0.0227,0.03329,0.04444,0.06079,0,0,0,0,0,0,0.02329,0.03604,0.04786,0.06653,0,0,0,0,0,0,0.02485,0.03895,0.05174,0.07201,0,0,0,0,0,0,0.01846,0.03058,0.04149,0.05865,0,0,0,0,0,0,0.02058,0.0335,0.04518,0.06356,0,0,0,0,0,0,0.01881,0.03086,0.04195,0.05894,0,0,0,0,0,0,0.02154,0.03409,0.04569,0.06347,0,0,0,0,0,0,0.01842,0.02914,0.03928,0.05421,0,0,0,0,0,0,0.00127,0.00192,0.00267,0.00522,0,0,0,0,0,0,0.00121,0.00183,0.00253,0.0049,0,0,0,0,0,0,0.00124,0.00187,0.00261,0.00508,0,0,0,0,0,0,0.00129,0.00195,0.00273,0.00537,0,0,0,0,0,0,0.00107,0.00159,0.00216,0.00403,0,0,0,0,0,0,0.00109,0.00163,0.00223,0.0042,0,0,0,0,0,0,0.00104,0.00154,0.00209,0.00386,0,0,0,0,0,0,0.00113,0.00169,0.00232,0.00441,0,0,0,0,0,0,0.00103,0.00152,0.00206,0.00382,0,0,0,0,0,0,0.03737,0.03882,0.04054,0.04651,0,0,0,0,0,0,0.03842,0.03978,0.04137,0.04686,0,0,0,0,0,0,0.04176,0.04317,0.04485,0.05062,0,0,0,0,0,0,0.03521,0.0367,0.0385,0.04473,0,0,0,0,0,0,0.04066,0.04177,0.04301,0.04716,0,0,0,0,0,0,0.0373,0.03846,0.03978,0.04423,0,0,0,0,0,0,0.03726,0.03832,0.03951,0.04342,0,0,0,0,0,0,0.03918,0.0404,0.0418,0.04656,0,0,0,0,0,0,0.03861,0.03966,0.04083,0.04471,0,0,0,0,0,0,0.00697,0.00825,0.00978,0.01506,0,0,0,0,0,0,0.007,0.0082,0.00961,0.01447,0,0,0,0,0,0,0.00748,0.00873,0.01021,0.01532,0,0,0,0,0,0,0.00675,0.00807,0.00966,0.01517,0,0,0,0,0,0,0.00699,0.00797,0.00907,0.01274,0,0,0,0,0,0,0.00662,0.00765,0.00881,0.01275,0,0,0,0,0,0,0.0065,0.00744,0.00849,0.01196,0,0,0,0,0,0,0.00693,0.00801,0.00925,0.01345,0,0,0,0,0,0,0.00665,0.00758,0.00862,0.01205,0,0,0,0,0,0,0.00105,0.00106,0.00106,0.00113,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00114,0,0,0,0,0,0,0.00107,0.00108,0.00109,0.00116,0,0,0,0,0,0,0.00105,0.00106,0.00107,0.00113,0,0,0,0,0,0,0.00107,0.00108,0.00108,0.00114,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00113,0,0,0,0,0,0,0.00106,0.00107,0.00107,0.00113,0,0,0,0,0,0,0.00106,0.00107,0.00108,0.00114,0,0,0,0,0,0,0.00104,0.00105,0.00105,0.00111,0,0,0,0,0,0,0.03648,0.04753,0.06259,0.08583,0,0,0,0,0,0,0.03131,0.0415,0.05547,0.07697,0,0,0,0,0,0,0.0357,0.04837,0.06468,0.09081,0,0,0,0,0,0,0.04118,0.0555,0.07382,0.10302,0,0,0,0,0,0,0.01683,0.02613,0.03814,0.05716,0,0,0,0,0,0,0.02108,0.03156,0.04501,0.06652,0,0,0,0,0,0,0.01591,0.02492,0.0367,0.05518,0,0,0,0,0,0,0.02395,0.0341,0.0473,0.06809,0,0,0,0,0,0,0.01512,0.02291,0.03317,0.04876,0,0 +Compact car,PH40E,2030,0,0,0,0,0,0.01447,0.01461,0.01484,0.01537,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01574,0,0,0,0,0,0,0.01621,0.01634,0.01658,0.01709,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01466,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01644,0,0,0,0,0,0,0.01463,0.01473,0.01489,0.01525,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01512,0,0,0,0,0,0,0.01529,0.01539,0.01557,0.01597,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01555,0,0,0,0,0,0,0.01118,0.00689,0.00539,0.00599,0,0,0,0,0,0,0.00961,0.00603,0.0048,0.00537,0,0,0,0,0,0,0.01092,0.00703,0.0056,0.00631,0,0,0,0,0,0,0.01258,0.00806,0.00638,0.00716,0,0,0,0,0,0,0.0052,0.00385,0.00339,0.00394,0,0,0,0,0,0,0.00648,0.00463,0.00397,0.00459,0,0,0,0,0,0,0.00493,0.0037,0.00328,0.00382,0,0,0,0,0,0,0.00737,0.00499,0.00414,0.00472,0,0,0,0,0,0,0.0047,0.00339,0.00295,0.00338,0,0,0,0,0,0,0.49279,0.70559,0.89367,1.12069,0,0,0,0,0,0,0.46645,0.67934,0.86771,1.08836,0,0,0,0,0,0,0.49502,0.75487,0.98288,1.24543,0,0,0,0,0,0,0.54881,0.83547,1.09017,1.37543,0,0,0,0,0,0,0.38758,0.64643,0.86099,1.08788,0,0,0,0,0,0,0.41574,0.68553,0.91328,1.15812,0,0,0,0,0,0,0.39792,0.66302,0.88193,1.11097,0,0,0,0,0,0,0.4317,0.67912,0.88539,1.1145,0,0,0,0,0,0,0.35828,0.57172,0.74034,0.92474,0,0,0,0,0,0,100.15285,101.1639,102.73024,107.15133,0,0,0,0,0,0,100.93296,101.87507,103.33899,107.60231,0,0,0,0,0,0,102.63155,103.61218,105.13573,109.53052,0,0,0,0,0,0,100.28143,101.30717,102.90246,107.37875,0,0,0,0,0,0,102.39547,103.0811,104.1621,107.81066,0,0,0,0,0,0,100.88931,101.66974,102.89378,106.75648,0,0,0,0,0,0,101.39806,102.06045,103.10852,106.68577,0,0,0,0,0,0,101.67116,102.46795,103.71499,107.62883,0,0,0,0,0,0,99.58131,100.2873,101.38751,105.01193,0,0,0,0,0,0,0.00227,0.00251,0.00287,0.00349,0,0,0,0,0,0,0.00229,0.00252,0.00288,0.0035,0,0,0,0,0,0,0.00231,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00229,0.00253,0.0029,0.00353,0,0,0,0,0,0,0.00231,0.00254,0.00291,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00229,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00227,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00979,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00982,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00988,0.01272,0.01272,0,0,0,0,0,0,0.02069,0.02955,0.03997,0.05281,0,0,0,0,0,0,0.01988,0.02857,0.03884,0.05142,0,0,0,0,0,0,0.02038,0.03077,0.04168,0.05581,0,0,0,0,0,0,0.02182,0.03338,0.04522,0.06056,0,0,0,0,0,0,0.0156,0.02539,0.03537,0.04796,0,0,0,0,0,0,0.01765,0.02815,0.03887,0.0525,0,0,0,0,0,0,0.01594,0.02569,0.03583,0.04836,0,0,0,0,0,0,0.01847,0.02867,0.03931,0.05259,0,0,0,0,0,0,0.01556,0.02425,0.03353,0.04463,0,0,0,0,0,0,0.00126,0.00191,0.00266,0.00441,0,0,0,0,0,0,0.00121,0.00182,0.00252,0.00415,0,0,0,0,0,0,0.00124,0.00187,0.0026,0.0043,0,0,0,0,0,0,0.00128,0.00195,0.00271,0.00454,0,0,0,0,0,0,0.00107,0.00159,0.00215,0.00342,0,0,0,0,0,0,0.00109,0.00163,0.00222,0.00357,0,0,0,0,0,0,0.00104,0.00154,0.00208,0.00329,0,0,0,0,0,0,0.00113,0.00169,0.00231,0.00374,0,0,0,0,0,0,0.00103,0.00152,0.00206,0.00325,0,0,0,0,0,0,0.03736,0.03881,0.04052,0.04465,0,0,0,0,0,0,0.03841,0.03977,0.04135,0.04514,0,0,0,0,0,0,0.04175,0.04316,0.04482,0.04882,0,0,0,0,0,0,0.0352,0.03669,0.03846,0.0428,0,0,0,0,0,0,0.04066,0.04176,0.043,0.04584,0,0,0,0,0,0,0.0373,0.03845,0.03977,0.04282,0,0,0,0,0,0,0.03725,0.03831,0.03949,0.04218,0,0,0,0,0,0,0.03918,0.04039,0.04179,0.04506,0,0,0,0,0,0,0.03861,0.03965,0.04083,0.04347,0,0,0,0,0,0,0.00696,0.00824,0.00975,0.01341,0,0,0,0,0,0,0.00699,0.00819,0.00959,0.01295,0,0,0,0,0,0,0.00748,0.00872,0.01019,0.01373,0,0,0,0,0,0,0.00674,0.00806,0.00963,0.01346,0,0,0,0,0,0,0.00699,0.00797,0.00906,0.01158,0,0,0,0,0,0,0.00662,0.00764,0.0088,0.0115,0,0,0,0,0,0,0.0065,0.00744,0.00848,0.01086,0,0,0,0,0,0,0.00692,0.008,0.00923,0.01213,0,0,0,0,0,0,0.00665,0.00758,0.00861,0.01095,0,0,0,0,0,0,0.00096,0.00097,0.00099,0.00103,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00104,0,0,0,0,0,0,0.00099,0.001,0.00101,0.00105,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00104,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00098,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00104,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.00101,0,0,0,0,0,0,0.0348,0.04434,0.05814,0.07671,0,0,0,0,0,0,0.02962,0.0383,0.05099,0.06774,0,0,0,0,0,0,0.03395,0.04469,0.0595,0.07958,0,0,0,0,0,0,0.03934,0.05153,0.06825,0.09091,0,0,0,0,0,0,0.01511,0.02254,0.03298,0.04602,0,0,0,0,0,0,0.01931,0.02779,0.0396,0.05474,0,0,0,0,0,0,0.01418,0.02136,0.03155,0.04416,0,0,0,0,0,0,0.02222,0.03058,0.04231,0.05748,0,0,0,0,0,0,0.01346,0.0197,0.02861,0.03942,0 +Compact car,PH40E,2035,0,0,0,0,0,0,0.01447,0.01461,0.01484,0.01535,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01573,0,0,0,0,0,0,0.01621,0.01634,0.01658,0.01707,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01464,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01642,0,0,0,0,0,0,0.01463,0.01473,0.0149,0.01524,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01511,0,0,0,0,0,0,0.01529,0.0154,0.01557,0.01595,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01554,0,0,0,0,0,0,0.0111,0.00688,0.00539,0.00588,0,0,0,0,0,0,0.00955,0.00602,0.0048,0.00525,0,0,0,0,0,0,0.01085,0.00702,0.00561,0.00616,0,0,0,0,0,0,0.0125,0.00805,0.00639,0.007,0,0,0,0,0,0,0.00517,0.00385,0.00339,0.00378,0,0,0,0,0,0,0.00644,0.00463,0.00397,0.00442,0,0,0,0,0,0,0.00491,0.0037,0.00328,0.00366,0,0,0,0,0,0,0.00732,0.00499,0.00415,0.00457,0,0,0,0,0,0,0.00467,0.00339,0.00295,0.00325,0,0,0,0,0,0,0.49328,0.70624,0.8941,1.09646,0,0,0,0,0,0,0.46713,0.68,0.86809,1.06284,0,0,0,0,0,0,0.49582,0.75568,0.98332,1.21476,0,0,0,0,0,0,0.54965,0.83636,1.09066,1.34289,0,0,0,0,0,0,0.3889,0.64721,0.86124,1.05453,0,0,0,0,0,0,0.417,0.68635,0.91358,1.12407,0,0,0,0,0,0,0.3993,0.66379,0.88217,1.07713,0,0,0,0,0,0,0.43277,0.67983,0.8857,1.08401,0,0,0,0,0,0,0.35938,0.57229,0.74057,0.89763,0,0,0,0,0,0,100.12908,101.16888,102.73959,105.62821,0,0,0,0,0,0,100.91068,101.87976,103.34754,106.06452,0,0,0,0,0,0,102.60822,103.61713,105.14496,107.96812,0,0,0,0,0,0,100.25694,101.3122,102.91196,105.856,0,0,0,0,0,0,102.37799,103.08425,104.16796,106.23975,0,0,0,0,0,0,100.86988,101.67348,102.90085,105.21364,0,0,0,0,0,0,101.3812,102.06357,103.11422,105.13019,0,0,0,0,0,0,101.65163,102.4718,103.72222,106.07383,0,0,0,0,0,0,99.56447,100.29083,101.39397,103.48375,0,0,0,0,0,0,0.00227,0.00251,0.00288,0.0035,0,0,0,0,0,0,0.00228,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00352,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.0023,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00356,0,0,0,0,0,0,0.00228,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00353,0,0,0,0,0,0,0.00226,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.02067,0.02962,0.04,0.05143,0,0,0,0,0,0,0.01987,0.02864,0.03886,0.05001,0,0,0,0,0,0,0.02038,0.03085,0.04171,0.05417,0,0,0,0,0,0,0.02183,0.03347,0.04524,0.05879,0,0,0,0,0,0,0.01562,0.02547,0.03539,0.04628,0,0,0,0,0,0,0.01766,0.02823,0.03889,0.05078,0,0,0,0,0,0,0.01595,0.02577,0.03585,0.04671,0,0,0,0,0,0,0.01848,0.02874,0.03933,0.05091,0,0,0,0,0,0,0.01557,0.02432,0.03355,0.04316,0,0,0,0,0,0,0.00126,0.0019,0.00266,0.0042,0,0,0,0,0,0,0.00121,0.00182,0.00253,0.00395,0,0,0,0,0,0,0.00124,0.00186,0.0026,0.0041,0,0,0,0,0,0,0.00128,0.00194,0.00272,0.00433,0,0,0,0,0,0,0.00107,0.00158,0.00216,0.00326,0,0,0,0,0,0,0.00109,0.00162,0.00222,0.0034,0,0,0,0,0,0,0.00103,0.00153,0.00208,0.00314,0,0,0,0,0,0,0.00113,0.00168,0.00232,0.00357,0,0,0,0,0,0,0.00103,0.00152,0.00206,0.0031,0,0,0,0,0,0,0.03736,0.03879,0.04053,0.04416,0,0,0,0,0,0,0.03841,0.03976,0.04136,0.04469,0,0,0,0,0,0,0.04175,0.04315,0.04483,0.04835,0,0,0,0,0,0,0.03519,0.03667,0.03848,0.0423,0,0,0,0,0,0,0.04065,0.04175,0.043,0.04549,0,0,0,0,0,0,0.03729,0.03844,0.03977,0.04245,0,0,0,0,0,0,0.03725,0.0383,0.03949,0.04185,0,0,0,0,0,0,0.03918,0.04039,0.0418,0.04466,0,0,0,0,0,0,0.03861,0.03965,0.04083,0.04314,0,0,0,0,0,0,0.00696,0.00823,0.00976,0.01298,0,0,0,0,0,0,0.00699,0.00818,0.0096,0.01255,0,0,0,0,0,0,0.00747,0.00871,0.0102,0.01331,0,0,0,0,0,0,0.00673,0.00804,0.00964,0.01302,0,0,0,0,0,0,0.00698,0.00796,0.00906,0.01126,0,0,0,0,0,0,0.00661,0.00763,0.00881,0.01117,0,0,0,0,0,0,0.0065,0.00743,0.00848,0.01057,0,0,0,0,0,0,0.00692,0.00799,0.00924,0.01177,0,0,0,0,0,0,0.00665,0.00758,0.00861,0.01066,0,0,0,0,0,0,0.00096,0.00097,0.00099,0.00102,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00102,0,0,0,0,0,0,0.00099,0.001,0.00101,0.00104,0,0,0,0,0,0,0.00096,0.00098,0.00099,0.00102,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00102,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00101,0,0,0,0,0,0,0.00098,0.00098,0.00099,0.00101,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00102,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.001,0,0,0,0,0,0,0.03472,0.0444,0.0582,0.07543,0,0,0,0,0,0,0.02956,0.03836,0.05103,0.0664,0,0,0,0,0,0,0.03388,0.04475,0.05956,0.07789,0,0,0,0,0,0,0.03926,0.05161,0.06831,0.0891,0,0,0,0,0,0,0.01509,0.02259,0.033,0.04421,0,0,0,0,0,0,0.01928,0.02785,0.03963,0.05284,0,0,0,0,0,0,0.01417,0.02141,0.03158,0.04236,0,0,0,0,0,0,0.02218,0.03064,0.04235,0.05583,0,0,0,0,0,0,0.01345,0.01974,0.02864,0.03794 +Compact car,PH40E,2040,0,0,0,0,0,0,0,0.01447,0.01461,0.01484,0,0,0,0,0,0,0,0.01493,0.01506,0.01527,0,0,0,0,0,0,0,0.01621,0.01634,0.01658,0,0,0,0,0,0,0,0.01368,0.01383,0.01409,0,0,0,0,0,0,0,0.01589,0.01598,0.01612,0,0,0,0,0,0,0,0.01463,0.01473,0.0149,0,0,0,0,0,0,0,0.01459,0.01467,0.01481,0,0,0,0,0,0,0,0.01529,0.0154,0.01557,0,0,0,0,0,0,0,0.01504,0.01512,0.01526,0,0,0,0,0,0,0,0.01111,0.00688,0.00539,0,0,0,0,0,0,0,0.00955,0.00602,0.0048,0,0,0,0,0,0,0,0.01086,0.00702,0.0056,0,0,0,0,0,0,0,0.0125,0.00805,0.00639,0,0,0,0,0,0,0,0.00517,0.00385,0.00339,0,0,0,0,0,0,0,0.00644,0.00463,0.00397,0,0,0,0,0,0,0,0.00491,0.00369,0.00328,0,0,0,0,0,0,0,0.00732,0.00499,0.00414,0,0,0,0,0,0,0,0.00468,0.00339,0.00295,0,0,0,0,0,0,0,0.49262,0.70571,0.89387,0,0,0,0,0,0,0,0.46647,0.67949,0.86788,0,0,0,0,0,0,0,0.49507,0.75507,0.98309,0,0,0,0,0,0,0,0.54881,0.83568,1.0904,0,0,0,0,0,0,0,0.38823,0.64672,0.8611,0,0,0,0,0,0,0,0.41629,0.68581,0.91342,0,0,0,0,0,0,0,0.39863,0.66331,0.88203,0,0,0,0,0,0,0,0.43209,0.67933,0.88553,0,0,0,0,0,0,0,0.3588,0.5719,0.74045,0,0,0,0,0,0,0,100.12258,101.16072,102.73451,0,0,0,0,0,0,0,100.90455,101.87217,103.34298,0,0,0,0,0,0,0,102.60183,103.60905,105.13987,0,0,0,0,0,0,0,100.25026,101.30379,102.90675,0,0,0,0,0,0,0,102.37347,103.07861,104.16463,0,0,0,0,0,0,0,100.86473,101.66702,102.89697,0,0,0,0,0,0,0,101.37673,102.05796,103.11102,0,0,0,0,0,0,0,101.64635,102.46522,103.71813,0,0,0,0,0,0,0,99.55975,100.28504,101.39044,0,0,0,0,0,0,0,0.00227,0.00251,0.00287,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00228,0.00253,0.0029,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.0023,0.00255,0.00292,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.00226,0.0025,0.00286,0,0,0,0,0,0,0,0.00845,0.00983,0.01264,0,0,0,0,0,0,0,0.00847,0.00986,0.01267,0,0,0,0,0,0,0,0.00849,0.00988,0.01271,0,0,0,0,0,0,0,0.00839,0.00977,0.01256,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.00842,0.0098,0.0126,0,0,0,0,0,0,0,0.00844,0.00983,0.01264,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.0085,0.00989,0.01272,0,0,0,0,0,0,0,0.02065,0.02958,0.03999,0,0,0,0,0,0,0,0.01985,0.0286,0.03885,0,0,0,0,0,0,0,0.02035,0.03081,0.04169,0,0,0,0,0,0,0,0.0218,0.03342,0.04523,0,0,0,0,0,0,0,0.0156,0.02543,0.03538,0,0,0,0,0,0,0,0.01764,0.02818,0.03888,0,0,0,0,0,0,0,0.01593,0.02572,0.03584,0,0,0,0,0,0,0,0.01845,0.0287,0.03932,0,0,0,0,0,0,0,0.01555,0.02429,0.03354,0,0,0,0,0,0,0,0.00126,0.00191,0.00266,0,0,0,0,0,0,0,0.00121,0.00182,0.00253,0,0,0,0,0,0,0,0.00123,0.00187,0.0026,0,0,0,0,0,0,0,0.00128,0.00194,0.00273,0,0,0,0,0,0,0,0.00106,0.00158,0.00216,0,0,0,0,0,0,0,0.00109,0.00162,0.00223,0,0,0,0,0,0,0,0.00103,0.00153,0.00208,0,0,0,0,0,0,0,0.00112,0.00168,0.00232,0,0,0,0,0,0,0,0.00102,0.00152,0.00206,0,0,0,0,0,0,0,0.03735,0.0388,0.04054,0,0,0,0,0,0,0,0.0384,0.03976,0.04137,0,0,0,0,0,0,0,0.04174,0.04315,0.04484,0,0,0,0,0,0,0,0.03518,0.03667,0.03849,0,0,0,0,0,0,0,0.04064,0.04176,0.04301,0,0,0,0,0,0,0,0.03728,0.03845,0.03978,0,0,0,0,0,0,0,0.03724,0.0383,0.0395,0,0,0,0,0,0,0,0.03917,0.04039,0.0418,0,0,0,0,0,0,0,0.03861,0.03965,0.04083,0,0,0,0,0,0,0,0.00695,0.00823,0.00977,0,0,0,0,0,0,0,0.00698,0.00818,0.00961,0,0,0,0,0,0,0,0.00746,0.00871,0.01021,0,0,0,0,0,0,0,0.00672,0.00804,0.00965,0,0,0,0,0,0,0,0.00698,0.00796,0.00907,0,0,0,0,0,0,0,0.00661,0.00763,0.00881,0,0,0,0,0,0,0,0.00649,0.00743,0.00849,0,0,0,0,0,0,0,0.00691,0.00799,0.00924,0,0,0,0,0,0,0,0.00665,0.00757,0.00861,0,0,0,0,0,0,0,0.00096,0.00097,0.00099,0,0,0,0,0,0,0,0.00097,0.00098,0.00099,0,0,0,0,0,0,0,0.00099,0.001,0.00101,0,0,0,0,0,0,0,0.00096,0.00098,0.00099,0,0,0,0,0,0,0,0.00099,0.00099,0.001,0,0,0,0,0,0,0,0.00097,0.00098,0.00099,0,0,0,0,0,0,0,0.00098,0.00098,0.00099,0,0,0,0,0,0,0,0.00098,0.00099,0.001,0,0,0,0,0,0,0,0.00096,0.00097,0.00098,0,0,0,0,0,0,0,0.03468,0.04435,0.05817,0,0,0,0,0,0,0,0.02952,0.03831,0.05101,0,0,0,0,0,0,0,0.03384,0.0447,0.05953,0,0,0,0,0,0,0,0.03921,0.05154,0.06828,0,0,0,0,0,0,0,0.01507,0.02256,0.03299,0,0,0,0,0,0,0,0.01926,0.02781,0.03962,0,0,0,0,0,0,0,0.01415,0.02137,0.03157,0,0,0,0,0,0,0,0.02215,0.0306,0.04233,0,0,0,0,0,0,0,0.01343,0.01971,0.02862 +Compact car,PH40E,2045,0,0,0,0,0,0,0,0,0.01447,0.01461,0,0,0,0,0,0,0,0,0.01493,0.01506,0,0,0,0,0,0,0,0,0.01621,0.01634,0,0,0,0,0,0,0,0,0.01368,0.01383,0,0,0,0,0,0,0,0,0.01589,0.01598,0,0,0,0,0,0,0,0,0.01463,0.01473,0,0,0,0,0,0,0,0,0.01459,0.01467,0,0,0,0,0,0,0,0,0.01529,0.0154,0,0,0,0,0,0,0,0,0.01504,0.01512,0,0,0,0,0,0,0,0,0.01111,0.00688,0,0,0,0,0,0,0,0,0.00955,0.00602,0,0,0,0,0,0,0,0,0.01086,0.00702,0,0,0,0,0,0,0,0,0.0125,0.00805,0,0,0,0,0,0,0,0,0.00517,0.00385,0,0,0,0,0,0,0,0,0.00644,0.00463,0,0,0,0,0,0,0,0,0.00491,0.00369,0,0,0,0,0,0,0,0,0.00732,0.00499,0,0,0,0,0,0,0,0,0.00468,0.00339,0,0,0,0,0,0,0,0,0.4922,0.70558,0,0,0,0,0,0,0,0,0.46607,0.67937,0,0,0,0,0,0,0,0,0.4946,0.75492,0,0,0,0,0,0,0,0,0.5483,0.83552,0,0,0,0,0,0,0,0,0.38784,0.64659,0,0,0,0,0,0,0,0,0.41587,0.68568,0,0,0,0,0,0,0,0,0.39823,0.66318,0,0,0,0,0,0,0,0,0.43167,0.67921,0,0,0,0,0,0,0,0,0.35846,0.57181,0,0,0,0,0,0,0,0,100.1174,101.15894,0,0,0,0,0,0,0,0,100.90011,101.87099,0,0,0,0,0,0,0,0,102.59679,103.60737,0,0,0,0,0,0,0,0,100.24505,101.30215,0,0,0,0,0,0,0,0,102.36969,103.07715,0,0,0,0,0,0,0,0,100.86083,101.6658,0,0,0,0,0,0,0,0,101.37305,102.05673,0,0,0,0,0,0,0,0,101.6424,102.46407,0,0,0,0,0,0,0,0,99.55584,100.28345,0,0,0,0,0,0,0,0,0.00227,0.00251,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00228,0.00253,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.0023,0.00255,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00226,0.0025,0,0,0,0,0,0,0,0,0.00845,0.00983,0,0,0,0,0,0,0,0,0.00847,0.00985,0,0,0,0,0,0,0,0,0.00849,0.00988,0,0,0,0,0,0,0,0,0.00839,0.00976,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.00842,0.0098,0,0,0,0,0,0,0,0,0.00844,0.00983,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.0085,0.00989,0,0,0,0,0,0,0,0,0.02064,0.02957,0,0,0,0,0,0,0,0,0.01984,0.02858,0,0,0,0,0,0,0,0,0.02033,0.03079,0,0,0,0,0,0,0,0,0.02178,0.03341,0,0,0,0,0,0,0,0,0.01558,0.02541,0,0,0,0,0,0,0,0,0.01762,0.02817,0,0,0,0,0,0,0,0,0.01592,0.02571,0,0,0,0,0,0,0,0,0.01844,0.02869,0,0,0,0,0,0,0,0,0.01554,0.02427,0,0,0,0,0,0,0,0,0.00126,0.00191,0,0,0,0,0,0,0,0,0.00121,0.00182,0,0,0,0,0,0,0,0,0.00123,0.00187,0,0,0,0,0,0,0,0,0.00128,0.00195,0,0,0,0,0,0,0,0,0.00106,0.00159,0,0,0,0,0,0,0,0,0.00109,0.00163,0,0,0,0,0,0,0,0,0.00103,0.00154,0,0,0,0,0,0,0,0,0.00112,0.00169,0,0,0,0,0,0,0,0,0.00102,0.00152,0,0,0,0,0,0,0,0,0.03735,0.0388,0,0,0,0,0,0,0,0,0.0384,0.03976,0,0,0,0,0,0,0,0,0.04174,0.04316,0,0,0,0,0,0,0,0,0.03518,0.03669,0,0,0,0,0,0,0,0,0.04065,0.04176,0,0,0,0,0,0,0,0,0.03729,0.03845,0,0,0,0,0,0,0,0,0.03724,0.03831,0,0,0,0,0,0,0,0,0.03917,0.04039,0,0,0,0,0,0,0,0,0.03861,0.03965,0,0,0,0,0,0,0,0,0.00695,0.00824,0,0,0,0,0,0,0,0,0.00698,0.00819,0,0,0,0,0,0,0,0,0.00746,0.00872,0,0,0,0,0,0,0,0,0.00672,0.00805,0,0,0,0,0,0,0,0,0.00698,0.00797,0,0,0,0,0,0,0,0,0.00661,0.00764,0,0,0,0,0,0,0,0,0.00649,0.00743,0,0,0,0,0,0,0,0,0.00692,0.008,0,0,0,0,0,0,0,0,0.00665,0.00757,0,0,0,0,0,0,0,0,0.00096,0.00097,0,0,0,0,0,0,0,0,0.00097,0.00098,0,0,0,0,0,0,0,0,0.00099,0.001,0,0,0,0,0,0,0,0,0.00096,0.00098,0,0,0,0,0,0,0,0,0.00099,0.00099,0,0,0,0,0,0,0,0,0.00097,0.00098,0,0,0,0,0,0,0,0,0.00098,0.00098,0,0,0,0,0,0,0,0,0.00098,0.00099,0,0,0,0,0,0,0,0,0.00096,0.00097,0,0,0,0,0,0,0,0,0.03465,0.04434,0,0,0,0,0,0,0,0,0.0295,0.0383,0,0,0,0,0,0,0,0,0.03381,0.04468,0,0,0,0,0,0,0,0,0.03918,0.05153,0,0,0,0,0,0,0,0,0.01506,0.02255,0,0,0,0,0,0,0,0,0.01924,0.0278,0,0,0,0,0,0,0,0,0.01413,0.02136,0,0,0,0,0,0,0,0,0.02213,0.03059,0,0,0,0,0,0,0,0,0.01342,0.0197 +Compact car,PH40E,2050,0,0,0,0,0,0,0,0,0,0.01447,0,0,0,0,0,0,0,0,0,0.01493,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.01368,0,0,0,0,0,0,0,0,0,0.01589,0,0,0,0,0,0,0,0,0,0.01463,0,0,0,0,0,0,0,0,0,0.01459,0,0,0,0,0,0,0,0,0,0.01529,0,0,0,0,0,0,0,0,0,0.01504,0,0,0,0,0,0,0,0,0,0.01111,0,0,0,0,0,0,0,0,0,0.00955,0,0,0,0,0,0,0,0,0,0.01086,0,0,0,0,0,0,0,0,0,0.0125,0,0,0,0,0,0,0,0,0,0.00517,0,0,0,0,0,0,0,0,0,0.00644,0,0,0,0,0,0,0,0,0,0.00491,0,0,0,0,0,0,0,0,0,0.00732,0,0,0,0,0,0,0,0,0,0.00468,0,0,0,0,0,0,0,0,0,0.4922,0,0,0,0,0,0,0,0,0,0.46607,0,0,0,0,0,0,0,0,0,0.49461,0,0,0,0,0,0,0,0,0,0.5483,0,0,0,0,0,0,0,0,0,0.38784,0,0,0,0,0,0,0,0,0,0.41587,0,0,0,0,0,0,0,0,0,0.39823,0,0,0,0,0,0,0,0,0,0.43167,0,0,0,0,0,0,0,0,0,0.35846,0,0,0,0,0,0,0,0,0,100.11735,0,0,0,0,0,0,0,0,0,100.9001,0,0,0,0,0,0,0,0,0,102.59675,0,0,0,0,0,0,0,0,0,100.24512,0,0,0,0,0,0,0,0,0,102.36963,0,0,0,0,0,0,0,0,0,100.86081,0,0,0,0,0,0,0,0,0,101.37301,0,0,0,0,0,0,0,0,0,101.64239,0,0,0,0,0,0,0,0,0,99.55584,0,0,0,0,0,0,0,0,0,0.00227,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00226,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00847,0,0,0,0,0,0,0,0,0,0.00849,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.00842,0,0,0,0,0,0,0,0,0,0.00844,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.0085,0,0,0,0,0,0,0,0,0,0.02064,0,0,0,0,0,0,0,0,0,0.01984,0,0,0,0,0,0,0,0,0,0.02033,0,0,0,0,0,0,0,0,0,0.02178,0,0,0,0,0,0,0,0,0,0.01558,0,0,0,0,0,0,0,0,0,0.01762,0,0,0,0,0,0,0,0,0,0.01592,0,0,0,0,0,0,0,0,0,0.01844,0,0,0,0,0,0,0,0,0,0.01554,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00124,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00107,0,0,0,0,0,0,0,0,0,0.00109,0,0,0,0,0,0,0,0,0,0.00103,0,0,0,0,0,0,0,0,0,0.00113,0,0,0,0,0,0,0,0,0,0.00102,0,0,0,0,0,0,0,0,0,0.03735,0,0,0,0,0,0,0,0,0,0.0384,0,0,0,0,0,0,0,0,0,0.04175,0,0,0,0,0,0,0,0,0,0.03519,0,0,0,0,0,0,0,0,0,0.04065,0,0,0,0,0,0,0,0,0,0.03729,0,0,0,0,0,0,0,0,0,0.03725,0,0,0,0,0,0,0,0,0,0.03917,0,0,0,0,0,0,0,0,0,0.03861,0,0,0,0,0,0,0,0,0,0.00696,0,0,0,0,0,0,0,0,0,0.00699,0,0,0,0,0,0,0,0,0,0.00747,0,0,0,0,0,0,0,0,0,0.00673,0,0,0,0,0,0,0,0,0,0.00698,0,0,0,0,0,0,0,0,0,0.00661,0,0,0,0,0,0,0,0,0,0.00649,0,0,0,0,0,0,0,0,0,0.00692,0,0,0,0,0,0,0,0,0,0.00665,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00097,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00097,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.03465,0,0,0,0,0,0,0,0,0,0.0295,0,0,0,0,0,0,0,0,0,0.03381,0,0,0,0,0,0,0,0,0,0.03918,0,0,0,0,0,0,0,0,0,0.01506,0,0,0,0,0,0,0,0,0,0.01924,0,0,0,0,0,0,0,0,0,0.01413,0,0,0,0,0,0,0,0,0,0.02213,0,0,0,0,0,0,0,0,0,0.01342 +Compact car,PH40G,1990,0.04549,0,0,0,0,0,0,0,0,0,0.04151,0,0,0,0,0,0,0,0,0,0.0463,0,0,0,0,0,0,0,0,0,0.04835,0,0,0,0,0,0,0,0,0,0.03038,0,0,0,0,0,0,0,0,0,0.03235,0,0,0,0,0,0,0,0,0,0.02837,0,0,0,0,0,0,0,0,0,0.03565,0,0,0,0,0,0,0,0,0,0.0284,0,0,0,0,0,0,0,0,0,0.0357,0,0,0,0,0,0,0,0,0,0.03054,0,0,0,0,0,0,0,0,0,0.03853,0,0,0,0,0,0,0,0,0,0.03948,0,0,0,0,0,0,0,0,0,0.03248,0,0,0,0,0,0,0,0,0,0.03592,0,0,0,0,0,0,0,0,0,0.03325,0,0,0,0,0,0,0,0,0,0.03242,0,0,0,0,0,0,0,0,0,0.02783,0,0,0,0,0,0,0,0,0,22.72013,0,0,0,0,0,0,0,0,0,20.14951,0,0,0,0,0,0,0,0,0,24.87479,0,0,0,0,0,0,0,0,0,25.76437,0,0,0,0,0,0,0,0,0,21.34183,0,0,0,0,0,0,0,0,0,23.61136,0,0,0,0,0,0,0,0,0,22.23047,0,0,0,0,0,0,0,0,0,21.35022,0,0,0,0,0,0,0,0,0,17.8,0,0,0,0,0,0,0,0,0,230.59426,0,0,0,0,0,0,0,0,0,231.47444,0,0,0,0,0,0,0,0,0,235.78675,0,0,0,0,0,0,0,0,0,230.51247,0,0,0,0,0,0,0,0,0,231.63652,0,0,0,0,0,0,0,0,0,229.26266,0,0,0,0,0,0,0,0,0,228.72841,0,0,0,0,0,0,0,0,0,231.28683,0,0,0,0,0,0,0,0,0,226.25306,0,0,0,0,0,0,0,0,0,0.02991,0,0,0,0,0,0,0,0,0,0.03011,0,0,0,0,0,0,0,0,0,0.03053,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0.03051,0,0,0,0,0,0,0,0,0,0.03036,0,0,0,0,0,0,0,0,0,0.03009,0,0,0,0,0,0,0,0,0,0.03036,0,0,0,0,0,0,0,0,0,0.02991,0,0,0,0,0,0,0,0,0,0.01814,0,0,0,0,0,0,0,0,0,0.01818,0,0,0,0,0,0,0,0,0,0.0182,0,0,0,0,0,0,0,0,0,0.01807,0,0,0,0,0,0,0,0,0,0.01818,0,0,0,0,0,0,0,0,0,0.01811,0,0,0,0,0,0,0,0,0,0.01814,0,0,0,0,0,0,0,0,0,0.01819,0,0,0,0,0,0,0,0,0,0.01821,0,0,0,0,0,0,0,0,0,1.38305,0,0,0,0,0,0,0,0,0,1.31666,0,0,0,0,0,0,0,0,0,1.46314,0,0,0,0,0,0,0,0,0,1.53871,0,0,0,0,0,0,0,0,0,1.43053,0,0,0,0,0,0,0,0,0,1.50222,0,0,0,0,0,0,0,0,0,1.42807,0,0,0,0,0,0,0,0,0,1.50865,0,0,0,0,0,0,0,0,0,1.24169,0,0,0,0,0,0,0,0,0,0.10603,0,0,0,0,0,0,0,0,0,0.0928,0,0,0,0,0,0,0,0,0,0.10292,0,0,0,0,0,0,0,0,0,0.11431,0,0,0,0,0,0,0,0,0,0.0552,0,0,0,0,0,0,0,0,0,0.06489,0,0,0,0,0,0,0,0,0,0.05325,0,0,0,0,0,0,0,0,0,0.07345,0,0,0,0,0,0,0,0,0,0.05257,0,0,0,0,0,0,0,0,0,0.27153,0,0,0,0,0,0,0,0,0,0.24242,0,0,0,0,0,0,0,0,0,0.27058,0,0,0,0,0,0,0,0,0,0.29048,0,0,0,0,0,0,0,0,0,0.15959,0,0,0,0,0,0,0,0,0,0.1785,0,0,0,0,0,0,0,0,0,0.15158,0,0,0,0,0,0,0,0,0,0.19977,0,0,0,0,0,0,0,0,0,0.15024,0,0,0,0,0,0,0,0,0,0.21411,0,0,0,0,0,0,0,0,0,0.18747,0,0,0,0,0,0,0,0,0,0.2099,0,0,0,0,0,0,0,0,0,0.23257,0,0,0,0,0,0,0,0,0,0.1122,0,0,0,0,0,0,0,0,0,0.13152,0,0,0,0,0,0,0,0,0,0.10763,0,0,0,0,0,0,0,0,0,0.14899,0,0,0,0,0,0,0,0,0,0.1054,0,0,0,0,0,0,0,0,0,0.01015,0,0,0,0,0,0,0,0,0,0.01158,0,0,0,0,0,0,0,0,0,0.01648,0,0,0,0,0,0,0,0,0,0.01505,0,0,0,0,0,0,0,0,0,0.01339,0,0,0,0,0,0,0,0,0,0.01475,0,0,0,0,0,0,0,0,0,0.01335,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.00613,0,0,0,0,0,0,0,0,0,2.13629,0,0,0,0,0,0,0,0,0,1.90877,0,0,0,0,0,0,0,0,0,2.27289,0,0,0,0,0,0,0,0,0,2.35241,0,0,0,0,0,0,0,0,0,2.10809,0,0,0,0,0,0,0,0,0,2.24426,0,0,0,0,0,0,0,0,0,2.15299,0,0,0,0,0,0,0,0,0,2.12195,0,0,0,0,0,0,0,0,0,1.84561,0,0,0,0,0,0,0,0,0 +Compact car,PH40G,1995,0.01989,0.02979,0,0,0,0,0,0,0,0,0.01959,0.02807,0,0,0,0,0,0,0,0,0.02147,0.03104,0,0,0,0,0,0,0,0,0.0197,0.03078,0,0,0,0,0,0,0,0,0.01845,0.02308,0,0,0,0,0,0,0,0,0.01775,0.02341,0,0,0,0,0,0,0,0,0.01703,0.02144,0,0,0,0,0,0,0,0,0.01886,0.02536,0,0,0,0,0,0,0,0,0.01741,0.02168,0,0,0,0,0,0,0,0,0.01972,0.02288,0,0,0,0,0,0,0,0,0.01832,0.02042,0,0,0,0,0,0,0,0,0.02214,0.02533,0,0,0,0,0,0,0,0,0.02282,0.02724,0,0,0,0,0,0,0,0,0.01878,0.02132,0,0,0,0,0,0,0,0,0.02035,0.02362,0,0,0,0,0,0,0,0,0.01861,0.02151,0,0,0,0,0,0,0,0,0.01917,0.02219,0,0,0,0,0,0,0,0,0.01543,0.01733,0,0,0,0,0,0,0,0,8.39442,11.44278,0,0,0,0,0,0,0,0,7.99397,10.48013,0,0,0,0,0,0,0,0,9.60589,12.61336,0,0,0,0,0,0,0,0,10.11218,13.50212,0,0,0,0,0,0,0,0,8.39972,10.94605,0,0,0,0,0,0,0,0,9.09698,11.99459,0,0,0,0,0,0,0,0,8.62645,11.31589,0,0,0,0,0,0,0,0,8.49118,11.40326,0,0,0,0,0,0,0,0,6.6501,8.94901,0,0,0,0,0,0,0,0,189.19132,198.05442,0,0,0,0,0,0,0,0,190.6211,199.19465,0,0,0,0,0,0,0,0,193.94151,202.82409,0,0,0,0,0,0,0,0,189.14548,198.01516,0,0,0,0,0,0,0,0,193.18868,200.61761,0,0,0,0,0,0,0,0,190.26302,198.05571,0,0,0,0,0,0,0,0,191.05833,198.25331,0,0,0,0,0,0,0,0,191.87396,199.77843,0,0,0,0,0,0,0,0,188.15266,195.58748,0,0,0,0,0,0,0,0,0.02197,0.0268,0,0,0,0,0,0,0,0,0.02213,0.02697,0,0,0,0,0,0,0,0,0.02248,0.02733,0,0,0,0,0,0,0,0,0.02199,0.0269,0,0,0,0,0,0,0,0,0.02246,0.02732,0,0,0,0,0,0,0,0,0.0223,0.02721,0,0,0,0,0,0,0,0,0.02211,0.02697,0,0,0,0,0,0,0,0,0.02233,0.0272,0,0,0,0,0,0,0,0,0.022,0.02679,0,0,0,0,0,0,0,0,0.0509,0.04166,0,0,0,0,0,0,0,0,0.051,0.04174,0,0,0,0,0,0,0,0,0.05108,0.0418,0,0,0,0,0,0,0,0,0.05062,0.04143,0,0,0,0,0,0,0,0,0.05102,0.04175,0,0,0,0,0,0,0,0,0.05075,0.04154,0,0,0,0,0,0,0,0,0.05089,0.04165,0,0,0,0,0,0,0,0,0.05105,0.04178,0,0,0,0,0,0,0,0,0.05114,0.04185,0,0,0,0,0,0,0,0,1.03966,1.25011,0,0,0,0,0,0,0,0,1.01379,1.18284,0,0,0,0,0,0,0,0,1.12147,1.28489,0,0,0,0,0,0,0,0,1.16818,1.40584,0,0,0,0,0,0,0,0,1.08866,1.303,0,0,0,0,0,0,0,0,1.14403,1.35827,0,0,0,0,0,0,0,0,1.09383,1.30471,0,0,0,0,0,0,0,0,1.16173,1.38255,0,0,0,0,0,0,0,0,0.95791,1.12914,0,0,0,0,0,0,0,0,0.02508,0.05885,0,0,0,0,0,0,0,0,0.02203,0.0515,0,0,0,0,0,0,0,0,0.02435,0.05702,0,0,0,0,0,0,0,0,0.0268,0.06323,0,0,0,0,0,0,0,0,0.0133,0.03067,0,0,0,0,0,0,0,0,0.0155,0.03599,0,0,0,0,0,0,0,0,0.01286,0.02963,0,0,0,0,0,0,0,0,0.01753,0.04078,0,0,0,0,0,0,0,0,0.01277,0.02935,0,0,0,0,0,0,0,0,0.08957,0.16468,0,0,0,0,0,0,0,0,0.08393,0.14908,0,0,0,0,0,0,0,0,0.09281,0.1652,0,0,0,0,0,0,0,0,0.09174,0.17345,0,0,0,0,0,0,0,0,0.06711,0.10476,0,0,0,0,0,0,0,0,0.06867,0.11327,0,0,0,0,0,0,0,0,0.06275,0.09913,0,0,0,0,0,0,0,0,0.07498,0.12623,0,0,0,0,0,0,0,0,0.06362,0.09944,0,0,0,0,0,0,0,0,0.05315,0.11959,0,0,0,0,0,0,0,0,0.04726,0.1049,0,0,0,0,0,0,0,0,0.05264,0.11668,0,0,0,0,0,0,0,0,0.05676,0.12904,0,0,0,0,0,0,0,0,0.03039,0.0637,0,0,0,0,0,0,0,0,0.03438,0.07383,0,0,0,0,0,0,0,0,0.02906,0.06124,0,0,0,0,0,0,0,0,0.0386,0.08393,0,0,0,0,0,0,0,0,0.02878,0.06047,0,0,0,0,0,0,0,0,0.00831,0.00421,0,0,0,0,0,0,0,0,0.00952,0.00427,0,0,0,0,0,0,0,0,0.01357,0.00444,0,0,0,0,0,0,0,0,0.01235,0.00741,0,0,0,0,0,0,0,0,0.01116,0.00437,0,0,0,0,0,0,0,0,0.01224,0.00433,0,0,0,0,0,0,0,0,0.01115,0.0059,0,0,0,0,0,0,0,0,0.01094,0.00673,0,0,0,0,0,0,0,0,0.00507,0.00243,0,0,0,0,0,0,0,0,0.90648,1.29208,0,0,0,0,0,0,0,0,0.87198,1.21773,0,0,0,0,0,0,0,0,1.00633,1.41289,0,0,0,0,0,0,0,0,1.04333,1.49686,0,0,0,0,0,0,0,0,0.93714,1.36023,0,0,0,0,0,0,0,0,0.97336,1.42052,0,0,0,0,0,0,0,0,0.92877,1.35964,0,0,0,0,0,0,0,0,0.96088,1.39294,0,0,0,0,0,0,0,0,0.79594,1.15652,0,0,0,0,0,0,0,0 +Compact car,PH40G,2000,0.01642,0.01782,0.02479,0,0,0,0,0,0,0,0.0166,0.0178,0.02377,0,0,0,0,0,0,0,0.01809,0.01945,0.02621,0,0,0,0,0,0,0,0.01582,0.01737,0.02518,0,0,0,0,0,0,0,0.01678,0.01744,0.02068,0,0,0,0,0,0,0,0.01571,0.01652,0.02048,0,0,0,0,0,0,0,0.01543,0.01607,0.01915,0,0,0,0,0,0,0,0.01655,0.01748,0.02204,0,0,0,0,0,0,0,0.01587,0.01649,0.01948,0,0,0,0,0,0,0,0.009,0.00962,0.01549,0,0,0,0,0,0,0,0.00844,0.00922,0.01394,0,0,0,0,0,0,0,0.01048,0.01125,0.01778,0,0,0,0,0,0,0,0.01093,0.01203,0.01844,0,0,0,0,0,0,0,0.00796,0.00916,0.01454,0,0,0,0,0,0,0,0.00882,0.01,0.0158,0,0,0,0,0,0,0,0.00786,0.00921,0.01404,0,0,0,0,0,0,0,0.00859,0.00975,0.01474,0,0,0,0,0,0,0,0.00672,0.00796,0.01152,0,0,0,0,0,0,0,3.9868,5.35612,8.15553,0,0,0,0,0,0,0,3.81518,5.18106,7.60812,0,0,0,0,0,0,0,4.62373,6.19367,9.31628,0,0,0,0,0,0,0,4.92951,6.63182,9.70105,0,0,0,0,0,0,0,3.54079,5.08715,7.73638,0,0,0,0,0,0,0,3.92384,5.54761,8.36929,0,0,0,0,0,0,0,3.60247,5.24487,7.70978,0,0,0,0,0,0,0,3.82067,5.42492,7.95733,0,0,0,0,0,0,0,2.92447,4.36244,6.27296,0,0,0,0,0,0,0,188.44958,190.02349,195.10774,0,0,0,0,0,0,0,190.11325,191.57845,196.32648,0,0,0,0,0,0,0,193.35971,194.89662,199.85431,0,0,0,0,0,0,0,188.5208,190.10393,195.21411,0,0,0,0,0,0,0,193.52235,194.57322,198.06436,0,0,0,0,0,0,0,190.32159,191.53046,195.46397,0,0,0,0,0,0,0,191.51759,192.52421,195.85872,0,0,0,0,0,0,0,191.84787,193.07733,197.10666,0,0,0,0,0,0,0,188.15996,189.25082,192.87472,0,0,0,0,0,0,0,0.01222,0.01359,0.0207,0,0,0,0,0,0,0,0.01227,0.01364,0.02079,0,0,0,0,0,0,0,0.01236,0.01372,0.02093,0,0,0,0,0,0,0,0.01234,0.01374,0.0209,0,0,0,0,0,0,0,0.01237,0.01374,0.02095,0,0,0,0,0,0,0,0.01242,0.01381,0.02103,0,0,0,0,0,0,0,0.01229,0.01367,0.02082,0,0,0,0,0,0,0,0.01236,0.01373,0.02093,0,0,0,0,0,0,0,0.01216,0.01351,0.0206,0,0,0,0,0,0,0,0.02971,0.03887,0.04125,0,0,0,0,0,0,0,0.02978,0.03895,0.04134,0,0,0,0,0,0,0,0.02986,0.03906,0.04143,0,0,0,0,0,0,0,0.0295,0.03859,0.04099,0,0,0,0,0,0,0,0.02981,0.039,0.04138,0,0,0,0,0,0,0,0.02961,0.03873,0.04112,0,0,0,0,0,0,0,0.0297,0.03885,0.04124,0,0,0,0,0,0,0,0.02982,0.039,0.04139,0,0,0,0,0,0,0,0.02988,0.03909,0.04147,0,0,0,0,0,0,0,0.50063,0.66975,0.99957,0,0,0,0,0,0,0,0.49246,0.66525,0.97533,0,0,0,0,0,0,0,0.58088,0.73581,1.08051,0,0,0,0,0,0,0,0.60113,0.79343,1.13041,0,0,0,0,0,0,0,0.55095,0.73032,1.08321,0,0,0,0,0,0,0,0.57864,0.75297,1.1103,0,0,0,0,0,0,0,0.55923,0.74493,1.04943,0,0,0,0,0,0,0,0.58516,0.77557,1.10421,0,0,0,0,0,0,0,0.48049,0.65081,0.9123,0,0,0,0,0,0,0,0.01215,0.01778,0.04011,0,0,0,0,0,0,0,0.01068,0.01559,0.03505,0,0,0,0,0,0,0,0.01166,0.01706,0.0387,0,0,0,0,0,0,0,0.01271,0.01863,0.04276,0,0,0,0,0,0,0,0.00646,0.00938,0.02079,0,0,0,0,0,0,0,0.00744,0.01081,0.02428,0,0,0,0,0,0,0,0.00631,0.00914,0.02014,0,0,0,0,0,0,0,0.0085,0.01238,0.0277,0,0,0,0,0,0,0,0.00641,0.00928,0.02015,0,0,0,0,0,0,0,0.06077,0.07288,0.12322,0,0,0,0,0,0,0,0.05873,0.06923,0.11286,0,0,0,0,0,0,0,0.06439,0.07586,0.12467,0,0,0,0,0,0,0,0.06007,0.07293,0.12747,0,0,0,0,0,0,0,0.05217,0.05825,0.08337,0,0,0,0,0,0,0,0.05092,0.05799,0.08783,0,0,0,0,0,0,0,0.04847,0.05442,0.07846,0,0,0,0,0,0,0,0.05502,0.0633,0.09728,0,0,0,0,0,0,0,0.04988,0.05591,0.07961,0,0,0,0,0,0,0,0.02767,0.03839,0.08292,0,0,0,0,0,0,0,0.02497,0.03425,0.07285,0,0,0,0,0,0,0,0.0275,0.03765,0.08083,0,0,0,0,0,0,0,0.02874,0.04012,0.08837,0,0,0,0,0,0,0,0.01717,0.02255,0.04478,0,0,0,0,0,0,0,0.01867,0.02492,0.05132,0,0,0,0,0,0,0,0.01642,0.02169,0.04296,0,0,0,0,0,0,0,0.02094,0.02826,0.05832,0,0,0,0,0,0,0,0.01662,0.02196,0.04292,0,0,0,0,0,0,0,0.00827,0.00404,0.00373,0,0,0,0,0,0,0,0.00949,0.00411,0.00376,0,0,0,0,0,0,0,0.01353,0.00426,0.00382,0,0,0,0,0,0,0,0.01231,0.00713,0.00374,0,0,0,0,0,0,0,0.01118,0.00423,0.00379,0,0,0,0,0,0,0,0.01224,0.00419,0.00374,0,0,0,0,0,0,0,0.01118,0.00573,0.00375,0,0,0,0,0,0,0,0.01093,0.00651,0.00338,0,0,0,0,0,0,0,0.00507,0.00235,0.00173,0,0,0,0,0,0,0,0.36356,0.53193,1.0086,0,0,0,0,0,0,0,0.34289,0.51226,0.94818,0,0,0,0,0,0,0,0.40658,0.6037,1.12323,0,0,0,0,0,0,0,0.43461,0.64868,1.17318,0,0,0,0,0,0,0,0.31031,0.50338,1.02369,0,0,0,0,0,0,0,0.34102,0.54354,1.07094,0,0,0,0,0,0,0,0.30606,0.50141,0.9994,0,0,0,0,0,0,0,0.34889,0.54807,1.05471,0,0,0,0,0,0,0,0.26625,0.44256,0.8681,0,0,0,0,0,0,0 +Compact car,PH40G,2005,0.01497,0.01533,0.01605,0.02037,0,0,0,0,0,0,0.01539,0.01566,0.01628,0.02,0,0,0,0,0,0,0.01681,0.01681,0.01734,0.02186,0,0,0,0,0,0,0.01431,0.01461,0.01539,0.02022,0,0,0,0,0,0,0.01615,0.01634,0.01673,0.01872,0,0,0,0,0,0,0.01497,0.01509,0.0155,0.01802,0,0,0,0,0,0,0.01483,0.01498,0.01534,0.01721,0,0,0,0,0,0,0.01566,0.01581,0.01627,0.01917,0,0,0,0,0,0,0.01522,0.01534,0.01563,0.01756,0,0,0,0,0,0,0.00951,0.00695,0.00686,0.0102,0,0,0,0,0,0,0.00858,0.0062,0.00637,0.00929,0,0,0,0,0,0,0.0097,0.00696,0.00713,0.0111,0,0,0,0,0,0,0.01039,0.00855,0.00802,0.01215,0,0,0,0,0,0,0.00558,0.00467,0.00523,0.00844,0,0,0,0,0,0,0.00664,0.00535,0.00582,0.00936,0,0,0,0,0,0,0.00538,0.00497,0.00518,0.0082,0,0,0,0,0,0,0.0072,0.00597,0.00576,0.00924,0,0,0,0,0,0,0.00434,0.00369,0.00404,0.00731,0,0,0,0,0,0,1.82992,2.46,3.14088,5.18476,0,0,0,0,0,0,1.73633,2.37039,3.12657,4.96426,0,0,0,0,0,0,1.96984,2.88716,3.84579,5.92046,0,0,0,0,0,0,2.13253,3.18897,3.81821,6.35235,0,0,0,0,0,0,1.57474,2.34726,3.22812,5.04621,0,0,0,0,0,0,1.69804,2.55687,3.48391,5.40924,0,0,0,0,0,0,1.6147,2.58098,3.25589,5.08959,0,0,0,0,0,0,1.74613,2.79365,3.33378,5.27372,0,0,0,0,0,0,1.23986,2.16299,2.86645,4.36035,0,0,0,0,0,0,191.80721,192.6941,194.88706,198.23917,0,0,0,0,0,0,193.59354,194.41451,196.45786,199.48281,0,0,0,0,0,0,196.74021,197.60667,199.73374,202.96165,0,0,0,0,0,0,191.9413,192.82094,195.04558,198.45575,0,0,0,0,0,0,197.44024,198.00761,199.49386,201.30259,0,0,0,0,0,0,194.10321,194.76751,196.45968,198.71256,0,0,0,0,0,0,195.5612,196.09672,197.53215,199.20378,0,0,0,0,0,0,195.595,196.27102,197.99893,200.3284,0,0,0,0,0,0,191.95984,192.5657,194.09658,195.9978,0,0,0,0,0,0,0.00357,0.00385,0.00453,0.01104,0,0,0,0,0,0,0.00358,0.00386,0.00453,0.01106,0,0,0,0,0,0,0.00359,0.00386,0.00453,0.01109,0,0,0,0,0,0,0.00362,0.00391,0.0046,0.01119,0,0,0,0,0,0,0.00359,0.00387,0.00454,0.01111,0,0,0,0,0,0,0.00363,0.00392,0.0046,0.01121,0,0,0,0,0,0,0.00359,0.00387,0.00455,0.01109,0,0,0,0,0,0,0.0036,0.00388,0.00456,0.01113,0,0,0,0,0,0,0.00354,0.00382,0.00448,0.01094,0,0,0,0,0,0,0.01202,0.01368,0.01684,0.02396,0,0,0,0,0,0,0.01205,0.01371,0.01688,0.02402,0,0,0,0,0,0,0.01208,0.01375,0.01692,0.02408,0,0,0,0,0,0,0.01193,0.01359,0.01672,0.0238,0,0,0,0,0,0,0.01206,0.01373,0.0169,0.02404,0,0,0,0,0,0,0.01198,0.01363,0.01678,0.02388,0,0,0,0,0,0,0.01201,0.01368,0.01683,0.02396,0,0,0,0,0,0,0.01206,0.01373,0.0169,0.02405,0,0,0,0,0,0,0.01209,0.01376,0.01694,0.0241,0,0,0,0,0,0,0.13355,0.19597,0.25866,0.47844,0,0,0,0,0,0,0.13174,0.19112,0.25993,0.47163,0,0,0,0,0,0,0.15074,0.21462,0.28626,0.53329,0,0,0,0,0,0,0.14998,0.25031,0.30265,0.56795,0,0,0,0,0,0,0.13424,0.2049,0.27744,0.5267,0,0,0,0,0,0,0.143,0.21425,0.28723,0.54444,0,0,0,0,0,0,0.13535,0.21979,0.27491,0.51386,0,0,0,0,0,0,0.14719,0.23594,0.28416,0.54455,0,0,0,0,0,0,0.106,0.15681,0.20989,0.46364,0,0,0,0,0,0,0.004,0.00609,0.00864,0.02293,0,0,0,0,0,0,0.00367,0.00543,0.00769,0.02021,0,0,0,0,0,0,0.00428,0.00503,0.00708,0.02199,0,0,0,0,0,0,0.00441,0.00624,0.00888,0.02425,0,0,0,0,0,0,0.00256,0.00383,0.00545,0.01262,0,0,0,0,0,0,0.0029,0.00393,0.00557,0.01436,0,0,0,0,0,0,0.00247,0.00359,0.00509,0.01202,0,0,0,0,0,0,0.00315,0.00432,0.00612,0.01618,0,0,0,0,0,0,0.00225,0.00323,0.00455,0.01191,0,0,0,0,0,0,0.04324,0.04769,0.05344,0.08551,0,0,0,0,0,0,0.04371,0.04738,0.05244,0.08041,0,0,0,0,0,0,0.04842,0.04974,0.05428,0.08788,0,0,0,0,0,0,0.04203,0.04592,0.05186,0.0866,0,0,0,0,0,0,0.04386,0.04645,0.04998,0.06571,0,0,0,0,0,0,0.04121,0.04325,0.04685,0.06628,0,0,0,0,0,0,0.04032,0.04262,0.04586,0.06096,0,0,0,0,0,0,0.04355,0.04596,0.04987,0.07221,0,0,0,0,0,0,0.04119,0.04317,0.04599,0.06203,0,0,0,0,0,0,0.01216,0.0161,0.02119,0.04955,0,0,0,0,0,0,0.01167,0.01493,0.0194,0.04415,0,0,0,0,0,0,0.01336,0.01454,0.01856,0.04828,0,0,0,0,0,0,0.01278,0.01622,0.02148,0.05221,0,0,0,0,0,0,0.00982,0.01211,0.01524,0.02915,0,0,0,0,0,0,0.01008,0.01188,0.01506,0.03226,0,0,0,0,0,0,0.00921,0.01125,0.01411,0.02747,0,0,0,0,0,0,0.01079,0.01292,0.01638,0.03614,0,0,0,0,0,0,0.00893,0.01068,0.01317,0.02737,0,0,0,0,0,0,0.00841,0.0041,0.00373,0.00126,0,0,0,0,0,0,0.00967,0.00417,0.00376,0.00127,0,0,0,0,0,0,0.01377,0.00432,0.00382,0.00129,0,0,0,0,0,0,0.01253,0.00723,0.00373,0.00127,0,0,0,0,0,0,0.0114,0.00431,0.00382,0.00128,0,0,0,0,0,0,0.01249,0.00426,0.00376,0.00127,0,0,0,0,0,0,0.01141,0.00584,0.00378,0.00127,0,0,0,0,0,0,0.01114,0.00662,0.00339,0.00126,0,0,0,0,0,0,0.00517,0.00238,0.00174,0.00116,0,0,0,0,0,0,0.19757,0.21602,0.29852,0.65935,0,0,0,0,0,0,0.1776,0.19468,0.27627,0.62085,0,0,0,0,0,0,0.2007,0.21616,0.30664,0.70797,0,0,0,0,0,0,0.21597,0.26088,0.34141,0.76364,0,0,0,0,0,0,0.11337,0.14445,0.22669,0.61272,0,0,0,0,0,0,0.13505,0.16445,0.25069,0.65002,0,0,0,0,0,0,0.10772,0.14975,0.22161,0.59797,0,0,0,0,0,0,0.15328,0.19201,0.26498,0.66253,0,0,0,0,0,0,0.09296,0.12778,0.19833,0.55166,0,0,0,0,0,0 +Compact car,PH40G,2010,0,0.01475,0.0151,0.01571,0.01811,0,0,0,0,0,0,0.01517,0.01548,0.01602,0.01809,0,0,0,0,0,0,0.01636,0.01662,0.01736,0.01964,0,0,0,0,0,0,0.01399,0.01437,0.01505,0.01771,0,0,0,0,0,0,0.01605,0.01626,0.01658,0.01778,0,0,0,0,0,0,0.01478,0.01499,0.01541,0.01682,0,0,0,0,0,0,0.01472,0.01491,0.0152,0.01628,0,0,0,0,0,0,0.01545,0.01568,0.01615,0.01774,0,0,0,0,0,0,0.01512,0.01528,0.0156,0.01664,0,0,0,0,0,0,0.00785,0.00654,0.00565,0.00758,0,0,0,0,0,0,0.0068,0.00595,0.00516,0.00696,0,0,0,0,0,0,0.00742,0.00678,0.00583,0.00803,0,0,0,0,0,0,0.00935,0.00783,0.00675,0.00912,0,0,0,0,0,0,0.00468,0.00506,0.00447,0.00609,0,0,0,0,0,0,0.00521,0.0055,0.00485,0.00671,0,0,0,0,0,0,0.0049,0.00502,0.00445,0.00601,0,0,0,0,0,0,0.00617,0.00547,0.00497,0.00677,0,0,0,0,0,0,0.00394,0.00395,0.00423,0.00557,0,0,0,0,0,0,1.40766,2.14257,2.85483,3.98256,0,0,0,0,0,0,1.32048,2.10431,2.79231,3.87406,0,0,0,0,0,0,1.5794,2.54698,3.20383,4.54977,0,0,0,0,0,0,1.70767,2.52328,3.47468,4.91322,0,0,0,0,0,0,1.12103,2.04962,2.84144,3.94588,0,0,0,0,0,0,1.25091,2.22637,2.99998,4.21249,0,0,0,0,0,0,1.22454,2.07475,2.9029,4.01708,0,0,0,0,0,0,1.42543,2.17541,2.96222,4.12275,0,0,0,0,0,0,1.07418,1.86232,2.52985,3.46249,0,0,0,0,0,0,189.17159,190.5334,192.84704,197.4275,0,0,0,0,0,0,190.9633,192.21983,194.36646,198.66043,0,0,0,0,0,0,194.07026,195.38076,197.61877,202.09362,0,0,0,0,0,0,189.28769,190.66347,193.01562,197.67536,0,0,0,0,0,0,194.85384,195.72085,197.24644,200.46552,0,0,0,0,0,0,191.52871,192.53877,194.29626,197.91168,0,0,0,0,0,0,192.99911,193.82967,195.30105,198.41749,0,0,0,0,0,0,192.99071,194.02654,195.82135,199.50521,0,0,0,0,0,0,189.43299,190.34635,191.92029,195.18143,0,0,0,0,0,0,0.00344,0.00389,0.00465,0.00712,0,0,0,0,0,0,0.00345,0.0039,0.00466,0.00713,0,0,0,0,0,0,0.00345,0.0039,0.00466,0.00712,0,0,0,0,0,0,0.00349,0.00395,0.00473,0.00724,0,0,0,0,0,0,0.00346,0.00391,0.00467,0.00714,0,0,0,0,0,0,0.00349,0.00396,0.00473,0.00724,0,0,0,0,0,0,0.00346,0.00391,0.00467,0.00716,0,0,0,0,0,0,0.00347,0.00392,0.00468,0.00717,0,0,0,0,0,0,0.00341,0.00386,0.0046,0.00705,0,0,0,0,0,0,0.00845,0.00989,0.01264,0.01532,0,0,0,0,0,0,0.00847,0.00991,0.01267,0.01535,0,0,0,0,0,0,0.00849,0.00994,0.01271,0.01539,0,0,0,0,0,0,0.00839,0.00982,0.01256,0.01521,0,0,0,0,0,0,0.00848,0.00992,0.01269,0.01537,0,0,0,0,0,0,0.00842,0.00985,0.0126,0.01526,0,0,0,0,0,0,0.00844,0.00988,0.01264,0.01531,0,0,0,0,0,0,0.00848,0.00992,0.01269,0.01537,0,0,0,0,0,0,0.0085,0.00994,0.01272,0.0154,0,0,0,0,0,0,0.05398,0.08868,0.09437,0.21225,0,0,0,0,0,0,0.05148,0.08831,0.0932,0.21039,0,0,0,0,0,0,0.05368,0.09688,0.10056,0.23731,0,0,0,0,0,0,0.06219,0.10385,0.10874,0.25643,0,0,0,0,0,0,0.04818,0.09117,0.09387,0.22957,0,0,0,0,0,0,0.05103,0.09576,0.0989,0.2396,0,0,0,0,0,0,0.05198,0.09098,0.0943,0.2264,0,0,0,0,0,0,0.05834,0.09542,0.10332,0.24185,0,0,0,0,0,0,0.03928,0.06936,0.09157,0.20876,0,0,0,0,0,0,0.00237,0.00387,0.0057,0.01476,0,0,0,0,0,0,0.00221,0.00358,0.0053,0.01325,0,0,0,0,0,0,0.002,0.00323,0.00548,0.01412,0,0,0,0,0,0,0.00242,0.00397,0.00594,0.01553,0,0,0,0,0,0,0.00192,0.00306,0.00427,0.00916,0,0,0,0,0,0,0.00187,0.00299,0.00445,0.01002,0,0,0,0,0,0,0.00182,0.00289,0.00401,0.0086,0,0,0,0,0,0,0.00192,0.00309,0.00468,0.01099,0,0,0,0,0,0,0.00162,0.00256,0.00388,0.00842,0,0,0,0,0,0,0.0399,0.04334,0.04761,0.06813,0,0,0,0,0,0,0.04067,0.04377,0.04772,0.06563,0,0,0,0,0,0,0.04344,0.04619,0.0515,0.07105,0,0,0,0,0,0,0.03787,0.04142,0.04605,0.06793,0,0,0,0,0,0,0.0425,0.04495,0.04761,0.05841,0,0,0,0,0,0,0.03899,0.04142,0.04469,0.05708,0,0,0,0,0,0,0.03894,0.04122,0.04366,0.05374,0,0,0,0,0,0,0.04095,0.0435,0.04709,0.06119,0,0,0,0,0,0,0.03986,0.04185,0.04475,0.05469,0,0,0,0,0,0,0.00921,0.01225,0.01603,0.03418,0,0,0,0,0,0,0.00899,0.01173,0.01523,0.03107,0,0,0,0,0,0,0.00897,0.0114,0.0161,0.03339,0,0,0,0,0,0,0.0091,0.01224,0.01634,0.03569,0,0,0,0,0,0,0.00861,0.01079,0.01314,0.02269,0,0,0,0,0,0,0.00811,0.01026,0.01315,0.02412,0,0,0,0,0,0,0.00799,0.01001,0.01216,0.02108,0,0,0,0,0,0,0.00849,0.01074,0.01392,0.02639,0,0,0,0,0,0,0.00775,0.00952,0.01208,0.02087,0,0,0,0,0,0,0.00402,0.00365,0.00123,0.00126,0,0,0,0,0,0,0.0041,0.00368,0.00124,0.00127,0,0,0,0,0,0,0.00425,0.00374,0.00126,0.00129,0,0,0,0,0,0,0.0071,0.00365,0.00123,0.00126,0,0,0,0,0,0,0.00424,0.00375,0.00126,0.00128,0,0,0,0,0,0,0.00419,0.00368,0.00124,0.00126,0,0,0,0,0,0,0.00574,0.00371,0.00125,0.00127,0,0,0,0,0,0,0.00651,0.00332,0.00123,0.00125,0,0,0,0,0,0,0.00234,0.0017,0.00113,0.00115,0,0,0,0,0,0,0.0917,0.1282,0.18747,0.4351,0,0,0,0,0,0,0.08006,0.11578,0.17262,0.41199,0,0,0,0,0,0,0.08828,0.13116,0.19211,0.45842,0,0,0,0,0,0,0.10899,0.15077,0.21916,0.50155,0,0,0,0,0,0,0.05677,0.09706,0.15709,0.39911,0,0,0,0,0,0,0.06277,0.10509,0.16649,0.42002,0,0,0,0,0,0,0.05802,0.09497,0.1543,0.39061,0,0,0,0,0,0,0.07543,0.11191,0.1767,0.43306,0,0,0,0,0,0,0.05254,0.0859,0.15079,0.37373,0,0,0,0,0 +Compact car,PH40G,2015,0,0,0.01465,0.01492,0.01544,0.01682,0,0,0,0,0,0,0.01509,0.01534,0.01581,0.01703,0,0,0,0,0,0,0.01629,0.01662,0.01712,0.01842,0,0,0,0,0,0,0.01387,0.01416,0.01472,0.01624,0,0,0,0,0,0,0.01602,0.01619,0.01652,0.01729,0,0,0,0,0,0,0.01475,0.01495,0.01532,0.0162,0,0,0,0,0,0,0.0147,0.01485,0.01515,0.01584,0,0,0,0,0,0,0.0154,0.01563,0.01601,0.01698,0,0,0,0,0,0,0.0151,0.01527,0.01556,0.01622,0,0,0,0,0,0,0.00601,0.00457,0.00462,0.00573,0,0,0,0,0,0,0.00551,0.00423,0.00436,0.00537,0,0,0,0,0,0,0.00575,0.00471,0.00487,0.00607,0,0,0,0,0,0,0.00647,0.00535,0.00551,0.00687,0,0,0,0,0,0,0.00416,0.00372,0.00412,0.00501,0,0,0,0,0,0,0.00451,0.00403,0.0044,0.00541,0,0,0,0,0,0,0.00416,0.00371,0.00413,0.00501,0,0,0,0,0,0,0.0047,0.00411,0.00439,0.00539,0,0,0,0,0,0,0.00346,0.00358,0.0039,0.0047,0,0,0,0,0,0,1.03292,1.8113,2.46357,3.15619,0,0,0,0,0,0,1.0151,1.793,2.46137,3.13336,0,0,0,0,0,0,1.14932,2.00326,2.81488,3.62067,0,0,0,0,0,0,1.13138,2.15504,3.03647,3.8972,0,0,0,0,0,0,0.91749,1.8679,2.67193,3.35597,0,0,0,0,0,0,0.98882,1.94146,2.78193,3.524,0,0,0,0,0,0,0.93976,1.91718,2.73813,3.44038,0,0,0,0,0,0,0.99955,1.92883,2.70555,3.4238,0,0,0,0,0,0,0.87707,1.70545,2.37236,2.97027,0,0,0,0,0,0,169.28924,170.54802,171.83774,177.39414,0,0,0,0,0,0,170.85395,172.00139,173.14068,178.48262,0,0,0,0,0,0,173.64701,174.84914,176.05594,181.5667,0,0,0,0,0,0,169.41057,170.68925,172.01323,177.63299,0,0,0,0,0,0,174.19785,174.93587,175.52739,180.03914,0,0,0,0,0,0,171.28131,172.17324,172.97667,177.77778,0,0,0,0,0,0,172.53521,173.23875,173.79149,178.20675,0,0,0,0,0,0,172.59101,173.50673,174.33665,179.20664,0,0,0,0,0,0,169.35713,170.14047,170.79107,175.29452,0,0,0,0,0,0,0.00221,0.00249,0.00287,0.00404,0,0,0,0,0,0,0.00222,0.0025,0.00288,0.00405,0,0,0,0,0,0,0.00225,0.00253,0.0029,0.00406,0,0,0,0,0,0,0.00223,0.00251,0.0029,0.0041,0,0,0,0,0,0,0.00225,0.00253,0.00291,0.00407,0,0,0,0,0,0,0.00225,0.00253,0.00292,0.00411,0,0,0,0,0,0,0.00222,0.00251,0.00289,0.00406,0,0,0,0,0,0,0.00224,0.00252,0.0029,0.00407,0,0,0,0,0,0,0.00221,0.00248,0.00286,0.00401,0,0,0,0,0,0,0.00845,0.00979,0.01264,0.01287,0,0,0,0,0,0,0.00847,0.00981,0.01267,0.0129,0,0,0,0,0,0,0.00849,0.00984,0.01271,0.01293,0,0,0,0,0,0,0.00839,0.00972,0.01256,0.01278,0,0,0,0,0,0,0.00848,0.00982,0.01269,0.01291,0,0,0,0,0,0,0.00842,0.00976,0.0126,0.01283,0,0,0,0,0,0,0.00844,0.00979,0.01264,0.01287,0,0,0,0,0,0,0.00848,0.00982,0.01269,0.01292,0,0,0,0,0,0,0.0085,0.00985,0.01272,0.01294,0,0,0,0,0,0,0.04197,0.05511,0.08116,0.11639,0,0,0,0,0,0,0.04148,0.05405,0.07994,0.11493,0,0,0,0,0,0,0.04172,0.05844,0.08599,0.12572,0,0,0,0,0,0,0.04417,0.06337,0.0933,0.13679,0,0,0,0,0,0,0.03684,0.0529,0.07944,0.1177,0,0,0,0,0,0,0.03928,0.05628,0.08411,0.12429,0,0,0,0,0,0,0.03749,0.05316,0.07998,0.1178,0,0,0,0,0,0,0.04076,0.05927,0.08802,0.12853,0,0,0,0,0,0,0.03011,0.05208,0.07773,0.11273,0,0,0,0,0,0,0.00206,0.00333,0.00506,0.00976,0,0,0,0,0,0,0.00196,0.00318,0.00481,0.00905,0,0,0,0,0,0,0.00178,0.00323,0.00492,0.00939,0,0,0,0,0,0,0.00208,0.0034,0.0052,0.01014,0,0,0,0,0,0,0.00178,0.00277,0.00411,0.00712,0,0,0,0,0,0,0.00172,0.00283,0.00423,0.00749,0,0,0,0,0,0,0.00169,0.00262,0.00389,0.00667,0,0,0,0,0,0,0.00174,0.00291,0.00437,0.00791,0,0,0,0,0,0,0.00151,0.00254,0.00376,0.00647,0,0,0,0,0,0,0.03912,0.04195,0.04593,0.05693,0,0,0,0,0,0,0.04004,0.04273,0.04644,0.05626,0,0,0,0,0,0,0.04289,0.04616,0.05,0.06042,0,0,0,0,0,0,0.03697,0.03994,0.04408,0.05574,0,0,0,0,0,0,0.04216,0.04425,0.04718,0.05391,0,0,0,0,0,0,0.03864,0.04101,0.0441,0.05148,0,0,0,0,0,0,0.03863,0.04059,0.04332,0.0495,0,0,0,0,0,0,0.04049,0.04303,0.04627,0.05435,0,0,0,0,0,0,0.0396,0.0418,0.04444,0.05044,0,0,0,0,0,0,0.00852,0.01102,0.01454,0.02427,0,0,0,0,0,0,0.00843,0.01081,0.01409,0.02279,0,0,0,0,0,0,0.00848,0.01138,0.01477,0.02399,0,0,0,0,0,0,0.00831,0.01093,0.0146,0.02491,0,0,0,0,0,0,0.00832,0.01017,0.01276,0.01871,0,0,0,0,0,0,0.0078,0.0099,0.01263,0.01916,0,0,0,0,0,0,0.00772,0.00946,0.01187,0.01734,0,0,0,0,0,0,0.00809,0.01033,0.0132,0.02034,0,0,0,0,0,0,0.00753,0.00947,0.01181,0.01712,0,0,0,0,0,0,0.00324,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00327,0.0011,0.0011,0.00114,0,0,0,0,0,0,0.00332,0.00112,0.00112,0.00116,0,0,0,0,0,0,0.00324,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00333,0.00112,0.00112,0.00115,0,0,0,0,0,0,0.00328,0.0011,0.0011,0.00113,0,0,0,0,0,0,0.0033,0.00111,0.00111,0.00114,0,0,0,0,0,0,0.00295,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00152,0.001,0.00101,0.00103,0,0,0,0,0,0,0.06692,0.09584,0.15471,0.29779,0,0,0,0,0,0,0.06134,0.08907,0.14694,0.28648,0,0,0,0,0,0,0.06524,0.0979,0.16155,0.31185,0,0,0,0,0,0,0.07292,0.11029,0.17979,0.33899,0,0,0,0,0,0,0.04793,0.08091,0.14499,0.28893,0,0,0,0,0,0,0.05168,0.08583,0.1515,0.29895,0,0,0,0,0,0,0.04757,0.07979,0.14325,0.28446,0,0,0,0,0,0,0.05652,0.09136,0.15721,0.30721,0,0,0,0,0,0,0.04455,0.07849,0.13972,0.27701,0,0,0,0 +Compact car,PH40G,2020,0,0,0,0.01459,0.0148,0.01512,0.01606,0,0,0,0,0,0,0.01504,0.01523,0.01553,0.01637,0,0,0,0,0,0,0.01631,0.01651,0.01682,0.01771,0,0,0,0,0,0,0.01381,0.01403,0.01438,0.0154,0,0,0,0,0,0,0.01598,0.01611,0.01632,0.01688,0,0,0,0,0,0,0.01472,0.01487,0.0151,0.01573,0,0,0,0,0,0,0.01466,0.01478,0.01497,0.01548,0,0,0,0,0,0,0.01538,0.01554,0.01578,0.01646,0,0,0,0,0,0,0.01509,0.01521,0.01539,0.01587,0,0,0,0,0,0,0.00458,0.00373,0.00346,0.00425,0,0,0,0,0,0,0.00409,0.0034,0.00321,0.00395,0,0,0,0,0,0,0.00431,0.00379,0.00358,0.00447,0,0,0,0,0,0,0.00495,0.00434,0.00409,0.00509,0,0,0,0,0,0,0.00279,0.0028,0.00279,0.00353,0,0,0,0,0,0,0.00313,0.00308,0.00305,0.00386,0,0,0,0,0,0,0.00276,0.00277,0.00279,0.00352,0,0,0,0,0,0,0.00346,0.00319,0.00309,0.00387,0,0,0,0,0,0,0.00279,0.00266,0.00263,0.00328,0,0,0,0,0,0,0.84575,1.24759,1.55743,2.08042,0,0,0,0,0,0,0.81542,1.21821,1.52962,2.04544,0,0,0,0,0,0,0.86707,1.36279,1.74692,2.37453,0,0,0,0,0,0,0.93931,1.47887,1.90468,2.57482,0,0,0,0,0,0,0.7268,1.21611,1.57611,2.13787,0,0,0,0,0,0,0.76799,1.27893,1.6633,2.26695,0,0,0,0,0,0,0.75028,1.25048,1.61995,2.19708,0,0,0,0,0,0,0.80116,1.28036,1.63483,2.20789,0,0,0,0,0,0,0.69438,1.11222,1.40651,1.88774,0,0,0,0,0,0,135.98433,136.93426,137.84324,145.41065,0,0,0,0,0,0,137.15801,138.01536,138.79385,146.20154,0,0,0,0,0,0,139.42772,140.3288,141.162,148.76118,0,0,0,0,0,0,136.11318,137.08016,138.01909,145.64611,0,0,0,0,0,0,139.54878,140.06745,140.37351,147.11785,0,0,0,0,0,0,137.33127,137.97825,138.4692,145.41728,0,0,0,0,0,0,138.20515,138.69672,138.97155,145.6069,0,0,0,0,0,0,138.38758,139.05331,139.56516,146.59318,0,0,0,0,0,0,135.6903,136.24757,136.60873,143.2633,0,0,0,0,0,0,0.00226,0.00252,0.00289,0.00357,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00358,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.00228,0.00254,0.00292,0.00362,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.0023,0.00256,0.00293,0.00363,0,0,0,0,0,0,0.00228,0.00254,0.0029,0.00359,0,0,0,0,0,0,0.00229,0.00255,0.00292,0.00361,0,0,0,0,0,0,0.00226,0.00251,0.00287,0.00355,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00988,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.02999,0.0461,0.0617,0.0823,0,0,0,0,0,0,0.02917,0.04501,0.06044,0.08073,0,0,0,0,0,0,0.02945,0.04844,0.06467,0.08761,0,0,0,0,0,0,0.03168,0.05281,0.07057,0.0959,0,0,0,0,0,0,0.02464,0.04289,0.05816,0.07966,0,0,0,0,0,0,0.0268,0.0461,0.0623,0.08515,0,0,0,0,0,0,0.02515,0.0433,0.05884,0.0802,0,0,0,0,0,0,0.02924,0.04874,0.06556,0.08875,0,0,0,0,0,0,0.02572,0.0425,0.0574,0.07724,0,0,0,0,0,0,0.00185,0.00286,0.00394,0.00714,0,0,0,0,0,0,0.00177,0.00274,0.00375,0.00671,0,0,0,0,0,0,0.0018,0.00278,0.00383,0.00689,0,0,0,0,0,0,0.00188,0.00292,0.00404,0.00737,0,0,0,0,0,0,0.00158,0.00239,0.00322,0.00552,0,0,0,0,0,0,0.0016,0.00245,0.00331,0.00573,0,0,0,0,0,0,0.0015,0.00227,0.00304,0.00517,0,0,0,0,0,0,0.00164,0.00251,0.00342,0.00598,0,0,0,0,0,0,0.00145,0.0022,0.00295,0.00501,0,0,0,0,0,0,0.03864,0.04091,0.04341,0.05095,0,0,0,0,0,0,0.03963,0.04177,0.04409,0.05098,0,0,0,0,0,0,0.04297,0.04517,0.04757,0.05477,0,0,0,0,0,0,0.03651,0.03885,0.04146,0.04938,0,0,0,0,0,0,0.04172,0.04347,0.04529,0.05042,0,0,0,0,0,0,0.03838,0.0402,0.04212,0.04762,0,0,0,0,0,0,0.03822,0.03986,0.04154,0.04627,0,0,0,0,0,0,0.04028,0.04218,0.0442,0.05007,0,0,0,0,0,0,0.0395,0.04109,0.04273,0.0473,0,0,0,0,0,0,0.00809,0.0101,0.01232,0.01899,0,0,0,0,0,0,0.00807,0.00996,0.01201,0.01811,0,0,0,0,0,0,0.00855,0.01049,0.01262,0.01899,0,0,0,0,0,0,0.0079,0.00997,0.01228,0.01928,0,0,0,0,0,0,0.00793,0.00948,0.01108,0.01563,0,0,0,0,0,0,0.00757,0.00919,0.01088,0.01575,0,0,0,0,0,0,0.00735,0.00881,0.0103,0.01448,0,0,0,0,0,0,0.00789,0.00958,0.01136,0.01655,0,0,0,0,0,0,0.00744,0.00885,0.01029,0.01434,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00093,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00093,0,0,0,0,0,0,0.00089,0.0009,0.0009,0.00095,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00093,0,0,0,0,0,0,0.00089,0.00089,0.0009,0.00094,0,0,0,0,0,0,0.00088,0.00088,0.00088,0.00093,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00093,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00084,0,0,0,0,0,0,0.05751,0.07869,0.11709,0.23233,0,0,0,0,0,0,0.05202,0.07185,0.10894,0.22233,0,0,0,0,0,0,0.05522,0.07965,0.12094,0.24271,0,0,0,0,0,0,0.06258,0.09037,0.13548,0.26296,0,0,0,0,0,0,0.03872,0.06132,0.10109,0.22186,0,0,0,0,0,0,0.04233,0.0663,0.10739,0.23006,0,0,0,0,0,0,0.03809,0.05974,0.09843,0.21663,0,0,0,0,0,0,0.04737,0.07132,0.11277,0.23646,0,0,0,0,0,0,0.03805,0.05883,0.09641,0.21185,0,0,0 +Compact car,PH40G,2025,0,0,0,0,0.01445,0.01458,0.01479,0.01543,0,0,0,0,0,0,0.01492,0.01503,0.01523,0.0158,0,0,0,0,0,0,0.01618,0.0163,0.0165,0.01711,0,0,0,0,0,0,0.01366,0.01379,0.01403,0.01472,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.0165,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.0153,0,0,0,0,0,0,0.01457,0.01464,0.01477,0.01512,0,0,0,0,0,0,0.01527,0.01537,0.01553,0.016,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01554,0,0,0,0,0,0,0.00391,0.00295,0.00265,0.00326,0,0,0,0,0,0,0.0034,0.00262,0.00238,0.00295,0,0,0,0,0,0,0.00364,0.00292,0.00267,0.00335,0,0,0,0,0,0,0.00425,0.00339,0.00308,0.00385,0,0,0,0,0,0,0.00205,0.00188,0.00183,0.00237,0,0,0,0,0,0,0.0024,0.00214,0.00206,0.00266,0,0,0,0,0,0,0.00201,0.00184,0.00181,0.00235,0,0,0,0,0,0,0.00274,0.0023,0.00216,0.00274,0,0,0,0,0,0,0.00202,0.00177,0.00172,0.00219,0,0,0,0,0,0,0.64002,0.91106,1.14582,1.51956,0,0,0,0,0,0,0.6018,0.87144,1.10439,1.46771,0,0,0,0,0,0,0.64598,0.97767,1.26206,1.7014,0,0,0,0,0,0,0.70836,1.0731,1.38962,1.86314,0,0,0,0,0,0,0.49172,0.81222,1.0702,1.44633,0,0,0,0,0,0,0.53266,0.86996,1.14709,1.55544,0,0,0,0,0,0,0.50745,0.83597,1.10102,1.48915,0,0,0,0,0,0,0.56646,0.88352,1.14198,1.5336,0,0,0,0,0,0,0.47123,0.74464,0.95676,1.28069,0,0,0,0,0,0,109.89527,110.71383,111.66647,118.48003,0,0,0,0,0,0,110.77773,111.51899,112.3586,119.0227,0,0,0,0,0,0,112.63298,113.41152,114.30191,121.14068,0,0,0,0,0,0,110.02531,110.85935,111.84047,118.71303,0,0,0,0,0,0,112.47694,112.93454,113.36173,119.40882,0,0,0,0,0,0,110.78387,111.34893,111.9367,118.17669,0,0,0,0,0,0,111.38494,111.81975,112.21893,118.16864,0,0,0,0,0,0,111.64067,112.22155,112.82827,119.13943,0,0,0,0,0,0,109.38059,109.86867,110.33711,116.30106,0,0,0,0,0,0,0.00228,0.00252,0.00288,0.0035,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00351,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.00229,0.00254,0.00291,0.00355,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00231,0.00256,0.00292,0.00356,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00227,0.00251,0.00286,0.00348,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00979,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00982,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00988,0.01272,0.01272,0,0,0,0,0,0,0.02304,0.03342,0.04442,0.06033,0,0,0,0,0,0,0.02212,0.03226,0.04305,0.05865,0,0,0,0,0,0,0.02229,0.03436,0.04565,0.06315,0,0,0,0,0,0,0.02423,0.03778,0.05022,0.06957,0,0,0,0,0,0,0.01758,0.029,0.03937,0.05539,0,0,0,0,0,0,0.01961,0.0318,0.04292,0.06009,0,0,0,0,0,0,0.01802,0.02943,0.04002,0.05595,0,0,0,0,0,0,0.02149,0.03383,0.04541,0.06298,0,0,0,0,0,0,0.01847,0.02904,0.03925,0.05422,0,0,0,0,0,0,0.00121,0.00184,0.00255,0.00499,0,0,0,0,0,0,0.00117,0.00176,0.00243,0.0047,0,0,0,0,0,0,0.00118,0.00179,0.00248,0.00482,0,0,0,0,0,0,0.00123,0.00187,0.00261,0.00513,0,0,0,0,0,0,0.00104,0.00154,0.00209,0.00389,0,0,0,0,0,0,0.00105,0.00158,0.00215,0.00404,0,0,0,0,0,0,0.00098,0.00146,0.00198,0.00365,0,0,0,0,0,0,0.00108,0.00162,0.00222,0.00421,0,0,0,0,0,0,0.00095,0.00142,0.00192,0.00356,0,0,0,0,0,0,0.03726,0.03866,0.04031,0.04601,0,0,0,0,0,0,0.03832,0.03964,0.04117,0.04642,0,0,0,0,0,0,0.04163,0.04299,0.04457,0.05003,0,0,0,0,0,0,0.03509,0.03654,0.03825,0.04418,0,0,0,0,0,0,0.04059,0.04168,0.04288,0.04689,0,0,0,0,0,0,0.03722,0.03835,0.03962,0.04388,0,0,0,0,0,0,0.03715,0.03816,0.03928,0.04297,0,0,0,0,0,0,0.03908,0.04026,0.04159,0.04613,0,0,0,0,0,0,0.03847,0.03946,0.04054,0.04416,0,0,0,0,0,0,0.00687,0.00811,0.00957,0.01462,0,0,0,0,0,0,0.00691,0.00808,0.00943,0.01408,0,0,0,0,0,0,0.00737,0.00857,0.00997,0.0148,0,0,0,0,0,0,0.00665,0.00792,0.00944,0.01468,0,0,0,0,0,0,0.00693,0.00789,0.00895,0.0125,0,0,0,0,0,0,0.00655,0.00755,0.00867,0.01244,0,0,0,0,0,0,0.00641,0.00731,0.0083,0.01156,0,0,0,0,0,0,0.00684,0.00788,0.00906,0.01307,0,0,0,0,0,0,0.00653,0.0074,0.00836,0.01156,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00076,0,0,0,0,0,0,0.00071,0.00071,0.00072,0.00076,0,0,0,0,0,0,0.00072,0.00072,0.00073,0.00077,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00076,0,0,0,0,0,0,0.00072,0.00072,0.00072,0.00076,0,0,0,0,0,0,0.00071,0.00071,0.00071,0.00075,0,0,0,0,0,0,0.00071,0.00071,0.00072,0.00075,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00075,0,0,0,0,0,0,0.00064,0.00065,0.00065,0.00069,0,0,0,0,0,0,0.05019,0.06417,0.09324,0.19007,0,0,0,0,0,0,0.04446,0.05703,0.08463,0.17941,0,0,0,0,0,0,0.0478,0.06392,0.09508,0.19705,0,0,0,0,0,0,0.05482,0.0734,0.10749,0.2138,0,0,0,0,0,0,0.03019,0.04385,0.07256,0.17225,0,0,0,0,0,0,0.03399,0.04886,0.07879,0.18029,0,0,0,0,0,0,0.02933,0.04188,0.06929,0.16604,0,0,0,0,0,0,0.03873,0.05368,0.08403,0.18619,0,0,0,0,0,0,0.02919,0.04147,0.0684,0.16392,0,0 +Compact car,PH40G,2030,0,0,0,0,0,0.01445,0.01457,0.01479,0.01528,0,0,0,0,0,0,0.01492,0.01503,0.01522,0.01566,0,0,0,0,0,0,0.01618,0.0163,0.0165,0.01696,0,0,0,0,0,0,0.01366,0.01379,0.01402,0.01455,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.0164,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.01519,0,0,0,0,0,0,0.01457,0.01464,0.01476,0.01503,0,0,0,0,0,0,0.01527,0.01537,0.01553,0.01589,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01545,0,0,0,0,0,0,0.00367,0.0027,0.00242,0.00288,0,0,0,0,0,0,0.00316,0.00237,0.00215,0.00257,0,0,0,0,0,0,0.00341,0.00264,0.00241,0.00289,0,0,0,0,0,0,0.004,0.00308,0.0028,0.00335,0,0,0,0,0,0,0.0018,0.00159,0.00156,0.00191,0,0,0,0,0,0,0.00215,0.00184,0.00178,0.00217,0,0,0,0,0,0,0.00175,0.00155,0.00153,0.00188,0,0,0,0,0,0,0.00249,0.00202,0.00189,0.00229,0,0,0,0,0,0,0.00177,0.0015,0.00145,0.00177,0,0,0,0,0,0,0.58608,0.8278,1.05137,1.32711,0,0,0,0,0,0,0.54598,0.78581,1.00579,1.26974,0,0,0,0,0,0,0.58847,0.88254,1.15028,1.46563,0,0,0,0,0,0,0.64821,0.97245,1.27098,1.61256,0,0,0,0,0,0,0.4308,0.71283,0.94946,1.2073,0,0,0,0,0,0,0.47156,0.76902,1.02453,1.30735,0,0,0,0,0,0,0.44441,0.73379,0.97753,1.24297,0,0,0,0,0,0,0.50524,0.78562,1.02521,1.30121,0,0,0,0,0,0,0.41293,0.65407,0.84912,1.07368,0,0,0,0,0,0,101.18797,102.21098,103.79512,108.28638,0,0,0,0,0,0,101.97589,102.92921,104.40974,108.74143,0,0,0,0,0,0,103.69205,104.68435,106.22525,110.69036,0,0,0,0,0,0,101.3178,102.35556,103.96908,108.51645,0,0,0,0,0,0,103.45291,104.1466,105.23981,108.94936,0,0,0,0,0,0,101.93131,102.72099,103.95911,107.88522,0,0,0,0,0,0,102.44526,103.11544,104.17527,107.81256,0,0,0,0,0,0,102.72135,103.5276,104.78881,108.76679,0,0,0,0,0,0,100.60973,101.32401,102.43675,106.12133,0,0,0,0,0,0,0.00228,0.00251,0.00287,0.00349,0,0,0,0,0,0,0.00229,0.00252,0.00289,0.0035,0,0,0,0,0,0,0.00231,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00229,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00353,0,0,0,0,0,0,0.00227,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02042,0.02903,0.03908,0.05176,0,0,0,0,0,0,0.01945,0.02785,0.03768,0.05002,0,0,0,0,0,0,0.01955,0.02947,0.03976,0.05338,0,0,0,0,0,0,0.02136,0.03255,0.0439,0.05901,0,0,0,0,0,0,0.01491,0.0242,0.03358,0.04566,0,0,0,0,0,0,0.01687,0.02684,0.03694,0.05002,0,0,0,0,0,0,0.01532,0.02463,0.0342,0.04629,0,0,0,0,0,0,0.01854,0.02866,0.0392,0.05267,0,0,0,0,0,0,0.01574,0.02441,0.03371,0.04509,0,0,0,0,0,0,0.00121,0.00183,0.00254,0.00423,0,0,0,0,0,0,0.00116,0.00176,0.00242,0.00399,0,0,0,0,0,0,0.00118,0.00179,0.00246,0.00409,0,0,0,0,0,0,0.00123,0.00187,0.00259,0.00435,0,0,0,0,0,0,0.00103,0.00154,0.00208,0.00332,0,0,0,0,0,0,0.00105,0.00157,0.00214,0.00344,0,0,0,0,0,0,0.00098,0.00146,0.00196,0.00311,0,0,0,0,0,0,0.00108,0.00162,0.00221,0.00358,0,0,0,0,0,0,0.00095,0.00142,0.00192,0.00303,0,0,0,0,0,0,0.03725,0.03865,0.04027,0.04426,0,0,0,0,0,0,0.03831,0.03963,0.04113,0.0448,0,0,0,0,0,0,0.04163,0.04298,0.04453,0.04835,0,0,0,0,0,0,0.03509,0.03652,0.0382,0.04237,0,0,0,0,0,0,0.04059,0.04167,0.04286,0.04563,0,0,0,0,0,0,0.03722,0.03834,0.03959,0.04255,0,0,0,0,0,0,0.03714,0.03816,0.03925,0.04181,0,0,0,0,0,0,0.03908,0.04025,0.04157,0.04471,0,0,0,0,0,0,0.03847,0.03945,0.04053,0.04301,0,0,0,0,0,0,0.00687,0.0081,0.00953,0.01306,0,0,0,0,0,0,0.0069,0.00807,0.0094,0.01264,0,0,0,0,0,0,0.00736,0.00856,0.00993,0.01331,0,0,0,0,0,0,0.00664,0.00791,0.00939,0.01308,0,0,0,0,0,0,0.00693,0.00789,0.00893,0.01139,0,0,0,0,0,0,0.00654,0.00754,0.00865,0.01126,0,0,0,0,0,0,0.0064,0.0073,0.00827,0.01053,0,0,0,0,0,0,0.00683,0.00787,0.00904,0.01182,0,0,0,0,0,0,0.00653,0.0074,0.00835,0.01054,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00066,0.00067,0.00069,0,0,0,0,0,0,0.00066,0.00067,0.00068,0.00071,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00069,0,0,0,0,0,0,0.00066,0.00066,0.00067,0.0007,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00059,0.0006,0.0006,0.00063,0,0,0,0,0,0,0.04799,0.06027,0.08793,0.17273,0,0,0,0,0,0,0.04225,0.05313,0.07927,0.16179,0,0,0,0,0,0,0.04561,0.05967,0.08925,0.17796,0,0,0,0,0,0,0.05249,0.06876,0.10105,0.19351,0,0,0,0,0,0,0.02785,0.03942,0.06625,0.15181,0,0,0,0,0,0,0.03166,0.04435,0.07238,0.15964,0,0,0,0,0,0,0.02695,0.03739,0.06286,0.14537,0,0,0,0,0,0,0.0363,0.04918,0.07763,0.16585,0,0,0,0,0,0,0.02673,0.03707,0.06224,0.14427,0 +Compact car,PH40G,2035,0,0,0,0,0,0,0.01445,0.01457,0.01479,0.01526,0,0,0,0,0,0,0.01491,0.01503,0.01522,0.01565,0,0,0,0,0,0,0.01618,0.01629,0.0165,0.01695,0,0,0,0,0,0,0.01366,0.01379,0.01402,0.01453,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.01639,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.01518,0,0,0,0,0,0,0.01457,0.01464,0.01477,0.01503,0,0,0,0,0,0,0.01527,0.01536,0.01553,0.01587,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01544,0,0,0,0,0,0,0.00365,0.0027,0.00242,0.00281,0,0,0,0,0,0,0.00315,0.00237,0.00215,0.0025,0,0,0,0,0,0,0.00339,0.00265,0.0024,0.00281,0,0,0,0,0,0,0.00398,0.00309,0.00279,0.00326,0,0,0,0,0,0,0.0018,0.00159,0.00156,0.00182,0,0,0,0,0,0,0.00215,0.00185,0.00178,0.00208,0,0,0,0,0,0,0.00175,0.00155,0.00153,0.0018,0,0,0,0,0,0,0.00248,0.00202,0.00189,0.00221,0,0,0,0,0,0,0.00176,0.0015,0.00145,0.00169,0,0,0,0,0,0,0.58569,0.83122,1.04918,1.29449,0,0,0,0,0,0,0.5457,0.78846,1.00406,1.23656,0,0,0,0,0,0,0.58824,0.88591,1.14811,1.42522,0,0,0,0,0,0,0.64799,0.97641,1.26846,1.56917,0,0,0,0,0,0,0.43079,0.71302,0.94917,1.16819,0,0,0,0,0,0,0.47151,0.76985,1.02384,1.2662,0,0,0,0,0,0,0.44447,0.73447,0.97693,1.20222,0,0,0,0,0,0,0.50502,0.78659,1.02444,1.26303,0,0,0,0,0,0,0.41279,0.6542,0.84887,1.04033,0,0,0,0,0,0,101.15856,102.20733,103.79223,106.70994,0,0,0,0,0,0,101.94824,102.92577,104.40687,107.15111,0,0,0,0,0,0,103.66319,104.68075,106.22245,109.07402,0,0,0,0,0,0,101.2875,102.35188,103.96617,106.93962,0,0,0,0,0,0,103.43163,104.14396,105.23762,107.33012,0,0,0,0,0,0,101.90759,102.71799,103.95662,106.29252,0,0,0,0,0,0,102.4244,103.11272,104.17314,106.20913,0,0,0,0,0,0,102.69737,103.52457,104.78635,107.16159,0,0,0,0,0,0,100.5888,101.32151,102.43472,104.5455,0,0,0,0,0,0,0.00227,0.00251,0.00287,0.0035,0,0,0,0,0,0,0.00228,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.0023,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00228,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00353,0,0,0,0,0,0,0.00226,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02036,0.02895,0.03912,0.05044,0,0,0,0,0,0,0.0194,0.02777,0.03772,0.04867,0,0,0,0,0,0,0.0195,0.02938,0.0398,0.05181,0,0,0,0,0,0,0.0213,0.03244,0.04396,0.05732,0,0,0,0,0,0,0.01488,0.02414,0.03361,0.04406,0,0,0,0,0,0,0.01684,0.02678,0.03697,0.04838,0,0,0,0,0,0,0.01529,0.02455,0.03424,0.04473,0,0,0,0,0,0,0.0185,0.02861,0.03923,0.05099,0,0,0,0,0,0,0.01571,0.02439,0.03371,0.0436,0,0,0,0,0,0,0.00121,0.00182,0.00254,0.00402,0,0,0,0,0,0,0.00116,0.00175,0.00242,0.00379,0,0,0,0,0,0,0.00118,0.00177,0.00247,0.00389,0,0,0,0,0,0,0.00123,0.00185,0.0026,0.00414,0,0,0,0,0,0,0.00103,0.00153,0.00209,0.00316,0,0,0,0,0,0,0.00105,0.00156,0.00214,0.00328,0,0,0,0,0,0,0.00098,0.00145,0.00197,0.00297,0,0,0,0,0,0,0.00107,0.00161,0.00221,0.0034,0,0,0,0,0,0,0.00095,0.00142,0.00192,0.00288,0,0,0,0,0,0,0.03724,0.03862,0.04028,0.04378,0,0,0,0,0,0,0.03831,0.0396,0.04115,0.04436,0,0,0,0,0,0,0.04162,0.04295,0.04455,0.04789,0,0,0,0,0,0,0.03508,0.03649,0.03822,0.04189,0,0,0,0,0,0,0.04058,0.04165,0.04287,0.04528,0,0,0,0,0,0,0.03721,0.03832,0.0396,0.04219,0,0,0,0,0,0,0.03714,0.03814,0.03926,0.0415,0,0,0,0,0,0,0.03907,0.04023,0.04158,0.04432,0,0,0,0,0,0,0.03846,0.03945,0.04054,0.04268,0,0,0,0,0,0,0.00686,0.00808,0.00955,0.01264,0,0,0,0,0,0,0.0069,0.00805,0.00941,0.01225,0,0,0,0,0,0,0.00736,0.00853,0.00995,0.0129,0,0,0,0,0,0,0.00663,0.00788,0.00941,0.01266,0,0,0,0,0,0,0.00692,0.00787,0.00894,0.01108,0,0,0,0,0,0,0.00654,0.00752,0.00865,0.01094,0,0,0,0,0,0,0.0064,0.00728,0.00828,0.01026,0,0,0,0,0,0,0.00683,0.00786,0.00905,0.01147,0,0,0,0,0,0,0.00652,0.00739,0.00836,0.01025,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00067,0.00068,0,0,0,0,0,0,0.00066,0.00067,0.00068,0.0007,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00066,0.00066,0.00067,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00067,0,0,0,0,0,0,0.00059,0.0006,0.0006,0.00062,0,0,0,0,0,0,0.04784,0.06032,0.08788,0.17065,0,0,0,0,0,0,0.04212,0.05317,0.07922,0.15963,0,0,0,0,0,0,0.04548,0.05974,0.08918,0.17553,0,0,0,0,0,0,0.05233,0.06879,0.10101,0.19092,0,0,0,0,0,0,0.02777,0.03937,0.06626,0.14921,0,0,0,0,0,0,0.03157,0.04433,0.07238,0.15698,0,0,0,0,0,0,0.02687,0.03734,0.06289,0.1427,0,0,0,0,0,0,0.03618,0.04907,0.07768,0.16337,0,0,0,0,0,0,0.02665,0.03706,0.06223,0.14178 +Compact car,PH40G,2040,0,0,0,0,0,0,0,0.01445,0.01457,0.01479,0,0,0,0,0,0,0,0.01491,0.01503,0.01523,0,0,0,0,0,0,0,0.01618,0.0163,0.0165,0,0,0,0,0,0,0,0.01365,0.01379,0.01403,0,0,0,0,0,0,0,0.01588,0.01596,0.0161,0,0,0,0,0,0,0,0.01462,0.01471,0.01486,0,0,0,0,0,0,0,0.01457,0.01464,0.01477,0,0,0,0,0,0,0,0.01527,0.01536,0.01553,0,0,0,0,0,0,0,0.01501,0.01508,0.0152,0,0,0,0,0,0,0,0.00366,0.0027,0.00241,0,0,0,0,0,0,0,0.00316,0.00237,0.00215,0,0,0,0,0,0,0,0.0034,0.00264,0.0024,0,0,0,0,0,0,0,0.00399,0.00309,0.00279,0,0,0,0,0,0,0,0.0018,0.00159,0.00156,0,0,0,0,0,0,0,0.00215,0.00184,0.00177,0,0,0,0,0,0,0,0.00175,0.00155,0.00153,0,0,0,0,0,0,0,0.00249,0.00201,0.00189,0,0,0,0,0,0,0,0.00176,0.0015,0.00145,0,0,0,0,0,0,0,0.58836,0.82927,1.04675,0,0,0,0,0,0,0,0.54774,0.78691,1.00216,0,0,0,0,0,0,0,0.591,0.88399,1.14571,0,0,0,0,0,0,0,0.65139,0.97417,1.26567,0,0,0,0,0,0,0,0.43093,0.71271,0.94894,0,0,0,0,0,0,0,0.47219,0.76921,1.02316,0,0,0,0,0,0,0,0.44494,0.73393,0.97632,0,0,0,0,0,0,0,0.50572,0.78586,1.02366,0,0,0,0,0,0,0,0.41271,0.65392,0.84868,0,0,0,0,0,0,0,101.15397,102.20223,103.79179,0,0,0,0,0,0,0,101.94386,102.92092,104.40643,0,0,0,0,0,0,0,103.65868,104.67579,106.22197,0,0,0,0,0,0,0,101.28285,102.34662,103.96565,0,0,0,0,0,0,0,103.42841,104.14038,105.23735,0,0,0,0,0,0,0,101.90384,102.71395,103.95623,0,0,0,0,0,0,0,102.42127,103.10917,104.17277,0,0,0,0,0,0,0,102.69353,103.52046,104.78598,0,0,0,0,0,0,0,100.58559,101.31795,102.43444,0,0,0,0,0,0,0,0.00227,0.00251,0.00287,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00228,0.00253,0.0029,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.0023,0.00255,0.00292,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00226,0.0025,0.00286,0,0,0,0,0,0,0,0.00845,0.00983,0.01264,0,0,0,0,0,0,0,0.00847,0.00985,0.01267,0,0,0,0,0,0,0,0.00849,0.00988,0.01271,0,0,0,0,0,0,0,0.00839,0.00976,0.01256,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.00842,0.0098,0.0126,0,0,0,0,0,0,0,0.00844,0.00983,0.01264,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.0085,0.00989,0.01272,0,0,0,0,0,0,0,0.02029,0.02897,0.03917,0,0,0,0,0,0,0,0.01934,0.02779,0.03777,0,0,0,0,0,0,0,0.01943,0.0294,0.03986,0,0,0,0,0,0,0,0.0212,0.03247,0.04404,0,0,0,0,0,0,0,0.01483,0.02416,0.03365,0,0,0,0,0,0,0,0.01678,0.02679,0.03702,0,0,0,0,0,0,0,0.01523,0.02457,0.03429,0,0,0,0,0,0,0,0.01845,0.02861,0.03926,0,0,0,0,0,0,0,0.01569,0.02439,0.03372,0,0,0,0,0,0,0,0.0012,0.00183,0.00255,0,0,0,0,0,0,0,0.00115,0.00175,0.00243,0,0,0,0,0,0,0,0.00117,0.00178,0.00248,0,0,0,0,0,0,0,0.00122,0.00186,0.00261,0,0,0,0,0,0,0,0.00103,0.00154,0.00209,0,0,0,0,0,0,0,0.00104,0.00157,0.00215,0,0,0,0,0,0,0,0.00097,0.00145,0.00198,0,0,0,0,0,0,0,0.00107,0.00161,0.00221,0,0,0,0,0,0,0,0.00095,0.00142,0.00192,0,0,0,0,0,0,0,0.03723,0.03863,0.0403,0,0,0,0,0,0,0,0.03829,0.03961,0.04116,0,0,0,0,0,0,0,0.0416,0.04296,0.04457,0,0,0,0,0,0,0,0.03505,0.0365,0.03825,0,0,0,0,0,0,0,0.04057,0.04166,0.04288,0,0,0,0,0,0,0,0.0372,0.03833,0.03961,0,0,0,0,0,0,0,0.03712,0.03814,0.03928,0,0,0,0,0,0,0,0.03906,0.04024,0.04159,0,0,0,0,0,0,0,0.03846,0.03945,0.04054,0,0,0,0,0,0,0,0.00684,0.00809,0.00956,0,0,0,0,0,0,0,0.00688,0.00805,0.00943,0,0,0,0,0,0,0,0.00734,0.00854,0.00996,0,0,0,0,0,0,0,0.00661,0.00789,0.00943,0,0,0,0,0,0,0,0.00691,0.00787,0.00895,0,0,0,0,0,0,0,0.00653,0.00753,0.00867,0,0,0,0,0,0,0,0.00639,0.00729,0.00829,0,0,0,0,0,0,0,0.00682,0.00786,0.00906,0,0,0,0,0,0,0,0.00652,0.00739,0.00836,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00065,0.00066,0.00067,0,0,0,0,0,0,0,0.00066,0.00067,0.00068,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00066,0.00066,0.00067,0,0,0,0,0,0,0,0.00065,0.00066,0.00066,0,0,0,0,0,0,0,0.00065,0.00066,0.00066,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00059,0.0006,0.0006,0,0,0,0,0,0,0,0.04788,0.06025,0.08783,0,0,0,0,0,0,0,0.04215,0.05311,0.07918,0,0,0,0,0,0,0,0.04554,0.05967,0.08913,0,0,0,0,0,0,0,0.05236,0.06873,0.101,0,0,0,0,0,0,0,0.02775,0.03937,0.0663,0,0,0,0,0,0,0,0.03156,0.04431,0.07241,0,0,0,0,0,0,0,0.02684,0.03734,0.06293,0,0,0,0,0,0,0,0.0361,0.04909,0.07778,0,0,0,0,0,0,0,0.02664,0.03704,0.06224 +Compact car,PH40G,2045,0,0,0,0,0,0,0,0,0.01445,0.01457,0,0,0,0,0,0,0,0,0.01491,0.01503,0,0,0,0,0,0,0,0,0.01618,0.0163,0,0,0,0,0,0,0,0,0.01365,0.01379,0,0,0,0,0,0,0,0,0.01588,0.01596,0,0,0,0,0,0,0,0,0.01462,0.01471,0,0,0,0,0,0,0,0,0.01457,0.01464,0,0,0,0,0,0,0,0,0.01527,0.01537,0,0,0,0,0,0,0,0,0.01501,0.01508,0,0,0,0,0,0,0,0,0.00366,0.0027,0,0,0,0,0,0,0,0,0.00315,0.00237,0,0,0,0,0,0,0,0,0.0034,0.00264,0,0,0,0,0,0,0,0,0.00398,0.00308,0,0,0,0,0,0,0,0,0.0018,0.00159,0,0,0,0,0,0,0,0,0.00215,0.00184,0,0,0,0,0,0,0,0,0.00175,0.00155,0,0,0,0,0,0,0,0,0.00248,0.00201,0,0,0,0,0,0,0,0,0.00176,0.0015,0,0,0,0,0,0,0,0,0.58679,0.82731,0,0,0,0,0,0,0,0,0.54649,0.78538,0,0,0,0,0,0,0,0,0.58938,0.88204,0,0,0,0,0,0,0,0,0.64944,0.97189,0,0,0,0,0,0,0,0,0.43065,0.71254,0,0,0,0,0,0,0,0,0.47163,0.76867,0,0,0,0,0,0,0,0,0.4445,0.73349,0,0,0,0,0,0,0,0,0.50513,0.78524,0,0,0,0,0,0,0,0,0.41253,0.65377,0,0,0,0,0,0,0,0,101.14989,102.20214,0,0,0,0,0,0,0,0,101.94005,102.92095,0,0,0,0,0,0,0,0,103.65481,104.67579,0,0,0,0,0,0,0,0,101.27865,102.34657,0,0,0,0,0,0,0,0,103.42549,104.14033,0,0,0,0,0,0,0,0,101.90065,102.71391,0,0,0,0,0,0,0,0,102.41847,103.10915,0,0,0,0,0,0,0,0,102.6903,103.52038,0,0,0,0,0,0,0,0,100.58274,101.31788,0,0,0,0,0,0,0,0,0.00227,0.00251,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00228,0.00253,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.0023,0.00255,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00226,0.0025,0,0,0,0,0,0,0,0,0.00845,0.00983,0,0,0,0,0,0,0,0,0.00847,0.00985,0,0,0,0,0,0,0,0,0.00849,0.00988,0,0,0,0,0,0,0,0,0.00839,0.00976,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.00842,0.0098,0,0,0,0,0,0,0,0,0.00844,0.00983,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.0085,0.00989,0,0,0,0,0,0,0,0,0.02031,0.02901,0,0,0,0,0,0,0,0,0.01935,0.02783,0,0,0,0,0,0,0,0,0.01945,0.02945,0,0,0,0,0,0,0,0,0.02123,0.03253,0,0,0,0,0,0,0,0,0.01485,0.02419,0,0,0,0,0,0,0,0,0.0168,0.02683,0,0,0,0,0,0,0,0,0.01525,0.02461,0,0,0,0,0,0,0,0,0.01846,0.02864,0,0,0,0,0,0,0,0,0.01569,0.02439,0,0,0,0,0,0,0,0,0.0012,0.00183,0,0,0,0,0,0,0,0,0.00116,0.00175,0,0,0,0,0,0,0,0,0.00117,0.00178,0,0,0,0,0,0,0,0,0.00122,0.00187,0,0,0,0,0,0,0,0,0.00103,0.00154,0,0,0,0,0,0,0,0,0.00105,0.00157,0,0,0,0,0,0,0,0,0.00098,0.00146,0,0,0,0,0,0,0,0,0.00107,0.00161,0,0,0,0,0,0,0,0,0.00095,0.00142,0,0,0,0,0,0,0,0,0.03723,0.03864,0,0,0,0,0,0,0,0,0.0383,0.03962,0,0,0,0,0,0,0,0,0.04161,0.04297,0,0,0,0,0,0,0,0,0.03506,0.03652,0,0,0,0,0,0,0,0,0.04058,0.04167,0,0,0,0,0,0,0,0,0.0372,0.03834,0,0,0,0,0,0,0,0,0.03713,0.03816,0,0,0,0,0,0,0,0,0.03906,0.04025,0,0,0,0,0,0,0,0,0.03846,0.03945,0,0,0,0,0,0,0,0,0.00685,0.0081,0,0,0,0,0,0,0,0,0.00689,0.00806,0,0,0,0,0,0,0,0,0.00735,0.00855,0,0,0,0,0,0,0,0,0.00662,0.00791,0,0,0,0,0,0,0,0,0.00692,0.00788,0,0,0,0,0,0,0,0,0.00653,0.00754,0,0,0,0,0,0,0,0,0.00639,0.0073,0,0,0,0,0,0,0,0,0.00682,0.00787,0,0,0,0,0,0,0,0,0.00652,0.0074,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00066,0.00067,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00066,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00059,0.0006,0,0,0,0,0,0,0,0,0.04783,0.06022,0,0,0,0,0,0,0,0,0.0421,0.05308,0,0,0,0,0,0,0,0,0.04548,0.05962,0,0,0,0,0,0,0,0,0.05231,0.0687,0,0,0,0,0,0,0,0,0.02774,0.03939,0,0,0,0,0,0,0,0,0.03154,0.04431,0,0,0,0,0,0,0,0,0.02683,0.03736,0,0,0,0,0,0,0,0,0.03611,0.04915,0,0,0,0,0,0,0,0,0.02663,0.03704 +Compact car,PH40G,2050,0,0,0,0,0,0,0,0,0,0.01445,0,0,0,0,0,0,0,0,0,0.01491,0,0,0,0,0,0,0,0,0,0.01618,0,0,0,0,0,0,0,0,0,0.01366,0,0,0,0,0,0,0,0,0,0.01588,0,0,0,0,0,0,0,0,0,0.01462,0,0,0,0,0,0,0,0,0,0.01457,0,0,0,0,0,0,0,0,0,0.01527,0,0,0,0,0,0,0,0,0,0.01501,0,0,0,0,0,0,0,0,0,0.00365,0,0,0,0,0,0,0,0,0,0.00315,0,0,0,0,0,0,0,0,0,0.00339,0,0,0,0,0,0,0,0,0,0.00398,0,0,0,0,0,0,0,0,0,0.0018,0,0,0,0,0,0,0,0,0,0.00214,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00248,0,0,0,0,0,0,0,0,0,0.00176,0,0,0,0,0,0,0,0,0,0.58513,0,0,0,0,0,0,0,0,0,0.54518,0,0,0,0,0,0,0,0,0,0.58766,0,0,0,0,0,0,0,0,0,0.64735,0,0,0,0,0,0,0,0,0,0.4304,0,0,0,0,0,0,0,0,0,0.47107,0,0,0,0,0,0,0,0,0,0.44407,0,0,0,0,0,0,0,0,0,0.50455,0,0,0,0,0,0,0,0,0,0.41241,0,0,0,0,0,0,0,0,0,101.14991,0,0,0,0,0,0,0,0,0,101.94007,0,0,0,0,0,0,0,0,0,103.6548,0,0,0,0,0,0,0,0,0,101.27862,0,0,0,0,0,0,0,0,0,103.42549,0,0,0,0,0,0,0,0,0,101.9006,0,0,0,0,0,0,0,0,0,102.4184,0,0,0,0,0,0,0,0,0,102.69025,0,0,0,0,0,0,0,0,0,100.58271,0,0,0,0,0,0,0,0,0,0.00227,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00226,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00847,0,0,0,0,0,0,0,0,0,0.00849,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.00842,0,0,0,0,0,0,0,0,0,0.00844,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.0085,0,0,0,0,0,0,0,0,0,0.02034,0,0,0,0,0,0,0,0,0,0.01938,0,0,0,0,0,0,0,0,0,0.01948,0,0,0,0,0,0,0,0,0,0.02128,0,0,0,0,0,0,0,0,0,0.01487,0,0,0,0,0,0,0,0,0,0.01682,0,0,0,0,0,0,0,0,0,0.01528,0,0,0,0,0,0,0,0,0,0.01848,0,0,0,0,0,0,0,0,0,0.0157,0,0,0,0,0,0,0,0,0,0.0012,0,0,0,0,0,0,0,0,0,0.00116,0,0,0,0,0,0,0,0,0,0.00118,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00103,0,0,0,0,0,0,0,0,0,0.00105,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00107,0,0,0,0,0,0,0,0,0,0.00095,0,0,0,0,0,0,0,0,0,0.03724,0,0,0,0,0,0,0,0,0,0.0383,0,0,0,0,0,0,0,0,0,0.04162,0,0,0,0,0,0,0,0,0,0.03507,0,0,0,0,0,0,0,0,0,0.04058,0,0,0,0,0,0,0,0,0,0.03721,0,0,0,0,0,0,0,0,0,0.03714,0,0,0,0,0,0,0,0,0,0.03907,0,0,0,0,0,0,0,0,0,0.03846,0,0,0,0,0,0,0,0,0,0.00686,0,0,0,0,0,0,0,0,0,0.0069,0,0,0,0,0,0,0,0,0,0.00735,0,0,0,0,0,0,0,0,0,0.00663,0,0,0,0,0,0,0,0,0,0.00692,0,0,0,0,0,0,0,0,0,0.00654,0,0,0,0,0,0,0,0,0,0.0064,0,0,0,0,0,0,0,0,0,0.00683,0,0,0,0,0,0,0,0,0,0.00652,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00066,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00066,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00059,0,0,0,0,0,0,0,0,0,0.04779,0,0,0,0,0,0,0,0,0,0.04208,0,0,0,0,0,0,0,0,0,0.04543,0,0,0,0,0,0,0,0,0,0.05227,0,0,0,0,0,0,0,0,0,0.02775,0,0,0,0,0,0,0,0,0,0.03154,0,0,0,0,0,0,0,0,0,0.02684,0,0,0,0,0,0,0,0,0,0.03614,0,0,0,0,0,0,0,0,0,0.02663 +Full size car,B20,1990,0.02195,,,,,,,,,,0.02184,,,,,,,,,,0.02159,,,,,,,,,,0.02205,,,,,,,,,,0.02162,,,,,,,,,,0.02185,,,,,,,,,,0.0219,,,,,,,,,,0.02183,,,,,,,,,,0.02188,,,,,,,,,,0.00745,,,,,,,,,,0.00748,,,,,,,,,,0.00759,,,,,,,,,,0.00751,,,,,,,,,,0.00746,,,,,,,,,,0.00746,,,,,,,,,,0.00739,,,,,,,,,,0.00749,,,,,,,,,,0.00727,,,,,,,,,,47.14799,,,,,,,,,,48.05647,,,,,,,,,,48.33487,,,,,,,,,,48.55934,,,,,,,,,,50.67524,,,,,,,,,,50.05546,,,,,,,,,,51.19958,,,,,,,,,,49.67276,,,,,,,,,,47.9112,,,,,,,,,,328.33637,,,,,,,,,,329.47068,,,,,,,,,,333.75801,,,,,,,,,,328.87192,,,,,,,,,,330.25152,,,,,,,,,,327.89924,,,,,,,,,,327.69225,,,,,,,,,,329.78335,,,,,,,,,,323.99835,,,,,,,,,,0.00089,,,,,,,,,,0.0009,,,,,,,,,,0.00093,,,,,,,,,,0.00088,,,,,,,,,,0.00093,,,,,,,,,,0.0009,,,,,,,,,,0.0009,,,,,,,,,,0.00091,,,,,,,,,,0.0009,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,3.1253,,,,,,,,,,3.14279,,,,,,,,,,3.13178,,,,,,,,,,3.15423,,,,,,,,,,3.10834,,,,,,,,,,3.13563,,,,,,,,,,3.14384,,,,,,,,,,3.28373,,,,,,,,,,3.15383,,,,,,,,,,0.04905,,,,,,,,,,0.04867,,,,,,,,,,0.04788,,,,,,,,,,0.04851,,,,,,,,,,0.04784,,,,,,,,,,0.0479,,,,,,,,,,0.04865,,,,,,,,,,0.04847,,,,,,,,,,0.04941,,,,,,,,,,0.1305,,,,,,,,,,0.13077,,,,,,,,,,0.13176,,,,,,,,,,0.12818,,,,,,,,,,0.13128,,,,,,,,,,0.12909,,,,,,,,,,0.13026,,,,,,,,,,0.13123,,,,,,,,,,0.13231,,,,,,,,,,0.09771,,,,,,,,,,0.09719,,,,,,,,,,0.09611,,,,,,,,,,0.09686,,,,,,,,,,0.09603,,,,,,,,,,0.09604,,,,,,,,,,0.09715,,,,,,,,,,0.09699,,,,,,,,,,0.09832,,,,,,,,,,0.02634,,,,,,,,,,0.02643,,,,,,,,,,0.02678,,,,,,,,,,0.02638,,,,,,,,,,0.0265,,,,,,,,,,0.02631,,,,,,,,,,0.02629,,,,,,,,,,0.02646,,,,,,,,,,0.02599,,,,,,,,,,3.88481,,,,,,,,,,3.89701,,,,,,,,,,3.95282,,,,,,,,,,3.91458,,,,,,,,,,3.88645,,,,,,,,,,3.89292,,,,,,,,,,3.8526,,,,,,,,,,3.90097,,,,,,,,,,3.79227,,,,,,,,, +Full size car,B20,1995,0.00303,0.01897,,,,,,,,,0.00301,0.01887,,,,,,,,,0.00298,0.01861,,,,,,,,,0.00302,0.0191,,,,,,,,,0.00298,0.01865,,,,,,,,,0.003,0.0189,,,,,,,,,0.00302,0.01893,,,,,,,,,0.00301,0.01885,,,,,,,,,0.00304,0.01888,,,,,,,,,0.00275,0.00727,,,,,,,,,0.00274,0.00728,,,,,,,,,0.00278,0.0074,,,,,,,,,0.00277,0.00732,,,,,,,,,0.00268,0.00724,,,,,,,,,0.0027,0.00725,,,,,,,,,0.00266,0.00717,,,,,,,,,0.00272,0.00728,,,,,,,,,0.00261,0.00706,,,,,,,,,13.08391,40.31524,,,,,,,,,13.44577,41.14935,,,,,,,,,13.45768,41.40135,,,,,,,,,13.61458,41.57811,,,,,,,,,14.48824,43.5481,,,,,,,,,14.18931,42.95147,,,,,,,,,14.84255,44.03323,,,,,,,,,14.1033,42.6214,,,,,,,,,13.49219,41.04099,,,,,,,,,425.87078,339.93803,,,,,,,,,429.95066,341.30952,,,,,,,,,436.15987,345.91948,,,,,,,,,425.68919,340.45326,,,,,,,,,439.31854,342.68107,,,,,,,,,431.85343,339.89379,,,,,,,,,435.44383,339.91377,,,,,,,,,434.92278,341.93564,,,,,,,,,428.46783,335.8411,,,,,,,,,0.00068,0.00088,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00072,0.00092,,,,,,,,,0.00067,0.00086,,,,,,,,,0.00072,0.00091,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00069,0.00088,,,,,,,,,0.0007,0.0009,,,,,,,,,0.0007,0.00089,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,2.19386,3.23661,,,,,,,,,2.21135,3.25502,,,,,,,,,2.20313,3.24358,,,,,,,,,2.21657,3.26794,,,,,,,,,2.19551,3.22212,,,,,,,,,2.20924,3.25013,,,,,,,,,2.2251,3.25907,,,,,,,,,2.32308,3.39892,,,,,,,,,2.22343,3.26572,,,,,,,,,0.00782,0.04254,,,,,,,,,0.00774,0.04216,,,,,,,,,0.00764,0.04131,,,,,,,,,0.00767,0.04225,,,,,,,,,0.00763,0.04131,,,,,,,,,0.00758,0.04158,,,,,,,,,0.00774,0.04219,,,,,,,,,0.0077,0.04194,,,,,,,,,0.00791,0.04272,,,,,,,,,0.0441,0.11448,,,,,,,,,0.04493,0.11477,,,,,,,,,0.04725,0.11568,,,,,,,,,0.04224,0.11257,,,,,,,,,0.04677,0.11528,,,,,,,,,0.04416,0.11342,,,,,,,,,0.04439,0.11433,,,,,,,,,0.04565,0.11519,,,,,,,,,0.04558,0.11598,,,,,,,,,0.01822,0.08298,,,,,,,,,0.01821,0.08247,,,,,,,,,0.01836,0.08132,,,,,,,,,0.0178,0.0825,,,,,,,,,0.01828,0.08131,,,,,,,,,0.01791,0.08162,,,,,,,,,0.01815,0.08249,,,,,,,,,0.01826,0.08223,,,,,,,,,0.01853,0.0833,,,,,,,,,0.03417,0.00315,,,,,,,,,0.03449,0.00316,,,,,,,,,0.03499,0.0032,,,,,,,,,0.03415,0.00315,,,,,,,,,0.03525,0.00317,,,,,,,,,0.03465,0.00315,,,,,,,,,0.03493,0.00315,,,,,,,,,0.03489,0.00317,,,,,,,,,0.03437,0.00311,,,,,,,,,1.27716,3.3697,,,,,,,,,1.27531,3.37788,,,,,,,,,1.29544,3.42899,,,,,,,,,1.28997,3.39584,,,,,,,,,1.24557,3.35613,,,,,,,,,1.25781,3.3652,,,,,,,,,1.23771,3.32661,,,,,,,,,1.26421,3.37505,,,,,,,,,1.21389,3.27292,,,,,,,, +Full size car,B20,2000,0.00107,0.00178,0.00754,,,,,,,,0.00106,0.00176,0.00751,,,,,,,,0.00105,0.00174,0.00743,,,,,,,,0.00105,0.00175,0.00757,,,,,,,,0.00104,0.00173,0.00744,,,,,,,,0.00104,0.00172,0.00751,,,,,,,,0.00106,0.00176,0.00753,,,,,,,,0.00106,0.00175,0.00751,,,,,,,,0.00109,0.0018,0.00753,,,,,,,,0.00101,0.00191,0.00381,,,,,,,,0.00099,0.0019,0.0038,,,,,,,,0.00101,0.00192,0.00385,,,,,,,,0.00103,0.00194,0.00385,,,,,,,,0.00091,0.00182,0.0037,,,,,,,,0.00095,0.00186,0.00375,,,,,,,,0.00091,0.00181,0.00368,,,,,,,,0.00095,0.00186,0.00376,,,,,,,,0.00088,0.00177,0.00361,,,,,,,,4.68367,7.7993,16.79852,,,,,,,,4.81854,8.01257,17.22283,,,,,,,,4.80666,7.97725,17.26567,,,,,,,,4.90894,8.15519,17.45264,,,,,,,,5.21287,8.65012,18.45493,,,,,,,,5.11874,8.48775,18.13384,,,,,,,,5.37116,8.93372,18.83342,,,,,,,,5.06904,8.4233,17.99071,,,,,,,,4.83023,8.05587,17.23488,,,,,,,,422.41217,424.73423,400.03899,,,,,,,,426.9168,429.11963,403.33094,,,,,,,,433.07582,435.32282,409.15479,,,,,,,,422.63194,424.9542,400.31588,,,,,,,,437.78097,439.54974,410.32729,,,,,,,,429.85458,431.79251,404.31012,,,,,,,,434.17707,435.90156,406.83536,,,,,,,,432.73994,434.70119,407.02503,,,,,,,,426.01965,427.88371,400.26579,,,,,,,,0.00064,0.00066,0.00076,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00068,0.0007,0.0008,,,,,,,,0.00062,0.00065,0.00075,,,,,,,,0.00067,0.0007,0.00079,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00066,0.00069,0.00078,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,1.0421,1.54753,2.44792,,,,,,,,1.04966,1.55891,2.46386,,,,,,,,1.04255,1.54984,2.45238,,,,,,,,1.05578,1.56777,2.47586,,,,,,,,1.04276,1.54922,2.44459,,,,,,,,1.05136,1.56214,2.46515,,,,,,,,1.06034,1.57279,2.47708,,,,,,,,1.10051,1.63133,2.57435,,,,,,,,1.055,1.56481,2.47243,,,,,,,,0.00292,0.00467,0.01701,,,,,,,,0.00287,0.00459,0.01688,,,,,,,,0.00282,0.00451,0.01665,,,,,,,,0.0028,0.00447,0.01679,,,,,,,,0.00281,0.00448,0.01663,,,,,,,,0.00275,0.00439,0.01661,,,,,,,,0.00287,0.00458,0.01687,,,,,,,,0.00285,0.00456,0.01681,,,,,,,,0.003,0.0048,0.01715,,,,,,,,0.03418,0.03748,0.06276,,,,,,,,0.03507,0.03832,0.06349,,,,,,,,0.03748,0.04067,0.06557,,,,,,,,0.03234,0.03552,0.06084,,,,,,,,0.037,0.04017,0.06509,,,,,,,,0.03434,0.03747,0.06258,,,,,,,,0.03451,0.03776,0.06296,,,,,,,,0.03581,0.03904,0.06417,,,,,,,,0.03565,0.03904,0.06428,,,,,,,,0.0091,0.01214,0.03539,,,,,,,,0.00914,0.01213,0.03529,,,,,,,,0.00938,0.01231,0.03521,,,,,,,,0.00869,0.01162,0.03491,,,,,,,,0.00929,0.01221,0.03514,,,,,,,,0.00887,0.01175,0.03485,,,,,,,,0.00906,0.01205,0.03523,,,,,,,,0.00921,0.01218,0.0353,,,,,,,,0.0094,0.01251,0.03574,,,,,,,,0.03389,0.00393,0.0037,,,,,,,,0.03425,0.00397,0.00373,,,,,,,,0.03474,0.00403,0.00379,,,,,,,,0.03391,0.00393,0.00371,,,,,,,,0.03512,0.00407,0.0038,,,,,,,,0.03449,0.004,0.00374,,,,,,,,0.03483,0.00404,0.00377,,,,,,,,0.03472,0.00402,0.00377,,,,,,,,0.03418,0.00396,0.00371,,,,,,,,0.46994,0.88695,1.76031,,,,,,,,0.46251,0.88053,1.7558,,,,,,,,0.47084,0.89153,1.77953,,,,,,,,0.47943,0.90171,1.7825,,,,,,,,0.42477,0.84271,1.71139,,,,,,,,0.44272,0.86326,1.73521,,,,,,,,0.42445,0.84193,1.70353,,,,,,,,0.44532,0.86479,1.73899,,,,,,,,0.41344,0.82282,1.66999,,,,,,, +Full size car,B20,2005,0.00045,0.00068,0.00112,0.00245,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00242,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00242,,,,,,,0.00045,0.00068,0.00111,0.00243,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00046,0.00069,0.00112,0.00246,,,,,,,0.00061,0.00096,0.00148,0.00214,,,,,,,0.00058,0.00093,0.00144,0.0021,,,,,,,0.00059,0.00095,0.00146,0.00212,,,,,,,0.00063,0.00099,0.00152,0.00219,,,,,,,0.00044,0.00079,0.00127,0.00189,,,,,,,0.0005,0.00086,0.00136,0.002,,,,,,,0.00045,0.00079,0.00128,0.00191,,,,,,,0.00051,0.00086,0.00136,0.00201,,,,,,,0.00043,0.00077,0.00124,0.00186,,,,,,,1.56697,3.32566,4.8634,6.80959,,,,,,,1.59958,3.40201,4.975,6.96106,,,,,,,1.57837,3.38183,4.95811,6.93641,,,,,,,1.63121,3.45535,5.04588,7.06469,,,,,,,1.70124,3.64116,5.32511,7.42865,,,,,,,1.67884,3.57606,5.22615,7.30589,,,,,,,1.76995,3.75838,5.47768,7.63484,,,,,,,1.67091,3.56089,5.20432,7.26809,,,,,,,1.61431,3.42898,5.00984,6.99902,,,,,,,420.59384,421.9057,425.24177,431.32059,,,,,,,425.20989,426.43788,429.6153,435.41732,,,,,,,431.33524,432.58737,435.82903,441.74838,,,,,,,420.84284,422.12796,425.48477,431.61952,,,,,,,436.47524,437.40271,439.9997,444.78351,,,,,,,428.40237,429.43846,432.2673,437.46314,,,,,,,432.92134,433.81007,436.35273,441.04794,,,,,,,431.25802,432.31734,435.17226,440.40892,,,,,,,424.58436,425.61568,428.31002,433.23517,,,,,,,0.00062,0.00063,0.00067,0.00073,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00066,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00065,0.00072,,,,,,,0.00065,0.00067,0.0007,0.00077,,,,,,,0.00063,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00064,0.00067,0.00074,,,,,,,0.00064,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.198,0.41241,0.57687,0.95177,,,,,,,0.19909,0.41453,0.57948,0.95628,,,,,,,0.19781,0.41182,0.57537,0.94993,,,,,,,0.20073,0.41814,0.58513,0.96515,,,,,,,0.19755,0.41123,0.5746,0.94885,,,,,,,0.19966,0.4158,0.58158,0.9599,,,,,,,0.20064,0.41757,0.58341,0.96252,,,,,,,0.20744,0.43132,0.6014,0.99182,,,,,,,0.19963,0.41545,0.58021,0.95711,,,,,,,0.00125,0.00184,0.00284,0.00566,,,,,,,0.00125,0.00183,0.00283,0.00562,,,,,,,0.00125,0.00183,0.00283,0.00559,,,,,,,0.00122,0.00179,0.00277,0.00553,,,,,,,0.00124,0.00182,0.00282,0.00557,,,,,,,0.00122,0.00179,0.00277,0.00549,,,,,,,0.00124,0.00182,0.00282,0.00561,,,,,,,0.00125,0.00183,0.00283,0.00561,,,,,,,0.00128,0.00187,0.00288,0.00576,,,,,,,0.03086,0.03194,0.03395,0.03975,,,,,,,0.03182,0.0329,0.03491,0.04065,,,,,,,0.03433,0.0354,0.03741,0.04309,,,,,,,0.02918,0.03025,0.03223,0.03792,,,,,,,0.03386,0.03493,0.03694,0.0426,,,,,,,0.03127,0.03233,0.03432,0.03994,,,,,,,0.03127,0.03234,0.03435,0.04009,,,,,,,0.0326,0.03368,0.03569,0.04142,,,,,,,0.03222,0.03332,0.03535,0.04123,,,,,,,0.00604,0.00704,0.00888,0.01422,,,,,,,0.00616,0.00715,0.00899,0.01428,,,,,,,0.00647,0.00746,0.00931,0.01453,,,,,,,0.00578,0.00676,0.00859,0.01382,,,,,,,0.0064,0.00739,0.00923,0.01445,,,,,,,0.00605,0.00702,0.00885,0.01402,,,,,,,0.00608,0.00707,0.00891,0.0142,,,,,,,0.00625,0.00725,0.0091,0.01437,,,,,,,0.00624,0.00725,0.00912,0.01453,,,,,,,0.03374,0.00391,0.00394,0.00399,,,,,,,0.03411,0.00395,0.00398,0.00403,,,,,,,0.0346,0.004,0.00403,0.00409,,,,,,,0.03376,0.00391,0.00394,0.004,,,,,,,0.03502,0.00405,0.00407,0.00412,,,,,,,0.03437,0.00398,0.004,0.00405,,,,,,,0.03473,0.00402,0.00404,0.00408,,,,,,,0.0346,0.004,0.00403,0.00408,,,,,,,0.03406,0.00394,0.00396,0.00401,,,,,,,0.17651,0.27643,0.42119,0.70547,,,,,,,0.16845,0.26763,0.41061,0.69263,,,,,,,0.17386,0.27273,0.41588,0.70068,,,,,,,0.1826,0.28474,0.43295,0.72245,,,,,,,0.13177,0.22761,0.36256,0.6323,,,,,,,0.14814,0.24688,0.38725,0.66441,,,,,,,0.1324,0.22927,0.36558,0.63549,,,,,,,0.15084,0.24888,0.3886,0.66557,,,,,,,0.12724,0.22201,0.35513,0.61913,,,,,, +Full size car,B20,2010,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00127,0.00237,,,,,,,0.00051,0.00074,0.00128,0.00239,,,,,,,0.00051,0.00074,0.00127,0.00237,,,,,,,0.00051,0.00074,0.00127,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.05891,0.09169,0.16167,0.18123,,,,,,,0.05564,0.08782,0.15672,0.17585,,,,,,,0.05784,0.0902,0.15932,0.17865,,,,,,,0.06116,0.09477,0.16647,0.18657,,,,,,,0.04082,0.07026,0.13424,0.15147,,,,,,,0.04728,0.07826,0.1452,0.16349,,,,,,,0.04103,0.07078,0.13545,0.1528,,,,,,,0.04848,0.07946,0.14626,0.16454,,,,,,,0.03918,0.06816,0.13123,0.14813,,,,,,,1.68976,3.13805,4.79147,6.146,,,,,,,1.7256,3.20772,4.89818,6.27364,,,,,,,1.69702,3.17249,4.8604,6.23037,,,,,,,1.76191,3.26575,4.97821,6.3749,,,,,,,1.83701,3.42517,5.23199,6.67224,,,,,,,1.81277,3.37084,5.14408,6.5732,,,,,,,1.92044,3.55711,5.40998,6.88142,,,,,,,1.80506,3.35693,5.12294,6.54286,,,,,,,1.74485,3.23856,4.93933,6.31622,,,,,,,421.0849,423.30045,427.03856,432.9663,,,,,,,425.74107,427.85118,431.42551,437.08652,,,,,,,431.86895,434.02105,437.6672,443.44222,,,,,,,421.30525,423.52623,427.29641,433.2824,,,,,,,437.14059,438.86559,441.8364,446.51636,,,,,,,428.9945,430.87012,434.08388,439.16214,,,,,,,433.57761,435.26399,438.17938,442.77531,,,,,,,431.86225,433.75794,436.99719,442.11353,,,,,,,425.23264,427.03253,430.08629,434.89576,,,,,,,0.00061,0.00063,0.00067,0.00073,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00072,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.09426,0.16941,0.25245,0.44422,,,,,,,0.09455,0.16986,0.25298,0.44541,,,,,,,0.09289,0.16686,0.24844,0.43971,,,,,,,0.09578,0.17217,0.25666,0.45138,,,,,,,0.09283,0.16677,0.24832,0.4395,,,,,,,0.09451,0.16988,0.25317,0.44689,,,,,,,0.09526,0.17108,0.25466,0.44819,,,,,,,0.09829,0.17626,0.26185,0.46006,,,,,,,0.0949,0.17038,0.25349,0.44549,,,,,,,0.00075,0.001,0.00141,0.00301,,,,,,,0.00075,0.001,0.00141,0.003,,,,,,,0.00075,0.00099,0.00141,0.00299,,,,,,,0.00074,0.00098,0.0014,0.00296,,,,,,,0.00075,0.00099,0.00141,0.00299,,,,,,,0.00074,0.00098,0.00139,0.00296,,,,,,,0.00075,0.00099,0.00141,0.003,,,,,,,0.00075,0.001,0.00141,0.003,,,,,,,0.00076,0.00101,0.00143,0.00305,,,,,,,0.0314,0.03262,0.03545,0.04042,,,,,,,0.03237,0.03359,0.03642,0.04137,,,,,,,0.03487,0.03609,0.03891,0.04384,,,,,,,0.02974,0.03095,0.03376,0.03867,,,,,,,0.03441,0.03563,0.03844,0.04337,,,,,,,0.03183,0.03304,0.03584,0.04074,,,,,,,0.03181,0.03303,0.03586,0.0408,,,,,,,0.03315,0.03437,0.0372,0.04216,,,,,,,0.03275,0.03399,0.03684,0.04184,,,,,,,0.00654,0.00766,0.01027,0.01484,,,,,,,0.00666,0.00778,0.01038,0.01494,,,,,,,0.00697,0.00809,0.01069,0.01523,,,,,,,0.0063,0.00741,0.00999,0.01451,,,,,,,0.00691,0.00803,0.01062,0.01515,,,,,,,0.00656,0.00767,0.01025,0.01476,,,,,,,0.00658,0.0077,0.0103,0.01485,,,,,,,0.00676,0.00788,0.01049,0.01504,,,,,,,0.00673,0.00787,0.01049,0.01509,,,,,,,0.00371,0.00372,0.00374,0.00382,,,,,,,0.00375,0.00376,0.00378,0.00385,,,,,,,0.0038,0.00381,0.00383,0.00391,,,,,,,0.00371,0.00372,0.00374,0.00382,,,,,,,0.00385,0.00386,0.00387,0.00393,,,,,,,0.00378,0.00379,0.0038,0.00387,,,,,,,0.00382,0.00382,0.00384,0.0039,,,,,,,0.0038,0.00381,0.00383,0.0039,,,,,,,0.00374,0.00375,0.00377,0.00383,,,,,,,0.11405,0.16425,0.24308,0.40067,,,,,,,0.1088,0.15831,0.23603,0.39091,,,,,,,0.11237,0.16198,0.23987,0.39617,,,,,,,0.11793,0.16934,0.25008,0.4116,,,,,,,0.08482,0.1312,0.20386,0.3463,,,,,,,0.0954,0.14376,0.21959,0.36911,,,,,,,0.08523,0.13211,0.20553,0.34881,,,,,,,0.09728,0.14549,0.22109,0.37046,,,,,,,0.08187,0.12762,0.19928,0.33897,,,,, +Full size car,B20,2015,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00133,0.0023,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.00052,0.00081,0.00133,0.0023,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.08628,0.13981,0.21316,0.26678,,,,,,,0.08155,0.13428,0.20654,0.25882,,,,,,,0.08473,0.1376,0.21006,0.26299,,,,,,,0.08955,0.14439,0.21954,0.27467,,,,,,,0.0601,0.10915,0.17644,0.22273,,,,,,,0.06946,0.12074,0.19107,0.24051,,,,,,,0.06041,0.11,0.178,0.22466,,,,,,,0.07119,0.12236,0.19251,0.24206,,,,,,,0.05772,0.10609,0.17242,0.21779,,,,,,,1.50615,3.35216,4.9018,5.93185,,,,,,,1.53702,3.42585,5.00954,6.05401,,,,,,,1.50784,3.38732,4.96771,6.00463,,,,,,,1.57139,3.48841,5.09306,6.15419,,,,,,,1.63277,3.65582,5.34642,6.43624,,,,,,,1.61378,3.59917,5.2594,6.34208,,,,,,,1.71139,3.79726,5.53154,6.64876,,,,,,,1.60669,3.5841,5.23754,6.31446,,,,,,,1.55484,3.45857,5.05188,6.09936,,,,,,,338.87929,340.21066,340.4814,347.12404,,,,,,,342.67392,343.88312,343.98149,350.43648,,,,,,,347.85144,349.09203,349.21465,355.77342,,,,,,,338.97517,340.31664,340.61394,347.31326,,,,,,,351.83331,352.60666,352.10568,357.85412,,,,,,,345.14106,346.09515,345.85788,351.88691,,,,,,,348.72241,349.46412,348.93639,354.61893,,,,,,,347.57366,348.54097,348.30754,354.37097,,,,,,,342.03744,342.91051,342.55674,348.35541,,,,,,,0.00061,0.00064,0.00068,0.00073,,,,,,,0.00062,0.00065,0.00069,0.00074,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00071,,,,,,,0.00065,0.00067,0.00071,0.00076,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00073,,,,,,,0.00063,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.0669,0.14623,0.22002,0.28571,,,,,,,0.06703,0.14648,0.22034,0.28607,,,,,,,0.06553,0.14331,0.21577,0.28068,,,,,,,0.06805,0.14875,0.22383,0.29066,,,,,,,0.06552,0.14328,0.21572,0.28062,,,,,,,0.06693,0.14636,0.22035,0.28651,,,,,,,0.06754,0.14752,0.2218,0.28781,,,,,,,0.06961,0.15183,0.2279,0.2951,,,,,,,0.06731,0.14695,0.22083,0.2863,,,,,,,0.00041,0.00062,0.00096,0.00166,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00095,0.00164,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00095,0.00163,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00096,0.00166,,,,,,,0.00042,0.00062,0.00097,0.00167,,,,,,,0.03156,0.03317,0.03594,0.04063,,,,,,,0.03253,0.03414,0.03691,0.04159,,,,,,,0.03503,0.03664,0.0394,0.04407,,,,,,,0.0299,0.0315,0.03425,0.0389,,,,,,,0.03457,0.03618,0.03893,0.0436,,,,,,,0.03199,0.03359,0.03633,0.04098,,,,,,,0.03198,0.03359,0.03635,0.04103,,,,,,,0.03331,0.03493,0.0377,0.04238,,,,,,,0.03292,0.03455,0.03734,0.04205,,,,,,,0.00669,0.00817,0.01072,0.01503,,,,,,,0.00681,0.00829,0.01084,0.01514,,,,,,,0.00712,0.0086,0.01114,0.01544,,,,,,,0.00644,0.00791,0.01044,0.01472,,,,,,,0.00706,0.00854,0.01107,0.01536,,,,,,,0.00671,0.00818,0.0107,0.01498,,,,,,,0.00673,0.00821,0.01075,0.01506,,,,,,,0.00691,0.00839,0.01094,0.01525,,,,,,,0.00688,0.00838,0.01095,0.01528,,,,,,,0.00291,0.00293,0.00293,0.00299,,,,,,,0.00295,0.00296,0.00296,0.00302,,,,,,,0.00299,0.003,0.003,0.00307,,,,,,,0.00292,0.00293,0.00293,0.00299,,,,,,,0.00303,0.00303,0.00303,0.00308,,,,,,,0.00297,0.00298,0.00297,0.00303,,,,,,,0.003,0.00301,0.003,0.00306,,,,,,,0.00299,0.003,0.003,0.00305,,,,,,,0.00294,0.00295,0.00295,0.003,,,,,,,0.08545,0.13514,0.2032,0.27131,,,,,,,0.08112,0.13007,0.19711,0.26357,,,,,,,0.08415,0.13323,0.20047,0.26772,,,,,,,0.08849,0.13939,0.20912,0.27914,,,,,,,0.06137,0.10689,0.16931,0.22831,,,,,,,0.06995,0.11754,0.18279,0.24572,,,,,,,0.0616,0.10763,0.17071,0.23017,,,,,,,0.07159,0.11908,0.18417,0.24722,,,,,,,0.059,0.10389,0.16544,0.22325,,,, +Full size car,B20,2020,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00188,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00048,0.0007,0.00102,0.00187,,,,,,,0.07955,0.11217,0.15133,0.21057,,,,,,,0.07468,0.10656,0.14468,0.20224,,,,,,,0.07804,0.11022,0.14885,0.20728,,,,,,,0.08274,0.11624,0.15651,0.2175,,,,,,,0.05258,0.0811,0.1145,0.16448,,,,,,,0.06207,0.09237,0.12816,0.18197,,,,,,,0.05278,0.08159,0.11529,0.16566,,,,,,,0.06395,0.09431,0.13026,0.18431,,,,,,,0.0502,0.07821,0.11093,0.15981,,,,,,,1.19391,2.1344,2.82594,3.83882,,,,,,,1.2178,2.17907,2.88375,3.91229,,,,,,,1.19354,2.1469,2.84465,3.86498,,,,,,,1.24561,2.22272,2.9393,3.98502,,,,,,,1.29181,2.31811,3.06395,4.14169,,,,,,,1.27788,2.28717,3.02354,4.09267,,,,,,,1.35511,2.41689,3.18797,4.29553,,,,,,,1.27219,2.2774,3.01073,4.07411,,,,,,,1.23197,2.20151,2.91154,3.94403,,,,,,,266.13609,267.35825,268.24247,281.31394,,,,,,,269.04375,270.16773,270.91097,283.88463,,,,,,,273.15196,274.30163,275.06915,288.25465,,,,,,,266.23896,267.47229,268.38432,281.51633,,,,,,,275.96422,276.7379,276.98939,289.48347,,,,,,,270.82127,271.74108,272.20913,284.83021,,,,,,,273.49036,274.23968,274.47049,286.83436,,,,,,,272.73969,273.66927,274.14083,286.84457,,,,,,,268.28135,269.13119,269.49125,281.8162,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00072,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00066,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.04804,0.09113,0.1223,0.17441,,,,,,,0.04809,0.09119,0.12233,0.17445,,,,,,,0.04687,0.08895,0.11941,0.17071,,,,,,,0.04891,0.0928,0.12457,0.17763,,,,,,,0.04689,0.08898,0.11946,0.17077,,,,,,,0.04801,0.09112,0.12236,0.17477,,,,,,,0.04844,0.09182,0.12311,0.17547,,,,,,,0.04979,0.09423,0.12611,0.1794,,,,,,,0.04825,0.09141,0.1225,0.17444,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00038,0.00053,0.00074,0.00125,,,,,,,0.03126,0.03246,0.03413,0.0382,,,,,,,0.03224,0.03343,0.0351,0.03916,,,,,,,0.03474,0.03593,0.0376,0.04165,,,,,,,0.02961,0.03079,0.03246,0.0365,,,,,,,0.03428,0.03546,0.03713,0.04118,,,,,,,0.0317,0.03288,0.03454,0.03858,,,,,,,0.03168,0.03287,0.03455,0.0386,,,,,,,0.03302,0.03421,0.03589,0.03995,,,,,,,0.03262,0.03382,0.03551,0.03959,,,,,,,0.00641,0.00751,0.00906,0.01279,,,,,,,0.00654,0.00763,0.00917,0.01291,,,,,,,0.00685,0.00795,0.00948,0.01321,,,,,,,0.00618,0.00726,0.00879,0.01251,,,,,,,0.00679,0.00788,0.00942,0.01313,,,,,,,0.00644,0.00753,0.00906,0.01277,,,,,,,0.00646,0.00756,0.00909,0.01282,,,,,,,0.00664,0.00773,0.00928,0.01301,,,,,,,0.00661,0.00772,0.00927,0.01302,,,,,,,0.00229,0.0023,0.00231,0.00242,,,,,,,0.00231,0.00232,0.00233,0.00244,,,,,,,0.00235,0.00236,0.00237,0.00248,,,,,,,0.00229,0.0023,0.00231,0.00242,,,,,,,0.00237,0.00238,0.00238,0.00249,,,,,,,0.00233,0.00234,0.00234,0.00245,,,,,,,0.00235,0.00236,0.00236,0.00247,,,,,,,0.00235,0.00235,0.00236,0.00247,,,,,,,0.00231,0.00231,0.00232,0.00242,,,,,,,0.07805,0.10833,0.14468,0.2016,,,,,,,0.07357,0.10317,0.13855,0.19386,,,,,,,0.07676,0.10664,0.14249,0.19864,,,,,,,0.08101,0.11211,0.1495,0.20808,,,,,,,0.05318,0.07965,0.11065,0.15871,,,,,,,0.0619,0.09003,0.12325,0.17498,,,,,,,0.05333,0.08007,0.11134,0.15978,,,,,,,0.06368,0.09187,0.12523,0.17719,,,,,,,0.05084,0.07685,0.10722,0.15423,,, +Full size car,B20,2025,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.0013,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.06948,0.09009,0.1176,0.16463,,,,,,,0.06458,0.0845,0.11099,0.15624,,,,,,,0.06807,0.08837,0.11545,0.16178,,,,,,,0.07249,0.09373,0.12211,0.17068,,,,,,,0.04232,0.05913,0.08101,0.11823,,,,,,,0.05171,0.07,0.09405,0.13504,,,,,,,0.0424,0.05935,0.08141,0.11887,,,,,,,0.05371,0.07217,0.09649,0.13794,,,,,,,0.04,0.05641,0.07772,0.1139,,,,,,,0.75481,1.36799,1.85261,2.54958,,,,,,,0.76903,1.39514,1.88894,2.59604,,,,,,,0.74992,1.36741,1.85479,2.5542,,,,,,,0.78851,1.42663,1.92951,2.64946,,,,,,,0.81289,1.47933,2.0018,2.74068,,,,,,,0.8063,1.46333,1.97957,2.71396,,,,,,,0.8575,1.55151,2.09394,2.85562,,,,,,,0.80265,1.45708,1.97124,2.70161,,,,,,,0.77894,1.41151,1.9097,2.61992,,,,,,,214.62743,215.69269,216.76528,228.85495,,,,,,,216.90591,217.88973,218.84284,230.84091,,,,,,,220.22536,221.23149,222.21037,234.41111,,,,,,,214.74657,215.82308,216.92405,229.0766,,,,,,,222.25926,222.95159,223.48322,235.03108,,,,,,,218.22472,219.03887,219.75518,231.42358,,,,,,,220.26841,220.94096,221.45352,232.87862,,,,,,,219.76199,220.58426,221.30437,233.0493,,,,,,,216.09262,216.8454,217.45813,228.83609,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00076,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02682,0.05159,0.07257,0.10821,,,,,,,0.02678,0.05151,0.07245,0.10808,,,,,,,0.02591,0.0499,0.07028,0.10531,,,,,,,0.02737,0.05264,0.07407,0.11039,,,,,,,0.02595,0.04997,0.07038,0.10544,,,,,,,0.02673,0.05146,0.07246,0.10831,,,,,,,0.02697,0.05185,0.07289,0.1087,,,,,,,0.02758,0.05295,0.07431,0.11068,,,,,,,0.02684,0.05158,0.07246,0.10795,,,,,,,0.00024,0.00034,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00047,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00025,0.00034,0.00048,0.00085,,,,,,,0.03026,0.03099,0.03213,0.03514,,,,,,,0.03123,0.03196,0.0331,0.03611,,,,,,,0.03374,0.03447,0.03561,0.0386,,,,,,,0.02862,0.02934,0.03048,0.03347,,,,,,,0.03328,0.03401,0.03514,0.03813,,,,,,,0.03071,0.03143,0.03256,0.03555,,,,,,,0.03068,0.03141,0.03255,0.03555,,,,,,,0.03201,0.03275,0.03389,0.03689,,,,,,,0.0316,0.03234,0.03349,0.03651,,,,,,,0.00549,0.00616,0.00722,0.00998,,,,,,,0.00561,0.00629,0.00734,0.0101,,,,,,,0.00593,0.0066,0.00765,0.0104,,,,,,,0.00526,0.00593,0.00697,0.00972,,,,,,,0.00587,0.00654,0.00758,0.01034,,,,,,,0.00553,0.0062,0.00724,0.00998,,,,,,,0.00554,0.00621,0.00726,0.01002,,,,,,,0.00571,0.00639,0.00744,0.0102,,,,,,,0.00568,0.00635,0.00741,0.01019,,,,,,,0.00185,0.00186,0.00186,0.00197,,,,,,,0.00187,0.00187,0.00188,0.00199,,,,,,,0.00189,0.0019,0.00191,0.00202,,,,,,,0.00185,0.00186,0.00187,0.00197,,,,,,,0.00191,0.00192,0.00192,0.00202,,,,,,,0.00188,0.00188,0.00189,0.00199,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00186,0.00187,0.00187,0.00197,,,,,,,0.06789,0.08703,0.11256,0.1564,,,,,,,0.06337,0.08187,0.10647,0.14865,,,,,,,0.06667,0.08552,0.11066,0.15384,,,,,,,0.07068,0.0904,0.11676,0.16201,,,,,,,0.04281,0.05841,0.07873,0.11344,,,,,,,0.05145,0.06844,0.09076,0.12899,,,,,,,0.04284,0.05858,0.07906,0.114,,,,,,,0.05334,0.07048,0.09305,0.1317,,,,,,,0.04056,0.05579,0.07557,0.10932,, +Full size car,B20,2030,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00067,0.00113,,,,,,,0.06649,0.0839,0.10901,0.14537,,,,,,,0.06159,0.07833,0.10241,0.13701,,,,,,,0.0651,0.08224,0.10695,0.14271,,,,,,,0.06943,0.0874,0.11336,0.15103,,,,,,,0.03936,0.05306,0.07247,0.09911,,,,,,,0.04869,0.06379,0.08535,0.11556,,,,,,,0.0394,0.05321,0.07276,0.09955,,,,,,,0.05072,0.06602,0.08788,0.11866,,,,,,,0.03707,0.0504,0.06924,0.09495,,,,,,,0.64076,1.17885,1.61853,2.07987,,,,,,,0.6526,1.20185,1.64987,2.11724,,,,,,,0.63506,1.17563,1.61741,2.07812,,,,,,,0.66978,1.2301,1.68659,2.16311,,,,,,,0.68905,1.27301,1.74708,2.23338,,,,,,,0.6841,1.26036,1.72886,2.21338,,,,,,,0.72861,1.33819,1.83102,2.33395,,,,,,,0.68101,1.25499,1.72162,2.20354,,,,,,,0.66141,1.21666,1.66884,2.1386,,,,,,,197.442,198.94324,201.27385,208.74759,,,,,,,199.51309,200.94427,203.17395,210.51763,,,,,,,202.56912,204.02895,206.30392,213.77924,,,,,,,197.56554,199.07789,201.43876,208.9737,,,,,,,204.35243,205.52601,207.38332,214.19719,,,,,,,200.68329,201.96044,203.97152,210.97725,,,,,,,202.523,203.67353,205.50126,212.23657,,,,,,,202.09373,203.38191,205.40524,212.454,,,,,,,198.69021,199.90429,201.79958,208.56216,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04113,0.06005,0.08369,,,,,,,0.02107,0.04101,0.05989,0.08349,,,,,,,0.02028,0.03956,0.0579,0.08106,,,,,,,0.02159,0.04203,0.06136,0.08547,,,,,,,0.02033,0.03964,0.05802,0.08122,,,,,,,0.02102,0.04096,0.05989,0.08367,,,,,,,0.02121,0.04128,0.06025,0.08396,,,,,,,0.02162,0.04203,0.06127,0.08526,,,,,,,0.0211,0.04104,0.05987,0.08334,,,,,,,0.00024,0.00034,0.00048,0.00075,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00075,,,,,,,0.00025,0.00034,0.00048,0.00075,,,,,,,0.03026,0.03099,0.03213,0.03435,,,,,,,0.03123,0.03196,0.0331,0.03532,,,,,,,0.03374,0.03447,0.03561,0.03782,,,,,,,0.02862,0.02934,0.03048,0.03269,,,,,,,0.03328,0.034,0.03514,0.03735,,,,,,,0.03071,0.03143,0.03256,0.03477,,,,,,,0.03068,0.03141,0.03255,0.03477,,,,,,,0.03201,0.03274,0.03389,0.03611,,,,,,,0.0316,0.03234,0.03349,0.03572,,,,,,,0.00549,0.00616,0.00721,0.00926,,,,,,,0.00561,0.00628,0.00733,0.00938,,,,,,,0.00593,0.0066,0.00765,0.00968,,,,,,,0.00526,0.00593,0.00697,0.00901,,,,,,,0.00587,0.00654,0.00758,0.00962,,,,,,,0.00553,0.00619,0.00724,0.00927,,,,,,,0.00554,0.00621,0.00726,0.0093,,,,,,,0.00571,0.00639,0.00744,0.00948,,,,,,,0.00567,0.00635,0.00741,0.00946,,,,,,,0.0017,0.00171,0.00173,0.0018,,,,,,,0.00172,0.00173,0.00175,0.00181,,,,,,,0.00174,0.00175,0.00177,0.00184,,,,,,,0.0017,0.00171,0.00173,0.0018,,,,,,,0.00176,0.00177,0.00178,0.00184,,,,,,,0.00173,0.00174,0.00175,0.00181,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00171,0.00172,0.00174,0.00179,,,,,,,0.06483,0.08101,0.10435,0.13821,,,,,,,0.06032,0.07588,0.09826,0.13048,,,,,,,0.06363,0.07955,0.10252,0.13582,,,,,,,0.06757,0.08427,0.10839,0.14346,,,,,,,0.03977,0.0525,0.07054,0.09537,,,,,,,0.04837,0.06241,0.08244,0.11058,,,,,,,0.03978,0.05261,0.07078,0.09574,,,,,,,0.05028,0.0645,0.08481,0.11348,,,,,,,0.03756,0.04994,0.06746,0.09142, +Full size car,B20,2035,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00112,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.06625,0.08388,0.10899,0.14208,,,,,,,0.06137,0.07831,0.10239,0.13371,,,,,,,0.06488,0.08222,0.10693,0.13944,,,,,,,0.06919,0.08738,0.11334,0.14767,,,,,,,0.03923,0.05305,0.07246,0.09577,,,,,,,0.04852,0.06378,0.08533,0.11217,,,,,,,0.03927,0.0532,0.07275,0.09616,,,,,,,0.05055,0.06601,0.08787,0.11532,,,,,,,0.03695,0.05039,0.06923,0.09163,,,,,,,0.64138,1.17879,1.61842,2.00267,,,,,,,0.65324,1.20178,1.64976,2.03863,,,,,,,0.63568,1.17558,1.6173,1.99997,,,,,,,0.67043,1.23003,1.68647,2.08323,,,,,,,0.68978,1.27296,1.74696,2.15032,,,,,,,0.68479,1.2603,1.72874,2.1313,,,,,,,0.7294,1.33813,1.83089,2.24861,,,,,,,0.68171,1.25493,1.72151,2.1219,,,,,,,0.66209,1.2166,1.66874,2.05964,,,,,,,197.39877,198.9384,201.27053,205.66042,,,,,,,199.47153,200.93963,203.17053,207.39687,,,,,,,202.52651,204.0243,206.30052,210.61088,,,,,,,197.52118,199.07306,201.43526,205.88753,,,,,,,204.31625,205.52194,207.38021,210.99603,,,,,,,200.64476,201.95608,203.96823,207.83676,,,,,,,202.48706,203.66949,205.49815,209.06493,,,,,,,202.05514,203.37755,205.4021,209.29043,,,,,,,198.65463,199.9004,201.79666,205.44751,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04114,0.06005,0.07962,,,,,,,0.02106,0.04103,0.05988,0.07941,,,,,,,0.02028,0.03957,0.05789,0.07704,,,,,,,0.02159,0.04204,0.06135,0.08134,,,,,,,0.02033,0.03966,0.05801,0.0772,,,,,,,0.02102,0.04097,0.05989,0.07958,,,,,,,0.02121,0.04129,0.06024,0.07986,,,,,,,0.02162,0.04205,0.06127,0.08105,,,,,,,0.0211,0.04106,0.05986,0.07926,,,,,,,0.00024,0.00034,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00047,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00025,0.00034,0.00048,0.00074,,,,,,,0.03026,0.03099,0.03213,0.03425,,,,,,,0.03123,0.03196,0.0331,0.03522,,,,,,,0.03374,0.03447,0.03561,0.03771,,,,,,,0.02862,0.02934,0.03048,0.03258,,,,,,,0.03328,0.034,0.03514,0.03725,,,,,,,0.03071,0.03143,0.03256,0.03467,,,,,,,0.03068,0.03141,0.03255,0.03466,,,,,,,0.03201,0.03274,0.03389,0.036,,,,,,,0.0316,0.03234,0.03349,0.03562,,,,,,,0.00549,0.00616,0.00721,0.00916,,,,,,,0.00561,0.00629,0.00733,0.00928,,,,,,,0.00593,0.0066,0.00765,0.00959,,,,,,,0.00526,0.00593,0.00697,0.00891,,,,,,,0.00587,0.00654,0.00758,0.00952,,,,,,,0.00553,0.00619,0.00724,0.00917,,,,,,,0.00554,0.00621,0.00726,0.0092,,,,,,,0.00571,0.00639,0.00744,0.00938,,,,,,,0.00567,0.00635,0.00741,0.00937,,,,,,,0.0017,0.00171,0.00173,0.00177,,,,,,,0.00172,0.00173,0.00175,0.00178,,,,,,,0.00174,0.00175,0.00177,0.00181,,,,,,,0.0017,0.00171,0.00173,0.00177,,,,,,,0.00176,0.00177,0.00178,0.00181,,,,,,,0.00173,0.00174,0.00175,0.00179,,,,,,,0.00174,0.00175,0.00177,0.0018,,,,,,,0.00174,0.00175,0.00177,0.0018,,,,,,,0.00171,0.00172,0.00174,0.00177,,,,,,,0.06462,0.08099,0.10433,0.13511,,,,,,,0.06012,0.07586,0.09824,0.12737,,,,,,,0.06342,0.07953,0.1025,0.13274,,,,,,,0.06734,0.08425,0.10837,0.1403,,,,,,,0.03965,0.05249,0.07053,0.09222,,,,,,,0.04822,0.06239,0.08243,0.10739,,,,,,,0.03966,0.0526,0.07077,0.09255,,,,,,,0.05012,0.06448,0.0848,0.11033,,,,,,,0.03744,0.04993,0.06745,0.08829 +Full size car,B20,2040,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.06621,0.08382,0.10898,,,,,,,,0.06133,0.07826,0.10239,,,,,,,,0.06483,0.08216,0.10693,,,,,,,,0.06914,0.08733,0.11333,,,,,,,,0.0392,0.05301,0.07245,,,,,,,,0.04849,0.06374,0.08533,,,,,,,,0.03924,0.05317,0.07274,,,,,,,,0.05051,0.06596,0.08786,,,,,,,,0.03692,0.05035,0.06922,,,,,,,,0.64078,1.17853,1.61839,,,,,,,,0.65264,1.20153,1.64973,,,,,,,,0.63509,1.17532,1.61727,,,,,,,,0.66981,1.22977,1.68644,,,,,,,,0.68914,1.2727,1.74693,,,,,,,,0.68416,1.26003,1.72871,,,,,,,,0.72874,1.33787,1.83086,,,,,,,,0.68108,1.25467,1.72147,,,,,,,,0.66147,1.21634,1.6687,,,,,,,,197.39176,198.93068,201.26942,,,,,,,,199.46466,200.93212,203.16953,,,,,,,,202.51968,204.01662,206.29932,,,,,,,,197.51405,199.06503,201.43412,,,,,,,,204.31053,205.51561,207.37937,,,,,,,,200.6385,201.94928,203.96736,,,,,,,,202.48143,203.66305,205.49733,,,,,,,,202.04896,203.37055,205.40101,,,,,,,,198.64888,199.89403,201.79583,,,,,,,,0.00062,0.00064,0.00068,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00066,0.00068,0.00071,,,,,,,,0.0006,0.00063,0.00066,,,,,,,,0.00065,0.00068,0.00071,,,,,,,,0.00063,0.00065,0.00068,,,,,,,,0.00062,0.00065,0.00068,,,,,,,,0.00064,0.00066,0.0007,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,0.0211,0.04112,0.06004,,,,,,,,0.02105,0.041,0.05988,,,,,,,,0.02026,0.03955,0.05789,,,,,,,,0.02157,0.04202,0.06135,,,,,,,,0.02031,0.03963,0.05801,,,,,,,,0.021,0.04095,0.05988,,,,,,,,0.02119,0.04127,0.06024,,,,,,,,0.0216,0.04202,0.06126,,,,,,,,0.02108,0.04103,0.05986,,,,,,,,0.00024,0.00034,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00025,0.00034,0.00048,,,,,,,,0.03026,0.03099,0.03213,,,,,,,,0.03123,0.03196,0.0331,,,,,,,,0.03374,0.03447,0.0356,,,,,,,,0.02862,0.02934,0.03048,,,,,,,,0.03327,0.034,0.03514,,,,,,,,0.03071,0.03143,0.03256,,,,,,,,0.03068,0.03141,0.03255,,,,,,,,0.03201,0.03274,0.03389,,,,,,,,0.0316,0.03234,0.03349,,,,,,,,0.00549,0.00616,0.00721,,,,,,,,0.00561,0.00628,0.00733,,,,,,,,0.00593,0.0066,0.00765,,,,,,,,0.00526,0.00593,0.00697,,,,,,,,0.00587,0.00654,0.00758,,,,,,,,0.00553,0.00619,0.00724,,,,,,,,0.00554,0.00621,0.00726,,,,,,,,0.00571,0.00638,0.00744,,,,,,,,0.00567,0.00635,0.00741,,,,,,,,0.0017,0.00171,0.00173,,,,,,,,0.00172,0.00173,0.00175,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.0017,0.00171,0.00173,,,,,,,,0.00176,0.00177,0.00178,,,,,,,,0.00173,0.00174,0.00175,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00171,0.00172,0.00174,,,,,,,,0.06458,0.08094,0.10433,,,,,,,,0.06008,0.07581,0.09823,,,,,,,,0.06338,0.07949,0.1025,,,,,,,,0.0673,0.0842,0.10836,,,,,,,,0.03963,0.05246,0.07053,,,,,,,,0.04818,0.06236,0.08242,,,,,,,,0.03963,0.05257,0.07077,,,,,,,,0.05008,0.06444,0.08479,,,,,,,,0.03742,0.0499,0.06744 +Full size car,B20,2045,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.06618,0.08382,,,,,,,,,0.0613,0.07826,,,,,,,,,0.0648,0.08216,,,,,,,,,0.06911,0.08732,,,,,,,,,0.03918,0.05301,,,,,,,,,0.04846,0.06374,,,,,,,,,0.03922,0.05316,,,,,,,,,0.05049,0.06596,,,,,,,,,0.0369,0.05035,,,,,,,,,0.64071,1.17849,,,,,,,,,0.65257,1.20148,,,,,,,,,0.63502,1.17528,,,,,,,,,0.66974,1.22972,,,,,,,,,0.68907,1.27265,,,,,,,,,0.68409,1.25999,,,,,,,,,0.72867,1.33782,,,,,,,,,0.68101,1.25463,,,,,,,,,0.66141,1.2163,,,,,,,,,197.38569,198.93053,,,,,,,,,199.45889,200.93195,,,,,,,,,202.51378,204.01654,,,,,,,,,197.50783,199.06486,,,,,,,,,204.30562,205.51541,,,,,,,,,200.63304,201.94895,,,,,,,,,202.47654,203.663,,,,,,,,,202.0436,203.37044,,,,,,,,,198.64399,199.89377,,,,,,,,,0.00062,0.00064,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00066,0.00068,,,,,,,,,0.0006,0.00063,,,,,,,,,0.00065,0.00068,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00062,0.00065,,,,,,,,,0.00064,0.00066,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,0.0211,0.04111,,,,,,,,,0.02104,0.041,,,,,,,,,0.02026,0.03955,,,,,,,,,0.02157,0.04202,,,,,,,,,0.0203,0.03963,,,,,,,,,0.02099,0.04095,,,,,,,,,0.02118,0.04126,,,,,,,,,0.0216,0.04202,,,,,,,,,0.02108,0.04103,,,,,,,,,0.00024,0.00034,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00025,0.00034,,,,,,,,,0.03026,0.03099,,,,,,,,,0.03123,0.03196,,,,,,,,,0.03374,0.03447,,,,,,,,,0.02862,0.02934,,,,,,,,,0.03327,0.034,,,,,,,,,0.03071,0.03143,,,,,,,,,0.03068,0.03141,,,,,,,,,0.03201,0.03274,,,,,,,,,0.0316,0.03234,,,,,,,,,0.00549,0.00616,,,,,,,,,0.00561,0.00628,,,,,,,,,0.00593,0.0066,,,,,,,,,0.00526,0.00593,,,,,,,,,0.00587,0.00654,,,,,,,,,0.00553,0.00619,,,,,,,,,0.00554,0.00621,,,,,,,,,0.00571,0.00638,,,,,,,,,0.00567,0.00635,,,,,,,,,0.0017,0.00171,,,,,,,,,0.00172,0.00173,,,,,,,,,0.00174,0.00175,,,,,,,,,0.0017,0.00171,,,,,,,,,0.00176,0.00177,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00171,0.00172,,,,,,,,,0.06454,0.08094,,,,,,,,,0.06005,0.07581,,,,,,,,,0.06335,0.07948,,,,,,,,,0.06727,0.08419,,,,,,,,,0.03961,0.05246,,,,,,,,,0.04816,0.06235,,,,,,,,,0.03962,0.05257,,,,,,,,,0.05006,0.06444,,,,,,,,,0.0374,0.0499 +Full size car,B20,2050,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.06618,,,,,,,,,,0.0613,,,,,,,,,,0.0648,,,,,,,,,,0.06911,,,,,,,,,,0.03918,,,,,,,,,,0.04846,,,,,,,,,,0.03922,,,,,,,,,,0.05049,,,,,,,,,,0.0369,,,,,,,,,,0.64071,,,,,,,,,,0.65257,,,,,,,,,,0.63502,,,,,,,,,,0.66975,,,,,,,,,,0.68908,,,,,,,,,,0.68409,,,,,,,,,,0.72868,,,,,,,,,,0.68102,,,,,,,,,,0.66141,,,,,,,,,,197.38571,,,,,,,,,,199.45888,,,,,,,,,,202.51376,,,,,,,,,,197.50777,,,,,,,,,,204.30554,,,,,,,,,,200.63309,,,,,,,,,,202.47657,,,,,,,,,,202.04355,,,,,,,,,,198.64397,,,,,,,,,,0.00062,,,,,,,,,,0.00063,,,,,,,,,,0.00066,,,,,,,,,,0.0006,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00062,,,,,,,,,,0.00064,,,,,,,,,,0.00063,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,0.0211,,,,,,,,,,0.02104,,,,,,,,,,0.02026,,,,,,,,,,0.02157,,,,,,,,,,0.0203,,,,,,,,,,0.02099,,,,,,,,,,0.02118,,,,,,,,,,0.0216,,,,,,,,,,0.02108,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00025,,,,,,,,,,0.03026,,,,,,,,,,0.03123,,,,,,,,,,0.03374,,,,,,,,,,0.02862,,,,,,,,,,0.03327,,,,,,,,,,0.03071,,,,,,,,,,0.03068,,,,,,,,,,0.03201,,,,,,,,,,0.0316,,,,,,,,,,0.00549,,,,,,,,,,0.00561,,,,,,,,,,0.00593,,,,,,,,,,0.00526,,,,,,,,,,0.00587,,,,,,,,,,0.00553,,,,,,,,,,0.00554,,,,,,,,,,0.00571,,,,,,,,,,0.00567,,,,,,,,,,0.0017,,,,,,,,,,0.00172,,,,,,,,,,0.00174,,,,,,,,,,0.0017,,,,,,,,,,0.00176,,,,,,,,,,0.00173,,,,,,,,,,0.00174,,,,,,,,,,0.00174,,,,,,,,,,0.00171,,,,,,,,,,0.06454,,,,,,,,,,0.06005,,,,,,,,,,0.06335,,,,,,,,,,0.06727,,,,,,,,,,0.03961,,,,,,,,,,0.04816,,,,,,,,,,0.03962,,,,,,,,,,0.05006,,,,,,,,,,0.0374 +Full size car,DSL,1990,0.026,,,,,,,,,,0.02588,,,,,,,,,,0.02558,,,,,,,,,,0.02612,,,,,,,,,,0.02562,,,,,,,,,,0.02589,,,,,,,,,,0.02594,,,,,,,,,,0.02587,,,,,,,,,,0.02592,,,,,,,,,,0.00868,,,,,,,,,,0.00871,,,,,,,,,,0.00884,,,,,,,,,,0.00874,,,,,,,,,,0.00868,,,,,,,,,,0.00869,,,,,,,,,,0.0086,,,,,,,,,,0.00871,,,,,,,,,,0.00847,,,,,,,,,,54.69607,,,,,,,,,,55.74997,,,,,,,,,,56.07294,,,,,,,,,,56.33335,,,,,,,,,,58.78798,,,,,,,,,,58.069,,,,,,,,,,59.39625,,,,,,,,,,57.62502,,,,,,,,,,55.58144,,,,,,,,,,329.98713,,,,,,,,,,331.1271,,,,,,,,,,335.43599,,,,,,,,,,330.52535,,,,,,,,,,331.91184,,,,,,,,,,329.54774,,,,,,,,,,329.33953,,,,,,,,,,331.4414,,,,,,,,,,325.62729,,,,,,,,,,0.00089,,,,,,,,,,0.0009,,,,,,,,,,0.00093,,,,,,,,,,0.00088,,,,,,,,,,0.00093,,,,,,,,,,0.0009,,,,,,,,,,0.0009,,,,,,,,,,0.00091,,,,,,,,,,0.0009,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,3.05803,,,,,,,,,,3.07514,,,,,,,,,,3.06437,,,,,,,,,,3.08633,,,,,,,,,,3.04143,,,,,,,,,,3.06813,,,,,,,,,,3.07616,,,,,,,,,,3.21304,,,,,,,,,,3.08594,,,,,,,,,,0.05811,,,,,,,,,,0.05767,,,,,,,,,,0.05673,,,,,,,,,,0.05748,,,,,,,,,,0.05669,,,,,,,,,,0.05676,,,,,,,,,,0.05765,,,,,,,,,,0.05743,,,,,,,,,,0.05854,,,,,,,,,,0.14852,,,,,,,,,,0.14866,,,,,,,,,,0.14938,,,,,,,,,,0.14606,,,,,,,,,,0.1489,,,,,,,,,,0.14677,,,,,,,,,,0.14816,,,,,,,,,,0.14906,,,,,,,,,,0.15041,,,,,,,,,,0.11429,,,,,,,,,,0.11365,,,,,,,,,,0.11232,,,,,,,,,,0.11331,,,,,,,,,,0.11224,,,,,,,,,,0.1123,,,,,,,,,,0.11362,,,,,,,,,,0.11339,,,,,,,,,,0.11497,,,,,,,,,,0.02515,,,,,,,,,,0.02524,,,,,,,,,,0.02556,,,,,,,,,,0.02519,,,,,,,,,,0.0253,,,,,,,,,,0.02512,,,,,,,,,,0.0251,,,,,,,,,,0.02526,,,,,,,,,,0.02482,,,,,,,,,,4.5203,,,,,,,,,,4.53449,,,,,,,,,,4.59942,,,,,,,,,,4.55494,,,,,,,,,,4.52218,,,,,,,,,,4.52974,,,,,,,,,,4.48279,,,,,,,,,,4.53909,,,,,,,,,,4.41259,,,,,,,,, +Full size car,DSL,1995,0.00359,0.02248,,,,,,,,,0.00357,0.02236,,,,,,,,,0.00353,0.02205,,,,,,,,,0.00358,0.02263,,,,,,,,,0.00353,0.0221,,,,,,,,,0.00355,0.02239,,,,,,,,,0.00358,0.02243,,,,,,,,,0.00356,0.02234,,,,,,,,,0.0036,0.02237,,,,,,,,,0.0032,0.00846,,,,,,,,,0.00319,0.00848,,,,,,,,,0.00324,0.00861,,,,,,,,,0.00323,0.00852,,,,,,,,,0.00311,0.00842,,,,,,,,,0.00315,0.00845,,,,,,,,,0.0031,0.00835,,,,,,,,,0.00316,0.00847,,,,,,,,,0.00304,0.00821,,,,,,,,,15.17855,46.76942,,,,,,,,,15.59833,47.73708,,,,,,,,,15.61216,48.02942,,,,,,,,,15.79418,48.23447,,,,,,,,,16.80771,50.51983,,,,,,,,,16.46091,49.8277,,,,,,,,,17.21873,51.08265,,,,,,,,,16.36114,49.44477,,,,,,,,,15.65219,47.61137,,,,,,,,,428.01183,341.64702,,,,,,,,,432.11228,343.02552,,,,,,,,,438.3528,347.6586,,,,,,,,,427.8292,342.16497,,,,,,,,,441.52723,344.40394,,,,,,,,,434.02469,341.60258,,,,,,,,,437.63309,341.62274,,,,,,,,,437.10942,343.65474,,,,,,,,,430.62199,337.52958,,,,,,,,,0.00068,0.00088,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00072,0.00092,,,,,,,,,0.00067,0.00086,,,,,,,,,0.00072,0.00091,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00069,0.00088,,,,,,,,,0.0007,0.0009,,,,,,,,,0.0007,0.00089,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,2.14663,3.16694,,,,,,,,,2.16375,3.18495,,,,,,,,,2.1557,3.17375,,,,,,,,,2.16886,3.19759,,,,,,,,,2.14825,3.15276,,,,,,,,,2.16168,3.18016,,,,,,,,,2.1772,3.18891,,,,,,,,,2.27308,3.32576,,,,,,,,,2.17557,3.19542,,,,,,,,,0.00926,0.05041,,,,,,,,,0.00917,0.04996,,,,,,,,,0.00906,0.04894,,,,,,,,,0.00909,0.05006,,,,,,,,,0.00903,0.04895,,,,,,,,,0.00898,0.04927,,,,,,,,,0.00917,0.04999,,,,,,,,,0.00913,0.04969,,,,,,,,,0.00937,0.05062,,,,,,,,,0.04688,0.1301,,,,,,,,,0.04768,0.13026,,,,,,,,,0.04997,0.13088,,,,,,,,,0.04498,0.12813,,,,,,,,,0.04948,0.13049,,,,,,,,,0.04687,0.12875,,,,,,,,,0.04714,0.12983,,,,,,,,,0.04839,0.13061,,,,,,,,,0.04838,0.13163,,,,,,,,,0.02078,0.09734,,,,,,,,,0.02074,0.09672,,,,,,,,,0.02086,0.0953,,,,,,,,,0.02031,0.09681,,,,,,,,,0.02078,0.0953,,,,,,,,,0.02039,0.09573,,,,,,,,,0.02068,0.09676,,,,,,,,,0.02078,0.09642,,,,,,,,,0.02111,0.09769,,,,,,,,,0.03262,0.003,,,,,,,,,0.03293,0.00302,,,,,,,,,0.03341,0.00306,,,,,,,,,0.03261,0.00301,,,,,,,,,0.03365,0.00303,,,,,,,,,0.03308,0.003,,,,,,,,,0.03335,0.003,,,,,,,,,0.03331,0.00302,,,,,,,,,0.03282,0.00297,,,,,,,,,1.48396,3.92055,,,,,,,,,1.48178,3.93007,,,,,,,,,1.50517,3.98953,,,,,,,,,1.49888,3.95098,,,,,,,,,1.4471,3.90473,,,,,,,,,1.46139,3.91532,,,,,,,,,1.43796,3.87038,,,,,,,,,1.46883,3.92676,,,,,,,,,1.41028,3.80792,,,,,,,, +Full size car,DSL,2000,0.00127,0.00211,0.00894,,,,,,,,0.00126,0.00209,0.0089,,,,,,,,0.00124,0.00206,0.00881,,,,,,,,0.00125,0.00207,0.00897,,,,,,,,0.00124,0.00205,0.00882,,,,,,,,0.00123,0.00204,0.0089,,,,,,,,0.00126,0.00209,0.00892,,,,,,,,0.00125,0.00208,0.00889,,,,,,,,0.00129,0.00213,0.00892,,,,,,,,0.00117,0.00223,0.00443,,,,,,,,0.00115,0.00221,0.00442,,,,,,,,0.00117,0.00224,0.00448,,,,,,,,0.00119,0.00226,0.00449,,,,,,,,0.00106,0.00211,0.00431,,,,,,,,0.0011,0.00217,0.00437,,,,,,,,0.00106,0.00211,0.00429,,,,,,,,0.00111,0.00217,0.00438,,,,,,,,0.00103,0.00206,0.0042,,,,,,,,5.43349,9.04791,19.48785,,,,,,,,5.58995,9.29532,19.98008,,,,,,,,5.57617,9.25435,20.02978,,,,,,,,5.69483,9.46078,20.24668,,,,,,,,6.04741,10.03494,21.40943,,,,,,,,5.93821,9.84658,21.03693,,,,,,,,6.23104,10.36394,21.84852,,,,,,,,5.88055,9.7718,20.87089,,,,,,,,5.60351,9.34556,19.99406,,,,,,,,424.53585,426.86961,402.05017,,,,,,,,429.06318,431.27719,405.35869,,,,,,,,435.25315,437.51151,411.21184,,,,,,,,424.75673,427.09067,402.32845,,,,,,,,439.98205,441.75958,412.39028,,,,,,,,432.01564,433.96324,406.3428,,,,,,,,436.35979,438.09288,408.88078,,,,,,,,434.91551,436.88665,409.0714,,,,,,,,428.16158,430.03498,402.27813,,,,,,,,0.00064,0.00066,0.00076,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00068,0.0007,0.0008,,,,,,,,0.00062,0.00065,0.00075,,,,,,,,0.00067,0.0007,0.00079,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00066,0.00069,0.00078,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,1.01966,1.51422,2.39522,,,,,,,,1.02707,1.52535,2.41082,,,,,,,,1.0201,1.51647,2.39959,,,,,,,,1.03305,1.53403,2.42256,,,,,,,,1.02031,1.51587,2.39197,,,,,,,,1.02873,1.52851,2.41208,,,,,,,,1.03752,1.53893,2.42376,,,,,,,,1.07682,1.59622,2.51893,,,,,,,,1.03229,1.53113,2.41921,,,,,,,,0.00346,0.00553,0.02015,,,,,,,,0.00341,0.00544,0.02,,,,,,,,0.00335,0.00534,0.01973,,,,,,,,0.00331,0.00529,0.0199,,,,,,,,0.00333,0.00531,0.0197,,,,,,,,0.00326,0.0052,0.01968,,,,,,,,0.0034,0.00543,0.01999,,,,,,,,0.00338,0.0054,0.01992,,,,,,,,0.00356,0.00569,0.02032,,,,,,,,0.0352,0.03913,0.06899,,,,,,,,0.03608,0.03994,0.06968,,,,,,,,0.03848,0.04227,0.07168,,,,,,,,0.03333,0.03711,0.06702,,,,,,,,0.03798,0.04176,0.0712,,,,,,,,0.03532,0.03903,0.06869,,,,,,,,0.03552,0.03938,0.06915,,,,,,,,0.03681,0.04065,0.07034,,,,,,,,0.03671,0.04073,0.07055,,,,,,,,0.01004,0.01366,0.04112,,,,,,,,0.01007,0.01363,0.04098,,,,,,,,0.01029,0.01378,0.04084,,,,,,,,0.0096,0.01308,0.04059,,,,,,,,0.0102,0.01367,0.04075,,,,,,,,0.00977,0.01319,0.04048,,,,,,,,0.00999,0.01354,0.04093,,,,,,,,0.01013,0.01366,0.04098,,,,,,,,0.01037,0.01407,0.0415,,,,,,,,0.03235,0.00375,0.00354,,,,,,,,0.0327,0.00379,0.00356,,,,,,,,0.03317,0.00385,0.00362,,,,,,,,0.03237,0.00376,0.00354,,,,,,,,0.03353,0.00388,0.00363,,,,,,,,0.03292,0.00382,0.00357,,,,,,,,0.03326,0.00385,0.0036,,,,,,,,0.03315,0.00384,0.0036,,,,,,,,0.03263,0.00378,0.00354,,,,,,,,0.54567,1.03112,2.04743,,,,,,,,0.53701,1.02363,2.04216,,,,,,,,0.54668,1.03642,2.06977,,,,,,,,0.55671,1.04831,2.07326,,,,,,,,0.49304,0.97957,1.99044,,,,,,,,0.51395,1.00352,2.01819,,,,,,,,0.49267,0.97867,1.98131,,,,,,,,0.51698,1.0053,2.02259,,,,,,,,0.47988,0.95645,1.94229,,,,,,, +Full size car,DSL,2005,0.00054,0.00081,0.00132,0.0029,,,,,,,0.00053,0.00081,0.00132,0.00289,,,,,,,0.00053,0.0008,0.00131,0.00287,,,,,,,0.00053,0.0008,0.00132,0.00289,,,,,,,0.00053,0.0008,0.00131,0.00287,,,,,,,0.00053,0.0008,0.00131,0.00288,,,,,,,0.00053,0.00081,0.00132,0.00289,,,,,,,0.00054,0.00081,0.00132,0.00289,,,,,,,0.00054,0.00081,0.00133,0.00291,,,,,,,0.0007,0.00112,0.00172,0.00249,,,,,,,0.00067,0.00108,0.00168,0.00244,,,,,,,0.00069,0.0011,0.0017,0.00247,,,,,,,0.00073,0.00115,0.00177,0.00256,,,,,,,0.00052,0.00092,0.00148,0.00221,,,,,,,0.00059,0.001,0.00158,0.00233,,,,,,,0.00052,0.00092,0.00149,0.00222,,,,,,,0.0006,0.001,0.00159,0.00233,,,,,,,0.0005,0.00089,0.00145,0.00216,,,,,,,1.81784,3.85807,5.64199,7.89975,,,,,,,1.85566,3.94664,5.77147,8.07547,,,,,,,1.83106,3.92323,5.75186,8.04688,,,,,,,1.89236,4.00853,5.85369,8.19569,,,,,,,1.97359,4.22408,6.17762,8.61792,,,,,,,1.94761,4.14856,6.06282,8.47551,,,,,,,2.05331,4.36007,6.35462,8.85713,,,,,,,1.93841,4.13096,6.03749,8.43165,,,,,,,1.87275,3.97793,5.81188,8.11952,,,,,,,422.70823,424.02676,427.37967,433.48902,,,,,,,427.34753,428.5819,431.77522,437.60642,,,,,,,433.50386,434.7623,438.02017,443.96917,,,,,,,422.95866,424.2502,427.62391,433.7895,,,,,,,438.66966,439.60178,442.21181,447.01959,,,,,,,430.55618,431.59761,434.4406,439.66258,,,,,,,435.09796,435.99109,438.54674,443.26521,,,,,,,433.42617,434.49086,437.36002,442.62302,,,,,,,426.71897,427.7554,430.46337,435.41348,,,,,,,0.00062,0.00063,0.00067,0.00073,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00066,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00065,0.00072,,,,,,,0.00065,0.00067,0.0007,0.00077,,,,,,,0.00063,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00064,0.00067,0.00074,,,,,,,0.00064,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.19374,0.40353,0.56445,0.93128,,,,,,,0.1948,0.4056,0.567,0.93569,,,,,,,0.19355,0.40295,0.56299,0.92948,,,,,,,0.19641,0.40913,0.57253,0.94438,,,,,,,0.1933,0.40238,0.56223,0.92842,,,,,,,0.19536,0.40685,0.56906,0.93924,,,,,,,0.19633,0.40858,0.57086,0.9418,,,,,,,0.20297,0.42203,0.58845,0.97047,,,,,,,0.19533,0.40651,0.56772,0.93651,,,,,,,0.00148,0.00218,0.00336,0.00671,,,,,,,0.00148,0.00217,0.00335,0.00666,,,,,,,0.00148,0.00217,0.00335,0.00662,,,,,,,0.00145,0.00212,0.00329,0.00655,,,,,,,0.00147,0.00216,0.00334,0.0066,,,,,,,0.00144,0.00212,0.00329,0.00651,,,,,,,0.00147,0.00216,0.00334,0.00665,,,,,,,0.00148,0.00217,0.00335,0.00665,,,,,,,0.00151,0.00222,0.00342,0.00682,,,,,,,0.03129,0.03258,0.03496,0.04181,,,,,,,0.03226,0.03355,0.03592,0.0427,,,,,,,0.03476,0.03605,0.03842,0.04513,,,,,,,0.02961,0.03088,0.03322,0.03994,,,,,,,0.03429,0.03558,0.03794,0.04463,,,,,,,0.0317,0.03296,0.03531,0.04195,,,,,,,0.0317,0.03299,0.03535,0.04214,,,,,,,0.03304,0.03432,0.0367,0.04347,,,,,,,0.03267,0.03398,0.03637,0.04332,,,,,,,0.00644,0.00763,0.00981,0.01612,,,,,,,0.00656,0.00774,0.00992,0.01617,,,,,,,0.00687,0.00805,0.01024,0.01641,,,,,,,0.00618,0.00734,0.0095,0.01568,,,,,,,0.0068,0.00798,0.01016,0.01631,,,,,,,0.00644,0.0076,0.00976,0.01587,,,,,,,0.00648,0.00766,0.00984,0.01608,,,,,,,0.00666,0.00784,0.01002,0.01625,,,,,,,0.00665,0.00786,0.01006,0.01645,,,,,,,0.03222,0.00373,0.00376,0.00381,,,,,,,0.03257,0.00377,0.0038,0.00385,,,,,,,0.03304,0.00382,0.00385,0.0039,,,,,,,0.03223,0.00373,0.00376,0.00381,,,,,,,0.03343,0.00387,0.00389,0.00393,,,,,,,0.03281,0.0038,0.00382,0.00387,,,,,,,0.03316,0.00383,0.00386,0.0039,,,,,,,0.03303,0.00382,0.00385,0.00389,,,,,,,0.03252,0.00376,0.00379,0.00383,,,,,,,0.20408,0.3204,0.48891,0.81979,,,,,,,0.19468,0.31014,0.47658,0.80483,,,,,,,0.20096,0.31605,0.48269,0.81418,,,,,,,0.21117,0.33007,0.5026,0.83955,,,,,,,0.15195,0.26351,0.42061,0.73457,,,,,,,0.17103,0.28597,0.44937,0.77197,,,,,,,0.15269,0.26546,0.42413,0.7383,,,,,,,0.17417,0.2883,0.45094,0.77331,,,,,,,0.14672,0.25703,0.412,0.71927,,,,,, +Full size car,DSL,2010,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00132,0.00254,,,,,,,0.00054,0.00078,0.00133,0.00256,,,,,,,0.00054,0.00078,0.00132,0.00254,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.0594,0.09236,0.16247,0.18186,,,,,,,0.05611,0.08847,0.1575,0.17647,,,,,,,0.05832,0.09087,0.16011,0.17928,,,,,,,0.06166,0.09546,0.1673,0.18722,,,,,,,0.0412,0.07081,0.13491,0.15201,,,,,,,0.0477,0.07886,0.14593,0.16407,,,,,,,0.0414,0.07133,0.13612,0.15334,,,,,,,0.0489,0.08006,0.14699,0.16512,,,,,,,0.03954,0.0687,0.13188,0.14866,,,,,,,1.8136,3.29322,4.96691,6.50306,,,,,,,1.85219,3.36648,5.0774,6.63792,,,,,,,1.82204,3.33036,5.0386,6.59299,,,,,,,1.89088,3.42695,5.16017,6.74484,,,,,,,1.97218,3.5952,5.42309,7.059,,,,,,,1.94584,3.53775,5.33203,6.95452,,,,,,,2.06109,3.7326,5.60693,7.27876,,,,,,,1.93758,3.52316,5.31009,6.92214,,,,,,,1.87273,3.39862,5.11985,6.68225,,,,,,,423.2017,425.42868,429.18554,435.14299,,,,,,,427.88141,430.0022,433.59459,439.28373,,,,,,,434.04025,436.20306,439.86734,445.67168,,,,,,,423.42338,425.65556,429.44467,435.46072,,,,,,,439.33815,441.07226,444.05767,448.76123,,,,,,,431.15134,433.03628,436.2664,441.37011,,,,,,,435.75745,437.45235,440.38242,445.00131,,,,,,,434.03339,435.93862,439.19421,444.33616,,,,,,,427.3705,429.17956,432.24851,437.08229,,,,,,,0.00061,0.00063,0.00067,0.00073,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00072,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.09317,0.16776,0.2507,0.43866,,,,,,,0.09345,0.1682,0.25122,0.43983,,,,,,,0.0918,0.16522,0.24671,0.43418,,,,,,,0.09466,0.17049,0.25489,0.44574,,,,,,,0.09175,0.16513,0.2466,0.43397,,,,,,,0.09341,0.16822,0.25141,0.44128,,,,,,,0.09416,0.1694,0.2529,0.44258,,,,,,,0.09714,0.17454,0.26004,0.45429,,,,,,,0.0938,0.16871,0.25174,0.43991,,,,,,,0.00084,0.00111,0.00154,0.00338,,,,,,,0.00084,0.00111,0.00154,0.00337,,,,,,,0.00083,0.0011,0.00154,0.00336,,,,,,,0.00082,0.00109,0.00152,0.00333,,,,,,,0.00083,0.0011,0.00153,0.00335,,,,,,,0.00082,0.00109,0.00152,0.00332,,,,,,,0.00083,0.0011,0.00154,0.00336,,,,,,,0.00084,0.00111,0.00154,0.00337,,,,,,,0.00085,0.00112,0.00156,0.00342,,,,,,,0.03156,0.03283,0.0357,0.04116,,,,,,,0.03253,0.0338,0.03666,0.04211,,,,,,,0.03504,0.0363,0.03916,0.04458,,,,,,,0.0299,0.03116,0.034,0.0394,,,,,,,0.03457,0.03584,0.03869,0.0441,,,,,,,0.03199,0.03325,0.03608,0.04147,,,,,,,0.03198,0.03325,0.0361,0.04154,,,,,,,0.03332,0.03459,0.03745,0.0429,,,,,,,0.03292,0.0342,0.03708,0.04259,,,,,,,0.00669,0.00786,0.01049,0.01552,,,,,,,0.00681,0.00798,0.01061,0.01562,,,,,,,0.00713,0.00829,0.01091,0.01591,,,,,,,0.00645,0.0076,0.01021,0.01518,,,,,,,0.00706,0.00822,0.01084,0.01583,,,,,,,0.00671,0.00787,0.01048,0.01543,,,,,,,0.00673,0.0079,0.01053,0.01553,,,,,,,0.00691,0.00808,0.01071,0.01572,,,,,,,0.00689,0.00806,0.01072,0.01578,,,,,,,0.00354,0.00355,0.00357,0.00364,,,,,,,0.00358,0.00359,0.00361,0.00368,,,,,,,0.00363,0.00364,0.00366,0.00373,,,,,,,0.00354,0.00355,0.00357,0.00365,,,,,,,0.00368,0.00368,0.00369,0.00376,,,,,,,0.00361,0.00361,0.00363,0.00369,,,,,,,0.00365,0.00365,0.00366,0.00373,,,,,,,0.00363,0.00364,0.00365,0.00372,,,,,,,0.00358,0.00358,0.0036,0.00366,,,,,,,0.12284,0.17646,0.25767,0.43798,,,,,,,0.11719,0.1701,0.25018,0.42741,,,,,,,0.12102,0.174,0.25425,0.43309,,,,,,,0.12704,0.18194,0.26512,0.4499,,,,,,,0.09142,0.14108,0.21603,0.37908,,,,,,,0.10282,0.15455,0.23275,0.40387,,,,,,,0.09187,0.14207,0.21781,0.38182,,,,,,,0.10482,0.15638,0.23432,0.40527,,,,,,,0.08826,0.13726,0.21118,0.37109,,,,, +Full size car,DSL,2015,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.00052,0.00081,0.00133,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00133,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.08628,0.13981,0.21316,0.26684,,,,,,,0.08155,0.13428,0.20654,0.25888,,,,,,,0.08473,0.1376,0.21006,0.26305,,,,,,,0.08955,0.14439,0.21954,0.27474,,,,,,,0.0601,0.10915,0.17644,0.22278,,,,,,,0.06946,0.12074,0.19107,0.24057,,,,,,,0.06041,0.11,0.178,0.22471,,,,,,,0.07119,0.12236,0.19251,0.24211,,,,,,,0.05772,0.10609,0.17242,0.21784,,,,,,,1.50615,3.35216,4.9018,5.95994,,,,,,,1.53702,3.42585,5.00954,6.08262,,,,,,,1.50784,3.38732,4.96771,6.0331,,,,,,,1.57139,3.48841,5.09306,6.18325,,,,,,,1.63277,3.65582,5.34642,6.46647,,,,,,,1.61378,3.59917,5.2594,6.37196,,,,,,,1.71139,3.79726,5.53154,6.67979,,,,,,,1.60669,3.5841,5.23754,6.34417,,,,,,,1.55484,3.45857,5.05188,6.12807,,,,,,,340.58306,341.92105,342.19319,348.86925,,,,,,,344.39677,345.61199,345.71094,352.19832,,,,,,,349.60016,350.84708,350.97032,357.56216,,,,,,,340.67929,342.0276,342.32627,349.05937,,,,,,,353.60221,354.37935,353.87575,359.65328,,,,,,,346.87639,347.83518,347.59674,353.65616,,,,,,,350.47577,351.22104,350.6907,356.40186,,,,,,,349.32115,350.29328,350.0587,356.1526,,,,,,,343.75689,344.63462,344.27903,350.10678,,,,,,,0.00061,0.00064,0.00068,0.00073,,,,,,,0.00062,0.00065,0.00069,0.00074,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00071,,,,,,,0.00065,0.00067,0.00071,0.00076,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00073,,,,,,,0.00063,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.0669,0.14623,0.22002,0.28531,,,,,,,0.06703,0.14648,0.22034,0.28566,,,,,,,0.06553,0.14331,0.21577,0.28027,,,,,,,0.06805,0.14875,0.22383,0.29025,,,,,,,0.06552,0.14328,0.21572,0.28021,,,,,,,0.06693,0.14636,0.22035,0.28609,,,,,,,0.06754,0.14752,0.2218,0.28739,,,,,,,0.06961,0.15183,0.2279,0.29468,,,,,,,0.06731,0.14695,0.22083,0.28589,,,,,,,0.00041,0.00062,0.00096,0.00169,,,,,,,0.00041,0.00061,0.00096,0.00169,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00095,0.00167,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00095,0.00166,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00096,0.00169,,,,,,,0.00042,0.00062,0.00097,0.0017,,,,,,,0.03156,0.03317,0.03594,0.04069,,,,,,,0.03253,0.03414,0.03691,0.04165,,,,,,,0.03503,0.03664,0.0394,0.04413,,,,,,,0.0299,0.0315,0.03425,0.03896,,,,,,,0.03457,0.03618,0.03893,0.04366,,,,,,,0.03199,0.03359,0.03633,0.04104,,,,,,,0.03198,0.03359,0.03635,0.04109,,,,,,,0.03331,0.03493,0.0377,0.04244,,,,,,,0.03292,0.03455,0.03734,0.04211,,,,,,,0.00669,0.00817,0.01072,0.01509,,,,,,,0.00681,0.00829,0.01084,0.0152,,,,,,,0.00712,0.0086,0.01114,0.01549,,,,,,,0.00644,0.00791,0.01044,0.01478,,,,,,,0.00706,0.00854,0.01107,0.01542,,,,,,,0.00671,0.00818,0.0107,0.01504,,,,,,,0.00673,0.00821,0.01075,0.01511,,,,,,,0.00691,0.00839,0.01094,0.01531,,,,,,,0.00688,0.00838,0.01095,0.01534,,,,,,,0.00278,0.00279,0.0028,0.00286,,,,,,,0.00281,0.00282,0.00282,0.00288,,,,,,,0.00286,0.00287,0.00287,0.00293,,,,,,,0.00278,0.00279,0.0028,0.00286,,,,,,,0.00289,0.0029,0.00289,0.00295,,,,,,,0.00283,0.00284,0.00284,0.0029,,,,,,,0.00286,0.00287,0.00287,0.00292,,,,,,,0.00285,0.00286,0.00286,0.00292,,,,,,,0.00281,0.00282,0.00281,0.00287,,,,,,,0.08521,0.1349,0.20296,0.27412,,,,,,,0.08088,0.12982,0.19686,0.2663,,,,,,,0.0839,0.13298,0.20022,0.27049,,,,,,,0.08825,0.13915,0.20888,0.28203,,,,,,,0.06111,0.10664,0.16906,0.23072,,,,,,,0.0697,0.11729,0.18254,0.2483,,,,,,,0.06135,0.10738,0.17046,0.2326,,,,,,,0.07134,0.11883,0.18392,0.2498,,,,,,,0.05876,0.10365,0.16519,0.22562,,,, +Full size car,DSL,2020,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00188,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00048,0.0007,0.00102,0.00187,,,,,,,0.07955,0.11217,0.15133,0.21057,,,,,,,0.07468,0.10656,0.14468,0.20224,,,,,,,0.07804,0.11022,0.14885,0.20729,,,,,,,0.08274,0.11624,0.15651,0.21751,,,,,,,0.05258,0.0811,0.1145,0.16449,,,,,,,0.06207,0.09237,0.12816,0.18198,,,,,,,0.05278,0.08159,0.11529,0.16567,,,,,,,0.06395,0.09431,0.13026,0.18432,,,,,,,0.0502,0.07821,0.11093,0.15982,,,,,,,1.19391,2.1344,2.82594,3.84164,,,,,,,1.2178,2.17907,2.88375,3.91516,,,,,,,1.19354,2.1469,2.84465,3.86784,,,,,,,1.24561,2.22272,2.9393,3.98793,,,,,,,1.29181,2.31811,3.06395,4.14472,,,,,,,1.27788,2.28717,3.02354,4.09566,,,,,,,1.35511,2.41689,3.18797,4.29865,,,,,,,1.27219,2.2774,3.01073,4.07709,,,,,,,1.23197,2.20151,2.91154,3.94692,,,,,,,267.47413,268.7024,269.59109,282.72822,,,,,,,270.39636,271.52604,272.27294,285.31187,,,,,,,274.52522,275.6807,276.45205,289.70385,,,,,,,267.57742,268.81704,269.73372,282.93159,,,,,,,277.35167,278.12917,278.38198,290.93884,,,,,,,272.18285,273.10729,273.57779,286.26224,,,,,,,274.86534,275.61838,275.85038,288.27644,,,,,,,274.11096,275.04517,275.51904,288.28668,,,,,,,269.62999,270.48429,270.84623,283.23313,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00072,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00066,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.04804,0.09113,0.1223,0.17438,,,,,,,0.04809,0.09119,0.12233,0.17442,,,,,,,0.04687,0.08895,0.11941,0.17068,,,,,,,0.04891,0.0928,0.12457,0.17759,,,,,,,0.04689,0.08898,0.11946,0.17074,,,,,,,0.04801,0.09112,0.12236,0.17474,,,,,,,0.04844,0.09182,0.12311,0.17544,,,,,,,0.04979,0.09423,0.12611,0.17937,,,,,,,0.04825,0.09141,0.1225,0.17441,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00072,0.00123,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00038,0.00053,0.00074,0.00125,,,,,,,0.03126,0.03246,0.03413,0.0382,,,,,,,0.03224,0.03343,0.0351,0.03917,,,,,,,0.03474,0.03593,0.0376,0.04165,,,,,,,0.02961,0.03079,0.03246,0.0365,,,,,,,0.03428,0.03546,0.03713,0.04118,,,,,,,0.0317,0.03288,0.03454,0.03858,,,,,,,0.03168,0.03287,0.03455,0.03861,,,,,,,0.03302,0.03421,0.03589,0.03996,,,,,,,0.03262,0.03382,0.03551,0.0396,,,,,,,0.00641,0.00751,0.00906,0.0128,,,,,,,0.00654,0.00763,0.00917,0.01291,,,,,,,0.00685,0.00795,0.00948,0.01321,,,,,,,0.00618,0.00726,0.00879,0.01252,,,,,,,0.00679,0.00788,0.00942,0.01314,,,,,,,0.00644,0.00753,0.00906,0.01277,,,,,,,0.00646,0.00756,0.00909,0.01283,,,,,,,0.00664,0.00773,0.00928,0.01302,,,,,,,0.00661,0.00772,0.00927,0.01303,,,,,,,0.00219,0.0022,0.0022,0.00231,,,,,,,0.00221,0.00222,0.00222,0.00233,,,,,,,0.00224,0.00225,0.00226,0.00237,,,,,,,0.00219,0.0022,0.0022,0.00231,,,,,,,0.00227,0.00227,0.00227,0.00238,,,,,,,0.00222,0.00223,0.00224,0.00234,,,,,,,0.00225,0.00225,0.00225,0.00236,,,,,,,0.00224,0.00225,0.00225,0.00236,,,,,,,0.0022,0.00221,0.00221,0.00231,,,,,,,0.07786,0.10814,0.14449,0.20169,,,,,,,0.07338,0.10298,0.13836,0.19395,,,,,,,0.07656,0.10644,0.14229,0.19872,,,,,,,0.08082,0.11192,0.1493,0.20819,,,,,,,0.05298,0.07945,0.11045,0.15876,,,,,,,0.06171,0.08983,0.12306,0.17504,,,,,,,0.05313,0.07987,0.11114,0.15983,,,,,,,0.06348,0.09167,0.12503,0.17725,,,,,,,0.05065,0.07665,0.10702,0.15427,,, +Full size car,DSL,2025,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.0013,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.06948,0.09009,0.1176,0.16463,,,,,,,0.06458,0.0845,0.11099,0.15624,,,,,,,0.06807,0.08837,0.11545,0.16178,,,,,,,0.07249,0.09373,0.12211,0.17068,,,,,,,0.04232,0.05913,0.08101,0.11823,,,,,,,0.05171,0.07,0.09405,0.13504,,,,,,,0.0424,0.05935,0.08141,0.11887,,,,,,,0.05371,0.07217,0.09649,0.13794,,,,,,,0.04,0.05641,0.07772,0.1139,,,,,,,0.75481,1.36799,1.85261,2.54958,,,,,,,0.76903,1.39514,1.88894,2.59604,,,,,,,0.74992,1.36741,1.85479,2.5542,,,,,,,0.78851,1.42663,1.92951,2.64946,,,,,,,0.81289,1.47933,2.0018,2.74068,,,,,,,0.8063,1.46333,1.97957,2.71396,,,,,,,0.8575,1.55151,2.09394,2.85562,,,,,,,0.80265,1.45708,1.97124,2.70161,,,,,,,0.77894,1.41151,1.9097,2.61992,,,,,,,215.70646,216.77705,217.85506,230.00549,,,,,,,217.99641,218.9852,219.94309,232.0016,,,,,,,221.33256,222.34378,223.32755,235.5896,,,,,,,215.82613,216.90812,218.0146,230.22831,,,,,,,223.37661,224.0725,224.60684,236.21274,,,,,,,219.32184,220.14011,220.86006,232.58707,,,,,,,221.37594,222.05176,222.56686,234.04938,,,,,,,220.86683,221.69325,222.41697,234.22095,,,,,,,217.17904,217.9356,218.55139,229.98659,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00076,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02682,0.05159,0.07257,0.10821,,,,,,,0.02678,0.05151,0.07245,0.10808,,,,,,,0.02591,0.0499,0.07028,0.10531,,,,,,,0.02737,0.05264,0.07407,0.11039,,,,,,,0.02595,0.04997,0.07038,0.10544,,,,,,,0.02673,0.05146,0.07246,0.10831,,,,,,,0.02697,0.05185,0.07289,0.1087,,,,,,,0.02758,0.05295,0.07431,0.11068,,,,,,,0.02684,0.05158,0.07246,0.10795,,,,,,,0.00024,0.00034,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00047,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00025,0.00034,0.00048,0.00085,,,,,,,0.03026,0.03099,0.03213,0.03514,,,,,,,0.03123,0.03196,0.0331,0.03611,,,,,,,0.03374,0.03447,0.03561,0.0386,,,,,,,0.02862,0.02934,0.03048,0.03347,,,,,,,0.03328,0.03401,0.03514,0.03813,,,,,,,0.03071,0.03143,0.03256,0.03555,,,,,,,0.03068,0.03141,0.03255,0.03555,,,,,,,0.03201,0.03275,0.03389,0.03689,,,,,,,0.0316,0.03234,0.03349,0.03651,,,,,,,0.00549,0.00616,0.00722,0.00998,,,,,,,0.00561,0.00629,0.00734,0.0101,,,,,,,0.00593,0.0066,0.00765,0.0104,,,,,,,0.00526,0.00593,0.00697,0.00972,,,,,,,0.00587,0.00654,0.00758,0.01034,,,,,,,0.00553,0.0062,0.00724,0.00998,,,,,,,0.00554,0.00621,0.00726,0.01002,,,,,,,0.00571,0.00639,0.00744,0.0102,,,,,,,0.00568,0.00635,0.00741,0.01019,,,,,,,0.00176,0.00177,0.00178,0.00188,,,,,,,0.00178,0.00179,0.0018,0.0019,,,,,,,0.00181,0.00182,0.00182,0.00192,,,,,,,0.00176,0.00177,0.00178,0.00188,,,,,,,0.00183,0.00183,0.00184,0.00193,,,,,,,0.00179,0.0018,0.0018,0.0019,,,,,,,0.00181,0.00181,0.00182,0.00191,,,,,,,0.0018,0.00181,0.00182,0.00191,,,,,,,0.00177,0.00178,0.00179,0.00188,,,,,,,0.06773,0.08687,0.11241,0.15623,,,,,,,0.06322,0.08172,0.10631,0.14848,,,,,,,0.06651,0.08536,0.1105,0.15367,,,,,,,0.07053,0.09025,0.1166,0.16185,,,,,,,0.04265,0.05825,0.07857,0.11327,,,,,,,0.05129,0.06828,0.0906,0.12882,,,,,,,0.04269,0.05842,0.0789,0.11383,,,,,,,0.05318,0.07032,0.09289,0.13153,,,,,,,0.0404,0.05563,0.07541,0.10916,, +Full size car,DSL,2030,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00067,0.00113,,,,,,,0.06649,0.0839,0.10901,0.14537,,,,,,,0.06159,0.07833,0.10241,0.13701,,,,,,,0.0651,0.08224,0.10695,0.14271,,,,,,,0.06943,0.0874,0.11336,0.15103,,,,,,,0.03936,0.05306,0.07247,0.09911,,,,,,,0.04869,0.06379,0.08535,0.11556,,,,,,,0.0394,0.05321,0.07276,0.09955,,,,,,,0.05072,0.06602,0.08788,0.11866,,,,,,,0.03707,0.0504,0.06924,0.09495,,,,,,,0.64076,1.17885,1.61853,2.07987,,,,,,,0.6526,1.20185,1.64987,2.11724,,,,,,,0.63506,1.17563,1.61741,2.07812,,,,,,,0.66978,1.2301,1.68659,2.16311,,,,,,,0.68905,1.27301,1.74708,2.23338,,,,,,,0.6841,1.26036,1.72886,2.21338,,,,,,,0.72861,1.33819,1.83102,2.33395,,,,,,,0.68101,1.25499,1.72162,2.20354,,,,,,,0.66141,1.21666,1.66884,2.1386,,,,,,,198.43459,199.94343,202.28578,209.79703,,,,,,,200.51609,201.9545,204.19538,211.57597,,,,,,,203.58757,205.05473,207.34106,214.85406,,,,,,,198.55882,200.07879,202.45148,210.02432,,,,,,,205.37985,206.55929,208.42594,215.27412,,,,,,,201.6922,202.97577,204.99694,212.03794,,,,,,,203.5412,204.69754,206.53444,213.30353,,,,,,,203.10975,204.40441,206.43796,213.52213,,,,,,,199.68908,200.90927,202.81414,209.61078,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04113,0.06005,0.08369,,,,,,,0.02107,0.04101,0.05989,0.08349,,,,,,,0.02028,0.03956,0.0579,0.08106,,,,,,,0.02159,0.04203,0.06136,0.08547,,,,,,,0.02033,0.03964,0.05802,0.08122,,,,,,,0.02102,0.04096,0.05989,0.08367,,,,,,,0.02121,0.04128,0.06025,0.08396,,,,,,,0.02162,0.04203,0.06127,0.08526,,,,,,,0.0211,0.04104,0.05987,0.08334,,,,,,,0.00024,0.00034,0.00048,0.00075,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00075,,,,,,,0.00025,0.00034,0.00048,0.00075,,,,,,,0.03026,0.03099,0.03213,0.03435,,,,,,,0.03123,0.03196,0.0331,0.03532,,,,,,,0.03374,0.03447,0.03561,0.03782,,,,,,,0.02862,0.02934,0.03048,0.03269,,,,,,,0.03328,0.034,0.03514,0.03735,,,,,,,0.03071,0.03143,0.03256,0.03477,,,,,,,0.03068,0.03141,0.03255,0.03477,,,,,,,0.03201,0.03274,0.03389,0.03611,,,,,,,0.0316,0.03234,0.03349,0.03572,,,,,,,0.00549,0.00616,0.00721,0.00926,,,,,,,0.00561,0.00628,0.00733,0.00938,,,,,,,0.00593,0.0066,0.00765,0.00968,,,,,,,0.00526,0.00593,0.00697,0.00901,,,,,,,0.00587,0.00654,0.00758,0.00962,,,,,,,0.00553,0.00619,0.00724,0.00927,,,,,,,0.00554,0.00621,0.00726,0.0093,,,,,,,0.00571,0.00639,0.00744,0.00948,,,,,,,0.00567,0.00635,0.00741,0.00946,,,,,,,0.00162,0.00163,0.00165,0.00171,,,,,,,0.00164,0.00165,0.00167,0.00173,,,,,,,0.00166,0.00168,0.00169,0.00176,,,,,,,0.00162,0.00163,0.00165,0.00172,,,,,,,0.00168,0.00169,0.0017,0.00176,,,,,,,0.00165,0.00166,0.00168,0.00173,,,,,,,0.00166,0.00167,0.00169,0.00174,,,,,,,0.00166,0.00167,0.00169,0.00174,,,,,,,0.00163,0.00164,0.00166,0.00171,,,,,,,0.06469,0.08087,0.10421,0.13806,,,,,,,0.06018,0.07573,0.09811,0.13033,,,,,,,0.06349,0.07941,0.10237,0.13566,,,,,,,0.06743,0.08412,0.10824,0.14331,,,,,,,0.03963,0.05236,0.07039,0.09522,,,,,,,0.04822,0.06226,0.08229,0.11043,,,,,,,0.03964,0.05247,0.07064,0.09559,,,,,,,0.05013,0.06435,0.08467,0.11333,,,,,,,0.03741,0.0498,0.06731,0.09127, +Full size car,DSL,2035,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00112,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.06625,0.08388,0.10899,0.14208,,,,,,,0.06137,0.07831,0.10239,0.13371,,,,,,,0.06488,0.08222,0.10693,0.13944,,,,,,,0.06919,0.08738,0.11334,0.14767,,,,,,,0.03923,0.05305,0.07246,0.09577,,,,,,,0.04852,0.06378,0.08533,0.11217,,,,,,,0.03927,0.0532,0.07275,0.09616,,,,,,,0.05055,0.06601,0.08787,0.11532,,,,,,,0.03695,0.05039,0.06923,0.09163,,,,,,,0.64138,1.17879,1.61842,2.00267,,,,,,,0.65324,1.20178,1.64976,2.03863,,,,,,,0.63568,1.17558,1.6173,1.99997,,,,,,,0.67043,1.23003,1.68647,2.08323,,,,,,,0.68978,1.27296,1.74696,2.15032,,,,,,,0.68479,1.2603,1.72874,2.1313,,,,,,,0.7294,1.33813,1.83089,2.24861,,,,,,,0.68171,1.25493,1.72151,2.1219,,,,,,,0.66209,1.2166,1.66874,2.05964,,,,,,,198.39128,199.93868,202.28244,206.69439,,,,,,,200.47433,201.94983,204.19198,208.43955,,,,,,,203.5447,205.05006,207.3377,211.66977,,,,,,,198.51421,200.07392,202.44798,206.92264,,,,,,,205.34345,206.55515,208.42285,212.05687,,,,,,,201.65353,202.97141,204.99377,208.88161,,,,,,,203.50502,204.6935,206.53127,210.11597,,,,,,,203.07102,204.40004,206.43478,210.34267,,,,,,,199.65343,200.90546,202.81126,206.48042,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04114,0.06005,0.07962,,,,,,,0.02106,0.04103,0.05988,0.07941,,,,,,,0.02028,0.03957,0.05789,0.07704,,,,,,,0.02159,0.04204,0.06135,0.08134,,,,,,,0.02033,0.03966,0.05801,0.0772,,,,,,,0.02102,0.04097,0.05989,0.07958,,,,,,,0.02121,0.04129,0.06024,0.07986,,,,,,,0.02162,0.04205,0.06127,0.08105,,,,,,,0.0211,0.04106,0.05986,0.07926,,,,,,,0.00024,0.00034,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00047,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00025,0.00034,0.00048,0.00074,,,,,,,0.03026,0.03099,0.03213,0.03425,,,,,,,0.03123,0.03196,0.0331,0.03522,,,,,,,0.03374,0.03447,0.03561,0.03771,,,,,,,0.02862,0.02934,0.03048,0.03258,,,,,,,0.03328,0.034,0.03514,0.03725,,,,,,,0.03071,0.03143,0.03256,0.03467,,,,,,,0.03068,0.03141,0.03255,0.03466,,,,,,,0.03201,0.03274,0.03389,0.036,,,,,,,0.0316,0.03234,0.03349,0.03562,,,,,,,0.00549,0.00616,0.00721,0.00916,,,,,,,0.00561,0.00629,0.00733,0.00928,,,,,,,0.00593,0.0066,0.00765,0.00959,,,,,,,0.00526,0.00593,0.00697,0.00891,,,,,,,0.00587,0.00654,0.00758,0.00952,,,,,,,0.00553,0.00619,0.00724,0.00917,,,,,,,0.00554,0.00621,0.00726,0.0092,,,,,,,0.00571,0.00639,0.00744,0.00938,,,,,,,0.00567,0.00635,0.00741,0.00937,,,,,,,0.00162,0.00163,0.00165,0.00169,,,,,,,0.00164,0.00165,0.00167,0.0017,,,,,,,0.00166,0.00168,0.00169,0.00173,,,,,,,0.00162,0.00163,0.00165,0.00169,,,,,,,0.00168,0.00169,0.0017,0.00173,,,,,,,0.00165,0.00166,0.00167,0.00171,,,,,,,0.00166,0.00167,0.00169,0.00172,,,,,,,0.00166,0.00167,0.00169,0.00172,,,,,,,0.00163,0.00164,0.00166,0.00169,,,,,,,0.06448,0.08085,0.10419,0.13496,,,,,,,0.05998,0.07571,0.0981,0.12722,,,,,,,0.06327,0.07939,0.10235,0.13258,,,,,,,0.0672,0.0841,0.10822,0.14015,,,,,,,0.03951,0.05235,0.07038,0.09206,,,,,,,0.04807,0.06225,0.08228,0.10724,,,,,,,0.03952,0.05246,0.07062,0.0924,,,,,,,0.04997,0.06434,0.08465,0.11018,,,,,,,0.0373,0.04979,0.0673,0.08814 +Full size car,DSL,2040,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.06621,0.08382,0.10898,,,,,,,,0.06133,0.07826,0.10239,,,,,,,,0.06483,0.08216,0.10693,,,,,,,,0.06914,0.08733,0.11333,,,,,,,,0.0392,0.05301,0.07245,,,,,,,,0.04849,0.06374,0.08533,,,,,,,,0.03924,0.05317,0.07274,,,,,,,,0.05051,0.06596,0.08786,,,,,,,,0.03692,0.05035,0.06922,,,,,,,,0.64078,1.17853,1.61839,,,,,,,,0.65264,1.20153,1.64973,,,,,,,,0.63509,1.17532,1.61727,,,,,,,,0.66981,1.22977,1.68644,,,,,,,,0.68914,1.2727,1.74693,,,,,,,,0.68416,1.26003,1.72871,,,,,,,,0.72874,1.33787,1.83086,,,,,,,,0.68108,1.25467,1.72147,,,,,,,,0.66147,1.21634,1.6687,,,,,,,,198.38409,199.93079,202.28129,,,,,,,,200.46747,201.94231,204.19092,,,,,,,,203.53787,205.04234,207.33654,,,,,,,,198.50706,200.06584,202.44683,,,,,,,,205.33777,206.54885,208.42194,,,,,,,,201.64715,202.96455,204.9928,,,,,,,,203.49952,204.68694,206.53052,,,,,,,,203.06478,204.39303,206.43364,,,,,,,,199.64762,200.89888,202.81036,,,,,,,,0.00062,0.00064,0.00068,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00066,0.00068,0.00071,,,,,,,,0.0006,0.00063,0.00066,,,,,,,,0.00065,0.00068,0.00071,,,,,,,,0.00063,0.00065,0.00068,,,,,,,,0.00062,0.00065,0.00068,,,,,,,,0.00064,0.00066,0.0007,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,0.0211,0.04112,0.06004,,,,,,,,0.02105,0.041,0.05988,,,,,,,,0.02026,0.03955,0.05789,,,,,,,,0.02157,0.04202,0.06135,,,,,,,,0.02031,0.03963,0.05801,,,,,,,,0.021,0.04095,0.05988,,,,,,,,0.02119,0.04127,0.06024,,,,,,,,0.0216,0.04202,0.06126,,,,,,,,0.02108,0.04103,0.05986,,,,,,,,0.00024,0.00034,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00025,0.00034,0.00048,,,,,,,,0.03026,0.03099,0.03213,,,,,,,,0.03123,0.03196,0.0331,,,,,,,,0.03374,0.03447,0.0356,,,,,,,,0.02862,0.02934,0.03048,,,,,,,,0.03327,0.034,0.03514,,,,,,,,0.03071,0.03143,0.03256,,,,,,,,0.03068,0.03141,0.03255,,,,,,,,0.03201,0.03274,0.03389,,,,,,,,0.0316,0.03234,0.03349,,,,,,,,0.00549,0.00616,0.00721,,,,,,,,0.00561,0.00628,0.00733,,,,,,,,0.00593,0.0066,0.00765,,,,,,,,0.00526,0.00593,0.00697,,,,,,,,0.00587,0.00654,0.00758,,,,,,,,0.00553,0.00619,0.00724,,,,,,,,0.00554,0.00621,0.00726,,,,,,,,0.00571,0.00638,0.00744,,,,,,,,0.00567,0.00635,0.00741,,,,,,,,0.00162,0.00163,0.00165,,,,,,,,0.00164,0.00165,0.00167,,,,,,,,0.00166,0.00168,0.00169,,,,,,,,0.00162,0.00163,0.00165,,,,,,,,0.00168,0.00169,0.0017,,,,,,,,0.00165,0.00166,0.00167,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.00163,0.00164,0.00166,,,,,,,,0.06443,0.0808,0.10418,,,,,,,,0.05994,0.07567,0.09809,,,,,,,,0.06323,0.07934,0.10235,,,,,,,,0.06716,0.08405,0.10821,,,,,,,,0.03948,0.05231,0.07038,,,,,,,,0.04804,0.06221,0.08227,,,,,,,,0.03949,0.05243,0.07062,,,,,,,,0.04994,0.0643,0.08464,,,,,,,,0.03728,0.04976,0.0673 +Full size car,DSL,2045,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.06618,0.08382,,,,,,,,,0.0613,0.07826,,,,,,,,,0.0648,0.08216,,,,,,,,,0.06911,0.08732,,,,,,,,,0.03918,0.05301,,,,,,,,,0.04846,0.06374,,,,,,,,,0.03922,0.05316,,,,,,,,,0.05049,0.06596,,,,,,,,,0.0369,0.05035,,,,,,,,,0.64071,1.17849,,,,,,,,,0.65257,1.20148,,,,,,,,,0.63502,1.17528,,,,,,,,,0.66974,1.22972,,,,,,,,,0.68907,1.27265,,,,,,,,,0.68409,1.25999,,,,,,,,,0.72867,1.33782,,,,,,,,,0.68101,1.25463,,,,,,,,,0.66141,1.2163,,,,,,,,,198.37811,199.9306,,,,,,,,,200.46167,201.94212,,,,,,,,,203.53194,205.04223,,,,,,,,,198.50076,200.06567,,,,,,,,,205.33274,206.54864,,,,,,,,,201.64177,202.96431,,,,,,,,,203.49447,204.687,,,,,,,,,203.05936,204.39291,,,,,,,,,199.64263,200.89865,,,,,,,,,0.00062,0.00064,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00066,0.00068,,,,,,,,,0.0006,0.00063,,,,,,,,,0.00065,0.00068,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00062,0.00065,,,,,,,,,0.00064,0.00066,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,0.0211,0.04111,,,,,,,,,0.02104,0.041,,,,,,,,,0.02026,0.03955,,,,,,,,,0.02157,0.04202,,,,,,,,,0.0203,0.03963,,,,,,,,,0.02099,0.04095,,,,,,,,,0.02118,0.04126,,,,,,,,,0.0216,0.04202,,,,,,,,,0.02108,0.04103,,,,,,,,,0.00024,0.00034,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00025,0.00034,,,,,,,,,0.03026,0.03099,,,,,,,,,0.03123,0.03196,,,,,,,,,0.03374,0.03447,,,,,,,,,0.02862,0.02934,,,,,,,,,0.03327,0.034,,,,,,,,,0.03071,0.03143,,,,,,,,,0.03068,0.03141,,,,,,,,,0.03201,0.03274,,,,,,,,,0.0316,0.03234,,,,,,,,,0.00549,0.00616,,,,,,,,,0.00561,0.00628,,,,,,,,,0.00593,0.0066,,,,,,,,,0.00526,0.00593,,,,,,,,,0.00587,0.00654,,,,,,,,,0.00553,0.00619,,,,,,,,,0.00554,0.00621,,,,,,,,,0.00571,0.00638,,,,,,,,,0.00567,0.00635,,,,,,,,,0.00162,0.00163,,,,,,,,,0.00164,0.00165,,,,,,,,,0.00166,0.00168,,,,,,,,,0.00162,0.00163,,,,,,,,,0.00168,0.00169,,,,,,,,,0.00165,0.00166,,,,,,,,,0.00166,0.00167,,,,,,,,,0.00166,0.00167,,,,,,,,,0.00163,0.00164,,,,,,,,,0.0644,0.0808,,,,,,,,,0.05991,0.07566,,,,,,,,,0.0632,0.07934,,,,,,,,,0.06712,0.08405,,,,,,,,,0.03946,0.05231,,,,,,,,,0.04802,0.06221,,,,,,,,,0.03947,0.05242,,,,,,,,,0.04991,0.06429,,,,,,,,,0.03726,0.04976 +Full size car,DSL,2050,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.06618,,,,,,,,,,0.0613,,,,,,,,,,0.0648,,,,,,,,,,0.06911,,,,,,,,,,0.03918,,,,,,,,,,0.04846,,,,,,,,,,0.03922,,,,,,,,,,0.05049,,,,,,,,,,0.0369,,,,,,,,,,0.64071,,,,,,,,,,0.65257,,,,,,,,,,0.63502,,,,,,,,,,0.66975,,,,,,,,,,0.68908,,,,,,,,,,0.68409,,,,,,,,,,0.72868,,,,,,,,,,0.68102,,,,,,,,,,0.66141,,,,,,,,,,198.37808,,,,,,,,,,200.46167,,,,,,,,,,203.53191,,,,,,,,,,198.50078,,,,,,,,,,205.33273,,,,,,,,,,201.64176,,,,,,,,,,203.49449,,,,,,,,,,203.05929,,,,,,,,,,199.64275,,,,,,,,,,0.00062,,,,,,,,,,0.00063,,,,,,,,,,0.00066,,,,,,,,,,0.0006,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00062,,,,,,,,,,0.00064,,,,,,,,,,0.00063,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,0.0211,,,,,,,,,,0.02104,,,,,,,,,,0.02026,,,,,,,,,,0.02157,,,,,,,,,,0.0203,,,,,,,,,,0.02099,,,,,,,,,,0.02118,,,,,,,,,,0.0216,,,,,,,,,,0.02108,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00025,,,,,,,,,,0.03026,,,,,,,,,,0.03123,,,,,,,,,,0.03374,,,,,,,,,,0.02862,,,,,,,,,,0.03327,,,,,,,,,,0.03071,,,,,,,,,,0.03068,,,,,,,,,,0.03201,,,,,,,,,,0.0316,,,,,,,,,,0.00549,,,,,,,,,,0.00561,,,,,,,,,,0.00593,,,,,,,,,,0.00526,,,,,,,,,,0.00587,,,,,,,,,,0.00553,,,,,,,,,,0.00554,,,,,,,,,,0.00571,,,,,,,,,,0.00567,,,,,,,,,,0.00162,,,,,,,,,,0.00164,,,,,,,,,,0.00166,,,,,,,,,,0.00162,,,,,,,,,,0.00168,,,,,,,,,,0.00165,,,,,,,,,,0.00166,,,,,,,,,,0.00166,,,,,,,,,,0.00163,,,,,,,,,,0.0644,,,,,,,,,,0.05991,,,,,,,,,,0.0632,,,,,,,,,,0.06712,,,,,,,,,,0.03946,,,,,,,,,,0.04802,,,,,,,,,,0.03947,,,,,,,,,,0.04991,,,,,,,,,,0.03726 +Full size car,E10,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07059,,,,,,,,,,0.06061,,,,,,,,,,0.07766,,,,,,,,,,0.07986,,,,,,,,,,0.06493,,,,,,,,,,0.07201,,,,,,,,,,0.06666,,,,,,,,,,0.06387,,,,,,,,,,0.05378,,,,,,,,,,41.09405,,,,,,,,,,36.68685,,,,,,,,,,46.46014,,,,,,,,,,48.20712,,,,,,,,,,38.88807,,,,,,,,,,43.51966,,,,,,,,,,40.38021,,,,,,,,,,39.0815,,,,,,,,,,31.98119,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,2.9666,,,,,,,,,,2.81631,,,,,,,,,,3.10536,,,,,,,,,,3.2754,,,,,,,,,,3.04738,,,,,,,,,,3.19266,,,,,,,,,,3.04408,,,,,,,,,,3.21553,,,,,,,,,,2.67871,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.02114,,,,,,,,,,0.02411,,,,,,,,,,0.03431,,,,,,,,,,0.03133,,,,,,,,,,0.02788,,,,,,,,,,0.03072,,,,,,,,,,0.02781,,,,,,,,,,0.02753,,,,,,,,,,0.01276,,,,,,,,,,4.6564,,,,,,,,,,4.21937,,,,,,,,,,5.04455,,,,,,,,,,5.24797,,,,,,,,,,4.75701,,,,,,,,,,5.03074,,,,,,,,,,4.88323,,,,,,,,,,4.78463,,,,,,,,,,4.06399,,,,,,,,, +Full size car,E10,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.039,0.04546,,,,,,,,,0.03637,0.04065,,,,,,,,,0.04465,0.04989,,,,,,,,,0.04618,0.05361,,,,,,,,,0.03755,0.04304,,,,,,,,,0.04081,0.04726,,,,,,,,,0.03731,0.04266,,,,,,,,,0.03778,0.04314,,,,,,,,,0.02981,0.03292,,,,,,,,,15.07931,20.70615,,,,,,,,,14.44862,19.03873,,,,,,,,,17.83287,23.08281,,,,,,,,,18.82322,25.0077,,,,,,,,,15.19572,19.99361,,,,,,,,,16.64983,21.95229,,,,,,,,,15.55074,20.47747,,,,,,,,,15.43813,20.95542,,,,,,,,,11.86242,16.20717,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.23009,2.70688,,,,,,,,,2.16857,2.56214,,,,,,,,,2.38025,2.79543,,,,,,,,,2.48674,3.02468,,,,,,,,,2.31919,2.81805,,,,,,,,,2.43147,2.94491,,,,,,,,,2.33171,2.81285,,,,,,,,,2.47634,2.97953,,,,,,,,,2.06662,2.45342,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.0173,0.00877,,,,,,,,,0.01983,0.0089,,,,,,,,,0.02825,0.00924,,,,,,,,,0.02572,0.01543,,,,,,,,,0.02324,0.00909,,,,,,,,,0.02549,0.00902,,,,,,,,,0.02323,0.01229,,,,,,,,,0.02279,0.01403,,,,,,,,,0.01057,0.00506,,,,,,,,,2.00449,2.87682,,,,,,,,,1.95383,2.74589,,,,,,,,,2.26736,3.14145,,,,,,,,,2.36184,3.33126,,,,,,,,,2.15514,3.14869,,,,,,,,,2.2233,3.24476,,,,,,,,,2.15249,3.13118,,,,,,,,,2.21425,3.18559,,,,,,,,,1.79138,2.59347,,,,,,,, +Full size car,E10,2000,0.00446,0.00727,0.02121,,,,,,,,0.00385,0.00626,0.01818,,,,,,,,0.00432,0.00704,0.02055,,,,,,,,0.00488,0.00799,0.02359,,,,,,,,0.00215,0.00348,0.00996,,,,,,,,0.00258,0.00418,0.01212,,,,,,,,0.00206,0.00333,0.00949,,,,,,,,0.00297,0.00482,0.01394,,,,,,,,0.00204,0.00329,0.00926,,,,,,,,0.0178,0.01911,0.03078,,,,,,,,0.01674,0.01836,0.02775,,,,,,,,0.02112,0.02216,0.035,,,,,,,,0.02212,0.02368,0.03628,,,,,,,,0.01592,0.01849,0.02936,,,,,,,,0.01769,0.02001,0.03162,,,,,,,,0.01576,0.01826,0.02785,,,,,,,,0.01692,0.01896,0.02866,,,,,,,,0.01299,0.01512,0.02191,,,,,,,,7.18027,9.66695,14.76938,,,,,,,,6.9088,9.38321,13.8175,,,,,,,,8.61347,11.31945,16.99401,,,,,,,,9.21465,12.27159,17.97838,,,,,,,,6.39637,9.25206,14.12063,,,,,,,,7.18604,10.12088,15.28854,,,,,,,,6.4861,9.44421,13.93659,,,,,,,,6.94757,9.94053,14.61426,,,,,,,,5.20972,7.86305,11.35169,,,,,,,,376.89916,380.04698,390.21548,,,,,,,,380.22649,383.1569,392.65296,,,,,,,,386.71942,389.79323,399.70862,,,,,,,,377.04161,380.20786,390.42822,,,,,,,,387.04471,389.14643,396.12873,,,,,,,,380.64318,383.06092,390.92793,,,,,,,,383.03518,385.04841,391.71743,,,,,,,,383.69574,386.15466,394.21333,,,,,,,,376.31992,378.50164,385.74944,,,,,,,,0.02444,0.02719,0.04141,,,,,,,,0.02454,0.02728,0.04157,,,,,,,,0.02472,0.02744,0.04186,,,,,,,,0.02468,0.02748,0.0418,,,,,,,,0.02474,0.02748,0.04191,,,,,,,,0.02483,0.02762,0.04206,,,,,,,,0.02458,0.02734,0.04164,,,,,,,,0.02471,0.02746,0.04186,,,,,,,,0.02432,0.02703,0.0412,,,,,,,,0.05942,0.07773,0.0825,,,,,,,,0.05955,0.07791,0.08268,,,,,,,,0.05972,0.07812,0.08287,,,,,,,,0.05901,0.07719,0.08197,,,,,,,,0.05963,0.078,0.08275,,,,,,,,0.05921,0.07746,0.08223,,,,,,,,0.0594,0.07771,0.08247,,,,,,,,0.05963,0.07801,0.08277,,,,,,,,0.05976,0.07818,0.08294,,,,,,,,1.07385,1.45021,2.16624,,,,,,,,1.05342,1.44095,2.1148,,,,,,,,1.23284,1.60085,2.35507,,,,,,,,1.2796,1.70705,2.4498,,,,,,,,1.17365,1.5795,2.34518,,,,,,,,1.22983,1.63247,2.41065,,,,,,,,1.19206,1.606,2.27243,,,,,,,,1.24723,1.67166,2.39624,,,,,,,,1.03643,1.41412,1.98543,,,,,,,,0.00947,0.01481,0.03898,,,,,,,,0.00834,0.01302,0.03415,,,,,,,,0.00914,0.01429,0.03766,,,,,,,,0.00995,0.0156,0.04186,,,,,,,,0.00505,0.00783,0.0203,,,,,,,,0.00581,0.00904,0.0238,,,,,,,,0.00491,0.00762,0.01968,,,,,,,,0.00662,0.01032,0.02697,,,,,,,,0.00497,0.00771,0.01958,,,,,,,,0.0488,0.06032,0.11423,,,,,,,,0.04731,0.05732,0.10422,,,,,,,,0.05174,0.06271,0.11486,,,,,,,,0.04852,0.06083,0.11967,,,,,,,,0.04215,0.04798,0.07515,,,,,,,,0.04133,0.04812,0.08054,,,,,,,,0.03924,0.04494,0.07108,,,,,,,,0.04436,0.05226,0.08886,,,,,,,,0.04011,0.04585,0.07146,,,,,,,,0.02183,0.03202,0.07971,,,,,,,,0.01976,0.02863,0.07011,,,,,,,,0.02179,0.03149,0.07762,,,,,,,,0.0228,0.0337,0.08574,,,,,,,,0.01365,0.0188,0.04284,,,,,,,,0.01486,0.02087,0.04955,,,,,,,,0.01304,0.01808,0.04121,,,,,,,,0.01657,0.02355,0.05593,,,,,,,,0.01313,0.01821,0.04086,,,,,,,,0.01722,0.00841,0.00778,,,,,,,,0.01977,0.00856,0.00783,,,,,,,,0.02818,0.00888,0.00797,,,,,,,,0.02563,0.01484,0.00778,,,,,,,,0.02327,0.00882,0.00789,,,,,,,,0.0255,0.00872,0.00779,,,,,,,,0.02328,0.01193,0.00781,,,,,,,,0.02277,0.01356,0.00703,,,,,,,,0.01055,0.00488,0.0036,,,,,,,,0.79032,1.15496,2.22547,,,,,,,,0.75408,1.12158,2.11328,,,,,,,,0.90036,1.30278,2.46505,,,,,,,,0.96742,1.40112,2.58058,,,,,,,,0.70707,1.13681,2.34471,,,,,,,,0.76964,1.20933,2.42041,,,,,,,,0.7033,1.12189,2.2796,,,,,,,,0.79479,1.2148,2.38578,,,,,,,,0.59128,0.95412,1.92441,,,,,,, +Full size car,E10,2005,0.00162,0.00237,0.00385,0.01246,,,,,,,0.00146,0.00206,0.00333,0.01075,,,,,,,0.0018,0.00183,0.00294,0.01199,,,,,,,0.00192,0.00252,0.00411,0.01378,,,,,,,0.00094,0.00134,0.00216,0.00612,,,,,,,0.00113,0.00139,0.00224,0.00729,,,,,,,0.00089,0.00121,0.00195,0.0057,,,,,,,0.00122,0.00154,0.00248,0.00828,,,,,,,0.00076,0.00102,0.00162,0.00547,,,,,,,0.01749,0.01283,0.01269,0.01937,,,,,,,0.01586,0.01144,0.0118,0.01772,,,,,,,0.0181,0.01257,0.01294,0.0213,,,,,,,0.0193,0.01576,0.01482,0.02314,,,,,,,0.01054,0.00885,0.00992,0.01646,,,,,,,0.01251,0.00998,0.01089,0.0182,,,,,,,0.0102,0.0094,0.0098,0.01582,,,,,,,0.01342,0.01103,0.01065,0.01749,,,,,,,0.0081,0.0068,0.00743,0.01361,,,,,,,3.26887,4.3796,5.58768,9.3007,,,,,,,3.13261,4.25362,5.61227,8.96163,,,,,,,3.58479,5.15297,6.8677,10.81248,,,,,,,3.82532,5.8085,6.9469,11.62735,,,,,,,2.92286,4.3463,5.97297,9.23613,,,,,,,3.14325,4.68616,6.38162,9.91195,,,,,,,2.99075,4.78293,6.01972,9.26204,,,,,,,3.21055,5.15141,6.14005,9.69485,,,,,,,2.28533,4.00405,5.30012,8.02987,,,,,,,383.61442,385.38819,389.77412,396.47833,,,,,,,387.18708,388.82902,392.91571,398.96561,,,,,,,393.48041,395.21334,399.46747,405.9233,,,,,,,383.88261,385.64187,390.09117,396.91151,,,,,,,394.88049,396.01522,398.98771,402.60517,,,,,,,388.20643,389.53503,392.91936,397.42511,,,,,,,391.1224,392.19344,395.0643,398.40755,,,,,,,391.19,392.54205,395.99785,400.65679,,,,,,,383.91967,385.1314,388.19316,391.9956,,,,,,,0.00715,0.00771,0.00905,0.02207,,,,,,,0.00716,0.00772,0.00907,0.02212,,,,,,,0.00717,0.00773,0.00907,0.02218,,,,,,,0.00725,0.00782,0.0092,0.02237,,,,,,,0.00719,0.00775,0.00909,0.02222,,,,,,,0.00726,0.00783,0.0092,0.02243,,,,,,,0.00718,0.00774,0.0091,0.02218,,,,,,,0.0072,0.00776,0.00911,0.02225,,,,,,,0.00708,0.00763,0.00896,0.02189,,,,,,,0.02404,0.02736,0.03368,0.04793,,,,,,,0.02409,0.02742,0.03376,0.04803,,,,,,,0.02416,0.0275,0.03385,0.04815,,,,,,,0.02387,0.02717,0.03345,0.0476,,,,,,,0.02412,0.02746,0.0338,0.04808,,,,,,,0.02395,0.02727,0.03356,0.04777,,,,,,,0.02403,0.02735,0.03367,0.04791,,,,,,,0.02412,0.02746,0.0338,0.04809,,,,,,,0.02418,0.02752,0.03387,0.04819,,,,,,,0.2815,0.41372,0.54552,1.02948,,,,,,,0.27759,0.40358,0.54845,1.01505,,,,,,,0.31754,0.45366,0.60457,1.14976,,,,,,,0.31627,0.52847,0.63849,1.22238,,,,,,,0.28312,0.43349,0.58636,1.1354,,,,,,,0.30131,0.453,0.60671,1.17372,,,,,,,0.28577,0.46498,0.58114,1.1075,,,,,,,0.30956,0.49763,0.59853,1.1702,,,,,,,0.22359,0.33009,0.44123,0.99446,,,,,,,0.00357,0.00513,0.00768,0.02205,,,,,,,0.00331,0.0046,0.00689,0.01953,,,,,,,0.00388,0.00432,0.00641,0.0213,,,,,,,0.004,0.00529,0.00795,0.02351,,,,,,,0.00232,0.00326,0.00493,0.01227,,,,,,,0.00264,0.00337,0.00507,0.01401,,,,,,,0.00223,0.00304,0.00458,0.01167,,,,,,,0.00284,0.00366,0.00548,0.01563,,,,,,,0.00201,0.0027,0.00403,0.01144,,,,,,,0.03603,0.03931,0.045,0.07718,,,,,,,0.03642,0.03911,0.04416,0.07231,,,,,,,0.04025,0.04095,0.04555,0.07896,,,,,,,0.03547,0.03818,0.0441,0.07925,,,,,,,0.03629,0.03821,0.04179,0.05782,,,,,,,0.03446,0.0359,0.03956,0.05929,,,,,,,0.03348,0.03514,0.03841,0.05383,,,,,,,0.03618,0.03785,0.04177,0.06423,,,,,,,0.03386,0.03525,0.03807,0.05414,,,,,,,0.01053,0.01343,0.01846,0.04693,,,,,,,0.01013,0.01251,0.01698,0.04189,,,,,,,0.01162,0.01225,0.01631,0.04587,,,,,,,0.01126,0.01365,0.01889,0.04999,,,,,,,0.00847,0.01016,0.01333,0.02752,,,,,,,0.00879,0.01005,0.0133,0.03075,,,,,,,0.00795,0.00941,0.01231,0.02595,,,,,,,0.00933,0.01081,0.01427,0.03414,,,,,,,0.0076,0.00883,0.01132,0.02555,,,,,,,0.01752,0.00853,0.00777,0.00263,,,,,,,0.02013,0.00869,0.00783,0.00265,,,,,,,0.02868,0.00901,0.00796,0.0027,,,,,,,0.0261,0.01506,0.00777,0.00264,,,,,,,0.02374,0.00898,0.00795,0.00267,,,,,,,0.02601,0.00887,0.00783,0.00264,,,,,,,0.02377,0.01215,0.00787,0.00265,,,,,,,0.0232,0.01379,0.00706,0.00262,,,,,,,0.01076,0.00497,0.00362,0.00241,,,,,,,0.37985,0.41663,0.57941,1.38514,,,,,,,0.3454,0.37843,0.53987,1.31803,,,,,,,0.39284,0.40932,0.58562,1.50045,,,,,,,0.42144,0.50338,0.66487,1.61045,,,,,,,0.23395,0.29741,0.46553,1.35092,,,,,,,0.27374,0.32913,0.50295,1.41737,,,,,,,0.22478,0.30705,0.45448,1.31612,,,,,,,0.31522,0.38861,0.53941,1.44546,,,,,,,0.19002,0.25643,0.39842,1.18182,,,,,, +Full size car,E10,2010,,0.00116,0.00189,0.0031,0.00797,,,,,,,0.00102,0.00165,0.00275,0.00696,,,,,,,0.00089,0.00143,0.00295,0.00759,,,,,,,0.00124,0.00202,0.00339,0.00877,,,,,,,0.00074,0.00117,0.00183,0.00427,,,,,,,0.00075,0.00119,0.00205,0.00493,,,,,,,0.00067,0.00107,0.00166,0.00387,,,,,,,0.00079,0.00127,0.00221,0.00544,,,,,,,0.00056,0.00088,0.00154,0.00363,,,,,,,0.01447,0.01215,0.0104,0.01403,,,,,,,0.01256,0.01108,0.00955,0.01295,,,,,,,0.01335,0.01238,0.01077,0.01496,,,,,,,0.01716,0.01452,0.01243,0.01691,,,,,,,0.00887,0.00965,0.00843,0.01156,,,,,,,0.00971,0.01036,0.0091,0.01267,,,,,,,0.00926,0.00954,0.00833,0.01131,,,,,,,0.01139,0.01018,0.00921,0.01258,,,,,,,0.00725,0.0073,0.00781,0.01028,,,,,,,2.48341,3.81182,5.09585,7.07901,,,,,,,2.34814,3.77798,5.02469,6.93758,,,,,,,2.78107,4.54085,5.76238,8.17696,,,,,,,3.07668,4.58732,6.30228,8.88624,,,,,,,2.06758,3.80096,5.24678,7.22417,,,,,,,2.27568,4.08347,5.50331,7.67962,,,,,,,2.2653,3.84868,5.35225,7.33121,,,,,,,2.61412,4.01182,5.47259,7.56878,,,,,,,1.98774,3.45469,4.7501,6.44189,,,,,,,378.34318,381.0668,385.69408,394.85501,,,,,,,381.92659,384.43966,388.73293,397.32087,,,,,,,388.14052,390.76153,395.23755,404.18724,,,,,,,378.57539,381.32694,386.03125,395.35071,,,,,,,389.70767,391.44169,394.49287,400.93104,,,,,,,383.05742,385.07754,388.59252,395.82336,,,,,,,385.99822,387.65935,390.60209,396.83497,,,,,,,385.98142,388.05307,391.64271,399.01043,,,,,,,378.86597,380.6927,383.84057,390.36286,,,,,,,0.00688,0.00779,0.0093,0.01424,,,,,,,0.00689,0.0078,0.00932,0.01426,,,,,,,0.00691,0.00781,0.00931,0.01424,,,,,,,0.00697,0.0079,0.00945,0.01448,,,,,,,0.00692,0.00783,0.00934,0.01429,,,,,,,0.00699,0.00791,0.00946,0.01448,,,,,,,0.00691,0.00783,0.00935,0.01431,,,,,,,0.00693,0.00784,0.00936,0.01433,,,,,,,0.00682,0.00771,0.00921,0.01409,,,,,,,0.01689,0.01977,0.02529,0.03064,,,,,,,0.01693,0.01982,0.02535,0.0307,,,,,,,0.01698,0.01987,0.02542,0.03079,,,,,,,0.01678,0.01964,0.02511,0.03042,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01684,0.01971,0.0252,0.03053,,,,,,,0.01689,0.01977,0.02528,0.03062,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01699,0.01989,0.02543,0.03081,,,,,,,0.11365,0.18688,0.19795,0.45071,,,,,,,0.10842,0.18623,0.19575,0.44713,,,,,,,0.11319,0.20453,0.21161,0.50538,,,,,,,0.13095,0.21903,0.22831,0.54491,,,,,,,0.1018,0.19275,0.19798,0.48954,,,,,,,0.10773,0.20231,0.20843,0.5107,,,,,,,0.10985,0.19239,0.19874,0.48248,,,,,,,0.12283,0.20102,0.21646,0.51283,,,,,,,0.08256,0.14586,0.19175,0.44209,,,,,,,0.00208,0.00323,0.00504,0.01277,,,,,,,0.00195,0.00301,0.00472,0.0116,,,,,,,0.00178,0.00274,0.0049,0.01236,,,,,,,0.00214,0.00333,0.00529,0.01356,,,,,,,0.00172,0.00261,0.00388,0.00832,,,,,,,0.00168,0.00255,0.00404,0.00905,,,,,,,0.00162,0.00245,0.00363,0.00778,,,,,,,0.0017,0.0026,0.00419,0.00972,,,,,,,0.00143,0.00215,0.00346,0.00747,,,,,,,0.03298,0.0356,0.03976,0.05733,,,,,,,0.03362,0.036,0.03988,0.05539,,,,,,,0.03573,0.03785,0.04287,0.05977,,,,,,,0.03156,0.03428,0.03884,0.05778,,,,,,,0.03501,0.03692,0.03966,0.04942,,,,,,,0.03241,0.0343,0.03759,0.04872,,,,,,,0.0322,0.03396,0.03649,0.04556,,,,,,,0.03379,0.03574,0.03926,0.0516,,,,,,,0.03266,0.03418,0.037,0.04573,,,,,,,0.00783,0.01015,0.01383,0.02937,,,,,,,0.00766,0.00976,0.0132,0.02692,,,,,,,0.00762,0.0095,0.01394,0.02889,,,,,,,0.0078,0.0102,0.01424,0.03099,,,,,,,0.00734,0.00902,0.01145,0.02008,,,,,,,0.00696,0.00864,0.01155,0.0214,,,,,,,0.00682,0.00837,0.01061,0.01864,,,,,,,0.00722,0.00894,0.01206,0.02298,,,,,,,0.00654,0.00789,0.01038,0.01811,,,,,,,0.00837,0.00759,0.00256,0.00262,,,,,,,0.00853,0.00766,0.00258,0.00264,,,,,,,0.00885,0.00779,0.00263,0.00269,,,,,,,0.01479,0.0076,0.00256,0.00263,,,,,,,0.00883,0.0078,0.00262,0.00266,,,,,,,0.00872,0.00767,0.00258,0.00263,,,,,,,0.01196,0.00773,0.00259,0.00264,,,,,,,0.01356,0.00691,0.00256,0.00261,,,,,,,0.00488,0.00355,0.00236,0.0024,,,,,,,0.18098,0.25247,0.37083,0.8927,,,,,,,0.16025,0.23056,0.34556,0.85354,,,,,,,0.17144,0.25452,0.38245,0.94682,,,,,,,0.21414,0.29699,0.43445,1.03021,,,,,,,0.12265,0.20457,0.32885,0.85584,,,,,,,0.13123,0.2161,0.34393,0.89186,,,,,,,0.12541,0.20048,0.32273,0.83646,,,,,,,0.15757,0.23211,0.36726,0.92325,,,,,,,0.11055,0.17693,0.30936,0.78655,,,,, +Full size car,E10,2015,,,0.00096,0.0015,0.00256,0.00538,,,,,,,0.00087,0.00137,0.00234,0.00483,,,,,,,0.00076,0.00144,0.00246,0.00513,,,,,,,0.001,0.0016,0.00275,0.00582,,,,,,,0.00068,0.00102,0.0017,0.0033,,,,,,,0.00068,0.0011,0.00186,0.00368,,,,,,,0.00062,0.00093,0.00155,0.00299,,,,,,,0.0007,0.00116,0.00195,0.00392,,,,,,,0.00052,0.00087,0.00145,0.00278,,,,,,,0.01117,0.00844,0.00855,0.01056,,,,,,,0.01026,0.00785,0.0081,0.00995,,,,,,,0.01046,0.00874,0.00906,0.01124,,,,,,,0.01198,0.0099,0.01022,0.01269,,,,,,,0.00792,0.00704,0.00778,0.00944,,,,,,,0.00845,0.00758,0.00829,0.01014,,,,,,,0.0079,0.00697,0.00775,0.00937,,,,,,,0.00873,0.00765,0.00816,0.00999,,,,,,,0.00639,0.00663,0.00723,0.00866,,,,,,,1.84521,3.27085,4.44326,5.63916,,,,,,,1.83028,3.26131,4.47109,5.63973,,,,,,,2.05065,3.64192,5.11485,6.51889,,,,,,,2.05861,3.9482,5.55835,7.06961,,,,,,,1.70532,3.47292,4.95619,6.1746,,,,,,,1.81676,3.59,5.13403,6.44868,,,,,,,1.7484,3.55912,5.06815,6.31376,,,,,,,1.84788,3.59034,5.02826,6.31762,,,,,,,1.63266,3.21732,4.46806,5.5653,,,,,,,338.57847,341.09603,343.67549,354.78827,,,,,,,341.7079,344.00277,346.28136,356.96524,,,,,,,347.29401,349.69827,352.11188,363.1334,,,,,,,338.82115,341.3785,344.02646,355.26598,,,,,,,348.39569,349.87174,351.05478,360.07829,,,,,,,342.56263,344.34647,345.95334,355.55556,,,,,,,345.07041,346.47751,347.58297,356.41349,,,,,,,345.18202,347.01345,348.6733,358.41328,,,,,,,338.71426,340.28094,341.58215,350.58905,,,,,,,0.00442,0.00499,0.00575,0.00808,,,,,,,0.00445,0.00501,0.00577,0.0081,,,,,,,0.00449,0.00505,0.00581,0.00812,,,,,,,0.00445,0.00503,0.0058,0.00819,,,,,,,0.00449,0.00506,0.00581,0.00814,,,,,,,0.00449,0.00506,0.00584,0.00821,,,,,,,0.00445,0.00501,0.00578,0.00812,,,,,,,0.00448,0.00505,0.00581,0.00815,,,,,,,0.00441,0.00497,0.00572,0.00801,,,,,,,0.01689,0.01958,0.02529,0.02574,,,,,,,0.01693,0.01962,0.02535,0.0258,,,,,,,0.01698,0.01968,0.02542,0.02587,,,,,,,0.01678,0.01944,0.02511,0.02556,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01684,0.01951,0.0252,0.02565,,,,,,,0.01689,0.01957,0.02528,0.02573,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01699,0.01969,0.02543,0.02589,,,,,,,0.08822,0.11553,0.1702,0.2441,,,,,,,0.08727,0.11347,0.16786,0.24136,,,,,,,0.08786,0.12294,0.18091,0.26458,,,,,,,0.09291,0.13305,0.19586,0.28721,,,,,,,0.07778,0.1116,0.16753,0.24829,,,,,,,0.08284,0.11864,0.17726,0.262,,,,,,,0.07917,0.11207,0.16856,0.24831,,,,,,,0.08569,0.1242,0.18438,0.26916,,,,,,,0.06323,0.10911,0.16275,0.23593,,,,,,,0.00186,0.00279,0.00452,0.00864,,,,,,,0.00178,0.00269,0.00432,0.00812,,,,,,,0.00163,0.00275,0.00443,0.00841,,,,,,,0.00189,0.00288,0.00468,0.00903,,,,,,,0.00164,0.00237,0.00375,0.00663,,,,,,,0.00159,0.00242,0.00386,0.00695,,,,,,,0.00155,0.00224,0.00353,0.00621,,,,,,,0.00159,0.00247,0.00394,0.00718,,,,,,,0.00137,0.00214,0.00337,0.00591,,,,,,,0.03243,0.03449,0.0384,0.04795,,,,,,,0.03318,0.03517,0.03883,0.04754,,,,,,,0.03534,0.03784,0.04164,0.05083,,,,,,,0.0309,0.03311,0.03721,0.04741,,,,,,,0.03481,0.03635,0.03932,0.04567,,,,,,,0.03218,0.03398,0.0371,0.04401,,,,,,,0.03202,0.03346,0.03623,0.04208,,,,,,,0.03349,0.03538,0.0386,0.04591,,,,,,,0.03251,0.03413,0.03676,0.0423,,,,,,,0.00734,0.00917,0.01262,0.02108,,,,,,,0.00727,0.00903,0.01227,0.01997,,,,,,,0.00728,0.00949,0.01285,0.02098,,,,,,,0.00721,0.00917,0.0128,0.02182,,,,,,,0.00716,0.00852,0.01115,0.01677,,,,,,,0.00677,0.00835,0.01112,0.01723,,,,,,,0.00666,0.00793,0.01038,0.01556,,,,,,,0.00695,0.00862,0.01148,0.01794,,,,,,,0.00641,0.00785,0.01017,0.01507,,,,,,,0.00675,0.00227,0.00228,0.00236,,,,,,,0.00681,0.00229,0.0023,0.00237,,,,,,,0.00692,0.00232,0.00234,0.00241,,,,,,,0.00675,0.00227,0.00229,0.00236,,,,,,,0.00694,0.00232,0.00233,0.00239,,,,,,,0.00683,0.00229,0.0023,0.00236,,,,,,,0.00688,0.0023,0.00231,0.00237,,,,,,,0.00615,0.00227,0.00228,0.00235,,,,,,,0.00316,0.00209,0.0021,0.00215,,,,,,,0.13491,0.19169,0.31026,0.60939,,,,,,,0.12547,0.18062,0.29783,0.59149,,,,,,,0.13,0.19722,0.32609,0.64085,,,,,,,0.1474,0.22136,0.36153,0.69391,,,,,,,0.10555,0.17274,0.30547,0.61445,,,,,,,0.11038,0.18026,0.31545,0.62979,,,,,,,0.10534,0.17059,0.30145,0.60398,,,,,,,0.12204,0.19364,0.33031,0.65195,,,,,,,0.09553,0.16351,0.28839,0.58089,,,, +Full size car,E10,2020,,,,0.00083,0.00125,0.00192,0.00384,,,,,,,0.00076,0.00115,0.00176,0.00348,,,,,,,0.0008,0.00121,0.00184,0.00367,,,,,,,0.00088,0.00134,0.00205,0.00413,,,,,,,0.00058,0.00086,0.00129,0.00246,,,,,,,0.00063,0.00093,0.00141,0.00272,,,,,,,0.00054,0.00079,0.00118,0.00223,,,,,,,0.00065,0.00097,0.00147,0.00287,,,,,,,0.0005,0.00074,0.0011,0.00207,,,,,,,0.00839,0.00687,0.0064,0.00782,,,,,,,0.00753,0.0063,0.00595,0.00729,,,,,,,0.00791,0.00702,0.00665,0.00827,,,,,,,0.00905,0.00801,0.00756,0.00938,,,,,,,0.00524,0.00528,0.00529,0.00665,,,,,,,0.00583,0.00579,0.00573,0.00722,,,,,,,0.00516,0.00522,0.00524,0.00659,,,,,,,0.00639,0.00592,0.00574,0.00716,,,,,,,0.00515,0.00493,0.00487,0.00605,,,,,,,1.50957,2.23696,2.78755,3.69885,,,,,,,1.46807,2.20153,2.75941,3.6651,,,,,,,1.55379,2.45976,3.14908,4.25243,,,,,,,1.69786,2.69056,3.46083,4.64806,,,,,,,1.34445,2.2537,2.91441,3.92529,,,,,,,1.40929,2.35515,3.05701,4.1371,,,,,,,1.38749,2.31445,2.99057,4.02543,,,,,,,1.48071,2.37339,3.02562,4.06322,,,,,,,1.30738,2.09496,2.6454,3.53495,,,,,,,271.96867,273.86852,275.68648,290.82129,,,,,,,274.31603,276.03072,277.5877,292.40308,,,,,,,278.85543,280.6576,282.324,297.52236,,,,,,,272.22635,274.16033,276.03818,291.29223,,,,,,,279.09756,280.1349,280.74701,294.2357,,,,,,,274.66253,275.95649,276.93841,290.83456,,,,,,,276.41031,277.39344,277.94311,291.2138,,,,,,,276.77516,278.10662,279.13032,293.18636,,,,,,,271.38059,272.49515,273.21747,286.5266,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06275,0.09664,0.12938,0.17234,,,,,,,0.06114,0.09451,0.12691,0.16929,,,,,,,0.06183,0.10193,0.13608,0.18411,,,,,,,0.06638,0.11092,0.14819,0.2011,,,,,,,0.05194,0.09054,0.12274,0.16787,,,,,,,0.05643,0.09722,0.13136,0.17929,,,,,,,0.05298,0.09133,0.1241,0.16889,,,,,,,0.06121,0.1022,0.13744,0.18568,,,,,,,0.05387,0.08912,0.12031,0.16153,,,,,,,0.00163,0.00235,0.0034,0.0062,,,,,,,0.00158,0.00227,0.00326,0.00588,,,,,,,0.00161,0.00231,0.00334,0.00606,,,,,,,0.00167,0.00242,0.00351,0.00646,,,,,,,0.00142,0.00201,0.00284,0.00495,,,,,,,0.00144,0.00205,0.00292,0.00515,,,,,,,0.00134,0.0019,0.00268,0.00464,,,,,,,0.00146,0.00209,0.00298,0.00528,,,,,,,0.00129,0.00181,0.00256,0.00442,,,,,,,0.0319,0.03352,0.03591,0.04242,,,,,,,0.03273,0.03425,0.03649,0.04252,,,,,,,0.03532,0.03689,0.03921,0.0455,,,,,,,0.0304,0.03209,0.03459,0.04149,,,,,,,0.03434,0.0356,0.0374,0.04205,,,,,,,0.03187,0.03319,0.03509,0.04007,,,,,,,0.03158,0.03275,0.03443,0.03872,,,,,,,0.03321,0.03457,0.03653,0.04171,,,,,,,0.03235,0.03347,0.03506,0.03911,,,,,,,0.00688,0.0083,0.01042,0.01618,,,,,,,0.00687,0.00822,0.0102,0.01553,,,,,,,0.00726,0.00865,0.01071,0.01627,,,,,,,0.00678,0.00827,0.01048,0.01658,,,,,,,0.00674,0.00786,0.00945,0.01356,,,,,,,0.00649,0.00766,0.00934,0.01375,,,,,,,0.00627,0.00731,0.00879,0.01259,,,,,,,0.00671,0.00791,0.00964,0.01423,,,,,,,0.00627,0.00726,0.00866,0.01225,,,,,,,0.00181,0.00182,0.00183,0.00193,,,,,,,0.00182,0.00183,0.00184,0.00194,,,,,,,0.00185,0.00186,0.00188,0.00198,,,,,,,0.00181,0.00182,0.00183,0.00194,,,,,,,0.00185,0.00186,0.00187,0.00195,,,,,,,0.00182,0.00183,0.00184,0.00193,,,,,,,0.00184,0.00184,0.00185,0.00193,,,,,,,0.00181,0.00182,0.00183,0.00192,,,,,,,0.00167,0.00167,0.00168,0.00176,,,,,,,0.11385,0.15527,0.23291,0.47649,,,,,,,0.10455,0.14355,0.21904,0.45978,,,,,,,0.11026,0.15851,0.24245,0.50008,,,,,,,0.12432,0.1791,0.27058,0.53963,,,,,,,0.08326,0.1294,0.2126,0.473,,,,,,,0.08906,0.13763,0.22291,0.48616,,,,,,,0.08222,0.12606,0.20653,0.46113,,,,,,,0.10059,0.14965,0.23626,0.50349,,,,,,,0.0798,0.1214,0.19895,0.44666,,, +Full size car,E10,2025,,,,,0.00054,0.0008,0.00124,0.00256,,,,,,,0.0005,0.00073,0.00114,0.00232,,,,,,,0.00052,0.00077,0.00119,0.00245,,,,,,,0.00057,0.00085,0.00133,0.00274,,,,,,,0.00038,0.00055,0.00083,0.00165,,,,,,,0.00041,0.0006,0.00091,0.00183,,,,,,,0.00035,0.0005,0.00076,0.0015,,,,,,,0.00042,0.00062,0.00095,0.00192,,,,,,,0.00033,0.00047,0.00071,0.0014,,,,,,,0.0071,0.0054,0.00486,0.00596,,,,,,,0.00621,0.00481,0.00439,0.00542,,,,,,,0.00662,0.00536,0.0049,0.00614,,,,,,,0.0077,0.00621,0.00565,0.00705,,,,,,,0.00383,0.00353,0.00345,0.00445,,,,,,,0.00444,0.004,0.00385,0.00496,,,,,,,0.00372,0.00345,0.0034,0.00438,,,,,,,0.00501,0.00423,0.00398,0.00505,,,,,,,0.00371,0.00327,0.00317,0.00403,,,,,,,1.1285,1.61852,2.03503,2.67453,,,,,,,1.07088,1.56149,1.97838,2.60527,,,,,,,1.14227,1.74727,2.25674,3.01416,,,,,,,1.26434,1.93432,2.50599,3.32612,,,,,,,0.90333,1.49966,1.97387,2.64234,,,,,,,0.96878,1.59367,2.10019,2.82059,,,,,,,0.93269,1.54262,2.02871,2.71458,,,,,,,1.03817,1.62904,2.10469,2.80558,,,,,,,0.88425,1.40034,1.79759,2.39435,,,,,,,219.79055,221.42766,223.33293,236.96005,,,,,,,221.55546,223.03798,224.7172,238.04539,,,,,,,225.26595,226.82303,228.60383,242.28136,,,,,,,220.05063,221.7187,223.68094,237.42605,,,,,,,224.95387,225.86908,226.72345,238.81764,,,,,,,221.56775,222.69787,223.8734,236.35339,,,,,,,222.76989,223.6395,224.43786,236.33729,,,,,,,223.28135,224.44311,225.65654,238.27886,,,,,,,218.76119,219.73734,220.67422,232.60211,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04803,0.06983,0.09285,0.12606,,,,,,,0.0462,0.06754,0.09015,0.12275,,,,,,,0.04666,0.0721,0.0958,0.1325,,,,,,,0.0506,0.07914,0.1052,0.14565,,,,,,,0.03696,0.06108,0.08291,0.11658,,,,,,,0.04117,0.06691,0.0903,0.12637,,,,,,,0.03786,0.06195,0.08423,0.11769,,,,,,,0.04482,0.07073,0.09492,0.13151,,,,,,,0.03856,0.06075,0.08206,0.1132,,,,,,,0.00106,0.0015,0.00221,0.00416,,,,,,,0.00103,0.00145,0.00212,0.00395,,,,,,,0.00105,0.00148,0.00217,0.00406,,,,,,,0.00109,0.00154,0.00228,0.00431,,,,,,,0.00092,0.00128,0.00185,0.00334,,,,,,,0.00094,0.00131,0.0019,0.00347,,,,,,,0.00087,0.00121,0.00174,0.00313,,,,,,,0.00095,0.00133,0.00194,0.00356,,,,,,,0.00084,0.00116,0.00167,0.00299,,,,,,,0.03067,0.03166,0.03327,0.03777,,,,,,,0.03155,0.03248,0.03399,0.03818,,,,,,,0.03412,0.03507,0.03664,0.041,,,,,,,0.02913,0.03016,0.03184,0.03658,,,,,,,0.03332,0.03409,0.03531,0.03858,,,,,,,0.03082,0.03163,0.03291,0.03641,,,,,,,0.03061,0.03133,0.03247,0.03548,,,,,,,0.03214,0.03297,0.0343,0.03793,,,,,,,0.03143,0.03211,0.03319,0.03608,,,,,,,0.00579,0.00666,0.00809,0.01207,,,,,,,0.00583,0.00665,0.00799,0.01169,,,,,,,0.0062,0.00705,0.00843,0.01228,,,,,,,0.00565,0.00656,0.00805,0.01224,,,,,,,0.00584,0.00652,0.0076,0.01049,,,,,,,0.00556,0.00627,0.00741,0.01051,,,,,,,0.00541,0.00605,0.00705,0.00972,,,,,,,0.00576,0.00649,0.00767,0.01088,,,,,,,0.00545,0.00606,0.00701,0.00956,,,,,,,0.00146,0.00147,0.00148,0.00157,,,,,,,0.00147,0.00148,0.00149,0.00158,,,,,,,0.0015,0.00151,0.00152,0.00161,,,,,,,0.00146,0.00147,0.00149,0.00158,,,,,,,0.00149,0.0015,0.00151,0.00159,,,,,,,0.00147,0.00148,0.00149,0.00157,,,,,,,0.00148,0.00149,0.00149,0.00157,,,,,,,0.00146,0.00147,0.00148,0.00156,,,,,,,0.00134,0.00135,0.00135,0.00143,,,,,,,0.09761,0.1246,0.18328,0.38815,,,,,,,0.08762,0.11195,0.16796,0.36938,,,,,,,0.09366,0.12522,0.18865,0.40487,,,,,,,0.10684,0.14325,0.21242,0.43708,,,,,,,0.06346,0.09131,0.15154,0.3669,,,,,,,0.06993,0.09998,0.16236,0.38059,,,,,,,0.06181,0.08702,0.14416,0.35281,,,,,,,0.08068,0.11109,0.17476,0.39558,,,,,,,0.06016,0.08466,0.1405,0.34603,, +Full size car,E10,2030,,,,,,0.00054,0.0008,0.00123,0.00223,,,,,,,0.0005,0.00073,0.00113,0.00203,,,,,,,0.00052,0.00077,0.00118,0.00214,,,,,,,0.00057,0.00085,0.00131,0.00239,,,,,,,0.00038,0.00055,0.00083,0.00145,,,,,,,0.00041,0.00059,0.00091,0.0016,,,,,,,0.00035,0.0005,0.00076,0.00132,,,,,,,0.00042,0.00062,0.00095,0.00168,,,,,,,0.00033,0.00047,0.00071,0.00123,,,,,,,0.00665,0.00492,0.00441,0.00524,,,,,,,0.00575,0.00433,0.00394,0.0047,,,,,,,0.00617,0.00482,0.0044,0.00529,,,,,,,0.00722,0.00562,0.00511,0.00611,,,,,,,0.00335,0.00297,0.00292,0.00357,,,,,,,0.00396,0.00342,0.00331,0.00404,,,,,,,0.00324,0.00289,0.00286,0.00349,,,,,,,0.00454,0.0037,0.00348,0.0042,,,,,,,0.00323,0.00275,0.00268,0.00324,,,,,,,1.02822,1.46511,1.85482,2.33379,,,,,,,0.96681,1.4031,1.79041,2.25236,,,,,,,1.03467,1.57084,2.04202,2.5941,,,,,,,1.15058,1.74599,2.27395,2.87836,,,,,,,0.78898,1.31395,1.74456,2.20814,,,,,,,0.85424,1.4055,1.86701,2.37229,,,,,,,0.81453,1.35209,1.7936,2.27019,,,,,,,0.92264,1.44525,1.88172,2.38019,,,,,,,0.77383,1.22921,1.59353,2.008,,,,,,,202.37594,204.42196,207.59024,216.57276,,,,,,,203.95177,205.85843,208.81947,217.48287,,,,,,,207.3841,209.3687,212.4505,221.38071,,,,,,,202.63559,204.71112,207.93816,217.0329,,,,,,,206.90582,208.2932,210.47961,217.89872,,,,,,,203.86263,205.44197,207.91823,215.77045,,,,,,,204.89053,206.23087,208.35053,215.62512,,,,,,,205.4427,207.05521,209.57762,217.53359,,,,,,,201.21947,202.64801,204.87349,212.24266,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04246,0.06053,0.08157,0.10797,,,,,,,0.04054,0.05817,0.07879,0.10451,,,,,,,0.04085,0.06172,0.08334,0.11182,,,,,,,0.04451,0.06805,0.09184,0.12334,,,,,,,0.03129,0.05089,0.07065,0.09597,,,,,,,0.03536,0.05639,0.07763,0.10506,,,,,,,0.03214,0.05175,0.0719,0.09724,,,,,,,0.03858,0.05978,0.08181,0.10978,,,,,,,0.03277,0.05094,0.07035,0.09399,,,,,,,0.00106,0.0015,0.0022,0.00366,,,,,,,0.00103,0.00145,0.00211,0.00348,,,,,,,0.00105,0.00148,0.00216,0.00358,,,,,,,0.00109,0.00154,0.00227,0.0038,,,,,,,0.00092,0.00128,0.00184,0.00295,,,,,,,0.00094,0.00131,0.00189,0.00307,,,,,,,0.00087,0.00121,0.00173,0.00277,,,,,,,0.00095,0.00133,0.00193,0.00314,,,,,,,0.00084,0.00116,0.00167,0.00265,,,,,,,0.03067,0.03165,0.03324,0.03663,,,,,,,0.03155,0.03248,0.03397,0.03712,,,,,,,0.03411,0.03507,0.03661,0.03989,,,,,,,0.02913,0.03015,0.03181,0.03539,,,,,,,0.03331,0.03408,0.03529,0.03774,,,,,,,0.03082,0.03162,0.03289,0.03552,,,,,,,0.03061,0.03133,0.03244,0.03471,,,,,,,0.03214,0.03296,0.03428,0.037,,,,,,,0.03143,0.03211,0.03319,0.03533,,,,,,,0.00579,0.00666,0.00806,0.01106,,,,,,,0.00583,0.00665,0.00797,0.01076,,,,,,,0.00619,0.00704,0.00841,0.01131,,,,,,,0.00565,0.00655,0.00802,0.01119,,,,,,,0.00583,0.00651,0.00758,0.00975,,,,,,,0.00556,0.00627,0.0074,0.00972,,,,,,,0.00541,0.00604,0.00703,0.00904,,,,,,,0.00576,0.00649,0.00765,0.01006,,,,,,,0.00545,0.00606,0.00701,0.0089,,,,,,,0.00134,0.00136,0.00138,0.00144,,,,,,,0.00135,0.00137,0.00139,0.00144,,,,,,,0.00138,0.00139,0.00141,0.00147,,,,,,,0.00135,0.00136,0.00138,0.00144,,,,,,,0.00137,0.00138,0.0014,0.00145,,,,,,,0.00135,0.00136,0.00138,0.00143,,,,,,,0.00136,0.00137,0.00138,0.00143,,,,,,,0.00134,0.00135,0.00137,0.00142,,,,,,,0.00124,0.00124,0.00126,0.0013,,,,,,,0.09314,0.11685,0.17275,0.35226,,,,,,,0.08307,0.10412,0.15728,0.33269,,,,,,,0.08914,0.11675,0.17706,0.36549,,,,,,,0.10203,0.13401,0.19953,0.39542,,,,,,,0.05854,0.08228,0.1388,0.32397,,,,,,,0.06505,0.09087,0.14949,0.33755,,,,,,,0.05678,0.07792,0.13124,0.30945,,,,,,,0.07551,0.10197,0.16172,0.3532,,,,,,,0.05515,0.07593,0.12842,0.30524, +Full size car,E10,2035,,,,,,,0.00054,0.00079,0.00124,0.0022,,,,,,,0.0005,0.00073,0.00113,0.002,,,,,,,0.00052,0.00076,0.00119,0.0021,,,,,,,0.00057,0.00084,0.00132,0.00236,,,,,,,0.00038,0.00054,0.00083,0.00143,,,,,,,0.00041,0.00059,0.00091,0.00157,,,,,,,0.00035,0.0005,0.00076,0.0013,,,,,,,0.00042,0.00062,0.00095,0.00165,,,,,,,0.00033,0.00047,0.00071,0.00121,,,,,,,0.00662,0.00492,0.00441,0.00513,,,,,,,0.00573,0.00433,0.00394,0.00458,,,,,,,0.00614,0.00483,0.0044,0.00513,,,,,,,0.0072,0.00563,0.0051,0.00595,,,,,,,0.00334,0.00297,0.00292,0.00341,,,,,,,0.00395,0.00343,0.00331,0.00387,,,,,,,0.00323,0.00289,0.00286,0.00334,,,,,,,0.00452,0.0037,0.00348,0.00406,,,,,,,0.00321,0.00275,0.00268,0.0031,,,,,,,1.02688,1.46501,1.85448,2.28071,,,,,,,0.96573,1.40222,1.79058,2.19756,,,,,,,1.03349,1.56958,2.04243,2.52781,,,,,,,1.14909,1.74336,2.27516,2.80835,,,,,,,0.78864,1.31041,1.74643,2.14046,,,,,,,0.85372,1.4022,1.86871,2.30199,,,,,,,0.81418,1.34838,1.79555,2.20087,,,,,,,0.9219,1.44316,1.88262,2.31347,,,,,,,0.77354,1.22854,1.59364,1.94662,,,,,,,202.31712,204.41466,207.58447,213.41988,,,,,,,203.89648,205.85154,208.81373,214.30222,,,,,,,207.32639,209.36151,212.4449,218.14804,,,,,,,202.575,204.70376,207.93235,213.87923,,,,,,,206.86326,208.28791,210.47523,214.66023,,,,,,,203.81517,205.43598,207.91323,212.58504,,,,,,,204.84879,206.22545,208.34629,212.41826,,,,,,,205.39473,207.04914,209.57269,214.32318,,,,,,,201.1776,202.64302,204.86944,209.091,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.00459,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04235,0.06038,0.08165,0.10515,,,,,,,0.04044,0.05803,0.07886,0.10164,,,,,,,0.04075,0.06156,0.08342,0.10849,,,,,,,0.0444,0.06784,0.09195,0.11974,,,,,,,0.03123,0.05079,0.07071,0.09257,,,,,,,0.03529,0.05626,0.0777,0.10155,,,,,,,0.03207,0.05161,0.07197,0.09391,,,,,,,0.0385,0.05969,0.08186,0.10623,,,,,,,0.03272,0.05091,0.07036,0.09083,,,,,,,0.00106,0.00149,0.00221,0.00361,,,,,,,0.00102,0.00144,0.00212,0.00343,,,,,,,0.00104,0.00147,0.00217,0.00353,,,,,,,0.00108,0.00153,0.00227,0.00374,,,,,,,0.00092,0.00128,0.00185,0.00291,,,,,,,0.00094,0.00131,0.0019,0.00302,,,,,,,0.00087,0.00121,0.00174,0.00273,,,,,,,0.00095,0.00133,0.00193,0.00309,,,,,,,0.00084,0.00116,0.00167,0.0026,,,,,,,0.03066,0.03163,0.03325,0.0365,,,,,,,0.03154,0.03246,0.03398,0.037,,,,,,,0.03411,0.03505,0.03662,0.03977,,,,,,,0.02912,0.03013,0.03182,0.03526,,,,,,,0.03331,0.03407,0.0353,0.03765,,,,,,,0.03081,0.03161,0.0329,0.03541,,,,,,,0.0306,0.03131,0.03245,0.03463,,,,,,,0.03213,0.03295,0.03429,0.03689,,,,,,,0.03143,0.03211,0.03319,0.03523,,,,,,,0.00578,0.00664,0.00807,0.01095,,,,,,,0.00582,0.00663,0.00797,0.01065,,,,,,,0.00619,0.00702,0.00841,0.0112,,,,,,,0.00564,0.00653,0.00803,0.01108,,,,,,,0.00583,0.0065,0.00759,0.00967,,,,,,,0.00556,0.00626,0.0074,0.00963,,,,,,,0.00541,0.00603,0.00704,0.00896,,,,,,,0.00575,0.00648,0.00766,0.00996,,,,,,,0.00545,0.00605,0.00701,0.00882,,,,,,,0.00134,0.00136,0.00138,0.00142,,,,,,,0.00135,0.00137,0.00139,0.00142,,,,,,,0.00138,0.00139,0.00141,0.00145,,,,,,,0.00135,0.00136,0.00138,0.00142,,,,,,,0.00137,0.00138,0.0014,0.00143,,,,,,,0.00135,0.00136,0.00138,0.00141,,,,,,,0.00136,0.00137,0.00138,0.00141,,,,,,,0.00134,0.00135,0.00137,0.0014,,,,,,,0.00123,0.00124,0.00126,0.00128,,,,,,,0.09285,0.11686,0.17269,0.34809,,,,,,,0.08281,0.10413,0.15723,0.32835,,,,,,,0.08888,0.11679,0.17698,0.36071,,,,,,,0.10171,0.13388,0.19956,0.39041,,,,,,,0.05837,0.08212,0.13888,0.31869,,,,,,,0.06485,0.09074,0.14955,0.33222,,,,,,,0.0566,0.07772,0.13135,0.30405,,,,,,,0.07522,0.10149,0.16216,0.348,,,,,,,0.05499,0.07589,0.12841,0.30019 +Full size car,E10,2040,,,,,,,,0.00053,0.00079,0.00124,,,,,,,,0.00049,0.00073,0.00114,,,,,,,,0.00051,0.00076,0.00119,,,,,,,,0.00056,0.00084,0.00132,,,,,,,,0.00037,0.00055,0.00083,,,,,,,,0.0004,0.00059,0.00091,,,,,,,,0.00034,0.0005,0.00076,,,,,,,,0.00042,0.00062,0.00095,,,,,,,,0.00033,0.00047,0.00071,,,,,,,,0.00662,0.00492,0.00441,,,,,,,,0.00574,0.00433,0.00394,,,,,,,,0.00616,0.00482,0.00439,,,,,,,,0.00721,0.00562,0.0051,,,,,,,,0.00334,0.00297,0.00292,,,,,,,,0.00396,0.00342,0.00331,,,,,,,,0.00323,0.00289,0.00286,,,,,,,,0.00453,0.00369,0.00347,,,,,,,,0.00322,0.00275,0.00267,,,,,,,,1.02684,1.46443,1.85435,,,,,,,,0.96512,1.40207,1.79102,,,,,,,,1.03299,1.56952,2.04319,,,,,,,,1.14793,1.74384,2.2769,,,,,,,,0.78632,1.31166,1.74882,,,,,,,,0.85167,1.40328,1.87092,,,,,,,,0.81177,1.34969,1.79804,,,,,,,,0.92041,1.44362,1.88391,,,,,,,,0.77274,1.22846,1.59394,,,,,,,,202.30794,204.40446,207.58357,,,,,,,,203.88772,205.84183,208.81287,,,,,,,,207.31737,209.35159,212.44393,,,,,,,,202.56569,204.69324,207.93131,,,,,,,,206.85683,208.28076,210.47469,,,,,,,,203.80767,205.4279,207.91246,,,,,,,,204.84254,206.21834,208.34554,,,,,,,,205.38707,207.04092,209.57195,,,,,,,,201.17118,202.6359,204.86889,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04222,0.06042,0.08174,,,,,,,,0.04032,0.05806,0.07896,,,,,,,,0.04061,0.0616,0.08353,,,,,,,,0.04422,0.0679,0.09209,,,,,,,,0.03114,0.05081,0.07079,,,,,,,,0.03518,0.05629,0.07779,,,,,,,,0.03196,0.05165,0.07208,,,,,,,,0.0384,0.0597,0.08192,,,,,,,,0.03268,0.0509,0.07037,,,,,,,,0.00105,0.0015,0.00221,,,,,,,,0.00102,0.00144,0.00212,,,,,,,,0.00104,0.00147,0.00217,,,,,,,,0.00108,0.00154,0.00228,,,,,,,,0.00092,0.00128,0.00185,,,,,,,,0.00093,0.00131,0.0019,,,,,,,,0.00087,0.00121,0.00174,,,,,,,,0.00095,0.00133,0.00194,,,,,,,,0.00084,0.00116,0.00167,,,,,,,,0.03065,0.03164,0.03327,,,,,,,,0.03153,0.03247,0.03399,,,,,,,,0.03409,0.03506,0.03664,,,,,,,,0.0291,0.03014,0.03184,,,,,,,,0.0333,0.03408,0.03531,,,,,,,,0.0308,0.03161,0.03291,,,,,,,,0.03059,0.03132,0.03247,,,,,,,,0.03213,0.03296,0.03429,,,,,,,,0.03142,0.03211,0.03319,,,,,,,,0.00577,0.00665,0.00808,,,,,,,,0.00581,0.00664,0.00799,,,,,,,,0.00618,0.00703,0.00843,,,,,,,,0.00563,0.00654,0.00805,,,,,,,,0.00583,0.00651,0.0076,,,,,,,,0.00555,0.00626,0.00741,,,,,,,,0.0054,0.00603,0.00705,,,,,,,,0.00575,0.00648,0.00766,,,,,,,,0.00545,0.00605,0.00701,,,,,,,,0.00134,0.00136,0.00138,,,,,,,,0.00135,0.00137,0.00139,,,,,,,,0.00138,0.00139,0.00141,,,,,,,,0.00135,0.00136,0.00138,,,,,,,,0.00137,0.00138,0.0014,,,,,,,,0.00135,0.00136,0.00138,,,,,,,,0.00136,0.00137,0.00138,,,,,,,,0.00134,0.00135,0.00137,,,,,,,,0.00123,0.00124,0.00126,,,,,,,,0.09285,0.11678,0.17267,,,,,,,,0.0828,0.10406,0.15722,,,,,,,,0.08891,0.11669,0.17697,,,,,,,,0.10163,0.13385,0.19969,,,,,,,,0.05827,0.08215,0.13904,,,,,,,,0.06478,0.09075,0.14968,,,,,,,,0.05647,0.07776,0.13153,,,,,,,,0.07486,0.10179,0.16235,,,,,,,,0.05495,0.07587,0.12844 +Full size car,E10,2045,,,,,,,,,0.00053,0.0008,,,,,,,,,0.00049,0.00073,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00057,0.00085,,,,,,,,,0.00038,0.00055,,,,,,,,,0.0004,0.00059,,,,,,,,,0.00035,0.0005,,,,,,,,,0.00042,0.00062,,,,,,,,,0.00033,0.00047,,,,,,,,,0.00662,0.00491,,,,,,,,,0.00573,0.00432,,,,,,,,,0.00615,0.00481,,,,,,,,,0.0072,0.00561,,,,,,,,,0.00334,0.00297,,,,,,,,,0.00395,0.00342,,,,,,,,,0.00323,0.00289,,,,,,,,,0.00452,0.00369,,,,,,,,,0.00321,0.00275,,,,,,,,,1.02626,1.46429,,,,,,,,,0.96486,1.40237,,,,,,,,,1.03262,1.57,,,,,,,,,1.14778,1.74502,,,,,,,,,0.78701,1.31344,,,,,,,,,0.85217,1.4049,,,,,,,,,0.81249,1.35156,,,,,,,,,0.92061,1.44458,,,,,,,,,0.77272,1.22868,,,,,,,,,202.29977,204.40428,,,,,,,,,203.88009,205.84189,,,,,,,,,207.30962,209.35158,,,,,,,,,202.5573,204.69315,,,,,,,,,206.85099,208.28066,,,,,,,,,203.80131,205.42781,,,,,,,,,204.83695,206.2183,,,,,,,,,205.38059,207.04076,,,,,,,,,201.16547,202.63575,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04225,0.06049,,,,,,,,,0.04035,0.05814,,,,,,,,,0.04064,0.06169,,,,,,,,,0.04427,0.06801,,,,,,,,,0.03116,0.05086,,,,,,,,,0.03521,0.05636,,,,,,,,,0.03199,0.05173,,,,,,,,,0.03842,0.05975,,,,,,,,,0.03268,0.05091,,,,,,,,,0.00106,0.0015,,,,,,,,,0.00102,0.00145,,,,,,,,,0.00104,0.00148,,,,,,,,,0.00108,0.00154,,,,,,,,,0.00092,0.00128,,,,,,,,,0.00094,0.00131,,,,,,,,,0.00087,0.00121,,,,,,,,,0.00095,0.00133,,,,,,,,,0.00084,0.00116,,,,,,,,,0.03066,0.03165,,,,,,,,,0.03154,0.03247,,,,,,,,,0.0341,0.03507,,,,,,,,,0.02911,0.03015,,,,,,,,,0.03331,0.03408,,,,,,,,,0.03081,0.03162,,,,,,,,,0.0306,0.03132,,,,,,,,,0.03213,0.03296,,,,,,,,,0.03142,0.03211,,,,,,,,,0.00578,0.00665,,,,,,,,,0.00582,0.00665,,,,,,,,,0.00618,0.00704,,,,,,,,,0.00563,0.00655,,,,,,,,,0.00583,0.00651,,,,,,,,,0.00555,0.00627,,,,,,,,,0.0054,0.00604,,,,,,,,,0.00575,0.00649,,,,,,,,,0.00545,0.00606,,,,,,,,,0.00134,0.00136,,,,,,,,,0.00135,0.00137,,,,,,,,,0.00138,0.00139,,,,,,,,,0.00135,0.00136,,,,,,,,,0.00137,0.00138,,,,,,,,,0.00135,0.00136,,,,,,,,,0.00136,0.00137,,,,,,,,,0.00134,0.00135,,,,,,,,,0.00123,0.00124,,,,,,,,,0.09278,0.11675,,,,,,,,,0.08275,0.10404,,,,,,,,,0.08883,0.11666,,,,,,,,,0.10159,0.1339,,,,,,,,,0.05827,0.08223,,,,,,,,,0.06477,0.09081,,,,,,,,,0.05649,0.07787,,,,,,,,,0.07507,0.1019,,,,,,,,,0.05493,0.07588 +Full size car,E10,2050,,,,,,,,,,0.00054,,,,,,,,,,0.0005,,,,,,,,,,0.00052,,,,,,,,,,0.00057,,,,,,,,,,0.00038,,,,,,,,,,0.00041,,,,,,,,,,0.00035,,,,,,,,,,0.00042,,,,,,,,,,0.00033,,,,,,,,,,0.00661,,,,,,,,,,0.00573,,,,,,,,,,0.00614,,,,,,,,,,0.00719,,,,,,,,,,0.00334,,,,,,,,,,0.00395,,,,,,,,,,0.00323,,,,,,,,,,0.00452,,,,,,,,,,0.00321,,,,,,,,,,1.0259,,,,,,,,,,0.96483,,,,,,,,,,1.03248,,,,,,,,,,1.14795,,,,,,,,,,0.78793,,,,,,,,,,0.85293,,,,,,,,,,0.81346,,,,,,,,,,0.92104,,,,,,,,,,0.77284,,,,,,,,,,202.29983,,,,,,,,,,203.88015,,,,,,,,,,207.3096,,,,,,,,,,202.55725,,,,,,,,,,206.85097,,,,,,,,,,203.80119,,,,,,,,,,204.83681,,,,,,,,,,205.3805,,,,,,,,,,201.16542,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04231,,,,,,,,,,0.0404,,,,,,,,,,0.0407,,,,,,,,,,0.04435,,,,,,,,,,0.0312,,,,,,,,,,0.03525,,,,,,,,,,0.03204,,,,,,,,,,0.03846,,,,,,,,,,0.03269,,,,,,,,,,0.00106,,,,,,,,,,0.00102,,,,,,,,,,0.00104,,,,,,,,,,0.00108,,,,,,,,,,0.00092,,,,,,,,,,0.00094,,,,,,,,,,0.00087,,,,,,,,,,0.00095,,,,,,,,,,0.00084,,,,,,,,,,0.03066,,,,,,,,,,0.03154,,,,,,,,,,0.03411,,,,,,,,,,0.02912,,,,,,,,,,0.03331,,,,,,,,,,0.03081,,,,,,,,,,0.0306,,,,,,,,,,0.03213,,,,,,,,,,0.03143,,,,,,,,,,0.00578,,,,,,,,,,0.00582,,,,,,,,,,0.00619,,,,,,,,,,0.00564,,,,,,,,,,0.00583,,,,,,,,,,0.00556,,,,,,,,,,0.0054,,,,,,,,,,0.00575,,,,,,,,,,0.00545,,,,,,,,,,0.00134,,,,,,,,,,0.00135,,,,,,,,,,0.00138,,,,,,,,,,0.00135,,,,,,,,,,0.00137,,,,,,,,,,0.00135,,,,,,,,,,0.00136,,,,,,,,,,0.00134,,,,,,,,,,0.00123,,,,,,,,,,0.09275,,,,,,,,,,0.08273,,,,,,,,,,0.08878,,,,,,,,,,0.1016,,,,,,,,,,0.05831,,,,,,,,,,0.06479,,,,,,,,,,0.05655,,,,,,,,,,0.07515,,,,,,,,,,0.05494 +Full size car,E15,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07526,,,,,,,,,,0.06473,,,,,,,,,,0.0837,,,,,,,,,,0.08637,,,,,,,,,,0.06943,,,,,,,,,,0.07719,,,,,,,,,,0.07147,,,,,,,,,,0.06789,,,,,,,,,,0.05643,,,,,,,,,,38.75413,,,,,,,,,,34.5872,,,,,,,,,,43.81328,,,,,,,,,,45.50875,,,,,,,,,,36.63041,,,,,,,,,,41.00509,,,,,,,,,,38.06441,,,,,,,,,,36.83159,,,,,,,,,,30.10628,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,3.10269,,,,,,,,,,2.94127,,,,,,,,,,3.23061,,,,,,,,,,3.41282,,,,,,,,,,3.17568,,,,,,,,,,3.32336,,,,,,,,,,3.17346,,,,,,,,,,3.35141,,,,,,,,,,2.80875,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.02157,,,,,,,,,,0.02461,,,,,,,,,,0.03502,,,,,,,,,,0.03198,,,,,,,,,,0.02845,,,,,,,,,,0.03135,,,,,,,,,,0.02839,,,,,,,,,,0.0281,,,,,,,,,,0.01302,,,,,,,,,,4.79581,,,,,,,,,,4.35786,,,,,,,,,,5.22498,,,,,,,,,,5.4577,,,,,,,,,,4.89405,,,,,,,,,,5.18592,,,,,,,,,,5.03252,,,,,,,,,,4.91977,,,,,,,,,,4.14616,,,,,,,,, +Full size car,E15,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.04157,0.04885,,,,,,,,,0.03883,0.04354,,,,,,,,,0.04812,0.05248,,,,,,,,,0.04994,0.05738,,,,,,,,,0.04014,0.04624,,,,,,,,,0.04374,0.05028,,,,,,,,,0.03999,0.04578,,,,,,,,,0.04014,0.0453,,,,,,,,,0.03127,0.03414,,,,,,,,,14.18519,19.53846,,,,,,,,,13.58838,18.00916,,,,,,,,,16.77905,22.19802,,,,,,,,,17.72937,23.58247,,,,,,,,,14.27817,18.85506,,,,,,,,,15.65044,20.87293,,,,,,,,,14.62253,19.29152,,,,,,,,,14.51468,19.75992,,,,,,,,,11.14031,15.25823,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.33238,2.8498,,,,,,,,,2.2648,2.69489,,,,,,,,,2.47624,2.93329,,,,,,,,,2.59105,3.16899,,,,,,,,,2.4168,2.96123,,,,,,,,,2.53099,3.09153,,,,,,,,,2.4308,2.95262,,,,,,,,,2.58106,3.12099,,,,,,,,,2.16696,2.58118,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.01765,0.00895,,,,,,,,,0.02024,0.00908,,,,,,,,,0.02883,0.00943,,,,,,,,,0.02625,0.01575,,,,,,,,,0.02372,0.00928,,,,,,,,,0.02602,0.0092,,,,,,,,,0.0237,0.01255,,,,,,,,,0.02326,0.01431,,,,,,,,,0.01078,0.00516,,,,,,,,,2.06676,2.98575,,,,,,,,,2.01681,2.84631,,,,,,,,,2.34924,3.21213,,,,,,,,,2.45703,3.44696,,,,,,,,,2.21926,3.25783,,,,,,,,,2.29305,3.33907,,,,,,,,,2.21968,3.23669,,,,,,,,,2.27834,3.26574,,,,,,,,,1.8306,2.64667,,,,,,,, +Full size car,E15,2000,0.00445,0.00726,0.02112,,,,,,,,0.00384,0.00625,0.01811,,,,,,,,0.00431,0.00703,0.02047,,,,,,,,0.00487,0.00798,0.0235,,,,,,,,0.00215,0.00348,0.00992,,,,,,,,0.00257,0.00418,0.01261,,,,,,,,0.00206,0.00332,0.00945,,,,,,,,0.00296,0.00482,0.01389,,,,,,,,0.00204,0.00328,0.00922,,,,,,,,0.01896,0.02052,0.03298,,,,,,,,0.01786,0.01965,0.02964,,,,,,,,0.02274,0.02329,0.03673,,,,,,,,0.02391,0.02533,0.03874,,,,,,,,0.01699,0.01984,0.03145,,,,,,,,0.01893,0.02127,0.0339,,,,,,,,0.01686,0.01957,0.0298,,,,,,,,0.01796,0.01988,0.02999,,,,,,,,0.01361,0.01566,0.02266,,,,,,,,6.73755,9.1045,13.90876,,,,,,,,6.48024,8.85739,13.04968,,,,,,,,8.08269,10.86183,16.32129,,,,,,,,8.65746,11.5488,16.92516,,,,,,,,5.99268,8.7064,13.29109,,,,,,,,6.73541,9.60154,14.83085,,,,,,,,6.081,8.8791,13.10477,,,,,,,,6.51433,9.3538,13.75817,,,,,,,,4.87913,7.3873,10.67034,,,,,,,,376.9009,380.04536,390.17789,,,,,,,,380.22919,383.15664,392.61867,,,,,,,,386.72196,389.79259,399.67214,,,,,,,,377.0437,380.2069,390.39124,,,,,,,,387.0503,389.14988,396.10595,,,,,,,,380.64772,383.06314,392.40551,,,,,,,,383.04132,385.05237,391.69651,,,,,,,,383.70018,386.15671,394.18572,,,,,,,,376.32404,378.50339,385.72456,,,,,,,,0.02441,0.02715,0.04129,,,,,,,,0.02451,0.02724,0.04146,,,,,,,,0.02468,0.0274,0.04175,,,,,,,,0.02464,0.02744,0.04169,,,,,,,,0.02471,0.02743,0.04179,,,,,,,,0.02479,0.02758,0.04196,,,,,,,,0.02454,0.0273,0.04153,,,,,,,,0.02468,0.02742,0.04174,,,,,,,,0.02429,0.02699,0.04109,,,,,,,,0.05939,0.07773,0.08246,,,,,,,,0.05953,0.07791,0.08264,,,,,,,,0.05969,0.07812,0.08283,,,,,,,,0.05898,0.07719,0.08193,,,,,,,,0.0596,0.078,0.08271,,,,,,,,0.05918,0.07746,0.0822,,,,,,,,0.05937,0.07771,0.08244,,,,,,,,0.0596,0.07801,0.08273,,,,,,,,0.05973,0.07818,0.0829,,,,,,,,1.12182,1.52662,2.27744,,,,,,,,1.09871,1.51549,2.22205,,,,,,,,1.28081,1.67959,2.46843,,,,,,,,1.33146,1.78823,2.57182,,,,,,,,1.22134,1.65953,2.46172,,,,,,,,1.27841,1.71355,2.5332,,,,,,,,1.24098,1.68556,2.38681,,,,,,,,1.29826,1.75093,2.51422,,,,,,,,1.08526,1.48759,2.08759,,,,,,,,0.00945,0.01479,0.03884,,,,,,,,0.00832,0.01301,0.03403,,,,,,,,0.00912,0.01427,0.03752,,,,,,,,0.00993,0.01558,0.0417,,,,,,,,0.00504,0.00782,0.02022,,,,,,,,0.0058,0.00903,0.02461,,,,,,,,0.0049,0.00761,0.01961,,,,,,,,0.00661,0.0103,0.02687,,,,,,,,0.00496,0.0077,0.01951,,,,,,,,0.04876,0.06029,0.1139,,,,,,,,0.04727,0.05729,0.10393,,,,,,,,0.0517,0.06267,0.11454,,,,,,,,0.04848,0.06079,0.1193,,,,,,,,0.04212,0.04796,0.07498,,,,,,,,0.04131,0.0481,0.08248,,,,,,,,0.03922,0.04492,0.07092,,,,,,,,0.04433,0.05223,0.08863,,,,,,,,0.04009,0.04584,0.0713,,,,,,,,0.02179,0.03199,0.07941,,,,,,,,0.01973,0.0286,0.06985,,,,,,,,0.02175,0.03146,0.07734,,,,,,,,0.02276,0.03366,0.08542,,,,,,,,0.01363,0.01879,0.04269,,,,,,,,0.01484,0.02085,0.05117,,,,,,,,0.01302,0.01807,0.04107,,,,,,,,0.01654,0.02353,0.05573,,,,,,,,0.01312,0.0182,0.04073,,,,,,,,0.01757,0.00859,0.00794,,,,,,,,0.02018,0.00874,0.00799,,,,,,,,0.02876,0.00906,0.00813,,,,,,,,0.02616,0.01514,0.00794,,,,,,,,0.02375,0.009,0.00806,,,,,,,,0.02603,0.0089,0.00798,,,,,,,,0.02376,0.01218,0.00797,,,,,,,,0.02324,0.01384,0.00717,,,,,,,,0.01077,0.00499,0.00368,,,,,,,,0.82153,1.20412,2.3112,,,,,,,,0.78397,1.16464,2.19027,,,,,,,,0.94086,1.32841,2.51778,,,,,,,,1.01599,1.45475,2.67434,,,,,,,,0.73124,1.17738,2.42422,,,,,,,,0.79831,1.24329,2.59745,,,,,,,,0.72841,1.16013,2.35553,,,,,,,,0.82151,1.24109,2.44274,,,,,,,,0.60479,0.96472,1.95835,,,,,,, +Full size car,E15,2005,0.00166,0.00246,0.00399,0.0125,,,,,,,0.0015,0.00213,0.00345,0.01079,,,,,,,0.00185,0.00191,0.00306,0.01205,,,,,,,0.00199,0.0026,0.00423,0.01381,,,,,,,0.00097,0.00138,0.00223,0.00615,,,,,,,0.00116,0.00144,0.00234,0.00733,,,,,,,0.00092,0.00125,0.00201,0.00571,,,,,,,0.00126,0.00159,0.00255,0.00829,,,,,,,0.00078,0.00104,0.00166,0.00545,,,,,,,0.01743,0.01282,0.01269,0.0199,,,,,,,0.01583,0.01143,0.01179,0.01823,,,,,,,0.01816,0.01244,0.01283,0.02203,,,,,,,0.01939,0.01568,0.01476,0.02377,,,,,,,0.01053,0.00886,0.00994,0.01706,,,,,,,0.01252,0.00995,0.01105,0.01886,,,,,,,0.01021,0.00938,0.00978,0.01629,,,,,,,0.01339,0.01094,0.01056,0.01783,,,,,,,0.00803,0.00669,0.00731,0.01364,,,,,,,3.20315,4.27438,5.45316,8.8989,,,,,,,3.07383,4.15658,5.48416,8.58421,,,,,,,3.52881,5.04003,6.71632,10.34714,,,,,,,3.75274,5.70751,6.82315,11.14126,,,,,,,2.86973,4.25866,5.8533,8.85436,,,,,,,3.09101,4.59129,6.40035,9.4972,,,,,,,2.93115,4.68771,5.89803,8.88157,,,,,,,3.15922,5.0677,6.0405,9.31593,,,,,,,2.24492,3.94227,5.21926,7.74447,,,,,,,383.61346,385.3866,389.77241,396.4698,,,,,,,387.18589,388.82745,392.91381,398.96071,,,,,,,393.47964,395.21184,399.4659,405.91614,,,,,,,383.8817,385.64041,390.08954,396.90328,,,,,,,394.88007,396.01386,398.98689,402.61405,,,,,,,388.20564,389.53393,394.37923,397.4292,,,,,,,391.12159,392.19247,395.06349,398.41881,,,,,,,391.18938,392.54087,395.99653,400.65998,,,,,,,383.91948,385.12982,388.19211,392.00294,,,,,,,0.00715,0.00771,0.00905,0.02189,,,,,,,0.00716,0.00772,0.00907,0.02194,,,,,,,0.00717,0.00773,0.00906,0.02199,,,,,,,0.00725,0.00782,0.0092,0.02219,,,,,,,0.00719,0.00775,0.00909,0.02204,,,,,,,0.00726,0.00783,0.0092,0.02225,,,,,,,0.00718,0.00774,0.0091,0.022,,,,,,,0.0072,0.00776,0.00911,0.02207,,,,,,,0.00708,0.00763,0.00896,0.02171,,,,,,,0.02398,0.0273,0.03361,0.04766,,,,,,,0.02404,0.02736,0.03369,0.04776,,,,,,,0.0241,0.02744,0.03378,0.04788,,,,,,,0.02381,0.02711,0.03338,0.04734,,,,,,,0.02407,0.0274,0.03373,0.04781,,,,,,,0.0239,0.02721,0.0335,0.0475,,,,,,,0.02397,0.02729,0.0336,0.04764,,,,,,,0.02407,0.0274,0.03373,0.04782,,,,,,,0.02412,0.02746,0.03381,0.04792,,,,,,,0.28948,0.42599,0.56162,1.06758,,,,,,,0.28544,0.41558,0.56473,1.05292,,,,,,,0.32639,0.46735,0.62275,1.19357,,,,,,,0.32526,0.54412,0.65738,1.26785,,,,,,,0.29111,0.44668,0.60414,1.17825,,,,,,,0.3097,0.46669,0.62655,1.21817,,,,,,,0.29398,0.47915,0.59883,1.14933,,,,,,,0.31789,0.51205,0.6157,1.21244,,,,,,,0.22993,0.33938,0.45352,1.02955,,,,,,,0.0037,0.00533,0.00799,0.02217,,,,,,,0.00343,0.00479,0.00717,0.01965,,,,,,,0.00402,0.0045,0.00669,0.02144,,,,,,,0.00416,0.00549,0.00825,0.02363,,,,,,,0.00241,0.0034,0.00513,0.01238,,,,,,,0.00274,0.00351,0.00531,0.01412,,,,,,,0.00231,0.00316,0.00475,0.01177,,,,,,,0.00295,0.0038,0.00569,0.01572,,,,,,,0.00208,0.0028,0.00418,0.0115,,,,,,,0.03629,0.03973,0.04565,0.07741,,,,,,,0.03666,0.03949,0.04474,0.07254,,,,,,,0.04053,0.04132,0.04611,0.07925,,,,,,,0.03579,0.03858,0.0447,0.07945,,,,,,,0.03646,0.03847,0.04218,0.05803,,,,,,,0.03465,0.03617,0.04018,0.05951,,,,,,,0.03365,0.03537,0.03875,0.054,,,,,,,0.03639,0.03812,0.04217,0.06438,,,,,,,0.034,0.03544,0.03835,0.05422,,,,,,,0.01076,0.01381,0.01904,0.04713,,,,,,,0.01034,0.01285,0.01749,0.04209,,,,,,,0.01187,0.01257,0.01681,0.04612,,,,,,,0.01154,0.01401,0.01943,0.05017,,,,,,,0.00862,0.01039,0.01368,0.02769,,,,,,,0.00895,0.01029,0.01375,0.03094,,,,,,,0.0081,0.00962,0.01261,0.0261,,,,,,,0.00951,0.01105,0.01463,0.03428,,,,,,,0.00773,0.009,0.01158,0.02561,,,,,,,0.01788,0.00871,0.00793,0.00269,,,,,,,0.02055,0.00886,0.00799,0.0027,,,,,,,0.02927,0.00919,0.00812,0.00275,,,,,,,0.02664,0.01537,0.00793,0.00269,,,,,,,0.02423,0.00916,0.00812,0.00273,,,,,,,0.02654,0.00905,0.00802,0.00269,,,,,,,0.02426,0.0124,0.00804,0.0027,,,,,,,0.02368,0.01407,0.0072,0.00268,,,,,,,0.01098,0.00507,0.0037,0.00246,,,,,,,0.38481,0.4233,0.5894,1.41928,,,,,,,0.35068,0.38456,0.54923,1.3524,,,,,,,0.40083,0.4117,0.59052,1.54142,,,,,,,0.43041,0.50916,0.67405,1.64865,,,,,,,0.23917,0.30446,0.47679,1.38813,,,,,,,0.27972,0.3348,0.53473,1.45687,,,,,,,0.23017,0.31302,0.46391,1.34765,,,,,,,0.32144,0.39386,0.5478,1.47528,,,,,,,0.19301,0.25887,0.40277,1.19619,,,,,, +Full size car,E15,2010,,0.0012,0.00195,0.0032,0.00811,,,,,,,0.00106,0.00171,0.00284,0.00709,,,,,,,0.00092,0.00149,0.00306,0.00777,,,,,,,0.00127,0.00208,0.00349,0.00892,,,,,,,0.00076,0.00121,0.00189,0.00435,,,,,,,0.00077,0.00123,0.00212,0.00503,,,,,,,0.00069,0.0011,0.0017,0.00394,,,,,,,0.00082,0.00131,0.00227,0.00552,,,,,,,0.00057,0.0009,0.00156,0.00365,,,,,,,0.01447,0.01215,0.01036,0.01408,,,,,,,0.01255,0.01108,0.00952,0.01301,,,,,,,0.01321,0.01228,0.01076,0.01508,,,,,,,0.01707,0.01446,0.01237,0.01696,,,,,,,0.00888,0.00966,0.00842,0.01167,,,,,,,0.00968,0.01048,0.0091,0.01279,,,,,,,0.00924,0.00952,0.0083,0.01136,,,,,,,0.0113,0.0101,0.00912,0.01256,,,,,,,0.00714,0.00719,0.00765,0.01012,,,,,,,2.42027,3.71737,4.97826,6.86119,,,,,,,2.29124,3.68869,4.91155,6.72949,,,,,,,2.7153,4.43643,5.63382,7.92832,,,,,,,3.02006,4.50171,6.18223,8.64025,,,,,,,2.02191,3.72081,5.136,7.01864,,,,,,,2.2252,4.09775,5.38621,7.45751,,,,,,,2.21663,3.76745,5.23763,7.1217,,,,,,,2.56824,3.94275,5.38457,7.38735,,,,,,,1.95449,3.39834,4.69674,6.32184,,,,,,,378.31447,381.03636,385.66488,394.79629,,,,,,,381.89848,384.40947,388.70422,397.26495,,,,,,,388.11129,390.73102,395.20838,404.12884,,,,,,,378.54672,381.29637,386.00201,395.29109,,,,,,,389.67976,391.41272,394.46659,400.88563,,,,,,,383.02943,386.45795,388.56578,395.77439,,,,,,,385.97086,387.63077,390.57628,396.79116,,,,,,,385.95346,388.02362,391.61544,398.96077,,,,,,,378.83874,380.66413,383.81442,390.31801,,,,,,,0.00688,0.00778,0.0093,0.01417,,,,,,,0.00689,0.0078,0.00931,0.01419,,,,,,,0.0069,0.00781,0.00931,0.01417,,,,,,,0.00697,0.0079,0.00945,0.01441,,,,,,,0.00692,0.00783,0.00934,0.01422,,,,,,,0.00699,0.00791,0.00945,0.01441,,,,,,,0.00691,0.00782,0.00935,0.01424,,,,,,,0.00693,0.00784,0.00936,0.01426,,,,,,,0.00682,0.00771,0.00921,0.01402,,,,,,,0.01689,0.01977,0.02529,0.03052,,,,,,,0.01693,0.01981,0.02535,0.03059,,,,,,,0.01698,0.01986,0.02542,0.03067,,,,,,,0.01678,0.01963,0.02511,0.03031,,,,,,,0.01695,0.01983,0.02538,0.03062,,,,,,,0.01684,0.0197,0.0252,0.03041,,,,,,,0.01689,0.01976,0.02528,0.03051,,,,,,,0.01695,0.01984,0.02538,0.03063,,,,,,,0.01699,0.01988,0.02543,0.03069,,,,,,,0.11676,0.19201,0.20321,0.46294,,,,,,,0.11142,0.19137,0.20106,0.45944,,,,,,,0.11635,0.21027,0.21753,0.51963,,,,,,,0.13452,0.22509,0.23445,0.5597,,,,,,,0.1047,0.19822,0.20369,0.50343,,,,,,,0.11076,0.20876,0.21438,0.52516,,,,,,,0.11298,0.19788,0.20439,0.4961,,,,,,,0.12612,0.20641,0.22199,0.52609,,,,,,,0.08473,0.14966,0.19659,0.45327,,,,,,,0.00216,0.00336,0.00522,0.01305,,,,,,,0.00203,0.00313,0.0049,0.01187,,,,,,,0.00186,0.00285,0.0051,0.01267,,,,,,,0.00221,0.00344,0.00548,0.01384,,,,,,,0.00179,0.00271,0.00403,0.00854,,,,,,,0.00175,0.00265,0.0042,0.00929,,,,,,,0.00168,0.00254,0.00377,0.00798,,,,,,,0.00177,0.0027,0.00433,0.00993,,,,,,,0.00148,0.00223,0.00357,0.00762,,,,,,,0.03316,0.03588,0.04016,0.05793,,,,,,,0.03378,0.03625,0.04025,0.05596,,,,,,,0.03588,0.03809,0.04331,0.06046,,,,,,,0.03172,0.03452,0.03924,0.05837,,,,,,,0.03515,0.03713,0.03996,0.04986,,,,,,,0.03254,0.03461,0.03792,0.04921,,,,,,,0.03232,0.03414,0.03677,0.04596,,,,,,,0.03392,0.03592,0.03956,0.05202,,,,,,,0.03276,0.03433,0.0372,0.04598,,,,,,,0.00799,0.01039,0.01418,0.0299,,,,,,,0.0078,0.00999,0.01353,0.02742,,,,,,,0.00776,0.00972,0.01433,0.0295,,,,,,,0.00794,0.01042,0.01459,0.03152,,,,,,,0.00746,0.00921,0.01172,0.02048,,,,,,,0.00709,0.00882,0.01184,0.02183,,,,,,,0.00693,0.00854,0.01086,0.01899,,,,,,,0.00733,0.00911,0.01232,0.02334,,,,,,,0.00663,0.00802,0.01056,0.01833,,,,,,,0.00855,0.00775,0.00261,0.00268,,,,,,,0.00871,0.00782,0.00264,0.00269,,,,,,,0.00903,0.00795,0.00268,0.00274,,,,,,,0.01509,0.00776,0.00262,0.00268,,,,,,,0.00901,0.00796,0.00267,0.00272,,,,,,,0.0089,0.00786,0.00263,0.00268,,,,,,,0.01221,0.00788,0.00265,0.00269,,,,,,,0.01384,0.00705,0.00261,0.00266,,,,,,,0.00498,0.00362,0.0024,0.00245,,,,,,,0.18422,0.25677,0.37707,0.91172,,,,,,,0.16324,0.23458,0.35204,0.87297,,,,,,,0.1729,0.25675,0.38993,0.96899,,,,,,,0.217,0.30101,0.44142,1.05096,,,,,,,0.12597,0.20948,0.33708,0.87854,,,,,,,0.13398,0.23039,0.35215,0.91497,,,,,,,0.12837,0.20468,0.32982,0.85637,,,,,,,0.16015,0.2357,0.37404,0.94232,,,,,,,0.11219,0.17892,0.31274,0.79823,,,,, +Full size car,E15,2015,,,0.00099,0.00155,0.00265,0.00554,,,,,,,0.0009,0.00142,0.00242,0.00497,,,,,,,0.00079,0.0015,0.00256,0.00532,,,,,,,0.00103,0.00166,0.00283,0.00598,,,,,,,0.0007,0.00105,0.00175,0.0034,,,,,,,0.0007,0.00115,0.00193,0.0038,,,,,,,0.00064,0.00096,0.0016,0.00307,,,,,,,0.00072,0.00119,0.002,0.00401,,,,,,,0.00053,0.00089,0.00147,0.00281,,,,,,,0.01117,0.00842,0.00853,0.01052,,,,,,,0.01026,0.00784,0.00809,0.00993,,,,,,,0.01038,0.00875,0.00907,0.01124,,,,,,,0.01194,0.00987,0.01019,0.01264,,,,,,,0.00793,0.00705,0.00779,0.00944,,,,,,,0.00857,0.00759,0.0083,0.01014,,,,,,,0.00789,0.00696,0.00773,0.00934,,,,,,,0.00867,0.00759,0.0081,0.0099,,,,,,,0.0063,0.0065,0.00708,0.00848,,,,,,,1.804,3.20148,4.34362,5.50212,,,,,,,1.79132,3.1938,4.37315,5.50632,,,,,,,2.00869,3.56752,5.00436,6.36528,,,,,,,2.02534,3.87885,5.45359,6.92326,,,,,,,1.67314,3.40503,4.85328,6.03762,,,,,,,1.82634,3.51951,5.02709,6.30418,,,,,,,1.71534,3.48836,4.96074,6.17056,,,,,,,1.82008,3.53642,4.94764,6.20982,,,,,,,1.60911,3.18281,4.41711,5.50043,,,,,,,338.80339,341.30043,343.85056,354.80234,,,,,,,341.93464,344.20868,346.45659,356.97999,,,,,,,347.52458,349.90756,352.29061,363.14818,,,,,,,339.04625,341.58311,344.20128,355.27976,,,,,,,348.62633,350.07938,351.23012,360.09517,,,,,,,344.04239,344.55172,346.12705,355.57142,,,,,,,345.29903,346.68302,347.75623,356.43062,,,,,,,345.41102,347.22009,348.84856,358.42916,,,,,,,338.93875,340.48354,341.7538,350.60517,,,,,,,0.00442,0.00499,0.00575,0.00807,,,,,,,0.00445,0.00501,0.00577,0.00809,,,,,,,0.00449,0.00505,0.00581,0.00811,,,,,,,0.00445,0.00503,0.00581,0.00818,,,,,,,0.0045,0.00506,0.00582,0.00812,,,,,,,0.0045,0.00507,0.00584,0.0082,,,,,,,0.00445,0.00502,0.00578,0.00811,,,,,,,0.00448,0.00505,0.00581,0.00813,,,,,,,0.00441,0.00497,0.00572,0.008,,,,,,,0.01689,0.01959,0.02529,0.02573,,,,,,,0.01693,0.01963,0.02535,0.02579,,,,,,,0.01698,0.01969,0.02542,0.02586,,,,,,,0.01678,0.01945,0.02511,0.02555,,,,,,,0.01695,0.01966,0.02538,0.02582,,,,,,,0.01684,0.01952,0.0252,0.02564,,,,,,,0.01689,0.01958,0.02528,0.02572,,,,,,,0.01695,0.01966,0.02538,0.02582,,,,,,,0.01699,0.0197,0.02543,0.02588,,,,,,,0.09082,0.11896,0.17492,0.25037,,,,,,,0.08987,0.11691,0.17262,0.24769,,,,,,,0.09054,0.12679,0.1862,0.2717,,,,,,,0.0957,0.13708,0.20138,0.2946,,,,,,,0.08022,0.11522,0.17258,0.25515,,,,,,,0.08595,0.12245,0.18255,0.26917,,,,,,,0.08166,0.11567,0.17357,0.25509,,,,,,,0.08822,0.12782,0.18932,0.27568,,,,,,,0.06505,0.11227,0.16707,0.24159,,,,,,,0.00194,0.00291,0.0047,0.00894,,,,,,,0.00186,0.0028,0.00449,0.0084,,,,,,,0.0017,0.00287,0.00462,0.00874,,,,,,,0.00196,0.00299,0.00485,0.00933,,,,,,,0.0017,0.00247,0.0039,0.00687,,,,,,,0.00165,0.00253,0.00402,0.00721,,,,,,,0.00161,0.00233,0.00367,0.00643,,,,,,,0.00165,0.00256,0.00408,0.00742,,,,,,,0.00142,0.00221,0.00348,0.00608,,,,,,,0.03259,0.03473,0.03876,0.04859,,,,,,,0.03334,0.0354,0.03919,0.04815,,,,,,,0.03549,0.0381,0.04204,0.05155,,,,,,,0.03105,0.03335,0.03757,0.04805,,,,,,,0.03495,0.03655,0.03962,0.04617,,,,,,,0.03243,0.03418,0.03742,0.04455,,,,,,,0.03214,0.03364,0.0365,0.04253,,,,,,,0.03361,0.03557,0.03889,0.04638,,,,,,,0.03262,0.03428,0.03697,0.04261,,,,,,,0.00749,0.00938,0.01295,0.02164,,,,,,,0.00741,0.00923,0.01258,0.02051,,,,,,,0.00741,0.00972,0.01321,0.02162,,,,,,,0.00734,0.00938,0.01312,0.02239,,,,,,,0.00728,0.00869,0.01141,0.0172,,,,,,,0.00689,0.00854,0.0114,0.01771,,,,,,,0.00677,0.00809,0.01062,0.01595,,,,,,,0.00706,0.00879,0.01173,0.01835,,,,,,,0.0065,0.00797,0.01035,0.01534,,,,,,,0.00689,0.00231,0.00233,0.00241,,,,,,,0.00695,0.00233,0.00235,0.00242,,,,,,,0.00707,0.00237,0.00239,0.00246,,,,,,,0.0069,0.00232,0.00233,0.00241,,,,,,,0.00709,0.00237,0.00238,0.00244,,,,,,,0.007,0.00234,0.00235,0.00241,,,,,,,0.00702,0.00235,0.00236,0.00242,,,,,,,0.00628,0.00232,0.00233,0.00239,,,,,,,0.00323,0.00213,0.00214,0.0022,,,,,,,0.13792,0.19546,0.31648,0.62368,,,,,,,0.12835,0.18451,0.30427,0.60619,,,,,,,0.13189,0.20166,0.33345,0.657,,,,,,,0.15025,0.22558,0.36851,0.70941,,,,,,,0.10878,0.17758,0.31365,0.63234,,,,,,,0.11921,0.18508,0.32361,0.64755,,,,,,,0.10829,0.17485,0.30861,0.6202,,,,,,,0.12472,0.19777,0.33721,0.66783,,,,,,,0.09732,0.16568,0.2921,0.59213,,,, +Full size car,E15,2020,,,,0.00085,0.00129,0.00198,0.00397,,,,,,,0.00079,0.00119,0.00181,0.0036,,,,,,,0.00083,0.00125,0.00191,0.00382,,,,,,,0.00091,0.00138,0.00211,0.00426,,,,,,,0.0006,0.00089,0.00133,0.00254,,,,,,,0.00065,0.00097,0.00145,0.00281,,,,,,,0.00055,0.00082,0.00121,0.0023,,,,,,,0.00067,0.001,0.00151,0.00294,,,,,,,0.00051,0.00075,0.00111,0.0021,,,,,,,0.00835,0.00685,0.00638,0.0078,,,,,,,0.00751,0.00629,0.00594,0.00728,,,,,,,0.0079,0.00702,0.00665,0.00827,,,,,,,0.009,0.00797,0.00753,0.00934,,,,,,,0.00523,0.00528,0.00529,0.00665,,,,,,,0.00583,0.00579,0.00574,0.00723,,,,,,,0.00513,0.0052,0.00523,0.00657,,,,,,,0.00633,0.00587,0.00569,0.00711,,,,,,,0.00505,0.00483,0.00478,0.00593,,,,,,,1.47507,2.18535,2.72235,3.61207,,,,,,,1.43521,2.15191,2.69644,3.58142,,,,,,,1.51908,2.40483,3.07785,4.15643,,,,,,,1.66567,2.63842,3.39252,4.55715,,,,,,,1.31593,2.20588,2.85206,3.84211,,,,,,,1.37913,2.30482,2.99108,4.04861,,,,,,,1.35776,2.26451,2.92528,3.93788,,,,,,,1.45666,2.33428,2.97559,3.99875,,,,,,,1.29202,2.07013,2.61462,3.49828,,,,,,,271.96044,273.86134,275.68014,290.8604,,,,,,,274.30751,276.02333,277.58098,292.44204,,,,,,,278.84698,280.65015,282.31755,297.56201,,,,,,,272.21821,274.15305,276.03176,291.33138,,,,,,,279.08912,280.12761,280.74049,294.27474,,,,,,,274.65408,275.949,276.93179,290.87296,,,,,,,276.40167,277.38592,277.93652,291.25227,,,,,,,276.7667,278.09928,279.12396,293.2253,,,,,,,271.37236,272.48826,273.21136,286.56473,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06444,0.09931,0.13295,0.17702,,,,,,,0.06284,0.09718,0.13049,0.17399,,,,,,,0.06361,0.10491,0.14005,0.1894,,,,,,,0.06822,0.11405,0.15237,0.20667,,,,,,,0.05349,0.09328,0.12644,0.17286,,,,,,,0.0581,0.10014,0.13528,0.18458,,,,,,,0.05455,0.09407,0.1278,0.17385,,,,,,,0.06285,0.10498,0.14115,0.19054,,,,,,,0.05531,0.09153,0.12354,0.16573,,,,,,,0.0017,0.00244,0.00353,0.00644,,,,,,,0.00164,0.00236,0.00339,0.00611,,,,,,,0.00168,0.00241,0.00348,0.00632,,,,,,,0.00174,0.00251,0.00364,0.00669,,,,,,,0.00148,0.00209,0.00295,0.00514,,,,,,,0.0015,0.00214,0.00304,0.00535,,,,,,,0.0014,0.00197,0.00278,0.00482,,,,,,,0.00152,0.00216,0.00308,0.00546,,,,,,,0.00133,0.00188,0.00264,0.00455,,,,,,,0.03203,0.0337,0.03618,0.04292,,,,,,,0.03286,0.03444,0.03676,0.043,,,,,,,0.03546,0.0371,0.03951,0.04606,,,,,,,0.03053,0.03227,0.03487,0.04199,,,,,,,0.03446,0.03576,0.03762,0.04244,,,,,,,0.03199,0.03336,0.03534,0.0405,,,,,,,0.03169,0.0329,0.03464,0.03908,,,,,,,0.03332,0.03472,0.03675,0.04209,,,,,,,0.03243,0.03358,0.03521,0.03936,,,,,,,0.00699,0.00847,0.01066,0.01663,,,,,,,0.00698,0.00838,0.01043,0.01596,,,,,,,0.00739,0.00884,0.01097,0.01677,,,,,,,0.00689,0.00843,0.01072,0.01703,,,,,,,0.00684,0.008,0.00965,0.01391,,,,,,,0.0066,0.00781,0.00956,0.01413,,,,,,,0.00636,0.00744,0.00897,0.0129,,,,,,,0.0068,0.00804,0.00983,0.01456,,,,,,,0.00634,0.00736,0.0088,0.01247,,,,,,,0.00184,0.00186,0.00187,0.00197,,,,,,,0.00186,0.00187,0.00188,0.00198,,,,,,,0.00189,0.0019,0.00191,0.00202,,,,,,,0.00185,0.00186,0.00187,0.00198,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00186,0.00187,0.00188,0.00197,,,,,,,0.00187,0.00188,0.00188,0.00197,,,,,,,0.00185,0.00186,0.00186,0.00196,,,,,,,0.0017,0.00171,0.00171,0.0018,,,,,,,0.11583,0.15786,0.23734,0.48946,,,,,,,0.1066,0.14621,0.22358,0.47295,,,,,,,0.1125,0.16164,0.24776,0.5146,,,,,,,0.12639,0.18201,0.27561,0.55381,,,,,,,0.08558,0.13275,0.21839,0.48872,,,,,,,0.09137,0.141,0.22872,0.50185,,,,,,,0.08431,0.12893,0.21153,0.47553,,,,,,,0.10266,0.15251,0.24127,0.51803,,,,,,,0.08097,0.12282,0.20182,0.45788,,, +Full size car,E15,2025,,,,,0.00056,0.00082,0.00128,0.00264,,,,,,,0.00052,0.00076,0.00117,0.0024,,,,,,,0.00054,0.0008,0.00124,0.00255,,,,,,,0.00059,0.00088,0.00137,0.00283,,,,,,,0.00039,0.00057,0.00086,0.00171,,,,,,,0.00042,0.00062,0.00094,0.00189,,,,,,,0.00036,0.00052,0.00079,0.00155,,,,,,,0.00044,0.00064,0.00098,0.00197,,,,,,,0.00033,0.00048,0.00072,0.00142,,,,,,,0.00706,0.00538,0.00484,0.00594,,,,,,,0.00619,0.00479,0.00438,0.00541,,,,,,,0.0066,0.00535,0.0049,0.00614,,,,,,,0.00766,0.00618,0.00563,0.00702,,,,,,,0.00382,0.00353,0.00345,0.00446,,,,,,,0.00443,0.004,0.00385,0.00496,,,,,,,0.00371,0.00344,0.00338,0.00437,,,,,,,0.00497,0.0042,0.00395,0.00501,,,,,,,0.00363,0.00321,0.00311,0.00395,,,,,,,1.1023,1.58065,1.98689,2.60748,,,,,,,1.04651,1.52576,1.93267,2.54168,,,,,,,1.11624,1.70742,2.20479,2.9405,,,,,,,1.24014,1.89629,2.45592,3.25424,,,,,,,0.88394,1.46751,1.93128,2.58303,,,,,,,0.94772,1.55912,2.05435,2.7562,,,,,,,0.91247,1.50903,1.98411,2.65163,,,,,,,1.02156,1.60227,2.06989,2.75823,,,,,,,0.8745,1.38418,1.77703,2.36889,,,,,,,219.79517,221.43235,223.33795,236.97996,,,,,,,221.5603,223.04263,224.72229,238.06534,,,,,,,225.27095,226.82779,228.60892,242.30158,,,,,,,220.05545,221.72341,223.68594,237.44594,,,,,,,224.95881,225.87377,226.72836,238.83748,,,,,,,221.57259,222.70262,223.8785,236.37313,,,,,,,222.77487,223.64421,224.44286,236.3569,,,,,,,223.28628,224.44783,225.66151,238.29869,,,,,,,218.76573,219.74207,220.67897,232.6215,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04928,0.0717,0.09533,0.1294,,,,,,,0.04744,0.06939,0.09262,0.12609,,,,,,,0.04796,0.07417,0.09853,0.13626,,,,,,,0.05196,0.08132,0.10809,0.14963,,,,,,,0.03805,0.06291,0.08537,0.12001,,,,,,,0.04237,0.06889,0.09295,0.13006,,,,,,,0.03896,0.06378,0.0867,0.12112,,,,,,,0.04598,0.07259,0.0974,0.13488,,,,,,,0.03955,0.06234,0.08419,0.11607,,,,,,,0.0011,0.00156,0.0023,0.00432,,,,,,,0.00107,0.00151,0.00221,0.00411,,,,,,,0.00109,0.00154,0.00226,0.00424,,,,,,,0.00113,0.0016,0.00237,0.00448,,,,,,,0.00096,0.00134,0.00192,0.00347,,,,,,,0.00098,0.00137,0.00198,0.00361,,,,,,,0.00091,0.00126,0.00181,0.00325,,,,,,,0.00099,0.00139,0.00201,0.00368,,,,,,,0.00087,0.0012,0.00172,0.00308,,,,,,,0.03076,0.03178,0.03345,0.03812,,,,,,,0.03164,0.0326,0.03417,0.03851,,,,,,,0.03421,0.03521,0.03683,0.04138,,,,,,,0.02922,0.03028,0.03202,0.03693,,,,,,,0.03339,0.03419,0.03546,0.03885,,,,,,,0.0309,0.03173,0.03307,0.0367,,,,,,,0.03068,0.03143,0.0326,0.03573,,,,,,,0.03221,0.03307,0.03444,0.03818,,,,,,,0.03148,0.03219,0.03329,0.03624,,,,,,,0.00587,0.00677,0.00824,0.01238,,,,,,,0.0059,0.00676,0.00814,0.01199,,,,,,,0.00628,0.00716,0.0086,0.01263,,,,,,,0.00573,0.00667,0.00821,0.01255,,,,,,,0.0059,0.00661,0.00773,0.01073,,,,,,,0.00563,0.00637,0.00755,0.01077,,,,,,,0.00547,0.00613,0.00717,0.00994,,,,,,,0.00582,0.00658,0.00779,0.0111,,,,,,,0.0055,0.00612,0.0071,0.00971,,,,,,,0.00149,0.0015,0.00151,0.00161,,,,,,,0.0015,0.00151,0.00152,0.00161,,,,,,,0.00153,0.00154,0.00155,0.00164,,,,,,,0.00149,0.0015,0.00152,0.00161,,,,,,,0.00153,0.00153,0.00154,0.00162,,,,,,,0.0015,0.00151,0.00152,0.0016,,,,,,,0.00151,0.00152,0.00152,0.0016,,,,,,,0.00149,0.0015,0.00151,0.00159,,,,,,,0.00137,0.00138,0.00138,0.00146,,,,,,,0.09923,0.12657,0.1867,0.39882,,,,,,,0.08927,0.11393,0.17137,0.38007,,,,,,,0.09548,0.12762,0.19277,0.41681,,,,,,,0.10851,0.14549,0.21635,0.4488,,,,,,,0.06526,0.09375,0.15585,0.37948,,,,,,,0.07174,0.10246,0.16674,0.39325,,,,,,,0.0634,0.08905,0.1478,0.36426,,,,,,,0.08233,0.11324,0.1786,0.40741,,,,,,,0.06112,0.08577,0.14282,0.35549,, +Full size car,E15,2030,,,,,,0.00056,0.00082,0.00127,0.00231,,,,,,,0.00051,0.00076,0.00117,0.0021,,,,,,,0.00054,0.0008,0.00123,0.00222,,,,,,,0.00059,0.00087,0.00136,0.00247,,,,,,,0.00039,0.00057,0.00086,0.0015,,,,,,,0.00042,0.00062,0.00094,0.00166,,,,,,,0.00036,0.00052,0.00078,0.00136,,,,,,,0.00044,0.00064,0.00097,0.00172,,,,,,,0.00033,0.00048,0.00072,0.00124,,,,,,,0.00661,0.0049,0.0044,0.00522,,,,,,,0.00573,0.00431,0.00393,0.00468,,,,,,,0.00615,0.00481,0.0044,0.00528,,,,,,,0.00718,0.00559,0.00508,0.00609,,,,,,,0.00335,0.00297,0.00292,0.00357,,,,,,,0.00396,0.00342,0.00331,0.00404,,,,,,,0.00322,0.00288,0.00285,0.00348,,,,,,,0.0045,0.00366,0.00345,0.00417,,,,,,,0.00316,0.0027,0.00262,0.00317,,,,,,,1.00381,1.43027,1.80816,2.27607,,,,,,,0.9443,1.37045,1.7465,2.19802,,,,,,,1.01044,1.5343,1.99167,2.53146,,,,,,,1.12789,1.71093,2.2242,2.81775,,,,,,,0.7717,1.28537,1.70513,2.15886,,,,,,,0.83523,1.37452,1.82402,2.3185,,,,,,,0.7965,1.32221,1.75197,2.2182,,,,,,,0.90765,1.42121,1.84889,2.34032,,,,,,,0.76533,1.21498,1.57491,1.9863,,,,,,,202.37588,204.42168,207.58991,216.57033,,,,,,,203.95157,205.85813,208.81899,217.48026,,,,,,,207.38391,209.36859,212.45013,221.37827,,,,,,,202.63544,204.71083,207.93779,217.03032,,,,,,,206.9057,208.29309,210.47947,217.89649,,,,,,,203.86231,205.44171,207.91787,215.768,,,,,,,204.89027,206.23058,208.35024,215.62272,,,,,,,205.44263,207.055,209.57727,217.53119,,,,,,,201.21948,202.64792,204.87342,212.24055,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04353,0.0621,0.08371,0.11074,,,,,,,0.0416,0.05972,0.08091,0.10727,,,,,,,0.04197,0.06345,0.08568,0.11492,,,,,,,0.04568,0.06988,0.09432,0.12662,,,,,,,0.03219,0.05238,0.07272,0.09873,,,,,,,0.03637,0.05802,0.07988,0.10805,,,,,,,0.03305,0.05324,0.07398,0.1,,,,,,,0.03953,0.0613,0.08389,0.11251,,,,,,,0.03358,0.05222,0.07213,0.09629,,,,,,,0.0011,0.00156,0.00229,0.0038,,,,,,,0.00107,0.0015,0.0022,0.00362,,,,,,,0.00109,0.00154,0.00225,0.00373,,,,,,,0.00113,0.0016,0.00235,0.00394,,,,,,,0.00096,0.00134,0.00192,0.00307,,,,,,,0.00098,0.00137,0.00197,0.00319,,,,,,,0.00091,0.00126,0.0018,0.00288,,,,,,,0.00099,0.00138,0.002,0.00325,,,,,,,0.00087,0.0012,0.00172,0.00273,,,,,,,0.03076,0.03177,0.03342,0.03693,,,,,,,0.03163,0.03259,0.03414,0.03741,,,,,,,0.0342,0.0352,0.03681,0.04023,,,,,,,0.02921,0.03027,0.03199,0.03569,,,,,,,0.03339,0.03419,0.03544,0.03798,,,,,,,0.03089,0.03173,0.03305,0.03577,,,,,,,0.03068,0.03142,0.03258,0.03493,,,,,,,0.03221,0.03306,0.03442,0.03722,,,,,,,0.03148,0.03219,0.03329,0.03548,,,,,,,0.00586,0.00676,0.00822,0.01133,,,,,,,0.0059,0.00675,0.00812,0.01101,,,,,,,0.00628,0.00716,0.00858,0.0116,,,,,,,0.00572,0.00666,0.00818,0.01146,,,,,,,0.0059,0.00661,0.00771,0.00996,,,,,,,0.00563,0.00637,0.00754,0.00994,,,,,,,0.00547,0.00613,0.00715,0.00923,,,,,,,0.00582,0.00657,0.00778,0.01025,,,,,,,0.0055,0.00612,0.0071,0.00903,,,,,,,0.00137,0.00139,0.00141,0.00147,,,,,,,0.00138,0.0014,0.00142,0.00147,,,,,,,0.00141,0.00142,0.00144,0.0015,,,,,,,0.00137,0.00139,0.00141,0.00147,,,,,,,0.0014,0.00141,0.00143,0.00148,,,,,,,0.00138,0.00139,0.00141,0.00146,,,,,,,0.00139,0.0014,0.00141,0.00146,,,,,,,0.00137,0.00138,0.0014,0.00145,,,,,,,0.00126,0.00127,0.00128,0.00133,,,,,,,0.09467,0.11871,0.17606,0.36182,,,,,,,0.08464,0.10598,0.16057,0.34223,,,,,,,0.09086,0.119,0.18103,0.37621,,,,,,,0.10363,0.13612,0.20335,0.40596,,,,,,,0.06023,0.08454,0.1429,0.3352,,,,,,,0.06675,0.09318,0.15367,0.34886,,,,,,,0.05828,0.07981,0.13473,0.31962,,,,,,,0.07707,0.104,0.16543,0.36389,,,,,,,0.05608,0.07704,0.13077,0.31389, +Full size car,E15,2035,,,,,,,0.00055,0.00082,0.00128,0.00227,,,,,,,0.00051,0.00075,0.00117,0.00206,,,,,,,0.00054,0.00079,0.00124,0.00219,,,,,,,0.00059,0.00087,0.00136,0.00243,,,,,,,0.00039,0.00056,0.00086,0.00147,,,,,,,0.00042,0.00061,0.00094,0.00163,,,,,,,0.00036,0.00052,0.00078,0.00134,,,,,,,0.00043,0.00063,0.00098,0.00169,,,,,,,0.00033,0.00048,0.00072,0.00122,,,,,,,0.00659,0.0049,0.00439,0.0051,,,,,,,0.00571,0.00432,0.00393,0.00456,,,,,,,0.00613,0.00482,0.00439,0.00513,,,,,,,0.00715,0.0056,0.00508,0.00592,,,,,,,0.00334,0.00297,0.00292,0.00341,,,,,,,0.00395,0.00343,0.00331,0.00387,,,,,,,0.00321,0.00288,0.00285,0.00332,,,,,,,0.00448,0.00367,0.00345,0.00402,,,,,,,0.00315,0.0027,0.00262,0.00304,,,,,,,1.00229,1.42816,1.80906,2.22619,,,,,,,0.94308,1.3678,1.74777,2.14624,,,,,,,1.00906,1.53074,1.99351,2.46899,,,,,,,1.12607,1.70515,2.22735,2.75229,,,,,,,0.77132,1.28076,1.70773,2.09393,,,,,,,0.83464,1.36985,1.82663,2.25131,,,,,,,0.79607,1.31711,1.75484,2.15207,,,,,,,0.90685,1.41794,1.85057,2.27597,,,,,,,0.76507,1.21407,1.57522,1.92592,,,,,,,202.31732,204.41513,207.58516,213.42055,,,,,,,203.89656,205.8518,208.81424,214.30283,,,,,,,207.32669,209.36189,212.44549,218.14861,,,,,,,202.57521,204.70413,207.93289,213.87998,,,,,,,206.8634,208.28824,210.47564,214.66073,,,,,,,203.81533,205.43641,207.91369,212.58557,,,,,,,204.84903,206.2258,208.34664,212.41867,,,,,,,205.39488,207.04945,209.57317,214.32364,,,,,,,201.1778,202.64334,204.86989,209.09153,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.0046,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04342,0.06196,0.08378,0.10784,,,,,,,0.0415,0.05959,0.08098,0.10432,,,,,,,0.04187,0.0633,0.08576,0.11148,,,,,,,0.04557,0.06969,0.09443,0.12291,,,,,,,0.03213,0.05228,0.07278,0.09523,,,,,,,0.03629,0.0579,0.07995,0.10444,,,,,,,0.03298,0.05312,0.07405,0.09657,,,,,,,0.03945,0.06122,0.08394,0.10885,,,,,,,0.03353,0.0522,0.07213,0.09306,,,,,,,0.0011,0.00155,0.00229,0.00374,,,,,,,0.00107,0.0015,0.0022,0.00356,,,,,,,0.00109,0.00153,0.00226,0.00367,,,,,,,0.00113,0.00159,0.00236,0.00388,,,,,,,0.00096,0.00133,0.00192,0.00302,,,,,,,0.00098,0.00136,0.00198,0.00314,,,,,,,0.00091,0.00126,0.00181,0.00283,,,,,,,0.00099,0.00138,0.00201,0.0032,,,,,,,0.00087,0.0012,0.00172,0.00268,,,,,,,0.03075,0.03176,0.03343,0.03679,,,,,,,0.03163,0.03258,0.03415,0.03728,,,,,,,0.0342,0.03519,0.03682,0.04009,,,,,,,0.02921,0.03025,0.03201,0.03555,,,,,,,0.03339,0.03418,0.03545,0.03787,,,,,,,0.03089,0.03172,0.03306,0.03566,,,,,,,0.03067,0.03141,0.03259,0.03484,,,,,,,0.03221,0.03305,0.03443,0.03711,,,,,,,0.03148,0.03218,0.03329,0.03538,,,,,,,0.00586,0.00675,0.00823,0.0112,,,,,,,0.0059,0.00674,0.00813,0.01089,,,,,,,0.00627,0.00714,0.00859,0.01148,,,,,,,0.00572,0.00664,0.00819,0.01133,,,,,,,0.0059,0.0066,0.00772,0.00987,,,,,,,0.00563,0.00636,0.00754,0.00985,,,,,,,0.00547,0.00612,0.00716,0.00915,,,,,,,0.00582,0.00657,0.00778,0.01015,,,,,,,0.0055,0.00612,0.0071,0.00895,,,,,,,0.00137,0.00139,0.00141,0.00145,,,,,,,0.00138,0.0014,0.00142,0.00145,,,,,,,0.00141,0.00142,0.00144,0.00148,,,,,,,0.00137,0.00139,0.00141,0.00145,,,,,,,0.0014,0.00141,0.00143,0.00146,,,,,,,0.00138,0.00139,0.00141,0.00144,,,,,,,0.00139,0.0014,0.00141,0.00144,,,,,,,0.00137,0.00138,0.0014,0.00143,,,,,,,0.00126,0.00127,0.00128,0.00131,,,,,,,0.09439,0.11877,0.17599,0.3576,,,,,,,0.08438,0.10602,0.16051,0.33781,,,,,,,0.09061,0.11908,0.18093,0.37136,,,,,,,0.10331,0.13605,0.20337,0.40089,,,,,,,0.06005,0.0844,0.14298,0.32985,,,,,,,0.06656,0.09307,0.15372,0.34346,,,,,,,0.0581,0.07963,0.13483,0.31415,,,,,,,0.07677,0.10353,0.16589,0.35865,,,,,,,0.05593,0.07701,0.13077,0.30885 +Full size car,E15,2040,,,,,,,,0.00055,0.00082,0.00128,,,,,,,,0.00051,0.00075,0.00117,,,,,,,,0.00054,0.00079,0.00124,,,,,,,,0.00058,0.00087,0.00137,,,,,,,,0.00039,0.00056,0.00086,,,,,,,,0.00042,0.00061,0.00094,,,,,,,,0.00036,0.00052,0.00079,,,,,,,,0.00043,0.00063,0.00098,,,,,,,,0.00033,0.00048,0.00072,,,,,,,,0.0066,0.0049,0.00439,,,,,,,,0.00572,0.00431,0.00392,,,,,,,,0.00615,0.00481,0.00439,,,,,,,,0.00717,0.00559,0.00507,,,,,,,,0.00334,0.00297,0.00292,,,,,,,,0.00395,0.00342,0.00331,,,,,,,,0.00322,0.00288,0.00285,,,,,,,,0.00449,0.00366,0.00344,,,,,,,,0.00315,0.0027,0.00262,,,,,,,,1.0006,1.42851,1.81031,,,,,,,,0.94103,1.36847,1.74944,,,,,,,,1.00674,1.53175,1.99588,,,,,,,,1.12242,1.70709,2.23129,,,,,,,,0.76822,1.28251,1.71092,,,,,,,,0.83156,1.37156,1.82987,,,,,,,,0.79266,1.31907,1.75838,,,,,,,,0.90443,1.41894,1.85271,,,,,,,,0.76404,1.21409,1.57572,,,,,,,,202.30798,204.40452,207.5837,,,,,,,,203.88766,205.84202,208.813,,,,,,,,207.3175,209.35175,212.4441,,,,,,,,202.56574,204.69344,207.93146,,,,,,,,206.85685,208.28084,210.47473,,,,,,,,203.80768,205.42791,207.91252,,,,,,,,204.84263,206.21851,208.34561,,,,,,,,205.38715,207.0409,209.57207,,,,,,,,201.17121,202.63584,204.86895,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04329,0.06199,0.08387,,,,,,,,0.04138,0.05962,0.08107,,,,,,,,0.04173,0.06333,0.08586,,,,,,,,0.04539,0.06974,0.09457,,,,,,,,0.03204,0.0523,0.07285,,,,,,,,0.03619,0.05793,0.08003,,,,,,,,0.03287,0.05315,0.07415,,,,,,,,0.03936,0.06123,0.084,,,,,,,,0.03349,0.05219,0.07214,,,,,,,,0.0011,0.00156,0.0023,,,,,,,,0.00106,0.0015,0.0022,,,,,,,,0.00108,0.00154,0.00226,,,,,,,,0.00112,0.0016,0.00237,,,,,,,,0.00096,0.00133,0.00192,,,,,,,,0.00097,0.00136,0.00198,,,,,,,,0.0009,0.00126,0.00181,,,,,,,,0.00098,0.00138,0.00201,,,,,,,,0.00087,0.0012,0.00172,,,,,,,,0.03074,0.03176,0.03344,,,,,,,,0.03162,0.03259,0.03416,,,,,,,,0.03419,0.03519,0.03683,,,,,,,,0.02919,0.03026,0.03202,,,,,,,,0.03338,0.03418,0.03545,,,,,,,,0.03088,0.03172,0.03307,,,,,,,,0.03066,0.03141,0.0326,,,,,,,,0.0322,0.03306,0.03444,,,,,,,,0.03148,0.03218,0.03329,,,,,,,,0.00585,0.00676,0.00824,,,,,,,,0.00589,0.00674,0.00814,,,,,,,,0.00626,0.00715,0.0086,,,,,,,,0.00571,0.00665,0.00821,,,,,,,,0.00589,0.0066,0.00773,,,,,,,,0.00562,0.00636,0.00755,,,,,,,,0.00546,0.00612,0.00717,,,,,,,,0.00581,0.00657,0.00779,,,,,,,,0.0055,0.00612,0.0071,,,,,,,,0.00137,0.00139,0.00141,,,,,,,,0.00138,0.0014,0.00142,,,,,,,,0.00141,0.00142,0.00144,,,,,,,,0.00137,0.00139,0.00141,,,,,,,,0.0014,0.00141,0.00143,,,,,,,,0.00138,0.00139,0.00141,,,,,,,,0.00139,0.0014,0.00141,,,,,,,,0.00137,0.00138,0.0014,,,,,,,,0.00126,0.00127,0.00128,,,,,,,,0.09442,0.11866,0.17594,,,,,,,,0.0844,0.10593,0.16047,,,,,,,,0.09066,0.11896,0.1809,,,,,,,,0.10327,0.13599,0.20346,,,,,,,,0.05995,0.08442,0.14313,,,,,,,,0.06649,0.09307,0.15384,,,,,,,,0.05798,0.07966,0.135,,,,,,,,0.07641,0.10384,0.16607,,,,,,,,0.05589,0.07698,0.1308 +Full size car,E15,2045,,,,,,,,,0.00055,0.00082,,,,,,,,,0.00051,0.00076,,,,,,,,,0.00054,0.0008,,,,,,,,,0.00058,0.00087,,,,,,,,,0.00039,0.00057,,,,,,,,,0.00042,0.00061,,,,,,,,,0.00036,0.00052,,,,,,,,,0.00043,0.00064,,,,,,,,,0.00033,0.00048,,,,,,,,,0.00659,0.00489,,,,,,,,,0.00571,0.00431,,,,,,,,,0.00613,0.00481,,,,,,,,,0.00716,0.00558,,,,,,,,,0.00334,0.00297,,,,,,,,,0.00395,0.00342,,,,,,,,,0.00321,0.00288,,,,,,,,,0.00448,0.00366,,,,,,,,,0.00315,0.00269,,,,,,,,,1.00076,1.42949,,,,,,,,,0.94141,1.36976,,,,,,,,,1.00717,1.5335,,,,,,,,,1.12337,1.71,,,,,,,,,0.76923,1.2849,,,,,,,,,0.8325,1.37396,,,,,,,,,0.79381,1.32172,,,,,,,,,0.90501,1.42057,,,,,,,,,0.7641,1.21447,,,,,,,,,202.29998,204.40452,,,,,,,,,203.88008,205.84178,,,,,,,,,207.30962,209.35166,,,,,,,,,202.55717,204.69292,,,,,,,,,206.85113,208.28078,,,,,,,,,203.80114,205.42783,,,,,,,,,204.83696,206.21826,,,,,,,,,205.38063,207.04086,,,,,,,,,201.16556,202.63587,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04332,0.06206,,,,,,,,,0.0414,0.05969,,,,,,,,,0.04176,0.06341,,,,,,,,,0.04544,0.06984,,,,,,,,,0.03206,0.05235,,,,,,,,,0.03621,0.05799,,,,,,,,,0.0329,0.05322,,,,,,,,,0.03938,0.06127,,,,,,,,,0.03349,0.0522,,,,,,,,,0.0011,0.00156,,,,,,,,,0.00106,0.0015,,,,,,,,,0.00109,0.00154,,,,,,,,,0.00112,0.0016,,,,,,,,,0.00096,0.00133,,,,,,,,,0.00097,0.00137,,,,,,,,,0.00091,0.00126,,,,,,,,,0.00099,0.00138,,,,,,,,,0.00087,0.0012,,,,,,,,,0.03074,0.03177,,,,,,,,,0.03162,0.03259,,,,,,,,,0.03419,0.0352,,,,,,,,,0.0292,0.03027,,,,,,,,,0.03338,0.03419,,,,,,,,,0.03089,0.03173,,,,,,,,,0.03067,0.03142,,,,,,,,,0.0322,0.03306,,,,,,,,,0.03148,0.03219,,,,,,,,,0.00585,0.00676,,,,,,,,,0.00589,0.00675,,,,,,,,,0.00627,0.00716,,,,,,,,,0.00571,0.00666,,,,,,,,,0.00589,0.0066,,,,,,,,,0.00562,0.00637,,,,,,,,,0.00546,0.00613,,,,,,,,,0.00581,0.00657,,,,,,,,,0.0055,0.00612,,,,,,,,,0.00137,0.00139,,,,,,,,,0.00138,0.0014,,,,,,,,,0.00141,0.00142,,,,,,,,,0.00137,0.00139,,,,,,,,,0.0014,0.00141,,,,,,,,,0.00138,0.00139,,,,,,,,,0.00139,0.0014,,,,,,,,,0.00137,0.00138,,,,,,,,,0.00126,0.00127,,,,,,,,,0.09433,0.11861,,,,,,,,,0.08433,0.10589,,,,,,,,,0.09057,0.11891,,,,,,,,,0.10321,0.13601,,,,,,,,,0.05996,0.08449,,,,,,,,,0.06647,0.09312,,,,,,,,,0.058,0.07976,,,,,,,,,0.07663,0.10394,,,,,,,,,0.05587,0.07699 +Full size car,E15,2050,,,,,,,,,,0.00055,,,,,,,,,,0.00051,,,,,,,,,,0.00054,,,,,,,,,,0.00059,,,,,,,,,,0.00039,,,,,,,,,,0.00042,,,,,,,,,,0.00036,,,,,,,,,,0.00043,,,,,,,,,,0.00033,,,,,,,,,,0.00658,,,,,,,,,,0.0057,,,,,,,,,,0.00612,,,,,,,,,,0.00715,,,,,,,,,,0.00333,,,,,,,,,,0.00394,,,,,,,,,,0.00321,,,,,,,,,,0.00448,,,,,,,,,,0.00315,,,,,,,,,,1.00129,,,,,,,,,,0.94214,,,,,,,,,,1.00801,,,,,,,,,,1.12488,,,,,,,,,,0.77057,,,,,,,,,,0.8338,,,,,,,,,,0.79531,,,,,,,,,,0.90594,,,,,,,,,,0.76433,,,,,,,,,,202.30003,,,,,,,,,,203.88013,,,,,,,,,,207.30957,,,,,,,,,,202.55706,,,,,,,,,,206.85117,,,,,,,,,,203.80131,,,,,,,,,,204.83679,,,,,,,,,,205.38064,,,,,,,,,,201.1655,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04337,,,,,,,,,,0.04145,,,,,,,,,,0.04182,,,,,,,,,,0.04552,,,,,,,,,,0.0321,,,,,,,,,,0.03626,,,,,,,,,,0.03295,,,,,,,,,,0.03941,,,,,,,,,,0.03349,,,,,,,,,,0.0011,,,,,,,,,,0.00107,,,,,,,,,,0.00109,,,,,,,,,,0.00113,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00091,,,,,,,,,,0.00099,,,,,,,,,,0.00087,,,,,,,,,,0.03075,,,,,,,,,,0.03163,,,,,,,,,,0.0342,,,,,,,,,,0.02921,,,,,,,,,,0.03339,,,,,,,,,,0.03089,,,,,,,,,,0.03067,,,,,,,,,,0.0322,,,,,,,,,,0.03148,,,,,,,,,,0.00586,,,,,,,,,,0.0059,,,,,,,,,,0.00627,,,,,,,,,,0.00572,,,,,,,,,,0.0059,,,,,,,,,,0.00563,,,,,,,,,,0.00547,,,,,,,,,,0.00582,,,,,,,,,,0.0055,,,,,,,,,,0.00137,,,,,,,,,,0.00138,,,,,,,,,,0.00141,,,,,,,,,,0.00137,,,,,,,,,,0.0014,,,,,,,,,,0.00138,,,,,,,,,,0.00139,,,,,,,,,,0.00137,,,,,,,,,,0.00126,,,,,,,,,,0.09429,,,,,,,,,,0.08429,,,,,,,,,,0.09051,,,,,,,,,,0.10319,,,,,,,,,,0.05999,,,,,,,,,,0.06649,,,,,,,,,,0.05805,,,,,,,,,,0.0767,,,,,,,,,,0.05587 +Full size car,E85,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,E85,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,E85,2000,,0.00646,0.01096,,,,,,,,,0.00556,0.0094,,,,,,,,,0.00624,0.01058,,,,,,,,,0.00706,0.01205,,,,,,,,,0.00309,0.00518,,,,,,,,,0.00371,0.00651,,,,,,,,,0.00297,0.00495,,,,,,,,,0.00428,0.00722,,,,,,,,,0.00294,0.00489,,,,,,,,,0.1043,0.10801,,,,,,,,,0.09912,0.10538,,,,,,,,,0.11745,0.12381,,,,,,,,,0.12435,0.13076,,,,,,,,,0.0979,0.10436,,,,,,,,,0.10561,0.11273,,,,,,,,,0.09825,0.10152,,,,,,,,,0.10164,0.10689,,,,,,,,,0.08449,0.08929,,,,,,,,,10.46323,12.29875,,,,,,,,,10.1003,12.09664,,,,,,,,,11.54872,13.76171,,,,,,,,,12.5148,14.86778,,,,,,,,,10.18655,12.11852,,,,,,,,,10.85035,13.04615,,,,,,,,,10.56603,12.22233,,,,,,,,,10.43698,12.33731,,,,,,,,,8.5791,10.15353,,,,,,,,,376.02843,381.76732,,,,,,,,,379.21137,384.55522,,,,,,,,,385.75012,391.31159,,,,,,,,,376.22326,382.03424,,,,,,,,,385.51251,389.38635,,,,,,,,,379.35954,385.24023,,,,,,,,,381.50323,385.23906,,,,,,,,,382.39194,386.90262,,,,,,,,,374.84749,378.85541,,,,,,,,,0.02345,0.02778,,,,,,,,,0.02352,0.02785,,,,,,,,,0.02363,0.02792,,,,,,,,,0.02372,0.02815,,,,,,,,,0.02367,0.02798,,,,,,,,,0.02383,0.02823,,,,,,,,,0.02358,0.02792,,,,,,,,,0.02367,0.02801,,,,,,,,,0.02329,0.02756,,,,,,,,,0.07773,0.07773,,,,,,,,,0.07791,0.07791,,,,,,,,,0.07812,0.07812,,,,,,,,,0.07719,0.07719,,,,,,,,,0.078,0.078,,,,,,,,,0.07746,0.07747,,,,,,,,,0.07771,0.07771,,,,,,,,,0.07801,0.07801,,,,,,,,,0.07818,0.07818,,,,,,,,,1.34699,1.60074,,,,,,,,,1.33398,1.61983,,,,,,,,,1.48783,1.79273,,,,,,,,,1.55348,1.86975,,,,,,,,,1.45143,1.76315,,,,,,,,,1.50273,1.81274,,,,,,,,,1.47847,1.75034,,,,,,,,,1.53645,1.83287,,,,,,,,,1.36428,1.63897,,,,,,,,,0.01343,0.02127,,,,,,,,,0.0118,0.01863,,,,,,,,,0.0129,0.02042,,,,,,,,,0.01405,0.02235,,,,,,,,,0.00709,0.01108,,,,,,,,,0.00815,0.01328,,,,,,,,,0.00693,0.01081,,,,,,,,,0.00934,0.01469,,,,,,,,,0.00706,0.01099,,,,,,,,,0.05724,0.07467,,,,,,,,,0.0546,0.06973,,,,,,,,,0.0596,0.07636,,,,,,,,,0.05721,0.07589,,,,,,,,,0.04636,0.05505,,,,,,,,,0.04618,0.0576,,,,,,,,,0.04337,0.05179,,,,,,,,,0.05002,0.06181,,,,,,,,,0.04448,0.05295,,,,,,,,,0.02929,0.04471,,,,,,,,,0.02622,0.0396,,,,,,,,,0.02874,0.04357,,,,,,,,,0.03049,0.04702,,,,,,,,,0.01737,0.02507,,,,,,,,,0.01915,0.02916,,,,,,,,,0.01669,0.02414,,,,,,,,,0.02158,0.032,,,,,,,,,0.01699,0.02449,,,,,,,,,0.01231,0.01102,,,,,,,,,0.01242,0.0111,,,,,,,,,0.01263,0.0113,,,,,,,,,0.01232,0.01103,,,,,,,,,0.01262,0.01124,,,,,,,,,0.01242,0.01112,,,,,,,,,0.01249,0.01112,,,,,,,,,0.01252,0.01117,,,,,,,,,0.01227,0.01094,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,, +Full size car,E85,2005,,0.00252,0.00415,0.00796,,,,,,,,0.00221,0.00362,0.00691,,,,,,,,0.00247,0.00406,0.00777,,,,,,,,0.00276,0.00456,0.00881,,,,,,,,0.00135,0.00219,0.00403,,,,,,,,0.00157,0.00265,0.00477,,,,,,,,0.00129,0.00209,0.00385,,,,,,,,0.00177,0.00288,0.00543,,,,,,,,0.00127,0.00206,0.00378,,,,,,,,0.05366,0.04305,0.05106,,,,,,,,0.04786,0.03986,0.04788,,,,,,,,0.05534,0.04602,0.05661,,,,,,,,0.06135,0.05085,0.06169,,,,,,,,0.03372,0.03133,0.04069,,,,,,,,0.04005,0.03678,0.04597,,,,,,,,0.03323,0.03048,0.03942,,,,,,,,0.04178,0.03615,0.04513,,,,,,,,0.0295,0.027,0.03405,,,,,,,,4.27021,5.43228,7.3777,,,,,,,,4.10243,5.41519,7.31027,,,,,,,,4.6053,6.18697,8.42498,,,,,,,,4.95648,6.66506,9.05886,,,,,,,,4.24619,5.85746,7.74911,,,,,,,,4.41903,6.13778,8.10099,,,,,,,,4.40302,5.92641,7.81561,,,,,,,,4.32503,5.76681,7.69855,,,,,,,,3.73334,4.96647,6.49375,,,,,,,,381.40448,385.73771,392.04761,,,,,,,,384.81454,388.85246,394.67791,,,,,,,,391.13188,395.33509,401.45077,,,,,,,,381.65622,386.05248,392.47664,,,,,,,,391.94133,394.88062,398.90112,,,,,,,,385.52286,390.31431,393.55672,,,,,,,,388.16047,390.99977,394.8442,,,,,,,,388.49771,391.91338,396.71268,,,,,,,,381.16645,384.19259,388.32535,,,,,,,,0.00769,0.00903,0.01373,,,,,,,,0.0077,0.00905,0.01374,,,,,,,,0.00771,0.00905,0.01373,,,,,,,,0.0078,0.00918,0.01395,,,,,,,,0.00773,0.00907,0.01377,,,,,,,,0.00782,0.00918,0.01395,,,,,,,,0.00773,0.00908,0.01379,,,,,,,,0.00775,0.00909,0.01381,,,,,,,,0.00762,0.00894,0.01358,,,,,,,,0.0254,0.0315,0.03552,,,,,,,,0.02546,0.03157,0.0356,,,,,,,,0.02553,0.03165,0.0357,,,,,,,,0.02523,0.03128,0.03528,,,,,,,,0.02549,0.03161,0.03565,,,,,,,,0.02532,0.03139,0.0354,,,,,,,,0.0254,0.03149,0.03551,,,,,,,,0.02549,0.03161,0.03565,,,,,,,,0.02555,0.03168,0.03573,,,,,,,,0.40964,0.54392,0.63575,,,,,,,,0.39887,0.54686,0.63907,,,,,,,,0.44885,0.60545,0.7197,,,,,,,,0.46965,0.63416,0.76018,,,,,,,,0.42851,0.5863,0.70048,,,,,,,,0.44706,0.6072,0.72627,,,,,,,,0.43577,0.58189,0.69223,,,,,,,,0.45634,0.61099,0.71815,,,,,,,,0.40509,0.5459,0.63333,,,,,,,,0.00535,0.00812,0.01436,,,,,,,,0.00483,0.00733,0.01284,,,,,,,,0.00528,0.00802,0.01407,,,,,,,,0.00563,0.00858,0.01524,,,,,,,,0.00326,0.00497,0.00842,,,,,,,,0.00363,0.00567,0.00946,,,,,,,,0.00316,0.00481,0.00817,,,,,,,,0.00402,0.0061,0.01055,,,,,,,,0.00318,0.00482,0.00819,,,,,,,,0.03982,0.04601,0.06002,,,,,,,,0.03963,0.04516,0.05745,,,,,,,,0.04314,0.04925,0.06284,,,,,,,,0.0389,0.04556,0.06066,,,,,,,,0.0382,0.04187,0.04939,,,,,,,,0.03648,0.04107,0.04928,,,,,,,,0.03539,0.03893,0.0462,,,,,,,,0.03861,0.04318,0.053,,,,,,,,0.03629,0.03981,0.04707,,,,,,,,0.01388,0.01936,0.03175,,,,,,,,0.01298,0.01787,0.02874,,,,,,,,0.01418,0.01958,0.03161,,,,,,,,0.01429,0.02018,0.03354,,,,,,,,0.01016,0.01341,0.02005,,,,,,,,0.01057,0.01454,0.02189,,,,,,,,0.00964,0.01277,0.0192,,,,,,,,0.01148,0.01552,0.02421,,,,,,,,0.00975,0.01287,0.01929,,,,,,,,0.01249,0.01114,0.00377,,,,,,,,0.0126,0.01123,0.0038,,,,,,,,0.01281,0.01142,0.00386,,,,,,,,0.0125,0.01115,0.00378,,,,,,,,0.01283,0.0114,0.00384,,,,,,,,0.01262,0.01127,0.00379,,,,,,,,0.01271,0.01129,0.0038,,,,,,,,0.01272,0.01132,0.00382,,,,,,,,0.01248,0.01109,0.00374,,,,,,,,0.34619,0.45995,0.47959,,,,,,,,0.30694,0.42044,0.43793,,,,,,,,0.3542,0.48457,0.5032,,,,,,,,0.39397,0.53717,0.5564,,,,,,,,0.20204,0.30778,0.31744,,,,,,,,0.24482,0.37006,0.37204,,,,,,,,0.19658,0.29637,0.30547,,,,,,,,0.2591,0.36851,0.3817,,,,,,,,0.17513,0.26386,0.2717,,,,,, +Full size car,E85,2010,,0.00124,0.002,0.00323,0.00684,,,,,,,0.0011,0.00177,0.00285,0.00597,,,,,,,0.00122,0.00196,0.00316,0.00669,,,,,,,0.00136,0.00221,0.00357,0.0076,,,,,,,0.00074,0.00116,0.00184,0.00367,,,,,,,0.00083,0.00136,0.0021,0.00427,,,,,,,0.00072,0.00112,0.00177,0.00352,,,,,,,0.00092,0.00146,0.00233,0.00479,,,,,,,0.00071,0.00111,0.00174,0.00344,,,,,,,0.0466,0.03215,0.02481,0.03238,,,,,,,0.04012,0.029,0.02273,0.02997,,,,,,,0.04548,0.03417,0.02678,0.0356,,,,,,,0.05257,0.03902,0.03042,0.03981,,,,,,,0.02541,0.02329,0.01943,0.02592,,,,,,,0.0295,0.02668,0.02156,0.02899,,,,,,,0.02462,0.02269,0.01902,0.02527,,,,,,,0.03286,0.02672,0.02153,0.02855,,,,,,,0.02367,0.0207,0.01698,0.02204,,,,,,,2.34552,3.64526,4.88194,6.25986,,,,,,,2.19629,3.58182,4.83606,6.19455,,,,,,,2.34845,3.99168,5.50917,7.14234,,,,,,,2.55452,4.32638,5.98278,7.72275,,,,,,,1.95002,3.65359,5.1282,6.58641,,,,,,,2.05296,3.84996,5.3336,6.89061,,,,,,,2.01268,3.72218,5.20828,6.66463,,,,,,,2.11939,3.70794,5.103,6.54347,,,,,,,1.79573,3.20272,4.36717,5.53591,,,,,,,373.8286,376.48579,381.03238,388.99366,,,,,,,377.37699,379.83005,384.05277,391.52063,,,,,,,383.51483,386.07304,390.47474,398.24205,,,,,,,374.05833,376.743,381.36699,389.45895,,,,,,,385.08983,386.79058,389.80923,395.42654,,,,,,,378.50964,381.87893,383.95487,390.2564,,,,,,,381.42668,383.05673,385.97092,391.41827,,,,,,,381.39757,383.4241,386.96506,393.38401,,,,,,,374.37219,376.16073,379.26763,384.97694,,,,,,,0.00685,0.00774,0.00923,0.01206,,,,,,,0.00686,0.00775,0.00924,0.01207,,,,,,,0.00688,0.00776,0.00924,0.01205,,,,,,,0.00694,0.00785,0.00938,0.01226,,,,,,,0.00689,0.00778,0.00927,0.01209,,,,,,,0.00696,0.00786,0.00938,0.01226,,,,,,,0.00688,0.00778,0.00928,0.01211,,,,,,,0.0069,0.00779,0.00929,0.01213,,,,,,,0.00679,0.00767,0.00914,0.01192,,,,,,,0.01689,0.0196,0.02529,0.02701,,,,,,,0.01693,0.01964,0.02535,0.02707,,,,,,,0.01698,0.0197,0.02542,0.02714,,,,,,,0.01678,0.01946,0.02511,0.02682,,,,,,,0.01695,0.01967,0.02538,0.0271,,,,,,,0.01684,0.01953,0.0252,0.02691,,,,,,,0.01689,0.01959,0.02528,0.027,,,,,,,0.01695,0.01967,0.02538,0.0271,,,,,,,0.01699,0.01971,0.02543,0.02716,,,,,,,0.10867,0.17763,0.18977,0.31855,,,,,,,0.10408,0.17698,0.18848,0.31788,,,,,,,0.10819,0.19527,0.20583,0.35707,,,,,,,0.11242,0.20745,0.21881,0.38076,,,,,,,0.09689,0.18327,0.19294,0.34107,,,,,,,0.10245,0.19297,0.20307,0.35743,,,,,,,0.09914,0.18316,0.19283,0.33806,,,,,,,0.10861,0.19571,0.20352,0.35215,,,,,,,0.09774,0.17375,0.18033,0.30781,,,,,,,0.0022,0.00339,0.00524,0.01077,,,,,,,0.00207,0.00317,0.00486,0.00982,,,,,,,0.00217,0.00335,0.00516,0.0106,,,,,,,0.00229,0.00355,0.00551,0.01145,,,,,,,0.00171,0.00258,0.00389,0.00722,,,,,,,0.00179,0.00274,0.00411,0.00784,,,,,,,0.00169,0.00254,0.00383,0.00706,,,,,,,0.00189,0.00287,0.00437,0.00849,,,,,,,0.0017,0.00255,0.00384,0.00706,,,,,,,0.03326,0.03598,0.04021,0.05289,,,,,,,0.03388,0.03636,0.0402,0.05146,,,,,,,0.03668,0.03935,0.04351,0.05594,,,,,,,0.03191,0.03482,0.03937,0.05312,,,,,,,0.03501,0.03686,0.03968,0.04701,,,,,,,0.03266,0.0349,0.03774,0.04605,,,,,,,0.03235,0.03416,0.03692,0.044,,,,,,,0.03419,0.03635,0.03968,0.04891,,,,,,,0.03326,0.03507,0.03781,0.04484,,,,,,,0.00808,0.01048,0.01422,0.02545,,,,,,,0.00789,0.01008,0.01348,0.02344,,,,,,,0.00846,0.01083,0.0145,0.0255,,,,,,,0.00811,0.01068,0.01471,0.02687,,,,,,,0.00733,0.00897,0.01147,0.01795,,,,,,,0.00719,0.00907,0.01169,0.01904,,,,,,,0.00695,0.00855,0.01099,0.01725,,,,,,,0.00757,0.00948,0.01242,0.0206,,,,,,,0.00707,0.00867,0.0111,0.01732,,,,,,,0.01224,0.01087,0.00367,0.00374,,,,,,,0.01236,0.01097,0.0037,0.00377,,,,,,,0.01256,0.01115,0.00376,0.00383,,,,,,,0.01225,0.01088,0.00367,0.00375,,,,,,,0.01261,0.01117,0.00375,0.00381,,,,,,,0.01239,0.01103,0.0037,0.00376,,,,,,,0.01249,0.01106,0.00372,0.00377,,,,,,,0.01249,0.01107,0.00372,0.00379,,,,,,,0.01226,0.01086,0.00365,0.00371,,,,,,,0.13711,0.19278,0.26132,0.37789,,,,,,,0.11608,0.1704,0.23575,0.34366,,,,,,,0.13369,0.20123,0.27801,0.40613,,,,,,,0.15637,0.23229,0.3182,0.45895,,,,,,,0.06809,0.12556,0.18978,0.27666,,,,,,,0.08143,0.14761,0.21345,0.31424,,,,,,,0.065,0.1208,0.18402,0.2678,,,,,,,0.09224,0.15044,0.21657,0.31576,,,,,,,0.06239,0.11087,0.1654,0.23613,,,,, +Full size car,E85,2015,,,0.00107,0.00165,0.00275,0.00543,,,,,,,0.00097,0.00149,0.00248,0.00485,,,,,,,0.00105,0.00162,0.0027,0.00532,,,,,,,0.00115,0.00178,0.00298,0.00593,,,,,,,0.0007,0.00106,0.00173,0.00323,,,,,,,0.00079,0.00118,0.00194,0.00367,,,,,,,0.00068,0.00104,0.00169,0.00313,,,,,,,0.00083,0.00127,0.0021,0.00402,,,,,,,0.00067,0.00102,0.00166,0.00306,,,,,,,0.03485,0.02289,0.02063,0.02374,,,,,,,0.03152,0.02121,0.01951,0.02243,,,,,,,0.03447,0.02463,0.0227,0.0263,,,,,,,0.03851,0.0275,0.02521,0.02913,,,,,,,0.02223,0.01819,0.01813,0.02087,,,,,,,0.02576,0.02018,0.01983,0.0229,,,,,,,0.02178,0.01784,0.0179,0.02056,,,,,,,0.02692,0.02019,0.01929,0.02218,,,,,,,0.02101,0.01623,0.01592,0.01805,,,,,,,1.84654,3.25444,4.35461,5.38343,,,,,,,1.81477,3.25144,4.38764,5.40675,,,,,,,1.88894,3.60697,4.98466,6.18481,,,,,,,2.03745,3.88002,5.37692,6.64872,,,,,,,1.71328,3.49235,4.89905,5.99997,,,,,,,1.79117,3.58375,5.03942,6.2051,,,,,,,1.76746,3.57149,4.99542,6.10296,,,,,,,1.78965,3.46223,4.76612,5.84872,,,,,,,1.58714,3.06512,4.17539,5.0757,,,,,,,338.70878,341.25982,343.76078,351.50711,,,,,,,341.83755,344.15928,346.35219,353.67892,,,,,,,347.42618,349.85922,352.18677,359.78371,,,,,,,338.95121,341.53891,344.10576,351.97229,,,,,,,348.52169,350.00298,351.07207,356.81472,,,,,,,343.94128,344.48491,345.98897,352.31121,,,,,,,345.19505,346.60429,347.59402,353.18517,,,,,,,345.30944,347.15564,348.71385,355.14246,,,,,,,338.83939,340.41919,341.61991,347.4129,,,,,,,0.00444,0.00502,0.0058,0.00773,,,,,,,0.00447,0.00504,0.00582,0.00775,,,,,,,0.00451,0.00509,0.00586,0.00777,,,,,,,0.00447,0.00506,0.00586,0.00783,,,,,,,0.00452,0.00509,0.00586,0.00779,,,,,,,0.00452,0.0051,0.00589,0.00786,,,,,,,0.00447,0.00505,0.00583,0.00777,,,,,,,0.0045,0.00508,0.00586,0.0078,,,,,,,0.00443,0.005,0.00577,0.00767,,,,,,,0.01689,0.01974,0.02529,0.02546,,,,,,,0.01693,0.01979,0.02535,0.02552,,,,,,,0.01698,0.01984,0.02542,0.02559,,,,,,,0.01678,0.01961,0.02511,0.02529,,,,,,,0.01695,0.01981,0.02538,0.02555,,,,,,,0.01684,0.01968,0.0252,0.02538,,,,,,,0.01689,0.01974,0.02528,0.02546,,,,,,,0.01695,0.01981,0.02538,0.02555,,,,,,,0.01699,0.01986,0.02543,0.02561,,,,,,,0.08873,0.11753,0.16803,0.2269,,,,,,,0.08787,0.11607,0.16648,0.22512,,,,,,,0.0894,0.12717,0.18135,0.24781,,,,,,,0.0937,0.1356,0.19339,0.26473,,,,,,,0.07904,0.11606,0.16835,0.23214,,,,,,,0.08462,0.12322,0.17801,0.24507,,,,,,,0.08041,0.11602,0.16859,0.23163,,,,,,,0.08878,0.12446,0.17859,0.24333,,,,,,,0.08006,0.10955,0.1577,0.2136,,,,,,,0.00203,0.00303,0.00478,0.00866,,,,,,,0.00193,0.00288,0.00452,0.00809,,,,,,,0.00201,0.003,0.00473,0.00855,,,,,,,0.00208,0.00312,0.00495,0.00908,,,,,,,0.00167,0.00246,0.00379,0.00648,,,,,,,0.00174,0.00255,0.00396,0.00687,,,,,,,0.00165,0.00243,0.00375,0.00638,,,,,,,0.0018,0.00267,0.00415,0.00727,,,,,,,0.00166,0.00245,0.00376,0.00639,,,,,,,0.0328,0.03502,0.03899,0.04803,,,,,,,0.03353,0.0356,0.03929,0.0475,,,,,,,0.03624,0.03842,0.04235,0.05123,,,,,,,0.03135,0.03368,0.03787,0.04757,,,,,,,0.03488,0.03654,0.03942,0.04535,,,,,,,0.03266,0.03425,0.03734,0.04386,,,,,,,0.03225,0.03388,0.03671,0.0425,,,,,,,0.03396,0.03582,0.0391,0.04615,,,,,,,0.03316,0.03479,0.03761,0.04335,,,,,,,0.00767,0.00963,0.01315,0.02114,,,,,,,0.00758,0.00941,0.01267,0.01993,,,,,,,0.00807,0.01001,0.01348,0.02133,,,,,,,0.00761,0.00967,0.01338,0.02197,,,,,,,0.00722,0.00869,0.01124,0.01648,,,,,,,0.0071,0.0086,0.01133,0.01709,,,,,,,0.00686,0.0083,0.0108,0.01592,,,,,,,0.00737,0.00901,0.01191,0.01815,,,,,,,0.00698,0.00843,0.01092,0.016,,,,,,,0.00978,0.00328,0.00331,0.00338,,,,,,,0.00987,0.00331,0.00333,0.0034,,,,,,,0.01003,0.00337,0.00339,0.00346,,,,,,,0.00979,0.00329,0.00331,0.00339,,,,,,,0.01006,0.00337,0.00338,0.00343,,,,,,,0.00993,0.00332,0.00333,0.00339,,,,,,,0.00997,0.00334,0.00335,0.0034,,,,,,,0.00997,0.00334,0.00336,0.00342,,,,,,,0.00978,0.00328,0.00329,0.00334,,,,,,,0.09857,0.14333,0.21165,0.28985,,,,,,,0.08741,0.13087,0.19744,0.27031,,,,,,,0.09711,0.152,0.22956,0.31668,,,,,,,0.10992,0.17081,0.25617,0.35284,,,,,,,0.05693,0.10564,0.17445,0.24013,,,,,,,0.06835,0.11892,0.19293,0.26625,,,,,,,0.05507,0.10266,0.1708,0.23483,,,,,,,0.07209,0.12068,0.19006,0.26088,,,,,,,0.05293,0.0938,0.15285,0.20746,,,, +Full size car,E85,2020,,,,0.00087,0.00132,0.00202,0.00412,,,,,,,0.0008,0.0012,0.00184,0.0037,,,,,,,0.00085,0.0013,0.00199,0.00404,,,,,,,0.00093,0.00141,0.00218,0.00448,,,,,,,0.00058,0.00087,0.0013,0.00252,,,,,,,0.00064,0.00096,0.00145,0.00285,,,,,,,0.00057,0.00085,0.00127,0.00245,,,,,,,0.00069,0.00103,0.00156,0.0031,,,,,,,0.00057,0.00084,0.00125,0.0024,,,,,,,0.02681,0.0184,0.01519,0.01768,,,,,,,0.02379,0.01675,0.01408,0.0165,,,,,,,0.02646,0.01947,0.01639,0.01951,,,,,,,0.02992,0.0219,0.01835,0.02174,,,,,,,0.01524,0.01318,0.01202,0.01471,,,,,,,0.01785,0.01495,0.01341,0.01637,,,,,,,0.01476,0.01286,0.01181,0.01445,,,,,,,0.0195,0.01527,0.01332,0.01598,,,,,,,0.01413,0.0117,0.01053,0.0126,,,,,,,1.45352,2.16089,2.69234,3.59311,,,,,,,1.41959,2.13393,2.67506,3.57809,,,,,,,1.48991,2.36658,3.03156,4.13073,,,,,,,1.61907,2.57225,3.31014,4.48364,,,,,,,1.3158,2.21066,2.86233,3.9013,,,,,,,1.36795,2.29185,2.97826,4.07701,,,,,,,1.35422,2.26522,2.9278,3.97383,,,,,,,1.38697,2.22909,2.8408,3.84006,,,,,,,1.21288,1.94605,2.45152,3.27953,,,,,,,269.01533,270.89532,272.70549,288.82344,,,,,,,271.33691,273.03425,274.58678,290.39166,,,,,,,275.82729,277.61108,279.27164,295.47622,,,,,,,269.27046,271.18449,273.05384,289.29186,,,,,,,276.06689,277.09473,277.71353,292.20287,,,,,,,271.67987,272.9616,273.94543,288.82857,,,,,,,273.40893,274.3833,274.93984,289.2015,,,,,,,273.76964,275.08856,276.11337,291.16434,,,,,,,268.43382,269.53809,270.26469,284.54788,,,,,,,0.00453,0.00505,0.00577,0.00714,,,,,,,0.00455,0.00507,0.0058,0.00716,,,,,,,0.0046,0.00511,0.00583,0.00718,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00511,0.00584,0.0072,,,,,,,0.0046,0.00512,0.00587,0.00725,,,,,,,0.00455,0.00507,0.00581,0.00717,,,,,,,0.00458,0.0051,0.00584,0.0072,,,,,,,0.00451,0.00502,0.00574,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01972,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06124,0.0945,0.12673,0.1696,,,,,,,0.06,0.09287,0.12491,0.16743,,,,,,,0.06149,0.10133,0.13546,0.18437,,,,,,,0.065,0.1087,0.1454,0.19837,,,,,,,0.05169,0.09018,0.12245,0.16857,,,,,,,0.05617,0.09681,0.13099,0.17994,,,,,,,0.05249,0.09057,0.12326,0.16877,,,,,,,0.05882,0.09832,0.13227,0.17926,,,,,,,0.0517,0.08561,0.1155,0.15524,,,,,,,0.0017,0.00245,0.00356,0.0066,,,,,,,0.00163,0.00234,0.00338,0.00619,,,,,,,0.00168,0.00243,0.00352,0.00652,,,,,,,0.00174,0.00252,0.00368,0.00688,,,,,,,0.00142,0.00202,0.00286,0.00505,,,,,,,0.00146,0.00209,0.00298,0.00533,,,,,,,0.00141,0.002,0.00283,0.00498,,,,,,,0.00153,0.00218,0.00312,0.00561,,,,,,,0.00142,0.00201,0.00284,0.00499,,,,,,,0.03205,0.03375,0.03627,0.04333,,,,,,,0.03284,0.03442,0.03676,0.04324,,,,,,,0.0355,0.03717,0.03966,0.04661,,,,,,,0.03056,0.03233,0.03499,0.04252,,,,,,,0.03435,0.03562,0.03744,0.04227,,,,,,,0.03192,0.03327,0.03523,0.04049,,,,,,,0.03172,0.03297,0.03476,0.0395,,,,,,,0.03335,0.03477,0.03685,0.04249,,,,,,,0.03264,0.03388,0.03567,0.04036,,,,,,,0.00701,0.00851,0.01074,0.01699,,,,,,,0.00697,0.00837,0.01044,0.01617,,,,,,,0.00742,0.0089,0.0111,0.01725,,,,,,,0.00691,0.00848,0.01083,0.0175,,,,,,,0.00675,0.00787,0.00949,0.01376,,,,,,,0.00654,0.00773,0.00946,0.01412,,,,,,,0.00639,0.0075,0.00908,0.01327,,,,,,,0.00683,0.00809,0.00993,0.01492,,,,,,,0.00652,0.00762,0.0092,0.01335,,,,,,,0.00259,0.00261,0.00262,0.00278,,,,,,,0.00261,0.00263,0.00264,0.0028,,,,,,,0.00265,0.00267,0.00269,0.00284,,,,,,,0.00259,0.00261,0.00263,0.00278,,,,,,,0.00266,0.00267,0.00267,0.00281,,,,,,,0.00261,0.00263,0.00264,0.00278,,,,,,,0.00263,0.00264,0.00265,0.00278,,,,,,,0.00264,0.00265,0.00266,0.0028,,,,,,,0.00258,0.00259,0.0026,0.00274,,,,,,,0.08216,0.11442,0.15619,0.21824,,,,,,,0.07213,0.10264,0.1424,0.20078,,,,,,,0.08106,0.11925,0.16565,0.23725,,,,,,,0.09228,0.13498,0.18658,0.26605,,,,,,,0.04408,0.0752,0.11299,0.16907,,,,,,,0.0527,0.08696,0.12835,0.19074,,,,,,,0.04227,0.07265,0.10993,0.16461,,,,,,,0.05801,0.09032,0.12989,0.18885,,,,,,,0.04032,0.06646,0.09873,0.14442,,, +Full size car,E85,2025,,,,,0.00057,0.00084,0.00131,0.00275,,,,,,,0.00052,0.00077,0.00119,0.00247,,,,,,,0.00056,0.00083,0.00129,0.0027,,,,,,,0.00061,0.00091,0.00142,0.00298,,,,,,,0.00038,0.00056,0.00085,0.0017,,,,,,,0.00042,0.00062,0.00094,0.00192,,,,,,,0.00037,0.00054,0.00082,0.00165,,,,,,,0.00045,0.00066,0.00102,0.00208,,,,,,,0.00037,0.00054,0.00081,0.00162,,,,,,,0.02351,0.01489,0.01178,0.01359,,,,,,,0.02039,0.01319,0.01062,0.01237,,,,,,,0.02304,0.01537,0.01238,0.01461,,,,,,,0.02641,0.01752,0.01404,0.01647,,,,,,,0.01161,0.00901,0.00796,0.00986,,,,,,,0.01419,0.01062,0.00917,0.01127,,,,,,,0.01109,0.00869,0.00774,0.00961,,,,,,,0.01595,0.01125,0.00942,0.01132,,,,,,,0.01058,0.00795,0.00694,0.00843,,,,,,,1.08539,1.56339,1.96562,2.58505,,,,,,,1.03627,1.5157,1.92032,2.53384,,,,,,,1.09635,1.68349,2.17513,2.91486,,,,,,,1.2089,1.85454,2.40288,3.19971,,,,,,,0.88898,1.47777,1.94572,2.62271,,,,,,,0.94479,1.55716,2.05286,2.77409,,,,,,,0.91344,1.51548,1.99261,2.67546,,,,,,,0.97421,1.53404,1.98107,2.64422,,,,,,,0.82125,1.30501,1.6716,2.21604,,,,,,,217.66378,219.28844,221.18074,235.00765,,,,,,,219.41191,220.88356,222.55123,236.08278,,,,,,,223.08672,224.63174,226.40032,240.28406,,,,,,,217.92165,219.57679,221.52542,235.46978,,,,,,,222.77742,223.68621,224.53661,236.84508,,,,,,,219.42429,220.5464,221.71518,234.40238,,,,,,,220.61456,221.4783,222.27308,234.38491,,,,,,,221.12115,222.27455,223.48068,236.3124,,,,,,,216.64457,217.61431,218.54645,230.68156,,,,,,,0.00456,0.00504,0.00575,0.00702,,,,,,,0.00458,0.00506,0.00578,0.00704,,,,,,,0.00462,0.0051,0.00581,0.00707,,,,,,,0.00459,0.00508,0.00581,0.0071,,,,,,,0.00463,0.00511,0.00582,0.00708,,,,,,,0.00463,0.00512,0.00585,0.00713,,,,,,,0.00458,0.00507,0.00579,0.00706,,,,,,,0.00461,0.0051,0.00582,0.00708,,,,,,,0.00454,0.00502,0.00572,0.00697,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04691,0.06846,0.09104,0.12418,,,,,,,0.0454,0.06658,0.08888,0.12158,,,,,,,0.04658,0.07207,0.09571,0.13307,,,,,,,0.04969,0.0779,0.10349,0.14401,,,,,,,0.03693,0.06116,0.08298,0.1173,,,,,,,0.04116,0.06699,0.09036,0.12712,,,,,,,0.03763,0.06173,0.0839,0.11789,,,,,,,0.04308,0.06819,0.09138,0.12694,,,,,,,0.03685,0.05828,0.07856,0.10842,,,,,,,0.00111,0.00158,0.00232,0.00442,,,,,,,0.00106,0.0015,0.0022,0.00416,,,,,,,0.0011,0.00156,0.0023,0.00437,,,,,,,0.00114,0.00162,0.0024,0.00461,,,,,,,0.00093,0.0013,0.00187,0.0034,,,,,,,0.00096,0.00134,0.00194,0.00359,,,,,,,0.00092,0.00128,0.00185,0.00336,,,,,,,0.001,0.0014,0.00203,0.00378,,,,,,,0.00093,0.00129,0.00186,0.00336,,,,,,,0.03078,0.03182,0.03352,0.03838,,,,,,,0.03163,0.03261,0.03418,0.03866,,,,,,,0.03424,0.03527,0.03694,0.04173,,,,,,,0.02924,0.03033,0.03212,0.03729,,,,,,,0.03333,0.03411,0.03534,0.03873,,,,,,,0.03086,0.03169,0.03301,0.03668,,,,,,,0.03071,0.03148,0.03269,0.03601,,,,,,,0.03224,0.03311,0.03451,0.03844,,,,,,,0.03162,0.03239,0.0336,0.03689,,,,,,,0.00589,0.00681,0.00831,0.01261,,,,,,,0.0059,0.00676,0.00815,0.01212,,,,,,,0.00631,0.00722,0.00869,0.01293,,,,,,,0.00575,0.00671,0.00829,0.01287,,,,,,,0.00585,0.00654,0.00763,0.01062,,,,,,,0.0056,0.00633,0.0075,0.01075,,,,,,,0.0055,0.00618,0.00725,0.01019,,,,,,,0.00584,0.00662,0.00786,0.01133,,,,,,,0.00562,0.0063,0.00737,0.01028,,,,,,,0.0021,0.00211,0.00213,0.00226,,,,,,,0.00211,0.00213,0.00214,0.00227,,,,,,,0.00215,0.00216,0.00218,0.00231,,,,,,,0.0021,0.00211,0.00213,0.00227,,,,,,,0.00214,0.00215,0.00216,0.00228,,,,,,,0.00211,0.00212,0.00213,0.00226,,,,,,,0.00212,0.00213,0.00214,0.00226,,,,,,,0.00213,0.00214,0.00215,0.00227,,,,,,,0.00209,0.00209,0.0021,0.00222,,,,,,,0.07296,0.09507,0.12517,0.17166,,,,,,,0.06262,0.083,0.11094,0.15395,,,,,,,0.07139,0.09674,0.12936,0.18163,,,,,,,0.08235,0.11099,0.14764,0.20603,,,,,,,0.03367,0.05226,0.07628,0.11432,,,,,,,0.04216,0.06311,0.09001,0.13304,,,,,,,0.03181,0.04984,0.07339,0.11035,,,,,,,0.0479,0.0682,0.09461,0.13618,,,,,,,0.03024,0.04581,0.06634,0.09752,, +Full size car,E85,2030,,,,,,0.00057,0.00084,0.00131,0.00237,,,,,,,0.00052,0.00077,0.00119,0.00214,,,,,,,0.00056,0.00083,0.00129,0.00233,,,,,,,0.00061,0.0009,0.00141,0.00257,,,,,,,0.00038,0.00055,0.00084,0.00147,,,,,,,0.00042,0.00061,0.00094,0.00166,,,,,,,0.00037,0.00054,0.00082,0.00143,,,,,,,0.00045,0.00066,0.00101,0.0018,,,,,,,0.00037,0.00053,0.00081,0.0014,,,,,,,0.02236,0.01377,0.01077,0.01198,,,,,,,0.01923,0.01206,0.0096,0.01074,,,,,,,0.02185,0.01406,0.0112,0.01262,,,,,,,0.02517,0.01612,0.01277,0.01433,,,,,,,0.0104,0.00771,0.00677,0.00788,,,,,,,0.01296,0.00926,0.00793,0.00917,,,,,,,0.00987,0.00739,0.00656,0.00764,,,,,,,0.01474,0.00998,0.00828,0.00944,,,,,,,0.00941,0.00678,0.0059,0.00676,,,,,,,0.98558,1.41119,1.78735,2.24138,,,,,,,0.93289,1.35869,1.73542,2.17671,,,,,,,0.99005,1.50974,1.96577,2.49085,,,,,,,1.09763,1.67095,2.18034,2.75085,,,,,,,0.77517,1.29287,1.72198,2.17577,,,,,,,0.83148,1.37107,1.82657,2.31624,,,,,,,0.79585,1.32603,1.76386,2.22195,,,,,,,0.86339,1.35825,1.77077,2.22899,,,,,,,0.71656,1.14344,1.48068,1.84947,,,,,,,200.30571,202.3278,205.46049,214.30265,,,,,,,201.86591,203.75013,206.67797,215.20462,,,,,,,205.2631,207.22437,210.27146,219.06104,,,,,,,200.56287,202.61433,205.80491,214.75751,,,,,,,204.79094,206.16221,208.32421,215.62132,,,,,,,201.77862,203.33949,205.78757,213.51296,,,,,,,202.79611,204.12091,206.21704,213.37154,,,,,,,203.34232,204.93589,207.42999,215.25765,,,,,,,199.16263,200.5746,202.77501,210.02386,,,,,,,0.00455,0.00502,0.00575,0.00698,,,,,,,0.00457,0.00504,0.00577,0.007,,,,,,,0.00462,0.00509,0.00581,0.00703,,,,,,,0.00458,0.00506,0.0058,0.00707,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00462,0.0051,0.00584,0.00709,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00693,,,,,,,0.01689,0.01965,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04137,0.0591,0.07995,0.10563,,,,,,,0.03976,0.05713,0.07767,0.10283,,,,,,,0.04076,0.06155,0.08336,0.11163,,,,,,,0.04365,0.06677,0.09043,0.12112,,,,,,,0.03121,0.05078,0.07074,0.09592,,,,,,,0.03531,0.05629,0.07774,0.10501,,,,,,,0.03188,0.05138,0.07166,0.09672,,,,,,,0.03694,0.05733,0.07862,0.10518,,,,,,,0.03113,0.04851,0.06706,0.08926,,,,,,,0.00111,0.00157,0.00232,0.00386,,,,,,,0.00106,0.0015,0.0022,0.00363,,,,,,,0.0011,0.00156,0.0023,0.00381,,,,,,,0.00114,0.00161,0.0024,0.00401,,,,,,,0.00093,0.00129,0.00187,0.00298,,,,,,,0.00096,0.00134,0.00194,0.00314,,,,,,,0.00092,0.00128,0.00185,0.00295,,,,,,,0.001,0.0014,0.00203,0.00331,,,,,,,0.00093,0.00129,0.00186,0.00295,,,,,,,0.03078,0.03181,0.03351,0.03708,,,,,,,0.03163,0.03259,0.03418,0.03746,,,,,,,0.03424,0.03525,0.03694,0.04045,,,,,,,0.02924,0.03032,0.03212,0.03591,,,,,,,0.03333,0.0341,0.03534,0.03781,,,,,,,0.03086,0.03168,0.03301,0.0357,,,,,,,0.03071,0.03147,0.03269,0.03512,,,,,,,0.03223,0.0331,0.03451,0.03738,,,,,,,0.03162,0.03238,0.03359,0.036,,,,,,,0.00588,0.00679,0.0083,0.01146,,,,,,,0.0059,0.00675,0.00815,0.01106,,,,,,,0.0063,0.0072,0.00869,0.0118,,,,,,,0.00575,0.0067,0.00829,0.01165,,,,,,,0.00585,0.00653,0.00763,0.00982,,,,,,,0.00559,0.00632,0.0075,0.00988,,,,,,,0.0055,0.00617,0.00725,0.0094,,,,,,,0.00584,0.00661,0.00786,0.0104,,,,,,,0.00562,0.00629,0.00737,0.00949,,,,,,,0.00193,0.00195,0.00198,0.00206,,,,,,,0.00194,0.00196,0.00199,0.00207,,,,,,,0.00198,0.00199,0.00202,0.00211,,,,,,,0.00193,0.00195,0.00198,0.00207,,,,,,,0.00197,0.00198,0.00201,0.00208,,,,,,,0.00194,0.00196,0.00198,0.00206,,,,,,,0.00195,0.00196,0.00198,0.00205,,,,,,,0.00196,0.00197,0.002,0.00207,,,,,,,0.00192,0.00193,0.00195,0.00202,,,,,,,0.0696,0.08869,0.11629,0.15342,,,,,,,0.05924,0.07661,0.10197,0.13549,,,,,,,0.0679,0.08937,0.11901,0.15916,,,,,,,0.07869,0.10307,0.1365,0.18182,,,,,,,0.03022,0.04508,0.06595,0.09205,,,,,,,0.03862,0.05558,0.0792,0.10947,,,,,,,0.02837,0.04271,0.06311,0.08831,,,,,,,0.04444,0.06117,0.08463,0.11497,,,,,,,0.02693,0.03939,0.05722,0.07884, +Full size car,E85,2035,,,,,,,0.00057,0.00084,0.00131,0.00233,,,,,,,0.00052,0.00077,0.00119,0.0021,,,,,,,0.00056,0.00083,0.00129,0.00229,,,,,,,0.00061,0.0009,0.00142,0.00252,,,,,,,0.00038,0.00056,0.00084,0.00145,,,,,,,0.00042,0.00061,0.00094,0.00163,,,,,,,0.00037,0.00054,0.00082,0.00141,,,,,,,0.00045,0.00066,0.00102,0.00177,,,,,,,0.00037,0.00054,0.00081,0.00138,,,,,,,0.0222,0.01375,0.01078,0.01175,,,,,,,0.0191,0.01204,0.00961,0.0105,,,,,,,0.0217,0.01404,0.01121,0.01232,,,,,,,0.025,0.0161,0.01278,0.014,,,,,,,0.01034,0.00771,0.00678,0.00755,,,,,,,0.01288,0.00926,0.00794,0.00884,,,,,,,0.00981,0.00739,0.00656,0.00732,,,,,,,0.01464,0.00997,0.00829,0.00914,,,,,,,0.00935,0.00678,0.0059,0.0065,,,,,,,0.98657,1.41248,1.78821,2.19293,,,,,,,0.93426,1.36,1.73617,2.12567,,,,,,,0.99163,1.51136,1.96664,2.42952,,,,,,,1.09929,1.67271,2.18132,2.68577,,,,,,,0.7778,1.29441,1.72248,2.10907,,,,,,,0.834,1.37269,1.82716,2.24814,,,,,,,0.79861,1.32758,1.76433,2.15426,,,,,,,0.86555,1.35965,1.77141,2.16803,,,,,,,0.71875,1.14457,1.48115,1.79525,,,,,,,200.25816,202.33776,205.47918,211.25641,,,,,,,201.82136,203.75952,206.69507,212.12905,,,,,,,205.21644,207.23425,210.28993,215.93624,,,,,,,200.51388,202.6244,205.82391,211.712,,,,,,,204.75598,206.1685,208.33593,212.4795,,,,,,,201.73976,203.34697,205.8017,210.42728,,,,,,,202.7624,204.12714,206.22844,210.26037,,,,,,,203.30325,204.94361,207.44444,212.14766,,,,,,,199.12895,200.58166,202.78793,206.96749,,,,,,,0.00454,0.00502,0.00575,0.007,,,,,,,0.00456,0.00505,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00705,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00582,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00457,0.00505,0.00578,0.00704,,,,,,,0.0046,0.00508,0.00581,0.00706,,,,,,,0.00453,0.005,0.00572,0.00695,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01972,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.04135,0.05924,0.08,0.10286,,,,,,,0.03975,0.05728,0.07772,0.10002,,,,,,,0.04075,0.06171,0.08341,0.10833,,,,,,,0.04365,0.06694,0.09049,0.11758,,,,,,,0.03124,0.05094,0.07078,0.09257,,,,,,,0.03533,0.05645,0.07778,0.10155,,,,,,,0.0319,0.05153,0.0717,0.09341,,,,,,,0.03695,0.05749,0.07867,0.10182,,,,,,,0.03115,0.04865,0.0671,0.08631,,,,,,,0.00111,0.00157,0.00232,0.00379,,,,,,,0.00106,0.0015,0.0022,0.00357,,,,,,,0.0011,0.00156,0.0023,0.00375,,,,,,,0.00114,0.00162,0.0024,0.00395,,,,,,,0.00093,0.0013,0.00187,0.00294,,,,,,,0.00096,0.00134,0.00194,0.00309,,,,,,,0.00092,0.00128,0.00185,0.0029,,,,,,,0.001,0.0014,0.00203,0.00325,,,,,,,0.00093,0.00129,0.00186,0.00291,,,,,,,0.03078,0.03182,0.03351,0.03693,,,,,,,0.03163,0.0326,0.03418,0.03733,,,,,,,0.03424,0.03526,0.03694,0.0403,,,,,,,0.02924,0.03033,0.03212,0.03575,,,,,,,0.03333,0.03411,0.03534,0.03771,,,,,,,0.03086,0.03169,0.03301,0.03559,,,,,,,0.03071,0.03148,0.03269,0.03502,,,,,,,0.03223,0.03311,0.03451,0.03726,,,,,,,0.03162,0.03239,0.0336,0.0359,,,,,,,0.00588,0.0068,0.0083,0.01133,,,,,,,0.0059,0.00676,0.00815,0.01094,,,,,,,0.0063,0.00721,0.00869,0.01167,,,,,,,0.00575,0.00671,0.00829,0.01151,,,,,,,0.00585,0.00654,0.00763,0.00972,,,,,,,0.00559,0.00633,0.0075,0.00978,,,,,,,0.0055,0.00618,0.00725,0.00931,,,,,,,0.00584,0.00662,0.00786,0.01029,,,,,,,0.00562,0.0063,0.00737,0.00941,,,,,,,0.00193,0.00195,0.00198,0.00203,,,,,,,0.00194,0.00196,0.00199,0.00204,,,,,,,0.00198,0.00199,0.00202,0.00208,,,,,,,0.00193,0.00195,0.00198,0.00204,,,,,,,0.00197,0.00198,0.00201,0.00205,,,,,,,0.00194,0.00196,0.00198,0.00203,,,,,,,0.00195,0.00196,0.00199,0.00202,,,,,,,0.00196,0.00197,0.002,0.00204,,,,,,,0.00192,0.00193,0.00195,0.00199,,,,,,,0.06944,0.08881,0.11639,0.15086,,,,,,,0.05912,0.07672,0.10207,0.13281,,,,,,,0.06775,0.08951,0.11912,0.15578,,,,,,,0.07852,0.10322,0.13663,0.1782,,,,,,,0.03018,0.04519,0.06601,0.08842,,,,,,,0.03856,0.0557,0.07927,0.10567,,,,,,,0.02834,0.04282,0.06316,0.08473,,,,,,,0.04436,0.06128,0.0847,0.11165,,,,,,,0.02689,0.03948,0.05727,0.07588 +Full size car,E85,2040,,,,,,,,0.00057,0.00084,0.00131,,,,,,,,0.00052,0.00077,0.00119,,,,,,,,0.00056,0.00083,0.00129,,,,,,,,0.00061,0.0009,0.00141,,,,,,,,0.00038,0.00055,0.00084,,,,,,,,0.00042,0.00061,0.00094,,,,,,,,0.00037,0.00054,0.00082,,,,,,,,0.00045,0.00066,0.00102,,,,,,,,0.00037,0.00053,0.00081,,,,,,,,0.02221,0.01375,0.01078,,,,,,,,0.0191,0.01204,0.0096,,,,,,,,0.02171,0.01404,0.01121,,,,,,,,0.02501,0.01609,0.01277,,,,,,,,0.01034,0.0077,0.00677,,,,,,,,0.01288,0.00926,0.00794,,,,,,,,0.00982,0.00739,0.00656,,,,,,,,0.01465,0.00997,0.00829,,,,,,,,0.00935,0.00678,0.0059,,,,,,,,0.98525,1.41142,1.78775,,,,,,,,0.93295,1.35899,1.73577,,,,,,,,0.99013,1.51014,1.96617,,,,,,,,1.09762,1.67136,2.18079,,,,,,,,0.77646,1.29343,1.7222,,,,,,,,0.83258,1.37162,1.82683,,,,,,,,0.79725,1.32661,1.76407,,,,,,,,0.86417,1.35866,1.77106,,,,,,,,0.7176,1.14381,1.48089,,,,,,,,200.24516,202.32145,205.46903,,,,,,,,201.80909,203.74434,206.68595,,,,,,,,205.20366,207.21809,210.27973,,,,,,,,200.50052,202.60759,205.81349,,,,,,,,204.74695,206.15721,208.32926,,,,,,,,201.72947,203.33405,205.79394,,,,,,,,202.75346,204.11593,206.22203,,,,,,,,203.29271,204.93044,207.43627,,,,,,,,199.1195,200.57008,202.78087,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00582,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01977,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.0413,0.05916,0.07997,,,,,,,,0.0397,0.05719,0.0777,,,,,,,,0.0407,0.06161,0.08338,,,,,,,,0.0436,0.06684,0.09046,,,,,,,,0.03119,0.05085,0.07075,,,,,,,,0.03528,0.05636,0.07776,,,,,,,,0.03186,0.05145,0.07168,,,,,,,,0.0369,0.0574,0.07864,,,,,,,,0.03111,0.04857,0.06708,,,,,,,,0.00111,0.00157,0.00232,,,,,,,,0.00106,0.0015,0.0022,,,,,,,,0.0011,0.00156,0.0023,,,,,,,,0.00113,0.00162,0.0024,,,,,,,,0.00093,0.00129,0.00187,,,,,,,,0.00096,0.00134,0.00194,,,,,,,,0.00092,0.00128,0.00185,,,,,,,,0.001,0.0014,0.00203,,,,,,,,0.00093,0.00129,0.00186,,,,,,,,0.03078,0.03181,0.03351,,,,,,,,0.03163,0.0326,0.03418,,,,,,,,0.03424,0.03526,0.03694,,,,,,,,0.02924,0.03032,0.03212,,,,,,,,0.03333,0.03411,0.03534,,,,,,,,0.03086,0.03168,0.03301,,,,,,,,0.03071,0.03148,0.03269,,,,,,,,0.03223,0.03311,0.03451,,,,,,,,0.03162,0.03238,0.0336,,,,,,,,0.00588,0.0068,0.0083,,,,,,,,0.0059,0.00675,0.00815,,,,,,,,0.0063,0.00721,0.00869,,,,,,,,0.00575,0.00671,0.00829,,,,,,,,0.00585,0.00654,0.00763,,,,,,,,0.00559,0.00632,0.0075,,,,,,,,0.0055,0.00618,0.00725,,,,,,,,0.00584,0.00661,0.00786,,,,,,,,0.00562,0.0063,0.00737,,,,,,,,0.00193,0.00195,0.00198,,,,,,,,0.00194,0.00196,0.00199,,,,,,,,0.00198,0.00199,0.00202,,,,,,,,0.00193,0.00195,0.00198,,,,,,,,0.00197,0.00198,0.00201,,,,,,,,0.00194,0.00196,0.00198,,,,,,,,0.00195,0.00196,0.00198,,,,,,,,0.00196,0.00197,0.002,,,,,,,,0.00192,0.00193,0.00195,,,,,,,,0.06936,0.0887,0.11634,,,,,,,,0.05905,0.07663,0.10202,,,,,,,,0.06768,0.08939,0.11906,,,,,,,,0.07843,0.10309,0.13656,,,,,,,,0.03014,0.04512,0.06598,,,,,,,,0.03851,0.05562,0.07923,,,,,,,,0.0283,0.04275,0.06314,,,,,,,,0.0443,0.06119,0.08466,,,,,,,,0.02686,0.03942,0.05725 +Full size car,E85,2045,,,,,,,,,0.00057,0.00084,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00056,0.00083,,,,,,,,,0.00061,0.0009,,,,,,,,,0.00038,0.00055,,,,,,,,,0.00042,0.00061,,,,,,,,,0.00037,0.00054,,,,,,,,,0.00045,0.00066,,,,,,,,,0.00037,0.00053,,,,,,,,,0.02221,0.01375,,,,,,,,,0.01911,0.01204,,,,,,,,,0.02171,0.01404,,,,,,,,,0.02501,0.01609,,,,,,,,,0.01034,0.0077,,,,,,,,,0.01288,0.00926,,,,,,,,,0.00982,0.00739,,,,,,,,,0.01465,0.00997,,,,,,,,,0.00935,0.00678,,,,,,,,,0.98441,1.41117,,,,,,,,,0.93214,1.35875,,,,,,,,,0.98921,1.50985,,,,,,,,,1.0966,1.67104,,,,,,,,,0.77567,1.29318,,,,,,,,,0.83174,1.37136,,,,,,,,,0.79645,1.32636,,,,,,,,,0.86335,1.35842,,,,,,,,,0.71691,1.14361,,,,,,,,,200.2348,202.31787,,,,,,,,,201.80023,203.74198,,,,,,,,,205.19357,207.21474,,,,,,,,,200.4901,202.6043,,,,,,,,,204.73938,206.1543,,,,,,,,,201.72166,203.33161,,,,,,,,,202.74611,204.11347,,,,,,,,,203.2848,204.92815,,,,,,,,,199.11168,200.5669,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04127,0.05913,,,,,,,,,0.03967,0.05717,,,,,,,,,0.04067,0.06159,,,,,,,,,0.04356,0.06681,,,,,,,,,0.03116,0.05083,,,,,,,,,0.03525,0.05634,,,,,,,,,0.03183,0.05142,,,,,,,,,0.03687,0.05738,,,,,,,,,0.03108,0.04855,,,,,,,,,0.00111,0.00157,,,,,,,,,0.00106,0.0015,,,,,,,,,0.0011,0.00156,,,,,,,,,0.00113,0.00161,,,,,,,,,0.00093,0.00129,,,,,,,,,0.00096,0.00134,,,,,,,,,0.00092,0.00128,,,,,,,,,0.001,0.0014,,,,,,,,,0.00093,0.00129,,,,,,,,,0.03077,0.03181,,,,,,,,,0.03163,0.0326,,,,,,,,,0.03423,0.03526,,,,,,,,,0.02924,0.03032,,,,,,,,,0.03333,0.03411,,,,,,,,,0.03085,0.03168,,,,,,,,,0.03071,0.03148,,,,,,,,,0.03223,0.0331,,,,,,,,,0.03162,0.03238,,,,,,,,,0.00588,0.0068,,,,,,,,,0.0059,0.00675,,,,,,,,,0.0063,0.00721,,,,,,,,,0.00574,0.00671,,,,,,,,,0.00585,0.00653,,,,,,,,,0.00559,0.00632,,,,,,,,,0.0055,0.00618,,,,,,,,,0.00584,0.00661,,,,,,,,,0.00562,0.0063,,,,,,,,,0.00193,0.00195,,,,,,,,,0.00194,0.00196,,,,,,,,,0.00198,0.00199,,,,,,,,,0.00193,0.00195,,,,,,,,,0.00197,0.00198,,,,,,,,,0.00194,0.00196,,,,,,,,,0.00195,0.00196,,,,,,,,,0.00196,0.00197,,,,,,,,,0.00192,0.00193,,,,,,,,,0.06931,0.08867,,,,,,,,,0.059,0.0766,,,,,,,,,0.06762,0.08936,,,,,,,,,0.07837,0.10306,,,,,,,,,0.03011,0.0451,,,,,,,,,0.03848,0.05559,,,,,,,,,0.02827,0.04273,,,,,,,,,0.04427,0.06117,,,,,,,,,0.02683,0.03941 +Full size car,E85,2050,,,,,,,,,,0.00057,,,,,,,,,,0.00052,,,,,,,,,,0.00056,,,,,,,,,,0.00061,,,,,,,,,,0.00038,,,,,,,,,,0.00042,,,,,,,,,,0.00037,,,,,,,,,,0.00045,,,,,,,,,,0.00037,,,,,,,,,,0.02221,,,,,,,,,,0.01911,,,,,,,,,,0.02171,,,,,,,,,,0.02501,,,,,,,,,,0.01034,,,,,,,,,,0.01288,,,,,,,,,,0.00982,,,,,,,,,,0.01465,,,,,,,,,,0.00935,,,,,,,,,,0.98441,,,,,,,,,,0.93214,,,,,,,,,,0.98921,,,,,,,,,,1.0966,,,,,,,,,,0.77567,,,,,,,,,,0.83174,,,,,,,,,,0.79646,,,,,,,,,,0.86335,,,,,,,,,,0.71691,,,,,,,,,,200.2347,,,,,,,,,,201.80021,,,,,,,,,,205.1935,,,,,,,,,,200.49023,,,,,,,,,,204.73927,,,,,,,,,,201.72163,,,,,,,,,,202.74602,,,,,,,,,,203.28478,,,,,,,,,,199.11168,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04127,,,,,,,,,,0.03967,,,,,,,,,,0.04067,,,,,,,,,,0.04356,,,,,,,,,,0.03116,,,,,,,,,,0.03525,,,,,,,,,,0.03183,,,,,,,,,,0.03687,,,,,,,,,,0.03108,,,,,,,,,,0.00111,,,,,,,,,,0.00106,,,,,,,,,,0.0011,,,,,,,,,,0.00113,,,,,,,,,,0.00093,,,,,,,,,,0.00096,,,,,,,,,,0.00092,,,,,,,,,,0.001,,,,,,,,,,0.00093,,,,,,,,,,0.03077,,,,,,,,,,0.03163,,,,,,,,,,0.03423,,,,,,,,,,0.02924,,,,,,,,,,0.03333,,,,,,,,,,0.03085,,,,,,,,,,0.03071,,,,,,,,,,0.03223,,,,,,,,,,0.03162,,,,,,,,,,0.00588,,,,,,,,,,0.0059,,,,,,,,,,0.0063,,,,,,,,,,0.00574,,,,,,,,,,0.00585,,,,,,,,,,0.00559,,,,,,,,,,0.0055,,,,,,,,,,0.00584,,,,,,,,,,0.00562,,,,,,,,,,0.00193,,,,,,,,,,0.00194,,,,,,,,,,0.00198,,,,,,,,,,0.00193,,,,,,,,,,0.00197,,,,,,,,,,0.00194,,,,,,,,,,0.00195,,,,,,,,,,0.00196,,,,,,,,,,0.00192,,,,,,,,,,0.06931,,,,,,,,,,0.059,,,,,,,,,,0.06762,,,,,,,,,,0.07837,,,,,,,,,,0.03011,,,,,,,,,,0.03848,,,,,,,,,,0.02827,,,,,,,,,,0.04427,,,,,,,,,,0.02683 +Full size car,ELC,1990,0.02838,,,,,,,,,,0.02935,,,,,,,,,,0.03186,,,,,,,,,,0.02676,,,,,,,,,,0.0314,,,,,,,,,,0.02885,,,,,,,,,,0.0288,,,,,,,,,,0.03013,,,,,,,,,,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0739,,,,,,,,,,0.07528,,,,,,,,,,0.07956,,,,,,,,,,0.07057,,,,,,,,,,0.07864,,,,,,,,,,0.07386,,,,,,,,,,0.07437,,,,,,,,,,0.07655,,,,,,,,,,0.07669,,,,,,,,,,0.45084,,,,,,,,,,0.45374,,,,,,,,,,0.46303,,,,,,,,,,0.44383,,,,,,,,,,0.46107,,,,,,,,,,0.4509,,,,,,,,,,0.45187,,,,,,,,,,0.45649,,,,,,,,,,0.45669,,,,,,,,,,0.38235,,,,,,,,,,0.38393,,,,,,,,,,0.38934,,,,,,,,,,0.37811,,,,,,,,,,0.38817,,,,,,,,,,0.38217,,,,,,,,,,0.38288,,,,,,,,,,0.38553,,,,,,,,,,0.38586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,1995,0.02838,0.02838,,,,,,,,,0.02935,0.02935,,,,,,,,,0.03186,0.03186,,,,,,,,,0.02676,0.02676,,,,,,,,,0.0314,0.0314,,,,,,,,,0.02885,0.02885,,,,,,,,,0.0288,0.0288,,,,,,,,,0.03013,0.03013,,,,,,,,,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.05825,0.06133,,,,,,,,,0.06009,0.06285,,,,,,,,,0.0656,0.06747,,,,,,,,,0.05386,0.05755,,,,,,,,,0.06439,0.06643,,,,,,,,,0.05814,0.06114,,,,,,,,,0.05884,0.0618,,,,,,,,,0.06172,0.06422,,,,,,,,,0.06192,0.06448,,,,,,,,,0.36405,0.36433,,,,,,,,,0.36937,0.3685,,,,,,,,,0.38522,0.38117,,,,,,,,,0.35148,0.35421,,,,,,,,,0.38174,0.37837,,,,,,,,,0.36381,0.36402,,,,,,,,,0.36577,0.36567,,,,,,,,,0.37404,0.37225,,,,,,,,,0.37457,0.3728,,,,,,,,,0.30242,0.30273,,,,,,,,,0.30624,0.30549,,,,,,,,,0.31772,0.31402,,,,,,,,,0.29304,0.29561,,,,,,,,,0.31515,0.31208,,,,,,,,,0.30197,0.30221,,,,,,,,,0.30359,0.30354,,,,,,,,,0.30962,0.30801,,,,,,,,,0.31026,0.30866,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2000,0.02838,0.02838,0.02838,,,,,,,,0.02935,0.02935,0.02935,,,,,,,,0.03186,0.03186,0.03186,,,,,,,,0.02676,0.02676,0.02676,,,,,,,,0.0314,0.0314,0.0314,,,,,,,,0.02885,0.02885,0.02885,,,,,,,,0.0288,0.0288,0.0288,,,,,,,,0.03013,0.03013,0.03013,,,,,,,,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.04518,0.04528,0.04678,,,,,,,,0.0467,0.04675,0.04815,,,,,,,,0.05117,0.05111,0.05227,,,,,,,,0.04161,0.04175,0.04338,,,,,,,,0.05018,0.05014,0.05134,,,,,,,,0.0451,0.04515,0.04659,,,,,,,,0.04567,0.04574,0.04719,,,,,,,,0.04802,0.04804,0.04937,,,,,,,,0.04818,0.04823,0.04962,,,,,,,,0.3003,0.29571,0.296,,,,,,,,0.30484,0.30009,0.30012,,,,,,,,0.3181,0.31292,0.31232,,,,,,,,0.2895,0.28517,0.28593,,,,,,,,0.31513,0.31003,0.30956,,,,,,,,0.29989,0.29523,0.29547,,,,,,,,0.3017,0.29704,0.29724,,,,,,,,0.30877,0.3039,0.30374,,,,,,,,0.30936,0.30455,0.30443,,,,,,,,0.24374,0.23952,0.2398,,,,,,,,0.24685,0.24249,0.24253,,,,,,,,0.25596,0.2512,0.25065,,,,,,,,0.23596,0.232,0.23272,,,,,,,,0.25385,0.24917,0.24875,,,,,,,,0.24313,0.23885,0.23909,,,,,,,,0.24461,0.24034,0.24054,,,,,,,,0.24955,0.24507,0.24494,,,,,,,,0.25024,0.24582,0.24572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2005,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.01856,0.025,0.02542,0.03118,,,,,,,0.01916,0.0258,0.02622,0.03211,,,,,,,0.0209,0.02814,0.02853,0.03484,,,,,,,0.01724,0.02322,0.02364,0.029,,,,,,,0.02053,0.02764,0.02803,0.03424,,,,,,,0.0186,0.02504,0.02545,0.03113,,,,,,,0.01877,0.02528,0.02569,0.03148,,,,,,,0.01968,0.0265,0.02691,0.03292,,,,,,,0.01968,0.0265,0.02692,0.03302,,,,,,,0.15839,0.19789,0.19818,0.22219,,,,,,,0.16073,0.20055,0.20082,0.22517,,,,,,,0.16747,0.20816,0.20841,0.23386,,,,,,,0.15323,0.19196,0.19224,0.21521,,,,,,,0.16602,0.2065,0.20675,0.23193,,,,,,,0.15851,0.19794,0.1982,0.22202,,,,,,,0.15919,0.19878,0.19906,0.22314,,,,,,,0.16275,0.20282,0.20309,0.22777,,,,,,,0.16274,0.2029,0.20319,0.22806,,,,,,,0.11317,0.14952,0.14979,0.17188,,,,,,,0.11426,0.1509,0.15115,0.17356,,,,,,,0.11738,0.15482,0.15505,0.17847,,,,,,,0.11058,0.14622,0.14649,0.16762,,,,,,,0.11667,0.15392,0.15415,0.17732,,,,,,,0.11305,0.14933,0.14957,0.17149,,,,,,,0.1135,0.14992,0.15018,0.17234,,,,,,,0.1152,0.15208,0.15233,0.17504,,,,,,,0.11534,0.15229,0.15257,0.17545,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2010,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00822,0.0084,0.00805,0.01746,,,,,,,0.00848,0.00865,0.00827,0.01795,,,,,,,0.00922,0.00935,0.00891,0.0194,,,,,,,0.00766,0.00787,0.00755,0.0163,,,,,,,0.00906,0.0092,0.00877,0.01908,,,,,,,0.00824,0.00842,0.00805,0.01743,,,,,,,0.00831,0.00849,0.00812,0.01762,,,,,,,0.0087,0.00886,0.00846,0.01838,,,,,,,0.00869,0.00886,0.00847,0.01844,,,,,,,0.094,0.09526,0.09277,0.14416,,,,,,,0.09578,0.09704,0.09452,0.14638,,,,,,,0.10092,0.1022,0.09958,0.15285,,,,,,,0.09018,0.0914,0.08896,0.13908,,,,,,,0.09984,0.10111,0.0985,0.15143,,,,,,,0.0942,0.09543,0.09292,0.14414,,,,,,,0.09464,0.09589,0.09339,0.1449,,,,,,,0.09731,0.09858,0.09603,0.14832,,,,,,,0.09722,0.09851,0.09598,0.14845,,,,,,,0.05395,0.05511,0.05283,0.1001,,,,,,,0.05453,0.05569,0.05337,0.10108,,,,,,,0.05617,0.05735,0.05494,0.10395,,,,,,,0.0526,0.05373,0.05149,0.09759,,,,,,,0.0558,0.05697,0.05458,0.10327,,,,,,,0.0539,0.05504,0.05273,0.09985,,,,,,,0.05413,0.05528,0.05298,0.10036,,,,,,,0.05502,0.05619,0.05384,0.10195,,,,,,,0.05509,0.05628,0.05395,0.10221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2015,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00101,0.00156,0.00171,0.00554,,,,,,,0.00101,0.00158,0.00172,0.00565,,,,,,,0.00104,0.00161,0.00175,0.00601,,,,,,,0.00098,0.00153,0.00167,0.00524,,,,,,,0.00103,0.0016,0.00174,0.00593,,,,,,,0.001,0.00155,0.00169,0.00552,,,,,,,0.00101,0.00157,0.00171,0.00557,,,,,,,0.00102,0.00159,0.00173,0.00576,,,,,,,0.00103,0.0016,0.00174,0.00578,,,,,,,0.04842,0.05245,0.05361,0.07642,,,,,,,0.04982,0.05388,0.05503,0.078,,,,,,,0.05386,0.05801,0.05915,0.0826,,,,,,,0.04553,0.04946,0.0506,0.07295,,,,,,,0.05303,0.05715,0.05829,0.08162,,,,,,,0.04868,0.05268,0.05381,0.07654,,,,,,,0.04895,0.05298,0.05413,0.07698,,,,,,,0.05102,0.0551,0.05625,0.07937,,,,,,,0.05087,0.05498,0.05615,0.07935,,,,,,,0.01202,0.01573,0.0168,0.03778,,,,,,,0.01224,0.01598,0.01703,0.03817,,,,,,,0.01288,0.0167,0.01775,0.03932,,,,,,,0.01152,0.01514,0.01619,0.03675,,,,,,,0.01274,0.01653,0.01758,0.03904,,,,,,,0.01202,0.01571,0.01674,0.03766,,,,,,,0.0121,0.01581,0.01686,0.03788,,,,,,,0.01243,0.01619,0.01725,0.03852,,,,,,,0.01245,0.01623,0.01731,0.03865,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2020,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00102,0.00152,0.00161,0.00244,,,,,,,0.00103,0.00153,0.00162,0.00247,,,,,,,0.00105,0.00157,0.00166,0.00256,,,,,,,0.001,0.00148,0.00157,0.00236,,,,,,,0.00105,0.00156,0.00165,0.00253,,,,,,,0.00102,0.00151,0.0016,0.00243,,,,,,,0.00102,0.00152,0.00161,0.00245,,,,,,,0.00104,0.00154,0.00163,0.0025,,,,,,,0.00104,0.00155,0.00164,0.00251,,,,,,,0.04852,0.05211,0.05284,0.05833,,,,,,,0.04992,0.05354,0.05426,0.05977,,,,,,,0.05397,0.05767,0.05839,0.06397,,,,,,,0.04563,0.04913,0.04984,0.05523,,,,,,,0.05314,0.05681,0.05753,0.06309,,,,,,,0.04878,0.05235,0.05306,0.0585,,,,,,,0.04905,0.05264,0.05337,0.05885,,,,,,,0.05112,0.05476,0.05548,0.06102,,,,,,,0.05097,0.05463,0.05537,0.06095,,,,,,,0.01212,0.01542,0.01609,0.02114,,,,,,,0.01234,0.01566,0.01633,0.0214,,,,,,,0.01299,0.01638,0.01705,0.02218,,,,,,,0.01161,0.01483,0.01549,0.02045,,,,,,,0.01284,0.01622,0.01688,0.022,,,,,,,0.01212,0.0154,0.01605,0.02106,,,,,,,0.01219,0.01549,0.01616,0.02121,,,,,,,0.01253,0.01588,0.01654,0.02164,,,,,,,0.01254,0.01591,0.01659,0.02172,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2025,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2030,,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2035,,,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2040,,,,,,,,0.02838,0.02838,0.02838,,,,,,,,0.02935,0.02935,0.02935,,,,,,,,0.03186,0.03186,0.03186,,,,,,,,0.02676,0.02676,0.02676,,,,,,,,0.0314,0.0314,0.0314,,,,,,,,0.02885,0.02885,0.02885,,,,,,,,0.0288,0.0288,0.0288,,,,,,,,0.03013,0.03013,0.03013,,,,,,,,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2045,,,,,,,,,0.02838,0.02838,,,,,,,,,0.02935,0.02935,,,,,,,,,0.03186,0.03186,,,,,,,,,0.02676,0.02676,,,,,,,,,0.0314,0.0314,,,,,,,,,0.02885,0.02885,,,,,,,,,0.0288,0.0288,,,,,,,,,0.03013,0.03013,,,,,,,,,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,ELC,2050,,,,,,,,,,0.02838,,,,,,,,,,0.02935,,,,,,,,,,0.03186,,,,,,,,,,0.02676,,,,,,,,,,0.0314,,,,,,,,,,0.02885,,,,,,,,,,0.0288,,,,,,,,,,0.03013,,,,,,,,,,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Full size car,GSL,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07141,,,,,,,,,,0.06107,,,,,,,,,,0.07705,,,,,,,,,,0.07896,,,,,,,,,,0.06496,,,,,,,,,,0.07184,,,,,,,,,,0.0665,,,,,,,,,,0.06484,,,,,,,,,,0.05566,,,,,,,,,,45.44025,,,,,,,,,,40.29902,,,,,,,,,,49.74959,,,,,,,,,,51.52873,,,,,,,,,,42.68365,,,,,,,,,,47.22271,,,,,,,,,,44.46094,,,,,,,,,,42.70044,,,,,,,,,,35.6,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,2.7661,,,,,,,,,,2.63331,,,,,,,,,,2.92629,,,,,,,,,,3.07741,,,,,,,,,,2.86105,,,,,,,,,,3.00445,,,,,,,,,,2.85615,,,,,,,,,,3.0173,,,,,,,,,,2.48338,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.0203,,,,,,,,,,0.02315,,,,,,,,,,0.03295,,,,,,,,,,0.03009,,,,,,,,,,0.02677,,,,,,,,,,0.0295,,,,,,,,,,0.02671,,,,,,,,,,0.02644,,,,,,,,,,0.01225,,,,,,,,,,4.27258,,,,,,,,,,3.81754,,,,,,,,,,4.54577,,,,,,,,,,4.70482,,,,,,,,,,4.21618,,,,,,,,,,4.48853,,,,,,,,,,4.30598,,,,,,,,,,4.24389,,,,,,,,,,3.69123,,,,,,,,, +Full size car,GSL,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.03944,0.04576,,,,,,,,,0.03664,0.04083,,,,,,,,,0.04429,0.05065,,,,,,,,,0.04565,0.05449,,,,,,,,,0.03755,0.04264,,,,,,,,,0.0407,0.04723,,,,,,,,,0.03721,0.04302,,,,,,,,,0.03835,0.04438,,,,,,,,,0.03085,0.03465,,,,,,,,,16.78884,22.88556,,,,,,,,,15.98794,20.96026,,,,,,,,,19.21178,25.22672,,,,,,,,,20.22435,27.00424,,,,,,,,,16.79945,21.89209,,,,,,,,,18.19395,23.98917,,,,,,,,,17.25291,22.63177,,,,,,,,,16.98237,22.80651,,,,,,,,,13.3002,17.89803,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.07933,2.50022,,,,,,,,,2.02759,2.36568,,,,,,,,,2.24294,2.56978,,,,,,,,,2.33637,2.81169,,,,,,,,,2.17733,2.606,,,,,,,,,2.28807,2.71654,,,,,,,,,2.18766,2.60941,,,,,,,,,2.32345,2.7651,,,,,,,,,1.91582,2.25828,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.01661,0.00842,,,,,,,,,0.01905,0.00855,,,,,,,,,0.02713,0.00887,,,,,,,,,0.0247,0.01482,,,,,,,,,0.02232,0.00873,,,,,,,,,0.02448,0.00866,,,,,,,,,0.0223,0.01181,,,,,,,,,0.02188,0.01347,,,,,,,,,0.01015,0.00486,,,,,,,,,1.81297,2.58416,,,,,,,,,1.74397,2.43547,,,,,,,,,2.01266,2.82579,,,,,,,,,2.08667,2.99372,,,,,,,,,1.87427,2.72045,,,,,,,,,1.94673,2.84104,,,,,,,,,1.85754,2.71927,,,,,,,,,1.92176,2.78589,,,,,,,,,1.59187,2.31303,,,,,,,, +Full size car,GSL,2000,0.00446,0.00727,0.02121,,,,,,,,0.00385,0.00626,0.01818,,,,,,,,0.00432,0.00704,0.02055,,,,,,,,0.00488,0.00799,0.02359,,,,,,,,0.00215,0.00348,0.00996,,,,,,,,0.00258,0.00418,0.01212,,,,,,,,0.00206,0.00333,0.00949,,,,,,,,0.00297,0.00482,0.01394,,,,,,,,0.00204,0.00329,0.00926,,,,,,,,0.018,0.01924,0.03098,,,,,,,,0.01687,0.01844,0.02788,,,,,,,,0.02096,0.0225,0.03556,,,,,,,,0.02187,0.02406,0.03689,,,,,,,,0.01593,0.01832,0.02908,,,,,,,,0.01765,0.02,0.0316,,,,,,,,0.01572,0.01841,0.02808,,,,,,,,0.01718,0.01951,0.02948,,,,,,,,0.01344,0.01592,0.02304,,,,,,,,7.9736,10.71224,16.31106,,,,,,,,7.63036,10.36213,15.21624,,,,,,,,9.24745,12.38733,18.63257,,,,,,,,9.85903,13.26364,19.40211,,,,,,,,7.08158,10.17429,15.47276,,,,,,,,7.84768,11.09523,16.73859,,,,,,,,7.20494,10.48973,15.41956,,,,,,,,7.64135,10.84985,15.91466,,,,,,,,5.84893,8.72488,12.54593,,,,,,,,376.89916,380.04698,390.21548,,,,,,,,380.22649,383.1569,392.65296,,,,,,,,386.71942,389.79323,399.70862,,,,,,,,377.04161,380.20786,390.42822,,,,,,,,387.04471,389.14643,396.12873,,,,,,,,380.64318,383.06092,390.92793,,,,,,,,383.03518,385.04841,391.71743,,,,,,,,383.69574,386.15466,394.21333,,,,,,,,376.31992,378.50164,385.74944,,,,,,,,0.02444,0.02719,0.04141,,,,,,,,0.02454,0.02728,0.04157,,,,,,,,0.02472,0.02744,0.04186,,,,,,,,0.02468,0.02748,0.0418,,,,,,,,0.02474,0.02748,0.04191,,,,,,,,0.02483,0.02762,0.04206,,,,,,,,0.02458,0.02734,0.04164,,,,,,,,0.02471,0.02746,0.04186,,,,,,,,0.02432,0.02703,0.0412,,,,,,,,0.05942,0.07773,0.0825,,,,,,,,0.05955,0.07791,0.08268,,,,,,,,0.05972,0.07812,0.08287,,,,,,,,0.05901,0.07719,0.08197,,,,,,,,0.05963,0.078,0.08275,,,,,,,,0.05921,0.07746,0.08223,,,,,,,,0.0594,0.07771,0.08247,,,,,,,,0.05963,0.07801,0.08277,,,,,,,,0.05976,0.07818,0.08294,,,,,,,,1.00125,1.3395,1.99915,,,,,,,,0.98492,1.3305,1.95065,,,,,,,,1.16176,1.47162,2.16103,,,,,,,,1.20225,1.58687,2.26082,,,,,,,,1.10189,1.46064,2.16643,,,,,,,,1.15729,1.50595,2.22061,,,,,,,,1.11845,1.48987,2.09885,,,,,,,,1.17031,1.55114,2.20843,,,,,,,,0.96099,1.30162,1.8246,,,,,,,,0.00947,0.01481,0.03898,,,,,,,,0.00834,0.01302,0.03415,,,,,,,,0.00914,0.01429,0.03766,,,,,,,,0.00995,0.0156,0.04186,,,,,,,,0.00505,0.00783,0.0203,,,,,,,,0.00581,0.00904,0.0238,,,,,,,,0.00491,0.00762,0.01968,,,,,,,,0.00662,0.01032,0.02697,,,,,,,,0.00497,0.00771,0.01958,,,,,,,,0.0488,0.06032,0.11423,,,,,,,,0.04731,0.05732,0.10422,,,,,,,,0.05174,0.06271,0.11486,,,,,,,,0.04852,0.06083,0.11967,,,,,,,,0.04215,0.04798,0.07515,,,,,,,,0.04133,0.04812,0.08054,,,,,,,,0.03924,0.04494,0.07108,,,,,,,,0.04436,0.05226,0.08886,,,,,,,,0.04011,0.04585,0.07146,,,,,,,,0.02183,0.03202,0.07971,,,,,,,,0.01976,0.02863,0.07011,,,,,,,,0.02179,0.03149,0.07762,,,,,,,,0.0228,0.0337,0.08574,,,,,,,,0.01365,0.0188,0.04284,,,,,,,,0.01486,0.02087,0.04955,,,,,,,,0.01304,0.01808,0.04121,,,,,,,,0.01657,0.02355,0.05593,,,,,,,,0.01313,0.01821,0.04086,,,,,,,,0.01653,0.00808,0.00747,,,,,,,,0.01899,0.00822,0.00751,,,,,,,,0.02706,0.00853,0.00765,,,,,,,,0.02462,0.01425,0.00747,,,,,,,,0.02235,0.00847,0.00758,,,,,,,,0.02449,0.00838,0.00748,,,,,,,,0.02235,0.01146,0.0075,,,,,,,,0.02186,0.01302,0.00675,,,,,,,,0.01013,0.00469,0.00346,,,,,,,,0.72711,1.06387,2.0172,,,,,,,,0.68577,1.02453,1.89637,,,,,,,,0.81315,1.20741,2.24646,,,,,,,,0.86921,1.29736,2.34636,,,,,,,,0.62061,1.00677,2.04738,,,,,,,,0.68204,1.08708,2.14188,,,,,,,,0.61212,1.00282,1.99881,,,,,,,,0.69779,1.09614,2.10942,,,,,,,,0.5325,0.88513,1.7362,,,,,,, +Full size car,GSL,2005,0.00157,0.00229,0.00372,0.01236,,,,,,,0.00142,0.00198,0.00321,0.01065,,,,,,,0.00176,0.00175,0.00281,0.01185,,,,,,,0.00186,0.00245,0.00401,0.01369,,,,,,,0.00091,0.00128,0.00207,0.00604,,,,,,,0.00109,0.00133,0.00215,0.0072,,,,,,,0.00085,0.00116,0.00187,0.00562,,,,,,,0.00118,0.00149,0.0024,0.0082,,,,,,,0.00074,0.00098,0.00156,0.00542,,,,,,,0.01901,0.0139,0.01373,0.02039,,,,,,,0.01715,0.01239,0.01274,0.01857,,,,,,,0.01941,0.01391,0.01426,0.0222,,,,,,,0.02078,0.01709,0.01603,0.0243,,,,,,,0.01115,0.00933,0.01045,0.01687,,,,,,,0.01327,0.0107,0.01165,0.01873,,,,,,,0.01076,0.00994,0.01037,0.01641,,,,,,,0.0144,0.01194,0.01151,0.01848,,,,,,,0.00868,0.00738,0.00807,0.01461,,,,,,,3.65985,4.92001,6.28176,10.36951,,,,,,,3.47267,4.74078,6.25313,9.92852,,,,,,,3.93967,5.77433,7.69159,11.84093,,,,,,,4.26506,6.37793,7.63642,12.70471,,,,,,,3.14949,4.69452,6.45624,10.09242,,,,,,,3.39607,5.11373,6.96781,10.81847,,,,,,,3.2294,5.16195,6.51177,10.17918,,,,,,,3.49226,5.5873,6.66755,10.54744,,,,,,,2.47971,4.32598,5.73291,8.72071,,,,,,,383.61442,385.38819,389.77412,396.47833,,,,,,,387.18708,388.82902,392.91571,398.96561,,,,,,,393.48041,395.21334,399.46747,405.9233,,,,,,,383.88261,385.64187,390.09117,396.91151,,,,,,,394.88049,396.01522,398.98771,402.60517,,,,,,,388.20643,389.53503,392.91936,397.42511,,,,,,,391.1224,392.19344,395.0643,398.40755,,,,,,,391.19,392.54205,395.99785,400.65679,,,,,,,383.91967,385.1314,388.19316,391.9956,,,,,,,0.00715,0.00771,0.00905,0.02207,,,,,,,0.00716,0.00772,0.00907,0.02212,,,,,,,0.00717,0.00773,0.00907,0.02218,,,,,,,0.00725,0.00782,0.0092,0.02237,,,,,,,0.00719,0.00775,0.00909,0.02222,,,,,,,0.00726,0.00783,0.0092,0.02243,,,,,,,0.00718,0.00774,0.0091,0.02218,,,,,,,0.0072,0.00776,0.00911,0.02225,,,,,,,0.00708,0.00763,0.00896,0.02189,,,,,,,0.02404,0.02736,0.03368,0.04793,,,,,,,0.02409,0.02742,0.03376,0.04803,,,,,,,0.02416,0.0275,0.03385,0.04815,,,,,,,0.02387,0.02717,0.03345,0.0476,,,,,,,0.02412,0.02746,0.0338,0.04808,,,,,,,0.02395,0.02727,0.03356,0.04777,,,,,,,0.02403,0.02735,0.03367,0.04791,,,,,,,0.02412,0.02746,0.0338,0.04809,,,,,,,0.02418,0.02752,0.03387,0.04819,,,,,,,0.26711,0.39195,0.51733,0.95688,,,,,,,0.26349,0.38223,0.51986,0.94325,,,,,,,0.30149,0.42923,0.57253,1.06658,,,,,,,0.29995,0.50062,0.6053,1.1359,,,,,,,0.26847,0.4098,0.55488,1.05341,,,,,,,0.28599,0.42851,0.57447,1.08888,,,,,,,0.27071,0.43957,0.54982,1.02772,,,,,,,0.29438,0.47188,0.56832,1.08909,,,,,,,0.21201,0.31363,0.41977,0.92727,,,,,,,0.00338,0.00483,0.00726,0.02167,,,,,,,0.00313,0.00433,0.0065,0.01916,,,,,,,0.00367,0.00404,0.00602,0.02089,,,,,,,0.00379,0.00502,0.00756,0.02314,,,,,,,0.00218,0.00305,0.00462,0.01197,,,,,,,0.00249,0.00315,0.00475,0.01369,,,,,,,0.00209,0.00284,0.00429,0.01139,,,,,,,0.00268,0.00344,0.00517,0.01533,,,,,,,0.00188,0.00252,0.00378,0.01121,,,,,,,0.03567,0.03875,0.0442,0.07646,,,,,,,0.03608,0.03858,0.04341,0.07162,,,,,,,0.03987,0.04042,0.04478,0.07816,,,,,,,0.03505,0.03765,0.04336,0.07854,,,,,,,0.03603,0.0378,0.04119,0.05725,,,,,,,0.03418,0.03548,0.03895,0.05868,,,,,,,0.03322,0.03476,0.03786,0.0533,,,,,,,0.03588,0.03744,0.04118,0.06366,,,,,,,0.03362,0.03492,0.0376,0.05371,,,,,,,0.01021,0.01293,0.01775,0.0463,,,,,,,0.00984,0.01205,0.01632,0.04128,,,,,,,0.01129,0.01178,0.01563,0.04516,,,,,,,0.01089,0.01319,0.01824,0.04936,,,,,,,0.00823,0.0098,0.0128,0.02701,,,,,,,0.00853,0.00968,0.01275,0.0302,,,,,,,0.00772,0.00908,0.01182,0.02549,,,,,,,0.00907,0.01044,0.01375,0.03364,,,,,,,0.00739,0.00854,0.01091,0.02517,,,,,,,0.01682,0.00819,0.00746,0.00253,,,,,,,0.01933,0.00834,0.00752,0.00255,,,,,,,0.02754,0.00865,0.00765,0.00259,,,,,,,0.02506,0.01446,0.00747,0.00253,,,,,,,0.0228,0.00862,0.00764,0.00257,,,,,,,0.02498,0.00852,0.00752,0.00254,,,,,,,0.02283,0.01167,0.00756,0.00254,,,,,,,0.02228,0.01324,0.00678,0.00252,,,,,,,0.01033,0.00477,0.00348,0.00231,,,,,,,0.39514,0.43204,0.59703,1.3187,,,,,,,0.35519,0.38936,0.55255,1.2417,,,,,,,0.40141,0.43233,0.61327,1.41594,,,,,,,0.43194,0.52177,0.68283,1.52729,,,,,,,0.22675,0.2889,0.45338,1.22545,,,,,,,0.2701,0.3289,0.50138,1.30004,,,,,,,0.21544,0.2995,0.44323,1.19594,,,,,,,0.30655,0.38403,0.52996,1.32507,,,,,,,0.18592,0.25556,0.39667,1.10333,,,,,, +Full size car,GSL,2010,,0.00112,0.00183,0.00304,0.00785,,,,,,,0.00099,0.0016,0.00268,0.00683,,,,,,,0.00085,0.00138,0.00286,0.00742,,,,,,,0.00121,0.00198,0.00333,0.00866,,,,,,,0.0007,0.00112,0.00176,0.00415,,,,,,,0.00071,0.00114,0.00198,0.0048,,,,,,,0.00064,0.00102,0.00159,0.00376,,,,,,,0.00077,0.00123,0.00216,0.00536,,,,,,,0.00054,0.00085,0.00151,0.00359,,,,,,,0.0157,0.01309,0.01131,0.01516,,,,,,,0.0136,0.0119,0.01032,0.01392,,,,,,,0.01484,0.01355,0.01166,0.01606,,,,,,,0.0187,0.01566,0.01349,0.01823,,,,,,,0.00936,0.01012,0.00894,0.01218,,,,,,,0.01043,0.01101,0.00971,0.01341,,,,,,,0.00981,0.01004,0.00889,0.01202,,,,,,,0.01235,0.01094,0.00994,0.01354,,,,,,,0.00787,0.0079,0.00846,0.01115,,,,,,,2.81533,4.28515,5.70965,7.96511,,,,,,,2.64095,4.20862,5.58461,7.74811,,,,,,,3.15879,5.09396,6.40765,9.09955,,,,,,,3.41534,5.04656,6.94936,9.82645,,,,,,,2.24206,4.09923,5.68289,7.89177,,,,,,,2.50182,4.45273,5.99996,8.42497,,,,,,,2.44908,4.1495,5.8058,8.03416,,,,,,,2.85086,4.35082,5.92444,8.2455,,,,,,,2.14836,3.72464,5.05971,6.92498,,,,,,,378.34318,381.0668,385.69408,394.85501,,,,,,,381.92659,384.43966,388.73293,397.32087,,,,,,,388.14052,390.76153,395.23755,404.18724,,,,,,,378.57539,381.32694,386.03125,395.35071,,,,,,,389.70767,391.44169,394.49287,400.93104,,,,,,,383.05742,385.07754,388.59252,395.82336,,,,,,,385.99822,387.65935,390.60209,396.83497,,,,,,,385.98142,388.05307,391.64271,399.01043,,,,,,,378.86597,380.6927,383.84057,390.36286,,,,,,,0.00688,0.00779,0.0093,0.01424,,,,,,,0.00689,0.0078,0.00932,0.01426,,,,,,,0.00691,0.00781,0.00931,0.01424,,,,,,,0.00697,0.0079,0.00945,0.01448,,,,,,,0.00692,0.00783,0.00934,0.01429,,,,,,,0.00699,0.00791,0.00946,0.01448,,,,,,,0.00691,0.00783,0.00935,0.01431,,,,,,,0.00693,0.00784,0.00936,0.01433,,,,,,,0.00682,0.00771,0.00921,0.01409,,,,,,,0.01689,0.01977,0.02529,0.03064,,,,,,,0.01693,0.01982,0.02535,0.0307,,,,,,,0.01698,0.01987,0.02542,0.03079,,,,,,,0.01678,0.01964,0.02511,0.03042,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01684,0.01971,0.0252,0.03053,,,,,,,0.01689,0.01977,0.02528,0.03062,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01699,0.01989,0.02543,0.03081,,,,,,,0.10797,0.17736,0.18874,0.42449,,,,,,,0.10295,0.17662,0.1864,0.42077,,,,,,,0.10737,0.19377,0.20112,0.47463,,,,,,,0.12438,0.20769,0.21747,0.51286,,,,,,,0.09636,0.18234,0.18773,0.45915,,,,,,,0.10207,0.19153,0.19779,0.47921,,,,,,,0.10397,0.18197,0.1886,0.45281,,,,,,,0.11669,0.19084,0.20664,0.4837,,,,,,,0.07855,0.13872,0.18314,0.41752,,,,,,,0.00197,0.00306,0.00481,0.01236,,,,,,,0.00184,0.00285,0.00449,0.01118,,,,,,,0.00167,0.00257,0.00464,0.01189,,,,,,,0.00203,0.00318,0.00507,0.01315,,,,,,,0.0016,0.00244,0.00364,0.00792,,,,,,,0.00157,0.00239,0.0038,0.00865,,,,,,,0.00151,0.00229,0.00341,0.00741,,,,,,,0.0016,0.00245,0.00397,0.00935,,,,,,,0.00134,0.00201,0.00327,0.00717,,,,,,,0.03277,0.03528,0.03933,0.05653,,,,,,,0.0334,0.03568,0.03943,0.05459,,,,,,,0.0355,0.03752,0.04236,0.05884,,,,,,,0.03137,0.034,0.03842,0.057,,,,,,,0.03479,0.03659,0.0392,0.04866,,,,,,,0.03219,0.03398,0.03712,0.04793,,,,,,,0.032,0.03366,0.03606,0.04485,,,,,,,0.0336,0.03546,0.03886,0.05091,,,,,,,0.03248,0.03392,0.03665,0.04518,,,,,,,0.00764,0.00986,0.01345,0.02867,,,,,,,0.00746,0.00948,0.0128,0.02621,,,,,,,0.00742,0.00921,0.01349,0.02807,,,,,,,0.00763,0.00995,0.01387,0.03031,,,,,,,0.00714,0.00874,0.01104,0.01941,,,,,,,0.00677,0.00836,0.01114,0.02069,,,,,,,0.00663,0.00811,0.01023,0.01801,,,,,,,0.00705,0.00869,0.0117,0.02237,,,,,,,0.00638,0.00766,0.01007,0.01762,,,,,,,0.00804,0.00729,0.00246,0.00252,,,,,,,0.00819,0.00736,0.00248,0.00253,,,,,,,0.0085,0.00748,0.00252,0.00258,,,,,,,0.0142,0.0073,0.00246,0.00252,,,,,,,0.00848,0.00749,0.00252,0.00256,,,,,,,0.00838,0.00737,0.00248,0.00253,,,,,,,0.01149,0.00742,0.00249,0.00253,,,,,,,0.01302,0.00664,0.00246,0.00251,,,,,,,0.00469,0.00341,0.00226,0.0023,,,,,,,0.1834,0.2564,0.37494,0.87021,,,,,,,0.16013,0.23155,0.34523,0.82398,,,,,,,0.17656,0.26231,0.38423,0.91684,,,,,,,0.21798,0.30153,0.43831,1.0031,,,,,,,0.11355,0.19413,0.31418,0.79823,,,,,,,0.12554,0.21018,0.33298,0.84003,,,,,,,0.11604,0.18995,0.3086,0.78122,,,,,,,0.15086,0.22382,0.3534,0.86611,,,,,,,0.10507,0.17179,0.30158,0.74747,,,,, +Full size car,GSL,2015,,,0.00092,0.00146,0.0025,0.00526,,,,,,,0.00083,0.00133,0.00227,0.00471,,,,,,,0.00072,0.00139,0.00237,0.00497,,,,,,,0.00098,0.00156,0.00269,0.00571,,,,,,,0.00064,0.00097,0.00163,0.00318,,,,,,,0.00064,0.00106,0.00179,0.00355,,,,,,,0.00059,0.00089,0.00149,0.00288,,,,,,,0.00067,0.00112,0.0019,0.00383,,,,,,,0.0005,0.00084,0.00141,0.00273,,,,,,,0.01203,0.00913,0.00924,0.01145,,,,,,,0.01102,0.00846,0.00871,0.01074,,,,,,,0.0115,0.00942,0.00974,0.01214,,,,,,,0.01295,0.0107,0.01101,0.01374,,,,,,,0.00832,0.00744,0.00824,0.01003,,,,,,,0.00901,0.00805,0.00881,0.01081,,,,,,,0.00833,0.00742,0.00825,0.01002,,,,,,,0.00941,0.00823,0.00878,0.01079,,,,,,,0.00692,0.00715,0.0078,0.0094,,,,,,,2.06583,3.6226,4.92713,6.31237,,,,,,,2.03019,3.58601,4.92274,6.26672,,,,,,,2.29864,4.00651,5.62976,7.24134,,,,,,,2.26276,4.31008,6.07293,7.79439,,,,,,,1.83498,3.73579,5.34386,6.71193,,,,,,,1.97763,3.88292,5.56387,7.04799,,,,,,,1.87953,3.83436,5.47625,6.88076,,,,,,,1.9991,3.85766,5.4111,6.84761,,,,,,,1.75413,3.41091,4.74473,5.94053,,,,,,,338.57847,341.09603,343.67549,354.78827,,,,,,,341.7079,344.00277,346.28136,356.96524,,,,,,,347.29401,349.69827,352.11188,363.1334,,,,,,,338.82115,341.3785,344.02646,355.26598,,,,,,,348.39569,349.87174,351.05478,360.07829,,,,,,,342.56263,344.34647,345.95334,355.55556,,,,,,,345.07041,346.47751,347.58297,356.41349,,,,,,,345.18202,347.01345,348.6733,358.41328,,,,,,,338.71426,340.28094,341.58215,350.58905,,,,,,,0.00442,0.00499,0.00575,0.00808,,,,,,,0.00445,0.00501,0.00577,0.0081,,,,,,,0.00449,0.00505,0.00581,0.00812,,,,,,,0.00445,0.00503,0.0058,0.00819,,,,,,,0.00449,0.00506,0.00581,0.00814,,,,,,,0.00449,0.00506,0.00584,0.00821,,,,,,,0.00445,0.00501,0.00578,0.00812,,,,,,,0.00448,0.00505,0.00581,0.00815,,,,,,,0.00441,0.00497,0.00572,0.00801,,,,,,,0.01689,0.01958,0.02529,0.02574,,,,,,,0.01693,0.01962,0.02535,0.0258,,,,,,,0.01698,0.01968,0.02542,0.02587,,,,,,,0.01678,0.01944,0.02511,0.02556,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01684,0.01951,0.0252,0.02565,,,,,,,0.01689,0.01957,0.02528,0.02573,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01699,0.01969,0.02543,0.02589,,,,,,,0.08395,0.11021,0.16233,0.23277,,,,,,,0.08296,0.10809,0.15989,0.22985,,,,,,,0.08345,0.11687,0.17199,0.25144,,,,,,,0.08834,0.12675,0.1866,0.27358,,,,,,,0.07368,0.1058,0.15887,0.2354,,,,,,,0.07856,0.11257,0.16823,0.24859,,,,,,,0.07498,0.10632,0.15996,0.23561,,,,,,,0.08151,0.11853,0.17604,0.25706,,,,,,,0.06022,0.10415,0.15546,0.22547,,,,,,,0.00175,0.00264,0.00429,0.00825,,,,,,,0.00167,0.00253,0.00409,0.00772,,,,,,,0.00152,0.00258,0.00418,0.00798,,,,,,,0.00179,0.00273,0.00445,0.00866,,,,,,,0.00152,0.00221,0.00351,0.00624,,,,,,,0.00148,0.00227,0.00362,0.00655,,,,,,,0.00144,0.00209,0.0033,0.00583,,,,,,,0.00149,0.00232,0.00372,0.00682,,,,,,,0.00128,0.00201,0.00317,0.0056,,,,,,,0.03221,0.03421,0.03795,0.04721,,,,,,,0.03297,0.03488,0.03838,0.04678,,,,,,,0.03513,0.03752,0.04114,0.04997,,,,,,,0.03071,0.03284,0.03678,0.04668,,,,,,,0.0346,0.03605,0.03886,0.04491,,,,,,,0.03198,0.03367,0.03664,0.04323,,,,,,,0.03182,0.03318,0.03579,0.04136,,,,,,,0.0333,0.03511,0.03819,0.04524,,,,,,,0.03234,0.03389,0.0364,0.04175,,,,,,,0.00715,0.00892,0.01223,0.02042,,,,,,,0.00709,0.00877,0.01187,0.0193,,,,,,,0.00709,0.00921,0.01241,0.02022,,,,,,,0.00704,0.00893,0.01241,0.02118,,,,,,,0.00697,0.00826,0.01074,0.01609,,,,,,,0.00658,0.00809,0.01071,0.01654,,,,,,,0.00648,0.00768,0.00999,0.01492,,,,,,,0.00678,0.00838,0.01111,0.01735,,,,,,,0.00626,0.00763,0.00985,0.01458,,,,,,,0.00648,0.00218,0.00219,0.00226,,,,,,,0.00654,0.00219,0.00221,0.00228,,,,,,,0.00665,0.00223,0.00225,0.00232,,,,,,,0.00648,0.00218,0.00219,0.00227,,,,,,,0.00667,0.00223,0.00224,0.0023,,,,,,,0.00656,0.0022,0.00221,0.00227,,,,,,,0.0066,0.00221,0.00222,0.00227,,,,,,,0.0059,0.00218,0.00219,0.00225,,,,,,,0.00303,0.00201,0.00201,0.00207,,,,,,,0.13385,0.19168,0.30942,0.59559,,,,,,,0.12268,0.17815,0.29387,0.57295,,,,,,,0.13049,0.19581,0.32311,0.6237,,,,,,,0.14585,0.22058,0.35957,0.67797,,,,,,,0.09586,0.16181,0.28998,0.57785,,,,,,,0.10336,0.17165,0.303,0.5979,,,,,,,0.09514,0.15958,0.28651,0.56892,,,,,,,0.11304,0.18271,0.31443,0.61442,,,,,,,0.0891,0.15698,0.27944,0.55401,,,, +Full size car,GSL,2020,,,,0.0008,0.00122,0.00187,0.00375,,,,,,,0.00074,0.00112,0.0017,0.00339,,,,,,,0.00077,0.00116,0.00178,0.00355,,,,,,,0.00086,0.0013,0.002,0.00405,,,,,,,0.00055,0.00082,0.00123,0.00237,,,,,,,0.0006,0.00089,0.00135,0.00262,,,,,,,0.00051,0.00076,0.00113,0.00215,,,,,,,0.00063,0.00094,0.00143,0.0028,,,,,,,0.00048,0.00072,0.00107,0.00203,,,,,,,0.00916,0.00746,0.00693,0.0085,,,,,,,0.00818,0.0068,0.00641,0.00789,,,,,,,0.00863,0.00759,0.00717,0.00895,,,,,,,0.00989,0.00868,0.00817,0.01018,,,,,,,0.00557,0.00559,0.00559,0.00707,,,,,,,0.00625,0.00615,0.00609,0.00771,,,,,,,0.00551,0.00555,0.00557,0.00704,,,,,,,0.00693,0.00637,0.00617,0.00774,,,,,,,0.00557,0.00532,0.00526,0.00656,,,,,,,1.6915,2.49519,3.11486,4.16084,,,,,,,1.63085,2.43641,3.05924,4.09089,,,,,,,1.73413,2.72559,3.49384,4.74907,,,,,,,1.87862,2.95774,3.80936,5.14963,,,,,,,1.4536,2.43222,3.15221,4.27573,,,,,,,1.53597,2.55786,3.32659,4.5339,,,,,,,1.50056,2.50095,3.23989,4.39415,,,,,,,1.60232,2.56071,3.26966,4.41578,,,,,,,1.38875,2.22443,2.81303,3.77549,,,,,,,271.96867,273.86852,275.68648,290.82129,,,,,,,274.31603,276.03072,277.5877,292.40308,,,,,,,278.85543,280.6576,282.324,297.52236,,,,,,,272.22635,274.16033,276.03818,291.29223,,,,,,,279.09756,280.1349,280.74701,294.2357,,,,,,,274.66253,275.95649,276.93841,290.83456,,,,,,,276.41031,277.39344,277.94311,291.2138,,,,,,,276.77516,278.10662,279.13032,293.18636,,,,,,,271.38059,272.49515,273.21747,286.5266,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.05999,0.0922,0.1234,0.16461,,,,,,,0.05835,0.09003,0.12087,0.16146,,,,,,,0.05889,0.09688,0.12934,0.17522,,,,,,,0.06337,0.10563,0.14113,0.1918,,,,,,,0.04928,0.08579,0.11633,0.15932,,,,,,,0.05361,0.09221,0.1246,0.17031,,,,,,,0.05031,0.0866,0.11769,0.16041,,,,,,,0.05848,0.09748,0.13112,0.17751,,,,,,,0.05144,0.08499,0.1148,0.15447,,,,,,,0.00154,0.00222,0.00323,0.00592,,,,,,,0.00148,0.00214,0.00308,0.00559,,,,,,,0.00151,0.00218,0.00315,0.00574,,,,,,,0.00158,0.00229,0.00334,0.00617,,,,,,,0.00132,0.00187,0.00266,0.00465,,,,,,,0.00135,0.00192,0.00274,0.00484,,,,,,,0.00125,0.00177,0.0025,0.00435,,,,,,,0.00137,0.00196,0.00281,0.00501,,,,,,,0.0012,0.0017,0.00241,0.00418,,,,,,,0.03173,0.03327,0.03557,0.04186,,,,,,,0.03255,0.034,0.03615,0.04194,,,,,,,0.03513,0.03662,0.03883,0.04485,,,,,,,0.03023,0.03185,0.03426,0.04094,,,,,,,0.03416,0.03534,0.03705,0.04147,,,,,,,0.03169,0.03293,0.03474,0.03948,,,,,,,0.03141,0.03251,0.0341,0.03817,,,,,,,0.03305,0.03434,0.03622,0.0412,,,,,,,0.0322,0.03326,0.03478,0.03869,,,,,,,0.00672,0.00809,0.01012,0.01568,,,,,,,0.00671,0.008,0.00989,0.01502,,,,,,,0.00709,0.00841,0.01037,0.0157,,,,,,,0.00662,0.00805,0.01019,0.0161,,,,,,,0.00658,0.00763,0.00914,0.01305,,,,,,,0.00633,0.00743,0.00903,0.01322,,,,,,,0.00611,0.00709,0.00849,0.0121,,,,,,,0.00656,0.0077,0.00936,0.01377,,,,,,,0.00613,0.00708,0.00842,0.01187,,,,,,,0.00173,0.00175,0.00176,0.00186,,,,,,,0.00175,0.00176,0.00177,0.00187,,,,,,,0.00178,0.00179,0.0018,0.0019,,,,,,,0.00174,0.00175,0.00176,0.00186,,,,,,,0.00178,0.00179,0.00179,0.00188,,,,,,,0.00175,0.00176,0.00177,0.00186,,,,,,,0.00176,0.00177,0.00177,0.00186,,,,,,,0.00174,0.00175,0.00175,0.00184,,,,,,,0.0016,0.00161,0.00161,0.00169,,,,,,,0.11502,0.15737,0.23418,0.46466,,,,,,,0.10405,0.14371,0.21789,0.44466,,,,,,,0.11044,0.15929,0.24188,0.48542,,,,,,,0.12517,0.18075,0.27096,0.52592,,,,,,,0.07745,0.12265,0.20218,0.44371,,,,,,,0.08467,0.13261,0.21478,0.46013,,,,,,,0.07619,0.11947,0.19687,0.43326,,,,,,,0.09474,0.14263,0.22554,0.47291,,,,,,,0.07609,0.11765,0.19281,0.42371,,, +Full size car,GSL,2025,,,,,0.00052,0.00077,0.00121,0.00249,,,,,,,0.00048,0.00071,0.0011,0.00226,,,,,,,0.0005,0.00074,0.00115,0.00236,,,,,,,0.00056,0.00083,0.00129,0.00267,,,,,,,0.00036,0.00052,0.0008,0.00159,,,,,,,0.00039,0.00057,0.00087,0.00175,,,,,,,0.00033,0.00048,0.00073,0.00144,,,,,,,0.00041,0.0006,0.00093,0.00187,,,,,,,0.00032,0.00046,0.00069,0.00137,,,,,,,0.00781,0.00591,0.0053,0.00652,,,,,,,0.0068,0.00524,0.00477,0.0059,,,,,,,0.00728,0.00585,0.00533,0.00669,,,,,,,0.00849,0.00679,0.00616,0.0077,,,,,,,0.0041,0.00375,0.00367,0.00475,,,,,,,0.0048,0.00428,0.00412,0.00532,,,,,,,0.00401,0.00369,0.00363,0.0047,,,,,,,0.00548,0.00459,0.00432,0.00548,,,,,,,0.00404,0.00355,0.00343,0.00438,,,,,,,1.28004,1.82213,2.29163,3.03913,,,,,,,1.20359,1.74288,2.20878,2.93541,,,,,,,1.29195,1.95533,2.52412,3.4028,,,,,,,1.41672,2.1462,2.77925,3.72628,,,,,,,0.98344,1.62445,2.14039,2.89265,,,,,,,1.06532,1.73991,2.29418,3.11087,,,,,,,1.0149,1.67194,2.20204,2.97831,,,,,,,1.13293,1.76703,2.28397,3.06719,,,,,,,0.94245,1.48927,1.91352,2.56138,,,,,,,219.79055,221.42766,223.33293,236.96005,,,,,,,221.55546,223.03798,224.7172,238.04539,,,,,,,225.26595,226.82303,228.60383,242.28136,,,,,,,220.05063,221.7187,223.68094,237.42605,,,,,,,224.95387,225.86908,226.72345,238.81764,,,,,,,221.56775,222.69787,223.8734,236.35339,,,,,,,222.76989,223.6395,224.43786,236.33729,,,,,,,223.28135,224.44311,225.65654,238.27886,,,,,,,218.76119,219.73734,220.67422,232.60211,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04608,0.06684,0.08884,0.12065,,,,,,,0.04424,0.06453,0.08611,0.11729,,,,,,,0.04457,0.06871,0.09129,0.12631,,,,,,,0.04845,0.07557,0.10045,0.13913,,,,,,,0.03516,0.058,0.07873,0.11077,,,,,,,0.03922,0.0636,0.08583,0.12019,,,,,,,0.03604,0.05886,0.08004,0.11191,,,,,,,0.04298,0.06765,0.09082,0.12596,,,,,,,0.03694,0.05809,0.0785,0.10845,,,,,,,0.001,0.00142,0.0021,0.00396,,,,,,,0.00097,0.00136,0.002,0.00375,,,,,,,0.00098,0.00139,0.00205,0.00384,,,,,,,0.00103,0.00146,0.00217,0.00411,,,,,,,0.00086,0.0012,0.00173,0.00313,,,,,,,0.00088,0.00123,0.00178,0.00326,,,,,,,0.00082,0.00113,0.00163,0.00293,,,,,,,0.0009,0.00126,0.00183,0.00337,,,,,,,0.00078,0.00109,0.00157,0.00283,,,,,,,0.03056,0.0315,0.03305,0.03738,,,,,,,0.03144,0.03232,0.03377,0.03778,,,,,,,0.03399,0.0349,0.03639,0.04055,,,,,,,0.02902,0.03,0.03163,0.03619,,,,,,,0.0332,0.03392,0.03508,0.03818,,,,,,,0.0307,0.03146,0.03268,0.036,,,,,,,0.0305,0.03117,0.03225,0.03511,,,,,,,0.03203,0.03282,0.03409,0.03757,,,,,,,0.03133,0.03198,0.03301,0.03578,,,,,,,0.00569,0.00652,0.00789,0.01172,,,,,,,0.00573,0.00651,0.00779,0.01134,,,,,,,0.00609,0.00689,0.00821,0.01189,,,,,,,0.00555,0.00642,0.00786,0.0119,,,,,,,0.00573,0.00637,0.00739,0.01014,,,,,,,0.00546,0.00613,0.00721,0.01014,,,,,,,0.00531,0.00591,0.00686,0.00939,,,,,,,0.00566,0.00636,0.00748,0.01056,,,,,,,0.00537,0.00594,0.00685,0.00931,,,,,,,0.0014,0.00141,0.00142,0.00151,,,,,,,0.00141,0.00142,0.00143,0.00152,,,,,,,0.00144,0.00145,0.00146,0.00155,,,,,,,0.0014,0.00141,0.00143,0.00151,,,,,,,0.00144,0.00144,0.00145,0.00152,,,,,,,0.00141,0.00142,0.00143,0.00151,,,,,,,0.00142,0.00143,0.00143,0.00151,,,,,,,0.0014,0.00141,0.00142,0.0015,,,,,,,0.00129,0.0013,0.0013,0.00137,,,,,,,0.10037,0.12834,0.18648,0.38014,,,,,,,0.08893,0.11407,0.16926,0.35883,,,,,,,0.09561,0.12784,0.19016,0.39411,,,,,,,0.10964,0.14681,0.21499,0.4276,,,,,,,0.06039,0.0877,0.14513,0.3445,,,,,,,0.06798,0.09772,0.15759,0.36058,,,,,,,0.05866,0.08376,0.13857,0.33208,,,,,,,0.07746,0.10736,0.16807,0.37238,,,,,,,0.05838,0.08294,0.13681,0.32784,, +Full size car,GSL,2030,,,,,,0.00052,0.00077,0.0012,0.00218,,,,,,,0.00048,0.00071,0.00109,0.00197,,,,,,,0.0005,0.00074,0.00114,0.00206,,,,,,,0.00055,0.00082,0.00128,0.00234,,,,,,,0.00036,0.00052,0.00079,0.00139,,,,,,,0.00039,0.00057,0.00087,0.00154,,,,,,,0.00033,0.00048,0.00072,0.00126,,,,,,,0.00041,0.0006,0.00092,0.00164,,,,,,,0.00032,0.00046,0.00069,0.0012,,,,,,,0.00734,0.0054,0.00483,0.00576,,,,,,,0.00633,0.00473,0.0043,0.00513,,,,,,,0.00681,0.00528,0.00481,0.00578,,,,,,,0.00799,0.00617,0.00559,0.0067,,,,,,,0.00361,0.00317,0.00312,0.00381,,,,,,,0.00431,0.00369,0.00355,0.00434,,,,,,,0.00351,0.0031,0.00306,0.00375,,,,,,,0.00499,0.00403,0.00378,0.00458,,,,,,,0.00353,0.00299,0.00291,0.00353,,,,,,,1.17215,1.65559,2.10275,2.65422,,,,,,,1.09196,1.57161,2.01158,2.53948,,,,,,,1.17695,1.76507,2.30057,2.93126,,,,,,,1.29642,1.94489,2.54195,3.22512,,,,,,,0.86161,1.42567,1.89891,2.4146,,,,,,,0.94312,1.53804,2.04905,2.6147,,,,,,,0.88883,1.46758,1.95506,2.48593,,,,,,,1.01048,1.57125,2.05041,2.60241,,,,,,,0.82587,1.30814,1.69823,2.14736,,,,,,,202.37594,204.42196,207.59024,216.57276,,,,,,,203.95177,205.85843,208.81947,217.48287,,,,,,,207.3841,209.3687,212.4505,221.38071,,,,,,,202.63559,204.71112,207.93816,217.0329,,,,,,,206.90582,208.2932,210.47961,217.89872,,,,,,,203.86263,205.44197,207.91823,215.77045,,,,,,,204.89053,206.23087,208.35053,215.62512,,,,,,,205.4427,207.05521,209.57762,217.53359,,,,,,,201.21947,202.64801,204.87349,212.24266,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04083,0.05806,0.07816,0.10353,,,,,,,0.03891,0.05569,0.07537,0.10004,,,,,,,0.0391,0.05893,0.07951,0.10677,,,,,,,0.04271,0.06511,0.08779,0.11801,,,,,,,0.02982,0.0484,0.06717,0.09131,,,,,,,0.03375,0.05369,0.07387,0.10005,,,,,,,0.03065,0.04925,0.06839,0.09258,,,,,,,0.03708,0.05732,0.0784,0.10533,,,,,,,0.03148,0.04882,0.06742,0.09019,,,,,,,0.001,0.00142,0.00208,0.00349,,,,,,,0.00096,0.00136,0.00199,0.0033,,,,,,,0.00098,0.00139,0.00203,0.00339,,,,,,,0.00103,0.00146,0.00215,0.00362,,,,,,,0.00086,0.0012,0.00172,0.00277,,,,,,,0.00088,0.00123,0.00177,0.00288,,,,,,,0.00081,0.00113,0.00162,0.0026,,,,,,,0.00089,0.00125,0.00182,0.00297,,,,,,,0.00078,0.00109,0.00157,0.0025,,,,,,,0.03055,0.03149,0.03301,0.03629,,,,,,,0.03143,0.03231,0.03374,0.03677,,,,,,,0.03398,0.03489,0.03636,0.0395,,,,,,,0.02901,0.02999,0.03158,0.03505,,,,,,,0.03319,0.03392,0.03506,0.03739,,,,,,,0.0307,0.03146,0.03266,0.03516,,,,,,,0.03049,0.03117,0.03222,0.03438,,,,,,,0.03203,0.03281,0.03407,0.03669,,,,,,,0.03133,0.03198,0.03301,0.03507,,,,,,,0.00568,0.00651,0.00786,0.01076,,,,,,,0.00572,0.0065,0.00776,0.01045,,,,,,,0.00608,0.00688,0.00818,0.01096,,,,,,,0.00555,0.00641,0.00782,0.01089,,,,,,,0.00573,0.00637,0.00738,0.00944,,,,,,,0.00545,0.00612,0.00719,0.0094,,,,,,,0.00531,0.0059,0.00684,0.00874,,,,,,,0.00566,0.00635,0.00746,0.00978,,,,,,,0.00536,0.00594,0.00685,0.00867,,,,,,,0.00129,0.0013,0.00132,0.00138,,,,,,,0.0013,0.00131,0.00133,0.00139,,,,,,,0.00132,0.00134,0.00136,0.00141,,,,,,,0.00129,0.00131,0.00133,0.00138,,,,,,,0.00132,0.00133,0.00134,0.00139,,,,,,,0.0013,0.00131,0.00133,0.00138,,,,,,,0.00131,0.00132,0.00133,0.00138,,,,,,,0.00129,0.0013,0.00132,0.00137,,,,,,,0.00119,0.00119,0.00121,0.00125,,,,,,,0.09597,0.12053,0.17587,0.34547,,,,,,,0.08449,0.10626,0.15853,0.32358,,,,,,,0.09122,0.11933,0.17849,0.35592,,,,,,,0.10497,0.13752,0.20211,0.38701,,,,,,,0.05571,0.07883,0.13249,0.30362,,,,,,,0.06332,0.08869,0.14477,0.31928,,,,,,,0.05389,0.07477,0.12573,0.29074,,,,,,,0.0726,0.09836,0.15525,0.33171,,,,,,,0.05346,0.07414,0.12449,0.28855, +Full size car,GSL,2035,,,,,,,0.00052,0.00077,0.0012,0.00214,,,,,,,0.00048,0.0007,0.0011,0.00194,,,,,,,0.0005,0.00073,0.00114,0.00203,,,,,,,0.00055,0.00081,0.00128,0.00231,,,,,,,0.00036,0.00052,0.0008,0.00137,,,,,,,0.00039,0.00056,0.00087,0.00151,,,,,,,0.00033,0.00048,0.00073,0.00125,,,,,,,0.00041,0.0006,0.00092,0.00161,,,,,,,0.00031,0.00046,0.00069,0.00118,,,,,,,0.00731,0.00541,0.00483,0.00563,,,,,,,0.0063,0.00474,0.00429,0.005,,,,,,,0.00679,0.00529,0.0048,0.00562,,,,,,,0.00796,0.00618,0.00558,0.00653,,,,,,,0.0036,0.00318,0.00311,0.00365,,,,,,,0.00429,0.00369,0.00355,0.00417,,,,,,,0.0035,0.0031,0.00306,0.00359,,,,,,,0.00497,0.00403,0.00378,0.00443,,,,,,,0.00352,0.00299,0.00291,0.00339,,,,,,,1.17139,1.66244,2.09836,2.58897,,,,,,,1.09139,1.57691,2.00811,2.47313,,,,,,,1.17648,1.77183,2.29622,2.85045,,,,,,,1.29599,1.95283,2.53692,3.13833,,,,,,,0.86159,1.42604,1.89834,2.33638,,,,,,,0.94303,1.5397,2.04769,2.5324,,,,,,,0.88894,1.46894,1.95385,2.40444,,,,,,,1.01005,1.57318,2.04887,2.52605,,,,,,,0.82558,1.3084,1.69774,2.08066,,,,,,,202.31712,204.41466,207.58447,213.41988,,,,,,,203.89648,205.85154,208.81373,214.30222,,,,,,,207.32639,209.36151,212.4449,218.14804,,,,,,,202.575,204.70376,207.93235,213.87923,,,,,,,206.86326,208.28791,210.47523,214.66023,,,,,,,203.81517,205.43598,207.91323,212.58504,,,,,,,204.84879,206.22545,208.34629,212.41826,,,,,,,205.39473,207.04914,209.57269,214.32318,,,,,,,201.1776,202.64302,204.86944,209.091,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.00459,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04072,0.0579,0.07824,0.10087,,,,,,,0.0388,0.05554,0.07544,0.09735,,,,,,,0.039,0.05876,0.0796,0.10363,,,,,,,0.0426,0.06488,0.08791,0.11463,,,,,,,0.02976,0.04829,0.06723,0.08811,,,,,,,0.03367,0.05355,0.07394,0.09675,,,,,,,0.03058,0.04911,0.06847,0.08945,,,,,,,0.037,0.05721,0.07846,0.10197,,,,,,,0.03142,0.04879,0.06743,0.08719,,,,,,,0.001,0.00141,0.00209,0.00343,,,,,,,0.00096,0.00135,0.002,0.00325,,,,,,,0.00098,0.00138,0.00204,0.00333,,,,,,,0.00102,0.00145,0.00216,0.00357,,,,,,,0.00086,0.00119,0.00173,0.00273,,,,,,,0.00088,0.00122,0.00178,0.00284,,,,,,,0.00081,0.00112,0.00162,0.00256,,,,,,,0.00089,0.00125,0.00182,0.00293,,,,,,,0.00078,0.00109,0.00157,0.00246,,,,,,,0.03055,0.03147,0.03303,0.03617,,,,,,,0.03143,0.0323,0.03375,0.03666,,,,,,,0.03398,0.03487,0.03637,0.03939,,,,,,,0.02901,0.02997,0.0316,0.03494,,,,,,,0.03319,0.03391,0.03507,0.0373,,,,,,,0.03069,0.03144,0.03267,0.03506,,,,,,,0.03049,0.03115,0.03223,0.0343,,,,,,,0.03202,0.0328,0.03408,0.03658,,,,,,,0.03133,0.03198,0.03301,0.03498,,,,,,,0.00568,0.0065,0.00787,0.01065,,,,,,,0.00572,0.00649,0.00777,0.01035,,,,,,,0.00608,0.00687,0.00819,0.01086,,,,,,,0.00554,0.00639,0.00784,0.01079,,,,,,,0.00573,0.00636,0.00738,0.00936,,,,,,,0.00545,0.00611,0.0072,0.00931,,,,,,,0.0053,0.00589,0.00685,0.00868,,,,,,,0.00566,0.00634,0.00747,0.00969,,,,,,,0.00536,0.00594,0.00685,0.00859,,,,,,,0.00129,0.0013,0.00132,0.00136,,,,,,,0.0013,0.00131,0.00133,0.00137,,,,,,,0.00132,0.00134,0.00136,0.00139,,,,,,,0.00129,0.00131,0.00133,0.00136,,,,,,,0.00132,0.00133,0.00134,0.00137,,,,,,,0.0013,0.00131,0.00133,0.00136,,,,,,,0.00131,0.00132,0.00133,0.00136,,,,,,,0.00129,0.0013,0.00132,0.00135,,,,,,,0.00119,0.00119,0.00121,0.00123,,,,,,,0.09568,0.12064,0.17575,0.3413,,,,,,,0.08424,0.10634,0.15844,0.31927,,,,,,,0.09096,0.11948,0.17836,0.35106,,,,,,,0.10466,0.13758,0.20203,0.38184,,,,,,,0.05555,0.07875,0.13252,0.29842,,,,,,,0.06314,0.08865,0.14477,0.31397,,,,,,,0.05373,0.07468,0.12577,0.2854,,,,,,,0.07236,0.09813,0.15536,0.32675,,,,,,,0.05331,0.07411,0.12446,0.28355 +Full size car,GSL,2040,,,,,,,,0.00051,0.00077,0.00121,,,,,,,,0.00047,0.0007,0.0011,,,,,,,,0.00049,0.00073,0.00115,,,,,,,,0.00055,0.00082,0.00129,,,,,,,,0.00036,0.00052,0.0008,,,,,,,,0.00038,0.00057,0.00087,,,,,,,,0.00033,0.00048,0.00073,,,,,,,,0.00041,0.0006,0.00092,,,,,,,,0.00031,0.00046,0.00069,,,,,,,,0.00732,0.0054,0.00483,,,,,,,,0.00631,0.00473,0.00429,,,,,,,,0.00681,0.00529,0.0048,,,,,,,,0.00798,0.00617,0.00558,,,,,,,,0.0036,0.00317,0.00311,,,,,,,,0.0043,0.00369,0.00355,,,,,,,,0.0035,0.0031,0.00306,,,,,,,,0.00497,0.00403,0.00378,,,,,,,,0.00352,0.00299,0.00291,,,,,,,,1.17673,1.65855,2.09351,,,,,,,,1.09547,1.57382,2.00431,,,,,,,,1.182,1.76797,2.29143,,,,,,,,1.30278,1.94835,2.53134,,,,,,,,0.86185,1.42543,1.89788,,,,,,,,0.94437,1.53842,2.04633,,,,,,,,0.88987,1.46787,1.95264,,,,,,,,1.01144,1.57172,2.04732,,,,,,,,0.82541,1.30783,1.69737,,,,,,,,202.30794,204.40446,207.58357,,,,,,,,203.88772,205.84183,208.81287,,,,,,,,207.31737,209.35159,212.44393,,,,,,,,202.56569,204.69324,207.93131,,,,,,,,206.85683,208.28076,210.47469,,,,,,,,203.80767,205.4279,207.91246,,,,,,,,204.84254,206.21834,208.34554,,,,,,,,205.38707,207.04092,209.57195,,,,,,,,201.17118,202.6359,204.86889,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04058,0.05794,0.07835,,,,,,,,0.03867,0.05558,0.07555,,,,,,,,0.03885,0.05881,0.07972,,,,,,,,0.04241,0.06495,0.08807,,,,,,,,0.02967,0.04831,0.06731,,,,,,,,0.03356,0.05358,0.07404,,,,,,,,0.03047,0.04915,0.06858,,,,,,,,0.0369,0.05723,0.07853,,,,,,,,0.03138,0.04878,0.06745,,,,,,,,0.00099,0.00141,0.0021,,,,,,,,0.00096,0.00136,0.002,,,,,,,,0.00097,0.00138,0.00204,,,,,,,,0.00102,0.00145,0.00217,,,,,,,,0.00085,0.00119,0.00173,,,,,,,,0.00087,0.00122,0.00178,,,,,,,,0.00081,0.00113,0.00163,,,,,,,,0.00089,0.00125,0.00183,,,,,,,,0.00078,0.00109,0.00157,,,,,,,,0.03053,0.03148,0.03304,,,,,,,,0.03141,0.0323,0.03376,,,,,,,,0.03397,0.03488,0.03639,,,,,,,,0.02899,0.02998,0.03162,,,,,,,,0.03318,0.03391,0.03508,,,,,,,,0.03068,0.03145,0.03268,,,,,,,,0.03048,0.03116,0.03225,,,,,,,,0.03202,0.03281,0.03409,,,,,,,,0.03133,0.03198,0.03301,,,,,,,,0.00567,0.0065,0.00789,,,,,,,,0.00571,0.00649,0.00779,,,,,,,,0.00606,0.00687,0.00821,,,,,,,,0.00552,0.0064,0.00786,,,,,,,,0.00572,0.00636,0.00739,,,,,,,,0.00544,0.00612,0.00721,,,,,,,,0.00529,0.0059,0.00686,,,,,,,,0.00565,0.00635,0.00748,,,,,,,,0.00536,0.00594,0.00685,,,,,,,,0.00129,0.0013,0.00132,,,,,,,,0.0013,0.00131,0.00133,,,,,,,,0.00132,0.00134,0.00136,,,,,,,,0.00129,0.00131,0.00133,,,,,,,,0.00132,0.00133,0.00134,,,,,,,,0.0013,0.00131,0.00133,,,,,,,,0.00131,0.00132,0.00133,,,,,,,,0.00129,0.0013,0.00132,,,,,,,,0.00119,0.00119,0.00121,,,,,,,,0.09576,0.12051,0.17567,,,,,,,,0.08429,0.10623,0.15837,,,,,,,,0.09107,0.11933,0.17826,,,,,,,,0.10472,0.13746,0.202,,,,,,,,0.0555,0.07874,0.13261,,,,,,,,0.06312,0.08862,0.14482,,,,,,,,0.05368,0.07468,0.12587,,,,,,,,0.07219,0.09818,0.15556,,,,,,,,0.05328,0.07408,0.12448 +Full size car,GSL,2045,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00048,0.00071,,,,,,,,,0.00049,0.00074,,,,,,,,,0.00055,0.00082,,,,,,,,,0.00036,0.00052,,,,,,,,,0.00039,0.00057,,,,,,,,,0.00033,0.00048,,,,,,,,,0.00041,0.0006,,,,,,,,,0.00031,0.00046,,,,,,,,,0.00731,0.0054,,,,,,,,,0.0063,0.00473,,,,,,,,,0.0068,0.00528,,,,,,,,,0.00797,0.00616,,,,,,,,,0.0036,0.00317,,,,,,,,,0.00429,0.00368,,,,,,,,,0.0035,0.0031,,,,,,,,,0.00497,0.00403,,,,,,,,,0.00352,0.00299,,,,,,,,,1.17358,1.65463,,,,,,,,,1.09298,1.57076,,,,,,,,,1.17876,1.76408,,,,,,,,,1.29888,1.94379,,,,,,,,,0.8613,1.42507,,,,,,,,,0.94325,1.53734,,,,,,,,,0.88901,1.46697,,,,,,,,,1.01025,1.57048,,,,,,,,,0.82507,1.30754,,,,,,,,,202.29977,204.40428,,,,,,,,,203.88009,205.84189,,,,,,,,,207.30962,209.35158,,,,,,,,,202.5573,204.69315,,,,,,,,,206.85099,208.28066,,,,,,,,,203.80131,205.42781,,,,,,,,,204.83695,206.2183,,,,,,,,,205.38059,207.04076,,,,,,,,,201.16547,202.63575,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04062,0.05802,,,,,,,,,0.03871,0.05566,,,,,,,,,0.0389,0.0589,,,,,,,,,0.04247,0.06507,,,,,,,,,0.02969,0.04837,,,,,,,,,0.03359,0.05366,,,,,,,,,0.0305,0.04923,,,,,,,,,0.03693,0.05728,,,,,,,,,0.03138,0.04879,,,,,,,,,0.00099,0.00142,,,,,,,,,0.00096,0.00136,,,,,,,,,0.00098,0.00139,,,,,,,,,0.00102,0.00146,,,,,,,,,0.00086,0.0012,,,,,,,,,0.00087,0.00123,,,,,,,,,0.00081,0.00113,,,,,,,,,0.00089,0.00125,,,,,,,,,0.00078,0.00109,,,,,,,,,0.03054,0.03149,,,,,,,,,0.03142,0.03231,,,,,,,,,0.03397,0.03489,,,,,,,,,0.029,0.02999,,,,,,,,,0.03319,0.03392,,,,,,,,,0.03069,0.03145,,,,,,,,,0.03048,0.03117,,,,,,,,,0.03202,0.03281,,,,,,,,,0.03133,0.03198,,,,,,,,,0.00567,0.00651,,,,,,,,,0.00571,0.0065,,,,,,,,,0.00607,0.00688,,,,,,,,,0.00553,0.00641,,,,,,,,,0.00572,0.00637,,,,,,,,,0.00544,0.00612,,,,,,,,,0.0053,0.0059,,,,,,,,,0.00565,0.00635,,,,,,,,,0.00536,0.00594,,,,,,,,,0.00129,0.0013,,,,,,,,,0.0013,0.00131,,,,,,,,,0.00132,0.00134,,,,,,,,,0.00129,0.00131,,,,,,,,,0.00132,0.00133,,,,,,,,,0.0013,0.00131,,,,,,,,,0.00131,0.00132,,,,,,,,,0.00129,0.0013,,,,,,,,,0.00119,0.00119,,,,,,,,,0.09565,0.12043,,,,,,,,,0.08421,0.10617,,,,,,,,,0.09096,0.11923,,,,,,,,,0.10461,0.1374,,,,,,,,,0.05548,0.07878,,,,,,,,,0.06309,0.08863,,,,,,,,,0.05367,0.07472,,,,,,,,,0.07222,0.09829,,,,,,,,,0.05326,0.07408 +Full size car,GSL,2050,,,,,,,,,,0.00052,,,,,,,,,,0.00048,,,,,,,,,,0.0005,,,,,,,,,,0.00055,,,,,,,,,,0.00036,,,,,,,,,,0.00039,,,,,,,,,,0.00033,,,,,,,,,,0.00041,,,,,,,,,,0.00031,,,,,,,,,,0.0073,,,,,,,,,,0.0063,,,,,,,,,,0.00678,,,,,,,,,,0.00796,,,,,,,,,,0.0036,,,,,,,,,,0.00429,,,,,,,,,,0.00349,,,,,,,,,,0.00497,,,,,,,,,,0.00352,,,,,,,,,,1.17027,,,,,,,,,,1.09037,,,,,,,,,,1.17532,,,,,,,,,,1.29471,,,,,,,,,,0.8608,,,,,,,,,,0.94214,,,,,,,,,,0.88814,,,,,,,,,,1.0091,,,,,,,,,,0.82482,,,,,,,,,,202.29983,,,,,,,,,,203.88015,,,,,,,,,,207.3096,,,,,,,,,,202.55725,,,,,,,,,,206.85097,,,,,,,,,,203.80119,,,,,,,,,,204.83681,,,,,,,,,,205.3805,,,,,,,,,,201.16542,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04068,,,,,,,,,,0.03876,,,,,,,,,,0.03896,,,,,,,,,,0.04255,,,,,,,,,,0.02973,,,,,,,,,,0.03364,,,,,,,,,,0.03055,,,,,,,,,,0.03696,,,,,,,,,,0.03139,,,,,,,,,,0.001,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00102,,,,,,,,,,0.00086,,,,,,,,,,0.00087,,,,,,,,,,0.00081,,,,,,,,,,0.00089,,,,,,,,,,0.00078,,,,,,,,,,0.03055,,,,,,,,,,0.03143,,,,,,,,,,0.03398,,,,,,,,,,0.02901,,,,,,,,,,0.03319,,,,,,,,,,0.03069,,,,,,,,,,0.03049,,,,,,,,,,0.03202,,,,,,,,,,0.03133,,,,,,,,,,0.00568,,,,,,,,,,0.00572,,,,,,,,,,0.00608,,,,,,,,,,0.00554,,,,,,,,,,0.00573,,,,,,,,,,0.00545,,,,,,,,,,0.0053,,,,,,,,,,0.00565,,,,,,,,,,0.00536,,,,,,,,,,0.00129,,,,,,,,,,0.0013,,,,,,,,,,0.00132,,,,,,,,,,0.00129,,,,,,,,,,0.00132,,,,,,,,,,0.0013,,,,,,,,,,0.00131,,,,,,,,,,0.00129,,,,,,,,,,0.00119,,,,,,,,,,0.09558,,,,,,,,,,0.08415,,,,,,,,,,0.09086,,,,,,,,,,0.10454,,,,,,,,,,0.05549,,,,,,,,,,0.06307,,,,,,,,,,0.05368,,,,,,,,,,0.07228,,,,,,,,,,0.05326 +Full size car,PH10E,1990,0.00511,0,0,0,0,0,0,0,0,0,0.00528,0,0,0,0,0,0,0,0,0,0.00573,0,0,0,0,0,0,0,0,0,0.00482,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.00519,0,0,0,0,0,0,0,0,0,0.00518,0,0,0,0,0,0,0,0,0,0.00542,0,0,0,0,0,0,0,0,0,0.00535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00813,0.00815,0.00842,0,0,0,0,0,0,0,0.00841,0.00842,0.00867,0,0,0,0,0,0,0,0.00921,0.0092,0.00941,0,0,0,0,0,0,0,0.00749,0.00751,0.00781,0,0,0,0,0,0,0,0.00903,0.00903,0.00924,0,0,0,0,0,0,0,0.00812,0.00813,0.00839,0,0,0,0,0,0,0,0.00822,0.00823,0.00849,0,0,0,0,0,0,0,0.00864,0.00865,0.00889,0,0,0,0,0,0,0,0.00867,0.00868,0.00893,0,0,0,0,0,0,0,0.05405,0.05323,0.05328,0,0,0,0,0,0,0,0.05487,0.05402,0.05402,0,0,0,0,0,0,0,0.05726,0.05632,0.05622,0,0,0,0,0,0,0,0.05211,0.05133,0.05147,0,0,0,0,0,0,0,0.05672,0.0558,0.05572,0,0,0,0,0,0,0,0.05398,0.05314,0.05319,0,0,0,0,0,0,0,0.05431,0.05347,0.0535,0,0,0,0,0,0,0,0.05558,0.0547,0.05467,0,0,0,0,0,0,0,0.05569,0.05482,0.0548,0,0,0,0,0,0,0,0.04387,0.04311,0.04316,0,0,0,0,0,0,0,0.04443,0.04365,0.04366,0,0,0,0,0,0,0,0.04607,0.04522,0.04512,0,0,0,0,0,0,0,0.04247,0.04176,0.04189,0,0,0,0,0,0,0,0.04569,0.04485,0.04477,0,0,0,0,0,0,0,0.04376,0.04299,0.04304,0,0,0,0,0,0,0,0.04403,0.04326,0.0433,0,0,0,0,0,0,0,0.04492,0.04411,0.04409,0,0,0,0,0,0,0,0.04504,0.04425,0.04423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH10E,1995,0.00511,0.00511,0,0,0,0,0,0,0,0,0.00528,0.00528,0,0,0,0,0,0,0,0,0.00573,0.00573,0,0,0,0,0,0,0,0,0.00482,0.00482,0,0,0,0,0,0,0,0,0.00565,0.00565,0,0,0,0,0,0,0,0,0.00519,0.00519,0,0,0,0,0,0,0,0,0.00518,0.00518,0,0,0,0,0,0,0,0,0.00542,0.00542,0,0,0,0,0,0,0,0,0.00535,0.00535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00334,0.0045,0.00458,0.00561,0,0,0,0,0,0,0.00345,0.00464,0.00472,0.00578,0,0,0,0,0,0,0.00376,0.00506,0.00514,0.00627,0,0,0,0,0,0,0.0031,0.00418,0.00425,0.00522,0,0,0,0,0,0,0.00369,0.00497,0.00505,0.00616,0,0,0,0,0,0,0.00335,0.00451,0.00458,0.0056,0,0,0,0,0,0,0.00338,0.00455,0.00462,0.00567,0,0,0,0,0,0,0.00354,0.00477,0.00484,0.00593,0,0,0,0,0,0,0.00354,0.00477,0.00485,0.00594,0,0,0,0,0,0,0.02851,0.03562,0.03567,0.03999,0,0,0,0,0,0,0.02893,0.0361,0.03615,0.04053,0,0,0,0,0,0,0.03014,0.03747,0.03751,0.04209,0,0,0,0,0,0,0.02758,0.03455,0.0346,0.03874,0,0,0,0,0,0,0.02988,0.03717,0.03721,0.04175,0,0,0,0,0,0,0.02853,0.03563,0.03568,0.03996,0,0,0,0,0,0,0.02865,0.03578,0.03583,0.04016,0,0,0,0,0,0,0.02929,0.03651,0.03656,0.041,0,0,0,0,0,0,0.02929,0.03652,0.03657,0.04105,0,0,0,0,0,0,0.02037,0.02691,0.02696,0.03094,0,0,0,0,0,0,0.02057,0.02716,0.02721,0.03124,0,0,0,0,0,0,0.02113,0.02787,0.02791,0.03212,0,0,0,0,0,0,0.0199,0.02632,0.02637,0.03017,0,0,0,0,0,0,0.021,0.02771,0.02775,0.03192,0,0,0,0,0,0,0.02035,0.02688,0.02692,0.03087,0,0,0,0,0,0,0.02043,0.02699,0.02703,0.03102,0,0,0,0,0,0,0.02074,0.02737,0.02742,0.03151,0,0,0,0,0,0,0.02076,0.02741,0.02746,0.03158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH10E,2000,0.00511,0.0104,0.01409,0,0,0,0,0,0,0,0.00528,0.00984,0.01299,0,0,0,0,0,0,0,0.00573,0.01085,0.01441,0,0,0,0,0,0,0,0.00482,0.01061,0.0147,0,0,0,0,0,0,0,0.00565,0.00819,0.0099,0,0,0,0,0,0,0,0.00519,0.00823,0.01053,0,0,0,0,0,0,0,0.00518,0.00762,0.00924,0,0,0,0,0,0,0,0.00542,0.00894,0.01134,0,0,0,0,0,0,0,0.00535,0.00776,0.00936,0,0,0,0,0,0,0,0,0.08553,0.08857,0,0,0,0,0,0,0,0,0.08128,0.08641,0,0,0,0,0,0,0,0,0.09631,0.10152,0,0,0,0,0,0,0,0,0.10197,0.10723,0,0,0,0,0,0,0,0,0.08027,0.08558,0,0,0,0,0,0,0,0,0.0866,0.09244,0,0,0,0,0,0,0,0,0.08057,0.08325,0,0,0,0,0,0,0,0,0.08335,0.08765,0,0,0,0,0,0,0,0,0.06928,0.07321,0,0,0,0,0,0,0,0,8.57985,10.08498,0,0,0,0,0,0,0,0,8.28224,9.91924,0,0,0,0,0,0,0,0,9.46995,11.28461,0,0,0,0,0,0,0,0,10.26214,12.19158,0,0,0,0,0,0,0,0,8.35297,9.93719,0,0,0,0,0,0,0,0,8.89729,10.69785,0,0,0,0,0,0,0,0,8.66415,10.02231,0,0,0,0,0,0,0,0,8.55832,10.11659,0,0,0,0,0,0,0,0,7.03486,8.3259,0,0,0,0,0,0,0,0,308.34332,313.0492,0,0,0,0,0,0,0,0,310.95332,315.33528,0,0,0,0,0,0,0,0,316.3151,320.87551,0,0,0,0,0,0,0,0,308.50307,313.26807,0,0,0,0,0,0,0,0,316.12025,319.2968,0,0,0,0,0,0,0,0,311.07482,315.89699,0,0,0,0,0,0,0,0,312.83265,315.89603,0,0,0,0,0,0,0,0,313.56139,317.26015,0,0,0,0,0,0,0,0,307.37494,310.66143,0,0,0,0,0,0,0,0,0.01923,0.02278,0,0,0,0,0,0,0,0,0.01929,0.02283,0,0,0,0,0,0,0,0,0.01938,0.0229,0,0,0,0,0,0,0,0,0.01945,0.02308,0,0,0,0,0,0,0,0,0.01941,0.02294,0,0,0,0,0,0,0,0,0.01954,0.02315,0,0,0,0,0,0,0,0,0.01933,0.0229,0,0,0,0,0,0,0,0,0.01941,0.02297,0,0,0,0,0,0,0,0,0.0191,0.0226,0,0,0,0,0,0,0,0,0.06374,0.06374,0,0,0,0,0,0,0,0,0.06388,0.06388,0,0,0,0,0,0,0,0,0.06406,0.06406,0,0,0,0,0,0,0,0,0.0633,0.0633,0,0,0,0,0,0,0,0,0.06396,0.06396,0,0,0,0,0,0,0,0,0.06352,0.06352,0,0,0,0,0,0,0,0,0.06372,0.06372,0,0,0,0,0,0,0,0,0.06397,0.06397,0,0,0,0,0,0,0,0,0.06411,0.06411,0,0,0,0,0,0,0,0,1.10454,1.31261,0,0,0,0,0,0,0,0,1.09387,1.32826,0,0,0,0,0,0,0,0,1.22002,1.47004,0,0,0,0,0,0,0,0,1.27385,1.5332,0,0,0,0,0,0,0,0,1.19017,1.44578,0,0,0,0,0,0,0,0,1.23224,1.48645,0,0,0,0,0,0,0,0,1.21235,1.43527,0,0,0,0,0,0,0,0,1.25989,1.50295,0,0,0,0,0,0,0,0,1.11871,1.34395,0,0,0,0,0,0,0,0,0.0125,0.01895,0.00145,0.00314,0,0,0,0,0,0,0.0112,0.01683,0.00149,0.00323,0,0,0,0,0,0,0.01224,0.01842,0.0016,0.00349,0,0,0,0,0,0,0.0129,0.01975,0.00136,0.00293,0,0,0,0,0,0,0.00744,0.01074,0.00158,0.00343,0,0,0,0,0,0,0.00817,0.01241,0.00145,0.00314,0,0,0,0,0,0,0.00718,0.01039,0.00146,0.00317,0,0,0,0,0,0,0.00923,0.01364,0.00152,0.00331,0,0,0,0,0,0,0.00735,0.01061,0.00152,0.00332,0,0,0,0,0,0,0.06385,0.07837,0.0167,0.02595,0,0,0,0,0,0,0.06202,0.07465,0.01701,0.02635,0,0,0,0,0,0,0.06704,0.08101,0.01792,0.02751,0,0,0,0,0,0,0.06314,0.07868,0.01601,0.02503,0,0,0,0,0,0,0.05598,0.06334,0.01773,0.02726,0,0,0,0,0,0,0.05482,0.06441,0.01673,0.02594,0,0,0,0,0,0,0.0526,0.05973,0.01681,0.02608,0,0,0,0,0,0,0.05853,0.06843,0.01728,0.0267,0,0,0,0,0,0,0.05397,0.06115,0.01728,0.02672,0,0,0,0,0,0,0.03373,0.04658,0.00951,0.01802,0,0,0,0,0,0,0.03132,0.0425,0.00961,0.01819,0,0,0,0,0,0,0.03368,0.04605,0.00989,0.01871,0,0,0,0,0,0,0.03447,0.04822,0.00927,0.01757,0,0,0,0,0,0,0.02429,0.03081,0.00982,0.01859,0,0,0,0,0,0,0.02541,0.03382,0.00949,0.01797,0,0,0,0,0,0,0.02343,0.02975,0.00954,0.01807,0,0,0,0,0,0,0.0276,0.03636,0.00969,0.01835,0,0,0,0,0,0,0.02385,0.03021,0.00971,0.0184,0,0,0,0,0,0,0.01009,0.00904,0,0,0,0,0,0,0,0,0.01018,0.00911,0,0,0,0,0,0,0,0,0.01036,0.00927,0,0,0,0,0,0,0,0,0.0101,0.00905,0,0,0,0,0,0,0,0,0.01035,0.00922,0,0,0,0,0,0,0,0,0.01019,0.00912,0,0,0,0,0,0,0,0,0.01024,0.00912,0,0,0,0,0,0,0,0,0.01027,0.00916,0,0,0,0,0,0,0,0,0.01006,0.00897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH10E,2005,0.00511,0.00718,0.00851,0.01164,0,0,0,0,0,0,0.00528,0.0071,0.00826,0.01095,0,0,0,0,0,0,0.00573,0.00776,0.00907,0.01211,0,0,0,0,0,0,0.00482,0.00708,0.00856,0.01204,0,0,0,0,0,0,0.00565,0.00676,0.00745,0.00896,0,0,0,0,0,0,0.00519,0.00648,0.00737,0.00911,0,0,0,0,0,0,0.00518,0.00624,0.0069,0.00834,0,0,0,0,0,0,0.00542,0.00687,0.00779,0.00987,0,0,0,0,0,0,0.00535,0.00639,0.00703,0.00845,0,0,0,0,0,0,0,0.044,0.0353,0.04187,0,0,0,0,0,0,0,0.03924,0.03269,0.03926,0,0,0,0,0,0,0,0.04538,0.03774,0.04642,0,0,0,0,0,0,0,0.05031,0.0417,0.05059,0,0,0,0,0,0,0,0.02765,0.02569,0.03337,0,0,0,0,0,0,0,0.03284,0.03016,0.03769,0,0,0,0,0,0,0,0.02725,0.02499,0.03232,0,0,0,0,0,0,0,0.03426,0.02964,0.037,0,0,0,0,0,0,0,0.02419,0.02214,0.02792,0,0,0,0,0,0,0,3.50157,4.45447,6.04971,0,0,0,0,0,0,0,3.36399,4.44045,5.99442,0,0,0,0,0,0,0,3.77635,5.07331,6.90848,0,0,0,0,0,0,0,4.06431,5.46535,7.42827,0,0,0,0,0,0,0,3.48187,4.80312,6.35427,0,0,0,0,0,0,0,3.62361,5.03298,6.64281,0,0,0,0,0,0,0,3.61047,4.85966,6.4088,0,0,0,0,0,0,0,3.54652,4.72878,6.31281,0,0,0,0,0,0,0,3.06134,4.07251,5.32488,0,0,0,0,0,0,0,312.75167,316.30492,321.47904,0,0,0,0,0,0,0,315.54793,318.85902,323.63589,0,0,0,0,0,0,0,320.72814,324.17477,329.18963,0,0,0,0,0,0,0,312.9581,316.56303,321.83084,0,0,0,0,0,0,0,321.39189,323.80211,327.09892,0,0,0,0,0,0,0,316.12875,320.05773,322.71651,0,0,0,0,0,0,0,318.29158,320.61981,323.77224,0,0,0,0,0,0,0,318.56812,321.36897,325.3044,0,0,0,0,0,0,0,312.55649,315.03793,318.42679,0,0,0,0,0,0,0,0.00631,0.00741,0.01126,0,0,0,0,0,0,0,0.00632,0.00742,0.01127,0,0,0,0,0,0,0,0.00632,0.00742,0.01126,0,0,0,0,0,0,0,0.0064,0.00753,0.01144,0,0,0,0,0,0,0,0.00634,0.00744,0.01129,0,0,0,0,0,0,0,0.00641,0.00753,0.01144,0,0,0,0,0,0,0,0.00634,0.00744,0.01131,0,0,0,0,0,0,0,0.00635,0.00746,0.01133,0,0,0,0,0,0,0,0.00625,0.00733,0.01114,0,0,0,0,0,0,0,0.02083,0.02583,0.02913,0,0,0,0,0,0,0,0.02088,0.02589,0.0292,0,0,0,0,0,0,0,0.02094,0.02596,0.02928,0,0,0,0,0,0,0,0.02069,0.02565,0.02893,0,0,0,0,0,0,0,0.0209,0.02592,0.02923,0,0,0,0,0,0,0,0.02076,0.02574,0.02903,0,0,0,0,0,0,0,0.02083,0.02582,0.02912,0,0,0,0,0,0,0,0.02091,0.02592,0.02923,0,0,0,0,0,0,0,0.02095,0.02597,0.0293,0,0,0,0,0,0,0,0.3359,0.44601,0.52131,0,0,0,0,0,0,0,0.32708,0.44842,0.52403,0,0,0,0,0,0,0,0.36806,0.49647,0.59015,0,0,0,0,0,0,0,0.38511,0.52001,0.62335,0,0,0,0,0,0,0,0.35138,0.48076,0.57439,0,0,0,0,0,0,0,0.36659,0.4979,0.59554,0,0,0,0,0,0,0,0.35733,0.47715,0.56763,0,0,0,0,0,0,0,0.3742,0.50101,0.58888,0,0,0,0,0,0,0,0.33218,0.44764,0.51933,0,0,0,0,0,0,0,0.00439,0.00684,0.01205,0.00031,0.001,0,0,0,0,0,0.00396,0.00619,0.01081,0.00031,0.00102,0,0,0,0,0,0.00433,0.00676,0.01183,0.00032,0.00108,0,0,0,0,0,0.00462,0.00721,0.01277,0.0003,0.00094,0,0,0,0,0,0.00267,0.00426,0.00719,0.00031,0.00107,0,0,0,0,0,0.00297,0.00483,0.00804,0.0003,0.00099,0,0,0,0,0,0.00259,0.00413,0.00698,0.00031,0.001,0,0,0,0,0,0.00329,0.00519,0.00893,0.00031,0.00104,0,0,0,0,0,0.0026,0.00414,0.00701,0.00031,0.00104,0,0,0,0,0,0.03266,0.04644,0.05866,0.00965,0.01376,0,0,0,0,0,0.0325,0.046,0.05681,0.0099,0.01404,0,0,0,0,0,0.03538,0.05008,0.06197,0.01065,0.01487,0,0,0,0,0,0.0319,0.04555,0.05864,0.00911,0.01313,0,0,0,0,0,0.03133,0.04388,0.05079,0.01049,0.01469,0,0,0,0,0,0.02991,0.04244,0.04989,0.00969,0.01378,0,0,0,0,0,0.02902,0.04074,0.04742,0.00974,0.01386,0,0,0,0,0,0.03166,0.04459,0.05337,0.01013,0.01429,0,0,0,0,0,0.02976,0.0418,0.0485,0.01011,0.01428,0,0,0,0,0,0.01139,0.01804,0.02887,0.00302,0.0068,0,0,0,0,0,0.01064,0.01686,0.02644,0.00307,0.00687,0,0,0,0,0,0.01163,0.01838,0.02893,0.00319,0.00708,0,0,0,0,0,0.01172,0.01862,0.03023,0.00291,0.00662,0,0,0,0,0,0.00833,0.01329,0.01942,0.00316,0.00703,0,0,0,0,0,0.00867,0.01408,0.02078,0.00301,0.00678,0,0,0,0,0,0.0079,0.01265,0.01859,0.00304,0.00682,0,0,0,0,0,0.00941,0.01497,0.02276,0.0031,0.00693,0,0,0,0,0,0.008,0.01279,0.01874,0.00312,0.00696,0,0,0,0,0,0.01024,0.00913,0.00309,0,0,0,0,0,0,0,0.01033,0.00921,0.00312,0,0,0,0,0,0,0,0.0105,0.00936,0.00317,0,0,0,0,0,0,0,0.01025,0.00914,0.0031,0,0,0,0,0,0,0,0.01052,0.00935,0.00315,0,0,0,0,0,0,0,0.01035,0.00924,0.00311,0,0,0,0,0,0,0,0.01042,0.00926,0.00312,0,0,0,0,0,0,0,0.01043,0.00928,0.00313,0,0,0,0,0,0,0,0.01023,0.0091,0.00306,0,0,0,0,0,0,0,0.28388,0.37716,0.39327,0,0,0,0,0,0,0,0.25169,0.34476,0.3591,0,0,0,0,0,0,0,0.29044,0.39734,0.41263,0,0,0,0,0,0,0,0.32306,0.44048,0.45625,0,0,0,0,0,0,0,0.16567,0.25238,0.2603,0,0,0,0,0,0,0,0.20076,0.30345,0.30507,0,0,0,0,0,0,0,0.1612,0.24302,0.25049,0,0,0,0,0,0,0,0.21246,0.30218,0.31299,0,0,0,0,0,0,0,0.14361,0.21637,0.22279,0,0,0,0,0,0 +Full size car,PH10E,2010,0,0.00613,0.00675,0.00776,0.01072,0,0,0,0,0,0,0.00619,0.00674,0.00762,0.01018,0,0,0,0,0,0,0.00673,0.00734,0.00833,0.01122,0,0,0,0,0,0,0.00593,0.00663,0.00774,0.01105,0,0,0,0,0,0,0.00626,0.00661,0.00716,0.00866,0,0,0,0,0,0,0.00588,0.00631,0.00691,0.0087,0,0,0,0,0,0,0.00577,0.00611,0.00664,0.00807,0,0,0,0,0,0,0.00618,0.00662,0.00733,0.00935,0,0,0,0,0,0,0.00593,0.00625,0.00677,0.00817,0,0,0,0,0,0,0.03821,0.02636,0.02034,0.02656,0,0,0,0,0,0,0.0329,0.02378,0.01864,0.02457,0,0,0,0,0,0,0.03729,0.02802,0.02196,0.02919,0,0,0,0,0,0,0.04311,0.032,0.02495,0.03265,0,0,0,0,0,0,0.02084,0.01909,0.01594,0.02126,0,0,0,0,0,0,0.02419,0.02187,0.01768,0.02377,0,0,0,0,0,0,0.02019,0.01861,0.0156,0.02072,0,0,0,0,0,0,0.02695,0.02191,0.01765,0.02341,0,0,0,0,0,0,0.01941,0.01697,0.01392,0.01807,0,0,0,0,0,0,1.92333,2.98911,4.00319,5.13308,0,0,0,0,0,0,1.80096,2.9371,3.96557,5.07953,0,0,0,0,0,0,1.92573,3.27318,4.51752,5.85672,0,0,0,0,0,0,2.09471,3.54763,4.90588,6.33265,0,0,0,0,0,0,1.59901,2.99595,4.20513,5.40086,0,0,0,0,0,0,1.68343,3.15697,4.37356,5.6503,0,0,0,0,0,0,1.65039,3.05219,4.27079,5.465,0,0,0,0,0,0,1.7379,3.04051,4.18446,5.36564,0,0,0,0,0,0,1.4725,2.62623,3.58108,4.53945,0,0,0,0,0,0,306.53945,308.71835,312.44655,318.9748,0,0,0,0,0,0,309.44913,311.46064,314.92327,321.04691,0,0,0,0,0,0,314.48216,316.57989,320.18929,326.55848,0,0,0,0,0,0,306.72783,308.92926,312.72093,319.35634,0,0,0,0,0,0,315.77366,317.16827,319.64357,324.24976,0,0,0,0,0,0,310.3779,313.14072,314.843,320.01025,0,0,0,0,0,0,312.76988,314.10652,316.49615,320.96298,0,0,0,0,0,0,312.746,314.40776,317.31135,322.57488,0,0,0,0,0,0,306.9852,308.4518,310.99946,315.68109,0,0,0,0,0,0,0.00561,0.00634,0.00757,0.00989,0,0,0,0,0,0,0.00563,0.00636,0.00758,0.00989,0,0,0,0,0,0,0.00564,0.00636,0.00758,0.00988,0,0,0,0,0,0,0.00569,0.00644,0.00769,0.01006,0,0,0,0,0,0,0.00565,0.00638,0.0076,0.00991,0,0,0,0,0,0,0.00571,0.00645,0.00769,0.01005,0,0,0,0,0,0,0.00564,0.00638,0.00761,0.00993,0,0,0,0,0,0,0.00566,0.00639,0.00762,0.00994,0,0,0,0,0,0,0.00557,0.00629,0.00749,0.00978,0,0,0,0,0,0,0.01385,0.01607,0.02074,0.02215,0,0,0,0,0,0,0.01388,0.01611,0.02078,0.0222,0,0,0,0,0,0,0.01392,0.01615,0.02084,0.02226,0,0,0,0,0,0,0.01376,0.01596,0.02059,0.02199,0,0,0,0,0,0,0.0139,0.01613,0.02081,0.02222,0,0,0,0,0,0,0.01381,0.01602,0.02067,0.02207,0,0,0,0,0,0,0.01385,0.01607,0.02073,0.02214,0,0,0,0,0,0,0.0139,0.01613,0.02081,0.02222,0,0,0,0,0,0,0.01393,0.01616,0.02086,0.02227,0,0,0,0,0,0,0.08911,0.14566,0.15561,0.26121,0,0,0,0,0,0,0.08534,0.14512,0.15455,0.26066,0,0,0,0,0,0,0.08871,0.16012,0.16878,0.2928,0,0,0,0,0,0,0.09218,0.17011,0.17943,0.31222,0,0,0,0,0,0,0.07945,0.15028,0.15821,0.27968,0,0,0,0,0,0,0.08401,0.15824,0.16652,0.29309,0,0,0,0,0,0,0.0813,0.15019,0.15812,0.27721,0,0,0,0,0,0,0.08906,0.16049,0.16689,0.28876,0,0,0,0,0,0,0.08015,0.14247,0.14787,0.2524,0,0,0,0,0,0,0.0018,0.00278,0.00448,0.0091,0.00029,0.00044,0,0,0,0,0.00169,0.0026,0.00417,0.00833,0.00029,0.00044,0,0,0,0,0.00178,0.00274,0.00442,0.00897,0.0003,0.00046,0,0,0,0,0.00188,0.00291,0.0047,0.00966,0.00028,0.00042,0,0,0,0,0.00141,0.00211,0.00338,0.0062,0.0003,0.00046,0,0,0,0,0.00147,0.00225,0.00355,0.0067,0.00029,0.00044,0,0,0,0,0.00139,0.00208,0.00332,0.00606,0.00029,0.00044,0,0,0,0,0.00155,0.00235,0.00377,0.00724,0.00029,0.00045,0,0,0,0,0.0014,0.00209,0.00334,0.00607,0.0003,0.00045,0,0,0,0,0.02727,0.0295,0.0417,0.05275,0.00951,0.0105,0,0,0,0,0.02778,0.02982,0.04195,0.05184,0.00977,0.01076,0,0,0,0,0.03007,0.03227,0.04539,0.05625,0.01051,0.01151,0,0,0,0,0.02617,0.02855,0.0405,0.0524,0.00897,0.00994,0,0,0,0,0.0287,0.03022,0.04211,0.04878,0.01036,0.01136,0,0,0,0,0.02678,0.02861,0.03973,0.04719,0.00955,0.01053,0,0,0,0,0.02652,0.02801,0.0391,0.04556,0.00961,0.01059,0,0,0,0,0.02804,0.02981,0.04174,0.04997,0.00999,0.01098,0,0,0,0,0.02727,0.02875,0.04018,0.0466,0.00997,0.01097,0,0,0,0,0.00662,0.00859,0.01384,0.02364,0.0029,0.00381,0,0,0,0,0.00647,0.00827,0.01328,0.02204,0.00294,0.00385,0,0,0,0,0.00694,0.00888,0.01423,0.02386,0.00307,0.00399,0,0,0,0,0.00665,0.00876,0.01415,0.0247,0.00279,0.00368,0,0,0,0,0.00601,0.00736,0.01172,0.01764,0.00304,0.00396,0,0,0,0,0.0059,0.00744,0.01176,0.01838,0.00289,0.00379,0,0,0,0,0.0057,0.00701,0.0112,0.01694,0.00291,0.00382,0,0,0,0,0.00621,0.00778,0.01244,0.01975,0.00298,0.00389,0,0,0,0,0.0058,0.00711,0.01136,0.01706,0.00299,0.00391,0,0,0,0,0.01004,0.00891,0.00301,0.00307,0,0,0,0,0,0,0.01013,0.00899,0.00303,0.00309,0,0,0,0,0,0,0.0103,0.00914,0.00308,0.00314,0,0,0,0,0,0,0.01004,0.00892,0.00301,0.00307,0,0,0,0,0,0,0.01034,0.00916,0.00308,0.00312,0,0,0,0,0,0,0.01016,0.00904,0.00303,0.00308,0,0,0,0,0,0,0.01024,0.00907,0.00305,0.00309,0,0,0,0,0,0,0.01024,0.00908,0.00305,0.0031,0,0,0,0,0,0,0.01005,0.00891,0.00299,0.00304,0,0,0,0,0,0,0.11243,0.15808,0.21429,0.30987,0,0,0,0,0,0,0.09519,0.13973,0.19332,0.2818,0,0,0,0,0,0,0.10962,0.16501,0.22797,0.33302,0,0,0,0,0,0,0.12822,0.19048,0.26093,0.37634,0,0,0,0,0,0,0.05584,0.10296,0.15562,0.22686,0,0,0,0,0,0,0.06678,0.12104,0.17503,0.25768,0,0,0,0,0,0,0.0533,0.09906,0.1509,0.2196,0,0,0,0,0,0,0.07564,0.12336,0.17759,0.25892,0,0,0,0,0,0,0.05116,0.09091,0.13563,0.19363,0,0,0,0,0 +Full size car,PH10E,2015,0,0,0.00598,0.00646,0.00736,0.00956,0,0,0,0,0,0,0.00608,0.00651,0.00732,0.00926,0,0,0,0,0,0,0.00659,0.00706,0.00795,0.0101,0,0,0,0,0,0,0.00576,0.00627,0.00726,0.00968,0,0,0,0,0,0,0.00622,0.00652,0.00707,0.0083,0,0,0,0,0,0,0.00584,0.00616,0.00678,0.0082,0,0,0,0,0,0,0.00574,0.00603,0.00657,0.00775,0,0,0,0,0,0,0.0061,0.00647,0.00715,0.00872,0,0,0,0,0,0,0.0059,0.00618,0.00671,0.00786,0,0,0,0,0,0,0.02858,0.01877,0.01692,0.01947,0,0,0,0,0,0,0.02585,0.01739,0.016,0.01839,0,0,0,0,0,0,0.02827,0.0202,0.01861,0.02156,0,0,0,0,0,0,0.03158,0.02255,0.02067,0.02389,0,0,0,0,0,0,0.01822,0.01492,0.01487,0.01711,0,0,0,0,0,0,0.02112,0.01655,0.01626,0.01878,0,0,0,0,0,0,0.01786,0.01463,0.01467,0.01686,0,0,0,0,0,0,0.02207,0.01655,0.01582,0.01818,0,0,0,0,0,0,0.01723,0.0133,0.01305,0.0148,0,0,0,0,0,0,1.51417,2.66864,3.57078,4.41441,0,0,0,0,0,0,1.48811,2.66618,3.59787,4.43354,0,0,0,0,0,0,1.54893,2.95771,4.08742,5.07154,0,0,0,0,0,0,1.67071,3.18161,4.40907,5.45195,0,0,0,0,0,0,1.40489,2.86373,4.01722,4.91998,0,0,0,0,0,0,1.46876,2.93868,4.13233,5.08818,0,0,0,0,0,0,1.44932,2.92862,4.09625,5.00443,0,0,0,0,0,0,1.46752,2.83903,3.90822,4.79595,0,0,0,0,0,0,1.30145,2.5134,3.42382,4.16208,0,0,0,0,0,0,277.7412,279.83305,281.88384,288.23583,0,0,0,0,0,0,280.30679,282.21061,284.00879,290.01671,0,0,0,0,0,0,284.88947,286.88456,288.79315,295.02264,0,0,0,0,0,0,277.94,280.06191,282.16672,288.61727,0,0,0,0,0,0,285.78779,287.00245,287.8791,292.58807,0,0,0,0,0,0,282.03185,282.47762,283.71095,288.89519,0,0,0,0,0,0,283.05994,284.21552,285.0271,289.61184,0,0,0,0,0,0,283.15374,284.66763,285.94535,291.21682,0,0,0,0,0,0,277.8483,279.14374,280.12833,284.87858,0,0,0,0,0,0,0.00364,0.00412,0.00475,0.00634,0,0,0,0,0,0,0.00366,0.00414,0.00477,0.00636,0,0,0,0,0,0,0.0037,0.00417,0.0048,0.00637,0,0,0,0,0,0,0.00367,0.00415,0.0048,0.00642,0,0,0,0,0,0,0.0037,0.00417,0.00481,0.00639,0,0,0,0,0,0,0.0037,0.00418,0.00483,0.00644,0,0,0,0,0,0,0.00367,0.00414,0.00478,0.00637,0,0,0,0,0,0,0.00369,0.00417,0.0048,0.00639,0,0,0,0,0,0,0.00364,0.0041,0.00473,0.00629,0,0,0,0,0,0,0.01385,0.01619,0.02074,0.02088,0,0,0,0,0,0,0.01388,0.01623,0.02078,0.02093,0,0,0,0,0,0,0.01392,0.01627,0.02084,0.02098,0,0,0,0,0,0,0.01376,0.01608,0.02059,0.02073,0,0,0,0,0,0,0.0139,0.01625,0.02081,0.02095,0,0,0,0,0,0,0.01381,0.01613,0.02067,0.02081,0,0,0,0,0,0,0.01385,0.01618,0.02073,0.02087,0,0,0,0,0,0,0.0139,0.01625,0.02081,0.02095,0,0,0,0,0,0,0.01393,0.01628,0.02086,0.021,0,0,0,0,0,0,0.07275,0.09638,0.13778,0.18606,0,0,0,0,0,0,0.07205,0.09517,0.13651,0.1846,0,0,0,0,0,0,0.07331,0.10428,0.14871,0.2032,0,0,0,0,0,0,0.07684,0.11119,0.15858,0.21708,0,0,0,0,0,0,0.06481,0.09517,0.13805,0.19036,0,0,0,0,0,0,0.06939,0.10104,0.14597,0.20096,0,0,0,0,0,0,0.06594,0.09513,0.13825,0.18993,0,0,0,0,0,0,0.0728,0.10206,0.14645,0.19953,0,0,0,0,0,0,0.06565,0.08983,0.12931,0.17515,0,0,0,0,0,0,0.00166,0.00248,0.00409,0.00736,0.00026,0.0003,0,0,0,0,0.00158,0.00236,0.00388,0.00689,0.00027,0.00031,0,0,0,0,0.00164,0.00246,0.00405,0.00727,0.00027,0.00031,0,0,0,0,0.00171,0.00256,0.00423,0.00769,0.00026,0.0003,0,0,0,0,0.00137,0.00201,0.00328,0.00557,0.00027,0.00031,0,0,0,0,0.00143,0.00209,0.00341,0.00588,0.00026,0.0003,0,0,0,0,0.00135,0.00199,0.00324,0.00549,0.00026,0.0003,0,0,0,0,0.00148,0.00219,0.00358,0.00622,0.00027,0.00031,0,0,0,0,0.00136,0.00201,0.00326,0.0055,0.00027,0.00031,0,0,0,0,0.0269,0.02871,0.04061,0.04861,0.00931,0.00964,0,0,0,0,0.02749,0.02919,0.04111,0.04843,0.00956,0.00989,0,0,0,0,0.02971,0.03151,0.04434,0.05223,0.01031,0.01064,0,0,0,0,0.02571,0.02761,0.03917,0.0477,0.00877,0.0091,0,0,0,0,0.02861,0.02996,0.04179,0.04726,0.01016,0.01048,0,0,0,0,0.02678,0.02809,0.0393,0.04523,0.00935,0.00967,0,0,0,0,0.02644,0.02778,0.03883,0.04417,0.0094,0.00973,0,0,0,0,0.02785,0.02937,0.04117,0.04754,0.00979,0.01011,0,0,0,0,0.02719,0.02853,0.03992,0.04522,0.00976,0.0101,0,0,0,0,0.00629,0.0079,0.01288,0.01997,0.00271,0.00301,0,0,0,0,0.00621,0.00772,0.01252,0.01902,0.00275,0.00306,0,0,0,0,0.00662,0.00821,0.0133,0.0203,0.00288,0.00318,0,0,0,0,0.00624,0.00793,0.01298,0.02054,0.0026,0.0029,0,0,0,0,0.00592,0.00713,0.01144,0.01629,0.00285,0.00315,0,0,0,0,0.00582,0.00705,0.01138,0.01665,0.00271,0.003,0,0,0,0,0.00562,0.00681,0.01096,0.0157,0.00272,0.00302,0,0,0,0,0.00604,0.00739,0.01194,0.0176,0.00279,0.00309,0,0,0,0,0.00573,0.00691,0.01112,0.01584,0.0028,0.0031,0,0,0,0,0.00802,0.00269,0.00271,0.00277,0,0,0,0,0,0,0.00809,0.00272,0.00273,0.00279,0,0,0,0,0,0,0.00823,0.00276,0.00278,0.00284,0,0,0,0,0,0,0.00803,0.0027,0.00272,0.00278,0,0,0,0,0,0,0.00825,0.00276,0.00277,0.00282,0,0,0,0,0,0,0.00814,0.00272,0.00273,0.00278,0,0,0,0,0,0,0.00817,0.00274,0.00274,0.00279,0,0,0,0,0,0,0.00818,0.00274,0.00275,0.0028,0,0,0,0,0,0,0.00802,0.00269,0.0027,0.00274,0,0,0,0,0,0,0.08082,0.11753,0.17355,0.23767,0,0,0,0,0,0,0.07168,0.10731,0.1619,0.22166,0,0,0,0,0,0,0.07963,0.12464,0.18824,0.25967,0,0,0,0,0,0,0.09014,0.14006,0.21006,0.28933,0,0,0,0,0,0,0.04669,0.08662,0.14305,0.1969,0,0,0,0,0,0,0.05604,0.09751,0.1582,0.21833,0,0,0,0,0,0,0.04516,0.08418,0.14005,0.19256,0,0,0,0,0,0,0.05911,0.09896,0.15585,0.21392,0,0,0,0,0,0,0.0434,0.07691,0.12534,0.17012,0,0,0,0 +Full size car,PH10E,2020,0,0,0,0.00582,0.00619,0.00677,0.00849,0,0,0,0,0,0,0.00594,0.00627,0.00679,0.00832,0,0,0,0,0,0,0.00644,0.0068,0.00737,0.00905,0,0,0,0,0,0,0.00558,0.00598,0.00661,0.00849,0,0,0,0,0,0,0.00613,0.00636,0.00672,0.00772,0,0,0,0,0,0,0.00572,0.00598,0.00638,0.00753,0,0,0,0,0,0,0.00565,0.00588,0.00622,0.00719,0,0,0,0,0,0,0.00599,0.00627,0.00671,0.00797,0,0,0,0,0,0,0.00581,0.00603,0.00637,0.00731,0,0,0,0,0,0,0.02198,0.01508,0.01246,0.0145,0,0,0,0,0,0,0.01951,0.01373,0.01155,0.01353,0,0,0,0,0,0,0.0217,0.01596,0.01344,0.016,0,0,0,0,0,0,0.02453,0.01795,0.01505,0.01783,0,0,0,0,0,0,0.01249,0.0108,0.00986,0.01206,0,0,0,0,0,0,0.01464,0.01226,0.011,0.01343,0,0,0,0,0,0,0.0121,0.01054,0.00969,0.01185,0,0,0,0,0,0,0.01599,0.01252,0.01093,0.0131,0,0,0,0,0,0,0.01159,0.0096,0.00863,0.01033,0,0,0,0,0,0,1.19189,1.77193,2.20772,2.94635,0,0,0,0,0,0,1.16407,1.74982,2.19355,2.93403,0,0,0,0,0,0,1.22173,1.9406,2.48588,3.3872,0,0,0,0,0,0,1.32764,2.10925,2.71431,3.67658,0,0,0,0,0,0,1.07895,1.81274,2.34711,3.19906,0,0,0,0,0,0,1.12172,1.87932,2.44218,3.34315,0,0,0,0,0,0,1.11046,1.85748,2.4008,3.25854,0,0,0,0,0,0,1.13731,1.82785,2.32946,3.14885,0,0,0,0,0,0,0.99457,1.59576,2.01024,2.68922,0,0,0,0,0,0,220.59257,222.13416,223.6185,236.83522,0,0,0,0,0,0,222.49626,223.88809,225.16116,238.12116,0,0,0,0,0,0,226.17838,227.64109,229.00274,242.2905,0,0,0,0,0,0,220.80178,222.37128,223.90415,237.21932,0,0,0,0,0,0,226.37485,227.21768,227.72509,239.60635,0,0,0,0,0,0,222.77749,223.82852,224.63525,236.83943,0,0,0,0,0,0,224.19532,224.9943,225.45067,237.14523,0,0,0,0,0,0,224.49111,225.57262,226.41296,238.75475,0,0,0,0,0,0,220.11573,221.02123,221.61705,233.32926,0,0,0,0,0,0,0.00371,0.00414,0.00473,0.00585,0,0,0,0,0,0,0.00373,0.00416,0.00475,0.00587,0,0,0,0,0,0,0.00377,0.00419,0.00478,0.00589,0,0,0,0,0,0,0.00374,0.00417,0.00478,0.00592,0,0,0,0,0,0,0.00377,0.00419,0.00479,0.0059,0,0,0,0,0,0,0.00377,0.0042,0.00481,0.00595,0,0,0,0,0,0,0.00373,0.00416,0.00476,0.00588,0,0,0,0,0,0,0.00376,0.00419,0.00478,0.0059,0,0,0,0,0,0,0.0037,0.00412,0.00471,0.00581,0,0,0,0,0,0,0.01385,0.01614,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01617,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01622,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01603,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01608,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01613,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.0162,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01623,0.02086,0.02086,0,0,0,0,0,0,0.05022,0.07749,0.10392,0.13907,0,0,0,0,0,0,0.0492,0.07615,0.10243,0.13729,0,0,0,0,0,0,0.05042,0.08309,0.11108,0.15119,0,0,0,0,0,0,0.0533,0.08913,0.11923,0.16266,0,0,0,0,0,0,0.04239,0.07395,0.10041,0.13823,0,0,0,0,0,0,0.04606,0.07938,0.10741,0.14755,0,0,0,0,0,0,0.04304,0.07426,0.10108,0.13839,0,0,0,0,0,0,0.04823,0.08062,0.10846,0.14699,0,0,0,0,0,0,0.04239,0.0702,0.09471,0.12729,0,0,0,0,0,0,0.00139,0.00201,0.00309,0.00566,0.00026,0.00029,0,0,0,0,0.00133,0.00192,0.00294,0.00533,0.00027,0.00029,0,0,0,0,0.00138,0.00199,0.00307,0.00561,0.00027,0.0003,0,0,0,0,0.00143,0.00207,0.00318,0.00589,0.00026,0.00028,0,0,0,0,0.00117,0.00165,0.00252,0.0044,0.00027,0.0003,0,0,0,0,0.0012,0.00171,0.00261,0.00462,0.00026,0.00029,0,0,0,0,0.00116,0.00164,0.00249,0.00434,0.00026,0.00029,0,0,0,0,0.00125,0.00179,0.00273,0.00486,0.00027,0.00029,0,0,0,0,0.00117,0.00165,0.0025,0.00435,0.00027,0.0003,0,0,0,0,0.02628,0.02767,0.03837,0.04475,0.00931,0.00952,0,0,0,0,0.02693,0.02823,0.03903,0.04494,0.00956,0.00977,0,0,0,0,0.02911,0.03048,0.04213,0.04844,0.01031,0.01052,0,0,0,0,0.02506,0.02651,0.03681,0.04356,0.00877,0.00898,0,0,0,0,0.02817,0.02921,0.04017,0.04473,0.01016,0.01036,0,0,0,0,0.02618,0.02728,0.03757,0.04247,0.00935,0.00956,0,0,0,0,0.02601,0.02704,0.03724,0.04171,0.0094,0.00961,0,0,0,0,0.02735,0.02851,0.03932,0.04454,0.00979,0.00999,0,0,0,0,0.02676,0.02778,0.03832,0.04277,0.00976,0.00997,0,0,0,0,0.00575,0.00698,0.01089,0.01656,0.00271,0.0029,0,0,0,0,0.00571,0.00686,0.01069,0.01593,0.00275,0.00295,0,0,0,0,0.00609,0.0073,0.01135,0.01695,0.00288,0.00307,0,0,0,0,0.00567,0.00696,0.01088,0.01688,0.0026,0.00279,0,0,0,0,0.00554,0.00646,0.01,0.01406,0.00285,0.00305,0,0,0,0,0.00536,0.00634,0.00985,0.01421,0.00271,0.0029,0,0,0,0,0.00524,0.00615,0.00955,0.01353,0.00272,0.00291,0,0,0,0,0.0056,0.00663,0.0103,0.01495,0.00279,0.00298,0,0,0,0,0.00535,0.00625,0.00971,0.01367,0.0028,0.00299,0,0,0,0,0.00212,0.00214,0.00215,0.00228,0,0,0,0,0,0,0.00214,0.00215,0.00217,0.00229,0,0,0,0,0,0,0.00218,0.00219,0.0022,0.00233,0,0,0,0,0,0,0.00213,0.00214,0.00216,0.00228,0,0,0,0,0,0,0.00218,0.00219,0.00219,0.00231,0,0,0,0,0,0,0.00214,0.00215,0.00216,0.00228,0,0,0,0,0,0,0.00216,0.00217,0.00217,0.00228,0,0,0,0,0,0,0.00216,0.00217,0.00218,0.0023,0,0,0,0,0,0,0.00212,0.00213,0.00213,0.00225,0,0,0,0,0,0,0.06737,0.09382,0.12807,0.17896,0,0,0,0,0,0,0.05915,0.08416,0.11677,0.16464,0,0,0,0,0,0,0.06647,0.09779,0.13583,0.19454,0,0,0,0,0,0,0.07567,0.11068,0.153,0.21816,0,0,0,0,0,0,0.03614,0.06167,0.09265,0.13863,0,0,0,0,0,0,0.04322,0.0713,0.10525,0.15641,0,0,0,0,0,0,0.03467,0.05957,0.09015,0.13498,0,0,0,0,0,0,0.04757,0.07406,0.10651,0.15486,0,0,0,0,0,0,0.03306,0.0545,0.08096,0.11843,0,0,0 +Full size car,PH10E,2025,0,0,0,0,0.00557,0.0058,0.00619,0.00736,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.00731,0,0,0,0,0,0,0.00619,0.00642,0.00679,0.00795,0,0,0,0,0,0,0.00532,0.00556,0.00598,0.00726,0,0,0,0,0,0,0.00597,0.00611,0.00635,0.00704,0,0,0,0,0,0,0.00554,0.0057,0.00597,0.00676,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00654,0,0,0,0,0,0,0.00579,0.00597,0.00626,0.00713,0,0,0,0,0,0,0.00565,0.00579,0.00601,0.00667,0,0,0,0,0,0,0.01928,0.01221,0.00966,0.01115,0,0,0,0,0,0,0.01672,0.01081,0.00871,0.01015,0,0,0,0,0,0,0.0189,0.0126,0.01015,0.01198,0,0,0,0,0,0,0.02166,0.01437,0.01151,0.0135,0,0,0,0,0,0,0.00952,0.00739,0.00652,0.00808,0,0,0,0,0,0,0.01164,0.00871,0.00752,0.00924,0,0,0,0,0,0,0.00909,0.00713,0.00635,0.00788,0,0,0,0,0,0,0.01308,0.00922,0.00773,0.00928,0,0,0,0,0,0,0.00868,0.00652,0.00569,0.00691,0,0,0,0,0,0,0.89002,1.28198,1.61181,2.11974,0,0,0,0,0,0,0.84974,1.24287,1.57466,2.07774,0,0,0,0,0,0,0.89901,1.38046,1.78361,2.39019,0,0,0,0,0,0,0.9913,1.52072,1.97036,2.62377,0,0,0,0,0,0,0.72896,1.21177,1.59549,2.15063,0,0,0,0,0,0,0.77473,1.27688,1.68334,2.27475,0,0,0,0,0,0,0.74902,1.2427,1.63394,2.19387,0,0,0,0,0,0,0.79885,1.25791,1.62447,2.16826,0,0,0,0,0,0,0.67343,1.07011,1.37071,1.81715,0,0,0,0,0,0,178.4843,179.81652,181.36821,192.70627,0,0,0,0,0,0,179.91777,181.12452,182.49201,193.58788,0,0,0,0,0,0,182.93111,184.19802,185.64826,197.03293,0,0,0,0,0,0,178.69575,180.05297,181.65085,193.08522,0,0,0,0,0,0,182.67748,183.42269,184.12002,194.21297,0,0,0,0,0,0,179.92792,180.84804,181.80645,192.20995,0,0,0,0,0,0,180.90394,181.61221,182.26392,192.19562,0,0,0,0,0,0,181.31934,182.26513,183.25416,193.77617,0,0,0,0,0,0,177.64855,178.44373,179.20809,189.15888,0,0,0,0,0,0,0.00374,0.00413,0.00472,0.00575,0,0,0,0,0,0,0.00375,0.00415,0.00474,0.00577,0,0,0,0,0,0,0.00379,0.00419,0.00477,0.0058,0,0,0,0,0,0,0.00376,0.00417,0.00477,0.00582,0,0,0,0,0,0,0.00379,0.00419,0.00477,0.00581,0,0,0,0,0,0,0.00379,0.0042,0.00479,0.00585,0,0,0,0,0,0,0.00376,0.00416,0.00475,0.00579,0,0,0,0,0,0,0.00378,0.00418,0.00477,0.00581,0,0,0,0,0,0,0.00372,0.00412,0.00469,0.00571,0,0,0,0,0,0,0.01385,0.01613,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01616,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01621,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01601,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01618,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01607,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01612,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01618,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01622,0.02086,0.02086,0,0,0,0,0,0,0.03847,0.05613,0.07465,0.10182,0,0,0,0,0,0,0.03723,0.0546,0.07288,0.0997,0,0,0,0,0,0,0.0382,0.0591,0.07849,0.10911,0,0,0,0,0,0,0.04075,0.06387,0.08486,0.11809,0,0,0,0,0,0,0.03028,0.05015,0.06804,0.09618,0,0,0,0,0,0,0.03375,0.05493,0.07409,0.10424,0,0,0,0,0,0,0.03085,0.05062,0.0688,0.09667,0,0,0,0,0,0,0.03533,0.05591,0.07493,0.10409,0,0,0,0,0,0,0.03022,0.04779,0.06442,0.08891,0,0,0,0,0,0,0.00091,0.00129,0.00208,0.00388,0.00026,0.00028,0,0,0,0,0.00087,0.00123,0.00198,0.00366,0.00027,0.00029,0,0,0,0,0.0009,0.00128,0.00206,0.00384,0.00027,0.00029,0,0,0,0,0.00093,0.00133,0.00213,0.00402,0.00026,0.00028,0,0,0,0,0.00076,0.00106,0.00171,0.00305,0.00027,0.00029,0,0,0,0,0.00078,0.0011,0.00176,0.00319,0.00026,0.00028,0,0,0,0,0.00076,0.00105,0.00169,0.00301,0.00026,0.00028,0,0,0,0,0.00082,0.00115,0.00184,0.00335,0.00027,0.00029,0,0,0,0,0.00076,0.00106,0.0017,0.00302,0.00027,0.00029,0,0,0,0,0.02524,0.02609,0.03612,0.04069,0.00931,0.00947,0,0,0,0,0.02594,0.02674,0.03692,0.04118,0.00956,0.00973,0,0,0,0,0.02808,0.02892,0.03991,0.04444,0.01031,0.01047,0,0,0,0,0.02398,0.02487,0.03445,0.03927,0.00877,0.00894,0,0,0,0,0.02733,0.02797,0.03845,0.04183,0.01016,0.01032,0,0,0,0,0.0253,0.02598,0.03575,0.03935,0.00935,0.00952,0,0,0,0,0.02518,0.02581,0.03554,0.03885,0.0094,0.00957,0,0,0,0,0.02643,0.02715,0.0374,0.04122,0.00979,0.00995,0,0,0,0,0.02593,0.02656,0.03662,0.03992,0.00976,0.00993,0,0,0,0,0.00483,0.00558,0.0089,0.01297,0.00271,0.00286,0,0,0,0,0.00484,0.00554,0.00882,0.01261,0.00275,0.00291,0,0,0,0,0.00517,0.00592,0.00938,0.01341,0.00288,0.00304,0,0,0,0,0.00472,0.00551,0.0088,0.01308,0.0026,0.00276,0,0,0,0,0.0048,0.00536,0.00848,0.01149,0.00285,0.00301,0,0,0,0,0.00459,0.00519,0.00824,0.01144,0.00271,0.00286,0,0,0,0,0.00451,0.00507,0.00805,0.011,0.00272,0.00288,0,0,0,0,0.00479,0.00543,0.00861,0.012,0.00279,0.00295,0,0,0,0,0.00461,0.00517,0.00821,0.01115,0.0028,0.00295,0,0,0,0,0.00172,0.00173,0.00175,0.00185,0,0,0,0,0,0,0.00173,0.00174,0.00176,0.00186,0,0,0,0,0,0,0.00176,0.00177,0.00179,0.0019,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.00186,0,0,0,0,0,0,0.00176,0.00177,0.00177,0.00187,0,0,0,0,0,0,0.00173,0.00174,0.00175,0.00185,0,0,0,0,0,0,0.00174,0.00175,0.00175,0.00185,0,0,0,0,0,0,0.00175,0.00175,0.00176,0.00187,0,0,0,0,0,0,0.00171,0.00172,0.00172,0.00182,0,0,0,0,0,0,0.05982,0.07796,0.10264,0.14076,0,0,0,0,0,0,0.05135,0.06806,0.09097,0.12624,0,0,0,0,0,0,0.05854,0.07933,0.10608,0.14894,0,0,0,0,0,0,0.06753,0.09101,0.12106,0.16895,0,0,0,0,0,0,0.02761,0.04285,0.06255,0.09374,0,0,0,0,0,0,0.03457,0.05175,0.07381,0.10909,0,0,0,0,0,0,0.02609,0.04087,0.06018,0.09049,0,0,0,0,0,0,0.03928,0.05592,0.07758,0.11167,0,0,0,0,0,0,0.0248,0.03757,0.0544,0.07997,0,0 +Full size car,PH10E,2030,0,0,0,0,0,0.00557,0.0058,0.00618,0.00705,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.00704,0,0,0,0,0,0,0.00619,0.00641,0.00679,0.00764,0,0,0,0,0,0,0.00531,0.00556,0.00598,0.00692,0,0,0,0,0,0,0.00597,0.00611,0.00634,0.00686,0,0,0,0,0,0,0.00554,0.00569,0.00596,0.00655,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00636,0,0,0,0,0,0,0.00579,0.00596,0.00626,0.0069,0,0,0,0,0,0,0.00565,0.00578,0.00601,0.0065,0,0,0,0,0,0,0.01833,0.01129,0.00883,0.00983,0,0,0,0,0,0,0.01577,0.00989,0.00787,0.00881,0,0,0,0,0,0,0.01792,0.01153,0.00919,0.01035,0,0,0,0,0,0,0.02064,0.01321,0.01047,0.01175,0,0,0,0,0,0,0.00853,0.00632,0.00555,0.00646,0,0,0,0,0,0,0.01063,0.0076,0.00651,0.00752,0,0,0,0,0,0,0.00809,0.00606,0.00538,0.00626,0,0,0,0,0,0,0.01208,0.00818,0.00679,0.00774,0,0,0,0,0,0,0.00771,0.00556,0.00484,0.00555,0,0,0,0,0,0,0.80818,1.15718,1.46563,1.83793,0,0,0,0,0,0,0.76497,1.11412,1.42304,1.78491,0,0,0,0,0,0,0.81184,1.23798,1.61193,2.0425,0,0,0,0,0,0,0.90005,1.37018,1.78788,2.2557,0,0,0,0,0,0,0.63564,1.06015,1.41202,1.78413,0,0,0,0,0,0,0.68181,1.12428,1.49778,1.89931,0,0,0,0,0,0,0.6526,1.08734,1.44637,1.822,0,0,0,0,0,0,0.70798,1.11376,1.45203,1.82777,0,0,0,0,0,0,0.58758,0.93762,1.21416,1.51657,0,0,0,0,0,0,164.25068,165.90879,168.4776,175.72817,0,0,0,0,0,0,165.53005,167.07511,169.47594,176.46779,0,0,0,0,0,0,168.31575,169.92398,172.4226,179.63006,0,0,0,0,0,0,164.46155,166.14375,168.76003,176.10116,0,0,0,0,0,0,167.92857,169.05301,170.82585,176.80948,0,0,0,0,0,0,165.45847,166.73838,168.74581,175.08063,0,0,0,0,0,0,166.29281,167.37914,169.09797,174.96466,0,0,0,0,0,0,166.7407,168.04743,170.09259,176.51128,0,0,0,0,0,0,163.31335,164.47117,166.27551,172.21957,0,0,0,0,0,0,0.00373,0.00412,0.00471,0.00572,0,0,0,0,0,0,0.00375,0.00414,0.00473,0.00574,0,0,0,0,0,0,0.00379,0.00417,0.00476,0.00577,0,0,0,0,0,0,0.00376,0.00415,0.00476,0.00579,0,0,0,0,0,0,0.00379,0.00417,0.00477,0.00578,0,0,0,0,0,0,0.00379,0.00418,0.00479,0.00582,0,0,0,0,0,0,0.00375,0.00414,0.00474,0.00576,0,0,0,0,0,0,0.00378,0.00417,0.00476,0.00578,0,0,0,0,0,0,0.00372,0.0041,0.00469,0.00568,0,0,0,0,0,0,0.01385,0.01612,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01615,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.0162,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.016,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01617,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01606,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01611,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01617,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01621,0.02086,0.02086,0,0,0,0,0,0,0.03392,0.04846,0.06556,0.08661,0,0,0,0,0,0,0.0326,0.04685,0.06369,0.08432,0,0,0,0,0,0,0.03342,0.05047,0.06835,0.09154,0,0,0,0,0,0,0.03579,0.05475,0.07415,0.09932,0,0,0,0,0,0,0.02559,0.04164,0.058,0.07865,0,0,0,0,0,0,0.02895,0.04616,0.06375,0.08611,0,0,0,0,0,0,0.02614,0.04213,0.05876,0.07931,0,0,0,0,0,0,0.03029,0.04701,0.06447,0.08625,0,0,0,0,0,0,0.02552,0.03978,0.05499,0.07319,0,0,0,0,0,0,0.00091,0.00129,0.00207,0.00341,0.00026,0,0,0,0,0,0.00087,0.00123,0.00198,0.00323,0.00027,0,0,0,0,0,0.0009,0.00128,0.00206,0.00339,0.00027,0,0,0,0,0,0.00093,0.00132,0.00213,0.00354,0.00026,0,0,0,0,0,0.00076,0.00106,0.00171,0.00271,0.00027,0,0,0,0,0,0.00078,0.0011,0.00176,0.00283,0.00026,0,0,0,0,0,0.00075,0.00105,0.00169,0.00267,0.00026,0,0,0,0,0,0.00082,0.00114,0.00184,0.00297,0.00027,0,0,0,0,0,0.00076,0.00106,0.0017,0.00268,0.00027,0,0,0,0,0,0.02524,0.02608,0.03611,0.03963,0.00931,0,0,0,0,0,0.02594,0.02673,0.03691,0.0402,0.00956,0,0,0,0,0,0.02807,0.02891,0.0399,0.04339,0.01031,0,0,0,0,0,0.02398,0.02486,0.03445,0.03813,0.00877,0,0,0,0,0,0.02733,0.02796,0.03845,0.04108,0.01016,0,0,0,0,0,0.0253,0.02598,0.03575,0.03854,0.00935,0,0,0,0,0,0.02518,0.02581,0.03554,0.03811,0.0094,0,0,0,0,0,0.02643,0.02714,0.0374,0.04035,0.00979,0,0,0,0,0,0.02593,0.02655,0.03662,0.03919,0.00976,0,0,0,0,0,0.00482,0.00557,0.0089,0.01202,0.00271,0,0,0,0,0,0.00484,0.00554,0.00881,0.01174,0.00275,0,0,0,0,0,0.00517,0.00591,0.00937,0.01248,0.00288,0,0,0,0,0,0.00471,0.0055,0.0088,0.01208,0.0026,0,0,0,0,0,0.00479,0.00536,0.00848,0.01083,0.00285,0,0,0,0,0,0.00459,0.00518,0.00824,0.01073,0.00271,0,0,0,0,0,0.00451,0.00506,0.00805,0.01035,0.00272,0,0,0,0,0,0.00479,0.00542,0.00861,0.01124,0.00279,0,0,0,0,0,0.00461,0.00516,0.00821,0.0105,0.0028,0,0,0,0,0,0.00158,0.0016,0.00162,0.00169,0,0,0,0,0,0,0.00159,0.00161,0.00163,0.0017,0,0,0,0,0,0,0.00162,0.00164,0.00166,0.00173,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.0017,0,0,0,0,0,0,0.00162,0.00163,0.00164,0.0017,0,0,0,0,0,0,0.00159,0.0016,0.00162,0.00169,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00168,0,0,0,0,0,0,0.0016,0.00162,0.00164,0.0017,0,0,0,0,0,0,0.00157,0.00158,0.0016,0.00166,0,0,0,0,0,0,0.05707,0.07272,0.09535,0.12581,0,0,0,0,0,0,0.04858,0.06282,0.08362,0.1111,0,0,0,0,0,0,0.05567,0.07329,0.09759,0.13051,0,0,0,0,0,0,0.06452,0.08452,0.11193,0.14909,0,0,0,0,0,0,0.02478,0.03697,0.05408,0.07548,0,0,0,0,0,0,0.03167,0.04558,0.06494,0.08977,0,0,0,0,0,0,0.02326,0.03502,0.05175,0.07242,0,0,0,0,0,0,0.03644,0.05016,0.06939,0.09427,0,0,0,0,0,0,0.02208,0.0323,0.04692,0.06465,0 +Full size car,PH10E,2035,0,0,0,0,0,0,0.00557,0.0058,0.00618,0.00702,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.007,0,0,0,0,0,0,0.00619,0.00641,0.00679,0.00761,0,0,0,0,0,0,0.00531,0.00556,0.00598,0.00689,0,0,0,0,0,0,0.00597,0.00611,0.00635,0.00684,0,0,0,0,0,0,0.00554,0.0057,0.00596,0.00653,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00634,0,0,0,0,0,0,0.00579,0.00596,0.00626,0.00687,0,0,0,0,0,0,0.00565,0.00579,0.00601,0.00648,0,0,0,0,0,0,0.01821,0.01128,0.00884,0.00964,0,0,0,0,0,0,0.01566,0.00987,0.00788,0.00861,0,0,0,0,0,0,0.0178,0.01151,0.00919,0.0101,0,0,0,0,0,0,0.0205,0.0132,0.01048,0.01148,0,0,0,0,0,0,0.00848,0.00632,0.00556,0.00619,0,0,0,0,0,0,0.01056,0.00759,0.00651,0.00725,0,0,0,0,0,0,0.00805,0.00606,0.00538,0.006,0,0,0,0,0,0,0.01201,0.00818,0.0068,0.0075,0,0,0,0,0,0,0.00767,0.00556,0.00484,0.00533,0,0,0,0,0,0,0.80899,1.15823,1.46633,1.7982,0,0,0,0,0,0,0.7661,1.1152,1.42366,1.74305,0,0,0,0,0,0,0.81314,1.23931,1.61265,1.9922,0,0,0,0,0,0,0.90142,1.37163,1.78868,2.20234,0,0,0,0,0,0,0.6378,1.06142,1.41243,1.72944,0,0,0,0,0,0,0.68388,1.12561,1.49827,1.84347,0,0,0,0,0,0,0.65486,1.08862,1.44675,1.76649,0,0,0,0,0,0,0.70975,1.11491,1.45255,1.77778,0,0,0,0,0,0,0.58938,0.93855,1.21454,1.47211,0,0,0,0,0,0,164.21169,165.91696,168.49293,173.23026,0,0,0,0,0,0,165.49351,167.0828,169.48996,173.94582,0,0,0,0,0,0,168.27748,169.93209,172.43774,177.06771,0,0,0,0,0,0,164.42138,166.15201,168.77561,173.60384,0,0,0,0,0,0,167.89991,169.05817,170.83546,174.23319,0,0,0,0,0,0,165.4266,166.74451,168.75739,172.55037,0,0,0,0,0,0,166.26517,167.38426,169.10732,172.4135,0,0,0,0,0,0,166.70867,168.05376,170.10444,173.96108,0,0,0,0,0,0,163.28574,164.47696,166.2861,169.71334,0,0,0,0,0,0,0.00372,0.00412,0.00472,0.00574,0,0,0,0,0,0,0.00374,0.00414,0.00473,0.00576,0,0,0,0,0,0,0.00378,0.00417,0.00476,0.00578,0,0,0,0,0,0,0.00375,0.00415,0.00476,0.00581,0,0,0,0,0,0,0.00378,0.00418,0.00477,0.00579,0,0,0,0,0,0,0.00378,0.00418,0.00479,0.00583,0,0,0,0,0,0,0.00374,0.00414,0.00474,0.00577,0,0,0,0,0,0,0.00377,0.00417,0.00477,0.00579,0,0,0,0,0,0,0.00371,0.0041,0.00469,0.0057,0,0,0,0,0,0,0.01385,0.01614,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01617,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01622,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01602,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01608,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01613,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01623,0.02086,0.02086,0,0,0,0,0,0,0.03391,0.04858,0.0656,0.08435,0,0,0,0,0,0,0.03259,0.04697,0.06373,0.08202,0,0,0,0,0,0,0.03342,0.0506,0.0684,0.08883,0,0,0,0,0,0,0.0358,0.05489,0.0742,0.09641,0,0,0,0,0,0,0.02561,0.04177,0.05804,0.07591,0,0,0,0,0,0,0.02897,0.04629,0.06378,0.08327,0,0,0,0,0,0,0.02616,0.04226,0.0588,0.0766,0,0,0,0,0,0,0.0303,0.04714,0.06451,0.08349,0,0,0,0,0,0,0.02554,0.03989,0.05502,0.07078,0,0,0,0,0,0,0.00091,0.00129,0.00207,0.00336,0,0,0,0,0,0,0.00087,0.00123,0.00198,0.00318,0,0,0,0,0,0,0.0009,0.00128,0.00206,0.00334,0,0,0,0,0,0,0.00093,0.00133,0.00213,0.00348,0,0,0,0,0,0,0.00076,0.00106,0.00171,0.00267,0,0,0,0,0,0,0.00078,0.0011,0.00176,0.00279,0,0,0,0,0,0,0.00076,0.00105,0.00169,0.00263,0,0,0,0,0,0,0.00082,0.00115,0.00184,0.00292,0,0,0,0,0,0,0.00076,0.00106,0.0017,0.00264,0,0,0,0,0,0,0.02524,0.02609,0.03612,0.03951,0,0,0,0,0,0,0.02594,0.02673,0.03691,0.04009,0,0,0,0,0,0,0.02807,0.02892,0.0399,0.04327,0,0,0,0,0,0,0.02398,0.02487,0.03445,0.03801,0,0,0,0,0,0,0.02733,0.02797,0.03845,0.04099,0,0,0,0,0,0,0.0253,0.02598,0.03575,0.03845,0,0,0,0,0,0,0.02518,0.02581,0.03554,0.03803,0,0,0,0,0,0,0.02643,0.02715,0.0374,0.04026,0,0,0,0,0,0,0.02593,0.02656,0.03662,0.03911,0,0,0,0,0,0,0.00482,0.00558,0.0089,0.01192,0,0,0,0,0,0,0.00484,0.00554,0.00881,0.01164,0,0,0,0,0,0,0.00517,0.00591,0.00937,0.01238,0,0,0,0,0,0,0.00471,0.0055,0.0088,0.01197,0,0,0,0,0,0,0.0048,0.00536,0.00848,0.01075,0,0,0,0,0,0,0.00459,0.00519,0.00824,0.01065,0,0,0,0,0,0,0.00451,0.00507,0.00805,0.01028,0,0,0,0,0,0,0.00479,0.00542,0.00861,0.01115,0,0,0,0,0,0,0.00461,0.00517,0.00821,0.01043,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00167,0,0,0,0,0,0,0.00159,0.00161,0.00163,0.00167,0,0,0,0,0,0,0.00162,0.00164,0.00166,0.0017,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00167,0,0,0,0,0,0,0.00162,0.00163,0.00164,0.00168,0,0,0,0,0,0,0.00159,0.0016,0.00162,0.00166,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00166,0,0,0,0,0,0,0.0016,0.00162,0.00164,0.00167,0,0,0,0,0,0,0.00157,0.00158,0.0016,0.00163,0,0,0,0,0,0,0.05694,0.07282,0.09544,0.12371,0,0,0,0,0,0,0.04847,0.06291,0.08369,0.1089,0,0,0,0,0,0,0.05556,0.0734,0.09767,0.12774,0,0,0,0,0,0,0.06439,0.08464,0.11203,0.14612,0,0,0,0,0,0,0.02475,0.03705,0.05413,0.07251,0,0,0,0,0,0,0.03162,0.04568,0.065,0.08665,0,0,0,0,0,0,0.02324,0.03511,0.0518,0.06948,0,0,0,0,0,0,0.03637,0.05025,0.06945,0.09156,0,0,0,0,0,0,0.02205,0.03238,0.04697,0.06222 +Full size car,PH10E,2040,0,0,0,0,0,0,0,0.00557,0.0058,0.00618,0,0,0,0,0,0,0,0.00571,0.00591,0.00626,0,0,0,0,0,0,0,0.00619,0.00641,0.00679,0,0,0,0,0,0,0,0.00531,0.00556,0.00598,0,0,0,0,0,0,0,0.00597,0.00611,0.00634,0,0,0,0,0,0,0,0.00554,0.0057,0.00596,0,0,0,0,0,0,0,0.00549,0.00563,0.00586,0,0,0,0,0,0,0,0.00579,0.00596,0.00626,0,0,0,0,0,0,0,0.00565,0.00578,0.00601,0,0,0,0,0,0,0,0.01821,0.01128,0.00884,0,0,0,0,0,0,0,0.01566,0.00987,0.00787,0,0,0,0,0,0,0,0.0178,0.01151,0.00919,0,0,0,0,0,0,0,0.0205,0.0132,0.01047,0,0,0,0,0,0,0,0.00848,0.00632,0.00556,0,0,0,0,0,0,0,0.01056,0.00759,0.00651,0,0,0,0,0,0,0,0.00805,0.00606,0.00538,0,0,0,0,0,0,0,0.01201,0.00818,0.0068,0,0,0,0,0,0,0,0.00767,0.00556,0.00484,0,0,0,0,0,0,0,0.8079,1.15736,1.46595,0,0,0,0,0,0,0,0.76502,1.11437,1.42333,0,0,0,0,0,0,0,0.81191,1.23831,1.61226,0,0,0,0,0,0,0,0.90005,1.37052,1.78825,0,0,0,0,0,0,0,0.6367,1.06062,1.41221,0,0,0,0,0,0,0,0.68272,1.12473,1.498,0,0,0,0,0,0,0,0.65375,1.08782,1.44654,0,0,0,0,0,0,0,0.70862,1.1141,1.45227,0,0,0,0,0,0,0,0.58843,0.93792,1.21433,0,0,0,0,0,0,0,164.20103,165.90359,168.4846,0,0,0,0,0,0,0,165.48346,167.07036,169.48248,0,0,0,0,0,0,0,168.26701,169.91884,172.42938,0,0,0,0,0,0,0,164.41042,166.13822,168.76706,0,0,0,0,0,0,0,167.8925,169.04891,170.82999,0,0,0,0,0,0,0,165.41817,166.73392,168.75103,0,0,0,0,0,0,0,166.25783,167.37506,169.10207,0,0,0,0,0,0,0,166.70002,168.04296,170.09774,0,0,0,0,0,0,0,163.27799,164.46747,166.28032,0,0,0,0,0,0,0,0.00372,0.00412,0.00471,0,0,0,0,0,0,0,0.00374,0.00413,0.00473,0,0,0,0,0,0,0,0.00378,0.00417,0.00476,0,0,0,0,0,0,0,0.00374,0.00415,0.00476,0,0,0,0,0,0,0,0.00378,0.00417,0.00477,0,0,0,0,0,0,0,0.00378,0.00418,0.00479,0,0,0,0,0,0,0,0.00374,0.00414,0.00474,0,0,0,0,0,0,0,0.00377,0.00416,0.00476,0,0,0,0,0,0,0,0.00371,0.0041,0.00469,0,0,0,0,0,0,0,0.01385,0.01613,0.02074,0,0,0,0,0,0,0,0.01388,0.01616,0.02078,0,0,0,0,0,0,0,0.01392,0.01621,0.02084,0,0,0,0,0,0,0,0.01376,0.01602,0.02059,0,0,0,0,0,0,0,0.0139,0.01618,0.02081,0,0,0,0,0,0,0,0.01381,0.01607,0.02067,0,0,0,0,0,0,0,0.01385,0.01612,0.02073,0,0,0,0,0,0,0,0.0139,0.01618,0.02081,0,0,0,0,0,0,0,0.01393,0.01622,0.02086,0,0,0,0,0,0,0,0.03387,0.04851,0.06558,0,0,0,0,0,0,0,0.03256,0.0469,0.06371,0,0,0,0,0,0,0,0.03338,0.05052,0.06838,0,0,0,0,0,0,0,0.03575,0.05481,0.07418,0,0,0,0,0,0,0,0.02558,0.0417,0.05802,0,0,0,0,0,0,0,0.02893,0.04622,0.06376,0,0,0,0,0,0,0,0.02612,0.04219,0.05878,0,0,0,0,0,0,0,0.03026,0.04707,0.06449,0,0,0,0,0,0,0,0.02551,0.03983,0.055,0,0,0,0,0,0,0,0.00091,0.00129,0.00207,0,0,0,0,0,0,0,0.00087,0.00123,0.00198,0,0,0,0,0,0,0,0.0009,0.00128,0.00206,0,0,0,0,0,0,0,0.00093,0.00132,0.00213,0,0,0,0,0,0,0,0.00076,0.00106,0.00171,0,0,0,0,0,0,0,0.00078,0.0011,0.00176,0,0,0,0,0,0,0,0.00076,0.00105,0.00169,0,0,0,0,0,0,0,0.00082,0.00115,0.00184,0,0,0,0,0,0,0,0.00076,0.00106,0.0017,0,0,0,0,0,0,0,0.02524,0.02609,0.03611,0,0,0,0,0,0,0,0.02594,0.02673,0.03691,0,0,0,0,0,0,0,0.02807,0.02891,0.0399,0,0,0,0,0,0,0,0.02398,0.02487,0.03445,0,0,0,0,0,0,0,0.02733,0.02797,0.03845,0,0,0,0,0,0,0,0.0253,0.02598,0.03575,0,0,0,0,0,0,0,0.02518,0.02581,0.03554,0,0,0,0,0,0,0,0.02643,0.02715,0.0374,0,0,0,0,0,0,0,0.02593,0.02655,0.03662,0,0,0,0,0,0,0,0.00482,0.00557,0.0089,0,0,0,0,0,0,0,0.00484,0.00554,0.00881,0,0,0,0,0,0,0,0.00517,0.00591,0.00937,0,0,0,0,0,0,0,0.00471,0.0055,0.0088,0,0,0,0,0,0,0,0.00479,0.00536,0.00848,0,0,0,0,0,0,0,0.00459,0.00519,0.00824,0,0,0,0,0,0,0,0.00451,0.00506,0.00805,0,0,0,0,0,0,0,0.00479,0.00542,0.00861,0,0,0,0,0,0,0,0.00461,0.00516,0.00821,0,0,0,0,0,0,0,0.00158,0.0016,0.00162,0,0,0,0,0,0,0,0.00159,0.00161,0.00163,0,0,0,0,0,0,0,0.00162,0.00164,0.00166,0,0,0,0,0,0,0,0.00158,0.0016,0.00162,0,0,0,0,0,0,0,0.00162,0.00163,0.00164,0,0,0,0,0,0,0,0.00159,0.0016,0.00162,0,0,0,0,0,0,0,0.0016,0.00161,0.00163,0,0,0,0,0,0,0,0.0016,0.00162,0.00164,0,0,0,0,0,0,0,0.00157,0.00158,0.0016,0,0,0,0,0,0,0,0.05688,0.07273,0.0954,0,0,0,0,0,0,0,0.04842,0.06283,0.08365,0,0,0,0,0,0,0,0.05549,0.0733,0.09763,0,0,0,0,0,0,0,0.06431,0.08453,0.11198,0,0,0,0,0,0,0,0.02472,0.037,0.0541,0,0,0,0,0,0,0,0.03158,0.04561,0.06497,0,0,0,0,0,0,0,0.0232,0.03505,0.05177,0,0,0,0,0,0,0,0.03633,0.05018,0.06942,0,0,0,0,0,0,0,0.02202,0.03233,0.04694 +Full size car,PH10E,2045,0,0,0,0,0,0,0,0,0.00557,0.0058,0,0,0,0,0,0,0,0,0.00571,0.00591,0,0,0,0,0,0,0,0,0.00619,0.00641,0,0,0,0,0,0,0,0,0.00531,0.00556,0,0,0,0,0,0,0,0,0.00597,0.00611,0,0,0,0,0,0,0,0,0.00554,0.0057,0,0,0,0,0,0,0,0,0.00549,0.00563,0,0,0,0,0,0,0,0,0.00579,0.00596,0,0,0,0,0,0,0,0,0.00565,0.00578,0,0,0,0,0,0,0,0,0.01822,0.01128,0,0,0,0,0,0,0,0,0.01567,0.00987,0,0,0,0,0,0,0,0,0.0178,0.01151,0,0,0,0,0,0,0,0,0.02051,0.0132,0,0,0,0,0,0,0,0,0.00848,0.00632,0,0,0,0,0,0,0,0,0.01056,0.00759,0,0,0,0,0,0,0,0,0.00805,0.00606,0,0,0,0,0,0,0,0,0.01201,0.00818,0,0,0,0,0,0,0,0,0.00767,0.00556,0,0,0,0,0,0,0,0,0.80721,1.15716,0,0,0,0,0,0,0,0,0.76435,1.11417,0,0,0,0,0,0,0,0,0.81115,1.23807,0,0,0,0,0,0,0,0,0.89921,1.37026,0,0,0,0,0,0,0,0,0.63605,1.06041,0,0,0,0,0,0,0,0,0.68202,1.12451,0,0,0,0,0,0,0,0,0.65309,1.08761,0,0,0,0,0,0,0,0,0.70794,1.1139,0,0,0,0,0,0,0,0,0.58787,0.93776,0,0,0,0,0,0,0,0,164.19254,165.90065,0,0,0,0,0,0,0,0,165.47619,167.06842,0,0,0,0,0,0,0,0,168.25873,169.91609,0,0,0,0,0,0,0,0,164.40188,166.13552,0,0,0,0,0,0,0,0,167.8863,169.04653,0,0,0,0,0,0,0,0,165.41176,166.73192,0,0,0,0,0,0,0,0,166.25181,167.37304,0,0,0,0,0,0,0,0,166.69353,168.04108,0,0,0,0,0,0,0,0,163.27158,164.46486,0,0,0,0,0,0,0,0,0.00372,0.00412,0,0,0,0,0,0,0,0,0.00374,0.00413,0,0,0,0,0,0,0,0,0.00377,0.00417,0,0,0,0,0,0,0,0,0.00374,0.00415,0,0,0,0,0,0,0,0,0.00378,0.00417,0,0,0,0,0,0,0,0,0.00378,0.00418,0,0,0,0,0,0,0,0,0.00374,0.00414,0,0,0,0,0,0,0,0,0.00376,0.00416,0,0,0,0,0,0,0,0,0.00371,0.0041,0,0,0,0,0,0,0,0,0.01385,0.01613,0,0,0,0,0,0,0,0,0.01388,0.01616,0,0,0,0,0,0,0,0,0.01392,0.01621,0,0,0,0,0,0,0,0,0.01376,0.01601,0,0,0,0,0,0,0,0,0.0139,0.01618,0,0,0,0,0,0,0,0,0.01381,0.01607,0,0,0,0,0,0,0,0,0.01385,0.01612,0,0,0,0,0,0,0,0,0.0139,0.01618,0,0,0,0,0,0,0,0,0.01393,0.01622,0,0,0,0,0,0,0,0,0.03384,0.04849,0,0,0,0,0,0,0,0,0.03253,0.04688,0,0,0,0,0,0,0,0,0.03335,0.0505,0,0,0,0,0,0,0,0,0.03572,0.05479,0,0,0,0,0,0,0,0,0.02556,0.04168,0,0,0,0,0,0,0,0,0.0289,0.0462,0,0,0,0,0,0,0,0,0.0261,0.04217,0,0,0,0,0,0,0,0,0.03024,0.04705,0,0,0,0,0,0,0,0,0.02549,0.03981,0.0133,0,0,0,0,0,0,0,0.00091,0.00129,0.01355,0,0,0,0,0,0,0,0.00087,0.00123,0.01432,0,0,0,0,0,0,0,0.0009,0.00128,0.0127,0,0,0,0,0,0,0,0.00093,0.00132,0.01415,0,0,0,0,0,0,0,0.00076,0.00106,0.01329,0,0,0,0,0,0,0,0.00078,0.0011,0.01339,0,0,0,0,0,0,0,0.00075,0.00105,0.01378,0,0,0,0,0,0,0,0.00082,0.00115,0.0138,0,0,0,0,0,0,0,0.00076,0.00106,0.08115,0,0,0,0,0,0,0,0.02523,0.02609,0.08167,0,0,0,0,0,0,0,0.02593,0.02673,0.08335,0,0,0,0,0,0,0,0.02807,0.02891,0.07989,0,0,0,0,0,0,0,0.02397,0.02486,0.08299,0,0,0,0,0,0,0,0.02733,0.02797,0.08116,0,0,0,0,0,0,0,0.0253,0.02598,0.08134,0,0,0,0,0,0,0,0.02518,0.02581,0.08217,0,0,0,0,0,0,0,0.02643,0.02715,0.0822,0,0,0,0,0,0,0,0.02593,0.02655,0.06882,0,0,0,0,0,0,0,0.00482,0.00557,0.06911,0,0,0,0,0,0,0,0.00483,0.00554,0.07008,0,0,0,0,0,0,0,0.00517,0.00591,0.06806,0,0,0,0,0,0,0,0.00471,0.0055,0.06987,0,0,0,0,0,0,0,0.00479,0.00536,0.06879,0,0,0,0,0,0,0,0.00459,0.00519,0.06892,0,0,0,0,0,0,0,0.00451,0.00506,0.0694,0,0,0,0,0,0,0,0.00479,0.00542,0.06945,0,0,0,0,0,0,0,0.00461,0.00516,0,0,0,0,0,0,0,0,0.00158,0.0016,0,0,0,0,0,0,0,0,0.00159,0.00161,0,0,0,0,0,0,0,0,0.00162,0.00164,0,0,0,0,0,0,0,0,0.00158,0.0016,0,0,0,0,0,0,0,0,0.00162,0.00163,0,0,0,0,0,0,0,0,0.00159,0.0016,0,0,0,0,0,0,0,0,0.0016,0.00161,0,0,0,0,0,0,0,0,0.0016,0.00162,0,0,0,0,0,0,0,0,0.00157,0.00158,0,0,0,0,0,0,0,0,0.05683,0.07271,0,0,0,0,0,0,0,0,0.04838,0.06281,0,0,0,0,0,0,0,0,0.05545,0.07328,0,0,0,0,0,0,0,0,0.06426,0.08451,0,0,0,0,0,0,0,0,0.02469,0.03698,0,0,0,0,0,0,0,0,0.03155,0.04559,0,0,0,0,0,0,0,0,0.02318,0.03504,0,0,0,0,0,0,0,0,0.0363,0.05016,0,0,0,0,0,0,0,0,0.022,0.03231 +Full size car,PH10E,2050,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00571,0,0,0,0,0,0,0,0,0,0.00619,0,0,0,0,0,0,0,0,0,0.00531,0,0,0,0,0,0,0,0,0,0.00597,0,0,0,0,0,0,0,0,0,0.00554,0,0,0,0,0,0,0,0,0,0.00549,0,0,0,0,0,0,0,0,0,0.00579,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.01822,0,0,0,0,0,0,0,0,0,0.01567,0,0,0,0,0,0,0,0,0,0.0178,0,0,0,0,0,0,0,0,0,0.02051,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.01056,0,0,0,0,0,0,0,0,0,0.00805,0,0,0,0,0,0,0,0,0,0.01201,0,0,0,0,0,0,0,0,0,0.00767,0,0,0,0,0,0,0,0,0,0.80722,0,0,0,0,0,0,0,0,0,0.76435,0,0,0,0,0,0,0,0,0,0.81115,0,0,0,0,0,0,0,0,0,0.89921,0,0,0,0,0,0,0,0,0,0.63605,0,0,0,0,0,0,0,0,0,0.68203,0,0,0,0,0,0,0,0,0,0.65309,0,0,0,0,0,0,0,0,0,0.70795,0,0,0,0,0,0,0,0,0,0.58787,0,0,0,0,0,0,0,0,0,164.19246,0,0,0,0,0,0,0,0,0,165.47617,0,0,0,0,0,0,0,0,0,168.25867,0,0,0,0,0,0,0,0,0,164.40199,0,0,0,0,0,0,0,0,0,167.8862,0,0,0,0,0,0,0,0,0,165.41174,0,0,0,0,0,0,0,0,0,166.25174,0,0,0,0,0,0,0,0,0,166.69352,0,0,0,0,0,0,0,0,0,163.27158,0,0,0,0,0,0,0,0,0,0.00372,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00377,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00378,0,0,0,0,0,0,0,0,0,0.00378,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00376,0,0,0,0,0,0,0,0,0,0.00371,0,0,0,0,0,0,0,0,0,0.01385,0,0,0,0,0,0,0,0,0,0.01388,0,0,0,0,0,0,0,0,0,0.01392,0,0,0,0,0,0,0,0,0,0.01376,0,0,0,0,0,0,0,0,0,0.0139,0,0,0,0,0,0,0,0,0,0.01381,0,0,0,0,0,0,0,0,0,0.01385,0,0,0,0,0,0,0,0,0,0.0139,0,0,0,0,0,0,0,0,0,0.01393,0,0,0,0,0,0,0,0,0,0.03384,0,0,0,0,0,0,0,0,0,0.03253,0,0,0,0,0,0,0,0,0,0.03335,0,0,0,0,0,0,0,0,0,0.03572,0,0,0,0,0,0,0,0,0,0.02556,0,0,0,0,0,0,0,0,0,0.0289,0,0,0,0,0,0,0,0,0,0.0261,0,0,0,0,0,0,0,0,0,0.03024,0,0,0,0,0,0,0,0,0,0.02549,0.01048,0.01104,0,0,0,0,0,0,0,0.00091,0.01082,0.01131,0,0,0,0,0,0,0,0.00087,0.01181,0.01214,0,0,0,0,0,0,0,0.0009,0.00969,0.01036,0,0,0,0,0,0,0,0.00093,0.01159,0.01196,0,0,0,0,0,0,0,0.00076,0.01047,0.011,0,0,0,0,0,0,0,0.00078,0.01059,0.01112,0,0,0,0,0,0,0,0.00075,0.01111,0.01156,0,0,0,0,0,0,0,0.00082,0.01115,0.01161,0,0,0,0,0,0,0,0.00076,0.06553,0.06558,0,0,0,0,0,0,0,0.02523,0.06649,0.06633,0,0,0,0,0,0,0,0.02593,0.06934,0.06861,0,0,0,0,0,0,0,0.02807,0.06327,0.06376,0,0,0,0,0,0,0,0.02397,0.06871,0.06811,0,0,0,0,0,0,0,0.02733,0.06549,0.06552,0,0,0,0,0,0,0,0.0253,0.06584,0.06582,0,0,0,0,0,0,0,0.02518,0.06733,0.06701,0,0,0,0,0,0,0,0.02643,0.06742,0.0671,0,0,0,0,0,0,0,0.02593,0.05444,0.05449,0,0,0,0,0,0,0,0.00482,0.05512,0.05499,0,0,0,0,0,0,0,0.00483,0.05719,0.05652,0,0,0,0,0,0,0,0.00517,0.05275,0.05321,0,0,0,0,0,0,0,0.00471,0.05673,0.05617,0,0,0,0,0,0,0,0.00479,0.05436,0.0544,0,0,0,0,0,0,0,0.00459,0.05465,0.05464,0,0,0,0,0,0,0,0.00451,0.05573,0.05544,0,0,0,0,0,0,0,0.00479,0.05585,0.05556,0,0,0,0,0,0,0,0.00461,0,0,0,0,0,0,0,0,0,0.00158,0,0,0,0,0,0,0,0,0,0.00159,0,0,0,0,0,0,0,0,0,0.00162,0,0,0,0,0,0,0,0,0,0.00158,0,0,0,0,0,0,0,0,0,0.00162,0,0,0,0,0,0,0,0,0,0.00159,0,0,0,0,0,0,0,0,0,0.0016,0,0,0,0,0,0,0,0,0,0.0016,0,0,0,0,0,0,0,0,0,0.00157,0,0,0,0,0,0,0,0,0,0.05683,0,0,0,0,0,0,0,0,0,0.04838,0,0,0,0,0,0,0,0,0,0.05545,0,0,0,0,0,0,0,0,0,0.06426,0,0,0,0,0,0,0,0,0,0.02469,0,0,0,0,0,0,0,0,0,0.03155,0,0,0,0,0,0,0,0,0,0.02318,0,0,0,0,0,0,0,0,0,0.0363,0,0,0,0,0,0,0,0,0,0.022 +Full size car,PH10G,1990,0.04893,0,0,0,0,0,0,0,0,0,0.04286,0,0,0,0,0,0,0,0,0,0.04825,0,0,0,0,0,0,0,0,0,0.05378,0,0,0,0,0,0,0,0,0,0.02621,0,0,0,0,0,0,0,0,0,0.03029,0,0,0,0,0,0,0,0,0,0.02473,0,0,0,0,0,0,0,0,0,0.03424,0,0,0,0,0,0,0,0,0,0.02432,0,0,0,0,0,0,0,0,0,0.04999,0,0,0,0,0,0,0,0,0,0.04275,0,0,0,0,0,0,0,0,0,0.05394,0,0,0,0,0,0,0,0,0,0.05527,0,0,0,0,0,0,0,0,0,0.04547,0,0,0,0,0,0,0,0,0,0.05029,0,0,0,0,0,0,0,0,0,0.04655,0,0,0,0,0,0,0,0,0,0.04539,0,0,0,0,0,0,0,0,0,0.03896,0,0,0,0,0,0,0,0,0,31.80818,0,0,0,0,0,0,0,0,0,28.20931,0,0,0,0,0,0,0,0,0,34.82471,0,0,0,0,0,0,0,0,0,36.07011,0,0,0,0,0,0,0,0,0,29.87856,0,0,0,0,0,0,0,0,0,33.0559,0,0,0,0,0,0,0,0,0,31.12265,0,0,0,0,0,0,0,0,0,29.89031,0,0,0,0,0,0,0,0,0,24.92,0,0,0,0,0,0,0,0,0,322.83197,0,0,0,0,0,0,0,0,0,324.06422,0,0,0,0,0,0,0,0,0,330.10145,0,0,0,0,0,0,0,0,0,322.71745,0,0,0,0,0,0,0,0,0,324.29113,0,0,0,0,0,0,0,0,0,320.96772,0,0,0,0,0,0,0,0,0,320.21977,0,0,0,0,0,0,0,0,0,323.80156,0,0,0,0,0,0,0,0,0,316.75428,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.04215,0,0,0,0,0,0,0,0,0,0.04274,0,0,0,0,0,0,0,0,0,0.042,0,0,0,0,0,0,0,0,0,0.04272,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04213,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.0253,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02535,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.02549,0,0,0,0,0,0,0,0,0,1.93627,0,0,0,0,0,0,0,0,0,1.84332,0,0,0,0,0,0,0,0,0,2.0484,0,0,0,0,0,0,0,0,0,2.15419,0,0,0,0,0,0,0,0,0,2.00274,0,0,0,0,0,0,0,0,0,2.10311,0,0,0,0,0,0,0,0,0,1.9993,0,0,0,0,0,0,0,0,0,2.11211,0,0,0,0,0,0,0,0,0,1.73837,0,0,0,0,0,0,0,0,0,0.08723,0.00815,0.00842,0,0,0,0,0,0,0,0.07778,0.00842,0.00867,0,0,0,0,0,0,0,0.08578,0.0092,0.00941,0,0,0,0,0,0,0,0.09317,0.00751,0.00781,0,0,0,0,0,0,0,0.0502,0.00903,0.00924,0,0,0,0,0,0,0,0.05673,0.00813,0.00839,0,0,0,0,0,0,0,0.04809,0.00823,0.00849,0,0,0,0,0,0,0,0.06346,0.00865,0.00889,0,0,0,0,0,0,0,0.04796,0.00868,0.00893,0,0,0,0,0,0,0,0.25023,0.05323,0.05328,0,0,0,0,0,0,0,0.22952,0.05402,0.05402,0,0,0,0,0,0,0,0.25138,0.05632,0.05622,0,0,0,0,0,0,0,0.26409,0.05133,0.05147,0,0,0,0,0,0,0,0.16889,0.0558,0.05572,0,0,0,0,0,0,0,0.18156,0.05314,0.05319,0,0,0,0,0,0,0,0.16151,0.05347,0.0535,0,0,0,0,0,0,0,0.19806,0.0547,0.05467,0,0,0,0,0,0,0,0.16121,0.05482,0.0548,0,0,0,0,0,0,0,0.20247,0.04311,0.04316,0,0,0,0,0,0,0,0.18347,0.04365,0.04366,0,0,0,0,0,0,0,0.20101,0.04522,0.04512,0,0,0,0,0,0,0,0.21592,0.04176,0.04189,0,0,0,0,0,0,0,0.12837,0.04485,0.04477,0,0,0,0,0,0,0,0.14143,0.04299,0.04304,0,0,0,0,0,0,0,0.1237,0.04326,0.0433,0,0,0,0,0,0,0,0.15509,0.04411,0.04409,0,0,0,0,0,0,0,0.12275,0.04425,0.04423,0,0,0,0,0,0,0,0.01421,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.02307,0,0,0,0,0,0,0,0,0,0.02106,0,0,0,0,0,0,0,0,0,0.01874,0,0,0,0,0,0,0,0,0,0.02065,0,0,0,0,0,0,0,0,0,0.0187,0,0,0,0,0,0,0,0,0,0.01851,0,0,0,0,0,0,0,0,0,0.00858,0,0,0,0,0,0,0,0,0,2.99081,0,0,0,0,0,0,0,0,0,2.67228,0,0,0,0,0,0,0,0,0,3.18204,0,0,0,0,0,0,0,0,0,3.29337,0,0,0,0,0,0,0,0,0,2.95133,0,0,0,0,0,0,0,0,0,3.14197,0,0,0,0,0,0,0,0,0,3.01419,0,0,0,0,0,0,0,0,0,2.97072,0,0,0,0,0,0,0,0,0,2.58386,0,0,0,0,0,0,0,0,0 +Full size car,PH10G,1995,0.01309,0.02695,0,0,0,0,0,0,0,0,0.01216,0.02403,0,0,0,0,0,0,0,0,0.01349,0.02689,0,0,0,0,0,0,0,0,0.01367,0.02917,0,0,0,0,0,0,0,0,0.0095,0.01598,0,0,0,0,0,0,0,0,0.00984,0.01778,0,0,0,0,0,0,0,0,0.00886,0.01503,0,0,0,0,0,0,0,0,0.01074,0.01984,0,0,0,0,0,0,0,0,0.00893,0.01491,0,0,0,0,0,0,0,0,0.02761,0.03203,0,0,0,0,0,0,0,0,0.02564,0.02858,0,0,0,0,0,0,0,0,0.031,0.03546,0,0,0,0,0,0,0,0,0.03195,0.03814,0,0,0,0,0,0,0,0,0.02629,0.02985,0,0,0,0,0,0,0,0,0.02849,0.03306,0,0,0,0,0,0,0,0,0.02605,0.03011,0,0,0,0,0,0,0,0,0.02684,0.03106,0,0,0,0,0,0,0,0,0.0216,0.02426,0,0,0,0,0,0,0,0,11.75219,16.0199,0,0,0,0,0,0,0,0,11.19156,14.67218,0,0,0,0,0,0,0,0,13.44825,17.6587,0,0,0,0,0,0,0,0,14.15705,18.90297,0,0,0,0,0,0,0,0,11.75961,15.32446,0,0,0,0,0,0,0,0,12.73577,16.79242,0,0,0,0,0,0,0,0,12.07704,15.84224,0,0,0,0,0,0,0,0,11.88766,15.96456,0,0,0,0,0,0,0,0,9.31014,12.52862,0,0,0,0,0,0,0,0,264.86785,277.27618,0,0,0,0,0,0,0,0,266.86954,278.87251,0,0,0,0,0,0,0,0,271.51811,283.95373,0,0,0,0,0,0,0,0,264.80367,277.22122,0,0,0,0,0,0,0,0,270.46415,280.86466,0,0,0,0,0,0,0,0,266.36823,277.278,0,0,0,0,0,0,0,0,267.48167,277.55464,0,0,0,0,0,0,0,0,268.62355,279.6898,0,0,0,0,0,0,0,0,263.41372,273.82247,0,0,0,0,0,0,0,0,0.03075,0.03752,0,0,0,0,0,0,0,0,0.03098,0.03776,0,0,0,0,0,0,0,0,0.03147,0.03826,0,0,0,0,0,0,0,0,0.03079,0.03767,0,0,0,0,0,0,0,0,0.03144,0.03825,0,0,0,0,0,0,0,0,0.03122,0.0381,0,0,0,0,0,0,0,0,0.03095,0.03775,0,0,0,0,0,0,0,0,0.03126,0.03808,0,0,0,0,0,0,0,0,0.03079,0.0375,0,0,0,0,0,0,0,0,0.07126,0.05832,0,0,0,0,0,0,0,0,0.0714,0.05844,0,0,0,0,0,0,0,0,0.07151,0.05852,0,0,0,0,0,0,0,0,0.07087,0.05801,0,0,0,0,0,0,0,0,0.07143,0.05846,0,0,0,0,0,0,0,0,0.07105,0.05816,0,0,0,0,0,0,0,0,0.07124,0.05831,0,0,0,0,0,0,0,0,0.07147,0.05849,0,0,0,0,0,0,0,0,0.07159,0.05858,0,0,0,0,0,0,0,0,1.45553,1.75016,0,0,0,0,0,0,0,0,1.41931,1.65598,0,0,0,0,0,0,0,0,1.57006,1.79884,0,0,0,0,0,0,0,0,1.63546,1.96818,0,0,0,0,0,0,0,0,1.52413,1.8242,0,0,0,0,0,0,0,0,1.60165,1.90158,0,0,0,0,0,0,0,0,1.53136,1.82659,0,0,0,0,0,0,0,0,1.62642,1.93557,0,0,0,0,0,0,0,0,1.34107,1.5808,0,0,0,0,0,0,0,0,0.0197,0.04583,0.00458,0.00561,0,0,0,0,0,0,0.01787,0.0409,0.00472,0.00578,0,0,0,0,0,0,0.01964,0.04494,0.00514,0.00627,0,0,0,0,0,0,0.02066,0.04887,0.00425,0.00522,0,0,0,0,0,0,0.01244,0.02664,0.00505,0.00616,0,0,0,0,0,0,0.01357,0.03006,0.00458,0.0056,0,0,0,0,0,0,0.01186,0.02559,0.00462,0.00567,0,0,0,0,0,0,0.01501,0.03349,0.00484,0.00593,0,0,0,0,0,0,0.01193,0.02551,0.00485,0.00594,0,0,0,0,0,0,0.08391,0.146,0.03567,0.03999,0,0,0,0,0,0,0.08072,0.13569,0.03615,0.04053,0,0,0,0,0,0,0.08719,0.14718,0.03751,0.04209,0,0,0,0,0,0,0.08493,0.1522,0.0346,0.03874,0,0,0,0,0,0,0.07058,0.10562,0.03721,0.04175,0,0,0,0,0,0,0.07078,0.11099,0.03568,0.03996,0,0,0,0,0,0,0.06692,0.10106,0.03583,0.04016,0,0,0,0,0,0,0.07519,0.12006,0.03656,0.041,0,0,0,0,0,0,0.06776,0.1014,0.03657,0.04105,0,0,0,0,0,0,0.05444,0.10961,0.02696,0.03094,0,0,0,0,0,0,0.05092,0.09981,0.02721,0.03124,0,0,0,0,0,0,0.0548,0.10813,0.02791,0.03212,0,0,0,0,0,0,0.05655,0.11631,0.02637,0.03017,0,0,0,0,0,0,0.04046,0.07171,0.02775,0.03192,0,0,0,0,0,0,0.04253,0.07835,0.02692,0.03087,0,0,0,0,0,0,0.03911,0.06956,0.02703,0.03102,0,0,0,0,0,0,0.04546,0.08541,0.02742,0.03151,0,0,0,0,0,0,0.03915,0.06916,0.02746,0.03158,0,0,0,0,0,0,0.01163,0.00589,0,0,0,0,0,0,0,0,0.01333,0.00598,0,0,0,0,0,0,0,0,0.01899,0.00621,0,0,0,0,0,0,0,0,0.01729,0.01037,0,0,0,0,0,0,0,0,0.01562,0.00611,0,0,0,0,0,0,0,0,0.01714,0.00606,0,0,0,0,0,0,0,0,0.01561,0.00826,0,0,0,0,0,0,0,0,0.01532,0.00943,0,0,0,0,0,0,0,0,0.0071,0.0034,0,0,0,0,0,0,0,0,1.26908,1.80891,0,0,0,0,0,0,0,0,1.22078,1.70483,0,0,0,0,0,0,0,0,1.40886,1.97805,0,0,0,0,0,0,0,0,1.46067,2.0956,0,0,0,0,0,0,0,0,1.31199,1.90432,0,0,0,0,0,0,0,0,1.36271,1.98873,0,0,0,0,0,0,0,0,1.30028,1.90349,0,0,0,0,0,0,0,0,1.34523,1.95012,0,0,0,0,0,0,0,0,1.11431,1.61912,0,0,0,0,0,0,0,0 +Full size car,PH10G,2000,0.00823,0.0102,0.01995,0,0,0,0,0,0,0,0.00798,0.00966,0.01801,0,0,0,0,0,0,0,0.00876,0.01066,0.02012,0,0,0,0,0,0,0,0.00824,0.01041,0.02133,0,0,0,0,0,0,0,0.00716,0.00809,0.01263,0,0,0,0,0,0,0,0.007,0.00812,0.01368,0,0,0,0,0,0,0,0.00663,0.00751,0.01183,0,0,0,0,0,0,0,0.0075,0.0088,0.01518,0,0,0,0,0,0,0,0.00677,0.00765,0.01183,0,0,0,0,0,0,0,0.0126,0.01347,0.02169,0,0,0,0,0,0,0,0.01181,0.01291,0.01951,0,0,0,0,0,0,0,0.01467,0.01575,0.02489,0,0,0,0,0,0,0,0.01531,0.01684,0.02582,0,0,0,0,0,0,0,0.01115,0.01282,0.02036,0,0,0,0,0,0,0,0.01235,0.014,0.02212,0,0,0,0,0,0,0,0.011,0.01289,0.01966,0,0,0,0,0,0,0,0.01203,0.01366,0.02063,0,0,0,0,0,0,0,0.00941,0.01115,0.01613,0,0,0,0,0,0,0,5.58152,7.49857,11.41774,0,0,0,0,0,0,0,5.34125,7.25349,10.65137,0,0,0,0,0,0,0,6.47322,8.67113,13.0428,0,0,0,0,0,0,0,6.90132,9.28455,13.58148,0,0,0,0,0,0,0,4.95711,7.12201,10.83094,0,0,0,0,0,0,0,5.49337,7.76666,11.71701,0,0,0,0,0,0,0,5.04346,7.34281,10.79369,0,0,0,0,0,0,0,5.34894,7.59489,11.14026,0,0,0,0,0,0,0,4.09425,6.10741,8.78215,0,0,0,0,0,0,0,263.82942,266.03289,273.15083,0,0,0,0,0,0,0,266.15854,268.20983,274.85707,0,0,0,0,0,0,0,270.70359,272.85526,279.79604,0,0,0,0,0,0,0,263.92913,266.1455,273.29976,0,0,0,0,0,0,0,270.93129,272.4025,277.29011,0,0,0,0,0,0,0,266.45023,268.14264,273.64955,0,0,0,0,0,0,0,268.12463,269.53389,274.2022,0,0,0,0,0,0,0,268.58701,270.30826,275.94933,0,0,0,0,0,0,0,263.42394,264.95115,270.02461,0,0,0,0,0,0,0,0.01711,0.01903,0.02899,0,0,0,0,0,0,0,0.01718,0.0191,0.0291,0,0,0,0,0,0,0,0.0173,0.01921,0.0293,0,0,0,0,0,0,0,0.01727,0.01924,0.02926,0,0,0,0,0,0,0,0.01732,0.01923,0.02934,0,0,0,0,0,0,0,0.01738,0.01934,0.02944,0,0,0,0,0,0,0,0.01721,0.01914,0.02915,0,0,0,0,0,0,0,0.0173,0.01923,0.0293,0,0,0,0,0,0,0,0.01703,0.01892,0.02884,0,0,0,0,0,0,0,0.0416,0.05441,0.05775,0,0,0,0,0,0,0,0.04169,0.05454,0.05787,0,0,0,0,0,0,0,0.0418,0.05468,0.05801,0,0,0,0,0,0,0,0.0413,0.05403,0.05738,0,0,0,0,0,0,0,0.04174,0.0546,0.05793,0,0,0,0,0,0,0,0.04145,0.05422,0.05756,0,0,0,0,0,0,0,0.04158,0.0544,0.05773,0,0,0,0,0,0,0,0.04174,0.05461,0.05794,0,0,0,0,0,0,0,0.04183,0.05472,0.05806,0,0,0,0,0,0,0,0.70088,0.93765,1.3994,0,0,0,0,0,0,0,0.68945,0.93135,1.36546,0,0,0,0,0,0,0,0.81323,1.03013,1.51272,0,0,0,0,0,0,0,0.84158,1.11081,1.58258,0,0,0,0,0,0,0,0.77132,1.02245,1.5165,0,0,0,0,0,0,0,0.8101,1.05416,1.55442,0,0,0,0,0,0,0,0.78292,1.04291,1.4692,0,0,0,0,0,0,0,0.81922,1.0858,1.5459,0,0,0,0,0,0,0,0.67269,0.91113,1.27722,0,0,0,0,0,0,0,0.00663,0.01185,0.0288,0.00145,0.00314,0,0,0,0,0,0.00584,0.01064,0.02546,0.00149,0.00323,0,0,0,0,0,0.0064,0.01166,0.02804,0.0016,0.00349,0,0,0,0,0,0.00696,0.0123,0.03072,0.00136,0.00293,0,0,0,0,0,0.00353,0.00711,0.01586,0.00158,0.00343,0,0,0,0,0,0.00407,0.00781,0.01818,0.00145,0.00314,0,0,0,0,0,0.00344,0.00683,0.01531,0.00146,0.00317,0,0,0,0,0,0.00463,0.00879,0.02047,0.00152,0.00331,0,0,0,0,0,0.00348,0.00696,0.0153,0.00152,0.00332,0,0,0,0,0,0.03416,0.05915,0.09711,0.0167,0.02595,0,0,0,0,0,0.03311,0.05737,0.09042,0.01701,0.02635,0,0,0,0,0,0.03622,0.06206,0.0988,0.01792,0.02751,0,0,0,0,0,0.03397,0.05882,0.10022,0.01601,0.02503,0,0,0,0,0,0.0295,0.05155,0.0708,0.01773,0.02726,0,0,0,0,0,0.02893,0.05064,0.07356,0.01673,0.02594,0,0,0,0,0,0.02747,0.04849,0.06702,0.01681,0.02608,0,0,0,0,0,0.03105,0.0541,0.07994,0.01728,0.0267,0,0,0,0,0,0.02808,0.0496,0.06775,0.01728,0.02672,0,0,0,0,0,0.01528,0.03212,0.06571,0.00951,0.01802,0,0,0,0,0,0.01384,0.02985,0.0591,0.00961,0.01819,0,0,0,0,0,0.01525,0.03215,0.06466,0.00989,0.01871,0,0,0,0,0,0.01596,0.03306,0.06969,0.00927,0.01757,0,0,0,0,0,0.00955,0.02321,0.04024,0.00982,0.01859,0,0,0,0,0,0.0104,0.02431,0.04459,0.00949,0.01797,0,0,0,0,0,0.00913,0.0224,0.0388,0.00954,0.01807,0,0,0,0,0,0.0116,0.02639,0.04927,0.00969,0.01835,0,0,0,0,0,0.00919,0.02266,0.03873,0.00971,0.0184,0,0,0,0,0,0.01157,0.00565,0.00523,0,0,0,0,0,0,0,0.01329,0.00575,0.00526,0,0,0,0,0,0,0,0.01894,0.00597,0.00535,0,0,0,0,0,0,0,0.01723,0.00998,0.00523,0,0,0,0,0,0,0,0.01565,0.00593,0.00531,0,0,0,0,0,0,0,0.01714,0.00586,0.00524,0,0,0,0,0,0,0,0.01565,0.00802,0.00525,0,0,0,0,0,0,0,0.01531,0.00912,0.00473,0,0,0,0,0,0,0,0.00709,0.00328,0.00242,0,0,0,0,0,0,0,0.50898,0.74471,1.41204,0,0,0,0,0,0,0,0.48004,0.71717,1.32746,0,0,0,0,0,0,0,0.56921,0.84518,1.57252,0,0,0,0,0,0,0,0.60845,0.90815,1.64245,0,0,0,0,0,0,0,0.43443,0.70474,1.43316,0,0,0,0,0,0,0,0.47743,0.76096,1.49931,0,0,0,0,0,0,0,0.42849,0.70198,1.39917,0,0,0,0,0,0,0,0.48845,0.7673,1.4766,0,0,0,0,0,0,0,0.37275,0.61959,1.21534,0,0,0,0,0,0,0 +Full size car,PH10G,2005,0.00621,0.00671,0.00771,0.01376,0,0,0,0,0,0,0.00628,0.00667,0.00753,0.01274,0,0,0,0,0,0,0.00696,0.00696,0.0077,0.01403,0,0,0,0,0,0,0.00612,0.00653,0.00762,0.0144,0,0,0,0,0,0,0.00629,0.00655,0.0071,0.00988,0,0,0,0,0,0,0.00596,0.00612,0.0067,0.01023,0,0,0,0,0,0,0.00578,0.006,0.00649,0.00912,0,0,0,0,0,0,0.00625,0.00646,0.0071,0.01117,0,0,0,0,0,0,0.00586,0.00603,0.00644,0.00914,0,0,0,0,0,0,0.01331,0.00973,0.00961,0.01427,0,0,0,0,0,0,0.01201,0.00868,0.00892,0.013,0,0,0,0,0,0,0.01359,0.00974,0.00998,0.01554,0,0,0,0,0,0,0.01455,0.01196,0.01122,0.01701,0,0,0,0,0,0,0.00781,0.00653,0.00732,0.01181,0,0,0,0,0,0,0.00929,0.00749,0.00815,0.01311,0,0,0,0,0,0,0.00753,0.00696,0.00726,0.01148,0,0,0,0,0,0,0.01008,0.00835,0.00806,0.01293,0,0,0,0,0,0,0.00607,0.00517,0.00565,0.01023,0,0,0,0,0,0,2.56189,3.44401,4.39723,7.25866,0,0,0,0,0,0,2.43087,3.31855,4.37719,6.94997,0,0,0,0,0,0,2.75777,4.04203,5.38411,8.28865,0,0,0,0,0,0,2.98554,4.46455,5.34549,8.8933,0,0,0,0,0,0,2.20464,3.28616,4.51936,7.06469,0,0,0,0,0,0,2.37725,3.57961,4.87747,7.57293,0,0,0,0,0,0,2.26058,3.61337,4.55824,7.12542,0,0,0,0,0,0,2.44458,3.91111,4.66729,7.38321,0,0,0,0,0,0,1.7358,3.02818,4.01304,6.1045,0,0,0,0,0,0,268.53009,269.77174,272.84189,277.53483,0,0,0,0,0,0,271.03096,272.18032,275.041,279.27593,0,0,0,0,0,0,275.43629,276.64934,279.62723,284.14631,0,0,0,0,0,0,268.71783,269.94931,273.06382,277.83806,0,0,0,0,0,0,276.41634,277.21066,279.2914,281.82362,0,0,0,0,0,0,271.7445,272.67452,275.04355,278.19758,0,0,0,0,0,0,273.78568,274.53541,276.54501,278.88529,0,0,0,0,0,0,273.833,274.77943,277.1985,280.45976,0,0,0,0,0,0,268.74377,269.59198,271.73521,274.39692,0,0,0,0,0,0,0.005,0.00539,0.00634,0.01545,0,0,0,0,0,0,0.00501,0.0054,0.00635,0.01548,0,0,0,0,0,0,0.00502,0.00541,0.00635,0.01552,0,0,0,0,0,0,0.00507,0.00547,0.00644,0.01566,0,0,0,0,0,0,0.00503,0.00542,0.00636,0.01556,0,0,0,0,0,0,0.00508,0.00548,0.00644,0.0157,0,0,0,0,0,0,0.00503,0.00542,0.00637,0.01553,0,0,0,0,0,0,0.00504,0.00543,0.00638,0.01558,0,0,0,0,0,0,0.00496,0.00534,0.00627,0.01532,0,0,0,0,0,0,0.01683,0.01915,0.02358,0.03355,0,0,0,0,0,0,0.01686,0.0192,0.02363,0.03362,0,0,0,0,0,0,0.01691,0.01925,0.02369,0.03371,0,0,0,0,0,0,0.01671,0.01902,0.02341,0.03332,0,0,0,0,0,0,0.01688,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01677,0.01909,0.02349,0.03344,0,0,0,0,0,0,0.01682,0.01915,0.02357,0.03354,0,0,0,0,0,0,0.01689,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01692,0.01926,0.02371,0.03373,0,0,0,0,0,0,0.18697,0.27436,0.36213,0.66982,0,0,0,0,0,0,0.18444,0.26756,0.3639,0.66028,0,0,0,0,0,0,0.21104,0.30046,0.40077,0.74661,0,0,0,0,0,0,0.20997,0.35044,0.42371,0.79513,0,0,0,0,0,0,0.18793,0.28686,0.38841,0.73738,0,0,0,0,0,0,0.2002,0.29995,0.40213,0.76222,0,0,0,0,0,0,0.1895,0.3077,0.38487,0.7194,0,0,0,0,0,0,0.20606,0.33031,0.39782,0.76237,0,0,0,0,0,0,0.14841,0.21954,0.29384,0.64909,0,0,0,0,0,0,0.00237,0.00338,0.00526,0.01545,0.00031,0.001,0,0,0,0,0.00219,0.00303,0.00473,0.0137,0.00031,0.00102,0,0,0,0,0.00257,0.00283,0.0044,0.01491,0.00032,0.00108,0,0,0,0,0.00265,0.00351,0.00547,0.01647,0.0003,0.00094,0,0,0,0,0.00153,0.00214,0.00342,0.00867,0.00031,0.00107,0,0,0,0,0.00174,0.00221,0.0035,0.00986,0.0003,0.00099,0,0,0,0,0.00146,0.00199,0.00318,0.00826,0.00031,0.001,0,0,0,0,0.00188,0.00241,0.0038,0.01101,0.00031,0.00104,0,0,0,0,0.00132,0.00177,0.00283,0.00813,0.00031,0.00104,0,0,0,0,0.02497,0.02712,0.03965,0.06297,0.00965,0.01376,0,0,0,0,0.02526,0.02701,0.03935,0.05983,0.0099,0.01404,0,0,0,0,0.02791,0.0283,0.04104,0.06515,0.01065,0.01487,0,0,0,0,0.02454,0.02636,0.03855,0.06388,0.00911,0.01313,0,0,0,0,0.02522,0.02646,0.03838,0.05036,0.01049,0.01469,0,0,0,0,0.02392,0.02483,0.03602,0.05056,0.00969,0.01378,0,0,0,0,0.02325,0.02433,0.03531,0.04685,0.00974,0.01386,0,0,0,0,0.02512,0.0262,0.03801,0.05448,0.01013,0.01429,0,0,0,0,0.02353,0.02445,0.03547,0.0475,0.01011,0.01428,0,0,0,0,0.00715,0.00905,0.01459,0.03524,0.00302,0.0068,0,0,0,0,0.00689,0.00844,0.01363,0.03177,0.00307,0.00687,0,0,0,0,0.0079,0.00824,0.01326,0.03462,0.00319,0.00708,0,0,0,0,0.00762,0.00923,0.01484,0.03728,0.00291,0.00662,0,0,0,0,0.00576,0.00686,0.01125,0.02188,0.00316,0.00703,0,0,0,0,0.00597,0.00678,0.01109,0.02397,0.00301,0.00678,0,0,0,0,0.0054,0.00636,0.01045,0.02069,0.00304,0.00682,0,0,0,0,0.00635,0.00731,0.01186,0.02646,0.0031,0.00693,0,0,0,0,0.00517,0.00598,0.00988,0.02054,0.00312,0.00696,0,0,0,0,0.01178,0.00573,0.00522,0.00177,0,0,0,0,0,0,0.01353,0.00584,0.00526,0.00178,0,0,0,0,0,0,0.01928,0.00605,0.00535,0.00181,0,0,0,0,0,0,0.01755,0.01012,0.00523,0.00177,0,0,0,0,0,0,0.01596,0.00603,0.00535,0.0018,0,0,0,0,0,0,0.01748,0.00596,0.00526,0.00177,0,0,0,0,0,0,0.01598,0.00817,0.00529,0.00178,0,0,0,0,0,0,0.0156,0.00927,0.00474,0.00176,0,0,0,0,0,0,0.00723,0.00334,0.00244,0.00162,0,0,0,0,0,0,0.2766,0.30243,0.41792,0.92309,0,0,0,0,0,0,0.24864,0.27255,0.38678,0.86919,0,0,0,0,0,0,0.28098,0.30263,0.42929,0.99116,0,0,0,0,0,0,0.30236,0.36524,0.47798,1.0691,0,0,0,0,0,0,0.15872,0.20223,0.31737,0.85781,0,0,0,0,0,0,0.18907,0.23023,0.35097,0.91003,0,0,0,0,0,0,0.15081,0.20965,0.31026,0.83716,0,0,0,0,0,0,0.21459,0.26882,0.37097,0.92755,0,0,0,0,0,0,0.13014,0.17889,0.27767,0.77233,0,0,0,0,0,0 +Full size car,PH10G,2010,0,0.00589,0.00639,0.00724,0.0106,0,0,0,0,0,0,0.00597,0.0064,0.00716,0.01007,0,0,0,0,0,0,0.00633,0.0067,0.00773,0.01093,0,0,0,0,0,0,0.00566,0.0062,0.00715,0.01088,0,0,0,0,0,0,0.00615,0.00644,0.00689,0.00856,0,0,0,0,0,0,0.00569,0.00599,0.00658,0.00855,0,0,0,0,0,0,0.00564,0.0059,0.0063,0.00782,0,0,0,0,0,0,0.00596,0.00629,0.00694,0.00917,0,0,0,0,0,0,0.00572,0.00594,0.0064,0.00786,0,0,0,0,0,0,0.01099,0.00916,0.00791,0.01061,0,0,0,0,0,0,0.00952,0.00833,0.00723,0.00974,0,0,0,0,0,0,0.01039,0.00949,0.00816,0.01124,0,0,0,0,0,0,0.01309,0.01096,0.00944,0.01276,0,0,0,0,0,0,0.00655,0.00708,0.00626,0.00853,0,0,0,0,0,0,0.0073,0.0077,0.0068,0.00939,0,0,0,0,0,0,0.00687,0.00703,0.00623,0.00841,0,0,0,0,0,0,0.00864,0.00766,0.00696,0.00948,0,0,0,0,0,0,0.00551,0.00553,0.00592,0.0078,0,0,0,0,0,0,1.97073,2.9996,3.99676,5.57558,0,0,0,0,0,0,1.84867,2.94603,3.90923,5.42368,0,0,0,0,0,0,2.21116,3.56577,4.48536,6.36968,0,0,0,0,0,0,2.39073,3.53259,4.86455,6.87851,0,0,0,0,0,0,1.56944,2.86946,3.97802,5.52424,0,0,0,0,0,0,1.75127,3.11691,4.19997,5.89748,0,0,0,0,0,0,1.71436,2.90465,4.06406,5.62391,0,0,0,0,0,0,1.99561,3.04557,4.1471,5.77185,0,0,0,0,0,0,1.50385,2.60725,3.54179,4.84749,0,0,0,0,0,0,264.84022,266.74676,269.98586,276.3985,0,0,0,0,0,0,267.34861,269.10776,272.11305,278.12461,0,0,0,0,0,0,271.69836,273.53307,276.66628,282.93107,0,0,0,0,0,0,265.00277,266.92886,270.22187,276.7455,0,0,0,0,0,0,272.79537,274.00919,276.14501,280.65173,0,0,0,0,0,0,268.14019,269.55428,272.01477,277.07635,0,0,0,0,0,0,270.19876,271.36154,273.42146,277.78448,0,0,0,0,0,0,270.18699,271.63715,274.1499,279.3073,0,0,0,0,0,0,265.20618,266.48489,268.6884,273.254,0,0,0,0,0,0,0.00481,0.00545,0.00651,0.00997,0,0,0,0,0,0,0.00482,0.00546,0.00652,0.00998,0,0,0,0,0,0,0.00483,0.00547,0.00652,0.00997,0,0,0,0,0,0,0.00488,0.00553,0.00662,0.01014,0,0,0,0,0,0,0.00485,0.00548,0.00654,0.01,0,0,0,0,0,0,0.00489,0.00554,0.00662,0.01014,0,0,0,0,0,0,0.00484,0.00548,0.00654,0.01002,0,0,0,0,0,0,0.00485,0.00549,0.00655,0.01003,0,0,0,0,0,0,0.00477,0.0054,0.00645,0.00986,0,0,0,0,0,0,0.01183,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01185,0.01387,0.01774,0.02149,0,0,0,0,0,0,0.01188,0.01391,0.01779,0.02155,0,0,0,0,0,0,0.01174,0.01374,0.01758,0.0213,0,0,0,0,0,0,0.01187,0.01389,0.01776,0.02152,0,0,0,0,0,0,0.01178,0.01379,0.01764,0.02137,0,0,0,0,0,0,0.01182,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01187,0.01389,0.01777,0.02152,0,0,0,0,0,0,0.01189,0.01392,0.0178,0.02157,0,0,0,0,0,0,0.07558,0.12415,0.13212,0.29714,0,0,0,0,0,0,0.07207,0.12364,0.13048,0.29454,0,0,0,0,0,0,0.07516,0.13564,0.14078,0.33224,0,0,0,0,0,0,0.08707,0.14538,0.15223,0.359,0,0,0,0,0,0,0.06745,0.12764,0.13141,0.3214,0,0,0,0,0,0,0.07145,0.13407,0.13845,0.33545,0,0,0,0,0,0,0.07278,0.12738,0.13202,0.31696,0,0,0,0,0,0,0.08168,0.13359,0.14465,0.33859,0,0,0,0,0,0,0.05499,0.0971,0.1282,0.29226,0,0,0,0,0,0,0.00138,0.00214,0.00355,0.00892,0.00029,0.00044,0,0,0,0,0.00129,0.00199,0.00333,0.0081,0.00029,0.00044,0,0,0,0,0.00117,0.0018,0.00344,0.00861,0.0003,0.00046,0,0,0,0,0.00142,0.00222,0.00373,0.00947,0.00028,0.00042,0,0,0,0,0.00112,0.00171,0.00273,0.00583,0.0003,0.00046,0,0,0,0,0.0011,0.00167,0.00284,0.00632,0.00029,0.00044,0,0,0,0,0.00106,0.0016,0.00257,0.00546,0.00029,0.00044,0,0,0,0,0.00112,0.00172,0.00297,0.00682,0.00029,0.00045,0,0,0,0,0.00093,0.00141,0.00247,0.0053,0.0003,0.00045,0,0,0,0,0.02294,0.0247,0.03626,0.04895,0.00951,0.0105,0,0,0,0,0.02338,0.02497,0.03659,0.04785,0.00977,0.01076,0,0,0,0,0.02485,0.02626,0.03937,0.05157,0.01051,0.01151,0,0,0,0,0.02196,0.0238,0.03511,0.04875,0.00897,0.00994,0,0,0,0,0.02436,0.02562,0.03701,0.04429,0.01036,0.01136,0,0,0,0,0.02253,0.02378,0.03476,0.04297,0.00955,0.01053,0,0,0,0,0.0224,0.02356,0.03407,0.04087,0.00961,0.01059,0,0,0,0,0.02352,0.02482,0.0364,0.0455,0.00999,0.01098,0,0,0,0,0.02274,0.02375,0.03483,0.04146,0.00997,0.01097,0,0,0,0,0.00535,0.00691,0.01159,0.02284,0.0029,0.00381,0,0,0,0,0.00523,0.00663,0.01118,0.02116,0.00294,0.00385,0,0,0,0,0.0052,0.00644,0.01178,0.0226,0.00307,0.00399,0,0,0,0,0.00534,0.00697,0.0118,0.02389,0.00279,0.00368,0,0,0,0,0.005,0.00612,0.01004,0.01651,0.00304,0.00396,0,0,0,0,0.00474,0.00585,0.00998,0.01726,0.00289,0.00379,0,0,0,0,0.00464,0.00567,0.00936,0.01539,0.00291,0.00382,0,0,0,0,0.00493,0.00608,0.01045,0.01852,0.00298,0.00389,0,0,0,0,0.00447,0.00536,0.00931,0.0152,0.00299,0.00391,0,0,0,0,0.00563,0.00511,0.00172,0.00176,0,0,0,0,0,0,0.00574,0.00515,0.00174,0.00177,0,0,0,0,0,0,0.00595,0.00523,0.00176,0.0018,0,0,0,0,0,0,0.00994,0.00511,0.00172,0.00177,0,0,0,0,0,0,0.00594,0.00524,0.00176,0.00179,0,0,0,0,0,0,0.00586,0.00516,0.00174,0.00177,0,0,0,0,0,0,0.00804,0.00519,0.00174,0.00177,0,0,0,0,0,0,0.00911,0.00465,0.00172,0.00176,0,0,0,0,0,0,0.00328,0.00239,0.00158,0.00161,0,0,0,0,0,0,0.12838,0.17948,0.26246,0.60914,0,0,0,0,0,0,0.11209,0.16209,0.24166,0.57678,0,0,0,0,0,0,0.12359,0.18362,0.26896,0.64179,0,0,0,0,0,0,0.15259,0.21107,0.30682,0.70217,0,0,0,0,0,0,0.07948,0.13589,0.21992,0.55876,0,0,0,0,0,0,0.08788,0.14713,0.23308,0.58802,0,0,0,0,0,0,0.08123,0.13296,0.21602,0.54686,0,0,0,0,0,0,0.1056,0.15667,0.24738,0.60628,0,0,0,0,0,0,0.07355,0.12026,0.21111,0.52323,0,0,0,0,0 +Full size car,PH10G,2015,0,0,0.00575,0.00613,0.00686,0.00879,0,0,0,0,0,0,0.00587,0.00621,0.00687,0.00858,0,0,0,0,0,0,0.00624,0.00671,0.0074,0.00921,0,0,0,0,0,0,0.0055,0.00591,0.0067,0.00882,0,0,0,0,0,0,0.0061,0.00633,0.00679,0.00788,0,0,0,0,0,0,0.00564,0.00593,0.00644,0.00768,0,0,0,0,0,0,0.0056,0.00581,0.00623,0.0072,0,0,0,0,0,0,0.00589,0.00621,0.00675,0.00811,0,0,0,0,0,0,0.00569,0.00594,0.00633,0.00726,0,0,0,0,0,0,0.00842,0.00639,0.00646,0.00802,0,0,0,0,0,0,0.00771,0.00592,0.0061,0.00752,0,0,0,0,0,0,0.00805,0.0066,0.00682,0.0085,0,0,0,0,0,0,0.00906,0.00749,0.00771,0.00962,0,0,0,0,0,0,0.00582,0.00521,0.00576,0.00702,0,0,0,0,0,0,0.00631,0.00564,0.00617,0.00757,0,0,0,0,0,0,0.00583,0.00519,0.00578,0.00701,0,0,0,0,0,0,0.00659,0.00576,0.00614,0.00755,0,0,0,0,0,0,0.00484,0.00501,0.00546,0.00658,0,0,0,0,0,0,1.44608,2.53582,3.44899,4.41866,0,0,0,0,0,0,1.42113,2.51021,3.44592,4.3867,0,0,0,0,0,0,1.60905,2.80456,3.94083,5.06894,0,0,0,0,0,0,1.58393,3.01706,4.25105,5.45608,0,0,0,0,0,0,1.28449,2.61505,3.7407,4.69835,0,0,0,0,0,0,1.38434,2.71804,3.89471,4.9336,0,0,0,0,0,0,1.31567,2.68405,3.83338,4.81653,0,0,0,0,0,0,1.39937,2.70036,3.78777,4.79333,0,0,0,0,0,0,1.22789,2.38763,3.32131,4.15837,0,0,0,0,0,0,237.00493,238.76722,240.57284,248.35179,0,0,0,0,0,0,239.19553,240.80194,242.39695,249.87567,0,0,0,0,0,0,243.10581,244.78879,246.47832,254.19338,0,0,0,0,0,0,237.1748,238.96495,240.81852,248.68619,0,0,0,0,0,0,243.87698,244.91022,245.73835,252.0548,0,0,0,0,0,0,239.79384,241.04253,242.16734,248.88889,0,0,0,0,0,0,241.54929,242.53425,243.30808,249.48944,0,0,0,0,0,0,241.62742,242.90942,244.07131,250.8893,0,0,0,0,0,0,237.09998,238.19666,239.1075,245.41233,0,0,0,0,0,0,0.0031,0.00349,0.00402,0.00566,0,0,0,0,0,0,0.00311,0.00351,0.00404,0.00567,0,0,0,0,0,0,0.00314,0.00354,0.00406,0.00568,0,0,0,0,0,0,0.00312,0.00352,0.00406,0.00573,0,0,0,0,0,0,0.00315,0.00354,0.00407,0.0057,0,0,0,0,0,0,0.00314,0.00355,0.00409,0.00575,0,0,0,0,0,0,0.00311,0.00351,0.00405,0.00569,0,0,0,0,0,0,0.00314,0.00353,0.00407,0.0057,0,0,0,0,0,0,0.00309,0.00348,0.004,0.00561,0,0,0,0,0,0,0.01183,0.01371,0.0177,0.01802,0,0,0,0,0,0,0.01185,0.01374,0.01774,0.01806,0,0,0,0,0,0,0.01188,0.01377,0.01779,0.01811,0,0,0,0,0,0,0.01174,0.01361,0.01758,0.01789,0,0,0,0,0,0,0.01187,0.01375,0.01776,0.01808,0,0,0,0,0,0,0.01178,0.01366,0.01764,0.01796,0,0,0,0,0,0,0.01182,0.0137,0.0177,0.01801,0,0,0,0,0,0,0.01187,0.01375,0.01777,0.01808,0,0,0,0,0,0,0.01189,0.01378,0.0178,0.01812,0,0,0,0,0,0,0.05876,0.07715,0.11363,0.16294,0,0,0,0,0,0,0.05807,0.07567,0.11192,0.1609,0,0,0,0,0,0,0.05841,0.08181,0.12039,0.17601,0,0,0,0,0,0,0.06184,0.08872,0.13062,0.19151,0,0,0,0,0,0,0.05157,0.07406,0.11121,0.16478,0,0,0,0,0,0,0.05499,0.0788,0.11776,0.17401,0,0,0,0,0,0,0.05248,0.07443,0.11197,0.16493,0,0,0,0,0,0,0.05706,0.08297,0.12323,0.17994,0,0,0,0,0,0,0.04216,0.07291,0.10882,0.15783,0,0,0,0,0,0,0.00123,0.00185,0.00317,0.00603,0.00026,0.0003,0,0,0,0,0.00117,0.00177,0.00304,0.00566,0.00027,0.00031,0,0,0,0,0.00107,0.00181,0.0031,0.00585,0.00027,0.00031,0,0,0,0,0.00125,0.00191,0.00328,0.00631,0.00026,0.0003,0,0,0,0,0.00107,0.00155,0.00263,0.00463,0.00027,0.00031,0,0,0,0,0.00104,0.00159,0.0027,0.00484,0.00026,0.0003,0,0,0,0,0.00101,0.00146,0.00248,0.00434,0.00026,0.0003,0,0,0,0,0.00104,0.00163,0.00278,0.00503,0.00027,0.00031,0,0,0,0,0.00089,0.0014,0.0024,0.00418,0.00027,0.00031,0,0,0,0,0.02255,0.02394,0.0352,0.04227,0.00931,0.00964,0,0,0,0,0.02308,0.02441,0.03575,0.04222,0.00956,0.00989,0,0,0,0,0.02459,0.02627,0.03842,0.0452,0.01031,0.01064,0,0,0,0,0.02149,0.02298,0.03386,0.04137,0.00877,0.0091,0,0,0,0,0.02422,0.02524,0.03667,0.04151,0.01016,0.01048,0,0,0,0,0.02238,0.02357,0.03433,0.03953,0.00935,0.00967,0,0,0,0,0.02227,0.02322,0.03379,0.03827,0.0094,0.00973,0,0,0,0,0.02331,0.02457,0.03584,0.04137,0.00979,0.01011,0,0,0,0,0.02264,0.02373,0.03456,0.0389,0.00976,0.0101,0,0,0,0,0.00501,0.00624,0.01065,0.01692,0.00271,0.00301,0,0,0,0,0.00496,0.00614,0.01044,0.01618,0.00275,0.00306,0,0,0,0,0.00497,0.00645,0.01094,0.01696,0.00288,0.00318,0,0,0,0,0.00493,0.00625,0.01069,0.01735,0.0026,0.0029,0,0,0,0,0.00488,0.00578,0.00974,0.01404,0.00285,0.00315,0,0,0,0,0.00461,0.00566,0.00959,0.01421,0.00271,0.003,0,0,0,0,0.00454,0.00538,0.0091,0.01309,0.00272,0.00302,0,0,0,0,0.00475,0.00587,0.00994,0.01486,0.00279,0.00309,0,0,0,0,0.00438,0.00534,0.00906,0.01292,0.0028,0.0031,0,0,0,0,0.00454,0.00152,0.00153,0.00158,0,0,0,0,0,0,0.00458,0.00154,0.00155,0.00159,0,0,0,0,0,0,0.00465,0.00156,0.00157,0.00162,0,0,0,0,0,0,0.00454,0.00152,0.00154,0.00159,0,0,0,0,0,0,0.00467,0.00156,0.00157,0.00161,0,0,0,0,0,0,0.00459,0.00154,0.00154,0.00159,0,0,0,0,0,0,0.00462,0.00155,0.00155,0.00159,0,0,0,0,0,0,0.00413,0.00153,0.00153,0.00158,0,0,0,0,0,0,0.00212,0.0014,0.00141,0.00145,0,0,0,0,0,0,0.09369,0.13417,0.2166,0.41691,0,0,0,0,0,0,0.08588,0.1247,0.20571,0.40107,0,0,0,0,0,0,0.09134,0.13707,0.22618,0.43659,0,0,0,0,0,0,0.10209,0.1544,0.2517,0.47458,0,0,0,0,0,0,0.0671,0.11327,0.20299,0.4045,0,0,0,0,0,0,0.07235,0.12016,0.2121,0.41853,0,0,0,0,0,0,0.0666,0.11171,0.20056,0.39824,0,0,0,0,0,0,0.07913,0.1279,0.2201,0.43009,0,0,0,0,0,0,0.06237,0.10989,0.19561,0.38781,0,0,0,0 +Full size car,PH10G,2020,0,0,0,0.00567,0.00596,0.00641,0.00773,0,0,0,0,0,0,0.0058,0.00606,0.00647,0.00766,0,0,0,0,0,0,0.00627,0.00655,0.00698,0.00822,0,0,0,0,0,0,0.00542,0.00573,0.00622,0.00765,0,0,0,0,0,0,0.00604,0.00623,0.00652,0.00731,0,0,0,0,0,0,0.00561,0.00582,0.00614,0.00703,0,0,0,0,0,0,0.00554,0.00571,0.00597,0.00669,0,0,0,0,0,0,0.00586,0.00608,0.00642,0.00738,0,0,0,0,0,0,0.00569,0.00585,0.00609,0.00677,0,0,0,0,0,0,0.00641,0.00522,0.00485,0.00595,0,0,0,0,0,0,0.00573,0.00476,0.00449,0.00552,0,0,0,0,0,0,0.00604,0.00531,0.00502,0.00626,0,0,0,0,0,0,0.00693,0.00607,0.00572,0.00712,0,0,0,0,0,0,0.0039,0.00391,0.00391,0.00495,0,0,0,0,0,0,0.00438,0.00431,0.00426,0.0054,0,0,0,0,0,0,0.00386,0.00388,0.0039,0.00493,0,0,0,0,0,0,0.00485,0.00446,0.00432,0.00542,0,0,0,0,0,0,0.0039,0.00372,0.00368,0.00459,0,0,0,0,0,0,1.18405,1.74663,2.1804,2.91259,0,0,0,0,0,0,1.14159,1.70549,2.14147,2.86362,0,0,0,0,0,0,1.21389,1.90791,2.44569,3.32435,0,0,0,0,0,0,1.31503,2.07042,2.66655,3.60474,0,0,0,0,0,0,1.01752,1.70255,2.20655,2.99301,0,0,0,0,0,0,1.07518,1.7905,2.32861,3.17373,0,0,0,0,0,0,1.05039,1.75067,2.26792,3.07591,0,0,0,0,0,0,1.12163,1.7925,2.28876,3.09105,0,0,0,0,0,0,0.97213,1.5571,1.96912,2.64284,0,0,0,0,0,0,190.37807,191.70796,192.98054,203.57491,0,0,0,0,0,0,192.02122,193.2215,194.31139,204.68216,0,0,0,0,0,0,195.1988,196.46032,197.6268,208.26565,0,0,0,0,0,0,190.55845,191.91223,193.22672,203.90456,0,0,0,0,0,0,195.36829,196.09443,196.52291,205.96499,0,0,0,0,0,0,192.26377,193.16954,193.85688,203.58419,0,0,0,0,0,0,193.48721,194.17541,194.56018,203.84966,0,0,0,0,0,0,193.74261,194.67463,195.39123,205.23045,0,0,0,0,0,0,189.96641,190.7466,191.25223,200.56862,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00504,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00407,0.00503,0,0,0,0,0,0,0.00321,0.00357,0.00409,0.00505,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00497,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01385,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04199,0.06454,0.08638,0.11523,0,0,0,0,0,0,0.04084,0.06302,0.08461,0.11302,0,0,0,0,0,0,0.04122,0.06782,0.09054,0.12265,0,0,0,0,0,0,0.04436,0.07394,0.09879,0.13426,0,0,0,0,0,0,0.0345,0.06005,0.08143,0.11152,0,0,0,0,0,0,0.03752,0.06455,0.08722,0.11922,0,0,0,0,0,0,0.03522,0.06062,0.08238,0.11228,0,0,0,0,0,0,0.04094,0.06823,0.09178,0.12426,0,0,0,0,0,0,0.03601,0.05949,0.08036,0.10813,0,0,0,0,0,0,0.00108,0.00156,0.00243,0.00439,0.00026,0.00029,0,0,0,0,0.00104,0.00149,0.00233,0.00417,0.00027,0.00029,0,0,0,0,0.00106,0.00152,0.00238,0.00428,0.00027,0.0003,0,0,0,0,0.00111,0.00161,0.0025,0.00457,0.00026,0.00028,0,0,0,0,0.00093,0.00131,0.00204,0.00351,0.00027,0.0003,0,0,0,0,0.00094,0.00134,0.00209,0.00364,0.00026,0.00029,0,0,0,0,0.00088,0.00124,0.00192,0.0033,0.00026,0.00029,0,0,0,0,0.00096,0.00137,0.00214,0.00376,0.00027,0.00029,0,0,0,0,0.00084,0.00119,0.00186,0.00319,0.00027,0.0003,0,0,0,0,0.02221,0.02329,0.03353,0.03852,0.00931,0.00952,0,0,0,0,0.02279,0.0238,0.03419,0.03884,0.00956,0.00977,0,0,0,0,0.02459,0.02564,0.0368,0.04162,0.01031,0.01052,0,0,0,0,0.02116,0.02229,0.0321,0.03735,0.00877,0.00898,0,0,0,0,0.02391,0.02474,0.0354,0.0391,0.01016,0.01036,0,0,0,0,0.02218,0.02305,0.033,0.0369,0.00935,0.00956,0,0,0,0,0.02198,0.02276,0.0326,0.03604,0.0094,0.00961,0,0,0,0,0.02313,0.02403,0.03445,0.03854,0.00979,0.00999,0,0,0,0,0.02254,0.02328,0.03342,0.03675,0.00976,0.00997,0,0,0,0,0.00471,0.00566,0.00917,0.01361,0.00271,0.0029,0,0,0,0,0.0047,0.0056,0.00906,0.01319,0.00275,0.00295,0,0,0,0,0.00496,0.00589,0.00951,0.01379,0.00288,0.00307,0,0,0,0,0.00464,0.00564,0.00913,0.01379,0.0026,0.00279,0,0,0,0,0.00461,0.00534,0.00862,0.01191,0.00285,0.00305,0,0,0,0,0.00443,0.0052,0.00841,0.01188,0.00271,0.0029,0,0,0,0,0.00428,0.00496,0.00805,0.01112,0.00272,0.00291,0,0,0,0,0.00459,0.00539,0.00872,0.01235,0.00279,0.00298,0,0,0,0,0.00429,0.00495,0.00806,0.01103,0.0028,0.00299,0,0,0,0,0.00121,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00122,0.00123,0.00124,0.00131,0,0,0,0,0,0,0.00125,0.00125,0.00126,0.00133,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00125,0.00125,0.00125,0.00131,0,0,0,0,0,0,0.00123,0.00123,0.00124,0.0013,0,0,0,0,0,0,0.00123,0.00124,0.00124,0.0013,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00129,0,0,0,0,0,0,0.00112,0.00112,0.00113,0.00118,0,0,0,0,0,0,0.08051,0.11016,0.16393,0.32526,0,0,0,0,0,0,0.07283,0.1006,0.15252,0.31126,0,0,0,0,0,0,0.07731,0.11151,0.16932,0.33979,0,0,0,0,0,0,0.08762,0.12652,0.18967,0.36814,0,0,0,0,0,0,0.05421,0.08585,0.14153,0.3106,0,0,0,0,0,0,0.05927,0.09283,0.15034,0.32209,0,0,0,0,0,0,0.05333,0.08363,0.13781,0.30328,0,0,0,0,0,0,0.06632,0.09984,0.15788,0.33104,0,0,0,0,0,0,0.05327,0.08236,0.13497,0.2966,0,0,0 +Full size car,PH10G,2025,0,0,0,0,0.00547,0.00565,0.00595,0.00685,0,0,0,0,0,0,0.00562,0.00578,0.00605,0.00686,0,0,0,0,0,0,0.00608,0.00625,0.00654,0.00739,0,0,0,0,0,0,0.00521,0.0054,0.00572,0.00669,0,0,0,0,0,0,0.00591,0.00602,0.00621,0.00676,0,0,0,0,0,0,0.00547,0.00559,0.0058,0.00642,0,0,0,0,0,0,0.00542,0.00552,0.0057,0.00619,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00673,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00631,0,0,0,0,0,0,0.00547,0.00414,0.00371,0.00456,0,0,0,0,0,0,0.00476,0.00367,0.00334,0.00413,0,0,0,0,0,0,0.0051,0.00409,0.00373,0.00468,0,0,0,0,0,0,0.00594,0.00475,0.00431,0.00539,0,0,0,0,0,0,0.00287,0.00263,0.00257,0.00332,0,0,0,0,0,0,0.00336,0.003,0.00288,0.00372,0,0,0,0,0,0,0.00281,0.00258,0.00254,0.00329,0,0,0,0,0,0,0.00384,0.00322,0.00302,0.00384,0,0,0,0,0,0,0.00283,0.00248,0.0024,0.00307,0,0,0,0,0,0,0.89603,1.27549,1.60414,2.12739,0,0,0,0,0,0,0.84251,1.22002,1.54614,2.05479,0,0,0,0,0,0,0.90437,1.36873,1.76688,2.38196,0,0,0,0,0,0,0.99171,1.50234,1.94547,2.60839,0,0,0,0,0,0,0.68841,1.13711,1.49828,2.02486,0,0,0,0,0,0,0.74572,1.21794,1.60593,2.17761,0,0,0,0,0,0,0.71043,1.17036,1.54143,2.08482,0,0,0,0,0,0,0.79305,1.23692,1.59878,2.14703,0,0,0,0,0,0,0.65972,1.04249,1.33946,1.79297,0,0,0,0,0,0,153.85338,154.99936,156.33305,165.87204,0,0,0,0,0,0,155.08883,156.12659,157.30204,166.63178,0,0,0,0,0,0,157.68617,158.77612,160.02268,169.59695,0,0,0,0,0,0,154.03544,155.20309,156.57666,166.19824,0,0,0,0,0,0,157.46771,158.10835,158.70642,167.17235,0,0,0,0,0,0,155.09742,155.88851,156.71138,165.44737,0,0,0,0,0,0,155.93892,156.54765,157.1065,165.4361,0,0,0,0,0,0,156.29694,157.11018,157.95958,166.7952,0,0,0,0,0,0,153.13283,153.81614,154.47195,162.82148,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00492,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00494,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00487,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03226,0.04679,0.06218,0.08446,0,0,0,0,0,0,0.03097,0.04517,0.06028,0.08211,0,0,0,0,0,0,0.0312,0.0481,0.0639,0.08842,0,0,0,0,0,0,0.03392,0.0529,0.07031,0.09739,0,0,0,0,0,0,0.02461,0.0406,0.05511,0.07754,0,0,0,0,0,0,0.02745,0.04452,0.06008,0.08413,0,0,0,0,0,0,0.02523,0.0412,0.05603,0.07833,0,0,0,0,0,0,0.03008,0.04736,0.06357,0.08817,0,0,0,0,0,0,0.02586,0.04066,0.05495,0.07591,0,0,0,0,0,0,0.0007,0.00099,0.00164,0.00302,0.00026,0.00028,0,0,0,0,0.00068,0.00096,0.00158,0.00288,0.00027,0.00029,0,0,0,0,0.00069,0.00097,0.00161,0.00295,0.00027,0.00029,0,0,0,0,0.00072,0.00102,0.00168,0.00313,0.00026,0.00028,0,0,0,0,0.0006,0.00084,0.00139,0.00245,0.00027,0.00029,0,0,0,0,0.00061,0.00086,0.00142,0.00254,0.00026,0.00028,0,0,0,0,0.00057,0.00079,0.00131,0.0023,0.00026,0.00028,0,0,0,0,0.00063,0.00088,0.00145,0.00262,0.00027,0.00029,0,0,0,0,0.00055,0.00076,0.00127,0.00224,0.00027,0.00029,0,0,0,0,0.02139,0.02205,0.03177,0.03539,0.00931,0.00947,0,0,0,0,0.022,0.02262,0.03252,0.03593,0.00956,0.00973,0,0,0,0,0.02379,0.02443,0.03509,0.03861,0.01031,0.01047,0,0,0,0,0.02031,0.021,0.03025,0.03402,0.00877,0.00894,0,0,0,0,0.02324,0.02375,0.03402,0.0368,0.01016,0.01032,0,0,0,0,0.02149,0.02202,0.03156,0.03447,0.00935,0.00952,0,0,0,0,0.02135,0.02182,0.0313,0.03389,0.0094,0.00957,0,0,0,0,0.02242,0.02297,0.03296,0.036,0.00979,0.00995,0,0,0,0,0.02193,0.02239,0.03218,0.03472,0.00976,0.00993,0,0,0,0,0.00398,0.00457,0.00761,0.01084,0.00271,0.00286,0,0,0,0,0.00401,0.00456,0.00758,0.01061,0.00275,0.00291,0,0,0,0,0.00426,0.00482,0.00799,0.01113,0.00288,0.00304,0,0,0,0,0.00389,0.0045,0.0075,0.01085,0.0026,0.00276,0,0,0,0,0.00401,0.00446,0.0074,0.00988,0.00285,0.00301,0,0,0,0,0.00382,0.00429,0.00714,0.00973,0.00271,0.00286,0,0,0,0,0.00372,0.00414,0.0069,0.00922,0.00272,0.00288,0,0,0,0,0.00396,0.00445,0.0074,0.01011,0.00279,0.00295,0,0,0,0,0.00376,0.00416,0.00696,0.00923,0.0028,0.00295,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00101,0.00101,0.00102,0.00108,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.001,0.00101,0.00101,0.00107,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00098,0.00099,0.00099,0.00105,0,0,0,0,0,0,0.0009,0.00091,0.00091,0.00096,0,0,0,0,0,0,0.07026,0.08984,0.13054,0.2661,0,0,0,0,0,0,0.06225,0.07985,0.11848,0.25118,0,0,0,0,0,0,0.06692,0.08949,0.13311,0.27588,0,0,0,0,0,0,0.07675,0.10277,0.15049,0.29932,0,0,0,0,0,0,0.04227,0.06139,0.10159,0.24115,0,0,0,0,0,0,0.04759,0.0684,0.11031,0.25241,0,0,0,0,0,0,0.04106,0.05863,0.097,0.23245,0,0,0,0,0,0,0.05422,0.07515,0.11765,0.26067,0,0,0,0,0,0,0.04087,0.05806,0.09577,0.22949,0,0 +Full size car,PH10G,2035,0,0,0,0,0,0.00547,0.00565,0.00595,0.00663,0,0,0,0,0,0,0.00562,0.00578,0.00605,0.00666,0,0,0,0,0,0,0.00608,0.00625,0.00653,0.00718,0,0,0,0,0,0,0.00521,0.00539,0.00571,0.00645,0,0,0,0,0,0,0.0059,0.00602,0.00621,0.00663,0,0,0,0,0,0,0.00547,0.00559,0.0058,0.00627,0,0,0,0,0,0,0.00542,0.00552,0.00569,0.00607,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00657,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00619,0,0,0,0,0,0,0.00514,0.00378,0.00338,0.00403,0,0,0,0,0,0,0.00443,0.00331,0.00301,0.00359,0,0,0,0,0,0,0.00477,0.0037,0.00337,0.00405,0,0,0,0,0,0,0.00559,0.00432,0.00391,0.00469,0,0,0,0,0,0,0.00253,0.00222,0.00218,0.00267,0,0,0,0,0,0,0.00301,0.00258,0.00249,0.00304,0,0,0,0,0,0,0.00246,0.00217,0.00215,0.00263,0,0,0,0,0,0,0.00349,0.00282,0.00265,0.00321,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00247,0,0,0,0,0,0,0.82051,1.15892,1.47192,1.85795,0,0,0,0,0,0,0.76437,1.10013,1.40811,1.77763,0,0,0,0,0,0,0.82386,1.23555,1.6104,2.05188,0,0,0,0,0,0,0.90749,1.36142,1.77937,2.25759,0,0,0,0,0,0,0.60313,0.99797,1.32924,1.69022,0,0,0,0,0,0,0.66019,1.07663,1.43434,1.83029,0,0,0,0,0,0,0.62218,1.02731,1.36854,1.74015,0,0,0,0,0,0,0.70734,1.09987,1.43529,1.82169,0,0,0,0,0,0,0.57811,0.9157,1.18876,1.50316,0,0,0,0,0,0,141.66316,143.09537,145.31317,151.60093,0,0,0,0,0,0,142.76624,144.1009,146.17363,152.23801,0,0,0,0,0,0,145.16887,146.55809,148.71535,154.9665,0,0,0,0,0,0,141.84491,143.29779,145.55671,151.92303,0,0,0,0,0,0,144.83407,145.80524,147.33573,152.5291,0,0,0,0,0,0,142.70384,143.80938,145.54276,151.03931,0,0,0,0,0,0,143.42337,144.36161,145.84537,150.93759,0,0,0,0,0,0,143.80989,144.93865,146.70433,152.27351,0,0,0,0,0,0,140.85363,141.85361,143.41144,148.56986,0,0,0,0,0,0,0.00319,0.00352,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00321,0.00355,0.00407,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02858,0.04064,0.05471,0.07247,0,0,0,0,0,0,0.02723,0.03898,0.05276,0.07003,0,0,0,0,0,0,0.02737,0.04125,0.05566,0.07474,0,0,0,0,0,0,0.0299,0.04557,0.06146,0.08261,0,0,0,0,0,0,0.02088,0.03388,0.04702,0.06392,0,0,0,0,0,0,0.02362,0.03758,0.05171,0.07003,0,0,0,0,0,0,0.02145,0.03448,0.04787,0.06481,0,0,0,0,0,0,0.02596,0.04012,0.05488,0.07373,0,0,0,0,0,0,0.02203,0.03417,0.0472,0.06313,0,0,0,0,0,0,0.0007,0.00099,0.00163,0.00269,0.00026,0,0,0,0,0,0.00068,0.00095,0.00157,0.00257,0.00027,0,0,0,0,0,0.00069,0.00097,0.0016,0.00263,0.00027,0,0,0,0,0,0.00072,0.00102,0.00167,0.00278,0.00026,0,0,0,0,0,0.0006,0.00084,0.00138,0.0022,0.00027,0,0,0,0,0,0.00061,0.00086,0.00141,0.00227,0.00026,0,0,0,0,0,0.00057,0.00079,0.0013,0.00207,0.00026,0,0,0,0,0,0.00063,0.00088,0.00145,0.00234,0.00027,0,0,0,0,0,0.00055,0.00076,0.00127,0.00201,0.00027,0,0,0,0,0,0.02139,0.02204,0.03174,0.03463,0.00931,0,0,0,0,0,0.022,0.02262,0.0325,0.03522,0.00956,0,0,0,0,0,0.02379,0.02442,0.03507,0.03787,0.01031,0,0,0,0,0,0.02031,0.021,0.03022,0.03322,0.00877,0,0,0,0,0,0.02324,0.02374,0.03401,0.03624,0.01016,0,0,0,0,0,0.02149,0.02202,0.03154,0.03388,0.00935,0,0,0,0,0,0.02135,0.02182,0.03129,0.03339,0.0094,0,0,0,0,0,0.02242,0.02297,0.03295,0.03538,0.00979,0,0,0,0,0,0.02193,0.02239,0.03218,0.03422,0.00976,0,0,0,0,0,0.00398,0.00456,0.00759,0.01016,0.00271,0,0,0,0,0,0.00401,0.00455,0.00756,0.00999,0.00275,0,0,0,0,0,0.00426,0.00482,0.00797,0.01048,0.00288,0,0,0,0,0,0.00388,0.00449,0.00747,0.01015,0.0026,0,0,0,0,0,0.00401,0.00446,0.00738,0.00939,0.00285,0,0,0,0,0,0.00382,0.00429,0.00712,0.00921,0.00271,0,0,0,0,0,0.00371,0.00413,0.00689,0.00877,0.00272,0,0,0,0,0,0.00396,0.00445,0.00739,0.00956,0.00279,0,0,0,0,0,0.00376,0.00416,0.00696,0.00879,0.0028,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00097,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00099,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00096,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00088,0,0,0,0,0,0,0.06718,0.08437,0.12311,0.24183,0,0,0,0,0,0,0.05915,0.07438,0.11097,0.2265,0,0,0,0,0,0,0.06385,0.08353,0.12494,0.24914,0,0,0,0,0,0,0.07348,0.09626,0.14147,0.27091,0,0,0,0,0,0,0.03899,0.05518,0.09274,0.21253,0,0,0,0,0,0,0.04432,0.06208,0.10134,0.2235,0,0,0,0,0,0,0.03772,0.05234,0.08801,0.20352,0,0,0,0,0,0,0.05082,0.06885,0.10868,0.23219,0,0,0,0,0,0,0.03742,0.05189,0.08714,0.20198,0 +Full size car,PH10G,2040,0,0,0,0,0,0,0.00547,0.00564,0.00595,0.00661,0,0,0,0,0,0,0.00562,0.00577,0.00605,0.00664,0,0,0,0,0,0,0.00608,0.00625,0.00653,0.00716,0,0,0,0,0,0,0.0052,0.00539,0.00572,0.00643,0,0,0,0,0,0,0.0059,0.00602,0.00621,0.00661,0,0,0,0,0,0,0.00546,0.00559,0.0058,0.00625,0,0,0,0,0,0,0.00542,0.00552,0.00569,0.00606,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00655,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00617,0,0,0,0,0,0,0.00512,0.00379,0.00338,0.00394,0,0,0,0,0,0,0.00441,0.00332,0.00301,0.0035,0,0,0,0,0,0,0.00475,0.00371,0.00336,0.00394,0,0,0,0,0,0,0.00557,0.00433,0.00391,0.00457,0,0,0,0,0,0,0.00252,0.00223,0.00218,0.00255,0,0,0,0,0,0,0.003,0.00258,0.00249,0.00292,0,0,0,0,0,0,0.00245,0.00217,0.00214,0.00251,0,0,0,0,0,0,0.00348,0.00282,0.00265,0.0031,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00237,0,0,0,0,0,0,0.81997,1.16371,1.46885,1.81228,0,0,0,0,0,0,0.76398,1.10384,1.40568,1.73119,0,0,0,0,0,0,0.82354,1.24028,1.60736,1.99531,0,0,0,0,0,0,0.90719,1.36698,1.77584,2.19683,0,0,0,0,0,0,0.60311,0.99823,1.32884,1.63547,0,0,0,0,0,0,0.66012,1.07779,1.43338,1.77268,0,0,0,0,0,0,0.62226,1.02826,1.3677,1.68311,0,0,0,0,0,0,0.70703,1.10123,1.43421,1.76824,0,0,0,0,0,0,0.57791,0.91588,1.18842,1.45646,0,0,0,0,0,0,141.62199,143.09026,145.30913,149.39391,0,0,0,0,0,0,142.72754,144.09608,146.16961,150.01156,0,0,0,0,0,0,145.12847,146.55305,148.71143,152.70363,0,0,0,0,0,0,141.8025,143.29263,145.55264,149.71546,0,0,0,0,0,0,144.80428,145.80154,147.33266,150.26216,0,0,0,0,0,0,142.67062,143.80519,145.53926,148.80953,0,0,0,0,0,0,143.39415,144.35781,145.8424,148.69279,0,0,0,0,0,0,143.77631,144.9344,146.70088,150.02623,0,0,0,0,0,0,140.82432,141.85012,143.40861,146.3637,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00354,0.00406,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.00319,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.0285,0.04053,0.05477,0.07061,0,0,0,0,0,0,0.02716,0.03888,0.05281,0.06814,0,0,0,0,0,0,0.0273,0.04113,0.05572,0.07254,0,0,0,0,0,0,0.02982,0.04541,0.06154,0.08024,0,0,0,0,0,0,0.02083,0.0338,0.04706,0.06168,0,0,0,0,0,0,0.02357,0.03749,0.05176,0.06773,0,0,0,0,0,0,0.02141,0.03437,0.04793,0.06262,0,0,0,0,0,0,0.0259,0.04005,0.05492,0.07138,0,0,0,0,0,0,0.02199,0.03415,0.0472,0.06103,0,0,0,0,0,0,0.0007,0.00099,0.00163,0.00266,0,0,0,0,0,0,0.00067,0.00095,0.00157,0.00253,0,0,0,0,0,0,0.00069,0.00097,0.0016,0.0026,0,0,0,0,0,0,0.00072,0.00101,0.00168,0.00275,0,0,0,0,0,0,0.0006,0.00083,0.00138,0.00217,0,0,0,0,0,0,0.00061,0.00085,0.00141,0.00224,0,0,0,0,0,0,0.00057,0.00079,0.00131,0.00205,0,0,0,0,0,0,0.00062,0.00087,0.00145,0.00231,0,0,0,0,0,0,0.00055,0.00076,0.00127,0.00198,0,0,0,0,0,0,0.02138,0.02203,0.03175,0.03454,0,0,0,0,0,0,0.022,0.02261,0.03251,0.03514,0,0,0,0,0,0,0.02379,0.02441,0.03508,0.03779,0,0,0,0,0,0,0.0203,0.02098,0.03023,0.03314,0,0,0,0,0,0,0.02323,0.02373,0.03401,0.03618,0,0,0,0,0,0,0.02149,0.02201,0.03155,0.03381,0,0,0,0,0,0,0.02134,0.02181,0.03129,0.03333,0,0,0,0,0,0,0.02242,0.02296,0.03296,0.03531,0,0,0,0,0,0,0.02193,0.02238,0.03218,0.03416,0,0,0,0,0,0,0.00398,0.00455,0.0076,0.01009,0,0,0,0,0,0,0.004,0.00454,0.00757,0.00992,0,0,0,0,0,0,0.00425,0.00481,0.00798,0.01041,0,0,0,0,0,0,0.00388,0.00447,0.00748,0.01008,0,0,0,0,0,0,0.00401,0.00445,0.00739,0.00933,0,0,0,0,0,0,0.00382,0.00428,0.00713,0.00915,0,0,0,0,0,0,0.00371,0.00412,0.00689,0.00872,0,0,0,0,0,0,0.00396,0.00444,0.00739,0.0095,0,0,0,0,0,0,0.00375,0.00416,0.00696,0.00873,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00097,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00096,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00094,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00086,0,0,0,0,0,0,0.06698,0.08445,0.12303,0.23891,0,0,0,0,0,0,0.05897,0.07444,0.11091,0.22349,0,0,0,0,0,0,0.06367,0.08363,0.12485,0.24574,0,0,0,0,0,0,0.07326,0.09631,0.14142,0.26729,0,0,0,0,0,0,0.03888,0.05512,0.09277,0.20889,0,0,0,0,0,0,0.0442,0.06206,0.10134,0.21978,0,0,0,0,0,0,0.03761,0.05227,0.08804,0.19978,0,0,0,0,0,0,0.05065,0.06869,0.10875,0.22872,0,0,0,0,0,0,0.03732,0.05188,0.08712,0.19849 +Full size car,PH10G,2045,0,0,0,0,0,0,0,0.00547,0.00565,0.00595,0,0,0,0,0,0,0,0.00561,0.00578,0.00605,0,0,0,0,0,0,0,0.00608,0.00625,0.00654,0,0,0,0,0,0,0,0.0052,0.00539,0.00572,0,0,0,0,0,0,0,0.0059,0.00602,0.00621,0,0,0,0,0,0,0,0.00546,0.00559,0.0058,0,0,0,0,0,0,0,0.00541,0.00552,0.0057,0,0,0,0,0,0,0,0.00571,0.00584,0.00607,0,0,0,0,0,0,0,0.00557,0.00567,0.00583,0,0,0,0,0,0,0,0.00512,0.00378,0.00338,0,0,0,0,0,0,0,0.00442,0.00331,0.003,0,0,0,0,0,0,0,0.00477,0.0037,0.00336,0,0,0,0,0,0,0,0.00559,0.00432,0.0039,0,0,0,0,0,0,0,0.00252,0.00222,0.00218,0,0,0,0,0,0,0,0.00301,0.00258,0.00248,0,0,0,0,0,0,0,0.00245,0.00217,0.00214,0,0,0,0,0,0,0,0.00348,0.00282,0.00264,0,0,0,0,0,0,0,0.00247,0.00209,0.00203,0,0,0,0,0,0,0,0.82371,1.16098,1.46545,0,0,0,0,0,0,0,0.76683,1.10167,1.40302,0,0,0,0,0,0,0,0.8274,1.23758,1.604,0,0,0,0,0,0,0,0.91194,1.36384,1.77194,0,0,0,0,0,0,0,0.6033,0.9978,1.32851,0,0,0,0,0,0,0,0.66106,1.07689,1.43243,0,0,0,0,0,0,0,0.62291,1.02751,1.36685,0,0,0,0,0,0,0,0.70801,1.1002,1.43312,0,0,0,0,0,0,0,0.57779,0.91548,1.18816,0,0,0,0,0,0,0,141.61556,143.08312,145.3085,0,0,0,0,0,0,0,142.72141,144.08928,146.16901,0,0,0,0,0,0,0,145.12216,146.54611,148.71075,0,0,0,0,0,0,0,141.79599,143.28527,145.55192,0,0,0,0,0,0,0,144.79978,145.79653,147.33228,0,0,0,0,0,0,0,142.66537,143.79953,145.53872,0,0,0,0,0,0,0,143.38978,144.35284,145.84188,0,0,0,0,0,0,0,143.77095,144.92865,146.70037,0,0,0,0,0,0,0,140.81982,141.84513,143.40822,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00321,0.00355,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01383,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01381,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01381,0.01777,0,0,0,0,0,0,0,0.01189,0.01384,0.0178,0,0,0,0,0,0,0,0.02841,0.04056,0.05484,0,0,0,0,0,0,0,0.02707,0.03891,0.05288,0,0,0,0,0,0,0,0.0272,0.04116,0.0558,0,0,0,0,0,0,0,0.02969,0.04546,0.06165,0,0,0,0,0,0,0,0.02077,0.03382,0.04712,0,0,0,0,0,0,0,0.02349,0.03751,0.05183,0,0,0,0,0,0,0,0.02133,0.0344,0.04801,0,0,0,0,0,0,0,0.02583,0.04006,0.05497,0,0,0,0,0,0,0,0.02197,0.03414,0.04721,0,0,0,0,0,0,0,0.00069,0.00099,0.00164,0,0,0,0,0,0,0,0.00067,0.00095,0.00157,0,0,0,0,0,0,0,0.00068,0.00097,0.00161,0,0,0,0,0,0,0,0.00071,0.00102,0.00168,0,0,0,0,0,0,0,0.0006,0.00084,0.00139,0,0,0,0,0,0,0,0.00061,0.00086,0.00142,0,0,0,0,0,0,0,0.00056,0.00079,0.00131,0,0,0,0,0,0,0,0.00062,0.00088,0.00145,0,0,0,0,0,0,0,0.00055,0.00076,0.00127,0,0,0,0,0,0,0,0.02137,0.02204,0.03176,0,0,0,0,0,0,0,0.02199,0.02261,0.03252,0,0,0,0,0,0,0,0.02378,0.02442,0.03509,0,0,0,0,0,0,0,0.02029,0.02098,0.03025,0,0,0,0,0,0,0,0.02323,0.02374,0.03402,0,0,0,0,0,0,0,0.02148,0.02201,0.03156,0,0,0,0,0,0,0,0.02134,0.02181,0.0313,0,0,0,0,0,0,0,0.02241,0.02296,0.03296,0,0,0,0,0,0,0,0.02193,0.02238,0.03218,0,0,0,0,0,0,0,0.00397,0.00455,0.00761,0,0,0,0,0,0,0,0.00399,0.00455,0.00758,0,0,0,0,0,0,0,0.00425,0.00481,0.00799,0,0,0,0,0,0,0,0.00387,0.00448,0.0075,0,0,0,0,0,0,0,0.004,0.00445,0.0074,0,0,0,0,0,0,0,0.00381,0.00428,0.00714,0,0,0,0,0,0,0,0.00371,0.00413,0.0069,0,0,0,0,0,0,0,0.00395,0.00444,0.0074,0,0,0,0,0,0,0,0.00375,0.00416,0.00696,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00093,0.00093,0.00095,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00092,0.00093,0.00094,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.0009,0.00091,0.00092,0,0,0,0,0,0,0,0.00083,0.00084,0.00085,0,0,0,0,0,0,0,0.06703,0.08436,0.12297,0,0,0,0,0,0,0,0.059,0.07436,0.11086,0,0,0,0,0,0,0,0.06375,0.08353,0.12478,0,0,0,0,0,0,0,0.07331,0.09622,0.1414,0,0,0,0,0,0,0,0.03885,0.05512,0.09283,0,0,0,0,0,0,0,0.04419,0.06203,0.10138,0,0,0,0,0,0,0,0.03757,0.05227,0.08811,0,0,0,0,0,0,0,0.05054,0.06873,0.10889,0,0,0,0,0,0,0,0.03729,0.05186,0.08714 +Full size car,PH10G,2050,0,0,0,0,0,0,0,0,0.00547,0.00565,0,0,0,0,0,0,0,0,0.00562,0.00578,0,0,0,0,0,0,0,0,0.00608,0.00625,0,0,0,0,0,0,0,0,0.0052,0.00539,0,0,0,0,0,0,0,0,0.0059,0.00602,0,0,0,0,0,0,0,0,0.00546,0.00559,0,0,0,0,0,0,0,0,0.00541,0.00552,0,0,0,0,0,0,0,0,0.00571,0.00584,0,0,0,0,0,0,0,0,0.00557,0.00567,0,0,0,0,0,0,0,0,0.00512,0.00378,0,0,0,0,0,0,0,0,0.00441,0.00331,0,0,0,0,0,0,0,0,0.00476,0.00369,0,0,0,0,0,0,0,0,0.00558,0.00431,0,0,0,0,0,0,0,0,0.00252,0.00222,0,0,0,0,0,0,0,0,0.00301,0.00258,0,0,0,0,0,0,0,0,0.00245,0.00217,0,0,0,0,0,0,0,0,0.00348,0.00282,0,0,0,0,0,0,0,0,0.00246,0.00209,0,0,0,0,0,0,0,0,0.82151,1.15824,0,0,0,0,0,0,0,0,0.76508,1.09953,0,0,0,0,0,0,0,0,0.82513,1.23486,0,0,0,0,0,0,0,0,0.90922,1.36065,0,0,0,0,0,0,0,0,0.60291,0.99755,0,0,0,0,0,0,0,0,0.66028,1.07614,0,0,0,0,0,0,0,0,0.62231,1.02688,0,0,0,0,0,0,0,0,0.70718,1.09934,0,0,0,0,0,0,0,0,0.57755,0.91528,0,0,0,0,0,0,0,0,141.60984,143.08299,0,0,0,0,0,0,0,0,142.71607,144.08932,0,0,0,0,0,0,0,0,145.11673,146.54611,0,0,0,0,0,0,0,0,141.79011,143.2852,0,0,0,0,0,0,0,0,144.79569,145.79646,0,0,0,0,0,0,0,0,142.66092,143.79947,0,0,0,0,0,0,0,0,143.38586,144.35281,0,0,0,0,0,0,0,0,143.76642,144.92854,0,0,0,0,0,0,0,0,140.81583,141.84503,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02843,0.04061,0,0,0,0,0,0,0,0,0.0271,0.03896,0,0,0,0,0,0,0,0,0.02723,0.04123,0,0,0,0,0,0,0,0,0.02973,0.04555,0,0,0,0,0,0,0,0,0.02079,0.03386,0,0,0,0,0,0,0,0,0.02351,0.03756,0,0,0,0,0,0,0,0,0.02135,0.03446,0,0,0,0,0,0,0,0,0.02585,0.0401,0,0,0,0,0,0,0,0,0.02197,0.03415,0.0133,0,0,0,0,0,0,0,0.0007,0.00099,0.01355,0,0,0,0,0,0,0,0.00067,0.00095,0.01432,0,0,0,0,0,0,0,0.00068,0.00097,0.0127,0,0,0,0,0,0,0,0.00071,0.00102,0.01415,0,0,0,0,0,0,0,0.0006,0.00084,0.01329,0,0,0,0,0,0,0,0.00061,0.00086,0.01339,0,0,0,0,0,0,0,0.00057,0.00079,0.01378,0,0,0,0,0,0,0,0.00062,0.00088,0.0138,0,0,0,0,0,0,0,0.00055,0.00076,0.08115,0,0,0,0,0,0,0,0.02138,0.02204,0.08167,0,0,0,0,0,0,0,0.02199,0.02262,0.08335,0,0,0,0,0,0,0,0.02378,0.02442,0.07989,0,0,0,0,0,0,0,0.0203,0.02099,0.08299,0,0,0,0,0,0,0,0.02323,0.02374,0.08116,0,0,0,0,0,0,0,0.02148,0.02202,0.08134,0,0,0,0,0,0,0,0.02134,0.02182,0.08217,0,0,0,0,0,0,0,0.02241,0.02297,0.0822,0,0,0,0,0,0,0,0.02193,0.02239,0.06882,0,0,0,0,0,0,0,0.00397,0.00456,0.06911,0,0,0,0,0,0,0,0.004,0.00455,0.07008,0,0,0,0,0,0,0,0.00425,0.00482,0.06806,0,0,0,0,0,0,0,0.00387,0.00449,0.06987,0,0,0,0,0,0,0,0.00401,0.00446,0.06879,0,0,0,0,0,0,0,0.00381,0.00429,0.06892,0,0,0,0,0,0,0,0.00371,0.00413,0.0694,0,0,0,0,0,0,0,0.00396,0.00445,0.06945,0,0,0,0,0,0,0,0.00375,0.00416,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00093,0.00093,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00092,0.00093,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00083,0.00084,0,0,0,0,0,0,0,0,0.06696,0.0843,0,0,0,0,0,0,0,0,0.05895,0.07432,0,0,0,0,0,0,0,0,0.06367,0.08346,0,0,0,0,0,0,0,0,0.07323,0.09618,0,0,0,0,0,0,0,0,0.03884,0.05514,0,0,0,0,0,0,0,0,0.04416,0.06204,0,0,0,0,0,0,0,0,0.03757,0.0523,0,0,0,0,0,0,0,0,0.05055,0.0688,0,0,0,0,0,0,0,0,0.03728,0.05186 +Full size car,PH20E,1990,0.00851,0,0,0,0,0,0,0,0,0,0.00881,0,0,0,0,0,0,0,0,0,0.00956,0,0,0,0,0,0,0,0,0,0.00803,0,0,0,0,0,0,0,0,0,0.00942,0,0,0,0,0,0,0,0,0,0.00865,0,0,0,0,0,0,0,0,0,0.00864,0,0,0,0,0,0,0,0,0,0.00904,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01355,0.01358,0.01403,0,0,0,0,0,0,0,0.01401,0.01403,0.01445,0,0,0,0,0,0,0,0.01535,0.01533,0.01568,0,0,0,0,0,0,0,0.01248,0.01252,0.01301,0,0,0,0,0,0,0,0.01505,0.01504,0.0154,0,0,0,0,0,0,0,0.01353,0.01355,0.01398,0,0,0,0,0,0,0,0.0137,0.01372,0.01416,0,0,0,0,0,0,0,0.0144,0.01441,0.01481,0,0,0,0,0,0,0,0.01445,0.01447,0.01489,0,0,0,0,0,0,0,0.09009,0.08871,0.0888,0,0,0,0,0,0,0,0.09145,0.09003,0.09004,0,0,0,0,0,0,0,0.09543,0.09387,0.0937,0,0,0,0,0,0,0,0.08685,0.08555,0.08578,0,0,0,0,0,0,0,0.09454,0.09301,0.09287,0,0,0,0,0,0,0,0.08997,0.08857,0.08864,0,0,0,0,0,0,0,0.09051,0.08911,0.08917,0,0,0,0,0,0,0,0.09263,0.09117,0.09112,0,0,0,0,0,0,0,0.09281,0.09136,0.09133,0,0,0,0,0,0,0,0.07312,0.07186,0.07194,0,0,0,0,0,0,0,0.07405,0.07275,0.07276,0,0,0,0,0,0,0,0.07679,0.07536,0.0752,0,0,0,0,0,0,0,0.07079,0.0696,0.06982,0,0,0,0,0,0,0,0.07616,0.07475,0.07462,0,0,0,0,0,0,0,0.07294,0.07165,0.07173,0,0,0,0,0,0,0,0.07338,0.0721,0.07216,0,0,0,0,0,0,0,0.07487,0.07352,0.07348,0,0,0,0,0,0,0,0.07507,0.07374,0.07372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH20E,1995,0.00851,0.00851,0,0,0,0,0,0,0,0,0.00881,0.00881,0,0,0,0,0,0,0,0,0.00956,0.00956,0,0,0,0,0,0,0,0,0.00803,0.00803,0,0,0,0,0,0,0,0,0.00942,0.00942,0,0,0,0,0,0,0,0,0.00865,0.00865,0,0,0,0,0,0,0,0,0.00864,0.00864,0,0,0,0,0,0,0,0,0.00904,0.00904,0,0,0,0,0,0,0,0,0.00891,0.00891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00557,0.0075,0.00763,0.00936,0,0,0,0,0,0,0.00575,0.00774,0.00787,0.00963,0,0,0,0,0,0,0.00627,0.00844,0.00856,0.01045,0,0,0,0,0,0,0.00517,0.00697,0.00709,0.0087,0,0,0,0,0,0,0.00616,0.00829,0.00841,0.01027,0,0,0,0,0,0,0.00558,0.00751,0.00763,0.00934,0,0,0,0,0,0,0.00563,0.00758,0.00771,0.00944,0,0,0,0,0,0,0.0059,0.00795,0.00807,0.00988,0,0,0,0,0,0,0.0059,0.00795,0.00808,0.00991,0,0,0,0,0,0,0.04752,0.05937,0.05946,0.06666,0,0,0,0,0,0,0.04822,0.06016,0.06025,0.06755,0,0,0,0,0,0,0.05024,0.06245,0.06252,0.07016,0,0,0,0,0,0,0.04597,0.05759,0.05767,0.06456,0,0,0,0,0,0,0.04981,0.06195,0.06202,0.06958,0,0,0,0,0,0,0.04755,0.05938,0.05946,0.06661,0,0,0,0,0,0,0.04776,0.05963,0.05972,0.06694,0,0,0,0,0,0,0.04882,0.06085,0.06093,0.06833,0,0,0,0,0,0,0.04882,0.06087,0.06096,0.06842,0,0,0,0,0,0,0.03395,0.04486,0.04494,0.05156,0,0,0,0,0,0,0.03428,0.04527,0.04535,0.05207,0,0,0,0,0,0,0.03521,0.04645,0.04651,0.05354,0,0,0,0,0,0,0.03317,0.04387,0.04395,0.05029,0,0,0,0,0,0,0.035,0.04618,0.04624,0.05319,0,0,0,0,0,0,0.03391,0.0448,0.04487,0.05145,0,0,0,0,0,0,0.03405,0.04498,0.04506,0.0517,0,0,0,0,0,0,0.03456,0.04562,0.0457,0.05251,0,0,0,0,0,0,0.0346,0.04569,0.04577,0.05264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH20E,2000,0.00851,0.01303,0.01618,0,0,0,0,0,0,0,0.00881,0.0127,0.01539,0,0,0,0,0,0,0,0.00956,0.01392,0.01697,0,0,0,0,0,0,0,0.00803,0.01297,0.01646,0,0,0,0,0,0,0,0.00942,0.01159,0.01304,0,0,0,0,0,0,0,0.00865,0.01125,0.01321,0,0,0,0,0,0,0,0.00864,0.01072,0.01211,0,0,0,0,0,0,0,0.00904,0.01204,0.01409,0,0,0,0,0,0,0,0.00891,0.01097,0.01234,0,0,0,0,0,0,0,0,0.07301,0.07561,0,0,0,0,0,0,0,0,0.06939,0.07376,0,0,0,0,0,0,0,0,0.08221,0.08666,0,0,0,0,0,0,0,0,0.08704,0.09153,0,0,0,0,0,0,0,0,0.06853,0.07305,0,0,0,0,0,0,0,0,0.07392,0.07891,0,0,0,0,0,0,0,0,0.06878,0.07107,0,0,0,0,0,0,0,0,0.07115,0.07482,0,0,0,0,0,0,0,0,0.05914,0.0625,0,0,0,0,0,0,0,0,7.32426,8.60913,0,0,0,0,0,0,0,0,7.07021,8.46765,0,0,0,0,0,0,0,0,8.0841,9.6332,0,0,0,0,0,0,0,0,8.76036,10.40745,0,0,0,0,0,0,0,0,7.13059,8.48297,0,0,0,0,0,0,0,0,7.59524,9.13231,0,0,0,0,0,0,0,0,7.39622,8.55563,0,0,0,0,0,0,0,0,7.30588,8.63612,0,0,0,0,0,0,0,0,6.00537,7.10747,0,0,0,0,0,0,0,0,263.2199,267.23712,0,0,0,0,0,0,0,0,265.44796,269.18865,0,0,0,0,0,0,0,0,270.02508,273.91811,0,0,0,0,0,0,0,0,263.35628,267.42397,0,0,0,0,0,0,0,0,269.85875,272.57044,0,0,0,0,0,0,0,0,265.55168,269.66816,0,0,0,0,0,0,0,0,267.05226,269.66734,0,0,0,0,0,0,0,0,267.67436,270.83183,0,0,0,0,0,0,0,0,262.39324,265.19879,0,0,0,0,0,0,0,0,0.01642,0.01945,0,0,0,0,0,0,0,0,0.01647,0.01949,0,0,0,0,0,0,0,0,0.01654,0.01955,0,0,0,0,0,0,0,0,0.01661,0.01971,0,0,0,0,0,0,0,0,0.01657,0.01959,0,0,0,0,0,0,0,0,0.01668,0.01976,0,0,0,0,0,0,0,0,0.0165,0.01955,0,0,0,0,0,0,0,0,0.01657,0.01961,0,0,0,0,0,0,0,0,0.01631,0.01929,0,0,0,0,0,0,0,0,0.05441,0.05441,0,0,0,0,0,0,0,0,0.05454,0.05454,0,0,0,0,0,0,0,0,0.05468,0.05468,0,0,0,0,0,0,0,0,0.05403,0.05403,0,0,0,0,0,0,0,0,0.0546,0.0546,0,0,0,0,0,0,0,0,0.05422,0.05423,0,0,0,0,0,0,0,0,0.0544,0.0544,0,0,0,0,0,0,0,0,0.05461,0.05461,0,0,0,0,0,0,0,0,0.05472,0.05472,0,0,0,0,0,0,0,0,0.9429,1.12052,0,0,0,0,0,0,0,0,0.93379,1.13388,0,0,0,0,0,0,0,0,1.04148,1.25491,0,0,0,0,0,0,0,0,1.08743,1.30883,0,0,0,0,0,0,0,0,1.016,1.2342,0,0,0,0,0,0,0,0,1.05191,1.26892,0,0,0,0,0,0,0,0,1.03493,1.22523,0,0,0,0,0,0,0,0,1.07551,1.28301,0,0,0,0,0,0,0,0,0.95499,1.14728,0,0,0,0,0,0,0,0,0.01187,0.01741,0.00241,0.00524,0,0,0,0,0,0,0.01081,0.01563,0.00248,0.00539,0,0,0,0,0,0,0.01179,0.0171,0.00267,0.00582,0,0,0,0,0,0,0.01213,0.01801,0.00226,0.00489,0,0,0,0,0,0,0.00768,0.01052,0.00263,0.00572,0,0,0,0,0,0,0.00818,0.01182,0.00242,0.00523,0,0,0,0,0,0,0.00734,0.01011,0.00244,0.00528,0,0,0,0,0,0,0.00915,0.01294,0.00254,0.00551,0,0,0,0,0,0,0.00755,0.01035,0.00254,0.00553,0,0,0,0,0,0,0.06827,0.08084,0.02783,0.04325,0,0,0,0,0,0,0.06696,0.07792,0.02836,0.04392,0,0,0,0,0,0,0.072,0.08411,0.02987,0.04586,0,0,0,0,0,0,0.0671,0.08054,0.02669,0.04172,0,0,0,0,0,0,0.0624,0.06887,0.02955,0.04543,0,0,0,0,0,0,0.06059,0.06895,0.02788,0.04324,0,0,0,0,0,0,0.05875,0.06502,0.02802,0.04347,0,0,0,0,0,0,0.06421,0.07284,0.02881,0.04449,0,0,0,0,0,0,0.0603,0.06662,0.02879,0.04453,0,0,0,0,0,0,0.03669,0.04783,0.01585,0.03003,0,0,0,0,0,0,0.03471,0.04443,0.01601,0.03032,0,0,0,0,0,0,0.03697,0.0477,0.01648,0.03118,0,0,0,0,0,0,0.03712,0.04903,0.01545,0.02928,0,0,0,0,0,0,0.0289,0.03464,0.01637,0.03098,0,0,0,0,0,0,0.02958,0.03692,0.01582,0.02995,0,0,0,0,0,0,0.02792,0.03349,0.01589,0.03011,0,0,0,0,0,0,0.03161,0.03926,0.01615,0.03058,0,0,0,0,0,0,0.02842,0.03403,0.01618,0.03066,0,0,0,0,0,0,0.00862,0.00772,0,0,0,0,0,0,0,0,0.00869,0.00777,0,0,0,0,0,0,0,0,0.00884,0.00791,0,0,0,0,0,0,0,0,0.00862,0.00772,0,0,0,0,0,0,0,0,0.00884,0.00787,0,0,0,0,0,0,0,0,0.0087,0.00779,0,0,0,0,0,0,0,0,0.00874,0.00779,0,0,0,0,0,0,0,0,0.00876,0.00782,0,0,0,0,0,0,0,0,0.00859,0.00766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH20E,2005,0.00851,0.01028,0.01142,0.01409,0,0,0,0,0,0,0.00881,0.01035,0.01134,0.01364,0,0,0,0,0,0,0.00956,0.01129,0.0124,0.015,0,0,0,0,0,0,0.00803,0.00996,0.01122,0.01419,0,0,0,0,0,0,0.00942,0.01036,0.01095,0.01225,0,0,0,0,0,0,0.00865,0.00975,0.01051,0.012,0,0,0,0,0,0,0.00864,0.00954,0.01011,0.01134,0,0,0,0,0,0,0.00904,0.01028,0.01106,0.01284,0,0,0,0,0,0,0.00891,0.0098,0.01035,0.01156,0,0,0,0,0,0,0,0.03756,0.03014,0.03574,0,0,0,0,0,0,0,0.0335,0.0279,0.03351,0,0,0,0,0,0,0,0.03874,0.03222,0.03963,0,0,0,0,0,0,0,0.04294,0.0356,0.04319,0,0,0,0,0,0,0,0.0236,0.02193,0.02848,0,0,0,0,0,0,0,0.02803,0.02574,0.03218,0,0,0,0,0,0,0,0.02326,0.02133,0.02759,0,0,0,0,0,0,0,0.02925,0.02531,0.03159,0,0,0,0,0,0,0,0.02065,0.0189,0.02383,0,0,0,0,0,0,0,2.98915,3.8026,5.16439,0,0,0,0,0,0,0,2.8717,3.79063,5.11719,0,0,0,0,0,0,0,3.22371,4.33088,5.89749,0,0,0,0,0,0,0,3.46953,4.66554,6.3412,0,0,0,0,0,0,0,2.97233,4.10022,5.42437,0,0,0,0,0,0,0,3.09332,4.29645,5.67069,0,0,0,0,0,0,0,3.08211,4.14849,5.47093,0,0,0,0,0,0,0,3.02752,4.03677,5.38899,0,0,0,0,0,0,0,2.61333,3.47653,4.54563,0,0,0,0,0,0,0,266.98314,270.0164,274.43332,0,0,0,0,0,0,0,269.37018,272.19672,276.27454,0,0,0,0,0,0,0,273.79232,276.73456,281.01554,0,0,0,0,0,0,0,267.15935,270.23674,274.73365,0,0,0,0,0,0,0,274.35893,276.41644,279.23079,0,0,0,0,0,0,0,269.866,273.22002,275.48971,0,0,0,0,0,0,0,271.71233,273.69984,276.39094,0,0,0,0,0,0,0,271.9484,274.33936,277.69888,0,0,0,0,0,0,0,266.81651,268.93481,271.82775,0,0,0,0,0,0,0,0.00538,0.00632,0.00961,0,0,0,0,0,0,0,0.00539,0.00633,0.00962,0,0,0,0,0,0,0,0.0054,0.00633,0.00961,0,0,0,0,0,0,0,0.00546,0.00643,0.00977,0,0,0,0,0,0,0,0.00541,0.00635,0.00964,0,0,0,0,0,0,0,0.00547,0.00643,0.00977,0,0,0,0,0,0,0,0.00541,0.00636,0.00966,0,0,0,0,0,0,0,0.00542,0.00637,0.00967,0,0,0,0,0,0,0,0.00533,0.00626,0.00951,0,0,0,0,0,0,0,0.01778,0.02205,0.02487,0,0,0,0,0,0,0,0.01782,0.0221,0.02492,0,0,0,0,0,0,0,0.01787,0.02216,0.02499,0,0,0,0,0,0,0,0.01766,0.02189,0.02469,0,0,0,0,0,0,0,0.01784,0.02212,0.02495,0,0,0,0,0,0,0,0.01772,0.02197,0.02478,0,0,0,0,0,0,0,0.01778,0.02204,0.02486,0,0,0,0,0,0,0,0.01785,0.02213,0.02496,0,0,0,0,0,0,0,0.01789,0.02217,0.02501,0,0,0,0,0,0,0,0.28675,0.38074,0.44502,0,0,0,0,0,0,0,0.27921,0.3828,0.44735,0,0,0,0,0,0,0,0.3142,0.42382,0.50379,0,0,0,0,0,0,0,0.32875,0.44391,0.53212,0,0,0,0,0,0,0,0.29996,0.41041,0.49034,0,0,0,0,0,0,0,0.31294,0.42504,0.50839,0,0,0,0,0,0,0,0.30504,0.40733,0.48456,0,0,0,0,0,0,0,0.31944,0.4277,0.5027,0,0,0,0,0,0,0,0.28356,0.38213,0.44333,0,0,0,0,0,0,0,0.00375,0.00598,0.01052,0.00051,0.00166,0,0,0,0,0,0.00338,0.00543,0.00946,0.00052,0.0017,0,0,0,0,0,0.0037,0.00592,0.01033,0.00053,0.0018,0,0,0,0,0,0.00394,0.0063,0.01112,0.0005,0.00157,0,0,0,0,0,0.00228,0.00378,0.00638,0.00052,0.00178,0,0,0,0,0,0.00254,0.00427,0.00709,0.00051,0.00166,0,0,0,0,0,0.00221,0.00367,0.00619,0.00051,0.00167,0,0,0,0,0,0.00281,0.00458,0.00786,0.00052,0.00173,0,0,0,0,0,0.00222,0.00368,0.00621,0.00052,0.00174,0,0,0,0,0,0.02788,0.04673,0.05775,0.01608,0.02293,0,0,0,0,0,0.02774,0.04656,0.05638,0.01651,0.0234,0,0,0,0,0,0.0302,0.05063,0.06139,0.01774,0.02478,0,0,0,0,0,0.02723,0.04555,0.0573,0.01518,0.02189,0,0,0,0,0,0.02674,0.04522,0.05172,0.01749,0.02449,0,0,0,0,0,0.02553,0.04335,0.0503,0.01614,0.02296,0,0,0,0,0,0.02477,0.04194,0.04824,0.01624,0.02309,0,0,0,0,0,0.02702,0.04553,0.05363,0.01688,0.02381,0,0,0,0,0,0.0254,0.04313,0.04944,0.01685,0.0238,0,0,0,0,0,0.00972,0.01716,0.02695,0.00504,0.01134,0,0,0,0,0,0.00908,0.01618,0.02491,0.00511,0.01145,0,0,0,0,0,0.00993,0.01757,0.02714,0.00532,0.0118,0,0,0,0,0,0.01,0.01758,0.02802,0.00486,0.01103,0,0,0,0,0,0.00711,0.01321,0.019,0.00527,0.01171,0,0,0,0,0,0.0074,0.01378,0.02004,0.00502,0.0113,0,0,0,0,0,0.00675,0.01257,0.01818,0.00506,0.01136,0,0,0,0,0,0.00803,0.0146,0.0218,0.00517,0.01156,0,0,0,0,0,0.00683,0.01274,0.01837,0.00519,0.01159,0,0,0,0,0,0.00874,0.0078,0.00264,0,0,0,0,0,0,0,0.00882,0.00786,0.00266,0,0,0,0,0,0,0,0.00896,0.00799,0.0027,0,0,0,0,0,0,0,0.00875,0.0078,0.00264,0,0,0,0,0,0,0,0.00898,0.00798,0.00269,0,0,0,0,0,0,0,0.00884,0.00789,0.00265,0,0,0,0,0,0,0,0.0089,0.0079,0.00266,0,0,0,0,0,0,0,0.0089,0.00792,0.00267,0,0,0,0,0,0,0,0.00874,0.00777,0.00262,0,0,0,0,0,0,0,0.24233,0.32197,0.33572,0,0,0,0,0,0,0,0.21486,0.2943,0.30655,0,0,0,0,0,0,0,0.24794,0.3392,0.35224,0,0,0,0,0,0,0,0.27578,0.37602,0.38948,0,0,0,0,0,0,0,0.14143,0.21544,0.22221,0,0,0,0,0,0,0,0.17138,0.25905,0.26043,0,0,0,0,0,0,0,0.13761,0.20746,0.21383,0,0,0,0,0,0,0,0.18137,0.25796,0.26719,0,0,0,0,0,0,0,0.12259,0.1847,0.19019,0,0,0,0,0,0 +Full size car,PH20E,2010,0,0.00938,0.00992,0.01077,0.0133,0,0,0,0,0,0,0.00958,0.01005,0.0108,0.01299,0,0,0,0,0,0,0.01041,0.01093,0.01177,0.01424,0,0,0,0,0,0,0.00898,0.00957,0.01052,0.01334,0,0,0,0,0,0,0.00994,0.01024,0.01071,0.01199,0,0,0,0,0,0,0.00924,0.00961,0.01012,0.01165,0,0,0,0,0,0,0.00914,0.00943,0.00988,0.0111,0,0,0,0,0,0,0.00968,0.01006,0.01067,0.01239,0,0,0,0,0,0,0.00941,0.00969,0.01013,0.01132,0,0,0,0,0,0,0.03262,0.02251,0.01737,0.02267,0,0,0,0,0,0,0.02808,0.0203,0.01591,0.02098,0,0,0,0,0,0,0.03183,0.02392,0.01874,0.02492,0,0,0,0,0,0,0.0368,0.02731,0.0213,0.02787,0,0,0,0,0,0,0.01779,0.0163,0.0136,0.01815,0,0,0,0,0,0,0.02065,0.01867,0.01509,0.02029,0,0,0,0,0,0,0.01723,0.01588,0.01331,0.01769,0,0,0,0,0,0,0.023,0.01871,0.01507,0.01998,0,0,0,0,0,0,0.01657,0.01449,0.01189,0.01543,0,0,0,0,0,0,1.64186,2.55168,3.41736,4.3819,0,0,0,0,0,0,1.53741,2.50728,3.38524,4.33618,0,0,0,0,0,0,1.64391,2.79417,3.85642,4.99964,0,0,0,0,0,0,1.78816,3.02847,4.18794,5.40592,0,0,0,0,0,0,1.36501,2.55751,3.58974,4.61049,0,0,0,0,0,0,1.43707,2.69497,3.73352,4.82343,0,0,0,0,0,0,1.40887,2.60553,3.6458,4.66524,0,0,0,0,0,0,1.48358,2.59556,3.5721,4.58043,0,0,0,0,0,0,1.25701,2.2419,3.05702,3.87514,0,0,0,0,0,0,261.68002,263.54005,266.72266,272.29556,0,0,0,0,0,0,264.16389,265.88104,268.83694,274.06444,0,0,0,0,0,0,268.46038,270.25113,273.33232,278.76943,0,0,0,0,0,0,261.84083,263.7201,266.95689,272.62126,0,0,0,0,0,0,269.56288,270.7534,272.86646,276.79857,0,0,0,0,0,0,264.95675,267.31525,268.76841,273.17948,0,0,0,0,0,0,266.99868,268.13971,270.17964,273.99279,0,0,0,0,0,0,266.9783,268.39687,270.87555,275.3688,0,0,0,0,0,0,262.06053,263.31251,265.48734,269.48386,0,0,0,0,0,0,0.00479,0.00542,0.00646,0.00844,0,0,0,0,0,0,0.0048,0.00543,0.00647,0.00845,0,0,0,0,0,0,0.00481,0.00543,0.00647,0.00843,0,0,0,0,0,0,0.00486,0.0055,0.00657,0.00858,0,0,0,0,0,0,0.00482,0.00544,0.00649,0.00846,0,0,0,0,0,0,0.00487,0.0055,0.00657,0.00858,0,0,0,0,0,0,0.00482,0.00544,0.00649,0.00848,0,0,0,0,0,0,0.00483,0.00546,0.0065,0.00849,0,0,0,0,0,0,0.00475,0.00537,0.0064,0.00835,0,0,0,0,0,0,0.01183,0.01372,0.0177,0.01891,0,0,0,0,0,0,0.01185,0.01375,0.01774,0.01895,0,0,0,0,0,0,0.01188,0.01379,0.01779,0.019,0,0,0,0,0,0,0.01174,0.01362,0.01758,0.01877,0,0,0,0,0,0,0.01187,0.01377,0.01776,0.01897,0,0,0,0,0,0,0.01178,0.01367,0.01764,0.01884,0,0,0,0,0,0,0.01182,0.01371,0.0177,0.0189,0,0,0,0,0,0,0.01187,0.01377,0.01777,0.01897,0,0,0,0,0,0,0.01189,0.0138,0.0178,0.01901,0,0,0,0,0,0,0.07607,0.12434,0.13284,0.22298,0,0,0,0,0,0,0.07285,0.12388,0.13194,0.22252,0,0,0,0,0,0,0.07573,0.13669,0.14408,0.24995,0,0,0,0,0,0,0.07869,0.14522,0.15317,0.26653,0,0,0,0,0,0,0.06782,0.12829,0.13506,0.23875,0,0,0,0,0,0,0.07172,0.13508,0.14215,0.2502,0,0,0,0,0,0,0.0694,0.12821,0.13498,0.23664,0,0,0,0,0,0,0.07603,0.137,0.14247,0.2465,0,0,0,0,0,0,0.06842,0.12162,0.12623,0.21547,0,0,0,0,0,0,0.00154,0.00237,0.00397,0.00799,0.00048,0.00073,0,0,0,0,0.00145,0.00222,0.00371,0.00733,0.00049,0.00074,0,0,0,0,0.00152,0.00234,0.00393,0.00789,0.0005,0.00077,0,0,0,0,0.00161,0.00249,0.00416,0.00846,0.00047,0.00071,0,0,0,0,0.0012,0.0018,0.00304,0.00552,0.00049,0.00076,0,0,0,0,0.00125,0.00192,0.00318,0.00594,0.00048,0.00073,0,0,0,0,0.00118,0.00178,0.00298,0.0054,0.00048,0.00073,0,0,0,0,0.00132,0.00201,0.00337,0.00641,0.00049,0.00075,0,0,0,0,0.00119,0.00179,0.003,0.00541,0.00049,0.00075,0,0,0,0,0.02328,0.02518,0.0427,0.05266,0.01585,0.0175,0,0,0,0,0.02372,0.02545,0.04312,0.05209,0.01628,0.01793,0,0,0,0,0.02567,0.02754,0.04665,0.05646,0.01752,0.01919,0,0,0,0,0.02234,0.02438,0.04125,0.05192,0.01495,0.01657,0,0,0,0,0.0245,0.0258,0.04372,0.04995,0.01726,0.01893,0,0,0,0,0.02286,0.02443,0.04105,0.04794,0.01592,0.01755,0,0,0,0,0.02264,0.02391,0.04056,0.04659,0.01601,0.01766,0,0,0,0,0.02393,0.02545,0.04311,0.05067,0.01665,0.01831,0,0,0,0,0.02328,0.02455,0.04176,0.04778,0.01661,0.01829,0,0,0,0,0.00565,0.00734,0.01359,0.02244,0.00483,0.00634,0,0,0,0,0.00552,0.00706,0.01314,0.02111,0.0049,0.00642,0,0,0,0,0.00592,0.00758,0.01405,0.02277,0.00511,0.00665,0,0,0,0,0.00568,0.00748,0.01378,0.02326,0.00465,0.00613,0,0,0,0,0.00513,0.00628,0.01188,0.01743,0.00506,0.0066,0,0,0,0,0.00503,0.00635,0.01182,0.01795,0.00482,0.00632,0,0,0,0,0.00486,0.00598,0.01135,0.01673,0.00485,0.00636,0,0,0,0,0.0053,0.00664,0.01246,0.01918,0.00496,0.00649,0,0,0,0,0.00495,0.00607,0.01153,0.01689,0.00498,0.00652,0,0,0,0,0.00857,0.00761,0.00257,0.00262,0,0,0,0,0,0,0.00865,0.00768,0.00259,0.00264,0,0,0,0,0,0,0.00879,0.0078,0.00263,0.00268,0,0,0,0,0,0,0.00857,0.00762,0.00257,0.00262,0,0,0,0,0,0,0.00883,0.00782,0.00263,0.00266,0,0,0,0,0,0,0.00868,0.00772,0.00259,0.00263,0,0,0,0,0,0,0.00874,0.00774,0.0026,0.00264,0,0,0,0,0,0,0.00874,0.00775,0.00261,0.00265,0,0,0,0,0,0,0.00858,0.0076,0.00256,0.00259,0,0,0,0,0,0,0.09598,0.13494,0.18293,0.26452,0,0,0,0,0,0,0.08126,0.11928,0.16503,0.24056,0,0,0,0,0,0,0.09358,0.14086,0.19461,0.28429,0,0,0,0,0,0,0.10946,0.1626,0.22274,0.32126,0,0,0,0,0,0,0.04766,0.08789,0.13284,0.19366,0,0,0,0,0,0,0.057,0.10333,0.14942,0.21997,0,0,0,0,0,0,0.0455,0.08456,0.12881,0.18746,0,0,0,0,0,0,0.06457,0.10531,0.1516,0.22103,0,0,0,0,0,0,0.04367,0.07761,0.11578,0.16529,0,0,0,0,0 +Full size car,PH20E,2015,0,0,0.00926,0.00967,0.01044,0.01231,0,0,0,0,0,0,0.00948,0.00985,0.01054,0.0122,0,0,0,0,0,0,0.01029,0.01069,0.01145,0.01328,0,0,0,0,0,0,0.00883,0.00927,0.01011,0.01218,0,0,0,0,0,0,0.00991,0.01016,0.01063,0.01168,0,0,0,0,0,0,0.00921,0.00948,0.01001,0.01122,0,0,0,0,0,0,0.00912,0.00937,0.00982,0.01083,0,0,0,0,0,0,0.00962,0.00993,0.01051,0.01185,0,0,0,0,0,0,0.00938,0.00963,0.01007,0.01106,0,0,0,0,0,0,0.02439,0.01602,0.01444,0.01662,0,0,0,0,0,0,0.02206,0.01485,0.01366,0.0157,0,0,0,0,0,0,0.02413,0.01724,0.01589,0.01841,0,0,0,0,0,0,0.02696,0.01925,0.01764,0.02039,0,0,0,0,0,0,0.01556,0.01273,0.01269,0.01461,0,0,0,0,0,0,0.01803,0.01412,0.01388,0.01603,0,0,0,0,0,0,0.01525,0.01249,0.01253,0.01439,0,0,0,0,0,0,0.01884,0.01413,0.0135,0.01552,0,0,0,0,0,0,0.0147,0.01136,0.01114,0.01264,0,0,0,0,0,0,1.29258,2.27811,3.04823,3.7684,0,0,0,0,0,0,1.27034,2.27601,3.07135,3.78473,0,0,0,0,0,0,1.32226,2.52488,3.48926,4.32937,0,0,0,0,0,0,1.42622,2.71601,3.76384,4.6541,0,0,0,0,0,0,1.19929,2.44464,3.42934,4.19998,0,0,0,0,0,0,1.25382,2.50863,3.5276,4.34357,0,0,0,0,0,0,1.23722,2.50005,3.49679,4.27207,0,0,0,0,0,0,1.25276,2.42356,3.33628,4.0941,0,0,0,0,0,0,1.111,2.14558,2.92278,3.55299,0,0,0,0,0,0,237.09614,238.88187,240.63254,246.05498,0,0,0,0,0,0,239.28629,240.91149,242.44653,247.57524,0,0,0,0,0,0,243.19833,244.90146,246.53074,251.8486,0,0,0,0,0,0,237.26585,239.07724,240.87403,246.3806,0,0,0,0,0,0,243.96518,245.00209,245.75045,249.7703,0,0,0,0,0,0,240.7589,241.13943,242.19228,246.61785,0,0,0,0,0,0,241.63654,242.623,243.31581,247.22962,0,0,0,0,0,0,241.71661,243.00895,244.09969,248.59972,0,0,0,0,0,0,237.18757,238.29343,239.13394,243.18903,0,0,0,0,0,0,0.00311,0.00352,0.00406,0.00541,0,0,0,0,0,0,0.00313,0.00353,0.00407,0.00543,0,0,0,0,0,0,0.00316,0.00356,0.0041,0.00544,0,0,0,0,0,0,0.00313,0.00354,0.0041,0.00548,0,0,0,0,0,0,0.00316,0.00356,0.00411,0.00545,0,0,0,0,0,0,0.00316,0.00357,0.00412,0.0055,0,0,0,0,0,0,0.00313,0.00354,0.00408,0.00544,0,0,0,0,0,0,0.00315,0.00356,0.0041,0.00546,0,0,0,0,0,0,0.0031,0.0035,0.00404,0.00537,0,0,0,0,0,0,0.01183,0.01382,0.0177,0.01783,0,0,0,0,0,0,0.01185,0.01385,0.01774,0.01786,0,0,0,0,0,0,0.01188,0.01389,0.01779,0.01791,0,0,0,0,0,0,0.01174,0.01372,0.01758,0.0177,0,0,0,0,0,0,0.01187,0.01387,0.01776,0.01789,0,0,0,0,0,0,0.01179,0.01377,0.01764,0.01776,0,0,0,0,0,0,0.01182,0.01382,0.0177,0.01782,0,0,0,0,0,0,0.01187,0.01387,0.01777,0.01789,0,0,0,0,0,0,0.01189,0.0139,0.0178,0.01793,0,0,0,0,0,0,0.06211,0.08227,0.11762,0.15883,0,0,0,0,0,0,0.06151,0.08125,0.11653,0.15758,0,0,0,0,0,0,0.06258,0.08902,0.12695,0.17346,0,0,0,0,0,0,0.06559,0.09492,0.13538,0.18531,0,0,0,0,0,0,0.05533,0.08124,0.11785,0.1625,0,0,0,0,0,0,0.05924,0.08626,0.12461,0.17155,0,0,0,0,0,0,0.05629,0.08121,0.11802,0.16214,0,0,0,0,0,0,0.06215,0.08712,0.12501,0.17033,0,0,0,0,0,0,0.05604,0.07668,0.11039,0.14952,0,0,0,0,0,0,0.00142,0.00212,0.00363,0.00649,0.00044,0.00051,0,0,0,0,0.00135,0.00201,0.00345,0.00609,0.00044,0.00051,0,0,0,0,0.0014,0.0021,0.0036,0.00642,0.00045,0.00052,0,0,0,0,0.00146,0.00218,0.00374,0.00677,0.00043,0.00049,0,0,0,0,0.00117,0.00172,0.00295,0.00497,0.00045,0.00052,0,0,0,0,0.00122,0.00178,0.00305,0.00523,0.00044,0.0005,0,0,0,0,0.00116,0.0017,0.00291,0.00489,0.00044,0.00051,0,0,0,0,0.00126,0.00187,0.0032,0.00552,0.00045,0.00051,0,0,0,0,0.00117,0.00171,0.00293,0.00491,0.00045,0.00052,0,0,0,0,0.02296,0.02451,0.04169,0.04899,0.01551,0.01606,0,0,0,0,0.02347,0.02492,0.04232,0.04905,0.01594,0.01649,0,0,0,0,0.02536,0.0269,0.04567,0.0529,0.01718,0.01773,0,0,0,0,0.02195,0.02357,0.04004,0.04778,0.01462,0.01516,0,0,0,0,0.02442,0.02558,0.04338,0.04853,0.01693,0.01747,0,0,0,0,0.02286,0.02398,0.04061,0.04615,0.01559,0.01612,0,0,0,0,0.02257,0.02372,0.04025,0.04528,0.01567,0.01622,0,0,0,0,0.02377,0.02507,0.04254,0.04847,0.01631,0.01686,0,0,0,0,0.02321,0.02435,0.04145,0.04647,0.01627,0.01683,0,0,0,0,0.00537,0.00674,0.01269,0.01918,0.00451,0.00502,0,0,0,0,0.0053,0.00659,0.01242,0.01841,0.00459,0.00509,0,0,0,0,0.00565,0.00701,0.01318,0.01961,0.00481,0.00531,0,0,0,0,0.00533,0.00677,0.01271,0.01959,0.00434,0.00484,0,0,0,0,0.00506,0.00608,0.01157,0.01617,0.00476,0.00526,0,0,0,0,0.00497,0.00602,0.01142,0.01635,0.00451,0.00501,0,0,0,0,0.0048,0.00581,0.01107,0.01556,0.00454,0.00504,0,0,0,0,0.00516,0.00631,0.01195,0.01723,0.00465,0.00516,0,0,0,0,0.00489,0.0059,0.01125,0.01573,0.00466,0.00517,0,0,0,0,0.00685,0.0023,0.00232,0.00237,0,0,0,0,0,0,0.00691,0.00232,0.00233,0.00238,0,0,0,0,0,0,0.00702,0.00236,0.00237,0.00242,0,0,0,0,0,0,0.00685,0.0023,0.00232,0.00237,0,0,0,0,0,0,0.00704,0.00236,0.00237,0.0024,0,0,0,0,0,0,0.00695,0.00232,0.00233,0.00237,0,0,0,0,0,0,0.00698,0.00234,0.00234,0.00238,0,0,0,0,0,0,0.00698,0.00234,0.00235,0.00239,0,0,0,0,0,0,0.00685,0.00229,0.0023,0.00234,0,0,0,0,0,0,0.069,0.10033,0.14815,0.20289,0,0,0,0,0,0,0.06119,0.09161,0.1382,0.18922,0,0,0,0,0,0,0.06798,0.1064,0.16069,0.22167,0,0,0,0,0,0,0.07695,0.11956,0.17932,0.24699,0,0,0,0,0,0,0.03985,0.07394,0.12212,0.16809,0,0,0,0,0,0,0.04784,0.08324,0.13505,0.18638,0,0,0,0,0,0,0.03855,0.07186,0.11956,0.16438,0,0,0,0,0,0,0.05046,0.08448,0.13304,0.18261,0,0,0,0,0,0,0.03705,0.06566,0.10699,0.14522,0,0,0,0 +Full size car,PH20E,2020,0,0,0,0.00912,0.00944,0.00993,0.0114,0,0,0,0,0,0,0.00936,0.00965,0.01009,0.0114,0,0,0,0,0,0,0.01016,0.01047,0.01095,0.01239,0,0,0,0,0,0,0.00868,0.00902,0.00955,0.01116,0,0,0,0,0,0,0.00983,0.01003,0.01033,0.01119,0,0,0,0,0,0,0.0091,0.00933,0.00967,0.01065,0,0,0,0,0,0,0.00904,0.00923,0.00953,0.01036,0,0,0,0,0,0,0.00952,0.00976,0.01013,0.01121,0,0,0,0,0,0,0.00931,0.0095,0.00978,0.01059,0,0,0,0,0,0,0.01877,0.01288,0.01063,0.01237,0,0,0,0,0,0,0.01665,0.01172,0.00986,0.01155,0,0,0,0,0,0,0.01852,0.01363,0.01148,0.01366,0,0,0,0,0,0,0.02094,0.01533,0.01285,0.01522,0,0,0,0,0,0,0.01067,0.00922,0.00841,0.0103,0,0,0,0,0,0,0.01249,0.01047,0.00939,0.01146,0,0,0,0,0,0,0.01033,0.009,0.00827,0.01011,0,0,0,0,0,0,0.01365,0.01069,0.00933,0.01118,0,0,0,0,0,0,0.00989,0.00819,0.00737,0.00882,0,0,0,0,0,0,1.01746,1.51263,1.88464,2.51517,0,0,0,0,0,0,0.99371,1.49375,1.87254,2.50466,0,0,0,0,0,0,1.04294,1.65661,2.12209,2.89151,0,0,0,0,0,0,1.13335,1.80058,2.3171,3.13855,0,0,0,0,0,0,0.92106,1.54746,2.00363,2.73091,0,0,0,0,0,0,0.95756,1.6043,2.08478,2.85391,0,0,0,0,0,0,0.94796,1.58565,2.04946,2.78168,0,0,0,0,0,0,0.97088,1.56036,1.98856,2.68804,0,0,0,0,0,0,0.84902,1.36223,1.71606,2.29567,0,0,0,0,0,0,188.31073,189.62672,190.89384,202.17641,0,0,0,0,0,0,189.93583,191.12398,192.21074,203.27416,0,0,0,0,0,0,193.0791,194.32776,195.49015,206.83336,0,0,0,0,0,0,188.48932,189.82914,191.13769,202.5043,0,0,0,0,0,0,193.24682,193.96631,194.39947,204.54201,0,0,0,0,0,0,190.17591,191.07312,191.7618,202.18,0,0,0,0,0,0,191.38625,192.06831,192.45789,202.44105,0,0,0,0,0,0,191.63875,192.56199,193.27936,203.81503,0,0,0,0,0,0,187.90367,188.67666,189.18528,199.18352,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00318,0.00355,0.00406,0.00501,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00503,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00321,0.00357,0.00408,0.00504,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00496,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04287,0.06615,0.08871,0.11872,0,0,0,0,0,0,0.042,0.06501,0.08744,0.1172,0,0,0,0,0,0,0.04304,0.07093,0.09482,0.12906,0,0,0,0,0,0,0.0455,0.07609,0.10178,0.13886,0,0,0,0,0,0,0.03618,0.06313,0.08571,0.118,0,0,0,0,0,0,0.03932,0.06777,0.09169,0.12596,0,0,0,0,0,0,0.03674,0.0634,0.08628,0.11814,0,0,0,0,0,0,0.04117,0.06882,0.09259,0.12548,0,0,0,0,0,0,0.03619,0.05993,0.08085,0.10866,0,0,0,0,0,0,0.00119,0.00172,0.00278,0.00504,0.00044,0.00048,0,0,0,0,0.00114,0.00164,0.00265,0.00476,0.00044,0.00049,0,0,0,0,0.00118,0.0017,0.00276,0.005,0.00045,0.0005,0,0,0,0,0.00122,0.00177,0.00285,0.00523,0.00043,0.00047,0,0,0,0,0.001,0.00141,0.00229,0.00397,0.00045,0.00049,0,0,0,0,0.00103,0.00146,0.00237,0.00415,0.00044,0.00048,0,0,0,0,0.00099,0.0014,0.00226,0.00391,0.00044,0.00048,0,0,0,0,0.00107,0.00152,0.00247,0.00436,0.00045,0.00049,0,0,0,0,0.001,0.00141,0.00228,0.00392,0.00045,0.00049,0,0,0,0,0.02244,0.02362,0.03978,0.0457,0.01551,0.01586,0,0,0,0,0.02299,0.0241,0.04055,0.04607,0.01594,0.01629,0,0,0,0,0.02485,0.02602,0.04379,0.04966,0.01718,0.01753,0,0,0,0,0.02139,0.02263,0.03802,0.04425,0.01462,0.01496,0,0,0,0,0.02405,0.02493,0.04199,0.04638,0.01693,0.01727,0,0,0,0,0.02235,0.02329,0.03913,0.04379,0.01559,0.01593,0,0,0,0,0.02221,0.02308,0.03889,0.04318,0.01567,0.01602,0,0,0,0,0.02335,0.02434,0.04097,0.04591,0.01631,0.01666,0,0,0,0,0.02285,0.02372,0.04009,0.04437,0.01627,0.01662,0,0,0,0,0.00491,0.00596,0.011,0.01627,0.00451,0.00484,0,0,0,0,0.00488,0.00586,0.01086,0.01578,0.00459,0.00491,0,0,0,0,0.0052,0.00623,0.01151,0.01675,0.00481,0.00512,0,0,0,0,0.00484,0.00594,0.01092,0.01646,0.00434,0.00466,0,0,0,0,0.00473,0.00551,0.01034,0.01426,0.00476,0.00508,0,0,0,0,0.00458,0.00541,0.01011,0.01427,0.00451,0.00483,0,0,0,0,0.00448,0.00525,0.00986,0.0137,0.00454,0.00486,0,0,0,0,0.00478,0.00566,0.01056,0.01496,0.00465,0.00497,0,0,0,0,0.00456,0.00534,0.01005,0.01387,0.00466,0.00499,0,0,0,0,0.00181,0.00183,0.00184,0.00195,0,0,0,0,0,0,0.00183,0.00184,0.00185,0.00196,0,0,0,0,0,0,0.00186,0.00187,0.00188,0.00199,0,0,0,0,0,0,0.00181,0.00183,0.00184,0.00195,0,0,0,0,0,0,0.00186,0.00187,0.00187,0.00197,0,0,0,0,0,0,0.00183,0.00184,0.00185,0.00195,0,0,0,0,0,0,0.00184,0.00185,0.00185,0.00195,0,0,0,0,0,0,0.00184,0.00185,0.00186,0.00196,0,0,0,0,0,0,0.00181,0.00182,0.00182,0.00192,0,0,0,0,0,0,0.05751,0.08009,0.10933,0.15277,0,0,0,0,0,0,0.05049,0.07184,0.09968,0.14055,0,0,0,0,0,0,0.05674,0.08348,0.11595,0.16607,0,0,0,0,0,0,0.0646,0.09448,0.13061,0.18624,0,0,0,0,0,0,0.03085,0.05264,0.0791,0.11835,0,0,0,0,0,0,0.03689,0.06087,0.08985,0.13352,0,0,0,0,0,0,0.02959,0.05085,0.07695,0.11523,0,0,0,0,0,0,0.04061,0.06322,0.09092,0.1322,0,0,0,0,0,0,0.02822,0.04652,0.06911,0.1011,0,0,0 +Full size car,PH20E,2025,0,0,0,0,0.00891,0.0091,0.00943,0.01044,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.01054,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01145,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.01011,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01061,0,0,0,0,0,0,0.00895,0.00909,0.00931,0.01,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.0098,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.01049,0,0,0,0,0,0,0.00917,0.00929,0.00948,0.01004,0,0,0,0,0,0,0.01646,0.01042,0.00825,0.00951,0,0,0,0,0,0,0.01428,0.00923,0.00743,0.00866,0,0,0,0,0,0,0.01613,0.01076,0.00867,0.01023,0,0,0,0,0,0,0.01849,0.01227,0.00983,0.01153,0,0,0,0,0,0,0.00813,0.00631,0.00557,0.0069,0,0,0,0,0,0,0.00993,0.00744,0.00642,0.00789,0,0,0,0,0,0,0.00776,0.00609,0.00542,0.00673,0,0,0,0,0,0,0.01116,0.00787,0.0066,0.00793,0,0,0,0,0,0,0.00741,0.00556,0.00486,0.0059,0,0,0,0,0,0,0.75977,1.09437,1.37594,1.80954,0,0,0,0,0,0,0.72539,1.06099,1.34422,1.77368,0,0,0,0,0,0,0.76744,1.17844,1.52259,2.0404,0,0,0,0,0,0,0.84623,1.29818,1.68202,2.2398,0,0,0,0,0,0,0.62229,1.03444,1.362,1.8359,0,0,0,0,0,0,0.66135,1.09002,1.437,1.94186,0,0,0,0,0,0,0.63941,1.06084,1.39482,1.87282,0,0,0,0,0,0,0.68195,1.07383,1.38675,1.85096,0,0,0,0,0,0,0.57488,0.91351,1.17012,1.55123,0,0,0,0,0,0,152.36465,153.50191,154.82652,164.50535,0,0,0,0,0,0,153.58834,154.61849,155.78586,165.25795,0,0,0,0,0,0,156.1607,157.24222,158.48023,168.19884,0,0,0,0,0,0,152.54515,153.70376,155.0678,164.82885,0,0,0,0,0,0,155.94419,156.58035,157.17563,165.79156,0,0,0,0,0,0,153.597,154.38248,155.20063,164.08166,0,0,0,0,0,0,154.43019,155.03481,155.59115,164.06944,0,0,0,0,0,0,154.7848,155.59219,156.43647,165.41868,0,0,0,0,0,0,151.6512,152.33002,152.98252,161.47709,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00493,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00358,0.00407,0.00496,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00496,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00488,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03284,0.04792,0.06373,0.08692,0,0,0,0,0,0,0.03178,0.04661,0.06221,0.08511,0,0,0,0,0,0,0.03261,0.05045,0.067,0.09315,0,0,0,0,0,0,0.03478,0.05453,0.07244,0.10081,0,0,0,0,0,0,0.02585,0.04281,0.05808,0.08211,0,0,0,0,0,0,0.02881,0.0469,0.06325,0.08898,0,0,0,0,0,0,0.02634,0.04321,0.05873,0.08252,0,0,0,0,0,0,0.03016,0.04773,0.06397,0.08886,0,0,0,0,0,0,0.02579,0.0408,0.055,0.07589,0,0,0,0,0,0,0.00078,0.0011,0.00191,0.00352,0.00044,0.00047,0,0,0,0,0.00074,0.00105,0.00183,0.00334,0.00044,0.00048,0,0,0,0,0.00077,0.00109,0.0019,0.00349,0.00045,0.00049,0,0,0,0,0.0008,0.00113,0.00196,0.00364,0.00043,0.00046,0,0,0,0,0.00065,0.00091,0.0016,0.00282,0.00045,0.00048,0,0,0,0,0.00067,0.00094,0.00164,0.00293,0.00044,0.00047,0,0,0,0,0.00065,0.0009,0.00158,0.00277,0.00044,0.00047,0,0,0,0,0.0007,0.00098,0.00171,0.00307,0.00045,0.00048,0,0,0,0,0.00065,0.0009,0.00159,0.00278,0.00045,0.00048,0,0,0,0,0.02155,0.02227,0.03785,0.04224,0.01551,0.01579,0,0,0,0,0.02214,0.02282,0.03874,0.04286,0.01594,0.01622,0,0,0,0,0.02397,0.02469,0.04189,0.04625,0.01718,0.01746,0,0,0,0,0.02047,0.02123,0.03601,0.04058,0.01462,0.01489,0,0,0,0,0.02333,0.02388,0.04052,0.04389,0.01693,0.0172,0,0,0,0,0.0216,0.02218,0.03758,0.04113,0.01559,0.01586,0,0,0,0,0.0215,0.02204,0.03744,0.04074,0.01567,0.01595,0,0,0,0,0.02256,0.02318,0.03933,0.04307,0.01631,0.01659,0,0,0,0,0.02213,0.02267,0.03864,0.04194,0.01627,0.01655,0,0,0,0,0.00412,0.00476,0.0093,0.01321,0.00451,0.00477,0,0,0,0,0.00413,0.00473,0.00926,0.01294,0.00459,0.00484,0,0,0,0,0.00441,0.00505,0.00983,0.01373,0.00481,0.00506,0,0,0,0,0.00403,0.0047,0.00914,0.01322,0.00434,0.00459,0,0,0,0,0.00409,0.00458,0.00904,0.01206,0.00476,0.00501,0,0,0,0,0.00392,0.00443,0.00874,0.01191,0.00451,0.00476,0,0,0,0,0.00385,0.00433,0.00858,0.01154,0.00454,0.00479,0,0,0,0,0.00409,0.00463,0.00911,0.01245,0.00465,0.00491,0,0,0,0,0.00393,0.00441,0.00877,0.01172,0.00466,0.00492,0,0,0,0,0.00147,0.00148,0.00149,0.00158,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00159,0,0,0,0,0,0,0.0015,0.00151,0.00153,0.00162,0,0,0,0,0,0,0.00147,0.00148,0.00149,0.00159,0,0,0,0,0,0,0.0015,0.00151,0.00151,0.0016,0,0,0,0,0,0,0.00148,0.00149,0.00149,0.00158,0,0,0,0,0,0,0.00149,0.00149,0.0015,0.00158,0,0,0,0,0,0,0.00149,0.0015,0.00151,0.00159,0,0,0,0,0,0,0.00146,0.00147,0.00147,0.00155,0,0,0,0,0,0,0.05107,0.06655,0.08762,0.12016,0,0,0,0,0,0,0.04383,0.0581,0.07766,0.10776,0,0,0,0,0,0,0.04998,0.06772,0.09055,0.12714,0,0,0,0,0,0,0.05765,0.07769,0.10335,0.14422,0,0,0,0,0,0,0.02357,0.03658,0.0534,0.08002,0,0,0,0,0,0,0.02952,0.04418,0.06301,0.09313,0,0,0,0,0,0,0.02227,0.03489,0.05137,0.07725,0,0,0,0,0,0,0.03353,0.04774,0.06623,0.09533,0,0,0,0,0,0,0.02117,0.03207,0.04644,0.06826,0,0 +Full size car,PH20E,2030,0,0,0,0,0,0.00891,0.0091,0.00943,0.01017,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.0103,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01119,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.00983,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01045,0,0,0,0,0,0,0.00895,0.00908,0.00931,0.00982,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.00964,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.0103,0,0,0,0,0,0,0.00917,0.00928,0.00948,0.00989,0,0,0,0,0,0,0.01565,0.00964,0.00754,0.00839,0,0,0,0,0,0,0.01346,0.00844,0.00672,0.00752,0,0,0,0,0,0,0.01529,0.00984,0.00784,0.00884,0,0,0,0,0,0,0.01762,0.01128,0.00894,0.01003,0,0,0,0,0,0,0.00728,0.0054,0.00474,0.00551,0,0,0,0,0,0,0.00907,0.00648,0.00555,0.00642,0,0,0,0,0,0,0.00691,0.00517,0.00459,0.00535,0,0,0,0,0,0,0.01032,0.00699,0.0058,0.00661,0,0,0,0,0,0,0.00658,0.00475,0.00413,0.00473,0,0,0,0,0,0,0.68991,0.98783,1.25114,1.56897,0,0,0,0,0,0,0.65302,0.95108,1.21479,1.5237,0,0,0,0,0,0,0.69303,1.05682,1.37604,1.7436,0,0,0,0,0,0,0.76834,1.16966,1.52624,1.9256,0,0,0,0,0,0,0.54262,0.90501,1.20539,1.52304,0,0,0,0,0,0,0.58203,0.95975,1.2786,1.62137,0,0,0,0,0,0,0.55709,0.92822,1.23471,1.55536,0,0,0,0,0,0,0.60438,0.95077,1.23954,1.56029,0,0,0,0,0,0,0.50159,0.80041,1.03648,1.29463,0,0,0,0,0,0,140.214,141.62946,143.82234,150.01186,0,0,0,0,0,0,141.30614,142.62509,144.67458,150.64323,0,0,0,0,0,0,143.68417,145.05706,147.19002,153.34273,0,0,0,0,0,0,140.39401,141.83003,144.06344,150.33026,0,0,0,0,0,0,143.35366,144.31354,145.82695,150.93492,0,0,0,0,0,0,141.24503,142.33764,144.0513,149.45908,0,0,0,0,0,0,141.95728,142.88464,144.35193,149.36008,0,0,0,0,0,0,142.33962,143.45512,145.20099,150.68036,0,0,0,0,0,0,139.41384,140.40222,141.94251,147.0167,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.0049,0,0,0,0,0,0,0.00323,0.00356,0.00406,0.00492,0,0,0,0,0,0,0.00321,0.00354,0.00406,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00353,0.00405,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00485,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.02896,0.04137,0.05596,0.07394,0,0,0,0,0,0,0.02783,0.03999,0.05437,0.07198,0,0,0,0,0,0,0.02853,0.04308,0.05835,0.07814,0,0,0,0,0,0,0.03055,0.04674,0.0633,0.08478,0,0,0,0,0,0,0.02185,0.03555,0.04951,0.06714,0,0,0,0,0,0,0.02472,0.03941,0.05442,0.0735,0,0,0,0,0,0,0.02231,0.03597,0.05016,0.0677,0,0,0,0,0,0,0.02586,0.04013,0.05504,0.07363,0,0,0,0,0,0,0.02179,0.03396,0.04694,0.06248,0,0,0,0,0,0,0.00078,0.0011,0.00191,0.00312,0.00044,0,0,0,0,0,0.00074,0.00105,0.00183,0.00297,0.00044,0,0,0,0,0,0.00077,0.00109,0.0019,0.0031,0.00045,0,0,0,0,0,0.00079,0.00113,0.00195,0.00322,0.00043,0,0,0,0,0,0.00065,0.0009,0.0016,0.00252,0.00045,0,0,0,0,0,0.00067,0.00094,0.00164,0.00262,0.00044,0,0,0,0,0,0.00064,0.0009,0.00158,0.00249,0.00044,0,0,0,0,0,0.0007,0.00098,0.00171,0.00274,0.00045,0,0,0,0,0,0.00065,0.0009,0.00159,0.0025,0.00045,0,0,0,0,0,0.02154,0.02227,0.03785,0.04133,0.01551,0,0,0,0,0,0.02214,0.02282,0.03873,0.04202,0.01594,0,0,0,0,0,0.02397,0.02468,0.04188,0.04535,0.01718,0,0,0,0,0,0.02047,0.02122,0.036,0.03962,0.01462,0,0,0,0,0,0.02333,0.02387,0.04052,0.04325,0.01693,0,0,0,0,0,0.0216,0.02217,0.03758,0.04043,0.01559,0,0,0,0,0,0.0215,0.02203,0.03743,0.04011,0.01567,0,0,0,0,0,0.02256,0.02317,0.03933,0.04233,0.01631,0,0,0,0,0,0.02213,0.02267,0.03864,0.04132,0.01627,0,0,0,0,0,0.00412,0.00476,0.00929,0.0124,0.00451,0,0,0,0,0,0.00413,0.00473,0.00925,0.0122,0.00459,0,0,0,0,0,0.00441,0.00504,0.00983,0.01293,0.00481,0,0,0,0,0,0.00402,0.00469,0.00914,0.01236,0.00434,0,0,0,0,0,0.00409,0.00457,0.00904,0.0115,0.00476,0,0,0,0,0,0.00392,0.00443,0.00873,0.0113,0.00451,0,0,0,0,0,0.00385,0.00432,0.00858,0.01098,0.00454,0,0,0,0,0,0.00409,0.00463,0.00911,0.0118,0.00465,0,0,0,0,0,0.00393,0.00441,0.00876,0.01117,0.00466,0,0,0,0,0,0.00135,0.00136,0.00138,0.00144,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00145,0,0,0,0,0,0,0.00138,0.0014,0.00142,0.00148,0,0,0,0,0,0,0.00135,0.00137,0.00139,0.00145,0,0,0,0,0,0,0.00138,0.00139,0.0014,0.00145,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00144,0,0,0,0,0,0,0.00137,0.00138,0.00139,0.00144,0,0,0,0,0,0,0.00137,0.00138,0.0014,0.00145,0,0,0,0,0,0,0.00134,0.00135,0.00137,0.00142,0,0,0,0,0,0,0.04872,0.06208,0.0814,0.1074,0,0,0,0,0,0,0.04147,0.05363,0.07138,0.09484,0,0,0,0,0,0,0.04753,0.06256,0.0833,0.11141,0,0,0,0,0,0,0.05508,0.07215,0.09555,0.12727,0,0,0,0,0,0,0.02115,0.03156,0.04617,0.06443,0,0,0,0,0,0,0.02703,0.03891,0.05544,0.07663,0,0,0,0,0,0,0.01986,0.0299,0.04418,0.06182,0,0,0,0,0,0,0.03111,0.04282,0.05924,0.08048,0,0,0,0,0,0,0.01885,0.02758,0.04006,0.05519,0 +Full size car,PH20E,2035,0,0,0,0,0,0,0.00891,0.0091,0.00943,0.01014,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.01028,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01116,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.00979,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01043,0,0,0,0,0,0,0.00895,0.00908,0.00931,0.0098,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.00963,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.01028,0,0,0,0,0,0,0.00917,0.00929,0.00948,0.00988,0,0,0,0,0,0,0.01554,0.00963,0.00755,0.00823,0,0,0,0,0,0,0.01337,0.00843,0.00672,0.00735,0,0,0,0,0,0,0.01519,0.00983,0.00785,0.00862,0,0,0,0,0,0,0.0175,0.01127,0.00894,0.0098,0,0,0,0,0,0,0.00724,0.0054,0.00474,0.00529,0,0,0,0,0,0,0.00901,0.00648,0.00556,0.00619,0,0,0,0,0,0,0.00687,0.00517,0.00459,0.00512,0,0,0,0,0,0,0.01025,0.00698,0.0058,0.0064,0,0,0,0,0,0,0.00654,0.00475,0.00413,0.00455,0,0,0,0,0,0,0.6906,0.98874,1.25175,1.53505,0,0,0,0,0,0,0.65398,0.952,1.21532,1.48797,0,0,0,0,0,0,0.69414,1.05795,1.37665,1.70066,0,0,0,0,0,0,0.7695,1.1709,1.52692,1.88004,0,0,0,0,0,0,0.54446,0.90609,1.20574,1.47635,0,0,0,0,0,0,0.5838,0.96088,1.27901,1.5737,0,0,0,0,0,0,0.55902,0.92931,1.23503,1.50798,0,0,0,0,0,0,0.60588,0.95176,1.23999,1.51762,0,0,0,0,0,0,0.50313,0.8012,1.0368,1.25668,0,0,0,0,0,0,140.18071,141.63643,143.83542,147.87949,0,0,0,0,0,0,141.27495,142.63166,144.68655,148.49033,0,0,0,0,0,0,143.65151,145.06398,147.20295,151.15537,0,0,0,0,0,0,140.35972,141.83708,144.07674,148.1984,0,0,0,0,0,0,143.32919,144.31795,145.83515,148.73565,0,0,0,0,0,0,141.21783,142.34288,144.06119,147.2991,0,0,0,0,0,0,141.93368,142.889,144.3599,147.18226,0,0,0,0,0,0,142.31228,143.46052,145.2111,148.50336,0,0,0,0,0,0,139.39026,140.40716,141.95155,144.87724,0,0,0,0,0,0,0.00318,0.00352,0.00403,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00355,0.00407,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02894,0.04147,0.056,0.072,0,0,0,0,0,0,0.02782,0.04009,0.05441,0.07001,0,0,0,0,0,0,0.02853,0.04319,0.05839,0.07583,0,0,0,0,0,0,0.03056,0.04686,0.06334,0.08231,0,0,0,0,0,0,0.02187,0.03565,0.04954,0.0648,0,0,0,0,0,0,0.02473,0.03952,0.05445,0.07109,0,0,0,0,0,0,0.02233,0.03607,0.05019,0.06539,0,0,0,0,0,0,0.02587,0.04024,0.05507,0.07127,0,0,0,0,0,0,0.0218,0.03405,0.04697,0.06042,0,0,0,0,0,0,0.00078,0.0011,0.00191,0.00308,0,0,0,0,0,0,0.00074,0.00105,0.00183,0.00293,0,0,0,0,0,0,0.00077,0.00109,0.0019,0.00306,0,0,0,0,0,0,0.0008,0.00113,0.00196,0.00317,0,0,0,0,0,0,0.00065,0.00091,0.0016,0.00249,0,0,0,0,0,0,0.00067,0.00094,0.00164,0.00258,0,0,0,0,0,0,0.00064,0.0009,0.00158,0.00245,0,0,0,0,0,0,0.0007,0.00098,0.00171,0.00271,0,0,0,0,0,0,0.00065,0.0009,0.00159,0.00247,0,0,0,0,0,0,0.02154,0.02227,0.03785,0.04122,0,0,0,0,0,0,0.02214,0.02282,0.03874,0.04193,0,0,0,0,0,0,0.02397,0.02468,0.04188,0.04525,0,0,0,0,0,0,0.02047,0.02123,0.03601,0.03951,0,0,0,0,0,0,0.02333,0.02388,0.04052,0.04318,0,0,0,0,0,0,0.0216,0.02218,0.03758,0.04036,0,0,0,0,0,0,0.0215,0.02204,0.03744,0.04004,0,0,0,0,0,0,0.02256,0.02318,0.03933,0.04225,0,0,0,0,0,0,0.02213,0.02267,0.03864,0.04125,0,0,0,0,0,0,0.00412,0.00476,0.00929,0.01231,0,0,0,0,0,0,0.00413,0.00473,0.00926,0.01211,0,0,0,0,0,0,0.00441,0.00505,0.00983,0.01285,0,0,0,0,0,0,0.00402,0.0047,0.00914,0.01227,0,0,0,0,0,0,0.00409,0.00458,0.00904,0.01143,0,0,0,0,0,0,0.00392,0.00443,0.00873,0.01123,0,0,0,0,0,0,0.00385,0.00433,0.00858,0.01092,0,0,0,0,0,0,0.00409,0.00463,0.00911,0.01173,0,0,0,0,0,0,0.00393,0.00441,0.00876,0.01111,0,0,0,0,0,0,0.00135,0.00136,0.00138,0.00142,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00143,0,0,0,0,0,0,0.00138,0.0014,0.00142,0.00145,0,0,0,0,0,0,0.00135,0.00137,0.00139,0.00143,0,0,0,0,0,0,0.00138,0.00139,0.0014,0.00143,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00142,0,0,0,0,0,0,0.00137,0.00138,0.00139,0.00142,0,0,0,0,0,0,0.00137,0.00138,0.0014,0.00143,0,0,0,0,0,0,0.00134,0.00135,0.00137,0.00139,0,0,0,0,0,0,0.04861,0.06217,0.08148,0.1056,0,0,0,0,0,0,0.04138,0.05371,0.07145,0.09297,0,0,0,0,0,0,0.04743,0.06266,0.08338,0.10905,0,0,0,0,0,0,0.05496,0.07226,0.09564,0.12474,0,0,0,0,0,0,0.02113,0.03163,0.04621,0.0619,0,0,0,0,0,0,0.02699,0.03899,0.05549,0.07397,0,0,0,0,0,0,0.01983,0.02997,0.04422,0.05931,0,0,0,0,0,0,0.03105,0.04289,0.05929,0.07816,0,0,0,0,0,0,0.01883,0.02764,0.04009,0.05312 +Full size car,PH20E,2040,0,0,0,0,0,0,0,0.00891,0.0091,0.00943,0,0,0,0,0,0,0,0.00917,0.00934,0.00964,0,0,0,0,0,0,0,0.00995,0.01014,0.01046,0,0,0,0,0,0,0,0.00845,0.00866,0.00902,0,0,0,0,0,0,0,0.00969,0.00981,0.01001,0,0,0,0,0,0,0,0.00895,0.00908,0.00931,0,0,0,0,0,0,0,0.0089,0.00902,0.00922,0,0,0,0,0,0,0,0.00935,0.0095,0.00975,0,0,0,0,0,0,0,0.00917,0.00929,0.00948,0,0,0,0,0,0,0,0.01555,0.00963,0.00754,0,0,0,0,0,0,0,0.01337,0.00843,0.00672,0,0,0,0,0,0,0,0.0152,0.00983,0.00784,0,0,0,0,0,0,0,0.0175,0.01127,0.00894,0,0,0,0,0,0,0,0.00724,0.00539,0.00474,0,0,0,0,0,0,0,0.00902,0.00648,0.00556,0,0,0,0,0,0,0,0.00687,0.00517,0.00459,0,0,0,0,0,0,0,0.01025,0.00698,0.0058,0,0,0,0,0,0,0,0.00655,0.00474,0.00413,0,0,0,0,0,0,0,0.68967,0.98799,1.25142,0,0,0,0,0,0,0,0.65306,0.95129,1.21504,0,0,0,0,0,0,0,0.69309,1.0571,1.37632,0,0,0,0,0,0,0,0.76834,1.16995,1.52655,0,0,0,0,0,0,0,0.54352,0.9054,1.20554,0,0,0,0,0,0,0,0.58281,0.96014,1.27878,0,0,0,0,0,0,0,0.55808,0.92863,1.23485,0,0,0,0,0,0,0,0.60492,0.95106,1.23974,0,0,0,0,0,0,0,0.50232,0.80066,1.03662,0,0,0,0,0,0,0,140.17161,141.62501,143.82832,0,0,0,0,0,0,0,141.26637,142.62104,144.68017,0,0,0,0,0,0,0,143.64257,145.05267,147.19581,0,0,0,0,0,0,0,140.35036,141.82531,144.06944,0,0,0,0,0,0,0,143.32286,144.31005,145.83048,0,0,0,0,0,0,0,141.21063,142.33383,144.05576,0,0,0,0,0,0,0,141.92742,142.88115,144.35542,0,0,0,0,0,0,0,142.3049,143.45131,145.20539,0,0,0,0,0,0,0,139.38365,140.39906,141.94661,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01384,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01382,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01382,0.01777,0,0,0,0,0,0,0,0.01189,0.01385,0.0178,0,0,0,0,0,0,0,0.02891,0.04141,0.05598,0,0,0,0,0,0,0,0.02779,0.04004,0.05439,0,0,0,0,0,0,0,0.02849,0.04313,0.05837,0,0,0,0,0,0,0,0.03052,0.04679,0.06332,0,0,0,0,0,0,0,0.02183,0.0356,0.04953,0,0,0,0,0,0,0,0.0247,0.03945,0.05443,0,0,0,0,0,0,0,0.0223,0.03601,0.05018,0,0,0,0,0,0,0,0.02583,0.04018,0.05505,0,0,0,0,0,0,0,0.02177,0.034,0.04695,0,0,0,0,0,0,0,0.00078,0.0011,0.00191,0,0,0,0,0,0,0,0.00074,0.00105,0.00183,0,0,0,0,0,0,0,0.00077,0.00109,0.0019,0,0,0,0,0,0,0,0.00079,0.00113,0.00196,0,0,0,0,0,0,0,0.00065,0.00091,0.0016,0,0,0,0,0,0,0,0.00067,0.00094,0.00164,0,0,0,0,0,0,0,0.00064,0.0009,0.00158,0,0,0,0,0,0,0,0.0007,0.00098,0.00171,0,0,0,0,0,0,0,0.00065,0.0009,0.00159,0,0,0,0,0,0,0,0.02154,0.02227,0.03785,0,0,0,0,0,0,0,0.02214,0.02282,0.03874,0,0,0,0,0,0,0,0.02396,0.02468,0.04188,0,0,0,0,0,0,0,0.02047,0.02123,0.03601,0,0,0,0,0,0,0,0.02333,0.02387,0.04052,0,0,0,0,0,0,0,0.0216,0.02218,0.03758,0,0,0,0,0,0,0,0.0215,0.02203,0.03743,0,0,0,0,0,0,0,0.02256,0.02317,0.03933,0,0,0,0,0,0,0,0.02213,0.02267,0.03864,0,0,0,0,0,0,0,0.00412,0.00476,0.00929,0,0,0,0,0,0,0,0.00413,0.00473,0.00925,0,0,0,0,0,0,0,0.00441,0.00505,0.00983,0,0,0,0,0,0,0,0.00402,0.00469,0.00914,0,0,0,0,0,0,0,0.00409,0.00457,0.00904,0,0,0,0,0,0,0,0.00392,0.00443,0.00873,0,0,0,0,0,0,0,0.00385,0.00432,0.00858,0,0,0,0,0,0,0,0.00409,0.00463,0.00911,0,0,0,0,0,0,0,0.00393,0.00441,0.00876,0,0,0,0,0,0,0,0.00135,0.00136,0.00138,0,0,0,0,0,0,0,0.00136,0.00137,0.00139,0,0,0,0,0,0,0,0.00138,0.0014,0.00142,0,0,0,0,0,0,0,0.00135,0.00137,0.00139,0,0,0,0,0,0,0,0.00138,0.00139,0.0014,0,0,0,0,0,0,0,0.00136,0.00137,0.00139,0,0,0,0,0,0,0,0.00137,0.00138,0.00139,0,0,0,0,0,0,0,0.00137,0.00138,0.0014,0,0,0,0,0,0,0,0.00134,0.00135,0.00137,0,0,0,0,0,0,0,0.04855,0.06209,0.08144,0,0,0,0,0,0,0,0.04133,0.05364,0.07141,0,0,0,0,0,0,0,0.04737,0.06257,0.08334,0,0,0,0,0,0,0,0.0549,0.07216,0.09559,0,0,0,0,0,0,0,0.0211,0.03158,0.04619,0,0,0,0,0,0,0,0.02696,0.03893,0.05546,0,0,0,0,0,0,0,0.01981,0.02992,0.04419,0,0,0,0,0,0,0,0.03101,0.04283,0.05926,0,0,0,0,0,0,0,0.0188,0.0276,0.04007 +Full size car,PH20E,2045,0,0,0,0,0,0,0,0,0.00891,0.0091,0,0,0,0,0,0,0,0,0.00917,0.00934,0,0,0,0,0,0,0,0,0.00995,0.01014,0,0,0,0,0,0,0,0,0.00845,0.00866,0,0,0,0,0,0,0,0,0.00969,0.00981,0,0,0,0,0,0,0,0,0.00895,0.00908,0,0,0,0,0,0,0,0,0.0089,0.00902,0,0,0,0,0,0,0,0,0.00935,0.0095,0,0,0,0,0,0,0,0,0.00917,0.00929,0,0,0,0,0,0,0,0,0.01555,0.00963,0,0,0,0,0,0,0,0,0.01337,0.00843,0,0,0,0,0,0,0,0,0.0152,0.00983,0,0,0,0,0,0,0,0,0.01751,0.01127,0,0,0,0,0,0,0,0,0.00724,0.00539,0,0,0,0,0,0,0,0,0.00902,0.00648,0,0,0,0,0,0,0,0,0.00687,0.00517,0,0,0,0,0,0,0,0,0.01025,0.00698,0,0,0,0,0,0,0,0,0.00655,0.00474,0,0,0,0,0,0,0,0,0.68909,0.98782,0,0,0,0,0,0,0,0,0.65249,0.95112,0,0,0,0,0,0,0,0,0.69245,1.05689,0,0,0,0,0,0,0,0,0.76762,1.16973,0,0,0,0,0,0,0,0,0.54297,0.90522,0,0,0,0,0,0,0,0,0.58222,0.95995,0,0,0,0,0,0,0,0,0.55752,0.92845,0,0,0,0,0,0,0,0,0.60434,0.95089,0,0,0,0,0,0,0,0,0.50184,0.80053,0,0,0,0,0,0,0,0,140.16436,141.62251,0,0,0,0,0,0,0,0,141.26016,142.61938,0,0,0,0,0,0,0,0,143.6355,145.05032,0,0,0,0,0,0,0,0,140.34307,141.82301,0,0,0,0,0,0,0,0,143.31757,144.30801,0,0,0,0,0,0,0,0,141.20516,142.33212,0,0,0,0,0,0,0,0,141.92227,142.87943,0,0,0,0,0,0,0,0,142.29936,143.4497,0,0,0,0,0,0,0,0,139.37818,140.39683,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02889,0.04139,0,0,0,0,0,0,0,0,0.02777,0.04002,0,0,0,0,0,0,0,0,0.02847,0.04311,0,0,0,0,0,0,0,0,0.03049,0.04677,0,0,0,0,0,0,0,0,0.02182,0.03558,0,0,0,0,0,0,0,0,0.02467,0.03944,0,0,0,0,0,0,0,0,0.02228,0.036,0,0,0,0,0,0,0,0,0.02581,0.04016,0,0,0,0,0,0,0,0,0.02176,0.03398,0.02217,0,0,0,0,0,0,0,0.00078,0.0011,0.02258,0,0,0,0,0,0,0,0.00074,0.00105,0.02387,0,0,0,0,0,0,0,0.00077,0.00109,0.02117,0,0,0,0,0,0,0,0.00079,0.00113,0.02359,0,0,0,0,0,0,0,0.00065,0.00091,0.02216,0,0,0,0,0,0,0,0.00067,0.00094,0.02231,0,0,0,0,0,0,0,0.00064,0.0009,0.02296,0,0,0,0,0,0,0,0.0007,0.00098,0.02301,0,0,0,0,0,0,0,0.00065,0.0009,0.13525,0,0,0,0,0,0,0,0.02154,0.02227,0.13612,0,0,0,0,0,0,0,0.02214,0.02282,0.13891,0,0,0,0,0,0,0,0.02396,0.02468,0.13315,0,0,0,0,0,0,0,0.02047,0.02123,0.13832,0,0,0,0,0,0,0,0.02333,0.02387,0.13527,0,0,0,0,0,0,0,0.0216,0.02218,0.13556,0,0,0,0,0,0,0,0.0215,0.02203,0.13695,0,0,0,0,0,0,0,0.02256,0.02317,0.13701,0,0,0,0,0,0,0,0.02213,0.02267,0.1147,0,0,0,0,0,0,0,0.00412,0.00476,0.11518,0,0,0,0,0,0,0,0.00413,0.00473,0.1168,0,0,0,0,0,0,0,0.00441,0.00505,0.11343,0,0,0,0,0,0,0,0.00402,0.00469,0.11645,0,0,0,0,0,0,0,0.00409,0.00457,0.11465,0,0,0,0,0,0,0,0.00391,0.00443,0.11486,0,0,0,0,0,0,0,0.00385,0.00432,0.11566,0,0,0,0,0,0,0,0.00409,0.00463,0.11576,0,0,0,0,0,0,0,0.00393,0.00441,0,0,0,0,0,0,0,0,0.00135,0.00136,0,0,0,0,0,0,0,0,0.00136,0.00137,0,0,0,0,0,0,0,0,0.00138,0.0014,0,0,0,0,0,0,0,0,0.00135,0.00137,0,0,0,0,0,0,0,0,0.00138,0.00139,0,0,0,0,0,0,0,0,0.00136,0.00137,0,0,0,0,0,0,0,0,0.00137,0.00138,0,0,0,0,0,0,0,0,0.00137,0.00138,0,0,0,0,0,0,0,0,0.00134,0.00135,0,0,0,0,0,0,0,0,0.04852,0.06207,0,0,0,0,0,0,0,0,0.0413,0.05362,0,0,0,0,0,0,0,0,0.04734,0.06256,0,0,0,0,0,0,0,0,0.05486,0.07214,0,0,0,0,0,0,0,0,0.02108,0.03157,0,0,0,0,0,0,0,0,0.02693,0.03892,0,0,0,0,0,0,0,0,0.01979,0.02991,0,0,0,0,0,0,0,0,0.03099,0.04282,0,0,0,0,0,0,0,0,0.01878,0.02758 +Full size car,PH20E,2050,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00917,0,0,0,0,0,0,0,0,0,0.00995,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00969,0,0,0,0,0,0,0,0,0,0.00895,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00935,0,0,0,0,0,0,0,0,0,0.00917,0,0,0,0,0,0,0,0,0,0.01555,0,0,0,0,0,0,0,0,0,0.01337,0,0,0,0,0,0,0,0,0,0.0152,0,0,0,0,0,0,0,0,0,0.01751,0,0,0,0,0,0,0,0,0,0.00724,0,0,0,0,0,0,0,0,0,0.00902,0,0,0,0,0,0,0,0,0,0.00687,0,0,0,0,0,0,0,0,0,0.01025,0,0,0,0,0,0,0,0,0,0.00655,0,0,0,0,0,0,0,0,0,0.68909,0,0,0,0,0,0,0,0,0,0.6525,0,0,0,0,0,0,0,0,0,0.69245,0,0,0,0,0,0,0,0,0,0.76762,0,0,0,0,0,0,0,0,0,0.54297,0,0,0,0,0,0,0,0,0,0.58222,0,0,0,0,0,0,0,0,0,0.55752,0,0,0,0,0,0,0,0,0,0.60434,0,0,0,0,0,0,0,0,0,0.50184,0,0,0,0,0,0,0,0,0,140.16429,0,0,0,0,0,0,0,0,0,141.26014,0,0,0,0,0,0,0,0,0,143.63545,0,0,0,0,0,0,0,0,0,140.34316,0,0,0,0,0,0,0,0,0,143.31749,0,0,0,0,0,0,0,0,0,141.20514,0,0,0,0,0,0,0,0,0,141.92222,0,0,0,0,0,0,0,0,0,142.29935,0,0,0,0,0,0,0,0,0,139.37818,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02889,0,0,0,0,0,0,0,0,0,0.02777,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.03049,0,0,0,0,0,0,0,0,0,0.02182,0,0,0,0,0,0,0,0,0,0.02467,0,0,0,0,0,0,0,0,0,0.02228,0,0,0,0,0,0,0,0,0,0.02581,0,0,0,0,0,0,0,0,0,0.02176,0.01747,0.0184,0,0,0,0,0,0,0,0.00078,0.01803,0.01886,0,0,0,0,0,0,0,0.00074,0.01968,0.02024,0,0,0,0,0,0,0,0.00077,0.01616,0.01727,0,0,0,0,0,0,0,0.00079,0.01932,0.01993,0,0,0,0,0,0,0,0.00065,0.01744,0.01834,0,0,0,0,0,0,0,0.00067,0.01765,0.01854,0,0,0,0,0,0,0,0.00064,0.01852,0.01927,0,0,0,0,0,0,0,0.0007,0.01858,0.01934,0,0,0,0,0,0,0,0.00065,0.10921,0.1093,0,0,0,0,0,0,0,0.02154,0.11081,0.11055,0,0,0,0,0,0,0,0.02214,0.11557,0.11435,0,0,0,0,0,0,0,0.02396,0.10544,0.10626,0,0,0,0,0,0,0,0.02047,0.11452,0.11351,0,0,0,0,0,0,0,0.02333,0.10914,0.1092,0,0,0,0,0,0,0,0.0216,0.10973,0.1097,0,0,0,0,0,0,0,0.0215,0.11221,0.11168,0,0,0,0,0,0,0,0.02256,0.11237,0.11184,0,0,0,0,0,0,0,0.02213,0.09073,0.09082,0,0,0,0,0,0,0,0.00412,0.09187,0.09165,0,0,0,0,0,0,0,0.00413,0.09532,0.0942,0,0,0,0,0,0,0,0.00441,0.08791,0.08868,0,0,0,0,0,0,0,0.00402,0.09455,0.09362,0,0,0,0,0,0,0,0.00409,0.09059,0.09066,0,0,0,0,0,0,0,0.00391,0.09108,0.09106,0,0,0,0,0,0,0,0.00385,0.09289,0.0924,0,0,0,0,0,0,0,0.00409,0.09308,0.0926,0,0,0,0,0,0,0,0.00393,0,0,0,0,0,0,0,0,0,0.00135,0,0,0,0,0,0,0,0,0,0.00136,0,0,0,0,0,0,0,0,0,0.00138,0,0,0,0,0,0,0,0,0,0.00135,0,0,0,0,0,0,0,0,0,0.00138,0,0,0,0,0,0,0,0,0,0.00136,0,0,0,0,0,0,0,0,0,0.00137,0,0,0,0,0,0,0,0,0,0.00137,0,0,0,0,0,0,0,0,0,0.00134,0,0,0,0,0,0,0,0,0,0.04852,0,0,0,0,0,0,0,0,0,0.0413,0,0,0,0,0,0,0,0,0,0.04734,0,0,0,0,0,0,0,0,0,0.05486,0,0,0,0,0,0,0,0,0,0.02108,0,0,0,0,0,0,0,0,0,0.02693,0,0,0,0,0,0,0,0,0,0.01979,0,0,0,0,0,0,0,0,0,0.03099,0,0,0,0,0,0,0,0,0,0.01878 +Full size car,PH20G,1990,0.05234,0,0,0,0,0,0,0,0,0,0.04638,0,0,0,0,0,0,0,0,0,0.05207,0,0,0,0,0,0,0,0,0,0.05699,0,0,0,0,0,0,0,0,0,0.02997,0,0,0,0,0,0,0,0,0,0.03375,0,0,0,0,0,0,0,0,0,0.02819,0,0,0,0,0,0,0,0,0,0.03785,0,0,0,0,0,0,0,0,0,0.02788,0,0,0,0,0,0,0,0,0,0.04999,0,0,0,0,0,0,0,0,0,0.04275,0,0,0,0,0,0,0,0,0,0.05394,0,0,0,0,0,0,0,0,0,0.05527,0,0,0,0,0,0,0,0,0,0.04547,0,0,0,0,0,0,0,0,0,0.05029,0,0,0,0,0,0,0,0,0,0.04655,0,0,0,0,0,0,0,0,0,0.04539,0,0,0,0,0,0,0,0,0,0.03896,0,0,0,0,0,0,0,0,0,31.80818,0,0,0,0,0,0,0,0,0,28.20931,0,0,0,0,0,0,0,0,0,34.82471,0,0,0,0,0,0,0,0,0,36.07011,0,0,0,0,0,0,0,0,0,29.87856,0,0,0,0,0,0,0,0,0,33.0559,0,0,0,0,0,0,0,0,0,31.12265,0,0,0,0,0,0,0,0,0,29.89031,0,0,0,0,0,0,0,0,0,24.92,0,0,0,0,0,0,0,0,0,322.83197,0,0,0,0,0,0,0,0,0,324.06422,0,0,0,0,0,0,0,0,0,330.10145,0,0,0,0,0,0,0,0,0,322.71745,0,0,0,0,0,0,0,0,0,324.29113,0,0,0,0,0,0,0,0,0,320.96772,0,0,0,0,0,0,0,0,0,320.21977,0,0,0,0,0,0,0,0,0,323.80156,0,0,0,0,0,0,0,0,0,316.75428,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.04215,0,0,0,0,0,0,0,0,0,0.04274,0,0,0,0,0,0,0,0,0,0.042,0,0,0,0,0,0,0,0,0,0.04272,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04213,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.0253,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02535,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.02549,0,0,0,0,0,0,0,0,0,1.93627,0,0,0,0,0,0,0,0,0,1.84332,0,0,0,0,0,0,0,0,0,2.0484,0,0,0,0,0,0,0,0,0,2.15419,0,0,0,0,0,0,0,0,0,2.00274,0,0,0,0,0,0,0,0,0,2.10311,0,0,0,0,0,0,0,0,0,1.9993,0,0,0,0,0,0,0,0,0,2.11211,0,0,0,0,0,0,0,0,0,1.73837,0,0,0,0,0,0,0,0,0,0.09265,0.01358,0.01403,0,0,0,0,0,0,0,0.08338,0.01403,0.01445,0,0,0,0,0,0,0,0.09192,0.01533,0.01568,0,0,0,0,0,0,0,0.09816,0.01252,0.01301,0,0,0,0,0,0,0,0.05623,0.01504,0.0154,0,0,0,0,0,0,0,0.06215,0.01355,0.01398,0,0,0,0,0,0,0,0.05357,0.01372,0.01416,0,0,0,0,0,0,0,0.06922,0.01441,0.01481,0,0,0,0,0,0,0,0.05374,0.01447,0.01489,0,0,0,0,0,0,0,0.28626,0.08871,0.0888,0,0,0,0,0,0,0,0.2661,0.09003,0.09004,0,0,0,0,0,0,0,0.28955,0.09387,0.0937,0,0,0,0,0,0,0,0.29883,0.08555,0.08578,0,0,0,0,0,0,0,0.2067,0.09301,0.09287,0,0,0,0,0,0,0,0.21755,0.08857,0.08864,0,0,0,0,0,0,0,0.19772,0.08911,0.08917,0,0,0,0,0,0,0,0.23511,0.09117,0.09112,0,0,0,0,0,0,0,0.19833,0.09136,0.09133,0,0,0,0,0,0,0,0.23172,0.07186,0.07194,0,0,0,0,0,0,0,0.21309,0.07275,0.07276,0,0,0,0,0,0,0,0.23172,0.07536,0.0752,0,0,0,0,0,0,0,0.24423,0.0696,0.06982,0,0,0,0,0,0,0,0.15883,0.07475,0.07462,0,0,0,0,0,0,0,0.17061,0.07165,0.07173,0,0,0,0,0,0,0,0.15305,0.0721,0.07216,0,0,0,0,0,0,0,0.18503,0.07352,0.07348,0,0,0,0,0,0,0,0.15277,0.07374,0.07372,0,0,0,0,0,0,0,0.01421,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.02307,0,0,0,0,0,0,0,0,0,0.02106,0,0,0,0,0,0,0,0,0,0.01874,0,0,0,0,0,0,0,0,0,0.02065,0,0,0,0,0,0,0,0,0,0.0187,0,0,0,0,0,0,0,0,0,0.01851,0,0,0,0,0,0,0,0,0,0.00858,0,0,0,0,0,0,0,0,0,2.99081,0,0,0,0,0,0,0,0,0,2.67228,0,0,0,0,0,0,0,0,0,3.18204,0,0,0,0,0,0,0,0,0,3.29337,0,0,0,0,0,0,0,0,0,2.95133,0,0,0,0,0,0,0,0,0,3.14197,0,0,0,0,0,0,0,0,0,3.01419,0,0,0,0,0,0,0,0,0,2.97072,0,0,0,0,0,0,0,0,0,2.58386,0,0,0,0,0,0,0,0,0 +Full size car,PH20G,1995,0.0165,0.03036,0,0,0,0,0,0,0,0,0.01569,0.02755,0,0,0,0,0,0,0,0,0.01731,0.03071,0,0,0,0,0,0,0,0,0.01688,0.03238,0,0,0,0,0,0,0,0,0.01327,0.01975,0,0,0,0,0,0,0,0,0.01331,0.02124,0,0,0,0,0,0,0,0,0.01231,0.01849,0,0,0,0,0,0,0,0,0.01436,0.02345,0,0,0,0,0,0,0,0,0.01249,0.01848,0,0,0,0,0,0,0,0,0.02761,0.03203,0,0,0,0,0,0,0,0,0.02564,0.02858,0,0,0,0,0,0,0,0,0.031,0.03546,0,0,0,0,0,0,0,0,0.03195,0.03814,0,0,0,0,0,0,0,0,0.02629,0.02985,0,0,0,0,0,0,0,0,0.02849,0.03306,0,0,0,0,0,0,0,0,0.02605,0.03011,0,0,0,0,0,0,0,0,0.02684,0.03106,0,0,0,0,0,0,0,0,0.0216,0.02426,0,0,0,0,0,0,0,0,11.75219,16.0199,0,0,0,0,0,0,0,0,11.19156,14.67218,0,0,0,0,0,0,0,0,13.44825,17.6587,0,0,0,0,0,0,0,0,14.15705,18.90297,0,0,0,0,0,0,0,0,11.75961,15.32446,0,0,0,0,0,0,0,0,12.73577,16.79242,0,0,0,0,0,0,0,0,12.07704,15.84224,0,0,0,0,0,0,0,0,11.88766,15.96456,0,0,0,0,0,0,0,0,9.31014,12.52862,0,0,0,0,0,0,0,0,264.86785,277.27618,0,0,0,0,0,0,0,0,266.86954,278.87251,0,0,0,0,0,0,0,0,271.51811,283.95373,0,0,0,0,0,0,0,0,264.80367,277.22122,0,0,0,0,0,0,0,0,270.46415,280.86466,0,0,0,0,0,0,0,0,266.36823,277.278,0,0,0,0,0,0,0,0,267.48167,277.55464,0,0,0,0,0,0,0,0,268.62355,279.6898,0,0,0,0,0,0,0,0,263.41372,273.82247,0,0,0,0,0,0,0,0,0.03075,0.03752,0,0,0,0,0,0,0,0,0.03098,0.03776,0,0,0,0,0,0,0,0,0.03147,0.03826,0,0,0,0,0,0,0,0,0.03079,0.03767,0,0,0,0,0,0,0,0,0.03144,0.03825,0,0,0,0,0,0,0,0,0.03122,0.0381,0,0,0,0,0,0,0,0,0.03095,0.03775,0,0,0,0,0,0,0,0,0.03126,0.03808,0,0,0,0,0,0,0,0,0.03079,0.0375,0,0,0,0,0,0,0,0,0.07126,0.05832,0,0,0,0,0,0,0,0,0.0714,0.05844,0,0,0,0,0,0,0,0,0.07151,0.05852,0,0,0,0,0,0,0,0,0.07087,0.05801,0,0,0,0,0,0,0,0,0.07143,0.05846,0,0,0,0,0,0,0,0,0.07105,0.05816,0,0,0,0,0,0,0,0,0.07124,0.05831,0,0,0,0,0,0,0,0,0.07147,0.05849,0,0,0,0,0,0,0,0,0.07159,0.05858,0,0,0,0,0,0,0,0,1.45553,1.75016,0,0,0,0,0,0,0,0,1.41931,1.65598,0,0,0,0,0,0,0,0,1.57006,1.79884,0,0,0,0,0,0,0,0,1.63546,1.96818,0,0,0,0,0,0,0,0,1.52413,1.8242,0,0,0,0,0,0,0,0,1.60165,1.90158,0,0,0,0,0,0,0,0,1.53136,1.82659,0,0,0,0,0,0,0,0,1.62642,1.93557,0,0,0,0,0,0,0,0,1.34107,1.5808,0,0,0,0,0,0,0,0,0.02193,0.04883,0.00763,0.00936,0,0,0,0,0,0,0.02017,0.044,0.00787,0.00963,0,0,0,0,0,0,0.02215,0.04832,0.00856,0.01045,0,0,0,0,0,0,0.02273,0.05165,0.00709,0.0087,0,0,0,0,0,0,0.0149,0.02995,0.00841,0.01027,0,0,0,0,0,0,0.0158,0.03307,0.00763,0.00934,0,0,0,0,0,0,0.01411,0.02863,0.00771,0.00944,0,0,0,0,0,0,0.01738,0.03667,0.00807,0.00988,0,0,0,0,0,0,0.01429,0.02869,0.00808,0.00991,0,0,0,0,0,0,0.10291,0.16974,0.05946,0.06666,0,0,0,0,0,0,0.1,0.15976,0.06025,0.06755,0,0,0,0,0,0,0.10729,0.17216,0.06252,0.07016,0,0,0,0,0,0,0.10332,0.17524,0.05767,0.06456,0,0,0,0,0,0,0.09051,0.1304,0.06202,0.06958,0,0,0,0,0,0,0.0898,0.13474,0.05946,0.06661,0,0,0,0,0,0,0.08602,0.12491,0.05972,0.06694,0,0,0,0,0,0,0.09472,0.1444,0.06093,0.06833,0,0,0,0,0,0,0.08729,0.12574,0.06096,0.06842,0,0,0,0,0,0,0.06802,0.12756,0.04494,0.05156,0,0,0,0,0,0,0.06463,0.11791,0.04535,0.05207,0,0,0,0,0,0,0.06889,0.12671,0.04651,0.05354,0,0,0,0,0,0,0.06982,0.13386,0.04395,0.05029,0,0,0,0,0,0,0.05446,0.09018,0.04624,0.05319,0,0,0,0,0,0,0.0561,0.09627,0.04487,0.05145,0,0,0,0,0,0,0.05273,0.08755,0.04506,0.0517,0,0,0,0,0,0,0.05929,0.10366,0.0457,0.05251,0,0,0,0,0,0,0.05299,0.08743,0.04577,0.05264,0,0,0,0,0,0,0.01163,0.00589,0,0,0,0,0,0,0,0,0.01333,0.00598,0,0,0,0,0,0,0,0,0.01899,0.00621,0,0,0,0,0,0,0,0,0.01729,0.01037,0,0,0,0,0,0,0,0,0.01562,0.00611,0,0,0,0,0,0,0,0,0.01714,0.00606,0,0,0,0,0,0,0,0,0.01561,0.00826,0,0,0,0,0,0,0,0,0.01532,0.00943,0,0,0,0,0,0,0,0,0.0071,0.0034,0,0,0,0,0,0,0,0,1.26908,1.80891,0,0,0,0,0,0,0,0,1.22078,1.70483,0,0,0,0,0,0,0,0,1.40886,1.97805,0,0,0,0,0,0,0,0,1.46067,2.0956,0,0,0,0,0,0,0,0,1.31199,1.90432,0,0,0,0,0,0,0,0,1.36271,1.98873,0,0,0,0,0,0,0,0,1.30028,1.90349,0,0,0,0,0,0,0,0,1.34523,1.95012,0,0,0,0,0,0,0,0,1.11431,1.61912,0,0,0,0,0,0,0,0 +Full size car,PH20G,2000,0.01163,0.0136,0.02336,0,0,0,0,0,0,0,0.0115,0.01319,0.02153,0,0,0,0,0,0,0,0.01258,0.01449,0.02395,0,0,0,0,0,0,0,0.01145,0.01362,0.02454,0,0,0,0,0,0,0,0.01093,0.01186,0.0164,0,0,0,0,0,0,0,0.01046,0.01158,0.01714,0,0,0,0,0,0,0,0.01009,0.01097,0.01528,0,0,0,0,0,0,0,0.01112,0.01241,0.0188,0,0,0,0,0,0,0,0.01034,0.01121,0.01539,0,0,0,0,0,0,0,0.0126,0.01347,0.02169,0,0,0,0,0,0,0,0.01181,0.01291,0.01951,0,0,0,0,0,0,0,0.01467,0.01575,0.02489,0,0,0,0,0,0,0,0.01531,0.01684,0.02582,0,0,0,0,0,0,0,0.01115,0.01282,0.02036,0,0,0,0,0,0,0,0.01235,0.014,0.02212,0,0,0,0,0,0,0,0.011,0.01289,0.01966,0,0,0,0,0,0,0,0.01203,0.01366,0.02063,0,0,0,0,0,0,0,0.00941,0.01115,0.01613,0,0,0,0,0,0,0,5.58152,7.49857,11.41774,0,0,0,0,0,0,0,5.34125,7.25349,10.65137,0,0,0,0,0,0,0,6.47322,8.67113,13.0428,0,0,0,0,0,0,0,6.90132,9.28455,13.58148,0,0,0,0,0,0,0,4.95711,7.12201,10.83094,0,0,0,0,0,0,0,5.49337,7.76666,11.71701,0,0,0,0,0,0,0,5.04346,7.34281,10.79369,0,0,0,0,0,0,0,5.34894,7.59489,11.14026,0,0,0,0,0,0,0,4.09425,6.10741,8.78215,0,0,0,0,0,0,0,263.82942,266.03289,273.15083,0,0,0,0,0,0,0,266.15854,268.20983,274.85707,0,0,0,0,0,0,0,270.70359,272.85526,279.79604,0,0,0,0,0,0,0,263.92913,266.1455,273.29976,0,0,0,0,0,0,0,270.93129,272.4025,277.29011,0,0,0,0,0,0,0,266.45023,268.14264,273.64955,0,0,0,0,0,0,0,268.12463,269.53389,274.2022,0,0,0,0,0,0,0,268.58701,270.30826,275.94933,0,0,0,0,0,0,0,263.42394,264.95115,270.02461,0,0,0,0,0,0,0,0.01711,0.01903,0.02899,0,0,0,0,0,0,0,0.01718,0.0191,0.0291,0,0,0,0,0,0,0,0.0173,0.01921,0.0293,0,0,0,0,0,0,0,0.01727,0.01924,0.02926,0,0,0,0,0,0,0,0.01732,0.01923,0.02934,0,0,0,0,0,0,0,0.01738,0.01934,0.02944,0,0,0,0,0,0,0,0.01721,0.01914,0.02915,0,0,0,0,0,0,0,0.0173,0.01923,0.0293,0,0,0,0,0,0,0,0.01703,0.01892,0.02884,0,0,0,0,0,0,0,0.0416,0.05441,0.05775,0,0,0,0,0,0,0,0.04169,0.05454,0.05787,0,0,0,0,0,0,0,0.0418,0.05468,0.05801,0,0,0,0,0,0,0,0.0413,0.05403,0.05738,0,0,0,0,0,0,0,0.04174,0.0546,0.05793,0,0,0,0,0,0,0,0.04145,0.05422,0.05756,0,0,0,0,0,0,0,0.04158,0.0544,0.05773,0,0,0,0,0,0,0,0.04174,0.05461,0.05794,0,0,0,0,0,0,0,0.04183,0.05472,0.05806,0,0,0,0,0,0,0,0.70088,0.93765,1.3994,0,0,0,0,0,0,0,0.68945,0.93135,1.36546,0,0,0,0,0,0,0,0.81323,1.03013,1.51272,0,0,0,0,0,0,0,0.84158,1.11081,1.58258,0,0,0,0,0,0,0,0.77132,1.02245,1.5165,0,0,0,0,0,0,0,0.8101,1.05416,1.55442,0,0,0,0,0,0,0,0.78292,1.04291,1.4692,0,0,0,0,0,0,0,0.81922,1.0858,1.5459,0,0,0,0,0,0,0,0.67269,0.91113,1.27722,0,0,0,0,0,0,0,0.00663,0.01283,0.02981,0.00241,0.00524,0,0,0,0,0,0.00584,0.01166,0.0265,0.00248,0.00539,0,0,0,0,0,0.0064,0.01277,0.02917,0.00267,0.00582,0,0,0,0,0,0.00696,0.01322,0.03166,0.00226,0.00489,0,0,0,0,0,0.00353,0.0082,0.01697,0.00263,0.00572,0,0,0,0,0,0.00407,0.0088,0.01919,0.00242,0.00523,0,0,0,0,0,0.00344,0.00783,0.01632,0.00244,0.00528,0,0,0,0,0,0.00463,0.00983,0.02153,0.00254,0.00551,0,0,0,0,0,0.00348,0.00801,0.01636,0.00254,0.00553,0,0,0,0,0,0.03416,0.07042,0.10854,0.02783,0.04325,0,0,0,0,0,0.03311,0.06886,0.10206,0.02836,0.04392,0,0,0,0,0,0.03622,0.07417,0.11106,0.02987,0.04586,0,0,0,0,0,0.03397,0.06964,0.11119,0.02669,0.04172,0,0,0,0,0,0.0295,0.06353,0.08294,0.02955,0.04543,0,0,0,0,0,0.02893,0.06195,0.08501,0.02788,0.04324,0,0,0,0,0,0.02747,0.05985,0.07852,0.02802,0.04347,0,0,0,0,0,0.03105,0.06577,0.09177,0.02881,0.04449,0,0,0,0,0,0.02808,0.06126,0.07957,0.02879,0.04453,0,0,0,0,0,0.01528,0.0386,0.07233,0.01585,0.03003,0,0,0,0,0,0.01384,0.0364,0.06578,0.01601,0.03032,0,0,0,0,0,0.01525,0.03889,0.07154,0.01648,0.03118,0,0,0,0,0,0.01596,0.03937,0.07614,0.01545,0.02928,0,0,0,0,0,0.00955,0.0299,0.04708,0.01637,0.03098,0,0,0,0,0,0.0104,0.03078,0.05119,0.01582,0.02995,0,0,0,0,0,0.00913,0.0289,0.04543,0.01589,0.03011,0,0,0,0,0,0.0116,0.03299,0.05601,0.01615,0.03058,0,0,0,0,0,0.00919,0.02928,0.04549,0.01618,0.03066,0,0,0,0,0,0.01157,0.00565,0.00523,0,0,0,0,0,0,0,0.01329,0.00575,0.00526,0,0,0,0,0,0,0,0.01894,0.00597,0.00535,0,0,0,0,0,0,0,0.01723,0.00998,0.00523,0,0,0,0,0,0,0,0.01565,0.00593,0.00531,0,0,0,0,0,0,0,0.01714,0.00586,0.00524,0,0,0,0,0,0,0,0.01565,0.00802,0.00525,0,0,0,0,0,0,0,0.01531,0.00912,0.00473,0,0,0,0,0,0,0,0.00709,0.00328,0.00242,0,0,0,0,0,0,0,0.50898,0.74471,1.41204,0,0,0,0,0,0,0,0.48004,0.71717,1.32746,0,0,0,0,0,0,0,0.56921,0.84518,1.57252,0,0,0,0,0,0,0,0.60845,0.90815,1.64245,0,0,0,0,0,0,0,0.43443,0.70474,1.43316,0,0,0,0,0,0,0,0.47743,0.76096,1.49931,0,0,0,0,0,0,0,0.42849,0.70198,1.39917,0,0,0,0,0,0,0,0.48845,0.7673,1.4766,0,0,0,0,0,0,0,0.37275,0.61959,1.21534,0,0,0,0,0,0,0 +Full size car,PH20G,2005,0.00961,0.01011,0.01112,0.01716,0,0,0,0,0,0,0.0098,0.01019,0.01105,0.01626,0,0,0,0,0,0,0.01079,0.01078,0.01153,0.01785,0,0,0,0,0,0,0.00933,0.00974,0.01084,0.01761,0,0,0,0,0,0,0.01006,0.01032,0.01087,0.01365,0,0,0,0,0,0,0.00942,0.00959,0.01016,0.01369,0,0,0,0,0,0,0.00924,0.00945,0.00995,0.01257,0,0,0,0,0,0,0.00987,0.01008,0.01072,0.01478,0,0,0,0,0,0,0.00943,0.00959,0.01,0.01271,0,0,0,0,0,0,0.01331,0.00973,0.00961,0.01427,0,0,0,0,0,0,0.01201,0.00868,0.00892,0.013,0,0,0,0,0,0,0.01359,0.00974,0.00998,0.01554,0,0,0,0,0,0,0.01455,0.01196,0.01122,0.01701,0,0,0,0,0,0,0.00781,0.00653,0.00732,0.01181,0,0,0,0,0,0,0.00929,0.00749,0.00815,0.01311,0,0,0,0,0,0,0.00753,0.00696,0.00726,0.01148,0,0,0,0,0,0,0.01008,0.00835,0.00806,0.01293,0,0,0,0,0,0,0.00607,0.00517,0.00565,0.01023,0,0,0,0,0,0,2.56189,3.44401,4.39723,7.25866,0,0,0,0,0,0,2.43087,3.31855,4.37719,6.94997,0,0,0,0,0,0,2.75777,4.04203,5.38411,8.28865,0,0,0,0,0,0,2.98554,4.46455,5.34549,8.8933,0,0,0,0,0,0,2.20464,3.28616,4.51936,7.06469,0,0,0,0,0,0,2.37725,3.57961,4.87747,7.57293,0,0,0,0,0,0,2.26058,3.61337,4.55824,7.12542,0,0,0,0,0,0,2.44458,3.91111,4.66729,7.38321,0,0,0,0,0,0,1.7358,3.02818,4.01304,6.1045,0,0,0,0,0,0,268.53009,269.77174,272.84189,277.53483,0,0,0,0,0,0,271.03096,272.18032,275.041,279.27593,0,0,0,0,0,0,275.43629,276.64934,279.62723,284.14631,0,0,0,0,0,0,268.71783,269.94931,273.06382,277.83806,0,0,0,0,0,0,276.41634,277.21066,279.2914,281.82362,0,0,0,0,0,0,271.7445,272.67452,275.04355,278.19758,0,0,0,0,0,0,273.78568,274.53541,276.54501,278.88529,0,0,0,0,0,0,273.833,274.77943,277.1985,280.45976,0,0,0,0,0,0,268.74377,269.59198,271.73521,274.39692,0,0,0,0,0,0,0.005,0.00539,0.00634,0.01545,0,0,0,0,0,0,0.00501,0.0054,0.00635,0.01548,0,0,0,0,0,0,0.00502,0.00541,0.00635,0.01552,0,0,0,0,0,0,0.00507,0.00547,0.00644,0.01566,0,0,0,0,0,0,0.00503,0.00542,0.00636,0.01556,0,0,0,0,0,0,0.00508,0.00548,0.00644,0.0157,0,0,0,0,0,0,0.00503,0.00542,0.00637,0.01553,0,0,0,0,0,0,0.00504,0.00543,0.00638,0.01558,0,0,0,0,0,0,0.00496,0.00534,0.00627,0.01532,0,0,0,0,0,0,0.01683,0.01915,0.02358,0.03355,0,0,0,0,0,0,0.01686,0.0192,0.02363,0.03362,0,0,0,0,0,0,0.01691,0.01925,0.02369,0.03371,0,0,0,0,0,0,0.01671,0.01902,0.02341,0.03332,0,0,0,0,0,0,0.01688,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01677,0.01909,0.02349,0.03344,0,0,0,0,0,0,0.01682,0.01915,0.02357,0.03354,0,0,0,0,0,0,0.01689,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01692,0.01926,0.02371,0.03373,0,0,0,0,0,0,0.18697,0.27436,0.36213,0.66982,0,0,0,0,0,0,0.18444,0.26756,0.3639,0.66028,0,0,0,0,0,0,0.21104,0.30046,0.40077,0.74661,0,0,0,0,0,0,0.20997,0.35044,0.42371,0.79513,0,0,0,0,0,0,0.18793,0.28686,0.38841,0.73738,0,0,0,0,0,0,0.2002,0.29995,0.40213,0.76222,0,0,0,0,0,0,0.1895,0.3077,0.38487,0.7194,0,0,0,0,0,0,0.20606,0.33031,0.39782,0.76237,0,0,0,0,0,0,0.14841,0.21954,0.29384,0.64909,0,0,0,0,0,0,0.00237,0.00338,0.00538,0.01564,0.00051,0.00166,0,0,0,0,0.00219,0.00303,0.00485,0.01389,0.00052,0.0017,0,0,0,0,0.00257,0.00283,0.00452,0.01511,0.00053,0.0018,0,0,0,0,0.00265,0.00351,0.00559,0.01665,0.0005,0.00157,0,0,0,0,0.00153,0.00214,0.00354,0.00886,0.00052,0.00178,0,0,0,0,0.00174,0.00221,0.00362,0.01005,0.00051,0.00166,0,0,0,0,0.00146,0.00199,0.0033,0.00845,0.00051,0.00167,0,0,0,0,0.00188,0.00241,0.00392,0.0112,0.00052,0.00173,0,0,0,0,0.00132,0.00177,0.00296,0.00832,0.00052,0.00174,0,0,0,0,0.02497,0.02712,0.04546,0.06926,0.01608,0.02293,0,0,0,0,0.02526,0.02701,0.04533,0.0663,0.01651,0.0234,0,0,0,0,0.02791,0.0283,0.04751,0.07212,0.01774,0.02478,0,0,0,0,0.02454,0.02636,0.04401,0.06982,0.01518,0.02189,0,0,0,0,0.02522,0.02646,0.04474,0.05722,0.01749,0.02449,0,0,0,0,0.02392,0.02483,0.04186,0.05688,0.01614,0.02296,0,0,0,0,0.02325,0.02433,0.04119,0.05321,0.01624,0.02309,0,0,0,0,0.02512,0.0262,0.04413,0.06109,0.01688,0.02381,0,0,0,0,0.02353,0.02445,0.04158,0.05409,0.01685,0.0238,0,0,0,0,0.00715,0.00905,0.01603,0.03713,0.00504,0.01134,0,0,0,0,0.00689,0.00844,0.0151,0.03369,0.00511,0.01145,0,0,0,0,0.0079,0.00824,0.01481,0.03662,0.00532,0.0118,0,0,0,0,0.00762,0.00923,0.01622,0.03909,0.00486,0.01103,0,0,0,0,0.00576,0.00686,0.01278,0.02387,0.00527,0.01171,0,0,0,0,0.00597,0.00678,0.01253,0.02585,0.00502,0.0113,0,0,0,0,0.0054,0.00636,0.0119,0.02258,0.00506,0.01136,0,0,0,0,0.00635,0.00731,0.01336,0.02841,0.00517,0.01156,0,0,0,0,0.00517,0.00598,0.01137,0.02248,0.00519,0.01159,0,0,0,0,0.01178,0.00573,0.00522,0.00177,0,0,0,0,0,0,0.01353,0.00584,0.00526,0.00178,0,0,0,0,0,0,0.01928,0.00605,0.00535,0.00181,0,0,0,0,0,0,0.01755,0.01012,0.00523,0.00177,0,0,0,0,0,0,0.01596,0.00603,0.00535,0.0018,0,0,0,0,0,0,0.01748,0.00596,0.00526,0.00177,0,0,0,0,0,0,0.01598,0.00817,0.00529,0.00178,0,0,0,0,0,0,0.0156,0.00927,0.00474,0.00176,0,0,0,0,0,0,0.00723,0.00334,0.00244,0.00162,0,0,0,0,0,0,0.2766,0.30243,0.41792,0.92309,0,0,0,0,0,0,0.24864,0.27255,0.38678,0.86919,0,0,0,0,0,0,0.28098,0.30263,0.42929,0.99116,0,0,0,0,0,0,0.30236,0.36524,0.47798,1.0691,0,0,0,0,0,0,0.15872,0.20223,0.31737,0.85781,0,0,0,0,0,0,0.18907,0.23023,0.35097,0.91003,0,0,0,0,0,0,0.15081,0.20965,0.31026,0.83716,0,0,0,0,0,0,0.21459,0.26882,0.37097,0.92755,0,0,0,0,0,0,0.13014,0.17889,0.27767,0.77233,0,0,0,0,0,0 +Full size car,PH20G,2010,0,0.0093,0.0098,0.01064,0.01401,0,0,0,0,0,0,0.0095,0.00992,0.01068,0.01359,0,0,0,0,0,0,0.01015,0.01052,0.01156,0.01475,0,0,0,0,0,0,0.00888,0.00941,0.01036,0.01409,0,0,0,0,0,0,0.00991,0.01021,0.01066,0.01233,0,0,0,0,0,0,0.00915,0.00945,0.01004,0.01201,0,0,0,0,0,0,0.00909,0.00936,0.00976,0.01128,0,0,0,0,0,0,0.00958,0.0099,0.01055,0.01279,0,0,0,0,0,0,0.00929,0.0095,0.00997,0.01142,0,0,0,0,0,0,0.01099,0.00916,0.00791,0.01061,0,0,0,0,0,0,0.00952,0.00833,0.00723,0.00974,0,0,0,0,0,0,0.01039,0.00949,0.00816,0.01124,0,0,0,0,0,0,0.01309,0.01096,0.00944,0.01276,0,0,0,0,0,0,0.00655,0.00708,0.00626,0.00853,0,0,0,0,0,0,0.0073,0.0077,0.0068,0.00939,0,0,0,0,0,0,0.00687,0.00703,0.00623,0.00841,0,0,0,0,0,0,0.00864,0.00766,0.00696,0.00948,0,0,0,0,0,0,0.00551,0.00553,0.00592,0.0078,0,0,0,0,0,0,1.97073,2.9996,3.99676,5.57558,0,0,0,0,0,0,1.84867,2.94603,3.90923,5.42368,0,0,0,0,0,0,2.21116,3.56577,4.48536,6.36968,0,0,0,0,0,0,2.39073,3.53259,4.86455,6.87851,0,0,0,0,0,0,1.56944,2.86946,3.97802,5.52424,0,0,0,0,0,0,1.75127,3.11691,4.19997,5.89748,0,0,0,0,0,0,1.71436,2.90465,4.06406,5.62391,0,0,0,0,0,0,1.99561,3.04557,4.1471,5.77185,0,0,0,0,0,0,1.50385,2.60725,3.54179,4.84749,0,0,0,0,0,0,264.84022,266.74676,269.98586,276.3985,0,0,0,0,0,0,267.34861,269.10776,272.11305,278.12461,0,0,0,0,0,0,271.69836,273.53307,276.66628,282.93107,0,0,0,0,0,0,265.00277,266.92886,270.22187,276.7455,0,0,0,0,0,0,272.79537,274.00919,276.14501,280.65173,0,0,0,0,0,0,268.14019,269.55428,272.01477,277.07635,0,0,0,0,0,0,270.19876,271.36154,273.42146,277.78448,0,0,0,0,0,0,270.18699,271.63715,274.1499,279.3073,0,0,0,0,0,0,265.20618,266.48489,268.6884,273.254,0,0,0,0,0,0,0.00481,0.00545,0.00651,0.00997,0,0,0,0,0,0,0.00482,0.00546,0.00652,0.00998,0,0,0,0,0,0,0.00483,0.00547,0.00652,0.00997,0,0,0,0,0,0,0.00488,0.00553,0.00662,0.01014,0,0,0,0,0,0,0.00485,0.00548,0.00654,0.01,0,0,0,0,0,0,0.00489,0.00554,0.00662,0.01014,0,0,0,0,0,0,0.00484,0.00548,0.00654,0.01002,0,0,0,0,0,0,0.00485,0.00549,0.00655,0.01003,0,0,0,0,0,0,0.00477,0.0054,0.00645,0.00986,0,0,0,0,0,0,0.01183,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01185,0.01387,0.01774,0.02149,0,0,0,0,0,0,0.01188,0.01391,0.01779,0.02155,0,0,0,0,0,0,0.01174,0.01374,0.01758,0.0213,0,0,0,0,0,0,0.01187,0.01389,0.01776,0.02152,0,0,0,0,0,0,0.01178,0.01379,0.01764,0.02137,0,0,0,0,0,0,0.01182,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01187,0.01389,0.01777,0.02152,0,0,0,0,0,0,0.01189,0.01392,0.0178,0.02157,0,0,0,0,0,0,0.07558,0.12415,0.13212,0.29714,0,0,0,0,0,0,0.07207,0.12364,0.13048,0.29454,0,0,0,0,0,0,0.07516,0.13564,0.14078,0.33224,0,0,0,0,0,0,0.08707,0.14538,0.15223,0.359,0,0,0,0,0,0,0.06745,0.12764,0.13141,0.3214,0,0,0,0,0,0,0.07145,0.13407,0.13845,0.33545,0,0,0,0,0,0,0.07278,0.12738,0.13202,0.31696,0,0,0,0,0,0,0.08168,0.13359,0.14465,0.33859,0,0,0,0,0,0,0.05499,0.0971,0.1282,0.29226,0,0,0,0,0,0,0.00138,0.00214,0.00367,0.00911,0.00048,0.00073,0,0,0,0,0.00129,0.00199,0.00345,0.00829,0.00049,0.00074,0,0,0,0,0.00117,0.0018,0.00357,0.00879,0.0005,0.00077,0,0,0,0,0.00142,0.00222,0.00385,0.00965,0.00047,0.00071,0,0,0,0,0.00112,0.00171,0.00286,0.00601,0.00049,0.00076,0,0,0,0,0.0011,0.00167,0.00297,0.00651,0.00048,0.00073,0,0,0,0,0.00106,0.0016,0.00269,0.00564,0.00048,0.00073,0,0,0,0,0.00112,0.00172,0.00309,0.00701,0.00049,0.00075,0,0,0,0,0.00093,0.00141,0.0026,0.00548,0.00049,0.00075,0,0,0,0,0.02294,0.0247,0.04209,0.05521,0.01585,0.0175,0,0,0,0,0.02338,0.02497,0.04258,0.05427,0.01628,0.01793,0,0,0,0,0.02485,0.02626,0.04585,0.05849,0.01752,0.01919,0,0,0,0,0.02196,0.0238,0.04058,0.05464,0.01495,0.01657,0,0,0,0,0.02436,0.02562,0.04338,0.05111,0.01726,0.01893,0,0,0,0,0.02253,0.02378,0.04062,0.04925,0.01592,0.01755,0,0,0,0,0.0224,0.02356,0.03996,0.04719,0.01601,0.01766,0,0,0,0,0.02352,0.02482,0.04254,0.05207,0.01665,0.01831,0,0,0,0,0.02274,0.02375,0.04095,0.04802,0.01661,0.01829,0,0,0,0,0.00535,0.00691,0.01305,0.02469,0.00483,0.00634,0,0,0,0,0.00523,0.00663,0.01266,0.02304,0.0049,0.00642,0,0,0,0,0.0052,0.00644,0.01334,0.02456,0.00511,0.00665,0,0,0,0,0.00534,0.00697,0.01319,0.02566,0.00465,0.00613,0,0,0,0,0.005,0.00612,0.01158,0.01845,0.00506,0.0066,0,0,0,0,0.00474,0.00585,0.01143,0.0191,0.00482,0.00632,0,0,0,0,0.00464,0.00567,0.01082,0.01725,0.00485,0.00636,0,0,0,0,0.00493,0.00608,0.01195,0.02042,0.00496,0.00649,0,0,0,0,0.00447,0.00536,0.01081,0.01711,0.00498,0.00652,0,0,0,0,0.00563,0.00511,0.00172,0.00176,0,0,0,0,0,0,0.00574,0.00515,0.00174,0.00177,0,0,0,0,0,0,0.00595,0.00523,0.00176,0.0018,0,0,0,0,0,0,0.00994,0.00511,0.00172,0.00177,0,0,0,0,0,0,0.00594,0.00524,0.00176,0.00179,0,0,0,0,0,0,0.00586,0.00516,0.00174,0.00177,0,0,0,0,0,0,0.00804,0.00519,0.00174,0.00177,0,0,0,0,0,0,0.00911,0.00465,0.00172,0.00176,0,0,0,0,0,0,0.00328,0.00239,0.00158,0.00161,0,0,0,0,0,0,0.12838,0.17948,0.26246,0.60914,0,0,0,0,0,0,0.11209,0.16209,0.24166,0.57678,0,0,0,0,0,0,0.12359,0.18362,0.26896,0.64179,0,0,0,0,0,0,0.15259,0.21107,0.30682,0.70217,0,0,0,0,0,0,0.07948,0.13589,0.21992,0.55876,0,0,0,0,0,0,0.08788,0.14713,0.23308,0.58802,0,0,0,0,0,0,0.08123,0.13296,0.21602,0.54686,0,0,0,0,0,0,0.1056,0.15667,0.24738,0.60628,0,0,0,0,0,0,0.07355,0.12026,0.21111,0.52323,0,0,0,0,0 +Full size car,PH20G,2015,0,0,0.00916,0.00953,0.01026,0.0122,0,0,0,0,0,0,0.00939,0.00974,0.01039,0.0121,0,0,0,0,0,0,0.01006,0.01053,0.01122,0.01304,0,0,0,0,0,0,0.00871,0.00912,0.00991,0.01203,0,0,0,0,0,0,0.00987,0.0101,0.01056,0.01165,0,0,0,0,0,0,0.00911,0.0094,0.0099,0.01114,0,0,0,0,0,0,0.00906,0.00927,0.00968,0.01066,0,0,0,0,0,0,0.00951,0.00982,0.01037,0.01172,0,0,0,0,0,0,0.00926,0.0095,0.0099,0.01082,0,0,0,0,0,0,0.00842,0.00639,0.00646,0.00802,0,0,0,0,0,0,0.00771,0.00592,0.0061,0.00752,0,0,0,0,0,0,0.00805,0.0066,0.00682,0.0085,0,0,0,0,0,0,0.00906,0.00749,0.00771,0.00962,0,0,0,0,0,0,0.00582,0.00521,0.00576,0.00702,0,0,0,0,0,0,0.00631,0.00564,0.00617,0.00757,0,0,0,0,0,0,0.00583,0.00519,0.00578,0.00701,0,0,0,0,0,0,0.00659,0.00576,0.00614,0.00755,0,0,0,0,0,0,0.00484,0.00501,0.00546,0.00658,0,0,0,0,0,0,1.44608,2.53582,3.44899,4.41866,0,0,0,0,0,0,1.42113,2.51021,3.44592,4.3867,0,0,0,0,0,0,1.60905,2.80456,3.94083,5.06894,0,0,0,0,0,0,1.58393,3.01706,4.25105,5.45608,0,0,0,0,0,0,1.28449,2.61505,3.7407,4.69835,0,0,0,0,0,0,1.38434,2.71804,3.89471,4.9336,0,0,0,0,0,0,1.31567,2.68405,3.83338,4.81653,0,0,0,0,0,0,1.39937,2.70036,3.78777,4.79333,0,0,0,0,0,0,1.22789,2.38763,3.32131,4.15837,0,0,0,0,0,0,237.00493,238.76722,240.57284,248.35179,0,0,0,0,0,0,239.19553,240.80194,242.39695,249.87567,0,0,0,0,0,0,243.10581,244.78879,246.47832,254.19338,0,0,0,0,0,0,237.1748,238.96495,240.81852,248.68619,0,0,0,0,0,0,243.87698,244.91022,245.73835,252.0548,0,0,0,0,0,0,239.79384,241.04253,242.16734,248.88889,0,0,0,0,0,0,241.54929,242.53425,243.30808,249.48944,0,0,0,0,0,0,241.62742,242.90942,244.07131,250.8893,0,0,0,0,0,0,237.09998,238.19666,239.1075,245.41233,0,0,0,0,0,0,0.0031,0.00349,0.00402,0.00566,0,0,0,0,0,0,0.00311,0.00351,0.00404,0.00567,0,0,0,0,0,0,0.00314,0.00354,0.00406,0.00568,0,0,0,0,0,0,0.00312,0.00352,0.00406,0.00573,0,0,0,0,0,0,0.00315,0.00354,0.00407,0.0057,0,0,0,0,0,0,0.00314,0.00355,0.00409,0.00575,0,0,0,0,0,0,0.00311,0.00351,0.00405,0.00569,0,0,0,0,0,0,0.00314,0.00353,0.00407,0.0057,0,0,0,0,0,0,0.00309,0.00348,0.004,0.00561,0,0,0,0,0,0,0.01183,0.01371,0.0177,0.01802,0,0,0,0,0,0,0.01185,0.01374,0.01774,0.01806,0,0,0,0,0,0,0.01188,0.01377,0.01779,0.01811,0,0,0,0,0,0,0.01174,0.01361,0.01758,0.01789,0,0,0,0,0,0,0.01187,0.01375,0.01776,0.01808,0,0,0,0,0,0,0.01178,0.01366,0.01764,0.01796,0,0,0,0,0,0,0.01182,0.0137,0.0177,0.01801,0,0,0,0,0,0,0.01187,0.01375,0.01777,0.01808,0,0,0,0,0,0,0.01189,0.01378,0.0178,0.01812,0,0,0,0,0,0,0.05876,0.07715,0.11363,0.16294,0,0,0,0,0,0,0.05807,0.07567,0.11192,0.1609,0,0,0,0,0,0,0.05841,0.08181,0.12039,0.17601,0,0,0,0,0,0,0.06184,0.08872,0.13062,0.19151,0,0,0,0,0,0,0.05157,0.07406,0.11121,0.16478,0,0,0,0,0,0,0.05499,0.0788,0.11776,0.17401,0,0,0,0,0,0,0.05248,0.07443,0.11197,0.16493,0,0,0,0,0,0,0.05706,0.08297,0.12323,0.17994,0,0,0,0,0,0,0.04216,0.07291,0.10882,0.15783,0,0,0,0,0,0,0.00123,0.00185,0.00329,0.0062,0.00044,0.00051,0,0,0,0,0.00117,0.00177,0.00315,0.00583,0.00044,0.00051,0,0,0,0,0.00107,0.00181,0.00322,0.00602,0.00045,0.00052,0,0,0,0,0.00125,0.00191,0.00339,0.00647,0.00043,0.00049,0,0,0,0,0.00107,0.00155,0.00275,0.0048,0.00045,0.00052,0,0,0,0,0.00104,0.00159,0.00282,0.005,0.00044,0.0005,0,0,0,0,0.00101,0.00146,0.0026,0.00451,0.00044,0.00051,0,0,0,0,0.00104,0.00163,0.00289,0.00521,0.00045,0.00051,0,0,0,0,0.00089,0.0014,0.00251,0.00435,0.00045,0.00052,0,0,0,0,0.02255,0.02394,0.04096,0.04842,0.01551,0.01606,0,0,0,0,0.02308,0.02441,0.04168,0.04854,0.01594,0.01649,0,0,0,0,0.02459,0.02627,0.04483,0.05202,0.01718,0.01773,0,0,0,0,0.02149,0.02298,0.03927,0.04716,0.01462,0.01516,0,0,0,0,0.02422,0.02524,0.04298,0.04822,0.01693,0.01747,0,0,0,0,0.02238,0.02357,0.04012,0.04571,0.01559,0.01612,0,0,0,0,0.02227,0.02322,0.03961,0.04449,0.01567,0.01622,0,0,0,0,0.02331,0.02457,0.04191,0.04783,0.01631,0.01686,0,0,0,0,0.02264,0.02373,0.04061,0.04534,0.01627,0.01683,0,0,0,0,0.00501,0.00624,0.01205,0.01868,0.00451,0.00502,0,0,0,0,0.00496,0.00614,0.01186,0.01797,0.00459,0.00509,0,0,0,0,0.00497,0.00645,0.01243,0.01883,0.00481,0.00531,0,0,0,0,0.00493,0.00625,0.01203,0.01904,0.00434,0.00484,0,0,0,0,0.00488,0.00578,0.01122,0.0159,0.00476,0.00526,0,0,0,0,0.00461,0.00566,0.01098,0.01596,0.00451,0.00501,0,0,0,0,0.00454,0.00538,0.0105,0.01485,0.00454,0.00504,0,0,0,0,0.00475,0.00587,0.01139,0.01667,0.00465,0.00516,0,0,0,0,0.00438,0.00534,0.01051,0.01473,0.00466,0.00517,0,0,0,0,0.00454,0.00152,0.00153,0.00158,0,0,0,0,0,0,0.00458,0.00154,0.00155,0.00159,0,0,0,0,0,0,0.00465,0.00156,0.00157,0.00162,0,0,0,0,0,0,0.00454,0.00152,0.00154,0.00159,0,0,0,0,0,0,0.00467,0.00156,0.00157,0.00161,0,0,0,0,0,0,0.00459,0.00154,0.00154,0.00159,0,0,0,0,0,0,0.00462,0.00155,0.00155,0.00159,0,0,0,0,0,0,0.00413,0.00153,0.00153,0.00158,0,0,0,0,0,0,0.00212,0.0014,0.00141,0.00145,0,0,0,0,0,0,0.09369,0.13417,0.2166,0.41691,0,0,0,0,0,0,0.08588,0.1247,0.20571,0.40107,0,0,0,0,0,0,0.09134,0.13707,0.22618,0.43659,0,0,0,0,0,0,0.10209,0.1544,0.2517,0.47458,0,0,0,0,0,0,0.0671,0.11327,0.20299,0.4045,0,0,0,0,0,0,0.07235,0.12016,0.2121,0.41853,0,0,0,0,0,0,0.0666,0.11171,0.20056,0.39824,0,0,0,0,0,0,0.07913,0.1279,0.2201,0.43009,0,0,0,0,0,0,0.06237,0.10989,0.19561,0.38781,0,0,0,0 +Full size car,PH20G,2020,0,0,0,0.00907,0.00936,0.00982,0.01114,0,0,0,0,0,0,0.00932,0.00959,0.01,0.01118,0,0,0,0,0,0,0.01009,0.01037,0.0108,0.01204,0,0,0,0,0,0,0.00863,0.00894,0.00943,0.01086,0,0,0,0,0,0,0.00981,0.01,0.01028,0.01108,0,0,0,0,0,0,0.00907,0.00928,0.0096,0.01049,0,0,0,0,0,0,0.009,0.00917,0.00943,0.01014,0,0,0,0,0,0,0.00948,0.0097,0.01004,0.011,0,0,0,0,0,0,0.00925,0.00941,0.00966,0.01033,0,0,0,0,0,0,0.00641,0.00522,0.00485,0.00595,0,0,0,0,0,0,0.00573,0.00476,0.00449,0.00552,0,0,0,0,0,0,0.00604,0.00531,0.00502,0.00626,0,0,0,0,0,0,0.00693,0.00607,0.00572,0.00712,0,0,0,0,0,0,0.0039,0.00391,0.00391,0.00495,0,0,0,0,0,0,0.00438,0.00431,0.00426,0.0054,0,0,0,0,0,0,0.00386,0.00388,0.0039,0.00493,0,0,0,0,0,0,0.00485,0.00446,0.00432,0.00542,0,0,0,0,0,0,0.0039,0.00372,0.00368,0.00459,0,0,0,0,0,0,1.18405,1.74663,2.1804,2.91259,0,0,0,0,0,0,1.14159,1.70549,2.14147,2.86362,0,0,0,0,0,0,1.21389,1.90791,2.44569,3.32435,0,0,0,0,0,0,1.31503,2.07042,2.66655,3.60474,0,0,0,0,0,0,1.01752,1.70255,2.20655,2.99301,0,0,0,0,0,0,1.07518,1.7905,2.32861,3.17373,0,0,0,0,0,0,1.05039,1.75067,2.26792,3.07591,0,0,0,0,0,0,1.12163,1.7925,2.28876,3.09105,0,0,0,0,0,0,0.97213,1.5571,1.96912,2.64284,0,0,0,0,0,0,190.37807,191.70796,192.98054,203.57491,0,0,0,0,0,0,192.02122,193.2215,194.31139,204.68216,0,0,0,0,0,0,195.1988,196.46032,197.6268,208.26565,0,0,0,0,0,0,190.55845,191.91223,193.22672,203.90456,0,0,0,0,0,0,195.36829,196.09443,196.52291,205.96499,0,0,0,0,0,0,192.26377,193.16954,193.85688,203.58419,0,0,0,0,0,0,193.48721,194.17541,194.56018,203.84966,0,0,0,0,0,0,193.74261,194.67463,195.39123,205.23045,0,0,0,0,0,0,189.96641,190.7466,191.25223,200.56862,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00504,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00407,0.00503,0,0,0,0,0,0,0.00321,0.00357,0.00409,0.00505,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00497,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01385,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04199,0.06454,0.08638,0.11523,0,0,0,0,0,0,0.04084,0.06302,0.08461,0.11302,0,0,0,0,0,0,0.04122,0.06782,0.09054,0.12265,0,0,0,0,0,0,0.04436,0.07394,0.09879,0.13426,0,0,0,0,0,0,0.0345,0.06005,0.08143,0.11152,0,0,0,0,0,0,0.03752,0.06455,0.08722,0.11922,0,0,0,0,0,0,0.03522,0.06062,0.08238,0.11228,0,0,0,0,0,0,0.04094,0.06823,0.09178,0.12426,0,0,0,0,0,0,0.03601,0.05949,0.08036,0.10813,0,0,0,0,0,0,0.00108,0.00156,0.00254,0.00456,0.00044,0.00048,0,0,0,0,0.00104,0.00149,0.00244,0.00434,0.00044,0.00049,0,0,0,0,0.00106,0.00152,0.0025,0.00445,0.00045,0.0005,0,0,0,0,0.00111,0.00161,0.00262,0.00473,0.00043,0.00047,0,0,0,0,0.00093,0.00131,0.00215,0.00369,0.00045,0.00049,0,0,0,0,0.00094,0.00134,0.0022,0.00381,0.00044,0.00048,0,0,0,0,0.00088,0.00124,0.00204,0.00347,0.00044,0.00048,0,0,0,0,0.00096,0.00137,0.00226,0.00393,0.00045,0.00049,0,0,0,0,0.00084,0.00119,0.00198,0.00336,0.00045,0.00049,0,0,0,0,0.02221,0.02329,0.03929,0.04467,0.01551,0.01586,0,0,0,0,0.02279,0.0238,0.04011,0.04516,0.01594,0.01629,0,0,0,0,0.02459,0.02564,0.04321,0.04844,0.01718,0.01753,0,0,0,0,0.02116,0.02229,0.03751,0.04314,0.01462,0.01496,0,0,0,0,0.02391,0.02474,0.04171,0.04581,0.01693,0.01727,0,0,0,0,0.02218,0.02305,0.03879,0.04308,0.01559,0.01593,0,0,0,0,0.02198,0.02276,0.03842,0.04225,0.01567,0.01602,0,0,0,0,0.02313,0.02403,0.04052,0.04501,0.01631,0.01666,0,0,0,0,0.02254,0.02328,0.03947,0.0432,0.01627,0.01662,0,0,0,0,0.00471,0.00566,0.01057,0.01536,0.00451,0.00484,0,0,0,0,0.0047,0.0056,0.01047,0.01497,0.00459,0.00491,0,0,0,0,0.00496,0.00589,0.011,0.01566,0.00481,0.00512,0,0,0,0,0.00464,0.00564,0.01047,0.01548,0.00434,0.00466,0,0,0,0,0.00461,0.00534,0.0101,0.01376,0.00476,0.00508,0,0,0,0,0.00443,0.0052,0.00981,0.01364,0.00451,0.00483,0,0,0,0,0.00428,0.00496,0.00945,0.01288,0.00454,0.00486,0,0,0,0,0.00459,0.00539,0.01016,0.01416,0.00465,0.00497,0,0,0,0,0.00429,0.00495,0.0095,0.01284,0.00466,0.00499,0,0,0,0,0.00121,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00122,0.00123,0.00124,0.00131,0,0,0,0,0,0,0.00125,0.00125,0.00126,0.00133,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00125,0.00125,0.00125,0.00131,0,0,0,0,0,0,0.00123,0.00123,0.00124,0.0013,0,0,0,0,0,0,0.00123,0.00124,0.00124,0.0013,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00129,0,0,0,0,0,0,0.00112,0.00112,0.00113,0.00118,0,0,0,0,0,0,0.08051,0.11016,0.16393,0.32526,0,0,0,0,0,0,0.07283,0.1006,0.15252,0.31126,0,0,0,0,0,0,0.07731,0.11151,0.16932,0.33979,0,0,0,0,0,0,0.08762,0.12652,0.18967,0.36814,0,0,0,0,0,0,0.05421,0.08585,0.14153,0.3106,0,0,0,0,0,0,0.05927,0.09283,0.15034,0.32209,0,0,0,0,0,0,0.05333,0.08363,0.13781,0.30328,0,0,0,0,0,0,0.06632,0.09984,0.15788,0.33104,0,0,0,0,0,0,0.05327,0.08236,0.13497,0.2966,0,0,0 +Full size car,PH20G,2025,0,0,0,0,0.00888,0.00906,0.00936,0.01026,0,0,0,0,0,0,0.00914,0.0093,0.00958,0.01038,0,0,0,0,0,0,0.00991,0.01008,0.01036,0.01121,0,0,0,0,0,0,0.00842,0.00861,0.00893,0.0099,0,0,0,0,0,0,0.00967,0.00979,0.00998,0.01053,0,0,0,0,0,0,0.00893,0.00905,0.00927,0.00988,0,0,0,0,0,0,0.00887,0.00898,0.00915,0.00965,0,0,0,0,0,0,0.00933,0.00946,0.00969,0.01035,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00987,0,0,0,0,0,0,0.00547,0.00414,0.00371,0.00456,0,0,0,0,0,0,0.00476,0.00367,0.00334,0.00413,0,0,0,0,0,0,0.0051,0.00409,0.00373,0.00468,0,0,0,0,0,0,0.00594,0.00475,0.00431,0.00539,0,0,0,0,0,0,0.00287,0.00263,0.00257,0.00332,0,0,0,0,0,0,0.00336,0.003,0.00288,0.00372,0,0,0,0,0,0,0.00281,0.00258,0.00254,0.00329,0,0,0,0,0,0,0.00384,0.00322,0.00302,0.00384,0,0,0,0,0,0,0.00283,0.00248,0.0024,0.00307,0,0,0,0,0,0,0.89603,1.27549,1.60414,2.12739,0,0,0,0,0,0,0.84251,1.22002,1.54614,2.05479,0,0,0,0,0,0,0.90437,1.36873,1.76688,2.38196,0,0,0,0,0,0,0.99171,1.50234,1.94547,2.60839,0,0,0,0,0,0,0.68841,1.13711,1.49828,2.02486,0,0,0,0,0,0,0.74572,1.21794,1.60593,2.17761,0,0,0,0,0,0,0.71043,1.17036,1.54143,2.08482,0,0,0,0,0,0,0.79305,1.23692,1.59878,2.14703,0,0,0,0,0,0,0.65972,1.04249,1.33946,1.79297,0,0,0,0,0,0,153.85338,154.99936,156.33305,165.87204,0,0,0,0,0,0,155.08883,156.12659,157.30204,166.63178,0,0,0,0,0,0,157.68617,158.77612,160.02268,169.59695,0,0,0,0,0,0,154.03544,155.20309,156.57666,166.19824,0,0,0,0,0,0,157.46771,158.10835,158.70642,167.17235,0,0,0,0,0,0,155.09742,155.88851,156.71138,165.44737,0,0,0,0,0,0,155.93892,156.54765,157.1065,165.4361,0,0,0,0,0,0,156.29694,157.11018,157.95958,166.7952,0,0,0,0,0,0,153.13283,153.81614,154.47195,162.82148,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00492,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00494,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00487,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03226,0.04679,0.06218,0.08446,0,0,0,0,0,0,0.03097,0.04517,0.06028,0.08211,0,0,0,0,0,0,0.0312,0.0481,0.0639,0.08842,0,0,0,0,0,0,0.03392,0.0529,0.07031,0.09739,0,0,0,0,0,0,0.02461,0.0406,0.05511,0.07754,0,0,0,0,0,0,0.02745,0.04452,0.06008,0.08413,0,0,0,0,0,0,0.02523,0.0412,0.05603,0.07833,0,0,0,0,0,0,0.03008,0.04736,0.06357,0.08817,0,0,0,0,0,0,0.02586,0.04066,0.05495,0.07591,0,0,0,0,0,0,0.0007,0.00099,0.00175,0.00319,0.00044,0.00047,0,0,0,0,0.00068,0.00096,0.00169,0.00305,0.00044,0.00048,0,0,0,0,0.00069,0.00097,0.00173,0.00313,0.00045,0.00049,0,0,0,0,0.00072,0.00102,0.0018,0.00329,0.00043,0.00046,0,0,0,0,0.0006,0.00084,0.0015,0.00263,0.00045,0.00048,0,0,0,0,0.00061,0.00086,0.00153,0.0027,0.00044,0.00047,0,0,0,0,0.00057,0.00079,0.00143,0.00247,0.00044,0.00047,0,0,0,0,0.00063,0.00088,0.00157,0.00279,0.00045,0.00048,0,0,0,0,0.00055,0.00076,0.00139,0.00241,0.00045,0.00048,0,0,0,0,0.02139,0.02205,0.03752,0.04154,0.01551,0.01579,0,0,0,0,0.022,0.02262,0.03845,0.04225,0.01594,0.01622,0,0,0,0,0.02379,0.02443,0.0415,0.04542,0.01718,0.01746,0,0,0,0,0.02031,0.021,0.03566,0.03981,0.01462,0.01489,0,0,0,0,0.02324,0.02375,0.04033,0.04351,0.01693,0.0172,0,0,0,0,0.02149,0.02202,0.03735,0.04065,0.01559,0.01586,0,0,0,0,0.02135,0.02182,0.03712,0.04011,0.01567,0.01595,0,0,0,0,0.02242,0.02297,0.03903,0.04247,0.01631,0.01659,0,0,0,0,0.02193,0.02239,0.03823,0.04117,0.01627,0.01655,0,0,0,0,0.00398,0.00457,0.009,0.01259,0.00451,0.00477,0,0,0,0,0.00401,0.00456,0.009,0.0124,0.00459,0.00484,0,0,0,0,0.00426,0.00482,0.00949,0.013,0.00481,0.00506,0,0,0,0,0.00389,0.0045,0.00883,0.01254,0.00434,0.00459,0,0,0,0,0.00401,0.00446,0.00888,0.01173,0.00476,0.00501,0,0,0,0,0.00382,0.00429,0.00853,0.01148,0.00451,0.00476,0,0,0,0,0.00372,0.00414,0.00831,0.01098,0.00454,0.00479,0,0,0,0,0.00396,0.00445,0.00884,0.01192,0.00465,0.00491,0,0,0,0,0.00376,0.00416,0.00841,0.01104,0.00466,0.00492,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00101,0.00101,0.00102,0.00108,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.001,0.00101,0.00101,0.00107,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00098,0.00099,0.00099,0.00105,0,0,0,0,0,0,0.0009,0.00091,0.00091,0.00096,0,0,0,0,0,0,0.07026,0.08984,0.13054,0.2661,0,0,0,0,0,0,0.06225,0.07985,0.11848,0.25118,0,0,0,0,0,0,0.06692,0.08949,0.13311,0.27588,0,0,0,0,0,0,0.07675,0.10277,0.15049,0.29932,0,0,0,0,0,0,0.04227,0.06139,0.10159,0.24115,0,0,0,0,0,0,0.04759,0.0684,0.11031,0.25241,0,0,0,0,0,0,0.04106,0.05863,0.097,0.23245,0,0,0,0,0,0,0.05422,0.07515,0.11765,0.26067,0,0,0,0,0,0,0.04087,0.05806,0.09577,0.22949,0,0 +Full size car,PH20G,2030,0,0,0,0,0,0.00888,0.00905,0.00935,0.01004,0,0,0,0,0,0,0.00914,0.0093,0.00957,0.01019,0,0,0,0,0,0,0.00991,0.01007,0.01035,0.011,0,0,0,0,0,0,0.00842,0.0086,0.00892,0.00966,0,0,0,0,0,0,0.00967,0.00979,0.00998,0.0104,0,0,0,0,0,0,0.00893,0.00905,0.00926,0.00973,0,0,0,0,0,0,0.00887,0.00898,0.00915,0.00953,0,0,0,0,0,0,0.00933,0.00946,0.00968,0.01019,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00975,0,0,0,0,0,0,0.00514,0.00378,0.00338,0.00403,0,0,0,0,0,0,0.00443,0.00331,0.00301,0.00359,0,0,0,0,0,0,0.00477,0.0037,0.00337,0.00405,0,0,0,0,0,0,0.00559,0.00432,0.00391,0.00469,0,0,0,0,0,0,0.00253,0.00222,0.00218,0.00267,0,0,0,0,0,0,0.00301,0.00258,0.00249,0.00304,0,0,0,0,0,0,0.00246,0.00217,0.00215,0.00263,0,0,0,0,0,0,0.00349,0.00282,0.00265,0.00321,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00247,0,0,0,0,0,0,0.82051,1.15892,1.47192,1.85795,0,0,0,0,0,0,0.76437,1.10013,1.40811,1.77763,0,0,0,0,0,0,0.82386,1.23555,1.6104,2.05188,0,0,0,0,0,0,0.90749,1.36142,1.77937,2.25759,0,0,0,0,0,0,0.60313,0.99797,1.32924,1.69022,0,0,0,0,0,0,0.66019,1.07663,1.43434,1.83029,0,0,0,0,0,0,0.62218,1.02731,1.36854,1.74015,0,0,0,0,0,0,0.70734,1.09987,1.43529,1.82169,0,0,0,0,0,0,0.57811,0.9157,1.18876,1.50316,0,0,0,0,0,0,141.66316,143.09537,145.31317,151.60093,0,0,0,0,0,0,142.76624,144.1009,146.17363,152.23801,0,0,0,0,0,0,145.16887,146.55809,148.71535,154.9665,0,0,0,0,0,0,141.84491,143.29779,145.55671,151.92303,0,0,0,0,0,0,144.83407,145.80524,147.33573,152.5291,0,0,0,0,0,0,142.70384,143.80938,145.54276,151.03931,0,0,0,0,0,0,143.42337,144.36161,145.84537,150.93759,0,0,0,0,0,0,143.80989,144.93865,146.70433,152.27351,0,0,0,0,0,0,140.85363,141.85361,143.41144,148.56986,0,0,0,0,0,0,0.00319,0.00352,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00321,0.00355,0.00407,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02858,0.04064,0.05471,0.07247,0,0,0,0,0,0,0.02723,0.03898,0.05276,0.07003,0,0,0,0,0,0,0.02737,0.04125,0.05566,0.07474,0,0,0,0,0,0,0.0299,0.04557,0.06146,0.08261,0,0,0,0,0,0,0.02088,0.03388,0.04702,0.06392,0,0,0,0,0,0,0.02362,0.03758,0.05171,0.07003,0,0,0,0,0,0,0.02145,0.03448,0.04787,0.06481,0,0,0,0,0,0,0.02596,0.04012,0.05488,0.07373,0,0,0,0,0,0,0.02203,0.03417,0.0472,0.06313,0,0,0,0,0,0,0.0007,0.00099,0.00174,0.00286,0.00044,0,0,0,0,0,0.00068,0.00095,0.00168,0.00274,0.00044,0,0,0,0,0,0.00069,0.00097,0.00172,0.00281,0.00045,0,0,0,0,0,0.00072,0.00102,0.00178,0.00295,0.00043,0,0,0,0,0,0.0006,0.00084,0.0015,0.00238,0.00045,0,0,0,0,0,0.00061,0.00086,0.00152,0.00244,0.00044,0,0,0,0,0,0.00057,0.00079,0.00142,0.00224,0.00044,0,0,0,0,0,0.00063,0.00088,0.00156,0.00251,0.00045,0,0,0,0,0,0.00055,0.00076,0.00139,0.00218,0.00045,0,0,0,0,0,0.02139,0.02204,0.0375,0.04077,0.01551,0,0,0,0,0,0.022,0.02262,0.03843,0.04154,0.01594,0,0,0,0,0,0.02379,0.02442,0.04148,0.04469,0.01718,0,0,0,0,0,0.02031,0.021,0.03563,0.03902,0.01462,0,0,0,0,0,0.02324,0.02374,0.04032,0.04296,0.01693,0,0,0,0,0,0.02149,0.02202,0.03733,0.04006,0.01559,0,0,0,0,0,0.02135,0.02182,0.03711,0.0396,0.01567,0,0,0,0,0,0.02242,0.02297,0.03902,0.04185,0.01631,0,0,0,0,0,0.02193,0.02239,0.03823,0.04067,0.01627,0,0,0,0,0,0.00398,0.00456,0.00898,0.01191,0.00451,0,0,0,0,0,0.00401,0.00455,0.00898,0.01177,0.00459,0,0,0,0,0,0.00426,0.00482,0.00947,0.01235,0.00481,0,0,0,0,0,0.00388,0.00449,0.0088,0.01183,0.00434,0,0,0,0,0,0.00401,0.00446,0.00886,0.01124,0.00476,0,0,0,0,0,0.00382,0.00429,0.00852,0.01096,0.00451,0,0,0,0,0,0.00371,0.00413,0.00829,0.01053,0.00454,0,0,0,0,0,0.00396,0.00445,0.00883,0.01137,0.00465,0,0,0,0,0,0.00376,0.00416,0.0084,0.0106,0.00466,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00097,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00099,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00096,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00088,0,0,0,0,0,0,0.06718,0.08437,0.12311,0.24183,0,0,0,0,0,0,0.05915,0.07438,0.11097,0.2265,0,0,0,0,0,0,0.06385,0.08353,0.12494,0.24914,0,0,0,0,0,0,0.07348,0.09626,0.14147,0.27091,0,0,0,0,0,0,0.03899,0.05518,0.09274,0.21253,0,0,0,0,0,0,0.04432,0.06208,0.10134,0.2235,0,0,0,0,0,0,0.03772,0.05234,0.08801,0.20352,0,0,0,0,0,0,0.05082,0.06885,0.10868,0.23219,0,0,0,0,0,0,0.03742,0.05189,0.08714,0.20198,0 +Full size car,PH20G,2035,0,0,0,0,0,0,0.00888,0.00905,0.00935,0.01001,0,0,0,0,0,0,0.00914,0.0093,0.00957,0.01017,0,0,0,0,0,0,0.00991,0.01007,0.01036,0.01098,0,0,0,0,0,0,0.00841,0.0086,0.00893,0.00964,0,0,0,0,0,0,0.00967,0.00978,0.00998,0.01038,0,0,0,0,0,0,0.00893,0.00905,0.00926,0.00972,0,0,0,0,0,0,0.00887,0.00897,0.00915,0.00951,0,0,0,0,0,0,0.00933,0.00946,0.00968,0.01017,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00974,0,0,0,0,0,0,0.00512,0.00379,0.00338,0.00394,0,0,0,0,0,0,0.00441,0.00332,0.00301,0.0035,0,0,0,0,0,0,0.00475,0.00371,0.00336,0.00394,0,0,0,0,0,0,0.00557,0.00433,0.00391,0.00457,0,0,0,0,0,0,0.00252,0.00223,0.00218,0.00255,0,0,0,0,0,0,0.003,0.00258,0.00249,0.00292,0,0,0,0,0,0,0.00245,0.00217,0.00214,0.00251,0,0,0,0,0,0,0.00348,0.00282,0.00265,0.0031,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00237,0,0,0,0,0,0,0.81997,1.16371,1.46885,1.81228,0,0,0,0,0,0,0.76398,1.10384,1.40568,1.73119,0,0,0,0,0,0,0.82354,1.24028,1.60736,1.99531,0,0,0,0,0,0,0.90719,1.36698,1.77584,2.19683,0,0,0,0,0,0,0.60311,0.99823,1.32884,1.63547,0,0,0,0,0,0,0.66012,1.07779,1.43338,1.77268,0,0,0,0,0,0,0.62226,1.02826,1.3677,1.68311,0,0,0,0,0,0,0.70703,1.10123,1.43421,1.76824,0,0,0,0,0,0,0.57791,0.91588,1.18842,1.45646,0,0,0,0,0,0,141.62199,143.09026,145.30913,149.39391,0,0,0,0,0,0,142.72754,144.09608,146.16961,150.01156,0,0,0,0,0,0,145.12847,146.55305,148.71143,152.70363,0,0,0,0,0,0,141.8025,143.29263,145.55264,149.71546,0,0,0,0,0,0,144.80428,145.80154,147.33266,150.26216,0,0,0,0,0,0,142.67062,143.80519,145.53926,148.80953,0,0,0,0,0,0,143.39415,144.35781,145.8424,148.69279,0,0,0,0,0,0,143.77631,144.9344,146.70088,150.02623,0,0,0,0,0,0,140.82432,141.85012,143.40861,146.3637,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00354,0.00406,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.00319,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.0285,0.04053,0.05477,0.07061,0,0,0,0,0,0,0.02716,0.03888,0.05281,0.06814,0,0,0,0,0,0,0.0273,0.04113,0.05572,0.07254,0,0,0,0,0,0,0.02982,0.04541,0.06154,0.08024,0,0,0,0,0,0,0.02083,0.0338,0.04706,0.06168,0,0,0,0,0,0,0.02357,0.03749,0.05176,0.06773,0,0,0,0,0,0,0.02141,0.03437,0.04793,0.06262,0,0,0,0,0,0,0.0259,0.04005,0.05492,0.07138,0,0,0,0,0,0,0.02199,0.03415,0.0472,0.06103,0,0,0,0,0,0,0.0007,0.00099,0.00175,0.00283,0,0,0,0,0,0,0.00067,0.00095,0.00169,0.0027,0,0,0,0,0,0,0.00069,0.00097,0.00172,0.00277,0,0,0,0,0,0,0.00072,0.00101,0.00179,0.00291,0,0,0,0,0,0,0.0006,0.00083,0.0015,0.00235,0,0,0,0,0,0,0.00061,0.00085,0.00153,0.00241,0,0,0,0,0,0,0.00057,0.00079,0.00142,0.00222,0,0,0,0,0,0,0.00062,0.00087,0.00157,0.00248,0,0,0,0,0,0,0.00055,0.00076,0.00139,0.00215,0,0,0,0,0,0,0.02138,0.02203,0.03751,0.04069,0,0,0,0,0,0,0.022,0.02261,0.03843,0.04146,0,0,0,0,0,0,0.02379,0.02441,0.04149,0.04461,0,0,0,0,0,0,0.0203,0.02098,0.03564,0.03894,0,0,0,0,0,0,0.02323,0.02373,0.04032,0.04289,0,0,0,0,0,0,0.02149,0.02201,0.03734,0.03999,0,0,0,0,0,0,0.02134,0.02181,0.03711,0.03954,0,0,0,0,0,0,0.02242,0.02296,0.03902,0.04178,0,0,0,0,0,0,0.02193,0.02238,0.03823,0.04061,0,0,0,0,0,0,0.00398,0.00455,0.00899,0.01184,0,0,0,0,0,0,0.004,0.00454,0.00899,0.0117,0,0,0,0,0,0,0.00425,0.00481,0.00948,0.01228,0,0,0,0,0,0,0.00388,0.00447,0.00882,0.01176,0,0,0,0,0,0,0.00401,0.00445,0.00887,0.01118,0,0,0,0,0,0,0.00382,0.00428,0.00852,0.0109,0,0,0,0,0,0,0.00371,0.00412,0.0083,0.01048,0,0,0,0,0,0,0.00396,0.00444,0.00884,0.01131,0,0,0,0,0,0,0.00375,0.00416,0.0084,0.01054,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00097,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00096,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00094,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00086,0,0,0,0,0,0,0.06698,0.08445,0.12303,0.23891,0,0,0,0,0,0,0.05897,0.07444,0.11091,0.22349,0,0,0,0,0,0,0.06367,0.08363,0.12485,0.24574,0,0,0,0,0,0,0.07326,0.09631,0.14142,0.26729,0,0,0,0,0,0,0.03888,0.05512,0.09277,0.20889,0,0,0,0,0,0,0.0442,0.06206,0.10134,0.21978,0,0,0,0,0,0,0.03761,0.05227,0.08804,0.19978,0,0,0,0,0,0,0.05065,0.06869,0.10875,0.22872,0,0,0,0,0,0,0.03732,0.05188,0.08712,0.19849 +Full size car,PH20G,2040,0,0,0,0,0,0,0,0.00887,0.00905,0.00936,0,0,0,0,0,0,0,0.00914,0.0093,0.00958,0,0,0,0,0,0,0,0.0099,0.01007,0.01036,0,0,0,0,0,0,0,0.00841,0.0086,0.00893,0,0,0,0,0,0,0,0.00967,0.00979,0.00998,0,0,0,0,0,0,0,0.00892,0.00905,0.00927,0,0,0,0,0,0,0,0.00887,0.00898,0.00915,0,0,0,0,0,0,0,0.00932,0.00946,0.00969,0,0,0,0,0,0,0,0.00913,0.00923,0.0094,0,0,0,0,0,0,0,0.00512,0.00378,0.00338,0,0,0,0,0,0,0,0.00442,0.00331,0.003,0,0,0,0,0,0,0,0.00477,0.0037,0.00336,0,0,0,0,0,0,0,0.00559,0.00432,0.0039,0,0,0,0,0,0,0,0.00252,0.00222,0.00218,0,0,0,0,0,0,0,0.00301,0.00258,0.00248,0,0,0,0,0,0,0,0.00245,0.00217,0.00214,0,0,0,0,0,0,0,0.00348,0.00282,0.00264,0,0,0,0,0,0,0,0.00247,0.00209,0.00203,0,0,0,0,0,0,0,0.82371,1.16098,1.46545,0,0,0,0,0,0,0,0.76683,1.10167,1.40302,0,0,0,0,0,0,0,0.8274,1.23758,1.604,0,0,0,0,0,0,0,0.91194,1.36384,1.77194,0,0,0,0,0,0,0,0.6033,0.9978,1.32851,0,0,0,0,0,0,0,0.66106,1.07689,1.43243,0,0,0,0,0,0,0,0.62291,1.02751,1.36685,0,0,0,0,0,0,0,0.70801,1.1002,1.43312,0,0,0,0,0,0,0,0.57779,0.91548,1.18816,0,0,0,0,0,0,0,141.61556,143.08312,145.3085,0,0,0,0,0,0,0,142.72141,144.08928,146.16901,0,0,0,0,0,0,0,145.12216,146.54611,148.71075,0,0,0,0,0,0,0,141.79599,143.28527,145.55192,0,0,0,0,0,0,0,144.79978,145.79653,147.33228,0,0,0,0,0,0,0,142.66537,143.79953,145.53872,0,0,0,0,0,0,0,143.38978,144.35284,145.84188,0,0,0,0,0,0,0,143.77095,144.92865,146.70037,0,0,0,0,0,0,0,140.81982,141.84513,143.40822,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00321,0.00355,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01383,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01381,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01381,0.01777,0,0,0,0,0,0,0,0.01189,0.01384,0.0178,0,0,0,0,0,0,0,0.02841,0.04056,0.05484,0,0,0,0,0,0,0,0.02707,0.03891,0.05288,0,0,0,0,0,0,0,0.0272,0.04116,0.0558,0,0,0,0,0,0,0,0.02969,0.04546,0.06165,0,0,0,0,0,0,0,0.02077,0.03382,0.04712,0,0,0,0,0,0,0,0.02349,0.03751,0.05183,0,0,0,0,0,0,0,0.02133,0.0344,0.04801,0,0,0,0,0,0,0,0.02583,0.04006,0.05497,0,0,0,0,0,0,0,0.02197,0.03414,0.04721,0,0,0,0,0,0,0,0.00069,0.00099,0.00175,0,0,0,0,0,0,0,0.00067,0.00095,0.00169,0,0,0,0,0,0,0,0.00068,0.00097,0.00173,0,0,0,0,0,0,0,0.00071,0.00102,0.0018,0,0,0,0,0,0,0,0.0006,0.00084,0.0015,0,0,0,0,0,0,0,0.00061,0.00086,0.00153,0,0,0,0,0,0,0,0.00056,0.00079,0.00143,0,0,0,0,0,0,0,0.00062,0.00088,0.00157,0,0,0,0,0,0,0,0.00055,0.00076,0.00139,0,0,0,0,0,0,0,0.02137,0.02204,0.03752,0,0,0,0,0,0,0,0.02199,0.02261,0.03844,0,0,0,0,0,0,0,0.02378,0.02442,0.0415,0,0,0,0,0,0,0,0.02029,0.02098,0.03566,0,0,0,0,0,0,0,0.02323,0.02374,0.04033,0,0,0,0,0,0,0,0.02148,0.02201,0.03735,0,0,0,0,0,0,0,0.02134,0.02181,0.03712,0,0,0,0,0,0,0,0.02241,0.02296,0.03903,0,0,0,0,0,0,0,0.02193,0.02238,0.03823,0,0,0,0,0,0,0,0.00397,0.00455,0.009,0,0,0,0,0,0,0,0.00399,0.00455,0.009,0,0,0,0,0,0,0,0.00425,0.00481,0.00949,0,0,0,0,0,0,0,0.00387,0.00448,0.00883,0,0,0,0,0,0,0,0.004,0.00445,0.00888,0,0,0,0,0,0,0,0.00381,0.00428,0.00853,0,0,0,0,0,0,0,0.00371,0.00413,0.0083,0,0,0,0,0,0,0,0.00395,0.00444,0.00884,0,0,0,0,0,0,0,0.00375,0.00416,0.0084,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00093,0.00093,0.00095,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00092,0.00093,0.00094,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.0009,0.00091,0.00092,0,0,0,0,0,0,0,0.00083,0.00084,0.00085,0,0,0,0,0,0,0,0.06703,0.08436,0.12297,0,0,0,0,0,0,0,0.059,0.07436,0.11086,0,0,0,0,0,0,0,0.06375,0.08353,0.12478,0,0,0,0,0,0,0,0.07331,0.09622,0.1414,0,0,0,0,0,0,0,0.03885,0.05512,0.09283,0,0,0,0,0,0,0,0.04419,0.06203,0.10138,0,0,0,0,0,0,0,0.03757,0.05227,0.08811,0,0,0,0,0,0,0,0.05054,0.06873,0.10889,0,0,0,0,0,0,0,0.03729,0.05186,0.08714 +Full size car,PH20G,2045,0,0,0,0,0,0,0,0,0.00887,0.00905,0,0,0,0,0,0,0,0,0.00914,0.0093,0,0,0,0,0,0,0,0,0.0099,0.01007,0,0,0,0,0,0,0,0,0.00841,0.0086,0,0,0,0,0,0,0,0,0.00967,0.00979,0,0,0,0,0,0,0,0,0.00892,0.00905,0,0,0,0,0,0,0,0,0.00887,0.00898,0,0,0,0,0,0,0,0,0.00932,0.00946,0,0,0,0,0,0,0,0,0.00913,0.00923,0,0,0,0,0,0,0,0,0.00512,0.00378,0,0,0,0,0,0,0,0,0.00441,0.00331,0,0,0,0,0,0,0,0,0.00476,0.00369,0,0,0,0,0,0,0,0,0.00558,0.00431,0,0,0,0,0,0,0,0,0.00252,0.00222,0,0,0,0,0,0,0,0,0.00301,0.00258,0,0,0,0,0,0,0,0,0.00245,0.00217,0,0,0,0,0,0,0,0,0.00348,0.00282,0,0,0,0,0,0,0,0,0.00246,0.00209,0,0,0,0,0,0,0,0,0.82151,1.15824,0,0,0,0,0,0,0,0,0.76508,1.09953,0,0,0,0,0,0,0,0,0.82513,1.23486,0,0,0,0,0,0,0,0,0.90922,1.36065,0,0,0,0,0,0,0,0,0.60291,0.99755,0,0,0,0,0,0,0,0,0.66028,1.07614,0,0,0,0,0,0,0,0,0.62231,1.02688,0,0,0,0,0,0,0,0,0.70718,1.09934,0,0,0,0,0,0,0,0,0.57755,0.91528,0,0,0,0,0,0,0,0,141.60984,143.08299,0,0,0,0,0,0,0,0,142.71607,144.08932,0,0,0,0,0,0,0,0,145.11673,146.54611,0,0,0,0,0,0,0,0,141.79011,143.2852,0,0,0,0,0,0,0,0,144.79569,145.79646,0,0,0,0,0,0,0,0,142.66092,143.79947,0,0,0,0,0,0,0,0,143.38586,144.35281,0,0,0,0,0,0,0,0,143.76642,144.92854,0,0,0,0,0,0,0,0,140.81583,141.84503,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02843,0.04061,0,0,0,0,0,0,0,0,0.0271,0.03896,0,0,0,0,0,0,0,0,0.02723,0.04123,0,0,0,0,0,0,0,0,0.02973,0.04555,0,0,0,0,0,0,0,0,0.02079,0.03386,0,0,0,0,0,0,0,0,0.02351,0.03756,0,0,0,0,0,0,0,0,0.02135,0.03446,0,0,0,0,0,0,0,0,0.02585,0.0401,0,0,0,0,0,0,0,0,0.02197,0.03415,0.02217,0,0,0,0,0,0,0,0.0007,0.00099,0.02258,0,0,0,0,0,0,0,0.00067,0.00095,0.02387,0,0,0,0,0,0,0,0.00068,0.00097,0.02117,0,0,0,0,0,0,0,0.00071,0.00102,0.02359,0,0,0,0,0,0,0,0.0006,0.00084,0.02216,0,0,0,0,0,0,0,0.00061,0.00086,0.02231,0,0,0,0,0,0,0,0.00057,0.00079,0.02296,0,0,0,0,0,0,0,0.00062,0.00088,0.02301,0,0,0,0,0,0,0,0.00055,0.00076,0.13525,0,0,0,0,0,0,0,0.02138,0.02204,0.13612,0,0,0,0,0,0,0,0.02199,0.02262,0.13891,0,0,0,0,0,0,0,0.02378,0.02442,0.13315,0,0,0,0,0,0,0,0.0203,0.02099,0.13832,0,0,0,0,0,0,0,0.02323,0.02374,0.13527,0,0,0,0,0,0,0,0.02148,0.02202,0.13556,0,0,0,0,0,0,0,0.02134,0.02182,0.13695,0,0,0,0,0,0,0,0.02241,0.02297,0.13701,0,0,0,0,0,0,0,0.02193,0.02239,0.1147,0,0,0,0,0,0,0,0.00397,0.00456,0.11518,0,0,0,0,0,0,0,0.004,0.00455,0.1168,0,0,0,0,0,0,0,0.00425,0.00482,0.11343,0,0,0,0,0,0,0,0.00387,0.00449,0.11645,0,0,0,0,0,0,0,0.00401,0.00446,0.11465,0,0,0,0,0,0,0,0.00381,0.00429,0.11486,0,0,0,0,0,0,0,0.00371,0.00413,0.11566,0,0,0,0,0,0,0,0.00396,0.00445,0.11576,0,0,0,0,0,0,0,0.00375,0.00416,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00093,0.00093,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00092,0.00093,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00083,0.00084,0,0,0,0,0,0,0,0,0.06696,0.0843,0,0,0,0,0,0,0,0,0.05895,0.07432,0,0,0,0,0,0,0,0,0.06367,0.08346,0,0,0,0,0,0,0,0,0.07323,0.09618,0,0,0,0,0,0,0,0,0.03884,0.05514,0,0,0,0,0,0,0,0,0.04416,0.06204,0,0,0,0,0,0,0,0,0.03757,0.0523,0,0,0,0,0,0,0,0,0.05055,0.0688,0,0,0,0,0,0,0,0,0.03728,0.05186 +Full size car,PH20G,2050,0,0,0,0,0,0,0,0,0,0.00888,0,0,0,0,0,0,0,0,0,0.00914,0,0,0,0,0,0,0,0,0,0.00991,0,0,0,0,0,0,0,0,0,0.00841,0,0,0,0,0,0,0,0,0,0.00967,0,0,0,0,0,0,0,0,0,0.00893,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.00932,0,0,0,0,0,0,0,0,0,0.00913,0,0,0,0,0,0,0,0,0,0.00511,0,0,0,0,0,0,0,0,0,0.00441,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00252,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00245,0,0,0,0,0,0,0,0,0,0.00348,0,0,0,0,0,0,0,0,0,0.00246,0,0,0,0,0,0,0,0,0,0.81919,0,0,0,0,0,0,0,0,0,0.76326,0,0,0,0,0,0,0,0,0,0.82273,0,0,0,0,0,0,0,0,0,0.9063,0,0,0,0,0,0,0,0,0,0.60256,0,0,0,0,0,0,0,0,0,0.6595,0,0,0,0,0,0,0,0,0,0.6217,0,0,0,0,0,0,0,0,0,0.70637,0,0,0,0,0,0,0,0,0,0.57738,0,0,0,0,0,0,0,0,0,141.60988,0,0,0,0,0,0,0,0,0,142.7161,0,0,0,0,0,0,0,0,0,145.11672,0,0,0,0,0,0,0,0,0,141.79007,0,0,0,0,0,0,0,0,0,144.79568,0,0,0,0,0,0,0,0,0,142.66083,0,0,0,0,0,0,0,0,0,143.38576,0,0,0,0,0,0,0,0,0,143.76635,0,0,0,0,0,0,0,0,0,140.81579,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.02714,0,0,0,0,0,0,0,0,0,0.02727,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02355,0,0,0,0,0,0,0,0,0,0.02139,0,0,0,0,0,0,0,0,0,0.02587,0,0,0,0,0,0,0,0,0,0.02197,0.01747,0.0184,0,0,0,0,0,0,0,0.0007,0.01803,0.01886,0,0,0,0,0,0,0,0.00067,0.01968,0.02024,0,0,0,0,0,0,0,0.00068,0.01616,0.01727,0,0,0,0,0,0,0,0.00072,0.01932,0.01993,0,0,0,0,0,0,0,0.0006,0.01744,0.01834,0,0,0,0,0,0,0,0.00061,0.01765,0.01854,0,0,0,0,0,0,0,0.00057,0.01852,0.01927,0,0,0,0,0,0,0,0.00062,0.01858,0.01934,0,0,0,0,0,0,0,0.00055,0.10921,0.1093,0,0,0,0,0,0,0,0.02138,0.11081,0.11055,0,0,0,0,0,0,0,0.022,0.11557,0.11435,0,0,0,0,0,0,0,0.02378,0.10544,0.10626,0,0,0,0,0,0,0,0.0203,0.11452,0.11351,0,0,0,0,0,0,0,0.02323,0.10914,0.1092,0,0,0,0,0,0,0,0.02148,0.10973,0.1097,0,0,0,0,0,0,0,0.02134,0.11221,0.11168,0,0,0,0,0,0,0,0.02242,0.11237,0.11184,0,0,0,0,0,0,0,0.02193,0.09073,0.09082,0,0,0,0,0,0,0,0.00398,0.09187,0.09165,0,0,0,0,0,0,0,0.004,0.09532,0.0942,0,0,0,0,0,0,0,0.00425,0.08791,0.08868,0,0,0,0,0,0,0,0.00388,0.09455,0.09362,0,0,0,0,0,0,0,0.00401,0.09059,0.09066,0,0,0,0,0,0,0,0.00381,0.09108,0.09106,0,0,0,0,0,0,0,0.00371,0.09289,0.0924,0,0,0,0,0,0,0,0.00396,0.09308,0.0926,0,0,0,0,0,0,0,0.00375,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00093,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00092,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00083,0,0,0,0,0,0,0,0,0,0.06691,0,0,0,0,0,0,0,0,0,0.05891,0,0,0,0,0,0,0,0,0,0.06361,0,0,0,0,0,0,0,0,0,0.07318,0,0,0,0,0,0,0,0,0,0.03885,0,0,0,0,0,0,0,0,0,0.04415,0,0,0,0,0,0,0,0,0,0.03758,0,0,0,0,0,0,0,0,0,0.0506,0,0,0,0,0,0,0,0,0,0.03728 +Full size car,PH40E,1990,0.01419,0,0,0,0,0,0,0,0,0,0.01468,0,0,0,0,0,0,0,0,0,0.01593,0,0,0,0,0,0,0,0,0,0.01338,0,0,0,0,0,0,0,0,0,0.0157,0,0,0,0,0,0,0,0,0,0.01442,0,0,0,0,0,0,0,0,0,0.0144,0,0,0,0,0,0,0,0,0,0.01507,0,0,0,0,0,0,0,0,0,0.01485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02259,0.02264,0.02339,0,0,0,0,0,0,0,0.02335,0.02338,0.02408,0,0,0,0,0,0,0,0.02558,0.02556,0.02613,0,0,0,0,0,0,0,0.02081,0.02087,0.02169,0,0,0,0,0,0,0,0.02509,0.02507,0.02567,0,0,0,0,0,0,0,0.02255,0.02258,0.02329,0,0,0,0,0,0,0,0.02283,0.02287,0.0236,0,0,0,0,0,0,0,0.02401,0.02402,0.02469,0,0,0,0,0,0,0,0.02409,0.02412,0.02481,0,0,0,0,0,0,0,0.15015,0.14786,0.148,0,0,0,0,0,0,0,0.15242,0.15005,0.15006,0,0,0,0,0,0,0,0.15905,0.15646,0.15616,0,0,0,0,0,0,0,0.14475,0.14259,0.14297,0,0,0,0,0,0,0,0.15756,0.15501,0.15478,0,0,0,0,0,0,0,0.14995,0.14761,0.14774,0,0,0,0,0,0,0,0.15085,0.14852,0.14862,0,0,0,0,0,0,0,0.15439,0.15195,0.15187,0,0,0,0,0,0,0,0.15468,0.15227,0.15221,0,0,0,0,0,0,0,0.12187,0.11976,0.1199,0,0,0,0,0,0,0,0.12342,0.12124,0.12126,0,0,0,0,0,0,0,0.12798,0.1256,0.12533,0,0,0,0,0,0,0,0.11798,0.116,0.11636,0,0,0,0,0,0,0,0.12693,0.12458,0.12437,0,0,0,0,0,0,0,0.12156,0.11942,0.11954,0,0,0,0,0,0,0,0.12231,0.12017,0.12027,0,0,0,0,0,0,0,0.12478,0.12254,0.12247,0,0,0,0,0,0,0,0.12512,0.12291,0.12286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH40E,1995,0.01419,0.01419,0,0,0,0,0,0,0,0,0.01468,0.01468,0,0,0,0,0,0,0,0,0.01593,0.01593,0,0,0,0,0,0,0,0,0.01338,0.01338,0,0,0,0,0,0,0,0,0.0157,0.0157,0,0,0,0,0,0,0,0,0.01442,0.01442,0,0,0,0,0,0,0,0,0.0144,0.0144,0,0,0,0,0,0,0,0,0.01507,0.01507,0,0,0,0,0,0,0,0,0.01485,0.01485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00928,0.0125,0.01271,0.01559,0,0,0,0,0,0,0.00958,0.0129,0.01311,0.01605,0,0,0,0,0,0,0.01045,0.01407,0.01427,0.01742,0,0,0,0,0,0,0.00862,0.01161,0.01182,0.0145,0,0,0,0,0,0,0.01026,0.01382,0.01402,0.01712,0,0,0,0,0,0,0.0093,0.01252,0.01272,0.01556,0,0,0,0,0,0,0.00939,0.01264,0.01285,0.01574,0,0,0,0,0,0,0.00984,0.01325,0.01345,0.01646,0,0,0,0,0,0,0.00984,0.01325,0.01346,0.01651,0,0,0,0,0,0,0.07919,0.09895,0.09909,0.1111,0,0,0,0,0,0,0.08037,0.10027,0.10041,0.11259,0,0,0,0,0,0,0.08374,0.10408,0.1042,0.11693,0,0,0,0,0,0,0.07661,0.09598,0.09612,0.1076,0,0,0,0,0,0,0.08301,0.10325,0.10337,0.11596,0,0,0,0,0,0,0.07926,0.09897,0.0991,0.11101,0,0,0,0,0,0,0.0796,0.09939,0.09953,0.11157,0,0,0,0,0,0,0.08137,0.10141,0.10155,0.11388,0,0,0,0,0,0,0.08137,0.10145,0.1016,0.11403,0,0,0,0,0,0,0.05658,0.07476,0.0749,0.08594,0,0,0,0,0,0,0.05713,0.07545,0.07558,0.08678,0,0,0,0,0,0,0.05869,0.07741,0.07752,0.08923,0,0,0,0,0,0,0.05529,0.07311,0.07324,0.08381,0,0,0,0,0,0,0.05834,0.07696,0.07707,0.08866,0,0,0,0,0,0,0.05652,0.07466,0.07479,0.08574,0,0,0,0,0,0,0.05675,0.07496,0.07509,0.08617,0,0,0,0,0,0,0.0576,0.07604,0.07616,0.08752,0,0,0,0,0,0,0.05767,0.07615,0.07629,0.08773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH40E,2000,0.01419,0.01742,0.01967,0,0,0,0,0,0,0,0.01468,0.01745,0.01938,0,0,0,0,0,0,0,0.01593,0.01905,0.02122,0,0,0,0,0,0,0,0.01338,0.01691,0.0194,0,0,0,0,0,0,0,0.0157,0.01725,0.01829,0,0,0,0,0,0,0,0.01442,0.01628,0.01768,0,0,0,0,0,0,0,0.0144,0.01589,0.01688,0,0,0,0,0,0,0,0.01507,0.01721,0.01867,0,0,0,0,0,0,0,0.01485,0.01632,0.0173,0,0,0,0,0,0,0,0,0.05215,0.054,0,0,0,0,0,0,0,0,0.04956,0.05269,0,0,0,0,0,0,0,0,0.05872,0.0619,0,0,0,0,0,0,0,0,0.06217,0.06538,0,0,0,0,0,0,0,0,0.04895,0.05218,0,0,0,0,0,0,0,0,0.0528,0.05637,0,0,0,0,0,0,0,0,0.04913,0.05076,0,0,0,0,0,0,0,0,0.05082,0.05344,0,0,0,0,0,0,0,0,0.04224,0.04464,0,0,0,0,0,0,0,0,5.23162,6.14938,0,0,0,0,0,0,0,0,5.05015,6.04832,0,0,0,0,0,0,0,0,5.77436,6.88086,0,0,0,0,0,0,0,0,6.2574,7.43389,0,0,0,0,0,0,0,0,5.09328,6.05926,0,0,0,0,0,0,0,0,5.42517,6.52308,0,0,0,0,0,0,0,0,5.28302,6.11116,0,0,0,0,0,0,0,0,5.21849,6.16865,0,0,0,0,0,0,0,0,4.28955,5.07677,0,0,0,0,0,0,0,0,188.01422,190.88366,0,0,0,0,0,0,0,0,189.60568,192.27761,0,0,0,0,0,0,0,0,192.87506,195.6558,0,0,0,0,0,0,0,0,188.11163,191.01712,0,0,0,0,0,0,0,0,192.75625,194.69317,0,0,0,0,0,0,0,0,189.67977,192.62012,0,0,0,0,0,0,0,0,190.75161,192.61953,0,0,0,0,0,0,0,0,191.19597,193.45131,0,0,0,0,0,0,0,0,187.42374,189.4277,0,0,0,0,0,0,0,0,0.01173,0.01389,0,0,0,0,0,0,0,0,0.01176,0.01392,0,0,0,0,0,0,0,0,0.01182,0.01396,0,0,0,0,0,0,0,0,0.01186,0.01408,0,0,0,0,0,0,0,0,0.01184,0.01399,0,0,0,0,0,0,0,0,0.01191,0.01412,0,0,0,0,0,0,0,0,0.01179,0.01396,0,0,0,0,0,0,0,0,0.01184,0.01401,0,0,0,0,0,0,0,0,0.01165,0.01378,0,0,0,0,0,0,0,0,0.03887,0.03887,0,0,0,0,0,0,0,0,0.03895,0.03895,0,0,0,0,0,0,0,0,0.03906,0.03906,0,0,0,0,0,0,0,0,0.03859,0.03859,0,0,0,0,0,0,0,0,0.039,0.039,0,0,0,0,0,0,0,0,0.03873,0.03873,0,0,0,0,0,0,0,0,0.03885,0.03885,0,0,0,0,0,0,0,0,0.039,0.039,0,0,0,0,0,0,0,0,0.03909,0.03909,0,0,0,0,0,0,0,0,0.6735,0.80037,0,0,0,0,0,0,0,0,0.66699,0.80992,0,0,0,0,0,0,0,0,0.74392,0.89637,0,0,0,0,0,0,0,0,0.77674,0.93488,0,0,0,0,0,0,0,0,0.72571,0.88157,0,0,0,0,0,0,0,0,0.75137,0.90637,0,0,0,0,0,0,0,0,0.73924,0.87517,0,0,0,0,0,0,0,0,0.76822,0.91643,0,0,0,0,0,0,0,0,0.68214,0.81948,0,0,0,0,0,0,0,0,0.01083,0.01483,0.00402,0.00873,0,0,0,0,0,0,0.01014,0.01364,0.00413,0.00898,0,0,0,0,0,0,0.01106,0.01488,0.00446,0.0097,0,0,0,0,0,0,0.01086,0.01511,0.00377,0.00815,0,0,0,0,0,0,0.00807,0.01014,0.00439,0.00954,0,0,0,0,0,0,0.0082,0.01085,0.00403,0.00871,0,0,0,0,0,0,0.00762,0.00965,0.00406,0.00881,0,0,0,0,0,0,0.00902,0.01178,0.00423,0.00919,0,0,0,0,0,0,0.00788,0.00992,0.00423,0.00922,0,0,0,0,0,0,0.07562,0.08496,0.04638,0.07208,0,0,0,0,0,0,0.07519,0.08339,0.04726,0.07319,0,0,0,0,0,0,0.08026,0.08928,0.04979,0.07643,0,0,0,0,0,0,0.0737,0.08364,0.04448,0.06954,0,0,0,0,0,0,0.0731,0.07808,0.04925,0.07572,0,0,0,0,0,0,0.07019,0.07652,0.04646,0.07207,0,0,0,0,0,0,0.069,0.07384,0.04669,0.07245,0,0,0,0,0,0,0.07367,0.08019,0.04801,0.07416,0,0,0,0,0,0,0.07085,0.07573,0.04799,0.07422,0,0,0,0,0,0,0.04162,0.04991,0.02641,0.05005,0,0,0,0,0,0,0.04037,0.04765,0.02668,0.05054,0,0,0,0,0,0,0.04246,0.05046,0.02747,0.05197,0,0,0,0,0,0,0.04155,0.05037,0.02574,0.04879,0,0,0,0,0,0,0.03659,0.04102,0.02729,0.05163,0,0,0,0,0,0,0.03653,0.0421,0.02636,0.04992,0,0,0,0,0,0,0.03541,0.03971,0.02649,0.05018,0,0,0,0,0,0,0.0383,0.0441,0.02692,0.05097,0,0,0,0,0,0,0.03604,0.04038,0.02697,0.05111,0,0,0,0,0,0,0.00616,0.00551,0,0,0,0,0,0,0,0,0.00621,0.00555,0,0,0,0,0,0,0,0,0.00631,0.00565,0,0,0,0,0,0,0,0,0.00616,0.00552,0,0,0,0,0,0,0,0,0.00631,0.00562,0,0,0,0,0,0,0,0,0.00621,0.00556,0,0,0,0,0,0,0,0,0.00625,0.00556,0,0,0,0,0,0,0,0,0.00626,0.00559,0,0,0,0,0,0,0,0,0.00614,0.00547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Full size car,PH40E,2005,0.01419,0.01545,0.01626,0.01817,0,0,0,0,0,0,0.01468,0.01578,0.01649,0.01813,0,0,0,0,0,0,0.01593,0.01717,0.01796,0.01982,0,0,0,0,0,0,0.01338,0.01476,0.01566,0.01778,0,0,0,0,0,0,0.0157,0.01637,0.0168,0.01772,0,0,0,0,0,0,0.01442,0.01521,0.01575,0.01681,0,0,0,0,0,0,0.0144,0.01505,0.01545,0.01633,0,0,0,0,0,0,0.01507,0.01595,0.01651,0.01778,0,0,0,0,0,0,0.01485,0.01549,0.01588,0.01674,0,0,0,0,0,0,0,0.02683,0.02153,0.02553,0,0,0,0,0,0,0,0.02393,0.01993,0.02394,0,0,0,0,0,0,0,0.02767,0.02301,0.02831,0,0,0,0,0,0,0,0.03067,0.02543,0.03085,0,0,0,0,0,0,0,0.01686,0.01566,0.02035,0,0,0,0,0,0,0,0.02002,0.01839,0.02298,0,0,0,0,0,0,0,0.01662,0.01524,0.01971,0,0,0,0,0,0,0,0.02089,0.01808,0.02256,0,0,0,0,0,0,0,0.01475,0.0135,0.01702,0,0,0,0,0,0,0,2.1351,2.71614,3.68885,0,0,0,0,0,0,0,2.05122,2.70759,3.65514,0,0,0,0,0,0,0,2.30265,3.09348,4.21249,0,0,0,0,0,0,0,2.47824,3.33253,4.52943,0,0,0,0,0,0,0,2.12309,2.92873,3.87455,0,0,0,0,0,0,0,2.20952,3.06889,4.0505,0,0,0,0,0,0,0,2.20151,2.9632,3.9078,0,0,0,0,0,0,0,2.16251,2.8834,3.84928,0,0,0,0,0,0,0,1.86667,2.48324,3.24688,0,0,0,0,0,0,0,190.70224,192.86885,196.0238,0,0,0,0,0,0,0,192.40727,194.42623,197.33896,0,0,0,0,0,0,0,195.56594,197.66754,200.72538,0,0,0,0,0,0,0,190.82811,193.02624,196.23832,0,0,0,0,0,0,0,195.97067,197.44031,199.45056,0,0,0,0,0,0,0,192.76143,195.15715,196.77836,0,0,0,0,0,0,0,194.08023,195.49989,197.4221,0,0,0,0,0,0,0,194.24886,195.95669,198.35634,0,0,0,0,0,0,0,190.58322,192.0963,194.16268,0,0,0,0,0,0,0,0.00384,0.00452,0.00686,0,0,0,0,0,0,0,0.00385,0.00452,0.00687,0,0,0,0,0,0,0,0.00386,0.00452,0.00687,0,0,0,0,0,0,0,0.0039,0.00459,0.00698,0,0,0,0,0,0,0,0.00387,0.00454,0.00689,0,0,0,0,0,0,0,0.00391,0.00459,0.00698,0,0,0,0,0,0,0,0.00386,0.00454,0.0069,0,0,0,0,0,0,0,0.00387,0.00455,0.00691,0,0,0,0,0,0,0,0.00381,0.00447,0.00679,0,0,0,0,0,0,0,0.0127,0.01575,0.01776,0,0,0,0,0,0,0,0.01273,0.01578,0.0178,0,0,0,0,0,0,0,0.01277,0.01583,0.01785,0,0,0,0,0,0,0,0.01261,0.01564,0.01764,0,0,0,0,0,0,0,0.01275,0.0158,0.01782,0,0,0,0,0,0,0,0.01266,0.01569,0.0177,0,0,0,0,0,0,0,0.0127,0.01574,0.01776,0,0,0,0,0,0,0,0.01275,0.0158,0.01783,0,0,0,0,0,0,0,0.01278,0.01584,0.01786,0,0,0,0,0,0,0,0.20482,0.27196,0.31787,0,0,0,0,0,0,0,0.19944,0.27343,0.31953,0,0,0,0,0,0,0,0.22443,0.30273,0.35985,0,0,0,0,0,0,0,0.23482,0.31708,0.38009,0,0,0,0,0,0,0,0.21426,0.29315,0.35024,0,0,0,0,0,0,0,0.22353,0.3036,0.36313,0,0,0,0,0,0,0,0.21789,0.29095,0.34612,0,0,0,0,0,0,0,0.22817,0.3055,0.35907,0,0,0,0,0,0,0,0.20255,0.27295,0.31667,0,0,0,0,0,0,0,0.00268,0.00456,0.00796,0.00085,0.00277,0,0,0,0,0,0.00242,0.00417,0.00721,0.00086,0.00283,0,0,0,0,0,0.00264,0.00453,0.00784,0.00088,0.003,0,0,0,0,0,0.00282,0.00478,0.00838,0.00083,0.00262,0,0,0,0,0,0.00163,0.003,0.00501,0.00087,0.00296,0,0,0,0,0,0.00181,0.00334,0.00551,0.00085,0.00276,0,0,0,0,0,0.00158,0.00291,0.00487,0.00085,0.00279,0,0,0,0,0,0.00201,0.00356,0.00607,0.00086,0.00288,0,0,0,0,0,0.00159,0.00292,0.00489,0.00087,0.00289,0,0,0,0,0,0.01991,0.04721,0.05624,0.0268,0.03821,0,0,0,0,0,0.01982,0.04749,0.05566,0.02751,0.039,0,0,0,0,0,0.02157,0.05156,0.06043,0.02957,0.0413,0,0,0,0,0,0.01945,0.04554,0.05506,0.0253,0.03648,0,0,0,0,0,0.0191,0.04745,0.05327,0.02914,0.04081,0,0,0,0,0,0.01824,0.04487,0.05098,0.0269,0.03827,0,0,0,0,0,0.0177,0.04394,0.04959,0.02707,0.03849,0,0,0,0,0,0.0193,0.0471,0.05405,0.02813,0.03969,0,0,0,0,0,0.01815,0.04534,0.05103,0.02808,0.03967,0,0,0,0,0,0.00694,0.01569,0.02374,0.0084,0.01889,0,0,0,0,0,0.00649,0.01506,0.02236,0.00852,0.01908,0,0,0,0,0,0.00709,0.01623,0.02415,0.00887,0.01966,0,0,0,0,0,0.00714,0.01585,0.02434,0.00809,0.01838,0,0,0,0,0,0.00508,0.01307,0.01829,0.00879,0.01952,0,0,0,0,0,0.00528,0.01328,0.0188,0.00837,0.01883,0,0,0,0,0,0.00482,0.01243,0.0175,0.00843,0.01894,0,0,0,0,0,0.00574,0.01398,0.0202,0.00862,0.01926,0,0,0,0,0,0.00488,0.01266,0.01776,0.00865,0.01932,0,0,0,0,0,0.00624,0.00557,0.00189,0,0,0,0,0,0,0,0.0063,0.00561,0.0019,0,0,0,0,0,0,0,0.0064,0.00571,0.00193,0,0,0,0,0,0,0,0.00625,0.00557,0.00189,0,0,0,0,0,0,0,0.00642,0.0057,0.00192,0,0,0,0,0,0,0,0.00631,0.00564,0.00189,0,0,0,0,0,0,0,0.00636,0.00565,0.0019,0,0,0,0,0,0,0,0.00636,0.00566,0.00191,0,0,0,0,0,0,0,0.00624,0.00555,0.00187,0,0,0,0,0,0,0,0.17309,0.22998,0.2398,0,0,0,0,0,0,0,0.15347,0.21022,0.21897,0,0,0,0,0,0,0,0.1771,0.24228,0.2516,0,0,0,0,0,0,0,0.19699,0.26858,0.2782,0,0,0,0,0,0,0,0.10102,0.15389,0.15872,0,0,0,0,0,0,0,0.12241,0.18503,0.18602,0,0,0,0,0,0,0,0.09829,0.14818,0.15274,0,0,0,0,0,0,0,0.12955,0.18426,0.19085,0,0,0,0,0,0,0,0.08757,0.13193,0.13585,0,0,0,0,0,0 +Full size car,PH40E,2010,0,0.01481,0.01519,0.0158,0.01761,0,0,0,0,0,0,0.01523,0.01556,0.0161,0.01766,0,0,0,0,0,0,0.01654,0.01691,0.01751,0.01927,0,0,0,0,0,0,0.01406,0.01448,0.01516,0.01718,0,0,0,0,0,0,0.01607,0.01628,0.01662,0.01754,0,0,0,0,0,0,0.01484,0.01511,0.01547,0.01656,0,0,0,0,0,0,0.01476,0.01496,0.01529,0.01616,0,0,0,0,0,0,0.01552,0.0158,0.01623,0.01746,0,0,0,0,0,0,0.0152,0.01541,0.01572,0.01657,0,0,0,0,0,0,0.0233,0.01608,0.0124,0.01619,0,0,0,0,0,0,0.02006,0.0145,0.01137,0.01498,0,0,0,0,0,0,0.02274,0.01708,0.01339,0.0178,0,0,0,0,0,0,0.02629,0.01951,0.01521,0.01991,0,0,0,0,0,0,0.0127,0.01164,0.00972,0.01296,0,0,0,0,0,0,0.01475,0.01334,0.01078,0.0145,0,0,0,0,0,0,0.01231,0.01135,0.00951,0.01264,0,0,0,0,0,0,0.01643,0.01336,0.01076,0.01427,0,0,0,0,0,0,0.01184,0.01035,0.00849,0.01102,0,0,0,0,0,0,1.17276,1.82263,2.44097,3.12993,0,0,0,0,0,0,1.09815,1.79091,2.41803,3.09727,0,0,0,0,0,0,1.17422,1.99584,2.75458,3.57117,0,0,0,0,0,0,1.27726,2.16319,2.99139,3.86137,0,0,0,0,0,0,0.97501,1.8268,2.5641,3.2932,0,0,0,0,0,0,1.02648,1.92498,2.6668,3.44531,0,0,0,0,0,0,1.00634,1.86109,2.60414,3.33232,0,0,0,0,0,0,1.0597,1.85397,2.5515,3.27173,0,0,0,0,0,0,0.89787,1.60136,2.18358,2.76796,0,0,0,0,0,0,186.9143,188.2429,190.51619,194.49683,0,0,0,0,0,0,188.6885,189.91503,192.02638,195.76031,0,0,0,0,0,0,191.75741,193.03652,195.23737,199.12102,0,0,0,0,0,0,187.02917,188.3715,190.68349,194.72947,0,0,0,0,0,0,192.54492,193.39529,194.90462,197.71327,0,0,0,0,0,0,189.25482,190.93947,191.97744,195.1282,0,0,0,0,0,0,190.71334,191.52836,192.98546,195.70913,0,0,0,0,0,0,190.69878,191.71205,193.48253,196.692,0,0,0,0,0,0,187.1861,188.08037,189.63382,192.48847,0,0,0,0,0,0,0.00342,0.00387,0.00462,0.00603,0,0,0,0,0,0,0.00343,0.00388,0.00462,0.00603,0,0,0,0,0,0,0.00344,0.00388,0.00462,0.00602,0,0,0,0,0,0,0.00347,0.00393,0.00469,0.00613,0,0,0,0,0,0,0.00345,0.00389,0.00463,0.00604,0,0,0,0,0,0,0.00348,0.00393,0.00469,0.00613,0,0,0,0,0,0,0.00344,0.00389,0.00464,0.00606,0,0,0,0,0,0,0.00345,0.0039,0.00465,0.00606,0,0,0,0,0,0,0.00339,0.00383,0.00457,0.00596,0,0,0,0,0,0,0.00845,0.0098,0.01264,0.0135,0,0,0,0,0,0,0.00847,0.00982,0.01267,0.01353,0,0,0,0,0,0,0.00849,0.00985,0.01271,0.01357,0,0,0,0,0,0,0.00839,0.00973,0.01256,0.01341,0,0,0,0,0,0,0.00848,0.00983,0.01269,0.01355,0,0,0,0,0,0,0.00842,0.00977,0.0126,0.01346,0,0,0,0,0,0,0.00844,0.0098,0.01264,0.0135,0,0,0,0,0,0,0.00848,0.00983,0.01269,0.01355,0,0,0,0,0,0,0.0085,0.00986,0.01272,0.01358,0,0,0,0,0,0,0.05434,0.08882,0.09489,0.15927,0,0,0,0,0,0,0.05204,0.08849,0.09424,0.15894,0,0,0,0,0,0,0.05409,0.09763,0.10292,0.17853,0,0,0,0,0,0,0.05621,0.10373,0.10941,0.19038,0,0,0,0,0,0,0.04844,0.09163,0.09647,0.17054,0,0,0,0,0,0,0.05123,0.09649,0.10153,0.17871,0,0,0,0,0,0,0.04957,0.09158,0.09641,0.16903,0,0,0,0,0,0,0.0543,0.09786,0.10176,0.17607,0,0,0,0,0,0,0.04887,0.08687,0.09017,0.1539,0,0,0,0,0,0,0.0011,0.00169,0.00313,0.00614,0.0008,0.00122,0,0,0,0,0.00103,0.00158,0.00295,0.00568,0.00081,0.00123,0,0,0,0,0.00109,0.00167,0.00311,0.00608,0.00083,0.00128,0,0,0,0,0.00115,0.00178,0.00326,0.00647,0.00079,0.00118,0,0,0,0,0.00086,0.00129,0.00247,0.00439,0.00082,0.00127,0,0,0,0,0.00089,0.00137,0.00256,0.00468,0.0008,0.00121,0,0,0,0,0.00085,0.00127,0.00242,0.00429,0.00081,0.00122,0,0,0,0,0.00094,0.00143,0.0027,0.00502,0.00082,0.00125,0,0,0,0,0.00085,0.00128,0.00244,0.00431,0.00082,0.00126,0,0,0,0,0.01663,0.01799,0.04436,0.0525,0.02642,0.02917,0,0,0,0,0.01694,0.01818,0.04506,0.0525,0.02713,0.02989,0,0,0,0,0.01834,0.01967,0.04874,0.0568,0.02919,0.03198,0,0,0,0,0.01596,0.01741,0.0425,0.05112,0.02492,0.02761,0,0,0,0,0.0175,0.01843,0.04641,0.05191,0.02877,0.03154,0,0,0,0,0.01633,0.01745,0.04326,0.0492,0.02653,0.02925,0,0,0,0,0.01617,0.01708,0.04298,0.04832,0.02668,0.02943,0,0,0,0,0.0171,0.01818,0.0454,0.05184,0.02774,0.03051,0,0,0,0,0.01663,0.01753,0.04439,0.04974,0.02769,0.03048,0,0,0,0,0.00404,0.00524,0.01317,0.02043,0.00804,0.01057,0,0,0,0,0.00395,0.00504,0.01291,0.01955,0.00816,0.0107,0,0,0,0,0.00423,0.00541,0.01374,0.02094,0.00852,0.01109,0,0,0,0,0.00406,0.00534,0.01316,0.02085,0.00774,0.01022,0,0,0,0,0.00367,0.00449,0.01216,0.01709,0.00844,0.011,0,0,0,0,0.0036,0.00454,0.0119,0.01722,0.00803,0.01053,0,0,0,0,0.00347,0.00427,0.01159,0.01637,0.00808,0.0106,0,0,0,0,0.00379,0.00474,0.01248,0.01824,0.00827,0.01082,0,0,0,0,0.00353,0.00434,0.01182,0.01661,0.00829,0.01086,0,0,0,0,0.00612,0.00544,0.00183,0.00187,0,0,0,0,0,0,0.00618,0.00548,0.00185,0.00188,0,0,0,0,0,0,0.00628,0.00557,0.00188,0.00192,0,0,0,0,0,0,0.00612,0.00544,0.00184,0.00187,0,0,0,0,0,0,0.00631,0.00558,0.00188,0.0019,0,0,0,0,0,0,0.0062,0.00551,0.00185,0.00188,0,0,0,0,0,0,0.00625,0.00553,0.00186,0.00188,0,0,0,0,0,0,0.00624,0.00554,0.00186,0.00189,0,0,0,0,0,0,0.00613,0.00543,0.00183,0.00185,0,0,0,0,0,0,0.06856,0.09639,0.13066,0.18895,0,0,0,0,0,0,0.05804,0.0852,0.11788,0.17183,0,0,0,0,0,0,0.06684,0.10061,0.139,0.20306,0,0,0,0,0,0,0.07819,0.11615,0.1591,0.22947,0,0,0,0,0,0,0.03405,0.06278,0.09489,0.13833,0,0,0,0,0,0,0.04072,0.0738,0.10673,0.15712,0,0,0,0,0,0,0.0325,0.0604,0.09201,0.1339,0,0,0,0,0,0,0.04612,0.07522,0.10829,0.15788,0,0,0,0,0,0,0.0312,0.05543,0.0827,0.11807,0,0,0,0,0 +Full size car,PH40E,2015,0,0,0.01472,0.01501,0.01556,0.0169,0,0,0,0,0,0,0.01516,0.01542,0.01592,0.0171,0,0,0,0,0,0,0.01645,0.01674,0.01728,0.01859,0,0,0,0,0,0,0.01395,0.01427,0.01487,0.01635,0,0,0,0,0,0,0.01605,0.01623,0.01657,0.01731,0,0,0,0,0,0,0.01482,0.01501,0.01539,0.01626,0,0,0,0,0,0,0.01474,0.01492,0.01525,0.01597,0,0,0,0,0,0,0.01548,0.0157,0.01612,0.01708,0,0,0,0,0,0,0.01519,0.01536,0.01568,0.01638,0,0,0,0,0,0,0.01742,0.01145,0.01031,0.01187,0,0,0,0,0,0,0.01576,0.01061,0.00975,0.01121,0,0,0,0,0,0,0.01724,0.01232,0.01135,0.01315,0,0,0,0,0,0,0.01925,0.01375,0.0126,0.01457,0,0,0,0,0,0,0.01111,0.0091,0.00907,0.01044,0,0,0,0,0,0,0.01288,0.01009,0.00991,0.01145,0,0,0,0,0,0,0.01089,0.00892,0.00895,0.01028,0,0,0,0,0,0,0.01346,0.01009,0.00964,0.01109,0,0,0,0,0,0,0.0105,0.00811,0.00796,0.00903,0,0,0,0,0,0,0.92327,1.62722,2.1773,2.69171,0,0,0,0,0,0,0.90739,1.62572,2.19382,2.70338,0,0,0,0,0,0,0.94447,1.80348,2.49233,3.0924,0,0,0,0,0,0,1.01873,1.94001,2.68846,3.32436,0,0,0,0,0,0,0.85664,1.74617,2.44953,2.99999,0,0,0,0,0,0,0.89558,1.79188,2.51971,3.10255,0,0,0,0,0,0,0.88373,1.78575,2.49771,3.05148,0,0,0,0,0,0,0.89483,1.73112,2.38306,2.92436,0,0,0,0,0,0,0.79357,1.53256,2.0877,2.53785,0,0,0,0,0,0,169.35439,170.62991,171.88039,175.75356,0,0,0,0,0,0,170.91878,172.07964,173.17609,176.83946,0,0,0,0,0,0,173.71309,174.92961,176.09338,179.89186,0,0,0,0,0,0,169.47561,170.76946,172.05288,175.98614,0,0,0,0,0,0,174.26085,175.00149,175.53604,178.40736,0,0,0,0,0,0,171.97064,172.24245,172.99448,176.1556,0,0,0,0,0,0,172.59753,173.30214,173.79701,176.59259,0,0,0,0,0,0,172.65472,173.57782,174.35692,177.57123,0,0,0,0,0,0,169.41969,170.20959,170.80996,173.70645,0,0,0,0,0,0,0.00222,0.00251,0.0029,0.00387,0,0,0,0,0,0,0.00223,0.00252,0.00291,0.00388,0,0,0,0,0,0,0.00226,0.00254,0.00293,0.00389,0,0,0,0,0,0,0.00224,0.00253,0.00293,0.00392,0,0,0,0,0,0,0.00226,0.00255,0.00293,0.00389,0,0,0,0,0,0,0.00226,0.00255,0.00295,0.00393,0,0,0,0,0,0,0.00224,0.00253,0.00292,0.00389,0,0,0,0,0,0,0.00225,0.00254,0.00293,0.0039,0,0,0,0,0,0,0.00222,0.0025,0.00288,0.00384,0,0,0,0,0,0,0.00845,0.00987,0.01264,0.01273,0,0,0,0,0,0,0.00847,0.00989,0.01267,0.01276,0,0,0,0,0,0,0.00849,0.00992,0.01271,0.0128,0,0,0,0,0,0,0.00839,0.0098,0.01256,0.01264,0,0,0,0,0,0,0.00848,0.00991,0.01269,0.01278,0,0,0,0,0,0,0.00842,0.00984,0.0126,0.01269,0,0,0,0,0,0,0.00844,0.00987,0.01264,0.01273,0,0,0,0,0,0,0.00848,0.00991,0.01269,0.01278,0,0,0,0,0,0,0.0085,0.00993,0.01272,0.0128,0,0,0,0,0,0,0.04436,0.05877,0.08401,0.11345,0,0,0,0,0,0,0.04393,0.05803,0.08324,0.11256,0,0,0,0,0,0,0.0447,0.06358,0.09068,0.1239,0,0,0,0,0,0,0.04685,0.0678,0.0967,0.13236,0,0,0,0,0,0,0.03952,0.05803,0.08418,0.11607,0,0,0,0,0,0,0.04231,0.06161,0.08901,0.12254,0,0,0,0,0,0,0.04021,0.05801,0.0843,0.11581,0,0,0,0,0,0,0.04439,0.06223,0.0893,0.12167,0,0,0,0,0,0,0.04003,0.05477,0.07885,0.1068,0,0,0,0,0,0,0.00101,0.00151,0.00286,0.00504,0.00073,0.00084,0,0,0,0,0.00097,0.00144,0.00274,0.00475,0.00074,0.00085,0,0,0,0,0.001,0.0015,0.00285,0.005,0.00076,0.00087,0,0,0,0,0.00104,0.00156,0.00294,0.00523,0.00072,0.00082,0,0,0,0,0.00083,0.00123,0.00238,0.00396,0.00075,0.00086,0,0,0,0,0.00087,0.00127,0.00245,0.00413,0.00073,0.00084,0,0,0,0,0.00083,0.00122,0.00235,0.0039,0.00073,0.00084,0,0,0,0,0.0009,0.00133,0.00256,0.00435,0.00075,0.00086,0,0,0,0,0.00083,0.00122,0.00237,0.00391,0.00075,0.00086,0,0,0,0,0.0164,0.01751,0.04349,0.04963,0.02585,0.02677,0,0,0,0,0.01676,0.0178,0.04434,0.05008,0.02657,0.02748,0,0,0,0,0.01812,0.01921,0.04789,0.05401,0.02864,0.02954,0,0,0,0,0.01568,0.01684,0.04148,0.04792,0.02437,0.02527,0,0,0,0,0.01744,0.01827,0.04601,0.05065,0.02821,0.02912,0,0,0,0,0.01633,0.01713,0.04279,0.04767,0.02598,0.02687,0,0,0,0,0.01612,0.01694,0.04261,0.04714,0.02612,0.02703,0,0,0,0,0.01698,0.01791,0.04484,0.05002,0.02718,0.02809,0,0,0,0,0.01658,0.0174,0.04402,0.04855,0.02711,0.02804,0,0,0,0,0.00384,0.00482,0.01238,0.01788,0.00752,0.00837,0,0,0,0,0.00379,0.0047,0.01226,0.0174,0.00765,0.00849,0,0,0,0,0.00404,0.005,0.01298,0.01846,0.00801,0.00885,0,0,0,0,0.00381,0.00484,0.01225,0.018,0.00724,0.00806,0,0,0,0,0.00361,0.00435,0.01179,0.01596,0.00793,0.00876,0,0,0,0,0.00355,0.0043,0.01148,0.01585,0.00752,0.00834,0,0,0,0,0.00343,0.00415,0.01125,0.01531,0.00756,0.0084,0,0,0,0,0.00368,0.00451,0.01198,0.01661,0.00776,0.0086,0,0,0,0,0.00349,0.00421,0.01148,0.01555,0.00777,0.00862,0,0,0,0,0.00489,0.00164,0.00165,0.00169,0,0,0,0,0,0,0.00494,0.00166,0.00167,0.0017,0,0,0,0,0,0,0.00502,0.00168,0.00169,0.00173,0,0,0,0,0,0,0.00489,0.00164,0.00166,0.00169,0,0,0,0,0,0,0.00503,0.00168,0.00169,0.00172,0,0,0,0,0,0,0.00497,0.00166,0.00167,0.0017,0,0,0,0,0,0,0.00498,0.00167,0.00167,0.0017,0,0,0,0,0,0,0.00499,0.00167,0.00168,0.00171,0,0,0,0,0,0,0.00489,0.00164,0.00164,0.00167,0,0,0,0,0,0,0.04928,0.07166,0.10582,0.14492,0,0,0,0,0,0,0.0437,0.06543,0.09872,0.13516,0,0,0,0,0,0,0.04855,0.076,0.11478,0.15834,0,0,0,0,0,0,0.05496,0.0854,0.12808,0.17642,0,0,0,0,0,0,0.02847,0.05282,0.08723,0.12006,0,0,0,0,0,0,0.03417,0.05946,0.09647,0.13313,0,0,0,0,0,0,0.02754,0.05133,0.0854,0.11742,0,0,0,0,0,0,0.03605,0.06034,0.09503,0.13044,0,0,0,0,0,0,0.02646,0.0469,0.07642,0.10373,0,0,0,0 +Full size car,PH40E,2020,0,0,0,0.01462,0.01485,0.0152,0.01625,0,0,0,0,0,0,0.01507,0.01528,0.01559,0.01653,0,0,0,0,0,0,0.01636,0.01658,0.01692,0.01795,0,0,0,0,0,0,0.01384,0.01409,0.01447,0.01562,0,0,0,0,0,0,0.01599,0.01614,0.01635,0.01696,0,0,0,0,0,0,0.01475,0.0149,0.01515,0.01585,0,0,0,0,0,0,0.01469,0.01483,0.01504,0.01563,0,0,0,0,0,0,0.01541,0.01558,0.01585,0.01662,0,0,0,0,0,0,0.01513,0.01527,0.01548,0.01605,0,0,0,0,0,0,0.0134,0.0092,0.00759,0.00884,0,0,0,0,0,0,0.01189,0.00837,0.00704,0.00825,0,0,0,0,0,0,0.01323,0.00973,0.0082,0.00975,0,0,0,0,0,0,0.01496,0.01095,0.00918,0.01087,0,0,0,0,0,0,0.00762,0.00659,0.00601,0.00735,0,0,0,0,0,0,0.00892,0.00748,0.00671,0.00819,0,0,0,0,0,0,0.00738,0.00643,0.00591,0.00722,0,0,0,0,0,0,0.00975,0.00763,0.00666,0.00799,0,0,0,0,0,0,0.00707,0.00585,0.00527,0.0063,0,0,0,0,0,0,0.72676,1.08045,1.34617,1.79655,0,0,0,0,0,0,0.7098,1.06696,1.33753,1.78905,0,0,0,0,0,0,0.74496,1.18329,1.51578,2.06536,0,0,0,0,0,0,0.80954,1.28613,1.65507,2.24182,0,0,0,0,0,0,0.6579,1.10533,1.43117,1.95065,0,0,0,0,0,0,0.68397,1.14593,1.48913,2.0385,0,0,0,0,0,0,0.67711,1.13261,1.4639,1.98691,0,0,0,0,0,0,0.69348,1.11454,1.4204,1.92003,0,0,0,0,0,0,0.60644,0.97302,1.22576,1.63977,0,0,0,0,0,0,134.50766,135.44766,136.35274,144.41172,0,0,0,0,0,0,135.66845,136.51713,137.29339,145.19583,0,0,0,0,0,0,137.91364,138.80554,139.63582,147.73811,0,0,0,0,0,0,134.63523,135.59225,136.52692,144.64593,0,0,0,0,0,0,138.03345,138.54737,138.85676,146.10143,0,0,0,0,0,0,135.83994,136.4808,136.97271,144.41428,0,0,0,0,0,0,136.70446,137.19165,137.46992,144.60075,0,0,0,0,0,0,136.88482,137.54428,138.05669,145.58217,0,0,0,0,0,0,134.21691,134.76904,135.13235,142.27394,0,0,0,0,0,0,0.00226,0.00252,0.00289,0.00357,0,0,0,0,0,0,0.00227,0.00253,0.0029,0.00358,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00359,0,0,0,0,0,0,0.00228,0.00254,0.00292,0.00361,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.0023,0.00256,0.00293,0.00363,0,0,0,0,0,0,0.00228,0.00254,0.0029,0.00359,0,0,0,0,0,0,0.00229,0.00255,0.00292,0.0036,0,0,0,0,0,0,0.00226,0.00251,0.00287,0.00354,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00988,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.03062,0.04725,0.06336,0.0848,0,0,0,0,0,0,0.03,0.04643,0.06245,0.08372,0,0,0,0,0,0,0.03074,0.05067,0.06773,0.09219,0,0,0,0,0,0,0.0325,0.05435,0.0727,0.09918,0,0,0,0,0,0,0.02585,0.04509,0.06122,0.08429,0,0,0,0,0,0,0.02809,0.0484,0.06549,0.08997,0,0,0,0,0,0,0.02625,0.04528,0.06163,0.08439,0,0,0,0,0,0,0.02941,0.04916,0.06613,0.08963,0,0,0,0,0,0,0.02585,0.04281,0.05775,0.07762,0,0,0,0,0,0,0.00085,0.00123,0.00226,0.004,0.00073,0.0008,0,0,0,0,0.00081,0.00117,0.00217,0.00381,0.00074,0.00081,0,0,0,0,0.00084,0.00122,0.00225,0.00399,0.00076,0.00083,0,0,0,0,0.00087,0.00126,0.0023,0.00413,0.00072,0.00078,0,0,0,0,0.00071,0.00101,0.00192,0.00325,0.00075,0.00082,0,0,0,0,0.00073,0.00104,0.00196,0.00336,0.00073,0.0008,0,0,0,0,0.00071,0.001,0.00189,0.0032,0.00073,0.0008,0,0,0,0,0.00076,0.00109,0.00204,0.00352,0.00074,0.00082,0,0,0,0,0.00071,0.00101,0.0019,0.00321,0.00075,0.00082,0,0,0,0,0.01603,0.01687,0.04212,0.04728,0.02585,0.02644,0,0,0,0,0.01642,0.01721,0.04307,0.04795,0.02657,0.02715,0,0,0,0,0.01775,0.01859,0.04654,0.0517,0.02864,0.02921,0,0,0,0,0.01528,0.01617,0.04004,0.0454,0.02437,0.02494,0,0,0,0,0.01718,0.01781,0.04502,0.04911,0.02821,0.02879,0,0,0,0,0.01596,0.01663,0.04173,0.04599,0.02598,0.02655,0,0,0,0,0.01586,0.01649,0.04163,0.04563,0.02612,0.0267,0,0,0,0,0.01668,0.01739,0.04371,0.04819,0.02718,0.02776,0,0,0,0,0.01632,0.01694,0.04304,0.04705,0.02711,0.0277,0,0,0,0,0.00351,0.00425,0.01117,0.0158,0.00752,0.00806,0,0,0,0,0.00348,0.00418,0.01114,0.01551,0.00765,0.00818,0,0,0,0,0.00371,0.00445,0.01179,0.01642,0.00801,0.00854,0,0,0,0,0.00346,0.00424,0.01097,0.01577,0.00723,0.00776,0,0,0,0,0.00338,0.00394,0.01091,0.01459,0.00793,0.00846,0,0,0,0,0.00327,0.00386,0.01054,0.01436,0.00752,0.00804,0,0,0,0,0.0032,0.00375,0.01039,0.01398,0.00756,0.0081,0,0,0,0,0.00341,0.00404,0.01098,0.015,0.00776,0.00829,0,0,0,0,0.00326,0.00381,0.01061,0.01422,0.00777,0.00831,0,0,0,0,0.00129,0.0013,0.00131,0.00139,0,0,0,0,0,0,0.00131,0.00131,0.00132,0.0014,0,0,0,0,0,0,0.00133,0.00134,0.00134,0.00142,0,0,0,0,0,0,0.0013,0.00131,0.00131,0.00139,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00141,0,0,0,0,0,0,0.00131,0.00131,0.00132,0.00139,0,0,0,0,0,0,0.00132,0.00132,0.00132,0.00139,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.0014,0,0,0,0,0,0,0.00129,0.0013,0.0013,0.00137,0,0,0,0,0,0,0.04108,0.05721,0.07809,0.10912,0,0,0,0,0,0,0.03606,0.05132,0.0712,0.10039,0,0,0,0,0,0,0.04053,0.05963,0.08282,0.11862,0,0,0,0,0,0,0.04614,0.06749,0.09329,0.13303,0,0,0,0,0,0,0.02204,0.0376,0.0565,0.08453,0,0,0,0,0,0,0.02635,0.04348,0.06418,0.09537,0,0,0,0,0,0,0.02114,0.03632,0.05497,0.08231,0,0,0,0,0,0,0.02901,0.04516,0.06494,0.09443,0,0,0,0,0,0,0.02016,0.03323,0.04937,0.07221,0,0,0 +Full size car,PH40E,2025,0,0,0,0,0.01447,0.01461,0.01484,0.01556,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01591,0,0,0,0,0,0,0.01621,0.01635,0.01658,0.01728,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01487,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01655,0,0,0,0,0,0,0.01463,0.01473,0.0149,0.01538,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01523,0,0,0,0,0,0,0.01529,0.0154,0.01557,0.0161,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01566,0,0,0,0,0,0,0.01175,0.00745,0.00589,0.0068,0,0,0,0,0,0,0.0102,0.00659,0.00531,0.00619,0,0,0,0,0,0,0.01152,0.00769,0.00619,0.00731,0,0,0,0,0,0,0.0132,0.00876,0.00702,0.00823,0,0,0,0,0,0,0.00581,0.00451,0.00398,0.00493,0,0,0,0,0,0,0.0071,0.00531,0.00459,0.00564,0,0,0,0,0,0,0.00555,0.00435,0.00387,0.00481,0,0,0,0,0,0,0.00797,0.00562,0.00471,0.00566,0,0,0,0,0,0,0.00529,0.00397,0.00347,0.00422,0,0,0,0,0,0,0.54269,0.78169,0.98281,1.29253,0,0,0,0,0,0,0.51814,0.75785,0.96016,1.26692,0,0,0,0,0,0,0.54817,0.84174,1.08757,1.45743,0,0,0,0,0,0,0.60445,0.92727,1.20144,1.59986,0,0,0,0,0,0,0.44449,0.73889,0.97286,1.31136,0,0,0,0,0,0,0.4724,0.77858,1.02643,1.38704,0,0,0,0,0,0,0.45672,0.75774,0.9963,1.33773,0,0,0,0,0,0,0.4871,0.76702,0.99053,1.32211,0,0,0,0,0,0,0.41063,0.65251,0.8358,1.10802,0,0,0,0,0,0,108.83189,109.64422,110.59037,117.50382,0,0,0,0,0,0,109.70596,110.44178,111.27562,118.04139,0,0,0,0,0,0,111.54336,112.31587,113.20016,120.14203,0,0,0,0,0,0,108.96082,109.7884,110.76271,117.73489,0,0,0,0,0,0,111.38871,111.84311,112.26831,118.42254,0,0,0,0,0,0,109.71215,110.2732,110.85759,117.20119,0,0,0,0,0,0,110.30728,110.73915,111.13654,117.19245,0,0,0,0,0,0,110.56057,111.13728,111.74034,118.1562,0,0,0,0,0,0,108.32229,108.80715,109.27323,115.34078,0,0,0,0,0,0,0.00228,0.00252,0.00288,0.00351,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.00229,0.00254,0.00291,0.00355,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00231,0.00256,0.00292,0.00357,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00353,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00227,0.00251,0.00286,0.00348,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02345,0.03423,0.04552,0.06209,0,0,0,0,0,0,0.0227,0.03329,0.04444,0.06079,0,0,0,0,0,0,0.02329,0.03604,0.04786,0.06653,0,0,0,0,0,0,0.02485,0.03895,0.05174,0.07201,0,0,0,0,0,0,0.01846,0.03058,0.04149,0.05865,0,0,0,0,0,0,0.02058,0.0335,0.04518,0.06356,0,0,0,0,0,0,0.01881,0.03086,0.04195,0.05894,0,0,0,0,0,0,0.02154,0.03409,0.04569,0.06347,0,0,0,0,0,0,0.01842,0.02914,0.03928,0.05421,0,0,0,0,0,0,0.00056,0.00079,0.00164,0.00291,0.00073,0.00079,0,0,0,0,0.00053,0.00075,0.00158,0.00279,0.00074,0.0008,0,0,0,0,0.00055,0.00078,0.00164,0.00291,0.00076,0.00081,0,0,0,0,0.00057,0.00081,0.00166,0.00299,0.00072,0.00077,0,0,0,0,0.00046,0.00065,0.00142,0.00242,0.00075,0.00081,0,0,0,0,0.00048,0.00067,0.00144,0.00249,0.00073,0.00078,0,0,0,0,0.00046,0.00064,0.0014,0.00238,0.00073,0.00079,0,0,0,0,0.0005,0.0007,0.0015,0.0026,0.00074,0.0008,0,0,0,0,0.00046,0.00065,0.00141,0.0024,0.00075,0.0008,0,0,0,0,0.01539,0.01591,0.04074,0.04481,0.02585,0.02632,0,0,0,0,0.01582,0.0163,0.04178,0.04566,0.02657,0.02703,0,0,0,0,0.01712,0.01763,0.04518,0.04926,0.02864,0.0291,0,0,0,0,0.01462,0.01517,0.0386,0.04278,0.02437,0.02482,0,0,0,0,0.01667,0.01706,0.04397,0.04734,0.02821,0.02867,0,0,0,0,0.01543,0.01584,0.04062,0.04409,0.02598,0.02643,0,0,0,0,0.01536,0.01574,0.0406,0.04389,0.02612,0.02658,0,0,0,0,0.01612,0.01656,0.04254,0.04616,0.02718,0.02764,0,0,0,0,0.01581,0.01619,0.042,0.04531,0.02711,0.02758,0,0,0,0,0.00294,0.0034,0.00996,0.01361,0.00752,0.00795,0,0,0,0,0.00295,0.00338,0.00999,0.01349,0.00765,0.00807,0,0,0,0,0.00315,0.00361,0.01059,0.01426,0.00801,0.00843,0,0,0,0,0.00288,0.00336,0.0097,0.01345,0.00723,0.00765,0,0,0,0,0.00292,0.00327,0.00999,0.01302,0.00793,0.00835,0,0,0,0,0.0028,0.00316,0.00956,0.01268,0.00752,0.00794,0,0,0,0,0.00275,0.00309,0.00947,0.01244,0.00756,0.00799,0,0,0,0,0.00292,0.00331,0.00994,0.0132,0.00776,0.00818,0,0,0,0,0.00281,0.00315,0.0097,0.01268,0.00777,0.0082,0,0,0,0,0.00105,0.00106,0.00106,0.00113,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00114,0,0,0,0,0,0,0.00107,0.00108,0.00109,0.00116,0,0,0,0,0,0,0.00105,0.00106,0.00107,0.00113,0,0,0,0,0,0,0.00107,0.00108,0.00108,0.00114,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00113,0,0,0,0,0,0,0.00106,0.00107,0.00107,0.00113,0,0,0,0,0,0,0.00106,0.00107,0.00108,0.00114,0,0,0,0,0,0,0.00104,0.00105,0.00105,0.00111,0,0,0,0,0,0,0.03648,0.04753,0.06259,0.08583,0,0,0,0,0,0,0.03131,0.0415,0.05547,0.07697,0,0,0,0,0,0,0.0357,0.04837,0.06468,0.09081,0,0,0,0,0,0,0.04118,0.0555,0.07382,0.10302,0,0,0,0,0,0,0.01683,0.02613,0.03814,0.05716,0,0,0,0,0,0,0.02108,0.03156,0.04501,0.06652,0,0,0,0,0,0,0.01591,0.02492,0.0367,0.05518,0,0,0,0,0,0,0.02395,0.0341,0.0473,0.06809,0,0,0,0,0,0,0.01512,0.02291,0.03317,0.04876,0,0 +Full size car,PH40E,2030,0,0,0,0,0,0.01447,0.01461,0.01484,0.01537,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01574,0,0,0,0,0,0,0.01621,0.01634,0.01658,0.01709,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01466,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01644,0,0,0,0,0,0,0.01463,0.01473,0.01489,0.01525,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01512,0,0,0,0,0,0,0.01529,0.01539,0.01557,0.01597,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01555,0,0,0,0,0,0,0.01118,0.00689,0.00539,0.00599,0,0,0,0,0,0,0.00961,0.00603,0.0048,0.00537,0,0,0,0,0,0,0.01092,0.00703,0.0056,0.00631,0,0,0,0,0,0,0.01258,0.00806,0.00638,0.00716,0,0,0,0,0,0,0.0052,0.00385,0.00339,0.00394,0,0,0,0,0,0,0.00648,0.00463,0.00397,0.00459,0,0,0,0,0,0,0.00493,0.0037,0.00328,0.00382,0,0,0,0,0,0,0.00737,0.00499,0.00414,0.00472,0,0,0,0,0,0,0.0047,0.00339,0.00295,0.00338,0,0,0,0,0,0,0.49279,0.70559,0.89367,1.12069,0,0,0,0,0,0,0.46645,0.67934,0.86771,1.08836,0,0,0,0,0,0,0.49502,0.75487,0.98288,1.24543,0,0,0,0,0,0,0.54881,0.83547,1.09017,1.37543,0,0,0,0,0,0,0.38758,0.64643,0.86099,1.08788,0,0,0,0,0,0,0.41574,0.68553,0.91328,1.15812,0,0,0,0,0,0,0.39792,0.66302,0.88193,1.11097,0,0,0,0,0,0,0.4317,0.67912,0.88539,1.1145,0,0,0,0,0,0,0.35828,0.57172,0.74034,0.92474,0,0,0,0,0,0,100.15285,101.1639,102.73024,107.15133,0,0,0,0,0,0,100.93296,101.87507,103.33899,107.60231,0,0,0,0,0,0,102.63155,103.61218,105.13573,109.53052,0,0,0,0,0,0,100.28143,101.30717,102.90246,107.37875,0,0,0,0,0,0,102.39547,103.0811,104.1621,107.81066,0,0,0,0,0,0,100.88931,101.66974,102.89378,106.75648,0,0,0,0,0,0,101.39806,102.06045,103.10852,106.68577,0,0,0,0,0,0,101.67116,102.46795,103.71499,107.62883,0,0,0,0,0,0,99.58131,100.2873,101.38751,105.01193,0,0,0,0,0,0,0.00227,0.00251,0.00287,0.00349,0,0,0,0,0,0,0.00229,0.00252,0.00288,0.0035,0,0,0,0,0,0,0.00231,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00229,0.00253,0.0029,0.00353,0,0,0,0,0,0,0.00231,0.00254,0.00291,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00229,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00227,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00979,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00982,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00988,0.01272,0.01272,0,0,0,0,0,0,0.02069,0.02955,0.03997,0.05281,0,0,0,0,0,0,0.01988,0.02857,0.03884,0.05142,0,0,0,0,0,0,0.02038,0.03077,0.04168,0.05581,0,0,0,0,0,0,0.02182,0.03338,0.04522,0.06056,0,0,0,0,0,0,0.0156,0.02539,0.03537,0.04796,0,0,0,0,0,0,0.01765,0.02815,0.03887,0.0525,0,0,0,0,0,0,0.01594,0.02569,0.03583,0.04836,0,0,0,0,0,0,0.01847,0.02867,0.03931,0.05259,0,0,0,0,0,0,0.01556,0.02425,0.03353,0.04463,0,0,0,0,0,0,0.00055,0.00079,0.00163,0.00263,0.00073,0,0,0,0,0,0.00053,0.00075,0.00158,0.00253,0.00074,0,0,0,0,0,0.00055,0.00078,0.00164,0.00263,0.00076,0,0,0,0,0,0.00057,0.00081,0.00166,0.00269,0.00072,0,0,0,0,0,0.00046,0.00065,0.00142,0.00222,0.00075,0,0,0,0,0,0.00048,0.00067,0.00144,0.00227,0.00073,0,0,0,0,0,0.00046,0.00064,0.0014,0.00218,0.00073,0,0,0,0,0,0.0005,0.0007,0.0015,0.00237,0.00074,0,0,0,0,0,0.00046,0.00064,0.00141,0.00219,0.00075,0,0,0,0,0,0.01539,0.0159,0.04074,0.04416,0.02585,0,0,0,0,0,0.01581,0.0163,0.04177,0.04506,0.02657,0,0,0,0,0,0.01712,0.01763,0.04518,0.04862,0.02864,0,0,0,0,0,0.01462,0.01516,0.0386,0.04209,0.02437,0,0,0,0,0,0.01666,0.01705,0.04397,0.04688,0.02821,0,0,0,0,0,0.01543,0.01584,0.04062,0.04359,0.02598,0,0,0,0,0,0.01535,0.01574,0.0406,0.04344,0.02612,0,0,0,0,0,0.01612,0.01655,0.04254,0.04564,0.02718,0,0,0,0,0,0.01581,0.01619,0.042,0.04487,0.02711,0,0,0,0,0,0.00294,0.0034,0.00995,0.01303,0.00752,0,0,0,0,0,0.00295,0.00338,0.00999,0.01296,0.00765,0,0,0,0,0,0.00315,0.0036,0.01058,0.01369,0.00801,0,0,0,0,0,0.00287,0.00335,0.0097,0.01284,0.00723,0,0,0,0,0,0.00292,0.00327,0.00998,0.01262,0.00793,0,0,0,0,0,0.0028,0.00316,0.00956,0.01224,0.00752,0,0,0,0,0,0.00275,0.00309,0.00947,0.01204,0.00756,0,0,0,0,0,0.00292,0.0033,0.00994,0.01274,0.00776,0,0,0,0,0,0.00281,0.00315,0.00969,0.01229,0.00777,0,0,0,0,0,0.00096,0.00097,0.00099,0.00103,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00104,0,0,0,0,0,0,0.00099,0.001,0.00101,0.00105,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00104,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00098,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00104,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.00101,0,0,0,0,0,0,0.0348,0.04434,0.05814,0.07671,0,0,0,0,0,0,0.02962,0.0383,0.05099,0.06774,0,0,0,0,0,0,0.03395,0.04469,0.0595,0.07958,0,0,0,0,0,0,0.03934,0.05153,0.06825,0.09091,0,0,0,0,0,0,0.01511,0.02254,0.03298,0.04602,0,0,0,0,0,0,0.01931,0.02779,0.0396,0.05474,0,0,0,0,0,0,0.01418,0.02136,0.03155,0.04416,0,0,0,0,0,0,0.02222,0.03058,0.04231,0.05748,0,0,0,0,0,0,0.01346,0.0197,0.02861,0.03942,0 +Full size car,PH40E,2035,0,0,0,0,0,0,0.01447,0.01461,0.01484,0.01535,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01573,0,0,0,0,0,0,0.01621,0.01634,0.01658,0.01707,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01464,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01642,0,0,0,0,0,0,0.01463,0.01473,0.0149,0.01524,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01511,0,0,0,0,0,0,0.01529,0.0154,0.01557,0.01595,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01554,0,0,0,0,0,0,0.0111,0.00688,0.00539,0.00588,0,0,0,0,0,0,0.00955,0.00602,0.0048,0.00525,0,0,0,0,0,0,0.01085,0.00702,0.00561,0.00616,0,0,0,0,0,0,0.0125,0.00805,0.00639,0.007,0,0,0,0,0,0,0.00517,0.00385,0.00339,0.00378,0,0,0,0,0,0,0.00644,0.00463,0.00397,0.00442,0,0,0,0,0,0,0.00491,0.0037,0.00328,0.00366,0,0,0,0,0,0,0.00732,0.00499,0.00415,0.00457,0,0,0,0,0,0,0.00467,0.00339,0.00295,0.00325,0,0,0,0,0,0,0.49328,0.70624,0.8941,1.09646,0,0,0,0,0,0,0.46713,0.68,0.86809,1.06284,0,0,0,0,0,0,0.49582,0.75568,0.98332,1.21476,0,0,0,0,0,0,0.54965,0.83636,1.09066,1.34289,0,0,0,0,0,0,0.3889,0.64721,0.86124,1.05453,0,0,0,0,0,0,0.417,0.68635,0.91358,1.12407,0,0,0,0,0,0,0.3993,0.66379,0.88217,1.07713,0,0,0,0,0,0,0.43277,0.67983,0.8857,1.08401,0,0,0,0,0,0,0.35938,0.57229,0.74057,0.89763,0,0,0,0,0,0,100.12908,101.16888,102.73959,105.62821,0,0,0,0,0,0,100.91068,101.87976,103.34754,106.06452,0,0,0,0,0,0,102.60822,103.61713,105.14496,107.96812,0,0,0,0,0,0,100.25694,101.3122,102.91196,105.856,0,0,0,0,0,0,102.37799,103.08425,104.16796,106.23975,0,0,0,0,0,0,100.86988,101.67348,102.90085,105.21364,0,0,0,0,0,0,101.3812,102.06357,103.11422,105.13019,0,0,0,0,0,0,101.65163,102.4718,103.72222,106.07383,0,0,0,0,0,0,99.56447,100.29083,101.39397,103.48375,0,0,0,0,0,0,0.00227,0.00251,0.00288,0.0035,0,0,0,0,0,0,0.00228,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00352,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.0023,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00356,0,0,0,0,0,0,0.00228,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00353,0,0,0,0,0,0,0.00226,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.02067,0.02962,0.04,0.05143,0,0,0,0,0,0,0.01987,0.02864,0.03886,0.05001,0,0,0,0,0,0,0.02038,0.03085,0.04171,0.05417,0,0,0,0,0,0,0.02183,0.03347,0.04524,0.05879,0,0,0,0,0,0,0.01562,0.02547,0.03539,0.04628,0,0,0,0,0,0,0.01766,0.02823,0.03889,0.05078,0,0,0,0,0,0,0.01595,0.02577,0.03585,0.04671,0,0,0,0,0,0,0.01848,0.02874,0.03933,0.05091,0,0,0,0,0,0,0.01557,0.02432,0.03355,0.04316,0,0,0,0,0,0,0.00055,0.00079,0.00164,0.0026,0,0,0,0,0,0,0.00053,0.00075,0.00158,0.0025,0,0,0,0,0,0,0.00055,0.00078,0.00164,0.0026,0,0,0,0,0,0,0.00057,0.00081,0.00166,0.00266,0,0,0,0,0,0,0.00046,0.00065,0.00142,0.00219,0,0,0,0,0,0,0.00048,0.00067,0.00144,0.00225,0,0,0,0,0,0,0.00046,0.00064,0.0014,0.00216,0,0,0,0,0,0,0.0005,0.0007,0.0015,0.00234,0,0,0,0,0,0,0.00046,0.00065,0.00141,0.00217,0,0,0,0,0,0,0.01539,0.01591,0.04074,0.04408,0,0,0,0,0,0,0.01582,0.0163,0.04177,0.04499,0,0,0,0,0,0,0.01712,0.01763,0.04518,0.04855,0,0,0,0,0,0,0.01462,0.01516,0.0386,0.04201,0,0,0,0,0,0,0.01666,0.01705,0.04397,0.04683,0,0,0,0,0,0,0.01543,0.01584,0.04062,0.04354,0,0,0,0,0,0,0.01536,0.01574,0.0406,0.04339,0,0,0,0,0,0,0.01612,0.01655,0.04254,0.04558,0,0,0,0,0,0,0.01581,0.01619,0.042,0.04482,0,0,0,0,0,0,0.00294,0.0034,0.00995,0.01297,0,0,0,0,0,0,0.00295,0.00338,0.00999,0.0129,0,0,0,0,0,0,0.00315,0.00361,0.01059,0.01363,0,0,0,0,0,0,0.00287,0.00336,0.0097,0.01277,0,0,0,0,0,0,0.00292,0.00327,0.00998,0.01258,0,0,0,0,0,0,0.0028,0.00316,0.00956,0.01219,0,0,0,0,0,0,0.00275,0.00309,0.00947,0.012,0,0,0,0,0,0,0.00292,0.00331,0.00994,0.01268,0,0,0,0,0,0,0.00281,0.00315,0.0097,0.01225,0,0,0,0,0,0,0.00096,0.00097,0.00099,0.00102,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00102,0,0,0,0,0,0,0.00099,0.001,0.00101,0.00104,0,0,0,0,0,0,0.00096,0.00098,0.00099,0.00102,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00102,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00101,0,0,0,0,0,0,0.00098,0.00098,0.00099,0.00101,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00102,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.001,0,0,0,0,0,0,0.03472,0.0444,0.0582,0.07543,0,0,0,0,0,0,0.02956,0.03836,0.05103,0.0664,0,0,0,0,0,0,0.03388,0.04475,0.05956,0.07789,0,0,0,0,0,0,0.03926,0.05161,0.06831,0.0891,0,0,0,0,0,0,0.01509,0.02259,0.033,0.04421,0,0,0,0,0,0,0.01928,0.02785,0.03963,0.05284,0,0,0,0,0,0,0.01417,0.02141,0.03158,0.04236,0,0,0,0,0,0,0.02218,0.03064,0.04235,0.05583,0,0,0,0,0,0,0.01345,0.01974,0.02864,0.03794 +Full size car,PH40E,2040,0,0,0,0,0,0,0,0.01447,0.01461,0.01484,0,0,0,0,0,0,0,0.01493,0.01506,0.01527,0,0,0,0,0,0,0,0.01621,0.01634,0.01658,0,0,0,0,0,0,0,0.01368,0.01383,0.01409,0,0,0,0,0,0,0,0.01589,0.01598,0.01612,0,0,0,0,0,0,0,0.01463,0.01473,0.0149,0,0,0,0,0,0,0,0.01459,0.01467,0.01481,0,0,0,0,0,0,0,0.01529,0.0154,0.01557,0,0,0,0,0,0,0,0.01504,0.01512,0.01526,0,0,0,0,0,0,0,0.01111,0.00688,0.00539,0,0,0,0,0,0,0,0.00955,0.00602,0.0048,0,0,0,0,0,0,0,0.01086,0.00702,0.0056,0,0,0,0,0,0,0,0.0125,0.00805,0.00639,0,0,0,0,0,0,0,0.00517,0.00385,0.00339,0,0,0,0,0,0,0,0.00644,0.00463,0.00397,0,0,0,0,0,0,0,0.00491,0.00369,0.00328,0,0,0,0,0,0,0,0.00732,0.00499,0.00414,0,0,0,0,0,0,0,0.00468,0.00339,0.00295,0,0,0,0,0,0,0,0.49262,0.70571,0.89387,0,0,0,0,0,0,0,0.46647,0.67949,0.86788,0,0,0,0,0,0,0,0.49507,0.75507,0.98309,0,0,0,0,0,0,0,0.54881,0.83568,1.0904,0,0,0,0,0,0,0,0.38823,0.64672,0.8611,0,0,0,0,0,0,0,0.41629,0.68581,0.91342,0,0,0,0,0,0,0,0.39863,0.66331,0.88203,0,0,0,0,0,0,0,0.43209,0.67933,0.88553,0,0,0,0,0,0,0,0.3588,0.5719,0.74045,0,0,0,0,0,0,0,100.12258,101.16072,102.73451,0,0,0,0,0,0,0,100.90455,101.87217,103.34298,0,0,0,0,0,0,0,102.60183,103.60905,105.13987,0,0,0,0,0,0,0,100.25026,101.30379,102.90675,0,0,0,0,0,0,0,102.37347,103.07861,104.16463,0,0,0,0,0,0,0,100.86473,101.66702,102.89697,0,0,0,0,0,0,0,101.37673,102.05796,103.11102,0,0,0,0,0,0,0,101.64635,102.46522,103.71813,0,0,0,0,0,0,0,99.55975,100.28504,101.39044,0,0,0,0,0,0,0,0.00227,0.00251,0.00287,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00228,0.00253,0.0029,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.0023,0.00255,0.00292,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.00226,0.0025,0.00286,0,0,0,0,0,0,0,0.00845,0.00983,0.01264,0,0,0,0,0,0,0,0.00847,0.00986,0.01267,0,0,0,0,0,0,0,0.00849,0.00988,0.01271,0,0,0,0,0,0,0,0.00839,0.00977,0.01256,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.00842,0.0098,0.0126,0,0,0,0,0,0,0,0.00844,0.00983,0.01264,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.0085,0.00989,0.01272,0,0,0,0,0,0,0,0.02065,0.02958,0.03999,0,0,0,0,0,0,0,0.01985,0.0286,0.03885,0,0,0,0,0,0,0,0.02035,0.03081,0.04169,0,0,0,0,0,0,0,0.0218,0.03342,0.04523,0,0,0,0,0,0,0,0.0156,0.02543,0.03538,0,0,0,0,0,0,0,0.01764,0.02818,0.03888,0,0,0,0,0,0,0,0.01593,0.02572,0.03584,0,0,0,0,0,0,0,0.01845,0.0287,0.03932,0,0,0,0,0,0,0,0.01555,0.02429,0.03354,0,0,0,0,0,0,0,0.00055,0.00079,0.00163,0,0,0,0,0,0,0,0.00053,0.00075,0.00158,0,0,0,0,0,0,0,0.00055,0.00078,0.00164,0,0,0,0,0,0,0,0.00057,0.00081,0.00166,0,0,0,0,0,0,0,0.00046,0.00065,0.00142,0,0,0,0,0,0,0,0.00048,0.00067,0.00144,0,0,0,0,0,0,0,0.00046,0.00064,0.0014,0,0,0,0,0,0,0,0.0005,0.0007,0.0015,0,0,0,0,0,0,0,0.00046,0.00065,0.00141,0,0,0,0,0,0,0,0.01539,0.01591,0.04074,0,0,0,0,0,0,0,0.01581,0.0163,0.04177,0,0,0,0,0,0,0,0.01712,0.01763,0.04518,0,0,0,0,0,0,0,0.01462,0.01516,0.0386,0,0,0,0,0,0,0,0.01666,0.01705,0.04397,0,0,0,0,0,0,0,0.01543,0.01584,0.04062,0,0,0,0,0,0,0,0.01535,0.01574,0.0406,0,0,0,0,0,0,0,0.01612,0.01655,0.04254,0,0,0,0,0,0,0,0.01581,0.01619,0.042,0,0,0,0,0,0,0,0.00294,0.0034,0.00995,0,0,0,0,0,0,0,0.00295,0.00338,0.00999,0,0,0,0,0,0,0,0.00315,0.0036,0.01058,0,0,0,0,0,0,0,0.00287,0.00335,0.0097,0,0,0,0,0,0,0,0.00292,0.00327,0.00998,0,0,0,0,0,0,0,0.0028,0.00316,0.00956,0,0,0,0,0,0,0,0.00275,0.00309,0.00947,0,0,0,0,0,0,0,0.00292,0.00331,0.00994,0,0,0,0,0,0,0,0.00281,0.00315,0.00969,0,0,0,0,0,0,0,0.00096,0.00097,0.00099,0,0,0,0,0,0,0,0.00097,0.00098,0.00099,0,0,0,0,0,0,0,0.00099,0.001,0.00101,0,0,0,0,0,0,0,0.00096,0.00098,0.00099,0,0,0,0,0,0,0,0.00099,0.00099,0.001,0,0,0,0,0,0,0,0.00097,0.00098,0.00099,0,0,0,0,0,0,0,0.00098,0.00098,0.00099,0,0,0,0,0,0,0,0.00098,0.00099,0.001,0,0,0,0,0,0,0,0.00096,0.00097,0.00098,0,0,0,0,0,0,0,0.03468,0.04435,0.05817,0,0,0,0,0,0,0,0.02952,0.03831,0.05101,0,0,0,0,0,0,0,0.03384,0.0447,0.05953,0,0,0,0,0,0,0,0.03921,0.05154,0.06828,0,0,0,0,0,0,0,0.01507,0.02256,0.03299,0,0,0,0,0,0,0,0.01926,0.02781,0.03962,0,0,0,0,0,0,0,0.01415,0.02137,0.03157,0,0,0,0,0,0,0,0.02215,0.0306,0.04233,0,0,0,0,0,0,0,0.01343,0.01971,0.02862 +Full size car,PH40E,2045,0,0,0,0,0,0,0,0,0.01447,0.01461,0,0,0,0,0,0,0,0,0.01493,0.01506,0,0,0,0,0,0,0,0,0.01621,0.01634,0,0,0,0,0,0,0,0,0.01368,0.01383,0,0,0,0,0,0,0,0,0.01589,0.01598,0,0,0,0,0,0,0,0,0.01463,0.01473,0,0,0,0,0,0,0,0,0.01459,0.01467,0,0,0,0,0,0,0,0,0.01529,0.0154,0,0,0,0,0,0,0,0,0.01504,0.01512,0,0,0,0,0,0,0,0,0.01111,0.00688,0,0,0,0,0,0,0,0,0.00955,0.00602,0,0,0,0,0,0,0,0,0.01086,0.00702,0,0,0,0,0,0,0,0,0.0125,0.00805,0,0,0,0,0,0,0,0,0.00517,0.00385,0,0,0,0,0,0,0,0,0.00644,0.00463,0,0,0,0,0,0,0,0,0.00491,0.00369,0,0,0,0,0,0,0,0,0.00732,0.00499,0,0,0,0,0,0,0,0,0.00468,0.00339,0,0,0,0,0,0,0,0,0.4922,0.70558,0,0,0,0,0,0,0,0,0.46607,0.67937,0,0,0,0,0,0,0,0,0.4946,0.75492,0,0,0,0,0,0,0,0,0.5483,0.83552,0,0,0,0,0,0,0,0,0.38784,0.64659,0,0,0,0,0,0,0,0,0.41587,0.68568,0,0,0,0,0,0,0,0,0.39823,0.66318,0,0,0,0,0,0,0,0,0.43167,0.67921,0,0,0,0,0,0,0,0,0.35846,0.57181,0,0,0,0,0,0,0,0,100.1174,101.15894,0,0,0,0,0,0,0,0,100.90011,101.87099,0,0,0,0,0,0,0,0,102.59679,103.60737,0,0,0,0,0,0,0,0,100.24505,101.30215,0,0,0,0,0,0,0,0,102.36969,103.07715,0,0,0,0,0,0,0,0,100.86083,101.6658,0,0,0,0,0,0,0,0,101.37305,102.05673,0,0,0,0,0,0,0,0,101.6424,102.46407,0,0,0,0,0,0,0,0,99.55584,100.28345,0,0,0,0,0,0,0,0,0.00227,0.00251,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00228,0.00253,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.0023,0.00255,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00226,0.0025,0,0,0,0,0,0,0,0,0.00845,0.00983,0,0,0,0,0,0,0,0,0.00847,0.00985,0,0,0,0,0,0,0,0,0.00849,0.00988,0,0,0,0,0,0,0,0,0.00839,0.00976,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.00842,0.0098,0,0,0,0,0,0,0,0,0.00844,0.00983,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.0085,0.00989,0,0,0,0,0,0,0,0,0.02064,0.02957,0,0,0,0,0,0,0,0,0.01984,0.02858,0,0,0,0,0,0,0,0,0.02033,0.03079,0,0,0,0,0,0,0,0,0.02178,0.03341,0,0,0,0,0,0,0,0,0.01558,0.02541,0,0,0,0,0,0,0,0,0.01762,0.02817,0,0,0,0,0,0,0,0,0.01592,0.02571,0,0,0,0,0,0,0,0,0.01844,0.02869,0,0,0,0,0,0,0,0,0.01554,0.02427,0.03695,0,0,0,0,0,0,0,0.00055,0.00079,0.03764,0,0,0,0,0,0,0,0.00053,0.00075,0.03978,0,0,0,0,0,0,0,0.00055,0.00078,0.03528,0,0,0,0,0,0,0,0.00057,0.00081,0.03932,0,0,0,0,0,0,0,0.00046,0.00065,0.03693,0,0,0,0,0,0,0,0.00048,0.00067,0.03718,0,0,0,0,0,0,0,0.00046,0.00064,0.03827,0,0,0,0,0,0,0,0.0005,0.0007,0.03834,0,0,0,0,0,0,0,0.00046,0.00065,0.22542,0,0,0,0,0,0,0,0.01539,0.01591,0.22687,0,0,0,0,0,0,0,0.01581,0.0163,0.23152,0,0,0,0,0,0,0,0.01712,0.01763,0.22191,0,0,0,0,0,0,0,0.01462,0.01516,0.23053,0,0,0,0,0,0,0,0.01666,0.01705,0.22545,0,0,0,0,0,0,0,0.01543,0.01584,0.22594,0,0,0,0,0,0,0,0.01535,0.01574,0.22825,0,0,0,0,0,0,0,0.01612,0.01655,0.22835,0,0,0,0,0,0,0,0.01581,0.01619,0.19117,0,0,0,0,0,0,0,0.00294,0.0034,0.19196,0,0,0,0,0,0,0,0.00295,0.00338,0.19467,0,0,0,0,0,0,0,0.00315,0.0036,0.18905,0,0,0,0,0,0,0,0.00287,0.00335,0.19409,0,0,0,0,0,0,0,0.00292,0.00327,0.19108,0,0,0,0,0,0,0,0.0028,0.00316,0.19144,0,0,0,0,0,0,0,0.00275,0.00309,0.19277,0,0,0,0,0,0,0,0.00292,0.00331,0.19293,0,0,0,0,0,0,0,0.00281,0.00315,0,0,0,0,0,0,0,0,0.00096,0.00097,0,0,0,0,0,0,0,0,0.00097,0.00098,0,0,0,0,0,0,0,0,0.00099,0.001,0,0,0,0,0,0,0,0,0.00096,0.00098,0,0,0,0,0,0,0,0,0.00099,0.00099,0,0,0,0,0,0,0,0,0.00097,0.00098,0,0,0,0,0,0,0,0,0.00098,0.00098,0,0,0,0,0,0,0,0,0.00098,0.00099,0,0,0,0,0,0,0,0,0.00096,0.00097,0,0,0,0,0,0,0,0,0.03465,0.04434,0,0,0,0,0,0,0,0,0.0295,0.0383,0,0,0,0,0,0,0,0,0.03381,0.04468,0,0,0,0,0,0,0,0,0.03918,0.05153,0,0,0,0,0,0,0,0,0.01506,0.02255,0,0,0,0,0,0,0,0,0.01924,0.0278,0,0,0,0,0,0,0,0,0.01413,0.02136,0,0,0,0,0,0,0,0,0.02213,0.03059,0,0,0,0,0,0,0,0,0.01342,0.0197 +Full size car,PH40E,2050,0,0,0,0,0,0,0,0,0,0.01447,0,0,0,0,0,0,0,0,0,0.01493,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.01368,0,0,0,0,0,0,0,0,0,0.01589,0,0,0,0,0,0,0,0,0,0.01463,0,0,0,0,0,0,0,0,0,0.01459,0,0,0,0,0,0,0,0,0,0.01529,0,0,0,0,0,0,0,0,0,0.01504,0,0,0,0,0,0,0,0,0,0.01111,0,0,0,0,0,0,0,0,0,0.00955,0,0,0,0,0,0,0,0,0,0.01086,0,0,0,0,0,0,0,0,0,0.0125,0,0,0,0,0,0,0,0,0,0.00517,0,0,0,0,0,0,0,0,0,0.00644,0,0,0,0,0,0,0,0,0,0.00491,0,0,0,0,0,0,0,0,0,0.00732,0,0,0,0,0,0,0,0,0,0.00468,0,0,0,0,0,0,0,0,0,0.4922,0,0,0,0,0,0,0,0,0,0.46607,0,0,0,0,0,0,0,0,0,0.49461,0,0,0,0,0,0,0,0,0,0.5483,0,0,0,0,0,0,0,0,0,0.38784,0,0,0,0,0,0,0,0,0,0.41587,0,0,0,0,0,0,0,0,0,0.39823,0,0,0,0,0,0,0,0,0,0.43167,0,0,0,0,0,0,0,0,0,0.35846,0,0,0,0,0,0,0,0,0,100.11735,0,0,0,0,0,0,0,0,0,100.9001,0,0,0,0,0,0,0,0,0,102.59675,0,0,0,0,0,0,0,0,0,100.24512,0,0,0,0,0,0,0,0,0,102.36963,0,0,0,0,0,0,0,0,0,100.86081,0,0,0,0,0,0,0,0,0,101.37301,0,0,0,0,0,0,0,0,0,101.64239,0,0,0,0,0,0,0,0,0,99.55584,0,0,0,0,0,0,0,0,0,0.00227,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00226,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00847,0,0,0,0,0,0,0,0,0,0.00849,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.00842,0,0,0,0,0,0,0,0,0,0.00844,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.0085,0,0,0,0,0,0,0,0,0,0.02064,0,0,0,0,0,0,0,0,0,0.01984,0,0,0,0,0,0,0,0,0,0.02033,0,0,0,0,0,0,0,0,0,0.02178,0,0,0,0,0,0,0,0,0,0.01558,0,0,0,0,0,0,0,0,0,0.01762,0,0,0,0,0,0,0,0,0,0.01592,0,0,0,0,0,0,0,0,0,0.01844,0,0,0,0,0,0,0,0,0,0.01554,0.02912,0.03066,0,0,0,0,0,0,0,0.00055,0.03005,0.03143,0,0,0,0,0,0,0,0.00053,0.0328,0.03373,0,0,0,0,0,0,0,0.00055,0.02693,0.02878,0,0,0,0,0,0,0,0.00057,0.03219,0.03322,0,0,0,0,0,0,0,0.00046,0.02907,0.03057,0,0,0,0,0,0,0,0.00048,0.02942,0.0309,0,0,0,0,0,0,0,0.00046,0.03086,0.03211,0,0,0,0,0,0,0,0.0005,0.03096,0.03224,0,0,0,0,0,0,0,0.00046,0.18202,0.18217,0,0,0,0,0,0,0,0.01539,0.18468,0.18425,0,0,0,0,0,0,0,0.01581,0.19261,0.19058,0,0,0,0,0,0,0,0.01712,0.17574,0.1771,0,0,0,0,0,0,0,0.01462,0.19087,0.18919,0,0,0,0,0,0,0,0.01666,0.18191,0.18201,0,0,0,0,0,0,0,0.01543,0.18289,0.18283,0,0,0,0,0,0,0,0.01535,0.18702,0.18613,0,0,0,0,0,0,0,0.01612,0.18729,0.1864,0,0,0,0,0,0,0,0.01581,0.15121,0.15137,0,0,0,0,0,0,0,0.00294,0.15312,0.15274,0,0,0,0,0,0,0,0.00295,0.15886,0.15701,0,0,0,0,0,0,0,0.00315,0.14652,0.14781,0,0,0,0,0,0,0,0.00287,0.15758,0.15604,0,0,0,0,0,0,0,0.00292,0.15099,0.1511,0,0,0,0,0,0,0,0.0028,0.1518,0.15177,0,0,0,0,0,0,0,0.00275,0.15481,0.15401,0,0,0,0,0,0,0,0.00292,0.15513,0.15433,0,0,0,0,0,0,0,0.00281,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00097,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00097,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.03465,0,0,0,0,0,0,0,0,0,0.0295,0,0,0,0,0,0,0,0,0,0.03381,0,0,0,0,0,0,0,0,0,0.03918,0,0,0,0,0,0,0,0,0,0.01506,0,0,0,0,0,0,0,0,0,0.01924,0,0,0,0,0,0,0,0,0,0.01413,0,0,0,0,0,0,0,0,0,0.02213,0,0,0,0,0,0,0,0,0,0.01342 +Full size car,PH40G,1990,0.04549,0,0,0,0,0,0,0,0,0,0.04151,0,0,0,0,0,0,0,0,0,0.0463,0,0,0,0,0,0,0,0,0,0.04835,0,0,0,0,0,0,0,0,0,0.03038,0,0,0,0,0,0,0,0,0,0.03235,0,0,0,0,0,0,0,0,0,0.02837,0,0,0,0,0,0,0,0,0,0.03565,0,0,0,0,0,0,0,0,0,0.0284,0,0,0,0,0,0,0,0,0,0.0357,0,0,0,0,0,0,0,0,0,0.03054,0,0,0,0,0,0,0,0,0,0.03853,0,0,0,0,0,0,0,0,0,0.03948,0,0,0,0,0,0,0,0,0,0.03248,0,0,0,0,0,0,0,0,0,0.03592,0,0,0,0,0,0,0,0,0,0.03325,0,0,0,0,0,0,0,0,0,0.03242,0,0,0,0,0,0,0,0,0,0.02783,0,0,0,0,0,0,0,0,0,22.72013,0,0,0,0,0,0,0,0,0,20.14951,0,0,0,0,0,0,0,0,0,24.87479,0,0,0,0,0,0,0,0,0,25.76437,0,0,0,0,0,0,0,0,0,21.34183,0,0,0,0,0,0,0,0,0,23.61136,0,0,0,0,0,0,0,0,0,22.23047,0,0,0,0,0,0,0,0,0,21.35022,0,0,0,0,0,0,0,0,0,17.8,0,0,0,0,0,0,0,0,0,230.59426,0,0,0,0,0,0,0,0,0,231.47444,0,0,0,0,0,0,0,0,0,235.78675,0,0,0,0,0,0,0,0,0,230.51247,0,0,0,0,0,0,0,0,0,231.63652,0,0,0,0,0,0,0,0,0,229.26266,0,0,0,0,0,0,0,0,0,228.72841,0,0,0,0,0,0,0,0,0,231.28683,0,0,0,0,0,0,0,0,0,226.25306,0,0,0,0,0,0,0,0,0,0.02991,0,0,0,0,0,0,0,0,0,0.03011,0,0,0,0,0,0,0,0,0,0.03053,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0.03051,0,0,0,0,0,0,0,0,0,0.03036,0,0,0,0,0,0,0,0,0,0.03009,0,0,0,0,0,0,0,0,0,0.03036,0,0,0,0,0,0,0,0,0,0.02991,0,0,0,0,0,0,0,0,0,0.01814,0,0,0,0,0,0,0,0,0,0.01818,0,0,0,0,0,0,0,0,0,0.0182,0,0,0,0,0,0,0,0,0,0.01807,0,0,0,0,0,0,0,0,0,0.01818,0,0,0,0,0,0,0,0,0,0.01811,0,0,0,0,0,0,0,0,0,0.01814,0,0,0,0,0,0,0,0,0,0.01819,0,0,0,0,0,0,0,0,0,0.01821,0,0,0,0,0,0,0,0,0,1.38305,0,0,0,0,0,0,0,0,0,1.31666,0,0,0,0,0,0,0,0,0,1.46314,0,0,0,0,0,0,0,0,0,1.53871,0,0,0,0,0,0,0,0,0,1.43053,0,0,0,0,0,0,0,0,0,1.50222,0,0,0,0,0,0,0,0,0,1.42807,0,0,0,0,0,0,0,0,0,1.50865,0,0,0,0,0,0,0,0,0,1.24169,0,0,0,0,0,0,0,0,0,0.07909,0.02264,0.02339,0,0,0,0,0,0,0,0.0729,0.02338,0.02408,0,0,0,0,0,0,0,0.08027,0.02556,0.02613,0,0,0,0,0,0,0,0.082,0.02087,0.02169,0,0,0,0,0,0,0,0.0545,0.02507,0.02567,0,0,0,0,0,0,0,0.05728,0.02258,0.02329,0,0,0,0,0,0,0,0.05131,0.02287,0.0236,0,0,0,0,0,0,0,0.06316,0.02402,0.02469,0,0,0,0,0,0,0,0.05215,0.02412,0.02481,0,0,0,0,0,0,0,0.29027,0.14786,0.148,0,0,0,0,0,0,0,0.27717,0.15005,0.15006,0,0,0,0,0,0,0,0.29771,0.15646,0.15616,0,0,0,0,0,0,0,0.29617,0.14259,0.14297,0,0,0,0,0,0,0,0.23768,0.15501,0.15478,0,0,0,0,0,0,0,0.24108,0.14761,0.14774,0,0,0,0,0,0,0,0.22743,0.14852,0.14862,0,0,0,0,0,0,0,0.25616,0.15195,0.15187,0,0,0,0,0,0,0,0.23006,0.15227,0.15221,0,0,0,0,0,0,0,0.23515,0.11976,0.1199,0,0,0,0,0,0,0,0.22274,0.12124,0.12126,0,0,0,0,0,0,0,0.23865,0.1256,0.12533,0,0,0,0,0,0,0,0.24187,0.116,0.11636,0,0,0,0,0,0,0,0.18598,0.12458,0.12437,0,0,0,0,0,0,0,0.19133,0.11942,0.11954,0,0,0,0,0,0,0,0.17921,0.12017,0.12027,0,0,0,0,0,0,0,0.20347,0.12254,0.12247,0,0,0,0,0,0,0,0.18062,0.12291,0.12286,0,0,0,0,0,0,0,0.01015,0,0,0,0,0,0,0,0,0,0.01158,0,0,0,0,0,0,0,0,0,0.01648,0,0,0,0,0,0,0,0,0,0.01505,0,0,0,0,0,0,0,0,0,0.01339,0,0,0,0,0,0,0,0,0,0.01475,0,0,0,0,0,0,0,0,0,0.01335,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.00613,0,0,0,0,0,0,0,0,0,2.13629,0,0,0,0,0,0,0,0,0,1.90877,0,0,0,0,0,0,0,0,0,2.27289,0,0,0,0,0,0,0,0,0,2.35241,0,0,0,0,0,0,0,0,0,2.10809,0,0,0,0,0,0,0,0,0,2.24426,0,0,0,0,0,0,0,0,0,2.15299,0,0,0,0,0,0,0,0,0,2.12195,0,0,0,0,0,0,0,0,0,1.84561,0,0,0,0,0,0,0,0,0 +Full size car,PH40G,1995,0.01989,0.02979,0,0,0,0,0,0,0,0,0.01959,0.02807,0,0,0,0,0,0,0,0,0.02147,0.03104,0,0,0,0,0,0,0,0,0.0197,0.03078,0,0,0,0,0,0,0,0,0.01845,0.02308,0,0,0,0,0,0,0,0,0.01775,0.02341,0,0,0,0,0,0,0,0,0.01703,0.02144,0,0,0,0,0,0,0,0,0.01886,0.02536,0,0,0,0,0,0,0,0,0.01741,0.02168,0,0,0,0,0,0,0,0,0.01972,0.02288,0,0,0,0,0,0,0,0,0.01832,0.02042,0,0,0,0,0,0,0,0,0.02214,0.02533,0,0,0,0,0,0,0,0,0.02282,0.02724,0,0,0,0,0,0,0,0,0.01878,0.02132,0,0,0,0,0,0,0,0,0.02035,0.02362,0,0,0,0,0,0,0,0,0.01861,0.02151,0,0,0,0,0,0,0,0,0.01917,0.02219,0,0,0,0,0,0,0,0,0.01543,0.01733,0,0,0,0,0,0,0,0,8.39442,11.44278,0,0,0,0,0,0,0,0,7.99397,10.48013,0,0,0,0,0,0,0,0,9.60589,12.61336,0,0,0,0,0,0,0,0,10.11218,13.50212,0,0,0,0,0,0,0,0,8.39972,10.94605,0,0,0,0,0,0,0,0,9.09698,11.99459,0,0,0,0,0,0,0,0,8.62645,11.31589,0,0,0,0,0,0,0,0,8.49118,11.40326,0,0,0,0,0,0,0,0,6.6501,8.94901,0,0,0,0,0,0,0,0,189.19132,198.05442,0,0,0,0,0,0,0,0,190.6211,199.19465,0,0,0,0,0,0,0,0,193.94151,202.82409,0,0,0,0,0,0,0,0,189.14548,198.01516,0,0,0,0,0,0,0,0,193.18868,200.61761,0,0,0,0,0,0,0,0,190.26302,198.05571,0,0,0,0,0,0,0,0,191.05833,198.25331,0,0,0,0,0,0,0,0,191.87396,199.77843,0,0,0,0,0,0,0,0,188.15266,195.58748,0,0,0,0,0,0,0,0,0.02197,0.0268,0,0,0,0,0,0,0,0,0.02213,0.02697,0,0,0,0,0,0,0,0,0.02248,0.02733,0,0,0,0,0,0,0,0,0.02199,0.0269,0,0,0,0,0,0,0,0,0.02246,0.02732,0,0,0,0,0,0,0,0,0.0223,0.02721,0,0,0,0,0,0,0,0,0.02211,0.02697,0,0,0,0,0,0,0,0,0.02233,0.0272,0,0,0,0,0,0,0,0,0.022,0.02679,0,0,0,0,0,0,0,0,0.0509,0.04166,0,0,0,0,0,0,0,0,0.051,0.04174,0,0,0,0,0,0,0,0,0.05108,0.0418,0,0,0,0,0,0,0,0,0.05062,0.04143,0,0,0,0,0,0,0,0,0.05102,0.04175,0,0,0,0,0,0,0,0,0.05075,0.04154,0,0,0,0,0,0,0,0,0.05089,0.04165,0,0,0,0,0,0,0,0,0.05105,0.04178,0,0,0,0,0,0,0,0,0.05114,0.04185,0,0,0,0,0,0,0,0,1.03966,1.25011,0,0,0,0,0,0,0,0,1.01379,1.18284,0,0,0,0,0,0,0,0,1.12147,1.28489,0,0,0,0,0,0,0,0,1.16818,1.40584,0,0,0,0,0,0,0,0,1.08866,1.303,0,0,0,0,0,0,0,0,1.14403,1.35827,0,0,0,0,0,0,0,0,1.09383,1.30471,0,0,0,0,0,0,0,0,1.16173,1.38255,0,0,0,0,0,0,0,0,0.95791,1.12914,0,0,0,0,0,0,0,0,0.02097,0.04202,0.01271,0.01559,0,0,0,0,0,0,0.01988,0.0388,0.01311,0.01605,0,0,0,0,0,0,0.02179,0.04255,0.01427,0.01742,0,0,0,0,0,0,0.02117,0.04353,0.01182,0.0145,0,0,0,0,0,0,0.01651,0.02929,0.01402,0.01712,0,0,0,0,0,0,0.0166,0.03077,0.01272,0.01556,0,0,0,0,0,0,0.01544,0.02767,0.01285,0.01574,0,0,0,0,0,0,0.01803,0.03376,0.01345,0.01646,0,0,0,0,0,0,0.01583,0.02806,0.01346,0.01651,0,0,0,0,0,0,0.11876,0.17779,0.09909,0.1111,0,0,0,0,0,0,0.11736,0.17141,0.10041,0.11259,0,0,0,0,0,0,0.12448,0.18244,0.1042,0.11693,0,0,0,0,0,0,0.11758,0.18001,0.09612,0.1076,0,0,0,0,0,0,0.11208,0.15214,0.10337,0.11596,0,0,0,0,0,0,0.10943,0.1528,0.0991,0.11101,0,0,0,0,0,0,0.10693,0.14601,0.09953,0.11157,0,0,0,0,0,0,0.11415,0.16109,0.10155,0.11388,0,0,0,0,0,0,0.10885,0.14779,0.1016,0.11403,0,0,0,0,0,0,0.08092,0.13383,0.0749,0.08594,0,0,0,0,0,0,0.07881,0.12734,0.07558,0.08678,0,0,0,0,0,0,0.08274,0.13474,0.07752,0.08923,0,0,0,0,0,0,0.08147,0.13739,0.07324,0.08381,0,0,0,0,0,0,0.07224,0.10839,0.07707,0.08866,0,0,0,0,0,0,0.07237,0.11143,0.07479,0.08574,0,0,0,0,0,0,0.07009,0.10537,0.07509,0.08617,0,0,0,0,0,0,0.07526,0.1175,0.07616,0.08752,0,0,0,0,0,0,0.0708,0.10596,0.07629,0.08773,0,0,0,0,0,0,0.00831,0.00421,0,0,0,0,0,0,0,0,0.00952,0.00427,0,0,0,0,0,0,0,0,0.01357,0.00444,0,0,0,0,0,0,0,0,0.01235,0.00741,0,0,0,0,0,0,0,0,0.01116,0.00437,0,0,0,0,0,0,0,0,0.01224,0.00433,0,0,0,0,0,0,0,0,0.01115,0.0059,0,0,0,0,0,0,0,0,0.01094,0.00673,0,0,0,0,0,0,0,0,0.00507,0.00243,0,0,0,0,0,0,0,0,0.90648,1.29208,0,0,0,0,0,0,0,0,0.87198,1.21773,0,0,0,0,0,0,0,0,1.00633,1.41289,0,0,0,0,0,0,0,0,1.04333,1.49686,0,0,0,0,0,0,0,0,0.93714,1.36023,0,0,0,0,0,0,0,0,0.97336,1.42052,0,0,0,0,0,0,0,0,0.92877,1.35964,0,0,0,0,0,0,0,0,0.96088,1.39294,0,0,0,0,0,0,0,0,0.79594,1.15652,0,0,0,0,0,0,0,0 +Full size car,PH40G,2000,0.01642,0.01782,0.02479,0,0,0,0,0,0,0,0.0166,0.0178,0.02377,0,0,0,0,0,0,0,0.01809,0.01945,0.02621,0,0,0,0,0,0,0,0.01582,0.01737,0.02518,0,0,0,0,0,0,0,0.01678,0.01744,0.02068,0,0,0,0,0,0,0,0.01571,0.01652,0.02048,0,0,0,0,0,0,0,0.01543,0.01607,0.01915,0,0,0,0,0,0,0,0.01655,0.01748,0.02204,0,0,0,0,0,0,0,0.01587,0.01649,0.01948,0,0,0,0,0,0,0,0.009,0.00962,0.01549,0,0,0,0,0,0,0,0.00844,0.00922,0.01394,0,0,0,0,0,0,0,0.01048,0.01125,0.01778,0,0,0,0,0,0,0,0.01093,0.01203,0.01844,0,0,0,0,0,0,0,0.00796,0.00916,0.01454,0,0,0,0,0,0,0,0.00882,0.01,0.0158,0,0,0,0,0,0,0,0.00786,0.00921,0.01404,0,0,0,0,0,0,0,0.00859,0.00975,0.01474,0,0,0,0,0,0,0,0.00672,0.00796,0.01152,0,0,0,0,0,0,0,3.9868,5.35612,8.15553,0,0,0,0,0,0,0,3.81518,5.18106,7.60812,0,0,0,0,0,0,0,4.62373,6.19367,9.31628,0,0,0,0,0,0,0,4.92951,6.63182,9.70105,0,0,0,0,0,0,0,3.54079,5.08715,7.73638,0,0,0,0,0,0,0,3.92384,5.54761,8.36929,0,0,0,0,0,0,0,3.60247,5.24487,7.70978,0,0,0,0,0,0,0,3.82067,5.42492,7.95733,0,0,0,0,0,0,0,2.92447,4.36244,6.27296,0,0,0,0,0,0,0,188.44958,190.02349,195.10774,0,0,0,0,0,0,0,190.11325,191.57845,196.32648,0,0,0,0,0,0,0,193.35971,194.89662,199.85431,0,0,0,0,0,0,0,188.5208,190.10393,195.21411,0,0,0,0,0,0,0,193.52235,194.57322,198.06436,0,0,0,0,0,0,0,190.32159,191.53046,195.46397,0,0,0,0,0,0,0,191.51759,192.52421,195.85872,0,0,0,0,0,0,0,191.84787,193.07733,197.10666,0,0,0,0,0,0,0,188.15996,189.25082,192.87472,0,0,0,0,0,0,0,0.01222,0.01359,0.0207,0,0,0,0,0,0,0,0.01227,0.01364,0.02079,0,0,0,0,0,0,0,0.01236,0.01372,0.02093,0,0,0,0,0,0,0,0.01234,0.01374,0.0209,0,0,0,0,0,0,0,0.01237,0.01374,0.02095,0,0,0,0,0,0,0,0.01242,0.01381,0.02103,0,0,0,0,0,0,0,0.01229,0.01367,0.02082,0,0,0,0,0,0,0,0.01236,0.01373,0.02093,0,0,0,0,0,0,0,0.01216,0.01351,0.0206,0,0,0,0,0,0,0,0.02971,0.03887,0.04125,0,0,0,0,0,0,0,0.02978,0.03895,0.04134,0,0,0,0,0,0,0,0.02986,0.03906,0.04143,0,0,0,0,0,0,0,0.0295,0.03859,0.04099,0,0,0,0,0,0,0,0.02981,0.039,0.04138,0,0,0,0,0,0,0,0.02961,0.03873,0.04112,0,0,0,0,0,0,0,0.0297,0.03885,0.04124,0,0,0,0,0,0,0,0.02982,0.039,0.04139,0,0,0,0,0,0,0,0.02988,0.03909,0.04147,0,0,0,0,0,0,0,0.50063,0.66975,0.99957,0,0,0,0,0,0,0,0.49246,0.66525,0.97533,0,0,0,0,0,0,0,0.58088,0.73581,1.08051,0,0,0,0,0,0,0,0.60113,0.79343,1.13041,0,0,0,0,0,0,0,0.55095,0.73032,1.08321,0,0,0,0,0,0,0,0.57864,0.75297,1.1103,0,0,0,0,0,0,0,0.55923,0.74493,1.04943,0,0,0,0,0,0,0,0.58516,0.77557,1.10421,0,0,0,0,0,0,0,0.48049,0.65081,0.9123,0,0,0,0,0,0,0,0.00473,0.01152,0.02369,0.00402,0.00873,0,0,0,0,0,0.00417,0.01075,0.0214,0.00413,0.00898,0,0,0,0,0,0.00457,0.01175,0.0235,0.00446,0.0097,0,0,0,0,0,0.00497,0.01163,0.02486,0.00377,0.00815,0,0,0,0,0,0.00252,0.00844,0.01475,0.00439,0.00954,0,0,0,0,0,0.00291,0.00864,0.01611,0.00403,0.00871,0,0,0,0,0,0.00246,0.00797,0.01409,0.00406,0.00881,0,0,0,0,0,0.00331,0.00951,0.01791,0.00423,0.00919,0,0,0,0,0,0.00249,0.0082,0.01422,0.00423,0.00922,0,0,0,0,0,0.0244,0.07716,0.10474,0.04638,0.07208,0,0,0,0,0,0.02365,0.07655,0.10063,0.04726,0.07319,0,0,0,0,0,0.02587,0.08181,0.10853,0.04979,0.07643,0,0,0,0,0,0.02426,0.07551,0.10553,0.04448,0.06954,0,0,0,0,0,0.02107,0.07391,0.08813,0.04925,0.07572,0,0,0,0,0,0.02067,0.07116,0.08799,0.04646,0.07207,0,0,0,0,0,0.01962,0.06979,0.08349,0.04669,0.07245,0,0,0,0,0,0.02218,0.07478,0.09372,0.04801,0.07416,0,0,0,0,0,0.02006,0.07154,0.08499,0.04799,0.07422,0,0,0,0,0,0.01091,0.04298,0.06741,0.02641,0.05005,0,0,0,0,0,0.00988,0.04158,0.0629,0.02668,0.05054,0,0,0,0,0,0.01089,0.04383,0.06749,0.02747,0.05197,0,0,0,0,0,0.0114,0.04315,0.06973,0.02574,0.04879,0,0,0,0,0,0.00682,0.0373,0.04991,0.02729,0.05163,0,0,0,0,0,0.00743,0.03739,0.05229,0.02636,0.04992,0,0,0,0,0,0.00652,0.03611,0.04825,0.02649,0.05018,0,0,0,0,0,0.00829,0.03929,0.05606,0.02692,0.05097,0,0,0,0,0,0.00657,0.03665,0.04857,0.02697,0.05111,0,0,0,0,0,0.00827,0.00404,0.00373,0,0,0,0,0,0,0,0.00949,0.00411,0.00376,0,0,0,0,0,0,0,0.01353,0.00426,0.00382,0,0,0,0,0,0,0,0.01231,0.00713,0.00374,0,0,0,0,0,0,0,0.01118,0.00423,0.00379,0,0,0,0,0,0,0,0.01224,0.00419,0.00374,0,0,0,0,0,0,0,0.01118,0.00573,0.00375,0,0,0,0,0,0,0,0.01093,0.00651,0.00338,0,0,0,0,0,0,0,0.00507,0.00235,0.00173,0,0,0,0,0,0,0,0.36356,0.53193,1.0086,0,0,0,0,0,0,0,0.34289,0.51226,0.94818,0,0,0,0,0,0,0,0.40658,0.6037,1.12323,0,0,0,0,0,0,0,0.43461,0.64868,1.17318,0,0,0,0,0,0,0,0.31031,0.50338,1.02369,0,0,0,0,0,0,0,0.34102,0.54354,1.07094,0,0,0,0,0,0,0,0.30606,0.50141,0.9994,0,0,0,0,0,0,0,0.34889,0.54807,1.05471,0,0,0,0,0,0,0,0.26625,0.44256,0.8681,0,0,0,0,0,0,0 +Full size car,PH40G,2005,0.01497,0.01533,0.01605,0.02037,0,0,0,0,0,0,0.01539,0.01566,0.01628,0.02,0,0,0,0,0,0,0.01681,0.01681,0.01734,0.02186,0,0,0,0,0,0,0.01431,0.01461,0.01539,0.02022,0,0,0,0,0,0,0.01615,0.01634,0.01673,0.01872,0,0,0,0,0,0,0.01497,0.01509,0.0155,0.01802,0,0,0,0,0,0,0.01483,0.01498,0.01534,0.01721,0,0,0,0,0,0,0.01566,0.01581,0.01627,0.01917,0,0,0,0,0,0,0.01522,0.01534,0.01563,0.01756,0,0,0,0,0,0,0.00951,0.00695,0.00686,0.0102,0,0,0,0,0,0,0.00858,0.0062,0.00637,0.00929,0,0,0,0,0,0,0.0097,0.00696,0.00713,0.0111,0,0,0,0,0,0,0.01039,0.00855,0.00802,0.01215,0,0,0,0,0,0,0.00558,0.00467,0.00523,0.00844,0,0,0,0,0,0,0.00664,0.00535,0.00582,0.00936,0,0,0,0,0,0,0.00538,0.00497,0.00518,0.0082,0,0,0,0,0,0,0.0072,0.00597,0.00576,0.00924,0,0,0,0,0,0,0.00434,0.00369,0.00404,0.00731,0,0,0,0,0,0,1.82992,2.46,3.14088,5.18476,0,0,0,0,0,0,1.73633,2.37039,3.12657,4.96426,0,0,0,0,0,0,1.96984,2.88716,3.84579,5.92046,0,0,0,0,0,0,2.13253,3.18897,3.81821,6.35235,0,0,0,0,0,0,1.57474,2.34726,3.22812,5.04621,0,0,0,0,0,0,1.69804,2.55687,3.48391,5.40924,0,0,0,0,0,0,1.6147,2.58098,3.25589,5.08959,0,0,0,0,0,0,1.74613,2.79365,3.33378,5.27372,0,0,0,0,0,0,1.23986,2.16299,2.86645,4.36035,0,0,0,0,0,0,191.80721,192.6941,194.88706,198.23917,0,0,0,0,0,0,193.59354,194.41451,196.45786,199.48281,0,0,0,0,0,0,196.74021,197.60667,199.73374,202.96165,0,0,0,0,0,0,191.9413,192.82094,195.04558,198.45575,0,0,0,0,0,0,197.44024,198.00761,199.49386,201.30259,0,0,0,0,0,0,194.10321,194.76751,196.45968,198.71256,0,0,0,0,0,0,195.5612,196.09672,197.53215,199.20378,0,0,0,0,0,0,195.595,196.27102,197.99893,200.3284,0,0,0,0,0,0,191.95984,192.5657,194.09658,195.9978,0,0,0,0,0,0,0.00357,0.00385,0.00453,0.01104,0,0,0,0,0,0,0.00358,0.00386,0.00453,0.01106,0,0,0,0,0,0,0.00359,0.00386,0.00453,0.01109,0,0,0,0,0,0,0.00362,0.00391,0.0046,0.01119,0,0,0,0,0,0,0.00359,0.00387,0.00454,0.01111,0,0,0,0,0,0,0.00363,0.00392,0.0046,0.01121,0,0,0,0,0,0,0.00359,0.00387,0.00455,0.01109,0,0,0,0,0,0,0.0036,0.00388,0.00456,0.01113,0,0,0,0,0,0,0.00354,0.00382,0.00448,0.01094,0,0,0,0,0,0,0.01202,0.01368,0.01684,0.02396,0,0,0,0,0,0,0.01205,0.01371,0.01688,0.02402,0,0,0,0,0,0,0.01208,0.01375,0.01692,0.02408,0,0,0,0,0,0,0.01193,0.01359,0.01672,0.0238,0,0,0,0,0,0,0.01206,0.01373,0.0169,0.02404,0,0,0,0,0,0,0.01198,0.01363,0.01678,0.02388,0,0,0,0,0,0,0.01201,0.01368,0.01683,0.02396,0,0,0,0,0,0,0.01206,0.01373,0.0169,0.02405,0,0,0,0,0,0,0.01209,0.01376,0.01694,0.0241,0,0,0,0,0,0,0.13355,0.19597,0.25866,0.47844,0,0,0,0,0,0,0.13174,0.19112,0.25993,0.47163,0,0,0,0,0,0,0.15074,0.21462,0.28626,0.53329,0,0,0,0,0,0,0.14998,0.25031,0.30265,0.56795,0,0,0,0,0,0,0.13424,0.2049,0.27744,0.5267,0,0,0,0,0,0,0.143,0.21425,0.28723,0.54444,0,0,0,0,0,0,0.13535,0.21979,0.27491,0.51386,0,0,0,0,0,0,0.14719,0.23594,0.28416,0.54455,0,0,0,0,0,0,0.106,0.15681,0.20989,0.46364,0,0,0,0,0,0,0.00169,0.00242,0.00413,0.01162,0.00085,0.00277,0,0,0,0,0.00156,0.00217,0.00376,0.01037,0.00086,0.00283,0,0,0,0,0.00184,0.00202,0.00353,0.01125,0.00088,0.003,0,0,0,0,0.00189,0.00251,0.00427,0.01233,0.00083,0.00262,0,0,0,0,0.00109,0.00153,0.00282,0.00679,0.00087,0.00296,0,0,0,0,0.00124,0.00158,0.00287,0.00762,0.00085,0.00276,0,0,0,0,0.00104,0.00142,0.00265,0.00648,0.00085,0.00279,0,0,0,0,0.00134,0.00172,0.00309,0.00846,0.00086,0.00288,0,0,0,0,0.00094,0.00126,0.0024,0.0064,0.00087,0.00289,0,0,0,0,0.01784,0.01937,0.04631,0.06446,0.0268,0.03821,0,0,0,0,0.01804,0.01929,0.04661,0.06275,0.02751,0.039,0,0,0,0,0.01993,0.02021,0.04932,0.06808,0.02957,0.0413,0,0,0,0,0.01753,0.01883,0.04444,0.064,0.0253,0.03648,0,0,0,0,0.01801,0.0189,0.04711,0.0572,0.02914,0.04081,0,0,0,0,0.01709,0.01774,0.04381,0.05568,0.0269,0.03827,0,0,0,0,0.01661,0.01738,0.0434,0.05314,0.02707,0.03849,0,0,0,0,0.01794,0.01872,0.0461,0.05938,0.02813,0.03969,0,0,0,0,0.01681,0.01746,0.04423,0.05435,0.02808,0.03967,0,0,0,0,0.00511,0.00647,0.01489,0.03102,0.0084,0.01889,0,0,0,0,0.00492,0.00603,0.01428,0.02863,0.00852,0.01908,0,0,0,0,0.00564,0.00589,0.01426,0.03093,0.00887,0.01966,0,0,0,0,0.00545,0.00659,0.01488,0.03225,0.00809,0.01838,0,0,0,0,0.00412,0.0049,0.01277,0.02177,0.00879,0.01952,0,0,0,0,0.00427,0.00484,0.01239,0.02295,0.00837,0.01883,0,0,0,0,0.00386,0.00454,0.01196,0.02065,0.00843,0.01894,0,0,0,0,0.00453,0.00522,0.01309,0.02492,0.00862,0.01926,0,0,0,0,0.0037,0.00427,0.01168,0.0207,0.00865,0.01932,0,0,0,0,0.00841,0.0041,0.00373,0.00126,0,0,0,0,0,0,0.00967,0.00417,0.00376,0.00127,0,0,0,0,0,0,0.01377,0.00432,0.00382,0.00129,0,0,0,0,0,0,0.01253,0.00723,0.00373,0.00127,0,0,0,0,0,0,0.0114,0.00431,0.00382,0.00128,0,0,0,0,0,0,0.01249,0.00426,0.00376,0.00127,0,0,0,0,0,0,0.01141,0.00584,0.00378,0.00127,0,0,0,0,0,0,0.01114,0.00662,0.00339,0.00126,0,0,0,0,0,0,0.00517,0.00238,0.00174,0.00116,0,0,0,0,0,0,0.19757,0.21602,0.29852,0.65935,0,0,0,0,0,0,0.1776,0.19468,0.27627,0.62085,0,0,0,0,0,0,0.2007,0.21616,0.30664,0.70797,0,0,0,0,0,0,0.21597,0.26088,0.34141,0.76364,0,0,0,0,0,0,0.11337,0.14445,0.22669,0.61272,0,0,0,0,0,0,0.13505,0.16445,0.25069,0.65002,0,0,0,0,0,0,0.10772,0.14975,0.22161,0.59797,0,0,0,0,0,0,0.15328,0.19201,0.26498,0.66253,0,0,0,0,0,0,0.09296,0.12778,0.19833,0.55166,0,0,0,0,0,0 +Full size car,PH40G,2010,0,0.01475,0.0151,0.01571,0.01811,0,0,0,0,0,0,0.01517,0.01548,0.01602,0.01809,0,0,0,0,0,0,0.01636,0.01662,0.01736,0.01964,0,0,0,0,0,0,0.01399,0.01437,0.01505,0.01771,0,0,0,0,0,0,0.01605,0.01626,0.01658,0.01778,0,0,0,0,0,0,0.01478,0.01499,0.01541,0.01682,0,0,0,0,0,0,0.01472,0.01491,0.0152,0.01628,0,0,0,0,0,0,0.01545,0.01568,0.01615,0.01774,0,0,0,0,0,0,0.01512,0.01528,0.0156,0.01664,0,0,0,0,0,0,0.00785,0.00654,0.00565,0.00758,0,0,0,0,0,0,0.0068,0.00595,0.00516,0.00696,0,0,0,0,0,0,0.00742,0.00678,0.00583,0.00803,0,0,0,0,0,0,0.00935,0.00783,0.00675,0.00912,0,0,0,0,0,0,0.00468,0.00506,0.00447,0.00609,0,0,0,0,0,0,0.00521,0.0055,0.00485,0.00671,0,0,0,0,0,0,0.0049,0.00502,0.00445,0.00601,0,0,0,0,0,0,0.00617,0.00547,0.00497,0.00677,0,0,0,0,0,0,0.00394,0.00395,0.00423,0.00557,0,0,0,0,0,0,1.40766,2.14257,2.85483,3.98256,0,0,0,0,0,0,1.32048,2.10431,2.79231,3.87406,0,0,0,0,0,0,1.5794,2.54698,3.20383,4.54977,0,0,0,0,0,0,1.70767,2.52328,3.47468,4.91322,0,0,0,0,0,0,1.12103,2.04962,2.84144,3.94588,0,0,0,0,0,0,1.25091,2.22637,2.99998,4.21249,0,0,0,0,0,0,1.22454,2.07475,2.9029,4.01708,0,0,0,0,0,0,1.42543,2.17541,2.96222,4.12275,0,0,0,0,0,0,1.07418,1.86232,2.52985,3.46249,0,0,0,0,0,0,189.17159,190.5334,192.84704,197.4275,0,0,0,0,0,0,190.9633,192.21983,194.36646,198.66043,0,0,0,0,0,0,194.07026,195.38076,197.61877,202.09362,0,0,0,0,0,0,189.28769,190.66347,193.01562,197.67536,0,0,0,0,0,0,194.85384,195.72085,197.24644,200.46552,0,0,0,0,0,0,191.52871,192.53877,194.29626,197.91168,0,0,0,0,0,0,192.99911,193.82967,195.30105,198.41749,0,0,0,0,0,0,192.99071,194.02654,195.82135,199.50521,0,0,0,0,0,0,189.43299,190.34635,191.92029,195.18143,0,0,0,0,0,0,0.00344,0.00389,0.00465,0.00712,0,0,0,0,0,0,0.00345,0.0039,0.00466,0.00713,0,0,0,0,0,0,0.00345,0.0039,0.00466,0.00712,0,0,0,0,0,0,0.00349,0.00395,0.00473,0.00724,0,0,0,0,0,0,0.00346,0.00391,0.00467,0.00714,0,0,0,0,0,0,0.00349,0.00396,0.00473,0.00724,0,0,0,0,0,0,0.00346,0.00391,0.00467,0.00716,0,0,0,0,0,0,0.00347,0.00392,0.00468,0.00717,0,0,0,0,0,0,0.00341,0.00386,0.0046,0.00705,0,0,0,0,0,0,0.00845,0.00989,0.01264,0.01532,0,0,0,0,0,0,0.00847,0.00991,0.01267,0.01535,0,0,0,0,0,0,0.00849,0.00994,0.01271,0.01539,0,0,0,0,0,0,0.00839,0.00982,0.01256,0.01521,0,0,0,0,0,0,0.00848,0.00992,0.01269,0.01537,0,0,0,0,0,0,0.00842,0.00985,0.0126,0.01526,0,0,0,0,0,0,0.00844,0.00988,0.01264,0.01531,0,0,0,0,0,0,0.00848,0.00992,0.01269,0.01537,0,0,0,0,0,0,0.0085,0.00994,0.01272,0.0154,0,0,0,0,0,0,0.05398,0.08868,0.09437,0.21225,0,0,0,0,0,0,0.05148,0.08831,0.0932,0.21039,0,0,0,0,0,0,0.05368,0.09688,0.10056,0.23731,0,0,0,0,0,0,0.06219,0.10385,0.10874,0.25643,0,0,0,0,0,0,0.04818,0.09117,0.09387,0.22957,0,0,0,0,0,0,0.05103,0.09576,0.0989,0.2396,0,0,0,0,0,0,0.05198,0.09098,0.0943,0.2264,0,0,0,0,0,0,0.05834,0.09542,0.10332,0.24185,0,0,0,0,0,0,0.03928,0.06936,0.09157,0.20876,0,0,0,0,0,0,0.00098,0.00153,0.00292,0.00694,0.0008,0.00122,0,0,0,0,0.00092,0.00142,0.00276,0.00636,0.00081,0.00123,0,0,0,0,0.00083,0.00128,0.00285,0.00673,0.00083,0.00128,0,0,0,0,0.00102,0.00159,0.00303,0.00732,0.00079,0.00118,0,0,0,0,0.0008,0.00122,0.00234,0.00474,0.00082,0.00127,0,0,0,0,0.00078,0.00119,0.00241,0.00508,0.0008,0.00121,0,0,0,0,0.00076,0.00115,0.00221,0.00447,0.00081,0.00122,0,0,0,0,0.0008,0.00123,0.0025,0.00545,0.00082,0.00125,0,0,0,0,0.00067,0.00101,0.00215,0.00436,0.00082,0.00126,0,0,0,0,0.01638,0.01764,0.04392,0.05432,0.02642,0.02917,0,0,0,0,0.0167,0.01784,0.04468,0.05406,0.02713,0.02989,0,0,0,0,0.01775,0.01876,0.04817,0.05825,0.02919,0.03198,0,0,0,0,0.01568,0.017,0.04202,0.05307,0.02492,0.02761,0,0,0,0,0.0174,0.0183,0.04617,0.05274,0.02877,0.03154,0,0,0,0,0.01609,0.01699,0.04295,0.05014,0.02653,0.02925,0,0,0,0,0.016,0.01683,0.04256,0.04875,0.02668,0.02943,0,0,0,0,0.0168,0.01773,0.04499,0.05284,0.02774,0.03051,0,0,0,0,0.01624,0.01696,0.04381,0.04991,0.02769,0.03048,0,0,0,0,0.00382,0.00493,0.01278,0.02204,0.00804,0.01057,0,0,0,0,0.00373,0.00474,0.01257,0.02094,0.00816,0.0107,0,0,0,0,0.00371,0.0046,0.01324,0.02223,0.00852,0.01109,0,0,0,0,0.00381,0.00498,0.01274,0.02257,0.00774,0.01022,0,0,0,0,0.00357,0.00437,0.01194,0.01782,0.00844,0.011,0,0,0,0,0.00339,0.00418,0.01163,0.01805,0.00803,0.01053,0,0,0,0,0.00332,0.00405,0.01121,0.01675,0.00808,0.0106,0,0,0,0,0.00352,0.00435,0.01212,0.01912,0.00827,0.01082,0,0,0,0,0.00319,0.00383,0.01131,0.01676,0.00829,0.01086,0,0,0,0,0.00402,0.00365,0.00123,0.00126,0,0,0,0,0,0,0.0041,0.00368,0.00124,0.00127,0,0,0,0,0,0,0.00425,0.00374,0.00126,0.00129,0,0,0,0,0,0,0.0071,0.00365,0.00123,0.00126,0,0,0,0,0,0,0.00424,0.00375,0.00126,0.00128,0,0,0,0,0,0,0.00419,0.00368,0.00124,0.00126,0,0,0,0,0,0,0.00574,0.00371,0.00125,0.00127,0,0,0,0,0,0,0.00651,0.00332,0.00123,0.00125,0,0,0,0,0,0,0.00234,0.0017,0.00113,0.00115,0,0,0,0,0,0,0.0917,0.1282,0.18747,0.4351,0,0,0,0,0,0,0.08006,0.11578,0.17262,0.41199,0,0,0,0,0,0,0.08828,0.13116,0.19211,0.45842,0,0,0,0,0,0,0.10899,0.15077,0.21916,0.50155,0,0,0,0,0,0,0.05677,0.09706,0.15709,0.39911,0,0,0,0,0,0,0.06277,0.10509,0.16649,0.42002,0,0,0,0,0,0,0.05802,0.09497,0.1543,0.39061,0,0,0,0,0,0,0.07543,0.11191,0.1767,0.43306,0,0,0,0,0,0,0.05254,0.0859,0.15079,0.37373,0,0,0,0,0 +Full size car,PH40G,2015,0,0,0.01465,0.01492,0.01544,0.01682,0,0,0,0,0,0,0.01509,0.01534,0.01581,0.01703,0,0,0,0,0,0,0.01629,0.01662,0.01712,0.01842,0,0,0,0,0,0,0.01387,0.01416,0.01472,0.01624,0,0,0,0,0,0,0.01602,0.01619,0.01652,0.01729,0,0,0,0,0,0,0.01475,0.01495,0.01532,0.0162,0,0,0,0,0,0,0.0147,0.01485,0.01515,0.01584,0,0,0,0,0,0,0.0154,0.01563,0.01601,0.01698,0,0,0,0,0,0,0.0151,0.01527,0.01556,0.01622,0,0,0,0,0,0,0.00601,0.00457,0.00462,0.00573,0,0,0,0,0,0,0.00551,0.00423,0.00436,0.00537,0,0,0,0,0,0,0.00575,0.00471,0.00487,0.00607,0,0,0,0,0,0,0.00647,0.00535,0.00551,0.00687,0,0,0,0,0,0,0.00416,0.00372,0.00412,0.00501,0,0,0,0,0,0,0.00451,0.00403,0.0044,0.00541,0,0,0,0,0,0,0.00416,0.00371,0.00413,0.00501,0,0,0,0,0,0,0.0047,0.00411,0.00439,0.00539,0,0,0,0,0,0,0.00346,0.00358,0.0039,0.0047,0,0,0,0,0,0,1.03292,1.8113,2.46357,3.15619,0,0,0,0,0,0,1.0151,1.793,2.46137,3.13336,0,0,0,0,0,0,1.14932,2.00326,2.81488,3.62067,0,0,0,0,0,0,1.13138,2.15504,3.03647,3.8972,0,0,0,0,0,0,0.91749,1.8679,2.67193,3.35597,0,0,0,0,0,0,0.98882,1.94146,2.78193,3.524,0,0,0,0,0,0,0.93976,1.91718,2.73813,3.44038,0,0,0,0,0,0,0.99955,1.92883,2.70555,3.4238,0,0,0,0,0,0,0.87707,1.70545,2.37236,2.97027,0,0,0,0,0,0,169.28924,170.54802,171.83774,177.39414,0,0,0,0,0,0,170.85395,172.00139,173.14068,178.48262,0,0,0,0,0,0,173.64701,174.84914,176.05594,181.5667,0,0,0,0,0,0,169.41057,170.68925,172.01323,177.63299,0,0,0,0,0,0,174.19785,174.93587,175.52739,180.03914,0,0,0,0,0,0,171.28131,172.17324,172.97667,177.77778,0,0,0,0,0,0,172.53521,173.23875,173.79149,178.20675,0,0,0,0,0,0,172.59101,173.50673,174.33665,179.20664,0,0,0,0,0,0,169.35713,170.14047,170.79107,175.29452,0,0,0,0,0,0,0.00221,0.00249,0.00287,0.00404,0,0,0,0,0,0,0.00222,0.0025,0.00288,0.00405,0,0,0,0,0,0,0.00225,0.00253,0.0029,0.00406,0,0,0,0,0,0,0.00223,0.00251,0.0029,0.0041,0,0,0,0,0,0,0.00225,0.00253,0.00291,0.00407,0,0,0,0,0,0,0.00225,0.00253,0.00292,0.00411,0,0,0,0,0,0,0.00222,0.00251,0.00289,0.00406,0,0,0,0,0,0,0.00224,0.00252,0.0029,0.00407,0,0,0,0,0,0,0.00221,0.00248,0.00286,0.00401,0,0,0,0,0,0,0.00845,0.00979,0.01264,0.01287,0,0,0,0,0,0,0.00847,0.00981,0.01267,0.0129,0,0,0,0,0,0,0.00849,0.00984,0.01271,0.01293,0,0,0,0,0,0,0.00839,0.00972,0.01256,0.01278,0,0,0,0,0,0,0.00848,0.00982,0.01269,0.01291,0,0,0,0,0,0,0.00842,0.00976,0.0126,0.01283,0,0,0,0,0,0,0.00844,0.00979,0.01264,0.01287,0,0,0,0,0,0,0.00848,0.00982,0.01269,0.01292,0,0,0,0,0,0,0.0085,0.00985,0.01272,0.01294,0,0,0,0,0,0,0.04197,0.05511,0.08116,0.11639,0,0,0,0,0,0,0.04148,0.05405,0.07994,0.11493,0,0,0,0,0,0,0.04172,0.05844,0.08599,0.12572,0,0,0,0,0,0,0.04417,0.06337,0.0933,0.13679,0,0,0,0,0,0,0.03684,0.0529,0.07944,0.1177,0,0,0,0,0,0,0.03928,0.05628,0.08411,0.12429,0,0,0,0,0,0,0.03749,0.05316,0.07998,0.1178,0,0,0,0,0,0,0.04076,0.05927,0.08802,0.12853,0,0,0,0,0,0,0.03011,0.05208,0.07773,0.11273,0,0,0,0,0,0,0.00088,0.00132,0.00262,0.00483,0.00073,0.00084,0,0,0,0,0.00084,0.00127,0.00252,0.00457,0.00074,0.00085,0,0,0,0,0.00076,0.00129,0.00258,0.00472,0.00076,0.00087,0,0,0,0,0.00089,0.00137,0.00269,0.00501,0.00072,0.00082,0,0,0,0,0.00076,0.00111,0.00224,0.00384,0.00075,0.00086,0,0,0,0,0.00074,0.00113,0.00228,0.00397,0.00073,0.00084,0,0,0,0,0.00072,0.00104,0.00213,0.00362,0.00073,0.00084,0,0,0,0,0.00074,0.00116,0.00234,0.00413,0.00075,0.00086,0,0,0,0,0.00064,0.001,0.00207,0.00352,0.00075,0.00086,0,0,0,0,0.01611,0.0171,0.04297,0.04922,0.02585,0.02677,0,0,0,0,0.01649,0.01744,0.04388,0.04972,0.02657,0.02748,0,0,0,0,0.01756,0.01876,0.04729,0.05338,0.02864,0.02954,0,0,0,0,0.01535,0.01642,0.04094,0.04748,0.02437,0.02527,0,0,0,0,0.0173,0.01803,0.04573,0.05043,0.02821,0.02912,0,0,0,0,0.01599,0.01684,0.04244,0.04736,0.02598,0.02687,0,0,0,0,0.01591,0.01659,0.04215,0.04657,0.02612,0.02703,0,0,0,0,0.01665,0.01755,0.04439,0.04957,0.02718,0.02809,0,0,0,0,0.01617,0.01695,0.04341,0.04774,0.02711,0.02804,0,0,0,0,0.00358,0.00446,0.01192,0.01752,0.00752,0.00837,0,0,0,0,0.00354,0.00438,0.01186,0.01708,0.00765,0.00849,0,0,0,0,0.00355,0.00461,0.01245,0.0179,0.00801,0.00885,0,0,0,0,0.00352,0.00446,0.01177,0.01761,0.00724,0.00806,0,0,0,0,0.00349,0.00413,0.01155,0.01576,0.00793,0.00876,0,0,0,0,0.00329,0.00404,0.01117,0.01557,0.00752,0.00834,0,0,0,0,0.00324,0.00384,0.01084,0.01481,0.00756,0.0084,0,0,0,0,0.00339,0.00419,0.01157,0.01621,0.00776,0.0086,0,0,0,0,0.00313,0.00382,0.01094,0.01483,0.00777,0.00862,0,0,0,0,0.00324,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00327,0.0011,0.0011,0.00114,0,0,0,0,0,0,0.00332,0.00112,0.00112,0.00116,0,0,0,0,0,0,0.00324,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00333,0.00112,0.00112,0.00115,0,0,0,0,0,0,0.00328,0.0011,0.0011,0.00113,0,0,0,0,0,0,0.0033,0.00111,0.00111,0.00114,0,0,0,0,0,0,0.00295,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00152,0.001,0.00101,0.00103,0,0,0,0,0,0,0.06692,0.09584,0.15471,0.29779,0,0,0,0,0,0,0.06134,0.08907,0.14694,0.28648,0,0,0,0,0,0,0.06524,0.0979,0.16155,0.31185,0,0,0,0,0,0,0.07292,0.11029,0.17979,0.33899,0,0,0,0,0,0,0.04793,0.08091,0.14499,0.28893,0,0,0,0,0,0,0.05168,0.08583,0.1515,0.29895,0,0,0,0,0,0,0.04757,0.07979,0.14325,0.28446,0,0,0,0,0,0,0.05652,0.09136,0.15721,0.30721,0,0,0,0,0,0,0.04455,0.07849,0.13972,0.27701,0,0,0,0 +Full size car,PH40G,2020,0,0,0,0.01459,0.0148,0.01512,0.01606,0,0,0,0,0,0,0.01504,0.01523,0.01553,0.01637,0,0,0,0,0,0,0.01631,0.01651,0.01682,0.01771,0,0,0,0,0,0,0.01381,0.01403,0.01438,0.0154,0,0,0,0,0,0,0.01598,0.01611,0.01632,0.01688,0,0,0,0,0,0,0.01472,0.01487,0.0151,0.01573,0,0,0,0,0,0,0.01466,0.01478,0.01497,0.01548,0,0,0,0,0,0,0.01538,0.01554,0.01578,0.01646,0,0,0,0,0,0,0.01509,0.01521,0.01539,0.01587,0,0,0,0,0,0,0.00458,0.00373,0.00346,0.00425,0,0,0,0,0,0,0.00409,0.0034,0.00321,0.00395,0,0,0,0,0,0,0.00431,0.00379,0.00358,0.00447,0,0,0,0,0,0,0.00495,0.00434,0.00409,0.00509,0,0,0,0,0,0,0.00279,0.0028,0.00279,0.00353,0,0,0,0,0,0,0.00313,0.00308,0.00305,0.00386,0,0,0,0,0,0,0.00276,0.00277,0.00279,0.00352,0,0,0,0,0,0,0.00346,0.00319,0.00309,0.00387,0,0,0,0,0,0,0.00279,0.00266,0.00263,0.00328,0,0,0,0,0,0,0.84575,1.24759,1.55743,2.08042,0,0,0,0,0,0,0.81542,1.21821,1.52962,2.04544,0,0,0,0,0,0,0.86707,1.36279,1.74692,2.37453,0,0,0,0,0,0,0.93931,1.47887,1.90468,2.57482,0,0,0,0,0,0,0.7268,1.21611,1.57611,2.13787,0,0,0,0,0,0,0.76799,1.27893,1.6633,2.26695,0,0,0,0,0,0,0.75028,1.25048,1.61995,2.19708,0,0,0,0,0,0,0.80116,1.28036,1.63483,2.20789,0,0,0,0,0,0,0.69438,1.11222,1.40651,1.88774,0,0,0,0,0,0,135.98433,136.93426,137.84324,145.41065,0,0,0,0,0,0,137.15801,138.01536,138.79385,146.20154,0,0,0,0,0,0,139.42772,140.3288,141.162,148.76118,0,0,0,0,0,0,136.11318,137.08016,138.01909,145.64611,0,0,0,0,0,0,139.54878,140.06745,140.37351,147.11785,0,0,0,0,0,0,137.33127,137.97825,138.4692,145.41728,0,0,0,0,0,0,138.20515,138.69672,138.97155,145.6069,0,0,0,0,0,0,138.38758,139.05331,139.56516,146.59318,0,0,0,0,0,0,135.6903,136.24757,136.60873,143.2633,0,0,0,0,0,0,0.00226,0.00252,0.00289,0.00357,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00358,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.00228,0.00254,0.00292,0.00362,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.0023,0.00256,0.00293,0.00363,0,0,0,0,0,0,0.00228,0.00254,0.0029,0.00359,0,0,0,0,0,0,0.00229,0.00255,0.00292,0.00361,0,0,0,0,0,0,0.00226,0.00251,0.00287,0.00355,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00988,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.02999,0.0461,0.0617,0.0823,0,0,0,0,0,0,0.02917,0.04501,0.06044,0.08073,0,0,0,0,0,0,0.02945,0.04844,0.06467,0.08761,0,0,0,0,0,0,0.03168,0.05281,0.07057,0.0959,0,0,0,0,0,0,0.02464,0.04289,0.05816,0.07966,0,0,0,0,0,0,0.0268,0.0461,0.0623,0.08515,0,0,0,0,0,0,0.02515,0.0433,0.05884,0.0802,0,0,0,0,0,0,0.02924,0.04874,0.06556,0.08875,0,0,0,0,0,0,0.02572,0.0425,0.0574,0.07724,0,0,0,0,0,0,0.00077,0.00111,0.00209,0.00366,0.00073,0.0008,0,0,0,0,0.00074,0.00107,0.00202,0.0035,0.00074,0.00081,0,0,0,0,0.00075,0.00109,0.00206,0.0036,0.00076,0.00083,0,0,0,0,0.00079,0.00115,0.00213,0.00377,0.00072,0.00078,0,0,0,0,0.00066,0.00094,0.00182,0.00305,0.00075,0.00082,0,0,0,0,0.00067,0.00096,0.00184,0.00312,0.00073,0.0008,0,0,0,0,0.00063,0.00089,0.00173,0.00288,0.00073,0.0008,0,0,0,0,0.00069,0.00098,0.00189,0.00322,0.00074,0.00082,0,0,0,0,0.0006,0.00085,0.00169,0.00281,0.00075,0.00082,0,0,0,0,0.01586,0.01664,0.04177,0.04654,0.02585,0.02644,0,0,0,0,0.01628,0.017,0.04276,0.0473,0.02657,0.02715,0,0,0,0,0.01756,0.01831,0.04613,0.05083,0.02864,0.02921,0,0,0,0,0.01512,0.01592,0.03967,0.0446,0.02437,0.02494,0,0,0,0,0.01708,0.01767,0.04482,0.04871,0.02821,0.02879,0,0,0,0,0.01585,0.01647,0.04149,0.04548,0.02598,0.02655,0,0,0,0,0.0157,0.01626,0.0413,0.04497,0.02612,0.0267,0,0,0,0,0.01652,0.01717,0.04339,0.04754,0.02718,0.02776,0,0,0,0,0.0161,0.01663,0.0426,0.04621,0.02711,0.0277,0,0,0,0,0.00336,0.00404,0.01086,0.01515,0.00752,0.00806,0,0,0,0,0.00336,0.004,0.01086,0.01494,0.00765,0.00818,0,0,0,0,0.00355,0.00421,0.01143,0.01564,0.00801,0.00854,0,0,0,0,0.00331,0.00403,0.01065,0.01507,0.00723,0.00776,0,0,0,0,0.00329,0.00382,0.01074,0.01424,0.00793,0.00846,0,0,0,0,0.00317,0.00372,0.01033,0.01392,0.00752,0.00804,0,0,0,0,0.00306,0.00355,0.01009,0.0134,0.00756,0.0081,0,0,0,0,0.00328,0.00385,0.0107,0.01442,0.00776,0.00829,0,0,0,0,0.00307,0.00354,0.01022,0.01348,0.00777,0.00831,0,0,0,0,0.00087,0.00087,0.00088,0.00093,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00093,0,0,0,0,0,0,0.00089,0.0009,0.0009,0.00095,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00093,0,0,0,0,0,0,0.00089,0.00089,0.0009,0.00094,0,0,0,0,0,0,0.00088,0.00088,0.00088,0.00093,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00093,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00084,0,0,0,0,0,0,0.05751,0.07869,0.11709,0.23233,0,0,0,0,0,0,0.05202,0.07185,0.10894,0.22233,0,0,0,0,0,0,0.05522,0.07965,0.12094,0.24271,0,0,0,0,0,0,0.06258,0.09037,0.13548,0.26296,0,0,0,0,0,0,0.03872,0.06132,0.10109,0.22186,0,0,0,0,0,0,0.04233,0.0663,0.10739,0.23006,0,0,0,0,0,0,0.03809,0.05974,0.09843,0.21663,0,0,0,0,0,0,0.04737,0.07132,0.11277,0.23646,0,0,0,0,0,0,0.03805,0.05883,0.09641,0.21185,0,0,0 +Full size car,PH40G,2025,0,0,0,0,0.01445,0.01458,0.01479,0.01543,0,0,0,0,0,0,0.01492,0.01503,0.01523,0.0158,0,0,0,0,0,0,0.01618,0.0163,0.0165,0.01711,0,0,0,0,0,0,0.01366,0.01379,0.01403,0.01472,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.0165,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.0153,0,0,0,0,0,0,0.01457,0.01464,0.01477,0.01512,0,0,0,0,0,0,0.01527,0.01537,0.01553,0.016,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01554,0,0,0,0,0,0,0.00391,0.00295,0.00265,0.00326,0,0,0,0,0,0,0.0034,0.00262,0.00238,0.00295,0,0,0,0,0,0,0.00364,0.00292,0.00267,0.00335,0,0,0,0,0,0,0.00425,0.00339,0.00308,0.00385,0,0,0,0,0,0,0.00205,0.00188,0.00183,0.00237,0,0,0,0,0,0,0.0024,0.00214,0.00206,0.00266,0,0,0,0,0,0,0.00201,0.00184,0.00181,0.00235,0,0,0,0,0,0,0.00274,0.0023,0.00216,0.00274,0,0,0,0,0,0,0.00202,0.00177,0.00172,0.00219,0,0,0,0,0,0,0.64002,0.91106,1.14582,1.51956,0,0,0,0,0,0,0.6018,0.87144,1.10439,1.46771,0,0,0,0,0,0,0.64598,0.97767,1.26206,1.7014,0,0,0,0,0,0,0.70836,1.0731,1.38962,1.86314,0,0,0,0,0,0,0.49172,0.81222,1.0702,1.44633,0,0,0,0,0,0,0.53266,0.86996,1.14709,1.55544,0,0,0,0,0,0,0.50745,0.83597,1.10102,1.48915,0,0,0,0,0,0,0.56646,0.88352,1.14198,1.5336,0,0,0,0,0,0,0.47123,0.74464,0.95676,1.28069,0,0,0,0,0,0,109.89527,110.71383,111.66647,118.48003,0,0,0,0,0,0,110.77773,111.51899,112.3586,119.0227,0,0,0,0,0,0,112.63298,113.41152,114.30191,121.14068,0,0,0,0,0,0,110.02531,110.85935,111.84047,118.71303,0,0,0,0,0,0,112.47694,112.93454,113.36173,119.40882,0,0,0,0,0,0,110.78387,111.34893,111.9367,118.17669,0,0,0,0,0,0,111.38494,111.81975,112.21893,118.16864,0,0,0,0,0,0,111.64067,112.22155,112.82827,119.13943,0,0,0,0,0,0,109.38059,109.86867,110.33711,116.30106,0,0,0,0,0,0,0.00228,0.00252,0.00288,0.0035,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00351,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.00229,0.00254,0.00291,0.00355,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00231,0.00256,0.00292,0.00356,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00227,0.00251,0.00286,0.00348,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00979,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00982,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00988,0.01272,0.01272,0,0,0,0,0,0,0.02304,0.03342,0.04442,0.06033,0,0,0,0,0,0,0.02212,0.03226,0.04305,0.05865,0,0,0,0,0,0,0.02229,0.03436,0.04565,0.06315,0,0,0,0,0,0,0.02423,0.03778,0.05022,0.06957,0,0,0,0,0,0,0.01758,0.029,0.03937,0.05539,0,0,0,0,0,0,0.01961,0.0318,0.04292,0.06009,0,0,0,0,0,0,0.01802,0.02943,0.04002,0.05595,0,0,0,0,0,0,0.02149,0.03383,0.04541,0.06298,0,0,0,0,0,0,0.01847,0.02904,0.03925,0.05422,0,0,0,0,0,0,0.0005,0.00071,0.00152,0.00268,0.00073,0.00079,0,0,0,0,0.00048,0.00068,0.00148,0.00258,0.00074,0.0008,0,0,0,0,0.00049,0.00069,0.00151,0.00265,0.00076,0.00081,0,0,0,0,0.00051,0.00073,0.00155,0.00274,0.00072,0.00077,0,0,0,0,0.00043,0.0006,0.00135,0.00229,0.00075,0.00081,0,0,0,0,0.00044,0.00061,0.00136,0.00233,0.00073,0.00078,0,0,0,0,0.00041,0.00057,0.00129,0.00217,0.00073,0.00079,0,0,0,0,0.00045,0.00063,0.0014,0.0024,0.00074,0.0008,0,0,0,0,0.00039,0.00055,0.00127,0.00213,0.00075,0.0008,0,0,0,0,0.01528,0.01575,0.04051,0.04431,0.02585,0.02632,0,0,0,0,0.01572,0.01616,0.04157,0.04522,0.02657,0.02703,0,0,0,0,0.01699,0.01745,0.04491,0.04867,0.02864,0.0291,0,0,0,0,0.01451,0.015,0.03836,0.04223,0.02437,0.02482,0,0,0,0,0.0166,0.01696,0.04384,0.04706,0.02821,0.02867,0,0,0,0,0.01535,0.01573,0.04046,0.04374,0.02598,0.02643,0,0,0,0,0.01525,0.01559,0.04038,0.04344,0.02612,0.02658,0,0,0,0,0.01602,0.01641,0.04233,0.04573,0.02718,0.02764,0,0,0,0,0.01567,0.01599,0.04171,0.04476,0.02711,0.02758,0,0,0,0,0.00284,0.00326,0.00975,0.01317,0.00752,0.00795,0,0,0,0,0.00286,0.00325,0.00981,0.0131,0.00765,0.00807,0,0,0,0,0.00304,0.00345,0.01034,0.01374,0.00801,0.00843,0,0,0,0,0.00278,0.00321,0.00948,0.01297,0.00723,0.00765,0,0,0,0,0.00287,0.00319,0.00987,0.01278,0.00793,0.00835,0,0,0,0,0.00273,0.00306,0.00941,0.01238,0.00752,0.00794,0,0,0,0,0.00265,0.00295,0.00927,0.01204,0.00756,0.00799,0,0,0,0,0.00283,0.00318,0.00975,0.01282,0.00776,0.00818,0,0,0,0,0.00268,0.00297,0.00944,0.0122,0.00777,0.0082,0,0,0,0,0.0007,0.00071,0.00071,0.00076,0,0,0,0,0,0,0.00071,0.00071,0.00072,0.00076,0,0,0,0,0,0,0.00072,0.00072,0.00073,0.00077,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00076,0,0,0,0,0,0,0.00072,0.00072,0.00072,0.00076,0,0,0,0,0,0,0.00071,0.00071,0.00071,0.00075,0,0,0,0,0,0,0.00071,0.00071,0.00072,0.00075,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00075,0,0,0,0,0,0,0.00064,0.00065,0.00065,0.00069,0,0,0,0,0,0,0.05019,0.06417,0.09324,0.19007,0,0,0,0,0,0,0.04446,0.05703,0.08463,0.17941,0,0,0,0,0,0,0.0478,0.06392,0.09508,0.19705,0,0,0,0,0,0,0.05482,0.0734,0.10749,0.2138,0,0,0,0,0,0,0.03019,0.04385,0.07256,0.17225,0,0,0,0,0,0,0.03399,0.04886,0.07879,0.18029,0,0,0,0,0,0,0.02933,0.04188,0.06929,0.16604,0,0,0,0,0,0,0.03873,0.05368,0.08403,0.18619,0,0,0,0,0,0,0.02919,0.04147,0.0684,0.16392,0,0 +Full size car,PH40G,2030,0,0,0,0,0,0.01445,0.01457,0.01479,0.01528,0,0,0,0,0,0,0.01492,0.01503,0.01522,0.01566,0,0,0,0,0,0,0.01618,0.0163,0.0165,0.01696,0,0,0,0,0,0,0.01366,0.01379,0.01402,0.01455,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.0164,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.01519,0,0,0,0,0,0,0.01457,0.01464,0.01476,0.01503,0,0,0,0,0,0,0.01527,0.01537,0.01553,0.01589,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01545,0,0,0,0,0,0,0.00367,0.0027,0.00242,0.00288,0,0,0,0,0,0,0.00316,0.00237,0.00215,0.00257,0,0,0,0,0,0,0.00341,0.00264,0.00241,0.00289,0,0,0,0,0,0,0.004,0.00308,0.0028,0.00335,0,0,0,0,0,0,0.0018,0.00159,0.00156,0.00191,0,0,0,0,0,0,0.00215,0.00184,0.00178,0.00217,0,0,0,0,0,0,0.00175,0.00155,0.00153,0.00188,0,0,0,0,0,0,0.00249,0.00202,0.00189,0.00229,0,0,0,0,0,0,0.00177,0.0015,0.00145,0.00177,0,0,0,0,0,0,0.58608,0.8278,1.05137,1.32711,0,0,0,0,0,0,0.54598,0.78581,1.00579,1.26974,0,0,0,0,0,0,0.58847,0.88254,1.15028,1.46563,0,0,0,0,0,0,0.64821,0.97245,1.27098,1.61256,0,0,0,0,0,0,0.4308,0.71283,0.94946,1.2073,0,0,0,0,0,0,0.47156,0.76902,1.02453,1.30735,0,0,0,0,0,0,0.44441,0.73379,0.97753,1.24297,0,0,0,0,0,0,0.50524,0.78562,1.02521,1.30121,0,0,0,0,0,0,0.41293,0.65407,0.84912,1.07368,0,0,0,0,0,0,101.18797,102.21098,103.79512,108.28638,0,0,0,0,0,0,101.97589,102.92921,104.40974,108.74143,0,0,0,0,0,0,103.69205,104.68435,106.22525,110.69036,0,0,0,0,0,0,101.3178,102.35556,103.96908,108.51645,0,0,0,0,0,0,103.45291,104.1466,105.23981,108.94936,0,0,0,0,0,0,101.93131,102.72099,103.95911,107.88522,0,0,0,0,0,0,102.44526,103.11544,104.17527,107.81256,0,0,0,0,0,0,102.72135,103.5276,104.78881,108.76679,0,0,0,0,0,0,100.60973,101.32401,102.43675,106.12133,0,0,0,0,0,0,0.00228,0.00251,0.00287,0.00349,0,0,0,0,0,0,0.00229,0.00252,0.00289,0.0035,0,0,0,0,0,0,0.00231,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00229,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00353,0,0,0,0,0,0,0.00227,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02042,0.02903,0.03908,0.05176,0,0,0,0,0,0,0.01945,0.02785,0.03768,0.05002,0,0,0,0,0,0,0.01955,0.02947,0.03976,0.05338,0,0,0,0,0,0,0.02136,0.03255,0.0439,0.05901,0,0,0,0,0,0,0.01491,0.0242,0.03358,0.04566,0,0,0,0,0,0,0.01687,0.02684,0.03694,0.05002,0,0,0,0,0,0,0.01532,0.02463,0.0342,0.04629,0,0,0,0,0,0,0.01854,0.02866,0.0392,0.05267,0,0,0,0,0,0,0.01574,0.02441,0.03371,0.04509,0,0,0,0,0,0,0.0005,0.00071,0.00152,0.00245,0.00073,0,0,0,0,0,0.00048,0.00068,0.00147,0.00236,0.00074,0,0,0,0,0,0.00049,0.00069,0.00151,0.00242,0.00076,0,0,0,0,0,0.00051,0.00073,0.00154,0.0025,0.00072,0,0,0,0,0,0.00043,0.0006,0.00135,0.00211,0.00075,0,0,0,0,0,0.00044,0.00061,0.00136,0.00214,0.00073,0,0,0,0,0,0.00041,0.00057,0.00128,0.002,0.00073,0,0,0,0,0,0.00045,0.00063,0.00139,0.0022,0.00074,0,0,0,0,0,0.00039,0.00055,0.00127,0.00197,0.00075,0,0,0,0,0,0.01528,0.01575,0.04049,0.04376,0.02585,0,0,0,0,0,0.01572,0.01616,0.04155,0.04472,0.02657,0,0,0,0,0,0.01699,0.01745,0.04489,0.04815,0.02864,0,0,0,0,0,0.01451,0.015,0.03833,0.04166,0.02437,0,0,0,0,0,0.0166,0.01696,0.04382,0.04667,0.02821,0,0,0,0,0,0.01535,0.01573,0.04045,0.04332,0.02598,0,0,0,0,0,0.01525,0.01558,0.04036,0.04308,0.02612,0,0,0,0,0,0.01601,0.01641,0.04232,0.04529,0.02718,0,0,0,0,0,0.01566,0.01599,0.04171,0.0444,0.02711,0,0,0,0,0,0.00284,0.00326,0.00973,0.01268,0.00752,0,0,0,0,0,0.00286,0.00325,0.00979,0.01265,0.00765,0,0,0,0,0,0.00304,0.00344,0.01033,0.01327,0.00801,0,0,0,0,0,0.00277,0.00321,0.00946,0.01246,0.00723,0,0,0,0,0,0.00286,0.00318,0.00986,0.01243,0.00793,0,0,0,0,0,0.00273,0.00306,0.0094,0.012,0.00752,0,0,0,0,0,0.00265,0.00295,0.00926,0.01172,0.00756,0,0,0,0,0,0.00283,0.00318,0.00974,0.01243,0.00776,0,0,0,0,0,0.00268,0.00297,0.00944,0.01188,0.00777,0,0,0,0,0,0.00065,0.00065,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00066,0.00067,0.00069,0,0,0,0,0,0,0.00066,0.00067,0.00068,0.00071,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00069,0,0,0,0,0,0,0.00066,0.00066,0.00067,0.0007,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00059,0.0006,0.0006,0.00063,0,0,0,0,0,0,0.04799,0.06027,0.08793,0.17273,0,0,0,0,0,0,0.04225,0.05313,0.07927,0.16179,0,0,0,0,0,0,0.04561,0.05967,0.08925,0.17796,0,0,0,0,0,0,0.05249,0.06876,0.10105,0.19351,0,0,0,0,0,0,0.02785,0.03942,0.06625,0.15181,0,0,0,0,0,0,0.03166,0.04435,0.07238,0.15964,0,0,0,0,0,0,0.02695,0.03739,0.06286,0.14537,0,0,0,0,0,0,0.0363,0.04918,0.07763,0.16585,0,0,0,0,0,0,0.02673,0.03707,0.06224,0.14427,0 +Full size car,PH40G,2035,0,0,0,0,0,0,0.01445,0.01457,0.01479,0.01526,0,0,0,0,0,0,0.01491,0.01503,0.01522,0.01565,0,0,0,0,0,0,0.01618,0.01629,0.0165,0.01695,0,0,0,0,0,0,0.01366,0.01379,0.01402,0.01453,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.01639,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.01518,0,0,0,0,0,0,0.01457,0.01464,0.01477,0.01503,0,0,0,0,0,0,0.01527,0.01536,0.01553,0.01587,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01544,0,0,0,0,0,0,0.00365,0.0027,0.00242,0.00281,0,0,0,0,0,0,0.00315,0.00237,0.00215,0.0025,0,0,0,0,0,0,0.00339,0.00265,0.0024,0.00281,0,0,0,0,0,0,0.00398,0.00309,0.00279,0.00326,0,0,0,0,0,0,0.0018,0.00159,0.00156,0.00182,0,0,0,0,0,0,0.00215,0.00185,0.00178,0.00208,0,0,0,0,0,0,0.00175,0.00155,0.00153,0.0018,0,0,0,0,0,0,0.00248,0.00202,0.00189,0.00221,0,0,0,0,0,0,0.00176,0.0015,0.00145,0.00169,0,0,0,0,0,0,0.58569,0.83122,1.04918,1.29449,0,0,0,0,0,0,0.5457,0.78846,1.00406,1.23656,0,0,0,0,0,0,0.58824,0.88591,1.14811,1.42522,0,0,0,0,0,0,0.64799,0.97641,1.26846,1.56917,0,0,0,0,0,0,0.43079,0.71302,0.94917,1.16819,0,0,0,0,0,0,0.47151,0.76985,1.02384,1.2662,0,0,0,0,0,0,0.44447,0.73447,0.97693,1.20222,0,0,0,0,0,0,0.50502,0.78659,1.02444,1.26303,0,0,0,0,0,0,0.41279,0.6542,0.84887,1.04033,0,0,0,0,0,0,101.15856,102.20733,103.79223,106.70994,0,0,0,0,0,0,101.94824,102.92577,104.40687,107.15111,0,0,0,0,0,0,103.66319,104.68075,106.22245,109.07402,0,0,0,0,0,0,101.2875,102.35188,103.96617,106.93962,0,0,0,0,0,0,103.43163,104.14396,105.23762,107.33012,0,0,0,0,0,0,101.90759,102.71799,103.95662,106.29252,0,0,0,0,0,0,102.4244,103.11272,104.17314,106.20913,0,0,0,0,0,0,102.69737,103.52457,104.78635,107.16159,0,0,0,0,0,0,100.5888,101.32151,102.43472,104.5455,0,0,0,0,0,0,0.00227,0.00251,0.00287,0.0035,0,0,0,0,0,0,0.00228,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.0023,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00228,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00353,0,0,0,0,0,0,0.00226,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02036,0.02895,0.03912,0.05044,0,0,0,0,0,0,0.0194,0.02777,0.03772,0.04867,0,0,0,0,0,0,0.0195,0.02938,0.0398,0.05181,0,0,0,0,0,0,0.0213,0.03244,0.04396,0.05732,0,0,0,0,0,0,0.01488,0.02414,0.03361,0.04406,0,0,0,0,0,0,0.01684,0.02678,0.03697,0.04838,0,0,0,0,0,0,0.01529,0.02455,0.03424,0.04473,0,0,0,0,0,0,0.0185,0.02861,0.03923,0.05099,0,0,0,0,0,0,0.01571,0.02439,0.03371,0.0436,0,0,0,0,0,0,0.0005,0.0007,0.00152,0.00242,0,0,0,0,0,0,0.00048,0.00068,0.00148,0.00234,0,0,0,0,0,0,0.00049,0.00069,0.00151,0.0024,0,0,0,0,0,0,0.00051,0.00072,0.00154,0.00247,0,0,0,0,0,0,0.00043,0.0006,0.00135,0.00209,0,0,0,0,0,0,0.00044,0.00061,0.00136,0.00212,0,0,0,0,0,0,0.00041,0.00056,0.00129,0.00199,0,0,0,0,0,0,0.00045,0.00062,0.00139,0.00218,0,0,0,0,0,0,0.00039,0.00054,0.00127,0.00195,0,0,0,0,0,0,0.01527,0.01574,0.0405,0.0437,0,0,0,0,0,0,0.01571,0.01615,0.04156,0.04466,0,0,0,0,0,0,0.01699,0.01744,0.0449,0.04809,0,0,0,0,0,0,0.0145,0.01498,0.03834,0.0416,0,0,0,0,0,0,0.0166,0.01695,0.04383,0.04662,0,0,0,0,0,0,0.01535,0.01572,0.04045,0.04327,0,0,0,0,0,0,0.01525,0.01558,0.04037,0.04304,0,0,0,0,0,0,0.01601,0.0164,0.04232,0.04524,0,0,0,0,0,0,0.01566,0.01599,0.04171,0.04436,0,0,0,0,0,0,0.00284,0.00325,0.00974,0.01263,0,0,0,0,0,0,0.00286,0.00324,0.0098,0.0126,0,0,0,0,0,0,0.00304,0.00343,0.01033,0.01322,0,0,0,0,0,0,0.00277,0.00319,0.00947,0.01241,0,0,0,0,0,0,0.00286,0.00318,0.00986,0.01239,0,0,0,0,0,0,0.00273,0.00306,0.00941,0.01196,0,0,0,0,0,0,0.00265,0.00295,0.00926,0.01168,0,0,0,0,0,0,0.00283,0.00317,0.00975,0.01238,0,0,0,0,0,0,0.00268,0.00297,0.00944,0.01184,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00067,0.00068,0,0,0,0,0,0,0.00066,0.00067,0.00068,0.0007,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00066,0.00066,0.00067,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00067,0,0,0,0,0,0,0.00059,0.0006,0.0006,0.00062,0,0,0,0,0,0,0.04784,0.06032,0.08788,0.17065,0,0,0,0,0,0,0.04212,0.05317,0.07922,0.15963,0,0,0,0,0,0,0.04548,0.05974,0.08918,0.17553,0,0,0,0,0,0,0.05233,0.06879,0.10101,0.19092,0,0,0,0,0,0,0.02777,0.03937,0.06626,0.14921,0,0,0,0,0,0,0.03157,0.04433,0.07238,0.15698,0,0,0,0,0,0,0.02687,0.03734,0.06289,0.1427,0,0,0,0,0,0,0.03618,0.04907,0.07768,0.16337,0,0,0,0,0,0,0.02665,0.03706,0.06223,0.14178 +Full size car,PH40G,2040,0,0,0,0,0,0,0,0.01445,0.01457,0.01479,0,0,0,0,0,0,0,0.01491,0.01503,0.01523,0,0,0,0,0,0,0,0.01618,0.0163,0.0165,0,0,0,0,0,0,0,0.01365,0.01379,0.01403,0,0,0,0,0,0,0,0.01588,0.01596,0.0161,0,0,0,0,0,0,0,0.01462,0.01471,0.01486,0,0,0,0,0,0,0,0.01457,0.01464,0.01477,0,0,0,0,0,0,0,0.01527,0.01536,0.01553,0,0,0,0,0,0,0,0.01501,0.01508,0.0152,0,0,0,0,0,0,0,0.00366,0.0027,0.00241,0,0,0,0,0,0,0,0.00316,0.00237,0.00215,0,0,0,0,0,0,0,0.0034,0.00264,0.0024,0,0,0,0,0,0,0,0.00399,0.00309,0.00279,0,0,0,0,0,0,0,0.0018,0.00159,0.00156,0,0,0,0,0,0,0,0.00215,0.00184,0.00177,0,0,0,0,0,0,0,0.00175,0.00155,0.00153,0,0,0,0,0,0,0,0.00249,0.00201,0.00189,0,0,0,0,0,0,0,0.00176,0.0015,0.00145,0,0,0,0,0,0,0,0.58836,0.82927,1.04675,0,0,0,0,0,0,0,0.54774,0.78691,1.00216,0,0,0,0,0,0,0,0.591,0.88399,1.14571,0,0,0,0,0,0,0,0.65139,0.97417,1.26567,0,0,0,0,0,0,0,0.43093,0.71271,0.94894,0,0,0,0,0,0,0,0.47219,0.76921,1.02316,0,0,0,0,0,0,0,0.44494,0.73393,0.97632,0,0,0,0,0,0,0,0.50572,0.78586,1.02366,0,0,0,0,0,0,0,0.41271,0.65392,0.84868,0,0,0,0,0,0,0,101.15397,102.20223,103.79179,0,0,0,0,0,0,0,101.94386,102.92092,104.40643,0,0,0,0,0,0,0,103.65868,104.67579,106.22197,0,0,0,0,0,0,0,101.28285,102.34662,103.96565,0,0,0,0,0,0,0,103.42841,104.14038,105.23735,0,0,0,0,0,0,0,101.90384,102.71395,103.95623,0,0,0,0,0,0,0,102.42127,103.10917,104.17277,0,0,0,0,0,0,0,102.69353,103.52046,104.78598,0,0,0,0,0,0,0,100.58559,101.31795,102.43444,0,0,0,0,0,0,0,0.00227,0.00251,0.00287,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00228,0.00253,0.0029,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.0023,0.00255,0.00292,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00226,0.0025,0.00286,0,0,0,0,0,0,0,0.00845,0.00983,0.01264,0,0,0,0,0,0,0,0.00847,0.00985,0.01267,0,0,0,0,0,0,0,0.00849,0.00988,0.01271,0,0,0,0,0,0,0,0.00839,0.00976,0.01256,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.00842,0.0098,0.0126,0,0,0,0,0,0,0,0.00844,0.00983,0.01264,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.0085,0.00989,0.01272,0,0,0,0,0,0,0,0.02029,0.02897,0.03917,0,0,0,0,0,0,0,0.01934,0.02779,0.03777,0,0,0,0,0,0,0,0.01943,0.0294,0.03986,0,0,0,0,0,0,0,0.0212,0.03247,0.04404,0,0,0,0,0,0,0,0.01483,0.02416,0.03365,0,0,0,0,0,0,0,0.01678,0.02679,0.03702,0,0,0,0,0,0,0,0.01523,0.02457,0.03429,0,0,0,0,0,0,0,0.01845,0.02861,0.03926,0,0,0,0,0,0,0,0.01569,0.02439,0.03372,0,0,0,0,0,0,0,0.0005,0.00071,0.00152,0,0,0,0,0,0,0,0.00048,0.00068,0.00148,0,0,0,0,0,0,0,0.00049,0.00069,0.00151,0,0,0,0,0,0,0,0.00051,0.00073,0.00155,0,0,0,0,0,0,0,0.00043,0.0006,0.00135,0,0,0,0,0,0,0,0.00044,0.00061,0.00136,0,0,0,0,0,0,0,0.0004,0.00056,0.00129,0,0,0,0,0,0,0,0.00044,0.00063,0.0014,0,0,0,0,0,0,0,0.00039,0.00054,0.00127,0,0,0,0,0,0,0,0.01527,0.01574,0.0405,0,0,0,0,0,0,0,0.01571,0.01615,0.04157,0,0,0,0,0,0,0,0.01698,0.01744,0.0449,0,0,0,0,0,0,0,0.01449,0.01499,0.03835,0,0,0,0,0,0,0,0.01659,0.01696,0.04383,0,0,0,0,0,0,0,0.01534,0.01572,0.04046,0,0,0,0,0,0,0,0.01524,0.01558,0.04037,0,0,0,0,0,0,0,0.01601,0.0164,0.04233,0,0,0,0,0,0,0,0.01566,0.01599,0.04171,0,0,0,0,0,0,0,0.00283,0.00325,0.00974,0,0,0,0,0,0,0,0.00285,0.00325,0.00981,0,0,0,0,0,0,0,0.00303,0.00344,0.01034,0,0,0,0,0,0,0,0.00276,0.0032,0.00948,0,0,0,0,0,0,0,0.00286,0.00318,0.00987,0,0,0,0,0,0,0,0.00272,0.00306,0.00941,0,0,0,0,0,0,0,0.00265,0.00295,0.00927,0,0,0,0,0,0,0,0.00282,0.00317,0.00975,0,0,0,0,0,0,0,0.00268,0.00297,0.00944,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00065,0.00066,0.00067,0,0,0,0,0,0,0,0.00066,0.00067,0.00068,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00066,0.00066,0.00067,0,0,0,0,0,0,0,0.00065,0.00066,0.00066,0,0,0,0,0,0,0,0.00065,0.00066,0.00066,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00059,0.0006,0.0006,0,0,0,0,0,0,0,0.04788,0.06025,0.08783,0,0,0,0,0,0,0,0.04215,0.05311,0.07918,0,0,0,0,0,0,0,0.04554,0.05967,0.08913,0,0,0,0,0,0,0,0.05236,0.06873,0.101,0,0,0,0,0,0,0,0.02775,0.03937,0.0663,0,0,0,0,0,0,0,0.03156,0.04431,0.07241,0,0,0,0,0,0,0,0.02684,0.03734,0.06293,0,0,0,0,0,0,0,0.0361,0.04909,0.07778,0,0,0,0,0,0,0,0.02664,0.03704,0.06224 +Full size car,PH40G,2045,0,0,0,0,0,0,0,0,0.01445,0.01457,0,0,0,0,0,0,0,0,0.01491,0.01503,0,0,0,0,0,0,0,0,0.01618,0.0163,0,0,0,0,0,0,0,0,0.01365,0.01379,0,0,0,0,0,0,0,0,0.01588,0.01596,0,0,0,0,0,0,0,0,0.01462,0.01471,0,0,0,0,0,0,0,0,0.01457,0.01464,0,0,0,0,0,0,0,0,0.01527,0.01537,0,0,0,0,0,0,0,0,0.01501,0.01508,0,0,0,0,0,0,0,0,0.00366,0.0027,0,0,0,0,0,0,0,0,0.00315,0.00237,0,0,0,0,0,0,0,0,0.0034,0.00264,0,0,0,0,0,0,0,0,0.00398,0.00308,0,0,0,0,0,0,0,0,0.0018,0.00159,0,0,0,0,0,0,0,0,0.00215,0.00184,0,0,0,0,0,0,0,0,0.00175,0.00155,0,0,0,0,0,0,0,0,0.00248,0.00201,0,0,0,0,0,0,0,0,0.00176,0.0015,0,0,0,0,0,0,0,0,0.58679,0.82731,0,0,0,0,0,0,0,0,0.54649,0.78538,0,0,0,0,0,0,0,0,0.58938,0.88204,0,0,0,0,0,0,0,0,0.64944,0.97189,0,0,0,0,0,0,0,0,0.43065,0.71254,0,0,0,0,0,0,0,0,0.47163,0.76867,0,0,0,0,0,0,0,0,0.4445,0.73349,0,0,0,0,0,0,0,0,0.50513,0.78524,0,0,0,0,0,0,0,0,0.41253,0.65377,0,0,0,0,0,0,0,0,101.14989,102.20214,0,0,0,0,0,0,0,0,101.94005,102.92095,0,0,0,0,0,0,0,0,103.65481,104.67579,0,0,0,0,0,0,0,0,101.27865,102.34657,0,0,0,0,0,0,0,0,103.42549,104.14033,0,0,0,0,0,0,0,0,101.90065,102.71391,0,0,0,0,0,0,0,0,102.41847,103.10915,0,0,0,0,0,0,0,0,102.6903,103.52038,0,0,0,0,0,0,0,0,100.58274,101.31788,0,0,0,0,0,0,0,0,0.00227,0.00251,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00228,0.00253,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.0023,0.00255,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00226,0.0025,0,0,0,0,0,0,0,0,0.00845,0.00983,0,0,0,0,0,0,0,0,0.00847,0.00985,0,0,0,0,0,0,0,0,0.00849,0.00988,0,0,0,0,0,0,0,0,0.00839,0.00976,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.00842,0.0098,0,0,0,0,0,0,0,0,0.00844,0.00983,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.0085,0.00989,0,0,0,0,0,0,0,0,0.02031,0.02901,0,0,0,0,0,0,0,0,0.01935,0.02783,0,0,0,0,0,0,0,0,0.01945,0.02945,0,0,0,0,0,0,0,0,0.02123,0.03253,0,0,0,0,0,0,0,0,0.01485,0.02419,0,0,0,0,0,0,0,0,0.0168,0.02683,0,0,0,0,0,0,0,0,0.01525,0.02461,0,0,0,0,0,0,0,0,0.01846,0.02864,0,0,0,0,0,0,0,0,0.01569,0.02439,0.03695,0,0,0,0,0,0,0,0.0005,0.00071,0.03764,0,0,0,0,0,0,0,0.00048,0.00068,0.03978,0,0,0,0,0,0,0,0.00049,0.00069,0.03528,0,0,0,0,0,0,0,0.00051,0.00073,0.03932,0,0,0,0,0,0,0,0.00043,0.0006,0.03693,0,0,0,0,0,0,0,0.00044,0.00061,0.03718,0,0,0,0,0,0,0,0.0004,0.00057,0.03827,0,0,0,0,0,0,0,0.00045,0.00063,0.03834,0,0,0,0,0,0,0,0.00039,0.00054,0.22542,0,0,0,0,0,0,0,0.01527,0.01575,0.22687,0,0,0,0,0,0,0,0.01571,0.01616,0.23152,0,0,0,0,0,0,0,0.01699,0.01745,0.22191,0,0,0,0,0,0,0,0.0145,0.015,0.23053,0,0,0,0,0,0,0,0.01659,0.01696,0.22545,0,0,0,0,0,0,0,0.01534,0.01573,0.22594,0,0,0,0,0,0,0,0.01524,0.01558,0.22825,0,0,0,0,0,0,0,0.01601,0.01641,0.22835,0,0,0,0,0,0,0,0.01566,0.01599,0.19117,0,0,0,0,0,0,0,0.00284,0.00326,0.19196,0,0,0,0,0,0,0,0.00286,0.00325,0.19467,0,0,0,0,0,0,0,0.00303,0.00344,0.18905,0,0,0,0,0,0,0,0.00277,0.00321,0.19409,0,0,0,0,0,0,0,0.00286,0.00318,0.19108,0,0,0,0,0,0,0,0.00272,0.00306,0.19144,0,0,0,0,0,0,0,0.00265,0.00295,0.19277,0,0,0,0,0,0,0,0.00283,0.00318,0.19293,0,0,0,0,0,0,0,0.00268,0.00297,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00066,0.00067,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00066,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00059,0.0006,0,0,0,0,0,0,0,0,0.04783,0.06022,0,0,0,0,0,0,0,0,0.0421,0.05308,0,0,0,0,0,0,0,0,0.04548,0.05962,0,0,0,0,0,0,0,0,0.05231,0.0687,0,0,0,0,0,0,0,0,0.02774,0.03939,0,0,0,0,0,0,0,0,0.03154,0.04431,0,0,0,0,0,0,0,0,0.02683,0.03736,0,0,0,0,0,0,0,0,0.03611,0.04915,0,0,0,0,0,0,0,0,0.02663,0.03704 +Full size car,PH40G,2050,0,0,0,0,0,0,0,0,0,0.01445,0,0,0,0,0,0,0,0,0,0.01491,0,0,0,0,0,0,0,0,0,0.01618,0,0,0,0,0,0,0,0,0,0.01366,0,0,0,0,0,0,0,0,0,0.01588,0,0,0,0,0,0,0,0,0,0.01462,0,0,0,0,0,0,0,0,0,0.01457,0,0,0,0,0,0,0,0,0,0.01527,0,0,0,0,0,0,0,0,0,0.01501,0,0,0,0,0,0,0,0,0,0.00365,0,0,0,0,0,0,0,0,0,0.00315,0,0,0,0,0,0,0,0,0,0.00339,0,0,0,0,0,0,0,0,0,0.00398,0,0,0,0,0,0,0,0,0,0.0018,0,0,0,0,0,0,0,0,0,0.00214,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00248,0,0,0,0,0,0,0,0,0,0.00176,0,0,0,0,0,0,0,0,0,0.58513,0,0,0,0,0,0,0,0,0,0.54518,0,0,0,0,0,0,0,0,0,0.58766,0,0,0,0,0,0,0,0,0,0.64735,0,0,0,0,0,0,0,0,0,0.4304,0,0,0,0,0,0,0,0,0,0.47107,0,0,0,0,0,0,0,0,0,0.44407,0,0,0,0,0,0,0,0,0,0.50455,0,0,0,0,0,0,0,0,0,0.41241,0,0,0,0,0,0,0,0,0,101.14991,0,0,0,0,0,0,0,0,0,101.94007,0,0,0,0,0,0,0,0,0,103.6548,0,0,0,0,0,0,0,0,0,101.27862,0,0,0,0,0,0,0,0,0,103.42549,0,0,0,0,0,0,0,0,0,101.9006,0,0,0,0,0,0,0,0,0,102.4184,0,0,0,0,0,0,0,0,0,102.69025,0,0,0,0,0,0,0,0,0,100.58271,0,0,0,0,0,0,0,0,0,0.00227,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00226,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00847,0,0,0,0,0,0,0,0,0,0.00849,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.00842,0,0,0,0,0,0,0,0,0,0.00844,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.0085,0,0,0,0,0,0,0,0,0,0.02034,0,0,0,0,0,0,0,0,0,0.01938,0,0,0,0,0,0,0,0,0,0.01948,0,0,0,0,0,0,0,0,0,0.02128,0,0,0,0,0,0,0,0,0,0.01487,0,0,0,0,0,0,0,0,0,0.01682,0,0,0,0,0,0,0,0,0,0.01528,0,0,0,0,0,0,0,0,0,0.01848,0,0,0,0,0,0,0,0,0,0.0157,0.02912,0.03066,0,0,0,0,0,0,0,0.0005,0.03005,0.03143,0,0,0,0,0,0,0,0.00048,0.0328,0.03373,0,0,0,0,0,0,0,0.00049,0.02693,0.02878,0,0,0,0,0,0,0,0.00051,0.03219,0.03322,0,0,0,0,0,0,0,0.00043,0.02907,0.03057,0,0,0,0,0,0,0,0.00044,0.02942,0.0309,0,0,0,0,0,0,0,0.00041,0.03086,0.03211,0,0,0,0,0,0,0,0.00045,0.03096,0.03224,0,0,0,0,0,0,0,0.00039,0.18202,0.18217,0,0,0,0,0,0,0,0.01527,0.18468,0.18425,0,0,0,0,0,0,0,0.01571,0.19261,0.19058,0,0,0,0,0,0,0,0.01699,0.17574,0.1771,0,0,0,0,0,0,0,0.0145,0.19087,0.18919,0,0,0,0,0,0,0,0.0166,0.18191,0.18201,0,0,0,0,0,0,0,0.01535,0.18289,0.18283,0,0,0,0,0,0,0,0.01524,0.18702,0.18613,0,0,0,0,0,0,0,0.01601,0.18729,0.1864,0,0,0,0,0,0,0,0.01566,0.15121,0.15137,0,0,0,0,0,0,0,0.00284,0.15312,0.15274,0,0,0,0,0,0,0,0.00286,0.15886,0.15701,0,0,0,0,0,0,0,0.00304,0.14652,0.14781,0,0,0,0,0,0,0,0.00277,0.15758,0.15604,0,0,0,0,0,0,0,0.00286,0.15099,0.1511,0,0,0,0,0,0,0,0.00272,0.1518,0.15177,0,0,0,0,0,0,0,0.00265,0.15481,0.15401,0,0,0,0,0,0,0,0.00283,0.15513,0.15433,0,0,0,0,0,0,0,0.00268,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00066,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00066,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00059,0,0,0,0,0,0,0,0,0,0.04779,0,0,0,0,0,0,0,0,0,0.04208,0,0,0,0,0,0,0,0,0,0.04543,0,0,0,0,0,0,0,0,0,0.05227,0,0,0,0,0,0,0,0,0,0.02775,0,0,0,0,0,0,0,0,0,0.03154,0,0,0,0,0,0,0,0,0,0.02684,0,0,0,0,0,0,0,0,0,0.03614,0,0,0,0,0,0,0,0,0,0.02663 +Large SUV,B20,1990,0.22805,,,,,,,,,,0.22758,,,,,,,,,,0.22652,,,,,,,,,,0.22882,,,,,,,,,,0.22674,,,,,,,,,,0.22793,,,,,,,,,,0.22788,,,,,,,,,,0.22726,,,,,,,,,,0.22738,,,,,,,,,,0.00727,,,,,,,,,,0.0073,,,,,,,,,,0.0075,,,,,,,,,,0.00715,,,,,,,,,,0.00733,,,,,,,,,,0.00716,,,,,,,,,,0.00718,,,,,,,,,,0.00732,,,,,,,,,,0.00722,,,,,,,,,,51.08076,,,,,,,,,,51.76979,,,,,,,,,,52.11024,,,,,,,,,,51.40393,,,,,,,,,,53.85553,,,,,,,,,,52.69588,,,,,,,,,,54.2288,,,,,,,,,,53.09684,,,,,,,,,,52.37859,,,,,,,,,,538.78784,,,,,,,,,,540.82552,,,,,,,,,,546.10831,,,,,,,,,,537.34516,,,,,,,,,,544.15597,,,,,,,,,,538.80041,,,,,,,,,,541.01955,,,,,,,,,,542.54018,,,,,,,,,,537.90486,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.83861,,,,,,,,,,5.88438,,,,,,,,,,5.92266,,,,,,,,,,5.80178,,,,,,,,,,5.83039,,,,,,,,,,5.79643,,,,,,,,,,5.83528,,,,,,,,,,6.1888,,,,,,,,,,5.9569,,,,,,,,,,0.06237,,,,,,,,,,0.06353,,,,,,,,,,0.06715,,,,,,,,,,0.05956,,,,,,,,,,0.06637,,,,,,,,,,0.06234,,,,,,,,,,0.06277,,,,,,,,,,0.06461,,,,,,,,,,0.06473,,,,,,,,,,0.38774,,,,,,,,,,0.39042,,,,,,,,,,0.39892,,,,,,,,,,0.38136,,,,,,,,,,0.39713,,,,,,,,,,0.38783,,,,,,,,,,0.3887,,,,,,,,,,0.39294,,,,,,,,,,0.39308,,,,,,,,,,0.3243,,,,,,,,,,0.32567,,,,,,,,,,0.33035,,,,,,,,,,0.32063,,,,,,,,,,0.32935,,,,,,,,,,0.32415,,,,,,,,,,0.32476,,,,,,,,,,0.32706,,,,,,,,,,0.32733,,,,,,,,,,0.04323,,,,,,,,,,0.04339,,,,,,,,,,0.04381,,,,,,,,,,0.04311,,,,,,,,,,0.04366,,,,,,,,,,0.04323,,,,,,,,,,0.0434,,,,,,,,,,0.04353,,,,,,,,,,0.04315,,,,,,,,,,3.16077,,,,,,,,,,3.17278,,,,,,,,,,3.25865,,,,,,,,,,3.10689,,,,,,,,,,3.18343,,,,,,,,,,3.11363,,,,,,,,,,3.12008,,,,,,,,,,3.17963,,,,,,,,,,3.13782,,,,,,,,, +Large SUV,B20,1995,0.17989,0.17824,,,,,,,,,0.18072,0.17862,,,,,,,,,0.18332,0.17994,,,,,,,,,0.17759,0.177,,,,,,,,,0.18271,0.17961,,,,,,,,,0.17961,0.178,,,,,,,,,0.1801,0.17832,,,,,,,,,0.18148,0.17901,,,,,,,,,0.18179,0.17926,,,,,,,,,0.00409,0.0059,,,,,,,,,0.00411,0.00592,,,,,,,,,0.00422,0.00607,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00413,0.00593,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00406,0.00583,,,,,,,,,0.00412,0.00593,,,,,,,,,0.00405,0.00585,,,,,,,,,16.44771,32.26825,,,,,,,,,16.86814,32.85107,,,,,,,,,16.87762,32.93686,,,,,,,,,16.93022,32.79195,,,,,,,,,18.03012,34.50973,,,,,,,,,17.59858,33.77339,,,,,,,,,18.44219,35.02464,,,,,,,,,17.60578,33.92034,,,,,,,,,17.03581,33.20786,,,,,,,,,601.03056,581.61769,,,,,,,,,605.47132,585.05585,,,,,,,,,611.12901,590.77357,,,,,,,,,601.92026,581.57618,,,,,,,,,615.76521,592.40359,,,,,,,,,608.16961,585.65927,,,,,,,,,613.41805,589.65718,,,,,,,,,611.11325,589.02543,,,,,,,,,604.06398,582.67328,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.70728,6.16661,,,,,,,,,5.81129,6.24702,,,,,,,,,5.90706,6.31341,,,,,,,,,5.69559,6.14882,,,,,,,,,5.92634,6.28923,,,,,,,,,5.79816,6.20353,,,,,,,,,5.90398,6.28765,,,,,,,,,6.22269,6.62793,,,,,,,,,5.90345,6.33515,,,,,,,,,0.04916,0.05176,,,,,,,,,0.05072,0.05305,,,,,,,,,0.05537,0.05694,,,,,,,,,0.04545,0.04858,,,,,,,,,0.05434,0.05607,,,,,,,,,0.04907,0.0516,,,,,,,,,0.04966,0.05216,,,,,,,,,0.05209,0.0542,,,,,,,,,0.05226,0.05442,,,,,,,,,0.31429,0.31418,,,,,,,,,0.31901,0.31792,,,,,,,,,0.33306,0.32924,,,,,,,,,0.30321,0.30519,,,,,,,,,0.32999,0.32676,,,,,,,,,0.31414,0.31396,,,,,,,,,0.31584,0.31539,,,,,,,,,0.32315,0.32127,,,,,,,,,0.32358,0.32171,,,,,,,,,0.25665,0.25659,,,,,,,,,0.25992,0.25895,,,,,,,,,0.26974,0.26625,,,,,,,,,0.24864,0.25052,,,,,,,,,0.26754,0.2646,,,,,,,,,0.25628,0.25616,,,,,,,,,0.25765,0.25729,,,,,,,,,0.26281,0.26111,,,,,,,,,0.26334,0.26166,,,,,,,,,0.04822,0.00538,,,,,,,,,0.04858,0.00542,,,,,,,,,0.04903,0.00547,,,,,,,,,0.04829,0.00538,,,,,,,,,0.0494,0.00548,,,,,,,,,0.04879,0.00542,,,,,,,,,0.04921,0.00546,,,,,,,,,0.04903,0.00545,,,,,,,,,0.04846,0.00539,,,,,,,,,2.01091,2.75535,,,,,,,,,2.01877,2.76324,,,,,,,,,2.07351,2.832,,,,,,,,,1.98408,2.71558,,,,,,,,,2.02997,2.76938,,,,,,,,,1.98773,2.71574,,,,,,,,,1.99382,2.72313,,,,,,,,,2.02581,2.76909,,,,,,,,,1.99133,2.72948,,,,,,,, +Large SUV,B20,2000,0.17277,0.17036,0.16849,,,,,,,,0.17351,0.17108,0.16911,,,,,,,,0.17566,0.17317,0.17096,,,,,,,,0.17051,0.16815,0.16654,,,,,,,,0.17509,0.1726,0.17046,,,,,,,,0.17224,0.16983,0.16801,,,,,,,,0.17288,0.17046,0.16858,,,,,,,,0.17416,0.17171,0.16967,,,,,,,,0.17464,0.1722,0.17011,,,,,,,,0.00196,0.00273,0.00398,,,,,,,,0.00197,0.00273,0.00398,,,,,,,,0.00204,0.00281,0.00408,,,,,,,,0.00194,0.0027,0.00393,,,,,,,,0.00197,0.00273,0.00396,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00197,0.00273,0.00397,,,,,,,,0.00191,0.00266,0.00389,,,,,,,,5.36619,8.06769,14.31453,,,,,,,,5.56579,8.32587,14.66954,,,,,,,,5.67676,8.43474,14.74389,,,,,,,,5.55271,8.32892,14.68617,,,,,,,,6.15287,9.09831,15.70228,,,,,,,,5.90527,8.78164,15.28578,,,,,,,,6.20957,9.23242,15.98444,,,,,,,,5.89796,8.77512,15.30446,,,,,,,,5.61249,8.41137,14.82543,,,,,,,,607.45309,611.27577,611.22536,,,,,,,,612.68141,616.30533,615.63262,,,,,,,,618.59733,622.29771,621.77589,,,,,,,,608.94563,612.6327,612.15592,,,,,,,,625.29169,628.26771,625.67413,,,,,,,,616.80843,619.94316,617.91526,,,,,,,,623.06316,625.97761,623.1592,,,,,,,,619.60626,622.8754,621.12208,,,,,,,,611.82942,615.05615,613.38267,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.27894,4.5826,5.23497,,,,,,,,4.38664,4.68891,5.33485,,,,,,,,4.49703,4.79631,5.43246,,,,,,,,4.27293,4.57458,5.22215,,,,,,,,4.55602,4.84927,5.46542,,,,,,,,4.40525,4.70173,5.33139,,,,,,,,4.51455,4.81186,5.43793,,,,,,,,4.75874,5.06634,5.7178,,,,,,,,4.46893,4.77437,5.42474,,,,,,,,0.04518,0.04528,0.04678,,,,,,,,0.0467,0.04675,0.04815,,,,,,,,0.05117,0.05111,0.05227,,,,,,,,0.04161,0.04175,0.04338,,,,,,,,0.05018,0.05014,0.05134,,,,,,,,0.0451,0.04515,0.04659,,,,,,,,0.04567,0.04574,0.04719,,,,,,,,0.04802,0.04804,0.04937,,,,,,,,0.04818,0.04823,0.04962,,,,,,,,0.3003,0.29571,0.296,,,,,,,,0.30484,0.30009,0.30012,,,,,,,,0.3181,0.31292,0.31232,,,,,,,,0.2895,0.28517,0.28593,,,,,,,,0.31513,0.31003,0.30956,,,,,,,,0.29989,0.29523,0.29547,,,,,,,,0.3017,0.29704,0.29724,,,,,,,,0.30877,0.3039,0.30374,,,,,,,,0.30936,0.30455,0.30443,,,,,,,,0.24374,0.23952,0.2398,,,,,,,,0.24685,0.24249,0.24253,,,,,,,,0.25596,0.2512,0.25065,,,,,,,,0.23596,0.232,0.23272,,,,,,,,0.25385,0.24917,0.24875,,,,,,,,0.24313,0.23885,0.23909,,,,,,,,0.24461,0.24034,0.24054,,,,,,,,0.24955,0.24507,0.24494,,,,,,,,0.25024,0.24582,0.24572,,,,,,,,0.04873,0.00566,0.00566,,,,,,,,0.04915,0.00571,0.0057,,,,,,,,0.04963,0.00576,0.00576,,,,,,,,0.04885,0.00567,0.00567,,,,,,,,0.05017,0.00582,0.00579,,,,,,,,0.04948,0.00574,0.00572,,,,,,,,0.04999,0.00579,0.00577,,,,,,,,0.04971,0.00577,0.00575,,,,,,,,0.04909,0.00569,0.00568,,,,,,,,0.98924,1.36957,1.96291,,,,,,,,0.99427,1.37336,1.96434,,,,,,,,1.03043,1.41134,2.01209,,,,,,,,0.97808,1.35605,1.94133,,,,,,,,0.99486,1.3699,1.95249,,,,,,,,0.9736,1.3476,1.92505,,,,,,,,0.97176,1.34753,1.925,,,,,,,,0.99419,1.37292,1.96122,,,,,,,,0.9621,1.33842,1.92073,,,,,,, +Large SUV,B20,2005,0.08078,0.1089,0.10857,0.12252,,,,,,,0.08084,0.10897,0.10864,0.12272,,,,,,,0.08096,0.10912,0.10879,0.12329,,,,,,,0.08046,0.10845,0.10811,0.12168,,,,,,,0.08089,0.10903,0.10869,0.1231,,,,,,,0.08058,0.10861,0.10827,0.12216,,,,,,,0.08075,0.10885,0.10851,0.12249,,,,,,,0.08089,0.10903,0.1087,0.12291,,,,,,,0.08105,0.10927,0.10894,0.12321,,,,,,,0.002,0.00178,0.00203,0.00282,,,,,,,0.00198,0.00178,0.00202,0.00281,,,,,,,0.00207,0.00185,0.0021,0.0029,,,,,,,0.00199,0.00176,0.00201,0.00279,,,,,,,0.00184,0.00176,0.00198,0.00273,,,,,,,0.00185,0.00173,0.00195,0.00271,,,,,,,0.0018,0.00171,0.00193,0.00269,,,,,,,0.00191,0.00177,0.002,0.00277,,,,,,,0.00177,0.00169,0.00191,0.00267,,,,,,,2.10242,4.07972,4.8952,7.74585,,,,,,,2.18134,4.23234,5.06451,7.96509,,,,,,,2.22336,4.3202,5.15429,8.04899,,,,,,,2.17347,4.21186,5.04278,7.95377,,,,,,,2.41578,4.68882,5.5724,8.62104,,,,,,,2.31342,4.48547,5.34557,8.33881,,,,,,,2.44196,4.73124,5.63191,8.74726,,,,,,,2.31503,4.49118,5.35639,8.35543,,,,,,,2.20527,4.27963,5.1245,8.05815,,,,,,,749.77621,752.25396,757.28552,731.51385,,,,,,,758.02248,760.3571,765.13224,738.2125,,,,,,,768.76441,771.12215,776.03367,748.21617,,,,,,,749.43253,751.77386,756.63497,731.06234,,,,,,,778.53836,780.40633,784.33281,754.11852,,,,,,,763.47669,765.454,769.58737,741.29687,,,,,,,772.3496,774.17497,777.98916,748.53308,,,,,,,768.82496,770.90602,775.20833,746.575,,,,,,,758.95407,761.08564,765.29914,736.94078,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.98685,3.15562,3.27307,3.85585,,,,,,,3.05399,3.22159,3.33648,3.92591,,,,,,,3.11921,3.28271,3.3937,3.99106,,,,,,,2.98457,3.15342,3.26981,3.84841,,,,,,,3.14299,3.3027,3.40888,4.00743,,,,,,,3.05829,3.22222,3.33306,3.91961,,,,,,,3.12339,3.28768,3.39721,3.99332,,,,,,,3.29701,3.46771,3.58008,4.19993,,,,,,,3.10548,3.27441,3.38984,3.98908,,,,,,,0.01856,0.025,0.02542,0.03118,,,,,,,0.01916,0.0258,0.02622,0.03211,,,,,,,0.0209,0.02814,0.02853,0.03484,,,,,,,0.01724,0.02322,0.02364,0.029,,,,,,,0.02053,0.02764,0.02803,0.03424,,,,,,,0.0186,0.02504,0.02545,0.03113,,,,,,,0.01877,0.02528,0.02569,0.03148,,,,,,,0.01968,0.0265,0.02691,0.03292,,,,,,,0.01968,0.0265,0.02692,0.03302,,,,,,,0.15839,0.19789,0.19818,0.22219,,,,,,,0.16073,0.20055,0.20082,0.22517,,,,,,,0.16747,0.20816,0.20841,0.23386,,,,,,,0.15323,0.19196,0.19224,0.21521,,,,,,,0.16602,0.2065,0.20675,0.23193,,,,,,,0.15851,0.19794,0.1982,0.22202,,,,,,,0.15919,0.19878,0.19906,0.22314,,,,,,,0.16275,0.20282,0.20309,0.22777,,,,,,,0.16274,0.2029,0.20319,0.22806,,,,,,,0.11317,0.14952,0.14979,0.17188,,,,,,,0.11426,0.1509,0.15115,0.17356,,,,,,,0.11738,0.15482,0.15505,0.17847,,,,,,,0.11058,0.14622,0.14649,0.16762,,,,,,,0.11667,0.15392,0.15415,0.17732,,,,,,,0.11305,0.14933,0.14957,0.17149,,,,,,,0.1135,0.14992,0.15018,0.17234,,,,,,,0.1152,0.15208,0.15233,0.17504,,,,,,,0.11534,0.15229,0.15257,0.17545,,,,,,,0.06015,0.00696,0.00701,0.00677,,,,,,,0.06081,0.00704,0.00708,0.00683,,,,,,,0.06168,0.00714,0.00718,0.00693,,,,,,,0.06012,0.00696,0.007,0.00677,,,,,,,0.06246,0.00722,0.00726,0.00698,,,,,,,0.06125,0.00709,0.00712,0.00686,,,,,,,0.06196,0.00717,0.0072,0.00693,,,,,,,0.06168,0.00714,0.00718,0.00691,,,,,,,0.06089,0.00705,0.00708,0.00682,,,,,,,0.40779,0.68676,0.76688,1.18176,,,,,,,0.4062,0.68918,0.76716,1.17874,,,,,,,0.42408,0.71703,0.7963,1.21432,,,,,,,0.40444,0.67975,0.75955,1.17047,,,,,,,0.38967,0.68243,0.7519,1.15107,,,,,,,0.38748,0.66991,0.74214,1.14147,,,,,,,0.38001,0.66538,0.73519,1.13233,,,,,,,0.39774,0.68533,0.75943,1.16612,,,,,,,0.37425,0.65652,0.72651,1.12526,,,,,, +Large SUV,B20,2010,,0.03413,0.03237,0.02989,0.06582,,,,,,,0.03416,0.0324,0.02991,0.06592,,,,,,,0.03421,0.03245,0.02996,0.06618,,,,,,,0.03398,0.03222,0.02974,0.06539,,,,,,,0.03418,0.03242,0.02993,0.06608,,,,,,,0.03404,0.03228,0.02979,0.06562,,,,,,,0.03411,0.03235,0.02987,0.0658,,,,,,,0.03418,0.03242,0.02993,0.06601,,,,,,,0.03426,0.0325,0.03001,0.06618,,,,,,,0.05914,0.09372,0.12903,0.10029,,,,,,,0.05628,0.09046,0.12463,0.09674,,,,,,,0.05935,0.0944,0.12935,0.1003,,,,,,,0.05929,0.09368,0.12898,0.10025,,,,,,,0.04346,0.07565,0.10509,0.08119,,,,,,,0.04769,0.0802,0.11124,0.08617,,,,,,,0.04293,0.07487,0.10445,0.08081,,,,,,,0.05001,0.08329,0.11526,0.0893,,,,,,,0.04206,0.07374,0.10317,0.07993,,,,,,,1.46727,2.36807,3.05721,5.45039,,,,,,,1.51824,2.44314,3.14567,5.59664,,,,,,,1.53136,2.45291,3.14953,5.63128,,,,,,,1.52073,2.45058,3.15657,5.59741,,,,,,,1.66585,2.6603,3.40189,6.03286,,,,,,,1.60629,2.57443,3.30116,5.84887,,,,,,,1.70131,2.72629,3.49122,6.14754,,,,,,,1.60649,2.57654,3.30635,5.86371,,,,,,,1.53655,2.47504,3.18865,5.66916,,,,,,,722.88144,723.26489,724.86131,733.55234,,,,,,,730.79918,730.96901,732.24039,740.34255,,,,,,,741.14393,741.36063,742.74017,750.86644,,,,,,,722.58197,722.8257,724.24086,732.82405,,,,,,,750.61223,750.0992,750.32436,756.49744,,,,,,,736.13965,735.82867,736.36051,743.24035,,,,,,,744.66165,744.08374,744.20571,750.4392,,,,,,,741.20631,740.99778,741.68743,748.76308,,,,,,,731.75047,731.55203,732.17584,738.98818,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.62417,1.71677,1.7449,2.62565,,,,,,,1.65637,1.74939,1.77609,2.67106,,,,,,,1.69129,1.78421,1.80928,2.71599,,,,,,,1.61751,1.70931,1.7365,2.6166,,,,,,,1.6921,1.7841,1.80787,2.72089,,,,,,,1.651,1.74253,1.76771,2.66245,,,,,,,1.67968,1.77231,1.79706,2.70934,,,,,,,1.77606,1.87257,1.89633,2.84979,,,,,,,1.68299,1.77744,1.80444,2.71379,,,,,,,0.00822,0.0084,0.00805,0.01746,,,,,,,0.00848,0.00865,0.00827,0.01795,,,,,,,0.00922,0.00935,0.00891,0.0194,,,,,,,0.00766,0.00787,0.00755,0.0163,,,,,,,0.00906,0.0092,0.00877,0.01908,,,,,,,0.00824,0.00842,0.00805,0.01743,,,,,,,0.00831,0.00849,0.00812,0.01762,,,,,,,0.0087,0.00886,0.00846,0.01838,,,,,,,0.00869,0.00886,0.00847,0.01844,,,,,,,0.094,0.09526,0.09277,0.14416,,,,,,,0.09578,0.09704,0.09452,0.14638,,,,,,,0.10092,0.1022,0.09958,0.15285,,,,,,,0.09018,0.0914,0.08896,0.13908,,,,,,,0.09984,0.10111,0.0985,0.15143,,,,,,,0.0942,0.09543,0.09292,0.14414,,,,,,,0.09464,0.09589,0.09339,0.1449,,,,,,,0.09731,0.09858,0.09603,0.14832,,,,,,,0.09722,0.09851,0.09598,0.14845,,,,,,,0.05395,0.05511,0.05283,0.1001,,,,,,,0.05453,0.05569,0.05337,0.10108,,,,,,,0.05617,0.05735,0.05494,0.10395,,,,,,,0.0526,0.05373,0.05149,0.09759,,,,,,,0.0558,0.05697,0.05458,0.10327,,,,,,,0.0539,0.05504,0.05273,0.09985,,,,,,,0.05413,0.05528,0.05298,0.10036,,,,,,,0.05502,0.05619,0.05384,0.10195,,,,,,,0.05509,0.05628,0.05395,0.10221,,,,,,,0.00636,0.00636,0.00636,0.00657,,,,,,,0.00643,0.00643,0.00643,0.00664,,,,,,,0.00653,0.00652,0.00652,0.00673,,,,,,,0.00636,0.00635,0.00636,0.00657,,,,,,,0.00661,0.00659,0.00658,0.00678,,,,,,,0.00648,0.00647,0.00646,0.00666,,,,,,,0.00656,0.00654,0.00653,0.00673,,,,,,,0.00653,0.00651,0.00651,0.00671,,,,,,,0.00644,0.00643,0.00643,0.00662,,,,,,,0.22863,0.26113,0.29326,0.69406,,,,,,,0.22671,0.25838,0.28877,0.68767,,,,,,,0.23699,0.26926,0.30025,0.71008,,,,,,,0.22704,0.25947,0.29171,0.68874,,,,,,,0.21325,0.24141,0.26495,0.6524,,,,,,,0.21384,0.24311,0.2693,0.65487,,,,,,,0.20814,0.23641,0.26045,0.64258,,,,,,,0.21992,0.24999,0.27718,0.67096,,,,,,,0.20479,0.23296,0.25705,0.63767,,,,, +Large SUV,B20,2015,,,0.00072,0.00116,0.00138,0.017,,,,,,,0.00072,0.00116,0.00139,0.01701,,,,,,,0.00074,0.00118,0.00141,0.01705,,,,,,,0.0007,0.00113,0.00135,0.0169,,,,,,,0.00073,0.00118,0.0014,0.01703,,,,,,,0.00071,0.00115,0.00137,0.01694,,,,,,,0.00072,0.00116,0.00138,0.01699,,,,,,,0.00073,0.00117,0.0014,0.01703,,,,,,,0.00073,0.00118,0.00141,0.01708,,,,,,,0.08452,0.11522,0.15291,0.17495,,,,,,,0.0805,0.11044,0.1469,0.16807,,,,,,,0.08489,0.11551,0.15277,0.1745,,,,,,,0.0847,0.11535,0.15304,0.17504,,,,,,,0.06251,0.08914,0.12046,0.13817,,,,,,,0.0684,0.09606,0.12913,0.14804,,,,,,,0.0617,0.08838,0.11987,0.13766,,,,,,,0.0717,0.10011,0.13418,0.15373,,,,,,,0.06045,0.08695,0.11829,0.13609,,,,,,,0.91342,1.75476,2.44395,3.72102,,,,,,,0.93766,1.80032,2.5048,3.81076,,,,,,,0.92709,1.78281,2.48348,3.79799,,,,,,,0.94758,1.8168,2.52446,3.82746,,,,,,,1.00472,1.92811,2.67742,4.07194,,,,,,,0.98312,1.88496,2.61696,3.97137,,,,,,,1.04466,2.00046,2.77209,4.18838,,,,,,,0.98318,1.88653,2.62106,3.98173,,,,,,,0.95128,1.82695,2.54218,3.86592,,,,,,,628.04989,629.96688,633.22933,667.36676,,,,,,,634.82955,636.56026,639.57363,673.57396,,,,,,,643.63616,645.44076,648.57141,683.22598,,,,,,,627.7626,629.55898,632.68016,666.57559,,,,,,,651.64498,652.76595,654.96349,688.28856,,,,,,,639.21463,640.50081,642.91766,676.07495,,,,,,,646.66173,647.70936,649.81246,682.70751,,,,,,,643.71917,645.11017,647.6692,681.25657,,,,,,,635.53638,636.89304,639.35925,672.36628,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.33306,,,,,,,0.53682,0.77214,0.84369,1.35329,,,,,,,0.54809,0.78753,0.85813,1.37456,,,,,,,0.52372,0.75365,0.82514,1.32582,,,,,,,0.5485,0.78781,0.85785,1.37441,,,,,,,0.53445,0.7684,0.83893,1.34638,,,,,,,0.54375,0.78179,0.85304,1.36862,,,,,,,0.57087,0.82186,0.89466,1.43542,,,,,,,0.54606,0.78532,0.85779,1.3751,,,,,,,0.00101,0.00156,0.00171,0.00554,,,,,,,0.00101,0.00158,0.00172,0.00565,,,,,,,0.00104,0.00161,0.00175,0.00601,,,,,,,0.00098,0.00153,0.00167,0.00524,,,,,,,0.00103,0.0016,0.00174,0.00593,,,,,,,0.001,0.00155,0.00169,0.00552,,,,,,,0.00101,0.00157,0.00171,0.00557,,,,,,,0.00102,0.00159,0.00173,0.00576,,,,,,,0.00103,0.0016,0.00174,0.00578,,,,,,,0.04842,0.05245,0.05361,0.07642,,,,,,,0.04982,0.05388,0.05503,0.078,,,,,,,0.05386,0.05801,0.05915,0.0826,,,,,,,0.04553,0.04946,0.0506,0.07295,,,,,,,0.05303,0.05715,0.05829,0.08162,,,,,,,0.04868,0.05268,0.05381,0.07654,,,,,,,0.04895,0.05298,0.05413,0.07698,,,,,,,0.05102,0.0551,0.05625,0.07937,,,,,,,0.05087,0.05498,0.05615,0.07935,,,,,,,0.01202,0.01573,0.0168,0.03778,,,,,,,0.01224,0.01598,0.01703,0.03817,,,,,,,0.01288,0.0167,0.01775,0.03932,,,,,,,0.01152,0.01514,0.01619,0.03675,,,,,,,0.01274,0.01653,0.01758,0.03904,,,,,,,0.01202,0.01571,0.01674,0.03766,,,,,,,0.0121,0.01581,0.01686,0.03788,,,,,,,0.01243,0.01619,0.01725,0.03852,,,,,,,0.01245,0.01623,0.01731,0.03865,,,,,,,0.0054,0.00542,0.00545,0.00581,,,,,,,0.00546,0.00548,0.0055,0.00586,,,,,,,0.00554,0.00555,0.00558,0.00595,,,,,,,0.0054,0.00542,0.00544,0.0058,,,,,,,0.00561,0.00561,0.00563,0.00599,,,,,,,0.0055,0.00551,0.00553,0.00589,,,,,,,0.00556,0.00557,0.00559,0.00594,,,,,,,0.00554,0.00555,0.00557,0.00593,,,,,,,0.00547,0.00548,0.0055,0.00585,,,,,,,0.08842,0.11694,0.15196,0.30894,,,,,,,0.0848,0.11261,0.14648,0.30159,,,,,,,0.08902,0.11745,0.15208,0.31248,,,,,,,0.08859,0.11705,0.15207,0.30789,,,,,,,0.06837,0.0931,0.12219,0.26763,,,,,,,0.07364,0.09933,0.13005,0.27671,,,,,,,0.06754,0.09231,0.12157,0.2648,,,,,,,0.07677,0.10316,0.13481,0.2853,,,,,,,0.06621,0.09081,0.11993,0.26207,,,, +Large SUV,B20,2020,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00072,0.00111,0.00125,0.00418,,,,,,,0.00074,0.00113,0.00127,0.00421,,,,,,,0.0007,0.00108,0.00122,0.00414,,,,,,,0.00073,0.00112,0.00127,0.0042,,,,,,,0.00072,0.00109,0.00124,0.00415,,,,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00073,0.00111,0.00126,0.00419,,,,,,,0.00073,0.00112,0.00127,0.00422,,,,,,,0.08358,0.10624,0.13139,0.18031,,,,,,,0.07944,0.1014,0.12537,0.17228,,,,,,,0.08399,0.10664,0.1315,0.1799,,,,,,,0.08379,0.10643,0.13163,0.18056,,,,,,,0.06087,0.07977,0.09876,0.13728,,,,,,,0.06698,0.08684,0.10757,0.14897,,,,,,,0.06,0.07885,0.09788,0.13647,,,,,,,0.07033,0.09085,0.11244,0.15536,,,,,,,0.05872,0.07739,0.09623,0.1346,,,,,,,0.78003,1.244,1.58419,2.54313,,,,,,,0.80087,1.27638,1.623,2.59981,,,,,,,0.7941,1.26576,1.6085,2.57887,,,,,,,0.80806,1.28709,1.63602,2.61669,,,,,,,0.85922,1.36751,1.7326,2.76223,,,,,,,0.83946,1.3361,1.69464,2.70367,,,,,,,0.89057,1.41653,1.79422,2.85345,,,,,,,0.83979,1.33732,1.69717,2.71054,,,,,,,0.81228,1.29491,1.647,2.63871,,,,,,,550.76488,551.97758,554.5184,590.54774,,,,,,,556.65536,557.70538,560.02341,595.9663,,,,,,,564.37632,565.48582,567.90427,604.49952,,,,,,,550.49794,551.60614,554.01994,589.81791,,,,,,,571.21973,571.74336,573.334,608.73913,,,,,,,560.38047,561.05115,562.84058,598.00753,,,,,,,566.85909,567.32038,568.82618,603.8187,,,,,,,564.35678,565.11296,567.02507,602.63906,,,,,,,557.15998,557.89524,559.73271,594.75276,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82389,,,,,,,0.44685,0.5816,0.6301,0.83493,,,,,,,0.45614,0.59314,0.64146,0.848,,,,,,,0.43605,0.5678,0.61593,0.8177,,,,,,,0.45642,0.59326,0.64117,0.8469,,,,,,,0.44481,0.5787,0.62653,0.82966,,,,,,,0.45243,0.58857,0.63684,0.84263,,,,,,,0.47433,0.61755,0.66685,0.88083,,,,,,,0.45454,0.59154,0.64072,0.84859,,,,,,,0.00102,0.00152,0.00161,0.00244,,,,,,,0.00103,0.00153,0.00162,0.00247,,,,,,,0.00105,0.00157,0.00166,0.00256,,,,,,,0.001,0.00148,0.00157,0.00236,,,,,,,0.00105,0.00156,0.00165,0.00253,,,,,,,0.00102,0.00151,0.0016,0.00243,,,,,,,0.00102,0.00152,0.00161,0.00245,,,,,,,0.00104,0.00154,0.00163,0.0025,,,,,,,0.00104,0.00155,0.00164,0.00251,,,,,,,0.04852,0.05211,0.05284,0.05833,,,,,,,0.04992,0.05354,0.05426,0.05977,,,,,,,0.05397,0.05767,0.05839,0.06397,,,,,,,0.04563,0.04913,0.04984,0.05523,,,,,,,0.05314,0.05681,0.05753,0.06309,,,,,,,0.04878,0.05235,0.05306,0.0585,,,,,,,0.04905,0.05264,0.05337,0.05885,,,,,,,0.05112,0.05476,0.05548,0.06102,,,,,,,0.05097,0.05463,0.05537,0.06095,,,,,,,0.01212,0.01542,0.01609,0.02114,,,,,,,0.01234,0.01566,0.01633,0.0214,,,,,,,0.01299,0.01638,0.01705,0.02218,,,,,,,0.01161,0.01483,0.01549,0.02045,,,,,,,0.01284,0.01622,0.01688,0.022,,,,,,,0.01212,0.0154,0.01605,0.02106,,,,,,,0.01219,0.01549,0.01616,0.02121,,,,,,,0.01253,0.01588,0.01654,0.02164,,,,,,,0.01254,0.01591,0.01659,0.02172,,,,,,,0.00474,0.00475,0.00477,0.00509,,,,,,,0.00479,0.0048,0.00482,0.00514,,,,,,,0.00485,0.00486,0.00488,0.00521,,,,,,,0.00474,0.00474,0.00477,0.00508,,,,,,,0.00491,0.00492,0.00493,0.00525,,,,,,,0.00482,0.00483,0.00484,0.00516,,,,,,,0.00488,0.00488,0.00489,0.00521,,,,,,,0.00485,0.00486,0.00488,0.0052,,,,,,,0.00479,0.0048,0.00481,0.00513,,,,,,,0.08632,0.10737,0.13074,0.19448,,,,,,,0.08257,0.10296,0.12525,0.18693,,,,,,,0.08691,0.10795,0.13106,0.19485,,,,,,,0.08651,0.10753,0.13096,0.19457,,,,,,,0.06557,0.08311,0.10076,0.15354,,,,,,,0.07107,0.08951,0.10877,0.16432,,,,,,,0.0647,0.0822,0.09987,0.15237,,,,,,,0.07425,0.09329,0.11335,0.17078,,,,,,,0.06335,0.08069,0.0982,0.15031,,, +Large SUV,B20,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,512.94968,514.78197,517.99663,544.25471,,,,,,,518.41824,520.11253,523.12908,549.19587,,,,,,,525.63567,527.39377,530.51625,557.07648,,,,,,,512.69748,514.43352,517.52977,543.57044,,,,,,,531.93956,533.18201,535.5448,560.80507,,,,,,,521.85672,523.21567,525.74649,550.9689,,,,,,,527.85874,529.03774,531.31514,556.26614,,,,,,,525.56045,527.00165,529.65269,555.2562,,,,,,,518.83947,520.25518,522.82468,547.95859,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00441,0.00443,0.00446,0.00468,,,,,,,0.00446,0.00447,0.0045,0.00472,,,,,,,0.00452,0.00454,0.00456,0.00479,,,,,,,0.00441,0.00442,0.00445,0.00468,,,,,,,0.00458,0.00459,0.00461,0.00482,,,,,,,0.00449,0.0045,0.00452,0.00474,,,,,,,0.00454,0.00455,0.00457,0.00478,,,,,,,0.00452,0.00453,0.00456,0.00478,,,,,,,0.00446,0.00447,0.0045,0.00471,,,,,,,0.08159,0.09699,0.11488,0.16091,,,,,,,0.07781,0.09262,0.10945,0.15328,,,,,,,0.08221,0.09767,0.11535,0.16087,,,,,,,0.08181,0.09721,0.11518,0.16128,,,,,,,0.06066,0.07282,0.08511,0.11973,,,,,,,0.06623,0.07923,0.09313,0.13096,,,,,,,0.05974,0.07178,0.08404,0.11866,,,,,,,0.06938,0.0829,0.09753,0.13694,,,,,,,0.05838,0.07026,0.08234,0.11665,, +Large SUV,B20,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,503.3718,505.58672,509.32506,524.005,,,,,,,508.73521,510.82156,514.36827,528.75158,,,,,,,515.82884,517.98233,521.64211,536.35182,,,,,,,503.12336,505.24438,508.86591,523.34427,,,,,,,522.00133,523.66189,526.57097,539.90088,,,,,,,512.10638,513.87105,516.93712,530.43894,,,,,,,517.98771,519.58364,522.40402,535.52213,,,,,,,515.73928,517.58703,520.77689,534.56791,,,,,,,509.13879,510.95708,514.05712,527.53122,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00433,0.00435,0.00438,0.00451,,,,,,,0.00438,0.00439,0.00442,0.00455,,,,,,,0.00444,0.00446,0.00449,0.00461,,,,,,,0.00433,0.00435,0.00438,0.0045,,,,,,,0.00449,0.0045,0.00453,0.00464,,,,,,,0.0044,0.00442,0.00445,0.00456,,,,,,,0.00446,0.00447,0.00449,0.00461,,,,,,,0.00444,0.00445,0.00448,0.0046,,,,,,,0.00438,0.00439,0.00442,0.00454,,,,,,,0.08017,0.0942,0.11124,0.14813,,,,,,,0.0764,0.08985,0.10581,0.14053,,,,,,,0.0808,0.09491,0.11173,0.14819,,,,,,,0.0804,0.09443,0.11155,0.14859,,,,,,,0.05928,0.07014,0.0815,0.10697,,,,,,,0.06484,0.07653,0.08953,0.11827,,,,,,,0.05833,0.06907,0.08039,0.10579,,,,,,,0.06798,0.08017,0.09389,0.12412,,,,,,,0.05698,0.06756,0.07867,0.10371, +Large SUV,B20,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,503.3128,505.57794,509.31583,517.92765,,,,,,,508.67869,510.81372,514.35931,522.61762,,,,,,,515.77052,517.97394,521.633,530.13469,,,,,,,503.06497,505.23579,508.85677,517.27438,,,,,,,521.95275,523.65546,526.56382,533.6353,,,,,,,512.05585,513.86405,516.92984,524.2835,,,,,,,517.94008,519.57754,522.39719,529.3037,,,,,,,515.68704,517.57981,520.769,528.36379,,,,,,,509.0895,510.95084,514.04998,521.40596,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00438,0.00439,0.00442,0.0045,,,,,,,0.00444,0.00446,0.00449,0.00456,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00449,0.0045,0.00453,0.00459,,,,,,,0.0044,0.00442,0.00445,0.00451,,,,,,,0.00446,0.00447,0.00449,0.00455,,,,,,,0.00444,0.00445,0.00448,0.00454,,,,,,,0.00438,0.00439,0.00442,0.00448,,,,,,,0.07996,0.09416,0.11119,0.14344,,,,,,,0.0762,0.08981,0.10577,0.13585,,,,,,,0.08059,0.09487,0.11169,0.14354,,,,,,,0.08018,0.09439,0.1115,0.14394,,,,,,,0.05915,0.07011,0.08147,0.1023,,,,,,,0.06469,0.0765,0.08949,0.11362,,,,,,,0.05821,0.06904,0.08036,0.10108,,,,,,,0.06781,0.08013,0.09385,0.11942,,,,,,,0.05686,0.06753,0.07865,0.09897 +Large SUV,B20,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,503.3127,505.57737,509.32466,,,,,,,,508.67923,510.81324,514.3685,,,,,,,,515.7706,517.97353,521.64196,,,,,,,,503.06515,505.23527,508.8656,,,,,,,,521.95499,523.65697,526.57308,,,,,,,,512.05759,513.865,516.939,,,,,,,,517.94224,519.57897,522.40675,,,,,,,,515.68842,517.58047,520.77814,,,,,,,,509.09118,510.95144,514.05931,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.00444,0.00446,0.00449,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00449,0.0045,0.00453,,,,,,,,0.0044,0.00442,0.00445,,,,,,,,0.00446,0.00447,0.00449,,,,,,,,0.00444,0.00445,0.00448,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.07992,0.09412,0.11119,,,,,,,,0.07617,0.08978,0.10577,,,,,,,,0.08055,0.09483,0.11168,,,,,,,,0.08014,0.09435,0.1115,,,,,,,,0.05913,0.07009,0.08147,,,,,,,,0.06466,0.07648,0.08949,,,,,,,,0.05819,0.06902,0.08036,,,,,,,,0.06778,0.08011,0.09385,,,,,,,,0.05684,0.06751,0.07865 +Large SUV,B20,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,503.30521,505.57746,,,,,,,,,508.67208,510.81364,,,,,,,,,515.76329,517.97369,,,,,,,,,503.05787,505.23542,,,,,,,,,521.94878,523.65741,,,,,,,,,512.05102,513.86545,,,,,,,,,517.93623,519.5794,,,,,,,,,515.6819,517.5808,,,,,,,,,509.08488,510.95195,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00438,0.00439,,,,,,,,,0.00444,0.00446,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00449,0.0045,,,,,,,,,0.0044,0.00442,,,,,,,,,0.00445,0.00447,,,,,,,,,0.00444,0.00445,,,,,,,,,0.00438,0.00439,,,,,,,,,0.07989,0.09412,,,,,,,,,0.07614,0.08978,,,,,,,,,0.08053,0.09483,,,,,,,,,0.08011,0.09435,,,,,,,,,0.05911,0.07009,,,,,,,,,0.06464,0.07647,,,,,,,,,0.05817,0.06902,,,,,,,,,0.06776,0.0801,,,,,,,,,0.05682,0.06751 +Large SUV,B20,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,503.30269,,,,,,,,,,508.66947,,,,,,,,,,515.76074,,,,,,,,,,503.0552,,,,,,,,,,521.94623,,,,,,,,,,512.04854,,,,,,,,,,517.93382,,,,,,,,,,515.6793,,,,,,,,,,509.08241,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00433,,,,,,,,,,0.00438,,,,,,,,,,0.00444,,,,,,,,,,0.00433,,,,,,,,,,0.00449,,,,,,,,,,0.0044,,,,,,,,,,0.00445,,,,,,,,,,0.00444,,,,,,,,,,0.00438,,,,,,,,,,0.07989,,,,,,,,,,0.07614,,,,,,,,,,0.08053,,,,,,,,,,0.08011,,,,,,,,,,0.05911,,,,,,,,,,0.06464,,,,,,,,,,0.05817,,,,,,,,,,0.06776,,,,,,,,,,0.05682 +Large SUV,DSL,1990,0.2702,,,,,,,,,,0.26964,,,,,,,,,,0.26838,,,,,,,,,,0.27112,,,,,,,,,,0.26865,,,,,,,,,,0.27006,,,,,,,,,,0.27,,,,,,,,,,0.26927,,,,,,,,,,0.2694,,,,,,,,,,0.00847,,,,,,,,,,0.0085,,,,,,,,,,0.00873,,,,,,,,,,0.00832,,,,,,,,,,0.00853,,,,,,,,,,0.00834,,,,,,,,,,0.00836,,,,,,,,,,0.00852,,,,,,,,,,0.00841,,,,,,,,,,59.25842,,,,,,,,,,60.05778,,,,,,,,,,60.45272,,,,,,,,,,59.63333,,,,,,,,,,62.47742,,,,,,,,,,61.13211,,,,,,,,,,62.91043,,,,,,,,,,61.59726,,,,,,,,,,60.76403,,,,,,,,,,541.49662,,,,,,,,,,543.54455,,,,,,,,,,548.85394,,,,,,,,,,540.04668,,,,,,,,,,546.89176,,,,,,,,,,541.50929,,,,,,,,,,543.73957,,,,,,,,,,545.2678,,,,,,,,,,540.60916,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.71292,,,,,,,,,,5.75771,,,,,,,,,,5.79517,,,,,,,,,,5.67689,,,,,,,,,,5.70488,,,,,,,,,,5.67166,,,,,,,,,,5.70967,,,,,,,,,,6.05558,,,,,,,,,,5.82867,,,,,,,,,,0.0739,,,,,,,,,,0.07528,,,,,,,,,,0.07956,,,,,,,,,,0.07057,,,,,,,,,,0.07864,,,,,,,,,,0.07386,,,,,,,,,,0.07437,,,,,,,,,,0.07655,,,,,,,,,,0.07669,,,,,,,,,,0.45084,,,,,,,,,,0.45374,,,,,,,,,,0.46303,,,,,,,,,,0.44383,,,,,,,,,,0.46107,,,,,,,,,,0.4509,,,,,,,,,,0.45187,,,,,,,,,,0.45649,,,,,,,,,,0.45669,,,,,,,,,,0.38235,,,,,,,,,,0.38393,,,,,,,,,,0.38934,,,,,,,,,,0.37811,,,,,,,,,,0.38817,,,,,,,,,,0.38217,,,,,,,,,,0.38288,,,,,,,,,,0.38553,,,,,,,,,,0.38586,,,,,,,,,,0.04127,,,,,,,,,,0.04142,,,,,,,,,,0.04183,,,,,,,,,,0.04116,,,,,,,,,,0.04168,,,,,,,,,,0.04127,,,,,,,,,,0.04144,,,,,,,,,,0.04156,,,,,,,,,,0.0412,,,,,,,,,,3.676,,,,,,,,,,3.68997,,,,,,,,,,3.7899,,,,,,,,,,3.61329,,,,,,,,,,3.70235,,,,,,,,,,3.62112,,,,,,,,,,3.62861,,,,,,,,,,3.69793,,,,,,,,,,3.64929,,,,,,,,, +Large SUV,DSL,1995,0.21313,0.21119,,,,,,,,,0.21413,0.21164,,,,,,,,,0.2172,0.2132,,,,,,,,,0.21042,0.20971,,,,,,,,,0.21648,0.21281,,,,,,,,,0.21281,0.2109,,,,,,,,,0.21339,0.21128,,,,,,,,,0.21503,0.2121,,,,,,,,,0.21539,0.2124,,,,,,,,,0.00476,0.00687,,,,,,,,,0.00478,0.00689,,,,,,,,,0.00491,0.00706,,,,,,,,,0.0047,0.00677,,,,,,,,,0.00481,0.00691,,,,,,,,,0.00471,0.00677,,,,,,,,,0.00472,0.00679,,,,,,,,,0.0048,0.00691,,,,,,,,,0.00472,0.00681,,,,,,,,,19.08086,37.43417,,,,,,,,,19.56861,38.11029,,,,,,,,,19.5796,38.20981,,,,,,,,,19.64063,38.0417,,,,,,,,,20.9166,40.03449,,,,,,,,,20.41599,39.18027,,,,,,,,,21.39465,40.63183,,,,,,,,,20.42434,39.35074,,,,,,,,,19.76313,38.5242,,,,,,,,,604.05216,584.54177,,,,,,,,,608.51534,587.99728,,,,,,,,,614.20139,593.74374,,,,,,,,,604.94647,584.50009,,,,,,,,,618.86109,595.38189,,,,,,,,,611.22718,588.60376,,,,,,,,,616.50204,592.62164,,,,,,,,,614.18567,591.98679,,,,,,,,,607.10088,585.60288,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.58442,6.03387,,,,,,,,,5.6862,6.11255,,,,,,,,,5.7799,6.1775,,,,,,,,,5.57299,6.01646,,,,,,,,,5.79876,6.15385,,,,,,,,,5.67334,6.06999,,,,,,,,,5.77689,6.1523,,,,,,,,,6.08874,6.48525,,,,,,,,,5.77638,6.19878,,,,,,,,,0.05825,0.06133,,,,,,,,,0.06009,0.06285,,,,,,,,,0.0656,0.06747,,,,,,,,,0.05386,0.05755,,,,,,,,,0.06439,0.06643,,,,,,,,,0.05814,0.06114,,,,,,,,,0.05884,0.0618,,,,,,,,,0.06172,0.06422,,,,,,,,,0.06192,0.06448,,,,,,,,,0.36405,0.36433,,,,,,,,,0.36937,0.3685,,,,,,,,,0.38522,0.38117,,,,,,,,,0.35148,0.35421,,,,,,,,,0.38174,0.37837,,,,,,,,,0.36381,0.36402,,,,,,,,,0.36577,0.36567,,,,,,,,,0.37404,0.37225,,,,,,,,,0.37457,0.3728,,,,,,,,,0.30242,0.30273,,,,,,,,,0.30624,0.30549,,,,,,,,,0.31772,0.31402,,,,,,,,,0.29304,0.29561,,,,,,,,,0.31515,0.31208,,,,,,,,,0.30197,0.30221,,,,,,,,,0.30359,0.30354,,,,,,,,,0.30962,0.30801,,,,,,,,,0.31026,0.30866,,,,,,,,,0.04604,0.00514,,,,,,,,,0.04638,0.00517,,,,,,,,,0.04681,0.00522,,,,,,,,,0.0461,0.00514,,,,,,,,,0.04716,0.00524,,,,,,,,,0.04658,0.00518,,,,,,,,,0.04698,0.00521,,,,,,,,,0.04681,0.00521,,,,,,,,,0.04627,0.00515,,,,,,,,,2.33699,3.20375,,,,,,,,,2.34611,3.21291,,,,,,,,,2.40979,3.29292,,,,,,,,,2.30575,3.15745,,,,,,,,,2.35907,3.22001,,,,,,,,,2.30995,3.15761,,,,,,,,,2.31701,3.16618,,,,,,,,,2.35426,3.21969,,,,,,,,,2.31417,3.17362,,,,,,,, +Large SUV,DSL,2000,0.2047,0.20185,0.19963,,,,,,,,0.20558,0.20271,0.20037,,,,,,,,0.20813,0.20517,0.20255,,,,,,,,0.20203,0.19923,0.19732,,,,,,,,0.20745,0.2045,0.20196,,,,,,,,0.20408,0.20121,0.19907,,,,,,,,0.20483,0.20197,0.19973,,,,,,,,0.20635,0.20345,0.20103,,,,,,,,0.20692,0.20403,0.20155,,,,,,,,0.00228,0.00317,0.00463,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00238,0.00327,0.00475,,,,,,,,0.00226,0.00314,0.00458,,,,,,,,0.0023,0.00317,0.00461,,,,,,,,0.00225,0.00312,0.00454,,,,,,,,0.00224,0.00312,0.00454,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00222,0.0031,0.00453,,,,,,,,6.22527,9.35927,16.60618,,,,,,,,6.45683,9.65879,17.01802,,,,,,,,6.58557,9.78509,17.10428,,,,,,,,6.44166,9.66232,17.03732,,,,,,,,7.1379,10.55488,18.2161,,,,,,,,6.85066,10.18753,17.73292,,,,,,,,7.20367,10.71046,18.54343,,,,,,,,6.84218,10.17996,17.7546,,,,,,,,6.51101,9.75797,17.19887,,,,,,,,610.50715,614.34896,614.29834,,,,,,,,615.76176,619.40381,618.72774,,,,,,,,621.70733,625.42643,624.90186,,,,,,,,612.00712,615.71271,615.2336,,,,,,,,628.43527,631.42639,628.81969,,,,,,,,619.90948,623.05993,621.02176,,,,,,,,626.19565,629.12468,626.29217,,,,,,,,622.72126,626.0069,624.24476,,,,,,,,614.90551,618.14864,616.46645,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.18683,4.48395,5.12228,,,,,,,,4.29221,4.58798,5.22001,,,,,,,,4.40022,4.69306,5.31552,,,,,,,,4.18095,4.47611,5.10973,,,,,,,,4.45795,4.74488,5.34777,,,,,,,,4.31042,4.60052,5.21662,,,,,,,,4.41737,4.70827,5.32087,,,,,,,,4.6563,4.95728,5.59472,,,,,,,,4.37273,4.6716,5.30797,,,,,,,,0.05353,0.05365,0.05543,,,,,,,,0.05533,0.05539,0.05706,,,,,,,,0.06062,0.06056,0.06193,,,,,,,,0.04931,0.04946,0.0514,,,,,,,,0.05945,0.05941,0.06083,,,,,,,,0.05344,0.0535,0.0552,,,,,,,,0.05411,0.05419,0.05592,,,,,,,,0.05689,0.05692,0.0585,,,,,,,,0.05708,0.05715,0.05879,,,,,,,,0.34752,0.34248,0.3428,,,,,,,,0.35263,0.34741,0.34743,,,,,,,,0.36756,0.36186,0.36114,,,,,,,,0.33528,0.33052,0.33141,,,,,,,,0.3642,0.35859,0.35803,,,,,,,,0.34698,0.34185,0.34213,,,,,,,,0.34908,0.34395,0.34418,,,,,,,,0.35706,0.3517,0.3515,,,,,,,,0.35779,0.3525,0.35234,,,,,,,,0.28718,0.28255,0.28287,,,,,,,,0.29081,0.28602,0.28606,,,,,,,,0.30146,0.29622,0.29557,,,,,,,,0.27808,0.27371,0.27455,,,,,,,,0.299,0.29384,0.29334,,,,,,,,0.28645,0.28174,0.28201,,,,,,,,0.2882,0.28349,0.28372,,,,,,,,0.29397,0.28905,0.28888,,,,,,,,0.29479,0.28993,0.2898,,,,,,,,0.04653,0.0054,0.0054,,,,,,,,0.04693,0.00545,0.00544,,,,,,,,0.04738,0.0055,0.0055,,,,,,,,0.04664,0.00541,0.00541,,,,,,,,0.04789,0.00555,0.00553,,,,,,,,0.04724,0.00548,0.00546,,,,,,,,0.04772,0.00553,0.00551,,,,,,,,0.04746,0.0055,0.00549,,,,,,,,0.04686,0.00544,0.00542,,,,,,,,1.14941,1.59216,2.28248,,,,,,,,1.15524,1.59655,2.28412,,,,,,,,1.19731,1.64074,2.33968,,,,,,,,1.1364,1.57641,2.25735,,,,,,,,1.15588,1.59247,2.27029,,,,,,,,1.13116,1.56655,2.23838,,,,,,,,1.12899,1.56644,2.23829,,,,,,,,1.15513,1.59602,2.28046,,,,,,,,1.11779,1.55587,2.23336,,,,,,, +Large SUV,DSL,2005,0.09572,0.12903,0.12863,0.14516,,,,,,,0.09578,0.12912,0.12872,0.14541,,,,,,,0.09592,0.12929,0.12889,0.14608,,,,,,,0.09533,0.1285,0.1281,0.14417,,,,,,,0.09584,0.12918,0.12878,0.14585,,,,,,,0.09547,0.12869,0.12828,0.14474,,,,,,,0.09567,0.12896,0.12857,0.14514,,,,,,,0.09584,0.12919,0.12879,0.14563,,,,,,,0.09604,0.12947,0.12908,0.14598,,,,,,,0.00233,0.00207,0.00236,0.00328,,,,,,,0.0023,0.00207,0.00236,0.00327,,,,,,,0.00241,0.00216,0.00245,0.00337,,,,,,,0.00231,0.00205,0.00234,0.00325,,,,,,,0.00214,0.00205,0.0023,0.00318,,,,,,,0.00216,0.00201,0.00228,0.00316,,,,,,,0.00209,0.00199,0.00225,0.00313,,,,,,,0.00222,0.00206,0.00233,0.00323,,,,,,,0.00206,0.00197,0.00223,0.0031,,,,,,,2.439,4.73285,5.67889,8.98591,,,,,,,2.53055,4.90991,5.8753,9.24024,,,,,,,2.5793,5.01184,5.97945,9.33758,,,,,,,2.52143,4.88615,5.85009,9.22712,,,,,,,2.80253,5.43947,6.46451,10.0012,,,,,,,2.68379,5.20356,6.20135,9.67379,,,,,,,2.8329,5.48868,6.53354,10.14763,,,,,,,2.68565,5.21018,6.21391,9.69307,,,,,,,2.55832,4.96476,5.94489,9.34819,,,,,,,753.54559,756.03598,761.09282,735.19163,,,,,,,761.83357,764.17973,768.97886,741.92389,,,,,,,772.62944,774.99911,779.93525,751.9778,,,,,,,753.20032,755.55334,760.43898,734.73777,,,,,,,782.45236,784.32988,788.27607,757.90977,,,,,,,767.31518,769.30236,773.45652,745.02376,,,,,,,776.2326,778.06727,781.90038,752.29625,,,,,,,772.69015,774.78178,779.10577,750.3284,,,,,,,762.76947,764.91202,769.14664,740.64573,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.92255,3.08769,3.20261,3.77284,,,,,,,2.98825,3.15224,3.26466,3.8414,,,,,,,3.05207,3.21204,3.32065,3.90515,,,,,,,2.92033,3.08554,3.19943,3.76557,,,,,,,3.07534,3.2316,3.3355,3.92117,,,,,,,2.99246,3.15286,3.26132,3.83524,,,,,,,3.05616,3.21691,3.32408,3.90736,,,,,,,3.22604,3.39306,3.50301,4.10952,,,,,,,3.03863,3.20392,3.31687,3.90321,,,,,,,0.022,0.02962,0.03012,0.03695,,,,,,,0.02271,0.03057,0.03106,0.03804,,,,,,,0.02476,0.03334,0.03381,0.04128,,,,,,,0.02043,0.02751,0.02801,0.03436,,,,,,,0.02432,0.03274,0.03321,0.04056,,,,,,,0.02204,0.02967,0.03015,0.03688,,,,,,,0.02224,0.02995,0.03044,0.0373,,,,,,,0.02332,0.0314,0.03188,0.03901,,,,,,,0.02332,0.0314,0.0319,0.03912,,,,,,,0.17976,0.22669,0.22704,0.25544,,,,,,,0.18228,0.22959,0.22991,0.25872,,,,,,,0.18952,0.23787,0.23816,0.26828,,,,,,,0.17417,0.22018,0.22051,0.24769,,,,,,,0.18795,0.23606,0.23635,0.26614,,,,,,,0.17985,0.22669,0.227,0.25518,,,,,,,0.18062,0.22765,0.22797,0.25647,,,,,,,0.18445,0.23206,0.23238,0.26158,,,,,,,0.18448,0.23219,0.23254,0.26196,,,,,,,0.13283,0.17602,0.17633,0.20247,,,,,,,0.13409,0.17761,0.17791,0.20443,,,,,,,0.13767,0.18216,0.18243,0.21013,,,,,,,0.12985,0.17218,0.17249,0.1975,,,,,,,0.13685,0.18111,0.18138,0.20879,,,,,,,0.13268,0.17578,0.17607,0.202,,,,,,,0.1332,0.17648,0.17679,0.203,,,,,,,0.13517,0.17898,0.17928,0.20614,,,,,,,0.13534,0.17924,0.17957,0.20664,,,,,,,0.05743,0.00665,0.00669,0.00647,,,,,,,0.05806,0.00672,0.00676,0.00652,,,,,,,0.05888,0.00682,0.00686,0.00661,,,,,,,0.0574,0.00664,0.00669,0.00646,,,,,,,0.05963,0.0069,0.00693,0.00666,,,,,,,0.05848,0.00677,0.0068,0.00655,,,,,,,0.05916,0.00684,0.00688,0.00662,,,,,,,0.05889,0.00681,0.00685,0.0066,,,,,,,0.05813,0.00673,0.00676,0.00651,,,,,,,0.47208,0.79683,0.89009,1.37306,,,,,,,0.47019,0.79962,0.89039,1.36952,,,,,,,0.49098,0.832,0.92428,1.41091,,,,,,,0.46817,0.78867,0.88156,1.35992,,,,,,,0.45087,0.79169,0.87256,1.33725,,,,,,,0.44838,0.77717,0.86124,1.32612,,,,,,,0.43966,0.77187,0.85312,1.31545,,,,,,,0.46031,0.7951,0.88136,1.3548,,,,,,,0.433,0.7616,0.84306,1.30727,,,,,, +Large SUV,DSL,2010,,0.04035,0.03818,0.0352,0.07782,,,,,,,0.04038,0.03821,0.03522,0.07794,,,,,,,0.04044,0.03828,0.03529,0.07825,,,,,,,0.04018,0.03801,0.03503,0.07731,,,,,,,0.04041,0.03824,0.03525,0.07813,,,,,,,0.04024,0.03807,0.03509,0.07758,,,,,,,0.04033,0.03816,0.03518,0.0778,,,,,,,0.04041,0.03824,0.03525,0.07804,,,,,,,0.0405,0.03833,0.03534,0.07825,,,,,,,0.05923,0.09381,0.12912,0.10055,,,,,,,0.05636,0.09055,0.12472,0.09699,,,,,,,0.05944,0.09449,0.12944,0.10056,,,,,,,0.05937,0.09377,0.12906,0.1005,,,,,,,0.04355,0.07574,0.10517,0.08143,,,,,,,0.04777,0.08028,0.11132,0.08641,,,,,,,0.04301,0.07495,0.10453,0.08104,,,,,,,0.0501,0.08337,0.11534,0.08954,,,,,,,0.04214,0.07382,0.10325,0.08016,,,,,,,1.59913,2.50496,3.19832,6.05493,,,,,,,1.65554,2.58543,3.29192,6.2182,,,,,,,1.67207,2.59853,3.2987,6.2603,,,,,,,1.65726,2.59205,3.30208,6.21735,,,,,,,1.81931,2.81867,3.56346,6.70594,,,,,,,1.75257,2.7256,3.45587,6.49917,,,,,,,1.85583,2.8858,3.65427,6.82938,,,,,,,1.75282,2.72785,3.46131,6.51573,,,,,,,1.67525,2.61883,3.33655,6.29824,,,,,,,726.51573,726.9011,728.50556,737.24026,,,,,,,734.4734,734.64384,735.92169,744.06471,,,,,,,744.87017,745.08782,746.47429,754.6415,,,,,,,726.21471,726.45981,727.88196,736.50833,,,,,,,754.38594,753.87029,754.09659,760.3007,,,,,,,739.84073,739.52804,740.06255,746.97698,,,,,,,748.40552,747.82464,747.94723,754.2121,,,,,,,744.93281,744.72319,745.4163,752.52753,,,,,,,735.42934,735.22972,735.85715,742.70343,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.60689,1.70024,1.72947,2.58328,,,,,,,1.63878,1.73258,1.7604,2.62795,,,,,,,1.67343,1.76716,1.79337,2.67221,,,,,,,1.60024,1.69279,1.72109,2.57432,,,,,,,1.67426,1.76707,1.79199,2.677,,,,,,,1.63347,1.72578,1.7521,2.61945,,,,,,,1.66187,1.7553,1.78121,2.66557,,,,,,,1.75725,1.85461,1.8796,2.80378,,,,,,,1.66516,1.76039,1.78853,2.67001,,,,,,,0.00962,0.00973,0.00928,0.02051,,,,,,,0.00993,0.01001,0.00954,0.02109,,,,,,,0.0108,0.01084,0.01029,0.0228,,,,,,,0.00897,0.0091,0.00869,0.01914,,,,,,,0.01061,0.01066,0.01013,0.02242,,,,,,,0.00965,0.00974,0.00929,0.02047,,,,,,,0.00973,0.00983,0.00937,0.0207,,,,,,,0.01019,0.01026,0.00976,0.0216,,,,,,,0.01018,0.01026,0.00977,0.02167,,,,,,,0.10286,0.10356,0.10039,0.16178,,,,,,,0.10472,0.10542,0.1022,0.16416,,,,,,,0.11007,0.11077,0.10744,0.17107,,,,,,,0.09887,0.09953,0.09643,0.15629,,,,,,,0.10893,0.10963,0.10632,0.16954,,,,,,,0.10305,0.10372,0.10052,0.16171,,,,,,,0.10352,0.10421,0.10102,0.16255,,,,,,,0.10631,0.10701,0.10376,0.16622,,,,,,,0.10624,0.10696,0.10373,0.1664,,,,,,,0.06211,0.06275,0.05983,0.11631,,,,,,,0.06275,0.06339,0.06043,0.11743,,,,,,,0.06459,0.06523,0.06217,0.12071,,,,,,,0.06059,0.06121,0.05836,0.11343,,,,,,,0.06417,0.06481,0.06177,0.11993,,,,,,,0.06205,0.06266,0.05973,0.11601,,,,,,,0.0623,0.06294,0.06001,0.11661,,,,,,,0.0633,0.06395,0.06096,0.11842,,,,,,,0.06338,0.06404,0.06108,0.11873,,,,,,,0.00608,0.00607,0.00607,0.00628,,,,,,,0.00614,0.00614,0.00613,0.00633,,,,,,,0.00623,0.00622,0.00622,0.00642,,,,,,,0.00607,0.00607,0.00607,0.00627,,,,,,,0.00631,0.0063,0.00629,0.00647,,,,,,,0.00619,0.00618,0.00617,0.00636,,,,,,,0.00626,0.00625,0.00624,0.00642,,,,,,,0.00623,0.00622,0.00621,0.00641,,,,,,,0.00615,0.00614,0.00613,0.00632,,,,,,,0.25482,0.28738,0.3194,0.79043,,,,,,,0.253,0.28466,0.31483,0.7835,,,,,,,0.26447,0.2967,0.32744,0.80902,,,,,,,0.25295,0.28546,0.31762,0.78425,,,,,,,0.23921,0.26709,0.29001,0.74475,,,,,,,0.2393,0.26843,0.29418,0.74691,,,,,,,0.23336,0.26142,0.28489,0.73339,,,,,,,0.24602,0.27595,0.30272,0.76515,,,,,,,0.22964,0.25761,0.28117,0.72785,,,,, +Large SUV,DSL,2015,,,0.00072,0.00116,0.00138,0.01985,,,,,,,0.00072,0.00116,0.00139,0.01986,,,,,,,0.00074,0.00118,0.00141,0.0199,,,,,,,0.0007,0.00113,0.00135,0.01974,,,,,,,0.00073,0.00118,0.0014,0.01988,,,,,,,0.00071,0.00115,0.00137,0.01978,,,,,,,0.00072,0.00116,0.00138,0.01983,,,,,,,0.00073,0.00117,0.0014,0.01988,,,,,,,0.00073,0.00118,0.00141,0.01994,,,,,,,0.08452,0.11522,0.15291,0.17502,,,,,,,0.0805,0.11044,0.1469,0.16813,,,,,,,0.08489,0.11551,0.15277,0.17456,,,,,,,0.0847,0.11535,0.15304,0.1751,,,,,,,0.06251,0.08914,0.12046,0.13823,,,,,,,0.0684,0.09606,0.12913,0.1481,,,,,,,0.0617,0.08838,0.11987,0.13772,,,,,,,0.0717,0.10011,0.13418,0.15379,,,,,,,0.06045,0.08695,0.11829,0.13615,,,,,,,0.91342,1.75476,2.44395,3.86478,,,,,,,0.93766,1.80032,2.5048,3.95859,,,,,,,0.92709,1.78281,2.48348,3.94764,,,,,,,0.94758,1.8168,2.52446,3.97481,,,,,,,1.00472,1.92811,2.67742,4.23212,,,,,,,0.98312,1.88496,2.61696,4.12601,,,,,,,1.04466,2.00046,2.77209,4.3506,,,,,,,0.98318,1.88653,2.62106,4.13686,,,,,,,0.95128,1.82695,2.54218,4.01561,,,,,,,631.20736,633.13412,636.41281,670.72204,,,,,,,638.0212,639.76055,642.78907,676.96032,,,,,,,646.87206,648.68575,651.83213,686.66084,,,,,,,630.91863,632.72408,635.86096,669.92674,,,,,,,654.92112,656.04769,658.25622,691.74887,,,,,,,642.42822,643.72105,646.14985,679.47404,,,,,,,649.91271,650.96569,653.07937,686.13987,,,,,,,646.95551,648.35351,650.92532,684.68167,,,,,,,638.7315,640.09514,642.57352,675.74666,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.32275,,,,,,,0.53682,0.77214,0.84369,1.34281,,,,,,,0.54809,0.78753,0.85813,1.36392,,,,,,,0.52372,0.75365,0.82514,1.31553,,,,,,,0.5485,0.78781,0.85785,1.36376,,,,,,,0.53445,0.7684,0.83893,1.33593,,,,,,,0.54375,0.78179,0.85304,1.358,,,,,,,0.57087,0.82186,0.89466,1.42425,,,,,,,0.54606,0.78532,0.85779,1.36446,,,,,,,0.00101,0.00156,0.00171,0.00625,,,,,,,0.00101,0.00158,0.00172,0.00638,,,,,,,0.00104,0.00161,0.00175,0.0068,,,,,,,0.00098,0.00153,0.00167,0.0059,,,,,,,0.00103,0.0016,0.00174,0.0067,,,,,,,0.001,0.00155,0.00169,0.00623,,,,,,,0.00101,0.00157,0.00171,0.00629,,,,,,,0.00102,0.00159,0.00173,0.00651,,,,,,,0.00103,0.0016,0.00174,0.00653,,,,,,,0.04842,0.05245,0.05361,0.08058,,,,,,,0.04982,0.05388,0.05503,0.08219,,,,,,,0.05386,0.05801,0.05915,0.08688,,,,,,,0.04553,0.04946,0.0506,0.07703,,,,,,,0.05303,0.05715,0.05829,0.08588,,,,,,,0.04868,0.05268,0.05381,0.08069,,,,,,,0.04895,0.05298,0.05413,0.08115,,,,,,,0.05102,0.0551,0.05625,0.08359,,,,,,,0.05087,0.05498,0.05615,0.08358,,,,,,,0.01202,0.01573,0.0168,0.04161,,,,,,,0.01224,0.01598,0.01703,0.04202,,,,,,,0.01288,0.0167,0.01775,0.04326,,,,,,,0.01152,0.01514,0.01619,0.0405,,,,,,,0.01274,0.01653,0.01758,0.04297,,,,,,,0.01202,0.01571,0.01674,0.04147,,,,,,,0.0121,0.01581,0.01686,0.04172,,,,,,,0.01243,0.01619,0.01725,0.0424,,,,,,,0.01245,0.01623,0.01731,0.04254,,,,,,,0.00516,0.00517,0.0052,0.00555,,,,,,,0.00521,0.00523,0.00525,0.0056,,,,,,,0.00529,0.0053,0.00533,0.00568,,,,,,,0.00516,0.00517,0.0052,0.00554,,,,,,,0.00535,0.00536,0.00538,0.00572,,,,,,,0.00525,0.00526,0.00528,0.00562,,,,,,,0.00531,0.00532,0.00534,0.00567,,,,,,,0.00529,0.0053,0.00532,0.00566,,,,,,,0.00522,0.00523,0.00525,0.00559,,,,,,,0.08796,0.11648,0.15151,0.33083,,,,,,,0.08434,0.11215,0.14602,0.3233,,,,,,,0.08855,0.11698,0.15161,0.33496,,,,,,,0.08813,0.1166,0.15162,0.32959,,,,,,,0.0679,0.09263,0.12172,0.28826,,,,,,,0.07318,0.09887,0.12959,0.29737,,,,,,,0.06708,0.09184,0.1211,0.28507,,,,,,,0.07631,0.1027,0.13435,0.30649,,,,,,,0.06575,0.09035,0.11947,0.28216,,,, +Large SUV,DSL,2020,,,,0.00072,0.0011,0.00125,0.00465,,,,,,,0.00072,0.00111,0.00125,0.00465,,,,,,,0.00074,0.00113,0.00127,0.00467,,,,,,,0.0007,0.00108,0.00122,0.0046,,,,,,,0.00073,0.00112,0.00127,0.00466,,,,,,,0.00072,0.00109,0.00124,0.00462,,,,,,,0.00072,0.0011,0.00125,0.00464,,,,,,,0.00073,0.00111,0.00126,0.00466,,,,,,,0.00073,0.00112,0.00127,0.00468,,,,,,,0.08358,0.10624,0.13139,0.18032,,,,,,,0.07944,0.1014,0.12537,0.17229,,,,,,,0.08399,0.10664,0.1315,0.17991,,,,,,,0.08379,0.10643,0.13163,0.18057,,,,,,,0.06087,0.07977,0.09876,0.13729,,,,,,,0.06698,0.08684,0.10757,0.14898,,,,,,,0.06,0.07885,0.09788,0.13648,,,,,,,0.07033,0.09085,0.11244,0.15537,,,,,,,0.05872,0.07739,0.09623,0.13461,,,,,,,0.78003,1.244,1.58419,2.56054,,,,,,,0.80087,1.27638,1.623,2.61775,,,,,,,0.7941,1.26576,1.6085,2.59704,,,,,,,0.80806,1.28709,1.63602,2.63457,,,,,,,0.85922,1.36751,1.7326,2.78175,,,,,,,0.83946,1.3361,1.69464,2.72248,,,,,,,0.89057,1.41653,1.79422,2.87322,,,,,,,0.83979,1.33732,1.69717,2.72941,,,,,,,0.81228,1.29491,1.647,2.65687,,,,,,,553.53381,554.75256,557.30624,593.51674,,,,,,,559.45393,560.50931,562.8389,598.96247,,,,,,,567.21372,568.32858,570.75943,607.53869,,,,,,,553.26555,554.3794,556.80518,592.78327,,,,,,,574.09163,574.61785,576.2165,611.79962,,,,,,,563.19783,563.8719,565.67017,601.01403,,,,,,,569.70897,570.17245,571.686,606.85437,,,,,,,567.19413,567.9541,569.87587,605.66885,,,,,,,559.96123,560.69998,562.54688,597.74298,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82244,,,,,,,0.44685,0.5816,0.6301,0.83346,,,,,,,0.45614,0.59314,0.64146,0.84651,,,,,,,0.43605,0.5678,0.61593,0.81625,,,,,,,0.45642,0.59326,0.64117,0.84541,,,,,,,0.44481,0.5787,0.62653,0.82819,,,,,,,0.45243,0.58857,0.63684,0.84114,,,,,,,0.47433,0.61755,0.66685,0.87927,,,,,,,0.45454,0.59154,0.64072,0.8471,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00103,0.00153,0.00162,0.00259,,,,,,,0.00105,0.00157,0.00166,0.00268,,,,,,,0.001,0.00148,0.00157,0.00246,,,,,,,0.00105,0.00156,0.00165,0.00266,,,,,,,0.00102,0.00151,0.0016,0.00254,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00104,0.00154,0.00163,0.00262,,,,,,,0.00104,0.00155,0.00164,0.00263,,,,,,,0.04852,0.05211,0.05284,0.05901,,,,,,,0.04992,0.05354,0.05426,0.06045,,,,,,,0.05397,0.05767,0.05839,0.06467,,,,,,,0.04563,0.04913,0.04984,0.05589,,,,,,,0.05314,0.05681,0.05753,0.06378,,,,,,,0.04878,0.05235,0.05306,0.05917,,,,,,,0.04905,0.05264,0.05337,0.05953,,,,,,,0.05112,0.05476,0.05548,0.06171,,,,,,,0.05097,0.05463,0.05537,0.06164,,,,,,,0.01212,0.01542,0.01609,0.02176,,,,,,,0.01234,0.01566,0.01633,0.02203,,,,,,,0.01299,0.01638,0.01705,0.02282,,,,,,,0.01161,0.01483,0.01549,0.02106,,,,,,,0.01284,0.01622,0.01688,0.02263,,,,,,,0.01212,0.0154,0.01605,0.02168,,,,,,,0.01219,0.01549,0.01616,0.02183,,,,,,,0.01253,0.01588,0.01654,0.02227,,,,,,,0.01254,0.01591,0.01659,0.02235,,,,,,,0.00452,0.00453,0.00455,0.00486,,,,,,,0.00457,0.00458,0.0046,0.00491,,,,,,,0.00463,0.00464,0.00466,0.00498,,,,,,,0.00452,0.00453,0.00455,0.00485,,,,,,,0.00469,0.0047,0.00471,0.00501,,,,,,,0.0046,0.00461,0.00462,0.00492,,,,,,,0.00466,0.00466,0.00467,0.00497,,,,,,,0.00463,0.00464,0.00466,0.00496,,,,,,,0.00458,0.00458,0.0046,0.0049,,,,,,,0.08592,0.10697,0.13034,0.19699,,,,,,,0.08217,0.10256,0.12484,0.18939,,,,,,,0.08651,0.10754,0.13065,0.19743,,,,,,,0.08611,0.10714,0.13056,0.19705,,,,,,,0.06516,0.0827,0.10035,0.15581,,,,,,,0.07066,0.0891,0.10837,0.16662,,,,,,,0.06429,0.08179,0.09946,0.1546,,,,,,,0.07384,0.09288,0.11294,0.17316,,,,,,,0.06295,0.08029,0.0978,0.15251,,, +Large SUV,DSL,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,515.52862,517.36999,520.60093,546.99097,,,,,,,521.02447,522.72726,525.75913,551.95705,,,,,,,528.27837,530.04534,533.18339,559.87723,,,,,,,515.27507,517.01989,520.13162,546.30321,,,,,,,534.61387,535.86256,538.23725,563.62452,,,,,,,524.48034,525.84611,528.38966,553.73895,,,,,,,530.51251,531.69744,533.98624,559.06272,,,,,,,528.20274,529.6511,532.31554,558.0478,,,,,,,521.44792,522.87079,525.4533,550.71343,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00421,0.00423,0.00425,0.00447,,,,,,,0.00426,0.00427,0.0043,0.00451,,,,,,,0.00432,0.00433,0.00436,0.00457,,,,,,,0.00421,0.00422,0.00425,0.00446,,,,,,,0.00437,0.00438,0.0044,0.00461,,,,,,,0.00429,0.0043,0.00432,0.00452,,,,,,,0.00433,0.00434,0.00436,0.00457,,,,,,,0.00432,0.00433,0.00435,0.00456,,,,,,,0.00426,0.00427,0.00429,0.0045,,,,,,,0.08122,0.09662,0.11451,0.16051,,,,,,,0.07744,0.09224,0.10907,0.15288,,,,,,,0.08183,0.09729,0.11497,0.16047,,,,,,,0.08144,0.09684,0.1148,0.16089,,,,,,,0.06028,0.07243,0.08473,0.11932,,,,,,,0.06586,0.07885,0.09275,0.13056,,,,,,,0.05935,0.07139,0.08365,0.11826,,,,,,,0.06901,0.08252,0.09715,0.13654,,,,,,,0.05801,0.06988,0.08196,0.11625,, +Large SUV,DSL,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,505.90251,508.12865,511.88576,526.63939,,,,,,,511.29304,513.38981,516.95436,531.40985,,,,,,,518.42229,520.58653,524.26462,539.04839,,,,,,,505.65284,507.78444,511.42427,525.97531,,,,,,,524.62573,526.29466,529.21837,542.61528,,,,,,,514.68098,516.45452,519.53618,533.10575,,,,,,,520.59197,522.19594,525.03042,538.21442,,,,,,,518.33218,520.18913,523.39511,537.25547,,,,,,,511.6985,513.52605,516.64155,530.18337,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00418,0.00419,0.00422,0.00434,,,,,,,0.00424,0.00425,0.00428,0.0044,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00429,0.0043,0.00432,0.00443,,,,,,,0.00421,0.00422,0.00425,0.00436,,,,,,,0.00425,0.00427,0.00429,0.0044,,,,,,,0.00424,0.00425,0.00428,0.00439,,,,,,,0.00418,0.0042,0.00422,0.00433,,,,,,,0.07981,0.09384,0.11087,0.14775,,,,,,,0.07604,0.08949,0.10544,0.14015,,,,,,,0.08043,0.09454,0.11136,0.14781,,,,,,,0.08004,0.09407,0.11118,0.14822,,,,,,,0.0589,0.06976,0.08112,0.10658,,,,,,,0.06448,0.07616,0.08915,0.11789,,,,,,,0.05796,0.0687,0.08001,0.1054,,,,,,,0.06761,0.0798,0.09351,0.12374,,,,,,,0.05661,0.06719,0.0783,0.10333, +Large SUV,DSL,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,505.84325,508.11981,511.87641,520.53161,,,,,,,511.23605,513.38181,516.94536,525.24513,,,,,,,518.36354,520.57802,524.25551,532.79992,,,,,,,505.5941,507.77589,511.41505,519.87502,,,,,,,524.57686,526.28822,529.21111,536.3182,,,,,,,514.63015,516.44746,519.52878,526.91938,,,,,,,520.54403,522.18978,525.02349,531.96478,,,,,,,518.27972,520.18195,523.3872,531.02016,,,,,,,511.649,513.51958,516.63441,524.02733,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00418,0.00419,0.00422,0.00429,,,,,,,0.00424,0.00425,0.00428,0.00435,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00429,0.0043,0.00432,0.00438,,,,,,,0.00421,0.00422,0.00425,0.00431,,,,,,,0.00425,0.00427,0.00429,0.00435,,,,,,,0.00423,0.00425,0.00428,0.00434,,,,,,,0.00418,0.0042,0.00422,0.00428,,,,,,,0.0796,0.0938,0.11082,0.14306,,,,,,,0.07584,0.08944,0.1054,0.13548,,,,,,,0.08022,0.09449,0.11131,0.14315,,,,,,,0.07982,0.09402,0.11113,0.14356,,,,,,,0.05877,0.06974,0.08109,0.10192,,,,,,,0.06432,0.07613,0.08912,0.11324,,,,,,,0.05784,0.06867,0.07998,0.1007,,,,,,,0.06744,0.07976,0.09347,0.11904,,,,,,,0.05649,0.06716,0.07828,0.0986 +Large SUV,DSL,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,505.84317,508.11917,511.88521,,,,,,,,511.23668,513.38141,516.95445,,,,,,,,518.36366,520.57755,524.26456,,,,,,,,505.59432,507.77538,511.42401,,,,,,,,524.57908,526.28967,529.22036,,,,,,,,514.63195,516.44843,519.53798,,,,,,,,520.5461,522.19116,525.03319,,,,,,,,518.28109,520.18253,523.39643,,,,,,,,511.65072,513.5203,516.64385,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00418,0.00419,0.00422,,,,,,,,0.00424,0.00425,0.00428,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00429,0.0043,0.00432,,,,,,,,0.00421,0.00422,0.00425,,,,,,,,0.00425,0.00427,0.00429,,,,,,,,0.00423,0.00425,0.00428,,,,,,,,0.00418,0.0042,0.00422,,,,,,,,0.07956,0.09376,0.11082,,,,,,,,0.0758,0.08941,0.10539,,,,,,,,0.08018,0.09446,0.11131,,,,,,,,0.07978,0.09399,0.11113,,,,,,,,0.05875,0.06972,0.08109,,,,,,,,0.0643,0.0761,0.08912,,,,,,,,0.05781,0.06865,0.07998,,,,,,,,0.06741,0.07973,0.09347,,,,,,,,0.05647,0.06714,0.07828 +Large SUV,DSL,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,505.83557,508.1193,,,,,,,,,511.22947,513.38177,,,,,,,,,518.35636,520.57781,,,,,,,,,505.58695,507.77559,,,,,,,,,524.57279,526.29014,,,,,,,,,514.62534,516.44883,,,,,,,,,520.54012,522.19179,,,,,,,,,518.27447,520.18296,,,,,,,,,511.64435,513.52073,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00418,0.00419,,,,,,,,,0.00424,0.00425,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00429,0.0043,,,,,,,,,0.0042,0.00422,,,,,,,,,0.00425,0.00427,,,,,,,,,0.00423,0.00425,,,,,,,,,0.00418,0.0042,,,,,,,,,0.07953,0.09376,,,,,,,,,0.07578,0.08941,,,,,,,,,0.08015,0.09445,,,,,,,,,0.07975,0.09398,,,,,,,,,0.05873,0.06971,,,,,,,,,0.06428,0.0761,,,,,,,,,0.0578,0.06865,,,,,,,,,0.06739,0.07973,,,,,,,,,0.05645,0.06714 +Large SUV,DSL,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,505.83304,,,,,,,,,,511.2268,,,,,,,,,,518.35376,,,,,,,,,,505.58432,,,,,,,,,,524.57034,,,,,,,,,,514.62275,,,,,,,,,,520.53783,,,,,,,,,,518.27191,,,,,,,,,,511.64183,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00413,,,,,,,,,,0.00418,,,,,,,,,,0.00424,,,,,,,,,,0.00413,,,,,,,,,,0.00429,,,,,,,,,,0.0042,,,,,,,,,,0.00425,,,,,,,,,,0.00423,,,,,,,,,,0.00418,,,,,,,,,,0.07953,,,,,,,,,,0.07578,,,,,,,,,,0.08015,,,,,,,,,,0.07975,,,,,,,,,,0.05873,,,,,,,,,,0.06428,,,,,,,,,,0.0578,,,,,,,,,,0.06739,,,,,,,,,,0.05645 +Large SUV,E10,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11314,,,,,,,,,,0.09514,,,,,,,,,,0.12563,,,,,,,,,,0.13114,,,,,,,,,,0.10808,,,,,,,,,,0.11889,,,,,,,,,,0.1086,,,,,,,,,,0.10523,,,,,,,,,,0.082,,,,,,,,,,63.2126,,,,,,,,,,56.71448,,,,,,,,,,72.5467,,,,,,,,,,75.39182,,,,,,,,,,65.86029,,,,,,,,,,71.70294,,,,,,,,,,67.75261,,,,,,,,,,64.00043,,,,,,,,,,51.27035,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.42804,,,,,,,,,,5.10132,,,,,,,,,,5.66747,,,,,,,,,,6.03225,,,,,,,,,,5.57448,,,,,,,,,,5.84644,,,,,,,,,,5.59049,,,,,,,,,,5.89878,,,,,,,,,,4.86777,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02859,,,,,,,,,,0.03225,,,,,,,,,,0.0458,,,,,,,,,,0.04198,,,,,,,,,,0.03737,,,,,,,,,,0.04119,,,,,,,,,,0.03748,,,,,,,,,,0.03705,,,,,,,,,,0.01748,,,,,,,,,,4.58393,,,,,,,,,,4.09865,,,,,,,,,,5.16888,,,,,,,,,,5.36494,,,,,,,,,,5.05775,,,,,,,,,,5.2588,,,,,,,,,,5.07596,,,,,,,,,,4.89415,,,,,,,,,,3.91859,,,,,,,,, +Large SUV,E10,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07748,0.08904,,,,,,,,,0.072,0.07672,,,,,,,,,0.08854,0.09985,,,,,,,,,0.09111,0.10812,,,,,,,,,0.0789,0.09187,,,,,,,,,0.084,0.10018,,,,,,,,,0.07855,0.09062,,,,,,,,,0.07752,0.08825,,,,,,,,,0.0636,0.06606,,,,,,,,,29.63897,41.36596,,,,,,,,,28.97433,38.13233,,,,,,,,,34.93065,46.68978,,,,,,,,,36.55574,50.87631,,,,,,,,,32.44092,44.68976,,,,,,,,,34.65845,48.01339,,,,,,,,,33.36491,46.18974,,,,,,,,,32.00793,44.75452,,,,,,,,,25.76618,35.26581,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.4622,5.38071,,,,,,,,,4.39166,5.07853,,,,,,,,,4.76518,5.5464,,,,,,,,,4.98088,6.03246,,,,,,,,,4.67221,5.61475,,,,,,,,,4.86994,5.84286,,,,,,,,,4.73253,5.63439,,,,,,,,,4.9598,5.90802,,,,,,,,,4.15621,4.87518,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02235,0.01148,,,,,,,,,0.02537,0.01164,,,,,,,,,0.03618,0.01205,,,,,,,,,0.03289,0.02015,,,,,,,,,0.02978,0.01187,,,,,,,,,0.03259,0.01176,,,,,,,,,0.02981,0.01615,,,,,,,,,0.0293,0.01836,,,,,,,,,0.01378,0.00675,,,,,,,,,3.15995,3.95794,,,,,,,,,3.05508,3.64352,,,,,,,,,3.65557,4.47219,,,,,,,,,3.72559,4.76354,,,,,,,,,3.55404,4.60463,,,,,,,,,3.63499,4.74219,,,,,,,,,3.54137,4.55094,,,,,,,,,3.49782,4.45048,,,,,,,,,2.90021,3.5081,,,,,,,, +Large SUV,E10,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04401,0.06476,0.08784,,,,,,,,0.0413,0.06232,0.0781,,,,,,,,0.05087,0.07437,0.10072,,,,,,,,0.05219,0.07737,0.10281,,,,,,,,0.03885,0.06434,0.08903,,,,,,,,0.04221,0.06816,0.09361,,,,,,,,0.03831,0.06344,0.08422,,,,,,,,0.0414,0.06502,0.08415,,,,,,,,0.03345,0.05497,0.06663,,,,,,,,9.20673,14.67901,27.14853,,,,,,,,9.00892,14.50541,24.80322,,,,,,,,11.06622,17.33347,31.26982,,,,,,,,11.46401,18.23061,32.27626,,,,,,,,8.96455,15.47148,28.66746,,,,,,,,9.72109,16.37041,30.05152,,,,,,,,9.10995,15.80052,28.4154,,,,,,,,9.39068,15.98896,27.98844,,,,,,,,7.52152,13.50881,22.50913,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.62242,2.27158,3.8184,,,,,,,,1.59133,2.25249,3.61825,,,,,,,,1.85119,2.49498,4.08478,,,,,,,,1.90156,2.62987,4.18527,,,,,,,,1.76576,2.46283,4.06962,,,,,,,,1.83606,2.52392,4.14115,,,,,,,,1.79219,2.50177,3.93434,,,,,,,,1.87762,2.60733,4.13455,,,,,,,,1.58162,2.23808,3.46002,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.0239,0.0116,0.0105,,,,,,,,0.02716,0.01179,0.01056,,,,,,,,0.03873,0.01221,0.01072,,,,,,,,0.03527,0.02044,0.01047,,,,,,,,0.03204,0.01214,0.01065,,,,,,,,0.03506,0.012,0.0105,,,,,,,,0.03213,0.01653,0.01055,,,,,,,,0.03144,0.01871,0.0095,,,,,,,,0.01477,0.00685,0.00494,,,,,,,,1.06311,1.76753,3.20543,,,,,,,,1.04361,1.7498,2.93418,,,,,,,,1.24914,2.05104,3.67596,,,,,,,,1.2881,2.12799,3.7341,,,,,,,,1.10217,1.94308,3.60125,,,,,,,,1.14195,1.99627,3.65022,,,,,,,,1.09683,1.91642,3.44684,,,,,,,,1.15621,1.96365,3.42979,,,,,,,,0.94024,1.66224,2.76321,,,,,,, +Large SUV,E10,2005,0.00218,0.00358,0.00529,0.01394,,,,,,,0.00196,0.00308,0.00454,0.01197,,,,,,,0.00241,0.00274,0.00401,0.01339,,,,,,,0.00251,0.0037,0.00548,0.01499,,,,,,,0.00126,0.00201,0.00294,0.00684,,,,,,,0.00148,0.00206,0.00301,0.00798,,,,,,,0.0012,0.00183,0.00267,0.00633,,,,,,,0.00164,0.00232,0.00339,0.00923,,,,,,,0.00106,0.00158,0.00227,0.00621,,,,,,,0.02811,0.02142,0.02264,0.04902,,,,,,,0.02586,0.01943,0.0211,0.0445,,,,,,,0.02914,0.02137,0.02317,0.05647,,,,,,,0.02949,0.02482,0.02517,0.05903,,,,,,,0.01864,0.01622,0.01864,0.04767,,,,,,,0.02074,0.01732,0.01956,0.05074,,,,,,,0.01788,0.01677,0.01823,0.04544,,,,,,,0.02234,0.01889,0.0194,0.04745,,,,,,,0.01497,0.01269,0.01434,0.03839,,,,,,,4.53533,6.85821,8.85974,16.10575,,,,,,,4.44842,6.79605,8.94289,15.44397,,,,,,,4.9582,7.98354,10.64999,18.92182,,,,,,,5.10544,8.63779,10.64684,19.76927,,,,,,,4.51382,7.38109,9.95459,17.53775,,,,,,,4.66371,7.69058,10.31608,18.29136,,,,,,,4.62635,7.94441,10.04262,17.59912,,,,,,,4.71885,8.17685,9.97695,17.58782,,,,,,,3.72873,6.82375,8.95189,15.11981,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.61209,0.96956,1.26103,1.92446,,,,,,,0.60099,0.94894,1.25846,1.86081,,,,,,,0.65121,1.05001,1.37261,2.11066,,,,,,,0.65002,1.15382,1.43403,2.20209,,,,,,,0.6098,1.01467,1.34061,2.08907,,,,,,,0.63115,1.05028,1.37292,2.12959,,,,,,,0.61933,1.06557,1.33917,2.04097,,,,,,,0.66549,1.10947,1.36821,2.15451,,,,,,,0.52141,0.74253,0.97447,1.86164,,,,,,,0.00487,0.0078,0.0106,0.02466,,,,,,,0.00446,0.00694,0.00942,0.02171,,,,,,,0.00516,0.00643,0.00867,0.02359,,,,,,,0.00532,0.00788,0.01073,0.02582,,,,,,,0.00313,0.00492,0.0067,0.01364,,,,,,,0.00351,0.00503,0.00683,0.01542,,,,,,,0.00304,0.00464,0.0063,0.013,,,,,,,0.00384,0.00554,0.00749,0.01741,,,,,,,0.00281,0.00421,0.00567,0.01291,,,,,,,0.05129,0.05749,0.0638,0.09546,,,,,,,0.0518,0.05697,0.06251,0.09006,,,,,,,0.05747,0.05985,0.06482,0.09857,,,,,,,0.04957,0.05498,0.06137,0.09554,,,,,,,0.05206,0.05572,0.0596,0.07487,,,,,,,0.04863,0.05167,0.05559,0.07463,,,,,,,0.04779,0.05106,0.05461,0.06927,,,,,,,0.05164,0.05512,0.05937,0.08145,,,,,,,0.04909,0.05192,0.05504,0.07088,,,,,,,0.01453,0.02002,0.02561,0.05361,,,,,,,0.01392,0.0185,0.0234,0.04778,,,,,,,0.01589,0.018,0.0224,0.05226,,,,,,,0.01517,0.01995,0.02561,0.05584,,,,,,,0.01173,0.01497,0.0184,0.03191,,,,,,,0.01196,0.01465,0.01812,0.03496,,,,,,,0.01103,0.01392,0.01706,0.03004,,,,,,,0.01287,0.01596,0.01972,0.03926,,,,,,,0.01076,0.01327,0.01602,0.03005,,,,,,,0.02504,0.01211,0.01102,0.00368,,,,,,,0.02848,0.01232,0.0111,0.0037,,,,,,,0.0406,0.01275,0.01126,0.00375,,,,,,,0.037,0.02137,0.01101,0.00367,,,,,,,0.03367,0.01272,0.01127,0.00373,,,,,,,0.03685,0.01257,0.01109,0.00368,,,,,,,0.0338,0.01734,0.01118,0.0037,,,,,,,0.03301,0.01959,0.01002,0.00366,,,,,,,0.01551,0.00717,0.00521,0.00338,,,,,,,0.42668,0.52192,0.71339,1.83233,,,,,,,0.4036,0.49321,0.68111,1.71672,,,,,,,0.45618,0.54093,0.74631,2.08237,,,,,,,0.46665,0.61217,0.80079,2.15051,,,,,,,0.34117,0.46419,0.6603,1.95653,,,,,,,0.36239,0.478,0.67328,1.99999,,,,,,,0.3322,0.47036,0.64293,1.88454,,,,,,,0.39852,0.52943,0.7006,1.96066,,,,,,,0.28505,0.38919,0.54876,1.63607,,,,,, +Large SUV,E10,2010,,0.00162,0.00287,0.00427,0.01079,,,,,,,0.00142,0.0025,0.00377,0.00934,,,,,,,0.00124,0.00218,0.00406,0.01029,,,,,,,0.00168,0.00299,0.00454,0.01154,,,,,,,0.00103,0.00178,0.0025,0.00562,,,,,,,0.00102,0.00177,0.00275,0.00641,,,,,,,0.00094,0.00161,0.00226,0.0051,,,,,,,0.00111,0.00193,0.00303,0.00727,,,,,,,0.0008,0.00136,0.00215,0.00492,,,,,,,0.02013,0.01854,0.01573,0.03289,,,,,,,0.01774,0.01707,0.01438,0.03038,,,,,,,0.01881,0.01888,0.01616,0.03701,,,,,,,0.02262,0.02104,0.01791,0.03947,,,,,,,0.01341,0.01553,0.01279,0.0305,,,,,,,0.01411,0.01603,0.01342,0.03241,,,,,,,0.0138,0.01531,0.01259,0.02938,,,,,,,0.01612,0.0158,0.01384,0.03135,,,,,,,0.01078,0.01164,0.01209,0.02613,,,,,,,3.09224,4.95927,6.48848,11.49491,,,,,,,2.97276,4.9579,6.43558,11.29062,,,,,,,3.41119,5.77432,7.27606,13.6769,,,,,,,3.65072,5.8182,7.79685,14.45278,,,,,,,2.83758,5.21916,6.92104,12.75393,,,,,,,3.00662,5.44818,7.12479,13.30185,,,,,,,3.05711,5.30439,7.08065,12.89365,,,,,,,3.3226,5.35322,7.08916,12.86984,,,,,,,2.71446,4.75412,6.32517,11.19949,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.22139,0.3576,0.32156,1.00374,,,,,,,0.21378,0.35576,0.31782,0.98526,,,,,,,0.22098,0.3824,0.33969,1.12438,,,,,,,0.23875,0.40147,0.35787,1.18556,,,,,,,0.20712,0.36724,0.32313,1.10404,,,,,,,0.214,0.37886,0.33338,1.12913,,,,,,,0.21757,0.36928,0.32582,1.08596,,,,,,,0.23378,0.3815,0.35378,1.14599,,,,,,,0.15918,0.26955,0.31976,0.99901,,,,,,,0.00293,0.00493,0.0069,0.01768,,,,,,,0.00274,0.00458,0.00642,0.01583,,,,,,,0.00249,0.00414,0.00667,0.01692,,,,,,,0.00296,0.00499,0.00711,0.01842,,,,,,,0.0024,0.00394,0.00523,0.01087,,,,,,,0.00233,0.00384,0.00542,0.01188,,,,,,,0.00227,0.00372,0.00492,0.01024,,,,,,,0.00239,0.00395,0.00568,0.01307,,,,,,,0.00203,0.00331,0.00475,0.01004,,,,,,,0.04735,0.0519,0.05648,0.08074,,,,,,,0.04824,0.05237,0.05662,0.07768,,,,,,,0.05169,0.05538,0.06132,0.08441,,,,,,,0.04465,0.04927,0.05425,0.07982,,,,,,,0.0505,0.05381,0.05663,0.06906,,,,,,,0.04609,0.04934,0.05288,0.06719,,,,,,,0.04617,0.04924,0.05184,0.06347,,,,,,,0.04858,0.05196,0.05587,0.07229,,,,,,,0.04748,0.05018,0.05333,0.06485,,,,,,,0.01105,0.01508,0.01913,0.04059,,,,,,,0.01078,0.01443,0.01819,0.03682,,,,,,,0.01078,0.01404,0.0193,0.03973,,,,,,,0.01081,0.01491,0.01931,0.04193,,,,,,,0.01035,0.01328,0.01577,0.02677,,,,,,,0.00972,0.01259,0.01572,0.02838,,,,,,,0.0096,0.01232,0.01462,0.02491,,,,,,,0.01017,0.01317,0.01663,0.03115,,,,,,,0.00934,0.01173,0.01452,0.02471,,,,,,,0.01147,0.01037,0.00349,0.00363,,,,,,,0.01167,0.01045,0.00351,0.00365,,,,,,,0.01208,0.0106,0.00356,0.0037,,,,,,,0.02024,0.01036,0.00348,0.00362,,,,,,,0.01207,0.01063,0.00356,0.00368,,,,,,,0.01192,0.01046,0.00351,0.00363,,,,,,,0.01645,0.01056,0.00353,0.00365,,,,,,,0.01857,0.00945,0.00349,0.00361,,,,,,,0.0068,0.00491,0.00322,0.00333,,,,,,,0.17024,0.25037,0.35532,1.23054,,,,,,,0.15173,0.22939,0.32973,1.1748,,,,,,,0.16315,0.2531,0.36572,1.3646,,,,,,,0.19174,0.28179,0.39888,1.41916,,,,,,,0.12082,0.20837,0.31351,1.2648,,,,,,,0.12492,0.21256,0.3183,1.28611,,,,,,,0.12209,0.2039,0.30703,1.22529,,,,,,,0.1483,0.22827,0.34463,1.30038,,,,,,,0.10918,0.1789,0.30002,1.12921,,,,, +Large SUV,E10,2015,,,0.00128,0.00225,0.00349,0.00739,,,,,,,0.00115,0.00206,0.00317,0.00655,,,,,,,0.00101,0.00217,0.00335,0.00705,,,,,,,0.0013,0.00235,0.00364,0.0078,,,,,,,0.0009,0.00152,0.0023,0.00434,,,,,,,0.00089,0.00163,0.00248,0.00479,,,,,,,0.00083,0.0014,0.0021,0.00391,,,,,,,0.00093,0.00173,0.00264,0.00526,,,,,,,0.00071,0.00133,0.002,0.00373,,,,,,,0.01503,0.01155,0.01238,0.01853,,,,,,,0.01385,0.01072,0.01164,0.01731,,,,,,,0.01406,0.01191,0.01298,0.01995,,,,,,,0.01566,0.01311,0.01424,0.02173,,,,,,,0.01097,0.00973,0.01115,0.0166,,,,,,,0.01147,0.01026,0.01165,0.01751,,,,,,,0.01101,0.00968,0.01111,0.01635,,,,,,,0.01188,0.01049,0.01169,0.01747,,,,,,,0.0089,0.00934,0.01058,0.01524,,,,,,,2.20988,3.99465,5.43701,8.07463,,,,,,,2.22179,4.01555,5.49317,8.07877,,,,,,,2.41633,4.43487,6.2143,9.47883,,,,,,,2.44973,4.75977,6.67892,10.11635,,,,,,,2.1891,4.39723,6.2066,9.19718,,,,,,,2.2712,4.49018,6.35204,9.50604,,,,,,,2.25387,4.52083,6.36443,9.39782,,,,,,,2.29043,4.46132,6.20488,9.23024,,,,,,,2.06139,4.03955,5.56824,8.18043,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.1346,0.16641,0.24871,0.46267,,,,,,,0.134,0.16374,0.24547,0.45687,,,,,,,0.13407,0.17653,0.2631,0.50771,,,,,,,0.14045,0.1882,0.28033,0.53953,,,,,,,0.12341,0.16433,0.24802,0.48761,,,,,,,0.12905,0.17155,0.25804,0.50304,,,,,,,0.12645,0.16611,0.25103,0.48674,,,,,,,0.134,0.18242,0.27299,0.52188,,,,,,,0.09672,0.16332,0.24504,0.46248,,,,,,,0.00251,0.00424,0.00615,0.01177,,,,,,,0.00239,0.00405,0.00585,0.01088,,,,,,,0.00218,0.00413,0.00599,0.01135,,,,,,,0.0025,0.0043,0.00626,0.01212,,,,,,,0.00218,0.00356,0.00504,0.00849,,,,,,,0.00211,0.00362,0.00516,0.00893,,,,,,,0.00208,0.00339,0.00478,0.00797,,,,,,,0.00213,0.00372,0.00532,0.00944,,,,,,,0.00186,0.00328,0.00462,0.00772,,,,,,,0.04631,0.05013,0.05451,0.06761,,,,,,,0.0474,0.05103,0.0551,0.06672,,,,,,,0.05094,0.05528,0.05952,0.07198,,,,,,,0.04349,0.04747,0.05198,0.06572,,,,,,,0.05001,0.0529,0.05612,0.06385,,,,,,,0.04558,0.04881,0.05219,0.0607,,,,,,,0.04572,0.04844,0.05144,0.05853,,,,,,,0.04794,0.05136,0.05491,0.0643,,,,,,,0.0471,0.05007,0.05296,0.05982,,,,,,,0.01014,0.01351,0.01739,0.02897,,,,,,,0.01003,0.01325,0.01685,0.02713,,,,,,,0.01012,0.01397,0.01772,0.02874,,,,,,,0.0098,0.01331,0.0173,0.02946,,,,,,,0.00992,0.01248,0.01533,0.02216,,,,,,,0.00927,0.01212,0.01511,0.02264,,,,,,,0.0092,0.01162,0.01427,0.02054,,,,,,,0.00962,0.01264,0.01578,0.02408,,,,,,,0.00901,0.01164,0.01419,0.02026,,,,,,,0.00833,0.00279,0.00282,0.00311,,,,,,,0.0084,0.00281,0.00284,0.00312,,,,,,,0.00851,0.00285,0.00288,0.00317,,,,,,,0.00832,0.00279,0.00281,0.0031,,,,,,,0.00855,0.00286,0.00287,0.00315,,,,,,,0.00841,0.00281,0.00283,0.0031,,,,,,,0.00849,0.00284,0.00285,0.00312,,,,,,,0.00759,0.00279,0.00281,0.00309,,,,,,,0.00394,0.00258,0.0026,0.00285,,,,,,,0.12353,0.17702,0.29,0.72192,,,,,,,0.11491,0.16616,0.27682,0.69693,,,,,,,0.1197,0.18197,0.30366,0.7682,,,,,,,0.13045,0.19657,0.32478,0.80098,,,,,,,0.09844,0.15906,0.28186,0.72466,,,,,,,0.10006,0.16147,0.28336,0.7259,,,,,,,0.09787,0.15691,0.27799,0.70886,,,,,,,0.1109,0.17464,0.29942,0.75565,,,,,,,0.08985,0.15336,0.27084,0.6876,,,, +Large SUV,E10,2020,,,,0.00115,0.00196,0.00278,0.00556,,,,,,,0.00106,0.00179,0.00253,0.005,,,,,,,0.0011,0.00188,0.00267,0.00532,,,,,,,0.00119,0.00203,0.00289,0.00583,,,,,,,0.0008,0.00134,0.00185,0.00347,,,,,,,0.00085,0.00143,0.00199,0.00379,,,,,,,0.00074,0.00123,0.00169,0.00314,,,,,,,0.0009,0.00152,0.00212,0.00409,,,,,,,0.00071,0.00117,0.00161,0.00299,,,,,,,0.01145,0.00983,0.00977,0.01336,,,,,,,0.01034,0.00904,0.00906,0.01243,,,,,,,0.01084,0.01004,0.01008,0.01424,,,,,,,0.01196,0.0111,0.01112,0.01564,,,,,,,0.00753,0.00784,0.00815,0.01171,,,,,,,0.00814,0.00836,0.00864,0.0124,,,,,,,0.00745,0.00777,0.0081,0.01159,,,,,,,0.00894,0.00861,0.00879,0.01243,,,,,,,0.00756,0.00747,0.00772,0.01081,,,,,,,1.80774,2.7961,3.51815,5.41595,,,,,,,1.78859,2.78553,3.51355,5.41323,,,,,,,1.87754,3.07814,3.96495,6.35892,,,,,,,2.01775,3.31666,4.28691,6.8323,,,,,,,1.73861,2.97001,3.83583,6.13895,,,,,,,1.78779,3.0529,3.95738,6.37473,,,,,,,1.79846,3.05696,3.94339,6.29473,,,,,,,1.85337,3.05077,3.89999,6.17588,,,,,,,1.67447,2.73989,3.47141,5.43122,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.09102,0.15014,0.20177,0.28483,,,,,,,0.08957,0.14758,0.1987,0.28046,,,,,,,0.09036,0.15847,0.21197,0.30597,,,,,,,0.09519,0.1696,0.22674,0.32739,,,,,,,0.08026,0.14628,0.19723,0.28718,,,,,,,0.08469,0.15357,0.20662,0.29958,,,,,,,0.08221,0.14839,0.20036,0.28941,,,,,,,0.09308,0.16365,0.21951,0.31452,,,,,,,0.08459,0.1462,0.19659,0.27912,,,,,,,0.00228,0.0037,0.00491,0.00876,,,,,,,0.0022,0.00354,0.00468,0.00822,,,,,,,0.00223,0.00361,0.00478,0.00849,,,,,,,0.00231,0.00374,0.00499,0.00896,,,,,,,0.00196,0.00312,0.00404,0.00679,,,,,,,0.00199,0.00318,0.00414,0.00703,,,,,,,0.00188,0.00297,0.00384,0.00638,,,,,,,0.00204,0.00326,0.00426,0.00732,,,,,,,0.00182,0.00288,0.00371,0.00616,,,,,,,0.04579,0.04893,0.05175,0.06081,,,,,,,0.04696,0.04992,0.05253,0.06079,,,,,,,0.05109,0.05414,0.05685,0.06556,,,,,,,0.04303,0.04624,0.04913,0.05855,,,,,,,0.04954,0.05199,0.05402,0.06016,,,,,,,0.04532,0.04787,0.05001,0.05656,,,,,,,0.04527,0.04759,0.04947,0.05512,,,,,,,0.04774,0.05038,0.05263,0.05962,,,,,,,0.04701,0.04925,0.05106,0.05649,,,,,,,0.00968,0.01246,0.01494,0.02296,,,,,,,0.00965,0.01227,0.01457,0.02189,,,,,,,0.01025,0.01295,0.01535,0.02306,,,,,,,0.00939,0.01222,0.01478,0.02312,,,,,,,0.0095,0.01168,0.01347,0.0189,,,,,,,0.00904,0.01129,0.01318,0.01898,,,,,,,0.00881,0.01086,0.01252,0.01752,,,,,,,0.00944,0.01177,0.01376,0.01994,,,,,,,0.00893,0.01091,0.01251,0.01731,,,,,,,0.00238,0.0024,0.00243,0.00265,,,,,,,0.0024,0.00242,0.00244,0.00266,,,,,,,0.00244,0.00245,0.00248,0.0027,,,,,,,0.00238,0.0024,0.00242,0.00265,,,,,,,0.00244,0.00245,0.00247,0.00268,,,,,,,0.0024,0.00241,0.00243,0.00264,,,,,,,0.00242,0.00243,0.00245,0.00265,,,,,,,0.00239,0.0024,0.00242,0.00263,,,,,,,0.00221,0.00222,0.00223,0.00242,,,,,,,0.10613,0.15012,0.22846,0.54308,,,,,,,0.09752,0.13893,0.21469,0.52368,,,,,,,0.10331,0.15336,0.23717,0.5715,,,,,,,0.11171,0.16649,0.25488,0.59357,,,,,,,0.07974,0.12682,0.20827,0.54088,,,,,,,0.08262,0.13079,0.21213,0.53986,,,,,,,0.07853,0.12388,0.20307,0.52837,,,,,,,0.09362,0.14252,0.22633,0.56366,,,,,,,0.0781,0.12159,0.19912,0.51941,,, +Large SUV,E10,2025,,,,,0.00076,0.00126,0.00178,0.00398,,,,,,,0.0007,0.00115,0.00162,0.00359,,,,,,,0.00073,0.00121,0.00171,0.00381,,,,,,,0.00078,0.0013,0.00185,0.00414,,,,,,,0.00053,0.00086,0.00119,0.00253,,,,,,,0.00056,0.00092,0.00128,0.00275,,,,,,,0.00049,0.00079,0.00109,0.00228,,,,,,,0.00059,0.00097,0.00136,0.00296,,,,,,,0.00047,0.00076,0.00104,0.00219,,,,,,,0.00894,0.00705,0.00683,0.01005,,,,,,,0.0078,0.00625,0.00612,0.00918,,,,,,,0.00836,0.00697,0.00682,0.01057,,,,,,,0.00939,0.0078,0.00762,0.01169,,,,,,,0.00486,0.0046,0.00474,0.00806,,,,,,,0.00551,0.00509,0.00518,0.00869,,,,,,,0.00472,0.00449,0.00465,0.00792,,,,,,,0.00633,0.00551,0.00552,0.00886,,,,,,,0.00482,0.00438,0.00449,0.0074,,,,,,,1.18398,1.7428,2.22113,3.72535,,,,,,,1.1395,1.69672,2.17184,3.68152,,,,,,,1.20991,1.88654,2.45982,4.35409,,,,,,,1.31013,2.04967,2.68018,4.70544,,,,,,,1.01572,1.69093,2.22852,4.05968,,,,,,,1.06639,1.76693,2.33344,4.25659,,,,,,,1.04974,1.74207,2.29355,4.16627,,,,,,,1.13273,1.79813,2.33673,4.14545,,,,,,,0.99097,1.5772,2.0348,3.59288,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.05552,0.08396,0.11273,0.19147,,,,,,,0.05378,0.08147,0.10968,0.18734,,,,,,,0.05442,0.08686,0.11631,0.20496,,,,,,,0.05764,0.09329,0.1248,0.22027,,,,,,,0.04515,0.07603,0.10324,0.18744,,,,,,,0.04877,0.08123,0.1098,0.19747,,,,,,,0.04627,0.07731,0.10507,0.1889,,,,,,,0.05383,0.08713,0.11734,0.20752,,,,,,,0.04781,0.07683,0.10401,0.18229,,,,,,,0.00151,0.00239,0.00317,0.00631,,,,,,,0.00145,0.00229,0.00303,0.00595,,,,,,,0.00147,0.00233,0.00309,0.00613,,,,,,,0.00152,0.00241,0.00322,0.00643,,,,,,,0.0013,0.00202,0.00262,0.00495,,,,,,,0.00132,0.00206,0.00268,0.00512,,,,,,,0.00124,0.00192,0.00249,0.00465,,,,,,,0.00135,0.00211,0.00276,0.00532,,,,,,,0.0012,0.00187,0.00241,0.00451,,,,,,,0.04412,0.04607,0.04789,0.05522,,,,,,,0.04537,0.04721,0.04889,0.05565,,,,,,,0.04946,0.05135,0.0531,0.06018,,,,,,,0.04133,0.04332,0.04518,0.05273,,,,,,,0.04816,0.04969,0.05101,0.05618,,,,,,,0.04391,0.04549,0.04688,0.05237,,,,,,,0.04396,0.0454,0.04663,0.05139,,,,,,,0.04629,0.04793,0.04939,0.05519,,,,,,,0.04575,0.04714,0.04832,0.05295,,,,,,,0.0082,0.00992,0.01153,0.01802,,,,,,,0.00824,0.00987,0.01136,0.01734,,,,,,,0.00881,0.01048,0.01204,0.01829,,,,,,,0.00788,0.00964,0.01129,0.01797,,,,,,,0.00828,0.00964,0.0108,0.01538,,,,,,,0.00779,0.00919,0.01042,0.01527,,,,,,,0.00765,0.00892,0.01001,0.01422,,,,,,,0.00815,0.0096,0.0109,0.01603,,,,,,,0.00781,0.00905,0.01009,0.01418,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00198,0.00199,0.002,0.00224,,,,,,,0.00201,0.00202,0.00204,0.00227,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00201,0.00201,0.00202,0.00224,,,,,,,0.00198,0.00198,0.002,0.00222,,,,,,,0.00199,0.002,0.00201,0.00223,,,,,,,0.00196,0.00197,0.00198,0.00221,,,,,,,0.00182,0.00182,0.00183,0.00203,,,,,,,0.08884,0.11605,0.17324,0.46046,,,,,,,0.07969,0.10435,0.15872,0.44123,,,,,,,0.08569,0.11632,0.17708,0.48245,,,,,,,0.0937,0.12765,0.19166,0.49927,,,,,,,0.0593,0.08559,0.14178,0.44597,,,,,,,0.0632,0.09068,0.14726,0.44702,,,,,,,0.0576,0.08195,0.13561,0.43194,,,,,,,0.0732,0.10157,0.16064,0.46764,,,,,,,0.05738,0.0813,0.13472,0.42859,, +Large SUV,E10,2030,,,,,,0.00075,0.00125,0.00177,0.00326,,,,,,,0.00069,0.00115,0.00161,0.00294,,,,,,,0.00073,0.0012,0.0017,0.00312,,,,,,,0.00078,0.0013,0.00183,0.00339,,,,,,,0.00053,0.00086,0.00118,0.00208,,,,,,,0.00056,0.00092,0.00127,0.00226,,,,,,,0.00049,0.00079,0.00108,0.00189,,,,,,,0.00059,0.00097,0.00135,0.00243,,,,,,,0.00047,0.00075,0.00104,0.0018,,,,,,,0.00824,0.00631,0.00612,0.00834,,,,,,,0.0071,0.00552,0.00541,0.00748,,,,,,,0.00767,0.00614,0.00603,0.00852,,,,,,,0.00866,0.00691,0.00676,0.00949,,,,,,,0.00413,0.00375,0.0039,0.00593,,,,,,,0.00478,0.00423,0.00434,0.00651,,,,,,,0.00397,0.00363,0.0038,0.0058,,,,,,,0.0056,0.00469,0.00472,0.00686,,,,,,,0.00407,0.00358,0.00371,0.0055,,,,,,,1.04003,1.53051,1.96854,2.92609,,,,,,,0.99,1.4779,1.90991,2.85621,,,,,,,1.05552,1.64452,2.16274,3.34955,,,,,,,1.14572,1.7901,2.35812,3.63606,,,,,,,0.84984,1.43294,1.90946,3.00885,,,,,,,0.90029,1.50612,2.00959,3.17653,,,,,,,0.87756,1.47575,1.96432,3.09091,,,,,,,0.96643,1.54482,2.02794,3.1354,,,,,,,0.83315,1.34237,1.75322,2.69085,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.04478,0.06659,0.09172,0.14345,,,,,,,0.04294,0.06411,0.08868,0.13932,,,,,,,0.04336,0.06786,0.09351,0.15098,,,,,,,0.04592,0.07282,0.10024,0.16221,,,,,,,0.03436,0.05741,0.08088,0.13394,,,,,,,0.03767,0.06195,0.08666,0.14237,,,,,,,0.03525,0.05842,0.08231,0.13525,,,,,,,0.04178,0.06685,0.09306,0.15057,,,,,,,0.03663,0.0586,0.08222,0.13175,,,,,,,0.0015,0.00238,0.00316,0.00522,,,,,,,0.00145,0.00228,0.00301,0.00492,,,,,,,0.00147,0.00232,0.00308,0.00506,,,,,,,0.00152,0.00241,0.0032,0.00532,,,,,,,0.0013,0.00202,0.00261,0.00411,,,,,,,0.00131,0.00205,0.00267,0.00425,,,,,,,0.00124,0.00192,0.00247,0.00387,,,,,,,0.00134,0.0021,0.00275,0.00441,,,,,,,0.0012,0.00186,0.00241,0.00375,,,,,,,0.04411,0.04606,0.04785,0.0527,,,,,,,0.04536,0.0472,0.04886,0.05331,,,,,,,0.04945,0.05134,0.05307,0.05774,,,,,,,0.04132,0.0433,0.04513,0.05015,,,,,,,0.04815,0.04968,0.05098,0.05435,,,,,,,0.04391,0.04549,0.04686,0.05044,,,,,,,0.04395,0.04539,0.04659,0.0497,,,,,,,0.04628,0.04792,0.04937,0.05316,,,,,,,0.04575,0.04714,0.04832,0.05129,,,,,,,0.00819,0.00991,0.0115,0.01579,,,,,,,0.00824,0.00986,0.01133,0.01527,,,,,,,0.0088,0.01047,0.012,0.01614,,,,,,,0.00787,0.00963,0.01125,0.01568,,,,,,,0.00828,0.00963,0.01078,0.01376,,,,,,,0.00779,0.00919,0.0104,0.01357,,,,,,,0.00764,0.00892,0.00998,0.01273,,,,,,,0.00815,0.0096,0.01088,0.01423,,,,,,,0.00781,0.00904,0.01009,0.01272,,,,,,,0.0018,0.00182,0.00184,0.002,,,,,,,0.00181,0.00183,0.00185,0.002,,,,,,,0.00184,0.00185,0.00188,0.00204,,,,,,,0.0018,0.00181,0.00184,0.00199,,,,,,,0.00184,0.00185,0.00187,0.00201,,,,,,,0.00181,0.00182,0.00184,0.00198,,,,,,,0.00182,0.00183,0.00185,0.00199,,,,,,,0.0018,0.00181,0.00183,0.00197,,,,,,,0.00166,0.00167,0.00169,0.00182,,,,,,,0.08409,0.1078,0.16182,0.40709,,,,,,,0.07489,0.09611,0.14725,0.38716,,,,,,,0.08085,0.10729,0.16453,0.42266,,,,,,,0.08871,0.11809,0.17818,0.43748,,,,,,,0.0541,0.07606,0.12816,0.38111,,,,,,,0.05813,0.08124,0.13378,0.38345,,,,,,,0.05232,0.07237,0.12184,0.36672,,,,,,,0.06785,0.0921,0.14704,0.40446,,,,,,,0.05204,0.07202,0.12166,0.36714, +Large SUV,E10,2035,,,,,,,0.00075,0.00124,0.00177,0.00301,,,,,,,0.00069,0.00114,0.00162,0.00272,,,,,,,0.00072,0.0012,0.0017,0.00288,,,,,,,0.00078,0.00128,0.00184,0.00313,,,,,,,0.00053,0.00085,0.00118,0.00193,,,,,,,0.00056,0.00091,0.00127,0.00209,,,,,,,0.00049,0.00078,0.00108,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00224,,,,,,,0.00047,0.00075,0.00104,0.00166,,,,,,,0.00821,0.00631,0.00611,0.00772,,,,,,,0.00708,0.00552,0.00541,0.00685,,,,,,,0.00765,0.00615,0.00602,0.00774,,,,,,,0.00864,0.00692,0.00675,0.00865,,,,,,,0.00412,0.00375,0.0039,0.00512,,,,,,,0.00477,0.00423,0.00433,0.00568,,,,,,,0.00397,0.00363,0.0038,0.00499,,,,,,,0.00559,0.00469,0.00472,0.0061,,,,,,,0.00406,0.00358,0.00371,0.00479,,,,,,,1.03716,1.52885,1.96803,2.65465,,,,,,,0.9873,1.47547,1.91,2.57555,,,,,,,1.05245,1.64125,2.16316,2.9991,,,,,,,1.14221,1.78486,2.35962,3.2623,,,,,,,0.84751,1.42772,1.91153,2.64262,,,,,,,0.89776,1.50092,2.01154,2.79826,,,,,,,0.87517,1.47017,1.96657,2.71624,,,,,,,0.96377,1.54122,2.02879,2.78535,,,,,,,0.83114,1.34091,1.75303,2.38043,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04463,0.06637,0.09175,0.12553,,,,,,,0.04279,0.0639,0.08872,0.12139,,,,,,,0.0432,0.06762,0.09356,0.13038,,,,,,,0.04576,0.07253,0.10031,0.13994,,,,,,,0.03426,0.05723,0.08091,0.11349,,,,,,,0.03755,0.06175,0.08669,0.12126,,,,,,,0.03514,0.05821,0.08236,0.11482,,,,,,,0.04165,0.06668,0.09307,0.12892,,,,,,,0.03653,0.05851,0.08219,0.11276,,,,,,,0.0015,0.00237,0.00316,0.00483,,,,,,,0.00144,0.00227,0.00302,0.00456,,,,,,,0.00147,0.00231,0.00308,0.00469,,,,,,,0.00151,0.00239,0.00321,0.00493,,,,,,,0.00129,0.00201,0.00262,0.00382,,,,,,,0.00131,0.00204,0.00268,0.00394,,,,,,,0.00123,0.00191,0.00248,0.0036,,,,,,,0.00134,0.0021,0.00275,0.00409,,,,,,,0.0012,0.00186,0.00241,0.00347,,,,,,,0.0441,0.04603,0.04786,0.05182,,,,,,,0.04535,0.04717,0.04887,0.0525,,,,,,,0.04944,0.05131,0.05308,0.05689,,,,,,,0.04131,0.04326,0.04515,0.04926,,,,,,,0.04814,0.04966,0.05099,0.05371,,,,,,,0.0439,0.04546,0.04687,0.04977,,,,,,,0.04395,0.04537,0.04661,0.04911,,,,,,,0.04627,0.0479,0.04938,0.05245,,,,,,,0.04574,0.04713,0.04832,0.0507,,,,,,,0.00818,0.00989,0.01151,0.01501,,,,,,,0.00823,0.00983,0.01134,0.01455,,,,,,,0.00879,0.01045,0.01202,0.01539,,,,,,,0.00786,0.00959,0.01127,0.0149,,,,,,,0.00827,0.00961,0.01079,0.01319,,,,,,,0.00778,0.00917,0.01041,0.01297,,,,,,,0.00764,0.00889,0.00999,0.01221,,,,,,,0.00814,0.00958,0.01088,0.0136,,,,,,,0.00781,0.00904,0.01009,0.0122,,,,,,,0.0018,0.00182,0.00184,0.00192,,,,,,,0.00181,0.00183,0.00185,0.00192,,,,,,,0.00184,0.00185,0.00188,0.00195,,,,,,,0.0018,0.00181,0.00184,0.00191,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00181,0.00182,0.00184,0.0019,,,,,,,0.00182,0.00183,0.00185,0.00191,,,,,,,0.0018,0.00181,0.00183,0.0019,,,,,,,0.00166,0.00167,0.00169,0.00175,,,,,,,0.08379,0.10772,0.16167,0.38733,,,,,,,0.07462,0.09603,0.14712,0.36711,,,,,,,0.08056,0.10724,0.16435,0.4001,,,,,,,0.08837,0.11789,0.17807,0.41418,,,,,,,0.05389,0.07585,0.12814,0.35668,,,,,,,0.05792,0.08106,0.13373,0.35939,,,,,,,0.05212,0.07213,0.12185,0.34223,,,,,,,0.06756,0.09168,0.14722,0.38063,,,,,,,0.05187,0.07191,0.12158,0.34424 +Large SUV,E10,2040,,,,,,,,0.00075,0.00125,0.00178,,,,,,,,0.00069,0.00114,0.00162,,,,,,,,0.00072,0.0012,0.00171,,,,,,,,0.00077,0.00129,0.00185,,,,,,,,0.00052,0.00085,0.00119,,,,,,,,0.00055,0.00091,0.00128,,,,,,,,0.00048,0.00078,0.00109,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00822,0.0063,0.00611,,,,,,,,0.00708,0.00551,0.0054,,,,,,,,0.00766,0.00614,0.00602,,,,,,,,0.00865,0.00691,0.00675,,,,,,,,0.00412,0.00375,0.0039,,,,,,,,0.00478,0.00422,0.00433,,,,,,,,0.00396,0.00363,0.0038,,,,,,,,0.00559,0.00469,0.00471,,,,,,,,0.00406,0.00357,0.0037,,,,,,,,1.03644,1.52849,1.96794,,,,,,,,0.98602,1.47553,1.91046,,,,,,,,1.05112,1.64166,2.16419,,,,,,,,1.13988,1.78611,2.36203,,,,,,,,0.84451,1.42926,1.91398,,,,,,,,0.89492,1.50241,2.01398,,,,,,,,0.87196,1.47185,1.96923,,,,,,,,0.9617,1.54187,2.03004,,,,,,,,0.8301,1.34068,1.75287,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04448,0.06639,0.09181,,,,,,,,0.04266,0.06391,0.08876,,,,,,,,0.04306,0.06765,0.09363,,,,,,,,0.04558,0.07257,0.10041,,,,,,,,0.03415,0.05724,0.08094,,,,,,,,0.03744,0.06177,0.08674,,,,,,,,0.03501,0.05823,0.08242,,,,,,,,0.04154,0.06668,0.09309,,,,,,,,0.03648,0.05847,0.08216,,,,,,,,0.00149,0.00237,0.00317,,,,,,,,0.00144,0.00228,0.00302,,,,,,,,0.00146,0.00232,0.00309,,,,,,,,0.0015,0.0024,0.00322,,,,,,,,0.00129,0.00201,0.00262,,,,,,,,0.0013,0.00205,0.00268,,,,,,,,0.00123,0.00191,0.00249,,,,,,,,0.00133,0.0021,0.00276,,,,,,,,0.0012,0.00186,0.00241,,,,,,,,0.04408,0.04604,0.04788,,,,,,,,0.04534,0.04718,0.04888,,,,,,,,0.04942,0.05132,0.0531,,,,,,,,0.04128,0.04328,0.04518,,,,,,,,0.04813,0.04966,0.051,,,,,,,,0.04388,0.04547,0.04688,,,,,,,,0.04393,0.04538,0.04662,,,,,,,,0.04626,0.04791,0.04938,,,,,,,,0.04574,0.04713,0.04832,,,,,,,,0.00817,0.00989,0.01152,,,,,,,,0.00821,0.00984,0.01135,,,,,,,,0.00878,0.01046,0.01203,,,,,,,,0.00784,0.00961,0.01129,,,,,,,,0.00826,0.00962,0.0108,,,,,,,,0.00777,0.00917,0.01042,,,,,,,,0.00762,0.0089,0.01,,,,,,,,0.00813,0.00959,0.01089,,,,,,,,0.0078,0.00904,0.01009,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00181,0.00183,0.00185,,,,,,,,0.00184,0.00185,0.00188,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00181,0.00182,0.00184,,,,,,,,0.00182,0.00183,0.00185,,,,,,,,0.0018,0.00181,0.00183,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.08378,0.10766,0.16165,,,,,,,,0.0746,0.09598,0.14711,,,,,,,,0.08058,0.10717,0.16434,,,,,,,,0.0883,0.11788,0.17816,,,,,,,,0.05379,0.07589,0.12827,,,,,,,,0.05784,0.08108,0.13384,,,,,,,,0.052,0.07219,0.122,,,,,,,,0.06733,0.09193,0.14743,,,,,,,,0.05183,0.0719,0.12162 +Large SUV,E10,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00115,,,,,,,,,0.00072,0.0012,,,,,,,,,0.00077,0.00129,,,,,,,,,0.00052,0.00086,,,,,,,,,0.00056,0.00092,,,,,,,,,0.00048,0.00079,,,,,,,,,0.00059,0.00097,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00821,0.0063,,,,,,,,,0.00707,0.00551,,,,,,,,,0.00765,0.00613,,,,,,,,,0.00864,0.0069,,,,,,,,,0.00412,0.00374,,,,,,,,,0.00477,0.00422,,,,,,,,,0.00396,0.00363,,,,,,,,,0.00558,0.00468,,,,,,,,,0.00405,0.00357,,,,,,,,,1.03629,1.52874,,,,,,,,,0.98618,1.47623,,,,,,,,,1.05127,1.64267,,,,,,,,,1.14045,1.78812,,,,,,,,,0.84562,1.43146,,,,,,,,,0.89592,1.50455,,,,,,,,,0.87316,1.47423,,,,,,,,,0.96228,1.54316,,,,,,,,,0.83028,1.34093,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04452,0.06646,,,,,,,,,0.04269,0.06398,,,,,,,,,0.04309,0.06772,,,,,,,,,0.04563,0.07267,,,,,,,,,0.03418,0.0573,,,,,,,,,0.03746,0.06183,,,,,,,,,0.03505,0.0583,,,,,,,,,0.04156,0.06672,,,,,,,,,0.03648,0.05848,,,,,,,,,0.00149,0.00238,,,,,,,,,0.00144,0.00228,,,,,,,,,0.00146,0.00232,,,,,,,,,0.00151,0.00241,,,,,,,,,0.00129,0.00202,,,,,,,,,0.00131,0.00205,,,,,,,,,0.00123,0.00192,,,,,,,,,0.00134,0.0021,,,,,,,,,0.0012,0.00186,,,,,,,,,0.04409,0.04605,,,,,,,,,0.04534,0.04719,,,,,,,,,0.04943,0.05133,,,,,,,,,0.04129,0.04329,,,,,,,,,0.04814,0.04967,,,,,,,,,0.04389,0.04548,,,,,,,,,0.04394,0.04539,,,,,,,,,0.04627,0.04792,,,,,,,,,0.04574,0.04713,,,,,,,,,0.00817,0.00991,,,,,,,,,0.00822,0.00985,,,,,,,,,0.00878,0.01047,,,,,,,,,0.00785,0.00962,,,,,,,,,0.00826,0.00962,,,,,,,,,0.00777,0.00918,,,,,,,,,0.00763,0.00891,,,,,,,,,0.00813,0.00959,,,,,,,,,0.0078,0.00904,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00181,0.00183,,,,,,,,,0.00184,0.00185,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00181,0.00182,,,,,,,,,0.00182,0.00183,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00166,0.00167,,,,,,,,,0.08373,0.10763,,,,,,,,,0.07456,0.09596,,,,,,,,,0.08052,0.10713,,,,,,,,,0.08827,0.11791,,,,,,,,,0.05381,0.07595,,,,,,,,,0.05785,0.08112,,,,,,,,,0.05203,0.07227,,,,,,,,,0.06747,0.09201,,,,,,,,,0.05181,0.07191 +Large SUV,E10,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00072,,,,,,,,,,0.00078,,,,,,,,,,0.00053,,,,,,,,,,0.00056,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.00046,,,,,,,,,,0.0082,,,,,,,,,,0.00707,,,,,,,,,,0.00764,,,,,,,,,,0.00863,,,,,,,,,,0.00411,,,,,,,,,,0.00476,,,,,,,,,,0.00396,,,,,,,,,,0.00558,,,,,,,,,,0.00405,,,,,,,,,,1.03626,,,,,,,,,,0.98648,,,,,,,,,,1.05157,,,,,,,,,,1.14126,,,,,,,,,,0.84688,,,,,,,,,,0.89708,,,,,,,,,,0.87452,,,,,,,,,,0.963,,,,,,,,,,0.83048,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.04457,,,,,,,,,,0.04274,,,,,,,,,,0.04315,,,,,,,,,,0.04571,,,,,,,,,,0.03421,,,,,,,,,,0.03751,,,,,,,,,,0.0351,,,,,,,,,,0.0416,,,,,,,,,,0.03649,,,,,,,,,,0.0015,,,,,,,,,,0.00144,,,,,,,,,,0.00146,,,,,,,,,,0.00151,,,,,,,,,,0.00129,,,,,,,,,,0.00131,,,,,,,,,,0.00123,,,,,,,,,,0.00134,,,,,,,,,,0.0012,,,,,,,,,,0.0441,,,,,,,,,,0.04535,,,,,,,,,,0.04944,,,,,,,,,,0.0413,,,,,,,,,,0.04814,,,,,,,,,,0.0439,,,,,,,,,,0.04395,,,,,,,,,,0.04627,,,,,,,,,,0.04574,,,,,,,,,,0.00818,,,,,,,,,,0.00823,,,,,,,,,,0.00879,,,,,,,,,,0.00786,,,,,,,,,,0.00827,,,,,,,,,,0.00778,,,,,,,,,,0.00764,,,,,,,,,,0.00814,,,,,,,,,,0.0078,,,,,,,,,,0.0018,,,,,,,,,,0.00181,,,,,,,,,,0.00184,,,,,,,,,,0.0018,,,,,,,,,,0.00184,,,,,,,,,,0.00181,,,,,,,,,,0.00182,,,,,,,,,,0.0018,,,,,,,,,,0.00166,,,,,,,,,,0.0837,,,,,,,,,,0.07455,,,,,,,,,,0.08049,,,,,,,,,,0.08828,,,,,,,,,,0.05385,,,,,,,,,,0.05787,,,,,,,,,,0.05208,,,,,,,,,,0.06753,,,,,,,,,,0.05182 +Large SUV,E15,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.12065,,,,,,,,,,0.10162,,,,,,,,,,0.13541,,,,,,,,,,0.14182,,,,,,,,,,0.11558,,,,,,,,,,0.12745,,,,,,,,,,0.11645,,,,,,,,,,0.11186,,,,,,,,,,0.0861,,,,,,,,,,59.59238,,,,,,,,,,53.45102,,,,,,,,,,68.40019,,,,,,,,,,71.15177,,,,,,,,,,62.01726,,,,,,,,,,67.54108,,,,,,,,,,63.84635,,,,,,,,,,60.29827,,,,,,,,,,48.25039,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.67638,,,,,,,,,,5.32777,,,,,,,,,,5.89604,,,,,,,,,,6.28535,,,,,,,,,,5.8091,,,,,,,,,,6.08587,,,,,,,,,,5.82808,,,,,,,,,,6.14781,,,,,,,,,,5.10341,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02918,,,,,,,,,,0.03291,,,,,,,,,,0.04674,,,,,,,,,,0.04285,,,,,,,,,,0.03814,,,,,,,,,,0.04203,,,,,,,,,,0.03825,,,,,,,,,,0.03781,,,,,,,,,,0.01784,,,,,,,,,,4.65991,,,,,,,,,,4.17681,,,,,,,,,,5.28432,,,,,,,,,,5.49861,,,,,,,,,,5.12669,,,,,,,,,,5.34065,,,,,,,,,,5.15853,,,,,,,,,,4.96051,,,,,,,,,,3.95279,,,,,,,,, +Large SUV,E15,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.08258,0.09566,,,,,,,,,0.07687,0.08214,,,,,,,,,0.09541,0.1051,,,,,,,,,0.09851,0.11569,,,,,,,,,0.08436,0.09869,,,,,,,,,0.09003,0.1066,,,,,,,,,0.08421,0.09726,,,,,,,,,0.08236,0.09265,,,,,,,,,0.06672,0.06853,,,,,,,,,27.87856,39.02577,,,,,,,,,27.24741,36.0603,,,,,,,,,32.86673,44.83978,,,,,,,,,34.42847,47.97397,,,,,,,,,30.47994,42.13867,,,,,,,,,32.57638,45.61889,,,,,,,,,31.37145,43.51357,,,,,,,,,30.09137,42.19543,,,,,,,,,24.19631,33.19909,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.6664,5.66445,,,,,,,,,4.58673,5.3417,,,,,,,,,4.95732,5.81974,,,,,,,,,5.1898,6.32021,,,,,,,,,4.86879,5.90005,,,,,,,,,5.06929,6.13387,,,,,,,,,4.93364,5.91427,,,,,,,,,5.1693,6.18841,,,,,,,,,4.35748,5.12875,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02281,0.01172,,,,,,,,,0.02589,0.01188,,,,,,,,,0.03693,0.0123,,,,,,,,,0.03357,0.02056,,,,,,,,,0.03039,0.01212,,,,,,,,,0.03326,0.01201,,,,,,,,,0.03043,0.01648,,,,,,,,,0.0299,0.01874,,,,,,,,,0.01406,0.00689,,,,,,,,,3.22511,4.07292,,,,,,,,,3.11826,3.74208,,,,,,,,,3.75479,4.53079,,,,,,,,,3.84111,4.87321,,,,,,,,,3.62314,4.71745,,,,,,,,,3.71396,4.82907,,,,,,,,,3.61873,4.65989,,,,,,,,,3.55848,4.50338,,,,,,,,,2.92715,3.53898,,,,,,,, +Large SUV,E15,2000,0.00678,0.00997,0.02284,,,,,,,,0.00583,0.00855,0.01949,,,,,,,,0.00656,0.00964,0.0222,,,,,,,,0.00726,0.0107,0.02477,,,,,,,,0.00328,0.00477,0.01066,,,,,,,,0.00387,0.00564,0.0133,,,,,,,,0.00314,0.00456,0.01009,,,,,,,,0.00452,0.00661,0.01496,,,,,,,,0.00316,0.00458,0.01006,,,,,,,,0.04666,0.06942,0.09406,,,,,,,,0.04383,0.06659,0.08351,,,,,,,,0.05448,0.07808,0.10576,,,,,,,,0.05611,0.08266,0.10974,,,,,,,,0.04123,0.069,0.09537,,,,,,,,0.04492,0.07237,0.09994,,,,,,,,0.04076,0.06797,0.09013,,,,,,,,0.04369,0.0681,0.0881,,,,,,,,0.03483,0.05686,0.06904,,,,,,,,8.59577,13.80621,25.42879,,,,,,,,8.40494,13.67133,23.31772,,,,,,,,10.33208,16.59557,29.83902,,,,,,,,10.71726,17.14071,30.23553,,,,,,,,8.34909,14.54229,26.84265,,,,,,,,9.06002,15.50459,28.7891,,,,,,,,8.49084,14.84126,26.58304,,,,,,,,8.75648,15.02741,26.21991,,,,,,,,7.00193,12.67493,21.07122,,,,,,,,519.42675,524.09096,527.02867,,,,,,,,523.65108,528.00485,529.98667,,,,,,,,531.22032,535.80276,538.31103,,,,,,,,518.7679,523.30119,525.70058,,,,,,,,532.49042,535.74026,534.49675,,,,,,,,523.68493,527.25523,528.67382,,,,,,,,528.32762,531.44913,529.72438,,,,,,,,528.27961,532.00795,532.13864,,,,,,,,520.52036,523.96225,523.681,,,,,,,,0.05098,0.05676,0.08712,,,,,,,,0.05115,0.05691,0.08721,,,,,,,,0.05222,0.058,0.08859,,,,,,,,0.04982,0.05553,0.08539,,,,,,,,0.05194,0.0577,0.08819,,,,,,,,0.05058,0.05629,0.08637,,,,,,,,0.05098,0.05675,0.08704,,,,,,,,0.0516,0.05739,0.08788,,,,,,,,0.05194,0.05779,0.08855,,,,,,,,0.06211,0.08109,0.08468,,,,,,,,0.06218,0.08118,0.08476,,,,,,,,0.06216,0.08115,0.0847,,,,,,,,0.06184,0.08074,0.08437,,,,,,,,0.06211,0.08108,0.08464,,,,,,,,0.0619,0.08082,0.08441,,,,,,,,0.06206,0.08103,0.08462,,,,,,,,0.0622,0.08121,0.08478,,,,,,,,0.06233,0.08139,0.08495,,,,,,,,1.68898,2.38865,3.99568,,,,,,,,1.65357,2.36648,3.78631,,,,,,,,1.91637,2.61527,4.26287,,,,,,,,1.97177,2.75259,4.37505,,,,,,,,1.83094,2.58524,4.2534,,,,,,,,1.90187,2.64699,4.33135,,,,,,,,1.85911,2.62331,4.11499,,,,,,,,1.94761,2.72841,4.31954,,,,,,,,1.65012,2.35186,3.6239,,,,,,,,0.01478,0.02069,0.04094,,,,,,,,0.01296,0.01811,0.03568,,,,,,,,0.01413,0.01978,0.03945,,,,,,,,0.0154,0.0216,0.04334,,,,,,,,0.00785,0.0109,0.02112,,,,,,,,0.00902,0.01256,0.02552,,,,,,,,0.00767,0.01064,0.02045,,,,,,,,0.01034,0.01442,0.02822,,,,,,,,0.00781,0.01083,0.02057,,,,,,,,0.0726,0.08533,0.13153,,,,,,,,0.07004,0.08102,0.12091,,,,,,,,0.07691,0.08889,0.1338,,,,,,,,0.07147,0.0849,0.13452,,,,,,,,0.06212,0.06846,0.09124,,,,,,,,0.06043,0.06778,0.09703,,,,,,,,0.05763,0.06384,0.08552,,,,,,,,0.06558,0.07426,0.10523,,,,,,,,0.05958,0.06591,0.08744,,,,,,,,0.0334,0.04466,0.08553,,,,,,,,0.03007,0.03979,0.07507,,,,,,,,0.0331,0.0437,0.08343,,,,,,,,0.03455,0.04644,0.09033,,,,,,,,0.02063,0.02625,0.04641,,,,,,,,0.02241,0.02891,0.05464,,,,,,,,0.01974,0.02524,0.04442,,,,,,,,0.02522,0.0329,0.0603,,,,,,,,0.02005,0.02566,0.0447,,,,,,,,0.02439,0.01184,0.01072,,,,,,,,0.02773,0.01204,0.01078,,,,,,,,0.03954,0.01246,0.01095,,,,,,,,0.036,0.02087,0.01069,,,,,,,,0.0327,0.01239,0.01087,,,,,,,,0.03579,0.01225,0.01075,,,,,,,,0.0328,0.01687,0.01077,,,,,,,,0.0321,0.0191,0.0097,,,,,,,,0.01508,0.007,0.00504,,,,,,,,1.10156,1.83782,3.30219,,,,,,,,1.08213,1.8141,3.02223,,,,,,,,1.30177,2.09502,3.73038,,,,,,,,1.34769,2.20316,3.83672,,,,,,,,1.14073,2.01504,3.69944,,,,,,,,1.1838,2.05474,3.82289,,,,,,,,1.13686,1.98429,3.53952,,,,,,,,1.19425,2.00379,3.47845,,,,,,,,0.9625,1.68027,2.78972,,,,,,, +Large SUV,E15,2005,0.00224,0.00371,0.00548,0.01393,,,,,,,0.00201,0.00319,0.0047,0.01197,,,,,,,0.00247,0.00285,0.00417,0.01341,,,,,,,0.00259,0.00381,0.00565,0.01496,,,,,,,0.00129,0.00208,0.00304,0.00685,,,,,,,0.00152,0.00213,0.00313,0.00799,,,,,,,0.00123,0.00189,0.00275,0.00633,,,,,,,0.00168,0.00238,0.00348,0.0092,,,,,,,0.00109,0.00162,0.00233,0.00617,,,,,,,0.02784,0.02128,0.02252,0.05038,,,,,,,0.02563,0.01928,0.02097,0.04585,,,,,,,0.02904,0.02104,0.02287,0.05848,,,,,,,0.02944,0.02457,0.02496,0.06071,,,,,,,0.01845,0.0161,0.01855,0.04944,,,,,,,0.02058,0.01714,0.01968,0.05264,,,,,,,0.01773,0.01659,0.01808,0.04679,,,,,,,0.02212,0.0186,0.01914,0.04835,,,,,,,0.01469,0.01239,0.01402,0.03844,,,,,,,4.4151,6.66009,8.6055,15.27794,,,,,,,4.33412,6.60611,8.69689,14.68121,,,,,,,4.84393,7.77284,10.37328,17.95611,,,,,,,4.97685,8.44323,10.41162,18.77986,,,,,,,4.40055,7.19572,9.71333,16.65928,,,,,,,4.55213,7.49856,10.25832,17.36852,,,,,,,4.50383,7.74561,9.79538,16.72235,,,,,,,4.60901,7.99681,9.76447,16.7489,,,,,,,3.63511,6.67418,8.76272,14.44939,,,,,,,544.39318,547.03541,552.96372,553.50631,,,,,,,549.15818,551.61044,557.11807,556.71381,,,,,,,556.66504,559.24687,565.03727,565.17411,,,,,,,544.08328,546.6066,552.40283,552.59409,,,,,,,559.60243,561.37696,565.41325,561.80501,,,,,,,550.23082,552.20635,558.50072,553.97491,,,,,,,555.6476,557.33996,561.20779,557.21621,,,,,,,554.72399,556.7937,561.46575,559.22916,,,,,,,546.751,548.70275,552.97175,550.06822,,,,,,,0.01007,0.0108,0.01272,0.04015,,,,,,,0.01009,0.01082,0.01273,0.04016,,,,,,,0.01026,0.01099,0.01291,0.04072,,,,,,,0.00986,0.01058,0.01248,0.0394,,,,,,,0.01021,0.01094,0.01286,0.04055,,,,,,,0.00998,0.01071,0.01261,0.03976,,,,,,,0.01006,0.01079,0.01271,0.0401,,,,,,,0.01017,0.0109,0.01282,0.04045,,,,,,,0.01024,0.01098,0.01293,0.04078,,,,,,,0.02495,0.0287,0.03537,0.05091,,,,,,,0.02498,0.02873,0.03541,0.05096,,,,,,,0.02497,0.02872,0.0354,0.05094,,,,,,,0.02485,0.02858,0.03522,0.05071,,,,,,,0.02495,0.0287,0.03537,0.0509,,,,,,,0.02488,0.02861,0.03525,0.05075,,,,,,,0.02494,0.02868,0.03535,0.05088,,,,,,,0.02499,0.02874,0.03542,0.05098,,,,,,,0.02504,0.0288,0.0355,0.05109,,,,,,,0.62564,0.99522,1.29585,1.98078,,,,,,,0.61402,0.97385,1.29323,1.91655,,,,,,,0.66538,1.07873,1.41171,2.1752,,,,,,,0.66465,1.18569,1.47516,2.26824,,,,,,,0.62303,1.04246,1.37897,2.15195,,,,,,,0.6449,1.07929,1.41423,2.19415,,,,,,,0.63308,1.09505,1.37762,2.10288,,,,,,,0.67963,1.13893,1.40583,2.21675,,,,,,,0.53278,0.76137,1.00009,1.91448,,,,,,,0.00504,0.00812,0.01102,0.02474,,,,,,,0.00462,0.00723,0.0098,0.0218,,,,,,,0.00534,0.0067,0.00903,0.0237,,,,,,,0.00552,0.00818,0.01113,0.02588,,,,,,,0.00324,0.00511,0.00696,0.01373,,,,,,,0.00364,0.00523,0.00715,0.01551,,,,,,,0.00315,0.00482,0.00654,0.01308,,,,,,,0.00398,0.00575,0.00777,0.01747,,,,,,,0.00291,0.00437,0.00588,0.01294,,,,,,,0.05163,0.05814,0.06469,0.09556,,,,,,,0.05211,0.05754,0.06329,0.09019,,,,,,,0.05783,0.0604,0.06557,0.09875,,,,,,,0.04999,0.05557,0.06218,0.09559,,,,,,,0.05228,0.0561,0.06012,0.07502,,,,,,,0.04887,0.05207,0.05643,0.07479,,,,,,,0.04801,0.05141,0.05508,0.06939,,,,,,,0.0519,0.05553,0.05992,0.08152,,,,,,,0.04928,0.05222,0.05543,0.0709,,,,,,,0.01483,0.02059,0.02639,0.05371,,,,,,,0.01419,0.01901,0.02409,0.04789,,,,,,,0.01621,0.01849,0.02306,0.05241,,,,,,,0.01554,0.02048,0.02633,0.05588,,,,,,,0.01192,0.01531,0.01886,0.03205,,,,,,,0.01217,0.015,0.01872,0.0351,,,,,,,0.01122,0.01423,0.01748,0.03015,,,,,,,0.01311,0.01632,0.02021,0.03932,,,,,,,0.01093,0.01353,0.01637,0.03006,,,,,,,0.02556,0.01236,0.01125,0.00375,,,,,,,0.02907,0.01257,0.01133,0.00377,,,,,,,0.04144,0.01301,0.01149,0.00383,,,,,,,0.03776,0.02181,0.01124,0.00375,,,,,,,0.03437,0.01298,0.0115,0.00381,,,,,,,0.0376,0.01283,0.01136,0.00376,,,,,,,0.03449,0.0177,0.01141,0.00378,,,,,,,0.03369,0.01999,0.01023,0.00374,,,,,,,0.01583,0.00732,0.00532,0.00345,,,,,,,0.43447,0.531,0.7254,1.8609,,,,,,,0.41218,0.50223,0.69293,1.7482,,,,,,,0.46788,0.54718,0.75455,2.122,,,,,,,0.47923,0.62123,0.81272,2.18144,,,,,,,0.35141,0.47581,0.6755,1.99324,,,,,,,0.37296,0.48802,0.70705,2.03795,,,,,,,0.34265,0.4805,0.65593,1.9116,,,,,,,0.40921,0.53849,0.71204,1.98032,,,,,,,0.29202,0.39475,0.55528,1.6373,,,,,, +Large SUV,E15,2010,,0.00166,0.00295,0.00438,0.01081,,,,,,,0.00145,0.00257,0.00387,0.00937,,,,,,,0.00128,0.00225,0.0042,0.01036,,,,,,,0.00171,0.00305,0.00465,0.01154,,,,,,,0.00105,0.00182,0.00257,0.00565,,,,,,,0.00105,0.00182,0.00283,0.00645,,,,,,,0.00096,0.00165,0.00231,0.00512,,,,,,,0.00112,0.00197,0.00309,0.00726,,,,,,,0.00081,0.00139,0.00217,0.00488,,,,,,,0.02001,0.01826,0.01552,0.03279,,,,,,,0.01761,0.01677,0.0142,0.03035,,,,,,,0.01849,0.01845,0.016,0.03709,,,,,,,0.02239,0.02068,0.01769,0.03936,,,,,,,0.01324,0.01522,0.01264,0.03059,,,,,,,0.01392,0.01589,0.01329,0.03253,,,,,,,0.0136,0.01497,0.01242,0.0293,,,,,,,0.01584,0.01541,0.01359,0.03101,,,,,,,0.01051,0.01125,0.01171,0.02544,,,,,,,2.95326,4.7524,6.25649,10.91147,,,,,,,2.84207,4.75451,6.20872,10.73036,,,,,,,3.26228,5.54729,7.03116,12.98077,,,,,,,3.5068,5.61418,7.56137,13.75476,,,,,,,2.70871,5.01628,6.69247,12.12347,,,,,,,2.87181,5.34479,6.89196,12.64055,,,,,,,2.91924,5.09833,6.84483,12.25959,,,,,,,3.18676,5.16194,6.88171,12.28225,,,,,,,2.60163,4.58049,6.15705,10.73228,,,,,,,516.83349,519.09937,523.84119,544.87964,,,,,,,521.37604,523.34975,527.61558,547.87014,,,,,,,528.50488,530.63568,535.19412,556.21225,,,,,,,516.51536,518.67635,523.2822,544.06459,,,,,,,531.33983,532.31245,534.9316,552.33741,,,,,,,522.44566,525.43011,526.8089,544.88158,,,,,,,527.59534,528.46326,530.90767,547.87909,,,,,,,526.68943,528.09633,531.42638,550.05078,,,,,,,519.14926,520.34582,523.24418,540.82102,,,,,,,0.00953,0.01073,0.01287,0.02506,,,,,,,0.00954,0.01074,0.01288,0.02505,,,,,,,0.00971,0.01092,0.01306,0.02537,,,,,,,0.00933,0.01052,0.01263,0.02461,,,,,,,0.00966,0.01087,0.013,0.02527,,,,,,,0.00944,0.01064,0.01275,0.02481,,,,,,,0.00952,0.01072,0.01286,0.02502,,,,,,,0.00962,0.01083,0.01297,0.02522,,,,,,,0.00969,0.01091,0.01307,0.02543,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.0188,0.02173,0.02737,0.03605,,,,,,,0.0188,0.02172,0.02737,0.03604,,,,,,,0.0187,0.02161,0.02723,0.03586,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.01872,0.02163,0.02725,0.03589,,,,,,,0.01877,0.02169,0.02732,0.03598,,,,,,,0.01881,0.02173,0.02738,0.03606,,,,,,,0.01885,0.02178,0.02744,0.03614,,,,,,,0.2189,0.35561,0.32344,1.00662,,,,,,,0.21138,0.3537,0.31973,0.98852,,,,,,,0.21828,0.38094,0.34236,1.12858,,,,,,,0.23604,0.40051,0.36087,1.18948,,,,,,,0.20437,0.36567,0.3257,1.1077,,,,,,,0.21132,0.37825,0.33621,1.1332,,,,,,,0.21483,0.36779,0.32837,1.08977,,,,,,,0.23074,0.37961,0.35579,1.1482,,,,,,,0.15716,0.26798,0.32114,1.00035,,,,,,,0.00301,0.00509,0.00712,0.01775,,,,,,,0.00281,0.00473,0.00664,0.01592,,,,,,,0.00256,0.00429,0.00692,0.01704,,,,,,,0.00303,0.00513,0.00734,0.01846,,,,,,,0.00246,0.00407,0.00541,0.011,,,,,,,0.0024,0.00395,0.00562,0.01201,,,,,,,0.00234,0.00384,0.0051,0.01035,,,,,,,0.00245,0.00407,0.00586,0.01314,,,,,,,0.00208,0.00342,0.00489,0.01008,,,,,,,0.04752,0.05224,0.05696,0.08086,,,,,,,0.0484,0.05268,0.05707,0.07783,,,,,,,0.05185,0.05568,0.06186,0.08466,,,,,,,0.04478,0.04956,0.05472,0.07989,,,,,,,0.05063,0.05406,0.05699,0.06929,,,,,,,0.04622,0.04976,0.05328,0.06743,,,,,,,0.04628,0.04947,0.05218,0.06366,,,,,,,0.04869,0.05219,0.05622,0.07238,,,,,,,0.04758,0.05036,0.05357,0.06486,,,,,,,0.0112,0.01538,0.01955,0.04069,,,,,,,0.01092,0.01471,0.01859,0.03696,,,,,,,0.01092,0.01432,0.01978,0.03995,,,,,,,0.01094,0.01517,0.01973,0.04199,,,,,,,0.01047,0.01351,0.0161,0.02697,,,,,,,0.00983,0.01282,0.01608,0.02859,,,,,,,0.0097,0.01252,0.01492,0.02508,,,,,,,0.01028,0.01337,0.01694,0.03123,,,,,,,0.00943,0.01189,0.01473,0.02472,,,,,,,0.01168,0.01056,0.00355,0.00369,,,,,,,0.01189,0.01064,0.00358,0.00371,,,,,,,0.0123,0.01079,0.00363,0.00377,,,,,,,0.02062,0.01055,0.00355,0.00369,,,,,,,0.01229,0.01083,0.00363,0.00374,,,,,,,0.01214,0.01069,0.00357,0.00369,,,,,,,0.01675,0.01075,0.0036,0.00371,,,,,,,0.01891,0.00962,0.00355,0.00367,,,,,,,0.00692,0.005,0.00328,0.00339,,,,,,,0.17178,0.25154,0.35865,1.23069,,,,,,,0.15323,0.23035,0.33337,1.17682,,,,,,,0.16318,0.25233,0.37023,1.36693,,,,,,,0.19271,0.28241,0.4026,1.41661,,,,,,,0.12259,0.20996,0.31874,1.26856,,,,,,,0.12616,0.22226,0.3234,1.28928,,,,,,,0.12349,0.20491,0.31128,1.22487,,,,,,,0.14922,0.22866,0.34822,1.29549,,,,,,,0.10966,0.17835,0.30063,1.11673,,,,, +Large SUV,E15,2015,,,0.00133,0.00233,0.0036,0.00745,,,,,,,0.0012,0.00213,0.00327,0.00662,,,,,,,0.00105,0.00225,0.00348,0.00716,,,,,,,0.00135,0.00242,0.00375,0.00785,,,,,,,0.00093,0.00157,0.00237,0.00439,,,,,,,0.00091,0.00169,0.00256,0.00486,,,,,,,0.00086,0.00144,0.00216,0.00396,,,,,,,0.00096,0.00178,0.00271,0.00528,,,,,,,0.00072,0.00136,0.00202,0.00371,,,,,,,0.015,0.01151,0.01233,0.01816,,,,,,,0.01381,0.01069,0.01161,0.01699,,,,,,,0.01393,0.01192,0.01298,0.0196,,,,,,,0.01559,0.01308,0.01419,0.02128,,,,,,,0.01094,0.00974,0.01113,0.01634,,,,,,,0.01156,0.01027,0.01165,0.01724,,,,,,,0.01095,0.00965,0.01106,0.01604,,,,,,,0.01177,0.0104,0.01158,0.01703,,,,,,,0.00874,0.00915,0.01035,0.01469,,,,,,,2.14858,3.87322,5.26793,7.7213,,,,,,,2.16115,3.89332,5.32271,7.7322,,,,,,,2.3556,4.30818,6.03287,9.06332,,,,,,,2.39513,4.63612,6.50193,9.70226,,,,,,,2.13134,4.26836,6.02256,8.81099,,,,,,,2.25481,4.36052,6.16675,9.10458,,,,,,,2.19432,4.38766,6.1745,9.00283,,,,,,,2.23866,4.34703,6.04454,8.88189,,,,,,,2.01498,3.94723,5.44128,7.91035,,,,,,,417.53748,419.96275,423.92135,464.77929,,,,,,,421.04661,423.19792,426.77245,467.19115,,,,,,,426.87244,429.18435,432.99983,474.34402,,,,,,,417.26701,419.6063,423.46225,464.10738,,,,,,,428.5573,429.76455,432.01165,470.53769,,,,,,,422.94251,423.03662,425.66968,464.35855,,,,,,,425.51324,426.6195,428.72824,466.74582,,,,,,,425.03789,426.65293,429.47363,468.79458,,,,,,,418.79749,420.18389,422.64161,460.77193,,,,,,,0.00577,0.0066,0.0078,0.01287,,,,,,,0.00578,0.0066,0.0078,0.01286,,,,,,,0.00587,0.0067,0.00791,0.013,,,,,,,0.00565,0.00647,0.00766,0.01264,,,,,,,0.00585,0.00667,0.00788,0.01296,,,,,,,0.00572,0.00653,0.00773,0.01274,,,,,,,0.00577,0.00659,0.00779,0.01285,,,,,,,0.00582,0.00665,0.00786,0.01294,,,,,,,0.00587,0.0067,0.00792,0.01305,,,,,,,0.01869,0.02141,0.02733,0.02862,,,,,,,0.01871,0.02144,0.02737,0.02866,,,,,,,0.01871,0.02143,0.02736,0.02865,,,,,,,0.01861,0.02133,0.02722,0.02851,,,,,,,0.01869,0.02141,0.02734,0.02862,,,,,,,0.01863,0.02135,0.02725,0.02853,,,,,,,0.01868,0.0214,0.02732,0.02861,,,,,,,0.01872,0.02145,0.02738,0.02867,,,,,,,0.01876,0.02149,0.02743,0.02873,,,,,,,0.13741,0.17005,0.25327,0.45796,,,,,,,0.13682,0.16738,0.25004,0.45233,,,,,,,0.13709,0.1809,0.26855,0.50246,,,,,,,0.14367,0.19289,0.28614,0.53383,,,,,,,0.12619,0.16847,0.25324,0.48226,,,,,,,0.13238,0.17591,0.26352,0.49778,,,,,,,0.12929,0.17023,0.25622,0.48157,,,,,,,0.13688,0.18654,0.27802,0.51546,,,,,,,0.09874,0.16678,0.24924,0.45662,,,,,,,0.00261,0.0044,0.00637,0.01193,,,,,,,0.00249,0.00421,0.00607,0.01105,,,,,,,0.00227,0.00431,0.00623,0.01155,,,,,,,0.0026,0.00446,0.00647,0.01226,,,,,,,0.00227,0.0037,0.00522,0.00867,,,,,,,0.00219,0.00377,0.00535,0.00911,,,,,,,0.00216,0.00352,0.00495,0.00814,,,,,,,0.00221,0.00386,0.00549,0.00958,,,,,,,0.00193,0.00339,0.00475,0.00782,,,,,,,0.04653,0.05047,0.05497,0.06791,,,,,,,0.0476,0.05136,0.05555,0.06705,,,,,,,0.05113,0.05565,0.06003,0.07242,,,,,,,0.04369,0.0478,0.05243,0.06598,,,,,,,0.05018,0.05317,0.05648,0.06419,,,,,,,0.04592,0.0491,0.05258,0.06106,,,,,,,0.04587,0.0487,0.05178,0.05884,,,,,,,0.0481,0.05163,0.05526,0.06453,,,,,,,0.04723,0.05027,0.0532,0.05995,,,,,,,0.01033,0.01381,0.0178,0.02925,,,,,,,0.01022,0.01354,0.01725,0.02742,,,,,,,0.01029,0.01429,0.01817,0.02912,,,,,,,0.00997,0.01361,0.01771,0.0297,,,,,,,0.01007,0.01272,0.01565,0.02247,,,,,,,0.00942,0.01238,0.01546,0.02296,,,,,,,0.00934,0.01184,0.01457,0.02082,,,,,,,0.00976,0.01288,0.01609,0.02429,,,,,,,0.00912,0.01181,0.01441,0.02038,,,,,,,0.00849,0.00285,0.00287,0.00315,,,,,,,0.00856,0.00287,0.00289,0.00317,,,,,,,0.00868,0.00291,0.00294,0.00322,,,,,,,0.00849,0.00284,0.00287,0.00315,,,,,,,0.00872,0.00291,0.00293,0.00319,,,,,,,0.0086,0.00287,0.00289,0.00315,,,,,,,0.00865,0.00289,0.00291,0.00316,,,,,,,0.00774,0.00285,0.00287,0.00313,,,,,,,0.00402,0.00263,0.00265,0.00289,,,,,,,0.12646,0.18055,0.29518,0.71847,,,,,,,0.11768,0.16975,0.28212,0.69453,,,,,,,0.1217,0.18622,0.31,0.76526,,,,,,,0.13326,0.20057,0.33059,0.79581,,,,,,,0.10147,0.16347,0.2886,0.7248,,,,,,,0.10781,0.16581,0.28995,0.72519,,,,,,,0.10063,0.16078,0.28378,0.70755,,,,,,,0.11343,0.1783,0.30479,0.75197,,,,,,,0.09157,0.1552,0.27326,0.68119,,,, +Large SUV,E15,2020,,,,0.00118,0.00201,0.00285,0.00571,,,,,,,0.00109,0.00184,0.0026,0.00514,,,,,,,0.00114,0.00195,0.00276,0.0055,,,,,,,0.00122,0.00208,0.00296,0.00597,,,,,,,0.00083,0.00138,0.0019,0.00356,,,,,,,0.00088,0.00147,0.00205,0.0039,,,,,,,0.00076,0.00126,0.00173,0.00322,,,,,,,0.00092,0.00155,0.00216,0.00417,,,,,,,0.00072,0.00119,0.00163,0.003,,,,,,,0.01138,0.00976,0.00969,0.01323,,,,,,,0.01028,0.00897,0.009,0.01232,,,,,,,0.01079,0.01,0.01004,0.01416,,,,,,,0.01187,0.01102,0.01104,0.0155,,,,,,,0.00749,0.00779,0.00811,0.01165,,,,,,,0.0081,0.00832,0.00861,0.01234,,,,,,,0.00739,0.0077,0.00803,0.01148,,,,,,,0.00883,0.0085,0.00868,0.01225,,,,,,,0.00738,0.00728,0.00752,0.01052,,,,,,,1.75346,2.70311,3.40415,5.23717,,,,,,,1.73504,2.69294,3.40028,5.23739,,,,,,,1.8221,2.98023,3.84322,6.16501,,,,,,,1.9638,3.22016,4.16746,6.64494,,,,,,,1.68648,2.87426,3.71799,5.95641,,,,,,,1.73449,2.95563,3.83734,6.18761,,,,,,,1.74446,2.95795,3.82139,6.10522,,,,,,,1.80599,2.96455,3.7956,6.01734,,,,,,,1.63703,2.67087,3.38976,5.31156,,,,,,,357.91079,360.37415,364.37202,397.59847,,,,,,,360.76828,362.99831,366.6542,399.45254,,,,,,,365.83607,368.21014,372.08895,405.66982,,,,,,,357.66181,360.05112,363.95662,397.00389,,,,,,,366.69938,368.12354,370.59162,401.61394,,,,,,,360.86399,362.51937,365.32828,396.56361,,,,,,,364.05649,365.39199,367.73176,398.33068,,,,,,,363.90252,365.67487,368.65588,400.42854,,,,,,,358.41105,359.98073,362.62781,393.36751,,,,,,,0.00591,0.00669,0.00786,0.0106,,,,,,,0.00592,0.00669,0.00786,0.01059,,,,,,,0.00602,0.00679,0.00797,0.0107,,,,,,,0.0058,0.00656,0.00772,0.01041,,,,,,,0.00599,0.00676,0.00793,0.01066,,,,,,,0.00586,0.00662,0.00779,0.01049,,,,,,,0.00591,0.00668,0.00785,0.01058,,,,,,,0.00597,0.00674,0.00792,0.01065,,,,,,,0.00601,0.00679,0.00798,0.01075,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01873,0.02159,0.02737,0.02737,,,,,,,0.01872,0.02158,0.02736,0.02736,,,,,,,0.01863,0.02148,0.02723,0.02723,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01865,0.0215,0.02725,0.02725,,,,,,,0.0187,0.02155,0.02732,0.02732,,,,,,,0.01874,0.0216,0.02738,0.02738,,,,,,,0.01878,0.02164,0.02744,0.02744,,,,,,,0.09268,0.15258,0.20516,0.28869,,,,,,,0.09124,0.15001,0.20209,0.28435,,,,,,,0.09213,0.16143,0.21602,0.3109,,,,,,,0.09704,0.17279,0.23109,0.3327,,,,,,,0.08183,0.14903,0.20103,0.29187,,,,,,,0.08636,0.15649,0.21065,0.30458,,,,,,,0.0838,0.15112,0.20417,0.29404,,,,,,,0.09474,0.16638,0.22324,0.31878,,,,,,,0.08605,0.14846,0.19968,0.28245,,,,,,,0.00236,0.00382,0.00507,0.00903,,,,,,,0.00227,0.00367,0.00484,0.00849,,,,,,,0.00231,0.00374,0.00496,0.0088,,,,,,,0.00238,0.00386,0.00515,0.00923,,,,,,,0.00203,0.00323,0.00418,0.00701,,,,,,,0.00206,0.00329,0.00429,0.00728,,,,,,,0.00194,0.00308,0.00396,0.00659,,,,,,,0.0021,0.00336,0.00439,0.00753,,,,,,,0.00187,0.00296,0.00381,0.00631,,,,,,,0.04595,0.04919,0.05208,0.0614,,,,,,,0.04711,0.05017,0.05285,0.06136,,,,,,,0.05126,0.05442,0.05722,0.06624,,,,,,,0.04318,0.04648,0.04946,0.05913,,,,,,,0.04967,0.05221,0.05429,0.06061,,,,,,,0.04546,0.04809,0.0503,0.05706,,,,,,,0.0454,0.04778,0.04972,0.05553,,,,,,,0.04787,0.05058,0.05289,0.06004,,,,,,,0.04711,0.0494,0.05124,0.05675,,,,,,,0.00982,0.01268,0.01524,0.02349,,,,,,,0.00979,0.01249,0.01486,0.02239,,,,,,,0.0104,0.0132,0.01568,0.02366,,,,,,,0.00952,0.01245,0.01508,0.02363,,,,,,,0.00962,0.01187,0.01371,0.0193,,,,,,,0.00917,0.01149,0.01344,0.01942,,,,,,,0.00892,0.01103,0.01275,0.01789,,,,,,,0.00955,0.01195,0.01399,0.02032,,,,,,,0.00902,0.01104,0.01267,0.01755,,,,,,,0.00243,0.00244,0.00247,0.0027,,,,,,,0.00245,0.00246,0.00249,0.00271,,,,,,,0.00248,0.0025,0.00252,0.00275,,,,,,,0.00242,0.00244,0.00247,0.00269,,,,,,,0.00249,0.0025,0.00251,0.00272,,,,,,,0.00245,0.00246,0.00248,0.00269,,,,,,,0.00247,0.00248,0.00249,0.0027,,,,,,,0.00243,0.00244,0.00246,0.00267,,,,,,,0.00225,0.00226,0.00227,0.00247,,,,,,,0.1078,0.15202,0.23173,0.55538,,,,,,,0.09925,0.14089,0.21806,0.5363,,,,,,,0.10524,0.1558,0.24132,0.58563,,,,,,,0.11342,0.16861,0.25857,0.60661,,,,,,,0.08173,0.12938,0.21272,0.55633,,,,,,,0.08456,0.13331,0.21649,0.5548,,,,,,,0.08029,0.12598,0.20676,0.54238,,,,,,,0.09531,0.14449,0.2298,0.57712,,,,,,,0.07898,0.12217,0.20051,0.5296,,, +Large SUV,E15,2025,,,,,0.00078,0.00129,0.00182,0.00409,,,,,,,0.00071,0.00118,0.00166,0.0037,,,,,,,0.00075,0.00125,0.00176,0.00395,,,,,,,0.0008,0.00133,0.00189,0.00426,,,,,,,0.00054,0.00088,0.00122,0.00259,,,,,,,0.00058,0.00094,0.00131,0.00283,,,,,,,0.0005,0.00081,0.00111,0.00234,,,,,,,0.00061,0.00099,0.00138,0.00302,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00887,0.00699,0.00677,0.00997,,,,,,,0.00775,0.00621,0.00607,0.00912,,,,,,,0.00832,0.00693,0.00678,0.01054,,,,,,,0.00932,0.00774,0.00755,0.01162,,,,,,,0.00483,0.00457,0.0047,0.00803,,,,,,,0.00548,0.00506,0.00515,0.00867,,,,,,,0.00468,0.00445,0.00459,0.00786,,,,,,,0.00625,0.00543,0.00544,0.00875,,,,,,,0.0047,0.00426,0.00436,0.0072,,,,,,,1.15248,1.69392,2.15677,3.61217,,,,,,,1.10944,1.6495,2.10948,3.57126,,,,,,,1.17834,1.83578,2.39212,4.23238,,,,,,,1.28025,2.00064,2.61454,4.5877,,,,,,,0.98945,1.64607,2.16823,3.95008,,,,,,,1.03885,1.7203,2.27074,4.14298,,,,,,,1.02242,1.69536,2.23069,4.05113,,,,,,,1.109,1.75818,2.2836,4.05208,,,,,,,0.97386,1.5477,1.99585,3.52701,,,,,,,294.61925,296.12761,299.04954,334.68556,,,,,,,296.83595,298.13998,300.75261,335.99998,,,,,,,301.07455,302.49404,305.29706,341.35366,,,,,,,294.40087,295.84827,298.69212,334.16079,,,,,,,301.26286,301.86726,303.41114,336.99134,,,,,,,296.61122,297.42381,299.28242,333.01626,,,,,,,299.05874,299.5917,301.02822,334.17656,,,,,,,299.15832,300.06538,302.07148,336.35325,,,,,,,294.50739,295.24691,296.95909,330.1732,,,,,,,0.00595,0.00668,0.00783,0.01021,,,,,,,0.00596,0.00668,0.00783,0.0102,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00583,0.00655,0.00769,0.01004,,,,,,,0.00603,0.00675,0.0079,0.01028,,,,,,,0.0059,0.00661,0.00775,0.0101,,,,,,,0.00595,0.00667,0.00782,0.01019,,,,,,,0.00601,0.00673,0.00788,0.01027,,,,,,,0.00605,0.00678,0.00795,0.01036,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01875,0.02157,0.02737,0.02736,,,,,,,0.01875,0.02156,0.02736,0.02735,,,,,,,0.01866,0.02146,0.02723,0.02722,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01867,0.02148,0.02725,0.02724,,,,,,,0.01872,0.02153,0.02732,0.02731,,,,,,,0.01876,0.02158,0.02738,0.02737,,,,,,,0.0188,0.02162,0.02744,0.02743,,,,,,,0.05663,0.08559,0.11481,0.1948,,,,,,,0.05489,0.08308,0.11175,0.19066,,,,,,,0.05562,0.08876,0.11874,0.20917,,,,,,,0.05888,0.09531,0.12737,0.22478,,,,,,,0.04614,0.07771,0.10541,0.19136,,,,,,,0.04985,0.08304,0.11214,0.20164,,,,,,,0.04727,0.07898,0.10724,0.19274,,,,,,,0.05489,0.08883,0.11948,0.21116,,,,,,,0.04872,0.07823,0.10577,0.18514,,,,,,,0.00155,0.00246,0.00326,0.00651,,,,,,,0.0015,0.00236,0.00311,0.00614,,,,,,,0.00152,0.00241,0.00319,0.00635,,,,,,,0.00157,0.00248,0.00331,0.00663,,,,,,,0.00134,0.00208,0.0027,0.0051,,,,,,,0.00136,0.00212,0.00276,0.00529,,,,,,,0.00128,0.00198,0.00256,0.00479,,,,,,,0.00138,0.00217,0.00283,0.00547,,,,,,,0.00123,0.00191,0.00246,0.00461,,,,,,,0.04421,0.04621,0.04807,0.05565,,,,,,,0.04546,0.04734,0.04906,0.05605,,,,,,,0.04956,0.05151,0.05331,0.06067,,,,,,,0.04141,0.04346,0.04536,0.05316,,,,,,,0.04823,0.04981,0.05115,0.05649,,,,,,,0.04399,0.04562,0.04704,0.05272,,,,,,,0.04403,0.04551,0.04676,0.05168,,,,,,,0.04636,0.04804,0.04952,0.05549,,,,,,,0.0458,0.04722,0.04841,0.05312,,,,,,,0.00828,0.01005,0.01169,0.0184,,,,,,,0.00832,0.00999,0.01151,0.0177,,,,,,,0.0089,0.01063,0.01222,0.01873,,,,,,,0.00796,0.00977,0.01145,0.01835,,,,,,,0.00835,0.00974,0.01093,0.01566,,,,,,,0.00787,0.00931,0.01056,0.01558,,,,,,,0.00771,0.00902,0.01013,0.01448,,,,,,,0.00822,0.0097,0.01102,0.01629,,,,,,,0.00786,0.00912,0.01017,0.01433,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00201,0.00202,0.00204,0.00228,,,,,,,0.00204,0.00205,0.00207,0.00231,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00204,0.00205,0.00206,0.00228,,,,,,,0.00201,0.00202,0.00203,0.00226,,,,,,,0.00203,0.00203,0.00204,0.00227,,,,,,,0.002,0.002,0.00202,0.00225,,,,,,,0.00185,0.00185,0.00186,0.00207,,,,,,,0.0902,0.11755,0.17575,0.47272,,,,,,,0.08107,0.10586,0.16125,0.45355,,,,,,,0.08724,0.11822,0.18025,0.49628,,,,,,,0.09508,0.12933,0.19452,0.51235,,,,,,,0.06082,0.08748,0.14504,0.46043,,,,,,,0.0647,0.09256,0.15049,0.46114,,,,,,,0.05894,0.08349,0.13828,0.44515,,,,,,,0.07454,0.10311,0.16333,0.4808,,,,,,,0.05812,0.0819,0.13602,0.43913,, +Large SUV,E15,2030,,,,,,0.00077,0.00128,0.00181,0.00333,,,,,,,0.00071,0.00118,0.00165,0.00301,,,,,,,0.00075,0.00124,0.00175,0.00321,,,,,,,0.0008,0.00133,0.00187,0.00346,,,,,,,0.00054,0.00088,0.00121,0.00212,,,,,,,0.00058,0.00094,0.0013,0.00231,,,,,,,0.0005,0.00081,0.0011,0.00192,,,,,,,0.0006,0.00099,0.00138,0.00246,,,,,,,0.00047,0.00076,0.00104,0.0018,,,,,,,0.00817,0.00624,0.00605,0.00825,,,,,,,0.00704,0.00546,0.00536,0.0074,,,,,,,0.00762,0.0061,0.00599,0.00846,,,,,,,0.00858,0.00684,0.00669,0.00939,,,,,,,0.0041,0.00371,0.00386,0.00588,,,,,,,0.00475,0.00419,0.0043,0.00646,,,,,,,0.00393,0.00358,0.00375,0.00572,,,,,,,0.00552,0.00461,0.00464,0.00674,,,,,,,0.00396,0.00347,0.00359,0.00532,,,,,,,1.01096,1.48514,1.9055,2.83083,,,,,,,0.96248,1.43428,1.84919,2.76397,,,,,,,1.02638,1.59754,2.09654,3.24715,,,,,,,1.11805,1.74459,2.29296,3.53662,,,,,,,0.8264,1.39225,1.85226,2.91835,,,,,,,0.87552,1.46364,1.94975,3.08201,,,,,,,0.85317,1.43338,1.90441,2.9962,,,,,,,0.945,1.50815,1.97656,3.0563,,,,,,,0.81791,1.31527,1.71574,2.63365,,,,,,,269.5982,272.0849,276.19714,299.20659,,,,,,,271.5686,273.87519,277.69925,300.24733,,,,,,,275.47606,277.90493,281.93183,305.10027,,,,,,,269.39329,271.82346,275.86215,298.72625,,,,,,,275.42421,277.10159,279.91653,300.68076,,,,,,,271.23305,273.08524,276.1829,297.27847,,,,,,,273.39504,274.99885,277.70142,298.13726,,,,,,,273.58337,275.53222,278.7825,300.30712,,,,,,,269.27018,271.04618,273.98937,294.64918,,,,,,,0.00595,0.00665,0.00782,0.01018,,,,,,,0.00596,0.00666,0.00782,0.01017,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00583,0.00653,0.00768,0.01,,,,,,,0.00603,0.00673,0.00789,0.01024,,,,,,,0.0059,0.00659,0.00775,0.01007,,,,,,,0.00594,0.00665,0.00781,0.01016,,,,,,,0.006,0.00671,0.00788,0.01023,,,,,,,0.00605,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01876,0.02157,0.02736,0.02736,,,,,,,0.01876,0.02156,0.02735,0.02735,,,,,,,0.01867,0.02146,0.02722,0.02722,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01868,0.02148,0.02724,0.02724,,,,,,,0.01873,0.02153,0.02731,0.02731,,,,,,,0.01877,0.02158,0.02737,0.02737,,,,,,,0.01881,0.02162,0.02743,0.02743,,,,,,,0.04553,0.06755,0.09295,0.14539,,,,,,,0.04368,0.06505,0.0899,0.14125,,,,,,,0.04417,0.06902,0.09503,0.15349,,,,,,,0.04675,0.07404,0.10183,0.16487,,,,,,,0.03498,0.05837,0.08215,0.13615,,,,,,,0.03837,0.06301,0.08806,0.14477,,,,,,,0.03587,0.05936,0.08356,0.1374,,,,,,,0.04242,0.06777,0.09424,0.15254,,,,,,,0.03716,0.05932,0.08311,0.13321,,,,,,,0.00155,0.00245,0.00325,0.00535,,,,,,,0.00149,0.00235,0.0031,0.00505,,,,,,,0.00152,0.0024,0.00317,0.00522,,,,,,,0.00156,0.00248,0.00328,0.00545,,,,,,,0.00134,0.00208,0.00268,0.00422,,,,,,,0.00136,0.00212,0.00275,0.00437,,,,,,,0.00128,0.00198,0.00254,0.00397,,,,,,,0.00138,0.00216,0.00282,0.0045,,,,,,,0.00123,0.00191,0.00246,0.00381,,,,,,,0.0442,0.0462,0.04803,0.05298,,,,,,,0.04545,0.04733,0.04903,0.05358,,,,,,,0.04955,0.0515,0.05327,0.05807,,,,,,,0.04141,0.04344,0.04531,0.05042,,,,,,,0.04823,0.0498,0.05112,0.05456,,,,,,,0.04399,0.04561,0.04701,0.05068,,,,,,,0.04403,0.0455,0.04673,0.04989,,,,,,,0.04635,0.04803,0.0495,0.05335,,,,,,,0.0458,0.04722,0.0484,0.05139,,,,,,,0.00827,0.01004,0.01166,0.01603,,,,,,,0.00832,0.00998,0.01148,0.01551,,,,,,,0.00889,0.01061,0.01219,0.01643,,,,,,,0.00795,0.00975,0.01141,0.01593,,,,,,,0.00835,0.00973,0.01091,0.01395,,,,,,,0.00786,0.0093,0.01054,0.01378,,,,,,,0.00771,0.00902,0.0101,0.0129,,,,,,,0.00821,0.0097,0.01099,0.0144,,,,,,,0.00786,0.00911,0.01016,0.01281,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00184,0.00186,0.00188,0.00204,,,,,,,0.00187,0.00188,0.00191,0.00207,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00187,0.00188,0.0019,0.00204,,,,,,,0.00184,0.00185,0.00187,0.00202,,,,,,,0.00185,0.00186,0.00188,0.00202,,,,,,,0.00183,0.00184,0.00186,0.00201,,,,,,,0.00169,0.0017,0.00172,0.00185,,,,,,,0.08535,0.10912,0.16409,0.41674,,,,,,,0.07616,0.09743,0.14952,0.39681,,,,,,,0.08228,0.10896,0.16741,0.43357,,,,,,,0.08998,0.11956,0.18078,0.44773,,,,,,,0.05548,0.0777,0.13108,0.39244,,,,,,,0.0595,0.08288,0.13667,0.39452,,,,,,,0.05354,0.0737,0.12423,0.37695,,,,,,,0.06908,0.09346,0.14947,0.41486,,,,,,,0.05274,0.07256,0.12286,0.37552, +Large SUV,E15,2035,,,,,,,0.00077,0.00127,0.00181,0.00306,,,,,,,0.00071,0.00117,0.00165,0.00277,,,,,,,0.00075,0.00123,0.00175,0.00296,,,,,,,0.0008,0.00132,0.00188,0.00319,,,,,,,0.00054,0.00087,0.00121,0.00196,,,,,,,0.00057,0.00094,0.0013,0.00213,,,,,,,0.0005,0.0008,0.0011,0.00178,,,,,,,0.0006,0.00098,0.00138,0.00227,,,,,,,0.00047,0.00076,0.00104,0.00166,,,,,,,0.00814,0.00625,0.00605,0.00763,,,,,,,0.00702,0.00547,0.00535,0.00677,,,,,,,0.0076,0.00611,0.00598,0.00767,,,,,,,0.00856,0.00685,0.00668,0.00856,,,,,,,0.00409,0.00372,0.00386,0.00507,,,,,,,0.00474,0.0042,0.00429,0.00562,,,,,,,0.00392,0.00358,0.00374,0.00491,,,,,,,0.00551,0.00462,0.00463,0.00599,,,,,,,0.00395,0.00347,0.00359,0.00463,,,,,,,1.00827,1.48136,1.90637,2.57095,,,,,,,0.96,1.42993,1.8505,2.4948,,,,,,,1.02356,1.59198,2.0985,2.9105,,,,,,,1.11473,1.73644,2.29641,3.17715,,,,,,,0.82444,1.38577,1.85511,2.56501,,,,,,,0.87335,1.45698,1.95265,2.71712,,,,,,,0.85112,1.42624,1.90762,2.63519,,,,,,,0.94269,1.50316,1.9783,2.71728,,,,,,,0.81626,1.31318,1.71589,2.33089,,,,,,,269.51136,271.99405,276.18109,287.3431,,,,,,,271.48589,273.78452,277.68429,288.29897,,,,,,,275.38988,277.81231,281.91605,292.98124,,,,,,,269.3071,271.73283,275.84623,286.87843,,,,,,,275.35637,277.01217,279.90494,288.56819,,,,,,,271.16129,272.9964,276.17064,285.35007,,,,,,,273.32909,274.91027,277.69055,286.11666,,,,,,,273.50926,275.44215,278.76945,288.27332,,,,,,,269.20201,270.9587,273.97769,282.79607,,,,,,,0.00593,0.00665,0.00782,0.01018,,,,,,,0.00594,0.00665,0.00782,0.01016,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.00581,0.00652,0.00767,0.01,,,,,,,0.00601,0.00672,0.00789,0.01024,,,,,,,0.00588,0.00659,0.00774,0.01007,,,,,,,0.00593,0.00664,0.00781,0.01016,,,,,,,0.00598,0.0067,0.00787,0.01023,,,,,,,0.00603,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01876,0.02156,0.02736,0.02736,,,,,,,0.01875,0.02155,0.02735,0.02735,,,,,,,0.01866,0.02144,0.02722,0.02722,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01868,0.02146,0.02724,0.02724,,,,,,,0.01873,0.02152,0.02731,0.02731,,,,,,,0.01877,0.02156,0.02737,0.02737,,,,,,,0.01881,0.02161,0.02743,0.02743,,,,,,,0.04539,0.06732,0.093,0.12719,,,,,,,0.04354,0.06483,0.08994,0.12304,,,,,,,0.04403,0.06877,0.09508,0.1325,,,,,,,0.0466,0.07375,0.10191,0.14217,,,,,,,0.03488,0.05817,0.08218,0.1153,,,,,,,0.03826,0.06279,0.0881,0.12324,,,,,,,0.03577,0.05913,0.08362,0.11658,,,,,,,0.0423,0.06758,0.09426,0.13053,,,,,,,0.03707,0.0592,0.08309,0.11393,,,,,,,0.00155,0.00244,0.00325,0.00495,,,,,,,0.00149,0.00234,0.0031,0.00468,,,,,,,0.00152,0.00239,0.00318,0.00483,,,,,,,0.00156,0.00246,0.00329,0.00504,,,,,,,0.00133,0.00207,0.00269,0.00391,,,,,,,0.00135,0.00211,0.00275,0.00405,,,,,,,0.00127,0.00197,0.00255,0.00368,,,,,,,0.00138,0.00215,0.00282,0.00417,,,,,,,0.00123,0.00191,0.00246,0.00353,,,,,,,0.0442,0.04617,0.04804,0.05206,,,,,,,0.04544,0.04731,0.04904,0.05273,,,,,,,0.04954,0.05147,0.05329,0.05718,,,,,,,0.0414,0.0434,0.04533,0.04949,,,,,,,0.04822,0.04978,0.05113,0.05389,,,,,,,0.04398,0.04559,0.04702,0.04997,,,,,,,0.04402,0.04548,0.04674,0.04928,,,,,,,0.04635,0.04801,0.04951,0.05261,,,,,,,0.0458,0.04721,0.0484,0.05079,,,,,,,0.00827,0.01001,0.01167,0.01522,,,,,,,0.00831,0.00996,0.01149,0.01475,,,,,,,0.00889,0.01059,0.0122,0.01564,,,,,,,0.00795,0.00972,0.01142,0.01511,,,,,,,0.00834,0.00972,0.01092,0.01336,,,,,,,0.00786,0.00928,0.01055,0.01316,,,,,,,0.0077,0.00899,0.01011,0.01236,,,,,,,0.00821,0.00968,0.011,0.01375,,,,,,,0.00786,0.00911,0.01016,0.01227,,,,,,,0.00183,0.00184,0.00187,0.00195,,,,,,,0.00184,0.00186,0.00188,0.00195,,,,,,,0.00187,0.00188,0.00191,0.00199,,,,,,,0.00183,0.00184,0.00187,0.00194,,,,,,,0.00187,0.00188,0.0019,0.00196,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00185,0.00186,0.00188,0.00194,,,,,,,0.00183,0.00184,0.00186,0.00193,,,,,,,0.00169,0.0017,0.00172,0.00177,,,,,,,0.08506,0.10909,0.16395,0.39675,,,,,,,0.07591,0.09738,0.1494,0.3765,,,,,,,0.08201,0.10895,0.16724,0.41071,,,,,,,0.08966,0.11943,0.18069,0.42419,,,,,,,0.05529,0.07751,0.13108,0.36767,,,,,,,0.0593,0.08272,0.13664,0.37013,,,,,,,0.05335,0.07347,0.12425,0.35215,,,,,,,0.0688,0.09306,0.14969,0.39082,,,,,,,0.05257,0.07245,0.12281,0.35259 +Large SUV,E15,2040,,,,,,,,0.00077,0.00128,0.00182,,,,,,,,0.00071,0.00117,0.00166,,,,,,,,0.00074,0.00124,0.00176,,,,,,,,0.00079,0.00132,0.00189,,,,,,,,0.00054,0.00088,0.00121,,,,,,,,0.00057,0.00094,0.00131,,,,,,,,0.00049,0.0008,0.00111,,,,,,,,0.0006,0.00099,0.00138,,,,,,,,0.00047,0.00076,0.00104,,,,,,,,0.00815,0.00624,0.00604,,,,,,,,0.00703,0.00546,0.00535,,,,,,,,0.00762,0.0061,0.00597,,,,,,,,0.00857,0.00684,0.00667,,,,,,,,0.00409,0.00371,0.00385,,,,,,,,0.00474,0.00419,0.00429,,,,,,,,0.00392,0.00358,0.00374,,,,,,,,0.00551,0.00461,0.00463,,,,,,,,0.00394,0.00347,0.00358,,,,,,,,1.0059,1.48211,1.90802,,,,,,,,0.95725,1.43101,1.85257,,,,,,,,1.02039,1.59357,2.10146,,,,,,,,1.11006,1.73915,2.30119,,,,,,,,0.82054,1.38802,1.85882,,,,,,,,0.86941,1.45927,1.95647,,,,,,,,0.84681,1.42878,1.91176,,,,,,,,0.93958,1.50458,1.98083,,,,,,,,0.81481,1.31336,1.71645,,,,,,,,269.41499,271.97422,276.17231,,,,,,,,271.38948,273.76527,277.67564,,,,,,,,275.29168,277.79257,281.90715,,,,,,,,269.21099,271.71322,275.83759,,,,,,,,275.26015,276.99518,279.89591,,,,,,,,271.06602,272.97883,276.16184,,,,,,,,273.23343,274.89379,277.68161,,,,,,,,273.41267,275.42428,278.76077,,,,,,,,269.10772,270.94171,273.96907,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.00581,0.00652,0.00767,,,,,,,,0.006,0.00672,0.00789,,,,,,,,0.00587,0.00658,0.00774,,,,,,,,0.00592,0.00664,0.00781,,,,,,,,0.00598,0.0067,0.00787,,,,,,,,0.00602,0.00675,0.00794,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01875,0.02156,0.02736,,,,,,,,0.01874,0.02155,0.02735,,,,,,,,0.01865,0.02145,0.02722,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01867,0.02146,0.02724,,,,,,,,0.01872,0.02152,0.02731,,,,,,,,0.01876,0.02157,0.02737,,,,,,,,0.01879,0.02161,0.02743,,,,,,,,0.04523,0.06735,0.09309,,,,,,,,0.0434,0.06486,0.09003,,,,,,,,0.04387,0.06881,0.09518,,,,,,,,0.04641,0.0738,0.10204,,,,,,,,0.03477,0.0582,0.08226,,,,,,,,0.03813,0.06282,0.08818,,,,,,,,0.03563,0.05917,0.08371,,,,,,,,0.04218,0.06759,0.09432,,,,,,,,0.037,0.05918,0.0831,,,,,,,,0.00154,0.00244,0.00326,,,,,,,,0.00148,0.00235,0.00311,,,,,,,,0.00151,0.00239,0.00319,,,,,,,,0.00155,0.00247,0.0033,,,,,,,,0.00133,0.00207,0.00269,,,,,,,,0.00135,0.00211,0.00276,,,,,,,,0.00127,0.00197,0.00255,,,,,,,,0.00137,0.00216,0.00283,,,,,,,,0.00123,0.00191,0.00246,,,,,,,,0.04418,0.04618,0.04806,,,,,,,,0.04543,0.04731,0.04905,,,,,,,,0.04953,0.05148,0.0533,,,,,,,,0.04137,0.04341,0.04535,,,,,,,,0.04821,0.04978,0.05114,,,,,,,,0.04397,0.0456,0.04703,,,,,,,,0.044,0.04549,0.04675,,,,,,,,0.04634,0.04802,0.04952,,,,,,,,0.04579,0.04721,0.04841,,,,,,,,0.00825,0.01002,0.01168,,,,,,,,0.00829,0.00996,0.0115,,,,,,,,0.00887,0.0106,0.01221,,,,,,,,0.00793,0.00973,0.01144,,,,,,,,0.00833,0.00972,0.01093,,,,,,,,0.00784,0.00928,0.01056,,,,,,,,0.00769,0.009,0.01012,,,,,,,,0.0082,0.00968,0.01101,,,,,,,,0.00785,0.00911,0.01016,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00184,0.00186,0.00188,,,,,,,,0.00187,0.00188,0.00191,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00187,0.00188,0.0019,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00185,0.00186,0.00188,,,,,,,,0.00183,0.00184,0.00186,,,,,,,,0.00169,0.0017,0.00172,,,,,,,,0.08507,0.10901,0.16393,,,,,,,,0.07589,0.09732,0.14939,,,,,,,,0.08203,0.10887,0.16722,,,,,,,,0.08961,0.1194,0.18077,,,,,,,,0.05518,0.07755,0.13122,,,,,,,,0.05922,0.08274,0.13676,,,,,,,,0.05323,0.07353,0.12441,,,,,,,,0.06856,0.09331,0.14991,,,,,,,,0.05252,0.07246,0.12287 +Large SUV,E15,2045,,,,,,,,,0.00077,0.00128,,,,,,,,,0.00071,0.00117,,,,,,,,,0.00074,0.00124,,,,,,,,,0.00079,0.00132,,,,,,,,,0.00054,0.00088,,,,,,,,,0.00057,0.00094,,,,,,,,,0.0005,0.00081,,,,,,,,,0.0006,0.00099,,,,,,,,,0.00047,0.00076,,,,,,,,,0.00814,0.00624,,,,,,,,,0.00702,0.00546,,,,,,,,,0.0076,0.00609,,,,,,,,,0.00856,0.00683,,,,,,,,,0.00408,0.00371,,,,,,,,,0.00474,0.00418,,,,,,,,,0.00391,0.00358,,,,,,,,,0.0055,0.00461,,,,,,,,,0.00394,0.00347,,,,,,,,,1.00632,1.48336,,,,,,,,,0.95789,1.43258,,,,,,,,,1.02116,1.59572,,,,,,,,,1.11145,1.74264,,,,,,,,,0.82184,1.39076,,,,,,,,,0.87069,1.46206,,,,,,,,,0.84829,1.43185,,,,,,,,,0.94041,1.50646,,,,,,,,,0.81497,1.31376,,,,,,,,,269.40495,271.97292,,,,,,,,,271.38003,273.76412,,,,,,,,,275.28172,277.79116,,,,,,,,,269.20123,271.71197,,,,,,,,,275.25249,276.99411,,,,,,,,,271.05778,272.97774,,,,,,,,,273.22644,274.89273,,,,,,,,,273.40433,275.42322,,,,,,,,,269.09989,270.94038,,,,,,,,,0.00592,0.00665,,,,,,,,,0.00593,0.00665,,,,,,,,,0.00603,0.00675,,,,,,,,,0.0058,0.00652,,,,,,,,,0.006,0.00672,,,,,,,,,0.00587,0.00658,,,,,,,,,0.00592,0.00664,,,,,,,,,0.00598,0.0067,,,,,,,,,0.00602,0.00675,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01875,0.02155,,,,,,,,,0.01874,0.02155,,,,,,,,,0.01865,0.02144,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01867,0.02146,,,,,,,,,0.01872,0.02152,,,,,,,,,0.01876,0.02156,,,,,,,,,0.01879,0.02161,,,,,,,,,0.04526,0.06741,,,,,,,,,0.04342,0.06492,,,,,,,,,0.0439,0.06889,,,,,,,,,0.04646,0.0739,,,,,,,,,0.03479,0.05825,,,,,,,,,0.03815,0.06288,,,,,,,,,0.03566,0.05923,,,,,,,,,0.0422,0.06764,,,,,,,,,0.03699,0.05919,,,,,,,,,0.00154,0.00245,,,,,,,,,0.00149,0.00235,,,,,,,,,0.00151,0.0024,,,,,,,,,0.00155,0.00247,,,,,,,,,0.00133,0.00208,,,,,,,,,0.00135,0.00211,,,,,,,,,0.00127,0.00198,,,,,,,,,0.00138,0.00216,,,,,,,,,0.00123,0.00191,,,,,,,,,0.04418,0.04619,,,,,,,,,0.04543,0.04732,,,,,,,,,0.04953,0.05149,,,,,,,,,0.04138,0.04343,,,,,,,,,0.04821,0.04979,,,,,,,,,0.04397,0.0456,,,,,,,,,0.04401,0.0455,,,,,,,,,0.04634,0.04802,,,,,,,,,0.04579,0.04721,,,,,,,,,0.00826,0.01003,,,,,,,,,0.0083,0.00997,,,,,,,,,0.00888,0.01061,,,,,,,,,0.00793,0.00974,,,,,,,,,0.00833,0.00973,,,,,,,,,0.00785,0.00929,,,,,,,,,0.0077,0.00901,,,,,,,,,0.0082,0.00969,,,,,,,,,0.00785,0.00911,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00184,0.00186,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00185,0.00186,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00169,0.0017,,,,,,,,,0.085,0.10896,,,,,,,,,0.07584,0.09728,,,,,,,,,0.08196,0.10881,,,,,,,,,0.08956,0.1194,,,,,,,,,0.05519,0.0776,,,,,,,,,0.05922,0.08277,,,,,,,,,0.05325,0.0736,,,,,,,,,0.0687,0.09338,,,,,,,,,0.05251,0.07246 +Large SUV,E15,2050,,,,,,,,,,0.00077,,,,,,,,,,0.00071,,,,,,,,,,0.00075,,,,,,,,,,0.00079,,,,,,,,,,0.00054,,,,,,,,,,0.00057,,,,,,,,,,0.0005,,,,,,,,,,0.0006,,,,,,,,,,0.00047,,,,,,,,,,0.00814,,,,,,,,,,0.00701,,,,,,,,,,0.00759,,,,,,,,,,0.00855,,,,,,,,,,0.00408,,,,,,,,,,0.00473,,,,,,,,,,0.00391,,,,,,,,,,0.0055,,,,,,,,,,0.00394,,,,,,,,,,1.00707,,,,,,,,,,0.95886,,,,,,,,,,1.02232,,,,,,,,,,1.11338,,,,,,,,,,0.82345,,,,,,,,,,0.8723,,,,,,,,,,0.85011,,,,,,,,,,0.94156,,,,,,,,,,0.81527,,,,,,,,,,269.4052,,,,,,,,,,271.38023,,,,,,,,,,275.28184,,,,,,,,,,269.20133,,,,,,,,,,275.2527,,,,,,,,,,271.05795,,,,,,,,,,273.22647,,,,,,,,,,273.40459,,,,,,,,,,269.10001,,,,,,,,,,0.00592,,,,,,,,,,0.00593,,,,,,,,,,0.00603,,,,,,,,,,0.0058,,,,,,,,,,0.006,,,,,,,,,,0.00587,,,,,,,,,,0.00592,,,,,,,,,,0.00598,,,,,,,,,,0.00602,,,,,,,,,,0.01873,,,,,,,,,,0.01875,,,,,,,,,,0.01874,,,,,,,,,,0.01865,,,,,,,,,,0.01873,,,,,,,,,,0.01867,,,,,,,,,,0.01872,,,,,,,,,,0.01876,,,,,,,,,,0.01879,,,,,,,,,,0.04531,,,,,,,,,,0.04347,,,,,,,,,,0.04396,,,,,,,,,,0.04653,,,,,,,,,,0.03482,,,,,,,,,,0.03819,,,,,,,,,,0.03571,,,,,,,,,,0.04223,,,,,,,,,,0.037,,,,,,,,,,0.00154,,,,,,,,,,0.00149,,,,,,,,,,0.00151,,,,,,,,,,0.00156,,,,,,,,,,0.00133,,,,,,,,,,0.00135,,,,,,,,,,0.00127,,,,,,,,,,0.00138,,,,,,,,,,0.00123,,,,,,,,,,0.04419,,,,,,,,,,0.04544,,,,,,,,,,0.04954,,,,,,,,,,0.04139,,,,,,,,,,0.04822,,,,,,,,,,0.04398,,,,,,,,,,0.04402,,,,,,,,,,0.04634,,,,,,,,,,0.04579,,,,,,,,,,0.00826,,,,,,,,,,0.0083,,,,,,,,,,0.00888,,,,,,,,,,0.00794,,,,,,,,,,0.00834,,,,,,,,,,0.00785,,,,,,,,,,0.0077,,,,,,,,,,0.0082,,,,,,,,,,0.00785,,,,,,,,,,0.00183,,,,,,,,,,0.00184,,,,,,,,,,0.00187,,,,,,,,,,0.00183,,,,,,,,,,0.00187,,,,,,,,,,0.00184,,,,,,,,,,0.00185,,,,,,,,,,0.00183,,,,,,,,,,0.00169,,,,,,,,,,0.08496,,,,,,,,,,0.07582,,,,,,,,,,0.08192,,,,,,,,,,0.08956,,,,,,,,,,0.05523,,,,,,,,,,0.05924,,,,,,,,,,0.0533,,,,,,,,,,0.06876,,,,,,,,,,0.05252 +Large SUV,E85,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,E85,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,E85,2000,,0.00889,0.01362,,,,,,,,,0.00762,0.01164,,,,,,,,,0.00855,0.01314,,,,,,,,,0.0095,0.01463,,,,,,,,,0.00425,0.00642,,,,,,,,,0.00503,0.00796,,,,,,,,,0.00408,0.00613,,,,,,,,,0.0059,0.00897,,,,,,,,,0.00412,0.00618,,,,,,,,,0.17182,0.18842,,,,,,,,,0.16552,0.18484,,,,,,,,,0.1961,0.21682,,,,,,,,,0.20436,0.2246,,,,,,,,,0.17747,0.19866,,,,,,,,,0.18693,0.20742,,,,,,,,,0.18041,0.19545,,,,,,,,,0.17838,0.19643,,,,,,,,,0.15699,0.17386,,,,,,,,,15.56429,19.64453,,,,,,,,,15.25543,19.51119,,,,,,,,,17.46805,22.20168,,,,,,,,,18.48392,23.3484,,,,,,,,,16.56157,21.15178,,,,,,,,,17.20629,21.99701,,,,,,,,,17.22871,21.38882,,,,,,,,,16.43062,20.75712,,,,,,,,,14.21839,18.05726,,,,,,,,,522.00035,529.80963,,,,,,,,,526.0408,533.28548,,,,,,,,,533.75577,541.37839,,,,,,,,,521.323,528.94694,,,,,,,,,534.22176,539.49484,,,,,,,,,525.64348,533.28176,,,,,,,,,530.01657,535.05893,,,,,,,,,530.2981,536.42231,,,,,,,,,522.28412,527.88262,,,,,,,,,0.04692,0.05603,,,,,,,,,0.04705,0.05612,,,,,,,,,0.04796,0.05706,,,,,,,,,0.0459,0.05489,,,,,,,,,0.04771,0.05679,,,,,,,,,0.04654,0.05557,,,,,,,,,0.04691,0.05599,,,,,,,,,0.04745,0.05656,,,,,,,,,0.04777,0.05698,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08204,0.08205,,,,,,,,,0.08202,0.08202,,,,,,,,,0.0816,0.0816,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08168,0.08168,,,,,,,,,0.08189,0.0819,,,,,,,,,0.08207,0.08208,,,,,,,,,0.08225,0.08226,,,,,,,,,2.04777,2.49274,,,,,,,,,2.02209,2.4919,,,,,,,,,2.26042,2.76094,,,,,,,,,2.34025,2.84613,,,,,,,,,2.20559,2.7158,,,,,,,,,2.26855,2.76316,,,,,,,,,2.24616,2.69524,,,,,,,,,2.33326,2.81716,,,,,,,,,2.09487,2.54811,,,,,,,,,0.01893,0.0268,,,,,,,,,0.01655,0.02337,,,,,,,,,0.01794,0.02545,,,,,,,,,0.01963,0.02791,,,,,,,,,0.00992,0.01387,,,,,,,,,0.01141,0.01662,,,,,,,,,0.00975,0.01359,,,,,,,,,0.01316,0.01851,,,,,,,,,0.01,0.01392,,,,,,,,,0.08133,0.09903,,,,,,,,,0.07751,0.09277,,,,,,,,,0.08476,0.10171,,,,,,,,,0.08022,0.09898,,,,,,,,,0.06632,0.07501,,,,,,,,,0.06525,0.07698,,,,,,,,,0.0618,0.07021,,,,,,,,,0.07134,0.08323,,,,,,,,,0.06415,0.07268,,,,,,,,,0.04113,0.05679,,,,,,,,,0.03669,0.05018,,,,,,,,,0.04004,0.05504,,,,,,,,,0.04231,0.0589,,,,,,,,,0.02436,0.03204,,,,,,,,,0.02669,0.03692,,,,,,,,,0.02345,0.03088,,,,,,,,,0.03032,0.04085,,,,,,,,,0.0241,0.03165,,,,,,,,,0.01709,0.0153,,,,,,,,,0.01722,0.0154,,,,,,,,,0.01747,0.01563,,,,,,,,,0.01707,0.01527,,,,,,,,,0.01749,0.01558,,,,,,,,,0.01721,0.0154,,,,,,,,,0.01736,0.01545,,,,,,,,,0.01736,0.01549,,,,,,,,,0.0171,0.01524,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,, +Large SUV,E85,2005,,0.00381,0.00566,0.01003,,,,,,,,0.00332,0.00491,0.00864,,,,,,,,0.0037,0.00551,0.00974,,,,,,,,0.00405,0.00605,0.01077,,,,,,,,0.00201,0.00295,0.005,,,,,,,,0.0023,0.00352,0.00582,,,,,,,,0.00194,0.00283,0.00478,,,,,,,,0.00265,0.00391,0.00677,,,,,,,,0.00196,0.00286,0.00481,,,,,,,,0.07179,0.06124,0.07902,,,,,,,,0.06595,0.05817,0.07554,,,,,,,,0.07806,0.06843,0.0921,,,,,,,,0.08217,0.07195,0.09618,,,,,,,,0.05837,0.05494,0.07668,,,,,,,,0.06404,0.05964,0.08189,,,,,,,,0.05849,0.05378,0.07482,,,,,,,,0.06453,0.05775,0.07821,,,,,,,,0.05212,0.04792,0.06436,,,,,,,,6.13917,7.94899,11.7889,,,,,,,,6.00238,7.96301,11.75002,,,,,,,,6.74365,9.11337,13.75788,,,,,,,,7.08738,9.59407,14.42737,,,,,,,,6.59948,9.04772,13.39198,,,,,,,,6.73061,9.2748,13.71001,,,,,,,,6.87116,9.18305,13.52869,,,,,,,,6.54762,8.7146,12.8947,,,,,,,,5.83646,7.71253,11.19115,,,,,,,,541.28764,547.15975,553.84105,,,,,,,,545.81402,551.26886,557.22268,,,,,,,,553.3612,559.0968,565.53617,,,,,,,,540.86207,546.6028,553.06829,,,,,,,,555.47426,559.47197,562.90946,,,,,,,,546.40218,552.63369,554.9548,,,,,,,,551.4876,555.318,558.46236,,,,,,,,550.94283,555.57008,560.08848,,,,,,,,542.94525,547.17212,551.00402,,,,,,,,0.00964,0.01141,0.02192,,,,,,,,0.00965,0.01141,0.02191,,,,,,,,0.0098,0.01157,0.0222,,,,,,,,0.00945,0.0112,0.02152,,,,,,,,0.00976,0.01152,0.02211,,,,,,,,0.00955,0.0113,0.0217,,,,,,,,0.00963,0.0114,0.02189,,,,,,,,0.00972,0.01149,0.02207,,,,,,,,0.0098,0.01159,0.02225,,,,,,,,0.02682,0.03359,0.03979,,,,,,,,0.02685,0.03363,0.03984,,,,,,,,0.02685,0.03362,0.03983,,,,,,,,0.02671,0.03345,0.03962,,,,,,,,0.02683,0.03359,0.03979,,,,,,,,0.02674,0.03348,0.03966,,,,,,,,0.0268,0.03357,0.03976,,,,,,,,0.02686,0.03364,0.03985,,,,,,,,0.02692,0.03372,0.03994,,,,,,,,0.87815,1.17316,1.22709,,,,,,,,0.85445,1.16929,1.22046,,,,,,,,0.96182,1.29403,1.3789,,,,,,,,1.00781,1.3525,1.43637,,,,,,,,0.92802,1.26295,1.35107,,,,,,,,0.96398,1.29661,1.38038,,,,,,,,0.95272,1.2626,1.33827,,,,,,,,0.99878,1.32895,1.38996,,,,,,,,0.89553,1.19789,1.24233,,,,,,,,0.0082,0.01119,0.01829,,,,,,,,0.00733,0.00999,0.01617,,,,,,,,0.00791,0.01081,0.01761,,,,,,,,0.00844,0.01157,0.01904,,,,,,,,0.0049,0.00669,0.01039,,,,,,,,0.00542,0.0076,0.01165,,,,,,,,0.00482,0.00656,0.01016,,,,,,,,0.00608,0.0083,0.01321,,,,,,,,0.00493,0.00671,0.01038,,,,,,,,0.05834,0.06511,0.08105,,,,,,,,0.0578,0.06379,0.07759,,,,,,,,0.06317,0.06976,0.08507,,,,,,,,0.05612,0.06326,0.08015,,,,,,,,0.05567,0.05957,0.06767,,,,,,,,0.0525,0.05751,0.06625,,,,,,,,0.05139,0.05518,0.06302,,,,,,,,0.05626,0.06118,0.07206,,,,,,,,0.05349,0.05733,0.06528,,,,,,,,0.02078,0.02678,0.04088,,,,,,,,0.01925,0.02455,0.03676,,,,,,,,0.02094,0.02677,0.04032,,,,,,,,0.02098,0.0273,0.04224,,,,,,,,0.01493,0.01838,0.02555,,,,,,,,0.0154,0.01969,0.02756,,,,,,,,0.01423,0.01758,0.02452,,,,,,,,0.01698,0.02133,0.03096,,,,,,,,0.01467,0.01807,0.0251,,,,,,,,0.01772,0.0158,0.00533,,,,,,,,0.01787,0.01592,0.00536,,,,,,,,0.01812,0.01614,0.00544,,,,,,,,0.01771,0.01578,0.00532,,,,,,,,0.01819,0.01616,0.00542,,,,,,,,0.01789,0.01596,0.00534,,,,,,,,0.01806,0.01604,0.00538,,,,,,,,0.01804,0.01604,0.00539,,,,,,,,0.01778,0.0158,0.0053,,,,,,,,0.38302,0.53409,0.53378,,,,,,,,0.34598,0.49556,0.49307,,,,,,,,0.4063,0.5797,0.57353,,,,,,,,0.42986,0.61198,0.60315,,,,,,,,0.27049,0.41786,0.40359,,,,,,,,0.30479,0.46728,0.44486,,,,,,,,0.26659,0.40431,0.38966,,,,,,,,0.31696,0.4642,0.45459,,,,,,,,0.24114,0.36571,0.35375,,,,,, +Large SUV,E85,2010,,0.00157,0.00293,0.0043,0.00842,,,,,,,0.00139,0.00259,0.00378,0.00731,,,,,,,0.00154,0.00288,0.00422,0.00823,,,,,,,0.00168,0.00314,0.00461,0.00908,,,,,,,0.00094,0.0017,0.00243,0.00444,,,,,,,0.00104,0.00195,0.00273,0.00509,,,,,,,0.00091,0.00164,0.00234,0.00425,,,,,,,0.00116,0.00213,0.00309,0.00584,,,,,,,0.00091,0.00165,0.00235,0.00426,,,,,,,0.04677,0.03341,0.02525,0.04146,,,,,,,0.04078,0.03037,0.0232,0.03883,,,,,,,0.04576,0.03578,0.02739,0.0474,,,,,,,0.05084,0.03955,0.03015,0.0508,,,,,,,0.02739,0.02593,0.02064,0.03769,,,,,,,0.03061,0.02873,0.02232,0.04061,,,,,,,0.02681,0.02555,0.02035,0.03688,,,,,,,0.03422,0.02892,0.02244,0.03933,,,,,,,0.02633,0.02357,0.0184,0.0319,,,,,,,2.48402,4.13531,5.57241,8.35138,,,,,,,2.36287,4.08881,5.53815,8.29793,,,,,,,2.48601,4.53252,6.29261,9.75727,,,,,,,2.65742,4.85325,6.75248,10.37233,,,,,,,2.1873,4.32278,6.05932,9.39725,,,,,,,2.2577,4.48457,6.22185,9.69001,,,,,,,2.2801,4.44872,6.21174,9.55128,,,,,,,2.32776,4.32552,5.95406,9.09815,,,,,,,2.04634,3.82493,5.1993,7.82291,,,,,,,503.37632,505.52289,510.00057,526.6621,,,,,,,507.81169,509.68579,513.71689,529.7204,,,,,,,514.74553,516.76509,521.07248,537.67387,,,,,,,503.0749,505.11949,509.47302,525.93084,,,,,,,517.55169,518.49154,520.98227,534.60527,,,,,,,508.87992,511.76392,513.02939,527.23535,,,,,,,513.91733,514.75634,517.08453,530.37056,,,,,,,513.009,514.35323,517.50963,532.15477,,,,,,,505.66937,506.82205,509.56751,523.37215,,,,,,,0.00856,0.00964,0.01155,0.01657,,,,,,,0.00858,0.00964,0.01155,0.01656,,,,,,,0.00872,0.00979,0.0117,0.01675,,,,,,,0.00839,0.00945,0.01133,0.01628,,,,,,,0.00868,0.00975,0.01165,0.01669,,,,,,,0.00849,0.00955,0.01143,0.0164,,,,,,,0.00856,0.00963,0.01153,0.01654,,,,,,,0.00864,0.00972,0.01163,0.01667,,,,,,,0.00871,0.00979,0.01172,0.01681,,,,,,,0.0178,0.02043,0.02664,0.02952,,,,,,,0.01782,0.02045,0.02667,0.02956,,,,,,,0.01781,0.02045,0.02667,0.02955,,,,,,,0.01772,0.02034,0.02653,0.0294,,,,,,,0.0178,0.02043,0.02664,0.02953,,,,,,,0.01774,0.02036,0.02656,0.02943,,,,,,,0.01778,0.02042,0.02662,0.0295,,,,,,,0.01782,0.02046,0.02668,0.02957,,,,,,,0.01786,0.02051,0.02674,0.02963,,,,,,,0.14412,0.25143,0.2523,0.54084,,,,,,,0.13897,0.24912,0.24964,0.53582,,,,,,,0.14195,0.27426,0.27285,0.61142,,,,,,,0.14691,0.29104,0.28735,0.64298,,,,,,,0.13051,0.26103,0.25883,0.59243,,,,,,,0.1362,0.27206,0.26868,0.6098,,,,,,,0.13464,0.26302,0.26017,0.58725,,,,,,,0.14695,0.28088,0.27486,0.6102,,,,,,,0.13569,0.25266,0.24723,0.53862,,,,,,,0.00281,0.00499,0.00696,0.01332,,,,,,,0.00263,0.00464,0.00644,0.01203,,,,,,,0.00276,0.0049,0.00683,0.01298,,,,,,,0.00288,0.00514,0.00719,0.01389,,,,,,,0.00217,0.00376,0.00511,0.00864,,,,,,,0.00226,0.00398,0.00537,0.00935,,,,,,,0.00216,0.00373,0.00505,0.00848,,,,,,,0.0024,0.0042,0.00577,0.0103,,,,,,,0.0022,0.0038,0.00514,0.00863,,,,,,,0.04708,0.05203,0.05658,0.07114,,,,,,,0.04801,0.05252,0.05662,0.06934,,,,,,,0.0524,0.05725,0.06171,0.07583,,,,,,,0.04445,0.04961,0.05442,0.06985,,,,,,,0.05003,0.05343,0.05635,0.06418,,,,,,,0.04594,0.0499,0.05275,0.06166,,,,,,,0.04591,0.04925,0.05211,0.05967,,,,,,,0.04861,0.05256,0.05605,0.06627,,,,,,,0.04786,0.05126,0.05415,0.06181,,,,,,,0.01083,0.01521,0.01923,0.03211,,,,,,,0.01059,0.01458,0.0182,0.02945,,,,,,,0.01141,0.0157,0.01965,0.03214,,,,,,,0.01066,0.01523,0.01948,0.03313,,,,,,,0.00994,0.01295,0.01554,0.02246,,,,,,,0.0096,0.01296,0.01562,0.02351,,,,,,,0.00938,0.01234,0.01487,0.02156,,,,,,,0.01021,0.0137,0.0168,0.02583,,,,,,,0.00969,0.01269,0.01525,0.02202,,,,,,,0.01648,0.0146,0.00491,0.00507,,,,,,,0.01663,0.01472,0.00494,0.0051,,,,,,,0.01685,0.01492,0.00502,0.00518,,,,,,,0.01647,0.01459,0.0049,0.00506,,,,,,,0.01695,0.01497,0.00501,0.00515,,,,,,,0.01666,0.01478,0.00494,0.00507,,,,,,,0.01683,0.01486,0.00498,0.0051,,,,,,,0.0168,0.01485,0.00498,0.00512,,,,,,,0.01656,0.01463,0.0049,0.00504,,,,,,,0.11742,0.17662,0.24186,0.39286,,,,,,,0.09965,0.156,0.21736,0.35775,,,,,,,0.11503,0.18533,0.25819,0.43064,,,,,,,0.12917,0.20575,0.28443,0.46568,,,,,,,0.05916,0.11853,0.178,0.30557,,,,,,,0.06856,0.13478,0.19456,0.33502,,,,,,,0.05633,0.11428,0.17251,0.29534,,,,,,,0.07938,0.1398,0.20126,0.33851,,,,,,,0.05576,0.1072,0.15856,0.26295,,,,, +Large SUV,E85,2015,,,0.00141,0.00239,0.00367,0.00664,,,,,,,0.00127,0.00216,0.0033,0.00589,,,,,,,0.00138,0.00235,0.00361,0.00652,,,,,,,0.00147,0.00251,0.00387,0.00705,,,,,,,0.00092,0.00154,0.0023,0.00388,,,,,,,0.00102,0.00168,0.00253,0.00435,,,,,,,0.0009,0.0015,0.00224,0.00375,,,,,,,0.00109,0.00185,0.00279,0.00487,,,,,,,0.0009,0.00151,0.00225,0.00376,,,,,,,0.03538,0.02367,0.02172,0.02701,,,,,,,0.03242,0.02203,0.02057,0.02554,,,,,,,0.03515,0.02568,0.024,0.03032,,,,,,,0.03789,0.02782,0.02594,0.03257,,,,,,,0.02437,0.01981,0.01978,0.02484,,,,,,,0.02708,0.02137,0.02112,0.02659,,,,,,,0.02413,0.01957,0.01966,0.02456,,,,,,,0.02853,0.02152,0.02073,0.02588,,,,,,,0.02369,0.01806,0.0177,0.02171,,,,,,,2.13169,3.74457,5.0528,6.75332,,,,,,,2.12265,3.75641,5.09675,6.78849,,,,,,,2.18773,4.145,5.76744,7.82434,,,,,,,2.33334,4.43013,6.17996,8.33276,,,,,,,2.08632,4.12988,5.79657,7.77338,,,,,,,2.1456,4.20033,5.91149,7.9667,,,,,,,2.17473,4.26746,5.96788,7.96629,,,,,,,2.14407,4.06208,5.60335,7.48997,,,,,,,1.95427,3.65931,4.98153,6.57429,,,,,,,412.344,414.70276,418.56776,441.66463,,,,,,,415.79979,417.88112,421.35861,443.98649,,,,,,,421.55253,423.79446,427.51198,450.7607,,,,,,,412.07344,414.34442,418.10457,441.03181,,,,,,,423.18613,424.31306,426.45163,447.2682,,,,,,,417.65139,417.68612,420.21494,441.36502,,,,,,,420.18245,421.208,423.20687,443.68097,,,,,,,419.72533,421.26454,423.98187,445.56987,,,,,,,413.56135,414.87262,417.22932,437.97869,,,,,,,0.00566,0.00649,0.0077,0.01074,,,,,,,0.00567,0.00649,0.00769,0.01073,,,,,,,0.00576,0.00659,0.00779,0.01085,,,,,,,0.00555,0.00636,0.00755,0.01055,,,,,,,0.00573,0.00656,0.00776,0.01081,,,,,,,0.00561,0.00643,0.00762,0.01063,,,,,,,0.00566,0.00648,0.00768,0.01072,,,,,,,0.00571,0.00654,0.00775,0.0108,,,,,,,0.00576,0.00659,0.00781,0.01089,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01782,0.02074,0.02668,0.02703,,,,,,,0.01782,0.02073,0.02668,0.02703,,,,,,,0.01773,0.02062,0.02654,0.02689,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01774,0.02065,0.02656,0.02691,,,,,,,0.01779,0.0207,0.02663,0.02698,,,,,,,0.01783,0.02074,0.02669,0.02704,,,,,,,0.01787,0.02079,0.02675,0.0271,,,,,,,0.12799,0.15738,0.22971,0.32717,,,,,,,0.12747,0.15532,0.22734,0.32372,,,,,,,0.12888,0.17053,0.24791,0.35916,,,,,,,0.13446,0.18032,0.26185,0.37872,,,,,,,0.11817,0.159,0.23392,0.34165,,,,,,,0.12402,0.16614,0.24361,0.35441,,,,,,,0.12107,0.15993,0.23561,0.34185,,,,,,,0.13274,0.17114,0.24941,0.35856,,,,,,,0.12271,0.1535,0.22395,0.31926,,,,,,,0.00269,0.00442,0.00636,0.01048,,,,,,,0.00256,0.00419,0.00599,0.0097,,,,,,,0.00264,0.00435,0.00625,0.01028,,,,,,,0.00272,0.00449,0.00648,0.01079,,,,,,,0.00219,0.00356,0.00498,0.00764,,,,,,,0.00228,0.00367,0.00517,0.00806,,,,,,,0.00219,0.00355,0.00496,0.00756,,,,,,,0.00238,0.00388,0.00549,0.00866,,,,,,,0.00223,0.00362,0.00504,0.00768,,,,,,,0.04672,0.05055,0.055,0.06468,,,,,,,0.04777,0.05134,0.05543,0.06409,,,,,,,0.05205,0.05581,0.06018,0.06966,,,,,,,0.04399,0.04791,0.05252,0.06274,,,,,,,0.05004,0.05291,0.05601,0.06196,,,,,,,0.04615,0.04891,0.05224,0.05879,,,,,,,0.04594,0.04879,0.05185,0.05764,,,,,,,0.0485,0.05171,0.05531,0.06258,,,,,,,0.0479,0.05079,0.05388,0.05973,,,,,,,0.01051,0.01389,0.01783,0.0264,,,,,,,0.01038,0.01353,0.01715,0.02481,,,,,,,0.01111,0.01443,0.0183,0.02669,,,,,,,0.01025,0.01372,0.0178,0.02684,,,,,,,0.00995,0.01249,0.01524,0.0205,,,,,,,0.00964,0.01223,0.01517,0.02096,,,,,,,0.00941,0.01193,0.01464,0.01976,,,,,,,0.01011,0.01296,0.01614,0.02258,,,,,,,0.00972,0.01228,0.01502,0.02019,,,,,,,0.01191,0.00399,0.00403,0.00425,,,,,,,0.01201,0.00402,0.00406,0.00427,,,,,,,0.01217,0.00408,0.00411,0.00434,,,,,,,0.0119,0.00399,0.00402,0.00425,,,,,,,0.01222,0.00408,0.0041,0.00431,,,,,,,0.01206,0.00402,0.00404,0.00425,,,,,,,0.01213,0.00405,0.00407,0.00427,,,,,,,0.01212,0.00405,0.00408,0.00429,,,,,,,0.01194,0.00399,0.00402,0.00422,,,,,,,0.08849,0.13162,0.20089,0.29689,,,,,,,0.07873,0.12001,0.18688,0.27577,,,,,,,0.08784,0.1405,0.21883,0.32746,,,,,,,0.0954,0.1519,0.2354,0.35136,,,,,,,0.05314,0.0994,0.16827,0.25105,,,,,,,0.06137,0.10849,0.18083,0.2705,,,,,,,0.05142,0.09657,0.16468,0.24498,,,,,,,0.06597,0.11212,0.18154,0.26946,,,,,,,0.05075,0.09035,0.15066,0.22011,,,, +Large SUV,E85,2020,,,,0.00117,0.00201,0.00284,0.00569,,,,,,,0.00107,0.00182,0.00257,0.00508,,,,,,,0.00116,0.00197,0.0028,0.0056,,,,,,,0.00122,0.0021,0.00298,0.00602,,,,,,,0.00079,0.00131,0.00181,0.00342,,,,,,,0.00085,0.00143,0.00198,0.00381,,,,,,,0.00077,0.00128,0.00176,0.00331,,,,,,,0.00093,0.00156,0.00218,0.00423,,,,,,,0.00078,0.00129,0.00177,0.00332,,,,,,,0.02708,0.01959,0.01667,0.02125,,,,,,,0.02434,0.01802,0.01557,0.01997,,,,,,,0.02691,0.02103,0.01818,0.02405,,,,,,,0.0292,0.02288,0.01974,0.02596,,,,,,,0.01683,0.01529,0.0141,0.01921,,,,,,,0.01885,0.01675,0.01527,0.02076,,,,,,,0.01646,0.01506,0.01397,0.01898,,,,,,,0.02065,0.01708,0.0152,0.02017,,,,,,,0.01612,0.01387,0.01259,0.01655,,,,,,,1.682,2.53829,3.20349,4.91615,,,,,,,1.6647,2.52474,3.19782,4.92705,,,,,,,1.73294,2.78767,3.61266,5.81664,,,,,,,1.85534,2.99681,3.90054,6.23831,,,,,,,1.61663,2.70499,3.52399,5.70223,,,,,,,1.6534,2.77036,3.62345,5.89859,,,,,,,1.67995,2.79711,3.635,5.84319,,,,,,,1.67187,2.69125,3.45677,5.48578,,,,,,,1.50669,2.40006,3.04139,4.72865,,,,,,,350.03874,352.37195,356.26115,387.01815,,,,,,,352.82186,354.92481,358.47761,388.79932,,,,,,,357.77838,360.02216,363.79343,394.85707,,,,,,,349.79286,352.05372,355.85259,386.43617,,,,,,,358.58441,359.89335,362.2772,390.82394,,,,,,,352.8901,354.42784,357.14757,385.93446,,,,,,,356.00279,357.22444,359.48306,387.62842,,,,,,,355.86684,357.51895,360.40739,389.70566,,,,,,,350.49123,351.94468,354.50405,382.81585,,,,,,,0.00578,0.00654,0.0077,0.01014,,,,,,,0.00579,0.00654,0.00769,0.01012,,,,,,,0.00588,0.00664,0.00779,0.01023,,,,,,,0.00567,0.00641,0.00755,0.00996,,,,,,,0.00585,0.00661,0.00776,0.0102,,,,,,,0.00573,0.00648,0.00762,0.01003,,,,,,,0.00578,0.00653,0.00768,0.01012,,,,,,,0.00583,0.00659,0.00775,0.01019,,,,,,,0.00588,0.00664,0.00781,0.01028,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01782,0.02074,0.02668,0.02668,,,,,,,0.01782,0.02074,0.02667,0.02667,,,,,,,0.01773,0.02063,0.02654,0.02654,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01774,0.02065,0.02656,0.02656,,,,,,,0.01779,0.0207,0.02663,0.02663,,,,,,,0.01783,0.02075,0.02669,0.02669,,,,,,,0.01787,0.02079,0.02675,0.02675,,,,,,,0.08368,0.13491,0.18134,0.25222,,,,,,,0.08263,0.13289,0.17901,0.24905,,,,,,,0.08438,0.14553,0.19463,0.27745,,,,,,,0.08799,0.15466,0.20669,0.29466,,,,,,,0.07463,0.1341,0.18091,0.26017,,,,,,,0.07891,0.14107,0.18989,0.27209,,,,,,,0.07615,0.13536,0.18293,0.26089,,,,,,,0.08433,0.14571,0.19519,0.27522,,,,,,,0.07672,0.12975,0.17393,0.24217,,,,,,,0.00231,0.00374,0.00497,0.00889,,,,,,,0.0022,0.00355,0.00469,0.00828,,,,,,,0.00227,0.00368,0.00488,0.00873,,,,,,,0.00233,0.00379,0.00505,0.00912,,,,,,,0.00191,0.00304,0.00393,0.00663,,,,,,,0.00196,0.00313,0.00407,0.00697,,,,,,,0.00191,0.00303,0.00391,0.00657,,,,,,,0.00206,0.0033,0.00431,0.00745,,,,,,,0.00195,0.00309,0.00398,0.00667,,,,,,,0.04585,0.04904,0.05187,0.06112,,,,,,,0.04697,0.04995,0.05255,0.06093,,,,,,,0.05119,0.05433,0.05712,0.0662,,,,,,,0.04308,0.04634,0.04929,0.05897,,,,,,,0.04943,0.05182,0.05378,0.05983,,,,,,,0.04525,0.04777,0.04987,0.05645,,,,,,,0.04534,0.04771,0.04964,0.05556,,,,,,,0.04779,0.05047,0.05275,0.05995,,,,,,,0.04729,0.04969,0.05164,0.05762,,,,,,,0.00974,0.01256,0.01507,0.02325,,,,,,,0.00967,0.0123,0.01461,0.02202,,,,,,,0.01035,0.01312,0.01559,0.02363,,,,,,,0.00945,0.01234,0.01494,0.02351,,,,,,,0.00941,0.01153,0.01326,0.01862,,,,,,,0.00899,0.01122,0.01307,0.01889,,,,,,,0.00888,0.01098,0.01268,0.01792,,,,,,,0.00949,0.01186,0.01388,0.02025,,,,,,,0.00918,0.01131,0.01303,0.01832,,,,,,,0.00337,0.00339,0.00343,0.00373,,,,,,,0.0034,0.00342,0.00345,0.00374,,,,,,,0.00344,0.00347,0.0035,0.0038,,,,,,,0.00337,0.00339,0.00343,0.00372,,,,,,,0.00345,0.00346,0.00349,0.00376,,,,,,,0.0034,0.00341,0.00344,0.00371,,,,,,,0.00343,0.00344,0.00346,0.00373,,,,,,,0.00343,0.00344,0.00347,0.00375,,,,,,,0.00337,0.00339,0.00341,0.00368,,,,,,,0.07474,0.11011,0.15534,0.24174,,,,,,,0.06586,0.09917,0.14201,0.22324,,,,,,,0.07431,0.11612,0.16637,0.26926,,,,,,,0.08098,0.12618,0.1802,0.29019,,,,,,,0.04207,0.07663,0.11773,0.20104,,,,,,,0.04828,0.08527,0.12915,0.21879,,,,,,,0.04037,0.07416,0.1147,0.19564,,,,,,,0.05397,0.0895,0.1323,0.21745,,,,,,,0.03965,0.06933,0.10518,0.1731,,, +Large SUV,E85,2025,,,,,0.00076,0.00125,0.00177,0.00411,,,,,,,0.00069,0.00114,0.0016,0.00368,,,,,,,0.00074,0.00123,0.00174,0.00404,,,,,,,0.00079,0.00131,0.00185,0.00434,,,,,,,0.00051,0.00082,0.00113,0.00249,,,,,,,0.00055,0.00089,0.00123,0.00277,,,,,,,0.0005,0.0008,0.0011,0.00241,,,,,,,0.0006,0.00098,0.00136,0.00307,,,,,,,0.0005,0.00081,0.0011,0.00242,,,,,,,0.02181,0.01428,0.01154,0.01617,,,,,,,0.01898,0.01268,0.0104,0.01491,,,,,,,0.02153,0.01488,0.01221,0.0181,,,,,,,0.0237,0.01636,0.01338,0.01966,,,,,,,0.01125,0.00907,0.00807,0.01334,,,,,,,0.01325,0.01035,0.00904,0.01468,,,,,,,0.01077,0.00878,0.00787,0.01307,,,,,,,0.01509,0.01105,0.00939,0.0145,,,,,,,0.01052,0.00816,0.00717,0.01136,,,,,,,1.11848,1.63456,2.07341,3.47973,,,,,,,1.08011,1.5941,2.0316,3.45027,,,,,,,1.1377,1.76698,2.29902,4.10409,,,,,,,1.22936,1.91603,2.5011,4.42994,,,,,,,0.96919,1.60423,2.11117,3.89127,,,,,,,1.01105,1.66752,2.19965,4.06233,,,,,,,1.00241,1.65574,2.17434,3.98326,,,,,,,1.04115,1.64309,2.1268,3.78999,,,,,,,0.90445,1.42735,1.82691,3.20995,,,,,,,286.08159,287.4676,290.315,327.20839,,,,,,,288.21594,289.40008,291.94332,328.4659,,,,,,,292.33585,293.63208,296.36204,333.70843,,,,,,,285.86614,287.19248,289.96371,326.69096,,,,,,,292.45538,292.9487,294.44054,329.34367,,,,,,,287.95805,288.65799,290.45978,325.48771,,,,,,,290.316,290.73992,292.12654,326.5909,,,,,,,290.4387,291.23099,293.17732,328.76083,,,,,,,285.91149,286.53967,288.19674,322.69894,,,,,,,0.00582,0.00653,0.00767,0.01003,,,,,,,0.00583,0.00654,0.00767,0.01002,,,,,,,0.00592,0.00663,0.00777,0.01013,,,,,,,0.0057,0.00641,0.00753,0.00986,,,,,,,0.00589,0.0066,0.00774,0.01009,,,,,,,0.00577,0.00647,0.00759,0.00992,,,,,,,0.00581,0.00652,0.00766,0.01001,,,,,,,0.00587,0.00658,0.00772,0.01008,,,,,,,0.00592,0.00664,0.00779,0.01017,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02071,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02068,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02077,0.02675,0.02675,,,,,,,0.0518,0.07754,0.10371,0.17615,,,,,,,0.05039,0.07547,0.10122,0.17289,,,,,,,0.05182,0.08213,0.10952,0.1937,,,,,,,0.05416,0.08725,0.11622,0.20622,,,,,,,0.04268,0.07158,0.09683,0.17689,,,,,,,0.04624,0.07666,0.10323,0.18674,,,,,,,0.04351,0.07235,0.09799,0.17722,,,,,,,0.04934,0.07937,0.10632,0.18846,,,,,,,0.04355,0.06939,0.09329,0.16337,,,,,,,0.00149,0.00235,0.0031,0.00641,,,,,,,0.00142,0.00223,0.00293,0.00598,,,,,,,0.00146,0.0023,0.00305,0.0063,,,,,,,0.0015,0.00237,0.00315,0.00657,,,,,,,0.00123,0.00191,0.00246,0.0048,,,,,,,0.00126,0.00196,0.00255,0.00504,,,,,,,0.00123,0.0019,0.00245,0.00476,,,,,,,0.00132,0.00207,0.00269,0.00539,,,,,,,0.00125,0.00194,0.00249,0.00483,,,,,,,0.04406,0.04597,0.04773,0.05547,,,,,,,0.04528,0.04707,0.04868,0.05575,,,,,,,0.04944,0.05132,0.05304,0.06065,,,,,,,0.04126,0.04322,0.04504,0.05311,,,,,,,0.04801,0.04944,0.05066,0.05587,,,,,,,0.04378,0.04529,0.04659,0.05223,,,,,,,0.04393,0.04535,0.04655,0.05166,,,,,,,0.04624,0.04785,0.04926,0.05539,,,,,,,0.04585,0.04729,0.0485,0.05367,,,,,,,0.00816,0.00985,0.0114,0.01825,,,,,,,0.00818,0.00976,0.01118,0.01743,,,,,,,0.0088,0.01046,0.01198,0.01872,,,,,,,0.00784,0.00958,0.01118,0.01832,,,,,,,0.00816,0.00943,0.0105,0.01512,,,,,,,0.00769,0.00903,0.01018,0.01516,,,,,,,0.00763,0.00889,0.00995,0.01448,,,,,,,0.00812,0.00954,0.01079,0.01621,,,,,,,0.00791,0.00919,0.01026,0.01482,,,,,,,0.00275,0.00277,0.00279,0.00315,,,,,,,0.00277,0.00279,0.00281,0.00316,,,,,,,0.00281,0.00283,0.00285,0.00321,,,,,,,0.00275,0.00276,0.00279,0.00314,,,,,,,0.00281,0.00282,0.00283,0.00317,,,,,,,0.00277,0.00278,0.0028,0.00313,,,,,,,0.00279,0.0028,0.00281,0.00314,,,,,,,0.0028,0.0028,0.00282,0.00316,,,,,,,0.00275,0.00276,0.00277,0.00311,,,,,,,0.06389,0.08619,0.11637,0.1918,,,,,,,0.0548,0.07516,0.10288,0.1737,,,,,,,0.06301,0.08842,0.12102,0.21054,,,,,,,0.06967,0.09738,0.13274,0.22869,,,,,,,0.03014,0.04863,0.07204,0.14366,,,,,,,0.03646,0.05677,0.08243,0.15986,,,,,,,0.02838,0.04627,0.06911,0.13874,,,,,,,0.04229,0.06247,0.0884,0.16216,,,,,,,0.02779,0.04361,0.06402,0.12256,, +Large SUV,E85,2030,,,,,,0.00075,0.00125,0.00176,0.00323,,,,,,,0.00069,0.00113,0.00159,0.00289,,,,,,,0.00074,0.00123,0.00173,0.00318,,,,,,,0.00078,0.0013,0.00185,0.00341,,,,,,,0.0005,0.00082,0.00112,0.00197,,,,,,,0.00055,0.00089,0.00123,0.00219,,,,,,,0.00049,0.0008,0.0011,0.00191,,,,,,,0.00059,0.00097,0.00136,0.00243,,,,,,,0.0005,0.0008,0.0011,0.00192,,,,,,,0.02027,0.01277,0.01018,0.01305,,,,,,,0.01743,0.01117,0.00905,0.01178,,,,,,,0.01994,0.01314,0.01064,0.01418,,,,,,,0.02206,0.0145,0.0117,0.0155,,,,,,,0.00964,0.00734,0.00649,0.00943,,,,,,,0.01162,0.00855,0.00741,0.0106,,,,,,,0.00912,0.00703,0.00628,0.00916,,,,,,,0.01347,0.00936,0.00787,0.01081,,,,,,,0.00893,0.00658,0.00575,0.00808,,,,,,,0.97232,1.42124,1.81947,2.68038,,,,,,,0.92892,1.37493,1.76992,2.62432,,,,,,,0.98297,1.52633,2.00507,3.08947,,,,,,,1.06579,1.6598,2.1866,3.35065,,,,,,,0.80231,1.34616,1.7955,2.8177,,,,,,,0.84481,1.40798,1.8808,2.96169,,,,,,,0.82778,1.38755,1.84712,2.88449,,,,,,,0.87801,1.39696,1.82889,2.8029,,,,,,,0.74944,1.19956,1.55468,2.34922,,,,,,,260.36452,262.81881,266.92495,289.78278,,,,,,,262.24673,264.52498,268.34998,290.75923,,,,,,,266.0259,268.4239,272.44883,295.46983,,,,,,,260.16315,262.56255,266.59735,289.31316,,,,,,,265.90133,267.5649,270.40396,291.07422,,,,,,,261.87628,263.71053,266.82502,287.81376,,,,,,,263.94189,265.53345,268.26246,288.60885,,,,,,,264.15447,266.08326,269.34768,290.75899,,,,,,,259.97506,261.73392,264.69547,285.25457,,,,,,,0.00581,0.00651,0.00766,0.00997,,,,,,,0.00582,0.00651,0.00766,0.00996,,,,,,,0.00591,0.0066,0.00776,0.01007,,,,,,,0.0057,0.00638,0.00752,0.0098,,,,,,,0.00588,0.00657,0.00772,0.01003,,,,,,,0.00576,0.00644,0.00758,0.00987,,,,,,,0.00581,0.0065,0.00765,0.00995,,,,,,,0.00586,0.00656,0.00771,0.01002,,,,,,,0.00591,0.00661,0.00777,0.01011,,,,,,,0.0178,0.02067,0.02665,0.02665,,,,,,,0.01782,0.0207,0.02668,0.02668,,,,,,,0.01782,0.02069,0.02667,0.02667,,,,,,,0.01773,0.02059,0.02654,0.02654,,,,,,,0.0178,0.02068,0.02665,0.02665,,,,,,,0.01774,0.02061,0.02656,0.02656,,,,,,,0.01779,0.02066,0.02663,0.02663,,,,,,,0.01783,0.02071,0.02669,0.02669,,,,,,,0.01787,0.02075,0.02675,0.02675,,,,,,,0.04104,0.05993,0.08263,0.12928,,,,,,,0.0395,0.05784,0.0801,0.12592,,,,,,,0.04065,0.0627,0.08645,0.13981,,,,,,,0.04241,0.06646,0.0916,0.14855,,,,,,,0.03174,0.05246,0.07408,0.12331,,,,,,,0.035,0.05688,0.07971,0.13152,,,,,,,0.03237,0.05302,0.07494,0.12371,,,,,,,0.03737,0.05901,0.08215,0.13332,,,,,,,0.03235,0.05097,0.07141,0.11468,,,,,,,0.00148,0.00234,0.0031,0.0051,,,,,,,0.00141,0.00222,0.00293,0.00476,,,,,,,0.00146,0.0023,0.00305,0.00501,,,,,,,0.00149,0.00236,0.00315,0.00522,,,,,,,0.00123,0.0019,0.00246,0.00385,,,,,,,0.00126,0.00196,0.00255,0.00404,,,,,,,0.00123,0.0019,0.00245,0.00382,,,,,,,0.00132,0.00206,0.00269,0.0043,,,,,,,0.00125,0.00193,0.00249,0.00387,,,,,,,0.04405,0.04596,0.04772,0.05244,,,,,,,0.04528,0.04705,0.04867,0.05297,,,,,,,0.04943,0.0513,0.05303,0.05768,,,,,,,0.04125,0.0432,0.04503,0.04996,,,,,,,0.048,0.04943,0.05065,0.05379,,,,,,,0.04378,0.04528,0.04659,0.04999,,,,,,,0.04392,0.04534,0.04654,0.04961,,,,,,,0.04623,0.04783,0.04925,0.05296,,,,,,,0.04584,0.04728,0.0485,0.05159,,,,,,,0.00815,0.00983,0.01139,0.01557,,,,,,,0.00817,0.00974,0.01117,0.01498,,,,,,,0.00879,0.01044,0.01198,0.01609,,,,,,,0.00783,0.00956,0.01118,0.01554,,,,,,,0.00815,0.00942,0.0105,0.01327,,,,,,,0.00769,0.00902,0.01017,0.01318,,,,,,,0.00763,0.00888,0.00995,0.01266,,,,,,,0.00811,0.00953,0.01078,0.01406,,,,,,,0.0079,0.00918,0.01025,0.01299,,,,,,,0.00251,0.00253,0.00257,0.00279,,,,,,,0.00252,0.00255,0.00258,0.0028,,,,,,,0.00256,0.00258,0.00262,0.00284,,,,,,,0.0025,0.00253,0.00257,0.00278,,,,,,,0.00256,0.00258,0.0026,0.0028,,,,,,,0.00252,0.00254,0.00257,0.00277,,,,,,,0.00254,0.00256,0.00258,0.00278,,,,,,,0.00254,0.00256,0.00259,0.0028,,,,,,,0.0025,0.00252,0.00255,0.00275,,,,,,,0.06021,0.07904,0.10624,0.16041,,,,,,,0.05113,0.06806,0.09275,0.14228,,,,,,,0.05917,0.08019,0.10927,0.17104,,,,,,,0.06575,0.08876,0.12042,0.18721,,,,,,,0.02637,0.0406,0.06036,0.10457,,,,,,,0.03265,0.04853,0.07046,0.11938,,,,,,,0.0246,0.03828,0.05746,0.10014,,,,,,,0.0385,0.05463,0.07712,0.12531,,,,,,,0.02408,0.03629,0.0535,0.08983, +Large SUV,E85,2035,,,,,,,0.00075,0.00125,0.00177,0.00296,,,,,,,0.00069,0.00113,0.00159,0.00265,,,,,,,0.00074,0.00123,0.00174,0.00291,,,,,,,0.00079,0.0013,0.00185,0.00312,,,,,,,0.0005,0.00082,0.00112,0.00181,,,,,,,0.00055,0.00089,0.00123,0.00201,,,,,,,0.00049,0.0008,0.0011,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00222,,,,,,,0.0005,0.00081,0.0011,0.00176,,,,,,,0.02015,0.01276,0.01019,0.01203,,,,,,,0.01733,0.01116,0.00905,0.01073,,,,,,,0.01983,0.01313,0.01065,0.01284,,,,,,,0.02193,0.01449,0.01171,0.01407,,,,,,,0.00959,0.00734,0.0065,0.00806,,,,,,,0.01157,0.00855,0.00741,0.00917,,,,,,,0.00908,0.00703,0.00628,0.00779,,,,,,,0.0134,0.00935,0.00787,0.00955,,,,,,,0.00888,0.00658,0.00576,0.00696,,,,,,,0.9727,1.42238,1.8202,2.43547,,,,,,,0.92959,1.37608,1.77056,2.36988,,,,,,,0.98381,1.52777,2.00581,2.76979,,,,,,,1.06671,1.66135,2.1874,3.00908,,,,,,,0.80406,1.34756,1.79593,2.47612,,,,,,,0.84647,1.40943,1.88129,2.61051,,,,,,,0.82962,1.38896,1.84752,2.53495,,,,,,,0.87935,1.39821,1.82943,2.49211,,,,,,,0.75084,1.20057,1.55509,2.08006,,,,,,,260.31047,262.82875,266.94563,277.96108,,,,,,,262.19583,264.53424,268.36876,278.84923,,,,,,,265.9724,268.43366,272.4687,283.39168,,,,,,,260.10926,262.57218,266.61711,277.50646,,,,,,,265.8619,267.5714,270.4174,278.9889,,,,,,,261.83373,263.71764,266.84,275.91581,,,,,,,263.90371,265.53953,268.27494,276.61444,,,,,,,264.11009,266.09083,269.36337,278.75715,,,,,,,259.93577,261.74105,264.71003,273.42993,,,,,,,0.0058,0.00651,0.00766,0.00998,,,,,,,0.0058,0.00651,0.00766,0.00997,,,,,,,0.00589,0.00661,0.00776,0.01008,,,,,,,0.00568,0.00638,0.00752,0.00981,,,,,,,0.00587,0.00658,0.00773,0.01004,,,,,,,0.00574,0.00645,0.00759,0.00988,,,,,,,0.00579,0.0065,0.00765,0.00996,,,,,,,0.00585,0.00656,0.00771,0.01003,,,,,,,0.00589,0.00661,0.00778,0.01012,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02072,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02069,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02078,0.02675,0.02675,,,,,,,0.041,0.06006,0.08268,0.11314,,,,,,,0.03947,0.05796,0.08015,0.10973,,,,,,,0.04063,0.06284,0.0865,0.12082,,,,,,,0.0424,0.06661,0.09165,0.12807,,,,,,,0.03175,0.0526,0.07412,0.10436,,,,,,,0.03501,0.05702,0.07975,0.11195,,,,,,,0.03238,0.05316,0.07498,0.10483,,,,,,,0.03736,0.05915,0.08219,0.11394,,,,,,,0.03236,0.0511,0.07144,0.09781,,,,,,,0.00148,0.00234,0.0031,0.00469,,,,,,,0.00141,0.00222,0.00293,0.00438,,,,,,,0.00146,0.0023,0.00305,0.0046,,,,,,,0.0015,0.00237,0.00315,0.00479,,,,,,,0.00123,0.0019,0.00246,0.00354,,,,,,,0.00126,0.00196,0.00255,0.00372,,,,,,,0.00123,0.0019,0.00245,0.00352,,,,,,,0.00132,0.00207,0.00269,0.00396,,,,,,,0.00125,0.00194,0.00249,0.00357,,,,,,,0.04406,0.04596,0.04772,0.05149,,,,,,,0.04528,0.04706,0.04868,0.0521,,,,,,,0.04943,0.05131,0.05304,0.05674,,,,,,,0.04126,0.04321,0.04504,0.04898,,,,,,,0.048,0.04944,0.05066,0.05312,,,,,,,0.04378,0.04529,0.04659,0.04928,,,,,,,0.04392,0.04535,0.04654,0.04896,,,,,,,0.04623,0.04784,0.04925,0.05219,,,,,,,0.04585,0.04729,0.0485,0.05093,,,,,,,0.00815,0.00984,0.0114,0.01473,,,,,,,0.00817,0.00975,0.01118,0.01421,,,,,,,0.00879,0.01045,0.01198,0.01526,,,,,,,0.00784,0.00957,0.01118,0.01467,,,,,,,0.00815,0.00942,0.0105,0.01268,,,,,,,0.00769,0.00902,0.01018,0.01255,,,,,,,0.00763,0.00889,0.00995,0.01208,,,,,,,0.00811,0.00953,0.01079,0.01338,,,,,,,0.00791,0.00918,0.01025,0.0124,,,,,,,0.00251,0.00253,0.00257,0.00268,,,,,,,0.00252,0.00255,0.00258,0.00268,,,,,,,0.00256,0.00258,0.00262,0.00273,,,,,,,0.0025,0.00253,0.00257,0.00267,,,,,,,0.00256,0.00258,0.0026,0.00269,,,,,,,0.00252,0.00254,0.00257,0.00266,,,,,,,0.00254,0.00256,0.00258,0.00266,,,,,,,0.00254,0.00256,0.00259,0.00268,,,,,,,0.0025,0.00252,0.00255,0.00263,,,,,,,0.06006,0.07914,0.10633,0.15021,,,,,,,0.05101,0.06816,0.09282,0.13194,,,,,,,0.05903,0.0803,0.10936,0.15766,,,,,,,0.06559,0.08888,0.12052,0.17317,,,,,,,0.02632,0.04069,0.06041,0.09099,,,,,,,0.03259,0.04862,0.07052,0.10531,,,,,,,0.02456,0.03836,0.0575,0.08674,,,,,,,0.03842,0.05472,0.07719,0.11274,,,,,,,0.02404,0.03636,0.05354,0.07871 +Large SUV,E85,2040,,,,,,,,0.00075,0.00125,0.00176,,,,,,,,0.00069,0.00113,0.00159,,,,,,,,0.00074,0.00123,0.00174,,,,,,,,0.00078,0.0013,0.00185,,,,,,,,0.0005,0.00082,0.00112,,,,,,,,0.00055,0.00089,0.00123,,,,,,,,0.00049,0.0008,0.0011,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.0005,0.00081,0.0011,,,,,,,,0.02016,0.01276,0.01019,,,,,,,,0.01734,0.01116,0.00905,,,,,,,,0.01984,0.01312,0.01065,,,,,,,,0.02194,0.01448,0.01171,,,,,,,,0.00959,0.00733,0.00649,,,,,,,,0.01157,0.00855,0.00741,,,,,,,,0.00908,0.00702,0.00628,,,,,,,,0.01341,0.00935,0.00787,,,,,,,,0.00889,0.00658,0.00576,,,,,,,,0.97133,1.42139,1.81973,,,,,,,,0.92825,1.37515,1.77015,,,,,,,,0.98225,1.52666,2.00534,,,,,,,,1.06501,1.66015,2.18689,,,,,,,,0.80264,1.34667,1.79565,,,,,,,,0.84498,1.40849,1.88097,,,,,,,,0.82819,1.38808,1.84726,,,,,,,,0.87791,1.39731,1.82908,,,,,,,,0.74962,1.19987,1.55483,,,,,,,,260.29598,262.81012,266.93274,,,,,,,,262.18236,264.51678,268.35701,,,,,,,,265.95811,268.41523,272.45615,,,,,,,,260.09501,262.55362,266.60454,,,,,,,,265.85198,267.55834,270.40867,,,,,,,,261.82278,263.70337,266.8306,,,,,,,,263.89404,265.52697,268.2671,,,,,,,,264.09855,266.07588,269.35358,,,,,,,,259.92536,261.72755,264.70121,,,,,,,,0.00579,0.0065,0.00766,,,,,,,,0.0058,0.00651,0.00766,,,,,,,,0.00589,0.0066,0.00776,,,,,,,,0.00568,0.00638,0.00752,,,,,,,,0.00586,0.00657,0.00773,,,,,,,,0.00574,0.00644,0.00758,,,,,,,,0.00579,0.0065,0.00765,,,,,,,,0.00584,0.00655,0.00771,,,,,,,,0.00589,0.00661,0.00777,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01782,0.02071,0.02668,,,,,,,,0.01782,0.02071,0.02667,,,,,,,,0.01773,0.0206,0.02654,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01774,0.02062,0.02656,,,,,,,,0.01779,0.02068,0.02663,,,,,,,,0.01783,0.02072,0.02669,,,,,,,,0.01787,0.02077,0.02675,,,,,,,,0.04096,0.05997,0.08265,,,,,,,,0.03942,0.05788,0.08012,,,,,,,,0.04057,0.06274,0.08647,,,,,,,,0.04234,0.06652,0.09162,,,,,,,,0.03171,0.05252,0.07409,,,,,,,,0.03496,0.05693,0.07973,,,,,,,,0.03233,0.05307,0.07496,,,,,,,,0.03731,0.05906,0.08217,,,,,,,,0.03231,0.05102,0.07142,,,,,,,,0.00148,0.00234,0.0031,,,,,,,,0.00141,0.00222,0.00293,,,,,,,,0.00146,0.0023,0.00305,,,,,,,,0.00149,0.00237,0.00315,,,,,,,,0.00123,0.0019,0.00246,,,,,,,,0.00126,0.00196,0.00255,,,,,,,,0.00123,0.0019,0.00245,,,,,,,,0.00132,0.00206,0.00269,,,,,,,,0.00125,0.00194,0.00249,,,,,,,,0.04405,0.04596,0.04772,,,,,,,,0.04528,0.04706,0.04867,,,,,,,,0.04943,0.0513,0.05303,,,,,,,,0.04125,0.04321,0.04503,,,,,,,,0.048,0.04944,0.05066,,,,,,,,0.04378,0.04528,0.04659,,,,,,,,0.04392,0.04534,0.04654,,,,,,,,0.04623,0.04784,0.04925,,,,,,,,0.04584,0.04729,0.0485,,,,,,,,0.00815,0.00984,0.0114,,,,,,,,0.00817,0.00974,0.01118,,,,,,,,0.00879,0.01045,0.01198,,,,,,,,0.00783,0.00956,0.01118,,,,,,,,0.00815,0.00942,0.0105,,,,,,,,0.00769,0.00902,0.01018,,,,,,,,0.00763,0.00888,0.00995,,,,,,,,0.00811,0.00953,0.01078,,,,,,,,0.0079,0.00918,0.01025,,,,,,,,0.00251,0.00253,0.00257,,,,,,,,0.00252,0.00255,0.00258,,,,,,,,0.00256,0.00258,0.00262,,,,,,,,0.0025,0.00253,0.00257,,,,,,,,0.00256,0.00258,0.0026,,,,,,,,0.00252,0.00254,0.00257,,,,,,,,0.00254,0.00256,0.00258,,,,,,,,0.00254,0.00256,0.00259,,,,,,,,0.0025,0.00252,0.00255,,,,,,,,0.05999,0.07904,0.10627,,,,,,,,0.05094,0.06807,0.09277,,,,,,,,0.05895,0.08019,0.1093,,,,,,,,0.06551,0.08876,0.12046,,,,,,,,0.02628,0.04062,0.06038,,,,,,,,0.03255,0.04855,0.07048,,,,,,,,0.02453,0.0383,0.05748,,,,,,,,0.03837,0.05464,0.07715,,,,,,,,0.02401,0.0363,0.05352 +Large SUV,E85,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00113,,,,,,,,,0.00074,0.00123,,,,,,,,,0.00078,0.0013,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00054,0.00089,,,,,,,,,0.00049,0.0008,,,,,,,,,0.00059,0.00097,,,,,,,,,0.0005,0.00081,,,,,,,,,0.02016,0.01276,,,,,,,,,0.01734,0.01116,,,,,,,,,0.01983,0.01313,,,,,,,,,0.02194,0.01449,,,,,,,,,0.00959,0.00733,,,,,,,,,0.01157,0.00855,,,,,,,,,0.00908,0.00702,,,,,,,,,0.01341,0.00935,,,,,,,,,0.00889,0.00658,,,,,,,,,0.97057,1.42111,,,,,,,,,0.92751,1.37486,,,,,,,,,0.9814,1.5263,,,,,,,,,1.06408,1.65977,,,,,,,,,0.80191,1.34636,,,,,,,,,0.84421,1.40815,,,,,,,,,0.82745,1.38777,,,,,,,,,0.87715,1.39702,,,,,,,,,0.74899,1.19964,,,,,,,,,260.2849,262.80624,,,,,,,,,262.17197,264.51296,,,,,,,,,265.94722,268.4114,,,,,,,,,260.08405,262.54972,,,,,,,,,265.84418,267.55582,,,,,,,,,261.81425,263.70045,,,,,,,,,263.88663,265.52482,,,,,,,,,264.08983,266.07286,,,,,,,,,259.91741,261.72502,,,,,,,,,0.00579,0.0065,,,,,,,,,0.0058,0.0065,,,,,,,,,0.00589,0.0066,,,,,,,,,0.00567,0.00638,,,,,,,,,0.00586,0.00657,,,,,,,,,0.00574,0.00644,,,,,,,,,0.00578,0.00649,,,,,,,,,0.00584,0.00655,,,,,,,,,0.00588,0.0066,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01782,0.02071,,,,,,,,,0.01782,0.0207,,,,,,,,,0.01773,0.0206,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01774,0.02062,,,,,,,,,0.01779,0.02067,,,,,,,,,0.01783,0.02072,,,,,,,,,0.01787,0.02076,,,,,,,,,0.04093,0.05995,,,,,,,,,0.0394,0.05785,,,,,,,,,0.04054,0.06271,,,,,,,,,0.0423,0.06649,,,,,,,,,0.03168,0.05249,,,,,,,,,0.03493,0.05691,,,,,,,,,0.03231,0.05305,,,,,,,,,0.03728,0.05903,,,,,,,,,0.03229,0.051,,,,,,,,,0.00148,0.00234,,,,,,,,,0.00141,0.00222,,,,,,,,,0.00145,0.0023,,,,,,,,,0.00149,0.00237,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00126,0.00196,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00132,0.00206,,,,,,,,,0.00125,0.00194,,,,,,,,,0.04405,0.04596,,,,,,,,,0.04527,0.04705,,,,,,,,,0.04942,0.0513,,,,,,,,,0.04125,0.0432,,,,,,,,,0.048,0.04943,,,,,,,,,0.04378,0.04528,,,,,,,,,0.04392,0.04534,,,,,,,,,0.04623,0.04784,,,,,,,,,0.04584,0.04728,,,,,,,,,0.00815,0.00983,,,,,,,,,0.00817,0.00974,,,,,,,,,0.00878,0.01044,,,,,,,,,0.00783,0.00956,,,,,,,,,0.00815,0.00942,,,,,,,,,0.00768,0.00902,,,,,,,,,0.00763,0.00888,,,,,,,,,0.00811,0.00953,,,,,,,,,0.0079,0.00918,,,,,,,,,0.00251,0.00253,,,,,,,,,0.00252,0.00255,,,,,,,,,0.00256,0.00258,,,,,,,,,0.0025,0.00253,,,,,,,,,0.00256,0.00258,,,,,,,,,0.00252,0.00254,,,,,,,,,0.00254,0.00256,,,,,,,,,0.00254,0.00256,,,,,,,,,0.0025,0.00252,,,,,,,,,0.05994,0.07901,,,,,,,,,0.0509,0.06804,,,,,,,,,0.0589,0.08016,,,,,,,,,0.06546,0.08873,,,,,,,,,0.02626,0.0406,,,,,,,,,0.03252,0.04852,,,,,,,,,0.0245,0.03828,,,,,,,,,0.03834,0.05462,,,,,,,,,0.02399,0.03629 +Large SUV,E85,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00074,,,,,,,,,,0.00078,,,,,,,,,,0.0005,,,,,,,,,,0.00054,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.0005,,,,,,,,,,0.02016,,,,,,,,,,0.01734,,,,,,,,,,0.01983,,,,,,,,,,0.02194,,,,,,,,,,0.00959,,,,,,,,,,0.01157,,,,,,,,,,0.00908,,,,,,,,,,0.01341,,,,,,,,,,0.00888,,,,,,,,,,0.97058,,,,,,,,,,0.92752,,,,,,,,,,0.98142,,,,,,,,,,1.0641,,,,,,,,,,0.80192,,,,,,,,,,0.84422,,,,,,,,,,0.82746,,,,,,,,,,0.87716,,,,,,,,,,0.749,,,,,,,,,,260.28497,,,,,,,,,,262.17179,,,,,,,,,,265.94707,,,,,,,,,,260.08392,,,,,,,,,,265.84404,,,,,,,,,,261.81411,,,,,,,,,,263.88671,,,,,,,,,,264.0896,,,,,,,,,,259.91729,,,,,,,,,,0.00579,,,,,,,,,,0.0058,,,,,,,,,,0.00589,,,,,,,,,,0.00567,,,,,,,,,,0.00586,,,,,,,,,,0.00574,,,,,,,,,,0.00578,,,,,,,,,,0.00584,,,,,,,,,,0.00588,,,,,,,,,,0.0178,,,,,,,,,,0.01782,,,,,,,,,,0.01782,,,,,,,,,,0.01773,,,,,,,,,,0.0178,,,,,,,,,,0.01774,,,,,,,,,,0.01779,,,,,,,,,,0.01783,,,,,,,,,,0.01787,,,,,,,,,,0.04093,,,,,,,,,,0.0394,,,,,,,,,,0.04054,,,,,,,,,,0.04231,,,,,,,,,,0.03168,,,,,,,,,,0.03493,,,,,,,,,,0.03231,,,,,,,,,,0.03728,,,,,,,,,,0.03229,,,,,,,,,,0.00148,,,,,,,,,,0.00141,,,,,,,,,,0.00145,,,,,,,,,,0.00149,,,,,,,,,,0.00123,,,,,,,,,,0.00126,,,,,,,,,,0.00123,,,,,,,,,,0.00132,,,,,,,,,,0.00125,,,,,,,,,,0.04405,,,,,,,,,,0.04527,,,,,,,,,,0.04942,,,,,,,,,,0.04125,,,,,,,,,,0.048,,,,,,,,,,0.04378,,,,,,,,,,0.04392,,,,,,,,,,0.04623,,,,,,,,,,0.04584,,,,,,,,,,0.00815,,,,,,,,,,0.00817,,,,,,,,,,0.00878,,,,,,,,,,0.00783,,,,,,,,,,0.00815,,,,,,,,,,0.00768,,,,,,,,,,0.00763,,,,,,,,,,0.00811,,,,,,,,,,0.0079,,,,,,,,,,0.00251,,,,,,,,,,0.00252,,,,,,,,,,0.00256,,,,,,,,,,0.0025,,,,,,,,,,0.00256,,,,,,,,,,0.00252,,,,,,,,,,0.00254,,,,,,,,,,0.00254,,,,,,,,,,0.0025,,,,,,,,,,0.05994,,,,,,,,,,0.0509,,,,,,,,,,0.0589,,,,,,,,,,0.06546,,,,,,,,,,0.02626,,,,,,,,,,0.03252,,,,,,,,,,0.0245,,,,,,,,,,0.03834,,,,,,,,,,0.02399 +Large SUV,ELC,1990,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03804,,,,,,,,,,0.04547,,,,,,,,,,0.04117,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,1995,0.04086,0.04086,,,,,,,,,0.04226,0.04226,,,,,,,,,0.04628,0.04628,,,,,,,,,0.03802,0.03802,,,,,,,,,0.04546,0.04546,,,,,,,,,0.04115,0.04115,,,,,,,,,0.0414,0.04139,,,,,,,,,0.04345,0.04345,,,,,,,,,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2000,0.04087,0.04086,0.04086,,,,,,,,0.04226,0.04226,0.04226,,,,,,,,0.04629,0.04628,0.04628,,,,,,,,0.03803,0.03802,0.03802,,,,,,,,0.04547,0.04546,0.04546,,,,,,,,0.04116,0.04115,0.04115,,,,,,,,0.0414,0.0414,0.04139,,,,,,,,0.04346,0.04345,0.04345,,,,,,,,0.04327,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2005,0.04088,0.04088,0.04087,0.04087,,,,,,,0.04228,0.04227,0.04227,0.04227,,,,,,,0.0463,0.04629,0.04629,0.04629,,,,,,,0.03804,0.03804,0.03803,0.03803,,,,,,,0.04548,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04117,0.04117,0.04116,,,,,,,0.04142,0.04141,0.04141,0.04141,,,,,,,0.04347,0.04346,0.04346,0.04346,,,,,,,0.04329,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00487,0.0078,0.0106,0.02466,,,,,,,0.00446,0.00694,0.00942,0.02171,,,,,,,0.00516,0.00643,0.00867,0.02359,,,,,,,0.00532,0.00788,0.01073,0.02582,,,,,,,0.00313,0.00492,0.0067,0.01364,,,,,,,0.00351,0.00503,0.00683,0.01542,,,,,,,0.00304,0.00464,0.0063,0.013,,,,,,,0.00384,0.00554,0.00749,0.01741,,,,,,,0.00281,0.00421,0.00567,0.01291,,,,,,,0.05129,0.05749,0.0638,0.09546,,,,,,,0.0518,0.05697,0.06251,0.09006,,,,,,,0.05747,0.05985,0.06482,0.09857,,,,,,,0.04957,0.05498,0.06137,0.09554,,,,,,,0.05206,0.05572,0.0596,0.07487,,,,,,,0.04863,0.05167,0.05559,0.07463,,,,,,,0.04779,0.05106,0.05461,0.06927,,,,,,,0.05164,0.05512,0.05937,0.08145,,,,,,,0.04909,0.05192,0.05504,0.07088,,,,,,,0.01453,0.02002,0.02561,0.05361,,,,,,,0.01392,0.0185,0.0234,0.04778,,,,,,,0.01589,0.018,0.0224,0.05226,,,,,,,0.01517,0.01995,0.02561,0.05584,,,,,,,0.01173,0.01497,0.0184,0.03191,,,,,,,0.01196,0.01465,0.01812,0.03496,,,,,,,0.01103,0.01392,0.01706,0.03004,,,,,,,0.01287,0.01596,0.01972,0.03926,,,,,,,0.01076,0.01327,0.01602,0.03005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2010,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00962,0.00973,0.00928,0.02051,,,,,,,0.00993,0.01001,0.00954,0.02109,,,,,,,0.0108,0.01084,0.01029,0.0228,,,,,,,0.00897,0.0091,0.00869,0.01914,,,,,,,0.01061,0.01066,0.01013,0.02242,,,,,,,0.00965,0.00974,0.00929,0.02047,,,,,,,0.00973,0.00983,0.00937,0.0207,,,,,,,0.01019,0.01026,0.00976,0.0216,,,,,,,0.01018,0.01026,0.00977,0.02167,,,,,,,0.10286,0.10356,0.10039,0.16178,,,,,,,0.10472,0.10542,0.1022,0.16416,,,,,,,0.11007,0.11077,0.10744,0.17107,,,,,,,0.09887,0.09953,0.09643,0.15629,,,,,,,0.10893,0.10963,0.10632,0.16954,,,,,,,0.10305,0.10372,0.10052,0.16171,,,,,,,0.10352,0.10421,0.10102,0.16255,,,,,,,0.10631,0.10701,0.10376,0.16622,,,,,,,0.10624,0.10696,0.10373,0.1664,,,,,,,0.06211,0.06275,0.05983,0.11631,,,,,,,0.06275,0.06339,0.06043,0.11743,,,,,,,0.06459,0.06523,0.06217,0.12071,,,,,,,0.06059,0.06121,0.05836,0.11343,,,,,,,0.06417,0.06481,0.06177,0.11993,,,,,,,0.06205,0.06266,0.05973,0.11601,,,,,,,0.0623,0.06294,0.06001,0.11661,,,,,,,0.0633,0.06395,0.06096,0.11842,,,,,,,0.06338,0.06404,0.06108,0.11873,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2015,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00101,0.00156,0.00171,0.00625,,,,,,,0.00101,0.00158,0.00172,0.00638,,,,,,,0.00104,0.00161,0.00175,0.0068,,,,,,,0.00098,0.00153,0.00167,0.0059,,,,,,,0.00103,0.0016,0.00174,0.0067,,,,,,,0.001,0.00155,0.00169,0.00623,,,,,,,0.00101,0.00157,0.00171,0.00629,,,,,,,0.00102,0.00159,0.00173,0.00651,,,,,,,0.00103,0.0016,0.00174,0.00653,,,,,,,0.04842,0.05245,0.05361,0.08058,,,,,,,0.04982,0.05388,0.05503,0.08219,,,,,,,0.05386,0.05801,0.05915,0.08688,,,,,,,0.04553,0.04946,0.0506,0.07703,,,,,,,0.05303,0.05715,0.05829,0.08588,,,,,,,0.04868,0.05268,0.05381,0.08069,,,,,,,0.04895,0.05298,0.05413,0.08115,,,,,,,0.05102,0.0551,0.05625,0.08359,,,,,,,0.05087,0.05498,0.05615,0.08358,,,,,,,0.01202,0.01573,0.0168,0.04161,,,,,,,0.01224,0.01598,0.01703,0.04202,,,,,,,0.01288,0.0167,0.01775,0.04326,,,,,,,0.01152,0.01514,0.01619,0.0405,,,,,,,0.01274,0.01653,0.01758,0.04297,,,,,,,0.01202,0.01571,0.01674,0.04147,,,,,,,0.0121,0.01581,0.01686,0.04172,,,,,,,0.01243,0.01619,0.01725,0.0424,,,,,,,0.01245,0.01623,0.01731,0.04254,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2020,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00103,0.00153,0.00162,0.00259,,,,,,,0.00105,0.00157,0.00166,0.00268,,,,,,,0.001,0.00148,0.00157,0.00246,,,,,,,0.00105,0.00156,0.00165,0.00266,,,,,,,0.00102,0.00151,0.0016,0.00254,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00104,0.00154,0.00163,0.00262,,,,,,,0.00104,0.00155,0.00164,0.00263,,,,,,,0.04852,0.05211,0.05284,0.05901,,,,,,,0.04992,0.05354,0.05426,0.06045,,,,,,,0.05397,0.05767,0.05839,0.06467,,,,,,,0.04563,0.04913,0.04984,0.05589,,,,,,,0.05314,0.05681,0.05753,0.06378,,,,,,,0.04878,0.05235,0.05306,0.05917,,,,,,,0.04905,0.05264,0.05337,0.05953,,,,,,,0.05112,0.05476,0.05548,0.06171,,,,,,,0.05097,0.05463,0.05537,0.06164,,,,,,,0.01212,0.01542,0.01609,0.02176,,,,,,,0.01234,0.01566,0.01633,0.02203,,,,,,,0.01299,0.01638,0.01705,0.02282,,,,,,,0.01161,0.01483,0.01549,0.02106,,,,,,,0.01284,0.01622,0.01688,0.02263,,,,,,,0.01212,0.0154,0.01605,0.02168,,,,,,,0.01219,0.01549,0.01616,0.02183,,,,,,,0.01253,0.01588,0.01654,0.02227,,,,,,,0.01254,0.01591,0.01659,0.02235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2025,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2030,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2035,,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2040,,,,,,,,0.04087,0.04087,0.04087,,,,,,,,0.04227,0.04227,0.04227,,,,,,,,0.04629,0.04629,0.04629,,,,,,,,0.03803,0.03803,0.03803,,,,,,,,0.04547,0.04547,0.04547,,,,,,,,0.04116,0.04116,0.04116,,,,,,,,0.04141,0.04141,0.04141,,,,,,,,0.04346,0.04346,0.04346,,,,,,,,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2045,,,,,,,,,0.04087,0.04087,,,,,,,,,0.04227,0.04227,,,,,,,,,0.04629,0.04629,,,,,,,,,0.03803,0.03803,,,,,,,,,0.04547,0.04547,,,,,,,,,0.04116,0.04116,,,,,,,,,0.04141,0.04141,,,,,,,,,0.04346,0.04346,,,,,,,,,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,ELC,2050,,,,,,,,,,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03803,,,,,,,,,,0.04547,,,,,,,,,,0.04116,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Large SUV,GSL,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11442,,,,,,,,,,0.09585,,,,,,,,,,0.12464,,,,,,,,,,0.12966,,,,,,,,,,0.10814,,,,,,,,,,0.11861,,,,,,,,,,0.10835,,,,,,,,,,0.1068,,,,,,,,,,0.08482,,,,,,,,,,70.15811,,,,,,,,,,62.54196,,,,,,,,,,77.96616,,,,,,,,,,80.91697,,,,,,,,,,72.38807,,,,,,,,,,77.997,,,,,,,,,,74.71533,,,,,,,,,,70.08991,,,,,,,,,,57.1543,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.06226,,,,,,,,,,4.76972,,,,,,,,,,5.34074,,,,,,,,,,5.66766,,,,,,,,,,5.23406,,,,,,,,,,5.50192,,,,,,,,,,5.24575,,,,,,,,,,5.53574,,,,,,,,,,4.51405,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02745,,,,,,,,,,0.03097,,,,,,,,,,0.04398,,,,,,,,,,0.04032,,,,,,,,,,0.03589,,,,,,,,,,0.03955,,,,,,,,,,0.03599,,,,,,,,,,0.03558,,,,,,,,,,0.01678,,,,,,,,,,4.22564,,,,,,,,,,3.72577,,,,,,,,,,4.6816,,,,,,,,,,4.84299,,,,,,,,,,4.53843,,,,,,,,,,4.7422,,,,,,,,,,4.52984,,,,,,,,,,4.39906,,,,,,,,,,3.57938,,,,,,,,, +Large SUV,GSL,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07834,0.08955,,,,,,,,,0.07253,0.07705,,,,,,,,,0.0878,0.10134,,,,,,,,,0.09006,0.10986,,,,,,,,,0.07892,0.091,,,,,,,,,0.08377,0.10009,,,,,,,,,0.07835,0.09138,,,,,,,,,0.07869,0.09077,,,,,,,,,0.06582,0.0695,,,,,,,,,33.10098,45.87751,,,,,,,,,32.15986,42.12287,,,,,,,,,37.73945,51.15126,,,,,,,,,39.42476,55.14485,,,,,,,,,35.87329,48.96518,,,,,,,,,37.91924,52.52611,,,,,,,,,37.02987,51.08168,,,,,,,,,35.25583,48.79992,,,,,,,,,28.90452,38.98605,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.16127,4.97008,,,,,,,,,4.10575,4.68902,,,,,,,,,4.49028,5.09867,,,,,,,,,4.67966,5.60769,,,,,,,,,4.38662,5.19231,,,,,,,,,4.5827,5.38989,,,,,,,,,4.44028,5.22717,,,,,,,,,4.65406,5.48301,,,,,,,,,3.85393,4.48793,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02146,0.01103,,,,,,,,,0.02436,0.01117,,,,,,,,,0.03475,0.01158,,,,,,,,,0.03159,0.01935,,,,,,,,,0.0286,0.0114,,,,,,,,,0.0313,0.0113,,,,,,,,,0.02863,0.0155,,,,,,,,,0.02813,0.01763,,,,,,,,,0.01323,0.00648,,,,,,,,,2.92649,3.62043,,,,,,,,,2.80136,3.29616,,,,,,,,,3.32222,4.11029,,,,,,,,,3.37334,4.38736,,,,,,,,,3.20876,4.09625,,,,,,,,,3.29169,4.27263,,,,,,,,,3.18059,4.08943,,,,,,,,,3.16823,4.03319,,,,,,,,,2.68496,3.22983,,,,,,,, +Large SUV,GSL,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04452,0.06518,0.08837,,,,,,,,0.04162,0.0626,0.07845,,,,,,,,0.05049,0.07551,0.10228,,,,,,,,0.05159,0.07861,0.10452,,,,,,,,0.03887,0.06376,0.08816,,,,,,,,0.04211,0.06812,0.09354,,,,,,,,0.03822,0.06397,0.08493,,,,,,,,0.04204,0.0669,0.08657,,,,,,,,0.03462,0.05792,0.07008,,,,,,,,10.25924,16.32697,30.09906,,,,,,,,9.98254,16.06926,27.40491,,,,,,,,11.91904,19.01514,34.36357,,,,,,,,12.31401,19.77596,34.97153,,,,,,,,9.93079,17.0245,31.42878,,,,,,,,10.63553,17.96475,32.92924,,,,,,,,10.12637,17.55821,31.45074,,,,,,,,10.3463,17.48581,30.53883,,,,,,,,8.45249,15.00519,24.89272,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.51289,2.09817,3.52388,,,,,,,,1.48773,2.07981,3.33735,,,,,,,,1.74442,2.29361,3.74827,,,,,,,,1.78657,2.4447,3.86239,,,,,,,,1.65781,2.2775,3.75943,,,,,,,,1.72771,2.32834,3.81478,,,,,,,,1.68155,2.32093,3.63384,,,,,,,,1.76187,2.41938,3.81055,,,,,,,,1.46662,2.0601,3.17983,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.02295,0.01114,0.01008,,,,,,,,0.02608,0.01132,0.01014,,,,,,,,0.03719,0.01173,0.0103,,,,,,,,0.03387,0.01963,0.01006,,,,,,,,0.03077,0.01166,0.01023,,,,,,,,0.03367,0.01153,0.01008,,,,,,,,0.03086,0.01587,0.01013,,,,,,,,0.0302,0.01797,0.00913,,,,,,,,0.01419,0.00658,0.00474,,,,,,,,0.96721,1.62997,2.94868,,,,,,,,0.9384,1.60171,2.67264,,,,,,,,1.11521,1.90115,3.40351,,,,,,,,1.14458,1.9736,3.45647,,,,,,,,0.9639,1.73705,3.22046,,,,,,,,1.00501,1.80614,3.30293,,,,,,,,0.95405,1.73508,3.11109,,,,,,,,1.01635,1.7985,3.12546,,,,,,,,0.84435,1.56149,2.56228,,,,,,, +Large SUV,GSL,2005,0.00212,0.00345,0.00512,0.01381,,,,,,,0.0019,0.00296,0.00438,0.01185,,,,,,,0.00234,0.00262,0.00384,0.01323,,,,,,,0.00243,0.00359,0.00535,0.01487,,,,,,,0.00122,0.00192,0.00282,0.00673,,,,,,,0.00143,0.00196,0.00287,0.00786,,,,,,,0.00115,0.00175,0.00256,0.00624,,,,,,,0.00159,0.00223,0.00328,0.00914,,,,,,,0.00102,0.00151,0.00219,0.00616,,,,,,,0.0304,0.0231,0.02441,0.05089,,,,,,,0.02781,0.02093,0.0227,0.04603,,,,,,,0.03109,0.02347,0.02541,0.05799,,,,,,,0.03159,0.0268,0.02714,0.06115,,,,,,,0.01962,0.01705,0.01961,0.0483,,,,,,,0.0219,0.01846,0.02085,0.05156,,,,,,,0.01879,0.0177,0.01927,0.04665,,,,,,,0.02384,0.02035,0.02093,0.04966,,,,,,,0.01598,0.01375,0.01558,0.04103,,,,,,,4.99765,7.58544,9.83556,17.89797,,,,,,,4.86072,7.46372,9.85161,17.05656,,,,,,,5.37981,8.80655,11.78216,20.64445,,,,,,,5.58924,9.35159,11.56521,21.52199,,,,,,,4.82392,7.90825,10.69778,19.1373,,,,,,,4.98838,8.29473,11.16233,19.90684,,,,,,,4.95523,8.51253,10.80572,19.32202,,,,,,,5.07636,8.7869,10.75709,19.10472,,,,,,,4.01788,7.33294,9.65067,16.43486,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.57688,0.9134,1.18931,1.78731,,,,,,,0.56654,0.89384,1.1866,1.72824,,,,,,,0.61406,0.9886,1.29365,1.95725,,,,,,,0.61236,1.08676,1.35205,2.0448,,,,,,,0.57469,0.95493,1.26301,1.93786,,,,,,,0.59498,0.9886,1.29366,1.97501,,,,,,,0.58325,1.00264,1.26134,1.89346,,,,,,,0.62794,1.04584,1.29154,2.00371,,,,,,,0.49137,0.70134,0.92184,1.73463,,,,,,,0.00461,0.00735,0.01002,0.02419,,,,,,,0.00422,0.00653,0.00888,0.02126,,,,,,,0.00489,0.00602,0.00813,0.0231,,,,,,,0.00503,0.00746,0.01019,0.02536,,,,,,,0.00294,0.0046,0.00628,0.01327,,,,,,,0.00331,0.0047,0.0064,0.01503,,,,,,,0.00285,0.00434,0.0059,0.01265,,,,,,,0.00362,0.0052,0.00707,0.01704,,,,,,,0.00263,0.00393,0.00532,0.01261,,,,,,,0.0508,0.05663,0.06269,0.09455,,,,,,,0.05134,0.05618,0.06148,0.0892,,,,,,,0.05696,0.05906,0.06378,0.0976,,,,,,,0.04901,0.05418,0.06036,0.09466,,,,,,,0.0517,0.0551,0.05878,0.07417,,,,,,,0.04825,0.05103,0.05475,0.07388,,,,,,,0.04743,0.05048,0.05385,0.06862,,,,,,,0.05122,0.05449,0.05856,0.08076,,,,,,,0.04876,0.05141,0.05438,0.07035,,,,,,,0.0141,0.01926,0.02462,0.05281,,,,,,,0.01351,0.0178,0.02249,0.04702,,,,,,,0.01544,0.0173,0.02148,0.0514,,,,,,,0.01467,0.01925,0.02472,0.05506,,,,,,,0.01141,0.01442,0.01768,0.0313,,,,,,,0.01162,0.01409,0.01738,0.03431,,,,,,,0.0107,0.01341,0.0164,0.02946,,,,,,,0.01251,0.01541,0.01901,0.03864,,,,,,,0.01046,0.01282,0.01544,0.02957,,,,,,,0.02405,0.01163,0.01058,0.00353,,,,,,,0.02735,0.01183,0.01066,0.00355,,,,,,,0.03899,0.01224,0.01081,0.0036,,,,,,,0.03553,0.02052,0.01057,0.00352,,,,,,,0.03234,0.01222,0.01082,0.00358,,,,,,,0.03538,0.01208,0.01065,0.00353,,,,,,,0.03246,0.01665,0.01074,0.00355,,,,,,,0.0317,0.01881,0.00963,0.00351,,,,,,,0.0149,0.00689,0.005,0.00324,,,,,,,0.42648,0.52475,0.72106,1.74636,,,,,,,0.39685,0.4901,0.68226,1.61973,,,,,,,0.44587,0.54758,0.76075,1.96562,,,,,,,0.45678,0.61332,0.80526,2.04318,,,,,,,0.31439,0.43792,0.63349,1.79482,,,,,,,0.33942,0.46036,0.65752,1.84916,,,,,,,0.3037,0.44636,0.61847,1.73899,,,,,,,0.37251,0.50954,0.67999,1.82721,,,,,,,0.26545,0.37473,0.53675,1.55347,,,,,, +Large SUV,GSL,2010,,0.00157,0.00279,0.00419,0.01064,,,,,,,0.00137,0.00242,0.00368,0.00919,,,,,,,0.00119,0.00209,0.00394,0.01008,,,,,,,0.00165,0.00293,0.00446,0.0114,,,,,,,0.00098,0.0017,0.00241,0.00548,,,,,,,0.00098,0.00169,0.00265,0.00625,,,,,,,0.0009,0.00155,0.00217,0.00497,,,,,,,0.00107,0.00187,0.00296,0.00717,,,,,,,0.00076,0.00131,0.0021,0.00487,,,,,,,0.02165,0.01977,0.01702,0.03478,,,,,,,0.01902,0.01813,0.01548,0.03198,,,,,,,0.02065,0.02041,0.01743,0.03878,,,,,,,0.02443,0.02246,0.01936,0.04164,,,,,,,0.01403,0.01616,0.01352,0.03144,,,,,,,0.01498,0.01685,0.01425,0.03353,,,,,,,0.01448,0.01597,0.01338,0.03062,,,,,,,0.01729,0.01681,0.01489,0.03322,,,,,,,0.0116,0.01246,0.01304,0.0281,,,,,,,3.44122,5.48204,7.17005,12.8182,,,,,,,3.28395,5.43663,7.06009,12.50706,,,,,,,3.80434,6.37546,7.98762,15.05577,,,,,,,3.98428,6.30332,8.47995,15.81808,,,,,,,3.04027,5.57191,7.42771,13.88879,,,,,,,3.25244,5.86101,7.6771,14.49452,,,,,,,3.26874,5.66205,7.60742,14.09616,,,,,,,3.57783,5.74207,7.6032,13.96218,,,,,,,2.90847,5.08664,6.70146,12.06546,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.20883,0.3373,0.30482,0.93964,,,,,,,0.20159,0.33545,0.30099,0.92195,,,,,,,0.20829,0.36041,0.32133,1.05059,,,,,,,0.22515,0.3785,0.33898,1.10943,,,,,,,0.19498,0.34582,0.30516,1.03106,,,,,,,0.20155,0.35686,0.31495,1.05454,,,,,,,0.20478,0.34766,0.30783,1.01449,,,,,,,0.22052,0.35997,0.33564,1.07442,,,,,,,0.1504,0.25481,0.30358,0.93802,,,,,,,0.00277,0.00467,0.00659,0.01716,,,,,,,0.00258,0.00432,0.00611,0.01532,,,,,,,0.00233,0.00389,0.00632,0.01635,,,,,,,0.00281,0.00476,0.00681,0.0179,,,,,,,0.00224,0.00368,0.00491,0.01041,,,,,,,0.00218,0.00359,0.0051,0.0114,,,,,,,0.00212,0.00348,0.00462,0.0098,,,,,,,0.00224,0.00372,0.00539,0.01262,,,,,,,0.0019,0.0031,0.00449,0.00967,,,,,,,0.04704,0.0514,0.05589,0.07973,,,,,,,0.04794,0.05187,0.05601,0.07668,,,,,,,0.05138,0.05487,0.06064,0.08326,,,,,,,0.04438,0.04884,0.05368,0.07885,,,,,,,0.0502,0.05331,0.05601,0.06816,,,,,,,0.04579,0.04885,0.05225,0.06624,,,,,,,0.04588,0.04878,0.05125,0.06262,,,,,,,0.04831,0.05153,0.05532,0.07146,,,,,,,0.04723,0.04978,0.05285,0.06419,,,,,,,0.01078,0.01464,0.01861,0.0397,,,,,,,0.01051,0.01399,0.01766,0.03594,,,,,,,0.01051,0.0136,0.0187,0.03871,,,,,,,0.01058,0.01452,0.01881,0.04107,,,,,,,0.01008,0.01284,0.01523,0.02597,,,,,,,0.00945,0.01216,0.01517,0.02755,,,,,,,0.00935,0.01191,0.0141,0.02416,,,,,,,0.00994,0.01279,0.01614,0.03042,,,,,,,0.00912,0.01138,0.0141,0.02412,,,,,,,0.01101,0.00996,0.00335,0.00348,,,,,,,0.01121,0.01004,0.00337,0.0035,,,,,,,0.0116,0.01018,0.00342,0.00356,,,,,,,0.01944,0.00995,0.00335,0.00348,,,,,,,0.01159,0.01021,0.00342,0.00353,,,,,,,0.01145,0.01005,0.00337,0.00348,,,,,,,0.0158,0.01014,0.00339,0.0035,,,,,,,0.01783,0.00907,0.00335,0.00346,,,,,,,0.00653,0.00471,0.00309,0.0032,,,,,,,0.17173,0.25392,0.35959,1.19151,,,,,,,0.15094,0.23024,0.32985,1.12703,,,,,,,0.16693,0.26014,0.36786,1.31129,,,,,,,0.19399,0.28573,0.40283,1.37226,,,,,,,0.11209,0.19911,0.30088,1.17986,,,,,,,0.11929,0.20746,0.30927,1.20916,,,,,,,0.11318,0.19466,0.29494,1.14792,,,,,,,0.14195,0.22168,0.33388,1.22697,,,,,,,0.10374,0.17458,0.29386,1.08082,,,,, +Large SUV,GSL,2015,,,0.00123,0.00219,0.0034,0.00724,,,,,,,0.00111,0.00199,0.00308,0.0064,,,,,,,0.00096,0.00209,0.00324,0.00684,,,,,,,0.00127,0.00229,0.00356,0.00766,,,,,,,0.00086,0.00146,0.0022,0.00419,,,,,,,0.00084,0.00156,0.00238,0.00463,,,,,,,0.00079,0.00134,0.00201,0.00378,,,,,,,0.0009,0.00168,0.00257,0.00515,,,,,,,0.00067,0.00129,0.00195,0.00367,,,,,,,0.0161,0.01245,0.01335,0.02003,,,,,,,0.01479,0.0115,0.0125,0.01863,,,,,,,0.01536,0.01279,0.01394,0.02146,,,,,,,0.01683,0.0141,0.01531,0.02343,,,,,,,0.01147,0.01026,0.01178,0.01756,,,,,,,0.01216,0.01086,0.01235,0.01859,,,,,,,0.01154,0.01025,0.01181,0.01741,,,,,,,0.01273,0.01123,0.01255,0.01882,,,,,,,0.00958,0.01005,0.01142,0.01653,,,,,,,2.41892,4.33656,5.91935,8.93887,,,,,,,2.4121,4.33186,5.94321,8.88324,,,,,,,2.65083,4.79052,6.72794,10.4182,,,,,,,2.63872,5.10144,7.17506,11.02674,,,,,,,2.3185,4.66114,6.60144,9.92382,,,,,,,2.42459,4.7745,6.77574,10.28752,,,,,,,2.38443,4.79547,6.77741,10.16121,,,,,,,2.43831,4.72761,6.59275,9.93234,,,,,,,2.18539,4.24202,5.86133,8.70142,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.12726,0.15779,0.2359,0.43831,,,,,,,0.12661,0.1551,0.23259,0.43239,,,,,,,0.12663,0.16699,0.24899,0.47981,,,,,,,0.13269,0.17823,0.26561,0.51064,,,,,,,0.11633,0.15513,0.23427,0.46006,,,,,,,0.12172,0.16201,0.24382,0.47478,,,,,,,0.11917,0.15687,0.2372,0.45947,,,,,,,0.12664,0.17298,0.25908,0.49504,,,,,,,0.09155,0.15494,0.23271,0.43913,,,,,,,0.00236,0.00401,0.00584,0.01128,,,,,,,0.00224,0.00382,0.00553,0.01038,,,,,,,0.00203,0.00389,0.00565,0.01079,,,,,,,0.00237,0.00407,0.00595,0.01163,,,,,,,0.00203,0.00332,0.00471,0.00801,,,,,,,0.00197,0.00339,0.00484,0.00843,,,,,,,0.00194,0.00316,0.00447,0.00751,,,,,,,0.00199,0.0035,0.00502,0.009,,,,,,,0.00174,0.00308,0.00435,0.00734,,,,,,,0.04603,0.04969,0.05391,0.06664,,,,,,,0.04711,0.05059,0.05449,0.06575,,,,,,,0.05065,0.05481,0.05885,0.07088,,,,,,,0.04324,0.04704,0.05139,0.06479,,,,,,,0.04972,0.05245,0.0555,0.06291,,,,,,,0.0453,0.04835,0.05156,0.05973,,,,,,,0.04545,0.04801,0.05085,0.05764,,,,,,,0.04769,0.05095,0.05435,0.06346,,,,,,,0.04686,0.0497,0.05247,0.05913,,,,,,,0.00989,0.01312,0.01686,0.02812,,,,,,,0.00978,0.01286,0.01631,0.02627,,,,,,,0.00987,0.01354,0.01712,0.02776,,,,,,,0.00957,0.01294,0.01679,0.02864,,,,,,,0.00967,0.01208,0.01478,0.02133,,,,,,,0.00902,0.01172,0.01456,0.02178,,,,,,,0.00896,0.01123,0.01375,0.01975,,,,,,,0.00939,0.01228,0.01528,0.02334,,,,,,,0.0088,0.01131,0.01376,0.01965,,,,,,,0.008,0.00268,0.00271,0.00298,,,,,,,0.00806,0.0027,0.00272,0.003,,,,,,,0.00817,0.00274,0.00276,0.00305,,,,,,,0.00799,0.00268,0.0027,0.00298,,,,,,,0.00821,0.00274,0.00276,0.00302,,,,,,,0.00807,0.0027,0.00272,0.00298,,,,,,,0.00815,0.00272,0.00274,0.003,,,,,,,0.00729,0.00268,0.0027,0.00297,,,,,,,0.00379,0.00248,0.00249,0.00274,,,,,,,0.12213,0.17712,0.29005,0.70735,,,,,,,0.11203,0.16409,0.27404,0.67698,,,,,,,0.11963,0.18088,0.30198,0.74968,,,,,,,0.12863,0.1961,0.32415,0.78504,,,,,,,0.08956,0.14979,0.26931,0.68556,,,,,,,0.09364,0.15442,0.27381,0.69274,,,,,,,0.08864,0.14766,0.26602,0.67221,,,,,,,0.10326,0.16643,0.28822,0.71931,,,,,,,0.08381,0.14803,0.26422,0.66019,,,, +Large SUV,GSL,2020,,,,0.00111,0.0019,0.0027,0.00544,,,,,,,0.00102,0.00173,0.00245,0.00487,,,,,,,0.00106,0.00181,0.00257,0.00515,,,,,,,0.00115,0.00198,0.00282,0.00571,,,,,,,0.00077,0.00128,0.00177,0.00335,,,,,,,0.00081,0.00137,0.00191,0.00365,,,,,,,0.00071,0.00118,0.00162,0.00303,,,,,,,0.00087,0.00147,0.00206,0.004,,,,,,,0.00068,0.00114,0.00157,0.00294,,,,,,,0.01244,0.01062,0.01056,0.0145,,,,,,,0.01117,0.00971,0.00975,0.01343,,,,,,,0.01176,0.0108,0.01086,0.0154,,,,,,,0.013,0.01196,0.01199,0.01693,,,,,,,0.00797,0.00826,0.00862,0.01244,,,,,,,0.00867,0.00885,0.00916,0.01322,,,,,,,0.00792,0.00822,0.0086,0.01238,,,,,,,0.00964,0.00923,0.00945,0.01342,,,,,,,0.00815,0.00802,0.00832,0.01173,,,,,,,1.98412,3.05614,3.85917,5.9948,,,,,,,1.94741,3.02329,3.82708,5.94981,,,,,,,2.05353,3.34712,4.32508,6.99457,,,,,,,2.18775,3.57736,4.63745,7.44986,,,,,,,1.85063,3.15883,4.09436,6.61173,,,,,,,1.9126,3.25918,4.23944,6.88954,,,,,,,1.91411,3.25336,4.21327,6.78993,,,,,,,1.97565,3.24561,4.16121,6.63788,,,,,,,1.76168,2.88267,3.66119,5.76271,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.08638,0.14226,0.19125,0.27057,,,,,,,0.08489,0.13968,0.18814,0.26613,,,,,,,0.08555,0.1498,0.20047,0.28994,,,,,,,0.09023,0.16047,0.21466,0.31065,,,,,,,0.07577,0.13797,0.18613,0.27156,,,,,,,0.08,0.14491,0.19507,0.28341,,,,,,,0.07763,0.14,0.18915,0.27379,,,,,,,0.08826,0.155,0.20807,0.29902,,,,,,,0.08019,0.13849,0.18641,0.26551,,,,,,,0.00215,0.00349,0.00466,0.00836,,,,,,,0.00207,0.00334,0.00442,0.00782,,,,,,,0.00209,0.00339,0.00451,0.00805,,,,,,,0.00218,0.00354,0.00474,0.00857,,,,,,,0.00183,0.00291,0.00379,0.00638,,,,,,,0.00186,0.00297,0.00388,0.00662,,,,,,,0.00175,0.00277,0.00359,0.006,,,,,,,0.00191,0.00307,0.00402,0.00695,,,,,,,0.0017,0.0027,0.0035,0.00585,,,,,,,0.04555,0.04855,0.05126,0.06005,,,,,,,0.04671,0.04953,0.05203,0.06001,,,,,,,0.05082,0.05371,0.05631,0.06468,,,,,,,0.04279,0.04586,0.04866,0.05781,,,,,,,0.04928,0.0516,0.05353,0.05938,,,,,,,0.04507,0.04747,0.0495,0.05576,,,,,,,0.04503,0.04721,0.04899,0.05437,,,,,,,0.0475,0.05002,0.05218,0.05893,,,,,,,0.0468,0.04892,0.05067,0.05592,,,,,,,0.00946,0.01211,0.01451,0.02229,,,,,,,0.00943,0.01192,0.01414,0.0212,,,,,,,0.01001,0.01257,0.01487,0.02228,,,,,,,0.00917,0.01189,0.01437,0.02247,,,,,,,0.00928,0.01133,0.01303,0.01821,,,,,,,0.00882,0.01094,0.01274,0.01827,,,,,,,0.0086,0.01052,0.0121,0.01686,,,,,,,0.00923,0.01145,0.01337,0.01934,,,,,,,0.00875,0.01062,0.01217,0.01681,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00231,0.00232,0.00234,0.00256,,,,,,,0.00234,0.00235,0.00238,0.0026,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00235,0.00235,0.00237,0.00257,,,,,,,0.00231,0.00232,0.00234,0.00254,,,,,,,0.00233,0.00234,0.00235,0.00255,,,,,,,0.00229,0.0023,0.00232,0.00252,,,,,,,0.00212,0.00213,0.00214,0.00233,,,,,,,0.10681,0.15223,0.23047,0.5305,,,,,,,0.09676,0.13927,0.21444,0.5076,,,,,,,0.10312,0.1544,0.23771,0.55665,,,,,,,0.11204,0.16827,0.25638,0.58055,,,,,,,0.07433,0.12126,0.20009,0.5114,,,,,,,0.07854,0.12688,0.20621,0.51463,,,,,,,0.073,0.11854,0.19561,0.50045,,,,,,,0.08874,0.13765,0.21919,0.53537,,,,,,,0.07465,0.11889,0.19504,0.49641,,, +Large SUV,GSL,2025,,,,,0.00073,0.00122,0.00173,0.00388,,,,,,,0.00067,0.00111,0.00157,0.00349,,,,,,,0.0007,0.00116,0.00165,0.00368,,,,,,,0.00076,0.00127,0.0018,0.00405,,,,,,,0.0005,0.00082,0.00114,0.00243,,,,,,,0.00054,0.00088,0.00122,0.00265,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00057,0.00094,0.00132,0.00289,,,,,,,0.00045,0.00073,0.00101,0.00215,,,,,,,0.00983,0.00771,0.00747,0.01097,,,,,,,0.00855,0.00681,0.00667,0.00999,,,,,,,0.00921,0.00761,0.00744,0.01151,,,,,,,0.01035,0.00853,0.00832,0.01275,,,,,,,0.00522,0.0049,0.00505,0.0086,,,,,,,0.00595,0.00546,0.00556,0.00931,,,,,,,0.00509,0.00481,0.00498,0.0085,,,,,,,0.00692,0.00598,0.00599,0.00962,,,,,,,0.00526,0.00476,0.00489,0.00805,,,,,,,1.32356,1.935,2.47035,4.16644,,,,,,,1.26208,1.86822,2.39568,4.08539,,,,,,,1.34874,2.08374,2.71997,4.83941,,,,,,,1.44605,2.24291,2.93583,5.18495,,,,,,,1.09246,1.8126,2.39449,4.39793,,,,,,,1.15543,1.90448,2.52006,4.63139,,,,,,,1.12816,1.86764,2.46557,4.52168,,,,,,,1.22197,1.93084,2.51333,4.48306,,,,,,,1.0488,1.66708,2.15449,3.822,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.053,0.07997,0.10739,0.18231,,,,,,,0.05125,0.07748,0.10434,0.17814,,,,,,,0.05177,0.08246,0.11045,0.19456,,,,,,,0.05492,0.08867,0.11867,0.20937,,,,,,,0.04278,0.07194,0.09773,0.17747,,,,,,,0.04625,0.07691,0.10402,0.18706,,,,,,,0.04386,0.07318,0.09951,0.17892,,,,,,,0.05133,0.08292,0.11176,0.19769,,,,,,,0.04556,0.07312,0.09907,0.17375,,,,,,,0.00142,0.00225,0.00301,0.00602,,,,,,,0.00136,0.00216,0.00286,0.00565,,,,,,,0.00138,0.00219,0.00291,0.0058,,,,,,,0.00144,0.00228,0.00306,0.00614,,,,,,,0.00121,0.00189,0.00245,0.00465,,,,,,,0.00123,0.00192,0.00251,0.00482,,,,,,,0.00115,0.00179,0.00232,0.00436,,,,,,,0.00126,0.00198,0.0026,0.00505,,,,,,,0.00113,0.00175,0.00227,0.00428,,,,,,,0.04396,0.04582,0.04757,0.05464,,,,,,,0.0452,0.04695,0.04857,0.05506,,,,,,,0.04928,0.05108,0.05275,0.05951,,,,,,,0.04117,0.04307,0.04487,0.05217,,,,,,,0.04799,0.04943,0.05068,0.0556,,,,,,,0.04374,0.04523,0.04655,0.05177,,,,,,,0.0438,0.04515,0.04632,0.05084,,,,,,,0.04613,0.04769,0.04909,0.05468,,,,,,,0.04561,0.04693,0.04807,0.05253,,,,,,,0.00805,0.0097,0.01125,0.01751,,,,,,,0.00809,0.00964,0.01107,0.01682,,,,,,,0.00865,0.01024,0.01172,0.01771,,,,,,,0.00774,0.00942,0.01102,0.01747,,,,,,,0.00813,0.00941,0.01052,0.01486,,,,,,,0.00764,0.00896,0.01013,0.01474,,,,,,,0.00751,0.00871,0.00973,0.01373,,,,,,,0.00801,0.0094,0.01064,0.01558,,,,,,,0.00769,0.00886,0.00986,0.01381,,,,,,,0.00189,0.0019,0.00191,0.00214,,,,,,,0.0019,0.00191,0.00193,0.00215,,,,,,,0.00193,0.00194,0.00195,0.00218,,,,,,,0.00188,0.00189,0.00191,0.00214,,,,,,,0.00193,0.00193,0.00194,0.00216,,,,,,,0.0019,0.0019,0.00192,0.00213,,,,,,,0.00191,0.00192,0.00193,0.00214,,,,,,,0.00189,0.00189,0.00191,0.00212,,,,,,,0.00174,0.00175,0.00176,0.00195,,,,,,,0.09086,0.11927,0.17637,0.44935,,,,,,,0.08047,0.10611,0.16004,0.42736,,,,,,,0.08702,0.11866,0.17889,0.46919,,,,,,,0.09566,0.13072,0.1944,0.48789,,,,,,,0.05626,0.08246,0.13652,0.42084,,,,,,,0.06117,0.0888,0.14363,0.42523,,,,,,,0.05454,0.07911,0.13102,0.40845,,,,,,,0.07055,0.09906,0.15616,0.44357,,,,,,,0.05554,0.07992,0.13197,0.40789,, +Large SUV,GSL,2030,,,,,,0.00073,0.00121,0.00172,0.00318,,,,,,,0.00067,0.00111,0.00156,0.00286,,,,,,,0.0007,0.00116,0.00163,0.00302,,,,,,,0.00076,0.00126,0.00178,0.00332,,,,,,,0.0005,0.00082,0.00113,0.002,,,,,,,0.00053,0.00088,0.00121,0.00218,,,,,,,0.00046,0.00075,0.00103,0.00181,,,,,,,0.00057,0.00094,0.00131,0.00237,,,,,,,0.00045,0.00073,0.00101,0.00177,,,,,,,0.0091,0.00694,0.00673,0.00917,,,,,,,0.00781,0.00605,0.00593,0.00818,,,,,,,0.00848,0.00675,0.00662,0.00933,,,,,,,0.00959,0.0076,0.00743,0.01041,,,,,,,0.00446,0.00402,0.00419,0.00636,,,,,,,0.0052,0.00456,0.00468,0.00702,,,,,,,0.00431,0.00391,0.0041,0.00625,,,,,,,0.00617,0.00513,0.00516,0.00749,,,,,,,0.00447,0.00391,0.00405,0.00601,,,,,,,1.17118,1.70869,2.20698,3.28782,,,,,,,1.10423,1.6357,2.12259,3.1829,,,,,,,1.18602,1.82687,2.41172,3.73977,,,,,,,1.27427,1.96961,2.60597,4.02112,,,,,,,0.91825,1.54056,2.06129,3.26417,,,,,,,0.98099,1.62928,2.18245,3.46347,,,,,,,0.94724,1.58654,2.12244,3.35708,,,,,,,1.04789,1.66456,2.19203,3.3993,,,,,,,0.88389,1.42109,1.85989,2.86598,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.0429,0.06364,0.0876,0.13698,,,,,,,0.04106,0.06117,0.08456,0.13284,,,,,,,0.04138,0.0646,0.08899,0.14366,,,,,,,0.04391,0.06942,0.09553,0.15458,,,,,,,0.03266,0.05446,0.07671,0.12705,,,,,,,0.03584,0.05881,0.08225,0.13513,,,,,,,0.03351,0.05544,0.0781,0.12836,,,,,,,0.04,0.06385,0.08888,0.14384,,,,,,,0.03505,0.05596,0.07853,0.12591,,,,,,,0.00142,0.00225,0.00299,0.00497,,,,,,,0.00136,0.00215,0.00284,0.00467,,,,,,,0.00138,0.00218,0.0029,0.00479,,,,,,,0.00143,0.00228,0.00303,0.00508,,,,,,,0.00121,0.00188,0.00244,0.00386,,,,,,,0.00123,0.00192,0.0025,0.004,,,,,,,0.00115,0.00179,0.00231,0.00363,,,,,,,0.00126,0.00198,0.00259,0.00418,,,,,,,0.00112,0.00175,0.00227,0.00355,,,,,,,0.04395,0.04581,0.04752,0.05222,,,,,,,0.04519,0.04694,0.04853,0.05283,,,,,,,0.04927,0.05106,0.05271,0.05719,,,,,,,0.04116,0.04306,0.04481,0.04968,,,,,,,0.04798,0.04942,0.05065,0.05387,,,,,,,0.04374,0.04523,0.04652,0.04995,,,,,,,0.04379,0.04515,0.04628,0.04924,,,,,,,0.04613,0.04769,0.04907,0.05273,,,,,,,0.04561,0.04693,0.04806,0.05094,,,,,,,0.00805,0.00969,0.01121,0.01536,,,,,,,0.00809,0.00963,0.01104,0.01484,,,,,,,0.00865,0.01023,0.01169,0.01565,,,,,,,0.00773,0.00941,0.01096,0.01527,,,,,,,0.00813,0.0094,0.01049,0.01334,,,,,,,0.00764,0.00896,0.0101,0.01313,,,,,,,0.0075,0.0087,0.0097,0.01232,,,,,,,0.00801,0.00939,0.01061,0.01386,,,,,,,0.00769,0.00886,0.00986,0.01241,,,,,,,0.00173,0.00174,0.00177,0.00192,,,,,,,0.00174,0.00175,0.00178,0.00192,,,,,,,0.00177,0.00178,0.00181,0.00195,,,,,,,0.00173,0.00174,0.00177,0.00191,,,,,,,0.00176,0.00178,0.00179,0.00193,,,,,,,0.00174,0.00175,0.00177,0.0019,,,,,,,0.00175,0.00176,0.00178,0.00191,,,,,,,0.00173,0.00174,0.00176,0.0019,,,,,,,0.0016,0.00161,0.00162,0.00175,,,,,,,0.0862,0.11097,0.16487,0.39748,,,,,,,0.07579,0.09787,0.14854,0.37511,,,,,,,0.08233,0.1096,0.16628,0.4108,,,,,,,0.09081,0.12111,0.18091,0.4273,,,,,,,0.05129,0.07306,0.123,0.35862,,,,,,,0.05632,0.07942,0.1302,0.36379,,,,,,,0.0495,0.06962,0.1173,0.34581,,,,,,,0.06547,0.08966,0.14269,0.38263,,,,,,,0.05029,0.07054,0.11865,0.34825, +Large SUV,GSL,2035,,,,,,,0.00073,0.0012,0.00172,0.00294,,,,,,,0.00067,0.0011,0.00156,0.00265,,,,,,,0.00069,0.00115,0.00164,0.00279,,,,,,,0.00075,0.00124,0.00179,0.00307,,,,,,,0.0005,0.00081,0.00113,0.00185,,,,,,,0.00053,0.00087,0.00122,0.00201,,,,,,,0.00046,0.00075,0.00103,0.00168,,,,,,,0.00057,0.00093,0.00131,0.00219,,,,,,,0.00045,0.00073,0.00101,0.00163,,,,,,,0.00908,0.00695,0.00672,0.0085,,,,,,,0.00779,0.00605,0.00592,0.00751,,,,,,,0.00846,0.00676,0.00661,0.0085,,,,,,,0.00956,0.00762,0.00742,0.00952,,,,,,,0.00445,0.00402,0.00418,0.00551,,,,,,,0.00519,0.00457,0.00467,0.00614,,,,,,,0.0043,0.00391,0.00409,0.0054,,,,,,,0.00615,0.00513,0.00515,0.00668,,,,,,,0.00446,0.00391,0.00405,0.00526,,,,,,,1.16868,1.71324,2.20253,2.98485,,,,,,,1.10186,1.6388,2.11914,2.87174,,,,,,,1.18344,1.83083,2.4075,3.35064,,,,,,,1.27152,1.9735,2.60169,3.6076,,,,,,,0.91609,1.53888,2.06095,2.86559,,,,,,,0.9787,1.62843,2.1815,3.05052,,,,,,,0.94514,1.58555,2.12161,2.94713,,,,,,,1.0454,1.66457,2.1905,3.02057,,,,,,,0.88179,1.42046,1.85907,2.53587,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04276,0.06341,0.08764,0.12009,,,,,,,0.04092,0.06095,0.08461,0.11594,,,,,,,0.04123,0.06436,0.08905,0.12426,,,,,,,0.04375,0.06913,0.09561,0.13359,,,,,,,0.03255,0.05427,0.07674,0.10779,,,,,,,0.03572,0.0586,0.08229,0.11525,,,,,,,0.03341,0.05522,0.07816,0.10912,,,,,,,0.03987,0.06367,0.0889,0.12337,,,,,,,0.03495,0.05586,0.07851,0.10793,,,,,,,0.00141,0.00224,0.003,0.00461,,,,,,,0.00136,0.00214,0.00285,0.00434,,,,,,,0.00137,0.00217,0.0029,0.00445,,,,,,,0.00143,0.00226,0.00304,0.00471,,,,,,,0.0012,0.00187,0.00245,0.00359,,,,,,,0.00122,0.00191,0.0025,0.00371,,,,,,,0.00115,0.00178,0.00232,0.00338,,,,,,,0.00126,0.00197,0.0026,0.00388,,,,,,,0.00112,0.00175,0.00227,0.00329,,,,,,,0.04394,0.04577,0.04754,0.05138,,,,,,,0.04518,0.04691,0.04854,0.05205,,,,,,,0.04926,0.05103,0.05272,0.05639,,,,,,,0.04114,0.04301,0.04484,0.04884,,,,,,,0.04798,0.0494,0.05066,0.05326,,,,,,,0.04373,0.0452,0.04654,0.04931,,,,,,,0.04379,0.04512,0.0463,0.04869,,,,,,,0.04612,0.04766,0.04908,0.05205,,,,,,,0.0456,0.04692,0.04806,0.05038,,,,,,,0.00804,0.00966,0.01122,0.01462,,,,,,,0.00808,0.0096,0.01105,0.01415,,,,,,,0.00864,0.0102,0.0117,0.01494,,,,,,,0.00772,0.00937,0.01099,0.01452,,,,,,,0.00812,0.00938,0.0105,0.0128,,,,,,,0.00763,0.00893,0.01011,0.01257,,,,,,,0.00749,0.00867,0.00971,0.01183,,,,,,,0.008,0.00937,0.01062,0.01325,,,,,,,0.00768,0.00885,0.00986,0.01191,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00174,0.00175,0.00178,0.00185,,,,,,,0.00176,0.00178,0.00181,0.00188,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00176,0.00178,0.00179,0.00185,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00175,0.00176,0.00178,0.00183,,,,,,,0.00173,0.00174,0.00176,0.00182,,,,,,,0.0016,0.00161,0.00162,0.00168,,,,,,,0.08589,0.11097,0.16466,0.37821,,,,,,,0.07552,0.09786,0.14836,0.35567,,,,,,,0.08204,0.10964,0.16604,0.38863,,,,,,,0.09048,0.12107,0.1807,0.4043,,,,,,,0.05111,0.07292,0.12293,0.33508,,,,,,,0.05612,0.07932,0.13009,0.34042,,,,,,,0.04933,0.06946,0.11726,0.32215,,,,,,,0.06521,0.08942,0.14265,0.35977,,,,,,,0.05012,0.07044,0.11856,0.32597 +Large SUV,GSL,2040,,,,,,,,0.00072,0.00121,0.00173,,,,,,,,0.00066,0.0011,0.00157,,,,,,,,0.00069,0.00115,0.00165,,,,,,,,0.00074,0.00125,0.0018,,,,,,,,0.0005,0.00082,0.00114,,,,,,,,0.00053,0.00087,0.00122,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00057,0.00094,0.00132,,,,,,,,0.00045,0.00073,0.00101,,,,,,,,0.00909,0.00694,0.00671,,,,,,,,0.0078,0.00604,0.00591,,,,,,,,0.00848,0.00675,0.0066,,,,,,,,0.00958,0.0076,0.00741,,,,,,,,0.00445,0.00402,0.00417,,,,,,,,0.0052,0.00456,0.00467,,,,,,,,0.0043,0.00391,0.00409,,,,,,,,0.00615,0.00512,0.00515,,,,,,,,0.00446,0.0039,0.00405,,,,,,,,1.17274,1.70986,2.19797,,,,,,,,1.10473,1.63617,2.11558,,,,,,,,1.1875,1.82775,2.40328,,,,,,,,1.27601,1.97041,2.59749,,,,,,,,0.91541,1.53869,2.06067,,,,,,,,0.9788,1.6278,2.18062,,,,,,,,0.94491,1.58502,2.12074,,,,,,,,1.04589,1.66344,2.18904,,,,,,,,0.88133,1.41976,1.85822,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04261,0.06343,0.0877,,,,,,,,0.04078,0.06097,0.08466,,,,,,,,0.04108,0.06439,0.08912,,,,,,,,0.04356,0.06918,0.09572,,,,,,,,0.03244,0.05429,0.07679,,,,,,,,0.0356,0.05862,0.08234,,,,,,,,0.03328,0.05525,0.07822,,,,,,,,0.03976,0.06367,0.08892,,,,,,,,0.03489,0.05583,0.07848,,,,,,,,0.0014,0.00224,0.00301,,,,,,,,0.00135,0.00214,0.00286,,,,,,,,0.00137,0.00217,0.00291,,,,,,,,0.00142,0.00227,0.00305,,,,,,,,0.0012,0.00188,0.00245,,,,,,,,0.00122,0.00191,0.00251,,,,,,,,0.00114,0.00178,0.00232,,,,,,,,0.00125,0.00197,0.0026,,,,,,,,0.00112,0.00175,0.00227,,,,,,,,0.04392,0.04578,0.04756,,,,,,,,0.04517,0.04692,0.04856,,,,,,,,0.04924,0.05104,0.05274,,,,,,,,0.04112,0.04302,0.04487,,,,,,,,0.04796,0.04941,0.05068,,,,,,,,0.04371,0.04521,0.04655,,,,,,,,0.04377,0.04513,0.04631,,,,,,,,0.0461,0.04767,0.04909,,,,,,,,0.0456,0.04692,0.04806,,,,,,,,0.00802,0.00967,0.01124,,,,,,,,0.00806,0.00961,0.01107,,,,,,,,0.00862,0.01021,0.01172,,,,,,,,0.00769,0.00938,0.01101,,,,,,,,0.00811,0.00939,0.01051,,,,,,,,0.00762,0.00894,0.01013,,,,,,,,0.00748,0.00868,0.00973,,,,,,,,0.00799,0.00937,0.01063,,,,,,,,0.00768,0.00885,0.00986,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00174,0.00175,0.00178,,,,,,,,0.00176,0.00178,0.00181,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00176,0.00178,0.00179,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00175,0.00176,0.00178,,,,,,,,0.00173,0.00174,0.00176,,,,,,,,0.00159,0.00161,0.00162,,,,,,,,0.08595,0.11086,0.16458,,,,,,,,0.07555,0.09777,0.14829,,,,,,,,0.08213,0.10952,0.16594,,,,,,,,0.09052,0.12098,0.18066,,,,,,,,0.05106,0.07292,0.12299,,,,,,,,0.0561,0.0793,0.13013,,,,,,,,0.04926,0.06947,0.11733,,,,,,,,0.0651,0.08947,0.14281,,,,,,,,0.05009,0.07042,0.11858 +Large SUV,GSL,2045,,,,,,,,,0.00072,0.00121,,,,,,,,,0.00066,0.00111,,,,,,,,,0.00069,0.00116,,,,,,,,,0.00075,0.00126,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00053,0.00087,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00057,0.00094,,,,,,,,,0.00045,0.00073,,,,,,,,,0.00908,0.00693,,,,,,,,,0.00779,0.00604,,,,,,,,,0.00847,0.00674,,,,,,,,,0.00957,0.00759,,,,,,,,,0.00445,0.00401,,,,,,,,,0.00519,0.00455,,,,,,,,,0.0043,0.00391,,,,,,,,,0.00615,0.00512,,,,,,,,,0.00445,0.0039,,,,,,,,,1.1703,1.70666,,,,,,,,,1.10291,1.6338,,,,,,,,,1.18509,1.82476,,,,,,,,,1.27337,1.96738,,,,,,,,,0.91541,1.53891,,,,,,,,,0.9784,1.62753,,,,,,,,,0.9447,1.58486,,,,,,,,,1.04524,1.66273,,,,,,,,,0.88121,1.41952,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04265,0.06351,,,,,,,,,0.04082,0.06104,,,,,,,,,0.04112,0.06448,,,,,,,,,0.04362,0.06929,,,,,,,,,0.03247,0.05434,,,,,,,,,0.03563,0.05869,,,,,,,,,0.03331,0.05532,,,,,,,,,0.03978,0.06372,,,,,,,,,0.0349,0.05584,,,,,,,,,0.00141,0.00225,,,,,,,,,0.00135,0.00215,,,,,,,,,0.00137,0.00218,,,,,,,,,0.00142,0.00228,,,,,,,,,0.0012,0.00188,,,,,,,,,0.00122,0.00192,,,,,,,,,0.00114,0.00179,,,,,,,,,0.00125,0.00198,,,,,,,,,0.00112,0.00175,,,,,,,,,0.04392,0.0458,,,,,,,,,0.04517,0.04693,,,,,,,,,0.04925,0.05106,,,,,,,,,0.04113,0.04305,,,,,,,,,0.04797,0.04942,,,,,,,,,0.04372,0.04522,,,,,,,,,0.04377,0.04514,,,,,,,,,0.04611,0.04768,,,,,,,,,0.0456,0.04692,,,,,,,,,0.00802,0.00968,,,,,,,,,0.00807,0.00963,,,,,,,,,0.00863,0.01022,,,,,,,,,0.0077,0.0094,,,,,,,,,0.00811,0.0094,,,,,,,,,0.00762,0.00895,,,,,,,,,0.00749,0.00869,,,,,,,,,0.00799,0.00938,,,,,,,,,0.00768,0.00885,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00175,0.00176,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00159,0.00161,,,,,,,,,0.08586,0.11079,,,,,,,,,0.07549,0.09771,,,,,,,,,0.08204,0.10943,,,,,,,,,0.09044,0.12092,,,,,,,,,0.05105,0.07294,,,,,,,,,0.05607,0.0793,,,,,,,,,0.04926,0.0695,,,,,,,,,0.06511,0.08954,,,,,,,,,0.05007,0.07042 +Large SUV,GSL,2050,,,,,,,,,,0.00073,,,,,,,,,,0.00067,,,,,,,,,,0.00069,,,,,,,,,,0.00075,,,,,,,,,,0.0005,,,,,,,,,,0.00053,,,,,,,,,,0.00046,,,,,,,,,,0.00057,,,,,,,,,,0.00045,,,,,,,,,,0.00907,,,,,,,,,,0.00778,,,,,,,,,,0.00845,,,,,,,,,,0.00955,,,,,,,,,,0.00444,,,,,,,,,,0.00518,,,,,,,,,,0.0043,,,,,,,,,,0.00614,,,,,,,,,,0.00445,,,,,,,,,,1.16765,,,,,,,,,,1.10092,,,,,,,,,,1.18243,,,,,,,,,,1.27045,,,,,,,,,,0.91538,,,,,,,,,,0.97793,,,,,,,,,,0.94442,,,,,,,,,,1.04454,,,,,,,,,,0.88107,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.0427,,,,,,,,,,0.04087,,,,,,,,,,0.04118,,,,,,,,,,0.0437,,,,,,,,,,0.03251,,,,,,,,,,0.03568,,,,,,,,,,0.03336,,,,,,,,,,0.03982,,,,,,,,,,0.03491,,,,,,,,,,0.00141,,,,,,,,,,0.00136,,,,,,,,,,0.00137,,,,,,,,,,0.00143,,,,,,,,,,0.0012,,,,,,,,,,0.00122,,,,,,,,,,0.00115,,,,,,,,,,0.00126,,,,,,,,,,0.00112,,,,,,,,,,0.04393,,,,,,,,,,0.04518,,,,,,,,,,0.04926,,,,,,,,,,0.04114,,,,,,,,,,0.04797,,,,,,,,,,0.04373,,,,,,,,,,0.04378,,,,,,,,,,0.04612,,,,,,,,,,0.0456,,,,,,,,,,0.00803,,,,,,,,,,0.00808,,,,,,,,,,0.00863,,,,,,,,,,0.00772,,,,,,,,,,0.00812,,,,,,,,,,0.00763,,,,,,,,,,0.00749,,,,,,,,,,0.008,,,,,,,,,,0.00768,,,,,,,,,,0.00173,,,,,,,,,,0.00174,,,,,,,,,,0.00176,,,,,,,,,,0.00173,,,,,,,,,,0.00176,,,,,,,,,,0.00174,,,,,,,,,,0.00175,,,,,,,,,,0.00173,,,,,,,,,,0.00159,,,,,,,,,,0.0858,,,,,,,,,,0.07545,,,,,,,,,,0.08196,,,,,,,,,,0.09039,,,,,,,,,,0.05106,,,,,,,,,,0.05607,,,,,,,,,,0.04928,,,,,,,,,,0.06516,,,,,,,,,,0.05007 +Large SUV,PH10E,1990,0.00736,0,0,0,0,0,0,0,0,0,0.00761,0,0,0,0,0,0,0,0,0,0.00833,0,0,0,0,0,0,0,0,0,0.00685,0,0,0,0,0,0,0,0,0,0.00818,0,0,0,0,0,0,0,0,0,0.00741,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.00782,0,0,0,0,0,0,0,0,0,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00173,0.00175,0.00167,0.00369,0,0,0,0,0,0,0.00179,0.0018,0.00172,0.0038,0,0,0,0,0,0,0.00194,0.00195,0.00185,0.0041,0,0,0,0,0,0,0.00161,0.00164,0.00156,0.00344,0,0,0,0,0,0,0.00191,0.00192,0.00182,0.00404,0,0,0,0,0,0,0.00174,0.00175,0.00167,0.00369,0,0,0,0,0,0,0.00175,0.00177,0.00169,0.00373,0,0,0,0,0,0,0.00183,0.00185,0.00176,0.00389,0,0,0,0,0,0,0.00183,0.00185,0.00176,0.0039,0,0,0,0,0,0,0.01852,0.01864,0.01807,0.02912,0,0,0,0,0,0,0.01885,0.01897,0.0184,0.02955,0,0,0,0,0,0,0.01981,0.01994,0.01934,0.03079,0,0,0,0,0,0,0.0178,0.01792,0.01736,0.02813,0,0,0,0,0,0,0.01961,0.01973,0.01914,0.03052,0,0,0,0,0,0,0.01855,0.01867,0.01809,0.02911,0,0,0,0,0,0,0.01863,0.01876,0.01818,0.02926,0,0,0,0,0,0,0.01914,0.01926,0.01868,0.02992,0,0,0,0,0,0,0.01912,0.01925,0.01867,0.02995,0,0,0,0,0,0,0.01118,0.01129,0.01077,0.02094,0,0,0,0,0,0,0.01129,0.01141,0.01088,0.02114,0,0,0,0,0,0,0.01163,0.01174,0.01119,0.02173,0,0,0,0,0,0,0.01091,0.01102,0.0105,0.02042,0,0,0,0,0,0,0.01155,0.01167,0.01112,0.02159,0,0,0,0,0,0,0.01117,0.01128,0.01075,0.02088,0,0,0,0,0,0,0.01121,0.01133,0.0108,0.02099,0,0,0,0,0,0,0.01139,0.01151,0.01097,0.02132,0,0,0,0,0,0,0.01141,0.01153,0.01099,0.02137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH10E,1995,0.00735,0.00735,0,0,0,0,0,0,0,0,0.00761,0.00761,0,0,0,0,0,0,0,0,0.00833,0.00833,0,0,0,0,0,0,0,0,0.00684,0.00684,0,0,0,0,0,0,0,0,0.00818,0.00818,0,0,0,0,0,0,0,0,0.00741,0.00741,0,0,0,0,0,0,0,0,0.00745,0.00745,0,0,0,0,0,0,0,0,0.00782,0.00782,0,0,0,0,0,0,0,0,0.00779,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.00028,0.00031,0.00112,0,0,0,0,0,0,0.00018,0.00028,0.00031,0.00115,0,0,0,0,0,0,0.00019,0.00029,0.00032,0.00122,0,0,0,0,0,0,0.00018,0.00027,0.0003,0.00106,0,0,0,0,0,0,0.00019,0.00029,0.00031,0.00121,0,0,0,0,0,0,0.00018,0.00028,0.0003,0.00112,0,0,0,0,0,0,0.00018,0.00028,0.00031,0.00113,0,0,0,0,0,0,0.00018,0.00029,0.00031,0.00117,0,0,0,0,0,0,0.00018,0.00029,0.00031,0.00118,0,0,0,0,0,0,0.00872,0.00944,0.00965,0.0145,0,0,0,0,0,0,0.00897,0.0097,0.0099,0.01479,0,0,0,0,0,0,0.0097,0.01044,0.01065,0.01564,0,0,0,0,0,0,0.00819,0.0089,0.00911,0.01386,0,0,0,0,0,0,0.00955,0.01029,0.01049,0.01546,0,0,0,0,0,0,0.00876,0.00948,0.00969,0.01452,0,0,0,0,0,0,0.00881,0.00954,0.00974,0.01461,0,0,0,0,0,0,0.00918,0.00992,0.01013,0.01505,0,0,0,0,0,0,0.00916,0.0099,0.01011,0.01504,0,0,0,0,0,0,0.00216,0.00283,0.00302,0.00749,0,0,0,0,0,0,0.0022,0.00288,0.00307,0.00756,0,0,0,0,0,0,0.00232,0.00301,0.00319,0.00779,0,0,0,0,0,0,0.00207,0.00273,0.00291,0.00729,0,0,0,0,0,0,0.00229,0.00298,0.00316,0.00773,0,0,0,0,0,0,0.00216,0.00283,0.00301,0.00747,0,0,0,0,0,0,0.00218,0.00285,0.00304,0.00751,0,0,0,0,0,0,0.00224,0.00291,0.0031,0.00763,0,0,0,0,0,0,0.00224,0.00292,0.00312,0.00766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH10E,2000,0.00736,0.01464,0.01852,0,0,0,0,0,0,0,0.00761,0.01386,0.01715,0,0,0,0,0,0,0,0.00833,0.01535,0.0191,0,0,0,0,0,0,0,0.00684,0.01464,0.01884,0,0,0,0,0,0,0,0.00818,0.01167,0.01345,0,0,0,0,0,0,0,0.00741,0.01153,0.01393,0,0,0,0,0,0,0,0.00745,0.0108,0.01248,0,0,0,0,0,0,0,0.00782,0.01266,0.01517,0,0,0,0,0,0,0,0.00779,0.01117,0.01285,0,0,0,0,0,0,0,0,0.14089,0.15451,0,0,0,0,0,0,0,0,0.13573,0.15157,0,0,0,0,0,0,0,0,0.16081,0.17779,0,0,0,0,0,0,0,0,0.16758,0.18418,0,0,0,0,0,0,0,0,0.14553,0.1629,0,0,0,0,0,0,0,0,0.15328,0.17008,0,0,0,0,0,0,0,0,0.14794,0.16027,0,0,0,0,0,0,0,0,0.14627,0.16107,0,0,0,0,0,0,0,0,0.12873,0.14257,0,0,0,0,0,0,0,0,12.76272,16.10851,0,0,0,0,0,0,0,0,12.50945,15.99917,0,0,0,0,0,0,0,0,14.3238,18.20538,0,0,0,0,0,0,0,0,15.15682,19.14568,0,0,0,0,0,0,0,0,13.58049,17.34446,0,0,0,0,0,0,0,0,14.10916,18.03755,0,0,0,0,0,0,0,0,14.12754,17.53883,0,0,0,0,0,0,0,0,13.47311,17.02084,0,0,0,0,0,0,0,0,11.65908,14.80696,0,0,0,0,0,0,0,0,428.04028,434.44389,0,0,0,0,0,0,0,0,431.35345,437.29409,0,0,0,0,0,0,0,0,437.67973,443.93028,0,0,0,0,0,0,0,0,427.48486,433.73649,0,0,0,0,0,0,0,0,438.06185,442.38577,0,0,0,0,0,0,0,0,431.02765,437.29105,0,0,0,0,0,0,0,0,434.61359,438.74833,0,0,0,0,0,0,0,0,434.84444,439.8663,0,0,0,0,0,0,0,0,428.27298,432.86375,0,0,0,0,0,0,0,0,0.03848,0.04595,0,0,0,0,0,0,0,0,0.03858,0.04602,0,0,0,0,0,0,0,0,0.03932,0.04679,0,0,0,0,0,0,0,0,0.03764,0.04501,0,0,0,0,0,0,0,0,0.03912,0.04657,0,0,0,0,0,0,0,0,0.03816,0.04556,0,0,0,0,0,0,0,0,0.03847,0.04591,0,0,0,0,0,0,0,0,0.03891,0.04638,0,0,0,0,0,0,0,0,0.03917,0.04672,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06727,0.06728,0,0,0,0,0,0,0,0,0.06725,0.06726,0,0,0,0,0,0,0,0,0.06691,0.06691,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06697,0.06697,0,0,0,0,0,0,0,0,0.06715,0.06716,0,0,0,0,0,0,0,0,0.0673,0.0673,0,0,0,0,0,0,0,0,0.06745,0.06745,0,0,0,0,0,0,0,0,1.67917,2.04404,0,0,0,0,0,0,0,0,1.65811,2.04336,0,0,0,0,0,0,0,0,1.85354,2.26397,0,0,0,0,0,0,0,0,1.91901,2.33383,0,0,0,0,0,0,0,0,1.80859,2.22695,0,0,0,0,0,0,0,0,1.86021,2.26579,0,0,0,0,0,0,0,0,1.84185,2.2101,0,0,0,0,0,0,0,0,1.91328,2.31007,0,0,0,0,0,0,0,0,1.71779,2.08945,0,0,0,0,0,0,0,0,0.01552,0.02198,0.00018,0.00027,0.00029,0.00046,0,0,0,0,0.01357,0.01916,0.00019,0.00028,0.00029,0.00047,0,0,0,0,0.01471,0.02087,0.00019,0.00028,0.0003,0.00048,0,0,0,0,0.01609,0.02289,0.00018,0.00027,0.00028,0.00044,0,0,0,0,0.00814,0.01137,0.00019,0.00028,0.0003,0.00048,0,0,0,0,0.00936,0.01363,0.00018,0.00027,0.00029,0.00046,0,0,0,0,0.008,0.01115,0.00018,0.00027,0.00029,0.00046,0,0,0,0,0.01079,0.01518,0.00019,0.00028,0.00029,0.00047,0,0,0,0,0.0082,0.01141,0.00019,0.00028,0.0003,0.00047,0,0,0,0,0.06669,0.0812,0.00873,0.00938,0.00951,0.01062,0,0,0,0,0.06356,0.07607,0.00899,0.00964,0.00977,0.01088,0,0,0,0,0.0695,0.0834,0.00972,0.01038,0.01051,0.01164,0,0,0,0,0.06578,0.08116,0.00821,0.00884,0.00897,0.01006,0,0,0,0,0.05438,0.06151,0.00957,0.01023,0.01036,0.01148,0,0,0,0,0.05351,0.06313,0.00878,0.00942,0.00955,0.01065,0,0,0,0,0.05068,0.05757,0.00883,0.00948,0.00961,0.01072,0,0,0,0,0.0585,0.06825,0.0092,0.00986,0.00999,0.01111,0,0,0,0,0.0526,0.05959,0.00918,0.00983,0.00997,0.0111,0,0,0,0,0.03373,0.04657,0.00218,0.00278,0.0029,0.00392,0,0,0,0,0.03008,0.04115,0.00222,0.00282,0.00294,0.00396,0,0,0,0,0.03284,0.04513,0.00234,0.00295,0.00307,0.00411,0,0,0,0,0.03469,0.0483,0.00209,0.00267,0.00279,0.00379,0,0,0,0,0.01997,0.02628,0.00231,0.00292,0.00304,0.00407,0,0,0,0,0.02188,0.03027,0.00218,0.00277,0.00289,0.0039,0,0,0,0,0.01923,0.02532,0.00219,0.00279,0.00291,0.00393,0,0,0,0,0.02487,0.03349,0.00226,0.00286,0.00298,0.00401,0,0,0,0,0.01976,0.02595,0.00226,0.00286,0.00299,0.00402,0,0,0,0,0.01401,0.01254,0,0,0,0,0,0,0,0,0.01412,0.01263,0,0,0,0,0,0,0,0,0.01433,0.01282,0,0,0,0,0,0,0,0,0.014,0.01252,0,0,0,0,0,0,0,0,0.01434,0.01277,0,0,0,0,0,0,0,0,0.01411,0.01263,0,0,0,0,0,0,0,0,0.01423,0.01267,0,0,0,0,0,0,0,0,0.01424,0.0127,0,0,0,0,0,0,0,0,0.01402,0.0125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH10E,2005,0.00736,0.01048,0.012,0.01558,0,0,0,0,0,0,0.00761,0.01033,0.01164,0.01469,0,0,0,0,0,0,0.00833,0.01137,0.01285,0.01632,0,0,0,0,0,0,0.00685,0.01017,0.0118,0.01568,0,0,0,0,0,0,0.00819,0.00983,0.01061,0.01228,0,0,0,0,0,0,0.00741,0.0093,0.01029,0.01219,0,0,0,0,0,0,0.00746,0.00904,0.00978,0.01137,0,0,0,0,0,0,0.00782,0.00999,0.01103,0.01338,0,0,0,0,0,0,0.00779,0.0094,0.01014,0.01173,0,0,0,0,0,0,0,0.05887,0.05022,0.06479,0,0,0,0,0,0,0,0.05408,0.0477,0.06194,0,0,0,0,0,0,0,0.06401,0.05612,0.07552,0,0,0,0,0,0,0,0.06738,0.05899,0.07886,0,0,0,0,0,0,0,0.04787,0.04505,0.06288,0,0,0,0,0,0,0,0.05251,0.04891,0.06715,0,0,0,0,0,0,0,0.04796,0.0441,0.06135,0,0,0,0,0,0,0,0.05292,0.04736,0.06414,0,0,0,0,0,0,0,0.04274,0.03929,0.05278,0,0,0,0,0,0,0,5.03412,6.51817,9.6669,0,0,0,0,0,0,0,4.92195,6.52967,9.63502,0,0,0,0,0,0,0,5.52979,7.47297,11.28146,0,0,0,0,0,0,0,5.81165,7.86714,11.83045,0,0,0,0,0,0,0,5.41158,7.41913,10.98143,0,0,0,0,0,0,0,5.5191,7.60533,11.2422,0,0,0,0,0,0,0,5.63436,7.5301,11.09352,0,0,0,0,0,0,0,5.36905,7.14597,10.57365,0,0,0,0,0,0,0,4.7859,6.32427,9.17675,0,0,0,0,0,0,0,443.85587,448.671,454.14966,0,0,0,0,0,0,0,447.5675,452.04046,456.9226,0,0,0,0,0,0,0,453.75619,458.45937,463.73966,0,0,0,0,0,0,0,443.50689,448.21429,453.516,0,0,0,0,0,0,0,455.48889,458.76702,461.58576,0,0,0,0,0,0,0,448.04979,453.15963,455.06293,0,0,0,0,0,0,0,452.21983,455.36076,457.93914,0,0,0,0,0,0,0,451.77312,455.56747,459.27256,0,0,0,0,0,0,0,445.21511,448.68114,451.8233,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00804,0.00948,0.0182,0,0,0,0,0,0,0,0.00775,0.00918,0.01764,0,0,0,0,0,0,0,0.008,0.00944,0.01813,0,0,0,0,0,0,0,0.00783,0.00927,0.0178,0,0,0,0,0,0,0,0.0079,0.00934,0.01795,0,0,0,0,0,0,0,0.00797,0.00942,0.0181,0,0,0,0,0,0,0,0.00804,0.0095,0.01824,0,0,0,0,0,0,0,0.02199,0.02755,0.03263,0,0,0,0,0,0,0,0.02202,0.02758,0.03267,0,0,0,0,0,0,0,0.02202,0.02757,0.03266,0,0,0,0,0,0,0,0.0219,0.02743,0.03249,0,0,0,0,0,0,0,0.022,0.02755,0.03263,0,0,0,0,0,0,0,0.02192,0.02745,0.03252,0,0,0,0,0,0,0,0.02198,0.02753,0.03261,0,0,0,0,0,0,0,0.02203,0.02759,0.03268,0,0,0,0,0,0,0,0.02208,0.02765,0.03275,0,0,0,0,0,0,0,0.72008,0.96199,1.00621,0,0,0,0,0,0,0,0.70065,0.95882,1.00077,0,0,0,0,0,0,0,0.78869,1.0611,1.1307,0,0,0,0,0,0,0,0.8264,1.10905,1.17783,0,0,0,0,0,0,0,0.76098,1.03562,1.10788,0,0,0,0,0,0,0,0.79046,1.06322,1.13191,0,0,0,0,0,0,0,0.78123,1.03534,1.09738,0,0,0,0,0,0,0,0.819,1.08974,1.13977,0,0,0,0,0,0,0,0.73434,0.98227,1.01871,0,0,0,0,0,0,0,0.00672,0.00918,0.01499,0.00017,0.00025,0.00026,0.0003,0,0,0,0.00601,0.00819,0.01326,0.00017,0.00026,0.00027,0.00031,0,0,0,0.00648,0.00887,0.01444,0.00018,0.00026,0.00027,0.00031,0,0,0,0.00692,0.00949,0.01561,0.00017,0.00025,0.00026,0.0003,0,0,0,0.00402,0.00549,0.00852,0.00018,0.00026,0.00027,0.00031,0,0,0,0.00444,0.00623,0.00955,0.00017,0.00025,0.00026,0.0003,0,0,0,0.00395,0.00538,0.00834,0.00017,0.00025,0.00026,0.0003,0,0,0,0.00499,0.00681,0.01083,0.00017,0.00026,0.00027,0.00031,0,0,0,0.00405,0.0055,0.00851,0.00017,0.00026,0.00027,0.00031,0,0,0,0.04784,0.05339,0.06646,0.00864,0.00922,0.00931,0.00964,0,0,0,0.0474,0.05231,0.06363,0.00889,0.00948,0.00956,0.00989,0,0,0,0.0518,0.0572,0.06976,0.00962,0.01022,0.01031,0.01064,0,0,0,0.04602,0.05187,0.06573,0.00812,0.00869,0.00877,0.0091,0,0,0,0.04565,0.04885,0.05549,0.00947,0.01007,0.01016,0.01048,0,0,0,0.04305,0.04716,0.05432,0.00869,0.00927,0.00935,0.00967,0,0,0,0.04214,0.04525,0.05167,0.00873,0.00932,0.0094,0.00973,0,0,0,0.04613,0.05017,0.05909,0.00911,0.0097,0.00979,0.01011,0,0,0,0.04386,0.04701,0.05353,0.00908,0.00967,0.00976,0.0101,0,0,0,0.01704,0.02196,0.03352,0.00209,0.00263,0.00271,0.00301,0,0,0,0.01578,0.02013,0.03014,0.00213,0.00268,0.00275,0.00306,0,0,0,0.01717,0.02195,0.03306,0.00225,0.00281,0.00288,0.00318,0,0,0,0.0172,0.02238,0.03464,0.002,0.00253,0.0026,0.0029,0,0,0,0.01225,0.01507,0.02095,0.00222,0.00278,0.00285,0.00315,0,0,0,0.01263,0.01615,0.0226,0.00209,0.00263,0.00271,0.003,0,0,0,0.01167,0.01442,0.0201,0.00211,0.00264,0.00272,0.00302,0,0,0,0.01392,0.01749,0.02539,0.00217,0.00271,0.00279,0.00309,0,0,0,0.01203,0.01481,0.02058,0.00217,0.00272,0.0028,0.0031,0,0,0,0.01453,0.01296,0.00437,0,0,0,0,0,0,0,0.01465,0.01305,0.0044,0,0,0,0,0,0,0,0.01486,0.01324,0.00446,0,0,0,0,0,0,0,0.01452,0.01294,0.00437,0,0,0,0,0,0,0,0.01492,0.01325,0.00444,0,0,0,0,0,0,0,0.01467,0.01309,0.00438,0,0,0,0,0,0,0,0.01481,0.01315,0.00441,0,0,0,0,0,0,0,0.01479,0.01315,0.00442,0,0,0,0,0,0,0,0.01458,0.01296,0.00435,0,0,0,0,0,0,0,0.31408,0.43795,0.4377,0,0,0,0,0,0,0,0.2837,0.40636,0.40432,0,0,0,0,0,0,0,0.33316,0.47535,0.47029,0,0,0,0,0,0,0,0.35249,0.50182,0.49458,0,0,0,0,0,0,0,0.2218,0.34265,0.33094,0,0,0,0,0,0,0,0.24992,0.38317,0.36479,0,0,0,0,0,0,0,0.2186,0.33154,0.31952,0,0,0,0,0,0,0,0.25991,0.38065,0.37276,0,0,0,0,0,0,0,0.19773,0.29988,0.29008,0,0,0,0,0,0 +Large SUV,PH10E,2010,0,0.00865,0.00976,0.01088,0.01426,0,0,0,0,0,0,0.00875,0.00973,0.0107,0.0136,0,0,0,0,0,0,0.0096,0.01069,0.01179,0.01508,0,0,0,0,0,0,0.00822,0.00942,0.01063,0.01429,0,0,0,0,0,0,0.00895,0.00958,0.01018,0.01183,0,0,0,0,0,0,0.00826,0.00901,0.00965,0.01158,0,0,0,0,0,0,0.0082,0.0088,0.00937,0.01094,0,0,0,0,0,0,0.00877,0.00957,0.01036,0.01261,0,0,0,0,0,0,0.00854,0.00915,0.00972,0.01129,0,0,0,0,0,0,0.03835,0.02739,0.0207,0.03399,0,0,0,0,0,0,0.03344,0.0249,0.01902,0.03184,0,0,0,0,0,0,0.03752,0.02934,0.02246,0.03887,0,0,0,0,0,0,0.04169,0.03243,0.02472,0.04165,0,0,0,0,0,0,0.02246,0.02126,0.01693,0.03091,0,0,0,0,0,0,0.0251,0.02356,0.0183,0.0333,0,0,0,0,0,0,0.02198,0.02095,0.01669,0.03024,0,0,0,0,0,0,0.02806,0.02371,0.0184,0.03225,0,0,0,0,0,0,0.02159,0.01933,0.01509,0.02616,0,0,0,0,0,0,2.0369,3.39096,4.56938,6.84813,0,0,0,0,0,0,1.93755,3.35282,4.54128,6.8043,0,0,0,0,0,0,2.03853,3.71667,5.15994,8.00096,0,0,0,0,0,0,2.17908,3.97967,5.53703,8.50531,0,0,0,0,0,0,1.79358,3.54468,4.96864,7.70574,0,0,0,0,0,0,1.85132,3.67735,5.10192,7.94581,0,0,0,0,0,0,1.86968,3.64795,5.09363,7.83205,0,0,0,0,0,0,1.90876,3.54693,4.88233,7.46049,0,0,0,0,0,0,1.678,3.13644,4.26343,6.41479,0,0,0,0,0,0,412.76858,414.52877,418.20047,431.86292,0,0,0,0,0,0,416.40558,417.94235,421.24785,434.37073,0,0,0,0,0,0,422.09134,423.74737,427.27943,440.89257,0,0,0,0,0,0,412.52141,414.19798,417.76787,431.26329,0,0,0,0,0,0,424.39239,425.16307,427.20546,438.37632,0,0,0,0,0,0,417.28153,419.64642,420.6841,432.33298,0,0,0,0,0,0,421.41221,422.1002,424.00932,434.90386,0,0,0,0,0,0,420.66738,421.76965,424.35789,436.36691,0,0,0,0,0,0,414.64889,415.59408,417.84536,429.16517,0,0,0,0,0,0,0.00702,0.0079,0.00947,0.01359,0,0,0,0,0,0,0.00703,0.00791,0.00947,0.01358,0,0,0,0,0,0,0.00715,0.00803,0.0096,0.01374,0,0,0,0,0,0,0.00688,0.00775,0.00929,0.01335,0,0,0,0,0,0,0.00712,0.00799,0.00956,0.01368,0,0,0,0,0,0,0.00696,0.00783,0.00938,0.01345,0,0,0,0,0,0,0.00702,0.00789,0.00946,0.01356,0,0,0,0,0,0,0.00709,0.00797,0.00954,0.01367,0,0,0,0,0,0,0.00714,0.00803,0.00961,0.01378,0,0,0,0,0,0,0.01459,0.01675,0.02185,0.02421,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02424,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02423,0,0,0,0,0,0,0.01453,0.01668,0.02175,0.02411,0,0,0,0,0,0,0.01459,0.01676,0.02185,0.02421,0,0,0,0,0,0,0.01455,0.0167,0.02178,0.02413,0,0,0,0,0,0,0.01458,0.01674,0.02183,0.02419,0,0,0,0,0,0,0.01462,0.01678,0.02188,0.02425,0,0,0,0,0,0,0.01465,0.01682,0.02193,0.0243,0,0,0,0,0,0,0.11818,0.20617,0.20688,0.44349,0,0,0,0,0,0,0.11395,0.20427,0.2047,0.43937,0,0,0,0,0,0,0.1164,0.2249,0.22374,0.50136,0,0,0,0,0,0,0.12046,0.23865,0.23563,0.52724,0,0,0,0,0,0,0.10702,0.21405,0.21224,0.48579,0,0,0,0,0,0,0.11168,0.22309,0.22032,0.50004,0,0,0,0,0,0,0.1104,0.21568,0.21334,0.48154,0,0,0,0,0,0,0.1205,0.23032,0.22538,0.50037,0,0,0,0,0,0,0.11127,0.20718,0.20273,0.44167,0,0,0,0,0,0,0.00231,0.00409,0.00571,0.01093,0.00017,0.00025,0.00026,0.00029,0,0,0.00216,0.00381,0.00528,0.00987,0.00017,0.00026,0.00027,0.00029,0,0,0.00226,0.00401,0.0056,0.01065,0.00018,0.00026,0.00027,0.0003,0,0,0.00236,0.00421,0.0059,0.01139,0.00017,0.00025,0.00026,0.00028,0,0,0.00178,0.00309,0.00419,0.00708,0.00018,0.00026,0.00027,0.0003,0,0,0.00185,0.00326,0.0044,0.00767,0.00017,0.00025,0.00026,0.00029,0,0,0.00177,0.00306,0.00414,0.00696,0.00017,0.00025,0.00026,0.00029,0,0,0.00197,0.00344,0.00473,0.00845,0.00017,0.00026,0.00027,0.00029,0,0,0.00181,0.00312,0.00422,0.00707,0.00017,0.00026,0.00027,0.0003,0,0,0.03861,0.04266,0.0464,0.05834,0.00863,0.00922,0.00931,0.00952,0,0,0.03937,0.04307,0.04643,0.05686,0.00889,0.00948,0.00956,0.00977,0,0,0.04296,0.04694,0.0506,0.06218,0.00962,0.01022,0.01031,0.01052,0,0,0.03645,0.04068,0.04462,0.05727,0.00812,0.00869,0.00877,0.00898,0,0,0.04102,0.04381,0.04621,0.05263,0.00947,0.01007,0.01016,0.01036,0,0,0.03767,0.04092,0.04325,0.05056,0.00868,0.00927,0.00935,0.00956,0,0,0.03764,0.04039,0.04273,0.04893,0.00873,0.00932,0.0094,0.00961,0,0,0.03986,0.0431,0.04596,0.05434,0.0091,0.0097,0.00979,0.00999,0,0,0.03925,0.04203,0.0444,0.05068,0.00907,0.00967,0.00976,0.00997,0,0,0.00888,0.01247,0.01577,0.02633,0.00209,0.00263,0.00271,0.0029,0,0,0.00868,0.01196,0.01493,0.02415,0.00213,0.00267,0.00275,0.00295,0,0,0.00936,0.01288,0.01612,0.02636,0.00225,0.00281,0.00288,0.00307,0,0,0.00874,0.01249,0.01597,0.02716,0.002,0.00253,0.0026,0.00279,0,0,0.00815,0.01062,0.01274,0.01842,0.00222,0.00278,0.00285,0.00305,0,0,0.00787,0.01062,0.01281,0.01928,0.00209,0.00263,0.00271,0.0029,0,0,0.00769,0.01012,0.01219,0.01768,0.0021,0.00264,0.00272,0.00291,0,0,0.00837,0.01124,0.01377,0.02118,0.00216,0.00271,0.00279,0.00298,0,0,0.00794,0.01041,0.0125,0.01806,0.00216,0.00272,0.0028,0.00299,0,0,0.01351,0.01197,0.00403,0.00416,0,0,0,0,0,0,0.01363,0.01207,0.00405,0.00418,0,0,0,0,0,0,0.01382,0.01224,0.00411,0.00424,0,0,0,0,0,0,0.01351,0.01196,0.00402,0.00415,0,0,0,0,0,0,0.0139,0.01228,0.00411,0.00422,0,0,0,0,0,0,0.01366,0.01212,0.00405,0.00416,0,0,0,0,0,0,0.0138,0.01219,0.00408,0.00419,0,0,0,0,0,0,0.01377,0.01218,0.00408,0.0042,0,0,0,0,0,0,0.01358,0.012,0.00402,0.00413,0,0,0,0,0,0,0.09628,0.14483,0.19833,0.32215,0,0,0,0,0,0,0.08171,0.12792,0.17824,0.29336,0,0,0,0,0,0,0.09432,0.15197,0.21171,0.35312,0,0,0,0,0,0,0.10592,0.16872,0.23324,0.38186,0,0,0,0,0,0,0.04851,0.09719,0.14596,0.25056,0,0,0,0,0,0,0.05622,0.11052,0.15954,0.27471,0,0,0,0,0,0,0.04619,0.09371,0.14146,0.24218,0,0,0,0,0,0,0.0651,0.11464,0.16503,0.27758,0,0,0,0,0,0,0.04573,0.0879,0.13002,0.21562,0,0,0,0,0 +Large SUV,PH10E,2015,0,0,0.00851,0.00932,0.01037,0.0128,0,0,0,0,0,0,0.00865,0.00938,0.01032,0.01244,0,0,0,0,0,0,0.00947,0.01026,0.01129,0.01368,0,0,0,0,0,0,0.00805,0.0089,0.01002,0.01263,0,0,0,0,0,0,0.00894,0.00945,0.01007,0.01137,0,0,0,0,0,0,0.00825,0.00879,0.00948,0.01097,0,0,0,0,0,0,0.00819,0.00868,0.00929,0.01053,0,0,0,0,0,0,0.00872,0.00934,0.01011,0.01181,0,0,0,0,0,0,0.00853,0.00903,0.00963,0.01087,0,0,0,0,0,0,0.02901,0.01941,0.01781,0.02215,0,0,0,0,0,0,0.02658,0.01807,0.01687,0.02094,0,0,0,0,0,0,0.02882,0.02106,0.01968,0.02486,0,0,0,0,0,0,0.03107,0.02281,0.02127,0.02671,0,0,0,0,0,0,0.01998,0.01624,0.01622,0.02037,0,0,0,0,0,0,0.02221,0.01753,0.01732,0.0218,0,0,0,0,0,0,0.01979,0.01605,0.01612,0.02014,0,0,0,0,0,0,0.02339,0.01765,0.017,0.02122,0,0,0,0,0,0,0.01942,0.01481,0.01452,0.0178,0,0,0,0,0,0,1.74799,3.07054,4.1433,5.53772,0,0,0,0,0,0,1.74058,3.08025,4.17933,5.56657,0,0,0,0,0,0,1.79393,3.3989,4.7293,6.41596,0,0,0,0,0,0,1.91334,3.63271,5.06757,6.83287,0,0,0,0,0,0,1.71079,3.3865,4.75319,6.37417,0,0,0,0,0,0,1.75939,3.44427,4.84742,6.53269,0,0,0,0,0,0,1.78328,3.49932,4.89366,6.53236,0,0,0,0,0,0,1.75814,3.3309,4.59475,6.14177,0,0,0,0,0,0,1.6025,3.00063,4.08485,5.39092,0,0,0,0,0,0,338.12208,340.05626,343.22557,362.165,0,0,0,0,0,0,340.95583,342.66252,345.51406,364.06892,0,0,0,0,0,0,345.67308,347.51146,350.55982,369.62377,0,0,0,0,0,0,337.90022,339.76243,342.84575,361.64608,0,0,0,0,0,0,347.01262,347.93671,349.69034,366.75993,0,0,0,0,0,0,342.47414,342.50262,344.57625,361.91932,0,0,0,0,0,0,344.54961,345.39056,347.02963,363.8184,0,0,0,0,0,0,344.17477,345.43692,347.66513,365.3673,0,0,0,0,0,0,339.12031,340.19555,342.12805,359.14252,0,0,0,0,0,0,0.00464,0.00532,0.00631,0.00881,0,0,0,0,0,0,0.00465,0.00532,0.00631,0.0088,0,0,0,0,0,0,0.00472,0.0054,0.00639,0.00889,0,0,0,0,0,0,0.00455,0.00522,0.00619,0.00865,0,0,0,0,0,0,0.0047,0.00538,0.00636,0.00886,0,0,0,0,0,0,0.0046,0.00527,0.00625,0.00871,0,0,0,0,0,0,0.00464,0.00531,0.0063,0.00879,0,0,0,0,0,0,0.00468,0.00536,0.00635,0.00885,0,0,0,0,0,0,0.00472,0.00541,0.00641,0.00893,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02214,0,0,0,0,0,0,0.01462,0.017,0.02188,0.02217,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02216,0,0,0,0,0,0,0.01454,0.01691,0.02176,0.02205,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02214,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02207,0,0,0,0,0,0,0.01459,0.01697,0.02184,0.02213,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02217,0,0,0,0,0,0,0.01465,0.01705,0.02194,0.02222,0,0,0,0,0,0,0.10495,0.12905,0.18836,0.26828,0,0,0,0,0,0,0.10452,0.12736,0.18642,0.26545,0,0,0,0,0,0,0.10568,0.13983,0.20329,0.29451,0,0,0,0,0,0,0.11026,0.14786,0.21472,0.31055,0,0,0,0,0,0,0.0969,0.13038,0.19182,0.28015,0,0,0,0,0,0,0.10169,0.13624,0.19976,0.29062,0,0,0,0,0,0,0.09928,0.13114,0.1932,0.28031,0,0,0,0,0,0,0.10885,0.14034,0.20452,0.29402,0,0,0,0,0,0,0.10062,0.12587,0.18364,0.26179,0,0,0,0,0,0,0.00221,0.00363,0.00522,0.00859,0.00017,0.00025,0.00026,0.00028,0,0,0.0021,0.00344,0.00491,0.00796,0.00017,0.00026,0.00027,0.00029,0,0,0.00217,0.00356,0.00512,0.00843,0.00018,0.00026,0.00027,0.00029,0,0,0.00223,0.00368,0.00531,0.00885,0.00017,0.00025,0.00026,0.00028,0,0,0.0018,0.00292,0.00408,0.00626,0.00018,0.00026,0.00027,0.00029,0,0,0.00187,0.00301,0.00424,0.00661,0.00017,0.00025,0.00026,0.00028,0,0,0.0018,0.00291,0.00406,0.0062,0.00017,0.00025,0.00026,0.00028,0,0,0.00195,0.00318,0.0045,0.0071,0.00017,0.00026,0.00027,0.00029,0,0,0.00183,0.00297,0.00414,0.00629,0.00017,0.00026,0.00027,0.00029,0,0,0.03831,0.04145,0.0451,0.05304,0.00863,0.00922,0.00931,0.00947,0,0,0.03917,0.0421,0.04545,0.05255,0.00889,0.00948,0.00956,0.00973,0,0,0.04268,0.04576,0.04935,0.05712,0.00962,0.01022,0.01031,0.01047,0,0,0.03607,0.03928,0.04307,0.05144,0.00811,0.00869,0.00877,0.00894,0,0,0.04103,0.04338,0.04593,0.05081,0.00947,0.01007,0.01016,0.01032,0,0,0.03784,0.04011,0.04283,0.04821,0.00868,0.00927,0.00935,0.00952,0,0,0.03767,0.04,0.04251,0.04726,0.00873,0.00932,0.0094,0.00957,0,0,0.03977,0.0424,0.04535,0.05132,0.0091,0.0097,0.00979,0.00995,0,0,0.03928,0.04164,0.04418,0.04898,0.00907,0.00967,0.00976,0.00993,0,0,0.00862,0.01139,0.01462,0.02165,0.00209,0.00263,0.00271,0.00286,0,0,0.00851,0.0111,0.01406,0.02034,0.00213,0.00267,0.00275,0.00291,0,0,0.00911,0.01183,0.01501,0.02188,0.00225,0.00281,0.00288,0.00304,0,0,0.00841,0.01125,0.0146,0.02201,0.002,0.00253,0.0026,0.00276,0,0,0.00816,0.01024,0.0125,0.01681,0.00222,0.00278,0.00285,0.00301,0,0,0.0079,0.01003,0.01244,0.01719,0.00209,0.00263,0.00271,0.00286,0,0,0.00772,0.00978,0.012,0.0162,0.0021,0.00264,0.00272,0.00288,0,0,0.00829,0.01063,0.01323,0.01851,0.00216,0.00271,0.00279,0.00295,0,0,0.00797,0.01007,0.01231,0.01655,0.00216,0.00272,0.0028,0.00295,0,0,0.00976,0.00327,0.0033,0.00349,0,0,0,0,0,0,0.00985,0.0033,0.00333,0.0035,0,0,0,0,0,0,0.00998,0.00334,0.00337,0.00356,0,0,0,0,0,0,0.00976,0.00327,0.0033,0.00348,0,0,0,0,0,0,0.01002,0.00335,0.00337,0.00353,0,0,0,0,0,0,0.00989,0.0033,0.00332,0.00348,0,0,0,0,0,0,0.00995,0.00332,0.00334,0.0035,0,0,0,0,0,0,0.00994,0.00332,0.00335,0.00352,0,0,0,0,0,0,0.00979,0.00327,0.00329,0.00346,0,0,0,0,0,0,0.07256,0.10793,0.16473,0.24345,0,0,0,0,0,0,0.06456,0.09841,0.15324,0.22614,0,0,0,0,0,0,0.07203,0.11521,0.17944,0.26852,0,0,0,0,0,0,0.07823,0.12455,0.19303,0.28812,0,0,0,0,0,0,0.04358,0.08151,0.13798,0.20586,0,0,0,0,0,0,0.05032,0.08897,0.14828,0.22181,0,0,0,0,0,0,0.04216,0.07918,0.13504,0.20088,0,0,0,0,0,0,0.0541,0.09194,0.14887,0.22095,0,0,0,0,0,0,0.04161,0.07409,0.12354,0.18049,0,0,0,0 +Large SUV,PH10E,2020,0,0,0,0.00832,0.009,0.00969,0.01202,0,0,0,0,0,0,0.00849,0.0091,0.00971,0.01177,0,0,0,0,0,0,0.00928,0.00995,0.01063,0.01292,0,0,0,0,0,0,0.00785,0.00856,0.00929,0.01178,0,0,0,0,0,0,0.00883,0.00926,0.00967,0.01098,0,0,0,0,0,0,0.00811,0.00858,0.00904,0.01053,0,0,0,0,0,0,0.00809,0.00851,0.0089,0.01017,0,0,0,0,0,0,0.00858,0.0091,0.00961,0.01129,0,0,0,0,0,0,0.00843,0.00885,0.00924,0.01051,0,0,0,0,0,0,0.02221,0.01607,0.01367,0.01742,0,0,0,0,0,0,0.01995,0.01477,0.01277,0.01638,0,0,0,0,0,0,0.02206,0.01724,0.01491,0.01972,0,0,0,0,0,0,0.02395,0.01876,0.01619,0.02129,0,0,0,0,0,0,0.0138,0.01254,0.01156,0.01576,0,0,0,0,0,0,0.01546,0.01373,0.01252,0.01702,0,0,0,0,0,0,0.0135,0.01235,0.01146,0.01556,0,0,0,0,0,0,0.01693,0.014,0.01246,0.01654,0,0,0,0,0,0,0.01322,0.01137,0.01033,0.01357,0,0,0,0,0,0,1.37924,2.0814,2.62686,4.03125,0,0,0,0,0,0,1.36505,2.07029,2.62221,4.04018,0,0,0,0,0,0,1.42101,2.28589,2.96238,4.76964,0,0,0,0,0,0,1.52138,2.45739,3.19844,5.11541,0,0,0,0,0,0,1.32564,2.2181,2.88967,4.67583,0,0,0,0,0,0,1.35579,2.27169,2.97123,4.83684,0,0,0,0,0,0,1.37756,2.29363,2.9807,4.79141,0,0,0,0,0,0,1.37093,2.20682,2.83455,4.49834,0,0,0,0,0,0,1.23549,1.96805,2.49394,3.87749,0,0,0,0,0,0,287.03177,288.945,292.13415,317.35488,0,0,0,0,0,0,289.31393,291.03834,293.95164,318.81544,0,0,0,0,0,0,293.37827,295.21817,298.31062,323.7828,0,0,0,0,0,0,286.83015,288.68405,291.79913,316.87766,0,0,0,0,0,0,294.03922,295.11255,297.06731,320.47563,0,0,0,0,0,0,289.36988,290.63083,292.86101,316.46625,0,0,0,0,0,0,291.92229,292.92404,294.77611,317.8553,0,0,0,0,0,0,291.81081,293.16554,295.53406,319.55864,0,0,0,0,0,0,287.40281,288.59464,290.69332,313.90899,0,0,0,0,0,0,0.00474,0.00536,0.00631,0.00831,0,0,0,0,0,0,0.00475,0.00536,0.00631,0.0083,0,0,0,0,0,0,0.00482,0.00544,0.00639,0.00839,0,0,0,0,0,0,0.00465,0.00526,0.00619,0.00817,0,0,0,0,0,0,0.0048,0.00542,0.00636,0.00836,0,0,0,0,0,0,0.0047,0.00531,0.00625,0.00822,0,0,0,0,0,0,0.00474,0.00536,0.0063,0.0083,0,0,0,0,0,0,0.00478,0.0054,0.00635,0.00836,0,0,0,0,0,0,0.00482,0.00545,0.0064,0.00843,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01462,0.01701,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01692,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01698,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01705,0.02193,0.02193,0,0,0,0,0,0,0.06862,0.11062,0.1487,0.20682,0,0,0,0,0,0,0.06775,0.10897,0.14679,0.20422,0,0,0,0,0,0,0.06919,0.11933,0.1596,0.22751,0,0,0,0,0,0,0.07215,0.12682,0.16948,0.24162,0,0,0,0,0,0,0.0612,0.10996,0.14835,0.21334,0,0,0,0,0,0,0.06471,0.11568,0.15571,0.22311,0,0,0,0,0,0,0.06244,0.11099,0.15,0.21393,0,0,0,0,0,0,0.06915,0.11948,0.16006,0.22568,0,0,0,0,0,0,0.06291,0.10639,0.14262,0.19858,0,0,0,0,0,0,0.0019,0.00307,0.00407,0.00729,0.00017,0.00025,0.00026,0,0,0,0.00181,0.00291,0.00384,0.00679,0.00017,0.00026,0.00027,0,0,0,0.00186,0.00302,0.004,0.00716,0.00018,0.00026,0.00027,0,0,0,0.00191,0.00311,0.00414,0.00748,0.00017,0.00025,0.00026,0,0,0,0.00157,0.00249,0.00322,0.00544,0.00018,0.00026,0.00027,0,0,0,0.00161,0.00257,0.00334,0.00572,0.00017,0.00025,0.00026,0,0,0,0.00157,0.00249,0.00321,0.00539,0.00017,0.00025,0.00026,0,0,0,0.00169,0.00271,0.00353,0.00611,0.00017,0.00026,0.00027,0,0,0,0.0016,0.00254,0.00326,0.00547,0.00017,0.00026,0.00027,0,0,0,0.03759,0.04021,0.04254,0.05012,0.00863,0.00922,0.00931,0,0,0,0.03852,0.04096,0.04309,0.04996,0.00889,0.00948,0.00956,0,0,0,0.04198,0.04455,0.04684,0.05429,0.00962,0.01022,0.01031,0,0,0,0.03532,0.038,0.04042,0.04835,0.00811,0.00869,0.00877,0,0,0,0.04053,0.04249,0.0441,0.04906,0.00947,0.01007,0.01016,0,0,0,0.03711,0.03917,0.04089,0.04629,0.00868,0.00927,0.00935,0,0,0,0.03718,0.03912,0.0407,0.04556,0.00873,0.00932,0.0094,0,0,0,0.03919,0.04139,0.04326,0.04916,0.0091,0.0097,0.00979,0,0,0,0.03878,0.04075,0.04234,0.04724,0.00907,0.00967,0.00976,0,0,0,0.00798,0.0103,0.01236,0.01906,0.00209,0.00263,0.00271,0,0,0,0.00793,0.01009,0.01198,0.01806,0.00213,0.00267,0.00275,0,0,0,0.00849,0.01076,0.01278,0.01937,0.00225,0.00281,0.00288,0,0,0,0.00775,0.01012,0.01225,0.01927,0.002,0.00253,0.0026,0,0,0,0.00772,0.00945,0.01087,0.01527,0.00222,0.00278,0.00285,0,0,0,0.00737,0.0092,0.01072,0.01549,0.00209,0.00263,0.00271,0,0,0,0.00728,0.009,0.0104,0.0147,0.0021,0.00264,0.00272,0,0,0,0.00778,0.00973,0.01138,0.01661,0.00216,0.00271,0.00279,0,0,0,0.00753,0.00928,0.01069,0.01502,0.00216,0.00272,0.0028,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00278,0.0028,0.00283,0.00307,0,0,0,0,0,0,0.00282,0.00284,0.00287,0.00312,0,0,0,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00283,0.00284,0.00286,0.00308,0,0,0,0,0,0,0.00279,0.0028,0.00282,0.00305,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00306,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00308,0,0,0,0,0,0,0.00277,0.00278,0.0028,0.00302,0,0,0,0,0,0,0.06129,0.09029,0.12737,0.19823,0,0,0,0,0,0,0.05401,0.08132,0.11645,0.18306,0,0,0,0,0,0,0.06093,0.09522,0.13643,0.2208,0,0,0,0,0,0,0.06641,0.10347,0.14776,0.23796,0,0,0,0,0,0,0.0345,0.06284,0.09654,0.16485,0,0,0,0,0,0,0.03959,0.06993,0.1059,0.17941,0,0,0,0,0,0,0.0331,0.06081,0.09405,0.16042,0,0,0,0,0,0,0.04426,0.07339,0.10849,0.17831,0,0,0,0,0,0,0.03251,0.05685,0.08625,0.14194,0,0,0 +Large SUV,PH10E,2025,0,0,0,0,0.00798,0.00838,0.00881,0.01073,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.01062,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01165,0,0,0,0,0,0,0.00749,0.00792,0.00836,0.0104,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.01022,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00968,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00943,0,0,0,0,0,0,0.00831,0.00862,0.00894,0.01034,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00977,0,0,0,0,0,0,0.01788,0.01171,0.00946,0.01326,0,0,0,0,0,0,0.01557,0.01039,0.00853,0.01223,0,0,0,0,0,0,0.01766,0.0122,0.01001,0.01484,0,0,0,0,0,0,0.01944,0.01341,0.01097,0.01612,0,0,0,0,0,0,0.00922,0.00744,0.00661,0.01094,0,0,0,0,0,0,0.01087,0.00849,0.00741,0.01204,0,0,0,0,0,0,0.00883,0.0072,0.00645,0.01072,0,0,0,0,0,0,0.01237,0.00906,0.0077,0.01189,0,0,0,0,0,0,0.00863,0.0067,0.00588,0.00931,0,0,0,0,0,0,0.91715,1.34034,1.7002,2.85338,0,0,0,0,0,0,0.88569,1.30716,1.66592,2.82923,0,0,0,0,0,0,0.93291,1.44892,1.88519,3.36535,0,0,0,0,0,0,1.00807,1.57114,2.0509,3.63255,0,0,0,0,0,0,0.79473,1.31547,1.73116,3.19084,0,0,0,0,0,0,0.82906,1.36736,1.80371,3.33111,0,0,0,0,0,0,0.82197,1.3577,1.78296,3.26628,0,0,0,0,0,0,0.85374,1.34733,1.74398,3.10779,0,0,0,0,0,0,0.74165,1.17042,1.49807,2.63216,0,0,0,0,0,0,234.5869,235.72343,238.0583,268.31088,0,0,0,0,0,0,236.33707,237.30807,239.39352,269.34204,0,0,0,0,0,0,239.7154,240.77831,243.01688,273.64091,0,0,0,0,0,0,234.41023,235.49784,237.77024,267.88659,0,0,0,0,0,0,239.81341,240.21794,241.44124,270.06181,0,0,0,0,0,0,236.1256,236.69955,238.17702,266.89992,0,0,0,0,0,0,238.05912,238.40674,239.54376,267.80454,0,0,0,0,0,0,238.15974,238.80941,240.4054,269.58388,0,0,0,0,0,0,234.44742,234.96253,236.32132,264.61313,0,0,0,0,0,0,0.00477,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00478,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00485,0.00544,0.00637,0.0083,0,0,0,0,0,0,0.00468,0.00525,0.00617,0.00808,0,0,0,0,0,0,0.00483,0.00541,0.00634,0.00827,0,0,0,0,0,0,0.00473,0.00531,0.00623,0.00814,0,0,0,0,0,0,0.00477,0.00535,0.00628,0.00821,0,0,0,0,0,0,0.00481,0.0054,0.00633,0.00827,0,0,0,0,0,0,0.00485,0.00544,0.00638,0.00834,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01703,0.02193,0.02193,0,0,0,0,0,0,0.04247,0.06358,0.08504,0.14444,0,0,0,0,0,0,0.04132,0.06188,0.083,0.14177,0,0,0,0,0,0,0.04249,0.06735,0.0898,0.15883,0,0,0,0,0,0,0.04441,0.07155,0.0953,0.1691,0,0,0,0,0,0,0.03499,0.05869,0.0794,0.14505,0,0,0,0,0,0,0.03792,0.06286,0.08465,0.15312,0,0,0,0,0,0,0.03567,0.05933,0.08035,0.14532,0,0,0,0,0,0,0.04046,0.06509,0.08718,0.15454,0,0,0,0,0,0,0.03571,0.0569,0.0765,0.13396,0,0,0,0,0,0,0.00122,0.00192,0.00254,0.00526,0.00017,0.00025,0,0,0,0,0.00116,0.00183,0.0024,0.0049,0.00017,0.00026,0,0,0,0,0.0012,0.00189,0.0025,0.00516,0.00018,0.00026,0,0,0,0,0.00123,0.00195,0.00258,0.00539,0.00017,0.00025,0,0,0,0,0.00101,0.00156,0.00202,0.00394,0.00018,0.00026,0,0,0,0,0.00103,0.00161,0.00209,0.00414,0.00017,0.00025,0,0,0,0,0.00101,0.00156,0.00201,0.0039,0.00017,0.00025,0,0,0,0,0.00109,0.0017,0.00221,0.00442,0.00017,0.00026,0,0,0,0,0.00103,0.00159,0.00204,0.00396,0.00017,0.00026,0,0,0,0,0.03613,0.0377,0.03914,0.04549,0.00863,0.00922,0,0,0,0,0.03713,0.0386,0.03992,0.04571,0.00889,0.00948,0,0,0,0,0.04054,0.04208,0.04349,0.04974,0.00962,0.01022,0,0,0,0,0.03384,0.03544,0.03693,0.04355,0.00811,0.00869,0,0,0,0,0.03937,0.04054,0.04154,0.04582,0.00947,0.01007,0,0,0,0,0.0359,0.03714,0.03821,0.04283,0.00868,0.00927,0,0,0,0,0.03602,0.03719,0.03817,0.04236,0.00873,0.00932,0,0,0,0,0.03791,0.03924,0.04039,0.04542,0.0091,0.0097,0,0,0,0,0.0376,0.03878,0.03977,0.04401,0.00907,0.00967,0,0,0,0,0.00669,0.00808,0.00935,0.01497,0.00209,0.00263,0,0,0,0,0.00671,0.008,0.00917,0.01429,0.00213,0.00267,0,0,0,0,0.00721,0.00858,0.00983,0.01535,0.00225,0.00281,0,0,0,0,0.00643,0.00785,0.00917,0.01502,0.002,0.00253,0,0,0,0,0.00669,0.00773,0.00861,0.01239,0.00222,0.00278,0,0,0,0,0.00631,0.0074,0.00835,0.01243,0.00209,0.00263,0,0,0,0,0.00626,0.00729,0.00816,0.01187,0.0021,0.00264,0,0,0,0,0.00666,0.00782,0.00885,0.01329,0.00216,0.00271,0,0,0,0,0.00649,0.00753,0.00841,0.01216,0.00216,0.00272,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00227,0.00228,0.0023,0.00259,0,0,0,0,0,0,0.00231,0.00232,0.00234,0.00263,0,0,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00231,0.00231,0.00232,0.0026,0,0,0,0,0,0,0.00227,0.00228,0.00229,0.00257,0,0,0,0,0,0,0.00229,0.00229,0.00231,0.00258,0,0,0,0,0,0,0.00229,0.0023,0.00231,0.00259,0,0,0,0,0,0,0.00226,0.00226,0.00227,0.00255,0,0,0,0,0,0,0.05239,0.07068,0.09542,0.15728,0,0,0,0,0,0,0.04494,0.06163,0.08436,0.14244,0,0,0,0,0,0,0.05167,0.07251,0.09923,0.17265,0,0,0,0,0,0,0.05713,0.07986,0.10885,0.18752,0,0,0,0,0,0,0.02472,0.03987,0.05907,0.1178,0,0,0,0,0,0,0.0299,0.04655,0.06759,0.13108,0,0,0,0,0,0,0.02327,0.03794,0.05667,0.11377,0,0,0,0,0,0,0.03468,0.05123,0.07249,0.13297,0,0,0,0,0,0,0.02279,0.03576,0.05249,0.1005,0,0 +Large SUV,PH10E,2030,0,0,0,0,0,0.00797,0.00838,0.0088,0.01001,0,0,0,0,0,0,0.00817,0.00854,0.00891,0.00998,0,0,0,0,0,0,0.00894,0.00934,0.00975,0.01094,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.00964,0,0,0,0,0,0,0.0086,0.00885,0.00911,0.0098,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.0092,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00902,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00981,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00936,0,0,0,0,0,0,0.01662,0.01047,0.00835,0.0107,0,0,0,0,0,0,0.01429,0.00916,0.00742,0.00966,0,0,0,0,0,0,0.01635,0.01077,0.00873,0.01163,0,0,0,0,0,0,0.01809,0.01189,0.0096,0.01271,0,0,0,0,0,0,0.0079,0.00602,0.00532,0.00773,0,0,0,0,0,0,0.00953,0.00701,0.00608,0.00869,0,0,0,0,0,0,0.00748,0.00576,0.00515,0.00751,0,0,0,0,0,0,0.01105,0.00767,0.00645,0.00887,0,0,0,0,0,0,0.00732,0.0054,0.00472,0.00662,0,0,0,0,0,0,0.7973,1.16542,1.49197,2.19791,0,0,0,0,0,0,0.76171,1.12744,1.45133,2.15194,0,0,0,0,0,0,0.80604,1.25159,1.64416,2.53336,0,0,0,0,0,0,0.87395,1.36104,1.79302,2.74754,0,0,0,0,0,0,0.6579,1.10385,1.47231,2.31051,0,0,0,0,0,0,0.69274,1.15455,1.54226,2.42859,0,0,0,0,0,0,0.67878,1.13779,1.51464,2.36529,0,0,0,0,0,0,0.71997,1.14551,1.49969,2.29838,0,0,0,0,0,0,0.61454,0.98364,1.27484,1.92636,0,0,0,0,0,0,213.49891,215.51143,218.87846,237.62188,0,0,0,0,0,0,215.04232,216.91048,220.04699,238.42257,0,0,0,0,0,0,218.14123,220.1076,223.40804,242.28526,0,0,0,0,0,0,213.33378,215.30129,218.60983,237.23679,0,0,0,0,0,0,218.03909,219.40321,221.73125,238.68086,0,0,0,0,0,0,214.73855,216.24264,218.79651,236.00728,0,0,0,0,0,0,216.43235,217.73743,219.97522,236.65925,0,0,0,0,0,0,216.60666,218.18827,220.8651,238.42237,0,0,0,0,0,0,213.17955,214.62181,217.05028,233.90875,0,0,0,0,0,0,0.00476,0.00533,0.00628,0.00818,0,0,0,0,0,0,0.00477,0.00534,0.00628,0.00817,0,0,0,0,0,0,0.00485,0.00541,0.00636,0.00826,0,0,0,0,0,0,0.00467,0.00523,0.00616,0.00804,0,0,0,0,0,0,0.00482,0.00539,0.00633,0.00823,0,0,0,0,0,0,0.00472,0.00528,0.00622,0.00809,0,0,0,0,0,0,0.00476,0.00533,0.00627,0.00816,0,0,0,0,0,0,0.00481,0.00538,0.00632,0.00822,0,0,0,0,0,0,0.00484,0.00542,0.00637,0.00829,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01697,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01697,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01688,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.0169,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01694,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01698,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01702,0.02193,0.02193,0,0,0,0,0,0,0.03365,0.04914,0.06776,0.10601,0,0,0,0,0,0,0.03239,0.04743,0.06568,0.10326,0,0,0,0,0,0,0.03333,0.05141,0.07089,0.11465,0,0,0,0,0,0,0.03478,0.0545,0.07511,0.12181,0,0,0,0,0,0,0.02603,0.04302,0.06075,0.10111,0,0,0,0,0,0,0.0287,0.04664,0.06537,0.10784,0,0,0,0,0,0,0.02654,0.04348,0.06145,0.10144,0,0,0,0,0,0,0.03064,0.04839,0.06736,0.10932,0,0,0,0,0,0,0.02653,0.0418,0.05855,0.09404,0,0,0,0,0,0,0.00121,0.00192,0.00254,0.00418,0.00017,0,0,0,0,0,0.00116,0.00182,0.0024,0.00391,0.00017,0,0,0,0,0,0.00119,0.00188,0.0025,0.00411,0.00018,0,0,0,0,0,0.00122,0.00194,0.00258,0.00428,0.00017,0,0,0,0,0,0.00101,0.00156,0.00201,0.00315,0.00018,0,0,0,0,0,0.00103,0.00161,0.00209,0.00331,0.00017,0,0,0,0,0,0.00101,0.00156,0.00201,0.00313,0.00017,0,0,0,0,0,0.00108,0.00169,0.00221,0.00353,0.00017,0,0,0,0,0,0.00103,0.00159,0.00204,0.00318,0.00017,0,0,0,0,0,0.03612,0.03768,0.03913,0.043,0.00863,0,0,0,0,0,0.03713,0.03858,0.03991,0.04344,0.00889,0,0,0,0,0,0.04053,0.04206,0.04349,0.0473,0.00962,0,0,0,0,0,0.03383,0.03543,0.03693,0.04097,0.00811,0,0,0,0,0,0.03936,0.04054,0.04154,0.04411,0.00947,0,0,0,0,0,0.0359,0.03713,0.0382,0.04099,0.00868,0,0,0,0,0,0.03601,0.03718,0.03816,0.04068,0.00873,0,0,0,0,0,0.03791,0.03922,0.04039,0.04343,0.0091,0,0,0,0,0,0.03759,0.03877,0.03977,0.0423,0.00907,0,0,0,0,0,0.00668,0.00806,0.00934,0.01277,0.00209,0,0,0,0,0,0.0067,0.00799,0.00916,0.01228,0.00213,0,0,0,0,0,0.00721,0.00856,0.00982,0.01319,0.00225,0,0,0,0,0,0.00642,0.00784,0.00917,0.01274,0.002,0,0,0,0,0,0.00668,0.00772,0.00861,0.01088,0.00222,0,0,0,0,0,0.0063,0.00739,0.00834,0.01081,0.00209,0,0,0,0,0,0.00625,0.00728,0.00816,0.01038,0.0021,0,0,0,0,0,0.00665,0.00781,0.00884,0.01153,0.00216,0,0,0,0,0,0.00648,0.00753,0.00841,0.01065,0.00216,0,0,0,0,0,0.00205,0.00207,0.00211,0.00229,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.00229,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00233,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00228,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0023,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00227,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00228,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.00229,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00225,0,0,0,0,0,0,0.04937,0.06481,0.08712,0.13154,0,0,0,0,0,0,0.04193,0.05581,0.07605,0.11667,0,0,0,0,0,0,0.04852,0.06576,0.0896,0.14025,0,0,0,0,0,0,0.05391,0.07278,0.09875,0.15351,0,0,0,0,0,0,0.02162,0.03329,0.0495,0.08575,0,0,0,0,0,0,0.02678,0.03979,0.05778,0.09789,0,0,0,0,0,0,0.02017,0.03139,0.04712,0.08211,0,0,0,0,0,0,0.03157,0.0448,0.06324,0.10275,0,0,0,0,0,0,0.01975,0.02976,0.04387,0.07366,0 +Large SUV,PH10E,2035,0,0,0,0,0,0,0.00797,0.00838,0.0088,0.00978,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.00978,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01072,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.0094,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.00967,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00905,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00889,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00964,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00923,0,0,0,0,0,0,0.01653,0.01046,0.00836,0.00986,0,0,0,0,0,0,0.01421,0.00915,0.00742,0.0088,0,0,0,0,0,0,0.01626,0.01076,0.00873,0.01053,0,0,0,0,0,0,0.01799,0.01188,0.0096,0.01153,0,0,0,0,0,0,0.00786,0.00602,0.00533,0.00661,0,0,0,0,0,0,0.00948,0.00701,0.00608,0.00752,0,0,0,0,0,0,0.00745,0.00576,0.00515,0.00639,0,0,0,0,0,0,0.01099,0.00767,0.00646,0.00783,0,0,0,0,0,0,0.00728,0.0054,0.00472,0.00571,0,0,0,0,0,0,0.79761,1.16635,1.49257,1.99708,0,0,0,0,0,0,0.76227,1.12838,1.45186,1.9433,0,0,0,0,0,0,0.80673,1.25277,1.64477,2.27123,0,0,0,0,0,0,0.8747,1.36231,1.79367,2.46744,0,0,0,0,0,0,0.65933,1.105,1.47266,2.03042,0,0,0,0,0,0,0.69411,1.15574,1.54266,2.14062,0,0,0,0,0,0,0.68029,1.13894,1.51496,2.07866,0,0,0,0,0,0,0.72107,1.14653,1.50013,2.04353,0,0,0,0,0,0,0.61569,0.98447,1.27517,1.70565,0,0,0,0,0,0,213.45459,215.51958,218.89542,227.92808,0,0,0,0,0,0,215.00058,216.91807,220.06238,228.65637,0,0,0,0,0,0,218.09737,220.1156,223.42433,232.38117,0,0,0,0,0,0,213.28959,215.30918,218.62603,227.5553,0,0,0,0,0,0,218.00676,219.40855,221.74227,228.7709,0,0,0,0,0,0,214.70366,216.24846,218.8088,226.25097,0,0,0,0,0,0,216.40104,217.74241,219.98545,226.82384,0,0,0,0,0,0,216.57028,218.19448,220.87797,228.58087,0,0,0,0,0,0,213.14733,214.62766,217.06223,224.21254,0,0,0,0,0,0,0.00475,0.00534,0.00628,0.00819,0,0,0,0,0,0,0.00476,0.00534,0.00628,0.00818,0,0,0,0,0,0,0.00483,0.00542,0.00636,0.00826,0,0,0,0,0,0,0.00466,0.00523,0.00617,0.00805,0,0,0,0,0,0,0.00481,0.00539,0.00634,0.00823,0,0,0,0,0,0,0.00471,0.00529,0.00622,0.0081,0,0,0,0,0,0,0.00475,0.00533,0.00627,0.00817,0,0,0,0,0,0,0.00479,0.00538,0.00633,0.00823,0,0,0,0,0,0,0.00483,0.00542,0.00638,0.0083,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01704,0.02193,0.02193,0,0,0,0,0,0,0.03362,0.04925,0.0678,0.09277,0,0,0,0,0,0,0.03237,0.04753,0.06572,0.08998,0,0,0,0,0,0,0.03332,0.05153,0.07093,0.09907,0,0,0,0,0,0,0.03477,0.05462,0.07515,0.10502,0,0,0,0,0,0,0.02604,0.04313,0.06078,0.08557,0,0,0,0,0,0,0.0287,0.04676,0.0654,0.0918,0,0,0,0,0,0,0.02655,0.04359,0.06148,0.08596,0,0,0,0,0,0,0.03064,0.0485,0.0674,0.09343,0,0,0,0,0,0,0.02653,0.0419,0.05858,0.0802,0.01783,0,0,0,0,0,0.00122,0.00192,0.00254,0.00384,0.01557,0,0,0,0,0,0.00116,0.00182,0.0024,0.00359,0.01736,0,0,0,0,0,0.0012,0.00189,0.0025,0.00378,0.01912,0,0,0,0,0,0.00123,0.00194,0.00258,0.00393,0.00929,0,0,0,0,0,0.00101,0.00156,0.00201,0.00291,0.01086,0,0,0,0,0,0.00103,0.00161,0.00209,0.00305,0.00892,0,0,0,0,0,0.00101,0.00156,0.00201,0.00288,0.01235,0,0,0,0,0,0.00109,0.00169,0.00221,0.00325,0.00882,0,0,0,0,0,0.00103,0.00159,0.00204,0.00293,0.04731,0,0,0,0,0,0.03613,0.03769,0.03913,0.04223,0.04236,0,0,0,0,0,0.03713,0.03859,0.03991,0.04272,0.04749,0,0,0,0,0,0.04053,0.04207,0.04349,0.04653,0.05006,0,0,0,0,0,0.03383,0.03543,0.03693,0.04016,0.02861,0,0,0,0,0,0.03936,0.04054,0.04154,0.04356,0.03145,0,0,0,0,0,0.0359,0.03713,0.03821,0.04041,0.027,0,0,0,0,0,0.03602,0.03718,0.03817,0.04014,0.03528,0,0,0,0,0,0.03791,0.03923,0.04039,0.0428,0.02695,0,0,0,0,0,0.03759,0.03878,0.03977,0.04176,0.0363,0,0,0,0,0,0.00669,0.00807,0.00935,0.01208,0.03173,0,0,0,0,0,0.0067,0.00799,0.00917,0.01165,0.03572,0,0,0,0,0,0.00721,0.00857,0.00982,0.01251,0.03912,0,0,0,0,0,0.00643,0.00784,0.00917,0.01203,0.01913,0,0,0,0,0,0.00669,0.00773,0.00861,0.0104,0.02223,0,0,0,0,0,0.00631,0.0074,0.00834,0.01029,0.01826,0,0,0,0,0,0.00626,0.00729,0.00816,0.00991,0.02531,0,0,0,0,0,0.00665,0.00782,0.00884,0.01098,0.01796,0,0,0,0,0,0.00648,0.00753,0.00841,0.01017,0,0,0,0,0,0,0.00205,0.00207,0.00211,0.00219,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.0022,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00224,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00219,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0022,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.0022,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00216,0,0,0,0,0,0,0.04925,0.0649,0.08719,0.12317,0,0,0,0,0,0,0.04183,0.05589,0.07612,0.10819,0,0,0,0,0,0,0.0484,0.06585,0.08967,0.12928,0,0,0,0,0,0,0.05379,0.07288,0.09883,0.142,0,0,0,0,0,0,0.02159,0.03336,0.04954,0.07461,0,0,0,0,0,0,0.02673,0.03987,0.05782,0.08636,0,0,0,0,0,0,0.02014,0.03146,0.04715,0.07113,0,0,0,0,0,0,0.03151,0.04487,0.06329,0.09245,0,0,0,0,0,0,0.01971,0.02982,0.04391,0.06454 +Large SUV,PH10E,2040,0,0,0,0,0,0,0,0.00797,0.00838,0.0088,0,0,0,0,0,0,0,0.00817,0.00854,0.00892,0,0,0,0,0,0,0,0.00894,0.00934,0.00975,0,0,0,0,0,0,0,0.00749,0.00791,0.00836,0,0,0,0,0,0,0,0.0086,0.00885,0.00911,0,0,0,0,0,0,0,0.00786,0.00814,0.00842,0,0,0,0,0,0,0,0.00786,0.00811,0.00835,0,0,0,0,0,0,0,0.00831,0.00862,0.00893,0,0,0,0,0,0,0,0.0082,0.00845,0.00869,0,0,0,0,0,0,0,0.01653,0.01046,0.00835,0,0,0,0,0,0,0,0.01422,0.00915,0.00742,0,0,0,0,0,0,0,0.01626,0.01076,0.00873,0,0,0,0,0,0,0,0.01799,0.01188,0.0096,0,0,0,0,0,0,0,0.00787,0.00601,0.00532,0,0,0,0,0,0,0,0.00949,0.00701,0.00608,0,0,0,0,0,0,0,0.00745,0.00576,0.00515,0,0,0,0,0,0,0,0.01099,0.00767,0.00645,0,0,0,0,0,0,0,0.00729,0.00539,0.00472,0,0,0,0,0,0,0,0.79649,1.16554,1.49218,0,0,0,0,0,0,0,0.76117,1.12762,1.45152,0,0,0,0,0,0,0,0.80545,1.25186,1.64437,0,0,0,0,0,0,0,0.87331,1.36132,1.79325,0,0,0,0,0,0,0,0.65816,1.10427,1.47244,0,0,0,0,0,0,0,0.69289,1.15496,1.5424,0,0,0,0,0,0,0,0.67911,1.13823,1.51475,0,0,0,0,0,0,0,0.71989,1.14579,1.49985,0,0,0,0,0,0,0,0.61469,0.98389,1.27496,0,0,0,0,0,0,0,213.4427,215.5043,218.88484,0,0,0,0,0,0,0,214.98953,216.90376,220.05274,0,0,0,0,0,0,0,218.08565,220.10049,223.41404,0,0,0,0,0,0,0,213.27791,215.29397,218.61572,0,0,0,0,0,0,0,217.99862,219.39784,221.73511,0,0,0,0,0,0,0,214.69468,216.23676,218.80109,0,0,0,0,0,0,0,216.39311,217.73212,219.97902,0,0,0,0,0,0,0,216.56081,218.18222,220.86993,0,0,0,0,0,0,0,213.1388,214.61659,217.05499,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00483,0.00541,0.00636,0,0,0,0,0,0,0,0.00465,0.00523,0.00617,0,0,0,0,0,0,0,0.00481,0.00539,0.00634,0,0,0,0,0,0,0,0.00471,0.00528,0.00622,0,0,0,0,0,0,0,0.00475,0.00533,0.00627,0,0,0,0,0,0,0,0.00479,0.00537,0.00632,0,0,0,0,0,0,0,0.00483,0.00542,0.00638,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01461,0.01699,0.02188,0,0,0,0,0,0,0,0.01461,0.01698,0.02187,0,0,0,0,0,0,0,0.01454,0.01689,0.02176,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01455,0.01691,0.02178,0,0,0,0,0,0,0,0.01459,0.01695,0.02184,0,0,0,0,0,0,0,0.01462,0.01699,0.02189,0,0,0,0,0,0,0,0.01465,0.01703,0.02193,0,0,0,0,0,0,0,0.03358,0.04918,0.06777,0,0,0,0,0,0,0,0.03233,0.04746,0.0657,0,0,0,0,0,0,0,0.03327,0.05145,0.07091,0,0,0,0,0,0,0,0.03472,0.05454,0.07513,0,0,0,0,0,0,0,0.026,0.04306,0.06076,0,0,0,0,0,0,0,0.02866,0.04669,0.06538,0,0,0,0,0,0,0,0.02651,0.04352,0.06147,0,0,0,0,0,0,0,0.0306,0.04843,0.06738,0,0,0,0,0,0,0,0.0265,0.04184,0.05856,0.00482,0.01056,0,0,0,0,0,0.00121,0.00192,0.00254,0.00422,0.00922,0,0,0,0,0,0.00116,0.00182,0.0024,0.00468,0.01027,0,0,0,0,0,0.00119,0.00188,0.0025,0.00513,0.01127,0,0,0,0,0,0.00122,0.00194,0.00258,0.00254,0.00547,0,0,0,0,0,0.00101,0.00156,0.00201,0.00295,0.00638,0,0,0,0,0,0.00103,0.00161,0.00209,0.00245,0.00526,0,0,0,0,0,0.00101,0.00156,0.00201,0.00336,0.0073,0,0,0,0,0,0.00108,0.00169,0.00221,0.00244,0.00523,0,0,0,0,0,0.00103,0.00159,0.00204,0.018,0.0309,0,0,0,0,0,0.03612,0.03769,0.03913,0.0169,0.02806,0,0,0,0,0,0.03713,0.03859,0.03991,0.01874,0.03126,0,0,0,0,0,0.04053,0.04207,0.04349,0.01828,0.03219,0,0,0,0,0,0.03383,0.03543,0.03693,0.01369,0.02011,0,0,0,0,0,0.03936,0.04054,0.04154,0.01386,0.0214,0,0,0,0,0,0.0359,0.03713,0.0382,0.01275,0.0189,0,0,0,0,0,0.03602,0.03718,0.03817,0.01519,0.02396,0,0,0,0,0,0.03791,0.03923,0.04039,0.01301,0.01912,0,0,0,0,0,0.03759,0.03877,0.03977,0.01038,0.02179,0,0,0,0,0,0.00668,0.00807,0.00934,0.00921,0.01908,0,0,0,0,0,0.0067,0.00799,0.00916,0.01029,0.02137,0,0,0,0,0,0.00721,0.00856,0.00982,0.01101,0.02332,0,0,0,0,0,0.00642,0.00784,0.00917,0.00594,0.01162,0,0,0,0,0,0.00668,0.00772,0.00861,0.00667,0.01334,0,0,0,0,0,0.0063,0.00739,0.00834,0.00566,0.0111,0,0,0,0,0,0.00625,0.00729,0.00816,0.00754,0.01529,0,0,0,0,0,0.00665,0.00782,0.00884,0.00563,0.01104,0,0,0,0,0,0.00648,0.00753,0.00841,0,0,0,0,0,0,0,0.00205,0.00207,0.00211,0,0,0,0,0,0,0,0.00207,0.00209,0.00212,0,0,0,0,0,0,0,0.0021,0.00212,0.00215,0,0,0,0,0,0,0,0.00205,0.00207,0.0021,0,0,0,0,0,0,0,0.0021,0.00211,0.00213,0,0,0,0,0,0,0,0.00207,0.00208,0.00211,0,0,0,0,0,0,0,0.00208,0.0021,0.00212,0,0,0,0,0,0,0,0.00208,0.0021,0.00213,0,0,0,0,0,0,0,0.00205,0.00207,0.00209,0,0,0,0,0,0,0,0.04919,0.06481,0.08714,0,0,0,0,0,0,0,0.04177,0.05581,0.07607,0,0,0,0,0,0,0,0.04834,0.06576,0.08963,0,0,0,0,0,0,0,0.05372,0.07278,0.09878,0,0,0,0,0,0,0,0.02155,0.03331,0.04951,0,0,0,0,0,0,0,0.02669,0.03981,0.05779,0,0,0,0,0,0,0,0.02011,0.0314,0.04713,0,0,0,0,0,0,0,0.03146,0.04481,0.06326,0,0,0,0,0,0,0,0.01969,0.02977,0.04388 +Large SUV,PH10E,2045,0,0,0,0,0,0,0,0,0.00797,0.00838,0,0,0,0,0,0,0,0,0.00817,0.00854,0,0,0,0,0,0,0,0,0.00894,0.00934,0,0,0,0,0,0,0,0,0.00749,0.00791,0,0,0,0,0,0,0,0,0.0086,0.00885,0,0,0,0,0,0,0,0,0.00786,0.00814,0,0,0,0,0,0,0,0,0.00786,0.00811,0,0,0,0,0,0,0,0,0.00831,0.00862,0,0,0,0,0,0,0,0,0.0082,0.00845,0,0,0,0,0,0,0,0,0.01653,0.01046,0,0,0,0,0,0,0,0,0.01422,0.00915,0,0,0,0,0,0,0,0,0.01626,0.01076,0,0,0,0,0,0,0,0,0.01799,0.01188,0,0,0,0,0,0,0,0,0.00787,0.00601,0,0,0,0,0,0,0,0,0.00949,0.00701,0,0,0,0,0,0,0,0,0.00745,0.00576,0,0,0,0,0,0,0,0,0.01099,0.00767,0,0,0,0,0,0,0,0,0.00729,0.00539,0,0,0,0,0,0,0,0,0.79587,1.16531,0,0,0,0,0,0,0,0,0.76056,1.12739,0,0,0,0,0,0,0,0,0.80475,1.25157,0,0,0,0,0,0,0,0,0.87255,1.36101,0,0,0,0,0,0,0,0,0.65756,1.10402,0,0,0,0,0,0,0,0,0.69225,1.15469,0,0,0,0,0,0,0,0,0.67851,1.13797,0,0,0,0,0,0,0,0,0.71926,1.14555,0,0,0,0,0,0,0,0,0.61417,0.9837,0,0,0,0,0,0,0,0,213.43362,215.50112,0,0,0,0,0,0,0,0,214.98102,216.90063,0,0,0,0,0,0,0,0,218.07672,220.09735,0,0,0,0,0,0,0,0,213.26892,215.29077,0,0,0,0,0,0,0,0,217.99222,219.39577,0,0,0,0,0,0,0,0,214.68769,216.23437,0,0,0,0,0,0,0,0,216.38703,217.73035,0,0,0,0,0,0,0,0,216.55366,218.17975,0,0,0,0,0,0,0,0,213.13228,214.61452,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00483,0.00541,0,0,0,0,0,0,0,0,0.00465,0.00523,0,0,0,0,0,0,0,0,0.00481,0.00539,0,0,0,0,0,0,0,0,0.0047,0.00528,0,0,0,0,0,0,0,0,0.00474,0.00533,0,0,0,0,0,0,0,0,0.00479,0.00537,0,0,0,0,0,0,0,0,0.00482,0.00542,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01454,0.01689,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01455,0.01691,0,0,0,0,0,0,0,0,0.01459,0.01695,0,0,0,0,0,0,0,0,0.01462,0.01699,0,0,0,0,0,0,0,0,0.01465,0.01703,0,0,0,0,0,0,0,0,0.03356,0.04916,0,0,0,0,0,0,0,0,0.03231,0.04744,0,0,0,0,0,0,0,0,0.03324,0.05143,0,0,0,0,0,0,0,0,0.03469,0.05452,0,0,0,0,0,0,0,0,0.02598,0.04304,0,0,0,0,0,0,0,0,0.02864,0.04666,0,0,0,0,0,0,0,0,0.02649,0.0435,0,0,0,0,0,0,0,0,0.03057,0.04841,0,0,0,0,0,0,0,0,0.02648,0.04182,0.00267,0.00373,0.00742,0,0,0,0,0,0.00121,0.00192,0.00234,0.00327,0.00647,0,0,0,0,0,0.00116,0.00182,0.00255,0.00357,0.00715,0,0,0,0,0,0.00119,0.00188,0.00278,0.0039,0.00786,0,0,0,0,0,0.00122,0.00194,0.00142,0.00197,0.00383,0,0,0,0,0,0.00101,0.00156,0.00163,0.00227,0.00446,0,0,0,0,0,0.00103,0.00161,0.00139,0.00192,0.00371,0,0,0,0,0,0.001,0.00156,0.00187,0.0026,0.00512,0,0,0,0,0,0.00108,0.00169,0.00141,0.00195,0.00373,0,0,0,0,0,0.00103,0.00159,0.01309,0.01538,0.0238,0,0,0,0,0,0.03612,0.03768,0.01263,0.0146,0.02187,0,0,0,0,0,0.03712,0.03858,0.01387,0.01602,0.02421,0,0,0,0,0,0.04053,0.04207,0.01289,0.01531,0.02435,0,0,0,0,0,0.03382,0.03543,0.01119,0.01233,0.01649,0,0,0,0,0,0.03936,0.04054,0.01089,0.01221,0.01712,0,0,0,0,0,0.0359,0.03713,0.01039,0.0115,0.01545,0,0,0,0,0,0.03601,0.03718,0.01182,0.01338,0.01903,0,0,0,0,0,0.03791,0.03923,0.01074,0.01187,0.0158,0,0,0,0,0,0.03759,0.03877,0.00603,0.00806,0.0155,0,0,0,0,0,0.00668,0.00806,0.00543,0.00718,0.01361,0,0,0,0,0,0.0067,0.00799,0.00598,0.00788,0.01513,0,0,0,0,0,0.0072,0.00856,0.00624,0.00838,0.01638,0,0,0,0,0,0.00642,0.00784,0.00373,0.00473,0.00841,0,0,0,0,0,0.00668,0.00772,0.00405,0.00522,0.00956,0,0,0,0,0,0.0063,0.00739,0.00356,0.00455,0.00805,0,0,0,0,0,0.00625,0.00728,0.00456,0.00594,0.01093,0,0,0,0,0,0.00665,0.00781,0.00362,0.00463,0.0081,0,0,0,0,0,0.00648,0.00753,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.00207,0.00209,0,0,0,0,0,0,0,0,0.0021,0.00212,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.0021,0.00211,0,0,0,0,0,0,0,0,0.00207,0.00208,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.04915,0.06479,0,0,0,0,0,0,0,0,0.04174,0.05579,0,0,0,0,0,0,0,0,0.0483,0.06573,0,0,0,0,0,0,0,0,0.05368,0.07276,0,0,0,0,0,0,0,0,0.02153,0.03329,0,0,0,0,0,0,0,0,0.02666,0.03979,0,0,0,0,0,0,0,0,0.02009,0.03139,0,0,0,0,0,0,0,0,0.03144,0.04479,0,0,0,0,0,0,0,0,0.01967,0.02975 +Large SUV,PH10E,2050,0,0,0,0,0,0,0,0,0,0.00797,0,0,0,0,0,0,0,0,0,0.00817,0,0,0,0,0,0,0,0,0,0.00894,0,0,0,0,0,0,0,0,0,0.00749,0,0,0,0,0,0,0,0,0,0.0086,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00831,0,0,0,0,0,0,0,0,0,0.0082,0,0,0,0,0,0,0,0,0,0.01653,0,0,0,0,0,0,0,0,0,0.01422,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01799,0,0,0,0,0,0,0,0,0,0.00787,0,0,0,0,0,0,0,0,0,0.00949,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.01099,0,0,0,0,0,0,0,0,0,0.00729,0,0,0,0,0,0,0,0,0,0.79588,0,0,0,0,0,0,0,0,0,0.76057,0,0,0,0,0,0,0,0,0,0.80476,0,0,0,0,0,0,0,0,0,0.87256,0,0,0,0,0,0,0,0,0,0.65758,0,0,0,0,0,0,0,0,0,0.69226,0,0,0,0,0,0,0,0,0,0.67852,0,0,0,0,0,0,0,0,0,0.71927,0,0,0,0,0,0,0,0,0,0.61418,0,0,0,0,0,0,0,0,0,213.43367,0,0,0,0,0,0,0,0,0,214.98087,0,0,0,0,0,0,0,0,0,218.0766,0,0,0,0,0,0,0,0,0,213.26882,0,0,0,0,0,0,0,0,0,217.99211,0,0,0,0,0,0,0,0,0,214.68757,0,0,0,0,0,0,0,0,0,216.3871,0,0,0,0,0,0,0,0,0,216.55347,0,0,0,0,0,0,0,0,0,213.13218,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00483,0,0,0,0,0,0,0,0,0,0.00465,0,0,0,0,0,0,0,0,0,0.00481,0,0,0,0,0,0,0,0,0,0.0047,0,0,0,0,0,0,0,0,0,0.00474,0,0,0,0,0,0,0,0,0,0.00479,0,0,0,0,0,0,0,0,0,0.00482,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01454,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01455,0,0,0,0,0,0,0,0,0,0.01459,0,0,0,0,0,0,0,0,0,0.01462,0,0,0,0,0,0,0,0,0,0.01465,0,0,0,0,0,0,0,0,0,0.03356,0,0,0,0,0,0,0,0,0,0.03231,0,0,0,0,0,0,0,0,0,0.03325,0,0,0,0,0,0,0,0,0,0.03469,0,0,0,0,0,0,0,0,0,0.02598,0,0,0,0,0,0,0,0,0,0.02864,0,0,0,0,0,0,0,0,0,0.02649,0,0,0,0,0,0,0,0,0,0.03057,0,0,0,0,0,0,0,0,0,0.02648,0.00088,0.0014,0.00191,0.00444,0,0,0,0,0,0.00121,0.0008,0.00125,0.0017,0.00391,0,0,0,0,0,0.00116,0.00093,0.00116,0.00156,0.00425,0,0,0,0,0,0.00119,0.00096,0.00142,0.00193,0.00465,0,0,0,0,0,0.00122,0.00056,0.00089,0.00121,0.00245,0,0,0,0,0,0.00101,0.00063,0.00091,0.00123,0.00278,0,0,0,0,0,0.00103,0.00055,0.00083,0.00113,0.00234,0,0,0,0,0,0.001,0.00069,0.001,0.00135,0.00313,0,0,0,0,0,0.00108,0.00051,0.00076,0.00102,0.00232,0,0,0,0,0,0.00103,0.00923,0.01035,0.01148,0.01718,0,0,0,0,0,0.03612,0.00932,0.01025,0.01125,0.01621,0,0,0,0,0,0.03712,0.01034,0.01077,0.01167,0.01774,0,0,0,0,0,0.04053,0.00892,0.0099,0.01105,0.0172,0,0,0,0,0,0.03382,0.00937,0.01003,0.01073,0.01348,0,0,0,0,0,0.03936,0.00875,0.0093,0.01001,0.01343,0,0,0,0,0,0.0359,0.0086,0.00919,0.00983,0.01247,0,0,0,0,0,0.03601,0.00929,0.00992,0.01069,0.01466,0,0,0,0,0,0.03791,0.00884,0.00935,0.00991,0.01276,0,0,0,0,0,0.03759,0.00262,0.0036,0.00461,0.00965,0,0,0,0,0,0.00668,0.00251,0.00333,0.00421,0.0086,0,0,0,0,0,0.0067,0.00286,0.00324,0.00403,0.00941,0,0,0,0,0,0.0072,0.00273,0.00359,0.00461,0.01005,0,0,0,0,0,0.00642,0.00211,0.00269,0.00331,0.00574,0,0,0,0,0,0.00668,0.00215,0.00264,0.00326,0.00629,0,0,0,0,0,0.0063,0.00199,0.00251,0.00307,0.00541,0,0,0,0,0,0.00625,0.00232,0.00287,0.00355,0.00707,0,0,0,0,0,0.00665,0.00194,0.00239,0.00288,0.00541,0,0,0,0,0,0.00648,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.04915,0,0,0,0,0,0,0,0,0,0.04174,0,0,0,0,0,0,0,0,0,0.0483,0,0,0,0,0,0,0,0,0,0.05368,0,0,0,0,0,0,0,0,0,0.02153,0,0,0,0,0,0,0,0,0,0.02666,0,0,0,0,0,0,0,0,0,0.02009,0,0,0,0,0,0,0,0,0,0.03144,0,0,0,0,0,0,0,0,0,0.01967 +Large SUV,PH10G,1990,0.04668,0,0,0,0,0,0,0,0,0,0.04118,0,0,0,0,0,0,0,0,0,0.04674,0,0,0,0,0,0,0,0,0,0.04975,0,0,0,0,0,0,0,0,0,0.0266,0,0,0,0,0,0,0,0,0,0.02946,0,0,0,0,0,0,0,0,0,0.02482,0,0,0,0,0,0,0,0,0,0.03361,0,0,0,0,0,0,0,0,0,0.02495,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0.00173,0.00175,0.00167,0.00369,0,0,0,0,0,0.06054,0.00179,0.0018,0.00172,0.0038,0,0,0,0,0,0.06752,0.00194,0.00195,0.00185,0.0041,0,0,0,0,0,0.07436,0.00161,0.00164,0.00156,0.00344,0,0,0,0,0,0.03611,0.00191,0.00192,0.00182,0.00404,0,0,0,0,0,0.04223,0.00174,0.00175,0.00167,0.00369,0,0,0,0,0,0.03468,0.00175,0.00177,0.00169,0.00373,0,0,0,0,0,0.04801,0.00183,0.00185,0.00176,0.00389,0,0,0,0,0,0.03431,0.00183,0.00185,0.00176,0.0039,0,0,0,0,0,0.18397,0.01852,0.01864,0.01807,0.02912,0,0,0,0,0,0.16475,0.01885,0.01897,0.0184,0.02955,0,0,0,0,0,0.18469,0.01981,0.01994,0.01934,0.03079,0,0,0,0,0,0.19469,0.0178,0.01792,0.01736,0.02813,0,0,0,0,0,0.11125,0.01961,0.01973,0.01914,0.03052,0,0,0,0,0,0.12231,0.01855,0.01867,0.01809,0.02911,0,0,0,0,0,0.105,0.01863,0.01876,0.01818,0.02926,0,0,0,0,0,0.1372,0.01914,0.01926,0.01868,0.02992,0,0,0,0,0,0.10482,0.01912,0.01925,0.01867,0.02995,0,0,0,0,0,0.14116,0.01118,0.01129,0.01077,0.02094,0,0,0,0,0,0.12341,0.01129,0.01141,0.01088,0.02114,0,0,0,0,0,0.13892,0.01163,0.01174,0.01119,0.02173,0,0,0,0,0,0.15215,0.01091,0.01102,0.0105,0.02042,0,0,0,0,0,0.07439,0.01155,0.01167,0.01112,0.02159,0,0,0,0,0,0.08646,0.01117,0.01128,0.01075,0.02088,0,0,0,0,0,0.07102,0.01121,0.01133,0.0108,0.02099,0,0,0,0,0,0.09841,0.01139,0.01151,0.01097,0.02132,0,0,0,0,0,0.06986,0.01141,0.01153,0.01099,0.02137,0,0,0,0,0,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Large SUV,PH10G,1995,0.01727,0.03094,0,0,0,0,0,0,0,0,0.01609,0.02773,0,0,0,0,0,0,0,0,0.018,0.03135,0,0,0,0,0,0,0,0,0.01761,0.03253,0,0,0,0,0,0,0,0,0.01288,0.01918,0,0,0,0,0,0,0,0,0.01301,0.02057,0,0,0,0,0,0,0,0,0.0119,0.01783,0,0,0,0,0,0,0,0,0.01436,0.02326,0,0,0,0,0,0,0,0,0.0122,0.01807,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0.00018,0.00028,0.00031,0.00112,0,0,0,0,0.01643,0.03584,0.00018,0.00028,0.00031,0.00115,0,0,0,0,0.01821,0.03995,0.00019,0.00029,0.00032,0.00122,0,0,0,0,0.01995,0.04383,0.00018,0.00027,0.0003,0.00106,0,0,0,0,0.00987,0.02128,0.00019,0.00029,0.00031,0.00121,0,0,0,0,0.01148,0.02483,0.00018,0.00028,0.0003,0.00112,0,0,0,0,0.00952,0.02044,0.00018,0.00028,0.00031,0.00113,0,0,0,0,0.01307,0.02838,0.00018,0.00029,0.00031,0.00117,0,0,0,0,0.00949,0.02035,0.00018,0.00029,0.00031,0.00118,0,0,0,0,0.07,0.12017,0.00872,0.00944,0.00965,0.0145,0,0,0,0,0.06572,0.10912,0.00897,0.0097,0.0099,0.01479,0,0,0,0,0.07288,0.12157,0.0097,0.01044,0.01065,0.01564,0,0,0,0,0.07109,0.12518,0.00819,0.0089,0.00911,0.01386,0,0,0,0,0.05325,0.07821,0.00955,0.01029,0.01049,0.01546,0,0,0,0,0.0539,0.08322,0.00876,0.00948,0.00969,0.01452,0,0,0,0,0.04958,0.0735,0.00881,0.00954,0.00974,0.01461,0,0,0,0,0.05908,0.09317,0.00918,0.00992,0.01013,0.01505,0,0,0,0,0.0506,0.07435,0.00916,0.0099,0.01011,0.01504,0,0,0,0,0.04035,0.08473,0.00216,0.00283,0.00302,0.00749,0,0,0,0,0.03582,0.07421,0.0022,0.00288,0.00307,0.00756,0,0,0,0,0.04002,0.08309,0.00232,0.00301,0.00319,0.00779,0,0,0,0,0.04282,0.09067,0.00207,0.00273,0.00291,0.00729,0,0,0,0,0.02309,0.04517,0.00229,0.00298,0.00316,0.00773,0,0,0,0,0.02594,0.05189,0.00216,0.00283,0.00301,0.00747,0,0,0,0,0.022,0.04316,0.00218,0.00285,0.00304,0.00751,0,0,0,0,0.02931,0.05947,0.00224,0.00291,0.0031,0.00763,0,0,0,0,0.02191,0.04291,0.00224,0.00292,0.00312,0.00766,0,0,0,0,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Large SUV,PH10G,2000,0.01213,0.01435,0.02348,0,0,0,0,0,0,0,0.01171,0.01361,0.02136,0,0,0,0,0,0,0,0.01294,0.0151,0.024,0,0,0,0,0,0,0,0.01195,0.01436,0.02433,0,0,0,0,0,0,0,0.01049,0.01153,0.01571,0,0,0,0,0,0,0,0.01013,0.01137,0.01639,0,0,0,0,0,0,0,0.00966,0.01065,0.01458,0,0,0,0,0,0,0,0.011,0.01246,0.01838,0,0,0,0,0,0,0,0.01001,0.011,0.01489,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0.00018,0.00027,0.00029,0.00046,0,0,0,0.00911,0.01271,0.02516,0.00019,0.00028,0.00029,0.00047,0,0,0,0.00993,0.01389,0.02782,0.00019,0.00028,0.0003,0.00048,0,0,0,0.01083,0.01516,0.03057,0.00018,0.00027,0.00028,0.00044,0,0,0,0.00552,0.00765,0.01489,0.00019,0.00028,0.0003,0.00048,0,0,0,0.00634,0.00881,0.01733,0.00018,0.00027,0.00029,0.00046,0,0,0,0.00539,0.00747,0.01442,0.00018,0.00027,0.00029,0.00046,0,0,0,0.00727,0.01012,0.0199,0.00019,0.00028,0.00029,0.00047,0,0,0,0.00549,0.0076,0.0145,0.00019,0.00028,0.0003,0.00047,0,0,0,0.05092,0.05981,0.09255,0.00873,0.00938,0.00951,0.01062,0,0,0,0.04911,0.05679,0.08505,0.00899,0.00964,0.00977,0.01088,0,0,0,0.05393,0.06231,0.09414,0.00972,0.01038,0.01051,0.01164,0,0,0,0.05013,0.05952,0.09469,0.00821,0.00884,0.00897,0.01006,0,0,0,0.04353,0.04796,0.06411,0.00957,0.01023,0.01036,0.01148,0,0,0,0.04236,0.0475,0.06659,0.00878,0.00942,0.00955,0.01065,0,0,0,0.04039,0.04473,0.06009,0.00883,0.00948,0.00961,0.01072,0,0,0,0.04598,0.05204,0.07399,0.0092,0.00986,0.00999,0.01111,0,0,0,0.04175,0.04618,0.06143,0.00918,0.00983,0.00997,0.0111,0,0,0,0.02346,0.03133,0.0603,0.00218,0.00278,0.0029,0.00392,0,0,0,0.02112,0.02792,0.05292,0.00222,0.00282,0.00294,0.00396,0,0,0,0.02325,0.03066,0.05882,0.00234,0.00295,0.00307,0.00411,0,0,0,0.02428,0.03259,0.0637,0.00209,0.00267,0.00279,0.00379,0,0,0,0.01449,0.01841,0.0327,0.00231,0.00292,0.00304,0.00407,0,0,0,0.01574,0.02029,0.03717,0.00218,0.00277,0.00289,0.0039,0,0,0,0.01386,0.01771,0.0313,0.00219,0.00279,0.00291,0.00393,0,0,0,0.01772,0.02308,0.0425,0.00226,0.00286,0.00298,0.00401,0,0,0,0.01407,0.01799,0.03149,0.00226,0.00286,0.00299,0.00402,0,0,0,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Large SUV,PH10G,2005,0.00884,0.00977,0.01094,0.01702,0,0,0,0,0,0,0.00894,0.00968,0.01067,0.0159,0,0,0,0,0,0,0.00997,0.01017,0.01102,0.01759,0,0,0,0,0,0,0.00855,0.00936,0.01059,0.01725,0,0,0,0,0,0,0.00904,0.00953,0.01016,0.0129,0,0,0,0,0,0,0.00841,0.00878,0.00942,0.01291,0,0,0,0,0,0,0.00826,0.00868,0.00924,0.01182,0,0,0,0,0,0,0.00894,0.00939,0.01012,0.01422,0,0,0,0,0,0,0.00851,0.00885,0.00932,0.0121,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.00323,0.00515,0.00701,0.01693,0.00017,0.00025,0.00026,0.0003,0,0,0.00295,0.00457,0.00622,0.01488,0.00017,0.00026,0.00027,0.00031,0,0,0.00342,0.00422,0.00569,0.01617,0.00018,0.00026,0.00027,0.00031,0,0,0.00352,0.00522,0.00713,0.01775,0.00017,0.00025,0.00026,0.0003,0,0,0.00206,0.00322,0.00439,0.00929,0.00018,0.00026,0.00027,0.00031,0,0,0.00231,0.00329,0.00448,0.01052,0.00017,0.00025,0.00026,0.0003,0,0,0.00199,0.00303,0.00413,0.00886,0.00017,0.00025,0.00026,0.0003,0,0,0.00253,0.00364,0.00495,0.01193,0.00017,0.00026,0.00027,0.00031,0,0,0.00184,0.00275,0.00372,0.00883,0.00017,0.00026,0.00027,0.00031,0,0,0.03556,0.03964,0.04388,0.06619,0.00864,0.00922,0.00931,0.00964,0,0,0.03594,0.03932,0.04303,0.06244,0.00889,0.00948,0.00956,0.00989,0,0,0.03987,0.04134,0.04465,0.06832,0.00962,0.01022,0.01031,0.01064,0,0,0.03431,0.03793,0.04225,0.06626,0.00812,0.00869,0.00877,0.0091,0,0,0.03619,0.03857,0.04115,0.05192,0.00947,0.01007,0.01016,0.01048,0,0,0.03377,0.03572,0.03833,0.05172,0.00869,0.00927,0.00935,0.00967,0,0,0.0332,0.03534,0.0377,0.04803,0.00873,0.00932,0.0094,0.00973,0,0,0.03586,0.03814,0.04099,0.05653,0.00911,0.0097,0.00979,0.01011,0,0,0.03413,0.03599,0.03806,0.04924,0.00908,0.00967,0.00976,0.0101,0,0,0.00987,0.01348,0.01723,0.03697,0.00209,0.00263,0.00271,0.00301,0,0,0.00946,0.01246,0.01574,0.03291,0.00213,0.00268,0.00275,0.00306,0,0,0.01081,0.01211,0.01504,0.03598,0.00225,0.00281,0.00288,0.00318,0,0,0.01027,0.01347,0.0173,0.03854,0.002,0.00253,0.0026,0.0029,0,0,0.00799,0.0101,0.01238,0.02191,0.00222,0.00278,0.00285,0.00315,0,0,0.00813,0.00986,0.01217,0.02401,0.00209,0.00263,0.00271,0.003,0,0,0.00749,0.00939,0.01148,0.02062,0.00211,0.00264,0.00272,0.00302,0,0,0.00876,0.01078,0.01331,0.02705,0.00217,0.00271,0.00279,0.00309,0,0,0.00732,0.00897,0.01081,0.0207,0.00217,0.00272,0.0028,0.0031,0,0,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Large SUV,PH10G,2010,0,0.00846,0.00931,0.01029,0.0148,0,0,0,0,0,0,0.00857,0.00931,0.01018,0.01404,0,0,0,0,0,0,0.00917,0.0098,0.01109,0.01539,0,0,0,0,0,0,0.008,0.0089,0.00997,0.01483,0,0,0,0,0,0,0.00887,0.00937,0.00987,0.01202,0,0,0,0,0,0,0.00809,0.00859,0.00926,0.01178,0,0,0,0,0,0,0.00808,0.00854,0.00897,0.01094,0,0,0,0,0,0,0.00857,0.00913,0.00989,0.01284,0,0,0,0,0,0,0.00833,0.00871,0.00926,0.0112,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0,0.00194,0.00327,0.00461,0.01201,0.00017,0.00025,0.00026,0.00029,0,0,0.0018,0.00303,0.00428,0.01072,0.00017,0.00026,0.00027,0.00029,0,0,0.00163,0.00272,0.00443,0.01144,0.00018,0.00026,0.00027,0.0003,0,0,0.00197,0.00333,0.00477,0.01253,0.00017,0.00025,0.00026,0.00028,0,0,0.00157,0.00258,0.00343,0.00728,0.00018,0.00026,0.00027,0.0003,0,0,0.00152,0.00251,0.00357,0.00798,0.00017,0.00025,0.00026,0.00029,0,0,0.00149,0.00244,0.00323,0.00686,0.00017,0.00025,0.00026,0.00029,0,0,0.00157,0.0026,0.00377,0.00884,0.00017,0.00026,0.00027,0.00029,0,0,0.00133,0.00217,0.00314,0.00677,0.00017,0.00026,0.00027,0.0003,0,0,0.03293,0.03598,0.03912,0.05581,0.00863,0.00922,0.00931,0.00952,0,0,0.03356,0.03631,0.03921,0.05368,0.00889,0.00948,0.00956,0.00977,0,0,0.03597,0.03841,0.04245,0.05828,0.00962,0.01022,0.01031,0.01052,0,0,0.03106,0.03419,0.03758,0.05519,0.00812,0.00869,0.00877,0.00898,0,0,0.03514,0.03732,0.03921,0.04771,0.00947,0.01007,0.01016,0.01036,0,0,0.03205,0.0342,0.03658,0.04637,0.00868,0.00927,0.00935,0.00956,0,0,0.03212,0.03415,0.03588,0.04384,0.00873,0.00932,0.0094,0.00961,0,0,0.03382,0.03607,0.03873,0.05002,0.0091,0.0097,0.00979,0.00999,0,0,0.03306,0.03485,0.037,0.04493,0.00907,0.00967,0.00976,0.00997,0,0,0.00755,0.01025,0.01303,0.02779,0.00209,0.00263,0.00271,0.0029,0,0,0.00736,0.00979,0.01236,0.02516,0.00213,0.00267,0.00275,0.00295,0,0,0.00736,0.00952,0.01309,0.0271,0.00225,0.00281,0.00288,0.00307,0,0,0.0074,0.01017,0.01317,0.02875,0.002,0.00253,0.0026,0.00279,0,0,0.00706,0.00899,0.01066,0.01818,0.00222,0.00278,0.00285,0.00305,0,0,0.00661,0.00851,0.01062,0.01928,0.00209,0.00263,0.00271,0.0029,0,0,0.00654,0.00834,0.00987,0.01691,0.0021,0.00264,0.00272,0.00291,0,0,0.00696,0.00895,0.0113,0.02129,0.00216,0.00271,0.00279,0.00298,0,0,0.00639,0.00796,0.00987,0.01689,0.00216,0.00272,0.0028,0.00299,0,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Large SUV,PH10G,2015,0,0,0.00822,0.00889,0.00974,0.01243,0,0,0,0,0,0,0.00838,0.009,0.00976,0.01209,0,0,0,0,0,0,0.009,0.00979,0.0106,0.01312,0,0,0,0,0,0,0.00773,0.00845,0.00934,0.01221,0,0,0,0,0,0,0.00878,0.0092,0.00973,0.01112,0,0,0,0,0,0,0.008,0.0085,0.00907,0.01065,0,0,0,0,0,0,0.00801,0.00839,0.00886,0.0101,0,0,0,0,0,0,0.00845,0.009,0.00962,0.01143,0,0,0,0,0,0,0.00826,0.00869,0.00915,0.01036,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0,0,0.00165,0.00281,0.00409,0.00789,0.00017,0.00025,0.00026,0.00028,0,0,0.00157,0.00267,0.00387,0.00727,0.00017,0.00026,0.00027,0.00029,0,0,0.00142,0.00272,0.00396,0.00756,0.00018,0.00026,0.00027,0.00029,0,0,0.00166,0.00285,0.00417,0.00814,0.00017,0.00025,0.00026,0.00028,0,0,0.00142,0.00232,0.0033,0.00561,0.00018,0.00026,0.00027,0.00029,0,0,0.00138,0.00237,0.00339,0.0059,0.00017,0.00025,0.00026,0.00028,0,0,0.00136,0.00221,0.00313,0.00526,0.00017,0.00025,0.00026,0.00028,0,0,0.0014,0.00245,0.00351,0.0063,0.00017,0.00026,0.00027,0.00029,0,0,0.00121,0.00215,0.00305,0.00514,0.00017,0.00026,0.00027,0.00029,0,0,0.03222,0.03478,0.03774,0.04665,0.00863,0.00922,0.00931,0.00947,0,0,0.03298,0.03541,0.03814,0.04603,0.00889,0.00948,0.00956,0.00973,0,0,0.03546,0.03836,0.0412,0.04962,0.00962,0.01022,0.01031,0.01047,0,0,0.03026,0.03293,0.03598,0.04535,0.00811,0.00869,0.00877,0.00894,0,0,0.03481,0.03671,0.03885,0.04404,0.00947,0.01007,0.01016,0.01032,0,0,0.03171,0.03385,0.03609,0.04181,0.00868,0.00927,0.00935,0.00952,0,0,0.03181,0.03361,0.0356,0.04035,0.00873,0.00932,0.0094,0.00957,0,0,0.03338,0.03566,0.03804,0.04442,0.0091,0.0097,0.00979,0.00995,0,0,0.0328,0.03479,0.03673,0.04139,0.00907,0.00967,0.00976,0.00993,0,0,0.00692,0.00919,0.0118,0.01969,0.00209,0.00263,0.00271,0.00286,0,0,0.00685,0.009,0.01142,0.01839,0.00213,0.00267,0.00275,0.00291,0,0,0.00691,0.00948,0.01199,0.01943,0.00225,0.00281,0.00288,0.00304,0,0,0.0067,0.00906,0.01175,0.02005,0.002,0.00253,0.0026,0.00276,0,0,0.00677,0.00846,0.01035,0.01493,0.00222,0.00278,0.00285,0.00301,0,0,0.00631,0.0082,0.01019,0.01525,0.00209,0.00263,0.00271,0.00286,0,0,0.00627,0.00786,0.00962,0.01383,0.0021,0.00264,0.00272,0.00288,0,0,0.00657,0.00859,0.0107,0.01634,0.00216,0.00271,0.00279,0.00295,0,0,0.00616,0.00792,0.00963,0.01376,0.00216,0.00272,0.0028,0.00295,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Large SUV,PH10G,2020,0,0,0,0.00813,0.00869,0.00925,0.01117,0,0,0,0,0,0,0.00832,0.00882,0.00933,0.01102,0,0,0,0,0,0,0.00907,0.0096,0.01013,0.01194,0,0,0,0,0,0,0.00765,0.00823,0.00882,0.01084,0,0,0,0,0,0,0.00872,0.00908,0.00942,0.01053,0,0,0,0,0,0,0.00798,0.00837,0.00874,0.00997,0,0,0,0,0,0,0.00795,0.00828,0.00859,0.00957,0,0,0,0,0,0,0.00843,0.00885,0.00926,0.01062,0,0,0,0,0,0,0.00827,0.00859,0.00889,0.00984,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0,0,0,0.00151,0.00245,0.00326,0.00585,0.00017,0.00025,0.00026,0,0,0,0.00145,0.00234,0.0031,0.00548,0.00017,0.00026,0.00027,0,0,0,0.00146,0.00237,0.00316,0.00564,0.00018,0.00026,0.00027,0,0,0,0.00152,0.00248,0.00332,0.006,0.00017,0.00025,0.00026,0,0,0,0.00128,0.00204,0.00265,0.00447,0.00018,0.00026,0.00027,0,0,0,0.0013,0.00208,0.00272,0.00464,0.00017,0.00025,0.00026,0,0,0,0.00122,0.00194,0.00251,0.0042,0.00017,0.00025,0.00026,0,0,0,0.00134,0.00215,0.00282,0.00487,0.00017,0.00026,0.00027,0,0,0,0.00119,0.00189,0.00245,0.00409,0.00017,0.00026,0.00027,0,0,0,0.03188,0.03398,0.03588,0.04203,0.00863,0.00922,0.00931,0,0,0,0.0327,0.03467,0.03642,0.04201,0.00889,0.00948,0.00956,0,0,0,0.03557,0.0376,0.03942,0.04528,0.00962,0.01022,0.01031,0,0,0,0.02995,0.0321,0.03406,0.04047,0.00811,0.00869,0.00877,0,0,0,0.0345,0.03612,0.03747,0.04157,0.00947,0.01007,0.01016,0,0,0,0.03155,0.03323,0.03465,0.03903,0.00868,0.00927,0.00935,0,0,0,0.03152,0.03304,0.0343,0.03806,0.00873,0.00932,0.0094,0,0,0,0.03325,0.03501,0.03653,0.04125,0.0091,0.0097,0.00979,0,0,0,0.03276,0.03425,0.03547,0.03914,0.00907,0.00967,0.00976,0,0,0,0.00662,0.00848,0.01016,0.0156,0.00209,0.00263,0.00271,0,0,0,0.0066,0.00835,0.0099,0.01484,0.00213,0.00267,0.00275,0,0,0,0.00701,0.0088,0.01041,0.01559,0.00225,0.00281,0.00288,0,0,0,0.00642,0.00832,0.01006,0.01573,0.002,0.00253,0.0026,0,0,0,0.00649,0.00793,0.00912,0.01275,0.00222,0.00278,0.00285,0,0,0,0.00617,0.00766,0.00892,0.01279,0.00209,0.00263,0.00271,0,0,0,0.00602,0.00736,0.00847,0.0118,0.0021,0.00264,0.00272,0,0,0,0.00646,0.00802,0.00936,0.01354,0.00216,0.00271,0.00279,0,0,0,0.00612,0.00744,0.00852,0.01177,0.00216,0.00272,0.0028,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Large SUV,PH10G,2025,0,0,0,0,0.00787,0.00821,0.00857,0.01007,0,0,0,0,0,0,0.00808,0.00839,0.00871,0.01005,0,0,0,0,0,0,0.00882,0.00915,0.00949,0.01091,0,0,0,0,0,0,0.00738,0.00773,0.00811,0.00968,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00989,0,0,0,0,0,0,0.00778,0.00802,0.00827,0.00926,0,0,0,0,0,0,0.00778,0.00798,0.00818,0.00899,0,0,0,0,0,0,0.00822,0.00848,0.00875,0.00984,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00929,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0,0,0,0.00099,0.00158,0.00211,0.00421,0.00017,0.00025,0,0,0,0,0.00095,0.00151,0.002,0.00396,0.00017,0.00026,0,0,0,0,0.00097,0.00153,0.00204,0.00406,0.00018,0.00026,0,0,0,0,0.00101,0.0016,0.00214,0.0043,0.00017,0.00025,0,0,0,0,0.00085,0.00132,0.00172,0.00326,0.00018,0.00026,0,0,0,0,0.00086,0.00135,0.00176,0.00337,0.00017,0.00025,0,0,0,0,0.00081,0.00126,0.00163,0.00305,0.00017,0.00025,0,0,0,0,0.00088,0.00139,0.00182,0.00353,0.00017,0.00026,0,0,0,0,0.00079,0.00123,0.00159,0.003,0.00017,0.00026,0,0,0,0,0.03077,0.03207,0.0333,0.03825,0.00863,0.00922,0,0,0,0,0.03164,0.03287,0.034,0.03854,0.00889,0.00948,0,0,0,0,0.0345,0.03575,0.03693,0.04166,0.00962,0.01022,0,0,0,0,0.02882,0.03015,0.03141,0.03652,0.00811,0.00869,0,0,0,0,0.03359,0.0346,0.03548,0.03892,0.00947,0.01007,0,0,0,0,0.03062,0.03166,0.03259,0.03624,0.00868,0.00927,0,0,0,0,0.03066,0.03161,0.03242,0.03559,0.00873,0.00932,0,0,0,0,0.03229,0.03339,0.03437,0.03828,0.0091,0.0097,0,0,0,0,0.03193,0.03285,0.03365,0.03677,0.00907,0.00967,0,0,0,0,0.00564,0.00679,0.00787,0.01226,0.00209,0.00263,0,0,0,0,0.00567,0.00675,0.00775,0.01177,0.00213,0.00267,0,0,0,0,0.00606,0.00717,0.00821,0.01239,0.00225,0.00281,0,0,0,0,0.00542,0.0066,0.00771,0.01223,0.002,0.00253,0,0,0,0,0.00569,0.00659,0.00736,0.01041,0.00222,0.00278,0,0,0,0,0.00535,0.00627,0.00709,0.01032,0.00209,0.00263,0,0,0,0,0.00525,0.00609,0.00681,0.00961,0.0021,0.00264,0,0,0,0,0.00561,0.00658,0.00744,0.0109,0.00216,0.00271,0,0,0,0,0.00538,0.0062,0.0069,0.00967,0.00216,0.00272,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Large SUV,PH10G,2030,0,0,0,0,0,0.00787,0.00821,0.00856,0.00958,0,0,0,0,0,0,0.00808,0.00838,0.0087,0.00961,0,0,0,0,0,0,0.00882,0.00914,0.00948,0.01044,0,0,0,0,0,0,0.00737,0.00773,0.00809,0.00917,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00959,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00893,0,0,0,0,0,0,0.00778,0.00798,0.00817,0.00872,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00948,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00903,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0,0,0,0,0.00099,0.00157,0.00209,0.00348,0.00017,0,0,0,0,0,0.00095,0.00151,0.00199,0.00327,0.00017,0,0,0,0,0,0.00096,0.00153,0.00203,0.00336,0.00018,0,0,0,0,0,0.001,0.0016,0.00212,0.00355,0.00017,0,0,0,0,0,0.00084,0.00132,0.00171,0.0027,0.00018,0,0,0,0,0,0.00086,0.00134,0.00175,0.0028,0.00017,0,0,0,0,0,0.00081,0.00125,0.00162,0.00254,0.00017,0,0,0,0,0,0.00088,0.00139,0.00181,0.00293,0.00017,0,0,0,0,0,0.00079,0.00122,0.00159,0.00249,0.00017,0,0,0,0,0,0.03076,0.03206,0.03327,0.03655,0.00863,0,0,0,0,0,0.03164,0.03286,0.03397,0.03698,0.00889,0,0,0,0,0,0.03449,0.03574,0.0369,0.04004,0.00962,0,0,0,0,0,0.02881,0.03014,0.03137,0.03478,0.00811,0,0,0,0,0,0.03359,0.0346,0.03546,0.03771,0.00947,0,0,0,0,0,0.03062,0.03166,0.03257,0.03496,0.00868,0,0,0,0,0,0.03065,0.0316,0.0324,0.03447,0.00873,0,0,0,0,0,0.03229,0.03338,0.03435,0.03691,0.0091,0,0,0,0,0,0.03192,0.03285,0.03364,0.03566,0.00907,0,0,0,0,0,0.00563,0.00678,0.00785,0.01075,0.00209,0,0,0,0,0,0.00566,0.00674,0.00772,0.01039,0.00213,0,0,0,0,0,0.00605,0.00716,0.00818,0.01096,0.00225,0,0,0,0,0,0.00541,0.00659,0.00767,0.01069,0.002,0,0,0,0,0,0.00569,0.00658,0.00734,0.00933,0.00222,0,0,0,0,0,0.00535,0.00627,0.00707,0.00919,0.00209,0,0,0,0,0,0.00525,0.00609,0.00679,0.00863,0.0021,0,0,0,0,0,0.00561,0.00657,0.00743,0.0097,0.00216,0,0,0,0,0,0.00538,0.0062,0.0069,0.00868,0.00216,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Large SUV,PH10G,2035,0,0,0,0,0,0,0.00786,0.0082,0.00856,0.00941,0,0,0,0,0,0,0.00807,0.00838,0.0087,0.00946,0,0,0,0,0,0,0.00882,0.00913,0.00948,0.01028,0,0,0,0,0,0,0.00737,0.00772,0.0081,0.00899,0,0,0,0,0,0,0.00854,0.00875,0.00898,0.00948,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00882,0,0,0,0,0,0,0.00778,0.00797,0.00818,0.00863,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00935,0,0,0,0,0,0,0.0081,0.0083,0.0085,0.00893,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0.01783,0,0,0,0,0,0.00099,0.00156,0.0021,0.00323,0.01557,0,0,0,0,0,0.00095,0.0015,0.00199,0.00303,0.01736,0,0,0,0,0,0.00096,0.00152,0.00203,0.00311,0.01912,0,0,0,0,0,0.001,0.00158,0.00213,0.0033,0.00929,0,0,0,0,0,0.00084,0.00131,0.00171,0.00251,0.01086,0,0,0,0,0,0.00086,0.00134,0.00175,0.0026,0.00892,0,0,0,0,0,0.0008,0.00125,0.00162,0.00236,0.01235,0,0,0,0,0,0.00088,0.00138,0.00182,0.00271,0.00882,0,0,0,0,0,0.00079,0.00122,0.00159,0.00231,0.04731,0,0,0,0,0,0.03076,0.03204,0.03328,0.03597,0.04236,0,0,0,0,0,0.03163,0.03284,0.03398,0.03644,0.04749,0,0,0,0,0,0.03448,0.03572,0.03691,0.03947,0.05006,0,0,0,0,0,0.0288,0.03011,0.03139,0.03419,0.02861,0,0,0,0,0,0.03358,0.03458,0.03546,0.03728,0.03145,0,0,0,0,0,0.03061,0.03164,0.03257,0.03452,0.027,0,0,0,0,0,0.03065,0.03158,0.03241,0.03408,0.03528,0,0,0,0,0,0.03228,0.03336,0.03436,0.03644,0.02695,0,0,0,0,0,0.03192,0.03284,0.03364,0.03526,0.0363,0,0,0,0,0,0.00563,0.00676,0.00786,0.01024,0.03173,0,0,0,0,0,0.00566,0.00672,0.00773,0.00991,0.03572,0,0,0,0,0,0.00605,0.00714,0.00819,0.01046,0.03912,0,0,0,0,0,0.0054,0.00656,0.00769,0.01017,0.01913,0,0,0,0,0,0.00569,0.00657,0.00735,0.00896,0.02223,0,0,0,0,0,0.00534,0.00625,0.00708,0.0088,0.01826,0,0,0,0,0,0.00525,0.00607,0.0068,0.00828,0.02531,0,0,0,0,0,0.0056,0.00656,0.00743,0.00928,0.01796,0,0,0,0,0,0.00538,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Large SUV,PH10G,2040,0,0,0,0,0,0,0,0.00786,0.0082,0.00857,0,0,0,0,0,0,0,0.00807,0.00838,0.00871,0,0,0,0,0,0,0,0.00881,0.00914,0.00948,0,0,0,0,0,0,0,0.00737,0.00772,0.00811,0,0,0,0,0,0,0,0.00853,0.00876,0.00898,0,0,0,0,0,0,0,0.00778,0.00802,0.00826,0,0,0,0,0,0,0,0.00777,0.00798,0.00818,0,0,0,0,0,0,0,0.00822,0.00848,0.00875,0,0,0,0,0,0,0,0.0081,0.0083,0.0085,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0.00482,0.01056,0,0,0,0,0,0.00098,0.00157,0.0021,0.00422,0.00922,0,0,0,0,0,0.00094,0.0015,0.002,0.00468,0.01027,0,0,0,0,0,0.00096,0.00152,0.00204,0.00513,0.01127,0,0,0,0,0,0.00099,0.00159,0.00214,0.00254,0.00547,0,0,0,0,0,0.00084,0.00131,0.00172,0.00295,0.00638,0,0,0,0,0,0.00085,0.00134,0.00176,0.00245,0.00526,0,0,0,0,0,0.0008,0.00125,0.00163,0.00336,0.0073,0,0,0,0,0,0.00088,0.00138,0.00182,0.00244,0.00523,0,0,0,0,0,0.00078,0.00122,0.00159,0.018,0.0309,0,0,0,0,0,0.03074,0.03205,0.03329,0.0169,0.02806,0,0,0,0,0,0.03162,0.03284,0.03399,0.01874,0.03126,0,0,0,0,0,0.03447,0.03573,0.03692,0.01828,0.03219,0,0,0,0,0,0.02878,0.03012,0.03141,0.01369,0.02011,0,0,0,0,0,0.03357,0.03458,0.03547,0.01386,0.0214,0,0,0,0,0,0.0306,0.03165,0.03258,0.01275,0.0189,0,0,0,0,0,0.03064,0.03159,0.03242,0.01519,0.02396,0,0,0,0,0,0.03227,0.03337,0.03436,0.01301,0.01912,0,0,0,0,0,0.03192,0.03284,0.03364,0.01038,0.02179,0,0,0,0,0,0.00561,0.00677,0.00787,0.00921,0.01908,0,0,0,0,0,0.00564,0.00673,0.00775,0.01029,0.02137,0,0,0,0,0,0.00603,0.00715,0.0082,0.01101,0.02332,0,0,0,0,0,0.00539,0.00657,0.00771,0.00594,0.01162,0,0,0,0,0,0.00568,0.00657,0.00736,0.00667,0.01334,0,0,0,0,0,0.00533,0.00626,0.00709,0.00566,0.0111,0,0,0,0,0,0.00524,0.00608,0.00681,0.00754,0.01529,0,0,0,0,0,0.00559,0.00656,0.00744,0.00563,0.01104,0,0,0,0,0,0.00537,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Large SUV,PH10G,2045,0,0,0,0,0,0,0,0,0.00786,0.0082,0,0,0,0,0,0,0,0,0.00807,0.00838,0,0,0,0,0,0,0,0,0.00882,0.00914,0,0,0,0,0,0,0,0,0.00737,0.00773,0,0,0,0,0,0,0,0,0.00853,0.00876,0,0,0,0,0,0,0,0,0.00778,0.00802,0,0,0,0,0,0,0,0,0.00777,0.00798,0,0,0,0,0,0,0,0,0.00822,0.00848,0,0,0,0,0,0,0,0,0.0081,0.0083,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0.00267,0.00373,0.00742,0,0,0,0,0,0.00099,0.00157,0.00234,0.00327,0.00647,0,0,0,0,0,0.00095,0.0015,0.00255,0.00357,0.00715,0,0,0,0,0,0.00096,0.00153,0.00278,0.0039,0.00786,0,0,0,0,0,0.00099,0.00159,0.00142,0.00197,0.00383,0,0,0,0,0,0.00084,0.00132,0.00163,0.00227,0.00446,0,0,0,0,0,0.00085,0.00134,0.00139,0.00192,0.00371,0,0,0,0,0,0.0008,0.00125,0.00187,0.0026,0.00512,0,0,0,0,0,0.00088,0.00138,0.00141,0.00195,0.00373,0,0,0,0,0,0.00078,0.00122,0.01309,0.01538,0.0238,0,0,0,0,0,0.03075,0.03206,0.01263,0.0146,0.02187,0,0,0,0,0,0.03162,0.03285,0.01387,0.01602,0.02421,0,0,0,0,0,0.03447,0.03574,0.01289,0.01531,0.02435,0,0,0,0,0,0.02879,0.03013,0.01119,0.01233,0.01649,0,0,0,0,0,0.03358,0.03459,0.01089,0.01221,0.01712,0,0,0,0,0,0.0306,0.03165,0.01039,0.0115,0.01545,0,0,0,0,0,0.03064,0.0316,0.01182,0.01338,0.01903,0,0,0,0,0,0.03228,0.03338,0.01074,0.01187,0.0158,0,0,0,0,0,0.03192,0.03285,0.00603,0.00806,0.0155,0,0,0,0,0,0.00562,0.00678,0.00543,0.00718,0.01361,0,0,0,0,0,0.00565,0.00674,0.00598,0.00788,0.01513,0,0,0,0,0,0.00604,0.00716,0.00624,0.00838,0.01638,0,0,0,0,0,0.00539,0.00658,0.00373,0.00473,0.00841,0,0,0,0,0,0.00568,0.00658,0.00405,0.00522,0.00956,0,0,0,0,0,0.00534,0.00627,0.00356,0.00455,0.00805,0,0,0,0,0,0.00524,0.00609,0.00456,0.00594,0.01093,0,0,0,0,0,0.0056,0.00657,0.00362,0.00463,0.0081,0,0,0,0,0,0.00537,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Large SUV,PH10G,2050,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00807,0,0,0,0,0,0,0,0,0,0.00882,0,0,0,0,0,0,0,0,0,0.00737,0,0,0,0,0,0,0,0,0,0.00853,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00822,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0.00088,0.0014,0.00191,0.00444,0,0,0,0,0,0.00099,0.0008,0.00125,0.0017,0.00391,0,0,0,0,0,0.00095,0.00093,0.00116,0.00156,0.00425,0,0,0,0,0,0.00096,0.00096,0.00142,0.00193,0.00465,0,0,0,0,0,0.001,0.00056,0.00089,0.00121,0.00245,0,0,0,0,0,0.00084,0.00063,0.00091,0.00123,0.00278,0,0,0,0,0,0.00085,0.00055,0.00083,0.00113,0.00234,0,0,0,0,0,0.0008,0.00069,0.001,0.00135,0.00313,0,0,0,0,0,0.00088,0.00051,0.00076,0.00102,0.00232,0,0,0,0,0,0.00078,0.00923,0.01035,0.01148,0.01718,0,0,0,0,0,0.03075,0.00932,0.01025,0.01125,0.01621,0,0,0,0,0,0.03163,0.01034,0.01077,0.01167,0.01774,0,0,0,0,0,0.03448,0.00892,0.0099,0.01105,0.0172,0,0,0,0,0,0.0288,0.00937,0.01003,0.01073,0.01348,0,0,0,0,0,0.03358,0.00875,0.0093,0.01001,0.01343,0,0,0,0,0,0.03061,0.0086,0.00919,0.00983,0.01247,0,0,0,0,0,0.03065,0.00929,0.00992,0.01069,0.01466,0,0,0,0,0,0.03228,0.00884,0.00935,0.00991,0.01276,0,0,0,0,0,0.03192,0.00262,0.0036,0.00461,0.00965,0,0,0,0,0,0.00562,0.00251,0.00333,0.00421,0.0086,0,0,0,0,0,0.00565,0.00286,0.00324,0.00403,0.00941,0,0,0,0,0,0.00604,0.00273,0.00359,0.00461,0.01005,0,0,0,0,0,0.0054,0.00211,0.00269,0.00331,0.00574,0,0,0,0,0,0.00568,0.00215,0.00264,0.00326,0.00629,0,0,0,0,0,0.00534,0.00199,0.00251,0.00307,0.00541,0,0,0,0,0,0.00524,0.00232,0.00287,0.00355,0.00707,0,0,0,0,0,0.0056,0.00194,0.00239,0.00288,0.00541,0,0,0,0,0,0.00538,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Large SUV,PH20E,1990,0.01226,0,0,0,0,0,0,0,0,0,0.01268,0,0,0,0,0,0,0,0,0,0.01389,0,0,0,0,0,0,0,0,0,0.01141,0,0,0,0,0,0,0,0,0,0.01364,0,0,0,0,0,0,0,0,0,0.01235,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01304,0,0,0,0,0,0,0,0,0,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00289,0.00292,0.00278,0.00615,0,0,0,0,0,0,0.00298,0.003,0.00286,0.00633,0,0,0,0,0,0,0.00324,0.00325,0.00309,0.00684,0,0,0,0,0,0,0.00269,0.00273,0.00261,0.00574,0,0,0,0,0,0,0.00318,0.0032,0.00304,0.00673,0,0,0,0,0,0,0.00289,0.00292,0.00279,0.00614,0,0,0,0,0,0,0.00292,0.00295,0.00281,0.00621,0,0,0,0,0,0,0.00306,0.00308,0.00293,0.00648,0,0,0,0,0,0,0.00305,0.00308,0.00293,0.0065,0,0,0,0,0,0,0.03086,0.03107,0.03012,0.04853,0,0,0,0,0,0,0.03142,0.03162,0.03066,0.04925,0,0,0,0,0,0,0.03302,0.03323,0.03223,0.05132,0,0,0,0,0,0,0.02966,0.02986,0.02893,0.04689,0,0,0,0,0,0,0.03268,0.03289,0.0319,0.05086,0,0,0,0,0,0,0.03092,0.03112,0.03016,0.04851,0,0,0,0,0,0,0.03106,0.03126,0.03031,0.04877,0,0,0,0,0,0,0.03189,0.0321,0.03113,0.04987,0,0,0,0,0,0,0.03187,0.03209,0.03112,0.04992,0,0,0,0,0,0,0.01863,0.01882,0.01795,0.03489,0,0,0,0,0,0,0.01882,0.01902,0.01813,0.03523,0,0,0,0,0,0,0.01938,0.01957,0.01865,0.03621,0,0,0,0,0,0,0.01818,0.01836,0.01751,0.03403,0,0,0,0,0,0,0.01925,0.01944,0.01853,0.03598,0,0,0,0,0,0,0.01861,0.0188,0.01792,0.0348,0,0,0,0,0,0,0.01869,0.01888,0.018,0.03498,0,0,0,0,0,0,0.01899,0.01918,0.01829,0.03553,0,0,0,0,0,0,0.01901,0.01921,0.01832,0.03562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH20E,1995,0.01226,0.01226,0,0,0,0,0,0,0,0,0.01268,0.01268,0,0,0,0,0,0,0,0,0.01388,0.01388,0,0,0,0,0,0,0,0,0.01141,0.0114,0,0,0,0,0,0,0,0,0.01364,0.01364,0,0,0,0,0,0,0,0,0.01235,0.01235,0,0,0,0,0,0,0,0,0.01242,0.01242,0,0,0,0,0,0,0,0,0.01303,0.01303,0,0,0,0,0,0,0,0,0.01298,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.00047,0.00051,0.00187,0,0,0,0,0,0,0.0003,0.00047,0.00052,0.00192,0,0,0,0,0,0,0.00031,0.00048,0.00053,0.00204,0,0,0,0,0,0,0.00029,0.00046,0.0005,0.00177,0,0,0,0,0,0,0.00031,0.00048,0.00052,0.00201,0,0,0,0,0,0,0.0003,0.00047,0.00051,0.00187,0,0,0,0,0,0,0.0003,0.00047,0.00051,0.00189,0,0,0,0,0,0,0.00031,0.00048,0.00052,0.00195,0,0,0,0,0,0,0.00031,0.00048,0.00052,0.00196,0,0,0,0,0,0,0.01453,0.01574,0.01608,0.02417,0,0,0,0,0,0,0.01495,0.01616,0.01651,0.02466,0,0,0,0,0,0,0.01616,0.0174,0.01774,0.02607,0,0,0,0,0,0,0.01366,0.01484,0.01518,0.02311,0,0,0,0,0,0,0.01591,0.01715,0.01749,0.02576,0,0,0,0,0,0,0.0146,0.0158,0.01614,0.02421,0,0,0,0,0,0,0.01468,0.0159,0.01624,0.02434,0,0,0,0,0,0,0.0153,0.01653,0.01688,0.02508,0,0,0,0,0,0,0.01526,0.01649,0.01685,0.02507,0,0,0,0,0,0,0.00361,0.00472,0.00504,0.01248,0,0,0,0,0,0,0.00367,0.00479,0.00511,0.01261,0,0,0,0,0,0,0.00386,0.00501,0.00532,0.01298,0,0,0,0,0,0,0.00346,0.00454,0.00486,0.01215,0,0,0,0,0,0,0.00382,0.00496,0.00527,0.01289,0,0,0,0,0,0,0.00361,0.00471,0.00502,0.01244,0,0,0,0,0,0,0.00363,0.00474,0.00506,0.01251,0,0,0,0,0,0,0.00373,0.00486,0.00517,0.01272,0,0,0,0,0,0,0.00373,0.00487,0.00519,0.01276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH20E,2000,0.01226,0.01848,0.02179,0,0,0,0,0,0,0,0.01268,0.01801,0.02083,0,0,0,0,0,0,0,0.01389,0.01987,0.02308,0,0,0,0,0,0,0,0.01141,0.01806,0.02165,0,0,0,0,0,0,0,0.01364,0.01662,0.01813,0,0,0,0,0,0,0,0.01235,0.01586,0.01791,0,0,0,0,0,0,0,0.01242,0.01528,0.01671,0,0,0,0,0,0,0,0.01304,0.01716,0.01931,0,0,0,0,0,0,0,0.01298,0.01587,0.0173,0,0,0,0,0,0,0,0,0.12027,0.1319,0,0,0,0,0,0,0,0,0.11586,0.12939,0,0,0,0,0,0,0,0,0.13727,0.15177,0,0,0,0,0,0,0,0,0.14305,0.15722,0,0,0,0,0,0,0,0,0.12423,0.13906,0,0,0,0,0,0,0,0,0.13085,0.14519,0,0,0,0,0,0,0,0,0.12629,0.13682,0,0,0,0,0,0,0,0,0.12486,0.1375,0,0,0,0,0,0,0,0,0.10989,0.1217,0,0,0,0,0,0,0,0,10.89501,13.75117,0,0,0,0,0,0,0,0,10.6788,13.65783,0,0,0,0,0,0,0,0,12.22763,15.54118,0,0,0,0,0,0,0,0,12.93875,16.34388,0,0,0,0,0,0,0,0,11.5931,14.80624,0,0,0,0,0,0,0,0,12.04441,15.39791,0,0,0,0,0,0,0,0,12.0601,14.97217,0,0,0,0,0,0,0,0,11.50144,14.52998,0,0,0,0,0,0,0,0,9.95287,12.64009,0,0,0,0,0,0,0,0,365.40024,370.86674,0,0,0,0,0,0,0,0,368.22856,373.29984,0,0,0,0,0,0,0,0,373.62904,378.96487,0,0,0,0,0,0,0,0,364.9261,370.26286,0,0,0,0,0,0,0,0,373.95523,377.64639,0,0,0,0,0,0,0,0,367.95043,373.29723,0,0,0,0,0,0,0,0,371.0116,374.54125,0,0,0,0,0,0,0,0,371.20867,375.49562,0,0,0,0,0,0,0,0,365.59889,369.51784,0,0,0,0,0,0,0,0,0.03285,0.03922,0,0,0,0,0,0,0,0,0.03293,0.03928,0,0,0,0,0,0,0,0,0.03357,0.03994,0,0,0,0,0,0,0,0,0.03213,0.03842,0,0,0,0,0,0,0,0,0.0334,0.03975,0,0,0,0,0,0,0,0,0.03258,0.0389,0,0,0,0,0,0,0,0,0.03284,0.0392,0,0,0,0,0,0,0,0,0.03321,0.03959,0,0,0,0,0,0,0,0,0.03344,0.03989,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05743,0.05743,0,0,0,0,0,0,0,0,0.05741,0.05742,0,0,0,0,0,0,0,0,0.05712,0.05712,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05717,0.05717,0,0,0,0,0,0,0,0,0.05732,0.05733,0,0,0,0,0,0,0,0,0.05745,0.05745,0,0,0,0,0,0,0,0,0.05758,0.05758,0,0,0,0,0,0,0,0,1.43344,1.74492,0,0,0,0,0,0,0,0,1.41546,1.74433,0,0,0,0,0,0,0,0,1.58229,1.93266,0,0,0,0,0,0,0,0,1.63818,1.99229,0,0,0,0,0,0,0,0,1.54392,1.90106,0,0,0,0,0,0,0,0,1.58798,1.93421,0,0,0,0,0,0,0,0,1.57231,1.88667,0,0,0,0,0,0,0,0,1.63329,1.97201,0,0,0,0,0,0,0,0,1.46641,1.78368,0,0,0,0,0,0,0,0,0.01325,0.01876,0.00031,0.00046,0.00048,0.00077,0,0,0,0,0.01159,0.01636,0.00031,0.00046,0.00049,0.00078,0,0,0,0,0.01256,0.01782,0.00032,0.00047,0.0005,0.0008,0,0,0,0,0.01374,0.01954,0.0003,0.00044,0.00047,0.00074,0,0,0,0,0.00695,0.00971,0.00031,0.00047,0.00049,0.0008,0,0,0,0,0.00799,0.01164,0.0003,0.00045,0.00048,0.00076,0,0,0,0,0.00683,0.00951,0.00031,0.00046,0.00048,0.00077,0,0,0,0,0.00921,0.01296,0.00031,0.00046,0.00049,0.00079,0,0,0,0,0.007,0.00974,0.00031,0.00047,0.00049,0.00079,0,0,0,0,0.05693,0.06932,0.01456,0.01563,0.01585,0.0177,0,0,0,0,0.05426,0.06494,0.01498,0.01606,0.01628,0.01814,0,0,0,0,0.05933,0.07119,0.01619,0.0173,0.01752,0.0194,0,0,0,0,0.05615,0.06929,0.01369,0.01474,0.01495,0.01677,0,0,0,0,0.04642,0.05251,0.01594,0.01704,0.01726,0.01913,0,0,0,0,0.04568,0.05389,0.01463,0.0157,0.01592,0.01775,0,0,0,0,0.04326,0.04914,0.01472,0.01579,0.01601,0.01786,0,0,0,0,0.04994,0.05826,0.01534,0.01643,0.01665,0.01851,0,0,0,0,0.0449,0.05087,0.01529,0.01639,0.01661,0.01849,0,0,0,0,0.02879,0.03975,0.00363,0.00463,0.00483,0.00653,0,0,0,0,0.02568,0.03513,0.0037,0.0047,0.0049,0.00661,0,0,0,0,0.02803,0.03853,0.0039,0.00492,0.00511,0.00685,0,0,0,0,0.02962,0.04123,0.00348,0.00445,0.00465,0.00632,0,0,0,0,0.01705,0.02243,0.00385,0.00487,0.00506,0.00679,0,0,0,0,0.01868,0.02584,0.00364,0.00462,0.00482,0.0065,0,0,0,0,0.01641,0.02162,0.00366,0.00465,0.00485,0.00655,0,0,0,0,0.02123,0.02859,0.00376,0.00476,0.00496,0.00668,0,0,0,0,0.01687,0.02215,0.00376,0.00477,0.00498,0.00671,0,0,0,0,0.01196,0.01071,0,0,0,0,0,0,0,0,0.01206,0.01078,0,0,0,0,0,0,0,0,0.01223,0.01094,0,0,0,0,0,0,0,0,0.01195,0.01069,0,0,0,0,0,0,0,0,0.01225,0.0109,0,0,0,0,0,0,0,0,0.01205,0.01078,0,0,0,0,0,0,0,0,0.01215,0.01082,0,0,0,0,0,0,0,0,0.01215,0.01084,0,0,0,0,0,0,0,0,0.01197,0.01067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH20E,2005,0.01227,0.01493,0.01623,0.01928,0,0,0,0,0,0,0.01268,0.015,0.01612,0.01873,0,0,0,0,0,0,0.01389,0.01648,0.01774,0.02071,0,0,0,0,0,0,0.01141,0.01424,0.01564,0.01895,0,0,0,0,0,0,0.01364,0.01505,0.01571,0.01714,0,0,0,0,0,0,0.01235,0.01396,0.01481,0.01643,0,0,0,0,0,0,0.01243,0.01378,0.01441,0.01577,0,0,0,0,0,0,0.01304,0.01489,0.01577,0.01778,0,0,0,0,0,0,0.01299,0.01436,0.01499,0.01635,0,0,0,0,0,0,0,0.05026,0.04287,0.05531,0,0,0,0,0,0,0,0.04616,0.04072,0.05288,0,0,0,0,0,0,0,0.05464,0.0479,0.06447,0,0,0,0,0,0,0,0.05752,0.05036,0.06732,0,0,0,0,0,0,0,0.04086,0.03846,0.05367,0,0,0,0,0,0,0,0.04483,0.04175,0.05732,0,0,0,0,0,0,0,0.04094,0.03765,0.05237,0,0,0,0,0,0,0,0.04517,0.04043,0.05475,0,0,0,0,0,0,0,0.03649,0.03354,0.04505,0,0,0,0,0,0,0,4.29742,5.56429,8.25223,0,0,0,0,0,0,0,4.20167,5.57411,8.22501,0,0,0,0,0,0,0,4.72055,6.37936,9.63051,0,0,0,0,0,0,0,4.96116,6.71585,10.09916,0,0,0,0,0,0,0,4.61964,6.3334,9.37439,0,0,0,0,0,0,0,4.71143,6.49236,9.597,0,0,0,0,0,0,0,4.80982,6.42814,9.47008,0,0,0,0,0,0,0,4.58333,6.10022,9.02629,0,0,0,0,0,0,0,4.08552,5.39877,7.83381,0,0,0,0,0,0,0,378.90135,383.01183,387.68874,0,0,0,0,0,0,0,382.06981,385.8882,390.05587,0,0,0,0,0,0,0,387.35284,391.36776,395.87532,0,0,0,0,0,0,0,378.60345,382.62196,387.1478,0,0,0,0,0,0,0,388.83198,391.63038,394.03662,0,0,0,0,0,0,0,382.48152,386.84358,388.46836,0,0,0,0,0,0,0,386.04132,388.7226,390.92365,0,0,0,0,0,0,0,385.65998,388.89906,392.06194,0,0,0,0,0,0,0,380.06168,383.02048,385.70281,0,0,0,0,0,0,0,0.00675,0.00799,0.01534,0,0,0,0,0,0,0,0.00676,0.00799,0.01534,0,0,0,0,0,0,0,0.00686,0.0081,0.01554,0,0,0,0,0,0,0,0.00662,0.00784,0.01506,0,0,0,0,0,0,0,0.00683,0.00806,0.01548,0,0,0,0,0,0,0,0.00669,0.00791,0.01519,0,0,0,0,0,0,0,0.00674,0.00798,0.01532,0,0,0,0,0,0,0,0.00681,0.00804,0.01545,0,0,0,0,0,0,0,0.00686,0.00811,0.01557,0,0,0,0,0,0,0,0.01878,0.02351,0.02785,0,0,0,0,0,0,0,0.0188,0.02354,0.02789,0,0,0,0,0,0,0,0.01879,0.02354,0.02788,0,0,0,0,0,0,0,0.0187,0.02341,0.02773,0,0,0,0,0,0,0,0.01878,0.02352,0.02786,0,0,0,0,0,0,0,0.01871,0.02344,0.02776,0,0,0,0,0,0,0,0.01876,0.0235,0.02783,0,0,0,0,0,0,0,0.0188,0.02355,0.0279,0,0,0,0,0,0,0,0.01885,0.0236,0.02796,0,0,0,0,0,0,0,0.61471,0.82121,0.85896,0,0,0,0,0,0,0,0.59811,0.8185,0.85432,0,0,0,0,0,0,0,0.67327,0.90582,0.96523,0,0,0,0,0,0,0,0.70547,0.94675,1.00546,0,0,0,0,0,0,0,0.64962,0.88406,0.94575,0,0,0,0,0,0,0,0.67479,0.90762,0.96626,0,0,0,0,0,0,0,0.66691,0.88382,0.93679,0,0,0,0,0,0,0,0.69915,0.93026,0.97297,0,0,0,0,0,0,0,0.62687,0.83852,0.86963,0,0,0,0,0,0,0,0.00574,0.00783,0.0128,0.00029,0.00042,0.00044,0.00051,0,0,0,0.00513,0.007,0.01132,0.00029,0.00043,0.00044,0.00051,0,0,0,0.00553,0.00757,0.01233,0.0003,0.00044,0.00045,0.00052,0,0,0,0.00591,0.0081,0.01332,0.00028,0.00041,0.00043,0.00049,0,0,0,0.00343,0.00468,0.00727,0.00029,0.00043,0.00045,0.00052,0,0,0,0.00379,0.00532,0.00816,0.00028,0.00042,0.00044,0.0005,0,0,0,0.00337,0.00459,0.00712,0.00029,0.00042,0.00044,0.00051,0,0,0,0.00426,0.00581,0.00925,0.00029,0.00043,0.00045,0.00051,0,0,0,0.00345,0.0047,0.00726,0.00029,0.00043,0.00045,0.00052,0,0,0,0.04084,0.04558,0.05674,0.01439,0.01537,0.01551,0.01606,0,0,0,0.04046,0.04465,0.05432,0.01482,0.0158,0.01594,0.01649,0,0,0,0.04422,0.04883,0.05955,0.01603,0.01704,0.01718,0.01773,0,0,0,0.03928,0.04428,0.05611,0.01353,0.01448,0.01462,0.01516,0,0,0,0.03897,0.0417,0.04737,0.01578,0.01679,0.01693,0.01747,0,0,0,0.03675,0.04026,0.04637,0.01448,0.01545,0.01559,0.01612,0,0,0,0.03597,0.03863,0.04411,0.01455,0.01553,0.01567,0.01622,0,0,0,0.03938,0.04282,0.05044,0.01518,0.01617,0.01631,0.01686,0,0,0,0.03744,0.04013,0.0457,0.01513,0.01612,0.01627,0.01683,0,0,0,0.01455,0.01875,0.02861,0.00349,0.00438,0.00451,0.00502,0,0,0,0.01347,0.01718,0.02573,0.00355,0.00446,0.00459,0.00509,0,0,0,0.01466,0.01874,0.02822,0.00375,0.00468,0.00481,0.00531,0,0,0,0.01469,0.01911,0.02957,0.00334,0.00421,0.00434,0.00484,0,0,0,0.01045,0.01287,0.01788,0.00371,0.00463,0.00476,0.00526,0,0,0,0.01078,0.01378,0.01929,0.00349,0.00438,0.00451,0.00501,0,0,0,0.00996,0.01231,0.01716,0.00351,0.00441,0.00454,0.00504,0,0,0,0.01189,0.01493,0.02167,0.00361,0.00452,0.00465,0.00516,0,0,0,0.01027,0.01265,0.01757,0.00361,0.00453,0.00466,0.00517,0,0,0,0.0124,0.01106,0.00373,0,0,0,0,0,0,0,0.01251,0.01114,0.00375,0,0,0,0,0,0,0,0.01268,0.0113,0.00381,0,0,0,0,0,0,0,0.0124,0.01105,0.00373,0,0,0,0,0,0,0,0.01273,0.01131,0.00379,0,0,0,0,0,0,0,0.01252,0.01117,0.00374,0,0,0,0,0,0,0,0.01264,0.01122,0.00376,0,0,0,0,0,0,0,0.01263,0.01123,0.00377,0,0,0,0,0,0,0,0.01244,0.01106,0.00371,0,0,0,0,0,0,0,0.26812,0.37386,0.37364,0,0,0,0,0,0,0,0.24219,0.34689,0.34515,0,0,0,0,0,0,0,0.28441,0.40579,0.40147,0,0,0,0,0,0,0,0.30091,0.42839,0.4222,0,0,0,0,0,0,0,0.18934,0.2925,0.28251,0,0,0,0,0,0,0,0.21335,0.32709,0.3114,0,0,0,0,0,0,0,0.18661,0.28302,0.27276,0,0,0,0,0,0,0,0.22187,0.32494,0.31821,0,0,0,0,0,0,0,0.1688,0.25599,0.24763,0,0,0,0,0,0 +Large SUV,PH20E,2010,0,0.01336,0.01432,0.01527,0.01816,0,0,0,0,0,0,0.01366,0.01449,0.01532,0.0178,0,0,0,0,0,0,0.01497,0.0159,0.01684,0.01965,0,0,0,0,0,0,0.01258,0.01361,0.01464,0.01776,0,0,0,0,0,0,0.0143,0.01483,0.01534,0.01675,0,0,0,0,0,0,0.01307,0.01372,0.01426,0.01591,0,0,0,0,0,0,0.01306,0.01357,0.01406,0.0154,0,0,0,0,0,0,0.01385,0.01453,0.0152,0.01713,0,0,0,0,0,0,0.01362,0.01414,0.01463,0.01597,0,0,0,0,0,0,0.03274,0.02339,0.01767,0.02902,0,0,0,0,0,0,0.02855,0.02126,0.01624,0.02718,0,0,0,0,0,0,0.03203,0.02504,0.01918,0.03318,0,0,0,0,0,0,0.03559,0.02769,0.02111,0.03556,0,0,0,0,0,0,0.01917,0.01815,0.01445,0.02638,0,0,0,0,0,0,0.02143,0.02011,0.01562,0.02842,0,0,0,0,0,0,0.01876,0.01789,0.01425,0.02582,0,0,0,0,0,0,0.02396,0.02024,0.01571,0.02753,0,0,0,0,0,0,0.01843,0.0165,0.01288,0.02233,0,0,0,0,0,0,1.73881,2.89472,3.90069,5.84596,0,0,0,0,0,0,1.65401,2.86217,3.8767,5.80855,0,0,0,0,0,0,1.74021,3.17277,4.40483,6.83009,0,0,0,0,0,0,1.86019,3.39728,4.72673,7.26063,0,0,0,0,0,0,1.53111,3.02595,4.24152,6.57807,0,0,0,0,0,0,1.58039,3.1392,4.3553,6.78301,0,0,0,0,0,0,1.59607,3.1141,4.34822,6.68589,0,0,0,0,0,0,1.62943,3.02786,4.16784,6.36871,0,0,0,0,0,0,1.43244,2.67745,3.63951,5.47604,0,0,0,0,0,0,352.36342,353.86602,357.0004,368.66347,0,0,0,0,0,0,355.46818,356.78005,359.60182,370.80428,0,0,0,0,0,0,360.32187,361.73556,364.75073,376.37171,0,0,0,0,0,0,352.15243,353.58365,356.63111,368.15159,0,0,0,0,0,0,362.28618,362.94408,364.68759,374.22369,0,0,0,0,0,0,356.21594,358.23474,359.12057,369.06474,0,0,0,0,0,0,359.74213,360.32944,361.95917,371.25939,0,0,0,0,0,0,359.1063,360.04726,362.25674,372.50834,0,0,0,0,0,0,353.96856,354.77544,356.69726,366.36051,0,0,0,0,0,0,0.00599,0.00674,0.00808,0.0116,0,0,0,0,0,0,0.006,0.00675,0.00808,0.01159,0,0,0,0,0,0,0.0061,0.00685,0.00819,0.01173,0,0,0,0,0,0,0.00587,0.00661,0.00793,0.01139,0,0,0,0,0,0,0.00608,0.00682,0.00816,0.01168,0,0,0,0,0,0,0.00594,0.00669,0.008,0.01148,0,0,0,0,0,0,0.00599,0.00674,0.00807,0.01158,0,0,0,0,0,0,0.00605,0.0068,0.00814,0.01167,0,0,0,0,0,0,0.0061,0.00685,0.00821,0.01177,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.0124,0.01424,0.01857,0.02058,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01242,0.01425,0.01859,0.0206,0,0,0,0,0,0,0.01245,0.01429,0.01864,0.02065,0,0,0,0,0,0,0.01248,0.01432,0.01868,0.0207,0,0,0,0,0,0,0.0125,0.01436,0.01872,0.02074,0,0,0,0,0,0,0.10088,0.176,0.17661,0.37859,0,0,0,0,0,0,0.09728,0.17438,0.17475,0.37507,0,0,0,0,0,0,0.09937,0.19199,0.191,0.42799,0,0,0,0,0,0,0.10284,0.20373,0.20114,0.45008,0,0,0,0,0,0,0.09136,0.18272,0.18118,0.4147,0,0,0,0,0,0,0.09534,0.19044,0.18808,0.42686,0,0,0,0,0,0,0.09424,0.18412,0.18212,0.41107,0,0,0,0,0,0,0.10287,0.19662,0.1924,0.42714,0,0,0,0,0,0,0.09498,0.17686,0.17306,0.37703,0,0,0,0,0,0,0.00197,0.00349,0.00487,0.00933,0.00028,0.00042,0.00044,0.00048,0,0,0.00184,0.00325,0.0045,0.00842,0.00029,0.00043,0.00044,0.00049,0,0,0.00193,0.00343,0.00478,0.00909,0.00029,0.00044,0.00045,0.0005,0,0,0.00202,0.0036,0.00504,0.00972,0.00028,0.00041,0.00043,0.00047,0,0,0.00152,0.00263,0.00358,0.00605,0.00029,0.00043,0.00045,0.00049,0,0,0.00158,0.00279,0.00376,0.00655,0.00028,0.00042,0.00044,0.00048,0,0,0.00151,0.00261,0.00354,0.00594,0.00029,0.00042,0.00044,0.00048,0,0,0.00168,0.00294,0.00404,0.00721,0.00029,0.00043,0.00045,0.00049,0,0,0.00154,0.00266,0.0036,0.00604,0.00029,0.00043,0.00045,0.00049,0,0,0.03296,0.03642,0.03961,0.0498,0.01439,0.01537,0.01551,0.01586,0,0,0.03361,0.03677,0.03963,0.04854,0.01481,0.0158,0.01594,0.01629,0,0,0.03668,0.04007,0.0432,0.05308,0.01603,0.01704,0.01718,0.01753,0,0,0.03111,0.03473,0.03809,0.04889,0.01353,0.01448,0.01462,0.01496,0,0,0.03502,0.0374,0.03945,0.04492,0.01578,0.01678,0.01693,0.01727,0,0,0.03216,0.03493,0.03692,0.04316,0.01447,0.01545,0.01559,0.01593,0,0,0.03214,0.03448,0.03648,0.04177,0.01455,0.01553,0.01567,0.01602,0,0,0.03402,0.03679,0.03924,0.04639,0.01517,0.01617,0.01631,0.01666,0,0,0.0335,0.03588,0.0379,0.04326,0.01512,0.01612,0.01627,0.01662,0,0,0.00758,0.01064,0.01346,0.02248,0.00348,0.00438,0.00451,0.00484,0,0,0.00741,0.01021,0.01274,0.02062,0.00355,0.00446,0.00459,0.00491,0,0,0.00799,0.01099,0.01376,0.0225,0.00375,0.00468,0.00481,0.00512,0,0,0.00746,0.01066,0.01363,0.02319,0.00333,0.00421,0.00434,0.00466,0,0,0.00696,0.00907,0.01088,0.01572,0.0037,0.00463,0.00476,0.00508,0,0,0.00672,0.00907,0.01093,0.01645,0.00349,0.00438,0.00451,0.00483,0,0,0.00657,0.00864,0.01041,0.01509,0.00351,0.00441,0.00454,0.00486,0,0,0.00715,0.00959,0.01176,0.01808,0.00361,0.00452,0.00465,0.00497,0,0,0.00678,0.00888,0.01067,0.01542,0.00361,0.00453,0.00466,0.00499,0,0,0.01154,0.01022,0.00344,0.00355,0,0,0,0,0,0,0.01164,0.0103,0.00346,0.00357,0,0,0,0,0,0,0.0118,0.01045,0.00351,0.00362,0,0,0,0,0,0,0.01153,0.01021,0.00343,0.00354,0,0,0,0,0,0,0.01186,0.01048,0.00351,0.0036,0,0,0,0,0,0,0.01166,0.01034,0.00346,0.00355,0,0,0,0,0,0,0.01178,0.0104,0.00348,0.00357,0,0,0,0,0,0,0.01176,0.0104,0.00349,0.00359,0,0,0,0,0,0,0.01159,0.01024,0.00343,0.00353,0,0,0,0,0,0,0.08219,0.12364,0.1693,0.275,0,0,0,0,0,0,0.06975,0.1092,0.15215,0.25043,0,0,0,0,0,0,0.08052,0.12973,0.18073,0.30145,0,0,0,0,0,0,0.09042,0.14403,0.1991,0.32598,0,0,0,0,0,0,0.04141,0.08297,0.1246,0.2139,0,0,0,0,0,0,0.048,0.09434,0.13619,0.23451,0,0,0,0,0,0,0.03943,0.08,0.12076,0.20674,0,0,0,0,0,0,0.05557,0.09786,0.14088,0.23696,0,0,0,0,0,0,0.03904,0.07504,0.11099,0.18407,0,0,0,0,0 +Large SUV,PH20E,2015,0,0,0.01325,0.01394,0.01483,0.01691,0,0,0,0,0,0,0.01357,0.01419,0.01499,0.0168,0,0,0,0,0,0,0.01485,0.01553,0.01641,0.01845,0,0,0,0,0,0,0.01244,0.01317,0.01411,0.01635,0,0,0,0,0,0,0.01428,0.01472,0.01525,0.01636,0,0,0,0,0,0,0.01306,0.01353,0.01412,0.01539,0,0,0,0,0,0,0.01305,0.01347,0.01399,0.01505,0,0,0,0,0,0,0.0138,0.01433,0.01499,0.01644,0,0,0,0,0,0,0.01362,0.01404,0.01456,0.01562,0,0,0,0,0,0,0.02477,0.01657,0.0152,0.01891,0,0,0,0,0,0,0.02269,0.01542,0.0144,0.01788,0,0,0,0,0,0,0.0246,0.01798,0.0168,0.02122,0,0,0,0,0,0,0.02652,0.01947,0.01816,0.0228,0,0,0,0,0,0,0.01706,0.01387,0.01385,0.01739,0,0,0,0,0,0,0.01896,0.01496,0.01478,0.01861,0,0,0,0,0,0,0.01689,0.0137,0.01376,0.0172,0,0,0,0,0,0,0.01997,0.01507,0.01451,0.01811,0,0,0,0,0,0,0.01658,0.01264,0.01239,0.0152,0,0,0,0,0,0,1.49218,2.6212,3.53696,4.72732,0,0,0,0,0,0,1.48586,2.62949,3.56772,4.75195,0,0,0,0,0,0,1.53141,2.9015,4.03721,5.47704,0,0,0,0,0,0,1.63334,3.10109,4.32598,5.83294,0,0,0,0,0,0,1.46043,2.89091,4.0576,5.44136,0,0,0,0,0,0,1.50192,2.94023,4.13805,5.57669,0,0,0,0,0,0,1.52231,2.98722,4.17751,5.57641,0,0,0,0,0,0,1.50085,2.84346,3.92235,5.24298,0,0,0,0,0,0,1.36799,2.56151,3.48707,4.602,0,0,0,0,0,0,288.6408,290.29193,292.99744,309.16524,0,0,0,0,0,0,291.05986,292.51679,294.95103,310.79054,0,0,0,0,0,0,295.08677,296.65612,299.25838,315.53249,0,0,0,0,0,0,288.45141,290.0411,292.6732,308.72227,0,0,0,0,0,0,296.23029,297.01914,298.51614,313.08774,0,0,0,0,0,0,292.35597,292.38028,294.15046,308.95552,0,0,0,0,0,0,294.12772,294.8456,296.24481,310.57668,0,0,0,0,0,0,293.80773,294.88518,296.78731,311.89891,0,0,0,0,0,0,289.49294,290.41083,292.06053,306.58508,0,0,0,0,0,0,0.00396,0.00454,0.00539,0.00752,0,0,0,0,0,0,0.00397,0.00454,0.00539,0.00751,0,0,0,0,0,0,0.00403,0.00461,0.00546,0.00759,0,0,0,0,0,0,0.00388,0.00445,0.00529,0.00739,0,0,0,0,0,0,0.00401,0.00459,0.00543,0.00756,0,0,0,0,0,0,0.00393,0.0045,0.00533,0.00744,0,0,0,0,0,0,0.00396,0.00454,0.00538,0.0075,0,0,0,0,0,0,0.004,0.00458,0.00542,0.00756,0,0,0,0,0,0,0.00403,0.00461,0.00547,0.00762,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01892,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01892,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01882,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01884,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01889,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01893,0,0,0,0,0,0,0.01251,0.01455,0.01873,0.01897,0,0,0,0,0,0,0.08959,0.11016,0.1608,0.22902,0,0,0,0,0,0,0.08923,0.10873,0.15914,0.2266,0,0,0,0,0,0,0.09022,0.11937,0.17354,0.25141,0,0,0,0,0,0,0.09412,0.12622,0.1833,0.26511,0,0,0,0,0,0,0.08272,0.1113,0.16375,0.23915,0,0,0,0,0,0,0.08681,0.1163,0.17053,0.24809,0,0,0,0,0,0,0.08475,0.11195,0.16493,0.23929,0,0,0,0,0,0,0.09292,0.1198,0.17459,0.25099,0,0,0,0,0,0,0.0859,0.10745,0.15677,0.22348,0,0,0,0,0,0,0.00188,0.0031,0.00445,0.00733,0.00028,0.00042,0.00044,0.00047,0,0,0.00179,0.00293,0.00419,0.00679,0.00029,0.00043,0.00044,0.00048,0,0,0.00185,0.00304,0.00437,0.00719,0.00029,0.00044,0.00045,0.00049,0,0,0.00191,0.00314,0.00453,0.00755,0.00028,0.00041,0.00043,0.00046,0,0,0.00154,0.00249,0.00349,0.00535,0.00029,0.00043,0.00045,0.00048,0,0,0.00159,0.00257,0.00362,0.00564,0.00028,0.00042,0.00044,0.00047,0,0,0.00153,0.00248,0.00347,0.00529,0.00029,0.00042,0.00044,0.00047,0,0,0.00166,0.00271,0.00384,0.00606,0.00029,0.00043,0.00045,0.00048,0,0,0.00156,0.00253,0.00353,0.00537,0.00029,0.00043,0.00045,0.00048,0,0,0.03271,0.03538,0.0385,0.04528,0.01439,0.01537,0.01551,0.01579,0,0,0.03344,0.03594,0.0388,0.04486,0.01481,0.0158,0.01594,0.01622,0,0,0.03643,0.03906,0.04213,0.04876,0.01603,0.01704,0.01718,0.01746,0,0,0.03079,0.03354,0.03676,0.04392,0.01352,0.01448,0.01462,0.01489,0,0,0.03503,0.03703,0.03921,0.04337,0.01578,0.01678,0.01693,0.0172,0,0,0.0323,0.03424,0.03657,0.04115,0.01447,0.01545,0.01559,0.01586,0,0,0.03216,0.03415,0.03629,0.04035,0.01455,0.01553,0.01567,0.01595,0,0,0.03395,0.0362,0.03871,0.04381,0.01517,0.01617,0.01631,0.01659,0,0,0.03353,0.03555,0.03772,0.04181,0.01512,0.01612,0.01627,0.01655,0,0,0.00736,0.00973,0.01248,0.01848,0.00348,0.00438,0.00451,0.00477,0,0,0.00726,0.00947,0.012,0.01737,0.00355,0.00446,0.00459,0.00484,0,0,0.00778,0.0101,0.01281,0.01868,0.00374,0.00468,0.00481,0.00506,0,0,0.00718,0.00961,0.01246,0.01879,0.00333,0.00421,0.00434,0.00459,0,0,0.00697,0.00874,0.01067,0.01435,0.0037,0.00463,0.00476,0.00501,0,0,0.00675,0.00856,0.01062,0.01468,0.00349,0.00438,0.00451,0.00476,0,0,0.00659,0.00835,0.01025,0.01383,0.00351,0.00441,0.00454,0.00479,0,0,0.00708,0.00907,0.0113,0.0158,0.00361,0.00452,0.00465,0.00491,0,0,0.00681,0.00859,0.01051,0.01413,0.00361,0.00453,0.00466,0.00492,0,0,0.00833,0.00279,0.00282,0.00298,0,0,0,0,0,0,0.0084,0.00282,0.00284,0.00299,0,0,0,0,0,0,0.00852,0.00286,0.00288,0.00304,0,0,0,0,0,0,0.00833,0.00279,0.00282,0.00297,0,0,0,0,0,0,0.00855,0.00286,0.00287,0.00301,0,0,0,0,0,0,0.00844,0.00281,0.00283,0.00297,0,0,0,0,0,0,0.00849,0.00284,0.00285,0.00299,0,0,0,0,0,0,0.00848,0.00284,0.00286,0.003,0,0,0,0,0,0,0.00836,0.0028,0.00281,0.00295,0,0,0,0,0,0,0.06194,0.09213,0.14062,0.20782,0,0,0,0,0,0,0.05511,0.08401,0.13081,0.19304,0,0,0,0,0,0,0.06149,0.09835,0.15318,0.22922,0,0,0,0,0,0,0.06678,0.10633,0.16478,0.24595,0,0,0,0,0,0,0.0372,0.06958,0.11779,0.17574,0,0,0,0,0,0,0.04296,0.07595,0.12658,0.18935,0,0,0,0,0,0,0.03599,0.0676,0.11528,0.17149,0,0,0,0,0,0,0.04618,0.07848,0.12708,0.18862,0,0,0,0,0,0,0.03552,0.06325,0.10546,0.15408,0,0,0,0 +Large SUV,PH20E,2020,0,0,0,0.01308,0.01366,0.01425,0.01625,0,0,0,0,0,0,0.01343,0.01395,0.01448,0.01624,0,0,0,0,0,0,0.0147,0.01527,0.01584,0.0178,0,0,0,0,0,0,0.01227,0.01288,0.0135,0.01562,0,0,0,0,0,0,0.01419,0.01456,0.01491,0.01603,0,0,0,0,0,0,0.01294,0.01335,0.01374,0.01501,0,0,0,0,0,0,0.01296,0.01332,0.01366,0.01474,0,0,0,0,0,0,0.01369,0.01413,0.01457,0.016,0,0,0,0,0,0,0.01353,0.01389,0.01422,0.0153,0,0,0,0,0,0,0.01896,0.01372,0.01167,0.01487,0,0,0,0,0,0,0.01703,0.01261,0.0109,0.01398,0,0,0,0,0,0,0.01883,0.01472,0.01273,0.01683,0,0,0,0,0,0,0.02044,0.01602,0.01382,0.01817,0,0,0,0,0,0,0.01178,0.0107,0.00987,0.01345,0,0,0,0,0,0,0.01319,0.01172,0.01069,0.01453,0,0,0,0,0,0,0.01153,0.01054,0.00978,0.01328,0,0,0,0,0,0,0.01445,0.01195,0.01064,0.01412,0,0,0,0,0,0,0.01128,0.00971,0.00882,0.01158,0,0,0,0,0,0,1.1774,1.77681,2.24244,3.44131,0,0,0,0,0,0,1.16529,1.76732,2.23847,3.44893,0,0,0,0,0,0,1.21306,1.95137,2.52886,4.07165,0,0,0,0,0,0,1.29874,2.09777,2.73038,4.36681,0,0,0,0,0,0,1.13164,1.8935,2.46679,3.99156,0,0,0,0,0,0,1.15738,1.93925,2.53642,4.12901,0,0,0,0,0,0,1.17596,1.95798,2.5445,4.09023,0,0,0,0,0,0,1.17031,1.88387,2.41974,3.84005,0,0,0,0,0,0,1.05469,1.68004,2.12898,3.31005,0,0,0,0,0,0,245.02712,246.66036,249.38281,270.91271,0,0,0,0,0,0,246.97531,248.44737,250.93432,272.15952,0,0,0,0,0,0,250.44486,252.01551,254.6554,276.39995,0,0,0,0,0,0,244.855,246.43761,249.09682,270.50532,0,0,0,0,0,0,251.00909,251.92534,253.59404,273.57675,0,0,0,0,0,0,247.02307,248.09949,250.0033,270.15412,0,0,0,0,0,0,249.20195,250.05711,251.63815,271.33989,0,0,0,0,0,0,249.10679,250.26327,252.28517,272.79396,0,0,0,0,0,0,245.34386,246.36128,248.15284,267.97109,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.0071,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.00709,0,0,0,0,0,0,0.00412,0.00465,0.00546,0.00716,0,0,0,0,0,0,0.00397,0.00449,0.00529,0.00697,0,0,0,0,0,0,0.0041,0.00463,0.00543,0.00714,0,0,0,0,0,0,0.00401,0.00453,0.00533,0.00702,0,0,0,0,0,0,0.00404,0.00457,0.00538,0.00708,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00713,0,0,0,0,0,0,0.00411,0.00465,0.00547,0.00719,0,0,0,0,0,0,0.01246,0.0145,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01858,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01456,0.01872,0.01872,0,0,0,0,0,0,0.05857,0.09444,0.12694,0.17656,0,0,0,0,0,0,0.05784,0.09303,0.12531,0.17434,0,0,0,0,0,0,0.05907,0.10187,0.13624,0.19421,0,0,0,0,0,0,0.06159,0.10826,0.14468,0.20626,0,0,0,0,0,0,0.05224,0.09387,0.12664,0.18212,0,0,0,0,0,0,0.05524,0.09875,0.13292,0.19046,0,0,0,0,0,0,0.05331,0.09475,0.12805,0.18262,0,0,0,0,0,0,0.05903,0.10199,0.13663,0.19265,0,0,0,0,0,0,0.05371,0.09082,0.12175,0.16952,0,0,0,0,0,0,0.00162,0.00262,0.00348,0.00622,0.00028,0.00042,0.00044,0,0,0,0.00154,0.00249,0.00328,0.0058,0.00029,0.00043,0.00044,0,0,0,0.00159,0.00258,0.00342,0.00611,0.00029,0.00044,0.00045,0,0,0,0.00163,0.00265,0.00353,0.00639,0.00028,0.00041,0.00043,0,0,0,0.00134,0.00213,0.00275,0.00464,0.00029,0.00043,0.00045,0,0,0,0.00137,0.00219,0.00285,0.00488,0.00028,0.00042,0.00044,0,0,0,0.00134,0.00212,0.00274,0.0046,0.00029,0.00042,0.00044,0,0,0,0.00144,0.00231,0.00302,0.00522,0.00029,0.00043,0.00045,0,0,0,0.00137,0.00216,0.00279,0.00467,0.00029,0.00043,0.00045,0,0,0,0.03209,0.03433,0.03631,0.04278,0.01439,0.01537,0.01551,0,0,0,0.03288,0.03496,0.03679,0.04265,0.01481,0.0158,0.01594,0,0,0,0.03583,0.03803,0.03998,0.04634,0.01603,0.01704,0.01718,0,0,0,0.03015,0.03244,0.0345,0.04128,0.01352,0.01448,0.01462,0,0,0,0.0346,0.03627,0.03764,0.04188,0.01578,0.01678,0.01693,0,0,0,0.03168,0.03344,0.03491,0.03951,0.01447,0.01545,0.01559,0,0,0,0.03174,0.0334,0.03475,0.03889,0.01455,0.01553,0.01567,0,0,0,0.03345,0.03533,0.03693,0.04197,0.01517,0.01617,0.01631,0,0,0,0.0331,0.03479,0.03615,0.04033,0.01512,0.01612,0.01627,0,0,0,0.00682,0.00879,0.01055,0.01627,0.00348,0.00438,0.00451,0,0,0,0.00677,0.00861,0.01022,0.01541,0.00355,0.00446,0.00459,0,0,0,0.00724,0.00918,0.01091,0.01654,0.00374,0.00468,0.00481,0,0,0,0.00661,0.00864,0.01046,0.01645,0.00333,0.00421,0.00434,0,0,0,0.00659,0.00807,0.00928,0.01303,0.0037,0.00463,0.00476,0,0,0,0.00629,0.00785,0.00915,0.01323,0.00348,0.00438,0.00451,0,0,0,0.00622,0.00769,0.00888,0.01255,0.0035,0.00441,0.00454,0,0,0,0.00664,0.0083,0.00971,0.01418,0.00361,0.00452,0.00465,0,0,0,0.00643,0.00792,0.00912,0.01282,0.00361,0.00453,0.00466,0,0,0,0.00236,0.00237,0.0024,0.00261,0,0,0,0,0,0,0.00238,0.00239,0.00242,0.00262,0,0,0,0,0,0,0.00241,0.00243,0.00245,0.00266,0,0,0,0,0,0,0.00236,0.00237,0.0024,0.0026,0,0,0,0,0,0,0.00242,0.00242,0.00244,0.00263,0,0,0,0,0,0,0.00238,0.00239,0.00241,0.0026,0,0,0,0,0,0,0.0024,0.00241,0.00242,0.00261,0,0,0,0,0,0,0.0024,0.00241,0.00243,0.00263,0,0,0,0,0,0,0.00236,0.00237,0.00239,0.00258,0,0,0,0,0,0,0.05232,0.07708,0.10873,0.16922,0,0,0,0,0,0,0.0461,0.06942,0.09941,0.15627,0,0,0,0,0,0,0.05202,0.08128,0.11646,0.18849,0,0,0,0,0,0,0.05669,0.08833,0.12614,0.20314,0,0,0,0,0,0,0.02945,0.05364,0.08241,0.14073,0,0,0,0,0,0,0.0338,0.05969,0.0904,0.15316,0,0,0,0,0,0,0.02826,0.05191,0.08029,0.13695,0,0,0,0,0,0,0.03778,0.06265,0.09261,0.15221,0,0,0,0,0,0,0.02775,0.04853,0.07362,0.12117,0,0,0 +Large SUV,PH20E,2025,0,0,0,0,0.01279,0.01314,0.0135,0.01514,0,0,0,0,0,0,0.01316,0.01348,0.0138,0.01525,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01672,0,0,0,0,0,0,0.01196,0.01232,0.01271,0.01445,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01538,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01429,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01411,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01519,0,0,0,0,0,0,0.01333,0.01355,0.01376,0.01467,0,0,0,0,0,0,0.01527,0.00999,0.00807,0.01132,0,0,0,0,0,0,0.01329,0.00887,0.00728,0.01044,0,0,0,0,0,0,0.01507,0.01042,0.00855,0.01267,0,0,0,0,0,0,0.01659,0.01145,0.00937,0.01376,0,0,0,0,0,0,0.00787,0.00635,0.00565,0.00933,0,0,0,0,0,0,0.00928,0.00725,0.00633,0.01027,0,0,0,0,0,0,0.00754,0.00615,0.00551,0.00915,0,0,0,0,0,0,0.01056,0.00773,0.00657,0.01015,0,0,0,0,0,0,0.00737,0.00572,0.00502,0.00795,0,0,0,0,0,0,0.78293,1.14419,1.45139,2.43581,0,0,0,0,0,0,0.75608,1.11587,1.42212,2.41519,0,0,0,0,0,0,0.79639,1.23688,1.60931,2.87286,0,0,0,0,0,0,0.86055,1.34122,1.75077,3.10096,0,0,0,0,0,0,0.67843,1.12296,1.47782,2.72389,0,0,0,0,0,0,0.70774,1.16726,1.53975,2.84363,0,0,0,0,0,0,0.70168,1.15902,1.52204,2.78828,0,0,0,0,0,0,0.7288,1.15016,1.48876,2.65299,0,0,0,0,0,0,0.63311,0.99914,1.27884,2.24697,0,0,0,0,0,0,200.25711,201.22732,203.2205,229.04587,0,0,0,0,0,0,201.75116,202.58006,204.36032,229.92613,0,0,0,0,0,0,204.63509,205.54246,207.45343,233.5959,0,0,0,0,0,0,200.1063,201.03474,202.97459,228.68367,0,0,0,0,0,0,204.71877,205.06409,206.10838,230.54057,0,0,0,0,0,0,201.57064,202.06059,203.32184,227.8414,0,0,0,0,0,0,203.2212,203.51795,204.48858,228.61363,0,0,0,0,0,0,203.30709,203.8617,205.22412,230.13258,0,0,0,0,0,0,200.13804,200.57777,201.73772,225.88926,0,0,0,0,0,0,0.00407,0.00457,0.00537,0.00702,0,0,0,0,0,0,0.00408,0.00457,0.00537,0.00701,0,0,0,0,0,0,0.00414,0.00464,0.00544,0.00709,0,0,0,0,0,0,0.00399,0.00448,0.00527,0.0069,0,0,0,0,0,0,0.00412,0.00462,0.00542,0.00706,0,0,0,0,0,0,0.00404,0.00453,0.00532,0.00695,0,0,0,0,0,0,0.00407,0.00457,0.00536,0.00701,0,0,0,0,0,0,0.00411,0.00461,0.00541,0.00706,0,0,0,0,0,0,0.00414,0.00464,0.00545,0.00712,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.0145,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01858,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01454,0.01872,0.01872,0,0,0,0,0,0,0.03626,0.05428,0.07259,0.1233,0,0,0,0,0,0,0.03527,0.05283,0.07085,0.12102,0,0,0,0,0,0,0.03627,0.05749,0.07666,0.13559,0,0,0,0,0,0,0.03791,0.06108,0.08136,0.14435,0,0,0,0,0,0,0.02987,0.0501,0.06778,0.12383,0,0,0,0,0,0,0.03237,0.05366,0.07226,0.13072,0,0,0,0,0,0,0.03045,0.05065,0.06859,0.12405,0,0,0,0,0,0,0.03454,0.05556,0.07442,0.13193,0,0,0,0,0,0,0.03049,0.04857,0.0653,0.11436,0,0,0,0,0,0,0.00104,0.00164,0.00217,0.00449,0.00028,0.00042,0,0,0,0,0.00099,0.00156,0.00205,0.00418,0.00029,0.00043,0,0,0,0,0.00102,0.00161,0.00213,0.00441,0.00029,0.00044,0,0,0,0,0.00105,0.00166,0.00221,0.0046,0.00028,0.00041,0,0,0,0,0.00086,0.00133,0.00172,0.00336,0.00029,0.00043,0,0,0,0,0.00088,0.00138,0.00178,0.00353,0.00028,0.00042,0,0,0,0,0.00086,0.00133,0.00171,0.00333,0.00029,0.00042,0,0,0,0,0.00093,0.00145,0.00189,0.00377,0.00029,0.00043,0,0,0,0,0.00088,0.00136,0.00174,0.00338,0.00029,0.00043,0,0,0,0,0.03084,0.03218,0.03341,0.03883,0.01439,0.01537,0,0,0,0,0.0317,0.03295,0.03407,0.03902,0.01481,0.0158,0,0,0,0,0.03461,0.03592,0.03713,0.04246,0.01603,0.01704,0,0,0,0,0.02888,0.03026,0.03153,0.03717,0.01352,0.01448,0,0,0,0,0.03361,0.03461,0.03546,0.03911,0.01578,0.01678,0,0,0,0,0.03065,0.03171,0.03262,0.03656,0.01447,0.01545,0,0,0,0,0.03075,0.03175,0.03258,0.03616,0.01455,0.01553,0,0,0,0,0.03237,0.03349,0.03448,0.03877,0.01517,0.01617,0,0,0,0,0.03209,0.03311,0.03395,0.03757,0.01512,0.01612,0,0,0,0,0.00571,0.0069,0.00798,0.01278,0.00348,0.00438,0,0,0,0,0.00572,0.00683,0.00783,0.0122,0.00355,0.00446,0,0,0,0,0.00616,0.00732,0.00839,0.0131,0.00374,0.00468,0,0,0,0,0.00549,0.0067,0.00783,0.01282,0.00333,0.00421,0,0,0,0,0.00571,0.0066,0.00735,0.01058,0.0037,0.00463,0,0,0,0,0.00538,0.00632,0.00712,0.01061,0.00348,0.00438,0,0,0,0,0.00534,0.00622,0.00696,0.01013,0.0035,0.00441,0,0,0,0,0.00568,0.00668,0.00755,0.01135,0.00361,0.00452,0,0,0,0,0.00554,0.00643,0.00718,0.01038,0.00361,0.00453,0,0,0,0,0.00193,0.00194,0.00196,0.0022,0,0,0,0,0,0,0.00194,0.00195,0.00197,0.00221,0,0,0,0,0,0,0.00197,0.00198,0.002,0.00225,0,0,0,0,0,0,0.00193,0.00194,0.00195,0.0022,0,0,0,0,0,0,0.00197,0.00197,0.00198,0.00222,0,0,0,0,0,0,0.00194,0.00194,0.00196,0.00219,0,0,0,0,0,0,0.00196,0.00196,0.00197,0.0022,0,0,0,0,0,0,0.00196,0.00196,0.00198,0.00222,0,0,0,0,0,0,0.00193,0.00193,0.00194,0.00217,0,0,0,0,0,0,0.04472,0.06033,0.08146,0.13426,0,0,0,0,0,0,0.03836,0.05261,0.07201,0.12159,0,0,0,0,0,0,0.04411,0.0619,0.08471,0.14738,0,0,0,0,0,0,0.04877,0.06817,0.09292,0.16008,0,0,0,0,0,0,0.0211,0.03404,0.05043,0.10057,0,0,0,0,0,0,0.02552,0.03974,0.0577,0.1119,0,0,0,0,0,0,0.01987,0.03239,0.04838,0.09712,0,0,0,0,0,0,0.0296,0.04373,0.06188,0.11351,0,0,0,0,0,0,0.01945,0.03053,0.04481,0.08579,0,0 +Large SUV,PH20E,2030,0,0,0,0,0,0.01279,0.01313,0.0135,0.01452,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01471,0,0,0,0,0,0,0.01441,0.01474,0.0151,0.01611,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01379,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01502,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01388,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01376,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01473,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01432,0,0,0,0,0,0,0.01419,0.00894,0.00713,0.00914,0,0,0,0,0,0,0.0122,0.00782,0.00633,0.00824,0,0,0,0,0,0,0.01396,0.0092,0.00745,0.00993,0,0,0,0,0,0,0.01544,0.01015,0.00819,0.01085,0,0,0,0,0,0,0.00674,0.00514,0.00454,0.0066,0,0,0,0,0,0,0.00814,0.00599,0.00519,0.00742,0,0,0,0,0,0,0.00639,0.00492,0.00439,0.00641,0,0,0,0,0,0,0.00943,0.00655,0.00551,0.00757,0,0,0,0,0,0,0.00625,0.00461,0.00403,0.00565,0,0,0,0,0,0,0.68062,0.99487,1.27363,1.87627,0,0,0,0,0,0,0.65024,0.96245,1.23894,1.83703,0,0,0,0,0,0,0.68808,1.06843,1.40355,2.16263,0,0,0,0,0,0,0.74606,1.16186,1.53062,2.34546,0,0,0,0,0,0,0.56162,0.94231,1.25685,1.97239,0,0,0,0,0,0,0.59137,0.98559,1.31656,2.07319,0,0,0,0,0,0,0.57944,0.97129,1.29299,2.01915,0,0,0,0,0,0,0.61461,0.97787,1.28022,1.96203,0,0,0,0,0,0,0.52461,0.83969,1.08828,1.64445,0,0,0,0,0,0,182.25516,183.97317,186.84746,202.84795,0,0,0,0,0,0,183.57271,185.16748,187.84499,203.53146,0,0,0,0,0,0,186.21813,187.89673,190.71418,206.82888,0,0,0,0,0,0,182.11421,183.79378,186.61814,202.51921,0,0,0,0,0,0,186.13093,187.29543,189.28277,203.75195,0,0,0,0,0,0,183.3134,184.59737,186.77751,201.46963,0,0,0,0,0,0,184.75932,185.87341,187.78372,202.02619,0,0,0,0,0,0,184.90813,186.25828,188.54338,203.53129,0,0,0,0,0,0,181.98254,183.21374,185.28683,199.6782,0,0,0,0,0,0,0.00407,0.00455,0.00536,0.00698,0,0,0,0,0,0,0.00407,0.00456,0.00536,0.00697,0,0,0,0,0,0,0.00414,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00399,0.00447,0.00526,0.00686,0,0,0,0,0,0,0.00412,0.0046,0.00541,0.00702,0,0,0,0,0,0,0.00403,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00406,0.00455,0.00535,0.00697,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00708,0,0,0,0,0,0,0.01246,0.01447,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01449,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01441,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01447,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01443,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01446,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01453,0.01872,0.01872,0,0,0,0,0,0,0.02873,0.04195,0.05784,0.09049,0,0,0,0,0,0,0.02765,0.04049,0.05607,0.08815,0,0,0,0,0,0,0.02845,0.04389,0.06052,0.09787,0,0,0,0,0,0,0.02969,0.04652,0.06412,0.10399,0,0,0,0,0,0,0.02222,0.03672,0.05186,0.08631,0,0,0,0,0,0,0.0245,0.03982,0.0558,0.09206,0,0,0,0,0,0,0.02266,0.03711,0.05246,0.0866,0,0,0,0,0,0,0.02616,0.04131,0.05751,0.09332,0,0,0,0,0,0,0.02265,0.03568,0.04999,0.08028,0,0,0,0,0,0,0.00104,0.00164,0.00217,0.00357,0.00028,0,0,0,0,0,0.00099,0.00155,0.00205,0.00333,0.00029,0,0,0,0,0,0.00102,0.00161,0.00213,0.00351,0.00029,0,0,0,0,0,0.00105,0.00166,0.0022,0.00365,0.00028,0,0,0,0,0,0.00086,0.00133,0.00172,0.00269,0.00029,0,0,0,0,0,0.00088,0.00137,0.00178,0.00282,0.00028,0,0,0,0,0,0.00086,0.00133,0.00171,0.00267,0.00029,0,0,0,0,0,0.00092,0.00144,0.00188,0.00301,0.00029,0,0,0,0,0,0.00088,0.00135,0.00174,0.00271,0.00029,0,0,0,0,0,0.03084,0.03217,0.0334,0.03671,0.01439,0,0,0,0,0,0.03169,0.03294,0.03407,0.03708,0.01481,0,0,0,0,0,0.0346,0.03591,0.03712,0.04037,0.01603,0,0,0,0,0,0.02888,0.03024,0.03152,0.03497,0.01352,0,0,0,0,0,0.0336,0.0346,0.03546,0.03765,0.01578,0,0,0,0,0,0.03064,0.0317,0.03261,0.03499,0.01447,0,0,0,0,0,0.03074,0.03174,0.03258,0.03473,0.01455,0,0,0,0,0,0.03236,0.03348,0.03448,0.03707,0.01517,0,0,0,0,0,0.03209,0.0331,0.03395,0.03611,0.01512,0,0,0,0,0,0.0057,0.00688,0.00798,0.0109,0.00348,0,0,0,0,0,0.00572,0.00682,0.00782,0.01048,0.00355,0,0,0,0,0,0.00615,0.00731,0.00838,0.01126,0.00374,0,0,0,0,0,0.00548,0.00669,0.00782,0.01088,0.00333,0,0,0,0,0,0.0057,0.00659,0.00735,0.00929,0.0037,0,0,0,0,0,0.00538,0.00631,0.00712,0.00923,0.00348,0,0,0,0,0,0.00534,0.00622,0.00696,0.00886,0.0035,0,0,0,0,0,0.00568,0.00667,0.00755,0.00984,0.00361,0,0,0,0,0,0.00553,0.00643,0.00718,0.00909,0.00361,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00196,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00199,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00196,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00196,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00192,0,0,0,0,0,0,0.04215,0.05533,0.07437,0.11229,0,0,0,0,0,0,0.03579,0.04764,0.06492,0.0996,0,0,0,0,0,0,0.04142,0.05613,0.07649,0.11972,0,0,0,0,0,0,0.04602,0.06213,0.0843,0.13104,0,0,0,0,0,0,0.01846,0.02842,0.04225,0.0732,0,0,0,0,0,0,0.02286,0.03397,0.04932,0.08356,0,0,0,0,0,0,0.01722,0.02679,0.04022,0.0701,0,0,0,0,0,0,0.02695,0.03824,0.05399,0.08772,0,0,0,0,0,0,0.01686,0.0254,0.03745,0.06288,0 +Large SUV,PH20E,2035,0,0,0,0,0,0,0.01279,0.01313,0.0135,0.01433,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01453,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01592,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01359,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.0149,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01375,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01365,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01459,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01421,0,0,0,0,0,0,0.01411,0.00893,0.00713,0.00842,0,0,0,0,0,0,0.01213,0.00781,0.00634,0.00751,0,0,0,0,0,0,0.01388,0.00919,0.00746,0.00899,0,0,0,0,0,0,0.01535,0.01014,0.0082,0.00985,0,0,0,0,0,0,0.00671,0.00514,0.00455,0.00564,0,0,0,0,0,0,0.0081,0.00599,0.00519,0.00642,0,0,0,0,0,0,0.00636,0.00492,0.0044,0.00546,0,0,0,0,0,0,0.00938,0.00655,0.00551,0.00668,0,0,0,0,0,0,0.00622,0.00461,0.00403,0.00487,0,0,0,0,0,0,0.68089,0.99566,1.27414,1.70483,0,0,0,0,0,0,0.65071,0.96325,1.23939,1.65892,0,0,0,0,0,0,0.68867,1.06944,1.40407,1.93885,0,0,0,0,0,0,0.7467,1.16295,1.53118,2.10635,0,0,0,0,0,0,0.56284,0.94329,1.25715,1.73329,0,0,0,0,0,0,0.59253,0.9866,1.3169,1.82736,0,0,0,0,0,0,0.58073,0.97227,1.29326,1.77447,0,0,0,0,0,0,0.61555,0.97874,1.2806,1.74448,0,0,0,0,0,0,0.52559,0.8404,1.08856,1.45604,0,0,0,0,0,0,182.21733,183.98013,186.86194,194.57275,0,0,0,0,0,0,183.53708,185.17397,187.85813,195.19446,0,0,0,0,0,0,186.18068,187.90356,190.72809,198.37417,0,0,0,0,0,0,182.07648,183.80052,186.63198,194.25452,0,0,0,0,0,0,186.10333,187.29998,189.29218,195.29223,0,0,0,0,0,0,183.28361,184.60235,186.788,193.14107,0,0,0,0,0,0,184.7326,185.87767,187.79246,193.63011,0,0,0,0,0,0,184.87707,186.26358,188.55436,195.13001,0,0,0,0,0,0,181.95504,183.21874,185.29702,191.40095,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00699,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00698,0,0,0,0,0,0,0.00413,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00398,0.00447,0.00527,0.00687,0,0,0,0,0,0,0.00411,0.0046,0.00541,0.00703,0,0,0,0,0,0,0.00402,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00405,0.00455,0.00536,0.00697,0,0,0,0,0,0,0.00409,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00412,0.00463,0.00545,0.00709,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01455,0.01872,0.01872,0,0,0,0,0,0,0.0287,0.04204,0.05787,0.0792,0,0,0,0,0,0,0.02763,0.04058,0.0561,0.07681,0,0,0,0,0,0,0.02844,0.04398,0.06055,0.08457,0,0,0,0,0,0,0.02968,0.04663,0.06416,0.08965,0,0,0,0,0,0,0.02223,0.03682,0.05188,0.07305,0,0,0,0,0,0,0.0245,0.03991,0.05583,0.07836,0,0,0,0,0,0,0.02266,0.03721,0.05249,0.07338,0,0,0,0,0,0,0.02615,0.0414,0.05753,0.07976,0,0,0,0,0,0,0.02265,0.03577,0.05001,0.06846,0.02972,0,0,0,0,0,0.00104,0.00164,0.00217,0.00328,0.02595,0,0,0,0,0,0.00099,0.00156,0.00205,0.00307,0.02894,0,0,0,0,0,0.00102,0.00161,0.00213,0.00322,0.03187,0,0,0,0,0,0.00105,0.00166,0.0022,0.00336,0.01548,0,0,0,0,0,0.00086,0.00133,0.00172,0.00248,0.0181,0,0,0,0,0,0.00088,0.00137,0.00178,0.0026,0.01486,0,0,0,0,0,0.00086,0.00133,0.00171,0.00246,0.02058,0,0,0,0,0,0.00093,0.00145,0.00189,0.00277,0.01471,0,0,0,0,0,0.00088,0.00136,0.00174,0.0025,0.07884,0,0,0,0,0,0.03084,0.03217,0.03341,0.03605,0.07061,0,0,0,0,0,0.0317,0.03294,0.03407,0.03647,0.07915,0,0,0,0,0,0.0346,0.03591,0.03712,0.03972,0.08344,0,0,0,0,0,0.02888,0.03025,0.03152,0.03428,0.04768,0,0,0,0,0,0.0336,0.03461,0.03546,0.03719,0.05242,0,0,0,0,0,0.03065,0.0317,0.03261,0.03449,0.045,0,0,0,0,0,0.03075,0.03174,0.03258,0.03427,0.0588,0,0,0,0,0,0.03236,0.03349,0.03448,0.03653,0.04492,0,0,0,0,0,0.03209,0.0331,0.03395,0.03565,0.0605,0,0,0,0,0,0.00571,0.00689,0.00798,0.01031,0.05289,0,0,0,0,0,0.00572,0.00682,0.00782,0.00994,0.05954,0,0,0,0,0,0.00615,0.00731,0.00839,0.01068,0.06521,0,0,0,0,0,0.00549,0.0067,0.00783,0.01027,0.03188,0,0,0,0,0,0.00571,0.0066,0.00735,0.00888,0.03705,0,0,0,0,0,0.00538,0.00631,0.00712,0.00879,0.03044,0,0,0,0,0,0.00534,0.00622,0.00696,0.00846,0.04218,0,0,0,0,0,0.00568,0.00667,0.00755,0.00937,0.02994,0,0,0,0,0,0.00553,0.00643,0.00718,0.00868,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00188,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00191,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00188,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00188,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00184,0,0,0,0,0,0,0.04204,0.0554,0.07443,0.10514,0,0,0,0,0,0,0.0357,0.04771,0.06498,0.09236,0,0,0,0,0,0,0.04132,0.05621,0.07655,0.11037,0,0,0,0,0,0,0.04591,0.06221,0.08437,0.12122,0,0,0,0,0,0,0.01843,0.02848,0.04229,0.06369,0,0,0,0,0,0,0.02281,0.03403,0.04936,0.07372,0,0,0,0,0,0,0.01719,0.02685,0.04025,0.06072,0,0,0,0,0,0,0.0269,0.0383,0.05403,0.07892,0,0,0,0,0,0,0.01683,0.02545,0.03748,0.0551 +Large SUV,PH20E,2040,0,0,0,0,0,0,0,0.01279,0.01313,0.0135,0,0,0,0,0,0,0,0.01316,0.01347,0.0138,0,0,0,0,0,0,0,0.0144,0.01475,0.0151,0,0,0,0,0,0,0,0.01196,0.01232,0.0127,0,0,0,0,0,0,0,0.01399,0.01421,0.01443,0,0,0,0,0,0,0,0.01273,0.01297,0.01321,0,0,0,0,0,0,0,0.01277,0.01298,0.01319,0,0,0,0,0,0,0,0.01345,0.01372,0.01399,0,0,0,0,0,0,0,0.01333,0.01355,0.01375,0,0,0,0,0,0,0,0.01411,0.00893,0.00713,0,0,0,0,0,0,0,0.01214,0.00781,0.00633,0,0,0,0,0,0,0,0.01388,0.00919,0.00745,0,0,0,0,0,0,0,0.01536,0.01014,0.00819,0,0,0,0,0,0,0,0.00671,0.00513,0.00455,0,0,0,0,0,0,0,0.0081,0.00598,0.00519,0,0,0,0,0,0,0,0.00636,0.00492,0.00439,0,0,0,0,0,0,0,0.00938,0.00655,0.00551,0,0,0,0,0,0,0,0.00622,0.0046,0.00403,0,0,0,0,0,0,0,0.67993,0.99498,1.27381,0,0,0,0,0,0,0,0.64978,0.9626,1.23911,0,0,0,0,0,0,0,0.68758,1.06866,1.40373,0,0,0,0,0,0,0,0.74551,1.16211,1.53082,0,0,0,0,0,0,0,0.56185,0.94267,1.25696,0,0,0,0,0,0,0,0.59149,0.98594,1.31668,0,0,0,0,0,0,0,0.57973,0.97166,1.29308,0,0,0,0,0,0,0,0.61454,0.97812,1.28036,0,0,0,0,0,0,0,0.52473,0.83991,1.08838,0,0,0,0,0,0,0,182.20719,183.96709,186.85292,0,0,0,0,0,0,0,183.52765,185.16175,187.8499,0,0,0,0,0,0,0,186.17068,187.89066,190.71931,0,0,0,0,0,0,0,182.06651,183.78754,186.62318,0,0,0,0,0,0,0,186.09639,187.29084,189.28607,0,0,0,0,0,0,0,183.27595,184.59236,186.78142,0,0,0,0,0,0,0,184.72583,185.86888,187.78697,0,0,0,0,0,0,0,184.86899,186.25312,188.5475,0,0,0,0,0,0,0,181.94775,183.20928,185.29084,0,0,0,0,0,0,0,0.00405,0.00455,0.00536,0,0,0,0,0,0,0,0.00406,0.00455,0.00536,0,0,0,0,0,0,0,0.00412,0.00462,0.00543,0,0,0,0,0,0,0,0.00397,0.00446,0.00526,0,0,0,0,0,0,0,0.0041,0.0046,0.00541,0,0,0,0,0,0,0,0.00402,0.00451,0.00531,0,0,0,0,0,0,0,0.00405,0.00455,0.00535,0,0,0,0,0,0,0,0.00409,0.00459,0.0054,0,0,0,0,0,0,0,0.00412,0.00462,0.00544,0,0,0,0,0,0,0,0.01246,0.01448,0.01865,0,0,0,0,0,0,0,0.01248,0.0145,0.01868,0,0,0,0,0,0,0,0.01247,0.0145,0.01867,0,0,0,0,0,0,0,0.01241,0.01442,0.01857,0,0,0,0,0,0,0,0.01246,0.01448,0.01866,0,0,0,0,0,0,0,0.01242,0.01444,0.01859,0,0,0,0,0,0,0,0.01245,0.01447,0.01864,0,0,0,0,0,0,0,0.01248,0.01451,0.01868,0,0,0,0,0,0,0,0.01251,0.01454,0.01872,0,0,0,0,0,0,0,0.02867,0.04198,0.05785,0,0,0,0,0,0,0,0.0276,0.04052,0.05608,0,0,0,0,0,0,0,0.0284,0.04392,0.06053,0,0,0,0,0,0,0,0.02964,0.04656,0.06413,0,0,0,0,0,0,0,0.02219,0.03676,0.05187,0,0,0,0,0,0,0,0.02447,0.03985,0.05581,0,0,0,0,0,0,0,0.02263,0.03715,0.05247,0,0,0,0,0,0,0,0.02612,0.04134,0.05752,0,0,0,0,0,0,0,0.02262,0.03572,0.04999,0.00804,0.0176,0,0,0,0,0,0.00104,0.00164,0.00217,0.00704,0.01536,0,0,0,0,0,0.00099,0.00156,0.00205,0.0078,0.01712,0,0,0,0,0,0.00102,0.00161,0.00213,0.00855,0.01878,0,0,0,0,0,0.00105,0.00166,0.0022,0.00423,0.00912,0,0,0,0,0,0.00086,0.00133,0.00172,0.00492,0.01064,0,0,0,0,0,0.00088,0.00137,0.00178,0.00408,0.00876,0,0,0,0,0,0.00086,0.00133,0.00171,0.0056,0.01216,0,0,0,0,0,0.00092,0.00144,0.00189,0.00407,0.00872,0,0,0,0,0,0.00088,0.00136,0.00174,0.03,0.0515,0,0,0,0,0,0.03084,0.03217,0.0334,0.02817,0.04676,0,0,0,0,0,0.03169,0.03294,0.03407,0.03124,0.0521,0,0,0,0,0,0.0346,0.03591,0.03712,0.03047,0.05365,0,0,0,0,0,0.02888,0.03024,0.03152,0.02282,0.03352,0,0,0,0,0,0.0336,0.0346,0.03546,0.0231,0.03567,0,0,0,0,0,0.03064,0.0317,0.03261,0.02125,0.0315,0,0,0,0,0,0.03074,0.03174,0.03258,0.02532,0.03993,0,0,0,0,0,0.03236,0.03349,0.03448,0.02169,0.03186,0,0,0,0,0,0.03209,0.0331,0.03395,0.01729,0.03631,0,0,0,0,0,0.0057,0.00689,0.00798,0.01535,0.0318,0,0,0,0,0,0.00572,0.00682,0.00782,0.01715,0.03561,0,0,0,0,0,0.00615,0.00731,0.00838,0.01835,0.03886,0,0,0,0,0,0.00548,0.00669,0.00782,0.0099,0.01936,0,0,0,0,0,0.00571,0.00659,0.00735,0.01112,0.02224,0,0,0,0,0,0.00538,0.00631,0.00712,0.00943,0.0185,0,0,0,0,0,0.00534,0.00622,0.00696,0.01256,0.02549,0,0,0,0,0,0.00568,0.00667,0.00755,0.00939,0.01839,0,0,0,0,0,0.00553,0.00643,0.00718,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00177,0.00178,0.00181,0,0,0,0,0,0,0,0.00179,0.00181,0.00184,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00179,0.0018,0.00182,0,0,0,0,0,0,0,0.00176,0.00178,0.0018,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00175,0.00176,0.00178,0,0,0,0,0,0,0,0.04199,0.05533,0.07439,0,0,0,0,0,0,0,0.03566,0.04765,0.06494,0,0,0,0,0,0,0,0.04127,0.05613,0.07651,0,0,0,0,0,0,0,0.04586,0.06213,0.08432,0,0,0,0,0,0,0,0.0184,0.02843,0.04227,0,0,0,0,0,0,0,0.02278,0.03398,0.04934,0,0,0,0,0,0,0,0.01717,0.02681,0.04023,0,0,0,0,0,0,0,0.02686,0.03825,0.054,0,0,0,0,0,0,0,0.01681,0.02541,0.03746 +Large SUV,PH20E,2045,0,0,0,0,0,0,0,0,0.01279,0.01313,0,0,0,0,0,0,0,0,0.01316,0.01347,0,0,0,0,0,0,0,0,0.0144,0.01474,0,0,0,0,0,0,0,0,0.01196,0.01232,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01273,0.01297,0,0,0,0,0,0,0,0,0.01277,0.01298,0,0,0,0,0,0,0,0,0.01345,0.01372,0,0,0,0,0,0,0,0,0.01333,0.01355,0,0,0,0,0,0,0,0,0.01411,0.00893,0,0,0,0,0,0,0,0,0.01214,0.00781,0,0,0,0,0,0,0,0,0.01388,0.00919,0,0,0,0,0,0,0,0,0.01536,0.01014,0,0,0,0,0,0,0,0,0.00671,0.00513,0,0,0,0,0,0,0,0,0.0081,0.00598,0,0,0,0,0,0,0,0,0.00636,0.00491,0,0,0,0,0,0,0,0,0.00938,0.00655,0,0,0,0,0,0,0,0,0.00622,0.0046,0,0,0,0,0,0,0,0,0.6794,0.99478,0,0,0,0,0,0,0,0,0.64926,0.9624,0,0,0,0,0,0,0,0,0.68698,1.06841,0,0,0,0,0,0,0,0,0.74486,1.16184,0,0,0,0,0,0,0,0,0.56134,0.94245,0,0,0,0,0,0,0,0,0.59095,0.98571,0,0,0,0,0,0,0,0,0.57921,0.97144,0,0,0,0,0,0,0,0,0.61401,0.97791,0,0,0,0,0,0,0,0,0.52429,0.83975,0,0,0,0,0,0,0,0,182.19943,183.96437,0,0,0,0,0,0,0,0,183.52038,185.15908,0,0,0,0,0,0,0,0,186.16305,187.88798,0,0,0,0,0,0,0,0,182.05884,183.7848,0,0,0,0,0,0,0,0,186.09092,187.28907,0,0,0,0,0,0,0,0,183.26998,184.59031,0,0,0,0,0,0,0,0,184.72064,185.86737,0,0,0,0,0,0,0,0,184.86288,186.251,0,0,0,0,0,0,0,0,181.94219,183.20752,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00406,0.00455,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.00397,0.00446,0,0,0,0,0,0,0,0,0.0041,0.0046,0,0,0,0,0,0,0,0,0.00402,0.00451,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00409,0.00459,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01247,0.01449,0,0,0,0,0,0,0,0,0.01241,0.01442,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01242,0.01443,0,0,0,0,0,0,0,0,0.01245,0.01447,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01251,0.01453,0,0,0,0,0,0,0,0,0.02865,0.04196,0,0,0,0,0,0,0,0,0.02758,0.0405,0,0,0,0,0,0,0,0,0.02838,0.0439,0,0,0,0,0,0,0,0,0.02961,0.04654,0,0,0,0,0,0,0,0,0.02218,0.03674,0,0,0,0,0,0,0,0,0.02445,0.03983,0,0,0,0,0,0,0,0,0.02262,0.03713,0,0,0,0,0,0,0,0,0.0261,0.04132,0,0,0,0,0,0,0,0,0.0226,0.0357,0.00445,0.00622,0.01237,0,0,0,0,0,0.00104,0.00164,0.0039,0.00545,0.01078,0,0,0,0,0,0.00099,0.00155,0.00426,0.00595,0.01192,0,0,0,0,0,0.00102,0.00161,0.00464,0.0065,0.0131,0,0,0,0,0,0.00104,0.00166,0.00236,0.00328,0.00638,0,0,0,0,0,0.00086,0.00133,0.00272,0.00378,0.00743,0,0,0,0,0,0.00088,0.00137,0.00231,0.0032,0.00618,0,0,0,0,0,0.00086,0.00133,0.00312,0.00434,0.00853,0,0,0,0,0,0.00092,0.00144,0.00235,0.00326,0.00621,0,0,0,0,0,0.00088,0.00135,0.02182,0.02563,0.03966,0,0,0,0,0,0.03083,0.03217,0.02105,0.02434,0.03645,0,0,0,0,0,0.03169,0.03294,0.02311,0.0267,0.04034,0,0,0,0,0,0.0346,0.03591,0.02149,0.02551,0.04058,0,0,0,0,0,0.02887,0.03024,0.01866,0.02056,0.02748,0,0,0,0,0,0.0336,0.0346,0.01816,0.02036,0.02854,0,0,0,0,0,0.03064,0.0317,0.01731,0.01917,0.02575,0,0,0,0,0,0.03074,0.03174,0.0197,0.0223,0.03171,0,0,0,0,0,0.03236,0.03348,0.01789,0.01979,0.02633,0,0,0,0,0,0.03209,0.0331,0.01005,0.01343,0.02584,0,0,0,0,0,0.0057,0.00688,0.00905,0.01196,0.02268,0,0,0,0,0,0.00572,0.00682,0.00997,0.01314,0.02521,0,0,0,0,0,0.00615,0.00731,0.0104,0.01397,0.0273,0,0,0,0,0,0.00548,0.00669,0.00621,0.00789,0.01401,0,0,0,0,0,0.0057,0.00659,0.00675,0.00869,0.01593,0,0,0,0,0,0.00538,0.00631,0.00594,0.00759,0.01341,0,0,0,0,0,0.00534,0.00622,0.00759,0.00989,0.01821,0,0,0,0,0,0.00568,0.00667,0.00603,0.00771,0.0135,0,0,0,0,0,0.00553,0.00643,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00177,0.00178,0,0,0,0,0,0,0,0,0.00179,0.00181,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00179,0.0018,0,0,0,0,0,0,0,0,0.00176,0.00178,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00175,0.00176,0,0,0,0,0,0,0,0,0.04196,0.05531,0,0,0,0,0,0,0,0,0.03563,0.04763,0,0,0,0,0,0,0,0,0.04123,0.05611,0,0,0,0,0,0,0,0,0.04582,0.06211,0,0,0,0,0,0,0,0,0.01838,0.02842,0,0,0,0,0,0,0,0,0.02276,0.03397,0,0,0,0,0,0,0,0,0.01715,0.02679,0,0,0,0,0,0,0,0,0.02684,0.03823,0,0,0,0,0,0,0,0,0.01679,0.0254 +Large SUV,PH20E,2050,0,0,0,0,0,0,0,0,0,0.01279,0,0,0,0,0,0,0,0,0,0.01316,0,0,0,0,0,0,0,0,0,0.0144,0,0,0,0,0,0,0,0,0,0.01196,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01273,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01345,0,0,0,0,0,0,0,0,0,0.01333,0,0,0,0,0,0,0,0,0,0.01411,0,0,0,0,0,0,0,0,0,0.01214,0,0,0,0,0,0,0,0,0,0.01388,0,0,0,0,0,0,0,0,0,0.01536,0,0,0,0,0,0,0,0,0,0.00671,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00636,0,0,0,0,0,0,0,0,0,0.00938,0,0,0,0,0,0,0,0,0,0.00622,0,0,0,0,0,0,0,0,0,0.67941,0,0,0,0,0,0,0,0,0,0.64926,0,0,0,0,0,0,0,0,0,0.68699,0,0,0,0,0,0,0,0,0,0.74487,0,0,0,0,0,0,0,0,0,0.56135,0,0,0,0,0,0,0,0,0,0.59096,0,0,0,0,0,0,0,0,0,0.57922,0,0,0,0,0,0,0,0,0,0.61401,0,0,0,0,0,0,0,0,0,0.5243,0,0,0,0,0,0,0,0,0,182.19948,0,0,0,0,0,0,0,0,0,183.52025,0,0,0,0,0,0,0,0,0,186.16295,0,0,0,0,0,0,0,0,0,182.05875,0,0,0,0,0,0,0,0,0,186.09083,0,0,0,0,0,0,0,0,0,183.26987,0,0,0,0,0,0,0,0,0,184.7207,0,0,0,0,0,0,0,0,0,184.86272,0,0,0,0,0,0,0,0,0,181.94211,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00406,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.00397,0,0,0,0,0,0,0,0,0,0.0041,0,0,0,0,0,0,0,0,0,0.00402,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00409,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01247,0,0,0,0,0,0,0,0,0,0.01241,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01245,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01251,0,0,0,0,0,0,0,0,0,0.02865,0,0,0,0,0,0,0,0,0,0.02758,0,0,0,0,0,0,0,0,0,0.02838,0,0,0,0,0,0,0,0,0,0.02961,0,0,0,0,0,0,0,0,0,0.02218,0,0,0,0,0,0,0,0,0,0.02445,0,0,0,0,0,0,0,0,0,0.02262,0,0,0,0,0,0,0,0,0,0.0261,0,0,0,0,0,0,0,0,0,0.0226,0.00146,0.00234,0.00318,0.0074,0,0,0,0,0,0.00104,0.00134,0.00208,0.00283,0.00651,0,0,0,0,0,0.00099,0.00155,0.00193,0.0026,0.00708,0,0,0,0,0,0.00102,0.0016,0.00236,0.00322,0.00775,0,0,0,0,0,0.00104,0.00094,0.00148,0.00201,0.00409,0,0,0,0,0,0.00086,0.00105,0.00151,0.00205,0.00463,0,0,0,0,0,0.00088,0.00091,0.00139,0.00189,0.0039,0,0,0,0,0,0.00086,0.00115,0.00166,0.00225,0.00522,0,0,0,0,0,0.00092,0.00084,0.00126,0.0017,0.00387,0,0,0,0,0,0.00088,0.01539,0.01725,0.01914,0.02864,0,0,0,0,0,0.03083,0.01554,0.01709,0.01875,0.02702,0,0,0,0,0,0.03169,0.01724,0.01796,0.01945,0.02957,0,0,0,0,0,0.0346,0.01487,0.01649,0.01841,0.02866,0,0,0,0,0,0.02887,0.01562,0.01672,0.01788,0.02246,0,0,0,0,0,0.0336,0.01459,0.0155,0.01668,0.02239,0,0,0,0,0,0.03064,0.01434,0.01532,0.01638,0.02078,0,0,0,0,0,0.03074,0.01549,0.01654,0.01781,0.02444,0,0,0,0,0,0.03236,0.01473,0.01558,0.01651,0.02127,0,0,0,0,0,0.03209,0.00436,0.00601,0.00768,0.01608,0,0,0,0,0,0.0057,0.00418,0.00555,0.00702,0.01433,0,0,0,0,0,0.00572,0.00477,0.0054,0.00672,0.01568,0,0,0,0,0,0.00615,0.00455,0.00599,0.00768,0.01675,0,0,0,0,0,0.00548,0.00352,0.00449,0.00552,0.00957,0,0,0,0,0,0.0057,0.00359,0.00439,0.00544,0.01049,0,0,0,0,0,0.00538,0.00331,0.00418,0.00512,0.00901,0,0,0,0,0,0.00534,0.00386,0.00479,0.00592,0.01178,0,0,0,0,0,0.00568,0.00323,0.00398,0.00481,0.00901,0,0,0,0,0,0.00553,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00177,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00176,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.04196,0,0,0,0,0,0,0,0,0,0.03563,0,0,0,0,0,0,0,0,0,0.04123,0,0,0,0,0,0,0,0,0,0.04582,0,0,0,0,0,0,0,0,0,0.01838,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.01715,0,0,0,0,0,0,0,0,0,0.02684,0,0,0,0,0,0,0,0,0,0.01679 +Large SUV,PH20G,1990,0.05159,0,0,0,0,0,0,0,0,0,0.04625,0,0,0,0,0,0,0,0,0,0.05229,0,0,0,0,0,0,0,0,0,0.05431,0,0,0,0,0,0,0,0,0,0.03205,0,0,0,0,0,0,0,0,0,0.0344,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.03883,0,0,0,0,0,0,0,0,0,0.03014,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0.00289,0.00292,0.00278,0.00615,0,0,0,0,0,0.06054,0.00298,0.003,0.00286,0.00633,0,0,0,0,0,0.06752,0.00324,0.00325,0.00309,0.00684,0,0,0,0,0,0.07436,0.00269,0.00273,0.00261,0.00574,0,0,0,0,0,0.03611,0.00318,0.0032,0.00304,0.00673,0,0,0,0,0,0.04223,0.00289,0.00292,0.00279,0.00614,0,0,0,0,0,0.03468,0.00292,0.00295,0.00281,0.00621,0,0,0,0,0,0.04801,0.00306,0.00308,0.00293,0.00648,0,0,0,0,0,0.03431,0.00305,0.00308,0.00293,0.0065,0,0,0,0,0,0.18397,0.03086,0.03107,0.03012,0.04853,0,0,0,0,0,0.16475,0.03142,0.03162,0.03066,0.04925,0,0,0,0,0,0.18469,0.03302,0.03323,0.03223,0.05132,0,0,0,0,0,0.19469,0.02966,0.02986,0.02893,0.04689,0,0,0,0,0,0.11125,0.03268,0.03289,0.0319,0.05086,0,0,0,0,0,0.12231,0.03092,0.03112,0.03016,0.04851,0,0,0,0,0,0.105,0.03106,0.03126,0.03031,0.04877,0,0,0,0,0,0.1372,0.03189,0.0321,0.03113,0.04987,0,0,0,0,0,0.10482,0.03187,0.03209,0.03112,0.04992,0,0,0,0,0,0.14116,0.01863,0.01882,0.01795,0.03489,0,0,0,0,0,0.12341,0.01882,0.01902,0.01813,0.03523,0,0,0,0,0,0.13892,0.01938,0.01957,0.01865,0.03621,0,0,0,0,0,0.15215,0.01818,0.01836,0.01751,0.03403,0,0,0,0,0,0.07439,0.01925,0.01944,0.01853,0.03598,0,0,0,0,0,0.08646,0.01861,0.0188,0.01792,0.0348,0,0,0,0,0,0.07102,0.01869,0.01888,0.018,0.03498,0,0,0,0,0,0.09841,0.01899,0.01918,0.01829,0.03553,0,0,0,0,0,0.06986,0.01901,0.01921,0.01832,0.03562,0,0,0,0,0,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Large SUV,PH20G,1995,0.02217,0.03584,0,0,0,0,0,0,0,0,0.02116,0.0328,0,0,0,0,0,0,0,0,0.02355,0.03691,0,0,0,0,0,0,0,0,0.02217,0.03709,0,0,0,0,0,0,0,0,0.01834,0.02464,0,0,0,0,0,0,0,0,0.01795,0.02551,0,0,0,0,0,0,0,0,0.01687,0.02279,0,0,0,0,0,0,0,0,0.01958,0.02848,0,0,0,0,0,0,0,0,0.01739,0.02326,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0.0003,0.00047,0.00051,0.00187,0,0,0,0,0.01643,0.03584,0.0003,0.00047,0.00052,0.00192,0,0,0,0,0.01821,0.03995,0.00031,0.00048,0.00053,0.00204,0,0,0,0,0.01995,0.04383,0.00029,0.00046,0.0005,0.00177,0,0,0,0,0.00987,0.02128,0.00031,0.00048,0.00052,0.00201,0,0,0,0,0.01148,0.02483,0.0003,0.00047,0.00051,0.00187,0,0,0,0,0.00952,0.02044,0.0003,0.00047,0.00051,0.00189,0,0,0,0,0.01307,0.02838,0.00031,0.00048,0.00052,0.00195,0,0,0,0,0.00949,0.02035,0.00031,0.00048,0.00052,0.00196,0,0,0,0,0.07,0.12017,0.01453,0.01574,0.01608,0.02417,0,0,0,0,0.06572,0.10912,0.01495,0.01616,0.01651,0.02466,0,0,0,0,0.07288,0.12157,0.01616,0.0174,0.01774,0.02607,0,0,0,0,0.07109,0.12518,0.01366,0.01484,0.01518,0.02311,0,0,0,0,0.05325,0.07821,0.01591,0.01715,0.01749,0.02576,0,0,0,0,0.0539,0.08322,0.0146,0.0158,0.01614,0.02421,0,0,0,0,0.04958,0.0735,0.01468,0.0159,0.01624,0.02434,0,0,0,0,0.05908,0.09317,0.0153,0.01653,0.01688,0.02508,0,0,0,0,0.0506,0.07435,0.01526,0.01649,0.01685,0.02507,0,0,0,0,0.04035,0.08473,0.00361,0.00472,0.00504,0.01248,0,0,0,0,0.03582,0.07421,0.00367,0.00479,0.00511,0.01261,0,0,0,0,0.04002,0.08309,0.00386,0.00501,0.00532,0.01298,0,0,0,0,0.04282,0.09067,0.00346,0.00454,0.00486,0.01215,0,0,0,0,0.02309,0.04517,0.00382,0.00496,0.00527,0.01289,0,0,0,0,0.02594,0.05189,0.00361,0.00471,0.00502,0.01244,0,0,0,0,0.022,0.04316,0.00363,0.00474,0.00506,0.01251,0,0,0,0,0.02931,0.05947,0.00373,0.00486,0.00517,0.01272,0,0,0,0,0.02191,0.04291,0.00373,0.00487,0.00519,0.01276,0,0,0,0,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Large SUV,PH20G,2000,0.01703,0.01926,0.02838,0,0,0,0,0,0,0,0.01678,0.01868,0.02643,0,0,0,0,0,0,0,0.0185,0.02065,0.02956,0,0,0,0,0,0,0,0.01652,0.01892,0.02889,0,0,0,0,0,0,0,0.01595,0.01699,0.02116,0,0,0,0,0,0,0,0.01507,0.01631,0.02133,0,0,0,0,0,0,0,0.01463,0.01562,0.01954,0,0,0,0,0,0,0,0.01622,0.01768,0.02359,0,0,0,0,0,0,0,0.0152,0.01619,0.02008,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0.00031,0.00046,0.00048,0.00077,0,0,0,0.00911,0.01271,0.02516,0.00031,0.00046,0.00049,0.00078,0,0,0,0.00993,0.01389,0.02782,0.00032,0.00047,0.0005,0.0008,0,0,0,0.01083,0.01516,0.03057,0.0003,0.00044,0.00047,0.00074,0,0,0,0.00552,0.00765,0.01489,0.00031,0.00047,0.00049,0.0008,0,0,0,0.00634,0.00881,0.01733,0.0003,0.00045,0.00048,0.00076,0,0,0,0.00539,0.00747,0.01442,0.00031,0.00046,0.00048,0.00077,0,0,0,0.00727,0.01012,0.0199,0.00031,0.00046,0.00049,0.00079,0,0,0,0.00549,0.0076,0.0145,0.00031,0.00047,0.00049,0.00079,0,0,0,0.05092,0.05981,0.09255,0.01456,0.01563,0.01585,0.0177,0,0,0,0.04911,0.05679,0.08505,0.01498,0.01606,0.01628,0.01814,0,0,0,0.05393,0.06231,0.09414,0.01619,0.0173,0.01752,0.0194,0,0,0,0.05013,0.05952,0.09469,0.01369,0.01474,0.01495,0.01677,0,0,0,0.04353,0.04796,0.06411,0.01594,0.01704,0.01726,0.01913,0,0,0,0.04236,0.0475,0.06659,0.01463,0.0157,0.01592,0.01775,0,0,0,0.04039,0.04473,0.06009,0.01472,0.01579,0.01601,0.01786,0,0,0,0.04598,0.05204,0.07399,0.01534,0.01643,0.01665,0.01851,0,0,0,0.04175,0.04618,0.06143,0.01529,0.01639,0.01661,0.01849,0,0,0,0.02346,0.03133,0.0603,0.00363,0.00463,0.00483,0.00653,0,0,0,0.02112,0.02792,0.05292,0.0037,0.0047,0.0049,0.00661,0,0,0,0.02325,0.03066,0.05882,0.0039,0.00492,0.00511,0.00685,0,0,0,0.02428,0.03259,0.0637,0.00348,0.00445,0.00465,0.00632,0,0,0,0.01449,0.01841,0.0327,0.00385,0.00487,0.00506,0.00679,0,0,0,0.01574,0.02029,0.03717,0.00364,0.00462,0.00482,0.0065,0,0,0,0.01386,0.01771,0.0313,0.00366,0.00465,0.00485,0.00655,0,0,0,0.01772,0.02308,0.0425,0.00376,0.00476,0.00496,0.00668,0,0,0,0.01407,0.01799,0.03149,0.00376,0.00477,0.00498,0.00671,0,0,0,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Large SUV,PH20G,2005,0.01375,0.01467,0.01584,0.02193,0,0,0,0,0,0,0.01402,0.01476,0.01575,0.02097,0,0,0,0,0,0,0.01553,0.01572,0.01657,0.02315,0,0,0,0,0,0,0.01311,0.01392,0.01515,0.02181,0,0,0,0,0,0,0.01449,0.01498,0.01561,0.01835,0,0,0,0,0,0,0.01336,0.01372,0.01436,0.01785,0,0,0,0,0,0,0.01323,0.01365,0.01421,0.01679,0,0,0,0,0,0,0.01415,0.0146,0.01533,0.01944,0,0,0,0,0,0,0.0137,0.01404,0.01452,0.01729,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.00323,0.00515,0.00701,0.01693,0.00029,0.00042,0.00044,0.00051,0,0,0.00295,0.00457,0.00622,0.01488,0.00029,0.00043,0.00044,0.00051,0,0,0.00342,0.00422,0.00569,0.01617,0.0003,0.00044,0.00045,0.00052,0,0,0.00352,0.00522,0.00713,0.01775,0.00028,0.00041,0.00043,0.00049,0,0,0.00206,0.00322,0.00439,0.00929,0.00029,0.00043,0.00045,0.00052,0,0,0.00231,0.00329,0.00448,0.01052,0.00028,0.00042,0.00044,0.0005,0,0,0.00199,0.00303,0.00413,0.00886,0.00029,0.00042,0.00044,0.00051,0,0,0.00253,0.00364,0.00495,0.01193,0.00029,0.00043,0.00045,0.00051,0,0,0.00184,0.00275,0.00372,0.00883,0.00029,0.00043,0.00045,0.00052,0,0,0.03556,0.03964,0.04388,0.06619,0.01439,0.01537,0.01551,0.01606,0,0,0.03594,0.03932,0.04303,0.06244,0.01482,0.0158,0.01594,0.01649,0,0,0.03987,0.04134,0.04465,0.06832,0.01603,0.01704,0.01718,0.01773,0,0,0.03431,0.03793,0.04225,0.06626,0.01353,0.01448,0.01462,0.01516,0,0,0.03619,0.03857,0.04115,0.05192,0.01578,0.01679,0.01693,0.01747,0,0,0.03377,0.03572,0.03833,0.05172,0.01448,0.01545,0.01559,0.01612,0,0,0.0332,0.03534,0.0377,0.04803,0.01455,0.01553,0.01567,0.01622,0,0,0.03586,0.03814,0.04099,0.05653,0.01518,0.01617,0.01631,0.01686,0,0,0.03413,0.03599,0.03806,0.04924,0.01513,0.01612,0.01627,0.01683,0,0,0.00987,0.01348,0.01723,0.03697,0.00349,0.00438,0.00451,0.00502,0,0,0.00946,0.01246,0.01574,0.03291,0.00355,0.00446,0.00459,0.00509,0,0,0.01081,0.01211,0.01504,0.03598,0.00375,0.00468,0.00481,0.00531,0,0,0.01027,0.01347,0.0173,0.03854,0.00334,0.00421,0.00434,0.00484,0,0,0.00799,0.0101,0.01238,0.02191,0.00371,0.00463,0.00476,0.00526,0,0,0.00813,0.00986,0.01217,0.02401,0.00349,0.00438,0.00451,0.00501,0,0,0.00749,0.00939,0.01148,0.02062,0.00351,0.00441,0.00454,0.00504,0,0,0.00876,0.01078,0.01331,0.02705,0.00361,0.00452,0.00465,0.00516,0,0,0.00732,0.00897,0.01081,0.0207,0.00361,0.00453,0.00466,0.00517,0,0,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Large SUV,PH20G,2010,0,0.01336,0.01421,0.01519,0.01971,0,0,0,0,0,0,0.01364,0.01438,0.01526,0.01911,0,0,0,0,0,0,0.01472,0.01535,0.01665,0.02094,0,0,0,0,0,0,0.01256,0.01346,0.01453,0.01939,0,0,0,0,0,0,0.01433,0.01483,0.01533,0.01748,0,0,0,0,0,0,0.01303,0.01353,0.0142,0.01672,0,0,0,0,0,0,0.01305,0.01351,0.01394,0.0159,0,0,0,0,0,0,0.01379,0.01435,0.01511,0.01805,0,0,0,0,0,0,0.01352,0.0139,0.01445,0.01639,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0,0.00194,0.00327,0.00461,0.01201,0.00028,0.00042,0.00044,0.00048,0,0,0.0018,0.00303,0.00428,0.01072,0.00029,0.00043,0.00044,0.00049,0,0,0.00163,0.00272,0.00443,0.01144,0.00029,0.00044,0.00045,0.0005,0,0,0.00197,0.00333,0.00477,0.01253,0.00028,0.00041,0.00043,0.00047,0,0,0.00157,0.00258,0.00343,0.00728,0.00029,0.00043,0.00045,0.00049,0,0,0.00152,0.00251,0.00357,0.00798,0.00028,0.00042,0.00044,0.00048,0,0,0.00149,0.00244,0.00323,0.00686,0.00029,0.00042,0.00044,0.00048,0,0,0.00157,0.0026,0.00377,0.00884,0.00029,0.00043,0.00045,0.00049,0,0,0.00133,0.00217,0.00314,0.00677,0.00029,0.00043,0.00045,0.00049,0,0,0.03293,0.03598,0.03912,0.05581,0.01439,0.01537,0.01551,0.01586,0,0,0.03356,0.03631,0.03921,0.05368,0.01481,0.0158,0.01594,0.01629,0,0,0.03597,0.03841,0.04245,0.05828,0.01603,0.01704,0.01718,0.01753,0,0,0.03106,0.03419,0.03758,0.05519,0.01353,0.01448,0.01462,0.01496,0,0,0.03514,0.03732,0.03921,0.04771,0.01578,0.01678,0.01693,0.01727,0,0,0.03205,0.0342,0.03658,0.04637,0.01447,0.01545,0.01559,0.01593,0,0,0.03212,0.03415,0.03588,0.04384,0.01455,0.01553,0.01567,0.01602,0,0,0.03382,0.03607,0.03873,0.05002,0.01517,0.01617,0.01631,0.01666,0,0,0.03306,0.03485,0.037,0.04493,0.01512,0.01612,0.01627,0.01662,0,0,0.00755,0.01025,0.01303,0.02779,0.00348,0.00438,0.00451,0.00484,0,0,0.00736,0.00979,0.01236,0.02516,0.00355,0.00446,0.00459,0.00491,0,0,0.00736,0.00952,0.01309,0.0271,0.00375,0.00468,0.00481,0.00512,0,0,0.0074,0.01017,0.01317,0.02875,0.00333,0.00421,0.00434,0.00466,0,0,0.00706,0.00899,0.01066,0.01818,0.0037,0.00463,0.00476,0.00508,0,0,0.00661,0.00851,0.01062,0.01928,0.00349,0.00438,0.00451,0.00483,0,0,0.00654,0.00834,0.00987,0.01691,0.00351,0.00441,0.00454,0.00486,0,0,0.00696,0.00895,0.0113,0.02129,0.00361,0.00452,0.00465,0.00497,0,0,0.00639,0.00796,0.00987,0.01689,0.00361,0.00453,0.00466,0.00499,0,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Large SUV,PH20G,2015,0,0,0.01312,0.01379,0.01464,0.01733,0,0,0,0,0,0,0.01346,0.01407,0.01484,0.01716,0,0,0,0,0,0,0.01456,0.01535,0.01615,0.01867,0,0,0,0,0,0,0.0123,0.01301,0.0139,0.01677,0,0,0,0,0,0,0.01424,0.01466,0.01518,0.01657,0,0,0,0,0,0,0.01294,0.01344,0.01401,0.01559,0,0,0,0,0,0,0.01298,0.01336,0.01383,0.01507,0,0,0,0,0,0,0.01366,0.01421,0.01484,0.01664,0,0,0,0,0,0,0.01346,0.01389,0.01435,0.01555,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0,0,0.00165,0.00281,0.00409,0.00789,0.00028,0.00042,0.00044,0.00047,0,0,0.00157,0.00267,0.00387,0.00727,0.00029,0.00043,0.00044,0.00048,0,0,0.00142,0.00272,0.00396,0.00756,0.00029,0.00044,0.00045,0.00049,0,0,0.00166,0.00285,0.00417,0.00814,0.00028,0.00041,0.00043,0.00046,0,0,0.00142,0.00232,0.0033,0.00561,0.00029,0.00043,0.00045,0.00048,0,0,0.00138,0.00237,0.00339,0.0059,0.00028,0.00042,0.00044,0.00047,0,0,0.00136,0.00221,0.00313,0.00526,0.00029,0.00042,0.00044,0.00047,0,0,0.0014,0.00245,0.00351,0.0063,0.00029,0.00043,0.00045,0.00048,0,0,0.00121,0.00215,0.00305,0.00514,0.00029,0.00043,0.00045,0.00048,0,0,0.03222,0.03478,0.03774,0.04665,0.01439,0.01537,0.01551,0.01579,0,0,0.03298,0.03541,0.03814,0.04603,0.01481,0.0158,0.01594,0.01622,0,0,0.03546,0.03836,0.0412,0.04962,0.01603,0.01704,0.01718,0.01746,0,0,0.03026,0.03293,0.03598,0.04535,0.01352,0.01448,0.01462,0.01489,0,0,0.03481,0.03671,0.03885,0.04404,0.01578,0.01678,0.01693,0.0172,0,0,0.03171,0.03385,0.03609,0.04181,0.01447,0.01545,0.01559,0.01586,0,0,0.03181,0.03361,0.0356,0.04035,0.01455,0.01553,0.01567,0.01595,0,0,0.03338,0.03566,0.03804,0.04442,0.01517,0.01617,0.01631,0.01659,0,0,0.0328,0.03479,0.03673,0.04139,0.01512,0.01612,0.01627,0.01655,0,0,0.00692,0.00919,0.0118,0.01969,0.00348,0.00438,0.00451,0.00477,0,0,0.00685,0.009,0.01142,0.01839,0.00355,0.00446,0.00459,0.00484,0,0,0.00691,0.00948,0.01199,0.01943,0.00374,0.00468,0.00481,0.00506,0,0,0.0067,0.00906,0.01175,0.02005,0.00333,0.00421,0.00434,0.00459,0,0,0.00677,0.00846,0.01035,0.01493,0.0037,0.00463,0.00476,0.00501,0,0,0.00631,0.0082,0.01019,0.01525,0.00349,0.00438,0.00451,0.00476,0,0,0.00627,0.00786,0.00962,0.01383,0.00351,0.00441,0.00454,0.00479,0,0,0.00657,0.00859,0.0107,0.01634,0.00361,0.00452,0.00465,0.00491,0,0,0.00616,0.00792,0.00963,0.01376,0.00361,0.00453,0.00466,0.00492,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Large SUV,PH20G,2020,0,0,0,0.01304,0.01359,0.01415,0.01607,0,0,0,0,0,0,0.01339,0.01389,0.0144,0.01609,0,0,0,0,0,0,0.01463,0.01515,0.01569,0.0175,0,0,0,0,0,0,0.01222,0.01279,0.01338,0.01541,0,0,0,0,0,0,0.01418,0.01454,0.01488,0.01598,0,0,0,0,0,0,0.01292,0.01331,0.01368,0.01491,0,0,0,0,0,0,0.01292,0.01324,0.01355,0.01454,0,0,0,0,0,0,0.01365,0.01406,0.01448,0.01584,0,0,0,0,0,0,0.01346,0.01378,0.01408,0.01504,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0,0,0,0.00151,0.00245,0.00326,0.00585,0.00028,0.00042,0.00044,0,0,0,0.00145,0.00234,0.0031,0.00548,0.00029,0.00043,0.00044,0,0,0,0.00146,0.00237,0.00316,0.00564,0.00029,0.00044,0.00045,0,0,0,0.00152,0.00248,0.00332,0.006,0.00028,0.00041,0.00043,0,0,0,0.00128,0.00204,0.00265,0.00447,0.00029,0.00043,0.00045,0,0,0,0.0013,0.00208,0.00272,0.00464,0.00028,0.00042,0.00044,0,0,0,0.00122,0.00194,0.00251,0.0042,0.00029,0.00042,0.00044,0,0,0,0.00134,0.00215,0.00282,0.00487,0.00029,0.00043,0.00045,0,0,0,0.00119,0.00189,0.00245,0.00409,0.00029,0.00043,0.00045,0,0,0,0.03188,0.03398,0.03588,0.04203,0.01439,0.01537,0.01551,0,0,0,0.0327,0.03467,0.03642,0.04201,0.01481,0.0158,0.01594,0,0,0,0.03557,0.0376,0.03942,0.04528,0.01603,0.01704,0.01718,0,0,0,0.02995,0.0321,0.03406,0.04047,0.01352,0.01448,0.01462,0,0,0,0.0345,0.03612,0.03747,0.04157,0.01578,0.01678,0.01693,0,0,0,0.03155,0.03323,0.03465,0.03903,0.01447,0.01545,0.01559,0,0,0,0.03152,0.03304,0.0343,0.03806,0.01455,0.01553,0.01567,0,0,0,0.03325,0.03501,0.03653,0.04125,0.01517,0.01617,0.01631,0,0,0,0.03276,0.03425,0.03547,0.03914,0.01512,0.01612,0.01627,0,0,0,0.00662,0.00848,0.01016,0.0156,0.00348,0.00438,0.00451,0,0,0,0.0066,0.00835,0.0099,0.01484,0.00355,0.00446,0.00459,0,0,0,0.00701,0.0088,0.01041,0.01559,0.00374,0.00468,0.00481,0,0,0,0.00642,0.00832,0.01006,0.01573,0.00333,0.00421,0.00434,0,0,0,0.00649,0.00793,0.00912,0.01275,0.0037,0.00463,0.00476,0,0,0,0.00617,0.00766,0.00892,0.01279,0.00348,0.00438,0.00451,0,0,0,0.00602,0.00736,0.00847,0.0118,0.0035,0.00441,0.00454,0,0,0,0.00646,0.00802,0.00936,0.01354,0.00361,0.00452,0.00465,0,0,0,0.00612,0.00744,0.00852,0.01177,0.00361,0.00453,0.00466,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Large SUV,PH20G,2025,0,0,0,0,0.01277,0.01311,0.01347,0.01498,0,0,0,0,0,0,0.01315,0.01346,0.01378,0.01513,0,0,0,0,0,0,0.01438,0.0147,0.01504,0.01647,0,0,0,0,0,0,0.01194,0.01229,0.01267,0.01424,0,0,0,0,0,0,0.01399,0.01422,0.01444,0.01534,0,0,0,0,0,0,0.01272,0.01296,0.01321,0.0142,0,0,0,0,0,0,0.01275,0.01295,0.01315,0.01396,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.01506,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01449,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0,0,0,0.00099,0.00158,0.00211,0.00421,0.00028,0.00042,0,0,0,0,0.00095,0.00151,0.002,0.00396,0.00029,0.00043,0,0,0,0,0.00097,0.00153,0.00204,0.00406,0.00029,0.00044,0,0,0,0,0.00101,0.0016,0.00214,0.0043,0.00028,0.00041,0,0,0,0,0.00085,0.00132,0.00172,0.00326,0.00029,0.00043,0,0,0,0,0.00086,0.00135,0.00176,0.00337,0.00028,0.00042,0,0,0,0,0.00081,0.00126,0.00163,0.00305,0.00029,0.00042,0,0,0,0,0.00088,0.00139,0.00182,0.00353,0.00029,0.00043,0,0,0,0,0.00079,0.00123,0.00159,0.003,0.00029,0.00043,0,0,0,0,0.03077,0.03207,0.0333,0.03825,0.01439,0.01537,0,0,0,0,0.03164,0.03287,0.034,0.03854,0.01481,0.0158,0,0,0,0,0.0345,0.03575,0.03693,0.04166,0.01603,0.01704,0,0,0,0,0.02882,0.03015,0.03141,0.03652,0.01352,0.01448,0,0,0,0,0.03359,0.0346,0.03548,0.03892,0.01578,0.01678,0,0,0,0,0.03062,0.03166,0.03259,0.03624,0.01447,0.01545,0,0,0,0,0.03066,0.03161,0.03242,0.03559,0.01455,0.01553,0,0,0,0,0.03229,0.03339,0.03437,0.03828,0.01517,0.01617,0,0,0,0,0.03193,0.03285,0.03365,0.03677,0.01512,0.01612,0,0,0,0,0.00564,0.00679,0.00787,0.01226,0.00348,0.00438,0,0,0,0,0.00567,0.00675,0.00775,0.01177,0.00355,0.00446,0,0,0,0,0.00606,0.00717,0.00821,0.01239,0.00374,0.00468,0,0,0,0,0.00542,0.0066,0.00771,0.01223,0.00333,0.00421,0,0,0,0,0.00569,0.00659,0.00736,0.01041,0.0037,0.00463,0,0,0,0,0.00535,0.00627,0.00709,0.01032,0.00348,0.00438,0,0,0,0,0.00525,0.00609,0.00681,0.00961,0.0035,0.00441,0,0,0,0,0.00561,0.00658,0.00744,0.0109,0.00361,0.00452,0,0,0,0,0.00538,0.0062,0.0069,0.00967,0.00361,0.00453,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Large SUV,PH20G,2030,0,0,0,0,0,0.01277,0.01311,0.01346,0.01449,0,0,0,0,0,0,0.01315,0.01346,0.01377,0.01469,0,0,0,0,0,0,0.01438,0.0147,0.01503,0.016,0,0,0,0,0,0,0.01194,0.01229,0.01266,0.01373,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01504,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01387,0,0,0,0,0,0,0.01275,0.01295,0.01314,0.01369,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.0147,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01422,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0,0,0,0,0.00099,0.00157,0.00209,0.00348,0.00028,0,0,0,0,0,0.00095,0.00151,0.00199,0.00327,0.00029,0,0,0,0,0,0.00096,0.00153,0.00203,0.00336,0.00029,0,0,0,0,0,0.001,0.0016,0.00212,0.00355,0.00028,0,0,0,0,0,0.00084,0.00132,0.00171,0.0027,0.00029,0,0,0,0,0,0.00086,0.00134,0.00175,0.0028,0.00028,0,0,0,0,0,0.00081,0.00125,0.00162,0.00254,0.00029,0,0,0,0,0,0.00088,0.00139,0.00181,0.00293,0.00029,0,0,0,0,0,0.00079,0.00122,0.00159,0.00249,0.00029,0,0,0,0,0,0.03076,0.03206,0.03327,0.03655,0.01439,0,0,0,0,0,0.03164,0.03286,0.03397,0.03698,0.01481,0,0,0,0,0,0.03449,0.03574,0.0369,0.04004,0.01603,0,0,0,0,0,0.02881,0.03014,0.03137,0.03478,0.01352,0,0,0,0,0,0.03359,0.0346,0.03546,0.03771,0.01578,0,0,0,0,0,0.03062,0.03166,0.03257,0.03496,0.01447,0,0,0,0,0,0.03065,0.0316,0.0324,0.03447,0.01455,0,0,0,0,0,0.03229,0.03338,0.03435,0.03691,0.01517,0,0,0,0,0,0.03192,0.03285,0.03364,0.03566,0.01512,0,0,0,0,0,0.00563,0.00678,0.00785,0.01075,0.00348,0,0,0,0,0,0.00566,0.00674,0.00772,0.01039,0.00355,0,0,0,0,0,0.00605,0.00716,0.00818,0.01096,0.00374,0,0,0,0,0,0.00541,0.00659,0.00767,0.01069,0.00333,0,0,0,0,0,0.00569,0.00658,0.00734,0.00933,0.0037,0,0,0,0,0,0.00535,0.00627,0.00707,0.00919,0.00348,0,0,0,0,0,0.00525,0.00609,0.00679,0.00863,0.0035,0,0,0,0,0,0.00561,0.00657,0.00743,0.0097,0.00361,0,0,0,0,0,0.00538,0.0062,0.0069,0.00868,0.00361,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Large SUV,PH20G,2035,0,0,0,0,0,0,0.01277,0.0131,0.01347,0.01432,0,0,0,0,0,0,0.01315,0.01345,0.01378,0.01453,0,0,0,0,0,0,0.01437,0.01469,0.01503,0.01584,0,0,0,0,0,0,0.01194,0.01228,0.01266,0.01356,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01494,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01376,0,0,0,0,0,0,0.01275,0.01294,0.01315,0.0136,0,0,0,0,0,0,0.01344,0.01369,0.01396,0.01457,0,0,0,0,0,0,0.0133,0.01349,0.01369,0.01412,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0.02972,0,0,0,0,0,0.00099,0.00156,0.0021,0.00323,0.02595,0,0,0,0,0,0.00095,0.0015,0.00199,0.00303,0.02894,0,0,0,0,0,0.00096,0.00152,0.00203,0.00311,0.03187,0,0,0,0,0,0.001,0.00158,0.00213,0.0033,0.01548,0,0,0,0,0,0.00084,0.00131,0.00171,0.00251,0.0181,0,0,0,0,0,0.00086,0.00134,0.00175,0.0026,0.01486,0,0,0,0,0,0.0008,0.00125,0.00162,0.00236,0.02058,0,0,0,0,0,0.00088,0.00138,0.00182,0.00271,0.01471,0,0,0,0,0,0.00079,0.00122,0.00159,0.00231,0.07884,0,0,0,0,0,0.03076,0.03204,0.03328,0.03597,0.07061,0,0,0,0,0,0.03163,0.03284,0.03398,0.03644,0.07915,0,0,0,0,0,0.03448,0.03572,0.03691,0.03947,0.08344,0,0,0,0,0,0.0288,0.03011,0.03139,0.03419,0.04768,0,0,0,0,0,0.03358,0.03458,0.03546,0.03728,0.05242,0,0,0,0,0,0.03061,0.03164,0.03257,0.03452,0.045,0,0,0,0,0,0.03065,0.03158,0.03241,0.03408,0.0588,0,0,0,0,0,0.03228,0.03336,0.03436,0.03644,0.04492,0,0,0,0,0,0.03192,0.03284,0.03364,0.03526,0.0605,0,0,0,0,0,0.00563,0.00676,0.00786,0.01024,0.05289,0,0,0,0,0,0.00566,0.00672,0.00773,0.00991,0.05954,0,0,0,0,0,0.00605,0.00714,0.00819,0.01046,0.06521,0,0,0,0,0,0.0054,0.00656,0.00769,0.01017,0.03188,0,0,0,0,0,0.00569,0.00657,0.00735,0.00896,0.03705,0,0,0,0,0,0.00534,0.00625,0.00708,0.0088,0.03044,0,0,0,0,0,0.00525,0.00607,0.0068,0.00828,0.04218,0,0,0,0,0,0.0056,0.00656,0.00743,0.00928,0.02994,0,0,0,0,0,0.00538,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Large SUV,PH20G,2040,0,0,0,0,0,0,0,0.01276,0.0131,0.01347,0,0,0,0,0,0,0,0.01314,0.01345,0.01378,0,0,0,0,0,0,0,0.01437,0.01469,0.01504,0,0,0,0,0,0,0,0.01193,0.01228,0.01267,0,0,0,0,0,0,0,0.01399,0.01421,0.01444,0,0,0,0,0,0,0,0.01272,0.01296,0.0132,0,0,0,0,0,0,0,0.01274,0.01295,0.01315,0,0,0,0,0,0,0,0.01343,0.01369,0.01396,0,0,0,0,0,0,0,0.0133,0.01349,0.01369,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0.00804,0.0176,0,0,0,0,0,0.00098,0.00157,0.0021,0.00704,0.01536,0,0,0,0,0,0.00094,0.0015,0.002,0.0078,0.01712,0,0,0,0,0,0.00096,0.00152,0.00204,0.00855,0.01878,0,0,0,0,0,0.00099,0.00159,0.00214,0.00423,0.00912,0,0,0,0,0,0.00084,0.00131,0.00172,0.00492,0.01064,0,0,0,0,0,0.00085,0.00134,0.00176,0.00408,0.00876,0,0,0,0,0,0.0008,0.00125,0.00163,0.0056,0.01216,0,0,0,0,0,0.00088,0.00138,0.00182,0.00407,0.00872,0,0,0,0,0,0.00078,0.00122,0.00159,0.03,0.0515,0,0,0,0,0,0.03074,0.03205,0.03329,0.02817,0.04676,0,0,0,0,0,0.03162,0.03284,0.03399,0.03124,0.0521,0,0,0,0,0,0.03447,0.03573,0.03692,0.03047,0.05365,0,0,0,0,0,0.02878,0.03012,0.03141,0.02282,0.03352,0,0,0,0,0,0.03357,0.03458,0.03547,0.0231,0.03567,0,0,0,0,0,0.0306,0.03165,0.03258,0.02125,0.0315,0,0,0,0,0,0.03064,0.03159,0.03242,0.02532,0.03993,0,0,0,0,0,0.03227,0.03337,0.03436,0.02169,0.03186,0,0,0,0,0,0.03192,0.03284,0.03364,0.01729,0.03631,0,0,0,0,0,0.00561,0.00677,0.00787,0.01535,0.0318,0,0,0,0,0,0.00564,0.00673,0.00775,0.01715,0.03561,0,0,0,0,0,0.00603,0.00715,0.0082,0.01835,0.03886,0,0,0,0,0,0.00539,0.00657,0.00771,0.0099,0.01936,0,0,0,0,0,0.00568,0.00657,0.00736,0.01112,0.02224,0,0,0,0,0,0.00533,0.00626,0.00709,0.00943,0.0185,0,0,0,0,0,0.00524,0.00608,0.00681,0.01256,0.02549,0,0,0,0,0,0.00559,0.00656,0.00744,0.00939,0.01839,0,0,0,0,0,0.00537,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Large SUV,PH20G,2045,0,0,0,0,0,0,0,0,0.01277,0.01311,0,0,0,0,0,0,0,0,0.01314,0.01345,0,0,0,0,0,0,0,0,0.01437,0.0147,0,0,0,0,0,0,0,0,0.01193,0.01229,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01272,0.01296,0,0,0,0,0,0,0,0,0.01274,0.01295,0,0,0,0,0,0,0,0,0.01343,0.01369,0,0,0,0,0,0,0,0,0.0133,0.01349,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0.00445,0.00622,0.01237,0,0,0,0,0,0.00099,0.00157,0.0039,0.00545,0.01078,0,0,0,0,0,0.00095,0.0015,0.00426,0.00595,0.01192,0,0,0,0,0,0.00096,0.00153,0.00464,0.0065,0.0131,0,0,0,0,0,0.00099,0.00159,0.00236,0.00328,0.00638,0,0,0,0,0,0.00084,0.00132,0.00272,0.00378,0.00743,0,0,0,0,0,0.00085,0.00134,0.00231,0.0032,0.00618,0,0,0,0,0,0.0008,0.00125,0.00312,0.00434,0.00853,0,0,0,0,0,0.00088,0.00138,0.00235,0.00326,0.00621,0,0,0,0,0,0.00078,0.00122,0.02182,0.02563,0.03966,0,0,0,0,0,0.03075,0.03206,0.02105,0.02434,0.03645,0,0,0,0,0,0.03162,0.03285,0.02311,0.0267,0.04034,0,0,0,0,0,0.03447,0.03574,0.02149,0.02551,0.04058,0,0,0,0,0,0.02879,0.03013,0.01866,0.02056,0.02748,0,0,0,0,0,0.03358,0.03459,0.01816,0.02036,0.02854,0,0,0,0,0,0.0306,0.03165,0.01731,0.01917,0.02575,0,0,0,0,0,0.03064,0.0316,0.0197,0.0223,0.03171,0,0,0,0,0,0.03228,0.03338,0.01789,0.01979,0.02633,0,0,0,0,0,0.03192,0.03285,0.01005,0.01343,0.02584,0,0,0,0,0,0.00562,0.00678,0.00905,0.01196,0.02268,0,0,0,0,0,0.00565,0.00674,0.00997,0.01314,0.02521,0,0,0,0,0,0.00604,0.00716,0.0104,0.01397,0.0273,0,0,0,0,0,0.00539,0.00658,0.00621,0.00789,0.01401,0,0,0,0,0,0.00568,0.00658,0.00675,0.00869,0.01593,0,0,0,0,0,0.00534,0.00627,0.00594,0.00759,0.01341,0,0,0,0,0,0.00524,0.00609,0.00759,0.00989,0.01821,0,0,0,0,0,0.0056,0.00657,0.00603,0.00771,0.0135,0,0,0,0,0,0.00537,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Large SUV,PH20G,2050,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01315,0,0,0,0,0,0,0,0,0,0.01437,0,0,0,0,0,0,0,0,0,0.01193,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01272,0,0,0,0,0,0,0,0,0,0.01274,0,0,0,0,0,0,0,0,0,0.01344,0,0,0,0,0,0,0,0,0,0.0133,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0.00146,0.00234,0.00318,0.0074,0,0,0,0,0,0.00099,0.00134,0.00208,0.00283,0.00651,0,0,0,0,0,0.00095,0.00155,0.00193,0.0026,0.00708,0,0,0,0,0,0.00096,0.0016,0.00236,0.00322,0.00775,0,0,0,0,0,0.001,0.00094,0.00148,0.00201,0.00409,0,0,0,0,0,0.00084,0.00105,0.00151,0.00205,0.00463,0,0,0,0,0,0.00085,0.00091,0.00139,0.00189,0.0039,0,0,0,0,0,0.0008,0.00115,0.00166,0.00225,0.00522,0,0,0,0,0,0.00088,0.00084,0.00126,0.0017,0.00387,0,0,0,0,0,0.00078,0.01539,0.01725,0.01914,0.02864,0,0,0,0,0,0.03075,0.01554,0.01709,0.01875,0.02702,0,0,0,0,0,0.03163,0.01724,0.01796,0.01945,0.02957,0,0,0,0,0,0.03448,0.01487,0.01649,0.01841,0.02866,0,0,0,0,0,0.0288,0.01562,0.01672,0.01788,0.02246,0,0,0,0,0,0.03358,0.01459,0.0155,0.01668,0.02239,0,0,0,0,0,0.03061,0.01434,0.01532,0.01638,0.02078,0,0,0,0,0,0.03065,0.01549,0.01654,0.01781,0.02444,0,0,0,0,0,0.03228,0.01473,0.01558,0.01651,0.02127,0,0,0,0,0,0.03192,0.00436,0.00601,0.00768,0.01608,0,0,0,0,0,0.00562,0.00418,0.00555,0.00702,0.01433,0,0,0,0,0,0.00565,0.00477,0.0054,0.00672,0.01568,0,0,0,0,0,0.00604,0.00455,0.00599,0.00768,0.01675,0,0,0,0,0,0.0054,0.00352,0.00449,0.00552,0.00957,0,0,0,0,0,0.00568,0.00359,0.00439,0.00544,0.01049,0,0,0,0,0,0.00534,0.00331,0.00418,0.00512,0.00901,0,0,0,0,0,0.00524,0.00386,0.00479,0.00592,0.01178,0,0,0,0,0,0.0056,0.00323,0.00398,0.00481,0.00901,0,0,0,0,0,0.00538,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Large SUV,PH40E,1990,0.02044,0,0,0,0,0,0,0,0,0,0.02114,0,0,0,0,0,0,0,0,0,0.02314,0,0,0,0,0,0,0,0,0,0.01902,0,0,0,0,0,0,0,0,0,0.02273,0,0,0,0,0,0,0,0,0,0.02058,0,0,0,0,0,0,0,0,0,0.02071,0,0,0,0,0,0,0,0,0,0.02173,0,0,0,0,0,0,0,0,0,0.02164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00481,0.00486,0.00464,0.01026,0,0,0,0,0,0,0.00496,0.00501,0.00477,0.01055,0,0,0,0,0,0,0.0054,0.00542,0.00515,0.0114,0,0,0,0,0,0,0.00448,0.00455,0.00435,0.00957,0,0,0,0,0,0,0.00531,0.00533,0.00507,0.01121,0,0,0,0,0,0,0.00482,0.00487,0.00464,0.01024,0,0,0,0,0,0,0.00487,0.00491,0.00468,0.01035,0,0,0,0,0,0,0.00509,0.00513,0.00488,0.0108,0,0,0,0,0,0,0.00509,0.00513,0.00489,0.01083,0,0,0,0,0,0,0.05143,0.05178,0.05019,0.08089,0,0,0,0,0,0,0.05236,0.05271,0.0511,0.08208,0,0,0,0,0,0,0.05503,0.05538,0.05372,0.08553,0,0,0,0,0,0,0.04943,0.04977,0.04821,0.07815,0,0,0,0,0,0,0.05447,0.05481,0.05316,0.08477,0,0,0,0,0,0,0.05153,0.05186,0.05026,0.08085,0,0,0,0,0,0,0.05176,0.05211,0.05051,0.08128,0,0,0,0,0,0,0.05316,0.0535,0.05188,0.08311,0,0,0,0,0,0,0.05312,0.05348,0.05186,0.0832,0,0,0,0,0,0,0.03105,0.03137,0.02992,0.05816,0,0,0,0,0,0,0.03137,0.0317,0.03022,0.05871,0,0,0,0,0,0,0.03229,0.03262,0.03108,0.06035,0,0,0,0,0,0,0.0303,0.03061,0.02918,0.05671,0,0,0,0,0,0,0.03209,0.03241,0.03088,0.05997,0,0,0,0,0,0,0.03102,0.03133,0.02986,0.05801,0,0,0,0,0,0,0.03115,0.03147,0.03,0.0583,0,0,0,0,0,0,0.03165,0.03197,0.03048,0.05921,0,0,0,0,0,0,0.03169,0.03202,0.03054,0.05936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH40E,1995,0.02043,0.02043,0,0,0,0,0,0,0,0,0.02113,0.02113,0,0,0,0,0,0,0,0,0.02314,0.02314,0,0,0,0,0,0,0,0,0.01901,0.01901,0,0,0,0,0,0,0,0,0.02273,0.02273,0,0,0,0,0,0,0,0,0.02058,0.02058,0,0,0,0,0,0,0,0,0.0207,0.0207,0,0,0,0,0,0,0,0,0.02172,0.02172,0,0,0,0,0,0,0,0,0.02163,0.02163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.00078,0.00085,0.00312,0,0,0,0,0,0,0.00051,0.00079,0.00086,0.00319,0,0,0,0,0,0,0.00052,0.00081,0.00088,0.0034,0,0,0,0,0,0,0.00049,0.00076,0.00083,0.00295,0,0,0,0,0,0,0.00052,0.0008,0.00087,0.00335,0,0,0,0,0,0,0.0005,0.00078,0.00085,0.00311,0,0,0,0,0,0,0.0005,0.00078,0.00085,0.00314,0,0,0,0,0,0,0.00051,0.00079,0.00086,0.00325,0,0,0,0,0,0,0.00051,0.0008,0.00087,0.00327,0,0,0,0,0,0,0.02421,0.02623,0.0268,0.04029,0,0,0,0,0,0,0.02491,0.02694,0.02751,0.0411,0,0,0,0,0,0,0.02693,0.029,0.02957,0.04344,0,0,0,0,0,0,0.02276,0.02473,0.0253,0.03851,0,0,0,0,0,0,0.02651,0.02858,0.02914,0.04294,0,0,0,0,0,0,0.02434,0.02634,0.0269,0.04034,0,0,0,0,0,0,0.02447,0.02649,0.02707,0.04057,0,0,0,0,0,0,0.02551,0.02755,0.02813,0.0418,0,0,0,0,0,0,0.02543,0.02749,0.02808,0.04179,0,0,0,0,0,0,0.00601,0.00787,0.0084,0.02081,0,0,0,0,0,0,0.00612,0.00799,0.00852,0.02101,0,0,0,0,0,0,0.00644,0.00835,0.00887,0.02163,0,0,0,0,0,0,0.00576,0.00757,0.00809,0.02025,0,0,0,0,0,0,0.00637,0.00827,0.00879,0.02148,0,0,0,0,0,0,0.00601,0.00785,0.00837,0.02074,0,0,0,0,0,0,0.00605,0.0079,0.00843,0.02086,0,0,0,0,0,0,0.00622,0.0081,0.00862,0.0212,0,0,0,0,0,0,0.00622,0.00811,0.00865,0.02127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH40E,2000,0.02043,0.02487,0.02724,0,0,0,0,0,0,0,0.02113,0.02494,0.02695,0,0,0,0,0,0,0,0.02314,0.02742,0.02971,0,0,0,0,0,0,0,0.01901,0.02376,0.02632,0,0,0,0,0,0,0,0.02273,0.02486,0.02594,0,0,0,0,0,0,0,0.02058,0.02309,0.02455,0,0,0,0,0,0,0,0.0207,0.02274,0.02376,0,0,0,0,0,0,0,0.02173,0.02467,0.02621,0,0,0,0,0,0,0,0.02164,0.0237,0.02472,0,0,0,0,0,0,0,0,0.08591,0.09421,0,0,0,0,0,0,0,0,0.08276,0.09242,0,0,0,0,0,0,0,0,0.09805,0.10841,0,0,0,0,0,0,0,0,0.10218,0.1123,0,0,0,0,0,0,0,0,0.08874,0.09933,0,0,0,0,0,0,0,0,0.09346,0.10371,0,0,0,0,0,0,0,0,0.09021,0.09773,0,0,0,0,0,0,0,0,0.08919,0.09821,0,0,0,0,0,0,0,0,0.07849,0.08693,0,0,0,0,0,0,0,0,7.78215,9.82226,0,0,0,0,0,0,0,0,7.62771,9.75559,0,0,0,0,0,0,0,0,8.73402,11.10084,0,0,0,0,0,0,0,0,9.24196,11.6742,0,0,0,0,0,0,0,0,8.28078,10.57589,0,0,0,0,0,0,0,0,8.60315,10.99851,0,0,0,0,0,0,0,0,8.61435,10.69441,0,0,0,0,0,0,0,0,8.21531,10.37856,0,0,0,0,0,0,0,0,7.10919,9.02863,0,0,0,0,0,0,0,0,261.00017,264.90481,0,0,0,0,0,0,0,0,263.0204,266.64274,0,0,0,0,0,0,0,0,266.87788,270.68919,0,0,0,0,0,0,0,0,260.6615,264.47347,0,0,0,0,0,0,0,0,267.11088,269.74742,0,0,0,0,0,0,0,0,262.82174,266.64088,0,0,0,0,0,0,0,0,265.00829,267.52947,0,0,0,0,0,0,0,0,265.14905,268.21116,0,0,0,0,0,0,0,0,261.14206,263.94131,0,0,0,0,0,0,0,0,0.02346,0.02802,0,0,0,0,0,0,0,0,0.02352,0.02806,0,0,0,0,0,0,0,0,0.02398,0.02853,0,0,0,0,0,0,0,0,0.02295,0.02744,0,0,0,0,0,0,0,0,0.02385,0.0284,0,0,0,0,0,0,0,0,0.02327,0.02778,0,0,0,0,0,0,0,0,0.02346,0.028,0,0,0,0,0,0,0,0,0.02372,0.02828,0,0,0,0,0,0,0,0,0.02389,0.02849,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04102,0.04102,0,0,0,0,0,0,0,0,0.04101,0.04101,0,0,0,0,0,0,0,0,0.0408,0.0408,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04084,0.04084,0,0,0,0,0,0,0,0,0.04095,0.04095,0,0,0,0,0,0,0,0,0.04103,0.04104,0,0,0,0,0,0,0,0,0.04113,0.04113,0,0,0,0,0,0,0,0,1.02389,1.24637,0,0,0,0,0,0,0,0,1.01104,1.24595,0,0,0,0,0,0,0,0,1.13021,1.38047,0,0,0,0,0,0,0,0,1.17013,1.42306,0,0,0,0,0,0,0,0,1.1028,1.3579,0,0,0,0,0,0,0,0,1.13427,1.38158,0,0,0,0,0,0,0,0,1.12308,1.34762,0,0,0,0,0,0,0,0,1.16663,1.40858,0,0,0,0,0,0,0,0,1.04744,1.27405,0,0,0,0,0,0,0,0,0.00947,0.0134,0.00051,0.00076,0.0008,0.00128,0,0,0,0,0.00828,0.01168,0.00051,0.00077,0.00081,0.00129,0,0,0,0,0.00897,0.01273,0.00053,0.00078,0.00083,0.00134,0,0,0,0,0.00981,0.01396,0.0005,0.00074,0.00079,0.00123,0,0,0,0,0.00496,0.00694,0.00052,0.00078,0.00082,0.00133,0,0,0,0,0.00571,0.00831,0.00051,0.00076,0.0008,0.00127,0,0,0,0,0.00488,0.0068,0.00051,0.00076,0.00081,0.00128,0,0,0,0,0.00658,0.00926,0.00052,0.00077,0.00082,0.00131,0,0,0,0,0.005,0.00696,0.00052,0.00078,0.00082,0.00132,0,0,0,0,0.04066,0.04951,0.02426,0.02606,0.02642,0.0295,0,0,0,0,0.03875,0.04638,0.02496,0.02677,0.02713,0.03023,0,0,0,0,0.04238,0.05085,0.02699,0.02883,0.02919,0.03233,0,0,0,0,0.04011,0.04949,0.02281,0.02456,0.02492,0.02795,0,0,0,0,0.03316,0.0375,0.02657,0.02841,0.02877,0.03189,0,0,0,0,0.03263,0.03849,0.02439,0.02617,0.02653,0.02959,0,0,0,0,0.0309,0.0351,0.02453,0.02632,0.02668,0.02977,0,0,0,0,0.03567,0.04162,0.02556,0.02738,0.02774,0.03085,0,0,0,0,0.03207,0.03634,0.02549,0.02732,0.02769,0.03082,0,0,0,0,0.02056,0.02839,0.00606,0.00771,0.00804,0.01088,0,0,0,0,0.01834,0.02509,0.00617,0.00783,0.00816,0.01101,0,0,0,0,0.02002,0.02752,0.00649,0.00819,0.00852,0.01141,0,0,0,0,0.02115,0.02945,0.00581,0.00742,0.00774,0.01053,0,0,0,0,0.01218,0.01602,0.00642,0.00811,0.00844,0.01132,0,0,0,0,0.01334,0.01846,0.00606,0.0077,0.00803,0.01084,0,0,0,0,0.01172,0.01544,0.0061,0.00775,0.00808,0.01092,0,0,0,0,0.01516,0.02042,0.00627,0.00794,0.00827,0.01113,0,0,0,0,0.01205,0.01582,0.00627,0.00795,0.00829,0.01118,0,0,0,0,0.00854,0.00765,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00874,0.00782,0,0,0,0,0,0,0,0,0.00853,0.00764,0,0,0,0,0,0,0,0,0.00875,0.00779,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00868,0.00773,0,0,0,0,0,0,0,0,0.00868,0.00774,0,0,0,0,0,0,0,0,0.00855,0.00762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Large SUV,PH40E,2005,0.02044,0.02234,0.02327,0.02545,0,0,0,0,0,0,0.02114,0.0228,0.02359,0.02545,0,0,0,0,0,0,0.02315,0.025,0.0259,0.02802,0,0,0,0,0,0,0.01902,0.02104,0.02204,0.0244,0,0,0,0,0,0,0.02274,0.02374,0.02421,0.02523,0,0,0,0,0,0,0.02059,0.02174,0.02234,0.02349,0,0,0,0,0,0,0.02071,0.02168,0.02212,0.02309,0,0,0,0,0,0,0.02174,0.02306,0.02369,0.02511,0,0,0,0,0,0,0.02165,0.02262,0.02307,0.02404,0,0,0,0,0,0,0,0.0359,0.03062,0.03951,0,0,0,0,0,0,0,0.03297,0.02908,0.03777,0,0,0,0,0,0,0,0.03903,0.03422,0.04605,0,0,0,0,0,0,0,0.04109,0.03597,0.04809,0,0,0,0,0,0,0,0.02919,0.02747,0.03834,0,0,0,0,0,0,0,0.03202,0.02982,0.04094,0,0,0,0,0,0,0,0.02924,0.02689,0.03741,0,0,0,0,0,0,0,0.03227,0.02888,0.03911,0,0,0,0,0,0,0,0.02606,0.02396,0.03218,0,0,0,0,0,0,0,3.06958,3.97449,5.89445,0,0,0,0,0,0,0,3.00119,3.98151,5.87501,0,0,0,0,0,0,0,3.37182,4.55669,6.87894,0,0,0,0,0,0,0,3.54369,4.79704,7.21369,0,0,0,0,0,0,0,3.29974,4.52386,6.69599,0,0,0,0,0,0,0,3.36531,4.6374,6.855,0,0,0,0,0,0,0,3.43558,4.59153,6.76434,0,0,0,0,0,0,0,3.27381,4.3573,6.44735,0,0,0,0,0,0,0,2.91823,3.85626,5.59558,0,0,0,0,0,0,0,270.64382,273.57988,276.92053,0,0,0,0,0,0,0,272.90701,275.63443,278.61134,0,0,0,0,0,0,0,276.6806,279.5484,282.76808,0,0,0,0,0,0,0,270.43103,273.3014,276.53414,0,0,0,0,0,0,0,277.73713,279.73599,281.45473,0,0,0,0,0,0,0,273.20109,276.31685,277.4774,0,0,0,0,0,0,0,275.7438,277.659,279.23118,0,0,0,0,0,0,0,275.47141,277.78504,280.04424,0,0,0,0,0,0,0,271.47263,273.58606,275.50201,0,0,0,0,0,0,0,0.00482,0.00571,0.01096,0,0,0,0,0,0,0,0.00483,0.00571,0.01096,0,0,0,0,0,0,0,0.0049,0.00578,0.0111,0,0,0,0,0,0,0,0.00473,0.0056,0.01076,0,0,0,0,0,0,0,0.00488,0.00576,0.01105,0,0,0,0,0,0,0,0.00478,0.00565,0.01085,0,0,0,0,0,0,0,0.00482,0.0057,0.01094,0,0,0,0,0,0,0,0.00486,0.00575,0.01103,0,0,0,0,0,0,0,0.0049,0.00579,0.01112,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01343,0.01682,0.01992,0,0,0,0,0,0,0,0.01342,0.01681,0.01991,0,0,0,0,0,0,0,0.01335,0.01672,0.01981,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01337,0.01674,0.01983,0,0,0,0,0,0,0,0.0134,0.01678,0.01988,0,0,0,0,0,0,0,0.01343,0.01682,0.01993,0,0,0,0,0,0,0,0.01346,0.01686,0.01997,0,0,0,0,0,0,0,0.43908,0.58658,0.61355,0,0,0,0,0,0,0,0.42722,0.58465,0.61023,0,0,0,0,0,0,0,0.48091,0.64701,0.68945,0,0,0,0,0,0,0,0.5039,0.67625,0.71819,0,0,0,0,0,0,0,0.46401,0.63147,0.67553,0,0,0,0,0,0,0,0.48199,0.6483,0.69019,0,0,0,0,0,0,0,0.47636,0.6313,0.66914,0,0,0,0,0,0,0,0.49939,0.66447,0.69498,0,0,0,0,0,0,0,0.44777,0.59895,0.62117,0,0,0,0,0,0,0,0.0041,0.0056,0.00914,0.00048,0.0007,0.00073,0.00084,0,0,0,0.00366,0.005,0.00809,0.00048,0.00071,0.00074,0.00085,0,0,0,0.00395,0.00541,0.0088,0.00049,0.00073,0.00076,0.00087,0,0,0,0.00422,0.00579,0.00952,0.00046,0.00069,0.00072,0.00082,0,0,0,0.00245,0.00334,0.00519,0.00049,0.00072,0.00075,0.00086,0,0,0,0.00271,0.0038,0.00583,0.00047,0.0007,0.00073,0.00084,0,0,0,0.00241,0.00328,0.00508,0.00048,0.00071,0.00073,0.00084,0,0,0,0.00304,0.00415,0.00661,0.00048,0.00072,0.00075,0.00086,0,0,0,0.00247,0.00336,0.00519,0.00049,0.00072,0.00075,0.00086,0,0,0,0.02917,0.03256,0.04053,0.02399,0.02562,0.02585,0.02677,0,0,0,0.0289,0.03189,0.0388,0.02469,0.02633,0.02657,0.02748,0,0,0,0.03158,0.03488,0.04254,0.02672,0.0284,0.02864,0.02954,0,0,0,0.02806,0.03163,0.04008,0.02255,0.02413,0.02437,0.02527,0,0,0,0.02784,0.02978,0.03383,0.0263,0.02798,0.02821,0.02912,0,0,0,0.02625,0.02876,0.03312,0.02413,0.02575,0.02598,0.02687,0,0,0,0.0257,0.02759,0.03151,0.02426,0.02589,0.02612,0.02703,0,0,0,0.02813,0.03059,0.03603,0.02529,0.02695,0.02718,0.02809,0,0,0,0.02675,0.02867,0.03264,0.02521,0.02687,0.02711,0.02804,0,0,0,0.01039,0.01339,0.02044,0.00581,0.00731,0.00752,0.00837,0,0,0,0.00962,0.01227,0.01838,0.00592,0.00743,0.00765,0.00849,0,0,0,0.01047,0.01339,0.02016,0.00625,0.00779,0.00801,0.00885,0,0,0,0.01049,0.01365,0.02112,0.00556,0.00702,0.00724,0.00806,0,0,0,0.00747,0.00919,0.01277,0.00618,0.00771,0.00793,0.00876,0,0,0,0.0077,0.00984,0.01378,0.00582,0.00731,0.00752,0.00834,0,0,0,0.00712,0.00879,0.01226,0.00585,0.00735,0.00756,0.0084,0,0,0,0.00849,0.01067,0.01548,0.00602,0.00754,0.00776,0.0086,0,0,0,0.00733,0.00903,0.01255,0.00602,0.00754,0.00777,0.00862,0,0,0,0.00886,0.0079,0.00267,0,0,0,0,0,0,0,0.00894,0.00796,0.00268,0,0,0,0,0,0,0,0.00906,0.00807,0.00272,0,0,0,0,0,0,0,0.00885,0.00789,0.00266,0,0,0,0,0,0,0,0.00909,0.00808,0.00271,0,0,0,0,0,0,0,0.00895,0.00798,0.00267,0,0,0,0,0,0,0,0.00903,0.00802,0.00269,0,0,0,0,0,0,0,0.00902,0.00802,0.0027,0,0,0,0,0,0,0,0.00889,0.0079,0.00265,0,0,0,0,0,0,0,0.19151,0.26704,0.26689,0,0,0,0,0,0,0,0.17299,0.24778,0.24653,0,0,0,0,0,0,0,0.20315,0.28985,0.28676,0,0,0,0,0,0,0,0.21493,0.30599,0.30157,0,0,0,0,0,0,0,0.13524,0.20893,0.2018,0,0,0,0,0,0,0,0.15239,0.23364,0.22243,0,0,0,0,0,0,0,0.13329,0.20216,0.19483,0,0,0,0,0,0,0,0.15848,0.2321,0.22729,0,0,0,0,0,0,0,0.12057,0.18285,0.17688,0,0,0,0,0,0 +Large SUV,PH40E,2010,0,0.02122,0.0219,0.02259,0.02465,0,0,0,0,0,0,0.02183,0.02243,0.02302,0.02479,0,0,0,0,0,0,0.02392,0.02458,0.02525,0.02726,0,0,0,0,0,0,0.01985,0.02058,0.02132,0.02355,0,0,0,0,0,0,0.0232,0.02359,0.02395,0.02496,0,0,0,0,0,0,0.0211,0.02156,0.02195,0.02313,0,0,0,0,0,0,0.02116,0.02153,0.02188,0.02283,0,0,0,0,0,0,0.02231,0.0228,0.02327,0.02465,0,0,0,0,0,0,0.0221,0.02247,0.02282,0.02377,0,0,0,0,0,0,0.02338,0.0167,0.01262,0.02073,0,0,0,0,0,0,0.02039,0.01518,0.0116,0.01941,0,0,0,0,0,0,0.02288,0.01789,0.0137,0.0237,0,0,0,0,0,0,0.02542,0.01978,0.01508,0.0254,0,0,0,0,0,0,0.01369,0.01296,0.01032,0.01884,0,0,0,0,0,0,0.01531,0.01437,0.01116,0.0203,0,0,0,0,0,0,0.0134,0.01278,0.01018,0.01844,0,0,0,0,0,0,0.01711,0.01446,0.01122,0.01967,0,0,0,0,0,0,0.01316,0.01179,0.0092,0.01595,0,0,0,0,0,0,1.24201,2.06766,2.78621,4.17569,0,0,0,0,0,0,1.18144,2.0444,2.76907,4.14896,0,0,0,0,0,0,1.243,2.26626,3.14631,4.87863,0,0,0,0,0,0,1.32871,2.42663,3.37624,5.18617,0,0,0,0,0,0,1.09365,2.16139,3.02966,4.69862,0,0,0,0,0,0,1.12885,2.24229,3.11093,4.845,0,0,0,0,0,0,1.14005,2.22436,3.10587,4.77564,0,0,0,0,0,0,1.16388,2.16276,2.97703,4.54908,0,0,0,0,0,0,1.02317,1.91247,2.59965,3.91145,0,0,0,0,0,0,251.68816,252.76145,255.00028,263.33105,0,0,0,0,0,0,253.90584,254.8429,256.85844,264.8602,0,0,0,0,0,0,257.37277,258.38255,260.53624,268.83693,0,0,0,0,0,0,251.53745,252.55975,254.73651,262.96542,0,0,0,0,0,0,258.77585,259.24577,260.49114,267.30263,0,0,0,0,0,0,254.43996,255.88196,256.5147,263.61767,0,0,0,0,0,0,256.95866,257.37817,258.54227,265.18528,0,0,0,0,0,0,256.5045,257.17661,258.75481,266.07739,0,0,0,0,0,0,252.83469,253.41103,254.78376,261.68608,0,0,0,0,0,0,0.00428,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00429,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00436,0.0049,0.00585,0.00838,0,0,0,0,0,0,0.00419,0.00472,0.00567,0.00814,0,0,0,0,0,0,0.00434,0.00487,0.00583,0.00834,0,0,0,0,0,0,0.00424,0.00478,0.00572,0.0082,0,0,0,0,0,0,0.00428,0.00481,0.00577,0.00827,0,0,0,0,0,0,0.00432,0.00486,0.00581,0.00833,0,0,0,0,0,0,0.00435,0.0049,0.00586,0.0084,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00891,0.01023,0.01333,0.01478,0,0,0,0,0,0,0.00886,0.01017,0.01326,0.0147,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00887,0.01018,0.01328,0.01471,0,0,0,0,0,0,0.00889,0.01021,0.01331,0.01475,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00893,0.01025,0.01337,0.01482,0,0,0,0,0,0,0.07206,0.12572,0.12615,0.27042,0,0,0,0,0,0,0.06948,0.12456,0.12482,0.26791,0,0,0,0,0,0,0.07098,0.13713,0.13643,0.30571,0,0,0,0,0,0,0.07345,0.14552,0.14367,0.32149,0,0,0,0,0,0,0.06525,0.13052,0.12942,0.29622,0,0,0,0,0,0,0.0681,0.13603,0.13434,0.3049,0,0,0,0,0,0,0.06732,0.13151,0.13009,0.29362,0,0,0,0,0,0,0.07348,0.14044,0.13743,0.3051,0,0,0,0,0,0,0.06785,0.12633,0.12362,0.26931,0,0,0,0,0,0,0.00141,0.0025,0.00348,0.00666,0.00047,0.0007,0.00073,0.0008,0,0,0.00132,0.00232,0.00322,0.00602,0.00048,0.00071,0.00074,0.00081,0,0,0.00138,0.00245,0.00341,0.00649,0.00049,0.00073,0.00076,0.00083,0,0,0.00144,0.00257,0.0036,0.00694,0.00046,0.00069,0.00072,0.00078,0,0,0.00109,0.00188,0.00255,0.00432,0.00049,0.00072,0.00075,0.00082,0,0,0.00113,0.00199,0.00268,0.00468,0.00047,0.0007,0.00073,0.0008,0,0,0.00108,0.00187,0.00253,0.00424,0.00048,0.00071,0.00073,0.0008,0,0,0.0012,0.0021,0.00288,0.00515,0.00048,0.00072,0.00074,0.00082,0,0,0.0011,0.0019,0.00257,0.00431,0.00048,0.00072,0.00075,0.00082,0,0,0.02354,0.02602,0.02829,0.03557,0.02399,0.02562,0.02585,0.02644,0,0,0.02401,0.02626,0.02831,0.03467,0.02469,0.02633,0.02657,0.02715,0,0,0.0262,0.02862,0.03086,0.03791,0.02671,0.0284,0.02864,0.02921,0,0,0.02222,0.02481,0.02721,0.03492,0.02254,0.02413,0.02437,0.02494,0,0,0.02501,0.02671,0.02818,0.03209,0.0263,0.02797,0.02821,0.02879,0,0,0.02297,0.02495,0.02637,0.03083,0.02412,0.02574,0.02598,0.02655,0,0,0.02295,0.02463,0.02606,0.02984,0.02425,0.02589,0.02612,0.0267,0,0,0.0243,0.02628,0.02803,0.03313,0.02529,0.02694,0.02718,0.02776,0,0,0.02393,0.02563,0.02707,0.0309,0.02521,0.02687,0.02711,0.0277,0,0,0.00541,0.0076,0.00962,0.01606,0.0058,0.0073,0.00752,0.00806,0,0,0.00529,0.00729,0.0091,0.01473,0.00592,0.00743,0.00765,0.00818,0,0,0.0057,0.00785,0.00983,0.01607,0.00624,0.00779,0.00801,0.00854,0,0,0.00533,0.00761,0.00974,0.01656,0.00556,0.00702,0.00723,0.00776,0,0,0.00497,0.00648,0.00777,0.01123,0.00617,0.00771,0.00793,0.00846,0,0,0.0048,0.00648,0.00781,0.01175,0.00581,0.0073,0.00752,0.00804,0,0,0.00469,0.00617,0.00743,0.01078,0.00584,0.00735,0.00756,0.0081,0,0,0.0051,0.00685,0.0084,0.01292,0.00601,0.00754,0.00776,0.00829,0,0,0.00484,0.00635,0.00762,0.01101,0.00601,0.00754,0.00777,0.00831,0,0,0.00824,0.0073,0.00245,0.00253,0,0,0,0,0,0,0.00831,0.00736,0.00247,0.00255,0,0,0,0,0,0,0.00843,0.00746,0.00251,0.00259,0,0,0,0,0,0,0.00824,0.00729,0.00245,0.00253,0,0,0,0,0,0,0.00847,0.00749,0.00251,0.00257,0,0,0,0,0,0,0.00833,0.00739,0.00247,0.00254,0,0,0,0,0,0,0.00841,0.00743,0.00249,0.00255,0,0,0,0,0,0,0.0084,0.00743,0.00249,0.00256,0,0,0,0,0,0,0.00828,0.00732,0.00245,0.00252,0,0,0,0,0,0,0.05871,0.08831,0.12093,0.19643,0,0,0,0,0,0,0.04982,0.078,0.10868,0.17888,0,0,0,0,0,0,0.05751,0.09267,0.12909,0.21532,0,0,0,0,0,0,0.06458,0.10288,0.14222,0.23284,0,0,0,0,0,0,0.02958,0.05926,0.089,0.15278,0,0,0,0,0,0,0.03428,0.06739,0.09728,0.16751,0,0,0,0,0,0,0.02817,0.05714,0.08626,0.14767,0,0,0,0,0,0,0.03969,0.0699,0.10063,0.16926,0,0,0,0,0,0,0.02788,0.0536,0.07928,0.13148,0,0,0,0,0 +Large SUV,PH40E,2015,0,0,0.02114,0.02163,0.02227,0.02375,0,0,0,0,0,0,0.02177,0.02222,0.02279,0.02408,0,0,0,0,0,0,0.02384,0.02432,0.02495,0.0264,0,0,0,0,0,0,0.01975,0.02027,0.02095,0.02254,0,0,0,0,0,0,0.02319,0.0235,0.02388,0.02467,0,0,0,0,0,0,0.02109,0.02142,0.02185,0.02275,0,0,0,0,0,0,0.02115,0.02145,0.02182,0.02258,0,0,0,0,0,0,0.02228,0.02265,0.02313,0.02416,0,0,0,0,0,0,0.02209,0.02239,0.02276,0.02352,0,0,0,0,0,0,0.01769,0.01184,0.01086,0.01351,0,0,0,0,0,0,0.01621,0.01102,0.01029,0.01277,0,0,0,0,0,0,0.01757,0.01284,0.012,0.01516,0,0,0,0,0,0,0.01894,0.01391,0.01297,0.01629,0,0,0,0,0,0,0.01218,0.0099,0.00989,0.01242,0,0,0,0,0,0,0.01354,0.01069,0.01056,0.01329,0,0,0,0,0,0,0.01207,0.00978,0.00983,0.01228,0,0,0,0,0,0,0.01427,0.01076,0.01036,0.01294,0,0,0,0,0,0,0.01184,0.00903,0.00885,0.01086,0,0,0,0,0,0,1.06585,1.87228,2.5264,3.37666,0,0,0,0,0,0,1.06133,1.8782,2.54837,3.39425,0,0,0,0,0,0,1.09386,2.0725,2.88372,3.91217,0,0,0,0,0,0,1.16667,2.21507,3.08998,4.16638,0,0,0,0,0,0,1.04316,2.06494,2.89829,3.88669,0,0,0,0,0,0,1.0728,2.10017,2.95575,3.98335,0,0,0,0,0,0,1.08737,2.13373,2.98394,3.98315,0,0,0,0,0,0,1.07203,2.03104,2.80168,3.74498,0,0,0,0,0,0,0.97714,1.82965,2.49076,3.28714,0,0,0,0,0,0,206.172,207.35138,209.28388,220.83232,0,0,0,0,0,0,207.8999,208.94056,210.67931,221.99325,0,0,0,0,0,0,210.77627,211.89723,213.75599,225.38035,0,0,0,0,0,0,206.03672,207.17221,209.05229,220.5159,0,0,0,0,0,0,211.59306,212.15653,213.22582,223.6341,0,0,0,0,0,0,208.8257,208.84306,210.10747,220.68251,0,0,0,0,0,0,210.09123,210.604,211.60344,221.84049,0,0,0,0,0,0,209.86266,210.63227,211.99093,222.78494,0,0,0,0,0,0,206.78067,207.43631,208.61466,218.98934,0,0,0,0,0,0,0.00283,0.00324,0.00385,0.00537,0,0,0,0,0,0,0.00283,0.00325,0.00385,0.00536,0,0,0,0,0,0,0.00288,0.00329,0.0039,0.00542,0,0,0,0,0,0,0.00277,0.00318,0.00378,0.00528,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.0054,0,0,0,0,0,0,0.00281,0.00321,0.00381,0.00531,0,0,0,0,0,0,0.00283,0.00324,0.00384,0.00536,0,0,0,0,0,0,0.00286,0.00327,0.00387,0.0054,0,0,0,0,0,0,0.00288,0.0033,0.00391,0.00545,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01352,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01351,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01344,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01346,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01349,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01352,0,0,0,0,0,0,0.00894,0.0104,0.01338,0.01355,0,0,0,0,0,0,0.06399,0.07869,0.11485,0.16359,0,0,0,0,0,0,0.06373,0.07766,0.11367,0.16186,0,0,0,0,0,0,0.06444,0.08526,0.12396,0.17958,0,0,0,0,0,0,0.06723,0.09016,0.13093,0.18936,0,0,0,0,0,0,0.05908,0.0795,0.11696,0.17082,0,0,0,0,0,0,0.06201,0.08307,0.1218,0.17721,0,0,0,0,0,0,0.06053,0.07996,0.11781,0.17092,0,0,0,0,0,0,0.06637,0.08557,0.12471,0.17928,0,0,0,0,0,0,0.06136,0.07675,0.11198,0.15963,0,0,0,0,0,0,0.00135,0.00221,0.00318,0.00524,0.00047,0.0007,0.00073,0.00079,0,0,0.00128,0.00209,0.00299,0.00485,0.00048,0.00071,0.00074,0.0008,0,0,0.00132,0.00217,0.00312,0.00514,0.00049,0.00073,0.00076,0.00081,0,0,0.00136,0.00224,0.00324,0.00539,0.00046,0.00069,0.00072,0.00077,0,0,0.0011,0.00178,0.00249,0.00382,0.00049,0.00072,0.00075,0.00081,0,0,0.00114,0.00184,0.00259,0.00403,0.00047,0.0007,0.00073,0.00078,0,0,0.00109,0.00177,0.00248,0.00378,0.00048,0.00071,0.00073,0.00079,0,0,0.00119,0.00194,0.00274,0.00433,0.00048,0.00072,0.00074,0.0008,0,0,0.00112,0.00181,0.00252,0.00384,0.00048,0.00072,0.00075,0.0008,0,0,0.02336,0.02527,0.0275,0.03234,0.02398,0.02562,0.02585,0.02632,0,0,0.02389,0.02567,0.02771,0.03204,0.02469,0.02633,0.02657,0.02703,0,0,0.02602,0.0279,0.03009,0.03483,0.02671,0.0284,0.02864,0.0291,0,0,0.02199,0.02395,0.02626,0.03137,0.02254,0.02413,0.02437,0.02482,0,0,0.02502,0.02645,0.02801,0.03098,0.0263,0.02797,0.02821,0.02867,0,0,0.02307,0.02446,0.02612,0.02939,0.02412,0.02574,0.02598,0.02643,0,0,0.02297,0.02439,0.02592,0.02882,0.02425,0.02589,0.02612,0.02658,0,0,0.02425,0.02586,0.02765,0.03129,0.02529,0.02694,0.02718,0.02764,0,0,0.02395,0.02539,0.02694,0.02986,0.02521,0.02687,0.02711,0.02758,0,0,0.00526,0.00695,0.00892,0.0132,0.0058,0.0073,0.00752,0.00795,0,0,0.00519,0.00677,0.00857,0.0124,0.00592,0.00743,0.00765,0.00807,0,0,0.00555,0.00722,0.00915,0.01334,0.00624,0.00779,0.00801,0.00843,0,0,0.00513,0.00686,0.0089,0.01342,0.00556,0.00702,0.00723,0.00765,0,0,0.00498,0.00624,0.00762,0.01025,0.00617,0.00771,0.00793,0.00835,0,0,0.00482,0.00611,0.00758,0.01048,0.00581,0.0073,0.00752,0.00794,0,0,0.00471,0.00596,0.00732,0.00988,0.00584,0.00735,0.00756,0.00799,0,0,0.00506,0.00648,0.00807,0.01129,0.00601,0.00754,0.00776,0.00818,0,0,0.00486,0.00614,0.00751,0.01009,0.00601,0.00754,0.00777,0.0082,0,0,0.00595,0.002,0.00201,0.00213,0,0,0,0,0,0,0.006,0.00201,0.00203,0.00214,0,0,0,0,0,0,0.00609,0.00204,0.00206,0.00217,0,0,0,0,0,0,0.00595,0.00199,0.00201,0.00212,0,0,0,0,0,0,0.00611,0.00204,0.00205,0.00215,0,0,0,0,0,0,0.00603,0.00201,0.00202,0.00212,0,0,0,0,0,0,0.00607,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00606,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00597,0.002,0.00201,0.00211,0,0,0,0,0,0,0.04424,0.06581,0.10044,0.14844,0,0,0,0,0,0,0.03937,0.06001,0.09344,0.13789,0,0,0,0,0,0,0.04392,0.07025,0.10941,0.16373,0,0,0,0,0,0,0.0477,0.07595,0.1177,0.17568,0,0,0,0,0,0,0.02657,0.0497,0.08413,0.12553,0,0,0,0,0,0,0.03069,0.05425,0.09041,0.13525,0,0,0,0,0,0,0.02571,0.04828,0.08234,0.12249,0,0,0,0,0,0,0.03299,0.05606,0.09077,0.13473,0,0,0,0,0,0,0.02537,0.04518,0.07533,0.11005,0,0,0,0 +Large SUV,PH40E,2020,0,0,0,0.02102,0.02144,0.02186,0.02328,0,0,0,0,0,0,0.02167,0.02204,0.02242,0.02367,0,0,0,0,0,0,0.02372,0.02413,0.02454,0.02594,0,0,0,0,0,0,0.01963,0.02006,0.02051,0.02202,0,0,0,0,0,0,0.02313,0.02339,0.02364,0.02444,0,0,0,0,0,0,0.02101,0.0213,0.02157,0.02248,0,0,0,0,0,0,0.02109,0.02134,0.02158,0.02236,0,0,0,0,0,0,0.02219,0.02251,0.02282,0.02385,0,0,0,0,0,0,0.02203,0.02228,0.02252,0.0233,0,0,0,0,0,0,0.01354,0.0098,0.00833,0.01062,0,0,0,0,0,0,0.01217,0.00901,0.00778,0.00999,0,0,0,0,0,0,0.01345,0.01051,0.00909,0.01202,0,0,0,0,0,0,0.0146,0.01144,0.00987,0.01298,0,0,0,0,0,0,0.00842,0.00765,0.00705,0.00961,0,0,0,0,0,0,0.00942,0.00837,0.00763,0.01038,0,0,0,0,0,0,0.00823,0.00753,0.00699,0.00949,0,0,0,0,0,0,0.01032,0.00854,0.0076,0.01008,0,0,0,0,0,0,0.00806,0.00694,0.0063,0.00827,0,0,0,0,0,0,0.841,1.26915,1.60175,2.45808,0,0,0,0,0,0,0.83235,1.26237,1.59891,2.46352,0,0,0,0,0,0,0.86647,1.39384,1.80633,2.90832,0,0,0,0,0,0,0.92767,1.49841,1.95027,3.11915,0,0,0,0,0,0,0.80832,1.3525,1.762,2.85111,0,0,0,0,0,0,0.8267,1.38518,1.81173,2.94929,0,0,0,0,0,0,0.83997,1.39856,1.8175,2.92159,0,0,0,0,0,0,0.83593,1.34562,1.72839,2.74289,0,0,0,0,0,0,0.75335,1.20003,1.5207,2.36432,0,0,0,0,0,0,175.01937,176.18597,178.13058,193.50908,0,0,0,0,0,0,176.41093,177.4624,179.2388,194.39966,0,0,0,0,0,0,178.88919,180.01108,181.89672,197.42854,0,0,0,0,0,0,174.89643,176.02686,177.9263,193.21809,0,0,0,0,0,0,179.2922,179.94667,181.1386,195.41197,0,0,0,0,0,0,176.44505,177.21392,178.57379,192.96723,0,0,0,0,0,0,178.0014,178.61222,179.74153,193.81421,0,0,0,0,0,0,177.93342,178.75948,180.20369,194.85283,0,0,0,0,0,0,175.24562,175.97234,177.25203,191.40792,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00507,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00506,0,0,0,0,0,0,0.00294,0.00332,0.0039,0.00512,0,0,0,0,0,0,0.00283,0.00321,0.00378,0.00498,0,0,0,0,0,0,0.00293,0.0033,0.00388,0.0051,0,0,0,0,0,0,0.00286,0.00324,0.00381,0.00501,0,0,0,0,0,0,0.00289,0.00327,0.00384,0.00506,0,0,0,0,0,0,0.00292,0.00329,0.00387,0.00509,0,0,0,0,0,0,0.00294,0.00332,0.00391,0.00514,0,0,0,0,0,0,0.0089,0.01036,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01335,0,0,0,0,0,0,0.00893,0.0104,0.01337,0.01337,0,0,0,0,0,0,0.04184,0.06745,0.09067,0.12611,0,0,0,0,0,0,0.04131,0.06645,0.0895,0.12453,0,0,0,0,0,0,0.04219,0.07277,0.09732,0.13872,0,0,0,0,0,0,0.04399,0.07733,0.10334,0.14733,0,0,0,0,0,0,0.03732,0.06705,0.09046,0.13008,0,0,0,0,0,0,0.03946,0.07054,0.09495,0.13604,0,0,0,0,0,0,0.03808,0.06768,0.09146,0.13044,0,0,0,0,0,0,0.04216,0.07285,0.09759,0.13761,0,0,0,0,0,0,0.03836,0.06487,0.08696,0.12108,0,0,0,0,0,0,0.00116,0.00187,0.00248,0.00444,0.00047,0.0007,0.00073,0,0,0,0.0011,0.00178,0.00234,0.00414,0.00048,0.00071,0.00074,0,0,0,0.00114,0.00184,0.00244,0.00437,0.00049,0.00073,0.00076,0,0,0,0.00117,0.00189,0.00252,0.00456,0.00046,0.00069,0.00072,0,0,0,0.00096,0.00152,0.00196,0.00332,0.00049,0.00072,0.00075,0,0,0,0.00098,0.00157,0.00204,0.00349,0.00047,0.0007,0.00073,0,0,0,0.00096,0.00152,0.00195,0.00329,0.00048,0.00071,0.00073,0,0,0,0.00103,0.00165,0.00215,0.00373,0.00048,0.00072,0.00074,0,0,0,0.00098,0.00155,0.00199,0.00334,0.00048,0.00072,0.00075,0,0,0,0.02292,0.02452,0.02594,0.03056,0.02398,0.02562,0.02585,0,0,0,0.02349,0.02497,0.02628,0.03047,0.02468,0.02633,0.02657,0,0,0,0.0256,0.02716,0.02856,0.0331,0.02671,0.0284,0.02864,0,0,0,0.02154,0.02317,0.02464,0.02948,0.02254,0.02413,0.02437,0,0,0,0.02471,0.02591,0.02689,0.02992,0.0263,0.02797,0.02821,0,0,0,0.02263,0.02388,0.02493,0.02822,0.02412,0.02574,0.02598,0,0,0,0.02267,0.02386,0.02482,0.02778,0.02425,0.02589,0.02612,0,0,0,0.0239,0.02524,0.02638,0.02998,0.02528,0.02694,0.02718,0,0,0,0.02364,0.02485,0.02582,0.02881,0.0252,0.02687,0.02711,0,0,0,0.00487,0.00628,0.00754,0.01162,0.0058,0.0073,0.00752,0,0,0,0.00484,0.00615,0.0073,0.01101,0.00591,0.00743,0.00765,0,0,0,0.00517,0.00656,0.00779,0.01181,0.00624,0.00779,0.00801,0,0,0,0.00472,0.00617,0.00747,0.01175,0.00555,0.00702,0.00723,0,0,0,0.00471,0.00576,0.00663,0.00931,0.00617,0.00771,0.00793,0,0,0,0.0045,0.00561,0.00654,0.00945,0.00581,0.0073,0.00752,0,0,0,0.00444,0.00549,0.00634,0.00896,0.00584,0.00735,0.00756,0,0,0,0.00475,0.00593,0.00694,0.01013,0.00601,0.00754,0.00776,0,0,0,0.00459,0.00566,0.00652,0.00916,0.00601,0.00754,0.00777,0,0,0,0.00168,0.0017,0.00171,0.00186,0,0,0,0,0,0,0.0017,0.00171,0.00173,0.00187,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.0019,0,0,0,0,0,0,0.00168,0.00169,0.00171,0.00186,0,0,0,0,0,0,0.00173,0.00173,0.00174,0.00188,0,0,0,0,0,0,0.0017,0.00171,0.00172,0.00186,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00187,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00188,0,0,0,0,0,0,0.00169,0.00169,0.00171,0.00184,0,0,0,0,0,0,0.03737,0.05506,0.07767,0.12087,0,0,0,0,0,0,0.03293,0.04958,0.071,0.11162,0,0,0,0,0,0,0.03715,0.05806,0.08319,0.13463,0,0,0,0,0,0,0.04049,0.06309,0.0901,0.1451,0,0,0,0,0,0,0.02104,0.03831,0.05887,0.10052,0,0,0,0,0,0,0.02414,0.04264,0.06457,0.1094,0,0,0,0,0,0,0.02018,0.03708,0.05735,0.09782,0,0,0,0,0,0,0.02698,0.04475,0.06615,0.10872,0,0,0,0,0,0,0.01982,0.03467,0.05259,0.08655,0,0,0 +Large SUV,PH40E,2025,0,0,0,0,0.02081,0.02106,0.02132,0.02249,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02297,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02517,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02118,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02398,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02196,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02191,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02327,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02285,0,0,0,0,0,0,0.0109,0.00714,0.00577,0.00809,0,0,0,0,0,0,0.00949,0.00634,0.0052,0.00746,0,0,0,0,0,0,0.01077,0.00744,0.00611,0.00905,0,0,0,0,0,0,0.01185,0.00818,0.00669,0.00983,0,0,0,0,0,0,0.00562,0.00454,0.00403,0.00667,0,0,0,0,0,0,0.00663,0.00518,0.00452,0.00734,0,0,0,0,0,0,0.00538,0.00439,0.00393,0.00653,0,0,0,0,0,0,0.00754,0.00552,0.00469,0.00725,0,0,0,0,0,0,0.00526,0.00408,0.00358,0.00568,0,0,0,0,0,0,0.55924,0.81728,1.03671,1.73986,0,0,0,0,0,0,0.54005,0.79705,1.0158,1.72514,0,0,0,0,0,0,0.56885,0.88349,1.14951,2.05204,0,0,0,0,0,0,0.61468,0.95801,1.25055,2.21497,0,0,0,0,0,0,0.48459,0.80212,1.05558,1.94563,0,0,0,0,0,0,0.50553,0.83376,1.09982,2.03116,0,0,0,0,0,0,0.5012,0.82787,1.08717,1.99163,0,0,0,0,0,0,0.52057,0.82155,1.0634,1.89499,0,0,0,0,0,0,0.45222,0.71367,0.91346,1.60498,0,0,0,0,0,0,143.04079,143.7338,145.1575,163.6042,0,0,0,0,0,0,144.10797,144.70004,145.97166,164.23295,0,0,0,0,0,0,146.16792,146.81604,148.18102,166.85421,0,0,0,0,0,0,142.93307,143.59624,144.98185,163.34548,0,0,0,0,0,0,146.22769,146.47435,147.22027,164.67183,0,0,0,0,0,0,143.97903,144.32899,145.22989,162.74385,0,0,0,0,0,0,145.158,145.36996,146.06327,163.29545,0,0,0,0,0,0,145.21935,145.6155,146.58866,164.38042,0,0,0,0,0,0,142.95575,143.26983,144.09837,161.34947,0,0,0,0,0,0,0.00291,0.00327,0.00384,0.00502,0,0,0,0,0,0,0.00291,0.00327,0.00383,0.00501,0,0,0,0,0,0,0.00296,0.00332,0.00388,0.00506,0,0,0,0,0,0,0.00285,0.0032,0.00377,0.00493,0,0,0,0,0,0,0.00295,0.0033,0.00387,0.00504,0,0,0,0,0,0,0.00288,0.00324,0.0038,0.00496,0,0,0,0,0,0,0.00291,0.00326,0.00383,0.00501,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00504,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00509,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.0103,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01031,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01335,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0259,0.03877,0.05185,0.08807,0,0,0,0,0,0,0.02519,0.03773,0.05061,0.08644,0,0,0,0,0,0,0.02591,0.04107,0.05476,0.09685,0,0,0,0,0,0,0.02708,0.04363,0.05811,0.10311,0,0,0,0,0,0,0.02134,0.03579,0.04841,0.08845,0,0,0,0,0,0,0.02312,0.03833,0.05162,0.09337,0,0,0,0,0,0,0.02175,0.03618,0.04899,0.08861,0,0,0,0,0,0,0.02467,0.03969,0.05316,0.09423,0,0,0,0,0,0,0.02178,0.0347,0.04665,0.08168,0,0,0,0,0,0,0.00074,0.00117,0.00155,0.0032,0.00047,0.0007,0,0,0,0,0.00071,0.00111,0.00146,0.00299,0.00048,0.00071,0,0,0,0,0.00073,0.00115,0.00152,0.00315,0.00049,0.00073,0,0,0,0,0.00075,0.00119,0.00158,0.00329,0.00046,0.00069,0,0,0,0,0.00061,0.00095,0.00123,0.0024,0.00049,0.00072,0,0,0,0,0.00063,0.00098,0.00127,0.00252,0.00047,0.0007,0,0,0,0,0.00061,0.00095,0.00122,0.00238,0.00048,0.00071,0,0,0,0,0.00066,0.00103,0.00135,0.00269,0.00048,0.00072,0,0,0,0,0.00063,0.00097,0.00125,0.00241,0.00048,0.00072,0,0,0,0,0.02203,0.02299,0.02386,0.02774,0.02398,0.02562,0,0,0,0,0.02264,0.02353,0.02434,0.02787,0.02468,0.02633,0,0,0,0,0.02472,0.02566,0.02652,0.03033,0.02671,0.0284,0,0,0,0,0.02063,0.02161,0.02252,0.02655,0.02254,0.02413,0,0,0,0,0.024,0.02472,0.02533,0.02794,0.0263,0.02797,0,0,0,0,0.02189,0.02265,0.0233,0.02611,0.02412,0.02574,0,0,0,0,0.02196,0.02268,0.02327,0.02583,0.02425,0.02589,0,0,0,0,0.02312,0.02392,0.02463,0.02769,0.02528,0.02694,0,0,0,0,0.02292,0.02365,0.02425,0.02683,0.0252,0.02687,0,0,0,0,0.00408,0.00493,0.0057,0.00913,0.0058,0.0073,0,0,0,0,0.00409,0.00488,0.00559,0.00872,0.00591,0.00743,0,0,0,0,0.0044,0.00523,0.00599,0.00936,0.00624,0.00779,0,0,0,0,0.00392,0.00479,0.00559,0.00916,0.00555,0.00702,0,0,0,0,0.00408,0.00471,0.00525,0.00756,0.00617,0.00771,0,0,0,0,0.00385,0.00451,0.00509,0.00758,0.00581,0.0073,0,0,0,0,0.00382,0.00445,0.00497,0.00724,0.00584,0.00735,0,0,0,0,0.00406,0.00477,0.00539,0.00811,0.00601,0.00754,0,0,0,0,0.00395,0.00459,0.00513,0.00741,0.00601,0.00754,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00139,0.00139,0.00141,0.00158,0,0,0,0,0,0,0.00141,0.00141,0.00143,0.00161,0,0,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00141,0.00141,0.00142,0.00159,0,0,0,0,0,0,0.00139,0.00139,0.0014,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00158,0,0,0,0,0,0,0.00138,0.00138,0.00139,0.00155,0,0,0,0,0,0,0.03194,0.0431,0.05818,0.0959,0,0,0,0,0,0,0.0274,0.03758,0.05144,0.08685,0,0,0,0,0,0,0.0315,0.04421,0.06051,0.10527,0,0,0,0,0,0,0.03483,0.04869,0.06637,0.11434,0,0,0,0,0,0,0.01507,0.02431,0.03602,0.07183,0,0,0,0,0,0,0.01823,0.02838,0.04122,0.07993,0,0,0,0,0,0,0.01419,0.02313,0.03456,0.06937,0,0,0,0,0,0,0.02115,0.03124,0.0442,0.08108,0,0,0,0,0,0,0.0139,0.02181,0.03201,0.06128,0,0 +Large SUV,PH40E,2030,0,0,0,0,0,0.02081,0.02106,0.02132,0.02205,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02258,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02473,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02072,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02372,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02168,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02166,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02294,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.0226,0,0,0,0,0,0,0.01013,0.00639,0.00509,0.00653,0,0,0,0,0,0,0.00871,0.00559,0.00452,0.00589,0,0,0,0,0,0,0.00997,0.00657,0.00532,0.00709,0,0,0,0,0,0,0.01103,0.00725,0.00585,0.00775,0,0,0,0,0,0,0.00482,0.00367,0.00325,0.00471,0,0,0,0,0,0,0.00581,0.00428,0.0037,0.0053,0,0,0,0,0,0,0.00456,0.00351,0.00314,0.00458,0,0,0,0,0,0,0.00674,0.00468,0.00393,0.00541,0,0,0,0,0,0,0.00446,0.00329,0.00288,0.00404,0,0,0,0,0,0,0.48616,0.71062,0.90973,1.34019,0,0,0,0,0,0,0.46446,0.68746,0.88496,1.31216,0,0,0,0,0,0,0.49149,0.76317,1.00253,1.54473,0,0,0,0,0,0,0.5329,0.8299,1.0933,1.67533,0,0,0,0,0,0,0.40116,0.67308,0.89775,1.40885,0,0,0,0,0,0,0.42241,0.70399,0.9404,1.48085,0,0,0,0,0,0,0.41389,0.69378,0.92356,1.44225,0,0,0,0,0,0,0.439,0.69848,0.91445,1.40145,0,0,0,0,0,0,0.37472,0.59978,0.77734,1.17461,0,0,0,0,0,0,130.18226,131.40941,133.46247,144.89139,0,0,0,0,0,0,131.12337,132.26249,134.17499,145.37962,0,0,0,0,0,0,133.01295,134.21195,136.22441,147.73491,0,0,0,0,0,0,130.08158,131.28127,133.29867,144.65658,0,0,0,0,0,0,132.95067,133.78245,135.20198,145.53711,0,0,0,0,0,0,130.93814,131.85527,133.41251,143.90688,0,0,0,0,0,0,131.97094,132.76672,134.13123,144.30442,0,0,0,0,0,0,132.07723,133.04163,134.67384,145.3795,0,0,0,0,0,0,129.98753,130.86696,132.34773,142.62728,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00503,0,0,0,0,0,0,0.00285,0.00319,0.00376,0.0049,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00288,0.00322,0.00379,0.00493,0,0,0,0,0,0,0.0029,0.00325,0.00382,0.00498,0,0,0,0,0,0,0.00293,0.00328,0.00385,0.00501,0,0,0,0,0,0,0.00295,0.0033,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01029,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01034,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.0103,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01033,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01038,0.01337,0.01337,0,0,0,0,0,0,0.02052,0.02997,0.04132,0.06464,0,0,0,0,0,0,0.01975,0.02892,0.04005,0.06296,0,0,0,0,0,0,0.02032,0.03135,0.04323,0.06991,0,0,0,0,0,0,0.0212,0.03323,0.0458,0.07428,0,0,0,0,0,0,0.01587,0.02623,0.03704,0.06165,0,0,0,0,0,0,0.0175,0.02844,0.03986,0.06576,0,0,0,0,0,0,0.01619,0.02651,0.03747,0.06185,0,0,0,0,0,0,0.01868,0.0295,0.04108,0.06666,0,0,0,0,0,0,0.01618,0.02549,0.0357,0.05734,0,0,0,0,0,0,0.00074,0.00117,0.00155,0.00255,0.00047,0,0,0,0,0,0.00071,0.00111,0.00146,0.00238,0.00048,0,0,0,0,0,0.00073,0.00115,0.00152,0.0025,0.00049,0,0,0,0,0,0.00075,0.00118,0.00157,0.00261,0.00046,0,0,0,0,0,0.00061,0.00095,0.00123,0.00192,0.00049,0,0,0,0,0,0.00063,0.00098,0.00127,0.00202,0.00047,0,0,0,0,0,0.00061,0.00095,0.00122,0.00191,0.00048,0,0,0,0,0,0.00066,0.00103,0.00135,0.00215,0.00048,0,0,0,0,0,0.00063,0.00097,0.00125,0.00194,0.00048,0,0,0,0,0,0.02203,0.02298,0.02386,0.02622,0.02398,0,0,0,0,0,0.02264,0.02353,0.02434,0.02649,0.02468,0,0,0,0,0,0.02471,0.02565,0.02652,0.02884,0.02671,0,0,0,0,0,0.02063,0.0216,0.02252,0.02498,0.02254,0,0,0,0,0,0.024,0.02472,0.02533,0.02689,0.0263,0,0,0,0,0,0.02189,0.02264,0.0233,0.02499,0.02412,0,0,0,0,0,0.02196,0.02267,0.02327,0.02481,0.02425,0,0,0,0,0,0.02311,0.02392,0.02463,0.02648,0.02528,0,0,0,0,0,0.02292,0.02364,0.02425,0.02579,0.0252,0,0,0,0,0,0.00407,0.00492,0.0057,0.00779,0.0058,0,0,0,0,0,0.00408,0.00487,0.00559,0.00749,0.00591,0,0,0,0,0,0.00439,0.00522,0.00599,0.00804,0.00624,0,0,0,0,0,0.00392,0.00478,0.00559,0.00777,0.00555,0,0,0,0,0,0.00407,0.00471,0.00525,0.00663,0.00617,0,0,0,0,0,0.00384,0.00451,0.00509,0.00659,0.00581,0,0,0,0,0,0.00381,0.00444,0.00497,0.00633,0.00584,0,0,0,0,0,0.00405,0.00476,0.00539,0.00703,0.00601,0,0,0,0,0,0.00395,0.00459,0.00513,0.00649,0.00601,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.0014,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00142,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.0014,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.0014,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00137,0,0,0,0,0,0,0.03011,0.03952,0.05312,0.08021,0,0,0,0,0,0,0.02556,0.03403,0.04637,0.07114,0,0,0,0,0,0,0.02958,0.04009,0.05463,0.08552,0,0,0,0,0,0,0.03287,0.04438,0.06021,0.0936,0,0,0,0,0,0,0.01318,0.0203,0.03018,0.05228,0,0,0,0,0,0,0.01633,0.02426,0.03523,0.05969,0,0,0,0,0,0,0.0123,0.01914,0.02873,0.05007,0,0,0,0,0,0,0.01925,0.02731,0.03856,0.06265,0,0,0,0,0,0,0.01204,0.01814,0.02675,0.04491,0 +Large SUV,PH40E,2035,0,0,0,0,0,0,0.02081,0.02106,0.02132,0.02191,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02246,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.0246,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02057,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02364,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02158,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02158,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02284,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02252,0,0,0,0,0,0,0.01008,0.00638,0.0051,0.00601,0,0,0,0,0,0,0.00866,0.00558,0.00453,0.00537,0,0,0,0,0,0,0.00991,0.00656,0.00533,0.00642,0,0,0,0,0,0,0.01097,0.00724,0.00586,0.00703,0,0,0,0,0,0,0.00479,0.00367,0.00325,0.00403,0,0,0,0,0,0,0.00578,0.00428,0.00371,0.00458,0,0,0,0,0,0,0.00454,0.00351,0.00314,0.0039,0,0,0,0,0,0,0.0067,0.00468,0.00394,0.00477,0,0,0,0,0,0,0.00444,0.00329,0.00288,0.00348,0,0,0,0,0,0,0.48635,0.71119,0.9101,1.21773,0,0,0,0,0,0,0.4648,0.68804,0.88528,1.18494,0,0,0,0,0,0,0.49191,0.76389,1.00291,1.38489,0,0,0,0,0,0,0.53336,0.83068,1.0937,1.50454,0,0,0,0,0,0,0.40203,0.67378,0.89797,1.23806,0,0,0,0,0,0,0.42324,0.70472,0.94064,1.30526,0,0,0,0,0,0,0.41481,0.69448,0.92376,1.26748,0,0,0,0,0,0,0.43968,0.6991,0.91471,1.24605,0,0,0,0,0,0,0.37542,0.60029,0.77754,1.04003,0,0,0,0,0,0,130.15524,131.41438,133.47282,138.98054,0,0,0,0,0,0,131.09791,132.26712,134.18438,139.42462,0,0,0,0,0,0,132.9862,134.21683,136.23435,141.69584,0,0,0,0,0,0,130.05463,131.28609,133.30856,138.75323,0,0,0,0,0,0,132.93095,133.7857,135.2087,139.49445,0,0,0,0,0,0,130.91686,131.85882,133.42,137.95791,0,0,0,0,0,0,131.95186,132.76976,134.13747,138.30722,0,0,0,0,0,0,132.05505,133.04541,134.68169,139.37858,0,0,0,0,0,0,129.96789,130.87053,132.35502,136.71497,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.0029,0.00326,0.00383,0.00499,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00504,0,0,0,0,0,0,0.00284,0.00319,0.00376,0.00491,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00287,0.00322,0.00379,0.00494,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00292,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0205,0.03003,0.04134,0.05657,0,0,0,0,0,0,0.01974,0.02898,0.04007,0.05486,0,0,0,0,0,0,0.02031,0.03142,0.04325,0.06041,0,0,0,0,0,0,0.0212,0.03331,0.04583,0.06404,0,0,0,0,0,0,0.01588,0.0263,0.03706,0.05218,0,0,0,0,0,0,0.0175,0.02851,0.03988,0.05597,0,0,0,0,0,0,0.01619,0.02658,0.03749,0.05242,0,0,0,0,0,0,0.01868,0.02957,0.0411,0.05697,0,0,0,0,0,0,0.01618,0.02555,0.03572,0.0489,0.04953,0,0,0,0,0,0.00074,0.00117,0.00155,0.00234,0.04325,0,0,0,0,0,0.00071,0.00111,0.00146,0.00219,0.04823,0,0,0,0,0,0.00073,0.00115,0.00152,0.0023,0.05311,0,0,0,0,0,0.00075,0.00118,0.00157,0.0024,0.02579,0,0,0,0,0,0.00061,0.00095,0.00123,0.00177,0.03017,0,0,0,0,0,0.00063,0.00098,0.00127,0.00186,0.02477,0,0,0,0,0,0.00061,0.00095,0.00122,0.00176,0.03429,0,0,0,0,0,0.00066,0.00103,0.00135,0.00198,0.02451,0,0,0,0,0,0.00063,0.00097,0.00125,0.00178,0.13141,0,0,0,0,0,0.02203,0.02298,0.02386,0.02575,0.11768,0,0,0,0,0,0.02264,0.02353,0.02434,0.02605,0.13192,0,0,0,0,0,0.02472,0.02565,0.02652,0.02837,0.13906,0,0,0,0,0,0.02063,0.02161,0.02252,0.02449,0.07947,0,0,0,0,0,0.024,0.02472,0.02533,0.02656,0.08737,0,0,0,0,0,0.02189,0.02264,0.0233,0.02464,0.075,0,0,0,0,0,0.02196,0.02267,0.02327,0.02448,0.098,0,0,0,0,0,0.02312,0.02392,0.02463,0.0261,0.07487,0,0,0,0,0,0.02292,0.02364,0.02425,0.02546,0.10083,0,0,0,0,0,0.00408,0.00492,0.0057,0.00737,0.08815,0,0,0,0,0,0.00409,0.00487,0.00559,0.0071,0.09923,0,0,0,0,0,0.0044,0.00522,0.00599,0.00763,0.10868,0,0,0,0,0,0.00392,0.00478,0.00559,0.00733,0.05314,0,0,0,0,0,0.00408,0.00471,0.00525,0.00634,0.06176,0,0,0,0,0,0.00384,0.00451,0.00509,0.00628,0.05073,0,0,0,0,0,0.00381,0.00444,0.00497,0.00604,0.0703,0,0,0,0,0,0.00406,0.00477,0.00539,0.00669,0.0499,0,0,0,0,0,0.00395,0.00459,0.00513,0.0062,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00136,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.00134,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00132,0,0,0,0,0,0,0.03003,0.03957,0.05316,0.0751,0,0,0,0,0,0,0.0255,0.03408,0.04641,0.06597,0,0,0,0,0,0,0.02951,0.04015,0.05468,0.07883,0,0,0,0,0,0,0.0328,0.04444,0.06026,0.08659,0,0,0,0,0,0,0.01316,0.02034,0.0302,0.0455,0,0,0,0,0,0,0.0163,0.02431,0.03526,0.05266,0,0,0,0,0,0,0.01228,0.01918,0.02875,0.04337,0,0,0,0,0,0,0.01921,0.02736,0.03859,0.05637,0,0,0,0,0,0,0.01202,0.01818,0.02677,0.03936 +Large SUV,PH40E,2040,0,0,0,0,0,0,0,0.02081,0.02106,0.02132,0,0,0,0,0,0,0,0.02148,0.0217,0.02193,0,0,0,0,0,0,0,0.02351,0.02376,0.02401,0,0,0,0,0,0,0,0.01941,0.01967,0.01994,0,0,0,0,0,0,0,0.02299,0.02314,0.0233,0,0,0,0,0,0,0,0.02085,0.02103,0.0212,0,0,0,0,0,0,0,0.02095,0.0211,0.02125,0,0,0,0,0,0,0,0.02203,0.02222,0.02241,0,0,0,0,0,0,0,0.02189,0.02204,0.02219,0,0,0,0,0,0,0,0.01008,0.00638,0.00509,0,0,0,0,0,0,0,0.00867,0.00558,0.00452,0,0,0,0,0,0,0,0.00992,0.00656,0.00532,0,0,0,0,0,0,0,0.01097,0.00724,0.00585,0,0,0,0,0,0,0,0.0048,0.00367,0.00325,0,0,0,0,0,0,0,0.00579,0.00427,0.00371,0,0,0,0,0,0,0,0.00454,0.00351,0.00314,0,0,0,0,0,0,0,0.0067,0.00468,0.00393,0,0,0,0,0,0,0,0.00444,0.00329,0.00288,0,0,0,0,0,0,0,0.48567,0.7107,0.90987,0,0,0,0,0,0,0,0.46413,0.68757,0.88508,0,0,0,0,0,0,0,0.49113,0.76333,1.00267,0,0,0,0,0,0,0,0.5325,0.83008,1.09344,0,0,0,0,0,0,0,0.40132,0.67334,0.89783,0,0,0,0,0,0,0,0.42249,0.70424,0.94049,0,0,0,0,0,0,0,0.41409,0.69404,0.92363,0,0,0,0,0,0,0,0.43896,0.69866,0.91454,0,0,0,0,0,0,0,0.37481,0.59994,0.77741,0,0,0,0,0,0,0,130.14799,131.40506,133.46637,0,0,0,0,0,0,0,131.09118,132.25839,134.1785,0,0,0,0,0,0,0,132.97906,134.20762,136.22808,0,0,0,0,0,0,0,130.0475,131.27681,133.30227,0,0,0,0,0,0,0,132.92599,133.77917,135.20433,0,0,0,0,0,0,0,130.91139,131.85169,133.4153,0,0,0,0,0,0,0,131.94702,132.76349,134.13355,0,0,0,0,0,0,0,132.04928,133.03794,134.67679,0,0,0,0,0,0,0,129.96268,130.86377,132.3506,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.00295,0.0033,0.00388,0,0,0,0,0,0,0,0.00284,0.00319,0.00376,0,0,0,0,0,0,0,0.00293,0.00329,0.00386,0,0,0,0,0,0,0,0.00287,0.00322,0.00379,0,0,0,0,0,0,0,0.00289,0.00325,0.00382,0,0,0,0,0,0,0,0.00292,0.00328,0.00386,0,0,0,0,0,0,0,0.00294,0.0033,0.00389,0,0,0,0,0,0,0,0.0089,0.01035,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00891,0.01035,0.01334,0,0,0,0,0,0,0,0.00886,0.0103,0.01327,0,0,0,0,0,0,0,0.0089,0.01035,0.01333,0,0,0,0,0,0,0,0.00887,0.01031,0.01328,0,0,0,0,0,0,0,0.0089,0.01034,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00893,0.01038,0.01337,0,0,0,0,0,0,0,0.02048,0.02999,0.04132,0,0,0,0,0,0,0,0.01971,0.02894,0.04006,0,0,0,0,0,0,0,0.02029,0.03137,0.04324,0,0,0,0,0,0,0,0.02117,0.03326,0.04581,0,0,0,0,0,0,0,0.01585,0.02626,0.03705,0,0,0,0,0,0,0,0.01748,0.02847,0.03986,0,0,0,0,0,0,0,0.01617,0.02654,0.03748,0,0,0,0,0,0,0,0.01866,0.02953,0.04108,0,0,0,0,0,0,0,0.01616,0.02551,0.03571,0.0134,0.02933,0,0,0,0,0,0.00074,0.00117,0.00155,0.01173,0.0256,0,0,0,0,0,0.00071,0.00111,0.00146,0.01301,0.02854,0,0,0,0,0,0.00073,0.00115,0.00152,0.01425,0.03131,0,0,0,0,0,0.00075,0.00118,0.00157,0.00705,0.0152,0,0,0,0,0,0.00061,0.00095,0.00123,0.0082,0.01773,0,0,0,0,0,0.00063,0.00098,0.00127,0.0068,0.0146,0,0,0,0,0,0.00061,0.00095,0.00122,0.00934,0.02027,0,0,0,0,0,0.00066,0.00103,0.00135,0.00678,0.01454,0,0,0,0,0,0.00063,0.00097,0.00125,0.05,0.08584,0,0,0,0,0,0.02203,0.02298,0.02386,0.04694,0.07794,0,0,0,0,0,0.02264,0.02353,0.02434,0.05206,0.08684,0,0,0,0,0,0.02471,0.02565,0.02652,0.05078,0.08942,0,0,0,0,0,0.02063,0.0216,0.02252,0.03804,0.05587,0,0,0,0,0,0.024,0.02472,0.02533,0.0385,0.05944,0,0,0,0,0,0.02189,0.02264,0.0233,0.03541,0.0525,0,0,0,0,0,0.02196,0.02267,0.02327,0.0422,0.06655,0,0,0,0,0,0.02311,0.02392,0.02463,0.03615,0.0531,0,0,0,0,0,0.02292,0.02364,0.02425,0.02882,0.06052,0,0,0,0,0,0.00407,0.00492,0.0057,0.02559,0.05301,0,0,0,0,0,0.00408,0.00487,0.00559,0.02859,0.05935,0,0,0,0,0,0.00439,0.00522,0.00599,0.03058,0.06476,0,0,0,0,0,0.00392,0.00478,0.00559,0.01649,0.03227,0,0,0,0,0,0.00408,0.00471,0.00525,0.01853,0.03706,0,0,0,0,0,0.00384,0.00451,0.00509,0.01571,0.03083,0,0,0,0,0,0.00381,0.00444,0.00497,0.02094,0.04248,0,0,0,0,0,0.00405,0.00477,0.00539,0.01565,0.03065,0,0,0,0,0,0.00395,0.00459,0.00513,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00126,0.00127,0.00129,0,0,0,0,0,0,0,0.00128,0.00129,0.00131,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00128,0.00129,0.0013,0,0,0,0,0,0,0,0.00126,0.00127,0.00128,0,0,0,0,0,0,0,0.00127,0.00128,0.00129,0,0,0,0,0,0,0,0.00127,0.00128,0.0013,0,0,0,0,0,0,0,0.00125,0.00126,0.00127,0,0,0,0,0,0,0,0.03,0.03952,0.05314,0,0,0,0,0,0,0,0.02547,0.03403,0.04639,0,0,0,0,0,0,0,0.02948,0.0401,0.05465,0,0,0,0,0,0,0,0.03276,0.04438,0.06023,0,0,0,0,0,0,0,0.01314,0.02031,0.03019,0,0,0,0,0,0,0,0.01627,0.02427,0.03524,0,0,0,0,0,0,0,0.01226,0.01915,0.02874,0,0,0,0,0,0,0,0.01919,0.02732,0.03857,0,0,0,0,0,0,0,0.012,0.01815,0.02676 +Large SUV,PH40E,2045,0,0,0,0,0,0,0,0,0.02081,0.02106,0,0,0,0,0,0,0,0,0.02148,0.0217,0,0,0,0,0,0,0,0,0.02351,0.02376,0,0,0,0,0,0,0,0,0.01941,0.01966,0,0,0,0,0,0,0,0,0.02299,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02103,0,0,0,0,0,0,0,0,0.02095,0.0211,0,0,0,0,0,0,0,0,0.02203,0.02222,0,0,0,0,0,0,0,0,0.02189,0.02204,0,0,0,0,0,0,0,0,0.01008,0.00638,0,0,0,0,0,0,0,0,0.00867,0.00558,0,0,0,0,0,0,0,0,0.00992,0.00656,0,0,0,0,0,0,0,0,0.01097,0.00724,0,0,0,0,0,0,0,0,0.0048,0.00367,0,0,0,0,0,0,0,0,0.00578,0.00427,0,0,0,0,0,0,0,0,0.00454,0.00351,0,0,0,0,0,0,0,0,0.0067,0.00468,0,0,0,0,0,0,0,0,0.00444,0.00329,0,0,0,0,0,0,0,0,0.48529,0.71055,0,0,0,0,0,0,0,0,0.46375,0.68743,0,0,0,0,0,0,0,0,0.4907,0.76315,0,0,0,0,0,0,0,0,0.53204,0.82989,0,0,0,0,0,0,0,0,0.40095,0.67318,0,0,0,0,0,0,0,0,0.42211,0.70408,0,0,0,0,0,0,0,0,0.41372,0.69388,0,0,0,0,0,0,0,0,0.43858,0.69851,0,0,0,0,0,0,0,0,0.37449,0.59982,0,0,0,0,0,0,0,0,130.14245,131.40312,0,0,0,0,0,0,0,0,131.08599,132.25648,0,0,0,0,0,0,0,0,132.97361,134.2057,0,0,0,0,0,0,0,0,130.04203,131.27486,0,0,0,0,0,0,0,0,132.92209,133.77791,0,0,0,0,0,0,0,0,130.90713,131.85022,0,0,0,0,0,0,0,0,131.94331,132.76241,0,0,0,0,0,0,0,0,132.04492,133.03643,0,0,0,0,0,0,0,0,129.95871,130.86251,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.0029,0.00325,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.00284,0.00319,0,0,0,0,0,0,0,0,0.00293,0.00329,0,0,0,0,0,0,0,0,0.00287,0.00322,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.00292,0.00328,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00886,0.0103,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00887,0.01031,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01036,0,0,0,0,0,0,0,0,0.00893,0.01038,0,0,0,0,0,0,0,0,0.02046,0.02997,0,0,0,0,0,0,0,0,0.0197,0.02893,0,0,0,0,0,0,0,0,0.02027,0.03136,0,0,0,0,0,0,0,0,0.02115,0.03324,0,0,0,0,0,0,0,0,0.01584,0.02624,0,0,0,0,0,0,0,0,0.01746,0.02845,0,0,0,0,0,0,0,0,0.01615,0.02652,0,0,0,0,0,0,0,0,0.01864,0.02952,0,0,0,0,0,0,0,0,0.01614,0.0255,0.00742,0.01037,0.02062,0,0,0,0,0,0.00074,0.00117,0.00651,0.00908,0.01797,0,0,0,0,0,0.00071,0.00111,0.00709,0.00992,0.01987,0,0,0,0,0,0.00073,0.00115,0.00773,0.01083,0.02183,0,0,0,0,0,0.00075,0.00118,0.00394,0.00546,0.01064,0,0,0,0,0,0.00061,0.00095,0.00453,0.00629,0.01238,0,0,0,0,0,0.00063,0.00098,0.00385,0.00533,0.0103,0,0,0,0,0,0.00061,0.00095,0.00519,0.00723,0.01422,0,0,0,0,0,0.00066,0.00103,0.00392,0.00543,0.01036,0,0,0,0,0,0.00063,0.00097,0.03637,0.04272,0.06611,0,0,0,0,0,0.02202,0.02298,0.03508,0.04056,0.06075,0,0,0,0,0,0.02264,0.02353,0.03852,0.04451,0.06724,0,0,0,0,0,0.02471,0.02565,0.03581,0.04252,0.06764,0,0,0,0,0,0.02062,0.0216,0.0311,0.03426,0.04579,0,0,0,0,0,0.024,0.02472,0.03026,0.03393,0.04756,0,0,0,0,0,0.02189,0.02264,0.02885,0.03195,0.04292,0,0,0,0,0,0.02196,0.02267,0.03284,0.03717,0.05285,0,0,0,0,0,0.02311,0.02392,0.02982,0.03298,0.04388,0,0,0,0,0,0.02292,0.02364,0.01676,0.02238,0.04307,0,0,0,0,0,0.00407,0.00492,0.01509,0.01994,0.0378,0,0,0,0,0,0.00408,0.00487,0.01661,0.0219,0.04202,0,0,0,0,0,0.00439,0.00522,0.01734,0.02328,0.0455,0,0,0,0,0,0.00392,0.00478,0.01035,0.01315,0.02336,0,0,0,0,0,0.00407,0.00471,0.01124,0.01449,0.02655,0,0,0,0,0,0.00384,0.00451,0.0099,0.01265,0.02236,0,0,0,0,0,0.00381,0.00444,0.01265,0.01649,0.03036,0,0,0,0,0,0.00405,0.00476,0.01005,0.01285,0.02249,0,0,0,0,0,0.00395,0.00459,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.02997,0.03951,0,0,0,0,0,0,0,0,0.02545,0.03402,0,0,0,0,0,0,0,0,0.02945,0.04008,0,0,0,0,0,0,0,0,0.03273,0.04436,0,0,0,0,0,0,0,0,0.01313,0.0203,0,0,0,0,0,0,0,0,0.01626,0.02426,0,0,0,0,0,0,0,0,0.01225,0.01914,0,0,0,0,0,0,0,0,0.01917,0.02731,0,0,0,0,0,0,0,0,0.01199,0.01814 +Large SUV,PH40E,2050,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02148,0,0,0,0,0,0,0,0,0,0.02351,0,0,0,0,0,0,0,0,0,0.01941,0,0,0,0,0,0,0,0,0,0.02299,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02095,0,0,0,0,0,0,0,0,0,0.02203,0,0,0,0,0,0,0,0,0,0.02189,0,0,0,0,0,0,0,0,0,0.01008,0,0,0,0,0,0,0,0,0,0.00867,0,0,0,0,0,0,0,0,0,0.00992,0,0,0,0,0,0,0,0,0,0.01097,0,0,0,0,0,0,0,0,0,0.0048,0,0,0,0,0,0,0,0,0,0.00578,0,0,0,0,0,0,0,0,0,0.00454,0,0,0,0,0,0,0,0,0,0.0067,0,0,0,0,0,0,0,0,0,0.00444,0,0,0,0,0,0,0,0,0,0.48529,0,0,0,0,0,0,0,0,0,0.46376,0,0,0,0,0,0,0,0,0,0.49071,0,0,0,0,0,0,0,0,0,0.53205,0,0,0,0,0,0,0,0,0,0.40096,0,0,0,0,0,0,0,0,0,0.42211,0,0,0,0,0,0,0,0,0,0.41373,0,0,0,0,0,0,0,0,0,0.43858,0,0,0,0,0,0,0,0,0,0.3745,0,0,0,0,0,0,0,0,0,130.14248,0,0,0,0,0,0,0,0,0,131.08589,0,0,0,0,0,0,0,0,0,132.97354,0,0,0,0,0,0,0,0,0,130.04196,0,0,0,0,0,0,0,0,0,132.92202,0,0,0,0,0,0,0,0,0,130.90705,0,0,0,0,0,0,0,0,0,131.94336,0,0,0,0,0,0,0,0,0,132.0448,0,0,0,0,0,0,0,0,0,129.95865,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.0029,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.00284,0,0,0,0,0,0,0,0,0,0.00293,0,0,0,0,0,0,0,0,0,0.00287,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.00292,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00886,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00893,0,0,0,0,0,0,0,0,0,0.02046,0,0,0,0,0,0,0,0,0,0.0197,0,0,0,0,0,0,0,0,0,0.02027,0,0,0,0,0,0,0,0,0,0.02115,0,0,0,0,0,0,0,0,0,0.01584,0,0,0,0,0,0,0,0,0,0.01746,0,0,0,0,0,0,0,0,0,0.01615,0,0,0,0,0,0,0,0,0,0.01864,0,0,0,0,0,0,0,0,0,0.01614,0.00244,0.0039,0.0053,0.01233,0,0,0,0,0,0.00074,0.00223,0.00347,0.00471,0.01086,0,0,0,0,0,0.00071,0.00258,0.00322,0.00433,0.0118,0,0,0,0,0,0.00073,0.00266,0.00394,0.00536,0.01291,0,0,0,0,0,0.00075,0.00156,0.00246,0.00335,0.00682,0,0,0,0,0,0.00061,0.00176,0.00252,0.00341,0.00771,0,0,0,0,0,0.00063,0.00152,0.00232,0.00315,0.0065,0,0,0,0,0,0.00061,0.00192,0.00277,0.00375,0.00871,0,0,0,0,0,0.00066,0.0014,0.0021,0.00284,0.00645,0,0,0,0,0,0.00063,0.02565,0.02875,0.0319,0.04773,0,0,0,0,0,0.02202,0.0259,0.02849,0.03125,0.04503,0,0,0,0,0,0.02264,0.02873,0.02993,0.03241,0.04929,0,0,0,0,0,0.02471,0.02479,0.02749,0.03069,0.04777,0,0,0,0,0,0.02062,0.02603,0.02786,0.0298,0.03743,0,0,0,0,0,0.024,0.02432,0.02583,0.0278,0.03731,0,0,0,0,0,0.02189,0.0239,0.02553,0.0273,0.03464,0,0,0,0,0,0.02196,0.02582,0.02756,0.02968,0.04073,0,0,0,0,0,0.02311,0.02455,0.02596,0.02752,0.03544,0,0,0,0,0,0.02292,0.00727,0.01001,0.0128,0.02681,0,0,0,0,0,0.00407,0.00696,0.00925,0.0117,0.02389,0,0,0,0,0,0.00408,0.00794,0.009,0.0112,0.02613,0,0,0,0,0,0.00439,0.00758,0.00998,0.0128,0.02792,0,0,0,0,0,0.00392,0.00586,0.00748,0.0092,0.01595,0,0,0,0,0,0.00407,0.00598,0.00732,0.00906,0.01748,0,0,0,0,0,0.00384,0.00551,0.00696,0.00853,0.01502,0,0,0,0,0,0.00381,0.00644,0.00798,0.00986,0.01963,0,0,0,0,0,0.00405,0.00538,0.00663,0.00801,0.01502,0,0,0,0,0,0.00395,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.02997,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02945,0,0,0,0,0,0,0,0,0,0.03273,0,0,0,0,0,0,0,0,0,0.01313,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01225,0,0,0,0,0,0,0,0,0,0.01917,0,0,0,0,0,0,0,0,0,0.01199 +Large SUV,PH40G,1990,0.04853,0,0,0,0,0,0,0,0,0,0.04512,0,0,0,0,0,0,0,0,0,0.05058,0,0,0,0,0,0,0,0,0,0.04966,0,0,0,0,0,0,0,0,0,0.03589,0,0,0,0,0,0,0,0,0,0.03633,0,0,0,0,0,0,0,0,0,0.03311,0,0,0,0,0,0,0,0,0,0.04015,0,0,0,0,0,0,0,0,0,0.0339,0,0,0,0,0,0,0,0,0,0.05721,0,0,0,0,0,0,0,0,0,0.04793,0,0,0,0,0,0,0,0,0,0.06232,0,0,0,0,0,0,0,0,0,0.06483,0,0,0,0,0,0,0,0,0,0.05407,0,0,0,0,0,0,0,0,0,0.05931,0,0,0,0,0,0,0,0,0,0.05417,0,0,0,0,0,0,0,0,0,0.0534,0,0,0,0,0,0,0,0,0,0.04241,0,0,0,0,0,0,0,0,0,35.07906,0,0,0,0,0,0,0,0,0,31.27098,0,0,0,0,0,0,0,0,0,38.98308,0,0,0,0,0,0,0,0,0,40.45848,0,0,0,0,0,0,0,0,0,36.19404,0,0,0,0,0,0,0,0,0,38.9985,0,0,0,0,0,0,0,0,0,37.35767,0,0,0,0,0,0,0,0,0,35.04495,0,0,0,0,0,0,0,0,0,28.57715,0,0,0,0,0,0,0,0,0,309.76857,0,0,0,0,0,0,0,0,0,310.48098,0,0,0,0,0,0,0,0,0,314.31655,0,0,0,0,0,0,0,0,0,308.79709,0,0,0,0,0,0,0,0,0,310.27577,0,0,0,0,0,0,0,0,0,307.51573,0,0,0,0,0,0,0,0,0,307.96362,0,0,0,0,0,0,0,0,0,310.2278,0,0,0,0,0,0,0,0,0,306.35158,0,0,0,0,0,0,0,0,0,0.06266,0,0,0,0,0,0,0,0,0,0.06272,0,0,0,0,0,0,0,0,0,0.06372,0,0,0,0,0,0,0,0,0,0.06141,0,0,0,0,0,0,0,0,0,0.06343,0,0,0,0,0,0,0,0,0,0.06208,0,0,0,0,0,0,0,0,0,0.0626,0,0,0,0,0,0,0,0,0,0.0632,0,0,0,0,0,0,0,0,0,0.06369,0,0,0,0,0,0,0,0,0,0.02053,0,0,0,0,0,0,0,0,0,0.02055,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.02049,0,0,0,0,0,0,0,0,0,0.02052,0,0,0,0,0,0,0,0,0,0.02054,0,0,0,0,0,0,0,0,0,0.02056,0,0,0,0,0,0,0,0,0,2.53113,0,0,0,0,0,0,0,0,0,2.38486,0,0,0,0,0,0,0,0,0,2.67037,0,0,0,0,0,0,0,0,0,2.83383,0,0,0,0,0,0,0,0,0,2.61703,0,0,0,0,0,0,0,0,0,2.75096,0,0,0,0,0,0,0,0,0,2.62288,0,0,0,0,0,0,0,0,0,2.76787,0,0,0,0,0,0,0,0,0,2.25703,0,0,0,0,0,0,0,0,0,0.04953,0.00481,0.00486,0.00464,0.01026,0,0,0,0,0,0.04325,0.00496,0.00501,0.00477,0.01055,0,0,0,0,0,0.04823,0.0054,0.00542,0.00515,0.0114,0,0,0,0,0,0.05311,0.00448,0.00455,0.00435,0.00957,0,0,0,0,0,0.02579,0.00531,0.00533,0.00507,0.01121,0,0,0,0,0,0.03017,0.00482,0.00487,0.00464,0.01024,0,0,0,0,0,0.02477,0.00487,0.00491,0.00468,0.01035,0,0,0,0,0,0.03429,0.00509,0.00513,0.00488,0.0108,0,0,0,0,0,0.02451,0.00509,0.00513,0.00489,0.01083,0,0,0,0,0,0.13141,0.05143,0.05178,0.05019,0.08089,0,0,0,0,0,0.11768,0.05236,0.05271,0.0511,0.08208,0,0,0,0,0,0.13192,0.05503,0.05538,0.05372,0.08553,0,0,0,0,0,0.13906,0.04943,0.04977,0.04821,0.07815,0,0,0,0,0,0.07947,0.05447,0.05481,0.05316,0.08477,0,0,0,0,0,0.08737,0.05153,0.05186,0.05026,0.08085,0,0,0,0,0,0.075,0.05176,0.05211,0.05051,0.08128,0,0,0,0,0,0.098,0.05316,0.0535,0.05188,0.08311,0,0,0,0,0,0.07487,0.05312,0.05348,0.05186,0.0832,0,0,0,0,0,0.10083,0.03105,0.03137,0.02992,0.05816,0,0,0,0,0,0.08815,0.03137,0.0317,0.03022,0.05871,0,0,0,0,0,0.09923,0.03229,0.03262,0.03108,0.06035,0,0,0,0,0,0.10868,0.0303,0.03061,0.02918,0.05671,0,0,0,0,0,0.05314,0.03209,0.03241,0.03088,0.05997,0,0,0,0,0,0.06176,0.03102,0.03133,0.02986,0.05801,0,0,0,0,0,0.05073,0.03115,0.03147,0.03,0.0583,0,0,0,0,0,0.0703,0.03165,0.03197,0.03048,0.05921,0,0,0,0,0,0.0499,0.03169,0.03202,0.03054,0.05936,0,0,0,0,0,0.01373,0,0,0,0,0,0,0,0,0,0.01548,0,0,0,0,0,0,0,0,0,0.02199,0,0,0,0,0,0,0,0,0,0.02016,0,0,0,0,0,0,0,0,0,0.01794,0,0,0,0,0,0,0,0,0,0.01978,0,0,0,0,0,0,0,0,0,0.018,0,0,0,0,0,0,0,0,0,0.01779,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,2.11282,0,0,0,0,0,0,0,0,0,1.86289,0,0,0,0,0,0,0,0,0,2.3408,0,0,0,0,0,0,0,0,0,2.4215,0,0,0,0,0,0,0,0,0,2.26922,0,0,0,0,0,0,0,0,0,2.3711,0,0,0,0,0,0,0,0,0,2.26492,0,0,0,0,0,0,0,0,0,2.19953,0,0,0,0,0,0,0,0,0,1.78969,0,0,0,0,0,0,0,0,0 +Large SUV,PH40G,1995,0.02751,0.03727,0,0,0,0,0,0,0,0,0.02719,0.0355,0,0,0,0,0,0,0,0,0.03004,0.03958,0,0,0,0,0,0,0,0,0.0267,0.03735,0,0,0,0,0,0,0,0,0.02609,0.03059,0,0,0,0,0,0,0,0,0.02458,0.02998,0,0,0,0,0,0,0,0,0.02387,0.02811,0,0,0,0,0,0,0,0,0.0264,0.03275,0,0,0,0,0,0,0,0,0.02478,0.02898,0,0,0,0,0,0,0,0,0.03917,0.04477,0,0,0,0,0,0,0,0,0.03627,0.03853,0,0,0,0,0,0,0,0,0.0439,0.05067,0,0,0,0,0,0,0,0,0.04503,0.05493,0,0,0,0,0,0,0,0,0.03946,0.0455,0,0,0,0,0,0,0,0,0.04189,0.05004,0,0,0,0,0,0,0,0,0.03918,0.04569,0,0,0,0,0,0,0,0,0.03934,0.04539,0,0,0,0,0,0,0,0,0.03291,0.03475,0,0,0,0,0,0,0,0,16.55049,22.93876,0,0,0,0,0,0,0,0,16.07993,21.06143,0,0,0,0,0,0,0,0,18.86972,25.57563,0,0,0,0,0,0,0,0,19.71238,27.57242,0,0,0,0,0,0,0,0,17.93665,24.48259,0,0,0,0,0,0,0,0,18.95962,26.26305,0,0,0,0,0,0,0,0,18.51493,25.54084,0,0,0,0,0,0,0,0,17.62792,24.39996,0,0,0,0,0,0,0,0,14.45226,19.49302,0,0,0,0,0,0,0,0,242.7102,259.3027,0,0,0,0,0,0,0,0,244.36161,260.4985,0,0,0,0,0,0,0,0,248.17166,264.55828,0,0,0,0,0,0,0,0,241.8919,258.29446,0,0,0,0,0,0,0,0,247.36505,261.92345,0,0,0,0,0,0,0,0,243.37201,258.40709,0,0,0,0,0,0,0,0,245.03455,259.41254,0,0,0,0,0,0,0,0,245.86106,261.10087,0,0,0,0,0,0,0,0,242.38329,257.32786,0,0,0,0,0,0,0,0,0.04639,0.05878,0,0,0,0,0,0,0,0,0.0465,0.05886,0,0,0,0,0,0,0,0,0.04739,0.05981,0,0,0,0,0,0,0,0,0.04538,0.0576,0,0,0,0,0,0,0,0,0.04715,0.05954,0,0,0,0,0,0,0,0,0.046,0.05825,0,0,0,0,0,0,0,0,0.04637,0.05874,0,0,0,0,0,0,0,0,0.04689,0.05931,0,0,0,0,0,0,0,0,0.04722,0.05976,0,0,0,0,0,0,0,0,0.05276,0.04229,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05272,0.04225,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05269,0.04223,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05272,0.04226,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05289,0.04239,0,0,0,0,0,0,0,0,2.08064,2.48504,0,0,0,0,0,0,0,0,2.05287,2.34451,0,0,0,0,0,0,0,0,2.24514,2.54934,0,0,0,0,0,0,0,0,2.33983,2.80384,0,0,0,0,0,0,0,0,2.19331,2.59615,0,0,0,0,0,0,0,0,2.29135,2.69495,0,0,0,0,0,0,0,0,2.22014,2.61358,0,0,0,0,0,0,0,0,2.32703,2.74151,0,0,0,0,0,0,0,0,1.92696,2.24397,0,0,0,0,0,0,0,0,0.0134,0.02933,0.0005,0.00078,0.00085,0.00312,0,0,0,0,0.01173,0.0256,0.00051,0.00079,0.00086,0.00319,0,0,0,0,0.01301,0.02854,0.00052,0.00081,0.00088,0.0034,0,0,0,0,0.01425,0.03131,0.00049,0.00076,0.00083,0.00295,0,0,0,0,0.00705,0.0152,0.00052,0.0008,0.00087,0.00335,0,0,0,0,0.0082,0.01773,0.0005,0.00078,0.00085,0.00311,0,0,0,0,0.0068,0.0146,0.0005,0.00078,0.00085,0.00314,0,0,0,0,0.00934,0.02027,0.00051,0.00079,0.00086,0.00325,0,0,0,0,0.00678,0.01454,0.00051,0.0008,0.00087,0.00327,0,0,0,0,0.05,0.08584,0.02421,0.02623,0.0268,0.04029,0,0,0,0,0.04694,0.07794,0.02491,0.02694,0.02751,0.0411,0,0,0,0,0.05206,0.08684,0.02693,0.029,0.02957,0.04344,0,0,0,0,0.05078,0.08942,0.02276,0.02473,0.0253,0.03851,0,0,0,0,0.03804,0.05587,0.02651,0.02858,0.02914,0.04294,0,0,0,0,0.0385,0.05944,0.02434,0.02634,0.0269,0.04034,0,0,0,0,0.03541,0.0525,0.02447,0.02649,0.02707,0.04057,0,0,0,0,0.0422,0.06655,0.02551,0.02755,0.02813,0.0418,0,0,0,0,0.03615,0.0531,0.02543,0.02749,0.02808,0.04179,0,0,0,0,0.02882,0.06052,0.00601,0.00787,0.0084,0.02081,0,0,0,0,0.02559,0.05301,0.00612,0.00799,0.00852,0.02101,0,0,0,0,0.02859,0.05935,0.00644,0.00835,0.00887,0.02163,0,0,0,0,0.03058,0.06476,0.00576,0.00757,0.00809,0.02025,0,0,0,0,0.01649,0.03227,0.00637,0.00827,0.00879,0.02148,0,0,0,0,0.01853,0.03706,0.00601,0.00785,0.00837,0.02074,0,0,0,0,0.01571,0.03083,0.00605,0.0079,0.00843,0.02086,0,0,0,0,0.02094,0.04248,0.00622,0.0081,0.00862,0.0212,0,0,0,0,0.01565,0.03065,0.00622,0.00811,0.00865,0.02127,0,0,0,0,0.01073,0.00551,0,0,0,0,0,0,0,0,0.01218,0.00559,0,0,0,0,0,0,0,0,0.01737,0.00579,0,0,0,0,0,0,0,0,0.01579,0.00968,0,0,0,0,0,0,0,0,0.0143,0.0057,0,0,0,0,0,0,0,0,0.01565,0.00565,0,0,0,0,0,0,0,0,0.01432,0.00775,0,0,0,0,0,0,0,0,0.01407,0.00882,0,0,0,0,0,0,0,0,0.00662,0.00324,0,0,0,0,0,0,0,0,1.46325,1.81021,0,0,0,0,0,0,0,0,1.40068,1.64808,0,0,0,0,0,0,0,0,1.66111,2.05515,0,0,0,0,0,0,0,0,1.68667,2.19368,0,0,0,0,0,0,0,0,1.60438,2.04812,0,0,0,0,0,0,0,0,1.64584,2.13632,0,0,0,0,0,0,0,0,1.59029,2.04471,0,0,0,0,0,0,0,0,1.58411,2.0166,0,0,0,0,0,0,0,0,1.34248,1.61492,0,0,0,0,0,0,0,0 +Large SUV,PH40G,2000,0.02384,0.02543,0.03195,0,0,0,0,0,0,0,0.02406,0.02542,0.03095,0,0,0,0,0,0,0,0.02644,0.02798,0.03433,0,0,0,0,0,0,0,0.02266,0.02438,0.0315,0,0,0,0,0,0,0,0.02438,0.02512,0.0281,0,0,0,0,0,0,0,0.02252,0.02341,0.02699,0,0,0,0,0,0,0,0.02228,0.02298,0.02579,0,0,0,0,0,0,0,0.024,0.02504,0.02927,0,0,0,0,0,0,0,0.02322,0.02393,0.0267,0,0,0,0,0,0,0,0.02226,0.03259,0.04418,0,0,0,0,0,0,0,0.02081,0.0313,0.03922,0,0,0,0,0,0,0,0.02524,0.03775,0.05114,0,0,0,0,0,0,0,0.02579,0.0393,0.05226,0,0,0,0,0,0,0,0.01944,0.03188,0.04408,0,0,0,0,0,0,0,0.02106,0.03406,0.04677,0,0,0,0,0,0,0,0.01911,0.03199,0.04247,0,0,0,0,0,0,0,0.02102,0.03345,0.04328,0,0,0,0,0,0,0,0.01731,0.02896,0.03504,0,0,0,0,0,0,0,5.12962,8.16348,15.04953,0,0,0,0,0,0,0,4.99127,8.03463,13.70246,0,0,0,0,0,0,0,5.95952,9.50757,17.18178,0,0,0,0,0,0,0,6.15701,9.88798,17.48577,0,0,0,0,0,0,0,4.9654,8.51225,15.71439,0,0,0,0,0,0,0,5.31776,8.98237,16.46462,0,0,0,0,0,0,0,5.06318,8.7791,15.72537,0,0,0,0,0,0,0,5.17315,8.7429,15.26942,0,0,0,0,0,0,0,4.22624,7.50259,12.44636,0,0,0,0,0,0,0,259.65803,261.99721,263.42668,0,0,0,0,0,0,0,261.76802,263.95163,264.89978,0,0,0,0,0,0,0,265.55252,267.85066,269.06354,0,0,0,0,0,0,0,259.32721,261.60067,262.7578,0,0,0,0,0,0,0,266.18159,267.81164,267.1362,0,0,0,0,0,0,0,261.78099,263.57171,263.33802,0,0,0,0,0,0,0,264.0998,265.66506,264.74677,0,0,0,0,0,0,0,264.07883,265.94876,265.96498,0,0,0,0,0,0,0,260.20025,261.92676,261.738,0,0,0,0,0,0,0,0.02562,0.02853,0.04389,0,0,0,0,0,0,0,0.0257,0.0286,0.04394,0,0,0,0,0,0,0,0.02624,0.02915,0.04463,0,0,0,0,0,0,0,0.02503,0.02791,0.04302,0,0,0,0,0,0,0,0.0261,0.029,0.04443,0,0,0,0,0,0,0,0.02542,0.02829,0.04349,0,0,0,0,0,0,0,0.02562,0.02852,0.04385,0,0,0,0,0,0,0,0.02593,0.02884,0.04427,0,0,0,0,0,0,0,0.0261,0.02904,0.04461,0,0,0,0,0,0,0,0.03109,0.04053,0.04237,0,0,0,0,0,0,0,0.03112,0.04058,0.04241,0,0,0,0,0,0,0,0.03111,0.04056,0.04238,0,0,0,0,0,0,0,0.03096,0.04036,0.04221,0,0,0,0,0,0,0,0.03109,0.04053,0.04235,0,0,0,0,0,0,0,0.03098,0.0404,0.04224,0,0,0,0,0,0,0,0.03106,0.0405,0.04234,0,0,0,0,0,0,0,0.03113,0.04059,0.04242,0,0,0,0,0,0,0,0.0312,0.04068,0.0425,0,0,0,0,0,0,0,0.75644,1.04909,1.76194,0,0,0,0,0,0,0,0.74387,1.0399,1.66867,0,0,0,0,0,0,0,0.87221,1.1468,1.87413,0,0,0,0,0,0,0,0.89329,1.22235,1.93119,0,0,0,0,0,0,0,0.8289,1.13875,1.87972,0,0,0,0,0,0,0,0.86386,1.16417,1.90739,0,0,0,0,0,0,0,0.84078,1.16047,1.81692,0,0,0,0,0,0,0,0.88094,1.20969,1.90528,0,0,0,0,0,0,0,0.73331,1.03005,1.58991,0,0,0,0,0,0,0,0.00742,0.01037,0.02062,0.00051,0.00076,0.0008,0.00128,0,0,0,0.00651,0.00908,0.01797,0.00051,0.00077,0.00081,0.00129,0,0,0,0.00709,0.00992,0.01987,0.00053,0.00078,0.00083,0.00134,0,0,0,0.00773,0.01083,0.02183,0.0005,0.00074,0.00079,0.00123,0,0,0,0.00394,0.00546,0.01064,0.00052,0.00078,0.00082,0.00133,0,0,0,0.00453,0.00629,0.01238,0.00051,0.00076,0.0008,0.00127,0,0,0,0.00385,0.00533,0.0103,0.00051,0.00076,0.00081,0.00128,0,0,0,0.00519,0.00723,0.01422,0.00052,0.00077,0.00082,0.00131,0,0,0,0.00392,0.00543,0.01036,0.00052,0.00078,0.00082,0.00132,0,0,0,0.03637,0.04272,0.06611,0.02426,0.02606,0.02642,0.0295,0,0,0,0.03508,0.04056,0.06075,0.02496,0.02677,0.02713,0.03023,0,0,0,0.03852,0.04451,0.06724,0.02699,0.02883,0.02919,0.03233,0,0,0,0.03581,0.04252,0.06764,0.02281,0.02456,0.02492,0.02795,0,0,0,0.0311,0.03426,0.04579,0.02657,0.02841,0.02877,0.03189,0,0,0,0.03026,0.03393,0.04756,0.02439,0.02617,0.02653,0.02959,0,0,0,0.02885,0.03195,0.04292,0.02453,0.02632,0.02668,0.02977,0,0,0,0.03284,0.03717,0.05285,0.02556,0.02738,0.02774,0.03085,0,0,0,0.02982,0.03298,0.04388,0.02549,0.02732,0.02769,0.03082,0,0,0,0.01676,0.02238,0.04307,0.00606,0.00771,0.00804,0.01088,0,0,0,0.01509,0.01994,0.0378,0.00617,0.00783,0.00816,0.01101,0,0,0,0.01661,0.0219,0.04202,0.00649,0.00819,0.00852,0.01141,0,0,0,0.01734,0.02328,0.0455,0.00581,0.00742,0.00774,0.01053,0,0,0,0.01035,0.01315,0.02336,0.00642,0.00811,0.00844,0.01132,0,0,0,0.01124,0.01449,0.02655,0.00606,0.0077,0.00803,0.01084,0,0,0,0.0099,0.01265,0.02236,0.0061,0.00775,0.00808,0.01092,0,0,0,0.01265,0.01649,0.03036,0.00627,0.00794,0.00827,0.01113,0,0,0,0.01005,0.01285,0.02249,0.00627,0.00795,0.00829,0.01118,0,0,0,0.01147,0.00557,0.00504,0,0,0,0,0,0,0,0.01304,0.00566,0.00507,0,0,0,0,0,0,0,0.0186,0.00586,0.00515,0,0,0,0,0,0,0,0.01693,0.00982,0.00503,0,0,0,0,0,0,0,0.01538,0.00583,0.00511,0,0,0,0,0,0,0,0.01683,0.00576,0.00504,0,0,0,0,0,0,0,0.01543,0.00794,0.00507,0,0,0,0,0,0,0,0.0151,0.00898,0.00456,0,0,0,0,0,0,0,0.00709,0.00329,0.00237,0,0,0,0,0,0,0,0.4836,0.81498,1.47434,0,0,0,0,0,0,0,0.4692,0.80086,1.33632,0,0,0,0,0,0,0,0.55761,0.95058,1.70176,0,0,0,0,0,0,0,0.57229,0.9868,1.72824,0,0,0,0,0,0,0,0.48195,0.86852,1.61023,0,0,0,0,0,0,0,0.5025,0.90307,1.65146,0,0,0,0,0,0,0,0.47702,0.86754,1.55555,0,0,0,0,0,0,0,0.50817,0.89925,1.56273,0,0,0,0,0,0,0,0.42218,0.78074,1.28114,0,0,0,0,0,0,0 +Large SUV,PH40G,2005,0.0215,0.02216,0.02299,0.02734,0,0,0,0,0,0,0.02209,0.02262,0.02333,0.02706,0,0,0,0,0,0,0.02432,0.02446,0.02507,0.02976,0,0,0,0,0,0,0.02023,0.02081,0.02169,0.02645,0,0,0,0,0,0,0.02335,0.0237,0.02414,0.0261,0,0,0,0,0,0,0.0213,0.02156,0.02202,0.02451,0,0,0,0,0,0,0.02128,0.02158,0.02198,0.02382,0,0,0,0,0,0,0.02253,0.02285,0.02337,0.0263,0,0,0,0,0,0,0.02216,0.0224,0.02273,0.02472,0,0,0,0,0,0,0.0152,0.01155,0.01221,0.02544,0,0,0,0,0,0,0.0139,0.01046,0.01135,0.02301,0,0,0,0,0,0,0.01554,0.01173,0.0127,0.029,0,0,0,0,0,0,0.0158,0.0134,0.01357,0.03058,0,0,0,0,0,0,0.00981,0.00852,0.00981,0.02415,0,0,0,0,0,0,0.01095,0.00923,0.01043,0.02578,0,0,0,0,0,0,0.00939,0.00885,0.00964,0.02332,0,0,0,0,0,0,0.01192,0.01018,0.01047,0.02483,0,0,0,0,0,0,0.00799,0.00688,0.00779,0.02052,0,0,0,0,0,0,2.49883,3.79272,4.91778,8.94899,0,0,0,0,0,0,2.43036,3.73186,4.92581,8.52828,0,0,0,0,0,0,2.68991,4.40328,5.89108,10.32223,0,0,0,0,0,0,2.79462,4.67579,5.78261,10.761,0,0,0,0,0,0,2.41196,3.95413,5.34889,9.56865,0,0,0,0,0,0,2.49419,4.14736,5.58117,9.95342,0,0,0,0,0,0,2.47761,4.25627,5.40286,9.66101,0,0,0,0,0,0,2.53818,4.39345,5.37855,9.55236,0,0,0,0,0,0,2.00894,3.66647,4.82534,8.21743,0,0,0,0,0,0,272.20226,273.52307,276.48712,276.61527,0,0,0,0,0,0,274.58457,275.81078,278.56434,278.21407,0,0,0,0,0,0,278.33847,279.62917,282.5243,282.44583,0,0,0,0,0,0,272.04728,273.30884,276.20669,276.15614,0,0,0,0,0,0,279.80708,280.69417,282.71229,280.7449,0,0,0,0,0,0,275.12099,276.10869,278.33086,276.83445,0,0,0,0,0,0,277.829,278.67527,280.60908,278.44821,0,0,0,0,0,0,277.36762,278.40223,280.73824,279.46319,0,0,0,0,0,0,273.38089,274.3566,276.49097,274.88313,0,0,0,0,0,0,0.00507,0.00544,0.0064,0.02049,0,0,0,0,0,0,0.00508,0.00545,0.00641,0.0205,0,0,0,0,0,0,0.00517,0.00554,0.0065,0.02078,0,0,0,0,0,0,0.00497,0.00533,0.00628,0.02011,0,0,0,0,0,0,0.00514,0.00551,0.00647,0.02069,0,0,0,0,0,0,0.00503,0.00539,0.00634,0.02029,0,0,0,0,0,0,0.00507,0.00543,0.0064,0.02047,0,0,0,0,0,0,0.00512,0.00549,0.00645,0.02064,0,0,0,0,0,0,0.00516,0.00553,0.00651,0.02081,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.02571,0,0,0,0,0,0,0.01255,0.01443,0.01776,0.02574,0,0,0,0,0,0,0.01255,0.01442,0.01776,0.02572,0,0,0,0,0,0,0.01249,0.01435,0.01767,0.02561,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.0257,0,0,0,0,0,0,0.0125,0.01436,0.01768,0.02563,0,0,0,0,0,0,0.01253,0.0144,0.01773,0.02569,0,0,0,0,0,0,0.01256,0.01443,0.01777,0.02574,0,0,0,0,0,0,0.01258,0.01446,0.01781,0.0258,0,0,0,0,0,0,0.28844,0.4567,0.59466,0.89365,0,0,0,0,0,0,0.28327,0.44692,0.5933,0.86412,0,0,0,0,0,0,0.30703,0.4943,0.64683,0.97862,0,0,0,0,0,0,0.30618,0.54338,0.67603,1.0224,0,0,0,0,0,0,0.28735,0.47746,0.63151,0.96893,0,0,0,0,0,0,0.29749,0.4943,0.64683,0.98751,0,0,0,0,0,0,0.29163,0.50132,0.63067,0.94673,0,0,0,0,0,0,0.31397,0.52292,0.64577,1.00185,0,0,0,0,0,0,0.24569,0.35067,0.46092,0.86731,0,0,0,0,0,0,0.0023,0.00368,0.00501,0.01209,0.00048,0.0007,0.00073,0.00084,0,0,0.00211,0.00327,0.00444,0.01063,0.00048,0.00071,0.00074,0.00085,0,0,0.00244,0.00301,0.00407,0.01155,0.00049,0.00073,0.00076,0.00087,0,0,0.00251,0.00373,0.0051,0.01268,0.00046,0.00069,0.00072,0.00082,0,0,0.00147,0.0023,0.00314,0.00664,0.00049,0.00072,0.00075,0.00086,0,0,0.00165,0.00235,0.0032,0.00752,0.00047,0.0007,0.00073,0.00084,0,0,0.00142,0.00217,0.00295,0.00633,0.00048,0.00071,0.00073,0.00084,0,0,0.00181,0.0026,0.00353,0.00852,0.00048,0.00072,0.00075,0.00086,0,0,0.00131,0.00197,0.00266,0.00631,0.00049,0.00072,0.00075,0.00086,0,0,0.0254,0.02832,0.03134,0.04728,0.02399,0.02562,0.02585,0.02677,0,0,0.02567,0.02809,0.03074,0.0446,0.02469,0.02633,0.02657,0.02748,0,0,0.02848,0.02953,0.03189,0.0488,0.02672,0.0284,0.02864,0.02954,0,0,0.02451,0.02709,0.03018,0.04733,0.02255,0.02413,0.02437,0.02527,0,0,0.02585,0.02755,0.02939,0.03709,0.0263,0.02798,0.02821,0.02912,0,0,0.02412,0.02552,0.02738,0.03694,0.02413,0.02575,0.02598,0.02687,0,0,0.02371,0.02524,0.02693,0.03431,0.02426,0.02589,0.02612,0.02703,0,0,0.02561,0.02725,0.02928,0.04038,0.02529,0.02695,0.02718,0.02809,0,0,0.02438,0.02571,0.02719,0.03517,0.02521,0.02687,0.02711,0.02804,0,0,0.00705,0.00963,0.01231,0.02641,0.00581,0.00731,0.00752,0.00837,0,0,0.00676,0.0089,0.01124,0.02351,0.00592,0.00743,0.00765,0.00849,0,0,0.00772,0.00865,0.01074,0.0257,0.00625,0.00779,0.00801,0.00885,0,0,0.00734,0.00962,0.01236,0.02753,0.00556,0.00702,0.00724,0.00806,0,0,0.0057,0.00721,0.00884,0.01565,0.00618,0.00771,0.00793,0.00876,0,0,0.00581,0.00704,0.00869,0.01715,0.00582,0.00731,0.00752,0.00834,0,0,0.00535,0.00671,0.0082,0.01473,0.00585,0.00735,0.00756,0.0084,0,0,0.00625,0.0077,0.0095,0.01932,0.00602,0.00754,0.00776,0.0086,0,0,0.00523,0.00641,0.00772,0.01479,0.00602,0.00754,0.00777,0.00862,0,0,0.01202,0.00582,0.00529,0.00176,0,0,0,0,0,0,0.01368,0.00592,0.00533,0.00177,0,0,0,0,0,0,0.0195,0.00612,0.00541,0.0018,0,0,0,0,0,0,0.01776,0.01026,0.00529,0.00176,0,0,0,0,0,0,0.01617,0.00611,0.00541,0.00179,0,0,0,0,0,0,0.01769,0.00604,0.00533,0.00177,0,0,0,0,0,0,0.01623,0.00833,0.00537,0.00178,0,0,0,0,0,0,0.01585,0.00941,0.00481,0.00176,0,0,0,0,0,0,0.00745,0.00344,0.0025,0.00162,0,0,0,0,0,0,0.21324,0.26238,0.36053,0.87318,0,0,0,0,0,0,0.19842,0.24505,0.34113,0.80987,0,0,0,0,0,0,0.22293,0.27379,0.38038,0.98281,0,0,0,0,0,0,0.22839,0.30666,0.40263,1.02159,0,0,0,0,0,0,0.15719,0.21896,0.31675,0.89741,0,0,0,0,0,0,0.16971,0.23018,0.32876,0.92458,0,0,0,0,0,0,0.15185,0.22318,0.30923,0.8695,0,0,0,0,0,0,0.18625,0.25477,0.33999,0.9136,0,0,0,0,0,0,0.13273,0.18736,0.26838,0.77673,0,0,0,0,0,0 +Large SUV,PH40G,2010,0,0.02122,0.02183,0.02253,0.02575,0,0,0,0,0,0,0.02182,0.02235,0.02297,0.02573,0,0,0,0,0,0,0.02374,0.02419,0.02512,0.02818,0,0,0,0,0,0,0.01984,0.02048,0.02125,0.02472,0,0,0,0,0,0,0.02323,0.02358,0.02394,0.02547,0,0,0,0,0,0,0.02107,0.02143,0.02191,0.02371,0,0,0,0,0,0,0.02115,0.02148,0.02179,0.02319,0,0,0,0,0,0,0.02227,0.02267,0.02321,0.02531,0,0,0,0,0,0,0.02202,0.0223,0.02269,0.02407,0,0,0,0,0,0,0.01083,0.00988,0.00851,0.01739,0,0,0,0,0,0,0.00951,0.00907,0.00774,0.01599,0,0,0,0,0,0,0.01033,0.0102,0.00872,0.01939,0,0,0,0,0,0,0.01222,0.01123,0.00968,0.02082,0,0,0,0,0,0,0.00701,0.00808,0.00676,0.01572,0,0,0,0,0,0,0.00749,0.00843,0.00712,0.01677,0,0,0,0,0,0,0.00724,0.00799,0.00669,0.01531,0,0,0,0,0,0,0.00865,0.0084,0.00744,0.01661,0,0,0,0,0,0,0.0058,0.00623,0.00652,0.01405,0,0,0,0,0,0,1.72061,2.74102,3.58502,6.4091,0,0,0,0,0,0,1.64197,2.71832,3.53004,6.25353,0,0,0,0,0,0,1.90217,3.18773,3.99381,7.52788,0,0,0,0,0,0,1.99214,3.15166,4.23997,7.90904,0,0,0,0,0,0,1.52014,2.78595,3.71385,6.94439,0,0,0,0,0,0,1.62622,2.9305,3.83855,7.24726,0,0,0,0,0,0,1.63437,2.83102,3.80371,7.04808,0,0,0,0,0,0,1.78892,2.87104,3.8016,6.98109,0,0,0,0,0,0,1.45423,2.54332,3.35073,6.03273,0,0,0,0,0,0,258.982,260.13634,262.47802,272.9807,0,0,0,0,0,0,261.2575,262.2648,264.36628,274.47183,0,0,0,0,0,0,264.83046,265.91704,268.16522,278.65589,0,0,0,0,0,0,258.82207,259.92387,262.19675,272.57002,0,0,0,0,0,0,266.24776,266.75077,268.02288,276.68567,0,0,0,0,0,0,261.79149,262.44192,263.95564,272.95718,0,0,0,0,0,0,264.37065,264.82071,266.00526,274.44882,0,0,0,0,0,0,263.9185,264.64016,266.27061,275.55026,0,0,0,0,0,0,260.13985,260.75493,262.16893,270.92047,0,0,0,0,0,0,0.00483,0.00544,0.00652,0.01289,0,0,0,0,0,0,0.00484,0.00545,0.00652,0.01288,0,0,0,0,0,0,0.00492,0.00554,0.00662,0.01305,0,0,0,0,0,0,0.00473,0.00533,0.0064,0.01266,0,0,0,0,0,0,0.0049,0.00551,0.00659,0.013,0,0,0,0,0,0,0.00479,0.00539,0.00646,0.01276,0,0,0,0,0,0,0.00483,0.00544,0.00651,0.01287,0,0,0,0,0,0,0.00488,0.00549,0.00657,0.01297,0,0,0,0,0,0,0.00491,0.00553,0.00662,0.01308,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.0183,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.01829,0,0,0,0,0,0,0.00942,0.0109,0.01366,0.0182,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00943,0.01091,0.01367,0.01822,0,0,0,0,0,0,0.00945,0.01093,0.01371,0.01827,0,0,0,0,0,0,0.00947,0.01096,0.01374,0.0183,0,0,0,0,0,0,0.00949,0.01098,0.01377,0.01834,0,0,0,0,0,0,0.10442,0.16865,0.15241,0.46982,0,0,0,0,0,0,0.1008,0.16773,0.1505,0.46098,0,0,0,0,0,0,0.10414,0.1802,0.16066,0.5253,0,0,0,0,0,0,0.11257,0.18925,0.16949,0.55472,0,0,0,0,0,0,0.09749,0.17291,0.15258,0.51553,0,0,0,0,0,0,0.10078,0.17843,0.15748,0.52727,0,0,0,0,0,0,0.10239,0.17383,0.15392,0.50724,0,0,0,0,0,0,0.11026,0.17998,0.16782,0.53721,0,0,0,0,0,0,0.0752,0.12741,0.15179,0.46901,0,0,0,0,0,0,0.00138,0.00234,0.00329,0.00858,0.00047,0.0007,0.00073,0.0008,0,0,0.00129,0.00216,0.00305,0.00766,0.00048,0.00071,0.00074,0.00081,0,0,0.00117,0.00194,0.00316,0.00817,0.00049,0.00073,0.00076,0.00083,0,0,0.00141,0.00238,0.00341,0.00895,0.00046,0.00069,0.00072,0.00078,0,0,0.00112,0.00184,0.00245,0.0052,0.00049,0.00072,0.00075,0.00082,0,0,0.00109,0.00179,0.00255,0.0057,0.00047,0.0007,0.00073,0.0008,0,0,0.00106,0.00174,0.00231,0.0049,0.00048,0.00071,0.00073,0.0008,0,0,0.00112,0.00186,0.00269,0.00631,0.00048,0.00072,0.00074,0.00082,0,0,0.00095,0.00155,0.00225,0.00484,0.00048,0.00072,0.00075,0.00082,0,0,0.02352,0.0257,0.02795,0.03986,0.02399,0.02562,0.02585,0.02644,0,0,0.02397,0.02594,0.02801,0.03834,0.02469,0.02633,0.02657,0.02715,0,0,0.02569,0.02744,0.03032,0.04163,0.02671,0.0284,0.02864,0.02921,0,0,0.02219,0.02442,0.02684,0.03942,0.02254,0.02413,0.02437,0.02494,0,0,0.0251,0.02666,0.02801,0.03408,0.0263,0.02797,0.02821,0.02879,0,0,0.02289,0.02443,0.02613,0.03312,0.02412,0.02574,0.02598,0.02655,0,0,0.02294,0.02439,0.02563,0.03131,0.02425,0.02589,0.02612,0.0267,0,0,0.02415,0.02577,0.02766,0.03573,0.02529,0.02694,0.02718,0.02776,0,0,0.02362,0.02489,0.02643,0.03209,0.02521,0.02687,0.02711,0.0277,0,0,0.00539,0.00732,0.0093,0.01985,0.0058,0.0073,0.00752,0.00806,0,0,0.00526,0.007,0.00883,0.01797,0.00592,0.00743,0.00765,0.00818,0,0,0.00526,0.0068,0.00935,0.01936,0.00624,0.00779,0.00801,0.00854,0,0,0.00529,0.00726,0.0094,0.02054,0.00556,0.00702,0.00723,0.00776,0,0,0.00504,0.00642,0.00761,0.01299,0.00617,0.00771,0.00793,0.00846,0,0,0.00472,0.00608,0.00758,0.01377,0.00581,0.0073,0.00752,0.00804,0,0,0.00467,0.00596,0.00705,0.01208,0.00584,0.00735,0.00756,0.0081,0,0,0.00497,0.0064,0.00807,0.01521,0.00601,0.00754,0.00776,0.00829,0,0,0.00456,0.00569,0.00705,0.01206,0.00601,0.00754,0.00777,0.00831,0,0,0.00551,0.00498,0.00167,0.00174,0,0,0,0,0,0,0.0056,0.00502,0.00169,0.00175,0,0,0,0,0,0,0.0058,0.00509,0.00171,0.00178,0,0,0,0,0,0,0.00972,0.00497,0.00167,0.00174,0,0,0,0,0,0,0.00579,0.00511,0.00171,0.00177,0,0,0,0,0,0,0.00572,0.00502,0.00168,0.00174,0,0,0,0,0,0,0.0079,0.00507,0.0017,0.00175,0,0,0,0,0,0,0.00892,0.00454,0.00167,0.00173,0,0,0,0,0,0,0.00326,0.00236,0.00155,0.0016,0,0,0,0,0,0,0.08586,0.12696,0.1798,0.59575,0,0,0,0,0,0,0.07547,0.11512,0.16492,0.56352,0,0,0,0,0,0,0.08347,0.13007,0.18393,0.65564,0,0,0,0,0,0,0.097,0.14287,0.20141,0.68613,0,0,0,0,0,0,0.05604,0.09956,0.15044,0.58993,0,0,0,0,0,0,0.05965,0.10373,0.15463,0.60458,0,0,0,0,0,0,0.05659,0.09733,0.14747,0.57396,0,0,0,0,0,0,0.07098,0.11084,0.16694,0.61349,0,0,0,0,0,0,0.05187,0.08729,0.14693,0.54041,0,0,0,0,0 +Large SUV,PH40G,2015,0,0,0.02105,0.02153,0.02214,0.02406,0,0,0,0,0,0,0.02169,0.02213,0.02267,0.02433,0,0,0,0,0,0,0.02363,0.02419,0.02476,0.02656,0,0,0,0,0,0,0.01965,0.02016,0.02079,0.02284,0,0,0,0,0,0,0.02316,0.02346,0.02384,0.02483,0,0,0,0,0,0,0.021,0.02136,0.02177,0.0229,0,0,0,0,0,0,0.0211,0.02137,0.02171,0.02259,0,0,0,0,0,0,0.02218,0.02257,0.02301,0.0243,0,0,0,0,0,0,0.02198,0.02228,0.02261,0.02347,0,0,0,0,0,0,0.00805,0.00623,0.00667,0.01002,0,0,0,0,0,0,0.0074,0.00575,0.00625,0.00931,0,0,0,0,0,0,0.00768,0.0064,0.00697,0.01073,0,0,0,0,0,0,0.00842,0.00705,0.00766,0.01172,0,0,0,0,0,0,0.00573,0.00513,0.00589,0.00878,0,0,0,0,0,0,0.00608,0.00543,0.00618,0.00929,0,0,0,0,0,0,0.00577,0.00512,0.0059,0.00871,0,0,0,0,0,0,0.00636,0.00562,0.00627,0.00941,0,0,0,0,0,0,0.00479,0.00502,0.00571,0.00826,0,0,0,0,0,0,1.20946,2.16828,2.95967,4.46943,0,0,0,0,0,0,1.20605,2.16593,2.9716,4.44162,0,0,0,0,0,0,1.32541,2.39526,3.36397,5.2091,0,0,0,0,0,0,1.31936,2.55072,3.58753,5.51337,0,0,0,0,0,0,1.15925,2.33057,3.30072,4.96191,0,0,0,0,0,0,1.2123,2.38725,3.38787,5.14376,0,0,0,0,0,0,1.19222,2.39774,3.3887,5.0806,0,0,0,0,0,0,1.21916,2.36381,3.29637,4.96617,0,0,0,0,0,0,1.09269,2.12101,2.93067,4.35071,0,0,0,0,0,0,208.90289,210.10545,212.07411,233.92207,0,0,0,0,0,0,210.65993,211.72602,213.50303,235.13312,0,0,0,0,0,0,213.57494,214.72084,216.61797,238.73532,0,0,0,0,0,0,208.76815,209.92794,211.84557,233.58344,0,0,0,0,0,0,214.42223,215.01792,216.13277,236.80911,0,0,0,0,0,0,210.91686,211.65007,212.95748,233.70185,0,0,0,0,0,0,212.89901,213.44445,214.49048,234.89937,0,0,0,0,0,0,212.65933,213.45823,214.85921,235.9354,0,0,0,0,0,0,209.53696,210.22218,211.44203,231.89469,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.00661,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00668,0,0,0,0,0,0,0.00284,0.00325,0.00384,0.0065,0,0,0,0,0,0,0.00294,0.00335,0.00395,0.00666,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.00654,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00293,0.00334,0.00394,0.00665,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00671,0,0,0,0,0,0,0.00947,0.0108,0.01374,0.01445,0,0,0,0,0,0,0.00948,0.01081,0.01376,0.01446,0,0,0,0,0,0,0.00948,0.0108,0.01375,0.01446,0,0,0,0,0,0,0.00943,0.01075,0.01369,0.01439,0,0,0,0,0,0,0.00947,0.01079,0.01374,0.01445,0,0,0,0,0,0,0.00944,0.01076,0.0137,0.0144,0,0,0,0,0,0,0.00947,0.01079,0.01373,0.01444,0,0,0,0,0,0,0.00949,0.01081,0.01376,0.01447,0,0,0,0,0,0,0.00951,0.01083,0.01379,0.0145,0,0,0,0,0,0,0.06363,0.07889,0.11795,0.21915,0,0,0,0,0,0,0.0633,0.07755,0.11629,0.21619,0,0,0,0,0,0,0.06331,0.0835,0.12449,0.2399,0,0,0,0,0,0,0.06635,0.08912,0.1328,0.25532,0,0,0,0,0,0,0.05817,0.07756,0.11713,0.23003,0,0,0,0,0,0,0.06086,0.08101,0.12191,0.23739,0,0,0,0,0,0,0.05958,0.07843,0.1186,0.22974,0,0,0,0,0,0,0.06332,0.08649,0.12954,0.24752,0,0,0,0,0,0,0.04577,0.07747,0.11635,0.21957,0,0,0,0,0,0,0.00118,0.002,0.00292,0.00564,0.00047,0.0007,0.00073,0.00079,0,0,0.00112,0.00191,0.00277,0.00519,0.00048,0.00071,0.00074,0.0008,0,0,0.00102,0.00194,0.00283,0.0054,0.00049,0.00073,0.00076,0.00081,0,0,0.00118,0.00204,0.00298,0.00582,0.00046,0.00069,0.00072,0.00077,0,0,0.00102,0.00166,0.00236,0.004,0.00049,0.00072,0.00075,0.00081,0,0,0.00098,0.00169,0.00242,0.00422,0.00047,0.0007,0.00073,0.00078,0,0,0.00097,0.00158,0.00223,0.00376,0.00048,0.00071,0.00073,0.00079,0,0,0.001,0.00175,0.00251,0.0045,0.00048,0.00072,0.00074,0.0008,0,0,0.00087,0.00154,0.00218,0.00367,0.00048,0.00072,0.00075,0.0008,0,0,0.02301,0.02484,0.02695,0.03332,0.02398,0.02562,0.02585,0.02632,0,0,0.02356,0.02529,0.02725,0.03288,0.02469,0.02633,0.02657,0.02703,0,0,0.02533,0.0274,0.02943,0.03544,0.02671,0.0284,0.02864,0.0291,0,0,0.02162,0.02352,0.0257,0.0324,0.02254,0.02413,0.02437,0.02482,0,0,0.02486,0.02622,0.02775,0.03146,0.0263,0.02797,0.02821,0.02867,0,0,0.02265,0.02418,0.02578,0.02986,0.02412,0.02574,0.02598,0.02643,0,0,0.02272,0.02401,0.02543,0.02882,0.02425,0.02589,0.02612,0.02658,0,0,0.02385,0.02547,0.02717,0.03173,0.02529,0.02694,0.02718,0.02764,0,0,0.02343,0.02485,0.02624,0.02957,0.02521,0.02687,0.02711,0.02758,0,0,0.00494,0.00656,0.00843,0.01406,0.0058,0.0073,0.00752,0.00795,0,0,0.00489,0.00643,0.00816,0.01314,0.00592,0.00743,0.00765,0.00807,0,0,0.00493,0.00677,0.00856,0.01388,0.00624,0.00779,0.00801,0.00843,0,0,0.00478,0.00647,0.00839,0.01432,0.00556,0.00702,0.00723,0.00765,0,0,0.00483,0.00604,0.00739,0.01067,0.00617,0.00771,0.00793,0.00835,0,0,0.00451,0.00586,0.00728,0.01089,0.00581,0.0073,0.00752,0.00794,0,0,0.00448,0.00562,0.00687,0.00988,0.00584,0.00735,0.00756,0.00799,0,0,0.0047,0.00614,0.00764,0.01167,0.00601,0.00754,0.00776,0.00818,0,0,0.0044,0.00566,0.00688,0.00983,0.00601,0.00754,0.00777,0.0082,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.00403,0.00135,0.00136,0.0015,0,0,0,0,0,0,0.00409,0.00137,0.00138,0.00152,0,0,0,0,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.0041,0.00137,0.00138,0.00151,0,0,0,0,0,0,0.00404,0.00135,0.00136,0.00149,0,0,0,0,0,0,0.00407,0.00136,0.00137,0.0015,0,0,0,0,0,0,0.00365,0.00134,0.00135,0.00148,0,0,0,0,0,0,0.00189,0.00124,0.00125,0.00137,0,0,0,0,0,0,0.06107,0.08856,0.14503,0.35368,0,0,0,0,0,0,0.05602,0.08205,0.13702,0.33849,0,0,0,0,0,0,0.05982,0.09044,0.15099,0.37484,0,0,0,0,0,0,0.06432,0.09805,0.16208,0.39252,0,0,0,0,0,0,0.04478,0.07489,0.13466,0.34278,0,0,0,0,0,0,0.04682,0.07721,0.13691,0.34637,0,0,0,0,0,0,0.04432,0.07383,0.13301,0.33611,0,0,0,0,0,0,0.05163,0.08321,0.14411,0.35965,0,0,0,0,0,0,0.04191,0.07401,0.13211,0.33009,0,0,0,0 +Large SUV,PH40G,2020,0,0,0,0.02099,0.02138,0.02179,0.02316,0,0,0,0,0,0,0.02164,0.022,0.02236,0.02357,0,0,0,0,0,0,0.02368,0.02405,0.02443,0.02572,0,0,0,0,0,0,0.01959,0.02,0.02042,0.02187,0,0,0,0,0,0,0.02312,0.02337,0.02362,0.02441,0,0,0,0,0,0,0.02099,0.02126,0.02153,0.02241,0,0,0,0,0,0,0.02106,0.02129,0.02151,0.02222,0,0,0,0,0,0,0.02216,0.02246,0.02276,0.02373,0,0,0,0,0,0,0.02198,0.02221,0.02242,0.02311,0,0,0,0,0,0,0.00622,0.00531,0.00528,0.00725,0,0,0,0,0,0,0.00559,0.00486,0.00487,0.00671,0,0,0,0,0,0,0.00588,0.0054,0.00543,0.0077,0,0,0,0,0,0,0.0065,0.00598,0.006,0.00847,0,0,0,0,0,0,0.00398,0.00413,0.00431,0.00622,0,0,0,0,0,0,0.00433,0.00442,0.00458,0.00661,0,0,0,0,0,0,0.00396,0.00411,0.0043,0.00619,0,0,0,0,0,0,0.00482,0.00462,0.00472,0.00671,0,0,0,0,0,0,0.00407,0.00401,0.00416,0.00586,0,0,0,0,0,0,0.99206,1.52807,1.92959,2.9974,0,0,0,0,0,0,0.97371,1.51164,1.91354,2.97491,0,0,0,0,0,0,1.02676,1.67356,2.16254,3.49728,0,0,0,0,0,0,1.09388,1.78868,2.31873,3.72493,0,0,0,0,0,0,0.92531,1.57942,2.04718,3.30587,0,0,0,0,0,0,0.9563,1.62959,2.11972,3.44477,0,0,0,0,0,0,0.95705,1.62668,2.10664,3.39496,0,0,0,0,0,0,0.98782,1.62281,2.08061,3.31894,0,0,0,0,0,0,0.88084,1.44133,1.8306,2.88136,0,0,0,0,0,0,179.40777,180.59417,182.57119,199.38448,0,0,0,0,0,0,180.84125,181.91036,183.716,200.31641,0,0,0,0,0,0,183.38144,184.52199,186.43889,203.43358,0,0,0,0,0,0,179.28322,180.43242,182.36328,199.08663,0,0,0,0,0,0,183.81824,184.48271,185.69332,201.40737,0,0,0,0,0,0,180.89197,181.67301,183.05444,198.87244,0,0,0,0,0,0,182.49343,183.11355,184.26012,199.76077,0,0,0,0,0,0,182.41445,183.25373,184.7213,200.80969,0,0,0,0,0,0,179.66247,180.40088,181.70163,197.27036,0,0,0,0,0,0,0.00297,0.00336,0.00395,0.00534,0,0,0,0,0,0,0.00298,0.00336,0.00395,0.00533,0,0,0,0,0,0,0.00302,0.00341,0.004,0.00539,0,0,0,0,0,0,0.00291,0.00329,0.00387,0.00525,0,0,0,0,0,0,0.00301,0.00339,0.00398,0.00537,0,0,0,0,0,0,0.00294,0.00333,0.00391,0.00528,0,0,0,0,0,0,0.00297,0.00335,0.00394,0.00533,0,0,0,0,0,0,0.003,0.00338,0.00397,0.00537,0,0,0,0,0,0,0.00302,0.00341,0.00401,0.00541,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01375,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01374,0,0,0,0,0,0,0.00941,0.01082,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01083,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01088,0.01375,0.01375,0,0,0,0,0,0,0.00948,0.0109,0.01378,0.01378,0,0,0,0,0,0,0.04319,0.07113,0.09563,0.13529,0,0,0,0,0,0,0.04245,0.06984,0.09407,0.13307,0,0,0,0,0,0,0.04277,0.0749,0.10023,0.14497,0,0,0,0,0,0,0.04512,0.08024,0.10733,0.15532,0,0,0,0,0,0,0.03788,0.06898,0.09306,0.13578,0,0,0,0,0,0,0.04,0.07245,0.09754,0.1417,0,0,0,0,0,0,0.03881,0.07,0.09457,0.1369,0,0,0,0,0,0,0.04413,0.0775,0.10403,0.14951,0,0,0,0,0,0,0.0401,0.06925,0.09321,0.13276,0,0,0,0,0,0,0.00108,0.00175,0.00233,0.00418,0.00047,0.0007,0.00073,0,0,0,0.00103,0.00167,0.00221,0.00391,0.00048,0.00071,0.00074,0,0,0,0.00105,0.0017,0.00226,0.00403,0.00049,0.00073,0.00076,0,0,0,0.00109,0.00177,0.00237,0.00429,0.00046,0.00069,0.00072,0,0,0,0.00092,0.00146,0.00189,0.00319,0.00049,0.00072,0.00075,0,0,0,0.00093,0.00149,0.00194,0.00331,0.00047,0.0007,0.00073,0,0,0,0.00087,0.00139,0.00179,0.003,0.00048,0.00071,0.00073,0,0,0,0.00096,0.00153,0.00201,0.00348,0.00048,0.00072,0.00074,0,0,0,0.00085,0.00135,0.00175,0.00292,0.00048,0.00072,0.00075,0,0,0,0.02277,0.02427,0.02563,0.03002,0.02398,0.02562,0.02585,0,0,0,0.02336,0.02476,0.02602,0.03001,0.02468,0.02633,0.02657,0,0,0,0.02541,0.02686,0.02816,0.03234,0.02671,0.0284,0.02864,0,0,0,0.02139,0.02293,0.02433,0.02891,0.02254,0.02413,0.02437,0,0,0,0.02464,0.0258,0.02676,0.02969,0.0263,0.02797,0.02821,0,0,0,0.02253,0.02373,0.02475,0.02788,0.02412,0.02574,0.02598,0,0,0,0.02251,0.0236,0.0245,0.02719,0.02425,0.02589,0.02612,0,0,0,0.02375,0.02501,0.02609,0.02947,0.02528,0.02694,0.02718,0,0,0,0.0234,0.02446,0.02534,0.02796,0.0252,0.02687,0.02711,0,0,0,0.00473,0.00606,0.00726,0.01114,0.0058,0.0073,0.00752,0,0,0,0.00472,0.00596,0.00707,0.0106,0.00591,0.00743,0.00765,0,0,0,0.00501,0.00629,0.00744,0.01114,0.00624,0.00779,0.00801,0,0,0,0.00459,0.00595,0.00718,0.01123,0.00555,0.00702,0.00723,0,0,0,0.00464,0.00566,0.00652,0.00911,0.00617,0.00771,0.00793,0,0,0,0.00441,0.00547,0.00637,0.00914,0.00581,0.0073,0.00752,0,0,0,0.0043,0.00526,0.00605,0.00843,0.00584,0.00735,0.00756,0,0,0,0.00461,0.00573,0.00668,0.00967,0.00601,0.00754,0.00776,0,0,0,0.00437,0.00531,0.00608,0.0084,0.00601,0.00754,0.00777,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00128,0,0,0,0,0,0,0.00117,0.00118,0.00119,0.0013,0,0,0,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00117,0.00118,0.00118,0.00128,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00127,0,0,0,0,0,0,0.00116,0.00117,0.00118,0.00127,0,0,0,0,0,0,0.00115,0.00115,0.00116,0.00126,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00116,0,0,0,0,0,0,0.05341,0.07612,0.11524,0.26525,0,0,0,0,0,0,0.04838,0.06964,0.10722,0.2538,0,0,0,0,0,0,0.05156,0.0772,0.11885,0.27833,0,0,0,0,0,0,0.05602,0.08414,0.12819,0.29028,0,0,0,0,0,0,0.03717,0.06063,0.10004,0.2557,0,0,0,0,0,0,0.03927,0.06344,0.1031,0.25731,0,0,0,0,0,0,0.0365,0.05927,0.0978,0.25022,0,0,0,0,0,0,0.04437,0.06883,0.1096,0.26769,0,0,0,0,0,0,0.03732,0.05944,0.09752,0.24821,0,0,0 +Large SUV,PH40G,2025,0,0,0,0,0.0208,0.02104,0.0213,0.02238,0,0,0,0,0,0,0.02147,0.02169,0.02192,0.02288,0,0,0,0,0,0,0.02349,0.02373,0.02397,0.02499,0,0,0,0,0,0,0.01939,0.01965,0.01992,0.02104,0,0,0,0,0,0,0.02299,0.02315,0.0233,0.02395,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.0219,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.0218,0,0,0,0,0,0,0.02202,0.0222,0.02239,0.02317,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02271,0,0,0,0,0,0,0.00492,0.00386,0.00374,0.00549,0,0,0,0,0,0,0.00427,0.00341,0.00333,0.00499,0,0,0,0,0,0,0.0046,0.0038,0.00372,0.00575,0,0,0,0,0,0,0.00517,0.00426,0.00416,0.00637,0,0,0,0,0,0,0.00261,0.00245,0.00253,0.0043,0,0,0,0,0,0,0.00298,0.00273,0.00278,0.00466,0,0,0,0,0,0,0.00255,0.0024,0.00249,0.00425,0,0,0,0,0,0,0.00346,0.00299,0.003,0.00481,0,0,0,0,0,0,0.00263,0.00238,0.00244,0.00403,0,0,0,0,0,0,0.66178,0.9675,1.23518,2.08322,0,0,0,0,0,0,0.63104,0.93411,1.19784,2.0427,0,0,0,0,0,0,0.67437,1.04187,1.35999,2.41971,0,0,0,0,0,0,0.72303,1.12145,1.46792,2.59248,0,0,0,0,0,0,0.54623,0.9063,1.19724,2.19896,0,0,0,0,0,0,0.57771,0.95224,1.26003,2.3157,0,0,0,0,0,0,0.56408,0.93382,1.23279,2.26084,0,0,0,0,0,0,0.61098,0.96542,1.25666,2.24153,0,0,0,0,0,0,0.5244,0.83354,1.07725,1.911,0,0,0,0,0,0,147.83877,148.5656,150.03975,167.74222,0,0,0,0,0,0,148.95279,149.57707,150.89656,168.40381,0,0,0,0,0,0,151.07933,151.76098,153.17582,171.08617,0,0,0,0,0,0,147.72954,148.42581,149.86082,167.47969,0,0,0,0,0,0,151.1798,151.45314,152.23791,168.90959,0,0,0,0,0,0,148.84387,149.22183,150.16391,166.91435,0,0,0,0,0,0,150.07392,150.31158,151.04251,167.49902,0,0,0,0,0,0,150.12127,150.54642,151.56239,168.58579,0,0,0,0,0,0,147.78842,148.13016,148.99882,165.4903,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00304,0.0034,0.00398,0.00518,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00503,0,0,0,0,0,0,0.00303,0.00339,0.00397,0.00516,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00507,0,0,0,0,0,0,0.00299,0.00335,0.00392,0.00511,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00515,0,0,0,0,0,0,0.00304,0.0034,0.00399,0.0052,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.0265,0.03999,0.05369,0.09116,0,0,0,0,0,0,0.02562,0.03874,0.05217,0.08907,0,0,0,0,0,0,0.02589,0.04123,0.05522,0.09728,0,0,0,0,0,0,0.02746,0.04433,0.05933,0.10468,0,0,0,0,0,0,0.02139,0.03597,0.04887,0.08873,0,0,0,0,0,0,0.02313,0.03846,0.05201,0.09353,0,0,0,0,0,0,0.02193,0.03659,0.04975,0.08946,0,0,0,0,0,0,0.02566,0.04146,0.05588,0.09885,0,0,0,0,0,0,0.02278,0.03656,0.04954,0.08688,0,0,0,0,0,0,0.00071,0.00113,0.0015,0.00301,0.00047,0.0007,0,0,0,0,0.00068,0.00108,0.00143,0.00283,0.00048,0.00071,0,0,0,0,0.00069,0.00109,0.00146,0.0029,0.00049,0.00073,0,0,0,0,0.00072,0.00114,0.00153,0.00307,0.00046,0.00069,0,0,0,0,0.0006,0.00094,0.00123,0.00233,0.00049,0.00072,0,0,0,0,0.00061,0.00096,0.00126,0.00241,0.00047,0.0007,0,0,0,0,0.00058,0.0009,0.00116,0.00218,0.00048,0.00071,0,0,0,0,0.00063,0.00099,0.0013,0.00252,0.00048,0.00072,0,0,0,0,0.00056,0.00088,0.00113,0.00214,0.00048,0.00072,0,0,0,0,0.02198,0.02291,0.02378,0.02732,0.02398,0.02562,0,0,0,0,0.0226,0.02348,0.02428,0.02753,0.02468,0.02633,0,0,0,0,0.02464,0.02554,0.02638,0.02976,0.02671,0.0284,0,0,0,0,0.02058,0.02154,0.02244,0.02608,0.02254,0.02413,0,0,0,0,0.02399,0.02471,0.02534,0.0278,0.0263,0.02797,0,0,0,0,0.02187,0.02262,0.02328,0.02588,0.02412,0.02574,0,0,0,0,0.0219,0.02258,0.02316,0.02542,0.02425,0.02589,0,0,0,0,0.02307,0.02385,0.02455,0.02734,0.02528,0.02694,0,0,0,0,0.0228,0.02347,0.02403,0.02626,0.0252,0.02687,0,0,0,0,0.00403,0.00485,0.00562,0.00875,0.0058,0.0073,0,0,0,0,0.00405,0.00482,0.00554,0.00841,0.00591,0.00743,0,0,0,0,0.00433,0.00512,0.00586,0.00885,0.00624,0.00779,0,0,0,0,0.00387,0.00471,0.00551,0.00873,0.00555,0.00702,0,0,0,0,0.00407,0.0047,0.00526,0.00743,0.00617,0.00771,0,0,0,0,0.00382,0.00448,0.00506,0.00737,0.00581,0.0073,0,0,0,0,0.00375,0.00435,0.00487,0.00687,0.00584,0.00735,0,0,0,0,0.00401,0.0047,0.00532,0.00779,0.00601,0.00754,0,0,0,0,0.00384,0.00443,0.00493,0.00691,0.00601,0.00754,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.00109,0,0,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00097,0.00108,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00106,0,0,0,0,0,0,0.00096,0.00096,0.00096,0.00107,0,0,0,0,0,0,0.00094,0.00095,0.00095,0.00106,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00098,0,0,0,0,0,0,0.04543,0.05964,0.08818,0.22467,0,0,0,0,0,0,0.04023,0.05306,0.08002,0.21368,0,0,0,0,0,0,0.04351,0.05933,0.08944,0.2346,0,0,0,0,0,0,0.04783,0.06536,0.0972,0.24394,0,0,0,0,0,0,0.02813,0.04123,0.06826,0.21042,0,0,0,0,0,0,0.03059,0.0444,0.07181,0.21262,0,0,0,0,0,0,0.02727,0.03955,0.06551,0.20423,0,0,0,0,0,0,0.03528,0.04953,0.07808,0.22178,0,0,0,0,0,0,0.02777,0.03996,0.06598,0.20394,0,0 +Large SUV,PH40G,2030,0,0,0,0,0,0.0208,0.02104,0.02129,0.02202,0,0,0,0,0,0,0.02147,0.02169,0.02191,0.02257,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02465,0,0,0,0,0,0,0.01939,0.01964,0.0199,0.02067,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02374,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.02167,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.02161,0,0,0,0,0,0,0.02201,0.0222,0.02238,0.02291,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02252,0,0,0,0,0,0,0.00455,0.00347,0.00337,0.00458,0,0,0,0,0,0,0.00391,0.00302,0.00296,0.00409,0,0,0,0,0,0,0.00424,0.00337,0.00331,0.00467,0,0,0,0,0,0,0.00479,0.0038,0.00372,0.0052,0,0,0,0,0,0,0.00223,0.00201,0.00209,0.00318,0,0,0,0,0,0,0.0026,0.00228,0.00234,0.00351,0,0,0,0,0,0,0.00216,0.00196,0.00205,0.00313,0,0,0,0,0,0,0.00308,0.00256,0.00258,0.00374,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00301,0,0,0,0,0,0,0.58559,0.85434,1.10349,1.64391,0,0,0,0,0,0,0.55211,0.81785,1.06129,1.59145,0,0,0,0,0,0,0.59301,0.91344,1.20586,1.86989,0,0,0,0,0,0,0.63713,0.98481,1.30299,2.01056,0,0,0,0,0,0,0.45912,0.77028,1.03065,1.63208,0,0,0,0,0,0,0.4905,0.81464,1.09123,1.73174,0,0,0,0,0,0,0.47362,0.79327,1.06122,1.67854,0,0,0,0,0,0,0.52395,0.83228,1.09601,1.69965,0,0,0,0,0,0,0.44194,0.71054,0.92995,1.43299,0,0,0,0,0,0,135.38297,136.63864,138.73799,150.23079,0,0,0,0,0,0,136.3743,137.53975,139.49517,150.75644,0,0,0,0,0,0,138.33607,139.56287,141.62039,153.192,0,0,0,0,0,0,135.28045,136.50771,138.57013,149.99007,0,0,0,0,0,0,138.3167,139.16703,140.61766,150.98435,0,0,0,0,0,0,136.20994,137.14778,138.73931,149.27268,0,0,0,0,0,0,137.29769,138.11108,139.50502,149.70743,0,0,0,0,0,0,137.38947,138.37583,140.04413,150.79217,0,0,0,0,0,0,135.22477,136.12443,137.63836,147.95375,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.00511,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.0051,0,0,0,0,0,0,0.00304,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00293,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00303,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00296,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00301,0.00337,0.00396,0.00514,0,0,0,0,0,0,0.00304,0.00339,0.00399,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.01081,0.01368,0.01368,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01082,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01087,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02145,0.03182,0.0438,0.06849,0,0,0,0,0,0,0.02053,0.03058,0.04228,0.06642,0,0,0,0,0,0,0.02069,0.0323,0.0445,0.07183,0,0,0,0,0,0,0.02195,0.03471,0.04776,0.07729,0,0,0,0,0,0,0.01633,0.02723,0.03835,0.06353,0,0,0,0,0,0,0.01792,0.0294,0.04112,0.06757,0,0,0,0,0,0,0.01676,0.02772,0.03905,0.06418,0,0,0,0,0,0,0.02,0.03192,0.04444,0.07192,0,0,0,0,0,0,0.01752,0.02798,0.03927,0.06295,0,0,0,0,0,0,0.00071,0.00112,0.0015,0.00249,0.00047,0,0,0,0,0,0.00068,0.00108,0.00142,0.00234,0.00048,0,0,0,0,0,0.00069,0.00109,0.00145,0.0024,0.00049,0,0,0,0,0,0.00072,0.00114,0.00152,0.00254,0.00046,0,0,0,0,0,0.0006,0.00094,0.00122,0.00193,0.00049,0,0,0,0,0,0.00061,0.00096,0.00125,0.002,0.00047,0,0,0,0,0,0.00058,0.0009,0.00115,0.00182,0.00048,0,0,0,0,0,0.00063,0.00099,0.0013,0.00209,0.00048,0,0,0,0,0,0.00056,0.00087,0.00113,0.00178,0.00048,0,0,0,0,0,0.02197,0.0229,0.02376,0.02611,0.02398,0,0,0,0,0,0.0226,0.02347,0.02426,0.02641,0.02468,0,0,0,0,0,0.02464,0.02553,0.02635,0.0286,0.02671,0,0,0,0,0,0.02058,0.02153,0.02241,0.02484,0.02254,0,0,0,0,0,0.02399,0.02471,0.02533,0.02693,0.0263,0,0,0,0,0,0.02187,0.02261,0.02326,0.02497,0.02412,0,0,0,0,0,0.0219,0.02257,0.02314,0.02462,0.02425,0,0,0,0,0,0.02306,0.02384,0.02453,0.02637,0.02528,0,0,0,0,0,0.0228,0.02346,0.02403,0.02547,0.0252,0,0,0,0,0,0.00402,0.00484,0.0056,0.00768,0.0058,0,0,0,0,0,0.00404,0.00482,0.00552,0.00742,0.00591,0,0,0,0,0,0.00432,0.00512,0.00584,0.00783,0.00624,0,0,0,0,0,0.00387,0.00471,0.00548,0.00764,0.00555,0,0,0,0,0,0.00406,0.0047,0.00525,0.00667,0.00617,0,0,0,0,0,0.00382,0.00448,0.00505,0.00657,0.00581,0,0,0,0,0,0.00375,0.00435,0.00485,0.00616,0.00584,0,0,0,0,0,0.004,0.00469,0.00531,0.00693,0.00601,0,0,0,0,0,0.00384,0.00443,0.00493,0.0062,0.00601,0,0,0,0,0,0.00086,0.00087,0.00089,0.00096,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00098,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00096,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00095,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00095,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00087,0,0,0,0,0,0,0.0431,0.05549,0.08243,0.19874,0,0,0,0,0,0,0.0379,0.04894,0.07427,0.18756,0,0,0,0,0,0,0.04116,0.0548,0.08314,0.2054,0,0,0,0,0,0,0.0454,0.06055,0.09046,0.21365,0,0,0,0,0,0,0.02565,0.03653,0.0615,0.17931,0,0,0,0,0,0,0.02816,0.03971,0.0651,0.1819,0,0,0,0,0,0,0.02475,0.03481,0.05865,0.17291,0,0,0,0,0,0,0.03274,0.04483,0.07135,0.19132,0,0,0,0,0,0,0.02515,0.03527,0.05933,0.17412,0 +Large SUV,PH40G,2035,0,0,0,0,0,0,0.0208,0.02104,0.0213,0.0219,0,0,0,0,0,0,0.02147,0.02168,0.02192,0.02246,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02454,0,0,0,0,0,0,0.01939,0.01964,0.01991,0.02055,0,0,0,0,0,0,0.02298,0.02314,0.0233,0.02366,0,0,0,0,0,0,0.02085,0.02101,0.02119,0.02159,0,0,0,0,0,0,0.02093,0.02108,0.02122,0.02154,0,0,0,0,0,0,0.02201,0.0222,0.02239,0.02282,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02245,0,0,0,0,0,0,0.00454,0.00347,0.00336,0.00425,0,0,0,0,0,0,0.0039,0.00303,0.00296,0.00376,0,0,0,0,0,0,0.00423,0.00338,0.00331,0.00425,0,0,0,0,0,0,0.00478,0.00381,0.00371,0.00476,0,0,0,0,0,0,0.00222,0.00201,0.00209,0.00275,0,0,0,0,0,0,0.00259,0.00228,0.00234,0.00307,0,0,0,0,0,0,0.00215,0.00196,0.00205,0.0027,0,0,0,0,0,0,0.00307,0.00256,0.00258,0.00334,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00263,0,0,0,0,0,0,0.58434,0.85662,1.10126,1.49242,0,0,0,0,0,0,0.55093,0.8194,1.05957,1.43587,0,0,0,0,0,0,0.59172,0.91542,1.20375,1.67532,0,0,0,0,0,0,0.63576,0.98675,1.30085,1.8038,0,0,0,0,0,0,0.45804,0.76944,1.03048,1.4328,0,0,0,0,0,0,0.48935,0.81421,1.09075,1.52526,0,0,0,0,0,0,0.47257,0.79278,1.06081,1.47356,0,0,0,0,0,0,0.5227,0.83228,1.09525,1.51029,0,0,0,0,0,0,0.4409,0.71023,0.92953,1.26793,0,0,0,0,0,0,135.35035,136.63097,138.72659,144.30938,0,0,0,0,0,0,136.34407,137.5329,139.48452,144.793,0,0,0,0,0,0,138.30412,139.55545,141.60923,147.14325,0,0,0,0,0,0,135.2482,136.50027,138.55892,144.07655,0,0,0,0,0,0,138.29444,139.16229,140.60971,144.94019,0,0,0,0,0,0,136.18545,137.14241,138.73072,143.32004,0,0,0,0,0,0,137.27632,138.10654,139.49763,143.70931,0,0,0,0,0,0,137.3638,138.37006,140.03504,144.78679,0,0,0,0,0,0,135.20198,136.11957,137.63026,142.03885,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.00511,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00292,0.00327,0.00385,0.00502,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00505,0,0,0,0,0,0,0.00297,0.00333,0.00392,0.0051,0,0,0,0,0,0,0.003,0.00337,0.00395,0.00513,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01368,0.01368,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02138,0.03171,0.04382,0.06004,0,0,0,0,0,0,0.02046,0.03048,0.0423,0.05797,0,0,0,0,0,0,0.02062,0.03218,0.04452,0.06213,0,0,0,0,0,0,0.02187,0.03456,0.0478,0.06679,0,0,0,0,0,0,0.01628,0.02714,0.03837,0.0539,0,0,0,0,0,0,0.01786,0.0293,0.04114,0.05763,0,0,0,0,0,0,0.0167,0.02761,0.03908,0.05456,0,0,0,0,0,0,0.01993,0.03183,0.04445,0.06169,0,0,0,0,0,0,0.01747,0.02793,0.03926,0.05396,0.04953,0,0,0,0,0,0.00071,0.00112,0.0015,0.0023,0.04325,0,0,0,0,0,0.00068,0.00107,0.00142,0.00217,0.04823,0,0,0,0,0,0.00069,0.00108,0.00145,0.00222,0.05311,0,0,0,0,0,0.00071,0.00113,0.00152,0.00236,0.02579,0,0,0,0,0,0.0006,0.00094,0.00122,0.00179,0.03017,0,0,0,0,0,0.00061,0.00095,0.00125,0.00186,0.02477,0,0,0,0,0,0.00057,0.00089,0.00116,0.00169,0.03429,0,0,0,0,0,0.00063,0.00098,0.0013,0.00194,0.02451,0,0,0,0,0,0.00056,0.00087,0.00113,0.00165,0.13141,0,0,0,0,0,0.02197,0.02289,0.02377,0.02569,0.11768,0,0,0,0,0,0.02259,0.02345,0.02427,0.02603,0.13192,0,0,0,0,0,0.02463,0.02551,0.02636,0.0282,0.13906,0,0,0,0,0,0.02057,0.0215,0.02242,0.02442,0.07947,0,0,0,0,0,0.02399,0.0247,0.02533,0.02663,0.08737,0,0,0,0,0,0.02186,0.0226,0.02327,0.02466,0.075,0,0,0,0,0,0.02189,0.02256,0.02315,0.02435,0.098,0,0,0,0,0,0.02306,0.02383,0.02454,0.02603,0.07487,0,0,0,0,0,0.0228,0.02346,0.02403,0.02519,0.10083,0,0,0,0,0,0.00402,0.00483,0.00561,0.00731,0.08815,0,0,0,0,0,0.00404,0.0048,0.00552,0.00708,0.09923,0,0,0,0,0,0.00432,0.0051,0.00585,0.00747,0.10868,0,0,0,0,0,0.00386,0.00468,0.00549,0.00726,0.05314,0,0,0,0,0,0.00406,0.00469,0.00525,0.0064,0.06176,0,0,0,0,0,0.00382,0.00447,0.00506,0.00628,0.05073,0,0,0,0,0,0.00375,0.00434,0.00486,0.00592,0.0703,0,0,0,0,0,0.004,0.00468,0.00531,0.00663,0.0499,0,0,0,0,0,0.00384,0.00442,0.00493,0.00595,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00094,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00092,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00091,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00091,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00084,0,0,0,0,0,0,0.04295,0.05549,0.08233,0.18911,0,0,0,0,0,0,0.03776,0.04893,0.07418,0.17783,0,0,0,0,0,0,0.04102,0.05482,0.08302,0.19431,0,0,0,0,0,0,0.04524,0.06054,0.09035,0.20215,0,0,0,0,0,0,0.02556,0.03646,0.06147,0.16754,0,0,0,0,0,0,0.02806,0.03966,0.06505,0.17021,0,0,0,0,0,0,0.02466,0.03473,0.05863,0.16108,0,0,0,0,0,0,0.03261,0.04471,0.07133,0.17989,0,0,0,0,0,0,0.02506,0.03522,0.05928,0.16298 +Large SUV,PH40G,2040,0,0,0,0,0,0,0,0.02079,0.02104,0.0213,0,0,0,0,0,0,0,0.02146,0.02168,0.02192,0,0,0,0,0,0,0,0.02349,0.02372,0.02397,0,0,0,0,0,0,0,0.01939,0.01964,0.01991,0,0,0,0,0,0,0,0.02298,0.02314,0.0233,0,0,0,0,0,0,0,0.02084,0.02102,0.02119,0,0,0,0,0,0,0,0.02093,0.02108,0.02122,0,0,0,0,0,0,0,0.02201,0.0222,0.02239,0,0,0,0,0,0,0,0.02186,0.022,0.02214,0,0,0,0,0,0,0,0.00454,0.00347,0.00336,0,0,0,0,0,0,0,0.0039,0.00302,0.00296,0,0,0,0,0,0,0,0.00424,0.00338,0.0033,0,0,0,0,0,0,0,0.00479,0.0038,0.0037,0,0,0,0,0,0,0,0.00223,0.00201,0.00209,0,0,0,0,0,0,0,0.0026,0.00228,0.00233,0,0,0,0,0,0,0,0.00215,0.00195,0.00205,0,0,0,0,0,0,0,0.00308,0.00256,0.00257,0,0,0,0,0,0,0,0.00223,0.00195,0.00202,0,0,0,0,0,0,0,0.58637,0.85493,1.09898,0,0,0,0,0,0,0,0.55237,0.81808,1.05779,0,0,0,0,0,0,0,0.59375,0.91388,1.20164,0,0,0,0,0,0,0,0.638,0.9852,1.29874,0,0,0,0,0,0,0,0.45771,0.76934,1.03033,0,0,0,0,0,0,0,0.4894,0.8139,1.09031,0,0,0,0,0,0,0,0.47246,0.79251,1.06037,0,0,0,0,0,0,0,0.52294,0.83172,1.09452,0,0,0,0,0,0,0,0.44066,0.70988,0.92911,0,0,0,0,0,0,0,135.31596,136.59718,138.69927,0,0,0,0,0,0,0,136.30965,137.49906,139.45684,0,0,0,0,0,0,0,138.26901,139.52107,141.58116,0,0,0,0,0,0,0,135.21387,136.46656,138.53155,0,0,0,0,0,0,0,138.26032,139.1288,140.58094,0,0,0,0,0,0,0,136.15164,137.10908,138.70261,0,0,0,0,0,0,0,137.24245,138.07339,139.46903,0,0,0,0,0,0,0,137.32947,138.33643,140.00687,0,0,0,0,0,0,0,135.16861,136.08668,137.60238,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00303,0.00339,0.00398,0,0,0,0,0,0,0,0.00292,0.00327,0.00385,0,0,0,0,0,0,0,0.00301,0.00337,0.00396,0,0,0,0,0,0,0,0.00295,0.00331,0.00389,0,0,0,0,0,0,0,0.00297,0.00333,0.00392,0,0,0,0,0,0,0,0.003,0.00336,0.00395,0,0,0,0,0,0,0,0.00302,0.00339,0.00398,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00946,0.01086,0.01374,0,0,0,0,0,0,0,0.00946,0.01085,0.01374,0,0,0,0,0,0,0,0.00941,0.0108,0.01367,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00942,0.01081,0.01369,0,0,0,0,0,0,0,0.00945,0.01084,0.01372,0,0,0,0,0,0,0,0.00947,0.01086,0.01375,0,0,0,0,0,0,0,0.00948,0.01089,0.01378,0,0,0,0,0,0,0,0.0213,0.03172,0.04385,0,0,0,0,0,0,0,0.02039,0.03049,0.04233,0,0,0,0,0,0,0,0.02054,0.0322,0.04456,0,0,0,0,0,0,0,0.02178,0.03459,0.04786,0,0,0,0,0,0,0,0.01622,0.02714,0.03839,0,0,0,0,0,0,0,0.0178,0.02931,0.04117,0,0,0,0,0,0,0,0.01664,0.02762,0.03911,0,0,0,0,0,0,0,0.01988,0.03183,0.04446,0,0,0,0,0,0,0,0.01745,0.02792,0.03924,0.0134,0.02933,0,0,0,0,0,0.0007,0.00112,0.0015,0.01173,0.0256,0,0,0,0,0,0.00067,0.00107,0.00143,0.01301,0.02854,0,0,0,0,0,0.00068,0.00109,0.00146,0.01425,0.03131,0,0,0,0,0,0.00071,0.00113,0.00153,0.00705,0.0152,0,0,0,0,0,0.0006,0.00094,0.00123,0.0082,0.01773,0,0,0,0,0,0.00061,0.00096,0.00126,0.0068,0.0146,0,0,0,0,0,0.00057,0.00089,0.00116,0.00934,0.02027,0,0,0,0,0,0.00063,0.00099,0.0013,0.00678,0.01454,0,0,0,0,0,0.00056,0.00087,0.00113,0.05,0.08584,0,0,0,0,0,0.02196,0.02289,0.02378,0.04694,0.07794,0,0,0,0,0,0.02258,0.02346,0.02428,0.05206,0.08684,0,0,0,0,0,0.02462,0.02552,0.02637,0.05078,0.08942,0,0,0,0,0,0.02056,0.02151,0.02243,0.03804,0.05587,0,0,0,0,0,0.02398,0.0247,0.02534,0.0385,0.05944,0,0,0,0,0,0.02186,0.0226,0.02327,0.03541,0.0525,0,0,0,0,0,0.02188,0.02256,0.02316,0.0422,0.06655,0,0,0,0,0,0.02305,0.02383,0.02454,0.03615,0.0531,0,0,0,0,0,0.0228,0.02346,0.02403,0.02882,0.06052,0,0,0,0,0,0.00401,0.00483,0.00562,0.02559,0.05301,0,0,0,0,0,0.00403,0.00481,0.00553,0.02859,0.05935,0,0,0,0,0,0.00431,0.00511,0.00586,0.03058,0.06476,0,0,0,0,0,0.00385,0.00469,0.00551,0.01649,0.03227,0,0,0,0,0,0.00405,0.00469,0.00526,0.01853,0.03706,0,0,0,0,0,0.00381,0.00447,0.00506,0.01571,0.03083,0,0,0,0,0,0.00374,0.00434,0.00486,0.02094,0.04248,0,0,0,0,0,0.004,0.00469,0.00532,0.01565,0.03065,0,0,0,0,0,0.00384,0.00442,0.00493,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00087,0.00088,0.00089,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00087,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00088,0.00089,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.0008,0.0008,0.00081,0,0,0,0,0,0,0,0.04297,0.05543,0.08229,0,0,0,0,0,0,0,0.03778,0.04888,0.07415,0,0,0,0,0,0,0,0.04107,0.05476,0.08297,0,0,0,0,0,0,0,0.04526,0.06049,0.09033,0,0,0,0,0,0,0,0.02553,0.03646,0.0615,0,0,0,0,0,0,0,0.02805,0.03965,0.06506,0,0,0,0,0,0,0,0.02463,0.03474,0.05867,0,0,0,0,0,0,0,0.03255,0.04473,0.0714,0,0,0,0,0,0,0,0.02504,0.03521,0.05929 +Large SUV,PH40G,2045,0,0,0,0,0,0,0,0,0.0208,0.02104,0,0,0,0,0,0,0,0,0.02146,0.02169,0,0,0,0,0,0,0,0,0.02349,0.02372,0,0,0,0,0,0,0,0,0.01939,0.01964,0,0,0,0,0,0,0,0,0.02298,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02102,0,0,0,0,0,0,0,0,0.02093,0.02108,0,0,0,0,0,0,0,0,0.02201,0.0222,0,0,0,0,0,0,0,0,0.02186,0.022,0,0,0,0,0,0,0,0,0.00454,0.00347,0,0,0,0,0,0,0,0,0.0039,0.00302,0,0,0,0,0,0,0,0,0.00423,0.00337,0,0,0,0,0,0,0,0,0.00478,0.0038,0,0,0,0,0,0,0,0,0.00222,0.00201,0,0,0,0,0,0,0,0,0.00259,0.00228,0,0,0,0,0,0,0,0,0.00215,0.00195,0,0,0,0,0,0,0,0,0.00307,0.00256,0,0,0,0,0,0,0,0,0.00223,0.00195,0,0,0,0,0,0,0,0,0.58515,0.85333,0,0,0,0,0,0,0,0,0.55145,0.8169,0,0,0,0,0,0,0,0,0.59254,0.91238,0,0,0,0,0,0,0,0,0.63668,0.98369,0,0,0,0,0,0,0,0,0.4577,0.76945,0,0,0,0,0,0,0,0,0.4892,0.81376,0,0,0,0,0,0,0,0,0.47235,0.79243,0,0,0,0,0,0,0,0,0.52262,0.83136,0,0,0,0,0,0,0,0,0.4406,0.70976,0,0,0,0,0,0,0,0,135.30893,136.59487,0,0,0,0,0,0,0,0,136.30292,137.49674,0,0,0,0,0,0,0,0,138.26201,139.51861,0,0,0,0,0,0,0,0,135.20696,136.46414,0,0,0,0,0,0,0,0,138.25445,139.12641,0,0,0,0,0,0,0,0,136.14548,137.10674,0,0,0,0,0,0,0,0,137.23684,138.07104,0,0,0,0,0,0,0,0,137.32323,138.33411,0,0,0,0,0,0,0,0,135.16274,136.0843,0,0,0,0,0,0,0,0,0.00297,0.00334,0,0,0,0,0,0,0,0,0.00298,0.00334,0,0,0,0,0,0,0,0,0.00303,0.00339,0,0,0,0,0,0,0,0,0.00291,0.00327,0,0,0,0,0,0,0,0,0.00301,0.00337,0,0,0,0,0,0,0,0,0.00295,0.00331,0,0,0,0,0,0,0,0,0.00297,0.00333,0,0,0,0,0,0,0,0,0.003,0.00336,0,0,0,0,0,0,0,0,0.00302,0.00339,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00946,0.01085,0,0,0,0,0,0,0,0,0.00941,0.0108,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00942,0.01081,0,0,0,0,0,0,0,0,0.00944,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00948,0.01088,0,0,0,0,0,0,0,0,0.02132,0.03175,0,0,0,0,0,0,0,0,0.02041,0.03052,0,0,0,0,0,0,0,0,0.02056,0.03224,0,0,0,0,0,0,0,0,0.02181,0.03464,0,0,0,0,0,0,0,0,0.01624,0.02717,0,0,0,0,0,0,0,0,0.01782,0.02934,0,0,0,0,0,0,0,0,0.01666,0.02766,0,0,0,0,0,0,0,0,0.01989,0.03186,0,0,0,0,0,0,0,0,0.01745,0.02792,0.00742,0.01037,0.02062,0,0,0,0,0,0.0007,0.00112,0.00651,0.00908,0.01797,0,0,0,0,0,0.00068,0.00107,0.00709,0.00992,0.01987,0,0,0,0,0,0.00068,0.00109,0.00773,0.01083,0.02183,0,0,0,0,0,0.00071,0.00114,0.00394,0.00546,0.01064,0,0,0,0,0,0.0006,0.00094,0.00453,0.00629,0.01238,0,0,0,0,0,0.00061,0.00096,0.00385,0.00533,0.0103,0,0,0,0,0,0.00057,0.00089,0.00519,0.00723,0.01422,0,0,0,0,0,0.00063,0.00099,0.00392,0.00543,0.01036,0,0,0,0,0,0.00056,0.00087,0.03637,0.04272,0.06611,0,0,0,0,0,0.02196,0.0229,0.03508,0.04056,0.06075,0,0,0,0,0,0.02259,0.02347,0.03852,0.04451,0.06724,0,0,0,0,0,0.02462,0.02553,0.03581,0.04252,0.06764,0,0,0,0,0,0.02056,0.02152,0.0311,0.03426,0.04579,0,0,0,0,0,0.02398,0.02471,0.03026,0.03393,0.04756,0,0,0,0,0,0.02186,0.02261,0.02885,0.03195,0.04292,0,0,0,0,0,0.02189,0.02257,0.03284,0.03717,0.05285,0,0,0,0,0,0.02305,0.02384,0.02982,0.03298,0.04388,0,0,0,0,0,0.0228,0.02346,0.01676,0.02238,0.04307,0,0,0,0,0,0.00401,0.00484,0.01509,0.01994,0.0378,0,0,0,0,0,0.00403,0.00481,0.01661,0.0219,0.04202,0,0,0,0,0,0.00431,0.00511,0.01734,0.02328,0.0455,0,0,0,0,0,0.00385,0.0047,0.01035,0.01315,0.02336,0,0,0,0,0,0.00406,0.0047,0.01124,0.01449,0.02655,0,0,0,0,0,0.00381,0.00448,0.0099,0.01265,0.02236,0,0,0,0,0,0.00374,0.00435,0.01265,0.01649,0.03036,0,0,0,0,0,0.004,0.00469,0.01005,0.01285,0.02249,0,0,0,0,0,0.00384,0.00443,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00087,0.00088,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00087,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00088,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.0008,0.0008,0,0,0,0,0,0,0,0,0.04293,0.0554,0,0,0,0,0,0,0,0,0.03774,0.04886,0,0,0,0,0,0,0,0,0.04102,0.05471,0,0,0,0,0,0,0,0,0.04522,0.06046,0,0,0,0,0,0,0,0,0.02553,0.03647,0,0,0,0,0,0,0,0,0.02804,0.03965,0,0,0,0,0,0,0,0,0.02463,0.03475,0,0,0,0,0,0,0,0,0.03256,0.04477,0,0,0,0,0,0,0,0,0.02504,0.03521 +Large SUV,PH40G,2050,0,0,0,0,0,0,0,0,0,0.0208,0,0,0,0,0,0,0,0,0,0.02147,0,0,0,0,0,0,0,0,0,0.02349,0,0,0,0,0,0,0,0,0,0.01939,0,0,0,0,0,0,0,0,0,0.02298,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02093,0,0,0,0,0,0,0,0,0,0.02201,0,0,0,0,0,0,0,0,0,0.02186,0,0,0,0,0,0,0,0,0,0.00453,0,0,0,0,0,0,0,0,0,0.00389,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.00478,0,0,0,0,0,0,0,0,0,0.00222,0,0,0,0,0,0,0,0,0,0.00259,0,0,0,0,0,0,0,0,0,0.00215,0,0,0,0,0,0,0,0,0,0.00307,0,0,0,0,0,0,0,0,0,0.00223,0,0,0,0,0,0,0,0,0,0.58383,0,0,0,0,0,0,0,0,0,0.55046,0,0,0,0,0,0,0,0,0,0.59121,0,0,0,0,0,0,0,0,0,0.63522,0,0,0,0,0,0,0,0,0,0.45769,0,0,0,0,0,0,0,0,0,0.48896,0,0,0,0,0,0,0,0,0,0.47221,0,0,0,0,0,0,0,0,0,0.52227,0,0,0,0,0,0,0,0,0,0.44054,0,0,0,0,0,0,0,0,0,135.30911,0,0,0,0,0,0,0,0,0,136.30301,0,0,0,0,0,0,0,0,0,138.26211,0,0,0,0,0,0,0,0,0,135.20703,0,0,0,0,0,0,0,0,0,138.25462,0,0,0,0,0,0,0,0,0,136.14562,0,0,0,0,0,0,0,0,0,137.23687,0,0,0,0,0,0,0,0,0,137.32338,0,0,0,0,0,0,0,0,0,135.16284,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.00298,0,0,0,0,0,0,0,0,0,0.00303,0,0,0,0,0,0,0,0,0,0.00291,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.00295,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00302,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00941,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00942,0,0,0,0,0,0,0,0,0,0.00944,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00948,0,0,0,0,0,0,0,0,0,0.02135,0,0,0,0,0,0,0,0,0,0.02044,0,0,0,0,0,0,0,0,0,0.02059,0,0,0,0,0,0,0,0,0,0.02185,0,0,0,0,0,0,0,0,0,0.01625,0,0,0,0,0,0,0,0,0,0.01784,0,0,0,0,0,0,0,0,0,0.01668,0,0,0,0,0,0,0,0,0,0.01991,0,0,0,0,0,0,0,0,0,0.01745,0.00244,0.0039,0.0053,0.01233,0,0,0,0,0,0.00071,0.00223,0.00347,0.00471,0.01086,0,0,0,0,0,0.00068,0.00258,0.00322,0.00433,0.0118,0,0,0,0,0,0.00069,0.00266,0.00394,0.00536,0.01291,0,0,0,0,0,0.00071,0.00156,0.00246,0.00335,0.00682,0,0,0,0,0,0.0006,0.00176,0.00252,0.00341,0.00771,0,0,0,0,0,0.00061,0.00152,0.00232,0.00315,0.0065,0,0,0,0,0,0.00057,0.00192,0.00277,0.00375,0.00871,0,0,0,0,0,0.00063,0.0014,0.0021,0.00284,0.00645,0,0,0,0,0,0.00056,0.02565,0.02875,0.0319,0.04773,0,0,0,0,0,0.02197,0.0259,0.02849,0.03125,0.04503,0,0,0,0,0,0.02259,0.02873,0.02993,0.03241,0.04929,0,0,0,0,0,0.02463,0.02479,0.02749,0.03069,0.04777,0,0,0,0,0,0.02057,0.02603,0.02786,0.0298,0.03743,0,0,0,0,0,0.02399,0.02432,0.02583,0.0278,0.03731,0,0,0,0,0,0.02186,0.0239,0.02553,0.0273,0.03464,0,0,0,0,0,0.02189,0.02582,0.02756,0.02968,0.04073,0,0,0,0,0,0.02306,0.02455,0.02596,0.02752,0.03544,0,0,0,0,0,0.0228,0.00727,0.01001,0.0128,0.02681,0,0,0,0,0,0.00402,0.00696,0.00925,0.0117,0.02389,0,0,0,0,0,0.00404,0.00794,0.009,0.0112,0.02613,0,0,0,0,0,0.00432,0.00758,0.00998,0.0128,0.02792,0,0,0,0,0,0.00386,0.00586,0.00748,0.0092,0.01595,0,0,0,0,0,0.00406,0.00598,0.00732,0.00906,0.01748,0,0,0,0,0,0.00381,0.00551,0.00696,0.00853,0.01502,0,0,0,0,0,0.00375,0.00644,0.00798,0.00986,0.01963,0,0,0,0,0,0.004,0.00538,0.00663,0.00801,0.01502,0,0,0,0,0,0.00384,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.0008,0,0,0,0,0,0,0,0,0,0.0429,0,0,0,0,0,0,0,0,0,0.03772,0,0,0,0,0,0,0,0,0,0.04098,0,0,0,0,0,0,0,0,0,0.04519,0,0,0,0,0,0,0,0,0,0.02553,0,0,0,0,0,0,0,0,0,0.02803,0,0,0,0,0,0,0,0,0,0.02464,0,0,0,0,0,0,0,0,0,0.03258,0,0,0,0,0,0,0,0,0,0.02504 +Minivan,B20,1990,0.22805,,,,,,,,,,0.22758,,,,,,,,,,0.22652,,,,,,,,,,0.22882,,,,,,,,,,0.22674,,,,,,,,,,0.22793,,,,,,,,,,0.22788,,,,,,,,,,0.22726,,,,,,,,,,0.22738,,,,,,,,,,0.00727,,,,,,,,,,0.0073,,,,,,,,,,0.0075,,,,,,,,,,0.00715,,,,,,,,,,0.00733,,,,,,,,,,0.00716,,,,,,,,,,0.00718,,,,,,,,,,0.00732,,,,,,,,,,0.00722,,,,,,,,,,51.08076,,,,,,,,,,51.76979,,,,,,,,,,52.11024,,,,,,,,,,51.40393,,,,,,,,,,53.85553,,,,,,,,,,52.69588,,,,,,,,,,54.2288,,,,,,,,,,53.09684,,,,,,,,,,52.37859,,,,,,,,,,538.78784,,,,,,,,,,540.82552,,,,,,,,,,546.10831,,,,,,,,,,537.34516,,,,,,,,,,544.15597,,,,,,,,,,538.80041,,,,,,,,,,541.01955,,,,,,,,,,542.54018,,,,,,,,,,537.90486,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.83861,,,,,,,,,,5.88438,,,,,,,,,,5.92266,,,,,,,,,,5.80178,,,,,,,,,,5.83039,,,,,,,,,,5.79643,,,,,,,,,,5.83528,,,,,,,,,,6.1888,,,,,,,,,,5.9569,,,,,,,,,,0.06237,,,,,,,,,,0.06353,,,,,,,,,,0.06715,,,,,,,,,,0.05956,,,,,,,,,,0.06637,,,,,,,,,,0.06234,,,,,,,,,,0.06277,,,,,,,,,,0.06461,,,,,,,,,,0.06473,,,,,,,,,,0.38774,,,,,,,,,,0.39042,,,,,,,,,,0.39892,,,,,,,,,,0.38136,,,,,,,,,,0.39713,,,,,,,,,,0.38783,,,,,,,,,,0.3887,,,,,,,,,,0.39294,,,,,,,,,,0.39308,,,,,,,,,,0.3243,,,,,,,,,,0.32567,,,,,,,,,,0.33035,,,,,,,,,,0.32063,,,,,,,,,,0.32935,,,,,,,,,,0.32415,,,,,,,,,,0.32476,,,,,,,,,,0.32706,,,,,,,,,,0.32733,,,,,,,,,,0.04323,,,,,,,,,,0.04339,,,,,,,,,,0.04381,,,,,,,,,,0.04311,,,,,,,,,,0.04366,,,,,,,,,,0.04323,,,,,,,,,,0.0434,,,,,,,,,,0.04353,,,,,,,,,,0.04315,,,,,,,,,,3.16077,,,,,,,,,,3.17278,,,,,,,,,,3.25865,,,,,,,,,,3.10689,,,,,,,,,,3.18343,,,,,,,,,,3.11363,,,,,,,,,,3.12008,,,,,,,,,,3.17963,,,,,,,,,,3.13782,,,,,,,,, +Minivan,B20,1995,0.17989,0.17824,,,,,,,,,0.18072,0.17862,,,,,,,,,0.18332,0.17994,,,,,,,,,0.17759,0.177,,,,,,,,,0.18271,0.17961,,,,,,,,,0.17961,0.178,,,,,,,,,0.1801,0.17832,,,,,,,,,0.18148,0.17901,,,,,,,,,0.18179,0.17926,,,,,,,,,0.00409,0.0059,,,,,,,,,0.00411,0.00592,,,,,,,,,0.00422,0.00607,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00413,0.00593,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00406,0.00583,,,,,,,,,0.00412,0.00593,,,,,,,,,0.00405,0.00585,,,,,,,,,16.44771,32.26825,,,,,,,,,16.86814,32.85107,,,,,,,,,16.87762,32.93686,,,,,,,,,16.93022,32.79195,,,,,,,,,18.03012,34.50973,,,,,,,,,17.59858,33.77339,,,,,,,,,18.44219,35.02464,,,,,,,,,17.60578,33.92034,,,,,,,,,17.03581,33.20786,,,,,,,,,601.03056,581.61769,,,,,,,,,605.47132,585.05585,,,,,,,,,611.12901,590.77357,,,,,,,,,601.92026,581.57618,,,,,,,,,615.76521,592.40359,,,,,,,,,608.16961,585.65927,,,,,,,,,613.41805,589.65718,,,,,,,,,611.11325,589.02543,,,,,,,,,604.06398,582.67328,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.70728,6.16661,,,,,,,,,5.81129,6.24702,,,,,,,,,5.90706,6.31341,,,,,,,,,5.69559,6.14882,,,,,,,,,5.92634,6.28923,,,,,,,,,5.79816,6.20353,,,,,,,,,5.90398,6.28765,,,,,,,,,6.22269,6.62793,,,,,,,,,5.90345,6.33515,,,,,,,,,0.04916,0.05176,,,,,,,,,0.05072,0.05305,,,,,,,,,0.05537,0.05694,,,,,,,,,0.04545,0.04858,,,,,,,,,0.05434,0.05607,,,,,,,,,0.04907,0.0516,,,,,,,,,0.04966,0.05216,,,,,,,,,0.05209,0.0542,,,,,,,,,0.05226,0.05442,,,,,,,,,0.31429,0.31418,,,,,,,,,0.31901,0.31792,,,,,,,,,0.33306,0.32924,,,,,,,,,0.30321,0.30519,,,,,,,,,0.32999,0.32676,,,,,,,,,0.31414,0.31396,,,,,,,,,0.31584,0.31539,,,,,,,,,0.32315,0.32127,,,,,,,,,0.32358,0.32171,,,,,,,,,0.25665,0.25659,,,,,,,,,0.25992,0.25895,,,,,,,,,0.26974,0.26625,,,,,,,,,0.24864,0.25052,,,,,,,,,0.26754,0.2646,,,,,,,,,0.25628,0.25616,,,,,,,,,0.25765,0.25729,,,,,,,,,0.26281,0.26111,,,,,,,,,0.26334,0.26166,,,,,,,,,0.04822,0.00538,,,,,,,,,0.04858,0.00542,,,,,,,,,0.04903,0.00547,,,,,,,,,0.04829,0.00538,,,,,,,,,0.0494,0.00548,,,,,,,,,0.04879,0.00542,,,,,,,,,0.04921,0.00546,,,,,,,,,0.04903,0.00545,,,,,,,,,0.04846,0.00539,,,,,,,,,2.01091,2.75535,,,,,,,,,2.01877,2.76324,,,,,,,,,2.07351,2.832,,,,,,,,,1.98408,2.71558,,,,,,,,,2.02997,2.76938,,,,,,,,,1.98773,2.71574,,,,,,,,,1.99382,2.72313,,,,,,,,,2.02581,2.76909,,,,,,,,,1.99133,2.72948,,,,,,,, +Minivan,B20,2000,0.17277,0.17036,0.16849,,,,,,,,0.17351,0.17108,0.16911,,,,,,,,0.17566,0.17317,0.17096,,,,,,,,0.17051,0.16815,0.16654,,,,,,,,0.17509,0.1726,0.17046,,,,,,,,0.17224,0.16983,0.16801,,,,,,,,0.17288,0.17046,0.16858,,,,,,,,0.17416,0.17171,0.16967,,,,,,,,0.17464,0.1722,0.17011,,,,,,,,0.00196,0.00273,0.00398,,,,,,,,0.00197,0.00273,0.00398,,,,,,,,0.00204,0.00281,0.00408,,,,,,,,0.00194,0.0027,0.00393,,,,,,,,0.00197,0.00273,0.00396,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00197,0.00273,0.00397,,,,,,,,0.00191,0.00266,0.00389,,,,,,,,5.36619,8.06769,14.31453,,,,,,,,5.56579,8.32587,14.66954,,,,,,,,5.67676,8.43474,14.74389,,,,,,,,5.55271,8.32892,14.68617,,,,,,,,6.15287,9.09831,15.70228,,,,,,,,5.90527,8.78164,15.28578,,,,,,,,6.20957,9.23242,15.98444,,,,,,,,5.89796,8.77512,15.30446,,,,,,,,5.61249,8.41137,14.82543,,,,,,,,607.45309,611.27577,611.22536,,,,,,,,612.68141,616.30533,615.63262,,,,,,,,618.59733,622.29771,621.77589,,,,,,,,608.94563,612.6327,612.15592,,,,,,,,625.29169,628.26771,625.67413,,,,,,,,616.80843,619.94316,617.91526,,,,,,,,623.06316,625.97761,623.1592,,,,,,,,619.60626,622.8754,621.12208,,,,,,,,611.82942,615.05615,613.38267,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.27894,4.5826,5.23497,,,,,,,,4.38664,4.68891,5.33485,,,,,,,,4.49703,4.79631,5.43246,,,,,,,,4.27293,4.57458,5.22215,,,,,,,,4.55602,4.84927,5.46542,,,,,,,,4.40525,4.70173,5.33139,,,,,,,,4.51455,4.81186,5.43793,,,,,,,,4.75874,5.06634,5.7178,,,,,,,,4.46893,4.77437,5.42474,,,,,,,,0.04518,0.04528,0.04678,,,,,,,,0.0467,0.04675,0.04815,,,,,,,,0.05117,0.05111,0.05227,,,,,,,,0.04161,0.04175,0.04338,,,,,,,,0.05018,0.05014,0.05134,,,,,,,,0.0451,0.04515,0.04659,,,,,,,,0.04567,0.04574,0.04719,,,,,,,,0.04802,0.04804,0.04937,,,,,,,,0.04818,0.04823,0.04962,,,,,,,,0.3003,0.29571,0.296,,,,,,,,0.30484,0.30009,0.30012,,,,,,,,0.3181,0.31292,0.31232,,,,,,,,0.2895,0.28517,0.28593,,,,,,,,0.31513,0.31003,0.30956,,,,,,,,0.29989,0.29523,0.29547,,,,,,,,0.3017,0.29704,0.29724,,,,,,,,0.30877,0.3039,0.30374,,,,,,,,0.30936,0.30455,0.30443,,,,,,,,0.24374,0.23952,0.2398,,,,,,,,0.24685,0.24249,0.24253,,,,,,,,0.25596,0.2512,0.25065,,,,,,,,0.23596,0.232,0.23272,,,,,,,,0.25385,0.24917,0.24875,,,,,,,,0.24313,0.23885,0.23909,,,,,,,,0.24461,0.24034,0.24054,,,,,,,,0.24955,0.24507,0.24494,,,,,,,,0.25024,0.24582,0.24572,,,,,,,,0.04873,0.00566,0.00566,,,,,,,,0.04915,0.00571,0.0057,,,,,,,,0.04963,0.00576,0.00576,,,,,,,,0.04885,0.00567,0.00567,,,,,,,,0.05017,0.00582,0.00579,,,,,,,,0.04948,0.00574,0.00572,,,,,,,,0.04999,0.00579,0.00577,,,,,,,,0.04971,0.00577,0.00575,,,,,,,,0.04909,0.00569,0.00568,,,,,,,,0.98924,1.36957,1.96291,,,,,,,,0.99427,1.37336,1.96434,,,,,,,,1.03043,1.41134,2.01209,,,,,,,,0.97808,1.35605,1.94133,,,,,,,,0.99486,1.3699,1.95249,,,,,,,,0.9736,1.3476,1.92505,,,,,,,,0.97176,1.34753,1.925,,,,,,,,0.99419,1.37292,1.96122,,,,,,,,0.9621,1.33842,1.92073,,,,,,, +Minivan,B20,2005,0.08078,0.1089,0.10857,0.12252,,,,,,,0.08084,0.10897,0.10864,0.12272,,,,,,,0.08096,0.10912,0.10879,0.12329,,,,,,,0.08046,0.10845,0.10811,0.12168,,,,,,,0.08089,0.10903,0.10869,0.1231,,,,,,,0.08058,0.10861,0.10827,0.12216,,,,,,,0.08075,0.10885,0.10851,0.12249,,,,,,,0.08089,0.10903,0.1087,0.12291,,,,,,,0.08105,0.10927,0.10894,0.12321,,,,,,,0.002,0.00178,0.00203,0.00282,,,,,,,0.00198,0.00178,0.00202,0.00281,,,,,,,0.00207,0.00185,0.0021,0.0029,,,,,,,0.00199,0.00176,0.00201,0.00279,,,,,,,0.00184,0.00176,0.00198,0.00273,,,,,,,0.00185,0.00173,0.00195,0.00271,,,,,,,0.0018,0.00171,0.00193,0.00269,,,,,,,0.00191,0.00177,0.002,0.00277,,,,,,,0.00177,0.00169,0.00191,0.00267,,,,,,,2.10242,4.07972,4.8952,7.74585,,,,,,,2.18134,4.23234,5.06451,7.96509,,,,,,,2.22336,4.3202,5.15429,8.04899,,,,,,,2.17347,4.21186,5.04278,7.95377,,,,,,,2.41578,4.68882,5.5724,8.62104,,,,,,,2.31342,4.48547,5.34557,8.33881,,,,,,,2.44196,4.73124,5.63191,8.74726,,,,,,,2.31503,4.49118,5.35639,8.35543,,,,,,,2.20527,4.27963,5.1245,8.05815,,,,,,,749.77621,752.25396,757.28552,731.51385,,,,,,,758.02248,760.3571,765.13224,738.2125,,,,,,,768.76441,771.12215,776.03367,748.21617,,,,,,,749.43253,751.77386,756.63497,731.06234,,,,,,,778.53836,780.40633,784.33281,754.11852,,,,,,,763.47669,765.454,769.58737,741.29687,,,,,,,772.3496,774.17497,777.98916,748.53308,,,,,,,768.82496,770.90602,775.20833,746.575,,,,,,,758.95407,761.08564,765.29914,736.94078,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.98685,3.15562,3.27307,3.85585,,,,,,,3.05399,3.22159,3.33648,3.92591,,,,,,,3.11921,3.28271,3.3937,3.99106,,,,,,,2.98457,3.15342,3.26981,3.84841,,,,,,,3.14299,3.3027,3.40888,4.00743,,,,,,,3.05829,3.22222,3.33306,3.91961,,,,,,,3.12339,3.28768,3.39721,3.99332,,,,,,,3.29701,3.46771,3.58008,4.19993,,,,,,,3.10548,3.27441,3.38984,3.98908,,,,,,,0.01856,0.025,0.02542,0.03118,,,,,,,0.01916,0.0258,0.02622,0.03211,,,,,,,0.0209,0.02814,0.02853,0.03484,,,,,,,0.01724,0.02322,0.02364,0.029,,,,,,,0.02053,0.02764,0.02803,0.03424,,,,,,,0.0186,0.02504,0.02545,0.03113,,,,,,,0.01877,0.02528,0.02569,0.03148,,,,,,,0.01968,0.0265,0.02691,0.03292,,,,,,,0.01968,0.0265,0.02692,0.03302,,,,,,,0.15839,0.19789,0.19818,0.22219,,,,,,,0.16073,0.20055,0.20082,0.22517,,,,,,,0.16747,0.20816,0.20841,0.23386,,,,,,,0.15323,0.19196,0.19224,0.21521,,,,,,,0.16602,0.2065,0.20675,0.23193,,,,,,,0.15851,0.19794,0.1982,0.22202,,,,,,,0.15919,0.19878,0.19906,0.22314,,,,,,,0.16275,0.20282,0.20309,0.22777,,,,,,,0.16274,0.2029,0.20319,0.22806,,,,,,,0.11317,0.14952,0.14979,0.17188,,,,,,,0.11426,0.1509,0.15115,0.17356,,,,,,,0.11738,0.15482,0.15505,0.17847,,,,,,,0.11058,0.14622,0.14649,0.16762,,,,,,,0.11667,0.15392,0.15415,0.17732,,,,,,,0.11305,0.14933,0.14957,0.17149,,,,,,,0.1135,0.14992,0.15018,0.17234,,,,,,,0.1152,0.15208,0.15233,0.17504,,,,,,,0.11534,0.15229,0.15257,0.17545,,,,,,,0.06015,0.00696,0.00701,0.00677,,,,,,,0.06081,0.00704,0.00708,0.00683,,,,,,,0.06168,0.00714,0.00718,0.00693,,,,,,,0.06012,0.00696,0.007,0.00677,,,,,,,0.06246,0.00722,0.00726,0.00698,,,,,,,0.06125,0.00709,0.00712,0.00686,,,,,,,0.06196,0.00717,0.0072,0.00693,,,,,,,0.06168,0.00714,0.00718,0.00691,,,,,,,0.06089,0.00705,0.00708,0.00682,,,,,,,0.40779,0.68676,0.76688,1.18176,,,,,,,0.4062,0.68918,0.76716,1.17874,,,,,,,0.42408,0.71703,0.7963,1.21432,,,,,,,0.40444,0.67975,0.75955,1.17047,,,,,,,0.38967,0.68243,0.7519,1.15107,,,,,,,0.38748,0.66991,0.74214,1.14147,,,,,,,0.38001,0.66538,0.73519,1.13233,,,,,,,0.39774,0.68533,0.75943,1.16612,,,,,,,0.37425,0.65652,0.72651,1.12526,,,,,, +Minivan,B20,2010,,0.03413,0.03237,0.02989,0.06582,,,,,,,0.03416,0.0324,0.02991,0.06592,,,,,,,0.03421,0.03245,0.02996,0.06618,,,,,,,0.03398,0.03222,0.02974,0.06539,,,,,,,0.03418,0.03242,0.02993,0.06608,,,,,,,0.03404,0.03228,0.02979,0.06562,,,,,,,0.03411,0.03235,0.02987,0.0658,,,,,,,0.03418,0.03242,0.02993,0.06601,,,,,,,0.03426,0.0325,0.03001,0.06618,,,,,,,0.05914,0.09372,0.12903,0.10029,,,,,,,0.05628,0.09046,0.12463,0.09674,,,,,,,0.05935,0.0944,0.12935,0.1003,,,,,,,0.05929,0.09368,0.12898,0.10025,,,,,,,0.04346,0.07565,0.10509,0.08119,,,,,,,0.04769,0.0802,0.11124,0.08617,,,,,,,0.04293,0.07487,0.10445,0.08081,,,,,,,0.05001,0.08329,0.11526,0.0893,,,,,,,0.04206,0.07374,0.10317,0.07993,,,,,,,1.46727,2.36807,3.05721,5.45039,,,,,,,1.51824,2.44314,3.14567,5.59664,,,,,,,1.53136,2.45291,3.14953,5.63128,,,,,,,1.52073,2.45058,3.15657,5.59741,,,,,,,1.66585,2.6603,3.40189,6.03286,,,,,,,1.60629,2.57443,3.30116,5.84887,,,,,,,1.70131,2.72629,3.49122,6.14754,,,,,,,1.60649,2.57654,3.30635,5.86371,,,,,,,1.53655,2.47504,3.18865,5.66916,,,,,,,722.88144,723.26489,724.86131,733.55234,,,,,,,730.79918,730.96901,732.24039,740.34255,,,,,,,741.14393,741.36063,742.74017,750.86644,,,,,,,722.58197,722.8257,724.24086,732.82405,,,,,,,750.61223,750.0992,750.32436,756.49744,,,,,,,736.13965,735.82867,736.36051,743.24035,,,,,,,744.66165,744.08374,744.20571,750.4392,,,,,,,741.20631,740.99778,741.68743,748.76308,,,,,,,731.75047,731.55203,732.17584,738.98818,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.62417,1.71677,1.7449,2.62565,,,,,,,1.65637,1.74939,1.77609,2.67106,,,,,,,1.69129,1.78421,1.80928,2.71599,,,,,,,1.61751,1.70931,1.7365,2.6166,,,,,,,1.6921,1.7841,1.80787,2.72089,,,,,,,1.651,1.74253,1.76771,2.66245,,,,,,,1.67968,1.77231,1.79706,2.70934,,,,,,,1.77606,1.87257,1.89633,2.84979,,,,,,,1.68299,1.77744,1.80444,2.71379,,,,,,,0.00822,0.0084,0.00805,0.01746,,,,,,,0.00848,0.00865,0.00827,0.01795,,,,,,,0.00922,0.00935,0.00891,0.0194,,,,,,,0.00766,0.00787,0.00755,0.0163,,,,,,,0.00906,0.0092,0.00877,0.01908,,,,,,,0.00824,0.00842,0.00805,0.01743,,,,,,,0.00831,0.00849,0.00812,0.01762,,,,,,,0.0087,0.00886,0.00846,0.01838,,,,,,,0.00869,0.00886,0.00847,0.01844,,,,,,,0.094,0.09526,0.09277,0.14416,,,,,,,0.09578,0.09704,0.09452,0.14638,,,,,,,0.10092,0.1022,0.09958,0.15285,,,,,,,0.09018,0.0914,0.08896,0.13908,,,,,,,0.09984,0.10111,0.0985,0.15143,,,,,,,0.0942,0.09543,0.09292,0.14414,,,,,,,0.09464,0.09589,0.09339,0.1449,,,,,,,0.09731,0.09858,0.09603,0.14832,,,,,,,0.09722,0.09851,0.09598,0.14845,,,,,,,0.05395,0.05511,0.05283,0.1001,,,,,,,0.05453,0.05569,0.05337,0.10108,,,,,,,0.05617,0.05735,0.05494,0.10395,,,,,,,0.0526,0.05373,0.05149,0.09759,,,,,,,0.0558,0.05697,0.05458,0.10327,,,,,,,0.0539,0.05504,0.05273,0.09985,,,,,,,0.05413,0.05528,0.05298,0.10036,,,,,,,0.05502,0.05619,0.05384,0.10195,,,,,,,0.05509,0.05628,0.05395,0.10221,,,,,,,0.00636,0.00636,0.00636,0.00657,,,,,,,0.00643,0.00643,0.00643,0.00664,,,,,,,0.00653,0.00652,0.00652,0.00673,,,,,,,0.00636,0.00635,0.00636,0.00657,,,,,,,0.00661,0.00659,0.00658,0.00678,,,,,,,0.00648,0.00647,0.00646,0.00666,,,,,,,0.00656,0.00654,0.00653,0.00673,,,,,,,0.00653,0.00651,0.00651,0.00671,,,,,,,0.00644,0.00643,0.00643,0.00662,,,,,,,0.22863,0.26113,0.29326,0.69406,,,,,,,0.22671,0.25838,0.28877,0.68767,,,,,,,0.23699,0.26926,0.30025,0.71008,,,,,,,0.22704,0.25947,0.29171,0.68874,,,,,,,0.21325,0.24141,0.26495,0.6524,,,,,,,0.21384,0.24311,0.2693,0.65487,,,,,,,0.20814,0.23641,0.26045,0.64258,,,,,,,0.21992,0.24999,0.27718,0.67096,,,,,,,0.20479,0.23296,0.25705,0.63767,,,,, +Minivan,B20,2015,,,0.00072,0.00116,0.00138,0.017,,,,,,,0.00072,0.00116,0.00139,0.01701,,,,,,,0.00074,0.00118,0.00141,0.01705,,,,,,,0.0007,0.00113,0.00135,0.0169,,,,,,,0.00073,0.00118,0.0014,0.01703,,,,,,,0.00071,0.00115,0.00137,0.01694,,,,,,,0.00072,0.00116,0.00138,0.01699,,,,,,,0.00073,0.00117,0.0014,0.01703,,,,,,,0.00073,0.00118,0.00141,0.01708,,,,,,,0.08452,0.11522,0.15291,0.17495,,,,,,,0.0805,0.11044,0.1469,0.16807,,,,,,,0.08489,0.11551,0.15277,0.1745,,,,,,,0.0847,0.11535,0.15304,0.17504,,,,,,,0.06251,0.08914,0.12046,0.13817,,,,,,,0.0684,0.09606,0.12913,0.14804,,,,,,,0.0617,0.08838,0.11987,0.13766,,,,,,,0.0717,0.10011,0.13418,0.15373,,,,,,,0.06045,0.08695,0.11829,0.13609,,,,,,,0.91342,1.75476,2.44395,3.72102,,,,,,,0.93766,1.80032,2.5048,3.81076,,,,,,,0.92709,1.78281,2.48348,3.79799,,,,,,,0.94758,1.8168,2.52446,3.82746,,,,,,,1.00472,1.92811,2.67742,4.07194,,,,,,,0.98312,1.88496,2.61696,3.97137,,,,,,,1.04466,2.00046,2.77209,4.18838,,,,,,,0.98318,1.88653,2.62106,3.98173,,,,,,,0.95128,1.82695,2.54218,3.86592,,,,,,,628.04989,629.96688,633.22933,667.36676,,,,,,,634.82955,636.56026,639.57363,673.57396,,,,,,,643.63616,645.44076,648.57141,683.22598,,,,,,,627.7626,629.55898,632.68016,666.57559,,,,,,,651.64498,652.76595,654.96349,688.28856,,,,,,,639.21463,640.50081,642.91766,676.07495,,,,,,,646.66173,647.70936,649.81246,682.70751,,,,,,,643.71917,645.11017,647.6692,681.25657,,,,,,,635.53638,636.89304,639.35925,672.36628,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.33306,,,,,,,0.53682,0.77214,0.84369,1.35329,,,,,,,0.54809,0.78753,0.85813,1.37456,,,,,,,0.52372,0.75365,0.82514,1.32582,,,,,,,0.5485,0.78781,0.85785,1.37441,,,,,,,0.53445,0.7684,0.83893,1.34638,,,,,,,0.54375,0.78179,0.85304,1.36862,,,,,,,0.57087,0.82186,0.89466,1.43542,,,,,,,0.54606,0.78532,0.85779,1.3751,,,,,,,0.00101,0.00156,0.00171,0.00554,,,,,,,0.00101,0.00158,0.00172,0.00565,,,,,,,0.00104,0.00161,0.00175,0.00601,,,,,,,0.00098,0.00153,0.00167,0.00524,,,,,,,0.00103,0.0016,0.00174,0.00593,,,,,,,0.001,0.00155,0.00169,0.00552,,,,,,,0.00101,0.00157,0.00171,0.00557,,,,,,,0.00102,0.00159,0.00173,0.00576,,,,,,,0.00103,0.0016,0.00174,0.00578,,,,,,,0.04842,0.05245,0.05361,0.07642,,,,,,,0.04982,0.05388,0.05503,0.078,,,,,,,0.05386,0.05801,0.05915,0.0826,,,,,,,0.04553,0.04946,0.0506,0.07295,,,,,,,0.05303,0.05715,0.05829,0.08162,,,,,,,0.04868,0.05268,0.05381,0.07654,,,,,,,0.04895,0.05298,0.05413,0.07698,,,,,,,0.05102,0.0551,0.05625,0.07937,,,,,,,0.05087,0.05498,0.05615,0.07935,,,,,,,0.01202,0.01573,0.0168,0.03778,,,,,,,0.01224,0.01598,0.01703,0.03817,,,,,,,0.01288,0.0167,0.01775,0.03932,,,,,,,0.01152,0.01514,0.01619,0.03675,,,,,,,0.01274,0.01653,0.01758,0.03904,,,,,,,0.01202,0.01571,0.01674,0.03766,,,,,,,0.0121,0.01581,0.01686,0.03788,,,,,,,0.01243,0.01619,0.01725,0.03852,,,,,,,0.01245,0.01623,0.01731,0.03865,,,,,,,0.0054,0.00542,0.00545,0.00581,,,,,,,0.00546,0.00548,0.0055,0.00586,,,,,,,0.00554,0.00555,0.00558,0.00595,,,,,,,0.0054,0.00542,0.00544,0.0058,,,,,,,0.00561,0.00561,0.00563,0.00599,,,,,,,0.0055,0.00551,0.00553,0.00589,,,,,,,0.00556,0.00557,0.00559,0.00594,,,,,,,0.00554,0.00555,0.00557,0.00593,,,,,,,0.00547,0.00548,0.0055,0.00585,,,,,,,0.08842,0.11694,0.15196,0.30894,,,,,,,0.0848,0.11261,0.14648,0.30159,,,,,,,0.08902,0.11745,0.15208,0.31248,,,,,,,0.08859,0.11705,0.15207,0.30789,,,,,,,0.06837,0.0931,0.12219,0.26763,,,,,,,0.07364,0.09933,0.13005,0.27671,,,,,,,0.06754,0.09231,0.12157,0.2648,,,,,,,0.07677,0.10316,0.13481,0.2853,,,,,,,0.06621,0.09081,0.11993,0.26207,,,, +Minivan,B20,2020,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00072,0.00111,0.00125,0.00418,,,,,,,0.00074,0.00113,0.00127,0.00421,,,,,,,0.0007,0.00108,0.00122,0.00414,,,,,,,0.00073,0.00112,0.00127,0.0042,,,,,,,0.00072,0.00109,0.00124,0.00415,,,,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00073,0.00111,0.00126,0.00419,,,,,,,0.00073,0.00112,0.00127,0.00422,,,,,,,0.08358,0.10624,0.13139,0.18031,,,,,,,0.07944,0.1014,0.12537,0.17228,,,,,,,0.08399,0.10664,0.1315,0.1799,,,,,,,0.08379,0.10643,0.13163,0.18056,,,,,,,0.06087,0.07977,0.09876,0.13728,,,,,,,0.06698,0.08684,0.10757,0.14897,,,,,,,0.06,0.07885,0.09788,0.13647,,,,,,,0.07033,0.09085,0.11244,0.15536,,,,,,,0.05872,0.07739,0.09623,0.1346,,,,,,,0.78003,1.244,1.58419,2.54313,,,,,,,0.80087,1.27638,1.623,2.59981,,,,,,,0.7941,1.26576,1.6085,2.57887,,,,,,,0.80806,1.28709,1.63602,2.61669,,,,,,,0.85922,1.36751,1.7326,2.76223,,,,,,,0.83946,1.3361,1.69464,2.70367,,,,,,,0.89057,1.41653,1.79422,2.85345,,,,,,,0.83979,1.33732,1.69717,2.71054,,,,,,,0.81228,1.29491,1.647,2.63871,,,,,,,550.76488,551.97758,554.5184,590.54774,,,,,,,556.65536,557.70538,560.02341,595.9663,,,,,,,564.37632,565.48582,567.90427,604.49952,,,,,,,550.49794,551.60614,554.01994,589.81791,,,,,,,571.21973,571.74336,573.334,608.73913,,,,,,,560.38047,561.05115,562.84058,598.00753,,,,,,,566.85909,567.32038,568.82618,603.8187,,,,,,,564.35678,565.11296,567.02507,602.63906,,,,,,,557.15998,557.89524,559.73271,594.75276,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82389,,,,,,,0.44685,0.5816,0.6301,0.83493,,,,,,,0.45614,0.59314,0.64146,0.848,,,,,,,0.43605,0.5678,0.61593,0.8177,,,,,,,0.45642,0.59326,0.64117,0.8469,,,,,,,0.44481,0.5787,0.62653,0.82966,,,,,,,0.45243,0.58857,0.63684,0.84263,,,,,,,0.47433,0.61755,0.66685,0.88083,,,,,,,0.45454,0.59154,0.64072,0.84859,,,,,,,0.00102,0.00152,0.00161,0.00244,,,,,,,0.00103,0.00153,0.00162,0.00247,,,,,,,0.00105,0.00157,0.00166,0.00256,,,,,,,0.001,0.00148,0.00157,0.00236,,,,,,,0.00105,0.00156,0.00165,0.00253,,,,,,,0.00102,0.00151,0.0016,0.00243,,,,,,,0.00102,0.00152,0.00161,0.00245,,,,,,,0.00104,0.00154,0.00163,0.0025,,,,,,,0.00104,0.00155,0.00164,0.00251,,,,,,,0.04852,0.05211,0.05284,0.05833,,,,,,,0.04992,0.05354,0.05426,0.05977,,,,,,,0.05397,0.05767,0.05839,0.06397,,,,,,,0.04563,0.04913,0.04984,0.05523,,,,,,,0.05314,0.05681,0.05753,0.06309,,,,,,,0.04878,0.05235,0.05306,0.0585,,,,,,,0.04905,0.05264,0.05337,0.05885,,,,,,,0.05112,0.05476,0.05548,0.06102,,,,,,,0.05097,0.05463,0.05537,0.06095,,,,,,,0.01212,0.01542,0.01609,0.02114,,,,,,,0.01234,0.01566,0.01633,0.0214,,,,,,,0.01299,0.01638,0.01705,0.02218,,,,,,,0.01161,0.01483,0.01549,0.02045,,,,,,,0.01284,0.01622,0.01688,0.022,,,,,,,0.01212,0.0154,0.01605,0.02106,,,,,,,0.01219,0.01549,0.01616,0.02121,,,,,,,0.01253,0.01588,0.01654,0.02164,,,,,,,0.01254,0.01591,0.01659,0.02172,,,,,,,0.00474,0.00475,0.00477,0.00509,,,,,,,0.00479,0.0048,0.00482,0.00514,,,,,,,0.00485,0.00486,0.00488,0.00521,,,,,,,0.00474,0.00474,0.00477,0.00508,,,,,,,0.00491,0.00492,0.00493,0.00525,,,,,,,0.00482,0.00483,0.00484,0.00516,,,,,,,0.00488,0.00488,0.00489,0.00521,,,,,,,0.00485,0.00486,0.00488,0.0052,,,,,,,0.00479,0.0048,0.00481,0.00513,,,,,,,0.08632,0.10737,0.13074,0.19448,,,,,,,0.08257,0.10296,0.12525,0.18693,,,,,,,0.08691,0.10795,0.13106,0.19485,,,,,,,0.08651,0.10753,0.13096,0.19457,,,,,,,0.06557,0.08311,0.10076,0.15354,,,,,,,0.07107,0.08951,0.10877,0.16432,,,,,,,0.0647,0.0822,0.09987,0.15237,,,,,,,0.07425,0.09329,0.11335,0.17078,,,,,,,0.06335,0.08069,0.0982,0.15031,,, +Minivan,B20,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,512.94968,514.78197,517.99663,544.25471,,,,,,,518.41824,520.11253,523.12908,549.19587,,,,,,,525.63567,527.39377,530.51625,557.07648,,,,,,,512.69748,514.43352,517.52977,543.57044,,,,,,,531.93956,533.18201,535.5448,560.80507,,,,,,,521.85672,523.21567,525.74649,550.9689,,,,,,,527.85874,529.03774,531.31514,556.26614,,,,,,,525.56045,527.00165,529.65269,555.2562,,,,,,,518.83947,520.25518,522.82468,547.95859,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00441,0.00443,0.00446,0.00468,,,,,,,0.00446,0.00447,0.0045,0.00472,,,,,,,0.00452,0.00454,0.00456,0.00479,,,,,,,0.00441,0.00442,0.00445,0.00468,,,,,,,0.00458,0.00459,0.00461,0.00482,,,,,,,0.00449,0.0045,0.00452,0.00474,,,,,,,0.00454,0.00455,0.00457,0.00478,,,,,,,0.00452,0.00453,0.00456,0.00478,,,,,,,0.00446,0.00447,0.0045,0.00471,,,,,,,0.08159,0.09699,0.11488,0.16091,,,,,,,0.07781,0.09262,0.10945,0.15328,,,,,,,0.08221,0.09767,0.11535,0.16087,,,,,,,0.08181,0.09721,0.11518,0.16128,,,,,,,0.06066,0.07282,0.08511,0.11973,,,,,,,0.06623,0.07923,0.09313,0.13096,,,,,,,0.05974,0.07178,0.08404,0.11866,,,,,,,0.06938,0.0829,0.09753,0.13694,,,,,,,0.05838,0.07026,0.08234,0.11665,, +Minivan,B20,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,503.3718,505.58672,509.32506,524.005,,,,,,,508.73521,510.82156,514.36827,528.75158,,,,,,,515.82884,517.98233,521.64211,536.35182,,,,,,,503.12336,505.24438,508.86591,523.34427,,,,,,,522.00133,523.66189,526.57097,539.90088,,,,,,,512.10638,513.87105,516.93712,530.43894,,,,,,,517.98771,519.58364,522.40402,535.52213,,,,,,,515.73928,517.58703,520.77689,534.56791,,,,,,,509.13879,510.95708,514.05712,527.53122,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00433,0.00435,0.00438,0.00451,,,,,,,0.00438,0.00439,0.00442,0.00455,,,,,,,0.00444,0.00446,0.00449,0.00461,,,,,,,0.00433,0.00435,0.00438,0.0045,,,,,,,0.00449,0.0045,0.00453,0.00464,,,,,,,0.0044,0.00442,0.00445,0.00456,,,,,,,0.00446,0.00447,0.00449,0.00461,,,,,,,0.00444,0.00445,0.00448,0.0046,,,,,,,0.00438,0.00439,0.00442,0.00454,,,,,,,0.08017,0.0942,0.11124,0.14813,,,,,,,0.0764,0.08985,0.10581,0.14053,,,,,,,0.0808,0.09491,0.11173,0.14819,,,,,,,0.0804,0.09443,0.11155,0.14859,,,,,,,0.05928,0.07014,0.0815,0.10697,,,,,,,0.06484,0.07653,0.08953,0.11827,,,,,,,0.05833,0.06907,0.08039,0.10579,,,,,,,0.06798,0.08017,0.09389,0.12412,,,,,,,0.05698,0.06756,0.07867,0.10371, +Minivan,B20,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,503.3128,505.57794,509.31583,517.92765,,,,,,,508.67869,510.81372,514.35931,522.61762,,,,,,,515.77052,517.97394,521.633,530.13469,,,,,,,503.06497,505.23579,508.85677,517.27438,,,,,,,521.95275,523.65546,526.56382,533.6353,,,,,,,512.05585,513.86405,516.92984,524.2835,,,,,,,517.94008,519.57754,522.39719,529.3037,,,,,,,515.68704,517.57981,520.769,528.36379,,,,,,,509.0895,510.95084,514.04998,521.40596,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00438,0.00439,0.00442,0.0045,,,,,,,0.00444,0.00446,0.00449,0.00456,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00449,0.0045,0.00453,0.00459,,,,,,,0.0044,0.00442,0.00445,0.00451,,,,,,,0.00446,0.00447,0.00449,0.00455,,,,,,,0.00444,0.00445,0.00448,0.00454,,,,,,,0.00438,0.00439,0.00442,0.00448,,,,,,,0.07996,0.09416,0.11119,0.14344,,,,,,,0.0762,0.08981,0.10577,0.13585,,,,,,,0.08059,0.09487,0.11169,0.14354,,,,,,,0.08018,0.09439,0.1115,0.14394,,,,,,,0.05915,0.07011,0.08147,0.1023,,,,,,,0.06469,0.0765,0.08949,0.11362,,,,,,,0.05821,0.06904,0.08036,0.10108,,,,,,,0.06781,0.08013,0.09385,0.11942,,,,,,,0.05686,0.06753,0.07865,0.09897 +Minivan,B20,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,503.3127,505.57737,509.32466,,,,,,,,508.67923,510.81324,514.3685,,,,,,,,515.7706,517.97353,521.64196,,,,,,,,503.06515,505.23527,508.8656,,,,,,,,521.95499,523.65697,526.57308,,,,,,,,512.05759,513.865,516.939,,,,,,,,517.94224,519.57897,522.40675,,,,,,,,515.68842,517.58047,520.77814,,,,,,,,509.09118,510.95144,514.05931,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.00444,0.00446,0.00449,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00449,0.0045,0.00453,,,,,,,,0.0044,0.00442,0.00445,,,,,,,,0.00446,0.00447,0.00449,,,,,,,,0.00444,0.00445,0.00448,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.07992,0.09412,0.11119,,,,,,,,0.07617,0.08978,0.10577,,,,,,,,0.08055,0.09483,0.11168,,,,,,,,0.08014,0.09435,0.1115,,,,,,,,0.05913,0.07009,0.08147,,,,,,,,0.06466,0.07648,0.08949,,,,,,,,0.05819,0.06902,0.08036,,,,,,,,0.06778,0.08011,0.09385,,,,,,,,0.05684,0.06751,0.07865 +Minivan,B20,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,503.30521,505.57746,,,,,,,,,508.67208,510.81364,,,,,,,,,515.76329,517.97369,,,,,,,,,503.05787,505.23542,,,,,,,,,521.94878,523.65741,,,,,,,,,512.05102,513.86545,,,,,,,,,517.93623,519.5794,,,,,,,,,515.6819,517.5808,,,,,,,,,509.08488,510.95195,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00438,0.00439,,,,,,,,,0.00444,0.00446,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00449,0.0045,,,,,,,,,0.0044,0.00442,,,,,,,,,0.00445,0.00447,,,,,,,,,0.00444,0.00445,,,,,,,,,0.00438,0.00439,,,,,,,,,0.07989,0.09412,,,,,,,,,0.07614,0.08978,,,,,,,,,0.08053,0.09483,,,,,,,,,0.08011,0.09435,,,,,,,,,0.05911,0.07009,,,,,,,,,0.06464,0.07647,,,,,,,,,0.05817,0.06902,,,,,,,,,0.06776,0.0801,,,,,,,,,0.05682,0.06751 +Minivan,B20,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,503.30269,,,,,,,,,,508.66947,,,,,,,,,,515.76074,,,,,,,,,,503.0552,,,,,,,,,,521.94623,,,,,,,,,,512.04854,,,,,,,,,,517.93382,,,,,,,,,,515.6793,,,,,,,,,,509.08241,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00433,,,,,,,,,,0.00438,,,,,,,,,,0.00444,,,,,,,,,,0.00433,,,,,,,,,,0.00449,,,,,,,,,,0.0044,,,,,,,,,,0.00445,,,,,,,,,,0.00444,,,,,,,,,,0.00438,,,,,,,,,,0.07989,,,,,,,,,,0.07614,,,,,,,,,,0.08053,,,,,,,,,,0.08011,,,,,,,,,,0.05911,,,,,,,,,,0.06464,,,,,,,,,,0.05817,,,,,,,,,,0.06776,,,,,,,,,,0.05682 +Minivan,DSL,1990,0.2702,,,,,,,,,,0.26964,,,,,,,,,,0.26838,,,,,,,,,,0.27112,,,,,,,,,,0.26865,,,,,,,,,,0.27006,,,,,,,,,,0.27,,,,,,,,,,0.26927,,,,,,,,,,0.2694,,,,,,,,,,0.00847,,,,,,,,,,0.0085,,,,,,,,,,0.00873,,,,,,,,,,0.00832,,,,,,,,,,0.00853,,,,,,,,,,0.00834,,,,,,,,,,0.00836,,,,,,,,,,0.00852,,,,,,,,,,0.00841,,,,,,,,,,59.25842,,,,,,,,,,60.05778,,,,,,,,,,60.45272,,,,,,,,,,59.63333,,,,,,,,,,62.47742,,,,,,,,,,61.13211,,,,,,,,,,62.91043,,,,,,,,,,61.59726,,,,,,,,,,60.76403,,,,,,,,,,541.49662,,,,,,,,,,543.54455,,,,,,,,,,548.85394,,,,,,,,,,540.04668,,,,,,,,,,546.89176,,,,,,,,,,541.50929,,,,,,,,,,543.73957,,,,,,,,,,545.2678,,,,,,,,,,540.60916,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.71292,,,,,,,,,,5.75771,,,,,,,,,,5.79517,,,,,,,,,,5.67689,,,,,,,,,,5.70488,,,,,,,,,,5.67166,,,,,,,,,,5.70967,,,,,,,,,,6.05558,,,,,,,,,,5.82867,,,,,,,,,,0.0739,,,,,,,,,,0.07528,,,,,,,,,,0.07956,,,,,,,,,,0.07057,,,,,,,,,,0.07864,,,,,,,,,,0.07386,,,,,,,,,,0.07437,,,,,,,,,,0.07655,,,,,,,,,,0.07669,,,,,,,,,,0.45084,,,,,,,,,,0.45374,,,,,,,,,,0.46303,,,,,,,,,,0.44383,,,,,,,,,,0.46107,,,,,,,,,,0.4509,,,,,,,,,,0.45187,,,,,,,,,,0.45649,,,,,,,,,,0.45669,,,,,,,,,,0.38235,,,,,,,,,,0.38393,,,,,,,,,,0.38934,,,,,,,,,,0.37811,,,,,,,,,,0.38817,,,,,,,,,,0.38217,,,,,,,,,,0.38288,,,,,,,,,,0.38553,,,,,,,,,,0.38586,,,,,,,,,,0.04127,,,,,,,,,,0.04142,,,,,,,,,,0.04183,,,,,,,,,,0.04116,,,,,,,,,,0.04168,,,,,,,,,,0.04127,,,,,,,,,,0.04144,,,,,,,,,,0.04156,,,,,,,,,,0.0412,,,,,,,,,,3.676,,,,,,,,,,3.68997,,,,,,,,,,3.7899,,,,,,,,,,3.61329,,,,,,,,,,3.70235,,,,,,,,,,3.62112,,,,,,,,,,3.62861,,,,,,,,,,3.69793,,,,,,,,,,3.64929,,,,,,,,, +Minivan,DSL,1995,0.21313,0.21119,,,,,,,,,0.21413,0.21164,,,,,,,,,0.2172,0.2132,,,,,,,,,0.21042,0.20971,,,,,,,,,0.21648,0.21281,,,,,,,,,0.21281,0.2109,,,,,,,,,0.21339,0.21128,,,,,,,,,0.21503,0.2121,,,,,,,,,0.21539,0.2124,,,,,,,,,0.00476,0.00687,,,,,,,,,0.00478,0.00689,,,,,,,,,0.00491,0.00706,,,,,,,,,0.0047,0.00677,,,,,,,,,0.00481,0.00691,,,,,,,,,0.00471,0.00677,,,,,,,,,0.00472,0.00679,,,,,,,,,0.0048,0.00691,,,,,,,,,0.00472,0.00681,,,,,,,,,19.08086,37.43417,,,,,,,,,19.56861,38.11029,,,,,,,,,19.5796,38.20981,,,,,,,,,19.64063,38.0417,,,,,,,,,20.9166,40.03449,,,,,,,,,20.41599,39.18027,,,,,,,,,21.39465,40.63183,,,,,,,,,20.42434,39.35074,,,,,,,,,19.76313,38.5242,,,,,,,,,604.05216,584.54177,,,,,,,,,608.51534,587.99728,,,,,,,,,614.20139,593.74374,,,,,,,,,604.94647,584.50009,,,,,,,,,618.86109,595.38189,,,,,,,,,611.22718,588.60376,,,,,,,,,616.50204,592.62164,,,,,,,,,614.18567,591.98679,,,,,,,,,607.10088,585.60288,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.58442,6.03387,,,,,,,,,5.6862,6.11255,,,,,,,,,5.7799,6.1775,,,,,,,,,5.57299,6.01646,,,,,,,,,5.79876,6.15385,,,,,,,,,5.67334,6.06999,,,,,,,,,5.77689,6.1523,,,,,,,,,6.08874,6.48525,,,,,,,,,5.77638,6.19878,,,,,,,,,0.05825,0.06133,,,,,,,,,0.06009,0.06285,,,,,,,,,0.0656,0.06747,,,,,,,,,0.05386,0.05755,,,,,,,,,0.06439,0.06643,,,,,,,,,0.05814,0.06114,,,,,,,,,0.05884,0.0618,,,,,,,,,0.06172,0.06422,,,,,,,,,0.06192,0.06448,,,,,,,,,0.36405,0.36433,,,,,,,,,0.36937,0.3685,,,,,,,,,0.38522,0.38117,,,,,,,,,0.35148,0.35421,,,,,,,,,0.38174,0.37837,,,,,,,,,0.36381,0.36402,,,,,,,,,0.36577,0.36567,,,,,,,,,0.37404,0.37225,,,,,,,,,0.37457,0.3728,,,,,,,,,0.30242,0.30273,,,,,,,,,0.30624,0.30549,,,,,,,,,0.31772,0.31402,,,,,,,,,0.29304,0.29561,,,,,,,,,0.31515,0.31208,,,,,,,,,0.30197,0.30221,,,,,,,,,0.30359,0.30354,,,,,,,,,0.30962,0.30801,,,,,,,,,0.31026,0.30866,,,,,,,,,0.04604,0.00514,,,,,,,,,0.04638,0.00517,,,,,,,,,0.04681,0.00522,,,,,,,,,0.0461,0.00514,,,,,,,,,0.04716,0.00524,,,,,,,,,0.04658,0.00518,,,,,,,,,0.04698,0.00521,,,,,,,,,0.04681,0.00521,,,,,,,,,0.04627,0.00515,,,,,,,,,2.33699,3.20375,,,,,,,,,2.34611,3.21291,,,,,,,,,2.40979,3.29292,,,,,,,,,2.30575,3.15745,,,,,,,,,2.35907,3.22001,,,,,,,,,2.30995,3.15761,,,,,,,,,2.31701,3.16618,,,,,,,,,2.35426,3.21969,,,,,,,,,2.31417,3.17362,,,,,,,, +Minivan,DSL,2000,0.2047,0.20185,0.19963,,,,,,,,0.20558,0.20271,0.20037,,,,,,,,0.20813,0.20517,0.20255,,,,,,,,0.20203,0.19923,0.19732,,,,,,,,0.20745,0.2045,0.20196,,,,,,,,0.20408,0.20121,0.19907,,,,,,,,0.20483,0.20197,0.19973,,,,,,,,0.20635,0.20345,0.20103,,,,,,,,0.20692,0.20403,0.20155,,,,,,,,0.00228,0.00317,0.00463,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00238,0.00327,0.00475,,,,,,,,0.00226,0.00314,0.00458,,,,,,,,0.0023,0.00317,0.00461,,,,,,,,0.00225,0.00312,0.00454,,,,,,,,0.00224,0.00312,0.00454,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00222,0.0031,0.00453,,,,,,,,6.22527,9.35927,16.60618,,,,,,,,6.45683,9.65879,17.01802,,,,,,,,6.58557,9.78509,17.10428,,,,,,,,6.44166,9.66232,17.03732,,,,,,,,7.1379,10.55488,18.2161,,,,,,,,6.85066,10.18753,17.73292,,,,,,,,7.20367,10.71046,18.54343,,,,,,,,6.84218,10.17996,17.7546,,,,,,,,6.51101,9.75797,17.19887,,,,,,,,610.50715,614.34896,614.29834,,,,,,,,615.76176,619.40381,618.72774,,,,,,,,621.70733,625.42643,624.90186,,,,,,,,612.00712,615.71271,615.2336,,,,,,,,628.43527,631.42639,628.81969,,,,,,,,619.90948,623.05993,621.02176,,,,,,,,626.19565,629.12468,626.29217,,,,,,,,622.72126,626.0069,624.24476,,,,,,,,614.90551,618.14864,616.46645,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.18683,4.48395,5.12228,,,,,,,,4.29221,4.58798,5.22001,,,,,,,,4.40022,4.69306,5.31552,,,,,,,,4.18095,4.47611,5.10973,,,,,,,,4.45795,4.74488,5.34777,,,,,,,,4.31042,4.60052,5.21662,,,,,,,,4.41737,4.70827,5.32087,,,,,,,,4.6563,4.95728,5.59472,,,,,,,,4.37273,4.6716,5.30797,,,,,,,,0.05353,0.05365,0.05543,,,,,,,,0.05533,0.05539,0.05706,,,,,,,,0.06062,0.06056,0.06193,,,,,,,,0.04931,0.04946,0.0514,,,,,,,,0.05945,0.05941,0.06083,,,,,,,,0.05344,0.0535,0.0552,,,,,,,,0.05411,0.05419,0.05592,,,,,,,,0.05689,0.05692,0.0585,,,,,,,,0.05708,0.05715,0.05879,,,,,,,,0.34752,0.34248,0.3428,,,,,,,,0.35263,0.34741,0.34743,,,,,,,,0.36756,0.36186,0.36114,,,,,,,,0.33528,0.33052,0.33141,,,,,,,,0.3642,0.35859,0.35803,,,,,,,,0.34698,0.34185,0.34213,,,,,,,,0.34908,0.34395,0.34418,,,,,,,,0.35706,0.3517,0.3515,,,,,,,,0.35779,0.3525,0.35234,,,,,,,,0.28718,0.28255,0.28287,,,,,,,,0.29081,0.28602,0.28606,,,,,,,,0.30146,0.29622,0.29557,,,,,,,,0.27808,0.27371,0.27455,,,,,,,,0.299,0.29384,0.29334,,,,,,,,0.28645,0.28174,0.28201,,,,,,,,0.2882,0.28349,0.28372,,,,,,,,0.29397,0.28905,0.28888,,,,,,,,0.29479,0.28993,0.2898,,,,,,,,0.04653,0.0054,0.0054,,,,,,,,0.04693,0.00545,0.00544,,,,,,,,0.04738,0.0055,0.0055,,,,,,,,0.04664,0.00541,0.00541,,,,,,,,0.04789,0.00555,0.00553,,,,,,,,0.04724,0.00548,0.00546,,,,,,,,0.04772,0.00553,0.00551,,,,,,,,0.04746,0.0055,0.00549,,,,,,,,0.04686,0.00544,0.00542,,,,,,,,1.14941,1.59216,2.28248,,,,,,,,1.15524,1.59655,2.28412,,,,,,,,1.19731,1.64074,2.33968,,,,,,,,1.1364,1.57641,2.25735,,,,,,,,1.15588,1.59247,2.27029,,,,,,,,1.13116,1.56655,2.23838,,,,,,,,1.12899,1.56644,2.23829,,,,,,,,1.15513,1.59602,2.28046,,,,,,,,1.11779,1.55587,2.23336,,,,,,, +Minivan,DSL,2005,0.09572,0.12903,0.12863,0.14516,,,,,,,0.09578,0.12912,0.12872,0.14541,,,,,,,0.09592,0.12929,0.12889,0.14608,,,,,,,0.09533,0.1285,0.1281,0.14417,,,,,,,0.09584,0.12918,0.12878,0.14585,,,,,,,0.09547,0.12869,0.12828,0.14474,,,,,,,0.09567,0.12896,0.12857,0.14514,,,,,,,0.09584,0.12919,0.12879,0.14563,,,,,,,0.09604,0.12947,0.12908,0.14598,,,,,,,0.00233,0.00207,0.00236,0.00328,,,,,,,0.0023,0.00207,0.00236,0.00327,,,,,,,0.00241,0.00216,0.00245,0.00337,,,,,,,0.00231,0.00205,0.00234,0.00325,,,,,,,0.00214,0.00205,0.0023,0.00318,,,,,,,0.00216,0.00201,0.00228,0.00316,,,,,,,0.00209,0.00199,0.00225,0.00313,,,,,,,0.00222,0.00206,0.00233,0.00323,,,,,,,0.00206,0.00197,0.00223,0.0031,,,,,,,2.439,4.73285,5.67889,8.98591,,,,,,,2.53055,4.90991,5.8753,9.24024,,,,,,,2.5793,5.01184,5.97945,9.33758,,,,,,,2.52143,4.88615,5.85009,9.22712,,,,,,,2.80253,5.43947,6.46451,10.0012,,,,,,,2.68379,5.20356,6.20135,9.67379,,,,,,,2.8329,5.48868,6.53354,10.14763,,,,,,,2.68565,5.21018,6.21391,9.69307,,,,,,,2.55832,4.96476,5.94489,9.34819,,,,,,,753.54559,756.03598,761.09282,735.19163,,,,,,,761.83357,764.17973,768.97886,741.92389,,,,,,,772.62944,774.99911,779.93525,751.9778,,,,,,,753.20032,755.55334,760.43898,734.73777,,,,,,,782.45236,784.32988,788.27607,757.90977,,,,,,,767.31518,769.30236,773.45652,745.02376,,,,,,,776.2326,778.06727,781.90038,752.29625,,,,,,,772.69015,774.78178,779.10577,750.3284,,,,,,,762.76947,764.91202,769.14664,740.64573,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.92255,3.08769,3.20261,3.77284,,,,,,,2.98825,3.15224,3.26466,3.8414,,,,,,,3.05207,3.21204,3.32065,3.90515,,,,,,,2.92033,3.08554,3.19943,3.76557,,,,,,,3.07534,3.2316,3.3355,3.92117,,,,,,,2.99246,3.15286,3.26132,3.83524,,,,,,,3.05616,3.21691,3.32408,3.90736,,,,,,,3.22604,3.39306,3.50301,4.10952,,,,,,,3.03863,3.20392,3.31687,3.90321,,,,,,,0.022,0.02962,0.03012,0.03695,,,,,,,0.02271,0.03057,0.03106,0.03804,,,,,,,0.02476,0.03334,0.03381,0.04128,,,,,,,0.02043,0.02751,0.02801,0.03436,,,,,,,0.02432,0.03274,0.03321,0.04056,,,,,,,0.02204,0.02967,0.03015,0.03688,,,,,,,0.02224,0.02995,0.03044,0.0373,,,,,,,0.02332,0.0314,0.03188,0.03901,,,,,,,0.02332,0.0314,0.0319,0.03912,,,,,,,0.17976,0.22669,0.22704,0.25544,,,,,,,0.18228,0.22959,0.22991,0.25872,,,,,,,0.18952,0.23787,0.23816,0.26828,,,,,,,0.17417,0.22018,0.22051,0.24769,,,,,,,0.18795,0.23606,0.23635,0.26614,,,,,,,0.17985,0.22669,0.227,0.25518,,,,,,,0.18062,0.22765,0.22797,0.25647,,,,,,,0.18445,0.23206,0.23238,0.26158,,,,,,,0.18448,0.23219,0.23254,0.26196,,,,,,,0.13283,0.17602,0.17633,0.20247,,,,,,,0.13409,0.17761,0.17791,0.20443,,,,,,,0.13767,0.18216,0.18243,0.21013,,,,,,,0.12985,0.17218,0.17249,0.1975,,,,,,,0.13685,0.18111,0.18138,0.20879,,,,,,,0.13268,0.17578,0.17607,0.202,,,,,,,0.1332,0.17648,0.17679,0.203,,,,,,,0.13517,0.17898,0.17928,0.20614,,,,,,,0.13534,0.17924,0.17957,0.20664,,,,,,,0.05743,0.00665,0.00669,0.00647,,,,,,,0.05806,0.00672,0.00676,0.00652,,,,,,,0.05888,0.00682,0.00686,0.00661,,,,,,,0.0574,0.00664,0.00669,0.00646,,,,,,,0.05963,0.0069,0.00693,0.00666,,,,,,,0.05848,0.00677,0.0068,0.00655,,,,,,,0.05916,0.00684,0.00688,0.00662,,,,,,,0.05889,0.00681,0.00685,0.0066,,,,,,,0.05813,0.00673,0.00676,0.00651,,,,,,,0.47208,0.79683,0.89009,1.37306,,,,,,,0.47019,0.79962,0.89039,1.36952,,,,,,,0.49098,0.832,0.92428,1.41091,,,,,,,0.46817,0.78867,0.88156,1.35992,,,,,,,0.45087,0.79169,0.87256,1.33725,,,,,,,0.44838,0.77717,0.86124,1.32612,,,,,,,0.43966,0.77187,0.85312,1.31545,,,,,,,0.46031,0.7951,0.88136,1.3548,,,,,,,0.433,0.7616,0.84306,1.30727,,,,,, +Minivan,DSL,2010,,0.04035,0.03818,0.0352,0.07782,,,,,,,0.04038,0.03821,0.03522,0.07794,,,,,,,0.04044,0.03828,0.03529,0.07825,,,,,,,0.04018,0.03801,0.03503,0.07731,,,,,,,0.04041,0.03824,0.03525,0.07813,,,,,,,0.04024,0.03807,0.03509,0.07758,,,,,,,0.04033,0.03816,0.03518,0.0778,,,,,,,0.04041,0.03824,0.03525,0.07804,,,,,,,0.0405,0.03833,0.03534,0.07825,,,,,,,0.05923,0.09381,0.12912,0.10055,,,,,,,0.05636,0.09055,0.12472,0.09699,,,,,,,0.05944,0.09449,0.12944,0.10056,,,,,,,0.05937,0.09377,0.12906,0.1005,,,,,,,0.04355,0.07574,0.10517,0.08143,,,,,,,0.04777,0.08028,0.11132,0.08641,,,,,,,0.04301,0.07495,0.10453,0.08104,,,,,,,0.0501,0.08337,0.11534,0.08954,,,,,,,0.04214,0.07382,0.10325,0.08016,,,,,,,1.59913,2.50496,3.19832,6.05493,,,,,,,1.65554,2.58543,3.29192,6.2182,,,,,,,1.67207,2.59853,3.2987,6.2603,,,,,,,1.65726,2.59205,3.30208,6.21735,,,,,,,1.81931,2.81867,3.56346,6.70594,,,,,,,1.75257,2.7256,3.45587,6.49917,,,,,,,1.85583,2.8858,3.65427,6.82938,,,,,,,1.75282,2.72785,3.46131,6.51573,,,,,,,1.67525,2.61883,3.33655,6.29824,,,,,,,726.51573,726.9011,728.50556,737.24026,,,,,,,734.4734,734.64384,735.92169,744.06471,,,,,,,744.87017,745.08782,746.47429,754.6415,,,,,,,726.21471,726.45981,727.88196,736.50833,,,,,,,754.38594,753.87029,754.09659,760.3007,,,,,,,739.84073,739.52804,740.06255,746.97698,,,,,,,748.40552,747.82464,747.94723,754.2121,,,,,,,744.93281,744.72319,745.4163,752.52753,,,,,,,735.42934,735.22972,735.85715,742.70343,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.60689,1.70024,1.72947,2.58328,,,,,,,1.63878,1.73258,1.7604,2.62795,,,,,,,1.67343,1.76716,1.79337,2.67221,,,,,,,1.60024,1.69279,1.72109,2.57432,,,,,,,1.67426,1.76707,1.79199,2.677,,,,,,,1.63347,1.72578,1.7521,2.61945,,,,,,,1.66187,1.7553,1.78121,2.66557,,,,,,,1.75725,1.85461,1.8796,2.80378,,,,,,,1.66516,1.76039,1.78853,2.67001,,,,,,,0.00962,0.00973,0.00928,0.02051,,,,,,,0.00993,0.01001,0.00954,0.02109,,,,,,,0.0108,0.01084,0.01029,0.0228,,,,,,,0.00897,0.0091,0.00869,0.01914,,,,,,,0.01061,0.01066,0.01013,0.02242,,,,,,,0.00965,0.00974,0.00929,0.02047,,,,,,,0.00973,0.00983,0.00937,0.0207,,,,,,,0.01019,0.01026,0.00976,0.0216,,,,,,,0.01018,0.01026,0.00977,0.02167,,,,,,,0.10286,0.10356,0.10039,0.16178,,,,,,,0.10472,0.10542,0.1022,0.16416,,,,,,,0.11007,0.11077,0.10744,0.17107,,,,,,,0.09887,0.09953,0.09643,0.15629,,,,,,,0.10893,0.10963,0.10632,0.16954,,,,,,,0.10305,0.10372,0.10052,0.16171,,,,,,,0.10352,0.10421,0.10102,0.16255,,,,,,,0.10631,0.10701,0.10376,0.16622,,,,,,,0.10624,0.10696,0.10373,0.1664,,,,,,,0.06211,0.06275,0.05983,0.11631,,,,,,,0.06275,0.06339,0.06043,0.11743,,,,,,,0.06459,0.06523,0.06217,0.12071,,,,,,,0.06059,0.06121,0.05836,0.11343,,,,,,,0.06417,0.06481,0.06177,0.11993,,,,,,,0.06205,0.06266,0.05973,0.11601,,,,,,,0.0623,0.06294,0.06001,0.11661,,,,,,,0.0633,0.06395,0.06096,0.11842,,,,,,,0.06338,0.06404,0.06108,0.11873,,,,,,,0.00608,0.00607,0.00607,0.00628,,,,,,,0.00614,0.00614,0.00613,0.00633,,,,,,,0.00623,0.00622,0.00622,0.00642,,,,,,,0.00607,0.00607,0.00607,0.00627,,,,,,,0.00631,0.0063,0.00629,0.00647,,,,,,,0.00619,0.00618,0.00617,0.00636,,,,,,,0.00626,0.00625,0.00624,0.00642,,,,,,,0.00623,0.00622,0.00621,0.00641,,,,,,,0.00615,0.00614,0.00613,0.00632,,,,,,,0.25482,0.28738,0.3194,0.79043,,,,,,,0.253,0.28466,0.31483,0.7835,,,,,,,0.26447,0.2967,0.32744,0.80902,,,,,,,0.25295,0.28546,0.31762,0.78425,,,,,,,0.23921,0.26709,0.29001,0.74475,,,,,,,0.2393,0.26843,0.29418,0.74691,,,,,,,0.23336,0.26142,0.28489,0.73339,,,,,,,0.24602,0.27595,0.30272,0.76515,,,,,,,0.22964,0.25761,0.28117,0.72785,,,,, +Minivan,DSL,2015,,,0.00072,0.00116,0.00138,0.01985,,,,,,,0.00072,0.00116,0.00139,0.01986,,,,,,,0.00074,0.00118,0.00141,0.0199,,,,,,,0.0007,0.00113,0.00135,0.01974,,,,,,,0.00073,0.00118,0.0014,0.01988,,,,,,,0.00071,0.00115,0.00137,0.01978,,,,,,,0.00072,0.00116,0.00138,0.01983,,,,,,,0.00073,0.00117,0.0014,0.01988,,,,,,,0.00073,0.00118,0.00141,0.01994,,,,,,,0.08452,0.11522,0.15291,0.17502,,,,,,,0.0805,0.11044,0.1469,0.16813,,,,,,,0.08489,0.11551,0.15277,0.17456,,,,,,,0.0847,0.11535,0.15304,0.1751,,,,,,,0.06251,0.08914,0.12046,0.13823,,,,,,,0.0684,0.09606,0.12913,0.1481,,,,,,,0.0617,0.08838,0.11987,0.13772,,,,,,,0.0717,0.10011,0.13418,0.15379,,,,,,,0.06045,0.08695,0.11829,0.13615,,,,,,,0.91342,1.75476,2.44395,3.86478,,,,,,,0.93766,1.80032,2.5048,3.95859,,,,,,,0.92709,1.78281,2.48348,3.94764,,,,,,,0.94758,1.8168,2.52446,3.97481,,,,,,,1.00472,1.92811,2.67742,4.23212,,,,,,,0.98312,1.88496,2.61696,4.12601,,,,,,,1.04466,2.00046,2.77209,4.3506,,,,,,,0.98318,1.88653,2.62106,4.13686,,,,,,,0.95128,1.82695,2.54218,4.01561,,,,,,,631.20736,633.13412,636.41281,670.72204,,,,,,,638.0212,639.76055,642.78907,676.96032,,,,,,,646.87206,648.68575,651.83213,686.66084,,,,,,,630.91863,632.72408,635.86096,669.92674,,,,,,,654.92112,656.04769,658.25622,691.74887,,,,,,,642.42822,643.72105,646.14985,679.47404,,,,,,,649.91271,650.96569,653.07937,686.13987,,,,,,,646.95551,648.35351,650.92532,684.68167,,,,,,,638.7315,640.09514,642.57352,675.74666,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.32275,,,,,,,0.53682,0.77214,0.84369,1.34281,,,,,,,0.54809,0.78753,0.85813,1.36392,,,,,,,0.52372,0.75365,0.82514,1.31553,,,,,,,0.5485,0.78781,0.85785,1.36376,,,,,,,0.53445,0.7684,0.83893,1.33593,,,,,,,0.54375,0.78179,0.85304,1.358,,,,,,,0.57087,0.82186,0.89466,1.42425,,,,,,,0.54606,0.78532,0.85779,1.36446,,,,,,,0.00101,0.00156,0.00171,0.00625,,,,,,,0.00101,0.00158,0.00172,0.00638,,,,,,,0.00104,0.00161,0.00175,0.0068,,,,,,,0.00098,0.00153,0.00167,0.0059,,,,,,,0.00103,0.0016,0.00174,0.0067,,,,,,,0.001,0.00155,0.00169,0.00623,,,,,,,0.00101,0.00157,0.00171,0.00629,,,,,,,0.00102,0.00159,0.00173,0.00651,,,,,,,0.00103,0.0016,0.00174,0.00653,,,,,,,0.04842,0.05245,0.05361,0.08058,,,,,,,0.04982,0.05388,0.05503,0.08219,,,,,,,0.05386,0.05801,0.05915,0.08688,,,,,,,0.04553,0.04946,0.0506,0.07703,,,,,,,0.05303,0.05715,0.05829,0.08588,,,,,,,0.04868,0.05268,0.05381,0.08069,,,,,,,0.04895,0.05298,0.05413,0.08115,,,,,,,0.05102,0.0551,0.05625,0.08359,,,,,,,0.05087,0.05498,0.05615,0.08358,,,,,,,0.01202,0.01573,0.0168,0.04161,,,,,,,0.01224,0.01598,0.01703,0.04202,,,,,,,0.01288,0.0167,0.01775,0.04326,,,,,,,0.01152,0.01514,0.01619,0.0405,,,,,,,0.01274,0.01653,0.01758,0.04297,,,,,,,0.01202,0.01571,0.01674,0.04147,,,,,,,0.0121,0.01581,0.01686,0.04172,,,,,,,0.01243,0.01619,0.01725,0.0424,,,,,,,0.01245,0.01623,0.01731,0.04254,,,,,,,0.00516,0.00517,0.0052,0.00555,,,,,,,0.00521,0.00523,0.00525,0.0056,,,,,,,0.00529,0.0053,0.00533,0.00568,,,,,,,0.00516,0.00517,0.0052,0.00554,,,,,,,0.00535,0.00536,0.00538,0.00572,,,,,,,0.00525,0.00526,0.00528,0.00562,,,,,,,0.00531,0.00532,0.00534,0.00567,,,,,,,0.00529,0.0053,0.00532,0.00566,,,,,,,0.00522,0.00523,0.00525,0.00559,,,,,,,0.08796,0.11648,0.15151,0.33083,,,,,,,0.08434,0.11215,0.14602,0.3233,,,,,,,0.08855,0.11698,0.15161,0.33496,,,,,,,0.08813,0.1166,0.15162,0.32959,,,,,,,0.0679,0.09263,0.12172,0.28826,,,,,,,0.07318,0.09887,0.12959,0.29737,,,,,,,0.06708,0.09184,0.1211,0.28507,,,,,,,0.07631,0.1027,0.13435,0.30649,,,,,,,0.06575,0.09035,0.11947,0.28216,,,, +Minivan,DSL,2020,,,,0.00072,0.0011,0.00125,0.00465,,,,,,,0.00072,0.00111,0.00125,0.00465,,,,,,,0.00074,0.00113,0.00127,0.00467,,,,,,,0.0007,0.00108,0.00122,0.0046,,,,,,,0.00073,0.00112,0.00127,0.00466,,,,,,,0.00072,0.00109,0.00124,0.00462,,,,,,,0.00072,0.0011,0.00125,0.00464,,,,,,,0.00073,0.00111,0.00126,0.00466,,,,,,,0.00073,0.00112,0.00127,0.00468,,,,,,,0.08358,0.10624,0.13139,0.18032,,,,,,,0.07944,0.1014,0.12537,0.17229,,,,,,,0.08399,0.10664,0.1315,0.17991,,,,,,,0.08379,0.10643,0.13163,0.18057,,,,,,,0.06087,0.07977,0.09876,0.13729,,,,,,,0.06698,0.08684,0.10757,0.14898,,,,,,,0.06,0.07885,0.09788,0.13648,,,,,,,0.07033,0.09085,0.11244,0.15537,,,,,,,0.05872,0.07739,0.09623,0.13461,,,,,,,0.78003,1.244,1.58419,2.56054,,,,,,,0.80087,1.27638,1.623,2.61775,,,,,,,0.7941,1.26576,1.6085,2.59704,,,,,,,0.80806,1.28709,1.63602,2.63457,,,,,,,0.85922,1.36751,1.7326,2.78175,,,,,,,0.83946,1.3361,1.69464,2.72248,,,,,,,0.89057,1.41653,1.79422,2.87322,,,,,,,0.83979,1.33732,1.69717,2.72941,,,,,,,0.81228,1.29491,1.647,2.65687,,,,,,,553.53381,554.75256,557.30624,593.51674,,,,,,,559.45393,560.50931,562.8389,598.96247,,,,,,,567.21372,568.32858,570.75943,607.53869,,,,,,,553.26555,554.3794,556.80518,592.78327,,,,,,,574.09163,574.61785,576.2165,611.79962,,,,,,,563.19783,563.8719,565.67017,601.01403,,,,,,,569.70897,570.17245,571.686,606.85437,,,,,,,567.19413,567.9541,569.87587,605.66885,,,,,,,559.96123,560.69998,562.54688,597.74298,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82244,,,,,,,0.44685,0.5816,0.6301,0.83346,,,,,,,0.45614,0.59314,0.64146,0.84651,,,,,,,0.43605,0.5678,0.61593,0.81625,,,,,,,0.45642,0.59326,0.64117,0.84541,,,,,,,0.44481,0.5787,0.62653,0.82819,,,,,,,0.45243,0.58857,0.63684,0.84114,,,,,,,0.47433,0.61755,0.66685,0.87927,,,,,,,0.45454,0.59154,0.64072,0.8471,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00103,0.00153,0.00162,0.00259,,,,,,,0.00105,0.00157,0.00166,0.00268,,,,,,,0.001,0.00148,0.00157,0.00246,,,,,,,0.00105,0.00156,0.00165,0.00266,,,,,,,0.00102,0.00151,0.0016,0.00254,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00104,0.00154,0.00163,0.00262,,,,,,,0.00104,0.00155,0.00164,0.00263,,,,,,,0.04852,0.05211,0.05284,0.05901,,,,,,,0.04992,0.05354,0.05426,0.06045,,,,,,,0.05397,0.05767,0.05839,0.06467,,,,,,,0.04563,0.04913,0.04984,0.05589,,,,,,,0.05314,0.05681,0.05753,0.06378,,,,,,,0.04878,0.05235,0.05306,0.05917,,,,,,,0.04905,0.05264,0.05337,0.05953,,,,,,,0.05112,0.05476,0.05548,0.06171,,,,,,,0.05097,0.05463,0.05537,0.06164,,,,,,,0.01212,0.01542,0.01609,0.02176,,,,,,,0.01234,0.01566,0.01633,0.02203,,,,,,,0.01299,0.01638,0.01705,0.02282,,,,,,,0.01161,0.01483,0.01549,0.02106,,,,,,,0.01284,0.01622,0.01688,0.02263,,,,,,,0.01212,0.0154,0.01605,0.02168,,,,,,,0.01219,0.01549,0.01616,0.02183,,,,,,,0.01253,0.01588,0.01654,0.02227,,,,,,,0.01254,0.01591,0.01659,0.02235,,,,,,,0.00452,0.00453,0.00455,0.00486,,,,,,,0.00457,0.00458,0.0046,0.00491,,,,,,,0.00463,0.00464,0.00466,0.00498,,,,,,,0.00452,0.00453,0.00455,0.00485,,,,,,,0.00469,0.0047,0.00471,0.00501,,,,,,,0.0046,0.00461,0.00462,0.00492,,,,,,,0.00466,0.00466,0.00467,0.00497,,,,,,,0.00463,0.00464,0.00466,0.00496,,,,,,,0.00458,0.00458,0.0046,0.0049,,,,,,,0.08592,0.10697,0.13034,0.19699,,,,,,,0.08217,0.10256,0.12484,0.18939,,,,,,,0.08651,0.10754,0.13065,0.19743,,,,,,,0.08611,0.10714,0.13056,0.19705,,,,,,,0.06516,0.0827,0.10035,0.15581,,,,,,,0.07066,0.0891,0.10837,0.16662,,,,,,,0.06429,0.08179,0.09946,0.1546,,,,,,,0.07384,0.09288,0.11294,0.17316,,,,,,,0.06295,0.08029,0.0978,0.15251,,, +Minivan,DSL,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,515.52862,517.36999,520.60093,546.99097,,,,,,,521.02447,522.72726,525.75913,551.95705,,,,,,,528.27837,530.04534,533.18339,559.87723,,,,,,,515.27507,517.01989,520.13162,546.30321,,,,,,,534.61387,535.86256,538.23725,563.62452,,,,,,,524.48034,525.84611,528.38966,553.73895,,,,,,,530.51251,531.69744,533.98624,559.06272,,,,,,,528.20274,529.6511,532.31554,558.0478,,,,,,,521.44792,522.87079,525.4533,550.71343,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00421,0.00423,0.00425,0.00447,,,,,,,0.00426,0.00427,0.0043,0.00451,,,,,,,0.00432,0.00433,0.00436,0.00457,,,,,,,0.00421,0.00422,0.00425,0.00446,,,,,,,0.00437,0.00438,0.0044,0.00461,,,,,,,0.00429,0.0043,0.00432,0.00452,,,,,,,0.00433,0.00434,0.00436,0.00457,,,,,,,0.00432,0.00433,0.00435,0.00456,,,,,,,0.00426,0.00427,0.00429,0.0045,,,,,,,0.08122,0.09662,0.11451,0.16051,,,,,,,0.07744,0.09224,0.10907,0.15288,,,,,,,0.08183,0.09729,0.11497,0.16047,,,,,,,0.08144,0.09684,0.1148,0.16089,,,,,,,0.06028,0.07243,0.08473,0.11932,,,,,,,0.06586,0.07885,0.09275,0.13056,,,,,,,0.05935,0.07139,0.08365,0.11826,,,,,,,0.06901,0.08252,0.09715,0.13654,,,,,,,0.05801,0.06988,0.08196,0.11625,, +Minivan,DSL,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,505.90251,508.12865,511.88576,526.63939,,,,,,,511.29304,513.38981,516.95436,531.40985,,,,,,,518.42229,520.58653,524.26462,539.04839,,,,,,,505.65284,507.78444,511.42427,525.97531,,,,,,,524.62573,526.29466,529.21837,542.61528,,,,,,,514.68098,516.45452,519.53618,533.10575,,,,,,,520.59197,522.19594,525.03042,538.21442,,,,,,,518.33218,520.18913,523.39511,537.25547,,,,,,,511.6985,513.52605,516.64155,530.18337,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00418,0.00419,0.00422,0.00434,,,,,,,0.00424,0.00425,0.00428,0.0044,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00429,0.0043,0.00432,0.00443,,,,,,,0.00421,0.00422,0.00425,0.00436,,,,,,,0.00425,0.00427,0.00429,0.0044,,,,,,,0.00424,0.00425,0.00428,0.00439,,,,,,,0.00418,0.0042,0.00422,0.00433,,,,,,,0.07981,0.09384,0.11087,0.14775,,,,,,,0.07604,0.08949,0.10544,0.14015,,,,,,,0.08043,0.09454,0.11136,0.14781,,,,,,,0.08004,0.09407,0.11118,0.14822,,,,,,,0.0589,0.06976,0.08112,0.10658,,,,,,,0.06448,0.07616,0.08915,0.11789,,,,,,,0.05796,0.0687,0.08001,0.1054,,,,,,,0.06761,0.0798,0.09351,0.12374,,,,,,,0.05661,0.06719,0.0783,0.10333, +Minivan,DSL,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,505.84325,508.11981,511.87641,520.53161,,,,,,,511.23605,513.38181,516.94536,525.24513,,,,,,,518.36354,520.57802,524.25551,532.79992,,,,,,,505.5941,507.77589,511.41505,519.87502,,,,,,,524.57686,526.28822,529.21111,536.3182,,,,,,,514.63015,516.44746,519.52878,526.91938,,,,,,,520.54403,522.18978,525.02349,531.96478,,,,,,,518.27972,520.18195,523.3872,531.02016,,,,,,,511.649,513.51958,516.63441,524.02733,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00418,0.00419,0.00422,0.00429,,,,,,,0.00424,0.00425,0.00428,0.00435,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00429,0.0043,0.00432,0.00438,,,,,,,0.00421,0.00422,0.00425,0.00431,,,,,,,0.00425,0.00427,0.00429,0.00435,,,,,,,0.00423,0.00425,0.00428,0.00434,,,,,,,0.00418,0.0042,0.00422,0.00428,,,,,,,0.0796,0.0938,0.11082,0.14306,,,,,,,0.07584,0.08944,0.1054,0.13548,,,,,,,0.08022,0.09449,0.11131,0.14315,,,,,,,0.07982,0.09402,0.11113,0.14356,,,,,,,0.05877,0.06974,0.08109,0.10192,,,,,,,0.06432,0.07613,0.08912,0.11324,,,,,,,0.05784,0.06867,0.07998,0.1007,,,,,,,0.06744,0.07976,0.09347,0.11904,,,,,,,0.05649,0.06716,0.07828,0.0986 +Minivan,DSL,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,505.84317,508.11917,511.88521,,,,,,,,511.23668,513.38141,516.95445,,,,,,,,518.36366,520.57755,524.26456,,,,,,,,505.59432,507.77538,511.42401,,,,,,,,524.57908,526.28967,529.22036,,,,,,,,514.63195,516.44843,519.53798,,,,,,,,520.5461,522.19116,525.03319,,,,,,,,518.28109,520.18253,523.39643,,,,,,,,511.65072,513.5203,516.64385,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00418,0.00419,0.00422,,,,,,,,0.00424,0.00425,0.00428,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00429,0.0043,0.00432,,,,,,,,0.00421,0.00422,0.00425,,,,,,,,0.00425,0.00427,0.00429,,,,,,,,0.00423,0.00425,0.00428,,,,,,,,0.00418,0.0042,0.00422,,,,,,,,0.07956,0.09376,0.11082,,,,,,,,0.0758,0.08941,0.10539,,,,,,,,0.08018,0.09446,0.11131,,,,,,,,0.07978,0.09399,0.11113,,,,,,,,0.05875,0.06972,0.08109,,,,,,,,0.0643,0.0761,0.08912,,,,,,,,0.05781,0.06865,0.07998,,,,,,,,0.06741,0.07973,0.09347,,,,,,,,0.05647,0.06714,0.07828 +Minivan,DSL,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,505.83557,508.1193,,,,,,,,,511.22947,513.38177,,,,,,,,,518.35636,520.57781,,,,,,,,,505.58695,507.77559,,,,,,,,,524.57279,526.29014,,,,,,,,,514.62534,516.44883,,,,,,,,,520.54012,522.19179,,,,,,,,,518.27447,520.18296,,,,,,,,,511.64435,513.52073,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00418,0.00419,,,,,,,,,0.00424,0.00425,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00429,0.0043,,,,,,,,,0.0042,0.00422,,,,,,,,,0.00425,0.00427,,,,,,,,,0.00423,0.00425,,,,,,,,,0.00418,0.0042,,,,,,,,,0.07953,0.09376,,,,,,,,,0.07578,0.08941,,,,,,,,,0.08015,0.09445,,,,,,,,,0.07975,0.09398,,,,,,,,,0.05873,0.06971,,,,,,,,,0.06428,0.0761,,,,,,,,,0.0578,0.06865,,,,,,,,,0.06739,0.07973,,,,,,,,,0.05645,0.06714 +Minivan,DSL,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,505.83304,,,,,,,,,,511.2268,,,,,,,,,,518.35376,,,,,,,,,,505.58432,,,,,,,,,,524.57034,,,,,,,,,,514.62275,,,,,,,,,,520.53783,,,,,,,,,,518.27191,,,,,,,,,,511.64183,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00413,,,,,,,,,,0.00418,,,,,,,,,,0.00424,,,,,,,,,,0.00413,,,,,,,,,,0.00429,,,,,,,,,,0.0042,,,,,,,,,,0.00425,,,,,,,,,,0.00423,,,,,,,,,,0.00418,,,,,,,,,,0.07953,,,,,,,,,,0.07578,,,,,,,,,,0.08015,,,,,,,,,,0.07975,,,,,,,,,,0.05873,,,,,,,,,,0.06428,,,,,,,,,,0.0578,,,,,,,,,,0.06739,,,,,,,,,,0.05645 +Minivan,E10,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11314,,,,,,,,,,0.09514,,,,,,,,,,0.12563,,,,,,,,,,0.13114,,,,,,,,,,0.10808,,,,,,,,,,0.11889,,,,,,,,,,0.1086,,,,,,,,,,0.10523,,,,,,,,,,0.082,,,,,,,,,,63.2126,,,,,,,,,,56.71448,,,,,,,,,,72.5467,,,,,,,,,,75.39182,,,,,,,,,,65.86029,,,,,,,,,,71.70294,,,,,,,,,,67.75261,,,,,,,,,,64.00043,,,,,,,,,,51.27035,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.42804,,,,,,,,,,5.10132,,,,,,,,,,5.66747,,,,,,,,,,6.03225,,,,,,,,,,5.57448,,,,,,,,,,5.84644,,,,,,,,,,5.59049,,,,,,,,,,5.89878,,,,,,,,,,4.86777,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02859,,,,,,,,,,0.03225,,,,,,,,,,0.0458,,,,,,,,,,0.04198,,,,,,,,,,0.03737,,,,,,,,,,0.04119,,,,,,,,,,0.03748,,,,,,,,,,0.03705,,,,,,,,,,0.01748,,,,,,,,,,4.58393,,,,,,,,,,4.09865,,,,,,,,,,5.16888,,,,,,,,,,5.36494,,,,,,,,,,5.05775,,,,,,,,,,5.2588,,,,,,,,,,5.07596,,,,,,,,,,4.89415,,,,,,,,,,3.91859,,,,,,,,, +Minivan,E10,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07748,0.08904,,,,,,,,,0.072,0.07672,,,,,,,,,0.08854,0.09985,,,,,,,,,0.09111,0.10812,,,,,,,,,0.0789,0.09187,,,,,,,,,0.084,0.10018,,,,,,,,,0.07855,0.09062,,,,,,,,,0.07752,0.08825,,,,,,,,,0.0636,0.06606,,,,,,,,,29.63897,41.36596,,,,,,,,,28.97433,38.13233,,,,,,,,,34.93065,46.68978,,,,,,,,,36.55574,50.87631,,,,,,,,,32.44092,44.68976,,,,,,,,,34.65845,48.01339,,,,,,,,,33.36491,46.18974,,,,,,,,,32.00793,44.75452,,,,,,,,,25.76618,35.26581,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.4622,5.38071,,,,,,,,,4.39166,5.07853,,,,,,,,,4.76518,5.5464,,,,,,,,,4.98088,6.03246,,,,,,,,,4.67221,5.61475,,,,,,,,,4.86994,5.84286,,,,,,,,,4.73253,5.63439,,,,,,,,,4.9598,5.90802,,,,,,,,,4.15621,4.87518,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02235,0.01148,,,,,,,,,0.02537,0.01164,,,,,,,,,0.03618,0.01205,,,,,,,,,0.03289,0.02015,,,,,,,,,0.02978,0.01187,,,,,,,,,0.03259,0.01176,,,,,,,,,0.02981,0.01615,,,,,,,,,0.0293,0.01836,,,,,,,,,0.01378,0.00675,,,,,,,,,3.15995,3.95794,,,,,,,,,3.05508,3.64352,,,,,,,,,3.65557,4.47219,,,,,,,,,3.72559,4.76354,,,,,,,,,3.55404,4.60463,,,,,,,,,3.63499,4.74219,,,,,,,,,3.54137,4.55094,,,,,,,,,3.49782,4.45048,,,,,,,,,2.90021,3.5081,,,,,,,, +Minivan,E10,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04401,0.06476,0.08784,,,,,,,,0.0413,0.06232,0.0781,,,,,,,,0.05087,0.07437,0.10072,,,,,,,,0.05219,0.07737,0.10281,,,,,,,,0.03885,0.06434,0.08903,,,,,,,,0.04221,0.06816,0.09361,,,,,,,,0.03831,0.06344,0.08422,,,,,,,,0.0414,0.06502,0.08415,,,,,,,,0.03345,0.05497,0.06663,,,,,,,,9.20673,14.67901,27.14853,,,,,,,,9.00892,14.50541,24.80322,,,,,,,,11.06622,17.33347,31.26982,,,,,,,,11.46401,18.23061,32.27626,,,,,,,,8.96455,15.47148,28.66746,,,,,,,,9.72109,16.37041,30.05152,,,,,,,,9.10995,15.80052,28.4154,,,,,,,,9.39068,15.98896,27.98844,,,,,,,,7.52152,13.50881,22.50913,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.62242,2.27158,3.8184,,,,,,,,1.59133,2.25249,3.61825,,,,,,,,1.85119,2.49498,4.08478,,,,,,,,1.90156,2.62987,4.18527,,,,,,,,1.76576,2.46283,4.06962,,,,,,,,1.83606,2.52392,4.14115,,,,,,,,1.79219,2.50177,3.93434,,,,,,,,1.87762,2.60733,4.13455,,,,,,,,1.58162,2.23808,3.46002,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.0239,0.0116,0.0105,,,,,,,,0.02716,0.01179,0.01056,,,,,,,,0.03873,0.01221,0.01072,,,,,,,,0.03527,0.02044,0.01047,,,,,,,,0.03204,0.01214,0.01065,,,,,,,,0.03506,0.012,0.0105,,,,,,,,0.03213,0.01653,0.01055,,,,,,,,0.03144,0.01871,0.0095,,,,,,,,0.01477,0.00685,0.00494,,,,,,,,1.06311,1.76753,3.20543,,,,,,,,1.04361,1.7498,2.93418,,,,,,,,1.24914,2.05104,3.67596,,,,,,,,1.2881,2.12799,3.7341,,,,,,,,1.10217,1.94308,3.60125,,,,,,,,1.14195,1.99627,3.65022,,,,,,,,1.09683,1.91642,3.44684,,,,,,,,1.15621,1.96365,3.42979,,,,,,,,0.94024,1.66224,2.76321,,,,,,, +Minivan,E10,2005,0.00218,0.00358,0.00529,0.01394,,,,,,,0.00196,0.00308,0.00454,0.01197,,,,,,,0.00241,0.00274,0.00401,0.01339,,,,,,,0.00251,0.0037,0.00548,0.01499,,,,,,,0.00126,0.00201,0.00294,0.00684,,,,,,,0.00148,0.00206,0.00301,0.00798,,,,,,,0.0012,0.00183,0.00267,0.00633,,,,,,,0.00164,0.00232,0.00339,0.00923,,,,,,,0.00106,0.00158,0.00227,0.00621,,,,,,,0.02811,0.02142,0.02264,0.04902,,,,,,,0.02586,0.01943,0.0211,0.0445,,,,,,,0.02914,0.02137,0.02317,0.05647,,,,,,,0.02949,0.02482,0.02517,0.05903,,,,,,,0.01864,0.01622,0.01864,0.04767,,,,,,,0.02074,0.01732,0.01956,0.05074,,,,,,,0.01788,0.01677,0.01823,0.04544,,,,,,,0.02234,0.01889,0.0194,0.04745,,,,,,,0.01497,0.01269,0.01434,0.03839,,,,,,,4.53533,6.85821,8.85974,16.10575,,,,,,,4.44842,6.79605,8.94289,15.44397,,,,,,,4.9582,7.98354,10.64999,18.92182,,,,,,,5.10544,8.63779,10.64684,19.76927,,,,,,,4.51382,7.38109,9.95459,17.53775,,,,,,,4.66371,7.69058,10.31608,18.29136,,,,,,,4.62635,7.94441,10.04262,17.59912,,,,,,,4.71885,8.17685,9.97695,17.58782,,,,,,,3.72873,6.82375,8.95189,15.11981,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.61209,0.96956,1.26103,1.92446,,,,,,,0.60099,0.94894,1.25846,1.86081,,,,,,,0.65121,1.05001,1.37261,2.11066,,,,,,,0.65002,1.15382,1.43403,2.20209,,,,,,,0.6098,1.01467,1.34061,2.08907,,,,,,,0.63115,1.05028,1.37292,2.12959,,,,,,,0.61933,1.06557,1.33917,2.04097,,,,,,,0.66549,1.10947,1.36821,2.15451,,,,,,,0.52141,0.74253,0.97447,1.86164,,,,,,,0.00487,0.0078,0.0106,0.02466,,,,,,,0.00446,0.00694,0.00942,0.02171,,,,,,,0.00516,0.00643,0.00867,0.02359,,,,,,,0.00532,0.00788,0.01073,0.02582,,,,,,,0.00313,0.00492,0.0067,0.01364,,,,,,,0.00351,0.00503,0.00683,0.01542,,,,,,,0.00304,0.00464,0.0063,0.013,,,,,,,0.00384,0.00554,0.00749,0.01741,,,,,,,0.00281,0.00421,0.00567,0.01291,,,,,,,0.05129,0.05749,0.0638,0.09546,,,,,,,0.0518,0.05697,0.06251,0.09006,,,,,,,0.05747,0.05985,0.06482,0.09857,,,,,,,0.04957,0.05498,0.06137,0.09554,,,,,,,0.05206,0.05572,0.0596,0.07487,,,,,,,0.04863,0.05167,0.05559,0.07463,,,,,,,0.04779,0.05106,0.05461,0.06927,,,,,,,0.05164,0.05512,0.05937,0.08145,,,,,,,0.04909,0.05192,0.05504,0.07088,,,,,,,0.01453,0.02002,0.02561,0.05361,,,,,,,0.01392,0.0185,0.0234,0.04778,,,,,,,0.01589,0.018,0.0224,0.05226,,,,,,,0.01517,0.01995,0.02561,0.05584,,,,,,,0.01173,0.01497,0.0184,0.03191,,,,,,,0.01196,0.01465,0.01812,0.03496,,,,,,,0.01103,0.01392,0.01706,0.03004,,,,,,,0.01287,0.01596,0.01972,0.03926,,,,,,,0.01076,0.01327,0.01602,0.03005,,,,,,,0.02504,0.01211,0.01102,0.00368,,,,,,,0.02848,0.01232,0.0111,0.0037,,,,,,,0.0406,0.01275,0.01126,0.00375,,,,,,,0.037,0.02137,0.01101,0.00367,,,,,,,0.03367,0.01272,0.01127,0.00373,,,,,,,0.03685,0.01257,0.01109,0.00368,,,,,,,0.0338,0.01734,0.01118,0.0037,,,,,,,0.03301,0.01959,0.01002,0.00366,,,,,,,0.01551,0.00717,0.00521,0.00338,,,,,,,0.42668,0.52192,0.71339,1.83233,,,,,,,0.4036,0.49321,0.68111,1.71672,,,,,,,0.45618,0.54093,0.74631,2.08237,,,,,,,0.46665,0.61217,0.80079,2.15051,,,,,,,0.34117,0.46419,0.6603,1.95653,,,,,,,0.36239,0.478,0.67328,1.99999,,,,,,,0.3322,0.47036,0.64293,1.88454,,,,,,,0.39852,0.52943,0.7006,1.96066,,,,,,,0.28505,0.38919,0.54876,1.63607,,,,,, +Minivan,E10,2010,,0.00162,0.00287,0.00427,0.01079,,,,,,,0.00142,0.0025,0.00377,0.00934,,,,,,,0.00124,0.00218,0.00406,0.01029,,,,,,,0.00168,0.00299,0.00454,0.01154,,,,,,,0.00103,0.00178,0.0025,0.00562,,,,,,,0.00102,0.00177,0.00275,0.00641,,,,,,,0.00094,0.00161,0.00226,0.0051,,,,,,,0.00111,0.00193,0.00303,0.00727,,,,,,,0.0008,0.00136,0.00215,0.00492,,,,,,,0.02013,0.01854,0.01573,0.03289,,,,,,,0.01774,0.01707,0.01438,0.03038,,,,,,,0.01881,0.01888,0.01616,0.03701,,,,,,,0.02262,0.02104,0.01791,0.03947,,,,,,,0.01341,0.01553,0.01279,0.0305,,,,,,,0.01411,0.01603,0.01342,0.03241,,,,,,,0.0138,0.01531,0.01259,0.02938,,,,,,,0.01612,0.0158,0.01384,0.03135,,,,,,,0.01078,0.01164,0.01209,0.02613,,,,,,,3.09224,4.95927,6.48848,11.49491,,,,,,,2.97276,4.9579,6.43558,11.29062,,,,,,,3.41119,5.77432,7.27606,13.6769,,,,,,,3.65072,5.8182,7.79685,14.45278,,,,,,,2.83758,5.21916,6.92104,12.75393,,,,,,,3.00662,5.44818,7.12479,13.30185,,,,,,,3.05711,5.30439,7.08065,12.89365,,,,,,,3.3226,5.35322,7.08916,12.86984,,,,,,,2.71446,4.75412,6.32517,11.19949,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.22139,0.3576,0.32156,1.00374,,,,,,,0.21378,0.35576,0.31782,0.98526,,,,,,,0.22098,0.3824,0.33969,1.12438,,,,,,,0.23875,0.40147,0.35787,1.18556,,,,,,,0.20712,0.36724,0.32313,1.10404,,,,,,,0.214,0.37886,0.33338,1.12913,,,,,,,0.21757,0.36928,0.32582,1.08596,,,,,,,0.23378,0.3815,0.35378,1.14599,,,,,,,0.15918,0.26955,0.31976,0.99901,,,,,,,0.00293,0.00493,0.0069,0.01768,,,,,,,0.00274,0.00458,0.00642,0.01583,,,,,,,0.00249,0.00414,0.00667,0.01692,,,,,,,0.00296,0.00499,0.00711,0.01842,,,,,,,0.0024,0.00394,0.00523,0.01087,,,,,,,0.00233,0.00384,0.00542,0.01188,,,,,,,0.00227,0.00372,0.00492,0.01024,,,,,,,0.00239,0.00395,0.00568,0.01307,,,,,,,0.00203,0.00331,0.00475,0.01004,,,,,,,0.04735,0.0519,0.05648,0.08074,,,,,,,0.04824,0.05237,0.05662,0.07768,,,,,,,0.05169,0.05538,0.06132,0.08441,,,,,,,0.04465,0.04927,0.05425,0.07982,,,,,,,0.0505,0.05381,0.05663,0.06906,,,,,,,0.04609,0.04934,0.05288,0.06719,,,,,,,0.04617,0.04924,0.05184,0.06347,,,,,,,0.04858,0.05196,0.05587,0.07229,,,,,,,0.04748,0.05018,0.05333,0.06485,,,,,,,0.01105,0.01508,0.01913,0.04059,,,,,,,0.01078,0.01443,0.01819,0.03682,,,,,,,0.01078,0.01404,0.0193,0.03973,,,,,,,0.01081,0.01491,0.01931,0.04193,,,,,,,0.01035,0.01328,0.01577,0.02677,,,,,,,0.00972,0.01259,0.01572,0.02838,,,,,,,0.0096,0.01232,0.01462,0.02491,,,,,,,0.01017,0.01317,0.01663,0.03115,,,,,,,0.00934,0.01173,0.01452,0.02471,,,,,,,0.01147,0.01037,0.00349,0.00363,,,,,,,0.01167,0.01045,0.00351,0.00365,,,,,,,0.01208,0.0106,0.00356,0.0037,,,,,,,0.02024,0.01036,0.00348,0.00362,,,,,,,0.01207,0.01063,0.00356,0.00368,,,,,,,0.01192,0.01046,0.00351,0.00363,,,,,,,0.01645,0.01056,0.00353,0.00365,,,,,,,0.01857,0.00945,0.00349,0.00361,,,,,,,0.0068,0.00491,0.00322,0.00333,,,,,,,0.17024,0.25037,0.35532,1.23054,,,,,,,0.15173,0.22939,0.32973,1.1748,,,,,,,0.16315,0.2531,0.36572,1.3646,,,,,,,0.19174,0.28179,0.39888,1.41916,,,,,,,0.12082,0.20837,0.31351,1.2648,,,,,,,0.12492,0.21256,0.3183,1.28611,,,,,,,0.12209,0.2039,0.30703,1.22529,,,,,,,0.1483,0.22827,0.34463,1.30038,,,,,,,0.10918,0.1789,0.30002,1.12921,,,,, +Minivan,E10,2015,,,0.00128,0.00225,0.00349,0.00739,,,,,,,0.00115,0.00206,0.00317,0.00655,,,,,,,0.00101,0.00217,0.00335,0.00705,,,,,,,0.0013,0.00235,0.00364,0.0078,,,,,,,0.0009,0.00152,0.0023,0.00434,,,,,,,0.00089,0.00163,0.00248,0.00479,,,,,,,0.00083,0.0014,0.0021,0.00391,,,,,,,0.00093,0.00173,0.00264,0.00526,,,,,,,0.00071,0.00133,0.002,0.00373,,,,,,,0.01503,0.01155,0.01238,0.01853,,,,,,,0.01385,0.01072,0.01164,0.01731,,,,,,,0.01406,0.01191,0.01298,0.01995,,,,,,,0.01566,0.01311,0.01424,0.02173,,,,,,,0.01097,0.00973,0.01115,0.0166,,,,,,,0.01147,0.01026,0.01165,0.01751,,,,,,,0.01101,0.00968,0.01111,0.01635,,,,,,,0.01188,0.01049,0.01169,0.01747,,,,,,,0.0089,0.00934,0.01058,0.01524,,,,,,,2.20988,3.99465,5.43701,8.07463,,,,,,,2.22179,4.01555,5.49317,8.07877,,,,,,,2.41633,4.43487,6.2143,9.47883,,,,,,,2.44973,4.75977,6.67892,10.11635,,,,,,,2.1891,4.39723,6.2066,9.19718,,,,,,,2.2712,4.49018,6.35204,9.50604,,,,,,,2.25387,4.52083,6.36443,9.39782,,,,,,,2.29043,4.46132,6.20488,9.23024,,,,,,,2.06139,4.03955,5.56824,8.18043,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.1346,0.16641,0.24871,0.46267,,,,,,,0.134,0.16374,0.24547,0.45687,,,,,,,0.13407,0.17653,0.2631,0.50771,,,,,,,0.14045,0.1882,0.28033,0.53953,,,,,,,0.12341,0.16433,0.24802,0.48761,,,,,,,0.12905,0.17155,0.25804,0.50304,,,,,,,0.12645,0.16611,0.25103,0.48674,,,,,,,0.134,0.18242,0.27299,0.52188,,,,,,,0.09672,0.16332,0.24504,0.46248,,,,,,,0.00251,0.00424,0.00615,0.01177,,,,,,,0.00239,0.00405,0.00585,0.01088,,,,,,,0.00218,0.00413,0.00599,0.01135,,,,,,,0.0025,0.0043,0.00626,0.01212,,,,,,,0.00218,0.00356,0.00504,0.00849,,,,,,,0.00211,0.00362,0.00516,0.00893,,,,,,,0.00208,0.00339,0.00478,0.00797,,,,,,,0.00213,0.00372,0.00532,0.00944,,,,,,,0.00186,0.00328,0.00462,0.00772,,,,,,,0.04631,0.05013,0.05451,0.06761,,,,,,,0.0474,0.05103,0.0551,0.06672,,,,,,,0.05094,0.05528,0.05952,0.07198,,,,,,,0.04349,0.04747,0.05198,0.06572,,,,,,,0.05001,0.0529,0.05612,0.06385,,,,,,,0.04558,0.04881,0.05219,0.0607,,,,,,,0.04572,0.04844,0.05144,0.05853,,,,,,,0.04794,0.05136,0.05491,0.0643,,,,,,,0.0471,0.05007,0.05296,0.05982,,,,,,,0.01014,0.01351,0.01739,0.02897,,,,,,,0.01003,0.01325,0.01685,0.02713,,,,,,,0.01012,0.01397,0.01772,0.02874,,,,,,,0.0098,0.01331,0.0173,0.02946,,,,,,,0.00992,0.01248,0.01533,0.02216,,,,,,,0.00927,0.01212,0.01511,0.02264,,,,,,,0.0092,0.01162,0.01427,0.02054,,,,,,,0.00962,0.01264,0.01578,0.02408,,,,,,,0.00901,0.01164,0.01419,0.02026,,,,,,,0.00833,0.00279,0.00282,0.00311,,,,,,,0.0084,0.00281,0.00284,0.00312,,,,,,,0.00851,0.00285,0.00288,0.00317,,,,,,,0.00832,0.00279,0.00281,0.0031,,,,,,,0.00855,0.00286,0.00287,0.00315,,,,,,,0.00841,0.00281,0.00283,0.0031,,,,,,,0.00849,0.00284,0.00285,0.00312,,,,,,,0.00759,0.00279,0.00281,0.00309,,,,,,,0.00394,0.00258,0.0026,0.00285,,,,,,,0.12353,0.17702,0.29,0.72192,,,,,,,0.11491,0.16616,0.27682,0.69693,,,,,,,0.1197,0.18197,0.30366,0.7682,,,,,,,0.13045,0.19657,0.32478,0.80098,,,,,,,0.09844,0.15906,0.28186,0.72466,,,,,,,0.10006,0.16147,0.28336,0.7259,,,,,,,0.09787,0.15691,0.27799,0.70886,,,,,,,0.1109,0.17464,0.29942,0.75565,,,,,,,0.08985,0.15336,0.27084,0.6876,,,, +Minivan,E10,2020,,,,0.00115,0.00196,0.00278,0.00556,,,,,,,0.00106,0.00179,0.00253,0.005,,,,,,,0.0011,0.00188,0.00267,0.00532,,,,,,,0.00119,0.00203,0.00289,0.00583,,,,,,,0.0008,0.00134,0.00185,0.00347,,,,,,,0.00085,0.00143,0.00199,0.00379,,,,,,,0.00074,0.00123,0.00169,0.00314,,,,,,,0.0009,0.00152,0.00212,0.00409,,,,,,,0.00071,0.00117,0.00161,0.00299,,,,,,,0.01145,0.00983,0.00977,0.01336,,,,,,,0.01034,0.00904,0.00906,0.01243,,,,,,,0.01084,0.01004,0.01008,0.01424,,,,,,,0.01196,0.0111,0.01112,0.01564,,,,,,,0.00753,0.00784,0.00815,0.01171,,,,,,,0.00814,0.00836,0.00864,0.0124,,,,,,,0.00745,0.00777,0.0081,0.01159,,,,,,,0.00894,0.00861,0.00879,0.01243,,,,,,,0.00756,0.00747,0.00772,0.01081,,,,,,,1.80774,2.7961,3.51815,5.41595,,,,,,,1.78859,2.78553,3.51355,5.41323,,,,,,,1.87754,3.07814,3.96495,6.35892,,,,,,,2.01775,3.31666,4.28691,6.8323,,,,,,,1.73861,2.97001,3.83583,6.13895,,,,,,,1.78779,3.0529,3.95738,6.37473,,,,,,,1.79846,3.05696,3.94339,6.29473,,,,,,,1.85337,3.05077,3.89999,6.17588,,,,,,,1.67447,2.73989,3.47141,5.43122,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.09102,0.15014,0.20177,0.28483,,,,,,,0.08957,0.14758,0.1987,0.28046,,,,,,,0.09036,0.15847,0.21197,0.30597,,,,,,,0.09519,0.1696,0.22674,0.32739,,,,,,,0.08026,0.14628,0.19723,0.28718,,,,,,,0.08469,0.15357,0.20662,0.29958,,,,,,,0.08221,0.14839,0.20036,0.28941,,,,,,,0.09308,0.16365,0.21951,0.31452,,,,,,,0.08459,0.1462,0.19659,0.27912,,,,,,,0.00228,0.0037,0.00491,0.00876,,,,,,,0.0022,0.00354,0.00468,0.00822,,,,,,,0.00223,0.00361,0.00478,0.00849,,,,,,,0.00231,0.00374,0.00499,0.00896,,,,,,,0.00196,0.00312,0.00404,0.00679,,,,,,,0.00199,0.00318,0.00414,0.00703,,,,,,,0.00188,0.00297,0.00384,0.00638,,,,,,,0.00204,0.00326,0.00426,0.00732,,,,,,,0.00182,0.00288,0.00371,0.00616,,,,,,,0.04579,0.04893,0.05175,0.06081,,,,,,,0.04696,0.04992,0.05253,0.06079,,,,,,,0.05109,0.05414,0.05685,0.06556,,,,,,,0.04303,0.04624,0.04913,0.05855,,,,,,,0.04954,0.05199,0.05402,0.06016,,,,,,,0.04532,0.04787,0.05001,0.05656,,,,,,,0.04527,0.04759,0.04947,0.05512,,,,,,,0.04774,0.05038,0.05263,0.05962,,,,,,,0.04701,0.04925,0.05106,0.05649,,,,,,,0.00968,0.01246,0.01494,0.02296,,,,,,,0.00965,0.01227,0.01457,0.02189,,,,,,,0.01025,0.01295,0.01535,0.02306,,,,,,,0.00939,0.01222,0.01478,0.02312,,,,,,,0.0095,0.01168,0.01347,0.0189,,,,,,,0.00904,0.01129,0.01318,0.01898,,,,,,,0.00881,0.01086,0.01252,0.01752,,,,,,,0.00944,0.01177,0.01376,0.01994,,,,,,,0.00893,0.01091,0.01251,0.01731,,,,,,,0.00238,0.0024,0.00243,0.00265,,,,,,,0.0024,0.00242,0.00244,0.00266,,,,,,,0.00244,0.00245,0.00248,0.0027,,,,,,,0.00238,0.0024,0.00242,0.00265,,,,,,,0.00244,0.00245,0.00247,0.00268,,,,,,,0.0024,0.00241,0.00243,0.00264,,,,,,,0.00242,0.00243,0.00245,0.00265,,,,,,,0.00239,0.0024,0.00242,0.00263,,,,,,,0.00221,0.00222,0.00223,0.00242,,,,,,,0.10613,0.15012,0.22846,0.54308,,,,,,,0.09752,0.13893,0.21469,0.52368,,,,,,,0.10331,0.15336,0.23717,0.5715,,,,,,,0.11171,0.16649,0.25488,0.59357,,,,,,,0.07974,0.12682,0.20827,0.54088,,,,,,,0.08262,0.13079,0.21213,0.53986,,,,,,,0.07853,0.12388,0.20307,0.52837,,,,,,,0.09362,0.14252,0.22633,0.56366,,,,,,,0.0781,0.12159,0.19912,0.51941,,, +Minivan,E10,2025,,,,,0.00076,0.00126,0.00178,0.00398,,,,,,,0.0007,0.00115,0.00162,0.00359,,,,,,,0.00073,0.00121,0.00171,0.00381,,,,,,,0.00078,0.0013,0.00185,0.00414,,,,,,,0.00053,0.00086,0.00119,0.00253,,,,,,,0.00056,0.00092,0.00128,0.00275,,,,,,,0.00049,0.00079,0.00109,0.00228,,,,,,,0.00059,0.00097,0.00136,0.00296,,,,,,,0.00047,0.00076,0.00104,0.00219,,,,,,,0.00894,0.00705,0.00683,0.01005,,,,,,,0.0078,0.00625,0.00612,0.00918,,,,,,,0.00836,0.00697,0.00682,0.01057,,,,,,,0.00939,0.0078,0.00762,0.01169,,,,,,,0.00486,0.0046,0.00474,0.00806,,,,,,,0.00551,0.00509,0.00518,0.00869,,,,,,,0.00472,0.00449,0.00465,0.00792,,,,,,,0.00633,0.00551,0.00552,0.00886,,,,,,,0.00482,0.00438,0.00449,0.0074,,,,,,,1.18398,1.7428,2.22113,3.72535,,,,,,,1.1395,1.69672,2.17184,3.68152,,,,,,,1.20991,1.88654,2.45982,4.35409,,,,,,,1.31013,2.04967,2.68018,4.70544,,,,,,,1.01572,1.69093,2.22852,4.05968,,,,,,,1.06639,1.76693,2.33344,4.25659,,,,,,,1.04974,1.74207,2.29355,4.16627,,,,,,,1.13273,1.79813,2.33673,4.14545,,,,,,,0.99097,1.5772,2.0348,3.59288,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.05552,0.08396,0.11273,0.19147,,,,,,,0.05378,0.08147,0.10968,0.18734,,,,,,,0.05442,0.08686,0.11631,0.20496,,,,,,,0.05764,0.09329,0.1248,0.22027,,,,,,,0.04515,0.07603,0.10324,0.18744,,,,,,,0.04877,0.08123,0.1098,0.19747,,,,,,,0.04627,0.07731,0.10507,0.1889,,,,,,,0.05383,0.08713,0.11734,0.20752,,,,,,,0.04781,0.07683,0.10401,0.18229,,,,,,,0.00151,0.00239,0.00317,0.00631,,,,,,,0.00145,0.00229,0.00303,0.00595,,,,,,,0.00147,0.00233,0.00309,0.00613,,,,,,,0.00152,0.00241,0.00322,0.00643,,,,,,,0.0013,0.00202,0.00262,0.00495,,,,,,,0.00132,0.00206,0.00268,0.00512,,,,,,,0.00124,0.00192,0.00249,0.00465,,,,,,,0.00135,0.00211,0.00276,0.00532,,,,,,,0.0012,0.00187,0.00241,0.00451,,,,,,,0.04412,0.04607,0.04789,0.05522,,,,,,,0.04537,0.04721,0.04889,0.05565,,,,,,,0.04946,0.05135,0.0531,0.06018,,,,,,,0.04133,0.04332,0.04518,0.05273,,,,,,,0.04816,0.04969,0.05101,0.05618,,,,,,,0.04391,0.04549,0.04688,0.05237,,,,,,,0.04396,0.0454,0.04663,0.05139,,,,,,,0.04629,0.04793,0.04939,0.05519,,,,,,,0.04575,0.04714,0.04832,0.05295,,,,,,,0.0082,0.00992,0.01153,0.01802,,,,,,,0.00824,0.00987,0.01136,0.01734,,,,,,,0.00881,0.01048,0.01204,0.01829,,,,,,,0.00788,0.00964,0.01129,0.01797,,,,,,,0.00828,0.00964,0.0108,0.01538,,,,,,,0.00779,0.00919,0.01042,0.01527,,,,,,,0.00765,0.00892,0.01001,0.01422,,,,,,,0.00815,0.0096,0.0109,0.01603,,,,,,,0.00781,0.00905,0.01009,0.01418,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00198,0.00199,0.002,0.00224,,,,,,,0.00201,0.00202,0.00204,0.00227,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00201,0.00201,0.00202,0.00224,,,,,,,0.00198,0.00198,0.002,0.00222,,,,,,,0.00199,0.002,0.00201,0.00223,,,,,,,0.00196,0.00197,0.00198,0.00221,,,,,,,0.00182,0.00182,0.00183,0.00203,,,,,,,0.08884,0.11605,0.17324,0.46046,,,,,,,0.07969,0.10435,0.15872,0.44123,,,,,,,0.08569,0.11632,0.17708,0.48245,,,,,,,0.0937,0.12765,0.19166,0.49927,,,,,,,0.0593,0.08559,0.14178,0.44597,,,,,,,0.0632,0.09068,0.14726,0.44702,,,,,,,0.0576,0.08195,0.13561,0.43194,,,,,,,0.0732,0.10157,0.16064,0.46764,,,,,,,0.05738,0.0813,0.13472,0.42859,, +Minivan,E10,2030,,,,,,0.00075,0.00125,0.00177,0.00326,,,,,,,0.00069,0.00115,0.00161,0.00294,,,,,,,0.00073,0.0012,0.0017,0.00312,,,,,,,0.00078,0.0013,0.00183,0.00339,,,,,,,0.00053,0.00086,0.00118,0.00208,,,,,,,0.00056,0.00092,0.00127,0.00226,,,,,,,0.00049,0.00079,0.00108,0.00189,,,,,,,0.00059,0.00097,0.00135,0.00243,,,,,,,0.00047,0.00075,0.00104,0.0018,,,,,,,0.00824,0.00631,0.00612,0.00834,,,,,,,0.0071,0.00552,0.00541,0.00748,,,,,,,0.00767,0.00614,0.00603,0.00852,,,,,,,0.00866,0.00691,0.00676,0.00949,,,,,,,0.00413,0.00375,0.0039,0.00593,,,,,,,0.00478,0.00423,0.00434,0.00651,,,,,,,0.00397,0.00363,0.0038,0.0058,,,,,,,0.0056,0.00469,0.00472,0.00686,,,,,,,0.00407,0.00358,0.00371,0.0055,,,,,,,1.04003,1.53051,1.96854,2.92609,,,,,,,0.99,1.4779,1.90991,2.85621,,,,,,,1.05552,1.64452,2.16274,3.34955,,,,,,,1.14572,1.7901,2.35812,3.63606,,,,,,,0.84984,1.43294,1.90946,3.00885,,,,,,,0.90029,1.50612,2.00959,3.17653,,,,,,,0.87756,1.47575,1.96432,3.09091,,,,,,,0.96643,1.54482,2.02794,3.1354,,,,,,,0.83315,1.34237,1.75322,2.69085,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.04478,0.06659,0.09172,0.14345,,,,,,,0.04294,0.06411,0.08868,0.13932,,,,,,,0.04336,0.06786,0.09351,0.15098,,,,,,,0.04592,0.07282,0.10024,0.16221,,,,,,,0.03436,0.05741,0.08088,0.13394,,,,,,,0.03767,0.06195,0.08666,0.14237,,,,,,,0.03525,0.05842,0.08231,0.13525,,,,,,,0.04178,0.06685,0.09306,0.15057,,,,,,,0.03663,0.0586,0.08222,0.13175,,,,,,,0.0015,0.00238,0.00316,0.00522,,,,,,,0.00145,0.00228,0.00301,0.00492,,,,,,,0.00147,0.00232,0.00308,0.00506,,,,,,,0.00152,0.00241,0.0032,0.00532,,,,,,,0.0013,0.00202,0.00261,0.00411,,,,,,,0.00131,0.00205,0.00267,0.00425,,,,,,,0.00124,0.00192,0.00247,0.00387,,,,,,,0.00134,0.0021,0.00275,0.00441,,,,,,,0.0012,0.00186,0.00241,0.00375,,,,,,,0.04411,0.04606,0.04785,0.0527,,,,,,,0.04536,0.0472,0.04886,0.05331,,,,,,,0.04945,0.05134,0.05307,0.05774,,,,,,,0.04132,0.0433,0.04513,0.05015,,,,,,,0.04815,0.04968,0.05098,0.05435,,,,,,,0.04391,0.04549,0.04686,0.05044,,,,,,,0.04395,0.04539,0.04659,0.0497,,,,,,,0.04628,0.04792,0.04937,0.05316,,,,,,,0.04575,0.04714,0.04832,0.05129,,,,,,,0.00819,0.00991,0.0115,0.01579,,,,,,,0.00824,0.00986,0.01133,0.01527,,,,,,,0.0088,0.01047,0.012,0.01614,,,,,,,0.00787,0.00963,0.01125,0.01568,,,,,,,0.00828,0.00963,0.01078,0.01376,,,,,,,0.00779,0.00919,0.0104,0.01357,,,,,,,0.00764,0.00892,0.00998,0.01273,,,,,,,0.00815,0.0096,0.01088,0.01423,,,,,,,0.00781,0.00904,0.01009,0.01272,,,,,,,0.0018,0.00182,0.00184,0.002,,,,,,,0.00181,0.00183,0.00185,0.002,,,,,,,0.00184,0.00185,0.00188,0.00204,,,,,,,0.0018,0.00181,0.00184,0.00199,,,,,,,0.00184,0.00185,0.00187,0.00201,,,,,,,0.00181,0.00182,0.00184,0.00198,,,,,,,0.00182,0.00183,0.00185,0.00199,,,,,,,0.0018,0.00181,0.00183,0.00197,,,,,,,0.00166,0.00167,0.00169,0.00182,,,,,,,0.08409,0.1078,0.16182,0.40709,,,,,,,0.07489,0.09611,0.14725,0.38716,,,,,,,0.08085,0.10729,0.16453,0.42266,,,,,,,0.08871,0.11809,0.17818,0.43748,,,,,,,0.0541,0.07606,0.12816,0.38111,,,,,,,0.05813,0.08124,0.13378,0.38345,,,,,,,0.05232,0.07237,0.12184,0.36672,,,,,,,0.06785,0.0921,0.14704,0.40446,,,,,,,0.05204,0.07202,0.12166,0.36714, +Minivan,E10,2035,,,,,,,0.00075,0.00124,0.00177,0.00301,,,,,,,0.00069,0.00114,0.00162,0.00272,,,,,,,0.00072,0.0012,0.0017,0.00288,,,,,,,0.00078,0.00128,0.00184,0.00313,,,,,,,0.00053,0.00085,0.00118,0.00193,,,,,,,0.00056,0.00091,0.00127,0.00209,,,,,,,0.00049,0.00078,0.00108,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00224,,,,,,,0.00047,0.00075,0.00104,0.00166,,,,,,,0.00821,0.00631,0.00611,0.00772,,,,,,,0.00708,0.00552,0.00541,0.00685,,,,,,,0.00765,0.00615,0.00602,0.00774,,,,,,,0.00864,0.00692,0.00675,0.00865,,,,,,,0.00412,0.00375,0.0039,0.00512,,,,,,,0.00477,0.00423,0.00433,0.00568,,,,,,,0.00397,0.00363,0.0038,0.00499,,,,,,,0.00559,0.00469,0.00472,0.0061,,,,,,,0.00406,0.00358,0.00371,0.00479,,,,,,,1.03716,1.52885,1.96803,2.65465,,,,,,,0.9873,1.47547,1.91,2.57555,,,,,,,1.05245,1.64125,2.16316,2.9991,,,,,,,1.14221,1.78486,2.35962,3.2623,,,,,,,0.84751,1.42772,1.91153,2.64262,,,,,,,0.89776,1.50092,2.01154,2.79826,,,,,,,0.87517,1.47017,1.96657,2.71624,,,,,,,0.96377,1.54122,2.02879,2.78535,,,,,,,0.83114,1.34091,1.75303,2.38043,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04463,0.06637,0.09175,0.12553,,,,,,,0.04279,0.0639,0.08872,0.12139,,,,,,,0.0432,0.06762,0.09356,0.13038,,,,,,,0.04576,0.07253,0.10031,0.13994,,,,,,,0.03426,0.05723,0.08091,0.11349,,,,,,,0.03755,0.06175,0.08669,0.12126,,,,,,,0.03514,0.05821,0.08236,0.11482,,,,,,,0.04165,0.06668,0.09307,0.12892,,,,,,,0.03653,0.05851,0.08219,0.11276,,,,,,,0.0015,0.00237,0.00316,0.00483,,,,,,,0.00144,0.00227,0.00302,0.00456,,,,,,,0.00147,0.00231,0.00308,0.00469,,,,,,,0.00151,0.00239,0.00321,0.00493,,,,,,,0.00129,0.00201,0.00262,0.00382,,,,,,,0.00131,0.00204,0.00268,0.00394,,,,,,,0.00123,0.00191,0.00248,0.0036,,,,,,,0.00134,0.0021,0.00275,0.00409,,,,,,,0.0012,0.00186,0.00241,0.00347,,,,,,,0.0441,0.04603,0.04786,0.05182,,,,,,,0.04535,0.04717,0.04887,0.0525,,,,,,,0.04944,0.05131,0.05308,0.05689,,,,,,,0.04131,0.04326,0.04515,0.04926,,,,,,,0.04814,0.04966,0.05099,0.05371,,,,,,,0.0439,0.04546,0.04687,0.04977,,,,,,,0.04395,0.04537,0.04661,0.04911,,,,,,,0.04627,0.0479,0.04938,0.05245,,,,,,,0.04574,0.04713,0.04832,0.0507,,,,,,,0.00818,0.00989,0.01151,0.01501,,,,,,,0.00823,0.00983,0.01134,0.01455,,,,,,,0.00879,0.01045,0.01202,0.01539,,,,,,,0.00786,0.00959,0.01127,0.0149,,,,,,,0.00827,0.00961,0.01079,0.01319,,,,,,,0.00778,0.00917,0.01041,0.01297,,,,,,,0.00764,0.00889,0.00999,0.01221,,,,,,,0.00814,0.00958,0.01088,0.0136,,,,,,,0.00781,0.00904,0.01009,0.0122,,,,,,,0.0018,0.00182,0.00184,0.00192,,,,,,,0.00181,0.00183,0.00185,0.00192,,,,,,,0.00184,0.00185,0.00188,0.00195,,,,,,,0.0018,0.00181,0.00184,0.00191,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00181,0.00182,0.00184,0.0019,,,,,,,0.00182,0.00183,0.00185,0.00191,,,,,,,0.0018,0.00181,0.00183,0.0019,,,,,,,0.00166,0.00167,0.00169,0.00175,,,,,,,0.08379,0.10772,0.16167,0.38733,,,,,,,0.07462,0.09603,0.14712,0.36711,,,,,,,0.08056,0.10724,0.16435,0.4001,,,,,,,0.08837,0.11789,0.17807,0.41418,,,,,,,0.05389,0.07585,0.12814,0.35668,,,,,,,0.05792,0.08106,0.13373,0.35939,,,,,,,0.05212,0.07213,0.12185,0.34223,,,,,,,0.06756,0.09168,0.14722,0.38063,,,,,,,0.05187,0.07191,0.12158,0.34424 +Minivan,E10,2040,,,,,,,,0.00075,0.00125,0.00178,,,,,,,,0.00069,0.00114,0.00162,,,,,,,,0.00072,0.0012,0.00171,,,,,,,,0.00077,0.00129,0.00185,,,,,,,,0.00052,0.00085,0.00119,,,,,,,,0.00055,0.00091,0.00128,,,,,,,,0.00048,0.00078,0.00109,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00822,0.0063,0.00611,,,,,,,,0.00708,0.00551,0.0054,,,,,,,,0.00766,0.00614,0.00602,,,,,,,,0.00865,0.00691,0.00675,,,,,,,,0.00412,0.00375,0.0039,,,,,,,,0.00478,0.00422,0.00433,,,,,,,,0.00396,0.00363,0.0038,,,,,,,,0.00559,0.00469,0.00471,,,,,,,,0.00406,0.00357,0.0037,,,,,,,,1.03644,1.52849,1.96794,,,,,,,,0.98602,1.47553,1.91046,,,,,,,,1.05112,1.64166,2.16419,,,,,,,,1.13988,1.78611,2.36203,,,,,,,,0.84451,1.42926,1.91398,,,,,,,,0.89492,1.50241,2.01398,,,,,,,,0.87196,1.47185,1.96923,,,,,,,,0.9617,1.54187,2.03004,,,,,,,,0.8301,1.34068,1.75287,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04448,0.06639,0.09181,,,,,,,,0.04266,0.06391,0.08876,,,,,,,,0.04306,0.06765,0.09363,,,,,,,,0.04558,0.07257,0.10041,,,,,,,,0.03415,0.05724,0.08094,,,,,,,,0.03744,0.06177,0.08674,,,,,,,,0.03501,0.05823,0.08242,,,,,,,,0.04154,0.06668,0.09309,,,,,,,,0.03648,0.05847,0.08216,,,,,,,,0.00149,0.00237,0.00317,,,,,,,,0.00144,0.00228,0.00302,,,,,,,,0.00146,0.00232,0.00309,,,,,,,,0.0015,0.0024,0.00322,,,,,,,,0.00129,0.00201,0.00262,,,,,,,,0.0013,0.00205,0.00268,,,,,,,,0.00123,0.00191,0.00249,,,,,,,,0.00133,0.0021,0.00276,,,,,,,,0.0012,0.00186,0.00241,,,,,,,,0.04408,0.04604,0.04788,,,,,,,,0.04534,0.04718,0.04888,,,,,,,,0.04942,0.05132,0.0531,,,,,,,,0.04128,0.04328,0.04518,,,,,,,,0.04813,0.04966,0.051,,,,,,,,0.04388,0.04547,0.04688,,,,,,,,0.04393,0.04538,0.04662,,,,,,,,0.04626,0.04791,0.04938,,,,,,,,0.04574,0.04713,0.04832,,,,,,,,0.00817,0.00989,0.01152,,,,,,,,0.00821,0.00984,0.01135,,,,,,,,0.00878,0.01046,0.01203,,,,,,,,0.00784,0.00961,0.01129,,,,,,,,0.00826,0.00962,0.0108,,,,,,,,0.00777,0.00917,0.01042,,,,,,,,0.00762,0.0089,0.01,,,,,,,,0.00813,0.00959,0.01089,,,,,,,,0.0078,0.00904,0.01009,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00181,0.00183,0.00185,,,,,,,,0.00184,0.00185,0.00188,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00181,0.00182,0.00184,,,,,,,,0.00182,0.00183,0.00185,,,,,,,,0.0018,0.00181,0.00183,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.08378,0.10766,0.16165,,,,,,,,0.0746,0.09598,0.14711,,,,,,,,0.08058,0.10717,0.16434,,,,,,,,0.0883,0.11788,0.17816,,,,,,,,0.05379,0.07589,0.12827,,,,,,,,0.05784,0.08108,0.13384,,,,,,,,0.052,0.07219,0.122,,,,,,,,0.06733,0.09193,0.14743,,,,,,,,0.05183,0.0719,0.12162 +Minivan,E10,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00115,,,,,,,,,0.00072,0.0012,,,,,,,,,0.00077,0.00129,,,,,,,,,0.00052,0.00086,,,,,,,,,0.00056,0.00092,,,,,,,,,0.00048,0.00079,,,,,,,,,0.00059,0.00097,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00821,0.0063,,,,,,,,,0.00707,0.00551,,,,,,,,,0.00765,0.00613,,,,,,,,,0.00864,0.0069,,,,,,,,,0.00412,0.00374,,,,,,,,,0.00477,0.00422,,,,,,,,,0.00396,0.00363,,,,,,,,,0.00558,0.00468,,,,,,,,,0.00405,0.00357,,,,,,,,,1.03629,1.52874,,,,,,,,,0.98618,1.47623,,,,,,,,,1.05127,1.64267,,,,,,,,,1.14045,1.78812,,,,,,,,,0.84562,1.43146,,,,,,,,,0.89592,1.50455,,,,,,,,,0.87316,1.47423,,,,,,,,,0.96228,1.54316,,,,,,,,,0.83028,1.34093,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04452,0.06646,,,,,,,,,0.04269,0.06398,,,,,,,,,0.04309,0.06772,,,,,,,,,0.04563,0.07267,,,,,,,,,0.03418,0.0573,,,,,,,,,0.03746,0.06183,,,,,,,,,0.03505,0.0583,,,,,,,,,0.04156,0.06672,,,,,,,,,0.03648,0.05848,,,,,,,,,0.00149,0.00238,,,,,,,,,0.00144,0.00228,,,,,,,,,0.00146,0.00232,,,,,,,,,0.00151,0.00241,,,,,,,,,0.00129,0.00202,,,,,,,,,0.00131,0.00205,,,,,,,,,0.00123,0.00192,,,,,,,,,0.00134,0.0021,,,,,,,,,0.0012,0.00186,,,,,,,,,0.04409,0.04605,,,,,,,,,0.04534,0.04719,,,,,,,,,0.04943,0.05133,,,,,,,,,0.04129,0.04329,,,,,,,,,0.04814,0.04967,,,,,,,,,0.04389,0.04548,,,,,,,,,0.04394,0.04539,,,,,,,,,0.04627,0.04792,,,,,,,,,0.04574,0.04713,,,,,,,,,0.00817,0.00991,,,,,,,,,0.00822,0.00985,,,,,,,,,0.00878,0.01047,,,,,,,,,0.00785,0.00962,,,,,,,,,0.00826,0.00962,,,,,,,,,0.00777,0.00918,,,,,,,,,0.00763,0.00891,,,,,,,,,0.00813,0.00959,,,,,,,,,0.0078,0.00904,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00181,0.00183,,,,,,,,,0.00184,0.00185,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00181,0.00182,,,,,,,,,0.00182,0.00183,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00166,0.00167,,,,,,,,,0.08373,0.10763,,,,,,,,,0.07456,0.09596,,,,,,,,,0.08052,0.10713,,,,,,,,,0.08827,0.11791,,,,,,,,,0.05381,0.07595,,,,,,,,,0.05785,0.08112,,,,,,,,,0.05203,0.07227,,,,,,,,,0.06747,0.09201,,,,,,,,,0.05181,0.07191 +Minivan,E10,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00072,,,,,,,,,,0.00078,,,,,,,,,,0.00053,,,,,,,,,,0.00056,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.00046,,,,,,,,,,0.0082,,,,,,,,,,0.00707,,,,,,,,,,0.00764,,,,,,,,,,0.00863,,,,,,,,,,0.00411,,,,,,,,,,0.00476,,,,,,,,,,0.00396,,,,,,,,,,0.00558,,,,,,,,,,0.00405,,,,,,,,,,1.03626,,,,,,,,,,0.98648,,,,,,,,,,1.05157,,,,,,,,,,1.14126,,,,,,,,,,0.84688,,,,,,,,,,0.89708,,,,,,,,,,0.87452,,,,,,,,,,0.963,,,,,,,,,,0.83048,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.04457,,,,,,,,,,0.04274,,,,,,,,,,0.04315,,,,,,,,,,0.04571,,,,,,,,,,0.03421,,,,,,,,,,0.03751,,,,,,,,,,0.0351,,,,,,,,,,0.0416,,,,,,,,,,0.03649,,,,,,,,,,0.0015,,,,,,,,,,0.00144,,,,,,,,,,0.00146,,,,,,,,,,0.00151,,,,,,,,,,0.00129,,,,,,,,,,0.00131,,,,,,,,,,0.00123,,,,,,,,,,0.00134,,,,,,,,,,0.0012,,,,,,,,,,0.0441,,,,,,,,,,0.04535,,,,,,,,,,0.04944,,,,,,,,,,0.0413,,,,,,,,,,0.04814,,,,,,,,,,0.0439,,,,,,,,,,0.04395,,,,,,,,,,0.04627,,,,,,,,,,0.04574,,,,,,,,,,0.00818,,,,,,,,,,0.00823,,,,,,,,,,0.00879,,,,,,,,,,0.00786,,,,,,,,,,0.00827,,,,,,,,,,0.00778,,,,,,,,,,0.00764,,,,,,,,,,0.00814,,,,,,,,,,0.0078,,,,,,,,,,0.0018,,,,,,,,,,0.00181,,,,,,,,,,0.00184,,,,,,,,,,0.0018,,,,,,,,,,0.00184,,,,,,,,,,0.00181,,,,,,,,,,0.00182,,,,,,,,,,0.0018,,,,,,,,,,0.00166,,,,,,,,,,0.0837,,,,,,,,,,0.07455,,,,,,,,,,0.08049,,,,,,,,,,0.08828,,,,,,,,,,0.05385,,,,,,,,,,0.05787,,,,,,,,,,0.05208,,,,,,,,,,0.06753,,,,,,,,,,0.05182 +Minivan,E15,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.12065,,,,,,,,,,0.10162,,,,,,,,,,0.13541,,,,,,,,,,0.14182,,,,,,,,,,0.11558,,,,,,,,,,0.12745,,,,,,,,,,0.11645,,,,,,,,,,0.11186,,,,,,,,,,0.0861,,,,,,,,,,59.59238,,,,,,,,,,53.45102,,,,,,,,,,68.40019,,,,,,,,,,71.15177,,,,,,,,,,62.01726,,,,,,,,,,67.54108,,,,,,,,,,63.84635,,,,,,,,,,60.29827,,,,,,,,,,48.25039,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.67638,,,,,,,,,,5.32777,,,,,,,,,,5.89604,,,,,,,,,,6.28535,,,,,,,,,,5.8091,,,,,,,,,,6.08587,,,,,,,,,,5.82808,,,,,,,,,,6.14781,,,,,,,,,,5.10341,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02918,,,,,,,,,,0.03291,,,,,,,,,,0.04674,,,,,,,,,,0.04285,,,,,,,,,,0.03814,,,,,,,,,,0.04203,,,,,,,,,,0.03825,,,,,,,,,,0.03781,,,,,,,,,,0.01784,,,,,,,,,,4.65991,,,,,,,,,,4.17681,,,,,,,,,,5.28432,,,,,,,,,,5.49861,,,,,,,,,,5.12669,,,,,,,,,,5.34065,,,,,,,,,,5.15853,,,,,,,,,,4.96051,,,,,,,,,,3.95279,,,,,,,,, +Minivan,E15,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.08258,0.09566,,,,,,,,,0.07687,0.08214,,,,,,,,,0.09541,0.1051,,,,,,,,,0.09851,0.11569,,,,,,,,,0.08436,0.09869,,,,,,,,,0.09003,0.1066,,,,,,,,,0.08421,0.09726,,,,,,,,,0.08236,0.09265,,,,,,,,,0.06672,0.06853,,,,,,,,,27.87856,39.02577,,,,,,,,,27.24741,36.0603,,,,,,,,,32.86673,44.83978,,,,,,,,,34.42847,47.97397,,,,,,,,,30.47994,42.13867,,,,,,,,,32.57638,45.61889,,,,,,,,,31.37145,43.51357,,,,,,,,,30.09137,42.19543,,,,,,,,,24.19631,33.19909,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.6664,5.66445,,,,,,,,,4.58673,5.3417,,,,,,,,,4.95732,5.81974,,,,,,,,,5.1898,6.32021,,,,,,,,,4.86879,5.90005,,,,,,,,,5.06929,6.13387,,,,,,,,,4.93364,5.91427,,,,,,,,,5.1693,6.18841,,,,,,,,,4.35748,5.12875,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02281,0.01172,,,,,,,,,0.02589,0.01188,,,,,,,,,0.03693,0.0123,,,,,,,,,0.03357,0.02056,,,,,,,,,0.03039,0.01212,,,,,,,,,0.03326,0.01201,,,,,,,,,0.03043,0.01648,,,,,,,,,0.0299,0.01874,,,,,,,,,0.01406,0.00689,,,,,,,,,3.22511,4.07292,,,,,,,,,3.11826,3.74208,,,,,,,,,3.75479,4.53079,,,,,,,,,3.84111,4.87321,,,,,,,,,3.62314,4.71745,,,,,,,,,3.71396,4.82907,,,,,,,,,3.61873,4.65989,,,,,,,,,3.55848,4.50338,,,,,,,,,2.92715,3.53898,,,,,,,, +Minivan,E15,2000,0.00678,0.00997,0.02284,,,,,,,,0.00583,0.00855,0.01949,,,,,,,,0.00656,0.00964,0.0222,,,,,,,,0.00726,0.0107,0.02477,,,,,,,,0.00328,0.00477,0.01066,,,,,,,,0.00387,0.00564,0.0133,,,,,,,,0.00314,0.00456,0.01009,,,,,,,,0.00452,0.00661,0.01496,,,,,,,,0.00316,0.00458,0.01006,,,,,,,,0.04666,0.06942,0.09406,,,,,,,,0.04383,0.06659,0.08351,,,,,,,,0.05448,0.07808,0.10576,,,,,,,,0.05611,0.08266,0.10974,,,,,,,,0.04123,0.069,0.09537,,,,,,,,0.04492,0.07237,0.09994,,,,,,,,0.04076,0.06797,0.09013,,,,,,,,0.04369,0.0681,0.0881,,,,,,,,0.03483,0.05686,0.06904,,,,,,,,8.59577,13.80621,25.42879,,,,,,,,8.40494,13.67133,23.31772,,,,,,,,10.33208,16.59557,29.83902,,,,,,,,10.71726,17.14071,30.23553,,,,,,,,8.34909,14.54229,26.84265,,,,,,,,9.06002,15.50459,28.7891,,,,,,,,8.49084,14.84126,26.58304,,,,,,,,8.75648,15.02741,26.21991,,,,,,,,7.00193,12.67493,21.07122,,,,,,,,519.42675,524.09096,527.02867,,,,,,,,523.65108,528.00485,529.98667,,,,,,,,531.22032,535.80276,538.31103,,,,,,,,518.7679,523.30119,525.70058,,,,,,,,532.49042,535.74026,534.49675,,,,,,,,523.68493,527.25523,528.67382,,,,,,,,528.32762,531.44913,529.72438,,,,,,,,528.27961,532.00795,532.13864,,,,,,,,520.52036,523.96225,523.681,,,,,,,,0.05098,0.05676,0.08712,,,,,,,,0.05115,0.05691,0.08721,,,,,,,,0.05222,0.058,0.08859,,,,,,,,0.04982,0.05553,0.08539,,,,,,,,0.05194,0.0577,0.08819,,,,,,,,0.05058,0.05629,0.08637,,,,,,,,0.05098,0.05675,0.08704,,,,,,,,0.0516,0.05739,0.08788,,,,,,,,0.05194,0.05779,0.08855,,,,,,,,0.06211,0.08109,0.08468,,,,,,,,0.06218,0.08118,0.08476,,,,,,,,0.06216,0.08115,0.0847,,,,,,,,0.06184,0.08074,0.08437,,,,,,,,0.06211,0.08108,0.08464,,,,,,,,0.0619,0.08082,0.08441,,,,,,,,0.06206,0.08103,0.08462,,,,,,,,0.0622,0.08121,0.08478,,,,,,,,0.06233,0.08139,0.08495,,,,,,,,1.68898,2.38865,3.99568,,,,,,,,1.65357,2.36648,3.78631,,,,,,,,1.91637,2.61527,4.26287,,,,,,,,1.97177,2.75259,4.37505,,,,,,,,1.83094,2.58524,4.2534,,,,,,,,1.90187,2.64699,4.33135,,,,,,,,1.85911,2.62331,4.11499,,,,,,,,1.94761,2.72841,4.31954,,,,,,,,1.65012,2.35186,3.6239,,,,,,,,0.01478,0.02069,0.04094,,,,,,,,0.01296,0.01811,0.03568,,,,,,,,0.01413,0.01978,0.03945,,,,,,,,0.0154,0.0216,0.04334,,,,,,,,0.00785,0.0109,0.02112,,,,,,,,0.00902,0.01256,0.02552,,,,,,,,0.00767,0.01064,0.02045,,,,,,,,0.01034,0.01442,0.02822,,,,,,,,0.00781,0.01083,0.02057,,,,,,,,0.0726,0.08533,0.13153,,,,,,,,0.07004,0.08102,0.12091,,,,,,,,0.07691,0.08889,0.1338,,,,,,,,0.07147,0.0849,0.13452,,,,,,,,0.06212,0.06846,0.09124,,,,,,,,0.06043,0.06778,0.09703,,,,,,,,0.05763,0.06384,0.08552,,,,,,,,0.06558,0.07426,0.10523,,,,,,,,0.05958,0.06591,0.08744,,,,,,,,0.0334,0.04466,0.08553,,,,,,,,0.03007,0.03979,0.07507,,,,,,,,0.0331,0.0437,0.08343,,,,,,,,0.03455,0.04644,0.09033,,,,,,,,0.02063,0.02625,0.04641,,,,,,,,0.02241,0.02891,0.05464,,,,,,,,0.01974,0.02524,0.04442,,,,,,,,0.02522,0.0329,0.0603,,,,,,,,0.02005,0.02566,0.0447,,,,,,,,0.02439,0.01184,0.01072,,,,,,,,0.02773,0.01204,0.01078,,,,,,,,0.03954,0.01246,0.01095,,,,,,,,0.036,0.02087,0.01069,,,,,,,,0.0327,0.01239,0.01087,,,,,,,,0.03579,0.01225,0.01075,,,,,,,,0.0328,0.01687,0.01077,,,,,,,,0.0321,0.0191,0.0097,,,,,,,,0.01508,0.007,0.00504,,,,,,,,1.10156,1.83782,3.30219,,,,,,,,1.08213,1.8141,3.02223,,,,,,,,1.30177,2.09502,3.73038,,,,,,,,1.34769,2.20316,3.83672,,,,,,,,1.14073,2.01504,3.69944,,,,,,,,1.1838,2.05474,3.82289,,,,,,,,1.13686,1.98429,3.53952,,,,,,,,1.19425,2.00379,3.47845,,,,,,,,0.9625,1.68027,2.78972,,,,,,, +Minivan,E15,2005,0.00224,0.00371,0.00548,0.01393,,,,,,,0.00201,0.00319,0.0047,0.01197,,,,,,,0.00247,0.00285,0.00417,0.01341,,,,,,,0.00259,0.00381,0.00565,0.01496,,,,,,,0.00129,0.00208,0.00304,0.00685,,,,,,,0.00152,0.00213,0.00313,0.00799,,,,,,,0.00123,0.00189,0.00275,0.00633,,,,,,,0.00168,0.00238,0.00348,0.0092,,,,,,,0.00109,0.00162,0.00233,0.00617,,,,,,,0.02784,0.02128,0.02252,0.05038,,,,,,,0.02563,0.01928,0.02097,0.04585,,,,,,,0.02904,0.02104,0.02287,0.05848,,,,,,,0.02944,0.02457,0.02496,0.06071,,,,,,,0.01845,0.0161,0.01855,0.04944,,,,,,,0.02058,0.01714,0.01968,0.05264,,,,,,,0.01773,0.01659,0.01808,0.04679,,,,,,,0.02212,0.0186,0.01914,0.04835,,,,,,,0.01469,0.01239,0.01402,0.03844,,,,,,,4.4151,6.66009,8.6055,15.27794,,,,,,,4.33412,6.60611,8.69689,14.68121,,,,,,,4.84393,7.77284,10.37328,17.95611,,,,,,,4.97685,8.44323,10.41162,18.77986,,,,,,,4.40055,7.19572,9.71333,16.65928,,,,,,,4.55213,7.49856,10.25832,17.36852,,,,,,,4.50383,7.74561,9.79538,16.72235,,,,,,,4.60901,7.99681,9.76447,16.7489,,,,,,,3.63511,6.67418,8.76272,14.44939,,,,,,,544.39318,547.03541,552.96372,553.50631,,,,,,,549.15818,551.61044,557.11807,556.71381,,,,,,,556.66504,559.24687,565.03727,565.17411,,,,,,,544.08328,546.6066,552.40283,552.59409,,,,,,,559.60243,561.37696,565.41325,561.80501,,,,,,,550.23082,552.20635,558.50072,553.97491,,,,,,,555.6476,557.33996,561.20779,557.21621,,,,,,,554.72399,556.7937,561.46575,559.22916,,,,,,,546.751,548.70275,552.97175,550.06822,,,,,,,0.01007,0.0108,0.01272,0.04015,,,,,,,0.01009,0.01082,0.01273,0.04016,,,,,,,0.01026,0.01099,0.01291,0.04072,,,,,,,0.00986,0.01058,0.01248,0.0394,,,,,,,0.01021,0.01094,0.01286,0.04055,,,,,,,0.00998,0.01071,0.01261,0.03976,,,,,,,0.01006,0.01079,0.01271,0.0401,,,,,,,0.01017,0.0109,0.01282,0.04045,,,,,,,0.01024,0.01098,0.01293,0.04078,,,,,,,0.02495,0.0287,0.03537,0.05091,,,,,,,0.02498,0.02873,0.03541,0.05096,,,,,,,0.02497,0.02872,0.0354,0.05094,,,,,,,0.02485,0.02858,0.03522,0.05071,,,,,,,0.02495,0.0287,0.03537,0.0509,,,,,,,0.02488,0.02861,0.03525,0.05075,,,,,,,0.02494,0.02868,0.03535,0.05088,,,,,,,0.02499,0.02874,0.03542,0.05098,,,,,,,0.02504,0.0288,0.0355,0.05109,,,,,,,0.62564,0.99522,1.29585,1.98078,,,,,,,0.61402,0.97385,1.29323,1.91655,,,,,,,0.66538,1.07873,1.41171,2.1752,,,,,,,0.66465,1.18569,1.47516,2.26824,,,,,,,0.62303,1.04246,1.37897,2.15195,,,,,,,0.6449,1.07929,1.41423,2.19415,,,,,,,0.63308,1.09505,1.37762,2.10288,,,,,,,0.67963,1.13893,1.40583,2.21675,,,,,,,0.53278,0.76137,1.00009,1.91448,,,,,,,0.00504,0.00812,0.01102,0.02474,,,,,,,0.00462,0.00723,0.0098,0.0218,,,,,,,0.00534,0.0067,0.00903,0.0237,,,,,,,0.00552,0.00818,0.01113,0.02588,,,,,,,0.00324,0.00511,0.00696,0.01373,,,,,,,0.00364,0.00523,0.00715,0.01551,,,,,,,0.00315,0.00482,0.00654,0.01308,,,,,,,0.00398,0.00575,0.00777,0.01747,,,,,,,0.00291,0.00437,0.00588,0.01294,,,,,,,0.05163,0.05814,0.06469,0.09556,,,,,,,0.05211,0.05754,0.06329,0.09019,,,,,,,0.05783,0.0604,0.06557,0.09875,,,,,,,0.04999,0.05557,0.06218,0.09559,,,,,,,0.05228,0.0561,0.06012,0.07502,,,,,,,0.04887,0.05207,0.05643,0.07479,,,,,,,0.04801,0.05141,0.05508,0.06939,,,,,,,0.0519,0.05553,0.05992,0.08152,,,,,,,0.04928,0.05222,0.05543,0.0709,,,,,,,0.01483,0.02059,0.02639,0.05371,,,,,,,0.01419,0.01901,0.02409,0.04789,,,,,,,0.01621,0.01849,0.02306,0.05241,,,,,,,0.01554,0.02048,0.02633,0.05588,,,,,,,0.01192,0.01531,0.01886,0.03205,,,,,,,0.01217,0.015,0.01872,0.0351,,,,,,,0.01122,0.01423,0.01748,0.03015,,,,,,,0.01311,0.01632,0.02021,0.03932,,,,,,,0.01093,0.01353,0.01637,0.03006,,,,,,,0.02556,0.01236,0.01125,0.00375,,,,,,,0.02907,0.01257,0.01133,0.00377,,,,,,,0.04144,0.01301,0.01149,0.00383,,,,,,,0.03776,0.02181,0.01124,0.00375,,,,,,,0.03437,0.01298,0.0115,0.00381,,,,,,,0.0376,0.01283,0.01136,0.00376,,,,,,,0.03449,0.0177,0.01141,0.00378,,,,,,,0.03369,0.01999,0.01023,0.00374,,,,,,,0.01583,0.00732,0.00532,0.00345,,,,,,,0.43447,0.531,0.7254,1.8609,,,,,,,0.41218,0.50223,0.69293,1.7482,,,,,,,0.46788,0.54718,0.75455,2.122,,,,,,,0.47923,0.62123,0.81272,2.18144,,,,,,,0.35141,0.47581,0.6755,1.99324,,,,,,,0.37296,0.48802,0.70705,2.03795,,,,,,,0.34265,0.4805,0.65593,1.9116,,,,,,,0.40921,0.53849,0.71204,1.98032,,,,,,,0.29202,0.39475,0.55528,1.6373,,,,,, +Minivan,E15,2010,,0.00166,0.00295,0.00438,0.01081,,,,,,,0.00145,0.00257,0.00387,0.00937,,,,,,,0.00128,0.00225,0.0042,0.01036,,,,,,,0.00171,0.00305,0.00465,0.01154,,,,,,,0.00105,0.00182,0.00257,0.00565,,,,,,,0.00105,0.00182,0.00283,0.00645,,,,,,,0.00096,0.00165,0.00231,0.00512,,,,,,,0.00112,0.00197,0.00309,0.00726,,,,,,,0.00081,0.00139,0.00217,0.00488,,,,,,,0.02001,0.01826,0.01552,0.03279,,,,,,,0.01761,0.01677,0.0142,0.03035,,,,,,,0.01849,0.01845,0.016,0.03709,,,,,,,0.02239,0.02068,0.01769,0.03936,,,,,,,0.01324,0.01522,0.01264,0.03059,,,,,,,0.01392,0.01589,0.01329,0.03253,,,,,,,0.0136,0.01497,0.01242,0.0293,,,,,,,0.01584,0.01541,0.01359,0.03101,,,,,,,0.01051,0.01125,0.01171,0.02544,,,,,,,2.95326,4.7524,6.25649,10.91147,,,,,,,2.84207,4.75451,6.20872,10.73036,,,,,,,3.26228,5.54729,7.03116,12.98077,,,,,,,3.5068,5.61418,7.56137,13.75476,,,,,,,2.70871,5.01628,6.69247,12.12347,,,,,,,2.87181,5.34479,6.89196,12.64055,,,,,,,2.91924,5.09833,6.84483,12.25959,,,,,,,3.18676,5.16194,6.88171,12.28225,,,,,,,2.60163,4.58049,6.15705,10.73228,,,,,,,516.83349,519.09937,523.84119,544.87964,,,,,,,521.37604,523.34975,527.61558,547.87014,,,,,,,528.50488,530.63568,535.19412,556.21225,,,,,,,516.51536,518.67635,523.2822,544.06459,,,,,,,531.33983,532.31245,534.9316,552.33741,,,,,,,522.44566,525.43011,526.8089,544.88158,,,,,,,527.59534,528.46326,530.90767,547.87909,,,,,,,526.68943,528.09633,531.42638,550.05078,,,,,,,519.14926,520.34582,523.24418,540.82102,,,,,,,0.00953,0.01073,0.01287,0.02506,,,,,,,0.00954,0.01074,0.01288,0.02505,,,,,,,0.00971,0.01092,0.01306,0.02537,,,,,,,0.00933,0.01052,0.01263,0.02461,,,,,,,0.00966,0.01087,0.013,0.02527,,,,,,,0.00944,0.01064,0.01275,0.02481,,,,,,,0.00952,0.01072,0.01286,0.02502,,,,,,,0.00962,0.01083,0.01297,0.02522,,,,,,,0.00969,0.01091,0.01307,0.02543,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.0188,0.02173,0.02737,0.03605,,,,,,,0.0188,0.02172,0.02737,0.03604,,,,,,,0.0187,0.02161,0.02723,0.03586,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.01872,0.02163,0.02725,0.03589,,,,,,,0.01877,0.02169,0.02732,0.03598,,,,,,,0.01881,0.02173,0.02738,0.03606,,,,,,,0.01885,0.02178,0.02744,0.03614,,,,,,,0.2189,0.35561,0.32344,1.00662,,,,,,,0.21138,0.3537,0.31973,0.98852,,,,,,,0.21828,0.38094,0.34236,1.12858,,,,,,,0.23604,0.40051,0.36087,1.18948,,,,,,,0.20437,0.36567,0.3257,1.1077,,,,,,,0.21132,0.37825,0.33621,1.1332,,,,,,,0.21483,0.36779,0.32837,1.08977,,,,,,,0.23074,0.37961,0.35579,1.1482,,,,,,,0.15716,0.26798,0.32114,1.00035,,,,,,,0.00301,0.00509,0.00712,0.01775,,,,,,,0.00281,0.00473,0.00664,0.01592,,,,,,,0.00256,0.00429,0.00692,0.01704,,,,,,,0.00303,0.00513,0.00734,0.01846,,,,,,,0.00246,0.00407,0.00541,0.011,,,,,,,0.0024,0.00395,0.00562,0.01201,,,,,,,0.00234,0.00384,0.0051,0.01035,,,,,,,0.00245,0.00407,0.00586,0.01314,,,,,,,0.00208,0.00342,0.00489,0.01008,,,,,,,0.04752,0.05224,0.05696,0.08086,,,,,,,0.0484,0.05268,0.05707,0.07783,,,,,,,0.05185,0.05568,0.06186,0.08466,,,,,,,0.04478,0.04956,0.05472,0.07989,,,,,,,0.05063,0.05406,0.05699,0.06929,,,,,,,0.04622,0.04976,0.05328,0.06743,,,,,,,0.04628,0.04947,0.05218,0.06366,,,,,,,0.04869,0.05219,0.05622,0.07238,,,,,,,0.04758,0.05036,0.05357,0.06486,,,,,,,0.0112,0.01538,0.01955,0.04069,,,,,,,0.01092,0.01471,0.01859,0.03696,,,,,,,0.01092,0.01432,0.01978,0.03995,,,,,,,0.01094,0.01517,0.01973,0.04199,,,,,,,0.01047,0.01351,0.0161,0.02697,,,,,,,0.00983,0.01282,0.01608,0.02859,,,,,,,0.0097,0.01252,0.01492,0.02508,,,,,,,0.01028,0.01337,0.01694,0.03123,,,,,,,0.00943,0.01189,0.01473,0.02472,,,,,,,0.01168,0.01056,0.00355,0.00369,,,,,,,0.01189,0.01064,0.00358,0.00371,,,,,,,0.0123,0.01079,0.00363,0.00377,,,,,,,0.02062,0.01055,0.00355,0.00369,,,,,,,0.01229,0.01083,0.00363,0.00374,,,,,,,0.01214,0.01069,0.00357,0.00369,,,,,,,0.01675,0.01075,0.0036,0.00371,,,,,,,0.01891,0.00962,0.00355,0.00367,,,,,,,0.00692,0.005,0.00328,0.00339,,,,,,,0.17178,0.25154,0.35865,1.23069,,,,,,,0.15323,0.23035,0.33337,1.17682,,,,,,,0.16318,0.25233,0.37023,1.36693,,,,,,,0.19271,0.28241,0.4026,1.41661,,,,,,,0.12259,0.20996,0.31874,1.26856,,,,,,,0.12616,0.22226,0.3234,1.28928,,,,,,,0.12349,0.20491,0.31128,1.22487,,,,,,,0.14922,0.22866,0.34822,1.29549,,,,,,,0.10966,0.17835,0.30063,1.11673,,,,, +Minivan,E15,2015,,,0.00133,0.00233,0.0036,0.00745,,,,,,,0.0012,0.00213,0.00327,0.00662,,,,,,,0.00105,0.00225,0.00348,0.00716,,,,,,,0.00135,0.00242,0.00375,0.00785,,,,,,,0.00093,0.00157,0.00237,0.00439,,,,,,,0.00091,0.00169,0.00256,0.00486,,,,,,,0.00086,0.00144,0.00216,0.00396,,,,,,,0.00096,0.00178,0.00271,0.00528,,,,,,,0.00072,0.00136,0.00202,0.00371,,,,,,,0.015,0.01151,0.01233,0.01816,,,,,,,0.01381,0.01069,0.01161,0.01699,,,,,,,0.01393,0.01192,0.01298,0.0196,,,,,,,0.01559,0.01308,0.01419,0.02128,,,,,,,0.01094,0.00974,0.01113,0.01634,,,,,,,0.01156,0.01027,0.01165,0.01724,,,,,,,0.01095,0.00965,0.01106,0.01604,,,,,,,0.01177,0.0104,0.01158,0.01703,,,,,,,0.00874,0.00915,0.01035,0.01469,,,,,,,2.14858,3.87322,5.26793,7.7213,,,,,,,2.16115,3.89332,5.32271,7.7322,,,,,,,2.3556,4.30818,6.03287,9.06332,,,,,,,2.39513,4.63612,6.50193,9.70226,,,,,,,2.13134,4.26836,6.02256,8.81099,,,,,,,2.25481,4.36052,6.16675,9.10458,,,,,,,2.19432,4.38766,6.1745,9.00283,,,,,,,2.23866,4.34703,6.04454,8.88189,,,,,,,2.01498,3.94723,5.44128,7.91035,,,,,,,417.53748,419.96275,423.92135,464.77929,,,,,,,421.04661,423.19792,426.77245,467.19115,,,,,,,426.87244,429.18435,432.99983,474.34402,,,,,,,417.26701,419.6063,423.46225,464.10738,,,,,,,428.5573,429.76455,432.01165,470.53769,,,,,,,422.94251,423.03662,425.66968,464.35855,,,,,,,425.51324,426.6195,428.72824,466.74582,,,,,,,425.03789,426.65293,429.47363,468.79458,,,,,,,418.79749,420.18389,422.64161,460.77193,,,,,,,0.00577,0.0066,0.0078,0.01287,,,,,,,0.00578,0.0066,0.0078,0.01286,,,,,,,0.00587,0.0067,0.00791,0.013,,,,,,,0.00565,0.00647,0.00766,0.01264,,,,,,,0.00585,0.00667,0.00788,0.01296,,,,,,,0.00572,0.00653,0.00773,0.01274,,,,,,,0.00577,0.00659,0.00779,0.01285,,,,,,,0.00582,0.00665,0.00786,0.01294,,,,,,,0.00587,0.0067,0.00792,0.01305,,,,,,,0.01869,0.02141,0.02733,0.02862,,,,,,,0.01871,0.02144,0.02737,0.02866,,,,,,,0.01871,0.02143,0.02736,0.02865,,,,,,,0.01861,0.02133,0.02722,0.02851,,,,,,,0.01869,0.02141,0.02734,0.02862,,,,,,,0.01863,0.02135,0.02725,0.02853,,,,,,,0.01868,0.0214,0.02732,0.02861,,,,,,,0.01872,0.02145,0.02738,0.02867,,,,,,,0.01876,0.02149,0.02743,0.02873,,,,,,,0.13741,0.17005,0.25327,0.45796,,,,,,,0.13682,0.16738,0.25004,0.45233,,,,,,,0.13709,0.1809,0.26855,0.50246,,,,,,,0.14367,0.19289,0.28614,0.53383,,,,,,,0.12619,0.16847,0.25324,0.48226,,,,,,,0.13238,0.17591,0.26352,0.49778,,,,,,,0.12929,0.17023,0.25622,0.48157,,,,,,,0.13688,0.18654,0.27802,0.51546,,,,,,,0.09874,0.16678,0.24924,0.45662,,,,,,,0.00261,0.0044,0.00637,0.01193,,,,,,,0.00249,0.00421,0.00607,0.01105,,,,,,,0.00227,0.00431,0.00623,0.01155,,,,,,,0.0026,0.00446,0.00647,0.01226,,,,,,,0.00227,0.0037,0.00522,0.00867,,,,,,,0.00219,0.00377,0.00535,0.00911,,,,,,,0.00216,0.00352,0.00495,0.00814,,,,,,,0.00221,0.00386,0.00549,0.00958,,,,,,,0.00193,0.00339,0.00475,0.00782,,,,,,,0.04653,0.05047,0.05497,0.06791,,,,,,,0.0476,0.05136,0.05555,0.06705,,,,,,,0.05113,0.05565,0.06003,0.07242,,,,,,,0.04369,0.0478,0.05243,0.06598,,,,,,,0.05018,0.05317,0.05648,0.06419,,,,,,,0.04592,0.0491,0.05258,0.06106,,,,,,,0.04587,0.0487,0.05178,0.05884,,,,,,,0.0481,0.05163,0.05526,0.06453,,,,,,,0.04723,0.05027,0.0532,0.05995,,,,,,,0.01033,0.01381,0.0178,0.02925,,,,,,,0.01022,0.01354,0.01725,0.02742,,,,,,,0.01029,0.01429,0.01817,0.02912,,,,,,,0.00997,0.01361,0.01771,0.0297,,,,,,,0.01007,0.01272,0.01565,0.02247,,,,,,,0.00942,0.01238,0.01546,0.02296,,,,,,,0.00934,0.01184,0.01457,0.02082,,,,,,,0.00976,0.01288,0.01609,0.02429,,,,,,,0.00912,0.01181,0.01441,0.02038,,,,,,,0.00849,0.00285,0.00287,0.00315,,,,,,,0.00856,0.00287,0.00289,0.00317,,,,,,,0.00868,0.00291,0.00294,0.00322,,,,,,,0.00849,0.00284,0.00287,0.00315,,,,,,,0.00872,0.00291,0.00293,0.00319,,,,,,,0.0086,0.00287,0.00289,0.00315,,,,,,,0.00865,0.00289,0.00291,0.00316,,,,,,,0.00774,0.00285,0.00287,0.00313,,,,,,,0.00402,0.00263,0.00265,0.00289,,,,,,,0.12646,0.18055,0.29518,0.71847,,,,,,,0.11768,0.16975,0.28212,0.69453,,,,,,,0.1217,0.18622,0.31,0.76526,,,,,,,0.13326,0.20057,0.33059,0.79581,,,,,,,0.10147,0.16347,0.2886,0.7248,,,,,,,0.10781,0.16581,0.28995,0.72519,,,,,,,0.10063,0.16078,0.28378,0.70755,,,,,,,0.11343,0.1783,0.30479,0.75197,,,,,,,0.09157,0.1552,0.27326,0.68119,,,, +Minivan,E15,2020,,,,0.00118,0.00201,0.00285,0.00571,,,,,,,0.00109,0.00184,0.0026,0.00514,,,,,,,0.00114,0.00195,0.00276,0.0055,,,,,,,0.00122,0.00208,0.00296,0.00597,,,,,,,0.00083,0.00138,0.0019,0.00356,,,,,,,0.00088,0.00147,0.00205,0.0039,,,,,,,0.00076,0.00126,0.00173,0.00322,,,,,,,0.00092,0.00155,0.00216,0.00417,,,,,,,0.00072,0.00119,0.00163,0.003,,,,,,,0.01138,0.00976,0.00969,0.01323,,,,,,,0.01028,0.00897,0.009,0.01232,,,,,,,0.01079,0.01,0.01004,0.01416,,,,,,,0.01187,0.01102,0.01104,0.0155,,,,,,,0.00749,0.00779,0.00811,0.01165,,,,,,,0.0081,0.00832,0.00861,0.01234,,,,,,,0.00739,0.0077,0.00803,0.01148,,,,,,,0.00883,0.0085,0.00868,0.01225,,,,,,,0.00738,0.00728,0.00752,0.01052,,,,,,,1.75346,2.70311,3.40415,5.23717,,,,,,,1.73504,2.69294,3.40028,5.23739,,,,,,,1.8221,2.98023,3.84322,6.16501,,,,,,,1.9638,3.22016,4.16746,6.64494,,,,,,,1.68648,2.87426,3.71799,5.95641,,,,,,,1.73449,2.95563,3.83734,6.18761,,,,,,,1.74446,2.95795,3.82139,6.10522,,,,,,,1.80599,2.96455,3.7956,6.01734,,,,,,,1.63703,2.67087,3.38976,5.31156,,,,,,,357.91079,360.37415,364.37202,397.59847,,,,,,,360.76828,362.99831,366.6542,399.45254,,,,,,,365.83607,368.21014,372.08895,405.66982,,,,,,,357.66181,360.05112,363.95662,397.00389,,,,,,,366.69938,368.12354,370.59162,401.61394,,,,,,,360.86399,362.51937,365.32828,396.56361,,,,,,,364.05649,365.39199,367.73176,398.33068,,,,,,,363.90252,365.67487,368.65588,400.42854,,,,,,,358.41105,359.98073,362.62781,393.36751,,,,,,,0.00591,0.00669,0.00786,0.0106,,,,,,,0.00592,0.00669,0.00786,0.01059,,,,,,,0.00602,0.00679,0.00797,0.0107,,,,,,,0.0058,0.00656,0.00772,0.01041,,,,,,,0.00599,0.00676,0.00793,0.01066,,,,,,,0.00586,0.00662,0.00779,0.01049,,,,,,,0.00591,0.00668,0.00785,0.01058,,,,,,,0.00597,0.00674,0.00792,0.01065,,,,,,,0.00601,0.00679,0.00798,0.01075,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01873,0.02159,0.02737,0.02737,,,,,,,0.01872,0.02158,0.02736,0.02736,,,,,,,0.01863,0.02148,0.02723,0.02723,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01865,0.0215,0.02725,0.02725,,,,,,,0.0187,0.02155,0.02732,0.02732,,,,,,,0.01874,0.0216,0.02738,0.02738,,,,,,,0.01878,0.02164,0.02744,0.02744,,,,,,,0.09268,0.15258,0.20516,0.28869,,,,,,,0.09124,0.15001,0.20209,0.28435,,,,,,,0.09213,0.16143,0.21602,0.3109,,,,,,,0.09704,0.17279,0.23109,0.3327,,,,,,,0.08183,0.14903,0.20103,0.29187,,,,,,,0.08636,0.15649,0.21065,0.30458,,,,,,,0.0838,0.15112,0.20417,0.29404,,,,,,,0.09474,0.16638,0.22324,0.31878,,,,,,,0.08605,0.14846,0.19968,0.28245,,,,,,,0.00236,0.00382,0.00507,0.00903,,,,,,,0.00227,0.00367,0.00484,0.00849,,,,,,,0.00231,0.00374,0.00496,0.0088,,,,,,,0.00238,0.00386,0.00515,0.00923,,,,,,,0.00203,0.00323,0.00418,0.00701,,,,,,,0.00206,0.00329,0.00429,0.00728,,,,,,,0.00194,0.00308,0.00396,0.00659,,,,,,,0.0021,0.00336,0.00439,0.00753,,,,,,,0.00187,0.00296,0.00381,0.00631,,,,,,,0.04595,0.04919,0.05208,0.0614,,,,,,,0.04711,0.05017,0.05285,0.06136,,,,,,,0.05126,0.05442,0.05722,0.06624,,,,,,,0.04318,0.04648,0.04946,0.05913,,,,,,,0.04967,0.05221,0.05429,0.06061,,,,,,,0.04546,0.04809,0.0503,0.05706,,,,,,,0.0454,0.04778,0.04972,0.05553,,,,,,,0.04787,0.05058,0.05289,0.06004,,,,,,,0.04711,0.0494,0.05124,0.05675,,,,,,,0.00982,0.01268,0.01524,0.02349,,,,,,,0.00979,0.01249,0.01486,0.02239,,,,,,,0.0104,0.0132,0.01568,0.02366,,,,,,,0.00952,0.01245,0.01508,0.02363,,,,,,,0.00962,0.01187,0.01371,0.0193,,,,,,,0.00917,0.01149,0.01344,0.01942,,,,,,,0.00892,0.01103,0.01275,0.01789,,,,,,,0.00955,0.01195,0.01399,0.02032,,,,,,,0.00902,0.01104,0.01267,0.01755,,,,,,,0.00243,0.00244,0.00247,0.0027,,,,,,,0.00245,0.00246,0.00249,0.00271,,,,,,,0.00248,0.0025,0.00252,0.00275,,,,,,,0.00242,0.00244,0.00247,0.00269,,,,,,,0.00249,0.0025,0.00251,0.00272,,,,,,,0.00245,0.00246,0.00248,0.00269,,,,,,,0.00247,0.00248,0.00249,0.0027,,,,,,,0.00243,0.00244,0.00246,0.00267,,,,,,,0.00225,0.00226,0.00227,0.00247,,,,,,,0.1078,0.15202,0.23173,0.55538,,,,,,,0.09925,0.14089,0.21806,0.5363,,,,,,,0.10524,0.1558,0.24132,0.58563,,,,,,,0.11342,0.16861,0.25857,0.60661,,,,,,,0.08173,0.12938,0.21272,0.55633,,,,,,,0.08456,0.13331,0.21649,0.5548,,,,,,,0.08029,0.12598,0.20676,0.54238,,,,,,,0.09531,0.14449,0.2298,0.57712,,,,,,,0.07898,0.12217,0.20051,0.5296,,, +Minivan,E15,2025,,,,,0.00078,0.00129,0.00182,0.00409,,,,,,,0.00071,0.00118,0.00166,0.0037,,,,,,,0.00075,0.00125,0.00176,0.00395,,,,,,,0.0008,0.00133,0.00189,0.00426,,,,,,,0.00054,0.00088,0.00122,0.00259,,,,,,,0.00058,0.00094,0.00131,0.00283,,,,,,,0.0005,0.00081,0.00111,0.00234,,,,,,,0.00061,0.00099,0.00138,0.00302,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00887,0.00699,0.00677,0.00997,,,,,,,0.00775,0.00621,0.00607,0.00912,,,,,,,0.00832,0.00693,0.00678,0.01054,,,,,,,0.00932,0.00774,0.00755,0.01162,,,,,,,0.00483,0.00457,0.0047,0.00803,,,,,,,0.00548,0.00506,0.00515,0.00867,,,,,,,0.00468,0.00445,0.00459,0.00786,,,,,,,0.00625,0.00543,0.00544,0.00875,,,,,,,0.0047,0.00426,0.00436,0.0072,,,,,,,1.15248,1.69392,2.15677,3.61217,,,,,,,1.10944,1.6495,2.10948,3.57126,,,,,,,1.17834,1.83578,2.39212,4.23238,,,,,,,1.28025,2.00064,2.61454,4.5877,,,,,,,0.98945,1.64607,2.16823,3.95008,,,,,,,1.03885,1.7203,2.27074,4.14298,,,,,,,1.02242,1.69536,2.23069,4.05113,,,,,,,1.109,1.75818,2.2836,4.05208,,,,,,,0.97386,1.5477,1.99585,3.52701,,,,,,,294.61925,296.12761,299.04954,334.68556,,,,,,,296.83595,298.13998,300.75261,335.99998,,,,,,,301.07455,302.49404,305.29706,341.35366,,,,,,,294.40087,295.84827,298.69212,334.16079,,,,,,,301.26286,301.86726,303.41114,336.99134,,,,,,,296.61122,297.42381,299.28242,333.01626,,,,,,,299.05874,299.5917,301.02822,334.17656,,,,,,,299.15832,300.06538,302.07148,336.35325,,,,,,,294.50739,295.24691,296.95909,330.1732,,,,,,,0.00595,0.00668,0.00783,0.01021,,,,,,,0.00596,0.00668,0.00783,0.0102,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00583,0.00655,0.00769,0.01004,,,,,,,0.00603,0.00675,0.0079,0.01028,,,,,,,0.0059,0.00661,0.00775,0.0101,,,,,,,0.00595,0.00667,0.00782,0.01019,,,,,,,0.00601,0.00673,0.00788,0.01027,,,,,,,0.00605,0.00678,0.00795,0.01036,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01875,0.02157,0.02737,0.02736,,,,,,,0.01875,0.02156,0.02736,0.02735,,,,,,,0.01866,0.02146,0.02723,0.02722,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01867,0.02148,0.02725,0.02724,,,,,,,0.01872,0.02153,0.02732,0.02731,,,,,,,0.01876,0.02158,0.02738,0.02737,,,,,,,0.0188,0.02162,0.02744,0.02743,,,,,,,0.05663,0.08559,0.11481,0.1948,,,,,,,0.05489,0.08308,0.11175,0.19066,,,,,,,0.05562,0.08876,0.11874,0.20917,,,,,,,0.05888,0.09531,0.12737,0.22478,,,,,,,0.04614,0.07771,0.10541,0.19136,,,,,,,0.04985,0.08304,0.11214,0.20164,,,,,,,0.04727,0.07898,0.10724,0.19274,,,,,,,0.05489,0.08883,0.11948,0.21116,,,,,,,0.04872,0.07823,0.10577,0.18514,,,,,,,0.00155,0.00246,0.00326,0.00651,,,,,,,0.0015,0.00236,0.00311,0.00614,,,,,,,0.00152,0.00241,0.00319,0.00635,,,,,,,0.00157,0.00248,0.00331,0.00663,,,,,,,0.00134,0.00208,0.0027,0.0051,,,,,,,0.00136,0.00212,0.00276,0.00529,,,,,,,0.00128,0.00198,0.00256,0.00479,,,,,,,0.00138,0.00217,0.00283,0.00547,,,,,,,0.00123,0.00191,0.00246,0.00461,,,,,,,0.04421,0.04621,0.04807,0.05565,,,,,,,0.04546,0.04734,0.04906,0.05605,,,,,,,0.04956,0.05151,0.05331,0.06067,,,,,,,0.04141,0.04346,0.04536,0.05316,,,,,,,0.04823,0.04981,0.05115,0.05649,,,,,,,0.04399,0.04562,0.04704,0.05272,,,,,,,0.04403,0.04551,0.04676,0.05168,,,,,,,0.04636,0.04804,0.04952,0.05549,,,,,,,0.0458,0.04722,0.04841,0.05312,,,,,,,0.00828,0.01005,0.01169,0.0184,,,,,,,0.00832,0.00999,0.01151,0.0177,,,,,,,0.0089,0.01063,0.01222,0.01873,,,,,,,0.00796,0.00977,0.01145,0.01835,,,,,,,0.00835,0.00974,0.01093,0.01566,,,,,,,0.00787,0.00931,0.01056,0.01558,,,,,,,0.00771,0.00902,0.01013,0.01448,,,,,,,0.00822,0.0097,0.01102,0.01629,,,,,,,0.00786,0.00912,0.01017,0.01433,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00201,0.00202,0.00204,0.00228,,,,,,,0.00204,0.00205,0.00207,0.00231,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00204,0.00205,0.00206,0.00228,,,,,,,0.00201,0.00202,0.00203,0.00226,,,,,,,0.00203,0.00203,0.00204,0.00227,,,,,,,0.002,0.002,0.00202,0.00225,,,,,,,0.00185,0.00185,0.00186,0.00207,,,,,,,0.0902,0.11755,0.17575,0.47272,,,,,,,0.08107,0.10586,0.16125,0.45355,,,,,,,0.08724,0.11822,0.18025,0.49628,,,,,,,0.09508,0.12933,0.19452,0.51235,,,,,,,0.06082,0.08748,0.14504,0.46043,,,,,,,0.0647,0.09256,0.15049,0.46114,,,,,,,0.05894,0.08349,0.13828,0.44515,,,,,,,0.07454,0.10311,0.16333,0.4808,,,,,,,0.05812,0.0819,0.13602,0.43913,, +Minivan,E15,2030,,,,,,0.00077,0.00128,0.00181,0.00333,,,,,,,0.00071,0.00118,0.00165,0.00301,,,,,,,0.00075,0.00124,0.00175,0.00321,,,,,,,0.0008,0.00133,0.00187,0.00346,,,,,,,0.00054,0.00088,0.00121,0.00212,,,,,,,0.00058,0.00094,0.0013,0.00231,,,,,,,0.0005,0.00081,0.0011,0.00192,,,,,,,0.0006,0.00099,0.00138,0.00246,,,,,,,0.00047,0.00076,0.00104,0.0018,,,,,,,0.00817,0.00624,0.00605,0.00825,,,,,,,0.00704,0.00546,0.00536,0.0074,,,,,,,0.00762,0.0061,0.00599,0.00846,,,,,,,0.00858,0.00684,0.00669,0.00939,,,,,,,0.0041,0.00371,0.00386,0.00588,,,,,,,0.00475,0.00419,0.0043,0.00646,,,,,,,0.00393,0.00358,0.00375,0.00572,,,,,,,0.00552,0.00461,0.00464,0.00674,,,,,,,0.00396,0.00347,0.00359,0.00532,,,,,,,1.01096,1.48514,1.9055,2.83083,,,,,,,0.96248,1.43428,1.84919,2.76397,,,,,,,1.02638,1.59754,2.09654,3.24715,,,,,,,1.11805,1.74459,2.29296,3.53662,,,,,,,0.8264,1.39225,1.85226,2.91835,,,,,,,0.87552,1.46364,1.94975,3.08201,,,,,,,0.85317,1.43338,1.90441,2.9962,,,,,,,0.945,1.50815,1.97656,3.0563,,,,,,,0.81791,1.31527,1.71574,2.63365,,,,,,,269.5982,272.0849,276.19714,299.20659,,,,,,,271.5686,273.87519,277.69925,300.24733,,,,,,,275.47606,277.90493,281.93183,305.10027,,,,,,,269.39329,271.82346,275.86215,298.72625,,,,,,,275.42421,277.10159,279.91653,300.68076,,,,,,,271.23305,273.08524,276.1829,297.27847,,,,,,,273.39504,274.99885,277.70142,298.13726,,,,,,,273.58337,275.53222,278.7825,300.30712,,,,,,,269.27018,271.04618,273.98937,294.64918,,,,,,,0.00595,0.00665,0.00782,0.01018,,,,,,,0.00596,0.00666,0.00782,0.01017,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00583,0.00653,0.00768,0.01,,,,,,,0.00603,0.00673,0.00789,0.01024,,,,,,,0.0059,0.00659,0.00775,0.01007,,,,,,,0.00594,0.00665,0.00781,0.01016,,,,,,,0.006,0.00671,0.00788,0.01023,,,,,,,0.00605,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01876,0.02157,0.02736,0.02736,,,,,,,0.01876,0.02156,0.02735,0.02735,,,,,,,0.01867,0.02146,0.02722,0.02722,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01868,0.02148,0.02724,0.02724,,,,,,,0.01873,0.02153,0.02731,0.02731,,,,,,,0.01877,0.02158,0.02737,0.02737,,,,,,,0.01881,0.02162,0.02743,0.02743,,,,,,,0.04553,0.06755,0.09295,0.14539,,,,,,,0.04368,0.06505,0.0899,0.14125,,,,,,,0.04417,0.06902,0.09503,0.15349,,,,,,,0.04675,0.07404,0.10183,0.16487,,,,,,,0.03498,0.05837,0.08215,0.13615,,,,,,,0.03837,0.06301,0.08806,0.14477,,,,,,,0.03587,0.05936,0.08356,0.1374,,,,,,,0.04242,0.06777,0.09424,0.15254,,,,,,,0.03716,0.05932,0.08311,0.13321,,,,,,,0.00155,0.00245,0.00325,0.00535,,,,,,,0.00149,0.00235,0.0031,0.00505,,,,,,,0.00152,0.0024,0.00317,0.00522,,,,,,,0.00156,0.00248,0.00328,0.00545,,,,,,,0.00134,0.00208,0.00268,0.00422,,,,,,,0.00136,0.00212,0.00275,0.00437,,,,,,,0.00128,0.00198,0.00254,0.00397,,,,,,,0.00138,0.00216,0.00282,0.0045,,,,,,,0.00123,0.00191,0.00246,0.00381,,,,,,,0.0442,0.0462,0.04803,0.05298,,,,,,,0.04545,0.04733,0.04903,0.05358,,,,,,,0.04955,0.0515,0.05327,0.05807,,,,,,,0.04141,0.04344,0.04531,0.05042,,,,,,,0.04823,0.0498,0.05112,0.05456,,,,,,,0.04399,0.04561,0.04701,0.05068,,,,,,,0.04403,0.0455,0.04673,0.04989,,,,,,,0.04635,0.04803,0.0495,0.05335,,,,,,,0.0458,0.04722,0.0484,0.05139,,,,,,,0.00827,0.01004,0.01166,0.01603,,,,,,,0.00832,0.00998,0.01148,0.01551,,,,,,,0.00889,0.01061,0.01219,0.01643,,,,,,,0.00795,0.00975,0.01141,0.01593,,,,,,,0.00835,0.00973,0.01091,0.01395,,,,,,,0.00786,0.0093,0.01054,0.01378,,,,,,,0.00771,0.00902,0.0101,0.0129,,,,,,,0.00821,0.0097,0.01099,0.0144,,,,,,,0.00786,0.00911,0.01016,0.01281,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00184,0.00186,0.00188,0.00204,,,,,,,0.00187,0.00188,0.00191,0.00207,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00187,0.00188,0.0019,0.00204,,,,,,,0.00184,0.00185,0.00187,0.00202,,,,,,,0.00185,0.00186,0.00188,0.00202,,,,,,,0.00183,0.00184,0.00186,0.00201,,,,,,,0.00169,0.0017,0.00172,0.00185,,,,,,,0.08535,0.10912,0.16409,0.41674,,,,,,,0.07616,0.09743,0.14952,0.39681,,,,,,,0.08228,0.10896,0.16741,0.43357,,,,,,,0.08998,0.11956,0.18078,0.44773,,,,,,,0.05548,0.0777,0.13108,0.39244,,,,,,,0.0595,0.08288,0.13667,0.39452,,,,,,,0.05354,0.0737,0.12423,0.37695,,,,,,,0.06908,0.09346,0.14947,0.41486,,,,,,,0.05274,0.07256,0.12286,0.37552, +Minivan,E15,2035,,,,,,,0.00077,0.00127,0.00181,0.00306,,,,,,,0.00071,0.00117,0.00165,0.00277,,,,,,,0.00075,0.00123,0.00175,0.00296,,,,,,,0.0008,0.00132,0.00188,0.00319,,,,,,,0.00054,0.00087,0.00121,0.00196,,,,,,,0.00057,0.00094,0.0013,0.00213,,,,,,,0.0005,0.0008,0.0011,0.00178,,,,,,,0.0006,0.00098,0.00138,0.00227,,,,,,,0.00047,0.00076,0.00104,0.00166,,,,,,,0.00814,0.00625,0.00605,0.00763,,,,,,,0.00702,0.00547,0.00535,0.00677,,,,,,,0.0076,0.00611,0.00598,0.00767,,,,,,,0.00856,0.00685,0.00668,0.00856,,,,,,,0.00409,0.00372,0.00386,0.00507,,,,,,,0.00474,0.0042,0.00429,0.00562,,,,,,,0.00392,0.00358,0.00374,0.00491,,,,,,,0.00551,0.00462,0.00463,0.00599,,,,,,,0.00395,0.00347,0.00359,0.00463,,,,,,,1.00827,1.48136,1.90637,2.57095,,,,,,,0.96,1.42993,1.8505,2.4948,,,,,,,1.02356,1.59198,2.0985,2.9105,,,,,,,1.11473,1.73644,2.29641,3.17715,,,,,,,0.82444,1.38577,1.85511,2.56501,,,,,,,0.87335,1.45698,1.95265,2.71712,,,,,,,0.85112,1.42624,1.90762,2.63519,,,,,,,0.94269,1.50316,1.9783,2.71728,,,,,,,0.81626,1.31318,1.71589,2.33089,,,,,,,269.51136,271.99405,276.18109,287.3431,,,,,,,271.48589,273.78452,277.68429,288.29897,,,,,,,275.38988,277.81231,281.91605,292.98124,,,,,,,269.3071,271.73283,275.84623,286.87843,,,,,,,275.35637,277.01217,279.90494,288.56819,,,,,,,271.16129,272.9964,276.17064,285.35007,,,,,,,273.32909,274.91027,277.69055,286.11666,,,,,,,273.50926,275.44215,278.76945,288.27332,,,,,,,269.20201,270.9587,273.97769,282.79607,,,,,,,0.00593,0.00665,0.00782,0.01018,,,,,,,0.00594,0.00665,0.00782,0.01016,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.00581,0.00652,0.00767,0.01,,,,,,,0.00601,0.00672,0.00789,0.01024,,,,,,,0.00588,0.00659,0.00774,0.01007,,,,,,,0.00593,0.00664,0.00781,0.01016,,,,,,,0.00598,0.0067,0.00787,0.01023,,,,,,,0.00603,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01876,0.02156,0.02736,0.02736,,,,,,,0.01875,0.02155,0.02735,0.02735,,,,,,,0.01866,0.02144,0.02722,0.02722,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01868,0.02146,0.02724,0.02724,,,,,,,0.01873,0.02152,0.02731,0.02731,,,,,,,0.01877,0.02156,0.02737,0.02737,,,,,,,0.01881,0.02161,0.02743,0.02743,,,,,,,0.04539,0.06732,0.093,0.12719,,,,,,,0.04354,0.06483,0.08994,0.12304,,,,,,,0.04403,0.06877,0.09508,0.1325,,,,,,,0.0466,0.07375,0.10191,0.14217,,,,,,,0.03488,0.05817,0.08218,0.1153,,,,,,,0.03826,0.06279,0.0881,0.12324,,,,,,,0.03577,0.05913,0.08362,0.11658,,,,,,,0.0423,0.06758,0.09426,0.13053,,,,,,,0.03707,0.0592,0.08309,0.11393,,,,,,,0.00155,0.00244,0.00325,0.00495,,,,,,,0.00149,0.00234,0.0031,0.00468,,,,,,,0.00152,0.00239,0.00318,0.00483,,,,,,,0.00156,0.00246,0.00329,0.00504,,,,,,,0.00133,0.00207,0.00269,0.00391,,,,,,,0.00135,0.00211,0.00275,0.00405,,,,,,,0.00127,0.00197,0.00255,0.00368,,,,,,,0.00138,0.00215,0.00282,0.00417,,,,,,,0.00123,0.00191,0.00246,0.00353,,,,,,,0.0442,0.04617,0.04804,0.05206,,,,,,,0.04544,0.04731,0.04904,0.05273,,,,,,,0.04954,0.05147,0.05329,0.05718,,,,,,,0.0414,0.0434,0.04533,0.04949,,,,,,,0.04822,0.04978,0.05113,0.05389,,,,,,,0.04398,0.04559,0.04702,0.04997,,,,,,,0.04402,0.04548,0.04674,0.04928,,,,,,,0.04635,0.04801,0.04951,0.05261,,,,,,,0.0458,0.04721,0.0484,0.05079,,,,,,,0.00827,0.01001,0.01167,0.01522,,,,,,,0.00831,0.00996,0.01149,0.01475,,,,,,,0.00889,0.01059,0.0122,0.01564,,,,,,,0.00795,0.00972,0.01142,0.01511,,,,,,,0.00834,0.00972,0.01092,0.01336,,,,,,,0.00786,0.00928,0.01055,0.01316,,,,,,,0.0077,0.00899,0.01011,0.01236,,,,,,,0.00821,0.00968,0.011,0.01375,,,,,,,0.00786,0.00911,0.01016,0.01227,,,,,,,0.00183,0.00184,0.00187,0.00195,,,,,,,0.00184,0.00186,0.00188,0.00195,,,,,,,0.00187,0.00188,0.00191,0.00199,,,,,,,0.00183,0.00184,0.00187,0.00194,,,,,,,0.00187,0.00188,0.0019,0.00196,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00185,0.00186,0.00188,0.00194,,,,,,,0.00183,0.00184,0.00186,0.00193,,,,,,,0.00169,0.0017,0.00172,0.00177,,,,,,,0.08506,0.10909,0.16395,0.39675,,,,,,,0.07591,0.09738,0.1494,0.3765,,,,,,,0.08201,0.10895,0.16724,0.41071,,,,,,,0.08966,0.11943,0.18069,0.42419,,,,,,,0.05529,0.07751,0.13108,0.36767,,,,,,,0.0593,0.08272,0.13664,0.37013,,,,,,,0.05335,0.07347,0.12425,0.35215,,,,,,,0.0688,0.09306,0.14969,0.39082,,,,,,,0.05257,0.07245,0.12281,0.35259 +Minivan,E15,2040,,,,,,,,0.00077,0.00128,0.00182,,,,,,,,0.00071,0.00117,0.00166,,,,,,,,0.00074,0.00124,0.00176,,,,,,,,0.00079,0.00132,0.00189,,,,,,,,0.00054,0.00088,0.00121,,,,,,,,0.00057,0.00094,0.00131,,,,,,,,0.00049,0.0008,0.00111,,,,,,,,0.0006,0.00099,0.00138,,,,,,,,0.00047,0.00076,0.00104,,,,,,,,0.00815,0.00624,0.00604,,,,,,,,0.00703,0.00546,0.00535,,,,,,,,0.00762,0.0061,0.00597,,,,,,,,0.00857,0.00684,0.00667,,,,,,,,0.00409,0.00371,0.00385,,,,,,,,0.00474,0.00419,0.00429,,,,,,,,0.00392,0.00358,0.00374,,,,,,,,0.00551,0.00461,0.00463,,,,,,,,0.00394,0.00347,0.00358,,,,,,,,1.0059,1.48211,1.90802,,,,,,,,0.95725,1.43101,1.85257,,,,,,,,1.02039,1.59357,2.10146,,,,,,,,1.11006,1.73915,2.30119,,,,,,,,0.82054,1.38802,1.85882,,,,,,,,0.86941,1.45927,1.95647,,,,,,,,0.84681,1.42878,1.91176,,,,,,,,0.93958,1.50458,1.98083,,,,,,,,0.81481,1.31336,1.71645,,,,,,,,269.41499,271.97422,276.17231,,,,,,,,271.38948,273.76527,277.67564,,,,,,,,275.29168,277.79257,281.90715,,,,,,,,269.21099,271.71322,275.83759,,,,,,,,275.26015,276.99518,279.89591,,,,,,,,271.06602,272.97883,276.16184,,,,,,,,273.23343,274.89379,277.68161,,,,,,,,273.41267,275.42428,278.76077,,,,,,,,269.10772,270.94171,273.96907,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.00581,0.00652,0.00767,,,,,,,,0.006,0.00672,0.00789,,,,,,,,0.00587,0.00658,0.00774,,,,,,,,0.00592,0.00664,0.00781,,,,,,,,0.00598,0.0067,0.00787,,,,,,,,0.00602,0.00675,0.00794,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01875,0.02156,0.02736,,,,,,,,0.01874,0.02155,0.02735,,,,,,,,0.01865,0.02145,0.02722,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01867,0.02146,0.02724,,,,,,,,0.01872,0.02152,0.02731,,,,,,,,0.01876,0.02157,0.02737,,,,,,,,0.01879,0.02161,0.02743,,,,,,,,0.04523,0.06735,0.09309,,,,,,,,0.0434,0.06486,0.09003,,,,,,,,0.04387,0.06881,0.09518,,,,,,,,0.04641,0.0738,0.10204,,,,,,,,0.03477,0.0582,0.08226,,,,,,,,0.03813,0.06282,0.08818,,,,,,,,0.03563,0.05917,0.08371,,,,,,,,0.04218,0.06759,0.09432,,,,,,,,0.037,0.05918,0.0831,,,,,,,,0.00154,0.00244,0.00326,,,,,,,,0.00148,0.00235,0.00311,,,,,,,,0.00151,0.00239,0.00319,,,,,,,,0.00155,0.00247,0.0033,,,,,,,,0.00133,0.00207,0.00269,,,,,,,,0.00135,0.00211,0.00276,,,,,,,,0.00127,0.00197,0.00255,,,,,,,,0.00137,0.00216,0.00283,,,,,,,,0.00123,0.00191,0.00246,,,,,,,,0.04418,0.04618,0.04806,,,,,,,,0.04543,0.04731,0.04905,,,,,,,,0.04953,0.05148,0.0533,,,,,,,,0.04137,0.04341,0.04535,,,,,,,,0.04821,0.04978,0.05114,,,,,,,,0.04397,0.0456,0.04703,,,,,,,,0.044,0.04549,0.04675,,,,,,,,0.04634,0.04802,0.04952,,,,,,,,0.04579,0.04721,0.04841,,,,,,,,0.00825,0.01002,0.01168,,,,,,,,0.00829,0.00996,0.0115,,,,,,,,0.00887,0.0106,0.01221,,,,,,,,0.00793,0.00973,0.01144,,,,,,,,0.00833,0.00972,0.01093,,,,,,,,0.00784,0.00928,0.01056,,,,,,,,0.00769,0.009,0.01012,,,,,,,,0.0082,0.00968,0.01101,,,,,,,,0.00785,0.00911,0.01016,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00184,0.00186,0.00188,,,,,,,,0.00187,0.00188,0.00191,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00187,0.00188,0.0019,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00185,0.00186,0.00188,,,,,,,,0.00183,0.00184,0.00186,,,,,,,,0.00169,0.0017,0.00172,,,,,,,,0.08507,0.10901,0.16393,,,,,,,,0.07589,0.09732,0.14939,,,,,,,,0.08203,0.10887,0.16722,,,,,,,,0.08961,0.1194,0.18077,,,,,,,,0.05518,0.07755,0.13122,,,,,,,,0.05922,0.08274,0.13676,,,,,,,,0.05323,0.07353,0.12441,,,,,,,,0.06856,0.09331,0.14991,,,,,,,,0.05252,0.07246,0.12287 +Minivan,E15,2045,,,,,,,,,0.00077,0.00128,,,,,,,,,0.00071,0.00117,,,,,,,,,0.00074,0.00124,,,,,,,,,0.00079,0.00132,,,,,,,,,0.00054,0.00088,,,,,,,,,0.00057,0.00094,,,,,,,,,0.0005,0.00081,,,,,,,,,0.0006,0.00099,,,,,,,,,0.00047,0.00076,,,,,,,,,0.00814,0.00624,,,,,,,,,0.00702,0.00546,,,,,,,,,0.0076,0.00609,,,,,,,,,0.00856,0.00683,,,,,,,,,0.00408,0.00371,,,,,,,,,0.00474,0.00418,,,,,,,,,0.00391,0.00358,,,,,,,,,0.0055,0.00461,,,,,,,,,0.00394,0.00347,,,,,,,,,1.00632,1.48336,,,,,,,,,0.95789,1.43258,,,,,,,,,1.02116,1.59572,,,,,,,,,1.11145,1.74264,,,,,,,,,0.82184,1.39076,,,,,,,,,0.87069,1.46206,,,,,,,,,0.84829,1.43185,,,,,,,,,0.94041,1.50646,,,,,,,,,0.81497,1.31376,,,,,,,,,269.40495,271.97292,,,,,,,,,271.38003,273.76412,,,,,,,,,275.28172,277.79116,,,,,,,,,269.20123,271.71197,,,,,,,,,275.25249,276.99411,,,,,,,,,271.05778,272.97774,,,,,,,,,273.22644,274.89273,,,,,,,,,273.40433,275.42322,,,,,,,,,269.09989,270.94038,,,,,,,,,0.00592,0.00665,,,,,,,,,0.00593,0.00665,,,,,,,,,0.00603,0.00675,,,,,,,,,0.0058,0.00652,,,,,,,,,0.006,0.00672,,,,,,,,,0.00587,0.00658,,,,,,,,,0.00592,0.00664,,,,,,,,,0.00598,0.0067,,,,,,,,,0.00602,0.00675,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01875,0.02155,,,,,,,,,0.01874,0.02155,,,,,,,,,0.01865,0.02144,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01867,0.02146,,,,,,,,,0.01872,0.02152,,,,,,,,,0.01876,0.02156,,,,,,,,,0.01879,0.02161,,,,,,,,,0.04526,0.06741,,,,,,,,,0.04342,0.06492,,,,,,,,,0.0439,0.06889,,,,,,,,,0.04646,0.0739,,,,,,,,,0.03479,0.05825,,,,,,,,,0.03815,0.06288,,,,,,,,,0.03566,0.05923,,,,,,,,,0.0422,0.06764,,,,,,,,,0.03699,0.05919,,,,,,,,,0.00154,0.00245,,,,,,,,,0.00149,0.00235,,,,,,,,,0.00151,0.0024,,,,,,,,,0.00155,0.00247,,,,,,,,,0.00133,0.00208,,,,,,,,,0.00135,0.00211,,,,,,,,,0.00127,0.00198,,,,,,,,,0.00138,0.00216,,,,,,,,,0.00123,0.00191,,,,,,,,,0.04418,0.04619,,,,,,,,,0.04543,0.04732,,,,,,,,,0.04953,0.05149,,,,,,,,,0.04138,0.04343,,,,,,,,,0.04821,0.04979,,,,,,,,,0.04397,0.0456,,,,,,,,,0.04401,0.0455,,,,,,,,,0.04634,0.04802,,,,,,,,,0.04579,0.04721,,,,,,,,,0.00826,0.01003,,,,,,,,,0.0083,0.00997,,,,,,,,,0.00888,0.01061,,,,,,,,,0.00793,0.00974,,,,,,,,,0.00833,0.00973,,,,,,,,,0.00785,0.00929,,,,,,,,,0.0077,0.00901,,,,,,,,,0.0082,0.00969,,,,,,,,,0.00785,0.00911,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00184,0.00186,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00185,0.00186,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00169,0.0017,,,,,,,,,0.085,0.10896,,,,,,,,,0.07584,0.09728,,,,,,,,,0.08196,0.10881,,,,,,,,,0.08956,0.1194,,,,,,,,,0.05519,0.0776,,,,,,,,,0.05922,0.08277,,,,,,,,,0.05325,0.0736,,,,,,,,,0.0687,0.09338,,,,,,,,,0.05251,0.07246 +Minivan,E15,2050,,,,,,,,,,0.00077,,,,,,,,,,0.00071,,,,,,,,,,0.00075,,,,,,,,,,0.00079,,,,,,,,,,0.00054,,,,,,,,,,0.00057,,,,,,,,,,0.0005,,,,,,,,,,0.0006,,,,,,,,,,0.00047,,,,,,,,,,0.00814,,,,,,,,,,0.00701,,,,,,,,,,0.00759,,,,,,,,,,0.00855,,,,,,,,,,0.00408,,,,,,,,,,0.00473,,,,,,,,,,0.00391,,,,,,,,,,0.0055,,,,,,,,,,0.00394,,,,,,,,,,1.00707,,,,,,,,,,0.95886,,,,,,,,,,1.02232,,,,,,,,,,1.11338,,,,,,,,,,0.82345,,,,,,,,,,0.8723,,,,,,,,,,0.85011,,,,,,,,,,0.94156,,,,,,,,,,0.81527,,,,,,,,,,269.4052,,,,,,,,,,271.38023,,,,,,,,,,275.28184,,,,,,,,,,269.20133,,,,,,,,,,275.2527,,,,,,,,,,271.05795,,,,,,,,,,273.22647,,,,,,,,,,273.40459,,,,,,,,,,269.10001,,,,,,,,,,0.00592,,,,,,,,,,0.00593,,,,,,,,,,0.00603,,,,,,,,,,0.0058,,,,,,,,,,0.006,,,,,,,,,,0.00587,,,,,,,,,,0.00592,,,,,,,,,,0.00598,,,,,,,,,,0.00602,,,,,,,,,,0.01873,,,,,,,,,,0.01875,,,,,,,,,,0.01874,,,,,,,,,,0.01865,,,,,,,,,,0.01873,,,,,,,,,,0.01867,,,,,,,,,,0.01872,,,,,,,,,,0.01876,,,,,,,,,,0.01879,,,,,,,,,,0.04531,,,,,,,,,,0.04347,,,,,,,,,,0.04396,,,,,,,,,,0.04653,,,,,,,,,,0.03482,,,,,,,,,,0.03819,,,,,,,,,,0.03571,,,,,,,,,,0.04223,,,,,,,,,,0.037,,,,,,,,,,0.00154,,,,,,,,,,0.00149,,,,,,,,,,0.00151,,,,,,,,,,0.00156,,,,,,,,,,0.00133,,,,,,,,,,0.00135,,,,,,,,,,0.00127,,,,,,,,,,0.00138,,,,,,,,,,0.00123,,,,,,,,,,0.04419,,,,,,,,,,0.04544,,,,,,,,,,0.04954,,,,,,,,,,0.04139,,,,,,,,,,0.04822,,,,,,,,,,0.04398,,,,,,,,,,0.04402,,,,,,,,,,0.04634,,,,,,,,,,0.04579,,,,,,,,,,0.00826,,,,,,,,,,0.0083,,,,,,,,,,0.00888,,,,,,,,,,0.00794,,,,,,,,,,0.00834,,,,,,,,,,0.00785,,,,,,,,,,0.0077,,,,,,,,,,0.0082,,,,,,,,,,0.00785,,,,,,,,,,0.00183,,,,,,,,,,0.00184,,,,,,,,,,0.00187,,,,,,,,,,0.00183,,,,,,,,,,0.00187,,,,,,,,,,0.00184,,,,,,,,,,0.00185,,,,,,,,,,0.00183,,,,,,,,,,0.00169,,,,,,,,,,0.08496,,,,,,,,,,0.07582,,,,,,,,,,0.08192,,,,,,,,,,0.08956,,,,,,,,,,0.05523,,,,,,,,,,0.05924,,,,,,,,,,0.0533,,,,,,,,,,0.06876,,,,,,,,,,0.05252 +Minivan,E85,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,E85,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,E85,2000,,0.00889,0.01362,,,,,,,,,0.00762,0.01164,,,,,,,,,0.00855,0.01314,,,,,,,,,0.0095,0.01463,,,,,,,,,0.00425,0.00642,,,,,,,,,0.00503,0.00796,,,,,,,,,0.00408,0.00613,,,,,,,,,0.0059,0.00897,,,,,,,,,0.00412,0.00618,,,,,,,,,0.17182,0.18842,,,,,,,,,0.16552,0.18484,,,,,,,,,0.1961,0.21682,,,,,,,,,0.20436,0.2246,,,,,,,,,0.17747,0.19866,,,,,,,,,0.18693,0.20742,,,,,,,,,0.18041,0.19545,,,,,,,,,0.17838,0.19643,,,,,,,,,0.15699,0.17386,,,,,,,,,15.56429,19.64453,,,,,,,,,15.25543,19.51119,,,,,,,,,17.46805,22.20168,,,,,,,,,18.48392,23.3484,,,,,,,,,16.56157,21.15178,,,,,,,,,17.20629,21.99701,,,,,,,,,17.22871,21.38882,,,,,,,,,16.43062,20.75712,,,,,,,,,14.21839,18.05726,,,,,,,,,522.00035,529.80963,,,,,,,,,526.0408,533.28548,,,,,,,,,533.75577,541.37839,,,,,,,,,521.323,528.94694,,,,,,,,,534.22176,539.49484,,,,,,,,,525.64348,533.28176,,,,,,,,,530.01657,535.05893,,,,,,,,,530.2981,536.42231,,,,,,,,,522.28412,527.88262,,,,,,,,,0.04692,0.05603,,,,,,,,,0.04705,0.05612,,,,,,,,,0.04796,0.05706,,,,,,,,,0.0459,0.05489,,,,,,,,,0.04771,0.05679,,,,,,,,,0.04654,0.05557,,,,,,,,,0.04691,0.05599,,,,,,,,,0.04745,0.05656,,,,,,,,,0.04777,0.05698,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08204,0.08205,,,,,,,,,0.08202,0.08202,,,,,,,,,0.0816,0.0816,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08168,0.08168,,,,,,,,,0.08189,0.0819,,,,,,,,,0.08207,0.08208,,,,,,,,,0.08225,0.08226,,,,,,,,,2.04777,2.49274,,,,,,,,,2.02209,2.4919,,,,,,,,,2.26042,2.76094,,,,,,,,,2.34025,2.84613,,,,,,,,,2.20559,2.7158,,,,,,,,,2.26855,2.76316,,,,,,,,,2.24616,2.69524,,,,,,,,,2.33326,2.81716,,,,,,,,,2.09487,2.54811,,,,,,,,,0.01893,0.0268,,,,,,,,,0.01655,0.02337,,,,,,,,,0.01794,0.02545,,,,,,,,,0.01963,0.02791,,,,,,,,,0.00992,0.01387,,,,,,,,,0.01141,0.01662,,,,,,,,,0.00975,0.01359,,,,,,,,,0.01316,0.01851,,,,,,,,,0.01,0.01392,,,,,,,,,0.08133,0.09903,,,,,,,,,0.07751,0.09277,,,,,,,,,0.08476,0.10171,,,,,,,,,0.08022,0.09898,,,,,,,,,0.06632,0.07501,,,,,,,,,0.06525,0.07698,,,,,,,,,0.0618,0.07021,,,,,,,,,0.07134,0.08323,,,,,,,,,0.06415,0.07268,,,,,,,,,0.04113,0.05679,,,,,,,,,0.03669,0.05018,,,,,,,,,0.04004,0.05504,,,,,,,,,0.04231,0.0589,,,,,,,,,0.02436,0.03204,,,,,,,,,0.02669,0.03692,,,,,,,,,0.02345,0.03088,,,,,,,,,0.03032,0.04085,,,,,,,,,0.0241,0.03165,,,,,,,,,0.01709,0.0153,,,,,,,,,0.01722,0.0154,,,,,,,,,0.01747,0.01563,,,,,,,,,0.01707,0.01527,,,,,,,,,0.01749,0.01558,,,,,,,,,0.01721,0.0154,,,,,,,,,0.01736,0.01545,,,,,,,,,0.01736,0.01549,,,,,,,,,0.0171,0.01524,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,, +Minivan,E85,2005,,0.00381,0.00566,0.01003,,,,,,,,0.00332,0.00491,0.00864,,,,,,,,0.0037,0.00551,0.00974,,,,,,,,0.00405,0.00605,0.01077,,,,,,,,0.00201,0.00295,0.005,,,,,,,,0.0023,0.00352,0.00582,,,,,,,,0.00194,0.00283,0.00478,,,,,,,,0.00265,0.00391,0.00677,,,,,,,,0.00196,0.00286,0.00481,,,,,,,,0.07179,0.06124,0.07902,,,,,,,,0.06595,0.05817,0.07554,,,,,,,,0.07806,0.06843,0.0921,,,,,,,,0.08217,0.07195,0.09618,,,,,,,,0.05837,0.05494,0.07668,,,,,,,,0.06404,0.05964,0.08189,,,,,,,,0.05849,0.05378,0.07482,,,,,,,,0.06453,0.05775,0.07821,,,,,,,,0.05212,0.04792,0.06436,,,,,,,,6.13917,7.94899,11.7889,,,,,,,,6.00238,7.96301,11.75002,,,,,,,,6.74365,9.11337,13.75788,,,,,,,,7.08738,9.59407,14.42737,,,,,,,,6.59948,9.04772,13.39198,,,,,,,,6.73061,9.2748,13.71001,,,,,,,,6.87116,9.18305,13.52869,,,,,,,,6.54762,8.7146,12.8947,,,,,,,,5.83646,7.71253,11.19115,,,,,,,,541.28764,547.15975,553.84105,,,,,,,,545.81402,551.26886,557.22268,,,,,,,,553.3612,559.0968,565.53617,,,,,,,,540.86207,546.6028,553.06829,,,,,,,,555.47426,559.47197,562.90946,,,,,,,,546.40218,552.63369,554.9548,,,,,,,,551.4876,555.318,558.46236,,,,,,,,550.94283,555.57008,560.08848,,,,,,,,542.94525,547.17212,551.00402,,,,,,,,0.00964,0.01141,0.02192,,,,,,,,0.00965,0.01141,0.02191,,,,,,,,0.0098,0.01157,0.0222,,,,,,,,0.00945,0.0112,0.02152,,,,,,,,0.00976,0.01152,0.02211,,,,,,,,0.00955,0.0113,0.0217,,,,,,,,0.00963,0.0114,0.02189,,,,,,,,0.00972,0.01149,0.02207,,,,,,,,0.0098,0.01159,0.02225,,,,,,,,0.02682,0.03359,0.03979,,,,,,,,0.02685,0.03363,0.03984,,,,,,,,0.02685,0.03362,0.03983,,,,,,,,0.02671,0.03345,0.03962,,,,,,,,0.02683,0.03359,0.03979,,,,,,,,0.02674,0.03348,0.03966,,,,,,,,0.0268,0.03357,0.03976,,,,,,,,0.02686,0.03364,0.03985,,,,,,,,0.02692,0.03372,0.03994,,,,,,,,0.87815,1.17316,1.22709,,,,,,,,0.85445,1.16929,1.22046,,,,,,,,0.96182,1.29403,1.3789,,,,,,,,1.00781,1.3525,1.43637,,,,,,,,0.92802,1.26295,1.35107,,,,,,,,0.96398,1.29661,1.38038,,,,,,,,0.95272,1.2626,1.33827,,,,,,,,0.99878,1.32895,1.38996,,,,,,,,0.89553,1.19789,1.24233,,,,,,,,0.0082,0.01119,0.01829,,,,,,,,0.00733,0.00999,0.01617,,,,,,,,0.00791,0.01081,0.01761,,,,,,,,0.00844,0.01157,0.01904,,,,,,,,0.0049,0.00669,0.01039,,,,,,,,0.00542,0.0076,0.01165,,,,,,,,0.00482,0.00656,0.01016,,,,,,,,0.00608,0.0083,0.01321,,,,,,,,0.00493,0.00671,0.01038,,,,,,,,0.05834,0.06511,0.08105,,,,,,,,0.0578,0.06379,0.07759,,,,,,,,0.06317,0.06976,0.08507,,,,,,,,0.05612,0.06326,0.08015,,,,,,,,0.05567,0.05957,0.06767,,,,,,,,0.0525,0.05751,0.06625,,,,,,,,0.05139,0.05518,0.06302,,,,,,,,0.05626,0.06118,0.07206,,,,,,,,0.05349,0.05733,0.06528,,,,,,,,0.02078,0.02678,0.04088,,,,,,,,0.01925,0.02455,0.03676,,,,,,,,0.02094,0.02677,0.04032,,,,,,,,0.02098,0.0273,0.04224,,,,,,,,0.01493,0.01838,0.02555,,,,,,,,0.0154,0.01969,0.02756,,,,,,,,0.01423,0.01758,0.02452,,,,,,,,0.01698,0.02133,0.03096,,,,,,,,0.01467,0.01807,0.0251,,,,,,,,0.01772,0.0158,0.00533,,,,,,,,0.01787,0.01592,0.00536,,,,,,,,0.01812,0.01614,0.00544,,,,,,,,0.01771,0.01578,0.00532,,,,,,,,0.01819,0.01616,0.00542,,,,,,,,0.01789,0.01596,0.00534,,,,,,,,0.01806,0.01604,0.00538,,,,,,,,0.01804,0.01604,0.00539,,,,,,,,0.01778,0.0158,0.0053,,,,,,,,0.38302,0.53409,0.53378,,,,,,,,0.34598,0.49556,0.49307,,,,,,,,0.4063,0.5797,0.57353,,,,,,,,0.42986,0.61198,0.60315,,,,,,,,0.27049,0.41786,0.40359,,,,,,,,0.30479,0.46728,0.44486,,,,,,,,0.26659,0.40431,0.38966,,,,,,,,0.31696,0.4642,0.45459,,,,,,,,0.24114,0.36571,0.35375,,,,,, +Minivan,E85,2010,,0.00157,0.00293,0.0043,0.00842,,,,,,,0.00139,0.00259,0.00378,0.00731,,,,,,,0.00154,0.00288,0.00422,0.00823,,,,,,,0.00168,0.00314,0.00461,0.00908,,,,,,,0.00094,0.0017,0.00243,0.00444,,,,,,,0.00104,0.00195,0.00273,0.00509,,,,,,,0.00091,0.00164,0.00234,0.00425,,,,,,,0.00116,0.00213,0.00309,0.00584,,,,,,,0.00091,0.00165,0.00235,0.00426,,,,,,,0.04677,0.03341,0.02525,0.04146,,,,,,,0.04078,0.03037,0.0232,0.03883,,,,,,,0.04576,0.03578,0.02739,0.0474,,,,,,,0.05084,0.03955,0.03015,0.0508,,,,,,,0.02739,0.02593,0.02064,0.03769,,,,,,,0.03061,0.02873,0.02232,0.04061,,,,,,,0.02681,0.02555,0.02035,0.03688,,,,,,,0.03422,0.02892,0.02244,0.03933,,,,,,,0.02633,0.02357,0.0184,0.0319,,,,,,,2.48402,4.13531,5.57241,8.35138,,,,,,,2.36287,4.08881,5.53815,8.29793,,,,,,,2.48601,4.53252,6.29261,9.75727,,,,,,,2.65742,4.85325,6.75248,10.37233,,,,,,,2.1873,4.32278,6.05932,9.39725,,,,,,,2.2577,4.48457,6.22185,9.69001,,,,,,,2.2801,4.44872,6.21174,9.55128,,,,,,,2.32776,4.32552,5.95406,9.09815,,,,,,,2.04634,3.82493,5.1993,7.82291,,,,,,,503.37632,505.52289,510.00057,526.6621,,,,,,,507.81169,509.68579,513.71689,529.7204,,,,,,,514.74553,516.76509,521.07248,537.67387,,,,,,,503.0749,505.11949,509.47302,525.93084,,,,,,,517.55169,518.49154,520.98227,534.60527,,,,,,,508.87992,511.76392,513.02939,527.23535,,,,,,,513.91733,514.75634,517.08453,530.37056,,,,,,,513.009,514.35323,517.50963,532.15477,,,,,,,505.66937,506.82205,509.56751,523.37215,,,,,,,0.00856,0.00964,0.01155,0.01657,,,,,,,0.00858,0.00964,0.01155,0.01656,,,,,,,0.00872,0.00979,0.0117,0.01675,,,,,,,0.00839,0.00945,0.01133,0.01628,,,,,,,0.00868,0.00975,0.01165,0.01669,,,,,,,0.00849,0.00955,0.01143,0.0164,,,,,,,0.00856,0.00963,0.01153,0.01654,,,,,,,0.00864,0.00972,0.01163,0.01667,,,,,,,0.00871,0.00979,0.01172,0.01681,,,,,,,0.0178,0.02043,0.02664,0.02952,,,,,,,0.01782,0.02045,0.02667,0.02956,,,,,,,0.01781,0.02045,0.02667,0.02955,,,,,,,0.01772,0.02034,0.02653,0.0294,,,,,,,0.0178,0.02043,0.02664,0.02953,,,,,,,0.01774,0.02036,0.02656,0.02943,,,,,,,0.01778,0.02042,0.02662,0.0295,,,,,,,0.01782,0.02046,0.02668,0.02957,,,,,,,0.01786,0.02051,0.02674,0.02963,,,,,,,0.14412,0.25143,0.2523,0.54084,,,,,,,0.13897,0.24912,0.24964,0.53582,,,,,,,0.14195,0.27426,0.27285,0.61142,,,,,,,0.14691,0.29104,0.28735,0.64298,,,,,,,0.13051,0.26103,0.25883,0.59243,,,,,,,0.1362,0.27206,0.26868,0.6098,,,,,,,0.13464,0.26302,0.26017,0.58725,,,,,,,0.14695,0.28088,0.27486,0.6102,,,,,,,0.13569,0.25266,0.24723,0.53862,,,,,,,0.00281,0.00499,0.00696,0.01332,,,,,,,0.00263,0.00464,0.00644,0.01203,,,,,,,0.00276,0.0049,0.00683,0.01298,,,,,,,0.00288,0.00514,0.00719,0.01389,,,,,,,0.00217,0.00376,0.00511,0.00864,,,,,,,0.00226,0.00398,0.00537,0.00935,,,,,,,0.00216,0.00373,0.00505,0.00848,,,,,,,0.0024,0.0042,0.00577,0.0103,,,,,,,0.0022,0.0038,0.00514,0.00863,,,,,,,0.04708,0.05203,0.05658,0.07114,,,,,,,0.04801,0.05252,0.05662,0.06934,,,,,,,0.0524,0.05725,0.06171,0.07583,,,,,,,0.04445,0.04961,0.05442,0.06985,,,,,,,0.05003,0.05343,0.05635,0.06418,,,,,,,0.04594,0.0499,0.05275,0.06166,,,,,,,0.04591,0.04925,0.05211,0.05967,,,,,,,0.04861,0.05256,0.05605,0.06627,,,,,,,0.04786,0.05126,0.05415,0.06181,,,,,,,0.01083,0.01521,0.01923,0.03211,,,,,,,0.01059,0.01458,0.0182,0.02945,,,,,,,0.01141,0.0157,0.01965,0.03214,,,,,,,0.01066,0.01523,0.01948,0.03313,,,,,,,0.00994,0.01295,0.01554,0.02246,,,,,,,0.0096,0.01296,0.01562,0.02351,,,,,,,0.00938,0.01234,0.01487,0.02156,,,,,,,0.01021,0.0137,0.0168,0.02583,,,,,,,0.00969,0.01269,0.01525,0.02202,,,,,,,0.01648,0.0146,0.00491,0.00507,,,,,,,0.01663,0.01472,0.00494,0.0051,,,,,,,0.01685,0.01492,0.00502,0.00518,,,,,,,0.01647,0.01459,0.0049,0.00506,,,,,,,0.01695,0.01497,0.00501,0.00515,,,,,,,0.01666,0.01478,0.00494,0.00507,,,,,,,0.01683,0.01486,0.00498,0.0051,,,,,,,0.0168,0.01485,0.00498,0.00512,,,,,,,0.01656,0.01463,0.0049,0.00504,,,,,,,0.11742,0.17662,0.24186,0.39286,,,,,,,0.09965,0.156,0.21736,0.35775,,,,,,,0.11503,0.18533,0.25819,0.43064,,,,,,,0.12917,0.20575,0.28443,0.46568,,,,,,,0.05916,0.11853,0.178,0.30557,,,,,,,0.06856,0.13478,0.19456,0.33502,,,,,,,0.05633,0.11428,0.17251,0.29534,,,,,,,0.07938,0.1398,0.20126,0.33851,,,,,,,0.05576,0.1072,0.15856,0.26295,,,,, +Minivan,E85,2015,,,0.00141,0.00239,0.00367,0.00664,,,,,,,0.00127,0.00216,0.0033,0.00589,,,,,,,0.00138,0.00235,0.00361,0.00652,,,,,,,0.00147,0.00251,0.00387,0.00705,,,,,,,0.00092,0.00154,0.0023,0.00388,,,,,,,0.00102,0.00168,0.00253,0.00435,,,,,,,0.0009,0.0015,0.00224,0.00375,,,,,,,0.00109,0.00185,0.00279,0.00487,,,,,,,0.0009,0.00151,0.00225,0.00376,,,,,,,0.03538,0.02367,0.02172,0.02701,,,,,,,0.03242,0.02203,0.02057,0.02554,,,,,,,0.03515,0.02568,0.024,0.03032,,,,,,,0.03789,0.02782,0.02594,0.03257,,,,,,,0.02437,0.01981,0.01978,0.02484,,,,,,,0.02708,0.02137,0.02112,0.02659,,,,,,,0.02413,0.01957,0.01966,0.02456,,,,,,,0.02853,0.02152,0.02073,0.02588,,,,,,,0.02369,0.01806,0.0177,0.02171,,,,,,,2.13169,3.74457,5.0528,6.75332,,,,,,,2.12265,3.75641,5.09675,6.78849,,,,,,,2.18773,4.145,5.76744,7.82434,,,,,,,2.33334,4.43013,6.17996,8.33276,,,,,,,2.08632,4.12988,5.79657,7.77338,,,,,,,2.1456,4.20033,5.91149,7.9667,,,,,,,2.17473,4.26746,5.96788,7.96629,,,,,,,2.14407,4.06208,5.60335,7.48997,,,,,,,1.95427,3.65931,4.98153,6.57429,,,,,,,412.344,414.70276,418.56776,441.66463,,,,,,,415.79979,417.88112,421.35861,443.98649,,,,,,,421.55253,423.79446,427.51198,450.7607,,,,,,,412.07344,414.34442,418.10457,441.03181,,,,,,,423.18613,424.31306,426.45163,447.2682,,,,,,,417.65139,417.68612,420.21494,441.36502,,,,,,,420.18245,421.208,423.20687,443.68097,,,,,,,419.72533,421.26454,423.98187,445.56987,,,,,,,413.56135,414.87262,417.22932,437.97869,,,,,,,0.00566,0.00649,0.0077,0.01074,,,,,,,0.00567,0.00649,0.00769,0.01073,,,,,,,0.00576,0.00659,0.00779,0.01085,,,,,,,0.00555,0.00636,0.00755,0.01055,,,,,,,0.00573,0.00656,0.00776,0.01081,,,,,,,0.00561,0.00643,0.00762,0.01063,,,,,,,0.00566,0.00648,0.00768,0.01072,,,,,,,0.00571,0.00654,0.00775,0.0108,,,,,,,0.00576,0.00659,0.00781,0.01089,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01782,0.02074,0.02668,0.02703,,,,,,,0.01782,0.02073,0.02668,0.02703,,,,,,,0.01773,0.02062,0.02654,0.02689,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01774,0.02065,0.02656,0.02691,,,,,,,0.01779,0.0207,0.02663,0.02698,,,,,,,0.01783,0.02074,0.02669,0.02704,,,,,,,0.01787,0.02079,0.02675,0.0271,,,,,,,0.12799,0.15738,0.22971,0.32717,,,,,,,0.12747,0.15532,0.22734,0.32372,,,,,,,0.12888,0.17053,0.24791,0.35916,,,,,,,0.13446,0.18032,0.26185,0.37872,,,,,,,0.11817,0.159,0.23392,0.34165,,,,,,,0.12402,0.16614,0.24361,0.35441,,,,,,,0.12107,0.15993,0.23561,0.34185,,,,,,,0.13274,0.17114,0.24941,0.35856,,,,,,,0.12271,0.1535,0.22395,0.31926,,,,,,,0.00269,0.00442,0.00636,0.01048,,,,,,,0.00256,0.00419,0.00599,0.0097,,,,,,,0.00264,0.00435,0.00625,0.01028,,,,,,,0.00272,0.00449,0.00648,0.01079,,,,,,,0.00219,0.00356,0.00498,0.00764,,,,,,,0.00228,0.00367,0.00517,0.00806,,,,,,,0.00219,0.00355,0.00496,0.00756,,,,,,,0.00238,0.00388,0.00549,0.00866,,,,,,,0.00223,0.00362,0.00504,0.00768,,,,,,,0.04672,0.05055,0.055,0.06468,,,,,,,0.04777,0.05134,0.05543,0.06409,,,,,,,0.05205,0.05581,0.06018,0.06966,,,,,,,0.04399,0.04791,0.05252,0.06274,,,,,,,0.05004,0.05291,0.05601,0.06196,,,,,,,0.04615,0.04891,0.05224,0.05879,,,,,,,0.04594,0.04879,0.05185,0.05764,,,,,,,0.0485,0.05171,0.05531,0.06258,,,,,,,0.0479,0.05079,0.05388,0.05973,,,,,,,0.01051,0.01389,0.01783,0.0264,,,,,,,0.01038,0.01353,0.01715,0.02481,,,,,,,0.01111,0.01443,0.0183,0.02669,,,,,,,0.01025,0.01372,0.0178,0.02684,,,,,,,0.00995,0.01249,0.01524,0.0205,,,,,,,0.00964,0.01223,0.01517,0.02096,,,,,,,0.00941,0.01193,0.01464,0.01976,,,,,,,0.01011,0.01296,0.01614,0.02258,,,,,,,0.00972,0.01228,0.01502,0.02019,,,,,,,0.01191,0.00399,0.00403,0.00425,,,,,,,0.01201,0.00402,0.00406,0.00427,,,,,,,0.01217,0.00408,0.00411,0.00434,,,,,,,0.0119,0.00399,0.00402,0.00425,,,,,,,0.01222,0.00408,0.0041,0.00431,,,,,,,0.01206,0.00402,0.00404,0.00425,,,,,,,0.01213,0.00405,0.00407,0.00427,,,,,,,0.01212,0.00405,0.00408,0.00429,,,,,,,0.01194,0.00399,0.00402,0.00422,,,,,,,0.08849,0.13162,0.20089,0.29689,,,,,,,0.07873,0.12001,0.18688,0.27577,,,,,,,0.08784,0.1405,0.21883,0.32746,,,,,,,0.0954,0.1519,0.2354,0.35136,,,,,,,0.05314,0.0994,0.16827,0.25105,,,,,,,0.06137,0.10849,0.18083,0.2705,,,,,,,0.05142,0.09657,0.16468,0.24498,,,,,,,0.06597,0.11212,0.18154,0.26946,,,,,,,0.05075,0.09035,0.15066,0.22011,,,, +Minivan,E85,2020,,,,0.00117,0.00201,0.00284,0.00569,,,,,,,0.00107,0.00182,0.00257,0.00508,,,,,,,0.00116,0.00197,0.0028,0.0056,,,,,,,0.00122,0.0021,0.00298,0.00602,,,,,,,0.00079,0.00131,0.00181,0.00342,,,,,,,0.00085,0.00143,0.00198,0.00381,,,,,,,0.00077,0.00128,0.00176,0.00331,,,,,,,0.00093,0.00156,0.00218,0.00423,,,,,,,0.00078,0.00129,0.00177,0.00332,,,,,,,0.02708,0.01959,0.01667,0.02125,,,,,,,0.02434,0.01802,0.01557,0.01997,,,,,,,0.02691,0.02103,0.01818,0.02405,,,,,,,0.0292,0.02288,0.01974,0.02596,,,,,,,0.01683,0.01529,0.0141,0.01921,,,,,,,0.01885,0.01675,0.01527,0.02076,,,,,,,0.01646,0.01506,0.01397,0.01898,,,,,,,0.02065,0.01708,0.0152,0.02017,,,,,,,0.01612,0.01387,0.01259,0.01655,,,,,,,1.682,2.53829,3.20349,4.91615,,,,,,,1.6647,2.52474,3.19782,4.92705,,,,,,,1.73294,2.78767,3.61266,5.81664,,,,,,,1.85534,2.99681,3.90054,6.23831,,,,,,,1.61663,2.70499,3.52399,5.70223,,,,,,,1.6534,2.77036,3.62345,5.89859,,,,,,,1.67995,2.79711,3.635,5.84319,,,,,,,1.67187,2.69125,3.45677,5.48578,,,,,,,1.50669,2.40006,3.04139,4.72865,,,,,,,350.03874,352.37195,356.26115,387.01815,,,,,,,352.82186,354.92481,358.47761,388.79932,,,,,,,357.77838,360.02216,363.79343,394.85707,,,,,,,349.79286,352.05372,355.85259,386.43617,,,,,,,358.58441,359.89335,362.2772,390.82394,,,,,,,352.8901,354.42784,357.14757,385.93446,,,,,,,356.00279,357.22444,359.48306,387.62842,,,,,,,355.86684,357.51895,360.40739,389.70566,,,,,,,350.49123,351.94468,354.50405,382.81585,,,,,,,0.00578,0.00654,0.0077,0.01014,,,,,,,0.00579,0.00654,0.00769,0.01012,,,,,,,0.00588,0.00664,0.00779,0.01023,,,,,,,0.00567,0.00641,0.00755,0.00996,,,,,,,0.00585,0.00661,0.00776,0.0102,,,,,,,0.00573,0.00648,0.00762,0.01003,,,,,,,0.00578,0.00653,0.00768,0.01012,,,,,,,0.00583,0.00659,0.00775,0.01019,,,,,,,0.00588,0.00664,0.00781,0.01028,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01782,0.02074,0.02668,0.02668,,,,,,,0.01782,0.02074,0.02667,0.02667,,,,,,,0.01773,0.02063,0.02654,0.02654,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01774,0.02065,0.02656,0.02656,,,,,,,0.01779,0.0207,0.02663,0.02663,,,,,,,0.01783,0.02075,0.02669,0.02669,,,,,,,0.01787,0.02079,0.02675,0.02675,,,,,,,0.08368,0.13491,0.18134,0.25222,,,,,,,0.08263,0.13289,0.17901,0.24905,,,,,,,0.08438,0.14553,0.19463,0.27745,,,,,,,0.08799,0.15466,0.20669,0.29466,,,,,,,0.07463,0.1341,0.18091,0.26017,,,,,,,0.07891,0.14107,0.18989,0.27209,,,,,,,0.07615,0.13536,0.18293,0.26089,,,,,,,0.08433,0.14571,0.19519,0.27522,,,,,,,0.07672,0.12975,0.17393,0.24217,,,,,,,0.00231,0.00374,0.00497,0.00889,,,,,,,0.0022,0.00355,0.00469,0.00828,,,,,,,0.00227,0.00368,0.00488,0.00873,,,,,,,0.00233,0.00379,0.00505,0.00912,,,,,,,0.00191,0.00304,0.00393,0.00663,,,,,,,0.00196,0.00313,0.00407,0.00697,,,,,,,0.00191,0.00303,0.00391,0.00657,,,,,,,0.00206,0.0033,0.00431,0.00745,,,,,,,0.00195,0.00309,0.00398,0.00667,,,,,,,0.04585,0.04904,0.05187,0.06112,,,,,,,0.04697,0.04995,0.05255,0.06093,,,,,,,0.05119,0.05433,0.05712,0.0662,,,,,,,0.04308,0.04634,0.04929,0.05897,,,,,,,0.04943,0.05182,0.05378,0.05983,,,,,,,0.04525,0.04777,0.04987,0.05645,,,,,,,0.04534,0.04771,0.04964,0.05556,,,,,,,0.04779,0.05047,0.05275,0.05995,,,,,,,0.04729,0.04969,0.05164,0.05762,,,,,,,0.00974,0.01256,0.01507,0.02325,,,,,,,0.00967,0.0123,0.01461,0.02202,,,,,,,0.01035,0.01312,0.01559,0.02363,,,,,,,0.00945,0.01234,0.01494,0.02351,,,,,,,0.00941,0.01153,0.01326,0.01862,,,,,,,0.00899,0.01122,0.01307,0.01889,,,,,,,0.00888,0.01098,0.01268,0.01792,,,,,,,0.00949,0.01186,0.01388,0.02025,,,,,,,0.00918,0.01131,0.01303,0.01832,,,,,,,0.00337,0.00339,0.00343,0.00373,,,,,,,0.0034,0.00342,0.00345,0.00374,,,,,,,0.00344,0.00347,0.0035,0.0038,,,,,,,0.00337,0.00339,0.00343,0.00372,,,,,,,0.00345,0.00346,0.00349,0.00376,,,,,,,0.0034,0.00341,0.00344,0.00371,,,,,,,0.00343,0.00344,0.00346,0.00373,,,,,,,0.00343,0.00344,0.00347,0.00375,,,,,,,0.00337,0.00339,0.00341,0.00368,,,,,,,0.07474,0.11011,0.15534,0.24174,,,,,,,0.06586,0.09917,0.14201,0.22324,,,,,,,0.07431,0.11612,0.16637,0.26926,,,,,,,0.08098,0.12618,0.1802,0.29019,,,,,,,0.04207,0.07663,0.11773,0.20104,,,,,,,0.04828,0.08527,0.12915,0.21879,,,,,,,0.04037,0.07416,0.1147,0.19564,,,,,,,0.05397,0.0895,0.1323,0.21745,,,,,,,0.03965,0.06933,0.10518,0.1731,,, +Minivan,E85,2025,,,,,0.00076,0.00125,0.00177,0.00411,,,,,,,0.00069,0.00114,0.0016,0.00368,,,,,,,0.00074,0.00123,0.00174,0.00404,,,,,,,0.00079,0.00131,0.00185,0.00434,,,,,,,0.00051,0.00082,0.00113,0.00249,,,,,,,0.00055,0.00089,0.00123,0.00277,,,,,,,0.0005,0.0008,0.0011,0.00241,,,,,,,0.0006,0.00098,0.00136,0.00307,,,,,,,0.0005,0.00081,0.0011,0.00242,,,,,,,0.02181,0.01428,0.01154,0.01617,,,,,,,0.01898,0.01268,0.0104,0.01491,,,,,,,0.02153,0.01488,0.01221,0.0181,,,,,,,0.0237,0.01636,0.01338,0.01966,,,,,,,0.01125,0.00907,0.00807,0.01334,,,,,,,0.01325,0.01035,0.00904,0.01468,,,,,,,0.01077,0.00878,0.00787,0.01307,,,,,,,0.01509,0.01105,0.00939,0.0145,,,,,,,0.01052,0.00816,0.00717,0.01136,,,,,,,1.11848,1.63456,2.07341,3.47973,,,,,,,1.08011,1.5941,2.0316,3.45027,,,,,,,1.1377,1.76698,2.29902,4.10409,,,,,,,1.22936,1.91603,2.5011,4.42994,,,,,,,0.96919,1.60423,2.11117,3.89127,,,,,,,1.01105,1.66752,2.19965,4.06233,,,,,,,1.00241,1.65574,2.17434,3.98326,,,,,,,1.04115,1.64309,2.1268,3.78999,,,,,,,0.90445,1.42735,1.82691,3.20995,,,,,,,286.08159,287.4676,290.315,327.20839,,,,,,,288.21594,289.40008,291.94332,328.4659,,,,,,,292.33585,293.63208,296.36204,333.70843,,,,,,,285.86614,287.19248,289.96371,326.69096,,,,,,,292.45538,292.9487,294.44054,329.34367,,,,,,,287.95805,288.65799,290.45978,325.48771,,,,,,,290.316,290.73992,292.12654,326.5909,,,,,,,290.4387,291.23099,293.17732,328.76083,,,,,,,285.91149,286.53967,288.19674,322.69894,,,,,,,0.00582,0.00653,0.00767,0.01003,,,,,,,0.00583,0.00654,0.00767,0.01002,,,,,,,0.00592,0.00663,0.00777,0.01013,,,,,,,0.0057,0.00641,0.00753,0.00986,,,,,,,0.00589,0.0066,0.00774,0.01009,,,,,,,0.00577,0.00647,0.00759,0.00992,,,,,,,0.00581,0.00652,0.00766,0.01001,,,,,,,0.00587,0.00658,0.00772,0.01008,,,,,,,0.00592,0.00664,0.00779,0.01017,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02071,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02068,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02077,0.02675,0.02675,,,,,,,0.0518,0.07754,0.10371,0.17615,,,,,,,0.05039,0.07547,0.10122,0.17289,,,,,,,0.05182,0.08213,0.10952,0.1937,,,,,,,0.05416,0.08725,0.11622,0.20622,,,,,,,0.04268,0.07158,0.09683,0.17689,,,,,,,0.04624,0.07666,0.10323,0.18674,,,,,,,0.04351,0.07235,0.09799,0.17722,,,,,,,0.04934,0.07937,0.10632,0.18846,,,,,,,0.04355,0.06939,0.09329,0.16337,,,,,,,0.00149,0.00235,0.0031,0.00641,,,,,,,0.00142,0.00223,0.00293,0.00598,,,,,,,0.00146,0.0023,0.00305,0.0063,,,,,,,0.0015,0.00237,0.00315,0.00657,,,,,,,0.00123,0.00191,0.00246,0.0048,,,,,,,0.00126,0.00196,0.00255,0.00504,,,,,,,0.00123,0.0019,0.00245,0.00476,,,,,,,0.00132,0.00207,0.00269,0.00539,,,,,,,0.00125,0.00194,0.00249,0.00483,,,,,,,0.04406,0.04597,0.04773,0.05547,,,,,,,0.04528,0.04707,0.04868,0.05575,,,,,,,0.04944,0.05132,0.05304,0.06065,,,,,,,0.04126,0.04322,0.04504,0.05311,,,,,,,0.04801,0.04944,0.05066,0.05587,,,,,,,0.04378,0.04529,0.04659,0.05223,,,,,,,0.04393,0.04535,0.04655,0.05166,,,,,,,0.04624,0.04785,0.04926,0.05539,,,,,,,0.04585,0.04729,0.0485,0.05367,,,,,,,0.00816,0.00985,0.0114,0.01825,,,,,,,0.00818,0.00976,0.01118,0.01743,,,,,,,0.0088,0.01046,0.01198,0.01872,,,,,,,0.00784,0.00958,0.01118,0.01832,,,,,,,0.00816,0.00943,0.0105,0.01512,,,,,,,0.00769,0.00903,0.01018,0.01516,,,,,,,0.00763,0.00889,0.00995,0.01448,,,,,,,0.00812,0.00954,0.01079,0.01621,,,,,,,0.00791,0.00919,0.01026,0.01482,,,,,,,0.00275,0.00277,0.00279,0.00315,,,,,,,0.00277,0.00279,0.00281,0.00316,,,,,,,0.00281,0.00283,0.00285,0.00321,,,,,,,0.00275,0.00276,0.00279,0.00314,,,,,,,0.00281,0.00282,0.00283,0.00317,,,,,,,0.00277,0.00278,0.0028,0.00313,,,,,,,0.00279,0.0028,0.00281,0.00314,,,,,,,0.0028,0.0028,0.00282,0.00316,,,,,,,0.00275,0.00276,0.00277,0.00311,,,,,,,0.06389,0.08619,0.11637,0.1918,,,,,,,0.0548,0.07516,0.10288,0.1737,,,,,,,0.06301,0.08842,0.12102,0.21054,,,,,,,0.06967,0.09738,0.13274,0.22869,,,,,,,0.03014,0.04863,0.07204,0.14366,,,,,,,0.03646,0.05677,0.08243,0.15986,,,,,,,0.02838,0.04627,0.06911,0.13874,,,,,,,0.04229,0.06247,0.0884,0.16216,,,,,,,0.02779,0.04361,0.06402,0.12256,, +Minivan,E85,2030,,,,,,0.00075,0.00125,0.00176,0.00323,,,,,,,0.00069,0.00113,0.00159,0.00289,,,,,,,0.00074,0.00123,0.00173,0.00318,,,,,,,0.00078,0.0013,0.00185,0.00341,,,,,,,0.0005,0.00082,0.00112,0.00197,,,,,,,0.00055,0.00089,0.00123,0.00219,,,,,,,0.00049,0.0008,0.0011,0.00191,,,,,,,0.00059,0.00097,0.00136,0.00243,,,,,,,0.0005,0.0008,0.0011,0.00192,,,,,,,0.02027,0.01277,0.01018,0.01305,,,,,,,0.01743,0.01117,0.00905,0.01178,,,,,,,0.01994,0.01314,0.01064,0.01418,,,,,,,0.02206,0.0145,0.0117,0.0155,,,,,,,0.00964,0.00734,0.00649,0.00943,,,,,,,0.01162,0.00855,0.00741,0.0106,,,,,,,0.00912,0.00703,0.00628,0.00916,,,,,,,0.01347,0.00936,0.00787,0.01081,,,,,,,0.00893,0.00658,0.00575,0.00808,,,,,,,0.97232,1.42124,1.81947,2.68038,,,,,,,0.92892,1.37493,1.76992,2.62432,,,,,,,0.98297,1.52633,2.00507,3.08947,,,,,,,1.06579,1.6598,2.1866,3.35065,,,,,,,0.80231,1.34616,1.7955,2.8177,,,,,,,0.84481,1.40798,1.8808,2.96169,,,,,,,0.82778,1.38755,1.84712,2.88449,,,,,,,0.87801,1.39696,1.82889,2.8029,,,,,,,0.74944,1.19956,1.55468,2.34922,,,,,,,260.36452,262.81881,266.92495,289.78278,,,,,,,262.24673,264.52498,268.34998,290.75923,,,,,,,266.0259,268.4239,272.44883,295.46983,,,,,,,260.16315,262.56255,266.59735,289.31316,,,,,,,265.90133,267.5649,270.40396,291.07422,,,,,,,261.87628,263.71053,266.82502,287.81376,,,,,,,263.94189,265.53345,268.26246,288.60885,,,,,,,264.15447,266.08326,269.34768,290.75899,,,,,,,259.97506,261.73392,264.69547,285.25457,,,,,,,0.00581,0.00651,0.00766,0.00997,,,,,,,0.00582,0.00651,0.00766,0.00996,,,,,,,0.00591,0.0066,0.00776,0.01007,,,,,,,0.0057,0.00638,0.00752,0.0098,,,,,,,0.00588,0.00657,0.00772,0.01003,,,,,,,0.00576,0.00644,0.00758,0.00987,,,,,,,0.00581,0.0065,0.00765,0.00995,,,,,,,0.00586,0.00656,0.00771,0.01002,,,,,,,0.00591,0.00661,0.00777,0.01011,,,,,,,0.0178,0.02067,0.02665,0.02665,,,,,,,0.01782,0.0207,0.02668,0.02668,,,,,,,0.01782,0.02069,0.02667,0.02667,,,,,,,0.01773,0.02059,0.02654,0.02654,,,,,,,0.0178,0.02068,0.02665,0.02665,,,,,,,0.01774,0.02061,0.02656,0.02656,,,,,,,0.01779,0.02066,0.02663,0.02663,,,,,,,0.01783,0.02071,0.02669,0.02669,,,,,,,0.01787,0.02075,0.02675,0.02675,,,,,,,0.04104,0.05993,0.08263,0.12928,,,,,,,0.0395,0.05784,0.0801,0.12592,,,,,,,0.04065,0.0627,0.08645,0.13981,,,,,,,0.04241,0.06646,0.0916,0.14855,,,,,,,0.03174,0.05246,0.07408,0.12331,,,,,,,0.035,0.05688,0.07971,0.13152,,,,,,,0.03237,0.05302,0.07494,0.12371,,,,,,,0.03737,0.05901,0.08215,0.13332,,,,,,,0.03235,0.05097,0.07141,0.11468,,,,,,,0.00148,0.00234,0.0031,0.0051,,,,,,,0.00141,0.00222,0.00293,0.00476,,,,,,,0.00146,0.0023,0.00305,0.00501,,,,,,,0.00149,0.00236,0.00315,0.00522,,,,,,,0.00123,0.0019,0.00246,0.00385,,,,,,,0.00126,0.00196,0.00255,0.00404,,,,,,,0.00123,0.0019,0.00245,0.00382,,,,,,,0.00132,0.00206,0.00269,0.0043,,,,,,,0.00125,0.00193,0.00249,0.00387,,,,,,,0.04405,0.04596,0.04772,0.05244,,,,,,,0.04528,0.04705,0.04867,0.05297,,,,,,,0.04943,0.0513,0.05303,0.05768,,,,,,,0.04125,0.0432,0.04503,0.04996,,,,,,,0.048,0.04943,0.05065,0.05379,,,,,,,0.04378,0.04528,0.04659,0.04999,,,,,,,0.04392,0.04534,0.04654,0.04961,,,,,,,0.04623,0.04783,0.04925,0.05296,,,,,,,0.04584,0.04728,0.0485,0.05159,,,,,,,0.00815,0.00983,0.01139,0.01557,,,,,,,0.00817,0.00974,0.01117,0.01498,,,,,,,0.00879,0.01044,0.01198,0.01609,,,,,,,0.00783,0.00956,0.01118,0.01554,,,,,,,0.00815,0.00942,0.0105,0.01327,,,,,,,0.00769,0.00902,0.01017,0.01318,,,,,,,0.00763,0.00888,0.00995,0.01266,,,,,,,0.00811,0.00953,0.01078,0.01406,,,,,,,0.0079,0.00918,0.01025,0.01299,,,,,,,0.00251,0.00253,0.00257,0.00279,,,,,,,0.00252,0.00255,0.00258,0.0028,,,,,,,0.00256,0.00258,0.00262,0.00284,,,,,,,0.0025,0.00253,0.00257,0.00278,,,,,,,0.00256,0.00258,0.0026,0.0028,,,,,,,0.00252,0.00254,0.00257,0.00277,,,,,,,0.00254,0.00256,0.00258,0.00278,,,,,,,0.00254,0.00256,0.00259,0.0028,,,,,,,0.0025,0.00252,0.00255,0.00275,,,,,,,0.06021,0.07904,0.10624,0.16041,,,,,,,0.05113,0.06806,0.09275,0.14228,,,,,,,0.05917,0.08019,0.10927,0.17104,,,,,,,0.06575,0.08876,0.12042,0.18721,,,,,,,0.02637,0.0406,0.06036,0.10457,,,,,,,0.03265,0.04853,0.07046,0.11938,,,,,,,0.0246,0.03828,0.05746,0.10014,,,,,,,0.0385,0.05463,0.07712,0.12531,,,,,,,0.02408,0.03629,0.0535,0.08983, +Minivan,E85,2035,,,,,,,0.00075,0.00125,0.00177,0.00296,,,,,,,0.00069,0.00113,0.00159,0.00265,,,,,,,0.00074,0.00123,0.00174,0.00291,,,,,,,0.00079,0.0013,0.00185,0.00312,,,,,,,0.0005,0.00082,0.00112,0.00181,,,,,,,0.00055,0.00089,0.00123,0.00201,,,,,,,0.00049,0.0008,0.0011,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00222,,,,,,,0.0005,0.00081,0.0011,0.00176,,,,,,,0.02015,0.01276,0.01019,0.01203,,,,,,,0.01733,0.01116,0.00905,0.01073,,,,,,,0.01983,0.01313,0.01065,0.01284,,,,,,,0.02193,0.01449,0.01171,0.01407,,,,,,,0.00959,0.00734,0.0065,0.00806,,,,,,,0.01157,0.00855,0.00741,0.00917,,,,,,,0.00908,0.00703,0.00628,0.00779,,,,,,,0.0134,0.00935,0.00787,0.00955,,,,,,,0.00888,0.00658,0.00576,0.00696,,,,,,,0.9727,1.42238,1.8202,2.43547,,,,,,,0.92959,1.37608,1.77056,2.36988,,,,,,,0.98381,1.52777,2.00581,2.76979,,,,,,,1.06671,1.66135,2.1874,3.00908,,,,,,,0.80406,1.34756,1.79593,2.47612,,,,,,,0.84647,1.40943,1.88129,2.61051,,,,,,,0.82962,1.38896,1.84752,2.53495,,,,,,,0.87935,1.39821,1.82943,2.49211,,,,,,,0.75084,1.20057,1.55509,2.08006,,,,,,,260.31047,262.82875,266.94563,277.96108,,,,,,,262.19583,264.53424,268.36876,278.84923,,,,,,,265.9724,268.43366,272.4687,283.39168,,,,,,,260.10926,262.57218,266.61711,277.50646,,,,,,,265.8619,267.5714,270.4174,278.9889,,,,,,,261.83373,263.71764,266.84,275.91581,,,,,,,263.90371,265.53953,268.27494,276.61444,,,,,,,264.11009,266.09083,269.36337,278.75715,,,,,,,259.93577,261.74105,264.71003,273.42993,,,,,,,0.0058,0.00651,0.00766,0.00998,,,,,,,0.0058,0.00651,0.00766,0.00997,,,,,,,0.00589,0.00661,0.00776,0.01008,,,,,,,0.00568,0.00638,0.00752,0.00981,,,,,,,0.00587,0.00658,0.00773,0.01004,,,,,,,0.00574,0.00645,0.00759,0.00988,,,,,,,0.00579,0.0065,0.00765,0.00996,,,,,,,0.00585,0.00656,0.00771,0.01003,,,,,,,0.00589,0.00661,0.00778,0.01012,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02072,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02069,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02078,0.02675,0.02675,,,,,,,0.041,0.06006,0.08268,0.11314,,,,,,,0.03947,0.05796,0.08015,0.10973,,,,,,,0.04063,0.06284,0.0865,0.12082,,,,,,,0.0424,0.06661,0.09165,0.12807,,,,,,,0.03175,0.0526,0.07412,0.10436,,,,,,,0.03501,0.05702,0.07975,0.11195,,,,,,,0.03238,0.05316,0.07498,0.10483,,,,,,,0.03736,0.05915,0.08219,0.11394,,,,,,,0.03236,0.0511,0.07144,0.09781,,,,,,,0.00148,0.00234,0.0031,0.00469,,,,,,,0.00141,0.00222,0.00293,0.00438,,,,,,,0.00146,0.0023,0.00305,0.0046,,,,,,,0.0015,0.00237,0.00315,0.00479,,,,,,,0.00123,0.0019,0.00246,0.00354,,,,,,,0.00126,0.00196,0.00255,0.00372,,,,,,,0.00123,0.0019,0.00245,0.00352,,,,,,,0.00132,0.00207,0.00269,0.00396,,,,,,,0.00125,0.00194,0.00249,0.00357,,,,,,,0.04406,0.04596,0.04772,0.05149,,,,,,,0.04528,0.04706,0.04868,0.0521,,,,,,,0.04943,0.05131,0.05304,0.05674,,,,,,,0.04126,0.04321,0.04504,0.04898,,,,,,,0.048,0.04944,0.05066,0.05312,,,,,,,0.04378,0.04529,0.04659,0.04928,,,,,,,0.04392,0.04535,0.04654,0.04896,,,,,,,0.04623,0.04784,0.04925,0.05219,,,,,,,0.04585,0.04729,0.0485,0.05093,,,,,,,0.00815,0.00984,0.0114,0.01473,,,,,,,0.00817,0.00975,0.01118,0.01421,,,,,,,0.00879,0.01045,0.01198,0.01526,,,,,,,0.00784,0.00957,0.01118,0.01467,,,,,,,0.00815,0.00942,0.0105,0.01268,,,,,,,0.00769,0.00902,0.01018,0.01255,,,,,,,0.00763,0.00889,0.00995,0.01208,,,,,,,0.00811,0.00953,0.01079,0.01338,,,,,,,0.00791,0.00918,0.01025,0.0124,,,,,,,0.00251,0.00253,0.00257,0.00268,,,,,,,0.00252,0.00255,0.00258,0.00268,,,,,,,0.00256,0.00258,0.00262,0.00273,,,,,,,0.0025,0.00253,0.00257,0.00267,,,,,,,0.00256,0.00258,0.0026,0.00269,,,,,,,0.00252,0.00254,0.00257,0.00266,,,,,,,0.00254,0.00256,0.00258,0.00266,,,,,,,0.00254,0.00256,0.00259,0.00268,,,,,,,0.0025,0.00252,0.00255,0.00263,,,,,,,0.06006,0.07914,0.10633,0.15021,,,,,,,0.05101,0.06816,0.09282,0.13194,,,,,,,0.05903,0.0803,0.10936,0.15766,,,,,,,0.06559,0.08888,0.12052,0.17317,,,,,,,0.02632,0.04069,0.06041,0.09099,,,,,,,0.03259,0.04862,0.07052,0.10531,,,,,,,0.02456,0.03836,0.0575,0.08674,,,,,,,0.03842,0.05472,0.07719,0.11274,,,,,,,0.02404,0.03636,0.05354,0.07871 +Minivan,E85,2040,,,,,,,,0.00075,0.00125,0.00176,,,,,,,,0.00069,0.00113,0.00159,,,,,,,,0.00074,0.00123,0.00174,,,,,,,,0.00078,0.0013,0.00185,,,,,,,,0.0005,0.00082,0.00112,,,,,,,,0.00055,0.00089,0.00123,,,,,,,,0.00049,0.0008,0.0011,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.0005,0.00081,0.0011,,,,,,,,0.02016,0.01276,0.01019,,,,,,,,0.01734,0.01116,0.00905,,,,,,,,0.01984,0.01312,0.01065,,,,,,,,0.02194,0.01448,0.01171,,,,,,,,0.00959,0.00733,0.00649,,,,,,,,0.01157,0.00855,0.00741,,,,,,,,0.00908,0.00702,0.00628,,,,,,,,0.01341,0.00935,0.00787,,,,,,,,0.00889,0.00658,0.00576,,,,,,,,0.97133,1.42139,1.81973,,,,,,,,0.92825,1.37515,1.77015,,,,,,,,0.98225,1.52666,2.00534,,,,,,,,1.06501,1.66015,2.18689,,,,,,,,0.80264,1.34667,1.79565,,,,,,,,0.84498,1.40849,1.88097,,,,,,,,0.82819,1.38808,1.84726,,,,,,,,0.87791,1.39731,1.82908,,,,,,,,0.74962,1.19987,1.55483,,,,,,,,260.29598,262.81012,266.93274,,,,,,,,262.18236,264.51678,268.35701,,,,,,,,265.95811,268.41523,272.45615,,,,,,,,260.09501,262.55362,266.60454,,,,,,,,265.85198,267.55834,270.40867,,,,,,,,261.82278,263.70337,266.8306,,,,,,,,263.89404,265.52697,268.2671,,,,,,,,264.09855,266.07588,269.35358,,,,,,,,259.92536,261.72755,264.70121,,,,,,,,0.00579,0.0065,0.00766,,,,,,,,0.0058,0.00651,0.00766,,,,,,,,0.00589,0.0066,0.00776,,,,,,,,0.00568,0.00638,0.00752,,,,,,,,0.00586,0.00657,0.00773,,,,,,,,0.00574,0.00644,0.00758,,,,,,,,0.00579,0.0065,0.00765,,,,,,,,0.00584,0.00655,0.00771,,,,,,,,0.00589,0.00661,0.00777,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01782,0.02071,0.02668,,,,,,,,0.01782,0.02071,0.02667,,,,,,,,0.01773,0.0206,0.02654,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01774,0.02062,0.02656,,,,,,,,0.01779,0.02068,0.02663,,,,,,,,0.01783,0.02072,0.02669,,,,,,,,0.01787,0.02077,0.02675,,,,,,,,0.04096,0.05997,0.08265,,,,,,,,0.03942,0.05788,0.08012,,,,,,,,0.04057,0.06274,0.08647,,,,,,,,0.04234,0.06652,0.09162,,,,,,,,0.03171,0.05252,0.07409,,,,,,,,0.03496,0.05693,0.07973,,,,,,,,0.03233,0.05307,0.07496,,,,,,,,0.03731,0.05906,0.08217,,,,,,,,0.03231,0.05102,0.07142,,,,,,,,0.00148,0.00234,0.0031,,,,,,,,0.00141,0.00222,0.00293,,,,,,,,0.00146,0.0023,0.00305,,,,,,,,0.00149,0.00237,0.00315,,,,,,,,0.00123,0.0019,0.00246,,,,,,,,0.00126,0.00196,0.00255,,,,,,,,0.00123,0.0019,0.00245,,,,,,,,0.00132,0.00206,0.00269,,,,,,,,0.00125,0.00194,0.00249,,,,,,,,0.04405,0.04596,0.04772,,,,,,,,0.04528,0.04706,0.04867,,,,,,,,0.04943,0.0513,0.05303,,,,,,,,0.04125,0.04321,0.04503,,,,,,,,0.048,0.04944,0.05066,,,,,,,,0.04378,0.04528,0.04659,,,,,,,,0.04392,0.04534,0.04654,,,,,,,,0.04623,0.04784,0.04925,,,,,,,,0.04584,0.04729,0.0485,,,,,,,,0.00815,0.00984,0.0114,,,,,,,,0.00817,0.00974,0.01118,,,,,,,,0.00879,0.01045,0.01198,,,,,,,,0.00783,0.00956,0.01118,,,,,,,,0.00815,0.00942,0.0105,,,,,,,,0.00769,0.00902,0.01018,,,,,,,,0.00763,0.00888,0.00995,,,,,,,,0.00811,0.00953,0.01078,,,,,,,,0.0079,0.00918,0.01025,,,,,,,,0.00251,0.00253,0.00257,,,,,,,,0.00252,0.00255,0.00258,,,,,,,,0.00256,0.00258,0.00262,,,,,,,,0.0025,0.00253,0.00257,,,,,,,,0.00256,0.00258,0.0026,,,,,,,,0.00252,0.00254,0.00257,,,,,,,,0.00254,0.00256,0.00258,,,,,,,,0.00254,0.00256,0.00259,,,,,,,,0.0025,0.00252,0.00255,,,,,,,,0.05999,0.07904,0.10627,,,,,,,,0.05094,0.06807,0.09277,,,,,,,,0.05895,0.08019,0.1093,,,,,,,,0.06551,0.08876,0.12046,,,,,,,,0.02628,0.04062,0.06038,,,,,,,,0.03255,0.04855,0.07048,,,,,,,,0.02453,0.0383,0.05748,,,,,,,,0.03837,0.05464,0.07715,,,,,,,,0.02401,0.0363,0.05352 +Minivan,E85,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00113,,,,,,,,,0.00074,0.00123,,,,,,,,,0.00078,0.0013,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00054,0.00089,,,,,,,,,0.00049,0.0008,,,,,,,,,0.00059,0.00097,,,,,,,,,0.0005,0.00081,,,,,,,,,0.02016,0.01276,,,,,,,,,0.01734,0.01116,,,,,,,,,0.01983,0.01313,,,,,,,,,0.02194,0.01449,,,,,,,,,0.00959,0.00733,,,,,,,,,0.01157,0.00855,,,,,,,,,0.00908,0.00702,,,,,,,,,0.01341,0.00935,,,,,,,,,0.00889,0.00658,,,,,,,,,0.97057,1.42111,,,,,,,,,0.92751,1.37486,,,,,,,,,0.9814,1.5263,,,,,,,,,1.06408,1.65977,,,,,,,,,0.80191,1.34636,,,,,,,,,0.84421,1.40815,,,,,,,,,0.82745,1.38777,,,,,,,,,0.87715,1.39702,,,,,,,,,0.74899,1.19964,,,,,,,,,260.2849,262.80624,,,,,,,,,262.17197,264.51296,,,,,,,,,265.94722,268.4114,,,,,,,,,260.08405,262.54972,,,,,,,,,265.84418,267.55582,,,,,,,,,261.81425,263.70045,,,,,,,,,263.88663,265.52482,,,,,,,,,264.08983,266.07286,,,,,,,,,259.91741,261.72502,,,,,,,,,0.00579,0.0065,,,,,,,,,0.0058,0.0065,,,,,,,,,0.00589,0.0066,,,,,,,,,0.00567,0.00638,,,,,,,,,0.00586,0.00657,,,,,,,,,0.00574,0.00644,,,,,,,,,0.00578,0.00649,,,,,,,,,0.00584,0.00655,,,,,,,,,0.00588,0.0066,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01782,0.02071,,,,,,,,,0.01782,0.0207,,,,,,,,,0.01773,0.0206,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01774,0.02062,,,,,,,,,0.01779,0.02067,,,,,,,,,0.01783,0.02072,,,,,,,,,0.01787,0.02076,,,,,,,,,0.04093,0.05995,,,,,,,,,0.0394,0.05785,,,,,,,,,0.04054,0.06271,,,,,,,,,0.0423,0.06649,,,,,,,,,0.03168,0.05249,,,,,,,,,0.03493,0.05691,,,,,,,,,0.03231,0.05305,,,,,,,,,0.03728,0.05903,,,,,,,,,0.03229,0.051,,,,,,,,,0.00148,0.00234,,,,,,,,,0.00141,0.00222,,,,,,,,,0.00145,0.0023,,,,,,,,,0.00149,0.00237,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00126,0.00196,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00132,0.00206,,,,,,,,,0.00125,0.00194,,,,,,,,,0.04405,0.04596,,,,,,,,,0.04527,0.04705,,,,,,,,,0.04942,0.0513,,,,,,,,,0.04125,0.0432,,,,,,,,,0.048,0.04943,,,,,,,,,0.04378,0.04528,,,,,,,,,0.04392,0.04534,,,,,,,,,0.04623,0.04784,,,,,,,,,0.04584,0.04728,,,,,,,,,0.00815,0.00983,,,,,,,,,0.00817,0.00974,,,,,,,,,0.00878,0.01044,,,,,,,,,0.00783,0.00956,,,,,,,,,0.00815,0.00942,,,,,,,,,0.00768,0.00902,,,,,,,,,0.00763,0.00888,,,,,,,,,0.00811,0.00953,,,,,,,,,0.0079,0.00918,,,,,,,,,0.00251,0.00253,,,,,,,,,0.00252,0.00255,,,,,,,,,0.00256,0.00258,,,,,,,,,0.0025,0.00253,,,,,,,,,0.00256,0.00258,,,,,,,,,0.00252,0.00254,,,,,,,,,0.00254,0.00256,,,,,,,,,0.00254,0.00256,,,,,,,,,0.0025,0.00252,,,,,,,,,0.05994,0.07901,,,,,,,,,0.0509,0.06804,,,,,,,,,0.0589,0.08016,,,,,,,,,0.06546,0.08873,,,,,,,,,0.02626,0.0406,,,,,,,,,0.03252,0.04852,,,,,,,,,0.0245,0.03828,,,,,,,,,0.03834,0.05462,,,,,,,,,0.02399,0.03629 +Minivan,E85,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00074,,,,,,,,,,0.00078,,,,,,,,,,0.0005,,,,,,,,,,0.00054,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.0005,,,,,,,,,,0.02016,,,,,,,,,,0.01734,,,,,,,,,,0.01983,,,,,,,,,,0.02194,,,,,,,,,,0.00959,,,,,,,,,,0.01157,,,,,,,,,,0.00908,,,,,,,,,,0.01341,,,,,,,,,,0.00888,,,,,,,,,,0.97058,,,,,,,,,,0.92752,,,,,,,,,,0.98142,,,,,,,,,,1.0641,,,,,,,,,,0.80192,,,,,,,,,,0.84422,,,,,,,,,,0.82746,,,,,,,,,,0.87716,,,,,,,,,,0.749,,,,,,,,,,260.28497,,,,,,,,,,262.17179,,,,,,,,,,265.94707,,,,,,,,,,260.08392,,,,,,,,,,265.84404,,,,,,,,,,261.81411,,,,,,,,,,263.88671,,,,,,,,,,264.0896,,,,,,,,,,259.91729,,,,,,,,,,0.00579,,,,,,,,,,0.0058,,,,,,,,,,0.00589,,,,,,,,,,0.00567,,,,,,,,,,0.00586,,,,,,,,,,0.00574,,,,,,,,,,0.00578,,,,,,,,,,0.00584,,,,,,,,,,0.00588,,,,,,,,,,0.0178,,,,,,,,,,0.01782,,,,,,,,,,0.01782,,,,,,,,,,0.01773,,,,,,,,,,0.0178,,,,,,,,,,0.01774,,,,,,,,,,0.01779,,,,,,,,,,0.01783,,,,,,,,,,0.01787,,,,,,,,,,0.04093,,,,,,,,,,0.0394,,,,,,,,,,0.04054,,,,,,,,,,0.04231,,,,,,,,,,0.03168,,,,,,,,,,0.03493,,,,,,,,,,0.03231,,,,,,,,,,0.03728,,,,,,,,,,0.03229,,,,,,,,,,0.00148,,,,,,,,,,0.00141,,,,,,,,,,0.00145,,,,,,,,,,0.00149,,,,,,,,,,0.00123,,,,,,,,,,0.00126,,,,,,,,,,0.00123,,,,,,,,,,0.00132,,,,,,,,,,0.00125,,,,,,,,,,0.04405,,,,,,,,,,0.04527,,,,,,,,,,0.04942,,,,,,,,,,0.04125,,,,,,,,,,0.048,,,,,,,,,,0.04378,,,,,,,,,,0.04392,,,,,,,,,,0.04623,,,,,,,,,,0.04584,,,,,,,,,,0.00815,,,,,,,,,,0.00817,,,,,,,,,,0.00878,,,,,,,,,,0.00783,,,,,,,,,,0.00815,,,,,,,,,,0.00768,,,,,,,,,,0.00763,,,,,,,,,,0.00811,,,,,,,,,,0.0079,,,,,,,,,,0.00251,,,,,,,,,,0.00252,,,,,,,,,,0.00256,,,,,,,,,,0.0025,,,,,,,,,,0.00256,,,,,,,,,,0.00252,,,,,,,,,,0.00254,,,,,,,,,,0.00254,,,,,,,,,,0.0025,,,,,,,,,,0.05994,,,,,,,,,,0.0509,,,,,,,,,,0.0589,,,,,,,,,,0.06546,,,,,,,,,,0.02626,,,,,,,,,,0.03252,,,,,,,,,,0.0245,,,,,,,,,,0.03834,,,,,,,,,,0.02399 +Minivan,ELC,1990,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03804,,,,,,,,,,0.04547,,,,,,,,,,0.04117,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,1995,0.04086,0.04086,,,,,,,,,0.04226,0.04226,,,,,,,,,0.04628,0.04628,,,,,,,,,0.03802,0.03802,,,,,,,,,0.04546,0.04546,,,,,,,,,0.04115,0.04115,,,,,,,,,0.0414,0.04139,,,,,,,,,0.04345,0.04345,,,,,,,,,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2000,0.04087,0.04086,0.04086,,,,,,,,0.04226,0.04226,0.04226,,,,,,,,0.04629,0.04628,0.04628,,,,,,,,0.03803,0.03802,0.03802,,,,,,,,0.04547,0.04546,0.04546,,,,,,,,0.04116,0.04115,0.04115,,,,,,,,0.0414,0.0414,0.04139,,,,,,,,0.04346,0.04345,0.04345,,,,,,,,0.04327,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.01893,0.0268,,,,,,,,,0.01655,0.02337,,,,,,,,,0.01794,0.02545,,,,,,,,,0.01963,0.02791,,,,,,,,,0.00992,0.01387,,,,,,,,,0.01141,0.01662,,,,,,,,,0.00975,0.01359,,,,,,,,,0.01316,0.01851,,,,,,,,,0.01,0.01392,,,,,,,,,0.08133,0.09903,,,,,,,,,0.07751,0.09277,,,,,,,,,0.08476,0.10171,,,,,,,,,0.08022,0.09898,,,,,,,,,0.06632,0.07501,,,,,,,,,0.06525,0.07698,,,,,,,,,0.0618,0.07021,,,,,,,,,0.07134,0.08323,,,,,,,,,0.06415,0.07268,,,,,,,,,0.04113,0.05679,,,,,,,,,0.03669,0.05018,,,,,,,,,0.04004,0.05504,,,,,,,,,0.04231,0.0589,,,,,,,,,0.02436,0.03204,,,,,,,,,0.02669,0.03692,,,,,,,,,0.02345,0.03088,,,,,,,,,0.03032,0.04085,,,,,,,,,0.0241,0.03165,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2005,0.04088,0.04088,0.04087,0.04087,,,,,,,0.04228,0.04227,0.04227,0.04227,,,,,,,0.0463,0.04629,0.04629,0.04629,,,,,,,0.03804,0.03804,0.03803,0.03803,,,,,,,0.04548,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04117,0.04117,0.04116,,,,,,,0.04142,0.04141,0.04141,0.04141,,,,,,,0.04347,0.04346,0.04346,0.04346,,,,,,,0.04329,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0082,0.01119,0.01829,,,,,,,,0.00733,0.00999,0.01617,,,,,,,,0.00791,0.01081,0.01761,,,,,,,,0.00844,0.01157,0.01904,,,,,,,,0.0049,0.00669,0.01039,,,,,,,,0.00542,0.0076,0.01165,,,,,,,,0.00482,0.00656,0.01016,,,,,,,,0.00608,0.0083,0.01321,,,,,,,,0.00493,0.00671,0.01038,,,,,,,,0.05834,0.06511,0.08105,,,,,,,,0.0578,0.06379,0.07759,,,,,,,,0.06317,0.06976,0.08507,,,,,,,,0.05612,0.06326,0.08015,,,,,,,,0.05567,0.05957,0.06767,,,,,,,,0.0525,0.05751,0.06625,,,,,,,,0.05139,0.05518,0.06302,,,,,,,,0.05626,0.06118,0.07206,,,,,,,,0.05349,0.05733,0.06528,,,,,,,,0.02078,0.02678,0.04088,,,,,,,,0.01925,0.02455,0.03676,,,,,,,,0.02094,0.02677,0.04032,,,,,,,,0.02098,0.0273,0.04224,,,,,,,,0.01493,0.01838,0.02555,,,,,,,,0.0154,0.01969,0.02756,,,,,,,,0.01423,0.01758,0.02452,,,,,,,,0.01698,0.02133,0.03096,,,,,,,,0.01467,0.01807,0.0251,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2010,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00281,0.00499,0.00696,0.01332,,,,,,,0.00263,0.00464,0.00644,0.01203,,,,,,,0.00276,0.0049,0.00683,0.01298,,,,,,,0.00288,0.00514,0.00719,0.01389,,,,,,,0.00217,0.00376,0.00511,0.00864,,,,,,,0.00226,0.00398,0.00537,0.00935,,,,,,,0.00216,0.00373,0.00505,0.00848,,,,,,,0.0024,0.0042,0.00577,0.0103,,,,,,,0.0022,0.0038,0.00514,0.00863,,,,,,,0.04708,0.05203,0.05658,0.07114,,,,,,,0.04801,0.05252,0.05662,0.06934,,,,,,,0.0524,0.05725,0.06171,0.07583,,,,,,,0.04445,0.04961,0.05442,0.06985,,,,,,,0.05003,0.05343,0.05635,0.06418,,,,,,,0.04594,0.0499,0.05275,0.06166,,,,,,,0.04591,0.04925,0.05211,0.05967,,,,,,,0.04861,0.05256,0.05605,0.06627,,,,,,,0.04786,0.05126,0.05415,0.06181,,,,,,,0.01083,0.01521,0.01923,0.03211,,,,,,,0.01059,0.01458,0.0182,0.02945,,,,,,,0.01141,0.0157,0.01965,0.03214,,,,,,,0.01066,0.01523,0.01948,0.03313,,,,,,,0.00994,0.01295,0.01554,0.02246,,,,,,,0.0096,0.01296,0.01562,0.02351,,,,,,,0.00938,0.01234,0.01487,0.02156,,,,,,,0.01021,0.0137,0.0168,0.02583,,,,,,,0.00969,0.01269,0.01525,0.02202,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2015,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00269,0.00442,0.00636,0.01048,,,,,,,0.00256,0.00419,0.00599,0.0097,,,,,,,0.00264,0.00435,0.00625,0.01028,,,,,,,0.00272,0.00449,0.00648,0.01079,,,,,,,0.00219,0.00356,0.00498,0.00764,,,,,,,0.00228,0.00367,0.00517,0.00806,,,,,,,0.00219,0.00355,0.00496,0.00756,,,,,,,0.00238,0.00388,0.00549,0.00866,,,,,,,0.00223,0.00362,0.00504,0.00768,,,,,,,0.04672,0.05055,0.055,0.06468,,,,,,,0.04777,0.05134,0.05543,0.06409,,,,,,,0.05205,0.05581,0.06018,0.06966,,,,,,,0.04399,0.04791,0.05252,0.06274,,,,,,,0.05004,0.05291,0.05601,0.06196,,,,,,,0.04615,0.04891,0.05224,0.05879,,,,,,,0.04594,0.04879,0.05185,0.05764,,,,,,,0.0485,0.05171,0.05531,0.06258,,,,,,,0.0479,0.05079,0.05388,0.05973,,,,,,,0.01051,0.01389,0.01783,0.0264,,,,,,,0.01038,0.01353,0.01715,0.02481,,,,,,,0.01111,0.01443,0.0183,0.02669,,,,,,,0.01025,0.01372,0.0178,0.02684,,,,,,,0.00995,0.01249,0.01524,0.0205,,,,,,,0.00964,0.01223,0.01517,0.02096,,,,,,,0.00941,0.01193,0.01464,0.01976,,,,,,,0.01011,0.01296,0.01614,0.02258,,,,,,,0.00972,0.01228,0.01502,0.02019,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2020,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00231,0.00374,0.00497,0.00889,,,,,,,0.0022,0.00355,0.00469,0.00828,,,,,,,0.00227,0.00368,0.00488,0.00873,,,,,,,0.00233,0.00379,0.00505,0.00912,,,,,,,0.00191,0.00304,0.00393,0.00663,,,,,,,0.00196,0.00313,0.00407,0.00697,,,,,,,0.00191,0.00303,0.00391,0.00657,,,,,,,0.00206,0.0033,0.00431,0.00745,,,,,,,0.00195,0.00309,0.00398,0.00667,,,,,,,0.04585,0.04904,0.05187,0.06112,,,,,,,0.04697,0.04995,0.05255,0.06093,,,,,,,0.05119,0.05433,0.05712,0.0662,,,,,,,0.04308,0.04634,0.04929,0.05897,,,,,,,0.04943,0.05182,0.05378,0.05983,,,,,,,0.04525,0.04777,0.04987,0.05645,,,,,,,0.04534,0.04771,0.04964,0.05556,,,,,,,0.04779,0.05047,0.05275,0.05995,,,,,,,0.04729,0.04969,0.05164,0.05762,,,,,,,0.00974,0.01256,0.01507,0.02325,,,,,,,0.00967,0.0123,0.01461,0.02202,,,,,,,0.01035,0.01312,0.01559,0.02363,,,,,,,0.00945,0.01234,0.01494,0.02351,,,,,,,0.00941,0.01153,0.01326,0.01862,,,,,,,0.00899,0.01122,0.01307,0.01889,,,,,,,0.00888,0.01098,0.01268,0.01792,,,,,,,0.00949,0.01186,0.01388,0.02025,,,,,,,0.00918,0.01131,0.01303,0.01832,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2025,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00155,0.00245,0.00325,0.00641,,,,,,,0.00149,0.00235,0.0031,0.00598,,,,,,,0.00152,0.0024,0.00317,0.0063,,,,,,,0.00156,0.00248,0.00328,0.00657,,,,,,,0.00134,0.00208,0.00268,0.0048,,,,,,,0.00136,0.00212,0.00275,0.00504,,,,,,,0.00128,0.00198,0.00254,0.00476,,,,,,,0.00138,0.00216,0.00282,0.00539,,,,,,,0.00125,0.00194,0.00249,0.00483,,,,,,,0.0442,0.0462,0.04803,0.05547,,,,,,,0.04545,0.04733,0.04903,0.05575,,,,,,,0.04955,0.0515,0.05327,0.06065,,,,,,,0.04141,0.04344,0.04531,0.05311,,,,,,,0.04823,0.0498,0.05112,0.05587,,,,,,,0.04399,0.04561,0.04701,0.05223,,,,,,,0.04403,0.0455,0.04673,0.05166,,,,,,,0.04635,0.04803,0.0495,0.05539,,,,,,,0.04585,0.04729,0.0485,0.05367,,,,,,,0.00827,0.01004,0.01166,0.01825,,,,,,,0.00832,0.00998,0.01148,0.01743,,,,,,,0.00889,0.01061,0.01219,0.01872,,,,,,,0.00795,0.00975,0.01141,0.01832,,,,,,,0.00835,0.00973,0.01091,0.01512,,,,,,,0.00786,0.0093,0.01054,0.01516,,,,,,,0.00771,0.00902,0.0101,0.01448,,,,,,,0.00821,0.0097,0.01099,0.01621,,,,,,,0.00791,0.00919,0.01026,0.01482,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2030,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00155,0.00244,0.00325,0.00535,,,,,,,0.00149,0.00234,0.0031,0.00505,,,,,,,0.00152,0.00239,0.00318,0.00522,,,,,,,0.00156,0.00246,0.00329,0.00545,,,,,,,0.00133,0.00207,0.00269,0.00422,,,,,,,0.00135,0.00211,0.00275,0.00437,,,,,,,0.00127,0.00197,0.00255,0.00397,,,,,,,0.00138,0.00215,0.00282,0.0045,,,,,,,0.00123,0.00191,0.00246,0.00381,,,,,,,0.0442,0.04617,0.04804,0.05298,,,,,,,0.04544,0.04731,0.04904,0.05358,,,,,,,0.04954,0.05147,0.05329,0.05807,,,,,,,0.0414,0.0434,0.04533,0.05042,,,,,,,0.04822,0.04978,0.05113,0.05456,,,,,,,0.04398,0.04559,0.04702,0.05068,,,,,,,0.04402,0.04548,0.04674,0.04989,,,,,,,0.04635,0.04801,0.04951,0.05335,,,,,,,0.0458,0.04722,0.0484,0.05139,,,,,,,0.00827,0.01001,0.01167,0.01603,,,,,,,0.00831,0.00996,0.01149,0.01551,,,,,,,0.00889,0.01059,0.0122,0.01643,,,,,,,0.00795,0.00972,0.01142,0.01593,,,,,,,0.00834,0.00972,0.01092,0.01395,,,,,,,0.00786,0.00928,0.01055,0.01378,,,,,,,0.0077,0.00899,0.01011,0.0129,,,,,,,0.00821,0.00968,0.011,0.0144,,,,,,,0.00786,0.00911,0.01016,0.01281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2035,,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00154,0.00244,0.00326,0.00495,,,,,,,0.00148,0.00235,0.00311,0.00468,,,,,,,0.00151,0.00239,0.00319,0.00483,,,,,,,0.00155,0.00247,0.0033,0.00504,,,,,,,0.00133,0.00207,0.00269,0.00391,,,,,,,0.00135,0.00211,0.00276,0.00405,,,,,,,0.00127,0.00197,0.00255,0.00368,,,,,,,0.00137,0.00216,0.00283,0.00417,,,,,,,0.00123,0.00191,0.00246,0.00353,,,,,,,0.04418,0.04618,0.04806,0.05206,,,,,,,0.04543,0.04731,0.04905,0.05273,,,,,,,0.04953,0.05148,0.0533,0.05718,,,,,,,0.04137,0.04341,0.04535,0.04949,,,,,,,0.04821,0.04978,0.05114,0.05389,,,,,,,0.04397,0.0456,0.04703,0.04997,,,,,,,0.044,0.04549,0.04675,0.04928,,,,,,,0.04634,0.04802,0.04952,0.05261,,,,,,,0.0458,0.04721,0.0484,0.05079,,,,,,,0.00825,0.01002,0.01168,0.01522,,,,,,,0.00829,0.00996,0.0115,0.01475,,,,,,,0.00887,0.0106,0.01221,0.01564,,,,,,,0.00793,0.00973,0.01144,0.01511,,,,,,,0.00833,0.00972,0.01093,0.01336,,,,,,,0.00784,0.00928,0.01056,0.01316,,,,,,,0.00769,0.009,0.01012,0.01236,,,,,,,0.0082,0.00968,0.01101,0.01375,,,,,,,0.00786,0.00911,0.01016,0.01227,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2040,,,,,,,,0.04087,0.04087,0.04087,,,,,,,,0.04227,0.04227,0.04227,,,,,,,,0.04629,0.04629,0.04629,,,,,,,,0.03803,0.03803,0.03803,,,,,,,,0.04547,0.04547,0.04547,,,,,,,,0.04116,0.04116,0.04116,,,,,,,,0.04141,0.04141,0.04141,,,,,,,,0.04346,0.04346,0.04346,,,,,,,,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00154,0.00245,0.0031,,,,,,,,0.00149,0.00235,0.00293,,,,,,,,0.00151,0.0024,0.00305,,,,,,,,0.00155,0.00247,0.00315,,,,,,,,0.00133,0.00208,0.00246,,,,,,,,0.00135,0.00211,0.00255,,,,,,,,0.00127,0.00198,0.00245,,,,,,,,0.00138,0.00216,0.00269,,,,,,,,0.00123,0.00191,0.00246,,,,,,,,0.04418,0.04619,0.04773,,,,,,,,0.04543,0.04732,0.04868,,,,,,,,0.04953,0.05149,0.05304,,,,,,,,0.04138,0.04343,0.04504,,,,,,,,0.04821,0.04979,0.05066,,,,,,,,0.04397,0.0456,0.04659,,,,,,,,0.04401,0.0455,0.04655,,,,,,,,0.04634,0.04802,0.04926,,,,,,,,0.04579,0.04721,0.04841,,,,,,,,0.00826,0.01003,0.0114,,,,,,,,0.0083,0.00997,0.01118,,,,,,,,0.00888,0.01061,0.01198,,,,,,,,0.00793,0.00974,0.01118,,,,,,,,0.00833,0.00973,0.0105,,,,,,,,0.00785,0.00929,0.01018,,,,,,,,0.0077,0.00901,0.00995,,,,,,,,0.0082,0.00969,0.01079,,,,,,,,0.00785,0.00911,0.01016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2045,,,,,,,,,0.04087,0.04087,,,,,,,,,0.04227,0.04227,,,,,,,,,0.04629,0.04629,,,,,,,,,0.03803,0.03803,,,,,,,,,0.04547,0.04547,,,,,,,,,0.04116,0.04116,,,,,,,,,0.04141,0.04141,,,,,,,,,0.04346,0.04346,,,,,,,,,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00154,0.00235,,,,,,,,,0.00149,0.00223,,,,,,,,,0.00151,0.0023,,,,,,,,,0.00156,0.00237,,,,,,,,,0.00133,0.00191,,,,,,,,,0.00135,0.00196,,,,,,,,,0.00127,0.0019,,,,,,,,,0.00138,0.00207,,,,,,,,,0.00123,0.00191,,,,,,,,,0.04419,0.04597,,,,,,,,,0.04544,0.04707,,,,,,,,,0.04954,0.05132,,,,,,,,,0.04139,0.04322,,,,,,,,,0.04822,0.04944,,,,,,,,,0.04398,0.04529,,,,,,,,,0.04402,0.04535,,,,,,,,,0.04634,0.04785,,,,,,,,,0.04579,0.04721,,,,,,,,,0.00826,0.00985,,,,,,,,,0.0083,0.00976,,,,,,,,,0.00888,0.01046,,,,,,,,,0.00794,0.00958,,,,,,,,,0.00834,0.00943,,,,,,,,,0.00785,0.00903,,,,,,,,,0.0077,0.00889,,,,,,,,,0.0082,0.00954,,,,,,,,,0.00785,0.00911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,ELC,2050,,,,,,,,,,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03803,,,,,,,,,,0.04547,,,,,,,,,,0.04116,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00149,,,,,,,,,,0.00142,,,,,,,,,,0.00146,,,,,,,,,,0.0015,,,,,,,,,,0.00123,,,,,,,,,,0.00126,,,,,,,,,,0.00123,,,,,,,,,,0.00132,,,,,,,,,,0.00123,,,,,,,,,,0.04406,,,,,,,,,,0.04528,,,,,,,,,,0.04944,,,,,,,,,,0.04126,,,,,,,,,,0.04801,,,,,,,,,,0.04378,,,,,,,,,,0.04393,,,,,,,,,,0.04624,,,,,,,,,,0.04579,,,,,,,,,,0.00816,,,,,,,,,,0.00818,,,,,,,,,,0.0088,,,,,,,,,,0.00784,,,,,,,,,,0.00816,,,,,,,,,,0.00769,,,,,,,,,,0.00763,,,,,,,,,,0.00812,,,,,,,,,,0.00785,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Minivan,GSL,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11442,,,,,,,,,,0.09585,,,,,,,,,,0.12464,,,,,,,,,,0.12966,,,,,,,,,,0.10814,,,,,,,,,,0.11861,,,,,,,,,,0.10835,,,,,,,,,,0.1068,,,,,,,,,,0.08482,,,,,,,,,,70.15811,,,,,,,,,,62.54196,,,,,,,,,,77.96616,,,,,,,,,,80.91697,,,,,,,,,,72.38807,,,,,,,,,,77.997,,,,,,,,,,74.71533,,,,,,,,,,70.08991,,,,,,,,,,57.1543,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.06226,,,,,,,,,,4.76972,,,,,,,,,,5.34074,,,,,,,,,,5.66766,,,,,,,,,,5.23406,,,,,,,,,,5.50192,,,,,,,,,,5.24575,,,,,,,,,,5.53574,,,,,,,,,,4.51405,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02745,,,,,,,,,,0.03097,,,,,,,,,,0.04398,,,,,,,,,,0.04032,,,,,,,,,,0.03589,,,,,,,,,,0.03955,,,,,,,,,,0.03599,,,,,,,,,,0.03558,,,,,,,,,,0.01678,,,,,,,,,,4.22564,,,,,,,,,,3.72577,,,,,,,,,,4.6816,,,,,,,,,,4.84299,,,,,,,,,,4.53843,,,,,,,,,,4.7422,,,,,,,,,,4.52984,,,,,,,,,,4.39906,,,,,,,,,,3.57938,,,,,,,,, +Minivan,GSL,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07834,0.08955,,,,,,,,,0.07253,0.07705,,,,,,,,,0.0878,0.10134,,,,,,,,,0.09006,0.10986,,,,,,,,,0.07892,0.091,,,,,,,,,0.08377,0.10009,,,,,,,,,0.07835,0.09138,,,,,,,,,0.07869,0.09077,,,,,,,,,0.06582,0.0695,,,,,,,,,33.10098,45.87751,,,,,,,,,32.15986,42.12287,,,,,,,,,37.73945,51.15126,,,,,,,,,39.42476,55.14485,,,,,,,,,35.87329,48.96518,,,,,,,,,37.91924,52.52611,,,,,,,,,37.02987,51.08168,,,,,,,,,35.25583,48.79992,,,,,,,,,28.90452,38.98605,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.16127,4.97008,,,,,,,,,4.10575,4.68902,,,,,,,,,4.49028,5.09867,,,,,,,,,4.67966,5.60769,,,,,,,,,4.38662,5.19231,,,,,,,,,4.5827,5.38989,,,,,,,,,4.44028,5.22717,,,,,,,,,4.65406,5.48301,,,,,,,,,3.85393,4.48793,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02146,0.01103,,,,,,,,,0.02436,0.01117,,,,,,,,,0.03475,0.01158,,,,,,,,,0.03159,0.01935,,,,,,,,,0.0286,0.0114,,,,,,,,,0.0313,0.0113,,,,,,,,,0.02863,0.0155,,,,,,,,,0.02813,0.01763,,,,,,,,,0.01323,0.00648,,,,,,,,,2.92649,3.62043,,,,,,,,,2.80136,3.29616,,,,,,,,,3.32222,4.11029,,,,,,,,,3.37334,4.38736,,,,,,,,,3.20876,4.09625,,,,,,,,,3.29169,4.27263,,,,,,,,,3.18059,4.08943,,,,,,,,,3.16823,4.03319,,,,,,,,,2.68496,3.22983,,,,,,,, +Minivan,GSL,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04452,0.06518,0.08837,,,,,,,,0.04162,0.0626,0.07845,,,,,,,,0.05049,0.07551,0.10228,,,,,,,,0.05159,0.07861,0.10452,,,,,,,,0.03887,0.06376,0.08816,,,,,,,,0.04211,0.06812,0.09354,,,,,,,,0.03822,0.06397,0.08493,,,,,,,,0.04204,0.0669,0.08657,,,,,,,,0.03462,0.05792,0.07008,,,,,,,,10.25924,16.32697,30.09906,,,,,,,,9.98254,16.06926,27.40491,,,,,,,,11.91904,19.01514,34.36357,,,,,,,,12.31401,19.77596,34.97153,,,,,,,,9.93079,17.0245,31.42878,,,,,,,,10.63553,17.96475,32.92924,,,,,,,,10.12637,17.55821,31.45074,,,,,,,,10.3463,17.48581,30.53883,,,,,,,,8.45249,15.00519,24.89272,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.51289,2.09817,3.52388,,,,,,,,1.48773,2.07981,3.33735,,,,,,,,1.74442,2.29361,3.74827,,,,,,,,1.78657,2.4447,3.86239,,,,,,,,1.65781,2.2775,3.75943,,,,,,,,1.72771,2.32834,3.81478,,,,,,,,1.68155,2.32093,3.63384,,,,,,,,1.76187,2.41938,3.81055,,,,,,,,1.46662,2.0601,3.17983,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.02295,0.01114,0.01008,,,,,,,,0.02608,0.01132,0.01014,,,,,,,,0.03719,0.01173,0.0103,,,,,,,,0.03387,0.01963,0.01006,,,,,,,,0.03077,0.01166,0.01023,,,,,,,,0.03367,0.01153,0.01008,,,,,,,,0.03086,0.01587,0.01013,,,,,,,,0.0302,0.01797,0.00913,,,,,,,,0.01419,0.00658,0.00474,,,,,,,,0.96721,1.62997,2.94868,,,,,,,,0.9384,1.60171,2.67264,,,,,,,,1.11521,1.90115,3.40351,,,,,,,,1.14458,1.9736,3.45647,,,,,,,,0.9639,1.73705,3.22046,,,,,,,,1.00501,1.80614,3.30293,,,,,,,,0.95405,1.73508,3.11109,,,,,,,,1.01635,1.7985,3.12546,,,,,,,,0.84435,1.56149,2.56228,,,,,,, +Minivan,GSL,2005,0.00212,0.00345,0.00512,0.01381,,,,,,,0.0019,0.00296,0.00438,0.01185,,,,,,,0.00234,0.00262,0.00384,0.01323,,,,,,,0.00243,0.00359,0.00535,0.01487,,,,,,,0.00122,0.00192,0.00282,0.00673,,,,,,,0.00143,0.00196,0.00287,0.00786,,,,,,,0.00115,0.00175,0.00256,0.00624,,,,,,,0.00159,0.00223,0.00328,0.00914,,,,,,,0.00102,0.00151,0.00219,0.00616,,,,,,,0.0304,0.0231,0.02441,0.05089,,,,,,,0.02781,0.02093,0.0227,0.04603,,,,,,,0.03109,0.02347,0.02541,0.05799,,,,,,,0.03159,0.0268,0.02714,0.06115,,,,,,,0.01962,0.01705,0.01961,0.0483,,,,,,,0.0219,0.01846,0.02085,0.05156,,,,,,,0.01879,0.0177,0.01927,0.04665,,,,,,,0.02384,0.02035,0.02093,0.04966,,,,,,,0.01598,0.01375,0.01558,0.04103,,,,,,,4.99765,7.58544,9.83556,17.89797,,,,,,,4.86072,7.46372,9.85161,17.05656,,,,,,,5.37981,8.80655,11.78216,20.64445,,,,,,,5.58924,9.35159,11.56521,21.52199,,,,,,,4.82392,7.90825,10.69778,19.1373,,,,,,,4.98838,8.29473,11.16233,19.90684,,,,,,,4.95523,8.51253,10.80572,19.32202,,,,,,,5.07636,8.7869,10.75709,19.10472,,,,,,,4.01788,7.33294,9.65067,16.43486,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.57688,0.9134,1.18931,1.78731,,,,,,,0.56654,0.89384,1.1866,1.72824,,,,,,,0.61406,0.9886,1.29365,1.95725,,,,,,,0.61236,1.08676,1.35205,2.0448,,,,,,,0.57469,0.95493,1.26301,1.93786,,,,,,,0.59498,0.9886,1.29366,1.97501,,,,,,,0.58325,1.00264,1.26134,1.89346,,,,,,,0.62794,1.04584,1.29154,2.00371,,,,,,,0.49137,0.70134,0.92184,1.73463,,,,,,,0.00461,0.00735,0.01002,0.02419,,,,,,,0.00422,0.00653,0.00888,0.02126,,,,,,,0.00489,0.00602,0.00813,0.0231,,,,,,,0.00503,0.00746,0.01019,0.02536,,,,,,,0.00294,0.0046,0.00628,0.01327,,,,,,,0.00331,0.0047,0.0064,0.01503,,,,,,,0.00285,0.00434,0.0059,0.01265,,,,,,,0.00362,0.0052,0.00707,0.01704,,,,,,,0.00263,0.00393,0.00532,0.01261,,,,,,,0.0508,0.05663,0.06269,0.09455,,,,,,,0.05134,0.05618,0.06148,0.0892,,,,,,,0.05696,0.05906,0.06378,0.0976,,,,,,,0.04901,0.05418,0.06036,0.09466,,,,,,,0.0517,0.0551,0.05878,0.07417,,,,,,,0.04825,0.05103,0.05475,0.07388,,,,,,,0.04743,0.05048,0.05385,0.06862,,,,,,,0.05122,0.05449,0.05856,0.08076,,,,,,,0.04876,0.05141,0.05438,0.07035,,,,,,,0.0141,0.01926,0.02462,0.05281,,,,,,,0.01351,0.0178,0.02249,0.04702,,,,,,,0.01544,0.0173,0.02148,0.0514,,,,,,,0.01467,0.01925,0.02472,0.05506,,,,,,,0.01141,0.01442,0.01768,0.0313,,,,,,,0.01162,0.01409,0.01738,0.03431,,,,,,,0.0107,0.01341,0.0164,0.02946,,,,,,,0.01251,0.01541,0.01901,0.03864,,,,,,,0.01046,0.01282,0.01544,0.02957,,,,,,,0.02405,0.01163,0.01058,0.00353,,,,,,,0.02735,0.01183,0.01066,0.00355,,,,,,,0.03899,0.01224,0.01081,0.0036,,,,,,,0.03553,0.02052,0.01057,0.00352,,,,,,,0.03234,0.01222,0.01082,0.00358,,,,,,,0.03538,0.01208,0.01065,0.00353,,,,,,,0.03246,0.01665,0.01074,0.00355,,,,,,,0.0317,0.01881,0.00963,0.00351,,,,,,,0.0149,0.00689,0.005,0.00324,,,,,,,0.42648,0.52475,0.72106,1.74636,,,,,,,0.39685,0.4901,0.68226,1.61973,,,,,,,0.44587,0.54758,0.76075,1.96562,,,,,,,0.45678,0.61332,0.80526,2.04318,,,,,,,0.31439,0.43792,0.63349,1.79482,,,,,,,0.33942,0.46036,0.65752,1.84916,,,,,,,0.3037,0.44636,0.61847,1.73899,,,,,,,0.37251,0.50954,0.67999,1.82721,,,,,,,0.26545,0.37473,0.53675,1.55347,,,,,, +Minivan,GSL,2010,,0.00157,0.00279,0.00419,0.01064,,,,,,,0.00137,0.00242,0.00368,0.00919,,,,,,,0.00119,0.00209,0.00394,0.01008,,,,,,,0.00165,0.00293,0.00446,0.0114,,,,,,,0.00098,0.0017,0.00241,0.00548,,,,,,,0.00098,0.00169,0.00265,0.00625,,,,,,,0.0009,0.00155,0.00217,0.00497,,,,,,,0.00107,0.00187,0.00296,0.00717,,,,,,,0.00076,0.00131,0.0021,0.00487,,,,,,,0.02165,0.01977,0.01702,0.03478,,,,,,,0.01902,0.01813,0.01548,0.03198,,,,,,,0.02065,0.02041,0.01743,0.03878,,,,,,,0.02443,0.02246,0.01936,0.04164,,,,,,,0.01403,0.01616,0.01352,0.03144,,,,,,,0.01498,0.01685,0.01425,0.03353,,,,,,,0.01448,0.01597,0.01338,0.03062,,,,,,,0.01729,0.01681,0.01489,0.03322,,,,,,,0.0116,0.01246,0.01304,0.0281,,,,,,,3.44122,5.48204,7.17005,12.8182,,,,,,,3.28395,5.43663,7.06009,12.50706,,,,,,,3.80434,6.37546,7.98762,15.05577,,,,,,,3.98428,6.30332,8.47995,15.81808,,,,,,,3.04027,5.57191,7.42771,13.88879,,,,,,,3.25244,5.86101,7.6771,14.49452,,,,,,,3.26874,5.66205,7.60742,14.09616,,,,,,,3.57783,5.74207,7.6032,13.96218,,,,,,,2.90847,5.08664,6.70146,12.06546,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.20883,0.3373,0.30482,0.93964,,,,,,,0.20159,0.33545,0.30099,0.92195,,,,,,,0.20829,0.36041,0.32133,1.05059,,,,,,,0.22515,0.3785,0.33898,1.10943,,,,,,,0.19498,0.34582,0.30516,1.03106,,,,,,,0.20155,0.35686,0.31495,1.05454,,,,,,,0.20478,0.34766,0.30783,1.01449,,,,,,,0.22052,0.35997,0.33564,1.07442,,,,,,,0.1504,0.25481,0.30358,0.93802,,,,,,,0.00277,0.00467,0.00659,0.01716,,,,,,,0.00258,0.00432,0.00611,0.01532,,,,,,,0.00233,0.00389,0.00632,0.01635,,,,,,,0.00281,0.00476,0.00681,0.0179,,,,,,,0.00224,0.00368,0.00491,0.01041,,,,,,,0.00218,0.00359,0.0051,0.0114,,,,,,,0.00212,0.00348,0.00462,0.0098,,,,,,,0.00224,0.00372,0.00539,0.01262,,,,,,,0.0019,0.0031,0.00449,0.00967,,,,,,,0.04704,0.0514,0.05589,0.07973,,,,,,,0.04794,0.05187,0.05601,0.07668,,,,,,,0.05138,0.05487,0.06064,0.08326,,,,,,,0.04438,0.04884,0.05368,0.07885,,,,,,,0.0502,0.05331,0.05601,0.06816,,,,,,,0.04579,0.04885,0.05225,0.06624,,,,,,,0.04588,0.04878,0.05125,0.06262,,,,,,,0.04831,0.05153,0.05532,0.07146,,,,,,,0.04723,0.04978,0.05285,0.06419,,,,,,,0.01078,0.01464,0.01861,0.0397,,,,,,,0.01051,0.01399,0.01766,0.03594,,,,,,,0.01051,0.0136,0.0187,0.03871,,,,,,,0.01058,0.01452,0.01881,0.04107,,,,,,,0.01008,0.01284,0.01523,0.02597,,,,,,,0.00945,0.01216,0.01517,0.02755,,,,,,,0.00935,0.01191,0.0141,0.02416,,,,,,,0.00994,0.01279,0.01614,0.03042,,,,,,,0.00912,0.01138,0.0141,0.02412,,,,,,,0.01101,0.00996,0.00335,0.00348,,,,,,,0.01121,0.01004,0.00337,0.0035,,,,,,,0.0116,0.01018,0.00342,0.00356,,,,,,,0.01944,0.00995,0.00335,0.00348,,,,,,,0.01159,0.01021,0.00342,0.00353,,,,,,,0.01145,0.01005,0.00337,0.00348,,,,,,,0.0158,0.01014,0.00339,0.0035,,,,,,,0.01783,0.00907,0.00335,0.00346,,,,,,,0.00653,0.00471,0.00309,0.0032,,,,,,,0.17173,0.25392,0.35959,1.19151,,,,,,,0.15094,0.23024,0.32985,1.12703,,,,,,,0.16693,0.26014,0.36786,1.31129,,,,,,,0.19399,0.28573,0.40283,1.37226,,,,,,,0.11209,0.19911,0.30088,1.17986,,,,,,,0.11929,0.20746,0.30927,1.20916,,,,,,,0.11318,0.19466,0.29494,1.14792,,,,,,,0.14195,0.22168,0.33388,1.22697,,,,,,,0.10374,0.17458,0.29386,1.08082,,,,, +Minivan,GSL,2015,,,0.00123,0.00219,0.0034,0.00724,,,,,,,0.00111,0.00199,0.00308,0.0064,,,,,,,0.00096,0.00209,0.00324,0.00684,,,,,,,0.00127,0.00229,0.00356,0.00766,,,,,,,0.00086,0.00146,0.0022,0.00419,,,,,,,0.00084,0.00156,0.00238,0.00463,,,,,,,0.00079,0.00134,0.00201,0.00378,,,,,,,0.0009,0.00168,0.00257,0.00515,,,,,,,0.00067,0.00129,0.00195,0.00367,,,,,,,0.0161,0.01245,0.01335,0.02003,,,,,,,0.01479,0.0115,0.0125,0.01863,,,,,,,0.01536,0.01279,0.01394,0.02146,,,,,,,0.01683,0.0141,0.01531,0.02343,,,,,,,0.01147,0.01026,0.01178,0.01756,,,,,,,0.01216,0.01086,0.01235,0.01859,,,,,,,0.01154,0.01025,0.01181,0.01741,,,,,,,0.01273,0.01123,0.01255,0.01882,,,,,,,0.00958,0.01005,0.01142,0.01653,,,,,,,2.41892,4.33656,5.91935,8.93887,,,,,,,2.4121,4.33186,5.94321,8.88324,,,,,,,2.65083,4.79052,6.72794,10.4182,,,,,,,2.63872,5.10144,7.17506,11.02674,,,,,,,2.3185,4.66114,6.60144,9.92382,,,,,,,2.42459,4.7745,6.77574,10.28752,,,,,,,2.38443,4.79547,6.77741,10.16121,,,,,,,2.43831,4.72761,6.59275,9.93234,,,,,,,2.18539,4.24202,5.86133,8.70142,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.12726,0.15779,0.2359,0.43831,,,,,,,0.12661,0.1551,0.23259,0.43239,,,,,,,0.12663,0.16699,0.24899,0.47981,,,,,,,0.13269,0.17823,0.26561,0.51064,,,,,,,0.11633,0.15513,0.23427,0.46006,,,,,,,0.12172,0.16201,0.24382,0.47478,,,,,,,0.11917,0.15687,0.2372,0.45947,,,,,,,0.12664,0.17298,0.25908,0.49504,,,,,,,0.09155,0.15494,0.23271,0.43913,,,,,,,0.00236,0.00401,0.00584,0.01128,,,,,,,0.00224,0.00382,0.00553,0.01038,,,,,,,0.00203,0.00389,0.00565,0.01079,,,,,,,0.00237,0.00407,0.00595,0.01163,,,,,,,0.00203,0.00332,0.00471,0.00801,,,,,,,0.00197,0.00339,0.00484,0.00843,,,,,,,0.00194,0.00316,0.00447,0.00751,,,,,,,0.00199,0.0035,0.00502,0.009,,,,,,,0.00174,0.00308,0.00435,0.00734,,,,,,,0.04603,0.04969,0.05391,0.06664,,,,,,,0.04711,0.05059,0.05449,0.06575,,,,,,,0.05065,0.05481,0.05885,0.07088,,,,,,,0.04324,0.04704,0.05139,0.06479,,,,,,,0.04972,0.05245,0.0555,0.06291,,,,,,,0.0453,0.04835,0.05156,0.05973,,,,,,,0.04545,0.04801,0.05085,0.05764,,,,,,,0.04769,0.05095,0.05435,0.06346,,,,,,,0.04686,0.0497,0.05247,0.05913,,,,,,,0.00989,0.01312,0.01686,0.02812,,,,,,,0.00978,0.01286,0.01631,0.02627,,,,,,,0.00987,0.01354,0.01712,0.02776,,,,,,,0.00957,0.01294,0.01679,0.02864,,,,,,,0.00967,0.01208,0.01478,0.02133,,,,,,,0.00902,0.01172,0.01456,0.02178,,,,,,,0.00896,0.01123,0.01375,0.01975,,,,,,,0.00939,0.01228,0.01528,0.02334,,,,,,,0.0088,0.01131,0.01376,0.01965,,,,,,,0.008,0.00268,0.00271,0.00298,,,,,,,0.00806,0.0027,0.00272,0.003,,,,,,,0.00817,0.00274,0.00276,0.00305,,,,,,,0.00799,0.00268,0.0027,0.00298,,,,,,,0.00821,0.00274,0.00276,0.00302,,,,,,,0.00807,0.0027,0.00272,0.00298,,,,,,,0.00815,0.00272,0.00274,0.003,,,,,,,0.00729,0.00268,0.0027,0.00297,,,,,,,0.00379,0.00248,0.00249,0.00274,,,,,,,0.12213,0.17712,0.29005,0.70735,,,,,,,0.11203,0.16409,0.27404,0.67698,,,,,,,0.11963,0.18088,0.30198,0.74968,,,,,,,0.12863,0.1961,0.32415,0.78504,,,,,,,0.08956,0.14979,0.26931,0.68556,,,,,,,0.09364,0.15442,0.27381,0.69274,,,,,,,0.08864,0.14766,0.26602,0.67221,,,,,,,0.10326,0.16643,0.28822,0.71931,,,,,,,0.08381,0.14803,0.26422,0.66019,,,, +Minivan,GSL,2020,,,,0.00111,0.0019,0.0027,0.00544,,,,,,,0.00102,0.00173,0.00245,0.00487,,,,,,,0.00106,0.00181,0.00257,0.00515,,,,,,,0.00115,0.00198,0.00282,0.00571,,,,,,,0.00077,0.00128,0.00177,0.00335,,,,,,,0.00081,0.00137,0.00191,0.00365,,,,,,,0.00071,0.00118,0.00162,0.00303,,,,,,,0.00087,0.00147,0.00206,0.004,,,,,,,0.00068,0.00114,0.00157,0.00294,,,,,,,0.01244,0.01062,0.01056,0.0145,,,,,,,0.01117,0.00971,0.00975,0.01343,,,,,,,0.01176,0.0108,0.01086,0.0154,,,,,,,0.013,0.01196,0.01199,0.01693,,,,,,,0.00797,0.00826,0.00862,0.01244,,,,,,,0.00867,0.00885,0.00916,0.01322,,,,,,,0.00792,0.00822,0.0086,0.01238,,,,,,,0.00964,0.00923,0.00945,0.01342,,,,,,,0.00815,0.00802,0.00832,0.01173,,,,,,,1.98412,3.05614,3.85917,5.9948,,,,,,,1.94741,3.02329,3.82708,5.94981,,,,,,,2.05353,3.34712,4.32508,6.99457,,,,,,,2.18775,3.57736,4.63745,7.44986,,,,,,,1.85063,3.15883,4.09436,6.61173,,,,,,,1.9126,3.25918,4.23944,6.88954,,,,,,,1.91411,3.25336,4.21327,6.78993,,,,,,,1.97565,3.24561,4.16121,6.63788,,,,,,,1.76168,2.88267,3.66119,5.76271,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.08638,0.14226,0.19125,0.27057,,,,,,,0.08489,0.13968,0.18814,0.26613,,,,,,,0.08555,0.1498,0.20047,0.28994,,,,,,,0.09023,0.16047,0.21466,0.31065,,,,,,,0.07577,0.13797,0.18613,0.27156,,,,,,,0.08,0.14491,0.19507,0.28341,,,,,,,0.07763,0.14,0.18915,0.27379,,,,,,,0.08826,0.155,0.20807,0.29902,,,,,,,0.08019,0.13849,0.18641,0.26551,,,,,,,0.00215,0.00349,0.00466,0.00836,,,,,,,0.00207,0.00334,0.00442,0.00782,,,,,,,0.00209,0.00339,0.00451,0.00805,,,,,,,0.00218,0.00354,0.00474,0.00857,,,,,,,0.00183,0.00291,0.00379,0.00638,,,,,,,0.00186,0.00297,0.00388,0.00662,,,,,,,0.00175,0.00277,0.00359,0.006,,,,,,,0.00191,0.00307,0.00402,0.00695,,,,,,,0.0017,0.0027,0.0035,0.00585,,,,,,,0.04555,0.04855,0.05126,0.06005,,,,,,,0.04671,0.04953,0.05203,0.06001,,,,,,,0.05082,0.05371,0.05631,0.06468,,,,,,,0.04279,0.04586,0.04866,0.05781,,,,,,,0.04928,0.0516,0.05353,0.05938,,,,,,,0.04507,0.04747,0.0495,0.05576,,,,,,,0.04503,0.04721,0.04899,0.05437,,,,,,,0.0475,0.05002,0.05218,0.05893,,,,,,,0.0468,0.04892,0.05067,0.05592,,,,,,,0.00946,0.01211,0.01451,0.02229,,,,,,,0.00943,0.01192,0.01414,0.0212,,,,,,,0.01001,0.01257,0.01487,0.02228,,,,,,,0.00917,0.01189,0.01437,0.02247,,,,,,,0.00928,0.01133,0.01303,0.01821,,,,,,,0.00882,0.01094,0.01274,0.01827,,,,,,,0.0086,0.01052,0.0121,0.01686,,,,,,,0.00923,0.01145,0.01337,0.01934,,,,,,,0.00875,0.01062,0.01217,0.01681,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00231,0.00232,0.00234,0.00256,,,,,,,0.00234,0.00235,0.00238,0.0026,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00235,0.00235,0.00237,0.00257,,,,,,,0.00231,0.00232,0.00234,0.00254,,,,,,,0.00233,0.00234,0.00235,0.00255,,,,,,,0.00229,0.0023,0.00232,0.00252,,,,,,,0.00212,0.00213,0.00214,0.00233,,,,,,,0.10681,0.15223,0.23047,0.5305,,,,,,,0.09676,0.13927,0.21444,0.5076,,,,,,,0.10312,0.1544,0.23771,0.55665,,,,,,,0.11204,0.16827,0.25638,0.58055,,,,,,,0.07433,0.12126,0.20009,0.5114,,,,,,,0.07854,0.12688,0.20621,0.51463,,,,,,,0.073,0.11854,0.19561,0.50045,,,,,,,0.08874,0.13765,0.21919,0.53537,,,,,,,0.07465,0.11889,0.19504,0.49641,,, +Minivan,GSL,2025,,,,,0.00073,0.00122,0.00173,0.00388,,,,,,,0.00067,0.00111,0.00157,0.00349,,,,,,,0.0007,0.00116,0.00165,0.00368,,,,,,,0.00076,0.00127,0.0018,0.00405,,,,,,,0.0005,0.00082,0.00114,0.00243,,,,,,,0.00054,0.00088,0.00122,0.00265,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00057,0.00094,0.00132,0.00289,,,,,,,0.00045,0.00073,0.00101,0.00215,,,,,,,0.00983,0.00771,0.00747,0.01097,,,,,,,0.00855,0.00681,0.00667,0.00999,,,,,,,0.00921,0.00761,0.00744,0.01151,,,,,,,0.01035,0.00853,0.00832,0.01275,,,,,,,0.00522,0.0049,0.00505,0.0086,,,,,,,0.00595,0.00546,0.00556,0.00931,,,,,,,0.00509,0.00481,0.00498,0.0085,,,,,,,0.00692,0.00598,0.00599,0.00962,,,,,,,0.00526,0.00476,0.00489,0.00805,,,,,,,1.32356,1.935,2.47035,4.16644,,,,,,,1.26208,1.86822,2.39568,4.08539,,,,,,,1.34874,2.08374,2.71997,4.83941,,,,,,,1.44605,2.24291,2.93583,5.18495,,,,,,,1.09246,1.8126,2.39449,4.39793,,,,,,,1.15543,1.90448,2.52006,4.63139,,,,,,,1.12816,1.86764,2.46557,4.52168,,,,,,,1.22197,1.93084,2.51333,4.48306,,,,,,,1.0488,1.66708,2.15449,3.822,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.053,0.07997,0.10739,0.18231,,,,,,,0.05125,0.07748,0.10434,0.17814,,,,,,,0.05177,0.08246,0.11045,0.19456,,,,,,,0.05492,0.08867,0.11867,0.20937,,,,,,,0.04278,0.07194,0.09773,0.17747,,,,,,,0.04625,0.07691,0.10402,0.18706,,,,,,,0.04386,0.07318,0.09951,0.17892,,,,,,,0.05133,0.08292,0.11176,0.19769,,,,,,,0.04556,0.07312,0.09907,0.17375,,,,,,,0.00142,0.00225,0.00301,0.00602,,,,,,,0.00136,0.00216,0.00286,0.00565,,,,,,,0.00138,0.00219,0.00291,0.0058,,,,,,,0.00144,0.00228,0.00306,0.00614,,,,,,,0.00121,0.00189,0.00245,0.00465,,,,,,,0.00123,0.00192,0.00251,0.00482,,,,,,,0.00115,0.00179,0.00232,0.00436,,,,,,,0.00126,0.00198,0.0026,0.00505,,,,,,,0.00113,0.00175,0.00227,0.00428,,,,,,,0.04396,0.04582,0.04757,0.05464,,,,,,,0.0452,0.04695,0.04857,0.05506,,,,,,,0.04928,0.05108,0.05275,0.05951,,,,,,,0.04117,0.04307,0.04487,0.05217,,,,,,,0.04799,0.04943,0.05068,0.0556,,,,,,,0.04374,0.04523,0.04655,0.05177,,,,,,,0.0438,0.04515,0.04632,0.05084,,,,,,,0.04613,0.04769,0.04909,0.05468,,,,,,,0.04561,0.04693,0.04807,0.05253,,,,,,,0.00805,0.0097,0.01125,0.01751,,,,,,,0.00809,0.00964,0.01107,0.01682,,,,,,,0.00865,0.01024,0.01172,0.01771,,,,,,,0.00774,0.00942,0.01102,0.01747,,,,,,,0.00813,0.00941,0.01052,0.01486,,,,,,,0.00764,0.00896,0.01013,0.01474,,,,,,,0.00751,0.00871,0.00973,0.01373,,,,,,,0.00801,0.0094,0.01064,0.01558,,,,,,,0.00769,0.00886,0.00986,0.01381,,,,,,,0.00189,0.0019,0.00191,0.00214,,,,,,,0.0019,0.00191,0.00193,0.00215,,,,,,,0.00193,0.00194,0.00195,0.00218,,,,,,,0.00188,0.00189,0.00191,0.00214,,,,,,,0.00193,0.00193,0.00194,0.00216,,,,,,,0.0019,0.0019,0.00192,0.00213,,,,,,,0.00191,0.00192,0.00193,0.00214,,,,,,,0.00189,0.00189,0.00191,0.00212,,,,,,,0.00174,0.00175,0.00176,0.00195,,,,,,,0.09086,0.11927,0.17637,0.44935,,,,,,,0.08047,0.10611,0.16004,0.42736,,,,,,,0.08702,0.11866,0.17889,0.46919,,,,,,,0.09566,0.13072,0.1944,0.48789,,,,,,,0.05626,0.08246,0.13652,0.42084,,,,,,,0.06117,0.0888,0.14363,0.42523,,,,,,,0.05454,0.07911,0.13102,0.40845,,,,,,,0.07055,0.09906,0.15616,0.44357,,,,,,,0.05554,0.07992,0.13197,0.40789,, +Minivan,GSL,2030,,,,,,0.00073,0.00121,0.00172,0.00318,,,,,,,0.00067,0.00111,0.00156,0.00286,,,,,,,0.0007,0.00116,0.00163,0.00302,,,,,,,0.00076,0.00126,0.00178,0.00332,,,,,,,0.0005,0.00082,0.00113,0.002,,,,,,,0.00053,0.00088,0.00121,0.00218,,,,,,,0.00046,0.00075,0.00103,0.00181,,,,,,,0.00057,0.00094,0.00131,0.00237,,,,,,,0.00045,0.00073,0.00101,0.00177,,,,,,,0.0091,0.00694,0.00673,0.00917,,,,,,,0.00781,0.00605,0.00593,0.00818,,,,,,,0.00848,0.00675,0.00662,0.00933,,,,,,,0.00959,0.0076,0.00743,0.01041,,,,,,,0.00446,0.00402,0.00419,0.00636,,,,,,,0.0052,0.00456,0.00468,0.00702,,,,,,,0.00431,0.00391,0.0041,0.00625,,,,,,,0.00617,0.00513,0.00516,0.00749,,,,,,,0.00447,0.00391,0.00405,0.00601,,,,,,,1.17118,1.70869,2.20698,3.28782,,,,,,,1.10423,1.6357,2.12259,3.1829,,,,,,,1.18602,1.82687,2.41172,3.73977,,,,,,,1.27427,1.96961,2.60597,4.02112,,,,,,,0.91825,1.54056,2.06129,3.26417,,,,,,,0.98099,1.62928,2.18245,3.46347,,,,,,,0.94724,1.58654,2.12244,3.35708,,,,,,,1.04789,1.66456,2.19203,3.3993,,,,,,,0.88389,1.42109,1.85989,2.86598,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.0429,0.06364,0.0876,0.13698,,,,,,,0.04106,0.06117,0.08456,0.13284,,,,,,,0.04138,0.0646,0.08899,0.14366,,,,,,,0.04391,0.06942,0.09553,0.15458,,,,,,,0.03266,0.05446,0.07671,0.12705,,,,,,,0.03584,0.05881,0.08225,0.13513,,,,,,,0.03351,0.05544,0.0781,0.12836,,,,,,,0.04,0.06385,0.08888,0.14384,,,,,,,0.03505,0.05596,0.07853,0.12591,,,,,,,0.00142,0.00225,0.00299,0.00497,,,,,,,0.00136,0.00215,0.00284,0.00467,,,,,,,0.00138,0.00218,0.0029,0.00479,,,,,,,0.00143,0.00228,0.00303,0.00508,,,,,,,0.00121,0.00188,0.00244,0.00386,,,,,,,0.00123,0.00192,0.0025,0.004,,,,,,,0.00115,0.00179,0.00231,0.00363,,,,,,,0.00126,0.00198,0.00259,0.00418,,,,,,,0.00112,0.00175,0.00227,0.00355,,,,,,,0.04395,0.04581,0.04752,0.05222,,,,,,,0.04519,0.04694,0.04853,0.05283,,,,,,,0.04927,0.05106,0.05271,0.05719,,,,,,,0.04116,0.04306,0.04481,0.04968,,,,,,,0.04798,0.04942,0.05065,0.05387,,,,,,,0.04374,0.04523,0.04652,0.04995,,,,,,,0.04379,0.04515,0.04628,0.04924,,,,,,,0.04613,0.04769,0.04907,0.05273,,,,,,,0.04561,0.04693,0.04806,0.05094,,,,,,,0.00805,0.00969,0.01121,0.01536,,,,,,,0.00809,0.00963,0.01104,0.01484,,,,,,,0.00865,0.01023,0.01169,0.01565,,,,,,,0.00773,0.00941,0.01096,0.01527,,,,,,,0.00813,0.0094,0.01049,0.01334,,,,,,,0.00764,0.00896,0.0101,0.01313,,,,,,,0.0075,0.0087,0.0097,0.01232,,,,,,,0.00801,0.00939,0.01061,0.01386,,,,,,,0.00769,0.00886,0.00986,0.01241,,,,,,,0.00173,0.00174,0.00177,0.00192,,,,,,,0.00174,0.00175,0.00178,0.00192,,,,,,,0.00177,0.00178,0.00181,0.00195,,,,,,,0.00173,0.00174,0.00177,0.00191,,,,,,,0.00176,0.00178,0.00179,0.00193,,,,,,,0.00174,0.00175,0.00177,0.0019,,,,,,,0.00175,0.00176,0.00178,0.00191,,,,,,,0.00173,0.00174,0.00176,0.0019,,,,,,,0.0016,0.00161,0.00162,0.00175,,,,,,,0.0862,0.11097,0.16487,0.39748,,,,,,,0.07579,0.09787,0.14854,0.37511,,,,,,,0.08233,0.1096,0.16628,0.4108,,,,,,,0.09081,0.12111,0.18091,0.4273,,,,,,,0.05129,0.07306,0.123,0.35862,,,,,,,0.05632,0.07942,0.1302,0.36379,,,,,,,0.0495,0.06962,0.1173,0.34581,,,,,,,0.06547,0.08966,0.14269,0.38263,,,,,,,0.05029,0.07054,0.11865,0.34825, +Minivan,GSL,2035,,,,,,,0.00073,0.0012,0.00172,0.00294,,,,,,,0.00067,0.0011,0.00156,0.00265,,,,,,,0.00069,0.00115,0.00164,0.00279,,,,,,,0.00075,0.00124,0.00179,0.00307,,,,,,,0.0005,0.00081,0.00113,0.00185,,,,,,,0.00053,0.00087,0.00122,0.00201,,,,,,,0.00046,0.00075,0.00103,0.00168,,,,,,,0.00057,0.00093,0.00131,0.00219,,,,,,,0.00045,0.00073,0.00101,0.00163,,,,,,,0.00908,0.00695,0.00672,0.0085,,,,,,,0.00779,0.00605,0.00592,0.00751,,,,,,,0.00846,0.00676,0.00661,0.0085,,,,,,,0.00956,0.00762,0.00742,0.00952,,,,,,,0.00445,0.00402,0.00418,0.00551,,,,,,,0.00519,0.00457,0.00467,0.00614,,,,,,,0.0043,0.00391,0.00409,0.0054,,,,,,,0.00615,0.00513,0.00515,0.00668,,,,,,,0.00446,0.00391,0.00405,0.00526,,,,,,,1.16868,1.71324,2.20253,2.98485,,,,,,,1.10186,1.6388,2.11914,2.87174,,,,,,,1.18344,1.83083,2.4075,3.35064,,,,,,,1.27152,1.9735,2.60169,3.6076,,,,,,,0.91609,1.53888,2.06095,2.86559,,,,,,,0.9787,1.62843,2.1815,3.05052,,,,,,,0.94514,1.58555,2.12161,2.94713,,,,,,,1.0454,1.66457,2.1905,3.02057,,,,,,,0.88179,1.42046,1.85907,2.53587,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04276,0.06341,0.08764,0.12009,,,,,,,0.04092,0.06095,0.08461,0.11594,,,,,,,0.04123,0.06436,0.08905,0.12426,,,,,,,0.04375,0.06913,0.09561,0.13359,,,,,,,0.03255,0.05427,0.07674,0.10779,,,,,,,0.03572,0.0586,0.08229,0.11525,,,,,,,0.03341,0.05522,0.07816,0.10912,,,,,,,0.03987,0.06367,0.0889,0.12337,,,,,,,0.03495,0.05586,0.07851,0.10793,,,,,,,0.00141,0.00224,0.003,0.00461,,,,,,,0.00136,0.00214,0.00285,0.00434,,,,,,,0.00137,0.00217,0.0029,0.00445,,,,,,,0.00143,0.00226,0.00304,0.00471,,,,,,,0.0012,0.00187,0.00245,0.00359,,,,,,,0.00122,0.00191,0.0025,0.00371,,,,,,,0.00115,0.00178,0.00232,0.00338,,,,,,,0.00126,0.00197,0.0026,0.00388,,,,,,,0.00112,0.00175,0.00227,0.00329,,,,,,,0.04394,0.04577,0.04754,0.05138,,,,,,,0.04518,0.04691,0.04854,0.05205,,,,,,,0.04926,0.05103,0.05272,0.05639,,,,,,,0.04114,0.04301,0.04484,0.04884,,,,,,,0.04798,0.0494,0.05066,0.05326,,,,,,,0.04373,0.0452,0.04654,0.04931,,,,,,,0.04379,0.04512,0.0463,0.04869,,,,,,,0.04612,0.04766,0.04908,0.05205,,,,,,,0.0456,0.04692,0.04806,0.05038,,,,,,,0.00804,0.00966,0.01122,0.01462,,,,,,,0.00808,0.0096,0.01105,0.01415,,,,,,,0.00864,0.0102,0.0117,0.01494,,,,,,,0.00772,0.00937,0.01099,0.01452,,,,,,,0.00812,0.00938,0.0105,0.0128,,,,,,,0.00763,0.00893,0.01011,0.01257,,,,,,,0.00749,0.00867,0.00971,0.01183,,,,,,,0.008,0.00937,0.01062,0.01325,,,,,,,0.00768,0.00885,0.00986,0.01191,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00174,0.00175,0.00178,0.00185,,,,,,,0.00176,0.00178,0.00181,0.00188,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00176,0.00178,0.00179,0.00185,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00175,0.00176,0.00178,0.00183,,,,,,,0.00173,0.00174,0.00176,0.00182,,,,,,,0.0016,0.00161,0.00162,0.00168,,,,,,,0.08589,0.11097,0.16466,0.37821,,,,,,,0.07552,0.09786,0.14836,0.35567,,,,,,,0.08204,0.10964,0.16604,0.38863,,,,,,,0.09048,0.12107,0.1807,0.4043,,,,,,,0.05111,0.07292,0.12293,0.33508,,,,,,,0.05612,0.07932,0.13009,0.34042,,,,,,,0.04933,0.06946,0.11726,0.32215,,,,,,,0.06521,0.08942,0.14265,0.35977,,,,,,,0.05012,0.07044,0.11856,0.32597 +Minivan,GSL,2040,,,,,,,,0.00072,0.00121,0.00173,,,,,,,,0.00066,0.0011,0.00157,,,,,,,,0.00069,0.00115,0.00165,,,,,,,,0.00074,0.00125,0.0018,,,,,,,,0.0005,0.00082,0.00114,,,,,,,,0.00053,0.00087,0.00122,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00057,0.00094,0.00132,,,,,,,,0.00045,0.00073,0.00101,,,,,,,,0.00909,0.00694,0.00671,,,,,,,,0.0078,0.00604,0.00591,,,,,,,,0.00848,0.00675,0.0066,,,,,,,,0.00958,0.0076,0.00741,,,,,,,,0.00445,0.00402,0.00417,,,,,,,,0.0052,0.00456,0.00467,,,,,,,,0.0043,0.00391,0.00409,,,,,,,,0.00615,0.00512,0.00515,,,,,,,,0.00446,0.0039,0.00405,,,,,,,,1.17274,1.70986,2.19797,,,,,,,,1.10473,1.63617,2.11558,,,,,,,,1.1875,1.82775,2.40328,,,,,,,,1.27601,1.97041,2.59749,,,,,,,,0.91541,1.53869,2.06067,,,,,,,,0.9788,1.6278,2.18062,,,,,,,,0.94491,1.58502,2.12074,,,,,,,,1.04589,1.66344,2.18904,,,,,,,,0.88133,1.41976,1.85822,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04261,0.06343,0.0877,,,,,,,,0.04078,0.06097,0.08466,,,,,,,,0.04108,0.06439,0.08912,,,,,,,,0.04356,0.06918,0.09572,,,,,,,,0.03244,0.05429,0.07679,,,,,,,,0.0356,0.05862,0.08234,,,,,,,,0.03328,0.05525,0.07822,,,,,,,,0.03976,0.06367,0.08892,,,,,,,,0.03489,0.05583,0.07848,,,,,,,,0.0014,0.00224,0.00301,,,,,,,,0.00135,0.00214,0.00286,,,,,,,,0.00137,0.00217,0.00291,,,,,,,,0.00142,0.00227,0.00305,,,,,,,,0.0012,0.00188,0.00245,,,,,,,,0.00122,0.00191,0.00251,,,,,,,,0.00114,0.00178,0.00232,,,,,,,,0.00125,0.00197,0.0026,,,,,,,,0.00112,0.00175,0.00227,,,,,,,,0.04392,0.04578,0.04756,,,,,,,,0.04517,0.04692,0.04856,,,,,,,,0.04924,0.05104,0.05274,,,,,,,,0.04112,0.04302,0.04487,,,,,,,,0.04796,0.04941,0.05068,,,,,,,,0.04371,0.04521,0.04655,,,,,,,,0.04377,0.04513,0.04631,,,,,,,,0.0461,0.04767,0.04909,,,,,,,,0.0456,0.04692,0.04806,,,,,,,,0.00802,0.00967,0.01124,,,,,,,,0.00806,0.00961,0.01107,,,,,,,,0.00862,0.01021,0.01172,,,,,,,,0.00769,0.00938,0.01101,,,,,,,,0.00811,0.00939,0.01051,,,,,,,,0.00762,0.00894,0.01013,,,,,,,,0.00748,0.00868,0.00973,,,,,,,,0.00799,0.00937,0.01063,,,,,,,,0.00768,0.00885,0.00986,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00174,0.00175,0.00178,,,,,,,,0.00176,0.00178,0.00181,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00176,0.00178,0.00179,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00175,0.00176,0.00178,,,,,,,,0.00173,0.00174,0.00176,,,,,,,,0.00159,0.00161,0.00162,,,,,,,,0.08595,0.11086,0.16458,,,,,,,,0.07555,0.09777,0.14829,,,,,,,,0.08213,0.10952,0.16594,,,,,,,,0.09052,0.12098,0.18066,,,,,,,,0.05106,0.07292,0.12299,,,,,,,,0.0561,0.0793,0.13013,,,,,,,,0.04926,0.06947,0.11733,,,,,,,,0.0651,0.08947,0.14281,,,,,,,,0.05009,0.07042,0.11858 +Minivan,GSL,2045,,,,,,,,,0.00072,0.00121,,,,,,,,,0.00066,0.00111,,,,,,,,,0.00069,0.00116,,,,,,,,,0.00075,0.00126,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00053,0.00087,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00057,0.00094,,,,,,,,,0.00045,0.00073,,,,,,,,,0.00908,0.00693,,,,,,,,,0.00779,0.00604,,,,,,,,,0.00847,0.00674,,,,,,,,,0.00957,0.00759,,,,,,,,,0.00445,0.00401,,,,,,,,,0.00519,0.00455,,,,,,,,,0.0043,0.00391,,,,,,,,,0.00615,0.00512,,,,,,,,,0.00445,0.0039,,,,,,,,,1.1703,1.70666,,,,,,,,,1.10291,1.6338,,,,,,,,,1.18509,1.82476,,,,,,,,,1.27337,1.96738,,,,,,,,,0.91541,1.53891,,,,,,,,,0.9784,1.62753,,,,,,,,,0.9447,1.58486,,,,,,,,,1.04524,1.66273,,,,,,,,,0.88121,1.41952,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04265,0.06351,,,,,,,,,0.04082,0.06104,,,,,,,,,0.04112,0.06448,,,,,,,,,0.04362,0.06929,,,,,,,,,0.03247,0.05434,,,,,,,,,0.03563,0.05869,,,,,,,,,0.03331,0.05532,,,,,,,,,0.03978,0.06372,,,,,,,,,0.0349,0.05584,,,,,,,,,0.00141,0.00225,,,,,,,,,0.00135,0.00215,,,,,,,,,0.00137,0.00218,,,,,,,,,0.00142,0.00228,,,,,,,,,0.0012,0.00188,,,,,,,,,0.00122,0.00192,,,,,,,,,0.00114,0.00179,,,,,,,,,0.00125,0.00198,,,,,,,,,0.00112,0.00175,,,,,,,,,0.04392,0.0458,,,,,,,,,0.04517,0.04693,,,,,,,,,0.04925,0.05106,,,,,,,,,0.04113,0.04305,,,,,,,,,0.04797,0.04942,,,,,,,,,0.04372,0.04522,,,,,,,,,0.04377,0.04514,,,,,,,,,0.04611,0.04768,,,,,,,,,0.0456,0.04692,,,,,,,,,0.00802,0.00968,,,,,,,,,0.00807,0.00963,,,,,,,,,0.00863,0.01022,,,,,,,,,0.0077,0.0094,,,,,,,,,0.00811,0.0094,,,,,,,,,0.00762,0.00895,,,,,,,,,0.00749,0.00869,,,,,,,,,0.00799,0.00938,,,,,,,,,0.00768,0.00885,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00175,0.00176,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00159,0.00161,,,,,,,,,0.08586,0.11079,,,,,,,,,0.07549,0.09771,,,,,,,,,0.08204,0.10943,,,,,,,,,0.09044,0.12092,,,,,,,,,0.05105,0.07294,,,,,,,,,0.05607,0.0793,,,,,,,,,0.04926,0.0695,,,,,,,,,0.06511,0.08954,,,,,,,,,0.05007,0.07042 +Minivan,GSL,2050,,,,,,,,,,0.00073,,,,,,,,,,0.00067,,,,,,,,,,0.00069,,,,,,,,,,0.00075,,,,,,,,,,0.0005,,,,,,,,,,0.00053,,,,,,,,,,0.00046,,,,,,,,,,0.00057,,,,,,,,,,0.00045,,,,,,,,,,0.00907,,,,,,,,,,0.00778,,,,,,,,,,0.00845,,,,,,,,,,0.00955,,,,,,,,,,0.00444,,,,,,,,,,0.00518,,,,,,,,,,0.0043,,,,,,,,,,0.00614,,,,,,,,,,0.00445,,,,,,,,,,1.16765,,,,,,,,,,1.10092,,,,,,,,,,1.18243,,,,,,,,,,1.27045,,,,,,,,,,0.91538,,,,,,,,,,0.97793,,,,,,,,,,0.94442,,,,,,,,,,1.04454,,,,,,,,,,0.88107,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.0427,,,,,,,,,,0.04087,,,,,,,,,,0.04118,,,,,,,,,,0.0437,,,,,,,,,,0.03251,,,,,,,,,,0.03568,,,,,,,,,,0.03336,,,,,,,,,,0.03982,,,,,,,,,,0.03491,,,,,,,,,,0.00141,,,,,,,,,,0.00136,,,,,,,,,,0.00137,,,,,,,,,,0.00143,,,,,,,,,,0.0012,,,,,,,,,,0.00122,,,,,,,,,,0.00115,,,,,,,,,,0.00126,,,,,,,,,,0.00112,,,,,,,,,,0.04393,,,,,,,,,,0.04518,,,,,,,,,,0.04926,,,,,,,,,,0.04114,,,,,,,,,,0.04797,,,,,,,,,,0.04373,,,,,,,,,,0.04378,,,,,,,,,,0.04612,,,,,,,,,,0.0456,,,,,,,,,,0.00803,,,,,,,,,,0.00808,,,,,,,,,,0.00863,,,,,,,,,,0.00772,,,,,,,,,,0.00812,,,,,,,,,,0.00763,,,,,,,,,,0.00749,,,,,,,,,,0.008,,,,,,,,,,0.00768,,,,,,,,,,0.00173,,,,,,,,,,0.00174,,,,,,,,,,0.00176,,,,,,,,,,0.00173,,,,,,,,,,0.00176,,,,,,,,,,0.00174,,,,,,,,,,0.00175,,,,,,,,,,0.00173,,,,,,,,,,0.00159,,,,,,,,,,0.0858,,,,,,,,,,0.07545,,,,,,,,,,0.08196,,,,,,,,,,0.09039,,,,,,,,,,0.05106,,,,,,,,,,0.05607,,,,,,,,,,0.04928,,,,,,,,,,0.06516,,,,,,,,,,0.05007 +Minivan,PH10E,1990,0.00736,0,0,0,0,0,0,0,0,0,0.00761,0,0,0,0,0,0,0,0,0,0.00833,0,0,0,0,0,0,0,0,0,0.00685,0,0,0,0,0,0,0,0,0,0.00818,0,0,0,0,0,0,0,0,0,0.00741,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.00782,0,0,0,0,0,0,0,0,0,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.00044,0.00058,0.00096,0,0,0,0,0,0,0.00027,0.00042,0.00056,0.00091,0,0,0,0,0,0,0.00027,0.00043,0.00057,0.00094,0,0,0,0,0,0,0.00028,0.00045,0.00059,0.00098,0,0,0,0,0,0,0.00024,0.00037,0.00048,0.00076,0,0,0,0,0,0,0.00024,0.00038,0.00049,0.00079,0,0,0,0,0,0,0.00023,0.00036,0.00046,0.00071,0,0,0,0,0,0,0.00025,0.00039,0.00051,0.00081,0,0,0,0,0,0,0.00022,0.00034,0.00044,0.00069,0,0,0,0,0,0,0.00796,0.00832,0.00865,0.00954,0,0,0,0,0,0,0.00818,0.00852,0.00883,0.00964,0,0,0,0,0,0,0.00892,0.00927,0.00959,0.01045,0,0,0,0,0,0,0.00745,0.00782,0.00816,0.00908,0,0,0,0,0,0,0.00868,0.00896,0.0092,0.00982,0,0,0,0,0,0,0.00792,0.00821,0.00846,0.00912,0,0,0,0,0,0,0.00792,0.00819,0.00841,0.00898,0,0,0,0,0,0,0.00834,0.00865,0.00891,0.0096,0,0,0,0,0,0,0.00824,0.0085,0.00871,0.00925,0,0,0,0,0,0,0.00149,0.00181,0.0021,0.00289,0,0,0,0,0,0,0.0015,0.0018,0.00207,0.00279,0,0,0,0,0,0,0.0016,0.00191,0.00219,0.00296,0,0,0,0,0,0,0.00143,0.00176,0.00205,0.00287,0,0,0,0,0,0,0.0015,0.00175,0.00196,0.00251,0,0,0,0,0,0,0.00141,0.00167,0.0019,0.00248,0,0,0,0,0,0,0.00139,0.00162,0.00182,0.00232,0,0,0,0,0,0,0.00148,0.00175,0.00198,0.00259,0,0,0,0,0,0,0.00141,0.00164,0.00183,0.00231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH10E,1995,0.00735,0.00735,0,0,0,0,0,0,0,0,0.00761,0.00761,0,0,0,0,0,0,0,0,0.00833,0.00833,0,0,0,0,0,0,0,0,0.00684,0.00684,0,0,0,0,0,0,0,0,0.00818,0.00818,0,0,0,0,0,0,0,0,0.00741,0.00741,0,0,0,0,0,0,0,0,0.00745,0.00745,0,0,0,0,0,0,0,0,0.00782,0.00782,0,0,0,0,0,0,0,0,0.00779,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.00044,0.00059,0.00089,0,0,0,0,0,0,0.00027,0.00042,0.00056,0.00084,0,0,0,0,0,0,0.00027,0.00043,0.00057,0.00087,0,0,0,0,0,0,0.00028,0.00044,0.00059,0.00091,0,0,0,0,0,0,0.00024,0.00037,0.00048,0.0007,0,0,0,0,0,0,0.00024,0.00038,0.0005,0.00073,0,0,0,0,0,0,0.00023,0.00035,0.00046,0.00066,0,0,0,0,0,0,0.00025,0.00039,0.00051,0.00075,0,0,0,0,0,0,0.00022,0.00034,0.00044,0.00064,0,0,0,0,0,0,0.00796,0.00831,0.00865,0.00937,0,0,0,0,0,0,0.00818,0.00852,0.00883,0.00949,0,0,0,0,0,0,0.00892,0.00926,0.00959,0.01029,0,0,0,0,0,0,0.00745,0.00781,0.00816,0.00891,0,0,0,0,0,0,0.00868,0.00896,0.0092,0.0097,0,0,0,0,0,0,0.00792,0.00821,0.00846,0.009,0,0,0,0,0,0,0.00792,0.00819,0.00841,0.00887,0,0,0,0,0,0,0.00834,0.00864,0.00891,0.00947,0,0,0,0,0,0,0.00824,0.0085,0.00871,0.00914,0,0,0,0,0,0,0.00149,0.0018,0.0021,0.00274,0,0,0,0,0,0,0.0015,0.00179,0.00207,0.00266,0,0,0,0,0,0,0.0016,0.00191,0.0022,0.00282,0,0,0,0,0,0,0.00143,0.00175,0.00206,0.00272,0,0,0,0,0,0,0.0015,0.00175,0.00196,0.0024,0,0,0,0,0,0,0.00141,0.00167,0.0019,0.00237,0,0,0,0,0,0,0.00139,0.00162,0.00182,0.00222,0,0,0,0,0,0,0.00148,0.00174,0.00198,0.00247,0,0,0,0,0,0,0.00141,0.00164,0.00183,0.00221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH10E,2000,0.00736,0.01464,0.01852,0,0,0,0,0,0,0,0.00761,0.01386,0.01715,0,0,0,0,0,0,0,0.00833,0.01535,0.0191,0,0,0,0,0,0,0,0.00684,0.01464,0.01884,0,0,0,0,0,0,0,0.00818,0.01167,0.01345,0,0,0,0,0,0,0,0.00741,0.01153,0.01393,0,0,0,0,0,0,0,0.00745,0.0108,0.01248,0,0,0,0,0,0,0,0.00782,0.01266,0.01517,0,0,0,0,0,0,0,0.00779,0.01117,0.01285,0,0,0,0,0,0,0,0,0.14089,0.15451,0,0,0,0,0,0,0,0,0.13573,0.15157,0,0,0,0,0,0,0,0,0.16081,0.17779,0,0,0,0,0,0,0,0,0.16758,0.18418,0,0,0,0,0,0,0,0,0.14553,0.1629,0,0,0,0,0,0,0,0,0.15328,0.17008,0,0,0,0,0,0,0,0,0.14794,0.16027,0,0,0,0,0,0,0,0,0.14627,0.16107,0,0,0,0,0,0,0,0,0.12873,0.14257,0,0,0,0,0,0,0,0,12.76272,16.10851,0,0,0,0,0,0,0,0,12.50945,15.99917,0,0,0,0,0,0,0,0,14.3238,18.20538,0,0,0,0,0,0,0,0,15.15682,19.14568,0,0,0,0,0,0,0,0,13.58049,17.34446,0,0,0,0,0,0,0,0,14.10916,18.03755,0,0,0,0,0,0,0,0,14.12754,17.53883,0,0,0,0,0,0,0,0,13.47311,17.02084,0,0,0,0,0,0,0,0,11.65908,14.80696,0,0,0,0,0,0,0,0,428.04028,434.44389,0,0,0,0,0,0,0,0,431.35345,437.29409,0,0,0,0,0,0,0,0,437.67973,443.93028,0,0,0,0,0,0,0,0,427.48486,433.73649,0,0,0,0,0,0,0,0,438.06185,442.38577,0,0,0,0,0,0,0,0,431.02765,437.29105,0,0,0,0,0,0,0,0,434.61359,438.74833,0,0,0,0,0,0,0,0,434.84444,439.8663,0,0,0,0,0,0,0,0,428.27298,432.86375,0,0,0,0,0,0,0,0,0.03848,0.04595,0,0,0,0,0,0,0,0,0.03858,0.04602,0,0,0,0,0,0,0,0,0.03932,0.04679,0,0,0,0,0,0,0,0,0.03764,0.04501,0,0,0,0,0,0,0,0,0.03912,0.04657,0,0,0,0,0,0,0,0,0.03816,0.04556,0,0,0,0,0,0,0,0,0.03847,0.04591,0,0,0,0,0,0,0,0,0.03891,0.04638,0,0,0,0,0,0,0,0,0.03917,0.04672,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06727,0.06728,0,0,0,0,0,0,0,0,0.06725,0.06726,0,0,0,0,0,0,0,0,0.06691,0.06691,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06697,0.06697,0,0,0,0,0,0,0,0,0.06715,0.06716,0,0,0,0,0,0,0,0,0.0673,0.0673,0,0,0,0,0,0,0,0,0.06745,0.06745,0,0,0,0,0,0,0,0,1.67917,2.04404,0,0,0,0,0,0,0,0,1.65811,2.04336,0,0,0,0,0,0,0,0,1.85354,2.26397,0,0,0,0,0,0,0,0,1.91901,2.33383,0,0,0,0,0,0,0,0,1.80859,2.22695,0,0,0,0,0,0,0,0,1.86021,2.26579,0,0,0,0,0,0,0,0,1.84185,2.2101,0,0,0,0,0,0,0,0,1.91328,2.31007,0,0,0,0,0,0,0,0,1.71779,2.08945,0,0,0,0,0,0,0,0,0.01552,0.02198,0,0,0,0,0.00028,0.00044,0.00059,0,0.01357,0.01916,0,0,0,0,0.00027,0.00042,0.00056,0,0.01471,0.02087,0,0,0,0,0.00027,0.00043,0.00057,0,0.01609,0.02289,0,0,0,0,0.00028,0.00044,0.00059,0,0.00814,0.01137,0,0,0,0,0.00024,0.00037,0.00048,0,0.00936,0.01363,0,0,0,0,0.00024,0.00038,0.0005,0,0.008,0.01115,0,0,0,0,0.00023,0.00035,0.00046,0,0.01079,0.01518,0,0,0,0,0.00025,0.00039,0.00051,0,0.0082,0.01141,0,0,0,0,0.00022,0.00034,0.00044,0,0.06669,0.0812,0,0,0,0,0.00795,0.00831,0.00865,0,0.06356,0.07607,0,0,0,0,0.00818,0.00852,0.00883,0,0.0695,0.0834,0,0,0,0,0.00891,0.00927,0.00959,0,0.06578,0.08116,0,0,0,0,0.00745,0.00781,0.00816,0,0.05438,0.06151,0,0,0,0,0.00868,0.00896,0.00921,0,0.05351,0.06313,0,0,0,0,0.00791,0.00821,0.00847,0,0.05068,0.05757,0,0,0,0,0.00792,0.00819,0.00842,0,0.0585,0.06825,0,0,0,0,0.00834,0.00864,0.00891,0,0.0526,0.05959,0,0,0,0,0.00824,0.0085,0.00871,0,0.03373,0.04657,0,0,0,0,0.00149,0.0018,0.0021,0,0.03008,0.04115,0,0,0,0,0.00149,0.00179,0.00207,0,0.03284,0.04513,0,0,0,0,0.0016,0.00191,0.0022,0,0.03469,0.0483,0,0,0,0,0.00143,0.00175,0.00206,0,0.01997,0.02628,0,0,0,0,0.0015,0.00175,0.00197,0,0.02188,0.03027,0,0,0,0,0.00141,0.00167,0.0019,0,0.01923,0.02532,0,0,0,0,0.00138,0.00162,0.00182,0,0.02487,0.03349,0,0,0,0,0.00148,0.00174,0.00198,0,0.01976,0.02595,0,0,0,0,0.00141,0.00164,0.00183,0,0.01401,0.01254,0,0,0,0,0,0,0,0,0.01412,0.01263,0,0,0,0,0,0,0,0,0.01433,0.01282,0,0,0,0,0,0,0,0,0.014,0.01252,0,0,0,0,0,0,0,0,0.01434,0.01277,0,0,0,0,0,0,0,0,0.01411,0.01263,0,0,0,0,0,0,0,0,0.01423,0.01267,0,0,0,0,0,0,0,0,0.01424,0.0127,0,0,0,0,0,0,0,0,0.01402,0.0125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH10E,2005,0.00736,0.01048,0.012,0.01558,0,0,0,0,0,0,0.00761,0.01033,0.01164,0.01469,0,0,0,0,0,0,0.00833,0.01137,0.01285,0.01632,0,0,0,0,0,0,0.00685,0.01017,0.0118,0.01568,0,0,0,0,0,0,0.00819,0.00983,0.01061,0.01228,0,0,0,0,0,0,0.00741,0.0093,0.01029,0.01219,0,0,0,0,0,0,0.00746,0.00904,0.00978,0.01137,0,0,0,0,0,0,0.00782,0.00999,0.01103,0.01338,0,0,0,0,0,0,0.00779,0.0094,0.01014,0.01173,0,0,0,0,0,0,0,0.05887,0.05022,0.06479,0,0,0,0,0,0,0,0.05408,0.0477,0.06194,0,0,0,0,0,0,0,0.06401,0.05612,0.07552,0,0,0,0,0,0,0,0.06738,0.05899,0.07886,0,0,0,0,0,0,0,0.04787,0.04505,0.06288,0,0,0,0,0,0,0,0.05251,0.04891,0.06715,0,0,0,0,0,0,0,0.04796,0.0441,0.06135,0,0,0,0,0,0,0,0.05292,0.04736,0.06414,0,0,0,0,0,0,0,0.04274,0.03929,0.05278,0,0,0,0,0,0,0,5.03412,6.51817,9.6669,0,0,0,0,0,0,0,4.92195,6.52967,9.63502,0,0,0,0,0,0,0,5.52979,7.47297,11.28146,0,0,0,0,0,0,0,5.81165,7.86714,11.83045,0,0,0,0,0,0,0,5.41158,7.41913,10.98143,0,0,0,0,0,0,0,5.5191,7.60533,11.2422,0,0,0,0,0,0,0,5.63436,7.5301,11.09352,0,0,0,0,0,0,0,5.36905,7.14597,10.57365,0,0,0,0,0,0,0,4.7859,6.32427,9.17675,0,0,0,0,0,0,0,443.85587,448.671,454.14966,0,0,0,0,0,0,0,447.5675,452.04046,456.9226,0,0,0,0,0,0,0,453.75619,458.45937,463.73966,0,0,0,0,0,0,0,443.50689,448.21429,453.516,0,0,0,0,0,0,0,455.48889,458.76702,461.58576,0,0,0,0,0,0,0,448.04979,453.15963,455.06293,0,0,0,0,0,0,0,452.21983,455.36076,457.93914,0,0,0,0,0,0,0,451.77312,455.56747,459.27256,0,0,0,0,0,0,0,445.21511,448.68114,451.8233,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00804,0.00948,0.0182,0,0,0,0,0,0,0,0.00775,0.00918,0.01764,0,0,0,0,0,0,0,0.008,0.00944,0.01813,0,0,0,0,0,0,0,0.00783,0.00927,0.0178,0,0,0,0,0,0,0,0.0079,0.00934,0.01795,0,0,0,0,0,0,0,0.00797,0.00942,0.0181,0,0,0,0,0,0,0,0.00804,0.0095,0.01824,0,0,0,0,0,0,0,0.02199,0.02755,0.03263,0,0,0,0,0,0,0,0.02202,0.02758,0.03267,0,0,0,0,0,0,0,0.02202,0.02757,0.03266,0,0,0,0,0,0,0,0.0219,0.02743,0.03249,0,0,0,0,0,0,0,0.022,0.02755,0.03263,0,0,0,0,0,0,0,0.02192,0.02745,0.03252,0,0,0,0,0,0,0,0.02198,0.02753,0.03261,0,0,0,0,0,0,0,0.02203,0.02759,0.03268,0,0,0,0,0,0,0,0.02208,0.02765,0.03275,0,0,0,0,0,0,0,0.72008,0.96199,1.00621,0,0,0,0,0,0,0,0.70065,0.95882,1.00077,0,0,0,0,0,0,0,0.78869,1.0611,1.1307,0,0,0,0,0,0,0,0.8264,1.10905,1.17783,0,0,0,0,0,0,0,0.76098,1.03562,1.10788,0,0,0,0,0,0,0,0.79046,1.06322,1.13191,0,0,0,0,0,0,0,0.78123,1.03534,1.09738,0,0,0,0,0,0,0,0.819,1.08974,1.13977,0,0,0,0,0,0,0,0.73434,0.98227,1.01871,0,0,0,0,0,0,0,0.00672,0.00918,0.01499,0,0,0,0,0.00028,0.00044,0,0.00601,0.00819,0.01326,0,0,0,0,0.00027,0.00042,0,0.00648,0.00887,0.01444,0,0,0,0,0.00027,0.00043,0,0.00692,0.00949,0.01561,0,0,0,0,0.00028,0.00045,0,0.00402,0.00549,0.00852,0,0,0,0,0.00024,0.00037,0,0.00444,0.00623,0.00955,0,0,0,0,0.00024,0.00038,0,0.00395,0.00538,0.00834,0,0,0,0,0.00023,0.00036,0,0.00499,0.00681,0.01083,0,0,0,0,0.00025,0.00039,0,0.00405,0.0055,0.00851,0,0,0,0,0.00022,0.00034,0,0.04784,0.05339,0.06646,0,0,0,0,0.00795,0.00831,0,0.0474,0.05231,0.06363,0,0,0,0,0.00818,0.00852,0,0.0518,0.0572,0.06976,0,0,0,0,0.00892,0.00927,0,0.04602,0.05187,0.06573,0,0,0,0,0.00745,0.00782,0,0.04565,0.04885,0.05549,0,0,0,0,0.00868,0.00896,0,0.04305,0.04716,0.05432,0,0,0,0,0.00791,0.00821,0,0.04214,0.04525,0.05167,0,0,0,0,0.00792,0.00819,0,0.04613,0.05017,0.05909,0,0,0,0,0.00834,0.00864,0,0.04386,0.04701,0.05353,0,0,0,0,0.00824,0.0085,0,0.01704,0.02196,0.03352,0,0,0,0,0.00149,0.00181,0,0.01578,0.02013,0.03014,0,0,0,0,0.00149,0.0018,0,0.01717,0.02195,0.03306,0,0,0,0,0.0016,0.00191,0,0.0172,0.02238,0.03464,0,0,0,0,0.00143,0.00175,0,0.01225,0.01507,0.02095,0,0,0,0,0.0015,0.00175,0,0.01263,0.01615,0.0226,0,0,0,0,0.00141,0.00167,0,0.01167,0.01442,0.0201,0,0,0,0,0.00139,0.00162,0,0.01392,0.01749,0.02539,0,0,0,0,0.00148,0.00174,0,0.01203,0.01481,0.02058,0,0,0,0,0.00141,0.00164,0,0.01453,0.01296,0.00437,0,0,0,0,0,0,0,0.01465,0.01305,0.0044,0,0,0,0,0,0,0,0.01486,0.01324,0.00446,0,0,0,0,0,0,0,0.01452,0.01294,0.00437,0,0,0,0,0,0,0,0.01492,0.01325,0.00444,0,0,0,0,0,0,0,0.01467,0.01309,0.00438,0,0,0,0,0,0,0,0.01481,0.01315,0.00441,0,0,0,0,0,0,0,0.01479,0.01315,0.00442,0,0,0,0,0,0,0,0.01458,0.01296,0.00435,0,0,0,0,0,0,0,0.31408,0.43795,0.4377,0,0,0,0,0,0,0,0.2837,0.40636,0.40432,0,0,0,0,0,0,0,0.33316,0.47535,0.47029,0,0,0,0,0,0,0,0.35249,0.50182,0.49458,0,0,0,0,0,0,0,0.2218,0.34265,0.33094,0,0,0,0,0,0,0,0.24992,0.38317,0.36479,0,0,0,0,0,0,0,0.2186,0.33154,0.31952,0,0,0,0,0,0,0,0.25991,0.38065,0.37276,0,0,0,0,0,0,0,0.19773,0.29988,0.29008,0,0,0,0,0,0 +Minivan,PH10E,2010,0,0.00865,0.00976,0.01088,0.01426,0,0,0,0,0,0,0.00875,0.00973,0.0107,0.0136,0,0,0,0,0,0,0.0096,0.01069,0.01179,0.01508,0,0,0,0,0,0,0.00822,0.00942,0.01063,0.01429,0,0,0,0,0,0,0.00895,0.00958,0.01018,0.01183,0,0,0,0,0,0,0.00826,0.00901,0.00965,0.01158,0,0,0,0,0,0,0.0082,0.0088,0.00937,0.01094,0,0,0,0,0,0,0.00877,0.00957,0.01036,0.01261,0,0,0,0,0,0,0.00854,0.00915,0.00972,0.01129,0,0,0,0,0,0,0.03835,0.02739,0.0207,0.03399,0,0,0,0,0,0,0.03344,0.0249,0.01902,0.03184,0,0,0,0,0,0,0.03752,0.02934,0.02246,0.03887,0,0,0,0,0,0,0.04169,0.03243,0.02472,0.04165,0,0,0,0,0,0,0.02246,0.02126,0.01693,0.03091,0,0,0,0,0,0,0.0251,0.02356,0.0183,0.0333,0,0,0,0,0,0,0.02198,0.02095,0.01669,0.03024,0,0,0,0,0,0,0.02806,0.02371,0.0184,0.03225,0,0,0,0,0,0,0.02159,0.01933,0.01509,0.02616,0,0,0,0,0,0,2.0369,3.39096,4.56938,6.84813,0,0,0,0,0,0,1.93755,3.35282,4.54128,6.8043,0,0,0,0,0,0,2.03853,3.71667,5.15994,8.00096,0,0,0,0,0,0,2.17908,3.97967,5.53703,8.50531,0,0,0,0,0,0,1.79358,3.54468,4.96864,7.70574,0,0,0,0,0,0,1.85132,3.67735,5.10192,7.94581,0,0,0,0,0,0,1.86968,3.64795,5.09363,7.83205,0,0,0,0,0,0,1.90876,3.54693,4.88233,7.46049,0,0,0,0,0,0,1.678,3.13644,4.26343,6.41479,0,0,0,0,0,0,412.76858,414.52877,418.20047,431.86292,0,0,0,0,0,0,416.40558,417.94235,421.24785,434.37073,0,0,0,0,0,0,422.09134,423.74737,427.27943,440.89257,0,0,0,0,0,0,412.52141,414.19798,417.76787,431.26329,0,0,0,0,0,0,424.39239,425.16307,427.20546,438.37632,0,0,0,0,0,0,417.28153,419.64642,420.6841,432.33298,0,0,0,0,0,0,421.41221,422.1002,424.00932,434.90386,0,0,0,0,0,0,420.66738,421.76965,424.35789,436.36691,0,0,0,0,0,0,414.64889,415.59408,417.84536,429.16517,0,0,0,0,0,0,0.00702,0.0079,0.00947,0.01359,0,0,0,0,0,0,0.00703,0.00791,0.00947,0.01358,0,0,0,0,0,0,0.00715,0.00803,0.0096,0.01374,0,0,0,0,0,0,0.00688,0.00775,0.00929,0.01335,0,0,0,0,0,0,0.00712,0.00799,0.00956,0.01368,0,0,0,0,0,0,0.00696,0.00783,0.00938,0.01345,0,0,0,0,0,0,0.00702,0.00789,0.00946,0.01356,0,0,0,0,0,0,0.00709,0.00797,0.00954,0.01367,0,0,0,0,0,0,0.00714,0.00803,0.00961,0.01378,0,0,0,0,0,0,0.01459,0.01675,0.02185,0.02421,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02424,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02423,0,0,0,0,0,0,0.01453,0.01668,0.02175,0.02411,0,0,0,0,0,0,0.01459,0.01676,0.02185,0.02421,0,0,0,0,0,0,0.01455,0.0167,0.02178,0.02413,0,0,0,0,0,0,0.01458,0.01674,0.02183,0.02419,0,0,0,0,0,0,0.01462,0.01678,0.02188,0.02425,0,0,0,0,0,0,0.01465,0.01682,0.02193,0.0243,0,0,0,0,0,0,0.11818,0.20617,0.20688,0.44349,0,0,0,0,0,0,0.11395,0.20427,0.2047,0.43937,0,0,0,0,0,0,0.1164,0.2249,0.22374,0.50136,0,0,0,0,0,0,0.12046,0.23865,0.23563,0.52724,0,0,0,0,0,0,0.10702,0.21405,0.21224,0.48579,0,0,0,0,0,0,0.11168,0.22309,0.22032,0.50004,0,0,0,0,0,0,0.1104,0.21568,0.21334,0.48154,0,0,0,0,0,0,0.1205,0.23032,0.22538,0.50037,0,0,0,0,0,0,0.11127,0.20718,0.20273,0.44167,0,0,0,0,0,0,0.00231,0.00409,0.00571,0.01093,0,0,0,0,0.00028,0,0.00216,0.00381,0.00528,0.00987,0,0,0,0,0.00027,0,0.00226,0.00401,0.0056,0.01065,0,0,0,0,0.00027,0,0.00236,0.00421,0.0059,0.01139,0,0,0,0,0.00028,0,0.00178,0.00309,0.00419,0.00708,0,0,0,0,0.00024,0,0.00185,0.00326,0.0044,0.00767,0,0,0,0,0.00024,0,0.00177,0.00306,0.00414,0.00696,0,0,0,0,0.00023,0,0.00197,0.00344,0.00473,0.00845,0,0,0,0,0.00025,0,0.00181,0.00312,0.00422,0.00707,0,0,0,0,0.00022,0,0.03861,0.04266,0.0464,0.05834,0,0,0,0,0.00795,0,0.03937,0.04307,0.04643,0.05686,0,0,0,0,0.00818,0,0.04296,0.04694,0.0506,0.06218,0,0,0,0,0.00892,0,0.03645,0.04068,0.04462,0.05727,0,0,0,0,0.00745,0,0.04102,0.04381,0.04621,0.05263,0,0,0,0,0.00868,0,0.03767,0.04092,0.04325,0.05056,0,0,0,0,0.00792,0,0.03764,0.04039,0.04273,0.04893,0,0,0,0,0.00792,0,0.03986,0.0431,0.04596,0.05434,0,0,0,0,0.00834,0,0.03925,0.04203,0.0444,0.05068,0,0,0,0,0.00824,0,0.00888,0.01247,0.01577,0.02633,0,0,0,0,0.00149,0,0.00868,0.01196,0.01493,0.02415,0,0,0,0,0.00149,0,0.00936,0.01288,0.01612,0.02636,0,0,0,0,0.0016,0,0.00874,0.01249,0.01597,0.02716,0,0,0,0,0.00143,0,0.00815,0.01062,0.01274,0.01842,0,0,0,0,0.0015,0,0.00787,0.01062,0.01281,0.01928,0,0,0,0,0.00141,0,0.00769,0.01012,0.01219,0.01768,0,0,0,0,0.00139,0,0.00837,0.01124,0.01377,0.02118,0,0,0,0,0.00148,0,0.00794,0.01041,0.0125,0.01806,0,0,0,0,0.00141,0,0.01351,0.01197,0.00403,0.00416,0,0,0,0,0,0,0.01363,0.01207,0.00405,0.00418,0,0,0,0,0,0,0.01382,0.01224,0.00411,0.00424,0,0,0,0,0,0,0.01351,0.01196,0.00402,0.00415,0,0,0,0,0,0,0.0139,0.01228,0.00411,0.00422,0,0,0,0,0,0,0.01366,0.01212,0.00405,0.00416,0,0,0,0,0,0,0.0138,0.01219,0.00408,0.00419,0,0,0,0,0,0,0.01377,0.01218,0.00408,0.0042,0,0,0,0,0,0,0.01358,0.012,0.00402,0.00413,0,0,0,0,0,0,0.09628,0.14483,0.19833,0.32215,0,0,0,0,0,0,0.08171,0.12792,0.17824,0.29336,0,0,0,0,0,0,0.09432,0.15197,0.21171,0.35312,0,0,0,0,0,0,0.10592,0.16872,0.23324,0.38186,0,0,0,0,0,0,0.04851,0.09719,0.14596,0.25056,0,0,0,0,0,0,0.05622,0.11052,0.15954,0.27471,0,0,0,0,0,0,0.04619,0.09371,0.14146,0.24218,0,0,0,0,0,0,0.0651,0.11464,0.16503,0.27758,0,0,0,0,0,0,0.04573,0.0879,0.13002,0.21562,0,0,0,0,0 +Minivan,PH10E,2015,0,0,0.00851,0.00932,0.01037,0.0128,0,0,0,0,0,0,0.00865,0.00938,0.01032,0.01244,0,0,0,0,0,0,0.00947,0.01026,0.01129,0.01368,0,0,0,0,0,0,0.00805,0.0089,0.01002,0.01263,0,0,0,0,0,0,0.00894,0.00945,0.01007,0.01137,0,0,0,0,0,0,0.00825,0.00879,0.00948,0.01097,0,0,0,0,0,0,0.00819,0.00868,0.00929,0.01053,0,0,0,0,0,0,0.00872,0.00934,0.01011,0.01181,0,0,0,0,0,0,0.00853,0.00903,0.00963,0.01087,0,0,0,0,0,0,0.02901,0.01941,0.01781,0.02215,0,0,0,0,0,0,0.02658,0.01807,0.01687,0.02094,0,0,0,0,0,0,0.02882,0.02106,0.01968,0.02486,0,0,0,0,0,0,0.03107,0.02281,0.02127,0.02671,0,0,0,0,0,0,0.01998,0.01624,0.01622,0.02037,0,0,0,0,0,0,0.02221,0.01753,0.01732,0.0218,0,0,0,0,0,0,0.01979,0.01605,0.01612,0.02014,0,0,0,0,0,0,0.02339,0.01765,0.017,0.02122,0,0,0,0,0,0,0.01942,0.01481,0.01452,0.0178,0,0,0,0,0,0,1.74799,3.07054,4.1433,5.53772,0,0,0,0,0,0,1.74058,3.08025,4.17933,5.56657,0,0,0,0,0,0,1.79393,3.3989,4.7293,6.41596,0,0,0,0,0,0,1.91334,3.63271,5.06757,6.83287,0,0,0,0,0,0,1.71079,3.3865,4.75319,6.37417,0,0,0,0,0,0,1.75939,3.44427,4.84742,6.53269,0,0,0,0,0,0,1.78328,3.49932,4.89366,6.53236,0,0,0,0,0,0,1.75814,3.3309,4.59475,6.14177,0,0,0,0,0,0,1.6025,3.00063,4.08485,5.39092,0,0,0,0,0,0,338.12208,340.05626,343.22557,362.165,0,0,0,0,0,0,340.95583,342.66252,345.51406,364.06892,0,0,0,0,0,0,345.67308,347.51146,350.55982,369.62377,0,0,0,0,0,0,337.90022,339.76243,342.84575,361.64608,0,0,0,0,0,0,347.01262,347.93671,349.69034,366.75993,0,0,0,0,0,0,342.47414,342.50262,344.57625,361.91932,0,0,0,0,0,0,344.54961,345.39056,347.02963,363.8184,0,0,0,0,0,0,344.17477,345.43692,347.66513,365.3673,0,0,0,0,0,0,339.12031,340.19555,342.12805,359.14252,0,0,0,0,0,0,0.00464,0.00532,0.00631,0.00881,0,0,0,0,0,0,0.00465,0.00532,0.00631,0.0088,0,0,0,0,0,0,0.00472,0.0054,0.00639,0.00889,0,0,0,0,0,0,0.00455,0.00522,0.00619,0.00865,0,0,0,0,0,0,0.0047,0.00538,0.00636,0.00886,0,0,0,0,0,0,0.0046,0.00527,0.00625,0.00871,0,0,0,0,0,0,0.00464,0.00531,0.0063,0.00879,0,0,0,0,0,0,0.00468,0.00536,0.00635,0.00885,0,0,0,0,0,0,0.00472,0.00541,0.00641,0.00893,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02214,0,0,0,0,0,0,0.01462,0.017,0.02188,0.02217,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02216,0,0,0,0,0,0,0.01454,0.01691,0.02176,0.02205,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02214,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02207,0,0,0,0,0,0,0.01459,0.01697,0.02184,0.02213,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02217,0,0,0,0,0,0,0.01465,0.01705,0.02194,0.02222,0,0,0,0,0,0,0.10495,0.12905,0.18836,0.26828,0,0,0,0,0,0,0.10452,0.12736,0.18642,0.26545,0,0,0,0,0,0,0.10568,0.13983,0.20329,0.29451,0,0,0,0,0,0,0.11026,0.14786,0.21472,0.31055,0,0,0,0,0,0,0.0969,0.13038,0.19182,0.28015,0,0,0,0,0,0,0.10169,0.13624,0.19976,0.29062,0,0,0,0,0,0,0.09928,0.13114,0.1932,0.28031,0,0,0,0,0,0,0.10885,0.14034,0.20452,0.29402,0,0,0,0,0,0,0.10062,0.12587,0.18364,0.26179,0,0,0,0,0,0,0.00221,0.00363,0.00522,0.00859,0,0,0,0,0,0,0.0021,0.00344,0.00491,0.00796,0,0,0,0,0,0,0.00217,0.00356,0.00512,0.00843,0,0,0,0,0,0,0.00223,0.00368,0.00531,0.00885,0,0,0,0,0,0,0.0018,0.00292,0.00408,0.00626,0,0,0,0,0,0,0.00187,0.00301,0.00424,0.00661,0,0,0,0,0,0,0.0018,0.00291,0.00406,0.0062,0,0,0,0,0,0,0.00195,0.00318,0.0045,0.0071,0,0,0,0,0,0,0.00183,0.00297,0.00414,0.00629,0,0,0,0,0,0,0.03831,0.04145,0.0451,0.05304,0,0,0,0,0,0,0.03917,0.0421,0.04545,0.05255,0,0,0,0,0,0,0.04268,0.04576,0.04935,0.05712,0,0,0,0,0,0,0.03607,0.03928,0.04307,0.05144,0,0,0,0,0,0,0.04103,0.04338,0.04593,0.05081,0,0,0,0,0,0,0.03784,0.04011,0.04283,0.04821,0,0,0,0,0,0,0.03767,0.04,0.04251,0.04726,0,0,0,0,0,0,0.03977,0.0424,0.04535,0.05132,0,0,0,0,0,0,0.03928,0.04164,0.04418,0.04898,0,0,0,0,0,0,0.00862,0.01139,0.01462,0.02165,0,0,0,0,0,0,0.00851,0.0111,0.01406,0.02034,0,0,0,0,0,0,0.00911,0.01183,0.01501,0.02188,0,0,0,0,0,0,0.00841,0.01125,0.0146,0.02201,0,0,0,0,0,0,0.00816,0.01024,0.0125,0.01681,0,0,0,0,0,0,0.0079,0.01003,0.01244,0.01719,0,0,0,0,0,0,0.00772,0.00978,0.012,0.0162,0,0,0,0,0,0,0.00829,0.01063,0.01323,0.01851,0,0,0,0,0,0,0.00797,0.01007,0.01231,0.01655,0,0,0,0,0,0,0.00976,0.00327,0.0033,0.00349,0,0,0,0,0,0,0.00985,0.0033,0.00333,0.0035,0,0,0,0,0,0,0.00998,0.00334,0.00337,0.00356,0,0,0,0,0,0,0.00976,0.00327,0.0033,0.00348,0,0,0,0,0,0,0.01002,0.00335,0.00337,0.00353,0,0,0,0,0,0,0.00989,0.0033,0.00332,0.00348,0,0,0,0,0,0,0.00995,0.00332,0.00334,0.0035,0,0,0,0,0,0,0.00994,0.00332,0.00335,0.00352,0,0,0,0,0,0,0.00979,0.00327,0.00329,0.00346,0,0,0,0,0,0,0.07256,0.10793,0.16473,0.24345,0,0,0,0,0,0,0.06456,0.09841,0.15324,0.22614,0,0,0,0,0,0,0.07203,0.11521,0.17944,0.26852,0,0,0,0,0,0,0.07823,0.12455,0.19303,0.28812,0,0,0,0,0,0,0.04358,0.08151,0.13798,0.20586,0,0,0,0,0,0,0.05032,0.08897,0.14828,0.22181,0,0,0,0,0,0,0.04216,0.07918,0.13504,0.20088,0,0,0,0,0,0,0.0541,0.09194,0.14887,0.22095,0,0,0,0,0,0,0.04161,0.07409,0.12354,0.18049,0,0,0,0 +Minivan,PH10E,2020,0,0,0,0.00832,0.009,0.00969,0.01202,0,0,0,0,0,0,0.00849,0.0091,0.00971,0.01177,0,0,0,0,0,0,0.00928,0.00995,0.01063,0.01292,0,0,0,0,0,0,0.00785,0.00856,0.00929,0.01178,0,0,0,0,0,0,0.00883,0.00926,0.00967,0.01098,0,0,0,0,0,0,0.00811,0.00858,0.00904,0.01053,0,0,0,0,0,0,0.00809,0.00851,0.0089,0.01017,0,0,0,0,0,0,0.00858,0.0091,0.00961,0.01129,0,0,0,0,0,0,0.00843,0.00885,0.00924,0.01051,0,0,0,0,0,0,0.02221,0.01607,0.01367,0.01742,0,0,0,0,0,0,0.01995,0.01477,0.01277,0.01638,0,0,0,0,0,0,0.02206,0.01724,0.01491,0.01972,0,0,0,0,0,0,0.02395,0.01876,0.01619,0.02129,0,0,0,0,0,0,0.0138,0.01254,0.01156,0.01576,0,0,0,0,0,0,0.01546,0.01373,0.01252,0.01702,0,0,0,0,0,0,0.0135,0.01235,0.01146,0.01556,0,0,0,0,0,0,0.01693,0.014,0.01246,0.01654,0,0,0,0,0,0,0.01322,0.01137,0.01033,0.01357,0,0,0,0,0,0,1.37924,2.0814,2.62686,4.03125,0,0,0,0,0,0,1.36505,2.07029,2.62221,4.04018,0,0,0,0,0,0,1.42101,2.28589,2.96238,4.76964,0,0,0,0,0,0,1.52138,2.45739,3.19844,5.11541,0,0,0,0,0,0,1.32564,2.2181,2.88967,4.67583,0,0,0,0,0,0,1.35579,2.27169,2.97123,4.83684,0,0,0,0,0,0,1.37756,2.29363,2.9807,4.79141,0,0,0,0,0,0,1.37093,2.20682,2.83455,4.49834,0,0,0,0,0,0,1.23549,1.96805,2.49394,3.87749,0,0,0,0,0,0,287.03177,288.945,292.13415,317.35488,0,0,0,0,0,0,289.31393,291.03834,293.95164,318.81544,0,0,0,0,0,0,293.37827,295.21817,298.31062,323.7828,0,0,0,0,0,0,286.83015,288.68405,291.79913,316.87766,0,0,0,0,0,0,294.03922,295.11255,297.06731,320.47563,0,0,0,0,0,0,289.36988,290.63083,292.86101,316.46625,0,0,0,0,0,0,291.92229,292.92404,294.77611,317.8553,0,0,0,0,0,0,291.81081,293.16554,295.53406,319.55864,0,0,0,0,0,0,287.40281,288.59464,290.69332,313.90899,0,0,0,0,0,0,0.00474,0.00536,0.00631,0.00831,0,0,0,0,0,0,0.00475,0.00536,0.00631,0.0083,0,0,0,0,0,0,0.00482,0.00544,0.00639,0.00839,0,0,0,0,0,0,0.00465,0.00526,0.00619,0.00817,0,0,0,0,0,0,0.0048,0.00542,0.00636,0.00836,0,0,0,0,0,0,0.0047,0.00531,0.00625,0.00822,0,0,0,0,0,0,0.00474,0.00536,0.0063,0.0083,0,0,0,0,0,0,0.00478,0.0054,0.00635,0.00836,0,0,0,0,0,0,0.00482,0.00545,0.0064,0.00843,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01462,0.01701,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01692,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01698,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01705,0.02193,0.02193,0,0,0,0,0,0,0.06862,0.11062,0.1487,0.20682,0,0,0,0,0,0,0.06775,0.10897,0.14679,0.20422,0,0,0,0,0,0,0.06919,0.11933,0.1596,0.22751,0,0,0,0,0,0,0.07215,0.12682,0.16948,0.24162,0,0,0,0,0,0,0.0612,0.10996,0.14835,0.21334,0,0,0,0,0,0,0.06471,0.11568,0.15571,0.22311,0,0,0,0,0,0,0.06244,0.11099,0.15,0.21393,0,0,0,0,0,0,0.06915,0.11948,0.16006,0.22568,0,0,0,0,0,0,0.06291,0.10639,0.14262,0.19858,0,0,0,0,0,0,0.0019,0.00307,0.00407,0.00729,0,0,0,0,0,0,0.00181,0.00291,0.00384,0.00679,0,0,0,0,0,0,0.00186,0.00302,0.004,0.00716,0,0,0,0,0,0,0.00191,0.00311,0.00414,0.00748,0,0,0,0,0,0,0.00157,0.00249,0.00322,0.00544,0,0,0,0,0,0,0.00161,0.00257,0.00334,0.00572,0,0,0,0,0,0,0.00157,0.00249,0.00321,0.00539,0,0,0,0,0,0,0.00169,0.00271,0.00353,0.00611,0,0,0,0,0,0,0.0016,0.00254,0.00326,0.00547,0,0,0,0,0,0,0.03759,0.04021,0.04254,0.05012,0,0,0,0,0,0,0.03852,0.04096,0.04309,0.04996,0,0,0,0,0,0,0.04198,0.04455,0.04684,0.05429,0,0,0,0,0,0,0.03532,0.038,0.04042,0.04835,0,0,0,0,0,0,0.04053,0.04249,0.0441,0.04906,0,0,0,0,0,0,0.03711,0.03917,0.04089,0.04629,0,0,0,0,0,0,0.03718,0.03912,0.0407,0.04556,0,0,0,0,0,0,0.03919,0.04139,0.04326,0.04916,0,0,0,0,0,0,0.03878,0.04075,0.04234,0.04724,0,0,0,0,0,0,0.00798,0.0103,0.01236,0.01906,0,0,0,0,0,0,0.00793,0.01009,0.01198,0.01806,0,0,0,0,0,0,0.00849,0.01076,0.01278,0.01937,0,0,0,0,0,0,0.00775,0.01012,0.01225,0.01927,0,0,0,0,0,0,0.00772,0.00945,0.01087,0.01527,0,0,0,0,0,0,0.00737,0.0092,0.01072,0.01549,0,0,0,0,0,0,0.00728,0.009,0.0104,0.0147,0,0,0,0,0,0,0.00778,0.00973,0.01138,0.01661,0,0,0,0,0,0,0.00753,0.00928,0.01069,0.01502,0,0,0,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00278,0.0028,0.00283,0.00307,0,0,0,0,0,0,0.00282,0.00284,0.00287,0.00312,0,0,0,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00283,0.00284,0.00286,0.00308,0,0,0,0,0,0,0.00279,0.0028,0.00282,0.00305,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00306,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00308,0,0,0,0,0,0,0.00277,0.00278,0.0028,0.00302,0,0,0,0,0,0,0.06129,0.09029,0.12737,0.19823,0,0,0,0,0,0,0.05401,0.08132,0.11645,0.18306,0,0,0,0,0,0,0.06093,0.09522,0.13643,0.2208,0,0,0,0,0,0,0.06641,0.10347,0.14776,0.23796,0,0,0,0,0,0,0.0345,0.06284,0.09654,0.16485,0,0,0,0,0,0,0.03959,0.06993,0.1059,0.17941,0,0,0,0,0,0,0.0331,0.06081,0.09405,0.16042,0,0,0,0,0,0,0.04426,0.07339,0.10849,0.17831,0,0,0,0,0,0,0.03251,0.05685,0.08625,0.14194,0,0,0 +Minivan,PH10E,2025,0,0,0,0,0.00798,0.00838,0.00881,0.01073,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.01062,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01165,0,0,0,0,0,0,0.00749,0.00792,0.00836,0.0104,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.01022,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00968,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00943,0,0,0,0,0,0,0.00831,0.00862,0.00894,0.01034,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00977,0,0,0,0,0,0,0.01788,0.01171,0.00946,0.01326,0,0,0,0,0,0,0.01557,0.01039,0.00853,0.01223,0,0,0,0,0,0,0.01766,0.0122,0.01001,0.01484,0,0,0,0,0,0,0.01944,0.01341,0.01097,0.01612,0,0,0,0,0,0,0.00922,0.00744,0.00661,0.01094,0,0,0,0,0,0,0.01087,0.00849,0.00741,0.01204,0,0,0,0,0,0,0.00883,0.0072,0.00645,0.01072,0,0,0,0,0,0,0.01237,0.00906,0.0077,0.01189,0,0,0,0,0,0,0.00863,0.0067,0.00588,0.00931,0,0,0,0,0,0,0.91715,1.34034,1.7002,2.85338,0,0,0,0,0,0,0.88569,1.30716,1.66592,2.82923,0,0,0,0,0,0,0.93291,1.44892,1.88519,3.36535,0,0,0,0,0,0,1.00807,1.57114,2.0509,3.63255,0,0,0,0,0,0,0.79473,1.31547,1.73116,3.19084,0,0,0,0,0,0,0.82906,1.36736,1.80371,3.33111,0,0,0,0,0,0,0.82197,1.3577,1.78296,3.26628,0,0,0,0,0,0,0.85374,1.34733,1.74398,3.10779,0,0,0,0,0,0,0.74165,1.17042,1.49807,2.63216,0,0,0,0,0,0,234.5869,235.72343,238.0583,268.31088,0,0,0,0,0,0,236.33707,237.30807,239.39352,269.34204,0,0,0,0,0,0,239.7154,240.77831,243.01688,273.64091,0,0,0,0,0,0,234.41023,235.49784,237.77024,267.88659,0,0,0,0,0,0,239.81341,240.21794,241.44124,270.06181,0,0,0,0,0,0,236.1256,236.69955,238.17702,266.89992,0,0,0,0,0,0,238.05912,238.40674,239.54376,267.80454,0,0,0,0,0,0,238.15974,238.80941,240.4054,269.58388,0,0,0,0,0,0,234.44742,234.96253,236.32132,264.61313,0,0,0,0,0,0,0.00477,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00478,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00485,0.00544,0.00637,0.0083,0,0,0,0,0,0,0.00468,0.00525,0.00617,0.00808,0,0,0,0,0,0,0.00483,0.00541,0.00634,0.00827,0,0,0,0,0,0,0.00473,0.00531,0.00623,0.00814,0,0,0,0,0,0,0.00477,0.00535,0.00628,0.00821,0,0,0,0,0,0,0.00481,0.0054,0.00633,0.00827,0,0,0,0,0,0,0.00485,0.00544,0.00638,0.00834,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01703,0.02193,0.02193,0,0,0,0,0,0,0.04247,0.06358,0.08504,0.14444,0,0,0,0,0,0,0.04132,0.06188,0.083,0.14177,0,0,0,0,0,0,0.04249,0.06735,0.0898,0.15883,0,0,0,0,0,0,0.04441,0.07155,0.0953,0.1691,0,0,0,0,0,0,0.03499,0.05869,0.0794,0.14505,0,0,0,0,0,0,0.03792,0.06286,0.08465,0.15312,0,0,0,0,0,0,0.03567,0.05933,0.08035,0.14532,0,0,0,0,0,0,0.04046,0.06509,0.08718,0.15454,0,0,0,0,0,0,0.03571,0.0569,0.0765,0.13396,0,0,0,0.00341,0.00482,0,0.00122,0.00192,0.00254,0.00526,0,0,0,0.00298,0.00421,0,0.00116,0.00183,0.0024,0.0049,0,0,0,0.00323,0.00458,0,0.0012,0.00189,0.0025,0.00516,0,0,0,0.00353,0.00502,0,0.00123,0.00195,0.00258,0.00539,0,0,0,0.00179,0.0025,0,0.00101,0.00156,0.00202,0.00394,0,0,0,0.00205,0.00299,0,0.00103,0.00161,0.00209,0.00414,0,0,0,0.00176,0.00245,0,0.00101,0.00156,0.00201,0.0039,0,0,0,0.00237,0.00333,0,0.00109,0.0017,0.00221,0.00442,0,0,0,0.0018,0.0025,0,0.00103,0.00159,0.00204,0.00396,0,0,0,0.01464,0.01783,0,0.03613,0.0377,0.03914,0.04549,0,0,0,0.01395,0.0167,0,0.03713,0.0386,0.03992,0.04571,0,0,0,0.01526,0.01831,0,0.04054,0.04208,0.04349,0.04974,0,0,0,0.01444,0.01782,0,0.03384,0.03544,0.03693,0.04355,0,0,0,0.01194,0.0135,0,0.03937,0.04054,0.04154,0.04582,0,0,0,0.01175,0.01386,0,0.0359,0.03714,0.03821,0.04283,0,0,0,0.01112,0.01264,0,0.03602,0.03719,0.03817,0.04236,0,0,0,0.01284,0.01498,0,0.03791,0.03924,0.04039,0.04542,0,0,0,0.01155,0.01308,0,0.0376,0.03878,0.03977,0.04401,0,0,0,0.0074,0.01022,0,0.00669,0.00808,0.00935,0.01497,0,0,0,0.0066,0.00903,0,0.00671,0.008,0.00917,0.01429,0,0,0,0.00721,0.00991,0,0.00721,0.00858,0.00983,0.01535,0,0,0,0.00762,0.0106,0,0.00643,0.00785,0.00917,0.01502,0,0,0,0.00438,0.00577,0,0.00669,0.00773,0.00861,0.01239,0,0,0,0.0048,0.00665,0,0.00631,0.0074,0.00835,0.01243,0,0,0,0.00422,0.00556,0,0.00626,0.00729,0.00816,0.01187,0,0,0,0.00546,0.00735,0,0.00666,0.00782,0.00885,0.01329,0,0,0,0.00434,0.0057,0,0.00649,0.00753,0.00841,0.01216,0,0,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00227,0.00228,0.0023,0.00259,0,0,0,0,0,0,0.00231,0.00232,0.00234,0.00263,0,0,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00231,0.00231,0.00232,0.0026,0,0,0,0,0,0,0.00227,0.00228,0.00229,0.00257,0,0,0,0,0,0,0.00229,0.00229,0.00231,0.00258,0,0,0,0,0,0,0.00229,0.0023,0.00231,0.00259,0,0,0,0,0,0,0.00226,0.00226,0.00227,0.00255,0,0,0,0,0,0,0.05239,0.07068,0.09542,0.15728,0,0,0,0,0,0,0.04494,0.06163,0.08436,0.14244,0,0,0,0,0,0,0.05167,0.07251,0.09923,0.17265,0,0,0,0,0,0,0.05713,0.07986,0.10885,0.18752,0,0,0,0,0,0,0.02472,0.03987,0.05907,0.1178,0,0,0,0,0,0,0.0299,0.04655,0.06759,0.13108,0,0,0,0,0,0,0.02327,0.03794,0.05667,0.11377,0,0,0,0,0,0,0.03468,0.05123,0.07249,0.13297,0,0,0,0,0,0,0.02279,0.03576,0.05249,0.1005,0,0 +Minivan,PH10E,2030,0,0,0,0,0,0.00797,0.00838,0.0088,0.01001,0,0,0,0,0,0,0.00817,0.00854,0.00891,0.00998,0,0,0,0,0,0,0.00894,0.00934,0.00975,0.01094,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.00964,0,0,0,0,0,0,0.0086,0.00885,0.00911,0.0098,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.0092,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00902,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00981,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00936,0,0,0,0,0,0,0.01662,0.01047,0.00835,0.0107,0,0,0,0,0,0,0.01429,0.00916,0.00742,0.00966,0,0,0,0,0,0,0.01635,0.01077,0.00873,0.01163,0,0,0,0,0,0,0.01809,0.01189,0.0096,0.01271,0,0,0,0,0,0,0.0079,0.00602,0.00532,0.00773,0,0,0,0,0,0,0.00953,0.00701,0.00608,0.00869,0,0,0,0,0,0,0.00748,0.00576,0.00515,0.00751,0,0,0,0,0,0,0.01105,0.00767,0.00645,0.00887,0,0,0,0,0,0,0.00732,0.0054,0.00472,0.00662,0,0,0,0,0,0,0.7973,1.16542,1.49197,2.19791,0,0,0,0,0,0,0.76171,1.12744,1.45133,2.15194,0,0,0,0,0,0,0.80604,1.25159,1.64416,2.53336,0,0,0,0,0,0,0.87395,1.36104,1.79302,2.74754,0,0,0,0,0,0,0.6579,1.10385,1.47231,2.31051,0,0,0,0,0,0,0.69274,1.15455,1.54226,2.42859,0,0,0,0,0,0,0.67878,1.13779,1.51464,2.36529,0,0,0,0,0,0,0.71997,1.14551,1.49969,2.29838,0,0,0,0,0,0,0.61454,0.98364,1.27484,1.92636,0,0,0,0,0,0,213.49891,215.51143,218.87846,237.62188,0,0,0,0,0,0,215.04232,216.91048,220.04699,238.42257,0,0,0,0,0,0,218.14123,220.1076,223.40804,242.28526,0,0,0,0,0,0,213.33378,215.30129,218.60983,237.23679,0,0,0,0,0,0,218.03909,219.40321,221.73125,238.68086,0,0,0,0,0,0,214.73855,216.24264,218.79651,236.00728,0,0,0,0,0,0,216.43235,217.73743,219.97522,236.65925,0,0,0,0,0,0,216.60666,218.18827,220.8651,238.42237,0,0,0,0,0,0,213.17955,214.62181,217.05028,233.90875,0,0,0,0,0,0,0.00476,0.00533,0.00628,0.00818,0,0,0,0,0,0,0.00477,0.00534,0.00628,0.00817,0,0,0,0,0,0,0.00485,0.00541,0.00636,0.00826,0,0,0,0,0,0,0.00467,0.00523,0.00616,0.00804,0,0,0,0,0,0,0.00482,0.00539,0.00633,0.00823,0,0,0,0,0,0,0.00472,0.00528,0.00622,0.00809,0,0,0,0,0,0,0.00476,0.00533,0.00627,0.00816,0,0,0,0,0,0,0.00481,0.00538,0.00632,0.00822,0,0,0,0,0,0,0.00484,0.00542,0.00637,0.00829,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01697,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01697,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01688,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.0169,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01694,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01698,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01702,0.02193,0.02193,0,0,0,0,0,0,0.03365,0.04914,0.06776,0.10601,0,0,0,0,0,0,0.03239,0.04743,0.06568,0.10326,0,0,0,0,0,0,0.03333,0.05141,0.07089,0.11465,0,0,0,0,0,0,0.03478,0.0545,0.07511,0.12181,0,0,0,0,0,0,0.02603,0.04302,0.06075,0.10111,0,0,0,0,0,0,0.0287,0.04664,0.06537,0.10784,0,0,0,0,0,0,0.02654,0.04348,0.06145,0.10144,0,0,0,0,0,0,0.03064,0.04839,0.06736,0.10932,0,0,0,0,0,0,0.02653,0.0418,0.05855,0.09404,0,0,0.00148,0.00201,0.00329,0,0.00121,0.00192,0.00254,0.00418,0,0,0.00132,0.0018,0.00291,0,0.00116,0.00182,0.0024,0.00391,0,0,0.00142,0.00195,0.00317,0,0.00119,0.00188,0.0025,0.00411,0,0,0.00152,0.00208,0.00343,0,0.00122,0.00194,0.00258,0.00428,0,0,0.00088,0.0012,0.00187,0,0.00101,0.00156,0.00201,0.00315,0,0,0.00097,0.00137,0.0021,0,0.00103,0.00161,0.00209,0.00331,0,0,0.00087,0.00118,0.00183,0,0.00101,0.00156,0.00201,0.00313,0,0,0.00109,0.00149,0.00238,0,0.00108,0.00169,0.00221,0.00353,0,0,0.00089,0.00121,0.00187,0,0.00103,0.00159,0.00204,0.00318,0,0,0.0105,0.01172,0.01459,0,0.03612,0.03768,0.03913,0.043,0,0,0.0104,0.01148,0.01397,0,0.03713,0.03858,0.03991,0.04344,0,0,0.01137,0.01256,0.01531,0,0.04053,0.04206,0.04349,0.0473,0,0,0.0101,0.01139,0.01443,0,0.03383,0.03543,0.03693,0.04097,0,0,0.01002,0.01072,0.01218,0,0.03936,0.04054,0.04154,0.04411,0,0,0.00945,0.01035,0.01192,0,0.0359,0.03713,0.0382,0.04099,0,0,0.00925,0.00993,0.01134,0,0.03601,0.03718,0.03816,0.04068,0,0,0.01013,0.01101,0.01297,0,0.03791,0.03922,0.04039,0.04343,0,0,0.00963,0.01032,0.01175,0,0.03759,0.03877,0.03977,0.0423,0,0,0.00374,0.00482,0.00736,0,0.00668,0.00806,0.00934,0.01277,0,0,0.00346,0.00442,0.00662,0,0.0067,0.00799,0.00916,0.01228,0,0,0.00377,0.00482,0.00726,0,0.00721,0.00856,0.00982,0.01319,0,0,0.00378,0.00491,0.0076,0,0.00642,0.00784,0.00917,0.01274,0,0,0.00269,0.00331,0.0046,0,0.00668,0.00772,0.00861,0.01088,0,0,0.00277,0.00354,0.00496,0,0.0063,0.00739,0.00834,0.01081,0,0,0.00256,0.00317,0.00441,0,0.00625,0.00728,0.00816,0.01038,0,0,0.00306,0.00384,0.00557,0,0.00665,0.00781,0.00884,0.01153,0,0,0.00264,0.00325,0.00452,0,0.00648,0.00753,0.00841,0.01065,0,0,0,0,0,0,0.00205,0.00207,0.00211,0.00229,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.00229,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00233,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00228,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0023,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00227,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00228,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.00229,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00225,0,0,0,0,0,0,0.04937,0.06481,0.08712,0.13154,0,0,0,0,0,0,0.04193,0.05581,0.07605,0.11667,0,0,0,0,0,0,0.04852,0.06576,0.0896,0.14025,0,0,0,0,0,0,0.05391,0.07278,0.09875,0.15351,0,0,0,0,0,0,0.02162,0.03329,0.0495,0.08575,0,0,0,0,0,0,0.02678,0.03979,0.05778,0.09789,0,0,0,0,0,0,0.02017,0.03139,0.04712,0.08211,0,0,0,0,0,0,0.03157,0.0448,0.06324,0.10275,0,0,0,0,0,0,0.01975,0.02976,0.04387,0.07366,0 +Minivan,PH10E,2035,0,0,0,0,0,0,0.00797,0.00838,0.0088,0.00978,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.00978,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01072,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.0094,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.00967,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00905,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00889,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00964,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00923,0,0,0,0,0,0,0.01653,0.01046,0.00836,0.00986,0,0,0,0,0,0,0.01421,0.00915,0.00742,0.0088,0,0,0,0,0,0,0.01626,0.01076,0.00873,0.01053,0,0,0,0,0,0,0.01799,0.01188,0.0096,0.01153,0,0,0,0,0,0,0.00786,0.00602,0.00533,0.00661,0,0,0,0,0,0,0.00948,0.00701,0.00608,0.00752,0,0,0,0,0,0,0.00745,0.00576,0.00515,0.00639,0,0,0,0,0,0,0.01099,0.00767,0.00646,0.00783,0,0,0,0,0,0,0.00728,0.0054,0.00472,0.00571,0,0,0,0,0,0,0.79761,1.16635,1.49257,1.99708,0,0,0,0,0,0,0.76227,1.12838,1.45186,1.9433,0,0,0,0,0,0,0.80673,1.25277,1.64477,2.27123,0,0,0,0,0,0,0.8747,1.36231,1.79367,2.46744,0,0,0,0,0,0,0.65933,1.105,1.47266,2.03042,0,0,0,0,0,0,0.69411,1.15574,1.54266,2.14062,0,0,0,0,0,0,0.68029,1.13894,1.51496,2.07866,0,0,0,0,0,0,0.72107,1.14653,1.50013,2.04353,0,0,0,0,0,0,0.61569,0.98447,1.27517,1.70565,0,0,0,0,0,0,213.45459,215.51958,218.89542,227.92808,0,0,0,0,0,0,215.00058,216.91807,220.06238,228.65637,0,0,0,0,0,0,218.09737,220.1156,223.42433,232.38117,0,0,0,0,0,0,213.28959,215.30918,218.62603,227.5553,0,0,0,0,0,0,218.00676,219.40855,221.74227,228.7709,0,0,0,0,0,0,214.70366,216.24846,218.8088,226.25097,0,0,0,0,0,0,216.40104,217.74241,219.98545,226.82384,0,0,0,0,0,0,216.57028,218.19448,220.87797,228.58087,0,0,0,0,0,0,213.14733,214.62766,217.06223,224.21254,0,0,0,0,0,0,0.00475,0.00534,0.00628,0.00819,0,0,0,0,0,0,0.00476,0.00534,0.00628,0.00818,0,0,0,0,0,0,0.00483,0.00542,0.00636,0.00826,0,0,0,0,0,0,0.00466,0.00523,0.00617,0.00805,0,0,0,0,0,0,0.00481,0.00539,0.00634,0.00823,0,0,0,0,0,0,0.00471,0.00529,0.00622,0.0081,0,0,0,0,0,0,0.00475,0.00533,0.00627,0.00817,0,0,0,0,0,0,0.00479,0.00538,0.00633,0.00823,0,0,0,0,0,0,0.00483,0.00542,0.00638,0.0083,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01704,0.02193,0.02193,0,0,0,0,0,0,0.03362,0.04925,0.0678,0.09277,0,0,0,0,0,0,0.03237,0.04753,0.06572,0.08998,0,0,0,0,0,0,0.03332,0.05153,0.07093,0.09907,0,0,0,0,0,0,0.03477,0.05462,0.07515,0.10502,0,0,0,0,0,0,0.02604,0.04313,0.06078,0.08557,0,0,0,0,0,0,0.0287,0.04676,0.0654,0.0918,0,0,0,0,0,0,0.02655,0.04359,0.06148,0.08596,0,0,0,0,0,0,0.03064,0.0485,0.0674,0.09343,0,0,0,0,0,0,0.02653,0.0419,0.05858,0.0802,0,0.00051,0.0009,0.00125,0.0024,0,0.00122,0.00192,0.00254,0.00384,0,0.00047,0.00084,0.00116,0.00217,0,0.00116,0.00182,0.0024,0.00359,0,0.0005,0.00088,0.00123,0.00234,0,0.0012,0.00189,0.0025,0.00378,0,0.00052,0.00092,0.00129,0.0025,0,0.00123,0.00194,0.00258,0.00393,0,0.00039,0.00068,0.00092,0.00155,0,0.00101,0.00156,0.00201,0.00291,0,0.00041,0.00072,0.00097,0.00168,0,0.00103,0.00161,0.00209,0.00305,0,0.00039,0.00067,0.00091,0.00153,0,0.00101,0.00156,0.00201,0.00288,0,0.00043,0.00076,0.00104,0.00185,0,0.00109,0.00169,0.00221,0.00325,0,0.0004,0.00068,0.00093,0.00155,0,0.00103,0.00159,0.00204,0.00293,0,0.00847,0.00937,0.01019,0.01281,0,0.03613,0.03769,0.03913,0.04223,0,0.00864,0.00945,0.01019,0.01248,0,0.03713,0.03859,0.03991,0.04272,0,0.00943,0.0103,0.01111,0.01365,0,0.04053,0.04207,0.04349,0.04653,0,0.008,0.00893,0.0098,0.01257,0,0.03383,0.03543,0.03693,0.04016,0,0.009,0.00962,0.01014,0.01155,0,0.03936,0.04054,0.04154,0.04356,0,0.00827,0.00898,0.00949,0.0111,0,0.0359,0.03713,0.03821,0.04041,0,0.00826,0.00887,0.00938,0.01074,0,0.03602,0.03718,0.03817,0.04014,0,0.00875,0.00946,0.01009,0.01193,0,0.03791,0.03923,0.04039,0.0428,0,0.00862,0.00923,0.00975,0.01113,0,0.03759,0.03878,0.03977,0.04176,0,0.00195,0.00274,0.00346,0.00578,0,0.00669,0.00807,0.00935,0.01208,0,0.00191,0.00262,0.00328,0.0053,0,0.0067,0.00799,0.00917,0.01165,0,0.00205,0.00283,0.00354,0.00579,0,0.00721,0.00857,0.00982,0.01251,0,0.00192,0.00274,0.00351,0.00596,0,0.00643,0.00784,0.00917,0.01203,0,0.00179,0.00233,0.0028,0.00404,0,0.00669,0.00773,0.00861,0.0104,0,0.00173,0.00233,0.00281,0.00423,0,0.00631,0.0074,0.00834,0.01029,0,0.00169,0.00222,0.00268,0.00388,0,0.00626,0.00729,0.00816,0.00991,0,0.00184,0.00247,0.00302,0.00465,0,0.00665,0.00782,0.00884,0.01098,0,0.00174,0.00228,0.00274,0.00396,0,0.00648,0.00753,0.00841,0.01017,0,0,0,0,0,0,0.00205,0.00207,0.00211,0.00219,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.0022,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00224,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00219,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0022,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.0022,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00216,0,0,0,0,0,0,0.04925,0.0649,0.08719,0.12317,0,0,0,0,0,0,0.04183,0.05589,0.07612,0.10819,0,0,0,0,0,0,0.0484,0.06585,0.08967,0.12928,0,0,0,0,0,0,0.05379,0.07288,0.09883,0.142,0,0,0,0,0,0,0.02159,0.03336,0.04954,0.07461,0,0,0,0,0,0,0.02673,0.03987,0.05782,0.08636,0,0,0,0,0,0,0.02014,0.03146,0.04715,0.07113,0,0,0,0,0,0,0.03151,0.04487,0.06329,0.09245,0,0,0,0,0,0,0.01971,0.02982,0.04391,0.06454 +Minivan,PH10E,2040,0,0,0,0,0,0,0,0.00797,0.00838,0.0088,0,0,0,0,0,0,0,0.00817,0.00854,0.00892,0,0,0,0,0,0,0,0.00894,0.00934,0.00975,0,0,0,0,0,0,0,0.00749,0.00791,0.00836,0,0,0,0,0,0,0,0.0086,0.00885,0.00911,0,0,0,0,0,0,0,0.00786,0.00814,0.00842,0,0,0,0,0,0,0,0.00786,0.00811,0.00835,0,0,0,0,0,0,0,0.00831,0.00862,0.00893,0,0,0,0,0,0,0,0.0082,0.00845,0.00869,0,0,0,0,0,0,0,0.01653,0.01046,0.00835,0,0,0,0,0,0,0,0.01422,0.00915,0.00742,0,0,0,0,0,0,0,0.01626,0.01076,0.00873,0,0,0,0,0,0,0,0.01799,0.01188,0.0096,0,0,0,0,0,0,0,0.00787,0.00601,0.00532,0,0,0,0,0,0,0,0.00949,0.00701,0.00608,0,0,0,0,0,0,0,0.00745,0.00576,0.00515,0,0,0,0,0,0,0,0.01099,0.00767,0.00645,0,0,0,0,0,0,0,0.00729,0.00539,0.00472,0,0,0,0,0,0,0,0.79649,1.16554,1.49218,0,0,0,0,0,0,0,0.76117,1.12762,1.45152,0,0,0,0,0,0,0,0.80545,1.25186,1.64437,0,0,0,0,0,0,0,0.87331,1.36132,1.79325,0,0,0,0,0,0,0,0.65816,1.10427,1.47244,0,0,0,0,0,0,0,0.69289,1.15496,1.5424,0,0,0,0,0,0,0,0.67911,1.13823,1.51475,0,0,0,0,0,0,0,0.71989,1.14579,1.49985,0,0,0,0,0,0,0,0.61469,0.98389,1.27496,0,0,0,0,0,0,0,213.4427,215.5043,218.88484,0,0,0,0,0,0,0,214.98953,216.90376,220.05274,0,0,0,0,0,0,0,218.08565,220.10049,223.41404,0,0,0,0,0,0,0,213.27791,215.29397,218.61572,0,0,0,0,0,0,0,217.99862,219.39784,221.73511,0,0,0,0,0,0,0,214.69468,216.23676,218.80109,0,0,0,0,0,0,0,216.39311,217.73212,219.97902,0,0,0,0,0,0,0,216.56081,218.18222,220.86993,0,0,0,0,0,0,0,213.1388,214.61659,217.05499,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00483,0.00541,0.00636,0,0,0,0,0,0,0,0.00465,0.00523,0.00617,0,0,0,0,0,0,0,0.00481,0.00539,0.00634,0,0,0,0,0,0,0,0.00471,0.00528,0.00622,0,0,0,0,0,0,0,0.00475,0.00533,0.00627,0,0,0,0,0,0,0,0.00479,0.00537,0.00632,0,0,0,0,0,0,0,0.00483,0.00542,0.00638,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01461,0.01699,0.02188,0,0,0,0,0,0,0,0.01461,0.01698,0.02187,0,0,0,0,0,0,0,0.01454,0.01689,0.02176,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01455,0.01691,0.02178,0,0,0,0,0,0,0,0.01459,0.01695,0.02184,0,0,0,0,0,0,0,0.01462,0.01699,0.02189,0,0,0,0,0,0,0,0.01465,0.01703,0.02193,0,0,0,0,0,0,0,0.03358,0.04918,0.06777,0,0,0,0,0,0,0,0.03233,0.04746,0.0657,0,0,0,0,0,0,0,0.03327,0.05145,0.07091,0,0,0,0,0,0,0,0.03472,0.05454,0.07513,0,0,0,0,0,0,0,0.026,0.04306,0.06076,0,0,0,0,0,0,0,0.02866,0.04669,0.06538,0,0,0,0,0,0,0,0.02651,0.04352,0.06147,0,0,0,0,0,0,0,0.0306,0.04843,0.06738,0,0,0,0,0,0,0,0.0265,0.04184,0.05856,0,0,0.00048,0.0008,0.00114,0.00189,0,0.00121,0.00192,0.00254,0,0,0.00046,0.00075,0.00108,0.00175,0,0.00116,0.00182,0.0024,0,0,0.00048,0.00078,0.00112,0.00185,0,0.00119,0.00188,0.0025,0,0,0.00049,0.00081,0.00117,0.00194,0,0.00122,0.00194,0.00258,0,0,0.00039,0.00064,0.0009,0.00137,0,0.00101,0.00156,0.00201,0,0,0.00041,0.00066,0.00093,0.00145,0,0.00103,0.00161,0.00209,0,0,0.00039,0.00064,0.00089,0.00136,0,0.00101,0.00156,0.00201,0,0,0.00043,0.0007,0.00099,0.00156,0,0.00108,0.00169,0.00221,0,0,0.0004,0.00065,0.00091,0.00138,0,0.00103,0.00159,0.00204,0,0,0.00841,0.0091,0.0099,0.01164,0,0.03612,0.03769,0.03913,0,0,0.0086,0.00924,0.00998,0.01154,0,0.03713,0.03859,0.03991,0,0,0.00937,0.01005,0.01083,0.01254,0,0.04053,0.04207,0.04349,0,0,0.00792,0.00862,0.00945,0.01129,0,0.03383,0.03543,0.03693,0,0,0.00901,0.00952,0.01008,0.01115,0,0.03936,0.04054,0.04154,0,0,0.00831,0.0088,0.0094,0.01058,0,0.0359,0.03713,0.0382,0,0,0.00827,0.00878,0.00933,0.01037,0,0.03602,0.03718,0.03817,0,0,0.00873,0.00931,0.00995,0.01127,0,0.03791,0.03923,0.04039,0,0,0.00862,0.00914,0.0097,0.01075,0,0.03759,0.03877,0.03977,0,0,0.00189,0.0025,0.00321,0.00475,0,0.00668,0.00807,0.00934,0,0,0.00187,0.00244,0.00309,0.00447,0,0.0067,0.00799,0.00916,0,0,0.002,0.0026,0.00329,0.0048,0,0.00721,0.00856,0.00982,0,0,0.00185,0.00247,0.0032,0.00483,0,0.00642,0.00784,0.00917,0,0,0.00179,0.00225,0.00274,0.00369,0,0.00668,0.00772,0.00861,0,0,0.00173,0.0022,0.00273,0.00377,0,0.0063,0.00739,0.00834,0,0,0.00169,0.00215,0.00263,0.00356,0,0.00625,0.00729,0.00816,0,0,0.00182,0.00233,0.0029,0.00406,0,0.00665,0.00782,0.00884,0,0,0.00175,0.00221,0.0027,0.00363,0,0.00648,0.00753,0.00841,0,0,0,0,0,0,0,0.00205,0.00207,0.00211,0,0,0,0,0,0,0,0.00207,0.00209,0.00212,0,0,0,0,0,0,0,0.0021,0.00212,0.00215,0,0,0,0,0,0,0,0.00205,0.00207,0.0021,0,0,0,0,0,0,0,0.0021,0.00211,0.00213,0,0,0,0,0,0,0,0.00207,0.00208,0.00211,0,0,0,0,0,0,0,0.00208,0.0021,0.00212,0,0,0,0,0,0,0,0.00208,0.0021,0.00213,0,0,0,0,0,0,0,0.00205,0.00207,0.00209,0,0,0,0,0,0,0,0.04919,0.06481,0.08714,0,0,0,0,0,0,0,0.04177,0.05581,0.07607,0,0,0,0,0,0,0,0.04834,0.06576,0.08963,0,0,0,0,0,0,0,0.05372,0.07278,0.09878,0,0,0,0,0,0,0,0.02155,0.03331,0.04951,0,0,0,0,0,0,0,0.02669,0.03981,0.05779,0,0,0,0,0,0,0,0.02011,0.0314,0.04713,0,0,0,0,0,0,0,0.03146,0.04481,0.06326,0,0,0,0,0,0,0,0.01969,0.02977,0.04388 +Minivan,PH10E,2045,0,0,0,0,0,0,0,0,0.00797,0.00838,0,0,0,0,0,0,0,0,0.00817,0.00854,0,0,0,0,0,0,0,0,0.00894,0.00934,0,0,0,0,0,0,0,0,0.00749,0.00791,0,0,0,0,0,0,0,0,0.0086,0.00885,0,0,0,0,0,0,0,0,0.00786,0.00814,0,0,0,0,0,0,0,0,0.00786,0.00811,0,0,0,0,0,0,0,0,0.00831,0.00862,0,0,0,0,0,0,0,0,0.0082,0.00845,0,0,0,0,0,0,0,0,0.01653,0.01046,0,0,0,0,0,0,0,0,0.01422,0.00915,0,0,0,0,0,0,0,0,0.01626,0.01076,0,0,0,0,0,0,0,0,0.01799,0.01188,0,0,0,0,0,0,0,0,0.00787,0.00601,0,0,0,0,0,0,0,0,0.00949,0.00701,0,0,0,0,0,0,0,0,0.00745,0.00576,0,0,0,0,0,0,0,0,0.01099,0.00767,0,0,0,0,0,0,0,0,0.00729,0.00539,0,0,0,0,0,0,0,0,0.79587,1.16531,0,0,0,0,0,0,0,0,0.76056,1.12739,0,0,0,0,0,0,0,0,0.80475,1.25157,0,0,0,0,0,0,0,0,0.87255,1.36101,0,0,0,0,0,0,0,0,0.65756,1.10402,0,0,0,0,0,0,0,0,0.69225,1.15469,0,0,0,0,0,0,0,0,0.67851,1.13797,0,0,0,0,0,0,0,0,0.71926,1.14555,0,0,0,0,0,0,0,0,0.61417,0.9837,0,0,0,0,0,0,0,0,213.43362,215.50112,0,0,0,0,0,0,0,0,214.98102,216.90063,0,0,0,0,0,0,0,0,218.07672,220.09735,0,0,0,0,0,0,0,0,213.26892,215.29077,0,0,0,0,0,0,0,0,217.99222,219.39577,0,0,0,0,0,0,0,0,214.68769,216.23437,0,0,0,0,0,0,0,0,216.38703,217.73035,0,0,0,0,0,0,0,0,216.55366,218.17975,0,0,0,0,0,0,0,0,213.13228,214.61452,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00483,0.00541,0,0,0,0,0,0,0,0,0.00465,0.00523,0,0,0,0,0,0,0,0,0.00481,0.00539,0,0,0,0,0,0,0,0,0.0047,0.00528,0,0,0,0,0,0,0,0,0.00474,0.00533,0,0,0,0,0,0,0,0,0.00479,0.00537,0,0,0,0,0,0,0,0,0.00482,0.00542,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01454,0.01689,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01455,0.01691,0,0,0,0,0,0,0,0,0.01459,0.01695,0,0,0,0,0,0,0,0,0.01462,0.01699,0,0,0,0,0,0,0,0,0.01465,0.01703,0,0,0,0,0,0,0,0,0.03356,0.04916,0,0,0,0,0,0,0,0,0.03231,0.04744,0,0,0,0,0,0,0,0,0.03324,0.05143,0,0,0,0,0,0,0,0,0.03469,0.05452,0,0,0,0,0,0,0,0,0.02598,0.04304,0,0,0,0,0,0,0,0,0.02864,0.04666,0,0,0,0,0,0,0,0,0.02649,0.0435,0,0,0,0,0,0,0,0,0.03057,0.04841,0,0,0,0,0,0,0,0,0.02648,0.04182,0,0,0,0.00042,0.00067,0.00089,0.0016,0,0.00121,0.00192,0,0,0,0.0004,0.00064,0.00084,0.00149,0,0.00116,0.00182,0,0,0,0.00041,0.00066,0.00088,0.00157,0,0.00119,0.00188,0,0,0,0.00042,0.00068,0.00091,0.00164,0,0.00122,0.00194,0,0,0,0.00034,0.00055,0.00071,0.00119,0,0.00101,0.00156,0,0,0,0.00035,0.00056,0.00073,0.00125,0,0.00103,0.00161,0,0,0,0.00034,0.00055,0.0007,0.00118,0,0.001,0.00156,0,0,0,0.00037,0.00059,0.00078,0.00134,0,0.00108,0.00169,0,0,0,0.00035,0.00056,0.00072,0.0012,0,0.00103,0.00159,0,0,0,0.00825,0.00883,0.00934,0.011,0,0.03612,0.03768,0,0,0,0.00845,0.00899,0.00946,0.01097,0,0.03712,0.03858,0,0,0,0.00921,0.00978,0.01028,0.01192,0,0.04053,0.04207,0,0,0,0.00775,0.00834,0.00887,0.01061,0,0.03382,0.03543,0,0,0,0.0089,0.00933,0.00968,0.01077,0,0.03936,0.04054,0,0,0,0.00815,0.0086,0.00898,0.01016,0,0.0359,0.03713,0,0,0,0.00816,0.00859,0.00893,0.01,0,0.03601,0.03718,0,0,0,0.0086,0.00909,0.0095,0.01079,0,0.03791,0.03923,0,0,0,0.00851,0.00894,0.00929,0.01037,0,0.03759,0.03877,0,0,0,0.00175,0.00226,0.00271,0.00418,0,0.00668,0.00806,0,0,0,0.00174,0.00221,0.00263,0.00396,0,0.0067,0.00799,0,0,0,0.00186,0.00236,0.00281,0.00425,0,0.0072,0.00856,0,0,0,0.0017,0.00222,0.00269,0.00423,0,0.00642,0.00784,0,0,0,0.00169,0.00207,0.00239,0.00335,0,0.00668,0.00772,0,0,0,0.00162,0.00202,0.00235,0.0034,0,0.0063,0.00739,0,0,0,0.0016,0.00198,0.00228,0.00323,0,0.00625,0.00728,0,0,0,0.00171,0.00214,0.0025,0.00365,0,0.00665,0.00781,0,0,0,0.00165,0.00204,0.00235,0.0033,0,0.00648,0.00753,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.00207,0.00209,0,0,0,0,0,0,0,0,0.0021,0.00212,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.0021,0.00211,0,0,0,0,0,0,0,0,0.00207,0.00208,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.04915,0.06479,0,0,0,0,0,0,0,0,0.04174,0.05579,0,0,0,0,0,0,0,0,0.0483,0.06573,0,0,0,0,0,0,0,0,0.05368,0.07276,0,0,0,0,0,0,0,0,0.02153,0.03329,0,0,0,0,0,0,0,0,0.02666,0.03979,0,0,0,0,0,0,0,0,0.02009,0.03139,0,0,0,0,0,0,0,0,0.03144,0.04479,0,0,0,0,0,0,0,0,0.01967,0.02975 +Minivan,PH10E,2050,0,0,0,0,0,0,0,0,0,0.00797,0,0,0,0,0,0,0,0,0,0.00817,0,0,0,0,0,0,0,0,0,0.00894,0,0,0,0,0,0,0,0,0,0.00749,0,0,0,0,0,0,0,0,0,0.0086,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00831,0,0,0,0,0,0,0,0,0,0.0082,0,0,0,0,0,0,0,0,0,0.01653,0,0,0,0,0,0,0,0,0,0.01422,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01799,0,0,0,0,0,0,0,0,0,0.00787,0,0,0,0,0,0,0,0,0,0.00949,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.01099,0,0,0,0,0,0,0,0,0,0.00729,0,0,0,0,0,0,0,0,0,0.79588,0,0,0,0,0,0,0,0,0,0.76057,0,0,0,0,0,0,0,0,0,0.80476,0,0,0,0,0,0,0,0,0,0.87256,0,0,0,0,0,0,0,0,0,0.65758,0,0,0,0,0,0,0,0,0,0.69226,0,0,0,0,0,0,0,0,0,0.67852,0,0,0,0,0,0,0,0,0,0.71927,0,0,0,0,0,0,0,0,0,0.61418,0,0,0,0,0,0,0,0,0,213.43367,0,0,0,0,0,0,0,0,0,214.98087,0,0,0,0,0,0,0,0,0,218.0766,0,0,0,0,0,0,0,0,0,213.26882,0,0,0,0,0,0,0,0,0,217.99211,0,0,0,0,0,0,0,0,0,214.68757,0,0,0,0,0,0,0,0,0,216.3871,0,0,0,0,0,0,0,0,0,216.55347,0,0,0,0,0,0,0,0,0,213.13218,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00483,0,0,0,0,0,0,0,0,0,0.00465,0,0,0,0,0,0,0,0,0,0.00481,0,0,0,0,0,0,0,0,0,0.0047,0,0,0,0,0,0,0,0,0,0.00474,0,0,0,0,0,0,0,0,0,0.00479,0,0,0,0,0,0,0,0,0,0.00482,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01454,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01455,0,0,0,0,0,0,0,0,0,0.01459,0,0,0,0,0,0,0,0,0,0.01462,0,0,0,0,0,0,0,0,0,0.01465,0,0,0,0,0,0,0,0,0,0.03356,0,0,0,0,0,0,0,0,0,0.03231,0,0,0,0,0,0,0,0,0,0.03325,0,0,0,0,0,0,0,0,0,0.03469,0,0,0,0,0,0,0,0,0,0.02598,0,0,0,0,0,0,0,0,0,0.02864,0,0,0,0,0,0,0,0,0,0.02649,0,0,0,0,0,0,0,0,0,0.03057,0,0,0,0,0,0,0,0,0,0.02648,0,0,0,0,0.00027,0.00042,0.00056,0.00115,0,0.00121,0,0,0,0,0.00025,0.0004,0.00053,0.00108,0,0.00116,0,0,0,0,0.00026,0.00041,0.00055,0.00113,0,0.00119,0,0,0,0,0.00027,0.00043,0.00057,0.00118,0,0.00122,0,0,0,0,0.00022,0.00034,0.00044,0.00086,0,0.00101,0,0,0,0,0.00023,0.00035,0.00046,0.00091,0,0.00103,0,0,0,0,0.00022,0.00034,0.00044,0.00086,0,0.001,0,0,0,0,0.00024,0.00037,0.00049,0.00097,0,0.00108,0,0,0,0,0.00023,0.00035,0.00045,0.00087,0,0.00103,0,0,0,0,0.00793,0.00828,0.00859,0.00998,0,0.03612,0,0,0,0,0.00815,0.00847,0.00876,0.01003,0,0.03712,0,0,0,0,0.0089,0.00924,0.00955,0.01092,0,0.04053,0,0,0,0,0.00743,0.00778,0.00811,0.00956,0,0.03382,0,0,0,0,0.00864,0.0089,0.00912,0.01006,0,0.03936,0,0,0,0,0.00788,0.00815,0.00839,0.0094,0,0.0359,0,0,0,0,0.00791,0.00816,0.00838,0.0093,0,0.03601,0,0,0,0,0.00832,0.00861,0.00887,0.00997,0,0.03791,0,0,0,0,0.00825,0.00851,0.00873,0.00966,0,0.03759,0,0,0,0,0.00147,0.00177,0.00205,0.00329,0,0.00668,0,0,0,0,0.00147,0.00176,0.00201,0.00314,0,0.0067,0,0,0,0,0.00158,0.00188,0.00216,0.00337,0,0.0072,0,0,0,0,0.00141,0.00172,0.00201,0.0033,0,0.00642,0,0,0,0,0.00147,0.0017,0.00189,0.00272,0,0.00668,0,0,0,0,0.00138,0.00162,0.00183,0.00273,0,0.0063,0,0,0,0,0.00137,0.0016,0.00179,0.00261,0,0.00625,0,0,0,0,0.00146,0.00172,0.00194,0.00292,0,0.00665,0,0,0,0,0.00142,0.00165,0.00185,0.00267,0,0.00648,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.04915,0,0,0,0,0,0,0,0,0,0.04174,0,0,0,0,0,0,0,0,0,0.0483,0,0,0,0,0,0,0,0,0,0.05368,0,0,0,0,0,0,0,0,0,0.02153,0,0,0,0,0,0,0,0,0,0.02666,0,0,0,0,0,0,0,0,0,0.02009,0,0,0,0,0,0,0,0,0,0.03144,0,0,0,0,0,0,0,0,0,0.01967 +Minivan,PH10G,1990,0.04668,0,0,0,0,0,0,0,0,0,0.04118,0,0,0,0,0,0,0,0,0,0.04674,0,0,0,0,0,0,0,0,0,0.04975,0,0,0,0,0,0,0,0,0,0.0266,0,0,0,0,0,0,0,0,0,0.02946,0,0,0,0,0,0,0,0,0,0.02482,0,0,0,0,0,0,0,0,0,0.03361,0,0,0,0,0,0,0,0,0,0.02495,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0,0,0,0,0.00028,0.00044,0.00058,0.00096,0,0.06054,0,0,0,0,0.00027,0.00042,0.00056,0.00091,0,0.06752,0,0,0,0,0.00027,0.00043,0.00057,0.00094,0,0.07436,0,0,0,0,0.00028,0.00045,0.00059,0.00098,0,0.03611,0,0,0,0,0.00024,0.00037,0.00048,0.00076,0,0.04223,0,0,0,0,0.00024,0.00038,0.00049,0.00079,0,0.03468,0,0,0,0,0.00023,0.00036,0.00046,0.00071,0,0.04801,0,0,0,0,0.00025,0.00039,0.00051,0.00081,0,0.03431,0,0,0,0,0.00022,0.00034,0.00044,0.00069,0,0.18397,0,0,0,0,0.00796,0.00832,0.00865,0.00954,0,0.16475,0,0,0,0,0.00818,0.00852,0.00883,0.00964,0,0.18469,0,0,0,0,0.00892,0.00927,0.00959,0.01045,0,0.19469,0,0,0,0,0.00745,0.00782,0.00816,0.00908,0,0.11125,0,0,0,0,0.00868,0.00896,0.0092,0.00982,0,0.12231,0,0,0,0,0.00792,0.00821,0.00846,0.00912,0,0.105,0,0,0,0,0.00792,0.00819,0.00841,0.00898,0,0.1372,0,0,0,0,0.00834,0.00865,0.00891,0.0096,0,0.10482,0,0,0,0,0.00824,0.0085,0.00871,0.00925,0,0.14116,0,0,0,0,0.00149,0.00181,0.0021,0.00289,0,0.12341,0,0,0,0,0.0015,0.0018,0.00207,0.00279,0,0.13892,0,0,0,0,0.0016,0.00191,0.00219,0.00296,0,0.15215,0,0,0,0,0.00143,0.00176,0.00205,0.00287,0,0.07439,0,0,0,0,0.0015,0.00175,0.00196,0.00251,0,0.08646,0,0,0,0,0.00141,0.00167,0.0019,0.00248,0,0.07102,0,0,0,0,0.00139,0.00162,0.00182,0.00232,0,0.09841,0,0,0,0,0.00148,0.00175,0.00198,0.00259,0,0.06986,0,0,0,0,0.00141,0.00164,0.00183,0.00231,0,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Minivan,PH10G,1995,0.01727,0.03094,0,0,0,0,0,0,0,0,0.01609,0.02773,0,0,0,0,0,0,0,0,0.018,0.03135,0,0,0,0,0,0,0,0,0.01761,0.03253,0,0,0,0,0,0,0,0,0.01288,0.01918,0,0,0,0,0,0,0,0,0.01301,0.02057,0,0,0,0,0,0,0,0,0.0119,0.01783,0,0,0,0,0,0,0,0,0.01436,0.02326,0,0,0,0,0,0,0,0,0.0122,0.01807,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0,0,0,0,0.00028,0.00044,0.00059,0.00089,0.01643,0.03584,0,0,0,0,0.00027,0.00042,0.00056,0.00084,0.01821,0.03995,0,0,0,0,0.00027,0.00043,0.00057,0.00087,0.01995,0.04383,0,0,0,0,0.00028,0.00044,0.00059,0.00091,0.00987,0.02128,0,0,0,0,0.00024,0.00037,0.00048,0.0007,0.01148,0.02483,0,0,0,0,0.00024,0.00038,0.0005,0.00073,0.00952,0.02044,0,0,0,0,0.00023,0.00035,0.00046,0.00066,0.01307,0.02838,0,0,0,0,0.00025,0.00039,0.00051,0.00075,0.00949,0.02035,0,0,0,0,0.00022,0.00034,0.00044,0.00064,0.07,0.12017,0,0,0,0,0.00796,0.00831,0.00865,0.00937,0.06572,0.10912,0,0,0,0,0.00818,0.00852,0.00883,0.00949,0.07288,0.12157,0,0,0,0,0.00892,0.00926,0.00959,0.01029,0.07109,0.12518,0,0,0,0,0.00745,0.00781,0.00816,0.00891,0.05325,0.07821,0,0,0,0,0.00868,0.00896,0.0092,0.0097,0.0539,0.08322,0,0,0,0,0.00792,0.00821,0.00846,0.009,0.04958,0.0735,0,0,0,0,0.00792,0.00819,0.00841,0.00887,0.05908,0.09317,0,0,0,0,0.00834,0.00864,0.00891,0.00947,0.0506,0.07435,0,0,0,0,0.00824,0.0085,0.00871,0.00914,0.04035,0.08473,0,0,0,0,0.00149,0.0018,0.0021,0.00274,0.03582,0.07421,0,0,0,0,0.0015,0.00179,0.00207,0.00266,0.04002,0.08309,0,0,0,0,0.0016,0.00191,0.0022,0.00282,0.04282,0.09067,0,0,0,0,0.00143,0.00175,0.00206,0.00272,0.02309,0.04517,0,0,0,0,0.0015,0.00175,0.00196,0.0024,0.02594,0.05189,0,0,0,0,0.00141,0.00167,0.0019,0.00237,0.022,0.04316,0,0,0,0,0.00139,0.00162,0.00182,0.00222,0.02931,0.05947,0,0,0,0,0.00148,0.00174,0.00198,0.00247,0.02191,0.04291,0,0,0,0,0.00141,0.00164,0.00183,0.00221,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Minivan,PH10G,2000,0.01213,0.01435,0.02348,0,0,0,0,0,0,0,0.01171,0.01361,0.02136,0,0,0,0,0,0,0,0.01294,0.0151,0.024,0,0,0,0,0,0,0,0.01195,0.01436,0.02433,0,0,0,0,0,0,0,0.01049,0.01153,0.01571,0,0,0,0,0,0,0,0.01013,0.01137,0.01639,0,0,0,0,0,0,0,0.00966,0.01065,0.01458,0,0,0,0,0,0,0,0.011,0.01246,0.01838,0,0,0,0,0,0,0,0.01001,0.011,0.01489,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0,0,0,0,0.00028,0.00044,0.00059,0.00911,0.01271,0.02516,0,0,0,0,0.00027,0.00042,0.00056,0.00993,0.01389,0.02782,0,0,0,0,0.00027,0.00043,0.00057,0.01083,0.01516,0.03057,0,0,0,0,0.00028,0.00044,0.00059,0.00552,0.00765,0.01489,0,0,0,0,0.00024,0.00037,0.00048,0.00634,0.00881,0.01733,0,0,0,0,0.00024,0.00038,0.0005,0.00539,0.00747,0.01442,0,0,0,0,0.00023,0.00035,0.00046,0.00727,0.01012,0.0199,0,0,0,0,0.00025,0.00039,0.00051,0.00549,0.0076,0.0145,0,0,0,0,0.00022,0.00034,0.00044,0.05092,0.05981,0.09255,0,0,0,0,0.00795,0.00831,0.00865,0.04911,0.05679,0.08505,0,0,0,0,0.00818,0.00852,0.00883,0.05393,0.06231,0.09414,0,0,0,0,0.00891,0.00927,0.00959,0.05013,0.05952,0.09469,0,0,0,0,0.00745,0.00781,0.00816,0.04353,0.04796,0.06411,0,0,0,0,0.00868,0.00896,0.00921,0.04236,0.0475,0.06659,0,0,0,0,0.00791,0.00821,0.00847,0.04039,0.04473,0.06009,0,0,0,0,0.00792,0.00819,0.00842,0.04598,0.05204,0.07399,0,0,0,0,0.00834,0.00864,0.00891,0.04175,0.04618,0.06143,0,0,0,0,0.00824,0.0085,0.00871,0.02346,0.03133,0.0603,0,0,0,0,0.00149,0.0018,0.0021,0.02112,0.02792,0.05292,0,0,0,0,0.00149,0.00179,0.00207,0.02325,0.03066,0.05882,0,0,0,0,0.0016,0.00191,0.0022,0.02428,0.03259,0.0637,0,0,0,0,0.00143,0.00175,0.00206,0.01449,0.01841,0.0327,0,0,0,0,0.0015,0.00175,0.00197,0.01574,0.02029,0.03717,0,0,0,0,0.00141,0.00167,0.0019,0.01386,0.01771,0.0313,0,0,0,0,0.00138,0.00162,0.00182,0.01772,0.02308,0.0425,0,0,0,0,0.00148,0.00174,0.00198,0.01407,0.01799,0.03149,0,0,0,0,0.00141,0.00164,0.00183,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Minivan,PH10G,2005,0.00884,0.00977,0.01094,0.01702,0,0,0,0,0,0,0.00894,0.00968,0.01067,0.0159,0,0,0,0,0,0,0.00997,0.01017,0.01102,0.01759,0,0,0,0,0,0,0.00855,0.00936,0.01059,0.01725,0,0,0,0,0,0,0.00904,0.00953,0.01016,0.0129,0,0,0,0,0,0,0.00841,0.00878,0.00942,0.01291,0,0,0,0,0,0,0.00826,0.00868,0.00924,0.01182,0,0,0,0,0,0,0.00894,0.00939,0.01012,0.01422,0,0,0,0,0,0,0.00851,0.00885,0.00932,0.0121,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.00323,0.00515,0.00701,0.01693,0,0,0,0,0.00028,0.00044,0.00295,0.00457,0.00622,0.01488,0,0,0,0,0.00027,0.00042,0.00342,0.00422,0.00569,0.01617,0,0,0,0,0.00027,0.00043,0.00352,0.00522,0.00713,0.01775,0,0,0,0,0.00028,0.00045,0.00206,0.00322,0.00439,0.00929,0,0,0,0,0.00024,0.00037,0.00231,0.00329,0.00448,0.01052,0,0,0,0,0.00024,0.00038,0.00199,0.00303,0.00413,0.00886,0,0,0,0,0.00023,0.00036,0.00253,0.00364,0.00495,0.01193,0,0,0,0,0.00025,0.00039,0.00184,0.00275,0.00372,0.00883,0,0,0,0,0.00022,0.00034,0.03556,0.03964,0.04388,0.06619,0,0,0,0,0.00795,0.00831,0.03594,0.03932,0.04303,0.06244,0,0,0,0,0.00818,0.00852,0.03987,0.04134,0.04465,0.06832,0,0,0,0,0.00892,0.00927,0.03431,0.03793,0.04225,0.06626,0,0,0,0,0.00745,0.00782,0.03619,0.03857,0.04115,0.05192,0,0,0,0,0.00868,0.00896,0.03377,0.03572,0.03833,0.05172,0,0,0,0,0.00791,0.00821,0.0332,0.03534,0.0377,0.04803,0,0,0,0,0.00792,0.00819,0.03586,0.03814,0.04099,0.05653,0,0,0,0,0.00834,0.00864,0.03413,0.03599,0.03806,0.04924,0,0,0,0,0.00824,0.0085,0.00987,0.01348,0.01723,0.03697,0,0,0,0,0.00149,0.00181,0.00946,0.01246,0.01574,0.03291,0,0,0,0,0.00149,0.0018,0.01081,0.01211,0.01504,0.03598,0,0,0,0,0.0016,0.00191,0.01027,0.01347,0.0173,0.03854,0,0,0,0,0.00143,0.00175,0.00799,0.0101,0.01238,0.02191,0,0,0,0,0.0015,0.00175,0.00813,0.00986,0.01217,0.02401,0,0,0,0,0.00141,0.00167,0.00749,0.00939,0.01148,0.02062,0,0,0,0,0.00139,0.00162,0.00876,0.01078,0.01331,0.02705,0,0,0,0,0.00148,0.00174,0.00732,0.00897,0.01081,0.0207,0,0,0,0,0.00141,0.00164,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Minivan,PH10G,2010,0,0.00846,0.00931,0.01029,0.0148,0,0,0,0,0,0,0.00857,0.00931,0.01018,0.01404,0,0,0,0,0,0,0.00917,0.0098,0.01109,0.01539,0,0,0,0,0,0,0.008,0.0089,0.00997,0.01483,0,0,0,0,0,0,0.00887,0.00937,0.00987,0.01202,0,0,0,0,0,0,0.00809,0.00859,0.00926,0.01178,0,0,0,0,0,0,0.00808,0.00854,0.00897,0.01094,0,0,0,0,0,0,0.00857,0.00913,0.00989,0.01284,0,0,0,0,0,0,0.00833,0.00871,0.00926,0.0112,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0,0.00194,0.00327,0.00461,0.01201,0,0,0,0,0.00028,0,0.0018,0.00303,0.00428,0.01072,0,0,0,0,0.00027,0,0.00163,0.00272,0.00443,0.01144,0,0,0,0,0.00027,0,0.00197,0.00333,0.00477,0.01253,0,0,0,0,0.00028,0,0.00157,0.00258,0.00343,0.00728,0,0,0,0,0.00024,0,0.00152,0.00251,0.00357,0.00798,0,0,0,0,0.00024,0,0.00149,0.00244,0.00323,0.00686,0,0,0,0,0.00023,0,0.00157,0.0026,0.00377,0.00884,0,0,0,0,0.00025,0,0.00133,0.00217,0.00314,0.00677,0,0,0,0,0.00022,0,0.03293,0.03598,0.03912,0.05581,0,0,0,0,0.00795,0,0.03356,0.03631,0.03921,0.05368,0,0,0,0,0.00818,0,0.03597,0.03841,0.04245,0.05828,0,0,0,0,0.00892,0,0.03106,0.03419,0.03758,0.05519,0,0,0,0,0.00745,0,0.03514,0.03732,0.03921,0.04771,0,0,0,0,0.00868,0,0.03205,0.0342,0.03658,0.04637,0,0,0,0,0.00792,0,0.03212,0.03415,0.03588,0.04384,0,0,0,0,0.00792,0,0.03382,0.03607,0.03873,0.05002,0,0,0,0,0.00834,0,0.03306,0.03485,0.037,0.04493,0,0,0,0,0.00824,0,0.00755,0.01025,0.01303,0.02779,0,0,0,0,0.00149,0,0.00736,0.00979,0.01236,0.02516,0,0,0,0,0.00149,0,0.00736,0.00952,0.01309,0.0271,0,0,0,0,0.0016,0,0.0074,0.01017,0.01317,0.02875,0,0,0,0,0.00143,0,0.00706,0.00899,0.01066,0.01818,0,0,0,0,0.0015,0,0.00661,0.00851,0.01062,0.01928,0,0,0,0,0.00141,0,0.00654,0.00834,0.00987,0.01691,0,0,0,0,0.00139,0,0.00696,0.00895,0.0113,0.02129,0,0,0,0,0.00148,0,0.00639,0.00796,0.00987,0.01689,0,0,0,0,0.00141,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Minivan,PH10G,2015,0,0,0.00822,0.00889,0.00974,0.01243,0,0,0,0,0,0,0.00838,0.009,0.00976,0.01209,0,0,0,0,0,0,0.009,0.00979,0.0106,0.01312,0,0,0,0,0,0,0.00773,0.00845,0.00934,0.01221,0,0,0,0,0,0,0.00878,0.0092,0.00973,0.01112,0,0,0,0,0,0,0.008,0.0085,0.00907,0.01065,0,0,0,0,0,0,0.00801,0.00839,0.00886,0.0101,0,0,0,0,0,0,0.00845,0.009,0.00962,0.01143,0,0,0,0,0,0,0.00826,0.00869,0.00915,0.01036,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0,0,0.00165,0.00281,0.00409,0.00789,0,0,0,0,0,0,0.00157,0.00267,0.00387,0.00727,0,0,0,0,0,0,0.00142,0.00272,0.00396,0.00756,0,0,0,0,0,0,0.00166,0.00285,0.00417,0.00814,0,0,0,0,0,0,0.00142,0.00232,0.0033,0.00561,0,0,0,0,0,0,0.00138,0.00237,0.00339,0.0059,0,0,0,0,0,0,0.00136,0.00221,0.00313,0.00526,0,0,0,0,0,0,0.0014,0.00245,0.00351,0.0063,0,0,0,0,0,0,0.00121,0.00215,0.00305,0.00514,0,0,0,0,0,0,0.03222,0.03478,0.03774,0.04665,0,0,0,0,0,0,0.03298,0.03541,0.03814,0.04603,0,0,0,0,0,0,0.03546,0.03836,0.0412,0.04962,0,0,0,0,0,0,0.03026,0.03293,0.03598,0.04535,0,0,0,0,0,0,0.03481,0.03671,0.03885,0.04404,0,0,0,0,0,0,0.03171,0.03385,0.03609,0.04181,0,0,0,0,0,0,0.03181,0.03361,0.0356,0.04035,0,0,0,0,0,0,0.03338,0.03566,0.03804,0.04442,0,0,0,0,0,0,0.0328,0.03479,0.03673,0.04139,0,0,0,0,0,0,0.00692,0.00919,0.0118,0.01969,0,0,0,0,0,0,0.00685,0.009,0.01142,0.01839,0,0,0,0,0,0,0.00691,0.00948,0.01199,0.01943,0,0,0,0,0,0,0.0067,0.00906,0.01175,0.02005,0,0,0,0,0,0,0.00677,0.00846,0.01035,0.01493,0,0,0,0,0,0,0.00631,0.0082,0.01019,0.01525,0,0,0,0,0,0,0.00627,0.00786,0.00962,0.01383,0,0,0,0,0,0,0.00657,0.00859,0.0107,0.01634,0,0,0,0,0,0,0.00616,0.00792,0.00963,0.01376,0,0,0,0,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Minivan,PH10G,2020,0,0,0,0.00813,0.00869,0.00925,0.01117,0,0,0,0,0,0,0.00832,0.00882,0.00933,0.01102,0,0,0,0,0,0,0.00907,0.0096,0.01013,0.01194,0,0,0,0,0,0,0.00765,0.00823,0.00882,0.01084,0,0,0,0,0,0,0.00872,0.00908,0.00942,0.01053,0,0,0,0,0,0,0.00798,0.00837,0.00874,0.00997,0,0,0,0,0,0,0.00795,0.00828,0.00859,0.00957,0,0,0,0,0,0,0.00843,0.00885,0.00926,0.01062,0,0,0,0,0,0,0.00827,0.00859,0.00889,0.00984,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0,0,0,0.00151,0.00245,0.00326,0.00585,0,0,0,0,0,0,0.00145,0.00234,0.0031,0.00548,0,0,0,0,0,0,0.00146,0.00237,0.00316,0.00564,0,0,0,0,0,0,0.00152,0.00248,0.00332,0.006,0,0,0,0,0,0,0.00128,0.00204,0.00265,0.00447,0,0,0,0,0,0,0.0013,0.00208,0.00272,0.00464,0,0,0,0,0,0,0.00122,0.00194,0.00251,0.0042,0,0,0,0,0,0,0.00134,0.00215,0.00282,0.00487,0,0,0,0,0,0,0.00119,0.00189,0.00245,0.00409,0,0,0,0,0,0,0.03188,0.03398,0.03588,0.04203,0,0,0,0,0,0,0.0327,0.03467,0.03642,0.04201,0,0,0,0,0,0,0.03557,0.0376,0.03942,0.04528,0,0,0,0,0,0,0.02995,0.0321,0.03406,0.04047,0,0,0,0,0,0,0.0345,0.03612,0.03747,0.04157,0,0,0,0,0,0,0.03155,0.03323,0.03465,0.03903,0,0,0,0,0,0,0.03152,0.03304,0.0343,0.03806,0,0,0,0,0,0,0.03325,0.03501,0.03653,0.04125,0,0,0,0,0,0,0.03276,0.03425,0.03547,0.03914,0,0,0,0,0,0,0.00662,0.00848,0.01016,0.0156,0,0,0,0,0,0,0.0066,0.00835,0.0099,0.01484,0,0,0,0,0,0,0.00701,0.0088,0.01041,0.01559,0,0,0,0,0,0,0.00642,0.00832,0.01006,0.01573,0,0,0,0,0,0,0.00649,0.00793,0.00912,0.01275,0,0,0,0,0,0,0.00617,0.00766,0.00892,0.01279,0,0,0,0,0,0,0.00602,0.00736,0.00847,0.0118,0,0,0,0,0,0,0.00646,0.00802,0.00936,0.01354,0,0,0,0,0,0,0.00612,0.00744,0.00852,0.01177,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Minivan,PH10G,2025,0,0,0,0,0.00787,0.00821,0.00857,0.01007,0,0,0,0,0,0,0.00808,0.00839,0.00871,0.01005,0,0,0,0,0,0,0.00882,0.00915,0.00949,0.01091,0,0,0,0,0,0,0.00738,0.00773,0.00811,0.00968,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00989,0,0,0,0,0,0,0.00778,0.00802,0.00827,0.00926,0,0,0,0,0,0,0.00778,0.00798,0.00818,0.00899,0,0,0,0,0,0,0.00822,0.00848,0.00875,0.00984,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00929,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0.00341,0.00482,0,0.00099,0.00158,0.00211,0.00421,0,0,0,0.00298,0.00421,0,0.00095,0.00151,0.002,0.00396,0,0,0,0.00323,0.00458,0,0.00097,0.00153,0.00204,0.00406,0,0,0,0.00353,0.00502,0,0.00101,0.0016,0.00214,0.0043,0,0,0,0.00179,0.0025,0,0.00085,0.00132,0.00172,0.00326,0,0,0,0.00205,0.00299,0,0.00086,0.00135,0.00176,0.00337,0,0,0,0.00176,0.00245,0,0.00081,0.00126,0.00163,0.00305,0,0,0,0.00237,0.00333,0,0.00088,0.00139,0.00182,0.00353,0,0,0,0.0018,0.0025,0,0.00079,0.00123,0.00159,0.003,0,0,0,0.01464,0.01783,0,0.03077,0.03207,0.0333,0.03825,0,0,0,0.01395,0.0167,0,0.03164,0.03287,0.034,0.03854,0,0,0,0.01526,0.01831,0,0.0345,0.03575,0.03693,0.04166,0,0,0,0.01444,0.01782,0,0.02882,0.03015,0.03141,0.03652,0,0,0,0.01194,0.0135,0,0.03359,0.0346,0.03548,0.03892,0,0,0,0.01175,0.01386,0,0.03062,0.03166,0.03259,0.03624,0,0,0,0.01112,0.01264,0,0.03066,0.03161,0.03242,0.03559,0,0,0,0.01284,0.01498,0,0.03229,0.03339,0.03437,0.03828,0,0,0,0.01155,0.01308,0,0.03193,0.03285,0.03365,0.03677,0,0,0,0.0074,0.01022,0,0.00564,0.00679,0.00787,0.01226,0,0,0,0.0066,0.00903,0,0.00567,0.00675,0.00775,0.01177,0,0,0,0.00721,0.00991,0,0.00606,0.00717,0.00821,0.01239,0,0,0,0.00762,0.0106,0,0.00542,0.0066,0.00771,0.01223,0,0,0,0.00438,0.00577,0,0.00569,0.00659,0.00736,0.01041,0,0,0,0.0048,0.00665,0,0.00535,0.00627,0.00709,0.01032,0,0,0,0.00422,0.00556,0,0.00525,0.00609,0.00681,0.00961,0,0,0,0.00546,0.00735,0,0.00561,0.00658,0.00744,0.0109,0,0,0,0.00434,0.0057,0,0.00538,0.0062,0.0069,0.00967,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Minivan,PH10G,2030,0,0,0,0,0,0.00787,0.00821,0.00856,0.00958,0,0,0,0,0,0,0.00808,0.00838,0.0087,0.00961,0,0,0,0,0,0,0.00882,0.00914,0.00948,0.01044,0,0,0,0,0,0,0.00737,0.00773,0.00809,0.00917,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00959,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00893,0,0,0,0,0,0,0.00778,0.00798,0.00817,0.00872,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00948,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00903,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0.00148,0.00201,0.00329,0,0.00099,0.00157,0.00209,0.00348,0,0,0.00132,0.0018,0.00291,0,0.00095,0.00151,0.00199,0.00327,0,0,0.00142,0.00195,0.00317,0,0.00096,0.00153,0.00203,0.00336,0,0,0.00152,0.00208,0.00343,0,0.001,0.0016,0.00212,0.00355,0,0,0.00088,0.0012,0.00187,0,0.00084,0.00132,0.00171,0.0027,0,0,0.00097,0.00137,0.0021,0,0.00086,0.00134,0.00175,0.0028,0,0,0.00087,0.00118,0.00183,0,0.00081,0.00125,0.00162,0.00254,0,0,0.00109,0.00149,0.00238,0,0.00088,0.00139,0.00181,0.00293,0,0,0.00089,0.00121,0.00187,0,0.00079,0.00122,0.00159,0.00249,0,0,0.0105,0.01172,0.01459,0,0.03076,0.03206,0.03327,0.03655,0,0,0.0104,0.01148,0.01397,0,0.03164,0.03286,0.03397,0.03698,0,0,0.01137,0.01256,0.01531,0,0.03449,0.03574,0.0369,0.04004,0,0,0.0101,0.01139,0.01443,0,0.02881,0.03014,0.03137,0.03478,0,0,0.01002,0.01072,0.01218,0,0.03359,0.0346,0.03546,0.03771,0,0,0.00945,0.01035,0.01192,0,0.03062,0.03166,0.03257,0.03496,0,0,0.00925,0.00993,0.01134,0,0.03065,0.0316,0.0324,0.03447,0,0,0.01013,0.01101,0.01297,0,0.03229,0.03338,0.03435,0.03691,0,0,0.00963,0.01032,0.01175,0,0.03192,0.03285,0.03364,0.03566,0,0,0.00374,0.00482,0.00736,0,0.00563,0.00678,0.00785,0.01075,0,0,0.00346,0.00442,0.00662,0,0.00566,0.00674,0.00772,0.01039,0,0,0.00377,0.00482,0.00726,0,0.00605,0.00716,0.00818,0.01096,0,0,0.00378,0.00491,0.0076,0,0.00541,0.00659,0.00767,0.01069,0,0,0.00269,0.00331,0.0046,0,0.00569,0.00658,0.00734,0.00933,0,0,0.00277,0.00354,0.00496,0,0.00535,0.00627,0.00707,0.00919,0,0,0.00256,0.00317,0.00441,0,0.00525,0.00609,0.00679,0.00863,0,0,0.00306,0.00384,0.00557,0,0.00561,0.00657,0.00743,0.0097,0,0,0.00264,0.00325,0.00452,0,0.00538,0.0062,0.0069,0.00868,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Minivan,PH10G,2035,0,0,0,0,0,0,0.00786,0.0082,0.00856,0.00941,0,0,0,0,0,0,0.00807,0.00838,0.0087,0.00946,0,0,0,0,0,0,0.00882,0.00913,0.00948,0.01028,0,0,0,0,0,0,0.00737,0.00772,0.0081,0.00899,0,0,0,0,0,0,0.00854,0.00875,0.00898,0.00948,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00882,0,0,0,0,0,0,0.00778,0.00797,0.00818,0.00863,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00935,0,0,0,0,0,0,0.0081,0.0083,0.0085,0.00893,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0,0.00051,0.0009,0.00125,0.0024,0,0.00099,0.00156,0.0021,0.00323,0,0.00047,0.00084,0.00116,0.00217,0,0.00095,0.0015,0.00199,0.00303,0,0.0005,0.00088,0.00123,0.00234,0,0.00096,0.00152,0.00203,0.00311,0,0.00052,0.00092,0.00129,0.0025,0,0.001,0.00158,0.00213,0.0033,0,0.00039,0.00068,0.00092,0.00155,0,0.00084,0.00131,0.00171,0.00251,0,0.00041,0.00072,0.00097,0.00168,0,0.00086,0.00134,0.00175,0.0026,0,0.00039,0.00067,0.00091,0.00153,0,0.0008,0.00125,0.00162,0.00236,0,0.00043,0.00076,0.00104,0.00185,0,0.00088,0.00138,0.00182,0.00271,0,0.0004,0.00068,0.00093,0.00155,0,0.00079,0.00122,0.00159,0.00231,0,0.00847,0.00937,0.01019,0.01281,0,0.03076,0.03204,0.03328,0.03597,0,0.00864,0.00945,0.01019,0.01248,0,0.03163,0.03284,0.03398,0.03644,0,0.00943,0.0103,0.01111,0.01365,0,0.03448,0.03572,0.03691,0.03947,0,0.008,0.00893,0.0098,0.01257,0,0.0288,0.03011,0.03139,0.03419,0,0.009,0.00962,0.01014,0.01155,0,0.03358,0.03458,0.03546,0.03728,0,0.00827,0.00898,0.00949,0.0111,0,0.03061,0.03164,0.03257,0.03452,0,0.00826,0.00887,0.00938,0.01074,0,0.03065,0.03158,0.03241,0.03408,0,0.00875,0.00946,0.01009,0.01193,0,0.03228,0.03336,0.03436,0.03644,0,0.00862,0.00923,0.00975,0.01113,0,0.03192,0.03284,0.03364,0.03526,0,0.00195,0.00274,0.00346,0.00578,0,0.00563,0.00676,0.00786,0.01024,0,0.00191,0.00262,0.00328,0.0053,0,0.00566,0.00672,0.00773,0.00991,0,0.00205,0.00283,0.00354,0.00579,0,0.00605,0.00714,0.00819,0.01046,0,0.00192,0.00274,0.00351,0.00596,0,0.0054,0.00656,0.00769,0.01017,0,0.00179,0.00233,0.0028,0.00404,0,0.00569,0.00657,0.00735,0.00896,0,0.00173,0.00233,0.00281,0.00423,0,0.00534,0.00625,0.00708,0.0088,0,0.00169,0.00222,0.00268,0.00388,0,0.00525,0.00607,0.0068,0.00828,0,0.00184,0.00247,0.00302,0.00465,0,0.0056,0.00656,0.00743,0.00928,0,0.00174,0.00228,0.00274,0.00396,0,0.00538,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Minivan,PH10G,2040,0,0,0,0,0,0,0,0.00786,0.0082,0.00857,0,0,0,0,0,0,0,0.00807,0.00838,0.00871,0,0,0,0,0,0,0,0.00881,0.00914,0.00948,0,0,0,0,0,0,0,0.00737,0.00772,0.00811,0,0,0,0,0,0,0,0.00853,0.00876,0.00898,0,0,0,0,0,0,0,0.00778,0.00802,0.00826,0,0,0,0,0,0,0,0.00777,0.00798,0.00818,0,0,0,0,0,0,0,0.00822,0.00848,0.00875,0,0,0,0,0,0,0,0.0081,0.0083,0.0085,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0,0,0.00048,0.0008,0.00114,0.00189,0,0.00098,0.00157,0.0021,0,0,0.00046,0.00075,0.00108,0.00175,0,0.00094,0.0015,0.002,0,0,0.00048,0.00078,0.00112,0.00185,0,0.00096,0.00152,0.00204,0,0,0.00049,0.00081,0.00117,0.00194,0,0.00099,0.00159,0.00214,0,0,0.00039,0.00064,0.0009,0.00137,0,0.00084,0.00131,0.00172,0,0,0.00041,0.00066,0.00093,0.00145,0,0.00085,0.00134,0.00176,0,0,0.00039,0.00064,0.00089,0.00136,0,0.0008,0.00125,0.00163,0,0,0.00043,0.0007,0.00099,0.00156,0,0.00088,0.00138,0.00182,0,0,0.0004,0.00065,0.00091,0.00138,0,0.00078,0.00122,0.00159,0,0,0.00841,0.0091,0.0099,0.01164,0,0.03074,0.03205,0.03329,0,0,0.0086,0.00924,0.00998,0.01154,0,0.03162,0.03284,0.03399,0,0,0.00937,0.01005,0.01083,0.01254,0,0.03447,0.03573,0.03692,0,0,0.00792,0.00862,0.00945,0.01129,0,0.02878,0.03012,0.03141,0,0,0.00901,0.00952,0.01008,0.01115,0,0.03357,0.03458,0.03547,0,0,0.00831,0.0088,0.0094,0.01058,0,0.0306,0.03165,0.03258,0,0,0.00827,0.00878,0.00933,0.01037,0,0.03064,0.03159,0.03242,0,0,0.00873,0.00931,0.00995,0.01127,0,0.03227,0.03337,0.03436,0,0,0.00862,0.00914,0.0097,0.01075,0,0.03192,0.03284,0.03364,0,0,0.00189,0.0025,0.00321,0.00475,0,0.00561,0.00677,0.00787,0,0,0.00187,0.00244,0.00309,0.00447,0,0.00564,0.00673,0.00775,0,0,0.002,0.0026,0.00329,0.0048,0,0.00603,0.00715,0.0082,0,0,0.00185,0.00247,0.0032,0.00483,0,0.00539,0.00657,0.00771,0,0,0.00179,0.00225,0.00274,0.00369,0,0.00568,0.00657,0.00736,0,0,0.00173,0.0022,0.00273,0.00377,0,0.00533,0.00626,0.00709,0,0,0.00169,0.00215,0.00263,0.00356,0,0.00524,0.00608,0.00681,0,0,0.00182,0.00233,0.0029,0.00406,0,0.00559,0.00656,0.00744,0,0,0.00175,0.00221,0.0027,0.00363,0,0.00537,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Minivan,PH10G,2045,0,0,0,0,0,0,0,0,0.00786,0.0082,0,0,0,0,0,0,0,0,0.00807,0.00838,0,0,0,0,0,0,0,0,0.00882,0.00914,0,0,0,0,0,0,0,0,0.00737,0.00773,0,0,0,0,0,0,0,0,0.00853,0.00876,0,0,0,0,0,0,0,0,0.00778,0.00802,0,0,0,0,0,0,0,0,0.00777,0.00798,0,0,0,0,0,0,0,0,0.00822,0.00848,0,0,0,0,0,0,0,0,0.0081,0.0083,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0,0,0,0.00042,0.00067,0.00089,0.0016,0,0.00099,0.00157,0,0,0,0.0004,0.00064,0.00084,0.00149,0,0.00095,0.0015,0,0,0,0.00041,0.00066,0.00088,0.00157,0,0.00096,0.00153,0,0,0,0.00042,0.00068,0.00091,0.00164,0,0.00099,0.00159,0,0,0,0.00034,0.00055,0.00071,0.00119,0,0.00084,0.00132,0,0,0,0.00035,0.00056,0.00073,0.00125,0,0.00085,0.00134,0,0,0,0.00034,0.00055,0.0007,0.00118,0,0.0008,0.00125,0,0,0,0.00037,0.00059,0.00078,0.00134,0,0.00088,0.00138,0,0,0,0.00035,0.00056,0.00072,0.0012,0,0.00078,0.00122,0,0,0,0.00825,0.00883,0.00934,0.011,0,0.03075,0.03206,0,0,0,0.00845,0.00899,0.00946,0.01097,0,0.03162,0.03285,0,0,0,0.00921,0.00978,0.01028,0.01192,0,0.03447,0.03574,0,0,0,0.00775,0.00834,0.00887,0.01061,0,0.02879,0.03013,0,0,0,0.0089,0.00933,0.00968,0.01077,0,0.03358,0.03459,0,0,0,0.00815,0.0086,0.00898,0.01016,0,0.0306,0.03165,0,0,0,0.00816,0.00859,0.00893,0.01,0,0.03064,0.0316,0,0,0,0.0086,0.00909,0.0095,0.01079,0,0.03228,0.03338,0,0,0,0.00851,0.00894,0.00929,0.01037,0,0.03192,0.03285,0,0,0,0.00175,0.00226,0.00271,0.00418,0,0.00562,0.00678,0,0,0,0.00174,0.00221,0.00263,0.00396,0,0.00565,0.00674,0,0,0,0.00186,0.00236,0.00281,0.00425,0,0.00604,0.00716,0,0,0,0.0017,0.00222,0.00269,0.00423,0,0.00539,0.00658,0,0,0,0.00169,0.00207,0.00239,0.00335,0,0.00568,0.00658,0,0,0,0.00162,0.00202,0.00235,0.0034,0,0.00534,0.00627,0,0,0,0.0016,0.00198,0.00228,0.00323,0,0.00524,0.00609,0,0,0,0.00171,0.00214,0.0025,0.00365,0,0.0056,0.00657,0,0,0,0.00165,0.00204,0.00235,0.0033,0,0.00537,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Minivan,PH10G,2050,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00807,0,0,0,0,0,0,0,0,0,0.00882,0,0,0,0,0,0,0,0,0,0.00737,0,0,0,0,0,0,0,0,0,0.00853,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00822,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0,0,0,0,0.00027,0.00042,0.00056,0.00115,0,0.00099,0,0,0,0,0.00025,0.0004,0.00053,0.00108,0,0.00095,0,0,0,0,0.00026,0.00041,0.00055,0.00113,0,0.00096,0,0,0,0,0.00027,0.00043,0.00057,0.00118,0,0.001,0,0,0,0,0.00022,0.00034,0.00044,0.00086,0,0.00084,0,0,0,0,0.00023,0.00035,0.00046,0.00091,0,0.00085,0,0,0,0,0.00022,0.00034,0.00044,0.00086,0,0.0008,0,0,0,0,0.00024,0.00037,0.00049,0.00097,0,0.00088,0,0,0,0,0.00023,0.00035,0.00045,0.00087,0,0.00078,0,0,0,0,0.00793,0.00828,0.00859,0.00998,0,0.03075,0,0,0,0,0.00815,0.00847,0.00876,0.01003,0,0.03163,0,0,0,0,0.0089,0.00924,0.00955,0.01092,0,0.03448,0,0,0,0,0.00743,0.00778,0.00811,0.00956,0,0.0288,0,0,0,0,0.00864,0.0089,0.00912,0.01006,0,0.03358,0,0,0,0,0.00788,0.00815,0.00839,0.0094,0,0.03061,0,0,0,0,0.00791,0.00816,0.00838,0.0093,0,0.03065,0,0,0,0,0.00832,0.00861,0.00887,0.00997,0,0.03228,0,0,0,0,0.00825,0.00851,0.00873,0.00966,0,0.03192,0,0,0,0,0.00147,0.00177,0.00205,0.00329,0,0.00562,0,0,0,0,0.00147,0.00176,0.00201,0.00314,0,0.00565,0,0,0,0,0.00158,0.00188,0.00216,0.00337,0,0.00604,0,0,0,0,0.00141,0.00172,0.00201,0.0033,0,0.0054,0,0,0,0,0.00147,0.0017,0.00189,0.00272,0,0.00568,0,0,0,0,0.00138,0.00162,0.00183,0.00273,0,0.00534,0,0,0,0,0.00137,0.0016,0.00179,0.00261,0,0.00524,0,0,0,0,0.00146,0.00172,0.00194,0.00292,0,0.0056,0,0,0,0,0.00142,0.00165,0.00185,0.00267,0,0.00538,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Minivan,PH20E,1990,0.01226,0,0,0,0,0,0,0,0,0,0.01268,0,0,0,0,0,0,0,0,0,0.01389,0,0,0,0,0,0,0,0,0,0.01141,0,0,0,0,0,0,0,0,0,0.01364,0,0,0,0,0,0,0,0,0,0.01235,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01304,0,0,0,0,0,0,0,0,0,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.00074,0.00097,0.0016,0,0,0,0,0,0,0.00045,0.00071,0.00093,0.00151,0,0,0,0,0,0,0.00046,0.00072,0.00095,0.00157,0,0,0,0,0,0,0.00047,0.00074,0.00099,0.00163,0,0,0,0,0,0,0.0004,0.00062,0.00081,0.00127,0,0,0,0,0,0,0.00041,0.00064,0.00082,0.00131,0,0,0,0,0,0,0.00038,0.00059,0.00076,0.00119,0,0,0,0,0,0,0.00041,0.00065,0.00085,0.00135,0,0,0,0,0,0,0.00037,0.00057,0.00074,0.00114,0,0,0,0,0,0,0.01326,0.01386,0.01441,0.01589,0,0,0,0,0,0,0.01364,0.0142,0.01471,0.01607,0,0,0,0,0,0,0.01487,0.01545,0.01598,0.01742,0,0,0,0,0,0,0.01242,0.01303,0.01359,0.01513,0,0,0,0,0,0,0.01447,0.01494,0.01534,0.01637,0,0,0,0,0,0,0.0132,0.01368,0.0141,0.0152,0,0,0,0,0,0,0.01321,0.01365,0.01402,0.01497,0,0,0,0,0,0,0.01391,0.01441,0.01485,0.016,0,0,0,0,0,0,0.01374,0.01417,0.01452,0.01542,0,0,0,0,0,0,0.00248,0.00301,0.0035,0.00481,0,0,0,0,0,0,0.00249,0.00299,0.00344,0.00465,0,0,0,0,0,0,0.00267,0.00318,0.00366,0.00493,0,0,0,0,0,0,0.00239,0.00293,0.00342,0.00478,0,0,0,0,0,0,0.0025,0.00292,0.00327,0.00418,0,0,0,0,0,0,0.00236,0.00279,0.00316,0.00413,0,0,0,0,0,0,0.00231,0.0027,0.00303,0.00387,0,0,0,0,0,0,0.00246,0.00291,0.0033,0.00432,0,0,0,0,0,0,0.00236,0.00273,0.00305,0.00384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH20E,1995,0.01226,0.01226,0,0,0,0,0,0,0,0,0.01268,0.01268,0,0,0,0,0,0,0,0,0.01388,0.01388,0,0,0,0,0,0,0,0,0.01141,0.0114,0,0,0,0,0,0,0,0,0.01364,0.01364,0,0,0,0,0,0,0,0,0.01235,0.01235,0,0,0,0,0,0,0,0,0.01242,0.01242,0,0,0,0,0,0,0,0,0.01303,0.01303,0,0,0,0,0,0,0,0,0.01298,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.00073,0.00098,0.00149,0,0,0,0,0,0,0.00045,0.0007,0.00093,0.0014,0,0,0,0,0,0,0.00045,0.00072,0.00095,0.00145,0,0,0,0,0,0,0.00047,0.00074,0.00099,0.00151,0,0,0,0,0,0,0.0004,0.00062,0.00081,0.00117,0,0,0,0,0,0,0.00041,0.00063,0.00083,0.00121,0,0,0,0,0,0,0.00038,0.00059,0.00076,0.00111,0,0,0,0,0,0,0.00041,0.00065,0.00085,0.00125,0,0,0,0,0,0,0.00037,0.00057,0.00074,0.00106,0,0,0,0,0,0,0.01326,0.01385,0.01441,0.01562,0,0,0,0,0,0,0.01363,0.01419,0.01471,0.01582,0,0,0,0,0,0,0.01486,0.01544,0.01599,0.01715,0,0,0,0,0,0,0.01242,0.01302,0.0136,0.01485,0,0,0,0,0,0,0.01447,0.01493,0.01534,0.01617,0,0,0,0,0,0,0.01319,0.01368,0.01411,0.01499,0,0,0,0,0,0,0.01321,0.01364,0.01402,0.01478,0,0,0,0,0,0,0.0139,0.0144,0.01485,0.01578,0,0,0,0,0,0,0.01374,0.01416,0.01452,0.01524,0,0,0,0,0,0,0.00248,0.003,0.0035,0.00457,0,0,0,0,0,0,0.00249,0.00299,0.00345,0.00443,0,0,0,0,0,0,0.00267,0.00318,0.00366,0.00469,0,0,0,0,0,0,0.00238,0.00292,0.00343,0.00453,0,0,0,0,0,0,0.0025,0.00291,0.00327,0.00401,0,0,0,0,0,0,0.00236,0.00278,0.00316,0.00395,0,0,0,0,0,0,0.00231,0.0027,0.00303,0.00371,0,0,0,0,0,0,0.00246,0.0029,0.0033,0.00412,0,0,0,0,0,0,0.00236,0.00273,0.00305,0.00368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH20E,2000,0.01226,0.01848,0.02179,0,0,0,0,0,0,0,0.01268,0.01801,0.02083,0,0,0,0,0,0,0,0.01389,0.01987,0.02308,0,0,0,0,0,0,0,0.01141,0.01806,0.02165,0,0,0,0,0,0,0,0.01364,0.01662,0.01813,0,0,0,0,0,0,0,0.01235,0.01586,0.01791,0,0,0,0,0,0,0,0.01242,0.01528,0.01671,0,0,0,0,0,0,0,0.01304,0.01716,0.01931,0,0,0,0,0,0,0,0.01298,0.01587,0.0173,0,0,0,0,0,0,0,0,0.12027,0.1319,0,0,0,0,0,0,0,0,0.11586,0.12939,0,0,0,0,0,0,0,0,0.13727,0.15177,0,0,0,0,0,0,0,0,0.14305,0.15722,0,0,0,0,0,0,0,0,0.12423,0.13906,0,0,0,0,0,0,0,0,0.13085,0.14519,0,0,0,0,0,0,0,0,0.12629,0.13682,0,0,0,0,0,0,0,0,0.12486,0.1375,0,0,0,0,0,0,0,0,0.10989,0.1217,0,0,0,0,0,0,0,0,10.89501,13.75117,0,0,0,0,0,0,0,0,10.6788,13.65783,0,0,0,0,0,0,0,0,12.22763,15.54118,0,0,0,0,0,0,0,0,12.93875,16.34388,0,0,0,0,0,0,0,0,11.5931,14.80624,0,0,0,0,0,0,0,0,12.04441,15.39791,0,0,0,0,0,0,0,0,12.0601,14.97217,0,0,0,0,0,0,0,0,11.50144,14.52998,0,0,0,0,0,0,0,0,9.95287,12.64009,0,0,0,0,0,0,0,0,365.40024,370.86674,0,0,0,0,0,0,0,0,368.22856,373.29984,0,0,0,0,0,0,0,0,373.62904,378.96487,0,0,0,0,0,0,0,0,364.9261,370.26286,0,0,0,0,0,0,0,0,373.95523,377.64639,0,0,0,0,0,0,0,0,367.95043,373.29723,0,0,0,0,0,0,0,0,371.0116,374.54125,0,0,0,0,0,0,0,0,371.20867,375.49562,0,0,0,0,0,0,0,0,365.59889,369.51784,0,0,0,0,0,0,0,0,0.03285,0.03922,0,0,0,0,0,0,0,0,0.03293,0.03928,0,0,0,0,0,0,0,0,0.03357,0.03994,0,0,0,0,0,0,0,0,0.03213,0.03842,0,0,0,0,0,0,0,0,0.0334,0.03975,0,0,0,0,0,0,0,0,0.03258,0.0389,0,0,0,0,0,0,0,0,0.03284,0.0392,0,0,0,0,0,0,0,0,0.03321,0.03959,0,0,0,0,0,0,0,0,0.03344,0.03989,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05743,0.05743,0,0,0,0,0,0,0,0,0.05741,0.05742,0,0,0,0,0,0,0,0,0.05712,0.05712,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05717,0.05717,0,0,0,0,0,0,0,0,0.05732,0.05733,0,0,0,0,0,0,0,0,0.05745,0.05745,0,0,0,0,0,0,0,0,0.05758,0.05758,0,0,0,0,0,0,0,0,1.43344,1.74492,0,0,0,0,0,0,0,0,1.41546,1.74433,0,0,0,0,0,0,0,0,1.58229,1.93266,0,0,0,0,0,0,0,0,1.63818,1.99229,0,0,0,0,0,0,0,0,1.54392,1.90106,0,0,0,0,0,0,0,0,1.58798,1.93421,0,0,0,0,0,0,0,0,1.57231,1.88667,0,0,0,0,0,0,0,0,1.63329,1.97201,0,0,0,0,0,0,0,0,1.46641,1.78368,0,0,0,0,0,0,0,0,0.01325,0.01876,0,0,0,0,0.00046,0.00073,0.00098,0,0.01159,0.01636,0,0,0,0,0.00044,0.0007,0.00093,0,0.01256,0.01782,0,0,0,0,0.00045,0.00072,0.00096,0,0.01374,0.01954,0,0,0,0,0.00046,0.00074,0.00099,0,0.00695,0.00971,0,0,0,0,0.0004,0.00062,0.00081,0,0.00799,0.01164,0,0,0,0,0.0004,0.00063,0.00083,0,0.00683,0.00951,0,0,0,0,0.00038,0.00059,0.00077,0,0.00921,0.01296,0,0,0,0,0.00041,0.00065,0.00085,0,0.007,0.00974,0,0,0,0,0.00037,0.00057,0.00074,0,0.05693,0.06932,0,0,0,0,0.01325,0.01385,0.01442,0,0.05426,0.06494,0,0,0,0,0.01363,0.01419,0.01472,0,0.05933,0.07119,0,0,0,0,0.01486,0.01544,0.01599,0,0.05615,0.06929,0,0,0,0,0.01241,0.01302,0.0136,0,0.04642,0.05251,0,0,0,0,0.01446,0.01493,0.01534,0,0.04568,0.05389,0,0,0,0,0.01319,0.01368,0.01411,0,0.04326,0.04914,0,0,0,0,0.0132,0.01365,0.01403,0,0.04994,0.05826,0,0,0,0,0.0139,0.01441,0.01485,0,0.0449,0.05087,0,0,0,0,0.01374,0.01416,0.01452,0,0.02879,0.03975,0,0,0,0,0.00248,0.00301,0.0035,0,0.02568,0.03513,0,0,0,0,0.00249,0.00299,0.00345,0,0.02803,0.03853,0,0,0,0,0.00266,0.00318,0.00366,0,0.02962,0.04123,0,0,0,0,0.00238,0.00292,0.00343,0,0.01705,0.02243,0,0,0,0,0.0025,0.00292,0.00328,0,0.01868,0.02584,0,0,0,0,0.00235,0.00279,0.00317,0,0.01641,0.02162,0,0,0,0,0.00231,0.0027,0.00304,0,0.02123,0.02859,0,0,0,0,0.00246,0.00291,0.0033,0,0.01687,0.02215,0,0,0,0,0.00236,0.00273,0.00305,0,0.01196,0.01071,0,0,0,0,0,0,0,0,0.01206,0.01078,0,0,0,0,0,0,0,0,0.01223,0.01094,0,0,0,0,0,0,0,0,0.01195,0.01069,0,0,0,0,0,0,0,0,0.01225,0.0109,0,0,0,0,0,0,0,0,0.01205,0.01078,0,0,0,0,0,0,0,0,0.01215,0.01082,0,0,0,0,0,0,0,0,0.01215,0.01084,0,0,0,0,0,0,0,0,0.01197,0.01067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH20E,2005,0.01227,0.01493,0.01623,0.01928,0,0,0,0,0,0,0.01268,0.015,0.01612,0.01873,0,0,0,0,0,0,0.01389,0.01648,0.01774,0.02071,0,0,0,0,0,0,0.01141,0.01424,0.01564,0.01895,0,0,0,0,0,0,0.01364,0.01505,0.01571,0.01714,0,0,0,0,0,0,0.01235,0.01396,0.01481,0.01643,0,0,0,0,0,0,0.01243,0.01378,0.01441,0.01577,0,0,0,0,0,0,0.01304,0.01489,0.01577,0.01778,0,0,0,0,0,0,0.01299,0.01436,0.01499,0.01635,0,0,0,0,0,0,0,0.05026,0.04287,0.05531,0,0,0,0,0,0,0,0.04616,0.04072,0.05288,0,0,0,0,0,0,0,0.05464,0.0479,0.06447,0,0,0,0,0,0,0,0.05752,0.05036,0.06732,0,0,0,0,0,0,0,0.04086,0.03846,0.05367,0,0,0,0,0,0,0,0.04483,0.04175,0.05732,0,0,0,0,0,0,0,0.04094,0.03765,0.05237,0,0,0,0,0,0,0,0.04517,0.04043,0.05475,0,0,0,0,0,0,0,0.03649,0.03354,0.04505,0,0,0,0,0,0,0,4.29742,5.56429,8.25223,0,0,0,0,0,0,0,4.20167,5.57411,8.22501,0,0,0,0,0,0,0,4.72055,6.37936,9.63051,0,0,0,0,0,0,0,4.96116,6.71585,10.09916,0,0,0,0,0,0,0,4.61964,6.3334,9.37439,0,0,0,0,0,0,0,4.71143,6.49236,9.597,0,0,0,0,0,0,0,4.80982,6.42814,9.47008,0,0,0,0,0,0,0,4.58333,6.10022,9.02629,0,0,0,0,0,0,0,4.08552,5.39877,7.83381,0,0,0,0,0,0,0,378.90135,383.01183,387.68874,0,0,0,0,0,0,0,382.06981,385.8882,390.05587,0,0,0,0,0,0,0,387.35284,391.36776,395.87532,0,0,0,0,0,0,0,378.60345,382.62196,387.1478,0,0,0,0,0,0,0,388.83198,391.63038,394.03662,0,0,0,0,0,0,0,382.48152,386.84358,388.46836,0,0,0,0,0,0,0,386.04132,388.7226,390.92365,0,0,0,0,0,0,0,385.65998,388.89906,392.06194,0,0,0,0,0,0,0,380.06168,383.02048,385.70281,0,0,0,0,0,0,0,0.00675,0.00799,0.01534,0,0,0,0,0,0,0,0.00676,0.00799,0.01534,0,0,0,0,0,0,0,0.00686,0.0081,0.01554,0,0,0,0,0,0,0,0.00662,0.00784,0.01506,0,0,0,0,0,0,0,0.00683,0.00806,0.01548,0,0,0,0,0,0,0,0.00669,0.00791,0.01519,0,0,0,0,0,0,0,0.00674,0.00798,0.01532,0,0,0,0,0,0,0,0.00681,0.00804,0.01545,0,0,0,0,0,0,0,0.00686,0.00811,0.01557,0,0,0,0,0,0,0,0.01878,0.02351,0.02785,0,0,0,0,0,0,0,0.0188,0.02354,0.02789,0,0,0,0,0,0,0,0.01879,0.02354,0.02788,0,0,0,0,0,0,0,0.0187,0.02341,0.02773,0,0,0,0,0,0,0,0.01878,0.02352,0.02786,0,0,0,0,0,0,0,0.01871,0.02344,0.02776,0,0,0,0,0,0,0,0.01876,0.0235,0.02783,0,0,0,0,0,0,0,0.0188,0.02355,0.0279,0,0,0,0,0,0,0,0.01885,0.0236,0.02796,0,0,0,0,0,0,0,0.61471,0.82121,0.85896,0,0,0,0,0,0,0,0.59811,0.8185,0.85432,0,0,0,0,0,0,0,0.67327,0.90582,0.96523,0,0,0,0,0,0,0,0.70547,0.94675,1.00546,0,0,0,0,0,0,0,0.64962,0.88406,0.94575,0,0,0,0,0,0,0,0.67479,0.90762,0.96626,0,0,0,0,0,0,0,0.66691,0.88382,0.93679,0,0,0,0,0,0,0,0.69915,0.93026,0.97297,0,0,0,0,0,0,0,0.62687,0.83852,0.86963,0,0,0,0,0,0,0,0.00574,0.00783,0.0128,0,0,0,0,0.00046,0.00073,0,0.00513,0.007,0.01132,0,0,0,0,0.00045,0.0007,0,0.00553,0.00757,0.01233,0,0,0,0,0.00045,0.00072,0,0.00591,0.0081,0.01332,0,0,0,0,0.00047,0.00074,0,0.00343,0.00468,0.00727,0,0,0,0,0.0004,0.00062,0,0.00379,0.00532,0.00816,0,0,0,0,0.0004,0.00063,0,0.00337,0.00459,0.00712,0,0,0,0,0.00038,0.00059,0,0.00426,0.00581,0.00925,0,0,0,0,0.00041,0.00065,0,0.00345,0.0047,0.00726,0,0,0,0,0.00037,0.00057,0,0.04084,0.04558,0.05674,0,0,0,0,0.01325,0.01386,0,0.04046,0.04465,0.05432,0,0,0,0,0.01363,0.0142,0,0.04422,0.04883,0.05955,0,0,0,0,0.01486,0.01545,0,0.03928,0.04428,0.05611,0,0,0,0,0.01241,0.01303,0,0.03897,0.0417,0.04737,0,0,0,0,0.01446,0.01494,0,0.03675,0.04026,0.04637,0,0,0,0,0.01319,0.01368,0,0.03597,0.03863,0.04411,0,0,0,0,0.0132,0.01365,0,0.03938,0.04282,0.05044,0,0,0,0,0.0139,0.01441,0,0.03744,0.04013,0.0457,0,0,0,0,0.01374,0.01416,0,0.01455,0.01875,0.02861,0,0,0,0,0.00248,0.00301,0,0.01347,0.01718,0.02573,0,0,0,0,0.00249,0.00299,0,0.01466,0.01874,0.02822,0,0,0,0,0.00266,0.00318,0,0.01469,0.01911,0.02957,0,0,0,0,0.00238,0.00292,0,0.01045,0.01287,0.01788,0,0,0,0,0.0025,0.00292,0,0.01078,0.01378,0.01929,0,0,0,0,0.00235,0.00279,0,0.00996,0.01231,0.01716,0,0,0,0,0.00231,0.0027,0,0.01189,0.01493,0.02167,0,0,0,0,0.00246,0.00291,0,0.01027,0.01265,0.01757,0,0,0,0,0.00236,0.00273,0,0.0124,0.01106,0.00373,0,0,0,0,0,0,0,0.01251,0.01114,0.00375,0,0,0,0,0,0,0,0.01268,0.0113,0.00381,0,0,0,0,0,0,0,0.0124,0.01105,0.00373,0,0,0,0,0,0,0,0.01273,0.01131,0.00379,0,0,0,0,0,0,0,0.01252,0.01117,0.00374,0,0,0,0,0,0,0,0.01264,0.01122,0.00376,0,0,0,0,0,0,0,0.01263,0.01123,0.00377,0,0,0,0,0,0,0,0.01244,0.01106,0.00371,0,0,0,0,0,0,0,0.26812,0.37386,0.37364,0,0,0,0,0,0,0,0.24219,0.34689,0.34515,0,0,0,0,0,0,0,0.28441,0.40579,0.40147,0,0,0,0,0,0,0,0.30091,0.42839,0.4222,0,0,0,0,0,0,0,0.18934,0.2925,0.28251,0,0,0,0,0,0,0,0.21335,0.32709,0.3114,0,0,0,0,0,0,0,0.18661,0.28302,0.27276,0,0,0,0,0,0,0,0.22187,0.32494,0.31821,0,0,0,0,0,0,0,0.1688,0.25599,0.24763,0,0,0,0,0,0 +Minivan,PH20E,2010,0,0.01336,0.01432,0.01527,0.01816,0,0,0,0,0,0,0.01366,0.01449,0.01532,0.0178,0,0,0,0,0,0,0.01497,0.0159,0.01684,0.01965,0,0,0,0,0,0,0.01258,0.01361,0.01464,0.01776,0,0,0,0,0,0,0.0143,0.01483,0.01534,0.01675,0,0,0,0,0,0,0.01307,0.01372,0.01426,0.01591,0,0,0,0,0,0,0.01306,0.01357,0.01406,0.0154,0,0,0,0,0,0,0.01385,0.01453,0.0152,0.01713,0,0,0,0,0,0,0.01362,0.01414,0.01463,0.01597,0,0,0,0,0,0,0.03274,0.02339,0.01767,0.02902,0,0,0,0,0,0,0.02855,0.02126,0.01624,0.02718,0,0,0,0,0,0,0.03203,0.02504,0.01918,0.03318,0,0,0,0,0,0,0.03559,0.02769,0.02111,0.03556,0,0,0,0,0,0,0.01917,0.01815,0.01445,0.02638,0,0,0,0,0,0,0.02143,0.02011,0.01562,0.02842,0,0,0,0,0,0,0.01876,0.01789,0.01425,0.02582,0,0,0,0,0,0,0.02396,0.02024,0.01571,0.02753,0,0,0,0,0,0,0.01843,0.0165,0.01288,0.02233,0,0,0,0,0,0,1.73881,2.89472,3.90069,5.84596,0,0,0,0,0,0,1.65401,2.86217,3.8767,5.80855,0,0,0,0,0,0,1.74021,3.17277,4.40483,6.83009,0,0,0,0,0,0,1.86019,3.39728,4.72673,7.26063,0,0,0,0,0,0,1.53111,3.02595,4.24152,6.57807,0,0,0,0,0,0,1.58039,3.1392,4.3553,6.78301,0,0,0,0,0,0,1.59607,3.1141,4.34822,6.68589,0,0,0,0,0,0,1.62943,3.02786,4.16784,6.36871,0,0,0,0,0,0,1.43244,2.67745,3.63951,5.47604,0,0,0,0,0,0,352.36342,353.86602,357.0004,368.66347,0,0,0,0,0,0,355.46818,356.78005,359.60182,370.80428,0,0,0,0,0,0,360.32187,361.73556,364.75073,376.37171,0,0,0,0,0,0,352.15243,353.58365,356.63111,368.15159,0,0,0,0,0,0,362.28618,362.94408,364.68759,374.22369,0,0,0,0,0,0,356.21594,358.23474,359.12057,369.06474,0,0,0,0,0,0,359.74213,360.32944,361.95917,371.25939,0,0,0,0,0,0,359.1063,360.04726,362.25674,372.50834,0,0,0,0,0,0,353.96856,354.77544,356.69726,366.36051,0,0,0,0,0,0,0.00599,0.00674,0.00808,0.0116,0,0,0,0,0,0,0.006,0.00675,0.00808,0.01159,0,0,0,0,0,0,0.0061,0.00685,0.00819,0.01173,0,0,0,0,0,0,0.00587,0.00661,0.00793,0.01139,0,0,0,0,0,0,0.00608,0.00682,0.00816,0.01168,0,0,0,0,0,0,0.00594,0.00669,0.008,0.01148,0,0,0,0,0,0,0.00599,0.00674,0.00807,0.01158,0,0,0,0,0,0,0.00605,0.0068,0.00814,0.01167,0,0,0,0,0,0,0.0061,0.00685,0.00821,0.01177,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.0124,0.01424,0.01857,0.02058,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01242,0.01425,0.01859,0.0206,0,0,0,0,0,0,0.01245,0.01429,0.01864,0.02065,0,0,0,0,0,0,0.01248,0.01432,0.01868,0.0207,0,0,0,0,0,0,0.0125,0.01436,0.01872,0.02074,0,0,0,0,0,0,0.10088,0.176,0.17661,0.37859,0,0,0,0,0,0,0.09728,0.17438,0.17475,0.37507,0,0,0,0,0,0,0.09937,0.19199,0.191,0.42799,0,0,0,0,0,0,0.10284,0.20373,0.20114,0.45008,0,0,0,0,0,0,0.09136,0.18272,0.18118,0.4147,0,0,0,0,0,0,0.09534,0.19044,0.18808,0.42686,0,0,0,0,0,0,0.09424,0.18412,0.18212,0.41107,0,0,0,0,0,0,0.10287,0.19662,0.1924,0.42714,0,0,0,0,0,0,0.09498,0.17686,0.17306,0.37703,0,0,0,0,0,0,0.00197,0.00349,0.00487,0.00933,0,0,0,0,0.00046,0,0.00184,0.00325,0.0045,0.00842,0,0,0,0,0.00045,0,0.00193,0.00343,0.00478,0.00909,0,0,0,0,0.00045,0,0.00202,0.0036,0.00504,0.00972,0,0,0,0,0.00047,0,0.00152,0.00263,0.00358,0.00605,0,0,0,0,0.0004,0,0.00158,0.00279,0.00376,0.00655,0,0,0,0,0.00041,0,0.00151,0.00261,0.00354,0.00594,0,0,0,0,0.00038,0,0.00168,0.00294,0.00404,0.00721,0,0,0,0,0.00041,0,0.00154,0.00266,0.0036,0.00604,0,0,0,0,0.00037,0,0.03296,0.03642,0.03961,0.0498,0,0,0,0,0.01326,0,0.03361,0.03677,0.03963,0.04854,0,0,0,0,0.01363,0,0.03668,0.04007,0.0432,0.05308,0,0,0,0,0.01486,0,0.03111,0.03473,0.03809,0.04889,0,0,0,0,0.01242,0,0.03502,0.0374,0.03945,0.04492,0,0,0,0,0.01447,0,0.03216,0.03493,0.03692,0.04316,0,0,0,0,0.01319,0,0.03214,0.03448,0.03648,0.04177,0,0,0,0,0.01321,0,0.03402,0.03679,0.03924,0.04639,0,0,0,0,0.0139,0,0.0335,0.03588,0.0379,0.04326,0,0,0,0,0.01374,0,0.00758,0.01064,0.01346,0.02248,0,0,0,0,0.00248,0,0.00741,0.01021,0.01274,0.02062,0,0,0,0,0.00249,0,0.00799,0.01099,0.01376,0.0225,0,0,0,0,0.00266,0,0.00746,0.01066,0.01363,0.02319,0,0,0,0,0.00238,0,0.00696,0.00907,0.01088,0.01572,0,0,0,0,0.0025,0,0.00672,0.00907,0.01093,0.01645,0,0,0,0,0.00236,0,0.00657,0.00864,0.01041,0.01509,0,0,0,0,0.00231,0,0.00715,0.00959,0.01176,0.01808,0,0,0,0,0.00246,0,0.00678,0.00888,0.01067,0.01542,0,0,0,0,0.00236,0,0.01154,0.01022,0.00344,0.00355,0,0,0,0,0,0,0.01164,0.0103,0.00346,0.00357,0,0,0,0,0,0,0.0118,0.01045,0.00351,0.00362,0,0,0,0,0,0,0.01153,0.01021,0.00343,0.00354,0,0,0,0,0,0,0.01186,0.01048,0.00351,0.0036,0,0,0,0,0,0,0.01166,0.01034,0.00346,0.00355,0,0,0,0,0,0,0.01178,0.0104,0.00348,0.00357,0,0,0,0,0,0,0.01176,0.0104,0.00349,0.00359,0,0,0,0,0,0,0.01159,0.01024,0.00343,0.00353,0,0,0,0,0,0,0.08219,0.12364,0.1693,0.275,0,0,0,0,0,0,0.06975,0.1092,0.15215,0.25043,0,0,0,0,0,0,0.08052,0.12973,0.18073,0.30145,0,0,0,0,0,0,0.09042,0.14403,0.1991,0.32598,0,0,0,0,0,0,0.04141,0.08297,0.1246,0.2139,0,0,0,0,0,0,0.048,0.09434,0.13619,0.23451,0,0,0,0,0,0,0.03943,0.08,0.12076,0.20674,0,0,0,0,0,0,0.05557,0.09786,0.14088,0.23696,0,0,0,0,0,0,0.03904,0.07504,0.11099,0.18407,0,0,0,0,0 +Minivan,PH20E,2015,0,0,0.01325,0.01394,0.01483,0.01691,0,0,0,0,0,0,0.01357,0.01419,0.01499,0.0168,0,0,0,0,0,0,0.01485,0.01553,0.01641,0.01845,0,0,0,0,0,0,0.01244,0.01317,0.01411,0.01635,0,0,0,0,0,0,0.01428,0.01472,0.01525,0.01636,0,0,0,0,0,0,0.01306,0.01353,0.01412,0.01539,0,0,0,0,0,0,0.01305,0.01347,0.01399,0.01505,0,0,0,0,0,0,0.0138,0.01433,0.01499,0.01644,0,0,0,0,0,0,0.01362,0.01404,0.01456,0.01562,0,0,0,0,0,0,0.02477,0.01657,0.0152,0.01891,0,0,0,0,0,0,0.02269,0.01542,0.0144,0.01788,0,0,0,0,0,0,0.0246,0.01798,0.0168,0.02122,0,0,0,0,0,0,0.02652,0.01947,0.01816,0.0228,0,0,0,0,0,0,0.01706,0.01387,0.01385,0.01739,0,0,0,0,0,0,0.01896,0.01496,0.01478,0.01861,0,0,0,0,0,0,0.01689,0.0137,0.01376,0.0172,0,0,0,0,0,0,0.01997,0.01507,0.01451,0.01811,0,0,0,0,0,0,0.01658,0.01264,0.01239,0.0152,0,0,0,0,0,0,1.49218,2.6212,3.53696,4.72732,0,0,0,0,0,0,1.48586,2.62949,3.56772,4.75195,0,0,0,0,0,0,1.53141,2.9015,4.03721,5.47704,0,0,0,0,0,0,1.63334,3.10109,4.32598,5.83294,0,0,0,0,0,0,1.46043,2.89091,4.0576,5.44136,0,0,0,0,0,0,1.50192,2.94023,4.13805,5.57669,0,0,0,0,0,0,1.52231,2.98722,4.17751,5.57641,0,0,0,0,0,0,1.50085,2.84346,3.92235,5.24298,0,0,0,0,0,0,1.36799,2.56151,3.48707,4.602,0,0,0,0,0,0,288.6408,290.29193,292.99744,309.16524,0,0,0,0,0,0,291.05986,292.51679,294.95103,310.79054,0,0,0,0,0,0,295.08677,296.65612,299.25838,315.53249,0,0,0,0,0,0,288.45141,290.0411,292.6732,308.72227,0,0,0,0,0,0,296.23029,297.01914,298.51614,313.08774,0,0,0,0,0,0,292.35597,292.38028,294.15046,308.95552,0,0,0,0,0,0,294.12772,294.8456,296.24481,310.57668,0,0,0,0,0,0,293.80773,294.88518,296.78731,311.89891,0,0,0,0,0,0,289.49294,290.41083,292.06053,306.58508,0,0,0,0,0,0,0.00396,0.00454,0.00539,0.00752,0,0,0,0,0,0,0.00397,0.00454,0.00539,0.00751,0,0,0,0,0,0,0.00403,0.00461,0.00546,0.00759,0,0,0,0,0,0,0.00388,0.00445,0.00529,0.00739,0,0,0,0,0,0,0.00401,0.00459,0.00543,0.00756,0,0,0,0,0,0,0.00393,0.0045,0.00533,0.00744,0,0,0,0,0,0,0.00396,0.00454,0.00538,0.0075,0,0,0,0,0,0,0.004,0.00458,0.00542,0.00756,0,0,0,0,0,0,0.00403,0.00461,0.00547,0.00762,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01892,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01892,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01882,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01884,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01889,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01893,0,0,0,0,0,0,0.01251,0.01455,0.01873,0.01897,0,0,0,0,0,0,0.08959,0.11016,0.1608,0.22902,0,0,0,0,0,0,0.08923,0.10873,0.15914,0.2266,0,0,0,0,0,0,0.09022,0.11937,0.17354,0.25141,0,0,0,0,0,0,0.09412,0.12622,0.1833,0.26511,0,0,0,0,0,0,0.08272,0.1113,0.16375,0.23915,0,0,0,0,0,0,0.08681,0.1163,0.17053,0.24809,0,0,0,0,0,0,0.08475,0.11195,0.16493,0.23929,0,0,0,0,0,0,0.09292,0.1198,0.17459,0.25099,0,0,0,0,0,0,0.0859,0.10745,0.15677,0.22348,0,0,0,0,0,0,0.00188,0.0031,0.00445,0.00733,0,0,0,0,0,0,0.00179,0.00293,0.00419,0.00679,0,0,0,0,0,0,0.00185,0.00304,0.00437,0.00719,0,0,0,0,0,0,0.00191,0.00314,0.00453,0.00755,0,0,0,0,0,0,0.00154,0.00249,0.00349,0.00535,0,0,0,0,0,0,0.00159,0.00257,0.00362,0.00564,0,0,0,0,0,0,0.00153,0.00248,0.00347,0.00529,0,0,0,0,0,0,0.00166,0.00271,0.00384,0.00606,0,0,0,0,0,0,0.00156,0.00253,0.00353,0.00537,0,0,0,0,0,0,0.03271,0.03538,0.0385,0.04528,0,0,0,0,0,0,0.03344,0.03594,0.0388,0.04486,0,0,0,0,0,0,0.03643,0.03906,0.04213,0.04876,0,0,0,0,0,0,0.03079,0.03354,0.03676,0.04392,0,0,0,0,0,0,0.03503,0.03703,0.03921,0.04337,0,0,0,0,0,0,0.0323,0.03424,0.03657,0.04115,0,0,0,0,0,0,0.03216,0.03415,0.03629,0.04035,0,0,0,0,0,0,0.03395,0.0362,0.03871,0.04381,0,0,0,0,0,0,0.03353,0.03555,0.03772,0.04181,0,0,0,0,0,0,0.00736,0.00973,0.01248,0.01848,0,0,0,0,0,0,0.00726,0.00947,0.012,0.01737,0,0,0,0,0,0,0.00778,0.0101,0.01281,0.01868,0,0,0,0,0,0,0.00718,0.00961,0.01246,0.01879,0,0,0,0,0,0,0.00697,0.00874,0.01067,0.01435,0,0,0,0,0,0,0.00675,0.00856,0.01062,0.01468,0,0,0,0,0,0,0.00659,0.00835,0.01025,0.01383,0,0,0,0,0,0,0.00708,0.00907,0.0113,0.0158,0,0,0,0,0,0,0.00681,0.00859,0.01051,0.01413,0,0,0,0,0,0,0.00833,0.00279,0.00282,0.00298,0,0,0,0,0,0,0.0084,0.00282,0.00284,0.00299,0,0,0,0,0,0,0.00852,0.00286,0.00288,0.00304,0,0,0,0,0,0,0.00833,0.00279,0.00282,0.00297,0,0,0,0,0,0,0.00855,0.00286,0.00287,0.00301,0,0,0,0,0,0,0.00844,0.00281,0.00283,0.00297,0,0,0,0,0,0,0.00849,0.00284,0.00285,0.00299,0,0,0,0,0,0,0.00848,0.00284,0.00286,0.003,0,0,0,0,0,0,0.00836,0.0028,0.00281,0.00295,0,0,0,0,0,0,0.06194,0.09213,0.14062,0.20782,0,0,0,0,0,0,0.05511,0.08401,0.13081,0.19304,0,0,0,0,0,0,0.06149,0.09835,0.15318,0.22922,0,0,0,0,0,0,0.06678,0.10633,0.16478,0.24595,0,0,0,0,0,0,0.0372,0.06958,0.11779,0.17574,0,0,0,0,0,0,0.04296,0.07595,0.12658,0.18935,0,0,0,0,0,0,0.03599,0.0676,0.11528,0.17149,0,0,0,0,0,0,0.04618,0.07848,0.12708,0.18862,0,0,0,0,0,0,0.03552,0.06325,0.10546,0.15408,0,0,0,0 +Minivan,PH20E,2020,0,0,0,0.01308,0.01366,0.01425,0.01625,0,0,0,0,0,0,0.01343,0.01395,0.01448,0.01624,0,0,0,0,0,0,0.0147,0.01527,0.01584,0.0178,0,0,0,0,0,0,0.01227,0.01288,0.0135,0.01562,0,0,0,0,0,0,0.01419,0.01456,0.01491,0.01603,0,0,0,0,0,0,0.01294,0.01335,0.01374,0.01501,0,0,0,0,0,0,0.01296,0.01332,0.01366,0.01474,0,0,0,0,0,0,0.01369,0.01413,0.01457,0.016,0,0,0,0,0,0,0.01353,0.01389,0.01422,0.0153,0,0,0,0,0,0,0.01896,0.01372,0.01167,0.01487,0,0,0,0,0,0,0.01703,0.01261,0.0109,0.01398,0,0,0,0,0,0,0.01883,0.01472,0.01273,0.01683,0,0,0,0,0,0,0.02044,0.01602,0.01382,0.01817,0,0,0,0,0,0,0.01178,0.0107,0.00987,0.01345,0,0,0,0,0,0,0.01319,0.01172,0.01069,0.01453,0,0,0,0,0,0,0.01153,0.01054,0.00978,0.01328,0,0,0,0,0,0,0.01445,0.01195,0.01064,0.01412,0,0,0,0,0,0,0.01128,0.00971,0.00882,0.01158,0,0,0,0,0,0,1.1774,1.77681,2.24244,3.44131,0,0,0,0,0,0,1.16529,1.76732,2.23847,3.44893,0,0,0,0,0,0,1.21306,1.95137,2.52886,4.07165,0,0,0,0,0,0,1.29874,2.09777,2.73038,4.36681,0,0,0,0,0,0,1.13164,1.8935,2.46679,3.99156,0,0,0,0,0,0,1.15738,1.93925,2.53642,4.12901,0,0,0,0,0,0,1.17596,1.95798,2.5445,4.09023,0,0,0,0,0,0,1.17031,1.88387,2.41974,3.84005,0,0,0,0,0,0,1.05469,1.68004,2.12898,3.31005,0,0,0,0,0,0,245.02712,246.66036,249.38281,270.91271,0,0,0,0,0,0,246.97531,248.44737,250.93432,272.15952,0,0,0,0,0,0,250.44486,252.01551,254.6554,276.39995,0,0,0,0,0,0,244.855,246.43761,249.09682,270.50532,0,0,0,0,0,0,251.00909,251.92534,253.59404,273.57675,0,0,0,0,0,0,247.02307,248.09949,250.0033,270.15412,0,0,0,0,0,0,249.20195,250.05711,251.63815,271.33989,0,0,0,0,0,0,249.10679,250.26327,252.28517,272.79396,0,0,0,0,0,0,245.34386,246.36128,248.15284,267.97109,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.0071,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.00709,0,0,0,0,0,0,0.00412,0.00465,0.00546,0.00716,0,0,0,0,0,0,0.00397,0.00449,0.00529,0.00697,0,0,0,0,0,0,0.0041,0.00463,0.00543,0.00714,0,0,0,0,0,0,0.00401,0.00453,0.00533,0.00702,0,0,0,0,0,0,0.00404,0.00457,0.00538,0.00708,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00713,0,0,0,0,0,0,0.00411,0.00465,0.00547,0.00719,0,0,0,0,0,0,0.01246,0.0145,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01858,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01456,0.01872,0.01872,0,0,0,0,0,0,0.05857,0.09444,0.12694,0.17656,0,0,0,0,0,0,0.05784,0.09303,0.12531,0.17434,0,0,0,0,0,0,0.05907,0.10187,0.13624,0.19421,0,0,0,0,0,0,0.06159,0.10826,0.14468,0.20626,0,0,0,0,0,0,0.05224,0.09387,0.12664,0.18212,0,0,0,0,0,0,0.05524,0.09875,0.13292,0.19046,0,0,0,0,0,0,0.05331,0.09475,0.12805,0.18262,0,0,0,0,0,0,0.05903,0.10199,0.13663,0.19265,0,0,0,0,0,0,0.05371,0.09082,0.12175,0.16952,0,0,0,0,0,0,0.00162,0.00262,0.00348,0.00622,0,0,0,0,0,0,0.00154,0.00249,0.00328,0.0058,0,0,0,0,0,0,0.00159,0.00258,0.00342,0.00611,0,0,0,0,0,0,0.00163,0.00265,0.00353,0.00639,0,0,0,0,0,0,0.00134,0.00213,0.00275,0.00464,0,0,0,0,0,0,0.00137,0.00219,0.00285,0.00488,0,0,0,0,0,0,0.00134,0.00212,0.00274,0.0046,0,0,0,0,0,0,0.00144,0.00231,0.00302,0.00522,0,0,0,0,0,0,0.00137,0.00216,0.00279,0.00467,0,0,0,0,0,0,0.03209,0.03433,0.03631,0.04278,0,0,0,0,0,0,0.03288,0.03496,0.03679,0.04265,0,0,0,0,0,0,0.03583,0.03803,0.03998,0.04634,0,0,0,0,0,0,0.03015,0.03244,0.0345,0.04128,0,0,0,0,0,0,0.0346,0.03627,0.03764,0.04188,0,0,0,0,0,0,0.03168,0.03344,0.03491,0.03951,0,0,0,0,0,0,0.03174,0.0334,0.03475,0.03889,0,0,0,0,0,0,0.03345,0.03533,0.03693,0.04197,0,0,0,0,0,0,0.0331,0.03479,0.03615,0.04033,0,0,0,0,0,0,0.00682,0.00879,0.01055,0.01627,0,0,0,0,0,0,0.00677,0.00861,0.01022,0.01541,0,0,0,0,0,0,0.00724,0.00918,0.01091,0.01654,0,0,0,0,0,0,0.00661,0.00864,0.01046,0.01645,0,0,0,0,0,0,0.00659,0.00807,0.00928,0.01303,0,0,0,0,0,0,0.00629,0.00785,0.00915,0.01323,0,0,0,0,0,0,0.00622,0.00769,0.00888,0.01255,0,0,0,0,0,0,0.00664,0.0083,0.00971,0.01418,0,0,0,0,0,0,0.00643,0.00792,0.00912,0.01282,0,0,0,0,0,0,0.00236,0.00237,0.0024,0.00261,0,0,0,0,0,0,0.00238,0.00239,0.00242,0.00262,0,0,0,0,0,0,0.00241,0.00243,0.00245,0.00266,0,0,0,0,0,0,0.00236,0.00237,0.0024,0.0026,0,0,0,0,0,0,0.00242,0.00242,0.00244,0.00263,0,0,0,0,0,0,0.00238,0.00239,0.00241,0.0026,0,0,0,0,0,0,0.0024,0.00241,0.00242,0.00261,0,0,0,0,0,0,0.0024,0.00241,0.00243,0.00263,0,0,0,0,0,0,0.00236,0.00237,0.00239,0.00258,0,0,0,0,0,0,0.05232,0.07708,0.10873,0.16922,0,0,0,0,0,0,0.0461,0.06942,0.09941,0.15627,0,0,0,0,0,0,0.05202,0.08128,0.11646,0.18849,0,0,0,0,0,0,0.05669,0.08833,0.12614,0.20314,0,0,0,0,0,0,0.02945,0.05364,0.08241,0.14073,0,0,0,0,0,0,0.0338,0.05969,0.0904,0.15316,0,0,0,0,0,0,0.02826,0.05191,0.08029,0.13695,0,0,0,0,0,0,0.03778,0.06265,0.09261,0.15221,0,0,0,0,0,0,0.02775,0.04853,0.07362,0.12117,0,0,0 +Minivan,PH20E,2025,0,0,0,0,0.01279,0.01314,0.0135,0.01514,0,0,0,0,0,0,0.01316,0.01348,0.0138,0.01525,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01672,0,0,0,0,0,0,0.01196,0.01232,0.01271,0.01445,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01538,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01429,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01411,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01519,0,0,0,0,0,0,0.01333,0.01355,0.01376,0.01467,0,0,0,0,0,0,0.01527,0.00999,0.00807,0.01132,0,0,0,0,0,0,0.01329,0.00887,0.00728,0.01044,0,0,0,0,0,0,0.01507,0.01042,0.00855,0.01267,0,0,0,0,0,0,0.01659,0.01145,0.00937,0.01376,0,0,0,0,0,0,0.00787,0.00635,0.00565,0.00933,0,0,0,0,0,0,0.00928,0.00725,0.00633,0.01027,0,0,0,0,0,0,0.00754,0.00615,0.00551,0.00915,0,0,0,0,0,0,0.01056,0.00773,0.00657,0.01015,0,0,0,0,0,0,0.00737,0.00572,0.00502,0.00795,0,0,0,0,0,0,0.78293,1.14419,1.45139,2.43581,0,0,0,0,0,0,0.75608,1.11587,1.42212,2.41519,0,0,0,0,0,0,0.79639,1.23688,1.60931,2.87286,0,0,0,0,0,0,0.86055,1.34122,1.75077,3.10096,0,0,0,0,0,0,0.67843,1.12296,1.47782,2.72389,0,0,0,0,0,0,0.70774,1.16726,1.53975,2.84363,0,0,0,0,0,0,0.70168,1.15902,1.52204,2.78828,0,0,0,0,0,0,0.7288,1.15016,1.48876,2.65299,0,0,0,0,0,0,0.63311,0.99914,1.27884,2.24697,0,0,0,0,0,0,200.25711,201.22732,203.2205,229.04587,0,0,0,0,0,0,201.75116,202.58006,204.36032,229.92613,0,0,0,0,0,0,204.63509,205.54246,207.45343,233.5959,0,0,0,0,0,0,200.1063,201.03474,202.97459,228.68367,0,0,0,0,0,0,204.71877,205.06409,206.10838,230.54057,0,0,0,0,0,0,201.57064,202.06059,203.32184,227.8414,0,0,0,0,0,0,203.2212,203.51795,204.48858,228.61363,0,0,0,0,0,0,203.30709,203.8617,205.22412,230.13258,0,0,0,0,0,0,200.13804,200.57777,201.73772,225.88926,0,0,0,0,0,0,0.00407,0.00457,0.00537,0.00702,0,0,0,0,0,0,0.00408,0.00457,0.00537,0.00701,0,0,0,0,0,0,0.00414,0.00464,0.00544,0.00709,0,0,0,0,0,0,0.00399,0.00448,0.00527,0.0069,0,0,0,0,0,0,0.00412,0.00462,0.00542,0.00706,0,0,0,0,0,0,0.00404,0.00453,0.00532,0.00695,0,0,0,0,0,0,0.00407,0.00457,0.00536,0.00701,0,0,0,0,0,0,0.00411,0.00461,0.00541,0.00706,0,0,0,0,0,0,0.00414,0.00464,0.00545,0.00712,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.0145,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01858,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01454,0.01872,0.01872,0,0,0,0,0,0,0.03626,0.05428,0.07259,0.1233,0,0,0,0,0,0,0.03527,0.05283,0.07085,0.12102,0,0,0,0,0,0,0.03627,0.05749,0.07666,0.13559,0,0,0,0,0,0,0.03791,0.06108,0.08136,0.14435,0,0,0,0,0,0,0.02987,0.0501,0.06778,0.12383,0,0,0,0,0,0,0.03237,0.05366,0.07226,0.13072,0,0,0,0,0,0,0.03045,0.05065,0.06859,0.12405,0,0,0,0,0,0,0.03454,0.05556,0.07442,0.13193,0,0,0,0,0,0,0.03049,0.04857,0.0653,0.11436,0,0,0,0.00568,0.00804,0,0.00104,0.00164,0.00217,0.00449,0,0,0,0.00497,0.00701,0,0.00099,0.00156,0.00205,0.00418,0,0,0,0.00538,0.00764,0,0.00102,0.00161,0.00213,0.00441,0,0,0,0.00589,0.00837,0,0.00105,0.00166,0.00221,0.0046,0,0,0,0.00298,0.00416,0,0.00086,0.00133,0.00172,0.00336,0,0,0,0.00342,0.00499,0,0.00088,0.00138,0.00178,0.00353,0,0,0,0.00293,0.00408,0,0.00086,0.00133,0.00171,0.00333,0,0,0,0.00395,0.00555,0,0.00093,0.00145,0.00189,0.00377,0,0,0,0.003,0.00417,0,0.00088,0.00136,0.00174,0.00338,0,0,0,0.0244,0.02971,0,0.03084,0.03218,0.03341,0.03883,0,0,0,0.02325,0.02783,0,0.0317,0.03295,0.03407,0.03902,0,0,0,0.02543,0.03051,0,0.03461,0.03592,0.03713,0.04246,0,0,0,0.02407,0.02969,0,0.02888,0.03026,0.03153,0.03717,0,0,0,0.0199,0.0225,0,0.03361,0.03461,0.03546,0.03911,0,0,0,0.01958,0.0231,0,0.03065,0.03171,0.03262,0.03656,0,0,0,0.01854,0.02106,0,0.03075,0.03175,0.03258,0.03616,0,0,0,0.0214,0.02497,0,0.03237,0.03349,0.03448,0.03877,0,0,0,0.01924,0.0218,0,0.03209,0.03311,0.03395,0.03757,0,0,0,0.01234,0.01704,0,0.00571,0.0069,0.00798,0.01278,0,0,0,0.01101,0.01506,0,0.00572,0.00683,0.00783,0.0122,0,0,0,0.01201,0.01651,0,0.00616,0.00732,0.00839,0.0131,0,0,0,0.01269,0.01767,0,0.00549,0.0067,0.00783,0.01282,0,0,0,0.00731,0.00961,0,0.00571,0.0066,0.00735,0.01058,0,0,0,0.00801,0.01108,0,0.00538,0.00632,0.00712,0.01061,0,0,0,0.00703,0.00926,0,0.00534,0.00622,0.00696,0.01013,0,0,0,0.0091,0.01225,0,0.00568,0.00668,0.00755,0.01135,0,0,0,0.00723,0.00949,0,0.00554,0.00643,0.00718,0.01038,0,0,0,0,0,0,0.00193,0.00194,0.00196,0.0022,0,0,0,0,0,0,0.00194,0.00195,0.00197,0.00221,0,0,0,0,0,0,0.00197,0.00198,0.002,0.00225,0,0,0,0,0,0,0.00193,0.00194,0.00195,0.0022,0,0,0,0,0,0,0.00197,0.00197,0.00198,0.00222,0,0,0,0,0,0,0.00194,0.00194,0.00196,0.00219,0,0,0,0,0,0,0.00196,0.00196,0.00197,0.0022,0,0,0,0,0,0,0.00196,0.00196,0.00198,0.00222,0,0,0,0,0,0,0.00193,0.00193,0.00194,0.00217,0,0,0,0,0,0,0.04472,0.06033,0.08146,0.13426,0,0,0,0,0,0,0.03836,0.05261,0.07201,0.12159,0,0,0,0,0,0,0.04411,0.0619,0.08471,0.14738,0,0,0,0,0,0,0.04877,0.06817,0.09292,0.16008,0,0,0,0,0,0,0.0211,0.03404,0.05043,0.10057,0,0,0,0,0,0,0.02552,0.03974,0.0577,0.1119,0,0,0,0,0,0,0.01987,0.03239,0.04838,0.09712,0,0,0,0,0,0,0.0296,0.04373,0.06188,0.11351,0,0,0,0,0,0,0.01945,0.03053,0.04481,0.08579,0,0 +Minivan,PH20E,2030,0,0,0,0,0,0.01279,0.01313,0.0135,0.01452,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01471,0,0,0,0,0,0,0.01441,0.01474,0.0151,0.01611,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01379,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01502,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01388,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01376,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01473,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01432,0,0,0,0,0,0,0.01419,0.00894,0.00713,0.00914,0,0,0,0,0,0,0.0122,0.00782,0.00633,0.00824,0,0,0,0,0,0,0.01396,0.0092,0.00745,0.00993,0,0,0,0,0,0,0.01544,0.01015,0.00819,0.01085,0,0,0,0,0,0,0.00674,0.00514,0.00454,0.0066,0,0,0,0,0,0,0.00814,0.00599,0.00519,0.00742,0,0,0,0,0,0,0.00639,0.00492,0.00439,0.00641,0,0,0,0,0,0,0.00943,0.00655,0.00551,0.00757,0,0,0,0,0,0,0.00625,0.00461,0.00403,0.00565,0,0,0,0,0,0,0.68062,0.99487,1.27363,1.87627,0,0,0,0,0,0,0.65024,0.96245,1.23894,1.83703,0,0,0,0,0,0,0.68808,1.06843,1.40355,2.16263,0,0,0,0,0,0,0.74606,1.16186,1.53062,2.34546,0,0,0,0,0,0,0.56162,0.94231,1.25685,1.97239,0,0,0,0,0,0,0.59137,0.98559,1.31656,2.07319,0,0,0,0,0,0,0.57944,0.97129,1.29299,2.01915,0,0,0,0,0,0,0.61461,0.97787,1.28022,1.96203,0,0,0,0,0,0,0.52461,0.83969,1.08828,1.64445,0,0,0,0,0,0,182.25516,183.97317,186.84746,202.84795,0,0,0,0,0,0,183.57271,185.16748,187.84499,203.53146,0,0,0,0,0,0,186.21813,187.89673,190.71418,206.82888,0,0,0,0,0,0,182.11421,183.79378,186.61814,202.51921,0,0,0,0,0,0,186.13093,187.29543,189.28277,203.75195,0,0,0,0,0,0,183.3134,184.59737,186.77751,201.46963,0,0,0,0,0,0,184.75932,185.87341,187.78372,202.02619,0,0,0,0,0,0,184.90813,186.25828,188.54338,203.53129,0,0,0,0,0,0,181.98254,183.21374,185.28683,199.6782,0,0,0,0,0,0,0.00407,0.00455,0.00536,0.00698,0,0,0,0,0,0,0.00407,0.00456,0.00536,0.00697,0,0,0,0,0,0,0.00414,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00399,0.00447,0.00526,0.00686,0,0,0,0,0,0,0.00412,0.0046,0.00541,0.00702,0,0,0,0,0,0,0.00403,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00406,0.00455,0.00535,0.00697,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00708,0,0,0,0,0,0,0.01246,0.01447,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01449,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01441,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01447,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01443,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01446,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01453,0.01872,0.01872,0,0,0,0,0,0,0.02873,0.04195,0.05784,0.09049,0,0,0,0,0,0,0.02765,0.04049,0.05607,0.08815,0,0,0,0,0,0,0.02845,0.04389,0.06052,0.09787,0,0,0,0,0,0,0.02969,0.04652,0.06412,0.10399,0,0,0,0,0,0,0.02222,0.03672,0.05186,0.08631,0,0,0,0,0,0,0.0245,0.03982,0.0558,0.09206,0,0,0,0,0,0,0.02266,0.03711,0.05246,0.0866,0,0,0,0,0,0,0.02616,0.04131,0.05751,0.09332,0,0,0,0,0,0,0.02265,0.03568,0.04999,0.08028,0,0,0.00246,0.00336,0.00549,0,0.00104,0.00164,0.00217,0.00357,0,0,0.0022,0.003,0.00485,0,0.00099,0.00155,0.00205,0.00333,0,0,0.00237,0.00324,0.00528,0,0.00102,0.00161,0.00213,0.00351,0,0,0.00253,0.00347,0.00571,0,0.00105,0.00166,0.0022,0.00365,0,0,0.00147,0.00201,0.00312,0,0.00086,0.00133,0.00172,0.00269,0,0,0.00162,0.00228,0.0035,0,0.00088,0.00137,0.00178,0.00282,0,0,0.00144,0.00197,0.00305,0,0.00086,0.00133,0.00171,0.00267,0,0,0.00182,0.00249,0.00396,0,0.00092,0.00144,0.00188,0.00301,0,0,0.00148,0.00201,0.00311,0,0.00088,0.00135,0.00174,0.00271,0,0,0.0175,0.01953,0.02432,0,0.03084,0.03217,0.0334,0.03671,0,0,0.01734,0.01914,0.02328,0,0.03169,0.03294,0.03407,0.03708,0,0,0.01895,0.02093,0.02552,0,0.0346,0.03591,0.03712,0.04037,0,0,0.01684,0.01898,0.02405,0,0.02888,0.03024,0.03152,0.03497,0,0,0.0167,0.01787,0.0203,0,0.0336,0.0346,0.03546,0.03765,0,0,0.01575,0.01725,0.01987,0,0.03064,0.0317,0.03261,0.03499,0,0,0.01542,0.01655,0.0189,0,0.03074,0.03174,0.03258,0.03473,0,0,0.01688,0.01835,0.02162,0,0.03236,0.03348,0.03448,0.03707,0,0,0.01605,0.0172,0.01958,0,0.03209,0.0331,0.03395,0.03611,0,0,0.00624,0.00803,0.01226,0,0.0057,0.00688,0.00798,0.0109,0,0,0.00577,0.00736,0.01103,0,0.00572,0.00682,0.00782,0.01048,0,0,0.00628,0.00803,0.0121,0,0.00615,0.00731,0.00838,0.01126,0,0,0.00629,0.00819,0.01267,0,0.00548,0.00669,0.00782,0.01088,0,0,0.00448,0.00551,0.00766,0,0.0057,0.00659,0.00735,0.00929,0,0,0.00462,0.00591,0.00827,0,0.00538,0.00631,0.00712,0.00923,0,0,0.00427,0.00528,0.00736,0,0.00534,0.00622,0.00696,0.00886,0,0,0.00509,0.0064,0.00929,0,0.00568,0.00667,0.00755,0.00984,0,0,0.0044,0.00542,0.00753,0,0.00553,0.00643,0.00718,0.00909,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00196,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00199,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00196,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00196,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00192,0,0,0,0,0,0,0.04215,0.05533,0.07437,0.11229,0,0,0,0,0,0,0.03579,0.04764,0.06492,0.0996,0,0,0,0,0,0,0.04142,0.05613,0.07649,0.11972,0,0,0,0,0,0,0.04602,0.06213,0.0843,0.13104,0,0,0,0,0,0,0.01846,0.02842,0.04225,0.0732,0,0,0,0,0,0,0.02286,0.03397,0.04932,0.08356,0,0,0,0,0,0,0.01722,0.02679,0.04022,0.0701,0,0,0,0,0,0,0.02695,0.03824,0.05399,0.08772,0,0,0,0,0,0,0.01686,0.0254,0.03745,0.06288,0 +Minivan,PH20E,2035,0,0,0,0,0,0,0.01279,0.01313,0.0135,0.01433,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01453,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01592,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01359,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.0149,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01375,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01365,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01459,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01421,0,0,0,0,0,0,0.01411,0.00893,0.00713,0.00842,0,0,0,0,0,0,0.01213,0.00781,0.00634,0.00751,0,0,0,0,0,0,0.01388,0.00919,0.00746,0.00899,0,0,0,0,0,0,0.01535,0.01014,0.0082,0.00985,0,0,0,0,0,0,0.00671,0.00514,0.00455,0.00564,0,0,0,0,0,0,0.0081,0.00599,0.00519,0.00642,0,0,0,0,0,0,0.00636,0.00492,0.0044,0.00546,0,0,0,0,0,0,0.00938,0.00655,0.00551,0.00668,0,0,0,0,0,0,0.00622,0.00461,0.00403,0.00487,0,0,0,0,0,0,0.68089,0.99566,1.27414,1.70483,0,0,0,0,0,0,0.65071,0.96325,1.23939,1.65892,0,0,0,0,0,0,0.68867,1.06944,1.40407,1.93885,0,0,0,0,0,0,0.7467,1.16295,1.53118,2.10635,0,0,0,0,0,0,0.56284,0.94329,1.25715,1.73329,0,0,0,0,0,0,0.59253,0.9866,1.3169,1.82736,0,0,0,0,0,0,0.58073,0.97227,1.29326,1.77447,0,0,0,0,0,0,0.61555,0.97874,1.2806,1.74448,0,0,0,0,0,0,0.52559,0.8404,1.08856,1.45604,0,0,0,0,0,0,182.21733,183.98013,186.86194,194.57275,0,0,0,0,0,0,183.53708,185.17397,187.85813,195.19446,0,0,0,0,0,0,186.18068,187.90356,190.72809,198.37417,0,0,0,0,0,0,182.07648,183.80052,186.63198,194.25452,0,0,0,0,0,0,186.10333,187.29998,189.29218,195.29223,0,0,0,0,0,0,183.28361,184.60235,186.788,193.14107,0,0,0,0,0,0,184.7326,185.87767,187.79246,193.63011,0,0,0,0,0,0,184.87707,186.26358,188.55436,195.13001,0,0,0,0,0,0,181.95504,183.21874,185.29702,191.40095,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00699,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00698,0,0,0,0,0,0,0.00413,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00398,0.00447,0.00527,0.00687,0,0,0,0,0,0,0.00411,0.0046,0.00541,0.00703,0,0,0,0,0,0,0.00402,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00405,0.00455,0.00536,0.00697,0,0,0,0,0,0,0.00409,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00412,0.00463,0.00545,0.00709,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01455,0.01872,0.01872,0,0,0,0,0,0,0.0287,0.04204,0.05787,0.0792,0,0,0,0,0,0,0.02763,0.04058,0.0561,0.07681,0,0,0,0,0,0,0.02844,0.04398,0.06055,0.08457,0,0,0,0,0,0,0.02968,0.04663,0.06416,0.08965,0,0,0,0,0,0,0.02223,0.03682,0.05188,0.07305,0,0,0,0,0,0,0.0245,0.03991,0.05583,0.07836,0,0,0,0,0,0,0.02266,0.03721,0.05249,0.07338,0,0,0,0,0,0,0.02615,0.0414,0.05753,0.07976,0,0,0,0,0,0,0.02265,0.03577,0.05001,0.06846,0,0.00084,0.0015,0.00209,0.004,0,0.00104,0.00164,0.00217,0.00328,0,0.00079,0.00139,0.00193,0.00361,0,0.00099,0.00156,0.00205,0.00307,0,0.00083,0.00147,0.00205,0.0039,0,0.00102,0.00161,0.00213,0.00322,0,0.00086,0.00154,0.00216,0.00417,0,0.00105,0.00166,0.0022,0.00336,0,0.00065,0.00113,0.00153,0.00259,0,0.00086,0.00133,0.00172,0.00248,0,0.00068,0.00119,0.00161,0.00281,0,0.00088,0.00137,0.00178,0.0026,0,0.00065,0.00112,0.00152,0.00255,0,0.00086,0.00133,0.00171,0.00246,0,0.00072,0.00126,0.00173,0.00309,0,0.00093,0.00145,0.00189,0.00277,0,0.00066,0.00114,0.00154,0.00259,0,0.00088,0.00136,0.00174,0.0025,0,0.01412,0.01561,0.01698,0.02134,0,0.03084,0.03217,0.03341,0.03605,0,0.0144,0.01576,0.01699,0.0208,0,0.0317,0.03294,0.03407,0.03647,0,0.01572,0.01717,0.01851,0.02275,0,0.0346,0.03591,0.03712,0.03972,0,0.01333,0.01488,0.01633,0.02095,0,0.02888,0.03025,0.03152,0.03428,0,0.01501,0.01603,0.01691,0.01925,0,0.0336,0.03461,0.03546,0.03719,0,0.01378,0.01497,0.01582,0.0185,0,0.03065,0.0317,0.03261,0.03449,0,0.01377,0.01478,0.01563,0.0179,0,0.03075,0.03174,0.03258,0.03427,0,0.01458,0.01577,0.01682,0.01988,0,0.03236,0.03349,0.03448,0.03653,0,0.01436,0.01538,0.01624,0.01854,0,0.03209,0.0331,0.03395,0.03565,0,0.00325,0.00456,0.00577,0.00963,0,0.00571,0.00689,0.00798,0.01031,0,0.00318,0.00437,0.00546,0.00884,0,0.00572,0.00682,0.00782,0.00994,0,0.00342,0.00471,0.0059,0.00964,0,0.00615,0.00731,0.00839,0.01068,0,0.0032,0.00457,0.00584,0.00994,0,0.00549,0.0067,0.00783,0.01027,0,0.00298,0.00389,0.00466,0.00674,0,0.00571,0.0066,0.00735,0.00888,0,0.00288,0.00389,0.00469,0.00705,0,0.00538,0.00631,0.00712,0.00879,0,0.00281,0.0037,0.00446,0.00647,0,0.00534,0.00622,0.00696,0.00846,0,0.00306,0.00411,0.00504,0.00775,0,0.00568,0.00667,0.00755,0.00937,0,0.00291,0.00381,0.00457,0.00661,0,0.00553,0.00643,0.00718,0.00868,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00188,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00191,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00188,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00188,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00184,0,0,0,0,0,0,0.04204,0.0554,0.07443,0.10514,0,0,0,0,0,0,0.0357,0.04771,0.06498,0.09236,0,0,0,0,0,0,0.04132,0.05621,0.07655,0.11037,0,0,0,0,0,0,0.04591,0.06221,0.08437,0.12122,0,0,0,0,0,0,0.01843,0.02848,0.04229,0.06369,0,0,0,0,0,0,0.02281,0.03403,0.04936,0.07372,0,0,0,0,0,0,0.01719,0.02685,0.04025,0.06072,0,0,0,0,0,0,0.0269,0.0383,0.05403,0.07892,0,0,0,0,0,0,0.01683,0.02545,0.03748,0.0551 +Minivan,PH20E,2040,0,0,0,0,0,0,0,0.01279,0.01313,0.0135,0,0,0,0,0,0,0,0.01316,0.01347,0.0138,0,0,0,0,0,0,0,0.0144,0.01475,0.0151,0,0,0,0,0,0,0,0.01196,0.01232,0.0127,0,0,0,0,0,0,0,0.01399,0.01421,0.01443,0,0,0,0,0,0,0,0.01273,0.01297,0.01321,0,0,0,0,0,0,0,0.01277,0.01298,0.01319,0,0,0,0,0,0,0,0.01345,0.01372,0.01399,0,0,0,0,0,0,0,0.01333,0.01355,0.01375,0,0,0,0,0,0,0,0.01411,0.00893,0.00713,0,0,0,0,0,0,0,0.01214,0.00781,0.00633,0,0,0,0,0,0,0,0.01388,0.00919,0.00745,0,0,0,0,0,0,0,0.01536,0.01014,0.00819,0,0,0,0,0,0,0,0.00671,0.00513,0.00455,0,0,0,0,0,0,0,0.0081,0.00598,0.00519,0,0,0,0,0,0,0,0.00636,0.00492,0.00439,0,0,0,0,0,0,0,0.00938,0.00655,0.00551,0,0,0,0,0,0,0,0.00622,0.0046,0.00403,0,0,0,0,0,0,0,0.67993,0.99498,1.27381,0,0,0,0,0,0,0,0.64978,0.9626,1.23911,0,0,0,0,0,0,0,0.68758,1.06866,1.40373,0,0,0,0,0,0,0,0.74551,1.16211,1.53082,0,0,0,0,0,0,0,0.56185,0.94267,1.25696,0,0,0,0,0,0,0,0.59149,0.98594,1.31668,0,0,0,0,0,0,0,0.57973,0.97166,1.29308,0,0,0,0,0,0,0,0.61454,0.97812,1.28036,0,0,0,0,0,0,0,0.52473,0.83991,1.08838,0,0,0,0,0,0,0,182.20719,183.96709,186.85292,0,0,0,0,0,0,0,183.52765,185.16175,187.8499,0,0,0,0,0,0,0,186.17068,187.89066,190.71931,0,0,0,0,0,0,0,182.06651,183.78754,186.62318,0,0,0,0,0,0,0,186.09639,187.29084,189.28607,0,0,0,0,0,0,0,183.27595,184.59236,186.78142,0,0,0,0,0,0,0,184.72583,185.86888,187.78697,0,0,0,0,0,0,0,184.86899,186.25312,188.5475,0,0,0,0,0,0,0,181.94775,183.20928,185.29084,0,0,0,0,0,0,0,0.00405,0.00455,0.00536,0,0,0,0,0,0,0,0.00406,0.00455,0.00536,0,0,0,0,0,0,0,0.00412,0.00462,0.00543,0,0,0,0,0,0,0,0.00397,0.00446,0.00526,0,0,0,0,0,0,0,0.0041,0.0046,0.00541,0,0,0,0,0,0,0,0.00402,0.00451,0.00531,0,0,0,0,0,0,0,0.00405,0.00455,0.00535,0,0,0,0,0,0,0,0.00409,0.00459,0.0054,0,0,0,0,0,0,0,0.00412,0.00462,0.00544,0,0,0,0,0,0,0,0.01246,0.01448,0.01865,0,0,0,0,0,0,0,0.01248,0.0145,0.01868,0,0,0,0,0,0,0,0.01247,0.0145,0.01867,0,0,0,0,0,0,0,0.01241,0.01442,0.01857,0,0,0,0,0,0,0,0.01246,0.01448,0.01866,0,0,0,0,0,0,0,0.01242,0.01444,0.01859,0,0,0,0,0,0,0,0.01245,0.01447,0.01864,0,0,0,0,0,0,0,0.01248,0.01451,0.01868,0,0,0,0,0,0,0,0.01251,0.01454,0.01872,0,0,0,0,0,0,0,0.02867,0.04198,0.05785,0,0,0,0,0,0,0,0.0276,0.04052,0.05608,0,0,0,0,0,0,0,0.0284,0.04392,0.06053,0,0,0,0,0,0,0,0.02964,0.04656,0.06413,0,0,0,0,0,0,0,0.02219,0.03676,0.05187,0,0,0,0,0,0,0,0.02447,0.03985,0.05581,0,0,0,0,0,0,0,0.02263,0.03715,0.05247,0,0,0,0,0,0,0,0.02612,0.04134,0.05752,0,0,0,0,0,0,0,0.02262,0.03572,0.04999,0,0,0.00081,0.00133,0.00191,0.00314,0,0.00104,0.00164,0.00217,0,0,0.00077,0.00126,0.0018,0.00291,0,0.00099,0.00156,0.00205,0,0,0.00079,0.0013,0.00187,0.00308,0,0.00102,0.00161,0.00213,0,0,0.00082,0.00135,0.00194,0.00324,0,0.00105,0.00166,0.0022,0,0,0.00066,0.00107,0.00149,0.00229,0,0.00086,0.00133,0.00172,0,0,0.00068,0.0011,0.00155,0.00242,0,0.00088,0.00137,0.00178,0,0,0.00066,0.00106,0.00149,0.00227,0,0.00086,0.00133,0.00171,0,0,0.00071,0.00116,0.00165,0.0026,0,0.00092,0.00144,0.00189,0,0,0.00067,0.00109,0.00151,0.0023,0,0.00088,0.00136,0.00174,0,0,0.01402,0.01516,0.0165,0.0194,0,0.03084,0.03217,0.0334,0,0,0.01433,0.0154,0.01663,0.01923,0,0.03169,0.03294,0.03407,0,0,0.01561,0.01674,0.01805,0.0209,0,0.0346,0.03591,0.03712,0,0,0.0132,0.01437,0.01576,0.01882,0,0.02888,0.03024,0.03152,0,0,0.01501,0.01587,0.0168,0.01859,0,0.0336,0.0346,0.03546,0,0,0.01384,0.01467,0.01567,0.01764,0,0.03064,0.0317,0.03261,0,0,0.01378,0.01464,0.01555,0.01729,0,0.03074,0.03174,0.03258,0,0,0.01455,0.01551,0.01659,0.01878,0,0.03236,0.03349,0.03448,0,0,0.01437,0.01524,0.01616,0.01792,0,0.03209,0.0331,0.03395,0,0,0.00315,0.00417,0.00535,0.00792,0,0.0057,0.00689,0.00798,0,0,0.00311,0.00406,0.00514,0.00744,0,0.00572,0.00682,0.00782,0,0,0.00333,0.00433,0.00549,0.00801,0,0.00615,0.00731,0.00838,0,0,0.00308,0.00412,0.00534,0.00805,0,0.00548,0.00669,0.00782,0,0,0.00299,0.00375,0.00457,0.00615,0,0.00571,0.00659,0.00735,0,0,0.00289,0.00367,0.00455,0.00629,0,0.00538,0.00631,0.00712,0,0,0.00282,0.00358,0.00439,0.00593,0,0.00534,0.00622,0.00696,0,0,0.00303,0.00389,0.00484,0.00677,0,0.00568,0.00667,0.00755,0,0,0.00292,0.00368,0.0045,0.00606,0,0.00553,0.00643,0.00718,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00177,0.00178,0.00181,0,0,0,0,0,0,0,0.00179,0.00181,0.00184,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00179,0.0018,0.00182,0,0,0,0,0,0,0,0.00176,0.00178,0.0018,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00175,0.00176,0.00178,0,0,0,0,0,0,0,0.04199,0.05533,0.07439,0,0,0,0,0,0,0,0.03566,0.04765,0.06494,0,0,0,0,0,0,0,0.04127,0.05613,0.07651,0,0,0,0,0,0,0,0.04586,0.06213,0.08432,0,0,0,0,0,0,0,0.0184,0.02843,0.04227,0,0,0,0,0,0,0,0.02278,0.03398,0.04934,0,0,0,0,0,0,0,0.01717,0.02681,0.04023,0,0,0,0,0,0,0,0.02686,0.03825,0.054,0,0,0,0,0,0,0,0.01681,0.02541,0.03746 +Minivan,PH20E,2045,0,0,0,0,0,0,0,0,0.01279,0.01313,0,0,0,0,0,0,0,0,0.01316,0.01347,0,0,0,0,0,0,0,0,0.0144,0.01474,0,0,0,0,0,0,0,0,0.01196,0.01232,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01273,0.01297,0,0,0,0,0,0,0,0,0.01277,0.01298,0,0,0,0,0,0,0,0,0.01345,0.01372,0,0,0,0,0,0,0,0,0.01333,0.01355,0,0,0,0,0,0,0,0,0.01411,0.00893,0,0,0,0,0,0,0,0,0.01214,0.00781,0,0,0,0,0,0,0,0,0.01388,0.00919,0,0,0,0,0,0,0,0,0.01536,0.01014,0,0,0,0,0,0,0,0,0.00671,0.00513,0,0,0,0,0,0,0,0,0.0081,0.00598,0,0,0,0,0,0,0,0,0.00636,0.00491,0,0,0,0,0,0,0,0,0.00938,0.00655,0,0,0,0,0,0,0,0,0.00622,0.0046,0,0,0,0,0,0,0,0,0.6794,0.99478,0,0,0,0,0,0,0,0,0.64926,0.9624,0,0,0,0,0,0,0,0,0.68698,1.06841,0,0,0,0,0,0,0,0,0.74486,1.16184,0,0,0,0,0,0,0,0,0.56134,0.94245,0,0,0,0,0,0,0,0,0.59095,0.98571,0,0,0,0,0,0,0,0,0.57921,0.97144,0,0,0,0,0,0,0,0,0.61401,0.97791,0,0,0,0,0,0,0,0,0.52429,0.83975,0,0,0,0,0,0,0,0,182.19943,183.96437,0,0,0,0,0,0,0,0,183.52038,185.15908,0,0,0,0,0,0,0,0,186.16305,187.88798,0,0,0,0,0,0,0,0,182.05884,183.7848,0,0,0,0,0,0,0,0,186.09092,187.28907,0,0,0,0,0,0,0,0,183.26998,184.59031,0,0,0,0,0,0,0,0,184.72064,185.86737,0,0,0,0,0,0,0,0,184.86288,186.251,0,0,0,0,0,0,0,0,181.94219,183.20752,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00406,0.00455,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.00397,0.00446,0,0,0,0,0,0,0,0,0.0041,0.0046,0,0,0,0,0,0,0,0,0.00402,0.00451,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00409,0.00459,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01247,0.01449,0,0,0,0,0,0,0,0,0.01241,0.01442,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01242,0.01443,0,0,0,0,0,0,0,0,0.01245,0.01447,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01251,0.01453,0,0,0,0,0,0,0,0,0.02865,0.04196,0,0,0,0,0,0,0,0,0.02758,0.0405,0,0,0,0,0,0,0,0,0.02838,0.0439,0,0,0,0,0,0,0,0,0.02961,0.04654,0,0,0,0,0,0,0,0,0.02218,0.03674,0,0,0,0,0,0,0,0,0.02445,0.03983,0,0,0,0,0,0,0,0,0.02262,0.03713,0,0,0,0,0,0,0,0,0.0261,0.04132,0,0,0,0,0,0,0,0,0.0226,0.0357,0,0,0,0.00069,0.00112,0.00149,0.00267,0,0.00104,0.00164,0,0,0,0.00066,0.00107,0.00141,0.00248,0,0.00099,0.00155,0,0,0,0.00068,0.0011,0.00146,0.00262,0,0.00102,0.00161,0,0,0,0.0007,0.00114,0.00151,0.00274,0,0.00104,0.00166,0,0,0,0.00057,0.00091,0.00118,0.00199,0,0.00086,0.00133,0,0,0,0.00059,0.00094,0.00122,0.00209,0,0.00088,0.00137,0,0,0,0.00057,0.00091,0.00117,0.00197,0,0.00086,0.00133,0,0,0,0.00062,0.00099,0.00129,0.00224,0,0.00092,0.00144,0,0,0,0.00059,0.00093,0.00119,0.002,0,0.00088,0.00135,0,0,0,0.01375,0.01471,0.01556,0.01834,0,0.03083,0.03217,0,0,0,0.01409,0.01498,0.01577,0.01828,0,0.03169,0.03294,0,0,0,0.01536,0.0163,0.01713,0.01986,0,0.0346,0.03591,0,0,0,0.01292,0.0139,0.01479,0.01769,0,0.02887,0.03024,0,0,0,0.01483,0.01555,0.01613,0.01795,0,0.0336,0.0346,0,0,0,0.01358,0.01433,0.01496,0.01693,0,0.03064,0.0317,0,0,0,0.0136,0.01431,0.01489,0.01667,0,0.03074,0.03174,0,0,0,0.01434,0.01514,0.01583,0.01799,0,0.03236,0.03348,0,0,0,0.01419,0.01491,0.01549,0.01728,0,0.03209,0.0331,0,0,0,0.00292,0.00377,0.00452,0.00697,0,0.0057,0.00688,0,0,0,0.0029,0.00369,0.00438,0.00661,0,0.00572,0.00682,0,0,0,0.0031,0.00394,0.00468,0.00709,0,0.00615,0.00731,0,0,0,0.00283,0.0037,0.00448,0.00705,0,0.00548,0.00669,0,0,0,0.00282,0.00346,0.00398,0.00558,0,0.0057,0.00659,0,0,0,0.0027,0.00336,0.00392,0.00567,0,0.00538,0.00631,0,0,0,0.00266,0.00329,0.0038,0.00538,0,0.00534,0.00622,0,0,0,0.00285,0.00356,0.00416,0.00608,0,0.00568,0.00667,0,0,0,0.00275,0.00339,0.00391,0.0055,0,0.00553,0.00643,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00177,0.00178,0,0,0,0,0,0,0,0,0.00179,0.00181,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00179,0.0018,0,0,0,0,0,0,0,0,0.00176,0.00178,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00175,0.00176,0,0,0,0,0,0,0,0,0.04196,0.05531,0,0,0,0,0,0,0,0,0.03563,0.04763,0,0,0,0,0,0,0,0,0.04123,0.05611,0,0,0,0,0,0,0,0,0.04582,0.06211,0,0,0,0,0,0,0,0,0.01838,0.02842,0,0,0,0,0,0,0,0,0.02276,0.03397,0,0,0,0,0,0,0,0,0.01715,0.02679,0,0,0,0,0,0,0,0,0.02684,0.03823,0,0,0,0,0,0,0,0,0.01679,0.0254 +Minivan,PH20E,2050,0,0,0,0,0,0,0,0,0,0.01279,0,0,0,0,0,0,0,0,0,0.01316,0,0,0,0,0,0,0,0,0,0.0144,0,0,0,0,0,0,0,0,0,0.01196,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01273,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01345,0,0,0,0,0,0,0,0,0,0.01333,0,0,0,0,0,0,0,0,0,0.01411,0,0,0,0,0,0,0,0,0,0.01214,0,0,0,0,0,0,0,0,0,0.01388,0,0,0,0,0,0,0,0,0,0.01536,0,0,0,0,0,0,0,0,0,0.00671,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00636,0,0,0,0,0,0,0,0,0,0.00938,0,0,0,0,0,0,0,0,0,0.00622,0,0,0,0,0,0,0,0,0,0.67941,0,0,0,0,0,0,0,0,0,0.64926,0,0,0,0,0,0,0,0,0,0.68699,0,0,0,0,0,0,0,0,0,0.74487,0,0,0,0,0,0,0,0,0,0.56135,0,0,0,0,0,0,0,0,0,0.59096,0,0,0,0,0,0,0,0,0,0.57922,0,0,0,0,0,0,0,0,0,0.61401,0,0,0,0,0,0,0,0,0,0.5243,0,0,0,0,0,0,0,0,0,182.19948,0,0,0,0,0,0,0,0,0,183.52025,0,0,0,0,0,0,0,0,0,186.16295,0,0,0,0,0,0,0,0,0,182.05875,0,0,0,0,0,0,0,0,0,186.09083,0,0,0,0,0,0,0,0,0,183.26987,0,0,0,0,0,0,0,0,0,184.7207,0,0,0,0,0,0,0,0,0,184.86272,0,0,0,0,0,0,0,0,0,181.94211,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00406,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.00397,0,0,0,0,0,0,0,0,0,0.0041,0,0,0,0,0,0,0,0,0,0.00402,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00409,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01247,0,0,0,0,0,0,0,0,0,0.01241,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01245,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01251,0,0,0,0,0,0,0,0,0,0.02865,0,0,0,0,0,0,0,0,0,0.02758,0,0,0,0,0,0,0,0,0,0.02838,0,0,0,0,0,0,0,0,0,0.02961,0,0,0,0,0,0,0,0,0,0.02218,0,0,0,0,0,0,0,0,0,0.02445,0,0,0,0,0,0,0,0,0,0.02262,0,0,0,0,0,0,0,0,0,0.0261,0,0,0,0,0,0,0,0,0,0.0226,0,0,0,0,0.00045,0.0007,0.00093,0.00192,0,0.00104,0,0,0,0,0.00042,0.00067,0.00088,0.00179,0,0.00099,0,0,0,0,0.00044,0.00069,0.00091,0.00189,0,0.00102,0,0,0,0,0.00045,0.00071,0.00095,0.00197,0,0.00104,0,0,0,0,0.00037,0.00057,0.00074,0.00144,0,0.00086,0,0,0,0,0.00038,0.00059,0.00076,0.00151,0,0.00088,0,0,0,0,0.00037,0.00057,0.00073,0.00143,0,0.00086,0,0,0,0,0.0004,0.00062,0.00081,0.00162,0,0.00092,0,0,0,0,0.00038,0.00058,0.00075,0.00145,0,0.00088,0,0,0,0,0.01322,0.01379,0.01432,0.01664,0,0.03083,0,0,0,0,0.01359,0.01412,0.0146,0.01672,0,0.03169,0,0,0,0,0.01483,0.01539,0.01591,0.0182,0,0.0346,0,0,0,0,0.01238,0.01297,0.01351,0.01593,0,0.02887,0,0,0,0,0.0144,0.01483,0.0152,0.01676,0,0.0336,0,0,0,0,0.01314,0.01359,0.01398,0.01567,0,0.03064,0,0,0,0,0.01318,0.01361,0.01396,0.0155,0,0.03074,0,0,0,0,0.01387,0.01435,0.01478,0.01662,0,0.03236,0,0,0,0,0.01375,0.01419,0.01455,0.0161,0,0.03209,0,0,0,0,0.00245,0.00296,0.00342,0.00548,0,0.0057,0,0,0,0,0.00245,0.00293,0.00335,0.00523,0,0.00572,0,0,0,0,0.00264,0.00314,0.00359,0.00562,0,0.00615,0,0,0,0,0.00235,0.00287,0.00335,0.0055,0,0.00548,0,0,0,0,0.00245,0.00283,0.00315,0.00453,0,0.0057,0,0,0,0,0.00231,0.00271,0.00305,0.00455,0,0.00538,0,0,0,0,0.00229,0.00267,0.00298,0.00434,0,0.00534,0,0,0,0,0.00243,0.00286,0.00324,0.00486,0,0.00568,0,0,0,0,0.00237,0.00276,0.00308,0.00445,0,0.00553,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00177,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00176,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.04196,0,0,0,0,0,0,0,0,0,0.03563,0,0,0,0,0,0,0,0,0,0.04123,0,0,0,0,0,0,0,0,0,0.04582,0,0,0,0,0,0,0,0,0,0.01838,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.01715,0,0,0,0,0,0,0,0,0,0.02684,0,0,0,0,0,0,0,0,0,0.01679 +Minivan,PH20G,1990,0.05159,0,0,0,0,0,0,0,0,0,0.04625,0,0,0,0,0,0,0,0,0,0.05229,0,0,0,0,0,0,0,0,0,0.05431,0,0,0,0,0,0,0,0,0,0.03205,0,0,0,0,0,0,0,0,0,0.0344,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.03883,0,0,0,0,0,0,0,0,0,0.03014,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0,0,0,0,0.00047,0.00074,0.00097,0.0016,0,0.06054,0,0,0,0,0.00045,0.00071,0.00093,0.00151,0,0.06752,0,0,0,0,0.00046,0.00072,0.00095,0.00157,0,0.07436,0,0,0,0,0.00047,0.00074,0.00099,0.00163,0,0.03611,0,0,0,0,0.0004,0.00062,0.00081,0.00127,0,0.04223,0,0,0,0,0.00041,0.00064,0.00082,0.00131,0,0.03468,0,0,0,0,0.00038,0.00059,0.00076,0.00119,0,0.04801,0,0,0,0,0.00041,0.00065,0.00085,0.00135,0,0.03431,0,0,0,0,0.00037,0.00057,0.00074,0.00114,0,0.18397,0,0,0,0,0.01326,0.01386,0.01441,0.01589,0,0.16475,0,0,0,0,0.01364,0.0142,0.01471,0.01607,0,0.18469,0,0,0,0,0.01487,0.01545,0.01598,0.01742,0,0.19469,0,0,0,0,0.01242,0.01303,0.01359,0.01513,0,0.11125,0,0,0,0,0.01447,0.01494,0.01534,0.01637,0,0.12231,0,0,0,0,0.0132,0.01368,0.0141,0.0152,0,0.105,0,0,0,0,0.01321,0.01365,0.01402,0.01497,0,0.1372,0,0,0,0,0.01391,0.01441,0.01485,0.016,0,0.10482,0,0,0,0,0.01374,0.01417,0.01452,0.01542,0,0.14116,0,0,0,0,0.00248,0.00301,0.0035,0.00481,0,0.12341,0,0,0,0,0.00249,0.00299,0.00344,0.00465,0,0.13892,0,0,0,0,0.00267,0.00318,0.00366,0.00493,0,0.15215,0,0,0,0,0.00239,0.00293,0.00342,0.00478,0,0.07439,0,0,0,0,0.0025,0.00292,0.00327,0.00418,0,0.08646,0,0,0,0,0.00236,0.00279,0.00316,0.00413,0,0.07102,0,0,0,0,0.00231,0.0027,0.00303,0.00387,0,0.09841,0,0,0,0,0.00246,0.00291,0.0033,0.00432,0,0.06986,0,0,0,0,0.00236,0.00273,0.00305,0.00384,0,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Minivan,PH20G,1995,0.02217,0.03584,0,0,0,0,0,0,0,0,0.02116,0.0328,0,0,0,0,0,0,0,0,0.02355,0.03691,0,0,0,0,0,0,0,0,0.02217,0.03709,0,0,0,0,0,0,0,0,0.01834,0.02464,0,0,0,0,0,0,0,0,0.01795,0.02551,0,0,0,0,0,0,0,0,0.01687,0.02279,0,0,0,0,0,0,0,0,0.01958,0.02848,0,0,0,0,0,0,0,0,0.01739,0.02326,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0,0,0,0,0.00046,0.00073,0.00098,0.00149,0.01643,0.03584,0,0,0,0,0.00045,0.0007,0.00093,0.0014,0.01821,0.03995,0,0,0,0,0.00045,0.00072,0.00095,0.00145,0.01995,0.04383,0,0,0,0,0.00047,0.00074,0.00099,0.00151,0.00987,0.02128,0,0,0,0,0.0004,0.00062,0.00081,0.00117,0.01148,0.02483,0,0,0,0,0.00041,0.00063,0.00083,0.00121,0.00952,0.02044,0,0,0,0,0.00038,0.00059,0.00076,0.00111,0.01307,0.02838,0,0,0,0,0.00041,0.00065,0.00085,0.00125,0.00949,0.02035,0,0,0,0,0.00037,0.00057,0.00074,0.00106,0.07,0.12017,0,0,0,0,0.01326,0.01385,0.01441,0.01562,0.06572,0.10912,0,0,0,0,0.01363,0.01419,0.01471,0.01582,0.07288,0.12157,0,0,0,0,0.01486,0.01544,0.01599,0.01715,0.07109,0.12518,0,0,0,0,0.01242,0.01302,0.0136,0.01485,0.05325,0.07821,0,0,0,0,0.01447,0.01493,0.01534,0.01617,0.0539,0.08322,0,0,0,0,0.01319,0.01368,0.01411,0.01499,0.04958,0.0735,0,0,0,0,0.01321,0.01364,0.01402,0.01478,0.05908,0.09317,0,0,0,0,0.0139,0.0144,0.01485,0.01578,0.0506,0.07435,0,0,0,0,0.01374,0.01416,0.01452,0.01524,0.04035,0.08473,0,0,0,0,0.00248,0.003,0.0035,0.00457,0.03582,0.07421,0,0,0,0,0.00249,0.00299,0.00345,0.00443,0.04002,0.08309,0,0,0,0,0.00267,0.00318,0.00366,0.00469,0.04282,0.09067,0,0,0,0,0.00238,0.00292,0.00343,0.00453,0.02309,0.04517,0,0,0,0,0.0025,0.00291,0.00327,0.00401,0.02594,0.05189,0,0,0,0,0.00236,0.00278,0.00316,0.00395,0.022,0.04316,0,0,0,0,0.00231,0.0027,0.00303,0.00371,0.02931,0.05947,0,0,0,0,0.00246,0.0029,0.0033,0.00412,0.02191,0.04291,0,0,0,0,0.00236,0.00273,0.00305,0.00368,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Minivan,PH20G,2000,0.01703,0.01926,0.02838,0,0,0,0,0,0,0,0.01678,0.01868,0.02643,0,0,0,0,0,0,0,0.0185,0.02065,0.02956,0,0,0,0,0,0,0,0.01652,0.01892,0.02889,0,0,0,0,0,0,0,0.01595,0.01699,0.02116,0,0,0,0,0,0,0,0.01507,0.01631,0.02133,0,0,0,0,0,0,0,0.01463,0.01562,0.01954,0,0,0,0,0,0,0,0.01622,0.01768,0.02359,0,0,0,0,0,0,0,0.0152,0.01619,0.02008,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0,0,0,0,0.00046,0.00073,0.00098,0.00911,0.01271,0.02516,0,0,0,0,0.00044,0.0007,0.00093,0.00993,0.01389,0.02782,0,0,0,0,0.00045,0.00072,0.00096,0.01083,0.01516,0.03057,0,0,0,0,0.00046,0.00074,0.00099,0.00552,0.00765,0.01489,0,0,0,0,0.0004,0.00062,0.00081,0.00634,0.00881,0.01733,0,0,0,0,0.0004,0.00063,0.00083,0.00539,0.00747,0.01442,0,0,0,0,0.00038,0.00059,0.00077,0.00727,0.01012,0.0199,0,0,0,0,0.00041,0.00065,0.00085,0.00549,0.0076,0.0145,0,0,0,0,0.00037,0.00057,0.00074,0.05092,0.05981,0.09255,0,0,0,0,0.01325,0.01385,0.01442,0.04911,0.05679,0.08505,0,0,0,0,0.01363,0.01419,0.01472,0.05393,0.06231,0.09414,0,0,0,0,0.01486,0.01544,0.01599,0.05013,0.05952,0.09469,0,0,0,0,0.01241,0.01302,0.0136,0.04353,0.04796,0.06411,0,0,0,0,0.01446,0.01493,0.01534,0.04236,0.0475,0.06659,0,0,0,0,0.01319,0.01368,0.01411,0.04039,0.04473,0.06009,0,0,0,0,0.0132,0.01365,0.01403,0.04598,0.05204,0.07399,0,0,0,0,0.0139,0.01441,0.01485,0.04175,0.04618,0.06143,0,0,0,0,0.01374,0.01416,0.01452,0.02346,0.03133,0.0603,0,0,0,0,0.00248,0.00301,0.0035,0.02112,0.02792,0.05292,0,0,0,0,0.00249,0.00299,0.00345,0.02325,0.03066,0.05882,0,0,0,0,0.00266,0.00318,0.00366,0.02428,0.03259,0.0637,0,0,0,0,0.00238,0.00292,0.00343,0.01449,0.01841,0.0327,0,0,0,0,0.0025,0.00292,0.00328,0.01574,0.02029,0.03717,0,0,0,0,0.00235,0.00279,0.00317,0.01386,0.01771,0.0313,0,0,0,0,0.00231,0.0027,0.00304,0.01772,0.02308,0.0425,0,0,0,0,0.00246,0.00291,0.0033,0.01407,0.01799,0.03149,0,0,0,0,0.00236,0.00273,0.00305,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Minivan,PH20G,2005,0.01375,0.01467,0.01584,0.02193,0,0,0,0,0,0,0.01402,0.01476,0.01575,0.02097,0,0,0,0,0,0,0.01553,0.01572,0.01657,0.02315,0,0,0,0,0,0,0.01311,0.01392,0.01515,0.02181,0,0,0,0,0,0,0.01449,0.01498,0.01561,0.01835,0,0,0,0,0,0,0.01336,0.01372,0.01436,0.01785,0,0,0,0,0,0,0.01323,0.01365,0.01421,0.01679,0,0,0,0,0,0,0.01415,0.0146,0.01533,0.01944,0,0,0,0,0,0,0.0137,0.01404,0.01452,0.01729,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.00323,0.00515,0.00701,0.01693,0,0,0,0,0.00046,0.00073,0.00295,0.00457,0.00622,0.01488,0,0,0,0,0.00045,0.0007,0.00342,0.00422,0.00569,0.01617,0,0,0,0,0.00045,0.00072,0.00352,0.00522,0.00713,0.01775,0,0,0,0,0.00047,0.00074,0.00206,0.00322,0.00439,0.00929,0,0,0,0,0.0004,0.00062,0.00231,0.00329,0.00448,0.01052,0,0,0,0,0.0004,0.00063,0.00199,0.00303,0.00413,0.00886,0,0,0,0,0.00038,0.00059,0.00253,0.00364,0.00495,0.01193,0,0,0,0,0.00041,0.00065,0.00184,0.00275,0.00372,0.00883,0,0,0,0,0.00037,0.00057,0.03556,0.03964,0.04388,0.06619,0,0,0,0,0.01325,0.01386,0.03594,0.03932,0.04303,0.06244,0,0,0,0,0.01363,0.0142,0.03987,0.04134,0.04465,0.06832,0,0,0,0,0.01486,0.01545,0.03431,0.03793,0.04225,0.06626,0,0,0,0,0.01241,0.01303,0.03619,0.03857,0.04115,0.05192,0,0,0,0,0.01446,0.01494,0.03377,0.03572,0.03833,0.05172,0,0,0,0,0.01319,0.01368,0.0332,0.03534,0.0377,0.04803,0,0,0,0,0.0132,0.01365,0.03586,0.03814,0.04099,0.05653,0,0,0,0,0.0139,0.01441,0.03413,0.03599,0.03806,0.04924,0,0,0,0,0.01374,0.01416,0.00987,0.01348,0.01723,0.03697,0,0,0,0,0.00248,0.00301,0.00946,0.01246,0.01574,0.03291,0,0,0,0,0.00249,0.00299,0.01081,0.01211,0.01504,0.03598,0,0,0,0,0.00266,0.00318,0.01027,0.01347,0.0173,0.03854,0,0,0,0,0.00238,0.00292,0.00799,0.0101,0.01238,0.02191,0,0,0,0,0.0025,0.00292,0.00813,0.00986,0.01217,0.02401,0,0,0,0,0.00235,0.00279,0.00749,0.00939,0.01148,0.02062,0,0,0,0,0.00231,0.0027,0.00876,0.01078,0.01331,0.02705,0,0,0,0,0.00246,0.00291,0.00732,0.00897,0.01081,0.0207,0,0,0,0,0.00236,0.00273,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Minivan,PH20G,2010,0,0.01336,0.01421,0.01519,0.01971,0,0,0,0,0,0,0.01364,0.01438,0.01526,0.01911,0,0,0,0,0,0,0.01472,0.01535,0.01665,0.02094,0,0,0,0,0,0,0.01256,0.01346,0.01453,0.01939,0,0,0,0,0,0,0.01433,0.01483,0.01533,0.01748,0,0,0,0,0,0,0.01303,0.01353,0.0142,0.01672,0,0,0,0,0,0,0.01305,0.01351,0.01394,0.0159,0,0,0,0,0,0,0.01379,0.01435,0.01511,0.01805,0,0,0,0,0,0,0.01352,0.0139,0.01445,0.01639,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0,0.00194,0.00327,0.00461,0.01201,0,0,0,0,0.00046,0,0.0018,0.00303,0.00428,0.01072,0,0,0,0,0.00045,0,0.00163,0.00272,0.00443,0.01144,0,0,0,0,0.00045,0,0.00197,0.00333,0.00477,0.01253,0,0,0,0,0.00047,0,0.00157,0.00258,0.00343,0.00728,0,0,0,0,0.0004,0,0.00152,0.00251,0.00357,0.00798,0,0,0,0,0.00041,0,0.00149,0.00244,0.00323,0.00686,0,0,0,0,0.00038,0,0.00157,0.0026,0.00377,0.00884,0,0,0,0,0.00041,0,0.00133,0.00217,0.00314,0.00677,0,0,0,0,0.00037,0,0.03293,0.03598,0.03912,0.05581,0,0,0,0,0.01326,0,0.03356,0.03631,0.03921,0.05368,0,0,0,0,0.01363,0,0.03597,0.03841,0.04245,0.05828,0,0,0,0,0.01486,0,0.03106,0.03419,0.03758,0.05519,0,0,0,0,0.01242,0,0.03514,0.03732,0.03921,0.04771,0,0,0,0,0.01447,0,0.03205,0.0342,0.03658,0.04637,0,0,0,0,0.01319,0,0.03212,0.03415,0.03588,0.04384,0,0,0,0,0.01321,0,0.03382,0.03607,0.03873,0.05002,0,0,0,0,0.0139,0,0.03306,0.03485,0.037,0.04493,0,0,0,0,0.01374,0,0.00755,0.01025,0.01303,0.02779,0,0,0,0,0.00248,0,0.00736,0.00979,0.01236,0.02516,0,0,0,0,0.00249,0,0.00736,0.00952,0.01309,0.0271,0,0,0,0,0.00266,0,0.0074,0.01017,0.01317,0.02875,0,0,0,0,0.00238,0,0.00706,0.00899,0.01066,0.01818,0,0,0,0,0.0025,0,0.00661,0.00851,0.01062,0.01928,0,0,0,0,0.00236,0,0.00654,0.00834,0.00987,0.01691,0,0,0,0,0.00231,0,0.00696,0.00895,0.0113,0.02129,0,0,0,0,0.00246,0,0.00639,0.00796,0.00987,0.01689,0,0,0,0,0.00236,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Minivan,PH20G,2015,0,0,0.01312,0.01379,0.01464,0.01733,0,0,0,0,0,0,0.01346,0.01407,0.01484,0.01716,0,0,0,0,0,0,0.01456,0.01535,0.01615,0.01867,0,0,0,0,0,0,0.0123,0.01301,0.0139,0.01677,0,0,0,0,0,0,0.01424,0.01466,0.01518,0.01657,0,0,0,0,0,0,0.01294,0.01344,0.01401,0.01559,0,0,0,0,0,0,0.01298,0.01336,0.01383,0.01507,0,0,0,0,0,0,0.01366,0.01421,0.01484,0.01664,0,0,0,0,0,0,0.01346,0.01389,0.01435,0.01555,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0,0,0.00165,0.00281,0.00409,0.00789,0,0,0,0,0,0,0.00157,0.00267,0.00387,0.00727,0,0,0,0,0,0,0.00142,0.00272,0.00396,0.00756,0,0,0,0,0,0,0.00166,0.00285,0.00417,0.00814,0,0,0,0,0,0,0.00142,0.00232,0.0033,0.00561,0,0,0,0,0,0,0.00138,0.00237,0.00339,0.0059,0,0,0,0,0,0,0.00136,0.00221,0.00313,0.00526,0,0,0,0,0,0,0.0014,0.00245,0.00351,0.0063,0,0,0,0,0,0,0.00121,0.00215,0.00305,0.00514,0,0,0,0,0,0,0.03222,0.03478,0.03774,0.04665,0,0,0,0,0,0,0.03298,0.03541,0.03814,0.04603,0,0,0,0,0,0,0.03546,0.03836,0.0412,0.04962,0,0,0,0,0,0,0.03026,0.03293,0.03598,0.04535,0,0,0,0,0,0,0.03481,0.03671,0.03885,0.04404,0,0,0,0,0,0,0.03171,0.03385,0.03609,0.04181,0,0,0,0,0,0,0.03181,0.03361,0.0356,0.04035,0,0,0,0,0,0,0.03338,0.03566,0.03804,0.04442,0,0,0,0,0,0,0.0328,0.03479,0.03673,0.04139,0,0,0,0,0,0,0.00692,0.00919,0.0118,0.01969,0,0,0,0,0,0,0.00685,0.009,0.01142,0.01839,0,0,0,0,0,0,0.00691,0.00948,0.01199,0.01943,0,0,0,0,0,0,0.0067,0.00906,0.01175,0.02005,0,0,0,0,0,0,0.00677,0.00846,0.01035,0.01493,0,0,0,0,0,0,0.00631,0.0082,0.01019,0.01525,0,0,0,0,0,0,0.00627,0.00786,0.00962,0.01383,0,0,0,0,0,0,0.00657,0.00859,0.0107,0.01634,0,0,0,0,0,0,0.00616,0.00792,0.00963,0.01376,0,0,0,0,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Minivan,PH20G,2020,0,0,0,0.01304,0.01359,0.01415,0.01607,0,0,0,0,0,0,0.01339,0.01389,0.0144,0.01609,0,0,0,0,0,0,0.01463,0.01515,0.01569,0.0175,0,0,0,0,0,0,0.01222,0.01279,0.01338,0.01541,0,0,0,0,0,0,0.01418,0.01454,0.01488,0.01598,0,0,0,0,0,0,0.01292,0.01331,0.01368,0.01491,0,0,0,0,0,0,0.01292,0.01324,0.01355,0.01454,0,0,0,0,0,0,0.01365,0.01406,0.01448,0.01584,0,0,0,0,0,0,0.01346,0.01378,0.01408,0.01504,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0,0,0,0.00151,0.00245,0.00326,0.00585,0,0,0,0,0,0,0.00145,0.00234,0.0031,0.00548,0,0,0,0,0,0,0.00146,0.00237,0.00316,0.00564,0,0,0,0,0,0,0.00152,0.00248,0.00332,0.006,0,0,0,0,0,0,0.00128,0.00204,0.00265,0.00447,0,0,0,0,0,0,0.0013,0.00208,0.00272,0.00464,0,0,0,0,0,0,0.00122,0.00194,0.00251,0.0042,0,0,0,0,0,0,0.00134,0.00215,0.00282,0.00487,0,0,0,0,0,0,0.00119,0.00189,0.00245,0.00409,0,0,0,0,0,0,0.03188,0.03398,0.03588,0.04203,0,0,0,0,0,0,0.0327,0.03467,0.03642,0.04201,0,0,0,0,0,0,0.03557,0.0376,0.03942,0.04528,0,0,0,0,0,0,0.02995,0.0321,0.03406,0.04047,0,0,0,0,0,0,0.0345,0.03612,0.03747,0.04157,0,0,0,0,0,0,0.03155,0.03323,0.03465,0.03903,0,0,0,0,0,0,0.03152,0.03304,0.0343,0.03806,0,0,0,0,0,0,0.03325,0.03501,0.03653,0.04125,0,0,0,0,0,0,0.03276,0.03425,0.03547,0.03914,0,0,0,0,0,0,0.00662,0.00848,0.01016,0.0156,0,0,0,0,0,0,0.0066,0.00835,0.0099,0.01484,0,0,0,0,0,0,0.00701,0.0088,0.01041,0.01559,0,0,0,0,0,0,0.00642,0.00832,0.01006,0.01573,0,0,0,0,0,0,0.00649,0.00793,0.00912,0.01275,0,0,0,0,0,0,0.00617,0.00766,0.00892,0.01279,0,0,0,0,0,0,0.00602,0.00736,0.00847,0.0118,0,0,0,0,0,0,0.00646,0.00802,0.00936,0.01354,0,0,0,0,0,0,0.00612,0.00744,0.00852,0.01177,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Minivan,PH20G,2025,0,0,0,0,0.01277,0.01311,0.01347,0.01498,0,0,0,0,0,0,0.01315,0.01346,0.01378,0.01513,0,0,0,0,0,0,0.01438,0.0147,0.01504,0.01647,0,0,0,0,0,0,0.01194,0.01229,0.01267,0.01424,0,0,0,0,0,0,0.01399,0.01422,0.01444,0.01534,0,0,0,0,0,0,0.01272,0.01296,0.01321,0.0142,0,0,0,0,0,0,0.01275,0.01295,0.01315,0.01396,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.01506,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01449,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0.00568,0.00804,0,0.00099,0.00158,0.00211,0.00421,0,0,0,0.00497,0.00701,0,0.00095,0.00151,0.002,0.00396,0,0,0,0.00538,0.00764,0,0.00097,0.00153,0.00204,0.00406,0,0,0,0.00589,0.00837,0,0.00101,0.0016,0.00214,0.0043,0,0,0,0.00298,0.00416,0,0.00085,0.00132,0.00172,0.00326,0,0,0,0.00342,0.00499,0,0.00086,0.00135,0.00176,0.00337,0,0,0,0.00293,0.00408,0,0.00081,0.00126,0.00163,0.00305,0,0,0,0.00395,0.00555,0,0.00088,0.00139,0.00182,0.00353,0,0,0,0.003,0.00417,0,0.00079,0.00123,0.00159,0.003,0,0,0,0.0244,0.02971,0,0.03077,0.03207,0.0333,0.03825,0,0,0,0.02325,0.02783,0,0.03164,0.03287,0.034,0.03854,0,0,0,0.02543,0.03051,0,0.0345,0.03575,0.03693,0.04166,0,0,0,0.02407,0.02969,0,0.02882,0.03015,0.03141,0.03652,0,0,0,0.0199,0.0225,0,0.03359,0.0346,0.03548,0.03892,0,0,0,0.01958,0.0231,0,0.03062,0.03166,0.03259,0.03624,0,0,0,0.01854,0.02106,0,0.03066,0.03161,0.03242,0.03559,0,0,0,0.0214,0.02497,0,0.03229,0.03339,0.03437,0.03828,0,0,0,0.01924,0.0218,0,0.03193,0.03285,0.03365,0.03677,0,0,0,0.01234,0.01704,0,0.00564,0.00679,0.00787,0.01226,0,0,0,0.01101,0.01506,0,0.00567,0.00675,0.00775,0.01177,0,0,0,0.01201,0.01651,0,0.00606,0.00717,0.00821,0.01239,0,0,0,0.01269,0.01767,0,0.00542,0.0066,0.00771,0.01223,0,0,0,0.00731,0.00961,0,0.00569,0.00659,0.00736,0.01041,0,0,0,0.00801,0.01108,0,0.00535,0.00627,0.00709,0.01032,0,0,0,0.00703,0.00926,0,0.00525,0.00609,0.00681,0.00961,0,0,0,0.0091,0.01225,0,0.00561,0.00658,0.00744,0.0109,0,0,0,0.00723,0.00949,0,0.00538,0.0062,0.0069,0.00967,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Minivan,PH20G,2030,0,0,0,0,0,0.01277,0.01311,0.01346,0.01449,0,0,0,0,0,0,0.01315,0.01346,0.01377,0.01469,0,0,0,0,0,0,0.01438,0.0147,0.01503,0.016,0,0,0,0,0,0,0.01194,0.01229,0.01266,0.01373,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01504,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01387,0,0,0,0,0,0,0.01275,0.01295,0.01314,0.01369,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.0147,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01422,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0.00246,0.00336,0.00549,0,0.00099,0.00157,0.00209,0.00348,0,0,0.0022,0.003,0.00485,0,0.00095,0.00151,0.00199,0.00327,0,0,0.00237,0.00324,0.00528,0,0.00096,0.00153,0.00203,0.00336,0,0,0.00253,0.00347,0.00571,0,0.001,0.0016,0.00212,0.00355,0,0,0.00147,0.00201,0.00312,0,0.00084,0.00132,0.00171,0.0027,0,0,0.00162,0.00228,0.0035,0,0.00086,0.00134,0.00175,0.0028,0,0,0.00144,0.00197,0.00305,0,0.00081,0.00125,0.00162,0.00254,0,0,0.00182,0.00249,0.00396,0,0.00088,0.00139,0.00181,0.00293,0,0,0.00148,0.00201,0.00311,0,0.00079,0.00122,0.00159,0.00249,0,0,0.0175,0.01953,0.02432,0,0.03076,0.03206,0.03327,0.03655,0,0,0.01734,0.01914,0.02328,0,0.03164,0.03286,0.03397,0.03698,0,0,0.01895,0.02093,0.02552,0,0.03449,0.03574,0.0369,0.04004,0,0,0.01684,0.01898,0.02405,0,0.02881,0.03014,0.03137,0.03478,0,0,0.0167,0.01787,0.0203,0,0.03359,0.0346,0.03546,0.03771,0,0,0.01575,0.01725,0.01987,0,0.03062,0.03166,0.03257,0.03496,0,0,0.01542,0.01655,0.0189,0,0.03065,0.0316,0.0324,0.03447,0,0,0.01688,0.01835,0.02162,0,0.03229,0.03338,0.03435,0.03691,0,0,0.01605,0.0172,0.01958,0,0.03192,0.03285,0.03364,0.03566,0,0,0.00624,0.00803,0.01226,0,0.00563,0.00678,0.00785,0.01075,0,0,0.00577,0.00736,0.01103,0,0.00566,0.00674,0.00772,0.01039,0,0,0.00628,0.00803,0.0121,0,0.00605,0.00716,0.00818,0.01096,0,0,0.00629,0.00819,0.01267,0,0.00541,0.00659,0.00767,0.01069,0,0,0.00448,0.00551,0.00766,0,0.00569,0.00658,0.00734,0.00933,0,0,0.00462,0.00591,0.00827,0,0.00535,0.00627,0.00707,0.00919,0,0,0.00427,0.00528,0.00736,0,0.00525,0.00609,0.00679,0.00863,0,0,0.00509,0.0064,0.00929,0,0.00561,0.00657,0.00743,0.0097,0,0,0.0044,0.00542,0.00753,0,0.00538,0.0062,0.0069,0.00868,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Minivan,PH20G,2035,0,0,0,0,0,0,0.01277,0.0131,0.01347,0.01432,0,0,0,0,0,0,0.01315,0.01345,0.01378,0.01453,0,0,0,0,0,0,0.01437,0.01469,0.01503,0.01584,0,0,0,0,0,0,0.01194,0.01228,0.01266,0.01356,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01494,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01376,0,0,0,0,0,0,0.01275,0.01294,0.01315,0.0136,0,0,0,0,0,0,0.01344,0.01369,0.01396,0.01457,0,0,0,0,0,0,0.0133,0.01349,0.01369,0.01412,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0,0.00084,0.0015,0.00209,0.004,0,0.00099,0.00156,0.0021,0.00323,0,0.00079,0.00139,0.00193,0.00361,0,0.00095,0.0015,0.00199,0.00303,0,0.00083,0.00147,0.00205,0.0039,0,0.00096,0.00152,0.00203,0.00311,0,0.00086,0.00154,0.00216,0.00417,0,0.001,0.00158,0.00213,0.0033,0,0.00065,0.00113,0.00153,0.00259,0,0.00084,0.00131,0.00171,0.00251,0,0.00068,0.00119,0.00161,0.00281,0,0.00086,0.00134,0.00175,0.0026,0,0.00065,0.00112,0.00152,0.00255,0,0.0008,0.00125,0.00162,0.00236,0,0.00072,0.00126,0.00173,0.00309,0,0.00088,0.00138,0.00182,0.00271,0,0.00066,0.00114,0.00154,0.00259,0,0.00079,0.00122,0.00159,0.00231,0,0.01412,0.01561,0.01698,0.02134,0,0.03076,0.03204,0.03328,0.03597,0,0.0144,0.01576,0.01699,0.0208,0,0.03163,0.03284,0.03398,0.03644,0,0.01572,0.01717,0.01851,0.02275,0,0.03448,0.03572,0.03691,0.03947,0,0.01333,0.01488,0.01633,0.02095,0,0.0288,0.03011,0.03139,0.03419,0,0.01501,0.01603,0.01691,0.01925,0,0.03358,0.03458,0.03546,0.03728,0,0.01378,0.01497,0.01582,0.0185,0,0.03061,0.03164,0.03257,0.03452,0,0.01377,0.01478,0.01563,0.0179,0,0.03065,0.03158,0.03241,0.03408,0,0.01458,0.01577,0.01682,0.01988,0,0.03228,0.03336,0.03436,0.03644,0,0.01436,0.01538,0.01624,0.01854,0,0.03192,0.03284,0.03364,0.03526,0,0.00325,0.00456,0.00577,0.00963,0,0.00563,0.00676,0.00786,0.01024,0,0.00318,0.00437,0.00546,0.00884,0,0.00566,0.00672,0.00773,0.00991,0,0.00342,0.00471,0.0059,0.00964,0,0.00605,0.00714,0.00819,0.01046,0,0.0032,0.00457,0.00584,0.00994,0,0.0054,0.00656,0.00769,0.01017,0,0.00298,0.00389,0.00466,0.00674,0,0.00569,0.00657,0.00735,0.00896,0,0.00288,0.00389,0.00469,0.00705,0,0.00534,0.00625,0.00708,0.0088,0,0.00281,0.0037,0.00446,0.00647,0,0.00525,0.00607,0.0068,0.00828,0,0.00306,0.00411,0.00504,0.00775,0,0.0056,0.00656,0.00743,0.00928,0,0.00291,0.00381,0.00457,0.00661,0,0.00538,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Minivan,PH20G,2040,0,0,0,0,0,0,0,0.01276,0.0131,0.01347,0,0,0,0,0,0,0,0.01314,0.01345,0.01378,0,0,0,0,0,0,0,0.01437,0.01469,0.01504,0,0,0,0,0,0,0,0.01193,0.01228,0.01267,0,0,0,0,0,0,0,0.01399,0.01421,0.01444,0,0,0,0,0,0,0,0.01272,0.01296,0.0132,0,0,0,0,0,0,0,0.01274,0.01295,0.01315,0,0,0,0,0,0,0,0.01343,0.01369,0.01396,0,0,0,0,0,0,0,0.0133,0.01349,0.01369,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0,0,0.00081,0.00133,0.00191,0.00314,0,0.00098,0.00157,0.0021,0,0,0.00077,0.00126,0.0018,0.00291,0,0.00094,0.0015,0.002,0,0,0.00079,0.0013,0.00187,0.00308,0,0.00096,0.00152,0.00204,0,0,0.00082,0.00135,0.00194,0.00324,0,0.00099,0.00159,0.00214,0,0,0.00066,0.00107,0.00149,0.00229,0,0.00084,0.00131,0.00172,0,0,0.00068,0.0011,0.00155,0.00242,0,0.00085,0.00134,0.00176,0,0,0.00066,0.00106,0.00149,0.00227,0,0.0008,0.00125,0.00163,0,0,0.00071,0.00116,0.00165,0.0026,0,0.00088,0.00138,0.00182,0,0,0.00067,0.00109,0.00151,0.0023,0,0.00078,0.00122,0.00159,0,0,0.01402,0.01516,0.0165,0.0194,0,0.03074,0.03205,0.03329,0,0,0.01433,0.0154,0.01663,0.01923,0,0.03162,0.03284,0.03399,0,0,0.01561,0.01674,0.01805,0.0209,0,0.03447,0.03573,0.03692,0,0,0.0132,0.01437,0.01576,0.01882,0,0.02878,0.03012,0.03141,0,0,0.01501,0.01587,0.0168,0.01859,0,0.03357,0.03458,0.03547,0,0,0.01384,0.01467,0.01567,0.01764,0,0.0306,0.03165,0.03258,0,0,0.01378,0.01464,0.01555,0.01729,0,0.03064,0.03159,0.03242,0,0,0.01455,0.01551,0.01659,0.01878,0,0.03227,0.03337,0.03436,0,0,0.01437,0.01524,0.01616,0.01792,0,0.03192,0.03284,0.03364,0,0,0.00315,0.00417,0.00535,0.00792,0,0.00561,0.00677,0.00787,0,0,0.00311,0.00406,0.00514,0.00744,0,0.00564,0.00673,0.00775,0,0,0.00333,0.00433,0.00549,0.00801,0,0.00603,0.00715,0.0082,0,0,0.00308,0.00412,0.00534,0.00805,0,0.00539,0.00657,0.00771,0,0,0.00299,0.00375,0.00457,0.00615,0,0.00568,0.00657,0.00736,0,0,0.00289,0.00367,0.00455,0.00629,0,0.00533,0.00626,0.00709,0,0,0.00282,0.00358,0.00439,0.00593,0,0.00524,0.00608,0.00681,0,0,0.00303,0.00389,0.00484,0.00677,0,0.00559,0.00656,0.00744,0,0,0.00292,0.00368,0.0045,0.00606,0,0.00537,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Minivan,PH20G,2045,0,0,0,0,0,0,0,0,0.01277,0.01311,0,0,0,0,0,0,0,0,0.01314,0.01345,0,0,0,0,0,0,0,0,0.01437,0.0147,0,0,0,0,0,0,0,0,0.01193,0.01229,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01272,0.01296,0,0,0,0,0,0,0,0,0.01274,0.01295,0,0,0,0,0,0,0,0,0.01343,0.01369,0,0,0,0,0,0,0,0,0.0133,0.01349,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0,0,0,0.00069,0.00112,0.00149,0.00267,0,0.00099,0.00157,0,0,0,0.00066,0.00107,0.00141,0.00248,0,0.00095,0.0015,0,0,0,0.00068,0.0011,0.00146,0.00262,0,0.00096,0.00153,0,0,0,0.0007,0.00114,0.00151,0.00274,0,0.00099,0.00159,0,0,0,0.00057,0.00091,0.00118,0.00199,0,0.00084,0.00132,0,0,0,0.00059,0.00094,0.00122,0.00209,0,0.00085,0.00134,0,0,0,0.00057,0.00091,0.00117,0.00197,0,0.0008,0.00125,0,0,0,0.00062,0.00099,0.00129,0.00224,0,0.00088,0.00138,0,0,0,0.00059,0.00093,0.00119,0.002,0,0.00078,0.00122,0,0,0,0.01375,0.01471,0.01556,0.01834,0,0.03075,0.03206,0,0,0,0.01409,0.01498,0.01577,0.01828,0,0.03162,0.03285,0,0,0,0.01536,0.0163,0.01713,0.01986,0,0.03447,0.03574,0,0,0,0.01292,0.0139,0.01479,0.01769,0,0.02879,0.03013,0,0,0,0.01483,0.01555,0.01613,0.01795,0,0.03358,0.03459,0,0,0,0.01358,0.01433,0.01496,0.01693,0,0.0306,0.03165,0,0,0,0.0136,0.01431,0.01489,0.01667,0,0.03064,0.0316,0,0,0,0.01434,0.01514,0.01583,0.01799,0,0.03228,0.03338,0,0,0,0.01419,0.01491,0.01549,0.01728,0,0.03192,0.03285,0,0,0,0.00292,0.00377,0.00452,0.00697,0,0.00562,0.00678,0,0,0,0.0029,0.00369,0.00438,0.00661,0,0.00565,0.00674,0,0,0,0.0031,0.00394,0.00468,0.00709,0,0.00604,0.00716,0,0,0,0.00283,0.0037,0.00448,0.00705,0,0.00539,0.00658,0,0,0,0.00282,0.00346,0.00398,0.00558,0,0.00568,0.00658,0,0,0,0.0027,0.00336,0.00392,0.00567,0,0.00534,0.00627,0,0,0,0.00266,0.00329,0.0038,0.00538,0,0.00524,0.00609,0,0,0,0.00285,0.00356,0.00416,0.00608,0,0.0056,0.00657,0,0,0,0.00275,0.00339,0.00391,0.0055,0,0.00537,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Minivan,PH20G,2050,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01315,0,0,0,0,0,0,0,0,0,0.01437,0,0,0,0,0,0,0,0,0,0.01193,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01272,0,0,0,0,0,0,0,0,0,0.01274,0,0,0,0,0,0,0,0,0,0.01344,0,0,0,0,0,0,0,0,0,0.0133,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0,0,0,0,0.00045,0.0007,0.00093,0.00192,0,0.00099,0,0,0,0,0.00042,0.00067,0.00088,0.00179,0,0.00095,0,0,0,0,0.00044,0.00069,0.00091,0.00189,0,0.00096,0,0,0,0,0.00045,0.00071,0.00095,0.00197,0,0.001,0,0,0,0,0.00037,0.00057,0.00074,0.00144,0,0.00084,0,0,0,0,0.00038,0.00059,0.00076,0.00151,0,0.00085,0,0,0,0,0.00037,0.00057,0.00073,0.00143,0,0.0008,0,0,0,0,0.0004,0.00062,0.00081,0.00162,0,0.00088,0,0,0,0,0.00038,0.00058,0.00075,0.00145,0,0.00078,0,0,0,0,0.01322,0.01379,0.01432,0.01664,0,0.03075,0,0,0,0,0.01359,0.01412,0.0146,0.01672,0,0.03163,0,0,0,0,0.01483,0.01539,0.01591,0.0182,0,0.03448,0,0,0,0,0.01238,0.01297,0.01351,0.01593,0,0.0288,0,0,0,0,0.0144,0.01483,0.0152,0.01676,0,0.03358,0,0,0,0,0.01314,0.01359,0.01398,0.01567,0,0.03061,0,0,0,0,0.01318,0.01361,0.01396,0.0155,0,0.03065,0,0,0,0,0.01387,0.01435,0.01478,0.01662,0,0.03228,0,0,0,0,0.01375,0.01419,0.01455,0.0161,0,0.03192,0,0,0,0,0.00245,0.00296,0.00342,0.00548,0,0.00562,0,0,0,0,0.00245,0.00293,0.00335,0.00523,0,0.00565,0,0,0,0,0.00264,0.00314,0.00359,0.00562,0,0.00604,0,0,0,0,0.00235,0.00287,0.00335,0.0055,0,0.0054,0,0,0,0,0.00245,0.00283,0.00315,0.00453,0,0.00568,0,0,0,0,0.00231,0.00271,0.00305,0.00455,0,0.00534,0,0,0,0,0.00229,0.00267,0.00298,0.00434,0,0.00524,0,0,0,0,0.00243,0.00286,0.00324,0.00486,0,0.0056,0,0,0,0,0.00237,0.00276,0.00308,0.00445,0,0.00538,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Minivan,PH40E,1990,0.02044,0,0,0,0,0,0,0,0,0,0.02114,0,0,0,0,0,0,0,0,0,0.02314,0,0,0,0,0,0,0,0,0,0.01902,0,0,0,0,0,0,0,0,0,0.02273,0,0,0,0,0,0,0,0,0,0.02058,0,0,0,0,0,0,0,0,0,0.02071,0,0,0,0,0,0,0,0,0,0.02173,0,0,0,0,0,0,0,0,0,0.02164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.00123,0.00162,0.00267,0,0,0,0,0,0,0.00075,0.00118,0.00155,0.00252,0,0,0,0,0,0,0.00076,0.0012,0.00159,0.00261,0,0,0,0,0,0,0.00078,0.00124,0.00164,0.00272,0,0,0,0,0,0,0.00067,0.00104,0.00134,0.00211,0,0,0,0,0,0,0.00068,0.00106,0.00137,0.00218,0,0,0,0,0,0,0.00064,0.00099,0.00127,0.00198,0,0,0,0,0,0,0.00069,0.00108,0.00141,0.00225,0,0,0,0,0,0,0.00062,0.00095,0.00123,0.00191,0,0,0,0,0,0,0.0221,0.0231,0.02401,0.02649,0,0,0,0,0,0,0.02273,0.02367,0.02451,0.02679,0,0,0,0,0,0,0.02478,0.02575,0.02664,0.02904,0,0,0,0,0,0,0.0207,0.02172,0.02265,0.02521,0,0,0,0,0,0,0.02411,0.0249,0.02556,0.02728,0,0,0,0,0,0,0.02199,0.02281,0.02351,0.02534,0,0,0,0,0,0,0.02201,0.02275,0.02336,0.02495,0,0,0,0,0,0,0.02318,0.02402,0.02475,0.02667,0,0,0,0,0,0,0.0229,0.02361,0.0242,0.0257,0,0,0,0,0,0,0.00414,0.00502,0.00583,0.00802,0,0,0,0,0,0,0.00416,0.00499,0.00574,0.00775,0,0,0,0,0,0,0.00445,0.00531,0.00609,0.00821,0,0,0,0,0,0,0.00398,0.00488,0.0057,0.00796,0,0,0,0,0,0,0.00417,0.00487,0.00545,0.00697,0,0,0,0,0,0,0.00393,0.00465,0.00527,0.00689,0,0,0,0,0,0,0.00385,0.00451,0.00505,0.00645,0,0,0,0,0,0,0.00411,0.00485,0.0055,0.0072,0,0,0,0,0,0,0.00393,0.00456,0.00508,0.0064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH40E,1995,0.02043,0.02043,0,0,0,0,0,0,0,0,0.02113,0.02113,0,0,0,0,0,0,0,0,0.02314,0.02314,0,0,0,0,0,0,0,0,0.01901,0.01901,0,0,0,0,0,0,0,0,0.02273,0.02273,0,0,0,0,0,0,0,0,0.02058,0.02058,0,0,0,0,0,0,0,0,0.0207,0.0207,0,0,0,0,0,0,0,0,0.02172,0.02172,0,0,0,0,0,0,0,0,0.02163,0.02163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.00122,0.00163,0.00248,0,0,0,0,0,0,0.00075,0.00117,0.00155,0.00234,0,0,0,0,0,0,0.00076,0.00119,0.00159,0.00241,0,0,0,0,0,0,0.00078,0.00123,0.00165,0.00252,0,0,0,0,0,0,0.00067,0.00103,0.00134,0.00196,0,0,0,0,0,0,0.00068,0.00105,0.00138,0.00202,0,0,0,0,0,0,0.00064,0.00098,0.00127,0.00184,0,0,0,0,0,0,0.00069,0.00108,0.00141,0.00209,0,0,0,0,0,0,0.00062,0.00095,0.00123,0.00177,0,0,0,0,0,0,0.0221,0.02309,0.02402,0.02603,0,0,0,0,0,0,0.02272,0.02365,0.02452,0.02636,0,0,0,0,0,0,0.02477,0.02573,0.02664,0.02859,0,0,0,0,0,0,0.0207,0.0217,0.02266,0.02475,0,0,0,0,0,0,0.02411,0.02489,0.02557,0.02695,0,0,0,0,0,0,0.02199,0.02279,0.02351,0.02499,0,0,0,0,0,0,0.02201,0.02274,0.02337,0.02464,0,0,0,0,0,0,0.02317,0.02401,0.02475,0.0263,0,0,0,0,0,0,0.0229,0.0236,0.0242,0.02539,0,0,0,0,0,0,0.00413,0.00501,0.00583,0.00761,0,0,0,0,0,0,0.00415,0.00498,0.00575,0.00738,0,0,0,0,0,0,0.00444,0.0053,0.0061,0.00782,0,0,0,0,0,0,0.00397,0.00486,0.00571,0.00755,0,0,0,0,0,0,0.00417,0.00486,0.00546,0.00668,0,0,0,0,0,0,0.00393,0.00464,0.00527,0.00658,0,0,0,0,0,0,0.00385,0.0045,0.00505,0.00618,0,0,0,0,0,0,0.0041,0.00484,0.0055,0.00687,0,0,0,0,0,0,0.00393,0.00455,0.00508,0.00614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH40E,2000,0.02043,0.02487,0.02724,0,0,0,0,0,0,0,0.02113,0.02494,0.02695,0,0,0,0,0,0,0,0.02314,0.02742,0.02971,0,0,0,0,0,0,0,0.01901,0.02376,0.02632,0,0,0,0,0,0,0,0.02273,0.02486,0.02594,0,0,0,0,0,0,0,0.02058,0.02309,0.02455,0,0,0,0,0,0,0,0.0207,0.02274,0.02376,0,0,0,0,0,0,0,0.02173,0.02467,0.02621,0,0,0,0,0,0,0,0.02164,0.0237,0.02472,0,0,0,0,0,0,0,0,0.08591,0.09421,0,0,0,0,0,0,0,0,0.08276,0.09242,0,0,0,0,0,0,0,0,0.09805,0.10841,0,0,0,0,0,0,0,0,0.10218,0.1123,0,0,0,0,0,0,0,0,0.08874,0.09933,0,0,0,0,0,0,0,0,0.09346,0.10371,0,0,0,0,0,0,0,0,0.09021,0.09773,0,0,0,0,0,0,0,0,0.08919,0.09821,0,0,0,0,0,0,0,0,0.07849,0.08693,0,0,0,0,0,0,0,0,7.78215,9.82226,0,0,0,0,0,0,0,0,7.62771,9.75559,0,0,0,0,0,0,0,0,8.73402,11.10084,0,0,0,0,0,0,0,0,9.24196,11.6742,0,0,0,0,0,0,0,0,8.28078,10.57589,0,0,0,0,0,0,0,0,8.60315,10.99851,0,0,0,0,0,0,0,0,8.61435,10.69441,0,0,0,0,0,0,0,0,8.21531,10.37856,0,0,0,0,0,0,0,0,7.10919,9.02863,0,0,0,0,0,0,0,0,261.00017,264.90481,0,0,0,0,0,0,0,0,263.0204,266.64274,0,0,0,0,0,0,0,0,266.87788,270.68919,0,0,0,0,0,0,0,0,260.6615,264.47347,0,0,0,0,0,0,0,0,267.11088,269.74742,0,0,0,0,0,0,0,0,262.82174,266.64088,0,0,0,0,0,0,0,0,265.00829,267.52947,0,0,0,0,0,0,0,0,265.14905,268.21116,0,0,0,0,0,0,0,0,261.14206,263.94131,0,0,0,0,0,0,0,0,0.02346,0.02802,0,0,0,0,0,0,0,0,0.02352,0.02806,0,0,0,0,0,0,0,0,0.02398,0.02853,0,0,0,0,0,0,0,0,0.02295,0.02744,0,0,0,0,0,0,0,0,0.02385,0.0284,0,0,0,0,0,0,0,0,0.02327,0.02778,0,0,0,0,0,0,0,0,0.02346,0.028,0,0,0,0,0,0,0,0,0.02372,0.02828,0,0,0,0,0,0,0,0,0.02389,0.02849,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04102,0.04102,0,0,0,0,0,0,0,0,0.04101,0.04101,0,0,0,0,0,0,0,0,0.0408,0.0408,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04084,0.04084,0,0,0,0,0,0,0,0,0.04095,0.04095,0,0,0,0,0,0,0,0,0.04103,0.04104,0,0,0,0,0,0,0,0,0.04113,0.04113,0,0,0,0,0,0,0,0,1.02389,1.24637,0,0,0,0,0,0,0,0,1.01104,1.24595,0,0,0,0,0,0,0,0,1.13021,1.38047,0,0,0,0,0,0,0,0,1.17013,1.42306,0,0,0,0,0,0,0,0,1.1028,1.3579,0,0,0,0,0,0,0,0,1.13427,1.38158,0,0,0,0,0,0,0,0,1.12308,1.34762,0,0,0,0,0,0,0,0,1.16663,1.40858,0,0,0,0,0,0,0,0,1.04744,1.27405,0,0,0,0,0,0,0,0,0.00947,0.0134,0,0,0,0,0.00077,0.00122,0.00163,0,0.00828,0.01168,0,0,0,0,0.00074,0.00117,0.00155,0,0.00897,0.01273,0,0,0,0,0.00075,0.0012,0.00159,0,0.00981,0.01396,0,0,0,0,0.00077,0.00123,0.00165,0,0.00496,0.00694,0,0,0,0,0.00066,0.00104,0.00135,0,0.00571,0.00831,0,0,0,0,0.00067,0.00106,0.00138,0,0.00488,0.0068,0,0,0,0,0.00063,0.00099,0.00128,0,0.00658,0.00926,0,0,0,0,0.00069,0.00108,0.00141,0,0.005,0.00696,0,0,0,0,0.00061,0.00095,0.00123,0,0.04066,0.04951,0,0,0,0,0.02209,0.02309,0.02403,0,0.03875,0.04638,0,0,0,0,0.02271,0.02366,0.02453,0,0.04238,0.05085,0,0,0,0,0.02476,0.02574,0.02665,0,0.04011,0.04949,0,0,0,0,0.02069,0.02171,0.02267,0,0.03316,0.0375,0,0,0,0,0.0241,0.02489,0.02557,0,0.03263,0.03849,0,0,0,0,0.02198,0.0228,0.02352,0,0.0309,0.0351,0,0,0,0,0.022,0.02274,0.02338,0,0.03567,0.04162,0,0,0,0,0.02317,0.02401,0.02476,0,0.03207,0.03634,0,0,0,0,0.0229,0.0236,0.0242,0,0.02056,0.02839,0,0,0,0,0.00413,0.00501,0.00584,0,0.01834,0.02509,0,0,0,0,0.00415,0.00498,0.00575,0,0.02002,0.02752,0,0,0,0,0.00444,0.0053,0.00611,0,0.02115,0.02945,0,0,0,0,0.00396,0.00487,0.00572,0,0.01218,0.01602,0,0,0,0,0.00417,0.00486,0.00546,0,0.01334,0.01846,0,0,0,0,0.00392,0.00464,0.00528,0,0.01172,0.01544,0,0,0,0,0.00385,0.0045,0.00506,0,0.01516,0.02042,0,0,0,0,0.0041,0.00484,0.0055,0,0.01205,0.01582,0,0,0,0,0.00393,0.00455,0.00508,0,0.00854,0.00765,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00874,0.00782,0,0,0,0,0,0,0,0,0.00853,0.00764,0,0,0,0,0,0,0,0,0.00875,0.00779,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00868,0.00773,0,0,0,0,0,0,0,0,0.00868,0.00774,0,0,0,0,0,0,0,0,0.00855,0.00762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Minivan,PH40E,2005,0.02044,0.02234,0.02327,0.02545,0,0,0,0,0,0,0.02114,0.0228,0.02359,0.02545,0,0,0,0,0,0,0.02315,0.025,0.0259,0.02802,0,0,0,0,0,0,0.01902,0.02104,0.02204,0.0244,0,0,0,0,0,0,0.02274,0.02374,0.02421,0.02523,0,0,0,0,0,0,0.02059,0.02174,0.02234,0.02349,0,0,0,0,0,0,0.02071,0.02168,0.02212,0.02309,0,0,0,0,0,0,0.02174,0.02306,0.02369,0.02511,0,0,0,0,0,0,0.02165,0.02262,0.02307,0.02404,0,0,0,0,0,0,0,0.0359,0.03062,0.03951,0,0,0,0,0,0,0,0.03297,0.02908,0.03777,0,0,0,0,0,0,0,0.03903,0.03422,0.04605,0,0,0,0,0,0,0,0.04109,0.03597,0.04809,0,0,0,0,0,0,0,0.02919,0.02747,0.03834,0,0,0,0,0,0,0,0.03202,0.02982,0.04094,0,0,0,0,0,0,0,0.02924,0.02689,0.03741,0,0,0,0,0,0,0,0.03227,0.02888,0.03911,0,0,0,0,0,0,0,0.02606,0.02396,0.03218,0,0,0,0,0,0,0,3.06958,3.97449,5.89445,0,0,0,0,0,0,0,3.00119,3.98151,5.87501,0,0,0,0,0,0,0,3.37182,4.55669,6.87894,0,0,0,0,0,0,0,3.54369,4.79704,7.21369,0,0,0,0,0,0,0,3.29974,4.52386,6.69599,0,0,0,0,0,0,0,3.36531,4.6374,6.855,0,0,0,0,0,0,0,3.43558,4.59153,6.76434,0,0,0,0,0,0,0,3.27381,4.3573,6.44735,0,0,0,0,0,0,0,2.91823,3.85626,5.59558,0,0,0,0,0,0,0,270.64382,273.57988,276.92053,0,0,0,0,0,0,0,272.90701,275.63443,278.61134,0,0,0,0,0,0,0,276.6806,279.5484,282.76808,0,0,0,0,0,0,0,270.43103,273.3014,276.53414,0,0,0,0,0,0,0,277.73713,279.73599,281.45473,0,0,0,0,0,0,0,273.20109,276.31685,277.4774,0,0,0,0,0,0,0,275.7438,277.659,279.23118,0,0,0,0,0,0,0,275.47141,277.78504,280.04424,0,0,0,0,0,0,0,271.47263,273.58606,275.50201,0,0,0,0,0,0,0,0.00482,0.00571,0.01096,0,0,0,0,0,0,0,0.00483,0.00571,0.01096,0,0,0,0,0,0,0,0.0049,0.00578,0.0111,0,0,0,0,0,0,0,0.00473,0.0056,0.01076,0,0,0,0,0,0,0,0.00488,0.00576,0.01105,0,0,0,0,0,0,0,0.00478,0.00565,0.01085,0,0,0,0,0,0,0,0.00482,0.0057,0.01094,0,0,0,0,0,0,0,0.00486,0.00575,0.01103,0,0,0,0,0,0,0,0.0049,0.00579,0.01112,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01343,0.01682,0.01992,0,0,0,0,0,0,0,0.01342,0.01681,0.01991,0,0,0,0,0,0,0,0.01335,0.01672,0.01981,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01337,0.01674,0.01983,0,0,0,0,0,0,0,0.0134,0.01678,0.01988,0,0,0,0,0,0,0,0.01343,0.01682,0.01993,0,0,0,0,0,0,0,0.01346,0.01686,0.01997,0,0,0,0,0,0,0,0.43908,0.58658,0.61355,0,0,0,0,0,0,0,0.42722,0.58465,0.61023,0,0,0,0,0,0,0,0.48091,0.64701,0.68945,0,0,0,0,0,0,0,0.5039,0.67625,0.71819,0,0,0,0,0,0,0,0.46401,0.63147,0.67553,0,0,0,0,0,0,0,0.48199,0.6483,0.69019,0,0,0,0,0,0,0,0.47636,0.6313,0.66914,0,0,0,0,0,0,0,0.49939,0.66447,0.69498,0,0,0,0,0,0,0,0.44777,0.59895,0.62117,0,0,0,0,0,0,0,0.0041,0.0056,0.00914,0,0,0,0,0.00077,0.00122,0,0.00366,0.005,0.00809,0,0,0,0,0.00074,0.00117,0,0.00395,0.00541,0.0088,0,0,0,0,0.00076,0.0012,0,0.00422,0.00579,0.00952,0,0,0,0,0.00078,0.00124,0,0.00245,0.00334,0.00519,0,0,0,0,0.00066,0.00104,0,0.00271,0.0038,0.00583,0,0,0,0,0.00067,0.00106,0,0.00241,0.00328,0.00508,0,0,0,0,0.00063,0.00099,0,0.00304,0.00415,0.00661,0,0,0,0,0.00069,0.00108,0,0.00247,0.00336,0.00519,0,0,0,0,0.00061,0.00095,0,0.02917,0.03256,0.04053,0,0,0,0,0.02209,0.0231,0,0.0289,0.03189,0.0388,0,0,0,0,0.02272,0.02366,0,0.03158,0.03488,0.04254,0,0,0,0,0.02477,0.02574,0,0.02806,0.03163,0.04008,0,0,0,0,0.02069,0.02172,0,0.02784,0.02978,0.03383,0,0,0,0,0.02411,0.0249,0,0.02625,0.02876,0.03312,0,0,0,0,0.02199,0.0228,0,0.0257,0.02759,0.03151,0,0,0,0,0.022,0.02275,0,0.02813,0.03059,0.03603,0,0,0,0,0.02317,0.02401,0,0.02675,0.02867,0.03264,0,0,0,0,0.0229,0.02361,0,0.01039,0.01339,0.02044,0,0,0,0,0.00413,0.00502,0,0.00962,0.01227,0.01838,0,0,0,0,0.00415,0.00499,0,0.01047,0.01339,0.02016,0,0,0,0,0.00444,0.0053,0,0.01049,0.01365,0.02112,0,0,0,0,0.00397,0.00487,0,0.00747,0.00919,0.01277,0,0,0,0,0.00417,0.00486,0,0.0077,0.00984,0.01378,0,0,0,0,0.00392,0.00465,0,0.00712,0.00879,0.01226,0,0,0,0,0.00385,0.00451,0,0.00849,0.01067,0.01548,0,0,0,0,0.0041,0.00485,0,0.00733,0.00903,0.01255,0,0,0,0,0.00393,0.00455,0,0.00886,0.0079,0.00267,0,0,0,0,0,0,0,0.00894,0.00796,0.00268,0,0,0,0,0,0,0,0.00906,0.00807,0.00272,0,0,0,0,0,0,0,0.00885,0.00789,0.00266,0,0,0,0,0,0,0,0.00909,0.00808,0.00271,0,0,0,0,0,0,0,0.00895,0.00798,0.00267,0,0,0,0,0,0,0,0.00903,0.00802,0.00269,0,0,0,0,0,0,0,0.00902,0.00802,0.0027,0,0,0,0,0,0,0,0.00889,0.0079,0.00265,0,0,0,0,0,0,0,0.19151,0.26704,0.26689,0,0,0,0,0,0,0,0.17299,0.24778,0.24653,0,0,0,0,0,0,0,0.20315,0.28985,0.28676,0,0,0,0,0,0,0,0.21493,0.30599,0.30157,0,0,0,0,0,0,0,0.13524,0.20893,0.2018,0,0,0,0,0,0,0,0.15239,0.23364,0.22243,0,0,0,0,0,0,0,0.13329,0.20216,0.19483,0,0,0,0,0,0,0,0.15848,0.2321,0.22729,0,0,0,0,0,0,0,0.12057,0.18285,0.17688,0,0,0,0,0,0 +Minivan,PH40E,2010,0,0.02122,0.0219,0.02259,0.02465,0,0,0,0,0,0,0.02183,0.02243,0.02302,0.02479,0,0,0,0,0,0,0.02392,0.02458,0.02525,0.02726,0,0,0,0,0,0,0.01985,0.02058,0.02132,0.02355,0,0,0,0,0,0,0.0232,0.02359,0.02395,0.02496,0,0,0,0,0,0,0.0211,0.02156,0.02195,0.02313,0,0,0,0,0,0,0.02116,0.02153,0.02188,0.02283,0,0,0,0,0,0,0.02231,0.0228,0.02327,0.02465,0,0,0,0,0,0,0.0221,0.02247,0.02282,0.02377,0,0,0,0,0,0,0.02338,0.0167,0.01262,0.02073,0,0,0,0,0,0,0.02039,0.01518,0.0116,0.01941,0,0,0,0,0,0,0.02288,0.01789,0.0137,0.0237,0,0,0,0,0,0,0.02542,0.01978,0.01508,0.0254,0,0,0,0,0,0,0.01369,0.01296,0.01032,0.01884,0,0,0,0,0,0,0.01531,0.01437,0.01116,0.0203,0,0,0,0,0,0,0.0134,0.01278,0.01018,0.01844,0,0,0,0,0,0,0.01711,0.01446,0.01122,0.01967,0,0,0,0,0,0,0.01316,0.01179,0.0092,0.01595,0,0,0,0,0,0,1.24201,2.06766,2.78621,4.17569,0,0,0,0,0,0,1.18144,2.0444,2.76907,4.14896,0,0,0,0,0,0,1.243,2.26626,3.14631,4.87863,0,0,0,0,0,0,1.32871,2.42663,3.37624,5.18617,0,0,0,0,0,0,1.09365,2.16139,3.02966,4.69862,0,0,0,0,0,0,1.12885,2.24229,3.11093,4.845,0,0,0,0,0,0,1.14005,2.22436,3.10587,4.77564,0,0,0,0,0,0,1.16388,2.16276,2.97703,4.54908,0,0,0,0,0,0,1.02317,1.91247,2.59965,3.91145,0,0,0,0,0,0,251.68816,252.76145,255.00028,263.33105,0,0,0,0,0,0,253.90584,254.8429,256.85844,264.8602,0,0,0,0,0,0,257.37277,258.38255,260.53624,268.83693,0,0,0,0,0,0,251.53745,252.55975,254.73651,262.96542,0,0,0,0,0,0,258.77585,259.24577,260.49114,267.30263,0,0,0,0,0,0,254.43996,255.88196,256.5147,263.61767,0,0,0,0,0,0,256.95866,257.37817,258.54227,265.18528,0,0,0,0,0,0,256.5045,257.17661,258.75481,266.07739,0,0,0,0,0,0,252.83469,253.41103,254.78376,261.68608,0,0,0,0,0,0,0.00428,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00429,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00436,0.0049,0.00585,0.00838,0,0,0,0,0,0,0.00419,0.00472,0.00567,0.00814,0,0,0,0,0,0,0.00434,0.00487,0.00583,0.00834,0,0,0,0,0,0,0.00424,0.00478,0.00572,0.0082,0,0,0,0,0,0,0.00428,0.00481,0.00577,0.00827,0,0,0,0,0,0,0.00432,0.00486,0.00581,0.00833,0,0,0,0,0,0,0.00435,0.0049,0.00586,0.0084,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00891,0.01023,0.01333,0.01478,0,0,0,0,0,0,0.00886,0.01017,0.01326,0.0147,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00887,0.01018,0.01328,0.01471,0,0,0,0,0,0,0.00889,0.01021,0.01331,0.01475,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00893,0.01025,0.01337,0.01482,0,0,0,0,0,0,0.07206,0.12572,0.12615,0.27042,0,0,0,0,0,0,0.06948,0.12456,0.12482,0.26791,0,0,0,0,0,0,0.07098,0.13713,0.13643,0.30571,0,0,0,0,0,0,0.07345,0.14552,0.14367,0.32149,0,0,0,0,0,0,0.06525,0.13052,0.12942,0.29622,0,0,0,0,0,0,0.0681,0.13603,0.13434,0.3049,0,0,0,0,0,0,0.06732,0.13151,0.13009,0.29362,0,0,0,0,0,0,0.07348,0.14044,0.13743,0.3051,0,0,0,0,0,0,0.06785,0.12633,0.12362,0.26931,0,0,0,0,0,0,0.00141,0.0025,0.00348,0.00666,0,0,0,0,0.00077,0,0.00132,0.00232,0.00322,0.00602,0,0,0,0,0.00074,0,0.00138,0.00245,0.00341,0.00649,0,0,0,0,0.00076,0,0.00144,0.00257,0.0036,0.00694,0,0,0,0,0.00078,0,0.00109,0.00188,0.00255,0.00432,0,0,0,0,0.00067,0,0.00113,0.00199,0.00268,0.00468,0,0,0,0,0.00068,0,0.00108,0.00187,0.00253,0.00424,0,0,0,0,0.00064,0,0.0012,0.0021,0.00288,0.00515,0,0,0,0,0.00069,0,0.0011,0.0019,0.00257,0.00431,0,0,0,0,0.00061,0,0.02354,0.02602,0.02829,0.03557,0,0,0,0,0.0221,0,0.02401,0.02626,0.02831,0.03467,0,0,0,0,0.02272,0,0.0262,0.02862,0.03086,0.03791,0,0,0,0,0.02477,0,0.02222,0.02481,0.02721,0.03492,0,0,0,0,0.0207,0,0.02501,0.02671,0.02818,0.03209,0,0,0,0,0.02411,0,0.02297,0.02495,0.02637,0.03083,0,0,0,0,0.02199,0,0.02295,0.02463,0.02606,0.02984,0,0,0,0,0.02201,0,0.0243,0.02628,0.02803,0.03313,0,0,0,0,0.02317,0,0.02393,0.02563,0.02707,0.0309,0,0,0,0,0.0229,0,0.00541,0.0076,0.00962,0.01606,0,0,0,0,0.00413,0,0.00529,0.00729,0.0091,0.01473,0,0,0,0,0.00415,0,0.0057,0.00785,0.00983,0.01607,0,0,0,0,0.00444,0,0.00533,0.00761,0.00974,0.01656,0,0,0,0,0.00397,0,0.00497,0.00648,0.00777,0.01123,0,0,0,0,0.00417,0,0.0048,0.00648,0.00781,0.01175,0,0,0,0,0.00393,0,0.00469,0.00617,0.00743,0.01078,0,0,0,0,0.00385,0,0.0051,0.00685,0.0084,0.01292,0,0,0,0,0.0041,0,0.00484,0.00635,0.00762,0.01101,0,0,0,0,0.00393,0,0.00824,0.0073,0.00245,0.00253,0,0,0,0,0,0,0.00831,0.00736,0.00247,0.00255,0,0,0,0,0,0,0.00843,0.00746,0.00251,0.00259,0,0,0,0,0,0,0.00824,0.00729,0.00245,0.00253,0,0,0,0,0,0,0.00847,0.00749,0.00251,0.00257,0,0,0,0,0,0,0.00833,0.00739,0.00247,0.00254,0,0,0,0,0,0,0.00841,0.00743,0.00249,0.00255,0,0,0,0,0,0,0.0084,0.00743,0.00249,0.00256,0,0,0,0,0,0,0.00828,0.00732,0.00245,0.00252,0,0,0,0,0,0,0.05871,0.08831,0.12093,0.19643,0,0,0,0,0,0,0.04982,0.078,0.10868,0.17888,0,0,0,0,0,0,0.05751,0.09267,0.12909,0.21532,0,0,0,0,0,0,0.06458,0.10288,0.14222,0.23284,0,0,0,0,0,0,0.02958,0.05926,0.089,0.15278,0,0,0,0,0,0,0.03428,0.06739,0.09728,0.16751,0,0,0,0,0,0,0.02817,0.05714,0.08626,0.14767,0,0,0,0,0,0,0.03969,0.0699,0.10063,0.16926,0,0,0,0,0,0,0.02788,0.0536,0.07928,0.13148,0,0,0,0,0 +Minivan,PH40E,2015,0,0,0.02114,0.02163,0.02227,0.02375,0,0,0,0,0,0,0.02177,0.02222,0.02279,0.02408,0,0,0,0,0,0,0.02384,0.02432,0.02495,0.0264,0,0,0,0,0,0,0.01975,0.02027,0.02095,0.02254,0,0,0,0,0,0,0.02319,0.0235,0.02388,0.02467,0,0,0,0,0,0,0.02109,0.02142,0.02185,0.02275,0,0,0,0,0,0,0.02115,0.02145,0.02182,0.02258,0,0,0,0,0,0,0.02228,0.02265,0.02313,0.02416,0,0,0,0,0,0,0.02209,0.02239,0.02276,0.02352,0,0,0,0,0,0,0.01769,0.01184,0.01086,0.01351,0,0,0,0,0,0,0.01621,0.01102,0.01029,0.01277,0,0,0,0,0,0,0.01757,0.01284,0.012,0.01516,0,0,0,0,0,0,0.01894,0.01391,0.01297,0.01629,0,0,0,0,0,0,0.01218,0.0099,0.00989,0.01242,0,0,0,0,0,0,0.01354,0.01069,0.01056,0.01329,0,0,0,0,0,0,0.01207,0.00978,0.00983,0.01228,0,0,0,0,0,0,0.01427,0.01076,0.01036,0.01294,0,0,0,0,0,0,0.01184,0.00903,0.00885,0.01086,0,0,0,0,0,0,1.06585,1.87228,2.5264,3.37666,0,0,0,0,0,0,1.06133,1.8782,2.54837,3.39425,0,0,0,0,0,0,1.09386,2.0725,2.88372,3.91217,0,0,0,0,0,0,1.16667,2.21507,3.08998,4.16638,0,0,0,0,0,0,1.04316,2.06494,2.89829,3.88669,0,0,0,0,0,0,1.0728,2.10017,2.95575,3.98335,0,0,0,0,0,0,1.08737,2.13373,2.98394,3.98315,0,0,0,0,0,0,1.07203,2.03104,2.80168,3.74498,0,0,0,0,0,0,0.97714,1.82965,2.49076,3.28714,0,0,0,0,0,0,206.172,207.35138,209.28388,220.83232,0,0,0,0,0,0,207.8999,208.94056,210.67931,221.99325,0,0,0,0,0,0,210.77627,211.89723,213.75599,225.38035,0,0,0,0,0,0,206.03672,207.17221,209.05229,220.5159,0,0,0,0,0,0,211.59306,212.15653,213.22582,223.6341,0,0,0,0,0,0,208.8257,208.84306,210.10747,220.68251,0,0,0,0,0,0,210.09123,210.604,211.60344,221.84049,0,0,0,0,0,0,209.86266,210.63227,211.99093,222.78494,0,0,0,0,0,0,206.78067,207.43631,208.61466,218.98934,0,0,0,0,0,0,0.00283,0.00324,0.00385,0.00537,0,0,0,0,0,0,0.00283,0.00325,0.00385,0.00536,0,0,0,0,0,0,0.00288,0.00329,0.0039,0.00542,0,0,0,0,0,0,0.00277,0.00318,0.00378,0.00528,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.0054,0,0,0,0,0,0,0.00281,0.00321,0.00381,0.00531,0,0,0,0,0,0,0.00283,0.00324,0.00384,0.00536,0,0,0,0,0,0,0.00286,0.00327,0.00387,0.0054,0,0,0,0,0,0,0.00288,0.0033,0.00391,0.00545,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01352,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01351,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01344,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01346,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01349,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01352,0,0,0,0,0,0,0.00894,0.0104,0.01338,0.01355,0,0,0,0,0,0,0.06399,0.07869,0.11485,0.16359,0,0,0,0,0,0,0.06373,0.07766,0.11367,0.16186,0,0,0,0,0,0,0.06444,0.08526,0.12396,0.17958,0,0,0,0,0,0,0.06723,0.09016,0.13093,0.18936,0,0,0,0,0,0,0.05908,0.0795,0.11696,0.17082,0,0,0,0,0,0,0.06201,0.08307,0.1218,0.17721,0,0,0,0,0,0,0.06053,0.07996,0.11781,0.17092,0,0,0,0,0,0,0.06637,0.08557,0.12471,0.17928,0,0,0,0,0,0,0.06136,0.07675,0.11198,0.15963,0,0,0,0,0,0,0.00135,0.00221,0.00318,0.00524,0,0,0,0,0,0,0.00128,0.00209,0.00299,0.00485,0,0,0,0,0,0,0.00132,0.00217,0.00312,0.00514,0,0,0,0,0,0,0.00136,0.00224,0.00324,0.00539,0,0,0,0,0,0,0.0011,0.00178,0.00249,0.00382,0,0,0,0,0,0,0.00114,0.00184,0.00259,0.00403,0,0,0,0,0,0,0.00109,0.00177,0.00248,0.00378,0,0,0,0,0,0,0.00119,0.00194,0.00274,0.00433,0,0,0,0,0,0,0.00112,0.00181,0.00252,0.00384,0,0,0,0,0,0,0.02336,0.02527,0.0275,0.03234,0,0,0,0,0,0,0.02389,0.02567,0.02771,0.03204,0,0,0,0,0,0,0.02602,0.0279,0.03009,0.03483,0,0,0,0,0,0,0.02199,0.02395,0.02626,0.03137,0,0,0,0,0,0,0.02502,0.02645,0.02801,0.03098,0,0,0,0,0,0,0.02307,0.02446,0.02612,0.02939,0,0,0,0,0,0,0.02297,0.02439,0.02592,0.02882,0,0,0,0,0,0,0.02425,0.02586,0.02765,0.03129,0,0,0,0,0,0,0.02395,0.02539,0.02694,0.02986,0,0,0,0,0,0,0.00526,0.00695,0.00892,0.0132,0,0,0,0,0,0,0.00519,0.00677,0.00857,0.0124,0,0,0,0,0,0,0.00555,0.00722,0.00915,0.01334,0,0,0,0,0,0,0.00513,0.00686,0.0089,0.01342,0,0,0,0,0,0,0.00498,0.00624,0.00762,0.01025,0,0,0,0,0,0,0.00482,0.00611,0.00758,0.01048,0,0,0,0,0,0,0.00471,0.00596,0.00732,0.00988,0,0,0,0,0,0,0.00506,0.00648,0.00807,0.01129,0,0,0,0,0,0,0.00486,0.00614,0.00751,0.01009,0,0,0,0,0,0,0.00595,0.002,0.00201,0.00213,0,0,0,0,0,0,0.006,0.00201,0.00203,0.00214,0,0,0,0,0,0,0.00609,0.00204,0.00206,0.00217,0,0,0,0,0,0,0.00595,0.00199,0.00201,0.00212,0,0,0,0,0,0,0.00611,0.00204,0.00205,0.00215,0,0,0,0,0,0,0.00603,0.00201,0.00202,0.00212,0,0,0,0,0,0,0.00607,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00606,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00597,0.002,0.00201,0.00211,0,0,0,0,0,0,0.04424,0.06581,0.10044,0.14844,0,0,0,0,0,0,0.03937,0.06001,0.09344,0.13789,0,0,0,0,0,0,0.04392,0.07025,0.10941,0.16373,0,0,0,0,0,0,0.0477,0.07595,0.1177,0.17568,0,0,0,0,0,0,0.02657,0.0497,0.08413,0.12553,0,0,0,0,0,0,0.03069,0.05425,0.09041,0.13525,0,0,0,0,0,0,0.02571,0.04828,0.08234,0.12249,0,0,0,0,0,0,0.03299,0.05606,0.09077,0.13473,0,0,0,0,0,0,0.02537,0.04518,0.07533,0.11005,0,0,0,0 +Minivan,PH40E,2020,0,0,0,0.02102,0.02144,0.02186,0.02328,0,0,0,0,0,0,0.02167,0.02204,0.02242,0.02367,0,0,0,0,0,0,0.02372,0.02413,0.02454,0.02594,0,0,0,0,0,0,0.01963,0.02006,0.02051,0.02202,0,0,0,0,0,0,0.02313,0.02339,0.02364,0.02444,0,0,0,0,0,0,0.02101,0.0213,0.02157,0.02248,0,0,0,0,0,0,0.02109,0.02134,0.02158,0.02236,0,0,0,0,0,0,0.02219,0.02251,0.02282,0.02385,0,0,0,0,0,0,0.02203,0.02228,0.02252,0.0233,0,0,0,0,0,0,0.01354,0.0098,0.00833,0.01062,0,0,0,0,0,0,0.01217,0.00901,0.00778,0.00999,0,0,0,0,0,0,0.01345,0.01051,0.00909,0.01202,0,0,0,0,0,0,0.0146,0.01144,0.00987,0.01298,0,0,0,0,0,0,0.00842,0.00765,0.00705,0.00961,0,0,0,0,0,0,0.00942,0.00837,0.00763,0.01038,0,0,0,0,0,0,0.00823,0.00753,0.00699,0.00949,0,0,0,0,0,0,0.01032,0.00854,0.0076,0.01008,0,0,0,0,0,0,0.00806,0.00694,0.0063,0.00827,0,0,0,0,0,0,0.841,1.26915,1.60175,2.45808,0,0,0,0,0,0,0.83235,1.26237,1.59891,2.46352,0,0,0,0,0,0,0.86647,1.39384,1.80633,2.90832,0,0,0,0,0,0,0.92767,1.49841,1.95027,3.11915,0,0,0,0,0,0,0.80832,1.3525,1.762,2.85111,0,0,0,0,0,0,0.8267,1.38518,1.81173,2.94929,0,0,0,0,0,0,0.83997,1.39856,1.8175,2.92159,0,0,0,0,0,0,0.83593,1.34562,1.72839,2.74289,0,0,0,0,0,0,0.75335,1.20003,1.5207,2.36432,0,0,0,0,0,0,175.01937,176.18597,178.13058,193.50908,0,0,0,0,0,0,176.41093,177.4624,179.2388,194.39966,0,0,0,0,0,0,178.88919,180.01108,181.89672,197.42854,0,0,0,0,0,0,174.89643,176.02686,177.9263,193.21809,0,0,0,0,0,0,179.2922,179.94667,181.1386,195.41197,0,0,0,0,0,0,176.44505,177.21392,178.57379,192.96723,0,0,0,0,0,0,178.0014,178.61222,179.74153,193.81421,0,0,0,0,0,0,177.93342,178.75948,180.20369,194.85283,0,0,0,0,0,0,175.24562,175.97234,177.25203,191.40792,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00507,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00506,0,0,0,0,0,0,0.00294,0.00332,0.0039,0.00512,0,0,0,0,0,0,0.00283,0.00321,0.00378,0.00498,0,0,0,0,0,0,0.00293,0.0033,0.00388,0.0051,0,0,0,0,0,0,0.00286,0.00324,0.00381,0.00501,0,0,0,0,0,0,0.00289,0.00327,0.00384,0.00506,0,0,0,0,0,0,0.00292,0.00329,0.00387,0.00509,0,0,0,0,0,0,0.00294,0.00332,0.00391,0.00514,0,0,0,0,0,0,0.0089,0.01036,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01335,0,0,0,0,0,0,0.00893,0.0104,0.01337,0.01337,0,0,0,0,0,0,0.04184,0.06745,0.09067,0.12611,0,0,0,0,0,0,0.04131,0.06645,0.0895,0.12453,0,0,0,0,0,0,0.04219,0.07277,0.09732,0.13872,0,0,0,0,0,0,0.04399,0.07733,0.10334,0.14733,0,0,0,0,0,0,0.03732,0.06705,0.09046,0.13008,0,0,0,0,0,0,0.03946,0.07054,0.09495,0.13604,0,0,0,0,0,0,0.03808,0.06768,0.09146,0.13044,0,0,0,0,0,0,0.04216,0.07285,0.09759,0.13761,0,0,0,0,0,0,0.03836,0.06487,0.08696,0.12108,0,0,0,0,0,0,0.00116,0.00187,0.00248,0.00444,0,0,0,0,0,0,0.0011,0.00178,0.00234,0.00414,0,0,0,0,0,0,0.00114,0.00184,0.00244,0.00437,0,0,0,0,0,0,0.00117,0.00189,0.00252,0.00456,0,0,0,0,0,0,0.00096,0.00152,0.00196,0.00332,0,0,0,0,0,0,0.00098,0.00157,0.00204,0.00349,0,0,0,0,0,0,0.00096,0.00152,0.00195,0.00329,0,0,0,0,0,0,0.00103,0.00165,0.00215,0.00373,0,0,0,0,0,0,0.00098,0.00155,0.00199,0.00334,0,0,0,0,0,0,0.02292,0.02452,0.02594,0.03056,0,0,0,0,0,0,0.02349,0.02497,0.02628,0.03047,0,0,0,0,0,0,0.0256,0.02716,0.02856,0.0331,0,0,0,0,0,0,0.02154,0.02317,0.02464,0.02948,0,0,0,0,0,0,0.02471,0.02591,0.02689,0.02992,0,0,0,0,0,0,0.02263,0.02388,0.02493,0.02822,0,0,0,0,0,0,0.02267,0.02386,0.02482,0.02778,0,0,0,0,0,0,0.0239,0.02524,0.02638,0.02998,0,0,0,0,0,0,0.02364,0.02485,0.02582,0.02881,0,0,0,0,0,0,0.00487,0.00628,0.00754,0.01162,0,0,0,0,0,0,0.00484,0.00615,0.0073,0.01101,0,0,0,0,0,0,0.00517,0.00656,0.00779,0.01181,0,0,0,0,0,0,0.00472,0.00617,0.00747,0.01175,0,0,0,0,0,0,0.00471,0.00576,0.00663,0.00931,0,0,0,0,0,0,0.0045,0.00561,0.00654,0.00945,0,0,0,0,0,0,0.00444,0.00549,0.00634,0.00896,0,0,0,0,0,0,0.00475,0.00593,0.00694,0.01013,0,0,0,0,0,0,0.00459,0.00566,0.00652,0.00916,0,0,0,0,0,0,0.00168,0.0017,0.00171,0.00186,0,0,0,0,0,0,0.0017,0.00171,0.00173,0.00187,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.0019,0,0,0,0,0,0,0.00168,0.00169,0.00171,0.00186,0,0,0,0,0,0,0.00173,0.00173,0.00174,0.00188,0,0,0,0,0,0,0.0017,0.00171,0.00172,0.00186,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00187,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00188,0,0,0,0,0,0,0.00169,0.00169,0.00171,0.00184,0,0,0,0,0,0,0.03737,0.05506,0.07767,0.12087,0,0,0,0,0,0,0.03293,0.04958,0.071,0.11162,0,0,0,0,0,0,0.03715,0.05806,0.08319,0.13463,0,0,0,0,0,0,0.04049,0.06309,0.0901,0.1451,0,0,0,0,0,0,0.02104,0.03831,0.05887,0.10052,0,0,0,0,0,0,0.02414,0.04264,0.06457,0.1094,0,0,0,0,0,0,0.02018,0.03708,0.05735,0.09782,0,0,0,0,0,0,0.02698,0.04475,0.06615,0.10872,0,0,0,0,0,0,0.01982,0.03467,0.05259,0.08655,0,0,0 +Minivan,PH40E,2025,0,0,0,0,0.02081,0.02106,0.02132,0.02249,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02297,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02517,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02118,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02398,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02196,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02191,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02327,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02285,0,0,0,0,0,0,0.0109,0.00714,0.00577,0.00809,0,0,0,0,0,0,0.00949,0.00634,0.0052,0.00746,0,0,0,0,0,0,0.01077,0.00744,0.00611,0.00905,0,0,0,0,0,0,0.01185,0.00818,0.00669,0.00983,0,0,0,0,0,0,0.00562,0.00454,0.00403,0.00667,0,0,0,0,0,0,0.00663,0.00518,0.00452,0.00734,0,0,0,0,0,0,0.00538,0.00439,0.00393,0.00653,0,0,0,0,0,0,0.00754,0.00552,0.00469,0.00725,0,0,0,0,0,0,0.00526,0.00408,0.00358,0.00568,0,0,0,0,0,0,0.55924,0.81728,1.03671,1.73986,0,0,0,0,0,0,0.54005,0.79705,1.0158,1.72514,0,0,0,0,0,0,0.56885,0.88349,1.14951,2.05204,0,0,0,0,0,0,0.61468,0.95801,1.25055,2.21497,0,0,0,0,0,0,0.48459,0.80212,1.05558,1.94563,0,0,0,0,0,0,0.50553,0.83376,1.09982,2.03116,0,0,0,0,0,0,0.5012,0.82787,1.08717,1.99163,0,0,0,0,0,0,0.52057,0.82155,1.0634,1.89499,0,0,0,0,0,0,0.45222,0.71367,0.91346,1.60498,0,0,0,0,0,0,143.04079,143.7338,145.1575,163.6042,0,0,0,0,0,0,144.10797,144.70004,145.97166,164.23295,0,0,0,0,0,0,146.16792,146.81604,148.18102,166.85421,0,0,0,0,0,0,142.93307,143.59624,144.98185,163.34548,0,0,0,0,0,0,146.22769,146.47435,147.22027,164.67183,0,0,0,0,0,0,143.97903,144.32899,145.22989,162.74385,0,0,0,0,0,0,145.158,145.36996,146.06327,163.29545,0,0,0,0,0,0,145.21935,145.6155,146.58866,164.38042,0,0,0,0,0,0,142.95575,143.26983,144.09837,161.34947,0,0,0,0,0,0,0.00291,0.00327,0.00384,0.00502,0,0,0,0,0,0,0.00291,0.00327,0.00383,0.00501,0,0,0,0,0,0,0.00296,0.00332,0.00388,0.00506,0,0,0,0,0,0,0.00285,0.0032,0.00377,0.00493,0,0,0,0,0,0,0.00295,0.0033,0.00387,0.00504,0,0,0,0,0,0,0.00288,0.00324,0.0038,0.00496,0,0,0,0,0,0,0.00291,0.00326,0.00383,0.00501,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00504,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00509,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.0103,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01031,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01335,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0259,0.03877,0.05185,0.08807,0,0,0,0,0,0,0.02519,0.03773,0.05061,0.08644,0,0,0,0,0,0,0.02591,0.04107,0.05476,0.09685,0,0,0,0,0,0,0.02708,0.04363,0.05811,0.10311,0,0,0,0,0,0,0.02134,0.03579,0.04841,0.08845,0,0,0,0,0,0,0.02312,0.03833,0.05162,0.09337,0,0,0,0,0,0,0.02175,0.03618,0.04899,0.08861,0,0,0,0,0,0,0.02467,0.03969,0.05316,0.09423,0,0,0,0,0,0,0.02178,0.0347,0.04665,0.08168,0,0,0,0.00947,0.0134,0,0.00074,0.00117,0.00155,0.0032,0,0,0,0.00828,0.01168,0,0.00071,0.00111,0.00146,0.00299,0,0,0,0.00897,0.01273,0,0.00073,0.00115,0.00152,0.00315,0,0,0,0.00981,0.01396,0,0.00075,0.00119,0.00158,0.00329,0,0,0,0.00496,0.00694,0,0.00061,0.00095,0.00123,0.0024,0,0,0,0.00571,0.00831,0,0.00063,0.00098,0.00127,0.00252,0,0,0,0.00488,0.0068,0,0.00061,0.00095,0.00122,0.00238,0,0,0,0.00658,0.00926,0,0.00066,0.00103,0.00135,0.00269,0,0,0,0.005,0.00696,0,0.00063,0.00097,0.00125,0.00241,0,0,0,0.04066,0.04951,0,0.02203,0.02299,0.02386,0.02774,0,0,0,0.03875,0.04638,0,0.02264,0.02353,0.02434,0.02787,0,0,0,0.04238,0.05085,0,0.02472,0.02566,0.02652,0.03033,0,0,0,0.04011,0.04949,0,0.02063,0.02161,0.02252,0.02655,0,0,0,0.03316,0.0375,0,0.024,0.02472,0.02533,0.02794,0,0,0,0.03263,0.03849,0,0.02189,0.02265,0.0233,0.02611,0,0,0,0.0309,0.0351,0,0.02196,0.02268,0.02327,0.02583,0,0,0,0.03567,0.04162,0,0.02312,0.02392,0.02463,0.02769,0,0,0,0.03207,0.03634,0,0.02292,0.02365,0.02425,0.02683,0,0,0,0.02056,0.02839,0,0.00408,0.00493,0.0057,0.00913,0,0,0,0.01834,0.02509,0,0.00409,0.00488,0.00559,0.00872,0,0,0,0.02002,0.02752,0,0.0044,0.00523,0.00599,0.00936,0,0,0,0.02115,0.02945,0,0.00392,0.00479,0.00559,0.00916,0,0,0,0.01218,0.01602,0,0.00408,0.00471,0.00525,0.00756,0,0,0,0.01334,0.01846,0,0.00385,0.00451,0.00509,0.00758,0,0,0,0.01172,0.01544,0,0.00382,0.00445,0.00497,0.00724,0,0,0,0.01516,0.02042,0,0.00406,0.00477,0.00539,0.00811,0,0,0,0.01205,0.01582,0,0.00395,0.00459,0.00513,0.00741,0,0,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00139,0.00139,0.00141,0.00158,0,0,0,0,0,0,0.00141,0.00141,0.00143,0.00161,0,0,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00141,0.00141,0.00142,0.00159,0,0,0,0,0,0,0.00139,0.00139,0.0014,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00158,0,0,0,0,0,0,0.00138,0.00138,0.00139,0.00155,0,0,0,0,0,0,0.03194,0.0431,0.05818,0.0959,0,0,0,0,0,0,0.0274,0.03758,0.05144,0.08685,0,0,0,0,0,0,0.0315,0.04421,0.06051,0.10527,0,0,0,0,0,0,0.03483,0.04869,0.06637,0.11434,0,0,0,0,0,0,0.01507,0.02431,0.03602,0.07183,0,0,0,0,0,0,0.01823,0.02838,0.04122,0.07993,0,0,0,0,0,0,0.01419,0.02313,0.03456,0.06937,0,0,0,0,0,0,0.02115,0.03124,0.0442,0.08108,0,0,0,0,0,0,0.0139,0.02181,0.03201,0.06128,0,0 +Minivan,PH40E,2030,0,0,0,0,0,0.02081,0.02106,0.02132,0.02205,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02258,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02473,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02072,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02372,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02168,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02166,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02294,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.0226,0,0,0,0,0,0,0.01013,0.00639,0.00509,0.00653,0,0,0,0,0,0,0.00871,0.00559,0.00452,0.00589,0,0,0,0,0,0,0.00997,0.00657,0.00532,0.00709,0,0,0,0,0,0,0.01103,0.00725,0.00585,0.00775,0,0,0,0,0,0,0.00482,0.00367,0.00325,0.00471,0,0,0,0,0,0,0.00581,0.00428,0.0037,0.0053,0,0,0,0,0,0,0.00456,0.00351,0.00314,0.00458,0,0,0,0,0,0,0.00674,0.00468,0.00393,0.00541,0,0,0,0,0,0,0.00446,0.00329,0.00288,0.00404,0,0,0,0,0,0,0.48616,0.71062,0.90973,1.34019,0,0,0,0,0,0,0.46446,0.68746,0.88496,1.31216,0,0,0,0,0,0,0.49149,0.76317,1.00253,1.54473,0,0,0,0,0,0,0.5329,0.8299,1.0933,1.67533,0,0,0,0,0,0,0.40116,0.67308,0.89775,1.40885,0,0,0,0,0,0,0.42241,0.70399,0.9404,1.48085,0,0,0,0,0,0,0.41389,0.69378,0.92356,1.44225,0,0,0,0,0,0,0.439,0.69848,0.91445,1.40145,0,0,0,0,0,0,0.37472,0.59978,0.77734,1.17461,0,0,0,0,0,0,130.18226,131.40941,133.46247,144.89139,0,0,0,0,0,0,131.12337,132.26249,134.17499,145.37962,0,0,0,0,0,0,133.01295,134.21195,136.22441,147.73491,0,0,0,0,0,0,130.08158,131.28127,133.29867,144.65658,0,0,0,0,0,0,132.95067,133.78245,135.20198,145.53711,0,0,0,0,0,0,130.93814,131.85527,133.41251,143.90688,0,0,0,0,0,0,131.97094,132.76672,134.13123,144.30442,0,0,0,0,0,0,132.07723,133.04163,134.67384,145.3795,0,0,0,0,0,0,129.98753,130.86696,132.34773,142.62728,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00503,0,0,0,0,0,0,0.00285,0.00319,0.00376,0.0049,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00288,0.00322,0.00379,0.00493,0,0,0,0,0,0,0.0029,0.00325,0.00382,0.00498,0,0,0,0,0,0,0.00293,0.00328,0.00385,0.00501,0,0,0,0,0,0,0.00295,0.0033,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01029,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01034,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.0103,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01033,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01038,0.01337,0.01337,0,0,0,0,0,0,0.02052,0.02997,0.04132,0.06464,0,0,0,0,0,0,0.01975,0.02892,0.04005,0.06296,0,0,0,0,0,0,0.02032,0.03135,0.04323,0.06991,0,0,0,0,0,0,0.0212,0.03323,0.0458,0.07428,0,0,0,0,0,0,0.01587,0.02623,0.03704,0.06165,0,0,0,0,0,0,0.0175,0.02844,0.03986,0.06576,0,0,0,0,0,0,0.01619,0.02651,0.03747,0.06185,0,0,0,0,0,0,0.01868,0.0295,0.04108,0.06666,0,0,0,0,0,0,0.01618,0.02549,0.0357,0.05734,0,0,0.0041,0.0056,0.00914,0,0.00074,0.00117,0.00155,0.00255,0,0,0.00366,0.005,0.00809,0,0.00071,0.00111,0.00146,0.00238,0,0,0.00395,0.00541,0.0088,0,0.00073,0.00115,0.00152,0.0025,0,0,0.00422,0.00579,0.00952,0,0.00075,0.00118,0.00157,0.00261,0,0,0.00245,0.00334,0.00519,0,0.00061,0.00095,0.00123,0.00192,0,0,0.00271,0.0038,0.00583,0,0.00063,0.00098,0.00127,0.00202,0,0,0.00241,0.00328,0.00508,0,0.00061,0.00095,0.00122,0.00191,0,0,0.00304,0.00415,0.00661,0,0.00066,0.00103,0.00135,0.00215,0,0,0.00247,0.00336,0.00519,0,0.00063,0.00097,0.00125,0.00194,0,0,0.02917,0.03256,0.04053,0,0.02203,0.02298,0.02386,0.02622,0,0,0.0289,0.03189,0.0388,0,0.02264,0.02353,0.02434,0.02649,0,0,0.03158,0.03488,0.04254,0,0.02471,0.02565,0.02652,0.02884,0,0,0.02806,0.03163,0.04008,0,0.02063,0.0216,0.02252,0.02498,0,0,0.02784,0.02978,0.03383,0,0.024,0.02472,0.02533,0.02689,0,0,0.02625,0.02876,0.03312,0,0.02189,0.02264,0.0233,0.02499,0,0,0.0257,0.02759,0.03151,0,0.02196,0.02267,0.02327,0.02481,0,0,0.02813,0.03059,0.03603,0,0.02311,0.02392,0.02463,0.02648,0,0,0.02675,0.02867,0.03264,0,0.02292,0.02364,0.02425,0.02579,0,0,0.01039,0.01339,0.02044,0,0.00407,0.00492,0.0057,0.00779,0,0,0.00962,0.01227,0.01838,0,0.00408,0.00487,0.00559,0.00749,0,0,0.01047,0.01339,0.02016,0,0.00439,0.00522,0.00599,0.00804,0,0,0.01049,0.01365,0.02112,0,0.00392,0.00478,0.00559,0.00777,0,0,0.00747,0.00919,0.01277,0,0.00407,0.00471,0.00525,0.00663,0,0,0.0077,0.00984,0.01378,0,0.00384,0.00451,0.00509,0.00659,0,0,0.00712,0.00879,0.01226,0,0.00381,0.00444,0.00497,0.00633,0,0,0.00849,0.01067,0.01548,0,0.00405,0.00476,0.00539,0.00703,0,0,0.00733,0.00903,0.01255,0,0.00395,0.00459,0.00513,0.00649,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.0014,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00142,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.0014,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.0014,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00137,0,0,0,0,0,0,0.03011,0.03952,0.05312,0.08021,0,0,0,0,0,0,0.02556,0.03403,0.04637,0.07114,0,0,0,0,0,0,0.02958,0.04009,0.05463,0.08552,0,0,0,0,0,0,0.03287,0.04438,0.06021,0.0936,0,0,0,0,0,0,0.01318,0.0203,0.03018,0.05228,0,0,0,0,0,0,0.01633,0.02426,0.03523,0.05969,0,0,0,0,0,0,0.0123,0.01914,0.02873,0.05007,0,0,0,0,0,0,0.01925,0.02731,0.03856,0.06265,0,0,0,0,0,0,0.01204,0.01814,0.02675,0.04491,0 +Minivan,PH40E,2035,0,0,0,0,0,0,0.02081,0.02106,0.02132,0.02191,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02246,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.0246,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02057,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02364,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02158,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02158,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02284,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02252,0,0,0,0,0,0,0.01008,0.00638,0.0051,0.00601,0,0,0,0,0,0,0.00866,0.00558,0.00453,0.00537,0,0,0,0,0,0,0.00991,0.00656,0.00533,0.00642,0,0,0,0,0,0,0.01097,0.00724,0.00586,0.00703,0,0,0,0,0,0,0.00479,0.00367,0.00325,0.00403,0,0,0,0,0,0,0.00578,0.00428,0.00371,0.00458,0,0,0,0,0,0,0.00454,0.00351,0.00314,0.0039,0,0,0,0,0,0,0.0067,0.00468,0.00394,0.00477,0,0,0,0,0,0,0.00444,0.00329,0.00288,0.00348,0,0,0,0,0,0,0.48635,0.71119,0.9101,1.21773,0,0,0,0,0,0,0.4648,0.68804,0.88528,1.18494,0,0,0,0,0,0,0.49191,0.76389,1.00291,1.38489,0,0,0,0,0,0,0.53336,0.83068,1.0937,1.50454,0,0,0,0,0,0,0.40203,0.67378,0.89797,1.23806,0,0,0,0,0,0,0.42324,0.70472,0.94064,1.30526,0,0,0,0,0,0,0.41481,0.69448,0.92376,1.26748,0,0,0,0,0,0,0.43968,0.6991,0.91471,1.24605,0,0,0,0,0,0,0.37542,0.60029,0.77754,1.04003,0,0,0,0,0,0,130.15524,131.41438,133.47282,138.98054,0,0,0,0,0,0,131.09791,132.26712,134.18438,139.42462,0,0,0,0,0,0,132.9862,134.21683,136.23435,141.69584,0,0,0,0,0,0,130.05463,131.28609,133.30856,138.75323,0,0,0,0,0,0,132.93095,133.7857,135.2087,139.49445,0,0,0,0,0,0,130.91686,131.85882,133.42,137.95791,0,0,0,0,0,0,131.95186,132.76976,134.13747,138.30722,0,0,0,0,0,0,132.05505,133.04541,134.68169,139.37858,0,0,0,0,0,0,129.96789,130.87053,132.35502,136.71497,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.0029,0.00326,0.00383,0.00499,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00504,0,0,0,0,0,0,0.00284,0.00319,0.00376,0.00491,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00287,0.00322,0.00379,0.00494,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00292,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0205,0.03003,0.04134,0.05657,0,0,0,0,0,0,0.01974,0.02898,0.04007,0.05486,0,0,0,0,0,0,0.02031,0.03142,0.04325,0.06041,0,0,0,0,0,0,0.0212,0.03331,0.04583,0.06404,0,0,0,0,0,0,0.01588,0.0263,0.03706,0.05218,0,0,0,0,0,0,0.0175,0.02851,0.03988,0.05597,0,0,0,0,0,0,0.01619,0.02658,0.03749,0.05242,0,0,0,0,0,0,0.01868,0.02957,0.0411,0.05697,0,0,0,0,0,0,0.01618,0.02555,0.03572,0.0489,0,0.00141,0.0025,0.00348,0.00666,0,0.00074,0.00117,0.00155,0.00234,0,0.00132,0.00232,0.00322,0.00602,0,0.00071,0.00111,0.00146,0.00219,0,0.00138,0.00245,0.00341,0.00649,0,0.00073,0.00115,0.00152,0.0023,0,0.00144,0.00257,0.0036,0.00694,0,0.00075,0.00118,0.00157,0.0024,0,0.00109,0.00188,0.00255,0.00432,0,0.00061,0.00095,0.00123,0.00177,0,0.00113,0.00199,0.00268,0.00468,0,0.00063,0.00098,0.00127,0.00186,0,0.00108,0.00187,0.00253,0.00424,0,0.00061,0.00095,0.00122,0.00176,0,0.0012,0.0021,0.00288,0.00515,0,0.00066,0.00103,0.00135,0.00198,0,0.0011,0.0019,0.00257,0.00431,0,0.00063,0.00097,0.00125,0.00178,0,0.02354,0.02602,0.02829,0.03557,0,0.02203,0.02298,0.02386,0.02575,0,0.02401,0.02626,0.02831,0.03467,0,0.02264,0.02353,0.02434,0.02605,0,0.0262,0.02862,0.03086,0.03791,0,0.02472,0.02565,0.02652,0.02837,0,0.02222,0.02481,0.02721,0.03492,0,0.02063,0.02161,0.02252,0.02449,0,0.02501,0.02671,0.02818,0.03209,0,0.024,0.02472,0.02533,0.02656,0,0.02297,0.02495,0.02637,0.03083,0,0.02189,0.02264,0.0233,0.02464,0,0.02295,0.02463,0.02606,0.02984,0,0.02196,0.02267,0.02327,0.02448,0,0.0243,0.02628,0.02803,0.03313,0,0.02312,0.02392,0.02463,0.0261,0,0.02393,0.02563,0.02707,0.0309,0,0.02292,0.02364,0.02425,0.02546,0,0.00541,0.0076,0.00962,0.01606,0,0.00408,0.00492,0.0057,0.00737,0,0.00529,0.00729,0.0091,0.01473,0,0.00409,0.00487,0.00559,0.0071,0,0.0057,0.00785,0.00983,0.01607,0,0.0044,0.00522,0.00599,0.00763,0,0.00533,0.00761,0.00974,0.01656,0,0.00392,0.00478,0.00559,0.00733,0,0.00497,0.00648,0.00777,0.01123,0,0.00408,0.00471,0.00525,0.00634,0,0.0048,0.00648,0.00781,0.01175,0,0.00384,0.00451,0.00509,0.00628,0,0.00469,0.00617,0.00743,0.01078,0,0.00381,0.00444,0.00497,0.00604,0,0.0051,0.00685,0.0084,0.01292,0,0.00406,0.00477,0.00539,0.00669,0,0.00484,0.00635,0.00762,0.01101,0,0.00395,0.00459,0.00513,0.0062,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00136,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.00134,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00132,0,0,0,0,0,0,0.03003,0.03957,0.05316,0.0751,0,0,0,0,0,0,0.0255,0.03408,0.04641,0.06597,0,0,0,0,0,0,0.02951,0.04015,0.05468,0.07883,0,0,0,0,0,0,0.0328,0.04444,0.06026,0.08659,0,0,0,0,0,0,0.01316,0.02034,0.0302,0.0455,0,0,0,0,0,0,0.0163,0.02431,0.03526,0.05266,0,0,0,0,0,0,0.01228,0.01918,0.02875,0.04337,0,0,0,0,0,0,0.01921,0.02736,0.03859,0.05637,0,0,0,0,0,0,0.01202,0.01818,0.02677,0.03936 +Minivan,PH40E,2040,0,0,0,0,0,0,0,0.02081,0.02106,0.02132,0,0,0,0,0,0,0,0.02148,0.0217,0.02193,0,0,0,0,0,0,0,0.02351,0.02376,0.02401,0,0,0,0,0,0,0,0.01941,0.01967,0.01994,0,0,0,0,0,0,0,0.02299,0.02314,0.0233,0,0,0,0,0,0,0,0.02085,0.02103,0.0212,0,0,0,0,0,0,0,0.02095,0.0211,0.02125,0,0,0,0,0,0,0,0.02203,0.02222,0.02241,0,0,0,0,0,0,0,0.02189,0.02204,0.02219,0,0,0,0,0,0,0,0.01008,0.00638,0.00509,0,0,0,0,0,0,0,0.00867,0.00558,0.00452,0,0,0,0,0,0,0,0.00992,0.00656,0.00532,0,0,0,0,0,0,0,0.01097,0.00724,0.00585,0,0,0,0,0,0,0,0.0048,0.00367,0.00325,0,0,0,0,0,0,0,0.00579,0.00427,0.00371,0,0,0,0,0,0,0,0.00454,0.00351,0.00314,0,0,0,0,0,0,0,0.0067,0.00468,0.00393,0,0,0,0,0,0,0,0.00444,0.00329,0.00288,0,0,0,0,0,0,0,0.48567,0.7107,0.90987,0,0,0,0,0,0,0,0.46413,0.68757,0.88508,0,0,0,0,0,0,0,0.49113,0.76333,1.00267,0,0,0,0,0,0,0,0.5325,0.83008,1.09344,0,0,0,0,0,0,0,0.40132,0.67334,0.89783,0,0,0,0,0,0,0,0.42249,0.70424,0.94049,0,0,0,0,0,0,0,0.41409,0.69404,0.92363,0,0,0,0,0,0,0,0.43896,0.69866,0.91454,0,0,0,0,0,0,0,0.37481,0.59994,0.77741,0,0,0,0,0,0,0,130.14799,131.40506,133.46637,0,0,0,0,0,0,0,131.09118,132.25839,134.1785,0,0,0,0,0,0,0,132.97906,134.20762,136.22808,0,0,0,0,0,0,0,130.0475,131.27681,133.30227,0,0,0,0,0,0,0,132.92599,133.77917,135.20433,0,0,0,0,0,0,0,130.91139,131.85169,133.4153,0,0,0,0,0,0,0,131.94702,132.76349,134.13355,0,0,0,0,0,0,0,132.04928,133.03794,134.67679,0,0,0,0,0,0,0,129.96268,130.86377,132.3506,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.00295,0.0033,0.00388,0,0,0,0,0,0,0,0.00284,0.00319,0.00376,0,0,0,0,0,0,0,0.00293,0.00329,0.00386,0,0,0,0,0,0,0,0.00287,0.00322,0.00379,0,0,0,0,0,0,0,0.00289,0.00325,0.00382,0,0,0,0,0,0,0,0.00292,0.00328,0.00386,0,0,0,0,0,0,0,0.00294,0.0033,0.00389,0,0,0,0,0,0,0,0.0089,0.01035,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00891,0.01035,0.01334,0,0,0,0,0,0,0,0.00886,0.0103,0.01327,0,0,0,0,0,0,0,0.0089,0.01035,0.01333,0,0,0,0,0,0,0,0.00887,0.01031,0.01328,0,0,0,0,0,0,0,0.0089,0.01034,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00893,0.01038,0.01337,0,0,0,0,0,0,0,0.02048,0.02999,0.04132,0,0,0,0,0,0,0,0.01971,0.02894,0.04006,0,0,0,0,0,0,0,0.02029,0.03137,0.04324,0,0,0,0,0,0,0,0.02117,0.03326,0.04581,0,0,0,0,0,0,0,0.01585,0.02626,0.03705,0,0,0,0,0,0,0,0.01748,0.02847,0.03986,0,0,0,0,0,0,0,0.01617,0.02654,0.03748,0,0,0,0,0,0,0,0.01866,0.02953,0.04108,0,0,0,0,0,0,0,0.01616,0.02551,0.03571,0,0,0.00135,0.00221,0.00318,0.00524,0,0.00074,0.00117,0.00155,0,0,0.00128,0.00209,0.00299,0.00485,0,0.00071,0.00111,0.00146,0,0,0.00132,0.00217,0.00312,0.00514,0,0.00073,0.00115,0.00152,0,0,0.00136,0.00224,0.00324,0.00539,0,0.00075,0.00118,0.00157,0,0,0.0011,0.00178,0.00249,0.00382,0,0.00061,0.00095,0.00123,0,0,0.00114,0.00184,0.00259,0.00403,0,0.00063,0.00098,0.00127,0,0,0.00109,0.00177,0.00248,0.00378,0,0.00061,0.00095,0.00122,0,0,0.00119,0.00194,0.00274,0.00433,0,0.00066,0.00103,0.00135,0,0,0.00112,0.00181,0.00252,0.00384,0,0.00063,0.00097,0.00125,0,0,0.02336,0.02527,0.0275,0.03234,0,0.02203,0.02298,0.02386,0,0,0.02389,0.02567,0.02771,0.03204,0,0.02264,0.02353,0.02434,0,0,0.02602,0.0279,0.03009,0.03483,0,0.02471,0.02565,0.02652,0,0,0.02199,0.02395,0.02626,0.03137,0,0.02063,0.0216,0.02252,0,0,0.02502,0.02645,0.02801,0.03098,0,0.024,0.02472,0.02533,0,0,0.02307,0.02446,0.02612,0.02939,0,0.02189,0.02264,0.0233,0,0,0.02297,0.02439,0.02592,0.02882,0,0.02196,0.02267,0.02327,0,0,0.02425,0.02586,0.02765,0.03129,0,0.02311,0.02392,0.02463,0,0,0.02395,0.02539,0.02694,0.02986,0,0.02292,0.02364,0.02425,0,0,0.00526,0.00695,0.00892,0.0132,0,0.00407,0.00492,0.0057,0,0,0.00519,0.00677,0.00857,0.0124,0,0.00408,0.00487,0.00559,0,0,0.00555,0.00722,0.00915,0.01334,0,0.00439,0.00522,0.00599,0,0,0.00513,0.00686,0.0089,0.01342,0,0.00392,0.00478,0.00559,0,0,0.00498,0.00624,0.00762,0.01025,0,0.00408,0.00471,0.00525,0,0,0.00482,0.00611,0.00758,0.01048,0,0.00384,0.00451,0.00509,0,0,0.00471,0.00596,0.00732,0.00988,0,0.00381,0.00444,0.00497,0,0,0.00506,0.00648,0.00807,0.01129,0,0.00405,0.00477,0.00539,0,0,0.00486,0.00614,0.00751,0.01009,0,0.00395,0.00459,0.00513,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00126,0.00127,0.00129,0,0,0,0,0,0,0,0.00128,0.00129,0.00131,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00128,0.00129,0.0013,0,0,0,0,0,0,0,0.00126,0.00127,0.00128,0,0,0,0,0,0,0,0.00127,0.00128,0.00129,0,0,0,0,0,0,0,0.00127,0.00128,0.0013,0,0,0,0,0,0,0,0.00125,0.00126,0.00127,0,0,0,0,0,0,0,0.03,0.03952,0.05314,0,0,0,0,0,0,0,0.02547,0.03403,0.04639,0,0,0,0,0,0,0,0.02948,0.0401,0.05465,0,0,0,0,0,0,0,0.03276,0.04438,0.06023,0,0,0,0,0,0,0,0.01314,0.02031,0.03019,0,0,0,0,0,0,0,0.01627,0.02427,0.03524,0,0,0,0,0,0,0,0.01226,0.01915,0.02874,0,0,0,0,0,0,0,0.01919,0.02732,0.03857,0,0,0,0,0,0,0,0.012,0.01815,0.02676 +Minivan,PH40E,2045,0,0,0,0,0,0,0,0,0.02081,0.02106,0,0,0,0,0,0,0,0,0.02148,0.0217,0,0,0,0,0,0,0,0,0.02351,0.02376,0,0,0,0,0,0,0,0,0.01941,0.01966,0,0,0,0,0,0,0,0,0.02299,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02103,0,0,0,0,0,0,0,0,0.02095,0.0211,0,0,0,0,0,0,0,0,0.02203,0.02222,0,0,0,0,0,0,0,0,0.02189,0.02204,0,0,0,0,0,0,0,0,0.01008,0.00638,0,0,0,0,0,0,0,0,0.00867,0.00558,0,0,0,0,0,0,0,0,0.00992,0.00656,0,0,0,0,0,0,0,0,0.01097,0.00724,0,0,0,0,0,0,0,0,0.0048,0.00367,0,0,0,0,0,0,0,0,0.00578,0.00427,0,0,0,0,0,0,0,0,0.00454,0.00351,0,0,0,0,0,0,0,0,0.0067,0.00468,0,0,0,0,0,0,0,0,0.00444,0.00329,0,0,0,0,0,0,0,0,0.48529,0.71055,0,0,0,0,0,0,0,0,0.46375,0.68743,0,0,0,0,0,0,0,0,0.4907,0.76315,0,0,0,0,0,0,0,0,0.53204,0.82989,0,0,0,0,0,0,0,0,0.40095,0.67318,0,0,0,0,0,0,0,0,0.42211,0.70408,0,0,0,0,0,0,0,0,0.41372,0.69388,0,0,0,0,0,0,0,0,0.43858,0.69851,0,0,0,0,0,0,0,0,0.37449,0.59982,0,0,0,0,0,0,0,0,130.14245,131.40312,0,0,0,0,0,0,0,0,131.08599,132.25648,0,0,0,0,0,0,0,0,132.97361,134.2057,0,0,0,0,0,0,0,0,130.04203,131.27486,0,0,0,0,0,0,0,0,132.92209,133.77791,0,0,0,0,0,0,0,0,130.90713,131.85022,0,0,0,0,0,0,0,0,131.94331,132.76241,0,0,0,0,0,0,0,0,132.04492,133.03643,0,0,0,0,0,0,0,0,129.95871,130.86251,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.0029,0.00325,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.00284,0.00319,0,0,0,0,0,0,0,0,0.00293,0.00329,0,0,0,0,0,0,0,0,0.00287,0.00322,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.00292,0.00328,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00886,0.0103,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00887,0.01031,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01036,0,0,0,0,0,0,0,0,0.00893,0.01038,0,0,0,0,0,0,0,0,0.02046,0.02997,0,0,0,0,0,0,0,0,0.0197,0.02893,0,0,0,0,0,0,0,0,0.02027,0.03136,0,0,0,0,0,0,0,0,0.02115,0.03324,0,0,0,0,0,0,0,0,0.01584,0.02624,0,0,0,0,0,0,0,0,0.01746,0.02845,0,0,0,0,0,0,0,0,0.01615,0.02652,0,0,0,0,0,0,0,0,0.01864,0.02952,0,0,0,0,0,0,0,0,0.01614,0.0255,0,0,0,0.00116,0.00187,0.00248,0.00444,0,0.00074,0.00117,0,0,0,0.0011,0.00178,0.00234,0.00414,0,0.00071,0.00111,0,0,0,0.00114,0.00184,0.00244,0.00437,0,0.00073,0.00115,0,0,0,0.00117,0.00189,0.00252,0.00456,0,0.00075,0.00118,0,0,0,0.00096,0.00152,0.00196,0.00332,0,0.00061,0.00095,0,0,0,0.00098,0.00157,0.00204,0.00349,0,0.00063,0.00098,0,0,0,0.00096,0.00152,0.00195,0.00329,0,0.00061,0.00095,0,0,0,0.00103,0.00165,0.00215,0.00373,0,0.00066,0.00103,0,0,0,0.00098,0.00155,0.00199,0.00334,0,0.00063,0.00097,0,0,0,0.02292,0.02452,0.02594,0.03056,0,0.02202,0.02298,0,0,0,0.02349,0.02497,0.02628,0.03047,0,0.02264,0.02353,0,0,0,0.0256,0.02716,0.02856,0.0331,0,0.02471,0.02565,0,0,0,0.02154,0.02317,0.02464,0.02948,0,0.02062,0.0216,0,0,0,0.02471,0.02591,0.02689,0.02992,0,0.024,0.02472,0,0,0,0.02263,0.02388,0.02493,0.02822,0,0.02189,0.02264,0,0,0,0.02267,0.02386,0.02482,0.02778,0,0.02196,0.02267,0,0,0,0.0239,0.02524,0.02638,0.02998,0,0.02311,0.02392,0,0,0,0.02364,0.02485,0.02582,0.02881,0,0.02292,0.02364,0,0,0,0.00487,0.00628,0.00754,0.01162,0,0.00407,0.00492,0,0,0,0.00484,0.00615,0.0073,0.01101,0,0.00408,0.00487,0,0,0,0.00517,0.00656,0.00779,0.01181,0,0.00439,0.00522,0,0,0,0.00472,0.00617,0.00747,0.01175,0,0.00392,0.00478,0,0,0,0.00471,0.00576,0.00663,0.00931,0,0.00407,0.00471,0,0,0,0.0045,0.00561,0.00654,0.00945,0,0.00384,0.00451,0,0,0,0.00444,0.00549,0.00634,0.00896,0,0.00381,0.00444,0,0,0,0.00475,0.00593,0.00694,0.01013,0,0.00405,0.00476,0,0,0,0.00459,0.00566,0.00652,0.00916,0,0.00395,0.00459,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.02997,0.03951,0,0,0,0,0,0,0,0,0.02545,0.03402,0,0,0,0,0,0,0,0,0.02945,0.04008,0,0,0,0,0,0,0,0,0.03273,0.04436,0,0,0,0,0,0,0,0,0.01313,0.0203,0,0,0,0,0,0,0,0,0.01626,0.02426,0,0,0,0,0,0,0,0,0.01225,0.01914,0,0,0,0,0,0,0,0,0.01917,0.02731,0,0,0,0,0,0,0,0,0.01199,0.01814 +Minivan,PH40E,2050,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02148,0,0,0,0,0,0,0,0,0,0.02351,0,0,0,0,0,0,0,0,0,0.01941,0,0,0,0,0,0,0,0,0,0.02299,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02095,0,0,0,0,0,0,0,0,0,0.02203,0,0,0,0,0,0,0,0,0,0.02189,0,0,0,0,0,0,0,0,0,0.01008,0,0,0,0,0,0,0,0,0,0.00867,0,0,0,0,0,0,0,0,0,0.00992,0,0,0,0,0,0,0,0,0,0.01097,0,0,0,0,0,0,0,0,0,0.0048,0,0,0,0,0,0,0,0,0,0.00578,0,0,0,0,0,0,0,0,0,0.00454,0,0,0,0,0,0,0,0,0,0.0067,0,0,0,0,0,0,0,0,0,0.00444,0,0,0,0,0,0,0,0,0,0.48529,0,0,0,0,0,0,0,0,0,0.46376,0,0,0,0,0,0,0,0,0,0.49071,0,0,0,0,0,0,0,0,0,0.53205,0,0,0,0,0,0,0,0,0,0.40096,0,0,0,0,0,0,0,0,0,0.42211,0,0,0,0,0,0,0,0,0,0.41373,0,0,0,0,0,0,0,0,0,0.43858,0,0,0,0,0,0,0,0,0,0.3745,0,0,0,0,0,0,0,0,0,130.14248,0,0,0,0,0,0,0,0,0,131.08589,0,0,0,0,0,0,0,0,0,132.97354,0,0,0,0,0,0,0,0,0,130.04196,0,0,0,0,0,0,0,0,0,132.92202,0,0,0,0,0,0,0,0,0,130.90705,0,0,0,0,0,0,0,0,0,131.94336,0,0,0,0,0,0,0,0,0,132.0448,0,0,0,0,0,0,0,0,0,129.95865,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.0029,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.00284,0,0,0,0,0,0,0,0,0,0.00293,0,0,0,0,0,0,0,0,0,0.00287,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.00292,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00886,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00893,0,0,0,0,0,0,0,0,0,0.02046,0,0,0,0,0,0,0,0,0,0.0197,0,0,0,0,0,0,0,0,0,0.02027,0,0,0,0,0,0,0,0,0,0.02115,0,0,0,0,0,0,0,0,0,0.01584,0,0,0,0,0,0,0,0,0,0.01746,0,0,0,0,0,0,0,0,0,0.01615,0,0,0,0,0,0,0,0,0,0.01864,0,0,0,0,0,0,0,0,0,0.01614,0,0,0,0,0.00074,0.00117,0.00155,0.0032,0,0.00074,0,0,0,0,0.00071,0.00111,0.00146,0.00299,0,0.00071,0,0,0,0,0.00073,0.00115,0.00152,0.00315,0,0.00073,0,0,0,0,0.00075,0.00119,0.00158,0.00329,0,0.00075,0,0,0,0,0.00061,0.00095,0.00123,0.0024,0,0.00061,0,0,0,0,0.00063,0.00098,0.00127,0.00252,0,0.00063,0,0,0,0,0.00061,0.00095,0.00122,0.00238,0,0.00061,0,0,0,0,0.00066,0.00103,0.00135,0.00269,0,0.00066,0,0,0,0,0.00063,0.00097,0.00125,0.00241,0,0.00063,0,0,0,0,0.02203,0.02299,0.02386,0.02774,0,0.02202,0,0,0,0,0.02264,0.02353,0.02434,0.02787,0,0.02264,0,0,0,0,0.02472,0.02566,0.02652,0.03033,0,0.02471,0,0,0,0,0.02063,0.02161,0.02252,0.02655,0,0.02062,0,0,0,0,0.024,0.02472,0.02533,0.02794,0,0.024,0,0,0,0,0.02189,0.02265,0.0233,0.02611,0,0.02189,0,0,0,0,0.02196,0.02268,0.02327,0.02583,0,0.02196,0,0,0,0,0.02312,0.02392,0.02463,0.02769,0,0.02311,0,0,0,0,0.02292,0.02365,0.02425,0.02683,0,0.02292,0,0,0,0,0.00408,0.00493,0.0057,0.00913,0,0.00407,0,0,0,0,0.00409,0.00488,0.00559,0.00872,0,0.00408,0,0,0,0,0.0044,0.00523,0.00599,0.00936,0,0.00439,0,0,0,0,0.00392,0.00479,0.00559,0.00916,0,0.00392,0,0,0,0,0.00408,0.00471,0.00525,0.00756,0,0.00407,0,0,0,0,0.00385,0.00451,0.00509,0.00758,0,0.00384,0,0,0,0,0.00382,0.00445,0.00497,0.00724,0,0.00381,0,0,0,0,0.00406,0.00477,0.00539,0.00811,0,0.00405,0,0,0,0,0.00395,0.00459,0.00513,0.00741,0,0.00395,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.02997,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02945,0,0,0,0,0,0,0,0,0,0.03273,0,0,0,0,0,0,0,0,0,0.01313,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01225,0,0,0,0,0,0,0,0,0,0.01917,0,0,0,0,0,0,0,0,0,0.01199 +Minivan,PH40G,1990,0.04853,0,0,0,0,0,0,0,0,0,0.04512,0,0,0,0,0,0,0,0,0,0.05058,0,0,0,0,0,0,0,0,0,0.04966,0,0,0,0,0,0,0,0,0,0.03589,0,0,0,0,0,0,0,0,0,0.03633,0,0,0,0,0,0,0,0,0,0.03311,0,0,0,0,0,0,0,0,0,0.04015,0,0,0,0,0,0,0,0,0,0.0339,0,0,0,0,0,0,0,0,0,0.05721,0,0,0,0,0,0,0,0,0,0.04793,0,0,0,0,0,0,0,0,0,0.06232,0,0,0,0,0,0,0,0,0,0.06483,0,0,0,0,0,0,0,0,0,0.05407,0,0,0,0,0,0,0,0,0,0.05931,0,0,0,0,0,0,0,0,0,0.05417,0,0,0,0,0,0,0,0,0,0.0534,0,0,0,0,0,0,0,0,0,0.04241,0,0,0,0,0,0,0,0,0,35.07906,0,0,0,0,0,0,0,0,0,31.27098,0,0,0,0,0,0,0,0,0,38.98308,0,0,0,0,0,0,0,0,0,40.45848,0,0,0,0,0,0,0,0,0,36.19404,0,0,0,0,0,0,0,0,0,38.9985,0,0,0,0,0,0,0,0,0,37.35767,0,0,0,0,0,0,0,0,0,35.04495,0,0,0,0,0,0,0,0,0,28.57715,0,0,0,0,0,0,0,0,0,309.76857,0,0,0,0,0,0,0,0,0,310.48098,0,0,0,0,0,0,0,0,0,314.31655,0,0,0,0,0,0,0,0,0,308.79709,0,0,0,0,0,0,0,0,0,310.27577,0,0,0,0,0,0,0,0,0,307.51573,0,0,0,0,0,0,0,0,0,307.96362,0,0,0,0,0,0,0,0,0,310.2278,0,0,0,0,0,0,0,0,0,306.35158,0,0,0,0,0,0,0,0,0,0.06266,0,0,0,0,0,0,0,0,0,0.06272,0,0,0,0,0,0,0,0,0,0.06372,0,0,0,0,0,0,0,0,0,0.06141,0,0,0,0,0,0,0,0,0,0.06343,0,0,0,0,0,0,0,0,0,0.06208,0,0,0,0,0,0,0,0,0,0.0626,0,0,0,0,0,0,0,0,0,0.0632,0,0,0,0,0,0,0,0,0,0.06369,0,0,0,0,0,0,0,0,0,0.02053,0,0,0,0,0,0,0,0,0,0.02055,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.02049,0,0,0,0,0,0,0,0,0,0.02052,0,0,0,0,0,0,0,0,0,0.02054,0,0,0,0,0,0,0,0,0,0.02056,0,0,0,0,0,0,0,0,0,2.53113,0,0,0,0,0,0,0,0,0,2.38486,0,0,0,0,0,0,0,0,0,2.67037,0,0,0,0,0,0,0,0,0,2.83383,0,0,0,0,0,0,0,0,0,2.61703,0,0,0,0,0,0,0,0,0,2.75096,0,0,0,0,0,0,0,0,0,2.62288,0,0,0,0,0,0,0,0,0,2.76787,0,0,0,0,0,0,0,0,0,2.25703,0,0,0,0,0,0,0,0,0,0.04953,0,0,0,0,0.00078,0.00123,0.00162,0.00267,0,0.04325,0,0,0,0,0.00075,0.00118,0.00155,0.00252,0,0.04823,0,0,0,0,0.00076,0.0012,0.00159,0.00261,0,0.05311,0,0,0,0,0.00078,0.00124,0.00164,0.00272,0,0.02579,0,0,0,0,0.00067,0.00104,0.00134,0.00211,0,0.03017,0,0,0,0,0.00068,0.00106,0.00137,0.00218,0,0.02477,0,0,0,0,0.00064,0.00099,0.00127,0.00198,0,0.03429,0,0,0,0,0.00069,0.00108,0.00141,0.00225,0,0.02451,0,0,0,0,0.00062,0.00095,0.00123,0.00191,0,0.13141,0,0,0,0,0.0221,0.0231,0.02401,0.02649,0,0.11768,0,0,0,0,0.02273,0.02367,0.02451,0.02679,0,0.13192,0,0,0,0,0.02478,0.02575,0.02664,0.02904,0,0.13906,0,0,0,0,0.0207,0.02172,0.02265,0.02521,0,0.07947,0,0,0,0,0.02411,0.0249,0.02556,0.02728,0,0.08737,0,0,0,0,0.02199,0.02281,0.02351,0.02534,0,0.075,0,0,0,0,0.02201,0.02275,0.02336,0.02495,0,0.098,0,0,0,0,0.02318,0.02402,0.02475,0.02667,0,0.07487,0,0,0,0,0.0229,0.02361,0.0242,0.0257,0,0.10083,0,0,0,0,0.00414,0.00502,0.00583,0.00802,0,0.08815,0,0,0,0,0.00416,0.00499,0.00574,0.00775,0,0.09923,0,0,0,0,0.00445,0.00531,0.00609,0.00821,0,0.10868,0,0,0,0,0.00398,0.00488,0.0057,0.00796,0,0.05314,0,0,0,0,0.00417,0.00487,0.00545,0.00697,0,0.06176,0,0,0,0,0.00393,0.00465,0.00527,0.00689,0,0.05073,0,0,0,0,0.00385,0.00451,0.00505,0.00645,0,0.0703,0,0,0,0,0.00411,0.00485,0.0055,0.0072,0,0.0499,0,0,0,0,0.00393,0.00456,0.00508,0.0064,0,0.01373,0,0,0,0,0,0,0,0,0,0.01548,0,0,0,0,0,0,0,0,0,0.02199,0,0,0,0,0,0,0,0,0,0.02016,0,0,0,0,0,0,0,0,0,0.01794,0,0,0,0,0,0,0,0,0,0.01978,0,0,0,0,0,0,0,0,0,0.018,0,0,0,0,0,0,0,0,0,0.01779,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,2.11282,0,0,0,0,0,0,0,0,0,1.86289,0,0,0,0,0,0,0,0,0,2.3408,0,0,0,0,0,0,0,0,0,2.4215,0,0,0,0,0,0,0,0,0,2.26922,0,0,0,0,0,0,0,0,0,2.3711,0,0,0,0,0,0,0,0,0,2.26492,0,0,0,0,0,0,0,0,0,2.19953,0,0,0,0,0,0,0,0,0,1.78969,0,0,0,0,0,0,0,0,0 +Minivan,PH40G,1995,0.02751,0.03727,0,0,0,0,0,0,0,0,0.02719,0.0355,0,0,0,0,0,0,0,0,0.03004,0.03958,0,0,0,0,0,0,0,0,0.0267,0.03735,0,0,0,0,0,0,0,0,0.02609,0.03059,0,0,0,0,0,0,0,0,0.02458,0.02998,0,0,0,0,0,0,0,0,0.02387,0.02811,0,0,0,0,0,0,0,0,0.0264,0.03275,0,0,0,0,0,0,0,0,0.02478,0.02898,0,0,0,0,0,0,0,0,0.03917,0.04477,0,0,0,0,0,0,0,0,0.03627,0.03853,0,0,0,0,0,0,0,0,0.0439,0.05067,0,0,0,0,0,0,0,0,0.04503,0.05493,0,0,0,0,0,0,0,0,0.03946,0.0455,0,0,0,0,0,0,0,0,0.04189,0.05004,0,0,0,0,0,0,0,0,0.03918,0.04569,0,0,0,0,0,0,0,0,0.03934,0.04539,0,0,0,0,0,0,0,0,0.03291,0.03475,0,0,0,0,0,0,0,0,16.55049,22.93876,0,0,0,0,0,0,0,0,16.07993,21.06143,0,0,0,0,0,0,0,0,18.86972,25.57563,0,0,0,0,0,0,0,0,19.71238,27.57242,0,0,0,0,0,0,0,0,17.93665,24.48259,0,0,0,0,0,0,0,0,18.95962,26.26305,0,0,0,0,0,0,0,0,18.51493,25.54084,0,0,0,0,0,0,0,0,17.62792,24.39996,0,0,0,0,0,0,0,0,14.45226,19.49302,0,0,0,0,0,0,0,0,242.7102,259.3027,0,0,0,0,0,0,0,0,244.36161,260.4985,0,0,0,0,0,0,0,0,248.17166,264.55828,0,0,0,0,0,0,0,0,241.8919,258.29446,0,0,0,0,0,0,0,0,247.36505,261.92345,0,0,0,0,0,0,0,0,243.37201,258.40709,0,0,0,0,0,0,0,0,245.03455,259.41254,0,0,0,0,0,0,0,0,245.86106,261.10087,0,0,0,0,0,0,0,0,242.38329,257.32786,0,0,0,0,0,0,0,0,0.04639,0.05878,0,0,0,0,0,0,0,0,0.0465,0.05886,0,0,0,0,0,0,0,0,0.04739,0.05981,0,0,0,0,0,0,0,0,0.04538,0.0576,0,0,0,0,0,0,0,0,0.04715,0.05954,0,0,0,0,0,0,0,0,0.046,0.05825,0,0,0,0,0,0,0,0,0.04637,0.05874,0,0,0,0,0,0,0,0,0.04689,0.05931,0,0,0,0,0,0,0,0,0.04722,0.05976,0,0,0,0,0,0,0,0,0.05276,0.04229,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05272,0.04225,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05269,0.04223,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05272,0.04226,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05289,0.04239,0,0,0,0,0,0,0,0,2.08064,2.48504,0,0,0,0,0,0,0,0,2.05287,2.34451,0,0,0,0,0,0,0,0,2.24514,2.54934,0,0,0,0,0,0,0,0,2.33983,2.80384,0,0,0,0,0,0,0,0,2.19331,2.59615,0,0,0,0,0,0,0,0,2.29135,2.69495,0,0,0,0,0,0,0,0,2.22014,2.61358,0,0,0,0,0,0,0,0,2.32703,2.74151,0,0,0,0,0,0,0,0,1.92696,2.24397,0,0,0,0,0,0,0,0,0.0134,0.02933,0,0,0,0,0.00077,0.00122,0.00163,0.00248,0.01173,0.0256,0,0,0,0,0.00075,0.00117,0.00155,0.00234,0.01301,0.02854,0,0,0,0,0.00076,0.00119,0.00159,0.00241,0.01425,0.03131,0,0,0,0,0.00078,0.00123,0.00165,0.00252,0.00705,0.0152,0,0,0,0,0.00067,0.00103,0.00134,0.00196,0.0082,0.01773,0,0,0,0,0.00068,0.00105,0.00138,0.00202,0.0068,0.0146,0,0,0,0,0.00064,0.00098,0.00127,0.00184,0.00934,0.02027,0,0,0,0,0.00069,0.00108,0.00141,0.00209,0.00678,0.01454,0,0,0,0,0.00062,0.00095,0.00123,0.00177,0.05,0.08584,0,0,0,0,0.0221,0.02309,0.02402,0.02603,0.04694,0.07794,0,0,0,0,0.02272,0.02365,0.02452,0.02636,0.05206,0.08684,0,0,0,0,0.02477,0.02573,0.02664,0.02859,0.05078,0.08942,0,0,0,0,0.0207,0.0217,0.02266,0.02475,0.03804,0.05587,0,0,0,0,0.02411,0.02489,0.02557,0.02695,0.0385,0.05944,0,0,0,0,0.02199,0.02279,0.02351,0.02499,0.03541,0.0525,0,0,0,0,0.02201,0.02274,0.02337,0.02464,0.0422,0.06655,0,0,0,0,0.02317,0.02401,0.02475,0.0263,0.03615,0.0531,0,0,0,0,0.0229,0.0236,0.0242,0.02539,0.02882,0.06052,0,0,0,0,0.00413,0.00501,0.00583,0.00761,0.02559,0.05301,0,0,0,0,0.00415,0.00498,0.00575,0.00738,0.02859,0.05935,0,0,0,0,0.00444,0.0053,0.0061,0.00782,0.03058,0.06476,0,0,0,0,0.00397,0.00486,0.00571,0.00755,0.01649,0.03227,0,0,0,0,0.00417,0.00486,0.00546,0.00668,0.01853,0.03706,0,0,0,0,0.00393,0.00464,0.00527,0.00658,0.01571,0.03083,0,0,0,0,0.00385,0.0045,0.00505,0.00618,0.02094,0.04248,0,0,0,0,0.0041,0.00484,0.0055,0.00687,0.01565,0.03065,0,0,0,0,0.00393,0.00455,0.00508,0.00614,0.01073,0.00551,0,0,0,0,0,0,0,0,0.01218,0.00559,0,0,0,0,0,0,0,0,0.01737,0.00579,0,0,0,0,0,0,0,0,0.01579,0.00968,0,0,0,0,0,0,0,0,0.0143,0.0057,0,0,0,0,0,0,0,0,0.01565,0.00565,0,0,0,0,0,0,0,0,0.01432,0.00775,0,0,0,0,0,0,0,0,0.01407,0.00882,0,0,0,0,0,0,0,0,0.00662,0.00324,0,0,0,0,0,0,0,0,1.46325,1.81021,0,0,0,0,0,0,0,0,1.40068,1.64808,0,0,0,0,0,0,0,0,1.66111,2.05515,0,0,0,0,0,0,0,0,1.68667,2.19368,0,0,0,0,0,0,0,0,1.60438,2.04812,0,0,0,0,0,0,0,0,1.64584,2.13632,0,0,0,0,0,0,0,0,1.59029,2.04471,0,0,0,0,0,0,0,0,1.58411,2.0166,0,0,0,0,0,0,0,0,1.34248,1.61492,0,0,0,0,0,0,0,0 +Minivan,PH40G,2000,0.02384,0.02543,0.03195,0,0,0,0,0,0,0,0.02406,0.02542,0.03095,0,0,0,0,0,0,0,0.02644,0.02798,0.03433,0,0,0,0,0,0,0,0.02266,0.02438,0.0315,0,0,0,0,0,0,0,0.02438,0.02512,0.0281,0,0,0,0,0,0,0,0.02252,0.02341,0.02699,0,0,0,0,0,0,0,0.02228,0.02298,0.02579,0,0,0,0,0,0,0,0.024,0.02504,0.02927,0,0,0,0,0,0,0,0.02322,0.02393,0.0267,0,0,0,0,0,0,0,0.02226,0.03259,0.04418,0,0,0,0,0,0,0,0.02081,0.0313,0.03922,0,0,0,0,0,0,0,0.02524,0.03775,0.05114,0,0,0,0,0,0,0,0.02579,0.0393,0.05226,0,0,0,0,0,0,0,0.01944,0.03188,0.04408,0,0,0,0,0,0,0,0.02106,0.03406,0.04677,0,0,0,0,0,0,0,0.01911,0.03199,0.04247,0,0,0,0,0,0,0,0.02102,0.03345,0.04328,0,0,0,0,0,0,0,0.01731,0.02896,0.03504,0,0,0,0,0,0,0,5.12962,8.16348,15.04953,0,0,0,0,0,0,0,4.99127,8.03463,13.70246,0,0,0,0,0,0,0,5.95952,9.50757,17.18178,0,0,0,0,0,0,0,6.15701,9.88798,17.48577,0,0,0,0,0,0,0,4.9654,8.51225,15.71439,0,0,0,0,0,0,0,5.31776,8.98237,16.46462,0,0,0,0,0,0,0,5.06318,8.7791,15.72537,0,0,0,0,0,0,0,5.17315,8.7429,15.26942,0,0,0,0,0,0,0,4.22624,7.50259,12.44636,0,0,0,0,0,0,0,259.65803,261.99721,263.42668,0,0,0,0,0,0,0,261.76802,263.95163,264.89978,0,0,0,0,0,0,0,265.55252,267.85066,269.06354,0,0,0,0,0,0,0,259.32721,261.60067,262.7578,0,0,0,0,0,0,0,266.18159,267.81164,267.1362,0,0,0,0,0,0,0,261.78099,263.57171,263.33802,0,0,0,0,0,0,0,264.0998,265.66506,264.74677,0,0,0,0,0,0,0,264.07883,265.94876,265.96498,0,0,0,0,0,0,0,260.20025,261.92676,261.738,0,0,0,0,0,0,0,0.02562,0.02853,0.04389,0,0,0,0,0,0,0,0.0257,0.0286,0.04394,0,0,0,0,0,0,0,0.02624,0.02915,0.04463,0,0,0,0,0,0,0,0.02503,0.02791,0.04302,0,0,0,0,0,0,0,0.0261,0.029,0.04443,0,0,0,0,0,0,0,0.02542,0.02829,0.04349,0,0,0,0,0,0,0,0.02562,0.02852,0.04385,0,0,0,0,0,0,0,0.02593,0.02884,0.04427,0,0,0,0,0,0,0,0.0261,0.02904,0.04461,0,0,0,0,0,0,0,0.03109,0.04053,0.04237,0,0,0,0,0,0,0,0.03112,0.04058,0.04241,0,0,0,0,0,0,0,0.03111,0.04056,0.04238,0,0,0,0,0,0,0,0.03096,0.04036,0.04221,0,0,0,0,0,0,0,0.03109,0.04053,0.04235,0,0,0,0,0,0,0,0.03098,0.0404,0.04224,0,0,0,0,0,0,0,0.03106,0.0405,0.04234,0,0,0,0,0,0,0,0.03113,0.04059,0.04242,0,0,0,0,0,0,0,0.0312,0.04068,0.0425,0,0,0,0,0,0,0,0.75644,1.04909,1.76194,0,0,0,0,0,0,0,0.74387,1.0399,1.66867,0,0,0,0,0,0,0,0.87221,1.1468,1.87413,0,0,0,0,0,0,0,0.89329,1.22235,1.93119,0,0,0,0,0,0,0,0.8289,1.13875,1.87972,0,0,0,0,0,0,0,0.86386,1.16417,1.90739,0,0,0,0,0,0,0,0.84078,1.16047,1.81692,0,0,0,0,0,0,0,0.88094,1.20969,1.90528,0,0,0,0,0,0,0,0.73331,1.03005,1.58991,0,0,0,0,0,0,0,0.00742,0.01037,0.02062,0,0,0,0,0.00077,0.00122,0.00163,0.00651,0.00908,0.01797,0,0,0,0,0.00074,0.00117,0.00155,0.00709,0.00992,0.01987,0,0,0,0,0.00075,0.0012,0.00159,0.00773,0.01083,0.02183,0,0,0,0,0.00077,0.00123,0.00165,0.00394,0.00546,0.01064,0,0,0,0,0.00066,0.00104,0.00135,0.00453,0.00629,0.01238,0,0,0,0,0.00067,0.00106,0.00138,0.00385,0.00533,0.0103,0,0,0,0,0.00063,0.00099,0.00128,0.00519,0.00723,0.01422,0,0,0,0,0.00069,0.00108,0.00141,0.00392,0.00543,0.01036,0,0,0,0,0.00061,0.00095,0.00123,0.03637,0.04272,0.06611,0,0,0,0,0.02209,0.02309,0.02403,0.03508,0.04056,0.06075,0,0,0,0,0.02271,0.02366,0.02453,0.03852,0.04451,0.06724,0,0,0,0,0.02476,0.02574,0.02665,0.03581,0.04252,0.06764,0,0,0,0,0.02069,0.02171,0.02267,0.0311,0.03426,0.04579,0,0,0,0,0.0241,0.02489,0.02557,0.03026,0.03393,0.04756,0,0,0,0,0.02198,0.0228,0.02352,0.02885,0.03195,0.04292,0,0,0,0,0.022,0.02274,0.02338,0.03284,0.03717,0.05285,0,0,0,0,0.02317,0.02401,0.02476,0.02982,0.03298,0.04388,0,0,0,0,0.0229,0.0236,0.0242,0.01676,0.02238,0.04307,0,0,0,0,0.00413,0.00501,0.00584,0.01509,0.01994,0.0378,0,0,0,0,0.00415,0.00498,0.00575,0.01661,0.0219,0.04202,0,0,0,0,0.00444,0.0053,0.00611,0.01734,0.02328,0.0455,0,0,0,0,0.00396,0.00487,0.00572,0.01035,0.01315,0.02336,0,0,0,0,0.00417,0.00486,0.00546,0.01124,0.01449,0.02655,0,0,0,0,0.00392,0.00464,0.00528,0.0099,0.01265,0.02236,0,0,0,0,0.00385,0.0045,0.00506,0.01265,0.01649,0.03036,0,0,0,0,0.0041,0.00484,0.0055,0.01005,0.01285,0.02249,0,0,0,0,0.00393,0.00455,0.00508,0.01147,0.00557,0.00504,0,0,0,0,0,0,0,0.01304,0.00566,0.00507,0,0,0,0,0,0,0,0.0186,0.00586,0.00515,0,0,0,0,0,0,0,0.01693,0.00982,0.00503,0,0,0,0,0,0,0,0.01538,0.00583,0.00511,0,0,0,0,0,0,0,0.01683,0.00576,0.00504,0,0,0,0,0,0,0,0.01543,0.00794,0.00507,0,0,0,0,0,0,0,0.0151,0.00898,0.00456,0,0,0,0,0,0,0,0.00709,0.00329,0.00237,0,0,0,0,0,0,0,0.4836,0.81498,1.47434,0,0,0,0,0,0,0,0.4692,0.80086,1.33632,0,0,0,0,0,0,0,0.55761,0.95058,1.70176,0,0,0,0,0,0,0,0.57229,0.9868,1.72824,0,0,0,0,0,0,0,0.48195,0.86852,1.61023,0,0,0,0,0,0,0,0.5025,0.90307,1.65146,0,0,0,0,0,0,0,0.47702,0.86754,1.55555,0,0,0,0,0,0,0,0.50817,0.89925,1.56273,0,0,0,0,0,0,0,0.42218,0.78074,1.28114,0,0,0,0,0,0,0 +Minivan,PH40G,2005,0.0215,0.02216,0.02299,0.02734,0,0,0,0,0,0,0.02209,0.02262,0.02333,0.02706,0,0,0,0,0,0,0.02432,0.02446,0.02507,0.02976,0,0,0,0,0,0,0.02023,0.02081,0.02169,0.02645,0,0,0,0,0,0,0.02335,0.0237,0.02414,0.0261,0,0,0,0,0,0,0.0213,0.02156,0.02202,0.02451,0,0,0,0,0,0,0.02128,0.02158,0.02198,0.02382,0,0,0,0,0,0,0.02253,0.02285,0.02337,0.0263,0,0,0,0,0,0,0.02216,0.0224,0.02273,0.02472,0,0,0,0,0,0,0.0152,0.01155,0.01221,0.02544,0,0,0,0,0,0,0.0139,0.01046,0.01135,0.02301,0,0,0,0,0,0,0.01554,0.01173,0.0127,0.029,0,0,0,0,0,0,0.0158,0.0134,0.01357,0.03058,0,0,0,0,0,0,0.00981,0.00852,0.00981,0.02415,0,0,0,0,0,0,0.01095,0.00923,0.01043,0.02578,0,0,0,0,0,0,0.00939,0.00885,0.00964,0.02332,0,0,0,0,0,0,0.01192,0.01018,0.01047,0.02483,0,0,0,0,0,0,0.00799,0.00688,0.00779,0.02052,0,0,0,0,0,0,2.49883,3.79272,4.91778,8.94899,0,0,0,0,0,0,2.43036,3.73186,4.92581,8.52828,0,0,0,0,0,0,2.68991,4.40328,5.89108,10.32223,0,0,0,0,0,0,2.79462,4.67579,5.78261,10.761,0,0,0,0,0,0,2.41196,3.95413,5.34889,9.56865,0,0,0,0,0,0,2.49419,4.14736,5.58117,9.95342,0,0,0,0,0,0,2.47761,4.25627,5.40286,9.66101,0,0,0,0,0,0,2.53818,4.39345,5.37855,9.55236,0,0,0,0,0,0,2.00894,3.66647,4.82534,8.21743,0,0,0,0,0,0,272.20226,273.52307,276.48712,276.61527,0,0,0,0,0,0,274.58457,275.81078,278.56434,278.21407,0,0,0,0,0,0,278.33847,279.62917,282.5243,282.44583,0,0,0,0,0,0,272.04728,273.30884,276.20669,276.15614,0,0,0,0,0,0,279.80708,280.69417,282.71229,280.7449,0,0,0,0,0,0,275.12099,276.10869,278.33086,276.83445,0,0,0,0,0,0,277.829,278.67527,280.60908,278.44821,0,0,0,0,0,0,277.36762,278.40223,280.73824,279.46319,0,0,0,0,0,0,273.38089,274.3566,276.49097,274.88313,0,0,0,0,0,0,0.00507,0.00544,0.0064,0.02049,0,0,0,0,0,0,0.00508,0.00545,0.00641,0.0205,0,0,0,0,0,0,0.00517,0.00554,0.0065,0.02078,0,0,0,0,0,0,0.00497,0.00533,0.00628,0.02011,0,0,0,0,0,0,0.00514,0.00551,0.00647,0.02069,0,0,0,0,0,0,0.00503,0.00539,0.00634,0.02029,0,0,0,0,0,0,0.00507,0.00543,0.0064,0.02047,0,0,0,0,0,0,0.00512,0.00549,0.00645,0.02064,0,0,0,0,0,0,0.00516,0.00553,0.00651,0.02081,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.02571,0,0,0,0,0,0,0.01255,0.01443,0.01776,0.02574,0,0,0,0,0,0,0.01255,0.01442,0.01776,0.02572,0,0,0,0,0,0,0.01249,0.01435,0.01767,0.02561,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.0257,0,0,0,0,0,0,0.0125,0.01436,0.01768,0.02563,0,0,0,0,0,0,0.01253,0.0144,0.01773,0.02569,0,0,0,0,0,0,0.01256,0.01443,0.01777,0.02574,0,0,0,0,0,0,0.01258,0.01446,0.01781,0.0258,0,0,0,0,0,0,0.28844,0.4567,0.59466,0.89365,0,0,0,0,0,0,0.28327,0.44692,0.5933,0.86412,0,0,0,0,0,0,0.30703,0.4943,0.64683,0.97862,0,0,0,0,0,0,0.30618,0.54338,0.67603,1.0224,0,0,0,0,0,0,0.28735,0.47746,0.63151,0.96893,0,0,0,0,0,0,0.29749,0.4943,0.64683,0.98751,0,0,0,0,0,0,0.29163,0.50132,0.63067,0.94673,0,0,0,0,0,0,0.31397,0.52292,0.64577,1.00185,0,0,0,0,0,0,0.24569,0.35067,0.46092,0.86731,0,0,0,0,0,0,0.0023,0.00368,0.00501,0.01209,0,0,0,0,0.00077,0.00122,0.00211,0.00327,0.00444,0.01063,0,0,0,0,0.00074,0.00117,0.00244,0.00301,0.00407,0.01155,0,0,0,0,0.00076,0.0012,0.00251,0.00373,0.0051,0.01268,0,0,0,0,0.00078,0.00124,0.00147,0.0023,0.00314,0.00664,0,0,0,0,0.00066,0.00104,0.00165,0.00235,0.0032,0.00752,0,0,0,0,0.00067,0.00106,0.00142,0.00217,0.00295,0.00633,0,0,0,0,0.00063,0.00099,0.00181,0.0026,0.00353,0.00852,0,0,0,0,0.00069,0.00108,0.00131,0.00197,0.00266,0.00631,0,0,0,0,0.00061,0.00095,0.0254,0.02832,0.03134,0.04728,0,0,0,0,0.02209,0.0231,0.02567,0.02809,0.03074,0.0446,0,0,0,0,0.02272,0.02366,0.02848,0.02953,0.03189,0.0488,0,0,0,0,0.02477,0.02574,0.02451,0.02709,0.03018,0.04733,0,0,0,0,0.02069,0.02172,0.02585,0.02755,0.02939,0.03709,0,0,0,0,0.02411,0.0249,0.02412,0.02552,0.02738,0.03694,0,0,0,0,0.02199,0.0228,0.02371,0.02524,0.02693,0.03431,0,0,0,0,0.022,0.02275,0.02561,0.02725,0.02928,0.04038,0,0,0,0,0.02317,0.02401,0.02438,0.02571,0.02719,0.03517,0,0,0,0,0.0229,0.02361,0.00705,0.00963,0.01231,0.02641,0,0,0,0,0.00413,0.00502,0.00676,0.0089,0.01124,0.02351,0,0,0,0,0.00415,0.00499,0.00772,0.00865,0.01074,0.0257,0,0,0,0,0.00444,0.0053,0.00734,0.00962,0.01236,0.02753,0,0,0,0,0.00397,0.00487,0.0057,0.00721,0.00884,0.01565,0,0,0,0,0.00417,0.00486,0.00581,0.00704,0.00869,0.01715,0,0,0,0,0.00392,0.00465,0.00535,0.00671,0.0082,0.01473,0,0,0,0,0.00385,0.00451,0.00625,0.0077,0.0095,0.01932,0,0,0,0,0.0041,0.00485,0.00523,0.00641,0.00772,0.01479,0,0,0,0,0.00393,0.00455,0.01202,0.00582,0.00529,0.00176,0,0,0,0,0,0,0.01368,0.00592,0.00533,0.00177,0,0,0,0,0,0,0.0195,0.00612,0.00541,0.0018,0,0,0,0,0,0,0.01776,0.01026,0.00529,0.00176,0,0,0,0,0,0,0.01617,0.00611,0.00541,0.00179,0,0,0,0,0,0,0.01769,0.00604,0.00533,0.00177,0,0,0,0,0,0,0.01623,0.00833,0.00537,0.00178,0,0,0,0,0,0,0.01585,0.00941,0.00481,0.00176,0,0,0,0,0,0,0.00745,0.00344,0.0025,0.00162,0,0,0,0,0,0,0.21324,0.26238,0.36053,0.87318,0,0,0,0,0,0,0.19842,0.24505,0.34113,0.80987,0,0,0,0,0,0,0.22293,0.27379,0.38038,0.98281,0,0,0,0,0,0,0.22839,0.30666,0.40263,1.02159,0,0,0,0,0,0,0.15719,0.21896,0.31675,0.89741,0,0,0,0,0,0,0.16971,0.23018,0.32876,0.92458,0,0,0,0,0,0,0.15185,0.22318,0.30923,0.8695,0,0,0,0,0,0,0.18625,0.25477,0.33999,0.9136,0,0,0,0,0,0,0.13273,0.18736,0.26838,0.77673,0,0,0,0,0,0 +Minivan,PH40G,2010,0,0.02122,0.02183,0.02253,0.02575,0,0,0,0,0,0,0.02182,0.02235,0.02297,0.02573,0,0,0,0,0,0,0.02374,0.02419,0.02512,0.02818,0,0,0,0,0,0,0.01984,0.02048,0.02125,0.02472,0,0,0,0,0,0,0.02323,0.02358,0.02394,0.02547,0,0,0,0,0,0,0.02107,0.02143,0.02191,0.02371,0,0,0,0,0,0,0.02115,0.02148,0.02179,0.02319,0,0,0,0,0,0,0.02227,0.02267,0.02321,0.02531,0,0,0,0,0,0,0.02202,0.0223,0.02269,0.02407,0,0,0,0,0,0,0.01083,0.00988,0.00851,0.01739,0,0,0,0,0,0,0.00951,0.00907,0.00774,0.01599,0,0,0,0,0,0,0.01033,0.0102,0.00872,0.01939,0,0,0,0,0,0,0.01222,0.01123,0.00968,0.02082,0,0,0,0,0,0,0.00701,0.00808,0.00676,0.01572,0,0,0,0,0,0,0.00749,0.00843,0.00712,0.01677,0,0,0,0,0,0,0.00724,0.00799,0.00669,0.01531,0,0,0,0,0,0,0.00865,0.0084,0.00744,0.01661,0,0,0,0,0,0,0.0058,0.00623,0.00652,0.01405,0,0,0,0,0,0,1.72061,2.74102,3.58502,6.4091,0,0,0,0,0,0,1.64197,2.71832,3.53004,6.25353,0,0,0,0,0,0,1.90217,3.18773,3.99381,7.52788,0,0,0,0,0,0,1.99214,3.15166,4.23997,7.90904,0,0,0,0,0,0,1.52014,2.78595,3.71385,6.94439,0,0,0,0,0,0,1.62622,2.9305,3.83855,7.24726,0,0,0,0,0,0,1.63437,2.83102,3.80371,7.04808,0,0,0,0,0,0,1.78892,2.87104,3.8016,6.98109,0,0,0,0,0,0,1.45423,2.54332,3.35073,6.03273,0,0,0,0,0,0,258.982,260.13634,262.47802,272.9807,0,0,0,0,0,0,261.2575,262.2648,264.36628,274.47183,0,0,0,0,0,0,264.83046,265.91704,268.16522,278.65589,0,0,0,0,0,0,258.82207,259.92387,262.19675,272.57002,0,0,0,0,0,0,266.24776,266.75077,268.02288,276.68567,0,0,0,0,0,0,261.79149,262.44192,263.95564,272.95718,0,0,0,0,0,0,264.37065,264.82071,266.00526,274.44882,0,0,0,0,0,0,263.9185,264.64016,266.27061,275.55026,0,0,0,0,0,0,260.13985,260.75493,262.16893,270.92047,0,0,0,0,0,0,0.00483,0.00544,0.00652,0.01289,0,0,0,0,0,0,0.00484,0.00545,0.00652,0.01288,0,0,0,0,0,0,0.00492,0.00554,0.00662,0.01305,0,0,0,0,0,0,0.00473,0.00533,0.0064,0.01266,0,0,0,0,0,0,0.0049,0.00551,0.00659,0.013,0,0,0,0,0,0,0.00479,0.00539,0.00646,0.01276,0,0,0,0,0,0,0.00483,0.00544,0.00651,0.01287,0,0,0,0,0,0,0.00488,0.00549,0.00657,0.01297,0,0,0,0,0,0,0.00491,0.00553,0.00662,0.01308,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.0183,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.01829,0,0,0,0,0,0,0.00942,0.0109,0.01366,0.0182,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00943,0.01091,0.01367,0.01822,0,0,0,0,0,0,0.00945,0.01093,0.01371,0.01827,0,0,0,0,0,0,0.00947,0.01096,0.01374,0.0183,0,0,0,0,0,0,0.00949,0.01098,0.01377,0.01834,0,0,0,0,0,0,0.10442,0.16865,0.15241,0.46982,0,0,0,0,0,0,0.1008,0.16773,0.1505,0.46098,0,0,0,0,0,0,0.10414,0.1802,0.16066,0.5253,0,0,0,0,0,0,0.11257,0.18925,0.16949,0.55472,0,0,0,0,0,0,0.09749,0.17291,0.15258,0.51553,0,0,0,0,0,0,0.10078,0.17843,0.15748,0.52727,0,0,0,0,0,0,0.10239,0.17383,0.15392,0.50724,0,0,0,0,0,0,0.11026,0.17998,0.16782,0.53721,0,0,0,0,0,0,0.0752,0.12741,0.15179,0.46901,0,0,0,0,0,0,0.00138,0.00234,0.00329,0.00858,0,0,0,0,0.00077,0,0.00129,0.00216,0.00305,0.00766,0,0,0,0,0.00074,0,0.00117,0.00194,0.00316,0.00817,0,0,0,0,0.00076,0,0.00141,0.00238,0.00341,0.00895,0,0,0,0,0.00078,0,0.00112,0.00184,0.00245,0.0052,0,0,0,0,0.00067,0,0.00109,0.00179,0.00255,0.0057,0,0,0,0,0.00068,0,0.00106,0.00174,0.00231,0.0049,0,0,0,0,0.00064,0,0.00112,0.00186,0.00269,0.00631,0,0,0,0,0.00069,0,0.00095,0.00155,0.00225,0.00484,0,0,0,0,0.00061,0,0.02352,0.0257,0.02795,0.03986,0,0,0,0,0.0221,0,0.02397,0.02594,0.02801,0.03834,0,0,0,0,0.02272,0,0.02569,0.02744,0.03032,0.04163,0,0,0,0,0.02477,0,0.02219,0.02442,0.02684,0.03942,0,0,0,0,0.0207,0,0.0251,0.02666,0.02801,0.03408,0,0,0,0,0.02411,0,0.02289,0.02443,0.02613,0.03312,0,0,0,0,0.02199,0,0.02294,0.02439,0.02563,0.03131,0,0,0,0,0.02201,0,0.02415,0.02577,0.02766,0.03573,0,0,0,0,0.02317,0,0.02362,0.02489,0.02643,0.03209,0,0,0,0,0.0229,0,0.00539,0.00732,0.0093,0.01985,0,0,0,0,0.00413,0,0.00526,0.007,0.00883,0.01797,0,0,0,0,0.00415,0,0.00526,0.0068,0.00935,0.01936,0,0,0,0,0.00444,0,0.00529,0.00726,0.0094,0.02054,0,0,0,0,0.00397,0,0.00504,0.00642,0.00761,0.01299,0,0,0,0,0.00417,0,0.00472,0.00608,0.00758,0.01377,0,0,0,0,0.00393,0,0.00467,0.00596,0.00705,0.01208,0,0,0,0,0.00385,0,0.00497,0.0064,0.00807,0.01521,0,0,0,0,0.0041,0,0.00456,0.00569,0.00705,0.01206,0,0,0,0,0.00393,0,0.00551,0.00498,0.00167,0.00174,0,0,0,0,0,0,0.0056,0.00502,0.00169,0.00175,0,0,0,0,0,0,0.0058,0.00509,0.00171,0.00178,0,0,0,0,0,0,0.00972,0.00497,0.00167,0.00174,0,0,0,0,0,0,0.00579,0.00511,0.00171,0.00177,0,0,0,0,0,0,0.00572,0.00502,0.00168,0.00174,0,0,0,0,0,0,0.0079,0.00507,0.0017,0.00175,0,0,0,0,0,0,0.00892,0.00454,0.00167,0.00173,0,0,0,0,0,0,0.00326,0.00236,0.00155,0.0016,0,0,0,0,0,0,0.08586,0.12696,0.1798,0.59575,0,0,0,0,0,0,0.07547,0.11512,0.16492,0.56352,0,0,0,0,0,0,0.08347,0.13007,0.18393,0.65564,0,0,0,0,0,0,0.097,0.14287,0.20141,0.68613,0,0,0,0,0,0,0.05604,0.09956,0.15044,0.58993,0,0,0,0,0,0,0.05965,0.10373,0.15463,0.60458,0,0,0,0,0,0,0.05659,0.09733,0.14747,0.57396,0,0,0,0,0,0,0.07098,0.11084,0.16694,0.61349,0,0,0,0,0,0,0.05187,0.08729,0.14693,0.54041,0,0,0,0,0 +Minivan,PH40G,2015,0,0,0.02105,0.02153,0.02214,0.02406,0,0,0,0,0,0,0.02169,0.02213,0.02267,0.02433,0,0,0,0,0,0,0.02363,0.02419,0.02476,0.02656,0,0,0,0,0,0,0.01965,0.02016,0.02079,0.02284,0,0,0,0,0,0,0.02316,0.02346,0.02384,0.02483,0,0,0,0,0,0,0.021,0.02136,0.02177,0.0229,0,0,0,0,0,0,0.0211,0.02137,0.02171,0.02259,0,0,0,0,0,0,0.02218,0.02257,0.02301,0.0243,0,0,0,0,0,0,0.02198,0.02228,0.02261,0.02347,0,0,0,0,0,0,0.00805,0.00623,0.00667,0.01002,0,0,0,0,0,0,0.0074,0.00575,0.00625,0.00931,0,0,0,0,0,0,0.00768,0.0064,0.00697,0.01073,0,0,0,0,0,0,0.00842,0.00705,0.00766,0.01172,0,0,0,0,0,0,0.00573,0.00513,0.00589,0.00878,0,0,0,0,0,0,0.00608,0.00543,0.00618,0.00929,0,0,0,0,0,0,0.00577,0.00512,0.0059,0.00871,0,0,0,0,0,0,0.00636,0.00562,0.00627,0.00941,0,0,0,0,0,0,0.00479,0.00502,0.00571,0.00826,0,0,0,0,0,0,1.20946,2.16828,2.95967,4.46943,0,0,0,0,0,0,1.20605,2.16593,2.9716,4.44162,0,0,0,0,0,0,1.32541,2.39526,3.36397,5.2091,0,0,0,0,0,0,1.31936,2.55072,3.58753,5.51337,0,0,0,0,0,0,1.15925,2.33057,3.30072,4.96191,0,0,0,0,0,0,1.2123,2.38725,3.38787,5.14376,0,0,0,0,0,0,1.19222,2.39774,3.3887,5.0806,0,0,0,0,0,0,1.21916,2.36381,3.29637,4.96617,0,0,0,0,0,0,1.09269,2.12101,2.93067,4.35071,0,0,0,0,0,0,208.90289,210.10545,212.07411,233.92207,0,0,0,0,0,0,210.65993,211.72602,213.50303,235.13312,0,0,0,0,0,0,213.57494,214.72084,216.61797,238.73532,0,0,0,0,0,0,208.76815,209.92794,211.84557,233.58344,0,0,0,0,0,0,214.42223,215.01792,216.13277,236.80911,0,0,0,0,0,0,210.91686,211.65007,212.95748,233.70185,0,0,0,0,0,0,212.89901,213.44445,214.49048,234.89937,0,0,0,0,0,0,212.65933,213.45823,214.85921,235.9354,0,0,0,0,0,0,209.53696,210.22218,211.44203,231.89469,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.00661,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00668,0,0,0,0,0,0,0.00284,0.00325,0.00384,0.0065,0,0,0,0,0,0,0.00294,0.00335,0.00395,0.00666,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.00654,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00293,0.00334,0.00394,0.00665,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00671,0,0,0,0,0,0,0.00947,0.0108,0.01374,0.01445,0,0,0,0,0,0,0.00948,0.01081,0.01376,0.01446,0,0,0,0,0,0,0.00948,0.0108,0.01375,0.01446,0,0,0,0,0,0,0.00943,0.01075,0.01369,0.01439,0,0,0,0,0,0,0.00947,0.01079,0.01374,0.01445,0,0,0,0,0,0,0.00944,0.01076,0.0137,0.0144,0,0,0,0,0,0,0.00947,0.01079,0.01373,0.01444,0,0,0,0,0,0,0.00949,0.01081,0.01376,0.01447,0,0,0,0,0,0,0.00951,0.01083,0.01379,0.0145,0,0,0,0,0,0,0.06363,0.07889,0.11795,0.21915,0,0,0,0,0,0,0.0633,0.07755,0.11629,0.21619,0,0,0,0,0,0,0.06331,0.0835,0.12449,0.2399,0,0,0,0,0,0,0.06635,0.08912,0.1328,0.25532,0,0,0,0,0,0,0.05817,0.07756,0.11713,0.23003,0,0,0,0,0,0,0.06086,0.08101,0.12191,0.23739,0,0,0,0,0,0,0.05958,0.07843,0.1186,0.22974,0,0,0,0,0,0,0.06332,0.08649,0.12954,0.24752,0,0,0,0,0,0,0.04577,0.07747,0.11635,0.21957,0,0,0,0,0,0,0.00118,0.002,0.00292,0.00564,0,0,0,0,0,0,0.00112,0.00191,0.00277,0.00519,0,0,0,0,0,0,0.00102,0.00194,0.00283,0.0054,0,0,0,0,0,0,0.00118,0.00204,0.00298,0.00582,0,0,0,0,0,0,0.00102,0.00166,0.00236,0.004,0,0,0,0,0,0,0.00098,0.00169,0.00242,0.00422,0,0,0,0,0,0,0.00097,0.00158,0.00223,0.00376,0,0,0,0,0,0,0.001,0.00175,0.00251,0.0045,0,0,0,0,0,0,0.00087,0.00154,0.00218,0.00367,0,0,0,0,0,0,0.02301,0.02484,0.02695,0.03332,0,0,0,0,0,0,0.02356,0.02529,0.02725,0.03288,0,0,0,0,0,0,0.02533,0.0274,0.02943,0.03544,0,0,0,0,0,0,0.02162,0.02352,0.0257,0.0324,0,0,0,0,0,0,0.02486,0.02622,0.02775,0.03146,0,0,0,0,0,0,0.02265,0.02418,0.02578,0.02986,0,0,0,0,0,0,0.02272,0.02401,0.02543,0.02882,0,0,0,0,0,0,0.02385,0.02547,0.02717,0.03173,0,0,0,0,0,0,0.02343,0.02485,0.02624,0.02957,0,0,0,0,0,0,0.00494,0.00656,0.00843,0.01406,0,0,0,0,0,0,0.00489,0.00643,0.00816,0.01314,0,0,0,0,0,0,0.00493,0.00677,0.00856,0.01388,0,0,0,0,0,0,0.00478,0.00647,0.00839,0.01432,0,0,0,0,0,0,0.00483,0.00604,0.00739,0.01067,0,0,0,0,0,0,0.00451,0.00586,0.00728,0.01089,0,0,0,0,0,0,0.00448,0.00562,0.00687,0.00988,0,0,0,0,0,0,0.0047,0.00614,0.00764,0.01167,0,0,0,0,0,0,0.0044,0.00566,0.00688,0.00983,0,0,0,0,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.00403,0.00135,0.00136,0.0015,0,0,0,0,0,0,0.00409,0.00137,0.00138,0.00152,0,0,0,0,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.0041,0.00137,0.00138,0.00151,0,0,0,0,0,0,0.00404,0.00135,0.00136,0.00149,0,0,0,0,0,0,0.00407,0.00136,0.00137,0.0015,0,0,0,0,0,0,0.00365,0.00134,0.00135,0.00148,0,0,0,0,0,0,0.00189,0.00124,0.00125,0.00137,0,0,0,0,0,0,0.06107,0.08856,0.14503,0.35368,0,0,0,0,0,0,0.05602,0.08205,0.13702,0.33849,0,0,0,0,0,0,0.05982,0.09044,0.15099,0.37484,0,0,0,0,0,0,0.06432,0.09805,0.16208,0.39252,0,0,0,0,0,0,0.04478,0.07489,0.13466,0.34278,0,0,0,0,0,0,0.04682,0.07721,0.13691,0.34637,0,0,0,0,0,0,0.04432,0.07383,0.13301,0.33611,0,0,0,0,0,0,0.05163,0.08321,0.14411,0.35965,0,0,0,0,0,0,0.04191,0.07401,0.13211,0.33009,0,0,0,0 +Minivan,PH40G,2020,0,0,0,0.02099,0.02138,0.02179,0.02316,0,0,0,0,0,0,0.02164,0.022,0.02236,0.02357,0,0,0,0,0,0,0.02368,0.02405,0.02443,0.02572,0,0,0,0,0,0,0.01959,0.02,0.02042,0.02187,0,0,0,0,0,0,0.02312,0.02337,0.02362,0.02441,0,0,0,0,0,0,0.02099,0.02126,0.02153,0.02241,0,0,0,0,0,0,0.02106,0.02129,0.02151,0.02222,0,0,0,0,0,0,0.02216,0.02246,0.02276,0.02373,0,0,0,0,0,0,0.02198,0.02221,0.02242,0.02311,0,0,0,0,0,0,0.00622,0.00531,0.00528,0.00725,0,0,0,0,0,0,0.00559,0.00486,0.00487,0.00671,0,0,0,0,0,0,0.00588,0.0054,0.00543,0.0077,0,0,0,0,0,0,0.0065,0.00598,0.006,0.00847,0,0,0,0,0,0,0.00398,0.00413,0.00431,0.00622,0,0,0,0,0,0,0.00433,0.00442,0.00458,0.00661,0,0,0,0,0,0,0.00396,0.00411,0.0043,0.00619,0,0,0,0,0,0,0.00482,0.00462,0.00472,0.00671,0,0,0,0,0,0,0.00407,0.00401,0.00416,0.00586,0,0,0,0,0,0,0.99206,1.52807,1.92959,2.9974,0,0,0,0,0,0,0.97371,1.51164,1.91354,2.97491,0,0,0,0,0,0,1.02676,1.67356,2.16254,3.49728,0,0,0,0,0,0,1.09388,1.78868,2.31873,3.72493,0,0,0,0,0,0,0.92531,1.57942,2.04718,3.30587,0,0,0,0,0,0,0.9563,1.62959,2.11972,3.44477,0,0,0,0,0,0,0.95705,1.62668,2.10664,3.39496,0,0,0,0,0,0,0.98782,1.62281,2.08061,3.31894,0,0,0,0,0,0,0.88084,1.44133,1.8306,2.88136,0,0,0,0,0,0,179.40777,180.59417,182.57119,199.38448,0,0,0,0,0,0,180.84125,181.91036,183.716,200.31641,0,0,0,0,0,0,183.38144,184.52199,186.43889,203.43358,0,0,0,0,0,0,179.28322,180.43242,182.36328,199.08663,0,0,0,0,0,0,183.81824,184.48271,185.69332,201.40737,0,0,0,0,0,0,180.89197,181.67301,183.05444,198.87244,0,0,0,0,0,0,182.49343,183.11355,184.26012,199.76077,0,0,0,0,0,0,182.41445,183.25373,184.7213,200.80969,0,0,0,0,0,0,179.66247,180.40088,181.70163,197.27036,0,0,0,0,0,0,0.00297,0.00336,0.00395,0.00534,0,0,0,0,0,0,0.00298,0.00336,0.00395,0.00533,0,0,0,0,0,0,0.00302,0.00341,0.004,0.00539,0,0,0,0,0,0,0.00291,0.00329,0.00387,0.00525,0,0,0,0,0,0,0.00301,0.00339,0.00398,0.00537,0,0,0,0,0,0,0.00294,0.00333,0.00391,0.00528,0,0,0,0,0,0,0.00297,0.00335,0.00394,0.00533,0,0,0,0,0,0,0.003,0.00338,0.00397,0.00537,0,0,0,0,0,0,0.00302,0.00341,0.00401,0.00541,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01375,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01374,0,0,0,0,0,0,0.00941,0.01082,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01083,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01088,0.01375,0.01375,0,0,0,0,0,0,0.00948,0.0109,0.01378,0.01378,0,0,0,0,0,0,0.04319,0.07113,0.09563,0.13529,0,0,0,0,0,0,0.04245,0.06984,0.09407,0.13307,0,0,0,0,0,0,0.04277,0.0749,0.10023,0.14497,0,0,0,0,0,0,0.04512,0.08024,0.10733,0.15532,0,0,0,0,0,0,0.03788,0.06898,0.09306,0.13578,0,0,0,0,0,0,0.04,0.07245,0.09754,0.1417,0,0,0,0,0,0,0.03881,0.07,0.09457,0.1369,0,0,0,0,0,0,0.04413,0.0775,0.10403,0.14951,0,0,0,0,0,0,0.0401,0.06925,0.09321,0.13276,0,0,0,0,0,0,0.00108,0.00175,0.00233,0.00418,0,0,0,0,0,0,0.00103,0.00167,0.00221,0.00391,0,0,0,0,0,0,0.00105,0.0017,0.00226,0.00403,0,0,0,0,0,0,0.00109,0.00177,0.00237,0.00429,0,0,0,0,0,0,0.00092,0.00146,0.00189,0.00319,0,0,0,0,0,0,0.00093,0.00149,0.00194,0.00331,0,0,0,0,0,0,0.00087,0.00139,0.00179,0.003,0,0,0,0,0,0,0.00096,0.00153,0.00201,0.00348,0,0,0,0,0,0,0.00085,0.00135,0.00175,0.00292,0,0,0,0,0,0,0.02277,0.02427,0.02563,0.03002,0,0,0,0,0,0,0.02336,0.02476,0.02602,0.03001,0,0,0,0,0,0,0.02541,0.02686,0.02816,0.03234,0,0,0,0,0,0,0.02139,0.02293,0.02433,0.02891,0,0,0,0,0,0,0.02464,0.0258,0.02676,0.02969,0,0,0,0,0,0,0.02253,0.02373,0.02475,0.02788,0,0,0,0,0,0,0.02251,0.0236,0.0245,0.02719,0,0,0,0,0,0,0.02375,0.02501,0.02609,0.02947,0,0,0,0,0,0,0.0234,0.02446,0.02534,0.02796,0,0,0,0,0,0,0.00473,0.00606,0.00726,0.01114,0,0,0,0,0,0,0.00472,0.00596,0.00707,0.0106,0,0,0,0,0,0,0.00501,0.00629,0.00744,0.01114,0,0,0,0,0,0,0.00459,0.00595,0.00718,0.01123,0,0,0,0,0,0,0.00464,0.00566,0.00652,0.00911,0,0,0,0,0,0,0.00441,0.00547,0.00637,0.00914,0,0,0,0,0,0,0.0043,0.00526,0.00605,0.00843,0,0,0,0,0,0,0.00461,0.00573,0.00668,0.00967,0,0,0,0,0,0,0.00437,0.00531,0.00608,0.0084,0,0,0,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00128,0,0,0,0,0,0,0.00117,0.00118,0.00119,0.0013,0,0,0,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00117,0.00118,0.00118,0.00128,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00127,0,0,0,0,0,0,0.00116,0.00117,0.00118,0.00127,0,0,0,0,0,0,0.00115,0.00115,0.00116,0.00126,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00116,0,0,0,0,0,0,0.05341,0.07612,0.11524,0.26525,0,0,0,0,0,0,0.04838,0.06964,0.10722,0.2538,0,0,0,0,0,0,0.05156,0.0772,0.11885,0.27833,0,0,0,0,0,0,0.05602,0.08414,0.12819,0.29028,0,0,0,0,0,0,0.03717,0.06063,0.10004,0.2557,0,0,0,0,0,0,0.03927,0.06344,0.1031,0.25731,0,0,0,0,0,0,0.0365,0.05927,0.0978,0.25022,0,0,0,0,0,0,0.04437,0.06883,0.1096,0.26769,0,0,0,0,0,0,0.03732,0.05944,0.09752,0.24821,0,0,0 +Minivan,PH40G,2025,0,0,0,0,0.0208,0.02104,0.0213,0.02238,0,0,0,0,0,0,0.02147,0.02169,0.02192,0.02288,0,0,0,0,0,0,0.02349,0.02373,0.02397,0.02499,0,0,0,0,0,0,0.01939,0.01965,0.01992,0.02104,0,0,0,0,0,0,0.02299,0.02315,0.0233,0.02395,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.0219,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.0218,0,0,0,0,0,0,0.02202,0.0222,0.02239,0.02317,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02271,0,0,0,0,0,0,0.00492,0.00386,0.00374,0.00549,0,0,0,0,0,0,0.00427,0.00341,0.00333,0.00499,0,0,0,0,0,0,0.0046,0.0038,0.00372,0.00575,0,0,0,0,0,0,0.00517,0.00426,0.00416,0.00637,0,0,0,0,0,0,0.00261,0.00245,0.00253,0.0043,0,0,0,0,0,0,0.00298,0.00273,0.00278,0.00466,0,0,0,0,0,0,0.00255,0.0024,0.00249,0.00425,0,0,0,0,0,0,0.00346,0.00299,0.003,0.00481,0,0,0,0,0,0,0.00263,0.00238,0.00244,0.00403,0,0,0,0,0,0,0.66178,0.9675,1.23518,2.08322,0,0,0,0,0,0,0.63104,0.93411,1.19784,2.0427,0,0,0,0,0,0,0.67437,1.04187,1.35999,2.41971,0,0,0,0,0,0,0.72303,1.12145,1.46792,2.59248,0,0,0,0,0,0,0.54623,0.9063,1.19724,2.19896,0,0,0,0,0,0,0.57771,0.95224,1.26003,2.3157,0,0,0,0,0,0,0.56408,0.93382,1.23279,2.26084,0,0,0,0,0,0,0.61098,0.96542,1.25666,2.24153,0,0,0,0,0,0,0.5244,0.83354,1.07725,1.911,0,0,0,0,0,0,147.83877,148.5656,150.03975,167.74222,0,0,0,0,0,0,148.95279,149.57707,150.89656,168.40381,0,0,0,0,0,0,151.07933,151.76098,153.17582,171.08617,0,0,0,0,0,0,147.72954,148.42581,149.86082,167.47969,0,0,0,0,0,0,151.1798,151.45314,152.23791,168.90959,0,0,0,0,0,0,148.84387,149.22183,150.16391,166.91435,0,0,0,0,0,0,150.07392,150.31158,151.04251,167.49902,0,0,0,0,0,0,150.12127,150.54642,151.56239,168.58579,0,0,0,0,0,0,147.78842,148.13016,148.99882,165.4903,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00304,0.0034,0.00398,0.00518,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00503,0,0,0,0,0,0,0.00303,0.00339,0.00397,0.00516,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00507,0,0,0,0,0,0,0.00299,0.00335,0.00392,0.00511,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00515,0,0,0,0,0,0,0.00304,0.0034,0.00399,0.0052,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.0265,0.03999,0.05369,0.09116,0,0,0,0,0,0,0.02562,0.03874,0.05217,0.08907,0,0,0,0,0,0,0.02589,0.04123,0.05522,0.09728,0,0,0,0,0,0,0.02746,0.04433,0.05933,0.10468,0,0,0,0,0,0,0.02139,0.03597,0.04887,0.08873,0,0,0,0,0,0,0.02313,0.03846,0.05201,0.09353,0,0,0,0,0,0,0.02193,0.03659,0.04975,0.08946,0,0,0,0,0,0,0.02566,0.04146,0.05588,0.09885,0,0,0,0,0,0,0.02278,0.03656,0.04954,0.08688,0,0,0,0.00947,0.0134,0,0.00071,0.00113,0.0015,0.00301,0,0,0,0.00828,0.01168,0,0.00068,0.00108,0.00143,0.00283,0,0,0,0.00897,0.01273,0,0.00069,0.00109,0.00146,0.0029,0,0,0,0.00981,0.01396,0,0.00072,0.00114,0.00153,0.00307,0,0,0,0.00496,0.00694,0,0.0006,0.00094,0.00123,0.00233,0,0,0,0.00571,0.00831,0,0.00061,0.00096,0.00126,0.00241,0,0,0,0.00488,0.0068,0,0.00058,0.0009,0.00116,0.00218,0,0,0,0.00658,0.00926,0,0.00063,0.00099,0.0013,0.00252,0,0,0,0.005,0.00696,0,0.00056,0.00088,0.00113,0.00214,0,0,0,0.04066,0.04951,0,0.02198,0.02291,0.02378,0.02732,0,0,0,0.03875,0.04638,0,0.0226,0.02348,0.02428,0.02753,0,0,0,0.04238,0.05085,0,0.02464,0.02554,0.02638,0.02976,0,0,0,0.04011,0.04949,0,0.02058,0.02154,0.02244,0.02608,0,0,0,0.03316,0.0375,0,0.02399,0.02471,0.02534,0.0278,0,0,0,0.03263,0.03849,0,0.02187,0.02262,0.02328,0.02588,0,0,0,0.0309,0.0351,0,0.0219,0.02258,0.02316,0.02542,0,0,0,0.03567,0.04162,0,0.02307,0.02385,0.02455,0.02734,0,0,0,0.03207,0.03634,0,0.0228,0.02347,0.02403,0.02626,0,0,0,0.02056,0.02839,0,0.00403,0.00485,0.00562,0.00875,0,0,0,0.01834,0.02509,0,0.00405,0.00482,0.00554,0.00841,0,0,0,0.02002,0.02752,0,0.00433,0.00512,0.00586,0.00885,0,0,0,0.02115,0.02945,0,0.00387,0.00471,0.00551,0.00873,0,0,0,0.01218,0.01602,0,0.00407,0.0047,0.00526,0.00743,0,0,0,0.01334,0.01846,0,0.00382,0.00448,0.00506,0.00737,0,0,0,0.01172,0.01544,0,0.00375,0.00435,0.00487,0.00687,0,0,0,0.01516,0.02042,0,0.00401,0.0047,0.00532,0.00779,0,0,0,0.01205,0.01582,0,0.00384,0.00443,0.00493,0.00691,0,0,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.00109,0,0,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00097,0.00108,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00106,0,0,0,0,0,0,0.00096,0.00096,0.00096,0.00107,0,0,0,0,0,0,0.00094,0.00095,0.00095,0.00106,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00098,0,0,0,0,0,0,0.04543,0.05964,0.08818,0.22467,0,0,0,0,0,0,0.04023,0.05306,0.08002,0.21368,0,0,0,0,0,0,0.04351,0.05933,0.08944,0.2346,0,0,0,0,0,0,0.04783,0.06536,0.0972,0.24394,0,0,0,0,0,0,0.02813,0.04123,0.06826,0.21042,0,0,0,0,0,0,0.03059,0.0444,0.07181,0.21262,0,0,0,0,0,0,0.02727,0.03955,0.06551,0.20423,0,0,0,0,0,0,0.03528,0.04953,0.07808,0.22178,0,0,0,0,0,0,0.02777,0.03996,0.06598,0.20394,0,0 +Minivan,PH40G,2030,0,0,0,0,0,0.0208,0.02104,0.02129,0.02202,0,0,0,0,0,0,0.02147,0.02169,0.02191,0.02257,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02465,0,0,0,0,0,0,0.01939,0.01964,0.0199,0.02067,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02374,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.02167,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.02161,0,0,0,0,0,0,0.02201,0.0222,0.02238,0.02291,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02252,0,0,0,0,0,0,0.00455,0.00347,0.00337,0.00458,0,0,0,0,0,0,0.00391,0.00302,0.00296,0.00409,0,0,0,0,0,0,0.00424,0.00337,0.00331,0.00467,0,0,0,0,0,0,0.00479,0.0038,0.00372,0.0052,0,0,0,0,0,0,0.00223,0.00201,0.00209,0.00318,0,0,0,0,0,0,0.0026,0.00228,0.00234,0.00351,0,0,0,0,0,0,0.00216,0.00196,0.00205,0.00313,0,0,0,0,0,0,0.00308,0.00256,0.00258,0.00374,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00301,0,0,0,0,0,0,0.58559,0.85434,1.10349,1.64391,0,0,0,0,0,0,0.55211,0.81785,1.06129,1.59145,0,0,0,0,0,0,0.59301,0.91344,1.20586,1.86989,0,0,0,0,0,0,0.63713,0.98481,1.30299,2.01056,0,0,0,0,0,0,0.45912,0.77028,1.03065,1.63208,0,0,0,0,0,0,0.4905,0.81464,1.09123,1.73174,0,0,0,0,0,0,0.47362,0.79327,1.06122,1.67854,0,0,0,0,0,0,0.52395,0.83228,1.09601,1.69965,0,0,0,0,0,0,0.44194,0.71054,0.92995,1.43299,0,0,0,0,0,0,135.38297,136.63864,138.73799,150.23079,0,0,0,0,0,0,136.3743,137.53975,139.49517,150.75644,0,0,0,0,0,0,138.33607,139.56287,141.62039,153.192,0,0,0,0,0,0,135.28045,136.50771,138.57013,149.99007,0,0,0,0,0,0,138.3167,139.16703,140.61766,150.98435,0,0,0,0,0,0,136.20994,137.14778,138.73931,149.27268,0,0,0,0,0,0,137.29769,138.11108,139.50502,149.70743,0,0,0,0,0,0,137.38947,138.37583,140.04413,150.79217,0,0,0,0,0,0,135.22477,136.12443,137.63836,147.95375,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.00511,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.0051,0,0,0,0,0,0,0.00304,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00293,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00303,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00296,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00301,0.00337,0.00396,0.00514,0,0,0,0,0,0,0.00304,0.00339,0.00399,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.01081,0.01368,0.01368,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01082,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01087,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02145,0.03182,0.0438,0.06849,0,0,0,0,0,0,0.02053,0.03058,0.04228,0.06642,0,0,0,0,0,0,0.02069,0.0323,0.0445,0.07183,0,0,0,0,0,0,0.02195,0.03471,0.04776,0.07729,0,0,0,0,0,0,0.01633,0.02723,0.03835,0.06353,0,0,0,0,0,0,0.01792,0.0294,0.04112,0.06757,0,0,0,0,0,0,0.01676,0.02772,0.03905,0.06418,0,0,0,0,0,0,0.02,0.03192,0.04444,0.07192,0,0,0,0,0,0,0.01752,0.02798,0.03927,0.06295,0,0,0.0041,0.0056,0.00914,0,0.00071,0.00112,0.0015,0.00249,0,0,0.00366,0.005,0.00809,0,0.00068,0.00108,0.00142,0.00234,0,0,0.00395,0.00541,0.0088,0,0.00069,0.00109,0.00145,0.0024,0,0,0.00422,0.00579,0.00952,0,0.00072,0.00114,0.00152,0.00254,0,0,0.00245,0.00334,0.00519,0,0.0006,0.00094,0.00122,0.00193,0,0,0.00271,0.0038,0.00583,0,0.00061,0.00096,0.00125,0.002,0,0,0.00241,0.00328,0.00508,0,0.00058,0.0009,0.00115,0.00182,0,0,0.00304,0.00415,0.00661,0,0.00063,0.00099,0.0013,0.00209,0,0,0.00247,0.00336,0.00519,0,0.00056,0.00087,0.00113,0.00178,0,0,0.02917,0.03256,0.04053,0,0.02197,0.0229,0.02376,0.02611,0,0,0.0289,0.03189,0.0388,0,0.0226,0.02347,0.02426,0.02641,0,0,0.03158,0.03488,0.04254,0,0.02464,0.02553,0.02635,0.0286,0,0,0.02806,0.03163,0.04008,0,0.02058,0.02153,0.02241,0.02484,0,0,0.02784,0.02978,0.03383,0,0.02399,0.02471,0.02533,0.02693,0,0,0.02625,0.02876,0.03312,0,0.02187,0.02261,0.02326,0.02497,0,0,0.0257,0.02759,0.03151,0,0.0219,0.02257,0.02314,0.02462,0,0,0.02813,0.03059,0.03603,0,0.02306,0.02384,0.02453,0.02637,0,0,0.02675,0.02867,0.03264,0,0.0228,0.02346,0.02403,0.02547,0,0,0.01039,0.01339,0.02044,0,0.00402,0.00484,0.0056,0.00768,0,0,0.00962,0.01227,0.01838,0,0.00404,0.00482,0.00552,0.00742,0,0,0.01047,0.01339,0.02016,0,0.00432,0.00512,0.00584,0.00783,0,0,0.01049,0.01365,0.02112,0,0.00387,0.00471,0.00548,0.00764,0,0,0.00747,0.00919,0.01277,0,0.00406,0.0047,0.00525,0.00667,0,0,0.0077,0.00984,0.01378,0,0.00382,0.00448,0.00505,0.00657,0,0,0.00712,0.00879,0.01226,0,0.00375,0.00435,0.00485,0.00616,0,0,0.00849,0.01067,0.01548,0,0.004,0.00469,0.00531,0.00693,0,0,0.00733,0.00903,0.01255,0,0.00384,0.00443,0.00493,0.0062,0,0,0,0,0,0,0.00086,0.00087,0.00089,0.00096,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00098,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00096,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00095,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00095,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00087,0,0,0,0,0,0,0.0431,0.05549,0.08243,0.19874,0,0,0,0,0,0,0.0379,0.04894,0.07427,0.18756,0,0,0,0,0,0,0.04116,0.0548,0.08314,0.2054,0,0,0,0,0,0,0.0454,0.06055,0.09046,0.21365,0,0,0,0,0,0,0.02565,0.03653,0.0615,0.17931,0,0,0,0,0,0,0.02816,0.03971,0.0651,0.1819,0,0,0,0,0,0,0.02475,0.03481,0.05865,0.17291,0,0,0,0,0,0,0.03274,0.04483,0.07135,0.19132,0,0,0,0,0,0,0.02515,0.03527,0.05933,0.17412,0 +Minivan,PH40G,2035,0,0,0,0,0,0,0.0208,0.02104,0.0213,0.0219,0,0,0,0,0,0,0.02147,0.02168,0.02192,0.02246,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02454,0,0,0,0,0,0,0.01939,0.01964,0.01991,0.02055,0,0,0,0,0,0,0.02298,0.02314,0.0233,0.02366,0,0,0,0,0,0,0.02085,0.02101,0.02119,0.02159,0,0,0,0,0,0,0.02093,0.02108,0.02122,0.02154,0,0,0,0,0,0,0.02201,0.0222,0.02239,0.02282,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02245,0,0,0,0,0,0,0.00454,0.00347,0.00336,0.00425,0,0,0,0,0,0,0.0039,0.00303,0.00296,0.00376,0,0,0,0,0,0,0.00423,0.00338,0.00331,0.00425,0,0,0,0,0,0,0.00478,0.00381,0.00371,0.00476,0,0,0,0,0,0,0.00222,0.00201,0.00209,0.00275,0,0,0,0,0,0,0.00259,0.00228,0.00234,0.00307,0,0,0,0,0,0,0.00215,0.00196,0.00205,0.0027,0,0,0,0,0,0,0.00307,0.00256,0.00258,0.00334,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00263,0,0,0,0,0,0,0.58434,0.85662,1.10126,1.49242,0,0,0,0,0,0,0.55093,0.8194,1.05957,1.43587,0,0,0,0,0,0,0.59172,0.91542,1.20375,1.67532,0,0,0,0,0,0,0.63576,0.98675,1.30085,1.8038,0,0,0,0,0,0,0.45804,0.76944,1.03048,1.4328,0,0,0,0,0,0,0.48935,0.81421,1.09075,1.52526,0,0,0,0,0,0,0.47257,0.79278,1.06081,1.47356,0,0,0,0,0,0,0.5227,0.83228,1.09525,1.51029,0,0,0,0,0,0,0.4409,0.71023,0.92953,1.26793,0,0,0,0,0,0,135.35035,136.63097,138.72659,144.30938,0,0,0,0,0,0,136.34407,137.5329,139.48452,144.793,0,0,0,0,0,0,138.30412,139.55545,141.60923,147.14325,0,0,0,0,0,0,135.2482,136.50027,138.55892,144.07655,0,0,0,0,0,0,138.29444,139.16229,140.60971,144.94019,0,0,0,0,0,0,136.18545,137.14241,138.73072,143.32004,0,0,0,0,0,0,137.27632,138.10654,139.49763,143.70931,0,0,0,0,0,0,137.3638,138.37006,140.03504,144.78679,0,0,0,0,0,0,135.20198,136.11957,137.63026,142.03885,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.00511,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00292,0.00327,0.00385,0.00502,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00505,0,0,0,0,0,0,0.00297,0.00333,0.00392,0.0051,0,0,0,0,0,0,0.003,0.00337,0.00395,0.00513,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01368,0.01368,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02138,0.03171,0.04382,0.06004,0,0,0,0,0,0,0.02046,0.03048,0.0423,0.05797,0,0,0,0,0,0,0.02062,0.03218,0.04452,0.06213,0,0,0,0,0,0,0.02187,0.03456,0.0478,0.06679,0,0,0,0,0,0,0.01628,0.02714,0.03837,0.0539,0,0,0,0,0,0,0.01786,0.0293,0.04114,0.05763,0,0,0,0,0,0,0.0167,0.02761,0.03908,0.05456,0,0,0,0,0,0,0.01993,0.03183,0.04445,0.06169,0,0,0,0,0,0,0.01747,0.02793,0.03926,0.05396,0,0.00141,0.0025,0.00348,0.00666,0,0.00071,0.00112,0.0015,0.0023,0,0.00132,0.00232,0.00322,0.00602,0,0.00068,0.00107,0.00142,0.00217,0,0.00138,0.00245,0.00341,0.00649,0,0.00069,0.00108,0.00145,0.00222,0,0.00144,0.00257,0.0036,0.00694,0,0.00071,0.00113,0.00152,0.00236,0,0.00109,0.00188,0.00255,0.00432,0,0.0006,0.00094,0.00122,0.00179,0,0.00113,0.00199,0.00268,0.00468,0,0.00061,0.00095,0.00125,0.00186,0,0.00108,0.00187,0.00253,0.00424,0,0.00057,0.00089,0.00116,0.00169,0,0.0012,0.0021,0.00288,0.00515,0,0.00063,0.00098,0.0013,0.00194,0,0.0011,0.0019,0.00257,0.00431,0,0.00056,0.00087,0.00113,0.00165,0,0.02354,0.02602,0.02829,0.03557,0,0.02197,0.02289,0.02377,0.02569,0,0.02401,0.02626,0.02831,0.03467,0,0.02259,0.02345,0.02427,0.02603,0,0.0262,0.02862,0.03086,0.03791,0,0.02463,0.02551,0.02636,0.0282,0,0.02222,0.02481,0.02721,0.03492,0,0.02057,0.0215,0.02242,0.02442,0,0.02501,0.02671,0.02818,0.03209,0,0.02399,0.0247,0.02533,0.02663,0,0.02297,0.02495,0.02637,0.03083,0,0.02186,0.0226,0.02327,0.02466,0,0.02295,0.02463,0.02606,0.02984,0,0.02189,0.02256,0.02315,0.02435,0,0.0243,0.02628,0.02803,0.03313,0,0.02306,0.02383,0.02454,0.02603,0,0.02393,0.02563,0.02707,0.0309,0,0.0228,0.02346,0.02403,0.02519,0,0.00541,0.0076,0.00962,0.01606,0,0.00402,0.00483,0.00561,0.00731,0,0.00529,0.00729,0.0091,0.01473,0,0.00404,0.0048,0.00552,0.00708,0,0.0057,0.00785,0.00983,0.01607,0,0.00432,0.0051,0.00585,0.00747,0,0.00533,0.00761,0.00974,0.01656,0,0.00386,0.00468,0.00549,0.00726,0,0.00497,0.00648,0.00777,0.01123,0,0.00406,0.00469,0.00525,0.0064,0,0.0048,0.00648,0.00781,0.01175,0,0.00382,0.00447,0.00506,0.00628,0,0.00469,0.00617,0.00743,0.01078,0,0.00375,0.00434,0.00486,0.00592,0,0.0051,0.00685,0.0084,0.01292,0,0.004,0.00468,0.00531,0.00663,0,0.00484,0.00635,0.00762,0.01101,0,0.00384,0.00442,0.00493,0.00595,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00094,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00092,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00091,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00091,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00084,0,0,0,0,0,0,0.04295,0.05549,0.08233,0.18911,0,0,0,0,0,0,0.03776,0.04893,0.07418,0.17783,0,0,0,0,0,0,0.04102,0.05482,0.08302,0.19431,0,0,0,0,0,0,0.04524,0.06054,0.09035,0.20215,0,0,0,0,0,0,0.02556,0.03646,0.06147,0.16754,0,0,0,0,0,0,0.02806,0.03966,0.06505,0.17021,0,0,0,0,0,0,0.02466,0.03473,0.05863,0.16108,0,0,0,0,0,0,0.03261,0.04471,0.07133,0.17989,0,0,0,0,0,0,0.02506,0.03522,0.05928,0.16298 +Minivan,PH40G,2040,0,0,0,0,0,0,0,0.02079,0.02104,0.0213,0,0,0,0,0,0,0,0.02146,0.02168,0.02192,0,0,0,0,0,0,0,0.02349,0.02372,0.02397,0,0,0,0,0,0,0,0.01939,0.01964,0.01991,0,0,0,0,0,0,0,0.02298,0.02314,0.0233,0,0,0,0,0,0,0,0.02084,0.02102,0.02119,0,0,0,0,0,0,0,0.02093,0.02108,0.02122,0,0,0,0,0,0,0,0.02201,0.0222,0.02239,0,0,0,0,0,0,0,0.02186,0.022,0.02214,0,0,0,0,0,0,0,0.00454,0.00347,0.00336,0,0,0,0,0,0,0,0.0039,0.00302,0.00296,0,0,0,0,0,0,0,0.00424,0.00338,0.0033,0,0,0,0,0,0,0,0.00479,0.0038,0.0037,0,0,0,0,0,0,0,0.00223,0.00201,0.00209,0,0,0,0,0,0,0,0.0026,0.00228,0.00233,0,0,0,0,0,0,0,0.00215,0.00195,0.00205,0,0,0,0,0,0,0,0.00308,0.00256,0.00257,0,0,0,0,0,0,0,0.00223,0.00195,0.00202,0,0,0,0,0,0,0,0.58637,0.85493,1.09898,0,0,0,0,0,0,0,0.55237,0.81808,1.05779,0,0,0,0,0,0,0,0.59375,0.91388,1.20164,0,0,0,0,0,0,0,0.638,0.9852,1.29874,0,0,0,0,0,0,0,0.45771,0.76934,1.03033,0,0,0,0,0,0,0,0.4894,0.8139,1.09031,0,0,0,0,0,0,0,0.47246,0.79251,1.06037,0,0,0,0,0,0,0,0.52294,0.83172,1.09452,0,0,0,0,0,0,0,0.44066,0.70988,0.92911,0,0,0,0,0,0,0,135.31596,136.59718,138.69927,0,0,0,0,0,0,0,136.30965,137.49906,139.45684,0,0,0,0,0,0,0,138.26901,139.52107,141.58116,0,0,0,0,0,0,0,135.21387,136.46656,138.53155,0,0,0,0,0,0,0,138.26032,139.1288,140.58094,0,0,0,0,0,0,0,136.15164,137.10908,138.70261,0,0,0,0,0,0,0,137.24245,138.07339,139.46903,0,0,0,0,0,0,0,137.32947,138.33643,140.00687,0,0,0,0,0,0,0,135.16861,136.08668,137.60238,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00303,0.00339,0.00398,0,0,0,0,0,0,0,0.00292,0.00327,0.00385,0,0,0,0,0,0,0,0.00301,0.00337,0.00396,0,0,0,0,0,0,0,0.00295,0.00331,0.00389,0,0,0,0,0,0,0,0.00297,0.00333,0.00392,0,0,0,0,0,0,0,0.003,0.00336,0.00395,0,0,0,0,0,0,0,0.00302,0.00339,0.00398,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00946,0.01086,0.01374,0,0,0,0,0,0,0,0.00946,0.01085,0.01374,0,0,0,0,0,0,0,0.00941,0.0108,0.01367,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00942,0.01081,0.01369,0,0,0,0,0,0,0,0.00945,0.01084,0.01372,0,0,0,0,0,0,0,0.00947,0.01086,0.01375,0,0,0,0,0,0,0,0.00948,0.01089,0.01378,0,0,0,0,0,0,0,0.0213,0.03172,0.04385,0,0,0,0,0,0,0,0.02039,0.03049,0.04233,0,0,0,0,0,0,0,0.02054,0.0322,0.04456,0,0,0,0,0,0,0,0.02178,0.03459,0.04786,0,0,0,0,0,0,0,0.01622,0.02714,0.03839,0,0,0,0,0,0,0,0.0178,0.02931,0.04117,0,0,0,0,0,0,0,0.01664,0.02762,0.03911,0,0,0,0,0,0,0,0.01988,0.03183,0.04446,0,0,0,0,0,0,0,0.01745,0.02792,0.03924,0,0,0.00135,0.00221,0.00318,0.00524,0,0.0007,0.00112,0.0015,0,0,0.00128,0.00209,0.00299,0.00485,0,0.00067,0.00107,0.00143,0,0,0.00132,0.00217,0.00312,0.00514,0,0.00068,0.00109,0.00146,0,0,0.00136,0.00224,0.00324,0.00539,0,0.00071,0.00113,0.00153,0,0,0.0011,0.00178,0.00249,0.00382,0,0.0006,0.00094,0.00123,0,0,0.00114,0.00184,0.00259,0.00403,0,0.00061,0.00096,0.00126,0,0,0.00109,0.00177,0.00248,0.00378,0,0.00057,0.00089,0.00116,0,0,0.00119,0.00194,0.00274,0.00433,0,0.00063,0.00099,0.0013,0,0,0.00112,0.00181,0.00252,0.00384,0,0.00056,0.00087,0.00113,0,0,0.02336,0.02527,0.0275,0.03234,0,0.02196,0.02289,0.02378,0,0,0.02389,0.02567,0.02771,0.03204,0,0.02258,0.02346,0.02428,0,0,0.02602,0.0279,0.03009,0.03483,0,0.02462,0.02552,0.02637,0,0,0.02199,0.02395,0.02626,0.03137,0,0.02056,0.02151,0.02243,0,0,0.02502,0.02645,0.02801,0.03098,0,0.02398,0.0247,0.02534,0,0,0.02307,0.02446,0.02612,0.02939,0,0.02186,0.0226,0.02327,0,0,0.02297,0.02439,0.02592,0.02882,0,0.02188,0.02256,0.02316,0,0,0.02425,0.02586,0.02765,0.03129,0,0.02305,0.02383,0.02454,0,0,0.02395,0.02539,0.02694,0.02986,0,0.0228,0.02346,0.02403,0,0,0.00526,0.00695,0.00892,0.0132,0,0.00401,0.00483,0.00562,0,0,0.00519,0.00677,0.00857,0.0124,0,0.00403,0.00481,0.00553,0,0,0.00555,0.00722,0.00915,0.01334,0,0.00431,0.00511,0.00586,0,0,0.00513,0.00686,0.0089,0.01342,0,0.00385,0.00469,0.00551,0,0,0.00498,0.00624,0.00762,0.01025,0,0.00405,0.00469,0.00526,0,0,0.00482,0.00611,0.00758,0.01048,0,0.00381,0.00447,0.00506,0,0,0.00471,0.00596,0.00732,0.00988,0,0.00374,0.00434,0.00486,0,0,0.00506,0.00648,0.00807,0.01129,0,0.004,0.00469,0.00532,0,0,0.00486,0.00614,0.00751,0.01009,0,0.00384,0.00442,0.00493,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00087,0.00088,0.00089,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00087,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00088,0.00089,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.0008,0.0008,0.00081,0,0,0,0,0,0,0,0.04297,0.05543,0.08229,0,0,0,0,0,0,0,0.03778,0.04888,0.07415,0,0,0,0,0,0,0,0.04107,0.05476,0.08297,0,0,0,0,0,0,0,0.04526,0.06049,0.09033,0,0,0,0,0,0,0,0.02553,0.03646,0.0615,0,0,0,0,0,0,0,0.02805,0.03965,0.06506,0,0,0,0,0,0,0,0.02463,0.03474,0.05867,0,0,0,0,0,0,0,0.03255,0.04473,0.0714,0,0,0,0,0,0,0,0.02504,0.03521,0.05929 +Minivan,PH40G,2045,0,0,0,0,0,0,0,0,0.0208,0.02104,0,0,0,0,0,0,0,0,0.02146,0.02169,0,0,0,0,0,0,0,0,0.02349,0.02372,0,0,0,0,0,0,0,0,0.01939,0.01964,0,0,0,0,0,0,0,0,0.02298,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02102,0,0,0,0,0,0,0,0,0.02093,0.02108,0,0,0,0,0,0,0,0,0.02201,0.0222,0,0,0,0,0,0,0,0,0.02186,0.022,0,0,0,0,0,0,0,0,0.00454,0.00347,0,0,0,0,0,0,0,0,0.0039,0.00302,0,0,0,0,0,0,0,0,0.00423,0.00337,0,0,0,0,0,0,0,0,0.00478,0.0038,0,0,0,0,0,0,0,0,0.00222,0.00201,0,0,0,0,0,0,0,0,0.00259,0.00228,0,0,0,0,0,0,0,0,0.00215,0.00195,0,0,0,0,0,0,0,0,0.00307,0.00256,0,0,0,0,0,0,0,0,0.00223,0.00195,0,0,0,0,0,0,0,0,0.58515,0.85333,0,0,0,0,0,0,0,0,0.55145,0.8169,0,0,0,0,0,0,0,0,0.59254,0.91238,0,0,0,0,0,0,0,0,0.63668,0.98369,0,0,0,0,0,0,0,0,0.4577,0.76945,0,0,0,0,0,0,0,0,0.4892,0.81376,0,0,0,0,0,0,0,0,0.47235,0.79243,0,0,0,0,0,0,0,0,0.52262,0.83136,0,0,0,0,0,0,0,0,0.4406,0.70976,0,0,0,0,0,0,0,0,135.30893,136.59487,0,0,0,0,0,0,0,0,136.30292,137.49674,0,0,0,0,0,0,0,0,138.26201,139.51861,0,0,0,0,0,0,0,0,135.20696,136.46414,0,0,0,0,0,0,0,0,138.25445,139.12641,0,0,0,0,0,0,0,0,136.14548,137.10674,0,0,0,0,0,0,0,0,137.23684,138.07104,0,0,0,0,0,0,0,0,137.32323,138.33411,0,0,0,0,0,0,0,0,135.16274,136.0843,0,0,0,0,0,0,0,0,0.00297,0.00334,0,0,0,0,0,0,0,0,0.00298,0.00334,0,0,0,0,0,0,0,0,0.00303,0.00339,0,0,0,0,0,0,0,0,0.00291,0.00327,0,0,0,0,0,0,0,0,0.00301,0.00337,0,0,0,0,0,0,0,0,0.00295,0.00331,0,0,0,0,0,0,0,0,0.00297,0.00333,0,0,0,0,0,0,0,0,0.003,0.00336,0,0,0,0,0,0,0,0,0.00302,0.00339,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00946,0.01085,0,0,0,0,0,0,0,0,0.00941,0.0108,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00942,0.01081,0,0,0,0,0,0,0,0,0.00944,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00948,0.01088,0,0,0,0,0,0,0,0,0.02132,0.03175,0,0,0,0,0,0,0,0,0.02041,0.03052,0,0,0,0,0,0,0,0,0.02056,0.03224,0,0,0,0,0,0,0,0,0.02181,0.03464,0,0,0,0,0,0,0,0,0.01624,0.02717,0,0,0,0,0,0,0,0,0.01782,0.02934,0,0,0,0,0,0,0,0,0.01666,0.02766,0,0,0,0,0,0,0,0,0.01989,0.03186,0,0,0,0,0,0,0,0,0.01745,0.02792,0,0,0,0.00116,0.00187,0.00248,0.00444,0,0.0007,0.00112,0,0,0,0.0011,0.00178,0.00234,0.00414,0,0.00068,0.00107,0,0,0,0.00114,0.00184,0.00244,0.00437,0,0.00068,0.00109,0,0,0,0.00117,0.00189,0.00252,0.00456,0,0.00071,0.00114,0,0,0,0.00096,0.00152,0.00196,0.00332,0,0.0006,0.00094,0,0,0,0.00098,0.00157,0.00204,0.00349,0,0.00061,0.00096,0,0,0,0.00096,0.00152,0.00195,0.00329,0,0.00057,0.00089,0,0,0,0.00103,0.00165,0.00215,0.00373,0,0.00063,0.00099,0,0,0,0.00098,0.00155,0.00199,0.00334,0,0.00056,0.00087,0,0,0,0.02292,0.02452,0.02594,0.03056,0,0.02196,0.0229,0,0,0,0.02349,0.02497,0.02628,0.03047,0,0.02259,0.02347,0,0,0,0.0256,0.02716,0.02856,0.0331,0,0.02462,0.02553,0,0,0,0.02154,0.02317,0.02464,0.02948,0,0.02056,0.02152,0,0,0,0.02471,0.02591,0.02689,0.02992,0,0.02398,0.02471,0,0,0,0.02263,0.02388,0.02493,0.02822,0,0.02186,0.02261,0,0,0,0.02267,0.02386,0.02482,0.02778,0,0.02189,0.02257,0,0,0,0.0239,0.02524,0.02638,0.02998,0,0.02305,0.02384,0,0,0,0.02364,0.02485,0.02582,0.02881,0,0.0228,0.02346,0,0,0,0.00487,0.00628,0.00754,0.01162,0,0.00401,0.00484,0,0,0,0.00484,0.00615,0.0073,0.01101,0,0.00403,0.00481,0,0,0,0.00517,0.00656,0.00779,0.01181,0,0.00431,0.00511,0,0,0,0.00472,0.00617,0.00747,0.01175,0,0.00385,0.0047,0,0,0,0.00471,0.00576,0.00663,0.00931,0,0.00406,0.0047,0,0,0,0.0045,0.00561,0.00654,0.00945,0,0.00381,0.00448,0,0,0,0.00444,0.00549,0.00634,0.00896,0,0.00374,0.00435,0,0,0,0.00475,0.00593,0.00694,0.01013,0,0.004,0.00469,0,0,0,0.00459,0.00566,0.00652,0.00916,0,0.00384,0.00443,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00087,0.00088,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00087,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00088,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.0008,0.0008,0,0,0,0,0,0,0,0,0.04293,0.0554,0,0,0,0,0,0,0,0,0.03774,0.04886,0,0,0,0,0,0,0,0,0.04102,0.05471,0,0,0,0,0,0,0,0,0.04522,0.06046,0,0,0,0,0,0,0,0,0.02553,0.03647,0,0,0,0,0,0,0,0,0.02804,0.03965,0,0,0,0,0,0,0,0,0.02463,0.03475,0,0,0,0,0,0,0,0,0.03256,0.04477,0,0,0,0,0,0,0,0,0.02504,0.03521 +Minivan,PH40G,2050,0,0,0,0,0,0,0,0,0,0.0208,0,0,0,0,0,0,0,0,0,0.02147,0,0,0,0,0,0,0,0,0,0.02349,0,0,0,0,0,0,0,0,0,0.01939,0,0,0,0,0,0,0,0,0,0.02298,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02093,0,0,0,0,0,0,0,0,0,0.02201,0,0,0,0,0,0,0,0,0,0.02186,0,0,0,0,0,0,0,0,0,0.00453,0,0,0,0,0,0,0,0,0,0.00389,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.00478,0,0,0,0,0,0,0,0,0,0.00222,0,0,0,0,0,0,0,0,0,0.00259,0,0,0,0,0,0,0,0,0,0.00215,0,0,0,0,0,0,0,0,0,0.00307,0,0,0,0,0,0,0,0,0,0.00223,0,0,0,0,0,0,0,0,0,0.58383,0,0,0,0,0,0,0,0,0,0.55046,0,0,0,0,0,0,0,0,0,0.59121,0,0,0,0,0,0,0,0,0,0.63522,0,0,0,0,0,0,0,0,0,0.45769,0,0,0,0,0,0,0,0,0,0.48896,0,0,0,0,0,0,0,0,0,0.47221,0,0,0,0,0,0,0,0,0,0.52227,0,0,0,0,0,0,0,0,0,0.44054,0,0,0,0,0,0,0,0,0,135.30911,0,0,0,0,0,0,0,0,0,136.30301,0,0,0,0,0,0,0,0,0,138.26211,0,0,0,0,0,0,0,0,0,135.20703,0,0,0,0,0,0,0,0,0,138.25462,0,0,0,0,0,0,0,0,0,136.14562,0,0,0,0,0,0,0,0,0,137.23687,0,0,0,0,0,0,0,0,0,137.32338,0,0,0,0,0,0,0,0,0,135.16284,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.00298,0,0,0,0,0,0,0,0,0,0.00303,0,0,0,0,0,0,0,0,0,0.00291,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.00295,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00302,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00941,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00942,0,0,0,0,0,0,0,0,0,0.00944,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00948,0,0,0,0,0,0,0,0,0,0.02135,0,0,0,0,0,0,0,0,0,0.02044,0,0,0,0,0,0,0,0,0,0.02059,0,0,0,0,0,0,0,0,0,0.02185,0,0,0,0,0,0,0,0,0,0.01625,0,0,0,0,0,0,0,0,0,0.01784,0,0,0,0,0,0,0,0,0,0.01668,0,0,0,0,0,0,0,0,0,0.01991,0,0,0,0,0,0,0,0,0,0.01745,0,0,0,0,0.00074,0.00117,0.00155,0.0032,0,0.00071,0,0,0,0,0.00071,0.00111,0.00146,0.00299,0,0.00068,0,0,0,0,0.00073,0.00115,0.00152,0.00315,0,0.00069,0,0,0,0,0.00075,0.00119,0.00158,0.00329,0,0.00071,0,0,0,0,0.00061,0.00095,0.00123,0.0024,0,0.0006,0,0,0,0,0.00063,0.00098,0.00127,0.00252,0,0.00061,0,0,0,0,0.00061,0.00095,0.00122,0.00238,0,0.00057,0,0,0,0,0.00066,0.00103,0.00135,0.00269,0,0.00063,0,0,0,0,0.00063,0.00097,0.00125,0.00241,0,0.00056,0,0,0,0,0.02203,0.02299,0.02386,0.02774,0,0.02197,0,0,0,0,0.02264,0.02353,0.02434,0.02787,0,0.02259,0,0,0,0,0.02472,0.02566,0.02652,0.03033,0,0.02463,0,0,0,0,0.02063,0.02161,0.02252,0.02655,0,0.02057,0,0,0,0,0.024,0.02472,0.02533,0.02794,0,0.02399,0,0,0,0,0.02189,0.02265,0.0233,0.02611,0,0.02186,0,0,0,0,0.02196,0.02268,0.02327,0.02583,0,0.02189,0,0,0,0,0.02312,0.02392,0.02463,0.02769,0,0.02306,0,0,0,0,0.02292,0.02365,0.02425,0.02683,0,0.0228,0,0,0,0,0.00408,0.00493,0.0057,0.00913,0,0.00402,0,0,0,0,0.00409,0.00488,0.00559,0.00872,0,0.00404,0,0,0,0,0.0044,0.00523,0.00599,0.00936,0,0.00432,0,0,0,0,0.00392,0.00479,0.00559,0.00916,0,0.00386,0,0,0,0,0.00408,0.00471,0.00525,0.00756,0,0.00406,0,0,0,0,0.00385,0.00451,0.00509,0.00758,0,0.00381,0,0,0,0,0.00382,0.00445,0.00497,0.00724,0,0.00375,0,0,0,0,0.00406,0.00477,0.00539,0.00811,0,0.004,0,0,0,0,0.00395,0.00459,0.00513,0.00741,0,0.00384,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.0008,0,0,0,0,0,0,0,0,0,0.0429,0,0,0,0,0,0,0,0,0,0.03772,0,0,0,0,0,0,0,0,0,0.04098,0,0,0,0,0,0,0,0,0,0.04519,0,0,0,0,0,0,0,0,0,0.02553,0,0,0,0,0,0,0,0,0,0.02803,0,0,0,0,0,0,0,0,0,0.02464,0,0,0,0,0,0,0,0,0,0.03258,0,0,0,0,0,0,0,0,0,0.02504 +Mini car,B20,1990,0.02195,,,,,,,,,,0.02184,,,,,,,,,,0.02159,,,,,,,,,,0.02205,,,,,,,,,,0.02162,,,,,,,,,,0.02185,,,,,,,,,,0.0219,,,,,,,,,,0.02183,,,,,,,,,,0.02188,,,,,,,,,,0.00745,,,,,,,,,,0.00748,,,,,,,,,,0.00759,,,,,,,,,,0.00751,,,,,,,,,,0.00746,,,,,,,,,,0.00746,,,,,,,,,,0.00739,,,,,,,,,,0.00749,,,,,,,,,,0.00727,,,,,,,,,,47.14799,,,,,,,,,,48.05647,,,,,,,,,,48.33487,,,,,,,,,,48.55934,,,,,,,,,,50.67524,,,,,,,,,,50.05546,,,,,,,,,,51.19958,,,,,,,,,,49.67276,,,,,,,,,,47.9112,,,,,,,,,,328.33637,,,,,,,,,,329.47068,,,,,,,,,,333.75801,,,,,,,,,,328.87192,,,,,,,,,,330.25152,,,,,,,,,,327.89924,,,,,,,,,,327.69225,,,,,,,,,,329.78335,,,,,,,,,,323.99835,,,,,,,,,,0.00089,,,,,,,,,,0.0009,,,,,,,,,,0.00093,,,,,,,,,,0.00088,,,,,,,,,,0.00093,,,,,,,,,,0.0009,,,,,,,,,,0.0009,,,,,,,,,,0.00091,,,,,,,,,,0.0009,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,3.1253,,,,,,,,,,3.14279,,,,,,,,,,3.13178,,,,,,,,,,3.15423,,,,,,,,,,3.10834,,,,,,,,,,3.13563,,,,,,,,,,3.14384,,,,,,,,,,3.28373,,,,,,,,,,3.15383,,,,,,,,,,0.04905,,,,,,,,,,0.04867,,,,,,,,,,0.04788,,,,,,,,,,0.04851,,,,,,,,,,0.04784,,,,,,,,,,0.0479,,,,,,,,,,0.04865,,,,,,,,,,0.04847,,,,,,,,,,0.04941,,,,,,,,,,0.1305,,,,,,,,,,0.13077,,,,,,,,,,0.13176,,,,,,,,,,0.12818,,,,,,,,,,0.13128,,,,,,,,,,0.12909,,,,,,,,,,0.13026,,,,,,,,,,0.13123,,,,,,,,,,0.13231,,,,,,,,,,0.09771,,,,,,,,,,0.09719,,,,,,,,,,0.09611,,,,,,,,,,0.09686,,,,,,,,,,0.09603,,,,,,,,,,0.09604,,,,,,,,,,0.09715,,,,,,,,,,0.09699,,,,,,,,,,0.09832,,,,,,,,,,0.02634,,,,,,,,,,0.02643,,,,,,,,,,0.02678,,,,,,,,,,0.02638,,,,,,,,,,0.0265,,,,,,,,,,0.02631,,,,,,,,,,0.02629,,,,,,,,,,0.02646,,,,,,,,,,0.02599,,,,,,,,,,3.88481,,,,,,,,,,3.89701,,,,,,,,,,3.95282,,,,,,,,,,3.91458,,,,,,,,,,3.88645,,,,,,,,,,3.89292,,,,,,,,,,3.8526,,,,,,,,,,3.90097,,,,,,,,,,3.79227,,,,,,,,, +Mini car,B20,1995,0.00303,0.01897,,,,,,,,,0.00301,0.01887,,,,,,,,,0.00298,0.01861,,,,,,,,,0.00302,0.0191,,,,,,,,,0.00298,0.01865,,,,,,,,,0.003,0.0189,,,,,,,,,0.00302,0.01893,,,,,,,,,0.00301,0.01885,,,,,,,,,0.00304,0.01888,,,,,,,,,0.00275,0.00727,,,,,,,,,0.00274,0.00728,,,,,,,,,0.00278,0.0074,,,,,,,,,0.00277,0.00732,,,,,,,,,0.00268,0.00724,,,,,,,,,0.0027,0.00725,,,,,,,,,0.00266,0.00717,,,,,,,,,0.00272,0.00728,,,,,,,,,0.00261,0.00706,,,,,,,,,13.08391,40.31524,,,,,,,,,13.44577,41.14935,,,,,,,,,13.45768,41.40135,,,,,,,,,13.61458,41.57811,,,,,,,,,14.48824,43.5481,,,,,,,,,14.18931,42.95147,,,,,,,,,14.84255,44.03323,,,,,,,,,14.1033,42.6214,,,,,,,,,13.49219,41.04099,,,,,,,,,425.87078,339.93803,,,,,,,,,429.95066,341.30952,,,,,,,,,436.15987,345.91948,,,,,,,,,425.68919,340.45326,,,,,,,,,439.31854,342.68107,,,,,,,,,431.85343,339.89379,,,,,,,,,435.44383,339.91377,,,,,,,,,434.92278,341.93564,,,,,,,,,428.46783,335.8411,,,,,,,,,0.00068,0.00088,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00072,0.00092,,,,,,,,,0.00067,0.00086,,,,,,,,,0.00072,0.00091,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00069,0.00088,,,,,,,,,0.0007,0.0009,,,,,,,,,0.0007,0.00089,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,2.19386,3.23661,,,,,,,,,2.21135,3.25502,,,,,,,,,2.20313,3.24358,,,,,,,,,2.21657,3.26794,,,,,,,,,2.19551,3.22212,,,,,,,,,2.20924,3.25013,,,,,,,,,2.2251,3.25907,,,,,,,,,2.32308,3.39892,,,,,,,,,2.22343,3.26572,,,,,,,,,0.00782,0.04254,,,,,,,,,0.00774,0.04216,,,,,,,,,0.00764,0.04131,,,,,,,,,0.00767,0.04225,,,,,,,,,0.00763,0.04131,,,,,,,,,0.00758,0.04158,,,,,,,,,0.00774,0.04219,,,,,,,,,0.0077,0.04194,,,,,,,,,0.00791,0.04272,,,,,,,,,0.0441,0.11448,,,,,,,,,0.04493,0.11477,,,,,,,,,0.04725,0.11568,,,,,,,,,0.04224,0.11257,,,,,,,,,0.04677,0.11528,,,,,,,,,0.04416,0.11342,,,,,,,,,0.04439,0.11433,,,,,,,,,0.04565,0.11519,,,,,,,,,0.04558,0.11598,,,,,,,,,0.01822,0.08298,,,,,,,,,0.01821,0.08247,,,,,,,,,0.01836,0.08132,,,,,,,,,0.0178,0.0825,,,,,,,,,0.01828,0.08131,,,,,,,,,0.01791,0.08162,,,,,,,,,0.01815,0.08249,,,,,,,,,0.01826,0.08223,,,,,,,,,0.01853,0.0833,,,,,,,,,0.03417,0.00315,,,,,,,,,0.03449,0.00316,,,,,,,,,0.03499,0.0032,,,,,,,,,0.03415,0.00315,,,,,,,,,0.03525,0.00317,,,,,,,,,0.03465,0.00315,,,,,,,,,0.03493,0.00315,,,,,,,,,0.03489,0.00317,,,,,,,,,0.03437,0.00311,,,,,,,,,1.27716,3.3697,,,,,,,,,1.27531,3.37788,,,,,,,,,1.29544,3.42899,,,,,,,,,1.28997,3.39584,,,,,,,,,1.24557,3.35613,,,,,,,,,1.25781,3.3652,,,,,,,,,1.23771,3.32661,,,,,,,,,1.26421,3.37505,,,,,,,,,1.21389,3.27292,,,,,,,, +Mini car,B20,2000,0.00107,0.00178,0.00754,,,,,,,,0.00106,0.00176,0.00751,,,,,,,,0.00105,0.00174,0.00743,,,,,,,,0.00105,0.00175,0.00757,,,,,,,,0.00104,0.00173,0.00744,,,,,,,,0.00104,0.00172,0.00751,,,,,,,,0.00106,0.00176,0.00753,,,,,,,,0.00106,0.00175,0.00751,,,,,,,,0.00109,0.0018,0.00753,,,,,,,,0.00101,0.00191,0.00381,,,,,,,,0.00099,0.0019,0.0038,,,,,,,,0.00101,0.00192,0.00385,,,,,,,,0.00103,0.00194,0.00385,,,,,,,,0.00091,0.00182,0.0037,,,,,,,,0.00095,0.00186,0.00375,,,,,,,,0.00091,0.00181,0.00368,,,,,,,,0.00095,0.00186,0.00376,,,,,,,,0.00088,0.00177,0.00361,,,,,,,,4.68367,7.7993,16.79852,,,,,,,,4.81854,8.01257,17.22283,,,,,,,,4.80666,7.97725,17.26567,,,,,,,,4.90894,8.15519,17.45264,,,,,,,,5.21287,8.65012,18.45493,,,,,,,,5.11874,8.48775,18.13384,,,,,,,,5.37116,8.93372,18.83342,,,,,,,,5.06904,8.4233,17.99071,,,,,,,,4.83023,8.05587,17.23488,,,,,,,,422.41217,424.73423,400.03899,,,,,,,,426.9168,429.11963,403.33094,,,,,,,,433.07582,435.32282,409.15479,,,,,,,,422.63194,424.9542,400.31588,,,,,,,,437.78097,439.54974,410.32729,,,,,,,,429.85458,431.79251,404.31012,,,,,,,,434.17707,435.90156,406.83536,,,,,,,,432.73994,434.70119,407.02503,,,,,,,,426.01965,427.88371,400.26579,,,,,,,,0.00064,0.00066,0.00076,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00068,0.0007,0.0008,,,,,,,,0.00062,0.00065,0.00075,,,,,,,,0.00067,0.0007,0.00079,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00066,0.00069,0.00078,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,1.0421,1.54753,2.44792,,,,,,,,1.04966,1.55891,2.46386,,,,,,,,1.04255,1.54984,2.45238,,,,,,,,1.05578,1.56777,2.47586,,,,,,,,1.04276,1.54922,2.44459,,,,,,,,1.05136,1.56214,2.46515,,,,,,,,1.06034,1.57279,2.47708,,,,,,,,1.10051,1.63133,2.57435,,,,,,,,1.055,1.56481,2.47243,,,,,,,,0.00292,0.00467,0.01701,,,,,,,,0.00287,0.00459,0.01688,,,,,,,,0.00282,0.00451,0.01665,,,,,,,,0.0028,0.00447,0.01679,,,,,,,,0.00281,0.00448,0.01663,,,,,,,,0.00275,0.00439,0.01661,,,,,,,,0.00287,0.00458,0.01687,,,,,,,,0.00285,0.00456,0.01681,,,,,,,,0.003,0.0048,0.01715,,,,,,,,0.03418,0.03748,0.06276,,,,,,,,0.03507,0.03832,0.06349,,,,,,,,0.03748,0.04067,0.06557,,,,,,,,0.03234,0.03552,0.06084,,,,,,,,0.037,0.04017,0.06509,,,,,,,,0.03434,0.03747,0.06258,,,,,,,,0.03451,0.03776,0.06296,,,,,,,,0.03581,0.03904,0.06417,,,,,,,,0.03565,0.03904,0.06428,,,,,,,,0.0091,0.01214,0.03539,,,,,,,,0.00914,0.01213,0.03529,,,,,,,,0.00938,0.01231,0.03521,,,,,,,,0.00869,0.01162,0.03491,,,,,,,,0.00929,0.01221,0.03514,,,,,,,,0.00887,0.01175,0.03485,,,,,,,,0.00906,0.01205,0.03523,,,,,,,,0.00921,0.01218,0.0353,,,,,,,,0.0094,0.01251,0.03574,,,,,,,,0.03389,0.00393,0.0037,,,,,,,,0.03425,0.00397,0.00373,,,,,,,,0.03474,0.00403,0.00379,,,,,,,,0.03391,0.00393,0.00371,,,,,,,,0.03512,0.00407,0.0038,,,,,,,,0.03449,0.004,0.00374,,,,,,,,0.03483,0.00404,0.00377,,,,,,,,0.03472,0.00402,0.00377,,,,,,,,0.03418,0.00396,0.00371,,,,,,,,0.46994,0.88695,1.76031,,,,,,,,0.46251,0.88053,1.7558,,,,,,,,0.47084,0.89153,1.77953,,,,,,,,0.47943,0.90171,1.7825,,,,,,,,0.42477,0.84271,1.71139,,,,,,,,0.44272,0.86326,1.73521,,,,,,,,0.42445,0.84193,1.70353,,,,,,,,0.44532,0.86479,1.73899,,,,,,,,0.41344,0.82282,1.66999,,,,,,, +Mini car,B20,2005,0.00045,0.00068,0.00112,0.00245,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00242,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00242,,,,,,,0.00045,0.00068,0.00111,0.00243,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00045,0.00068,0.00111,0.00244,,,,,,,0.00046,0.00069,0.00112,0.00246,,,,,,,0.00061,0.00096,0.00148,0.00214,,,,,,,0.00058,0.00093,0.00144,0.0021,,,,,,,0.00059,0.00095,0.00146,0.00212,,,,,,,0.00063,0.00099,0.00152,0.00219,,,,,,,0.00044,0.00079,0.00127,0.00189,,,,,,,0.0005,0.00086,0.00136,0.002,,,,,,,0.00045,0.00079,0.00128,0.00191,,,,,,,0.00051,0.00086,0.00136,0.00201,,,,,,,0.00043,0.00077,0.00124,0.00186,,,,,,,1.56697,3.32566,4.8634,6.80959,,,,,,,1.59958,3.40201,4.975,6.96106,,,,,,,1.57837,3.38183,4.95811,6.93641,,,,,,,1.63121,3.45535,5.04588,7.06469,,,,,,,1.70124,3.64116,5.32511,7.42865,,,,,,,1.67884,3.57606,5.22615,7.30589,,,,,,,1.76995,3.75838,5.47768,7.63484,,,,,,,1.67091,3.56089,5.20432,7.26809,,,,,,,1.61431,3.42898,5.00984,6.99902,,,,,,,420.59384,421.9057,425.24177,431.32059,,,,,,,425.20989,426.43788,429.6153,435.41732,,,,,,,431.33524,432.58737,435.82903,441.74838,,,,,,,420.84284,422.12796,425.48477,431.61952,,,,,,,436.47524,437.40271,439.9997,444.78351,,,,,,,428.40237,429.43846,432.2673,437.46314,,,,,,,432.92134,433.81007,436.35273,441.04794,,,,,,,431.25802,432.31734,435.17226,440.40892,,,,,,,424.58436,425.61568,428.31002,433.23517,,,,,,,0.00062,0.00063,0.00067,0.00073,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00066,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00065,0.00072,,,,,,,0.00065,0.00067,0.0007,0.00077,,,,,,,0.00063,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00064,0.00067,0.00074,,,,,,,0.00064,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.198,0.41241,0.57687,0.95177,,,,,,,0.19909,0.41453,0.57948,0.95628,,,,,,,0.19781,0.41182,0.57537,0.94993,,,,,,,0.20073,0.41814,0.58513,0.96515,,,,,,,0.19755,0.41123,0.5746,0.94885,,,,,,,0.19966,0.4158,0.58158,0.9599,,,,,,,0.20064,0.41757,0.58341,0.96252,,,,,,,0.20744,0.43132,0.6014,0.99182,,,,,,,0.19963,0.41545,0.58021,0.95711,,,,,,,0.00125,0.00184,0.00284,0.00566,,,,,,,0.00125,0.00183,0.00283,0.00562,,,,,,,0.00125,0.00183,0.00283,0.00559,,,,,,,0.00122,0.00179,0.00277,0.00553,,,,,,,0.00124,0.00182,0.00282,0.00557,,,,,,,0.00122,0.00179,0.00277,0.00549,,,,,,,0.00124,0.00182,0.00282,0.00561,,,,,,,0.00125,0.00183,0.00283,0.00561,,,,,,,0.00128,0.00187,0.00288,0.00576,,,,,,,0.03086,0.03194,0.03395,0.03975,,,,,,,0.03182,0.0329,0.03491,0.04065,,,,,,,0.03433,0.0354,0.03741,0.04309,,,,,,,0.02918,0.03025,0.03223,0.03792,,,,,,,0.03386,0.03493,0.03694,0.0426,,,,,,,0.03127,0.03233,0.03432,0.03994,,,,,,,0.03127,0.03234,0.03435,0.04009,,,,,,,0.0326,0.03368,0.03569,0.04142,,,,,,,0.03222,0.03332,0.03535,0.04123,,,,,,,0.00604,0.00704,0.00888,0.01422,,,,,,,0.00616,0.00715,0.00899,0.01428,,,,,,,0.00647,0.00746,0.00931,0.01453,,,,,,,0.00578,0.00676,0.00859,0.01382,,,,,,,0.0064,0.00739,0.00923,0.01445,,,,,,,0.00605,0.00702,0.00885,0.01402,,,,,,,0.00608,0.00707,0.00891,0.0142,,,,,,,0.00625,0.00725,0.0091,0.01437,,,,,,,0.00624,0.00725,0.00912,0.01453,,,,,,,0.03374,0.00391,0.00394,0.00399,,,,,,,0.03411,0.00395,0.00398,0.00403,,,,,,,0.0346,0.004,0.00403,0.00409,,,,,,,0.03376,0.00391,0.00394,0.004,,,,,,,0.03502,0.00405,0.00407,0.00412,,,,,,,0.03437,0.00398,0.004,0.00405,,,,,,,0.03473,0.00402,0.00404,0.00408,,,,,,,0.0346,0.004,0.00403,0.00408,,,,,,,0.03406,0.00394,0.00396,0.00401,,,,,,,0.17651,0.27643,0.42119,0.70547,,,,,,,0.16845,0.26763,0.41061,0.69263,,,,,,,0.17386,0.27273,0.41588,0.70068,,,,,,,0.1826,0.28474,0.43295,0.72245,,,,,,,0.13177,0.22761,0.36256,0.6323,,,,,,,0.14814,0.24688,0.38725,0.66441,,,,,,,0.1324,0.22927,0.36558,0.63549,,,,,,,0.15084,0.24888,0.3886,0.66557,,,,,,,0.12724,0.22201,0.35513,0.61913,,,,,, +Mini car,B20,2010,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00127,0.00237,,,,,,,0.00051,0.00074,0.00128,0.00239,,,,,,,0.00051,0.00074,0.00127,0.00237,,,,,,,0.00051,0.00074,0.00127,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.00051,0.00074,0.00128,0.00238,,,,,,,0.05891,0.09169,0.16167,0.18123,,,,,,,0.05564,0.08782,0.15672,0.17585,,,,,,,0.05784,0.0902,0.15932,0.17865,,,,,,,0.06116,0.09477,0.16647,0.18657,,,,,,,0.04082,0.07026,0.13424,0.15147,,,,,,,0.04728,0.07826,0.1452,0.16349,,,,,,,0.04103,0.07078,0.13545,0.1528,,,,,,,0.04848,0.07946,0.14626,0.16454,,,,,,,0.03918,0.06816,0.13123,0.14813,,,,,,,1.68976,3.13805,4.79147,6.146,,,,,,,1.7256,3.20772,4.89818,6.27364,,,,,,,1.69702,3.17249,4.8604,6.23037,,,,,,,1.76191,3.26575,4.97821,6.3749,,,,,,,1.83701,3.42517,5.23199,6.67224,,,,,,,1.81277,3.37084,5.14408,6.5732,,,,,,,1.92044,3.55711,5.40998,6.88142,,,,,,,1.80506,3.35693,5.12294,6.54286,,,,,,,1.74485,3.23856,4.93933,6.31622,,,,,,,421.0849,423.30045,427.03856,432.9663,,,,,,,425.74107,427.85118,431.42551,437.08652,,,,,,,431.86895,434.02105,437.6672,443.44222,,,,,,,421.30525,423.52623,427.29641,433.2824,,,,,,,437.14059,438.86559,441.8364,446.51636,,,,,,,428.9945,430.87012,434.08388,439.16214,,,,,,,433.57761,435.26399,438.17938,442.77531,,,,,,,431.86225,433.75794,436.99719,442.11353,,,,,,,425.23264,427.03253,430.08629,434.89576,,,,,,,0.00061,0.00063,0.00067,0.00073,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00072,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.09426,0.16941,0.25245,0.44422,,,,,,,0.09455,0.16986,0.25298,0.44541,,,,,,,0.09289,0.16686,0.24844,0.43971,,,,,,,0.09578,0.17217,0.25666,0.45138,,,,,,,0.09283,0.16677,0.24832,0.4395,,,,,,,0.09451,0.16988,0.25317,0.44689,,,,,,,0.09526,0.17108,0.25466,0.44819,,,,,,,0.09829,0.17626,0.26185,0.46006,,,,,,,0.0949,0.17038,0.25349,0.44549,,,,,,,0.00075,0.001,0.00141,0.00301,,,,,,,0.00075,0.001,0.00141,0.003,,,,,,,0.00075,0.00099,0.00141,0.00299,,,,,,,0.00074,0.00098,0.0014,0.00296,,,,,,,0.00075,0.00099,0.00141,0.00299,,,,,,,0.00074,0.00098,0.00139,0.00296,,,,,,,0.00075,0.00099,0.00141,0.003,,,,,,,0.00075,0.001,0.00141,0.003,,,,,,,0.00076,0.00101,0.00143,0.00305,,,,,,,0.0314,0.03262,0.03545,0.04042,,,,,,,0.03237,0.03359,0.03642,0.04137,,,,,,,0.03487,0.03609,0.03891,0.04384,,,,,,,0.02974,0.03095,0.03376,0.03867,,,,,,,0.03441,0.03563,0.03844,0.04337,,,,,,,0.03183,0.03304,0.03584,0.04074,,,,,,,0.03181,0.03303,0.03586,0.0408,,,,,,,0.03315,0.03437,0.0372,0.04216,,,,,,,0.03275,0.03399,0.03684,0.04184,,,,,,,0.00654,0.00766,0.01027,0.01484,,,,,,,0.00666,0.00778,0.01038,0.01494,,,,,,,0.00697,0.00809,0.01069,0.01523,,,,,,,0.0063,0.00741,0.00999,0.01451,,,,,,,0.00691,0.00803,0.01062,0.01515,,,,,,,0.00656,0.00767,0.01025,0.01476,,,,,,,0.00658,0.0077,0.0103,0.01485,,,,,,,0.00676,0.00788,0.01049,0.01504,,,,,,,0.00673,0.00787,0.01049,0.01509,,,,,,,0.00371,0.00372,0.00374,0.00382,,,,,,,0.00375,0.00376,0.00378,0.00385,,,,,,,0.0038,0.00381,0.00383,0.00391,,,,,,,0.00371,0.00372,0.00374,0.00382,,,,,,,0.00385,0.00386,0.00387,0.00393,,,,,,,0.00378,0.00379,0.0038,0.00387,,,,,,,0.00382,0.00382,0.00384,0.0039,,,,,,,0.0038,0.00381,0.00383,0.0039,,,,,,,0.00374,0.00375,0.00377,0.00383,,,,,,,0.11405,0.16425,0.24308,0.40067,,,,,,,0.1088,0.15831,0.23603,0.39091,,,,,,,0.11237,0.16198,0.23987,0.39617,,,,,,,0.11793,0.16934,0.25008,0.4116,,,,,,,0.08482,0.1312,0.20386,0.3463,,,,,,,0.0954,0.14376,0.21959,0.36911,,,,,,,0.08523,0.13211,0.20553,0.34881,,,,,,,0.09728,0.14549,0.22109,0.37046,,,,,,,0.08187,0.12762,0.19928,0.33897,,,,, +Mini car,B20,2015,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00133,0.0023,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.00052,0.00081,0.00133,0.0023,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00231,,,,,,,0.08628,0.13981,0.21316,0.26678,,,,,,,0.08155,0.13428,0.20654,0.25882,,,,,,,0.08473,0.1376,0.21006,0.26299,,,,,,,0.08955,0.14439,0.21954,0.27467,,,,,,,0.0601,0.10915,0.17644,0.22273,,,,,,,0.06946,0.12074,0.19107,0.24051,,,,,,,0.06041,0.11,0.178,0.22466,,,,,,,0.07119,0.12236,0.19251,0.24206,,,,,,,0.05772,0.10609,0.17242,0.21779,,,,,,,1.50615,3.35216,4.9018,5.93185,,,,,,,1.53702,3.42585,5.00954,6.05401,,,,,,,1.50784,3.38732,4.96771,6.00463,,,,,,,1.57139,3.48841,5.09306,6.15419,,,,,,,1.63277,3.65582,5.34642,6.43624,,,,,,,1.61378,3.59917,5.2594,6.34208,,,,,,,1.71139,3.79726,5.53154,6.64876,,,,,,,1.60669,3.5841,5.23754,6.31446,,,,,,,1.55484,3.45857,5.05188,6.09936,,,,,,,338.87929,340.21066,340.4814,347.12404,,,,,,,342.67392,343.88312,343.98149,350.43648,,,,,,,347.85144,349.09203,349.21465,355.77342,,,,,,,338.97517,340.31664,340.61394,347.31326,,,,,,,351.83331,352.60666,352.10568,357.85412,,,,,,,345.14106,346.09515,345.85788,351.88691,,,,,,,348.72241,349.46412,348.93639,354.61893,,,,,,,347.57366,348.54097,348.30754,354.37097,,,,,,,342.03744,342.91051,342.55674,348.35541,,,,,,,0.00061,0.00064,0.00068,0.00073,,,,,,,0.00062,0.00065,0.00069,0.00074,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00071,,,,,,,0.00065,0.00067,0.00071,0.00076,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00073,,,,,,,0.00063,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.0669,0.14623,0.22002,0.28571,,,,,,,0.06703,0.14648,0.22034,0.28607,,,,,,,0.06553,0.14331,0.21577,0.28068,,,,,,,0.06805,0.14875,0.22383,0.29066,,,,,,,0.06552,0.14328,0.21572,0.28062,,,,,,,0.06693,0.14636,0.22035,0.28651,,,,,,,0.06754,0.14752,0.2218,0.28781,,,,,,,0.06961,0.15183,0.2279,0.2951,,,,,,,0.06731,0.14695,0.22083,0.2863,,,,,,,0.00041,0.00062,0.00096,0.00166,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00095,0.00164,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00095,0.00163,,,,,,,0.00041,0.00061,0.00096,0.00165,,,,,,,0.00041,0.00061,0.00096,0.00166,,,,,,,0.00042,0.00062,0.00097,0.00167,,,,,,,0.03156,0.03317,0.03594,0.04063,,,,,,,0.03253,0.03414,0.03691,0.04159,,,,,,,0.03503,0.03664,0.0394,0.04407,,,,,,,0.0299,0.0315,0.03425,0.0389,,,,,,,0.03457,0.03618,0.03893,0.0436,,,,,,,0.03199,0.03359,0.03633,0.04098,,,,,,,0.03198,0.03359,0.03635,0.04103,,,,,,,0.03331,0.03493,0.0377,0.04238,,,,,,,0.03292,0.03455,0.03734,0.04205,,,,,,,0.00669,0.00817,0.01072,0.01503,,,,,,,0.00681,0.00829,0.01084,0.01514,,,,,,,0.00712,0.0086,0.01114,0.01544,,,,,,,0.00644,0.00791,0.01044,0.01472,,,,,,,0.00706,0.00854,0.01107,0.01536,,,,,,,0.00671,0.00818,0.0107,0.01498,,,,,,,0.00673,0.00821,0.01075,0.01506,,,,,,,0.00691,0.00839,0.01094,0.01525,,,,,,,0.00688,0.00838,0.01095,0.01528,,,,,,,0.00291,0.00293,0.00293,0.00299,,,,,,,0.00295,0.00296,0.00296,0.00302,,,,,,,0.00299,0.003,0.003,0.00307,,,,,,,0.00292,0.00293,0.00293,0.00299,,,,,,,0.00303,0.00303,0.00303,0.00308,,,,,,,0.00297,0.00298,0.00297,0.00303,,,,,,,0.003,0.00301,0.003,0.00306,,,,,,,0.00299,0.003,0.003,0.00305,,,,,,,0.00294,0.00295,0.00295,0.003,,,,,,,0.08545,0.13514,0.2032,0.27131,,,,,,,0.08112,0.13007,0.19711,0.26357,,,,,,,0.08415,0.13323,0.20047,0.26772,,,,,,,0.08849,0.13939,0.20912,0.27914,,,,,,,0.06137,0.10689,0.16931,0.22831,,,,,,,0.06995,0.11754,0.18279,0.24572,,,,,,,0.0616,0.10763,0.17071,0.23017,,,,,,,0.07159,0.11908,0.18417,0.24722,,,,,,,0.059,0.10389,0.16544,0.22325,,,, +Mini car,B20,2020,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00188,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00048,0.0007,0.00102,0.00187,,,,,,,0.07955,0.11217,0.15133,0.21057,,,,,,,0.07468,0.10656,0.14468,0.20224,,,,,,,0.07804,0.11022,0.14885,0.20728,,,,,,,0.08274,0.11624,0.15651,0.2175,,,,,,,0.05258,0.0811,0.1145,0.16448,,,,,,,0.06207,0.09237,0.12816,0.18197,,,,,,,0.05278,0.08159,0.11529,0.16566,,,,,,,0.06395,0.09431,0.13026,0.18431,,,,,,,0.0502,0.07821,0.11093,0.15981,,,,,,,1.19391,2.1344,2.82594,3.83882,,,,,,,1.2178,2.17907,2.88375,3.91229,,,,,,,1.19354,2.1469,2.84465,3.86498,,,,,,,1.24561,2.22272,2.9393,3.98502,,,,,,,1.29181,2.31811,3.06395,4.14169,,,,,,,1.27788,2.28717,3.02354,4.09267,,,,,,,1.35511,2.41689,3.18797,4.29553,,,,,,,1.27219,2.2774,3.01073,4.07411,,,,,,,1.23197,2.20151,2.91154,3.94403,,,,,,,266.13609,267.35825,268.24247,281.31394,,,,,,,269.04375,270.16773,270.91097,283.88463,,,,,,,273.15196,274.30163,275.06915,288.25465,,,,,,,266.23896,267.47229,268.38432,281.51633,,,,,,,275.96422,276.7379,276.98939,289.48347,,,,,,,270.82127,271.74108,272.20913,284.83021,,,,,,,273.49036,274.23968,274.47049,286.83436,,,,,,,272.73969,273.66927,274.14083,286.84457,,,,,,,268.28135,269.13119,269.49125,281.8162,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00072,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00066,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.04804,0.09113,0.1223,0.17441,,,,,,,0.04809,0.09119,0.12233,0.17445,,,,,,,0.04687,0.08895,0.11941,0.17071,,,,,,,0.04891,0.0928,0.12457,0.17763,,,,,,,0.04689,0.08898,0.11946,0.17077,,,,,,,0.04801,0.09112,0.12236,0.17477,,,,,,,0.04844,0.09182,0.12311,0.17547,,,,,,,0.04979,0.09423,0.12611,0.1794,,,,,,,0.04825,0.09141,0.1225,0.17444,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00038,0.00053,0.00074,0.00125,,,,,,,0.03126,0.03246,0.03413,0.0382,,,,,,,0.03224,0.03343,0.0351,0.03916,,,,,,,0.03474,0.03593,0.0376,0.04165,,,,,,,0.02961,0.03079,0.03246,0.0365,,,,,,,0.03428,0.03546,0.03713,0.04118,,,,,,,0.0317,0.03288,0.03454,0.03858,,,,,,,0.03168,0.03287,0.03455,0.0386,,,,,,,0.03302,0.03421,0.03589,0.03995,,,,,,,0.03262,0.03382,0.03551,0.03959,,,,,,,0.00641,0.00751,0.00906,0.01279,,,,,,,0.00654,0.00763,0.00917,0.01291,,,,,,,0.00685,0.00795,0.00948,0.01321,,,,,,,0.00618,0.00726,0.00879,0.01251,,,,,,,0.00679,0.00788,0.00942,0.01313,,,,,,,0.00644,0.00753,0.00906,0.01277,,,,,,,0.00646,0.00756,0.00909,0.01282,,,,,,,0.00664,0.00773,0.00928,0.01301,,,,,,,0.00661,0.00772,0.00927,0.01302,,,,,,,0.00229,0.0023,0.00231,0.00242,,,,,,,0.00231,0.00232,0.00233,0.00244,,,,,,,0.00235,0.00236,0.00237,0.00248,,,,,,,0.00229,0.0023,0.00231,0.00242,,,,,,,0.00237,0.00238,0.00238,0.00249,,,,,,,0.00233,0.00234,0.00234,0.00245,,,,,,,0.00235,0.00236,0.00236,0.00247,,,,,,,0.00235,0.00235,0.00236,0.00247,,,,,,,0.00231,0.00231,0.00232,0.00242,,,,,,,0.07805,0.10833,0.14468,0.2016,,,,,,,0.07357,0.10317,0.13855,0.19386,,,,,,,0.07676,0.10664,0.14249,0.19864,,,,,,,0.08101,0.11211,0.1495,0.20808,,,,,,,0.05318,0.07965,0.11065,0.15871,,,,,,,0.0619,0.09003,0.12325,0.17498,,,,,,,0.05333,0.08007,0.11134,0.15978,,,,,,,0.06368,0.09187,0.12523,0.17719,,,,,,,0.05084,0.07685,0.10722,0.15423,,, +Mini car,B20,2025,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.0013,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.06948,0.09009,0.1176,0.16463,,,,,,,0.06458,0.0845,0.11099,0.15624,,,,,,,0.06807,0.08837,0.11545,0.16178,,,,,,,0.07249,0.09373,0.12211,0.17068,,,,,,,0.04232,0.05913,0.08101,0.11823,,,,,,,0.05171,0.07,0.09405,0.13504,,,,,,,0.0424,0.05935,0.08141,0.11887,,,,,,,0.05371,0.07217,0.09649,0.13794,,,,,,,0.04,0.05641,0.07772,0.1139,,,,,,,0.75481,1.36799,1.85261,2.54958,,,,,,,0.76903,1.39514,1.88894,2.59604,,,,,,,0.74992,1.36741,1.85479,2.5542,,,,,,,0.78851,1.42663,1.92951,2.64946,,,,,,,0.81289,1.47933,2.0018,2.74068,,,,,,,0.8063,1.46333,1.97957,2.71396,,,,,,,0.8575,1.55151,2.09394,2.85562,,,,,,,0.80265,1.45708,1.97124,2.70161,,,,,,,0.77894,1.41151,1.9097,2.61992,,,,,,,214.62743,215.69269,216.76528,228.85495,,,,,,,216.90591,217.88973,218.84284,230.84091,,,,,,,220.22536,221.23149,222.21037,234.41111,,,,,,,214.74657,215.82308,216.92405,229.0766,,,,,,,222.25926,222.95159,223.48322,235.03108,,,,,,,218.22472,219.03887,219.75518,231.42358,,,,,,,220.26841,220.94096,221.45352,232.87862,,,,,,,219.76199,220.58426,221.30437,233.0493,,,,,,,216.09262,216.8454,217.45813,228.83609,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00076,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02682,0.05159,0.07257,0.10821,,,,,,,0.02678,0.05151,0.07245,0.10808,,,,,,,0.02591,0.0499,0.07028,0.10531,,,,,,,0.02737,0.05264,0.07407,0.11039,,,,,,,0.02595,0.04997,0.07038,0.10544,,,,,,,0.02673,0.05146,0.07246,0.10831,,,,,,,0.02697,0.05185,0.07289,0.1087,,,,,,,0.02758,0.05295,0.07431,0.11068,,,,,,,0.02684,0.05158,0.07246,0.10795,,,,,,,0.00024,0.00034,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00047,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00025,0.00034,0.00048,0.00085,,,,,,,0.03026,0.03099,0.03213,0.03514,,,,,,,0.03123,0.03196,0.0331,0.03611,,,,,,,0.03374,0.03447,0.03561,0.0386,,,,,,,0.02862,0.02934,0.03048,0.03347,,,,,,,0.03328,0.03401,0.03514,0.03813,,,,,,,0.03071,0.03143,0.03256,0.03555,,,,,,,0.03068,0.03141,0.03255,0.03555,,,,,,,0.03201,0.03275,0.03389,0.03689,,,,,,,0.0316,0.03234,0.03349,0.03651,,,,,,,0.00549,0.00616,0.00722,0.00998,,,,,,,0.00561,0.00629,0.00734,0.0101,,,,,,,0.00593,0.0066,0.00765,0.0104,,,,,,,0.00526,0.00593,0.00697,0.00972,,,,,,,0.00587,0.00654,0.00758,0.01034,,,,,,,0.00553,0.0062,0.00724,0.00998,,,,,,,0.00554,0.00621,0.00726,0.01002,,,,,,,0.00571,0.00639,0.00744,0.0102,,,,,,,0.00568,0.00635,0.00741,0.01019,,,,,,,0.00185,0.00186,0.00186,0.00197,,,,,,,0.00187,0.00187,0.00188,0.00199,,,,,,,0.00189,0.0019,0.00191,0.00202,,,,,,,0.00185,0.00186,0.00187,0.00197,,,,,,,0.00191,0.00192,0.00192,0.00202,,,,,,,0.00188,0.00188,0.00189,0.00199,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00186,0.00187,0.00187,0.00197,,,,,,,0.06789,0.08703,0.11256,0.1564,,,,,,,0.06337,0.08187,0.10647,0.14865,,,,,,,0.06667,0.08552,0.11066,0.15384,,,,,,,0.07068,0.0904,0.11676,0.16201,,,,,,,0.04281,0.05841,0.07873,0.11344,,,,,,,0.05145,0.06844,0.09076,0.12899,,,,,,,0.04284,0.05858,0.07906,0.114,,,,,,,0.05334,0.07048,0.09305,0.1317,,,,,,,0.04056,0.05579,0.07557,0.10932,, +Mini car,B20,2030,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00067,0.00113,,,,,,,0.06649,0.0839,0.10901,0.14537,,,,,,,0.06159,0.07833,0.10241,0.13701,,,,,,,0.0651,0.08224,0.10695,0.14271,,,,,,,0.06943,0.0874,0.11336,0.15103,,,,,,,0.03936,0.05306,0.07247,0.09911,,,,,,,0.04869,0.06379,0.08535,0.11556,,,,,,,0.0394,0.05321,0.07276,0.09955,,,,,,,0.05072,0.06602,0.08788,0.11866,,,,,,,0.03707,0.0504,0.06924,0.09495,,,,,,,0.64076,1.17885,1.61853,2.07987,,,,,,,0.6526,1.20185,1.64987,2.11724,,,,,,,0.63506,1.17563,1.61741,2.07812,,,,,,,0.66978,1.2301,1.68659,2.16311,,,,,,,0.68905,1.27301,1.74708,2.23338,,,,,,,0.6841,1.26036,1.72886,2.21338,,,,,,,0.72861,1.33819,1.83102,2.33395,,,,,,,0.68101,1.25499,1.72162,2.20354,,,,,,,0.66141,1.21666,1.66884,2.1386,,,,,,,197.442,198.94324,201.27385,208.74759,,,,,,,199.51309,200.94427,203.17395,210.51763,,,,,,,202.56912,204.02895,206.30392,213.77924,,,,,,,197.56554,199.07789,201.43876,208.9737,,,,,,,204.35243,205.52601,207.38332,214.19719,,,,,,,200.68329,201.96044,203.97152,210.97725,,,,,,,202.523,203.67353,205.50126,212.23657,,,,,,,202.09373,203.38191,205.40524,212.454,,,,,,,198.69021,199.90429,201.79958,208.56216,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04113,0.06005,0.08369,,,,,,,0.02107,0.04101,0.05989,0.08349,,,,,,,0.02028,0.03956,0.0579,0.08106,,,,,,,0.02159,0.04203,0.06136,0.08547,,,,,,,0.02033,0.03964,0.05802,0.08122,,,,,,,0.02102,0.04096,0.05989,0.08367,,,,,,,0.02121,0.04128,0.06025,0.08396,,,,,,,0.02162,0.04203,0.06127,0.08526,,,,,,,0.0211,0.04104,0.05987,0.08334,,,,,,,0.00024,0.00034,0.00048,0.00075,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00075,,,,,,,0.00025,0.00034,0.00048,0.00075,,,,,,,0.03026,0.03099,0.03213,0.03435,,,,,,,0.03123,0.03196,0.0331,0.03532,,,,,,,0.03374,0.03447,0.03561,0.03782,,,,,,,0.02862,0.02934,0.03048,0.03269,,,,,,,0.03328,0.034,0.03514,0.03735,,,,,,,0.03071,0.03143,0.03256,0.03477,,,,,,,0.03068,0.03141,0.03255,0.03477,,,,,,,0.03201,0.03274,0.03389,0.03611,,,,,,,0.0316,0.03234,0.03349,0.03572,,,,,,,0.00549,0.00616,0.00721,0.00926,,,,,,,0.00561,0.00628,0.00733,0.00938,,,,,,,0.00593,0.0066,0.00765,0.00968,,,,,,,0.00526,0.00593,0.00697,0.00901,,,,,,,0.00587,0.00654,0.00758,0.00962,,,,,,,0.00553,0.00619,0.00724,0.00927,,,,,,,0.00554,0.00621,0.00726,0.0093,,,,,,,0.00571,0.00639,0.00744,0.00948,,,,,,,0.00567,0.00635,0.00741,0.00946,,,,,,,0.0017,0.00171,0.00173,0.0018,,,,,,,0.00172,0.00173,0.00175,0.00181,,,,,,,0.00174,0.00175,0.00177,0.00184,,,,,,,0.0017,0.00171,0.00173,0.0018,,,,,,,0.00176,0.00177,0.00178,0.00184,,,,,,,0.00173,0.00174,0.00175,0.00181,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00171,0.00172,0.00174,0.00179,,,,,,,0.06483,0.08101,0.10435,0.13821,,,,,,,0.06032,0.07588,0.09826,0.13048,,,,,,,0.06363,0.07955,0.10252,0.13582,,,,,,,0.06757,0.08427,0.10839,0.14346,,,,,,,0.03977,0.0525,0.07054,0.09537,,,,,,,0.04837,0.06241,0.08244,0.11058,,,,,,,0.03978,0.05261,0.07078,0.09574,,,,,,,0.05028,0.0645,0.08481,0.11348,,,,,,,0.03756,0.04994,0.06746,0.09142, +Mini car,B20,2035,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00112,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.06625,0.08388,0.10899,0.14208,,,,,,,0.06137,0.07831,0.10239,0.13371,,,,,,,0.06488,0.08222,0.10693,0.13944,,,,,,,0.06919,0.08738,0.11334,0.14767,,,,,,,0.03923,0.05305,0.07246,0.09577,,,,,,,0.04852,0.06378,0.08533,0.11217,,,,,,,0.03927,0.0532,0.07275,0.09616,,,,,,,0.05055,0.06601,0.08787,0.11532,,,,,,,0.03695,0.05039,0.06923,0.09163,,,,,,,0.64138,1.17879,1.61842,2.00267,,,,,,,0.65324,1.20178,1.64976,2.03863,,,,,,,0.63568,1.17558,1.6173,1.99997,,,,,,,0.67043,1.23003,1.68647,2.08323,,,,,,,0.68978,1.27296,1.74696,2.15032,,,,,,,0.68479,1.2603,1.72874,2.1313,,,,,,,0.7294,1.33813,1.83089,2.24861,,,,,,,0.68171,1.25493,1.72151,2.1219,,,,,,,0.66209,1.2166,1.66874,2.05964,,,,,,,197.39877,198.9384,201.27053,205.66042,,,,,,,199.47153,200.93963,203.17053,207.39687,,,,,,,202.52651,204.0243,206.30052,210.61088,,,,,,,197.52118,199.07306,201.43526,205.88753,,,,,,,204.31625,205.52194,207.38021,210.99603,,,,,,,200.64476,201.95608,203.96823,207.83676,,,,,,,202.48706,203.66949,205.49815,209.06493,,,,,,,202.05514,203.37755,205.4021,209.29043,,,,,,,198.65463,199.9004,201.79666,205.44751,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04114,0.06005,0.07962,,,,,,,0.02106,0.04103,0.05988,0.07941,,,,,,,0.02028,0.03957,0.05789,0.07704,,,,,,,0.02159,0.04204,0.06135,0.08134,,,,,,,0.02033,0.03966,0.05801,0.0772,,,,,,,0.02102,0.04097,0.05989,0.07958,,,,,,,0.02121,0.04129,0.06024,0.07986,,,,,,,0.02162,0.04205,0.06127,0.08105,,,,,,,0.0211,0.04106,0.05986,0.07926,,,,,,,0.00024,0.00034,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00047,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00025,0.00034,0.00048,0.00074,,,,,,,0.03026,0.03099,0.03213,0.03425,,,,,,,0.03123,0.03196,0.0331,0.03522,,,,,,,0.03374,0.03447,0.03561,0.03771,,,,,,,0.02862,0.02934,0.03048,0.03258,,,,,,,0.03328,0.034,0.03514,0.03725,,,,,,,0.03071,0.03143,0.03256,0.03467,,,,,,,0.03068,0.03141,0.03255,0.03466,,,,,,,0.03201,0.03274,0.03389,0.036,,,,,,,0.0316,0.03234,0.03349,0.03562,,,,,,,0.00549,0.00616,0.00721,0.00916,,,,,,,0.00561,0.00629,0.00733,0.00928,,,,,,,0.00593,0.0066,0.00765,0.00959,,,,,,,0.00526,0.00593,0.00697,0.00891,,,,,,,0.00587,0.00654,0.00758,0.00952,,,,,,,0.00553,0.00619,0.00724,0.00917,,,,,,,0.00554,0.00621,0.00726,0.0092,,,,,,,0.00571,0.00639,0.00744,0.00938,,,,,,,0.00567,0.00635,0.00741,0.00937,,,,,,,0.0017,0.00171,0.00173,0.00177,,,,,,,0.00172,0.00173,0.00175,0.00178,,,,,,,0.00174,0.00175,0.00177,0.00181,,,,,,,0.0017,0.00171,0.00173,0.00177,,,,,,,0.00176,0.00177,0.00178,0.00181,,,,,,,0.00173,0.00174,0.00175,0.00179,,,,,,,0.00174,0.00175,0.00177,0.0018,,,,,,,0.00174,0.00175,0.00177,0.0018,,,,,,,0.00171,0.00172,0.00174,0.00177,,,,,,,0.06462,0.08099,0.10433,0.13511,,,,,,,0.06012,0.07586,0.09824,0.12737,,,,,,,0.06342,0.07953,0.1025,0.13274,,,,,,,0.06734,0.08425,0.10837,0.1403,,,,,,,0.03965,0.05249,0.07053,0.09222,,,,,,,0.04822,0.06239,0.08243,0.10739,,,,,,,0.03966,0.0526,0.07077,0.09255,,,,,,,0.05012,0.06448,0.0848,0.11033,,,,,,,0.03744,0.04993,0.06745,0.08829 +Mini car,B20,2040,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.06621,0.08382,0.10898,,,,,,,,0.06133,0.07826,0.10239,,,,,,,,0.06483,0.08216,0.10693,,,,,,,,0.06914,0.08733,0.11333,,,,,,,,0.0392,0.05301,0.07245,,,,,,,,0.04849,0.06374,0.08533,,,,,,,,0.03924,0.05317,0.07274,,,,,,,,0.05051,0.06596,0.08786,,,,,,,,0.03692,0.05035,0.06922,,,,,,,,0.64078,1.17853,1.61839,,,,,,,,0.65264,1.20153,1.64973,,,,,,,,0.63509,1.17532,1.61727,,,,,,,,0.66981,1.22977,1.68644,,,,,,,,0.68914,1.2727,1.74693,,,,,,,,0.68416,1.26003,1.72871,,,,,,,,0.72874,1.33787,1.83086,,,,,,,,0.68108,1.25467,1.72147,,,,,,,,0.66147,1.21634,1.6687,,,,,,,,197.39176,198.93068,201.26942,,,,,,,,199.46466,200.93212,203.16953,,,,,,,,202.51968,204.01662,206.29932,,,,,,,,197.51405,199.06503,201.43412,,,,,,,,204.31053,205.51561,207.37937,,,,,,,,200.6385,201.94928,203.96736,,,,,,,,202.48143,203.66305,205.49733,,,,,,,,202.04896,203.37055,205.40101,,,,,,,,198.64888,199.89403,201.79583,,,,,,,,0.00062,0.00064,0.00068,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00066,0.00068,0.00071,,,,,,,,0.0006,0.00063,0.00066,,,,,,,,0.00065,0.00068,0.00071,,,,,,,,0.00063,0.00065,0.00068,,,,,,,,0.00062,0.00065,0.00068,,,,,,,,0.00064,0.00066,0.0007,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,0.0211,0.04112,0.06004,,,,,,,,0.02105,0.041,0.05988,,,,,,,,0.02026,0.03955,0.05789,,,,,,,,0.02157,0.04202,0.06135,,,,,,,,0.02031,0.03963,0.05801,,,,,,,,0.021,0.04095,0.05988,,,,,,,,0.02119,0.04127,0.06024,,,,,,,,0.0216,0.04202,0.06126,,,,,,,,0.02108,0.04103,0.05986,,,,,,,,0.00024,0.00034,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00025,0.00034,0.00048,,,,,,,,0.03026,0.03099,0.03213,,,,,,,,0.03123,0.03196,0.0331,,,,,,,,0.03374,0.03447,0.0356,,,,,,,,0.02862,0.02934,0.03048,,,,,,,,0.03327,0.034,0.03514,,,,,,,,0.03071,0.03143,0.03256,,,,,,,,0.03068,0.03141,0.03255,,,,,,,,0.03201,0.03274,0.03389,,,,,,,,0.0316,0.03234,0.03349,,,,,,,,0.00549,0.00616,0.00721,,,,,,,,0.00561,0.00628,0.00733,,,,,,,,0.00593,0.0066,0.00765,,,,,,,,0.00526,0.00593,0.00697,,,,,,,,0.00587,0.00654,0.00758,,,,,,,,0.00553,0.00619,0.00724,,,,,,,,0.00554,0.00621,0.00726,,,,,,,,0.00571,0.00638,0.00744,,,,,,,,0.00567,0.00635,0.00741,,,,,,,,0.0017,0.00171,0.00173,,,,,,,,0.00172,0.00173,0.00175,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.0017,0.00171,0.00173,,,,,,,,0.00176,0.00177,0.00178,,,,,,,,0.00173,0.00174,0.00175,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00171,0.00172,0.00174,,,,,,,,0.06458,0.08094,0.10433,,,,,,,,0.06008,0.07581,0.09823,,,,,,,,0.06338,0.07949,0.1025,,,,,,,,0.0673,0.0842,0.10836,,,,,,,,0.03963,0.05246,0.07053,,,,,,,,0.04818,0.06236,0.08242,,,,,,,,0.03963,0.05257,0.07077,,,,,,,,0.05008,0.06444,0.08479,,,,,,,,0.03742,0.0499,0.06744 +Mini car,B20,2045,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.06618,0.08382,,,,,,,,,0.0613,0.07826,,,,,,,,,0.0648,0.08216,,,,,,,,,0.06911,0.08732,,,,,,,,,0.03918,0.05301,,,,,,,,,0.04846,0.06374,,,,,,,,,0.03922,0.05316,,,,,,,,,0.05049,0.06596,,,,,,,,,0.0369,0.05035,,,,,,,,,0.64071,1.17849,,,,,,,,,0.65257,1.20148,,,,,,,,,0.63502,1.17528,,,,,,,,,0.66974,1.22972,,,,,,,,,0.68907,1.27265,,,,,,,,,0.68409,1.25999,,,,,,,,,0.72867,1.33782,,,,,,,,,0.68101,1.25463,,,,,,,,,0.66141,1.2163,,,,,,,,,197.38569,198.93053,,,,,,,,,199.45889,200.93195,,,,,,,,,202.51378,204.01654,,,,,,,,,197.50783,199.06486,,,,,,,,,204.30562,205.51541,,,,,,,,,200.63304,201.94895,,,,,,,,,202.47654,203.663,,,,,,,,,202.0436,203.37044,,,,,,,,,198.64399,199.89377,,,,,,,,,0.00062,0.00064,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00066,0.00068,,,,,,,,,0.0006,0.00063,,,,,,,,,0.00065,0.00068,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00062,0.00065,,,,,,,,,0.00064,0.00066,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,0.0211,0.04111,,,,,,,,,0.02104,0.041,,,,,,,,,0.02026,0.03955,,,,,,,,,0.02157,0.04202,,,,,,,,,0.0203,0.03963,,,,,,,,,0.02099,0.04095,,,,,,,,,0.02118,0.04126,,,,,,,,,0.0216,0.04202,,,,,,,,,0.02108,0.04103,,,,,,,,,0.00024,0.00034,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00025,0.00034,,,,,,,,,0.03026,0.03099,,,,,,,,,0.03123,0.03196,,,,,,,,,0.03374,0.03447,,,,,,,,,0.02862,0.02934,,,,,,,,,0.03327,0.034,,,,,,,,,0.03071,0.03143,,,,,,,,,0.03068,0.03141,,,,,,,,,0.03201,0.03274,,,,,,,,,0.0316,0.03234,,,,,,,,,0.00549,0.00616,,,,,,,,,0.00561,0.00628,,,,,,,,,0.00593,0.0066,,,,,,,,,0.00526,0.00593,,,,,,,,,0.00587,0.00654,,,,,,,,,0.00553,0.00619,,,,,,,,,0.00554,0.00621,,,,,,,,,0.00571,0.00638,,,,,,,,,0.00567,0.00635,,,,,,,,,0.0017,0.00171,,,,,,,,,0.00172,0.00173,,,,,,,,,0.00174,0.00175,,,,,,,,,0.0017,0.00171,,,,,,,,,0.00176,0.00177,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00171,0.00172,,,,,,,,,0.06454,0.08094,,,,,,,,,0.06005,0.07581,,,,,,,,,0.06335,0.07948,,,,,,,,,0.06727,0.08419,,,,,,,,,0.03961,0.05246,,,,,,,,,0.04816,0.06235,,,,,,,,,0.03962,0.05257,,,,,,,,,0.05006,0.06444,,,,,,,,,0.0374,0.0499 +Mini car,B20,2050,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.06618,,,,,,,,,,0.0613,,,,,,,,,,0.0648,,,,,,,,,,0.06911,,,,,,,,,,0.03918,,,,,,,,,,0.04846,,,,,,,,,,0.03922,,,,,,,,,,0.05049,,,,,,,,,,0.0369,,,,,,,,,,0.64071,,,,,,,,,,0.65257,,,,,,,,,,0.63502,,,,,,,,,,0.66975,,,,,,,,,,0.68908,,,,,,,,,,0.68409,,,,,,,,,,0.72868,,,,,,,,,,0.68102,,,,,,,,,,0.66141,,,,,,,,,,197.38571,,,,,,,,,,199.45888,,,,,,,,,,202.51376,,,,,,,,,,197.50777,,,,,,,,,,204.30554,,,,,,,,,,200.63309,,,,,,,,,,202.47657,,,,,,,,,,202.04355,,,,,,,,,,198.64397,,,,,,,,,,0.00062,,,,,,,,,,0.00063,,,,,,,,,,0.00066,,,,,,,,,,0.0006,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00062,,,,,,,,,,0.00064,,,,,,,,,,0.00063,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,0.0211,,,,,,,,,,0.02104,,,,,,,,,,0.02026,,,,,,,,,,0.02157,,,,,,,,,,0.0203,,,,,,,,,,0.02099,,,,,,,,,,0.02118,,,,,,,,,,0.0216,,,,,,,,,,0.02108,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00025,,,,,,,,,,0.03026,,,,,,,,,,0.03123,,,,,,,,,,0.03374,,,,,,,,,,0.02862,,,,,,,,,,0.03327,,,,,,,,,,0.03071,,,,,,,,,,0.03068,,,,,,,,,,0.03201,,,,,,,,,,0.0316,,,,,,,,,,0.00549,,,,,,,,,,0.00561,,,,,,,,,,0.00593,,,,,,,,,,0.00526,,,,,,,,,,0.00587,,,,,,,,,,0.00553,,,,,,,,,,0.00554,,,,,,,,,,0.00571,,,,,,,,,,0.00567,,,,,,,,,,0.0017,,,,,,,,,,0.00172,,,,,,,,,,0.00174,,,,,,,,,,0.0017,,,,,,,,,,0.00176,,,,,,,,,,0.00173,,,,,,,,,,0.00174,,,,,,,,,,0.00174,,,,,,,,,,0.00171,,,,,,,,,,0.06454,,,,,,,,,,0.06005,,,,,,,,,,0.06335,,,,,,,,,,0.06727,,,,,,,,,,0.03961,,,,,,,,,,0.04816,,,,,,,,,,0.03962,,,,,,,,,,0.05006,,,,,,,,,,0.0374 +Mini car,DSL,1990,0.026,,,,,,,,,,0.02588,,,,,,,,,,0.02558,,,,,,,,,,0.02612,,,,,,,,,,0.02562,,,,,,,,,,0.02589,,,,,,,,,,0.02594,,,,,,,,,,0.02587,,,,,,,,,,0.02592,,,,,,,,,,0.00868,,,,,,,,,,0.00871,,,,,,,,,,0.00884,,,,,,,,,,0.00874,,,,,,,,,,0.00868,,,,,,,,,,0.00869,,,,,,,,,,0.0086,,,,,,,,,,0.00871,,,,,,,,,,0.00847,,,,,,,,,,54.69607,,,,,,,,,,55.74997,,,,,,,,,,56.07294,,,,,,,,,,56.33335,,,,,,,,,,58.78798,,,,,,,,,,58.069,,,,,,,,,,59.39625,,,,,,,,,,57.62502,,,,,,,,,,55.58144,,,,,,,,,,329.98713,,,,,,,,,,331.1271,,,,,,,,,,335.43599,,,,,,,,,,330.52535,,,,,,,,,,331.91184,,,,,,,,,,329.54774,,,,,,,,,,329.33953,,,,,,,,,,331.4414,,,,,,,,,,325.62729,,,,,,,,,,0.00089,,,,,,,,,,0.0009,,,,,,,,,,0.00093,,,,,,,,,,0.00088,,,,,,,,,,0.00093,,,,,,,,,,0.0009,,,,,,,,,,0.0009,,,,,,,,,,0.00091,,,,,,,,,,0.0009,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,3.05803,,,,,,,,,,3.07514,,,,,,,,,,3.06437,,,,,,,,,,3.08633,,,,,,,,,,3.04143,,,,,,,,,,3.06813,,,,,,,,,,3.07616,,,,,,,,,,3.21304,,,,,,,,,,3.08594,,,,,,,,,,0.05811,,,,,,,,,,0.05767,,,,,,,,,,0.05673,,,,,,,,,,0.05748,,,,,,,,,,0.05669,,,,,,,,,,0.05676,,,,,,,,,,0.05765,,,,,,,,,,0.05743,,,,,,,,,,0.05854,,,,,,,,,,0.14852,,,,,,,,,,0.14866,,,,,,,,,,0.14938,,,,,,,,,,0.14606,,,,,,,,,,0.1489,,,,,,,,,,0.14677,,,,,,,,,,0.14816,,,,,,,,,,0.14906,,,,,,,,,,0.15041,,,,,,,,,,0.11429,,,,,,,,,,0.11365,,,,,,,,,,0.11232,,,,,,,,,,0.11331,,,,,,,,,,0.11224,,,,,,,,,,0.1123,,,,,,,,,,0.11362,,,,,,,,,,0.11339,,,,,,,,,,0.11497,,,,,,,,,,0.02515,,,,,,,,,,0.02524,,,,,,,,,,0.02556,,,,,,,,,,0.02519,,,,,,,,,,0.0253,,,,,,,,,,0.02512,,,,,,,,,,0.0251,,,,,,,,,,0.02526,,,,,,,,,,0.02482,,,,,,,,,,4.5203,,,,,,,,,,4.53449,,,,,,,,,,4.59942,,,,,,,,,,4.55494,,,,,,,,,,4.52218,,,,,,,,,,4.52974,,,,,,,,,,4.48279,,,,,,,,,,4.53909,,,,,,,,,,4.41259,,,,,,,,, +Mini car,DSL,1995,0.00359,0.02248,,,,,,,,,0.00357,0.02236,,,,,,,,,0.00353,0.02205,,,,,,,,,0.00358,0.02263,,,,,,,,,0.00353,0.0221,,,,,,,,,0.00355,0.02239,,,,,,,,,0.00358,0.02243,,,,,,,,,0.00356,0.02234,,,,,,,,,0.0036,0.02237,,,,,,,,,0.0032,0.00846,,,,,,,,,0.00319,0.00848,,,,,,,,,0.00324,0.00861,,,,,,,,,0.00323,0.00852,,,,,,,,,0.00311,0.00842,,,,,,,,,0.00315,0.00845,,,,,,,,,0.0031,0.00835,,,,,,,,,0.00316,0.00847,,,,,,,,,0.00304,0.00821,,,,,,,,,15.17855,46.76942,,,,,,,,,15.59833,47.73708,,,,,,,,,15.61216,48.02942,,,,,,,,,15.79418,48.23447,,,,,,,,,16.80771,50.51983,,,,,,,,,16.46091,49.8277,,,,,,,,,17.21873,51.08265,,,,,,,,,16.36114,49.44477,,,,,,,,,15.65219,47.61137,,,,,,,,,428.01183,341.64702,,,,,,,,,432.11228,343.02552,,,,,,,,,438.3528,347.6586,,,,,,,,,427.8292,342.16497,,,,,,,,,441.52723,344.40394,,,,,,,,,434.02469,341.60258,,,,,,,,,437.63309,341.62274,,,,,,,,,437.10942,343.65474,,,,,,,,,430.62199,337.52958,,,,,,,,,0.00068,0.00088,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00072,0.00092,,,,,,,,,0.00067,0.00086,,,,,,,,,0.00072,0.00091,,,,,,,,,0.00069,0.00089,,,,,,,,,0.00069,0.00088,,,,,,,,,0.0007,0.0009,,,,,,,,,0.0007,0.00089,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,2.14663,3.16694,,,,,,,,,2.16375,3.18495,,,,,,,,,2.1557,3.17375,,,,,,,,,2.16886,3.19759,,,,,,,,,2.14825,3.15276,,,,,,,,,2.16168,3.18016,,,,,,,,,2.1772,3.18891,,,,,,,,,2.27308,3.32576,,,,,,,,,2.17557,3.19542,,,,,,,,,0.00926,0.05041,,,,,,,,,0.00917,0.04996,,,,,,,,,0.00906,0.04894,,,,,,,,,0.00909,0.05006,,,,,,,,,0.00903,0.04895,,,,,,,,,0.00898,0.04927,,,,,,,,,0.00917,0.04999,,,,,,,,,0.00913,0.04969,,,,,,,,,0.00937,0.05062,,,,,,,,,0.04688,0.1301,,,,,,,,,0.04768,0.13026,,,,,,,,,0.04997,0.13088,,,,,,,,,0.04498,0.12813,,,,,,,,,0.04948,0.13049,,,,,,,,,0.04687,0.12875,,,,,,,,,0.04714,0.12983,,,,,,,,,0.04839,0.13061,,,,,,,,,0.04838,0.13163,,,,,,,,,0.02078,0.09734,,,,,,,,,0.02074,0.09672,,,,,,,,,0.02086,0.0953,,,,,,,,,0.02031,0.09681,,,,,,,,,0.02078,0.0953,,,,,,,,,0.02039,0.09573,,,,,,,,,0.02068,0.09676,,,,,,,,,0.02078,0.09642,,,,,,,,,0.02111,0.09769,,,,,,,,,0.03262,0.003,,,,,,,,,0.03293,0.00302,,,,,,,,,0.03341,0.00306,,,,,,,,,0.03261,0.00301,,,,,,,,,0.03365,0.00303,,,,,,,,,0.03308,0.003,,,,,,,,,0.03335,0.003,,,,,,,,,0.03331,0.00302,,,,,,,,,0.03282,0.00297,,,,,,,,,1.48396,3.92055,,,,,,,,,1.48178,3.93007,,,,,,,,,1.50517,3.98953,,,,,,,,,1.49888,3.95098,,,,,,,,,1.4471,3.90473,,,,,,,,,1.46139,3.91532,,,,,,,,,1.43796,3.87038,,,,,,,,,1.46883,3.92676,,,,,,,,,1.41028,3.80792,,,,,,,, +Mini car,DSL,2000,0.00127,0.00211,0.00894,,,,,,,,0.00126,0.00209,0.0089,,,,,,,,0.00124,0.00206,0.00881,,,,,,,,0.00125,0.00207,0.00897,,,,,,,,0.00124,0.00205,0.00882,,,,,,,,0.00123,0.00204,0.0089,,,,,,,,0.00126,0.00209,0.00892,,,,,,,,0.00125,0.00208,0.00889,,,,,,,,0.00129,0.00213,0.00892,,,,,,,,0.00117,0.00223,0.00443,,,,,,,,0.00115,0.00221,0.00442,,,,,,,,0.00117,0.00224,0.00448,,,,,,,,0.00119,0.00226,0.00449,,,,,,,,0.00106,0.00211,0.00431,,,,,,,,0.0011,0.00217,0.00437,,,,,,,,0.00106,0.00211,0.00429,,,,,,,,0.00111,0.00217,0.00438,,,,,,,,0.00103,0.00206,0.0042,,,,,,,,5.43349,9.04791,19.48785,,,,,,,,5.58995,9.29532,19.98008,,,,,,,,5.57617,9.25435,20.02978,,,,,,,,5.69483,9.46078,20.24668,,,,,,,,6.04741,10.03494,21.40943,,,,,,,,5.93821,9.84658,21.03693,,,,,,,,6.23104,10.36394,21.84852,,,,,,,,5.88055,9.7718,20.87089,,,,,,,,5.60351,9.34556,19.99406,,,,,,,,424.53585,426.86961,402.05017,,,,,,,,429.06318,431.27719,405.35869,,,,,,,,435.25315,437.51151,411.21184,,,,,,,,424.75673,427.09067,402.32845,,,,,,,,439.98205,441.75958,412.39028,,,,,,,,432.01564,433.96324,406.3428,,,,,,,,436.35979,438.09288,408.88078,,,,,,,,434.91551,436.88665,409.0714,,,,,,,,428.16158,430.03498,402.27813,,,,,,,,0.00064,0.00066,0.00076,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00068,0.0007,0.0008,,,,,,,,0.00062,0.00065,0.00075,,,,,,,,0.00067,0.0007,0.00079,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00065,0.00067,0.00077,,,,,,,,0.00066,0.00069,0.00078,,,,,,,,0.00065,0.00068,0.00077,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,1.01966,1.51422,2.39522,,,,,,,,1.02707,1.52535,2.41082,,,,,,,,1.0201,1.51647,2.39959,,,,,,,,1.03305,1.53403,2.42256,,,,,,,,1.02031,1.51587,2.39197,,,,,,,,1.02873,1.52851,2.41208,,,,,,,,1.03752,1.53893,2.42376,,,,,,,,1.07682,1.59622,2.51893,,,,,,,,1.03229,1.53113,2.41921,,,,,,,,0.00346,0.00553,0.02015,,,,,,,,0.00341,0.00544,0.02,,,,,,,,0.00335,0.00534,0.01973,,,,,,,,0.00331,0.00529,0.0199,,,,,,,,0.00333,0.00531,0.0197,,,,,,,,0.00326,0.0052,0.01968,,,,,,,,0.0034,0.00543,0.01999,,,,,,,,0.00338,0.0054,0.01992,,,,,,,,0.00356,0.00569,0.02032,,,,,,,,0.0352,0.03913,0.06899,,,,,,,,0.03608,0.03994,0.06968,,,,,,,,0.03848,0.04227,0.07168,,,,,,,,0.03333,0.03711,0.06702,,,,,,,,0.03798,0.04176,0.0712,,,,,,,,0.03532,0.03903,0.06869,,,,,,,,0.03552,0.03938,0.06915,,,,,,,,0.03681,0.04065,0.07034,,,,,,,,0.03671,0.04073,0.07055,,,,,,,,0.01004,0.01366,0.04112,,,,,,,,0.01007,0.01363,0.04098,,,,,,,,0.01029,0.01378,0.04084,,,,,,,,0.0096,0.01308,0.04059,,,,,,,,0.0102,0.01367,0.04075,,,,,,,,0.00977,0.01319,0.04048,,,,,,,,0.00999,0.01354,0.04093,,,,,,,,0.01013,0.01366,0.04098,,,,,,,,0.01037,0.01407,0.0415,,,,,,,,0.03235,0.00375,0.00354,,,,,,,,0.0327,0.00379,0.00356,,,,,,,,0.03317,0.00385,0.00362,,,,,,,,0.03237,0.00376,0.00354,,,,,,,,0.03353,0.00388,0.00363,,,,,,,,0.03292,0.00382,0.00357,,,,,,,,0.03326,0.00385,0.0036,,,,,,,,0.03315,0.00384,0.0036,,,,,,,,0.03263,0.00378,0.00354,,,,,,,,0.54567,1.03112,2.04743,,,,,,,,0.53701,1.02363,2.04216,,,,,,,,0.54668,1.03642,2.06977,,,,,,,,0.55671,1.04831,2.07326,,,,,,,,0.49304,0.97957,1.99044,,,,,,,,0.51395,1.00352,2.01819,,,,,,,,0.49267,0.97867,1.98131,,,,,,,,0.51698,1.0053,2.02259,,,,,,,,0.47988,0.95645,1.94229,,,,,,, +Mini car,DSL,2005,0.00054,0.00081,0.00132,0.0029,,,,,,,0.00053,0.00081,0.00132,0.00289,,,,,,,0.00053,0.0008,0.00131,0.00287,,,,,,,0.00053,0.0008,0.00132,0.00289,,,,,,,0.00053,0.0008,0.00131,0.00287,,,,,,,0.00053,0.0008,0.00131,0.00288,,,,,,,0.00053,0.00081,0.00132,0.00289,,,,,,,0.00054,0.00081,0.00132,0.00289,,,,,,,0.00054,0.00081,0.00133,0.00291,,,,,,,0.0007,0.00112,0.00172,0.00249,,,,,,,0.00067,0.00108,0.00168,0.00244,,,,,,,0.00069,0.0011,0.0017,0.00247,,,,,,,0.00073,0.00115,0.00177,0.00256,,,,,,,0.00052,0.00092,0.00148,0.00221,,,,,,,0.00059,0.001,0.00158,0.00233,,,,,,,0.00052,0.00092,0.00149,0.00222,,,,,,,0.0006,0.001,0.00159,0.00233,,,,,,,0.0005,0.00089,0.00145,0.00216,,,,,,,1.81784,3.85807,5.64199,7.89975,,,,,,,1.85566,3.94664,5.77147,8.07547,,,,,,,1.83106,3.92323,5.75186,8.04688,,,,,,,1.89236,4.00853,5.85369,8.19569,,,,,,,1.97359,4.22408,6.17762,8.61792,,,,,,,1.94761,4.14856,6.06282,8.47551,,,,,,,2.05331,4.36007,6.35462,8.85713,,,,,,,1.93841,4.13096,6.03749,8.43165,,,,,,,1.87275,3.97793,5.81188,8.11952,,,,,,,422.70823,424.02676,427.37967,433.48902,,,,,,,427.34753,428.5819,431.77522,437.60642,,,,,,,433.50386,434.7623,438.02017,443.96917,,,,,,,422.95866,424.2502,427.62391,433.7895,,,,,,,438.66966,439.60178,442.21181,447.01959,,,,,,,430.55618,431.59761,434.4406,439.66258,,,,,,,435.09796,435.99109,438.54674,443.26521,,,,,,,433.42617,434.49086,437.36002,442.62302,,,,,,,426.71897,427.7554,430.46337,435.41348,,,,,,,0.00062,0.00063,0.00067,0.00073,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00066,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00065,0.00072,,,,,,,0.00065,0.00067,0.0007,0.00077,,,,,,,0.00063,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00064,0.00067,0.00074,,,,,,,0.00064,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.19374,0.40353,0.56445,0.93128,,,,,,,0.1948,0.4056,0.567,0.93569,,,,,,,0.19355,0.40295,0.56299,0.92948,,,,,,,0.19641,0.40913,0.57253,0.94438,,,,,,,0.1933,0.40238,0.56223,0.92842,,,,,,,0.19536,0.40685,0.56906,0.93924,,,,,,,0.19633,0.40858,0.57086,0.9418,,,,,,,0.20297,0.42203,0.58845,0.97047,,,,,,,0.19533,0.40651,0.56772,0.93651,,,,,,,0.00148,0.00218,0.00336,0.00671,,,,,,,0.00148,0.00217,0.00335,0.00666,,,,,,,0.00148,0.00217,0.00335,0.00662,,,,,,,0.00145,0.00212,0.00329,0.00655,,,,,,,0.00147,0.00216,0.00334,0.0066,,,,,,,0.00144,0.00212,0.00329,0.00651,,,,,,,0.00147,0.00216,0.00334,0.00665,,,,,,,0.00148,0.00217,0.00335,0.00665,,,,,,,0.00151,0.00222,0.00342,0.00682,,,,,,,0.03129,0.03258,0.03496,0.04181,,,,,,,0.03226,0.03355,0.03592,0.0427,,,,,,,0.03476,0.03605,0.03842,0.04513,,,,,,,0.02961,0.03088,0.03322,0.03994,,,,,,,0.03429,0.03558,0.03794,0.04463,,,,,,,0.0317,0.03296,0.03531,0.04195,,,,,,,0.0317,0.03299,0.03535,0.04214,,,,,,,0.03304,0.03432,0.0367,0.04347,,,,,,,0.03267,0.03398,0.03637,0.04332,,,,,,,0.00644,0.00763,0.00981,0.01612,,,,,,,0.00656,0.00774,0.00992,0.01617,,,,,,,0.00687,0.00805,0.01024,0.01641,,,,,,,0.00618,0.00734,0.0095,0.01568,,,,,,,0.0068,0.00798,0.01016,0.01631,,,,,,,0.00644,0.0076,0.00976,0.01587,,,,,,,0.00648,0.00766,0.00984,0.01608,,,,,,,0.00666,0.00784,0.01002,0.01625,,,,,,,0.00665,0.00786,0.01006,0.01645,,,,,,,0.03222,0.00373,0.00376,0.00381,,,,,,,0.03257,0.00377,0.0038,0.00385,,,,,,,0.03304,0.00382,0.00385,0.0039,,,,,,,0.03223,0.00373,0.00376,0.00381,,,,,,,0.03343,0.00387,0.00389,0.00393,,,,,,,0.03281,0.0038,0.00382,0.00387,,,,,,,0.03316,0.00383,0.00386,0.0039,,,,,,,0.03303,0.00382,0.00385,0.00389,,,,,,,0.03252,0.00376,0.00379,0.00383,,,,,,,0.20408,0.3204,0.48891,0.81979,,,,,,,0.19468,0.31014,0.47658,0.80483,,,,,,,0.20096,0.31605,0.48269,0.81418,,,,,,,0.21117,0.33007,0.5026,0.83955,,,,,,,0.15195,0.26351,0.42061,0.73457,,,,,,,0.17103,0.28597,0.44937,0.77197,,,,,,,0.15269,0.26546,0.42413,0.7383,,,,,,,0.17417,0.2883,0.45094,0.77331,,,,,,,0.14672,0.25703,0.412,0.71927,,,,,, +Mini car,DSL,2010,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00132,0.00254,,,,,,,0.00054,0.00078,0.00133,0.00256,,,,,,,0.00054,0.00078,0.00132,0.00254,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.00054,0.00078,0.00133,0.00255,,,,,,,0.0594,0.09236,0.16247,0.18186,,,,,,,0.05611,0.08847,0.1575,0.17647,,,,,,,0.05832,0.09087,0.16011,0.17928,,,,,,,0.06166,0.09546,0.1673,0.18722,,,,,,,0.0412,0.07081,0.13491,0.15201,,,,,,,0.0477,0.07886,0.14593,0.16407,,,,,,,0.0414,0.07133,0.13612,0.15334,,,,,,,0.0489,0.08006,0.14699,0.16512,,,,,,,0.03954,0.0687,0.13188,0.14866,,,,,,,1.8136,3.29322,4.96691,6.50306,,,,,,,1.85219,3.36648,5.0774,6.63792,,,,,,,1.82204,3.33036,5.0386,6.59299,,,,,,,1.89088,3.42695,5.16017,6.74484,,,,,,,1.97218,3.5952,5.42309,7.059,,,,,,,1.94584,3.53775,5.33203,6.95452,,,,,,,2.06109,3.7326,5.60693,7.27876,,,,,,,1.93758,3.52316,5.31009,6.92214,,,,,,,1.87273,3.39862,5.11985,6.68225,,,,,,,423.2017,425.42868,429.18554,435.14299,,,,,,,427.88141,430.0022,433.59459,439.28373,,,,,,,434.04025,436.20306,439.86734,445.67168,,,,,,,423.42338,425.65556,429.44467,435.46072,,,,,,,439.33815,441.07226,444.05767,448.76123,,,,,,,431.15134,433.03628,436.2664,441.37011,,,,,,,435.75745,437.45235,440.38242,445.00131,,,,,,,434.03339,435.93862,439.19421,444.33616,,,,,,,427.3705,429.17956,432.24851,437.08229,,,,,,,0.00061,0.00063,0.00067,0.00073,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00072,,,,,,,0.00065,0.00067,0.00071,0.00077,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00062,0.00064,0.00068,0.00074,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.09317,0.16776,0.2507,0.43866,,,,,,,0.09345,0.1682,0.25122,0.43983,,,,,,,0.0918,0.16522,0.24671,0.43418,,,,,,,0.09466,0.17049,0.25489,0.44574,,,,,,,0.09175,0.16513,0.2466,0.43397,,,,,,,0.09341,0.16822,0.25141,0.44128,,,,,,,0.09416,0.1694,0.2529,0.44258,,,,,,,0.09714,0.17454,0.26004,0.45429,,,,,,,0.0938,0.16871,0.25174,0.43991,,,,,,,0.00084,0.00111,0.00154,0.00338,,,,,,,0.00084,0.00111,0.00154,0.00337,,,,,,,0.00083,0.0011,0.00154,0.00336,,,,,,,0.00082,0.00109,0.00152,0.00333,,,,,,,0.00083,0.0011,0.00153,0.00335,,,,,,,0.00082,0.00109,0.00152,0.00332,,,,,,,0.00083,0.0011,0.00154,0.00336,,,,,,,0.00084,0.00111,0.00154,0.00337,,,,,,,0.00085,0.00112,0.00156,0.00342,,,,,,,0.03156,0.03283,0.0357,0.04116,,,,,,,0.03253,0.0338,0.03666,0.04211,,,,,,,0.03504,0.0363,0.03916,0.04458,,,,,,,0.0299,0.03116,0.034,0.0394,,,,,,,0.03457,0.03584,0.03869,0.0441,,,,,,,0.03199,0.03325,0.03608,0.04147,,,,,,,0.03198,0.03325,0.0361,0.04154,,,,,,,0.03332,0.03459,0.03745,0.0429,,,,,,,0.03292,0.0342,0.03708,0.04259,,,,,,,0.00669,0.00786,0.01049,0.01552,,,,,,,0.00681,0.00798,0.01061,0.01562,,,,,,,0.00713,0.00829,0.01091,0.01591,,,,,,,0.00645,0.0076,0.01021,0.01518,,,,,,,0.00706,0.00822,0.01084,0.01583,,,,,,,0.00671,0.00787,0.01048,0.01543,,,,,,,0.00673,0.0079,0.01053,0.01553,,,,,,,0.00691,0.00808,0.01071,0.01572,,,,,,,0.00689,0.00806,0.01072,0.01578,,,,,,,0.00354,0.00355,0.00357,0.00364,,,,,,,0.00358,0.00359,0.00361,0.00368,,,,,,,0.00363,0.00364,0.00366,0.00373,,,,,,,0.00354,0.00355,0.00357,0.00365,,,,,,,0.00368,0.00368,0.00369,0.00376,,,,,,,0.00361,0.00361,0.00363,0.00369,,,,,,,0.00365,0.00365,0.00366,0.00373,,,,,,,0.00363,0.00364,0.00365,0.00372,,,,,,,0.00358,0.00358,0.0036,0.00366,,,,,,,0.12284,0.17646,0.25767,0.43798,,,,,,,0.11719,0.1701,0.25018,0.42741,,,,,,,0.12102,0.174,0.25425,0.43309,,,,,,,0.12704,0.18194,0.26512,0.4499,,,,,,,0.09142,0.14108,0.21603,0.37908,,,,,,,0.10282,0.15455,0.23275,0.40387,,,,,,,0.09187,0.14207,0.21781,0.38182,,,,,,,0.10482,0.15638,0.23432,0.40527,,,,,,,0.08826,0.13726,0.21118,0.37109,,,,, +Mini car,DSL,2015,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.00052,0.00081,0.00133,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00133,0.00231,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00233,,,,,,,0.00052,0.00081,0.00134,0.00232,,,,,,,0.08628,0.13981,0.21316,0.26684,,,,,,,0.08155,0.13428,0.20654,0.25888,,,,,,,0.08473,0.1376,0.21006,0.26305,,,,,,,0.08955,0.14439,0.21954,0.27474,,,,,,,0.0601,0.10915,0.17644,0.22278,,,,,,,0.06946,0.12074,0.19107,0.24057,,,,,,,0.06041,0.11,0.178,0.22471,,,,,,,0.07119,0.12236,0.19251,0.24211,,,,,,,0.05772,0.10609,0.17242,0.21784,,,,,,,1.50615,3.35216,4.9018,5.95994,,,,,,,1.53702,3.42585,5.00954,6.08262,,,,,,,1.50784,3.38732,4.96771,6.0331,,,,,,,1.57139,3.48841,5.09306,6.18325,,,,,,,1.63277,3.65582,5.34642,6.46647,,,,,,,1.61378,3.59917,5.2594,6.37196,,,,,,,1.71139,3.79726,5.53154,6.67979,,,,,,,1.60669,3.5841,5.23754,6.34417,,,,,,,1.55484,3.45857,5.05188,6.12807,,,,,,,340.58306,341.92105,342.19319,348.86925,,,,,,,344.39677,345.61199,345.71094,352.19832,,,,,,,349.60016,350.84708,350.97032,357.56216,,,,,,,340.67929,342.0276,342.32627,349.05937,,,,,,,353.60221,354.37935,353.87575,359.65328,,,,,,,346.87639,347.83518,347.59674,353.65616,,,,,,,350.47577,351.22104,350.6907,356.40186,,,,,,,349.32115,350.29328,350.0587,356.1526,,,,,,,343.75689,344.63462,344.27903,350.10678,,,,,,,0.00061,0.00064,0.00068,0.00073,,,,,,,0.00062,0.00065,0.00069,0.00074,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00062,0.00066,0.00071,,,,,,,0.00065,0.00067,0.00071,0.00076,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00073,,,,,,,0.00063,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.0669,0.14623,0.22002,0.28531,,,,,,,0.06703,0.14648,0.22034,0.28566,,,,,,,0.06553,0.14331,0.21577,0.28027,,,,,,,0.06805,0.14875,0.22383,0.29025,,,,,,,0.06552,0.14328,0.21572,0.28021,,,,,,,0.06693,0.14636,0.22035,0.28609,,,,,,,0.06754,0.14752,0.2218,0.28739,,,,,,,0.06961,0.15183,0.2279,0.29468,,,,,,,0.06731,0.14695,0.22083,0.28589,,,,,,,0.00041,0.00062,0.00096,0.00169,,,,,,,0.00041,0.00061,0.00096,0.00169,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00095,0.00167,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00095,0.00166,,,,,,,0.00041,0.00061,0.00096,0.00168,,,,,,,0.00041,0.00061,0.00096,0.00169,,,,,,,0.00042,0.00062,0.00097,0.0017,,,,,,,0.03156,0.03317,0.03594,0.04069,,,,,,,0.03253,0.03414,0.03691,0.04165,,,,,,,0.03503,0.03664,0.0394,0.04413,,,,,,,0.0299,0.0315,0.03425,0.03896,,,,,,,0.03457,0.03618,0.03893,0.04366,,,,,,,0.03199,0.03359,0.03633,0.04104,,,,,,,0.03198,0.03359,0.03635,0.04109,,,,,,,0.03331,0.03493,0.0377,0.04244,,,,,,,0.03292,0.03455,0.03734,0.04211,,,,,,,0.00669,0.00817,0.01072,0.01509,,,,,,,0.00681,0.00829,0.01084,0.0152,,,,,,,0.00712,0.0086,0.01114,0.01549,,,,,,,0.00644,0.00791,0.01044,0.01478,,,,,,,0.00706,0.00854,0.01107,0.01542,,,,,,,0.00671,0.00818,0.0107,0.01504,,,,,,,0.00673,0.00821,0.01075,0.01511,,,,,,,0.00691,0.00839,0.01094,0.01531,,,,,,,0.00688,0.00838,0.01095,0.01534,,,,,,,0.00278,0.00279,0.0028,0.00286,,,,,,,0.00281,0.00282,0.00282,0.00288,,,,,,,0.00286,0.00287,0.00287,0.00293,,,,,,,0.00278,0.00279,0.0028,0.00286,,,,,,,0.00289,0.0029,0.00289,0.00295,,,,,,,0.00283,0.00284,0.00284,0.0029,,,,,,,0.00286,0.00287,0.00287,0.00292,,,,,,,0.00285,0.00286,0.00286,0.00292,,,,,,,0.00281,0.00282,0.00281,0.00287,,,,,,,0.08521,0.1349,0.20296,0.27412,,,,,,,0.08088,0.12982,0.19686,0.2663,,,,,,,0.0839,0.13298,0.20022,0.27049,,,,,,,0.08825,0.13915,0.20888,0.28203,,,,,,,0.06111,0.10664,0.16906,0.23072,,,,,,,0.0697,0.11729,0.18254,0.2483,,,,,,,0.06135,0.10738,0.17046,0.2326,,,,,,,0.07134,0.11883,0.18392,0.2498,,,,,,,0.05876,0.10365,0.16519,0.22562,,,, +Mini car,DSL,2020,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00188,,,,,,,0.00047,0.00069,0.00102,0.00186,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00047,0.00069,0.00102,0.00187,,,,,,,0.00048,0.0007,0.00102,0.00187,,,,,,,0.07955,0.11217,0.15133,0.21057,,,,,,,0.07468,0.10656,0.14468,0.20224,,,,,,,0.07804,0.11022,0.14885,0.20729,,,,,,,0.08274,0.11624,0.15651,0.21751,,,,,,,0.05258,0.0811,0.1145,0.16449,,,,,,,0.06207,0.09237,0.12816,0.18198,,,,,,,0.05278,0.08159,0.11529,0.16567,,,,,,,0.06395,0.09431,0.13026,0.18432,,,,,,,0.0502,0.07821,0.11093,0.15982,,,,,,,1.19391,2.1344,2.82594,3.84164,,,,,,,1.2178,2.17907,2.88375,3.91516,,,,,,,1.19354,2.1469,2.84465,3.86784,,,,,,,1.24561,2.22272,2.9393,3.98793,,,,,,,1.29181,2.31811,3.06395,4.14472,,,,,,,1.27788,2.28717,3.02354,4.09566,,,,,,,1.35511,2.41689,3.18797,4.29865,,,,,,,1.27219,2.2774,3.01073,4.07709,,,,,,,1.23197,2.20151,2.91154,3.94692,,,,,,,267.47413,268.7024,269.59109,282.72822,,,,,,,270.39636,271.52604,272.27294,285.31187,,,,,,,274.52522,275.6807,276.45205,289.70385,,,,,,,267.57742,268.81704,269.73372,282.93159,,,,,,,277.35167,278.12917,278.38198,290.93884,,,,,,,272.18285,273.10729,273.57779,286.26224,,,,,,,274.86534,275.61838,275.85038,288.27644,,,,,,,274.11096,275.04517,275.51904,288.28668,,,,,,,269.62999,270.48429,270.84623,283.23313,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00072,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00066,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.04804,0.09113,0.1223,0.17438,,,,,,,0.04809,0.09119,0.12233,0.17442,,,,,,,0.04687,0.08895,0.11941,0.17068,,,,,,,0.04891,0.0928,0.12457,0.17759,,,,,,,0.04689,0.08898,0.11946,0.17074,,,,,,,0.04801,0.09112,0.12236,0.17474,,,,,,,0.04844,0.09182,0.12311,0.17544,,,,,,,0.04979,0.09423,0.12611,0.17937,,,,,,,0.04825,0.09141,0.1225,0.17441,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00072,0.00123,,,,,,,0.00037,0.00052,0.00073,0.00123,,,,,,,0.00037,0.00052,0.00072,0.00122,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00037,0.00052,0.00073,0.00124,,,,,,,0.00038,0.00053,0.00074,0.00125,,,,,,,0.03126,0.03246,0.03413,0.0382,,,,,,,0.03224,0.03343,0.0351,0.03917,,,,,,,0.03474,0.03593,0.0376,0.04165,,,,,,,0.02961,0.03079,0.03246,0.0365,,,,,,,0.03428,0.03546,0.03713,0.04118,,,,,,,0.0317,0.03288,0.03454,0.03858,,,,,,,0.03168,0.03287,0.03455,0.03861,,,,,,,0.03302,0.03421,0.03589,0.03996,,,,,,,0.03262,0.03382,0.03551,0.0396,,,,,,,0.00641,0.00751,0.00906,0.0128,,,,,,,0.00654,0.00763,0.00917,0.01291,,,,,,,0.00685,0.00795,0.00948,0.01321,,,,,,,0.00618,0.00726,0.00879,0.01252,,,,,,,0.00679,0.00788,0.00942,0.01314,,,,,,,0.00644,0.00753,0.00906,0.01277,,,,,,,0.00646,0.00756,0.00909,0.01283,,,,,,,0.00664,0.00773,0.00928,0.01302,,,,,,,0.00661,0.00772,0.00927,0.01303,,,,,,,0.00219,0.0022,0.0022,0.00231,,,,,,,0.00221,0.00222,0.00222,0.00233,,,,,,,0.00224,0.00225,0.00226,0.00237,,,,,,,0.00219,0.0022,0.0022,0.00231,,,,,,,0.00227,0.00227,0.00227,0.00238,,,,,,,0.00222,0.00223,0.00224,0.00234,,,,,,,0.00225,0.00225,0.00225,0.00236,,,,,,,0.00224,0.00225,0.00225,0.00236,,,,,,,0.0022,0.00221,0.00221,0.00231,,,,,,,0.07786,0.10814,0.14449,0.20169,,,,,,,0.07338,0.10298,0.13836,0.19395,,,,,,,0.07656,0.10644,0.14229,0.19872,,,,,,,0.08082,0.11192,0.1493,0.20819,,,,,,,0.05298,0.07945,0.11045,0.15876,,,,,,,0.06171,0.08983,0.12306,0.17504,,,,,,,0.05313,0.07987,0.11114,0.15983,,,,,,,0.06348,0.09167,0.12503,0.17725,,,,,,,0.05065,0.07665,0.10702,0.15427,,, +Mini car,DSL,2025,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.0013,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00066,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.00031,0.00044,0.00067,0.00129,,,,,,,0.06948,0.09009,0.1176,0.16463,,,,,,,0.06458,0.0845,0.11099,0.15624,,,,,,,0.06807,0.08837,0.11545,0.16178,,,,,,,0.07249,0.09373,0.12211,0.17068,,,,,,,0.04232,0.05913,0.08101,0.11823,,,,,,,0.05171,0.07,0.09405,0.13504,,,,,,,0.0424,0.05935,0.08141,0.11887,,,,,,,0.05371,0.07217,0.09649,0.13794,,,,,,,0.04,0.05641,0.07772,0.1139,,,,,,,0.75481,1.36799,1.85261,2.54958,,,,,,,0.76903,1.39514,1.88894,2.59604,,,,,,,0.74992,1.36741,1.85479,2.5542,,,,,,,0.78851,1.42663,1.92951,2.64946,,,,,,,0.81289,1.47933,2.0018,2.74068,,,,,,,0.8063,1.46333,1.97957,2.71396,,,,,,,0.8575,1.55151,2.09394,2.85562,,,,,,,0.80265,1.45708,1.97124,2.70161,,,,,,,0.77894,1.41151,1.9097,2.61992,,,,,,,215.70646,216.77705,217.85506,230.00549,,,,,,,217.99641,218.9852,219.94309,232.0016,,,,,,,221.33256,222.34378,223.32755,235.5896,,,,,,,215.82613,216.90812,218.0146,230.22831,,,,,,,223.37661,224.0725,224.60684,236.21274,,,,,,,219.32184,220.14011,220.86006,232.58707,,,,,,,221.37594,222.05176,222.56686,234.04938,,,,,,,220.86683,221.69325,222.41697,234.22095,,,,,,,217.17904,217.9356,218.55139,229.98659,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00076,,,,,,,0.00063,0.00066,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02682,0.05159,0.07257,0.10821,,,,,,,0.02678,0.05151,0.07245,0.10808,,,,,,,0.02591,0.0499,0.07028,0.10531,,,,,,,0.02737,0.05264,0.07407,0.11039,,,,,,,0.02595,0.04997,0.07038,0.10544,,,,,,,0.02673,0.05146,0.07246,0.10831,,,,,,,0.02697,0.05185,0.07289,0.1087,,,,,,,0.02758,0.05295,0.07431,0.11068,,,,,,,0.02684,0.05158,0.07246,0.10795,,,,,,,0.00024,0.00034,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00047,0.00084,,,,,,,0.00024,0.00033,0.00047,0.00083,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00024,0.00033,0.00048,0.00084,,,,,,,0.00025,0.00034,0.00048,0.00085,,,,,,,0.03026,0.03099,0.03213,0.03514,,,,,,,0.03123,0.03196,0.0331,0.03611,,,,,,,0.03374,0.03447,0.03561,0.0386,,,,,,,0.02862,0.02934,0.03048,0.03347,,,,,,,0.03328,0.03401,0.03514,0.03813,,,,,,,0.03071,0.03143,0.03256,0.03555,,,,,,,0.03068,0.03141,0.03255,0.03555,,,,,,,0.03201,0.03275,0.03389,0.03689,,,,,,,0.0316,0.03234,0.03349,0.03651,,,,,,,0.00549,0.00616,0.00722,0.00998,,,,,,,0.00561,0.00629,0.00734,0.0101,,,,,,,0.00593,0.0066,0.00765,0.0104,,,,,,,0.00526,0.00593,0.00697,0.00972,,,,,,,0.00587,0.00654,0.00758,0.01034,,,,,,,0.00553,0.0062,0.00724,0.00998,,,,,,,0.00554,0.00621,0.00726,0.01002,,,,,,,0.00571,0.00639,0.00744,0.0102,,,,,,,0.00568,0.00635,0.00741,0.01019,,,,,,,0.00176,0.00177,0.00178,0.00188,,,,,,,0.00178,0.00179,0.0018,0.0019,,,,,,,0.00181,0.00182,0.00182,0.00192,,,,,,,0.00176,0.00177,0.00178,0.00188,,,,,,,0.00183,0.00183,0.00184,0.00193,,,,,,,0.00179,0.0018,0.0018,0.0019,,,,,,,0.00181,0.00181,0.00182,0.00191,,,,,,,0.0018,0.00181,0.00182,0.00191,,,,,,,0.00177,0.00178,0.00179,0.00188,,,,,,,0.06773,0.08687,0.11241,0.15623,,,,,,,0.06322,0.08172,0.10631,0.14848,,,,,,,0.06651,0.08536,0.1105,0.15367,,,,,,,0.07053,0.09025,0.1166,0.16185,,,,,,,0.04265,0.05825,0.07857,0.11327,,,,,,,0.05129,0.06828,0.0906,0.12882,,,,,,,0.04269,0.05842,0.0789,0.11383,,,,,,,0.05318,0.07032,0.09289,0.13153,,,,,,,0.0404,0.05563,0.07541,0.10916,, +Mini car,DSL,2030,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00066,0.00114,,,,,,,0.00031,0.00044,0.00066,0.00113,,,,,,,0.00031,0.00044,0.00067,0.00114,,,,,,,0.00031,0.00044,0.00067,0.00113,,,,,,,0.06649,0.0839,0.10901,0.14537,,,,,,,0.06159,0.07833,0.10241,0.13701,,,,,,,0.0651,0.08224,0.10695,0.14271,,,,,,,0.06943,0.0874,0.11336,0.15103,,,,,,,0.03936,0.05306,0.07247,0.09911,,,,,,,0.04869,0.06379,0.08535,0.11556,,,,,,,0.0394,0.05321,0.07276,0.09955,,,,,,,0.05072,0.06602,0.08788,0.11866,,,,,,,0.03707,0.0504,0.06924,0.09495,,,,,,,0.64076,1.17885,1.61853,2.07987,,,,,,,0.6526,1.20185,1.64987,2.11724,,,,,,,0.63506,1.17563,1.61741,2.07812,,,,,,,0.66978,1.2301,1.68659,2.16311,,,,,,,0.68905,1.27301,1.74708,2.23338,,,,,,,0.6841,1.26036,1.72886,2.21338,,,,,,,0.72861,1.33819,1.83102,2.33395,,,,,,,0.68101,1.25499,1.72162,2.20354,,,,,,,0.66141,1.21666,1.66884,2.1386,,,,,,,198.43459,199.94343,202.28578,209.79703,,,,,,,200.51609,201.9545,204.19538,211.57597,,,,,,,203.58757,205.05473,207.34106,214.85406,,,,,,,198.55882,200.07879,202.45148,210.02432,,,,,,,205.37985,206.55929,208.42594,215.27412,,,,,,,201.6922,202.97577,204.99694,212.03794,,,,,,,203.5412,204.69754,206.53444,213.30353,,,,,,,203.10975,204.40441,206.43796,213.52213,,,,,,,199.68908,200.90927,202.81414,209.61078,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04113,0.06005,0.08369,,,,,,,0.02107,0.04101,0.05989,0.08349,,,,,,,0.02028,0.03956,0.0579,0.08106,,,,,,,0.02159,0.04203,0.06136,0.08547,,,,,,,0.02033,0.03964,0.05802,0.08122,,,,,,,0.02102,0.04096,0.05989,0.08367,,,,,,,0.02121,0.04128,0.06025,0.08396,,,,,,,0.02162,0.04203,0.06127,0.08526,,,,,,,0.0211,0.04104,0.05987,0.08334,,,,,,,0.00024,0.00034,0.00048,0.00075,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00047,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00074,,,,,,,0.00024,0.00033,0.00048,0.00075,,,,,,,0.00025,0.00034,0.00048,0.00075,,,,,,,0.03026,0.03099,0.03213,0.03435,,,,,,,0.03123,0.03196,0.0331,0.03532,,,,,,,0.03374,0.03447,0.03561,0.03782,,,,,,,0.02862,0.02934,0.03048,0.03269,,,,,,,0.03328,0.034,0.03514,0.03735,,,,,,,0.03071,0.03143,0.03256,0.03477,,,,,,,0.03068,0.03141,0.03255,0.03477,,,,,,,0.03201,0.03274,0.03389,0.03611,,,,,,,0.0316,0.03234,0.03349,0.03572,,,,,,,0.00549,0.00616,0.00721,0.00926,,,,,,,0.00561,0.00628,0.00733,0.00938,,,,,,,0.00593,0.0066,0.00765,0.00968,,,,,,,0.00526,0.00593,0.00697,0.00901,,,,,,,0.00587,0.00654,0.00758,0.00962,,,,,,,0.00553,0.00619,0.00724,0.00927,,,,,,,0.00554,0.00621,0.00726,0.0093,,,,,,,0.00571,0.00639,0.00744,0.00948,,,,,,,0.00567,0.00635,0.00741,0.00946,,,,,,,0.00162,0.00163,0.00165,0.00171,,,,,,,0.00164,0.00165,0.00167,0.00173,,,,,,,0.00166,0.00168,0.00169,0.00176,,,,,,,0.00162,0.00163,0.00165,0.00172,,,,,,,0.00168,0.00169,0.0017,0.00176,,,,,,,0.00165,0.00166,0.00168,0.00173,,,,,,,0.00166,0.00167,0.00169,0.00174,,,,,,,0.00166,0.00167,0.00169,0.00174,,,,,,,0.00163,0.00164,0.00166,0.00171,,,,,,,0.06469,0.08087,0.10421,0.13806,,,,,,,0.06018,0.07573,0.09811,0.13033,,,,,,,0.06349,0.07941,0.10237,0.13566,,,,,,,0.06743,0.08412,0.10824,0.14331,,,,,,,0.03963,0.05236,0.07039,0.09522,,,,,,,0.04822,0.06226,0.08229,0.11043,,,,,,,0.03964,0.05247,0.07064,0.09559,,,,,,,0.05013,0.06435,0.08467,0.11333,,,,,,,0.03741,0.0498,0.06731,0.09127, +Mini car,DSL,2035,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00112,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00066,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.00031,0.00044,0.00067,0.00111,,,,,,,0.06625,0.08388,0.10899,0.14208,,,,,,,0.06137,0.07831,0.10239,0.13371,,,,,,,0.06488,0.08222,0.10693,0.13944,,,,,,,0.06919,0.08738,0.11334,0.14767,,,,,,,0.03923,0.05305,0.07246,0.09577,,,,,,,0.04852,0.06378,0.08533,0.11217,,,,,,,0.03927,0.0532,0.07275,0.09616,,,,,,,0.05055,0.06601,0.08787,0.11532,,,,,,,0.03695,0.05039,0.06923,0.09163,,,,,,,0.64138,1.17879,1.61842,2.00267,,,,,,,0.65324,1.20178,1.64976,2.03863,,,,,,,0.63568,1.17558,1.6173,1.99997,,,,,,,0.67043,1.23003,1.68647,2.08323,,,,,,,0.68978,1.27296,1.74696,2.15032,,,,,,,0.68479,1.2603,1.72874,2.1313,,,,,,,0.7294,1.33813,1.83089,2.24861,,,,,,,0.68171,1.25493,1.72151,2.1219,,,,,,,0.66209,1.2166,1.66874,2.05964,,,,,,,198.39128,199.93868,202.28244,206.69439,,,,,,,200.47433,201.94983,204.19198,208.43955,,,,,,,203.5447,205.05006,207.3377,211.66977,,,,,,,198.51421,200.07392,202.44798,206.92264,,,,,,,205.34345,206.55515,208.42285,212.05687,,,,,,,201.65353,202.97141,204.99377,208.88161,,,,,,,203.50502,204.6935,206.53127,210.11597,,,,,,,203.07102,204.40004,206.43478,210.34267,,,,,,,199.65343,200.90546,202.81126,206.48042,,,,,,,0.00062,0.00064,0.00068,0.00073,,,,,,,0.00063,0.00065,0.00069,0.00074,,,,,,,0.00066,0.00068,0.00071,0.00077,,,,,,,0.0006,0.00063,0.00066,0.00072,,,,,,,0.00065,0.00068,0.00071,0.00077,,,,,,,0.00063,0.00065,0.00068,0.00074,,,,,,,0.00062,0.00065,0.00068,0.00074,,,,,,,0.00064,0.00066,0.0007,0.00075,,,,,,,0.00063,0.00065,0.00069,0.00075,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00762,0.00762,0.00762,0.00762,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00764,0.00764,0.00764,0.00764,,,,,,,0.00765,0.00765,0.00765,0.00765,,,,,,,0.00767,0.00767,0.00767,0.00767,,,,,,,0.00768,0.00768,0.00768,0.00768,,,,,,,0.02112,0.04114,0.06005,0.07962,,,,,,,0.02106,0.04103,0.05988,0.07941,,,,,,,0.02028,0.03957,0.05789,0.07704,,,,,,,0.02159,0.04204,0.06135,0.08134,,,,,,,0.02033,0.03966,0.05801,0.0772,,,,,,,0.02102,0.04097,0.05989,0.07958,,,,,,,0.02121,0.04129,0.06024,0.07986,,,,,,,0.02162,0.04205,0.06127,0.08105,,,,,,,0.0211,0.04106,0.05986,0.07926,,,,,,,0.00024,0.00034,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00047,0.00073,,,,,,,0.00024,0.00033,0.00047,0.00072,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00024,0.00033,0.00048,0.00073,,,,,,,0.00025,0.00034,0.00048,0.00074,,,,,,,0.03026,0.03099,0.03213,0.03425,,,,,,,0.03123,0.03196,0.0331,0.03522,,,,,,,0.03374,0.03447,0.03561,0.03771,,,,,,,0.02862,0.02934,0.03048,0.03258,,,,,,,0.03328,0.034,0.03514,0.03725,,,,,,,0.03071,0.03143,0.03256,0.03467,,,,,,,0.03068,0.03141,0.03255,0.03466,,,,,,,0.03201,0.03274,0.03389,0.036,,,,,,,0.0316,0.03234,0.03349,0.03562,,,,,,,0.00549,0.00616,0.00721,0.00916,,,,,,,0.00561,0.00629,0.00733,0.00928,,,,,,,0.00593,0.0066,0.00765,0.00959,,,,,,,0.00526,0.00593,0.00697,0.00891,,,,,,,0.00587,0.00654,0.00758,0.00952,,,,,,,0.00553,0.00619,0.00724,0.00917,,,,,,,0.00554,0.00621,0.00726,0.0092,,,,,,,0.00571,0.00639,0.00744,0.00938,,,,,,,0.00567,0.00635,0.00741,0.00937,,,,,,,0.00162,0.00163,0.00165,0.00169,,,,,,,0.00164,0.00165,0.00167,0.0017,,,,,,,0.00166,0.00168,0.00169,0.00173,,,,,,,0.00162,0.00163,0.00165,0.00169,,,,,,,0.00168,0.00169,0.0017,0.00173,,,,,,,0.00165,0.00166,0.00167,0.00171,,,,,,,0.00166,0.00167,0.00169,0.00172,,,,,,,0.00166,0.00167,0.00169,0.00172,,,,,,,0.00163,0.00164,0.00166,0.00169,,,,,,,0.06448,0.08085,0.10419,0.13496,,,,,,,0.05998,0.07571,0.0981,0.12722,,,,,,,0.06327,0.07939,0.10235,0.13258,,,,,,,0.0672,0.0841,0.10822,0.14015,,,,,,,0.03951,0.05235,0.07038,0.09206,,,,,,,0.04807,0.06225,0.08228,0.10724,,,,,,,0.03952,0.05246,0.07062,0.0924,,,,,,,0.04997,0.06434,0.08465,0.11018,,,,,,,0.0373,0.04979,0.0673,0.08814 +Mini car,DSL,2040,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00066,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.00031,0.00044,0.00067,,,,,,,,0.06621,0.08382,0.10898,,,,,,,,0.06133,0.07826,0.10239,,,,,,,,0.06483,0.08216,0.10693,,,,,,,,0.06914,0.08733,0.11333,,,,,,,,0.0392,0.05301,0.07245,,,,,,,,0.04849,0.06374,0.08533,,,,,,,,0.03924,0.05317,0.07274,,,,,,,,0.05051,0.06596,0.08786,,,,,,,,0.03692,0.05035,0.06922,,,,,,,,0.64078,1.17853,1.61839,,,,,,,,0.65264,1.20153,1.64973,,,,,,,,0.63509,1.17532,1.61727,,,,,,,,0.66981,1.22977,1.68644,,,,,,,,0.68914,1.2727,1.74693,,,,,,,,0.68416,1.26003,1.72871,,,,,,,,0.72874,1.33787,1.83086,,,,,,,,0.68108,1.25467,1.72147,,,,,,,,0.66147,1.21634,1.6687,,,,,,,,198.38409,199.93079,202.28129,,,,,,,,200.46747,201.94231,204.19092,,,,,,,,203.53787,205.04234,207.33654,,,,,,,,198.50706,200.06584,202.44683,,,,,,,,205.33777,206.54885,208.42194,,,,,,,,201.64715,202.96455,204.9928,,,,,,,,203.49952,204.68694,206.53052,,,,,,,,203.06478,204.39303,206.43364,,,,,,,,199.64762,200.89888,202.81036,,,,,,,,0.00062,0.00064,0.00068,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00066,0.00068,0.00071,,,,,,,,0.0006,0.00063,0.00066,,,,,,,,0.00065,0.00068,0.00071,,,,,,,,0.00063,0.00065,0.00068,,,,,,,,0.00062,0.00065,0.00068,,,,,,,,0.00064,0.00066,0.0007,,,,,,,,0.00063,0.00065,0.00069,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00762,0.00762,0.00762,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00764,0.00764,0.00764,,,,,,,,0.00765,0.00765,0.00765,,,,,,,,0.00767,0.00767,0.00767,,,,,,,,0.00768,0.00768,0.00768,,,,,,,,0.0211,0.04112,0.06004,,,,,,,,0.02105,0.041,0.05988,,,,,,,,0.02026,0.03955,0.05789,,,,,,,,0.02157,0.04202,0.06135,,,,,,,,0.02031,0.03963,0.05801,,,,,,,,0.021,0.04095,0.05988,,,,,,,,0.02119,0.04127,0.06024,,,,,,,,0.0216,0.04202,0.06126,,,,,,,,0.02108,0.04103,0.05986,,,,,,,,0.00024,0.00034,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00047,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00024,0.00033,0.00048,,,,,,,,0.00025,0.00034,0.00048,,,,,,,,0.03026,0.03099,0.03213,,,,,,,,0.03123,0.03196,0.0331,,,,,,,,0.03374,0.03447,0.0356,,,,,,,,0.02862,0.02934,0.03048,,,,,,,,0.03327,0.034,0.03514,,,,,,,,0.03071,0.03143,0.03256,,,,,,,,0.03068,0.03141,0.03255,,,,,,,,0.03201,0.03274,0.03389,,,,,,,,0.0316,0.03234,0.03349,,,,,,,,0.00549,0.00616,0.00721,,,,,,,,0.00561,0.00628,0.00733,,,,,,,,0.00593,0.0066,0.00765,,,,,,,,0.00526,0.00593,0.00697,,,,,,,,0.00587,0.00654,0.00758,,,,,,,,0.00553,0.00619,0.00724,,,,,,,,0.00554,0.00621,0.00726,,,,,,,,0.00571,0.00638,0.00744,,,,,,,,0.00567,0.00635,0.00741,,,,,,,,0.00162,0.00163,0.00165,,,,,,,,0.00164,0.00165,0.00167,,,,,,,,0.00166,0.00168,0.00169,,,,,,,,0.00162,0.00163,0.00165,,,,,,,,0.00168,0.00169,0.0017,,,,,,,,0.00165,0.00166,0.00167,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.00163,0.00164,0.00166,,,,,,,,0.06443,0.0808,0.10418,,,,,,,,0.05994,0.07567,0.09809,,,,,,,,0.06323,0.07934,0.10235,,,,,,,,0.06716,0.08405,0.10821,,,,,,,,0.03948,0.05231,0.07038,,,,,,,,0.04804,0.06221,0.08227,,,,,,,,0.03949,0.05243,0.07062,,,,,,,,0.04994,0.0643,0.08464,,,,,,,,0.03728,0.04976,0.0673 +Mini car,DSL,2045,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.00031,0.00044,,,,,,,,,0.06618,0.08382,,,,,,,,,0.0613,0.07826,,,,,,,,,0.0648,0.08216,,,,,,,,,0.06911,0.08732,,,,,,,,,0.03918,0.05301,,,,,,,,,0.04846,0.06374,,,,,,,,,0.03922,0.05316,,,,,,,,,0.05049,0.06596,,,,,,,,,0.0369,0.05035,,,,,,,,,0.64071,1.17849,,,,,,,,,0.65257,1.20148,,,,,,,,,0.63502,1.17528,,,,,,,,,0.66974,1.22972,,,,,,,,,0.68907,1.27265,,,,,,,,,0.68409,1.25999,,,,,,,,,0.72867,1.33782,,,,,,,,,0.68101,1.25463,,,,,,,,,0.66141,1.2163,,,,,,,,,198.37811,199.9306,,,,,,,,,200.46167,201.94212,,,,,,,,,203.53194,205.04223,,,,,,,,,198.50076,200.06567,,,,,,,,,205.33274,206.54864,,,,,,,,,201.64177,202.96431,,,,,,,,,203.49447,204.687,,,,,,,,,203.05936,204.39291,,,,,,,,,199.64263,200.89865,,,,,,,,,0.00062,0.00064,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00066,0.00068,,,,,,,,,0.0006,0.00063,,,,,,,,,0.00065,0.00068,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00062,0.00065,,,,,,,,,0.00064,0.00066,,,,,,,,,0.00063,0.00065,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00762,0.00762,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00764,0.00764,,,,,,,,,0.00765,0.00765,,,,,,,,,0.00767,0.00767,,,,,,,,,0.00768,0.00768,,,,,,,,,0.0211,0.04111,,,,,,,,,0.02104,0.041,,,,,,,,,0.02026,0.03955,,,,,,,,,0.02157,0.04202,,,,,,,,,0.0203,0.03963,,,,,,,,,0.02099,0.04095,,,,,,,,,0.02118,0.04126,,,,,,,,,0.0216,0.04202,,,,,,,,,0.02108,0.04103,,,,,,,,,0.00024,0.00034,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00024,0.00033,,,,,,,,,0.00025,0.00034,,,,,,,,,0.03026,0.03099,,,,,,,,,0.03123,0.03196,,,,,,,,,0.03374,0.03447,,,,,,,,,0.02862,0.02934,,,,,,,,,0.03327,0.034,,,,,,,,,0.03071,0.03143,,,,,,,,,0.03068,0.03141,,,,,,,,,0.03201,0.03274,,,,,,,,,0.0316,0.03234,,,,,,,,,0.00549,0.00616,,,,,,,,,0.00561,0.00628,,,,,,,,,0.00593,0.0066,,,,,,,,,0.00526,0.00593,,,,,,,,,0.00587,0.00654,,,,,,,,,0.00553,0.00619,,,,,,,,,0.00554,0.00621,,,,,,,,,0.00571,0.00638,,,,,,,,,0.00567,0.00635,,,,,,,,,0.00162,0.00163,,,,,,,,,0.00164,0.00165,,,,,,,,,0.00166,0.00168,,,,,,,,,0.00162,0.00163,,,,,,,,,0.00168,0.00169,,,,,,,,,0.00165,0.00166,,,,,,,,,0.00166,0.00167,,,,,,,,,0.00166,0.00167,,,,,,,,,0.00163,0.00164,,,,,,,,,0.0644,0.0808,,,,,,,,,0.05991,0.07566,,,,,,,,,0.0632,0.07934,,,,,,,,,0.06712,0.08405,,,,,,,,,0.03946,0.05231,,,,,,,,,0.04802,0.06221,,,,,,,,,0.03947,0.05242,,,,,,,,,0.04991,0.06429,,,,,,,,,0.03726,0.04976 +Mini car,DSL,2050,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.00031,,,,,,,,,,0.06618,,,,,,,,,,0.0613,,,,,,,,,,0.0648,,,,,,,,,,0.06911,,,,,,,,,,0.03918,,,,,,,,,,0.04846,,,,,,,,,,0.03922,,,,,,,,,,0.05049,,,,,,,,,,0.0369,,,,,,,,,,0.64071,,,,,,,,,,0.65257,,,,,,,,,,0.63502,,,,,,,,,,0.66975,,,,,,,,,,0.68908,,,,,,,,,,0.68409,,,,,,,,,,0.72868,,,,,,,,,,0.68102,,,,,,,,,,0.66141,,,,,,,,,,198.37808,,,,,,,,,,200.46167,,,,,,,,,,203.53191,,,,,,,,,,198.50078,,,,,,,,,,205.33273,,,,,,,,,,201.64176,,,,,,,,,,203.49449,,,,,,,,,,203.05929,,,,,,,,,,199.64275,,,,,,,,,,0.00062,,,,,,,,,,0.00063,,,,,,,,,,0.00066,,,,,,,,,,0.0006,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00062,,,,,,,,,,0.00064,,,,,,,,,,0.00063,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00767,,,,,,,,,,0.00762,,,,,,,,,,0.00767,,,,,,,,,,0.00764,,,,,,,,,,0.00765,,,,,,,,,,0.00767,,,,,,,,,,0.00768,,,,,,,,,,0.0211,,,,,,,,,,0.02104,,,,,,,,,,0.02026,,,,,,,,,,0.02157,,,,,,,,,,0.0203,,,,,,,,,,0.02099,,,,,,,,,,0.02118,,,,,,,,,,0.0216,,,,,,,,,,0.02108,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00024,,,,,,,,,,0.00025,,,,,,,,,,0.03026,,,,,,,,,,0.03123,,,,,,,,,,0.03374,,,,,,,,,,0.02862,,,,,,,,,,0.03327,,,,,,,,,,0.03071,,,,,,,,,,0.03068,,,,,,,,,,0.03201,,,,,,,,,,0.0316,,,,,,,,,,0.00549,,,,,,,,,,0.00561,,,,,,,,,,0.00593,,,,,,,,,,0.00526,,,,,,,,,,0.00587,,,,,,,,,,0.00553,,,,,,,,,,0.00554,,,,,,,,,,0.00571,,,,,,,,,,0.00567,,,,,,,,,,0.00162,,,,,,,,,,0.00164,,,,,,,,,,0.00166,,,,,,,,,,0.00162,,,,,,,,,,0.00168,,,,,,,,,,0.00165,,,,,,,,,,0.00166,,,,,,,,,,0.00166,,,,,,,,,,0.00163,,,,,,,,,,0.0644,,,,,,,,,,0.05991,,,,,,,,,,0.0632,,,,,,,,,,0.06712,,,,,,,,,,0.03946,,,,,,,,,,0.04802,,,,,,,,,,0.03947,,,,,,,,,,0.04991,,,,,,,,,,0.03726 +Mini car,E10,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07059,,,,,,,,,,0.06061,,,,,,,,,,0.07766,,,,,,,,,,0.07986,,,,,,,,,,0.06493,,,,,,,,,,0.07201,,,,,,,,,,0.06666,,,,,,,,,,0.06387,,,,,,,,,,0.05378,,,,,,,,,,41.09405,,,,,,,,,,36.68685,,,,,,,,,,46.46014,,,,,,,,,,48.20712,,,,,,,,,,38.88807,,,,,,,,,,43.51966,,,,,,,,,,40.38021,,,,,,,,,,39.0815,,,,,,,,,,31.98119,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,2.9666,,,,,,,,,,2.81631,,,,,,,,,,3.10536,,,,,,,,,,3.2754,,,,,,,,,,3.04738,,,,,,,,,,3.19266,,,,,,,,,,3.04408,,,,,,,,,,3.21553,,,,,,,,,,2.67871,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.02114,,,,,,,,,,0.02411,,,,,,,,,,0.03431,,,,,,,,,,0.03133,,,,,,,,,,0.02788,,,,,,,,,,0.03072,,,,,,,,,,0.02781,,,,,,,,,,0.02753,,,,,,,,,,0.01276,,,,,,,,,,4.6564,,,,,,,,,,4.21937,,,,,,,,,,5.04455,,,,,,,,,,5.24797,,,,,,,,,,4.75701,,,,,,,,,,5.03074,,,,,,,,,,4.88323,,,,,,,,,,4.78463,,,,,,,,,,4.06399,,,,,,,,, +Mini car,E10,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.039,0.04546,,,,,,,,,0.03637,0.04065,,,,,,,,,0.04465,0.04989,,,,,,,,,0.04618,0.05361,,,,,,,,,0.03755,0.04304,,,,,,,,,0.04081,0.04726,,,,,,,,,0.03731,0.04266,,,,,,,,,0.03778,0.04314,,,,,,,,,0.02981,0.03292,,,,,,,,,15.07931,20.70615,,,,,,,,,14.44862,19.03873,,,,,,,,,17.83287,23.08281,,,,,,,,,18.82322,25.0077,,,,,,,,,15.19572,19.99361,,,,,,,,,16.64983,21.95229,,,,,,,,,15.55074,20.47747,,,,,,,,,15.43813,20.95542,,,,,,,,,11.86242,16.20717,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.23009,2.70688,,,,,,,,,2.16857,2.56214,,,,,,,,,2.38025,2.79543,,,,,,,,,2.48674,3.02468,,,,,,,,,2.31919,2.81805,,,,,,,,,2.43147,2.94491,,,,,,,,,2.33171,2.81285,,,,,,,,,2.47634,2.97953,,,,,,,,,2.06662,2.45342,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.0173,0.00877,,,,,,,,,0.01983,0.0089,,,,,,,,,0.02825,0.00924,,,,,,,,,0.02572,0.01543,,,,,,,,,0.02324,0.00909,,,,,,,,,0.02549,0.00902,,,,,,,,,0.02323,0.01229,,,,,,,,,0.02279,0.01403,,,,,,,,,0.01057,0.00506,,,,,,,,,2.00449,2.87682,,,,,,,,,1.95383,2.74589,,,,,,,,,2.26736,3.14145,,,,,,,,,2.36184,3.33126,,,,,,,,,2.15514,3.14869,,,,,,,,,2.2233,3.24476,,,,,,,,,2.15249,3.13118,,,,,,,,,2.21425,3.18559,,,,,,,,,1.79138,2.59347,,,,,,,, +Mini car,E10,2000,0.00446,0.00727,0.02121,,,,,,,,0.00385,0.00626,0.01818,,,,,,,,0.00432,0.00704,0.02055,,,,,,,,0.00488,0.00799,0.02359,,,,,,,,0.00215,0.00348,0.00996,,,,,,,,0.00258,0.00418,0.01212,,,,,,,,0.00206,0.00333,0.00949,,,,,,,,0.00297,0.00482,0.01394,,,,,,,,0.00204,0.00329,0.00926,,,,,,,,0.0178,0.01911,0.03078,,,,,,,,0.01674,0.01836,0.02775,,,,,,,,0.02112,0.02216,0.035,,,,,,,,0.02212,0.02368,0.03628,,,,,,,,0.01592,0.01849,0.02936,,,,,,,,0.01769,0.02001,0.03162,,,,,,,,0.01576,0.01826,0.02785,,,,,,,,0.01692,0.01896,0.02866,,,,,,,,0.01299,0.01512,0.02191,,,,,,,,7.18027,9.66695,14.76938,,,,,,,,6.9088,9.38321,13.8175,,,,,,,,8.61347,11.31945,16.99401,,,,,,,,9.21465,12.27159,17.97838,,,,,,,,6.39637,9.25206,14.12063,,,,,,,,7.18604,10.12088,15.28854,,,,,,,,6.4861,9.44421,13.93659,,,,,,,,6.94757,9.94053,14.61426,,,,,,,,5.20972,7.86305,11.35169,,,,,,,,376.89916,380.04698,390.21548,,,,,,,,380.22649,383.1569,392.65296,,,,,,,,386.71942,389.79323,399.70862,,,,,,,,377.04161,380.20786,390.42822,,,,,,,,387.04471,389.14643,396.12873,,,,,,,,380.64318,383.06092,390.92793,,,,,,,,383.03518,385.04841,391.71743,,,,,,,,383.69574,386.15466,394.21333,,,,,,,,376.31992,378.50164,385.74944,,,,,,,,0.02444,0.02719,0.04141,,,,,,,,0.02454,0.02728,0.04157,,,,,,,,0.02472,0.02744,0.04186,,,,,,,,0.02468,0.02748,0.0418,,,,,,,,0.02474,0.02748,0.04191,,,,,,,,0.02483,0.02762,0.04206,,,,,,,,0.02458,0.02734,0.04164,,,,,,,,0.02471,0.02746,0.04186,,,,,,,,0.02432,0.02703,0.0412,,,,,,,,0.05942,0.07773,0.0825,,,,,,,,0.05955,0.07791,0.08268,,,,,,,,0.05972,0.07812,0.08287,,,,,,,,0.05901,0.07719,0.08197,,,,,,,,0.05963,0.078,0.08275,,,,,,,,0.05921,0.07746,0.08223,,,,,,,,0.0594,0.07771,0.08247,,,,,,,,0.05963,0.07801,0.08277,,,,,,,,0.05976,0.07818,0.08294,,,,,,,,1.07385,1.45021,2.16624,,,,,,,,1.05342,1.44095,2.1148,,,,,,,,1.23284,1.60085,2.35507,,,,,,,,1.2796,1.70705,2.4498,,,,,,,,1.17365,1.5795,2.34518,,,,,,,,1.22983,1.63247,2.41065,,,,,,,,1.19206,1.606,2.27243,,,,,,,,1.24723,1.67166,2.39624,,,,,,,,1.03643,1.41412,1.98543,,,,,,,,0.00947,0.01481,0.03898,,,,,,,,0.00834,0.01302,0.03415,,,,,,,,0.00914,0.01429,0.03766,,,,,,,,0.00995,0.0156,0.04186,,,,,,,,0.00505,0.00783,0.0203,,,,,,,,0.00581,0.00904,0.0238,,,,,,,,0.00491,0.00762,0.01968,,,,,,,,0.00662,0.01032,0.02697,,,,,,,,0.00497,0.00771,0.01958,,,,,,,,0.0488,0.06032,0.11423,,,,,,,,0.04731,0.05732,0.10422,,,,,,,,0.05174,0.06271,0.11486,,,,,,,,0.04852,0.06083,0.11967,,,,,,,,0.04215,0.04798,0.07515,,,,,,,,0.04133,0.04812,0.08054,,,,,,,,0.03924,0.04494,0.07108,,,,,,,,0.04436,0.05226,0.08886,,,,,,,,0.04011,0.04585,0.07146,,,,,,,,0.02183,0.03202,0.07971,,,,,,,,0.01976,0.02863,0.07011,,,,,,,,0.02179,0.03149,0.07762,,,,,,,,0.0228,0.0337,0.08574,,,,,,,,0.01365,0.0188,0.04284,,,,,,,,0.01486,0.02087,0.04955,,,,,,,,0.01304,0.01808,0.04121,,,,,,,,0.01657,0.02355,0.05593,,,,,,,,0.01313,0.01821,0.04086,,,,,,,,0.01722,0.00841,0.00778,,,,,,,,0.01977,0.00856,0.00783,,,,,,,,0.02818,0.00888,0.00797,,,,,,,,0.02563,0.01484,0.00778,,,,,,,,0.02327,0.00882,0.00789,,,,,,,,0.0255,0.00872,0.00779,,,,,,,,0.02328,0.01193,0.00781,,,,,,,,0.02277,0.01356,0.00703,,,,,,,,0.01055,0.00488,0.0036,,,,,,,,0.79032,1.15496,2.22547,,,,,,,,0.75408,1.12158,2.11328,,,,,,,,0.90036,1.30278,2.46505,,,,,,,,0.96742,1.40112,2.58058,,,,,,,,0.70707,1.13681,2.34471,,,,,,,,0.76964,1.20933,2.42041,,,,,,,,0.7033,1.12189,2.2796,,,,,,,,0.79479,1.2148,2.38578,,,,,,,,0.59128,0.95412,1.92441,,,,,,, +Mini car,E10,2005,0.00162,0.00237,0.00385,0.01246,,,,,,,0.00146,0.00206,0.00333,0.01075,,,,,,,0.0018,0.00183,0.00294,0.01199,,,,,,,0.00192,0.00252,0.00411,0.01378,,,,,,,0.00094,0.00134,0.00216,0.00612,,,,,,,0.00113,0.00139,0.00224,0.00729,,,,,,,0.00089,0.00121,0.00195,0.0057,,,,,,,0.00122,0.00154,0.00248,0.00828,,,,,,,0.00076,0.00102,0.00162,0.00547,,,,,,,0.01749,0.01283,0.01269,0.01937,,,,,,,0.01586,0.01144,0.0118,0.01772,,,,,,,0.0181,0.01257,0.01294,0.0213,,,,,,,0.0193,0.01576,0.01482,0.02314,,,,,,,0.01054,0.00885,0.00992,0.01646,,,,,,,0.01251,0.00998,0.01089,0.0182,,,,,,,0.0102,0.0094,0.0098,0.01582,,,,,,,0.01342,0.01103,0.01065,0.01749,,,,,,,0.0081,0.0068,0.00743,0.01361,,,,,,,3.26887,4.3796,5.58768,9.3007,,,,,,,3.13261,4.25362,5.61227,8.96163,,,,,,,3.58479,5.15297,6.8677,10.81248,,,,,,,3.82532,5.8085,6.9469,11.62735,,,,,,,2.92286,4.3463,5.97297,9.23613,,,,,,,3.14325,4.68616,6.38162,9.91195,,,,,,,2.99075,4.78293,6.01972,9.26204,,,,,,,3.21055,5.15141,6.14005,9.69485,,,,,,,2.28533,4.00405,5.30012,8.02987,,,,,,,383.61442,385.38819,389.77412,396.47833,,,,,,,387.18708,388.82902,392.91571,398.96561,,,,,,,393.48041,395.21334,399.46747,405.9233,,,,,,,383.88261,385.64187,390.09117,396.91151,,,,,,,394.88049,396.01522,398.98771,402.60517,,,,,,,388.20643,389.53503,392.91936,397.42511,,,,,,,391.1224,392.19344,395.0643,398.40755,,,,,,,391.19,392.54205,395.99785,400.65679,,,,,,,383.91967,385.1314,388.19316,391.9956,,,,,,,0.00715,0.00771,0.00905,0.02207,,,,,,,0.00716,0.00772,0.00907,0.02212,,,,,,,0.00717,0.00773,0.00907,0.02218,,,,,,,0.00725,0.00782,0.0092,0.02237,,,,,,,0.00719,0.00775,0.00909,0.02222,,,,,,,0.00726,0.00783,0.0092,0.02243,,,,,,,0.00718,0.00774,0.0091,0.02218,,,,,,,0.0072,0.00776,0.00911,0.02225,,,,,,,0.00708,0.00763,0.00896,0.02189,,,,,,,0.02404,0.02736,0.03368,0.04793,,,,,,,0.02409,0.02742,0.03376,0.04803,,,,,,,0.02416,0.0275,0.03385,0.04815,,,,,,,0.02387,0.02717,0.03345,0.0476,,,,,,,0.02412,0.02746,0.0338,0.04808,,,,,,,0.02395,0.02727,0.03356,0.04777,,,,,,,0.02403,0.02735,0.03367,0.04791,,,,,,,0.02412,0.02746,0.0338,0.04809,,,,,,,0.02418,0.02752,0.03387,0.04819,,,,,,,0.2815,0.41372,0.54552,1.02948,,,,,,,0.27759,0.40358,0.54845,1.01505,,,,,,,0.31754,0.45366,0.60457,1.14976,,,,,,,0.31627,0.52847,0.63849,1.22238,,,,,,,0.28312,0.43349,0.58636,1.1354,,,,,,,0.30131,0.453,0.60671,1.17372,,,,,,,0.28577,0.46498,0.58114,1.1075,,,,,,,0.30956,0.49763,0.59853,1.1702,,,,,,,0.22359,0.33009,0.44123,0.99446,,,,,,,0.00357,0.00513,0.00768,0.02205,,,,,,,0.00331,0.0046,0.00689,0.01953,,,,,,,0.00388,0.00432,0.00641,0.0213,,,,,,,0.004,0.00529,0.00795,0.02351,,,,,,,0.00232,0.00326,0.00493,0.01227,,,,,,,0.00264,0.00337,0.00507,0.01401,,,,,,,0.00223,0.00304,0.00458,0.01167,,,,,,,0.00284,0.00366,0.00548,0.01563,,,,,,,0.00201,0.0027,0.00403,0.01144,,,,,,,0.03603,0.03931,0.045,0.07718,,,,,,,0.03642,0.03911,0.04416,0.07231,,,,,,,0.04025,0.04095,0.04555,0.07896,,,,,,,0.03547,0.03818,0.0441,0.07925,,,,,,,0.03629,0.03821,0.04179,0.05782,,,,,,,0.03446,0.0359,0.03956,0.05929,,,,,,,0.03348,0.03514,0.03841,0.05383,,,,,,,0.03618,0.03785,0.04177,0.06423,,,,,,,0.03386,0.03525,0.03807,0.05414,,,,,,,0.01053,0.01343,0.01846,0.04693,,,,,,,0.01013,0.01251,0.01698,0.04189,,,,,,,0.01162,0.01225,0.01631,0.04587,,,,,,,0.01126,0.01365,0.01889,0.04999,,,,,,,0.00847,0.01016,0.01333,0.02752,,,,,,,0.00879,0.01005,0.0133,0.03075,,,,,,,0.00795,0.00941,0.01231,0.02595,,,,,,,0.00933,0.01081,0.01427,0.03414,,,,,,,0.0076,0.00883,0.01132,0.02555,,,,,,,0.01752,0.00853,0.00777,0.00263,,,,,,,0.02013,0.00869,0.00783,0.00265,,,,,,,0.02868,0.00901,0.00796,0.0027,,,,,,,0.0261,0.01506,0.00777,0.00264,,,,,,,0.02374,0.00898,0.00795,0.00267,,,,,,,0.02601,0.00887,0.00783,0.00264,,,,,,,0.02377,0.01215,0.00787,0.00265,,,,,,,0.0232,0.01379,0.00706,0.00262,,,,,,,0.01076,0.00497,0.00362,0.00241,,,,,,,0.37985,0.41663,0.57941,1.38514,,,,,,,0.3454,0.37843,0.53987,1.31803,,,,,,,0.39284,0.40932,0.58562,1.50045,,,,,,,0.42144,0.50338,0.66487,1.61045,,,,,,,0.23395,0.29741,0.46553,1.35092,,,,,,,0.27374,0.32913,0.50295,1.41737,,,,,,,0.22478,0.30705,0.45448,1.31612,,,,,,,0.31522,0.38861,0.53941,1.44546,,,,,,,0.19002,0.25643,0.39842,1.18182,,,,,, +Mini car,E10,2010,,0.00116,0.00189,0.0031,0.00797,,,,,,,0.00102,0.00165,0.00275,0.00696,,,,,,,0.00089,0.00143,0.00295,0.00759,,,,,,,0.00124,0.00202,0.00339,0.00877,,,,,,,0.00074,0.00117,0.00183,0.00427,,,,,,,0.00075,0.00119,0.00205,0.00493,,,,,,,0.00067,0.00107,0.00166,0.00387,,,,,,,0.00079,0.00127,0.00221,0.00544,,,,,,,0.00056,0.00088,0.00154,0.00363,,,,,,,0.01447,0.01215,0.0104,0.01403,,,,,,,0.01256,0.01108,0.00955,0.01295,,,,,,,0.01335,0.01238,0.01077,0.01496,,,,,,,0.01716,0.01452,0.01243,0.01691,,,,,,,0.00887,0.00965,0.00843,0.01156,,,,,,,0.00971,0.01036,0.0091,0.01267,,,,,,,0.00926,0.00954,0.00833,0.01131,,,,,,,0.01139,0.01018,0.00921,0.01258,,,,,,,0.00725,0.0073,0.00781,0.01028,,,,,,,2.48341,3.81182,5.09585,7.07901,,,,,,,2.34814,3.77798,5.02469,6.93758,,,,,,,2.78107,4.54085,5.76238,8.17696,,,,,,,3.07668,4.58732,6.30228,8.88624,,,,,,,2.06758,3.80096,5.24678,7.22417,,,,,,,2.27568,4.08347,5.50331,7.67962,,,,,,,2.2653,3.84868,5.35225,7.33121,,,,,,,2.61412,4.01182,5.47259,7.56878,,,,,,,1.98774,3.45469,4.7501,6.44189,,,,,,,378.34318,381.0668,385.69408,394.85501,,,,,,,381.92659,384.43966,388.73293,397.32087,,,,,,,388.14052,390.76153,395.23755,404.18724,,,,,,,378.57539,381.32694,386.03125,395.35071,,,,,,,389.70767,391.44169,394.49287,400.93104,,,,,,,383.05742,385.07754,388.59252,395.82336,,,,,,,385.99822,387.65935,390.60209,396.83497,,,,,,,385.98142,388.05307,391.64271,399.01043,,,,,,,378.86597,380.6927,383.84057,390.36286,,,,,,,0.00688,0.00779,0.0093,0.01424,,,,,,,0.00689,0.0078,0.00932,0.01426,,,,,,,0.00691,0.00781,0.00931,0.01424,,,,,,,0.00697,0.0079,0.00945,0.01448,,,,,,,0.00692,0.00783,0.00934,0.01429,,,,,,,0.00699,0.00791,0.00946,0.01448,,,,,,,0.00691,0.00783,0.00935,0.01431,,,,,,,0.00693,0.00784,0.00936,0.01433,,,,,,,0.00682,0.00771,0.00921,0.01409,,,,,,,0.01689,0.01977,0.02529,0.03064,,,,,,,0.01693,0.01982,0.02535,0.0307,,,,,,,0.01698,0.01987,0.02542,0.03079,,,,,,,0.01678,0.01964,0.02511,0.03042,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01684,0.01971,0.0252,0.03053,,,,,,,0.01689,0.01977,0.02528,0.03062,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01699,0.01989,0.02543,0.03081,,,,,,,0.11365,0.18688,0.19795,0.45071,,,,,,,0.10842,0.18623,0.19575,0.44713,,,,,,,0.11319,0.20453,0.21161,0.50538,,,,,,,0.13095,0.21903,0.22831,0.54491,,,,,,,0.1018,0.19275,0.19798,0.48954,,,,,,,0.10773,0.20231,0.20843,0.5107,,,,,,,0.10985,0.19239,0.19874,0.48248,,,,,,,0.12283,0.20102,0.21646,0.51283,,,,,,,0.08256,0.14586,0.19175,0.44209,,,,,,,0.00208,0.00323,0.00504,0.01277,,,,,,,0.00195,0.00301,0.00472,0.0116,,,,,,,0.00178,0.00274,0.0049,0.01236,,,,,,,0.00214,0.00333,0.00529,0.01356,,,,,,,0.00172,0.00261,0.00388,0.00832,,,,,,,0.00168,0.00255,0.00404,0.00905,,,,,,,0.00162,0.00245,0.00363,0.00778,,,,,,,0.0017,0.0026,0.00419,0.00972,,,,,,,0.00143,0.00215,0.00346,0.00747,,,,,,,0.03298,0.0356,0.03976,0.05733,,,,,,,0.03362,0.036,0.03988,0.05539,,,,,,,0.03573,0.03785,0.04287,0.05977,,,,,,,0.03156,0.03428,0.03884,0.05778,,,,,,,0.03501,0.03692,0.03966,0.04942,,,,,,,0.03241,0.0343,0.03759,0.04872,,,,,,,0.0322,0.03396,0.03649,0.04556,,,,,,,0.03379,0.03574,0.03926,0.0516,,,,,,,0.03266,0.03418,0.037,0.04573,,,,,,,0.00783,0.01015,0.01383,0.02937,,,,,,,0.00766,0.00976,0.0132,0.02692,,,,,,,0.00762,0.0095,0.01394,0.02889,,,,,,,0.0078,0.0102,0.01424,0.03099,,,,,,,0.00734,0.00902,0.01145,0.02008,,,,,,,0.00696,0.00864,0.01155,0.0214,,,,,,,0.00682,0.00837,0.01061,0.01864,,,,,,,0.00722,0.00894,0.01206,0.02298,,,,,,,0.00654,0.00789,0.01038,0.01811,,,,,,,0.00837,0.00759,0.00256,0.00262,,,,,,,0.00853,0.00766,0.00258,0.00264,,,,,,,0.00885,0.00779,0.00263,0.00269,,,,,,,0.01479,0.0076,0.00256,0.00263,,,,,,,0.00883,0.0078,0.00262,0.00266,,,,,,,0.00872,0.00767,0.00258,0.00263,,,,,,,0.01196,0.00773,0.00259,0.00264,,,,,,,0.01356,0.00691,0.00256,0.00261,,,,,,,0.00488,0.00355,0.00236,0.0024,,,,,,,0.18098,0.25247,0.37083,0.8927,,,,,,,0.16025,0.23056,0.34556,0.85354,,,,,,,0.17144,0.25452,0.38245,0.94682,,,,,,,0.21414,0.29699,0.43445,1.03021,,,,,,,0.12265,0.20457,0.32885,0.85584,,,,,,,0.13123,0.2161,0.34393,0.89186,,,,,,,0.12541,0.20048,0.32273,0.83646,,,,,,,0.15757,0.23211,0.36726,0.92325,,,,,,,0.11055,0.17693,0.30936,0.78655,,,,, +Mini car,E10,2015,,,0.00096,0.0015,0.00256,0.00538,,,,,,,0.00087,0.00137,0.00234,0.00483,,,,,,,0.00076,0.00144,0.00246,0.00513,,,,,,,0.001,0.0016,0.00275,0.00582,,,,,,,0.00068,0.00102,0.0017,0.0033,,,,,,,0.00068,0.0011,0.00186,0.00368,,,,,,,0.00062,0.00093,0.00155,0.00299,,,,,,,0.0007,0.00116,0.00195,0.00392,,,,,,,0.00052,0.00087,0.00145,0.00278,,,,,,,0.01117,0.00844,0.00855,0.01056,,,,,,,0.01026,0.00785,0.0081,0.00995,,,,,,,0.01046,0.00874,0.00906,0.01124,,,,,,,0.01198,0.0099,0.01022,0.01269,,,,,,,0.00792,0.00704,0.00778,0.00944,,,,,,,0.00845,0.00758,0.00829,0.01014,,,,,,,0.0079,0.00697,0.00775,0.00937,,,,,,,0.00873,0.00765,0.00816,0.00999,,,,,,,0.00639,0.00663,0.00723,0.00866,,,,,,,1.84521,3.27085,4.44326,5.63916,,,,,,,1.83028,3.26131,4.47109,5.63973,,,,,,,2.05065,3.64192,5.11485,6.51889,,,,,,,2.05861,3.9482,5.55835,7.06961,,,,,,,1.70532,3.47292,4.95619,6.1746,,,,,,,1.81676,3.59,5.13403,6.44868,,,,,,,1.7484,3.55912,5.06815,6.31376,,,,,,,1.84788,3.59034,5.02826,6.31762,,,,,,,1.63266,3.21732,4.46806,5.5653,,,,,,,338.57847,341.09603,343.67549,354.78827,,,,,,,341.7079,344.00277,346.28136,356.96524,,,,,,,347.29401,349.69827,352.11188,363.1334,,,,,,,338.82115,341.3785,344.02646,355.26598,,,,,,,348.39569,349.87174,351.05478,360.07829,,,,,,,342.56263,344.34647,345.95334,355.55556,,,,,,,345.07041,346.47751,347.58297,356.41349,,,,,,,345.18202,347.01345,348.6733,358.41328,,,,,,,338.71426,340.28094,341.58215,350.58905,,,,,,,0.00442,0.00499,0.00575,0.00808,,,,,,,0.00445,0.00501,0.00577,0.0081,,,,,,,0.00449,0.00505,0.00581,0.00812,,,,,,,0.00445,0.00503,0.0058,0.00819,,,,,,,0.00449,0.00506,0.00581,0.00814,,,,,,,0.00449,0.00506,0.00584,0.00821,,,,,,,0.00445,0.00501,0.00578,0.00812,,,,,,,0.00448,0.00505,0.00581,0.00815,,,,,,,0.00441,0.00497,0.00572,0.00801,,,,,,,0.01689,0.01958,0.02529,0.02574,,,,,,,0.01693,0.01962,0.02535,0.0258,,,,,,,0.01698,0.01968,0.02542,0.02587,,,,,,,0.01678,0.01944,0.02511,0.02556,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01684,0.01951,0.0252,0.02565,,,,,,,0.01689,0.01957,0.02528,0.02573,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01699,0.01969,0.02543,0.02589,,,,,,,0.08822,0.11553,0.1702,0.2441,,,,,,,0.08727,0.11347,0.16786,0.24136,,,,,,,0.08786,0.12294,0.18091,0.26458,,,,,,,0.09291,0.13305,0.19586,0.28721,,,,,,,0.07778,0.1116,0.16753,0.24829,,,,,,,0.08284,0.11864,0.17726,0.262,,,,,,,0.07917,0.11207,0.16856,0.24831,,,,,,,0.08569,0.1242,0.18438,0.26916,,,,,,,0.06323,0.10911,0.16275,0.23593,,,,,,,0.00186,0.00279,0.00452,0.00864,,,,,,,0.00178,0.00269,0.00432,0.00812,,,,,,,0.00163,0.00275,0.00443,0.00841,,,,,,,0.00189,0.00288,0.00468,0.00903,,,,,,,0.00164,0.00237,0.00375,0.00663,,,,,,,0.00159,0.00242,0.00386,0.00695,,,,,,,0.00155,0.00224,0.00353,0.00621,,,,,,,0.00159,0.00247,0.00394,0.00718,,,,,,,0.00137,0.00214,0.00337,0.00591,,,,,,,0.03243,0.03449,0.0384,0.04795,,,,,,,0.03318,0.03517,0.03883,0.04754,,,,,,,0.03534,0.03784,0.04164,0.05083,,,,,,,0.0309,0.03311,0.03721,0.04741,,,,,,,0.03481,0.03635,0.03932,0.04567,,,,,,,0.03218,0.03398,0.0371,0.04401,,,,,,,0.03202,0.03346,0.03623,0.04208,,,,,,,0.03349,0.03538,0.0386,0.04591,,,,,,,0.03251,0.03413,0.03676,0.0423,,,,,,,0.00734,0.00917,0.01262,0.02108,,,,,,,0.00727,0.00903,0.01227,0.01997,,,,,,,0.00728,0.00949,0.01285,0.02098,,,,,,,0.00721,0.00917,0.0128,0.02182,,,,,,,0.00716,0.00852,0.01115,0.01677,,,,,,,0.00677,0.00835,0.01112,0.01723,,,,,,,0.00666,0.00793,0.01038,0.01556,,,,,,,0.00695,0.00862,0.01148,0.01794,,,,,,,0.00641,0.00785,0.01017,0.01507,,,,,,,0.00675,0.00227,0.00228,0.00236,,,,,,,0.00681,0.00229,0.0023,0.00237,,,,,,,0.00692,0.00232,0.00234,0.00241,,,,,,,0.00675,0.00227,0.00229,0.00236,,,,,,,0.00694,0.00232,0.00233,0.00239,,,,,,,0.00683,0.00229,0.0023,0.00236,,,,,,,0.00688,0.0023,0.00231,0.00237,,,,,,,0.00615,0.00227,0.00228,0.00235,,,,,,,0.00316,0.00209,0.0021,0.00215,,,,,,,0.13491,0.19169,0.31026,0.60939,,,,,,,0.12547,0.18062,0.29783,0.59149,,,,,,,0.13,0.19722,0.32609,0.64085,,,,,,,0.1474,0.22136,0.36153,0.69391,,,,,,,0.10555,0.17274,0.30547,0.61445,,,,,,,0.11038,0.18026,0.31545,0.62979,,,,,,,0.10534,0.17059,0.30145,0.60398,,,,,,,0.12204,0.19364,0.33031,0.65195,,,,,,,0.09553,0.16351,0.28839,0.58089,,,, +Mini car,E10,2020,,,,0.00083,0.00125,0.00192,0.00384,,,,,,,0.00076,0.00115,0.00176,0.00348,,,,,,,0.0008,0.00121,0.00184,0.00367,,,,,,,0.00088,0.00134,0.00205,0.00413,,,,,,,0.00058,0.00086,0.00129,0.00246,,,,,,,0.00063,0.00093,0.00141,0.00272,,,,,,,0.00054,0.00079,0.00118,0.00223,,,,,,,0.00065,0.00097,0.00147,0.00287,,,,,,,0.0005,0.00074,0.0011,0.00207,,,,,,,0.00839,0.00687,0.0064,0.00782,,,,,,,0.00753,0.0063,0.00595,0.00729,,,,,,,0.00791,0.00702,0.00665,0.00827,,,,,,,0.00905,0.00801,0.00756,0.00938,,,,,,,0.00524,0.00528,0.00529,0.00665,,,,,,,0.00583,0.00579,0.00573,0.00722,,,,,,,0.00516,0.00522,0.00524,0.00659,,,,,,,0.00639,0.00592,0.00574,0.00716,,,,,,,0.00515,0.00493,0.00487,0.00605,,,,,,,1.50957,2.23696,2.78755,3.69885,,,,,,,1.46807,2.20153,2.75941,3.6651,,,,,,,1.55379,2.45976,3.14908,4.25243,,,,,,,1.69786,2.69056,3.46083,4.64806,,,,,,,1.34445,2.2537,2.91441,3.92529,,,,,,,1.40929,2.35515,3.05701,4.1371,,,,,,,1.38749,2.31445,2.99057,4.02543,,,,,,,1.48071,2.37339,3.02562,4.06322,,,,,,,1.30738,2.09496,2.6454,3.53495,,,,,,,271.96867,273.86852,275.68648,290.82129,,,,,,,274.31603,276.03072,277.5877,292.40308,,,,,,,278.85543,280.6576,282.324,297.52236,,,,,,,272.22635,274.16033,276.03818,291.29223,,,,,,,279.09756,280.1349,280.74701,294.2357,,,,,,,274.66253,275.95649,276.93841,290.83456,,,,,,,276.41031,277.39344,277.94311,291.2138,,,,,,,276.77516,278.10662,279.13032,293.18636,,,,,,,271.38059,272.49515,273.21747,286.5266,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06275,0.09664,0.12938,0.17234,,,,,,,0.06114,0.09451,0.12691,0.16929,,,,,,,0.06183,0.10193,0.13608,0.18411,,,,,,,0.06638,0.11092,0.14819,0.2011,,,,,,,0.05194,0.09054,0.12274,0.16787,,,,,,,0.05643,0.09722,0.13136,0.17929,,,,,,,0.05298,0.09133,0.1241,0.16889,,,,,,,0.06121,0.1022,0.13744,0.18568,,,,,,,0.05387,0.08912,0.12031,0.16153,,,,,,,0.00163,0.00235,0.0034,0.0062,,,,,,,0.00158,0.00227,0.00326,0.00588,,,,,,,0.00161,0.00231,0.00334,0.00606,,,,,,,0.00167,0.00242,0.00351,0.00646,,,,,,,0.00142,0.00201,0.00284,0.00495,,,,,,,0.00144,0.00205,0.00292,0.00515,,,,,,,0.00134,0.0019,0.00268,0.00464,,,,,,,0.00146,0.00209,0.00298,0.00528,,,,,,,0.00129,0.00181,0.00256,0.00442,,,,,,,0.0319,0.03352,0.03591,0.04242,,,,,,,0.03273,0.03425,0.03649,0.04252,,,,,,,0.03532,0.03689,0.03921,0.0455,,,,,,,0.0304,0.03209,0.03459,0.04149,,,,,,,0.03434,0.0356,0.0374,0.04205,,,,,,,0.03187,0.03319,0.03509,0.04007,,,,,,,0.03158,0.03275,0.03443,0.03872,,,,,,,0.03321,0.03457,0.03653,0.04171,,,,,,,0.03235,0.03347,0.03506,0.03911,,,,,,,0.00688,0.0083,0.01042,0.01618,,,,,,,0.00687,0.00822,0.0102,0.01553,,,,,,,0.00726,0.00865,0.01071,0.01627,,,,,,,0.00678,0.00827,0.01048,0.01658,,,,,,,0.00674,0.00786,0.00945,0.01356,,,,,,,0.00649,0.00766,0.00934,0.01375,,,,,,,0.00627,0.00731,0.00879,0.01259,,,,,,,0.00671,0.00791,0.00964,0.01423,,,,,,,0.00627,0.00726,0.00866,0.01225,,,,,,,0.00181,0.00182,0.00183,0.00193,,,,,,,0.00182,0.00183,0.00184,0.00194,,,,,,,0.00185,0.00186,0.00188,0.00198,,,,,,,0.00181,0.00182,0.00183,0.00194,,,,,,,0.00185,0.00186,0.00187,0.00195,,,,,,,0.00182,0.00183,0.00184,0.00193,,,,,,,0.00184,0.00184,0.00185,0.00193,,,,,,,0.00181,0.00182,0.00183,0.00192,,,,,,,0.00167,0.00167,0.00168,0.00176,,,,,,,0.11385,0.15527,0.23291,0.47649,,,,,,,0.10455,0.14355,0.21904,0.45978,,,,,,,0.11026,0.15851,0.24245,0.50008,,,,,,,0.12432,0.1791,0.27058,0.53963,,,,,,,0.08326,0.1294,0.2126,0.473,,,,,,,0.08906,0.13763,0.22291,0.48616,,,,,,,0.08222,0.12606,0.20653,0.46113,,,,,,,0.10059,0.14965,0.23626,0.50349,,,,,,,0.0798,0.1214,0.19895,0.44666,,, +Mini car,E10,2025,,,,,0.00054,0.0008,0.00124,0.00256,,,,,,,0.0005,0.00073,0.00114,0.00232,,,,,,,0.00052,0.00077,0.00119,0.00245,,,,,,,0.00057,0.00085,0.00133,0.00274,,,,,,,0.00038,0.00055,0.00083,0.00165,,,,,,,0.00041,0.0006,0.00091,0.00183,,,,,,,0.00035,0.0005,0.00076,0.0015,,,,,,,0.00042,0.00062,0.00095,0.00192,,,,,,,0.00033,0.00047,0.00071,0.0014,,,,,,,0.0071,0.0054,0.00486,0.00596,,,,,,,0.00621,0.00481,0.00439,0.00542,,,,,,,0.00662,0.00536,0.0049,0.00614,,,,,,,0.0077,0.00621,0.00565,0.00705,,,,,,,0.00383,0.00353,0.00345,0.00445,,,,,,,0.00444,0.004,0.00385,0.00496,,,,,,,0.00372,0.00345,0.0034,0.00438,,,,,,,0.00501,0.00423,0.00398,0.00505,,,,,,,0.00371,0.00327,0.00317,0.00403,,,,,,,1.1285,1.61852,2.03503,2.67453,,,,,,,1.07088,1.56149,1.97838,2.60527,,,,,,,1.14227,1.74727,2.25674,3.01416,,,,,,,1.26434,1.93432,2.50599,3.32612,,,,,,,0.90333,1.49966,1.97387,2.64234,,,,,,,0.96878,1.59367,2.10019,2.82059,,,,,,,0.93269,1.54262,2.02871,2.71458,,,,,,,1.03817,1.62904,2.10469,2.80558,,,,,,,0.88425,1.40034,1.79759,2.39435,,,,,,,219.79055,221.42766,223.33293,236.96005,,,,,,,221.55546,223.03798,224.7172,238.04539,,,,,,,225.26595,226.82303,228.60383,242.28136,,,,,,,220.05063,221.7187,223.68094,237.42605,,,,,,,224.95387,225.86908,226.72345,238.81764,,,,,,,221.56775,222.69787,223.8734,236.35339,,,,,,,222.76989,223.6395,224.43786,236.33729,,,,,,,223.28135,224.44311,225.65654,238.27886,,,,,,,218.76119,219.73734,220.67422,232.60211,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04803,0.06983,0.09285,0.12606,,,,,,,0.0462,0.06754,0.09015,0.12275,,,,,,,0.04666,0.0721,0.0958,0.1325,,,,,,,0.0506,0.07914,0.1052,0.14565,,,,,,,0.03696,0.06108,0.08291,0.11658,,,,,,,0.04117,0.06691,0.0903,0.12637,,,,,,,0.03786,0.06195,0.08423,0.11769,,,,,,,0.04482,0.07073,0.09492,0.13151,,,,,,,0.03856,0.06075,0.08206,0.1132,,,,,,,0.00106,0.0015,0.00221,0.00416,,,,,,,0.00103,0.00145,0.00212,0.00395,,,,,,,0.00105,0.00148,0.00217,0.00406,,,,,,,0.00109,0.00154,0.00228,0.00431,,,,,,,0.00092,0.00128,0.00185,0.00334,,,,,,,0.00094,0.00131,0.0019,0.00347,,,,,,,0.00087,0.00121,0.00174,0.00313,,,,,,,0.00095,0.00133,0.00194,0.00356,,,,,,,0.00084,0.00116,0.00167,0.00299,,,,,,,0.03067,0.03166,0.03327,0.03777,,,,,,,0.03155,0.03248,0.03399,0.03818,,,,,,,0.03412,0.03507,0.03664,0.041,,,,,,,0.02913,0.03016,0.03184,0.03658,,,,,,,0.03332,0.03409,0.03531,0.03858,,,,,,,0.03082,0.03163,0.03291,0.03641,,,,,,,0.03061,0.03133,0.03247,0.03548,,,,,,,0.03214,0.03297,0.0343,0.03793,,,,,,,0.03143,0.03211,0.03319,0.03608,,,,,,,0.00579,0.00666,0.00809,0.01207,,,,,,,0.00583,0.00665,0.00799,0.01169,,,,,,,0.0062,0.00705,0.00843,0.01228,,,,,,,0.00565,0.00656,0.00805,0.01224,,,,,,,0.00584,0.00652,0.0076,0.01049,,,,,,,0.00556,0.00627,0.00741,0.01051,,,,,,,0.00541,0.00605,0.00705,0.00972,,,,,,,0.00576,0.00649,0.00767,0.01088,,,,,,,0.00545,0.00606,0.00701,0.00956,,,,,,,0.00146,0.00147,0.00148,0.00157,,,,,,,0.00147,0.00148,0.00149,0.00158,,,,,,,0.0015,0.00151,0.00152,0.00161,,,,,,,0.00146,0.00147,0.00149,0.00158,,,,,,,0.00149,0.0015,0.00151,0.00159,,,,,,,0.00147,0.00148,0.00149,0.00157,,,,,,,0.00148,0.00149,0.00149,0.00157,,,,,,,0.00146,0.00147,0.00148,0.00156,,,,,,,0.00134,0.00135,0.00135,0.00143,,,,,,,0.09761,0.1246,0.18328,0.38815,,,,,,,0.08762,0.11195,0.16796,0.36938,,,,,,,0.09366,0.12522,0.18865,0.40487,,,,,,,0.10684,0.14325,0.21242,0.43708,,,,,,,0.06346,0.09131,0.15154,0.3669,,,,,,,0.06993,0.09998,0.16236,0.38059,,,,,,,0.06181,0.08702,0.14416,0.35281,,,,,,,0.08068,0.11109,0.17476,0.39558,,,,,,,0.06016,0.08466,0.1405,0.34603,, +Mini car,E10,2030,,,,,,0.00054,0.0008,0.00123,0.00223,,,,,,,0.0005,0.00073,0.00113,0.00203,,,,,,,0.00052,0.00077,0.00118,0.00214,,,,,,,0.00057,0.00085,0.00131,0.00239,,,,,,,0.00038,0.00055,0.00083,0.00145,,,,,,,0.00041,0.00059,0.00091,0.0016,,,,,,,0.00035,0.0005,0.00076,0.00132,,,,,,,0.00042,0.00062,0.00095,0.00168,,,,,,,0.00033,0.00047,0.00071,0.00123,,,,,,,0.00665,0.00492,0.00441,0.00524,,,,,,,0.00575,0.00433,0.00394,0.0047,,,,,,,0.00617,0.00482,0.0044,0.00529,,,,,,,0.00722,0.00562,0.00511,0.00611,,,,,,,0.00335,0.00297,0.00292,0.00357,,,,,,,0.00396,0.00342,0.00331,0.00404,,,,,,,0.00324,0.00289,0.00286,0.00349,,,,,,,0.00454,0.0037,0.00348,0.0042,,,,,,,0.00323,0.00275,0.00268,0.00324,,,,,,,1.02822,1.46511,1.85482,2.33379,,,,,,,0.96681,1.4031,1.79041,2.25236,,,,,,,1.03467,1.57084,2.04202,2.5941,,,,,,,1.15058,1.74599,2.27395,2.87836,,,,,,,0.78898,1.31395,1.74456,2.20814,,,,,,,0.85424,1.4055,1.86701,2.37229,,,,,,,0.81453,1.35209,1.7936,2.27019,,,,,,,0.92264,1.44525,1.88172,2.38019,,,,,,,0.77383,1.22921,1.59353,2.008,,,,,,,202.37594,204.42196,207.59024,216.57276,,,,,,,203.95177,205.85843,208.81947,217.48287,,,,,,,207.3841,209.3687,212.4505,221.38071,,,,,,,202.63559,204.71112,207.93816,217.0329,,,,,,,206.90582,208.2932,210.47961,217.89872,,,,,,,203.86263,205.44197,207.91823,215.77045,,,,,,,204.89053,206.23087,208.35053,215.62512,,,,,,,205.4427,207.05521,209.57762,217.53359,,,,,,,201.21947,202.64801,204.87349,212.24266,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04246,0.06053,0.08157,0.10797,,,,,,,0.04054,0.05817,0.07879,0.10451,,,,,,,0.04085,0.06172,0.08334,0.11182,,,,,,,0.04451,0.06805,0.09184,0.12334,,,,,,,0.03129,0.05089,0.07065,0.09597,,,,,,,0.03536,0.05639,0.07763,0.10506,,,,,,,0.03214,0.05175,0.0719,0.09724,,,,,,,0.03858,0.05978,0.08181,0.10978,,,,,,,0.03277,0.05094,0.07035,0.09399,,,,,,,0.00106,0.0015,0.0022,0.00366,,,,,,,0.00103,0.00145,0.00211,0.00348,,,,,,,0.00105,0.00148,0.00216,0.00358,,,,,,,0.00109,0.00154,0.00227,0.0038,,,,,,,0.00092,0.00128,0.00184,0.00295,,,,,,,0.00094,0.00131,0.00189,0.00307,,,,,,,0.00087,0.00121,0.00173,0.00277,,,,,,,0.00095,0.00133,0.00193,0.00314,,,,,,,0.00084,0.00116,0.00167,0.00265,,,,,,,0.03067,0.03165,0.03324,0.03663,,,,,,,0.03155,0.03248,0.03397,0.03712,,,,,,,0.03411,0.03507,0.03661,0.03989,,,,,,,0.02913,0.03015,0.03181,0.03539,,,,,,,0.03331,0.03408,0.03529,0.03774,,,,,,,0.03082,0.03162,0.03289,0.03552,,,,,,,0.03061,0.03133,0.03244,0.03471,,,,,,,0.03214,0.03296,0.03428,0.037,,,,,,,0.03143,0.03211,0.03319,0.03533,,,,,,,0.00579,0.00666,0.00806,0.01106,,,,,,,0.00583,0.00665,0.00797,0.01076,,,,,,,0.00619,0.00704,0.00841,0.01131,,,,,,,0.00565,0.00655,0.00802,0.01119,,,,,,,0.00583,0.00651,0.00758,0.00975,,,,,,,0.00556,0.00627,0.0074,0.00972,,,,,,,0.00541,0.00604,0.00703,0.00904,,,,,,,0.00576,0.00649,0.00765,0.01006,,,,,,,0.00545,0.00606,0.00701,0.0089,,,,,,,0.00134,0.00136,0.00138,0.00144,,,,,,,0.00135,0.00137,0.00139,0.00144,,,,,,,0.00138,0.00139,0.00141,0.00147,,,,,,,0.00135,0.00136,0.00138,0.00144,,,,,,,0.00137,0.00138,0.0014,0.00145,,,,,,,0.00135,0.00136,0.00138,0.00143,,,,,,,0.00136,0.00137,0.00138,0.00143,,,,,,,0.00134,0.00135,0.00137,0.00142,,,,,,,0.00124,0.00124,0.00126,0.0013,,,,,,,0.09314,0.11685,0.17275,0.35226,,,,,,,0.08307,0.10412,0.15728,0.33269,,,,,,,0.08914,0.11675,0.17706,0.36549,,,,,,,0.10203,0.13401,0.19953,0.39542,,,,,,,0.05854,0.08228,0.1388,0.32397,,,,,,,0.06505,0.09087,0.14949,0.33755,,,,,,,0.05678,0.07792,0.13124,0.30945,,,,,,,0.07551,0.10197,0.16172,0.3532,,,,,,,0.05515,0.07593,0.12842,0.30524, +Mini car,E10,2035,,,,,,,0.00054,0.00079,0.00124,0.0022,,,,,,,0.0005,0.00073,0.00113,0.002,,,,,,,0.00052,0.00076,0.00119,0.0021,,,,,,,0.00057,0.00084,0.00132,0.00236,,,,,,,0.00038,0.00054,0.00083,0.00143,,,,,,,0.00041,0.00059,0.00091,0.00157,,,,,,,0.00035,0.0005,0.00076,0.0013,,,,,,,0.00042,0.00062,0.00095,0.00165,,,,,,,0.00033,0.00047,0.00071,0.00121,,,,,,,0.00662,0.00492,0.00441,0.00513,,,,,,,0.00573,0.00433,0.00394,0.00458,,,,,,,0.00614,0.00483,0.0044,0.00513,,,,,,,0.0072,0.00563,0.0051,0.00595,,,,,,,0.00334,0.00297,0.00292,0.00341,,,,,,,0.00395,0.00343,0.00331,0.00387,,,,,,,0.00323,0.00289,0.00286,0.00334,,,,,,,0.00452,0.0037,0.00348,0.00406,,,,,,,0.00321,0.00275,0.00268,0.0031,,,,,,,1.02688,1.46501,1.85448,2.28071,,,,,,,0.96573,1.40222,1.79058,2.19756,,,,,,,1.03349,1.56958,2.04243,2.52781,,,,,,,1.14909,1.74336,2.27516,2.80835,,,,,,,0.78864,1.31041,1.74643,2.14046,,,,,,,0.85372,1.4022,1.86871,2.30199,,,,,,,0.81418,1.34838,1.79555,2.20087,,,,,,,0.9219,1.44316,1.88262,2.31347,,,,,,,0.77354,1.22854,1.59364,1.94662,,,,,,,202.31712,204.41466,207.58447,213.41988,,,,,,,203.89648,205.85154,208.81373,214.30222,,,,,,,207.32639,209.36151,212.4449,218.14804,,,,,,,202.575,204.70376,207.93235,213.87923,,,,,,,206.86326,208.28791,210.47523,214.66023,,,,,,,203.81517,205.43598,207.91323,212.58504,,,,,,,204.84879,206.22545,208.34629,212.41826,,,,,,,205.39473,207.04914,209.57269,214.32318,,,,,,,201.1776,202.64302,204.86944,209.091,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.00459,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04235,0.06038,0.08165,0.10515,,,,,,,0.04044,0.05803,0.07886,0.10164,,,,,,,0.04075,0.06156,0.08342,0.10849,,,,,,,0.0444,0.06784,0.09195,0.11974,,,,,,,0.03123,0.05079,0.07071,0.09257,,,,,,,0.03529,0.05626,0.0777,0.10155,,,,,,,0.03207,0.05161,0.07197,0.09391,,,,,,,0.0385,0.05969,0.08186,0.10623,,,,,,,0.03272,0.05091,0.07036,0.09083,,,,,,,0.00106,0.00149,0.00221,0.00361,,,,,,,0.00102,0.00144,0.00212,0.00343,,,,,,,0.00104,0.00147,0.00217,0.00353,,,,,,,0.00108,0.00153,0.00227,0.00374,,,,,,,0.00092,0.00128,0.00185,0.00291,,,,,,,0.00094,0.00131,0.0019,0.00302,,,,,,,0.00087,0.00121,0.00174,0.00273,,,,,,,0.00095,0.00133,0.00193,0.00309,,,,,,,0.00084,0.00116,0.00167,0.0026,,,,,,,0.03066,0.03163,0.03325,0.0365,,,,,,,0.03154,0.03246,0.03398,0.037,,,,,,,0.03411,0.03505,0.03662,0.03977,,,,,,,0.02912,0.03013,0.03182,0.03526,,,,,,,0.03331,0.03407,0.0353,0.03765,,,,,,,0.03081,0.03161,0.0329,0.03541,,,,,,,0.0306,0.03131,0.03245,0.03463,,,,,,,0.03213,0.03295,0.03429,0.03689,,,,,,,0.03143,0.03211,0.03319,0.03523,,,,,,,0.00578,0.00664,0.00807,0.01095,,,,,,,0.00582,0.00663,0.00797,0.01065,,,,,,,0.00619,0.00702,0.00841,0.0112,,,,,,,0.00564,0.00653,0.00803,0.01108,,,,,,,0.00583,0.0065,0.00759,0.00967,,,,,,,0.00556,0.00626,0.0074,0.00963,,,,,,,0.00541,0.00603,0.00704,0.00896,,,,,,,0.00575,0.00648,0.00766,0.00996,,,,,,,0.00545,0.00605,0.00701,0.00882,,,,,,,0.00134,0.00136,0.00138,0.00142,,,,,,,0.00135,0.00137,0.00139,0.00142,,,,,,,0.00138,0.00139,0.00141,0.00145,,,,,,,0.00135,0.00136,0.00138,0.00142,,,,,,,0.00137,0.00138,0.0014,0.00143,,,,,,,0.00135,0.00136,0.00138,0.00141,,,,,,,0.00136,0.00137,0.00138,0.00141,,,,,,,0.00134,0.00135,0.00137,0.0014,,,,,,,0.00123,0.00124,0.00126,0.00128,,,,,,,0.09285,0.11686,0.17269,0.34809,,,,,,,0.08281,0.10413,0.15723,0.32835,,,,,,,0.08888,0.11679,0.17698,0.36071,,,,,,,0.10171,0.13388,0.19956,0.39041,,,,,,,0.05837,0.08212,0.13888,0.31869,,,,,,,0.06485,0.09074,0.14955,0.33222,,,,,,,0.0566,0.07772,0.13135,0.30405,,,,,,,0.07522,0.10149,0.16216,0.348,,,,,,,0.05499,0.07589,0.12841,0.30019 +Mini car,E10,2040,,,,,,,,0.00053,0.00079,0.00124,,,,,,,,0.00049,0.00073,0.00114,,,,,,,,0.00051,0.00076,0.00119,,,,,,,,0.00056,0.00084,0.00132,,,,,,,,0.00037,0.00055,0.00083,,,,,,,,0.0004,0.00059,0.00091,,,,,,,,0.00034,0.0005,0.00076,,,,,,,,0.00042,0.00062,0.00095,,,,,,,,0.00033,0.00047,0.00071,,,,,,,,0.00662,0.00492,0.00441,,,,,,,,0.00574,0.00433,0.00394,,,,,,,,0.00616,0.00482,0.00439,,,,,,,,0.00721,0.00562,0.0051,,,,,,,,0.00334,0.00297,0.00292,,,,,,,,0.00396,0.00342,0.00331,,,,,,,,0.00323,0.00289,0.00286,,,,,,,,0.00453,0.00369,0.00347,,,,,,,,0.00322,0.00275,0.00267,,,,,,,,1.02684,1.46443,1.85435,,,,,,,,0.96512,1.40207,1.79102,,,,,,,,1.03299,1.56952,2.04319,,,,,,,,1.14793,1.74384,2.2769,,,,,,,,0.78632,1.31166,1.74882,,,,,,,,0.85167,1.40328,1.87092,,,,,,,,0.81177,1.34969,1.79804,,,,,,,,0.92041,1.44362,1.88391,,,,,,,,0.77274,1.22846,1.59394,,,,,,,,202.30794,204.40446,207.58357,,,,,,,,203.88772,205.84183,208.81287,,,,,,,,207.31737,209.35159,212.44393,,,,,,,,202.56569,204.69324,207.93131,,,,,,,,206.85683,208.28076,210.47469,,,,,,,,203.80767,205.4279,207.91246,,,,,,,,204.84254,206.21834,208.34554,,,,,,,,205.38707,207.04092,209.57195,,,,,,,,201.17118,202.6359,204.86889,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04222,0.06042,0.08174,,,,,,,,0.04032,0.05806,0.07896,,,,,,,,0.04061,0.0616,0.08353,,,,,,,,0.04422,0.0679,0.09209,,,,,,,,0.03114,0.05081,0.07079,,,,,,,,0.03518,0.05629,0.07779,,,,,,,,0.03196,0.05165,0.07208,,,,,,,,0.0384,0.0597,0.08192,,,,,,,,0.03268,0.0509,0.07037,,,,,,,,0.00105,0.0015,0.00221,,,,,,,,0.00102,0.00144,0.00212,,,,,,,,0.00104,0.00147,0.00217,,,,,,,,0.00108,0.00154,0.00228,,,,,,,,0.00092,0.00128,0.00185,,,,,,,,0.00093,0.00131,0.0019,,,,,,,,0.00087,0.00121,0.00174,,,,,,,,0.00095,0.00133,0.00194,,,,,,,,0.00084,0.00116,0.00167,,,,,,,,0.03065,0.03164,0.03327,,,,,,,,0.03153,0.03247,0.03399,,,,,,,,0.03409,0.03506,0.03664,,,,,,,,0.0291,0.03014,0.03184,,,,,,,,0.0333,0.03408,0.03531,,,,,,,,0.0308,0.03161,0.03291,,,,,,,,0.03059,0.03132,0.03247,,,,,,,,0.03213,0.03296,0.03429,,,,,,,,0.03142,0.03211,0.03319,,,,,,,,0.00577,0.00665,0.00808,,,,,,,,0.00581,0.00664,0.00799,,,,,,,,0.00618,0.00703,0.00843,,,,,,,,0.00563,0.00654,0.00805,,,,,,,,0.00583,0.00651,0.0076,,,,,,,,0.00555,0.00626,0.00741,,,,,,,,0.0054,0.00603,0.00705,,,,,,,,0.00575,0.00648,0.00766,,,,,,,,0.00545,0.00605,0.00701,,,,,,,,0.00134,0.00136,0.00138,,,,,,,,0.00135,0.00137,0.00139,,,,,,,,0.00138,0.00139,0.00141,,,,,,,,0.00135,0.00136,0.00138,,,,,,,,0.00137,0.00138,0.0014,,,,,,,,0.00135,0.00136,0.00138,,,,,,,,0.00136,0.00137,0.00138,,,,,,,,0.00134,0.00135,0.00137,,,,,,,,0.00123,0.00124,0.00126,,,,,,,,0.09285,0.11678,0.17267,,,,,,,,0.0828,0.10406,0.15722,,,,,,,,0.08891,0.11669,0.17697,,,,,,,,0.10163,0.13385,0.19969,,,,,,,,0.05827,0.08215,0.13904,,,,,,,,0.06478,0.09075,0.14968,,,,,,,,0.05647,0.07776,0.13153,,,,,,,,0.07486,0.10179,0.16235,,,,,,,,0.05495,0.07587,0.12844 +Mini car,E10,2045,,,,,,,,,0.00053,0.0008,,,,,,,,,0.00049,0.00073,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00057,0.00085,,,,,,,,,0.00038,0.00055,,,,,,,,,0.0004,0.00059,,,,,,,,,0.00035,0.0005,,,,,,,,,0.00042,0.00062,,,,,,,,,0.00033,0.00047,,,,,,,,,0.00662,0.00491,,,,,,,,,0.00573,0.00432,,,,,,,,,0.00615,0.00481,,,,,,,,,0.0072,0.00561,,,,,,,,,0.00334,0.00297,,,,,,,,,0.00395,0.00342,,,,,,,,,0.00323,0.00289,,,,,,,,,0.00452,0.00369,,,,,,,,,0.00321,0.00275,,,,,,,,,1.02626,1.46429,,,,,,,,,0.96486,1.40237,,,,,,,,,1.03262,1.57,,,,,,,,,1.14778,1.74502,,,,,,,,,0.78701,1.31344,,,,,,,,,0.85217,1.4049,,,,,,,,,0.81249,1.35156,,,,,,,,,0.92061,1.44458,,,,,,,,,0.77272,1.22868,,,,,,,,,202.29977,204.40428,,,,,,,,,203.88009,205.84189,,,,,,,,,207.30962,209.35158,,,,,,,,,202.5573,204.69315,,,,,,,,,206.85099,208.28066,,,,,,,,,203.80131,205.42781,,,,,,,,,204.83695,206.2183,,,,,,,,,205.38059,207.04076,,,,,,,,,201.16547,202.63575,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04225,0.06049,,,,,,,,,0.04035,0.05814,,,,,,,,,0.04064,0.06169,,,,,,,,,0.04427,0.06801,,,,,,,,,0.03116,0.05086,,,,,,,,,0.03521,0.05636,,,,,,,,,0.03199,0.05173,,,,,,,,,0.03842,0.05975,,,,,,,,,0.03268,0.05091,,,,,,,,,0.00106,0.0015,,,,,,,,,0.00102,0.00145,,,,,,,,,0.00104,0.00148,,,,,,,,,0.00108,0.00154,,,,,,,,,0.00092,0.00128,,,,,,,,,0.00094,0.00131,,,,,,,,,0.00087,0.00121,,,,,,,,,0.00095,0.00133,,,,,,,,,0.00084,0.00116,,,,,,,,,0.03066,0.03165,,,,,,,,,0.03154,0.03247,,,,,,,,,0.0341,0.03507,,,,,,,,,0.02911,0.03015,,,,,,,,,0.03331,0.03408,,,,,,,,,0.03081,0.03162,,,,,,,,,0.0306,0.03132,,,,,,,,,0.03213,0.03296,,,,,,,,,0.03142,0.03211,,,,,,,,,0.00578,0.00665,,,,,,,,,0.00582,0.00665,,,,,,,,,0.00618,0.00704,,,,,,,,,0.00563,0.00655,,,,,,,,,0.00583,0.00651,,,,,,,,,0.00555,0.00627,,,,,,,,,0.0054,0.00604,,,,,,,,,0.00575,0.00649,,,,,,,,,0.00545,0.00606,,,,,,,,,0.00134,0.00136,,,,,,,,,0.00135,0.00137,,,,,,,,,0.00138,0.00139,,,,,,,,,0.00135,0.00136,,,,,,,,,0.00137,0.00138,,,,,,,,,0.00135,0.00136,,,,,,,,,0.00136,0.00137,,,,,,,,,0.00134,0.00135,,,,,,,,,0.00123,0.00124,,,,,,,,,0.09278,0.11675,,,,,,,,,0.08275,0.10404,,,,,,,,,0.08883,0.11666,,,,,,,,,0.10159,0.1339,,,,,,,,,0.05827,0.08223,,,,,,,,,0.06477,0.09081,,,,,,,,,0.05649,0.07787,,,,,,,,,0.07507,0.1019,,,,,,,,,0.05493,0.07588 +Mini car,E10,2050,,,,,,,,,,0.00054,,,,,,,,,,0.0005,,,,,,,,,,0.00052,,,,,,,,,,0.00057,,,,,,,,,,0.00038,,,,,,,,,,0.00041,,,,,,,,,,0.00035,,,,,,,,,,0.00042,,,,,,,,,,0.00033,,,,,,,,,,0.00661,,,,,,,,,,0.00573,,,,,,,,,,0.00614,,,,,,,,,,0.00719,,,,,,,,,,0.00334,,,,,,,,,,0.00395,,,,,,,,,,0.00323,,,,,,,,,,0.00452,,,,,,,,,,0.00321,,,,,,,,,,1.0259,,,,,,,,,,0.96483,,,,,,,,,,1.03248,,,,,,,,,,1.14795,,,,,,,,,,0.78793,,,,,,,,,,0.85293,,,,,,,,,,0.81346,,,,,,,,,,0.92104,,,,,,,,,,0.77284,,,,,,,,,,202.29983,,,,,,,,,,203.88015,,,,,,,,,,207.3096,,,,,,,,,,202.55725,,,,,,,,,,206.85097,,,,,,,,,,203.80119,,,,,,,,,,204.83681,,,,,,,,,,205.3805,,,,,,,,,,201.16542,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04231,,,,,,,,,,0.0404,,,,,,,,,,0.0407,,,,,,,,,,0.04435,,,,,,,,,,0.0312,,,,,,,,,,0.03525,,,,,,,,,,0.03204,,,,,,,,,,0.03846,,,,,,,,,,0.03269,,,,,,,,,,0.00106,,,,,,,,,,0.00102,,,,,,,,,,0.00104,,,,,,,,,,0.00108,,,,,,,,,,0.00092,,,,,,,,,,0.00094,,,,,,,,,,0.00087,,,,,,,,,,0.00095,,,,,,,,,,0.00084,,,,,,,,,,0.03066,,,,,,,,,,0.03154,,,,,,,,,,0.03411,,,,,,,,,,0.02912,,,,,,,,,,0.03331,,,,,,,,,,0.03081,,,,,,,,,,0.0306,,,,,,,,,,0.03213,,,,,,,,,,0.03143,,,,,,,,,,0.00578,,,,,,,,,,0.00582,,,,,,,,,,0.00619,,,,,,,,,,0.00564,,,,,,,,,,0.00583,,,,,,,,,,0.00556,,,,,,,,,,0.0054,,,,,,,,,,0.00575,,,,,,,,,,0.00545,,,,,,,,,,0.00134,,,,,,,,,,0.00135,,,,,,,,,,0.00138,,,,,,,,,,0.00135,,,,,,,,,,0.00137,,,,,,,,,,0.00135,,,,,,,,,,0.00136,,,,,,,,,,0.00134,,,,,,,,,,0.00123,,,,,,,,,,0.09275,,,,,,,,,,0.08273,,,,,,,,,,0.08878,,,,,,,,,,0.1016,,,,,,,,,,0.05831,,,,,,,,,,0.06479,,,,,,,,,,0.05655,,,,,,,,,,0.07515,,,,,,,,,,0.05494 +Mini car,E15,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07526,,,,,,,,,,0.06473,,,,,,,,,,0.0837,,,,,,,,,,0.08637,,,,,,,,,,0.06943,,,,,,,,,,0.07719,,,,,,,,,,0.07147,,,,,,,,,,0.06789,,,,,,,,,,0.05643,,,,,,,,,,38.75413,,,,,,,,,,34.5872,,,,,,,,,,43.81328,,,,,,,,,,45.50875,,,,,,,,,,36.63041,,,,,,,,,,41.00509,,,,,,,,,,38.06441,,,,,,,,,,36.83159,,,,,,,,,,30.10628,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,3.10269,,,,,,,,,,2.94127,,,,,,,,,,3.23061,,,,,,,,,,3.41282,,,,,,,,,,3.17568,,,,,,,,,,3.32336,,,,,,,,,,3.17346,,,,,,,,,,3.35141,,,,,,,,,,2.80875,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.02157,,,,,,,,,,0.02461,,,,,,,,,,0.03502,,,,,,,,,,0.03198,,,,,,,,,,0.02845,,,,,,,,,,0.03135,,,,,,,,,,0.02839,,,,,,,,,,0.0281,,,,,,,,,,0.01302,,,,,,,,,,4.79581,,,,,,,,,,4.35786,,,,,,,,,,5.22498,,,,,,,,,,5.4577,,,,,,,,,,4.89405,,,,,,,,,,5.18592,,,,,,,,,,5.03252,,,,,,,,,,4.91977,,,,,,,,,,4.14616,,,,,,,,, +Mini car,E15,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.04157,0.04885,,,,,,,,,0.03883,0.04354,,,,,,,,,0.04812,0.05248,,,,,,,,,0.04994,0.05738,,,,,,,,,0.04014,0.04624,,,,,,,,,0.04374,0.05028,,,,,,,,,0.03999,0.04578,,,,,,,,,0.04014,0.0453,,,,,,,,,0.03127,0.03414,,,,,,,,,14.18519,19.53846,,,,,,,,,13.58838,18.00916,,,,,,,,,16.77905,22.19802,,,,,,,,,17.72937,23.58247,,,,,,,,,14.27817,18.85506,,,,,,,,,15.65044,20.87293,,,,,,,,,14.62253,19.29152,,,,,,,,,14.51468,19.75992,,,,,,,,,11.14031,15.25823,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.33238,2.8498,,,,,,,,,2.2648,2.69489,,,,,,,,,2.47624,2.93329,,,,,,,,,2.59105,3.16899,,,,,,,,,2.4168,2.96123,,,,,,,,,2.53099,3.09153,,,,,,,,,2.4308,2.95262,,,,,,,,,2.58106,3.12099,,,,,,,,,2.16696,2.58118,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.01765,0.00895,,,,,,,,,0.02024,0.00908,,,,,,,,,0.02883,0.00943,,,,,,,,,0.02625,0.01575,,,,,,,,,0.02372,0.00928,,,,,,,,,0.02602,0.0092,,,,,,,,,0.0237,0.01255,,,,,,,,,0.02326,0.01431,,,,,,,,,0.01078,0.00516,,,,,,,,,2.06676,2.98575,,,,,,,,,2.01681,2.84631,,,,,,,,,2.34924,3.21213,,,,,,,,,2.45703,3.44696,,,,,,,,,2.21926,3.25783,,,,,,,,,2.29305,3.33907,,,,,,,,,2.21968,3.23669,,,,,,,,,2.27834,3.26574,,,,,,,,,1.8306,2.64667,,,,,,,, +Mini car,E15,2000,0.00445,0.00726,0.02112,,,,,,,,0.00384,0.00625,0.01811,,,,,,,,0.00431,0.00703,0.02047,,,,,,,,0.00487,0.00798,0.0235,,,,,,,,0.00215,0.00348,0.00992,,,,,,,,0.00257,0.00418,0.01261,,,,,,,,0.00206,0.00332,0.00945,,,,,,,,0.00296,0.00482,0.01389,,,,,,,,0.00204,0.00328,0.00922,,,,,,,,0.01896,0.02052,0.03298,,,,,,,,0.01786,0.01965,0.02964,,,,,,,,0.02274,0.02329,0.03673,,,,,,,,0.02391,0.02533,0.03874,,,,,,,,0.01699,0.01984,0.03145,,,,,,,,0.01893,0.02127,0.0339,,,,,,,,0.01686,0.01957,0.0298,,,,,,,,0.01796,0.01988,0.02999,,,,,,,,0.01361,0.01566,0.02266,,,,,,,,6.73755,9.1045,13.90876,,,,,,,,6.48024,8.85739,13.04968,,,,,,,,8.08269,10.86183,16.32129,,,,,,,,8.65746,11.5488,16.92516,,,,,,,,5.99268,8.7064,13.29109,,,,,,,,6.73541,9.60154,14.83085,,,,,,,,6.081,8.8791,13.10477,,,,,,,,6.51433,9.3538,13.75817,,,,,,,,4.87913,7.3873,10.67034,,,,,,,,376.9009,380.04536,390.17789,,,,,,,,380.22919,383.15664,392.61867,,,,,,,,386.72196,389.79259,399.67214,,,,,,,,377.0437,380.2069,390.39124,,,,,,,,387.0503,389.14988,396.10595,,,,,,,,380.64772,383.06314,392.40551,,,,,,,,383.04132,385.05237,391.69651,,,,,,,,383.70018,386.15671,394.18572,,,,,,,,376.32404,378.50339,385.72456,,,,,,,,0.02441,0.02715,0.04129,,,,,,,,0.02451,0.02724,0.04146,,,,,,,,0.02468,0.0274,0.04175,,,,,,,,0.02464,0.02744,0.04169,,,,,,,,0.02471,0.02743,0.04179,,,,,,,,0.02479,0.02758,0.04196,,,,,,,,0.02454,0.0273,0.04153,,,,,,,,0.02468,0.02742,0.04174,,,,,,,,0.02429,0.02699,0.04109,,,,,,,,0.05939,0.07773,0.08246,,,,,,,,0.05953,0.07791,0.08264,,,,,,,,0.05969,0.07812,0.08283,,,,,,,,0.05898,0.07719,0.08193,,,,,,,,0.0596,0.078,0.08271,,,,,,,,0.05918,0.07746,0.0822,,,,,,,,0.05937,0.07771,0.08244,,,,,,,,0.0596,0.07801,0.08273,,,,,,,,0.05973,0.07818,0.0829,,,,,,,,1.12182,1.52662,2.27744,,,,,,,,1.09871,1.51549,2.22205,,,,,,,,1.28081,1.67959,2.46843,,,,,,,,1.33146,1.78823,2.57182,,,,,,,,1.22134,1.65953,2.46172,,,,,,,,1.27841,1.71355,2.5332,,,,,,,,1.24098,1.68556,2.38681,,,,,,,,1.29826,1.75093,2.51422,,,,,,,,1.08526,1.48759,2.08759,,,,,,,,0.00945,0.01479,0.03884,,,,,,,,0.00832,0.01301,0.03403,,,,,,,,0.00912,0.01427,0.03752,,,,,,,,0.00993,0.01558,0.0417,,,,,,,,0.00504,0.00782,0.02022,,,,,,,,0.0058,0.00903,0.02461,,,,,,,,0.0049,0.00761,0.01961,,,,,,,,0.00661,0.0103,0.02687,,,,,,,,0.00496,0.0077,0.01951,,,,,,,,0.04876,0.06029,0.1139,,,,,,,,0.04727,0.05729,0.10393,,,,,,,,0.0517,0.06267,0.11454,,,,,,,,0.04848,0.06079,0.1193,,,,,,,,0.04212,0.04796,0.07498,,,,,,,,0.04131,0.0481,0.08248,,,,,,,,0.03922,0.04492,0.07092,,,,,,,,0.04433,0.05223,0.08863,,,,,,,,0.04009,0.04584,0.0713,,,,,,,,0.02179,0.03199,0.07941,,,,,,,,0.01973,0.0286,0.06985,,,,,,,,0.02175,0.03146,0.07734,,,,,,,,0.02276,0.03366,0.08542,,,,,,,,0.01363,0.01879,0.04269,,,,,,,,0.01484,0.02085,0.05117,,,,,,,,0.01302,0.01807,0.04107,,,,,,,,0.01654,0.02353,0.05573,,,,,,,,0.01312,0.0182,0.04073,,,,,,,,0.01757,0.00859,0.00794,,,,,,,,0.02018,0.00874,0.00799,,,,,,,,0.02876,0.00906,0.00813,,,,,,,,0.02616,0.01514,0.00794,,,,,,,,0.02375,0.009,0.00806,,,,,,,,0.02603,0.0089,0.00798,,,,,,,,0.02376,0.01218,0.00797,,,,,,,,0.02324,0.01384,0.00717,,,,,,,,0.01077,0.00499,0.00368,,,,,,,,0.82153,1.20412,2.3112,,,,,,,,0.78397,1.16464,2.19027,,,,,,,,0.94086,1.32841,2.51778,,,,,,,,1.01599,1.45475,2.67434,,,,,,,,0.73124,1.17738,2.42422,,,,,,,,0.79831,1.24329,2.59745,,,,,,,,0.72841,1.16013,2.35553,,,,,,,,0.82151,1.24109,2.44274,,,,,,,,0.60479,0.96472,1.95835,,,,,,, +Mini car,E15,2005,0.00166,0.00246,0.00399,0.0125,,,,,,,0.0015,0.00213,0.00345,0.01079,,,,,,,0.00185,0.00191,0.00306,0.01205,,,,,,,0.00199,0.0026,0.00423,0.01381,,,,,,,0.00097,0.00138,0.00223,0.00615,,,,,,,0.00116,0.00144,0.00234,0.00733,,,,,,,0.00092,0.00125,0.00201,0.00571,,,,,,,0.00126,0.00159,0.00255,0.00829,,,,,,,0.00078,0.00104,0.00166,0.00545,,,,,,,0.01743,0.01282,0.01269,0.0199,,,,,,,0.01583,0.01143,0.01179,0.01823,,,,,,,0.01816,0.01244,0.01283,0.02203,,,,,,,0.01939,0.01568,0.01476,0.02377,,,,,,,0.01053,0.00886,0.00994,0.01706,,,,,,,0.01252,0.00995,0.01105,0.01886,,,,,,,0.01021,0.00938,0.00978,0.01629,,,,,,,0.01339,0.01094,0.01056,0.01783,,,,,,,0.00803,0.00669,0.00731,0.01364,,,,,,,3.20315,4.27438,5.45316,8.8989,,,,,,,3.07383,4.15658,5.48416,8.58421,,,,,,,3.52881,5.04003,6.71632,10.34714,,,,,,,3.75274,5.70751,6.82315,11.14126,,,,,,,2.86973,4.25866,5.8533,8.85436,,,,,,,3.09101,4.59129,6.40035,9.4972,,,,,,,2.93115,4.68771,5.89803,8.88157,,,,,,,3.15922,5.0677,6.0405,9.31593,,,,,,,2.24492,3.94227,5.21926,7.74447,,,,,,,383.61346,385.3866,389.77241,396.4698,,,,,,,387.18589,388.82745,392.91381,398.96071,,,,,,,393.47964,395.21184,399.4659,405.91614,,,,,,,383.8817,385.64041,390.08954,396.90328,,,,,,,394.88007,396.01386,398.98689,402.61405,,,,,,,388.20564,389.53393,394.37923,397.4292,,,,,,,391.12159,392.19247,395.06349,398.41881,,,,,,,391.18938,392.54087,395.99653,400.65998,,,,,,,383.91948,385.12982,388.19211,392.00294,,,,,,,0.00715,0.00771,0.00905,0.02189,,,,,,,0.00716,0.00772,0.00907,0.02194,,,,,,,0.00717,0.00773,0.00906,0.02199,,,,,,,0.00725,0.00782,0.0092,0.02219,,,,,,,0.00719,0.00775,0.00909,0.02204,,,,,,,0.00726,0.00783,0.0092,0.02225,,,,,,,0.00718,0.00774,0.0091,0.022,,,,,,,0.0072,0.00776,0.00911,0.02207,,,,,,,0.00708,0.00763,0.00896,0.02171,,,,,,,0.02398,0.0273,0.03361,0.04766,,,,,,,0.02404,0.02736,0.03369,0.04776,,,,,,,0.0241,0.02744,0.03378,0.04788,,,,,,,0.02381,0.02711,0.03338,0.04734,,,,,,,0.02407,0.0274,0.03373,0.04781,,,,,,,0.0239,0.02721,0.0335,0.0475,,,,,,,0.02397,0.02729,0.0336,0.04764,,,,,,,0.02407,0.0274,0.03373,0.04782,,,,,,,0.02412,0.02746,0.03381,0.04792,,,,,,,0.28948,0.42599,0.56162,1.06758,,,,,,,0.28544,0.41558,0.56473,1.05292,,,,,,,0.32639,0.46735,0.62275,1.19357,,,,,,,0.32526,0.54412,0.65738,1.26785,,,,,,,0.29111,0.44668,0.60414,1.17825,,,,,,,0.3097,0.46669,0.62655,1.21817,,,,,,,0.29398,0.47915,0.59883,1.14933,,,,,,,0.31789,0.51205,0.6157,1.21244,,,,,,,0.22993,0.33938,0.45352,1.02955,,,,,,,0.0037,0.00533,0.00799,0.02217,,,,,,,0.00343,0.00479,0.00717,0.01965,,,,,,,0.00402,0.0045,0.00669,0.02144,,,,,,,0.00416,0.00549,0.00825,0.02363,,,,,,,0.00241,0.0034,0.00513,0.01238,,,,,,,0.00274,0.00351,0.00531,0.01412,,,,,,,0.00231,0.00316,0.00475,0.01177,,,,,,,0.00295,0.0038,0.00569,0.01572,,,,,,,0.00208,0.0028,0.00418,0.0115,,,,,,,0.03629,0.03973,0.04565,0.07741,,,,,,,0.03666,0.03949,0.04474,0.07254,,,,,,,0.04053,0.04132,0.04611,0.07925,,,,,,,0.03579,0.03858,0.0447,0.07945,,,,,,,0.03646,0.03847,0.04218,0.05803,,,,,,,0.03465,0.03617,0.04018,0.05951,,,,,,,0.03365,0.03537,0.03875,0.054,,,,,,,0.03639,0.03812,0.04217,0.06438,,,,,,,0.034,0.03544,0.03835,0.05422,,,,,,,0.01076,0.01381,0.01904,0.04713,,,,,,,0.01034,0.01285,0.01749,0.04209,,,,,,,0.01187,0.01257,0.01681,0.04612,,,,,,,0.01154,0.01401,0.01943,0.05017,,,,,,,0.00862,0.01039,0.01368,0.02769,,,,,,,0.00895,0.01029,0.01375,0.03094,,,,,,,0.0081,0.00962,0.01261,0.0261,,,,,,,0.00951,0.01105,0.01463,0.03428,,,,,,,0.00773,0.009,0.01158,0.02561,,,,,,,0.01788,0.00871,0.00793,0.00269,,,,,,,0.02055,0.00886,0.00799,0.0027,,,,,,,0.02927,0.00919,0.00812,0.00275,,,,,,,0.02664,0.01537,0.00793,0.00269,,,,,,,0.02423,0.00916,0.00812,0.00273,,,,,,,0.02654,0.00905,0.00802,0.00269,,,,,,,0.02426,0.0124,0.00804,0.0027,,,,,,,0.02368,0.01407,0.0072,0.00268,,,,,,,0.01098,0.00507,0.0037,0.00246,,,,,,,0.38481,0.4233,0.5894,1.41928,,,,,,,0.35068,0.38456,0.54923,1.3524,,,,,,,0.40083,0.4117,0.59052,1.54142,,,,,,,0.43041,0.50916,0.67405,1.64865,,,,,,,0.23917,0.30446,0.47679,1.38813,,,,,,,0.27972,0.3348,0.53473,1.45687,,,,,,,0.23017,0.31302,0.46391,1.34765,,,,,,,0.32144,0.39386,0.5478,1.47528,,,,,,,0.19301,0.25887,0.40277,1.19619,,,,,, +Mini car,E15,2010,,0.0012,0.00195,0.0032,0.00811,,,,,,,0.00106,0.00171,0.00284,0.00709,,,,,,,0.00092,0.00149,0.00306,0.00777,,,,,,,0.00127,0.00208,0.00349,0.00892,,,,,,,0.00076,0.00121,0.00189,0.00435,,,,,,,0.00077,0.00123,0.00212,0.00503,,,,,,,0.00069,0.0011,0.0017,0.00394,,,,,,,0.00082,0.00131,0.00227,0.00552,,,,,,,0.00057,0.0009,0.00156,0.00365,,,,,,,0.01447,0.01215,0.01036,0.01408,,,,,,,0.01255,0.01108,0.00952,0.01301,,,,,,,0.01321,0.01228,0.01076,0.01508,,,,,,,0.01707,0.01446,0.01237,0.01696,,,,,,,0.00888,0.00966,0.00842,0.01167,,,,,,,0.00968,0.01048,0.0091,0.01279,,,,,,,0.00924,0.00952,0.0083,0.01136,,,,,,,0.0113,0.0101,0.00912,0.01256,,,,,,,0.00714,0.00719,0.00765,0.01012,,,,,,,2.42027,3.71737,4.97826,6.86119,,,,,,,2.29124,3.68869,4.91155,6.72949,,,,,,,2.7153,4.43643,5.63382,7.92832,,,,,,,3.02006,4.50171,6.18223,8.64025,,,,,,,2.02191,3.72081,5.136,7.01864,,,,,,,2.2252,4.09775,5.38621,7.45751,,,,,,,2.21663,3.76745,5.23763,7.1217,,,,,,,2.56824,3.94275,5.38457,7.38735,,,,,,,1.95449,3.39834,4.69674,6.32184,,,,,,,378.31447,381.03636,385.66488,394.79629,,,,,,,381.89848,384.40947,388.70422,397.26495,,,,,,,388.11129,390.73102,395.20838,404.12884,,,,,,,378.54672,381.29637,386.00201,395.29109,,,,,,,389.67976,391.41272,394.46659,400.88563,,,,,,,383.02943,386.45795,388.56578,395.77439,,,,,,,385.97086,387.63077,390.57628,396.79116,,,,,,,385.95346,388.02362,391.61544,398.96077,,,,,,,378.83874,380.66413,383.81442,390.31801,,,,,,,0.00688,0.00778,0.0093,0.01417,,,,,,,0.00689,0.0078,0.00931,0.01419,,,,,,,0.0069,0.00781,0.00931,0.01417,,,,,,,0.00697,0.0079,0.00945,0.01441,,,,,,,0.00692,0.00783,0.00934,0.01422,,,,,,,0.00699,0.00791,0.00945,0.01441,,,,,,,0.00691,0.00782,0.00935,0.01424,,,,,,,0.00693,0.00784,0.00936,0.01426,,,,,,,0.00682,0.00771,0.00921,0.01402,,,,,,,0.01689,0.01977,0.02529,0.03052,,,,,,,0.01693,0.01981,0.02535,0.03059,,,,,,,0.01698,0.01986,0.02542,0.03067,,,,,,,0.01678,0.01963,0.02511,0.03031,,,,,,,0.01695,0.01983,0.02538,0.03062,,,,,,,0.01684,0.0197,0.0252,0.03041,,,,,,,0.01689,0.01976,0.02528,0.03051,,,,,,,0.01695,0.01984,0.02538,0.03063,,,,,,,0.01699,0.01988,0.02543,0.03069,,,,,,,0.11676,0.19201,0.20321,0.46294,,,,,,,0.11142,0.19137,0.20106,0.45944,,,,,,,0.11635,0.21027,0.21753,0.51963,,,,,,,0.13452,0.22509,0.23445,0.5597,,,,,,,0.1047,0.19822,0.20369,0.50343,,,,,,,0.11076,0.20876,0.21438,0.52516,,,,,,,0.11298,0.19788,0.20439,0.4961,,,,,,,0.12612,0.20641,0.22199,0.52609,,,,,,,0.08473,0.14966,0.19659,0.45327,,,,,,,0.00216,0.00336,0.00522,0.01305,,,,,,,0.00203,0.00313,0.0049,0.01187,,,,,,,0.00186,0.00285,0.0051,0.01267,,,,,,,0.00221,0.00344,0.00548,0.01384,,,,,,,0.00179,0.00271,0.00403,0.00854,,,,,,,0.00175,0.00265,0.0042,0.00929,,,,,,,0.00168,0.00254,0.00377,0.00798,,,,,,,0.00177,0.0027,0.00433,0.00993,,,,,,,0.00148,0.00223,0.00357,0.00762,,,,,,,0.03316,0.03588,0.04016,0.05793,,,,,,,0.03378,0.03625,0.04025,0.05596,,,,,,,0.03588,0.03809,0.04331,0.06046,,,,,,,0.03172,0.03452,0.03924,0.05837,,,,,,,0.03515,0.03713,0.03996,0.04986,,,,,,,0.03254,0.03461,0.03792,0.04921,,,,,,,0.03232,0.03414,0.03677,0.04596,,,,,,,0.03392,0.03592,0.03956,0.05202,,,,,,,0.03276,0.03433,0.0372,0.04598,,,,,,,0.00799,0.01039,0.01418,0.0299,,,,,,,0.0078,0.00999,0.01353,0.02742,,,,,,,0.00776,0.00972,0.01433,0.0295,,,,,,,0.00794,0.01042,0.01459,0.03152,,,,,,,0.00746,0.00921,0.01172,0.02048,,,,,,,0.00709,0.00882,0.01184,0.02183,,,,,,,0.00693,0.00854,0.01086,0.01899,,,,,,,0.00733,0.00911,0.01232,0.02334,,,,,,,0.00663,0.00802,0.01056,0.01833,,,,,,,0.00855,0.00775,0.00261,0.00268,,,,,,,0.00871,0.00782,0.00264,0.00269,,,,,,,0.00903,0.00795,0.00268,0.00274,,,,,,,0.01509,0.00776,0.00262,0.00268,,,,,,,0.00901,0.00796,0.00267,0.00272,,,,,,,0.0089,0.00786,0.00263,0.00268,,,,,,,0.01221,0.00788,0.00265,0.00269,,,,,,,0.01384,0.00705,0.00261,0.00266,,,,,,,0.00498,0.00362,0.0024,0.00245,,,,,,,0.18422,0.25677,0.37707,0.91172,,,,,,,0.16324,0.23458,0.35204,0.87297,,,,,,,0.1729,0.25675,0.38993,0.96899,,,,,,,0.217,0.30101,0.44142,1.05096,,,,,,,0.12597,0.20948,0.33708,0.87854,,,,,,,0.13398,0.23039,0.35215,0.91497,,,,,,,0.12837,0.20468,0.32982,0.85637,,,,,,,0.16015,0.2357,0.37404,0.94232,,,,,,,0.11219,0.17892,0.31274,0.79823,,,,, +Mini car,E15,2015,,,0.00099,0.00155,0.00265,0.00554,,,,,,,0.0009,0.00142,0.00242,0.00497,,,,,,,0.00079,0.0015,0.00256,0.00532,,,,,,,0.00103,0.00166,0.00283,0.00598,,,,,,,0.0007,0.00105,0.00175,0.0034,,,,,,,0.0007,0.00115,0.00193,0.0038,,,,,,,0.00064,0.00096,0.0016,0.00307,,,,,,,0.00072,0.00119,0.002,0.00401,,,,,,,0.00053,0.00089,0.00147,0.00281,,,,,,,0.01117,0.00842,0.00853,0.01052,,,,,,,0.01026,0.00784,0.00809,0.00993,,,,,,,0.01038,0.00875,0.00907,0.01124,,,,,,,0.01194,0.00987,0.01019,0.01264,,,,,,,0.00793,0.00705,0.00779,0.00944,,,,,,,0.00857,0.00759,0.0083,0.01014,,,,,,,0.00789,0.00696,0.00773,0.00934,,,,,,,0.00867,0.00759,0.0081,0.0099,,,,,,,0.0063,0.0065,0.00708,0.00848,,,,,,,1.804,3.20148,4.34362,5.50212,,,,,,,1.79132,3.1938,4.37315,5.50632,,,,,,,2.00869,3.56752,5.00436,6.36528,,,,,,,2.02534,3.87885,5.45359,6.92326,,,,,,,1.67314,3.40503,4.85328,6.03762,,,,,,,1.82634,3.51951,5.02709,6.30418,,,,,,,1.71534,3.48836,4.96074,6.17056,,,,,,,1.82008,3.53642,4.94764,6.20982,,,,,,,1.60911,3.18281,4.41711,5.50043,,,,,,,338.80339,341.30043,343.85056,354.80234,,,,,,,341.93464,344.20868,346.45659,356.97999,,,,,,,347.52458,349.90756,352.29061,363.14818,,,,,,,339.04625,341.58311,344.20128,355.27976,,,,,,,348.62633,350.07938,351.23012,360.09517,,,,,,,344.04239,344.55172,346.12705,355.57142,,,,,,,345.29903,346.68302,347.75623,356.43062,,,,,,,345.41102,347.22009,348.84856,358.42916,,,,,,,338.93875,340.48354,341.7538,350.60517,,,,,,,0.00442,0.00499,0.00575,0.00807,,,,,,,0.00445,0.00501,0.00577,0.00809,,,,,,,0.00449,0.00505,0.00581,0.00811,,,,,,,0.00445,0.00503,0.00581,0.00818,,,,,,,0.0045,0.00506,0.00582,0.00812,,,,,,,0.0045,0.00507,0.00584,0.0082,,,,,,,0.00445,0.00502,0.00578,0.00811,,,,,,,0.00448,0.00505,0.00581,0.00813,,,,,,,0.00441,0.00497,0.00572,0.008,,,,,,,0.01689,0.01959,0.02529,0.02573,,,,,,,0.01693,0.01963,0.02535,0.02579,,,,,,,0.01698,0.01969,0.02542,0.02586,,,,,,,0.01678,0.01945,0.02511,0.02555,,,,,,,0.01695,0.01966,0.02538,0.02582,,,,,,,0.01684,0.01952,0.0252,0.02564,,,,,,,0.01689,0.01958,0.02528,0.02572,,,,,,,0.01695,0.01966,0.02538,0.02582,,,,,,,0.01699,0.0197,0.02543,0.02588,,,,,,,0.09082,0.11896,0.17492,0.25037,,,,,,,0.08987,0.11691,0.17262,0.24769,,,,,,,0.09054,0.12679,0.1862,0.2717,,,,,,,0.0957,0.13708,0.20138,0.2946,,,,,,,0.08022,0.11522,0.17258,0.25515,,,,,,,0.08595,0.12245,0.18255,0.26917,,,,,,,0.08166,0.11567,0.17357,0.25509,,,,,,,0.08822,0.12782,0.18932,0.27568,,,,,,,0.06505,0.11227,0.16707,0.24159,,,,,,,0.00194,0.00291,0.0047,0.00894,,,,,,,0.00186,0.0028,0.00449,0.0084,,,,,,,0.0017,0.00287,0.00462,0.00874,,,,,,,0.00196,0.00299,0.00485,0.00933,,,,,,,0.0017,0.00247,0.0039,0.00687,,,,,,,0.00165,0.00253,0.00402,0.00721,,,,,,,0.00161,0.00233,0.00367,0.00643,,,,,,,0.00165,0.00256,0.00408,0.00742,,,,,,,0.00142,0.00221,0.00348,0.00608,,,,,,,0.03259,0.03473,0.03876,0.04859,,,,,,,0.03334,0.0354,0.03919,0.04815,,,,,,,0.03549,0.0381,0.04204,0.05155,,,,,,,0.03105,0.03335,0.03757,0.04805,,,,,,,0.03495,0.03655,0.03962,0.04617,,,,,,,0.03243,0.03418,0.03742,0.04455,,,,,,,0.03214,0.03364,0.0365,0.04253,,,,,,,0.03361,0.03557,0.03889,0.04638,,,,,,,0.03262,0.03428,0.03697,0.04261,,,,,,,0.00749,0.00938,0.01295,0.02164,,,,,,,0.00741,0.00923,0.01258,0.02051,,,,,,,0.00741,0.00972,0.01321,0.02162,,,,,,,0.00734,0.00938,0.01312,0.02239,,,,,,,0.00728,0.00869,0.01141,0.0172,,,,,,,0.00689,0.00854,0.0114,0.01771,,,,,,,0.00677,0.00809,0.01062,0.01595,,,,,,,0.00706,0.00879,0.01173,0.01835,,,,,,,0.0065,0.00797,0.01035,0.01534,,,,,,,0.00689,0.00231,0.00233,0.00241,,,,,,,0.00695,0.00233,0.00235,0.00242,,,,,,,0.00707,0.00237,0.00239,0.00246,,,,,,,0.0069,0.00232,0.00233,0.00241,,,,,,,0.00709,0.00237,0.00238,0.00244,,,,,,,0.007,0.00234,0.00235,0.00241,,,,,,,0.00702,0.00235,0.00236,0.00242,,,,,,,0.00628,0.00232,0.00233,0.00239,,,,,,,0.00323,0.00213,0.00214,0.0022,,,,,,,0.13792,0.19546,0.31648,0.62368,,,,,,,0.12835,0.18451,0.30427,0.60619,,,,,,,0.13189,0.20166,0.33345,0.657,,,,,,,0.15025,0.22558,0.36851,0.70941,,,,,,,0.10878,0.17758,0.31365,0.63234,,,,,,,0.11921,0.18508,0.32361,0.64755,,,,,,,0.10829,0.17485,0.30861,0.6202,,,,,,,0.12472,0.19777,0.33721,0.66783,,,,,,,0.09732,0.16568,0.2921,0.59213,,,, +Mini car,E15,2020,,,,0.00085,0.00129,0.00198,0.00397,,,,,,,0.00079,0.00119,0.00181,0.0036,,,,,,,0.00083,0.00125,0.00191,0.00382,,,,,,,0.00091,0.00138,0.00211,0.00426,,,,,,,0.0006,0.00089,0.00133,0.00254,,,,,,,0.00065,0.00097,0.00145,0.00281,,,,,,,0.00055,0.00082,0.00121,0.0023,,,,,,,0.00067,0.001,0.00151,0.00294,,,,,,,0.00051,0.00075,0.00111,0.0021,,,,,,,0.00835,0.00685,0.00638,0.0078,,,,,,,0.00751,0.00629,0.00594,0.00728,,,,,,,0.0079,0.00702,0.00665,0.00827,,,,,,,0.009,0.00797,0.00753,0.00934,,,,,,,0.00523,0.00528,0.00529,0.00665,,,,,,,0.00583,0.00579,0.00574,0.00723,,,,,,,0.00513,0.0052,0.00523,0.00657,,,,,,,0.00633,0.00587,0.00569,0.00711,,,,,,,0.00505,0.00483,0.00478,0.00593,,,,,,,1.47507,2.18535,2.72235,3.61207,,,,,,,1.43521,2.15191,2.69644,3.58142,,,,,,,1.51908,2.40483,3.07785,4.15643,,,,,,,1.66567,2.63842,3.39252,4.55715,,,,,,,1.31593,2.20588,2.85206,3.84211,,,,,,,1.37913,2.30482,2.99108,4.04861,,,,,,,1.35776,2.26451,2.92528,3.93788,,,,,,,1.45666,2.33428,2.97559,3.99875,,,,,,,1.29202,2.07013,2.61462,3.49828,,,,,,,271.96044,273.86134,275.68014,290.8604,,,,,,,274.30751,276.02333,277.58098,292.44204,,,,,,,278.84698,280.65015,282.31755,297.56201,,,,,,,272.21821,274.15305,276.03176,291.33138,,,,,,,279.08912,280.12761,280.74049,294.27474,,,,,,,274.65408,275.949,276.93179,290.87296,,,,,,,276.40167,277.38592,277.93652,291.25227,,,,,,,276.7667,278.09928,279.12396,293.2253,,,,,,,271.37236,272.48826,273.21136,286.56473,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06444,0.09931,0.13295,0.17702,,,,,,,0.06284,0.09718,0.13049,0.17399,,,,,,,0.06361,0.10491,0.14005,0.1894,,,,,,,0.06822,0.11405,0.15237,0.20667,,,,,,,0.05349,0.09328,0.12644,0.17286,,,,,,,0.0581,0.10014,0.13528,0.18458,,,,,,,0.05455,0.09407,0.1278,0.17385,,,,,,,0.06285,0.10498,0.14115,0.19054,,,,,,,0.05531,0.09153,0.12354,0.16573,,,,,,,0.0017,0.00244,0.00353,0.00644,,,,,,,0.00164,0.00236,0.00339,0.00611,,,,,,,0.00168,0.00241,0.00348,0.00632,,,,,,,0.00174,0.00251,0.00364,0.00669,,,,,,,0.00148,0.00209,0.00295,0.00514,,,,,,,0.0015,0.00214,0.00304,0.00535,,,,,,,0.0014,0.00197,0.00278,0.00482,,,,,,,0.00152,0.00216,0.00308,0.00546,,,,,,,0.00133,0.00188,0.00264,0.00455,,,,,,,0.03203,0.0337,0.03618,0.04292,,,,,,,0.03286,0.03444,0.03676,0.043,,,,,,,0.03546,0.0371,0.03951,0.04606,,,,,,,0.03053,0.03227,0.03487,0.04199,,,,,,,0.03446,0.03576,0.03762,0.04244,,,,,,,0.03199,0.03336,0.03534,0.0405,,,,,,,0.03169,0.0329,0.03464,0.03908,,,,,,,0.03332,0.03472,0.03675,0.04209,,,,,,,0.03243,0.03358,0.03521,0.03936,,,,,,,0.00699,0.00847,0.01066,0.01663,,,,,,,0.00698,0.00838,0.01043,0.01596,,,,,,,0.00739,0.00884,0.01097,0.01677,,,,,,,0.00689,0.00843,0.01072,0.01703,,,,,,,0.00684,0.008,0.00965,0.01391,,,,,,,0.0066,0.00781,0.00956,0.01413,,,,,,,0.00636,0.00744,0.00897,0.0129,,,,,,,0.0068,0.00804,0.00983,0.01456,,,,,,,0.00634,0.00736,0.0088,0.01247,,,,,,,0.00184,0.00186,0.00187,0.00197,,,,,,,0.00186,0.00187,0.00188,0.00198,,,,,,,0.00189,0.0019,0.00191,0.00202,,,,,,,0.00185,0.00186,0.00187,0.00198,,,,,,,0.00189,0.0019,0.0019,0.002,,,,,,,0.00186,0.00187,0.00188,0.00197,,,,,,,0.00187,0.00188,0.00188,0.00197,,,,,,,0.00185,0.00186,0.00186,0.00196,,,,,,,0.0017,0.00171,0.00171,0.0018,,,,,,,0.11583,0.15786,0.23734,0.48946,,,,,,,0.1066,0.14621,0.22358,0.47295,,,,,,,0.1125,0.16164,0.24776,0.5146,,,,,,,0.12639,0.18201,0.27561,0.55381,,,,,,,0.08558,0.13275,0.21839,0.48872,,,,,,,0.09137,0.141,0.22872,0.50185,,,,,,,0.08431,0.12893,0.21153,0.47553,,,,,,,0.10266,0.15251,0.24127,0.51803,,,,,,,0.08097,0.12282,0.20182,0.45788,,, +Mini car,E15,2025,,,,,0.00056,0.00082,0.00128,0.00264,,,,,,,0.00052,0.00076,0.00117,0.0024,,,,,,,0.00054,0.0008,0.00124,0.00255,,,,,,,0.00059,0.00088,0.00137,0.00283,,,,,,,0.00039,0.00057,0.00086,0.00171,,,,,,,0.00042,0.00062,0.00094,0.00189,,,,,,,0.00036,0.00052,0.00079,0.00155,,,,,,,0.00044,0.00064,0.00098,0.00197,,,,,,,0.00033,0.00048,0.00072,0.00142,,,,,,,0.00706,0.00538,0.00484,0.00594,,,,,,,0.00619,0.00479,0.00438,0.00541,,,,,,,0.0066,0.00535,0.0049,0.00614,,,,,,,0.00766,0.00618,0.00563,0.00702,,,,,,,0.00382,0.00353,0.00345,0.00446,,,,,,,0.00443,0.004,0.00385,0.00496,,,,,,,0.00371,0.00344,0.00338,0.00437,,,,,,,0.00497,0.0042,0.00395,0.00501,,,,,,,0.00363,0.00321,0.00311,0.00395,,,,,,,1.1023,1.58065,1.98689,2.60748,,,,,,,1.04651,1.52576,1.93267,2.54168,,,,,,,1.11624,1.70742,2.20479,2.9405,,,,,,,1.24014,1.89629,2.45592,3.25424,,,,,,,0.88394,1.46751,1.93128,2.58303,,,,,,,0.94772,1.55912,2.05435,2.7562,,,,,,,0.91247,1.50903,1.98411,2.65163,,,,,,,1.02156,1.60227,2.06989,2.75823,,,,,,,0.8745,1.38418,1.77703,2.36889,,,,,,,219.79517,221.43235,223.33795,236.97996,,,,,,,221.5603,223.04263,224.72229,238.06534,,,,,,,225.27095,226.82779,228.60892,242.30158,,,,,,,220.05545,221.72341,223.68594,237.44594,,,,,,,224.95881,225.87377,226.72836,238.83748,,,,,,,221.57259,222.70262,223.8785,236.37313,,,,,,,222.77487,223.64421,224.44286,236.3569,,,,,,,223.28628,224.44783,225.66151,238.29869,,,,,,,218.76573,219.74207,220.67897,232.6215,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04928,0.0717,0.09533,0.1294,,,,,,,0.04744,0.06939,0.09262,0.12609,,,,,,,0.04796,0.07417,0.09853,0.13626,,,,,,,0.05196,0.08132,0.10809,0.14963,,,,,,,0.03805,0.06291,0.08537,0.12001,,,,,,,0.04237,0.06889,0.09295,0.13006,,,,,,,0.03896,0.06378,0.0867,0.12112,,,,,,,0.04598,0.07259,0.0974,0.13488,,,,,,,0.03955,0.06234,0.08419,0.11607,,,,,,,0.0011,0.00156,0.0023,0.00432,,,,,,,0.00107,0.00151,0.00221,0.00411,,,,,,,0.00109,0.00154,0.00226,0.00424,,,,,,,0.00113,0.0016,0.00237,0.00448,,,,,,,0.00096,0.00134,0.00192,0.00347,,,,,,,0.00098,0.00137,0.00198,0.00361,,,,,,,0.00091,0.00126,0.00181,0.00325,,,,,,,0.00099,0.00139,0.00201,0.00368,,,,,,,0.00087,0.0012,0.00172,0.00308,,,,,,,0.03076,0.03178,0.03345,0.03812,,,,,,,0.03164,0.0326,0.03417,0.03851,,,,,,,0.03421,0.03521,0.03683,0.04138,,,,,,,0.02922,0.03028,0.03202,0.03693,,,,,,,0.03339,0.03419,0.03546,0.03885,,,,,,,0.0309,0.03173,0.03307,0.0367,,,,,,,0.03068,0.03143,0.0326,0.03573,,,,,,,0.03221,0.03307,0.03444,0.03818,,,,,,,0.03148,0.03219,0.03329,0.03624,,,,,,,0.00587,0.00677,0.00824,0.01238,,,,,,,0.0059,0.00676,0.00814,0.01199,,,,,,,0.00628,0.00716,0.0086,0.01263,,,,,,,0.00573,0.00667,0.00821,0.01255,,,,,,,0.0059,0.00661,0.00773,0.01073,,,,,,,0.00563,0.00637,0.00755,0.01077,,,,,,,0.00547,0.00613,0.00717,0.00994,,,,,,,0.00582,0.00658,0.00779,0.0111,,,,,,,0.0055,0.00612,0.0071,0.00971,,,,,,,0.00149,0.0015,0.00151,0.00161,,,,,,,0.0015,0.00151,0.00152,0.00161,,,,,,,0.00153,0.00154,0.00155,0.00164,,,,,,,0.00149,0.0015,0.00152,0.00161,,,,,,,0.00153,0.00153,0.00154,0.00162,,,,,,,0.0015,0.00151,0.00152,0.0016,,,,,,,0.00151,0.00152,0.00152,0.0016,,,,,,,0.00149,0.0015,0.00151,0.00159,,,,,,,0.00137,0.00138,0.00138,0.00146,,,,,,,0.09923,0.12657,0.1867,0.39882,,,,,,,0.08927,0.11393,0.17137,0.38007,,,,,,,0.09548,0.12762,0.19277,0.41681,,,,,,,0.10851,0.14549,0.21635,0.4488,,,,,,,0.06526,0.09375,0.15585,0.37948,,,,,,,0.07174,0.10246,0.16674,0.39325,,,,,,,0.0634,0.08905,0.1478,0.36426,,,,,,,0.08233,0.11324,0.1786,0.40741,,,,,,,0.06112,0.08577,0.14282,0.35549,, +Mini car,E15,2030,,,,,,0.00056,0.00082,0.00127,0.00231,,,,,,,0.00051,0.00076,0.00117,0.0021,,,,,,,0.00054,0.0008,0.00123,0.00222,,,,,,,0.00059,0.00087,0.00136,0.00247,,,,,,,0.00039,0.00057,0.00086,0.0015,,,,,,,0.00042,0.00062,0.00094,0.00166,,,,,,,0.00036,0.00052,0.00078,0.00136,,,,,,,0.00044,0.00064,0.00097,0.00172,,,,,,,0.00033,0.00048,0.00072,0.00124,,,,,,,0.00661,0.0049,0.0044,0.00522,,,,,,,0.00573,0.00431,0.00393,0.00468,,,,,,,0.00615,0.00481,0.0044,0.00528,,,,,,,0.00718,0.00559,0.00508,0.00609,,,,,,,0.00335,0.00297,0.00292,0.00357,,,,,,,0.00396,0.00342,0.00331,0.00404,,,,,,,0.00322,0.00288,0.00285,0.00348,,,,,,,0.0045,0.00366,0.00345,0.00417,,,,,,,0.00316,0.0027,0.00262,0.00317,,,,,,,1.00381,1.43027,1.80816,2.27607,,,,,,,0.9443,1.37045,1.7465,2.19802,,,,,,,1.01044,1.5343,1.99167,2.53146,,,,,,,1.12789,1.71093,2.2242,2.81775,,,,,,,0.7717,1.28537,1.70513,2.15886,,,,,,,0.83523,1.37452,1.82402,2.3185,,,,,,,0.7965,1.32221,1.75197,2.2182,,,,,,,0.90765,1.42121,1.84889,2.34032,,,,,,,0.76533,1.21498,1.57491,1.9863,,,,,,,202.37588,204.42168,207.58991,216.57033,,,,,,,203.95157,205.85813,208.81899,217.48026,,,,,,,207.38391,209.36859,212.45013,221.37827,,,,,,,202.63544,204.71083,207.93779,217.03032,,,,,,,206.9057,208.29309,210.47947,217.89649,,,,,,,203.86231,205.44171,207.91787,215.768,,,,,,,204.89027,206.23058,208.35024,215.62272,,,,,,,205.44263,207.055,209.57727,217.53119,,,,,,,201.21948,202.64792,204.87342,212.24055,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04353,0.0621,0.08371,0.11074,,,,,,,0.0416,0.05972,0.08091,0.10727,,,,,,,0.04197,0.06345,0.08568,0.11492,,,,,,,0.04568,0.06988,0.09432,0.12662,,,,,,,0.03219,0.05238,0.07272,0.09873,,,,,,,0.03637,0.05802,0.07988,0.10805,,,,,,,0.03305,0.05324,0.07398,0.1,,,,,,,0.03953,0.0613,0.08389,0.11251,,,,,,,0.03358,0.05222,0.07213,0.09629,,,,,,,0.0011,0.00156,0.00229,0.0038,,,,,,,0.00107,0.0015,0.0022,0.00362,,,,,,,0.00109,0.00154,0.00225,0.00373,,,,,,,0.00113,0.0016,0.00235,0.00394,,,,,,,0.00096,0.00134,0.00192,0.00307,,,,,,,0.00098,0.00137,0.00197,0.00319,,,,,,,0.00091,0.00126,0.0018,0.00288,,,,,,,0.00099,0.00138,0.002,0.00325,,,,,,,0.00087,0.0012,0.00172,0.00273,,,,,,,0.03076,0.03177,0.03342,0.03693,,,,,,,0.03163,0.03259,0.03414,0.03741,,,,,,,0.0342,0.0352,0.03681,0.04023,,,,,,,0.02921,0.03027,0.03199,0.03569,,,,,,,0.03339,0.03419,0.03544,0.03798,,,,,,,0.03089,0.03173,0.03305,0.03577,,,,,,,0.03068,0.03142,0.03258,0.03493,,,,,,,0.03221,0.03306,0.03442,0.03722,,,,,,,0.03148,0.03219,0.03329,0.03548,,,,,,,0.00586,0.00676,0.00822,0.01133,,,,,,,0.0059,0.00675,0.00812,0.01101,,,,,,,0.00628,0.00716,0.00858,0.0116,,,,,,,0.00572,0.00666,0.00818,0.01146,,,,,,,0.0059,0.00661,0.00771,0.00996,,,,,,,0.00563,0.00637,0.00754,0.00994,,,,,,,0.00547,0.00613,0.00715,0.00923,,,,,,,0.00582,0.00657,0.00778,0.01025,,,,,,,0.0055,0.00612,0.0071,0.00903,,,,,,,0.00137,0.00139,0.00141,0.00147,,,,,,,0.00138,0.0014,0.00142,0.00147,,,,,,,0.00141,0.00142,0.00144,0.0015,,,,,,,0.00137,0.00139,0.00141,0.00147,,,,,,,0.0014,0.00141,0.00143,0.00148,,,,,,,0.00138,0.00139,0.00141,0.00146,,,,,,,0.00139,0.0014,0.00141,0.00146,,,,,,,0.00137,0.00138,0.0014,0.00145,,,,,,,0.00126,0.00127,0.00128,0.00133,,,,,,,0.09467,0.11871,0.17606,0.36182,,,,,,,0.08464,0.10598,0.16057,0.34223,,,,,,,0.09086,0.119,0.18103,0.37621,,,,,,,0.10363,0.13612,0.20335,0.40596,,,,,,,0.06023,0.08454,0.1429,0.3352,,,,,,,0.06675,0.09318,0.15367,0.34886,,,,,,,0.05828,0.07981,0.13473,0.31962,,,,,,,0.07707,0.104,0.16543,0.36389,,,,,,,0.05608,0.07704,0.13077,0.31389, +Mini car,E15,2035,,,,,,,0.00055,0.00082,0.00128,0.00227,,,,,,,0.00051,0.00075,0.00117,0.00206,,,,,,,0.00054,0.00079,0.00124,0.00219,,,,,,,0.00059,0.00087,0.00136,0.00243,,,,,,,0.00039,0.00056,0.00086,0.00147,,,,,,,0.00042,0.00061,0.00094,0.00163,,,,,,,0.00036,0.00052,0.00078,0.00134,,,,,,,0.00043,0.00063,0.00098,0.00169,,,,,,,0.00033,0.00048,0.00072,0.00122,,,,,,,0.00659,0.0049,0.00439,0.0051,,,,,,,0.00571,0.00432,0.00393,0.00456,,,,,,,0.00613,0.00482,0.00439,0.00513,,,,,,,0.00715,0.0056,0.00508,0.00592,,,,,,,0.00334,0.00297,0.00292,0.00341,,,,,,,0.00395,0.00343,0.00331,0.00387,,,,,,,0.00321,0.00288,0.00285,0.00332,,,,,,,0.00448,0.00367,0.00345,0.00402,,,,,,,0.00315,0.0027,0.00262,0.00304,,,,,,,1.00229,1.42816,1.80906,2.22619,,,,,,,0.94308,1.3678,1.74777,2.14624,,,,,,,1.00906,1.53074,1.99351,2.46899,,,,,,,1.12607,1.70515,2.22735,2.75229,,,,,,,0.77132,1.28076,1.70773,2.09393,,,,,,,0.83464,1.36985,1.82663,2.25131,,,,,,,0.79607,1.31711,1.75484,2.15207,,,,,,,0.90685,1.41794,1.85057,2.27597,,,,,,,0.76507,1.21407,1.57522,1.92592,,,,,,,202.31732,204.41513,207.58516,213.42055,,,,,,,203.89656,205.8518,208.81424,214.30283,,,,,,,207.32669,209.36189,212.44549,218.14861,,,,,,,202.57521,204.70413,207.93289,213.87998,,,,,,,206.8634,208.28824,210.47564,214.66073,,,,,,,203.81533,205.43641,207.91369,212.58557,,,,,,,204.84903,206.2258,208.34664,212.41867,,,,,,,205.39488,207.04945,209.57317,214.32364,,,,,,,201.1778,202.64334,204.86989,209.09153,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.0046,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04342,0.06196,0.08378,0.10784,,,,,,,0.0415,0.05959,0.08098,0.10432,,,,,,,0.04187,0.0633,0.08576,0.11148,,,,,,,0.04557,0.06969,0.09443,0.12291,,,,,,,0.03213,0.05228,0.07278,0.09523,,,,,,,0.03629,0.0579,0.07995,0.10444,,,,,,,0.03298,0.05312,0.07405,0.09657,,,,,,,0.03945,0.06122,0.08394,0.10885,,,,,,,0.03353,0.0522,0.07213,0.09306,,,,,,,0.0011,0.00155,0.00229,0.00374,,,,,,,0.00107,0.0015,0.0022,0.00356,,,,,,,0.00109,0.00153,0.00226,0.00367,,,,,,,0.00113,0.00159,0.00236,0.00388,,,,,,,0.00096,0.00133,0.00192,0.00302,,,,,,,0.00098,0.00136,0.00198,0.00314,,,,,,,0.00091,0.00126,0.00181,0.00283,,,,,,,0.00099,0.00138,0.00201,0.0032,,,,,,,0.00087,0.0012,0.00172,0.00268,,,,,,,0.03075,0.03176,0.03343,0.03679,,,,,,,0.03163,0.03258,0.03415,0.03728,,,,,,,0.0342,0.03519,0.03682,0.04009,,,,,,,0.02921,0.03025,0.03201,0.03555,,,,,,,0.03339,0.03418,0.03545,0.03787,,,,,,,0.03089,0.03172,0.03306,0.03566,,,,,,,0.03067,0.03141,0.03259,0.03484,,,,,,,0.03221,0.03305,0.03443,0.03711,,,,,,,0.03148,0.03218,0.03329,0.03538,,,,,,,0.00586,0.00675,0.00823,0.0112,,,,,,,0.0059,0.00674,0.00813,0.01089,,,,,,,0.00627,0.00714,0.00859,0.01148,,,,,,,0.00572,0.00664,0.00819,0.01133,,,,,,,0.0059,0.0066,0.00772,0.00987,,,,,,,0.00563,0.00636,0.00754,0.00985,,,,,,,0.00547,0.00612,0.00716,0.00915,,,,,,,0.00582,0.00657,0.00778,0.01015,,,,,,,0.0055,0.00612,0.0071,0.00895,,,,,,,0.00137,0.00139,0.00141,0.00145,,,,,,,0.00138,0.0014,0.00142,0.00145,,,,,,,0.00141,0.00142,0.00144,0.00148,,,,,,,0.00137,0.00139,0.00141,0.00145,,,,,,,0.0014,0.00141,0.00143,0.00146,,,,,,,0.00138,0.00139,0.00141,0.00144,,,,,,,0.00139,0.0014,0.00141,0.00144,,,,,,,0.00137,0.00138,0.0014,0.00143,,,,,,,0.00126,0.00127,0.00128,0.00131,,,,,,,0.09439,0.11877,0.17599,0.3576,,,,,,,0.08438,0.10602,0.16051,0.33781,,,,,,,0.09061,0.11908,0.18093,0.37136,,,,,,,0.10331,0.13605,0.20337,0.40089,,,,,,,0.06005,0.0844,0.14298,0.32985,,,,,,,0.06656,0.09307,0.15372,0.34346,,,,,,,0.0581,0.07963,0.13483,0.31415,,,,,,,0.07677,0.10353,0.16589,0.35865,,,,,,,0.05593,0.07701,0.13077,0.30885 +Mini car,E15,2040,,,,,,,,0.00055,0.00082,0.00128,,,,,,,,0.00051,0.00075,0.00117,,,,,,,,0.00054,0.00079,0.00124,,,,,,,,0.00058,0.00087,0.00137,,,,,,,,0.00039,0.00056,0.00086,,,,,,,,0.00042,0.00061,0.00094,,,,,,,,0.00036,0.00052,0.00079,,,,,,,,0.00043,0.00063,0.00098,,,,,,,,0.00033,0.00048,0.00072,,,,,,,,0.0066,0.0049,0.00439,,,,,,,,0.00572,0.00431,0.00392,,,,,,,,0.00615,0.00481,0.00439,,,,,,,,0.00717,0.00559,0.00507,,,,,,,,0.00334,0.00297,0.00292,,,,,,,,0.00395,0.00342,0.00331,,,,,,,,0.00322,0.00288,0.00285,,,,,,,,0.00449,0.00366,0.00344,,,,,,,,0.00315,0.0027,0.00262,,,,,,,,1.0006,1.42851,1.81031,,,,,,,,0.94103,1.36847,1.74944,,,,,,,,1.00674,1.53175,1.99588,,,,,,,,1.12242,1.70709,2.23129,,,,,,,,0.76822,1.28251,1.71092,,,,,,,,0.83156,1.37156,1.82987,,,,,,,,0.79266,1.31907,1.75838,,,,,,,,0.90443,1.41894,1.85271,,,,,,,,0.76404,1.21409,1.57572,,,,,,,,202.30798,204.40452,207.5837,,,,,,,,203.88766,205.84202,208.813,,,,,,,,207.3175,209.35175,212.4441,,,,,,,,202.56574,204.69344,207.93146,,,,,,,,206.85685,208.28084,210.47473,,,,,,,,203.80768,205.42791,207.91252,,,,,,,,204.84263,206.21851,208.34561,,,,,,,,205.38715,207.0409,209.57207,,,,,,,,201.17121,202.63584,204.86895,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04329,0.06199,0.08387,,,,,,,,0.04138,0.05962,0.08107,,,,,,,,0.04173,0.06333,0.08586,,,,,,,,0.04539,0.06974,0.09457,,,,,,,,0.03204,0.0523,0.07285,,,,,,,,0.03619,0.05793,0.08003,,,,,,,,0.03287,0.05315,0.07415,,,,,,,,0.03936,0.06123,0.084,,,,,,,,0.03349,0.05219,0.07214,,,,,,,,0.0011,0.00156,0.0023,,,,,,,,0.00106,0.0015,0.0022,,,,,,,,0.00108,0.00154,0.00226,,,,,,,,0.00112,0.0016,0.00237,,,,,,,,0.00096,0.00133,0.00192,,,,,,,,0.00097,0.00136,0.00198,,,,,,,,0.0009,0.00126,0.00181,,,,,,,,0.00098,0.00138,0.00201,,,,,,,,0.00087,0.0012,0.00172,,,,,,,,0.03074,0.03176,0.03344,,,,,,,,0.03162,0.03259,0.03416,,,,,,,,0.03419,0.03519,0.03683,,,,,,,,0.02919,0.03026,0.03202,,,,,,,,0.03338,0.03418,0.03545,,,,,,,,0.03088,0.03172,0.03307,,,,,,,,0.03066,0.03141,0.0326,,,,,,,,0.0322,0.03306,0.03444,,,,,,,,0.03148,0.03218,0.03329,,,,,,,,0.00585,0.00676,0.00824,,,,,,,,0.00589,0.00674,0.00814,,,,,,,,0.00626,0.00715,0.0086,,,,,,,,0.00571,0.00665,0.00821,,,,,,,,0.00589,0.0066,0.00773,,,,,,,,0.00562,0.00636,0.00755,,,,,,,,0.00546,0.00612,0.00717,,,,,,,,0.00581,0.00657,0.00779,,,,,,,,0.0055,0.00612,0.0071,,,,,,,,0.00137,0.00139,0.00141,,,,,,,,0.00138,0.0014,0.00142,,,,,,,,0.00141,0.00142,0.00144,,,,,,,,0.00137,0.00139,0.00141,,,,,,,,0.0014,0.00141,0.00143,,,,,,,,0.00138,0.00139,0.00141,,,,,,,,0.00139,0.0014,0.00141,,,,,,,,0.00137,0.00138,0.0014,,,,,,,,0.00126,0.00127,0.00128,,,,,,,,0.09442,0.11866,0.17594,,,,,,,,0.0844,0.10593,0.16047,,,,,,,,0.09066,0.11896,0.1809,,,,,,,,0.10327,0.13599,0.20346,,,,,,,,0.05995,0.08442,0.14313,,,,,,,,0.06649,0.09307,0.15384,,,,,,,,0.05798,0.07966,0.135,,,,,,,,0.07641,0.10384,0.16607,,,,,,,,0.05589,0.07698,0.1308 +Mini car,E15,2045,,,,,,,,,0.00055,0.00082,,,,,,,,,0.00051,0.00076,,,,,,,,,0.00054,0.0008,,,,,,,,,0.00058,0.00087,,,,,,,,,0.00039,0.00057,,,,,,,,,0.00042,0.00061,,,,,,,,,0.00036,0.00052,,,,,,,,,0.00043,0.00064,,,,,,,,,0.00033,0.00048,,,,,,,,,0.00659,0.00489,,,,,,,,,0.00571,0.00431,,,,,,,,,0.00613,0.00481,,,,,,,,,0.00716,0.00558,,,,,,,,,0.00334,0.00297,,,,,,,,,0.00395,0.00342,,,,,,,,,0.00321,0.00288,,,,,,,,,0.00448,0.00366,,,,,,,,,0.00315,0.00269,,,,,,,,,1.00076,1.42949,,,,,,,,,0.94141,1.36976,,,,,,,,,1.00717,1.5335,,,,,,,,,1.12337,1.71,,,,,,,,,0.76923,1.2849,,,,,,,,,0.8325,1.37396,,,,,,,,,0.79381,1.32172,,,,,,,,,0.90501,1.42057,,,,,,,,,0.7641,1.21447,,,,,,,,,202.29998,204.40452,,,,,,,,,203.88008,205.84178,,,,,,,,,207.30962,209.35166,,,,,,,,,202.55717,204.69292,,,,,,,,,206.85113,208.28078,,,,,,,,,203.80114,205.42783,,,,,,,,,204.83696,206.21826,,,,,,,,,205.38063,207.04086,,,,,,,,,201.16556,202.63587,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04332,0.06206,,,,,,,,,0.0414,0.05969,,,,,,,,,0.04176,0.06341,,,,,,,,,0.04544,0.06984,,,,,,,,,0.03206,0.05235,,,,,,,,,0.03621,0.05799,,,,,,,,,0.0329,0.05322,,,,,,,,,0.03938,0.06127,,,,,,,,,0.03349,0.0522,,,,,,,,,0.0011,0.00156,,,,,,,,,0.00106,0.0015,,,,,,,,,0.00109,0.00154,,,,,,,,,0.00112,0.0016,,,,,,,,,0.00096,0.00133,,,,,,,,,0.00097,0.00137,,,,,,,,,0.00091,0.00126,,,,,,,,,0.00099,0.00138,,,,,,,,,0.00087,0.0012,,,,,,,,,0.03074,0.03177,,,,,,,,,0.03162,0.03259,,,,,,,,,0.03419,0.0352,,,,,,,,,0.0292,0.03027,,,,,,,,,0.03338,0.03419,,,,,,,,,0.03089,0.03173,,,,,,,,,0.03067,0.03142,,,,,,,,,0.0322,0.03306,,,,,,,,,0.03148,0.03219,,,,,,,,,0.00585,0.00676,,,,,,,,,0.00589,0.00675,,,,,,,,,0.00627,0.00716,,,,,,,,,0.00571,0.00666,,,,,,,,,0.00589,0.0066,,,,,,,,,0.00562,0.00637,,,,,,,,,0.00546,0.00613,,,,,,,,,0.00581,0.00657,,,,,,,,,0.0055,0.00612,,,,,,,,,0.00137,0.00139,,,,,,,,,0.00138,0.0014,,,,,,,,,0.00141,0.00142,,,,,,,,,0.00137,0.00139,,,,,,,,,0.0014,0.00141,,,,,,,,,0.00138,0.00139,,,,,,,,,0.00139,0.0014,,,,,,,,,0.00137,0.00138,,,,,,,,,0.00126,0.00127,,,,,,,,,0.09433,0.11861,,,,,,,,,0.08433,0.10589,,,,,,,,,0.09057,0.11891,,,,,,,,,0.10321,0.13601,,,,,,,,,0.05996,0.08449,,,,,,,,,0.06647,0.09312,,,,,,,,,0.058,0.07976,,,,,,,,,0.07663,0.10394,,,,,,,,,0.05587,0.07699 +Mini car,E15,2050,,,,,,,,,,0.00055,,,,,,,,,,0.00051,,,,,,,,,,0.00054,,,,,,,,,,0.00059,,,,,,,,,,0.00039,,,,,,,,,,0.00042,,,,,,,,,,0.00036,,,,,,,,,,0.00043,,,,,,,,,,0.00033,,,,,,,,,,0.00658,,,,,,,,,,0.0057,,,,,,,,,,0.00612,,,,,,,,,,0.00715,,,,,,,,,,0.00333,,,,,,,,,,0.00394,,,,,,,,,,0.00321,,,,,,,,,,0.00448,,,,,,,,,,0.00315,,,,,,,,,,1.00129,,,,,,,,,,0.94214,,,,,,,,,,1.00801,,,,,,,,,,1.12488,,,,,,,,,,0.77057,,,,,,,,,,0.8338,,,,,,,,,,0.79531,,,,,,,,,,0.90594,,,,,,,,,,0.76433,,,,,,,,,,202.30003,,,,,,,,,,203.88013,,,,,,,,,,207.30957,,,,,,,,,,202.55706,,,,,,,,,,206.85117,,,,,,,,,,203.80131,,,,,,,,,,204.83679,,,,,,,,,,205.38064,,,,,,,,,,201.1655,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04337,,,,,,,,,,0.04145,,,,,,,,,,0.04182,,,,,,,,,,0.04552,,,,,,,,,,0.0321,,,,,,,,,,0.03626,,,,,,,,,,0.03295,,,,,,,,,,0.03941,,,,,,,,,,0.03349,,,,,,,,,,0.0011,,,,,,,,,,0.00107,,,,,,,,,,0.00109,,,,,,,,,,0.00113,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00091,,,,,,,,,,0.00099,,,,,,,,,,0.00087,,,,,,,,,,0.03075,,,,,,,,,,0.03163,,,,,,,,,,0.0342,,,,,,,,,,0.02921,,,,,,,,,,0.03339,,,,,,,,,,0.03089,,,,,,,,,,0.03067,,,,,,,,,,0.0322,,,,,,,,,,0.03148,,,,,,,,,,0.00586,,,,,,,,,,0.0059,,,,,,,,,,0.00627,,,,,,,,,,0.00572,,,,,,,,,,0.0059,,,,,,,,,,0.00563,,,,,,,,,,0.00547,,,,,,,,,,0.00582,,,,,,,,,,0.0055,,,,,,,,,,0.00137,,,,,,,,,,0.00138,,,,,,,,,,0.00141,,,,,,,,,,0.00137,,,,,,,,,,0.0014,,,,,,,,,,0.00138,,,,,,,,,,0.00139,,,,,,,,,,0.00137,,,,,,,,,,0.00126,,,,,,,,,,0.09429,,,,,,,,,,0.08429,,,,,,,,,,0.09051,,,,,,,,,,0.10319,,,,,,,,,,0.05999,,,,,,,,,,0.06649,,,,,,,,,,0.05805,,,,,,,,,,0.0767,,,,,,,,,,0.05587 +Mini car,E85,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,E85,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,E85,2000,,0.00646,0.01096,,,,,,,,,0.00556,0.0094,,,,,,,,,0.00624,0.01058,,,,,,,,,0.00706,0.01205,,,,,,,,,0.00309,0.00518,,,,,,,,,0.00371,0.00651,,,,,,,,,0.00297,0.00495,,,,,,,,,0.00428,0.00722,,,,,,,,,0.00294,0.00489,,,,,,,,,0.1043,0.10801,,,,,,,,,0.09912,0.10538,,,,,,,,,0.11745,0.12381,,,,,,,,,0.12435,0.13076,,,,,,,,,0.0979,0.10436,,,,,,,,,0.10561,0.11273,,,,,,,,,0.09825,0.10152,,,,,,,,,0.10164,0.10689,,,,,,,,,0.08449,0.08929,,,,,,,,,10.46323,12.29875,,,,,,,,,10.1003,12.09664,,,,,,,,,11.54872,13.76171,,,,,,,,,12.5148,14.86778,,,,,,,,,10.18655,12.11852,,,,,,,,,10.85035,13.04615,,,,,,,,,10.56603,12.22233,,,,,,,,,10.43698,12.33731,,,,,,,,,8.5791,10.15353,,,,,,,,,376.02843,381.76732,,,,,,,,,379.21137,384.55522,,,,,,,,,385.75012,391.31159,,,,,,,,,376.22326,382.03424,,,,,,,,,385.51251,389.38635,,,,,,,,,379.35954,385.24023,,,,,,,,,381.50323,385.23906,,,,,,,,,382.39194,386.90262,,,,,,,,,374.84749,378.85541,,,,,,,,,0.02345,0.02778,,,,,,,,,0.02352,0.02785,,,,,,,,,0.02363,0.02792,,,,,,,,,0.02372,0.02815,,,,,,,,,0.02367,0.02798,,,,,,,,,0.02383,0.02823,,,,,,,,,0.02358,0.02792,,,,,,,,,0.02367,0.02801,,,,,,,,,0.02329,0.02756,,,,,,,,,0.07773,0.07773,,,,,,,,,0.07791,0.07791,,,,,,,,,0.07812,0.07812,,,,,,,,,0.07719,0.07719,,,,,,,,,0.078,0.078,,,,,,,,,0.07746,0.07747,,,,,,,,,0.07771,0.07771,,,,,,,,,0.07801,0.07801,,,,,,,,,0.07818,0.07818,,,,,,,,,1.34699,1.60074,,,,,,,,,1.33398,1.61983,,,,,,,,,1.48783,1.79273,,,,,,,,,1.55348,1.86975,,,,,,,,,1.45143,1.76315,,,,,,,,,1.50273,1.81274,,,,,,,,,1.47847,1.75034,,,,,,,,,1.53645,1.83287,,,,,,,,,1.36428,1.63897,,,,,,,,,0.01343,0.02127,,,,,,,,,0.0118,0.01863,,,,,,,,,0.0129,0.02042,,,,,,,,,0.01405,0.02235,,,,,,,,,0.00709,0.01108,,,,,,,,,0.00815,0.01328,,,,,,,,,0.00693,0.01081,,,,,,,,,0.00934,0.01469,,,,,,,,,0.00706,0.01099,,,,,,,,,0.05724,0.07467,,,,,,,,,0.0546,0.06973,,,,,,,,,0.0596,0.07636,,,,,,,,,0.05721,0.07589,,,,,,,,,0.04636,0.05505,,,,,,,,,0.04618,0.0576,,,,,,,,,0.04337,0.05179,,,,,,,,,0.05002,0.06181,,,,,,,,,0.04448,0.05295,,,,,,,,,0.02929,0.04471,,,,,,,,,0.02622,0.0396,,,,,,,,,0.02874,0.04357,,,,,,,,,0.03049,0.04702,,,,,,,,,0.01737,0.02507,,,,,,,,,0.01915,0.02916,,,,,,,,,0.01669,0.02414,,,,,,,,,0.02158,0.032,,,,,,,,,0.01699,0.02449,,,,,,,,,0.01231,0.01102,,,,,,,,,0.01242,0.0111,,,,,,,,,0.01263,0.0113,,,,,,,,,0.01232,0.01103,,,,,,,,,0.01262,0.01124,,,,,,,,,0.01242,0.01112,,,,,,,,,0.01249,0.01112,,,,,,,,,0.01252,0.01117,,,,,,,,,0.01227,0.01094,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,, +Mini car,E85,2005,,0.00252,0.00415,0.00796,,,,,,,,0.00221,0.00362,0.00691,,,,,,,,0.00247,0.00406,0.00777,,,,,,,,0.00276,0.00456,0.00881,,,,,,,,0.00135,0.00219,0.00403,,,,,,,,0.00157,0.00265,0.00477,,,,,,,,0.00129,0.00209,0.00385,,,,,,,,0.00177,0.00288,0.00543,,,,,,,,0.00127,0.00206,0.00378,,,,,,,,0.05366,0.04305,0.05106,,,,,,,,0.04786,0.03986,0.04788,,,,,,,,0.05534,0.04602,0.05661,,,,,,,,0.06135,0.05085,0.06169,,,,,,,,0.03372,0.03133,0.04069,,,,,,,,0.04005,0.03678,0.04597,,,,,,,,0.03323,0.03048,0.03942,,,,,,,,0.04178,0.03615,0.04513,,,,,,,,0.0295,0.027,0.03405,,,,,,,,4.27021,5.43228,7.3777,,,,,,,,4.10243,5.41519,7.31027,,,,,,,,4.6053,6.18697,8.42498,,,,,,,,4.95648,6.66506,9.05886,,,,,,,,4.24619,5.85746,7.74911,,,,,,,,4.41903,6.13778,8.10099,,,,,,,,4.40302,5.92641,7.81561,,,,,,,,4.32503,5.76681,7.69855,,,,,,,,3.73334,4.96647,6.49375,,,,,,,,381.40448,385.73771,392.04761,,,,,,,,384.81454,388.85246,394.67791,,,,,,,,391.13188,395.33509,401.45077,,,,,,,,381.65622,386.05248,392.47664,,,,,,,,391.94133,394.88062,398.90112,,,,,,,,385.52286,390.31431,393.55672,,,,,,,,388.16047,390.99977,394.8442,,,,,,,,388.49771,391.91338,396.71268,,,,,,,,381.16645,384.19259,388.32535,,,,,,,,0.00769,0.00903,0.01373,,,,,,,,0.0077,0.00905,0.01374,,,,,,,,0.00771,0.00905,0.01373,,,,,,,,0.0078,0.00918,0.01395,,,,,,,,0.00773,0.00907,0.01377,,,,,,,,0.00782,0.00918,0.01395,,,,,,,,0.00773,0.00908,0.01379,,,,,,,,0.00775,0.00909,0.01381,,,,,,,,0.00762,0.00894,0.01358,,,,,,,,0.0254,0.0315,0.03552,,,,,,,,0.02546,0.03157,0.0356,,,,,,,,0.02553,0.03165,0.0357,,,,,,,,0.02523,0.03128,0.03528,,,,,,,,0.02549,0.03161,0.03565,,,,,,,,0.02532,0.03139,0.0354,,,,,,,,0.0254,0.03149,0.03551,,,,,,,,0.02549,0.03161,0.03565,,,,,,,,0.02555,0.03168,0.03573,,,,,,,,0.40964,0.54392,0.63575,,,,,,,,0.39887,0.54686,0.63907,,,,,,,,0.44885,0.60545,0.7197,,,,,,,,0.46965,0.63416,0.76018,,,,,,,,0.42851,0.5863,0.70048,,,,,,,,0.44706,0.6072,0.72627,,,,,,,,0.43577,0.58189,0.69223,,,,,,,,0.45634,0.61099,0.71815,,,,,,,,0.40509,0.5459,0.63333,,,,,,,,0.00535,0.00812,0.01436,,,,,,,,0.00483,0.00733,0.01284,,,,,,,,0.00528,0.00802,0.01407,,,,,,,,0.00563,0.00858,0.01524,,,,,,,,0.00326,0.00497,0.00842,,,,,,,,0.00363,0.00567,0.00946,,,,,,,,0.00316,0.00481,0.00817,,,,,,,,0.00402,0.0061,0.01055,,,,,,,,0.00318,0.00482,0.00819,,,,,,,,0.03982,0.04601,0.06002,,,,,,,,0.03963,0.04516,0.05745,,,,,,,,0.04314,0.04925,0.06284,,,,,,,,0.0389,0.04556,0.06066,,,,,,,,0.0382,0.04187,0.04939,,,,,,,,0.03648,0.04107,0.04928,,,,,,,,0.03539,0.03893,0.0462,,,,,,,,0.03861,0.04318,0.053,,,,,,,,0.03629,0.03981,0.04707,,,,,,,,0.01388,0.01936,0.03175,,,,,,,,0.01298,0.01787,0.02874,,,,,,,,0.01418,0.01958,0.03161,,,,,,,,0.01429,0.02018,0.03354,,,,,,,,0.01016,0.01341,0.02005,,,,,,,,0.01057,0.01454,0.02189,,,,,,,,0.00964,0.01277,0.0192,,,,,,,,0.01148,0.01552,0.02421,,,,,,,,0.00975,0.01287,0.01929,,,,,,,,0.01249,0.01114,0.00377,,,,,,,,0.0126,0.01123,0.0038,,,,,,,,0.01281,0.01142,0.00386,,,,,,,,0.0125,0.01115,0.00378,,,,,,,,0.01283,0.0114,0.00384,,,,,,,,0.01262,0.01127,0.00379,,,,,,,,0.01271,0.01129,0.0038,,,,,,,,0.01272,0.01132,0.00382,,,,,,,,0.01248,0.01109,0.00374,,,,,,,,0.34619,0.45995,0.47959,,,,,,,,0.30694,0.42044,0.43793,,,,,,,,0.3542,0.48457,0.5032,,,,,,,,0.39397,0.53717,0.5564,,,,,,,,0.20204,0.30778,0.31744,,,,,,,,0.24482,0.37006,0.37204,,,,,,,,0.19658,0.29637,0.30547,,,,,,,,0.2591,0.36851,0.3817,,,,,,,,0.17513,0.26386,0.2717,,,,,, +Mini car,E85,2010,,0.00124,0.002,0.00323,0.00684,,,,,,,0.0011,0.00177,0.00285,0.00597,,,,,,,0.00122,0.00196,0.00316,0.00669,,,,,,,0.00136,0.00221,0.00357,0.0076,,,,,,,0.00074,0.00116,0.00184,0.00367,,,,,,,0.00083,0.00136,0.0021,0.00427,,,,,,,0.00072,0.00112,0.00177,0.00352,,,,,,,0.00092,0.00146,0.00233,0.00479,,,,,,,0.00071,0.00111,0.00174,0.00344,,,,,,,0.0466,0.03215,0.02481,0.03238,,,,,,,0.04012,0.029,0.02273,0.02997,,,,,,,0.04548,0.03417,0.02678,0.0356,,,,,,,0.05257,0.03902,0.03042,0.03981,,,,,,,0.02541,0.02329,0.01943,0.02592,,,,,,,0.0295,0.02668,0.02156,0.02899,,,,,,,0.02462,0.02269,0.01902,0.02527,,,,,,,0.03286,0.02672,0.02153,0.02855,,,,,,,0.02367,0.0207,0.01698,0.02204,,,,,,,2.34552,3.64526,4.88194,6.25986,,,,,,,2.19629,3.58182,4.83606,6.19455,,,,,,,2.34845,3.99168,5.50917,7.14234,,,,,,,2.55452,4.32638,5.98278,7.72275,,,,,,,1.95002,3.65359,5.1282,6.58641,,,,,,,2.05296,3.84996,5.3336,6.89061,,,,,,,2.01268,3.72218,5.20828,6.66463,,,,,,,2.11939,3.70794,5.103,6.54347,,,,,,,1.79573,3.20272,4.36717,5.53591,,,,,,,373.8286,376.48579,381.03238,388.99366,,,,,,,377.37699,379.83005,384.05277,391.52063,,,,,,,383.51483,386.07304,390.47474,398.24205,,,,,,,374.05833,376.743,381.36699,389.45895,,,,,,,385.08983,386.79058,389.80923,395.42654,,,,,,,378.50964,381.87893,383.95487,390.2564,,,,,,,381.42668,383.05673,385.97092,391.41827,,,,,,,381.39757,383.4241,386.96506,393.38401,,,,,,,374.37219,376.16073,379.26763,384.97694,,,,,,,0.00685,0.00774,0.00923,0.01206,,,,,,,0.00686,0.00775,0.00924,0.01207,,,,,,,0.00688,0.00776,0.00924,0.01205,,,,,,,0.00694,0.00785,0.00938,0.01226,,,,,,,0.00689,0.00778,0.00927,0.01209,,,,,,,0.00696,0.00786,0.00938,0.01226,,,,,,,0.00688,0.00778,0.00928,0.01211,,,,,,,0.0069,0.00779,0.00929,0.01213,,,,,,,0.00679,0.00767,0.00914,0.01192,,,,,,,0.01689,0.0196,0.02529,0.02701,,,,,,,0.01693,0.01964,0.02535,0.02707,,,,,,,0.01698,0.0197,0.02542,0.02714,,,,,,,0.01678,0.01946,0.02511,0.02682,,,,,,,0.01695,0.01967,0.02538,0.0271,,,,,,,0.01684,0.01953,0.0252,0.02691,,,,,,,0.01689,0.01959,0.02528,0.027,,,,,,,0.01695,0.01967,0.02538,0.0271,,,,,,,0.01699,0.01971,0.02543,0.02716,,,,,,,0.10867,0.17763,0.18977,0.31855,,,,,,,0.10408,0.17698,0.18848,0.31788,,,,,,,0.10819,0.19527,0.20583,0.35707,,,,,,,0.11242,0.20745,0.21881,0.38076,,,,,,,0.09689,0.18327,0.19294,0.34107,,,,,,,0.10245,0.19297,0.20307,0.35743,,,,,,,0.09914,0.18316,0.19283,0.33806,,,,,,,0.10861,0.19571,0.20352,0.35215,,,,,,,0.09774,0.17375,0.18033,0.30781,,,,,,,0.0022,0.00339,0.00524,0.01077,,,,,,,0.00207,0.00317,0.00486,0.00982,,,,,,,0.00217,0.00335,0.00516,0.0106,,,,,,,0.00229,0.00355,0.00551,0.01145,,,,,,,0.00171,0.00258,0.00389,0.00722,,,,,,,0.00179,0.00274,0.00411,0.00784,,,,,,,0.00169,0.00254,0.00383,0.00706,,,,,,,0.00189,0.00287,0.00437,0.00849,,,,,,,0.0017,0.00255,0.00384,0.00706,,,,,,,0.03326,0.03598,0.04021,0.05289,,,,,,,0.03388,0.03636,0.0402,0.05146,,,,,,,0.03668,0.03935,0.04351,0.05594,,,,,,,0.03191,0.03482,0.03937,0.05312,,,,,,,0.03501,0.03686,0.03968,0.04701,,,,,,,0.03266,0.0349,0.03774,0.04605,,,,,,,0.03235,0.03416,0.03692,0.044,,,,,,,0.03419,0.03635,0.03968,0.04891,,,,,,,0.03326,0.03507,0.03781,0.04484,,,,,,,0.00808,0.01048,0.01422,0.02545,,,,,,,0.00789,0.01008,0.01348,0.02344,,,,,,,0.00846,0.01083,0.0145,0.0255,,,,,,,0.00811,0.01068,0.01471,0.02687,,,,,,,0.00733,0.00897,0.01147,0.01795,,,,,,,0.00719,0.00907,0.01169,0.01904,,,,,,,0.00695,0.00855,0.01099,0.01725,,,,,,,0.00757,0.00948,0.01242,0.0206,,,,,,,0.00707,0.00867,0.0111,0.01732,,,,,,,0.01224,0.01087,0.00367,0.00374,,,,,,,0.01236,0.01097,0.0037,0.00377,,,,,,,0.01256,0.01115,0.00376,0.00383,,,,,,,0.01225,0.01088,0.00367,0.00375,,,,,,,0.01261,0.01117,0.00375,0.00381,,,,,,,0.01239,0.01103,0.0037,0.00376,,,,,,,0.01249,0.01106,0.00372,0.00377,,,,,,,0.01249,0.01107,0.00372,0.00379,,,,,,,0.01226,0.01086,0.00365,0.00371,,,,,,,0.13711,0.19278,0.26132,0.37789,,,,,,,0.11608,0.1704,0.23575,0.34366,,,,,,,0.13369,0.20123,0.27801,0.40613,,,,,,,0.15637,0.23229,0.3182,0.45895,,,,,,,0.06809,0.12556,0.18978,0.27666,,,,,,,0.08143,0.14761,0.21345,0.31424,,,,,,,0.065,0.1208,0.18402,0.2678,,,,,,,0.09224,0.15044,0.21657,0.31576,,,,,,,0.06239,0.11087,0.1654,0.23613,,,,, +Mini car,E85,2015,,,0.00107,0.00165,0.00275,0.00543,,,,,,,0.00097,0.00149,0.00248,0.00485,,,,,,,0.00105,0.00162,0.0027,0.00532,,,,,,,0.00115,0.00178,0.00298,0.00593,,,,,,,0.0007,0.00106,0.00173,0.00323,,,,,,,0.00079,0.00118,0.00194,0.00367,,,,,,,0.00068,0.00104,0.00169,0.00313,,,,,,,0.00083,0.00127,0.0021,0.00402,,,,,,,0.00067,0.00102,0.00166,0.00306,,,,,,,0.03485,0.02289,0.02063,0.02374,,,,,,,0.03152,0.02121,0.01951,0.02243,,,,,,,0.03447,0.02463,0.0227,0.0263,,,,,,,0.03851,0.0275,0.02521,0.02913,,,,,,,0.02223,0.01819,0.01813,0.02087,,,,,,,0.02576,0.02018,0.01983,0.0229,,,,,,,0.02178,0.01784,0.0179,0.02056,,,,,,,0.02692,0.02019,0.01929,0.02218,,,,,,,0.02101,0.01623,0.01592,0.01805,,,,,,,1.84654,3.25444,4.35461,5.38343,,,,,,,1.81477,3.25144,4.38764,5.40675,,,,,,,1.88894,3.60697,4.98466,6.18481,,,,,,,2.03745,3.88002,5.37692,6.64872,,,,,,,1.71328,3.49235,4.89905,5.99997,,,,,,,1.79117,3.58375,5.03942,6.2051,,,,,,,1.76746,3.57149,4.99542,6.10296,,,,,,,1.78965,3.46223,4.76612,5.84872,,,,,,,1.58714,3.06512,4.17539,5.0757,,,,,,,338.70878,341.25982,343.76078,351.50711,,,,,,,341.83755,344.15928,346.35219,353.67892,,,,,,,347.42618,349.85922,352.18677,359.78371,,,,,,,338.95121,341.53891,344.10576,351.97229,,,,,,,348.52169,350.00298,351.07207,356.81472,,,,,,,343.94128,344.48491,345.98897,352.31121,,,,,,,345.19505,346.60429,347.59402,353.18517,,,,,,,345.30944,347.15564,348.71385,355.14246,,,,,,,338.83939,340.41919,341.61991,347.4129,,,,,,,0.00444,0.00502,0.0058,0.00773,,,,,,,0.00447,0.00504,0.00582,0.00775,,,,,,,0.00451,0.00509,0.00586,0.00777,,,,,,,0.00447,0.00506,0.00586,0.00783,,,,,,,0.00452,0.00509,0.00586,0.00779,,,,,,,0.00452,0.0051,0.00589,0.00786,,,,,,,0.00447,0.00505,0.00583,0.00777,,,,,,,0.0045,0.00508,0.00586,0.0078,,,,,,,0.00443,0.005,0.00577,0.00767,,,,,,,0.01689,0.01974,0.02529,0.02546,,,,,,,0.01693,0.01979,0.02535,0.02552,,,,,,,0.01698,0.01984,0.02542,0.02559,,,,,,,0.01678,0.01961,0.02511,0.02529,,,,,,,0.01695,0.01981,0.02538,0.02555,,,,,,,0.01684,0.01968,0.0252,0.02538,,,,,,,0.01689,0.01974,0.02528,0.02546,,,,,,,0.01695,0.01981,0.02538,0.02555,,,,,,,0.01699,0.01986,0.02543,0.02561,,,,,,,0.08873,0.11753,0.16803,0.2269,,,,,,,0.08787,0.11607,0.16648,0.22512,,,,,,,0.0894,0.12717,0.18135,0.24781,,,,,,,0.0937,0.1356,0.19339,0.26473,,,,,,,0.07904,0.11606,0.16835,0.23214,,,,,,,0.08462,0.12322,0.17801,0.24507,,,,,,,0.08041,0.11602,0.16859,0.23163,,,,,,,0.08878,0.12446,0.17859,0.24333,,,,,,,0.08006,0.10955,0.1577,0.2136,,,,,,,0.00203,0.00303,0.00478,0.00866,,,,,,,0.00193,0.00288,0.00452,0.00809,,,,,,,0.00201,0.003,0.00473,0.00855,,,,,,,0.00208,0.00312,0.00495,0.00908,,,,,,,0.00167,0.00246,0.00379,0.00648,,,,,,,0.00174,0.00255,0.00396,0.00687,,,,,,,0.00165,0.00243,0.00375,0.00638,,,,,,,0.0018,0.00267,0.00415,0.00727,,,,,,,0.00166,0.00245,0.00376,0.00639,,,,,,,0.0328,0.03502,0.03899,0.04803,,,,,,,0.03353,0.0356,0.03929,0.0475,,,,,,,0.03624,0.03842,0.04235,0.05123,,,,,,,0.03135,0.03368,0.03787,0.04757,,,,,,,0.03488,0.03654,0.03942,0.04535,,,,,,,0.03266,0.03425,0.03734,0.04386,,,,,,,0.03225,0.03388,0.03671,0.0425,,,,,,,0.03396,0.03582,0.0391,0.04615,,,,,,,0.03316,0.03479,0.03761,0.04335,,,,,,,0.00767,0.00963,0.01315,0.02114,,,,,,,0.00758,0.00941,0.01267,0.01993,,,,,,,0.00807,0.01001,0.01348,0.02133,,,,,,,0.00761,0.00967,0.01338,0.02197,,,,,,,0.00722,0.00869,0.01124,0.01648,,,,,,,0.0071,0.0086,0.01133,0.01709,,,,,,,0.00686,0.0083,0.0108,0.01592,,,,,,,0.00737,0.00901,0.01191,0.01815,,,,,,,0.00698,0.00843,0.01092,0.016,,,,,,,0.00978,0.00328,0.00331,0.00338,,,,,,,0.00987,0.00331,0.00333,0.0034,,,,,,,0.01003,0.00337,0.00339,0.00346,,,,,,,0.00979,0.00329,0.00331,0.00339,,,,,,,0.01006,0.00337,0.00338,0.00343,,,,,,,0.00993,0.00332,0.00333,0.00339,,,,,,,0.00997,0.00334,0.00335,0.0034,,,,,,,0.00997,0.00334,0.00336,0.00342,,,,,,,0.00978,0.00328,0.00329,0.00334,,,,,,,0.09857,0.14333,0.21165,0.28985,,,,,,,0.08741,0.13087,0.19744,0.27031,,,,,,,0.09711,0.152,0.22956,0.31668,,,,,,,0.10992,0.17081,0.25617,0.35284,,,,,,,0.05693,0.10564,0.17445,0.24013,,,,,,,0.06835,0.11892,0.19293,0.26625,,,,,,,0.05507,0.10266,0.1708,0.23483,,,,,,,0.07209,0.12068,0.19006,0.26088,,,,,,,0.05293,0.0938,0.15285,0.20746,,,, +Mini car,E85,2020,,,,0.00087,0.00132,0.00202,0.00412,,,,,,,0.0008,0.0012,0.00184,0.0037,,,,,,,0.00085,0.0013,0.00199,0.00404,,,,,,,0.00093,0.00141,0.00218,0.00448,,,,,,,0.00058,0.00087,0.0013,0.00252,,,,,,,0.00064,0.00096,0.00145,0.00285,,,,,,,0.00057,0.00085,0.00127,0.00245,,,,,,,0.00069,0.00103,0.00156,0.0031,,,,,,,0.00057,0.00084,0.00125,0.0024,,,,,,,0.02681,0.0184,0.01519,0.01768,,,,,,,0.02379,0.01675,0.01408,0.0165,,,,,,,0.02646,0.01947,0.01639,0.01951,,,,,,,0.02992,0.0219,0.01835,0.02174,,,,,,,0.01524,0.01318,0.01202,0.01471,,,,,,,0.01785,0.01495,0.01341,0.01637,,,,,,,0.01476,0.01286,0.01181,0.01445,,,,,,,0.0195,0.01527,0.01332,0.01598,,,,,,,0.01413,0.0117,0.01053,0.0126,,,,,,,1.45352,2.16089,2.69234,3.59311,,,,,,,1.41959,2.13393,2.67506,3.57809,,,,,,,1.48991,2.36658,3.03156,4.13073,,,,,,,1.61907,2.57225,3.31014,4.48364,,,,,,,1.3158,2.21066,2.86233,3.9013,,,,,,,1.36795,2.29185,2.97826,4.07701,,,,,,,1.35422,2.26522,2.9278,3.97383,,,,,,,1.38697,2.22909,2.8408,3.84006,,,,,,,1.21288,1.94605,2.45152,3.27953,,,,,,,269.01533,270.89532,272.70549,288.82344,,,,,,,271.33691,273.03425,274.58678,290.39166,,,,,,,275.82729,277.61108,279.27164,295.47622,,,,,,,269.27046,271.18449,273.05384,289.29186,,,,,,,276.06689,277.09473,277.71353,292.20287,,,,,,,271.67987,272.9616,273.94543,288.82857,,,,,,,273.40893,274.3833,274.93984,289.2015,,,,,,,273.76964,275.08856,276.11337,291.16434,,,,,,,268.43382,269.53809,270.26469,284.54788,,,,,,,0.00453,0.00505,0.00577,0.00714,,,,,,,0.00455,0.00507,0.0058,0.00716,,,,,,,0.0046,0.00511,0.00583,0.00718,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00511,0.00584,0.0072,,,,,,,0.0046,0.00512,0.00587,0.00725,,,,,,,0.00455,0.00507,0.00581,0.00717,,,,,,,0.00458,0.0051,0.00584,0.0072,,,,,,,0.00451,0.00502,0.00574,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01972,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.06124,0.0945,0.12673,0.1696,,,,,,,0.06,0.09287,0.12491,0.16743,,,,,,,0.06149,0.10133,0.13546,0.18437,,,,,,,0.065,0.1087,0.1454,0.19837,,,,,,,0.05169,0.09018,0.12245,0.16857,,,,,,,0.05617,0.09681,0.13099,0.17994,,,,,,,0.05249,0.09057,0.12326,0.16877,,,,,,,0.05882,0.09832,0.13227,0.17926,,,,,,,0.0517,0.08561,0.1155,0.15524,,,,,,,0.0017,0.00245,0.00356,0.0066,,,,,,,0.00163,0.00234,0.00338,0.00619,,,,,,,0.00168,0.00243,0.00352,0.00652,,,,,,,0.00174,0.00252,0.00368,0.00688,,,,,,,0.00142,0.00202,0.00286,0.00505,,,,,,,0.00146,0.00209,0.00298,0.00533,,,,,,,0.00141,0.002,0.00283,0.00498,,,,,,,0.00153,0.00218,0.00312,0.00561,,,,,,,0.00142,0.00201,0.00284,0.00499,,,,,,,0.03205,0.03375,0.03627,0.04333,,,,,,,0.03284,0.03442,0.03676,0.04324,,,,,,,0.0355,0.03717,0.03966,0.04661,,,,,,,0.03056,0.03233,0.03499,0.04252,,,,,,,0.03435,0.03562,0.03744,0.04227,,,,,,,0.03192,0.03327,0.03523,0.04049,,,,,,,0.03172,0.03297,0.03476,0.0395,,,,,,,0.03335,0.03477,0.03685,0.04249,,,,,,,0.03264,0.03388,0.03567,0.04036,,,,,,,0.00701,0.00851,0.01074,0.01699,,,,,,,0.00697,0.00837,0.01044,0.01617,,,,,,,0.00742,0.0089,0.0111,0.01725,,,,,,,0.00691,0.00848,0.01083,0.0175,,,,,,,0.00675,0.00787,0.00949,0.01376,,,,,,,0.00654,0.00773,0.00946,0.01412,,,,,,,0.00639,0.0075,0.00908,0.01327,,,,,,,0.00683,0.00809,0.00993,0.01492,,,,,,,0.00652,0.00762,0.0092,0.01335,,,,,,,0.00259,0.00261,0.00262,0.00278,,,,,,,0.00261,0.00263,0.00264,0.0028,,,,,,,0.00265,0.00267,0.00269,0.00284,,,,,,,0.00259,0.00261,0.00263,0.00278,,,,,,,0.00266,0.00267,0.00267,0.00281,,,,,,,0.00261,0.00263,0.00264,0.00278,,,,,,,0.00263,0.00264,0.00265,0.00278,,,,,,,0.00264,0.00265,0.00266,0.0028,,,,,,,0.00258,0.00259,0.0026,0.00274,,,,,,,0.08216,0.11442,0.15619,0.21824,,,,,,,0.07213,0.10264,0.1424,0.20078,,,,,,,0.08106,0.11925,0.16565,0.23725,,,,,,,0.09228,0.13498,0.18658,0.26605,,,,,,,0.04408,0.0752,0.11299,0.16907,,,,,,,0.0527,0.08696,0.12835,0.19074,,,,,,,0.04227,0.07265,0.10993,0.16461,,,,,,,0.05801,0.09032,0.12989,0.18885,,,,,,,0.04032,0.06646,0.09873,0.14442,,, +Mini car,E85,2025,,,,,0.00057,0.00084,0.00131,0.00275,,,,,,,0.00052,0.00077,0.00119,0.00247,,,,,,,0.00056,0.00083,0.00129,0.0027,,,,,,,0.00061,0.00091,0.00142,0.00298,,,,,,,0.00038,0.00056,0.00085,0.0017,,,,,,,0.00042,0.00062,0.00094,0.00192,,,,,,,0.00037,0.00054,0.00082,0.00165,,,,,,,0.00045,0.00066,0.00102,0.00208,,,,,,,0.00037,0.00054,0.00081,0.00162,,,,,,,0.02351,0.01489,0.01178,0.01359,,,,,,,0.02039,0.01319,0.01062,0.01237,,,,,,,0.02304,0.01537,0.01238,0.01461,,,,,,,0.02641,0.01752,0.01404,0.01647,,,,,,,0.01161,0.00901,0.00796,0.00986,,,,,,,0.01419,0.01062,0.00917,0.01127,,,,,,,0.01109,0.00869,0.00774,0.00961,,,,,,,0.01595,0.01125,0.00942,0.01132,,,,,,,0.01058,0.00795,0.00694,0.00843,,,,,,,1.08539,1.56339,1.96562,2.58505,,,,,,,1.03627,1.5157,1.92032,2.53384,,,,,,,1.09635,1.68349,2.17513,2.91486,,,,,,,1.2089,1.85454,2.40288,3.19971,,,,,,,0.88898,1.47777,1.94572,2.62271,,,,,,,0.94479,1.55716,2.05286,2.77409,,,,,,,0.91344,1.51548,1.99261,2.67546,,,,,,,0.97421,1.53404,1.98107,2.64422,,,,,,,0.82125,1.30501,1.6716,2.21604,,,,,,,217.66378,219.28844,221.18074,235.00765,,,,,,,219.41191,220.88356,222.55123,236.08278,,,,,,,223.08672,224.63174,226.40032,240.28406,,,,,,,217.92165,219.57679,221.52542,235.46978,,,,,,,222.77742,223.68621,224.53661,236.84508,,,,,,,219.42429,220.5464,221.71518,234.40238,,,,,,,220.61456,221.4783,222.27308,234.38491,,,,,,,221.12115,222.27455,223.48068,236.3124,,,,,,,216.64457,217.61431,218.54645,230.68156,,,,,,,0.00456,0.00504,0.00575,0.00702,,,,,,,0.00458,0.00506,0.00578,0.00704,,,,,,,0.00462,0.0051,0.00581,0.00707,,,,,,,0.00459,0.00508,0.00581,0.0071,,,,,,,0.00463,0.00511,0.00582,0.00708,,,,,,,0.00463,0.00512,0.00585,0.00713,,,,,,,0.00458,0.00507,0.00579,0.00706,,,,,,,0.00461,0.0051,0.00582,0.00708,,,,,,,0.00454,0.00502,0.00572,0.00697,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04691,0.06846,0.09104,0.12418,,,,,,,0.0454,0.06658,0.08888,0.12158,,,,,,,0.04658,0.07207,0.09571,0.13307,,,,,,,0.04969,0.0779,0.10349,0.14401,,,,,,,0.03693,0.06116,0.08298,0.1173,,,,,,,0.04116,0.06699,0.09036,0.12712,,,,,,,0.03763,0.06173,0.0839,0.11789,,,,,,,0.04308,0.06819,0.09138,0.12694,,,,,,,0.03685,0.05828,0.07856,0.10842,,,,,,,0.00111,0.00158,0.00232,0.00442,,,,,,,0.00106,0.0015,0.0022,0.00416,,,,,,,0.0011,0.00156,0.0023,0.00437,,,,,,,0.00114,0.00162,0.0024,0.00461,,,,,,,0.00093,0.0013,0.00187,0.0034,,,,,,,0.00096,0.00134,0.00194,0.00359,,,,,,,0.00092,0.00128,0.00185,0.00336,,,,,,,0.001,0.0014,0.00203,0.00378,,,,,,,0.00093,0.00129,0.00186,0.00336,,,,,,,0.03078,0.03182,0.03352,0.03838,,,,,,,0.03163,0.03261,0.03418,0.03866,,,,,,,0.03424,0.03527,0.03694,0.04173,,,,,,,0.02924,0.03033,0.03212,0.03729,,,,,,,0.03333,0.03411,0.03534,0.03873,,,,,,,0.03086,0.03169,0.03301,0.03668,,,,,,,0.03071,0.03148,0.03269,0.03601,,,,,,,0.03224,0.03311,0.03451,0.03844,,,,,,,0.03162,0.03239,0.0336,0.03689,,,,,,,0.00589,0.00681,0.00831,0.01261,,,,,,,0.0059,0.00676,0.00815,0.01212,,,,,,,0.00631,0.00722,0.00869,0.01293,,,,,,,0.00575,0.00671,0.00829,0.01287,,,,,,,0.00585,0.00654,0.00763,0.01062,,,,,,,0.0056,0.00633,0.0075,0.01075,,,,,,,0.0055,0.00618,0.00725,0.01019,,,,,,,0.00584,0.00662,0.00786,0.01133,,,,,,,0.00562,0.0063,0.00737,0.01028,,,,,,,0.0021,0.00211,0.00213,0.00226,,,,,,,0.00211,0.00213,0.00214,0.00227,,,,,,,0.00215,0.00216,0.00218,0.00231,,,,,,,0.0021,0.00211,0.00213,0.00227,,,,,,,0.00214,0.00215,0.00216,0.00228,,,,,,,0.00211,0.00212,0.00213,0.00226,,,,,,,0.00212,0.00213,0.00214,0.00226,,,,,,,0.00213,0.00214,0.00215,0.00227,,,,,,,0.00209,0.00209,0.0021,0.00222,,,,,,,0.07296,0.09507,0.12517,0.17166,,,,,,,0.06262,0.083,0.11094,0.15395,,,,,,,0.07139,0.09674,0.12936,0.18163,,,,,,,0.08235,0.11099,0.14764,0.20603,,,,,,,0.03367,0.05226,0.07628,0.11432,,,,,,,0.04216,0.06311,0.09001,0.13304,,,,,,,0.03181,0.04984,0.07339,0.11035,,,,,,,0.0479,0.0682,0.09461,0.13618,,,,,,,0.03024,0.04581,0.06634,0.09752,, +Mini car,E85,2030,,,,,,0.00057,0.00084,0.00131,0.00237,,,,,,,0.00052,0.00077,0.00119,0.00214,,,,,,,0.00056,0.00083,0.00129,0.00233,,,,,,,0.00061,0.0009,0.00141,0.00257,,,,,,,0.00038,0.00055,0.00084,0.00147,,,,,,,0.00042,0.00061,0.00094,0.00166,,,,,,,0.00037,0.00054,0.00082,0.00143,,,,,,,0.00045,0.00066,0.00101,0.0018,,,,,,,0.00037,0.00053,0.00081,0.0014,,,,,,,0.02236,0.01377,0.01077,0.01198,,,,,,,0.01923,0.01206,0.0096,0.01074,,,,,,,0.02185,0.01406,0.0112,0.01262,,,,,,,0.02517,0.01612,0.01277,0.01433,,,,,,,0.0104,0.00771,0.00677,0.00788,,,,,,,0.01296,0.00926,0.00793,0.00917,,,,,,,0.00987,0.00739,0.00656,0.00764,,,,,,,0.01474,0.00998,0.00828,0.00944,,,,,,,0.00941,0.00678,0.0059,0.00676,,,,,,,0.98558,1.41119,1.78735,2.24138,,,,,,,0.93289,1.35869,1.73542,2.17671,,,,,,,0.99005,1.50974,1.96577,2.49085,,,,,,,1.09763,1.67095,2.18034,2.75085,,,,,,,0.77517,1.29287,1.72198,2.17577,,,,,,,0.83148,1.37107,1.82657,2.31624,,,,,,,0.79585,1.32603,1.76386,2.22195,,,,,,,0.86339,1.35825,1.77077,2.22899,,,,,,,0.71656,1.14344,1.48068,1.84947,,,,,,,200.30571,202.3278,205.46049,214.30265,,,,,,,201.86591,203.75013,206.67797,215.20462,,,,,,,205.2631,207.22437,210.27146,219.06104,,,,,,,200.56287,202.61433,205.80491,214.75751,,,,,,,204.79094,206.16221,208.32421,215.62132,,,,,,,201.77862,203.33949,205.78757,213.51296,,,,,,,202.79611,204.12091,206.21704,213.37154,,,,,,,203.34232,204.93589,207.42999,215.25765,,,,,,,199.16263,200.5746,202.77501,210.02386,,,,,,,0.00455,0.00502,0.00575,0.00698,,,,,,,0.00457,0.00504,0.00577,0.007,,,,,,,0.00462,0.00509,0.00581,0.00703,,,,,,,0.00458,0.00506,0.0058,0.00707,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00462,0.0051,0.00584,0.00709,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00693,,,,,,,0.01689,0.01965,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04137,0.0591,0.07995,0.10563,,,,,,,0.03976,0.05713,0.07767,0.10283,,,,,,,0.04076,0.06155,0.08336,0.11163,,,,,,,0.04365,0.06677,0.09043,0.12112,,,,,,,0.03121,0.05078,0.07074,0.09592,,,,,,,0.03531,0.05629,0.07774,0.10501,,,,,,,0.03188,0.05138,0.07166,0.09672,,,,,,,0.03694,0.05733,0.07862,0.10518,,,,,,,0.03113,0.04851,0.06706,0.08926,,,,,,,0.00111,0.00157,0.00232,0.00386,,,,,,,0.00106,0.0015,0.0022,0.00363,,,,,,,0.0011,0.00156,0.0023,0.00381,,,,,,,0.00114,0.00161,0.0024,0.00401,,,,,,,0.00093,0.00129,0.00187,0.00298,,,,,,,0.00096,0.00134,0.00194,0.00314,,,,,,,0.00092,0.00128,0.00185,0.00295,,,,,,,0.001,0.0014,0.00203,0.00331,,,,,,,0.00093,0.00129,0.00186,0.00295,,,,,,,0.03078,0.03181,0.03351,0.03708,,,,,,,0.03163,0.03259,0.03418,0.03746,,,,,,,0.03424,0.03525,0.03694,0.04045,,,,,,,0.02924,0.03032,0.03212,0.03591,,,,,,,0.03333,0.0341,0.03534,0.03781,,,,,,,0.03086,0.03168,0.03301,0.0357,,,,,,,0.03071,0.03147,0.03269,0.03512,,,,,,,0.03223,0.0331,0.03451,0.03738,,,,,,,0.03162,0.03238,0.03359,0.036,,,,,,,0.00588,0.00679,0.0083,0.01146,,,,,,,0.0059,0.00675,0.00815,0.01106,,,,,,,0.0063,0.0072,0.00869,0.0118,,,,,,,0.00575,0.0067,0.00829,0.01165,,,,,,,0.00585,0.00653,0.00763,0.00982,,,,,,,0.00559,0.00632,0.0075,0.00988,,,,,,,0.0055,0.00617,0.00725,0.0094,,,,,,,0.00584,0.00661,0.00786,0.0104,,,,,,,0.00562,0.00629,0.00737,0.00949,,,,,,,0.00193,0.00195,0.00198,0.00206,,,,,,,0.00194,0.00196,0.00199,0.00207,,,,,,,0.00198,0.00199,0.00202,0.00211,,,,,,,0.00193,0.00195,0.00198,0.00207,,,,,,,0.00197,0.00198,0.00201,0.00208,,,,,,,0.00194,0.00196,0.00198,0.00206,,,,,,,0.00195,0.00196,0.00198,0.00205,,,,,,,0.00196,0.00197,0.002,0.00207,,,,,,,0.00192,0.00193,0.00195,0.00202,,,,,,,0.0696,0.08869,0.11629,0.15342,,,,,,,0.05924,0.07661,0.10197,0.13549,,,,,,,0.0679,0.08937,0.11901,0.15916,,,,,,,0.07869,0.10307,0.1365,0.18182,,,,,,,0.03022,0.04508,0.06595,0.09205,,,,,,,0.03862,0.05558,0.0792,0.10947,,,,,,,0.02837,0.04271,0.06311,0.08831,,,,,,,0.04444,0.06117,0.08463,0.11497,,,,,,,0.02693,0.03939,0.05722,0.07884, +Mini car,E85,2035,,,,,,,0.00057,0.00084,0.00131,0.00233,,,,,,,0.00052,0.00077,0.00119,0.0021,,,,,,,0.00056,0.00083,0.00129,0.00229,,,,,,,0.00061,0.0009,0.00142,0.00252,,,,,,,0.00038,0.00056,0.00084,0.00145,,,,,,,0.00042,0.00061,0.00094,0.00163,,,,,,,0.00037,0.00054,0.00082,0.00141,,,,,,,0.00045,0.00066,0.00102,0.00177,,,,,,,0.00037,0.00054,0.00081,0.00138,,,,,,,0.0222,0.01375,0.01078,0.01175,,,,,,,0.0191,0.01204,0.00961,0.0105,,,,,,,0.0217,0.01404,0.01121,0.01232,,,,,,,0.025,0.0161,0.01278,0.014,,,,,,,0.01034,0.00771,0.00678,0.00755,,,,,,,0.01288,0.00926,0.00794,0.00884,,,,,,,0.00981,0.00739,0.00656,0.00732,,,,,,,0.01464,0.00997,0.00829,0.00914,,,,,,,0.00935,0.00678,0.0059,0.0065,,,,,,,0.98657,1.41248,1.78821,2.19293,,,,,,,0.93426,1.36,1.73617,2.12567,,,,,,,0.99163,1.51136,1.96664,2.42952,,,,,,,1.09929,1.67271,2.18132,2.68577,,,,,,,0.7778,1.29441,1.72248,2.10907,,,,,,,0.834,1.37269,1.82716,2.24814,,,,,,,0.79861,1.32758,1.76433,2.15426,,,,,,,0.86555,1.35965,1.77141,2.16803,,,,,,,0.71875,1.14457,1.48115,1.79525,,,,,,,200.25816,202.33776,205.47918,211.25641,,,,,,,201.82136,203.75952,206.69507,212.12905,,,,,,,205.21644,207.23425,210.28993,215.93624,,,,,,,200.51388,202.6244,205.82391,211.712,,,,,,,204.75598,206.1685,208.33593,212.4795,,,,,,,201.73976,203.34697,205.8017,210.42728,,,,,,,202.7624,204.12714,206.22844,210.26037,,,,,,,203.30325,204.94361,207.44444,212.14766,,,,,,,199.12895,200.58166,202.78793,206.96749,,,,,,,0.00454,0.00502,0.00575,0.007,,,,,,,0.00456,0.00505,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00705,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00582,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00457,0.00505,0.00578,0.00704,,,,,,,0.0046,0.00508,0.00581,0.00706,,,,,,,0.00453,0.005,0.00572,0.00695,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01972,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.04135,0.05924,0.08,0.10286,,,,,,,0.03975,0.05728,0.07772,0.10002,,,,,,,0.04075,0.06171,0.08341,0.10833,,,,,,,0.04365,0.06694,0.09049,0.11758,,,,,,,0.03124,0.05094,0.07078,0.09257,,,,,,,0.03533,0.05645,0.07778,0.10155,,,,,,,0.0319,0.05153,0.0717,0.09341,,,,,,,0.03695,0.05749,0.07867,0.10182,,,,,,,0.03115,0.04865,0.0671,0.08631,,,,,,,0.00111,0.00157,0.00232,0.00379,,,,,,,0.00106,0.0015,0.0022,0.00357,,,,,,,0.0011,0.00156,0.0023,0.00375,,,,,,,0.00114,0.00162,0.0024,0.00395,,,,,,,0.00093,0.0013,0.00187,0.00294,,,,,,,0.00096,0.00134,0.00194,0.00309,,,,,,,0.00092,0.00128,0.00185,0.0029,,,,,,,0.001,0.0014,0.00203,0.00325,,,,,,,0.00093,0.00129,0.00186,0.00291,,,,,,,0.03078,0.03182,0.03351,0.03693,,,,,,,0.03163,0.0326,0.03418,0.03733,,,,,,,0.03424,0.03526,0.03694,0.0403,,,,,,,0.02924,0.03033,0.03212,0.03575,,,,,,,0.03333,0.03411,0.03534,0.03771,,,,,,,0.03086,0.03169,0.03301,0.03559,,,,,,,0.03071,0.03148,0.03269,0.03502,,,,,,,0.03223,0.03311,0.03451,0.03726,,,,,,,0.03162,0.03239,0.0336,0.0359,,,,,,,0.00588,0.0068,0.0083,0.01133,,,,,,,0.0059,0.00676,0.00815,0.01094,,,,,,,0.0063,0.00721,0.00869,0.01167,,,,,,,0.00575,0.00671,0.00829,0.01151,,,,,,,0.00585,0.00654,0.00763,0.00972,,,,,,,0.00559,0.00633,0.0075,0.00978,,,,,,,0.0055,0.00618,0.00725,0.00931,,,,,,,0.00584,0.00662,0.00786,0.01029,,,,,,,0.00562,0.0063,0.00737,0.00941,,,,,,,0.00193,0.00195,0.00198,0.00203,,,,,,,0.00194,0.00196,0.00199,0.00204,,,,,,,0.00198,0.00199,0.00202,0.00208,,,,,,,0.00193,0.00195,0.00198,0.00204,,,,,,,0.00197,0.00198,0.00201,0.00205,,,,,,,0.00194,0.00196,0.00198,0.00203,,,,,,,0.00195,0.00196,0.00199,0.00202,,,,,,,0.00196,0.00197,0.002,0.00204,,,,,,,0.00192,0.00193,0.00195,0.00199,,,,,,,0.06944,0.08881,0.11639,0.15086,,,,,,,0.05912,0.07672,0.10207,0.13281,,,,,,,0.06775,0.08951,0.11912,0.15578,,,,,,,0.07852,0.10322,0.13663,0.1782,,,,,,,0.03018,0.04519,0.06601,0.08842,,,,,,,0.03856,0.0557,0.07927,0.10567,,,,,,,0.02834,0.04282,0.06316,0.08473,,,,,,,0.04436,0.06128,0.0847,0.11165,,,,,,,0.02689,0.03948,0.05727,0.07588 +Mini car,E85,2040,,,,,,,,0.00057,0.00084,0.00131,,,,,,,,0.00052,0.00077,0.00119,,,,,,,,0.00056,0.00083,0.00129,,,,,,,,0.00061,0.0009,0.00141,,,,,,,,0.00038,0.00055,0.00084,,,,,,,,0.00042,0.00061,0.00094,,,,,,,,0.00037,0.00054,0.00082,,,,,,,,0.00045,0.00066,0.00102,,,,,,,,0.00037,0.00053,0.00081,,,,,,,,0.02221,0.01375,0.01078,,,,,,,,0.0191,0.01204,0.0096,,,,,,,,0.02171,0.01404,0.01121,,,,,,,,0.02501,0.01609,0.01277,,,,,,,,0.01034,0.0077,0.00677,,,,,,,,0.01288,0.00926,0.00794,,,,,,,,0.00982,0.00739,0.00656,,,,,,,,0.01465,0.00997,0.00829,,,,,,,,0.00935,0.00678,0.0059,,,,,,,,0.98525,1.41142,1.78775,,,,,,,,0.93295,1.35899,1.73577,,,,,,,,0.99013,1.51014,1.96617,,,,,,,,1.09762,1.67136,2.18079,,,,,,,,0.77646,1.29343,1.7222,,,,,,,,0.83258,1.37162,1.82683,,,,,,,,0.79725,1.32661,1.76407,,,,,,,,0.86417,1.35866,1.77106,,,,,,,,0.7176,1.14381,1.48089,,,,,,,,200.24516,202.32145,205.46903,,,,,,,,201.80909,203.74434,206.68595,,,,,,,,205.20366,207.21809,210.27973,,,,,,,,200.50052,202.60759,205.81349,,,,,,,,204.74695,206.15721,208.32926,,,,,,,,201.72947,203.33405,205.79394,,,,,,,,202.75346,204.11593,206.22203,,,,,,,,203.29271,204.93044,207.43627,,,,,,,,199.1195,200.57008,202.78087,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00582,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01977,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.0413,0.05916,0.07997,,,,,,,,0.0397,0.05719,0.0777,,,,,,,,0.0407,0.06161,0.08338,,,,,,,,0.0436,0.06684,0.09046,,,,,,,,0.03119,0.05085,0.07075,,,,,,,,0.03528,0.05636,0.07776,,,,,,,,0.03186,0.05145,0.07168,,,,,,,,0.0369,0.0574,0.07864,,,,,,,,0.03111,0.04857,0.06708,,,,,,,,0.00111,0.00157,0.00232,,,,,,,,0.00106,0.0015,0.0022,,,,,,,,0.0011,0.00156,0.0023,,,,,,,,0.00113,0.00162,0.0024,,,,,,,,0.00093,0.00129,0.00187,,,,,,,,0.00096,0.00134,0.00194,,,,,,,,0.00092,0.00128,0.00185,,,,,,,,0.001,0.0014,0.00203,,,,,,,,0.00093,0.00129,0.00186,,,,,,,,0.03078,0.03181,0.03351,,,,,,,,0.03163,0.0326,0.03418,,,,,,,,0.03424,0.03526,0.03694,,,,,,,,0.02924,0.03032,0.03212,,,,,,,,0.03333,0.03411,0.03534,,,,,,,,0.03086,0.03168,0.03301,,,,,,,,0.03071,0.03148,0.03269,,,,,,,,0.03223,0.03311,0.03451,,,,,,,,0.03162,0.03238,0.0336,,,,,,,,0.00588,0.0068,0.0083,,,,,,,,0.0059,0.00675,0.00815,,,,,,,,0.0063,0.00721,0.00869,,,,,,,,0.00575,0.00671,0.00829,,,,,,,,0.00585,0.00654,0.00763,,,,,,,,0.00559,0.00632,0.0075,,,,,,,,0.0055,0.00618,0.00725,,,,,,,,0.00584,0.00661,0.00786,,,,,,,,0.00562,0.0063,0.00737,,,,,,,,0.00193,0.00195,0.00198,,,,,,,,0.00194,0.00196,0.00199,,,,,,,,0.00198,0.00199,0.00202,,,,,,,,0.00193,0.00195,0.00198,,,,,,,,0.00197,0.00198,0.00201,,,,,,,,0.00194,0.00196,0.00198,,,,,,,,0.00195,0.00196,0.00198,,,,,,,,0.00196,0.00197,0.002,,,,,,,,0.00192,0.00193,0.00195,,,,,,,,0.06936,0.0887,0.11634,,,,,,,,0.05905,0.07663,0.10202,,,,,,,,0.06768,0.08939,0.11906,,,,,,,,0.07843,0.10309,0.13656,,,,,,,,0.03014,0.04512,0.06598,,,,,,,,0.03851,0.05562,0.07923,,,,,,,,0.0283,0.04275,0.06314,,,,,,,,0.0443,0.06119,0.08466,,,,,,,,0.02686,0.03942,0.05725 +Mini car,E85,2045,,,,,,,,,0.00057,0.00084,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00056,0.00083,,,,,,,,,0.00061,0.0009,,,,,,,,,0.00038,0.00055,,,,,,,,,0.00042,0.00061,,,,,,,,,0.00037,0.00054,,,,,,,,,0.00045,0.00066,,,,,,,,,0.00037,0.00053,,,,,,,,,0.02221,0.01375,,,,,,,,,0.01911,0.01204,,,,,,,,,0.02171,0.01404,,,,,,,,,0.02501,0.01609,,,,,,,,,0.01034,0.0077,,,,,,,,,0.01288,0.00926,,,,,,,,,0.00982,0.00739,,,,,,,,,0.01465,0.00997,,,,,,,,,0.00935,0.00678,,,,,,,,,0.98441,1.41117,,,,,,,,,0.93214,1.35875,,,,,,,,,0.98921,1.50985,,,,,,,,,1.0966,1.67104,,,,,,,,,0.77567,1.29318,,,,,,,,,0.83174,1.37136,,,,,,,,,0.79645,1.32636,,,,,,,,,0.86335,1.35842,,,,,,,,,0.71691,1.14361,,,,,,,,,200.2348,202.31787,,,,,,,,,201.80023,203.74198,,,,,,,,,205.19357,207.21474,,,,,,,,,200.4901,202.6043,,,,,,,,,204.73938,206.1543,,,,,,,,,201.72166,203.33161,,,,,,,,,202.74611,204.11347,,,,,,,,,203.2848,204.92815,,,,,,,,,199.11168,200.5669,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04127,0.05913,,,,,,,,,0.03967,0.05717,,,,,,,,,0.04067,0.06159,,,,,,,,,0.04356,0.06681,,,,,,,,,0.03116,0.05083,,,,,,,,,0.03525,0.05634,,,,,,,,,0.03183,0.05142,,,,,,,,,0.03687,0.05738,,,,,,,,,0.03108,0.04855,,,,,,,,,0.00111,0.00157,,,,,,,,,0.00106,0.0015,,,,,,,,,0.0011,0.00156,,,,,,,,,0.00113,0.00161,,,,,,,,,0.00093,0.00129,,,,,,,,,0.00096,0.00134,,,,,,,,,0.00092,0.00128,,,,,,,,,0.001,0.0014,,,,,,,,,0.00093,0.00129,,,,,,,,,0.03077,0.03181,,,,,,,,,0.03163,0.0326,,,,,,,,,0.03423,0.03526,,,,,,,,,0.02924,0.03032,,,,,,,,,0.03333,0.03411,,,,,,,,,0.03085,0.03168,,,,,,,,,0.03071,0.03148,,,,,,,,,0.03223,0.0331,,,,,,,,,0.03162,0.03238,,,,,,,,,0.00588,0.0068,,,,,,,,,0.0059,0.00675,,,,,,,,,0.0063,0.00721,,,,,,,,,0.00574,0.00671,,,,,,,,,0.00585,0.00653,,,,,,,,,0.00559,0.00632,,,,,,,,,0.0055,0.00618,,,,,,,,,0.00584,0.00661,,,,,,,,,0.00562,0.0063,,,,,,,,,0.00193,0.00195,,,,,,,,,0.00194,0.00196,,,,,,,,,0.00198,0.00199,,,,,,,,,0.00193,0.00195,,,,,,,,,0.00197,0.00198,,,,,,,,,0.00194,0.00196,,,,,,,,,0.00195,0.00196,,,,,,,,,0.00196,0.00197,,,,,,,,,0.00192,0.00193,,,,,,,,,0.06931,0.08867,,,,,,,,,0.059,0.0766,,,,,,,,,0.06762,0.08936,,,,,,,,,0.07837,0.10306,,,,,,,,,0.03011,0.0451,,,,,,,,,0.03848,0.05559,,,,,,,,,0.02827,0.04273,,,,,,,,,0.04427,0.06117,,,,,,,,,0.02683,0.03941 +Mini car,E85,2050,,,,,,,,,,0.00057,,,,,,,,,,0.00052,,,,,,,,,,0.00056,,,,,,,,,,0.00061,,,,,,,,,,0.00038,,,,,,,,,,0.00042,,,,,,,,,,0.00037,,,,,,,,,,0.00045,,,,,,,,,,0.00037,,,,,,,,,,0.02221,,,,,,,,,,0.01911,,,,,,,,,,0.02171,,,,,,,,,,0.02501,,,,,,,,,,0.01034,,,,,,,,,,0.01288,,,,,,,,,,0.00982,,,,,,,,,,0.01465,,,,,,,,,,0.00935,,,,,,,,,,0.98441,,,,,,,,,,0.93214,,,,,,,,,,0.98921,,,,,,,,,,1.0966,,,,,,,,,,0.77567,,,,,,,,,,0.83174,,,,,,,,,,0.79646,,,,,,,,,,0.86335,,,,,,,,,,0.71691,,,,,,,,,,200.2347,,,,,,,,,,201.80021,,,,,,,,,,205.1935,,,,,,,,,,200.49023,,,,,,,,,,204.73927,,,,,,,,,,201.72163,,,,,,,,,,202.74602,,,,,,,,,,203.28478,,,,,,,,,,199.11168,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04127,,,,,,,,,,0.03967,,,,,,,,,,0.04067,,,,,,,,,,0.04356,,,,,,,,,,0.03116,,,,,,,,,,0.03525,,,,,,,,,,0.03183,,,,,,,,,,0.03687,,,,,,,,,,0.03108,,,,,,,,,,0.00111,,,,,,,,,,0.00106,,,,,,,,,,0.0011,,,,,,,,,,0.00113,,,,,,,,,,0.00093,,,,,,,,,,0.00096,,,,,,,,,,0.00092,,,,,,,,,,0.001,,,,,,,,,,0.00093,,,,,,,,,,0.03077,,,,,,,,,,0.03163,,,,,,,,,,0.03423,,,,,,,,,,0.02924,,,,,,,,,,0.03333,,,,,,,,,,0.03085,,,,,,,,,,0.03071,,,,,,,,,,0.03223,,,,,,,,,,0.03162,,,,,,,,,,0.00588,,,,,,,,,,0.0059,,,,,,,,,,0.0063,,,,,,,,,,0.00574,,,,,,,,,,0.00585,,,,,,,,,,0.00559,,,,,,,,,,0.0055,,,,,,,,,,0.00584,,,,,,,,,,0.00562,,,,,,,,,,0.00193,,,,,,,,,,0.00194,,,,,,,,,,0.00198,,,,,,,,,,0.00193,,,,,,,,,,0.00197,,,,,,,,,,0.00194,,,,,,,,,,0.00195,,,,,,,,,,0.00196,,,,,,,,,,0.00192,,,,,,,,,,0.06931,,,,,,,,,,0.059,,,,,,,,,,0.06762,,,,,,,,,,0.07837,,,,,,,,,,0.03011,,,,,,,,,,0.03848,,,,,,,,,,0.02827,,,,,,,,,,0.04427,,,,,,,,,,0.02683 +Mini car,ELC,1990,0.02838,,,,,,,,,,0.02935,,,,,,,,,,0.03186,,,,,,,,,,0.02676,,,,,,,,,,0.0314,,,,,,,,,,0.02885,,,,,,,,,,0.0288,,,,,,,,,,0.03013,,,,,,,,,,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,1995,0.02838,0.02838,,,,,,,,,0.02935,0.02935,,,,,,,,,0.03186,0.03186,,,,,,,,,0.02676,0.02676,,,,,,,,,0.0314,0.0314,,,,,,,,,0.02885,0.02885,,,,,,,,,0.0288,0.0288,,,,,,,,,0.03013,0.03013,,,,,,,,,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2000,0.02838,0.02838,0.02838,,,,,,,,0.02935,0.02935,0.02935,,,,,,,,0.03186,0.03186,0.03186,,,,,,,,0.02676,0.02676,0.02676,,,,,,,,0.0314,0.0314,0.0314,,,,,,,,0.02885,0.02885,0.02885,,,,,,,,0.0288,0.0288,0.0288,,,,,,,,0.03013,0.03013,0.03013,,,,,,,,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.01478,0.02069,0.04094,,,,,,,,0.01296,0.01811,0.03568,,,,,,,,0.01413,0.01978,0.03945,,,,,,,,0.0154,0.0216,0.04334,,,,,,,,0.00785,0.0109,0.02112,,,,,,,,0.00902,0.01256,0.02552,,,,,,,,0.00767,0.01064,0.02045,,,,,,,,0.01034,0.01442,0.02822,,,,,,,,0.00781,0.01083,0.02057,,,,,,,,0.0726,0.08533,0.13153,,,,,,,,0.07004,0.08102,0.12091,,,,,,,,0.07691,0.08889,0.1338,,,,,,,,0.07147,0.0849,0.13452,,,,,,,,0.06212,0.06846,0.09124,,,,,,,,0.06043,0.06778,0.09703,,,,,,,,0.05763,0.06384,0.08552,,,,,,,,0.06558,0.07426,0.10523,,,,,,,,0.05958,0.06591,0.08744,,,,,,,,0.0334,0.04466,0.08553,,,,,,,,0.03007,0.03979,0.07507,,,,,,,,0.0331,0.0437,0.08343,,,,,,,,0.03455,0.04644,0.09033,,,,,,,,0.02063,0.02625,0.04641,,,,,,,,0.02241,0.02891,0.05464,,,,,,,,0.01974,0.02524,0.04442,,,,,,,,0.02522,0.0329,0.0603,,,,,,,,0.02005,0.02566,0.0447,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2005,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00504,0.00812,0.01102,0.02474,,,,,,,0.00462,0.00723,0.0098,0.0218,,,,,,,0.00534,0.0067,0.00903,0.0237,,,,,,,0.00552,0.00818,0.01113,0.02588,,,,,,,0.00324,0.00511,0.00696,0.01373,,,,,,,0.00364,0.00523,0.00715,0.01551,,,,,,,0.00315,0.00482,0.00654,0.01308,,,,,,,0.00398,0.00575,0.00777,0.01747,,,,,,,0.00291,0.00437,0.00588,0.01294,,,,,,,0.05163,0.05814,0.06469,0.09556,,,,,,,0.05211,0.05754,0.06329,0.09019,,,,,,,0.05783,0.0604,0.06557,0.09875,,,,,,,0.04999,0.05557,0.06218,0.09559,,,,,,,0.05228,0.0561,0.06012,0.07502,,,,,,,0.04887,0.05207,0.05643,0.07479,,,,,,,0.04801,0.05141,0.05508,0.06939,,,,,,,0.0519,0.05553,0.05992,0.08152,,,,,,,0.04928,0.05222,0.05543,0.0709,,,,,,,0.01483,0.02059,0.02639,0.05371,,,,,,,0.01419,0.01901,0.02409,0.04789,,,,,,,0.01621,0.01849,0.02306,0.05241,,,,,,,0.01554,0.02048,0.02633,0.05588,,,,,,,0.01192,0.01531,0.01886,0.03205,,,,,,,0.01217,0.015,0.01872,0.0351,,,,,,,0.01122,0.01423,0.01748,0.03015,,,,,,,0.01311,0.01632,0.02021,0.03932,,,,,,,0.01093,0.01353,0.01637,0.03006,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2010,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00301,0.00509,0.00712,0.01775,,,,,,,0.00281,0.00473,0.00664,0.01592,,,,,,,0.00256,0.00429,0.00692,0.01704,,,,,,,0.00303,0.00513,0.00734,0.01846,,,,,,,0.00246,0.00407,0.00541,0.011,,,,,,,0.0024,0.00395,0.00562,0.01201,,,,,,,0.00234,0.00384,0.0051,0.01035,,,,,,,0.00245,0.00407,0.00586,0.01314,,,,,,,0.00208,0.00342,0.00489,0.01008,,,,,,,0.04752,0.05224,0.05696,0.08086,,,,,,,0.0484,0.05268,0.05707,0.07783,,,,,,,0.05185,0.05568,0.06186,0.08466,,,,,,,0.04478,0.04956,0.05472,0.07989,,,,,,,0.05063,0.05406,0.05699,0.06929,,,,,,,0.04622,0.04976,0.05328,0.06743,,,,,,,0.04628,0.04947,0.05218,0.06366,,,,,,,0.04869,0.05219,0.05622,0.07238,,,,,,,0.04758,0.05036,0.05357,0.06486,,,,,,,0.0112,0.01538,0.01955,0.04069,,,,,,,0.01092,0.01471,0.01859,0.03696,,,,,,,0.01092,0.01432,0.01978,0.03995,,,,,,,0.01094,0.01517,0.01973,0.04199,,,,,,,0.01047,0.01351,0.0161,0.02697,,,,,,,0.00983,0.01282,0.01608,0.02859,,,,,,,0.0097,0.01252,0.01492,0.02508,,,,,,,0.01028,0.01337,0.01694,0.03123,,,,,,,0.00943,0.01189,0.01473,0.02472,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2015,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00261,0.0044,0.00637,0.01193,,,,,,,0.00249,0.00421,0.00607,0.01105,,,,,,,0.00227,0.00431,0.00623,0.01155,,,,,,,0.0026,0.00446,0.00647,0.01226,,,,,,,0.00227,0.0037,0.00522,0.00867,,,,,,,0.00219,0.00377,0.00535,0.00911,,,,,,,0.00216,0.00352,0.00495,0.00814,,,,,,,0.00221,0.00386,0.00549,0.00958,,,,,,,0.00193,0.00339,0.00475,0.00782,,,,,,,0.04653,0.05047,0.05497,0.06791,,,,,,,0.0476,0.05136,0.05555,0.06705,,,,,,,0.05113,0.05565,0.06003,0.07242,,,,,,,0.04369,0.0478,0.05243,0.06598,,,,,,,0.05018,0.05317,0.05648,0.06419,,,,,,,0.04592,0.0491,0.05258,0.06106,,,,,,,0.04587,0.0487,0.05178,0.05884,,,,,,,0.0481,0.05163,0.05526,0.06453,,,,,,,0.04723,0.05027,0.0532,0.05995,,,,,,,0.01033,0.01381,0.0178,0.02925,,,,,,,0.01022,0.01354,0.01725,0.02742,,,,,,,0.01029,0.01429,0.01817,0.02912,,,,,,,0.00997,0.01361,0.01771,0.0297,,,,,,,0.01007,0.01272,0.01565,0.02247,,,,,,,0.00942,0.01238,0.01546,0.02296,,,,,,,0.00934,0.01184,0.01457,0.02082,,,,,,,0.00976,0.01288,0.01609,0.02429,,,,,,,0.00912,0.01181,0.01441,0.02038,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2020,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00228,0.0037,0.00491,0.00876,,,,,,,0.0022,0.00354,0.00468,0.00822,,,,,,,0.00223,0.00361,0.00478,0.00849,,,,,,,0.00231,0.00374,0.00499,0.00896,,,,,,,0.00196,0.00312,0.00404,0.00679,,,,,,,0.00199,0.00318,0.00414,0.00703,,,,,,,0.00188,0.00297,0.00384,0.00638,,,,,,,0.00204,0.00326,0.00426,0.00732,,,,,,,0.00182,0.00288,0.00371,0.00616,,,,,,,0.04579,0.04893,0.05175,0.06081,,,,,,,0.04696,0.04992,0.05253,0.06079,,,,,,,0.05109,0.05414,0.05685,0.06556,,,,,,,0.04303,0.04624,0.04913,0.05855,,,,,,,0.04954,0.05199,0.05402,0.06016,,,,,,,0.04532,0.04787,0.05001,0.05656,,,,,,,0.04527,0.04759,0.04947,0.05512,,,,,,,0.04774,0.05038,0.05263,0.05962,,,,,,,0.04701,0.04925,0.05106,0.05649,,,,,,,0.00968,0.01246,0.01494,0.02296,,,,,,,0.00965,0.01227,0.01457,0.02189,,,,,,,0.01025,0.01295,0.01535,0.02306,,,,,,,0.00939,0.01222,0.01478,0.02312,,,,,,,0.0095,0.01168,0.01347,0.0189,,,,,,,0.00904,0.01129,0.01318,0.01898,,,,,,,0.00881,0.01086,0.01252,0.01752,,,,,,,0.00944,0.01177,0.01376,0.01994,,,,,,,0.00893,0.01091,0.01251,0.01731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2025,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00151,0.00239,0.00317,0.00631,,,,,,,0.00145,0.00229,0.00303,0.00595,,,,,,,0.00147,0.00233,0.00309,0.00613,,,,,,,0.00152,0.00241,0.00322,0.00643,,,,,,,0.0013,0.00202,0.00262,0.00495,,,,,,,0.00132,0.00206,0.00268,0.00512,,,,,,,0.00124,0.00192,0.00249,0.00465,,,,,,,0.00135,0.00211,0.00276,0.00532,,,,,,,0.0012,0.00187,0.00241,0.00451,,,,,,,0.04412,0.04607,0.04789,0.05522,,,,,,,0.04537,0.04721,0.04889,0.05565,,,,,,,0.04946,0.05135,0.0531,0.06018,,,,,,,0.04133,0.04332,0.04518,0.05273,,,,,,,0.04816,0.04969,0.05101,0.05618,,,,,,,0.04391,0.04549,0.04688,0.05237,,,,,,,0.04396,0.0454,0.04663,0.05139,,,,,,,0.04629,0.04793,0.04939,0.05519,,,,,,,0.04575,0.04714,0.04832,0.05295,,,,,,,0.0082,0.00992,0.01153,0.01802,,,,,,,0.00824,0.00987,0.01136,0.01734,,,,,,,0.00881,0.01048,0.01204,0.01829,,,,,,,0.00788,0.00964,0.01129,0.01797,,,,,,,0.00828,0.00964,0.0108,0.01538,,,,,,,0.00779,0.00919,0.01042,0.01527,,,,,,,0.00765,0.00892,0.01001,0.01422,,,,,,,0.00815,0.0096,0.0109,0.01603,,,,,,,0.00781,0.00905,0.01009,0.01418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2030,,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0015,0.00238,0.00316,0.00522,,,,,,,0.00145,0.00228,0.00301,0.00492,,,,,,,0.00147,0.00232,0.00308,0.00506,,,,,,,0.00152,0.00241,0.0032,0.00532,,,,,,,0.0013,0.00202,0.00261,0.00411,,,,,,,0.00131,0.00205,0.00267,0.00425,,,,,,,0.00124,0.00192,0.00247,0.00387,,,,,,,0.00134,0.0021,0.00275,0.00441,,,,,,,0.0012,0.00186,0.00241,0.00375,,,,,,,0.04411,0.04606,0.04785,0.0527,,,,,,,0.04536,0.0472,0.04886,0.05331,,,,,,,0.04945,0.05134,0.05307,0.05774,,,,,,,0.04132,0.0433,0.04513,0.05015,,,,,,,0.04815,0.04968,0.05098,0.05435,,,,,,,0.04391,0.04549,0.04686,0.05044,,,,,,,0.04395,0.04539,0.04659,0.0497,,,,,,,0.04628,0.04792,0.04937,0.05316,,,,,,,0.04575,0.04714,0.04832,0.05129,,,,,,,0.00819,0.00991,0.0115,0.01579,,,,,,,0.00824,0.00986,0.01133,0.01527,,,,,,,0.0088,0.01047,0.012,0.01614,,,,,,,0.00787,0.00963,0.01125,0.01568,,,,,,,0.00828,0.00963,0.01078,0.01376,,,,,,,0.00779,0.00919,0.0104,0.01357,,,,,,,0.00764,0.00892,0.00998,0.01273,,,,,,,0.00815,0.0096,0.01088,0.01423,,,,,,,0.00781,0.00904,0.01009,0.01272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2035,,,,,,,0.02838,0.02838,0.02838,0.02838,,,,,,,0.02935,0.02935,0.02935,0.02935,,,,,,,0.03186,0.03186,0.03186,0.03186,,,,,,,0.02676,0.02676,0.02676,0.02676,,,,,,,0.0314,0.0314,0.0314,0.0314,,,,,,,0.02885,0.02885,0.02885,0.02885,,,,,,,0.0288,0.0288,0.0288,0.0288,,,,,,,0.03013,0.03013,0.03013,0.03013,,,,,,,0.0297,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0015,0.00237,0.00316,0.00483,,,,,,,0.00144,0.00227,0.00302,0.00456,,,,,,,0.00147,0.00231,0.00308,0.00469,,,,,,,0.00151,0.00239,0.00321,0.00493,,,,,,,0.00129,0.00201,0.00262,0.00382,,,,,,,0.00131,0.00204,0.00268,0.00394,,,,,,,0.00123,0.00191,0.00248,0.0036,,,,,,,0.00134,0.0021,0.00275,0.00409,,,,,,,0.0012,0.00186,0.00241,0.00347,,,,,,,0.0441,0.04603,0.04786,0.05182,,,,,,,0.04535,0.04717,0.04887,0.0525,,,,,,,0.04944,0.05131,0.05308,0.05689,,,,,,,0.04131,0.04326,0.04515,0.04926,,,,,,,0.04814,0.04966,0.05099,0.05371,,,,,,,0.0439,0.04546,0.04687,0.04977,,,,,,,0.04395,0.04537,0.04661,0.04911,,,,,,,0.04627,0.0479,0.04938,0.05245,,,,,,,0.04574,0.04713,0.04832,0.0507,,,,,,,0.00818,0.00989,0.01151,0.01501,,,,,,,0.00823,0.00983,0.01134,0.01455,,,,,,,0.00879,0.01045,0.01202,0.01539,,,,,,,0.00786,0.00959,0.01127,0.0149,,,,,,,0.00827,0.00961,0.01079,0.01319,,,,,,,0.00778,0.00917,0.01041,0.01297,,,,,,,0.00764,0.00889,0.00999,0.01221,,,,,,,0.00814,0.00958,0.01088,0.0136,,,,,,,0.00781,0.00904,0.01009,0.0122,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2040,,,,,,,,0.02838,0.02838,0.02838,,,,,,,,0.02935,0.02935,0.02935,,,,,,,,0.03186,0.03186,0.03186,,,,,,,,0.02676,0.02676,0.02676,,,,,,,,0.0314,0.0314,0.0314,,,,,,,,0.02885,0.02885,0.02885,,,,,,,,0.0288,0.0288,0.0288,,,,,,,,0.03013,0.03013,0.03013,,,,,,,,0.0297,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00149,0.00237,0.00317,,,,,,,,0.00144,0.00228,0.00302,,,,,,,,0.00146,0.00232,0.00309,,,,,,,,0.0015,0.0024,0.00322,,,,,,,,0.00129,0.00201,0.00262,,,,,,,,0.0013,0.00205,0.00268,,,,,,,,0.00123,0.00191,0.00249,,,,,,,,0.00133,0.0021,0.00276,,,,,,,,0.0012,0.00186,0.00241,,,,,,,,0.04408,0.04604,0.04788,,,,,,,,0.04534,0.04718,0.04888,,,,,,,,0.04942,0.05132,0.0531,,,,,,,,0.04128,0.04328,0.04518,,,,,,,,0.04813,0.04966,0.051,,,,,,,,0.04388,0.04547,0.04688,,,,,,,,0.04393,0.04538,0.04662,,,,,,,,0.04626,0.04791,0.04938,,,,,,,,0.04574,0.04713,0.04832,,,,,,,,0.00817,0.00989,0.01152,,,,,,,,0.00821,0.00984,0.01135,,,,,,,,0.00878,0.01046,0.01203,,,,,,,,0.00784,0.00961,0.01129,,,,,,,,0.00826,0.00962,0.0108,,,,,,,,0.00777,0.00917,0.01042,,,,,,,,0.00762,0.0089,0.01,,,,,,,,0.00813,0.00959,0.01089,,,,,,,,0.0078,0.00904,0.01009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2045,,,,,,,,,0.02838,0.02838,,,,,,,,,0.02935,0.02935,,,,,,,,,0.03186,0.03186,,,,,,,,,0.02676,0.02676,,,,,,,,,0.0314,0.0314,,,,,,,,,0.02885,0.02885,,,,,,,,,0.0288,0.0288,,,,,,,,,0.03013,0.03013,,,,,,,,,0.0297,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00149,0.00238,,,,,,,,,0.00144,0.00228,,,,,,,,,0.00146,0.00232,,,,,,,,,0.00151,0.00241,,,,,,,,,0.00129,0.00202,,,,,,,,,0.00131,0.00205,,,,,,,,,0.00123,0.00192,,,,,,,,,0.00134,0.0021,,,,,,,,,0.0012,0.00186,,,,,,,,,0.04409,0.04605,,,,,,,,,0.04534,0.04719,,,,,,,,,0.04943,0.05133,,,,,,,,,0.04129,0.04329,,,,,,,,,0.04814,0.04967,,,,,,,,,0.04389,0.04548,,,,,,,,,0.04394,0.04539,,,,,,,,,0.04627,0.04792,,,,,,,,,0.04574,0.04713,,,,,,,,,0.00817,0.00991,,,,,,,,,0.00822,0.00985,,,,,,,,,0.00878,0.01047,,,,,,,,,0.00785,0.00962,,,,,,,,,0.00826,0.00962,,,,,,,,,0.00777,0.00918,,,,,,,,,0.00763,0.00891,,,,,,,,,0.00813,0.00959,,,,,,,,,0.0078,0.00904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,ELC,2050,,,,,,,,,,0.02838,,,,,,,,,,0.02935,,,,,,,,,,0.03186,,,,,,,,,,0.02676,,,,,,,,,,0.0314,,,,,,,,,,0.02885,,,,,,,,,,0.0288,,,,,,,,,,0.03013,,,,,,,,,,0.0297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0015,,,,,,,,,,0.00144,,,,,,,,,,0.00146,,,,,,,,,,0.00151,,,,,,,,,,0.00129,,,,,,,,,,0.00131,,,,,,,,,,0.00123,,,,,,,,,,0.00134,,,,,,,,,,0.0012,,,,,,,,,,0.0441,,,,,,,,,,0.04535,,,,,,,,,,0.04944,,,,,,,,,,0.0413,,,,,,,,,,0.04814,,,,,,,,,,0.0439,,,,,,,,,,0.04395,,,,,,,,,,0.04627,,,,,,,,,,0.04574,,,,,,,,,,0.00818,,,,,,,,,,0.00823,,,,,,,,,,0.00879,,,,,,,,,,0.00786,,,,,,,,,,0.00827,,,,,,,,,,0.00778,,,,,,,,,,0.00764,,,,,,,,,,0.00814,,,,,,,,,,0.0078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Mini car,GSL,1990,0.06261,,,,,,,,,,0.05367,,,,,,,,,,0.06074,,,,,,,,,,0.06995,,,,,,,,,,0.02936,,,,,,,,,,0.03585,,,,,,,,,,0.02793,,,,,,,,,,0.04116,,,,,,,,,,0.0271,,,,,,,,,,0.07141,,,,,,,,,,0.06107,,,,,,,,,,0.07705,,,,,,,,,,0.07896,,,,,,,,,,0.06496,,,,,,,,,,0.07184,,,,,,,,,,0.0665,,,,,,,,,,0.06484,,,,,,,,,,0.05566,,,,,,,,,,45.44025,,,,,,,,,,40.29902,,,,,,,,,,49.74959,,,,,,,,,,51.52873,,,,,,,,,,42.68365,,,,,,,,,,47.22271,,,,,,,,,,44.46094,,,,,,,,,,42.70044,,,,,,,,,,35.6,,,,,,,,,,461.18853,,,,,,,,,,462.94889,,,,,,,,,,471.5735,,,,,,,,,,461.02493,,,,,,,,,,463.27304,,,,,,,,,,458.52531,,,,,,,,,,457.45681,,,,,,,,,,462.57365,,,,,,,,,,452.50612,,,,,,,,,,0.05982,,,,,,,,,,0.06022,,,,,,,,,,0.06105,,,,,,,,,,0.06,,,,,,,,,,0.06102,,,,,,,,,,0.06073,,,,,,,,,,0.06019,,,,,,,,,,0.06072,,,,,,,,,,0.05981,,,,,,,,,,0.03629,,,,,,,,,,0.03635,,,,,,,,,,0.03639,,,,,,,,,,0.03614,,,,,,,,,,0.03636,,,,,,,,,,0.03622,,,,,,,,,,0.03628,,,,,,,,,,0.03638,,,,,,,,,,0.03642,,,,,,,,,,2.7661,,,,,,,,,,2.63331,,,,,,,,,,2.92629,,,,,,,,,,3.07741,,,,,,,,,,2.86105,,,,,,,,,,3.00445,,,,,,,,,,2.85615,,,,,,,,,,3.0173,,,,,,,,,,2.48338,,,,,,,,,,0.113,,,,,,,,,,0.0991,,,,,,,,,,0.10938,,,,,,,,,,0.12239,,,,,,,,,,0.05882,,,,,,,,,,0.06945,,,,,,,,,,0.05695,,,,,,,,,,0.07831,,,,,,,,,,0.05613,,,,,,,,,,0.28025,,,,,,,,,,0.2495,,,,,,,,,,0.27731,,,,,,,,,,0.30284,,,,,,,,,,0.16024,,,,,,,,,,0.18226,,,,,,,,,,0.15315,,,,,,,,,,0.20354,,,,,,,,,,0.15075,,,,,,,,,,0.22657,,,,,,,,,,0.19863,,,,,,,,,,0.22133,,,,,,,,,,0.24777,,,,,,,,,,0.11811,,,,,,,,,,0.13953,,,,,,,,,,0.11381,,,,,,,,,,0.15738,,,,,,,,,,0.111,,,,,,,,,,0.0203,,,,,,,,,,0.02315,,,,,,,,,,0.03295,,,,,,,,,,0.03009,,,,,,,,,,0.02677,,,,,,,,,,0.0295,,,,,,,,,,0.02671,,,,,,,,,,0.02644,,,,,,,,,,0.01225,,,,,,,,,,4.27258,,,,,,,,,,3.81754,,,,,,,,,,4.54577,,,,,,,,,,4.70482,,,,,,,,,,4.21618,,,,,,,,,,4.48853,,,,,,,,,,4.30598,,,,,,,,,,4.24389,,,,,,,,,,3.69123,,,,,,,,, +Mini car,GSL,1995,0.01141,0.03121,,,,,,,,,0.00983,0.02678,,,,,,,,,0.01108,0.03022,,,,,,,,,0.01265,0.03479,,,,,,,,,0.0055,0.01475,,,,,,,,,0.00665,0.01798,,,,,,,,,0.00525,0.01407,,,,,,,,,0.00759,0.02059,,,,,,,,,0.00511,0.01366,,,,,,,,,0.03944,0.04576,,,,,,,,,0.03664,0.04083,,,,,,,,,0.04429,0.05065,,,,,,,,,0.04565,0.05449,,,,,,,,,0.03755,0.04264,,,,,,,,,0.0407,0.04723,,,,,,,,,0.03721,0.04302,,,,,,,,,0.03835,0.04438,,,,,,,,,0.03085,0.03465,,,,,,,,,16.78884,22.88556,,,,,,,,,15.98794,20.96026,,,,,,,,,19.21178,25.22672,,,,,,,,,20.22435,27.00424,,,,,,,,,16.79945,21.89209,,,,,,,,,18.19395,23.98917,,,,,,,,,17.25291,22.63177,,,,,,,,,16.98237,22.80651,,,,,,,,,13.3002,17.89803,,,,,,,,,378.38265,396.10883,,,,,,,,,381.2422,398.3893,,,,,,,,,387.88302,405.64819,,,,,,,,,378.29095,396.03031,,,,,,,,,386.37736,401.23522,,,,,,,,,380.52605,396.11143,,,,,,,,,382.11667,396.50662,,,,,,,,,383.74793,399.55686,,,,,,,,,376.30532,391.17496,,,,,,,,,0.04393,0.0536,,,,,,,,,0.04426,0.05395,,,,,,,,,0.04496,0.05466,,,,,,,,,0.04399,0.05381,,,,,,,,,0.04492,0.05464,,,,,,,,,0.04459,0.05443,,,,,,,,,0.04421,0.05393,,,,,,,,,0.04465,0.05439,,,,,,,,,0.04399,0.05357,,,,,,,,,0.1018,0.08332,,,,,,,,,0.102,0.08348,,,,,,,,,0.10216,0.0836,,,,,,,,,0.10124,0.08287,,,,,,,,,0.10204,0.08351,,,,,,,,,0.1015,0.08308,,,,,,,,,0.10177,0.08329,,,,,,,,,0.1021,0.08356,,,,,,,,,0.10228,0.08369,,,,,,,,,2.07933,2.50022,,,,,,,,,2.02759,2.36568,,,,,,,,,2.24294,2.56978,,,,,,,,,2.33637,2.81169,,,,,,,,,2.17733,2.606,,,,,,,,,2.28807,2.71654,,,,,,,,,2.18766,2.60941,,,,,,,,,2.32345,2.7651,,,,,,,,,1.91582,2.25828,,,,,,,,,0.02337,0.05904,,,,,,,,,0.0206,0.0518,,,,,,,,,0.02268,0.05696,,,,,,,,,0.02509,0.06384,,,,,,,,,0.01249,0.03095,,,,,,,,,0.0146,0.03651,,,,,,,,,0.01211,0.03006,,,,,,,,,0.01639,0.04103,,,,,,,,,0.01198,0.02963,,,,,,,,,0.07914,0.15768,,,,,,,,,0.07398,0.14228,,,,,,,,,0.08149,0.15673,,,,,,,,,0.08193,0.16807,,,,,,,,,0.05814,0.09778,,,,,,,,,0.06035,0.10765,,,,,,,,,0.05466,0.09325,,,,,,,,,0.06556,0.11936,,,,,,,,,0.05495,0.09268,,,,,,,,,0.04867,0.11814,,,,,,,,,0.04336,0.10378,,,,,,,,,0.04811,0.11466,,,,,,,,,0.05236,0.12856,,,,,,,,,0.0278,0.06286,,,,,,,,,0.03169,0.07353,,,,,,,,,0.02669,0.06082,,,,,,,,,0.03532,0.08291,,,,,,,,,0.02626,0.05963,,,,,,,,,0.01661,0.00842,,,,,,,,,0.01905,0.00855,,,,,,,,,0.02713,0.00887,,,,,,,,,0.0247,0.01482,,,,,,,,,0.02232,0.00873,,,,,,,,,0.02448,0.00866,,,,,,,,,0.0223,0.01181,,,,,,,,,0.02188,0.01347,,,,,,,,,0.01015,0.00486,,,,,,,,,1.81297,2.58416,,,,,,,,,1.74397,2.43547,,,,,,,,,2.01266,2.82579,,,,,,,,,2.08667,2.99372,,,,,,,,,1.87427,2.72045,,,,,,,,,1.94673,2.84104,,,,,,,,,1.85754,2.71927,,,,,,,,,1.92176,2.78589,,,,,,,,,1.59187,2.31303,,,,,,,, +Mini car,GSL,2000,0.00446,0.00727,0.02121,,,,,,,,0.00385,0.00626,0.01818,,,,,,,,0.00432,0.00704,0.02055,,,,,,,,0.00488,0.00799,0.02359,,,,,,,,0.00215,0.00348,0.00996,,,,,,,,0.00258,0.00418,0.01212,,,,,,,,0.00206,0.00333,0.00949,,,,,,,,0.00297,0.00482,0.01394,,,,,,,,0.00204,0.00329,0.00926,,,,,,,,0.018,0.01924,0.03098,,,,,,,,0.01687,0.01844,0.02788,,,,,,,,0.02096,0.0225,0.03556,,,,,,,,0.02187,0.02406,0.03689,,,,,,,,0.01593,0.01832,0.02908,,,,,,,,0.01765,0.02,0.0316,,,,,,,,0.01572,0.01841,0.02808,,,,,,,,0.01718,0.01951,0.02948,,,,,,,,0.01344,0.01592,0.02304,,,,,,,,7.9736,10.71224,16.31106,,,,,,,,7.63036,10.36213,15.21624,,,,,,,,9.24745,12.38733,18.63257,,,,,,,,9.85903,13.26364,19.40211,,,,,,,,7.08158,10.17429,15.47276,,,,,,,,7.84768,11.09523,16.73859,,,,,,,,7.20494,10.48973,15.41956,,,,,,,,7.64135,10.84985,15.91466,,,,,,,,5.84893,8.72488,12.54593,,,,,,,,376.89916,380.04698,390.21548,,,,,,,,380.22649,383.1569,392.65296,,,,,,,,386.71942,389.79323,399.70862,,,,,,,,377.04161,380.20786,390.42822,,,,,,,,387.04471,389.14643,396.12873,,,,,,,,380.64318,383.06092,390.92793,,,,,,,,383.03518,385.04841,391.71743,,,,,,,,383.69574,386.15466,394.21333,,,,,,,,376.31992,378.50164,385.74944,,,,,,,,0.02444,0.02719,0.04141,,,,,,,,0.02454,0.02728,0.04157,,,,,,,,0.02472,0.02744,0.04186,,,,,,,,0.02468,0.02748,0.0418,,,,,,,,0.02474,0.02748,0.04191,,,,,,,,0.02483,0.02762,0.04206,,,,,,,,0.02458,0.02734,0.04164,,,,,,,,0.02471,0.02746,0.04186,,,,,,,,0.02432,0.02703,0.0412,,,,,,,,0.05942,0.07773,0.0825,,,,,,,,0.05955,0.07791,0.08268,,,,,,,,0.05972,0.07812,0.08287,,,,,,,,0.05901,0.07719,0.08197,,,,,,,,0.05963,0.078,0.08275,,,,,,,,0.05921,0.07746,0.08223,,,,,,,,0.0594,0.07771,0.08247,,,,,,,,0.05963,0.07801,0.08277,,,,,,,,0.05976,0.07818,0.08294,,,,,,,,1.00125,1.3395,1.99915,,,,,,,,0.98492,1.3305,1.95065,,,,,,,,1.16176,1.47162,2.16103,,,,,,,,1.20225,1.58687,2.26082,,,,,,,,1.10189,1.46064,2.16643,,,,,,,,1.15729,1.50595,2.22061,,,,,,,,1.11845,1.48987,2.09885,,,,,,,,1.17031,1.55114,2.20843,,,,,,,,0.96099,1.30162,1.8246,,,,,,,,0.00947,0.01481,0.03898,,,,,,,,0.00834,0.01302,0.03415,,,,,,,,0.00914,0.01429,0.03766,,,,,,,,0.00995,0.0156,0.04186,,,,,,,,0.00505,0.00783,0.0203,,,,,,,,0.00581,0.00904,0.0238,,,,,,,,0.00491,0.00762,0.01968,,,,,,,,0.00662,0.01032,0.02697,,,,,,,,0.00497,0.00771,0.01958,,,,,,,,0.0488,0.06032,0.11423,,,,,,,,0.04731,0.05732,0.10422,,,,,,,,0.05174,0.06271,0.11486,,,,,,,,0.04852,0.06083,0.11967,,,,,,,,0.04215,0.04798,0.07515,,,,,,,,0.04133,0.04812,0.08054,,,,,,,,0.03924,0.04494,0.07108,,,,,,,,0.04436,0.05226,0.08886,,,,,,,,0.04011,0.04585,0.07146,,,,,,,,0.02183,0.03202,0.07971,,,,,,,,0.01976,0.02863,0.07011,,,,,,,,0.02179,0.03149,0.07762,,,,,,,,0.0228,0.0337,0.08574,,,,,,,,0.01365,0.0188,0.04284,,,,,,,,0.01486,0.02087,0.04955,,,,,,,,0.01304,0.01808,0.04121,,,,,,,,0.01657,0.02355,0.05593,,,,,,,,0.01313,0.01821,0.04086,,,,,,,,0.01653,0.00808,0.00747,,,,,,,,0.01899,0.00822,0.00751,,,,,,,,0.02706,0.00853,0.00765,,,,,,,,0.02462,0.01425,0.00747,,,,,,,,0.02235,0.00847,0.00758,,,,,,,,0.02449,0.00838,0.00748,,,,,,,,0.02235,0.01146,0.0075,,,,,,,,0.02186,0.01302,0.00675,,,,,,,,0.01013,0.00469,0.00346,,,,,,,,0.72711,1.06387,2.0172,,,,,,,,0.68577,1.02453,1.89637,,,,,,,,0.81315,1.20741,2.24646,,,,,,,,0.86921,1.29736,2.34636,,,,,,,,0.62061,1.00677,2.04738,,,,,,,,0.68204,1.08708,2.14188,,,,,,,,0.61212,1.00282,1.99881,,,,,,,,0.69779,1.09614,2.10942,,,,,,,,0.5325,0.88513,1.7362,,,,,,, +Mini car,GSL,2005,0.00157,0.00229,0.00372,0.01236,,,,,,,0.00142,0.00198,0.00321,0.01065,,,,,,,0.00176,0.00175,0.00281,0.01185,,,,,,,0.00186,0.00245,0.00401,0.01369,,,,,,,0.00091,0.00128,0.00207,0.00604,,,,,,,0.00109,0.00133,0.00215,0.0072,,,,,,,0.00085,0.00116,0.00187,0.00562,,,,,,,0.00118,0.00149,0.0024,0.0082,,,,,,,0.00074,0.00098,0.00156,0.00542,,,,,,,0.01901,0.0139,0.01373,0.02039,,,,,,,0.01715,0.01239,0.01274,0.01857,,,,,,,0.01941,0.01391,0.01426,0.0222,,,,,,,0.02078,0.01709,0.01603,0.0243,,,,,,,0.01115,0.00933,0.01045,0.01687,,,,,,,0.01327,0.0107,0.01165,0.01873,,,,,,,0.01076,0.00994,0.01037,0.01641,,,,,,,0.0144,0.01194,0.01151,0.01848,,,,,,,0.00868,0.00738,0.00807,0.01461,,,,,,,3.65985,4.92001,6.28176,10.36951,,,,,,,3.47267,4.74078,6.25313,9.92852,,,,,,,3.93967,5.77433,7.69159,11.84093,,,,,,,4.26506,6.37793,7.63642,12.70471,,,,,,,3.14949,4.69452,6.45624,10.09242,,,,,,,3.39607,5.11373,6.96781,10.81847,,,,,,,3.2294,5.16195,6.51177,10.17918,,,,,,,3.49226,5.5873,6.66755,10.54744,,,,,,,2.47971,4.32598,5.73291,8.72071,,,,,,,383.61442,385.38819,389.77412,396.47833,,,,,,,387.18708,388.82902,392.91571,398.96561,,,,,,,393.48041,395.21334,399.46747,405.9233,,,,,,,383.88261,385.64187,390.09117,396.91151,,,,,,,394.88049,396.01522,398.98771,402.60517,,,,,,,388.20643,389.53503,392.91936,397.42511,,,,,,,391.1224,392.19344,395.0643,398.40755,,,,,,,391.19,392.54205,395.99785,400.65679,,,,,,,383.91967,385.1314,388.19316,391.9956,,,,,,,0.00715,0.00771,0.00905,0.02207,,,,,,,0.00716,0.00772,0.00907,0.02212,,,,,,,0.00717,0.00773,0.00907,0.02218,,,,,,,0.00725,0.00782,0.0092,0.02237,,,,,,,0.00719,0.00775,0.00909,0.02222,,,,,,,0.00726,0.00783,0.0092,0.02243,,,,,,,0.00718,0.00774,0.0091,0.02218,,,,,,,0.0072,0.00776,0.00911,0.02225,,,,,,,0.00708,0.00763,0.00896,0.02189,,,,,,,0.02404,0.02736,0.03368,0.04793,,,,,,,0.02409,0.02742,0.03376,0.04803,,,,,,,0.02416,0.0275,0.03385,0.04815,,,,,,,0.02387,0.02717,0.03345,0.0476,,,,,,,0.02412,0.02746,0.0338,0.04808,,,,,,,0.02395,0.02727,0.03356,0.04777,,,,,,,0.02403,0.02735,0.03367,0.04791,,,,,,,0.02412,0.02746,0.0338,0.04809,,,,,,,0.02418,0.02752,0.03387,0.04819,,,,,,,0.26711,0.39195,0.51733,0.95688,,,,,,,0.26349,0.38223,0.51986,0.94325,,,,,,,0.30149,0.42923,0.57253,1.06658,,,,,,,0.29995,0.50062,0.6053,1.1359,,,,,,,0.26847,0.4098,0.55488,1.05341,,,,,,,0.28599,0.42851,0.57447,1.08888,,,,,,,0.27071,0.43957,0.54982,1.02772,,,,,,,0.29438,0.47188,0.56832,1.08909,,,,,,,0.21201,0.31363,0.41977,0.92727,,,,,,,0.00338,0.00483,0.00726,0.02167,,,,,,,0.00313,0.00433,0.0065,0.01916,,,,,,,0.00367,0.00404,0.00602,0.02089,,,,,,,0.00379,0.00502,0.00756,0.02314,,,,,,,0.00218,0.00305,0.00462,0.01197,,,,,,,0.00249,0.00315,0.00475,0.01369,,,,,,,0.00209,0.00284,0.00429,0.01139,,,,,,,0.00268,0.00344,0.00517,0.01533,,,,,,,0.00188,0.00252,0.00378,0.01121,,,,,,,0.03567,0.03875,0.0442,0.07646,,,,,,,0.03608,0.03858,0.04341,0.07162,,,,,,,0.03987,0.04042,0.04478,0.07816,,,,,,,0.03505,0.03765,0.04336,0.07854,,,,,,,0.03603,0.0378,0.04119,0.05725,,,,,,,0.03418,0.03548,0.03895,0.05868,,,,,,,0.03322,0.03476,0.03786,0.0533,,,,,,,0.03588,0.03744,0.04118,0.06366,,,,,,,0.03362,0.03492,0.0376,0.05371,,,,,,,0.01021,0.01293,0.01775,0.0463,,,,,,,0.00984,0.01205,0.01632,0.04128,,,,,,,0.01129,0.01178,0.01563,0.04516,,,,,,,0.01089,0.01319,0.01824,0.04936,,,,,,,0.00823,0.0098,0.0128,0.02701,,,,,,,0.00853,0.00968,0.01275,0.0302,,,,,,,0.00772,0.00908,0.01182,0.02549,,,,,,,0.00907,0.01044,0.01375,0.03364,,,,,,,0.00739,0.00854,0.01091,0.02517,,,,,,,0.01682,0.00819,0.00746,0.00253,,,,,,,0.01933,0.00834,0.00752,0.00255,,,,,,,0.02754,0.00865,0.00765,0.00259,,,,,,,0.02506,0.01446,0.00747,0.00253,,,,,,,0.0228,0.00862,0.00764,0.00257,,,,,,,0.02498,0.00852,0.00752,0.00254,,,,,,,0.02283,0.01167,0.00756,0.00254,,,,,,,0.02228,0.01324,0.00678,0.00252,,,,,,,0.01033,0.00477,0.00348,0.00231,,,,,,,0.39514,0.43204,0.59703,1.3187,,,,,,,0.35519,0.38936,0.55255,1.2417,,,,,,,0.40141,0.43233,0.61327,1.41594,,,,,,,0.43194,0.52177,0.68283,1.52729,,,,,,,0.22675,0.2889,0.45338,1.22545,,,,,,,0.2701,0.3289,0.50138,1.30004,,,,,,,0.21544,0.2995,0.44323,1.19594,,,,,,,0.30655,0.38403,0.52996,1.32507,,,,,,,0.18592,0.25556,0.39667,1.10333,,,,,, +Mini car,GSL,2010,,0.00112,0.00183,0.00304,0.00785,,,,,,,0.00099,0.0016,0.00268,0.00683,,,,,,,0.00085,0.00138,0.00286,0.00742,,,,,,,0.00121,0.00198,0.00333,0.00866,,,,,,,0.0007,0.00112,0.00176,0.00415,,,,,,,0.00071,0.00114,0.00198,0.0048,,,,,,,0.00064,0.00102,0.00159,0.00376,,,,,,,0.00077,0.00123,0.00216,0.00536,,,,,,,0.00054,0.00085,0.00151,0.00359,,,,,,,0.0157,0.01309,0.01131,0.01516,,,,,,,0.0136,0.0119,0.01032,0.01392,,,,,,,0.01484,0.01355,0.01166,0.01606,,,,,,,0.0187,0.01566,0.01349,0.01823,,,,,,,0.00936,0.01012,0.00894,0.01218,,,,,,,0.01043,0.01101,0.00971,0.01341,,,,,,,0.00981,0.01004,0.00889,0.01202,,,,,,,0.01235,0.01094,0.00994,0.01354,,,,,,,0.00787,0.0079,0.00846,0.01115,,,,,,,2.81533,4.28515,5.70965,7.96511,,,,,,,2.64095,4.20862,5.58461,7.74811,,,,,,,3.15879,5.09396,6.40765,9.09955,,,,,,,3.41534,5.04656,6.94936,9.82645,,,,,,,2.24206,4.09923,5.68289,7.89177,,,,,,,2.50182,4.45273,5.99996,8.42497,,,,,,,2.44908,4.1495,5.8058,8.03416,,,,,,,2.85086,4.35082,5.92444,8.2455,,,,,,,2.14836,3.72464,5.05971,6.92498,,,,,,,378.34318,381.0668,385.69408,394.85501,,,,,,,381.92659,384.43966,388.73293,397.32087,,,,,,,388.14052,390.76153,395.23755,404.18724,,,,,,,378.57539,381.32694,386.03125,395.35071,,,,,,,389.70767,391.44169,394.49287,400.93104,,,,,,,383.05742,385.07754,388.59252,395.82336,,,,,,,385.99822,387.65935,390.60209,396.83497,,,,,,,385.98142,388.05307,391.64271,399.01043,,,,,,,378.86597,380.6927,383.84057,390.36286,,,,,,,0.00688,0.00779,0.0093,0.01424,,,,,,,0.00689,0.0078,0.00932,0.01426,,,,,,,0.00691,0.00781,0.00931,0.01424,,,,,,,0.00697,0.0079,0.00945,0.01448,,,,,,,0.00692,0.00783,0.00934,0.01429,,,,,,,0.00699,0.00791,0.00946,0.01448,,,,,,,0.00691,0.00783,0.00935,0.01431,,,,,,,0.00693,0.00784,0.00936,0.01433,,,,,,,0.00682,0.00771,0.00921,0.01409,,,,,,,0.01689,0.01977,0.02529,0.03064,,,,,,,0.01693,0.01982,0.02535,0.0307,,,,,,,0.01698,0.01987,0.02542,0.03079,,,,,,,0.01678,0.01964,0.02511,0.03042,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01684,0.01971,0.0252,0.03053,,,,,,,0.01689,0.01977,0.02528,0.03062,,,,,,,0.01695,0.01984,0.02538,0.03074,,,,,,,0.01699,0.01989,0.02543,0.03081,,,,,,,0.10797,0.17736,0.18874,0.42449,,,,,,,0.10295,0.17662,0.1864,0.42077,,,,,,,0.10737,0.19377,0.20112,0.47463,,,,,,,0.12438,0.20769,0.21747,0.51286,,,,,,,0.09636,0.18234,0.18773,0.45915,,,,,,,0.10207,0.19153,0.19779,0.47921,,,,,,,0.10397,0.18197,0.1886,0.45281,,,,,,,0.11669,0.19084,0.20664,0.4837,,,,,,,0.07855,0.13872,0.18314,0.41752,,,,,,,0.00197,0.00306,0.00481,0.01236,,,,,,,0.00184,0.00285,0.00449,0.01118,,,,,,,0.00167,0.00257,0.00464,0.01189,,,,,,,0.00203,0.00318,0.00507,0.01315,,,,,,,0.0016,0.00244,0.00364,0.00792,,,,,,,0.00157,0.00239,0.0038,0.00865,,,,,,,0.00151,0.00229,0.00341,0.00741,,,,,,,0.0016,0.00245,0.00397,0.00935,,,,,,,0.00134,0.00201,0.00327,0.00717,,,,,,,0.03277,0.03528,0.03933,0.05653,,,,,,,0.0334,0.03568,0.03943,0.05459,,,,,,,0.0355,0.03752,0.04236,0.05884,,,,,,,0.03137,0.034,0.03842,0.057,,,,,,,0.03479,0.03659,0.0392,0.04866,,,,,,,0.03219,0.03398,0.03712,0.04793,,,,,,,0.032,0.03366,0.03606,0.04485,,,,,,,0.0336,0.03546,0.03886,0.05091,,,,,,,0.03248,0.03392,0.03665,0.04518,,,,,,,0.00764,0.00986,0.01345,0.02867,,,,,,,0.00746,0.00948,0.0128,0.02621,,,,,,,0.00742,0.00921,0.01349,0.02807,,,,,,,0.00763,0.00995,0.01387,0.03031,,,,,,,0.00714,0.00874,0.01104,0.01941,,,,,,,0.00677,0.00836,0.01114,0.02069,,,,,,,0.00663,0.00811,0.01023,0.01801,,,,,,,0.00705,0.00869,0.0117,0.02237,,,,,,,0.00638,0.00766,0.01007,0.01762,,,,,,,0.00804,0.00729,0.00246,0.00252,,,,,,,0.00819,0.00736,0.00248,0.00253,,,,,,,0.0085,0.00748,0.00252,0.00258,,,,,,,0.0142,0.0073,0.00246,0.00252,,,,,,,0.00848,0.00749,0.00252,0.00256,,,,,,,0.00838,0.00737,0.00248,0.00253,,,,,,,0.01149,0.00742,0.00249,0.00253,,,,,,,0.01302,0.00664,0.00246,0.00251,,,,,,,0.00469,0.00341,0.00226,0.0023,,,,,,,0.1834,0.2564,0.37494,0.87021,,,,,,,0.16013,0.23155,0.34523,0.82398,,,,,,,0.17656,0.26231,0.38423,0.91684,,,,,,,0.21798,0.30153,0.43831,1.0031,,,,,,,0.11355,0.19413,0.31418,0.79823,,,,,,,0.12554,0.21018,0.33298,0.84003,,,,,,,0.11604,0.18995,0.3086,0.78122,,,,,,,0.15086,0.22382,0.3534,0.86611,,,,,,,0.10507,0.17179,0.30158,0.74747,,,,, +Mini car,GSL,2015,,,0.00092,0.00146,0.0025,0.00526,,,,,,,0.00083,0.00133,0.00227,0.00471,,,,,,,0.00072,0.00139,0.00237,0.00497,,,,,,,0.00098,0.00156,0.00269,0.00571,,,,,,,0.00064,0.00097,0.00163,0.00318,,,,,,,0.00064,0.00106,0.00179,0.00355,,,,,,,0.00059,0.00089,0.00149,0.00288,,,,,,,0.00067,0.00112,0.0019,0.00383,,,,,,,0.0005,0.00084,0.00141,0.00273,,,,,,,0.01203,0.00913,0.00924,0.01145,,,,,,,0.01102,0.00846,0.00871,0.01074,,,,,,,0.0115,0.00942,0.00974,0.01214,,,,,,,0.01295,0.0107,0.01101,0.01374,,,,,,,0.00832,0.00744,0.00824,0.01003,,,,,,,0.00901,0.00805,0.00881,0.01081,,,,,,,0.00833,0.00742,0.00825,0.01002,,,,,,,0.00941,0.00823,0.00878,0.01079,,,,,,,0.00692,0.00715,0.0078,0.0094,,,,,,,2.06583,3.6226,4.92713,6.31237,,,,,,,2.03019,3.58601,4.92274,6.26672,,,,,,,2.29864,4.00651,5.62976,7.24134,,,,,,,2.26276,4.31008,6.07293,7.79439,,,,,,,1.83498,3.73579,5.34386,6.71193,,,,,,,1.97763,3.88292,5.56387,7.04799,,,,,,,1.87953,3.83436,5.47625,6.88076,,,,,,,1.9991,3.85766,5.4111,6.84761,,,,,,,1.75413,3.41091,4.74473,5.94053,,,,,,,338.57847,341.09603,343.67549,354.78827,,,,,,,341.7079,344.00277,346.28136,356.96524,,,,,,,347.29401,349.69827,352.11188,363.1334,,,,,,,338.82115,341.3785,344.02646,355.26598,,,,,,,348.39569,349.87174,351.05478,360.07829,,,,,,,342.56263,344.34647,345.95334,355.55556,,,,,,,345.07041,346.47751,347.58297,356.41349,,,,,,,345.18202,347.01345,348.6733,358.41328,,,,,,,338.71426,340.28094,341.58215,350.58905,,,,,,,0.00442,0.00499,0.00575,0.00808,,,,,,,0.00445,0.00501,0.00577,0.0081,,,,,,,0.00449,0.00505,0.00581,0.00812,,,,,,,0.00445,0.00503,0.0058,0.00819,,,,,,,0.00449,0.00506,0.00581,0.00814,,,,,,,0.00449,0.00506,0.00584,0.00821,,,,,,,0.00445,0.00501,0.00578,0.00812,,,,,,,0.00448,0.00505,0.00581,0.00815,,,,,,,0.00441,0.00497,0.00572,0.00801,,,,,,,0.01689,0.01958,0.02529,0.02574,,,,,,,0.01693,0.01962,0.02535,0.0258,,,,,,,0.01698,0.01968,0.02542,0.02587,,,,,,,0.01678,0.01944,0.02511,0.02556,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01684,0.01951,0.0252,0.02565,,,,,,,0.01689,0.01957,0.02528,0.02573,,,,,,,0.01695,0.01965,0.02538,0.02583,,,,,,,0.01699,0.01969,0.02543,0.02589,,,,,,,0.08395,0.11021,0.16233,0.23277,,,,,,,0.08296,0.10809,0.15989,0.22985,,,,,,,0.08345,0.11687,0.17199,0.25144,,,,,,,0.08834,0.12675,0.1866,0.27358,,,,,,,0.07368,0.1058,0.15887,0.2354,,,,,,,0.07856,0.11257,0.16823,0.24859,,,,,,,0.07498,0.10632,0.15996,0.23561,,,,,,,0.08151,0.11853,0.17604,0.25706,,,,,,,0.06022,0.10415,0.15546,0.22547,,,,,,,0.00175,0.00264,0.00429,0.00825,,,,,,,0.00167,0.00253,0.00409,0.00772,,,,,,,0.00152,0.00258,0.00418,0.00798,,,,,,,0.00179,0.00273,0.00445,0.00866,,,,,,,0.00152,0.00221,0.00351,0.00624,,,,,,,0.00148,0.00227,0.00362,0.00655,,,,,,,0.00144,0.00209,0.0033,0.00583,,,,,,,0.00149,0.00232,0.00372,0.00682,,,,,,,0.00128,0.00201,0.00317,0.0056,,,,,,,0.03221,0.03421,0.03795,0.04721,,,,,,,0.03297,0.03488,0.03838,0.04678,,,,,,,0.03513,0.03752,0.04114,0.04997,,,,,,,0.03071,0.03284,0.03678,0.04668,,,,,,,0.0346,0.03605,0.03886,0.04491,,,,,,,0.03198,0.03367,0.03664,0.04323,,,,,,,0.03182,0.03318,0.03579,0.04136,,,,,,,0.0333,0.03511,0.03819,0.04524,,,,,,,0.03234,0.03389,0.0364,0.04175,,,,,,,0.00715,0.00892,0.01223,0.02042,,,,,,,0.00709,0.00877,0.01187,0.0193,,,,,,,0.00709,0.00921,0.01241,0.02022,,,,,,,0.00704,0.00893,0.01241,0.02118,,,,,,,0.00697,0.00826,0.01074,0.01609,,,,,,,0.00658,0.00809,0.01071,0.01654,,,,,,,0.00648,0.00768,0.00999,0.01492,,,,,,,0.00678,0.00838,0.01111,0.01735,,,,,,,0.00626,0.00763,0.00985,0.01458,,,,,,,0.00648,0.00218,0.00219,0.00226,,,,,,,0.00654,0.00219,0.00221,0.00228,,,,,,,0.00665,0.00223,0.00225,0.00232,,,,,,,0.00648,0.00218,0.00219,0.00227,,,,,,,0.00667,0.00223,0.00224,0.0023,,,,,,,0.00656,0.0022,0.00221,0.00227,,,,,,,0.0066,0.00221,0.00222,0.00227,,,,,,,0.0059,0.00218,0.00219,0.00225,,,,,,,0.00303,0.00201,0.00201,0.00207,,,,,,,0.13385,0.19168,0.30942,0.59559,,,,,,,0.12268,0.17815,0.29387,0.57295,,,,,,,0.13049,0.19581,0.32311,0.6237,,,,,,,0.14585,0.22058,0.35957,0.67797,,,,,,,0.09586,0.16181,0.28998,0.57785,,,,,,,0.10336,0.17165,0.303,0.5979,,,,,,,0.09514,0.15958,0.28651,0.56892,,,,,,,0.11304,0.18271,0.31443,0.61442,,,,,,,0.0891,0.15698,0.27944,0.55401,,,, +Mini car,GSL,2020,,,,0.0008,0.00122,0.00187,0.00375,,,,,,,0.00074,0.00112,0.0017,0.00339,,,,,,,0.00077,0.00116,0.00178,0.00355,,,,,,,0.00086,0.0013,0.002,0.00405,,,,,,,0.00055,0.00082,0.00123,0.00237,,,,,,,0.0006,0.00089,0.00135,0.00262,,,,,,,0.00051,0.00076,0.00113,0.00215,,,,,,,0.00063,0.00094,0.00143,0.0028,,,,,,,0.00048,0.00072,0.00107,0.00203,,,,,,,0.00916,0.00746,0.00693,0.0085,,,,,,,0.00818,0.0068,0.00641,0.00789,,,,,,,0.00863,0.00759,0.00717,0.00895,,,,,,,0.00989,0.00868,0.00817,0.01018,,,,,,,0.00557,0.00559,0.00559,0.00707,,,,,,,0.00625,0.00615,0.00609,0.00771,,,,,,,0.00551,0.00555,0.00557,0.00704,,,,,,,0.00693,0.00637,0.00617,0.00774,,,,,,,0.00557,0.00532,0.00526,0.00656,,,,,,,1.6915,2.49519,3.11486,4.16084,,,,,,,1.63085,2.43641,3.05924,4.09089,,,,,,,1.73413,2.72559,3.49384,4.74907,,,,,,,1.87862,2.95774,3.80936,5.14963,,,,,,,1.4536,2.43222,3.15221,4.27573,,,,,,,1.53597,2.55786,3.32659,4.5339,,,,,,,1.50056,2.50095,3.23989,4.39415,,,,,,,1.60232,2.56071,3.26966,4.41578,,,,,,,1.38875,2.22443,2.81303,3.77549,,,,,,,271.96867,273.86852,275.68648,290.82129,,,,,,,274.31603,276.03072,277.5877,292.40308,,,,,,,278.85543,280.6576,282.324,297.52236,,,,,,,272.22635,274.16033,276.03818,291.29223,,,,,,,279.09756,280.1349,280.74701,294.2357,,,,,,,274.66253,275.95649,276.93841,290.83456,,,,,,,276.41031,277.39344,277.94311,291.2138,,,,,,,276.77516,278.10662,279.13032,293.18636,,,,,,,271.38059,272.49515,273.21747,286.5266,,,,,,,0.00453,0.00505,0.00578,0.00715,,,,,,,0.00455,0.00507,0.0058,0.00717,,,,,,,0.0046,0.00511,0.00584,0.00719,,,,,,,0.00456,0.00509,0.00583,0.00723,,,,,,,0.0046,0.00512,0.00584,0.00721,,,,,,,0.0046,0.00513,0.00587,0.00726,,,,,,,0.00455,0.00508,0.00581,0.00718,,,,,,,0.00459,0.00511,0.00584,0.00721,,,,,,,0.00451,0.00503,0.00575,0.00709,,,,,,,0.01689,0.01968,0.02529,0.02529,,,,,,,0.01693,0.01973,0.02535,0.02535,,,,,,,0.01698,0.01978,0.02542,0.02542,,,,,,,0.01678,0.01954,0.02511,0.02511,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01684,0.01961,0.0252,0.0252,,,,,,,0.01689,0.01967,0.02528,0.02528,,,,,,,0.01695,0.01975,0.02538,0.02538,,,,,,,0.01699,0.01979,0.02543,0.02543,,,,,,,0.05999,0.0922,0.1234,0.16461,,,,,,,0.05835,0.09003,0.12087,0.16146,,,,,,,0.05889,0.09688,0.12934,0.17522,,,,,,,0.06337,0.10563,0.14113,0.1918,,,,,,,0.04928,0.08579,0.11633,0.15932,,,,,,,0.05361,0.09221,0.1246,0.17031,,,,,,,0.05031,0.0866,0.11769,0.16041,,,,,,,0.05848,0.09748,0.13112,0.17751,,,,,,,0.05144,0.08499,0.1148,0.15447,,,,,,,0.00154,0.00222,0.00323,0.00592,,,,,,,0.00148,0.00214,0.00308,0.00559,,,,,,,0.00151,0.00218,0.00315,0.00574,,,,,,,0.00158,0.00229,0.00334,0.00617,,,,,,,0.00132,0.00187,0.00266,0.00465,,,,,,,0.00135,0.00192,0.00274,0.00484,,,,,,,0.00125,0.00177,0.0025,0.00435,,,,,,,0.00137,0.00196,0.00281,0.00501,,,,,,,0.0012,0.0017,0.00241,0.00418,,,,,,,0.03173,0.03327,0.03557,0.04186,,,,,,,0.03255,0.034,0.03615,0.04194,,,,,,,0.03513,0.03662,0.03883,0.04485,,,,,,,0.03023,0.03185,0.03426,0.04094,,,,,,,0.03416,0.03534,0.03705,0.04147,,,,,,,0.03169,0.03293,0.03474,0.03948,,,,,,,0.03141,0.03251,0.0341,0.03817,,,,,,,0.03305,0.03434,0.03622,0.0412,,,,,,,0.0322,0.03326,0.03478,0.03869,,,,,,,0.00672,0.00809,0.01012,0.01568,,,,,,,0.00671,0.008,0.00989,0.01502,,,,,,,0.00709,0.00841,0.01037,0.0157,,,,,,,0.00662,0.00805,0.01019,0.0161,,,,,,,0.00658,0.00763,0.00914,0.01305,,,,,,,0.00633,0.00743,0.00903,0.01322,,,,,,,0.00611,0.00709,0.00849,0.0121,,,,,,,0.00656,0.0077,0.00936,0.01377,,,,,,,0.00613,0.00708,0.00842,0.01187,,,,,,,0.00173,0.00175,0.00176,0.00186,,,,,,,0.00175,0.00176,0.00177,0.00187,,,,,,,0.00178,0.00179,0.0018,0.0019,,,,,,,0.00174,0.00175,0.00176,0.00186,,,,,,,0.00178,0.00179,0.00179,0.00188,,,,,,,0.00175,0.00176,0.00177,0.00186,,,,,,,0.00176,0.00177,0.00177,0.00186,,,,,,,0.00174,0.00175,0.00175,0.00184,,,,,,,0.0016,0.00161,0.00161,0.00169,,,,,,,0.11502,0.15737,0.23418,0.46466,,,,,,,0.10405,0.14371,0.21789,0.44466,,,,,,,0.11044,0.15929,0.24188,0.48542,,,,,,,0.12517,0.18075,0.27096,0.52592,,,,,,,0.07745,0.12265,0.20218,0.44371,,,,,,,0.08467,0.13261,0.21478,0.46013,,,,,,,0.07619,0.11947,0.19687,0.43326,,,,,,,0.09474,0.14263,0.22554,0.47291,,,,,,,0.07609,0.11765,0.19281,0.42371,,, +Mini car,GSL,2025,,,,,0.00052,0.00077,0.00121,0.00249,,,,,,,0.00048,0.00071,0.0011,0.00226,,,,,,,0.0005,0.00074,0.00115,0.00236,,,,,,,0.00056,0.00083,0.00129,0.00267,,,,,,,0.00036,0.00052,0.0008,0.00159,,,,,,,0.00039,0.00057,0.00087,0.00175,,,,,,,0.00033,0.00048,0.00073,0.00144,,,,,,,0.00041,0.0006,0.00093,0.00187,,,,,,,0.00032,0.00046,0.00069,0.00137,,,,,,,0.00781,0.00591,0.0053,0.00652,,,,,,,0.0068,0.00524,0.00477,0.0059,,,,,,,0.00728,0.00585,0.00533,0.00669,,,,,,,0.00849,0.00679,0.00616,0.0077,,,,,,,0.0041,0.00375,0.00367,0.00475,,,,,,,0.0048,0.00428,0.00412,0.00532,,,,,,,0.00401,0.00369,0.00363,0.0047,,,,,,,0.00548,0.00459,0.00432,0.00548,,,,,,,0.00404,0.00355,0.00343,0.00438,,,,,,,1.28004,1.82213,2.29163,3.03913,,,,,,,1.20359,1.74288,2.20878,2.93541,,,,,,,1.29195,1.95533,2.52412,3.4028,,,,,,,1.41672,2.1462,2.77925,3.72628,,,,,,,0.98344,1.62445,2.14039,2.89265,,,,,,,1.06532,1.73991,2.29418,3.11087,,,,,,,1.0149,1.67194,2.20204,2.97831,,,,,,,1.13293,1.76703,2.28397,3.06719,,,,,,,0.94245,1.48927,1.91352,2.56138,,,,,,,219.79055,221.42766,223.33293,236.96005,,,,,,,221.55546,223.03798,224.7172,238.04539,,,,,,,225.26595,226.82303,228.60383,242.28136,,,,,,,220.05063,221.7187,223.68094,237.42605,,,,,,,224.95387,225.86908,226.72345,238.81764,,,,,,,221.56775,222.69787,223.8734,236.35339,,,,,,,222.76989,223.6395,224.43786,236.33729,,,,,,,223.28135,224.44311,225.65654,238.27886,,,,,,,218.76119,219.73734,220.67422,232.60211,,,,,,,0.00455,0.00504,0.00575,0.00701,,,,,,,0.00458,0.00506,0.00577,0.00703,,,,,,,0.00462,0.0051,0.00581,0.00706,,,,,,,0.00459,0.00508,0.00581,0.00709,,,,,,,0.00462,0.00511,0.00582,0.00707,,,,,,,0.00463,0.00512,0.00584,0.00712,,,,,,,0.00458,0.00507,0.00578,0.00705,,,,,,,0.00461,0.0051,0.00581,0.00707,,,,,,,0.00454,0.00502,0.00572,0.00696,,,,,,,0.01689,0.01966,0.02529,0.02529,,,,,,,0.01693,0.0197,0.02535,0.02535,,,,,,,0.01698,0.01975,0.02542,0.02542,,,,,,,0.01678,0.01952,0.02511,0.02511,,,,,,,0.01695,0.01972,0.02538,0.02538,,,,,,,0.01684,0.01959,0.0252,0.0252,,,,,,,0.01689,0.01965,0.02528,0.02528,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01699,0.01977,0.02543,0.02543,,,,,,,0.04608,0.06684,0.08884,0.12065,,,,,,,0.04424,0.06453,0.08611,0.11729,,,,,,,0.04457,0.06871,0.09129,0.12631,,,,,,,0.04845,0.07557,0.10045,0.13913,,,,,,,0.03516,0.058,0.07873,0.11077,,,,,,,0.03922,0.0636,0.08583,0.12019,,,,,,,0.03604,0.05886,0.08004,0.11191,,,,,,,0.04298,0.06765,0.09082,0.12596,,,,,,,0.03694,0.05809,0.0785,0.10845,,,,,,,0.001,0.00142,0.0021,0.00396,,,,,,,0.00097,0.00136,0.002,0.00375,,,,,,,0.00098,0.00139,0.00205,0.00384,,,,,,,0.00103,0.00146,0.00217,0.00411,,,,,,,0.00086,0.0012,0.00173,0.00313,,,,,,,0.00088,0.00123,0.00178,0.00326,,,,,,,0.00082,0.00113,0.00163,0.00293,,,,,,,0.0009,0.00126,0.00183,0.00337,,,,,,,0.00078,0.00109,0.00157,0.00283,,,,,,,0.03056,0.0315,0.03305,0.03738,,,,,,,0.03144,0.03232,0.03377,0.03778,,,,,,,0.03399,0.0349,0.03639,0.04055,,,,,,,0.02902,0.03,0.03163,0.03619,,,,,,,0.0332,0.03392,0.03508,0.03818,,,,,,,0.0307,0.03146,0.03268,0.036,,,,,,,0.0305,0.03117,0.03225,0.03511,,,,,,,0.03203,0.03282,0.03409,0.03757,,,,,,,0.03133,0.03198,0.03301,0.03578,,,,,,,0.00569,0.00652,0.00789,0.01172,,,,,,,0.00573,0.00651,0.00779,0.01134,,,,,,,0.00609,0.00689,0.00821,0.01189,,,,,,,0.00555,0.00642,0.00786,0.0119,,,,,,,0.00573,0.00637,0.00739,0.01014,,,,,,,0.00546,0.00613,0.00721,0.01014,,,,,,,0.00531,0.00591,0.00686,0.00939,,,,,,,0.00566,0.00636,0.00748,0.01056,,,,,,,0.00537,0.00594,0.00685,0.00931,,,,,,,0.0014,0.00141,0.00142,0.00151,,,,,,,0.00141,0.00142,0.00143,0.00152,,,,,,,0.00144,0.00145,0.00146,0.00155,,,,,,,0.0014,0.00141,0.00143,0.00151,,,,,,,0.00144,0.00144,0.00145,0.00152,,,,,,,0.00141,0.00142,0.00143,0.00151,,,,,,,0.00142,0.00143,0.00143,0.00151,,,,,,,0.0014,0.00141,0.00142,0.0015,,,,,,,0.00129,0.0013,0.0013,0.00137,,,,,,,0.10037,0.12834,0.18648,0.38014,,,,,,,0.08893,0.11407,0.16926,0.35883,,,,,,,0.09561,0.12784,0.19016,0.39411,,,,,,,0.10964,0.14681,0.21499,0.4276,,,,,,,0.06039,0.0877,0.14513,0.3445,,,,,,,0.06798,0.09772,0.15759,0.36058,,,,,,,0.05866,0.08376,0.13857,0.33208,,,,,,,0.07746,0.10736,0.16807,0.37238,,,,,,,0.05838,0.08294,0.13681,0.32784,, +Mini car,GSL,2030,,,,,,0.00052,0.00077,0.0012,0.00218,,,,,,,0.00048,0.00071,0.00109,0.00197,,,,,,,0.0005,0.00074,0.00114,0.00206,,,,,,,0.00055,0.00082,0.00128,0.00234,,,,,,,0.00036,0.00052,0.00079,0.00139,,,,,,,0.00039,0.00057,0.00087,0.00154,,,,,,,0.00033,0.00048,0.00072,0.00126,,,,,,,0.00041,0.0006,0.00092,0.00164,,,,,,,0.00032,0.00046,0.00069,0.0012,,,,,,,0.00734,0.0054,0.00483,0.00576,,,,,,,0.00633,0.00473,0.0043,0.00513,,,,,,,0.00681,0.00528,0.00481,0.00578,,,,,,,0.00799,0.00617,0.00559,0.0067,,,,,,,0.00361,0.00317,0.00312,0.00381,,,,,,,0.00431,0.00369,0.00355,0.00434,,,,,,,0.00351,0.0031,0.00306,0.00375,,,,,,,0.00499,0.00403,0.00378,0.00458,,,,,,,0.00353,0.00299,0.00291,0.00353,,,,,,,1.17215,1.65559,2.10275,2.65422,,,,,,,1.09196,1.57161,2.01158,2.53948,,,,,,,1.17695,1.76507,2.30057,2.93126,,,,,,,1.29642,1.94489,2.54195,3.22512,,,,,,,0.86161,1.42567,1.89891,2.4146,,,,,,,0.94312,1.53804,2.04905,2.6147,,,,,,,0.88883,1.46758,1.95506,2.48593,,,,,,,1.01048,1.57125,2.05041,2.60241,,,,,,,0.82587,1.30814,1.69823,2.14736,,,,,,,202.37594,204.42196,207.59024,216.57276,,,,,,,203.95177,205.85843,208.81947,217.48287,,,,,,,207.3841,209.3687,212.4505,221.38071,,,,,,,202.63559,204.71112,207.93816,217.0329,,,,,,,206.90582,208.2932,210.47961,217.89872,,,,,,,203.86263,205.44197,207.91823,215.77045,,,,,,,204.89053,206.23087,208.35053,215.62512,,,,,,,205.4427,207.05521,209.57762,217.53359,,,,,,,201.21947,202.64801,204.87349,212.24266,,,,,,,0.00455,0.00502,0.00575,0.00699,,,,,,,0.00457,0.00505,0.00577,0.00701,,,,,,,0.00462,0.00509,0.00581,0.00704,,,,,,,0.00458,0.00506,0.00581,0.00707,,,,,,,0.00462,0.00509,0.00582,0.00705,,,,,,,0.00462,0.0051,0.00584,0.0071,,,,,,,0.00458,0.00505,0.00578,0.00702,,,,,,,0.00461,0.00508,0.00581,0.00705,,,,,,,0.00454,0.005,0.00572,0.00694,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04083,0.05806,0.07816,0.10353,,,,,,,0.03891,0.05569,0.07537,0.10004,,,,,,,0.0391,0.05893,0.07951,0.10677,,,,,,,0.04271,0.06511,0.08779,0.11801,,,,,,,0.02982,0.0484,0.06717,0.09131,,,,,,,0.03375,0.05369,0.07387,0.10005,,,,,,,0.03065,0.04925,0.06839,0.09258,,,,,,,0.03708,0.05732,0.0784,0.10533,,,,,,,0.03148,0.04882,0.06742,0.09019,,,,,,,0.001,0.00142,0.00208,0.00349,,,,,,,0.00096,0.00136,0.00199,0.0033,,,,,,,0.00098,0.00139,0.00203,0.00339,,,,,,,0.00103,0.00146,0.00215,0.00362,,,,,,,0.00086,0.0012,0.00172,0.00277,,,,,,,0.00088,0.00123,0.00177,0.00288,,,,,,,0.00081,0.00113,0.00162,0.0026,,,,,,,0.00089,0.00125,0.00182,0.00297,,,,,,,0.00078,0.00109,0.00157,0.0025,,,,,,,0.03055,0.03149,0.03301,0.03629,,,,,,,0.03143,0.03231,0.03374,0.03677,,,,,,,0.03398,0.03489,0.03636,0.0395,,,,,,,0.02901,0.02999,0.03158,0.03505,,,,,,,0.03319,0.03392,0.03506,0.03739,,,,,,,0.0307,0.03146,0.03266,0.03516,,,,,,,0.03049,0.03117,0.03222,0.03438,,,,,,,0.03203,0.03281,0.03407,0.03669,,,,,,,0.03133,0.03198,0.03301,0.03507,,,,,,,0.00568,0.00651,0.00786,0.01076,,,,,,,0.00572,0.0065,0.00776,0.01045,,,,,,,0.00608,0.00688,0.00818,0.01096,,,,,,,0.00555,0.00641,0.00782,0.01089,,,,,,,0.00573,0.00637,0.00738,0.00944,,,,,,,0.00545,0.00612,0.00719,0.0094,,,,,,,0.00531,0.0059,0.00684,0.00874,,,,,,,0.00566,0.00635,0.00746,0.00978,,,,,,,0.00536,0.00594,0.00685,0.00867,,,,,,,0.00129,0.0013,0.00132,0.00138,,,,,,,0.0013,0.00131,0.00133,0.00139,,,,,,,0.00132,0.00134,0.00136,0.00141,,,,,,,0.00129,0.00131,0.00133,0.00138,,,,,,,0.00132,0.00133,0.00134,0.00139,,,,,,,0.0013,0.00131,0.00133,0.00138,,,,,,,0.00131,0.00132,0.00133,0.00138,,,,,,,0.00129,0.0013,0.00132,0.00137,,,,,,,0.00119,0.00119,0.00121,0.00125,,,,,,,0.09597,0.12053,0.17587,0.34547,,,,,,,0.08449,0.10626,0.15853,0.32358,,,,,,,0.09122,0.11933,0.17849,0.35592,,,,,,,0.10497,0.13752,0.20211,0.38701,,,,,,,0.05571,0.07883,0.13249,0.30362,,,,,,,0.06332,0.08869,0.14477,0.31928,,,,,,,0.05389,0.07477,0.12573,0.29074,,,,,,,0.0726,0.09836,0.15525,0.33171,,,,,,,0.05346,0.07414,0.12449,0.28855, +Mini car,GSL,2035,,,,,,,0.00052,0.00077,0.0012,0.00214,,,,,,,0.00048,0.0007,0.0011,0.00194,,,,,,,0.0005,0.00073,0.00114,0.00203,,,,,,,0.00055,0.00081,0.00128,0.00231,,,,,,,0.00036,0.00052,0.0008,0.00137,,,,,,,0.00039,0.00056,0.00087,0.00151,,,,,,,0.00033,0.00048,0.00073,0.00125,,,,,,,0.00041,0.0006,0.00092,0.00161,,,,,,,0.00031,0.00046,0.00069,0.00118,,,,,,,0.00731,0.00541,0.00483,0.00563,,,,,,,0.0063,0.00474,0.00429,0.005,,,,,,,0.00679,0.00529,0.0048,0.00562,,,,,,,0.00796,0.00618,0.00558,0.00653,,,,,,,0.0036,0.00318,0.00311,0.00365,,,,,,,0.00429,0.00369,0.00355,0.00417,,,,,,,0.0035,0.0031,0.00306,0.00359,,,,,,,0.00497,0.00403,0.00378,0.00443,,,,,,,0.00352,0.00299,0.00291,0.00339,,,,,,,1.17139,1.66244,2.09836,2.58897,,,,,,,1.09139,1.57691,2.00811,2.47313,,,,,,,1.17648,1.77183,2.29622,2.85045,,,,,,,1.29599,1.95283,2.53692,3.13833,,,,,,,0.86159,1.42604,1.89834,2.33638,,,,,,,0.94303,1.5397,2.04769,2.5324,,,,,,,0.88894,1.46894,1.95385,2.40444,,,,,,,1.01005,1.57318,2.04887,2.52605,,,,,,,0.82558,1.3084,1.69774,2.08066,,,,,,,202.31712,204.41466,207.58447,213.41988,,,,,,,203.89648,205.85154,208.81373,214.30222,,,,,,,207.32639,209.36151,212.4449,218.14804,,,,,,,202.575,204.70376,207.93235,213.87923,,,,,,,206.86326,208.28791,210.47523,214.66023,,,,,,,203.81517,205.43598,207.91323,212.58504,,,,,,,204.84879,206.22545,208.34629,212.41826,,,,,,,205.39473,207.04914,209.57269,214.32318,,,,,,,201.1776,202.64302,204.86944,209.091,,,,,,,0.00454,0.00502,0.00575,0.00699,,,,,,,0.00456,0.00504,0.00577,0.00702,,,,,,,0.00461,0.00509,0.00581,0.00704,,,,,,,0.00457,0.00506,0.00581,0.00708,,,,,,,0.00461,0.00509,0.00581,0.00706,,,,,,,0.00461,0.0051,0.00584,0.00711,,,,,,,0.00456,0.00505,0.00578,0.00703,,,,,,,0.00459,0.00508,0.00581,0.00706,,,,,,,0.00452,0.005,0.00572,0.00695,,,,,,,0.01689,0.01967,0.02529,0.02529,,,,,,,0.01693,0.01971,0.02535,0.02535,,,,,,,0.01698,0.01976,0.02542,0.02542,,,,,,,0.01678,0.01953,0.02511,0.02511,,,,,,,0.01695,0.01973,0.02538,0.02538,,,,,,,0.01684,0.0196,0.0252,0.0252,,,,,,,0.01689,0.01966,0.02528,0.02528,,,,,,,0.01695,0.01974,0.02538,0.02538,,,,,,,0.01699,0.01978,0.02543,0.02543,,,,,,,0.04072,0.0579,0.07824,0.10087,,,,,,,0.0388,0.05554,0.07544,0.09735,,,,,,,0.039,0.05876,0.0796,0.10363,,,,,,,0.0426,0.06488,0.08791,0.11463,,,,,,,0.02976,0.04829,0.06723,0.08811,,,,,,,0.03367,0.05355,0.07394,0.09675,,,,,,,0.03058,0.04911,0.06847,0.08945,,,,,,,0.037,0.05721,0.07846,0.10197,,,,,,,0.03142,0.04879,0.06743,0.08719,,,,,,,0.001,0.00141,0.00209,0.00343,,,,,,,0.00096,0.00135,0.002,0.00325,,,,,,,0.00098,0.00138,0.00204,0.00333,,,,,,,0.00102,0.00145,0.00216,0.00357,,,,,,,0.00086,0.00119,0.00173,0.00273,,,,,,,0.00088,0.00122,0.00178,0.00284,,,,,,,0.00081,0.00112,0.00162,0.00256,,,,,,,0.00089,0.00125,0.00182,0.00293,,,,,,,0.00078,0.00109,0.00157,0.00246,,,,,,,0.03055,0.03147,0.03303,0.03617,,,,,,,0.03143,0.0323,0.03375,0.03666,,,,,,,0.03398,0.03487,0.03637,0.03939,,,,,,,0.02901,0.02997,0.0316,0.03494,,,,,,,0.03319,0.03391,0.03507,0.0373,,,,,,,0.03069,0.03144,0.03267,0.03506,,,,,,,0.03049,0.03115,0.03223,0.0343,,,,,,,0.03202,0.0328,0.03408,0.03658,,,,,,,0.03133,0.03198,0.03301,0.03498,,,,,,,0.00568,0.0065,0.00787,0.01065,,,,,,,0.00572,0.00649,0.00777,0.01035,,,,,,,0.00608,0.00687,0.00819,0.01086,,,,,,,0.00554,0.00639,0.00784,0.01079,,,,,,,0.00573,0.00636,0.00738,0.00936,,,,,,,0.00545,0.00611,0.0072,0.00931,,,,,,,0.0053,0.00589,0.00685,0.00868,,,,,,,0.00566,0.00634,0.00747,0.00969,,,,,,,0.00536,0.00594,0.00685,0.00859,,,,,,,0.00129,0.0013,0.00132,0.00136,,,,,,,0.0013,0.00131,0.00133,0.00137,,,,,,,0.00132,0.00134,0.00136,0.00139,,,,,,,0.00129,0.00131,0.00133,0.00136,,,,,,,0.00132,0.00133,0.00134,0.00137,,,,,,,0.0013,0.00131,0.00133,0.00136,,,,,,,0.00131,0.00132,0.00133,0.00136,,,,,,,0.00129,0.0013,0.00132,0.00135,,,,,,,0.00119,0.00119,0.00121,0.00123,,,,,,,0.09568,0.12064,0.17575,0.3413,,,,,,,0.08424,0.10634,0.15844,0.31927,,,,,,,0.09096,0.11948,0.17836,0.35106,,,,,,,0.10466,0.13758,0.20203,0.38184,,,,,,,0.05555,0.07875,0.13252,0.29842,,,,,,,0.06314,0.08865,0.14477,0.31397,,,,,,,0.05373,0.07468,0.12577,0.2854,,,,,,,0.07236,0.09813,0.15536,0.32675,,,,,,,0.05331,0.07411,0.12446,0.28355 +Mini car,GSL,2040,,,,,,,,0.00051,0.00077,0.00121,,,,,,,,0.00047,0.0007,0.0011,,,,,,,,0.00049,0.00073,0.00115,,,,,,,,0.00055,0.00082,0.00129,,,,,,,,0.00036,0.00052,0.0008,,,,,,,,0.00038,0.00057,0.00087,,,,,,,,0.00033,0.00048,0.00073,,,,,,,,0.00041,0.0006,0.00092,,,,,,,,0.00031,0.00046,0.00069,,,,,,,,0.00732,0.0054,0.00483,,,,,,,,0.00631,0.00473,0.00429,,,,,,,,0.00681,0.00529,0.0048,,,,,,,,0.00798,0.00617,0.00558,,,,,,,,0.0036,0.00317,0.00311,,,,,,,,0.0043,0.00369,0.00355,,,,,,,,0.0035,0.0031,0.00306,,,,,,,,0.00497,0.00403,0.00378,,,,,,,,0.00352,0.00299,0.00291,,,,,,,,1.17673,1.65855,2.09351,,,,,,,,1.09547,1.57382,2.00431,,,,,,,,1.182,1.76797,2.29143,,,,,,,,1.30278,1.94835,2.53134,,,,,,,,0.86185,1.42543,1.89788,,,,,,,,0.94437,1.53842,2.04633,,,,,,,,0.88987,1.46787,1.95264,,,,,,,,1.01144,1.57172,2.04732,,,,,,,,0.82541,1.30783,1.69737,,,,,,,,202.30794,204.40446,207.58357,,,,,,,,203.88772,205.84183,208.81287,,,,,,,,207.31737,209.35159,212.44393,,,,,,,,202.56569,204.69324,207.93131,,,,,,,,206.85683,208.28076,210.47469,,,,,,,,203.80767,205.4279,207.91246,,,,,,,,204.84254,206.21834,208.34554,,,,,,,,205.38707,207.04092,209.57195,,,,,,,,201.17118,202.6359,204.86889,,,,,,,,0.00454,0.00502,0.00575,,,,,,,,0.00456,0.00504,0.00577,,,,,,,,0.0046,0.00508,0.00581,,,,,,,,0.00457,0.00506,0.00581,,,,,,,,0.00461,0.00509,0.00581,,,,,,,,0.00461,0.0051,0.00584,,,,,,,,0.00456,0.00505,0.00578,,,,,,,,0.00459,0.00508,0.00581,,,,,,,,0.00452,0.005,0.00572,,,,,,,,0.01689,0.01967,0.02529,,,,,,,,0.01693,0.01971,0.02535,,,,,,,,0.01698,0.01976,0.02542,,,,,,,,0.01678,0.01953,0.02511,,,,,,,,0.01695,0.01973,0.02538,,,,,,,,0.01684,0.0196,0.0252,,,,,,,,0.01689,0.01966,0.02528,,,,,,,,0.01695,0.01974,0.02538,,,,,,,,0.01699,0.01978,0.02543,,,,,,,,0.04058,0.05794,0.07835,,,,,,,,0.03867,0.05558,0.07555,,,,,,,,0.03885,0.05881,0.07972,,,,,,,,0.04241,0.06495,0.08807,,,,,,,,0.02967,0.04831,0.06731,,,,,,,,0.03356,0.05358,0.07404,,,,,,,,0.03047,0.04915,0.06858,,,,,,,,0.0369,0.05723,0.07853,,,,,,,,0.03138,0.04878,0.06745,,,,,,,,0.00099,0.00141,0.0021,,,,,,,,0.00096,0.00136,0.002,,,,,,,,0.00097,0.00138,0.00204,,,,,,,,0.00102,0.00145,0.00217,,,,,,,,0.00085,0.00119,0.00173,,,,,,,,0.00087,0.00122,0.00178,,,,,,,,0.00081,0.00113,0.00163,,,,,,,,0.00089,0.00125,0.00183,,,,,,,,0.00078,0.00109,0.00157,,,,,,,,0.03053,0.03148,0.03304,,,,,,,,0.03141,0.0323,0.03376,,,,,,,,0.03397,0.03488,0.03639,,,,,,,,0.02899,0.02998,0.03162,,,,,,,,0.03318,0.03391,0.03508,,,,,,,,0.03068,0.03145,0.03268,,,,,,,,0.03048,0.03116,0.03225,,,,,,,,0.03202,0.03281,0.03409,,,,,,,,0.03133,0.03198,0.03301,,,,,,,,0.00567,0.0065,0.00789,,,,,,,,0.00571,0.00649,0.00779,,,,,,,,0.00606,0.00687,0.00821,,,,,,,,0.00552,0.0064,0.00786,,,,,,,,0.00572,0.00636,0.00739,,,,,,,,0.00544,0.00612,0.00721,,,,,,,,0.00529,0.0059,0.00686,,,,,,,,0.00565,0.00635,0.00748,,,,,,,,0.00536,0.00594,0.00685,,,,,,,,0.00129,0.0013,0.00132,,,,,,,,0.0013,0.00131,0.00133,,,,,,,,0.00132,0.00134,0.00136,,,,,,,,0.00129,0.00131,0.00133,,,,,,,,0.00132,0.00133,0.00134,,,,,,,,0.0013,0.00131,0.00133,,,,,,,,0.00131,0.00132,0.00133,,,,,,,,0.00129,0.0013,0.00132,,,,,,,,0.00119,0.00119,0.00121,,,,,,,,0.09576,0.12051,0.17567,,,,,,,,0.08429,0.10623,0.15837,,,,,,,,0.09107,0.11933,0.17826,,,,,,,,0.10472,0.13746,0.202,,,,,,,,0.0555,0.07874,0.13261,,,,,,,,0.06312,0.08862,0.14482,,,,,,,,0.05368,0.07468,0.12587,,,,,,,,0.07219,0.09818,0.15556,,,,,,,,0.05328,0.07408,0.12448 +Mini car,GSL,2045,,,,,,,,,0.00052,0.00077,,,,,,,,,0.00048,0.00071,,,,,,,,,0.00049,0.00074,,,,,,,,,0.00055,0.00082,,,,,,,,,0.00036,0.00052,,,,,,,,,0.00039,0.00057,,,,,,,,,0.00033,0.00048,,,,,,,,,0.00041,0.0006,,,,,,,,,0.00031,0.00046,,,,,,,,,0.00731,0.0054,,,,,,,,,0.0063,0.00473,,,,,,,,,0.0068,0.00528,,,,,,,,,0.00797,0.00616,,,,,,,,,0.0036,0.00317,,,,,,,,,0.00429,0.00368,,,,,,,,,0.0035,0.0031,,,,,,,,,0.00497,0.00403,,,,,,,,,0.00352,0.00299,,,,,,,,,1.17358,1.65463,,,,,,,,,1.09298,1.57076,,,,,,,,,1.17876,1.76408,,,,,,,,,1.29888,1.94379,,,,,,,,,0.8613,1.42507,,,,,,,,,0.94325,1.53734,,,,,,,,,0.88901,1.46697,,,,,,,,,1.01025,1.57048,,,,,,,,,0.82507,1.30754,,,,,,,,,202.29977,204.40428,,,,,,,,,203.88009,205.84189,,,,,,,,,207.30962,209.35158,,,,,,,,,202.5573,204.69315,,,,,,,,,206.85099,208.28066,,,,,,,,,203.80131,205.42781,,,,,,,,,204.83695,206.2183,,,,,,,,,205.38059,207.04076,,,,,,,,,201.16547,202.63575,,,,,,,,,0.00453,0.00502,,,,,,,,,0.00456,0.00504,,,,,,,,,0.0046,0.00508,,,,,,,,,0.00456,0.00506,,,,,,,,,0.0046,0.00509,,,,,,,,,0.0046,0.0051,,,,,,,,,0.00456,0.00505,,,,,,,,,0.00459,0.00508,,,,,,,,,0.00452,0.005,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01693,0.01971,,,,,,,,,0.01698,0.01976,,,,,,,,,0.01678,0.01953,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01684,0.0196,,,,,,,,,0.01689,0.01966,,,,,,,,,0.01695,0.01973,,,,,,,,,0.01699,0.01978,,,,,,,,,0.04062,0.05802,,,,,,,,,0.03871,0.05566,,,,,,,,,0.0389,0.0589,,,,,,,,,0.04247,0.06507,,,,,,,,,0.02969,0.04837,,,,,,,,,0.03359,0.05366,,,,,,,,,0.0305,0.04923,,,,,,,,,0.03693,0.05728,,,,,,,,,0.03138,0.04879,,,,,,,,,0.00099,0.00142,,,,,,,,,0.00096,0.00136,,,,,,,,,0.00098,0.00139,,,,,,,,,0.00102,0.00146,,,,,,,,,0.00086,0.0012,,,,,,,,,0.00087,0.00123,,,,,,,,,0.00081,0.00113,,,,,,,,,0.00089,0.00125,,,,,,,,,0.00078,0.00109,,,,,,,,,0.03054,0.03149,,,,,,,,,0.03142,0.03231,,,,,,,,,0.03397,0.03489,,,,,,,,,0.029,0.02999,,,,,,,,,0.03319,0.03392,,,,,,,,,0.03069,0.03145,,,,,,,,,0.03048,0.03117,,,,,,,,,0.03202,0.03281,,,,,,,,,0.03133,0.03198,,,,,,,,,0.00567,0.00651,,,,,,,,,0.00571,0.0065,,,,,,,,,0.00607,0.00688,,,,,,,,,0.00553,0.00641,,,,,,,,,0.00572,0.00637,,,,,,,,,0.00544,0.00612,,,,,,,,,0.0053,0.0059,,,,,,,,,0.00565,0.00635,,,,,,,,,0.00536,0.00594,,,,,,,,,0.00129,0.0013,,,,,,,,,0.0013,0.00131,,,,,,,,,0.00132,0.00134,,,,,,,,,0.00129,0.00131,,,,,,,,,0.00132,0.00133,,,,,,,,,0.0013,0.00131,,,,,,,,,0.00131,0.00132,,,,,,,,,0.00129,0.0013,,,,,,,,,0.00119,0.00119,,,,,,,,,0.09565,0.12043,,,,,,,,,0.08421,0.10617,,,,,,,,,0.09096,0.11923,,,,,,,,,0.10461,0.1374,,,,,,,,,0.05548,0.07878,,,,,,,,,0.06309,0.08863,,,,,,,,,0.05367,0.07472,,,,,,,,,0.07222,0.09829,,,,,,,,,0.05326,0.07408 +Mini car,GSL,2050,,,,,,,,,,0.00052,,,,,,,,,,0.00048,,,,,,,,,,0.0005,,,,,,,,,,0.00055,,,,,,,,,,0.00036,,,,,,,,,,0.00039,,,,,,,,,,0.00033,,,,,,,,,,0.00041,,,,,,,,,,0.00031,,,,,,,,,,0.0073,,,,,,,,,,0.0063,,,,,,,,,,0.00678,,,,,,,,,,0.00796,,,,,,,,,,0.0036,,,,,,,,,,0.00429,,,,,,,,,,0.00349,,,,,,,,,,0.00497,,,,,,,,,,0.00352,,,,,,,,,,1.17027,,,,,,,,,,1.09037,,,,,,,,,,1.17532,,,,,,,,,,1.29471,,,,,,,,,,0.8608,,,,,,,,,,0.94214,,,,,,,,,,0.88814,,,,,,,,,,1.0091,,,,,,,,,,0.82482,,,,,,,,,,202.29983,,,,,,,,,,203.88015,,,,,,,,,,207.3096,,,,,,,,,,202.55725,,,,,,,,,,206.85097,,,,,,,,,,203.80119,,,,,,,,,,204.83681,,,,,,,,,,205.3805,,,,,,,,,,201.16542,,,,,,,,,,0.00453,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.0046,,,,,,,,,,0.0046,,,,,,,,,,0.00456,,,,,,,,,,0.00459,,,,,,,,,,0.00452,,,,,,,,,,0.01689,,,,,,,,,,0.01693,,,,,,,,,,0.01698,,,,,,,,,,0.01678,,,,,,,,,,0.01695,,,,,,,,,,0.01684,,,,,,,,,,0.01689,,,,,,,,,,0.01695,,,,,,,,,,0.01699,,,,,,,,,,0.04068,,,,,,,,,,0.03876,,,,,,,,,,0.03896,,,,,,,,,,0.04255,,,,,,,,,,0.02973,,,,,,,,,,0.03364,,,,,,,,,,0.03055,,,,,,,,,,0.03696,,,,,,,,,,0.03139,,,,,,,,,,0.001,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00102,,,,,,,,,,0.00086,,,,,,,,,,0.00087,,,,,,,,,,0.00081,,,,,,,,,,0.00089,,,,,,,,,,0.00078,,,,,,,,,,0.03055,,,,,,,,,,0.03143,,,,,,,,,,0.03398,,,,,,,,,,0.02901,,,,,,,,,,0.03319,,,,,,,,,,0.03069,,,,,,,,,,0.03049,,,,,,,,,,0.03202,,,,,,,,,,0.03133,,,,,,,,,,0.00568,,,,,,,,,,0.00572,,,,,,,,,,0.00608,,,,,,,,,,0.00554,,,,,,,,,,0.00573,,,,,,,,,,0.00545,,,,,,,,,,0.0053,,,,,,,,,,0.00565,,,,,,,,,,0.00536,,,,,,,,,,0.00129,,,,,,,,,,0.0013,,,,,,,,,,0.00132,,,,,,,,,,0.00129,,,,,,,,,,0.00132,,,,,,,,,,0.0013,,,,,,,,,,0.00131,,,,,,,,,,0.00129,,,,,,,,,,0.00119,,,,,,,,,,0.09558,,,,,,,,,,0.08415,,,,,,,,,,0.09086,,,,,,,,,,0.10454,,,,,,,,,,0.05549,,,,,,,,,,0.06307,,,,,,,,,,0.05368,,,,,,,,,,0.07228,,,,,,,,,,0.05326 +Mini car,PH10E,1990,0.00511,0,0,0,0,0,0,0,0,0,0.00528,0,0,0,0,0,0,0,0,0,0.00573,0,0,0,0,0,0,0,0,0,0.00482,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.00519,0,0,0,0,0,0,0,0,0,0.00518,0,0,0,0,0,0,0,0,0,0.00542,0,0,0,0,0,0,0,0,0,0.00535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.00067,0.00088,0.00158,0,0,0,0,0,0,0.0004,0.00064,0.00084,0.00148,0,0,0,0,0,0,0.0004,0.00065,0.00086,0.00153,0,0,0,0,0,0,0.00041,0.00067,0.0009,0.00161,0,0,0,0,0,0,0.00035,0.00056,0.00073,0.00122,0,0,0,0,0,0,0.00036,0.00057,0.00075,0.00127,0,0,0,0,0,0,0.00034,0.00054,0.00069,0.00115,0,0,0,0,0,0,0.00037,0.00059,0.00077,0.00132,0,0,0,0,0,0,0.00033,0.00052,0.00067,0.00111,0,0,0,0,0,0,0.00824,0.00881,0.00931,0.01095,0,0,0,0,0,0,0.00845,0.00899,0.00945,0.01094,0,0,0,0,0,0,0.0092,0.00974,0.01023,0.0118,0,0,0,0,0,0,0.00774,0.00832,0.00884,0.01054,0,0,0,0,0,0,0.00892,0.00936,0.00972,0.01083,0,0,0,0,0,0,0.00816,0.00862,0.009,0.01018,0,0,0,0,0,0,0.00815,0.00857,0.0089,0.00992,0,0,0,0,0,0,0.00859,0.00907,0.00947,0.01073,0,0,0,0,0,0,0.00846,0.00886,0.00919,0.01017,0,0,0,0,0,0,0.00174,0.00224,0.00269,0.00413,0,0,0,0,0,0,0.00174,0.00221,0.00262,0.00394,0,0,0,0,0,0,0.00185,0.00233,0.00276,0.00415,0,0,0,0,0,0,0.00169,0.0022,0.00266,0.00416,0,0,0,0,0,0,0.00171,0.0021,0.00242,0.0034,0,0,0,0,0,0,0.00163,0.00203,0.00237,0.00342,0,0,0,0,0,0,0.00159,0.00195,0.00225,0.00315,0,0,0,0,0,0,0.0017,0.00212,0.00248,0.00359,0,0,0,0,0,0,0.00161,0.00196,0.00225,0.00312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH10E,1995,0.00511,0.00511,0,0,0,0,0,0,0,0,0.00528,0.00528,0,0,0,0,0,0,0,0,0.00573,0.00573,0,0,0,0,0,0,0,0,0.00482,0.00482,0,0,0,0,0,0,0,0,0.00565,0.00565,0,0,0,0,0,0,0,0,0.00519,0.00519,0,0,0,0,0,0,0,0,0.00518,0.00518,0,0,0,0,0,0,0,0,0.00542,0.00542,0,0,0,0,0,0,0,0,0.00535,0.00535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.00043,0.00057,0.00114,0,0,0,0,0,0,0.00026,0.00041,0.00054,0.00107,0,0,0,0,0,0,0.00027,0.00042,0.00056,0.0011,0,0,0,0,0,0,0.00027,0.00043,0.00058,0.00116,0,0,0,0,0,0,0.00023,0.00036,0.00047,0.00089,0,0,0,0,0,0,0.00024,0.00037,0.00048,0.00092,0,0,0,0,0,0,0.00022,0.00035,0.00045,0.00084,0,0,0,0,0,0,0.00024,0.00038,0.0005,0.00096,0,0,0,0,0,0,0.00022,0.00034,0.00043,0.00081,0,0,0,0,0,0,0.00794,0.00829,0.00862,0.00994,0,0,0,0,0,0,0.00817,0.0085,0.0088,0.01002,0,0,0,0,0,0,0.0089,0.00924,0.00956,0.01083,0,0,0,0,0,0,0.00744,0.0078,0.00813,0.00949,0,0,0,0,0,0,0.00867,0.00894,0.00918,0.01011,0,0,0,0,0,0,0.0079,0.00819,0.00844,0.00943,0,0,0,0,0,0,0.00791,0.00817,0.00839,0.00925,0,0,0,0,0,0,0.00833,0.00863,0.00889,0.00993,0,0,0,0,0,0,0.00823,0.00849,0.0087,0.00953,0,0,0,0,0,0,0.00148,0.00179,0.00208,0.00324,0,0,0,0,0,0,0.00148,0.00178,0.00204,0.00312,0,0,0,0,0,0,0.00159,0.00189,0.00217,0.00329,0,0,0,0,0,0,0.00142,0.00174,0.00203,0.00324,0,0,0,0,0,0,0.00149,0.00173,0.00194,0.00277,0,0,0,0,0,0,0.0014,0.00165,0.00188,0.00275,0,0,0,0,0,0,0.00138,0.00161,0.0018,0.00256,0,0,0,0,0,0,0.00147,0.00173,0.00196,0.00289,0,0,0,0,0,0,0.00141,0.00163,0.00182,0.00255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH10E,2000,0.00511,0.0104,0.01409,0,0,0,0,0,0,0,0.00528,0.00984,0.01299,0,0,0,0,0,0,0,0.00573,0.01085,0.01441,0,0,0,0,0,0,0,0.00482,0.01061,0.0147,0,0,0,0,0,0,0,0.00565,0.00819,0.0099,0,0,0,0,0,0,0,0.00519,0.00823,0.01053,0,0,0,0,0,0,0,0.00518,0.00762,0.00924,0,0,0,0,0,0,0,0.00542,0.00894,0.01134,0,0,0,0,0,0,0,0.00535,0.00776,0.00936,0,0,0,0,0,0,0,0,0.08553,0.08857,0,0,0,0,0,0,0,0,0.08128,0.08641,0,0,0,0,0,0,0,0,0.09631,0.10152,0,0,0,0,0,0,0,0,0.10197,0.10723,0,0,0,0,0,0,0,0,0.08027,0.08558,0,0,0,0,0,0,0,0,0.0866,0.09244,0,0,0,0,0,0,0,0,0.08057,0.08325,0,0,0,0,0,0,0,0,0.08335,0.08765,0,0,0,0,0,0,0,0,0.06928,0.07321,0,0,0,0,0,0,0,0,8.57985,10.08498,0,0,0,0,0,0,0,0,8.28224,9.91924,0,0,0,0,0,0,0,0,9.46995,11.28461,0,0,0,0,0,0,0,0,10.26214,12.19158,0,0,0,0,0,0,0,0,8.35297,9.93719,0,0,0,0,0,0,0,0,8.89729,10.69785,0,0,0,0,0,0,0,0,8.66415,10.02231,0,0,0,0,0,0,0,0,8.55832,10.11659,0,0,0,0,0,0,0,0,7.03486,8.3259,0,0,0,0,0,0,0,0,308.34332,313.0492,0,0,0,0,0,0,0,0,310.95332,315.33528,0,0,0,0,0,0,0,0,316.3151,320.87551,0,0,0,0,0,0,0,0,308.50307,313.26807,0,0,0,0,0,0,0,0,316.12025,319.2968,0,0,0,0,0,0,0,0,311.07482,315.89699,0,0,0,0,0,0,0,0,312.83265,315.89603,0,0,0,0,0,0,0,0,313.56139,317.26015,0,0,0,0,0,0,0,0,307.37494,310.66143,0,0,0,0,0,0,0,0,0.01923,0.02278,0,0,0,0,0,0,0,0,0.01929,0.02283,0,0,0,0,0,0,0,0,0.01938,0.0229,0,0,0,0,0,0,0,0,0.01945,0.02308,0,0,0,0,0,0,0,0,0.01941,0.02294,0,0,0,0,0,0,0,0,0.01954,0.02315,0,0,0,0,0,0,0,0,0.01933,0.0229,0,0,0,0,0,0,0,0,0.01941,0.02297,0,0,0,0,0,0,0,0,0.0191,0.0226,0,0,0,0,0,0,0,0,0.06374,0.06374,0,0,0,0,0,0,0,0,0.06388,0.06388,0,0,0,0,0,0,0,0,0.06406,0.06406,0,0,0,0,0,0,0,0,0.0633,0.0633,0,0,0,0,0,0,0,0,0.06396,0.06396,0,0,0,0,0,0,0,0,0.06352,0.06352,0,0,0,0,0,0,0,0,0.06372,0.06372,0,0,0,0,0,0,0,0,0.06397,0.06397,0,0,0,0,0,0,0,0,0.06411,0.06411,0,0,0,0,0,0,0,0,1.10454,1.31261,0,0,0,0,0,0,0,0,1.09387,1.32826,0,0,0,0,0,0,0,0,1.22002,1.47004,0,0,0,0,0,0,0,0,1.27385,1.5332,0,0,0,0,0,0,0,0,1.19017,1.44578,0,0,0,0,0,0,0,0,1.23224,1.48645,0,0,0,0,0,0,0,0,1.21235,1.43527,0,0,0,0,0,0,0,0,1.25989,1.50295,0,0,0,0,0,0,0,0,1.11871,1.34395,0,0,0,0,0,0,0,0,0.01102,0.01744,0,0,0.00027,0.00043,0.00057,0.00094,0,0,0.00968,0.01528,0,0,0.00026,0.00041,0.00054,0.00089,0,0,0.01058,0.01674,0,0,0.00026,0.00042,0.00055,0.00091,0,0,0.01152,0.01833,0,0,0.00027,0.00043,0.00058,0.00096,0,0,0.00581,0.00909,0,0,0.00023,0.00036,0.00047,0.00074,0,0,0.00669,0.01089,0,0,0.00024,0.00037,0.00048,0.00076,0,0,0.00568,0.00886,0,0,0.00022,0.00035,0.00045,0.0007,0,0,0.00766,0.01205,0,0,0.00024,0.00038,0.0005,0.00079,0,0,0.00579,0.00901,0,0,0.00022,0.00034,0.00043,0.00067,0,0,0.04693,0.06123,0,0,0.00794,0.00829,0.00861,0.00949,0,0,0.04478,0.05718,0,0,0.00817,0.0085,0.00879,0.0096,0,0,0.04887,0.06262,0,0,0.0089,0.00924,0.00955,0.01039,0,0,0.04691,0.06223,0,0,0.00744,0.00779,0.00812,0.00903,0,0,0.03801,0.04514,0,0,0.00867,0.00894,0.00918,0.00978,0,0,0.03787,0.04723,0,0,0.0079,0.00819,0.00843,0.00908,0,0,0.03556,0.04247,0,0,0.00791,0.00817,0.00839,0.00895,0,0,0.04102,0.05068,0,0,0.00833,0.00863,0.00889,0.00957,0,0,0.03647,0.04342,0,0,0.00823,0.00848,0.0087,0.00923,0,0,0.02402,0.03666,0,0,0.00147,0.00178,0.00207,0.00284,0,0,0.0215,0.03247,0,0,0.00148,0.00177,0.00204,0.00275,0,0,0.02357,0.03573,0,0,0.00158,0.00189,0.00216,0.0029,0,0,0.025,0.03855,0,0,0.00142,0.00173,0.00202,0.00282,0,0,0.01425,0.02055,0,0,0.00149,0.00173,0.00194,0.00248,0,0,0.0157,0.02391,0,0,0.0014,0.00165,0.00187,0.00244,0,0,0.01369,0.0198,0,0,0.00138,0.00161,0.0018,0.00229,0,0,0.01769,0.02624,0,0,0.00147,0.00173,0.00196,0.00256,0,0,0.01394,0.02008,0,0,0.00141,0.00163,0.00182,0.00229,0,0,0.01009,0.00904,0,0,0,0,0,0,0,0,0.01018,0.00911,0,0,0,0,0,0,0,0,0.01036,0.00927,0,0,0,0,0,0,0,0,0.0101,0.00905,0,0,0,0,0,0,0,0,0.01035,0.00922,0,0,0,0,0,0,0,0,0.01019,0.00912,0,0,0,0,0,0,0,0,0.01024,0.00912,0,0,0,0,0,0,0,0,0.01027,0.00916,0,0,0,0,0,0,0,0,0.01006,0.00897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH10E,2005,0.00511,0.00718,0.00851,0.01164,0,0,0,0,0,0,0.00528,0.0071,0.00826,0.01095,0,0,0,0,0,0,0.00573,0.00776,0.00907,0.01211,0,0,0,0,0,0,0.00482,0.00708,0.00856,0.01204,0,0,0,0,0,0,0.00565,0.00676,0.00745,0.00896,0,0,0,0,0,0,0.00519,0.00648,0.00737,0.00911,0,0,0,0,0,0,0.00518,0.00624,0.0069,0.00834,0,0,0,0,0,0,0.00542,0.00687,0.00779,0.00987,0,0,0,0,0,0,0.00535,0.00639,0.00703,0.00845,0,0,0,0,0,0,0,0.044,0.0353,0.04187,0,0,0,0,0,0,0,0.03924,0.03269,0.03926,0,0,0,0,0,0,0,0.04538,0.03774,0.04642,0,0,0,0,0,0,0,0.05031,0.0417,0.05059,0,0,0,0,0,0,0,0.02765,0.02569,0.03337,0,0,0,0,0,0,0,0.03284,0.03016,0.03769,0,0,0,0,0,0,0,0.02725,0.02499,0.03232,0,0,0,0,0,0,0,0.03426,0.02964,0.037,0,0,0,0,0,0,0,0.02419,0.02214,0.02792,0,0,0,0,0,0,0,3.50157,4.45447,6.04971,0,0,0,0,0,0,0,3.36399,4.44045,5.99442,0,0,0,0,0,0,0,3.77635,5.07331,6.90848,0,0,0,0,0,0,0,4.06431,5.46535,7.42827,0,0,0,0,0,0,0,3.48187,4.80312,6.35427,0,0,0,0,0,0,0,3.62361,5.03298,6.64281,0,0,0,0,0,0,0,3.61047,4.85966,6.4088,0,0,0,0,0,0,0,3.54652,4.72878,6.31281,0,0,0,0,0,0,0,3.06134,4.07251,5.32488,0,0,0,0,0,0,0,312.75167,316.30492,321.47904,0,0,0,0,0,0,0,315.54793,318.85902,323.63589,0,0,0,0,0,0,0,320.72814,324.17477,329.18963,0,0,0,0,0,0,0,312.9581,316.56303,321.83084,0,0,0,0,0,0,0,321.39189,323.80211,327.09892,0,0,0,0,0,0,0,316.12875,320.05773,322.71651,0,0,0,0,0,0,0,318.29158,320.61981,323.77224,0,0,0,0,0,0,0,318.56812,321.36897,325.3044,0,0,0,0,0,0,0,312.55649,315.03793,318.42679,0,0,0,0,0,0,0,0.00631,0.00741,0.01126,0,0,0,0,0,0,0,0.00632,0.00742,0.01127,0,0,0,0,0,0,0,0.00632,0.00742,0.01126,0,0,0,0,0,0,0,0.0064,0.00753,0.01144,0,0,0,0,0,0,0,0.00634,0.00744,0.01129,0,0,0,0,0,0,0,0.00641,0.00753,0.01144,0,0,0,0,0,0,0,0.00634,0.00744,0.01131,0,0,0,0,0,0,0,0.00635,0.00746,0.01133,0,0,0,0,0,0,0,0.00625,0.00733,0.01114,0,0,0,0,0,0,0,0.02083,0.02583,0.02913,0,0,0,0,0,0,0,0.02088,0.02589,0.0292,0,0,0,0,0,0,0,0.02094,0.02596,0.02928,0,0,0,0,0,0,0,0.02069,0.02565,0.02893,0,0,0,0,0,0,0,0.0209,0.02592,0.02923,0,0,0,0,0,0,0,0.02076,0.02574,0.02903,0,0,0,0,0,0,0,0.02083,0.02582,0.02912,0,0,0,0,0,0,0,0.02091,0.02592,0.02923,0,0,0,0,0,0,0,0.02095,0.02597,0.0293,0,0,0,0,0,0,0,0.3359,0.44601,0.52131,0,0,0,0,0,0,0,0.32708,0.44842,0.52403,0,0,0,0,0,0,0,0.36806,0.49647,0.59015,0,0,0,0,0,0,0,0.38511,0.52001,0.62335,0,0,0,0,0,0,0,0.35138,0.48076,0.57439,0,0,0,0,0,0,0,0.36659,0.4979,0.59554,0,0,0,0,0,0,0,0.35733,0.47715,0.56763,0,0,0,0,0,0,0,0.3742,0.50101,0.58888,0,0,0,0,0,0,0,0.33218,0.44764,0.51933,0,0,0,0,0,0,0,0.00439,0.00666,0.01177,0,0,0.00027,0.00043,0.00057,0.00087,0,0.00396,0.00601,0.01053,0,0,0.00026,0.00041,0.00054,0.00082,0,0.00433,0.00658,0.01154,0,0,0.00026,0.00042,0.00055,0.00085,0,0.00462,0.00704,0.01249,0,0,0.00027,0.00043,0.00058,0.00089,0,0.00267,0.00407,0.00691,0,0,0.00023,0.00036,0.00047,0.00069,0,0.00297,0.00465,0.00776,0,0,0.00024,0.00037,0.00048,0.00071,0,0.00259,0.00395,0.0067,0,0,0.00022,0.00034,0.00045,0.00065,0,0.00329,0.005,0.00865,0,0,0.00024,0.00038,0.0005,0.00074,0,0.0026,0.00395,0.00672,0,0,0.00022,0.00033,0.00043,0.00063,0,0.03266,0.03773,0.04922,0,0,0.00794,0.00829,0.00862,0.00933,0,0.0325,0.03703,0.04711,0,0,0.00816,0.00849,0.0088,0.00945,0,0.03538,0.04038,0.05153,0,0,0.0089,0.00924,0.00955,0.01024,0,0.0319,0.03736,0.04974,0,0,0.00744,0.00779,0.00813,0.00887,0,0.03133,0.03434,0.0405,0,0,0.00867,0.00894,0.00918,0.00967,0,0.02991,0.03368,0.04041,0,0,0.0079,0.00818,0.00844,0.00896,0,0.02902,0.03192,0.03788,0,0,0.00791,0.00817,0.00839,0.00884,0,0.03166,0.0354,0.04346,0,0,0.00833,0.00862,0.00889,0.00944,0,0.02976,0.03264,0.0386,0,0,0.00823,0.00848,0.0087,0.00913,0,0.01139,0.01587,0.02604,0,0,0.00147,0.00178,0.00207,0.0027,0,0.01064,0.01465,0.02357,0,0,0.00148,0.00177,0.00204,0.00262,0,0.01163,0.01606,0.02592,0,0,0.00158,0.00188,0.00216,0.00277,0,0.01172,0.01655,0.0275,0,0,0.00142,0.00173,0.00203,0.00268,0,0.00833,0.01099,0.01644,0,0,0.00149,0.00173,0.00194,0.00237,0,0.00867,0.01192,0.01795,0,0,0.0014,0.00165,0.00187,0.00233,0,0.0079,0.01047,0.01574,0,0,0.00137,0.0016,0.0018,0.0022,0,0.00941,0.01273,0.01985,0,0,0.00147,0.00172,0.00196,0.00245,0,0.008,0.01055,0.01582,0,0,0.00141,0.00163,0.00182,0.0022,0,0.01024,0.00913,0.00309,0,0,0,0,0,0,0,0.01033,0.00921,0.00312,0,0,0,0,0,0,0,0.0105,0.00936,0.00317,0,0,0,0,0,0,0,0.01025,0.00914,0.0031,0,0,0,0,0,0,0,0.01052,0.00935,0.00315,0,0,0,0,0,0,0,0.01035,0.00924,0.00311,0,0,0,0,0,0,0,0.01042,0.00926,0.00312,0,0,0,0,0,0,0,0.01043,0.00928,0.00313,0,0,0,0,0,0,0,0.01023,0.0091,0.00306,0,0,0,0,0,0,0,0.28388,0.37716,0.39327,0,0,0,0,0,0,0,0.25169,0.34476,0.3591,0,0,0,0,0,0,0,0.29044,0.39734,0.41263,0,0,0,0,0,0,0,0.32306,0.44048,0.45625,0,0,0,0,0,0,0,0.16567,0.25238,0.2603,0,0,0,0,0,0,0,0.20076,0.30345,0.30507,0,0,0,0,0,0,0,0.1612,0.24302,0.25049,0,0,0,0,0,0,0,0.21246,0.30218,0.31299,0,0,0,0,0,0,0,0.14361,0.21637,0.22279,0,0,0,0,0,0 +Mini car,PH10E,2010,0,0.00613,0.00675,0.00776,0.01072,0,0,0,0,0,0,0.00619,0.00674,0.00762,0.01018,0,0,0,0,0,0,0.00673,0.00734,0.00833,0.01122,0,0,0,0,0,0,0.00593,0.00663,0.00774,0.01105,0,0,0,0,0,0,0.00626,0.00661,0.00716,0.00866,0,0,0,0,0,0,0.00588,0.00631,0.00691,0.0087,0,0,0,0,0,0,0.00577,0.00611,0.00664,0.00807,0,0,0,0,0,0,0.00618,0.00662,0.00733,0.00935,0,0,0,0,0,0,0.00593,0.00625,0.00677,0.00817,0,0,0,0,0,0,0.03821,0.02636,0.02034,0.02656,0,0,0,0,0,0,0.0329,0.02378,0.01864,0.02457,0,0,0,0,0,0,0.03729,0.02802,0.02196,0.02919,0,0,0,0,0,0,0.04311,0.032,0.02495,0.03265,0,0,0,0,0,0,0.02084,0.01909,0.01594,0.02126,0,0,0,0,0,0,0.02419,0.02187,0.01768,0.02377,0,0,0,0,0,0,0.02019,0.01861,0.0156,0.02072,0,0,0,0,0,0,0.02695,0.02191,0.01765,0.02341,0,0,0,0,0,0,0.01941,0.01697,0.01392,0.01807,0,0,0,0,0,0,1.92333,2.98911,4.00319,5.13308,0,0,0,0,0,0,1.80096,2.9371,3.96557,5.07953,0,0,0,0,0,0,1.92573,3.27318,4.51752,5.85672,0,0,0,0,0,0,2.09471,3.54763,4.90588,6.33265,0,0,0,0,0,0,1.59901,2.99595,4.20513,5.40086,0,0,0,0,0,0,1.68343,3.15697,4.37356,5.6503,0,0,0,0,0,0,1.65039,3.05219,4.27079,5.465,0,0,0,0,0,0,1.7379,3.04051,4.18446,5.36564,0,0,0,0,0,0,1.4725,2.62623,3.58108,4.53945,0,0,0,0,0,0,306.53945,308.71835,312.44655,318.9748,0,0,0,0,0,0,309.44913,311.46064,314.92327,321.04691,0,0,0,0,0,0,314.48216,316.57989,320.18929,326.55848,0,0,0,0,0,0,306.72783,308.92926,312.72093,319.35634,0,0,0,0,0,0,315.77366,317.16827,319.64357,324.24976,0,0,0,0,0,0,310.3779,313.14072,314.843,320.01025,0,0,0,0,0,0,312.76988,314.10652,316.49615,320.96298,0,0,0,0,0,0,312.746,314.40776,317.31135,322.57488,0,0,0,0,0,0,306.9852,308.4518,310.99946,315.68109,0,0,0,0,0,0,0.00561,0.00634,0.00757,0.00989,0,0,0,0,0,0,0.00563,0.00636,0.00758,0.00989,0,0,0,0,0,0,0.00564,0.00636,0.00758,0.00988,0,0,0,0,0,0,0.00569,0.00644,0.00769,0.01006,0,0,0,0,0,0,0.00565,0.00638,0.0076,0.00991,0,0,0,0,0,0,0.00571,0.00645,0.00769,0.01005,0,0,0,0,0,0,0.00564,0.00638,0.00761,0.00993,0,0,0,0,0,0,0.00566,0.00639,0.00762,0.00994,0,0,0,0,0,0,0.00557,0.00629,0.00749,0.00978,0,0,0,0,0,0,0.01385,0.01607,0.02074,0.02215,0,0,0,0,0,0,0.01388,0.01611,0.02078,0.0222,0,0,0,0,0,0,0.01392,0.01615,0.02084,0.02226,0,0,0,0,0,0,0.01376,0.01596,0.02059,0.02199,0,0,0,0,0,0,0.0139,0.01613,0.02081,0.02222,0,0,0,0,0,0,0.01381,0.01602,0.02067,0.02207,0,0,0,0,0,0,0.01385,0.01607,0.02073,0.02214,0,0,0,0,0,0,0.0139,0.01613,0.02081,0.02222,0,0,0,0,0,0,0.01393,0.01616,0.02086,0.02227,0,0,0,0,0,0,0.08911,0.14566,0.15561,0.26121,0,0,0,0,0,0,0.08534,0.14512,0.15455,0.26066,0,0,0,0,0,0,0.08871,0.16012,0.16878,0.2928,0,0,0,0,0,0,0.09218,0.17011,0.17943,0.31222,0,0,0,0,0,0,0.07945,0.15028,0.15821,0.27968,0,0,0,0,0,0,0.08401,0.15824,0.16652,0.29309,0,0,0,0,0,0,0.0813,0.15019,0.15812,0.27721,0,0,0,0,0,0,0.08906,0.16049,0.16689,0.28876,0,0,0,0,0,0,0.08015,0.14247,0.14787,0.2524,0,0,0,0,0,0,0.0018,0.00278,0.00429,0.00883,0,0,0.00027,0.00043,0.00057,0,0.00169,0.0026,0.00399,0.00805,0,0,0.00026,0.00041,0.00054,0,0.00178,0.00274,0.00423,0.00869,0,0,0.00026,0.00042,0.00056,0,0.00188,0.00291,0.00452,0.00939,0,0,0.00027,0.00043,0.00058,0,0.00141,0.00211,0.00319,0.00592,0,0,0.00023,0.00036,0.00047,0,0.00147,0.00225,0.00337,0.00643,0,0,0.00023,0.00037,0.00048,0,0.00139,0.00208,0.00314,0.00579,0,0,0.00022,0.00034,0.00045,0,0.00155,0.00235,0.00358,0.00696,0,0,0.00024,0.00038,0.0005,0,0.0014,0.00209,0.00315,0.00579,0,0,0.00022,0.00033,0.00043,0,0.02727,0.0295,0.03297,0.04337,0,0,0.00794,0.00829,0.00862,0,0.02778,0.02982,0.03297,0.0422,0,0,0.00816,0.00849,0.0088,0,0.03007,0.03227,0.03567,0.04587,0,0,0.0089,0.00924,0.00956,0,0.02617,0.02855,0.03228,0.04356,0,0,0.00743,0.00779,0.00813,0,0.0287,0.03022,0.03254,0.03855,0,0,0.00866,0.00894,0.00918,0,0.02678,0.02861,0.03095,0.03777,0,0,0.0079,0.00818,0.00844,0,0.02652,0.02801,0.03027,0.03608,0,0,0.00791,0.00817,0.00839,0,0.02804,0.02981,0.03253,0.04011,0,0,0.00833,0.00862,0.00889,0,0.02727,0.02875,0.03101,0.03677,0,0,0.00823,0.00848,0.0087,0,0.00662,0.00859,0.01166,0.02087,0,0,0.00147,0.00178,0.00207,0,0.00647,0.00827,0.01105,0.01922,0,0,0.00148,0.00177,0.00204,0,0.00694,0.00888,0.01189,0.02091,0,0,0.00158,0.00188,0.00217,0,0.00665,0.00876,0.01206,0.02203,0,0,0.00141,0.00173,0.00203,0,0.00601,0.00736,0.0094,0.01472,0,0,0.00149,0.00173,0.00194,0,0.0059,0.00744,0.00958,0.01561,0,0,0.0014,0.00165,0.00188,0,0.0057,0.00701,0.00901,0.01415,0,0,0.00137,0.0016,0.0018,0,0.00621,0.00778,0.01019,0.01689,0,0,0.00146,0.00173,0.00196,0,0.0058,0.00711,0.0091,0.0142,0,0,0.0014,0.00163,0.00182,0,0.01004,0.00891,0.00301,0.00307,0,0,0,0,0,0,0.01013,0.00899,0.00303,0.00309,0,0,0,0,0,0,0.0103,0.00914,0.00308,0.00314,0,0,0,0,0,0,0.01004,0.00892,0.00301,0.00307,0,0,0,0,0,0,0.01034,0.00916,0.00308,0.00312,0,0,0,0,0,0,0.01016,0.00904,0.00303,0.00308,0,0,0,0,0,0,0.01024,0.00907,0.00305,0.00309,0,0,0,0,0,0,0.01024,0.00908,0.00305,0.0031,0,0,0,0,0,0,0.01005,0.00891,0.00299,0.00304,0,0,0,0,0,0,0.11243,0.15808,0.21429,0.30987,0,0,0,0,0,0,0.09519,0.13973,0.19332,0.2818,0,0,0,0,0,0,0.10962,0.16501,0.22797,0.33302,0,0,0,0,0,0,0.12822,0.19048,0.26093,0.37634,0,0,0,0,0,0,0.05584,0.10296,0.15562,0.22686,0,0,0,0,0,0,0.06678,0.12104,0.17503,0.25768,0,0,0,0,0,0,0.0533,0.09906,0.1509,0.2196,0,0,0,0,0,0,0.07564,0.12336,0.17759,0.25892,0,0,0,0,0,0,0.05116,0.09091,0.13563,0.19363,0,0,0,0,0 +Mini car,PH10E,2015,0,0,0.00598,0.00646,0.00736,0.00956,0,0,0,0,0,0,0.00608,0.00651,0.00732,0.00926,0,0,0,0,0,0,0.00659,0.00706,0.00795,0.0101,0,0,0,0,0,0,0.00576,0.00627,0.00726,0.00968,0,0,0,0,0,0,0.00622,0.00652,0.00707,0.0083,0,0,0,0,0,0,0.00584,0.00616,0.00678,0.0082,0,0,0,0,0,0,0.00574,0.00603,0.00657,0.00775,0,0,0,0,0,0,0.0061,0.00647,0.00715,0.00872,0,0,0,0,0,0,0.0059,0.00618,0.00671,0.00786,0,0,0,0,0,0,0.02858,0.01877,0.01692,0.01947,0,0,0,0,0,0,0.02585,0.01739,0.016,0.01839,0,0,0,0,0,0,0.02827,0.0202,0.01861,0.02156,0,0,0,0,0,0,0.03158,0.02255,0.02067,0.02389,0,0,0,0,0,0,0.01822,0.01492,0.01487,0.01711,0,0,0,0,0,0,0.02112,0.01655,0.01626,0.01878,0,0,0,0,0,0,0.01786,0.01463,0.01467,0.01686,0,0,0,0,0,0,0.02207,0.01655,0.01582,0.01818,0,0,0,0,0,0,0.01723,0.0133,0.01305,0.0148,0,0,0,0,0,0,1.51417,2.66864,3.57078,4.41441,0,0,0,0,0,0,1.48811,2.66618,3.59787,4.43354,0,0,0,0,0,0,1.54893,2.95771,4.08742,5.07154,0,0,0,0,0,0,1.67071,3.18161,4.40907,5.45195,0,0,0,0,0,0,1.40489,2.86373,4.01722,4.91998,0,0,0,0,0,0,1.46876,2.93868,4.13233,5.08818,0,0,0,0,0,0,1.44932,2.92862,4.09625,5.00443,0,0,0,0,0,0,1.46752,2.83903,3.90822,4.79595,0,0,0,0,0,0,1.30145,2.5134,3.42382,4.16208,0,0,0,0,0,0,277.7412,279.83305,281.88384,288.23583,0,0,0,0,0,0,280.30679,282.21061,284.00879,290.01671,0,0,0,0,0,0,284.88947,286.88456,288.79315,295.02264,0,0,0,0,0,0,277.94,280.06191,282.16672,288.61727,0,0,0,0,0,0,285.78779,287.00245,287.8791,292.58807,0,0,0,0,0,0,282.03185,282.47762,283.71095,288.89519,0,0,0,0,0,0,283.05994,284.21552,285.0271,289.61184,0,0,0,0,0,0,283.15374,284.66763,285.94535,291.21682,0,0,0,0,0,0,277.8483,279.14374,280.12833,284.87858,0,0,0,0,0,0,0.00364,0.00412,0.00475,0.00634,0,0,0,0,0,0,0.00366,0.00414,0.00477,0.00636,0,0,0,0,0,0,0.0037,0.00417,0.0048,0.00637,0,0,0,0,0,0,0.00367,0.00415,0.0048,0.00642,0,0,0,0,0,0,0.0037,0.00417,0.00481,0.00639,0,0,0,0,0,0,0.0037,0.00418,0.00483,0.00644,0,0,0,0,0,0,0.00367,0.00414,0.00478,0.00637,0,0,0,0,0,0,0.00369,0.00417,0.0048,0.00639,0,0,0,0,0,0,0.00364,0.0041,0.00473,0.00629,0,0,0,0,0,0,0.01385,0.01619,0.02074,0.02088,0,0,0,0,0,0,0.01388,0.01623,0.02078,0.02093,0,0,0,0,0,0,0.01392,0.01627,0.02084,0.02098,0,0,0,0,0,0,0.01376,0.01608,0.02059,0.02073,0,0,0,0,0,0,0.0139,0.01625,0.02081,0.02095,0,0,0,0,0,0,0.01381,0.01613,0.02067,0.02081,0,0,0,0,0,0,0.01385,0.01618,0.02073,0.02087,0,0,0,0,0,0,0.0139,0.01625,0.02081,0.02095,0,0,0,0,0,0,0.01393,0.01628,0.02086,0.021,0,0,0,0,0,0,0.07275,0.09638,0.13778,0.18606,0,0,0,0,0,0,0.07205,0.09517,0.13651,0.1846,0,0,0,0,0,0,0.07331,0.10428,0.14871,0.2032,0,0,0,0,0,0,0.07684,0.11119,0.15858,0.21708,0,0,0,0,0,0,0.06481,0.09517,0.13805,0.19036,0,0,0,0,0,0,0.06939,0.10104,0.14597,0.20096,0,0,0,0,0,0,0.06594,0.09513,0.13825,0.18993,0,0,0,0,0,0,0.0728,0.10206,0.14645,0.19953,0,0,0,0,0,0,0.06565,0.08983,0.12931,0.17515,0,0,0,0,0,0,0.00166,0.00248,0.00392,0.0071,0,0,0.00027,0.00043,0,0,0.00158,0.00236,0.00371,0.00663,0,0,0.00026,0.00041,0,0,0.00164,0.00246,0.00387,0.00701,0,0,0.00026,0.00042,0,0,0.00171,0.00256,0.00406,0.00745,0,0,0.00027,0.00043,0,0,0.00137,0.00201,0.00311,0.00531,0,0,0.00023,0.00036,0,0,0.00143,0.00209,0.00324,0.00563,0,0,0.00024,0.00037,0,0,0.00135,0.00199,0.00307,0.00523,0,0,0.00022,0.00035,0,0,0.00148,0.00219,0.0034,0.00596,0,0,0.00024,0.00038,0,0,0.00136,0.00201,0.00309,0.00524,0,0,0.00022,0.00034,0,0,0.0269,0.02871,0.03198,0.03938,0,0,0.00794,0.00829,0,0,0.02749,0.02919,0.03222,0.03895,0,0,0.00816,0.00849,0,0,0.02971,0.03151,0.03472,0.04201,0,0,0.0089,0.00924,0,0,0.02571,0.02761,0.03106,0.03901,0,0,0.00743,0.00779,0,0,0.02861,0.02996,0.03232,0.03719,0,0,0.00866,0.00894,0,0,0.02678,0.02809,0.03062,0.03596,0,0,0.0079,0.00819,0,0,0.02644,0.02778,0.0301,0.03485,0,0,0.00791,0.00817,0,0,0.02785,0.02937,0.03206,0.03784,0,0,0.00833,0.00862,0,0,0.02719,0.02853,0.03084,0.03555,0,0,0.00823,0.00848,0,0,0.00629,0.0079,0.01078,0.01734,0,0,0.00147,0.00178,0,0,0.00621,0.00772,0.01039,0.01635,0,0,0.00148,0.00177,0,0,0.00662,0.00821,0.01105,0.01749,0,0,0.00158,0.00188,0,0,0.00624,0.00793,0.01098,0.01801,0,0,0.00141,0.00173,0,0,0.00592,0.00713,0.00921,0.01352,0,0,0.00149,0.00173,0,0,0.00582,0.00705,0.00929,0.01402,0,0,0.0014,0.00165,0,0,0.00562,0.00681,0.00886,0.01306,0,0,0.00137,0.0016,0,0,0.00604,0.00739,0.00977,0.01488,0,0,0.00146,0.00173,0,0,0.00573,0.00691,0.00895,0.01312,0,0,0.0014,0.00163,0,0,0.00802,0.00269,0.00271,0.00277,0,0,0,0,0,0,0.00809,0.00272,0.00273,0.00279,0,0,0,0,0,0,0.00823,0.00276,0.00278,0.00284,0,0,0,0,0,0,0.00803,0.0027,0.00272,0.00278,0,0,0,0,0,0,0.00825,0.00276,0.00277,0.00282,0,0,0,0,0,0,0.00814,0.00272,0.00273,0.00278,0,0,0,0,0,0,0.00817,0.00274,0.00274,0.00279,0,0,0,0,0,0,0.00818,0.00274,0.00275,0.0028,0,0,0,0,0,0,0.00802,0.00269,0.0027,0.00274,0,0,0,0,0,0,0.08082,0.11753,0.17355,0.23767,0,0,0,0,0,0,0.07168,0.10731,0.1619,0.22166,0,0,0,0,0,0,0.07963,0.12464,0.18824,0.25967,0,0,0,0,0,0,0.09014,0.14006,0.21006,0.28933,0,0,0,0,0,0,0.04669,0.08662,0.14305,0.1969,0,0,0,0,0,0,0.05604,0.09751,0.1582,0.21833,0,0,0,0,0,0,0.04516,0.08418,0.14005,0.19256,0,0,0,0,0,0,0.05911,0.09896,0.15585,0.21392,0,0,0,0,0,0,0.0434,0.07691,0.12534,0.17012,0,0,0,0 +Mini car,PH10E,2020,0,0,0,0.00582,0.00619,0.00677,0.00849,0,0,0,0,0,0,0.00594,0.00627,0.00679,0.00832,0,0,0,0,0,0,0.00644,0.0068,0.00737,0.00905,0,0,0,0,0,0,0.00558,0.00598,0.00661,0.00849,0,0,0,0,0,0,0.00613,0.00636,0.00672,0.00772,0,0,0,0,0,0,0.00572,0.00598,0.00638,0.00753,0,0,0,0,0,0,0.00565,0.00588,0.00622,0.00719,0,0,0,0,0,0,0.00599,0.00627,0.00671,0.00797,0,0,0,0,0,0,0.00581,0.00603,0.00637,0.00731,0,0,0,0,0,0,0.02198,0.01508,0.01246,0.0145,0,0,0,0,0,0,0.01951,0.01373,0.01155,0.01353,0,0,0,0,0,0,0.0217,0.01596,0.01344,0.016,0,0,0,0,0,0,0.02453,0.01795,0.01505,0.01783,0,0,0,0,0,0,0.01249,0.0108,0.00986,0.01206,0,0,0,0,0,0,0.01464,0.01226,0.011,0.01343,0,0,0,0,0,0,0.0121,0.01054,0.00969,0.01185,0,0,0,0,0,0,0.01599,0.01252,0.01093,0.0131,0,0,0,0,0,0,0.01159,0.0096,0.00863,0.01033,0,0,0,0,0,0,1.19189,1.77193,2.20772,2.94635,0,0,0,0,0,0,1.16407,1.74982,2.19355,2.93403,0,0,0,0,0,0,1.22173,1.9406,2.48588,3.3872,0,0,0,0,0,0,1.32764,2.10925,2.71431,3.67658,0,0,0,0,0,0,1.07895,1.81274,2.34711,3.19906,0,0,0,0,0,0,1.12172,1.87932,2.44218,3.34315,0,0,0,0,0,0,1.11046,1.85748,2.4008,3.25854,0,0,0,0,0,0,1.13731,1.82785,2.32946,3.14885,0,0,0,0,0,0,0.99457,1.59576,2.01024,2.68922,0,0,0,0,0,0,220.59257,222.13416,223.6185,236.83522,0,0,0,0,0,0,222.49626,223.88809,225.16116,238.12116,0,0,0,0,0,0,226.17838,227.64109,229.00274,242.2905,0,0,0,0,0,0,220.80178,222.37128,223.90415,237.21932,0,0,0,0,0,0,226.37485,227.21768,227.72509,239.60635,0,0,0,0,0,0,222.77749,223.82852,224.63525,236.83943,0,0,0,0,0,0,224.19532,224.9943,225.45067,237.14523,0,0,0,0,0,0,224.49111,225.57262,226.41296,238.75475,0,0,0,0,0,0,220.11573,221.02123,221.61705,233.32926,0,0,0,0,0,0,0.00371,0.00414,0.00473,0.00585,0,0,0,0,0,0,0.00373,0.00416,0.00475,0.00587,0,0,0,0,0,0,0.00377,0.00419,0.00478,0.00589,0,0,0,0,0,0,0.00374,0.00417,0.00478,0.00592,0,0,0,0,0,0,0.00377,0.00419,0.00479,0.0059,0,0,0,0,0,0,0.00377,0.0042,0.00481,0.00595,0,0,0,0,0,0,0.00373,0.00416,0.00476,0.00588,0,0,0,0,0,0,0.00376,0.00419,0.00478,0.0059,0,0,0,0,0,0,0.0037,0.00412,0.00471,0.00581,0,0,0,0,0,0,0.01385,0.01614,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01617,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01622,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01603,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01608,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01613,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.0162,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01623,0.02086,0.02086,0,0,0,0,0,0,0.05022,0.07749,0.10392,0.13907,0,0,0,0,0,0,0.0492,0.07615,0.10243,0.13729,0,0,0,0,0,0,0.05042,0.08309,0.11108,0.15119,0,0,0,0,0,0,0.0533,0.08913,0.11923,0.16266,0,0,0,0,0,0,0.04239,0.07395,0.10041,0.13823,0,0,0,0,0,0,0.04606,0.07938,0.10741,0.14755,0,0,0,0,0,0,0.04304,0.07426,0.10108,0.13839,0,0,0,0,0,0,0.04823,0.08062,0.10846,0.14699,0,0,0,0,0,0,0.04239,0.0702,0.09471,0.12729,0,0,0,0,0,0,0.00139,0.00201,0.00292,0.00541,0,0,0.00027,0,0,0,0.00133,0.00192,0.00277,0.00508,0,0,0.00026,0,0,0,0.00138,0.00199,0.00289,0.00534,0,0,0.00026,0,0,0,0.00143,0.00207,0.00302,0.00564,0,0,0.00027,0,0,0,0.00117,0.00165,0.00234,0.00414,0,0,0.00023,0,0,0,0.0012,0.00171,0.00244,0.00437,0,0,0.00024,0,0,0,0.00116,0.00164,0.00232,0.00408,0,0,0.00022,0,0,0,0.00125,0.00179,0.00256,0.0046,0,0,0.00024,0,0,0,0.00117,0.00165,0.00233,0.00409,0,0,0.00022,0,0,0,0.02628,0.02767,0.02974,0.03553,0,0,0.00794,0,0,0,0.02693,0.02823,0.03014,0.03546,0,0,0.00816,0,0,0,0.02911,0.03048,0.03252,0.03822,0,0,0.0089,0,0,0,0.02506,0.02651,0.02869,0.03487,0,0,0.00743,0,0,0,0.02817,0.02921,0.0307,0.03466,0,0,0.00867,0,0,0,0.02618,0.02728,0.02889,0.03321,0,0,0.0079,0,0,0,0.02601,0.02704,0.02851,0.03239,0,0,0.00791,0,0,0,0.02735,0.02851,0.03022,0.03484,0,0,0.00833,0,0,0,0.02676,0.02778,0.02925,0.03309,0,0,0.00823,0,0,0,0.00575,0.00698,0.00881,0.01393,0,0,0.00147,0,0,0,0.00571,0.00686,0.00856,0.01326,0,0,0.00148,0,0,0,0.00609,0.0073,0.0091,0.01414,0,0,0.00158,0,0,0,0.00567,0.00696,0.00888,0.01435,0,0,0.00141,0,0,0,0.00554,0.00646,0.00778,0.01128,0,0,0.00149,0,0,0,0.00536,0.00634,0.00776,0.01158,0,0,0.0014,0,0,0,0.00524,0.00615,0.00745,0.01088,0,0,0.00137,0,0,0,0.0056,0.00663,0.00814,0.01223,0,0,0.00146,0,0,0,0.00535,0.00625,0.00754,0.01095,0,0,0.0014,0,0,0,0.00212,0.00214,0.00215,0.00228,0,0,0,0,0,0,0.00214,0.00215,0.00217,0.00229,0,0,0,0,0,0,0.00218,0.00219,0.0022,0.00233,0,0,0,0,0,0,0.00213,0.00214,0.00216,0.00228,0,0,0,0,0,0,0.00218,0.00219,0.00219,0.00231,0,0,0,0,0,0,0.00214,0.00215,0.00216,0.00228,0,0,0,0,0,0,0.00216,0.00217,0.00217,0.00228,0,0,0,0,0,0,0.00216,0.00217,0.00218,0.0023,0,0,0,0,0,0,0.00212,0.00213,0.00213,0.00225,0,0,0,0,0,0,0.06737,0.09382,0.12807,0.17896,0,0,0,0,0,0,0.05915,0.08416,0.11677,0.16464,0,0,0,0,0,0,0.06647,0.09779,0.13583,0.19454,0,0,0,0,0,0,0.07567,0.11068,0.153,0.21816,0,0,0,0,0,0,0.03614,0.06167,0.09265,0.13863,0,0,0,0,0,0,0.04322,0.0713,0.10525,0.15641,0,0,0,0,0,0,0.03467,0.05957,0.09015,0.13498,0,0,0,0,0,0,0.04757,0.07406,0.10651,0.15486,0,0,0,0,0,0,0.03306,0.0545,0.08096,0.11843,0,0,0 +Mini car,PH10E,2025,0,0,0,0,0.00557,0.0058,0.00619,0.00736,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.00731,0,0,0,0,0,0,0.00619,0.00642,0.00679,0.00795,0,0,0,0,0,0,0.00532,0.00556,0.00598,0.00726,0,0,0,0,0,0,0.00597,0.00611,0.00635,0.00704,0,0,0,0,0,0,0.00554,0.0057,0.00597,0.00676,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00654,0,0,0,0,0,0,0.00579,0.00597,0.00626,0.00713,0,0,0,0,0,0,0.00565,0.00579,0.00601,0.00667,0,0,0,0,0,0,0.01928,0.01221,0.00966,0.01115,0,0,0,0,0,0,0.01672,0.01081,0.00871,0.01015,0,0,0,0,0,0,0.0189,0.0126,0.01015,0.01198,0,0,0,0,0,0,0.02166,0.01437,0.01151,0.0135,0,0,0,0,0,0,0.00952,0.00739,0.00652,0.00808,0,0,0,0,0,0,0.01164,0.00871,0.00752,0.00924,0,0,0,0,0,0,0.00909,0.00713,0.00635,0.00788,0,0,0,0,0,0,0.01308,0.00922,0.00773,0.00928,0,0,0,0,0,0,0.00868,0.00652,0.00569,0.00691,0,0,0,0,0,0,0.89002,1.28198,1.61181,2.11974,0,0,0,0,0,0,0.84974,1.24287,1.57466,2.07774,0,0,0,0,0,0,0.89901,1.38046,1.78361,2.39019,0,0,0,0,0,0,0.9913,1.52072,1.97036,2.62377,0,0,0,0,0,0,0.72896,1.21177,1.59549,2.15063,0,0,0,0,0,0,0.77473,1.27688,1.68334,2.27475,0,0,0,0,0,0,0.74902,1.2427,1.63394,2.19387,0,0,0,0,0,0,0.79885,1.25791,1.62447,2.16826,0,0,0,0,0,0,0.67343,1.07011,1.37071,1.81715,0,0,0,0,0,0,178.4843,179.81652,181.36821,192.70627,0,0,0,0,0,0,179.91777,181.12452,182.49201,193.58788,0,0,0,0,0,0,182.93111,184.19802,185.64826,197.03293,0,0,0,0,0,0,178.69575,180.05297,181.65085,193.08522,0,0,0,0,0,0,182.67748,183.42269,184.12002,194.21297,0,0,0,0,0,0,179.92792,180.84804,181.80645,192.20995,0,0,0,0,0,0,180.90394,181.61221,182.26392,192.19562,0,0,0,0,0,0,181.31934,182.26513,183.25416,193.77617,0,0,0,0,0,0,177.64855,178.44373,179.20809,189.15888,0,0,0,0,0,0,0.00374,0.00413,0.00472,0.00575,0,0,0,0,0,0,0.00375,0.00415,0.00474,0.00577,0,0,0,0,0,0,0.00379,0.00419,0.00477,0.0058,0,0,0,0,0,0,0.00376,0.00417,0.00477,0.00582,0,0,0,0,0,0,0.00379,0.00419,0.00477,0.00581,0,0,0,0,0,0,0.00379,0.0042,0.00479,0.00585,0,0,0,0,0,0,0.00376,0.00416,0.00475,0.00579,0,0,0,0,0,0,0.00378,0.00418,0.00477,0.00581,0,0,0,0,0,0,0.00372,0.00412,0.00469,0.00571,0,0,0,0,0,0,0.01385,0.01613,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01616,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01621,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01601,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01618,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01607,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01612,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01618,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01622,0.02086,0.02086,0,0,0,0,0,0,0.03847,0.05613,0.07465,0.10182,0,0,0,0,0,0,0.03723,0.0546,0.07288,0.0997,0,0,0,0,0,0,0.0382,0.0591,0.07849,0.10911,0,0,0,0,0,0,0.04075,0.06387,0.08486,0.11809,0,0,0,0,0,0,0.03028,0.05015,0.06804,0.09618,0,0,0,0,0,0,0.03375,0.05493,0.07409,0.10424,0,0,0,0,0,0,0.03085,0.05062,0.0688,0.09667,0,0,0,0,0,0,0.03533,0.05591,0.07493,0.10409,0,0,0,0,0,0,0.03022,0.04779,0.06442,0.08891,0,0,0.01783,0,0,0,0.00091,0.00129,0.0019,0.00362,0,0,0.01557,0,0,0,0.00087,0.00123,0.00181,0.00341,0,0,0.01736,0,0,0,0.0009,0.00128,0.00188,0.00358,0,0,0.01912,0,0,0,0.00093,0.00133,0.00197,0.00378,0,0,0.00929,0,0,0,0.00076,0.00106,0.00153,0.00279,0,0,0.01086,0,0,0,0.00078,0.0011,0.00159,0.00294,0,0,0.00892,0,0,0,0.00076,0.00105,0.00151,0.00275,0,0,0.01235,0,0,0,0.00082,0.00115,0.00167,0.0031,0,0,0.00882,0,0,0,0.00076,0.00106,0.00152,0.00276,0,0,0.04731,0,0,0,0.02524,0.02609,0.02748,0.03147,0,0,0.04236,0,0,0,0.02594,0.02674,0.02803,0.0317,0,0,0.04749,0,0,0,0.02808,0.02892,0.03029,0.03422,0,0,0.05006,0,0,0,0.02398,0.02487,0.02634,0.03058,0,0,0.02861,0,0,0,0.02733,0.02797,0.02898,0.03175,0,0,0.03145,0,0,0,0.0253,0.02598,0.02707,0.03008,0,0,0.027,0,0,0,0.02518,0.02581,0.02681,0.02953,0,0,0.03528,0,0,0,0.02643,0.02715,0.0283,0.03152,0,0,0.02695,0,0,0,0.02593,0.02656,0.02755,0.03025,0,0,0.0363,0,0,0,0.00483,0.00558,0.00681,0.01034,0,0,0.03173,0,0,0,0.00484,0.00554,0.00669,0.00994,0,0,0.03572,0,0,0,0.00517,0.00592,0.00713,0.0106,0,0,0.03912,0,0,0,0.00472,0.00551,0.0068,0.01055,0,0,0.01913,0,0,0,0.0048,0.00536,0.00626,0.00871,0,0,0.02223,0,0,0,0.00459,0.00519,0.00615,0.00881,0,0,0.01826,0,0,0,0.00451,0.00507,0.00595,0.00835,0,0,0.02531,0,0,0,0.00479,0.00543,0.00644,0.00929,0,0,0.01796,0,0,0,0.00461,0.00517,0.00604,0.00843,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.00185,0,0,0,0,0,0,0.00173,0.00174,0.00176,0.00186,0,0,0,0,0,0,0.00176,0.00177,0.00179,0.0019,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.00186,0,0,0,0,0,0,0.00176,0.00177,0.00177,0.00187,0,0,0,0,0,0,0.00173,0.00174,0.00175,0.00185,0,0,0,0,0,0,0.00174,0.00175,0.00175,0.00185,0,0,0,0,0,0,0.00175,0.00175,0.00176,0.00187,0,0,0,0,0,0,0.00171,0.00172,0.00172,0.00182,0,0,0,0,0,0,0.05982,0.07796,0.10264,0.14076,0,0,0,0,0,0,0.05135,0.06806,0.09097,0.12624,0,0,0,0,0,0,0.05854,0.07933,0.10608,0.14894,0,0,0,0,0,0,0.06753,0.09101,0.12106,0.16895,0,0,0,0,0,0,0.02761,0.04285,0.06255,0.09374,0,0,0,0,0,0,0.03457,0.05175,0.07381,0.10909,0,0,0,0,0,0,0.02609,0.04087,0.06018,0.09049,0,0,0,0,0,0,0.03928,0.05592,0.07758,0.11167,0,0,0,0,0,0,0.0248,0.03757,0.0544,0.07997,0,0 +Mini car,PH10E,2030,0,0,0,0,0,0.00557,0.0058,0.00618,0.00705,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.00704,0,0,0,0,0,0,0.00619,0.00641,0.00679,0.00764,0,0,0,0,0,0,0.00531,0.00556,0.00598,0.00692,0,0,0,0,0,0,0.00597,0.00611,0.00634,0.00686,0,0,0,0,0,0,0.00554,0.00569,0.00596,0.00655,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00636,0,0,0,0,0,0,0.00579,0.00596,0.00626,0.0069,0,0,0,0,0,0,0.00565,0.00578,0.00601,0.0065,0,0,0,0,0,0,0.01833,0.01129,0.00883,0.00983,0,0,0,0,0,0,0.01577,0.00989,0.00787,0.00881,0,0,0,0,0,0,0.01792,0.01153,0.00919,0.01035,0,0,0,0,0,0,0.02064,0.01321,0.01047,0.01175,0,0,0,0,0,0,0.00853,0.00632,0.00555,0.00646,0,0,0,0,0,0,0.01063,0.0076,0.00651,0.00752,0,0,0,0,0,0,0.00809,0.00606,0.00538,0.00626,0,0,0,0,0,0,0.01208,0.00818,0.00679,0.00774,0,0,0,0,0,0,0.00771,0.00556,0.00484,0.00555,0,0,0,0,0,0,0.80818,1.15718,1.46563,1.83793,0,0,0,0,0,0,0.76497,1.11412,1.42304,1.78491,0,0,0,0,0,0,0.81184,1.23798,1.61193,2.0425,0,0,0,0,0,0,0.90005,1.37018,1.78788,2.2557,0,0,0,0,0,0,0.63564,1.06015,1.41202,1.78413,0,0,0,0,0,0,0.68181,1.12428,1.49778,1.89931,0,0,0,0,0,0,0.6526,1.08734,1.44637,1.822,0,0,0,0,0,0,0.70798,1.11376,1.45203,1.82777,0,0,0,0,0,0,0.58758,0.93762,1.21416,1.51657,0,0,0,0,0,0,164.25068,165.90879,168.4776,175.72817,0,0,0,0,0,0,165.53005,167.07511,169.47594,176.46779,0,0,0,0,0,0,168.31575,169.92398,172.4226,179.63006,0,0,0,0,0,0,164.46155,166.14375,168.76003,176.10116,0,0,0,0,0,0,167.92857,169.05301,170.82585,176.80948,0,0,0,0,0,0,165.45847,166.73838,168.74581,175.08063,0,0,0,0,0,0,166.29281,167.37914,169.09797,174.96466,0,0,0,0,0,0,166.7407,168.04743,170.09259,176.51128,0,0,0,0,0,0,163.31335,164.47117,166.27551,172.21957,0,0,0,0,0,0,0.00373,0.00412,0.00471,0.00572,0,0,0,0,0,0,0.00375,0.00414,0.00473,0.00574,0,0,0,0,0,0,0.00379,0.00417,0.00476,0.00577,0,0,0,0,0,0,0.00376,0.00415,0.00476,0.00579,0,0,0,0,0,0,0.00379,0.00417,0.00477,0.00578,0,0,0,0,0,0,0.00379,0.00418,0.00479,0.00582,0,0,0,0,0,0,0.00375,0.00414,0.00474,0.00576,0,0,0,0,0,0,0.00378,0.00417,0.00476,0.00578,0,0,0,0,0,0,0.00372,0.0041,0.00469,0.00568,0,0,0,0,0,0,0.01385,0.01612,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01615,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.0162,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.016,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01617,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01606,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01611,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01617,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01621,0.02086,0.02086,0,0,0,0,0,0,0.03392,0.04846,0.06556,0.08661,0,0,0,0,0,0,0.0326,0.04685,0.06369,0.08432,0,0,0,0,0,0,0.03342,0.05047,0.06835,0.09154,0,0,0,0,0,0,0.03579,0.05475,0.07415,0.09932,0,0,0,0,0,0,0.02559,0.04164,0.058,0.07865,0,0,0,0,0,0,0.02895,0.04616,0.06375,0.08611,0,0,0,0,0,0,0.02614,0.04213,0.05876,0.07931,0,0,0,0,0,0,0.03029,0.04701,0.06447,0.08625,0,0,0,0,0,0,0.02552,0.03978,0.05499,0.07319,0,0.00482,0.01056,0,0,0,0.00091,0.00129,0.0019,0.00316,0,0.00422,0.00922,0,0,0,0.00087,0.00123,0.00181,0.00298,0,0.00468,0.01027,0,0,0,0.0009,0.00128,0.00188,0.00312,0,0.00513,0.01127,0,0,0,0.00093,0.00132,0.00196,0.00329,0,0.00254,0.00547,0,0,0,0.00076,0.00106,0.00153,0.00245,0,0.00295,0.00638,0,0,0,0.00078,0.0011,0.00159,0.00258,0,0.00245,0.00526,0,0,0,0.00075,0.00105,0.00151,0.00242,0,0.00336,0.0073,0,0,0,0.00082,0.00114,0.00167,0.00271,0,0.00244,0.00523,0,0,0,0.00076,0.00106,0.00152,0.00242,0,0.018,0.0309,0,0,0,0.02524,0.02608,0.02748,0.03041,0,0.0169,0.02806,0,0,0,0.02594,0.02673,0.02803,0.03072,0,0.01874,0.03126,0,0,0,0.02807,0.02891,0.03029,0.03317,0,0.01828,0.03219,0,0,0,0.02398,0.02486,0.02633,0.02945,0,0.01369,0.02011,0,0,0,0.02733,0.02796,0.02898,0.03101,0,0.01386,0.0214,0,0,0,0.0253,0.02598,0.02707,0.02927,0,0.01275,0.0189,0,0,0,0.02518,0.02581,0.02681,0.0288,0,0.01519,0.02396,0,0,0,0.02643,0.02714,0.0283,0.03065,0,0.01301,0.01912,0,0,0,0.02593,0.02655,0.02755,0.02952,0,0.01038,0.02179,0,0,0,0.00482,0.00557,0.00681,0.0094,0,0.00921,0.01908,0,0,0,0.00484,0.00554,0.00668,0.00907,0,0.01029,0.02137,0,0,0,0.00517,0.00591,0.00713,0.00968,0,0.01101,0.02332,0,0,0,0.00471,0.0055,0.0068,0.00955,0,0.00594,0.01162,0,0,0,0.00479,0.00536,0.00626,0.00805,0,0.00667,0.01334,0,0,0,0.00459,0.00518,0.00615,0.0081,0,0.00566,0.0111,0,0,0,0.00451,0.00506,0.00595,0.00771,0,0.00754,0.01529,0,0,0,0.00479,0.00542,0.00644,0.00852,0,0.00563,0.01104,0,0,0,0.00461,0.00516,0.00604,0.00779,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00169,0,0,0,0,0,0,0.00159,0.00161,0.00163,0.0017,0,0,0,0,0,0,0.00162,0.00164,0.00166,0.00173,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.0017,0,0,0,0,0,0,0.00162,0.00163,0.00164,0.0017,0,0,0,0,0,0,0.00159,0.0016,0.00162,0.00169,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00168,0,0,0,0,0,0,0.0016,0.00162,0.00164,0.0017,0,0,0,0,0,0,0.00157,0.00158,0.0016,0.00166,0,0,0,0,0,0,0.05707,0.07272,0.09535,0.12581,0,0,0,0,0,0,0.04858,0.06282,0.08362,0.1111,0,0,0,0,0,0,0.05567,0.07329,0.09759,0.13051,0,0,0,0,0,0,0.06452,0.08452,0.11193,0.14909,0,0,0,0,0,0,0.02478,0.03697,0.05408,0.07548,0,0,0,0,0,0,0.03167,0.04558,0.06494,0.08977,0,0,0,0,0,0,0.02326,0.03502,0.05175,0.07242,0,0,0,0,0,0,0.03644,0.05016,0.06939,0.09427,0,0,0,0,0,0,0.02208,0.0323,0.04692,0.06465,0 +Mini car,PH10E,2035,0,0,0,0,0,0,0.00557,0.0058,0.00618,0.00702,0,0,0,0,0,0,0.00571,0.00591,0.00626,0.007,0,0,0,0,0,0,0.00619,0.00641,0.00679,0.00761,0,0,0,0,0,0,0.00531,0.00556,0.00598,0.00689,0,0,0,0,0,0,0.00597,0.00611,0.00635,0.00684,0,0,0,0,0,0,0.00554,0.0057,0.00596,0.00653,0,0,0,0,0,0,0.00549,0.00563,0.00586,0.00634,0,0,0,0,0,0,0.00579,0.00596,0.00626,0.00687,0,0,0,0,0,0,0.00565,0.00579,0.00601,0.00648,0,0,0,0,0,0,0.01821,0.01128,0.00884,0.00964,0,0,0,0,0,0,0.01566,0.00987,0.00788,0.00861,0,0,0,0,0,0,0.0178,0.01151,0.00919,0.0101,0,0,0,0,0,0,0.0205,0.0132,0.01048,0.01148,0,0,0,0,0,0,0.00848,0.00632,0.00556,0.00619,0,0,0,0,0,0,0.01056,0.00759,0.00651,0.00725,0,0,0,0,0,0,0.00805,0.00606,0.00538,0.006,0,0,0,0,0,0,0.01201,0.00818,0.0068,0.0075,0,0,0,0,0,0,0.00767,0.00556,0.00484,0.00533,0,0,0,0,0,0,0.80899,1.15823,1.46633,1.7982,0,0,0,0,0,0,0.7661,1.1152,1.42366,1.74305,0,0,0,0,0,0,0.81314,1.23931,1.61265,1.9922,0,0,0,0,0,0,0.90142,1.37163,1.78868,2.20234,0,0,0,0,0,0,0.6378,1.06142,1.41243,1.72944,0,0,0,0,0,0,0.68388,1.12561,1.49827,1.84347,0,0,0,0,0,0,0.65486,1.08862,1.44675,1.76649,0,0,0,0,0,0,0.70975,1.11491,1.45255,1.77778,0,0,0,0,0,0,0.58938,0.93855,1.21454,1.47211,0,0,0,0,0,0,164.21169,165.91696,168.49293,173.23026,0,0,0,0,0,0,165.49351,167.0828,169.48996,173.94582,0,0,0,0,0,0,168.27748,169.93209,172.43774,177.06771,0,0,0,0,0,0,164.42138,166.15201,168.77561,173.60384,0,0,0,0,0,0,167.89991,169.05817,170.83546,174.23319,0,0,0,0,0,0,165.4266,166.74451,168.75739,172.55037,0,0,0,0,0,0,166.26517,167.38426,169.10732,172.4135,0,0,0,0,0,0,166.70867,168.05376,170.10444,173.96108,0,0,0,0,0,0,163.28574,164.47696,166.2861,169.71334,0,0,0,0,0,0,0.00372,0.00412,0.00472,0.00574,0,0,0,0,0,0,0.00374,0.00414,0.00473,0.00576,0,0,0,0,0,0,0.00378,0.00417,0.00476,0.00578,0,0,0,0,0,0,0.00375,0.00415,0.00476,0.00581,0,0,0,0,0,0,0.00378,0.00418,0.00477,0.00579,0,0,0,0,0,0,0.00378,0.00418,0.00479,0.00583,0,0,0,0,0,0,0.00374,0.00414,0.00474,0.00577,0,0,0,0,0,0,0.00377,0.00417,0.00477,0.00579,0,0,0,0,0,0,0.00371,0.0041,0.00469,0.0057,0,0,0,0,0,0,0.01385,0.01614,0.02074,0.02074,0,0,0,0,0,0,0.01388,0.01617,0.02078,0.02078,0,0,0,0,0,0,0.01392,0.01622,0.02084,0.02084,0,0,0,0,0,0,0.01376,0.01602,0.02059,0.02059,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01381,0.01608,0.02067,0.02067,0,0,0,0,0,0,0.01385,0.01613,0.02073,0.02073,0,0,0,0,0,0,0.0139,0.01619,0.02081,0.02081,0,0,0,0,0,0,0.01393,0.01623,0.02086,0.02086,0,0,0,0,0,0,0.03391,0.04858,0.0656,0.08435,0,0,0,0,0,0,0.03259,0.04697,0.06373,0.08202,0,0,0,0,0,0,0.03342,0.0506,0.0684,0.08883,0,0,0,0,0,0,0.0358,0.05489,0.0742,0.09641,0,0,0,0,0,0,0.02561,0.04177,0.05804,0.07591,0,0,0,0,0,0,0.02897,0.04629,0.06378,0.08327,0,0,0,0,0,0,0.02616,0.04226,0.0588,0.0766,0,0,0,0,0,0,0.0303,0.04714,0.06451,0.08349,0,0,0,0,0,0,0.02554,0.03989,0.05502,0.07078,0.00266,0.00372,0.00737,0,0,0,0.00091,0.00129,0.0019,0.00311,0.00233,0.00326,0.00642,0,0,0,0.00087,0.00123,0.00181,0.00293,0.00254,0.00356,0.0071,0,0,0,0.0009,0.00128,0.00188,0.00307,0.00277,0.00389,0.0078,0,0,0,0.00093,0.00133,0.00197,0.00324,0.00141,0.00196,0.0038,0,0,0,0.00076,0.00106,0.00153,0.00241,0.00162,0.00226,0.00459,0,0,0,0.00078,0.0011,0.00159,0.00254,0.00138,0.00192,0.00368,0,0,0,0.00076,0.00105,0.00151,0.00238,0.00186,0.00259,0.00508,0,0,0,0.00082,0.00115,0.00167,0.00267,0.00141,0.00195,0.0037,0,0,0,0.00076,0.00106,0.00152,0.00238,0.01307,0.01536,0.02367,0,0,0,0.02524,0.02609,0.02748,0.03029,0.01261,0.01458,0.02176,0,0,0,0.02594,0.02673,0.02803,0.03061,0.01384,0.016,0.02408,0,0,0,0.02807,0.02892,0.03029,0.03305,0.01286,0.01528,0.02421,0,0,0,0.02398,0.02487,0.02634,0.02932,0.01118,0.01232,0.01642,0,0,0,0.02733,0.02797,0.02898,0.03092,0.01088,0.0122,0.01747,0,0,0,0.0253,0.02598,0.02707,0.02918,0.01037,0.01149,0.01539,0,0,0,0.02518,0.02581,0.02681,0.02871,0.01181,0.01337,0.01894,0,0,0,0.02643,0.02715,0.0283,0.03056,0.01072,0.01186,0.01574,0,0,0,0.02593,0.02656,0.02755,0.02944,0.00601,0.00804,0.01539,0,0,0,0.00482,0.00558,0.00681,0.00929,0.00541,0.00716,0.01351,0,0,0,0.00484,0.00554,0.00669,0.00897,0.00596,0.00787,0.01502,0,0,0,0.00517,0.00591,0.00713,0.00957,0.00622,0.00836,0.01626,0,0,0,0.00471,0.0055,0.0068,0.00944,0.00371,0.00472,0.00835,0,0,0,0.0048,0.00536,0.00626,0.00797,0.00403,0.0052,0.00984,0,0,0,0.00459,0.00519,0.00615,0.00802,0.00355,0.00454,0.008,0,0,0,0.00451,0.00507,0.00595,0.00763,0.00454,0.00592,0.01085,0,0,0,0.00479,0.00542,0.00644,0.00844,0.00361,0.00462,0.00805,0,0,0,0.00461,0.00517,0.00604,0.00771,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00167,0,0,0,0,0,0,0.00159,0.00161,0.00163,0.00167,0,0,0,0,0,0,0.00162,0.00164,0.00166,0.0017,0,0,0,0,0,0,0.00158,0.0016,0.00162,0.00167,0,0,0,0,0,0,0.00162,0.00163,0.00164,0.00168,0,0,0,0,0,0,0.00159,0.0016,0.00162,0.00166,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00166,0,0,0,0,0,0,0.0016,0.00162,0.00164,0.00167,0,0,0,0,0,0,0.00157,0.00158,0.0016,0.00163,0,0,0,0,0,0,0.05694,0.07282,0.09544,0.12371,0,0,0,0,0,0,0.04847,0.06291,0.08369,0.1089,0,0,0,0,0,0,0.05556,0.0734,0.09767,0.12774,0,0,0,0,0,0,0.06439,0.08464,0.11203,0.14612,0,0,0,0,0,0,0.02475,0.03705,0.05413,0.07251,0,0,0,0,0,0,0.03162,0.04568,0.065,0.08665,0,0,0,0,0,0,0.02324,0.03511,0.0518,0.06948,0,0,0,0,0,0,0.03637,0.05025,0.06945,0.09156,0,0,0,0,0,0,0.02205,0.03238,0.04697,0.06222 +Mini car,PH10E,2040,0,0,0,0,0,0,0,0.00557,0.0058,0.00618,0,0,0,0,0,0,0,0.00571,0.00591,0.00626,0,0,0,0,0,0,0,0.00619,0.00641,0.00679,0,0,0,0,0,0,0,0.00531,0.00556,0.00598,0,0,0,0,0,0,0,0.00597,0.00611,0.00634,0,0,0,0,0,0,0,0.00554,0.0057,0.00596,0,0,0,0,0,0,0,0.00549,0.00563,0.00586,0,0,0,0,0,0,0,0.00579,0.00596,0.00626,0,0,0,0,0,0,0,0.00565,0.00578,0.00601,0,0,0,0,0,0,0,0.01821,0.01128,0.00884,0,0,0,0,0,0,0,0.01566,0.00987,0.00787,0,0,0,0,0,0,0,0.0178,0.01151,0.00919,0,0,0,0,0,0,0,0.0205,0.0132,0.01047,0,0,0,0,0,0,0,0.00848,0.00632,0.00556,0,0,0,0,0,0,0,0.01056,0.00759,0.00651,0,0,0,0,0,0,0,0.00805,0.00606,0.00538,0,0,0,0,0,0,0,0.01201,0.00818,0.0068,0,0,0,0,0,0,0,0.00767,0.00556,0.00484,0,0,0,0,0,0,0,0.8079,1.15736,1.46595,0,0,0,0,0,0,0,0.76502,1.11437,1.42333,0,0,0,0,0,0,0,0.81191,1.23831,1.61226,0,0,0,0,0,0,0,0.90005,1.37052,1.78825,0,0,0,0,0,0,0,0.6367,1.06062,1.41221,0,0,0,0,0,0,0,0.68272,1.12473,1.498,0,0,0,0,0,0,0,0.65375,1.08782,1.44654,0,0,0,0,0,0,0,0.70862,1.1141,1.45227,0,0,0,0,0,0,0,0.58843,0.93792,1.21433,0,0,0,0,0,0,0,164.20103,165.90359,168.4846,0,0,0,0,0,0,0,165.48346,167.07036,169.48248,0,0,0,0,0,0,0,168.26701,169.91884,172.42938,0,0,0,0,0,0,0,164.41042,166.13822,168.76706,0,0,0,0,0,0,0,167.8925,169.04891,170.82999,0,0,0,0,0,0,0,165.41817,166.73392,168.75103,0,0,0,0,0,0,0,166.25783,167.37506,169.10207,0,0,0,0,0,0,0,166.70002,168.04296,170.09774,0,0,0,0,0,0,0,163.27799,164.46747,166.28032,0,0,0,0,0,0,0,0.00372,0.00412,0.00471,0,0,0,0,0,0,0,0.00374,0.00413,0.00473,0,0,0,0,0,0,0,0.00378,0.00417,0.00476,0,0,0,0,0,0,0,0.00374,0.00415,0.00476,0,0,0,0,0,0,0,0.00378,0.00417,0.00477,0,0,0,0,0,0,0,0.00378,0.00418,0.00479,0,0,0,0,0,0,0,0.00374,0.00414,0.00474,0,0,0,0,0,0,0,0.00377,0.00416,0.00476,0,0,0,0,0,0,0,0.00371,0.0041,0.00469,0,0,0,0,0,0,0,0.01385,0.01613,0.02074,0,0,0,0,0,0,0,0.01388,0.01616,0.02078,0,0,0,0,0,0,0,0.01392,0.01621,0.02084,0,0,0,0,0,0,0,0.01376,0.01602,0.02059,0,0,0,0,0,0,0,0.0139,0.01618,0.02081,0,0,0,0,0,0,0,0.01381,0.01607,0.02067,0,0,0,0,0,0,0,0.01385,0.01612,0.02073,0,0,0,0,0,0,0,0.0139,0.01618,0.02081,0,0,0,0,0,0,0,0.01393,0.01622,0.02086,0,0,0,0,0,0,0,0.03387,0.04851,0.06558,0,0,0,0,0,0,0,0.03256,0.0469,0.06371,0,0,0,0,0,0,0,0.03338,0.05052,0.06838,0,0,0,0,0,0,0,0.03575,0.05481,0.07418,0,0,0,0,0,0,0,0.02558,0.0417,0.05802,0,0,0,0,0,0,0,0.02893,0.04622,0.06376,0,0,0,0,0,0,0,0.02612,0.04219,0.05878,0,0,0,0,0,0,0,0.03026,0.04707,0.06449,0,0,0,0,0,0,0,0.02551,0.03983,0.055,0.00091,0.00146,0.00198,0.00445,0,0,0,0.00091,0.00129,0.0019,0.00083,0.0013,0.00176,0.00392,0,0,0,0.00087,0.00123,0.00181,0.00096,0.00121,0.00163,0.00427,0,0,0,0.0009,0.00128,0.00188,0.00099,0.00147,0.002,0.00466,0,0,0,0.00093,0.00132,0.00196,0.00058,0.00092,0.00125,0.00247,0,0,0,0.00076,0.00106,0.00153,0.00065,0.00094,0.00129,0.00279,0,0,0,0.00078,0.0011,0.00159,0.00057,0.00087,0.00118,0.00235,0,0,0,0.00076,0.00105,0.00151,0.00072,0.00103,0.0014,0.00315,0,0,0,0.00082,0.00115,0.00167,0.00052,0.00079,0.00106,0.00233,0,0,0,0.00076,0.00106,0.00152,0.00929,0.01046,0.01164,0.0172,0,0,0,0.02524,0.02609,0.02748,0.00938,0.01036,0.01139,0.01623,0,0,0,0.02594,0.02673,0.02803,0.01041,0.01087,0.0118,0.01777,0,0,0,0.02807,0.02891,0.03029,0.009,0.01,0.01119,0.01721,0,0,0,0.02398,0.02487,0.02634,0.00941,0.0101,0.01082,0.0135,0,0,0,0.02733,0.02797,0.02898,0.0088,0.00937,0.01016,0.01346,0,0,0,0.0253,0.02598,0.02707,0.00864,0.00925,0.00991,0.01249,0,0,0,0.02518,0.02581,0.02681,0.00934,0.01,0.01079,0.01467,0,0,0,0.02643,0.02715,0.0283,0.00887,0.0094,0.00998,0.01276,0,0,0,0.02593,0.02655,0.02755,0.00267,0.00371,0.00475,0.00967,0,0,0,0.00482,0.00557,0.00681,0.00255,0.00342,0.00434,0.00862,0,0,0,0.00484,0.00554,0.00668,0.00292,0.00333,0.00415,0.00943,0,0,0,0.00517,0.00591,0.00713,0.0028,0.00369,0.00474,0.01006,0,0,0,0.00471,0.0055,0.0068,0.00215,0.00276,0.00339,0.00577,0,0,0,0.00479,0.00536,0.00626,0.00219,0.0027,0.00337,0.00632,0,0,0,0.00459,0.00519,0.00615,0.00202,0.00256,0.00315,0.00543,0,0,0,0.00451,0.00506,0.00595,0.00236,0.00294,0.00364,0.00708,0,0,0,0.00479,0.00542,0.00644,0.00197,0.00244,0.00295,0.00541,0,0,0,0.00461,0.00516,0.00604,0,0,0,0,0,0,0,0.00158,0.0016,0.00162,0,0,0,0,0,0,0,0.00159,0.00161,0.00163,0,0,0,0,0,0,0,0.00162,0.00164,0.00166,0,0,0,0,0,0,0,0.00158,0.0016,0.00162,0,0,0,0,0,0,0,0.00162,0.00163,0.00164,0,0,0,0,0,0,0,0.00159,0.0016,0.00162,0,0,0,0,0,0,0,0.0016,0.00161,0.00163,0,0,0,0,0,0,0,0.0016,0.00162,0.00164,0,0,0,0,0,0,0,0.00157,0.00158,0.0016,0,0,0,0,0,0,0,0.05688,0.07273,0.0954,0,0,0,0,0,0,0,0.04842,0.06283,0.08365,0,0,0,0,0,0,0,0.05549,0.0733,0.09763,0,0,0,0,0,0,0,0.06431,0.08453,0.11198,0,0,0,0,0,0,0,0.02472,0.037,0.0541,0,0,0,0,0,0,0,0.03158,0.04561,0.06497,0,0,0,0,0,0,0,0.0232,0.03505,0.05177,0,0,0,0,0,0,0,0.03633,0.05018,0.06942,0,0,0,0,0,0,0,0.02202,0.03233,0.04694 +Mini car,PH10E,2045,0,0,0,0,0,0,0,0,0.00557,0.0058,0,0,0,0,0,0,0,0,0.00571,0.00591,0,0,0,0,0,0,0,0,0.00619,0.00641,0,0,0,0,0,0,0,0,0.00531,0.00556,0,0,0,0,0,0,0,0,0.00597,0.00611,0,0,0,0,0,0,0,0,0.00554,0.0057,0,0,0,0,0,0,0,0,0.00549,0.00563,0,0,0,0,0,0,0,0,0.00579,0.00596,0,0,0,0,0,0,0,0,0.00565,0.00578,0,0,0,0,0,0,0,0,0.01822,0.01128,0,0,0,0,0,0,0,0,0.01567,0.00987,0,0,0,0,0,0,0,0,0.0178,0.01151,0,0,0,0,0,0,0,0,0.02051,0.0132,0,0,0,0,0,0,0,0,0.00848,0.00632,0,0,0,0,0,0,0,0,0.01056,0.00759,0,0,0,0,0,0,0,0,0.00805,0.00606,0,0,0,0,0,0,0,0,0.01201,0.00818,0,0,0,0,0,0,0,0,0.00767,0.00556,0,0,0,0,0,0,0,0,0.80721,1.15716,0,0,0,0,0,0,0,0,0.76435,1.11417,0,0,0,0,0,0,0,0,0.81115,1.23807,0,0,0,0,0,0,0,0,0.89921,1.37026,0,0,0,0,0,0,0,0,0.63605,1.06041,0,0,0,0,0,0,0,0,0.68202,1.12451,0,0,0,0,0,0,0,0,0.65309,1.08761,0,0,0,0,0,0,0,0,0.70794,1.1139,0,0,0,0,0,0,0,0,0.58787,0.93776,0,0,0,0,0,0,0,0,164.19254,165.90065,0,0,0,0,0,0,0,0,165.47619,167.06842,0,0,0,0,0,0,0,0,168.25873,169.91609,0,0,0,0,0,0,0,0,164.40188,166.13552,0,0,0,0,0,0,0,0,167.8863,169.04653,0,0,0,0,0,0,0,0,165.41176,166.73192,0,0,0,0,0,0,0,0,166.25181,167.37304,0,0,0,0,0,0,0,0,166.69353,168.04108,0,0,0,0,0,0,0,0,163.27158,164.46486,0,0,0,0,0,0,0,0,0.00372,0.00412,0,0,0,0,0,0,0,0,0.00374,0.00413,0,0,0,0,0,0,0,0,0.00377,0.00417,0,0,0,0,0,0,0,0,0.00374,0.00415,0,0,0,0,0,0,0,0,0.00378,0.00417,0,0,0,0,0,0,0,0,0.00378,0.00418,0,0,0,0,0,0,0,0,0.00374,0.00414,0,0,0,0,0,0,0,0,0.00376,0.00416,0,0,0,0,0,0,0,0,0.00371,0.0041,0,0,0,0,0,0,0,0,0.01385,0.01613,0,0,0,0,0,0,0,0,0.01388,0.01616,0,0,0,0,0,0,0,0,0.01392,0.01621,0,0,0,0,0,0,0,0,0.01376,0.01601,0,0,0,0,0,0,0,0,0.0139,0.01618,0,0,0,0,0,0,0,0,0.01381,0.01607,0,0,0,0,0,0,0,0,0.01385,0.01612,0,0,0,0,0,0,0,0,0.0139,0.01618,0,0,0,0,0,0,0,0,0.01393,0.01622,0,0,0,0,0,0,0,0,0.03384,0.04849,0,0,0,0,0,0,0,0,0.03253,0.04688,0,0,0,0,0,0,0,0,0.03335,0.0505,0,0,0,0,0,0,0,0,0.03572,0.05479,0,0,0,0,0,0,0,0,0.02556,0.04168,0,0,0,0,0,0,0,0,0.0289,0.0462,0,0,0,0,0,0,0,0,0.0261,0.04217,0,0,0,0,0,0,0,0,0.03024,0.04705,0,0,0,0,0,0,0,0,0.02549,0.03981,0,0.00054,0.00092,0.00128,0.0032,0,0,0,0.00091,0.00129,0,0.00051,0.00085,0.0012,0.00287,0,0,0,0.00087,0.00123,0,0.00046,0.00077,0.00125,0.00307,0,0,0,0.0009,0.00128,0,0.00054,0.00092,0.00132,0.00332,0,0,0,0.00093,0.00132,0,0.00044,0.00073,0.00097,0.00198,0,0,0,0.00076,0.00106,0,0.00043,0.00071,0.00101,0.00216,0,0,0,0.00078,0.0011,0,0.00042,0.00069,0.00092,0.00186,0,0,0,0.00075,0.00105,0,0.00044,0.00073,0.00105,0.00236,0,0,0,0.00082,0.00115,0,0.00038,0.00061,0.00088,0.00181,0,0,0,0.00076,0.00106,0,0.00855,0.0094,0.01025,0.01455,0,0,0,0.02523,0.02609,0,0.00871,0.00948,0.01027,0.01401,0,0,0,0.02593,0.02673,0,0.00933,0.01002,0.01113,0.01524,0,0,0,0.02807,0.02891,0,0.00806,0.00892,0.00985,0.01438,0,0,0,0.02397,0.02486,0,0.00911,0.00973,0.01026,0.01247,0,0,0,0.02733,0.02797,0,0.00832,0.00896,0.00959,0.01214,0,0,0,0.0253,0.02598,0,0.00833,0.0089,0.00939,0.01146,0,0,0,0.02518,0.02581,0,0.00876,0.00939,0.01012,0.01303,0,0,0,0.02643,0.02715,0,0.00856,0.00907,0.00964,0.01168,0,0,0,0.02593,0.02655,0,0.00202,0.00277,0.00352,0.00733,0,0,0,0.00482,0.00557,0,0.00197,0.00265,0.00335,0.00665,0,0,0,0.00483,0.00554,0,0.00197,0.00258,0.00356,0.00719,0,0,0,0.00517,0.00591,0,0.00197,0.00273,0.00355,0.00756,0,0,0,0.00471,0.0055,0,0.00188,0.00243,0.0029,0.00486,0,0,0,0.00479,0.00536,0,0.00177,0.00231,0.00289,0.00515,0,0,0,0.00459,0.00519,0,0.00175,0.00225,0.00269,0.00451,0,0,0,0.00451,0.00506,0,0.00185,0.00241,0.00305,0.00562,0,0,0,0.00479,0.00542,0,0.0017,0.00214,0.00265,0.00445,0,0,0,0.00461,0.00516,0,0,0,0,0,0,0,0,0.00158,0.0016,0,0,0,0,0,0,0,0,0.00159,0.00161,0,0,0,0,0,0,0,0,0.00162,0.00164,0,0,0,0,0,0,0,0,0.00158,0.0016,0,0,0,0,0,0,0,0,0.00162,0.00163,0,0,0,0,0,0,0,0,0.00159,0.0016,0,0,0,0,0,0,0,0,0.0016,0.00161,0,0,0,0,0,0,0,0,0.0016,0.00162,0,0,0,0,0,0,0,0,0.00157,0.00158,0,0,0,0,0,0,0,0,0.05683,0.07271,0,0,0,0,0,0,0,0,0.04838,0.06281,0,0,0,0,0,0,0,0,0.05545,0.07328,0,0,0,0,0,0,0,0,0.06426,0.08451,0,0,0,0,0,0,0,0,0.02469,0.03698,0,0,0,0,0,0,0,0,0.03155,0.04559,0,0,0,0,0,0,0,0,0.02318,0.03504,0,0,0,0,0,0,0,0,0.0363,0.05016,0,0,0,0,0,0,0,0,0.022,0.03231 +Mini car,PH10E,2050,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00571,0,0,0,0,0,0,0,0,0,0.00619,0,0,0,0,0,0,0,0,0,0.00531,0,0,0,0,0,0,0,0,0,0.00597,0,0,0,0,0,0,0,0,0,0.00554,0,0,0,0,0,0,0,0,0,0.00549,0,0,0,0,0,0,0,0,0,0.00579,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.01822,0,0,0,0,0,0,0,0,0,0.01567,0,0,0,0,0,0,0,0,0,0.0178,0,0,0,0,0,0,0,0,0,0.02051,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.01056,0,0,0,0,0,0,0,0,0,0.00805,0,0,0,0,0,0,0,0,0,0.01201,0,0,0,0,0,0,0,0,0,0.00767,0,0,0,0,0,0,0,0,0,0.80722,0,0,0,0,0,0,0,0,0,0.76435,0,0,0,0,0,0,0,0,0,0.81115,0,0,0,0,0,0,0,0,0,0.89921,0,0,0,0,0,0,0,0,0,0.63605,0,0,0,0,0,0,0,0,0,0.68203,0,0,0,0,0,0,0,0,0,0.65309,0,0,0,0,0,0,0,0,0,0.70795,0,0,0,0,0,0,0,0,0,0.58787,0,0,0,0,0,0,0,0,0,164.19246,0,0,0,0,0,0,0,0,0,165.47617,0,0,0,0,0,0,0,0,0,168.25867,0,0,0,0,0,0,0,0,0,164.40199,0,0,0,0,0,0,0,0,0,167.8862,0,0,0,0,0,0,0,0,0,165.41174,0,0,0,0,0,0,0,0,0,166.25174,0,0,0,0,0,0,0,0,0,166.69352,0,0,0,0,0,0,0,0,0,163.27158,0,0,0,0,0,0,0,0,0,0.00372,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00377,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00378,0,0,0,0,0,0,0,0,0,0.00378,0,0,0,0,0,0,0,0,0,0.00374,0,0,0,0,0,0,0,0,0,0.00376,0,0,0,0,0,0,0,0,0,0.00371,0,0,0,0,0,0,0,0,0,0.01385,0,0,0,0,0,0,0,0,0,0.01388,0,0,0,0,0,0,0,0,0,0.01392,0,0,0,0,0,0,0,0,0,0.01376,0,0,0,0,0,0,0,0,0,0.0139,0,0,0,0,0,0,0,0,0,0.01381,0,0,0,0,0,0,0,0,0,0.01385,0,0,0,0,0,0,0,0,0,0.0139,0,0,0,0,0,0,0,0,0,0.01393,0,0,0,0,0,0,0,0,0,0.03384,0,0,0,0,0,0,0,0,0,0.03253,0,0,0,0,0,0,0,0,0,0.03335,0,0,0,0,0,0,0,0,0,0.03572,0,0,0,0,0,0,0,0,0,0.02556,0,0,0,0,0,0,0,0,0,0.0289,0,0,0,0,0,0,0,0,0,0.0261,0,0,0,0,0,0,0,0,0,0.03024,0,0,0,0,0,0,0,0,0,0.02549,0,0,0.00047,0.00079,0.00115,0.00215,0,0,0,0.00091,0,0,0.00045,0.00076,0.00109,0.00199,0,0,0,0.00087,0,0,0.00041,0.00077,0.00112,0.00208,0,0,0,0.0009,0,0,0.00047,0.0008,0.00117,0.00221,0,0,0,0.00093,0,0,0.00041,0.00067,0.00094,0.00156,0,0,0,0.00076,0,0,0.00039,0.00068,0.00096,0.00164,0,0,0,0.00078,0,0,0.00039,0.00063,0.00089,0.00147,0,0,0,0.00075,0,0,0.0004,0.00069,0.00099,0.00172,0,0,0,0.00082,0,0,0.00035,0.00061,0.00086,0.00141,0,0,0,0.00076,0,0,0.00838,0.00908,0.00989,0.01222,0,0,0,0.02523,0,0,0.00857,0.00924,0.01,0.01207,0,0,0,0.02593,0,0,0.0092,0.01002,0.01081,0.01304,0,0,0,0.02807,0,0,0.00786,0.0086,0.00944,0.01188,0,0,0,0.02397,0,0,0.00903,0.00957,0.01017,0.01155,0,0,0,0.02733,0,0,0.00827,0.00884,0.00946,0.01099,0,0,0,0.0253,0,0,0.00826,0.00877,0.00932,0.01059,0,0,0,0.02518,0,0,0.00866,0.00929,0.00995,0.01162,0,0,0,0.02643,0,0,0.0085,0.00905,0.00958,0.01079,0,0,0,0.02593,0,0,0.00186,0.00249,0.0032,0.00526,0,0,0,0.00482,0,0,0.00184,0.00244,0.0031,0.00494,0,0,0,0.00483,0,0,0.00185,0.00257,0.00327,0.00524,0,0,0,0.00517,0,0,0.00179,0.00245,0.00319,0.00535,0,0,0,0.00471,0,0,0.00181,0.00229,0.00282,0.00404,0,0,0,0.00479,0,0,0.0017,0.00223,0.00278,0.00413,0,0,0,0.00459,0,0,0.00168,0.00213,0.00262,0.00375,0,0,0,0.00451,0,0,0.00176,0.00232,0.0029,0.00437,0,0,0,0.00479,0,0,0.00164,0.00213,0.00259,0.00367,0,0,0,0.00461,0,0,0,0,0,0,0,0,0,0.00158,0,0,0,0,0,0,0,0,0,0.00159,0,0,0,0,0,0,0,0,0,0.00162,0,0,0,0,0,0,0,0,0,0.00158,0,0,0,0,0,0,0,0,0,0.00162,0,0,0,0,0,0,0,0,0,0.00159,0,0,0,0,0,0,0,0,0,0.0016,0,0,0,0,0,0,0,0,0,0.0016,0,0,0,0,0,0,0,0,0,0.00157,0,0,0,0,0,0,0,0,0,0.05683,0,0,0,0,0,0,0,0,0,0.04838,0,0,0,0,0,0,0,0,0,0.05545,0,0,0,0,0,0,0,0,0,0.06426,0,0,0,0,0,0,0,0,0,0.02469,0,0,0,0,0,0,0,0,0,0.03155,0,0,0,0,0,0,0,0,0,0.02318,0,0,0,0,0,0,0,0,0,0.0363,0,0,0,0,0,0,0,0,0,0.022 +Mini car,PH10G,1990,0.04893,0,0,0,0,0,0,0,0,0,0.04286,0,0,0,0,0,0,0,0,0,0.04825,0,0,0,0,0,0,0,0,0,0.05378,0,0,0,0,0,0,0,0,0,0.02621,0,0,0,0,0,0,0,0,0,0.03029,0,0,0,0,0,0,0,0,0,0.02473,0,0,0,0,0,0,0,0,0,0.03424,0,0,0,0,0,0,0,0,0,0.02432,0,0,0,0,0,0,0,0,0,0.04999,0,0,0,0,0,0,0,0,0,0.04275,0,0,0,0,0,0,0,0,0,0.05394,0,0,0,0,0,0,0,0,0,0.05527,0,0,0,0,0,0,0,0,0,0.04547,0,0,0,0,0,0,0,0,0,0.05029,0,0,0,0,0,0,0,0,0,0.04655,0,0,0,0,0,0,0,0,0,0.04539,0,0,0,0,0,0,0,0,0,0.03896,0,0,0,0,0,0,0,0,0,31.80818,0,0,0,0,0,0,0,0,0,28.20931,0,0,0,0,0,0,0,0,0,34.82471,0,0,0,0,0,0,0,0,0,36.07011,0,0,0,0,0,0,0,0,0,29.87856,0,0,0,0,0,0,0,0,0,33.0559,0,0,0,0,0,0,0,0,0,31.12265,0,0,0,0,0,0,0,0,0,29.89031,0,0,0,0,0,0,0,0,0,24.92,0,0,0,0,0,0,0,0,0,322.83197,0,0,0,0,0,0,0,0,0,324.06422,0,0,0,0,0,0,0,0,0,330.10145,0,0,0,0,0,0,0,0,0,322.71745,0,0,0,0,0,0,0,0,0,324.29113,0,0,0,0,0,0,0,0,0,320.96772,0,0,0,0,0,0,0,0,0,320.21977,0,0,0,0,0,0,0,0,0,323.80156,0,0,0,0,0,0,0,0,0,316.75428,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.04215,0,0,0,0,0,0,0,0,0,0.04274,0,0,0,0,0,0,0,0,0,0.042,0,0,0,0,0,0,0,0,0,0.04272,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04213,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.0253,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02535,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.02549,0,0,0,0,0,0,0,0,0,1.93627,0,0,0,0,0,0,0,0,0,1.84332,0,0,0,0,0,0,0,0,0,2.0484,0,0,0,0,0,0,0,0,0,2.15419,0,0,0,0,0,0,0,0,0,2.00274,0,0,0,0,0,0,0,0,0,2.10311,0,0,0,0,0,0,0,0,0,1.9993,0,0,0,0,0,0,0,0,0,2.11211,0,0,0,0,0,0,0,0,0,1.73837,0,0,0,0,0,0,0,0,0,0.0791,0,0,0.00041,0.00067,0.00088,0.00158,0,0,0,0.06937,0,0,0.0004,0.00064,0.00084,0.00148,0,0,0,0.07657,0,0,0.0004,0.00065,0.00086,0.00153,0,0,0,0.08568,0,0,0.00041,0.00067,0.0009,0.00161,0,0,0,0.04117,0,0,0.00035,0.00056,0.00073,0.00122,0,0,0,0.04862,0,0,0.00036,0.00057,0.00075,0.00127,0,0,0,0.03987,0,0,0.00034,0.00054,0.00069,0.00115,0,0,0,0.05482,0,0,0.00037,0.00059,0.00077,0.00132,0,0,0,0.03929,0,0,0.00033,0.00052,0.00067,0.00111,0,0,0,0.19617,0,0,0.00824,0.00881,0.00931,0.01095,0,0,0,0.17465,0,0,0.00845,0.00899,0.00945,0.01094,0,0,0,0.19412,0,0,0.0092,0.00974,0.01023,0.0118,0,0,0,0.21198,0,0,0.00774,0.00832,0.00884,0.01054,0,0,0,0.11217,0,0,0.00892,0.00936,0.00972,0.01083,0,0,0,0.12758,0,0,0.00816,0.00862,0.009,0.01018,0,0,0,0.10721,0,0,0.00815,0.00857,0.0089,0.00992,0,0,0,0.14248,0,0,0.00859,0.00907,0.00947,0.01073,0,0,0,0.10552,0,0,0.00846,0.00886,0.00919,0.01017,0,0,0,0.1586,0,0,0.00174,0.00224,0.00269,0.00413,0,0,0,0.13904,0,0,0.00174,0.00221,0.00262,0.00394,0,0,0,0.15493,0,0,0.00185,0.00233,0.00276,0.00415,0,0,0,0.17344,0,0,0.00169,0.0022,0.00266,0.00416,0,0,0,0.08268,0,0,0.00171,0.0021,0.00242,0.0034,0,0,0,0.09767,0,0,0.00163,0.00203,0.00237,0.00342,0,0,0,0.07967,0,0,0.00159,0.00195,0.00225,0.00315,0,0,0,0.11017,0,0,0.0017,0.00212,0.00248,0.00359,0,0,0,0.0777,0,0,0.00161,0.00196,0.00225,0.00312,0,0,0,0.01421,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.02307,0,0,0,0,0,0,0,0,0,0.02106,0,0,0,0,0,0,0,0,0,0.01874,0,0,0,0,0,0,0,0,0,0.02065,0,0,0,0,0,0,0,0,0,0.0187,0,0,0,0,0,0,0,0,0,0.01851,0,0,0,0,0,0,0,0,0,0.00858,0,0,0,0,0,0,0,0,0,2.99081,0,0,0,0,0,0,0,0,0,2.67228,0,0,0,0,0,0,0,0,0,3.18204,0,0,0,0,0,0,0,0,0,3.29337,0,0,0,0,0,0,0,0,0,2.95133,0,0,0,0,0,0,0,0,0,3.14197,0,0,0,0,0,0,0,0,0,3.01419,0,0,0,0,0,0,0,0,0,2.97072,0,0,0,0,0,0,0,0,0,2.58386,0,0,0,0,0,0,0,0,0 +Mini car,PH10G,1995,0.01309,0.02695,0,0,0,0,0,0,0,0,0.01216,0.02403,0,0,0,0,0,0,0,0,0.01349,0.02689,0,0,0,0,0,0,0,0,0.01367,0.02917,0,0,0,0,0,0,0,0,0.0095,0.01598,0,0,0,0,0,0,0,0,0.00984,0.01778,0,0,0,0,0,0,0,0,0.00886,0.01503,0,0,0,0,0,0,0,0,0.01074,0.01984,0,0,0,0,0,0,0,0,0.00893,0.01491,0,0,0,0,0,0,0,0,0.02761,0.03203,0,0,0,0,0,0,0,0,0.02564,0.02858,0,0,0,0,0,0,0,0,0.031,0.03546,0,0,0,0,0,0,0,0,0.03195,0.03814,0,0,0,0,0,0,0,0,0.02629,0.02985,0,0,0,0,0,0,0,0,0.02849,0.03306,0,0,0,0,0,0,0,0,0.02605,0.03011,0,0,0,0,0,0,0,0,0.02684,0.03106,0,0,0,0,0,0,0,0,0.0216,0.02426,0,0,0,0,0,0,0,0,11.75219,16.0199,0,0,0,0,0,0,0,0,11.19156,14.67218,0,0,0,0,0,0,0,0,13.44825,17.6587,0,0,0,0,0,0,0,0,14.15705,18.90297,0,0,0,0,0,0,0,0,11.75961,15.32446,0,0,0,0,0,0,0,0,12.73577,16.79242,0,0,0,0,0,0,0,0,12.07704,15.84224,0,0,0,0,0,0,0,0,11.88766,15.96456,0,0,0,0,0,0,0,0,9.31014,12.52862,0,0,0,0,0,0,0,0,264.86785,277.27618,0,0,0,0,0,0,0,0,266.86954,278.87251,0,0,0,0,0,0,0,0,271.51811,283.95373,0,0,0,0,0,0,0,0,264.80367,277.22122,0,0,0,0,0,0,0,0,270.46415,280.86466,0,0,0,0,0,0,0,0,266.36823,277.278,0,0,0,0,0,0,0,0,267.48167,277.55464,0,0,0,0,0,0,0,0,268.62355,279.6898,0,0,0,0,0,0,0,0,263.41372,273.82247,0,0,0,0,0,0,0,0,0.03075,0.03752,0,0,0,0,0,0,0,0,0.03098,0.03776,0,0,0,0,0,0,0,0,0.03147,0.03826,0,0,0,0,0,0,0,0,0.03079,0.03767,0,0,0,0,0,0,0,0,0.03144,0.03825,0,0,0,0,0,0,0,0,0.03122,0.0381,0,0,0,0,0,0,0,0,0.03095,0.03775,0,0,0,0,0,0,0,0,0.03126,0.03808,0,0,0,0,0,0,0,0,0.03079,0.0375,0,0,0,0,0,0,0,0,0.07126,0.05832,0,0,0,0,0,0,0,0,0.0714,0.05844,0,0,0,0,0,0,0,0,0.07151,0.05852,0,0,0,0,0,0,0,0,0.07087,0.05801,0,0,0,0,0,0,0,0,0.07143,0.05846,0,0,0,0,0,0,0,0,0.07105,0.05816,0,0,0,0,0,0,0,0,0.07124,0.05831,0,0,0,0,0,0,0,0,0.07147,0.05849,0,0,0,0,0,0,0,0,0.07159,0.05858,0,0,0,0,0,0,0,0,1.45553,1.75016,0,0,0,0,0,0,0,0,1.41931,1.65598,0,0,0,0,0,0,0,0,1.57006,1.79884,0,0,0,0,0,0,0,0,1.63546,1.96818,0,0,0,0,0,0,0,0,1.52413,1.8242,0,0,0,0,0,0,0,0,1.60165,1.90158,0,0,0,0,0,0,0,0,1.53136,1.82659,0,0,0,0,0,0,0,0,1.62642,1.93557,0,0,0,0,0,0,0,0,1.34107,1.5808,0,0,0,0,0,0,0,0,0.01636,0.04133,0,0,0.00027,0.00043,0.00057,0.00114,0,0,0.01442,0.03626,0,0,0.00026,0.00041,0.00054,0.00107,0,0,0.01588,0.03987,0,0,0.00027,0.00042,0.00056,0.0011,0,0,0.01756,0.04469,0,0,0.00027,0.00043,0.00058,0.00116,0,0,0.00875,0.02166,0,0,0.00023,0.00036,0.00047,0.00089,0,0,0.01022,0.02555,0,0,0.00024,0.00037,0.00048,0.00092,0,0,0.00848,0.02104,0,0,0.00022,0.00035,0.00045,0.00084,0,0,0.01147,0.02872,0,0,0.00024,0.00038,0.0005,0.00096,0,0,0.00839,0.02074,0,0,0.00022,0.00034,0.00043,0.00081,0,0,0.0554,0.11038,0,0,0.00794,0.00829,0.00862,0.00994,0,0,0.05178,0.09959,0,0,0.00817,0.0085,0.0088,0.01002,0,0,0.05704,0.10971,0,0,0.0089,0.00924,0.00956,0.01083,0,0,0.05735,0.11765,0,0,0.00744,0.0078,0.00813,0.00949,0,0,0.0407,0.06845,0,0,0.00867,0.00894,0.00918,0.01011,0,0,0.04225,0.07536,0,0,0.0079,0.00819,0.00844,0.00943,0,0,0.03826,0.06528,0,0,0.00791,0.00817,0.00839,0.00925,0,0,0.04589,0.08355,0,0,0.00833,0.00863,0.00889,0.00993,0,0,0.03847,0.06487,0,0,0.00823,0.00849,0.0087,0.00953,0,0,0.03407,0.0827,0,0,0.00148,0.00179,0.00208,0.00324,0,0,0.03035,0.07265,0,0,0.00148,0.00178,0.00204,0.00312,0,0,0.03368,0.08026,0,0,0.00159,0.00189,0.00217,0.00329,0,0,0.03665,0.08999,0,0,0.00142,0.00174,0.00203,0.00324,0,0,0.01946,0.044,0,0,0.00149,0.00173,0.00194,0.00277,0,0,0.02218,0.05147,0,0,0.0014,0.00165,0.00188,0.00275,0,0,0.01868,0.04258,0,0,0.00138,0.00161,0.0018,0.00256,0,0,0.02473,0.05804,0,0,0.00147,0.00173,0.00196,0.00289,0,0,0.01838,0.04174,0,0,0.00141,0.00163,0.00182,0.00255,0,0,0.01163,0.00589,0,0,0,0,0,0,0,0,0.01333,0.00598,0,0,0,0,0,0,0,0,0.01899,0.00621,0,0,0,0,0,0,0,0,0.01729,0.01037,0,0,0,0,0,0,0,0,0.01562,0.00611,0,0,0,0,0,0,0,0,0.01714,0.00606,0,0,0,0,0,0,0,0,0.01561,0.00826,0,0,0,0,0,0,0,0,0.01532,0.00943,0,0,0,0,0,0,0,0,0.0071,0.0034,0,0,0,0,0,0,0,0,1.26908,1.80891,0,0,0,0,0,0,0,0,1.22078,1.70483,0,0,0,0,0,0,0,0,1.40886,1.97805,0,0,0,0,0,0,0,0,1.46067,2.0956,0,0,0,0,0,0,0,0,1.31199,1.90432,0,0,0,0,0,0,0,0,1.36271,1.98873,0,0,0,0,0,0,0,0,1.30028,1.90349,0,0,0,0,0,0,0,0,1.34523,1.95012,0,0,0,0,0,0,0,0,1.11431,1.61912,0,0,0,0,0,0,0,0 +Mini car,PH10G,2000,0.00823,0.0102,0.01995,0,0,0,0,0,0,0,0.00798,0.00966,0.01801,0,0,0,0,0,0,0,0.00876,0.01066,0.02012,0,0,0,0,0,0,0,0.00824,0.01041,0.02133,0,0,0,0,0,0,0,0.00716,0.00809,0.01263,0,0,0,0,0,0,0,0.007,0.00812,0.01368,0,0,0,0,0,0,0,0.00663,0.00751,0.01183,0,0,0,0,0,0,0,0.0075,0.0088,0.01518,0,0,0,0,0,0,0,0.00677,0.00765,0.01183,0,0,0,0,0,0,0,0.0126,0.01347,0.02169,0,0,0,0,0,0,0,0.01181,0.01291,0.01951,0,0,0,0,0,0,0,0.01467,0.01575,0.02489,0,0,0,0,0,0,0,0.01531,0.01684,0.02582,0,0,0,0,0,0,0,0.01115,0.01282,0.02036,0,0,0,0,0,0,0,0.01235,0.014,0.02212,0,0,0,0,0,0,0,0.011,0.01289,0.01966,0,0,0,0,0,0,0,0.01203,0.01366,0.02063,0,0,0,0,0,0,0,0.00941,0.01115,0.01613,0,0,0,0,0,0,0,5.58152,7.49857,11.41774,0,0,0,0,0,0,0,5.34125,7.25349,10.65137,0,0,0,0,0,0,0,6.47322,8.67113,13.0428,0,0,0,0,0,0,0,6.90132,9.28455,13.58148,0,0,0,0,0,0,0,4.95711,7.12201,10.83094,0,0,0,0,0,0,0,5.49337,7.76666,11.71701,0,0,0,0,0,0,0,5.04346,7.34281,10.79369,0,0,0,0,0,0,0,5.34894,7.59489,11.14026,0,0,0,0,0,0,0,4.09425,6.10741,8.78215,0,0,0,0,0,0,0,263.82942,266.03289,273.15083,0,0,0,0,0,0,0,266.15854,268.20983,274.85707,0,0,0,0,0,0,0,270.70359,272.85526,279.79604,0,0,0,0,0,0,0,263.92913,266.1455,273.29976,0,0,0,0,0,0,0,270.93129,272.4025,277.29011,0,0,0,0,0,0,0,266.45023,268.14264,273.64955,0,0,0,0,0,0,0,268.12463,269.53389,274.2022,0,0,0,0,0,0,0,268.58701,270.30826,275.94933,0,0,0,0,0,0,0,263.42394,264.95115,270.02461,0,0,0,0,0,0,0,0.01711,0.01903,0.02899,0,0,0,0,0,0,0,0.01718,0.0191,0.0291,0,0,0,0,0,0,0,0.0173,0.01921,0.0293,0,0,0,0,0,0,0,0.01727,0.01924,0.02926,0,0,0,0,0,0,0,0.01732,0.01923,0.02934,0,0,0,0,0,0,0,0.01738,0.01934,0.02944,0,0,0,0,0,0,0,0.01721,0.01914,0.02915,0,0,0,0,0,0,0,0.0173,0.01923,0.0293,0,0,0,0,0,0,0,0.01703,0.01892,0.02884,0,0,0,0,0,0,0,0.0416,0.05441,0.05775,0,0,0,0,0,0,0,0.04169,0.05454,0.05787,0,0,0,0,0,0,0,0.0418,0.05468,0.05801,0,0,0,0,0,0,0,0.0413,0.05403,0.05738,0,0,0,0,0,0,0,0.04174,0.0546,0.05793,0,0,0,0,0,0,0,0.04145,0.05422,0.05756,0,0,0,0,0,0,0,0.04158,0.0544,0.05773,0,0,0,0,0,0,0,0.04174,0.05461,0.05794,0,0,0,0,0,0,0,0.04183,0.05472,0.05806,0,0,0,0,0,0,0,0.70088,0.93765,1.3994,0,0,0,0,0,0,0,0.68945,0.93135,1.36546,0,0,0,0,0,0,0,0.81323,1.03013,1.51272,0,0,0,0,0,0,0,0.84158,1.11081,1.58258,0,0,0,0,0,0,0,0.77132,1.02245,1.5165,0,0,0,0,0,0,0,0.8101,1.05416,1.55442,0,0,0,0,0,0,0,0.78292,1.04291,1.4692,0,0,0,0,0,0,0,0.81922,1.0858,1.5459,0,0,0,0,0,0,0,0.67269,0.91113,1.27722,0,0,0,0,0,0,0,0.00663,0.01037,0.02729,0,0,0.00027,0.00043,0.00057,0.00094,0,0.00584,0.00912,0.02391,0,0,0.00026,0.00041,0.00054,0.00089,0,0.0064,0.01,0.02636,0,0,0.00026,0.00042,0.00055,0.00091,0,0.00696,0.01092,0.0293,0,0,0.00027,0.00043,0.00058,0.00096,0,0.00353,0.00548,0.01421,0,0,0.00023,0.00036,0.00047,0.00074,0,0.00407,0.00633,0.01666,0,0,0.00024,0.00037,0.00048,0.00076,0,0.00344,0.00534,0.01378,0,0,0.00022,0.00035,0.00045,0.0007,0,0.00463,0.00722,0.01888,0,0,0.00024,0.00038,0.0005,0.00079,0,0.00348,0.0054,0.0137,0,0,0.00022,0.00034,0.00043,0.00067,0,0.03416,0.04223,0.07996,0,0,0.00794,0.00829,0.00861,0.00949,0,0.03311,0.04013,0.07295,0,0,0.00817,0.0085,0.00879,0.0096,0,0.03622,0.0439,0.0804,0,0,0.0089,0.00924,0.00955,0.01039,0,0.03397,0.04258,0.08377,0,0,0.00744,0.00779,0.00812,0.00903,0,0.0295,0.03358,0.0526,0,0,0.00867,0.00894,0.00918,0.00978,0,0.02893,0.03369,0.05638,0,0,0.0079,0.00819,0.00843,0.00908,0,0.02747,0.03145,0.04976,0,0,0.00791,0.00817,0.00839,0.00895,0,0.03105,0.03658,0.0622,0,0,0.00833,0.00863,0.00889,0.00957,0,0.02808,0.0321,0.05002,0,0,0.00823,0.00848,0.0087,0.00923,0,0.01528,0.02241,0.05579,0,0,0.00147,0.00178,0.00207,0.00284,0,0.01384,0.02004,0.04908,0,0,0.00148,0.00177,0.00204,0.00275,0,0.01525,0.02204,0.05434,0,0,0.00158,0.00189,0.00216,0.0029,0,0.01596,0.02359,0.06002,0,0,0.00142,0.00173,0.00202,0.00282,0,0.00955,0.01316,0.02999,0,0,0.00149,0.00173,0.00194,0.00248,0,0.0104,0.01461,0.03468,0,0,0.0014,0.00165,0.00187,0.00244,0,0.00913,0.01266,0.02885,0,0,0.00138,0.00161,0.0018,0.00229,0,0.0116,0.01649,0.03915,0,0,0.00147,0.00173,0.00196,0.00256,0,0.00919,0.01275,0.0286,0,0,0.00141,0.00163,0.00182,0.00229,0,0.01157,0.00565,0.00523,0,0,0,0,0,0,0,0.01329,0.00575,0.00526,0,0,0,0,0,0,0,0.01894,0.00597,0.00535,0,0,0,0,0,0,0,0.01723,0.00998,0.00523,0,0,0,0,0,0,0,0.01565,0.00593,0.00531,0,0,0,0,0,0,0,0.01714,0.00586,0.00524,0,0,0,0,0,0,0,0.01565,0.00802,0.00525,0,0,0,0,0,0,0,0.01531,0.00912,0.00473,0,0,0,0,0,0,0,0.00709,0.00328,0.00242,0,0,0,0,0,0,0,0.50898,0.74471,1.41204,0,0,0,0,0,0,0,0.48004,0.71717,1.32746,0,0,0,0,0,0,0,0.56921,0.84518,1.57252,0,0,0,0,0,0,0,0.60845,0.90815,1.64245,0,0,0,0,0,0,0,0.43443,0.70474,1.43316,0,0,0,0,0,0,0,0.47743,0.76096,1.49931,0,0,0,0,0,0,0,0.42849,0.70198,1.39917,0,0,0,0,0,0,0,0.48845,0.7673,1.4766,0,0,0,0,0,0,0,0.37275,0.61959,1.21534,0,0,0,0,0,0,0 +Mini car,PH10G,2005,0.00621,0.00671,0.00771,0.01376,0,0,0,0,0,0,0.00628,0.00667,0.00753,0.01274,0,0,0,0,0,0,0.00696,0.00696,0.0077,0.01403,0,0,0,0,0,0,0.00612,0.00653,0.00762,0.0144,0,0,0,0,0,0,0.00629,0.00655,0.0071,0.00988,0,0,0,0,0,0,0.00596,0.00612,0.0067,0.01023,0,0,0,0,0,0,0.00578,0.006,0.00649,0.00912,0,0,0,0,0,0,0.00625,0.00646,0.0071,0.01117,0,0,0,0,0,0,0.00586,0.00603,0.00644,0.00914,0,0,0,0,0,0,0.01331,0.00973,0.00961,0.01427,0,0,0,0,0,0,0.01201,0.00868,0.00892,0.013,0,0,0,0,0,0,0.01359,0.00974,0.00998,0.01554,0,0,0,0,0,0,0.01455,0.01196,0.01122,0.01701,0,0,0,0,0,0,0.00781,0.00653,0.00732,0.01181,0,0,0,0,0,0,0.00929,0.00749,0.00815,0.01311,0,0,0,0,0,0,0.00753,0.00696,0.00726,0.01148,0,0,0,0,0,0,0.01008,0.00835,0.00806,0.01293,0,0,0,0,0,0,0.00607,0.00517,0.00565,0.01023,0,0,0,0,0,0,2.56189,3.44401,4.39723,7.25866,0,0,0,0,0,0,2.43087,3.31855,4.37719,6.94997,0,0,0,0,0,0,2.75777,4.04203,5.38411,8.28865,0,0,0,0,0,0,2.98554,4.46455,5.34549,8.8933,0,0,0,0,0,0,2.20464,3.28616,4.51936,7.06469,0,0,0,0,0,0,2.37725,3.57961,4.87747,7.57293,0,0,0,0,0,0,2.26058,3.61337,4.55824,7.12542,0,0,0,0,0,0,2.44458,3.91111,4.66729,7.38321,0,0,0,0,0,0,1.7358,3.02818,4.01304,6.1045,0,0,0,0,0,0,268.53009,269.77174,272.84189,277.53483,0,0,0,0,0,0,271.03096,272.18032,275.041,279.27593,0,0,0,0,0,0,275.43629,276.64934,279.62723,284.14631,0,0,0,0,0,0,268.71783,269.94931,273.06382,277.83806,0,0,0,0,0,0,276.41634,277.21066,279.2914,281.82362,0,0,0,0,0,0,271.7445,272.67452,275.04355,278.19758,0,0,0,0,0,0,273.78568,274.53541,276.54501,278.88529,0,0,0,0,0,0,273.833,274.77943,277.1985,280.45976,0,0,0,0,0,0,268.74377,269.59198,271.73521,274.39692,0,0,0,0,0,0,0.005,0.00539,0.00634,0.01545,0,0,0,0,0,0,0.00501,0.0054,0.00635,0.01548,0,0,0,0,0,0,0.00502,0.00541,0.00635,0.01552,0,0,0,0,0,0,0.00507,0.00547,0.00644,0.01566,0,0,0,0,0,0,0.00503,0.00542,0.00636,0.01556,0,0,0,0,0,0,0.00508,0.00548,0.00644,0.0157,0,0,0,0,0,0,0.00503,0.00542,0.00637,0.01553,0,0,0,0,0,0,0.00504,0.00543,0.00638,0.01558,0,0,0,0,0,0,0.00496,0.00534,0.00627,0.01532,0,0,0,0,0,0,0.01683,0.01915,0.02358,0.03355,0,0,0,0,0,0,0.01686,0.0192,0.02363,0.03362,0,0,0,0,0,0,0.01691,0.01925,0.02369,0.03371,0,0,0,0,0,0,0.01671,0.01902,0.02341,0.03332,0,0,0,0,0,0,0.01688,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01677,0.01909,0.02349,0.03344,0,0,0,0,0,0,0.01682,0.01915,0.02357,0.03354,0,0,0,0,0,0,0.01689,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01692,0.01926,0.02371,0.03373,0,0,0,0,0,0,0.18697,0.27436,0.36213,0.66982,0,0,0,0,0,0,0.18444,0.26756,0.3639,0.66028,0,0,0,0,0,0,0.21104,0.30046,0.40077,0.74661,0,0,0,0,0,0,0.20997,0.35044,0.42371,0.79513,0,0,0,0,0,0,0.18793,0.28686,0.38841,0.73738,0,0,0,0,0,0,0.2002,0.29995,0.40213,0.76222,0,0,0,0,0,0,0.1895,0.3077,0.38487,0.7194,0,0,0,0,0,0,0.20606,0.33031,0.39782,0.76237,0,0,0,0,0,0,0.14841,0.21954,0.29384,0.64909,0,0,0,0,0,0,0.00237,0.00338,0.00508,0.01517,0,0,0.00027,0.00043,0.00057,0.00087,0.00219,0.00303,0.00455,0.01341,0,0,0.00026,0.00041,0.00054,0.00082,0.00257,0.00283,0.00421,0.01462,0,0,0.00026,0.00042,0.00055,0.00085,0.00265,0.00351,0.00529,0.0162,0,0,0.00027,0.00043,0.00058,0.00089,0.00153,0.00214,0.00323,0.00838,0,0,0.00023,0.00036,0.00047,0.00069,0.00174,0.00221,0.00332,0.00958,0,0,0.00024,0.00037,0.00048,0.00071,0.00146,0.00199,0.003,0.00798,0,0,0.00022,0.00034,0.00045,0.00065,0.00188,0.00241,0.00362,0.01073,0,0,0.00024,0.00038,0.0005,0.00074,0.00132,0.00177,0.00265,0.00785,0,0,0.00022,0.00033,0.00043,0.00063,0.02497,0.02712,0.03094,0.05353,0,0,0.00794,0.00829,0.00862,0.00933,0.02526,0.02701,0.03039,0.05013,0,0,0.00816,0.00849,0.0088,0.00945,0.02791,0.0283,0.03135,0.05471,0,0,0.0089,0.00924,0.00955,0.01024,0.02454,0.02636,0.03035,0.05498,0,0,0.00744,0.00779,0.00813,0.00887,0.02522,0.02646,0.02883,0.04008,0,0,0.00867,0.00894,0.00918,0.00967,0.02392,0.02483,0.02726,0.04107,0,0,0.0079,0.00818,0.00844,0.00896,0.02325,0.02433,0.0265,0.03731,0,0,0.00791,0.00817,0.00839,0.00884,0.02512,0.0262,0.02882,0.04456,0,0,0.00833,0.00862,0.00889,0.00944,0.02353,0.02445,0.02632,0.0376,0,0,0.00823,0.00848,0.0087,0.00913,0.00715,0.00905,0.01243,0.03241,0,0,0.00147,0.00178,0.00207,0.0027,0.00689,0.00844,0.01142,0.02889,0,0,0.00148,0.00177,0.00204,0.00262,0.0079,0.00824,0.01094,0.03161,0,0,0.00158,0.00188,0.00216,0.00277,0.00762,0.00923,0.01277,0.03455,0,0,0.00142,0.00173,0.00203,0.00268,0.00576,0.00686,0.00896,0.01891,0,0,0.00149,0.00173,0.00194,0.00237,0.00597,0.00678,0.00893,0.02114,0,0,0.0014,0.00165,0.00187,0.00233,0.0054,0.00636,0.00828,0.01784,0,0,0.00137,0.0016,0.0018,0.0022,0.00635,0.00731,0.00963,0.02355,0,0,0.00147,0.00172,0.00196,0.00245,0.00517,0.00598,0.00764,0.01762,0,0,0.00141,0.00163,0.00182,0.0022,0.01178,0.00573,0.00522,0.00177,0,0,0,0,0,0,0.01353,0.00584,0.00526,0.00178,0,0,0,0,0,0,0.01928,0.00605,0.00535,0.00181,0,0,0,0,0,0,0.01755,0.01012,0.00523,0.00177,0,0,0,0,0,0,0.01596,0.00603,0.00535,0.0018,0,0,0,0,0,0,0.01748,0.00596,0.00526,0.00177,0,0,0,0,0,0,0.01598,0.00817,0.00529,0.00178,0,0,0,0,0,0,0.0156,0.00927,0.00474,0.00176,0,0,0,0,0,0,0.00723,0.00334,0.00244,0.00162,0,0,0,0,0,0,0.2766,0.30243,0.41792,0.92309,0,0,0,0,0,0,0.24864,0.27255,0.38678,0.86919,0,0,0,0,0,0,0.28098,0.30263,0.42929,0.99116,0,0,0,0,0,0,0.30236,0.36524,0.47798,1.0691,0,0,0,0,0,0,0.15872,0.20223,0.31737,0.85781,0,0,0,0,0,0,0.18907,0.23023,0.35097,0.91003,0,0,0,0,0,0,0.15081,0.20965,0.31026,0.83716,0,0,0,0,0,0,0.21459,0.26882,0.37097,0.92755,0,0,0,0,0,0,0.13014,0.17889,0.27767,0.77233,0,0,0,0,0,0 +Mini car,PH10G,2010,0,0.00589,0.00639,0.00724,0.0106,0,0,0,0,0,0,0.00597,0.0064,0.00716,0.01007,0,0,0,0,0,0,0.00633,0.0067,0.00773,0.01093,0,0,0,0,0,0,0.00566,0.0062,0.00715,0.01088,0,0,0,0,0,0,0.00615,0.00644,0.00689,0.00856,0,0,0,0,0,0,0.00569,0.00599,0.00658,0.00855,0,0,0,0,0,0,0.00564,0.0059,0.0063,0.00782,0,0,0,0,0,0,0.00596,0.00629,0.00694,0.00917,0,0,0,0,0,0,0.00572,0.00594,0.0064,0.00786,0,0,0,0,0,0,0.01099,0.00916,0.00791,0.01061,0,0,0,0,0,0,0.00952,0.00833,0.00723,0.00974,0,0,0,0,0,0,0.01039,0.00949,0.00816,0.01124,0,0,0,0,0,0,0.01309,0.01096,0.00944,0.01276,0,0,0,0,0,0,0.00655,0.00708,0.00626,0.00853,0,0,0,0,0,0,0.0073,0.0077,0.0068,0.00939,0,0,0,0,0,0,0.00687,0.00703,0.00623,0.00841,0,0,0,0,0,0,0.00864,0.00766,0.00696,0.00948,0,0,0,0,0,0,0.00551,0.00553,0.00592,0.0078,0,0,0,0,0,0,1.97073,2.9996,3.99676,5.57558,0,0,0,0,0,0,1.84867,2.94603,3.90923,5.42368,0,0,0,0,0,0,2.21116,3.56577,4.48536,6.36968,0,0,0,0,0,0,2.39073,3.53259,4.86455,6.87851,0,0,0,0,0,0,1.56944,2.86946,3.97802,5.52424,0,0,0,0,0,0,1.75127,3.11691,4.19997,5.89748,0,0,0,0,0,0,1.71436,2.90465,4.06406,5.62391,0,0,0,0,0,0,1.99561,3.04557,4.1471,5.77185,0,0,0,0,0,0,1.50385,2.60725,3.54179,4.84749,0,0,0,0,0,0,264.84022,266.74676,269.98586,276.3985,0,0,0,0,0,0,267.34861,269.10776,272.11305,278.12461,0,0,0,0,0,0,271.69836,273.53307,276.66628,282.93107,0,0,0,0,0,0,265.00277,266.92886,270.22187,276.7455,0,0,0,0,0,0,272.79537,274.00919,276.14501,280.65173,0,0,0,0,0,0,268.14019,269.55428,272.01477,277.07635,0,0,0,0,0,0,270.19876,271.36154,273.42146,277.78448,0,0,0,0,0,0,270.18699,271.63715,274.1499,279.3073,0,0,0,0,0,0,265.20618,266.48489,268.6884,273.254,0,0,0,0,0,0,0.00481,0.00545,0.00651,0.00997,0,0,0,0,0,0,0.00482,0.00546,0.00652,0.00998,0,0,0,0,0,0,0.00483,0.00547,0.00652,0.00997,0,0,0,0,0,0,0.00488,0.00553,0.00662,0.01014,0,0,0,0,0,0,0.00485,0.00548,0.00654,0.01,0,0,0,0,0,0,0.00489,0.00554,0.00662,0.01014,0,0,0,0,0,0,0.00484,0.00548,0.00654,0.01002,0,0,0,0,0,0,0.00485,0.00549,0.00655,0.01003,0,0,0,0,0,0,0.00477,0.0054,0.00645,0.00986,0,0,0,0,0,0,0.01183,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01185,0.01387,0.01774,0.02149,0,0,0,0,0,0,0.01188,0.01391,0.01779,0.02155,0,0,0,0,0,0,0.01174,0.01374,0.01758,0.0213,0,0,0,0,0,0,0.01187,0.01389,0.01776,0.02152,0,0,0,0,0,0,0.01178,0.01379,0.01764,0.02137,0,0,0,0,0,0,0.01182,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01187,0.01389,0.01777,0.02152,0,0,0,0,0,0,0.01189,0.01392,0.0178,0.02157,0,0,0,0,0,0,0.07558,0.12415,0.13212,0.29714,0,0,0,0,0,0,0.07207,0.12364,0.13048,0.29454,0,0,0,0,0,0,0.07516,0.13564,0.14078,0.33224,0,0,0,0,0,0,0.08707,0.14538,0.15223,0.359,0,0,0,0,0,0,0.06745,0.12764,0.13141,0.3214,0,0,0,0,0,0,0.07145,0.13407,0.13845,0.33545,0,0,0,0,0,0,0.07278,0.12738,0.13202,0.31696,0,0,0,0,0,0,0.08168,0.13359,0.14465,0.33859,0,0,0,0,0,0,0.05499,0.0971,0.1282,0.29226,0,0,0,0,0,0,0.00138,0.00214,0.00337,0.00865,0,0,0.00027,0.00043,0.00057,0,0.00129,0.00199,0.00314,0.00783,0,0,0.00026,0.00041,0.00054,0,0.00117,0.0018,0.00325,0.00832,0,0,0.00026,0.00042,0.00056,0,0.00142,0.00222,0.00355,0.00921,0,0,0.00027,0.00043,0.00058,0,0.00112,0.00171,0.00255,0.00555,0,0,0.00023,0.00036,0.00047,0,0.0011,0.00167,0.00266,0.00605,0,0,0.00023,0.00037,0.00048,0,0.00106,0.0016,0.00238,0.00519,0,0,0.00022,0.00034,0.00045,0,0.00112,0.00172,0.00278,0.00655,0,0,0.00024,0.00038,0.0005,0,0.00093,0.00141,0.00229,0.00502,0,0,0.00022,0.00033,0.00043,0,0.02294,0.0247,0.02753,0.03957,0,0,0.00794,0.00829,0.00862,0,0.02338,0.02497,0.0276,0.03821,0,0,0.00816,0.00849,0.0088,0,0.02485,0.02626,0.02966,0.04119,0,0,0.0089,0.00924,0.00956,0,0.02196,0.0238,0.0269,0.0399,0,0,0.00743,0.00779,0.00813,0,0.02436,0.02562,0.02744,0.03406,0,0,0.00866,0.00894,0.00918,0,0.02253,0.02378,0.02598,0.03355,0,0,0.0079,0.00818,0.00844,0,0.0224,0.02356,0.02524,0.03139,0,0,0.00791,0.00817,0.00839,0,0.02352,0.02482,0.0272,0.03564,0,0,0.00833,0.00862,0.00889,0,0.02274,0.02375,0.02565,0.03163,0,0,0.00823,0.00848,0.0087,0,0.00535,0.00691,0.00941,0.02007,0,0,0.00147,0.00178,0.00207,0,0.00523,0.00663,0.00896,0.01834,0,0,0.00148,0.00177,0.00204,0,0.0052,0.00644,0.00945,0.01965,0,0,0.00158,0.00188,0.00217,0,0.00534,0.00697,0.00971,0.02122,0,0,0.00141,0.00173,0.00203,0,0.005,0.00612,0.00773,0.01359,0,0,0.00149,0.00173,0.00194,0,0.00474,0.00585,0.0078,0.01449,0,0,0.0014,0.00165,0.00188,0,0.00464,0.00567,0.00716,0.0126,0,0,0.00137,0.0016,0.0018,0,0.00493,0.00608,0.00819,0.01566,0,0,0.00146,0.00173,0.00196,0,0.00447,0.00536,0.00705,0.01233,0,0,0.0014,0.00163,0.00182,0,0.00563,0.00511,0.00172,0.00176,0,0,0,0,0,0,0.00574,0.00515,0.00174,0.00177,0,0,0,0,0,0,0.00595,0.00523,0.00176,0.0018,0,0,0,0,0,0,0.00994,0.00511,0.00172,0.00177,0,0,0,0,0,0,0.00594,0.00524,0.00176,0.00179,0,0,0,0,0,0,0.00586,0.00516,0.00174,0.00177,0,0,0,0,0,0,0.00804,0.00519,0.00174,0.00177,0,0,0,0,0,0,0.00911,0.00465,0.00172,0.00176,0,0,0,0,0,0,0.00328,0.00239,0.00158,0.00161,0,0,0,0,0,0,0.12838,0.17948,0.26246,0.60914,0,0,0,0,0,0,0.11209,0.16209,0.24166,0.57678,0,0,0,0,0,0,0.12359,0.18362,0.26896,0.64179,0,0,0,0,0,0,0.15259,0.21107,0.30682,0.70217,0,0,0,0,0,0,0.07948,0.13589,0.21992,0.55876,0,0,0,0,0,0,0.08788,0.14713,0.23308,0.58802,0,0,0,0,0,0,0.08123,0.13296,0.21602,0.54686,0,0,0,0,0,0,0.1056,0.15667,0.24738,0.60628,0,0,0,0,0,0,0.07355,0.12026,0.21111,0.52323,0,0,0,0,0 +Mini car,PH10G,2015,0,0,0.00575,0.00613,0.00686,0.00879,0,0,0,0,0,0,0.00587,0.00621,0.00687,0.00858,0,0,0,0,0,0,0.00624,0.00671,0.0074,0.00921,0,0,0,0,0,0,0.0055,0.00591,0.0067,0.00882,0,0,0,0,0,0,0.0061,0.00633,0.00679,0.00788,0,0,0,0,0,0,0.00564,0.00593,0.00644,0.00768,0,0,0,0,0,0,0.0056,0.00581,0.00623,0.0072,0,0,0,0,0,0,0.00589,0.00621,0.00675,0.00811,0,0,0,0,0,0,0.00569,0.00594,0.00633,0.00726,0,0,0,0,0,0,0.00842,0.00639,0.00646,0.00802,0,0,0,0,0,0,0.00771,0.00592,0.0061,0.00752,0,0,0,0,0,0,0.00805,0.0066,0.00682,0.0085,0,0,0,0,0,0,0.00906,0.00749,0.00771,0.00962,0,0,0,0,0,0,0.00582,0.00521,0.00576,0.00702,0,0,0,0,0,0,0.00631,0.00564,0.00617,0.00757,0,0,0,0,0,0,0.00583,0.00519,0.00578,0.00701,0,0,0,0,0,0,0.00659,0.00576,0.00614,0.00755,0,0,0,0,0,0,0.00484,0.00501,0.00546,0.00658,0,0,0,0,0,0,1.44608,2.53582,3.44899,4.41866,0,0,0,0,0,0,1.42113,2.51021,3.44592,4.3867,0,0,0,0,0,0,1.60905,2.80456,3.94083,5.06894,0,0,0,0,0,0,1.58393,3.01706,4.25105,5.45608,0,0,0,0,0,0,1.28449,2.61505,3.7407,4.69835,0,0,0,0,0,0,1.38434,2.71804,3.89471,4.9336,0,0,0,0,0,0,1.31567,2.68405,3.83338,4.81653,0,0,0,0,0,0,1.39937,2.70036,3.78777,4.79333,0,0,0,0,0,0,1.22789,2.38763,3.32131,4.15837,0,0,0,0,0,0,237.00493,238.76722,240.57284,248.35179,0,0,0,0,0,0,239.19553,240.80194,242.39695,249.87567,0,0,0,0,0,0,243.10581,244.78879,246.47832,254.19338,0,0,0,0,0,0,237.1748,238.96495,240.81852,248.68619,0,0,0,0,0,0,243.87698,244.91022,245.73835,252.0548,0,0,0,0,0,0,239.79384,241.04253,242.16734,248.88889,0,0,0,0,0,0,241.54929,242.53425,243.30808,249.48944,0,0,0,0,0,0,241.62742,242.90942,244.07131,250.8893,0,0,0,0,0,0,237.09998,238.19666,239.1075,245.41233,0,0,0,0,0,0,0.0031,0.00349,0.00402,0.00566,0,0,0,0,0,0,0.00311,0.00351,0.00404,0.00567,0,0,0,0,0,0,0.00314,0.00354,0.00406,0.00568,0,0,0,0,0,0,0.00312,0.00352,0.00406,0.00573,0,0,0,0,0,0,0.00315,0.00354,0.00407,0.0057,0,0,0,0,0,0,0.00314,0.00355,0.00409,0.00575,0,0,0,0,0,0,0.00311,0.00351,0.00405,0.00569,0,0,0,0,0,0,0.00314,0.00353,0.00407,0.0057,0,0,0,0,0,0,0.00309,0.00348,0.004,0.00561,0,0,0,0,0,0,0.01183,0.01371,0.0177,0.01802,0,0,0,0,0,0,0.01185,0.01374,0.01774,0.01806,0,0,0,0,0,0,0.01188,0.01377,0.01779,0.01811,0,0,0,0,0,0,0.01174,0.01361,0.01758,0.01789,0,0,0,0,0,0,0.01187,0.01375,0.01776,0.01808,0,0,0,0,0,0,0.01178,0.01366,0.01764,0.01796,0,0,0,0,0,0,0.01182,0.0137,0.0177,0.01801,0,0,0,0,0,0,0.01187,0.01375,0.01777,0.01808,0,0,0,0,0,0,0.01189,0.01378,0.0178,0.01812,0,0,0,0,0,0,0.05876,0.07715,0.11363,0.16294,0,0,0,0,0,0,0.05807,0.07567,0.11192,0.1609,0,0,0,0,0,0,0.05841,0.08181,0.12039,0.17601,0,0,0,0,0,0,0.06184,0.08872,0.13062,0.19151,0,0,0,0,0,0,0.05157,0.07406,0.11121,0.16478,0,0,0,0,0,0,0.05499,0.0788,0.11776,0.17401,0,0,0,0,0,0,0.05248,0.07443,0.11197,0.16493,0,0,0,0,0,0,0.05706,0.08297,0.12323,0.17994,0,0,0,0,0,0,0.04216,0.07291,0.10882,0.15783,0,0,0,0,0,0,0.00123,0.00185,0.003,0.00578,0,0,0.00027,0.00043,0,0,0.00117,0.00177,0.00286,0.00541,0,0,0.00026,0.00041,0,0,0.00107,0.00181,0.00293,0.00559,0,0,0.00026,0.00042,0,0,0.00125,0.00191,0.00311,0.00606,0,0,0.00027,0.00043,0,0,0.00107,0.00155,0.00246,0.00437,0,0,0.00023,0.00036,0,0,0.00104,0.00159,0.00253,0.00458,0,0,0.00024,0.00037,0,0,0.00101,0.00146,0.00231,0.00408,0,0,0.00022,0.00035,0,0,0.00104,0.00163,0.0026,0.00478,0,0,0.00024,0.00038,0,0,0.00089,0.0014,0.00222,0.00392,0,0,0.00022,0.00034,0,0,0.02255,0.02394,0.02657,0.03305,0,0,0.00794,0.00829,0,0,0.02308,0.02441,0.02687,0.03274,0,0,0.00816,0.00849,0,0,0.02459,0.02627,0.0288,0.03498,0,0,0.0089,0.00924,0,0,0.02149,0.02298,0.02574,0.03268,0,0,0.00743,0.00779,0,0,0.02422,0.02524,0.0272,0.03144,0,0,0.00866,0.00894,0,0,0.02238,0.02357,0.02565,0.03026,0,0,0.0079,0.00819,0,0,0.02227,0.02322,0.02505,0.02896,0,0,0.00791,0.00817,0,0,0.02331,0.02457,0.02673,0.03167,0,0,0.00833,0.00862,0,0,0.02264,0.02373,0.02548,0.02922,0,0,0.00823,0.00848,0,0,0.00501,0.00624,0.00856,0.01429,0,0,0.00147,0.00178,0,0,0.00496,0.00614,0.00831,0.01351,0,0,0.00148,0.00177,0,0,0.00497,0.00645,0.00869,0.01415,0,0,0.00158,0.00188,0,0,0.00493,0.00625,0.00869,0.01483,0,0,0.00141,0.00173,0,0,0.00488,0.00578,0.00752,0.01127,0,0,0.00149,0.00173,0,0,0.00461,0.00566,0.0075,0.01158,0,0,0.0014,0.00165,0,0,0.00454,0.00538,0.00699,0.01045,0,0,0.00137,0.0016,0,0,0.00475,0.00587,0.00778,0.01214,0,0,0.00146,0.00173,0,0,0.00438,0.00534,0.0069,0.01021,0,0,0.0014,0.00163,0,0,0.00454,0.00152,0.00153,0.00158,0,0,0,0,0,0,0.00458,0.00154,0.00155,0.00159,0,0,0,0,0,0,0.00465,0.00156,0.00157,0.00162,0,0,0,0,0,0,0.00454,0.00152,0.00154,0.00159,0,0,0,0,0,0,0.00467,0.00156,0.00157,0.00161,0,0,0,0,0,0,0.00459,0.00154,0.00154,0.00159,0,0,0,0,0,0,0.00462,0.00155,0.00155,0.00159,0,0,0,0,0,0,0.00413,0.00153,0.00153,0.00158,0,0,0,0,0,0,0.00212,0.0014,0.00141,0.00145,0,0,0,0,0,0,0.09369,0.13417,0.2166,0.41691,0,0,0,0,0,0,0.08588,0.1247,0.20571,0.40107,0,0,0,0,0,0,0.09134,0.13707,0.22618,0.43659,0,0,0,0,0,0,0.10209,0.1544,0.2517,0.47458,0,0,0,0,0,0,0.0671,0.11327,0.20299,0.4045,0,0,0,0,0,0,0.07235,0.12016,0.2121,0.41853,0,0,0,0,0,0,0.0666,0.11171,0.20056,0.39824,0,0,0,0,0,0,0.07913,0.1279,0.2201,0.43009,0,0,0,0,0,0,0.06237,0.10989,0.19561,0.38781,0,0,0,0 +Mini car,PH10G,2020,0,0,0,0.00567,0.00596,0.00641,0.00773,0,0,0,0,0,0,0.0058,0.00606,0.00647,0.00766,0,0,0,0,0,0,0.00627,0.00655,0.00698,0.00822,0,0,0,0,0,0,0.00542,0.00573,0.00622,0.00765,0,0,0,0,0,0,0.00604,0.00623,0.00652,0.00731,0,0,0,0,0,0,0.00561,0.00582,0.00614,0.00703,0,0,0,0,0,0,0.00554,0.00571,0.00597,0.00669,0,0,0,0,0,0,0.00586,0.00608,0.00642,0.00738,0,0,0,0,0,0,0.00569,0.00585,0.00609,0.00677,0,0,0,0,0,0,0.00641,0.00522,0.00485,0.00595,0,0,0,0,0,0,0.00573,0.00476,0.00449,0.00552,0,0,0,0,0,0,0.00604,0.00531,0.00502,0.00626,0,0,0,0,0,0,0.00693,0.00607,0.00572,0.00712,0,0,0,0,0,0,0.0039,0.00391,0.00391,0.00495,0,0,0,0,0,0,0.00438,0.00431,0.00426,0.0054,0,0,0,0,0,0,0.00386,0.00388,0.0039,0.00493,0,0,0,0,0,0,0.00485,0.00446,0.00432,0.00542,0,0,0,0,0,0,0.0039,0.00372,0.00368,0.00459,0,0,0,0,0,0,1.18405,1.74663,2.1804,2.91259,0,0,0,0,0,0,1.14159,1.70549,2.14147,2.86362,0,0,0,0,0,0,1.21389,1.90791,2.44569,3.32435,0,0,0,0,0,0,1.31503,2.07042,2.66655,3.60474,0,0,0,0,0,0,1.01752,1.70255,2.20655,2.99301,0,0,0,0,0,0,1.07518,1.7905,2.32861,3.17373,0,0,0,0,0,0,1.05039,1.75067,2.26792,3.07591,0,0,0,0,0,0,1.12163,1.7925,2.28876,3.09105,0,0,0,0,0,0,0.97213,1.5571,1.96912,2.64284,0,0,0,0,0,0,190.37807,191.70796,192.98054,203.57491,0,0,0,0,0,0,192.02122,193.2215,194.31139,204.68216,0,0,0,0,0,0,195.1988,196.46032,197.6268,208.26565,0,0,0,0,0,0,190.55845,191.91223,193.22672,203.90456,0,0,0,0,0,0,195.36829,196.09443,196.52291,205.96499,0,0,0,0,0,0,192.26377,193.16954,193.85688,203.58419,0,0,0,0,0,0,193.48721,194.17541,194.56018,203.84966,0,0,0,0,0,0,193.74261,194.67463,195.39123,205.23045,0,0,0,0,0,0,189.96641,190.7466,191.25223,200.56862,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00504,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00407,0.00503,0,0,0,0,0,0,0.00321,0.00357,0.00409,0.00505,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00497,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01385,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04199,0.06454,0.08638,0.11523,0,0,0,0,0,0,0.04084,0.06302,0.08461,0.11302,0,0,0,0,0,0,0.04122,0.06782,0.09054,0.12265,0,0,0,0,0,0,0.04436,0.07394,0.09879,0.13426,0,0,0,0,0,0,0.0345,0.06005,0.08143,0.11152,0,0,0,0,0,0,0.03752,0.06455,0.08722,0.11922,0,0,0,0,0,0,0.03522,0.06062,0.08238,0.11228,0,0,0,0,0,0,0.04094,0.06823,0.09178,0.12426,0,0,0,0,0,0,0.03601,0.05949,0.08036,0.10813,0,0,0,0,0,0,0.00108,0.00156,0.00226,0.00414,0,0,0.00027,0,0,0,0.00104,0.00149,0.00216,0.00391,0,0,0.00026,0,0,0,0.00106,0.00152,0.0022,0.00401,0,0,0.00026,0,0,0,0.00111,0.00161,0.00234,0.00432,0,0,0.00027,0,0,0,0.00093,0.00131,0.00186,0.00325,0,0,0.00023,0,0,0,0.00094,0.00134,0.00192,0.00339,0,0,0.00024,0,0,0,0.00088,0.00124,0.00175,0.00305,0,0,0.00022,0,0,0,0.00096,0.00137,0.00197,0.0035,0,0,0.00024,0,0,0,0.00084,0.00119,0.00168,0.00293,0,0,0.00022,0,0,0,0.02221,0.02329,0.0249,0.0293,0,0,0.00794,0,0,0,0.02279,0.0238,0.0253,0.02936,0,0,0.00816,0,0,0,0.02459,0.02564,0.02718,0.0314,0,0,0.0089,0,0,0,0.02116,0.02229,0.02398,0.02866,0,0,0.00743,0,0,0,0.02391,0.02474,0.02593,0.02903,0,0,0.00867,0,0,0,0.02218,0.02305,0.02432,0.02763,0,0,0.0079,0,0,0,0.02198,0.02276,0.02387,0.02672,0,0,0.00791,0,0,0,0.02313,0.02403,0.02535,0.02884,0,0,0.00833,0,0,0,0.02254,0.02328,0.02435,0.02708,0,0,0.00823,0,0,0,0.00471,0.00566,0.00708,0.01098,0,0,0.00147,0,0,0,0.0047,0.0056,0.00693,0.01052,0,0,0.00148,0,0,0,0.00496,0.00589,0.00726,0.01099,0,0,0.00158,0,0,0,0.00464,0.00564,0.00713,0.01127,0,0,0.00141,0,0,0,0.00461,0.00534,0.0064,0.00913,0,0,0.00149,0,0,0,0.00443,0.0052,0.00632,0.00926,0,0,0.0014,0,0,0,0.00428,0.00496,0.00595,0.00847,0,0,0.00137,0,0,0,0.00459,0.00539,0.00655,0.00964,0,0,0.00146,0,0,0,0.00429,0.00495,0.00589,0.00831,0,0,0.0014,0,0,0,0.00121,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00122,0.00123,0.00124,0.00131,0,0,0,0,0,0,0.00125,0.00125,0.00126,0.00133,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00125,0.00125,0.00125,0.00131,0,0,0,0,0,0,0.00123,0.00123,0.00124,0.0013,0,0,0,0,0,0,0.00123,0.00124,0.00124,0.0013,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00129,0,0,0,0,0,0,0.00112,0.00112,0.00113,0.00118,0,0,0,0,0,0,0.08051,0.11016,0.16393,0.32526,0,0,0,0,0,0,0.07283,0.1006,0.15252,0.31126,0,0,0,0,0,0,0.07731,0.11151,0.16932,0.33979,0,0,0,0,0,0,0.08762,0.12652,0.18967,0.36814,0,0,0,0,0,0,0.05421,0.08585,0.14153,0.3106,0,0,0,0,0,0,0.05927,0.09283,0.15034,0.32209,0,0,0,0,0,0,0.05333,0.08363,0.13781,0.30328,0,0,0,0,0,0,0.06632,0.09984,0.15788,0.33104,0,0,0,0,0,0,0.05327,0.08236,0.13497,0.2966,0,0,0 +Mini car,PH10G,2025,0,0,0,0,0.00547,0.00565,0.00595,0.00685,0,0,0,0,0,0,0.00562,0.00578,0.00605,0.00686,0,0,0,0,0,0,0.00608,0.00625,0.00654,0.00739,0,0,0,0,0,0,0.00521,0.0054,0.00572,0.00669,0,0,0,0,0,0,0.00591,0.00602,0.00621,0.00676,0,0,0,0,0,0,0.00547,0.00559,0.0058,0.00642,0,0,0,0,0,0,0.00542,0.00552,0.0057,0.00619,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00673,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00631,0,0,0,0,0,0,0.00547,0.00414,0.00371,0.00456,0,0,0,0,0,0,0.00476,0.00367,0.00334,0.00413,0,0,0,0,0,0,0.0051,0.00409,0.00373,0.00468,0,0,0,0,0,0,0.00594,0.00475,0.00431,0.00539,0,0,0,0,0,0,0.00287,0.00263,0.00257,0.00332,0,0,0,0,0,0,0.00336,0.003,0.00288,0.00372,0,0,0,0,0,0,0.00281,0.00258,0.00254,0.00329,0,0,0,0,0,0,0.00384,0.00322,0.00302,0.00384,0,0,0,0,0,0,0.00283,0.00248,0.0024,0.00307,0,0,0,0,0,0,0.89603,1.27549,1.60414,2.12739,0,0,0,0,0,0,0.84251,1.22002,1.54614,2.05479,0,0,0,0,0,0,0.90437,1.36873,1.76688,2.38196,0,0,0,0,0,0,0.99171,1.50234,1.94547,2.60839,0,0,0,0,0,0,0.68841,1.13711,1.49828,2.02486,0,0,0,0,0,0,0.74572,1.21794,1.60593,2.17761,0,0,0,0,0,0,0.71043,1.17036,1.54143,2.08482,0,0,0,0,0,0,0.79305,1.23692,1.59878,2.14703,0,0,0,0,0,0,0.65972,1.04249,1.33946,1.79297,0,0,0,0,0,0,153.85338,154.99936,156.33305,165.87204,0,0,0,0,0,0,155.08883,156.12659,157.30204,166.63178,0,0,0,0,0,0,157.68617,158.77612,160.02268,169.59695,0,0,0,0,0,0,154.03544,155.20309,156.57666,166.19824,0,0,0,0,0,0,157.46771,158.10835,158.70642,167.17235,0,0,0,0,0,0,155.09742,155.88851,156.71138,165.44737,0,0,0,0,0,0,155.93892,156.54765,157.1065,165.4361,0,0,0,0,0,0,156.29694,157.11018,157.95958,166.7952,0,0,0,0,0,0,153.13283,153.81614,154.47195,162.82148,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00492,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00494,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00487,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03226,0.04679,0.06218,0.08446,0,0,0,0,0,0,0.03097,0.04517,0.06028,0.08211,0,0,0,0,0,0,0.0312,0.0481,0.0639,0.08842,0,0,0,0,0,0,0.03392,0.0529,0.07031,0.09739,0,0,0,0,0,0,0.02461,0.0406,0.05511,0.07754,0,0,0,0,0,0,0.02745,0.04452,0.06008,0.08413,0,0,0,0,0,0,0.02523,0.0412,0.05603,0.07833,0,0,0,0,0,0,0.03008,0.04736,0.06357,0.08817,0,0,0,0,0,0,0.02586,0.04066,0.05495,0.07591,0,0,0.01783,0,0,0,0.0007,0.00099,0.00147,0.00277,0,0,0.01557,0,0,0,0.00068,0.00096,0.0014,0.00262,0,0,0.01736,0,0,0,0.00069,0.00097,0.00143,0.00269,0,0,0.01912,0,0,0,0.00072,0.00102,0.00152,0.00288,0,0,0.00929,0,0,0,0.0006,0.00084,0.00121,0.00219,0,0,0.01086,0,0,0,0.00061,0.00086,0.00125,0.00228,0,0,0.00892,0,0,0,0.00057,0.00079,0.00114,0.00205,0,0,0.01235,0,0,0,0.00063,0.00088,0.00128,0.00236,0,0,0.00882,0,0,0,0.00055,0.00076,0.0011,0.00198,0,0,0.04731,0,0,0,0.02139,0.02205,0.02313,0.02617,0,0,0.04236,0,0,0,0.022,0.02262,0.02364,0.02645,0,0,0.04749,0,0,0,0.02379,0.02443,0.02547,0.02838,0,0,0.05006,0,0,0,0.02031,0.021,0.02214,0.02533,0,0,0.02861,0,0,0,0.02324,0.02375,0.02455,0.02673,0,0,0.03145,0,0,0,0.02149,0.02202,0.02288,0.0252,0,0,0.027,0,0,0,0.02135,0.02182,0.02257,0.02457,0,0,0.03528,0,0,0,0.02242,0.02297,0.02386,0.0263,0,0,0.02695,0,0,0,0.02193,0.02239,0.02311,0.02505,0,0,0.0363,0,0,0,0.00398,0.00457,0.00552,0.00821,0,0,0.03173,0,0,0,0.00401,0.00456,0.00545,0.00794,0,0,0.03572,0,0,0,0.00426,0.00482,0.00575,0.00832,0,0,0.03912,0,0,0,0.00389,0.0045,0.0055,0.00833,0,0,0.01913,0,0,0,0.00401,0.00446,0.00518,0.0071,0,0,0.02223,0,0,0,0.00382,0.00429,0.00505,0.0071,0,0,0.01826,0,0,0,0.00372,0.00414,0.0048,0.00657,0,0,0.02531,0,0,0,0.00396,0.00445,0.00524,0.0074,0,0,0.01796,0,0,0,0.00376,0.00416,0.0048,0.00651,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00101,0.00101,0.00102,0.00108,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.001,0.00101,0.00101,0.00107,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00098,0.00099,0.00099,0.00105,0,0,0,0,0,0,0.0009,0.00091,0.00091,0.00096,0,0,0,0,0,0,0.07026,0.08984,0.13054,0.2661,0,0,0,0,0,0,0.06225,0.07985,0.11848,0.25118,0,0,0,0,0,0,0.06692,0.08949,0.13311,0.27588,0,0,0,0,0,0,0.07675,0.10277,0.15049,0.29932,0,0,0,0,0,0,0.04227,0.06139,0.10159,0.24115,0,0,0,0,0,0,0.04759,0.0684,0.11031,0.25241,0,0,0,0,0,0,0.04106,0.05863,0.097,0.23245,0,0,0,0,0,0,0.05422,0.07515,0.11765,0.26067,0,0,0,0,0,0,0.04087,0.05806,0.09577,0.22949,0,0 +Mini car,PH10G,2030,0,0,0,0,0,0.00547,0.00565,0.00595,0.00663,0,0,0,0,0,0,0.00562,0.00578,0.00605,0.00666,0,0,0,0,0,0,0.00608,0.00625,0.00653,0.00718,0,0,0,0,0,0,0.00521,0.00539,0.00571,0.00645,0,0,0,0,0,0,0.0059,0.00602,0.00621,0.00663,0,0,0,0,0,0,0.00547,0.00559,0.0058,0.00627,0,0,0,0,0,0,0.00542,0.00552,0.00569,0.00607,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00657,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00619,0,0,0,0,0,0,0.00514,0.00378,0.00338,0.00403,0,0,0,0,0,0,0.00443,0.00331,0.00301,0.00359,0,0,0,0,0,0,0.00477,0.0037,0.00337,0.00405,0,0,0,0,0,0,0.00559,0.00432,0.00391,0.00469,0,0,0,0,0,0,0.00253,0.00222,0.00218,0.00267,0,0,0,0,0,0,0.00301,0.00258,0.00249,0.00304,0,0,0,0,0,0,0.00246,0.00217,0.00215,0.00263,0,0,0,0,0,0,0.00349,0.00282,0.00265,0.00321,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00247,0,0,0,0,0,0,0.82051,1.15892,1.47192,1.85795,0,0,0,0,0,0,0.76437,1.10013,1.40811,1.77763,0,0,0,0,0,0,0.82386,1.23555,1.6104,2.05188,0,0,0,0,0,0,0.90749,1.36142,1.77937,2.25759,0,0,0,0,0,0,0.60313,0.99797,1.32924,1.69022,0,0,0,0,0,0,0.66019,1.07663,1.43434,1.83029,0,0,0,0,0,0,0.62218,1.02731,1.36854,1.74015,0,0,0,0,0,0,0.70734,1.09987,1.43529,1.82169,0,0,0,0,0,0,0.57811,0.9157,1.18876,1.50316,0,0,0,0,0,0,141.66316,143.09537,145.31317,151.60093,0,0,0,0,0,0,142.76624,144.1009,146.17363,152.23801,0,0,0,0,0,0,145.16887,146.55809,148.71535,154.9665,0,0,0,0,0,0,141.84491,143.29779,145.55671,151.92303,0,0,0,0,0,0,144.83407,145.80524,147.33573,152.5291,0,0,0,0,0,0,142.70384,143.80938,145.54276,151.03931,0,0,0,0,0,0,143.42337,144.36161,145.84537,150.93759,0,0,0,0,0,0,143.80989,144.93865,146.70433,152.27351,0,0,0,0,0,0,140.85363,141.85361,143.41144,148.56986,0,0,0,0,0,0,0.00319,0.00352,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00321,0.00355,0.00407,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02858,0.04064,0.05471,0.07247,0,0,0,0,0,0,0.02723,0.03898,0.05276,0.07003,0,0,0,0,0,0,0.02737,0.04125,0.05566,0.07474,0,0,0,0,0,0,0.0299,0.04557,0.06146,0.08261,0,0,0,0,0,0,0.02088,0.03388,0.04702,0.06392,0,0,0,0,0,0,0.02362,0.03758,0.05171,0.07003,0,0,0,0,0,0,0.02145,0.03448,0.04787,0.06481,0,0,0,0,0,0,0.02596,0.04012,0.05488,0.07373,0,0,0,0,0,0,0.02203,0.03417,0.0472,0.06313,0,0.00482,0.01056,0,0,0,0.0007,0.00099,0.00146,0.00244,0,0.00422,0.00922,0,0,0,0.00068,0.00095,0.00139,0.00231,0,0.00468,0.01027,0,0,0,0.00069,0.00097,0.00142,0.00237,0,0.00513,0.01127,0,0,0,0.00072,0.00102,0.0015,0.00254,0,0.00254,0.00547,0,0,0,0.0006,0.00084,0.00121,0.00194,0,0.00295,0.00638,0,0,0,0.00061,0.00086,0.00124,0.00202,0,0.00245,0.00526,0,0,0,0.00057,0.00079,0.00113,0.00182,0,0.00336,0.0073,0,0,0,0.00063,0.00088,0.00127,0.00208,0,0.00244,0.00523,0,0,0,0.00055,0.00076,0.0011,0.00175,0,0.018,0.0309,0,0,0,0.02139,0.02204,0.02311,0.0254,0,0.0169,0.02806,0,0,0,0.022,0.02262,0.02362,0.02574,0,0.01874,0.03126,0,0,0,0.02379,0.02442,0.02545,0.02765,0,0.01828,0.03219,0,0,0,0.02031,0.021,0.02211,0.02454,0,0.01369,0.02011,0,0,0,0.02324,0.02374,0.02454,0.02617,0,0.01386,0.0214,0,0,0,0.02149,0.02202,0.02286,0.02461,0,0.01275,0.0189,0,0,0,0.02135,0.02182,0.02256,0.02407,0,0.01519,0.02396,0,0,0,0.02242,0.02297,0.02385,0.02568,0,0.01301,0.01912,0,0,0,0.02193,0.02239,0.02311,0.02455,0,0.01038,0.02179,0,0,0,0.00398,0.00456,0.0055,0.00753,0,0.00921,0.01908,0,0,0,0.00401,0.00455,0.00543,0.00731,0,0.01029,0.02137,0,0,0,0.00426,0.00482,0.00573,0.00767,0,0.01101,0.02332,0,0,0,0.00388,0.00449,0.00547,0.00762,0,0.00594,0.01162,0,0,0,0.00401,0.00446,0.00516,0.00661,0,0.00667,0.01334,0,0,0,0.00382,0.00429,0.00503,0.00658,0,0.00566,0.0111,0,0,0,0.00371,0.00413,0.00479,0.00612,0,0.00754,0.01529,0,0,0,0.00396,0.00445,0.00523,0.00685,0,0.00563,0.01104,0,0,0,0.00376,0.00416,0.00479,0.00607,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00097,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00099,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00096,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00088,0,0,0,0,0,0,0.06718,0.08437,0.12311,0.24183,0,0,0,0,0,0,0.05915,0.07438,0.11097,0.2265,0,0,0,0,0,0,0.06385,0.08353,0.12494,0.24914,0,0,0,0,0,0,0.07348,0.09626,0.14147,0.27091,0,0,0,0,0,0,0.03899,0.05518,0.09274,0.21253,0,0,0,0,0,0,0.04432,0.06208,0.10134,0.2235,0,0,0,0,0,0,0.03772,0.05234,0.08801,0.20352,0,0,0,0,0,0,0.05082,0.06885,0.10868,0.23219,0,0,0,0,0,0,0.03742,0.05189,0.08714,0.20198,0 +Mini car,PH10G,2035,0,0,0,0,0,0,0.00547,0.00564,0.00595,0.00661,0,0,0,0,0,0,0.00562,0.00577,0.00605,0.00664,0,0,0,0,0,0,0.00608,0.00625,0.00653,0.00716,0,0,0,0,0,0,0.0052,0.00539,0.00572,0.00643,0,0,0,0,0,0,0.0059,0.00602,0.00621,0.00661,0,0,0,0,0,0,0.00546,0.00559,0.0058,0.00625,0,0,0,0,0,0,0.00542,0.00552,0.00569,0.00606,0,0,0,0,0,0,0.00571,0.00584,0.00607,0.00655,0,0,0,0,0,0,0.00557,0.00567,0.00583,0.00617,0,0,0,0,0,0,0.00512,0.00379,0.00338,0.00394,0,0,0,0,0,0,0.00441,0.00332,0.00301,0.0035,0,0,0,0,0,0,0.00475,0.00371,0.00336,0.00394,0,0,0,0,0,0,0.00557,0.00433,0.00391,0.00457,0,0,0,0,0,0,0.00252,0.00223,0.00218,0.00255,0,0,0,0,0,0,0.003,0.00258,0.00249,0.00292,0,0,0,0,0,0,0.00245,0.00217,0.00214,0.00251,0,0,0,0,0,0,0.00348,0.00282,0.00265,0.0031,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00237,0,0,0,0,0,0,0.81997,1.16371,1.46885,1.81228,0,0,0,0,0,0,0.76398,1.10384,1.40568,1.73119,0,0,0,0,0,0,0.82354,1.24028,1.60736,1.99531,0,0,0,0,0,0,0.90719,1.36698,1.77584,2.19683,0,0,0,0,0,0,0.60311,0.99823,1.32884,1.63547,0,0,0,0,0,0,0.66012,1.07779,1.43338,1.77268,0,0,0,0,0,0,0.62226,1.02826,1.3677,1.68311,0,0,0,0,0,0,0.70703,1.10123,1.43421,1.76824,0,0,0,0,0,0,0.57791,0.91588,1.18842,1.45646,0,0,0,0,0,0,141.62199,143.09026,145.30913,149.39391,0,0,0,0,0,0,142.72754,144.09608,146.16961,150.01156,0,0,0,0,0,0,145.12847,146.55305,148.71143,152.70363,0,0,0,0,0,0,141.8025,143.29263,145.55264,149.71546,0,0,0,0,0,0,144.80428,145.80154,147.33266,150.26216,0,0,0,0,0,0,142.67062,143.80519,145.53926,148.80953,0,0,0,0,0,0,143.39415,144.35781,145.8424,148.69279,0,0,0,0,0,0,143.77631,144.9344,146.70088,150.02623,0,0,0,0,0,0,140.82432,141.85012,143.40861,146.3637,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00354,0.00406,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.00319,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.0285,0.04053,0.05477,0.07061,0,0,0,0,0,0,0.02716,0.03888,0.05281,0.06814,0,0,0,0,0,0,0.0273,0.04113,0.05572,0.07254,0,0,0,0,0,0,0.02982,0.04541,0.06154,0.08024,0,0,0,0,0,0,0.02083,0.0338,0.04706,0.06168,0,0,0,0,0,0,0.02357,0.03749,0.05176,0.06773,0,0,0,0,0,0,0.02141,0.03437,0.04793,0.06262,0,0,0,0,0,0,0.0259,0.04005,0.05492,0.07138,0,0,0,0,0,0,0.02199,0.03415,0.0472,0.06103,0.00266,0.00372,0.00737,0,0,0,0.0007,0.00099,0.00146,0.0024,0.00233,0.00326,0.00642,0,0,0,0.00067,0.00095,0.0014,0.00228,0.00254,0.00356,0.0071,0,0,0,0.00069,0.00097,0.00143,0.00233,0.00277,0.00389,0.0078,0,0,0,0.00072,0.00101,0.00151,0.0025,0.00141,0.00196,0.0038,0,0,0,0.0006,0.00083,0.00121,0.00191,0.00162,0.00226,0.00459,0,0,0,0.00061,0.00085,0.00124,0.00199,0.00138,0.00192,0.00368,0,0,0,0.00057,0.00079,0.00114,0.00179,0.00186,0.00259,0.00508,0,0,0,0.00062,0.00087,0.00128,0.00205,0.00141,0.00195,0.0037,0,0,0,0.00055,0.00076,0.0011,0.00172,0.01307,0.01536,0.02367,0,0,0,0.02138,0.02203,0.02312,0.02532,0.01261,0.01458,0.02176,0,0,0,0.022,0.02261,0.02362,0.02566,0.01384,0.016,0.02408,0,0,0,0.02379,0.02441,0.02546,0.02757,0.01286,0.01528,0.02421,0,0,0,0.0203,0.02098,0.02212,0.02446,0.01118,0.01232,0.01642,0,0,0,0.02323,0.02373,0.02455,0.02611,0.01088,0.0122,0.01747,0,0,0,0.02149,0.02201,0.02287,0.02454,0.01037,0.01149,0.01539,0,0,0,0.02134,0.02181,0.02256,0.02401,0.01181,0.01337,0.01894,0,0,0,0.02242,0.02296,0.02385,0.02561,0.01072,0.01186,0.01574,0,0,0,0.02193,0.02238,0.02311,0.02448,0.00601,0.00804,0.01539,0,0,0,0.00398,0.00455,0.00551,0.00746,0.00541,0.00716,0.01351,0,0,0,0.004,0.00454,0.00544,0.00724,0.00596,0.00787,0.01502,0,0,0,0.00425,0.00481,0.00573,0.0076,0.00622,0.00836,0.01626,0,0,0,0.00388,0.00447,0.00548,0.00755,0.00371,0.00472,0.00835,0,0,0,0.00401,0.00445,0.00517,0.00655,0.00403,0.0052,0.00984,0,0,0,0.00382,0.00428,0.00504,0.00652,0.00355,0.00454,0.008,0,0,0,0.00371,0.00412,0.00479,0.00607,0.00454,0.00592,0.01085,0,0,0,0.00396,0.00444,0.00523,0.00678,0.00361,0.00462,0.00805,0,0,0,0.00375,0.00416,0.0048,0.00601,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00097,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00096,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00094,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00086,0,0,0,0,0,0,0.06698,0.08445,0.12303,0.23891,0,0,0,0,0,0,0.05897,0.07444,0.11091,0.22349,0,0,0,0,0,0,0.06367,0.08363,0.12485,0.24574,0,0,0,0,0,0,0.07326,0.09631,0.14142,0.26729,0,0,0,0,0,0,0.03888,0.05512,0.09277,0.20889,0,0,0,0,0,0,0.0442,0.06206,0.10134,0.21978,0,0,0,0,0,0,0.03761,0.05227,0.08804,0.19978,0,0,0,0,0,0,0.05065,0.06869,0.10875,0.22872,0,0,0,0,0,0,0.03732,0.05188,0.08712,0.19849 +Mini car,PH10G,2040,0,0,0,0,0,0,0,0.00547,0.00565,0.00595,0,0,0,0,0,0,0,0.00561,0.00578,0.00605,0,0,0,0,0,0,0,0.00608,0.00625,0.00654,0,0,0,0,0,0,0,0.0052,0.00539,0.00572,0,0,0,0,0,0,0,0.0059,0.00602,0.00621,0,0,0,0,0,0,0,0.00546,0.00559,0.0058,0,0,0,0,0,0,0,0.00541,0.00552,0.0057,0,0,0,0,0,0,0,0.00571,0.00584,0.00607,0,0,0,0,0,0,0,0.00557,0.00567,0.00583,0,0,0,0,0,0,0,0.00512,0.00378,0.00338,0,0,0,0,0,0,0,0.00442,0.00331,0.003,0,0,0,0,0,0,0,0.00477,0.0037,0.00336,0,0,0,0,0,0,0,0.00559,0.00432,0.0039,0,0,0,0,0,0,0,0.00252,0.00222,0.00218,0,0,0,0,0,0,0,0.00301,0.00258,0.00248,0,0,0,0,0,0,0,0.00245,0.00217,0.00214,0,0,0,0,0,0,0,0.00348,0.00282,0.00264,0,0,0,0,0,0,0,0.00247,0.00209,0.00203,0,0,0,0,0,0,0,0.82371,1.16098,1.46545,0,0,0,0,0,0,0,0.76683,1.10167,1.40302,0,0,0,0,0,0,0,0.8274,1.23758,1.604,0,0,0,0,0,0,0,0.91194,1.36384,1.77194,0,0,0,0,0,0,0,0.6033,0.9978,1.32851,0,0,0,0,0,0,0,0.66106,1.07689,1.43243,0,0,0,0,0,0,0,0.62291,1.02751,1.36685,0,0,0,0,0,0,0,0.70801,1.1002,1.43312,0,0,0,0,0,0,0,0.57779,0.91548,1.18816,0,0,0,0,0,0,0,141.61556,143.08312,145.3085,0,0,0,0,0,0,0,142.72141,144.08928,146.16901,0,0,0,0,0,0,0,145.12216,146.54611,148.71075,0,0,0,0,0,0,0,141.79599,143.28527,145.55192,0,0,0,0,0,0,0,144.79978,145.79653,147.33228,0,0,0,0,0,0,0,142.66537,143.79953,145.53872,0,0,0,0,0,0,0,143.38978,144.35284,145.84188,0,0,0,0,0,0,0,143.77095,144.92865,146.70037,0,0,0,0,0,0,0,140.81982,141.84513,143.40822,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00321,0.00355,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01383,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01381,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01381,0.01777,0,0,0,0,0,0,0,0.01189,0.01384,0.0178,0,0,0,0,0,0,0,0.02841,0.04056,0.05484,0,0,0,0,0,0,0,0.02707,0.03891,0.05288,0,0,0,0,0,0,0,0.0272,0.04116,0.0558,0,0,0,0,0,0,0,0.02969,0.04546,0.06165,0,0,0,0,0,0,0,0.02077,0.03382,0.04712,0,0,0,0,0,0,0,0.02349,0.03751,0.05183,0,0,0,0,0,0,0,0.02133,0.0344,0.04801,0,0,0,0,0,0,0,0.02583,0.04006,0.05497,0,0,0,0,0,0,0,0.02197,0.03414,0.04721,0.00091,0.00146,0.00198,0.00445,0,0,0,0.00069,0.00099,0.00147,0.00083,0.0013,0.00176,0.00392,0,0,0,0.00067,0.00095,0.0014,0.00096,0.00121,0.00163,0.00427,0,0,0,0.00068,0.00097,0.00143,0.00099,0.00147,0.002,0.00466,0,0,0,0.00071,0.00102,0.00152,0.00058,0.00092,0.00125,0.00247,0,0,0,0.0006,0.00084,0.00121,0.00065,0.00094,0.00129,0.00279,0,0,0,0.00061,0.00086,0.00125,0.00057,0.00087,0.00118,0.00235,0,0,0,0.00056,0.00079,0.00114,0.00072,0.00103,0.0014,0.00315,0,0,0,0.00062,0.00088,0.00128,0.00052,0.00079,0.00106,0.00233,0,0,0,0.00055,0.00076,0.0011,0.00929,0.01046,0.01164,0.0172,0,0,0,0.02137,0.02204,0.02313,0.00938,0.01036,0.01139,0.01623,0,0,0,0.02199,0.02261,0.02363,0.01041,0.01087,0.0118,0.01777,0,0,0,0.02378,0.02442,0.02547,0.009,0.01,0.01119,0.01721,0,0,0,0.02029,0.02098,0.02214,0.00941,0.0101,0.01082,0.0135,0,0,0,0.02323,0.02374,0.02455,0.0088,0.00937,0.01016,0.01346,0,0,0,0.02148,0.02201,0.02288,0.00864,0.00925,0.00991,0.01249,0,0,0,0.02134,0.02181,0.02257,0.00934,0.01,0.01079,0.01467,0,0,0,0.02241,0.02296,0.02386,0.00887,0.0094,0.00998,0.01276,0,0,0,0.02193,0.02238,0.02311,0.00267,0.00371,0.00475,0.00967,0,0,0,0.00397,0.00455,0.00552,0.00255,0.00342,0.00434,0.00862,0,0,0,0.00399,0.00455,0.00545,0.00292,0.00333,0.00415,0.00943,0,0,0,0.00425,0.00481,0.00574,0.0028,0.00369,0.00474,0.01006,0,0,0,0.00387,0.00448,0.0055,0.00215,0.00276,0.00339,0.00577,0,0,0,0.004,0.00445,0.00518,0.00219,0.0027,0.00337,0.00632,0,0,0,0.00381,0.00428,0.00504,0.00202,0.00256,0.00315,0.00543,0,0,0,0.00371,0.00413,0.0048,0.00236,0.00294,0.00364,0.00708,0,0,0,0.00395,0.00444,0.00524,0.00197,0.00244,0.00295,0.00541,0,0,0,0.00375,0.00416,0.0048,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00093,0.00093,0.00095,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00092,0.00093,0.00094,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.0009,0.00091,0.00092,0,0,0,0,0,0,0,0.00083,0.00084,0.00085,0,0,0,0,0,0,0,0.06703,0.08436,0.12297,0,0,0,0,0,0,0,0.059,0.07436,0.11086,0,0,0,0,0,0,0,0.06375,0.08353,0.12478,0,0,0,0,0,0,0,0.07331,0.09622,0.1414,0,0,0,0,0,0,0,0.03885,0.05512,0.09283,0,0,0,0,0,0,0,0.04419,0.06203,0.10138,0,0,0,0,0,0,0,0.03757,0.05227,0.08811,0,0,0,0,0,0,0,0.05054,0.06873,0.10889,0,0,0,0,0,0,0,0.03729,0.05186,0.08714 +Mini car,PH10G,2045,0,0,0,0,0,0,0,0,0.00547,0.00565,0,0,0,0,0,0,0,0,0.00562,0.00578,0,0,0,0,0,0,0,0,0.00608,0.00625,0,0,0,0,0,0,0,0,0.0052,0.00539,0,0,0,0,0,0,0,0,0.0059,0.00602,0,0,0,0,0,0,0,0,0.00546,0.00559,0,0,0,0,0,0,0,0,0.00541,0.00552,0,0,0,0,0,0,0,0,0.00571,0.00584,0,0,0,0,0,0,0,0,0.00557,0.00567,0,0,0,0,0,0,0,0,0.00512,0.00378,0,0,0,0,0,0,0,0,0.00441,0.00331,0,0,0,0,0,0,0,0,0.00476,0.00369,0,0,0,0,0,0,0,0,0.00558,0.00431,0,0,0,0,0,0,0,0,0.00252,0.00222,0,0,0,0,0,0,0,0,0.00301,0.00258,0,0,0,0,0,0,0,0,0.00245,0.00217,0,0,0,0,0,0,0,0,0.00348,0.00282,0,0,0,0,0,0,0,0,0.00246,0.00209,0,0,0,0,0,0,0,0,0.82151,1.15824,0,0,0,0,0,0,0,0,0.76508,1.09953,0,0,0,0,0,0,0,0,0.82513,1.23486,0,0,0,0,0,0,0,0,0.90922,1.36065,0,0,0,0,0,0,0,0,0.60291,0.99755,0,0,0,0,0,0,0,0,0.66028,1.07614,0,0,0,0,0,0,0,0,0.62231,1.02688,0,0,0,0,0,0,0,0,0.70718,1.09934,0,0,0,0,0,0,0,0,0.57755,0.91528,0,0,0,0,0,0,0,0,141.60984,143.08299,0,0,0,0,0,0,0,0,142.71607,144.08932,0,0,0,0,0,0,0,0,145.11673,146.54611,0,0,0,0,0,0,0,0,141.79011,143.2852,0,0,0,0,0,0,0,0,144.79569,145.79646,0,0,0,0,0,0,0,0,142.66092,143.79947,0,0,0,0,0,0,0,0,143.38586,144.35281,0,0,0,0,0,0,0,0,143.76642,144.92854,0,0,0,0,0,0,0,0,140.81583,141.84503,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02843,0.04061,0,0,0,0,0,0,0,0,0.0271,0.03896,0,0,0,0,0,0,0,0,0.02723,0.04123,0,0,0,0,0,0,0,0,0.02973,0.04555,0,0,0,0,0,0,0,0,0.02079,0.03386,0,0,0,0,0,0,0,0,0.02351,0.03756,0,0,0,0,0,0,0,0,0.02135,0.03446,0,0,0,0,0,0,0,0,0.02585,0.0401,0,0,0,0,0,0,0,0,0.02197,0.03415,0,0.00054,0.00092,0.00128,0.0032,0,0,0,0.0007,0.00099,0,0.00051,0.00085,0.0012,0.00287,0,0,0,0.00067,0.00095,0,0.00046,0.00077,0.00125,0.00307,0,0,0,0.00068,0.00097,0,0.00054,0.00092,0.00132,0.00332,0,0,0,0.00071,0.00102,0,0.00044,0.00073,0.00097,0.00198,0,0,0,0.0006,0.00084,0,0.00043,0.00071,0.00101,0.00216,0,0,0,0.00061,0.00086,0,0.00042,0.00069,0.00092,0.00186,0,0,0,0.00057,0.00079,0,0.00044,0.00073,0.00105,0.00236,0,0,0,0.00062,0.00088,0,0.00038,0.00061,0.00088,0.00181,0,0,0,0.00055,0.00076,0,0.00855,0.0094,0.01025,0.01455,0,0,0,0.02138,0.02204,0,0.00871,0.00948,0.01027,0.01401,0,0,0,0.02199,0.02262,0,0.00933,0.01002,0.01113,0.01524,0,0,0,0.02378,0.02442,0,0.00806,0.00892,0.00985,0.01438,0,0,0,0.0203,0.02099,0,0.00911,0.00973,0.01026,0.01247,0,0,0,0.02323,0.02374,0,0.00832,0.00896,0.00959,0.01214,0,0,0,0.02148,0.02202,0,0.00833,0.0089,0.00939,0.01146,0,0,0,0.02134,0.02182,0,0.00876,0.00939,0.01012,0.01303,0,0,0,0.02241,0.02297,0,0.00856,0.00907,0.00964,0.01168,0,0,0,0.02193,0.02239,0,0.00202,0.00277,0.00352,0.00733,0,0,0,0.00397,0.00456,0,0.00197,0.00265,0.00335,0.00665,0,0,0,0.004,0.00455,0,0.00197,0.00258,0.00356,0.00719,0,0,0,0.00425,0.00482,0,0.00197,0.00273,0.00355,0.00756,0,0,0,0.00387,0.00449,0,0.00188,0.00243,0.0029,0.00486,0,0,0,0.00401,0.00446,0,0.00177,0.00231,0.00289,0.00515,0,0,0,0.00381,0.00429,0,0.00175,0.00225,0.00269,0.00451,0,0,0,0.00371,0.00413,0,0.00185,0.00241,0.00305,0.00562,0,0,0,0.00396,0.00445,0,0.0017,0.00214,0.00265,0.00445,0,0,0,0.00375,0.00416,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00093,0.00093,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00092,0.00093,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00083,0.00084,0,0,0,0,0,0,0,0,0.06696,0.0843,0,0,0,0,0,0,0,0,0.05895,0.07432,0,0,0,0,0,0,0,0,0.06367,0.08346,0,0,0,0,0,0,0,0,0.07323,0.09618,0,0,0,0,0,0,0,0,0.03884,0.05514,0,0,0,0,0,0,0,0,0.04416,0.06204,0,0,0,0,0,0,0,0,0.03757,0.0523,0,0,0,0,0,0,0,0,0.05055,0.0688,0,0,0,0,0,0,0,0,0.03728,0.05186 +Mini car,PH10G,2050,0,0,0,0,0,0,0,0,0,0.00547,0,0,0,0,0,0,0,0,0,0.00562,0,0,0,0,0,0,0,0,0,0.00608,0,0,0,0,0,0,0,0,0,0.0052,0,0,0,0,0,0,0,0,0,0.0059,0,0,0,0,0,0,0,0,0,0.00546,0,0,0,0,0,0,0,0,0,0.00542,0,0,0,0,0,0,0,0,0,0.00571,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00511,0,0,0,0,0,0,0,0,0,0.00441,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00252,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00245,0,0,0,0,0,0,0,0,0,0.00348,0,0,0,0,0,0,0,0,0,0.00246,0,0,0,0,0,0,0,0,0,0.81919,0,0,0,0,0,0,0,0,0,0.76326,0,0,0,0,0,0,0,0,0,0.82273,0,0,0,0,0,0,0,0,0,0.9063,0,0,0,0,0,0,0,0,0,0.60256,0,0,0,0,0,0,0,0,0,0.6595,0,0,0,0,0,0,0,0,0,0.6217,0,0,0,0,0,0,0,0,0,0.70637,0,0,0,0,0,0,0,0,0,0.57738,0,0,0,0,0,0,0,0,0,141.60988,0,0,0,0,0,0,0,0,0,142.7161,0,0,0,0,0,0,0,0,0,145.11672,0,0,0,0,0,0,0,0,0,141.79007,0,0,0,0,0,0,0,0,0,144.79568,0,0,0,0,0,0,0,0,0,142.66083,0,0,0,0,0,0,0,0,0,143.38576,0,0,0,0,0,0,0,0,0,143.76635,0,0,0,0,0,0,0,0,0,140.81579,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.02714,0,0,0,0,0,0,0,0,0,0.02727,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02355,0,0,0,0,0,0,0,0,0,0.02139,0,0,0,0,0,0,0,0,0,0.02587,0,0,0,0,0,0,0,0,0,0.02197,0,0,0.00047,0.00079,0.00115,0.00215,0,0,0,0.0007,0,0,0.00045,0.00076,0.00109,0.00199,0,0,0,0.00067,0,0,0.00041,0.00077,0.00112,0.00208,0,0,0,0.00068,0,0,0.00047,0.0008,0.00117,0.00221,0,0,0,0.00072,0,0,0.00041,0.00067,0.00094,0.00156,0,0,0,0.0006,0,0,0.00039,0.00068,0.00096,0.00164,0,0,0,0.00061,0,0,0.00039,0.00063,0.00089,0.00147,0,0,0,0.00057,0,0,0.0004,0.00069,0.00099,0.00172,0,0,0,0.00062,0,0,0.00035,0.00061,0.00086,0.00141,0,0,0,0.00055,0,0,0.00838,0.00908,0.00989,0.01222,0,0,0,0.02138,0,0,0.00857,0.00924,0.01,0.01207,0,0,0,0.022,0,0,0.0092,0.01002,0.01081,0.01304,0,0,0,0.02378,0,0,0.00786,0.0086,0.00944,0.01188,0,0,0,0.0203,0,0,0.00903,0.00957,0.01017,0.01155,0,0,0,0.02323,0,0,0.00827,0.00884,0.00946,0.01099,0,0,0,0.02148,0,0,0.00826,0.00877,0.00932,0.01059,0,0,0,0.02134,0,0,0.00866,0.00929,0.00995,0.01162,0,0,0,0.02242,0,0,0.0085,0.00905,0.00958,0.01079,0,0,0,0.02193,0,0,0.00186,0.00249,0.0032,0.00526,0,0,0,0.00398,0,0,0.00184,0.00244,0.0031,0.00494,0,0,0,0.004,0,0,0.00185,0.00257,0.00327,0.00524,0,0,0,0.00425,0,0,0.00179,0.00245,0.00319,0.00535,0,0,0,0.00388,0,0,0.00181,0.00229,0.00282,0.00404,0,0,0,0.00401,0,0,0.0017,0.00223,0.00278,0.00413,0,0,0,0.00381,0,0,0.00168,0.00213,0.00262,0.00375,0,0,0,0.00371,0,0,0.00176,0.00232,0.0029,0.00437,0,0,0,0.00396,0,0,0.00164,0.00213,0.00259,0.00367,0,0,0,0.00375,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00093,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00092,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00083,0,0,0,0,0,0,0,0,0,0.06691,0,0,0,0,0,0,0,0,0,0.05891,0,0,0,0,0,0,0,0,0,0.06361,0,0,0,0,0,0,0,0,0,0.07318,0,0,0,0,0,0,0,0,0,0.03885,0,0,0,0,0,0,0,0,0,0.04415,0,0,0,0,0,0,0,0,0,0.03758,0,0,0,0,0,0,0,0,0,0.0506,0,0,0,0,0,0,0,0,0,0.03728 +Mini car,PH20E,1990,0.00851,0,0,0,0,0,0,0,0,0,0.00881,0,0,0,0,0,0,0,0,0,0.00956,0,0,0,0,0,0,0,0,0,0.00803,0,0,0,0,0,0,0,0,0,0.00942,0,0,0,0,0,0,0,0,0,0.00865,0,0,0,0,0,0,0,0,0,0.00864,0,0,0,0,0,0,0,0,0,0.00904,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.00111,0.00147,0.00263,0,0,0,0,0,0,0.00066,0.00106,0.0014,0.00247,0,0,0,0,0,0,0.00067,0.00108,0.00144,0.00255,0,0,0,0,0,0,0.00069,0.00112,0.0015,0.00269,0,0,0,0,0,0,0.00059,0.00094,0.00121,0.00204,0,0,0,0,0,0,0.0006,0.00095,0.00124,0.00211,0,0,0,0,0,0,0.00056,0.00089,0.00115,0.00191,0,0,0,0,0,0,0.00061,0.00098,0.00128,0.00219,0,0,0,0,0,0,0.00055,0.00086,0.00111,0.00185,0,0,0,0,0,0,0.01374,0.01468,0.01552,0.01824,0,0,0,0,0,0,0.01409,0.01498,0.01576,0.01824,0,0,0,0,0,0,0.01533,0.01624,0.01706,0.01967,0,0,0,0,0,0,0.01291,0.01387,0.01474,0.01757,0,0,0,0,0,0,0.01486,0.0156,0.01621,0.01805,0,0,0,0,0,0,0.0136,0.01436,0.015,0.01697,0,0,0,0,0,0,0.01358,0.01428,0.01484,0.01653,0,0,0,0,0,0,0.01432,0.01511,0.01579,0.01789,0,0,0,0,0,0,0.0141,0.01477,0.01532,0.01695,0,0,0,0,0,0,0.0029,0.00374,0.00448,0.00689,0,0,0,0,0,0,0.0029,0.00368,0.00437,0.00657,0,0,0,0,0,0,0.00308,0.00388,0.00461,0.00692,0,0,0,0,0,0,0.00282,0.00367,0.00444,0.00694,0,0,0,0,0,0,0.00285,0.0035,0.00404,0.00567,0,0,0,0,0,0,0.00271,0.00339,0.00396,0.00569,0,0,0,0,0,0,0.00264,0.00326,0.00376,0.00526,0,0,0,0,0,0,0.00283,0.00353,0.00413,0.00598,0,0,0,0,0,0,0.00268,0.00327,0.00375,0.00519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH20E,1995,0.00851,0.00851,0,0,0,0,0,0,0,0,0.00881,0.00881,0,0,0,0,0,0,0,0,0.00956,0.00956,0,0,0,0,0,0,0,0,0.00803,0.00803,0,0,0,0,0,0,0,0,0.00942,0.00942,0,0,0,0,0,0,0,0,0.00865,0.00865,0,0,0,0,0,0,0,0,0.00864,0.00864,0,0,0,0,0,0,0,0,0.00904,0.00904,0,0,0,0,0,0,0,0,0.00891,0.00891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.00072,0.00095,0.00189,0,0,0,0,0,0,0.00044,0.00069,0.00091,0.00178,0,0,0,0,0,0,0.00044,0.0007,0.00093,0.00184,0,0,0,0,0,0,0.00046,0.00072,0.00097,0.00193,0,0,0,0,0,0,0.00039,0.00061,0.00079,0.00148,0,0,0,0,0,0,0.00039,0.00062,0.0008,0.00154,0,0,0,0,0,0,0.00037,0.00058,0.00075,0.00139,0,0,0,0,0,0,0.0004,0.00063,0.00083,0.0016,0,0,0,0,0,0,0.00036,0.00056,0.00072,0.00135,0,0,0,0,0,0,0.01324,0.01382,0.01437,0.01657,0,0,0,0,0,0,0.01361,0.01416,0.01467,0.01669,0,0,0,0,0,0,0.01484,0.01541,0.01593,0.01805,0,0,0,0,0,0,0.0124,0.013,0.01356,0.01582,0,0,0,0,0,0,0.01445,0.01491,0.0153,0.01685,0,0,0,0,0,0,0.01317,0.01365,0.01407,0.01571,0,0,0,0,0,0,0.01319,0.01362,0.01399,0.01542,0,0,0,0,0,0,0.01389,0.01438,0.01482,0.01656,0,0,0,0,0,0,0.01372,0.01414,0.0145,0.01588,0,0,0,0,0,0,0.00246,0.00298,0.00346,0.00541,0,0,0,0,0,0,0.00247,0.00296,0.00341,0.0052,0,0,0,0,0,0,0.00264,0.00315,0.00361,0.00549,0,0,0,0,0,0,0.00236,0.00289,0.00339,0.00539,0,0,0,0,0,0,0.00248,0.00289,0.00324,0.00461,0,0,0,0,0,0,0.00234,0.00276,0.00313,0.00458,0,0,0,0,0,0,0.00229,0.00268,0.003,0.00427,0,0,0,0,0,0,0.00245,0.00288,0.00327,0.00481,0,0,0,0,0,0,0.00234,0.00271,0.00303,0.00425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH20E,2000,0.00851,0.01303,0.01618,0,0,0,0,0,0,0,0.00881,0.0127,0.01539,0,0,0,0,0,0,0,0.00956,0.01392,0.01697,0,0,0,0,0,0,0,0.00803,0.01297,0.01646,0,0,0,0,0,0,0,0.00942,0.01159,0.01304,0,0,0,0,0,0,0,0.00865,0.01125,0.01321,0,0,0,0,0,0,0,0.00864,0.01072,0.01211,0,0,0,0,0,0,0,0.00904,0.01204,0.01409,0,0,0,0,0,0,0,0.00891,0.01097,0.01234,0,0,0,0,0,0,0,0,0.07301,0.07561,0,0,0,0,0,0,0,0,0.06939,0.07376,0,0,0,0,0,0,0,0,0.08221,0.08666,0,0,0,0,0,0,0,0,0.08704,0.09153,0,0,0,0,0,0,0,0,0.06853,0.07305,0,0,0,0,0,0,0,0,0.07392,0.07891,0,0,0,0,0,0,0,0,0.06878,0.07107,0,0,0,0,0,0,0,0,0.07115,0.07482,0,0,0,0,0,0,0,0,0.05914,0.0625,0,0,0,0,0,0,0,0,7.32426,8.60913,0,0,0,0,0,0,0,0,7.07021,8.46765,0,0,0,0,0,0,0,0,8.0841,9.6332,0,0,0,0,0,0,0,0,8.76036,10.40745,0,0,0,0,0,0,0,0,7.13059,8.48297,0,0,0,0,0,0,0,0,7.59524,9.13231,0,0,0,0,0,0,0,0,7.39622,8.55563,0,0,0,0,0,0,0,0,7.30588,8.63612,0,0,0,0,0,0,0,0,6.00537,7.10747,0,0,0,0,0,0,0,0,263.2199,267.23712,0,0,0,0,0,0,0,0,265.44796,269.18865,0,0,0,0,0,0,0,0,270.02508,273.91811,0,0,0,0,0,0,0,0,263.35628,267.42397,0,0,0,0,0,0,0,0,269.85875,272.57044,0,0,0,0,0,0,0,0,265.55168,269.66816,0,0,0,0,0,0,0,0,267.05226,269.66734,0,0,0,0,0,0,0,0,267.67436,270.83183,0,0,0,0,0,0,0,0,262.39324,265.19879,0,0,0,0,0,0,0,0,0.01642,0.01945,0,0,0,0,0,0,0,0,0.01647,0.01949,0,0,0,0,0,0,0,0,0.01654,0.01955,0,0,0,0,0,0,0,0,0.01661,0.01971,0,0,0,0,0,0,0,0,0.01657,0.01959,0,0,0,0,0,0,0,0,0.01668,0.01976,0,0,0,0,0,0,0,0,0.0165,0.01955,0,0,0,0,0,0,0,0,0.01657,0.01961,0,0,0,0,0,0,0,0,0.01631,0.01929,0,0,0,0,0,0,0,0,0.05441,0.05441,0,0,0,0,0,0,0,0,0.05454,0.05454,0,0,0,0,0,0,0,0,0.05468,0.05468,0,0,0,0,0,0,0,0,0.05403,0.05403,0,0,0,0,0,0,0,0,0.0546,0.0546,0,0,0,0,0,0,0,0,0.05422,0.05423,0,0,0,0,0,0,0,0,0.0544,0.0544,0,0,0,0,0,0,0,0,0.05461,0.05461,0,0,0,0,0,0,0,0,0.05472,0.05472,0,0,0,0,0,0,0,0,0.9429,1.12052,0,0,0,0,0,0,0,0,0.93379,1.13388,0,0,0,0,0,0,0,0,1.04148,1.25491,0,0,0,0,0,0,0,0,1.08743,1.30883,0,0,0,0,0,0,0,0,1.016,1.2342,0,0,0,0,0,0,0,0,1.05191,1.26892,0,0,0,0,0,0,0,0,1.03493,1.22523,0,0,0,0,0,0,0,0,1.07551,1.28301,0,0,0,0,0,0,0,0,0.95499,1.14728,0,0,0,0,0,0,0,0,0.0094,0.01489,0,0,0.00045,0.00071,0.00095,0.00156,0,0,0.00826,0.01304,0,0,0.00043,0.00069,0.0009,0.00148,0,0,0.00903,0.01429,0,0,0.00044,0.0007,0.00092,0.00152,0,0,0.00983,0.01565,0,0,0.00046,0.00072,0.00096,0.00159,0,0,0.00496,0.00776,0,0,0.00039,0.00061,0.00078,0.00123,0,0,0.00571,0.0093,0,0,0.00039,0.00062,0.0008,0.00127,0,0,0.00485,0.00757,0,0,0.00037,0.00058,0.00074,0.00116,0,0,0.00654,0.01029,0,0,0.0004,0.00063,0.00083,0.00132,0,0,0.00494,0.00769,0,0,0.00036,0.00056,0.00072,0.00112,0,0,0.04007,0.05227,0,0,0.01323,0.01382,0.01435,0.01581,0,0,0.03822,0.04881,0,0,0.01361,0.01416,0.01466,0.01599,0,0,0.04172,0.05345,0,0,0.01484,0.0154,0.01592,0.01732,0,0,0.04005,0.05312,0,0,0.0124,0.01299,0.01354,0.01504,0,0,0.03245,0.03854,0,0,0.01445,0.0149,0.01529,0.01631,0,0,0.03233,0.04032,0,0,0.01317,0.01365,0.01406,0.01513,0,0,0.03036,0.03625,0,0,0.01319,0.01362,0.01398,0.01491,0,0,0.03502,0.04327,0,0,0.01388,0.01438,0.01481,0.01595,0,0,0.03113,0.03707,0,0,0.01372,0.01414,0.0145,0.01539,0,0,0.0205,0.0313,0,0,0.00246,0.00297,0.00345,0.00474,0,0,0.01836,0.02772,0,0,0.00247,0.00296,0.0034,0.00458,0,0,0.02012,0.0305,0,0,0.00264,0.00314,0.0036,0.00484,0,0,0.02134,0.03291,0,0,0.00236,0.00289,0.00337,0.00471,0,0,0.01216,0.01755,0,0,0.00248,0.00289,0.00323,0.00413,0,0,0.0134,0.02041,0,0,0.00234,0.00276,0.00312,0.00407,0,0,0.01169,0.0169,0,0,0.00229,0.00268,0.00299,0.00382,0,0,0.0151,0.0224,0,0,0.00244,0.00288,0.00326,0.00427,0,0,0.0119,0.01714,0,0,0.00234,0.00271,0.00303,0.00382,0,0,0.00862,0.00772,0,0,0,0,0,0,0,0,0.00869,0.00777,0,0,0,0,0,0,0,0,0.00884,0.00791,0,0,0,0,0,0,0,0,0.00862,0.00772,0,0,0,0,0,0,0,0,0.00884,0.00787,0,0,0,0,0,0,0,0,0.0087,0.00779,0,0,0,0,0,0,0,0,0.00874,0.00779,0,0,0,0,0,0,0,0,0.00876,0.00782,0,0,0,0,0,0,0,0,0.00859,0.00766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH20E,2005,0.00851,0.01028,0.01142,0.01409,0,0,0,0,0,0,0.00881,0.01035,0.01134,0.01364,0,0,0,0,0,0,0.00956,0.01129,0.0124,0.015,0,0,0,0,0,0,0.00803,0.00996,0.01122,0.01419,0,0,0,0,0,0,0.00942,0.01036,0.01095,0.01225,0,0,0,0,0,0,0.00865,0.00975,0.01051,0.012,0,0,0,0,0,0,0.00864,0.00954,0.01011,0.01134,0,0,0,0,0,0,0.00904,0.01028,0.01106,0.01284,0,0,0,0,0,0,0.00891,0.0098,0.01035,0.01156,0,0,0,0,0,0,0,0.03756,0.03014,0.03574,0,0,0,0,0,0,0,0.0335,0.0279,0.03351,0,0,0,0,0,0,0,0.03874,0.03222,0.03963,0,0,0,0,0,0,0,0.04294,0.0356,0.04319,0,0,0,0,0,0,0,0.0236,0.02193,0.02848,0,0,0,0,0,0,0,0.02803,0.02574,0.03218,0,0,0,0,0,0,0,0.02326,0.02133,0.02759,0,0,0,0,0,0,0,0.02925,0.02531,0.03159,0,0,0,0,0,0,0,0.02065,0.0189,0.02383,0,0,0,0,0,0,0,2.98915,3.8026,5.16439,0,0,0,0,0,0,0,2.8717,3.79063,5.11719,0,0,0,0,0,0,0,3.22371,4.33088,5.89749,0,0,0,0,0,0,0,3.46953,4.66554,6.3412,0,0,0,0,0,0,0,2.97233,4.10022,5.42437,0,0,0,0,0,0,0,3.09332,4.29645,5.67069,0,0,0,0,0,0,0,3.08211,4.14849,5.47093,0,0,0,0,0,0,0,3.02752,4.03677,5.38899,0,0,0,0,0,0,0,2.61333,3.47653,4.54563,0,0,0,0,0,0,0,266.98314,270.0164,274.43332,0,0,0,0,0,0,0,269.37018,272.19672,276.27454,0,0,0,0,0,0,0,273.79232,276.73456,281.01554,0,0,0,0,0,0,0,267.15935,270.23674,274.73365,0,0,0,0,0,0,0,274.35893,276.41644,279.23079,0,0,0,0,0,0,0,269.866,273.22002,275.48971,0,0,0,0,0,0,0,271.71233,273.69984,276.39094,0,0,0,0,0,0,0,271.9484,274.33936,277.69888,0,0,0,0,0,0,0,266.81651,268.93481,271.82775,0,0,0,0,0,0,0,0.00538,0.00632,0.00961,0,0,0,0,0,0,0,0.00539,0.00633,0.00962,0,0,0,0,0,0,0,0.0054,0.00633,0.00961,0,0,0,0,0,0,0,0.00546,0.00643,0.00977,0,0,0,0,0,0,0,0.00541,0.00635,0.00964,0,0,0,0,0,0,0,0.00547,0.00643,0.00977,0,0,0,0,0,0,0,0.00541,0.00636,0.00966,0,0,0,0,0,0,0,0.00542,0.00637,0.00967,0,0,0,0,0,0,0,0.00533,0.00626,0.00951,0,0,0,0,0,0,0,0.01778,0.02205,0.02487,0,0,0,0,0,0,0,0.01782,0.0221,0.02492,0,0,0,0,0,0,0,0.01787,0.02216,0.02499,0,0,0,0,0,0,0,0.01766,0.02189,0.02469,0,0,0,0,0,0,0,0.01784,0.02212,0.02495,0,0,0,0,0,0,0,0.01772,0.02197,0.02478,0,0,0,0,0,0,0,0.01778,0.02204,0.02486,0,0,0,0,0,0,0,0.01785,0.02213,0.02496,0,0,0,0,0,0,0,0.01789,0.02217,0.02501,0,0,0,0,0,0,0,0.28675,0.38074,0.44502,0,0,0,0,0,0,0,0.27921,0.3828,0.44735,0,0,0,0,0,0,0,0.3142,0.42382,0.50379,0,0,0,0,0,0,0,0.32875,0.44391,0.53212,0,0,0,0,0,0,0,0.29996,0.41041,0.49034,0,0,0,0,0,0,0,0.31294,0.42504,0.50839,0,0,0,0,0,0,0,0.30504,0.40733,0.48456,0,0,0,0,0,0,0,0.31944,0.4277,0.5027,0,0,0,0,0,0,0,0.28356,0.38213,0.44333,0,0,0,0,0,0,0,0.00375,0.00568,0.01005,0,0,0.00045,0.00071,0.00095,0.00145,0,0.00338,0.00513,0.00899,0,0,0.00043,0.00068,0.00091,0.00137,0,0.0037,0.00561,0.00985,0,0,0.00044,0.00069,0.00092,0.00141,0,0.00394,0.00601,0.01067,0,0,0.00045,0.00072,0.00096,0.00148,0,0.00228,0.00348,0.00589,0,0,0.00039,0.0006,0.00078,0.00115,0,0.00254,0.00397,0.00662,0,0,0.00039,0.00061,0.0008,0.00118,0,0.00221,0.00337,0.00572,0,0,0.00037,0.00057,0.00074,0.00108,0,0.00281,0.00427,0.00738,0,0,0.0004,0.00063,0.00083,0.00123,0,0.00222,0.00337,0.00573,0,0,0.00036,0.00056,0.00072,0.00104,0,0.02788,0.03221,0.04201,0,0,0.01323,0.01381,0.01436,0.01555,0,0.02774,0.03161,0.04022,0,0,0.01361,0.01415,0.01466,0.01575,0,0.0302,0.03447,0.04399,0,0,0.01483,0.01539,0.01592,0.01707,0,0.02723,0.03189,0.04246,0,0,0.01239,0.01298,0.01355,0.01478,0,0.02674,0.02931,0.03457,0,0,0.01444,0.0149,0.0153,0.01611,0,0.02553,0.02875,0.03449,0,0,0.01317,0.01364,0.01406,0.01493,0,0.02477,0.02725,0.03234,0,0,0.01318,0.01361,0.01398,0.01473,0,0.02702,0.03022,0.0371,0,0,0.01388,0.01437,0.01481,0.01573,0,0.0254,0.02787,0.03295,0,0,0.01372,0.01414,0.0145,0.01521,0,0.00972,0.01355,0.02223,0,0,0.00245,0.00297,0.00345,0.0045,0,0.00908,0.01251,0.02012,0,0,0.00247,0.00295,0.0034,0.00436,0,0.00993,0.01371,0.02213,0,0,0.00264,0.00313,0.0036,0.00462,0,0.01,0.01413,0.02348,0,0,0.00236,0.00288,0.00338,0.00447,0,0.00711,0.00938,0.01404,0,0,0.00248,0.00288,0.00324,0.00396,0,0.0074,0.01018,0.01532,0,0,0.00233,0.00275,0.00312,0.00389,0,0.00675,0.00894,0.01344,0,0,0.00229,0.00267,0.003,0.00366,0,0.00803,0.01087,0.01695,0,0,0.00244,0.00287,0.00327,0.00408,0,0.00683,0.00901,0.0135,0,0,0.00234,0.00271,0.00303,0.00366,0,0.00874,0.0078,0.00264,0,0,0,0,0,0,0,0.00882,0.00786,0.00266,0,0,0,0,0,0,0,0.00896,0.00799,0.0027,0,0,0,0,0,0,0,0.00875,0.0078,0.00264,0,0,0,0,0,0,0,0.00898,0.00798,0.00269,0,0,0,0,0,0,0,0.00884,0.00789,0.00265,0,0,0,0,0,0,0,0.0089,0.0079,0.00266,0,0,0,0,0,0,0,0.0089,0.00792,0.00267,0,0,0,0,0,0,0,0.00874,0.00777,0.00262,0,0,0,0,0,0,0,0.24233,0.32197,0.33572,0,0,0,0,0,0,0,0.21486,0.2943,0.30655,0,0,0,0,0,0,0,0.24794,0.3392,0.35224,0,0,0,0,0,0,0,0.27578,0.37602,0.38948,0,0,0,0,0,0,0,0.14143,0.21544,0.22221,0,0,0,0,0,0,0,0.17138,0.25905,0.26043,0,0,0,0,0,0,0,0.13761,0.20746,0.21383,0,0,0,0,0,0,0,0.18137,0.25796,0.26719,0,0,0,0,0,0,0,0.12259,0.1847,0.19019,0,0,0,0,0,0 +Mini car,PH20E,2010,0,0.00938,0.00992,0.01077,0.0133,0,0,0,0,0,0,0.00958,0.01005,0.0108,0.01299,0,0,0,0,0,0,0.01041,0.01093,0.01177,0.01424,0,0,0,0,0,0,0.00898,0.00957,0.01052,0.01334,0,0,0,0,0,0,0.00994,0.01024,0.01071,0.01199,0,0,0,0,0,0,0.00924,0.00961,0.01012,0.01165,0,0,0,0,0,0,0.00914,0.00943,0.00988,0.0111,0,0,0,0,0,0,0.00968,0.01006,0.01067,0.01239,0,0,0,0,0,0,0.00941,0.00969,0.01013,0.01132,0,0,0,0,0,0,0.03262,0.02251,0.01737,0.02267,0,0,0,0,0,0,0.02808,0.0203,0.01591,0.02098,0,0,0,0,0,0,0.03183,0.02392,0.01874,0.02492,0,0,0,0,0,0,0.0368,0.02731,0.0213,0.02787,0,0,0,0,0,0,0.01779,0.0163,0.0136,0.01815,0,0,0,0,0,0,0.02065,0.01867,0.01509,0.02029,0,0,0,0,0,0,0.01723,0.01588,0.01331,0.01769,0,0,0,0,0,0,0.023,0.01871,0.01507,0.01998,0,0,0,0,0,0,0.01657,0.01449,0.01189,0.01543,0,0,0,0,0,0,1.64186,2.55168,3.41736,4.3819,0,0,0,0,0,0,1.53741,2.50728,3.38524,4.33618,0,0,0,0,0,0,1.64391,2.79417,3.85642,4.99964,0,0,0,0,0,0,1.78816,3.02847,4.18794,5.40592,0,0,0,0,0,0,1.36501,2.55751,3.58974,4.61049,0,0,0,0,0,0,1.43707,2.69497,3.73352,4.82343,0,0,0,0,0,0,1.40887,2.60553,3.6458,4.66524,0,0,0,0,0,0,1.48358,2.59556,3.5721,4.58043,0,0,0,0,0,0,1.25701,2.2419,3.05702,3.87514,0,0,0,0,0,0,261.68002,263.54005,266.72266,272.29556,0,0,0,0,0,0,264.16389,265.88104,268.83694,274.06444,0,0,0,0,0,0,268.46038,270.25113,273.33232,278.76943,0,0,0,0,0,0,261.84083,263.7201,266.95689,272.62126,0,0,0,0,0,0,269.56288,270.7534,272.86646,276.79857,0,0,0,0,0,0,264.95675,267.31525,268.76841,273.17948,0,0,0,0,0,0,266.99868,268.13971,270.17964,273.99279,0,0,0,0,0,0,266.9783,268.39687,270.87555,275.3688,0,0,0,0,0,0,262.06053,263.31251,265.48734,269.48386,0,0,0,0,0,0,0.00479,0.00542,0.00646,0.00844,0,0,0,0,0,0,0.0048,0.00543,0.00647,0.00845,0,0,0,0,0,0,0.00481,0.00543,0.00647,0.00843,0,0,0,0,0,0,0.00486,0.0055,0.00657,0.00858,0,0,0,0,0,0,0.00482,0.00544,0.00649,0.00846,0,0,0,0,0,0,0.00487,0.0055,0.00657,0.00858,0,0,0,0,0,0,0.00482,0.00544,0.00649,0.00848,0,0,0,0,0,0,0.00483,0.00546,0.0065,0.00849,0,0,0,0,0,0,0.00475,0.00537,0.0064,0.00835,0,0,0,0,0,0,0.01183,0.01372,0.0177,0.01891,0,0,0,0,0,0,0.01185,0.01375,0.01774,0.01895,0,0,0,0,0,0,0.01188,0.01379,0.01779,0.019,0,0,0,0,0,0,0.01174,0.01362,0.01758,0.01877,0,0,0,0,0,0,0.01187,0.01377,0.01776,0.01897,0,0,0,0,0,0,0.01178,0.01367,0.01764,0.01884,0,0,0,0,0,0,0.01182,0.01371,0.0177,0.0189,0,0,0,0,0,0,0.01187,0.01377,0.01777,0.01897,0,0,0,0,0,0,0.01189,0.0138,0.0178,0.01901,0,0,0,0,0,0,0.07607,0.12434,0.13284,0.22298,0,0,0,0,0,0,0.07285,0.12388,0.13194,0.22252,0,0,0,0,0,0,0.07573,0.13669,0.14408,0.24995,0,0,0,0,0,0,0.07869,0.14522,0.15317,0.26653,0,0,0,0,0,0,0.06782,0.12829,0.13506,0.23875,0,0,0,0,0,0,0.07172,0.13508,0.14215,0.2502,0,0,0,0,0,0,0.0694,0.12821,0.13498,0.23664,0,0,0,0,0,0,0.07603,0.137,0.14247,0.2465,0,0,0,0,0,0,0.06842,0.12162,0.12623,0.21547,0,0,0,0,0,0,0.00154,0.00237,0.00366,0.00754,0,0,0.00045,0.00071,0.00095,0,0.00145,0.00222,0.00341,0.00687,0,0,0.00043,0.00068,0.00091,0,0.00152,0.00234,0.00361,0.00742,0,0,0.00044,0.00069,0.00093,0,0.00161,0.00249,0.00386,0.00802,0,0,0.00045,0.00072,0.00097,0,0.0012,0.0018,0.00272,0.00506,0,0,0.00039,0.0006,0.00079,0,0.00125,0.00192,0.00288,0.00549,0,0,0.00039,0.00061,0.0008,0,0.00118,0.00178,0.00268,0.00494,0,0,0.00037,0.00057,0.00075,0,0.00132,0.00201,0.00306,0.00594,0,0,0.0004,0.00063,0.00083,0,0.00119,0.00179,0.00269,0.00494,0,0,0.00036,0.00056,0.00072,0,0.02328,0.02518,0.02814,0.03702,0,0,0.01323,0.01381,0.01436,0,0.02372,0.02545,0.02814,0.03603,0,0,0.0136,0.01415,0.01467,0,0.02567,0.02754,0.03045,0.03916,0,0,0.01483,0.0154,0.01593,0,0.02234,0.02438,0.02756,0.03718,0,0,0.01238,0.01298,0.01355,0,0.0245,0.0258,0.02778,0.03291,0,0,0.01444,0.0149,0.0153,0,0.02286,0.02443,0.02642,0.03224,0,0,0.01317,0.01364,0.01406,0,0.02264,0.02391,0.02584,0.0308,0,0,0.01318,0.01361,0.01399,0,0.02393,0.02545,0.02777,0.03424,0,0,0.01388,0.01437,0.01482,0,0.02328,0.02455,0.02647,0.03139,0,0,0.01372,0.01414,0.0145,0,0.00565,0.00734,0.00996,0.01781,0,0,0.00245,0.00297,0.00346,0,0.00552,0.00706,0.00944,0.01641,0,0,0.00246,0.00295,0.00341,0,0.00592,0.00758,0.01015,0.01785,0,0,0.00263,0.00314,0.00361,0,0.00568,0.00748,0.0103,0.01881,0,0,0.00235,0.00288,0.00339,0,0.00513,0.00628,0.00803,0.01257,0,0,0.00248,0.00288,0.00324,0,0.00503,0.00635,0.00818,0.01333,0,0,0.00233,0.00275,0.00313,0,0.00486,0.00598,0.00769,0.01208,0,0,0.00229,0.00267,0.003,0,0.0053,0.00664,0.0087,0.01442,0,0,0.00244,0.00288,0.00327,0,0.00495,0.00607,0.00777,0.01212,0,0,0.00234,0.00271,0.00303,0,0.00857,0.00761,0.00257,0.00262,0,0,0,0,0,0,0.00865,0.00768,0.00259,0.00264,0,0,0,0,0,0,0.00879,0.0078,0.00263,0.00268,0,0,0,0,0,0,0.00857,0.00762,0.00257,0.00262,0,0,0,0,0,0,0.00883,0.00782,0.00263,0.00266,0,0,0,0,0,0,0.00868,0.00772,0.00259,0.00263,0,0,0,0,0,0,0.00874,0.00774,0.0026,0.00264,0,0,0,0,0,0,0.00874,0.00775,0.00261,0.00265,0,0,0,0,0,0,0.00858,0.0076,0.00256,0.00259,0,0,0,0,0,0,0.09598,0.13494,0.18293,0.26452,0,0,0,0,0,0,0.08126,0.11928,0.16503,0.24056,0,0,0,0,0,0,0.09358,0.14086,0.19461,0.28429,0,0,0,0,0,0,0.10946,0.1626,0.22274,0.32126,0,0,0,0,0,0,0.04766,0.08789,0.13284,0.19366,0,0,0,0,0,0,0.057,0.10333,0.14942,0.21997,0,0,0,0,0,0,0.0455,0.08456,0.12881,0.18746,0,0,0,0,0,0,0.06457,0.10531,0.1516,0.22103,0,0,0,0,0,0,0.04367,0.07761,0.11578,0.16529,0,0,0,0,0 +Mini car,PH20E,2015,0,0,0.00926,0.00967,0.01044,0.01231,0,0,0,0,0,0,0.00948,0.00985,0.01054,0.0122,0,0,0,0,0,0,0.01029,0.01069,0.01145,0.01328,0,0,0,0,0,0,0.00883,0.00927,0.01011,0.01218,0,0,0,0,0,0,0.00991,0.01016,0.01063,0.01168,0,0,0,0,0,0,0.00921,0.00948,0.01001,0.01122,0,0,0,0,0,0,0.00912,0.00937,0.00982,0.01083,0,0,0,0,0,0,0.00962,0.00993,0.01051,0.01185,0,0,0,0,0,0,0.00938,0.00963,0.01007,0.01106,0,0,0,0,0,0,0.02439,0.01602,0.01444,0.01662,0,0,0,0,0,0,0.02206,0.01485,0.01366,0.0157,0,0,0,0,0,0,0.02413,0.01724,0.01589,0.01841,0,0,0,0,0,0,0.02696,0.01925,0.01764,0.02039,0,0,0,0,0,0,0.01556,0.01273,0.01269,0.01461,0,0,0,0,0,0,0.01803,0.01412,0.01388,0.01603,0,0,0,0,0,0,0.01525,0.01249,0.01253,0.01439,0,0,0,0,0,0,0.01884,0.01413,0.0135,0.01552,0,0,0,0,0,0,0.0147,0.01136,0.01114,0.01264,0,0,0,0,0,0,1.29258,2.27811,3.04823,3.7684,0,0,0,0,0,0,1.27034,2.27601,3.07135,3.78473,0,0,0,0,0,0,1.32226,2.52488,3.48926,4.32937,0,0,0,0,0,0,1.42622,2.71601,3.76384,4.6541,0,0,0,0,0,0,1.19929,2.44464,3.42934,4.19998,0,0,0,0,0,0,1.25382,2.50863,3.5276,4.34357,0,0,0,0,0,0,1.23722,2.50005,3.49679,4.27207,0,0,0,0,0,0,1.25276,2.42356,3.33628,4.0941,0,0,0,0,0,0,1.111,2.14558,2.92278,3.55299,0,0,0,0,0,0,237.09614,238.88187,240.63254,246.05498,0,0,0,0,0,0,239.28629,240.91149,242.44653,247.57524,0,0,0,0,0,0,243.19833,244.90146,246.53074,251.8486,0,0,0,0,0,0,237.26585,239.07724,240.87403,246.3806,0,0,0,0,0,0,243.96518,245.00209,245.75045,249.7703,0,0,0,0,0,0,240.7589,241.13943,242.19228,246.61785,0,0,0,0,0,0,241.63654,242.623,243.31581,247.22962,0,0,0,0,0,0,241.71661,243.00895,244.09969,248.59972,0,0,0,0,0,0,237.18757,238.29343,239.13394,243.18903,0,0,0,0,0,0,0.00311,0.00352,0.00406,0.00541,0,0,0,0,0,0,0.00313,0.00353,0.00407,0.00543,0,0,0,0,0,0,0.00316,0.00356,0.0041,0.00544,0,0,0,0,0,0,0.00313,0.00354,0.0041,0.00548,0,0,0,0,0,0,0.00316,0.00356,0.00411,0.00545,0,0,0,0,0,0,0.00316,0.00357,0.00412,0.0055,0,0,0,0,0,0,0.00313,0.00354,0.00408,0.00544,0,0,0,0,0,0,0.00315,0.00356,0.0041,0.00546,0,0,0,0,0,0,0.0031,0.0035,0.00404,0.00537,0,0,0,0,0,0,0.01183,0.01382,0.0177,0.01783,0,0,0,0,0,0,0.01185,0.01385,0.01774,0.01786,0,0,0,0,0,0,0.01188,0.01389,0.01779,0.01791,0,0,0,0,0,0,0.01174,0.01372,0.01758,0.0177,0,0,0,0,0,0,0.01187,0.01387,0.01776,0.01789,0,0,0,0,0,0,0.01179,0.01377,0.01764,0.01776,0,0,0,0,0,0,0.01182,0.01382,0.0177,0.01782,0,0,0,0,0,0,0.01187,0.01387,0.01777,0.01789,0,0,0,0,0,0,0.01189,0.0139,0.0178,0.01793,0,0,0,0,0,0,0.06211,0.08227,0.11762,0.15883,0,0,0,0,0,0,0.06151,0.08125,0.11653,0.15758,0,0,0,0,0,0,0.06258,0.08902,0.12695,0.17346,0,0,0,0,0,0,0.06559,0.09492,0.13538,0.18531,0,0,0,0,0,0,0.05533,0.08124,0.11785,0.1625,0,0,0,0,0,0,0.05924,0.08626,0.12461,0.17155,0,0,0,0,0,0,0.05629,0.08121,0.11802,0.16214,0,0,0,0,0,0,0.06215,0.08712,0.12501,0.17033,0,0,0,0,0,0,0.05604,0.07668,0.11039,0.14952,0,0,0,0,0,0,0.00142,0.00212,0.00334,0.00606,0,0,0.00045,0.00071,0,0,0.00135,0.00201,0.00316,0.00566,0,0,0.00043,0.00068,0,0,0.0014,0.0021,0.00331,0.00599,0,0,0.00044,0.0007,0,0,0.00146,0.00218,0.00346,0.00636,0,0,0.00045,0.00072,0,0,0.00117,0.00172,0.00265,0.00454,0,0,0.00039,0.0006,0,0,0.00122,0.00178,0.00277,0.00481,0,0,0.00039,0.00062,0,0,0.00116,0.0017,0.00262,0.00447,0,0,0.00037,0.00058,0,0,0.00126,0.00187,0.00291,0.00509,0,0,0.0004,0.00063,0,0,0.00117,0.00171,0.00263,0.00447,0,0,0.00036,0.00056,0,0,0.02296,0.02451,0.0273,0.03362,0,0,0.01323,0.01382,0,0,0.02347,0.02492,0.0275,0.03325,0,0,0.0136,0.01416,0,0,0.02536,0.0269,0.02964,0.03586,0,0,0.01483,0.0154,0,0,0.02195,0.02357,0.02651,0.0333,0,0,0.01239,0.01299,0,0,0.02442,0.02558,0.02759,0.03175,0,0,0.01444,0.0149,0,0,0.02286,0.02398,0.02614,0.0307,0,0,0.01317,0.01364,0,0,0.02257,0.02372,0.02569,0.02975,0,0,0.01318,0.01362,0,0,0.02377,0.02507,0.02737,0.0323,0,0,0.01388,0.01437,0,0,0.02321,0.02435,0.02633,0.03035,0,0,0.01372,0.01414,0,0,0.00537,0.00674,0.00921,0.0148,0,0,0.00245,0.00297,0,0,0.0053,0.00659,0.00887,0.01395,0,0,0.00247,0.00296,0,0,0.00565,0.00701,0.00943,0.01493,0,0,0.00264,0.00314,0,0,0.00533,0.00677,0.00937,0.01538,0,0,0.00236,0.00289,0,0,0.00506,0.00608,0.00786,0.01154,0,0,0.00248,0.00289,0,0,0.00497,0.00602,0.00793,0.01197,0,0,0.00233,0.00275,0,0,0.0048,0.00581,0.00756,0.01115,0,0,0.00229,0.00267,0,0,0.00516,0.00631,0.00834,0.0127,0,0,0.00244,0.00288,0,0,0.00489,0.0059,0.00764,0.0112,0,0,0.00234,0.00271,0,0,0.00685,0.0023,0.00232,0.00237,0,0,0,0,0,0,0.00691,0.00232,0.00233,0.00238,0,0,0,0,0,0,0.00702,0.00236,0.00237,0.00242,0,0,0,0,0,0,0.00685,0.0023,0.00232,0.00237,0,0,0,0,0,0,0.00704,0.00236,0.00237,0.0024,0,0,0,0,0,0,0.00695,0.00232,0.00233,0.00237,0,0,0,0,0,0,0.00698,0.00234,0.00234,0.00238,0,0,0,0,0,0,0.00698,0.00234,0.00235,0.00239,0,0,0,0,0,0,0.00685,0.00229,0.0023,0.00234,0,0,0,0,0,0,0.069,0.10033,0.14815,0.20289,0,0,0,0,0,0,0.06119,0.09161,0.1382,0.18922,0,0,0,0,0,0,0.06798,0.1064,0.16069,0.22167,0,0,0,0,0,0,0.07695,0.11956,0.17932,0.24699,0,0,0,0,0,0,0.03985,0.07394,0.12212,0.16809,0,0,0,0,0,0,0.04784,0.08324,0.13505,0.18638,0,0,0,0,0,0,0.03855,0.07186,0.11956,0.16438,0,0,0,0,0,0,0.05046,0.08448,0.13304,0.18261,0,0,0,0,0,0,0.03705,0.06566,0.10699,0.14522,0,0,0,0 +Mini car,PH20E,2020,0,0,0,0.00912,0.00944,0.00993,0.0114,0,0,0,0,0,0,0.00936,0.00965,0.01009,0.0114,0,0,0,0,0,0,0.01016,0.01047,0.01095,0.01239,0,0,0,0,0,0,0.00868,0.00902,0.00955,0.01116,0,0,0,0,0,0,0.00983,0.01003,0.01033,0.01119,0,0,0,0,0,0,0.0091,0.00933,0.00967,0.01065,0,0,0,0,0,0,0.00904,0.00923,0.00953,0.01036,0,0,0,0,0,0,0.00952,0.00976,0.01013,0.01121,0,0,0,0,0,0,0.00931,0.0095,0.00978,0.01059,0,0,0,0,0,0,0.01877,0.01288,0.01063,0.01237,0,0,0,0,0,0,0.01665,0.01172,0.00986,0.01155,0,0,0,0,0,0,0.01852,0.01363,0.01148,0.01366,0,0,0,0,0,0,0.02094,0.01533,0.01285,0.01522,0,0,0,0,0,0,0.01067,0.00922,0.00841,0.0103,0,0,0,0,0,0,0.01249,0.01047,0.00939,0.01146,0,0,0,0,0,0,0.01033,0.009,0.00827,0.01011,0,0,0,0,0,0,0.01365,0.01069,0.00933,0.01118,0,0,0,0,0,0,0.00989,0.00819,0.00737,0.00882,0,0,0,0,0,0,1.01746,1.51263,1.88464,2.51517,0,0,0,0,0,0,0.99371,1.49375,1.87254,2.50466,0,0,0,0,0,0,1.04294,1.65661,2.12209,2.89151,0,0,0,0,0,0,1.13335,1.80058,2.3171,3.13855,0,0,0,0,0,0,0.92106,1.54746,2.00363,2.73091,0,0,0,0,0,0,0.95756,1.6043,2.08478,2.85391,0,0,0,0,0,0,0.94796,1.58565,2.04946,2.78168,0,0,0,0,0,0,0.97088,1.56036,1.98856,2.68804,0,0,0,0,0,0,0.84902,1.36223,1.71606,2.29567,0,0,0,0,0,0,188.31073,189.62672,190.89384,202.17641,0,0,0,0,0,0,189.93583,191.12398,192.21074,203.27416,0,0,0,0,0,0,193.0791,194.32776,195.49015,206.83336,0,0,0,0,0,0,188.48932,189.82914,191.13769,202.5043,0,0,0,0,0,0,193.24682,193.96631,194.39947,204.54201,0,0,0,0,0,0,190.17591,191.07312,191.7618,202.18,0,0,0,0,0,0,191.38625,192.06831,192.45789,202.44105,0,0,0,0,0,0,191.63875,192.56199,193.27936,203.81503,0,0,0,0,0,0,187.90367,188.67666,189.18528,199.18352,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00318,0.00355,0.00406,0.00501,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00503,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00321,0.00357,0.00408,0.00504,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00496,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04287,0.06615,0.08871,0.11872,0,0,0,0,0,0,0.042,0.06501,0.08744,0.1172,0,0,0,0,0,0,0.04304,0.07093,0.09482,0.12906,0,0,0,0,0,0,0.0455,0.07609,0.10178,0.13886,0,0,0,0,0,0,0.03618,0.06313,0.08571,0.118,0,0,0,0,0,0,0.03932,0.06777,0.09169,0.12596,0,0,0,0,0,0,0.03674,0.0634,0.08628,0.11814,0,0,0,0,0,0,0.04117,0.06882,0.09259,0.12548,0,0,0,0,0,0,0.03619,0.05993,0.08085,0.10866,0,0,0,0,0,0,0.00119,0.00172,0.00249,0.00462,0,0,0.00045,0,0,0,0.00114,0.00164,0.00237,0.00433,0,0,0.00043,0,0,0,0.00118,0.0017,0.00247,0.00456,0,0,0.00044,0,0,0,0.00122,0.00177,0.00257,0.00482,0,0,0.00045,0,0,0,0.001,0.00141,0.002,0.00353,0,0,0.00039,0,0,0,0.00103,0.00146,0.00208,0.00373,0,0,0.00039,0,0,0,0.00099,0.0014,0.00198,0.00349,0,0,0.00037,0,0,0,0.00107,0.00152,0.00218,0.00393,0,0,0.0004,0,0,0,0.001,0.00141,0.00199,0.00349,0,0,0.00036,0,0,0,0.02244,0.02362,0.02539,0.03033,0,0,0.01323,0,0,0,0.02299,0.0241,0.02573,0.03027,0,0,0.0136,0,0,0,0.02485,0.02602,0.02776,0.03262,0,0,0.01483,0,0,0,0.02139,0.02263,0.02449,0.02977,0,0,0.01239,0,0,0,0.02405,0.02493,0.02621,0.02959,0,0,0.01444,0,0,0,0.02235,0.02329,0.02466,0.02835,0,0,0.01317,0,0,0,0.02221,0.02308,0.02433,0.02765,0,0,0.01318,0,0,0,0.02335,0.02434,0.0258,0.02974,0,0,0.01388,0,0,0,0.02285,0.02372,0.02497,0.02825,0,0,0.01372,0,0,0,0.00491,0.00596,0.00752,0.01189,0,0,0.00245,0,0,0,0.00488,0.00586,0.00731,0.01132,0,0,0.00247,0,0,0,0.0052,0.00623,0.00777,0.01207,0,0,0.00264,0,0,0,0.00484,0.00594,0.00758,0.01225,0,0,0.00236,0,0,0,0.00473,0.00551,0.00664,0.00963,0,0,0.00248,0,0,0,0.00458,0.00541,0.00662,0.00988,0,0,0.00233,0,0,0,0.00448,0.00525,0.00636,0.00929,0,0,0.00229,0,0,0,0.00478,0.00566,0.00695,0.01044,0,0,0.00244,0,0,0,0.00456,0.00534,0.00644,0.00935,0,0,0.00234,0,0,0,0.00181,0.00183,0.00184,0.00195,0,0,0,0,0,0,0.00183,0.00184,0.00185,0.00196,0,0,0,0,0,0,0.00186,0.00187,0.00188,0.00199,0,0,0,0,0,0,0.00181,0.00183,0.00184,0.00195,0,0,0,0,0,0,0.00186,0.00187,0.00187,0.00197,0,0,0,0,0,0,0.00183,0.00184,0.00185,0.00195,0,0,0,0,0,0,0.00184,0.00185,0.00185,0.00195,0,0,0,0,0,0,0.00184,0.00185,0.00186,0.00196,0,0,0,0,0,0,0.00181,0.00182,0.00182,0.00192,0,0,0,0,0,0,0.05751,0.08009,0.10933,0.15277,0,0,0,0,0,0,0.05049,0.07184,0.09968,0.14055,0,0,0,0,0,0,0.05674,0.08348,0.11595,0.16607,0,0,0,0,0,0,0.0646,0.09448,0.13061,0.18624,0,0,0,0,0,0,0.03085,0.05264,0.0791,0.11835,0,0,0,0,0,0,0.03689,0.06087,0.08985,0.13352,0,0,0,0,0,0,0.02959,0.05085,0.07695,0.11523,0,0,0,0,0,0,0.04061,0.06322,0.09092,0.1322,0,0,0,0,0,0,0.02822,0.04652,0.06911,0.1011,0,0,0 +Mini car,PH20E,2025,0,0,0,0,0.00891,0.0091,0.00943,0.01044,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.01054,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01145,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.01011,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01061,0,0,0,0,0,0,0.00895,0.00909,0.00931,0.01,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.0098,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.01049,0,0,0,0,0,0,0.00917,0.00929,0.00948,0.01004,0,0,0,0,0,0,0.01646,0.01042,0.00825,0.00951,0,0,0,0,0,0,0.01428,0.00923,0.00743,0.00866,0,0,0,0,0,0,0.01613,0.01076,0.00867,0.01023,0,0,0,0,0,0,0.01849,0.01227,0.00983,0.01153,0,0,0,0,0,0,0.00813,0.00631,0.00557,0.0069,0,0,0,0,0,0,0.00993,0.00744,0.00642,0.00789,0,0,0,0,0,0,0.00776,0.00609,0.00542,0.00673,0,0,0,0,0,0,0.01116,0.00787,0.0066,0.00793,0,0,0,0,0,0,0.00741,0.00556,0.00486,0.0059,0,0,0,0,0,0,0.75977,1.09437,1.37594,1.80954,0,0,0,0,0,0,0.72539,1.06099,1.34422,1.77368,0,0,0,0,0,0,0.76744,1.17844,1.52259,2.0404,0,0,0,0,0,0,0.84623,1.29818,1.68202,2.2398,0,0,0,0,0,0,0.62229,1.03444,1.362,1.8359,0,0,0,0,0,0,0.66135,1.09002,1.437,1.94186,0,0,0,0,0,0,0.63941,1.06084,1.39482,1.87282,0,0,0,0,0,0,0.68195,1.07383,1.38675,1.85096,0,0,0,0,0,0,0.57488,0.91351,1.17012,1.55123,0,0,0,0,0,0,152.36465,153.50191,154.82652,164.50535,0,0,0,0,0,0,153.58834,154.61849,155.78586,165.25795,0,0,0,0,0,0,156.1607,157.24222,158.48023,168.19884,0,0,0,0,0,0,152.54515,153.70376,155.0678,164.82885,0,0,0,0,0,0,155.94419,156.58035,157.17563,165.79156,0,0,0,0,0,0,153.597,154.38248,155.20063,164.08166,0,0,0,0,0,0,154.43019,155.03481,155.59115,164.06944,0,0,0,0,0,0,154.7848,155.59219,156.43647,165.41868,0,0,0,0,0,0,151.6512,152.33002,152.98252,161.47709,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00493,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00358,0.00407,0.00496,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00496,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00488,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03284,0.04792,0.06373,0.08692,0,0,0,0,0,0,0.03178,0.04661,0.06221,0.08511,0,0,0,0,0,0,0.03261,0.05045,0.067,0.09315,0,0,0,0,0,0,0.03478,0.05453,0.07244,0.10081,0,0,0,0,0,0,0.02585,0.04281,0.05808,0.08211,0,0,0,0,0,0,0.02881,0.0469,0.06325,0.08898,0,0,0,0,0,0,0.02634,0.04321,0.05873,0.08252,0,0,0,0,0,0,0.03016,0.04773,0.06397,0.08886,0,0,0,0,0,0,0.02579,0.0408,0.055,0.07589,0,0,0.02972,0,0,0,0.00078,0.0011,0.00163,0.00309,0,0,0.02595,0,0,0,0.00074,0.00105,0.00154,0.00291,0,0,0.02894,0,0,0,0.00077,0.00109,0.00161,0.00306,0,0,0.03187,0,0,0,0.0008,0.00113,0.00168,0.00322,0,0,0.01548,0,0,0,0.00065,0.00091,0.00131,0.00238,0,0,0.0181,0,0,0,0.00067,0.00094,0.00136,0.00251,0,0,0.01486,0,0,0,0.00065,0.0009,0.00129,0.00235,0,0,0.02058,0,0,0,0.0007,0.00098,0.00142,0.00264,0,0,0.01471,0,0,0,0.00065,0.0009,0.0013,0.00235,0,0,0.07884,0,0,0,0.02155,0.02227,0.02346,0.02687,0,0,0.07061,0,0,0,0.02214,0.02282,0.02393,0.02706,0,0,0.07915,0,0,0,0.02397,0.02469,0.02586,0.02921,0,0,0.08344,0,0,0,0.02047,0.02123,0.02248,0.0261,0,0,0.04768,0,0,0,0.02333,0.02388,0.02474,0.02711,0,0,0.05242,0,0,0,0.0216,0.02218,0.02311,0.02568,0,0,0.045,0,0,0,0.0215,0.02204,0.02289,0.02521,0,0,0.0588,0,0,0,0.02256,0.02318,0.02416,0.02691,0,0,0.04492,0,0,0,0.02213,0.02267,0.02352,0.02582,0,0,0.0605,0,0,0,0.00412,0.00476,0.00581,0.00883,0,0,0.05289,0,0,0,0.00413,0.00473,0.00571,0.00848,0,0,0.05954,0,0,0,0.00441,0.00505,0.00609,0.00905,0,0,0.06521,0,0,0,0.00403,0.0047,0.00581,0.00901,0,0,0.03188,0,0,0,0.00409,0.00458,0.00534,0.00744,0,0,0.03705,0,0,0,0.00392,0.00443,0.00525,0.00752,0,0,0.03044,0,0,0,0.00385,0.00433,0.00508,0.00713,0,0,0.04218,0,0,0,0.00409,0.00463,0.0055,0.00793,0,0,0.02994,0,0,0,0.00393,0.00441,0.00516,0.0072,0,0,0,0,0,0,0.00147,0.00148,0.00149,0.00158,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00159,0,0,0,0,0,0,0.0015,0.00151,0.00153,0.00162,0,0,0,0,0,0,0.00147,0.00148,0.00149,0.00159,0,0,0,0,0,0,0.0015,0.00151,0.00151,0.0016,0,0,0,0,0,0,0.00148,0.00149,0.00149,0.00158,0,0,0,0,0,0,0.00149,0.00149,0.0015,0.00158,0,0,0,0,0,0,0.00149,0.0015,0.00151,0.00159,0,0,0,0,0,0,0.00146,0.00147,0.00147,0.00155,0,0,0,0,0,0,0.05107,0.06655,0.08762,0.12016,0,0,0,0,0,0,0.04383,0.0581,0.07766,0.10776,0,0,0,0,0,0,0.04998,0.06772,0.09055,0.12714,0,0,0,0,0,0,0.05765,0.07769,0.10335,0.14422,0,0,0,0,0,0,0.02357,0.03658,0.0534,0.08002,0,0,0,0,0,0,0.02952,0.04418,0.06301,0.09313,0,0,0,0,0,0,0.02227,0.03489,0.05137,0.07725,0,0,0,0,0,0,0.03353,0.04774,0.06623,0.09533,0,0,0,0,0,0,0.02117,0.03207,0.04644,0.06826,0,0 +Mini car,PH20E,2030,0,0,0,0,0,0.00891,0.0091,0.00943,0.01017,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.0103,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01119,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.00983,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01045,0,0,0,0,0,0,0.00895,0.00908,0.00931,0.00982,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.00964,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.0103,0,0,0,0,0,0,0.00917,0.00928,0.00948,0.00989,0,0,0,0,0,0,0.01565,0.00964,0.00754,0.00839,0,0,0,0,0,0,0.01346,0.00844,0.00672,0.00752,0,0,0,0,0,0,0.01529,0.00984,0.00784,0.00884,0,0,0,0,0,0,0.01762,0.01128,0.00894,0.01003,0,0,0,0,0,0,0.00728,0.0054,0.00474,0.00551,0,0,0,0,0,0,0.00907,0.00648,0.00555,0.00642,0,0,0,0,0,0,0.00691,0.00517,0.00459,0.00535,0,0,0,0,0,0,0.01032,0.00699,0.0058,0.00661,0,0,0,0,0,0,0.00658,0.00475,0.00413,0.00473,0,0,0,0,0,0,0.68991,0.98783,1.25114,1.56897,0,0,0,0,0,0,0.65302,0.95108,1.21479,1.5237,0,0,0,0,0,0,0.69303,1.05682,1.37604,1.7436,0,0,0,0,0,0,0.76834,1.16966,1.52624,1.9256,0,0,0,0,0,0,0.54262,0.90501,1.20539,1.52304,0,0,0,0,0,0,0.58203,0.95975,1.2786,1.62137,0,0,0,0,0,0,0.55709,0.92822,1.23471,1.55536,0,0,0,0,0,0,0.60438,0.95077,1.23954,1.56029,0,0,0,0,0,0,0.50159,0.80041,1.03648,1.29463,0,0,0,0,0,0,140.214,141.62946,143.82234,150.01186,0,0,0,0,0,0,141.30614,142.62509,144.67458,150.64323,0,0,0,0,0,0,143.68417,145.05706,147.19002,153.34273,0,0,0,0,0,0,140.39401,141.83003,144.06344,150.33026,0,0,0,0,0,0,143.35366,144.31354,145.82695,150.93492,0,0,0,0,0,0,141.24503,142.33764,144.0513,149.45908,0,0,0,0,0,0,141.95728,142.88464,144.35193,149.36008,0,0,0,0,0,0,142.33962,143.45512,145.20099,150.68036,0,0,0,0,0,0,139.41384,140.40222,141.94251,147.0167,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.0049,0,0,0,0,0,0,0.00323,0.00356,0.00406,0.00492,0,0,0,0,0,0,0.00321,0.00354,0.00406,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00353,0.00405,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00485,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.02896,0.04137,0.05596,0.07394,0,0,0,0,0,0,0.02783,0.03999,0.05437,0.07198,0,0,0,0,0,0,0.02853,0.04308,0.05835,0.07814,0,0,0,0,0,0,0.03055,0.04674,0.0633,0.08478,0,0,0,0,0,0,0.02185,0.03555,0.04951,0.06714,0,0,0,0,0,0,0.02472,0.03941,0.05442,0.0735,0,0,0,0,0,0,0.02231,0.03597,0.05016,0.0677,0,0,0,0,0,0,0.02586,0.04013,0.05504,0.07363,0,0,0,0,0,0,0.02179,0.03396,0.04694,0.06248,0,0.00804,0.0176,0,0,0,0.00078,0.0011,0.00162,0.0027,0,0.00704,0.01536,0,0,0,0.00074,0.00105,0.00154,0.00254,0,0.0078,0.01712,0,0,0,0.00077,0.00109,0.00161,0.00267,0,0.00855,0.01878,0,0,0,0.00079,0.00113,0.00168,0.00281,0,0.00423,0.00912,0,0,0,0.00065,0.0009,0.00131,0.00209,0,0.00492,0.01064,0,0,0,0.00067,0.00094,0.00136,0.0022,0,0.00408,0.00876,0,0,0,0.00064,0.0009,0.00129,0.00206,0,0.0056,0.01216,0,0,0,0.0007,0.00098,0.00142,0.00231,0,0.00407,0.00872,0,0,0,0.00065,0.0009,0.0013,0.00207,0,0.03,0.0515,0,0,0,0.02154,0.02227,0.02346,0.02596,0,0.02817,0.04676,0,0,0,0.02214,0.02282,0.02392,0.02622,0,0.03124,0.0521,0,0,0,0.02397,0.02468,0.02585,0.02831,0,0.03047,0.05365,0,0,0,0.02047,0.02122,0.02248,0.02514,0,0.02282,0.03352,0,0,0,0.02333,0.02387,0.02474,0.02647,0,0.0231,0.03567,0,0,0,0.0216,0.02217,0.0231,0.02499,0,0.02125,0.0315,0,0,0,0.0215,0.02203,0.02288,0.02458,0,0.02532,0.03993,0,0,0,0.02256,0.02317,0.02416,0.02617,0,0.02169,0.03186,0,0,0,0.02213,0.02267,0.02352,0.0252,0,0.01729,0.03631,0,0,0,0.00412,0.00476,0.00581,0.00802,0,0.01535,0.0318,0,0,0,0.00413,0.00473,0.00571,0.00774,0,0.01715,0.03561,0,0,0,0.00441,0.00504,0.00608,0.00826,0,0.01835,0.03886,0,0,0,0.00402,0.00469,0.0058,0.00815,0,0.0099,0.01936,0,0,0,0.00409,0.00457,0.00534,0.00687,0,0.01112,0.02224,0,0,0,0.00392,0.00443,0.00525,0.00691,0,0.00943,0.0185,0,0,0,0.00385,0.00432,0.00508,0.00658,0,0.01256,0.02549,0,0,0,0.00409,0.00463,0.0055,0.00728,0,0.00939,0.01839,0,0,0,0.00393,0.00441,0.00516,0.00665,0,0,0,0,0,0,0.00135,0.00136,0.00138,0.00144,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00145,0,0,0,0,0,0,0.00138,0.0014,0.00142,0.00148,0,0,0,0,0,0,0.00135,0.00137,0.00139,0.00145,0,0,0,0,0,0,0.00138,0.00139,0.0014,0.00145,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00144,0,0,0,0,0,0,0.00137,0.00138,0.00139,0.00144,0,0,0,0,0,0,0.00137,0.00138,0.0014,0.00145,0,0,0,0,0,0,0.00134,0.00135,0.00137,0.00142,0,0,0,0,0,0,0.04872,0.06208,0.0814,0.1074,0,0,0,0,0,0,0.04147,0.05363,0.07138,0.09484,0,0,0,0,0,0,0.04753,0.06256,0.0833,0.11141,0,0,0,0,0,0,0.05508,0.07215,0.09555,0.12727,0,0,0,0,0,0,0.02115,0.03156,0.04617,0.06443,0,0,0,0,0,0,0.02703,0.03891,0.05544,0.07663,0,0,0,0,0,0,0.01986,0.0299,0.04418,0.06182,0,0,0,0,0,0,0.03111,0.04282,0.05924,0.08048,0,0,0,0,0,0,0.01885,0.02758,0.04006,0.05519,0 +Mini car,PH20E,2035,0,0,0,0,0,0,0.00891,0.0091,0.00943,0.01014,0,0,0,0,0,0,0.00917,0.00934,0.00964,0.01028,0,0,0,0,0,0,0.00995,0.01014,0.01046,0.01116,0,0,0,0,0,0,0.00845,0.00866,0.00902,0.00979,0,0,0,0,0,0,0.00969,0.00981,0.01001,0.01043,0,0,0,0,0,0,0.00895,0.00908,0.00931,0.0098,0,0,0,0,0,0,0.0089,0.00902,0.00922,0.00963,0,0,0,0,0,0,0.00935,0.0095,0.00975,0.01028,0,0,0,0,0,0,0.00917,0.00929,0.00948,0.00988,0,0,0,0,0,0,0.01554,0.00963,0.00755,0.00823,0,0,0,0,0,0,0.01337,0.00843,0.00672,0.00735,0,0,0,0,0,0,0.01519,0.00983,0.00785,0.00862,0,0,0,0,0,0,0.0175,0.01127,0.00894,0.0098,0,0,0,0,0,0,0.00724,0.0054,0.00474,0.00529,0,0,0,0,0,0,0.00901,0.00648,0.00556,0.00619,0,0,0,0,0,0,0.00687,0.00517,0.00459,0.00512,0,0,0,0,0,0,0.01025,0.00698,0.0058,0.0064,0,0,0,0,0,0,0.00654,0.00475,0.00413,0.00455,0,0,0,0,0,0,0.6906,0.98874,1.25175,1.53505,0,0,0,0,0,0,0.65398,0.952,1.21532,1.48797,0,0,0,0,0,0,0.69414,1.05795,1.37665,1.70066,0,0,0,0,0,0,0.7695,1.1709,1.52692,1.88004,0,0,0,0,0,0,0.54446,0.90609,1.20574,1.47635,0,0,0,0,0,0,0.5838,0.96088,1.27901,1.5737,0,0,0,0,0,0,0.55902,0.92931,1.23503,1.50798,0,0,0,0,0,0,0.60588,0.95176,1.23999,1.51762,0,0,0,0,0,0,0.50313,0.8012,1.0368,1.25668,0,0,0,0,0,0,140.18071,141.63643,143.83542,147.87949,0,0,0,0,0,0,141.27495,142.63166,144.68655,148.49033,0,0,0,0,0,0,143.65151,145.06398,147.20295,151.15537,0,0,0,0,0,0,140.35972,141.83708,144.07674,148.1984,0,0,0,0,0,0,143.32919,144.31795,145.83515,148.73565,0,0,0,0,0,0,141.21783,142.34288,144.06119,147.2991,0,0,0,0,0,0,141.93368,142.889,144.3599,147.18226,0,0,0,0,0,0,142.31228,143.46052,145.2111,148.50336,0,0,0,0,0,0,139.39026,140.40716,141.95155,144.87724,0,0,0,0,0,0,0.00318,0.00352,0.00403,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00355,0.00407,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02894,0.04147,0.056,0.072,0,0,0,0,0,0,0.02782,0.04009,0.05441,0.07001,0,0,0,0,0,0,0.02853,0.04319,0.05839,0.07583,0,0,0,0,0,0,0.03056,0.04686,0.06334,0.08231,0,0,0,0,0,0,0.02187,0.03565,0.04954,0.0648,0,0,0,0,0,0,0.02473,0.03952,0.05445,0.07109,0,0,0,0,0,0,0.02233,0.03607,0.05019,0.06539,0,0,0,0,0,0,0.02587,0.04024,0.05507,0.07127,0,0,0,0,0,0,0.0218,0.03405,0.04697,0.06042,0.00443,0.00621,0.01228,0,0,0,0.00078,0.0011,0.00163,0.00265,0.00389,0.00543,0.0107,0,0,0,0.00074,0.00105,0.00154,0.0025,0.00424,0.00593,0.01183,0,0,0,0.00077,0.00109,0.00161,0.00262,0.00462,0.00648,0.013,0,0,0,0.0008,0.00113,0.00168,0.00276,0.00235,0.00327,0.00634,0,0,0,0.00065,0.00091,0.00131,0.00206,0.00271,0.00377,0.00766,0,0,0,0.00067,0.00094,0.00136,0.00216,0.0023,0.00319,0.00613,0,0,0,0.00064,0.0009,0.00129,0.00203,0.0031,0.00432,0.00847,0,0,0,0.0007,0.00098,0.00142,0.00228,0.00234,0.00325,0.00617,0,0,0,0.00065,0.0009,0.0013,0.00203,0.02178,0.0256,0.03946,0,0,0,0.02154,0.02227,0.02346,0.02585,0.02101,0.02431,0.03627,0,0,0,0.02214,0.02282,0.02393,0.02613,0.02307,0.02667,0.04014,0,0,0,0.02397,0.02468,0.02586,0.02821,0.02144,0.02547,0.04035,0,0,0,0.02047,0.02123,0.02248,0.02503,0.01864,0.02054,0.02737,0,0,0,0.02333,0.02388,0.02474,0.0264,0.01813,0.02033,0.02911,0,0,0,0.0216,0.02218,0.02311,0.02491,0.01729,0.01915,0.02566,0,0,0,0.0215,0.02204,0.02289,0.02451,0.01968,0.02228,0.03157,0,0,0,0.02256,0.02318,0.02416,0.02608,0.01787,0.01977,0.02623,0,0,0,0.02213,0.02267,0.02352,0.02513,0.01002,0.0134,0.02566,0,0,0,0.00412,0.00476,0.00581,0.00793,0.00902,0.01194,0.02252,0,0,0,0.00413,0.00473,0.00571,0.00766,0.00993,0.01311,0.02503,0,0,0,0.00441,0.00505,0.00609,0.00817,0.01036,0.01393,0.0271,0,0,0,0.00402,0.0047,0.0058,0.00806,0.00619,0.00787,0.01392,0,0,0,0.00409,0.00458,0.00534,0.00681,0.00672,0.00867,0.01639,0,0,0,0.00392,0.00443,0.00525,0.00684,0.00592,0.00757,0.01333,0,0,0,0.00385,0.00433,0.00508,0.00651,0.00757,0.00987,0.01809,0,0,0,0.00409,0.00463,0.0055,0.0072,0.00601,0.0077,0.01341,0,0,0,0.00393,0.00441,0.00516,0.00658,0,0,0,0,0,0,0.00135,0.00136,0.00138,0.00142,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00143,0,0,0,0,0,0,0.00138,0.0014,0.00142,0.00145,0,0,0,0,0,0,0.00135,0.00137,0.00139,0.00143,0,0,0,0,0,0,0.00138,0.00139,0.0014,0.00143,0,0,0,0,0,0,0.00136,0.00137,0.00139,0.00142,0,0,0,0,0,0,0.00137,0.00138,0.00139,0.00142,0,0,0,0,0,0,0.00137,0.00138,0.0014,0.00143,0,0,0,0,0,0,0.00134,0.00135,0.00137,0.00139,0,0,0,0,0,0,0.04861,0.06217,0.08148,0.1056,0,0,0,0,0,0,0.04138,0.05371,0.07145,0.09297,0,0,0,0,0,0,0.04743,0.06266,0.08338,0.10905,0,0,0,0,0,0,0.05496,0.07226,0.09564,0.12474,0,0,0,0,0,0,0.02113,0.03163,0.04621,0.0619,0,0,0,0,0,0,0.02699,0.03899,0.05549,0.07397,0,0,0,0,0,0,0.01983,0.02997,0.04422,0.05931,0,0,0,0,0,0,0.03105,0.04289,0.05929,0.07816,0,0,0,0,0,0,0.01883,0.02764,0.04009,0.05312 +Mini car,PH20E,2040,0,0,0,0,0,0,0,0.00891,0.0091,0.00943,0,0,0,0,0,0,0,0.00917,0.00934,0.00964,0,0,0,0,0,0,0,0.00995,0.01014,0.01046,0,0,0,0,0,0,0,0.00845,0.00866,0.00902,0,0,0,0,0,0,0,0.00969,0.00981,0.01001,0,0,0,0,0,0,0,0.00895,0.00908,0.00931,0,0,0,0,0,0,0,0.0089,0.00902,0.00922,0,0,0,0,0,0,0,0.00935,0.0095,0.00975,0,0,0,0,0,0,0,0.00917,0.00929,0.00948,0,0,0,0,0,0,0,0.01555,0.00963,0.00754,0,0,0,0,0,0,0,0.01337,0.00843,0.00672,0,0,0,0,0,0,0,0.0152,0.00983,0.00784,0,0,0,0,0,0,0,0.0175,0.01127,0.00894,0,0,0,0,0,0,0,0.00724,0.00539,0.00474,0,0,0,0,0,0,0,0.00902,0.00648,0.00556,0,0,0,0,0,0,0,0.00687,0.00517,0.00459,0,0,0,0,0,0,0,0.01025,0.00698,0.0058,0,0,0,0,0,0,0,0.00655,0.00474,0.00413,0,0,0,0,0,0,0,0.68967,0.98799,1.25142,0,0,0,0,0,0,0,0.65306,0.95129,1.21504,0,0,0,0,0,0,0,0.69309,1.0571,1.37632,0,0,0,0,0,0,0,0.76834,1.16995,1.52655,0,0,0,0,0,0,0,0.54352,0.9054,1.20554,0,0,0,0,0,0,0,0.58281,0.96014,1.27878,0,0,0,0,0,0,0,0.55808,0.92863,1.23485,0,0,0,0,0,0,0,0.60492,0.95106,1.23974,0,0,0,0,0,0,0,0.50232,0.80066,1.03662,0,0,0,0,0,0,0,140.17161,141.62501,143.82832,0,0,0,0,0,0,0,141.26637,142.62104,144.68017,0,0,0,0,0,0,0,143.64257,145.05267,147.19581,0,0,0,0,0,0,0,140.35036,141.82531,144.06944,0,0,0,0,0,0,0,143.32286,144.31005,145.83048,0,0,0,0,0,0,0,141.21063,142.33383,144.05576,0,0,0,0,0,0,0,141.92742,142.88115,144.35542,0,0,0,0,0,0,0,142.3049,143.45131,145.20539,0,0,0,0,0,0,0,139.38365,140.39906,141.94661,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01384,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01382,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01382,0.01777,0,0,0,0,0,0,0,0.01189,0.01385,0.0178,0,0,0,0,0,0,0,0.02891,0.04141,0.05598,0,0,0,0,0,0,0,0.02779,0.04004,0.05439,0,0,0,0,0,0,0,0.02849,0.04313,0.05837,0,0,0,0,0,0,0,0.03052,0.04679,0.06332,0,0,0,0,0,0,0,0.02183,0.0356,0.04953,0,0,0,0,0,0,0,0.0247,0.03945,0.05443,0,0,0,0,0,0,0,0.0223,0.03601,0.05018,0,0,0,0,0,0,0,0.02583,0.04018,0.05505,0,0,0,0,0,0,0,0.02177,0.034,0.04695,0.00151,0.00244,0.00331,0.00742,0,0,0,0.00078,0.0011,0.00162,0.00139,0.00217,0.00294,0.00654,0,0,0,0.00074,0.00105,0.00154,0.0016,0.00201,0.00271,0.00711,0,0,0,0.00077,0.00109,0.00161,0.00166,0.00245,0.00334,0.00776,0,0,0,0.00079,0.00113,0.00168,0.00097,0.00153,0.00209,0.00412,0,0,0,0.00065,0.00091,0.00131,0.00109,0.00157,0.00215,0.00465,0,0,0,0.00067,0.00094,0.00136,0.00095,0.00145,0.00196,0.00392,0,0,0,0.00064,0.0009,0.00129,0.00119,0.00172,0.00233,0.00524,0,0,0,0.0007,0.00098,0.00142,0.00087,0.00131,0.00176,0.00388,0,0,0,0.00065,0.0009,0.0013,0.01549,0.01744,0.01941,0.02867,0,0,0,0.02154,0.02227,0.02346,0.01563,0.01726,0.01899,0.02706,0,0,0,0.02214,0.02282,0.02392,0.01735,0.01812,0.01967,0.02962,0,0,0,0.02396,0.02468,0.02586,0.015,0.01667,0.01865,0.02868,0,0,0,0.02047,0.02123,0.02248,0.01568,0.01683,0.01804,0.02251,0,0,0,0.02333,0.02387,0.02474,0.01466,0.01562,0.01693,0.02244,0,0,0,0.0216,0.02218,0.02311,0.0144,0.01542,0.01652,0.02082,0,0,0,0.0215,0.02203,0.02289,0.01557,0.01666,0.01798,0.02446,0,0,0,0.02256,0.02317,0.02416,0.01478,0.01567,0.01663,0.02127,0,0,0,0.02213,0.02267,0.02352,0.00445,0.00618,0.00792,0.01611,0,0,0,0.00412,0.00476,0.00581,0.00426,0.0057,0.00723,0.01437,0,0,0,0.00413,0.00473,0.00571,0.00486,0.00555,0.00692,0.01572,0,0,0,0.00441,0.00505,0.00608,0.00466,0.00614,0.0079,0.01677,0,0,0,0.00402,0.00469,0.0058,0.00358,0.00459,0.00566,0.00961,0,0,0,0.00409,0.00457,0.00534,0.00365,0.0045,0.00562,0.01053,0,0,0,0.00392,0.00443,0.00525,0.00337,0.00427,0.00524,0.00904,0,0,0,0.00385,0.00432,0.00508,0.00393,0.0049,0.00606,0.0118,0,0,0,0.00409,0.00463,0.0055,0.00328,0.00406,0.00491,0.00902,0,0,0,0.00393,0.00441,0.00516,0,0,0,0,0,0,0,0.00135,0.00136,0.00138,0,0,0,0,0,0,0,0.00136,0.00137,0.00139,0,0,0,0,0,0,0,0.00138,0.0014,0.00142,0,0,0,0,0,0,0,0.00135,0.00137,0.00139,0,0,0,0,0,0,0,0.00138,0.00139,0.0014,0,0,0,0,0,0,0,0.00136,0.00137,0.00139,0,0,0,0,0,0,0,0.00137,0.00138,0.00139,0,0,0,0,0,0,0,0.00137,0.00138,0.0014,0,0,0,0,0,0,0,0.00134,0.00135,0.00137,0,0,0,0,0,0,0,0.04855,0.06209,0.08144,0,0,0,0,0,0,0,0.04133,0.05364,0.07141,0,0,0,0,0,0,0,0.04737,0.06257,0.08334,0,0,0,0,0,0,0,0.0549,0.07216,0.09559,0,0,0,0,0,0,0,0.0211,0.03158,0.04619,0,0,0,0,0,0,0,0.02696,0.03893,0.05546,0,0,0,0,0,0,0,0.01981,0.02992,0.04419,0,0,0,0,0,0,0,0.03101,0.04283,0.05926,0,0,0,0,0,0,0,0.0188,0.0276,0.04007 +Mini car,PH20E,2045,0,0,0,0,0,0,0,0,0.00891,0.0091,0,0,0,0,0,0,0,0,0.00917,0.00934,0,0,0,0,0,0,0,0,0.00995,0.01014,0,0,0,0,0,0,0,0,0.00845,0.00866,0,0,0,0,0,0,0,0,0.00969,0.00981,0,0,0,0,0,0,0,0,0.00895,0.00908,0,0,0,0,0,0,0,0,0.0089,0.00902,0,0,0,0,0,0,0,0,0.00935,0.0095,0,0,0,0,0,0,0,0,0.00917,0.00929,0,0,0,0,0,0,0,0,0.01555,0.00963,0,0,0,0,0,0,0,0,0.01337,0.00843,0,0,0,0,0,0,0,0,0.0152,0.00983,0,0,0,0,0,0,0,0,0.01751,0.01127,0,0,0,0,0,0,0,0,0.00724,0.00539,0,0,0,0,0,0,0,0,0.00902,0.00648,0,0,0,0,0,0,0,0,0.00687,0.00517,0,0,0,0,0,0,0,0,0.01025,0.00698,0,0,0,0,0,0,0,0,0.00655,0.00474,0,0,0,0,0,0,0,0,0.68909,0.98782,0,0,0,0,0,0,0,0,0.65249,0.95112,0,0,0,0,0,0,0,0,0.69245,1.05689,0,0,0,0,0,0,0,0,0.76762,1.16973,0,0,0,0,0,0,0,0,0.54297,0.90522,0,0,0,0,0,0,0,0,0.58222,0.95995,0,0,0,0,0,0,0,0,0.55752,0.92845,0,0,0,0,0,0,0,0,0.60434,0.95089,0,0,0,0,0,0,0,0,0.50184,0.80053,0,0,0,0,0,0,0,0,140.16436,141.62251,0,0,0,0,0,0,0,0,141.26016,142.61938,0,0,0,0,0,0,0,0,143.6355,145.05032,0,0,0,0,0,0,0,0,140.34307,141.82301,0,0,0,0,0,0,0,0,143.31757,144.30801,0,0,0,0,0,0,0,0,141.20516,142.33212,0,0,0,0,0,0,0,0,141.92227,142.87943,0,0,0,0,0,0,0,0,142.29936,143.4497,0,0,0,0,0,0,0,0,139.37818,140.39683,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02889,0.04139,0,0,0,0,0,0,0,0,0.02777,0.04002,0,0,0,0,0,0,0,0,0.02847,0.04311,0,0,0,0,0,0,0,0,0.03049,0.04677,0,0,0,0,0,0,0,0,0.02182,0.03558,0,0,0,0,0,0,0,0,0.02467,0.03944,0,0,0,0,0,0,0,0,0.02228,0.036,0,0,0,0,0,0,0,0,0.02581,0.04016,0,0,0,0,0,0,0,0,0.02176,0.03398,0,0.0009,0.00153,0.00214,0.00533,0,0,0,0.00078,0.0011,0,0.00084,0.00142,0.00199,0.00478,0,0,0,0.00074,0.00105,0,0.00077,0.00129,0.00208,0.00511,0,0,0,0.00077,0.00109,0,0.00091,0.00154,0.0022,0.00554,0,0,0,0.00079,0.00113,0,0.00074,0.00122,0.00162,0.0033,0,0,0,0.00065,0.00091,0,0.00072,0.00119,0.00169,0.0036,0,0,0,0.00067,0.00094,0,0.0007,0.00115,0.00153,0.00311,0,0,0,0.00064,0.0009,0,0.00073,0.00122,0.00176,0.00394,0,0,0,0.0007,0.00098,0,0.00063,0.00102,0.00147,0.00302,0,0,0,0.00065,0.0009,0,0.01426,0.01567,0.01709,0.02426,0,0,0,0.02154,0.02227,0,0.01452,0.0158,0.01712,0.02335,0,0,0,0.02214,0.02282,0,0.01555,0.01671,0.01856,0.0254,0,0,0,0.02396,0.02468,0,0.01343,0.01487,0.01641,0.02397,0,0,0,0.02047,0.02123,0,0.01519,0.01622,0.0171,0.02079,0,0,0,0.02333,0.02387,0,0.01387,0.01493,0.01598,0.02023,0,0,0,0.0216,0.02218,0,0.01389,0.01484,0.01565,0.0191,0,0,0,0.0215,0.02203,0,0.01461,0.01566,0.01687,0.02171,0,0,0,0.02256,0.02317,0,0.01427,0.01511,0.01607,0.01946,0,0,0,0.02213,0.02267,0,0.00336,0.00462,0.00587,0.01221,0,0,0,0.00412,0.00476,0,0.00328,0.00441,0.00558,0.01109,0,0,0,0.00413,0.00473,0,0.00328,0.0043,0.00593,0.01199,0,0,0,0.00441,0.00505,0,0.00328,0.00455,0.00592,0.0126,0,0,0,0.00402,0.00469,0,0.00314,0.00405,0.00483,0.00809,0,0,0,0.00409,0.00457,0,0.00295,0.00385,0.00482,0.00858,0,0,0,0.00391,0.00443,0,0.00291,0.00376,0.00448,0.00752,0,0,0,0.00385,0.00432,0,0.00308,0.00401,0.00508,0.00937,0,0,0,0.00409,0.00463,0,0.00283,0.00357,0.00442,0.00742,0,0,0,0.00393,0.00441,0,0,0,0,0,0,0,0,0.00135,0.00136,0,0,0,0,0,0,0,0,0.00136,0.00137,0,0,0,0,0,0,0,0,0.00138,0.0014,0,0,0,0,0,0,0,0,0.00135,0.00137,0,0,0,0,0,0,0,0,0.00138,0.00139,0,0,0,0,0,0,0,0,0.00136,0.00137,0,0,0,0,0,0,0,0,0.00137,0.00138,0,0,0,0,0,0,0,0,0.00137,0.00138,0,0,0,0,0,0,0,0,0.00134,0.00135,0,0,0,0,0,0,0,0,0.04852,0.06207,0,0,0,0,0,0,0,0,0.0413,0.05362,0,0,0,0,0,0,0,0,0.04734,0.06256,0,0,0,0,0,0,0,0,0.05486,0.07214,0,0,0,0,0,0,0,0,0.02108,0.03157,0,0,0,0,0,0,0,0,0.02693,0.03892,0,0,0,0,0,0,0,0,0.01979,0.02991,0,0,0,0,0,0,0,0,0.03099,0.04282,0,0,0,0,0,0,0,0,0.01878,0.02758 +Mini car,PH20E,2050,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00917,0,0,0,0,0,0,0,0,0,0.00995,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00969,0,0,0,0,0,0,0,0,0,0.00895,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00935,0,0,0,0,0,0,0,0,0,0.00917,0,0,0,0,0,0,0,0,0,0.01555,0,0,0,0,0,0,0,0,0,0.01337,0,0,0,0,0,0,0,0,0,0.0152,0,0,0,0,0,0,0,0,0,0.01751,0,0,0,0,0,0,0,0,0,0.00724,0,0,0,0,0,0,0,0,0,0.00902,0,0,0,0,0,0,0,0,0,0.00687,0,0,0,0,0,0,0,0,0,0.01025,0,0,0,0,0,0,0,0,0,0.00655,0,0,0,0,0,0,0,0,0,0.68909,0,0,0,0,0,0,0,0,0,0.6525,0,0,0,0,0,0,0,0,0,0.69245,0,0,0,0,0,0,0,0,0,0.76762,0,0,0,0,0,0,0,0,0,0.54297,0,0,0,0,0,0,0,0,0,0.58222,0,0,0,0,0,0,0,0,0,0.55752,0,0,0,0,0,0,0,0,0,0.60434,0,0,0,0,0,0,0,0,0,0.50184,0,0,0,0,0,0,0,0,0,140.16429,0,0,0,0,0,0,0,0,0,141.26014,0,0,0,0,0,0,0,0,0,143.63545,0,0,0,0,0,0,0,0,0,140.34316,0,0,0,0,0,0,0,0,0,143.31749,0,0,0,0,0,0,0,0,0,141.20514,0,0,0,0,0,0,0,0,0,141.92222,0,0,0,0,0,0,0,0,0,142.29935,0,0,0,0,0,0,0,0,0,139.37818,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02889,0,0,0,0,0,0,0,0,0,0.02777,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.03049,0,0,0,0,0,0,0,0,0,0.02182,0,0,0,0,0,0,0,0,0,0.02467,0,0,0,0,0,0,0,0,0,0.02228,0,0,0,0,0,0,0,0,0,0.02581,0,0,0,0,0,0,0,0,0,0.02176,0,0,0.00078,0.00132,0.00191,0.00358,0,0,0,0.00078,0,0,0.00075,0.00126,0.00182,0.00331,0,0,0,0.00074,0,0,0.00068,0.00129,0.00187,0.00347,0,0,0,0.00077,0,0,0.00078,0.00134,0.00194,0.00368,0,0,0,0.00079,0,0,0.00068,0.00111,0.00157,0.0026,0,0,0,0.00065,0,0,0.00066,0.00113,0.00161,0.00273,0,0,0,0.00067,0,0,0.00065,0.00106,0.00148,0.00244,0,0,0,0.00064,0,0,0.00066,0.00116,0.00165,0.00287,0,0,0,0.0007,0,0,0.00058,0.00102,0.00143,0.00235,0,0,0,0.00065,0,0,0.01396,0.01514,0.01649,0.02037,0,0,0,0.02154,0,0,0.01428,0.01541,0.01666,0.02011,0,0,0,0.02214,0,0,0.01534,0.0167,0.01801,0.02173,0,0,0,0.02396,0,0,0.01311,0.01434,0.01573,0.0198,0,0,0,0.02047,0,0,0.01505,0.01595,0.01694,0.01926,0,0,0,0.02333,0,0,0.01378,0.01473,0.01577,0.01832,0,0,0,0.0216,0,0,0.01376,0.01461,0.01553,0.01765,0,0,0,0.0215,0,0,0.01443,0.01549,0.01658,0.01936,0,0,0,0.02256,0,0,0.01417,0.01508,0.01596,0.01799,0,0,0,0.02213,0,0,0.0031,0.00414,0.00534,0.00877,0,0,0,0.00412,0,0,0.00306,0.00406,0.00517,0.00823,0,0,0,0.00413,0,0,0.00309,0.00429,0.00545,0.00874,0,0,0,0.00441,0,0,0.00299,0.00408,0.00531,0.00891,0,0,0,0.00402,0,0,0.00302,0.00382,0.00469,0.00674,0,0,0,0.00409,0,0,0.00283,0.00371,0.00464,0.00689,0,0,0,0.00391,0,0,0.0028,0.00355,0.00437,0.00624,0,0,0,0.00385,0,0,0.00293,0.00386,0.00483,0.00729,0,0,0,0.00409,0,0,0.00274,0.00354,0.00432,0.00611,0,0,0,0.00393,0,0,0,0,0,0,0,0,0,0.00135,0,0,0,0,0,0,0,0,0,0.00136,0,0,0,0,0,0,0,0,0,0.00138,0,0,0,0,0,0,0,0,0,0.00135,0,0,0,0,0,0,0,0,0,0.00138,0,0,0,0,0,0,0,0,0,0.00136,0,0,0,0,0,0,0,0,0,0.00137,0,0,0,0,0,0,0,0,0,0.00137,0,0,0,0,0,0,0,0,0,0.00134,0,0,0,0,0,0,0,0,0,0.04852,0,0,0,0,0,0,0,0,0,0.0413,0,0,0,0,0,0,0,0,0,0.04734,0,0,0,0,0,0,0,0,0,0.05486,0,0,0,0,0,0,0,0,0,0.02108,0,0,0,0,0,0,0,0,0,0.02693,0,0,0,0,0,0,0,0,0,0.01979,0,0,0,0,0,0,0,0,0,0.03099,0,0,0,0,0,0,0,0,0,0.01878 +Mini car,PH20G,1990,0.05234,0,0,0,0,0,0,0,0,0,0.04638,0,0,0,0,0,0,0,0,0,0.05207,0,0,0,0,0,0,0,0,0,0.05699,0,0,0,0,0,0,0,0,0,0.02997,0,0,0,0,0,0,0,0,0,0.03375,0,0,0,0,0,0,0,0,0,0.02819,0,0,0,0,0,0,0,0,0,0.03785,0,0,0,0,0,0,0,0,0,0.02788,0,0,0,0,0,0,0,0,0,0.04999,0,0,0,0,0,0,0,0,0,0.04275,0,0,0,0,0,0,0,0,0,0.05394,0,0,0,0,0,0,0,0,0,0.05527,0,0,0,0,0,0,0,0,0,0.04547,0,0,0,0,0,0,0,0,0,0.05029,0,0,0,0,0,0,0,0,0,0.04655,0,0,0,0,0,0,0,0,0,0.04539,0,0,0,0,0,0,0,0,0,0.03896,0,0,0,0,0,0,0,0,0,31.80818,0,0,0,0,0,0,0,0,0,28.20931,0,0,0,0,0,0,0,0,0,34.82471,0,0,0,0,0,0,0,0,0,36.07011,0,0,0,0,0,0,0,0,0,29.87856,0,0,0,0,0,0,0,0,0,33.0559,0,0,0,0,0,0,0,0,0,31.12265,0,0,0,0,0,0,0,0,0,29.89031,0,0,0,0,0,0,0,0,0,24.92,0,0,0,0,0,0,0,0,0,322.83197,0,0,0,0,0,0,0,0,0,324.06422,0,0,0,0,0,0,0,0,0,330.10145,0,0,0,0,0,0,0,0,0,322.71745,0,0,0,0,0,0,0,0,0,324.29113,0,0,0,0,0,0,0,0,0,320.96772,0,0,0,0,0,0,0,0,0,320.21977,0,0,0,0,0,0,0,0,0,323.80156,0,0,0,0,0,0,0,0,0,316.75428,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.04215,0,0,0,0,0,0,0,0,0,0.04274,0,0,0,0,0,0,0,0,0,0.042,0,0,0,0,0,0,0,0,0,0.04272,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04213,0,0,0,0,0,0,0,0,0,0.04251,0,0,0,0,0,0,0,0,0,0.04187,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.0253,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02535,0,0,0,0,0,0,0,0,0,0.0254,0,0,0,0,0,0,0,0,0,0.02547,0,0,0,0,0,0,0,0,0,0.02549,0,0,0,0,0,0,0,0,0,1.93627,0,0,0,0,0,0,0,0,0,1.84332,0,0,0,0,0,0,0,0,0,2.0484,0,0,0,0,0,0,0,0,0,2.15419,0,0,0,0,0,0,0,0,0,2.00274,0,0,0,0,0,0,0,0,0,2.10311,0,0,0,0,0,0,0,0,0,1.9993,0,0,0,0,0,0,0,0,0,2.11211,0,0,0,0,0,0,0,0,0,1.73837,0,0,0,0,0,0,0,0,0,0.0791,0,0,0.00068,0.00111,0.00147,0.00263,0,0,0,0.06937,0,0,0.00066,0.00106,0.0014,0.00247,0,0,0,0.07657,0,0,0.00067,0.00108,0.00144,0.00255,0,0,0,0.08568,0,0,0.00069,0.00112,0.0015,0.00269,0,0,0,0.04117,0,0,0.00059,0.00094,0.00121,0.00204,0,0,0,0.04862,0,0,0.0006,0.00095,0.00124,0.00211,0,0,0,0.03987,0,0,0.00056,0.00089,0.00115,0.00191,0,0,0,0.05482,0,0,0.00061,0.00098,0.00128,0.00219,0,0,0,0.03929,0,0,0.00055,0.00086,0.00111,0.00185,0,0,0,0.19617,0,0,0.01374,0.01468,0.01552,0.01824,0,0,0,0.17465,0,0,0.01409,0.01498,0.01576,0.01824,0,0,0,0.19412,0,0,0.01533,0.01624,0.01706,0.01967,0,0,0,0.21198,0,0,0.01291,0.01387,0.01474,0.01757,0,0,0,0.11217,0,0,0.01486,0.0156,0.01621,0.01805,0,0,0,0.12758,0,0,0.0136,0.01436,0.015,0.01697,0,0,0,0.10721,0,0,0.01358,0.01428,0.01484,0.01653,0,0,0,0.14248,0,0,0.01432,0.01511,0.01579,0.01789,0,0,0,0.10552,0,0,0.0141,0.01477,0.01532,0.01695,0,0,0,0.1586,0,0,0.0029,0.00374,0.00448,0.00689,0,0,0,0.13904,0,0,0.0029,0.00368,0.00437,0.00657,0,0,0,0.15493,0,0,0.00308,0.00388,0.00461,0.00692,0,0,0,0.17344,0,0,0.00282,0.00367,0.00444,0.00694,0,0,0,0.08268,0,0,0.00285,0.0035,0.00404,0.00567,0,0,0,0.09767,0,0,0.00271,0.00339,0.00396,0.00569,0,0,0,0.07967,0,0,0.00264,0.00326,0.00376,0.00526,0,0,0,0.11017,0,0,0.00283,0.00353,0.00413,0.00598,0,0,0,0.0777,0,0,0.00268,0.00327,0.00375,0.00519,0,0,0,0.01421,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.02307,0,0,0,0,0,0,0,0,0,0.02106,0,0,0,0,0,0,0,0,0,0.01874,0,0,0,0,0,0,0,0,0,0.02065,0,0,0,0,0,0,0,0,0,0.0187,0,0,0,0,0,0,0,0,0,0.01851,0,0,0,0,0,0,0,0,0,0.00858,0,0,0,0,0,0,0,0,0,2.99081,0,0,0,0,0,0,0,0,0,2.67228,0,0,0,0,0,0,0,0,0,3.18204,0,0,0,0,0,0,0,0,0,3.29337,0,0,0,0,0,0,0,0,0,2.95133,0,0,0,0,0,0,0,0,0,3.14197,0,0,0,0,0,0,0,0,0,3.01419,0,0,0,0,0,0,0,0,0,2.97072,0,0,0,0,0,0,0,0,0,2.58386,0,0,0,0,0,0,0,0,0 +Mini car,PH20G,1995,0.0165,0.03036,0,0,0,0,0,0,0,0,0.01569,0.02755,0,0,0,0,0,0,0,0,0.01731,0.03071,0,0,0,0,0,0,0,0,0.01688,0.03238,0,0,0,0,0,0,0,0,0.01327,0.01975,0,0,0,0,0,0,0,0,0.01331,0.02124,0,0,0,0,0,0,0,0,0.01231,0.01849,0,0,0,0,0,0,0,0,0.01436,0.02345,0,0,0,0,0,0,0,0,0.01249,0.01848,0,0,0,0,0,0,0,0,0.02761,0.03203,0,0,0,0,0,0,0,0,0.02564,0.02858,0,0,0,0,0,0,0,0,0.031,0.03546,0,0,0,0,0,0,0,0,0.03195,0.03814,0,0,0,0,0,0,0,0,0.02629,0.02985,0,0,0,0,0,0,0,0,0.02849,0.03306,0,0,0,0,0,0,0,0,0.02605,0.03011,0,0,0,0,0,0,0,0,0.02684,0.03106,0,0,0,0,0,0,0,0,0.0216,0.02426,0,0,0,0,0,0,0,0,11.75219,16.0199,0,0,0,0,0,0,0,0,11.19156,14.67218,0,0,0,0,0,0,0,0,13.44825,17.6587,0,0,0,0,0,0,0,0,14.15705,18.90297,0,0,0,0,0,0,0,0,11.75961,15.32446,0,0,0,0,0,0,0,0,12.73577,16.79242,0,0,0,0,0,0,0,0,12.07704,15.84224,0,0,0,0,0,0,0,0,11.88766,15.96456,0,0,0,0,0,0,0,0,9.31014,12.52862,0,0,0,0,0,0,0,0,264.86785,277.27618,0,0,0,0,0,0,0,0,266.86954,278.87251,0,0,0,0,0,0,0,0,271.51811,283.95373,0,0,0,0,0,0,0,0,264.80367,277.22122,0,0,0,0,0,0,0,0,270.46415,280.86466,0,0,0,0,0,0,0,0,266.36823,277.278,0,0,0,0,0,0,0,0,267.48167,277.55464,0,0,0,0,0,0,0,0,268.62355,279.6898,0,0,0,0,0,0,0,0,263.41372,273.82247,0,0,0,0,0,0,0,0,0.03075,0.03752,0,0,0,0,0,0,0,0,0.03098,0.03776,0,0,0,0,0,0,0,0,0.03147,0.03826,0,0,0,0,0,0,0,0,0.03079,0.03767,0,0,0,0,0,0,0,0,0.03144,0.03825,0,0,0,0,0,0,0,0,0.03122,0.0381,0,0,0,0,0,0,0,0,0.03095,0.03775,0,0,0,0,0,0,0,0,0.03126,0.03808,0,0,0,0,0,0,0,0,0.03079,0.0375,0,0,0,0,0,0,0,0,0.07126,0.05832,0,0,0,0,0,0,0,0,0.0714,0.05844,0,0,0,0,0,0,0,0,0.07151,0.05852,0,0,0,0,0,0,0,0,0.07087,0.05801,0,0,0,0,0,0,0,0,0.07143,0.05846,0,0,0,0,0,0,0,0,0.07105,0.05816,0,0,0,0,0,0,0,0,0.07124,0.05831,0,0,0,0,0,0,0,0,0.07147,0.05849,0,0,0,0,0,0,0,0,0.07159,0.05858,0,0,0,0,0,0,0,0,1.45553,1.75016,0,0,0,0,0,0,0,0,1.41931,1.65598,0,0,0,0,0,0,0,0,1.57006,1.79884,0,0,0,0,0,0,0,0,1.63546,1.96818,0,0,0,0,0,0,0,0,1.52413,1.8242,0,0,0,0,0,0,0,0,1.60165,1.90158,0,0,0,0,0,0,0,0,1.53136,1.82659,0,0,0,0,0,0,0,0,1.62642,1.93557,0,0,0,0,0,0,0,0,1.34107,1.5808,0,0,0,0,0,0,0,0,0.01636,0.04133,0,0,0.00045,0.00072,0.00095,0.00189,0,0,0.01442,0.03626,0,0,0.00044,0.00069,0.00091,0.00178,0,0,0.01588,0.03987,0,0,0.00044,0.0007,0.00093,0.00184,0,0,0.01756,0.04469,0,0,0.00046,0.00072,0.00097,0.00193,0,0,0.00875,0.02166,0,0,0.00039,0.00061,0.00079,0.00148,0,0,0.01022,0.02555,0,0,0.00039,0.00062,0.0008,0.00154,0,0,0.00848,0.02104,0,0,0.00037,0.00058,0.00075,0.00139,0,0,0.01147,0.02872,0,0,0.0004,0.00063,0.00083,0.0016,0,0,0.00839,0.02074,0,0,0.00036,0.00056,0.00072,0.00135,0,0,0.0554,0.11038,0,0,0.01324,0.01382,0.01437,0.01657,0,0,0.05178,0.09959,0,0,0.01361,0.01416,0.01467,0.01669,0,0,0.05704,0.10971,0,0,0.01484,0.01541,0.01593,0.01805,0,0,0.05735,0.11765,0,0,0.0124,0.013,0.01356,0.01582,0,0,0.0407,0.06845,0,0,0.01445,0.01491,0.0153,0.01685,0,0,0.04225,0.07536,0,0,0.01317,0.01365,0.01407,0.01571,0,0,0.03826,0.06528,0,0,0.01319,0.01362,0.01399,0.01542,0,0,0.04589,0.08355,0,0,0.01389,0.01438,0.01482,0.01656,0,0,0.03847,0.06487,0,0,0.01372,0.01414,0.0145,0.01588,0,0,0.03407,0.0827,0,0,0.00246,0.00298,0.00346,0.00541,0,0,0.03035,0.07265,0,0,0.00247,0.00296,0.00341,0.0052,0,0,0.03368,0.08026,0,0,0.00264,0.00315,0.00361,0.00549,0,0,0.03665,0.08999,0,0,0.00236,0.00289,0.00339,0.00539,0,0,0.01946,0.044,0,0,0.00248,0.00289,0.00324,0.00461,0,0,0.02218,0.05147,0,0,0.00234,0.00276,0.00313,0.00458,0,0,0.01868,0.04258,0,0,0.00229,0.00268,0.003,0.00427,0,0,0.02473,0.05804,0,0,0.00245,0.00288,0.00327,0.00481,0,0,0.01838,0.04174,0,0,0.00234,0.00271,0.00303,0.00425,0,0,0.01163,0.00589,0,0,0,0,0,0,0,0,0.01333,0.00598,0,0,0,0,0,0,0,0,0.01899,0.00621,0,0,0,0,0,0,0,0,0.01729,0.01037,0,0,0,0,0,0,0,0,0.01562,0.00611,0,0,0,0,0,0,0,0,0.01714,0.00606,0,0,0,0,0,0,0,0,0.01561,0.00826,0,0,0,0,0,0,0,0,0.01532,0.00943,0,0,0,0,0,0,0,0,0.0071,0.0034,0,0,0,0,0,0,0,0,1.26908,1.80891,0,0,0,0,0,0,0,0,1.22078,1.70483,0,0,0,0,0,0,0,0,1.40886,1.97805,0,0,0,0,0,0,0,0,1.46067,2.0956,0,0,0,0,0,0,0,0,1.31199,1.90432,0,0,0,0,0,0,0,0,1.36271,1.98873,0,0,0,0,0,0,0,0,1.30028,1.90349,0,0,0,0,0,0,0,0,1.34523,1.95012,0,0,0,0,0,0,0,0,1.11431,1.61912,0,0,0,0,0,0,0,0 +Mini car,PH20G,2000,0.01163,0.0136,0.02336,0,0,0,0,0,0,0,0.0115,0.01319,0.02153,0,0,0,0,0,0,0,0.01258,0.01449,0.02395,0,0,0,0,0,0,0,0.01145,0.01362,0.02454,0,0,0,0,0,0,0,0.01093,0.01186,0.0164,0,0,0,0,0,0,0,0.01046,0.01158,0.01714,0,0,0,0,0,0,0,0.01009,0.01097,0.01528,0,0,0,0,0,0,0,0.01112,0.01241,0.0188,0,0,0,0,0,0,0,0.01034,0.01121,0.01539,0,0,0,0,0,0,0,0.0126,0.01347,0.02169,0,0,0,0,0,0,0,0.01181,0.01291,0.01951,0,0,0,0,0,0,0,0.01467,0.01575,0.02489,0,0,0,0,0,0,0,0.01531,0.01684,0.02582,0,0,0,0,0,0,0,0.01115,0.01282,0.02036,0,0,0,0,0,0,0,0.01235,0.014,0.02212,0,0,0,0,0,0,0,0.011,0.01289,0.01966,0,0,0,0,0,0,0,0.01203,0.01366,0.02063,0,0,0,0,0,0,0,0.00941,0.01115,0.01613,0,0,0,0,0,0,0,5.58152,7.49857,11.41774,0,0,0,0,0,0,0,5.34125,7.25349,10.65137,0,0,0,0,0,0,0,6.47322,8.67113,13.0428,0,0,0,0,0,0,0,6.90132,9.28455,13.58148,0,0,0,0,0,0,0,4.95711,7.12201,10.83094,0,0,0,0,0,0,0,5.49337,7.76666,11.71701,0,0,0,0,0,0,0,5.04346,7.34281,10.79369,0,0,0,0,0,0,0,5.34894,7.59489,11.14026,0,0,0,0,0,0,0,4.09425,6.10741,8.78215,0,0,0,0,0,0,0,263.82942,266.03289,273.15083,0,0,0,0,0,0,0,266.15854,268.20983,274.85707,0,0,0,0,0,0,0,270.70359,272.85526,279.79604,0,0,0,0,0,0,0,263.92913,266.1455,273.29976,0,0,0,0,0,0,0,270.93129,272.4025,277.29011,0,0,0,0,0,0,0,266.45023,268.14264,273.64955,0,0,0,0,0,0,0,268.12463,269.53389,274.2022,0,0,0,0,0,0,0,268.58701,270.30826,275.94933,0,0,0,0,0,0,0,263.42394,264.95115,270.02461,0,0,0,0,0,0,0,0.01711,0.01903,0.02899,0,0,0,0,0,0,0,0.01718,0.0191,0.0291,0,0,0,0,0,0,0,0.0173,0.01921,0.0293,0,0,0,0,0,0,0,0.01727,0.01924,0.02926,0,0,0,0,0,0,0,0.01732,0.01923,0.02934,0,0,0,0,0,0,0,0.01738,0.01934,0.02944,0,0,0,0,0,0,0,0.01721,0.01914,0.02915,0,0,0,0,0,0,0,0.0173,0.01923,0.0293,0,0,0,0,0,0,0,0.01703,0.01892,0.02884,0,0,0,0,0,0,0,0.0416,0.05441,0.05775,0,0,0,0,0,0,0,0.04169,0.05454,0.05787,0,0,0,0,0,0,0,0.0418,0.05468,0.05801,0,0,0,0,0,0,0,0.0413,0.05403,0.05738,0,0,0,0,0,0,0,0.04174,0.0546,0.05793,0,0,0,0,0,0,0,0.04145,0.05422,0.05756,0,0,0,0,0,0,0,0.04158,0.0544,0.05773,0,0,0,0,0,0,0,0.04174,0.05461,0.05794,0,0,0,0,0,0,0,0.04183,0.05472,0.05806,0,0,0,0,0,0,0,0.70088,0.93765,1.3994,0,0,0,0,0,0,0,0.68945,0.93135,1.36546,0,0,0,0,0,0,0,0.81323,1.03013,1.51272,0,0,0,0,0,0,0,0.84158,1.11081,1.58258,0,0,0,0,0,0,0,0.77132,1.02245,1.5165,0,0,0,0,0,0,0,0.8101,1.05416,1.55442,0,0,0,0,0,0,0,0.78292,1.04291,1.4692,0,0,0,0,0,0,0,0.81922,1.0858,1.5459,0,0,0,0,0,0,0,0.67269,0.91113,1.27722,0,0,0,0,0,0,0,0.00663,0.01037,0.02729,0,0,0.00045,0.00071,0.00095,0.00156,0,0.00584,0.00912,0.02391,0,0,0.00043,0.00069,0.0009,0.00148,0,0.0064,0.01,0.02636,0,0,0.00044,0.0007,0.00092,0.00152,0,0.00696,0.01092,0.0293,0,0,0.00046,0.00072,0.00096,0.00159,0,0.00353,0.00548,0.01421,0,0,0.00039,0.00061,0.00078,0.00123,0,0.00407,0.00633,0.01666,0,0,0.00039,0.00062,0.0008,0.00127,0,0.00344,0.00534,0.01378,0,0,0.00037,0.00058,0.00074,0.00116,0,0.00463,0.00722,0.01888,0,0,0.0004,0.00063,0.00083,0.00132,0,0.00348,0.0054,0.0137,0,0,0.00036,0.00056,0.00072,0.00112,0,0.03416,0.04223,0.07996,0,0,0.01323,0.01382,0.01435,0.01581,0,0.03311,0.04013,0.07295,0,0,0.01361,0.01416,0.01466,0.01599,0,0.03622,0.0439,0.0804,0,0,0.01484,0.0154,0.01592,0.01732,0,0.03397,0.04258,0.08377,0,0,0.0124,0.01299,0.01354,0.01504,0,0.0295,0.03358,0.0526,0,0,0.01445,0.0149,0.01529,0.01631,0,0.02893,0.03369,0.05638,0,0,0.01317,0.01365,0.01406,0.01513,0,0.02747,0.03145,0.04976,0,0,0.01319,0.01362,0.01398,0.01491,0,0.03105,0.03658,0.0622,0,0,0.01388,0.01438,0.01481,0.01595,0,0.02808,0.0321,0.05002,0,0,0.01372,0.01414,0.0145,0.01539,0,0.01528,0.02241,0.05579,0,0,0.00246,0.00297,0.00345,0.00474,0,0.01384,0.02004,0.04908,0,0,0.00247,0.00296,0.0034,0.00458,0,0.01525,0.02204,0.05434,0,0,0.00264,0.00314,0.0036,0.00484,0,0.01596,0.02359,0.06002,0,0,0.00236,0.00289,0.00337,0.00471,0,0.00955,0.01316,0.02999,0,0,0.00248,0.00289,0.00323,0.00413,0,0.0104,0.01461,0.03468,0,0,0.00234,0.00276,0.00312,0.00407,0,0.00913,0.01266,0.02885,0,0,0.00229,0.00268,0.00299,0.00382,0,0.0116,0.01649,0.03915,0,0,0.00244,0.00288,0.00326,0.00427,0,0.00919,0.01275,0.0286,0,0,0.00234,0.00271,0.00303,0.00382,0,0.01157,0.00565,0.00523,0,0,0,0,0,0,0,0.01329,0.00575,0.00526,0,0,0,0,0,0,0,0.01894,0.00597,0.00535,0,0,0,0,0,0,0,0.01723,0.00998,0.00523,0,0,0,0,0,0,0,0.01565,0.00593,0.00531,0,0,0,0,0,0,0,0.01714,0.00586,0.00524,0,0,0,0,0,0,0,0.01565,0.00802,0.00525,0,0,0,0,0,0,0,0.01531,0.00912,0.00473,0,0,0,0,0,0,0,0.00709,0.00328,0.00242,0,0,0,0,0,0,0,0.50898,0.74471,1.41204,0,0,0,0,0,0,0,0.48004,0.71717,1.32746,0,0,0,0,0,0,0,0.56921,0.84518,1.57252,0,0,0,0,0,0,0,0.60845,0.90815,1.64245,0,0,0,0,0,0,0,0.43443,0.70474,1.43316,0,0,0,0,0,0,0,0.47743,0.76096,1.49931,0,0,0,0,0,0,0,0.42849,0.70198,1.39917,0,0,0,0,0,0,0,0.48845,0.7673,1.4766,0,0,0,0,0,0,0,0.37275,0.61959,1.21534,0,0,0,0,0,0,0 +Mini car,PH20G,2005,0.00961,0.01011,0.01112,0.01716,0,0,0,0,0,0,0.0098,0.01019,0.01105,0.01626,0,0,0,0,0,0,0.01079,0.01078,0.01153,0.01785,0,0,0,0,0,0,0.00933,0.00974,0.01084,0.01761,0,0,0,0,0,0,0.01006,0.01032,0.01087,0.01365,0,0,0,0,0,0,0.00942,0.00959,0.01016,0.01369,0,0,0,0,0,0,0.00924,0.00945,0.00995,0.01257,0,0,0,0,0,0,0.00987,0.01008,0.01072,0.01478,0,0,0,0,0,0,0.00943,0.00959,0.01,0.01271,0,0,0,0,0,0,0.01331,0.00973,0.00961,0.01427,0,0,0,0,0,0,0.01201,0.00868,0.00892,0.013,0,0,0,0,0,0,0.01359,0.00974,0.00998,0.01554,0,0,0,0,0,0,0.01455,0.01196,0.01122,0.01701,0,0,0,0,0,0,0.00781,0.00653,0.00732,0.01181,0,0,0,0,0,0,0.00929,0.00749,0.00815,0.01311,0,0,0,0,0,0,0.00753,0.00696,0.00726,0.01148,0,0,0,0,0,0,0.01008,0.00835,0.00806,0.01293,0,0,0,0,0,0,0.00607,0.00517,0.00565,0.01023,0,0,0,0,0,0,2.56189,3.44401,4.39723,7.25866,0,0,0,0,0,0,2.43087,3.31855,4.37719,6.94997,0,0,0,0,0,0,2.75777,4.04203,5.38411,8.28865,0,0,0,0,0,0,2.98554,4.46455,5.34549,8.8933,0,0,0,0,0,0,2.20464,3.28616,4.51936,7.06469,0,0,0,0,0,0,2.37725,3.57961,4.87747,7.57293,0,0,0,0,0,0,2.26058,3.61337,4.55824,7.12542,0,0,0,0,0,0,2.44458,3.91111,4.66729,7.38321,0,0,0,0,0,0,1.7358,3.02818,4.01304,6.1045,0,0,0,0,0,0,268.53009,269.77174,272.84189,277.53483,0,0,0,0,0,0,271.03096,272.18032,275.041,279.27593,0,0,0,0,0,0,275.43629,276.64934,279.62723,284.14631,0,0,0,0,0,0,268.71783,269.94931,273.06382,277.83806,0,0,0,0,0,0,276.41634,277.21066,279.2914,281.82362,0,0,0,0,0,0,271.7445,272.67452,275.04355,278.19758,0,0,0,0,0,0,273.78568,274.53541,276.54501,278.88529,0,0,0,0,0,0,273.833,274.77943,277.1985,280.45976,0,0,0,0,0,0,268.74377,269.59198,271.73521,274.39692,0,0,0,0,0,0,0.005,0.00539,0.00634,0.01545,0,0,0,0,0,0,0.00501,0.0054,0.00635,0.01548,0,0,0,0,0,0,0.00502,0.00541,0.00635,0.01552,0,0,0,0,0,0,0.00507,0.00547,0.00644,0.01566,0,0,0,0,0,0,0.00503,0.00542,0.00636,0.01556,0,0,0,0,0,0,0.00508,0.00548,0.00644,0.0157,0,0,0,0,0,0,0.00503,0.00542,0.00637,0.01553,0,0,0,0,0,0,0.00504,0.00543,0.00638,0.01558,0,0,0,0,0,0,0.00496,0.00534,0.00627,0.01532,0,0,0,0,0,0,0.01683,0.01915,0.02358,0.03355,0,0,0,0,0,0,0.01686,0.0192,0.02363,0.03362,0,0,0,0,0,0,0.01691,0.01925,0.02369,0.03371,0,0,0,0,0,0,0.01671,0.01902,0.02341,0.03332,0,0,0,0,0,0,0.01688,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01677,0.01909,0.02349,0.03344,0,0,0,0,0,0,0.01682,0.01915,0.02357,0.03354,0,0,0,0,0,0,0.01689,0.01922,0.02366,0.03366,0,0,0,0,0,0,0.01692,0.01926,0.02371,0.03373,0,0,0,0,0,0,0.18697,0.27436,0.36213,0.66982,0,0,0,0,0,0,0.18444,0.26756,0.3639,0.66028,0,0,0,0,0,0,0.21104,0.30046,0.40077,0.74661,0,0,0,0,0,0,0.20997,0.35044,0.42371,0.79513,0,0,0,0,0,0,0.18793,0.28686,0.38841,0.73738,0,0,0,0,0,0,0.2002,0.29995,0.40213,0.76222,0,0,0,0,0,0,0.1895,0.3077,0.38487,0.7194,0,0,0,0,0,0,0.20606,0.33031,0.39782,0.76237,0,0,0,0,0,0,0.14841,0.21954,0.29384,0.64909,0,0,0,0,0,0,0.00237,0.00338,0.00508,0.01517,0,0,0.00045,0.00071,0.00095,0.00145,0.00219,0.00303,0.00455,0.01341,0,0,0.00043,0.00068,0.00091,0.00137,0.00257,0.00283,0.00421,0.01462,0,0,0.00044,0.00069,0.00092,0.00141,0.00265,0.00351,0.00529,0.0162,0,0,0.00045,0.00072,0.00096,0.00148,0.00153,0.00214,0.00323,0.00838,0,0,0.00039,0.0006,0.00078,0.00115,0.00174,0.00221,0.00332,0.00958,0,0,0.00039,0.00061,0.0008,0.00118,0.00146,0.00199,0.003,0.00798,0,0,0.00037,0.00057,0.00074,0.00108,0.00188,0.00241,0.00362,0.01073,0,0,0.0004,0.00063,0.00083,0.00123,0.00132,0.00177,0.00265,0.00785,0,0,0.00036,0.00056,0.00072,0.00104,0.02497,0.02712,0.03094,0.05353,0,0,0.01323,0.01381,0.01436,0.01555,0.02526,0.02701,0.03039,0.05013,0,0,0.01361,0.01415,0.01466,0.01575,0.02791,0.0283,0.03135,0.05471,0,0,0.01483,0.01539,0.01592,0.01707,0.02454,0.02636,0.03035,0.05498,0,0,0.01239,0.01298,0.01355,0.01478,0.02522,0.02646,0.02883,0.04008,0,0,0.01444,0.0149,0.0153,0.01611,0.02392,0.02483,0.02726,0.04107,0,0,0.01317,0.01364,0.01406,0.01493,0.02325,0.02433,0.0265,0.03731,0,0,0.01318,0.01361,0.01398,0.01473,0.02512,0.0262,0.02882,0.04456,0,0,0.01388,0.01437,0.01481,0.01573,0.02353,0.02445,0.02632,0.0376,0,0,0.01372,0.01414,0.0145,0.01521,0.00715,0.00905,0.01243,0.03241,0,0,0.00245,0.00297,0.00345,0.0045,0.00689,0.00844,0.01142,0.02889,0,0,0.00247,0.00295,0.0034,0.00436,0.0079,0.00824,0.01094,0.03161,0,0,0.00264,0.00313,0.0036,0.00462,0.00762,0.00923,0.01277,0.03455,0,0,0.00236,0.00288,0.00338,0.00447,0.00576,0.00686,0.00896,0.01891,0,0,0.00248,0.00288,0.00324,0.00396,0.00597,0.00678,0.00893,0.02114,0,0,0.00233,0.00275,0.00312,0.00389,0.0054,0.00636,0.00828,0.01784,0,0,0.00229,0.00267,0.003,0.00366,0.00635,0.00731,0.00963,0.02355,0,0,0.00244,0.00287,0.00327,0.00408,0.00517,0.00598,0.00764,0.01762,0,0,0.00234,0.00271,0.00303,0.00366,0.01178,0.00573,0.00522,0.00177,0,0,0,0,0,0,0.01353,0.00584,0.00526,0.00178,0,0,0,0,0,0,0.01928,0.00605,0.00535,0.00181,0,0,0,0,0,0,0.01755,0.01012,0.00523,0.00177,0,0,0,0,0,0,0.01596,0.00603,0.00535,0.0018,0,0,0,0,0,0,0.01748,0.00596,0.00526,0.00177,0,0,0,0,0,0,0.01598,0.00817,0.00529,0.00178,0,0,0,0,0,0,0.0156,0.00927,0.00474,0.00176,0,0,0,0,0,0,0.00723,0.00334,0.00244,0.00162,0,0,0,0,0,0,0.2766,0.30243,0.41792,0.92309,0,0,0,0,0,0,0.24864,0.27255,0.38678,0.86919,0,0,0,0,0,0,0.28098,0.30263,0.42929,0.99116,0,0,0,0,0,0,0.30236,0.36524,0.47798,1.0691,0,0,0,0,0,0,0.15872,0.20223,0.31737,0.85781,0,0,0,0,0,0,0.18907,0.23023,0.35097,0.91003,0,0,0,0,0,0,0.15081,0.20965,0.31026,0.83716,0,0,0,0,0,0,0.21459,0.26882,0.37097,0.92755,0,0,0,0,0,0,0.13014,0.17889,0.27767,0.77233,0,0,0,0,0,0 +Mini car,PH20G,2010,0,0.0093,0.0098,0.01064,0.01401,0,0,0,0,0,0,0.0095,0.00992,0.01068,0.01359,0,0,0,0,0,0,0.01015,0.01052,0.01156,0.01475,0,0,0,0,0,0,0.00888,0.00941,0.01036,0.01409,0,0,0,0,0,0,0.00991,0.01021,0.01066,0.01233,0,0,0,0,0,0,0.00915,0.00945,0.01004,0.01201,0,0,0,0,0,0,0.00909,0.00936,0.00976,0.01128,0,0,0,0,0,0,0.00958,0.0099,0.01055,0.01279,0,0,0,0,0,0,0.00929,0.0095,0.00997,0.01142,0,0,0,0,0,0,0.01099,0.00916,0.00791,0.01061,0,0,0,0,0,0,0.00952,0.00833,0.00723,0.00974,0,0,0,0,0,0,0.01039,0.00949,0.00816,0.01124,0,0,0,0,0,0,0.01309,0.01096,0.00944,0.01276,0,0,0,0,0,0,0.00655,0.00708,0.00626,0.00853,0,0,0,0,0,0,0.0073,0.0077,0.0068,0.00939,0,0,0,0,0,0,0.00687,0.00703,0.00623,0.00841,0,0,0,0,0,0,0.00864,0.00766,0.00696,0.00948,0,0,0,0,0,0,0.00551,0.00553,0.00592,0.0078,0,0,0,0,0,0,1.97073,2.9996,3.99676,5.57558,0,0,0,0,0,0,1.84867,2.94603,3.90923,5.42368,0,0,0,0,0,0,2.21116,3.56577,4.48536,6.36968,0,0,0,0,0,0,2.39073,3.53259,4.86455,6.87851,0,0,0,0,0,0,1.56944,2.86946,3.97802,5.52424,0,0,0,0,0,0,1.75127,3.11691,4.19997,5.89748,0,0,0,0,0,0,1.71436,2.90465,4.06406,5.62391,0,0,0,0,0,0,1.99561,3.04557,4.1471,5.77185,0,0,0,0,0,0,1.50385,2.60725,3.54179,4.84749,0,0,0,0,0,0,264.84022,266.74676,269.98586,276.3985,0,0,0,0,0,0,267.34861,269.10776,272.11305,278.12461,0,0,0,0,0,0,271.69836,273.53307,276.66628,282.93107,0,0,0,0,0,0,265.00277,266.92886,270.22187,276.7455,0,0,0,0,0,0,272.79537,274.00919,276.14501,280.65173,0,0,0,0,0,0,268.14019,269.55428,272.01477,277.07635,0,0,0,0,0,0,270.19876,271.36154,273.42146,277.78448,0,0,0,0,0,0,270.18699,271.63715,274.1499,279.3073,0,0,0,0,0,0,265.20618,266.48489,268.6884,273.254,0,0,0,0,0,0,0.00481,0.00545,0.00651,0.00997,0,0,0,0,0,0,0.00482,0.00546,0.00652,0.00998,0,0,0,0,0,0,0.00483,0.00547,0.00652,0.00997,0,0,0,0,0,0,0.00488,0.00553,0.00662,0.01014,0,0,0,0,0,0,0.00485,0.00548,0.00654,0.01,0,0,0,0,0,0,0.00489,0.00554,0.00662,0.01014,0,0,0,0,0,0,0.00484,0.00548,0.00654,0.01002,0,0,0,0,0,0,0.00485,0.00549,0.00655,0.01003,0,0,0,0,0,0,0.00477,0.0054,0.00645,0.00986,0,0,0,0,0,0,0.01183,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01185,0.01387,0.01774,0.02149,0,0,0,0,0,0,0.01188,0.01391,0.01779,0.02155,0,0,0,0,0,0,0.01174,0.01374,0.01758,0.0213,0,0,0,0,0,0,0.01187,0.01389,0.01776,0.02152,0,0,0,0,0,0,0.01178,0.01379,0.01764,0.02137,0,0,0,0,0,0,0.01182,0.01384,0.0177,0.02144,0,0,0,0,0,0,0.01187,0.01389,0.01777,0.02152,0,0,0,0,0,0,0.01189,0.01392,0.0178,0.02157,0,0,0,0,0,0,0.07558,0.12415,0.13212,0.29714,0,0,0,0,0,0,0.07207,0.12364,0.13048,0.29454,0,0,0,0,0,0,0.07516,0.13564,0.14078,0.33224,0,0,0,0,0,0,0.08707,0.14538,0.15223,0.359,0,0,0,0,0,0,0.06745,0.12764,0.13141,0.3214,0,0,0,0,0,0,0.07145,0.13407,0.13845,0.33545,0,0,0,0,0,0,0.07278,0.12738,0.13202,0.31696,0,0,0,0,0,0,0.08168,0.13359,0.14465,0.33859,0,0,0,0,0,0,0.05499,0.0971,0.1282,0.29226,0,0,0,0,0,0,0.00138,0.00214,0.00337,0.00865,0,0,0.00045,0.00071,0.00095,0,0.00129,0.00199,0.00314,0.00783,0,0,0.00043,0.00068,0.00091,0,0.00117,0.0018,0.00325,0.00832,0,0,0.00044,0.00069,0.00093,0,0.00142,0.00222,0.00355,0.00921,0,0,0.00045,0.00072,0.00097,0,0.00112,0.00171,0.00255,0.00555,0,0,0.00039,0.0006,0.00079,0,0.0011,0.00167,0.00266,0.00605,0,0,0.00039,0.00061,0.0008,0,0.00106,0.0016,0.00238,0.00519,0,0,0.00037,0.00057,0.00075,0,0.00112,0.00172,0.00278,0.00655,0,0,0.0004,0.00063,0.00083,0,0.00093,0.00141,0.00229,0.00502,0,0,0.00036,0.00056,0.00072,0,0.02294,0.0247,0.02753,0.03957,0,0,0.01323,0.01381,0.01436,0,0.02338,0.02497,0.0276,0.03821,0,0,0.0136,0.01415,0.01467,0,0.02485,0.02626,0.02966,0.04119,0,0,0.01483,0.0154,0.01593,0,0.02196,0.0238,0.0269,0.0399,0,0,0.01238,0.01298,0.01355,0,0.02436,0.02562,0.02744,0.03406,0,0,0.01444,0.0149,0.0153,0,0.02253,0.02378,0.02598,0.03355,0,0,0.01317,0.01364,0.01406,0,0.0224,0.02356,0.02524,0.03139,0,0,0.01318,0.01361,0.01399,0,0.02352,0.02482,0.0272,0.03564,0,0,0.01388,0.01437,0.01482,0,0.02274,0.02375,0.02565,0.03163,0,0,0.01372,0.01414,0.0145,0,0.00535,0.00691,0.00941,0.02007,0,0,0.00245,0.00297,0.00346,0,0.00523,0.00663,0.00896,0.01834,0,0,0.00246,0.00295,0.00341,0,0.0052,0.00644,0.00945,0.01965,0,0,0.00263,0.00314,0.00361,0,0.00534,0.00697,0.00971,0.02122,0,0,0.00235,0.00288,0.00339,0,0.005,0.00612,0.00773,0.01359,0,0,0.00248,0.00288,0.00324,0,0.00474,0.00585,0.0078,0.01449,0,0,0.00233,0.00275,0.00313,0,0.00464,0.00567,0.00716,0.0126,0,0,0.00229,0.00267,0.003,0,0.00493,0.00608,0.00819,0.01566,0,0,0.00244,0.00288,0.00327,0,0.00447,0.00536,0.00705,0.01233,0,0,0.00234,0.00271,0.00303,0,0.00563,0.00511,0.00172,0.00176,0,0,0,0,0,0,0.00574,0.00515,0.00174,0.00177,0,0,0,0,0,0,0.00595,0.00523,0.00176,0.0018,0,0,0,0,0,0,0.00994,0.00511,0.00172,0.00177,0,0,0,0,0,0,0.00594,0.00524,0.00176,0.00179,0,0,0,0,0,0,0.00586,0.00516,0.00174,0.00177,0,0,0,0,0,0,0.00804,0.00519,0.00174,0.00177,0,0,0,0,0,0,0.00911,0.00465,0.00172,0.00176,0,0,0,0,0,0,0.00328,0.00239,0.00158,0.00161,0,0,0,0,0,0,0.12838,0.17948,0.26246,0.60914,0,0,0,0,0,0,0.11209,0.16209,0.24166,0.57678,0,0,0,0,0,0,0.12359,0.18362,0.26896,0.64179,0,0,0,0,0,0,0.15259,0.21107,0.30682,0.70217,0,0,0,0,0,0,0.07948,0.13589,0.21992,0.55876,0,0,0,0,0,0,0.08788,0.14713,0.23308,0.58802,0,0,0,0,0,0,0.08123,0.13296,0.21602,0.54686,0,0,0,0,0,0,0.1056,0.15667,0.24738,0.60628,0,0,0,0,0,0,0.07355,0.12026,0.21111,0.52323,0,0,0,0,0 +Mini car,PH20G,2015,0,0,0.00916,0.00953,0.01026,0.0122,0,0,0,0,0,0,0.00939,0.00974,0.01039,0.0121,0,0,0,0,0,0,0.01006,0.01053,0.01122,0.01304,0,0,0,0,0,0,0.00871,0.00912,0.00991,0.01203,0,0,0,0,0,0,0.00987,0.0101,0.01056,0.01165,0,0,0,0,0,0,0.00911,0.0094,0.0099,0.01114,0,0,0,0,0,0,0.00906,0.00927,0.00968,0.01066,0,0,0,0,0,0,0.00951,0.00982,0.01037,0.01172,0,0,0,0,0,0,0.00926,0.0095,0.0099,0.01082,0,0,0,0,0,0,0.00842,0.00639,0.00646,0.00802,0,0,0,0,0,0,0.00771,0.00592,0.0061,0.00752,0,0,0,0,0,0,0.00805,0.0066,0.00682,0.0085,0,0,0,0,0,0,0.00906,0.00749,0.00771,0.00962,0,0,0,0,0,0,0.00582,0.00521,0.00576,0.00702,0,0,0,0,0,0,0.00631,0.00564,0.00617,0.00757,0,0,0,0,0,0,0.00583,0.00519,0.00578,0.00701,0,0,0,0,0,0,0.00659,0.00576,0.00614,0.00755,0,0,0,0,0,0,0.00484,0.00501,0.00546,0.00658,0,0,0,0,0,0,1.44608,2.53582,3.44899,4.41866,0,0,0,0,0,0,1.42113,2.51021,3.44592,4.3867,0,0,0,0,0,0,1.60905,2.80456,3.94083,5.06894,0,0,0,0,0,0,1.58393,3.01706,4.25105,5.45608,0,0,0,0,0,0,1.28449,2.61505,3.7407,4.69835,0,0,0,0,0,0,1.38434,2.71804,3.89471,4.9336,0,0,0,0,0,0,1.31567,2.68405,3.83338,4.81653,0,0,0,0,0,0,1.39937,2.70036,3.78777,4.79333,0,0,0,0,0,0,1.22789,2.38763,3.32131,4.15837,0,0,0,0,0,0,237.00493,238.76722,240.57284,248.35179,0,0,0,0,0,0,239.19553,240.80194,242.39695,249.87567,0,0,0,0,0,0,243.10581,244.78879,246.47832,254.19338,0,0,0,0,0,0,237.1748,238.96495,240.81852,248.68619,0,0,0,0,0,0,243.87698,244.91022,245.73835,252.0548,0,0,0,0,0,0,239.79384,241.04253,242.16734,248.88889,0,0,0,0,0,0,241.54929,242.53425,243.30808,249.48944,0,0,0,0,0,0,241.62742,242.90942,244.07131,250.8893,0,0,0,0,0,0,237.09998,238.19666,239.1075,245.41233,0,0,0,0,0,0,0.0031,0.00349,0.00402,0.00566,0,0,0,0,0,0,0.00311,0.00351,0.00404,0.00567,0,0,0,0,0,0,0.00314,0.00354,0.00406,0.00568,0,0,0,0,0,0,0.00312,0.00352,0.00406,0.00573,0,0,0,0,0,0,0.00315,0.00354,0.00407,0.0057,0,0,0,0,0,0,0.00314,0.00355,0.00409,0.00575,0,0,0,0,0,0,0.00311,0.00351,0.00405,0.00569,0,0,0,0,0,0,0.00314,0.00353,0.00407,0.0057,0,0,0,0,0,0,0.00309,0.00348,0.004,0.00561,0,0,0,0,0,0,0.01183,0.01371,0.0177,0.01802,0,0,0,0,0,0,0.01185,0.01374,0.01774,0.01806,0,0,0,0,0,0,0.01188,0.01377,0.01779,0.01811,0,0,0,0,0,0,0.01174,0.01361,0.01758,0.01789,0,0,0,0,0,0,0.01187,0.01375,0.01776,0.01808,0,0,0,0,0,0,0.01178,0.01366,0.01764,0.01796,0,0,0,0,0,0,0.01182,0.0137,0.0177,0.01801,0,0,0,0,0,0,0.01187,0.01375,0.01777,0.01808,0,0,0,0,0,0,0.01189,0.01378,0.0178,0.01812,0,0,0,0,0,0,0.05876,0.07715,0.11363,0.16294,0,0,0,0,0,0,0.05807,0.07567,0.11192,0.1609,0,0,0,0,0,0,0.05841,0.08181,0.12039,0.17601,0,0,0,0,0,0,0.06184,0.08872,0.13062,0.19151,0,0,0,0,0,0,0.05157,0.07406,0.11121,0.16478,0,0,0,0,0,0,0.05499,0.0788,0.11776,0.17401,0,0,0,0,0,0,0.05248,0.07443,0.11197,0.16493,0,0,0,0,0,0,0.05706,0.08297,0.12323,0.17994,0,0,0,0,0,0,0.04216,0.07291,0.10882,0.15783,0,0,0,0,0,0,0.00123,0.00185,0.003,0.00578,0,0,0.00045,0.00071,0,0,0.00117,0.00177,0.00286,0.00541,0,0,0.00043,0.00068,0,0,0.00107,0.00181,0.00293,0.00559,0,0,0.00044,0.0007,0,0,0.00125,0.00191,0.00311,0.00606,0,0,0.00045,0.00072,0,0,0.00107,0.00155,0.00246,0.00437,0,0,0.00039,0.0006,0,0,0.00104,0.00159,0.00253,0.00458,0,0,0.00039,0.00062,0,0,0.00101,0.00146,0.00231,0.00408,0,0,0.00037,0.00058,0,0,0.00104,0.00163,0.0026,0.00478,0,0,0.0004,0.00063,0,0,0.00089,0.0014,0.00222,0.00392,0,0,0.00036,0.00056,0,0,0.02255,0.02394,0.02657,0.03305,0,0,0.01323,0.01382,0,0,0.02308,0.02441,0.02687,0.03274,0,0,0.0136,0.01416,0,0,0.02459,0.02627,0.0288,0.03498,0,0,0.01483,0.0154,0,0,0.02149,0.02298,0.02574,0.03268,0,0,0.01239,0.01299,0,0,0.02422,0.02524,0.0272,0.03144,0,0,0.01444,0.0149,0,0,0.02238,0.02357,0.02565,0.03026,0,0,0.01317,0.01364,0,0,0.02227,0.02322,0.02505,0.02896,0,0,0.01318,0.01362,0,0,0.02331,0.02457,0.02673,0.03167,0,0,0.01388,0.01437,0,0,0.02264,0.02373,0.02548,0.02922,0,0,0.01372,0.01414,0,0,0.00501,0.00624,0.00856,0.01429,0,0,0.00245,0.00297,0,0,0.00496,0.00614,0.00831,0.01351,0,0,0.00247,0.00296,0,0,0.00497,0.00645,0.00869,0.01415,0,0,0.00264,0.00314,0,0,0.00493,0.00625,0.00869,0.01483,0,0,0.00236,0.00289,0,0,0.00488,0.00578,0.00752,0.01127,0,0,0.00248,0.00289,0,0,0.00461,0.00566,0.0075,0.01158,0,0,0.00233,0.00275,0,0,0.00454,0.00538,0.00699,0.01045,0,0,0.00229,0.00267,0,0,0.00475,0.00587,0.00778,0.01214,0,0,0.00244,0.00288,0,0,0.00438,0.00534,0.0069,0.01021,0,0,0.00234,0.00271,0,0,0.00454,0.00152,0.00153,0.00158,0,0,0,0,0,0,0.00458,0.00154,0.00155,0.00159,0,0,0,0,0,0,0.00465,0.00156,0.00157,0.00162,0,0,0,0,0,0,0.00454,0.00152,0.00154,0.00159,0,0,0,0,0,0,0.00467,0.00156,0.00157,0.00161,0,0,0,0,0,0,0.00459,0.00154,0.00154,0.00159,0,0,0,0,0,0,0.00462,0.00155,0.00155,0.00159,0,0,0,0,0,0,0.00413,0.00153,0.00153,0.00158,0,0,0,0,0,0,0.00212,0.0014,0.00141,0.00145,0,0,0,0,0,0,0.09369,0.13417,0.2166,0.41691,0,0,0,0,0,0,0.08588,0.1247,0.20571,0.40107,0,0,0,0,0,0,0.09134,0.13707,0.22618,0.43659,0,0,0,0,0,0,0.10209,0.1544,0.2517,0.47458,0,0,0,0,0,0,0.0671,0.11327,0.20299,0.4045,0,0,0,0,0,0,0.07235,0.12016,0.2121,0.41853,0,0,0,0,0,0,0.0666,0.11171,0.20056,0.39824,0,0,0,0,0,0,0.07913,0.1279,0.2201,0.43009,0,0,0,0,0,0,0.06237,0.10989,0.19561,0.38781,0,0,0,0 +Mini car,PH20G,2020,0,0,0,0.00907,0.00936,0.00982,0.01114,0,0,0,0,0,0,0.00932,0.00959,0.01,0.01118,0,0,0,0,0,0,0.01009,0.01037,0.0108,0.01204,0,0,0,0,0,0,0.00863,0.00894,0.00943,0.01086,0,0,0,0,0,0,0.00981,0.01,0.01028,0.01108,0,0,0,0,0,0,0.00907,0.00928,0.0096,0.01049,0,0,0,0,0,0,0.009,0.00917,0.00943,0.01014,0,0,0,0,0,0,0.00948,0.0097,0.01004,0.011,0,0,0,0,0,0,0.00925,0.00941,0.00966,0.01033,0,0,0,0,0,0,0.00641,0.00522,0.00485,0.00595,0,0,0,0,0,0,0.00573,0.00476,0.00449,0.00552,0,0,0,0,0,0,0.00604,0.00531,0.00502,0.00626,0,0,0,0,0,0,0.00693,0.00607,0.00572,0.00712,0,0,0,0,0,0,0.0039,0.00391,0.00391,0.00495,0,0,0,0,0,0,0.00438,0.00431,0.00426,0.0054,0,0,0,0,0,0,0.00386,0.00388,0.0039,0.00493,0,0,0,0,0,0,0.00485,0.00446,0.00432,0.00542,0,0,0,0,0,0,0.0039,0.00372,0.00368,0.00459,0,0,0,0,0,0,1.18405,1.74663,2.1804,2.91259,0,0,0,0,0,0,1.14159,1.70549,2.14147,2.86362,0,0,0,0,0,0,1.21389,1.90791,2.44569,3.32435,0,0,0,0,0,0,1.31503,2.07042,2.66655,3.60474,0,0,0,0,0,0,1.01752,1.70255,2.20655,2.99301,0,0,0,0,0,0,1.07518,1.7905,2.32861,3.17373,0,0,0,0,0,0,1.05039,1.75067,2.26792,3.07591,0,0,0,0,0,0,1.12163,1.7925,2.28876,3.09105,0,0,0,0,0,0,0.97213,1.5571,1.96912,2.64284,0,0,0,0,0,0,190.37807,191.70796,192.98054,203.57491,0,0,0,0,0,0,192.02122,193.2215,194.31139,204.68216,0,0,0,0,0,0,195.1988,196.46032,197.6268,208.26565,0,0,0,0,0,0,190.55845,191.91223,193.22672,203.90456,0,0,0,0,0,0,195.36829,196.09443,196.52291,205.96499,0,0,0,0,0,0,192.26377,193.16954,193.85688,203.58419,0,0,0,0,0,0,193.48721,194.17541,194.56018,203.84966,0,0,0,0,0,0,193.74261,194.67463,195.39123,205.23045,0,0,0,0,0,0,189.96641,190.7466,191.25223,200.56862,0,0,0,0,0,0,0.00317,0.00353,0.00404,0.005,0,0,0,0,0,0,0.00319,0.00355,0.00406,0.00502,0,0,0,0,0,0,0.00322,0.00358,0.00408,0.00504,0,0,0,0,0,0,0.00319,0.00356,0.00408,0.00506,0,0,0,0,0,0,0.00322,0.00358,0.00409,0.00504,0,0,0,0,0,0,0.00322,0.00359,0.00411,0.00508,0,0,0,0,0,0,0.00319,0.00355,0.00407,0.00503,0,0,0,0,0,0,0.00321,0.00357,0.00409,0.00505,0,0,0,0,0,0,0.00316,0.00352,0.00402,0.00497,0,0,0,0,0,0,0.01183,0.01378,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01381,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01385,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01368,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01382,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01373,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01383,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01386,0.0178,0.0178,0,0,0,0,0,0,0.04199,0.06454,0.08638,0.11523,0,0,0,0,0,0,0.04084,0.06302,0.08461,0.11302,0,0,0,0,0,0,0.04122,0.06782,0.09054,0.12265,0,0,0,0,0,0,0.04436,0.07394,0.09879,0.13426,0,0,0,0,0,0,0.0345,0.06005,0.08143,0.11152,0,0,0,0,0,0,0.03752,0.06455,0.08722,0.11922,0,0,0,0,0,0,0.03522,0.06062,0.08238,0.11228,0,0,0,0,0,0,0.04094,0.06823,0.09178,0.12426,0,0,0,0,0,0,0.03601,0.05949,0.08036,0.10813,0,0,0,0,0,0,0.00108,0.00156,0.00226,0.00414,0,0,0.00045,0,0,0,0.00104,0.00149,0.00216,0.00391,0,0,0.00043,0,0,0,0.00106,0.00152,0.0022,0.00401,0,0,0.00044,0,0,0,0.00111,0.00161,0.00234,0.00432,0,0,0.00045,0,0,0,0.00093,0.00131,0.00186,0.00325,0,0,0.00039,0,0,0,0.00094,0.00134,0.00192,0.00339,0,0,0.00039,0,0,0,0.00088,0.00124,0.00175,0.00305,0,0,0.00037,0,0,0,0.00096,0.00137,0.00197,0.0035,0,0,0.0004,0,0,0,0.00084,0.00119,0.00168,0.00293,0,0,0.00036,0,0,0,0.02221,0.02329,0.0249,0.0293,0,0,0.01323,0,0,0,0.02279,0.0238,0.0253,0.02936,0,0,0.0136,0,0,0,0.02459,0.02564,0.02718,0.0314,0,0,0.01483,0,0,0,0.02116,0.02229,0.02398,0.02866,0,0,0.01239,0,0,0,0.02391,0.02474,0.02593,0.02903,0,0,0.01444,0,0,0,0.02218,0.02305,0.02432,0.02763,0,0,0.01317,0,0,0,0.02198,0.02276,0.02387,0.02672,0,0,0.01318,0,0,0,0.02313,0.02403,0.02535,0.02884,0,0,0.01388,0,0,0,0.02254,0.02328,0.02435,0.02708,0,0,0.01372,0,0,0,0.00471,0.00566,0.00708,0.01098,0,0,0.00245,0,0,0,0.0047,0.0056,0.00693,0.01052,0,0,0.00247,0,0,0,0.00496,0.00589,0.00726,0.01099,0,0,0.00264,0,0,0,0.00464,0.00564,0.00713,0.01127,0,0,0.00236,0,0,0,0.00461,0.00534,0.0064,0.00913,0,0,0.00248,0,0,0,0.00443,0.0052,0.00632,0.00926,0,0,0.00233,0,0,0,0.00428,0.00496,0.00595,0.00847,0,0,0.00229,0,0,0,0.00459,0.00539,0.00655,0.00964,0,0,0.00244,0,0,0,0.00429,0.00495,0.00589,0.00831,0,0,0.00234,0,0,0,0.00121,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00122,0.00123,0.00124,0.00131,0,0,0,0,0,0,0.00125,0.00125,0.00126,0.00133,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.0013,0,0,0,0,0,0,0.00125,0.00125,0.00125,0.00131,0,0,0,0,0,0,0.00123,0.00123,0.00124,0.0013,0,0,0,0,0,0,0.00123,0.00124,0.00124,0.0013,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00129,0,0,0,0,0,0,0.00112,0.00112,0.00113,0.00118,0,0,0,0,0,0,0.08051,0.11016,0.16393,0.32526,0,0,0,0,0,0,0.07283,0.1006,0.15252,0.31126,0,0,0,0,0,0,0.07731,0.11151,0.16932,0.33979,0,0,0,0,0,0,0.08762,0.12652,0.18967,0.36814,0,0,0,0,0,0,0.05421,0.08585,0.14153,0.3106,0,0,0,0,0,0,0.05927,0.09283,0.15034,0.32209,0,0,0,0,0,0,0.05333,0.08363,0.13781,0.30328,0,0,0,0,0,0,0.06632,0.09984,0.15788,0.33104,0,0,0,0,0,0,0.05327,0.08236,0.13497,0.2966,0,0,0 +Mini car,PH20G,2025,0,0,0,0,0.00888,0.00906,0.00936,0.01026,0,0,0,0,0,0,0.00914,0.0093,0.00958,0.01038,0,0,0,0,0,0,0.00991,0.01008,0.01036,0.01121,0,0,0,0,0,0,0.00842,0.00861,0.00893,0.0099,0,0,0,0,0,0,0.00967,0.00979,0.00998,0.01053,0,0,0,0,0,0,0.00893,0.00905,0.00927,0.00988,0,0,0,0,0,0,0.00887,0.00898,0.00915,0.00965,0,0,0,0,0,0,0.00933,0.00946,0.00969,0.01035,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00987,0,0,0,0,0,0,0.00547,0.00414,0.00371,0.00456,0,0,0,0,0,0,0.00476,0.00367,0.00334,0.00413,0,0,0,0,0,0,0.0051,0.00409,0.00373,0.00468,0,0,0,0,0,0,0.00594,0.00475,0.00431,0.00539,0,0,0,0,0,0,0.00287,0.00263,0.00257,0.00332,0,0,0,0,0,0,0.00336,0.003,0.00288,0.00372,0,0,0,0,0,0,0.00281,0.00258,0.00254,0.00329,0,0,0,0,0,0,0.00384,0.00322,0.00302,0.00384,0,0,0,0,0,0,0.00283,0.00248,0.0024,0.00307,0,0,0,0,0,0,0.89603,1.27549,1.60414,2.12739,0,0,0,0,0,0,0.84251,1.22002,1.54614,2.05479,0,0,0,0,0,0,0.90437,1.36873,1.76688,2.38196,0,0,0,0,0,0,0.99171,1.50234,1.94547,2.60839,0,0,0,0,0,0,0.68841,1.13711,1.49828,2.02486,0,0,0,0,0,0,0.74572,1.21794,1.60593,2.17761,0,0,0,0,0,0,0.71043,1.17036,1.54143,2.08482,0,0,0,0,0,0,0.79305,1.23692,1.59878,2.14703,0,0,0,0,0,0,0.65972,1.04249,1.33946,1.79297,0,0,0,0,0,0,153.85338,154.99936,156.33305,165.87204,0,0,0,0,0,0,155.08883,156.12659,157.30204,166.63178,0,0,0,0,0,0,157.68617,158.77612,160.02268,169.59695,0,0,0,0,0,0,154.03544,155.20309,156.57666,166.19824,0,0,0,0,0,0,157.46771,158.10835,158.70642,167.17235,0,0,0,0,0,0,155.09742,155.88851,156.71138,165.44737,0,0,0,0,0,0,155.93892,156.54765,157.1065,165.4361,0,0,0,0,0,0,156.29694,157.11018,157.95958,166.7952,0,0,0,0,0,0,153.13283,153.81614,154.47195,162.82148,0,0,0,0,0,0,0.00319,0.00353,0.00403,0.00491,0,0,0,0,0,0,0.0032,0.00354,0.00404,0.00492,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00494,0,0,0,0,0,0,0.00321,0.00356,0.00407,0.00497,0,0,0,0,0,0,0.00324,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00324,0.00358,0.00409,0.00499,0,0,0,0,0,0,0.00321,0.00355,0.00405,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00407,0.00495,0,0,0,0,0,0,0.00318,0.00351,0.00401,0.00487,0,0,0,0,0,0,0.01183,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.01379,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01366,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01371,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01375,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.03226,0.04679,0.06218,0.08446,0,0,0,0,0,0,0.03097,0.04517,0.06028,0.08211,0,0,0,0,0,0,0.0312,0.0481,0.0639,0.08842,0,0,0,0,0,0,0.03392,0.0529,0.07031,0.09739,0,0,0,0,0,0,0.02461,0.0406,0.05511,0.07754,0,0,0,0,0,0,0.02745,0.04452,0.06008,0.08413,0,0,0,0,0,0,0.02523,0.0412,0.05603,0.07833,0,0,0,0,0,0,0.03008,0.04736,0.06357,0.08817,0,0,0,0,0,0,0.02586,0.04066,0.05495,0.07591,0,0,0.02972,0,0,0,0.0007,0.00099,0.00147,0.00277,0,0,0.02595,0,0,0,0.00068,0.00096,0.0014,0.00262,0,0,0.02894,0,0,0,0.00069,0.00097,0.00143,0.00269,0,0,0.03187,0,0,0,0.00072,0.00102,0.00152,0.00288,0,0,0.01548,0,0,0,0.0006,0.00084,0.00121,0.00219,0,0,0.0181,0,0,0,0.00061,0.00086,0.00125,0.00228,0,0,0.01486,0,0,0,0.00057,0.00079,0.00114,0.00205,0,0,0.02058,0,0,0,0.00063,0.00088,0.00128,0.00236,0,0,0.01471,0,0,0,0.00055,0.00076,0.0011,0.00198,0,0,0.07884,0,0,0,0.02139,0.02205,0.02313,0.02617,0,0,0.07061,0,0,0,0.022,0.02262,0.02364,0.02645,0,0,0.07915,0,0,0,0.02379,0.02443,0.02547,0.02838,0,0,0.08344,0,0,0,0.02031,0.021,0.02214,0.02533,0,0,0.04768,0,0,0,0.02324,0.02375,0.02455,0.02673,0,0,0.05242,0,0,0,0.02149,0.02202,0.02288,0.0252,0,0,0.045,0,0,0,0.02135,0.02182,0.02257,0.02457,0,0,0.0588,0,0,0,0.02242,0.02297,0.02386,0.0263,0,0,0.04492,0,0,0,0.02193,0.02239,0.02311,0.02505,0,0,0.0605,0,0,0,0.00398,0.00457,0.00552,0.00821,0,0,0.05289,0,0,0,0.00401,0.00456,0.00545,0.00794,0,0,0.05954,0,0,0,0.00426,0.00482,0.00575,0.00832,0,0,0.06521,0,0,0,0.00389,0.0045,0.0055,0.00833,0,0,0.03188,0,0,0,0.00401,0.00446,0.00518,0.0071,0,0,0.03705,0,0,0,0.00382,0.00429,0.00505,0.0071,0,0,0.03044,0,0,0,0.00372,0.00414,0.0048,0.00657,0,0,0.04218,0,0,0,0.00396,0.00445,0.00524,0.0074,0,0,0.02994,0,0,0,0.00376,0.00416,0.0048,0.00651,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00101,0.00101,0.00102,0.00108,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00106,0,0,0,0,0,0,0.001,0.00101,0.00101,0.00107,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00106,0,0,0,0,0,0,0.00099,0.001,0.001,0.00106,0,0,0,0,0,0,0.00098,0.00099,0.00099,0.00105,0,0,0,0,0,0,0.0009,0.00091,0.00091,0.00096,0,0,0,0,0,0,0.07026,0.08984,0.13054,0.2661,0,0,0,0,0,0,0.06225,0.07985,0.11848,0.25118,0,0,0,0,0,0,0.06692,0.08949,0.13311,0.27588,0,0,0,0,0,0,0.07675,0.10277,0.15049,0.29932,0,0,0,0,0,0,0.04227,0.06139,0.10159,0.24115,0,0,0,0,0,0,0.04759,0.0684,0.11031,0.25241,0,0,0,0,0,0,0.04106,0.05863,0.097,0.23245,0,0,0,0,0,0,0.05422,0.07515,0.11765,0.26067,0,0,0,0,0,0,0.04087,0.05806,0.09577,0.22949,0,0 +Mini car,PH20G,2030,0,0,0,0,0,0.00888,0.00905,0.00935,0.01004,0,0,0,0,0,0,0.00914,0.0093,0.00957,0.01019,0,0,0,0,0,0,0.00991,0.01007,0.01035,0.011,0,0,0,0,0,0,0.00842,0.0086,0.00892,0.00966,0,0,0,0,0,0,0.00967,0.00979,0.00998,0.0104,0,0,0,0,0,0,0.00893,0.00905,0.00926,0.00973,0,0,0,0,0,0,0.00887,0.00898,0.00915,0.00953,0,0,0,0,0,0,0.00933,0.00946,0.00968,0.01019,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00975,0,0,0,0,0,0,0.00514,0.00378,0.00338,0.00403,0,0,0,0,0,0,0.00443,0.00331,0.00301,0.00359,0,0,0,0,0,0,0.00477,0.0037,0.00337,0.00405,0,0,0,0,0,0,0.00559,0.00432,0.00391,0.00469,0,0,0,0,0,0,0.00253,0.00222,0.00218,0.00267,0,0,0,0,0,0,0.00301,0.00258,0.00249,0.00304,0,0,0,0,0,0,0.00246,0.00217,0.00215,0.00263,0,0,0,0,0,0,0.00349,0.00282,0.00265,0.00321,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00247,0,0,0,0,0,0,0.82051,1.15892,1.47192,1.85795,0,0,0,0,0,0,0.76437,1.10013,1.40811,1.77763,0,0,0,0,0,0,0.82386,1.23555,1.6104,2.05188,0,0,0,0,0,0,0.90749,1.36142,1.77937,2.25759,0,0,0,0,0,0,0.60313,0.99797,1.32924,1.69022,0,0,0,0,0,0,0.66019,1.07663,1.43434,1.83029,0,0,0,0,0,0,0.62218,1.02731,1.36854,1.74015,0,0,0,0,0,0,0.70734,1.09987,1.43529,1.82169,0,0,0,0,0,0,0.57811,0.9157,1.18876,1.50316,0,0,0,0,0,0,141.66316,143.09537,145.31317,151.60093,0,0,0,0,0,0,142.76624,144.1009,146.17363,152.23801,0,0,0,0,0,0,145.16887,146.55809,148.71535,154.9665,0,0,0,0,0,0,141.84491,143.29779,145.55671,151.92303,0,0,0,0,0,0,144.83407,145.80524,147.33573,152.5291,0,0,0,0,0,0,142.70384,143.80938,145.54276,151.03931,0,0,0,0,0,0,143.42337,144.36161,145.84537,150.93759,0,0,0,0,0,0,143.80989,144.93865,146.70433,152.27351,0,0,0,0,0,0,140.85363,141.85361,143.41144,148.56986,0,0,0,0,0,0,0.00319,0.00352,0.00402,0.00489,0,0,0,0,0,0,0.0032,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00321,0.00355,0.00407,0.00495,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00497,0,0,0,0,0,0,0.0032,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00318,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01384,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01382,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01385,0.0178,0.0178,0,0,0,0,0,0,0.02858,0.04064,0.05471,0.07247,0,0,0,0,0,0,0.02723,0.03898,0.05276,0.07003,0,0,0,0,0,0,0.02737,0.04125,0.05566,0.07474,0,0,0,0,0,0,0.0299,0.04557,0.06146,0.08261,0,0,0,0,0,0,0.02088,0.03388,0.04702,0.06392,0,0,0,0,0,0,0.02362,0.03758,0.05171,0.07003,0,0,0,0,0,0,0.02145,0.03448,0.04787,0.06481,0,0,0,0,0,0,0.02596,0.04012,0.05488,0.07373,0,0,0,0,0,0,0.02203,0.03417,0.0472,0.06313,0,0.00804,0.0176,0,0,0,0.0007,0.00099,0.00146,0.00244,0,0.00704,0.01536,0,0,0,0.00068,0.00095,0.00139,0.00231,0,0.0078,0.01712,0,0,0,0.00069,0.00097,0.00142,0.00237,0,0.00855,0.01878,0,0,0,0.00072,0.00102,0.0015,0.00254,0,0.00423,0.00912,0,0,0,0.0006,0.00084,0.00121,0.00194,0,0.00492,0.01064,0,0,0,0.00061,0.00086,0.00124,0.00202,0,0.00408,0.00876,0,0,0,0.00057,0.00079,0.00113,0.00182,0,0.0056,0.01216,0,0,0,0.00063,0.00088,0.00127,0.00208,0,0.00407,0.00872,0,0,0,0.00055,0.00076,0.0011,0.00175,0,0.03,0.0515,0,0,0,0.02139,0.02204,0.02311,0.0254,0,0.02817,0.04676,0,0,0,0.022,0.02262,0.02362,0.02574,0,0.03124,0.0521,0,0,0,0.02379,0.02442,0.02545,0.02765,0,0.03047,0.05365,0,0,0,0.02031,0.021,0.02211,0.02454,0,0.02282,0.03352,0,0,0,0.02324,0.02374,0.02454,0.02617,0,0.0231,0.03567,0,0,0,0.02149,0.02202,0.02286,0.02461,0,0.02125,0.0315,0,0,0,0.02135,0.02182,0.02256,0.02407,0,0.02532,0.03993,0,0,0,0.02242,0.02297,0.02385,0.02568,0,0.02169,0.03186,0,0,0,0.02193,0.02239,0.02311,0.02455,0,0.01729,0.03631,0,0,0,0.00398,0.00456,0.0055,0.00753,0,0.01535,0.0318,0,0,0,0.00401,0.00455,0.00543,0.00731,0,0.01715,0.03561,0,0,0,0.00426,0.00482,0.00573,0.00767,0,0.01835,0.03886,0,0,0,0.00388,0.00449,0.00547,0.00762,0,0.0099,0.01936,0,0,0,0.00401,0.00446,0.00516,0.00661,0,0.01112,0.02224,0,0,0,0.00382,0.00429,0.00503,0.00658,0,0.00943,0.0185,0,0,0,0.00371,0.00413,0.00479,0.00612,0,0.01256,0.02549,0,0,0,0.00396,0.00445,0.00523,0.00685,0,0.00939,0.01839,0,0,0,0.00376,0.00416,0.00479,0.00607,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00097,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00099,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00097,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00097,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00096,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00088,0,0,0,0,0,0,0.06718,0.08437,0.12311,0.24183,0,0,0,0,0,0,0.05915,0.07438,0.11097,0.2265,0,0,0,0,0,0,0.06385,0.08353,0.12494,0.24914,0,0,0,0,0,0,0.07348,0.09626,0.14147,0.27091,0,0,0,0,0,0,0.03899,0.05518,0.09274,0.21253,0,0,0,0,0,0,0.04432,0.06208,0.10134,0.2235,0,0,0,0,0,0,0.03772,0.05234,0.08801,0.20352,0,0,0,0,0,0,0.05082,0.06885,0.10868,0.23219,0,0,0,0,0,0,0.03742,0.05189,0.08714,0.20198,0 +Mini car,PH20G,2035,0,0,0,0,0,0,0.00888,0.00905,0.00935,0.01001,0,0,0,0,0,0,0.00914,0.0093,0.00957,0.01017,0,0,0,0,0,0,0.00991,0.01007,0.01036,0.01098,0,0,0,0,0,0,0.00841,0.0086,0.00893,0.00964,0,0,0,0,0,0,0.00967,0.00978,0.00998,0.01038,0,0,0,0,0,0,0.00893,0.00905,0.00926,0.00972,0,0,0,0,0,0,0.00887,0.00897,0.00915,0.00951,0,0,0,0,0,0,0.00933,0.00946,0.00968,0.01017,0,0,0,0,0,0,0.00913,0.00923,0.0094,0.00974,0,0,0,0,0,0,0.00512,0.00379,0.00338,0.00394,0,0,0,0,0,0,0.00441,0.00332,0.00301,0.0035,0,0,0,0,0,0,0.00475,0.00371,0.00336,0.00394,0,0,0,0,0,0,0.00557,0.00433,0.00391,0.00457,0,0,0,0,0,0,0.00252,0.00223,0.00218,0.00255,0,0,0,0,0,0,0.003,0.00258,0.00249,0.00292,0,0,0,0,0,0,0.00245,0.00217,0.00214,0.00251,0,0,0,0,0,0,0.00348,0.00282,0.00265,0.0031,0,0,0,0,0,0,0.00247,0.0021,0.00204,0.00237,0,0,0,0,0,0,0.81997,1.16371,1.46885,1.81228,0,0,0,0,0,0,0.76398,1.10384,1.40568,1.73119,0,0,0,0,0,0,0.82354,1.24028,1.60736,1.99531,0,0,0,0,0,0,0.90719,1.36698,1.77584,2.19683,0,0,0,0,0,0,0.60311,0.99823,1.32884,1.63547,0,0,0,0,0,0,0.66012,1.07779,1.43338,1.77268,0,0,0,0,0,0,0.62226,1.02826,1.3677,1.68311,0,0,0,0,0,0,0.70703,1.10123,1.43421,1.76824,0,0,0,0,0,0,0.57791,0.91588,1.18842,1.45646,0,0,0,0,0,0,141.62199,143.09026,145.30913,149.39391,0,0,0,0,0,0,142.72754,144.09608,146.16961,150.01156,0,0,0,0,0,0,145.12847,146.55305,148.71143,152.70363,0,0,0,0,0,0,141.8025,143.29263,145.55264,149.71546,0,0,0,0,0,0,144.80428,145.80154,147.33266,150.26216,0,0,0,0,0,0,142.67062,143.80519,145.53926,148.80953,0,0,0,0,0,0,143.39415,144.35781,145.8424,148.69279,0,0,0,0,0,0,143.77631,144.9344,146.70088,150.02623,0,0,0,0,0,0,140.82432,141.85012,143.40861,146.3637,0,0,0,0,0,0,0.00318,0.00351,0.00402,0.0049,0,0,0,0,0,0,0.00319,0.00353,0.00404,0.00491,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00493,0,0,0,0,0,0,0.0032,0.00354,0.00406,0.00496,0,0,0,0,0,0,0.00323,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00323,0.00357,0.00409,0.00498,0,0,0,0,0,0,0.00319,0.00354,0.00405,0.00492,0,0,0,0,0,0,0.00322,0.00356,0.00407,0.00494,0,0,0,0,0,0,0.00317,0.0035,0.004,0.00486,0,0,0,0,0,0,0.01183,0.01377,0.0177,0.0177,0,0,0,0,0,0,0.01185,0.0138,0.01774,0.01774,0,0,0,0,0,0,0.01188,0.01383,0.01779,0.01779,0,0,0,0,0,0,0.01174,0.01367,0.01758,0.01758,0,0,0,0,0,0,0.01187,0.01381,0.01776,0.01776,0,0,0,0,0,0,0.01178,0.01372,0.01764,0.01764,0,0,0,0,0,0,0.01182,0.01376,0.0177,0.0177,0,0,0,0,0,0,0.01187,0.01381,0.01777,0.01777,0,0,0,0,0,0,0.01189,0.01384,0.0178,0.0178,0,0,0,0,0,0,0.0285,0.04053,0.05477,0.07061,0,0,0,0,0,0,0.02716,0.03888,0.05281,0.06814,0,0,0,0,0,0,0.0273,0.04113,0.05572,0.07254,0,0,0,0,0,0,0.02982,0.04541,0.06154,0.08024,0,0,0,0,0,0,0.02083,0.0338,0.04706,0.06168,0,0,0,0,0,0,0.02357,0.03749,0.05176,0.06773,0,0,0,0,0,0,0.02141,0.03437,0.04793,0.06262,0,0,0,0,0,0,0.0259,0.04005,0.05492,0.07138,0,0,0,0,0,0,0.02199,0.03415,0.0472,0.06103,0.00443,0.00621,0.01228,0,0,0,0.0007,0.00099,0.00146,0.0024,0.00389,0.00543,0.0107,0,0,0,0.00067,0.00095,0.0014,0.00228,0.00424,0.00593,0.01183,0,0,0,0.00069,0.00097,0.00143,0.00233,0.00462,0.00648,0.013,0,0,0,0.00072,0.00101,0.00151,0.0025,0.00235,0.00327,0.00634,0,0,0,0.0006,0.00083,0.00121,0.00191,0.00271,0.00377,0.00766,0,0,0,0.00061,0.00085,0.00124,0.00199,0.0023,0.00319,0.00613,0,0,0,0.00057,0.00079,0.00114,0.00179,0.0031,0.00432,0.00847,0,0,0,0.00062,0.00087,0.00128,0.00205,0.00234,0.00325,0.00617,0,0,0,0.00055,0.00076,0.0011,0.00172,0.02178,0.0256,0.03946,0,0,0,0.02138,0.02203,0.02312,0.02532,0.02101,0.02431,0.03627,0,0,0,0.022,0.02261,0.02362,0.02566,0.02307,0.02667,0.04014,0,0,0,0.02379,0.02441,0.02546,0.02757,0.02144,0.02547,0.04035,0,0,0,0.0203,0.02098,0.02212,0.02446,0.01864,0.02054,0.02737,0,0,0,0.02323,0.02373,0.02455,0.02611,0.01813,0.02033,0.02911,0,0,0,0.02149,0.02201,0.02287,0.02454,0.01729,0.01915,0.02566,0,0,0,0.02134,0.02181,0.02256,0.02401,0.01968,0.02228,0.03157,0,0,0,0.02242,0.02296,0.02385,0.02561,0.01787,0.01977,0.02623,0,0,0,0.02193,0.02238,0.02311,0.02448,0.01002,0.0134,0.02566,0,0,0,0.00398,0.00455,0.00551,0.00746,0.00902,0.01194,0.02252,0,0,0,0.004,0.00454,0.00544,0.00724,0.00993,0.01311,0.02503,0,0,0,0.00425,0.00481,0.00573,0.0076,0.01036,0.01393,0.0271,0,0,0,0.00388,0.00447,0.00548,0.00755,0.00619,0.00787,0.01392,0,0,0,0.00401,0.00445,0.00517,0.00655,0.00672,0.00867,0.01639,0,0,0,0.00382,0.00428,0.00504,0.00652,0.00592,0.00757,0.01333,0,0,0,0.00371,0.00412,0.00479,0.00607,0.00757,0.00987,0.01809,0,0,0,0.00396,0.00444,0.00523,0.00678,0.00601,0.0077,0.01341,0,0,0,0.00375,0.00416,0.0048,0.00601,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00096,0,0,0,0,0,0,0.00093,0.00093,0.00095,0.00097,0,0,0,0,0,0,0.0009,0.00091,0.00093,0.00096,0,0,0,0,0,0,0.00092,0.00093,0.00094,0.00096,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.00091,0.00092,0.00093,0.00095,0,0,0,0,0,0,0.0009,0.00091,0.00092,0.00094,0,0,0,0,0,0,0.00083,0.00084,0.00085,0.00086,0,0,0,0,0,0,0.06698,0.08445,0.12303,0.23891,0,0,0,0,0,0,0.05897,0.07444,0.11091,0.22349,0,0,0,0,0,0,0.06367,0.08363,0.12485,0.24574,0,0,0,0,0,0,0.07326,0.09631,0.14142,0.26729,0,0,0,0,0,0,0.03888,0.05512,0.09277,0.20889,0,0,0,0,0,0,0.0442,0.06206,0.10134,0.21978,0,0,0,0,0,0,0.03761,0.05227,0.08804,0.19978,0,0,0,0,0,0,0.05065,0.06869,0.10875,0.22872,0,0,0,0,0,0,0.03732,0.05188,0.08712,0.19849 +Mini car,PH20G,2040,0,0,0,0,0,0,0,0.00887,0.00905,0.00936,0,0,0,0,0,0,0,0.00914,0.0093,0.00958,0,0,0,0,0,0,0,0.0099,0.01007,0.01036,0,0,0,0,0,0,0,0.00841,0.0086,0.00893,0,0,0,0,0,0,0,0.00967,0.00979,0.00998,0,0,0,0,0,0,0,0.00892,0.00905,0.00927,0,0,0,0,0,0,0,0.00887,0.00898,0.00915,0,0,0,0,0,0,0,0.00932,0.00946,0.00969,0,0,0,0,0,0,0,0.00913,0.00923,0.0094,0,0,0,0,0,0,0,0.00512,0.00378,0.00338,0,0,0,0,0,0,0,0.00442,0.00331,0.003,0,0,0,0,0,0,0,0.00477,0.0037,0.00336,0,0,0,0,0,0,0,0.00559,0.00432,0.0039,0,0,0,0,0,0,0,0.00252,0.00222,0.00218,0,0,0,0,0,0,0,0.00301,0.00258,0.00248,0,0,0,0,0,0,0,0.00245,0.00217,0.00214,0,0,0,0,0,0,0,0.00348,0.00282,0.00264,0,0,0,0,0,0,0,0.00247,0.00209,0.00203,0,0,0,0,0,0,0,0.82371,1.16098,1.46545,0,0,0,0,0,0,0,0.76683,1.10167,1.40302,0,0,0,0,0,0,0,0.8274,1.23758,1.604,0,0,0,0,0,0,0,0.91194,1.36384,1.77194,0,0,0,0,0,0,0,0.6033,0.9978,1.32851,0,0,0,0,0,0,0,0.66106,1.07689,1.43243,0,0,0,0,0,0,0,0.62291,1.02751,1.36685,0,0,0,0,0,0,0,0.70801,1.1002,1.43312,0,0,0,0,0,0,0,0.57779,0.91548,1.18816,0,0,0,0,0,0,0,141.61556,143.08312,145.3085,0,0,0,0,0,0,0,142.72141,144.08928,146.16901,0,0,0,0,0,0,0,145.12216,146.54611,148.71075,0,0,0,0,0,0,0,141.79599,143.28527,145.55192,0,0,0,0,0,0,0,144.79978,145.79653,147.33228,0,0,0,0,0,0,0,142.66537,143.79953,145.53872,0,0,0,0,0,0,0,143.38978,144.35284,145.84188,0,0,0,0,0,0,0,143.77095,144.92865,146.70037,0,0,0,0,0,0,0,140.81982,141.84513,143.40822,0,0,0,0,0,0,0,0.00317,0.00351,0.00402,0,0,0,0,0,0,0,0.00319,0.00353,0.00404,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.0032,0.00354,0.00406,0,0,0,0,0,0,0,0.00322,0.00356,0.00407,0,0,0,0,0,0,0,0.00322,0.00357,0.00409,0,0,0,0,0,0,0,0.00319,0.00353,0.00405,0,0,0,0,0,0,0,0.00321,0.00355,0.00407,0,0,0,0,0,0,0,0.00317,0.0035,0.004,0,0,0,0,0,0,0,0.01183,0.01377,0.0177,0,0,0,0,0,0,0,0.01185,0.0138,0.01774,0,0,0,0,0,0,0,0.01188,0.01383,0.01779,0,0,0,0,0,0,0,0.01174,0.01367,0.01758,0,0,0,0,0,0,0,0.01187,0.01381,0.01776,0,0,0,0,0,0,0,0.01178,0.01372,0.01764,0,0,0,0,0,0,0,0.01182,0.01376,0.0177,0,0,0,0,0,0,0,0.01187,0.01381,0.01777,0,0,0,0,0,0,0,0.01189,0.01384,0.0178,0,0,0,0,0,0,0,0.02841,0.04056,0.05484,0,0,0,0,0,0,0,0.02707,0.03891,0.05288,0,0,0,0,0,0,0,0.0272,0.04116,0.0558,0,0,0,0,0,0,0,0.02969,0.04546,0.06165,0,0,0,0,0,0,0,0.02077,0.03382,0.04712,0,0,0,0,0,0,0,0.02349,0.03751,0.05183,0,0,0,0,0,0,0,0.02133,0.0344,0.04801,0,0,0,0,0,0,0,0.02583,0.04006,0.05497,0,0,0,0,0,0,0,0.02197,0.03414,0.04721,0.00151,0.00244,0.00331,0.00742,0,0,0,0.00069,0.00099,0.00147,0.00139,0.00217,0.00294,0.00654,0,0,0,0.00067,0.00095,0.0014,0.0016,0.00201,0.00271,0.00711,0,0,0,0.00068,0.00097,0.00143,0.00166,0.00245,0.00334,0.00776,0,0,0,0.00071,0.00102,0.00152,0.00097,0.00153,0.00209,0.00412,0,0,0,0.0006,0.00084,0.00121,0.00109,0.00157,0.00215,0.00465,0,0,0,0.00061,0.00086,0.00125,0.00095,0.00145,0.00196,0.00392,0,0,0,0.00056,0.00079,0.00114,0.00119,0.00172,0.00233,0.00524,0,0,0,0.00062,0.00088,0.00128,0.00087,0.00131,0.00176,0.00388,0,0,0,0.00055,0.00076,0.0011,0.01549,0.01744,0.01941,0.02867,0,0,0,0.02137,0.02204,0.02313,0.01563,0.01726,0.01899,0.02706,0,0,0,0.02199,0.02261,0.02363,0.01735,0.01812,0.01967,0.02962,0,0,0,0.02378,0.02442,0.02547,0.015,0.01667,0.01865,0.02868,0,0,0,0.02029,0.02098,0.02214,0.01568,0.01683,0.01804,0.02251,0,0,0,0.02323,0.02374,0.02455,0.01466,0.01562,0.01693,0.02244,0,0,0,0.02148,0.02201,0.02288,0.0144,0.01542,0.01652,0.02082,0,0,0,0.02134,0.02181,0.02257,0.01557,0.01666,0.01798,0.02446,0,0,0,0.02241,0.02296,0.02386,0.01478,0.01567,0.01663,0.02127,0,0,0,0.02193,0.02238,0.02311,0.00445,0.00618,0.00792,0.01611,0,0,0,0.00397,0.00455,0.00552,0.00426,0.0057,0.00723,0.01437,0,0,0,0.00399,0.00455,0.00545,0.00486,0.00555,0.00692,0.01572,0,0,0,0.00425,0.00481,0.00574,0.00466,0.00614,0.0079,0.01677,0,0,0,0.00387,0.00448,0.0055,0.00358,0.00459,0.00566,0.00961,0,0,0,0.004,0.00445,0.00518,0.00365,0.0045,0.00562,0.01053,0,0,0,0.00381,0.00428,0.00504,0.00337,0.00427,0.00524,0.00904,0,0,0,0.00371,0.00413,0.0048,0.00393,0.0049,0.00606,0.0118,0,0,0,0.00395,0.00444,0.00524,0.00328,0.00406,0.00491,0.00902,0,0,0,0.00375,0.00416,0.0048,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00093,0.00093,0.00095,0,0,0,0,0,0,0,0.0009,0.00091,0.00093,0,0,0,0,0,0,0,0.00092,0.00093,0.00094,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.00091,0.00092,0.00093,0,0,0,0,0,0,0,0.0009,0.00091,0.00092,0,0,0,0,0,0,0,0.00083,0.00084,0.00085,0,0,0,0,0,0,0,0.06703,0.08436,0.12297,0,0,0,0,0,0,0,0.059,0.07436,0.11086,0,0,0,0,0,0,0,0.06375,0.08353,0.12478,0,0,0,0,0,0,0,0.07331,0.09622,0.1414,0,0,0,0,0,0,0,0.03885,0.05512,0.09283,0,0,0,0,0,0,0,0.04419,0.06203,0.10138,0,0,0,0,0,0,0,0.03757,0.05227,0.08811,0,0,0,0,0,0,0,0.05054,0.06873,0.10889,0,0,0,0,0,0,0,0.03729,0.05186,0.08714 +Mini car,PH20G,2045,0,0,0,0,0,0,0,0,0.00887,0.00905,0,0,0,0,0,0,0,0,0.00914,0.0093,0,0,0,0,0,0,0,0,0.0099,0.01007,0,0,0,0,0,0,0,0,0.00841,0.0086,0,0,0,0,0,0,0,0,0.00967,0.00979,0,0,0,0,0,0,0,0,0.00892,0.00905,0,0,0,0,0,0,0,0,0.00887,0.00898,0,0,0,0,0,0,0,0,0.00932,0.00946,0,0,0,0,0,0,0,0,0.00913,0.00923,0,0,0,0,0,0,0,0,0.00512,0.00378,0,0,0,0,0,0,0,0,0.00441,0.00331,0,0,0,0,0,0,0,0,0.00476,0.00369,0,0,0,0,0,0,0,0,0.00558,0.00431,0,0,0,0,0,0,0,0,0.00252,0.00222,0,0,0,0,0,0,0,0,0.00301,0.00258,0,0,0,0,0,0,0,0,0.00245,0.00217,0,0,0,0,0,0,0,0,0.00348,0.00282,0,0,0,0,0,0,0,0,0.00246,0.00209,0,0,0,0,0,0,0,0,0.82151,1.15824,0,0,0,0,0,0,0,0,0.76508,1.09953,0,0,0,0,0,0,0,0,0.82513,1.23486,0,0,0,0,0,0,0,0,0.90922,1.36065,0,0,0,0,0,0,0,0,0.60291,0.99755,0,0,0,0,0,0,0,0,0.66028,1.07614,0,0,0,0,0,0,0,0,0.62231,1.02688,0,0,0,0,0,0,0,0,0.70718,1.09934,0,0,0,0,0,0,0,0,0.57755,0.91528,0,0,0,0,0,0,0,0,141.60984,143.08299,0,0,0,0,0,0,0,0,142.71607,144.08932,0,0,0,0,0,0,0,0,145.11673,146.54611,0,0,0,0,0,0,0,0,141.79011,143.2852,0,0,0,0,0,0,0,0,144.79569,145.79646,0,0,0,0,0,0,0,0,142.66092,143.79947,0,0,0,0,0,0,0,0,143.38586,144.35281,0,0,0,0,0,0,0,0,143.76642,144.92854,0,0,0,0,0,0,0,0,140.81583,141.84503,0,0,0,0,0,0,0,0,0.00317,0.00351,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00319,0.00354,0,0,0,0,0,0,0,0,0.00322,0.00356,0,0,0,0,0,0,0,0,0.00322,0.00357,0,0,0,0,0,0,0,0,0.00319,0.00353,0,0,0,0,0,0,0,0,0.00321,0.00355,0,0,0,0,0,0,0,0,0.00316,0.0035,0,0,0,0,0,0,0,0,0.01183,0.01377,0,0,0,0,0,0,0,0,0.01185,0.0138,0,0,0,0,0,0,0,0,0.01188,0.01383,0,0,0,0,0,0,0,0,0.01174,0.01367,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01178,0.01372,0,0,0,0,0,0,0,0,0.01182,0.01376,0,0,0,0,0,0,0,0,0.01187,0.01381,0,0,0,0,0,0,0,0,0.01189,0.01384,0,0,0,0,0,0,0,0,0.02843,0.04061,0,0,0,0,0,0,0,0,0.0271,0.03896,0,0,0,0,0,0,0,0,0.02723,0.04123,0,0,0,0,0,0,0,0,0.02973,0.04555,0,0,0,0,0,0,0,0,0.02079,0.03386,0,0,0,0,0,0,0,0,0.02351,0.03756,0,0,0,0,0,0,0,0,0.02135,0.03446,0,0,0,0,0,0,0,0,0.02585,0.0401,0,0,0,0,0,0,0,0,0.02197,0.03415,0,0.0009,0.00153,0.00214,0.00533,0,0,0,0.0007,0.00099,0,0.00084,0.00142,0.00199,0.00478,0,0,0,0.00067,0.00095,0,0.00077,0.00129,0.00208,0.00511,0,0,0,0.00068,0.00097,0,0.00091,0.00154,0.0022,0.00554,0,0,0,0.00071,0.00102,0,0.00074,0.00122,0.00162,0.0033,0,0,0,0.0006,0.00084,0,0.00072,0.00119,0.00169,0.0036,0,0,0,0.00061,0.00086,0,0.0007,0.00115,0.00153,0.00311,0,0,0,0.00057,0.00079,0,0.00073,0.00122,0.00176,0.00394,0,0,0,0.00062,0.00088,0,0.00063,0.00102,0.00147,0.00302,0,0,0,0.00055,0.00076,0,0.01426,0.01567,0.01709,0.02426,0,0,0,0.02138,0.02204,0,0.01452,0.0158,0.01712,0.02335,0,0,0,0.02199,0.02262,0,0.01555,0.01671,0.01856,0.0254,0,0,0,0.02378,0.02442,0,0.01343,0.01487,0.01641,0.02397,0,0,0,0.0203,0.02099,0,0.01519,0.01622,0.0171,0.02079,0,0,0,0.02323,0.02374,0,0.01387,0.01493,0.01598,0.02023,0,0,0,0.02148,0.02202,0,0.01389,0.01484,0.01565,0.0191,0,0,0,0.02134,0.02182,0,0.01461,0.01566,0.01687,0.02171,0,0,0,0.02241,0.02297,0,0.01427,0.01511,0.01607,0.01946,0,0,0,0.02193,0.02239,0,0.00336,0.00462,0.00587,0.01221,0,0,0,0.00397,0.00456,0,0.00328,0.00441,0.00558,0.01109,0,0,0,0.004,0.00455,0,0.00328,0.0043,0.00593,0.01199,0,0,0,0.00425,0.00482,0,0.00328,0.00455,0.00592,0.0126,0,0,0,0.00387,0.00449,0,0.00314,0.00405,0.00483,0.00809,0,0,0,0.00401,0.00446,0,0.00295,0.00385,0.00482,0.00858,0,0,0,0.00381,0.00429,0,0.00291,0.00376,0.00448,0.00752,0,0,0,0.00371,0.00413,0,0.00308,0.00401,0.00508,0.00937,0,0,0,0.00396,0.00445,0,0.00283,0.00357,0.00442,0.00742,0,0,0,0.00375,0.00416,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00093,0.00093,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00092,0.00093,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.00091,0.00092,0,0,0,0,0,0,0,0,0.0009,0.00091,0,0,0,0,0,0,0,0,0.00083,0.00084,0,0,0,0,0,0,0,0,0.06696,0.0843,0,0,0,0,0,0,0,0,0.05895,0.07432,0,0,0,0,0,0,0,0,0.06367,0.08346,0,0,0,0,0,0,0,0,0.07323,0.09618,0,0,0,0,0,0,0,0,0.03884,0.05514,0,0,0,0,0,0,0,0,0.04416,0.06204,0,0,0,0,0,0,0,0,0.03757,0.0523,0,0,0,0,0,0,0,0,0.05055,0.0688,0,0,0,0,0,0,0,0,0.03728,0.05186 +Mini car,PH20G,2050,0,0,0,0,0,0,0,0,0,0.00888,0,0,0,0,0,0,0,0,0,0.00914,0,0,0,0,0,0,0,0,0,0.00991,0,0,0,0,0,0,0,0,0,0.00841,0,0,0,0,0,0,0,0,0,0.00967,0,0,0,0,0,0,0,0,0,0.00893,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.00932,0,0,0,0,0,0,0,0,0,0.00913,0,0,0,0,0,0,0,0,0,0.00511,0,0,0,0,0,0,0,0,0,0.00441,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00557,0,0,0,0,0,0,0,0,0,0.00252,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00245,0,0,0,0,0,0,0,0,0,0.00348,0,0,0,0,0,0,0,0,0,0.00246,0,0,0,0,0,0,0,0,0,0.81919,0,0,0,0,0,0,0,0,0,0.76326,0,0,0,0,0,0,0,0,0,0.82273,0,0,0,0,0,0,0,0,0,0.9063,0,0,0,0,0,0,0,0,0,0.60256,0,0,0,0,0,0,0,0,0,0.6595,0,0,0,0,0,0,0,0,0,0.6217,0,0,0,0,0,0,0,0,0,0.70637,0,0,0,0,0,0,0,0,0,0.57738,0,0,0,0,0,0,0,0,0,141.60988,0,0,0,0,0,0,0,0,0,142.7161,0,0,0,0,0,0,0,0,0,145.11672,0,0,0,0,0,0,0,0,0,141.79007,0,0,0,0,0,0,0,0,0,144.79568,0,0,0,0,0,0,0,0,0,142.66083,0,0,0,0,0,0,0,0,0,143.38576,0,0,0,0,0,0,0,0,0,143.76635,0,0,0,0,0,0,0,0,0,140.81579,0,0,0,0,0,0,0,0,0,0.00317,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00322,0,0,0,0,0,0,0,0,0,0.00319,0,0,0,0,0,0,0,0,0,0.00321,0,0,0,0,0,0,0,0,0,0.00316,0,0,0,0,0,0,0,0,0,0.01183,0,0,0,0,0,0,0,0,0,0.01185,0,0,0,0,0,0,0,0,0,0.01188,0,0,0,0,0,0,0,0,0,0.01174,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01178,0,0,0,0,0,0,0,0,0,0.01182,0,0,0,0,0,0,0,0,0,0.01187,0,0,0,0,0,0,0,0,0,0.01189,0,0,0,0,0,0,0,0,0,0.02847,0,0,0,0,0,0,0,0,0,0.02714,0,0,0,0,0,0,0,0,0,0.02727,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02355,0,0,0,0,0,0,0,0,0,0.02139,0,0,0,0,0,0,0,0,0,0.02587,0,0,0,0,0,0,0,0,0,0.02197,0,0,0.00078,0.00132,0.00191,0.00358,0,0,0,0.0007,0,0,0.00075,0.00126,0.00182,0.00331,0,0,0,0.00067,0,0,0.00068,0.00129,0.00187,0.00347,0,0,0,0.00068,0,0,0.00078,0.00134,0.00194,0.00368,0,0,0,0.00072,0,0,0.00068,0.00111,0.00157,0.0026,0,0,0,0.0006,0,0,0.00066,0.00113,0.00161,0.00273,0,0,0,0.00061,0,0,0.00065,0.00106,0.00148,0.00244,0,0,0,0.00057,0,0,0.00066,0.00116,0.00165,0.00287,0,0,0,0.00062,0,0,0.00058,0.00102,0.00143,0.00235,0,0,0,0.00055,0,0,0.01396,0.01514,0.01649,0.02037,0,0,0,0.02138,0,0,0.01428,0.01541,0.01666,0.02011,0,0,0,0.022,0,0,0.01534,0.0167,0.01801,0.02173,0,0,0,0.02378,0,0,0.01311,0.01434,0.01573,0.0198,0,0,0,0.0203,0,0,0.01505,0.01595,0.01694,0.01926,0,0,0,0.02323,0,0,0.01378,0.01473,0.01577,0.01832,0,0,0,0.02148,0,0,0.01376,0.01461,0.01553,0.01765,0,0,0,0.02134,0,0,0.01443,0.01549,0.01658,0.01936,0,0,0,0.02242,0,0,0.01417,0.01508,0.01596,0.01799,0,0,0,0.02193,0,0,0.0031,0.00414,0.00534,0.00877,0,0,0,0.00398,0,0,0.00306,0.00406,0.00517,0.00823,0,0,0,0.004,0,0,0.00309,0.00429,0.00545,0.00874,0,0,0,0.00425,0,0,0.00299,0.00408,0.00531,0.00891,0,0,0,0.00388,0,0,0.00302,0.00382,0.00469,0.00674,0,0,0,0.00401,0,0,0.00283,0.00371,0.00464,0.00689,0,0,0,0.00381,0,0,0.0028,0.00355,0.00437,0.00624,0,0,0,0.00371,0,0,0.00293,0.00386,0.00483,0.00729,0,0,0,0.00396,0,0,0.00274,0.00354,0.00432,0.00611,0,0,0,0.00375,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00093,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00092,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.00091,0,0,0,0,0,0,0,0,0,0.0009,0,0,0,0,0,0,0,0,0,0.00083,0,0,0,0,0,0,0,0,0,0.06691,0,0,0,0,0,0,0,0,0,0.05891,0,0,0,0,0,0,0,0,0,0.06361,0,0,0,0,0,0,0,0,0,0.07318,0,0,0,0,0,0,0,0,0,0.03885,0,0,0,0,0,0,0,0,0,0.04415,0,0,0,0,0,0,0,0,0,0.03758,0,0,0,0,0,0,0,0,0,0.0506,0,0,0,0,0,0,0,0,0,0.03728 +Mini car,PH40E,1990,0.01419,0,0,0,0,0,0,0,0,0,0.01468,0,0,0,0,0,0,0,0,0,0.01593,0,0,0,0,0,0,0,0,0,0.01338,0,0,0,0,0,0,0,0,0,0.0157,0,0,0,0,0,0,0,0,0,0.01442,0,0,0,0,0,0,0,0,0,0.0144,0,0,0,0,0,0,0,0,0,0.01507,0,0,0,0,0,0,0,0,0,0.01485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00114,0.00185,0.00246,0.00438,0,0,0,0,0,0,0.0011,0.00177,0.00234,0.00411,0,0,0,0,0,0,0.00111,0.0018,0.00239,0.00424,0,0,0,0,0,0,0.00115,0.00187,0.00249,0.00448,0,0,0,0,0,0,0.00098,0.00156,0.00202,0.00339,0,0,0,0,0,0,0.001,0.00159,0.00207,0.00352,0,0,0,0,0,0,0.00094,0.00149,0.00192,0.00319,0,0,0,0,0,0,0.00102,0.00163,0.00213,0.00366,0,0,0,0,0,0,0.00091,0.00144,0.00186,0.00308,0,0,0,0,0,0,0.0229,0.02447,0.02587,0.03041,0,0,0,0,0,0,0.02348,0.02496,0.02626,0.0304,0,0,0,0,0,0,0.02554,0.02707,0.02843,0.03278,0,0,0,0,0,0,0.02151,0.02312,0.02457,0.02928,0,0,0,0,0,0,0.02477,0.026,0.02701,0.03008,0,0,0,0,0,0,0.02266,0.02393,0.025,0.02828,0,0,0,0,0,0,0.02264,0.02379,0.02473,0.02756,0,0,0,0,0,0,0.02387,0.02519,0.02632,0.02981,0,0,0,0,0,0,0.02351,0.02462,0.02553,0.02824,0,0,0,0,0,0,0.00484,0.00623,0.00747,0.01148,0,0,0,0,0,0,0.00483,0.00613,0.00729,0.01094,0,0,0,0,0,0,0.00513,0.00647,0.00768,0.01153,0,0,0,0,0,0,0.00469,0.00611,0.00739,0.01156,0,0,0,0,0,0,0.00475,0.00584,0.00674,0.00945,0,0,0,0,0,0,0.00452,0.00565,0.00659,0.00949,0,0,0,0,0,0,0.00441,0.00543,0.00626,0.00876,0,0,0,0,0,0,0.00472,0.00589,0.00688,0.00997,0,0,0,0,0,0,0.00447,0.00545,0.00626,0.00866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH40E,1995,0.01419,0.01419,0,0,0,0,0,0,0,0,0.01468,0.01468,0,0,0,0,0,0,0,0,0.01593,0.01593,0,0,0,0,0,0,0,0,0.01338,0.01338,0,0,0,0,0,0,0,0,0.0157,0.0157,0,0,0,0,0,0,0,0,0.01442,0.01442,0,0,0,0,0,0,0,0,0.0144,0.0144,0,0,0,0,0,0,0,0,0.01507,0.01507,0,0,0,0,0,0,0,0,0.01485,0.01485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.00119,0.00159,0.00316,0,0,0,0,0,0,0.00073,0.00114,0.00151,0.00297,0,0,0,0,0,0,0.00074,0.00116,0.00155,0.00306,0,0,0,0,0,0,0.00076,0.00121,0.00161,0.00322,0,0,0,0,0,0,0.00065,0.00101,0.00131,0.00247,0,0,0,0,0,0,0.00066,0.00103,0.00134,0.00256,0,0,0,0,0,0,0.00062,0.00096,0.00124,0.00232,0,0,0,0,0,0,0.00067,0.00105,0.00138,0.00266,0,0,0,0,0,0,0.0006,0.00093,0.0012,0.00226,0,0,0,0,0,0,0.02206,0.02304,0.02394,0.02761,0,0,0,0,0,0,0.02268,0.0236,0.02444,0.02782,0,0,0,0,0,0,0.02473,0.02568,0.02655,0.03009,0,0,0,0,0,0,0.02066,0.02166,0.02259,0.02637,0,0,0,0,0,0,0.02408,0.02484,0.0255,0.02809,0,0,0,0,0,0,0.02196,0.02275,0.02344,0.02618,0,0,0,0,0,0,0.02198,0.0227,0.02331,0.0257,0,0,0,0,0,0,0.02314,0.02396,0.02469,0.0276,0,0,0,0,0,0,0.02287,0.02357,0.02416,0.02647,0,0,0,0,0,0,0.0041,0.00496,0.00576,0.00901,0,0,0,0,0,0,0.00412,0.00493,0.00568,0.00867,0,0,0,0,0,0,0.00441,0.00524,0.00602,0.00915,0,0,0,0,0,0,0.00394,0.00482,0.00565,0.00899,0,0,0,0,0,0,0.00414,0.00482,0.0054,0.00769,0,0,0,0,0,0,0.0039,0.0046,0.00521,0.00764,0,0,0,0,0,0,0.00382,0.00446,0.005,0.00711,0,0,0,0,0,0,0.00408,0.0048,0.00545,0.00801,0,0,0,0,0,0,0.00391,0.00452,0.00505,0.00709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH40E,2000,0.01419,0.01742,0.01967,0,0,0,0,0,0,0,0.01468,0.01745,0.01938,0,0,0,0,0,0,0,0.01593,0.01905,0.02122,0,0,0,0,0,0,0,0.01338,0.01691,0.0194,0,0,0,0,0,0,0,0.0157,0.01725,0.01829,0,0,0,0,0,0,0,0.01442,0.01628,0.01768,0,0,0,0,0,0,0,0.0144,0.01589,0.01688,0,0,0,0,0,0,0,0.01507,0.01721,0.01867,0,0,0,0,0,0,0,0.01485,0.01632,0.0173,0,0,0,0,0,0,0,0,0.05215,0.054,0,0,0,0,0,0,0,0,0.04956,0.05269,0,0,0,0,0,0,0,0,0.05872,0.0619,0,0,0,0,0,0,0,0,0.06217,0.06538,0,0,0,0,0,0,0,0,0.04895,0.05218,0,0,0,0,0,0,0,0,0.0528,0.05637,0,0,0,0,0,0,0,0,0.04913,0.05076,0,0,0,0,0,0,0,0,0.05082,0.05344,0,0,0,0,0,0,0,0,0.04224,0.04464,0,0,0,0,0,0,0,0,5.23162,6.14938,0,0,0,0,0,0,0,0,5.05015,6.04832,0,0,0,0,0,0,0,0,5.77436,6.88086,0,0,0,0,0,0,0,0,6.2574,7.43389,0,0,0,0,0,0,0,0,5.09328,6.05926,0,0,0,0,0,0,0,0,5.42517,6.52308,0,0,0,0,0,0,0,0,5.28302,6.11116,0,0,0,0,0,0,0,0,5.21849,6.16865,0,0,0,0,0,0,0,0,4.28955,5.07677,0,0,0,0,0,0,0,0,188.01422,190.88366,0,0,0,0,0,0,0,0,189.60568,192.27761,0,0,0,0,0,0,0,0,192.87506,195.6558,0,0,0,0,0,0,0,0,188.11163,191.01712,0,0,0,0,0,0,0,0,192.75625,194.69317,0,0,0,0,0,0,0,0,189.67977,192.62012,0,0,0,0,0,0,0,0,190.75161,192.61953,0,0,0,0,0,0,0,0,191.19597,193.45131,0,0,0,0,0,0,0,0,187.42374,189.4277,0,0,0,0,0,0,0,0,0.01173,0.01389,0,0,0,0,0,0,0,0,0.01176,0.01392,0,0,0,0,0,0,0,0,0.01182,0.01396,0,0,0,0,0,0,0,0,0.01186,0.01408,0,0,0,0,0,0,0,0,0.01184,0.01399,0,0,0,0,0,0,0,0,0.01191,0.01412,0,0,0,0,0,0,0,0,0.01179,0.01396,0,0,0,0,0,0,0,0,0.01184,0.01401,0,0,0,0,0,0,0,0,0.01165,0.01378,0,0,0,0,0,0,0,0,0.03887,0.03887,0,0,0,0,0,0,0,0,0.03895,0.03895,0,0,0,0,0,0,0,0,0.03906,0.03906,0,0,0,0,0,0,0,0,0.03859,0.03859,0,0,0,0,0,0,0,0,0.039,0.039,0,0,0,0,0,0,0,0,0.03873,0.03873,0,0,0,0,0,0,0,0,0.03885,0.03885,0,0,0,0,0,0,0,0,0.039,0.039,0,0,0,0,0,0,0,0,0.03909,0.03909,0,0,0,0,0,0,0,0,0.6735,0.80037,0,0,0,0,0,0,0,0,0.66699,0.80992,0,0,0,0,0,0,0,0,0.74392,0.89637,0,0,0,0,0,0,0,0,0.77674,0.93488,0,0,0,0,0,0,0,0,0.72571,0.88157,0,0,0,0,0,0,0,0,0.75137,0.90637,0,0,0,0,0,0,0,0,0.73924,0.87517,0,0,0,0,0,0,0,0,0.76822,0.91643,0,0,0,0,0,0,0,0,0.68214,0.81948,0,0,0,0,0,0,0,0,0.00672,0.01063,0,0,0.00075,0.00119,0.00158,0.00261,0,0,0.0059,0.00931,0,0,0.00072,0.00114,0.00151,0.00246,0,0,0.00645,0.01021,0,0,0.00073,0.00116,0.00154,0.00253,0,0,0.00702,0.01118,0,0,0.00076,0.0012,0.0016,0.00266,0,0,0.00354,0.00554,0,0,0.00065,0.00101,0.00131,0.00206,0,0,0.00408,0.00664,0,0,0.00066,0.00103,0.00134,0.00212,0,0,0.00346,0.0054,0,0,0.00062,0.00096,0.00124,0.00193,0,0,0.00467,0.00735,0,0,0.00067,0.00105,0.00138,0.0022,0,0,0.00353,0.0055,0,0,0.0006,0.00093,0.0012,0.00187,0,0,0.02862,0.03733,0,0,0.02206,0.02303,0.02392,0.02635,0,0,0.0273,0.03486,0,0,0.02268,0.0236,0.02443,0.02666,0,0,0.0298,0.03818,0,0,0.02473,0.02567,0.02653,0.02887,0,0,0.0286,0.03795,0,0,0.02066,0.02165,0.02257,0.02507,0,0,0.02318,0.02753,0,0,0.02408,0.02484,0.02549,0.02718,0,0,0.02309,0.0288,0,0,0.02195,0.02274,0.02343,0.02522,0,0,0.02168,0.02589,0,0,0.02198,0.0227,0.0233,0.02485,0,0,0.02501,0.0309,0,0,0.02314,0.02396,0.02468,0.02658,0,0,0.02224,0.02648,0,0,0.02287,0.02357,0.02416,0.02565,0,0,0.01464,0.02235,0,0,0.0041,0.00496,0.00575,0.00789,0,0,0.01311,0.0198,0,0,0.00412,0.00493,0.00566,0.00763,0,0,0.01437,0.02179,0,0,0.0044,0.00524,0.006,0.00807,0,0,0.01524,0.02351,0,0,0.00394,0.00481,0.00562,0.00784,0,0,0.00869,0.01253,0,0,0.00414,0.00481,0.00539,0.00688,0,0,0.00957,0.01458,0,0,0.00389,0.00459,0.0052,0.00678,0,0,0.00835,0.01207,0,0,0.00382,0.00446,0.00499,0.00636,0,0,0.01079,0.016,0,0,0.00407,0.0048,0.00544,0.00712,0,0,0.0085,0.01225,0,0,0.0039,0.00452,0.00504,0.00636,0,0,0.00616,0.00551,0,0,0,0,0,0,0,0,0.00621,0.00555,0,0,0,0,0,0,0,0,0.00631,0.00565,0,0,0,0,0,0,0,0,0.00616,0.00552,0,0,0,0,0,0,0,0,0.00631,0.00562,0,0,0,0,0,0,0,0,0.00621,0.00556,0,0,0,0,0,0,0,0,0.00625,0.00556,0,0,0,0,0,0,0,0,0.00626,0.00559,0,0,0,0,0,0,0,0,0.00614,0.00547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Mini car,PH40E,2005,0.01419,0.01545,0.01626,0.01817,0,0,0,0,0,0,0.01468,0.01578,0.01649,0.01813,0,0,0,0,0,0,0.01593,0.01717,0.01796,0.01982,0,0,0,0,0,0,0.01338,0.01476,0.01566,0.01778,0,0,0,0,0,0,0.0157,0.01637,0.0168,0.01772,0,0,0,0,0,0,0.01442,0.01521,0.01575,0.01681,0,0,0,0,0,0,0.0144,0.01505,0.01545,0.01633,0,0,0,0,0,0,0.01507,0.01595,0.01651,0.01778,0,0,0,0,0,0,0.01485,0.01549,0.01588,0.01674,0,0,0,0,0,0,0,0.02683,0.02153,0.02553,0,0,0,0,0,0,0,0.02393,0.01993,0.02394,0,0,0,0,0,0,0,0.02767,0.02301,0.02831,0,0,0,0,0,0,0,0.03067,0.02543,0.03085,0,0,0,0,0,0,0,0.01686,0.01566,0.02035,0,0,0,0,0,0,0,0.02002,0.01839,0.02298,0,0,0,0,0,0,0,0.01662,0.01524,0.01971,0,0,0,0,0,0,0,0.02089,0.01808,0.02256,0,0,0,0,0,0,0,0.01475,0.0135,0.01702,0,0,0,0,0,0,0,2.1351,2.71614,3.68885,0,0,0,0,0,0,0,2.05122,2.70759,3.65514,0,0,0,0,0,0,0,2.30265,3.09348,4.21249,0,0,0,0,0,0,0,2.47824,3.33253,4.52943,0,0,0,0,0,0,0,2.12309,2.92873,3.87455,0,0,0,0,0,0,0,2.20952,3.06889,4.0505,0,0,0,0,0,0,0,2.20151,2.9632,3.9078,0,0,0,0,0,0,0,2.16251,2.8834,3.84928,0,0,0,0,0,0,0,1.86667,2.48324,3.24688,0,0,0,0,0,0,0,190.70224,192.86885,196.0238,0,0,0,0,0,0,0,192.40727,194.42623,197.33896,0,0,0,0,0,0,0,195.56594,197.66754,200.72538,0,0,0,0,0,0,0,190.82811,193.02624,196.23832,0,0,0,0,0,0,0,195.97067,197.44031,199.45056,0,0,0,0,0,0,0,192.76143,195.15715,196.77836,0,0,0,0,0,0,0,194.08023,195.49989,197.4221,0,0,0,0,0,0,0,194.24886,195.95669,198.35634,0,0,0,0,0,0,0,190.58322,192.0963,194.16268,0,0,0,0,0,0,0,0.00384,0.00452,0.00686,0,0,0,0,0,0,0,0.00385,0.00452,0.00687,0,0,0,0,0,0,0,0.00386,0.00452,0.00687,0,0,0,0,0,0,0,0.0039,0.00459,0.00698,0,0,0,0,0,0,0,0.00387,0.00454,0.00689,0,0,0,0,0,0,0,0.00391,0.00459,0.00698,0,0,0,0,0,0,0,0.00386,0.00454,0.0069,0,0,0,0,0,0,0,0.00387,0.00455,0.00691,0,0,0,0,0,0,0,0.00381,0.00447,0.00679,0,0,0,0,0,0,0,0.0127,0.01575,0.01776,0,0,0,0,0,0,0,0.01273,0.01578,0.0178,0,0,0,0,0,0,0,0.01277,0.01583,0.01785,0,0,0,0,0,0,0,0.01261,0.01564,0.01764,0,0,0,0,0,0,0,0.01275,0.0158,0.01782,0,0,0,0,0,0,0,0.01266,0.01569,0.0177,0,0,0,0,0,0,0,0.0127,0.01574,0.01776,0,0,0,0,0,0,0,0.01275,0.0158,0.01783,0,0,0,0,0,0,0,0.01278,0.01584,0.01786,0,0,0,0,0,0,0,0.20482,0.27196,0.31787,0,0,0,0,0,0,0,0.19944,0.27343,0.31953,0,0,0,0,0,0,0,0.22443,0.30273,0.35985,0,0,0,0,0,0,0,0.23482,0.31708,0.38009,0,0,0,0,0,0,0,0.21426,0.29315,0.35024,0,0,0,0,0,0,0,0.22353,0.3036,0.36313,0,0,0,0,0,0,0,0.21789,0.29095,0.34612,0,0,0,0,0,0,0,0.22817,0.3055,0.35907,0,0,0,0,0,0,0,0.20255,0.27295,0.31667,0,0,0,0,0,0,0,0.00268,0.00406,0.00718,0,0,0.00075,0.00118,0.00158,0.00242,0,0.00242,0.00366,0.00642,0,0,0.00072,0.00114,0.00151,0.00228,0,0.00264,0.00401,0.00704,0,0,0.00073,0.00116,0.00154,0.00235,0,0.00282,0.00429,0.00762,0,0,0.00076,0.0012,0.0016,0.00247,0,0.00163,0.00248,0.00421,0,0,0.00065,0.001,0.00131,0.00191,0,0.00181,0.00284,0.00473,0,0,0.00066,0.00102,0.00134,0.00197,0,0.00158,0.00241,0.00409,0,0,0.00062,0.00095,0.00124,0.0018,0,0.00201,0.00305,0.00527,0,0,0.00067,0.00105,0.00138,0.00204,0,0.00159,0.00241,0.0041,0,0,0.0006,0.00093,0.0012,0.00174,0,0.01991,0.023,0.03001,0,0,0.02205,0.02301,0.02393,0.02591,0,0.01982,0.02258,0.02873,0,0,0.02268,0.02358,0.02443,0.02625,0,0.02157,0.02462,0.03142,0,0,0.02472,0.02565,0.02654,0.02845,0,0.01945,0.02278,0.03033,0,0,0.02065,0.02163,0.02258,0.02463,0,0.0191,0.02094,0.02469,0,0,0.02407,0.02483,0.0255,0.02685,0,0.01824,0.02054,0.02464,0,0,0.02195,0.02273,0.02343,0.02488,0,0.0177,0.01947,0.0231,0,0,0.02197,0.02268,0.0233,0.02456,0,0.0193,0.02159,0.0265,0,0,0.02314,0.02395,0.02469,0.02622,0,0.01815,0.0199,0.02354,0,0,0.02287,0.02357,0.02416,0.02535,0,0.00694,0.00968,0.01588,0,0,0.00409,0.00494,0.00575,0.0075,0,0.00649,0.00893,0.01437,0,0,0.00411,0.00492,0.00567,0.00727,0,0.00709,0.00979,0.01581,0,0,0.0044,0.00522,0.00601,0.00769,0,0.00714,0.01009,0.01677,0,0,0.00393,0.0048,0.00563,0.00745,0,0.00508,0.0067,0.01003,0,0,0.00414,0.00481,0.00539,0.0066,0,0.00528,0.00727,0.01095,0,0,0.00389,0.00458,0.0052,0.00649,0,0.00482,0.00639,0.0096,0,0,0.00382,0.00445,0.005,0.0061,0,0.00574,0.00776,0.0121,0,0,0.00407,0.00479,0.00544,0.0068,0,0.00488,0.00643,0.00965,0,0,0.0039,0.00452,0.00504,0.0061,0,0.00624,0.00557,0.00189,0,0,0,0,0,0,0,0.0063,0.00561,0.0019,0,0,0,0,0,0,0,0.0064,0.00571,0.00193,0,0,0,0,0,0,0,0.00625,0.00557,0.00189,0,0,0,0,0,0,0,0.00642,0.0057,0.00192,0,0,0,0,0,0,0,0.00631,0.00564,0.00189,0,0,0,0,0,0,0,0.00636,0.00565,0.0019,0,0,0,0,0,0,0,0.00636,0.00566,0.00191,0,0,0,0,0,0,0,0.00624,0.00555,0.00187,0,0,0,0,0,0,0,0.17309,0.22998,0.2398,0,0,0,0,0,0,0,0.15347,0.21022,0.21897,0,0,0,0,0,0,0,0.1771,0.24228,0.2516,0,0,0,0,0,0,0,0.19699,0.26858,0.2782,0,0,0,0,0,0,0,0.10102,0.15389,0.15872,0,0,0,0,0,0,0,0.12241,0.18503,0.18602,0,0,0,0,0,0,0,0.09829,0.14818,0.15274,0,0,0,0,0,0,0,0.12955,0.18426,0.19085,0,0,0,0,0,0,0,0.08757,0.13193,0.13585,0,0,0,0,0,0 +Mini car,PH40E,2010,0,0.01481,0.01519,0.0158,0.01761,0,0,0,0,0,0,0.01523,0.01556,0.0161,0.01766,0,0,0,0,0,0,0.01654,0.01691,0.01751,0.01927,0,0,0,0,0,0,0.01406,0.01448,0.01516,0.01718,0,0,0,0,0,0,0.01607,0.01628,0.01662,0.01754,0,0,0,0,0,0,0.01484,0.01511,0.01547,0.01656,0,0,0,0,0,0,0.01476,0.01496,0.01529,0.01616,0,0,0,0,0,0,0.01552,0.0158,0.01623,0.01746,0,0,0,0,0,0,0.0152,0.01541,0.01572,0.01657,0,0,0,0,0,0,0.0233,0.01608,0.0124,0.01619,0,0,0,0,0,0,0.02006,0.0145,0.01137,0.01498,0,0,0,0,0,0,0.02274,0.01708,0.01339,0.0178,0,0,0,0,0,0,0.02629,0.01951,0.01521,0.01991,0,0,0,0,0,0,0.0127,0.01164,0.00972,0.01296,0,0,0,0,0,0,0.01475,0.01334,0.01078,0.0145,0,0,0,0,0,0,0.01231,0.01135,0.00951,0.01264,0,0,0,0,0,0,0.01643,0.01336,0.01076,0.01427,0,0,0,0,0,0,0.01184,0.01035,0.00849,0.01102,0,0,0,0,0,0,1.17276,1.82263,2.44097,3.12993,0,0,0,0,0,0,1.09815,1.79091,2.41803,3.09727,0,0,0,0,0,0,1.17422,1.99584,2.75458,3.57117,0,0,0,0,0,0,1.27726,2.16319,2.99139,3.86137,0,0,0,0,0,0,0.97501,1.8268,2.5641,3.2932,0,0,0,0,0,0,1.02648,1.92498,2.6668,3.44531,0,0,0,0,0,0,1.00634,1.86109,2.60414,3.33232,0,0,0,0,0,0,1.0597,1.85397,2.5515,3.27173,0,0,0,0,0,0,0.89787,1.60136,2.18358,2.76796,0,0,0,0,0,0,186.9143,188.2429,190.51619,194.49683,0,0,0,0,0,0,188.6885,189.91503,192.02638,195.76031,0,0,0,0,0,0,191.75741,193.03652,195.23737,199.12102,0,0,0,0,0,0,187.02917,188.3715,190.68349,194.72947,0,0,0,0,0,0,192.54492,193.39529,194.90462,197.71327,0,0,0,0,0,0,189.25482,190.93947,191.97744,195.1282,0,0,0,0,0,0,190.71334,191.52836,192.98546,195.70913,0,0,0,0,0,0,190.69878,191.71205,193.48253,196.692,0,0,0,0,0,0,187.1861,188.08037,189.63382,192.48847,0,0,0,0,0,0,0.00342,0.00387,0.00462,0.00603,0,0,0,0,0,0,0.00343,0.00388,0.00462,0.00603,0,0,0,0,0,0,0.00344,0.00388,0.00462,0.00602,0,0,0,0,0,0,0.00347,0.00393,0.00469,0.00613,0,0,0,0,0,0,0.00345,0.00389,0.00463,0.00604,0,0,0,0,0,0,0.00348,0.00393,0.00469,0.00613,0,0,0,0,0,0,0.00344,0.00389,0.00464,0.00606,0,0,0,0,0,0,0.00345,0.0039,0.00465,0.00606,0,0,0,0,0,0,0.00339,0.00383,0.00457,0.00596,0,0,0,0,0,0,0.00845,0.0098,0.01264,0.0135,0,0,0,0,0,0,0.00847,0.00982,0.01267,0.01353,0,0,0,0,0,0,0.00849,0.00985,0.01271,0.01357,0,0,0,0,0,0,0.00839,0.00973,0.01256,0.01341,0,0,0,0,0,0,0.00848,0.00983,0.01269,0.01355,0,0,0,0,0,0,0.00842,0.00977,0.0126,0.01346,0,0,0,0,0,0,0.00844,0.0098,0.01264,0.0135,0,0,0,0,0,0,0.00848,0.00983,0.01269,0.01355,0,0,0,0,0,0,0.0085,0.00986,0.01272,0.01358,0,0,0,0,0,0,0.05434,0.08882,0.09489,0.15927,0,0,0,0,0,0,0.05204,0.08849,0.09424,0.15894,0,0,0,0,0,0,0.05409,0.09763,0.10292,0.17853,0,0,0,0,0,0,0.05621,0.10373,0.10941,0.19038,0,0,0,0,0,0,0.04844,0.09163,0.09647,0.17054,0,0,0,0,0,0,0.05123,0.09649,0.10153,0.17871,0,0,0,0,0,0,0.04957,0.09158,0.09641,0.16903,0,0,0,0,0,0,0.0543,0.09786,0.10176,0.17607,0,0,0,0,0,0,0.04887,0.08687,0.09017,0.1539,0,0,0,0,0,0,0.0011,0.00169,0.00262,0.00538,0,0,0.00075,0.00119,0.00159,0,0.00103,0.00158,0.00243,0.00491,0,0,0.00072,0.00114,0.00151,0,0.00109,0.00167,0.00258,0.0053,0,0,0.00073,0.00116,0.00154,0,0.00115,0.00178,0.00276,0.00573,0,0,0.00075,0.0012,0.00161,0,0.00086,0.00129,0.00194,0.00361,0,0,0.00064,0.00101,0.00131,0,0.00089,0.00137,0.00206,0.00392,0,0,0.00065,0.00102,0.00134,0,0.00085,0.00127,0.00191,0.00353,0,0,0.00061,0.00096,0.00124,0,0.00094,0.00143,0.00218,0.00424,0,0,0.00067,0.00105,0.00138,0,0.00085,0.00128,0.00192,0.00353,0,0,0.0006,0.00093,0.0012,0,0.01663,0.01799,0.0201,0.02645,0,0,0.02204,0.02302,0.02394,0,0.01694,0.01818,0.0201,0.02573,0,0,0.02267,0.02359,0.02444,0,0.01834,0.01967,0.02175,0.02797,0,0,0.02471,0.02566,0.02655,0,0.01596,0.01741,0.01968,0.02656,0,0,0.02064,0.02164,0.02259,0,0.0175,0.01843,0.01984,0.02351,0,0,0.02407,0.02483,0.0255,0,0.01633,0.01745,0.01887,0.02303,0,0,0.02194,0.02274,0.02344,0,0.01617,0.01708,0.01846,0.022,0,0,0.02197,0.02269,0.02331,0,0.0171,0.01818,0.01984,0.02446,0,0,0.02313,0.02395,0.02469,0,0.01663,0.01753,0.01891,0.02242,0,0,0.02287,0.02357,0.02416,0,0.00404,0.00524,0.00711,0.01272,0,0,0.00408,0.00495,0.00576,0,0.00395,0.00504,0.00674,0.01172,0,0,0.00411,0.00492,0.00568,0,0.00423,0.00541,0.00725,0.01275,0,0,0.00439,0.00523,0.00601,0,0.00406,0.00534,0.00735,0.01343,0,0,0.00392,0.0048,0.00564,0,0.00367,0.00449,0.00573,0.00898,0,0,0.00413,0.00481,0.0054,0,0.0036,0.00454,0.00584,0.00952,0,0,0.00388,0.00459,0.00521,0,0.00347,0.00427,0.00549,0.00863,0,0,0.00381,0.00445,0.005,0,0.00379,0.00474,0.00621,0.0103,0,0,0.00406,0.00479,0.00545,0,0.00353,0.00434,0.00555,0.00866,0,0,0.0039,0.00452,0.00504,0,0.00612,0.00544,0.00183,0.00187,0,0,0,0,0,0,0.00618,0.00548,0.00185,0.00188,0,0,0,0,0,0,0.00628,0.00557,0.00188,0.00192,0,0,0,0,0,0,0.00612,0.00544,0.00184,0.00187,0,0,0,0,0,0,0.00631,0.00558,0.00188,0.0019,0,0,0,0,0,0,0.0062,0.00551,0.00185,0.00188,0,0,0,0,0,0,0.00625,0.00553,0.00186,0.00188,0,0,0,0,0,0,0.00624,0.00554,0.00186,0.00189,0,0,0,0,0,0,0.00613,0.00543,0.00183,0.00185,0,0,0,0,0,0,0.06856,0.09639,0.13066,0.18895,0,0,0,0,0,0,0.05804,0.0852,0.11788,0.17183,0,0,0,0,0,0,0.06684,0.10061,0.139,0.20306,0,0,0,0,0,0,0.07819,0.11615,0.1591,0.22947,0,0,0,0,0,0,0.03405,0.06278,0.09489,0.13833,0,0,0,0,0,0,0.04072,0.0738,0.10673,0.15712,0,0,0,0,0,0,0.0325,0.0604,0.09201,0.1339,0,0,0,0,0,0,0.04612,0.07522,0.10829,0.15788,0,0,0,0,0,0,0.0312,0.05543,0.0827,0.11807,0,0,0,0,0 +Mini car,PH40E,2015,0,0,0.01472,0.01501,0.01556,0.0169,0,0,0,0,0,0,0.01516,0.01542,0.01592,0.0171,0,0,0,0,0,0,0.01645,0.01674,0.01728,0.01859,0,0,0,0,0,0,0.01395,0.01427,0.01487,0.01635,0,0,0,0,0,0,0.01605,0.01623,0.01657,0.01731,0,0,0,0,0,0,0.01482,0.01501,0.01539,0.01626,0,0,0,0,0,0,0.01474,0.01492,0.01525,0.01597,0,0,0,0,0,0,0.01548,0.0157,0.01612,0.01708,0,0,0,0,0,0,0.01519,0.01536,0.01568,0.01638,0,0,0,0,0,0,0.01742,0.01145,0.01031,0.01187,0,0,0,0,0,0,0.01576,0.01061,0.00975,0.01121,0,0,0,0,0,0,0.01724,0.01232,0.01135,0.01315,0,0,0,0,0,0,0.01925,0.01375,0.0126,0.01457,0,0,0,0,0,0,0.01111,0.0091,0.00907,0.01044,0,0,0,0,0,0,0.01288,0.01009,0.00991,0.01145,0,0,0,0,0,0,0.01089,0.00892,0.00895,0.01028,0,0,0,0,0,0,0.01346,0.01009,0.00964,0.01109,0,0,0,0,0,0,0.0105,0.00811,0.00796,0.00903,0,0,0,0,0,0,0.92327,1.62722,2.1773,2.69171,0,0,0,0,0,0,0.90739,1.62572,2.19382,2.70338,0,0,0,0,0,0,0.94447,1.80348,2.49233,3.0924,0,0,0,0,0,0,1.01873,1.94001,2.68846,3.32436,0,0,0,0,0,0,0.85664,1.74617,2.44953,2.99999,0,0,0,0,0,0,0.89558,1.79188,2.51971,3.10255,0,0,0,0,0,0,0.88373,1.78575,2.49771,3.05148,0,0,0,0,0,0,0.89483,1.73112,2.38306,2.92436,0,0,0,0,0,0,0.79357,1.53256,2.0877,2.53785,0,0,0,0,0,0,169.35439,170.62991,171.88039,175.75356,0,0,0,0,0,0,170.91878,172.07964,173.17609,176.83946,0,0,0,0,0,0,173.71309,174.92961,176.09338,179.89186,0,0,0,0,0,0,169.47561,170.76946,172.05288,175.98614,0,0,0,0,0,0,174.26085,175.00149,175.53604,178.40736,0,0,0,0,0,0,171.97064,172.24245,172.99448,176.1556,0,0,0,0,0,0,172.59753,173.30214,173.79701,176.59259,0,0,0,0,0,0,172.65472,173.57782,174.35692,177.57123,0,0,0,0,0,0,169.41969,170.20959,170.80996,173.70645,0,0,0,0,0,0,0.00222,0.00251,0.0029,0.00387,0,0,0,0,0,0,0.00223,0.00252,0.00291,0.00388,0,0,0,0,0,0,0.00226,0.00254,0.00293,0.00389,0,0,0,0,0,0,0.00224,0.00253,0.00293,0.00392,0,0,0,0,0,0,0.00226,0.00255,0.00293,0.00389,0,0,0,0,0,0,0.00226,0.00255,0.00295,0.00393,0,0,0,0,0,0,0.00224,0.00253,0.00292,0.00389,0,0,0,0,0,0,0.00225,0.00254,0.00293,0.0039,0,0,0,0,0,0,0.00222,0.0025,0.00288,0.00384,0,0,0,0,0,0,0.00845,0.00987,0.01264,0.01273,0,0,0,0,0,0,0.00847,0.00989,0.01267,0.01276,0,0,0,0,0,0,0.00849,0.00992,0.01271,0.0128,0,0,0,0,0,0,0.00839,0.0098,0.01256,0.01264,0,0,0,0,0,0,0.00848,0.00991,0.01269,0.01278,0,0,0,0,0,0,0.00842,0.00984,0.0126,0.01269,0,0,0,0,0,0,0.00844,0.00987,0.01264,0.01273,0,0,0,0,0,0,0.00848,0.00991,0.01269,0.01278,0,0,0,0,0,0,0.0085,0.00993,0.01272,0.0128,0,0,0,0,0,0,0.04436,0.05877,0.08401,0.11345,0,0,0,0,0,0,0.04393,0.05803,0.08324,0.11256,0,0,0,0,0,0,0.0447,0.06358,0.09068,0.1239,0,0,0,0,0,0,0.04685,0.0678,0.0967,0.13236,0,0,0,0,0,0,0.03952,0.05803,0.08418,0.11607,0,0,0,0,0,0,0.04231,0.06161,0.08901,0.12254,0,0,0,0,0,0,0.04021,0.05801,0.0843,0.11581,0,0,0,0,0,0,0.04439,0.06223,0.0893,0.12167,0,0,0,0,0,0,0.04003,0.05477,0.07885,0.1068,0,0,0,0,0,0,0.00101,0.00151,0.00239,0.00433,0,0,0.00075,0.00119,0,0,0.00097,0.00144,0.00226,0.00404,0,0,0.00072,0.00114,0,0,0.001,0.0015,0.00236,0.00428,0,0,0.00073,0.00116,0,0,0.00104,0.00156,0.00247,0.00454,0,0,0.00075,0.0012,0,0,0.00083,0.00123,0.00189,0.00324,0,0,0.00064,0.00101,0,0,0.00087,0.00127,0.00198,0.00343,0,0,0.00065,0.00103,0,0,0.00083,0.00122,0.00187,0.00319,0,0,0.00061,0.00096,0,0,0.0009,0.00133,0.00208,0.00364,0,0,0.00067,0.00105,0,0,0.00083,0.00122,0.00188,0.0032,0,0,0.0006,0.00093,0,0,0.0164,0.01751,0.0195,0.02402,0,0,0.02205,0.02303,0,0,0.01676,0.0178,0.01964,0.02375,0,0,0.02267,0.02359,0,0,0.01812,0.01921,0.02117,0.02561,0,0,0.02471,0.02567,0,0,0.01568,0.01684,0.01894,0.02379,0,0,0.02065,0.02165,0,0,0.01744,0.01827,0.01971,0.02268,0,0,0.02407,0.02484,0,0,0.01633,0.01713,0.01867,0.02193,0,0,0.02194,0.02274,0,0,0.01612,0.01694,0.01835,0.02125,0,0,0.02197,0.02269,0,0,0.01698,0.01791,0.01955,0.02307,0,0,0.02313,0.02396,0,0,0.01658,0.0174,0.0188,0.02168,0,0,0.02287,0.02357,0,0,0.00384,0.00482,0.00658,0.01057,0,0,0.00409,0.00495,0,0,0.00379,0.0047,0.00634,0.00997,0,0,0.00411,0.00493,0,0,0.00404,0.005,0.00674,0.01067,0,0,0.00439,0.00523,0,0,0.00381,0.00484,0.00669,0.01098,0,0,0.00393,0.00481,0,0,0.00361,0.00435,0.00562,0.00824,0,0,0.00413,0.00481,0,0,0.00355,0.0043,0.00566,0.00855,0,0,0.00389,0.00459,0,0,0.00343,0.00415,0.0054,0.00796,0,0,0.00381,0.00446,0,0,0.00368,0.00451,0.00596,0.00907,0,0,0.00407,0.0048,0,0,0.00349,0.00421,0.00546,0.008,0,0,0.0039,0.00452,0,0,0.00489,0.00164,0.00165,0.00169,0,0,0,0,0,0,0.00494,0.00166,0.00167,0.0017,0,0,0,0,0,0,0.00502,0.00168,0.00169,0.00173,0,0,0,0,0,0,0.00489,0.00164,0.00166,0.00169,0,0,0,0,0,0,0.00503,0.00168,0.00169,0.00172,0,0,0,0,0,0,0.00497,0.00166,0.00167,0.0017,0,0,0,0,0,0,0.00498,0.00167,0.00167,0.0017,0,0,0,0,0,0,0.00499,0.00167,0.00168,0.00171,0,0,0,0,0,0,0.00489,0.00164,0.00164,0.00167,0,0,0,0,0,0,0.04928,0.07166,0.10582,0.14492,0,0,0,0,0,0,0.0437,0.06543,0.09872,0.13516,0,0,0,0,0,0,0.04855,0.076,0.11478,0.15834,0,0,0,0,0,0,0.05496,0.0854,0.12808,0.17642,0,0,0,0,0,0,0.02847,0.05282,0.08723,0.12006,0,0,0,0,0,0,0.03417,0.05946,0.09647,0.13313,0,0,0,0,0,0,0.02754,0.05133,0.0854,0.11742,0,0,0,0,0,0,0.03605,0.06034,0.09503,0.13044,0,0,0,0,0,0,0.02646,0.0469,0.07642,0.10373,0,0,0,0 +Mini car,PH40E,2020,0,0,0,0.01462,0.01485,0.0152,0.01625,0,0,0,0,0,0,0.01507,0.01528,0.01559,0.01653,0,0,0,0,0,0,0.01636,0.01658,0.01692,0.01795,0,0,0,0,0,0,0.01384,0.01409,0.01447,0.01562,0,0,0,0,0,0,0.01599,0.01614,0.01635,0.01696,0,0,0,0,0,0,0.01475,0.0149,0.01515,0.01585,0,0,0,0,0,0,0.01469,0.01483,0.01504,0.01563,0,0,0,0,0,0,0.01541,0.01558,0.01585,0.01662,0,0,0,0,0,0,0.01513,0.01527,0.01548,0.01605,0,0,0,0,0,0,0.0134,0.0092,0.00759,0.00884,0,0,0,0,0,0,0.01189,0.00837,0.00704,0.00825,0,0,0,0,0,0,0.01323,0.00973,0.0082,0.00975,0,0,0,0,0,0,0.01496,0.01095,0.00918,0.01087,0,0,0,0,0,0,0.00762,0.00659,0.00601,0.00735,0,0,0,0,0,0,0.00892,0.00748,0.00671,0.00819,0,0,0,0,0,0,0.00738,0.00643,0.00591,0.00722,0,0,0,0,0,0,0.00975,0.00763,0.00666,0.00799,0,0,0,0,0,0,0.00707,0.00585,0.00527,0.0063,0,0,0,0,0,0,0.72676,1.08045,1.34617,1.79655,0,0,0,0,0,0,0.7098,1.06696,1.33753,1.78905,0,0,0,0,0,0,0.74496,1.18329,1.51578,2.06536,0,0,0,0,0,0,0.80954,1.28613,1.65507,2.24182,0,0,0,0,0,0,0.6579,1.10533,1.43117,1.95065,0,0,0,0,0,0,0.68397,1.14593,1.48913,2.0385,0,0,0,0,0,0,0.67711,1.13261,1.4639,1.98691,0,0,0,0,0,0,0.69348,1.11454,1.4204,1.92003,0,0,0,0,0,0,0.60644,0.97302,1.22576,1.63977,0,0,0,0,0,0,134.50766,135.44766,136.35274,144.41172,0,0,0,0,0,0,135.66845,136.51713,137.29339,145.19583,0,0,0,0,0,0,137.91364,138.80554,139.63582,147.73811,0,0,0,0,0,0,134.63523,135.59225,136.52692,144.64593,0,0,0,0,0,0,138.03345,138.54737,138.85676,146.10143,0,0,0,0,0,0,135.83994,136.4808,136.97271,144.41428,0,0,0,0,0,0,136.70446,137.19165,137.46992,144.60075,0,0,0,0,0,0,136.88482,137.54428,138.05669,145.58217,0,0,0,0,0,0,134.21691,134.76904,135.13235,142.27394,0,0,0,0,0,0,0.00226,0.00252,0.00289,0.00357,0,0,0,0,0,0,0.00227,0.00253,0.0029,0.00358,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00359,0,0,0,0,0,0,0.00228,0.00254,0.00292,0.00361,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.0023,0.00256,0.00293,0.00363,0,0,0,0,0,0,0.00228,0.00254,0.0029,0.00359,0,0,0,0,0,0,0.00229,0.00255,0.00292,0.0036,0,0,0,0,0,0,0.00226,0.00251,0.00287,0.00354,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00988,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.03062,0.04725,0.06336,0.0848,0,0,0,0,0,0,0.03,0.04643,0.06245,0.08372,0,0,0,0,0,0,0.03074,0.05067,0.06773,0.09219,0,0,0,0,0,0,0.0325,0.05435,0.0727,0.09918,0,0,0,0,0,0,0.02585,0.04509,0.06122,0.08429,0,0,0,0,0,0,0.02809,0.0484,0.06549,0.08997,0,0,0,0,0,0,0.02625,0.04528,0.06163,0.08439,0,0,0,0,0,0,0.02941,0.04916,0.06613,0.08963,0,0,0,0,0,0,0.02585,0.04281,0.05775,0.07762,0,0,0,0,0,0,0.00085,0.00123,0.00178,0.0033,0,0,0.00075,0,0,0,0.00081,0.00117,0.00169,0.0031,0,0,0.00072,0,0,0,0.00084,0.00122,0.00176,0.00326,0,0,0.00073,0,0,0,0.00087,0.00126,0.00184,0.00344,0,0,0.00076,0,0,0,0.00071,0.00101,0.00143,0.00252,0,0,0.00065,0,0,0,0.00073,0.00104,0.00149,0.00266,0,0,0.00065,0,0,0,0.00071,0.001,0.00141,0.00249,0,0,0.00062,0,0,0,0.00076,0.00109,0.00156,0.00281,0,0,0.00067,0,0,0,0.00071,0.00101,0.00142,0.00249,0,0,0.0006,0,0,0,0.01603,0.01687,0.01813,0.02166,0,0,0.02205,0,0,0,0.01642,0.01721,0.01838,0.02162,0,0,0.02267,0,0,0,0.01775,0.01859,0.01983,0.0233,0,0,0.02472,0,0,0,0.01528,0.01617,0.0175,0.02126,0,0,0.02065,0,0,0,0.01718,0.01781,0.01872,0.02114,0,0,0.02407,0,0,0,0.01596,0.01663,0.01761,0.02025,0,0,0.02195,0,0,0,0.01586,0.01649,0.01738,0.01975,0,0,0.02197,0,0,0,0.01668,0.01739,0.01843,0.02125,0,0,0.02314,0,0,0,0.01632,0.01694,0.01783,0.02018,0,0,0.02287,0,0,0,0.00351,0.00425,0.00537,0.00849,0,0,0.00409,0,0,0,0.00348,0.00418,0.00522,0.00808,0,0,0.00411,0,0,0,0.00371,0.00445,0.00555,0.00862,0,0,0.0044,0,0,0,0.00346,0.00424,0.00542,0.00875,0,0,0.00393,0,0,0,0.00338,0.00394,0.00474,0.00688,0,0,0.00413,0,0,0,0.00327,0.00386,0.00473,0.00706,0,0,0.00389,0,0,0,0.0032,0.00375,0.00454,0.00664,0,0,0.00382,0,0,0,0.00341,0.00404,0.00496,0.00746,0,0,0.00407,0,0,0,0.00326,0.00381,0.0046,0.00668,0,0,0.0039,0,0,0,0.00129,0.0013,0.00131,0.00139,0,0,0,0,0,0,0.00131,0.00131,0.00132,0.0014,0,0,0,0,0,0,0.00133,0.00134,0.00134,0.00142,0,0,0,0,0,0,0.0013,0.00131,0.00131,0.00139,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00141,0,0,0,0,0,0,0.00131,0.00131,0.00132,0.00139,0,0,0,0,0,0,0.00132,0.00132,0.00132,0.00139,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.0014,0,0,0,0,0,0,0.00129,0.0013,0.0013,0.00137,0,0,0,0,0,0,0.04108,0.05721,0.07809,0.10912,0,0,0,0,0,0,0.03606,0.05132,0.0712,0.10039,0,0,0,0,0,0,0.04053,0.05963,0.08282,0.11862,0,0,0,0,0,0,0.04614,0.06749,0.09329,0.13303,0,0,0,0,0,0,0.02204,0.0376,0.0565,0.08453,0,0,0,0,0,0,0.02635,0.04348,0.06418,0.09537,0,0,0,0,0,0,0.02114,0.03632,0.05497,0.08231,0,0,0,0,0,0,0.02901,0.04516,0.06494,0.09443,0,0,0,0,0,0,0.02016,0.03323,0.04937,0.07221,0,0,0 +Mini car,PH40E,2025,0,0,0,0,0.01447,0.01461,0.01484,0.01556,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01591,0,0,0,0,0,0,0.01621,0.01635,0.01658,0.01728,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01487,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01655,0,0,0,0,0,0,0.01463,0.01473,0.0149,0.01538,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01523,0,0,0,0,0,0,0.01529,0.0154,0.01557,0.0161,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01566,0,0,0,0,0,0,0.01175,0.00745,0.00589,0.0068,0,0,0,0,0,0,0.0102,0.00659,0.00531,0.00619,0,0,0,0,0,0,0.01152,0.00769,0.00619,0.00731,0,0,0,0,0,0,0.0132,0.00876,0.00702,0.00823,0,0,0,0,0,0,0.00581,0.00451,0.00398,0.00493,0,0,0,0,0,0,0.0071,0.00531,0.00459,0.00564,0,0,0,0,0,0,0.00555,0.00435,0.00387,0.00481,0,0,0,0,0,0,0.00797,0.00562,0.00471,0.00566,0,0,0,0,0,0,0.00529,0.00397,0.00347,0.00422,0,0,0,0,0,0,0.54269,0.78169,0.98281,1.29253,0,0,0,0,0,0,0.51814,0.75785,0.96016,1.26692,0,0,0,0,0,0,0.54817,0.84174,1.08757,1.45743,0,0,0,0,0,0,0.60445,0.92727,1.20144,1.59986,0,0,0,0,0,0,0.44449,0.73889,0.97286,1.31136,0,0,0,0,0,0,0.4724,0.77858,1.02643,1.38704,0,0,0,0,0,0,0.45672,0.75774,0.9963,1.33773,0,0,0,0,0,0,0.4871,0.76702,0.99053,1.32211,0,0,0,0,0,0,0.41063,0.65251,0.8358,1.10802,0,0,0,0,0,0,108.83189,109.64422,110.59037,117.50382,0,0,0,0,0,0,109.70596,110.44178,111.27562,118.04139,0,0,0,0,0,0,111.54336,112.31587,113.20016,120.14203,0,0,0,0,0,0,108.96082,109.7884,110.76271,117.73489,0,0,0,0,0,0,111.38871,111.84311,112.26831,118.42254,0,0,0,0,0,0,109.71215,110.2732,110.85759,117.20119,0,0,0,0,0,0,110.30728,110.73915,111.13654,117.19245,0,0,0,0,0,0,110.56057,111.13728,111.74034,118.1562,0,0,0,0,0,0,108.32229,108.80715,109.27323,115.34078,0,0,0,0,0,0,0.00228,0.00252,0.00288,0.00351,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.00229,0.00254,0.00291,0.00355,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00231,0.00256,0.00292,0.00357,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00353,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00227,0.00251,0.00286,0.00348,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02345,0.03423,0.04552,0.06209,0,0,0,0,0,0,0.0227,0.03329,0.04444,0.06079,0,0,0,0,0,0,0.02329,0.03604,0.04786,0.06653,0,0,0,0,0,0,0.02485,0.03895,0.05174,0.07201,0,0,0,0,0,0,0.01846,0.03058,0.04149,0.05865,0,0,0,0,0,0,0.02058,0.0335,0.04518,0.06356,0,0,0,0,0,0,0.01881,0.03086,0.04195,0.05894,0,0,0,0,0,0,0.02154,0.03409,0.04569,0.06347,0,0,0,0,0,0,0.01842,0.02914,0.03928,0.05421,0,0,0.04953,0,0,0,0.00056,0.00079,0.00116,0.00221,0,0,0.04325,0,0,0,0.00053,0.00075,0.0011,0.00208,0,0,0.04823,0,0,0,0.00055,0.00078,0.00115,0.00218,0,0,0.05311,0,0,0,0.00057,0.00081,0.0012,0.0023,0,0,0.02579,0,0,0,0.00046,0.00065,0.00093,0.0017,0,0,0.03017,0,0,0,0.00048,0.00067,0.00097,0.00179,0,0,0.02477,0,0,0,0.00046,0.00064,0.00092,0.00168,0,0,0.03429,0,0,0,0.0005,0.0007,0.00102,0.00189,0,0,0.02451,0,0,0,0.00046,0.00065,0.00093,0.00168,0,0,0.13141,0,0,0,0.01539,0.01591,0.01676,0.01919,0,0,0.11768,0,0,0,0.01582,0.0163,0.01709,0.01933,0,0,0.13192,0,0,0,0.01712,0.01763,0.01847,0.02086,0,0,0.13906,0,0,0,0.01462,0.01517,0.01606,0.01864,0,0,0.07947,0,0,0,0.01667,0.01706,0.01767,0.01936,0,0,0.08737,0,0,0,0.01543,0.01584,0.0165,0.01834,0,0,0.075,0,0,0,0.01536,0.01574,0.01635,0.01801,0,0,0.098,0,0,0,0.01612,0.01656,0.01726,0.01922,0,0,0.07487,0,0,0,0.01581,0.01619,0.0168,0.01844,0,0,0.10083,0,0,0,0.00294,0.0034,0.00415,0.0063,0,0,0.08815,0,0,0,0.00295,0.00338,0.00408,0.00606,0,0,0.09923,0,0,0,0.00315,0.00361,0.00435,0.00647,0,0,0.10868,0,0,0,0.00288,0.00336,0.00415,0.00643,0,0,0.05314,0,0,0,0.00292,0.00327,0.00382,0.00531,0,0,0.06176,0,0,0,0.0028,0.00316,0.00375,0.00537,0,0,0.05073,0,0,0,0.00275,0.00309,0.00363,0.00509,0,0,0.0703,0,0,0,0.00292,0.00331,0.00393,0.00566,0,0,0.0499,0,0,0,0.00281,0.00315,0.00369,0.00514,0,0,0,0,0,0,0.00105,0.00106,0.00106,0.00113,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00114,0,0,0,0,0,0,0.00107,0.00108,0.00109,0.00116,0,0,0,0,0,0,0.00105,0.00106,0.00107,0.00113,0,0,0,0,0,0,0.00107,0.00108,0.00108,0.00114,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00113,0,0,0,0,0,0,0.00106,0.00107,0.00107,0.00113,0,0,0,0,0,0,0.00106,0.00107,0.00108,0.00114,0,0,0,0,0,0,0.00104,0.00105,0.00105,0.00111,0,0,0,0,0,0,0.03648,0.04753,0.06259,0.08583,0,0,0,0,0,0,0.03131,0.0415,0.05547,0.07697,0,0,0,0,0,0,0.0357,0.04837,0.06468,0.09081,0,0,0,0,0,0,0.04118,0.0555,0.07382,0.10302,0,0,0,0,0,0,0.01683,0.02613,0.03814,0.05716,0,0,0,0,0,0,0.02108,0.03156,0.04501,0.06652,0,0,0,0,0,0,0.01591,0.02492,0.0367,0.05518,0,0,0,0,0,0,0.02395,0.0341,0.0473,0.06809,0,0,0,0,0,0,0.01512,0.02291,0.03317,0.04876,0,0 +Mini car,PH40E,2030,0,0,0,0,0,0.01447,0.01461,0.01484,0.01537,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01574,0,0,0,0,0,0,0.01621,0.01634,0.01658,0.01709,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01466,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01644,0,0,0,0,0,0,0.01463,0.01473,0.01489,0.01525,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01512,0,0,0,0,0,0,0.01529,0.01539,0.01557,0.01597,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01555,0,0,0,0,0,0,0.01118,0.00689,0.00539,0.00599,0,0,0,0,0,0,0.00961,0.00603,0.0048,0.00537,0,0,0,0,0,0,0.01092,0.00703,0.0056,0.00631,0,0,0,0,0,0,0.01258,0.00806,0.00638,0.00716,0,0,0,0,0,0,0.0052,0.00385,0.00339,0.00394,0,0,0,0,0,0,0.00648,0.00463,0.00397,0.00459,0,0,0,0,0,0,0.00493,0.0037,0.00328,0.00382,0,0,0,0,0,0,0.00737,0.00499,0.00414,0.00472,0,0,0,0,0,0,0.0047,0.00339,0.00295,0.00338,0,0,0,0,0,0,0.49279,0.70559,0.89367,1.12069,0,0,0,0,0,0,0.46645,0.67934,0.86771,1.08836,0,0,0,0,0,0,0.49502,0.75487,0.98288,1.24543,0,0,0,0,0,0,0.54881,0.83547,1.09017,1.37543,0,0,0,0,0,0,0.38758,0.64643,0.86099,1.08788,0,0,0,0,0,0,0.41574,0.68553,0.91328,1.15812,0,0,0,0,0,0,0.39792,0.66302,0.88193,1.11097,0,0,0,0,0,0,0.4317,0.67912,0.88539,1.1145,0,0,0,0,0,0,0.35828,0.57172,0.74034,0.92474,0,0,0,0,0,0,100.15285,101.1639,102.73024,107.15133,0,0,0,0,0,0,100.93296,101.87507,103.33899,107.60231,0,0,0,0,0,0,102.63155,103.61218,105.13573,109.53052,0,0,0,0,0,0,100.28143,101.30717,102.90246,107.37875,0,0,0,0,0,0,102.39547,103.0811,104.1621,107.81066,0,0,0,0,0,0,100.88931,101.66974,102.89378,106.75648,0,0,0,0,0,0,101.39806,102.06045,103.10852,106.68577,0,0,0,0,0,0,101.67116,102.46795,103.71499,107.62883,0,0,0,0,0,0,99.58131,100.2873,101.38751,105.01193,0,0,0,0,0,0,0.00227,0.00251,0.00287,0.00349,0,0,0,0,0,0,0.00229,0.00252,0.00288,0.0035,0,0,0,0,0,0,0.00231,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00229,0.00253,0.0029,0.00353,0,0,0,0,0,0,0.00231,0.00254,0.00291,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00229,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00227,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00979,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00982,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00988,0.01272,0.01272,0,0,0,0,0,0,0.02069,0.02955,0.03997,0.05281,0,0,0,0,0,0,0.01988,0.02857,0.03884,0.05142,0,0,0,0,0,0,0.02038,0.03077,0.04168,0.05581,0,0,0,0,0,0,0.02182,0.03338,0.04522,0.06056,0,0,0,0,0,0,0.0156,0.02539,0.03537,0.04796,0,0,0,0,0,0,0.01765,0.02815,0.03887,0.0525,0,0,0,0,0,0,0.01594,0.02569,0.03583,0.04836,0,0,0,0,0,0,0.01847,0.02867,0.03931,0.05259,0,0,0,0,0,0,0.01556,0.02425,0.03353,0.04463,0,0.0134,0.02933,0,0,0,0.00055,0.00079,0.00116,0.00193,0,0.01173,0.0256,0,0,0,0.00053,0.00075,0.0011,0.00181,0,0.01301,0.02854,0,0,0,0.00055,0.00078,0.00115,0.00191,0,0.01425,0.03131,0,0,0,0.00057,0.00081,0.0012,0.00201,0,0.00705,0.0152,0,0,0,0.00046,0.00065,0.00093,0.00149,0,0.0082,0.01773,0,0,0,0.00048,0.00067,0.00097,0.00157,0,0.0068,0.0146,0,0,0,0.00046,0.00064,0.00092,0.00147,0,0.00934,0.02027,0,0,0,0.0005,0.0007,0.00102,0.00165,0,0.00678,0.01454,0,0,0,0.00046,0.00064,0.00093,0.00148,0,0.05,0.08584,0,0,0,0.01539,0.0159,0.01676,0.01854,0,0.04694,0.07794,0,0,0,0.01581,0.0163,0.01709,0.01873,0,0.05206,0.08684,0,0,0,0.01712,0.01763,0.01847,0.02022,0,0.05078,0.08942,0,0,0,0.01462,0.01516,0.01606,0.01795,0,0.03804,0.05587,0,0,0,0.01666,0.01705,0.01767,0.01891,0,0.0385,0.05944,0,0,0,0.01543,0.01584,0.0165,0.01785,0,0.03541,0.0525,0,0,0,0.01535,0.01574,0.01635,0.01756,0,0.0422,0.06655,0,0,0,0.01612,0.01655,0.01726,0.01869,0,0.03615,0.0531,0,0,0,0.01581,0.01619,0.0168,0.018,0,0.02882,0.06052,0,0,0,0.00294,0.0034,0.00415,0.00573,0,0.02559,0.05301,0,0,0,0.00295,0.00338,0.00408,0.00553,0,0.02859,0.05935,0,0,0,0.00315,0.0036,0.00435,0.0059,0,0.03058,0.06476,0,0,0,0.00287,0.00335,0.00415,0.00582,0,0.01649,0.03227,0,0,0,0.00292,0.00327,0.00381,0.00491,0,0.01853,0.03706,0,0,0,0.0028,0.00316,0.00375,0.00494,0,0.01571,0.03083,0,0,0,0.00275,0.00309,0.00363,0.0047,0,0.02094,0.04248,0,0,0,0.00292,0.0033,0.00393,0.0052,0,0.01565,0.03065,0,0,0,0.00281,0.00315,0.00368,0.00475,0,0,0,0,0,0,0.00096,0.00097,0.00099,0.00103,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00104,0,0,0,0,0,0,0.00099,0.001,0.00101,0.00105,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00104,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00098,0.00098,0.00099,0.00103,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00104,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.00101,0,0,0,0,0,0,0.0348,0.04434,0.05814,0.07671,0,0,0,0,0,0,0.02962,0.0383,0.05099,0.06774,0,0,0,0,0,0,0.03395,0.04469,0.0595,0.07958,0,0,0,0,0,0,0.03934,0.05153,0.06825,0.09091,0,0,0,0,0,0,0.01511,0.02254,0.03298,0.04602,0,0,0,0,0,0,0.01931,0.02779,0.0396,0.05474,0,0,0,0,0,0,0.01418,0.02136,0.03155,0.04416,0,0,0,0,0,0,0.02222,0.03058,0.04231,0.05748,0,0,0,0,0,0,0.01346,0.0197,0.02861,0.03942,0 +Mini car,PH40E,2035,0,0,0,0,0,0,0.01447,0.01461,0.01484,0.01535,0,0,0,0,0,0,0.01494,0.01506,0.01527,0.01573,0,0,0,0,0,0,0.01621,0.01634,0.01658,0.01707,0,0,0,0,0,0,0.01368,0.01383,0.01409,0.01464,0,0,0,0,0,0,0.01589,0.01598,0.01612,0.01642,0,0,0,0,0,0,0.01463,0.01473,0.0149,0.01524,0,0,0,0,0,0,0.01459,0.01467,0.01481,0.01511,0,0,0,0,0,0,0.01529,0.0154,0.01557,0.01595,0,0,0,0,0,0,0.01504,0.01512,0.01526,0.01554,0,0,0,0,0,0,0.0111,0.00688,0.00539,0.00588,0,0,0,0,0,0,0.00955,0.00602,0.0048,0.00525,0,0,0,0,0,0,0.01085,0.00702,0.00561,0.00616,0,0,0,0,0,0,0.0125,0.00805,0.00639,0.007,0,0,0,0,0,0,0.00517,0.00385,0.00339,0.00378,0,0,0,0,0,0,0.00644,0.00463,0.00397,0.00442,0,0,0,0,0,0,0.00491,0.0037,0.00328,0.00366,0,0,0,0,0,0,0.00732,0.00499,0.00415,0.00457,0,0,0,0,0,0,0.00467,0.00339,0.00295,0.00325,0,0,0,0,0,0,0.49328,0.70624,0.8941,1.09646,0,0,0,0,0,0,0.46713,0.68,0.86809,1.06284,0,0,0,0,0,0,0.49582,0.75568,0.98332,1.21476,0,0,0,0,0,0,0.54965,0.83636,1.09066,1.34289,0,0,0,0,0,0,0.3889,0.64721,0.86124,1.05453,0,0,0,0,0,0,0.417,0.68635,0.91358,1.12407,0,0,0,0,0,0,0.3993,0.66379,0.88217,1.07713,0,0,0,0,0,0,0.43277,0.67983,0.8857,1.08401,0,0,0,0,0,0,0.35938,0.57229,0.74057,0.89763,0,0,0,0,0,0,100.12908,101.16888,102.73959,105.62821,0,0,0,0,0,0,100.91068,101.87976,103.34754,106.06452,0,0,0,0,0,0,102.60822,103.61713,105.14496,107.96812,0,0,0,0,0,0,100.25694,101.3122,102.91196,105.856,0,0,0,0,0,0,102.37799,103.08425,104.16796,106.23975,0,0,0,0,0,0,100.86988,101.67348,102.90085,105.21364,0,0,0,0,0,0,101.3812,102.06357,103.11422,105.13019,0,0,0,0,0,0,101.65163,102.4718,103.72222,106.07383,0,0,0,0,0,0,99.56447,100.29083,101.39397,103.48375,0,0,0,0,0,0,0.00227,0.00251,0.00288,0.0035,0,0,0,0,0,0,0.00228,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00352,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.0023,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00356,0,0,0,0,0,0,0.00228,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00353,0,0,0,0,0,0,0.00226,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.02067,0.02962,0.04,0.05143,0,0,0,0,0,0,0.01987,0.02864,0.03886,0.05001,0,0,0,0,0,0,0.02038,0.03085,0.04171,0.05417,0,0,0,0,0,0,0.02183,0.03347,0.04524,0.05879,0,0,0,0,0,0,0.01562,0.02547,0.03539,0.04628,0,0,0,0,0,0,0.01766,0.02823,0.03889,0.05078,0,0,0,0,0,0,0.01595,0.02577,0.03585,0.04671,0,0,0,0,0,0,0.01848,0.02874,0.03933,0.05091,0,0,0,0,0,0,0.01557,0.02432,0.03355,0.04316,0.00739,0.01035,0.02047,0,0,0,0.00055,0.00079,0.00116,0.0019,0.00648,0.00906,0.01784,0,0,0,0.00053,0.00075,0.0011,0.00179,0.00706,0.00989,0.01972,0,0,0,0.00055,0.00078,0.00115,0.00187,0.0077,0.0108,0.02167,0,0,0,0.00057,0.00081,0.0012,0.00197,0.00392,0.00545,0.01056,0,0,0,0.00046,0.00065,0.00093,0.00147,0.00451,0.00628,0.01276,0,0,0,0.00048,0.00067,0.00097,0.00155,0.00384,0.00532,0.01022,0,0,0,0.00046,0.00064,0.00092,0.00145,0.00517,0.00721,0.01411,0,0,0,0.0005,0.0007,0.00102,0.00163,0.0039,0.00541,0.01029,0,0,0,0.00046,0.00065,0.00093,0.00145,0.0363,0.04266,0.06576,0,0,0,0.01539,0.01591,0.01676,0.01847,0.03502,0.04051,0.06045,0,0,0,0.01582,0.0163,0.01709,0.01866,0.03846,0.04444,0.0669,0,0,0,0.01712,0.01763,0.01847,0.02015,0.03574,0.04245,0.06726,0,0,0,0.01462,0.01516,0.01606,0.01788,0.03106,0.03423,0.04562,0,0,0,0.01666,0.01705,0.01767,0.01886,0.03022,0.03389,0.04851,0,0,0,0.01543,0.01584,0.0165,0.01779,0.02881,0.03192,0.04276,0,0,0,0.01536,0.01574,0.01635,0.01751,0.03279,0.03713,0.05261,0,0,0,0.01612,0.01655,0.01726,0.01863,0.02979,0.03296,0.04372,0,0,0,0.01581,0.01619,0.0168,0.01795,0.0167,0.02233,0.04276,0,0,0,0.00294,0.0034,0.00415,0.00566,0.01503,0.0199,0.03754,0,0,0,0.00295,0.00338,0.00408,0.00547,0.01655,0.02185,0.04171,0,0,0,0.00315,0.00361,0.00435,0.00584,0.01727,0.02322,0.04516,0,0,0,0.00287,0.00336,0.00415,0.00576,0.01032,0.01312,0.0232,0,0,0,0.00292,0.00327,0.00381,0.00486,0.0112,0.01446,0.02732,0,0,0,0.0028,0.00316,0.00375,0.00489,0.00987,0.01262,0.02221,0,0,0,0.00275,0.00309,0.00363,0.00465,0.01261,0.01645,0.03015,0,0,0,0.00292,0.00331,0.00393,0.00515,0.01002,0.01283,0.02235,0,0,0,0.00281,0.00315,0.00368,0.0047,0,0,0,0,0,0,0.00096,0.00097,0.00099,0.00102,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00102,0,0,0,0,0,0,0.00099,0.001,0.00101,0.00104,0,0,0,0,0,0,0.00096,0.00098,0.00099,0.00102,0,0,0,0,0,0,0.00099,0.00099,0.001,0.00102,0,0,0,0,0,0,0.00097,0.00098,0.00099,0.00101,0,0,0,0,0,0,0.00098,0.00098,0.00099,0.00101,0,0,0,0,0,0,0.00098,0.00099,0.001,0.00102,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.001,0,0,0,0,0,0,0.03472,0.0444,0.0582,0.07543,0,0,0,0,0,0,0.02956,0.03836,0.05103,0.0664,0,0,0,0,0,0,0.03388,0.04475,0.05956,0.07789,0,0,0,0,0,0,0.03926,0.05161,0.06831,0.0891,0,0,0,0,0,0,0.01509,0.02259,0.033,0.04421,0,0,0,0,0,0,0.01928,0.02785,0.03963,0.05284,0,0,0,0,0,0,0.01417,0.02141,0.03158,0.04236,0,0,0,0,0,0,0.02218,0.03064,0.04235,0.05583,0,0,0,0,0,0,0.01345,0.01974,0.02864,0.03794 +Mini car,PH40E,2040,0,0,0,0,0,0,0,0.01447,0.01461,0.01484,0,0,0,0,0,0,0,0.01493,0.01506,0.01527,0,0,0,0,0,0,0,0.01621,0.01634,0.01658,0,0,0,0,0,0,0,0.01368,0.01383,0.01409,0,0,0,0,0,0,0,0.01589,0.01598,0.01612,0,0,0,0,0,0,0,0.01463,0.01473,0.0149,0,0,0,0,0,0,0,0.01459,0.01467,0.01481,0,0,0,0,0,0,0,0.01529,0.0154,0.01557,0,0,0,0,0,0,0,0.01504,0.01512,0.01526,0,0,0,0,0,0,0,0.01111,0.00688,0.00539,0,0,0,0,0,0,0,0.00955,0.00602,0.0048,0,0,0,0,0,0,0,0.01086,0.00702,0.0056,0,0,0,0,0,0,0,0.0125,0.00805,0.00639,0,0,0,0,0,0,0,0.00517,0.00385,0.00339,0,0,0,0,0,0,0,0.00644,0.00463,0.00397,0,0,0,0,0,0,0,0.00491,0.00369,0.00328,0,0,0,0,0,0,0,0.00732,0.00499,0.00414,0,0,0,0,0,0,0,0.00468,0.00339,0.00295,0,0,0,0,0,0,0,0.49262,0.70571,0.89387,0,0,0,0,0,0,0,0.46647,0.67949,0.86788,0,0,0,0,0,0,0,0.49507,0.75507,0.98309,0,0,0,0,0,0,0,0.54881,0.83568,1.0904,0,0,0,0,0,0,0,0.38823,0.64672,0.8611,0,0,0,0,0,0,0,0.41629,0.68581,0.91342,0,0,0,0,0,0,0,0.39863,0.66331,0.88203,0,0,0,0,0,0,0,0.43209,0.67933,0.88553,0,0,0,0,0,0,0,0.3588,0.5719,0.74045,0,0,0,0,0,0,0,100.12258,101.16072,102.73451,0,0,0,0,0,0,0,100.90455,101.87217,103.34298,0,0,0,0,0,0,0,102.60183,103.60905,105.13987,0,0,0,0,0,0,0,100.25026,101.30379,102.90675,0,0,0,0,0,0,0,102.37347,103.07861,104.16463,0,0,0,0,0,0,0,100.86473,101.66702,102.89697,0,0,0,0,0,0,0,101.37673,102.05796,103.11102,0,0,0,0,0,0,0,101.64635,102.46522,103.71813,0,0,0,0,0,0,0,99.55975,100.28504,101.39044,0,0,0,0,0,0,0,0.00227,0.00251,0.00287,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00228,0.00253,0.0029,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.0023,0.00255,0.00292,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.00226,0.0025,0.00286,0,0,0,0,0,0,0,0.00845,0.00983,0.01264,0,0,0,0,0,0,0,0.00847,0.00986,0.01267,0,0,0,0,0,0,0,0.00849,0.00988,0.01271,0,0,0,0,0,0,0,0.00839,0.00977,0.01256,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.00842,0.0098,0.0126,0,0,0,0,0,0,0,0.00844,0.00983,0.01264,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.0085,0.00989,0.01272,0,0,0,0,0,0,0,0.02065,0.02958,0.03999,0,0,0,0,0,0,0,0.01985,0.0286,0.03885,0,0,0,0,0,0,0,0.02035,0.03081,0.04169,0,0,0,0,0,0,0,0.0218,0.03342,0.04523,0,0,0,0,0,0,0,0.0156,0.02543,0.03538,0,0,0,0,0,0,0,0.01764,0.02818,0.03888,0,0,0,0,0,0,0,0.01593,0.02572,0.03584,0,0,0,0,0,0,0,0.01845,0.0287,0.03932,0,0,0,0,0,0,0,0.01555,0.02429,0.03354,0.00252,0.00406,0.00551,0.01237,0,0,0,0.00055,0.00079,0.00116,0.00231,0.00361,0.0049,0.0109,0,0,0,0.00053,0.00075,0.0011,0.00267,0.00335,0.00452,0.01185,0,0,0,0.00055,0.00078,0.00115,0.00276,0.00409,0.00556,0.01294,0,0,0,0.00057,0.00081,0.0012,0.00162,0.00256,0.00348,0.00686,0,0,0,0.00046,0.00065,0.00093,0.00182,0.00262,0.00358,0.00776,0,0,0,0.00048,0.00067,0.00097,0.00158,0.00241,0.00327,0.00654,0,0,0,0.00046,0.00064,0.00092,0.00199,0.00287,0.00389,0.00874,0,0,0,0.0005,0.0007,0.00102,0.00145,0.00218,0.00294,0.00647,0,0,0,0.00046,0.00065,0.00093,0.02582,0.02907,0.03234,0.04778,0,0,0,0.01539,0.01591,0.01676,0.02605,0.02877,0.03164,0.0451,0,0,0,0.01581,0.0163,0.01709,0.02891,0.0302,0.03279,0.04937,0,0,0,0.01712,0.01763,0.01847,0.025,0.02779,0.03109,0.04779,0,0,0,0.01462,0.01516,0.01606,0.02614,0.02805,0.03006,0.03751,0,0,0,0.01666,0.01705,0.01767,0.02444,0.02603,0.02822,0.03739,0,0,0,0.01543,0.01584,0.0165,0.02401,0.0257,0.02754,0.0347,0,0,0,0.01535,0.01574,0.01635,0.02595,0.02776,0.02996,0.04076,0,0,0,0.01612,0.01655,0.01726,0.02464,0.02611,0.02771,0.03545,0,0,0,0.01581,0.01619,0.0168,0.00742,0.0103,0.0132,0.02685,0,0,0,0.00294,0.0034,0.00415,0.0071,0.0095,0.01205,0.02395,0,0,0,0.00295,0.00338,0.00408,0.0081,0.00924,0.01153,0.02621,0,0,0,0.00315,0.0036,0.00435,0.00777,0.01024,0.01316,0.02794,0,0,0,0.00287,0.00335,0.00415,0.00596,0.00765,0.00943,0.01602,0,0,0,0.00292,0.00327,0.00381,0.00609,0.0075,0.00936,0.01755,0,0,0,0.0028,0.00316,0.00375,0.00561,0.00712,0.00874,0.01507,0,0,0,0.00275,0.00309,0.00363,0.00655,0.00816,0.0101,0.01966,0,0,0,0.00292,0.00331,0.00393,0.00546,0.00677,0.00819,0.01503,0,0,0,0.00281,0.00315,0.00368,0,0,0,0,0,0,0,0.00096,0.00097,0.00099,0,0,0,0,0,0,0,0.00097,0.00098,0.00099,0,0,0,0,0,0,0,0.00099,0.001,0.00101,0,0,0,0,0,0,0,0.00096,0.00098,0.00099,0,0,0,0,0,0,0,0.00099,0.00099,0.001,0,0,0,0,0,0,0,0.00097,0.00098,0.00099,0,0,0,0,0,0,0,0.00098,0.00098,0.00099,0,0,0,0,0,0,0,0.00098,0.00099,0.001,0,0,0,0,0,0,0,0.00096,0.00097,0.00098,0,0,0,0,0,0,0,0.03468,0.04435,0.05817,0,0,0,0,0,0,0,0.02952,0.03831,0.05101,0,0,0,0,0,0,0,0.03384,0.0447,0.05953,0,0,0,0,0,0,0,0.03921,0.05154,0.06828,0,0,0,0,0,0,0,0.01507,0.02256,0.03299,0,0,0,0,0,0,0,0.01926,0.02781,0.03962,0,0,0,0,0,0,0,0.01415,0.02137,0.03157,0,0,0,0,0,0,0,0.02215,0.0306,0.04233,0,0,0,0,0,0,0,0.01343,0.01971,0.02862 +Mini car,PH40E,2045,0,0,0,0,0,0,0,0,0.01447,0.01461,0,0,0,0,0,0,0,0,0.01493,0.01506,0,0,0,0,0,0,0,0,0.01621,0.01634,0,0,0,0,0,0,0,0,0.01368,0.01383,0,0,0,0,0,0,0,0,0.01589,0.01598,0,0,0,0,0,0,0,0,0.01463,0.01473,0,0,0,0,0,0,0,0,0.01459,0.01467,0,0,0,0,0,0,0,0,0.01529,0.0154,0,0,0,0,0,0,0,0,0.01504,0.01512,0,0,0,0,0,0,0,0,0.01111,0.00688,0,0,0,0,0,0,0,0,0.00955,0.00602,0,0,0,0,0,0,0,0,0.01086,0.00702,0,0,0,0,0,0,0,0,0.0125,0.00805,0,0,0,0,0,0,0,0,0.00517,0.00385,0,0,0,0,0,0,0,0,0.00644,0.00463,0,0,0,0,0,0,0,0,0.00491,0.00369,0,0,0,0,0,0,0,0,0.00732,0.00499,0,0,0,0,0,0,0,0,0.00468,0.00339,0,0,0,0,0,0,0,0,0.4922,0.70558,0,0,0,0,0,0,0,0,0.46607,0.67937,0,0,0,0,0,0,0,0,0.4946,0.75492,0,0,0,0,0,0,0,0,0.5483,0.83552,0,0,0,0,0,0,0,0,0.38784,0.64659,0,0,0,0,0,0,0,0,0.41587,0.68568,0,0,0,0,0,0,0,0,0.39823,0.66318,0,0,0,0,0,0,0,0,0.43167,0.67921,0,0,0,0,0,0,0,0,0.35846,0.57181,0,0,0,0,0,0,0,0,100.1174,101.15894,0,0,0,0,0,0,0,0,100.90011,101.87099,0,0,0,0,0,0,0,0,102.59679,103.60737,0,0,0,0,0,0,0,0,100.24505,101.30215,0,0,0,0,0,0,0,0,102.36969,103.07715,0,0,0,0,0,0,0,0,100.86083,101.6658,0,0,0,0,0,0,0,0,101.37305,102.05673,0,0,0,0,0,0,0,0,101.6424,102.46407,0,0,0,0,0,0,0,0,99.55584,100.28345,0,0,0,0,0,0,0,0,0.00227,0.00251,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00228,0.00253,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.0023,0.00255,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00226,0.0025,0,0,0,0,0,0,0,0,0.00845,0.00983,0,0,0,0,0,0,0,0,0.00847,0.00985,0,0,0,0,0,0,0,0,0.00849,0.00988,0,0,0,0,0,0,0,0,0.00839,0.00976,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.00842,0.0098,0,0,0,0,0,0,0,0,0.00844,0.00983,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.0085,0.00989,0,0,0,0,0,0,0,0,0.02064,0.02957,0,0,0,0,0,0,0,0,0.01984,0.02858,0,0,0,0,0,0,0,0,0.02033,0.03079,0,0,0,0,0,0,0,0,0.02178,0.03341,0,0,0,0,0,0,0,0,0.01558,0.02541,0,0,0,0,0,0,0,0,0.01762,0.02817,0,0,0,0,0,0,0,0,0.01592,0.02571,0,0,0,0,0,0,0,0,0.01844,0.02869,0,0,0,0,0,0,0,0,0.01554,0.02427,0,0.0015,0.00255,0.00356,0.00888,0,0,0,0.00055,0.00079,0,0.00141,0.00236,0.00332,0.00796,0,0,0,0.00053,0.00075,0,0.00128,0.00215,0.00346,0.00852,0,0,0,0.00055,0.00078,0,0.00151,0.00257,0.00367,0.00923,0,0,0,0.00057,0.00081,0,0.00123,0.00203,0.00271,0.0055,0,0,0,0.00046,0.00065,0,0.0012,0.00198,0.00281,0.00601,0,0,0,0.00048,0.00067,0,0.00117,0.00192,0.00255,0.00518,0,0,0,0.00046,0.00064,0,0.00122,0.00203,0.00293,0.00657,0,0,0,0.0005,0.0007,0,0.00104,0.00171,0.00245,0.00504,0,0,0,0.00046,0.00065,0,0.02376,0.02612,0.02848,0.04043,0,0,0,0.01539,0.01591,0,0.0242,0.02634,0.02853,0.03892,0,0,0,0.01581,0.0163,0,0.02592,0.02784,0.03093,0.04233,0,0,0,0.01712,0.01763,0,0.02239,0.02478,0.02736,0.03994,0,0,0,0.01462,0.01516,0,0.02532,0.02703,0.0285,0.03464,0,0,0,0.01666,0.01705,0,0.02311,0.02488,0.02664,0.03371,0,0,0,0.01543,0.01584,0,0.02314,0.02474,0.02609,0.03183,0,0,0,0.01535,0.01574,0,0.02435,0.0261,0.02811,0.03619,0,0,0,0.01612,0.01655,0,0.02379,0.02518,0.02679,0.03243,0,0,0,0.01581,0.01619,0,0.0056,0.00769,0.00978,0.02035,0,0,0,0.00294,0.0034,0,0.00546,0.00735,0.0093,0.01848,0,0,0,0.00295,0.00338,0,0.00546,0.00716,0.00989,0.01998,0,0,0,0.00315,0.0036,0,0.00547,0.00758,0.00986,0.021,0,0,0,0.00287,0.00335,0,0.00523,0.00675,0.00805,0.01349,0,0,0,0.00292,0.00327,0,0.00492,0.00641,0.00804,0.0143,0,0,0,0.0028,0.00316,0,0.00485,0.00626,0.00746,0.01254,0,0,0,0.00275,0.00309,0,0.00514,0.00669,0.00847,0.01562,0,0,0,0.00292,0.00331,0,0.00471,0.00595,0.00737,0.01236,0,0,0,0.00281,0.00315,0,0,0,0,0,0,0,0,0.00096,0.00097,0,0,0,0,0,0,0,0,0.00097,0.00098,0,0,0,0,0,0,0,0,0.00099,0.001,0,0,0,0,0,0,0,0,0.00096,0.00098,0,0,0,0,0,0,0,0,0.00099,0.00099,0,0,0,0,0,0,0,0,0.00097,0.00098,0,0,0,0,0,0,0,0,0.00098,0.00098,0,0,0,0,0,0,0,0,0.00098,0.00099,0,0,0,0,0,0,0,0,0.00096,0.00097,0,0,0,0,0,0,0,0,0.03465,0.04434,0,0,0,0,0,0,0,0,0.0295,0.0383,0,0,0,0,0,0,0,0,0.03381,0.04468,0,0,0,0,0,0,0,0,0.03918,0.05153,0,0,0,0,0,0,0,0,0.01506,0.02255,0,0,0,0,0,0,0,0,0.01924,0.0278,0,0,0,0,0,0,0,0,0.01413,0.02136,0,0,0,0,0,0,0,0,0.02213,0.03059,0,0,0,0,0,0,0,0,0.01342,0.0197 +Mini car,PH40E,2050,0,0,0,0,0,0,0,0,0,0.01447,0,0,0,0,0,0,0,0,0,0.01493,0,0,0,0,0,0,0,0,0,0.01621,0,0,0,0,0,0,0,0,0,0.01368,0,0,0,0,0,0,0,0,0,0.01589,0,0,0,0,0,0,0,0,0,0.01463,0,0,0,0,0,0,0,0,0,0.01459,0,0,0,0,0,0,0,0,0,0.01529,0,0,0,0,0,0,0,0,0,0.01504,0,0,0,0,0,0,0,0,0,0.01111,0,0,0,0,0,0,0,0,0,0.00955,0,0,0,0,0,0,0,0,0,0.01086,0,0,0,0,0,0,0,0,0,0.0125,0,0,0,0,0,0,0,0,0,0.00517,0,0,0,0,0,0,0,0,0,0.00644,0,0,0,0,0,0,0,0,0,0.00491,0,0,0,0,0,0,0,0,0,0.00732,0,0,0,0,0,0,0,0,0,0.00468,0,0,0,0,0,0,0,0,0,0.4922,0,0,0,0,0,0,0,0,0,0.46607,0,0,0,0,0,0,0,0,0,0.49461,0,0,0,0,0,0,0,0,0,0.5483,0,0,0,0,0,0,0,0,0,0.38784,0,0,0,0,0,0,0,0,0,0.41587,0,0,0,0,0,0,0,0,0,0.39823,0,0,0,0,0,0,0,0,0,0.43167,0,0,0,0,0,0,0,0,0,0.35846,0,0,0,0,0,0,0,0,0,100.11735,0,0,0,0,0,0,0,0,0,100.9001,0,0,0,0,0,0,0,0,0,102.59675,0,0,0,0,0,0,0,0,0,100.24512,0,0,0,0,0,0,0,0,0,102.36963,0,0,0,0,0,0,0,0,0,100.86081,0,0,0,0,0,0,0,0,0,101.37301,0,0,0,0,0,0,0,0,0,101.64239,0,0,0,0,0,0,0,0,0,99.55584,0,0,0,0,0,0,0,0,0,0.00227,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00226,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00847,0,0,0,0,0,0,0,0,0,0.00849,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.00842,0,0,0,0,0,0,0,0,0,0.00844,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.0085,0,0,0,0,0,0,0,0,0,0.02064,0,0,0,0,0,0,0,0,0,0.01984,0,0,0,0,0,0,0,0,0,0.02033,0,0,0,0,0,0,0,0,0,0.02178,0,0,0,0,0,0,0,0,0,0.01558,0,0,0,0,0,0,0,0,0,0.01762,0,0,0,0,0,0,0,0,0,0.01592,0,0,0,0,0,0,0,0,0,0.01844,0,0,0,0,0,0,0,0,0,0.01554,0,0,0.00131,0.0022,0.00319,0.00597,0,0,0,0.00055,0,0,0.00124,0.00211,0.00303,0.00552,0,0,0,0.00053,0,0,0.00114,0.00215,0.00311,0.00578,0,0,0,0.00055,0,0,0.0013,0.00223,0.00324,0.00613,0,0,0,0.00057,0,0,0.00113,0.00185,0.00261,0.00434,0,0,0,0.00046,0,0,0.00109,0.00188,0.00268,0.00456,0,0,0,0.00048,0,0,0.00108,0.00176,0.00247,0.00407,0,0,0,0.00046,0,0,0.0011,0.00193,0.00275,0.00479,0,0,0,0.0005,0,0,0.00097,0.00169,0.00238,0.00391,0,0,0,0.00046,0,0,0.02326,0.02523,0.02749,0.03396,0,0,0,0.01539,0,0,0.0238,0.02568,0.02777,0.03352,0,0,0,0.01581,0,0,0.02556,0.02783,0.03002,0.03621,0,0,0,0.01712,0,0,0.02184,0.0239,0.02622,0.03299,0,0,0,0.01462,0,0,0.02509,0.02659,0.02824,0.03209,0,0,0,0.01666,0,0,0.02296,0.02455,0.02629,0.03053,0,0,0,0.01543,0,0,0.02294,0.02435,0.02589,0.02942,0,0,0,0.01535,0,0,0.02405,0.02581,0.02763,0.03227,0,0,0,0.01612,0,0,0.02361,0.02514,0.0266,0.02998,0,0,0,0.01581,0,0,0.00517,0.00691,0.0089,0.01462,0,0,0,0.00294,0,0,0.00511,0.00677,0.00862,0.01371,0,0,0,0.00295,0,0,0.00515,0.00715,0.00908,0.01456,0,0,0,0.00315,0,0,0.00499,0.00681,0.00885,0.01485,0,0,0,0.00287,0,0,0.00504,0.00636,0.00782,0.01123,0,0,0,0.00292,0,0,0.00471,0.00619,0.00773,0.01148,0,0,0,0.0028,0,0,0.00467,0.00592,0.00728,0.01041,0,0,0,0.00275,0,0,0.00488,0.00644,0.00804,0.01215,0,0,0,0.00292,0,0,0.00456,0.00591,0.00721,0.01019,0,0,0,0.00281,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00097,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00097,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00098,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.03465,0,0,0,0,0,0,0,0,0,0.0295,0,0,0,0,0,0,0,0,0,0.03381,0,0,0,0,0,0,0,0,0,0.03918,0,0,0,0,0,0,0,0,0,0.01506,0,0,0,0,0,0,0,0,0,0.01924,0,0,0,0,0,0,0,0,0,0.01413,0,0,0,0,0,0,0,0,0,0.02213,0,0,0,0,0,0,0,0,0,0.01342 +Mini car,PH40G,1990,0.04549,0,0,0,0,0,0,0,0,0,0.04151,0,0,0,0,0,0,0,0,0,0.0463,0,0,0,0,0,0,0,0,0,0.04835,0,0,0,0,0,0,0,0,0,0.03038,0,0,0,0,0,0,0,0,0,0.03235,0,0,0,0,0,0,0,0,0,0.02837,0,0,0,0,0,0,0,0,0,0.03565,0,0,0,0,0,0,0,0,0,0.0284,0,0,0,0,0,0,0,0,0,0.0357,0,0,0,0,0,0,0,0,0,0.03054,0,0,0,0,0,0,0,0,0,0.03853,0,0,0,0,0,0,0,0,0,0.03948,0,0,0,0,0,0,0,0,0,0.03248,0,0,0,0,0,0,0,0,0,0.03592,0,0,0,0,0,0,0,0,0,0.03325,0,0,0,0,0,0,0,0,0,0.03242,0,0,0,0,0,0,0,0,0,0.02783,0,0,0,0,0,0,0,0,0,22.72013,0,0,0,0,0,0,0,0,0,20.14951,0,0,0,0,0,0,0,0,0,24.87479,0,0,0,0,0,0,0,0,0,25.76437,0,0,0,0,0,0,0,0,0,21.34183,0,0,0,0,0,0,0,0,0,23.61136,0,0,0,0,0,0,0,0,0,22.23047,0,0,0,0,0,0,0,0,0,21.35022,0,0,0,0,0,0,0,0,0,17.8,0,0,0,0,0,0,0,0,0,230.59426,0,0,0,0,0,0,0,0,0,231.47444,0,0,0,0,0,0,0,0,0,235.78675,0,0,0,0,0,0,0,0,0,230.51247,0,0,0,0,0,0,0,0,0,231.63652,0,0,0,0,0,0,0,0,0,229.26266,0,0,0,0,0,0,0,0,0,228.72841,0,0,0,0,0,0,0,0,0,231.28683,0,0,0,0,0,0,0,0,0,226.25306,0,0,0,0,0,0,0,0,0,0.02991,0,0,0,0,0,0,0,0,0,0.03011,0,0,0,0,0,0,0,0,0,0.03053,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0.03051,0,0,0,0,0,0,0,0,0,0.03036,0,0,0,0,0,0,0,0,0,0.03009,0,0,0,0,0,0,0,0,0,0.03036,0,0,0,0,0,0,0,0,0,0.02991,0,0,0,0,0,0,0,0,0,0.01814,0,0,0,0,0,0,0,0,0,0.01818,0,0,0,0,0,0,0,0,0,0.0182,0,0,0,0,0,0,0,0,0,0.01807,0,0,0,0,0,0,0,0,0,0.01818,0,0,0,0,0,0,0,0,0,0.01811,0,0,0,0,0,0,0,0,0,0.01814,0,0,0,0,0,0,0,0,0,0.01819,0,0,0,0,0,0,0,0,0,0.01821,0,0,0,0,0,0,0,0,0,1.38305,0,0,0,0,0,0,0,0,0,1.31666,0,0,0,0,0,0,0,0,0,1.46314,0,0,0,0,0,0,0,0,0,1.53871,0,0,0,0,0,0,0,0,0,1.43053,0,0,0,0,0,0,0,0,0,1.50222,0,0,0,0,0,0,0,0,0,1.42807,0,0,0,0,0,0,0,0,0,1.50865,0,0,0,0,0,0,0,0,0,1.24169,0,0,0,0,0,0,0,0,0,0.0565,0,0,0.00114,0.00185,0.00246,0.00438,0,0,0,0.04955,0,0,0.0011,0.00177,0.00234,0.00411,0,0,0,0.05469,0,0,0.00111,0.0018,0.00239,0.00424,0,0,0,0.0612,0,0,0.00115,0.00187,0.00249,0.00448,0,0,0,0.02941,0,0,0.00098,0.00156,0.00202,0.00339,0,0,0,0.03473,0,0,0.001,0.00159,0.00207,0.00352,0,0,0,0.02848,0,0,0.00094,0.00149,0.00192,0.00319,0,0,0,0.03916,0,0,0.00102,0.00163,0.00213,0.00366,0,0,0,0.02806,0,0,0.00091,0.00144,0.00186,0.00308,0,0,0,0.14012,0,0,0.0229,0.02447,0.02587,0.03041,0,0,0,0.12475,0,0,0.02348,0.02496,0.02626,0.0304,0,0,0,0.13865,0,0,0.02554,0.02707,0.02843,0.03278,0,0,0,0.15142,0,0,0.02151,0.02312,0.02457,0.02928,0,0,0,0.08012,0,0,0.02477,0.026,0.02701,0.03008,0,0,0,0.09113,0,0,0.02266,0.02393,0.025,0.02828,0,0,0,0.07658,0,0,0.02264,0.02379,0.02473,0.02756,0,0,0,0.10177,0,0,0.02387,0.02519,0.02632,0.02981,0,0,0,0.07537,0,0,0.02351,0.02462,0.02553,0.02824,0,0,0,0.11328,0,0,0.00484,0.00623,0.00747,0.01148,0,0,0,0.09931,0,0,0.00483,0.00613,0.00729,0.01094,0,0,0,0.11067,0,0,0.00513,0.00647,0.00768,0.01153,0,0,0,0.12389,0,0,0.00469,0.00611,0.00739,0.01156,0,0,0,0.05906,0,0,0.00475,0.00584,0.00674,0.00945,0,0,0,0.06977,0,0,0.00452,0.00565,0.00659,0.00949,0,0,0,0.05691,0,0,0.00441,0.00543,0.00626,0.00876,0,0,0,0.07869,0,0,0.00472,0.00589,0.00688,0.00997,0,0,0,0.0555,0,0,0.00447,0.00545,0.00626,0.00866,0,0,0,0.01015,0,0,0,0,0,0,0,0,0,0.01158,0,0,0,0,0,0,0,0,0,0.01648,0,0,0,0,0,0,0,0,0,0.01505,0,0,0,0,0,0,0,0,0,0.01339,0,0,0,0,0,0,0,0,0,0.01475,0,0,0,0,0,0,0,0,0,0.01335,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.00613,0,0,0,0,0,0,0,0,0,2.13629,0,0,0,0,0,0,0,0,0,1.90877,0,0,0,0,0,0,0,0,0,2.27289,0,0,0,0,0,0,0,0,0,2.35241,0,0,0,0,0,0,0,0,0,2.10809,0,0,0,0,0,0,0,0,0,2.24426,0,0,0,0,0,0,0,0,0,2.15299,0,0,0,0,0,0,0,0,0,2.12195,0,0,0,0,0,0,0,0,0,1.84561,0,0,0,0,0,0,0,0,0 +Mini car,PH40G,1995,0.01989,0.02979,0,0,0,0,0,0,0,0,0.01959,0.02807,0,0,0,0,0,0,0,0,0.02147,0.03104,0,0,0,0,0,0,0,0,0.0197,0.03078,0,0,0,0,0,0,0,0,0.01845,0.02308,0,0,0,0,0,0,0,0,0.01775,0.02341,0,0,0,0,0,0,0,0,0.01703,0.02144,0,0,0,0,0,0,0,0,0.01886,0.02536,0,0,0,0,0,0,0,0,0.01741,0.02168,0,0,0,0,0,0,0,0,0.01972,0.02288,0,0,0,0,0,0,0,0,0.01832,0.02042,0,0,0,0,0,0,0,0,0.02214,0.02533,0,0,0,0,0,0,0,0,0.02282,0.02724,0,0,0,0,0,0,0,0,0.01878,0.02132,0,0,0,0,0,0,0,0,0.02035,0.02362,0,0,0,0,0,0,0,0,0.01861,0.02151,0,0,0,0,0,0,0,0,0.01917,0.02219,0,0,0,0,0,0,0,0,0.01543,0.01733,0,0,0,0,0,0,0,0,8.39442,11.44278,0,0,0,0,0,0,0,0,7.99397,10.48013,0,0,0,0,0,0,0,0,9.60589,12.61336,0,0,0,0,0,0,0,0,10.11218,13.50212,0,0,0,0,0,0,0,0,8.39972,10.94605,0,0,0,0,0,0,0,0,9.09698,11.99459,0,0,0,0,0,0,0,0,8.62645,11.31589,0,0,0,0,0,0,0,0,8.49118,11.40326,0,0,0,0,0,0,0,0,6.6501,8.94901,0,0,0,0,0,0,0,0,189.19132,198.05442,0,0,0,0,0,0,0,0,190.6211,199.19465,0,0,0,0,0,0,0,0,193.94151,202.82409,0,0,0,0,0,0,0,0,189.14548,198.01516,0,0,0,0,0,0,0,0,193.18868,200.61761,0,0,0,0,0,0,0,0,190.26302,198.05571,0,0,0,0,0,0,0,0,191.05833,198.25331,0,0,0,0,0,0,0,0,191.87396,199.77843,0,0,0,0,0,0,0,0,188.15266,195.58748,0,0,0,0,0,0,0,0,0.02197,0.0268,0,0,0,0,0,0,0,0,0.02213,0.02697,0,0,0,0,0,0,0,0,0.02248,0.02733,0,0,0,0,0,0,0,0,0.02199,0.0269,0,0,0,0,0,0,0,0,0.02246,0.02732,0,0,0,0,0,0,0,0,0.0223,0.02721,0,0,0,0,0,0,0,0,0.02211,0.02697,0,0,0,0,0,0,0,0,0.02233,0.0272,0,0,0,0,0,0,0,0,0.022,0.02679,0,0,0,0,0,0,0,0,0.0509,0.04166,0,0,0,0,0,0,0,0,0.051,0.04174,0,0,0,0,0,0,0,0,0.05108,0.0418,0,0,0,0,0,0,0,0,0.05062,0.04143,0,0,0,0,0,0,0,0,0.05102,0.04175,0,0,0,0,0,0,0,0,0.05075,0.04154,0,0,0,0,0,0,0,0,0.05089,0.04165,0,0,0,0,0,0,0,0,0.05105,0.04178,0,0,0,0,0,0,0,0,0.05114,0.04185,0,0,0,0,0,0,0,0,1.03966,1.25011,0,0,0,0,0,0,0,0,1.01379,1.18284,0,0,0,0,0,0,0,0,1.12147,1.28489,0,0,0,0,0,0,0,0,1.16818,1.40584,0,0,0,0,0,0,0,0,1.08866,1.303,0,0,0,0,0,0,0,0,1.14403,1.35827,0,0,0,0,0,0,0,0,1.09383,1.30471,0,0,0,0,0,0,0,0,1.16173,1.38255,0,0,0,0,0,0,0,0,0.95791,1.12914,0,0,0,0,0,0,0,0,0.01168,0.02952,0,0,0.00075,0.00119,0.00159,0.00316,0,0,0.0103,0.0259,0,0,0.00073,0.00114,0.00151,0.00297,0,0,0.01134,0.02848,0,0,0.00074,0.00116,0.00155,0.00306,0,0,0.01254,0.03192,0,0,0.00076,0.00121,0.00161,0.00322,0,0,0.00625,0.01547,0,0,0.00065,0.00101,0.00131,0.00247,0,0,0.0073,0.01825,0,0,0.00066,0.00103,0.00134,0.00256,0,0,0.00606,0.01503,0,0,0.00062,0.00096,0.00124,0.00232,0,0,0.00819,0.02051,0,0,0.00067,0.00105,0.00138,0.00266,0,0,0.00599,0.01481,0,0,0.0006,0.00093,0.0012,0.00226,0,0,0.03957,0.07884,0,0,0.02206,0.02304,0.02394,0.02761,0,0,0.03699,0.07114,0,0,0.02268,0.0236,0.02444,0.02782,0,0,0.04075,0.07836,0,0,0.02473,0.02568,0.02655,0.03009,0,0,0.04096,0.08403,0,0,0.02066,0.02166,0.02259,0.02637,0,0,0.02907,0.04889,0,0,0.02408,0.02484,0.0255,0.02809,0,0,0.03018,0.05383,0,0,0.02196,0.02275,0.02344,0.02618,0,0,0.02733,0.04663,0,0,0.02198,0.0227,0.02331,0.0257,0,0,0.03278,0.05968,0,0,0.02314,0.02396,0.02469,0.0276,0,0,0.02748,0.04634,0,0,0.02287,0.02357,0.02416,0.02647,0,0,0.02433,0.05907,0,0,0.0041,0.00496,0.00576,0.00901,0,0,0.02168,0.05189,0,0,0.00412,0.00493,0.00568,0.00867,0,0,0.02405,0.05733,0,0,0.00441,0.00524,0.00602,0.00915,0,0,0.02618,0.06428,0,0,0.00394,0.00482,0.00565,0.00899,0,0,0.0139,0.03143,0,0,0.00414,0.00482,0.0054,0.00769,0,0,0.01584,0.03677,0,0,0.0039,0.0046,0.00521,0.00764,0,0,0.01334,0.03041,0,0,0.00382,0.00446,0.005,0.00711,0,0,0.01766,0.04146,0,0,0.00408,0.0048,0.00545,0.00801,0,0,0.01313,0.02982,0,0,0.00391,0.00452,0.00505,0.00709,0,0,0.00831,0.00421,0,0,0,0,0,0,0,0,0.00952,0.00427,0,0,0,0,0,0,0,0,0.01357,0.00444,0,0,0,0,0,0,0,0,0.01235,0.00741,0,0,0,0,0,0,0,0,0.01116,0.00437,0,0,0,0,0,0,0,0,0.01224,0.00433,0,0,0,0,0,0,0,0,0.01115,0.0059,0,0,0,0,0,0,0,0,0.01094,0.00673,0,0,0,0,0,0,0,0,0.00507,0.00243,0,0,0,0,0,0,0,0,0.90648,1.29208,0,0,0,0,0,0,0,0,0.87198,1.21773,0,0,0,0,0,0,0,0,1.00633,1.41289,0,0,0,0,0,0,0,0,1.04333,1.49686,0,0,0,0,0,0,0,0,0.93714,1.36023,0,0,0,0,0,0,0,0,0.97336,1.42052,0,0,0,0,0,0,0,0,0.92877,1.35964,0,0,0,0,0,0,0,0,0.96088,1.39294,0,0,0,0,0,0,0,0,0.79594,1.15652,0,0,0,0,0,0,0,0 +Mini car,PH40G,2000,0.01642,0.01782,0.02479,0,0,0,0,0,0,0,0.0166,0.0178,0.02377,0,0,0,0,0,0,0,0.01809,0.01945,0.02621,0,0,0,0,0,0,0,0.01582,0.01737,0.02518,0,0,0,0,0,0,0,0.01678,0.01744,0.02068,0,0,0,0,0,0,0,0.01571,0.01652,0.02048,0,0,0,0,0,0,0,0.01543,0.01607,0.01915,0,0,0,0,0,0,0,0.01655,0.01748,0.02204,0,0,0,0,0,0,0,0.01587,0.01649,0.01948,0,0,0,0,0,0,0,0.009,0.00962,0.01549,0,0,0,0,0,0,0,0.00844,0.00922,0.01394,0,0,0,0,0,0,0,0.01048,0.01125,0.01778,0,0,0,0,0,0,0,0.01093,0.01203,0.01844,0,0,0,0,0,0,0,0.00796,0.00916,0.01454,0,0,0,0,0,0,0,0.00882,0.01,0.0158,0,0,0,0,0,0,0,0.00786,0.00921,0.01404,0,0,0,0,0,0,0,0.00859,0.00975,0.01474,0,0,0,0,0,0,0,0.00672,0.00796,0.01152,0,0,0,0,0,0,0,3.9868,5.35612,8.15553,0,0,0,0,0,0,0,3.81518,5.18106,7.60812,0,0,0,0,0,0,0,4.62373,6.19367,9.31628,0,0,0,0,0,0,0,4.92951,6.63182,9.70105,0,0,0,0,0,0,0,3.54079,5.08715,7.73638,0,0,0,0,0,0,0,3.92384,5.54761,8.36929,0,0,0,0,0,0,0,3.60247,5.24487,7.70978,0,0,0,0,0,0,0,3.82067,5.42492,7.95733,0,0,0,0,0,0,0,2.92447,4.36244,6.27296,0,0,0,0,0,0,0,188.44958,190.02349,195.10774,0,0,0,0,0,0,0,190.11325,191.57845,196.32648,0,0,0,0,0,0,0,193.35971,194.89662,199.85431,0,0,0,0,0,0,0,188.5208,190.10393,195.21411,0,0,0,0,0,0,0,193.52235,194.57322,198.06436,0,0,0,0,0,0,0,190.32159,191.53046,195.46397,0,0,0,0,0,0,0,191.51759,192.52421,195.85872,0,0,0,0,0,0,0,191.84787,193.07733,197.10666,0,0,0,0,0,0,0,188.15996,189.25082,192.87472,0,0,0,0,0,0,0,0.01222,0.01359,0.0207,0,0,0,0,0,0,0,0.01227,0.01364,0.02079,0,0,0,0,0,0,0,0.01236,0.01372,0.02093,0,0,0,0,0,0,0,0.01234,0.01374,0.0209,0,0,0,0,0,0,0,0.01237,0.01374,0.02095,0,0,0,0,0,0,0,0.01242,0.01381,0.02103,0,0,0,0,0,0,0,0.01229,0.01367,0.02082,0,0,0,0,0,0,0,0.01236,0.01373,0.02093,0,0,0,0,0,0,0,0.01216,0.01351,0.0206,0,0,0,0,0,0,0,0.02971,0.03887,0.04125,0,0,0,0,0,0,0,0.02978,0.03895,0.04134,0,0,0,0,0,0,0,0.02986,0.03906,0.04143,0,0,0,0,0,0,0,0.0295,0.03859,0.04099,0,0,0,0,0,0,0,0.02981,0.039,0.04138,0,0,0,0,0,0,0,0.02961,0.03873,0.04112,0,0,0,0,0,0,0,0.0297,0.03885,0.04124,0,0,0,0,0,0,0,0.02982,0.039,0.04139,0,0,0,0,0,0,0,0.02988,0.03909,0.04147,0,0,0,0,0,0,0,0.50063,0.66975,0.99957,0,0,0,0,0,0,0,0.49246,0.66525,0.97533,0,0,0,0,0,0,0,0.58088,0.73581,1.08051,0,0,0,0,0,0,0,0.60113,0.79343,1.13041,0,0,0,0,0,0,0,0.55095,0.73032,1.08321,0,0,0,0,0,0,0,0.57864,0.75297,1.1103,0,0,0,0,0,0,0,0.55923,0.74493,1.04943,0,0,0,0,0,0,0,0.58516,0.77557,1.10421,0,0,0,0,0,0,0,0.48049,0.65081,0.9123,0,0,0,0,0,0,0,0.00473,0.0074,0.01949,0,0,0.00075,0.00119,0.00158,0.00261,0,0.00417,0.00651,0.01708,0,0,0.00072,0.00114,0.00151,0.00246,0,0.00457,0.00714,0.01883,0,0,0.00073,0.00116,0.00154,0.00253,0,0.00497,0.0078,0.02093,0,0,0.00076,0.0012,0.0016,0.00266,0,0.00252,0.00392,0.01015,0,0,0.00065,0.00101,0.00131,0.00206,0,0.00291,0.00452,0.0119,0,0,0.00066,0.00103,0.00134,0.00212,0,0.00246,0.00381,0.00984,0,0,0.00062,0.00096,0.00124,0.00193,0,0.00331,0.00516,0.01348,0,0,0.00067,0.00105,0.00138,0.0022,0,0.00249,0.00386,0.00979,0,0,0.0006,0.00093,0.0012,0.00187,0,0.0244,0.03016,0.05711,0,0,0.02206,0.02303,0.02392,0.02635,0,0.02365,0.02866,0.05211,0,0,0.02268,0.0236,0.02443,0.02666,0,0.02587,0.03135,0.05743,0,0,0.02473,0.02567,0.02653,0.02887,0,0.02426,0.03042,0.05983,0,0,0.02066,0.02165,0.02257,0.02507,0,0.02107,0.02399,0.03757,0,0,0.02408,0.02484,0.02549,0.02718,0,0.02067,0.02406,0.04027,0,0,0.02195,0.02274,0.02343,0.02522,0,0.01962,0.02247,0.03554,0,0,0.02198,0.0227,0.0233,0.02485,0,0.02218,0.02613,0.04443,0,0,0.02314,0.02396,0.02468,0.02658,0,0.02006,0.02293,0.03573,0,0,0.02287,0.02357,0.02416,0.02565,0,0.01091,0.01601,0.03985,0,0,0.0041,0.00496,0.00575,0.00789,0,0.00988,0.01431,0.03505,0,0,0.00412,0.00493,0.00566,0.00763,0,0.01089,0.01575,0.03881,0,0,0.0044,0.00524,0.006,0.00807,0,0.0114,0.01685,0.04287,0,0,0.00394,0.00481,0.00562,0.00784,0,0.00682,0.0094,0.02142,0,0,0.00414,0.00481,0.00539,0.00688,0,0.00743,0.01044,0.02477,0,0,0.00389,0.00459,0.0052,0.00678,0,0.00652,0.00904,0.0206,0,0,0.00382,0.00446,0.00499,0.00636,0,0.00829,0.01178,0.02797,0,0,0.00407,0.0048,0.00544,0.00712,0,0.00657,0.00911,0.02043,0,0,0.0039,0.00452,0.00504,0.00636,0,0.00827,0.00404,0.00373,0,0,0,0,0,0,0,0.00949,0.00411,0.00376,0,0,0,0,0,0,0,0.01353,0.00426,0.00382,0,0,0,0,0,0,0,0.01231,0.00713,0.00374,0,0,0,0,0,0,0,0.01118,0.00423,0.00379,0,0,0,0,0,0,0,0.01224,0.00419,0.00374,0,0,0,0,0,0,0,0.01118,0.00573,0.00375,0,0,0,0,0,0,0,0.01093,0.00651,0.00338,0,0,0,0,0,0,0,0.00507,0.00235,0.00173,0,0,0,0,0,0,0,0.36356,0.53193,1.0086,0,0,0,0,0,0,0,0.34289,0.51226,0.94818,0,0,0,0,0,0,0,0.40658,0.6037,1.12323,0,0,0,0,0,0,0,0.43461,0.64868,1.17318,0,0,0,0,0,0,0,0.31031,0.50338,1.02369,0,0,0,0,0,0,0,0.34102,0.54354,1.07094,0,0,0,0,0,0,0,0.30606,0.50141,0.9994,0,0,0,0,0,0,0,0.34889,0.54807,1.05471,0,0,0,0,0,0,0,0.26625,0.44256,0.8681,0,0,0,0,0,0,0 +Mini car,PH40G,2005,0.01497,0.01533,0.01605,0.02037,0,0,0,0,0,0,0.01539,0.01566,0.01628,0.02,0,0,0,0,0,0,0.01681,0.01681,0.01734,0.02186,0,0,0,0,0,0,0.01431,0.01461,0.01539,0.02022,0,0,0,0,0,0,0.01615,0.01634,0.01673,0.01872,0,0,0,0,0,0,0.01497,0.01509,0.0155,0.01802,0,0,0,0,0,0,0.01483,0.01498,0.01534,0.01721,0,0,0,0,0,0,0.01566,0.01581,0.01627,0.01917,0,0,0,0,0,0,0.01522,0.01534,0.01563,0.01756,0,0,0,0,0,0,0.00951,0.00695,0.00686,0.0102,0,0,0,0,0,0,0.00858,0.0062,0.00637,0.00929,0,0,0,0,0,0,0.0097,0.00696,0.00713,0.0111,0,0,0,0,0,0,0.01039,0.00855,0.00802,0.01215,0,0,0,0,0,0,0.00558,0.00467,0.00523,0.00844,0,0,0,0,0,0,0.00664,0.00535,0.00582,0.00936,0,0,0,0,0,0,0.00538,0.00497,0.00518,0.0082,0,0,0,0,0,0,0.0072,0.00597,0.00576,0.00924,0,0,0,0,0,0,0.00434,0.00369,0.00404,0.00731,0,0,0,0,0,0,1.82992,2.46,3.14088,5.18476,0,0,0,0,0,0,1.73633,2.37039,3.12657,4.96426,0,0,0,0,0,0,1.96984,2.88716,3.84579,5.92046,0,0,0,0,0,0,2.13253,3.18897,3.81821,6.35235,0,0,0,0,0,0,1.57474,2.34726,3.22812,5.04621,0,0,0,0,0,0,1.69804,2.55687,3.48391,5.40924,0,0,0,0,0,0,1.6147,2.58098,3.25589,5.08959,0,0,0,0,0,0,1.74613,2.79365,3.33378,5.27372,0,0,0,0,0,0,1.23986,2.16299,2.86645,4.36035,0,0,0,0,0,0,191.80721,192.6941,194.88706,198.23917,0,0,0,0,0,0,193.59354,194.41451,196.45786,199.48281,0,0,0,0,0,0,196.74021,197.60667,199.73374,202.96165,0,0,0,0,0,0,191.9413,192.82094,195.04558,198.45575,0,0,0,0,0,0,197.44024,198.00761,199.49386,201.30259,0,0,0,0,0,0,194.10321,194.76751,196.45968,198.71256,0,0,0,0,0,0,195.5612,196.09672,197.53215,199.20378,0,0,0,0,0,0,195.595,196.27102,197.99893,200.3284,0,0,0,0,0,0,191.95984,192.5657,194.09658,195.9978,0,0,0,0,0,0,0.00357,0.00385,0.00453,0.01104,0,0,0,0,0,0,0.00358,0.00386,0.00453,0.01106,0,0,0,0,0,0,0.00359,0.00386,0.00453,0.01109,0,0,0,0,0,0,0.00362,0.00391,0.0046,0.01119,0,0,0,0,0,0,0.00359,0.00387,0.00454,0.01111,0,0,0,0,0,0,0.00363,0.00392,0.0046,0.01121,0,0,0,0,0,0,0.00359,0.00387,0.00455,0.01109,0,0,0,0,0,0,0.0036,0.00388,0.00456,0.01113,0,0,0,0,0,0,0.00354,0.00382,0.00448,0.01094,0,0,0,0,0,0,0.01202,0.01368,0.01684,0.02396,0,0,0,0,0,0,0.01205,0.01371,0.01688,0.02402,0,0,0,0,0,0,0.01208,0.01375,0.01692,0.02408,0,0,0,0,0,0,0.01193,0.01359,0.01672,0.0238,0,0,0,0,0,0,0.01206,0.01373,0.0169,0.02404,0,0,0,0,0,0,0.01198,0.01363,0.01678,0.02388,0,0,0,0,0,0,0.01201,0.01368,0.01683,0.02396,0,0,0,0,0,0,0.01206,0.01373,0.0169,0.02405,0,0,0,0,0,0,0.01209,0.01376,0.01694,0.0241,0,0,0,0,0,0,0.13355,0.19597,0.25866,0.47844,0,0,0,0,0,0,0.13174,0.19112,0.25993,0.47163,0,0,0,0,0,0,0.15074,0.21462,0.28626,0.53329,0,0,0,0,0,0,0.14998,0.25031,0.30265,0.56795,0,0,0,0,0,0,0.13424,0.2049,0.27744,0.5267,0,0,0,0,0,0,0.143,0.21425,0.28723,0.54444,0,0,0,0,0,0,0.13535,0.21979,0.27491,0.51386,0,0,0,0,0,0,0.14719,0.23594,0.28416,0.54455,0,0,0,0,0,0,0.106,0.15681,0.20989,0.46364,0,0,0,0,0,0,0.00169,0.00242,0.00363,0.01084,0,0,0.00075,0.00118,0.00158,0.00242,0.00156,0.00217,0.00325,0.00958,0,0,0.00072,0.00114,0.00151,0.00228,0.00184,0.00202,0.00301,0.01044,0,0,0.00073,0.00116,0.00154,0.00235,0.00189,0.00251,0.00378,0.01157,0,0,0.00076,0.0012,0.0016,0.00247,0.00109,0.00153,0.00231,0.00599,0,0,0.00065,0.001,0.00131,0.00191,0.00124,0.00158,0.00237,0.00684,0,0,0.00066,0.00102,0.00134,0.00197,0.00104,0.00142,0.00214,0.0057,0,0,0.00062,0.00095,0.00124,0.0018,0.00134,0.00172,0.00258,0.00766,0,0,0.00067,0.00105,0.00138,0.00204,0.00094,0.00126,0.00189,0.0056,0,0,0.0006,0.00093,0.0012,0.00174,0.01784,0.01937,0.0221,0.03823,0,0,0.02205,0.02301,0.02393,0.02591,0.01804,0.01929,0.0217,0.03581,0,0,0.02268,0.02358,0.02443,0.02625,0.01993,0.02021,0.02239,0.03908,0,0,0.02472,0.02565,0.02654,0.02845,0.01753,0.01883,0.02168,0.03927,0,0,0.02065,0.02163,0.02258,0.02463,0.01801,0.0189,0.02059,0.02863,0,0,0.02407,0.02483,0.0255,0.02685,0.01709,0.01774,0.01947,0.02934,0,0,0.02195,0.02273,0.02343,0.02488,0.01661,0.01738,0.01893,0.02665,0,0,0.02197,0.02268,0.0233,0.02456,0.01794,0.01872,0.02059,0.03183,0,0,0.02314,0.02395,0.02469,0.02622,0.01681,0.01746,0.0188,0.02686,0,0,0.02287,0.02357,0.02416,0.02535,0.00511,0.00647,0.00888,0.02315,0,0,0.00409,0.00494,0.00575,0.0075,0.00492,0.00603,0.00816,0.02064,0,0,0.00411,0.00492,0.00567,0.00727,0.00564,0.00589,0.00782,0.02258,0,0,0.0044,0.00522,0.00601,0.00769,0.00545,0.00659,0.00912,0.02468,0,0,0.00393,0.0048,0.00563,0.00745,0.00412,0.0049,0.0064,0.01351,0,0,0.00414,0.00481,0.00539,0.0066,0.00427,0.00484,0.00638,0.0151,0,0,0.00389,0.00458,0.0052,0.00649,0.00386,0.00454,0.00591,0.01274,0,0,0.00382,0.00445,0.005,0.0061,0.00453,0.00522,0.00688,0.01682,0,0,0.00407,0.00479,0.00544,0.0068,0.0037,0.00427,0.00545,0.01258,0,0,0.0039,0.00452,0.00504,0.0061,0.00841,0.0041,0.00373,0.00126,0,0,0,0,0,0,0.00967,0.00417,0.00376,0.00127,0,0,0,0,0,0,0.01377,0.00432,0.00382,0.00129,0,0,0,0,0,0,0.01253,0.00723,0.00373,0.00127,0,0,0,0,0,0,0.0114,0.00431,0.00382,0.00128,0,0,0,0,0,0,0.01249,0.00426,0.00376,0.00127,0,0,0,0,0,0,0.01141,0.00584,0.00378,0.00127,0,0,0,0,0,0,0.01114,0.00662,0.00339,0.00126,0,0,0,0,0,0,0.00517,0.00238,0.00174,0.00116,0,0,0,0,0,0,0.19757,0.21602,0.29852,0.65935,0,0,0,0,0,0,0.1776,0.19468,0.27627,0.62085,0,0,0,0,0,0,0.2007,0.21616,0.30664,0.70797,0,0,0,0,0,0,0.21597,0.26088,0.34141,0.76364,0,0,0,0,0,0,0.11337,0.14445,0.22669,0.61272,0,0,0,0,0,0,0.13505,0.16445,0.25069,0.65002,0,0,0,0,0,0,0.10772,0.14975,0.22161,0.59797,0,0,0,0,0,0,0.15328,0.19201,0.26498,0.66253,0,0,0,0,0,0,0.09296,0.12778,0.19833,0.55166,0,0,0,0,0,0 +Mini car,PH40G,2010,0,0.01475,0.0151,0.01571,0.01811,0,0,0,0,0,0,0.01517,0.01548,0.01602,0.01809,0,0,0,0,0,0,0.01636,0.01662,0.01736,0.01964,0,0,0,0,0,0,0.01399,0.01437,0.01505,0.01771,0,0,0,0,0,0,0.01605,0.01626,0.01658,0.01778,0,0,0,0,0,0,0.01478,0.01499,0.01541,0.01682,0,0,0,0,0,0,0.01472,0.01491,0.0152,0.01628,0,0,0,0,0,0,0.01545,0.01568,0.01615,0.01774,0,0,0,0,0,0,0.01512,0.01528,0.0156,0.01664,0,0,0,0,0,0,0.00785,0.00654,0.00565,0.00758,0,0,0,0,0,0,0.0068,0.00595,0.00516,0.00696,0,0,0,0,0,0,0.00742,0.00678,0.00583,0.00803,0,0,0,0,0,0,0.00935,0.00783,0.00675,0.00912,0,0,0,0,0,0,0.00468,0.00506,0.00447,0.00609,0,0,0,0,0,0,0.00521,0.0055,0.00485,0.00671,0,0,0,0,0,0,0.0049,0.00502,0.00445,0.00601,0,0,0,0,0,0,0.00617,0.00547,0.00497,0.00677,0,0,0,0,0,0,0.00394,0.00395,0.00423,0.00557,0,0,0,0,0,0,1.40766,2.14257,2.85483,3.98256,0,0,0,0,0,0,1.32048,2.10431,2.79231,3.87406,0,0,0,0,0,0,1.5794,2.54698,3.20383,4.54977,0,0,0,0,0,0,1.70767,2.52328,3.47468,4.91322,0,0,0,0,0,0,1.12103,2.04962,2.84144,3.94588,0,0,0,0,0,0,1.25091,2.22637,2.99998,4.21249,0,0,0,0,0,0,1.22454,2.07475,2.9029,4.01708,0,0,0,0,0,0,1.42543,2.17541,2.96222,4.12275,0,0,0,0,0,0,1.07418,1.86232,2.52985,3.46249,0,0,0,0,0,0,189.17159,190.5334,192.84704,197.4275,0,0,0,0,0,0,190.9633,192.21983,194.36646,198.66043,0,0,0,0,0,0,194.07026,195.38076,197.61877,202.09362,0,0,0,0,0,0,189.28769,190.66347,193.01562,197.67536,0,0,0,0,0,0,194.85384,195.72085,197.24644,200.46552,0,0,0,0,0,0,191.52871,192.53877,194.29626,197.91168,0,0,0,0,0,0,192.99911,193.82967,195.30105,198.41749,0,0,0,0,0,0,192.99071,194.02654,195.82135,199.50521,0,0,0,0,0,0,189.43299,190.34635,191.92029,195.18143,0,0,0,0,0,0,0.00344,0.00389,0.00465,0.00712,0,0,0,0,0,0,0.00345,0.0039,0.00466,0.00713,0,0,0,0,0,0,0.00345,0.0039,0.00466,0.00712,0,0,0,0,0,0,0.00349,0.00395,0.00473,0.00724,0,0,0,0,0,0,0.00346,0.00391,0.00467,0.00714,0,0,0,0,0,0,0.00349,0.00396,0.00473,0.00724,0,0,0,0,0,0,0.00346,0.00391,0.00467,0.00716,0,0,0,0,0,0,0.00347,0.00392,0.00468,0.00717,0,0,0,0,0,0,0.00341,0.00386,0.0046,0.00705,0,0,0,0,0,0,0.00845,0.00989,0.01264,0.01532,0,0,0,0,0,0,0.00847,0.00991,0.01267,0.01535,0,0,0,0,0,0,0.00849,0.00994,0.01271,0.01539,0,0,0,0,0,0,0.00839,0.00982,0.01256,0.01521,0,0,0,0,0,0,0.00848,0.00992,0.01269,0.01537,0,0,0,0,0,0,0.00842,0.00985,0.0126,0.01526,0,0,0,0,0,0,0.00844,0.00988,0.01264,0.01531,0,0,0,0,0,0,0.00848,0.00992,0.01269,0.01537,0,0,0,0,0,0,0.0085,0.00994,0.01272,0.0154,0,0,0,0,0,0,0.05398,0.08868,0.09437,0.21225,0,0,0,0,0,0,0.05148,0.08831,0.0932,0.21039,0,0,0,0,0,0,0.05368,0.09688,0.10056,0.23731,0,0,0,0,0,0,0.06219,0.10385,0.10874,0.25643,0,0,0,0,0,0,0.04818,0.09117,0.09387,0.22957,0,0,0,0,0,0,0.05103,0.09576,0.0989,0.2396,0,0,0,0,0,0,0.05198,0.09098,0.0943,0.2264,0,0,0,0,0,0,0.05834,0.09542,0.10332,0.24185,0,0,0,0,0,0,0.03928,0.06936,0.09157,0.20876,0,0,0,0,0,0,0.00098,0.00153,0.00241,0.00618,0,0,0.00075,0.00119,0.00159,0,0.00092,0.00142,0.00224,0.00559,0,0,0.00072,0.00114,0.00151,0,0.00083,0.00128,0.00232,0.00595,0,0,0.00073,0.00116,0.00154,0,0.00102,0.00159,0.00254,0.00658,0,0,0.00075,0.0012,0.00161,0,0.0008,0.00122,0.00182,0.00396,0,0,0.00064,0.00101,0.00131,0,0.00078,0.00119,0.0019,0.00432,0,0,0.00065,0.00102,0.00134,0,0.00076,0.00115,0.0017,0.0037,0,0,0.00061,0.00096,0.00124,0,0.0008,0.00123,0.00199,0.00468,0,0,0.00067,0.00105,0.00138,0,0.00067,0.00101,0.00163,0.00358,0,0,0.0006,0.00093,0.0012,0,0.01638,0.01764,0.01966,0.02827,0,0,0.02204,0.02302,0.02394,0,0.0167,0.01784,0.01972,0.02729,0,0,0.02267,0.02359,0.02444,0,0.01775,0.01876,0.02118,0.02942,0,0,0.02471,0.02566,0.02655,0,0.01568,0.017,0.01921,0.0285,0,0,0.02064,0.02164,0.02259,0,0.0174,0.0183,0.0196,0.02433,0,0,0.02407,0.02483,0.0255,0,0.01609,0.01699,0.01856,0.02396,0,0,0.02194,0.02274,0.02344,0,0.016,0.01683,0.01803,0.02242,0,0,0.02197,0.02269,0.02331,0,0.0168,0.01773,0.01943,0.02546,0,0,0.02313,0.02395,0.02469,0,0.01624,0.01696,0.01832,0.02259,0,0,0.02287,0.02357,0.02416,0,0.00382,0.00493,0.00672,0.01433,0,0,0.00408,0.00495,0.00576,0,0.00373,0.00474,0.0064,0.0131,0,0,0.00411,0.00492,0.00568,0,0.00371,0.0046,0.00675,0.01403,0,0,0.00439,0.00523,0.00601,0,0.00381,0.00498,0.00693,0.01515,0,0,0.00392,0.0048,0.00564,0,0.00357,0.00437,0.00552,0.0097,0,0,0.00413,0.00481,0.0054,0,0.00339,0.00418,0.00557,0.01035,0,0,0.00388,0.00459,0.00521,0,0.00332,0.00405,0.00512,0.009,0,0,0.00381,0.00445,0.005,0,0.00352,0.00435,0.00585,0.01118,0,0,0.00406,0.00479,0.00545,0,0.00319,0.00383,0.00504,0.00881,0,0,0.0039,0.00452,0.00504,0,0.00402,0.00365,0.00123,0.00126,0,0,0,0,0,0,0.0041,0.00368,0.00124,0.00127,0,0,0,0,0,0,0.00425,0.00374,0.00126,0.00129,0,0,0,0,0,0,0.0071,0.00365,0.00123,0.00126,0,0,0,0,0,0,0.00424,0.00375,0.00126,0.00128,0,0,0,0,0,0,0.00419,0.00368,0.00124,0.00126,0,0,0,0,0,0,0.00574,0.00371,0.00125,0.00127,0,0,0,0,0,0,0.00651,0.00332,0.00123,0.00125,0,0,0,0,0,0,0.00234,0.0017,0.00113,0.00115,0,0,0,0,0,0,0.0917,0.1282,0.18747,0.4351,0,0,0,0,0,0,0.08006,0.11578,0.17262,0.41199,0,0,0,0,0,0,0.08828,0.13116,0.19211,0.45842,0,0,0,0,0,0,0.10899,0.15077,0.21916,0.50155,0,0,0,0,0,0,0.05677,0.09706,0.15709,0.39911,0,0,0,0,0,0,0.06277,0.10509,0.16649,0.42002,0,0,0,0,0,0,0.05802,0.09497,0.1543,0.39061,0,0,0,0,0,0,0.07543,0.11191,0.1767,0.43306,0,0,0,0,0,0,0.05254,0.0859,0.15079,0.37373,0,0,0,0,0 +Mini car,PH40G,2015,0,0,0.01465,0.01492,0.01544,0.01682,0,0,0,0,0,0,0.01509,0.01534,0.01581,0.01703,0,0,0,0,0,0,0.01629,0.01662,0.01712,0.01842,0,0,0,0,0,0,0.01387,0.01416,0.01472,0.01624,0,0,0,0,0,0,0.01602,0.01619,0.01652,0.01729,0,0,0,0,0,0,0.01475,0.01495,0.01532,0.0162,0,0,0,0,0,0,0.0147,0.01485,0.01515,0.01584,0,0,0,0,0,0,0.0154,0.01563,0.01601,0.01698,0,0,0,0,0,0,0.0151,0.01527,0.01556,0.01622,0,0,0,0,0,0,0.00601,0.00457,0.00462,0.00573,0,0,0,0,0,0,0.00551,0.00423,0.00436,0.00537,0,0,0,0,0,0,0.00575,0.00471,0.00487,0.00607,0,0,0,0,0,0,0.00647,0.00535,0.00551,0.00687,0,0,0,0,0,0,0.00416,0.00372,0.00412,0.00501,0,0,0,0,0,0,0.00451,0.00403,0.0044,0.00541,0,0,0,0,0,0,0.00416,0.00371,0.00413,0.00501,0,0,0,0,0,0,0.0047,0.00411,0.00439,0.00539,0,0,0,0,0,0,0.00346,0.00358,0.0039,0.0047,0,0,0,0,0,0,1.03292,1.8113,2.46357,3.15619,0,0,0,0,0,0,1.0151,1.793,2.46137,3.13336,0,0,0,0,0,0,1.14932,2.00326,2.81488,3.62067,0,0,0,0,0,0,1.13138,2.15504,3.03647,3.8972,0,0,0,0,0,0,0.91749,1.8679,2.67193,3.35597,0,0,0,0,0,0,0.98882,1.94146,2.78193,3.524,0,0,0,0,0,0,0.93976,1.91718,2.73813,3.44038,0,0,0,0,0,0,0.99955,1.92883,2.70555,3.4238,0,0,0,0,0,0,0.87707,1.70545,2.37236,2.97027,0,0,0,0,0,0,169.28924,170.54802,171.83774,177.39414,0,0,0,0,0,0,170.85395,172.00139,173.14068,178.48262,0,0,0,0,0,0,173.64701,174.84914,176.05594,181.5667,0,0,0,0,0,0,169.41057,170.68925,172.01323,177.63299,0,0,0,0,0,0,174.19785,174.93587,175.52739,180.03914,0,0,0,0,0,0,171.28131,172.17324,172.97667,177.77778,0,0,0,0,0,0,172.53521,173.23875,173.79149,178.20675,0,0,0,0,0,0,172.59101,173.50673,174.33665,179.20664,0,0,0,0,0,0,169.35713,170.14047,170.79107,175.29452,0,0,0,0,0,0,0.00221,0.00249,0.00287,0.00404,0,0,0,0,0,0,0.00222,0.0025,0.00288,0.00405,0,0,0,0,0,0,0.00225,0.00253,0.0029,0.00406,0,0,0,0,0,0,0.00223,0.00251,0.0029,0.0041,0,0,0,0,0,0,0.00225,0.00253,0.00291,0.00407,0,0,0,0,0,0,0.00225,0.00253,0.00292,0.00411,0,0,0,0,0,0,0.00222,0.00251,0.00289,0.00406,0,0,0,0,0,0,0.00224,0.00252,0.0029,0.00407,0,0,0,0,0,0,0.00221,0.00248,0.00286,0.00401,0,0,0,0,0,0,0.00845,0.00979,0.01264,0.01287,0,0,0,0,0,0,0.00847,0.00981,0.01267,0.0129,0,0,0,0,0,0,0.00849,0.00984,0.01271,0.01293,0,0,0,0,0,0,0.00839,0.00972,0.01256,0.01278,0,0,0,0,0,0,0.00848,0.00982,0.01269,0.01291,0,0,0,0,0,0,0.00842,0.00976,0.0126,0.01283,0,0,0,0,0,0,0.00844,0.00979,0.01264,0.01287,0,0,0,0,0,0,0.00848,0.00982,0.01269,0.01292,0,0,0,0,0,0,0.0085,0.00985,0.01272,0.01294,0,0,0,0,0,0,0.04197,0.05511,0.08116,0.11639,0,0,0,0,0,0,0.04148,0.05405,0.07994,0.11493,0,0,0,0,0,0,0.04172,0.05844,0.08599,0.12572,0,0,0,0,0,0,0.04417,0.06337,0.0933,0.13679,0,0,0,0,0,0,0.03684,0.0529,0.07944,0.1177,0,0,0,0,0,0,0.03928,0.05628,0.08411,0.12429,0,0,0,0,0,0,0.03749,0.05316,0.07998,0.1178,0,0,0,0,0,0,0.04076,0.05927,0.08802,0.12853,0,0,0,0,0,0,0.03011,0.05208,0.07773,0.11273,0,0,0,0,0,0,0.00088,0.00132,0.00215,0.00413,0,0,0.00075,0.00119,0,0,0.00084,0.00127,0.00204,0.00386,0,0,0.00072,0.00114,0,0,0.00076,0.00129,0.00209,0.00399,0,0,0.00073,0.00116,0,0,0.00089,0.00137,0.00222,0.00433,0,0,0.00075,0.0012,0,0,0.00076,0.00111,0.00175,0.00312,0,0,0.00064,0.00101,0,0,0.00074,0.00113,0.00181,0.00327,0,0,0.00065,0.00103,0,0,0.00072,0.00104,0.00165,0.00292,0,0,0.00061,0.00096,0,0,0.00074,0.00116,0.00186,0.00341,0,0,0.00067,0.00105,0,0,0.00064,0.001,0.00159,0.0028,0,0,0.0006,0.00093,0,0,0.01611,0.0171,0.01898,0.02361,0,0,0.02205,0.02303,0,0,0.01649,0.01744,0.01919,0.02339,0,0,0.02267,0.02359,0,0,0.01756,0.01876,0.02057,0.02498,0,0,0.02471,0.02567,0,0,0.01535,0.01642,0.01839,0.02334,0,0,0.02065,0.02165,0,0,0.0173,0.01803,0.01943,0.02246,0,0,0.02407,0.02484,0,0,0.01599,0.01684,0.01832,0.02161,0,0,0.02194,0.02274,0,0,0.01591,0.01659,0.0179,0.02068,0,0,0.02197,0.02269,0,0,0.01665,0.01755,0.01909,0.02262,0,0,0.02313,0.02396,0,0,0.01617,0.01695,0.0182,0.02087,0,0,0.02287,0.02357,0,0,0.00358,0.00446,0.00612,0.01021,0,0,0.00409,0.00495,0,0,0.00354,0.00438,0.00593,0.00965,0,0,0.00411,0.00493,0,0,0.00355,0.00461,0.0062,0.01011,0,0,0.00439,0.00523,0,0,0.00352,0.00446,0.00621,0.01059,0,0,0.00393,0.00481,0,0,0.00349,0.00413,0.00537,0.00805,0,0,0.00413,0.00481,0,0,0.00329,0.00404,0.00535,0.00827,0,0,0.00389,0.00459,0,0,0.00324,0.00384,0.005,0.00746,0,0,0.00381,0.00446,0,0,0.00339,0.00419,0.00555,0.00867,0,0,0.00407,0.0048,0,0,0.00313,0.00382,0.00493,0.00729,0,0,0.0039,0.00452,0,0,0.00324,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00327,0.0011,0.0011,0.00114,0,0,0,0,0,0,0.00332,0.00112,0.00112,0.00116,0,0,0,0,0,0,0.00324,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00333,0.00112,0.00112,0.00115,0,0,0,0,0,0,0.00328,0.0011,0.0011,0.00113,0,0,0,0,0,0,0.0033,0.00111,0.00111,0.00114,0,0,0,0,0,0,0.00295,0.00109,0.0011,0.00113,0,0,0,0,0,0,0.00152,0.001,0.00101,0.00103,0,0,0,0,0,0,0.06692,0.09584,0.15471,0.29779,0,0,0,0,0,0,0.06134,0.08907,0.14694,0.28648,0,0,0,0,0,0,0.06524,0.0979,0.16155,0.31185,0,0,0,0,0,0,0.07292,0.11029,0.17979,0.33899,0,0,0,0,0,0,0.04793,0.08091,0.14499,0.28893,0,0,0,0,0,0,0.05168,0.08583,0.1515,0.29895,0,0,0,0,0,0,0.04757,0.07979,0.14325,0.28446,0,0,0,0,0,0,0.05652,0.09136,0.15721,0.30721,0,0,0,0,0,0,0.04455,0.07849,0.13972,0.27701,0,0,0,0 +Mini car,PH40G,2020,0,0,0,0.01459,0.0148,0.01512,0.01606,0,0,0,0,0,0,0.01504,0.01523,0.01553,0.01637,0,0,0,0,0,0,0.01631,0.01651,0.01682,0.01771,0,0,0,0,0,0,0.01381,0.01403,0.01438,0.0154,0,0,0,0,0,0,0.01598,0.01611,0.01632,0.01688,0,0,0,0,0,0,0.01472,0.01487,0.0151,0.01573,0,0,0,0,0,0,0.01466,0.01478,0.01497,0.01548,0,0,0,0,0,0,0.01538,0.01554,0.01578,0.01646,0,0,0,0,0,0,0.01509,0.01521,0.01539,0.01587,0,0,0,0,0,0,0.00458,0.00373,0.00346,0.00425,0,0,0,0,0,0,0.00409,0.0034,0.00321,0.00395,0,0,0,0,0,0,0.00431,0.00379,0.00358,0.00447,0,0,0,0,0,0,0.00495,0.00434,0.00409,0.00509,0,0,0,0,0,0,0.00279,0.0028,0.00279,0.00353,0,0,0,0,0,0,0.00313,0.00308,0.00305,0.00386,0,0,0,0,0,0,0.00276,0.00277,0.00279,0.00352,0,0,0,0,0,0,0.00346,0.00319,0.00309,0.00387,0,0,0,0,0,0,0.00279,0.00266,0.00263,0.00328,0,0,0,0,0,0,0.84575,1.24759,1.55743,2.08042,0,0,0,0,0,0,0.81542,1.21821,1.52962,2.04544,0,0,0,0,0,0,0.86707,1.36279,1.74692,2.37453,0,0,0,0,0,0,0.93931,1.47887,1.90468,2.57482,0,0,0,0,0,0,0.7268,1.21611,1.57611,2.13787,0,0,0,0,0,0,0.76799,1.27893,1.6633,2.26695,0,0,0,0,0,0,0.75028,1.25048,1.61995,2.19708,0,0,0,0,0,0,0.80116,1.28036,1.63483,2.20789,0,0,0,0,0,0,0.69438,1.11222,1.40651,1.88774,0,0,0,0,0,0,135.98433,136.93426,137.84324,145.41065,0,0,0,0,0,0,137.15801,138.01536,138.79385,146.20154,0,0,0,0,0,0,139.42772,140.3288,141.162,148.76118,0,0,0,0,0,0,136.11318,137.08016,138.01909,145.64611,0,0,0,0,0,0,139.54878,140.06745,140.37351,147.11785,0,0,0,0,0,0,137.33127,137.97825,138.4692,145.41728,0,0,0,0,0,0,138.20515,138.69672,138.97155,145.6069,0,0,0,0,0,0,138.38758,139.05331,139.56516,146.59318,0,0,0,0,0,0,135.6903,136.24757,136.60873,143.2633,0,0,0,0,0,0,0.00226,0.00252,0.00289,0.00357,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00358,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.00228,0.00254,0.00292,0.00362,0,0,0,0,0,0,0.0023,0.00256,0.00292,0.0036,0,0,0,0,0,0,0.0023,0.00256,0.00293,0.00363,0,0,0,0,0,0,0.00228,0.00254,0.0029,0.00359,0,0,0,0,0,0,0.00229,0.00255,0.00292,0.00361,0,0,0,0,0,0,0.00226,0.00251,0.00287,0.00355,0,0,0,0,0,0,0.00845,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00989,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00977,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00981,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00984,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00988,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.0099,0.01272,0.01272,0,0,0,0,0,0,0.02999,0.0461,0.0617,0.0823,0,0,0,0,0,0,0.02917,0.04501,0.06044,0.08073,0,0,0,0,0,0,0.02945,0.04844,0.06467,0.08761,0,0,0,0,0,0,0.03168,0.05281,0.07057,0.0959,0,0,0,0,0,0,0.02464,0.04289,0.05816,0.07966,0,0,0,0,0,0,0.0268,0.0461,0.0623,0.08515,0,0,0,0,0,0,0.02515,0.0433,0.05884,0.0802,0,0,0,0,0,0,0.02924,0.04874,0.06556,0.08875,0,0,0,0,0,0,0.02572,0.0425,0.0574,0.07724,0,0,0,0,0,0,0.00077,0.00111,0.00161,0.00296,0,0,0.00075,0,0,0,0.00074,0.00107,0.00154,0.00279,0,0,0.00072,0,0,0,0.00075,0.00109,0.00157,0.00287,0,0,0.00073,0,0,0,0.00079,0.00115,0.00167,0.00309,0,0,0.00076,0,0,0,0.00066,0.00094,0.00133,0.00232,0,0,0.00065,0,0,0,0.00067,0.00096,0.00137,0.00242,0,0,0.00065,0,0,0,0.00063,0.00089,0.00125,0.00218,0,0,0.00062,0,0,0,0.00069,0.00098,0.0014,0.0025,0,0,0.00067,0,0,0,0.0006,0.00085,0.0012,0.00209,0,0,0.0006,0,0,0,0.01586,0.01664,0.01778,0.02093,0,0,0.02205,0,0,0,0.01628,0.017,0.01807,0.02097,0,0,0.02267,0,0,0,0.01756,0.01831,0.01942,0.02243,0,0,0.02472,0,0,0,0.01512,0.01592,0.01713,0.02047,0,0,0.02065,0,0,0,0.01708,0.01767,0.01852,0.02073,0,0,0.02407,0,0,0,0.01585,0.01647,0.01737,0.01974,0,0,0.02195,0,0,0,0.0157,0.01626,0.01705,0.01909,0,0,0.02197,0,0,0,0.01652,0.01717,0.01811,0.0206,0,0,0.02314,0,0,0,0.0161,0.01663,0.01739,0.01934,0,0,0.02287,0,0,0,0.00336,0.00404,0.00506,0.00784,0,0,0.00409,0,0,0,0.00336,0.004,0.00495,0.00751,0,0,0.00411,0,0,0,0.00355,0.00421,0.00519,0.00785,0,0,0.0044,0,0,0,0.00331,0.00403,0.00509,0.00805,0,0,0.00393,0,0,0,0.00329,0.00382,0.00457,0.00652,0,0,0.00413,0,0,0,0.00317,0.00372,0.00451,0.00661,0,0,0.00389,0,0,0,0.00306,0.00355,0.00425,0.00605,0,0,0.00382,0,0,0,0.00328,0.00385,0.00468,0.00689,0,0,0.00407,0,0,0,0.00307,0.00354,0.00421,0.00594,0,0,0.0039,0,0,0,0.00087,0.00087,0.00088,0.00093,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00093,0,0,0,0,0,0,0.00089,0.0009,0.0009,0.00095,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00093,0,0,0,0,0,0,0.00089,0.00089,0.0009,0.00094,0,0,0,0,0,0,0.00088,0.00088,0.00088,0.00093,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00093,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00084,0,0,0,0,0,0,0.05751,0.07869,0.11709,0.23233,0,0,0,0,0,0,0.05202,0.07185,0.10894,0.22233,0,0,0,0,0,0,0.05522,0.07965,0.12094,0.24271,0,0,0,0,0,0,0.06258,0.09037,0.13548,0.26296,0,0,0,0,0,0,0.03872,0.06132,0.10109,0.22186,0,0,0,0,0,0,0.04233,0.0663,0.10739,0.23006,0,0,0,0,0,0,0.03809,0.05974,0.09843,0.21663,0,0,0,0,0,0,0.04737,0.07132,0.11277,0.23646,0,0,0,0,0,0,0.03805,0.05883,0.09641,0.21185,0,0,0 +Mini car,PH40G,2025,0,0,0,0,0.01445,0.01458,0.01479,0.01543,0,0,0,0,0,0,0.01492,0.01503,0.01523,0.0158,0,0,0,0,0,0,0.01618,0.0163,0.0165,0.01711,0,0,0,0,0,0,0.01366,0.01379,0.01403,0.01472,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.0165,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.0153,0,0,0,0,0,0,0.01457,0.01464,0.01477,0.01512,0,0,0,0,0,0,0.01527,0.01537,0.01553,0.016,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01554,0,0,0,0,0,0,0.00391,0.00295,0.00265,0.00326,0,0,0,0,0,0,0.0034,0.00262,0.00238,0.00295,0,0,0,0,0,0,0.00364,0.00292,0.00267,0.00335,0,0,0,0,0,0,0.00425,0.00339,0.00308,0.00385,0,0,0,0,0,0,0.00205,0.00188,0.00183,0.00237,0,0,0,0,0,0,0.0024,0.00214,0.00206,0.00266,0,0,0,0,0,0,0.00201,0.00184,0.00181,0.00235,0,0,0,0,0,0,0.00274,0.0023,0.00216,0.00274,0,0,0,0,0,0,0.00202,0.00177,0.00172,0.00219,0,0,0,0,0,0,0.64002,0.91106,1.14582,1.51956,0,0,0,0,0,0,0.6018,0.87144,1.10439,1.46771,0,0,0,0,0,0,0.64598,0.97767,1.26206,1.7014,0,0,0,0,0,0,0.70836,1.0731,1.38962,1.86314,0,0,0,0,0,0,0.49172,0.81222,1.0702,1.44633,0,0,0,0,0,0,0.53266,0.86996,1.14709,1.55544,0,0,0,0,0,0,0.50745,0.83597,1.10102,1.48915,0,0,0,0,0,0,0.56646,0.88352,1.14198,1.5336,0,0,0,0,0,0,0.47123,0.74464,0.95676,1.28069,0,0,0,0,0,0,109.89527,110.71383,111.66647,118.48003,0,0,0,0,0,0,110.77773,111.51899,112.3586,119.0227,0,0,0,0,0,0,112.63298,113.41152,114.30191,121.14068,0,0,0,0,0,0,110.02531,110.85935,111.84047,118.71303,0,0,0,0,0,0,112.47694,112.93454,113.36173,119.40882,0,0,0,0,0,0,110.78387,111.34893,111.9367,118.17669,0,0,0,0,0,0,111.38494,111.81975,112.21893,118.16864,0,0,0,0,0,0,111.64067,112.22155,112.82827,119.13943,0,0,0,0,0,0,109.38059,109.86867,110.33711,116.30106,0,0,0,0,0,0,0.00228,0.00252,0.00288,0.0035,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00351,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.00229,0.00254,0.00291,0.00355,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00231,0.00256,0.00292,0.00356,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00354,0,0,0,0,0,0,0.00227,0.00251,0.00286,0.00348,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.00979,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00982,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00986,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00988,0.01272,0.01272,0,0,0,0,0,0,0.02304,0.03342,0.04442,0.06033,0,0,0,0,0,0,0.02212,0.03226,0.04305,0.05865,0,0,0,0,0,0,0.02229,0.03436,0.04565,0.06315,0,0,0,0,0,0,0.02423,0.03778,0.05022,0.06957,0,0,0,0,0,0,0.01758,0.029,0.03937,0.05539,0,0,0,0,0,0,0.01961,0.0318,0.04292,0.06009,0,0,0,0,0,0,0.01802,0.02943,0.04002,0.05595,0,0,0,0,0,0,0.02149,0.03383,0.04541,0.06298,0,0,0,0,0,0,0.01847,0.02904,0.03925,0.05422,0,0,0.04953,0,0,0,0.0005,0.00071,0.00105,0.00198,0,0,0.04325,0,0,0,0.00048,0.00068,0.001,0.00187,0,0,0.04823,0,0,0,0.00049,0.00069,0.00102,0.00192,0,0,0.05311,0,0,0,0.00051,0.00073,0.00108,0.00206,0,0,0.02579,0,0,0,0.00043,0.0006,0.00087,0.00157,0,0,0.03017,0,0,0,0.00044,0.00061,0.00089,0.00163,0,0,0.02477,0,0,0,0.00041,0.00057,0.00082,0.00147,0,0,0.03429,0,0,0,0.00045,0.00063,0.00091,0.00168,0,0,0.02451,0,0,0,0.00039,0.00055,0.00078,0.00142,0,0,0.13141,0,0,0,0.01528,0.01575,0.01652,0.01869,0,0,0.11768,0,0,0,0.01572,0.01616,0.01688,0.01889,0,0,0.13192,0,0,0,0.01699,0.01745,0.01819,0.02027,0,0,0.13906,0,0,0,0.01451,0.015,0.01581,0.01809,0,0,0.07947,0,0,0,0.0166,0.01696,0.01754,0.01909,0,0,0.08737,0,0,0,0.01535,0.01573,0.01634,0.018,0,0,0.075,0,0,0,0.01525,0.01559,0.01612,0.01755,0,0,0.098,0,0,0,0.01602,0.01641,0.01704,0.01879,0,0,0.07487,0,0,0,0.01567,0.01599,0.01651,0.01789,0,0,0.10083,0,0,0,0.00284,0.00326,0.00394,0.00586,0,0,0.08815,0,0,0,0.00286,0.00325,0.00389,0.00567,0,0,0.09923,0,0,0,0.00304,0.00345,0.0041,0.00594,0,0,0.10868,0,0,0,0.00278,0.00321,0.00393,0.00595,0,0,0.05314,0,0,0,0.00287,0.00319,0.0037,0.00507,0,0,0.06176,0,0,0,0.00273,0.00306,0.0036,0.00507,0,0,0.05073,0,0,0,0.00265,0.00295,0.00343,0.00469,0,0,0.0703,0,0,0,0.00283,0.00318,0.00374,0.00528,0,0,0.0499,0,0,0,0.00268,0.00297,0.00343,0.00465,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00076,0,0,0,0,0,0,0.00071,0.00071,0.00072,0.00076,0,0,0,0,0,0,0.00072,0.00072,0.00073,0.00077,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00076,0,0,0,0,0,0,0.00072,0.00072,0.00072,0.00076,0,0,0,0,0,0,0.00071,0.00071,0.00071,0.00075,0,0,0,0,0,0,0.00071,0.00071,0.00072,0.00075,0,0,0,0,0,0,0.0007,0.00071,0.00071,0.00075,0,0,0,0,0,0,0.00064,0.00065,0.00065,0.00069,0,0,0,0,0,0,0.05019,0.06417,0.09324,0.19007,0,0,0,0,0,0,0.04446,0.05703,0.08463,0.17941,0,0,0,0,0,0,0.0478,0.06392,0.09508,0.19705,0,0,0,0,0,0,0.05482,0.0734,0.10749,0.2138,0,0,0,0,0,0,0.03019,0.04385,0.07256,0.17225,0,0,0,0,0,0,0.03399,0.04886,0.07879,0.18029,0,0,0,0,0,0,0.02933,0.04188,0.06929,0.16604,0,0,0,0,0,0,0.03873,0.05368,0.08403,0.18619,0,0,0,0,0,0,0.02919,0.04147,0.0684,0.16392,0,0 +Mini car,PH40G,2030,0,0,0,0,0,0.01445,0.01457,0.01479,0.01528,0,0,0,0,0,0,0.01492,0.01503,0.01522,0.01566,0,0,0,0,0,0,0.01618,0.0163,0.0165,0.01696,0,0,0,0,0,0,0.01366,0.01379,0.01402,0.01455,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.0164,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.01519,0,0,0,0,0,0,0.01457,0.01464,0.01476,0.01503,0,0,0,0,0,0,0.01527,0.01537,0.01553,0.01589,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01545,0,0,0,0,0,0,0.00367,0.0027,0.00242,0.00288,0,0,0,0,0,0,0.00316,0.00237,0.00215,0.00257,0,0,0,0,0,0,0.00341,0.00264,0.00241,0.00289,0,0,0,0,0,0,0.004,0.00308,0.0028,0.00335,0,0,0,0,0,0,0.0018,0.00159,0.00156,0.00191,0,0,0,0,0,0,0.00215,0.00184,0.00178,0.00217,0,0,0,0,0,0,0.00175,0.00155,0.00153,0.00188,0,0,0,0,0,0,0.00249,0.00202,0.00189,0.00229,0,0,0,0,0,0,0.00177,0.0015,0.00145,0.00177,0,0,0,0,0,0,0.58608,0.8278,1.05137,1.32711,0,0,0,0,0,0,0.54598,0.78581,1.00579,1.26974,0,0,0,0,0,0,0.58847,0.88254,1.15028,1.46563,0,0,0,0,0,0,0.64821,0.97245,1.27098,1.61256,0,0,0,0,0,0,0.4308,0.71283,0.94946,1.2073,0,0,0,0,0,0,0.47156,0.76902,1.02453,1.30735,0,0,0,0,0,0,0.44441,0.73379,0.97753,1.24297,0,0,0,0,0,0,0.50524,0.78562,1.02521,1.30121,0,0,0,0,0,0,0.41293,0.65407,0.84912,1.07368,0,0,0,0,0,0,101.18797,102.21098,103.79512,108.28638,0,0,0,0,0,0,101.97589,102.92921,104.40974,108.74143,0,0,0,0,0,0,103.69205,104.68435,106.22525,110.69036,0,0,0,0,0,0,101.3178,102.35556,103.96908,108.51645,0,0,0,0,0,0,103.45291,104.1466,105.23981,108.94936,0,0,0,0,0,0,101.93131,102.72099,103.95911,107.88522,0,0,0,0,0,0,102.44526,103.11544,104.17527,107.81256,0,0,0,0,0,0,102.72135,103.5276,104.78881,108.76679,0,0,0,0,0,0,100.60973,101.32401,102.43675,106.12133,0,0,0,0,0,0,0.00228,0.00251,0.00287,0.00349,0,0,0,0,0,0,0.00229,0.00252,0.00289,0.0035,0,0,0,0,0,0,0.00231,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00229,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.00231,0.00255,0.00291,0.00352,0,0,0,0,0,0,0.00231,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00229,0.00253,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.00291,0.00353,0,0,0,0,0,0,0.00227,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00986,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02042,0.02903,0.03908,0.05176,0,0,0,0,0,0,0.01945,0.02785,0.03768,0.05002,0,0,0,0,0,0,0.01955,0.02947,0.03976,0.05338,0,0,0,0,0,0,0.02136,0.03255,0.0439,0.05901,0,0,0,0,0,0,0.01491,0.0242,0.03358,0.04566,0,0,0,0,0,0,0.01687,0.02684,0.03694,0.05002,0,0,0,0,0,0,0.01532,0.02463,0.0342,0.04629,0,0,0,0,0,0,0.01854,0.02866,0.0392,0.05267,0,0,0,0,0,0,0.01574,0.02441,0.03371,0.04509,0,0.0134,0.02933,0,0,0,0.0005,0.00071,0.00104,0.00174,0,0.01173,0.0256,0,0,0,0.00048,0.00068,0.001,0.00165,0,0.01301,0.02854,0,0,0,0.00049,0.00069,0.00102,0.00169,0,0.01425,0.03131,0,0,0,0.00051,0.00073,0.00107,0.00181,0,0.00705,0.0152,0,0,0,0.00043,0.0006,0.00086,0.00139,0,0.0082,0.01773,0,0,0,0.00044,0.00061,0.00089,0.00144,0,0.0068,0.0146,0,0,0,0.00041,0.00057,0.00081,0.0013,0,0.00934,0.02027,0,0,0,0.00045,0.00063,0.00091,0.00149,0,0.00678,0.01454,0,0,0,0.00039,0.00055,0.00078,0.00125,0,0.05,0.08584,0,0,0,0.01528,0.01575,0.01651,0.01815,0,0.04694,0.07794,0,0,0,0.01572,0.01616,0.01687,0.01839,0,0.05206,0.08684,0,0,0,0.01699,0.01745,0.01818,0.01975,0,0.05078,0.08942,0,0,0,0.01451,0.015,0.01579,0.01753,0,0.03804,0.05587,0,0,0,0.0166,0.01696,0.01753,0.0187,0,0.0385,0.05944,0,0,0,0.01535,0.01573,0.01633,0.01758,0,0.03541,0.0525,0,0,0,0.01525,0.01558,0.01611,0.01719,0,0.0422,0.06655,0,0,0,0.01601,0.01641,0.01703,0.01834,0,0.03615,0.0531,0,0,0,0.01566,0.01599,0.0165,0.01753,0,0.02882,0.06052,0,0,0,0.00284,0.00326,0.00393,0.00538,0,0.02559,0.05301,0,0,0,0.00286,0.00325,0.00388,0.00522,0,0.02859,0.05935,0,0,0,0.00304,0.00344,0.00409,0.00548,0,0.03058,0.06476,0,0,0,0.00277,0.00321,0.00391,0.00544,0,0.01649,0.03227,0,0,0,0.00286,0.00318,0.00369,0.00472,0,0.01853,0.03706,0,0,0,0.00273,0.00306,0.00359,0.0047,0,0.01571,0.03083,0,0,0,0.00265,0.00295,0.00342,0.00437,0,0.02094,0.04248,0,0,0,0.00283,0.00318,0.00373,0.00489,0,0.01565,0.03065,0,0,0,0.00268,0.00297,0.00342,0.00434,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00066,0.00067,0.00069,0,0,0,0,0,0,0.00066,0.00067,0.00068,0.00071,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00069,0,0,0,0,0,0,0.00066,0.00066,0.00067,0.0007,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00069,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00059,0.0006,0.0006,0.00063,0,0,0,0,0,0,0.04799,0.06027,0.08793,0.17273,0,0,0,0,0,0,0.04225,0.05313,0.07927,0.16179,0,0,0,0,0,0,0.04561,0.05967,0.08925,0.17796,0,0,0,0,0,0,0.05249,0.06876,0.10105,0.19351,0,0,0,0,0,0,0.02785,0.03942,0.06625,0.15181,0,0,0,0,0,0,0.03166,0.04435,0.07238,0.15964,0,0,0,0,0,0,0.02695,0.03739,0.06286,0.14537,0,0,0,0,0,0,0.0363,0.04918,0.07763,0.16585,0,0,0,0,0,0,0.02673,0.03707,0.06224,0.14427,0 +Mini car,PH40G,2035,0,0,0,0,0,0,0.01445,0.01457,0.01479,0.01526,0,0,0,0,0,0,0.01491,0.01503,0.01522,0.01565,0,0,0,0,0,0,0.01618,0.01629,0.0165,0.01695,0,0,0,0,0,0,0.01366,0.01379,0.01402,0.01453,0,0,0,0,0,0,0.01588,0.01596,0.0161,0.01639,0,0,0,0,0,0,0.01462,0.01471,0.01486,0.01518,0,0,0,0,0,0,0.01457,0.01464,0.01477,0.01503,0,0,0,0,0,0,0.01527,0.01536,0.01553,0.01587,0,0,0,0,0,0,0.01501,0.01508,0.0152,0.01544,0,0,0,0,0,0,0.00365,0.0027,0.00242,0.00281,0,0,0,0,0,0,0.00315,0.00237,0.00215,0.0025,0,0,0,0,0,0,0.00339,0.00265,0.0024,0.00281,0,0,0,0,0,0,0.00398,0.00309,0.00279,0.00326,0,0,0,0,0,0,0.0018,0.00159,0.00156,0.00182,0,0,0,0,0,0,0.00215,0.00185,0.00178,0.00208,0,0,0,0,0,0,0.00175,0.00155,0.00153,0.0018,0,0,0,0,0,0,0.00248,0.00202,0.00189,0.00221,0,0,0,0,0,0,0.00176,0.0015,0.00145,0.00169,0,0,0,0,0,0,0.58569,0.83122,1.04918,1.29449,0,0,0,0,0,0,0.5457,0.78846,1.00406,1.23656,0,0,0,0,0,0,0.58824,0.88591,1.14811,1.42522,0,0,0,0,0,0,0.64799,0.97641,1.26846,1.56917,0,0,0,0,0,0,0.43079,0.71302,0.94917,1.16819,0,0,0,0,0,0,0.47151,0.76985,1.02384,1.2662,0,0,0,0,0,0,0.44447,0.73447,0.97693,1.20222,0,0,0,0,0,0,0.50502,0.78659,1.02444,1.26303,0,0,0,0,0,0,0.41279,0.6542,0.84887,1.04033,0,0,0,0,0,0,101.15856,102.20733,103.79223,106.70994,0,0,0,0,0,0,101.94824,102.92577,104.40687,107.15111,0,0,0,0,0,0,103.66319,104.68075,106.22245,109.07402,0,0,0,0,0,0,101.2875,102.35188,103.96617,106.93962,0,0,0,0,0,0,103.43163,104.14396,105.23762,107.33012,0,0,0,0,0,0,101.90759,102.71799,103.95662,106.29252,0,0,0,0,0,0,102.4244,103.11272,104.17314,106.20913,0,0,0,0,0,0,102.69737,103.52457,104.78635,107.16159,0,0,0,0,0,0,100.5888,101.32151,102.43472,104.5455,0,0,0,0,0,0,0.00227,0.00251,0.00287,0.0035,0,0,0,0,0,0,0.00228,0.00252,0.00289,0.00351,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00352,0,0,0,0,0,0,0.00228,0.00253,0.0029,0.00354,0,0,0,0,0,0,0.0023,0.00255,0.00291,0.00353,0,0,0,0,0,0,0.0023,0.00255,0.00292,0.00355,0,0,0,0,0,0,0.00228,0.00253,0.00289,0.00352,0,0,0,0,0,0,0.0023,0.00254,0.0029,0.00353,0,0,0,0,0,0,0.00226,0.0025,0.00286,0.00347,0,0,0,0,0,0,0.00845,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00847,0.00985,0.01267,0.01267,0,0,0,0,0,0,0.00849,0.00988,0.01271,0.01271,0,0,0,0,0,0,0.00839,0.00976,0.01256,0.01256,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.00842,0.0098,0.0126,0.0126,0,0,0,0,0,0,0.00844,0.00983,0.01264,0.01264,0,0,0,0,0,0,0.00848,0.00987,0.01269,0.01269,0,0,0,0,0,0,0.0085,0.00989,0.01272,0.01272,0,0,0,0,0,0,0.02036,0.02895,0.03912,0.05044,0,0,0,0,0,0,0.0194,0.02777,0.03772,0.04867,0,0,0,0,0,0,0.0195,0.02938,0.0398,0.05181,0,0,0,0,0,0,0.0213,0.03244,0.04396,0.05732,0,0,0,0,0,0,0.01488,0.02414,0.03361,0.04406,0,0,0,0,0,0,0.01684,0.02678,0.03697,0.04838,0,0,0,0,0,0,0.01529,0.02455,0.03424,0.04473,0,0,0,0,0,0,0.0185,0.02861,0.03923,0.05099,0,0,0,0,0,0,0.01571,0.02439,0.03371,0.0436,0.00739,0.01035,0.02047,0,0,0,0.0005,0.0007,0.00104,0.00172,0.00648,0.00906,0.01784,0,0,0,0.00048,0.00068,0.001,0.00163,0.00706,0.00989,0.01972,0,0,0,0.00049,0.00069,0.00102,0.00167,0.0077,0.0108,0.02167,0,0,0,0.00051,0.00072,0.00108,0.00179,0.00392,0.00545,0.01056,0,0,0,0.00043,0.0006,0.00086,0.00137,0.00451,0.00628,0.01276,0,0,0,0.00044,0.00061,0.00089,0.00142,0.00384,0.00532,0.01022,0,0,0,0.00041,0.00056,0.00081,0.00128,0.00517,0.00721,0.01411,0,0,0,0.00045,0.00062,0.00091,0.00146,0.0039,0.00541,0.01029,0,0,0,0.00039,0.00054,0.00078,0.00123,0.0363,0.04266,0.06576,0,0,0,0.01527,0.01574,0.01651,0.01809,0.03502,0.04051,0.06045,0,0,0,0.01571,0.01615,0.01687,0.01833,0.03846,0.04444,0.0669,0,0,0,0.01699,0.01744,0.01819,0.01969,0.03574,0.04245,0.06726,0,0,0,0.0145,0.01498,0.0158,0.01747,0.03106,0.03423,0.04562,0,0,0,0.0166,0.01695,0.01753,0.01865,0.03022,0.03389,0.04851,0,0,0,0.01535,0.01572,0.01633,0.01753,0.02881,0.03192,0.04276,0,0,0,0.01525,0.01558,0.01612,0.01715,0.03279,0.03713,0.05261,0,0,0,0.01601,0.0164,0.01704,0.01829,0.02979,0.03296,0.04372,0,0,0,0.01566,0.01599,0.01651,0.01749,0.0167,0.02233,0.04276,0,0,0,0.00284,0.00325,0.00394,0.00533,0.01503,0.0199,0.03754,0,0,0,0.00286,0.00324,0.00389,0.00517,0.01655,0.02185,0.04171,0,0,0,0.00304,0.00343,0.0041,0.00543,0.01727,0.02322,0.04516,0,0,0,0.00277,0.00319,0.00392,0.00539,0.01032,0.01312,0.0232,0,0,0,0.00286,0.00318,0.00369,0.00468,0.0112,0.01446,0.02732,0,0,0,0.00273,0.00306,0.0036,0.00466,0.00987,0.01262,0.02221,0,0,0,0.00265,0.00295,0.00342,0.00434,0.01261,0.01645,0.03015,0,0,0,0.00283,0.00317,0.00374,0.00484,0.01002,0.01283,0.02235,0,0,0,0.00268,0.00297,0.00343,0.0043,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00067,0.00068,0,0,0,0,0,0,0.00066,0.00067,0.00068,0.0007,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00068,0,0,0,0,0,0,0.00066,0.00066,0.00067,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00066,0.00066,0.00068,0,0,0,0,0,0,0.00065,0.00065,0.00066,0.00067,0,0,0,0,0,0,0.00059,0.0006,0.0006,0.00062,0,0,0,0,0,0,0.04784,0.06032,0.08788,0.17065,0,0,0,0,0,0,0.04212,0.05317,0.07922,0.15963,0,0,0,0,0,0,0.04548,0.05974,0.08918,0.17553,0,0,0,0,0,0,0.05233,0.06879,0.10101,0.19092,0,0,0,0,0,0,0.02777,0.03937,0.06626,0.14921,0,0,0,0,0,0,0.03157,0.04433,0.07238,0.15698,0,0,0,0,0,0,0.02687,0.03734,0.06289,0.1427,0,0,0,0,0,0,0.03618,0.04907,0.07768,0.16337,0,0,0,0,0,0,0.02665,0.03706,0.06223,0.14178 +Mini car,PH40G,2040,0,0,0,0,0,0,0,0.01445,0.01457,0.01479,0,0,0,0,0,0,0,0.01491,0.01503,0.01523,0,0,0,0,0,0,0,0.01618,0.0163,0.0165,0,0,0,0,0,0,0,0.01365,0.01379,0.01403,0,0,0,0,0,0,0,0.01588,0.01596,0.0161,0,0,0,0,0,0,0,0.01462,0.01471,0.01486,0,0,0,0,0,0,0,0.01457,0.01464,0.01477,0,0,0,0,0,0,0,0.01527,0.01536,0.01553,0,0,0,0,0,0,0,0.01501,0.01508,0.0152,0,0,0,0,0,0,0,0.00366,0.0027,0.00241,0,0,0,0,0,0,0,0.00316,0.00237,0.00215,0,0,0,0,0,0,0,0.0034,0.00264,0.0024,0,0,0,0,0,0,0,0.00399,0.00309,0.00279,0,0,0,0,0,0,0,0.0018,0.00159,0.00156,0,0,0,0,0,0,0,0.00215,0.00184,0.00177,0,0,0,0,0,0,0,0.00175,0.00155,0.00153,0,0,0,0,0,0,0,0.00249,0.00201,0.00189,0,0,0,0,0,0,0,0.00176,0.0015,0.00145,0,0,0,0,0,0,0,0.58836,0.82927,1.04675,0,0,0,0,0,0,0,0.54774,0.78691,1.00216,0,0,0,0,0,0,0,0.591,0.88399,1.14571,0,0,0,0,0,0,0,0.65139,0.97417,1.26567,0,0,0,0,0,0,0,0.43093,0.71271,0.94894,0,0,0,0,0,0,0,0.47219,0.76921,1.02316,0,0,0,0,0,0,0,0.44494,0.73393,0.97632,0,0,0,0,0,0,0,0.50572,0.78586,1.02366,0,0,0,0,0,0,0,0.41271,0.65392,0.84868,0,0,0,0,0,0,0,101.15397,102.20223,103.79179,0,0,0,0,0,0,0,101.94386,102.92092,104.40643,0,0,0,0,0,0,0,103.65868,104.67579,106.22197,0,0,0,0,0,0,0,101.28285,102.34662,103.96565,0,0,0,0,0,0,0,103.42841,104.14038,105.23735,0,0,0,0,0,0,0,101.90384,102.71395,103.95623,0,0,0,0,0,0,0,102.42127,103.10917,104.17277,0,0,0,0,0,0,0,102.69353,103.52046,104.78598,0,0,0,0,0,0,0,100.58559,101.31795,102.43444,0,0,0,0,0,0,0,0.00227,0.00251,0.00287,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00228,0.00253,0.0029,0,0,0,0,0,0,0,0.0023,0.00254,0.00291,0,0,0,0,0,0,0,0.0023,0.00255,0.00292,0,0,0,0,0,0,0,0.00228,0.00252,0.00289,0,0,0,0,0,0,0,0.0023,0.00254,0.0029,0,0,0,0,0,0,0,0.00226,0.0025,0.00286,0,0,0,0,0,0,0,0.00845,0.00983,0.01264,0,0,0,0,0,0,0,0.00847,0.00985,0.01267,0,0,0,0,0,0,0,0.00849,0.00988,0.01271,0,0,0,0,0,0,0,0.00839,0.00976,0.01256,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.00842,0.0098,0.0126,0,0,0,0,0,0,0,0.00844,0.00983,0.01264,0,0,0,0,0,0,0,0.00848,0.00987,0.01269,0,0,0,0,0,0,0,0.0085,0.00989,0.01272,0,0,0,0,0,0,0,0.02029,0.02897,0.03917,0,0,0,0,0,0,0,0.01934,0.02779,0.03777,0,0,0,0,0,0,0,0.01943,0.0294,0.03986,0,0,0,0,0,0,0,0.0212,0.03247,0.04404,0,0,0,0,0,0,0,0.01483,0.02416,0.03365,0,0,0,0,0,0,0,0.01678,0.02679,0.03702,0,0,0,0,0,0,0,0.01523,0.02457,0.03429,0,0,0,0,0,0,0,0.01845,0.02861,0.03926,0,0,0,0,0,0,0,0.01569,0.02439,0.03372,0.00252,0.00406,0.00551,0.01237,0,0,0,0.0005,0.00071,0.00105,0.00231,0.00361,0.0049,0.0109,0,0,0,0.00048,0.00068,0.001,0.00267,0.00335,0.00452,0.01185,0,0,0,0.00049,0.00069,0.00102,0.00276,0.00409,0.00556,0.01294,0,0,0,0.00051,0.00073,0.00108,0.00162,0.00256,0.00348,0.00686,0,0,0,0.00043,0.0006,0.00087,0.00182,0.00262,0.00358,0.00776,0,0,0,0.00044,0.00061,0.00089,0.00158,0.00241,0.00327,0.00654,0,0,0,0.0004,0.00056,0.00081,0.00199,0.00287,0.00389,0.00874,0,0,0,0.00044,0.00063,0.00091,0.00145,0.00218,0.00294,0.00647,0,0,0,0.00039,0.00054,0.00078,0.02582,0.02907,0.03234,0.04778,0,0,0,0.01527,0.01574,0.01652,0.02605,0.02877,0.03164,0.0451,0,0,0,0.01571,0.01615,0.01688,0.02891,0.0302,0.03279,0.04937,0,0,0,0.01698,0.01744,0.01819,0.025,0.02779,0.03109,0.04779,0,0,0,0.01449,0.01499,0.01581,0.02614,0.02805,0.03006,0.03751,0,0,0,0.01659,0.01696,0.01754,0.02444,0.02603,0.02822,0.03739,0,0,0,0.01534,0.01572,0.01634,0.02401,0.0257,0.02754,0.0347,0,0,0,0.01524,0.01558,0.01612,0.02595,0.02776,0.02996,0.04076,0,0,0,0.01601,0.0164,0.01704,0.02464,0.02611,0.02771,0.03545,0,0,0,0.01566,0.01599,0.01651,0.00742,0.0103,0.0132,0.02685,0,0,0,0.00283,0.00325,0.00394,0.0071,0.0095,0.01205,0.02395,0,0,0,0.00285,0.00325,0.00389,0.0081,0.00924,0.01153,0.02621,0,0,0,0.00303,0.00344,0.0041,0.00777,0.01024,0.01316,0.02794,0,0,0,0.00276,0.0032,0.00393,0.00596,0.00765,0.00943,0.01602,0,0,0,0.00286,0.00318,0.0037,0.00609,0.0075,0.00936,0.01755,0,0,0,0.00272,0.00306,0.0036,0.00561,0.00712,0.00874,0.01507,0,0,0,0.00265,0.00295,0.00343,0.00655,0.00816,0.0101,0.01966,0,0,0,0.00282,0.00317,0.00374,0.00546,0.00677,0.00819,0.01503,0,0,0,0.00268,0.00297,0.00343,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00065,0.00066,0.00067,0,0,0,0,0,0,0,0.00066,0.00067,0.00068,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00066,0.00066,0.00067,0,0,0,0,0,0,0,0.00065,0.00066,0.00066,0,0,0,0,0,0,0,0.00065,0.00066,0.00066,0,0,0,0,0,0,0,0.00065,0.00065,0.00066,0,0,0,0,0,0,0,0.00059,0.0006,0.0006,0,0,0,0,0,0,0,0.04788,0.06025,0.08783,0,0,0,0,0,0,0,0.04215,0.05311,0.07918,0,0,0,0,0,0,0,0.04554,0.05967,0.08913,0,0,0,0,0,0,0,0.05236,0.06873,0.101,0,0,0,0,0,0,0,0.02775,0.03937,0.0663,0,0,0,0,0,0,0,0.03156,0.04431,0.07241,0,0,0,0,0,0,0,0.02684,0.03734,0.06293,0,0,0,0,0,0,0,0.0361,0.04909,0.07778,0,0,0,0,0,0,0,0.02664,0.03704,0.06224 +Mini car,PH40G,2045,0,0,0,0,0,0,0,0,0.01445,0.01457,0,0,0,0,0,0,0,0,0.01491,0.01503,0,0,0,0,0,0,0,0,0.01618,0.0163,0,0,0,0,0,0,0,0,0.01365,0.01379,0,0,0,0,0,0,0,0,0.01588,0.01596,0,0,0,0,0,0,0,0,0.01462,0.01471,0,0,0,0,0,0,0,0,0.01457,0.01464,0,0,0,0,0,0,0,0,0.01527,0.01537,0,0,0,0,0,0,0,0,0.01501,0.01508,0,0,0,0,0,0,0,0,0.00366,0.0027,0,0,0,0,0,0,0,0,0.00315,0.00237,0,0,0,0,0,0,0,0,0.0034,0.00264,0,0,0,0,0,0,0,0,0.00398,0.00308,0,0,0,0,0,0,0,0,0.0018,0.00159,0,0,0,0,0,0,0,0,0.00215,0.00184,0,0,0,0,0,0,0,0,0.00175,0.00155,0,0,0,0,0,0,0,0,0.00248,0.00201,0,0,0,0,0,0,0,0,0.00176,0.0015,0,0,0,0,0,0,0,0,0.58679,0.82731,0,0,0,0,0,0,0,0,0.54649,0.78538,0,0,0,0,0,0,0,0,0.58938,0.88204,0,0,0,0,0,0,0,0,0.64944,0.97189,0,0,0,0,0,0,0,0,0.43065,0.71254,0,0,0,0,0,0,0,0,0.47163,0.76867,0,0,0,0,0,0,0,0,0.4445,0.73349,0,0,0,0,0,0,0,0,0.50513,0.78524,0,0,0,0,0,0,0,0,0.41253,0.65377,0,0,0,0,0,0,0,0,101.14989,102.20214,0,0,0,0,0,0,0,0,101.94005,102.92095,0,0,0,0,0,0,0,0,103.65481,104.67579,0,0,0,0,0,0,0,0,101.27865,102.34657,0,0,0,0,0,0,0,0,103.42549,104.14033,0,0,0,0,0,0,0,0,101.90065,102.71391,0,0,0,0,0,0,0,0,102.41847,103.10915,0,0,0,0,0,0,0,0,102.6903,103.52038,0,0,0,0,0,0,0,0,100.58274,101.31788,0,0,0,0,0,0,0,0,0.00227,0.00251,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00228,0.00253,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.0023,0.00255,0,0,0,0,0,0,0,0,0.00228,0.00252,0,0,0,0,0,0,0,0,0.0023,0.00254,0,0,0,0,0,0,0,0,0.00226,0.0025,0,0,0,0,0,0,0,0,0.00845,0.00983,0,0,0,0,0,0,0,0,0.00847,0.00985,0,0,0,0,0,0,0,0,0.00849,0.00988,0,0,0,0,0,0,0,0,0.00839,0.00976,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.00842,0.0098,0,0,0,0,0,0,0,0,0.00844,0.00983,0,0,0,0,0,0,0,0,0.00848,0.00987,0,0,0,0,0,0,0,0,0.0085,0.00989,0,0,0,0,0,0,0,0,0.02031,0.02901,0,0,0,0,0,0,0,0,0.01935,0.02783,0,0,0,0,0,0,0,0,0.01945,0.02945,0,0,0,0,0,0,0,0,0.02123,0.03253,0,0,0,0,0,0,0,0,0.01485,0.02419,0,0,0,0,0,0,0,0,0.0168,0.02683,0,0,0,0,0,0,0,0,0.01525,0.02461,0,0,0,0,0,0,0,0,0.01846,0.02864,0,0,0,0,0,0,0,0,0.01569,0.02439,0,0.0015,0.00255,0.00356,0.00888,0,0,0,0.0005,0.00071,0,0.00141,0.00236,0.00332,0.00796,0,0,0,0.00048,0.00068,0,0.00128,0.00215,0.00346,0.00852,0,0,0,0.00049,0.00069,0,0.00151,0.00257,0.00367,0.00923,0,0,0,0.00051,0.00073,0,0.00123,0.00203,0.00271,0.0055,0,0,0,0.00043,0.0006,0,0.0012,0.00198,0.00281,0.00601,0,0,0,0.00044,0.00061,0,0.00117,0.00192,0.00255,0.00518,0,0,0,0.0004,0.00057,0,0.00122,0.00203,0.00293,0.00657,0,0,0,0.00045,0.00063,0,0.00104,0.00171,0.00245,0.00504,0,0,0,0.00039,0.00054,0,0.02376,0.02612,0.02848,0.04043,0,0,0,0.01527,0.01575,0,0.0242,0.02634,0.02853,0.03892,0,0,0,0.01571,0.01616,0,0.02592,0.02784,0.03093,0.04233,0,0,0,0.01699,0.01745,0,0.02239,0.02478,0.02736,0.03994,0,0,0,0.0145,0.015,0,0.02532,0.02703,0.0285,0.03464,0,0,0,0.01659,0.01696,0,0.02311,0.02488,0.02664,0.03371,0,0,0,0.01534,0.01573,0,0.02314,0.02474,0.02609,0.03183,0,0,0,0.01524,0.01558,0,0.02435,0.0261,0.02811,0.03619,0,0,0,0.01601,0.01641,0,0.02379,0.02518,0.02679,0.03243,0,0,0,0.01566,0.01599,0,0.0056,0.00769,0.00978,0.02035,0,0,0,0.00284,0.00326,0,0.00546,0.00735,0.0093,0.01848,0,0,0,0.00286,0.00325,0,0.00546,0.00716,0.00989,0.01998,0,0,0,0.00303,0.00344,0,0.00547,0.00758,0.00986,0.021,0,0,0,0.00277,0.00321,0,0.00523,0.00675,0.00805,0.01349,0,0,0,0.00286,0.00318,0,0.00492,0.00641,0.00804,0.0143,0,0,0,0.00272,0.00306,0,0.00485,0.00626,0.00746,0.01254,0,0,0,0.00265,0.00295,0,0.00514,0.00669,0.00847,0.01562,0,0,0,0.00283,0.00318,0,0.00471,0.00595,0.00737,0.01236,0,0,0,0.00268,0.00297,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00066,0.00067,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00066,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00066,0,0,0,0,0,0,0,0,0.00065,0.00065,0,0,0,0,0,0,0,0,0.00059,0.0006,0,0,0,0,0,0,0,0,0.04783,0.06022,0,0,0,0,0,0,0,0,0.0421,0.05308,0,0,0,0,0,0,0,0,0.04548,0.05962,0,0,0,0,0,0,0,0,0.05231,0.0687,0,0,0,0,0,0,0,0,0.02774,0.03939,0,0,0,0,0,0,0,0,0.03154,0.04431,0,0,0,0,0,0,0,0,0.02683,0.03736,0,0,0,0,0,0,0,0,0.03611,0.04915,0,0,0,0,0,0,0,0,0.02663,0.03704 +Mini car,PH40G,2050,0,0,0,0,0,0,0,0,0,0.01445,0,0,0,0,0,0,0,0,0,0.01491,0,0,0,0,0,0,0,0,0,0.01618,0,0,0,0,0,0,0,0,0,0.01366,0,0,0,0,0,0,0,0,0,0.01588,0,0,0,0,0,0,0,0,0,0.01462,0,0,0,0,0,0,0,0,0,0.01457,0,0,0,0,0,0,0,0,0,0.01527,0,0,0,0,0,0,0,0,0,0.01501,0,0,0,0,0,0,0,0,0,0.00365,0,0,0,0,0,0,0,0,0,0.00315,0,0,0,0,0,0,0,0,0,0.00339,0,0,0,0,0,0,0,0,0,0.00398,0,0,0,0,0,0,0,0,0,0.0018,0,0,0,0,0,0,0,0,0,0.00214,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00248,0,0,0,0,0,0,0,0,0,0.00176,0,0,0,0,0,0,0,0,0,0.58513,0,0,0,0,0,0,0,0,0,0.54518,0,0,0,0,0,0,0,0,0,0.58766,0,0,0,0,0,0,0,0,0,0.64735,0,0,0,0,0,0,0,0,0,0.4304,0,0,0,0,0,0,0,0,0,0.47107,0,0,0,0,0,0,0,0,0,0.44407,0,0,0,0,0,0,0,0,0,0.50455,0,0,0,0,0,0,0,0,0,0.41241,0,0,0,0,0,0,0,0,0,101.14991,0,0,0,0,0,0,0,0,0,101.94007,0,0,0,0,0,0,0,0,0,103.6548,0,0,0,0,0,0,0,0,0,101.27862,0,0,0,0,0,0,0,0,0,103.42549,0,0,0,0,0,0,0,0,0,101.9006,0,0,0,0,0,0,0,0,0,102.4184,0,0,0,0,0,0,0,0,0,102.69025,0,0,0,0,0,0,0,0,0,100.58271,0,0,0,0,0,0,0,0,0,0.00227,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00228,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0.00226,0,0,0,0,0,0,0,0,0,0.00845,0,0,0,0,0,0,0,0,0,0.00847,0,0,0,0,0,0,0,0,0,0.00849,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.00842,0,0,0,0,0,0,0,0,0,0.00844,0,0,0,0,0,0,0,0,0,0.00848,0,0,0,0,0,0,0,0,0,0.0085,0,0,0,0,0,0,0,0,0,0.02034,0,0,0,0,0,0,0,0,0,0.01938,0,0,0,0,0,0,0,0,0,0.01948,0,0,0,0,0,0,0,0,0,0.02128,0,0,0,0,0,0,0,0,0,0.01487,0,0,0,0,0,0,0,0,0,0.01682,0,0,0,0,0,0,0,0,0,0.01528,0,0,0,0,0,0,0,0,0,0.01848,0,0,0,0,0,0,0,0,0,0.0157,0,0,0.00131,0.0022,0.00319,0.00597,0,0,0,0.0005,0,0,0.00124,0.00211,0.00303,0.00552,0,0,0,0.00048,0,0,0.00114,0.00215,0.00311,0.00578,0,0,0,0.00049,0,0,0.0013,0.00223,0.00324,0.00613,0,0,0,0.00051,0,0,0.00113,0.00185,0.00261,0.00434,0,0,0,0.00043,0,0,0.00109,0.00188,0.00268,0.00456,0,0,0,0.00044,0,0,0.00108,0.00176,0.00247,0.00407,0,0,0,0.00041,0,0,0.0011,0.00193,0.00275,0.00479,0,0,0,0.00045,0,0,0.00097,0.00169,0.00238,0.00391,0,0,0,0.00039,0,0,0.02326,0.02523,0.02749,0.03396,0,0,0,0.01527,0,0,0.0238,0.02568,0.02777,0.03352,0,0,0,0.01571,0,0,0.02556,0.02783,0.03002,0.03621,0,0,0,0.01699,0,0,0.02184,0.0239,0.02622,0.03299,0,0,0,0.0145,0,0,0.02509,0.02659,0.02824,0.03209,0,0,0,0.0166,0,0,0.02296,0.02455,0.02629,0.03053,0,0,0,0.01535,0,0,0.02294,0.02435,0.02589,0.02942,0,0,0,0.01524,0,0,0.02405,0.02581,0.02763,0.03227,0,0,0,0.01601,0,0,0.02361,0.02514,0.0266,0.02998,0,0,0,0.01566,0,0,0.00517,0.00691,0.0089,0.01462,0,0,0,0.00284,0,0,0.00511,0.00677,0.00862,0.01371,0,0,0,0.00286,0,0,0.00515,0.00715,0.00908,0.01456,0,0,0,0.00304,0,0,0.00499,0.00681,0.00885,0.01485,0,0,0,0.00277,0,0,0.00504,0.00636,0.00782,0.01123,0,0,0,0.00286,0,0,0.00471,0.00619,0.00773,0.01148,0,0,0,0.00272,0,0,0.00467,0.00592,0.00728,0.01041,0,0,0,0.00265,0,0,0.00488,0.00644,0.00804,0.01215,0,0,0,0.00283,0,0,0.00456,0.00591,0.00721,0.01019,0,0,0,0.00268,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00066,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00066,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00065,0,0,0,0,0,0,0,0,0,0.00059,0,0,0,0,0,0,0,0,0,0.04779,0,0,0,0,0,0,0,0,0,0.04208,0,0,0,0,0,0,0,0,0,0.04543,0,0,0,0,0,0,0,0,0,0.05227,0,0,0,0,0,0,0,0,0,0.02775,0,0,0,0,0,0,0,0,0,0.03154,0,0,0,0,0,0,0,0,0,0.02684,0,0,0,0,0,0,0,0,0,0.03614,0,0,0,0,0,0,0,0,0,0.02663 +Pickup,B20,1990,0.22805,,,,,,,,,,0.22758,,,,,,,,,,0.22652,,,,,,,,,,0.22882,,,,,,,,,,0.22674,,,,,,,,,,0.22793,,,,,,,,,,0.22788,,,,,,,,,,0.22726,,,,,,,,,,0.22738,,,,,,,,,,0.00727,,,,,,,,,,0.0073,,,,,,,,,,0.0075,,,,,,,,,,0.00715,,,,,,,,,,0.00733,,,,,,,,,,0.00716,,,,,,,,,,0.00718,,,,,,,,,,0.00732,,,,,,,,,,0.00722,,,,,,,,,,51.08076,,,,,,,,,,51.76979,,,,,,,,,,52.11024,,,,,,,,,,51.40393,,,,,,,,,,53.85553,,,,,,,,,,52.69588,,,,,,,,,,54.2288,,,,,,,,,,53.09684,,,,,,,,,,52.37859,,,,,,,,,,538.78784,,,,,,,,,,540.82552,,,,,,,,,,546.10831,,,,,,,,,,537.34516,,,,,,,,,,544.15597,,,,,,,,,,538.80041,,,,,,,,,,541.01955,,,,,,,,,,542.54018,,,,,,,,,,537.90486,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.83861,,,,,,,,,,5.88438,,,,,,,,,,5.92266,,,,,,,,,,5.80178,,,,,,,,,,5.83039,,,,,,,,,,5.79643,,,,,,,,,,5.83528,,,,,,,,,,6.1888,,,,,,,,,,5.9569,,,,,,,,,,0.06237,,,,,,,,,,0.06353,,,,,,,,,,0.06715,,,,,,,,,,0.05956,,,,,,,,,,0.06637,,,,,,,,,,0.06234,,,,,,,,,,0.06277,,,,,,,,,,0.06461,,,,,,,,,,0.06473,,,,,,,,,,0.38774,,,,,,,,,,0.39042,,,,,,,,,,0.39892,,,,,,,,,,0.38136,,,,,,,,,,0.39713,,,,,,,,,,0.38783,,,,,,,,,,0.3887,,,,,,,,,,0.39294,,,,,,,,,,0.39308,,,,,,,,,,0.3243,,,,,,,,,,0.32567,,,,,,,,,,0.33035,,,,,,,,,,0.32063,,,,,,,,,,0.32935,,,,,,,,,,0.32415,,,,,,,,,,0.32476,,,,,,,,,,0.32706,,,,,,,,,,0.32733,,,,,,,,,,0.04323,,,,,,,,,,0.04339,,,,,,,,,,0.04381,,,,,,,,,,0.04311,,,,,,,,,,0.04366,,,,,,,,,,0.04323,,,,,,,,,,0.0434,,,,,,,,,,0.04353,,,,,,,,,,0.04315,,,,,,,,,,3.16077,,,,,,,,,,3.17278,,,,,,,,,,3.25865,,,,,,,,,,3.10689,,,,,,,,,,3.18343,,,,,,,,,,3.11363,,,,,,,,,,3.12008,,,,,,,,,,3.17963,,,,,,,,,,3.13782,,,,,,,,, +Pickup,B20,1995,0.17989,0.17824,,,,,,,,,0.18072,0.17862,,,,,,,,,0.18332,0.17994,,,,,,,,,0.17759,0.177,,,,,,,,,0.18271,0.17961,,,,,,,,,0.17961,0.178,,,,,,,,,0.1801,0.17832,,,,,,,,,0.18148,0.17901,,,,,,,,,0.18179,0.17926,,,,,,,,,0.00409,0.0059,,,,,,,,,0.00411,0.00592,,,,,,,,,0.00422,0.00607,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00413,0.00593,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00406,0.00583,,,,,,,,,0.00412,0.00593,,,,,,,,,0.00405,0.00585,,,,,,,,,16.44771,32.26825,,,,,,,,,16.86814,32.85107,,,,,,,,,16.87762,32.93686,,,,,,,,,16.93022,32.79195,,,,,,,,,18.03012,34.50973,,,,,,,,,17.59858,33.77339,,,,,,,,,18.44219,35.02464,,,,,,,,,17.60578,33.92034,,,,,,,,,17.03581,33.20786,,,,,,,,,601.03056,581.61769,,,,,,,,,605.47132,585.05585,,,,,,,,,611.12901,590.77357,,,,,,,,,601.92026,581.57618,,,,,,,,,615.76521,592.40359,,,,,,,,,608.16961,585.65927,,,,,,,,,613.41805,589.65718,,,,,,,,,611.11325,589.02543,,,,,,,,,604.06398,582.67328,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.70728,6.16661,,,,,,,,,5.81129,6.24702,,,,,,,,,5.90706,6.31341,,,,,,,,,5.69559,6.14882,,,,,,,,,5.92634,6.28923,,,,,,,,,5.79816,6.20353,,,,,,,,,5.90398,6.28765,,,,,,,,,6.22269,6.62793,,,,,,,,,5.90345,6.33515,,,,,,,,,0.04916,0.05176,,,,,,,,,0.05072,0.05305,,,,,,,,,0.05537,0.05694,,,,,,,,,0.04545,0.04858,,,,,,,,,0.05434,0.05607,,,,,,,,,0.04907,0.0516,,,,,,,,,0.04966,0.05216,,,,,,,,,0.05209,0.0542,,,,,,,,,0.05226,0.05442,,,,,,,,,0.31429,0.31418,,,,,,,,,0.31901,0.31792,,,,,,,,,0.33306,0.32924,,,,,,,,,0.30321,0.30519,,,,,,,,,0.32999,0.32676,,,,,,,,,0.31414,0.31396,,,,,,,,,0.31584,0.31539,,,,,,,,,0.32315,0.32127,,,,,,,,,0.32358,0.32171,,,,,,,,,0.25665,0.25659,,,,,,,,,0.25992,0.25895,,,,,,,,,0.26974,0.26625,,,,,,,,,0.24864,0.25052,,,,,,,,,0.26754,0.2646,,,,,,,,,0.25628,0.25616,,,,,,,,,0.25765,0.25729,,,,,,,,,0.26281,0.26111,,,,,,,,,0.26334,0.26166,,,,,,,,,0.04822,0.00538,,,,,,,,,0.04858,0.00542,,,,,,,,,0.04903,0.00547,,,,,,,,,0.04829,0.00538,,,,,,,,,0.0494,0.00548,,,,,,,,,0.04879,0.00542,,,,,,,,,0.04921,0.00546,,,,,,,,,0.04903,0.00545,,,,,,,,,0.04846,0.00539,,,,,,,,,2.01091,2.75535,,,,,,,,,2.01877,2.76324,,,,,,,,,2.07351,2.832,,,,,,,,,1.98408,2.71558,,,,,,,,,2.02997,2.76938,,,,,,,,,1.98773,2.71574,,,,,,,,,1.99382,2.72313,,,,,,,,,2.02581,2.76909,,,,,,,,,1.99133,2.72948,,,,,,,, +Pickup,B20,2000,0.17277,0.17036,0.16849,,,,,,,,0.17351,0.17108,0.16911,,,,,,,,0.17566,0.17317,0.17096,,,,,,,,0.17051,0.16815,0.16654,,,,,,,,0.17509,0.1726,0.17046,,,,,,,,0.17224,0.16983,0.16801,,,,,,,,0.17288,0.17046,0.16858,,,,,,,,0.17416,0.17171,0.16967,,,,,,,,0.17464,0.1722,0.17011,,,,,,,,0.00196,0.00273,0.00398,,,,,,,,0.00197,0.00273,0.00398,,,,,,,,0.00204,0.00281,0.00408,,,,,,,,0.00194,0.0027,0.00393,,,,,,,,0.00197,0.00273,0.00396,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00197,0.00273,0.00397,,,,,,,,0.00191,0.00266,0.00389,,,,,,,,5.36619,8.06769,14.31453,,,,,,,,5.56579,8.32587,14.66954,,,,,,,,5.67676,8.43474,14.74389,,,,,,,,5.55271,8.32892,14.68617,,,,,,,,6.15287,9.09831,15.70228,,,,,,,,5.90527,8.78164,15.28578,,,,,,,,6.20957,9.23242,15.98444,,,,,,,,5.89796,8.77512,15.30446,,,,,,,,5.61249,8.41137,14.82543,,,,,,,,607.45309,611.27577,611.22536,,,,,,,,612.68141,616.30533,615.63262,,,,,,,,618.59733,622.29771,621.77589,,,,,,,,608.94563,612.6327,612.15592,,,,,,,,625.29169,628.26771,625.67413,,,,,,,,616.80843,619.94316,617.91526,,,,,,,,623.06316,625.97761,623.1592,,,,,,,,619.60626,622.8754,621.12208,,,,,,,,611.82942,615.05615,613.38267,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.27894,4.5826,5.23497,,,,,,,,4.38664,4.68891,5.33485,,,,,,,,4.49703,4.79631,5.43246,,,,,,,,4.27293,4.57458,5.22215,,,,,,,,4.55602,4.84927,5.46542,,,,,,,,4.40525,4.70173,5.33139,,,,,,,,4.51455,4.81186,5.43793,,,,,,,,4.75874,5.06634,5.7178,,,,,,,,4.46893,4.77437,5.42474,,,,,,,,0.04518,0.04528,0.04678,,,,,,,,0.0467,0.04675,0.04815,,,,,,,,0.05117,0.05111,0.05227,,,,,,,,0.04161,0.04175,0.04338,,,,,,,,0.05018,0.05014,0.05134,,,,,,,,0.0451,0.04515,0.04659,,,,,,,,0.04567,0.04574,0.04719,,,,,,,,0.04802,0.04804,0.04937,,,,,,,,0.04818,0.04823,0.04962,,,,,,,,0.3003,0.29571,0.296,,,,,,,,0.30484,0.30009,0.30012,,,,,,,,0.3181,0.31292,0.31232,,,,,,,,0.2895,0.28517,0.28593,,,,,,,,0.31513,0.31003,0.30956,,,,,,,,0.29989,0.29523,0.29547,,,,,,,,0.3017,0.29704,0.29724,,,,,,,,0.30877,0.3039,0.30374,,,,,,,,0.30936,0.30455,0.30443,,,,,,,,0.24374,0.23952,0.2398,,,,,,,,0.24685,0.24249,0.24253,,,,,,,,0.25596,0.2512,0.25065,,,,,,,,0.23596,0.232,0.23272,,,,,,,,0.25385,0.24917,0.24875,,,,,,,,0.24313,0.23885,0.23909,,,,,,,,0.24461,0.24034,0.24054,,,,,,,,0.24955,0.24507,0.24494,,,,,,,,0.25024,0.24582,0.24572,,,,,,,,0.04873,0.00566,0.00566,,,,,,,,0.04915,0.00571,0.0057,,,,,,,,0.04963,0.00576,0.00576,,,,,,,,0.04885,0.00567,0.00567,,,,,,,,0.05017,0.00582,0.00579,,,,,,,,0.04948,0.00574,0.00572,,,,,,,,0.04999,0.00579,0.00577,,,,,,,,0.04971,0.00577,0.00575,,,,,,,,0.04909,0.00569,0.00568,,,,,,,,0.98924,1.36957,1.96291,,,,,,,,0.99427,1.37336,1.96434,,,,,,,,1.03043,1.41134,2.01209,,,,,,,,0.97808,1.35605,1.94133,,,,,,,,0.99486,1.3699,1.95249,,,,,,,,0.9736,1.3476,1.92505,,,,,,,,0.97176,1.34753,1.925,,,,,,,,0.99419,1.37292,1.96122,,,,,,,,0.9621,1.33842,1.92073,,,,,,, +Pickup,B20,2005,0.08078,0.1089,0.10857,0.12252,,,,,,,0.08084,0.10897,0.10864,0.12272,,,,,,,0.08096,0.10912,0.10879,0.12329,,,,,,,0.08046,0.10845,0.10811,0.12168,,,,,,,0.08089,0.10903,0.10869,0.1231,,,,,,,0.08058,0.10861,0.10827,0.12216,,,,,,,0.08075,0.10885,0.10851,0.12249,,,,,,,0.08089,0.10903,0.1087,0.12291,,,,,,,0.08105,0.10927,0.10894,0.12321,,,,,,,0.002,0.00178,0.00203,0.00282,,,,,,,0.00198,0.00178,0.00202,0.00281,,,,,,,0.00207,0.00185,0.0021,0.0029,,,,,,,0.00199,0.00176,0.00201,0.00279,,,,,,,0.00184,0.00176,0.00198,0.00273,,,,,,,0.00185,0.00173,0.00195,0.00271,,,,,,,0.0018,0.00171,0.00193,0.00269,,,,,,,0.00191,0.00177,0.002,0.00277,,,,,,,0.00177,0.00169,0.00191,0.00267,,,,,,,2.10242,4.07972,4.8952,7.74585,,,,,,,2.18134,4.23234,5.06451,7.96509,,,,,,,2.22336,4.3202,5.15429,8.04899,,,,,,,2.17347,4.21186,5.04278,7.95377,,,,,,,2.41578,4.68882,5.5724,8.62104,,,,,,,2.31342,4.48547,5.34557,8.33881,,,,,,,2.44196,4.73124,5.63191,8.74726,,,,,,,2.31503,4.49118,5.35639,8.35543,,,,,,,2.20527,4.27963,5.1245,8.05815,,,,,,,749.77621,752.25396,757.28552,731.51385,,,,,,,758.02248,760.3571,765.13224,738.2125,,,,,,,768.76441,771.12215,776.03367,748.21617,,,,,,,749.43253,751.77386,756.63497,731.06234,,,,,,,778.53836,780.40633,784.33281,754.11852,,,,,,,763.47669,765.454,769.58737,741.29687,,,,,,,772.3496,774.17497,777.98916,748.53308,,,,,,,768.82496,770.90602,775.20833,746.575,,,,,,,758.95407,761.08564,765.29914,736.94078,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.98685,3.15562,3.27307,3.85585,,,,,,,3.05399,3.22159,3.33648,3.92591,,,,,,,3.11921,3.28271,3.3937,3.99106,,,,,,,2.98457,3.15342,3.26981,3.84841,,,,,,,3.14299,3.3027,3.40888,4.00743,,,,,,,3.05829,3.22222,3.33306,3.91961,,,,,,,3.12339,3.28768,3.39721,3.99332,,,,,,,3.29701,3.46771,3.58008,4.19993,,,,,,,3.10548,3.27441,3.38984,3.98908,,,,,,,0.01856,0.025,0.02542,0.03118,,,,,,,0.01916,0.0258,0.02622,0.03211,,,,,,,0.0209,0.02814,0.02853,0.03484,,,,,,,0.01724,0.02322,0.02364,0.029,,,,,,,0.02053,0.02764,0.02803,0.03424,,,,,,,0.0186,0.02504,0.02545,0.03113,,,,,,,0.01877,0.02528,0.02569,0.03148,,,,,,,0.01968,0.0265,0.02691,0.03292,,,,,,,0.01968,0.0265,0.02692,0.03302,,,,,,,0.15839,0.19789,0.19818,0.22219,,,,,,,0.16073,0.20055,0.20082,0.22517,,,,,,,0.16747,0.20816,0.20841,0.23386,,,,,,,0.15323,0.19196,0.19224,0.21521,,,,,,,0.16602,0.2065,0.20675,0.23193,,,,,,,0.15851,0.19794,0.1982,0.22202,,,,,,,0.15919,0.19878,0.19906,0.22314,,,,,,,0.16275,0.20282,0.20309,0.22777,,,,,,,0.16274,0.2029,0.20319,0.22806,,,,,,,0.11317,0.14952,0.14979,0.17188,,,,,,,0.11426,0.1509,0.15115,0.17356,,,,,,,0.11738,0.15482,0.15505,0.17847,,,,,,,0.11058,0.14622,0.14649,0.16762,,,,,,,0.11667,0.15392,0.15415,0.17732,,,,,,,0.11305,0.14933,0.14957,0.17149,,,,,,,0.1135,0.14992,0.15018,0.17234,,,,,,,0.1152,0.15208,0.15233,0.17504,,,,,,,0.11534,0.15229,0.15257,0.17545,,,,,,,0.06015,0.00696,0.00701,0.00677,,,,,,,0.06081,0.00704,0.00708,0.00683,,,,,,,0.06168,0.00714,0.00718,0.00693,,,,,,,0.06012,0.00696,0.007,0.00677,,,,,,,0.06246,0.00722,0.00726,0.00698,,,,,,,0.06125,0.00709,0.00712,0.00686,,,,,,,0.06196,0.00717,0.0072,0.00693,,,,,,,0.06168,0.00714,0.00718,0.00691,,,,,,,0.06089,0.00705,0.00708,0.00682,,,,,,,0.40779,0.68676,0.76688,1.18176,,,,,,,0.4062,0.68918,0.76716,1.17874,,,,,,,0.42408,0.71703,0.7963,1.21432,,,,,,,0.40444,0.67975,0.75955,1.17047,,,,,,,0.38967,0.68243,0.7519,1.15107,,,,,,,0.38748,0.66991,0.74214,1.14147,,,,,,,0.38001,0.66538,0.73519,1.13233,,,,,,,0.39774,0.68533,0.75943,1.16612,,,,,,,0.37425,0.65652,0.72651,1.12526,,,,,, +Pickup,B20,2010,,0.03413,0.03237,0.02989,0.06582,,,,,,,0.03416,0.0324,0.02991,0.06592,,,,,,,0.03421,0.03245,0.02996,0.06618,,,,,,,0.03398,0.03222,0.02974,0.06539,,,,,,,0.03418,0.03242,0.02993,0.06608,,,,,,,0.03404,0.03228,0.02979,0.06562,,,,,,,0.03411,0.03235,0.02987,0.0658,,,,,,,0.03418,0.03242,0.02993,0.06601,,,,,,,0.03426,0.0325,0.03001,0.06618,,,,,,,0.05914,0.09372,0.12903,0.10029,,,,,,,0.05628,0.09046,0.12463,0.09674,,,,,,,0.05935,0.0944,0.12935,0.1003,,,,,,,0.05929,0.09368,0.12898,0.10025,,,,,,,0.04346,0.07565,0.10509,0.08119,,,,,,,0.04769,0.0802,0.11124,0.08617,,,,,,,0.04293,0.07487,0.10445,0.08081,,,,,,,0.05001,0.08329,0.11526,0.0893,,,,,,,0.04206,0.07374,0.10317,0.07993,,,,,,,1.46727,2.36807,3.05721,5.45039,,,,,,,1.51824,2.44314,3.14567,5.59664,,,,,,,1.53136,2.45291,3.14953,5.63128,,,,,,,1.52073,2.45058,3.15657,5.59741,,,,,,,1.66585,2.6603,3.40189,6.03286,,,,,,,1.60629,2.57443,3.30116,5.84887,,,,,,,1.70131,2.72629,3.49122,6.14754,,,,,,,1.60649,2.57654,3.30635,5.86371,,,,,,,1.53655,2.47504,3.18865,5.66916,,,,,,,722.88144,723.26489,724.86131,733.55234,,,,,,,730.79918,730.96901,732.24039,740.34255,,,,,,,741.14393,741.36063,742.74017,750.86644,,,,,,,722.58197,722.8257,724.24086,732.82405,,,,,,,750.61223,750.0992,750.32436,756.49744,,,,,,,736.13965,735.82867,736.36051,743.24035,,,,,,,744.66165,744.08374,744.20571,750.4392,,,,,,,741.20631,740.99778,741.68743,748.76308,,,,,,,731.75047,731.55203,732.17584,738.98818,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.62417,1.71677,1.7449,2.62565,,,,,,,1.65637,1.74939,1.77609,2.67106,,,,,,,1.69129,1.78421,1.80928,2.71599,,,,,,,1.61751,1.70931,1.7365,2.6166,,,,,,,1.6921,1.7841,1.80787,2.72089,,,,,,,1.651,1.74253,1.76771,2.66245,,,,,,,1.67968,1.77231,1.79706,2.70934,,,,,,,1.77606,1.87257,1.89633,2.84979,,,,,,,1.68299,1.77744,1.80444,2.71379,,,,,,,0.00822,0.0084,0.00805,0.01746,,,,,,,0.00848,0.00865,0.00827,0.01795,,,,,,,0.00922,0.00935,0.00891,0.0194,,,,,,,0.00766,0.00787,0.00755,0.0163,,,,,,,0.00906,0.0092,0.00877,0.01908,,,,,,,0.00824,0.00842,0.00805,0.01743,,,,,,,0.00831,0.00849,0.00812,0.01762,,,,,,,0.0087,0.00886,0.00846,0.01838,,,,,,,0.00869,0.00886,0.00847,0.01844,,,,,,,0.094,0.09526,0.09277,0.14416,,,,,,,0.09578,0.09704,0.09452,0.14638,,,,,,,0.10092,0.1022,0.09958,0.15285,,,,,,,0.09018,0.0914,0.08896,0.13908,,,,,,,0.09984,0.10111,0.0985,0.15143,,,,,,,0.0942,0.09543,0.09292,0.14414,,,,,,,0.09464,0.09589,0.09339,0.1449,,,,,,,0.09731,0.09858,0.09603,0.14832,,,,,,,0.09722,0.09851,0.09598,0.14845,,,,,,,0.05395,0.05511,0.05283,0.1001,,,,,,,0.05453,0.05569,0.05337,0.10108,,,,,,,0.05617,0.05735,0.05494,0.10395,,,,,,,0.0526,0.05373,0.05149,0.09759,,,,,,,0.0558,0.05697,0.05458,0.10327,,,,,,,0.0539,0.05504,0.05273,0.09985,,,,,,,0.05413,0.05528,0.05298,0.10036,,,,,,,0.05502,0.05619,0.05384,0.10195,,,,,,,0.05509,0.05628,0.05395,0.10221,,,,,,,0.00636,0.00636,0.00636,0.00657,,,,,,,0.00643,0.00643,0.00643,0.00664,,,,,,,0.00653,0.00652,0.00652,0.00673,,,,,,,0.00636,0.00635,0.00636,0.00657,,,,,,,0.00661,0.00659,0.00658,0.00678,,,,,,,0.00648,0.00647,0.00646,0.00666,,,,,,,0.00656,0.00654,0.00653,0.00673,,,,,,,0.00653,0.00651,0.00651,0.00671,,,,,,,0.00644,0.00643,0.00643,0.00662,,,,,,,0.22863,0.26113,0.29326,0.69406,,,,,,,0.22671,0.25838,0.28877,0.68767,,,,,,,0.23699,0.26926,0.30025,0.71008,,,,,,,0.22704,0.25947,0.29171,0.68874,,,,,,,0.21325,0.24141,0.26495,0.6524,,,,,,,0.21384,0.24311,0.2693,0.65487,,,,,,,0.20814,0.23641,0.26045,0.64258,,,,,,,0.21992,0.24999,0.27718,0.67096,,,,,,,0.20479,0.23296,0.25705,0.63767,,,,, +Pickup,B20,2015,,,0.00072,0.00116,0.00138,0.017,,,,,,,0.00072,0.00116,0.00139,0.01701,,,,,,,0.00074,0.00118,0.00141,0.01705,,,,,,,0.0007,0.00113,0.00135,0.0169,,,,,,,0.00073,0.00118,0.0014,0.01703,,,,,,,0.00071,0.00115,0.00137,0.01694,,,,,,,0.00072,0.00116,0.00138,0.01699,,,,,,,0.00073,0.00117,0.0014,0.01703,,,,,,,0.00073,0.00118,0.00141,0.01708,,,,,,,0.08452,0.11522,0.15291,0.17495,,,,,,,0.0805,0.11044,0.1469,0.16807,,,,,,,0.08489,0.11551,0.15277,0.1745,,,,,,,0.0847,0.11535,0.15304,0.17504,,,,,,,0.06251,0.08914,0.12046,0.13817,,,,,,,0.0684,0.09606,0.12913,0.14804,,,,,,,0.0617,0.08838,0.11987,0.13766,,,,,,,0.0717,0.10011,0.13418,0.15373,,,,,,,0.06045,0.08695,0.11829,0.13609,,,,,,,0.91342,1.75476,2.44395,3.72102,,,,,,,0.93766,1.80032,2.5048,3.81076,,,,,,,0.92709,1.78281,2.48348,3.79799,,,,,,,0.94758,1.8168,2.52446,3.82746,,,,,,,1.00472,1.92811,2.67742,4.07194,,,,,,,0.98312,1.88496,2.61696,3.97137,,,,,,,1.04466,2.00046,2.77209,4.18838,,,,,,,0.98318,1.88653,2.62106,3.98173,,,,,,,0.95128,1.82695,2.54218,3.86592,,,,,,,628.04989,629.96688,633.22933,667.36676,,,,,,,634.82955,636.56026,639.57363,673.57396,,,,,,,643.63616,645.44076,648.57141,683.22598,,,,,,,627.7626,629.55898,632.68016,666.57559,,,,,,,651.64498,652.76595,654.96349,688.28856,,,,,,,639.21463,640.50081,642.91766,676.07495,,,,,,,646.66173,647.70936,649.81246,682.70751,,,,,,,643.71917,645.11017,647.6692,681.25657,,,,,,,635.53638,636.89304,639.35925,672.36628,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.33306,,,,,,,0.53682,0.77214,0.84369,1.35329,,,,,,,0.54809,0.78753,0.85813,1.37456,,,,,,,0.52372,0.75365,0.82514,1.32582,,,,,,,0.5485,0.78781,0.85785,1.37441,,,,,,,0.53445,0.7684,0.83893,1.34638,,,,,,,0.54375,0.78179,0.85304,1.36862,,,,,,,0.57087,0.82186,0.89466,1.43542,,,,,,,0.54606,0.78532,0.85779,1.3751,,,,,,,0.00101,0.00156,0.00171,0.00554,,,,,,,0.00101,0.00158,0.00172,0.00565,,,,,,,0.00104,0.00161,0.00175,0.00601,,,,,,,0.00098,0.00153,0.00167,0.00524,,,,,,,0.00103,0.0016,0.00174,0.00593,,,,,,,0.001,0.00155,0.00169,0.00552,,,,,,,0.00101,0.00157,0.00171,0.00557,,,,,,,0.00102,0.00159,0.00173,0.00576,,,,,,,0.00103,0.0016,0.00174,0.00578,,,,,,,0.04842,0.05245,0.05361,0.07642,,,,,,,0.04982,0.05388,0.05503,0.078,,,,,,,0.05386,0.05801,0.05915,0.0826,,,,,,,0.04553,0.04946,0.0506,0.07295,,,,,,,0.05303,0.05715,0.05829,0.08162,,,,,,,0.04868,0.05268,0.05381,0.07654,,,,,,,0.04895,0.05298,0.05413,0.07698,,,,,,,0.05102,0.0551,0.05625,0.07937,,,,,,,0.05087,0.05498,0.05615,0.07935,,,,,,,0.01202,0.01573,0.0168,0.03778,,,,,,,0.01224,0.01598,0.01703,0.03817,,,,,,,0.01288,0.0167,0.01775,0.03932,,,,,,,0.01152,0.01514,0.01619,0.03675,,,,,,,0.01274,0.01653,0.01758,0.03904,,,,,,,0.01202,0.01571,0.01674,0.03766,,,,,,,0.0121,0.01581,0.01686,0.03788,,,,,,,0.01243,0.01619,0.01725,0.03852,,,,,,,0.01245,0.01623,0.01731,0.03865,,,,,,,0.0054,0.00542,0.00545,0.00581,,,,,,,0.00546,0.00548,0.0055,0.00586,,,,,,,0.00554,0.00555,0.00558,0.00595,,,,,,,0.0054,0.00542,0.00544,0.0058,,,,,,,0.00561,0.00561,0.00563,0.00599,,,,,,,0.0055,0.00551,0.00553,0.00589,,,,,,,0.00556,0.00557,0.00559,0.00594,,,,,,,0.00554,0.00555,0.00557,0.00593,,,,,,,0.00547,0.00548,0.0055,0.00585,,,,,,,0.08842,0.11694,0.15196,0.30894,,,,,,,0.0848,0.11261,0.14648,0.30159,,,,,,,0.08902,0.11745,0.15208,0.31248,,,,,,,0.08859,0.11705,0.15207,0.30789,,,,,,,0.06837,0.0931,0.12219,0.26763,,,,,,,0.07364,0.09933,0.13005,0.27671,,,,,,,0.06754,0.09231,0.12157,0.2648,,,,,,,0.07677,0.10316,0.13481,0.2853,,,,,,,0.06621,0.09081,0.11993,0.26207,,,, +Pickup,B20,2020,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00072,0.00111,0.00125,0.00418,,,,,,,0.00074,0.00113,0.00127,0.00421,,,,,,,0.0007,0.00108,0.00122,0.00414,,,,,,,0.00073,0.00112,0.00127,0.0042,,,,,,,0.00072,0.00109,0.00124,0.00415,,,,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00073,0.00111,0.00126,0.00419,,,,,,,0.00073,0.00112,0.00127,0.00422,,,,,,,0.08358,0.10624,0.13139,0.18031,,,,,,,0.07944,0.1014,0.12537,0.17228,,,,,,,0.08399,0.10664,0.1315,0.1799,,,,,,,0.08379,0.10643,0.13163,0.18056,,,,,,,0.06087,0.07977,0.09876,0.13728,,,,,,,0.06698,0.08684,0.10757,0.14897,,,,,,,0.06,0.07885,0.09788,0.13647,,,,,,,0.07033,0.09085,0.11244,0.15536,,,,,,,0.05872,0.07739,0.09623,0.1346,,,,,,,0.78003,1.244,1.58419,2.54313,,,,,,,0.80087,1.27638,1.623,2.59981,,,,,,,0.7941,1.26576,1.6085,2.57887,,,,,,,0.80806,1.28709,1.63602,2.61669,,,,,,,0.85922,1.36751,1.7326,2.76223,,,,,,,0.83946,1.3361,1.69464,2.70367,,,,,,,0.89057,1.41653,1.79422,2.85345,,,,,,,0.83979,1.33732,1.69717,2.71054,,,,,,,0.81228,1.29491,1.647,2.63871,,,,,,,550.76488,551.97758,554.5184,590.54774,,,,,,,556.65536,557.70538,560.02341,595.9663,,,,,,,564.37632,565.48582,567.90427,604.49952,,,,,,,550.49794,551.60614,554.01994,589.81791,,,,,,,571.21973,571.74336,573.334,608.73913,,,,,,,560.38047,561.05115,562.84058,598.00753,,,,,,,566.85909,567.32038,568.82618,603.8187,,,,,,,564.35678,565.11296,567.02507,602.63906,,,,,,,557.15998,557.89524,559.73271,594.75276,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82389,,,,,,,0.44685,0.5816,0.6301,0.83493,,,,,,,0.45614,0.59314,0.64146,0.848,,,,,,,0.43605,0.5678,0.61593,0.8177,,,,,,,0.45642,0.59326,0.64117,0.8469,,,,,,,0.44481,0.5787,0.62653,0.82966,,,,,,,0.45243,0.58857,0.63684,0.84263,,,,,,,0.47433,0.61755,0.66685,0.88083,,,,,,,0.45454,0.59154,0.64072,0.84859,,,,,,,0.00102,0.00152,0.00161,0.00244,,,,,,,0.00103,0.00153,0.00162,0.00247,,,,,,,0.00105,0.00157,0.00166,0.00256,,,,,,,0.001,0.00148,0.00157,0.00236,,,,,,,0.00105,0.00156,0.00165,0.00253,,,,,,,0.00102,0.00151,0.0016,0.00243,,,,,,,0.00102,0.00152,0.00161,0.00245,,,,,,,0.00104,0.00154,0.00163,0.0025,,,,,,,0.00104,0.00155,0.00164,0.00251,,,,,,,0.04852,0.05211,0.05284,0.05833,,,,,,,0.04992,0.05354,0.05426,0.05977,,,,,,,0.05397,0.05767,0.05839,0.06397,,,,,,,0.04563,0.04913,0.04984,0.05523,,,,,,,0.05314,0.05681,0.05753,0.06309,,,,,,,0.04878,0.05235,0.05306,0.0585,,,,,,,0.04905,0.05264,0.05337,0.05885,,,,,,,0.05112,0.05476,0.05548,0.06102,,,,,,,0.05097,0.05463,0.05537,0.06095,,,,,,,0.01212,0.01542,0.01609,0.02114,,,,,,,0.01234,0.01566,0.01633,0.0214,,,,,,,0.01299,0.01638,0.01705,0.02218,,,,,,,0.01161,0.01483,0.01549,0.02045,,,,,,,0.01284,0.01622,0.01688,0.022,,,,,,,0.01212,0.0154,0.01605,0.02106,,,,,,,0.01219,0.01549,0.01616,0.02121,,,,,,,0.01253,0.01588,0.01654,0.02164,,,,,,,0.01254,0.01591,0.01659,0.02172,,,,,,,0.00474,0.00475,0.00477,0.00509,,,,,,,0.00479,0.0048,0.00482,0.00514,,,,,,,0.00485,0.00486,0.00488,0.00521,,,,,,,0.00474,0.00474,0.00477,0.00508,,,,,,,0.00491,0.00492,0.00493,0.00525,,,,,,,0.00482,0.00483,0.00484,0.00516,,,,,,,0.00488,0.00488,0.00489,0.00521,,,,,,,0.00485,0.00486,0.00488,0.0052,,,,,,,0.00479,0.0048,0.00481,0.00513,,,,,,,0.08632,0.10737,0.13074,0.19448,,,,,,,0.08257,0.10296,0.12525,0.18693,,,,,,,0.08691,0.10795,0.13106,0.19485,,,,,,,0.08651,0.10753,0.13096,0.19457,,,,,,,0.06557,0.08311,0.10076,0.15354,,,,,,,0.07107,0.08951,0.10877,0.16432,,,,,,,0.0647,0.0822,0.09987,0.15237,,,,,,,0.07425,0.09329,0.11335,0.17078,,,,,,,0.06335,0.08069,0.0982,0.15031,,, +Pickup,B20,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,512.94968,514.78197,517.99663,544.25471,,,,,,,518.41824,520.11253,523.12908,549.19587,,,,,,,525.63567,527.39377,530.51625,557.07648,,,,,,,512.69748,514.43352,517.52977,543.57044,,,,,,,531.93956,533.18201,535.5448,560.80507,,,,,,,521.85672,523.21567,525.74649,550.9689,,,,,,,527.85874,529.03774,531.31514,556.26614,,,,,,,525.56045,527.00165,529.65269,555.2562,,,,,,,518.83947,520.25518,522.82468,547.95859,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00441,0.00443,0.00446,0.00468,,,,,,,0.00446,0.00447,0.0045,0.00472,,,,,,,0.00452,0.00454,0.00456,0.00479,,,,,,,0.00441,0.00442,0.00445,0.00468,,,,,,,0.00458,0.00459,0.00461,0.00482,,,,,,,0.00449,0.0045,0.00452,0.00474,,,,,,,0.00454,0.00455,0.00457,0.00478,,,,,,,0.00452,0.00453,0.00456,0.00478,,,,,,,0.00446,0.00447,0.0045,0.00471,,,,,,,0.08159,0.09699,0.11488,0.16091,,,,,,,0.07781,0.09262,0.10945,0.15328,,,,,,,0.08221,0.09767,0.11535,0.16087,,,,,,,0.08181,0.09721,0.11518,0.16128,,,,,,,0.06066,0.07282,0.08511,0.11973,,,,,,,0.06623,0.07923,0.09313,0.13096,,,,,,,0.05974,0.07178,0.08404,0.11866,,,,,,,0.06938,0.0829,0.09753,0.13694,,,,,,,0.05838,0.07026,0.08234,0.11665,, +Pickup,B20,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,503.3718,505.58672,509.32506,524.005,,,,,,,508.73521,510.82156,514.36827,528.75158,,,,,,,515.82884,517.98233,521.64211,536.35182,,,,,,,503.12336,505.24438,508.86591,523.34427,,,,,,,522.00133,523.66189,526.57097,539.90088,,,,,,,512.10638,513.87105,516.93712,530.43894,,,,,,,517.98771,519.58364,522.40402,535.52213,,,,,,,515.73928,517.58703,520.77689,534.56791,,,,,,,509.13879,510.95708,514.05712,527.53122,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00433,0.00435,0.00438,0.00451,,,,,,,0.00438,0.00439,0.00442,0.00455,,,,,,,0.00444,0.00446,0.00449,0.00461,,,,,,,0.00433,0.00435,0.00438,0.0045,,,,,,,0.00449,0.0045,0.00453,0.00464,,,,,,,0.0044,0.00442,0.00445,0.00456,,,,,,,0.00446,0.00447,0.00449,0.00461,,,,,,,0.00444,0.00445,0.00448,0.0046,,,,,,,0.00438,0.00439,0.00442,0.00454,,,,,,,0.08017,0.0942,0.11124,0.14813,,,,,,,0.0764,0.08985,0.10581,0.14053,,,,,,,0.0808,0.09491,0.11173,0.14819,,,,,,,0.0804,0.09443,0.11155,0.14859,,,,,,,0.05928,0.07014,0.0815,0.10697,,,,,,,0.06484,0.07653,0.08953,0.11827,,,,,,,0.05833,0.06907,0.08039,0.10579,,,,,,,0.06798,0.08017,0.09389,0.12412,,,,,,,0.05698,0.06756,0.07867,0.10371, +Pickup,B20,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,503.3128,505.57794,509.31583,517.92765,,,,,,,508.67869,510.81372,514.35931,522.61762,,,,,,,515.77052,517.97394,521.633,530.13469,,,,,,,503.06497,505.23579,508.85677,517.27438,,,,,,,521.95275,523.65546,526.56382,533.6353,,,,,,,512.05585,513.86405,516.92984,524.2835,,,,,,,517.94008,519.57754,522.39719,529.3037,,,,,,,515.68704,517.57981,520.769,528.36379,,,,,,,509.0895,510.95084,514.04998,521.40596,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00438,0.00439,0.00442,0.0045,,,,,,,0.00444,0.00446,0.00449,0.00456,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00449,0.0045,0.00453,0.00459,,,,,,,0.0044,0.00442,0.00445,0.00451,,,,,,,0.00446,0.00447,0.00449,0.00455,,,,,,,0.00444,0.00445,0.00448,0.00454,,,,,,,0.00438,0.00439,0.00442,0.00448,,,,,,,0.07996,0.09416,0.11119,0.14344,,,,,,,0.0762,0.08981,0.10577,0.13585,,,,,,,0.08059,0.09487,0.11169,0.14354,,,,,,,0.08018,0.09439,0.1115,0.14394,,,,,,,0.05915,0.07011,0.08147,0.1023,,,,,,,0.06469,0.0765,0.08949,0.11362,,,,,,,0.05821,0.06904,0.08036,0.10108,,,,,,,0.06781,0.08013,0.09385,0.11942,,,,,,,0.05686,0.06753,0.07865,0.09897 +Pickup,B20,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,503.3127,505.57737,509.32466,,,,,,,,508.67923,510.81324,514.3685,,,,,,,,515.7706,517.97353,521.64196,,,,,,,,503.06515,505.23527,508.8656,,,,,,,,521.95499,523.65697,526.57308,,,,,,,,512.05759,513.865,516.939,,,,,,,,517.94224,519.57897,522.40675,,,,,,,,515.68842,517.58047,520.77814,,,,,,,,509.09118,510.95144,514.05931,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.00444,0.00446,0.00449,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00449,0.0045,0.00453,,,,,,,,0.0044,0.00442,0.00445,,,,,,,,0.00446,0.00447,0.00449,,,,,,,,0.00444,0.00445,0.00448,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.07992,0.09412,0.11119,,,,,,,,0.07617,0.08978,0.10577,,,,,,,,0.08055,0.09483,0.11168,,,,,,,,0.08014,0.09435,0.1115,,,,,,,,0.05913,0.07009,0.08147,,,,,,,,0.06466,0.07648,0.08949,,,,,,,,0.05819,0.06902,0.08036,,,,,,,,0.06778,0.08011,0.09385,,,,,,,,0.05684,0.06751,0.07865 +Pickup,B20,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,503.30521,505.57746,,,,,,,,,508.67208,510.81364,,,,,,,,,515.76329,517.97369,,,,,,,,,503.05787,505.23542,,,,,,,,,521.94878,523.65741,,,,,,,,,512.05102,513.86545,,,,,,,,,517.93623,519.5794,,,,,,,,,515.6819,517.5808,,,,,,,,,509.08488,510.95195,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00438,0.00439,,,,,,,,,0.00444,0.00446,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00449,0.0045,,,,,,,,,0.0044,0.00442,,,,,,,,,0.00445,0.00447,,,,,,,,,0.00444,0.00445,,,,,,,,,0.00438,0.00439,,,,,,,,,0.07989,0.09412,,,,,,,,,0.07614,0.08978,,,,,,,,,0.08053,0.09483,,,,,,,,,0.08011,0.09435,,,,,,,,,0.05911,0.07009,,,,,,,,,0.06464,0.07647,,,,,,,,,0.05817,0.06902,,,,,,,,,0.06776,0.0801,,,,,,,,,0.05682,0.06751 +Pickup,B20,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,503.30269,,,,,,,,,,508.66947,,,,,,,,,,515.76074,,,,,,,,,,503.0552,,,,,,,,,,521.94623,,,,,,,,,,512.04854,,,,,,,,,,517.93382,,,,,,,,,,515.6793,,,,,,,,,,509.08241,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00433,,,,,,,,,,0.00438,,,,,,,,,,0.00444,,,,,,,,,,0.00433,,,,,,,,,,0.00449,,,,,,,,,,0.0044,,,,,,,,,,0.00445,,,,,,,,,,0.00444,,,,,,,,,,0.00438,,,,,,,,,,0.07989,,,,,,,,,,0.07614,,,,,,,,,,0.08053,,,,,,,,,,0.08011,,,,,,,,,,0.05911,,,,,,,,,,0.06464,,,,,,,,,,0.05817,,,,,,,,,,0.06776,,,,,,,,,,0.05682 +Pickup,DSL,1990,0.2702,,,,,,,,,,0.26964,,,,,,,,,,0.26838,,,,,,,,,,0.27112,,,,,,,,,,0.26865,,,,,,,,,,0.27006,,,,,,,,,,0.27,,,,,,,,,,0.26927,,,,,,,,,,0.2694,,,,,,,,,,0.00847,,,,,,,,,,0.0085,,,,,,,,,,0.00873,,,,,,,,,,0.00832,,,,,,,,,,0.00853,,,,,,,,,,0.00834,,,,,,,,,,0.00836,,,,,,,,,,0.00852,,,,,,,,,,0.00841,,,,,,,,,,59.25842,,,,,,,,,,60.05778,,,,,,,,,,60.45272,,,,,,,,,,59.63333,,,,,,,,,,62.47742,,,,,,,,,,61.13211,,,,,,,,,,62.91043,,,,,,,,,,61.59726,,,,,,,,,,60.76403,,,,,,,,,,541.49662,,,,,,,,,,543.54455,,,,,,,,,,548.85394,,,,,,,,,,540.04668,,,,,,,,,,546.89176,,,,,,,,,,541.50929,,,,,,,,,,543.73957,,,,,,,,,,545.2678,,,,,,,,,,540.60916,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.71292,,,,,,,,,,5.75771,,,,,,,,,,5.79517,,,,,,,,,,5.67689,,,,,,,,,,5.70488,,,,,,,,,,5.67166,,,,,,,,,,5.70967,,,,,,,,,,6.05558,,,,,,,,,,5.82867,,,,,,,,,,0.0739,,,,,,,,,,0.07528,,,,,,,,,,0.07956,,,,,,,,,,0.07057,,,,,,,,,,0.07864,,,,,,,,,,0.07386,,,,,,,,,,0.07437,,,,,,,,,,0.07655,,,,,,,,,,0.07669,,,,,,,,,,0.45084,,,,,,,,,,0.45374,,,,,,,,,,0.46303,,,,,,,,,,0.44383,,,,,,,,,,0.46107,,,,,,,,,,0.4509,,,,,,,,,,0.45187,,,,,,,,,,0.45649,,,,,,,,,,0.45669,,,,,,,,,,0.38235,,,,,,,,,,0.38393,,,,,,,,,,0.38934,,,,,,,,,,0.37811,,,,,,,,,,0.38817,,,,,,,,,,0.38217,,,,,,,,,,0.38288,,,,,,,,,,0.38553,,,,,,,,,,0.38586,,,,,,,,,,0.04127,,,,,,,,,,0.04142,,,,,,,,,,0.04183,,,,,,,,,,0.04116,,,,,,,,,,0.04168,,,,,,,,,,0.04127,,,,,,,,,,0.04144,,,,,,,,,,0.04156,,,,,,,,,,0.0412,,,,,,,,,,3.676,,,,,,,,,,3.68997,,,,,,,,,,3.7899,,,,,,,,,,3.61329,,,,,,,,,,3.70235,,,,,,,,,,3.62112,,,,,,,,,,3.62861,,,,,,,,,,3.69793,,,,,,,,,,3.64929,,,,,,,,, +Pickup,DSL,1995,0.21313,0.21119,,,,,,,,,0.21413,0.21164,,,,,,,,,0.2172,0.2132,,,,,,,,,0.21042,0.20971,,,,,,,,,0.21648,0.21281,,,,,,,,,0.21281,0.2109,,,,,,,,,0.21339,0.21128,,,,,,,,,0.21503,0.2121,,,,,,,,,0.21539,0.2124,,,,,,,,,0.00476,0.00687,,,,,,,,,0.00478,0.00689,,,,,,,,,0.00491,0.00706,,,,,,,,,0.0047,0.00677,,,,,,,,,0.00481,0.00691,,,,,,,,,0.00471,0.00677,,,,,,,,,0.00472,0.00679,,,,,,,,,0.0048,0.00691,,,,,,,,,0.00472,0.00681,,,,,,,,,19.08086,37.43417,,,,,,,,,19.56861,38.11029,,,,,,,,,19.5796,38.20981,,,,,,,,,19.64063,38.0417,,,,,,,,,20.9166,40.03449,,,,,,,,,20.41599,39.18027,,,,,,,,,21.39465,40.63183,,,,,,,,,20.42434,39.35074,,,,,,,,,19.76313,38.5242,,,,,,,,,604.05216,584.54177,,,,,,,,,608.51534,587.99728,,,,,,,,,614.20139,593.74374,,,,,,,,,604.94647,584.50009,,,,,,,,,618.86109,595.38189,,,,,,,,,611.22718,588.60376,,,,,,,,,616.50204,592.62164,,,,,,,,,614.18567,591.98679,,,,,,,,,607.10088,585.60288,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.58442,6.03387,,,,,,,,,5.6862,6.11255,,,,,,,,,5.7799,6.1775,,,,,,,,,5.57299,6.01646,,,,,,,,,5.79876,6.15385,,,,,,,,,5.67334,6.06999,,,,,,,,,5.77689,6.1523,,,,,,,,,6.08874,6.48525,,,,,,,,,5.77638,6.19878,,,,,,,,,0.05825,0.06133,,,,,,,,,0.06009,0.06285,,,,,,,,,0.0656,0.06747,,,,,,,,,0.05386,0.05755,,,,,,,,,0.06439,0.06643,,,,,,,,,0.05814,0.06114,,,,,,,,,0.05884,0.0618,,,,,,,,,0.06172,0.06422,,,,,,,,,0.06192,0.06448,,,,,,,,,0.36405,0.36433,,,,,,,,,0.36937,0.3685,,,,,,,,,0.38522,0.38117,,,,,,,,,0.35148,0.35421,,,,,,,,,0.38174,0.37837,,,,,,,,,0.36381,0.36402,,,,,,,,,0.36577,0.36567,,,,,,,,,0.37404,0.37225,,,,,,,,,0.37457,0.3728,,,,,,,,,0.30242,0.30273,,,,,,,,,0.30624,0.30549,,,,,,,,,0.31772,0.31402,,,,,,,,,0.29304,0.29561,,,,,,,,,0.31515,0.31208,,,,,,,,,0.30197,0.30221,,,,,,,,,0.30359,0.30354,,,,,,,,,0.30962,0.30801,,,,,,,,,0.31026,0.30866,,,,,,,,,0.04604,0.00514,,,,,,,,,0.04638,0.00517,,,,,,,,,0.04681,0.00522,,,,,,,,,0.0461,0.00514,,,,,,,,,0.04716,0.00524,,,,,,,,,0.04658,0.00518,,,,,,,,,0.04698,0.00521,,,,,,,,,0.04681,0.00521,,,,,,,,,0.04627,0.00515,,,,,,,,,2.33699,3.20375,,,,,,,,,2.34611,3.21291,,,,,,,,,2.40979,3.29292,,,,,,,,,2.30575,3.15745,,,,,,,,,2.35907,3.22001,,,,,,,,,2.30995,3.15761,,,,,,,,,2.31701,3.16618,,,,,,,,,2.35426,3.21969,,,,,,,,,2.31417,3.17362,,,,,,,, +Pickup,DSL,2000,0.2047,0.20185,0.19963,,,,,,,,0.20558,0.20271,0.20037,,,,,,,,0.20813,0.20517,0.20255,,,,,,,,0.20203,0.19923,0.19732,,,,,,,,0.20745,0.2045,0.20196,,,,,,,,0.20408,0.20121,0.19907,,,,,,,,0.20483,0.20197,0.19973,,,,,,,,0.20635,0.20345,0.20103,,,,,,,,0.20692,0.20403,0.20155,,,,,,,,0.00228,0.00317,0.00463,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00238,0.00327,0.00475,,,,,,,,0.00226,0.00314,0.00458,,,,,,,,0.0023,0.00317,0.00461,,,,,,,,0.00225,0.00312,0.00454,,,,,,,,0.00224,0.00312,0.00454,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00222,0.0031,0.00453,,,,,,,,6.22527,9.35927,16.60618,,,,,,,,6.45683,9.65879,17.01802,,,,,,,,6.58557,9.78509,17.10428,,,,,,,,6.44166,9.66232,17.03732,,,,,,,,7.1379,10.55488,18.2161,,,,,,,,6.85066,10.18753,17.73292,,,,,,,,7.20367,10.71046,18.54343,,,,,,,,6.84218,10.17996,17.7546,,,,,,,,6.51101,9.75797,17.19887,,,,,,,,610.50715,614.34896,614.29834,,,,,,,,615.76176,619.40381,618.72774,,,,,,,,621.70733,625.42643,624.90186,,,,,,,,612.00712,615.71271,615.2336,,,,,,,,628.43527,631.42639,628.81969,,,,,,,,619.90948,623.05993,621.02176,,,,,,,,626.19565,629.12468,626.29217,,,,,,,,622.72126,626.0069,624.24476,,,,,,,,614.90551,618.14864,616.46645,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.18683,4.48395,5.12228,,,,,,,,4.29221,4.58798,5.22001,,,,,,,,4.40022,4.69306,5.31552,,,,,,,,4.18095,4.47611,5.10973,,,,,,,,4.45795,4.74488,5.34777,,,,,,,,4.31042,4.60052,5.21662,,,,,,,,4.41737,4.70827,5.32087,,,,,,,,4.6563,4.95728,5.59472,,,,,,,,4.37273,4.6716,5.30797,,,,,,,,0.05353,0.05365,0.05543,,,,,,,,0.05533,0.05539,0.05706,,,,,,,,0.06062,0.06056,0.06193,,,,,,,,0.04931,0.04946,0.0514,,,,,,,,0.05945,0.05941,0.06083,,,,,,,,0.05344,0.0535,0.0552,,,,,,,,0.05411,0.05419,0.05592,,,,,,,,0.05689,0.05692,0.0585,,,,,,,,0.05708,0.05715,0.05879,,,,,,,,0.34752,0.34248,0.3428,,,,,,,,0.35263,0.34741,0.34743,,,,,,,,0.36756,0.36186,0.36114,,,,,,,,0.33528,0.33052,0.33141,,,,,,,,0.3642,0.35859,0.35803,,,,,,,,0.34698,0.34185,0.34213,,,,,,,,0.34908,0.34395,0.34418,,,,,,,,0.35706,0.3517,0.3515,,,,,,,,0.35779,0.3525,0.35234,,,,,,,,0.28718,0.28255,0.28287,,,,,,,,0.29081,0.28602,0.28606,,,,,,,,0.30146,0.29622,0.29557,,,,,,,,0.27808,0.27371,0.27455,,,,,,,,0.299,0.29384,0.29334,,,,,,,,0.28645,0.28174,0.28201,,,,,,,,0.2882,0.28349,0.28372,,,,,,,,0.29397,0.28905,0.28888,,,,,,,,0.29479,0.28993,0.2898,,,,,,,,0.04653,0.0054,0.0054,,,,,,,,0.04693,0.00545,0.00544,,,,,,,,0.04738,0.0055,0.0055,,,,,,,,0.04664,0.00541,0.00541,,,,,,,,0.04789,0.00555,0.00553,,,,,,,,0.04724,0.00548,0.00546,,,,,,,,0.04772,0.00553,0.00551,,,,,,,,0.04746,0.0055,0.00549,,,,,,,,0.04686,0.00544,0.00542,,,,,,,,1.14941,1.59216,2.28248,,,,,,,,1.15524,1.59655,2.28412,,,,,,,,1.19731,1.64074,2.33968,,,,,,,,1.1364,1.57641,2.25735,,,,,,,,1.15588,1.59247,2.27029,,,,,,,,1.13116,1.56655,2.23838,,,,,,,,1.12899,1.56644,2.23829,,,,,,,,1.15513,1.59602,2.28046,,,,,,,,1.11779,1.55587,2.23336,,,,,,, +Pickup,DSL,2005,0.09572,0.12903,0.12863,0.14516,,,,,,,0.09578,0.12912,0.12872,0.14541,,,,,,,0.09592,0.12929,0.12889,0.14608,,,,,,,0.09533,0.1285,0.1281,0.14417,,,,,,,0.09584,0.12918,0.12878,0.14585,,,,,,,0.09547,0.12869,0.12828,0.14474,,,,,,,0.09567,0.12896,0.12857,0.14514,,,,,,,0.09584,0.12919,0.12879,0.14563,,,,,,,0.09604,0.12947,0.12908,0.14598,,,,,,,0.00233,0.00207,0.00236,0.00328,,,,,,,0.0023,0.00207,0.00236,0.00327,,,,,,,0.00241,0.00216,0.00245,0.00337,,,,,,,0.00231,0.00205,0.00234,0.00325,,,,,,,0.00214,0.00205,0.0023,0.00318,,,,,,,0.00216,0.00201,0.00228,0.00316,,,,,,,0.00209,0.00199,0.00225,0.00313,,,,,,,0.00222,0.00206,0.00233,0.00323,,,,,,,0.00206,0.00197,0.00223,0.0031,,,,,,,2.439,4.73285,5.67889,8.98591,,,,,,,2.53055,4.90991,5.8753,9.24024,,,,,,,2.5793,5.01184,5.97945,9.33758,,,,,,,2.52143,4.88615,5.85009,9.22712,,,,,,,2.80253,5.43947,6.46451,10.0012,,,,,,,2.68379,5.20356,6.20135,9.67379,,,,,,,2.8329,5.48868,6.53354,10.14763,,,,,,,2.68565,5.21018,6.21391,9.69307,,,,,,,2.55832,4.96476,5.94489,9.34819,,,,,,,753.54559,756.03598,761.09282,735.19163,,,,,,,761.83357,764.17973,768.97886,741.92389,,,,,,,772.62944,774.99911,779.93525,751.9778,,,,,,,753.20032,755.55334,760.43898,734.73777,,,,,,,782.45236,784.32988,788.27607,757.90977,,,,,,,767.31518,769.30236,773.45652,745.02376,,,,,,,776.2326,778.06727,781.90038,752.29625,,,,,,,772.69015,774.78178,779.10577,750.3284,,,,,,,762.76947,764.91202,769.14664,740.64573,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.92255,3.08769,3.20261,3.77284,,,,,,,2.98825,3.15224,3.26466,3.8414,,,,,,,3.05207,3.21204,3.32065,3.90515,,,,,,,2.92033,3.08554,3.19943,3.76557,,,,,,,3.07534,3.2316,3.3355,3.92117,,,,,,,2.99246,3.15286,3.26132,3.83524,,,,,,,3.05616,3.21691,3.32408,3.90736,,,,,,,3.22604,3.39306,3.50301,4.10952,,,,,,,3.03863,3.20392,3.31687,3.90321,,,,,,,0.022,0.02962,0.03012,0.03695,,,,,,,0.02271,0.03057,0.03106,0.03804,,,,,,,0.02476,0.03334,0.03381,0.04128,,,,,,,0.02043,0.02751,0.02801,0.03436,,,,,,,0.02432,0.03274,0.03321,0.04056,,,,,,,0.02204,0.02967,0.03015,0.03688,,,,,,,0.02224,0.02995,0.03044,0.0373,,,,,,,0.02332,0.0314,0.03188,0.03901,,,,,,,0.02332,0.0314,0.0319,0.03912,,,,,,,0.17976,0.22669,0.22704,0.25544,,,,,,,0.18228,0.22959,0.22991,0.25872,,,,,,,0.18952,0.23787,0.23816,0.26828,,,,,,,0.17417,0.22018,0.22051,0.24769,,,,,,,0.18795,0.23606,0.23635,0.26614,,,,,,,0.17985,0.22669,0.227,0.25518,,,,,,,0.18062,0.22765,0.22797,0.25647,,,,,,,0.18445,0.23206,0.23238,0.26158,,,,,,,0.18448,0.23219,0.23254,0.26196,,,,,,,0.13283,0.17602,0.17633,0.20247,,,,,,,0.13409,0.17761,0.17791,0.20443,,,,,,,0.13767,0.18216,0.18243,0.21013,,,,,,,0.12985,0.17218,0.17249,0.1975,,,,,,,0.13685,0.18111,0.18138,0.20879,,,,,,,0.13268,0.17578,0.17607,0.202,,,,,,,0.1332,0.17648,0.17679,0.203,,,,,,,0.13517,0.17898,0.17928,0.20614,,,,,,,0.13534,0.17924,0.17957,0.20664,,,,,,,0.05743,0.00665,0.00669,0.00647,,,,,,,0.05806,0.00672,0.00676,0.00652,,,,,,,0.05888,0.00682,0.00686,0.00661,,,,,,,0.0574,0.00664,0.00669,0.00646,,,,,,,0.05963,0.0069,0.00693,0.00666,,,,,,,0.05848,0.00677,0.0068,0.00655,,,,,,,0.05916,0.00684,0.00688,0.00662,,,,,,,0.05889,0.00681,0.00685,0.0066,,,,,,,0.05813,0.00673,0.00676,0.00651,,,,,,,0.47208,0.79683,0.89009,1.37306,,,,,,,0.47019,0.79962,0.89039,1.36952,,,,,,,0.49098,0.832,0.92428,1.41091,,,,,,,0.46817,0.78867,0.88156,1.35992,,,,,,,0.45087,0.79169,0.87256,1.33725,,,,,,,0.44838,0.77717,0.86124,1.32612,,,,,,,0.43966,0.77187,0.85312,1.31545,,,,,,,0.46031,0.7951,0.88136,1.3548,,,,,,,0.433,0.7616,0.84306,1.30727,,,,,, +Pickup,DSL,2010,,0.04035,0.03818,0.0352,0.07782,,,,,,,0.04038,0.03821,0.03522,0.07794,,,,,,,0.04044,0.03828,0.03529,0.07825,,,,,,,0.04018,0.03801,0.03503,0.07731,,,,,,,0.04041,0.03824,0.03525,0.07813,,,,,,,0.04024,0.03807,0.03509,0.07758,,,,,,,0.04033,0.03816,0.03518,0.0778,,,,,,,0.04041,0.03824,0.03525,0.07804,,,,,,,0.0405,0.03833,0.03534,0.07825,,,,,,,0.05923,0.09381,0.12912,0.10055,,,,,,,0.05636,0.09055,0.12472,0.09699,,,,,,,0.05944,0.09449,0.12944,0.10056,,,,,,,0.05937,0.09377,0.12906,0.1005,,,,,,,0.04355,0.07574,0.10517,0.08143,,,,,,,0.04777,0.08028,0.11132,0.08641,,,,,,,0.04301,0.07495,0.10453,0.08104,,,,,,,0.0501,0.08337,0.11534,0.08954,,,,,,,0.04214,0.07382,0.10325,0.08016,,,,,,,1.59913,2.50496,3.19832,6.05493,,,,,,,1.65554,2.58543,3.29192,6.2182,,,,,,,1.67207,2.59853,3.2987,6.2603,,,,,,,1.65726,2.59205,3.30208,6.21735,,,,,,,1.81931,2.81867,3.56346,6.70594,,,,,,,1.75257,2.7256,3.45587,6.49917,,,,,,,1.85583,2.8858,3.65427,6.82938,,,,,,,1.75282,2.72785,3.46131,6.51573,,,,,,,1.67525,2.61883,3.33655,6.29824,,,,,,,726.51573,726.9011,728.50556,737.24026,,,,,,,734.4734,734.64384,735.92169,744.06471,,,,,,,744.87017,745.08782,746.47429,754.6415,,,,,,,726.21471,726.45981,727.88196,736.50833,,,,,,,754.38594,753.87029,754.09659,760.3007,,,,,,,739.84073,739.52804,740.06255,746.97698,,,,,,,748.40552,747.82464,747.94723,754.2121,,,,,,,744.93281,744.72319,745.4163,752.52753,,,,,,,735.42934,735.22972,735.85715,742.70343,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.60689,1.70024,1.72947,2.58328,,,,,,,1.63878,1.73258,1.7604,2.62795,,,,,,,1.67343,1.76716,1.79337,2.67221,,,,,,,1.60024,1.69279,1.72109,2.57432,,,,,,,1.67426,1.76707,1.79199,2.677,,,,,,,1.63347,1.72578,1.7521,2.61945,,,,,,,1.66187,1.7553,1.78121,2.66557,,,,,,,1.75725,1.85461,1.8796,2.80378,,,,,,,1.66516,1.76039,1.78853,2.67001,,,,,,,0.00962,0.00973,0.00928,0.02051,,,,,,,0.00993,0.01001,0.00954,0.02109,,,,,,,0.0108,0.01084,0.01029,0.0228,,,,,,,0.00897,0.0091,0.00869,0.01914,,,,,,,0.01061,0.01066,0.01013,0.02242,,,,,,,0.00965,0.00974,0.00929,0.02047,,,,,,,0.00973,0.00983,0.00937,0.0207,,,,,,,0.01019,0.01026,0.00976,0.0216,,,,,,,0.01018,0.01026,0.00977,0.02167,,,,,,,0.10286,0.10356,0.10039,0.16178,,,,,,,0.10472,0.10542,0.1022,0.16416,,,,,,,0.11007,0.11077,0.10744,0.17107,,,,,,,0.09887,0.09953,0.09643,0.15629,,,,,,,0.10893,0.10963,0.10632,0.16954,,,,,,,0.10305,0.10372,0.10052,0.16171,,,,,,,0.10352,0.10421,0.10102,0.16255,,,,,,,0.10631,0.10701,0.10376,0.16622,,,,,,,0.10624,0.10696,0.10373,0.1664,,,,,,,0.06211,0.06275,0.05983,0.11631,,,,,,,0.06275,0.06339,0.06043,0.11743,,,,,,,0.06459,0.06523,0.06217,0.12071,,,,,,,0.06059,0.06121,0.05836,0.11343,,,,,,,0.06417,0.06481,0.06177,0.11993,,,,,,,0.06205,0.06266,0.05973,0.11601,,,,,,,0.0623,0.06294,0.06001,0.11661,,,,,,,0.0633,0.06395,0.06096,0.11842,,,,,,,0.06338,0.06404,0.06108,0.11873,,,,,,,0.00608,0.00607,0.00607,0.00628,,,,,,,0.00614,0.00614,0.00613,0.00633,,,,,,,0.00623,0.00622,0.00622,0.00642,,,,,,,0.00607,0.00607,0.00607,0.00627,,,,,,,0.00631,0.0063,0.00629,0.00647,,,,,,,0.00619,0.00618,0.00617,0.00636,,,,,,,0.00626,0.00625,0.00624,0.00642,,,,,,,0.00623,0.00622,0.00621,0.00641,,,,,,,0.00615,0.00614,0.00613,0.00632,,,,,,,0.25482,0.28738,0.3194,0.79043,,,,,,,0.253,0.28466,0.31483,0.7835,,,,,,,0.26447,0.2967,0.32744,0.80902,,,,,,,0.25295,0.28546,0.31762,0.78425,,,,,,,0.23921,0.26709,0.29001,0.74475,,,,,,,0.2393,0.26843,0.29418,0.74691,,,,,,,0.23336,0.26142,0.28489,0.73339,,,,,,,0.24602,0.27595,0.30272,0.76515,,,,,,,0.22964,0.25761,0.28117,0.72785,,,,, +Pickup,DSL,2015,,,0.00072,0.00116,0.00138,0.01985,,,,,,,0.00072,0.00116,0.00139,0.01986,,,,,,,0.00074,0.00118,0.00141,0.0199,,,,,,,0.0007,0.00113,0.00135,0.01974,,,,,,,0.00073,0.00118,0.0014,0.01988,,,,,,,0.00071,0.00115,0.00137,0.01978,,,,,,,0.00072,0.00116,0.00138,0.01983,,,,,,,0.00073,0.00117,0.0014,0.01988,,,,,,,0.00073,0.00118,0.00141,0.01994,,,,,,,0.08452,0.11522,0.15291,0.17502,,,,,,,0.0805,0.11044,0.1469,0.16813,,,,,,,0.08489,0.11551,0.15277,0.17456,,,,,,,0.0847,0.11535,0.15304,0.1751,,,,,,,0.06251,0.08914,0.12046,0.13823,,,,,,,0.0684,0.09606,0.12913,0.1481,,,,,,,0.0617,0.08838,0.11987,0.13772,,,,,,,0.0717,0.10011,0.13418,0.15379,,,,,,,0.06045,0.08695,0.11829,0.13615,,,,,,,0.91342,1.75476,2.44395,3.86478,,,,,,,0.93766,1.80032,2.5048,3.95859,,,,,,,0.92709,1.78281,2.48348,3.94764,,,,,,,0.94758,1.8168,2.52446,3.97481,,,,,,,1.00472,1.92811,2.67742,4.23212,,,,,,,0.98312,1.88496,2.61696,4.12601,,,,,,,1.04466,2.00046,2.77209,4.3506,,,,,,,0.98318,1.88653,2.62106,4.13686,,,,,,,0.95128,1.82695,2.54218,4.01561,,,,,,,631.20736,633.13412,636.41281,670.72204,,,,,,,638.0212,639.76055,642.78907,676.96032,,,,,,,646.87206,648.68575,651.83213,686.66084,,,,,,,630.91863,632.72408,635.86096,669.92674,,,,,,,654.92112,656.04769,658.25622,691.74887,,,,,,,642.42822,643.72105,646.14985,679.47404,,,,,,,649.91271,650.96569,653.07937,686.13987,,,,,,,646.95551,648.35351,650.92532,684.68167,,,,,,,638.7315,640.09514,642.57352,675.74666,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.32275,,,,,,,0.53682,0.77214,0.84369,1.34281,,,,,,,0.54809,0.78753,0.85813,1.36392,,,,,,,0.52372,0.75365,0.82514,1.31553,,,,,,,0.5485,0.78781,0.85785,1.36376,,,,,,,0.53445,0.7684,0.83893,1.33593,,,,,,,0.54375,0.78179,0.85304,1.358,,,,,,,0.57087,0.82186,0.89466,1.42425,,,,,,,0.54606,0.78532,0.85779,1.36446,,,,,,,0.00101,0.00156,0.00171,0.00625,,,,,,,0.00101,0.00158,0.00172,0.00638,,,,,,,0.00104,0.00161,0.00175,0.0068,,,,,,,0.00098,0.00153,0.00167,0.0059,,,,,,,0.00103,0.0016,0.00174,0.0067,,,,,,,0.001,0.00155,0.00169,0.00623,,,,,,,0.00101,0.00157,0.00171,0.00629,,,,,,,0.00102,0.00159,0.00173,0.00651,,,,,,,0.00103,0.0016,0.00174,0.00653,,,,,,,0.04842,0.05245,0.05361,0.08058,,,,,,,0.04982,0.05388,0.05503,0.08219,,,,,,,0.05386,0.05801,0.05915,0.08688,,,,,,,0.04553,0.04946,0.0506,0.07703,,,,,,,0.05303,0.05715,0.05829,0.08588,,,,,,,0.04868,0.05268,0.05381,0.08069,,,,,,,0.04895,0.05298,0.05413,0.08115,,,,,,,0.05102,0.0551,0.05625,0.08359,,,,,,,0.05087,0.05498,0.05615,0.08358,,,,,,,0.01202,0.01573,0.0168,0.04161,,,,,,,0.01224,0.01598,0.01703,0.04202,,,,,,,0.01288,0.0167,0.01775,0.04326,,,,,,,0.01152,0.01514,0.01619,0.0405,,,,,,,0.01274,0.01653,0.01758,0.04297,,,,,,,0.01202,0.01571,0.01674,0.04147,,,,,,,0.0121,0.01581,0.01686,0.04172,,,,,,,0.01243,0.01619,0.01725,0.0424,,,,,,,0.01245,0.01623,0.01731,0.04254,,,,,,,0.00516,0.00517,0.0052,0.00555,,,,,,,0.00521,0.00523,0.00525,0.0056,,,,,,,0.00529,0.0053,0.00533,0.00568,,,,,,,0.00516,0.00517,0.0052,0.00554,,,,,,,0.00535,0.00536,0.00538,0.00572,,,,,,,0.00525,0.00526,0.00528,0.00562,,,,,,,0.00531,0.00532,0.00534,0.00567,,,,,,,0.00529,0.0053,0.00532,0.00566,,,,,,,0.00522,0.00523,0.00525,0.00559,,,,,,,0.08796,0.11648,0.15151,0.33083,,,,,,,0.08434,0.11215,0.14602,0.3233,,,,,,,0.08855,0.11698,0.15161,0.33496,,,,,,,0.08813,0.1166,0.15162,0.32959,,,,,,,0.0679,0.09263,0.12172,0.28826,,,,,,,0.07318,0.09887,0.12959,0.29737,,,,,,,0.06708,0.09184,0.1211,0.28507,,,,,,,0.07631,0.1027,0.13435,0.30649,,,,,,,0.06575,0.09035,0.11947,0.28216,,,, +Pickup,DSL,2020,,,,0.00072,0.0011,0.00125,0.00465,,,,,,,0.00072,0.00111,0.00125,0.00465,,,,,,,0.00074,0.00113,0.00127,0.00467,,,,,,,0.0007,0.00108,0.00122,0.0046,,,,,,,0.00073,0.00112,0.00127,0.00466,,,,,,,0.00072,0.00109,0.00124,0.00462,,,,,,,0.00072,0.0011,0.00125,0.00464,,,,,,,0.00073,0.00111,0.00126,0.00466,,,,,,,0.00073,0.00112,0.00127,0.00468,,,,,,,0.08358,0.10624,0.13139,0.18032,,,,,,,0.07944,0.1014,0.12537,0.17229,,,,,,,0.08399,0.10664,0.1315,0.17991,,,,,,,0.08379,0.10643,0.13163,0.18057,,,,,,,0.06087,0.07977,0.09876,0.13729,,,,,,,0.06698,0.08684,0.10757,0.14898,,,,,,,0.06,0.07885,0.09788,0.13648,,,,,,,0.07033,0.09085,0.11244,0.15537,,,,,,,0.05872,0.07739,0.09623,0.13461,,,,,,,0.78003,1.244,1.58419,2.56054,,,,,,,0.80087,1.27638,1.623,2.61775,,,,,,,0.7941,1.26576,1.6085,2.59704,,,,,,,0.80806,1.28709,1.63602,2.63457,,,,,,,0.85922,1.36751,1.7326,2.78175,,,,,,,0.83946,1.3361,1.69464,2.72248,,,,,,,0.89057,1.41653,1.79422,2.87322,,,,,,,0.83979,1.33732,1.69717,2.72941,,,,,,,0.81228,1.29491,1.647,2.65687,,,,,,,553.53381,554.75256,557.30624,593.51674,,,,,,,559.45393,560.50931,562.8389,598.96247,,,,,,,567.21372,568.32858,570.75943,607.53869,,,,,,,553.26555,554.3794,556.80518,592.78327,,,,,,,574.09163,574.61785,576.2165,611.79962,,,,,,,563.19783,563.8719,565.67017,601.01403,,,,,,,569.70897,570.17245,571.686,606.85437,,,,,,,567.19413,567.9541,569.87587,605.66885,,,,,,,559.96123,560.69998,562.54688,597.74298,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82244,,,,,,,0.44685,0.5816,0.6301,0.83346,,,,,,,0.45614,0.59314,0.64146,0.84651,,,,,,,0.43605,0.5678,0.61593,0.81625,,,,,,,0.45642,0.59326,0.64117,0.84541,,,,,,,0.44481,0.5787,0.62653,0.82819,,,,,,,0.45243,0.58857,0.63684,0.84114,,,,,,,0.47433,0.61755,0.66685,0.87927,,,,,,,0.45454,0.59154,0.64072,0.8471,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00103,0.00153,0.00162,0.00259,,,,,,,0.00105,0.00157,0.00166,0.00268,,,,,,,0.001,0.00148,0.00157,0.00246,,,,,,,0.00105,0.00156,0.00165,0.00266,,,,,,,0.00102,0.00151,0.0016,0.00254,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00104,0.00154,0.00163,0.00262,,,,,,,0.00104,0.00155,0.00164,0.00263,,,,,,,0.04852,0.05211,0.05284,0.05901,,,,,,,0.04992,0.05354,0.05426,0.06045,,,,,,,0.05397,0.05767,0.05839,0.06467,,,,,,,0.04563,0.04913,0.04984,0.05589,,,,,,,0.05314,0.05681,0.05753,0.06378,,,,,,,0.04878,0.05235,0.05306,0.05917,,,,,,,0.04905,0.05264,0.05337,0.05953,,,,,,,0.05112,0.05476,0.05548,0.06171,,,,,,,0.05097,0.05463,0.05537,0.06164,,,,,,,0.01212,0.01542,0.01609,0.02176,,,,,,,0.01234,0.01566,0.01633,0.02203,,,,,,,0.01299,0.01638,0.01705,0.02282,,,,,,,0.01161,0.01483,0.01549,0.02106,,,,,,,0.01284,0.01622,0.01688,0.02263,,,,,,,0.01212,0.0154,0.01605,0.02168,,,,,,,0.01219,0.01549,0.01616,0.02183,,,,,,,0.01253,0.01588,0.01654,0.02227,,,,,,,0.01254,0.01591,0.01659,0.02235,,,,,,,0.00452,0.00453,0.00455,0.00486,,,,,,,0.00457,0.00458,0.0046,0.00491,,,,,,,0.00463,0.00464,0.00466,0.00498,,,,,,,0.00452,0.00453,0.00455,0.00485,,,,,,,0.00469,0.0047,0.00471,0.00501,,,,,,,0.0046,0.00461,0.00462,0.00492,,,,,,,0.00466,0.00466,0.00467,0.00497,,,,,,,0.00463,0.00464,0.00466,0.00496,,,,,,,0.00458,0.00458,0.0046,0.0049,,,,,,,0.08592,0.10697,0.13034,0.19699,,,,,,,0.08217,0.10256,0.12484,0.18939,,,,,,,0.08651,0.10754,0.13065,0.19743,,,,,,,0.08611,0.10714,0.13056,0.19705,,,,,,,0.06516,0.0827,0.10035,0.15581,,,,,,,0.07066,0.0891,0.10837,0.16662,,,,,,,0.06429,0.08179,0.09946,0.1546,,,,,,,0.07384,0.09288,0.11294,0.17316,,,,,,,0.06295,0.08029,0.0978,0.15251,,, +Pickup,DSL,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,515.52862,517.36999,520.60093,546.99097,,,,,,,521.02447,522.72726,525.75913,551.95705,,,,,,,528.27837,530.04534,533.18339,559.87723,,,,,,,515.27507,517.01989,520.13162,546.30321,,,,,,,534.61387,535.86256,538.23725,563.62452,,,,,,,524.48034,525.84611,528.38966,553.73895,,,,,,,530.51251,531.69744,533.98624,559.06272,,,,,,,528.20274,529.6511,532.31554,558.0478,,,,,,,521.44792,522.87079,525.4533,550.71343,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00421,0.00423,0.00425,0.00447,,,,,,,0.00426,0.00427,0.0043,0.00451,,,,,,,0.00432,0.00433,0.00436,0.00457,,,,,,,0.00421,0.00422,0.00425,0.00446,,,,,,,0.00437,0.00438,0.0044,0.00461,,,,,,,0.00429,0.0043,0.00432,0.00452,,,,,,,0.00433,0.00434,0.00436,0.00457,,,,,,,0.00432,0.00433,0.00435,0.00456,,,,,,,0.00426,0.00427,0.00429,0.0045,,,,,,,0.08122,0.09662,0.11451,0.16051,,,,,,,0.07744,0.09224,0.10907,0.15288,,,,,,,0.08183,0.09729,0.11497,0.16047,,,,,,,0.08144,0.09684,0.1148,0.16089,,,,,,,0.06028,0.07243,0.08473,0.11932,,,,,,,0.06586,0.07885,0.09275,0.13056,,,,,,,0.05935,0.07139,0.08365,0.11826,,,,,,,0.06901,0.08252,0.09715,0.13654,,,,,,,0.05801,0.06988,0.08196,0.11625,, +Pickup,DSL,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,505.90251,508.12865,511.88576,526.63939,,,,,,,511.29304,513.38981,516.95436,531.40985,,,,,,,518.42229,520.58653,524.26462,539.04839,,,,,,,505.65284,507.78444,511.42427,525.97531,,,,,,,524.62573,526.29466,529.21837,542.61528,,,,,,,514.68098,516.45452,519.53618,533.10575,,,,,,,520.59197,522.19594,525.03042,538.21442,,,,,,,518.33218,520.18913,523.39511,537.25547,,,,,,,511.6985,513.52605,516.64155,530.18337,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00418,0.00419,0.00422,0.00434,,,,,,,0.00424,0.00425,0.00428,0.0044,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00429,0.0043,0.00432,0.00443,,,,,,,0.00421,0.00422,0.00425,0.00436,,,,,,,0.00425,0.00427,0.00429,0.0044,,,,,,,0.00424,0.00425,0.00428,0.00439,,,,,,,0.00418,0.0042,0.00422,0.00433,,,,,,,0.07981,0.09384,0.11087,0.14775,,,,,,,0.07604,0.08949,0.10544,0.14015,,,,,,,0.08043,0.09454,0.11136,0.14781,,,,,,,0.08004,0.09407,0.11118,0.14822,,,,,,,0.0589,0.06976,0.08112,0.10658,,,,,,,0.06448,0.07616,0.08915,0.11789,,,,,,,0.05796,0.0687,0.08001,0.1054,,,,,,,0.06761,0.0798,0.09351,0.12374,,,,,,,0.05661,0.06719,0.0783,0.10333, +Pickup,DSL,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,505.84325,508.11981,511.87641,520.53161,,,,,,,511.23605,513.38181,516.94536,525.24513,,,,,,,518.36354,520.57802,524.25551,532.79992,,,,,,,505.5941,507.77589,511.41505,519.87502,,,,,,,524.57686,526.28822,529.21111,536.3182,,,,,,,514.63015,516.44746,519.52878,526.91938,,,,,,,520.54403,522.18978,525.02349,531.96478,,,,,,,518.27972,520.18195,523.3872,531.02016,,,,,,,511.649,513.51958,516.63441,524.02733,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00418,0.00419,0.00422,0.00429,,,,,,,0.00424,0.00425,0.00428,0.00435,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00429,0.0043,0.00432,0.00438,,,,,,,0.00421,0.00422,0.00425,0.00431,,,,,,,0.00425,0.00427,0.00429,0.00435,,,,,,,0.00423,0.00425,0.00428,0.00434,,,,,,,0.00418,0.0042,0.00422,0.00428,,,,,,,0.0796,0.0938,0.11082,0.14306,,,,,,,0.07584,0.08944,0.1054,0.13548,,,,,,,0.08022,0.09449,0.11131,0.14315,,,,,,,0.07982,0.09402,0.11113,0.14356,,,,,,,0.05877,0.06974,0.08109,0.10192,,,,,,,0.06432,0.07613,0.08912,0.11324,,,,,,,0.05784,0.06867,0.07998,0.1007,,,,,,,0.06744,0.07976,0.09347,0.11904,,,,,,,0.05649,0.06716,0.07828,0.0986 +Pickup,DSL,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,505.84317,508.11917,511.88521,,,,,,,,511.23668,513.38141,516.95445,,,,,,,,518.36366,520.57755,524.26456,,,,,,,,505.59432,507.77538,511.42401,,,,,,,,524.57908,526.28967,529.22036,,,,,,,,514.63195,516.44843,519.53798,,,,,,,,520.5461,522.19116,525.03319,,,,,,,,518.28109,520.18253,523.39643,,,,,,,,511.65072,513.5203,516.64385,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00418,0.00419,0.00422,,,,,,,,0.00424,0.00425,0.00428,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00429,0.0043,0.00432,,,,,,,,0.00421,0.00422,0.00425,,,,,,,,0.00425,0.00427,0.00429,,,,,,,,0.00423,0.00425,0.00428,,,,,,,,0.00418,0.0042,0.00422,,,,,,,,0.07956,0.09376,0.11082,,,,,,,,0.0758,0.08941,0.10539,,,,,,,,0.08018,0.09446,0.11131,,,,,,,,0.07978,0.09399,0.11113,,,,,,,,0.05875,0.06972,0.08109,,,,,,,,0.0643,0.0761,0.08912,,,,,,,,0.05781,0.06865,0.07998,,,,,,,,0.06741,0.07973,0.09347,,,,,,,,0.05647,0.06714,0.07828 +Pickup,DSL,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,505.83557,508.1193,,,,,,,,,511.22947,513.38177,,,,,,,,,518.35636,520.57781,,,,,,,,,505.58695,507.77559,,,,,,,,,524.57279,526.29014,,,,,,,,,514.62534,516.44883,,,,,,,,,520.54012,522.19179,,,,,,,,,518.27447,520.18296,,,,,,,,,511.64435,513.52073,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00418,0.00419,,,,,,,,,0.00424,0.00425,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00429,0.0043,,,,,,,,,0.0042,0.00422,,,,,,,,,0.00425,0.00427,,,,,,,,,0.00423,0.00425,,,,,,,,,0.00418,0.0042,,,,,,,,,0.07953,0.09376,,,,,,,,,0.07578,0.08941,,,,,,,,,0.08015,0.09445,,,,,,,,,0.07975,0.09398,,,,,,,,,0.05873,0.06971,,,,,,,,,0.06428,0.0761,,,,,,,,,0.0578,0.06865,,,,,,,,,0.06739,0.07973,,,,,,,,,0.05645,0.06714 +Pickup,DSL,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,505.83304,,,,,,,,,,511.2268,,,,,,,,,,518.35376,,,,,,,,,,505.58432,,,,,,,,,,524.57034,,,,,,,,,,514.62275,,,,,,,,,,520.53783,,,,,,,,,,518.27191,,,,,,,,,,511.64183,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00413,,,,,,,,,,0.00418,,,,,,,,,,0.00424,,,,,,,,,,0.00413,,,,,,,,,,0.00429,,,,,,,,,,0.0042,,,,,,,,,,0.00425,,,,,,,,,,0.00423,,,,,,,,,,0.00418,,,,,,,,,,0.07953,,,,,,,,,,0.07578,,,,,,,,,,0.08015,,,,,,,,,,0.07975,,,,,,,,,,0.05873,,,,,,,,,,0.06428,,,,,,,,,,0.0578,,,,,,,,,,0.06739,,,,,,,,,,0.05645 +Pickup,E10,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11314,,,,,,,,,,0.09514,,,,,,,,,,0.12563,,,,,,,,,,0.13114,,,,,,,,,,0.10808,,,,,,,,,,0.11889,,,,,,,,,,0.1086,,,,,,,,,,0.10523,,,,,,,,,,0.082,,,,,,,,,,63.2126,,,,,,,,,,56.71448,,,,,,,,,,72.5467,,,,,,,,,,75.39182,,,,,,,,,,65.86029,,,,,,,,,,71.70294,,,,,,,,,,67.75261,,,,,,,,,,64.00043,,,,,,,,,,51.27035,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.42804,,,,,,,,,,5.10132,,,,,,,,,,5.66747,,,,,,,,,,6.03225,,,,,,,,,,5.57448,,,,,,,,,,5.84644,,,,,,,,,,5.59049,,,,,,,,,,5.89878,,,,,,,,,,4.86777,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02859,,,,,,,,,,0.03225,,,,,,,,,,0.0458,,,,,,,,,,0.04198,,,,,,,,,,0.03737,,,,,,,,,,0.04119,,,,,,,,,,0.03748,,,,,,,,,,0.03705,,,,,,,,,,0.01748,,,,,,,,,,4.58393,,,,,,,,,,4.09865,,,,,,,,,,5.16888,,,,,,,,,,5.36494,,,,,,,,,,5.05775,,,,,,,,,,5.2588,,,,,,,,,,5.07596,,,,,,,,,,4.89415,,,,,,,,,,3.91859,,,,,,,,, +Pickup,E10,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07748,0.08904,,,,,,,,,0.072,0.07672,,,,,,,,,0.08854,0.09985,,,,,,,,,0.09111,0.10812,,,,,,,,,0.0789,0.09187,,,,,,,,,0.084,0.10018,,,,,,,,,0.07855,0.09062,,,,,,,,,0.07752,0.08825,,,,,,,,,0.0636,0.06606,,,,,,,,,29.63897,41.36596,,,,,,,,,28.97433,38.13233,,,,,,,,,34.93065,46.68978,,,,,,,,,36.55574,50.87631,,,,,,,,,32.44092,44.68976,,,,,,,,,34.65845,48.01339,,,,,,,,,33.36491,46.18974,,,,,,,,,32.00793,44.75452,,,,,,,,,25.76618,35.26581,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.4622,5.38071,,,,,,,,,4.39166,5.07853,,,,,,,,,4.76518,5.5464,,,,,,,,,4.98088,6.03246,,,,,,,,,4.67221,5.61475,,,,,,,,,4.86994,5.84286,,,,,,,,,4.73253,5.63439,,,,,,,,,4.9598,5.90802,,,,,,,,,4.15621,4.87518,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02235,0.01148,,,,,,,,,0.02537,0.01164,,,,,,,,,0.03618,0.01205,,,,,,,,,0.03289,0.02015,,,,,,,,,0.02978,0.01187,,,,,,,,,0.03259,0.01176,,,,,,,,,0.02981,0.01615,,,,,,,,,0.0293,0.01836,,,,,,,,,0.01378,0.00675,,,,,,,,,3.15995,3.95794,,,,,,,,,3.05508,3.64352,,,,,,,,,3.65557,4.47219,,,,,,,,,3.72559,4.76354,,,,,,,,,3.55404,4.60463,,,,,,,,,3.63499,4.74219,,,,,,,,,3.54137,4.55094,,,,,,,,,3.49782,4.45048,,,,,,,,,2.90021,3.5081,,,,,,,, +Pickup,E10,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04401,0.06476,0.08784,,,,,,,,0.0413,0.06232,0.0781,,,,,,,,0.05087,0.07437,0.10072,,,,,,,,0.05219,0.07737,0.10281,,,,,,,,0.03885,0.06434,0.08903,,,,,,,,0.04221,0.06816,0.09361,,,,,,,,0.03831,0.06344,0.08422,,,,,,,,0.0414,0.06502,0.08415,,,,,,,,0.03345,0.05497,0.06663,,,,,,,,9.20673,14.67901,27.14853,,,,,,,,9.00892,14.50541,24.80322,,,,,,,,11.06622,17.33347,31.26982,,,,,,,,11.46401,18.23061,32.27626,,,,,,,,8.96455,15.47148,28.66746,,,,,,,,9.72109,16.37041,30.05152,,,,,,,,9.10995,15.80052,28.4154,,,,,,,,9.39068,15.98896,27.98844,,,,,,,,7.52152,13.50881,22.50913,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.62242,2.27158,3.8184,,,,,,,,1.59133,2.25249,3.61825,,,,,,,,1.85119,2.49498,4.08478,,,,,,,,1.90156,2.62987,4.18527,,,,,,,,1.76576,2.46283,4.06962,,,,,,,,1.83606,2.52392,4.14115,,,,,,,,1.79219,2.50177,3.93434,,,,,,,,1.87762,2.60733,4.13455,,,,,,,,1.58162,2.23808,3.46002,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.0239,0.0116,0.0105,,,,,,,,0.02716,0.01179,0.01056,,,,,,,,0.03873,0.01221,0.01072,,,,,,,,0.03527,0.02044,0.01047,,,,,,,,0.03204,0.01214,0.01065,,,,,,,,0.03506,0.012,0.0105,,,,,,,,0.03213,0.01653,0.01055,,,,,,,,0.03144,0.01871,0.0095,,,,,,,,0.01477,0.00685,0.00494,,,,,,,,1.06311,1.76753,3.20543,,,,,,,,1.04361,1.7498,2.93418,,,,,,,,1.24914,2.05104,3.67596,,,,,,,,1.2881,2.12799,3.7341,,,,,,,,1.10217,1.94308,3.60125,,,,,,,,1.14195,1.99627,3.65022,,,,,,,,1.09683,1.91642,3.44684,,,,,,,,1.15621,1.96365,3.42979,,,,,,,,0.94024,1.66224,2.76321,,,,,,, +Pickup,E10,2005,0.00218,0.00358,0.00529,0.01394,,,,,,,0.00196,0.00308,0.00454,0.01197,,,,,,,0.00241,0.00274,0.00401,0.01339,,,,,,,0.00251,0.0037,0.00548,0.01499,,,,,,,0.00126,0.00201,0.00294,0.00684,,,,,,,0.00148,0.00206,0.00301,0.00798,,,,,,,0.0012,0.00183,0.00267,0.00633,,,,,,,0.00164,0.00232,0.00339,0.00923,,,,,,,0.00106,0.00158,0.00227,0.00621,,,,,,,0.02811,0.02142,0.02264,0.04902,,,,,,,0.02586,0.01943,0.0211,0.0445,,,,,,,0.02914,0.02137,0.02317,0.05647,,,,,,,0.02949,0.02482,0.02517,0.05903,,,,,,,0.01864,0.01622,0.01864,0.04767,,,,,,,0.02074,0.01732,0.01956,0.05074,,,,,,,0.01788,0.01677,0.01823,0.04544,,,,,,,0.02234,0.01889,0.0194,0.04745,,,,,,,0.01497,0.01269,0.01434,0.03839,,,,,,,4.53533,6.85821,8.85974,16.10575,,,,,,,4.44842,6.79605,8.94289,15.44397,,,,,,,4.9582,7.98354,10.64999,18.92182,,,,,,,5.10544,8.63779,10.64684,19.76927,,,,,,,4.51382,7.38109,9.95459,17.53775,,,,,,,4.66371,7.69058,10.31608,18.29136,,,,,,,4.62635,7.94441,10.04262,17.59912,,,,,,,4.71885,8.17685,9.97695,17.58782,,,,,,,3.72873,6.82375,8.95189,15.11981,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.61209,0.96956,1.26103,1.92446,,,,,,,0.60099,0.94894,1.25846,1.86081,,,,,,,0.65121,1.05001,1.37261,2.11066,,,,,,,0.65002,1.15382,1.43403,2.20209,,,,,,,0.6098,1.01467,1.34061,2.08907,,,,,,,0.63115,1.05028,1.37292,2.12959,,,,,,,0.61933,1.06557,1.33917,2.04097,,,,,,,0.66549,1.10947,1.36821,2.15451,,,,,,,0.52141,0.74253,0.97447,1.86164,,,,,,,0.00487,0.0078,0.0106,0.02466,,,,,,,0.00446,0.00694,0.00942,0.02171,,,,,,,0.00516,0.00643,0.00867,0.02359,,,,,,,0.00532,0.00788,0.01073,0.02582,,,,,,,0.00313,0.00492,0.0067,0.01364,,,,,,,0.00351,0.00503,0.00683,0.01542,,,,,,,0.00304,0.00464,0.0063,0.013,,,,,,,0.00384,0.00554,0.00749,0.01741,,,,,,,0.00281,0.00421,0.00567,0.01291,,,,,,,0.05129,0.05749,0.0638,0.09546,,,,,,,0.0518,0.05697,0.06251,0.09006,,,,,,,0.05747,0.05985,0.06482,0.09857,,,,,,,0.04957,0.05498,0.06137,0.09554,,,,,,,0.05206,0.05572,0.0596,0.07487,,,,,,,0.04863,0.05167,0.05559,0.07463,,,,,,,0.04779,0.05106,0.05461,0.06927,,,,,,,0.05164,0.05512,0.05937,0.08145,,,,,,,0.04909,0.05192,0.05504,0.07088,,,,,,,0.01453,0.02002,0.02561,0.05361,,,,,,,0.01392,0.0185,0.0234,0.04778,,,,,,,0.01589,0.018,0.0224,0.05226,,,,,,,0.01517,0.01995,0.02561,0.05584,,,,,,,0.01173,0.01497,0.0184,0.03191,,,,,,,0.01196,0.01465,0.01812,0.03496,,,,,,,0.01103,0.01392,0.01706,0.03004,,,,,,,0.01287,0.01596,0.01972,0.03926,,,,,,,0.01076,0.01327,0.01602,0.03005,,,,,,,0.02504,0.01211,0.01102,0.00368,,,,,,,0.02848,0.01232,0.0111,0.0037,,,,,,,0.0406,0.01275,0.01126,0.00375,,,,,,,0.037,0.02137,0.01101,0.00367,,,,,,,0.03367,0.01272,0.01127,0.00373,,,,,,,0.03685,0.01257,0.01109,0.00368,,,,,,,0.0338,0.01734,0.01118,0.0037,,,,,,,0.03301,0.01959,0.01002,0.00366,,,,,,,0.01551,0.00717,0.00521,0.00338,,,,,,,0.42668,0.52192,0.71339,1.83233,,,,,,,0.4036,0.49321,0.68111,1.71672,,,,,,,0.45618,0.54093,0.74631,2.08237,,,,,,,0.46665,0.61217,0.80079,2.15051,,,,,,,0.34117,0.46419,0.6603,1.95653,,,,,,,0.36239,0.478,0.67328,1.99999,,,,,,,0.3322,0.47036,0.64293,1.88454,,,,,,,0.39852,0.52943,0.7006,1.96066,,,,,,,0.28505,0.38919,0.54876,1.63607,,,,,, +Pickup,E10,2010,,0.00162,0.00287,0.00427,0.01079,,,,,,,0.00142,0.0025,0.00377,0.00934,,,,,,,0.00124,0.00218,0.00406,0.01029,,,,,,,0.00168,0.00299,0.00454,0.01154,,,,,,,0.00103,0.00178,0.0025,0.00562,,,,,,,0.00102,0.00177,0.00275,0.00641,,,,,,,0.00094,0.00161,0.00226,0.0051,,,,,,,0.00111,0.00193,0.00303,0.00727,,,,,,,0.0008,0.00136,0.00215,0.00492,,,,,,,0.02013,0.01854,0.01573,0.03289,,,,,,,0.01774,0.01707,0.01438,0.03038,,,,,,,0.01881,0.01888,0.01616,0.03701,,,,,,,0.02262,0.02104,0.01791,0.03947,,,,,,,0.01341,0.01553,0.01279,0.0305,,,,,,,0.01411,0.01603,0.01342,0.03241,,,,,,,0.0138,0.01531,0.01259,0.02938,,,,,,,0.01612,0.0158,0.01384,0.03135,,,,,,,0.01078,0.01164,0.01209,0.02613,,,,,,,3.09224,4.95927,6.48848,11.49491,,,,,,,2.97276,4.9579,6.43558,11.29062,,,,,,,3.41119,5.77432,7.27606,13.6769,,,,,,,3.65072,5.8182,7.79685,14.45278,,,,,,,2.83758,5.21916,6.92104,12.75393,,,,,,,3.00662,5.44818,7.12479,13.30185,,,,,,,3.05711,5.30439,7.08065,12.89365,,,,,,,3.3226,5.35322,7.08916,12.86984,,,,,,,2.71446,4.75412,6.32517,11.19949,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.22139,0.3576,0.32156,1.00374,,,,,,,0.21378,0.35576,0.31782,0.98526,,,,,,,0.22098,0.3824,0.33969,1.12438,,,,,,,0.23875,0.40147,0.35787,1.18556,,,,,,,0.20712,0.36724,0.32313,1.10404,,,,,,,0.214,0.37886,0.33338,1.12913,,,,,,,0.21757,0.36928,0.32582,1.08596,,,,,,,0.23378,0.3815,0.35378,1.14599,,,,,,,0.15918,0.26955,0.31976,0.99901,,,,,,,0.00293,0.00493,0.0069,0.01768,,,,,,,0.00274,0.00458,0.00642,0.01583,,,,,,,0.00249,0.00414,0.00667,0.01692,,,,,,,0.00296,0.00499,0.00711,0.01842,,,,,,,0.0024,0.00394,0.00523,0.01087,,,,,,,0.00233,0.00384,0.00542,0.01188,,,,,,,0.00227,0.00372,0.00492,0.01024,,,,,,,0.00239,0.00395,0.00568,0.01307,,,,,,,0.00203,0.00331,0.00475,0.01004,,,,,,,0.04735,0.0519,0.05648,0.08074,,,,,,,0.04824,0.05237,0.05662,0.07768,,,,,,,0.05169,0.05538,0.06132,0.08441,,,,,,,0.04465,0.04927,0.05425,0.07982,,,,,,,0.0505,0.05381,0.05663,0.06906,,,,,,,0.04609,0.04934,0.05288,0.06719,,,,,,,0.04617,0.04924,0.05184,0.06347,,,,,,,0.04858,0.05196,0.05587,0.07229,,,,,,,0.04748,0.05018,0.05333,0.06485,,,,,,,0.01105,0.01508,0.01913,0.04059,,,,,,,0.01078,0.01443,0.01819,0.03682,,,,,,,0.01078,0.01404,0.0193,0.03973,,,,,,,0.01081,0.01491,0.01931,0.04193,,,,,,,0.01035,0.01328,0.01577,0.02677,,,,,,,0.00972,0.01259,0.01572,0.02838,,,,,,,0.0096,0.01232,0.01462,0.02491,,,,,,,0.01017,0.01317,0.01663,0.03115,,,,,,,0.00934,0.01173,0.01452,0.02471,,,,,,,0.01147,0.01037,0.00349,0.00363,,,,,,,0.01167,0.01045,0.00351,0.00365,,,,,,,0.01208,0.0106,0.00356,0.0037,,,,,,,0.02024,0.01036,0.00348,0.00362,,,,,,,0.01207,0.01063,0.00356,0.00368,,,,,,,0.01192,0.01046,0.00351,0.00363,,,,,,,0.01645,0.01056,0.00353,0.00365,,,,,,,0.01857,0.00945,0.00349,0.00361,,,,,,,0.0068,0.00491,0.00322,0.00333,,,,,,,0.17024,0.25037,0.35532,1.23054,,,,,,,0.15173,0.22939,0.32973,1.1748,,,,,,,0.16315,0.2531,0.36572,1.3646,,,,,,,0.19174,0.28179,0.39888,1.41916,,,,,,,0.12082,0.20837,0.31351,1.2648,,,,,,,0.12492,0.21256,0.3183,1.28611,,,,,,,0.12209,0.2039,0.30703,1.22529,,,,,,,0.1483,0.22827,0.34463,1.30038,,,,,,,0.10918,0.1789,0.30002,1.12921,,,,, +Pickup,E10,2015,,,0.00128,0.00225,0.00349,0.00739,,,,,,,0.00115,0.00206,0.00317,0.00655,,,,,,,0.00101,0.00217,0.00335,0.00705,,,,,,,0.0013,0.00235,0.00364,0.0078,,,,,,,0.0009,0.00152,0.0023,0.00434,,,,,,,0.00089,0.00163,0.00248,0.00479,,,,,,,0.00083,0.0014,0.0021,0.00391,,,,,,,0.00093,0.00173,0.00264,0.00526,,,,,,,0.00071,0.00133,0.002,0.00373,,,,,,,0.01503,0.01155,0.01238,0.01853,,,,,,,0.01385,0.01072,0.01164,0.01731,,,,,,,0.01406,0.01191,0.01298,0.01995,,,,,,,0.01566,0.01311,0.01424,0.02173,,,,,,,0.01097,0.00973,0.01115,0.0166,,,,,,,0.01147,0.01026,0.01165,0.01751,,,,,,,0.01101,0.00968,0.01111,0.01635,,,,,,,0.01188,0.01049,0.01169,0.01747,,,,,,,0.0089,0.00934,0.01058,0.01524,,,,,,,2.20988,3.99465,5.43701,8.07463,,,,,,,2.22179,4.01555,5.49317,8.07877,,,,,,,2.41633,4.43487,6.2143,9.47883,,,,,,,2.44973,4.75977,6.67892,10.11635,,,,,,,2.1891,4.39723,6.2066,9.19718,,,,,,,2.2712,4.49018,6.35204,9.50604,,,,,,,2.25387,4.52083,6.36443,9.39782,,,,,,,2.29043,4.46132,6.20488,9.23024,,,,,,,2.06139,4.03955,5.56824,8.18043,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.1346,0.16641,0.24871,0.46267,,,,,,,0.134,0.16374,0.24547,0.45687,,,,,,,0.13407,0.17653,0.2631,0.50771,,,,,,,0.14045,0.1882,0.28033,0.53953,,,,,,,0.12341,0.16433,0.24802,0.48761,,,,,,,0.12905,0.17155,0.25804,0.50304,,,,,,,0.12645,0.16611,0.25103,0.48674,,,,,,,0.134,0.18242,0.27299,0.52188,,,,,,,0.09672,0.16332,0.24504,0.46248,,,,,,,0.00251,0.00424,0.00615,0.01177,,,,,,,0.00239,0.00405,0.00585,0.01088,,,,,,,0.00218,0.00413,0.00599,0.01135,,,,,,,0.0025,0.0043,0.00626,0.01212,,,,,,,0.00218,0.00356,0.00504,0.00849,,,,,,,0.00211,0.00362,0.00516,0.00893,,,,,,,0.00208,0.00339,0.00478,0.00797,,,,,,,0.00213,0.00372,0.00532,0.00944,,,,,,,0.00186,0.00328,0.00462,0.00772,,,,,,,0.04631,0.05013,0.05451,0.06761,,,,,,,0.0474,0.05103,0.0551,0.06672,,,,,,,0.05094,0.05528,0.05952,0.07198,,,,,,,0.04349,0.04747,0.05198,0.06572,,,,,,,0.05001,0.0529,0.05612,0.06385,,,,,,,0.04558,0.04881,0.05219,0.0607,,,,,,,0.04572,0.04844,0.05144,0.05853,,,,,,,0.04794,0.05136,0.05491,0.0643,,,,,,,0.0471,0.05007,0.05296,0.05982,,,,,,,0.01014,0.01351,0.01739,0.02897,,,,,,,0.01003,0.01325,0.01685,0.02713,,,,,,,0.01012,0.01397,0.01772,0.02874,,,,,,,0.0098,0.01331,0.0173,0.02946,,,,,,,0.00992,0.01248,0.01533,0.02216,,,,,,,0.00927,0.01212,0.01511,0.02264,,,,,,,0.0092,0.01162,0.01427,0.02054,,,,,,,0.00962,0.01264,0.01578,0.02408,,,,,,,0.00901,0.01164,0.01419,0.02026,,,,,,,0.00833,0.00279,0.00282,0.00311,,,,,,,0.0084,0.00281,0.00284,0.00312,,,,,,,0.00851,0.00285,0.00288,0.00317,,,,,,,0.00832,0.00279,0.00281,0.0031,,,,,,,0.00855,0.00286,0.00287,0.00315,,,,,,,0.00841,0.00281,0.00283,0.0031,,,,,,,0.00849,0.00284,0.00285,0.00312,,,,,,,0.00759,0.00279,0.00281,0.00309,,,,,,,0.00394,0.00258,0.0026,0.00285,,,,,,,0.12353,0.17702,0.29,0.72192,,,,,,,0.11491,0.16616,0.27682,0.69693,,,,,,,0.1197,0.18197,0.30366,0.7682,,,,,,,0.13045,0.19657,0.32478,0.80098,,,,,,,0.09844,0.15906,0.28186,0.72466,,,,,,,0.10006,0.16147,0.28336,0.7259,,,,,,,0.09787,0.15691,0.27799,0.70886,,,,,,,0.1109,0.17464,0.29942,0.75565,,,,,,,0.08985,0.15336,0.27084,0.6876,,,, +Pickup,E10,2020,,,,0.00115,0.00196,0.00278,0.00556,,,,,,,0.00106,0.00179,0.00253,0.005,,,,,,,0.0011,0.00188,0.00267,0.00532,,,,,,,0.00119,0.00203,0.00289,0.00583,,,,,,,0.0008,0.00134,0.00185,0.00347,,,,,,,0.00085,0.00143,0.00199,0.00379,,,,,,,0.00074,0.00123,0.00169,0.00314,,,,,,,0.0009,0.00152,0.00212,0.00409,,,,,,,0.00071,0.00117,0.00161,0.00299,,,,,,,0.01145,0.00983,0.00977,0.01336,,,,,,,0.01034,0.00904,0.00906,0.01243,,,,,,,0.01084,0.01004,0.01008,0.01424,,,,,,,0.01196,0.0111,0.01112,0.01564,,,,,,,0.00753,0.00784,0.00815,0.01171,,,,,,,0.00814,0.00836,0.00864,0.0124,,,,,,,0.00745,0.00777,0.0081,0.01159,,,,,,,0.00894,0.00861,0.00879,0.01243,,,,,,,0.00756,0.00747,0.00772,0.01081,,,,,,,1.80774,2.7961,3.51815,5.41595,,,,,,,1.78859,2.78553,3.51355,5.41323,,,,,,,1.87754,3.07814,3.96495,6.35892,,,,,,,2.01775,3.31666,4.28691,6.8323,,,,,,,1.73861,2.97001,3.83583,6.13895,,,,,,,1.78779,3.0529,3.95738,6.37473,,,,,,,1.79846,3.05696,3.94339,6.29473,,,,,,,1.85337,3.05077,3.89999,6.17588,,,,,,,1.67447,2.73989,3.47141,5.43122,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.09102,0.15014,0.20177,0.28483,,,,,,,0.08957,0.14758,0.1987,0.28046,,,,,,,0.09036,0.15847,0.21197,0.30597,,,,,,,0.09519,0.1696,0.22674,0.32739,,,,,,,0.08026,0.14628,0.19723,0.28718,,,,,,,0.08469,0.15357,0.20662,0.29958,,,,,,,0.08221,0.14839,0.20036,0.28941,,,,,,,0.09308,0.16365,0.21951,0.31452,,,,,,,0.08459,0.1462,0.19659,0.27912,,,,,,,0.00228,0.0037,0.00491,0.00876,,,,,,,0.0022,0.00354,0.00468,0.00822,,,,,,,0.00223,0.00361,0.00478,0.00849,,,,,,,0.00231,0.00374,0.00499,0.00896,,,,,,,0.00196,0.00312,0.00404,0.00679,,,,,,,0.00199,0.00318,0.00414,0.00703,,,,,,,0.00188,0.00297,0.00384,0.00638,,,,,,,0.00204,0.00326,0.00426,0.00732,,,,,,,0.00182,0.00288,0.00371,0.00616,,,,,,,0.04579,0.04893,0.05175,0.06081,,,,,,,0.04696,0.04992,0.05253,0.06079,,,,,,,0.05109,0.05414,0.05685,0.06556,,,,,,,0.04303,0.04624,0.04913,0.05855,,,,,,,0.04954,0.05199,0.05402,0.06016,,,,,,,0.04532,0.04787,0.05001,0.05656,,,,,,,0.04527,0.04759,0.04947,0.05512,,,,,,,0.04774,0.05038,0.05263,0.05962,,,,,,,0.04701,0.04925,0.05106,0.05649,,,,,,,0.00968,0.01246,0.01494,0.02296,,,,,,,0.00965,0.01227,0.01457,0.02189,,,,,,,0.01025,0.01295,0.01535,0.02306,,,,,,,0.00939,0.01222,0.01478,0.02312,,,,,,,0.0095,0.01168,0.01347,0.0189,,,,,,,0.00904,0.01129,0.01318,0.01898,,,,,,,0.00881,0.01086,0.01252,0.01752,,,,,,,0.00944,0.01177,0.01376,0.01994,,,,,,,0.00893,0.01091,0.01251,0.01731,,,,,,,0.00238,0.0024,0.00243,0.00265,,,,,,,0.0024,0.00242,0.00244,0.00266,,,,,,,0.00244,0.00245,0.00248,0.0027,,,,,,,0.00238,0.0024,0.00242,0.00265,,,,,,,0.00244,0.00245,0.00247,0.00268,,,,,,,0.0024,0.00241,0.00243,0.00264,,,,,,,0.00242,0.00243,0.00245,0.00265,,,,,,,0.00239,0.0024,0.00242,0.00263,,,,,,,0.00221,0.00222,0.00223,0.00242,,,,,,,0.10613,0.15012,0.22846,0.54308,,,,,,,0.09752,0.13893,0.21469,0.52368,,,,,,,0.10331,0.15336,0.23717,0.5715,,,,,,,0.11171,0.16649,0.25488,0.59357,,,,,,,0.07974,0.12682,0.20827,0.54088,,,,,,,0.08262,0.13079,0.21213,0.53986,,,,,,,0.07853,0.12388,0.20307,0.52837,,,,,,,0.09362,0.14252,0.22633,0.56366,,,,,,,0.0781,0.12159,0.19912,0.51941,,, +Pickup,E10,2025,,,,,0.00076,0.00126,0.00178,0.00398,,,,,,,0.0007,0.00115,0.00162,0.00359,,,,,,,0.00073,0.00121,0.00171,0.00381,,,,,,,0.00078,0.0013,0.00185,0.00414,,,,,,,0.00053,0.00086,0.00119,0.00253,,,,,,,0.00056,0.00092,0.00128,0.00275,,,,,,,0.00049,0.00079,0.00109,0.00228,,,,,,,0.00059,0.00097,0.00136,0.00296,,,,,,,0.00047,0.00076,0.00104,0.00219,,,,,,,0.00894,0.00705,0.00683,0.01005,,,,,,,0.0078,0.00625,0.00612,0.00918,,,,,,,0.00836,0.00697,0.00682,0.01057,,,,,,,0.00939,0.0078,0.00762,0.01169,,,,,,,0.00486,0.0046,0.00474,0.00806,,,,,,,0.00551,0.00509,0.00518,0.00869,,,,,,,0.00472,0.00449,0.00465,0.00792,,,,,,,0.00633,0.00551,0.00552,0.00886,,,,,,,0.00482,0.00438,0.00449,0.0074,,,,,,,1.18398,1.7428,2.22113,3.72535,,,,,,,1.1395,1.69672,2.17184,3.68152,,,,,,,1.20991,1.88654,2.45982,4.35409,,,,,,,1.31013,2.04967,2.68018,4.70544,,,,,,,1.01572,1.69093,2.22852,4.05968,,,,,,,1.06639,1.76693,2.33344,4.25659,,,,,,,1.04974,1.74207,2.29355,4.16627,,,,,,,1.13273,1.79813,2.33673,4.14545,,,,,,,0.99097,1.5772,2.0348,3.59288,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.05552,0.08396,0.11273,0.19147,,,,,,,0.05378,0.08147,0.10968,0.18734,,,,,,,0.05442,0.08686,0.11631,0.20496,,,,,,,0.05764,0.09329,0.1248,0.22027,,,,,,,0.04515,0.07603,0.10324,0.18744,,,,,,,0.04877,0.08123,0.1098,0.19747,,,,,,,0.04627,0.07731,0.10507,0.1889,,,,,,,0.05383,0.08713,0.11734,0.20752,,,,,,,0.04781,0.07683,0.10401,0.18229,,,,,,,0.00151,0.00239,0.00317,0.00631,,,,,,,0.00145,0.00229,0.00303,0.00595,,,,,,,0.00147,0.00233,0.00309,0.00613,,,,,,,0.00152,0.00241,0.00322,0.00643,,,,,,,0.0013,0.00202,0.00262,0.00495,,,,,,,0.00132,0.00206,0.00268,0.00512,,,,,,,0.00124,0.00192,0.00249,0.00465,,,,,,,0.00135,0.00211,0.00276,0.00532,,,,,,,0.0012,0.00187,0.00241,0.00451,,,,,,,0.04412,0.04607,0.04789,0.05522,,,,,,,0.04537,0.04721,0.04889,0.05565,,,,,,,0.04946,0.05135,0.0531,0.06018,,,,,,,0.04133,0.04332,0.04518,0.05273,,,,,,,0.04816,0.04969,0.05101,0.05618,,,,,,,0.04391,0.04549,0.04688,0.05237,,,,,,,0.04396,0.0454,0.04663,0.05139,,,,,,,0.04629,0.04793,0.04939,0.05519,,,,,,,0.04575,0.04714,0.04832,0.05295,,,,,,,0.0082,0.00992,0.01153,0.01802,,,,,,,0.00824,0.00987,0.01136,0.01734,,,,,,,0.00881,0.01048,0.01204,0.01829,,,,,,,0.00788,0.00964,0.01129,0.01797,,,,,,,0.00828,0.00964,0.0108,0.01538,,,,,,,0.00779,0.00919,0.01042,0.01527,,,,,,,0.00765,0.00892,0.01001,0.01422,,,,,,,0.00815,0.0096,0.0109,0.01603,,,,,,,0.00781,0.00905,0.01009,0.01418,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00198,0.00199,0.002,0.00224,,,,,,,0.00201,0.00202,0.00204,0.00227,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00201,0.00201,0.00202,0.00224,,,,,,,0.00198,0.00198,0.002,0.00222,,,,,,,0.00199,0.002,0.00201,0.00223,,,,,,,0.00196,0.00197,0.00198,0.00221,,,,,,,0.00182,0.00182,0.00183,0.00203,,,,,,,0.08884,0.11605,0.17324,0.46046,,,,,,,0.07969,0.10435,0.15872,0.44123,,,,,,,0.08569,0.11632,0.17708,0.48245,,,,,,,0.0937,0.12765,0.19166,0.49927,,,,,,,0.0593,0.08559,0.14178,0.44597,,,,,,,0.0632,0.09068,0.14726,0.44702,,,,,,,0.0576,0.08195,0.13561,0.43194,,,,,,,0.0732,0.10157,0.16064,0.46764,,,,,,,0.05738,0.0813,0.13472,0.42859,, +Pickup,E10,2030,,,,,,0.00075,0.00125,0.00177,0.00326,,,,,,,0.00069,0.00115,0.00161,0.00294,,,,,,,0.00073,0.0012,0.0017,0.00312,,,,,,,0.00078,0.0013,0.00183,0.00339,,,,,,,0.00053,0.00086,0.00118,0.00208,,,,,,,0.00056,0.00092,0.00127,0.00226,,,,,,,0.00049,0.00079,0.00108,0.00189,,,,,,,0.00059,0.00097,0.00135,0.00243,,,,,,,0.00047,0.00075,0.00104,0.0018,,,,,,,0.00824,0.00631,0.00612,0.00834,,,,,,,0.0071,0.00552,0.00541,0.00748,,,,,,,0.00767,0.00614,0.00603,0.00852,,,,,,,0.00866,0.00691,0.00676,0.00949,,,,,,,0.00413,0.00375,0.0039,0.00593,,,,,,,0.00478,0.00423,0.00434,0.00651,,,,,,,0.00397,0.00363,0.0038,0.0058,,,,,,,0.0056,0.00469,0.00472,0.00686,,,,,,,0.00407,0.00358,0.00371,0.0055,,,,,,,1.04003,1.53051,1.96854,2.92609,,,,,,,0.99,1.4779,1.90991,2.85621,,,,,,,1.05552,1.64452,2.16274,3.34955,,,,,,,1.14572,1.7901,2.35812,3.63606,,,,,,,0.84984,1.43294,1.90946,3.00885,,,,,,,0.90029,1.50612,2.00959,3.17653,,,,,,,0.87756,1.47575,1.96432,3.09091,,,,,,,0.96643,1.54482,2.02794,3.1354,,,,,,,0.83315,1.34237,1.75322,2.69085,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.04478,0.06659,0.09172,0.14345,,,,,,,0.04294,0.06411,0.08868,0.13932,,,,,,,0.04336,0.06786,0.09351,0.15098,,,,,,,0.04592,0.07282,0.10024,0.16221,,,,,,,0.03436,0.05741,0.08088,0.13394,,,,,,,0.03767,0.06195,0.08666,0.14237,,,,,,,0.03525,0.05842,0.08231,0.13525,,,,,,,0.04178,0.06685,0.09306,0.15057,,,,,,,0.03663,0.0586,0.08222,0.13175,,,,,,,0.0015,0.00238,0.00316,0.00522,,,,,,,0.00145,0.00228,0.00301,0.00492,,,,,,,0.00147,0.00232,0.00308,0.00506,,,,,,,0.00152,0.00241,0.0032,0.00532,,,,,,,0.0013,0.00202,0.00261,0.00411,,,,,,,0.00131,0.00205,0.00267,0.00425,,,,,,,0.00124,0.00192,0.00247,0.00387,,,,,,,0.00134,0.0021,0.00275,0.00441,,,,,,,0.0012,0.00186,0.00241,0.00375,,,,,,,0.04411,0.04606,0.04785,0.0527,,,,,,,0.04536,0.0472,0.04886,0.05331,,,,,,,0.04945,0.05134,0.05307,0.05774,,,,,,,0.04132,0.0433,0.04513,0.05015,,,,,,,0.04815,0.04968,0.05098,0.05435,,,,,,,0.04391,0.04549,0.04686,0.05044,,,,,,,0.04395,0.04539,0.04659,0.0497,,,,,,,0.04628,0.04792,0.04937,0.05316,,,,,,,0.04575,0.04714,0.04832,0.05129,,,,,,,0.00819,0.00991,0.0115,0.01579,,,,,,,0.00824,0.00986,0.01133,0.01527,,,,,,,0.0088,0.01047,0.012,0.01614,,,,,,,0.00787,0.00963,0.01125,0.01568,,,,,,,0.00828,0.00963,0.01078,0.01376,,,,,,,0.00779,0.00919,0.0104,0.01357,,,,,,,0.00764,0.00892,0.00998,0.01273,,,,,,,0.00815,0.0096,0.01088,0.01423,,,,,,,0.00781,0.00904,0.01009,0.01272,,,,,,,0.0018,0.00182,0.00184,0.002,,,,,,,0.00181,0.00183,0.00185,0.002,,,,,,,0.00184,0.00185,0.00188,0.00204,,,,,,,0.0018,0.00181,0.00184,0.00199,,,,,,,0.00184,0.00185,0.00187,0.00201,,,,,,,0.00181,0.00182,0.00184,0.00198,,,,,,,0.00182,0.00183,0.00185,0.00199,,,,,,,0.0018,0.00181,0.00183,0.00197,,,,,,,0.00166,0.00167,0.00169,0.00182,,,,,,,0.08409,0.1078,0.16182,0.40709,,,,,,,0.07489,0.09611,0.14725,0.38716,,,,,,,0.08085,0.10729,0.16453,0.42266,,,,,,,0.08871,0.11809,0.17818,0.43748,,,,,,,0.0541,0.07606,0.12816,0.38111,,,,,,,0.05813,0.08124,0.13378,0.38345,,,,,,,0.05232,0.07237,0.12184,0.36672,,,,,,,0.06785,0.0921,0.14704,0.40446,,,,,,,0.05204,0.07202,0.12166,0.36714, +Pickup,E10,2035,,,,,,,0.00075,0.00124,0.00177,0.00301,,,,,,,0.00069,0.00114,0.00162,0.00272,,,,,,,0.00072,0.0012,0.0017,0.00288,,,,,,,0.00078,0.00128,0.00184,0.00313,,,,,,,0.00053,0.00085,0.00118,0.00193,,,,,,,0.00056,0.00091,0.00127,0.00209,,,,,,,0.00049,0.00078,0.00108,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00224,,,,,,,0.00047,0.00075,0.00104,0.00166,,,,,,,0.00821,0.00631,0.00611,0.00772,,,,,,,0.00708,0.00552,0.00541,0.00685,,,,,,,0.00765,0.00615,0.00602,0.00774,,,,,,,0.00864,0.00692,0.00675,0.00865,,,,,,,0.00412,0.00375,0.0039,0.00512,,,,,,,0.00477,0.00423,0.00433,0.00568,,,,,,,0.00397,0.00363,0.0038,0.00499,,,,,,,0.00559,0.00469,0.00472,0.0061,,,,,,,0.00406,0.00358,0.00371,0.00479,,,,,,,1.03716,1.52885,1.96803,2.65465,,,,,,,0.9873,1.47547,1.91,2.57555,,,,,,,1.05245,1.64125,2.16316,2.9991,,,,,,,1.14221,1.78486,2.35962,3.2623,,,,,,,0.84751,1.42772,1.91153,2.64262,,,,,,,0.89776,1.50092,2.01154,2.79826,,,,,,,0.87517,1.47017,1.96657,2.71624,,,,,,,0.96377,1.54122,2.02879,2.78535,,,,,,,0.83114,1.34091,1.75303,2.38043,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04463,0.06637,0.09175,0.12553,,,,,,,0.04279,0.0639,0.08872,0.12139,,,,,,,0.0432,0.06762,0.09356,0.13038,,,,,,,0.04576,0.07253,0.10031,0.13994,,,,,,,0.03426,0.05723,0.08091,0.11349,,,,,,,0.03755,0.06175,0.08669,0.12126,,,,,,,0.03514,0.05821,0.08236,0.11482,,,,,,,0.04165,0.06668,0.09307,0.12892,,,,,,,0.03653,0.05851,0.08219,0.11276,,,,,,,0.0015,0.00237,0.00316,0.00483,,,,,,,0.00144,0.00227,0.00302,0.00456,,,,,,,0.00147,0.00231,0.00308,0.00469,,,,,,,0.00151,0.00239,0.00321,0.00493,,,,,,,0.00129,0.00201,0.00262,0.00382,,,,,,,0.00131,0.00204,0.00268,0.00394,,,,,,,0.00123,0.00191,0.00248,0.0036,,,,,,,0.00134,0.0021,0.00275,0.00409,,,,,,,0.0012,0.00186,0.00241,0.00347,,,,,,,0.0441,0.04603,0.04786,0.05182,,,,,,,0.04535,0.04717,0.04887,0.0525,,,,,,,0.04944,0.05131,0.05308,0.05689,,,,,,,0.04131,0.04326,0.04515,0.04926,,,,,,,0.04814,0.04966,0.05099,0.05371,,,,,,,0.0439,0.04546,0.04687,0.04977,,,,,,,0.04395,0.04537,0.04661,0.04911,,,,,,,0.04627,0.0479,0.04938,0.05245,,,,,,,0.04574,0.04713,0.04832,0.0507,,,,,,,0.00818,0.00989,0.01151,0.01501,,,,,,,0.00823,0.00983,0.01134,0.01455,,,,,,,0.00879,0.01045,0.01202,0.01539,,,,,,,0.00786,0.00959,0.01127,0.0149,,,,,,,0.00827,0.00961,0.01079,0.01319,,,,,,,0.00778,0.00917,0.01041,0.01297,,,,,,,0.00764,0.00889,0.00999,0.01221,,,,,,,0.00814,0.00958,0.01088,0.0136,,,,,,,0.00781,0.00904,0.01009,0.0122,,,,,,,0.0018,0.00182,0.00184,0.00192,,,,,,,0.00181,0.00183,0.00185,0.00192,,,,,,,0.00184,0.00185,0.00188,0.00195,,,,,,,0.0018,0.00181,0.00184,0.00191,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00181,0.00182,0.00184,0.0019,,,,,,,0.00182,0.00183,0.00185,0.00191,,,,,,,0.0018,0.00181,0.00183,0.0019,,,,,,,0.00166,0.00167,0.00169,0.00175,,,,,,,0.08379,0.10772,0.16167,0.38733,,,,,,,0.07462,0.09603,0.14712,0.36711,,,,,,,0.08056,0.10724,0.16435,0.4001,,,,,,,0.08837,0.11789,0.17807,0.41418,,,,,,,0.05389,0.07585,0.12814,0.35668,,,,,,,0.05792,0.08106,0.13373,0.35939,,,,,,,0.05212,0.07213,0.12185,0.34223,,,,,,,0.06756,0.09168,0.14722,0.38063,,,,,,,0.05187,0.07191,0.12158,0.34424 +Pickup,E10,2040,,,,,,,,0.00075,0.00125,0.00178,,,,,,,,0.00069,0.00114,0.00162,,,,,,,,0.00072,0.0012,0.00171,,,,,,,,0.00077,0.00129,0.00185,,,,,,,,0.00052,0.00085,0.00119,,,,,,,,0.00055,0.00091,0.00128,,,,,,,,0.00048,0.00078,0.00109,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00822,0.0063,0.00611,,,,,,,,0.00708,0.00551,0.0054,,,,,,,,0.00766,0.00614,0.00602,,,,,,,,0.00865,0.00691,0.00675,,,,,,,,0.00412,0.00375,0.0039,,,,,,,,0.00478,0.00422,0.00433,,,,,,,,0.00396,0.00363,0.0038,,,,,,,,0.00559,0.00469,0.00471,,,,,,,,0.00406,0.00357,0.0037,,,,,,,,1.03644,1.52849,1.96794,,,,,,,,0.98602,1.47553,1.91046,,,,,,,,1.05112,1.64166,2.16419,,,,,,,,1.13988,1.78611,2.36203,,,,,,,,0.84451,1.42926,1.91398,,,,,,,,0.89492,1.50241,2.01398,,,,,,,,0.87196,1.47185,1.96923,,,,,,,,0.9617,1.54187,2.03004,,,,,,,,0.8301,1.34068,1.75287,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04448,0.06639,0.09181,,,,,,,,0.04266,0.06391,0.08876,,,,,,,,0.04306,0.06765,0.09363,,,,,,,,0.04558,0.07257,0.10041,,,,,,,,0.03415,0.05724,0.08094,,,,,,,,0.03744,0.06177,0.08674,,,,,,,,0.03501,0.05823,0.08242,,,,,,,,0.04154,0.06668,0.09309,,,,,,,,0.03648,0.05847,0.08216,,,,,,,,0.00149,0.00237,0.00317,,,,,,,,0.00144,0.00228,0.00302,,,,,,,,0.00146,0.00232,0.00309,,,,,,,,0.0015,0.0024,0.00322,,,,,,,,0.00129,0.00201,0.00262,,,,,,,,0.0013,0.00205,0.00268,,,,,,,,0.00123,0.00191,0.00249,,,,,,,,0.00133,0.0021,0.00276,,,,,,,,0.0012,0.00186,0.00241,,,,,,,,0.04408,0.04604,0.04788,,,,,,,,0.04534,0.04718,0.04888,,,,,,,,0.04942,0.05132,0.0531,,,,,,,,0.04128,0.04328,0.04518,,,,,,,,0.04813,0.04966,0.051,,,,,,,,0.04388,0.04547,0.04688,,,,,,,,0.04393,0.04538,0.04662,,,,,,,,0.04626,0.04791,0.04938,,,,,,,,0.04574,0.04713,0.04832,,,,,,,,0.00817,0.00989,0.01152,,,,,,,,0.00821,0.00984,0.01135,,,,,,,,0.00878,0.01046,0.01203,,,,,,,,0.00784,0.00961,0.01129,,,,,,,,0.00826,0.00962,0.0108,,,,,,,,0.00777,0.00917,0.01042,,,,,,,,0.00762,0.0089,0.01,,,,,,,,0.00813,0.00959,0.01089,,,,,,,,0.0078,0.00904,0.01009,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00181,0.00183,0.00185,,,,,,,,0.00184,0.00185,0.00188,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00181,0.00182,0.00184,,,,,,,,0.00182,0.00183,0.00185,,,,,,,,0.0018,0.00181,0.00183,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.08378,0.10766,0.16165,,,,,,,,0.0746,0.09598,0.14711,,,,,,,,0.08058,0.10717,0.16434,,,,,,,,0.0883,0.11788,0.17816,,,,,,,,0.05379,0.07589,0.12827,,,,,,,,0.05784,0.08108,0.13384,,,,,,,,0.052,0.07219,0.122,,,,,,,,0.06733,0.09193,0.14743,,,,,,,,0.05183,0.0719,0.12162 +Pickup,E10,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00115,,,,,,,,,0.00072,0.0012,,,,,,,,,0.00077,0.00129,,,,,,,,,0.00052,0.00086,,,,,,,,,0.00056,0.00092,,,,,,,,,0.00048,0.00079,,,,,,,,,0.00059,0.00097,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00821,0.0063,,,,,,,,,0.00707,0.00551,,,,,,,,,0.00765,0.00613,,,,,,,,,0.00864,0.0069,,,,,,,,,0.00412,0.00374,,,,,,,,,0.00477,0.00422,,,,,,,,,0.00396,0.00363,,,,,,,,,0.00558,0.00468,,,,,,,,,0.00405,0.00357,,,,,,,,,1.03629,1.52874,,,,,,,,,0.98618,1.47623,,,,,,,,,1.05127,1.64267,,,,,,,,,1.14045,1.78812,,,,,,,,,0.84562,1.43146,,,,,,,,,0.89592,1.50455,,,,,,,,,0.87316,1.47423,,,,,,,,,0.96228,1.54316,,,,,,,,,0.83028,1.34093,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04452,0.06646,,,,,,,,,0.04269,0.06398,,,,,,,,,0.04309,0.06772,,,,,,,,,0.04563,0.07267,,,,,,,,,0.03418,0.0573,,,,,,,,,0.03746,0.06183,,,,,,,,,0.03505,0.0583,,,,,,,,,0.04156,0.06672,,,,,,,,,0.03648,0.05848,,,,,,,,,0.00149,0.00238,,,,,,,,,0.00144,0.00228,,,,,,,,,0.00146,0.00232,,,,,,,,,0.00151,0.00241,,,,,,,,,0.00129,0.00202,,,,,,,,,0.00131,0.00205,,,,,,,,,0.00123,0.00192,,,,,,,,,0.00134,0.0021,,,,,,,,,0.0012,0.00186,,,,,,,,,0.04409,0.04605,,,,,,,,,0.04534,0.04719,,,,,,,,,0.04943,0.05133,,,,,,,,,0.04129,0.04329,,,,,,,,,0.04814,0.04967,,,,,,,,,0.04389,0.04548,,,,,,,,,0.04394,0.04539,,,,,,,,,0.04627,0.04792,,,,,,,,,0.04574,0.04713,,,,,,,,,0.00817,0.00991,,,,,,,,,0.00822,0.00985,,,,,,,,,0.00878,0.01047,,,,,,,,,0.00785,0.00962,,,,,,,,,0.00826,0.00962,,,,,,,,,0.00777,0.00918,,,,,,,,,0.00763,0.00891,,,,,,,,,0.00813,0.00959,,,,,,,,,0.0078,0.00904,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00181,0.00183,,,,,,,,,0.00184,0.00185,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00181,0.00182,,,,,,,,,0.00182,0.00183,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00166,0.00167,,,,,,,,,0.08373,0.10763,,,,,,,,,0.07456,0.09596,,,,,,,,,0.08052,0.10713,,,,,,,,,0.08827,0.11791,,,,,,,,,0.05381,0.07595,,,,,,,,,0.05785,0.08112,,,,,,,,,0.05203,0.07227,,,,,,,,,0.06747,0.09201,,,,,,,,,0.05181,0.07191 +Pickup,E10,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00072,,,,,,,,,,0.00078,,,,,,,,,,0.00053,,,,,,,,,,0.00056,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.00046,,,,,,,,,,0.0082,,,,,,,,,,0.00707,,,,,,,,,,0.00764,,,,,,,,,,0.00863,,,,,,,,,,0.00411,,,,,,,,,,0.00476,,,,,,,,,,0.00396,,,,,,,,,,0.00558,,,,,,,,,,0.00405,,,,,,,,,,1.03626,,,,,,,,,,0.98648,,,,,,,,,,1.05157,,,,,,,,,,1.14126,,,,,,,,,,0.84688,,,,,,,,,,0.89708,,,,,,,,,,0.87452,,,,,,,,,,0.963,,,,,,,,,,0.83048,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.04457,,,,,,,,,,0.04274,,,,,,,,,,0.04315,,,,,,,,,,0.04571,,,,,,,,,,0.03421,,,,,,,,,,0.03751,,,,,,,,,,0.0351,,,,,,,,,,0.0416,,,,,,,,,,0.03649,,,,,,,,,,0.0015,,,,,,,,,,0.00144,,,,,,,,,,0.00146,,,,,,,,,,0.00151,,,,,,,,,,0.00129,,,,,,,,,,0.00131,,,,,,,,,,0.00123,,,,,,,,,,0.00134,,,,,,,,,,0.0012,,,,,,,,,,0.0441,,,,,,,,,,0.04535,,,,,,,,,,0.04944,,,,,,,,,,0.0413,,,,,,,,,,0.04814,,,,,,,,,,0.0439,,,,,,,,,,0.04395,,,,,,,,,,0.04627,,,,,,,,,,0.04574,,,,,,,,,,0.00818,,,,,,,,,,0.00823,,,,,,,,,,0.00879,,,,,,,,,,0.00786,,,,,,,,,,0.00827,,,,,,,,,,0.00778,,,,,,,,,,0.00764,,,,,,,,,,0.00814,,,,,,,,,,0.0078,,,,,,,,,,0.0018,,,,,,,,,,0.00181,,,,,,,,,,0.00184,,,,,,,,,,0.0018,,,,,,,,,,0.00184,,,,,,,,,,0.00181,,,,,,,,,,0.00182,,,,,,,,,,0.0018,,,,,,,,,,0.00166,,,,,,,,,,0.0837,,,,,,,,,,0.07455,,,,,,,,,,0.08049,,,,,,,,,,0.08828,,,,,,,,,,0.05385,,,,,,,,,,0.05787,,,,,,,,,,0.05208,,,,,,,,,,0.06753,,,,,,,,,,0.05182 +Pickup,E15,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.12065,,,,,,,,,,0.10162,,,,,,,,,,0.13541,,,,,,,,,,0.14182,,,,,,,,,,0.11558,,,,,,,,,,0.12745,,,,,,,,,,0.11645,,,,,,,,,,0.11186,,,,,,,,,,0.0861,,,,,,,,,,59.59238,,,,,,,,,,53.45102,,,,,,,,,,68.40019,,,,,,,,,,71.15177,,,,,,,,,,62.01726,,,,,,,,,,67.54108,,,,,,,,,,63.84635,,,,,,,,,,60.29827,,,,,,,,,,48.25039,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.67638,,,,,,,,,,5.32777,,,,,,,,,,5.89604,,,,,,,,,,6.28535,,,,,,,,,,5.8091,,,,,,,,,,6.08587,,,,,,,,,,5.82808,,,,,,,,,,6.14781,,,,,,,,,,5.10341,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02918,,,,,,,,,,0.03291,,,,,,,,,,0.04674,,,,,,,,,,0.04285,,,,,,,,,,0.03814,,,,,,,,,,0.04203,,,,,,,,,,0.03825,,,,,,,,,,0.03781,,,,,,,,,,0.01784,,,,,,,,,,4.65991,,,,,,,,,,4.17681,,,,,,,,,,5.28432,,,,,,,,,,5.49861,,,,,,,,,,5.12669,,,,,,,,,,5.34065,,,,,,,,,,5.15853,,,,,,,,,,4.96051,,,,,,,,,,3.95279,,,,,,,,, +Pickup,E15,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.08258,0.09566,,,,,,,,,0.07687,0.08214,,,,,,,,,0.09541,0.1051,,,,,,,,,0.09851,0.11569,,,,,,,,,0.08436,0.09869,,,,,,,,,0.09003,0.1066,,,,,,,,,0.08421,0.09726,,,,,,,,,0.08236,0.09265,,,,,,,,,0.06672,0.06853,,,,,,,,,27.87856,39.02577,,,,,,,,,27.24741,36.0603,,,,,,,,,32.86673,44.83978,,,,,,,,,34.42847,47.97397,,,,,,,,,30.47994,42.13867,,,,,,,,,32.57638,45.61889,,,,,,,,,31.37145,43.51357,,,,,,,,,30.09137,42.19543,,,,,,,,,24.19631,33.19909,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.6664,5.66445,,,,,,,,,4.58673,5.3417,,,,,,,,,4.95732,5.81974,,,,,,,,,5.1898,6.32021,,,,,,,,,4.86879,5.90005,,,,,,,,,5.06929,6.13387,,,,,,,,,4.93364,5.91427,,,,,,,,,5.1693,6.18841,,,,,,,,,4.35748,5.12875,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02281,0.01172,,,,,,,,,0.02589,0.01188,,,,,,,,,0.03693,0.0123,,,,,,,,,0.03357,0.02056,,,,,,,,,0.03039,0.01212,,,,,,,,,0.03326,0.01201,,,,,,,,,0.03043,0.01648,,,,,,,,,0.0299,0.01874,,,,,,,,,0.01406,0.00689,,,,,,,,,3.22511,4.07292,,,,,,,,,3.11826,3.74208,,,,,,,,,3.75479,4.53079,,,,,,,,,3.84111,4.87321,,,,,,,,,3.62314,4.71745,,,,,,,,,3.71396,4.82907,,,,,,,,,3.61873,4.65989,,,,,,,,,3.55848,4.50338,,,,,,,,,2.92715,3.53898,,,,,,,, +Pickup,E15,2000,0.00678,0.00997,0.02284,,,,,,,,0.00583,0.00855,0.01949,,,,,,,,0.00656,0.00964,0.0222,,,,,,,,0.00726,0.0107,0.02477,,,,,,,,0.00328,0.00477,0.01066,,,,,,,,0.00387,0.00564,0.0133,,,,,,,,0.00314,0.00456,0.01009,,,,,,,,0.00452,0.00661,0.01496,,,,,,,,0.00316,0.00458,0.01006,,,,,,,,0.04666,0.06942,0.09406,,,,,,,,0.04383,0.06659,0.08351,,,,,,,,0.05448,0.07808,0.10576,,,,,,,,0.05611,0.08266,0.10974,,,,,,,,0.04123,0.069,0.09537,,,,,,,,0.04492,0.07237,0.09994,,,,,,,,0.04076,0.06797,0.09013,,,,,,,,0.04369,0.0681,0.0881,,,,,,,,0.03483,0.05686,0.06904,,,,,,,,8.59577,13.80621,25.42879,,,,,,,,8.40494,13.67133,23.31772,,,,,,,,10.33208,16.59557,29.83902,,,,,,,,10.71726,17.14071,30.23553,,,,,,,,8.34909,14.54229,26.84265,,,,,,,,9.06002,15.50459,28.7891,,,,,,,,8.49084,14.84126,26.58304,,,,,,,,8.75648,15.02741,26.21991,,,,,,,,7.00193,12.67493,21.07122,,,,,,,,519.42675,524.09096,527.02867,,,,,,,,523.65108,528.00485,529.98667,,,,,,,,531.22032,535.80276,538.31103,,,,,,,,518.7679,523.30119,525.70058,,,,,,,,532.49042,535.74026,534.49675,,,,,,,,523.68493,527.25523,528.67382,,,,,,,,528.32762,531.44913,529.72438,,,,,,,,528.27961,532.00795,532.13864,,,,,,,,520.52036,523.96225,523.681,,,,,,,,0.05098,0.05676,0.08712,,,,,,,,0.05115,0.05691,0.08721,,,,,,,,0.05222,0.058,0.08859,,,,,,,,0.04982,0.05553,0.08539,,,,,,,,0.05194,0.0577,0.08819,,,,,,,,0.05058,0.05629,0.08637,,,,,,,,0.05098,0.05675,0.08704,,,,,,,,0.0516,0.05739,0.08788,,,,,,,,0.05194,0.05779,0.08855,,,,,,,,0.06211,0.08109,0.08468,,,,,,,,0.06218,0.08118,0.08476,,,,,,,,0.06216,0.08115,0.0847,,,,,,,,0.06184,0.08074,0.08437,,,,,,,,0.06211,0.08108,0.08464,,,,,,,,0.0619,0.08082,0.08441,,,,,,,,0.06206,0.08103,0.08462,,,,,,,,0.0622,0.08121,0.08478,,,,,,,,0.06233,0.08139,0.08495,,,,,,,,1.68898,2.38865,3.99568,,,,,,,,1.65357,2.36648,3.78631,,,,,,,,1.91637,2.61527,4.26287,,,,,,,,1.97177,2.75259,4.37505,,,,,,,,1.83094,2.58524,4.2534,,,,,,,,1.90187,2.64699,4.33135,,,,,,,,1.85911,2.62331,4.11499,,,,,,,,1.94761,2.72841,4.31954,,,,,,,,1.65012,2.35186,3.6239,,,,,,,,0.01478,0.02069,0.04094,,,,,,,,0.01296,0.01811,0.03568,,,,,,,,0.01413,0.01978,0.03945,,,,,,,,0.0154,0.0216,0.04334,,,,,,,,0.00785,0.0109,0.02112,,,,,,,,0.00902,0.01256,0.02552,,,,,,,,0.00767,0.01064,0.02045,,,,,,,,0.01034,0.01442,0.02822,,,,,,,,0.00781,0.01083,0.02057,,,,,,,,0.0726,0.08533,0.13153,,,,,,,,0.07004,0.08102,0.12091,,,,,,,,0.07691,0.08889,0.1338,,,,,,,,0.07147,0.0849,0.13452,,,,,,,,0.06212,0.06846,0.09124,,,,,,,,0.06043,0.06778,0.09703,,,,,,,,0.05763,0.06384,0.08552,,,,,,,,0.06558,0.07426,0.10523,,,,,,,,0.05958,0.06591,0.08744,,,,,,,,0.0334,0.04466,0.08553,,,,,,,,0.03007,0.03979,0.07507,,,,,,,,0.0331,0.0437,0.08343,,,,,,,,0.03455,0.04644,0.09033,,,,,,,,0.02063,0.02625,0.04641,,,,,,,,0.02241,0.02891,0.05464,,,,,,,,0.01974,0.02524,0.04442,,,,,,,,0.02522,0.0329,0.0603,,,,,,,,0.02005,0.02566,0.0447,,,,,,,,0.02439,0.01184,0.01072,,,,,,,,0.02773,0.01204,0.01078,,,,,,,,0.03954,0.01246,0.01095,,,,,,,,0.036,0.02087,0.01069,,,,,,,,0.0327,0.01239,0.01087,,,,,,,,0.03579,0.01225,0.01075,,,,,,,,0.0328,0.01687,0.01077,,,,,,,,0.0321,0.0191,0.0097,,,,,,,,0.01508,0.007,0.00504,,,,,,,,1.10156,1.83782,3.30219,,,,,,,,1.08213,1.8141,3.02223,,,,,,,,1.30177,2.09502,3.73038,,,,,,,,1.34769,2.20316,3.83672,,,,,,,,1.14073,2.01504,3.69944,,,,,,,,1.1838,2.05474,3.82289,,,,,,,,1.13686,1.98429,3.53952,,,,,,,,1.19425,2.00379,3.47845,,,,,,,,0.9625,1.68027,2.78972,,,,,,, +Pickup,E15,2005,0.00224,0.00371,0.00548,0.01393,,,,,,,0.00201,0.00319,0.0047,0.01197,,,,,,,0.00247,0.00285,0.00417,0.01341,,,,,,,0.00259,0.00381,0.00565,0.01496,,,,,,,0.00129,0.00208,0.00304,0.00685,,,,,,,0.00152,0.00213,0.00313,0.00799,,,,,,,0.00123,0.00189,0.00275,0.00633,,,,,,,0.00168,0.00238,0.00348,0.0092,,,,,,,0.00109,0.00162,0.00233,0.00617,,,,,,,0.02784,0.02128,0.02252,0.05038,,,,,,,0.02563,0.01928,0.02097,0.04585,,,,,,,0.02904,0.02104,0.02287,0.05848,,,,,,,0.02944,0.02457,0.02496,0.06071,,,,,,,0.01845,0.0161,0.01855,0.04944,,,,,,,0.02058,0.01714,0.01968,0.05264,,,,,,,0.01773,0.01659,0.01808,0.04679,,,,,,,0.02212,0.0186,0.01914,0.04835,,,,,,,0.01469,0.01239,0.01402,0.03844,,,,,,,4.4151,6.66009,8.6055,15.27794,,,,,,,4.33412,6.60611,8.69689,14.68121,,,,,,,4.84393,7.77284,10.37328,17.95611,,,,,,,4.97685,8.44323,10.41162,18.77986,,,,,,,4.40055,7.19572,9.71333,16.65928,,,,,,,4.55213,7.49856,10.25832,17.36852,,,,,,,4.50383,7.74561,9.79538,16.72235,,,,,,,4.60901,7.99681,9.76447,16.7489,,,,,,,3.63511,6.67418,8.76272,14.44939,,,,,,,544.39318,547.03541,552.96372,553.50631,,,,,,,549.15818,551.61044,557.11807,556.71381,,,,,,,556.66504,559.24687,565.03727,565.17411,,,,,,,544.08328,546.6066,552.40283,552.59409,,,,,,,559.60243,561.37696,565.41325,561.80501,,,,,,,550.23082,552.20635,558.50072,553.97491,,,,,,,555.6476,557.33996,561.20779,557.21621,,,,,,,554.72399,556.7937,561.46575,559.22916,,,,,,,546.751,548.70275,552.97175,550.06822,,,,,,,0.01007,0.0108,0.01272,0.04015,,,,,,,0.01009,0.01082,0.01273,0.04016,,,,,,,0.01026,0.01099,0.01291,0.04072,,,,,,,0.00986,0.01058,0.01248,0.0394,,,,,,,0.01021,0.01094,0.01286,0.04055,,,,,,,0.00998,0.01071,0.01261,0.03976,,,,,,,0.01006,0.01079,0.01271,0.0401,,,,,,,0.01017,0.0109,0.01282,0.04045,,,,,,,0.01024,0.01098,0.01293,0.04078,,,,,,,0.02495,0.0287,0.03537,0.05091,,,,,,,0.02498,0.02873,0.03541,0.05096,,,,,,,0.02497,0.02872,0.0354,0.05094,,,,,,,0.02485,0.02858,0.03522,0.05071,,,,,,,0.02495,0.0287,0.03537,0.0509,,,,,,,0.02488,0.02861,0.03525,0.05075,,,,,,,0.02494,0.02868,0.03535,0.05088,,,,,,,0.02499,0.02874,0.03542,0.05098,,,,,,,0.02504,0.0288,0.0355,0.05109,,,,,,,0.62564,0.99522,1.29585,1.98078,,,,,,,0.61402,0.97385,1.29323,1.91655,,,,,,,0.66538,1.07873,1.41171,2.1752,,,,,,,0.66465,1.18569,1.47516,2.26824,,,,,,,0.62303,1.04246,1.37897,2.15195,,,,,,,0.6449,1.07929,1.41423,2.19415,,,,,,,0.63308,1.09505,1.37762,2.10288,,,,,,,0.67963,1.13893,1.40583,2.21675,,,,,,,0.53278,0.76137,1.00009,1.91448,,,,,,,0.00504,0.00812,0.01102,0.02474,,,,,,,0.00462,0.00723,0.0098,0.0218,,,,,,,0.00534,0.0067,0.00903,0.0237,,,,,,,0.00552,0.00818,0.01113,0.02588,,,,,,,0.00324,0.00511,0.00696,0.01373,,,,,,,0.00364,0.00523,0.00715,0.01551,,,,,,,0.00315,0.00482,0.00654,0.01308,,,,,,,0.00398,0.00575,0.00777,0.01747,,,,,,,0.00291,0.00437,0.00588,0.01294,,,,,,,0.05163,0.05814,0.06469,0.09556,,,,,,,0.05211,0.05754,0.06329,0.09019,,,,,,,0.05783,0.0604,0.06557,0.09875,,,,,,,0.04999,0.05557,0.06218,0.09559,,,,,,,0.05228,0.0561,0.06012,0.07502,,,,,,,0.04887,0.05207,0.05643,0.07479,,,,,,,0.04801,0.05141,0.05508,0.06939,,,,,,,0.0519,0.05553,0.05992,0.08152,,,,,,,0.04928,0.05222,0.05543,0.0709,,,,,,,0.01483,0.02059,0.02639,0.05371,,,,,,,0.01419,0.01901,0.02409,0.04789,,,,,,,0.01621,0.01849,0.02306,0.05241,,,,,,,0.01554,0.02048,0.02633,0.05588,,,,,,,0.01192,0.01531,0.01886,0.03205,,,,,,,0.01217,0.015,0.01872,0.0351,,,,,,,0.01122,0.01423,0.01748,0.03015,,,,,,,0.01311,0.01632,0.02021,0.03932,,,,,,,0.01093,0.01353,0.01637,0.03006,,,,,,,0.02556,0.01236,0.01125,0.00375,,,,,,,0.02907,0.01257,0.01133,0.00377,,,,,,,0.04144,0.01301,0.01149,0.00383,,,,,,,0.03776,0.02181,0.01124,0.00375,,,,,,,0.03437,0.01298,0.0115,0.00381,,,,,,,0.0376,0.01283,0.01136,0.00376,,,,,,,0.03449,0.0177,0.01141,0.00378,,,,,,,0.03369,0.01999,0.01023,0.00374,,,,,,,0.01583,0.00732,0.00532,0.00345,,,,,,,0.43447,0.531,0.7254,1.8609,,,,,,,0.41218,0.50223,0.69293,1.7482,,,,,,,0.46788,0.54718,0.75455,2.122,,,,,,,0.47923,0.62123,0.81272,2.18144,,,,,,,0.35141,0.47581,0.6755,1.99324,,,,,,,0.37296,0.48802,0.70705,2.03795,,,,,,,0.34265,0.4805,0.65593,1.9116,,,,,,,0.40921,0.53849,0.71204,1.98032,,,,,,,0.29202,0.39475,0.55528,1.6373,,,,,, +Pickup,E15,2010,,0.00166,0.00295,0.00438,0.01081,,,,,,,0.00145,0.00257,0.00387,0.00937,,,,,,,0.00128,0.00225,0.0042,0.01036,,,,,,,0.00171,0.00305,0.00465,0.01154,,,,,,,0.00105,0.00182,0.00257,0.00565,,,,,,,0.00105,0.00182,0.00283,0.00645,,,,,,,0.00096,0.00165,0.00231,0.00512,,,,,,,0.00112,0.00197,0.00309,0.00726,,,,,,,0.00081,0.00139,0.00217,0.00488,,,,,,,0.02001,0.01826,0.01552,0.03279,,,,,,,0.01761,0.01677,0.0142,0.03035,,,,,,,0.01849,0.01845,0.016,0.03709,,,,,,,0.02239,0.02068,0.01769,0.03936,,,,,,,0.01324,0.01522,0.01264,0.03059,,,,,,,0.01392,0.01589,0.01329,0.03253,,,,,,,0.0136,0.01497,0.01242,0.0293,,,,,,,0.01584,0.01541,0.01359,0.03101,,,,,,,0.01051,0.01125,0.01171,0.02544,,,,,,,2.95326,4.7524,6.25649,10.91147,,,,,,,2.84207,4.75451,6.20872,10.73036,,,,,,,3.26228,5.54729,7.03116,12.98077,,,,,,,3.5068,5.61418,7.56137,13.75476,,,,,,,2.70871,5.01628,6.69247,12.12347,,,,,,,2.87181,5.34479,6.89196,12.64055,,,,,,,2.91924,5.09833,6.84483,12.25959,,,,,,,3.18676,5.16194,6.88171,12.28225,,,,,,,2.60163,4.58049,6.15705,10.73228,,,,,,,516.83349,519.09937,523.84119,544.87964,,,,,,,521.37604,523.34975,527.61558,547.87014,,,,,,,528.50488,530.63568,535.19412,556.21225,,,,,,,516.51536,518.67635,523.2822,544.06459,,,,,,,531.33983,532.31245,534.9316,552.33741,,,,,,,522.44566,525.43011,526.8089,544.88158,,,,,,,527.59534,528.46326,530.90767,547.87909,,,,,,,526.68943,528.09633,531.42638,550.05078,,,,,,,519.14926,520.34582,523.24418,540.82102,,,,,,,0.00953,0.01073,0.01287,0.02506,,,,,,,0.00954,0.01074,0.01288,0.02505,,,,,,,0.00971,0.01092,0.01306,0.02537,,,,,,,0.00933,0.01052,0.01263,0.02461,,,,,,,0.00966,0.01087,0.013,0.02527,,,,,,,0.00944,0.01064,0.01275,0.02481,,,,,,,0.00952,0.01072,0.01286,0.02502,,,,,,,0.00962,0.01083,0.01297,0.02522,,,,,,,0.00969,0.01091,0.01307,0.02543,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.0188,0.02173,0.02737,0.03605,,,,,,,0.0188,0.02172,0.02737,0.03604,,,,,,,0.0187,0.02161,0.02723,0.03586,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.01872,0.02163,0.02725,0.03589,,,,,,,0.01877,0.02169,0.02732,0.03598,,,,,,,0.01881,0.02173,0.02738,0.03606,,,,,,,0.01885,0.02178,0.02744,0.03614,,,,,,,0.2189,0.35561,0.32344,1.00662,,,,,,,0.21138,0.3537,0.31973,0.98852,,,,,,,0.21828,0.38094,0.34236,1.12858,,,,,,,0.23604,0.40051,0.36087,1.18948,,,,,,,0.20437,0.36567,0.3257,1.1077,,,,,,,0.21132,0.37825,0.33621,1.1332,,,,,,,0.21483,0.36779,0.32837,1.08977,,,,,,,0.23074,0.37961,0.35579,1.1482,,,,,,,0.15716,0.26798,0.32114,1.00035,,,,,,,0.00301,0.00509,0.00712,0.01775,,,,,,,0.00281,0.00473,0.00664,0.01592,,,,,,,0.00256,0.00429,0.00692,0.01704,,,,,,,0.00303,0.00513,0.00734,0.01846,,,,,,,0.00246,0.00407,0.00541,0.011,,,,,,,0.0024,0.00395,0.00562,0.01201,,,,,,,0.00234,0.00384,0.0051,0.01035,,,,,,,0.00245,0.00407,0.00586,0.01314,,,,,,,0.00208,0.00342,0.00489,0.01008,,,,,,,0.04752,0.05224,0.05696,0.08086,,,,,,,0.0484,0.05268,0.05707,0.07783,,,,,,,0.05185,0.05568,0.06186,0.08466,,,,,,,0.04478,0.04956,0.05472,0.07989,,,,,,,0.05063,0.05406,0.05699,0.06929,,,,,,,0.04622,0.04976,0.05328,0.06743,,,,,,,0.04628,0.04947,0.05218,0.06366,,,,,,,0.04869,0.05219,0.05622,0.07238,,,,,,,0.04758,0.05036,0.05357,0.06486,,,,,,,0.0112,0.01538,0.01955,0.04069,,,,,,,0.01092,0.01471,0.01859,0.03696,,,,,,,0.01092,0.01432,0.01978,0.03995,,,,,,,0.01094,0.01517,0.01973,0.04199,,,,,,,0.01047,0.01351,0.0161,0.02697,,,,,,,0.00983,0.01282,0.01608,0.02859,,,,,,,0.0097,0.01252,0.01492,0.02508,,,,,,,0.01028,0.01337,0.01694,0.03123,,,,,,,0.00943,0.01189,0.01473,0.02472,,,,,,,0.01168,0.01056,0.00355,0.00369,,,,,,,0.01189,0.01064,0.00358,0.00371,,,,,,,0.0123,0.01079,0.00363,0.00377,,,,,,,0.02062,0.01055,0.00355,0.00369,,,,,,,0.01229,0.01083,0.00363,0.00374,,,,,,,0.01214,0.01069,0.00357,0.00369,,,,,,,0.01675,0.01075,0.0036,0.00371,,,,,,,0.01891,0.00962,0.00355,0.00367,,,,,,,0.00692,0.005,0.00328,0.00339,,,,,,,0.17178,0.25154,0.35865,1.23069,,,,,,,0.15323,0.23035,0.33337,1.17682,,,,,,,0.16318,0.25233,0.37023,1.36693,,,,,,,0.19271,0.28241,0.4026,1.41661,,,,,,,0.12259,0.20996,0.31874,1.26856,,,,,,,0.12616,0.22226,0.3234,1.28928,,,,,,,0.12349,0.20491,0.31128,1.22487,,,,,,,0.14922,0.22866,0.34822,1.29549,,,,,,,0.10966,0.17835,0.30063,1.11673,,,,, +Pickup,E15,2015,,,0.00133,0.00233,0.0036,0.00745,,,,,,,0.0012,0.00213,0.00327,0.00662,,,,,,,0.00105,0.00225,0.00348,0.00716,,,,,,,0.00135,0.00242,0.00375,0.00785,,,,,,,0.00093,0.00157,0.00237,0.00439,,,,,,,0.00091,0.00169,0.00256,0.00486,,,,,,,0.00086,0.00144,0.00216,0.00396,,,,,,,0.00096,0.00178,0.00271,0.00528,,,,,,,0.00072,0.00136,0.00202,0.00371,,,,,,,0.015,0.01151,0.01233,0.01816,,,,,,,0.01381,0.01069,0.01161,0.01699,,,,,,,0.01393,0.01192,0.01298,0.0196,,,,,,,0.01559,0.01308,0.01419,0.02128,,,,,,,0.01094,0.00974,0.01113,0.01634,,,,,,,0.01156,0.01027,0.01165,0.01724,,,,,,,0.01095,0.00965,0.01106,0.01604,,,,,,,0.01177,0.0104,0.01158,0.01703,,,,,,,0.00874,0.00915,0.01035,0.01469,,,,,,,2.14858,3.87322,5.26793,7.7213,,,,,,,2.16115,3.89332,5.32271,7.7322,,,,,,,2.3556,4.30818,6.03287,9.06332,,,,,,,2.39513,4.63612,6.50193,9.70226,,,,,,,2.13134,4.26836,6.02256,8.81099,,,,,,,2.25481,4.36052,6.16675,9.10458,,,,,,,2.19432,4.38766,6.1745,9.00283,,,,,,,2.23866,4.34703,6.04454,8.88189,,,,,,,2.01498,3.94723,5.44128,7.91035,,,,,,,417.53748,419.96275,423.92135,464.77929,,,,,,,421.04661,423.19792,426.77245,467.19115,,,,,,,426.87244,429.18435,432.99983,474.34402,,,,,,,417.26701,419.6063,423.46225,464.10738,,,,,,,428.5573,429.76455,432.01165,470.53769,,,,,,,422.94251,423.03662,425.66968,464.35855,,,,,,,425.51324,426.6195,428.72824,466.74582,,,,,,,425.03789,426.65293,429.47363,468.79458,,,,,,,418.79749,420.18389,422.64161,460.77193,,,,,,,0.00577,0.0066,0.0078,0.01287,,,,,,,0.00578,0.0066,0.0078,0.01286,,,,,,,0.00587,0.0067,0.00791,0.013,,,,,,,0.00565,0.00647,0.00766,0.01264,,,,,,,0.00585,0.00667,0.00788,0.01296,,,,,,,0.00572,0.00653,0.00773,0.01274,,,,,,,0.00577,0.00659,0.00779,0.01285,,,,,,,0.00582,0.00665,0.00786,0.01294,,,,,,,0.00587,0.0067,0.00792,0.01305,,,,,,,0.01869,0.02141,0.02733,0.02862,,,,,,,0.01871,0.02144,0.02737,0.02866,,,,,,,0.01871,0.02143,0.02736,0.02865,,,,,,,0.01861,0.02133,0.02722,0.02851,,,,,,,0.01869,0.02141,0.02734,0.02862,,,,,,,0.01863,0.02135,0.02725,0.02853,,,,,,,0.01868,0.0214,0.02732,0.02861,,,,,,,0.01872,0.02145,0.02738,0.02867,,,,,,,0.01876,0.02149,0.02743,0.02873,,,,,,,0.13741,0.17005,0.25327,0.45796,,,,,,,0.13682,0.16738,0.25004,0.45233,,,,,,,0.13709,0.1809,0.26855,0.50246,,,,,,,0.14367,0.19289,0.28614,0.53383,,,,,,,0.12619,0.16847,0.25324,0.48226,,,,,,,0.13238,0.17591,0.26352,0.49778,,,,,,,0.12929,0.17023,0.25622,0.48157,,,,,,,0.13688,0.18654,0.27802,0.51546,,,,,,,0.09874,0.16678,0.24924,0.45662,,,,,,,0.00261,0.0044,0.00637,0.01193,,,,,,,0.00249,0.00421,0.00607,0.01105,,,,,,,0.00227,0.00431,0.00623,0.01155,,,,,,,0.0026,0.00446,0.00647,0.01226,,,,,,,0.00227,0.0037,0.00522,0.00867,,,,,,,0.00219,0.00377,0.00535,0.00911,,,,,,,0.00216,0.00352,0.00495,0.00814,,,,,,,0.00221,0.00386,0.00549,0.00958,,,,,,,0.00193,0.00339,0.00475,0.00782,,,,,,,0.04653,0.05047,0.05497,0.06791,,,,,,,0.0476,0.05136,0.05555,0.06705,,,,,,,0.05113,0.05565,0.06003,0.07242,,,,,,,0.04369,0.0478,0.05243,0.06598,,,,,,,0.05018,0.05317,0.05648,0.06419,,,,,,,0.04592,0.0491,0.05258,0.06106,,,,,,,0.04587,0.0487,0.05178,0.05884,,,,,,,0.0481,0.05163,0.05526,0.06453,,,,,,,0.04723,0.05027,0.0532,0.05995,,,,,,,0.01033,0.01381,0.0178,0.02925,,,,,,,0.01022,0.01354,0.01725,0.02742,,,,,,,0.01029,0.01429,0.01817,0.02912,,,,,,,0.00997,0.01361,0.01771,0.0297,,,,,,,0.01007,0.01272,0.01565,0.02247,,,,,,,0.00942,0.01238,0.01546,0.02296,,,,,,,0.00934,0.01184,0.01457,0.02082,,,,,,,0.00976,0.01288,0.01609,0.02429,,,,,,,0.00912,0.01181,0.01441,0.02038,,,,,,,0.00849,0.00285,0.00287,0.00315,,,,,,,0.00856,0.00287,0.00289,0.00317,,,,,,,0.00868,0.00291,0.00294,0.00322,,,,,,,0.00849,0.00284,0.00287,0.00315,,,,,,,0.00872,0.00291,0.00293,0.00319,,,,,,,0.0086,0.00287,0.00289,0.00315,,,,,,,0.00865,0.00289,0.00291,0.00316,,,,,,,0.00774,0.00285,0.00287,0.00313,,,,,,,0.00402,0.00263,0.00265,0.00289,,,,,,,0.12646,0.18055,0.29518,0.71847,,,,,,,0.11768,0.16975,0.28212,0.69453,,,,,,,0.1217,0.18622,0.31,0.76526,,,,,,,0.13326,0.20057,0.33059,0.79581,,,,,,,0.10147,0.16347,0.2886,0.7248,,,,,,,0.10781,0.16581,0.28995,0.72519,,,,,,,0.10063,0.16078,0.28378,0.70755,,,,,,,0.11343,0.1783,0.30479,0.75197,,,,,,,0.09157,0.1552,0.27326,0.68119,,,, +Pickup,E15,2020,,,,0.00118,0.00201,0.00285,0.00571,,,,,,,0.00109,0.00184,0.0026,0.00514,,,,,,,0.00114,0.00195,0.00276,0.0055,,,,,,,0.00122,0.00208,0.00296,0.00597,,,,,,,0.00083,0.00138,0.0019,0.00356,,,,,,,0.00088,0.00147,0.00205,0.0039,,,,,,,0.00076,0.00126,0.00173,0.00322,,,,,,,0.00092,0.00155,0.00216,0.00417,,,,,,,0.00072,0.00119,0.00163,0.003,,,,,,,0.01138,0.00976,0.00969,0.01323,,,,,,,0.01028,0.00897,0.009,0.01232,,,,,,,0.01079,0.01,0.01004,0.01416,,,,,,,0.01187,0.01102,0.01104,0.0155,,,,,,,0.00749,0.00779,0.00811,0.01165,,,,,,,0.0081,0.00832,0.00861,0.01234,,,,,,,0.00739,0.0077,0.00803,0.01148,,,,,,,0.00883,0.0085,0.00868,0.01225,,,,,,,0.00738,0.00728,0.00752,0.01052,,,,,,,1.75346,2.70311,3.40415,5.23717,,,,,,,1.73504,2.69294,3.40028,5.23739,,,,,,,1.8221,2.98023,3.84322,6.16501,,,,,,,1.9638,3.22016,4.16746,6.64494,,,,,,,1.68648,2.87426,3.71799,5.95641,,,,,,,1.73449,2.95563,3.83734,6.18761,,,,,,,1.74446,2.95795,3.82139,6.10522,,,,,,,1.80599,2.96455,3.7956,6.01734,,,,,,,1.63703,2.67087,3.38976,5.31156,,,,,,,357.91079,360.37415,364.37202,397.59847,,,,,,,360.76828,362.99831,366.6542,399.45254,,,,,,,365.83607,368.21014,372.08895,405.66982,,,,,,,357.66181,360.05112,363.95662,397.00389,,,,,,,366.69938,368.12354,370.59162,401.61394,,,,,,,360.86399,362.51937,365.32828,396.56361,,,,,,,364.05649,365.39199,367.73176,398.33068,,,,,,,363.90252,365.67487,368.65588,400.42854,,,,,,,358.41105,359.98073,362.62781,393.36751,,,,,,,0.00591,0.00669,0.00786,0.0106,,,,,,,0.00592,0.00669,0.00786,0.01059,,,,,,,0.00602,0.00679,0.00797,0.0107,,,,,,,0.0058,0.00656,0.00772,0.01041,,,,,,,0.00599,0.00676,0.00793,0.01066,,,,,,,0.00586,0.00662,0.00779,0.01049,,,,,,,0.00591,0.00668,0.00785,0.01058,,,,,,,0.00597,0.00674,0.00792,0.01065,,,,,,,0.00601,0.00679,0.00798,0.01075,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01873,0.02159,0.02737,0.02737,,,,,,,0.01872,0.02158,0.02736,0.02736,,,,,,,0.01863,0.02148,0.02723,0.02723,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01865,0.0215,0.02725,0.02725,,,,,,,0.0187,0.02155,0.02732,0.02732,,,,,,,0.01874,0.0216,0.02738,0.02738,,,,,,,0.01878,0.02164,0.02744,0.02744,,,,,,,0.09268,0.15258,0.20516,0.28869,,,,,,,0.09124,0.15001,0.20209,0.28435,,,,,,,0.09213,0.16143,0.21602,0.3109,,,,,,,0.09704,0.17279,0.23109,0.3327,,,,,,,0.08183,0.14903,0.20103,0.29187,,,,,,,0.08636,0.15649,0.21065,0.30458,,,,,,,0.0838,0.15112,0.20417,0.29404,,,,,,,0.09474,0.16638,0.22324,0.31878,,,,,,,0.08605,0.14846,0.19968,0.28245,,,,,,,0.00236,0.00382,0.00507,0.00903,,,,,,,0.00227,0.00367,0.00484,0.00849,,,,,,,0.00231,0.00374,0.00496,0.0088,,,,,,,0.00238,0.00386,0.00515,0.00923,,,,,,,0.00203,0.00323,0.00418,0.00701,,,,,,,0.00206,0.00329,0.00429,0.00728,,,,,,,0.00194,0.00308,0.00396,0.00659,,,,,,,0.0021,0.00336,0.00439,0.00753,,,,,,,0.00187,0.00296,0.00381,0.00631,,,,,,,0.04595,0.04919,0.05208,0.0614,,,,,,,0.04711,0.05017,0.05285,0.06136,,,,,,,0.05126,0.05442,0.05722,0.06624,,,,,,,0.04318,0.04648,0.04946,0.05913,,,,,,,0.04967,0.05221,0.05429,0.06061,,,,,,,0.04546,0.04809,0.0503,0.05706,,,,,,,0.0454,0.04778,0.04972,0.05553,,,,,,,0.04787,0.05058,0.05289,0.06004,,,,,,,0.04711,0.0494,0.05124,0.05675,,,,,,,0.00982,0.01268,0.01524,0.02349,,,,,,,0.00979,0.01249,0.01486,0.02239,,,,,,,0.0104,0.0132,0.01568,0.02366,,,,,,,0.00952,0.01245,0.01508,0.02363,,,,,,,0.00962,0.01187,0.01371,0.0193,,,,,,,0.00917,0.01149,0.01344,0.01942,,,,,,,0.00892,0.01103,0.01275,0.01789,,,,,,,0.00955,0.01195,0.01399,0.02032,,,,,,,0.00902,0.01104,0.01267,0.01755,,,,,,,0.00243,0.00244,0.00247,0.0027,,,,,,,0.00245,0.00246,0.00249,0.00271,,,,,,,0.00248,0.0025,0.00252,0.00275,,,,,,,0.00242,0.00244,0.00247,0.00269,,,,,,,0.00249,0.0025,0.00251,0.00272,,,,,,,0.00245,0.00246,0.00248,0.00269,,,,,,,0.00247,0.00248,0.00249,0.0027,,,,,,,0.00243,0.00244,0.00246,0.00267,,,,,,,0.00225,0.00226,0.00227,0.00247,,,,,,,0.1078,0.15202,0.23173,0.55538,,,,,,,0.09925,0.14089,0.21806,0.5363,,,,,,,0.10524,0.1558,0.24132,0.58563,,,,,,,0.11342,0.16861,0.25857,0.60661,,,,,,,0.08173,0.12938,0.21272,0.55633,,,,,,,0.08456,0.13331,0.21649,0.5548,,,,,,,0.08029,0.12598,0.20676,0.54238,,,,,,,0.09531,0.14449,0.2298,0.57712,,,,,,,0.07898,0.12217,0.20051,0.5296,,, +Pickup,E15,2025,,,,,0.00078,0.00129,0.00182,0.00409,,,,,,,0.00071,0.00118,0.00166,0.0037,,,,,,,0.00075,0.00125,0.00176,0.00395,,,,,,,0.0008,0.00133,0.00189,0.00426,,,,,,,0.00054,0.00088,0.00122,0.00259,,,,,,,0.00058,0.00094,0.00131,0.00283,,,,,,,0.0005,0.00081,0.00111,0.00234,,,,,,,0.00061,0.00099,0.00138,0.00302,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00887,0.00699,0.00677,0.00997,,,,,,,0.00775,0.00621,0.00607,0.00912,,,,,,,0.00832,0.00693,0.00678,0.01054,,,,,,,0.00932,0.00774,0.00755,0.01162,,,,,,,0.00483,0.00457,0.0047,0.00803,,,,,,,0.00548,0.00506,0.00515,0.00867,,,,,,,0.00468,0.00445,0.00459,0.00786,,,,,,,0.00625,0.00543,0.00544,0.00875,,,,,,,0.0047,0.00426,0.00436,0.0072,,,,,,,1.15248,1.69392,2.15677,3.61217,,,,,,,1.10944,1.6495,2.10948,3.57126,,,,,,,1.17834,1.83578,2.39212,4.23238,,,,,,,1.28025,2.00064,2.61454,4.5877,,,,,,,0.98945,1.64607,2.16823,3.95008,,,,,,,1.03885,1.7203,2.27074,4.14298,,,,,,,1.02242,1.69536,2.23069,4.05113,,,,,,,1.109,1.75818,2.2836,4.05208,,,,,,,0.97386,1.5477,1.99585,3.52701,,,,,,,294.61925,296.12761,299.04954,334.68556,,,,,,,296.83595,298.13998,300.75261,335.99998,,,,,,,301.07455,302.49404,305.29706,341.35366,,,,,,,294.40087,295.84827,298.69212,334.16079,,,,,,,301.26286,301.86726,303.41114,336.99134,,,,,,,296.61122,297.42381,299.28242,333.01626,,,,,,,299.05874,299.5917,301.02822,334.17656,,,,,,,299.15832,300.06538,302.07148,336.35325,,,,,,,294.50739,295.24691,296.95909,330.1732,,,,,,,0.00595,0.00668,0.00783,0.01021,,,,,,,0.00596,0.00668,0.00783,0.0102,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00583,0.00655,0.00769,0.01004,,,,,,,0.00603,0.00675,0.0079,0.01028,,,,,,,0.0059,0.00661,0.00775,0.0101,,,,,,,0.00595,0.00667,0.00782,0.01019,,,,,,,0.00601,0.00673,0.00788,0.01027,,,,,,,0.00605,0.00678,0.00795,0.01036,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01875,0.02157,0.02737,0.02736,,,,,,,0.01875,0.02156,0.02736,0.02735,,,,,,,0.01866,0.02146,0.02723,0.02722,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01867,0.02148,0.02725,0.02724,,,,,,,0.01872,0.02153,0.02732,0.02731,,,,,,,0.01876,0.02158,0.02738,0.02737,,,,,,,0.0188,0.02162,0.02744,0.02743,,,,,,,0.05663,0.08559,0.11481,0.1948,,,,,,,0.05489,0.08308,0.11175,0.19066,,,,,,,0.05562,0.08876,0.11874,0.20917,,,,,,,0.05888,0.09531,0.12737,0.22478,,,,,,,0.04614,0.07771,0.10541,0.19136,,,,,,,0.04985,0.08304,0.11214,0.20164,,,,,,,0.04727,0.07898,0.10724,0.19274,,,,,,,0.05489,0.08883,0.11948,0.21116,,,,,,,0.04872,0.07823,0.10577,0.18514,,,,,,,0.00155,0.00246,0.00326,0.00651,,,,,,,0.0015,0.00236,0.00311,0.00614,,,,,,,0.00152,0.00241,0.00319,0.00635,,,,,,,0.00157,0.00248,0.00331,0.00663,,,,,,,0.00134,0.00208,0.0027,0.0051,,,,,,,0.00136,0.00212,0.00276,0.00529,,,,,,,0.00128,0.00198,0.00256,0.00479,,,,,,,0.00138,0.00217,0.00283,0.00547,,,,,,,0.00123,0.00191,0.00246,0.00461,,,,,,,0.04421,0.04621,0.04807,0.05565,,,,,,,0.04546,0.04734,0.04906,0.05605,,,,,,,0.04956,0.05151,0.05331,0.06067,,,,,,,0.04141,0.04346,0.04536,0.05316,,,,,,,0.04823,0.04981,0.05115,0.05649,,,,,,,0.04399,0.04562,0.04704,0.05272,,,,,,,0.04403,0.04551,0.04676,0.05168,,,,,,,0.04636,0.04804,0.04952,0.05549,,,,,,,0.0458,0.04722,0.04841,0.05312,,,,,,,0.00828,0.01005,0.01169,0.0184,,,,,,,0.00832,0.00999,0.01151,0.0177,,,,,,,0.0089,0.01063,0.01222,0.01873,,,,,,,0.00796,0.00977,0.01145,0.01835,,,,,,,0.00835,0.00974,0.01093,0.01566,,,,,,,0.00787,0.00931,0.01056,0.01558,,,,,,,0.00771,0.00902,0.01013,0.01448,,,,,,,0.00822,0.0097,0.01102,0.01629,,,,,,,0.00786,0.00912,0.01017,0.01433,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00201,0.00202,0.00204,0.00228,,,,,,,0.00204,0.00205,0.00207,0.00231,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00204,0.00205,0.00206,0.00228,,,,,,,0.00201,0.00202,0.00203,0.00226,,,,,,,0.00203,0.00203,0.00204,0.00227,,,,,,,0.002,0.002,0.00202,0.00225,,,,,,,0.00185,0.00185,0.00186,0.00207,,,,,,,0.0902,0.11755,0.17575,0.47272,,,,,,,0.08107,0.10586,0.16125,0.45355,,,,,,,0.08724,0.11822,0.18025,0.49628,,,,,,,0.09508,0.12933,0.19452,0.51235,,,,,,,0.06082,0.08748,0.14504,0.46043,,,,,,,0.0647,0.09256,0.15049,0.46114,,,,,,,0.05894,0.08349,0.13828,0.44515,,,,,,,0.07454,0.10311,0.16333,0.4808,,,,,,,0.05812,0.0819,0.13602,0.43913,, +Pickup,E15,2030,,,,,,0.00077,0.00128,0.00181,0.00333,,,,,,,0.00071,0.00118,0.00165,0.00301,,,,,,,0.00075,0.00124,0.00175,0.00321,,,,,,,0.0008,0.00133,0.00187,0.00346,,,,,,,0.00054,0.00088,0.00121,0.00212,,,,,,,0.00058,0.00094,0.0013,0.00231,,,,,,,0.0005,0.00081,0.0011,0.00192,,,,,,,0.0006,0.00099,0.00138,0.00246,,,,,,,0.00047,0.00076,0.00104,0.0018,,,,,,,0.00817,0.00624,0.00605,0.00825,,,,,,,0.00704,0.00546,0.00536,0.0074,,,,,,,0.00762,0.0061,0.00599,0.00846,,,,,,,0.00858,0.00684,0.00669,0.00939,,,,,,,0.0041,0.00371,0.00386,0.00588,,,,,,,0.00475,0.00419,0.0043,0.00646,,,,,,,0.00393,0.00358,0.00375,0.00572,,,,,,,0.00552,0.00461,0.00464,0.00674,,,,,,,0.00396,0.00347,0.00359,0.00532,,,,,,,1.01096,1.48514,1.9055,2.83083,,,,,,,0.96248,1.43428,1.84919,2.76397,,,,,,,1.02638,1.59754,2.09654,3.24715,,,,,,,1.11805,1.74459,2.29296,3.53662,,,,,,,0.8264,1.39225,1.85226,2.91835,,,,,,,0.87552,1.46364,1.94975,3.08201,,,,,,,0.85317,1.43338,1.90441,2.9962,,,,,,,0.945,1.50815,1.97656,3.0563,,,,,,,0.81791,1.31527,1.71574,2.63365,,,,,,,269.5982,272.0849,276.19714,299.20659,,,,,,,271.5686,273.87519,277.69925,300.24733,,,,,,,275.47606,277.90493,281.93183,305.10027,,,,,,,269.39329,271.82346,275.86215,298.72625,,,,,,,275.42421,277.10159,279.91653,300.68076,,,,,,,271.23305,273.08524,276.1829,297.27847,,,,,,,273.39504,274.99885,277.70142,298.13726,,,,,,,273.58337,275.53222,278.7825,300.30712,,,,,,,269.27018,271.04618,273.98937,294.64918,,,,,,,0.00595,0.00665,0.00782,0.01018,,,,,,,0.00596,0.00666,0.00782,0.01017,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00583,0.00653,0.00768,0.01,,,,,,,0.00603,0.00673,0.00789,0.01024,,,,,,,0.0059,0.00659,0.00775,0.01007,,,,,,,0.00594,0.00665,0.00781,0.01016,,,,,,,0.006,0.00671,0.00788,0.01023,,,,,,,0.00605,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01876,0.02157,0.02736,0.02736,,,,,,,0.01876,0.02156,0.02735,0.02735,,,,,,,0.01867,0.02146,0.02722,0.02722,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01868,0.02148,0.02724,0.02724,,,,,,,0.01873,0.02153,0.02731,0.02731,,,,,,,0.01877,0.02158,0.02737,0.02737,,,,,,,0.01881,0.02162,0.02743,0.02743,,,,,,,0.04553,0.06755,0.09295,0.14539,,,,,,,0.04368,0.06505,0.0899,0.14125,,,,,,,0.04417,0.06902,0.09503,0.15349,,,,,,,0.04675,0.07404,0.10183,0.16487,,,,,,,0.03498,0.05837,0.08215,0.13615,,,,,,,0.03837,0.06301,0.08806,0.14477,,,,,,,0.03587,0.05936,0.08356,0.1374,,,,,,,0.04242,0.06777,0.09424,0.15254,,,,,,,0.03716,0.05932,0.08311,0.13321,,,,,,,0.00155,0.00245,0.00325,0.00535,,,,,,,0.00149,0.00235,0.0031,0.00505,,,,,,,0.00152,0.0024,0.00317,0.00522,,,,,,,0.00156,0.00248,0.00328,0.00545,,,,,,,0.00134,0.00208,0.00268,0.00422,,,,,,,0.00136,0.00212,0.00275,0.00437,,,,,,,0.00128,0.00198,0.00254,0.00397,,,,,,,0.00138,0.00216,0.00282,0.0045,,,,,,,0.00123,0.00191,0.00246,0.00381,,,,,,,0.0442,0.0462,0.04803,0.05298,,,,,,,0.04545,0.04733,0.04903,0.05358,,,,,,,0.04955,0.0515,0.05327,0.05807,,,,,,,0.04141,0.04344,0.04531,0.05042,,,,,,,0.04823,0.0498,0.05112,0.05456,,,,,,,0.04399,0.04561,0.04701,0.05068,,,,,,,0.04403,0.0455,0.04673,0.04989,,,,,,,0.04635,0.04803,0.0495,0.05335,,,,,,,0.0458,0.04722,0.0484,0.05139,,,,,,,0.00827,0.01004,0.01166,0.01603,,,,,,,0.00832,0.00998,0.01148,0.01551,,,,,,,0.00889,0.01061,0.01219,0.01643,,,,,,,0.00795,0.00975,0.01141,0.01593,,,,,,,0.00835,0.00973,0.01091,0.01395,,,,,,,0.00786,0.0093,0.01054,0.01378,,,,,,,0.00771,0.00902,0.0101,0.0129,,,,,,,0.00821,0.0097,0.01099,0.0144,,,,,,,0.00786,0.00911,0.01016,0.01281,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00184,0.00186,0.00188,0.00204,,,,,,,0.00187,0.00188,0.00191,0.00207,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00187,0.00188,0.0019,0.00204,,,,,,,0.00184,0.00185,0.00187,0.00202,,,,,,,0.00185,0.00186,0.00188,0.00202,,,,,,,0.00183,0.00184,0.00186,0.00201,,,,,,,0.00169,0.0017,0.00172,0.00185,,,,,,,0.08535,0.10912,0.16409,0.41674,,,,,,,0.07616,0.09743,0.14952,0.39681,,,,,,,0.08228,0.10896,0.16741,0.43357,,,,,,,0.08998,0.11956,0.18078,0.44773,,,,,,,0.05548,0.0777,0.13108,0.39244,,,,,,,0.0595,0.08288,0.13667,0.39452,,,,,,,0.05354,0.0737,0.12423,0.37695,,,,,,,0.06908,0.09346,0.14947,0.41486,,,,,,,0.05274,0.07256,0.12286,0.37552, +Pickup,E15,2035,,,,,,,0.00077,0.00127,0.00181,0.00306,,,,,,,0.00071,0.00117,0.00165,0.00277,,,,,,,0.00075,0.00123,0.00175,0.00296,,,,,,,0.0008,0.00132,0.00188,0.00319,,,,,,,0.00054,0.00087,0.00121,0.00196,,,,,,,0.00057,0.00094,0.0013,0.00213,,,,,,,0.0005,0.0008,0.0011,0.00178,,,,,,,0.0006,0.00098,0.00138,0.00227,,,,,,,0.00047,0.00076,0.00104,0.00166,,,,,,,0.00814,0.00625,0.00605,0.00763,,,,,,,0.00702,0.00547,0.00535,0.00677,,,,,,,0.0076,0.00611,0.00598,0.00767,,,,,,,0.00856,0.00685,0.00668,0.00856,,,,,,,0.00409,0.00372,0.00386,0.00507,,,,,,,0.00474,0.0042,0.00429,0.00562,,,,,,,0.00392,0.00358,0.00374,0.00491,,,,,,,0.00551,0.00462,0.00463,0.00599,,,,,,,0.00395,0.00347,0.00359,0.00463,,,,,,,1.00827,1.48136,1.90637,2.57095,,,,,,,0.96,1.42993,1.8505,2.4948,,,,,,,1.02356,1.59198,2.0985,2.9105,,,,,,,1.11473,1.73644,2.29641,3.17715,,,,,,,0.82444,1.38577,1.85511,2.56501,,,,,,,0.87335,1.45698,1.95265,2.71712,,,,,,,0.85112,1.42624,1.90762,2.63519,,,,,,,0.94269,1.50316,1.9783,2.71728,,,,,,,0.81626,1.31318,1.71589,2.33089,,,,,,,269.51136,271.99405,276.18109,287.3431,,,,,,,271.48589,273.78452,277.68429,288.29897,,,,,,,275.38988,277.81231,281.91605,292.98124,,,,,,,269.3071,271.73283,275.84623,286.87843,,,,,,,275.35637,277.01217,279.90494,288.56819,,,,,,,271.16129,272.9964,276.17064,285.35007,,,,,,,273.32909,274.91027,277.69055,286.11666,,,,,,,273.50926,275.44215,278.76945,288.27332,,,,,,,269.20201,270.9587,273.97769,282.79607,,,,,,,0.00593,0.00665,0.00782,0.01018,,,,,,,0.00594,0.00665,0.00782,0.01016,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.00581,0.00652,0.00767,0.01,,,,,,,0.00601,0.00672,0.00789,0.01024,,,,,,,0.00588,0.00659,0.00774,0.01007,,,,,,,0.00593,0.00664,0.00781,0.01016,,,,,,,0.00598,0.0067,0.00787,0.01023,,,,,,,0.00603,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01876,0.02156,0.02736,0.02736,,,,,,,0.01875,0.02155,0.02735,0.02735,,,,,,,0.01866,0.02144,0.02722,0.02722,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01868,0.02146,0.02724,0.02724,,,,,,,0.01873,0.02152,0.02731,0.02731,,,,,,,0.01877,0.02156,0.02737,0.02737,,,,,,,0.01881,0.02161,0.02743,0.02743,,,,,,,0.04539,0.06732,0.093,0.12719,,,,,,,0.04354,0.06483,0.08994,0.12304,,,,,,,0.04403,0.06877,0.09508,0.1325,,,,,,,0.0466,0.07375,0.10191,0.14217,,,,,,,0.03488,0.05817,0.08218,0.1153,,,,,,,0.03826,0.06279,0.0881,0.12324,,,,,,,0.03577,0.05913,0.08362,0.11658,,,,,,,0.0423,0.06758,0.09426,0.13053,,,,,,,0.03707,0.0592,0.08309,0.11393,,,,,,,0.00155,0.00244,0.00325,0.00495,,,,,,,0.00149,0.00234,0.0031,0.00468,,,,,,,0.00152,0.00239,0.00318,0.00483,,,,,,,0.00156,0.00246,0.00329,0.00504,,,,,,,0.00133,0.00207,0.00269,0.00391,,,,,,,0.00135,0.00211,0.00275,0.00405,,,,,,,0.00127,0.00197,0.00255,0.00368,,,,,,,0.00138,0.00215,0.00282,0.00417,,,,,,,0.00123,0.00191,0.00246,0.00353,,,,,,,0.0442,0.04617,0.04804,0.05206,,,,,,,0.04544,0.04731,0.04904,0.05273,,,,,,,0.04954,0.05147,0.05329,0.05718,,,,,,,0.0414,0.0434,0.04533,0.04949,,,,,,,0.04822,0.04978,0.05113,0.05389,,,,,,,0.04398,0.04559,0.04702,0.04997,,,,,,,0.04402,0.04548,0.04674,0.04928,,,,,,,0.04635,0.04801,0.04951,0.05261,,,,,,,0.0458,0.04721,0.0484,0.05079,,,,,,,0.00827,0.01001,0.01167,0.01522,,,,,,,0.00831,0.00996,0.01149,0.01475,,,,,,,0.00889,0.01059,0.0122,0.01564,,,,,,,0.00795,0.00972,0.01142,0.01511,,,,,,,0.00834,0.00972,0.01092,0.01336,,,,,,,0.00786,0.00928,0.01055,0.01316,,,,,,,0.0077,0.00899,0.01011,0.01236,,,,,,,0.00821,0.00968,0.011,0.01375,,,,,,,0.00786,0.00911,0.01016,0.01227,,,,,,,0.00183,0.00184,0.00187,0.00195,,,,,,,0.00184,0.00186,0.00188,0.00195,,,,,,,0.00187,0.00188,0.00191,0.00199,,,,,,,0.00183,0.00184,0.00187,0.00194,,,,,,,0.00187,0.00188,0.0019,0.00196,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00185,0.00186,0.00188,0.00194,,,,,,,0.00183,0.00184,0.00186,0.00193,,,,,,,0.00169,0.0017,0.00172,0.00177,,,,,,,0.08506,0.10909,0.16395,0.39675,,,,,,,0.07591,0.09738,0.1494,0.3765,,,,,,,0.08201,0.10895,0.16724,0.41071,,,,,,,0.08966,0.11943,0.18069,0.42419,,,,,,,0.05529,0.07751,0.13108,0.36767,,,,,,,0.0593,0.08272,0.13664,0.37013,,,,,,,0.05335,0.07347,0.12425,0.35215,,,,,,,0.0688,0.09306,0.14969,0.39082,,,,,,,0.05257,0.07245,0.12281,0.35259 +Pickup,E15,2040,,,,,,,,0.00077,0.00128,0.00182,,,,,,,,0.00071,0.00117,0.00166,,,,,,,,0.00074,0.00124,0.00176,,,,,,,,0.00079,0.00132,0.00189,,,,,,,,0.00054,0.00088,0.00121,,,,,,,,0.00057,0.00094,0.00131,,,,,,,,0.00049,0.0008,0.00111,,,,,,,,0.0006,0.00099,0.00138,,,,,,,,0.00047,0.00076,0.00104,,,,,,,,0.00815,0.00624,0.00604,,,,,,,,0.00703,0.00546,0.00535,,,,,,,,0.00762,0.0061,0.00597,,,,,,,,0.00857,0.00684,0.00667,,,,,,,,0.00409,0.00371,0.00385,,,,,,,,0.00474,0.00419,0.00429,,,,,,,,0.00392,0.00358,0.00374,,,,,,,,0.00551,0.00461,0.00463,,,,,,,,0.00394,0.00347,0.00358,,,,,,,,1.0059,1.48211,1.90802,,,,,,,,0.95725,1.43101,1.85257,,,,,,,,1.02039,1.59357,2.10146,,,,,,,,1.11006,1.73915,2.30119,,,,,,,,0.82054,1.38802,1.85882,,,,,,,,0.86941,1.45927,1.95647,,,,,,,,0.84681,1.42878,1.91176,,,,,,,,0.93958,1.50458,1.98083,,,,,,,,0.81481,1.31336,1.71645,,,,,,,,269.41499,271.97422,276.17231,,,,,,,,271.38948,273.76527,277.67564,,,,,,,,275.29168,277.79257,281.90715,,,,,,,,269.21099,271.71322,275.83759,,,,,,,,275.26015,276.99518,279.89591,,,,,,,,271.06602,272.97883,276.16184,,,,,,,,273.23343,274.89379,277.68161,,,,,,,,273.41267,275.42428,278.76077,,,,,,,,269.10772,270.94171,273.96907,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.00581,0.00652,0.00767,,,,,,,,0.006,0.00672,0.00789,,,,,,,,0.00587,0.00658,0.00774,,,,,,,,0.00592,0.00664,0.00781,,,,,,,,0.00598,0.0067,0.00787,,,,,,,,0.00602,0.00675,0.00794,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01875,0.02156,0.02736,,,,,,,,0.01874,0.02155,0.02735,,,,,,,,0.01865,0.02145,0.02722,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01867,0.02146,0.02724,,,,,,,,0.01872,0.02152,0.02731,,,,,,,,0.01876,0.02157,0.02737,,,,,,,,0.01879,0.02161,0.02743,,,,,,,,0.04523,0.06735,0.09309,,,,,,,,0.0434,0.06486,0.09003,,,,,,,,0.04387,0.06881,0.09518,,,,,,,,0.04641,0.0738,0.10204,,,,,,,,0.03477,0.0582,0.08226,,,,,,,,0.03813,0.06282,0.08818,,,,,,,,0.03563,0.05917,0.08371,,,,,,,,0.04218,0.06759,0.09432,,,,,,,,0.037,0.05918,0.0831,,,,,,,,0.00154,0.00244,0.00326,,,,,,,,0.00148,0.00235,0.00311,,,,,,,,0.00151,0.00239,0.00319,,,,,,,,0.00155,0.00247,0.0033,,,,,,,,0.00133,0.00207,0.00269,,,,,,,,0.00135,0.00211,0.00276,,,,,,,,0.00127,0.00197,0.00255,,,,,,,,0.00137,0.00216,0.00283,,,,,,,,0.00123,0.00191,0.00246,,,,,,,,0.04418,0.04618,0.04806,,,,,,,,0.04543,0.04731,0.04905,,,,,,,,0.04953,0.05148,0.0533,,,,,,,,0.04137,0.04341,0.04535,,,,,,,,0.04821,0.04978,0.05114,,,,,,,,0.04397,0.0456,0.04703,,,,,,,,0.044,0.04549,0.04675,,,,,,,,0.04634,0.04802,0.04952,,,,,,,,0.04579,0.04721,0.04841,,,,,,,,0.00825,0.01002,0.01168,,,,,,,,0.00829,0.00996,0.0115,,,,,,,,0.00887,0.0106,0.01221,,,,,,,,0.00793,0.00973,0.01144,,,,,,,,0.00833,0.00972,0.01093,,,,,,,,0.00784,0.00928,0.01056,,,,,,,,0.00769,0.009,0.01012,,,,,,,,0.0082,0.00968,0.01101,,,,,,,,0.00785,0.00911,0.01016,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00184,0.00186,0.00188,,,,,,,,0.00187,0.00188,0.00191,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00187,0.00188,0.0019,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00185,0.00186,0.00188,,,,,,,,0.00183,0.00184,0.00186,,,,,,,,0.00169,0.0017,0.00172,,,,,,,,0.08507,0.10901,0.16393,,,,,,,,0.07589,0.09732,0.14939,,,,,,,,0.08203,0.10887,0.16722,,,,,,,,0.08961,0.1194,0.18077,,,,,,,,0.05518,0.07755,0.13122,,,,,,,,0.05922,0.08274,0.13676,,,,,,,,0.05323,0.07353,0.12441,,,,,,,,0.06856,0.09331,0.14991,,,,,,,,0.05252,0.07246,0.12287 +Pickup,E15,2045,,,,,,,,,0.00077,0.00128,,,,,,,,,0.00071,0.00117,,,,,,,,,0.00074,0.00124,,,,,,,,,0.00079,0.00132,,,,,,,,,0.00054,0.00088,,,,,,,,,0.00057,0.00094,,,,,,,,,0.0005,0.00081,,,,,,,,,0.0006,0.00099,,,,,,,,,0.00047,0.00076,,,,,,,,,0.00814,0.00624,,,,,,,,,0.00702,0.00546,,,,,,,,,0.0076,0.00609,,,,,,,,,0.00856,0.00683,,,,,,,,,0.00408,0.00371,,,,,,,,,0.00474,0.00418,,,,,,,,,0.00391,0.00358,,,,,,,,,0.0055,0.00461,,,,,,,,,0.00394,0.00347,,,,,,,,,1.00632,1.48336,,,,,,,,,0.95789,1.43258,,,,,,,,,1.02116,1.59572,,,,,,,,,1.11145,1.74264,,,,,,,,,0.82184,1.39076,,,,,,,,,0.87069,1.46206,,,,,,,,,0.84829,1.43185,,,,,,,,,0.94041,1.50646,,,,,,,,,0.81497,1.31376,,,,,,,,,269.40495,271.97292,,,,,,,,,271.38003,273.76412,,,,,,,,,275.28172,277.79116,,,,,,,,,269.20123,271.71197,,,,,,,,,275.25249,276.99411,,,,,,,,,271.05778,272.97774,,,,,,,,,273.22644,274.89273,,,,,,,,,273.40433,275.42322,,,,,,,,,269.09989,270.94038,,,,,,,,,0.00592,0.00665,,,,,,,,,0.00593,0.00665,,,,,,,,,0.00603,0.00675,,,,,,,,,0.0058,0.00652,,,,,,,,,0.006,0.00672,,,,,,,,,0.00587,0.00658,,,,,,,,,0.00592,0.00664,,,,,,,,,0.00598,0.0067,,,,,,,,,0.00602,0.00675,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01875,0.02155,,,,,,,,,0.01874,0.02155,,,,,,,,,0.01865,0.02144,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01867,0.02146,,,,,,,,,0.01872,0.02152,,,,,,,,,0.01876,0.02156,,,,,,,,,0.01879,0.02161,,,,,,,,,0.04526,0.06741,,,,,,,,,0.04342,0.06492,,,,,,,,,0.0439,0.06889,,,,,,,,,0.04646,0.0739,,,,,,,,,0.03479,0.05825,,,,,,,,,0.03815,0.06288,,,,,,,,,0.03566,0.05923,,,,,,,,,0.0422,0.06764,,,,,,,,,0.03699,0.05919,,,,,,,,,0.00154,0.00245,,,,,,,,,0.00149,0.00235,,,,,,,,,0.00151,0.0024,,,,,,,,,0.00155,0.00247,,,,,,,,,0.00133,0.00208,,,,,,,,,0.00135,0.00211,,,,,,,,,0.00127,0.00198,,,,,,,,,0.00138,0.00216,,,,,,,,,0.00123,0.00191,,,,,,,,,0.04418,0.04619,,,,,,,,,0.04543,0.04732,,,,,,,,,0.04953,0.05149,,,,,,,,,0.04138,0.04343,,,,,,,,,0.04821,0.04979,,,,,,,,,0.04397,0.0456,,,,,,,,,0.04401,0.0455,,,,,,,,,0.04634,0.04802,,,,,,,,,0.04579,0.04721,,,,,,,,,0.00826,0.01003,,,,,,,,,0.0083,0.00997,,,,,,,,,0.00888,0.01061,,,,,,,,,0.00793,0.00974,,,,,,,,,0.00833,0.00973,,,,,,,,,0.00785,0.00929,,,,,,,,,0.0077,0.00901,,,,,,,,,0.0082,0.00969,,,,,,,,,0.00785,0.00911,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00184,0.00186,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00185,0.00186,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00169,0.0017,,,,,,,,,0.085,0.10896,,,,,,,,,0.07584,0.09728,,,,,,,,,0.08196,0.10881,,,,,,,,,0.08956,0.1194,,,,,,,,,0.05519,0.0776,,,,,,,,,0.05922,0.08277,,,,,,,,,0.05325,0.0736,,,,,,,,,0.0687,0.09338,,,,,,,,,0.05251,0.07246 +Pickup,E15,2050,,,,,,,,,,0.00077,,,,,,,,,,0.00071,,,,,,,,,,0.00075,,,,,,,,,,0.00079,,,,,,,,,,0.00054,,,,,,,,,,0.00057,,,,,,,,,,0.0005,,,,,,,,,,0.0006,,,,,,,,,,0.00047,,,,,,,,,,0.00814,,,,,,,,,,0.00701,,,,,,,,,,0.00759,,,,,,,,,,0.00855,,,,,,,,,,0.00408,,,,,,,,,,0.00473,,,,,,,,,,0.00391,,,,,,,,,,0.0055,,,,,,,,,,0.00394,,,,,,,,,,1.00707,,,,,,,,,,0.95886,,,,,,,,,,1.02232,,,,,,,,,,1.11338,,,,,,,,,,0.82345,,,,,,,,,,0.8723,,,,,,,,,,0.85011,,,,,,,,,,0.94156,,,,,,,,,,0.81527,,,,,,,,,,269.4052,,,,,,,,,,271.38023,,,,,,,,,,275.28184,,,,,,,,,,269.20133,,,,,,,,,,275.2527,,,,,,,,,,271.05795,,,,,,,,,,273.22647,,,,,,,,,,273.40459,,,,,,,,,,269.10001,,,,,,,,,,0.00592,,,,,,,,,,0.00593,,,,,,,,,,0.00603,,,,,,,,,,0.0058,,,,,,,,,,0.006,,,,,,,,,,0.00587,,,,,,,,,,0.00592,,,,,,,,,,0.00598,,,,,,,,,,0.00602,,,,,,,,,,0.01873,,,,,,,,,,0.01875,,,,,,,,,,0.01874,,,,,,,,,,0.01865,,,,,,,,,,0.01873,,,,,,,,,,0.01867,,,,,,,,,,0.01872,,,,,,,,,,0.01876,,,,,,,,,,0.01879,,,,,,,,,,0.04531,,,,,,,,,,0.04347,,,,,,,,,,0.04396,,,,,,,,,,0.04653,,,,,,,,,,0.03482,,,,,,,,,,0.03819,,,,,,,,,,0.03571,,,,,,,,,,0.04223,,,,,,,,,,0.037,,,,,,,,,,0.00154,,,,,,,,,,0.00149,,,,,,,,,,0.00151,,,,,,,,,,0.00156,,,,,,,,,,0.00133,,,,,,,,,,0.00135,,,,,,,,,,0.00127,,,,,,,,,,0.00138,,,,,,,,,,0.00123,,,,,,,,,,0.04419,,,,,,,,,,0.04544,,,,,,,,,,0.04954,,,,,,,,,,0.04139,,,,,,,,,,0.04822,,,,,,,,,,0.04398,,,,,,,,,,0.04402,,,,,,,,,,0.04634,,,,,,,,,,0.04579,,,,,,,,,,0.00826,,,,,,,,,,0.0083,,,,,,,,,,0.00888,,,,,,,,,,0.00794,,,,,,,,,,0.00834,,,,,,,,,,0.00785,,,,,,,,,,0.0077,,,,,,,,,,0.0082,,,,,,,,,,0.00785,,,,,,,,,,0.00183,,,,,,,,,,0.00184,,,,,,,,,,0.00187,,,,,,,,,,0.00183,,,,,,,,,,0.00187,,,,,,,,,,0.00184,,,,,,,,,,0.00185,,,,,,,,,,0.00183,,,,,,,,,,0.00169,,,,,,,,,,0.08496,,,,,,,,,,0.07582,,,,,,,,,,0.08192,,,,,,,,,,0.08956,,,,,,,,,,0.05523,,,,,,,,,,0.05924,,,,,,,,,,0.0533,,,,,,,,,,0.06876,,,,,,,,,,0.05252 +Pickup,E85,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,E85,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,E85,2000,,0.00889,0.01362,,,,,,,,,0.00762,0.01164,,,,,,,,,0.00855,0.01314,,,,,,,,,0.0095,0.01463,,,,,,,,,0.00425,0.00642,,,,,,,,,0.00503,0.00796,,,,,,,,,0.00408,0.00613,,,,,,,,,0.0059,0.00897,,,,,,,,,0.00412,0.00618,,,,,,,,,0.17182,0.18842,,,,,,,,,0.16552,0.18484,,,,,,,,,0.1961,0.21682,,,,,,,,,0.20436,0.2246,,,,,,,,,0.17747,0.19866,,,,,,,,,0.18693,0.20742,,,,,,,,,0.18041,0.19545,,,,,,,,,0.17838,0.19643,,,,,,,,,0.15699,0.17386,,,,,,,,,15.56429,19.64453,,,,,,,,,15.25543,19.51119,,,,,,,,,17.46805,22.20168,,,,,,,,,18.48392,23.3484,,,,,,,,,16.56157,21.15178,,,,,,,,,17.20629,21.99701,,,,,,,,,17.22871,21.38882,,,,,,,,,16.43062,20.75712,,,,,,,,,14.21839,18.05726,,,,,,,,,522.00035,529.80963,,,,,,,,,526.0408,533.28548,,,,,,,,,533.75577,541.37839,,,,,,,,,521.323,528.94694,,,,,,,,,534.22176,539.49484,,,,,,,,,525.64348,533.28176,,,,,,,,,530.01657,535.05893,,,,,,,,,530.2981,536.42231,,,,,,,,,522.28412,527.88262,,,,,,,,,0.04692,0.05603,,,,,,,,,0.04705,0.05612,,,,,,,,,0.04796,0.05706,,,,,,,,,0.0459,0.05489,,,,,,,,,0.04771,0.05679,,,,,,,,,0.04654,0.05557,,,,,,,,,0.04691,0.05599,,,,,,,,,0.04745,0.05656,,,,,,,,,0.04777,0.05698,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08204,0.08205,,,,,,,,,0.08202,0.08202,,,,,,,,,0.0816,0.0816,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08168,0.08168,,,,,,,,,0.08189,0.0819,,,,,,,,,0.08207,0.08208,,,,,,,,,0.08225,0.08226,,,,,,,,,2.04777,2.49274,,,,,,,,,2.02209,2.4919,,,,,,,,,2.26042,2.76094,,,,,,,,,2.34025,2.84613,,,,,,,,,2.20559,2.7158,,,,,,,,,2.26855,2.76316,,,,,,,,,2.24616,2.69524,,,,,,,,,2.33326,2.81716,,,,,,,,,2.09487,2.54811,,,,,,,,,0.01893,0.0268,,,,,,,,,0.01655,0.02337,,,,,,,,,0.01794,0.02545,,,,,,,,,0.01963,0.02791,,,,,,,,,0.00992,0.01387,,,,,,,,,0.01141,0.01662,,,,,,,,,0.00975,0.01359,,,,,,,,,0.01316,0.01851,,,,,,,,,0.01,0.01392,,,,,,,,,0.08133,0.09903,,,,,,,,,0.07751,0.09277,,,,,,,,,0.08476,0.10171,,,,,,,,,0.08022,0.09898,,,,,,,,,0.06632,0.07501,,,,,,,,,0.06525,0.07698,,,,,,,,,0.0618,0.07021,,,,,,,,,0.07134,0.08323,,,,,,,,,0.06415,0.07268,,,,,,,,,0.04113,0.05679,,,,,,,,,0.03669,0.05018,,,,,,,,,0.04004,0.05504,,,,,,,,,0.04231,0.0589,,,,,,,,,0.02436,0.03204,,,,,,,,,0.02669,0.03692,,,,,,,,,0.02345,0.03088,,,,,,,,,0.03032,0.04085,,,,,,,,,0.0241,0.03165,,,,,,,,,0.01709,0.0153,,,,,,,,,0.01722,0.0154,,,,,,,,,0.01747,0.01563,,,,,,,,,0.01707,0.01527,,,,,,,,,0.01749,0.01558,,,,,,,,,0.01721,0.0154,,,,,,,,,0.01736,0.01545,,,,,,,,,0.01736,0.01549,,,,,,,,,0.0171,0.01524,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,, +Pickup,E85,2005,,0.00381,0.00566,0.01003,,,,,,,,0.00332,0.00491,0.00864,,,,,,,,0.0037,0.00551,0.00974,,,,,,,,0.00405,0.00605,0.01077,,,,,,,,0.00201,0.00295,0.005,,,,,,,,0.0023,0.00352,0.00582,,,,,,,,0.00194,0.00283,0.00478,,,,,,,,0.00265,0.00391,0.00677,,,,,,,,0.00196,0.00286,0.00481,,,,,,,,0.07179,0.06124,0.07902,,,,,,,,0.06595,0.05817,0.07554,,,,,,,,0.07806,0.06843,0.0921,,,,,,,,0.08217,0.07195,0.09618,,,,,,,,0.05837,0.05494,0.07668,,,,,,,,0.06404,0.05964,0.08189,,,,,,,,0.05849,0.05378,0.07482,,,,,,,,0.06453,0.05775,0.07821,,,,,,,,0.05212,0.04792,0.06436,,,,,,,,6.13917,7.94899,11.7889,,,,,,,,6.00238,7.96301,11.75002,,,,,,,,6.74365,9.11337,13.75788,,,,,,,,7.08738,9.59407,14.42737,,,,,,,,6.59948,9.04772,13.39198,,,,,,,,6.73061,9.2748,13.71001,,,,,,,,6.87116,9.18305,13.52869,,,,,,,,6.54762,8.7146,12.8947,,,,,,,,5.83646,7.71253,11.19115,,,,,,,,541.28764,547.15975,553.84105,,,,,,,,545.81402,551.26886,557.22268,,,,,,,,553.3612,559.0968,565.53617,,,,,,,,540.86207,546.6028,553.06829,,,,,,,,555.47426,559.47197,562.90946,,,,,,,,546.40218,552.63369,554.9548,,,,,,,,551.4876,555.318,558.46236,,,,,,,,550.94283,555.57008,560.08848,,,,,,,,542.94525,547.17212,551.00402,,,,,,,,0.00964,0.01141,0.02192,,,,,,,,0.00965,0.01141,0.02191,,,,,,,,0.0098,0.01157,0.0222,,,,,,,,0.00945,0.0112,0.02152,,,,,,,,0.00976,0.01152,0.02211,,,,,,,,0.00955,0.0113,0.0217,,,,,,,,0.00963,0.0114,0.02189,,,,,,,,0.00972,0.01149,0.02207,,,,,,,,0.0098,0.01159,0.02225,,,,,,,,0.02682,0.03359,0.03979,,,,,,,,0.02685,0.03363,0.03984,,,,,,,,0.02685,0.03362,0.03983,,,,,,,,0.02671,0.03345,0.03962,,,,,,,,0.02683,0.03359,0.03979,,,,,,,,0.02674,0.03348,0.03966,,,,,,,,0.0268,0.03357,0.03976,,,,,,,,0.02686,0.03364,0.03985,,,,,,,,0.02692,0.03372,0.03994,,,,,,,,0.87815,1.17316,1.22709,,,,,,,,0.85445,1.16929,1.22046,,,,,,,,0.96182,1.29403,1.3789,,,,,,,,1.00781,1.3525,1.43637,,,,,,,,0.92802,1.26295,1.35107,,,,,,,,0.96398,1.29661,1.38038,,,,,,,,0.95272,1.2626,1.33827,,,,,,,,0.99878,1.32895,1.38996,,,,,,,,0.89553,1.19789,1.24233,,,,,,,,0.0082,0.01119,0.01829,,,,,,,,0.00733,0.00999,0.01617,,,,,,,,0.00791,0.01081,0.01761,,,,,,,,0.00844,0.01157,0.01904,,,,,,,,0.0049,0.00669,0.01039,,,,,,,,0.00542,0.0076,0.01165,,,,,,,,0.00482,0.00656,0.01016,,,,,,,,0.00608,0.0083,0.01321,,,,,,,,0.00493,0.00671,0.01038,,,,,,,,0.05834,0.06511,0.08105,,,,,,,,0.0578,0.06379,0.07759,,,,,,,,0.06317,0.06976,0.08507,,,,,,,,0.05612,0.06326,0.08015,,,,,,,,0.05567,0.05957,0.06767,,,,,,,,0.0525,0.05751,0.06625,,,,,,,,0.05139,0.05518,0.06302,,,,,,,,0.05626,0.06118,0.07206,,,,,,,,0.05349,0.05733,0.06528,,,,,,,,0.02078,0.02678,0.04088,,,,,,,,0.01925,0.02455,0.03676,,,,,,,,0.02094,0.02677,0.04032,,,,,,,,0.02098,0.0273,0.04224,,,,,,,,0.01493,0.01838,0.02555,,,,,,,,0.0154,0.01969,0.02756,,,,,,,,0.01423,0.01758,0.02452,,,,,,,,0.01698,0.02133,0.03096,,,,,,,,0.01467,0.01807,0.0251,,,,,,,,0.01772,0.0158,0.00533,,,,,,,,0.01787,0.01592,0.00536,,,,,,,,0.01812,0.01614,0.00544,,,,,,,,0.01771,0.01578,0.00532,,,,,,,,0.01819,0.01616,0.00542,,,,,,,,0.01789,0.01596,0.00534,,,,,,,,0.01806,0.01604,0.00538,,,,,,,,0.01804,0.01604,0.00539,,,,,,,,0.01778,0.0158,0.0053,,,,,,,,0.38302,0.53409,0.53378,,,,,,,,0.34598,0.49556,0.49307,,,,,,,,0.4063,0.5797,0.57353,,,,,,,,0.42986,0.61198,0.60315,,,,,,,,0.27049,0.41786,0.40359,,,,,,,,0.30479,0.46728,0.44486,,,,,,,,0.26659,0.40431,0.38966,,,,,,,,0.31696,0.4642,0.45459,,,,,,,,0.24114,0.36571,0.35375,,,,,, +Pickup,E85,2010,,0.00157,0.00293,0.0043,0.00842,,,,,,,0.00139,0.00259,0.00378,0.00731,,,,,,,0.00154,0.00288,0.00422,0.00823,,,,,,,0.00168,0.00314,0.00461,0.00908,,,,,,,0.00094,0.0017,0.00243,0.00444,,,,,,,0.00104,0.00195,0.00273,0.00509,,,,,,,0.00091,0.00164,0.00234,0.00425,,,,,,,0.00116,0.00213,0.00309,0.00584,,,,,,,0.00091,0.00165,0.00235,0.00426,,,,,,,0.04677,0.03341,0.02525,0.04146,,,,,,,0.04078,0.03037,0.0232,0.03883,,,,,,,0.04576,0.03578,0.02739,0.0474,,,,,,,0.05084,0.03955,0.03015,0.0508,,,,,,,0.02739,0.02593,0.02064,0.03769,,,,,,,0.03061,0.02873,0.02232,0.04061,,,,,,,0.02681,0.02555,0.02035,0.03688,,,,,,,0.03422,0.02892,0.02244,0.03933,,,,,,,0.02633,0.02357,0.0184,0.0319,,,,,,,2.48402,4.13531,5.57241,8.35138,,,,,,,2.36287,4.08881,5.53815,8.29793,,,,,,,2.48601,4.53252,6.29261,9.75727,,,,,,,2.65742,4.85325,6.75248,10.37233,,,,,,,2.1873,4.32278,6.05932,9.39725,,,,,,,2.2577,4.48457,6.22185,9.69001,,,,,,,2.2801,4.44872,6.21174,9.55128,,,,,,,2.32776,4.32552,5.95406,9.09815,,,,,,,2.04634,3.82493,5.1993,7.82291,,,,,,,503.37632,505.52289,510.00057,526.6621,,,,,,,507.81169,509.68579,513.71689,529.7204,,,,,,,514.74553,516.76509,521.07248,537.67387,,,,,,,503.0749,505.11949,509.47302,525.93084,,,,,,,517.55169,518.49154,520.98227,534.60527,,,,,,,508.87992,511.76392,513.02939,527.23535,,,,,,,513.91733,514.75634,517.08453,530.37056,,,,,,,513.009,514.35323,517.50963,532.15477,,,,,,,505.66937,506.82205,509.56751,523.37215,,,,,,,0.00856,0.00964,0.01155,0.01657,,,,,,,0.00858,0.00964,0.01155,0.01656,,,,,,,0.00872,0.00979,0.0117,0.01675,,,,,,,0.00839,0.00945,0.01133,0.01628,,,,,,,0.00868,0.00975,0.01165,0.01669,,,,,,,0.00849,0.00955,0.01143,0.0164,,,,,,,0.00856,0.00963,0.01153,0.01654,,,,,,,0.00864,0.00972,0.01163,0.01667,,,,,,,0.00871,0.00979,0.01172,0.01681,,,,,,,0.0178,0.02043,0.02664,0.02952,,,,,,,0.01782,0.02045,0.02667,0.02956,,,,,,,0.01781,0.02045,0.02667,0.02955,,,,,,,0.01772,0.02034,0.02653,0.0294,,,,,,,0.0178,0.02043,0.02664,0.02953,,,,,,,0.01774,0.02036,0.02656,0.02943,,,,,,,0.01778,0.02042,0.02662,0.0295,,,,,,,0.01782,0.02046,0.02668,0.02957,,,,,,,0.01786,0.02051,0.02674,0.02963,,,,,,,0.14412,0.25143,0.2523,0.54084,,,,,,,0.13897,0.24912,0.24964,0.53582,,,,,,,0.14195,0.27426,0.27285,0.61142,,,,,,,0.14691,0.29104,0.28735,0.64298,,,,,,,0.13051,0.26103,0.25883,0.59243,,,,,,,0.1362,0.27206,0.26868,0.6098,,,,,,,0.13464,0.26302,0.26017,0.58725,,,,,,,0.14695,0.28088,0.27486,0.6102,,,,,,,0.13569,0.25266,0.24723,0.53862,,,,,,,0.00281,0.00499,0.00696,0.01332,,,,,,,0.00263,0.00464,0.00644,0.01203,,,,,,,0.00276,0.0049,0.00683,0.01298,,,,,,,0.00288,0.00514,0.00719,0.01389,,,,,,,0.00217,0.00376,0.00511,0.00864,,,,,,,0.00226,0.00398,0.00537,0.00935,,,,,,,0.00216,0.00373,0.00505,0.00848,,,,,,,0.0024,0.0042,0.00577,0.0103,,,,,,,0.0022,0.0038,0.00514,0.00863,,,,,,,0.04708,0.05203,0.05658,0.07114,,,,,,,0.04801,0.05252,0.05662,0.06934,,,,,,,0.0524,0.05725,0.06171,0.07583,,,,,,,0.04445,0.04961,0.05442,0.06985,,,,,,,0.05003,0.05343,0.05635,0.06418,,,,,,,0.04594,0.0499,0.05275,0.06166,,,,,,,0.04591,0.04925,0.05211,0.05967,,,,,,,0.04861,0.05256,0.05605,0.06627,,,,,,,0.04786,0.05126,0.05415,0.06181,,,,,,,0.01083,0.01521,0.01923,0.03211,,,,,,,0.01059,0.01458,0.0182,0.02945,,,,,,,0.01141,0.0157,0.01965,0.03214,,,,,,,0.01066,0.01523,0.01948,0.03313,,,,,,,0.00994,0.01295,0.01554,0.02246,,,,,,,0.0096,0.01296,0.01562,0.02351,,,,,,,0.00938,0.01234,0.01487,0.02156,,,,,,,0.01021,0.0137,0.0168,0.02583,,,,,,,0.00969,0.01269,0.01525,0.02202,,,,,,,0.01648,0.0146,0.00491,0.00507,,,,,,,0.01663,0.01472,0.00494,0.0051,,,,,,,0.01685,0.01492,0.00502,0.00518,,,,,,,0.01647,0.01459,0.0049,0.00506,,,,,,,0.01695,0.01497,0.00501,0.00515,,,,,,,0.01666,0.01478,0.00494,0.00507,,,,,,,0.01683,0.01486,0.00498,0.0051,,,,,,,0.0168,0.01485,0.00498,0.00512,,,,,,,0.01656,0.01463,0.0049,0.00504,,,,,,,0.11742,0.17662,0.24186,0.39286,,,,,,,0.09965,0.156,0.21736,0.35775,,,,,,,0.11503,0.18533,0.25819,0.43064,,,,,,,0.12917,0.20575,0.28443,0.46568,,,,,,,0.05916,0.11853,0.178,0.30557,,,,,,,0.06856,0.13478,0.19456,0.33502,,,,,,,0.05633,0.11428,0.17251,0.29534,,,,,,,0.07938,0.1398,0.20126,0.33851,,,,,,,0.05576,0.1072,0.15856,0.26295,,,,, +Pickup,E85,2015,,,0.00141,0.00239,0.00367,0.00664,,,,,,,0.00127,0.00216,0.0033,0.00589,,,,,,,0.00138,0.00235,0.00361,0.00652,,,,,,,0.00147,0.00251,0.00387,0.00705,,,,,,,0.00092,0.00154,0.0023,0.00388,,,,,,,0.00102,0.00168,0.00253,0.00435,,,,,,,0.0009,0.0015,0.00224,0.00375,,,,,,,0.00109,0.00185,0.00279,0.00487,,,,,,,0.0009,0.00151,0.00225,0.00376,,,,,,,0.03538,0.02367,0.02172,0.02701,,,,,,,0.03242,0.02203,0.02057,0.02554,,,,,,,0.03515,0.02568,0.024,0.03032,,,,,,,0.03789,0.02782,0.02594,0.03257,,,,,,,0.02437,0.01981,0.01978,0.02484,,,,,,,0.02708,0.02137,0.02112,0.02659,,,,,,,0.02413,0.01957,0.01966,0.02456,,,,,,,0.02853,0.02152,0.02073,0.02588,,,,,,,0.02369,0.01806,0.0177,0.02171,,,,,,,2.13169,3.74457,5.0528,6.75332,,,,,,,2.12265,3.75641,5.09675,6.78849,,,,,,,2.18773,4.145,5.76744,7.82434,,,,,,,2.33334,4.43013,6.17996,8.33276,,,,,,,2.08632,4.12988,5.79657,7.77338,,,,,,,2.1456,4.20033,5.91149,7.9667,,,,,,,2.17473,4.26746,5.96788,7.96629,,,,,,,2.14407,4.06208,5.60335,7.48997,,,,,,,1.95427,3.65931,4.98153,6.57429,,,,,,,412.344,414.70276,418.56776,441.66463,,,,,,,415.79979,417.88112,421.35861,443.98649,,,,,,,421.55253,423.79446,427.51198,450.7607,,,,,,,412.07344,414.34442,418.10457,441.03181,,,,,,,423.18613,424.31306,426.45163,447.2682,,,,,,,417.65139,417.68612,420.21494,441.36502,,,,,,,420.18245,421.208,423.20687,443.68097,,,,,,,419.72533,421.26454,423.98187,445.56987,,,,,,,413.56135,414.87262,417.22932,437.97869,,,,,,,0.00566,0.00649,0.0077,0.01074,,,,,,,0.00567,0.00649,0.00769,0.01073,,,,,,,0.00576,0.00659,0.00779,0.01085,,,,,,,0.00555,0.00636,0.00755,0.01055,,,,,,,0.00573,0.00656,0.00776,0.01081,,,,,,,0.00561,0.00643,0.00762,0.01063,,,,,,,0.00566,0.00648,0.00768,0.01072,,,,,,,0.00571,0.00654,0.00775,0.0108,,,,,,,0.00576,0.00659,0.00781,0.01089,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01782,0.02074,0.02668,0.02703,,,,,,,0.01782,0.02073,0.02668,0.02703,,,,,,,0.01773,0.02062,0.02654,0.02689,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01774,0.02065,0.02656,0.02691,,,,,,,0.01779,0.0207,0.02663,0.02698,,,,,,,0.01783,0.02074,0.02669,0.02704,,,,,,,0.01787,0.02079,0.02675,0.0271,,,,,,,0.12799,0.15738,0.22971,0.32717,,,,,,,0.12747,0.15532,0.22734,0.32372,,,,,,,0.12888,0.17053,0.24791,0.35916,,,,,,,0.13446,0.18032,0.26185,0.37872,,,,,,,0.11817,0.159,0.23392,0.34165,,,,,,,0.12402,0.16614,0.24361,0.35441,,,,,,,0.12107,0.15993,0.23561,0.34185,,,,,,,0.13274,0.17114,0.24941,0.35856,,,,,,,0.12271,0.1535,0.22395,0.31926,,,,,,,0.00269,0.00442,0.00636,0.01048,,,,,,,0.00256,0.00419,0.00599,0.0097,,,,,,,0.00264,0.00435,0.00625,0.01028,,,,,,,0.00272,0.00449,0.00648,0.01079,,,,,,,0.00219,0.00356,0.00498,0.00764,,,,,,,0.00228,0.00367,0.00517,0.00806,,,,,,,0.00219,0.00355,0.00496,0.00756,,,,,,,0.00238,0.00388,0.00549,0.00866,,,,,,,0.00223,0.00362,0.00504,0.00768,,,,,,,0.04672,0.05055,0.055,0.06468,,,,,,,0.04777,0.05134,0.05543,0.06409,,,,,,,0.05205,0.05581,0.06018,0.06966,,,,,,,0.04399,0.04791,0.05252,0.06274,,,,,,,0.05004,0.05291,0.05601,0.06196,,,,,,,0.04615,0.04891,0.05224,0.05879,,,,,,,0.04594,0.04879,0.05185,0.05764,,,,,,,0.0485,0.05171,0.05531,0.06258,,,,,,,0.0479,0.05079,0.05388,0.05973,,,,,,,0.01051,0.01389,0.01783,0.0264,,,,,,,0.01038,0.01353,0.01715,0.02481,,,,,,,0.01111,0.01443,0.0183,0.02669,,,,,,,0.01025,0.01372,0.0178,0.02684,,,,,,,0.00995,0.01249,0.01524,0.0205,,,,,,,0.00964,0.01223,0.01517,0.02096,,,,,,,0.00941,0.01193,0.01464,0.01976,,,,,,,0.01011,0.01296,0.01614,0.02258,,,,,,,0.00972,0.01228,0.01502,0.02019,,,,,,,0.01191,0.00399,0.00403,0.00425,,,,,,,0.01201,0.00402,0.00406,0.00427,,,,,,,0.01217,0.00408,0.00411,0.00434,,,,,,,0.0119,0.00399,0.00402,0.00425,,,,,,,0.01222,0.00408,0.0041,0.00431,,,,,,,0.01206,0.00402,0.00404,0.00425,,,,,,,0.01213,0.00405,0.00407,0.00427,,,,,,,0.01212,0.00405,0.00408,0.00429,,,,,,,0.01194,0.00399,0.00402,0.00422,,,,,,,0.08849,0.13162,0.20089,0.29689,,,,,,,0.07873,0.12001,0.18688,0.27577,,,,,,,0.08784,0.1405,0.21883,0.32746,,,,,,,0.0954,0.1519,0.2354,0.35136,,,,,,,0.05314,0.0994,0.16827,0.25105,,,,,,,0.06137,0.10849,0.18083,0.2705,,,,,,,0.05142,0.09657,0.16468,0.24498,,,,,,,0.06597,0.11212,0.18154,0.26946,,,,,,,0.05075,0.09035,0.15066,0.22011,,,, +Pickup,E85,2020,,,,0.00117,0.00201,0.00284,0.00569,,,,,,,0.00107,0.00182,0.00257,0.00508,,,,,,,0.00116,0.00197,0.0028,0.0056,,,,,,,0.00122,0.0021,0.00298,0.00602,,,,,,,0.00079,0.00131,0.00181,0.00342,,,,,,,0.00085,0.00143,0.00198,0.00381,,,,,,,0.00077,0.00128,0.00176,0.00331,,,,,,,0.00093,0.00156,0.00218,0.00423,,,,,,,0.00078,0.00129,0.00177,0.00332,,,,,,,0.02708,0.01959,0.01667,0.02125,,,,,,,0.02434,0.01802,0.01557,0.01997,,,,,,,0.02691,0.02103,0.01818,0.02405,,,,,,,0.0292,0.02288,0.01974,0.02596,,,,,,,0.01683,0.01529,0.0141,0.01921,,,,,,,0.01885,0.01675,0.01527,0.02076,,,,,,,0.01646,0.01506,0.01397,0.01898,,,,,,,0.02065,0.01708,0.0152,0.02017,,,,,,,0.01612,0.01387,0.01259,0.01655,,,,,,,1.682,2.53829,3.20349,4.91615,,,,,,,1.6647,2.52474,3.19782,4.92705,,,,,,,1.73294,2.78767,3.61266,5.81664,,,,,,,1.85534,2.99681,3.90054,6.23831,,,,,,,1.61663,2.70499,3.52399,5.70223,,,,,,,1.6534,2.77036,3.62345,5.89859,,,,,,,1.67995,2.79711,3.635,5.84319,,,,,,,1.67187,2.69125,3.45677,5.48578,,,,,,,1.50669,2.40006,3.04139,4.72865,,,,,,,350.03874,352.37195,356.26115,387.01815,,,,,,,352.82186,354.92481,358.47761,388.79932,,,,,,,357.77838,360.02216,363.79343,394.85707,,,,,,,349.79286,352.05372,355.85259,386.43617,,,,,,,358.58441,359.89335,362.2772,390.82394,,,,,,,352.8901,354.42784,357.14757,385.93446,,,,,,,356.00279,357.22444,359.48306,387.62842,,,,,,,355.86684,357.51895,360.40739,389.70566,,,,,,,350.49123,351.94468,354.50405,382.81585,,,,,,,0.00578,0.00654,0.0077,0.01014,,,,,,,0.00579,0.00654,0.00769,0.01012,,,,,,,0.00588,0.00664,0.00779,0.01023,,,,,,,0.00567,0.00641,0.00755,0.00996,,,,,,,0.00585,0.00661,0.00776,0.0102,,,,,,,0.00573,0.00648,0.00762,0.01003,,,,,,,0.00578,0.00653,0.00768,0.01012,,,,,,,0.00583,0.00659,0.00775,0.01019,,,,,,,0.00588,0.00664,0.00781,0.01028,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01782,0.02074,0.02668,0.02668,,,,,,,0.01782,0.02074,0.02667,0.02667,,,,,,,0.01773,0.02063,0.02654,0.02654,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01774,0.02065,0.02656,0.02656,,,,,,,0.01779,0.0207,0.02663,0.02663,,,,,,,0.01783,0.02075,0.02669,0.02669,,,,,,,0.01787,0.02079,0.02675,0.02675,,,,,,,0.08368,0.13491,0.18134,0.25222,,,,,,,0.08263,0.13289,0.17901,0.24905,,,,,,,0.08438,0.14553,0.19463,0.27745,,,,,,,0.08799,0.15466,0.20669,0.29466,,,,,,,0.07463,0.1341,0.18091,0.26017,,,,,,,0.07891,0.14107,0.18989,0.27209,,,,,,,0.07615,0.13536,0.18293,0.26089,,,,,,,0.08433,0.14571,0.19519,0.27522,,,,,,,0.07672,0.12975,0.17393,0.24217,,,,,,,0.00231,0.00374,0.00497,0.00889,,,,,,,0.0022,0.00355,0.00469,0.00828,,,,,,,0.00227,0.00368,0.00488,0.00873,,,,,,,0.00233,0.00379,0.00505,0.00912,,,,,,,0.00191,0.00304,0.00393,0.00663,,,,,,,0.00196,0.00313,0.00407,0.00697,,,,,,,0.00191,0.00303,0.00391,0.00657,,,,,,,0.00206,0.0033,0.00431,0.00745,,,,,,,0.00195,0.00309,0.00398,0.00667,,,,,,,0.04585,0.04904,0.05187,0.06112,,,,,,,0.04697,0.04995,0.05255,0.06093,,,,,,,0.05119,0.05433,0.05712,0.0662,,,,,,,0.04308,0.04634,0.04929,0.05897,,,,,,,0.04943,0.05182,0.05378,0.05983,,,,,,,0.04525,0.04777,0.04987,0.05645,,,,,,,0.04534,0.04771,0.04964,0.05556,,,,,,,0.04779,0.05047,0.05275,0.05995,,,,,,,0.04729,0.04969,0.05164,0.05762,,,,,,,0.00974,0.01256,0.01507,0.02325,,,,,,,0.00967,0.0123,0.01461,0.02202,,,,,,,0.01035,0.01312,0.01559,0.02363,,,,,,,0.00945,0.01234,0.01494,0.02351,,,,,,,0.00941,0.01153,0.01326,0.01862,,,,,,,0.00899,0.01122,0.01307,0.01889,,,,,,,0.00888,0.01098,0.01268,0.01792,,,,,,,0.00949,0.01186,0.01388,0.02025,,,,,,,0.00918,0.01131,0.01303,0.01832,,,,,,,0.00337,0.00339,0.00343,0.00373,,,,,,,0.0034,0.00342,0.00345,0.00374,,,,,,,0.00344,0.00347,0.0035,0.0038,,,,,,,0.00337,0.00339,0.00343,0.00372,,,,,,,0.00345,0.00346,0.00349,0.00376,,,,,,,0.0034,0.00341,0.00344,0.00371,,,,,,,0.00343,0.00344,0.00346,0.00373,,,,,,,0.00343,0.00344,0.00347,0.00375,,,,,,,0.00337,0.00339,0.00341,0.00368,,,,,,,0.07474,0.11011,0.15534,0.24174,,,,,,,0.06586,0.09917,0.14201,0.22324,,,,,,,0.07431,0.11612,0.16637,0.26926,,,,,,,0.08098,0.12618,0.1802,0.29019,,,,,,,0.04207,0.07663,0.11773,0.20104,,,,,,,0.04828,0.08527,0.12915,0.21879,,,,,,,0.04037,0.07416,0.1147,0.19564,,,,,,,0.05397,0.0895,0.1323,0.21745,,,,,,,0.03965,0.06933,0.10518,0.1731,,, +Pickup,E85,2025,,,,,0.00076,0.00125,0.00177,0.00411,,,,,,,0.00069,0.00114,0.0016,0.00368,,,,,,,0.00074,0.00123,0.00174,0.00404,,,,,,,0.00079,0.00131,0.00185,0.00434,,,,,,,0.00051,0.00082,0.00113,0.00249,,,,,,,0.00055,0.00089,0.00123,0.00277,,,,,,,0.0005,0.0008,0.0011,0.00241,,,,,,,0.0006,0.00098,0.00136,0.00307,,,,,,,0.0005,0.00081,0.0011,0.00242,,,,,,,0.02181,0.01428,0.01154,0.01617,,,,,,,0.01898,0.01268,0.0104,0.01491,,,,,,,0.02153,0.01488,0.01221,0.0181,,,,,,,0.0237,0.01636,0.01338,0.01966,,,,,,,0.01125,0.00907,0.00807,0.01334,,,,,,,0.01325,0.01035,0.00904,0.01468,,,,,,,0.01077,0.00878,0.00787,0.01307,,,,,,,0.01509,0.01105,0.00939,0.0145,,,,,,,0.01052,0.00816,0.00717,0.01136,,,,,,,1.11848,1.63456,2.07341,3.47973,,,,,,,1.08011,1.5941,2.0316,3.45027,,,,,,,1.1377,1.76698,2.29902,4.10409,,,,,,,1.22936,1.91603,2.5011,4.42994,,,,,,,0.96919,1.60423,2.11117,3.89127,,,,,,,1.01105,1.66752,2.19965,4.06233,,,,,,,1.00241,1.65574,2.17434,3.98326,,,,,,,1.04115,1.64309,2.1268,3.78999,,,,,,,0.90445,1.42735,1.82691,3.20995,,,,,,,286.08159,287.4676,290.315,327.20839,,,,,,,288.21594,289.40008,291.94332,328.4659,,,,,,,292.33585,293.63208,296.36204,333.70843,,,,,,,285.86614,287.19248,289.96371,326.69096,,,,,,,292.45538,292.9487,294.44054,329.34367,,,,,,,287.95805,288.65799,290.45978,325.48771,,,,,,,290.316,290.73992,292.12654,326.5909,,,,,,,290.4387,291.23099,293.17732,328.76083,,,,,,,285.91149,286.53967,288.19674,322.69894,,,,,,,0.00582,0.00653,0.00767,0.01003,,,,,,,0.00583,0.00654,0.00767,0.01002,,,,,,,0.00592,0.00663,0.00777,0.01013,,,,,,,0.0057,0.00641,0.00753,0.00986,,,,,,,0.00589,0.0066,0.00774,0.01009,,,,,,,0.00577,0.00647,0.00759,0.00992,,,,,,,0.00581,0.00652,0.00766,0.01001,,,,,,,0.00587,0.00658,0.00772,0.01008,,,,,,,0.00592,0.00664,0.00779,0.01017,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02071,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02068,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02077,0.02675,0.02675,,,,,,,0.0518,0.07754,0.10371,0.17615,,,,,,,0.05039,0.07547,0.10122,0.17289,,,,,,,0.05182,0.08213,0.10952,0.1937,,,,,,,0.05416,0.08725,0.11622,0.20622,,,,,,,0.04268,0.07158,0.09683,0.17689,,,,,,,0.04624,0.07666,0.10323,0.18674,,,,,,,0.04351,0.07235,0.09799,0.17722,,,,,,,0.04934,0.07937,0.10632,0.18846,,,,,,,0.04355,0.06939,0.09329,0.16337,,,,,,,0.00149,0.00235,0.0031,0.00641,,,,,,,0.00142,0.00223,0.00293,0.00598,,,,,,,0.00146,0.0023,0.00305,0.0063,,,,,,,0.0015,0.00237,0.00315,0.00657,,,,,,,0.00123,0.00191,0.00246,0.0048,,,,,,,0.00126,0.00196,0.00255,0.00504,,,,,,,0.00123,0.0019,0.00245,0.00476,,,,,,,0.00132,0.00207,0.00269,0.00539,,,,,,,0.00125,0.00194,0.00249,0.00483,,,,,,,0.04406,0.04597,0.04773,0.05547,,,,,,,0.04528,0.04707,0.04868,0.05575,,,,,,,0.04944,0.05132,0.05304,0.06065,,,,,,,0.04126,0.04322,0.04504,0.05311,,,,,,,0.04801,0.04944,0.05066,0.05587,,,,,,,0.04378,0.04529,0.04659,0.05223,,,,,,,0.04393,0.04535,0.04655,0.05166,,,,,,,0.04624,0.04785,0.04926,0.05539,,,,,,,0.04585,0.04729,0.0485,0.05367,,,,,,,0.00816,0.00985,0.0114,0.01825,,,,,,,0.00818,0.00976,0.01118,0.01743,,,,,,,0.0088,0.01046,0.01198,0.01872,,,,,,,0.00784,0.00958,0.01118,0.01832,,,,,,,0.00816,0.00943,0.0105,0.01512,,,,,,,0.00769,0.00903,0.01018,0.01516,,,,,,,0.00763,0.00889,0.00995,0.01448,,,,,,,0.00812,0.00954,0.01079,0.01621,,,,,,,0.00791,0.00919,0.01026,0.01482,,,,,,,0.00275,0.00277,0.00279,0.00315,,,,,,,0.00277,0.00279,0.00281,0.00316,,,,,,,0.00281,0.00283,0.00285,0.00321,,,,,,,0.00275,0.00276,0.00279,0.00314,,,,,,,0.00281,0.00282,0.00283,0.00317,,,,,,,0.00277,0.00278,0.0028,0.00313,,,,,,,0.00279,0.0028,0.00281,0.00314,,,,,,,0.0028,0.0028,0.00282,0.00316,,,,,,,0.00275,0.00276,0.00277,0.00311,,,,,,,0.06389,0.08619,0.11637,0.1918,,,,,,,0.0548,0.07516,0.10288,0.1737,,,,,,,0.06301,0.08842,0.12102,0.21054,,,,,,,0.06967,0.09738,0.13274,0.22869,,,,,,,0.03014,0.04863,0.07204,0.14366,,,,,,,0.03646,0.05677,0.08243,0.15986,,,,,,,0.02838,0.04627,0.06911,0.13874,,,,,,,0.04229,0.06247,0.0884,0.16216,,,,,,,0.02779,0.04361,0.06402,0.12256,, +Pickup,E85,2030,,,,,,0.00075,0.00125,0.00176,0.00323,,,,,,,0.00069,0.00113,0.00159,0.00289,,,,,,,0.00074,0.00123,0.00173,0.00318,,,,,,,0.00078,0.0013,0.00185,0.00341,,,,,,,0.0005,0.00082,0.00112,0.00197,,,,,,,0.00055,0.00089,0.00123,0.00219,,,,,,,0.00049,0.0008,0.0011,0.00191,,,,,,,0.00059,0.00097,0.00136,0.00243,,,,,,,0.0005,0.0008,0.0011,0.00192,,,,,,,0.02027,0.01277,0.01018,0.01305,,,,,,,0.01743,0.01117,0.00905,0.01178,,,,,,,0.01994,0.01314,0.01064,0.01418,,,,,,,0.02206,0.0145,0.0117,0.0155,,,,,,,0.00964,0.00734,0.00649,0.00943,,,,,,,0.01162,0.00855,0.00741,0.0106,,,,,,,0.00912,0.00703,0.00628,0.00916,,,,,,,0.01347,0.00936,0.00787,0.01081,,,,,,,0.00893,0.00658,0.00575,0.00808,,,,,,,0.97232,1.42124,1.81947,2.68038,,,,,,,0.92892,1.37493,1.76992,2.62432,,,,,,,0.98297,1.52633,2.00507,3.08947,,,,,,,1.06579,1.6598,2.1866,3.35065,,,,,,,0.80231,1.34616,1.7955,2.8177,,,,,,,0.84481,1.40798,1.8808,2.96169,,,,,,,0.82778,1.38755,1.84712,2.88449,,,,,,,0.87801,1.39696,1.82889,2.8029,,,,,,,0.74944,1.19956,1.55468,2.34922,,,,,,,260.36452,262.81881,266.92495,289.78278,,,,,,,262.24673,264.52498,268.34998,290.75923,,,,,,,266.0259,268.4239,272.44883,295.46983,,,,,,,260.16315,262.56255,266.59735,289.31316,,,,,,,265.90133,267.5649,270.40396,291.07422,,,,,,,261.87628,263.71053,266.82502,287.81376,,,,,,,263.94189,265.53345,268.26246,288.60885,,,,,,,264.15447,266.08326,269.34768,290.75899,,,,,,,259.97506,261.73392,264.69547,285.25457,,,,,,,0.00581,0.00651,0.00766,0.00997,,,,,,,0.00582,0.00651,0.00766,0.00996,,,,,,,0.00591,0.0066,0.00776,0.01007,,,,,,,0.0057,0.00638,0.00752,0.0098,,,,,,,0.00588,0.00657,0.00772,0.01003,,,,,,,0.00576,0.00644,0.00758,0.00987,,,,,,,0.00581,0.0065,0.00765,0.00995,,,,,,,0.00586,0.00656,0.00771,0.01002,,,,,,,0.00591,0.00661,0.00777,0.01011,,,,,,,0.0178,0.02067,0.02665,0.02665,,,,,,,0.01782,0.0207,0.02668,0.02668,,,,,,,0.01782,0.02069,0.02667,0.02667,,,,,,,0.01773,0.02059,0.02654,0.02654,,,,,,,0.0178,0.02068,0.02665,0.02665,,,,,,,0.01774,0.02061,0.02656,0.02656,,,,,,,0.01779,0.02066,0.02663,0.02663,,,,,,,0.01783,0.02071,0.02669,0.02669,,,,,,,0.01787,0.02075,0.02675,0.02675,,,,,,,0.04104,0.05993,0.08263,0.12928,,,,,,,0.0395,0.05784,0.0801,0.12592,,,,,,,0.04065,0.0627,0.08645,0.13981,,,,,,,0.04241,0.06646,0.0916,0.14855,,,,,,,0.03174,0.05246,0.07408,0.12331,,,,,,,0.035,0.05688,0.07971,0.13152,,,,,,,0.03237,0.05302,0.07494,0.12371,,,,,,,0.03737,0.05901,0.08215,0.13332,,,,,,,0.03235,0.05097,0.07141,0.11468,,,,,,,0.00148,0.00234,0.0031,0.0051,,,,,,,0.00141,0.00222,0.00293,0.00476,,,,,,,0.00146,0.0023,0.00305,0.00501,,,,,,,0.00149,0.00236,0.00315,0.00522,,,,,,,0.00123,0.0019,0.00246,0.00385,,,,,,,0.00126,0.00196,0.00255,0.00404,,,,,,,0.00123,0.0019,0.00245,0.00382,,,,,,,0.00132,0.00206,0.00269,0.0043,,,,,,,0.00125,0.00193,0.00249,0.00387,,,,,,,0.04405,0.04596,0.04772,0.05244,,,,,,,0.04528,0.04705,0.04867,0.05297,,,,,,,0.04943,0.0513,0.05303,0.05768,,,,,,,0.04125,0.0432,0.04503,0.04996,,,,,,,0.048,0.04943,0.05065,0.05379,,,,,,,0.04378,0.04528,0.04659,0.04999,,,,,,,0.04392,0.04534,0.04654,0.04961,,,,,,,0.04623,0.04783,0.04925,0.05296,,,,,,,0.04584,0.04728,0.0485,0.05159,,,,,,,0.00815,0.00983,0.01139,0.01557,,,,,,,0.00817,0.00974,0.01117,0.01498,,,,,,,0.00879,0.01044,0.01198,0.01609,,,,,,,0.00783,0.00956,0.01118,0.01554,,,,,,,0.00815,0.00942,0.0105,0.01327,,,,,,,0.00769,0.00902,0.01017,0.01318,,,,,,,0.00763,0.00888,0.00995,0.01266,,,,,,,0.00811,0.00953,0.01078,0.01406,,,,,,,0.0079,0.00918,0.01025,0.01299,,,,,,,0.00251,0.00253,0.00257,0.00279,,,,,,,0.00252,0.00255,0.00258,0.0028,,,,,,,0.00256,0.00258,0.00262,0.00284,,,,,,,0.0025,0.00253,0.00257,0.00278,,,,,,,0.00256,0.00258,0.0026,0.0028,,,,,,,0.00252,0.00254,0.00257,0.00277,,,,,,,0.00254,0.00256,0.00258,0.00278,,,,,,,0.00254,0.00256,0.00259,0.0028,,,,,,,0.0025,0.00252,0.00255,0.00275,,,,,,,0.06021,0.07904,0.10624,0.16041,,,,,,,0.05113,0.06806,0.09275,0.14228,,,,,,,0.05917,0.08019,0.10927,0.17104,,,,,,,0.06575,0.08876,0.12042,0.18721,,,,,,,0.02637,0.0406,0.06036,0.10457,,,,,,,0.03265,0.04853,0.07046,0.11938,,,,,,,0.0246,0.03828,0.05746,0.10014,,,,,,,0.0385,0.05463,0.07712,0.12531,,,,,,,0.02408,0.03629,0.0535,0.08983, +Pickup,E85,2035,,,,,,,0.00075,0.00125,0.00177,0.00296,,,,,,,0.00069,0.00113,0.00159,0.00265,,,,,,,0.00074,0.00123,0.00174,0.00291,,,,,,,0.00079,0.0013,0.00185,0.00312,,,,,,,0.0005,0.00082,0.00112,0.00181,,,,,,,0.00055,0.00089,0.00123,0.00201,,,,,,,0.00049,0.0008,0.0011,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00222,,,,,,,0.0005,0.00081,0.0011,0.00176,,,,,,,0.02015,0.01276,0.01019,0.01203,,,,,,,0.01733,0.01116,0.00905,0.01073,,,,,,,0.01983,0.01313,0.01065,0.01284,,,,,,,0.02193,0.01449,0.01171,0.01407,,,,,,,0.00959,0.00734,0.0065,0.00806,,,,,,,0.01157,0.00855,0.00741,0.00917,,,,,,,0.00908,0.00703,0.00628,0.00779,,,,,,,0.0134,0.00935,0.00787,0.00955,,,,,,,0.00888,0.00658,0.00576,0.00696,,,,,,,0.9727,1.42238,1.8202,2.43547,,,,,,,0.92959,1.37608,1.77056,2.36988,,,,,,,0.98381,1.52777,2.00581,2.76979,,,,,,,1.06671,1.66135,2.1874,3.00908,,,,,,,0.80406,1.34756,1.79593,2.47612,,,,,,,0.84647,1.40943,1.88129,2.61051,,,,,,,0.82962,1.38896,1.84752,2.53495,,,,,,,0.87935,1.39821,1.82943,2.49211,,,,,,,0.75084,1.20057,1.55509,2.08006,,,,,,,260.31047,262.82875,266.94563,277.96108,,,,,,,262.19583,264.53424,268.36876,278.84923,,,,,,,265.9724,268.43366,272.4687,283.39168,,,,,,,260.10926,262.57218,266.61711,277.50646,,,,,,,265.8619,267.5714,270.4174,278.9889,,,,,,,261.83373,263.71764,266.84,275.91581,,,,,,,263.90371,265.53953,268.27494,276.61444,,,,,,,264.11009,266.09083,269.36337,278.75715,,,,,,,259.93577,261.74105,264.71003,273.42993,,,,,,,0.0058,0.00651,0.00766,0.00998,,,,,,,0.0058,0.00651,0.00766,0.00997,,,,,,,0.00589,0.00661,0.00776,0.01008,,,,,,,0.00568,0.00638,0.00752,0.00981,,,,,,,0.00587,0.00658,0.00773,0.01004,,,,,,,0.00574,0.00645,0.00759,0.00988,,,,,,,0.00579,0.0065,0.00765,0.00996,,,,,,,0.00585,0.00656,0.00771,0.01003,,,,,,,0.00589,0.00661,0.00778,0.01012,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02072,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02069,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02078,0.02675,0.02675,,,,,,,0.041,0.06006,0.08268,0.11314,,,,,,,0.03947,0.05796,0.08015,0.10973,,,,,,,0.04063,0.06284,0.0865,0.12082,,,,,,,0.0424,0.06661,0.09165,0.12807,,,,,,,0.03175,0.0526,0.07412,0.10436,,,,,,,0.03501,0.05702,0.07975,0.11195,,,,,,,0.03238,0.05316,0.07498,0.10483,,,,,,,0.03736,0.05915,0.08219,0.11394,,,,,,,0.03236,0.0511,0.07144,0.09781,,,,,,,0.00148,0.00234,0.0031,0.00469,,,,,,,0.00141,0.00222,0.00293,0.00438,,,,,,,0.00146,0.0023,0.00305,0.0046,,,,,,,0.0015,0.00237,0.00315,0.00479,,,,,,,0.00123,0.0019,0.00246,0.00354,,,,,,,0.00126,0.00196,0.00255,0.00372,,,,,,,0.00123,0.0019,0.00245,0.00352,,,,,,,0.00132,0.00207,0.00269,0.00396,,,,,,,0.00125,0.00194,0.00249,0.00357,,,,,,,0.04406,0.04596,0.04772,0.05149,,,,,,,0.04528,0.04706,0.04868,0.0521,,,,,,,0.04943,0.05131,0.05304,0.05674,,,,,,,0.04126,0.04321,0.04504,0.04898,,,,,,,0.048,0.04944,0.05066,0.05312,,,,,,,0.04378,0.04529,0.04659,0.04928,,,,,,,0.04392,0.04535,0.04654,0.04896,,,,,,,0.04623,0.04784,0.04925,0.05219,,,,,,,0.04585,0.04729,0.0485,0.05093,,,,,,,0.00815,0.00984,0.0114,0.01473,,,,,,,0.00817,0.00975,0.01118,0.01421,,,,,,,0.00879,0.01045,0.01198,0.01526,,,,,,,0.00784,0.00957,0.01118,0.01467,,,,,,,0.00815,0.00942,0.0105,0.01268,,,,,,,0.00769,0.00902,0.01018,0.01255,,,,,,,0.00763,0.00889,0.00995,0.01208,,,,,,,0.00811,0.00953,0.01079,0.01338,,,,,,,0.00791,0.00918,0.01025,0.0124,,,,,,,0.00251,0.00253,0.00257,0.00268,,,,,,,0.00252,0.00255,0.00258,0.00268,,,,,,,0.00256,0.00258,0.00262,0.00273,,,,,,,0.0025,0.00253,0.00257,0.00267,,,,,,,0.00256,0.00258,0.0026,0.00269,,,,,,,0.00252,0.00254,0.00257,0.00266,,,,,,,0.00254,0.00256,0.00258,0.00266,,,,,,,0.00254,0.00256,0.00259,0.00268,,,,,,,0.0025,0.00252,0.00255,0.00263,,,,,,,0.06006,0.07914,0.10633,0.15021,,,,,,,0.05101,0.06816,0.09282,0.13194,,,,,,,0.05903,0.0803,0.10936,0.15766,,,,,,,0.06559,0.08888,0.12052,0.17317,,,,,,,0.02632,0.04069,0.06041,0.09099,,,,,,,0.03259,0.04862,0.07052,0.10531,,,,,,,0.02456,0.03836,0.0575,0.08674,,,,,,,0.03842,0.05472,0.07719,0.11274,,,,,,,0.02404,0.03636,0.05354,0.07871 +Pickup,E85,2040,,,,,,,,0.00075,0.00125,0.00176,,,,,,,,0.00069,0.00113,0.00159,,,,,,,,0.00074,0.00123,0.00174,,,,,,,,0.00078,0.0013,0.00185,,,,,,,,0.0005,0.00082,0.00112,,,,,,,,0.00055,0.00089,0.00123,,,,,,,,0.00049,0.0008,0.0011,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.0005,0.00081,0.0011,,,,,,,,0.02016,0.01276,0.01019,,,,,,,,0.01734,0.01116,0.00905,,,,,,,,0.01984,0.01312,0.01065,,,,,,,,0.02194,0.01448,0.01171,,,,,,,,0.00959,0.00733,0.00649,,,,,,,,0.01157,0.00855,0.00741,,,,,,,,0.00908,0.00702,0.00628,,,,,,,,0.01341,0.00935,0.00787,,,,,,,,0.00889,0.00658,0.00576,,,,,,,,0.97133,1.42139,1.81973,,,,,,,,0.92825,1.37515,1.77015,,,,,,,,0.98225,1.52666,2.00534,,,,,,,,1.06501,1.66015,2.18689,,,,,,,,0.80264,1.34667,1.79565,,,,,,,,0.84498,1.40849,1.88097,,,,,,,,0.82819,1.38808,1.84726,,,,,,,,0.87791,1.39731,1.82908,,,,,,,,0.74962,1.19987,1.55483,,,,,,,,260.29598,262.81012,266.93274,,,,,,,,262.18236,264.51678,268.35701,,,,,,,,265.95811,268.41523,272.45615,,,,,,,,260.09501,262.55362,266.60454,,,,,,,,265.85198,267.55834,270.40867,,,,,,,,261.82278,263.70337,266.8306,,,,,,,,263.89404,265.52697,268.2671,,,,,,,,264.09855,266.07588,269.35358,,,,,,,,259.92536,261.72755,264.70121,,,,,,,,0.00579,0.0065,0.00766,,,,,,,,0.0058,0.00651,0.00766,,,,,,,,0.00589,0.0066,0.00776,,,,,,,,0.00568,0.00638,0.00752,,,,,,,,0.00586,0.00657,0.00773,,,,,,,,0.00574,0.00644,0.00758,,,,,,,,0.00579,0.0065,0.00765,,,,,,,,0.00584,0.00655,0.00771,,,,,,,,0.00589,0.00661,0.00777,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01782,0.02071,0.02668,,,,,,,,0.01782,0.02071,0.02667,,,,,,,,0.01773,0.0206,0.02654,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01774,0.02062,0.02656,,,,,,,,0.01779,0.02068,0.02663,,,,,,,,0.01783,0.02072,0.02669,,,,,,,,0.01787,0.02077,0.02675,,,,,,,,0.04096,0.05997,0.08265,,,,,,,,0.03942,0.05788,0.08012,,,,,,,,0.04057,0.06274,0.08647,,,,,,,,0.04234,0.06652,0.09162,,,,,,,,0.03171,0.05252,0.07409,,,,,,,,0.03496,0.05693,0.07973,,,,,,,,0.03233,0.05307,0.07496,,,,,,,,0.03731,0.05906,0.08217,,,,,,,,0.03231,0.05102,0.07142,,,,,,,,0.00148,0.00234,0.0031,,,,,,,,0.00141,0.00222,0.00293,,,,,,,,0.00146,0.0023,0.00305,,,,,,,,0.00149,0.00237,0.00315,,,,,,,,0.00123,0.0019,0.00246,,,,,,,,0.00126,0.00196,0.00255,,,,,,,,0.00123,0.0019,0.00245,,,,,,,,0.00132,0.00206,0.00269,,,,,,,,0.00125,0.00194,0.00249,,,,,,,,0.04405,0.04596,0.04772,,,,,,,,0.04528,0.04706,0.04867,,,,,,,,0.04943,0.0513,0.05303,,,,,,,,0.04125,0.04321,0.04503,,,,,,,,0.048,0.04944,0.05066,,,,,,,,0.04378,0.04528,0.04659,,,,,,,,0.04392,0.04534,0.04654,,,,,,,,0.04623,0.04784,0.04925,,,,,,,,0.04584,0.04729,0.0485,,,,,,,,0.00815,0.00984,0.0114,,,,,,,,0.00817,0.00974,0.01118,,,,,,,,0.00879,0.01045,0.01198,,,,,,,,0.00783,0.00956,0.01118,,,,,,,,0.00815,0.00942,0.0105,,,,,,,,0.00769,0.00902,0.01018,,,,,,,,0.00763,0.00888,0.00995,,,,,,,,0.00811,0.00953,0.01078,,,,,,,,0.0079,0.00918,0.01025,,,,,,,,0.00251,0.00253,0.00257,,,,,,,,0.00252,0.00255,0.00258,,,,,,,,0.00256,0.00258,0.00262,,,,,,,,0.0025,0.00253,0.00257,,,,,,,,0.00256,0.00258,0.0026,,,,,,,,0.00252,0.00254,0.00257,,,,,,,,0.00254,0.00256,0.00258,,,,,,,,0.00254,0.00256,0.00259,,,,,,,,0.0025,0.00252,0.00255,,,,,,,,0.05999,0.07904,0.10627,,,,,,,,0.05094,0.06807,0.09277,,,,,,,,0.05895,0.08019,0.1093,,,,,,,,0.06551,0.08876,0.12046,,,,,,,,0.02628,0.04062,0.06038,,,,,,,,0.03255,0.04855,0.07048,,,,,,,,0.02453,0.0383,0.05748,,,,,,,,0.03837,0.05464,0.07715,,,,,,,,0.02401,0.0363,0.05352 +Pickup,E85,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00113,,,,,,,,,0.00074,0.00123,,,,,,,,,0.00078,0.0013,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00054,0.00089,,,,,,,,,0.00049,0.0008,,,,,,,,,0.00059,0.00097,,,,,,,,,0.0005,0.00081,,,,,,,,,0.02016,0.01276,,,,,,,,,0.01734,0.01116,,,,,,,,,0.01983,0.01313,,,,,,,,,0.02194,0.01449,,,,,,,,,0.00959,0.00733,,,,,,,,,0.01157,0.00855,,,,,,,,,0.00908,0.00702,,,,,,,,,0.01341,0.00935,,,,,,,,,0.00889,0.00658,,,,,,,,,0.97057,1.42111,,,,,,,,,0.92751,1.37486,,,,,,,,,0.9814,1.5263,,,,,,,,,1.06408,1.65977,,,,,,,,,0.80191,1.34636,,,,,,,,,0.84421,1.40815,,,,,,,,,0.82745,1.38777,,,,,,,,,0.87715,1.39702,,,,,,,,,0.74899,1.19964,,,,,,,,,260.2849,262.80624,,,,,,,,,262.17197,264.51296,,,,,,,,,265.94722,268.4114,,,,,,,,,260.08405,262.54972,,,,,,,,,265.84418,267.55582,,,,,,,,,261.81425,263.70045,,,,,,,,,263.88663,265.52482,,,,,,,,,264.08983,266.07286,,,,,,,,,259.91741,261.72502,,,,,,,,,0.00579,0.0065,,,,,,,,,0.0058,0.0065,,,,,,,,,0.00589,0.0066,,,,,,,,,0.00567,0.00638,,,,,,,,,0.00586,0.00657,,,,,,,,,0.00574,0.00644,,,,,,,,,0.00578,0.00649,,,,,,,,,0.00584,0.00655,,,,,,,,,0.00588,0.0066,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01782,0.02071,,,,,,,,,0.01782,0.0207,,,,,,,,,0.01773,0.0206,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01774,0.02062,,,,,,,,,0.01779,0.02067,,,,,,,,,0.01783,0.02072,,,,,,,,,0.01787,0.02076,,,,,,,,,0.04093,0.05995,,,,,,,,,0.0394,0.05785,,,,,,,,,0.04054,0.06271,,,,,,,,,0.0423,0.06649,,,,,,,,,0.03168,0.05249,,,,,,,,,0.03493,0.05691,,,,,,,,,0.03231,0.05305,,,,,,,,,0.03728,0.05903,,,,,,,,,0.03229,0.051,,,,,,,,,0.00148,0.00234,,,,,,,,,0.00141,0.00222,,,,,,,,,0.00145,0.0023,,,,,,,,,0.00149,0.00237,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00126,0.00196,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00132,0.00206,,,,,,,,,0.00125,0.00194,,,,,,,,,0.04405,0.04596,,,,,,,,,0.04527,0.04705,,,,,,,,,0.04942,0.0513,,,,,,,,,0.04125,0.0432,,,,,,,,,0.048,0.04943,,,,,,,,,0.04378,0.04528,,,,,,,,,0.04392,0.04534,,,,,,,,,0.04623,0.04784,,,,,,,,,0.04584,0.04728,,,,,,,,,0.00815,0.00983,,,,,,,,,0.00817,0.00974,,,,,,,,,0.00878,0.01044,,,,,,,,,0.00783,0.00956,,,,,,,,,0.00815,0.00942,,,,,,,,,0.00768,0.00902,,,,,,,,,0.00763,0.00888,,,,,,,,,0.00811,0.00953,,,,,,,,,0.0079,0.00918,,,,,,,,,0.00251,0.00253,,,,,,,,,0.00252,0.00255,,,,,,,,,0.00256,0.00258,,,,,,,,,0.0025,0.00253,,,,,,,,,0.00256,0.00258,,,,,,,,,0.00252,0.00254,,,,,,,,,0.00254,0.00256,,,,,,,,,0.00254,0.00256,,,,,,,,,0.0025,0.00252,,,,,,,,,0.05994,0.07901,,,,,,,,,0.0509,0.06804,,,,,,,,,0.0589,0.08016,,,,,,,,,0.06546,0.08873,,,,,,,,,0.02626,0.0406,,,,,,,,,0.03252,0.04852,,,,,,,,,0.0245,0.03828,,,,,,,,,0.03834,0.05462,,,,,,,,,0.02399,0.03629 +Pickup,E85,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00074,,,,,,,,,,0.00078,,,,,,,,,,0.0005,,,,,,,,,,0.00054,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.0005,,,,,,,,,,0.02016,,,,,,,,,,0.01734,,,,,,,,,,0.01983,,,,,,,,,,0.02194,,,,,,,,,,0.00959,,,,,,,,,,0.01157,,,,,,,,,,0.00908,,,,,,,,,,0.01341,,,,,,,,,,0.00888,,,,,,,,,,0.97058,,,,,,,,,,0.92752,,,,,,,,,,0.98142,,,,,,,,,,1.0641,,,,,,,,,,0.80192,,,,,,,,,,0.84422,,,,,,,,,,0.82746,,,,,,,,,,0.87716,,,,,,,,,,0.749,,,,,,,,,,260.28497,,,,,,,,,,262.17179,,,,,,,,,,265.94707,,,,,,,,,,260.08392,,,,,,,,,,265.84404,,,,,,,,,,261.81411,,,,,,,,,,263.88671,,,,,,,,,,264.0896,,,,,,,,,,259.91729,,,,,,,,,,0.00579,,,,,,,,,,0.0058,,,,,,,,,,0.00589,,,,,,,,,,0.00567,,,,,,,,,,0.00586,,,,,,,,,,0.00574,,,,,,,,,,0.00578,,,,,,,,,,0.00584,,,,,,,,,,0.00588,,,,,,,,,,0.0178,,,,,,,,,,0.01782,,,,,,,,,,0.01782,,,,,,,,,,0.01773,,,,,,,,,,0.0178,,,,,,,,,,0.01774,,,,,,,,,,0.01779,,,,,,,,,,0.01783,,,,,,,,,,0.01787,,,,,,,,,,0.04093,,,,,,,,,,0.0394,,,,,,,,,,0.04054,,,,,,,,,,0.04231,,,,,,,,,,0.03168,,,,,,,,,,0.03493,,,,,,,,,,0.03231,,,,,,,,,,0.03728,,,,,,,,,,0.03229,,,,,,,,,,0.00148,,,,,,,,,,0.00141,,,,,,,,,,0.00145,,,,,,,,,,0.00149,,,,,,,,,,0.00123,,,,,,,,,,0.00126,,,,,,,,,,0.00123,,,,,,,,,,0.00132,,,,,,,,,,0.00125,,,,,,,,,,0.04405,,,,,,,,,,0.04527,,,,,,,,,,0.04942,,,,,,,,,,0.04125,,,,,,,,,,0.048,,,,,,,,,,0.04378,,,,,,,,,,0.04392,,,,,,,,,,0.04623,,,,,,,,,,0.04584,,,,,,,,,,0.00815,,,,,,,,,,0.00817,,,,,,,,,,0.00878,,,,,,,,,,0.00783,,,,,,,,,,0.00815,,,,,,,,,,0.00768,,,,,,,,,,0.00763,,,,,,,,,,0.00811,,,,,,,,,,0.0079,,,,,,,,,,0.00251,,,,,,,,,,0.00252,,,,,,,,,,0.00256,,,,,,,,,,0.0025,,,,,,,,,,0.00256,,,,,,,,,,0.00252,,,,,,,,,,0.00254,,,,,,,,,,0.00254,,,,,,,,,,0.0025,,,,,,,,,,0.05994,,,,,,,,,,0.0509,,,,,,,,,,0.0589,,,,,,,,,,0.06546,,,,,,,,,,0.02626,,,,,,,,,,0.03252,,,,,,,,,,0.0245,,,,,,,,,,0.03834,,,,,,,,,,0.02399 +Pickup,ELC,1990,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03804,,,,,,,,,,0.04547,,,,,,,,,,0.04117,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,1995,0.04086,0.04086,,,,,,,,,0.04226,0.04226,,,,,,,,,0.04628,0.04628,,,,,,,,,0.03802,0.03802,,,,,,,,,0.04546,0.04546,,,,,,,,,0.04115,0.04115,,,,,,,,,0.0414,0.04139,,,,,,,,,0.04345,0.04345,,,,,,,,,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2000,0.04087,0.04086,0.04086,,,,,,,,0.04226,0.04226,0.04226,,,,,,,,0.04629,0.04628,0.04628,,,,,,,,0.03803,0.03802,0.03802,,,,,,,,0.04547,0.04546,0.04546,,,,,,,,0.04116,0.04115,0.04115,,,,,,,,0.0414,0.0414,0.04139,,,,,,,,0.04346,0.04345,0.04345,,,,,,,,0.04327,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2005,0.04088,0.04088,0.04087,0.04087,,,,,,,0.04228,0.04227,0.04227,0.04227,,,,,,,0.0463,0.04629,0.04629,0.04629,,,,,,,0.03804,0.03804,0.03803,0.03803,,,,,,,0.04548,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04117,0.04117,0.04116,,,,,,,0.04142,0.04141,0.04141,0.04141,,,,,,,0.04347,0.04346,0.04346,0.04346,,,,,,,0.04329,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00461,0.00735,0.01002,0.02419,,,,,,,0.00422,0.00653,0.00888,0.02126,,,,,,,0.00489,0.00602,0.00813,0.0231,,,,,,,0.00503,0.00746,0.01019,0.02536,,,,,,,0.00294,0.0046,0.00628,0.01327,,,,,,,0.00331,0.0047,0.0064,0.01503,,,,,,,0.00285,0.00434,0.0059,0.01265,,,,,,,0.00362,0.0052,0.00707,0.01704,,,,,,,0.00263,0.00393,0.00532,0.01261,,,,,,,0.0508,0.05663,0.06269,0.09455,,,,,,,0.05134,0.05618,0.06148,0.0892,,,,,,,0.05696,0.05906,0.06378,0.0976,,,,,,,0.04901,0.05418,0.06036,0.09466,,,,,,,0.0517,0.0551,0.05878,0.07417,,,,,,,0.04825,0.05103,0.05475,0.07388,,,,,,,0.04743,0.05048,0.05385,0.06862,,,,,,,0.05122,0.05449,0.05856,0.08076,,,,,,,0.04876,0.05141,0.05438,0.07035,,,,,,,0.0141,0.01926,0.02462,0.05281,,,,,,,0.01351,0.0178,0.02249,0.04702,,,,,,,0.01544,0.0173,0.02148,0.0514,,,,,,,0.01467,0.01925,0.02472,0.05506,,,,,,,0.01141,0.01442,0.01768,0.0313,,,,,,,0.01162,0.01409,0.01738,0.03431,,,,,,,0.0107,0.01341,0.0164,0.02946,,,,,,,0.01251,0.01541,0.01901,0.03864,,,,,,,0.01046,0.01282,0.01544,0.02957,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2010,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00277,0.00467,0.00659,0.01716,,,,,,,0.00258,0.00432,0.00611,0.01532,,,,,,,0.00233,0.00389,0.00632,0.01635,,,,,,,0.00281,0.00476,0.00681,0.0179,,,,,,,0.00224,0.00368,0.00491,0.01041,,,,,,,0.00218,0.00359,0.0051,0.0114,,,,,,,0.00212,0.00348,0.00462,0.0098,,,,,,,0.00224,0.00372,0.00539,0.01262,,,,,,,0.0019,0.0031,0.00449,0.00967,,,,,,,0.04704,0.0514,0.05589,0.07973,,,,,,,0.04794,0.05187,0.05601,0.07668,,,,,,,0.05138,0.05487,0.06064,0.08326,,,,,,,0.04438,0.04884,0.05368,0.07885,,,,,,,0.0502,0.05331,0.05601,0.06816,,,,,,,0.04579,0.04885,0.05225,0.06624,,,,,,,0.04588,0.04878,0.05125,0.06262,,,,,,,0.04831,0.05153,0.05532,0.07146,,,,,,,0.04723,0.04978,0.05285,0.06419,,,,,,,0.01078,0.01464,0.01861,0.0397,,,,,,,0.01051,0.01399,0.01766,0.03594,,,,,,,0.01051,0.0136,0.0187,0.03871,,,,,,,0.01058,0.01452,0.01881,0.04107,,,,,,,0.01008,0.01284,0.01523,0.02597,,,,,,,0.00945,0.01216,0.01517,0.02755,,,,,,,0.00935,0.01191,0.0141,0.02416,,,,,,,0.00994,0.01279,0.01614,0.03042,,,,,,,0.00912,0.01138,0.0141,0.02412,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2015,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00236,0.00401,0.00584,0.01128,,,,,,,0.00224,0.00382,0.00553,0.01038,,,,,,,0.00203,0.00389,0.00565,0.01079,,,,,,,0.00237,0.00407,0.00595,0.01163,,,,,,,0.00203,0.00332,0.00471,0.00801,,,,,,,0.00197,0.00339,0.00484,0.00843,,,,,,,0.00194,0.00316,0.00447,0.00751,,,,,,,0.00199,0.0035,0.00502,0.009,,,,,,,0.00174,0.00308,0.00435,0.00734,,,,,,,0.04603,0.04969,0.05391,0.06664,,,,,,,0.04711,0.05059,0.05449,0.06575,,,,,,,0.05065,0.05481,0.05885,0.07088,,,,,,,0.04324,0.04704,0.05139,0.06479,,,,,,,0.04972,0.05245,0.0555,0.06291,,,,,,,0.0453,0.04835,0.05156,0.05973,,,,,,,0.04545,0.04801,0.05085,0.05764,,,,,,,0.04769,0.05095,0.05435,0.06346,,,,,,,0.04686,0.0497,0.05247,0.05913,,,,,,,0.00989,0.01312,0.01686,0.02812,,,,,,,0.00978,0.01286,0.01631,0.02627,,,,,,,0.00987,0.01354,0.01712,0.02776,,,,,,,0.00957,0.01294,0.01679,0.02864,,,,,,,0.00967,0.01208,0.01478,0.02133,,,,,,,0.00902,0.01172,0.01456,0.02178,,,,,,,0.00896,0.01123,0.01375,0.01975,,,,,,,0.00939,0.01228,0.01528,0.02334,,,,,,,0.0088,0.01131,0.01376,0.01965,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2020,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00215,0.00349,0.00466,0.00836,,,,,,,0.00207,0.00334,0.00442,0.00782,,,,,,,0.00209,0.00339,0.00451,0.00805,,,,,,,0.00218,0.00354,0.00474,0.00857,,,,,,,0.00183,0.00291,0.00379,0.00638,,,,,,,0.00186,0.00297,0.00388,0.00662,,,,,,,0.00175,0.00277,0.00359,0.006,,,,,,,0.00191,0.00307,0.00402,0.00695,,,,,,,0.0017,0.0027,0.0035,0.00585,,,,,,,0.04555,0.04855,0.05126,0.06005,,,,,,,0.04671,0.04953,0.05203,0.06001,,,,,,,0.05082,0.05371,0.05631,0.06468,,,,,,,0.04279,0.04586,0.04866,0.05781,,,,,,,0.04928,0.0516,0.05353,0.05938,,,,,,,0.04507,0.04747,0.0495,0.05576,,,,,,,0.04503,0.04721,0.04899,0.05437,,,,,,,0.0475,0.05002,0.05218,0.05893,,,,,,,0.0468,0.04892,0.05067,0.05592,,,,,,,0.00946,0.01211,0.01451,0.02229,,,,,,,0.00943,0.01192,0.01414,0.0212,,,,,,,0.01001,0.01257,0.01487,0.02228,,,,,,,0.00917,0.01189,0.01437,0.02247,,,,,,,0.00928,0.01133,0.01303,0.01821,,,,,,,0.00882,0.01094,0.01274,0.01827,,,,,,,0.0086,0.01052,0.0121,0.01686,,,,,,,0.00923,0.01145,0.01337,0.01934,,,,,,,0.00875,0.01062,0.01217,0.01681,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2025,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00148,0.00234,0.0031,0.00602,,,,,,,0.00141,0.00222,0.00293,0.00565,,,,,,,0.00146,0.0023,0.00305,0.0058,,,,,,,0.00149,0.00237,0.00315,0.00614,,,,,,,0.00123,0.0019,0.00246,0.00465,,,,,,,0.00126,0.00196,0.00255,0.00482,,,,,,,0.00123,0.0019,0.00245,0.00436,,,,,,,0.00132,0.00206,0.00269,0.00505,,,,,,,0.00125,0.00194,0.00249,0.00428,,,,,,,0.04405,0.04596,0.04772,0.05464,,,,,,,0.04528,0.04706,0.04867,0.05506,,,,,,,0.04943,0.0513,0.05303,0.05951,,,,,,,0.04125,0.04321,0.04503,0.05217,,,,,,,0.048,0.04944,0.05066,0.0556,,,,,,,0.04378,0.04528,0.04659,0.05177,,,,,,,0.04392,0.04534,0.04654,0.05084,,,,,,,0.04623,0.04784,0.04925,0.05468,,,,,,,0.04584,0.04729,0.0485,0.05253,,,,,,,0.00815,0.00984,0.0114,0.01751,,,,,,,0.00817,0.00974,0.01118,0.01682,,,,,,,0.00879,0.01045,0.01198,0.01771,,,,,,,0.00783,0.00956,0.01118,0.01747,,,,,,,0.00815,0.00942,0.0105,0.01486,,,,,,,0.00769,0.00902,0.01018,0.01474,,,,,,,0.00763,0.00888,0.00995,0.01373,,,,,,,0.00811,0.00953,0.01078,0.01558,,,,,,,0.0079,0.00918,0.01025,0.01381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2030,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00148,0.00234,0.00301,0.00497,,,,,,,0.00141,0.00222,0.00286,0.00467,,,,,,,0.00145,0.0023,0.00291,0.00479,,,,,,,0.00149,0.00237,0.00306,0.00508,,,,,,,0.00123,0.0019,0.00245,0.00386,,,,,,,0.00126,0.00196,0.00251,0.004,,,,,,,0.00123,0.0019,0.00232,0.00363,,,,,,,0.00132,0.00206,0.0026,0.00418,,,,,,,0.00125,0.00194,0.00227,0.00355,,,,,,,0.04405,0.04596,0.04757,0.05222,,,,,,,0.04527,0.04705,0.04857,0.05283,,,,,,,0.04942,0.0513,0.05275,0.05719,,,,,,,0.04125,0.0432,0.04487,0.04968,,,,,,,0.048,0.04943,0.05068,0.05387,,,,,,,0.04378,0.04528,0.04655,0.04995,,,,,,,0.04392,0.04534,0.04632,0.04924,,,,,,,0.04623,0.04784,0.04909,0.05273,,,,,,,0.04584,0.04728,0.04807,0.05094,,,,,,,0.00815,0.00983,0.01125,0.01536,,,,,,,0.00817,0.00974,0.01107,0.01484,,,,,,,0.00878,0.01044,0.01169,0.01565,,,,,,,0.00783,0.00956,0.01102,0.01527,,,,,,,0.00815,0.00942,0.01052,0.01334,,,,,,,0.00768,0.00902,0.01013,0.01313,,,,,,,0.00763,0.00888,0.0097,0.01232,,,,,,,0.00811,0.00953,0.01064,0.01386,,,,,,,0.0079,0.00918,0.00986,0.01241,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2035,,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00148,0.00225,0.00299,0.00461,,,,,,,0.00141,0.00216,0.00284,0.00434,,,,,,,0.00145,0.00219,0.0029,0.00445,,,,,,,0.00149,0.00228,0.00303,0.00471,,,,,,,0.00123,0.00189,0.00244,0.00359,,,,,,,0.00126,0.00192,0.0025,0.00371,,,,,,,0.00123,0.00179,0.00231,0.00338,,,,,,,0.00132,0.00198,0.00259,0.00388,,,,,,,0.00125,0.00175,0.00227,0.00329,,,,,,,0.04405,0.04582,0.04752,0.05138,,,,,,,0.04527,0.04695,0.04853,0.05205,,,,,,,0.04942,0.05108,0.05271,0.05639,,,,,,,0.04125,0.04307,0.04481,0.04884,,,,,,,0.048,0.04943,0.05065,0.05326,,,,,,,0.04378,0.04523,0.04652,0.04931,,,,,,,0.04392,0.04515,0.04628,0.04869,,,,,,,0.04623,0.04769,0.04907,0.05205,,,,,,,0.04584,0.04693,0.04806,0.05038,,,,,,,0.00815,0.0097,0.01121,0.01462,,,,,,,0.00817,0.00964,0.01104,0.01415,,,,,,,0.00878,0.01024,0.01172,0.01494,,,,,,,0.00783,0.00942,0.01096,0.01452,,,,,,,0.00815,0.00941,0.01049,0.0128,,,,,,,0.00768,0.00896,0.0101,0.01257,,,,,,,0.00763,0.00871,0.00971,0.01183,,,,,,,0.00811,0.0094,0.01061,0.01325,,,,,,,0.0079,0.00886,0.00986,0.01191,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2040,,,,,,,,0.04087,0.04087,0.04087,,,,,,,,0.04227,0.04227,0.04227,,,,,,,,0.04629,0.04629,0.04629,,,,,,,,0.03803,0.03803,0.03803,,,,,,,,0.04547,0.04547,0.04547,,,,,,,,0.04116,0.04116,0.04116,,,,,,,,0.04141,0.04141,0.04141,,,,,,,,0.04346,0.04346,0.04346,,,,,,,,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00142,0.00225,0.003,,,,,,,,0.00136,0.00215,0.00285,,,,,,,,0.00138,0.00218,0.0029,,,,,,,,0.00144,0.00228,0.00304,,,,,,,,0.00121,0.00188,0.00245,,,,,,,,0.00123,0.00192,0.0025,,,,,,,,0.00115,0.00179,0.00232,,,,,,,,0.00126,0.00198,0.0026,,,,,,,,0.00113,0.00175,0.00227,,,,,,,,0.04396,0.04581,0.04754,,,,,,,,0.0452,0.04694,0.04854,,,,,,,,0.04928,0.05106,0.05272,,,,,,,,0.04117,0.04306,0.04484,,,,,,,,0.04799,0.04942,0.05066,,,,,,,,0.04374,0.04523,0.04654,,,,,,,,0.0438,0.04515,0.0463,,,,,,,,0.04613,0.04769,0.04908,,,,,,,,0.04561,0.04693,0.04806,,,,,,,,0.00805,0.00969,0.01122,,,,,,,,0.00809,0.00963,0.01105,,,,,,,,0.00865,0.01023,0.0117,,,,,,,,0.00774,0.00941,0.01099,,,,,,,,0.00813,0.0094,0.0105,,,,,,,,0.00764,0.00896,0.01011,,,,,,,,0.00751,0.0087,0.00973,,,,,,,,0.00801,0.00939,0.01062,,,,,,,,0.00769,0.00886,0.00986,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2045,,,,,,,,,0.04087,0.04087,,,,,,,,,0.04227,0.04227,,,,,,,,,0.04629,0.04629,,,,,,,,,0.03803,0.03803,,,,,,,,,0.04547,0.04547,,,,,,,,,0.04116,0.04116,,,,,,,,,0.04141,0.04141,,,,,,,,,0.04346,0.04346,,,,,,,,,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00142,0.00224,,,,,,,,,0.00136,0.00214,,,,,,,,,0.00138,0.00217,,,,,,,,,0.00143,0.00226,,,,,,,,,0.00121,0.00187,,,,,,,,,0.00123,0.00191,,,,,,,,,0.00115,0.00178,,,,,,,,,0.00126,0.00197,,,,,,,,,0.00112,0.00175,,,,,,,,,0.04395,0.04577,,,,,,,,,0.04519,0.04691,,,,,,,,,0.04927,0.05103,,,,,,,,,0.04116,0.04301,,,,,,,,,0.04798,0.0494,,,,,,,,,0.04374,0.0452,,,,,,,,,0.04379,0.04512,,,,,,,,,0.04613,0.04766,,,,,,,,,0.04561,0.04692,,,,,,,,,0.00805,0.00966,,,,,,,,,0.00809,0.0096,,,,,,,,,0.00865,0.0102,,,,,,,,,0.00773,0.00937,,,,,,,,,0.00813,0.00938,,,,,,,,,0.00764,0.00893,,,,,,,,,0.0075,0.00867,,,,,,,,,0.00801,0.00937,,,,,,,,,0.00769,0.00885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,ELC,2050,,,,,,,,,,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03803,,,,,,,,,,0.04547,,,,,,,,,,0.04116,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00141,,,,,,,,,,0.00136,,,,,,,,,,0.00137,,,,,,,,,,0.00143,,,,,,,,,,0.0012,,,,,,,,,,0.00122,,,,,,,,,,0.00115,,,,,,,,,,0.00126,,,,,,,,,,0.00112,,,,,,,,,,0.04394,,,,,,,,,,0.04518,,,,,,,,,,0.04926,,,,,,,,,,0.04114,,,,,,,,,,0.04798,,,,,,,,,,0.04373,,,,,,,,,,0.04379,,,,,,,,,,0.04612,,,,,,,,,,0.0456,,,,,,,,,,0.00804,,,,,,,,,,0.00808,,,,,,,,,,0.00864,,,,,,,,,,0.00772,,,,,,,,,,0.00812,,,,,,,,,,0.00763,,,,,,,,,,0.00749,,,,,,,,,,0.008,,,,,,,,,,0.00768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Pickup,GSL,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11442,,,,,,,,,,0.09585,,,,,,,,,,0.12464,,,,,,,,,,0.12966,,,,,,,,,,0.10814,,,,,,,,,,0.11861,,,,,,,,,,0.10835,,,,,,,,,,0.1068,,,,,,,,,,0.08482,,,,,,,,,,70.15811,,,,,,,,,,62.54196,,,,,,,,,,77.96616,,,,,,,,,,80.91697,,,,,,,,,,72.38807,,,,,,,,,,77.997,,,,,,,,,,74.71533,,,,,,,,,,70.08991,,,,,,,,,,57.1543,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.06226,,,,,,,,,,4.76972,,,,,,,,,,5.34074,,,,,,,,,,5.66766,,,,,,,,,,5.23406,,,,,,,,,,5.50192,,,,,,,,,,5.24575,,,,,,,,,,5.53574,,,,,,,,,,4.51405,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02745,,,,,,,,,,0.03097,,,,,,,,,,0.04398,,,,,,,,,,0.04032,,,,,,,,,,0.03589,,,,,,,,,,0.03955,,,,,,,,,,0.03599,,,,,,,,,,0.03558,,,,,,,,,,0.01678,,,,,,,,,,4.22564,,,,,,,,,,3.72577,,,,,,,,,,4.6816,,,,,,,,,,4.84299,,,,,,,,,,4.53843,,,,,,,,,,4.7422,,,,,,,,,,4.52984,,,,,,,,,,4.39906,,,,,,,,,,3.57938,,,,,,,,, +Pickup,GSL,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07834,0.08955,,,,,,,,,0.07253,0.07705,,,,,,,,,0.0878,0.10134,,,,,,,,,0.09006,0.10986,,,,,,,,,0.07892,0.091,,,,,,,,,0.08377,0.10009,,,,,,,,,0.07835,0.09138,,,,,,,,,0.07869,0.09077,,,,,,,,,0.06582,0.0695,,,,,,,,,33.10098,45.87751,,,,,,,,,32.15986,42.12287,,,,,,,,,37.73945,51.15126,,,,,,,,,39.42476,55.14485,,,,,,,,,35.87329,48.96518,,,,,,,,,37.91924,52.52611,,,,,,,,,37.02987,51.08168,,,,,,,,,35.25583,48.79992,,,,,,,,,28.90452,38.98605,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.16127,4.97008,,,,,,,,,4.10575,4.68902,,,,,,,,,4.49028,5.09867,,,,,,,,,4.67966,5.60769,,,,,,,,,4.38662,5.19231,,,,,,,,,4.5827,5.38989,,,,,,,,,4.44028,5.22717,,,,,,,,,4.65406,5.48301,,,,,,,,,3.85393,4.48793,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02146,0.01103,,,,,,,,,0.02436,0.01117,,,,,,,,,0.03475,0.01158,,,,,,,,,0.03159,0.01935,,,,,,,,,0.0286,0.0114,,,,,,,,,0.0313,0.0113,,,,,,,,,0.02863,0.0155,,,,,,,,,0.02813,0.01763,,,,,,,,,0.01323,0.00648,,,,,,,,,2.92649,3.62043,,,,,,,,,2.80136,3.29616,,,,,,,,,3.32222,4.11029,,,,,,,,,3.37334,4.38736,,,,,,,,,3.20876,4.09625,,,,,,,,,3.29169,4.27263,,,,,,,,,3.18059,4.08943,,,,,,,,,3.16823,4.03319,,,,,,,,,2.68496,3.22983,,,,,,,, +Pickup,GSL,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04452,0.06518,0.08837,,,,,,,,0.04162,0.0626,0.07845,,,,,,,,0.05049,0.07551,0.10228,,,,,,,,0.05159,0.07861,0.10452,,,,,,,,0.03887,0.06376,0.08816,,,,,,,,0.04211,0.06812,0.09354,,,,,,,,0.03822,0.06397,0.08493,,,,,,,,0.04204,0.0669,0.08657,,,,,,,,0.03462,0.05792,0.07008,,,,,,,,10.25924,16.32697,30.09906,,,,,,,,9.98254,16.06926,27.40491,,,,,,,,11.91904,19.01514,34.36357,,,,,,,,12.31401,19.77596,34.97153,,,,,,,,9.93079,17.0245,31.42878,,,,,,,,10.63553,17.96475,32.92924,,,,,,,,10.12637,17.55821,31.45074,,,,,,,,10.3463,17.48581,30.53883,,,,,,,,8.45249,15.00519,24.89272,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.51289,2.09817,3.52388,,,,,,,,1.48773,2.07981,3.33735,,,,,,,,1.74442,2.29361,3.74827,,,,,,,,1.78657,2.4447,3.86239,,,,,,,,1.65781,2.2775,3.75943,,,,,,,,1.72771,2.32834,3.81478,,,,,,,,1.68155,2.32093,3.63384,,,,,,,,1.76187,2.41938,3.81055,,,,,,,,1.46662,2.0601,3.17983,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.02295,0.01114,0.01008,,,,,,,,0.02608,0.01132,0.01014,,,,,,,,0.03719,0.01173,0.0103,,,,,,,,0.03387,0.01963,0.01006,,,,,,,,0.03077,0.01166,0.01023,,,,,,,,0.03367,0.01153,0.01008,,,,,,,,0.03086,0.01587,0.01013,,,,,,,,0.0302,0.01797,0.00913,,,,,,,,0.01419,0.00658,0.00474,,,,,,,,0.96721,1.62997,2.94868,,,,,,,,0.9384,1.60171,2.67264,,,,,,,,1.11521,1.90115,3.40351,,,,,,,,1.14458,1.9736,3.45647,,,,,,,,0.9639,1.73705,3.22046,,,,,,,,1.00501,1.80614,3.30293,,,,,,,,0.95405,1.73508,3.11109,,,,,,,,1.01635,1.7985,3.12546,,,,,,,,0.84435,1.56149,2.56228,,,,,,, +Pickup,GSL,2005,0.00212,0.00345,0.00512,0.01381,,,,,,,0.0019,0.00296,0.00438,0.01185,,,,,,,0.00234,0.00262,0.00384,0.01323,,,,,,,0.00243,0.00359,0.00535,0.01487,,,,,,,0.00122,0.00192,0.00282,0.00673,,,,,,,0.00143,0.00196,0.00287,0.00786,,,,,,,0.00115,0.00175,0.00256,0.00624,,,,,,,0.00159,0.00223,0.00328,0.00914,,,,,,,0.00102,0.00151,0.00219,0.00616,,,,,,,0.0304,0.0231,0.02441,0.05089,,,,,,,0.02781,0.02093,0.0227,0.04603,,,,,,,0.03109,0.02347,0.02541,0.05799,,,,,,,0.03159,0.0268,0.02714,0.06115,,,,,,,0.01962,0.01705,0.01961,0.0483,,,,,,,0.0219,0.01846,0.02085,0.05156,,,,,,,0.01879,0.0177,0.01927,0.04665,,,,,,,0.02384,0.02035,0.02093,0.04966,,,,,,,0.01598,0.01375,0.01558,0.04103,,,,,,,4.99765,7.58544,9.83556,17.89797,,,,,,,4.86072,7.46372,9.85161,17.05656,,,,,,,5.37981,8.80655,11.78216,20.64445,,,,,,,5.58924,9.35159,11.56521,21.52199,,,,,,,4.82392,7.90825,10.69778,19.1373,,,,,,,4.98838,8.29473,11.16233,19.90684,,,,,,,4.95523,8.51253,10.80572,19.32202,,,,,,,5.07636,8.7869,10.75709,19.10472,,,,,,,4.01788,7.33294,9.65067,16.43486,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.57688,0.9134,1.18931,1.78731,,,,,,,0.56654,0.89384,1.1866,1.72824,,,,,,,0.61406,0.9886,1.29365,1.95725,,,,,,,0.61236,1.08676,1.35205,2.0448,,,,,,,0.57469,0.95493,1.26301,1.93786,,,,,,,0.59498,0.9886,1.29366,1.97501,,,,,,,0.58325,1.00264,1.26134,1.89346,,,,,,,0.62794,1.04584,1.29154,2.00371,,,,,,,0.49137,0.70134,0.92184,1.73463,,,,,,,0.00461,0.00735,0.01002,0.02419,,,,,,,0.00422,0.00653,0.00888,0.02126,,,,,,,0.00489,0.00602,0.00813,0.0231,,,,,,,0.00503,0.00746,0.01019,0.02536,,,,,,,0.00294,0.0046,0.00628,0.01327,,,,,,,0.00331,0.0047,0.0064,0.01503,,,,,,,0.00285,0.00434,0.0059,0.01265,,,,,,,0.00362,0.0052,0.00707,0.01704,,,,,,,0.00263,0.00393,0.00532,0.01261,,,,,,,0.0508,0.05663,0.06269,0.09455,,,,,,,0.05134,0.05618,0.06148,0.0892,,,,,,,0.05696,0.05906,0.06378,0.0976,,,,,,,0.04901,0.05418,0.06036,0.09466,,,,,,,0.0517,0.0551,0.05878,0.07417,,,,,,,0.04825,0.05103,0.05475,0.07388,,,,,,,0.04743,0.05048,0.05385,0.06862,,,,,,,0.05122,0.05449,0.05856,0.08076,,,,,,,0.04876,0.05141,0.05438,0.07035,,,,,,,0.0141,0.01926,0.02462,0.05281,,,,,,,0.01351,0.0178,0.02249,0.04702,,,,,,,0.01544,0.0173,0.02148,0.0514,,,,,,,0.01467,0.01925,0.02472,0.05506,,,,,,,0.01141,0.01442,0.01768,0.0313,,,,,,,0.01162,0.01409,0.01738,0.03431,,,,,,,0.0107,0.01341,0.0164,0.02946,,,,,,,0.01251,0.01541,0.01901,0.03864,,,,,,,0.01046,0.01282,0.01544,0.02957,,,,,,,0.02405,0.01163,0.01058,0.00353,,,,,,,0.02735,0.01183,0.01066,0.00355,,,,,,,0.03899,0.01224,0.01081,0.0036,,,,,,,0.03553,0.02052,0.01057,0.00352,,,,,,,0.03234,0.01222,0.01082,0.00358,,,,,,,0.03538,0.01208,0.01065,0.00353,,,,,,,0.03246,0.01665,0.01074,0.00355,,,,,,,0.0317,0.01881,0.00963,0.00351,,,,,,,0.0149,0.00689,0.005,0.00324,,,,,,,0.42648,0.52475,0.72106,1.74636,,,,,,,0.39685,0.4901,0.68226,1.61973,,,,,,,0.44587,0.54758,0.76075,1.96562,,,,,,,0.45678,0.61332,0.80526,2.04318,,,,,,,0.31439,0.43792,0.63349,1.79482,,,,,,,0.33942,0.46036,0.65752,1.84916,,,,,,,0.3037,0.44636,0.61847,1.73899,,,,,,,0.37251,0.50954,0.67999,1.82721,,,,,,,0.26545,0.37473,0.53675,1.55347,,,,,, +Pickup,GSL,2010,,0.00157,0.00279,0.00419,0.01064,,,,,,,0.00137,0.00242,0.00368,0.00919,,,,,,,0.00119,0.00209,0.00394,0.01008,,,,,,,0.00165,0.00293,0.00446,0.0114,,,,,,,0.00098,0.0017,0.00241,0.00548,,,,,,,0.00098,0.00169,0.00265,0.00625,,,,,,,0.0009,0.00155,0.00217,0.00497,,,,,,,0.00107,0.00187,0.00296,0.00717,,,,,,,0.00076,0.00131,0.0021,0.00487,,,,,,,0.02165,0.01977,0.01702,0.03478,,,,,,,0.01902,0.01813,0.01548,0.03198,,,,,,,0.02065,0.02041,0.01743,0.03878,,,,,,,0.02443,0.02246,0.01936,0.04164,,,,,,,0.01403,0.01616,0.01352,0.03144,,,,,,,0.01498,0.01685,0.01425,0.03353,,,,,,,0.01448,0.01597,0.01338,0.03062,,,,,,,0.01729,0.01681,0.01489,0.03322,,,,,,,0.0116,0.01246,0.01304,0.0281,,,,,,,3.44122,5.48204,7.17005,12.8182,,,,,,,3.28395,5.43663,7.06009,12.50706,,,,,,,3.80434,6.37546,7.98762,15.05577,,,,,,,3.98428,6.30332,8.47995,15.81808,,,,,,,3.04027,5.57191,7.42771,13.88879,,,,,,,3.25244,5.86101,7.6771,14.49452,,,,,,,3.26874,5.66205,7.60742,14.09616,,,,,,,3.57783,5.74207,7.6032,13.96218,,,,,,,2.90847,5.08664,6.70146,12.06546,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.20883,0.3373,0.30482,0.93964,,,,,,,0.20159,0.33545,0.30099,0.92195,,,,,,,0.20829,0.36041,0.32133,1.05059,,,,,,,0.22515,0.3785,0.33898,1.10943,,,,,,,0.19498,0.34582,0.30516,1.03106,,,,,,,0.20155,0.35686,0.31495,1.05454,,,,,,,0.20478,0.34766,0.30783,1.01449,,,,,,,0.22052,0.35997,0.33564,1.07442,,,,,,,0.1504,0.25481,0.30358,0.93802,,,,,,,0.00277,0.00467,0.00659,0.01716,,,,,,,0.00258,0.00432,0.00611,0.01532,,,,,,,0.00233,0.00389,0.00632,0.01635,,,,,,,0.00281,0.00476,0.00681,0.0179,,,,,,,0.00224,0.00368,0.00491,0.01041,,,,,,,0.00218,0.00359,0.0051,0.0114,,,,,,,0.00212,0.00348,0.00462,0.0098,,,,,,,0.00224,0.00372,0.00539,0.01262,,,,,,,0.0019,0.0031,0.00449,0.00967,,,,,,,0.04704,0.0514,0.05589,0.07973,,,,,,,0.04794,0.05187,0.05601,0.07668,,,,,,,0.05138,0.05487,0.06064,0.08326,,,,,,,0.04438,0.04884,0.05368,0.07885,,,,,,,0.0502,0.05331,0.05601,0.06816,,,,,,,0.04579,0.04885,0.05225,0.06624,,,,,,,0.04588,0.04878,0.05125,0.06262,,,,,,,0.04831,0.05153,0.05532,0.07146,,,,,,,0.04723,0.04978,0.05285,0.06419,,,,,,,0.01078,0.01464,0.01861,0.0397,,,,,,,0.01051,0.01399,0.01766,0.03594,,,,,,,0.01051,0.0136,0.0187,0.03871,,,,,,,0.01058,0.01452,0.01881,0.04107,,,,,,,0.01008,0.01284,0.01523,0.02597,,,,,,,0.00945,0.01216,0.01517,0.02755,,,,,,,0.00935,0.01191,0.0141,0.02416,,,,,,,0.00994,0.01279,0.01614,0.03042,,,,,,,0.00912,0.01138,0.0141,0.02412,,,,,,,0.01101,0.00996,0.00335,0.00348,,,,,,,0.01121,0.01004,0.00337,0.0035,,,,,,,0.0116,0.01018,0.00342,0.00356,,,,,,,0.01944,0.00995,0.00335,0.00348,,,,,,,0.01159,0.01021,0.00342,0.00353,,,,,,,0.01145,0.01005,0.00337,0.00348,,,,,,,0.0158,0.01014,0.00339,0.0035,,,,,,,0.01783,0.00907,0.00335,0.00346,,,,,,,0.00653,0.00471,0.00309,0.0032,,,,,,,0.17173,0.25392,0.35959,1.19151,,,,,,,0.15094,0.23024,0.32985,1.12703,,,,,,,0.16693,0.26014,0.36786,1.31129,,,,,,,0.19399,0.28573,0.40283,1.37226,,,,,,,0.11209,0.19911,0.30088,1.17986,,,,,,,0.11929,0.20746,0.30927,1.20916,,,,,,,0.11318,0.19466,0.29494,1.14792,,,,,,,0.14195,0.22168,0.33388,1.22697,,,,,,,0.10374,0.17458,0.29386,1.08082,,,,, +Pickup,GSL,2015,,,0.00123,0.00219,0.0034,0.00724,,,,,,,0.00111,0.00199,0.00308,0.0064,,,,,,,0.00096,0.00209,0.00324,0.00684,,,,,,,0.00127,0.00229,0.00356,0.00766,,,,,,,0.00086,0.00146,0.0022,0.00419,,,,,,,0.00084,0.00156,0.00238,0.00463,,,,,,,0.00079,0.00134,0.00201,0.00378,,,,,,,0.0009,0.00168,0.00257,0.00515,,,,,,,0.00067,0.00129,0.00195,0.00367,,,,,,,0.0161,0.01245,0.01335,0.02003,,,,,,,0.01479,0.0115,0.0125,0.01863,,,,,,,0.01536,0.01279,0.01394,0.02146,,,,,,,0.01683,0.0141,0.01531,0.02343,,,,,,,0.01147,0.01026,0.01178,0.01756,,,,,,,0.01216,0.01086,0.01235,0.01859,,,,,,,0.01154,0.01025,0.01181,0.01741,,,,,,,0.01273,0.01123,0.01255,0.01882,,,,,,,0.00958,0.01005,0.01142,0.01653,,,,,,,2.41892,4.33656,5.91935,8.93887,,,,,,,2.4121,4.33186,5.94321,8.88324,,,,,,,2.65083,4.79052,6.72794,10.4182,,,,,,,2.63872,5.10144,7.17506,11.02674,,,,,,,2.3185,4.66114,6.60144,9.92382,,,,,,,2.42459,4.7745,6.77574,10.28752,,,,,,,2.38443,4.79547,6.77741,10.16121,,,,,,,2.43831,4.72761,6.59275,9.93234,,,,,,,2.18539,4.24202,5.86133,8.70142,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.12726,0.15779,0.2359,0.43831,,,,,,,0.12661,0.1551,0.23259,0.43239,,,,,,,0.12663,0.16699,0.24899,0.47981,,,,,,,0.13269,0.17823,0.26561,0.51064,,,,,,,0.11633,0.15513,0.23427,0.46006,,,,,,,0.12172,0.16201,0.24382,0.47478,,,,,,,0.11917,0.15687,0.2372,0.45947,,,,,,,0.12664,0.17298,0.25908,0.49504,,,,,,,0.09155,0.15494,0.23271,0.43913,,,,,,,0.00236,0.00401,0.00584,0.01128,,,,,,,0.00224,0.00382,0.00553,0.01038,,,,,,,0.00203,0.00389,0.00565,0.01079,,,,,,,0.00237,0.00407,0.00595,0.01163,,,,,,,0.00203,0.00332,0.00471,0.00801,,,,,,,0.00197,0.00339,0.00484,0.00843,,,,,,,0.00194,0.00316,0.00447,0.00751,,,,,,,0.00199,0.0035,0.00502,0.009,,,,,,,0.00174,0.00308,0.00435,0.00734,,,,,,,0.04603,0.04969,0.05391,0.06664,,,,,,,0.04711,0.05059,0.05449,0.06575,,,,,,,0.05065,0.05481,0.05885,0.07088,,,,,,,0.04324,0.04704,0.05139,0.06479,,,,,,,0.04972,0.05245,0.0555,0.06291,,,,,,,0.0453,0.04835,0.05156,0.05973,,,,,,,0.04545,0.04801,0.05085,0.05764,,,,,,,0.04769,0.05095,0.05435,0.06346,,,,,,,0.04686,0.0497,0.05247,0.05913,,,,,,,0.00989,0.01312,0.01686,0.02812,,,,,,,0.00978,0.01286,0.01631,0.02627,,,,,,,0.00987,0.01354,0.01712,0.02776,,,,,,,0.00957,0.01294,0.01679,0.02864,,,,,,,0.00967,0.01208,0.01478,0.02133,,,,,,,0.00902,0.01172,0.01456,0.02178,,,,,,,0.00896,0.01123,0.01375,0.01975,,,,,,,0.00939,0.01228,0.01528,0.02334,,,,,,,0.0088,0.01131,0.01376,0.01965,,,,,,,0.008,0.00268,0.00271,0.00298,,,,,,,0.00806,0.0027,0.00272,0.003,,,,,,,0.00817,0.00274,0.00276,0.00305,,,,,,,0.00799,0.00268,0.0027,0.00298,,,,,,,0.00821,0.00274,0.00276,0.00302,,,,,,,0.00807,0.0027,0.00272,0.00298,,,,,,,0.00815,0.00272,0.00274,0.003,,,,,,,0.00729,0.00268,0.0027,0.00297,,,,,,,0.00379,0.00248,0.00249,0.00274,,,,,,,0.12213,0.17712,0.29005,0.70735,,,,,,,0.11203,0.16409,0.27404,0.67698,,,,,,,0.11963,0.18088,0.30198,0.74968,,,,,,,0.12863,0.1961,0.32415,0.78504,,,,,,,0.08956,0.14979,0.26931,0.68556,,,,,,,0.09364,0.15442,0.27381,0.69274,,,,,,,0.08864,0.14766,0.26602,0.67221,,,,,,,0.10326,0.16643,0.28822,0.71931,,,,,,,0.08381,0.14803,0.26422,0.66019,,,, +Pickup,GSL,2020,,,,0.00111,0.0019,0.0027,0.00544,,,,,,,0.00102,0.00173,0.00245,0.00487,,,,,,,0.00106,0.00181,0.00257,0.00515,,,,,,,0.00115,0.00198,0.00282,0.00571,,,,,,,0.00077,0.00128,0.00177,0.00335,,,,,,,0.00081,0.00137,0.00191,0.00365,,,,,,,0.00071,0.00118,0.00162,0.00303,,,,,,,0.00087,0.00147,0.00206,0.004,,,,,,,0.00068,0.00114,0.00157,0.00294,,,,,,,0.01244,0.01062,0.01056,0.0145,,,,,,,0.01117,0.00971,0.00975,0.01343,,,,,,,0.01176,0.0108,0.01086,0.0154,,,,,,,0.013,0.01196,0.01199,0.01693,,,,,,,0.00797,0.00826,0.00862,0.01244,,,,,,,0.00867,0.00885,0.00916,0.01322,,,,,,,0.00792,0.00822,0.0086,0.01238,,,,,,,0.00964,0.00923,0.00945,0.01342,,,,,,,0.00815,0.00802,0.00832,0.01173,,,,,,,1.98412,3.05614,3.85917,5.9948,,,,,,,1.94741,3.02329,3.82708,5.94981,,,,,,,2.05353,3.34712,4.32508,6.99457,,,,,,,2.18775,3.57736,4.63745,7.44986,,,,,,,1.85063,3.15883,4.09436,6.61173,,,,,,,1.9126,3.25918,4.23944,6.88954,,,,,,,1.91411,3.25336,4.21327,6.78993,,,,,,,1.97565,3.24561,4.16121,6.63788,,,,,,,1.76168,2.88267,3.66119,5.76271,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.08638,0.14226,0.19125,0.27057,,,,,,,0.08489,0.13968,0.18814,0.26613,,,,,,,0.08555,0.1498,0.20047,0.28994,,,,,,,0.09023,0.16047,0.21466,0.31065,,,,,,,0.07577,0.13797,0.18613,0.27156,,,,,,,0.08,0.14491,0.19507,0.28341,,,,,,,0.07763,0.14,0.18915,0.27379,,,,,,,0.08826,0.155,0.20807,0.29902,,,,,,,0.08019,0.13849,0.18641,0.26551,,,,,,,0.00215,0.00349,0.00466,0.00836,,,,,,,0.00207,0.00334,0.00442,0.00782,,,,,,,0.00209,0.00339,0.00451,0.00805,,,,,,,0.00218,0.00354,0.00474,0.00857,,,,,,,0.00183,0.00291,0.00379,0.00638,,,,,,,0.00186,0.00297,0.00388,0.00662,,,,,,,0.00175,0.00277,0.00359,0.006,,,,,,,0.00191,0.00307,0.00402,0.00695,,,,,,,0.0017,0.0027,0.0035,0.00585,,,,,,,0.04555,0.04855,0.05126,0.06005,,,,,,,0.04671,0.04953,0.05203,0.06001,,,,,,,0.05082,0.05371,0.05631,0.06468,,,,,,,0.04279,0.04586,0.04866,0.05781,,,,,,,0.04928,0.0516,0.05353,0.05938,,,,,,,0.04507,0.04747,0.0495,0.05576,,,,,,,0.04503,0.04721,0.04899,0.05437,,,,,,,0.0475,0.05002,0.05218,0.05893,,,,,,,0.0468,0.04892,0.05067,0.05592,,,,,,,0.00946,0.01211,0.01451,0.02229,,,,,,,0.00943,0.01192,0.01414,0.0212,,,,,,,0.01001,0.01257,0.01487,0.02228,,,,,,,0.00917,0.01189,0.01437,0.02247,,,,,,,0.00928,0.01133,0.01303,0.01821,,,,,,,0.00882,0.01094,0.01274,0.01827,,,,,,,0.0086,0.01052,0.0121,0.01686,,,,,,,0.00923,0.01145,0.01337,0.01934,,,,,,,0.00875,0.01062,0.01217,0.01681,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00231,0.00232,0.00234,0.00256,,,,,,,0.00234,0.00235,0.00238,0.0026,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00235,0.00235,0.00237,0.00257,,,,,,,0.00231,0.00232,0.00234,0.00254,,,,,,,0.00233,0.00234,0.00235,0.00255,,,,,,,0.00229,0.0023,0.00232,0.00252,,,,,,,0.00212,0.00213,0.00214,0.00233,,,,,,,0.10681,0.15223,0.23047,0.5305,,,,,,,0.09676,0.13927,0.21444,0.5076,,,,,,,0.10312,0.1544,0.23771,0.55665,,,,,,,0.11204,0.16827,0.25638,0.58055,,,,,,,0.07433,0.12126,0.20009,0.5114,,,,,,,0.07854,0.12688,0.20621,0.51463,,,,,,,0.073,0.11854,0.19561,0.50045,,,,,,,0.08874,0.13765,0.21919,0.53537,,,,,,,0.07465,0.11889,0.19504,0.49641,,, +Pickup,GSL,2025,,,,,0.00073,0.00122,0.00173,0.00388,,,,,,,0.00067,0.00111,0.00157,0.00349,,,,,,,0.0007,0.00116,0.00165,0.00368,,,,,,,0.00076,0.00127,0.0018,0.00405,,,,,,,0.0005,0.00082,0.00114,0.00243,,,,,,,0.00054,0.00088,0.00122,0.00265,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00057,0.00094,0.00132,0.00289,,,,,,,0.00045,0.00073,0.00101,0.00215,,,,,,,0.00983,0.00771,0.00747,0.01097,,,,,,,0.00855,0.00681,0.00667,0.00999,,,,,,,0.00921,0.00761,0.00744,0.01151,,,,,,,0.01035,0.00853,0.00832,0.01275,,,,,,,0.00522,0.0049,0.00505,0.0086,,,,,,,0.00595,0.00546,0.00556,0.00931,,,,,,,0.00509,0.00481,0.00498,0.0085,,,,,,,0.00692,0.00598,0.00599,0.00962,,,,,,,0.00526,0.00476,0.00489,0.00805,,,,,,,1.32356,1.935,2.47035,4.16644,,,,,,,1.26208,1.86822,2.39568,4.08539,,,,,,,1.34874,2.08374,2.71997,4.83941,,,,,,,1.44605,2.24291,2.93583,5.18495,,,,,,,1.09246,1.8126,2.39449,4.39793,,,,,,,1.15543,1.90448,2.52006,4.63139,,,,,,,1.12816,1.86764,2.46557,4.52168,,,,,,,1.22197,1.93084,2.51333,4.48306,,,,,,,1.0488,1.66708,2.15449,3.822,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.053,0.07997,0.10739,0.18231,,,,,,,0.05125,0.07748,0.10434,0.17814,,,,,,,0.05177,0.08246,0.11045,0.19456,,,,,,,0.05492,0.08867,0.11867,0.20937,,,,,,,0.04278,0.07194,0.09773,0.17747,,,,,,,0.04625,0.07691,0.10402,0.18706,,,,,,,0.04386,0.07318,0.09951,0.17892,,,,,,,0.05133,0.08292,0.11176,0.19769,,,,,,,0.04556,0.07312,0.09907,0.17375,,,,,,,0.00142,0.00225,0.00301,0.00602,,,,,,,0.00136,0.00216,0.00286,0.00565,,,,,,,0.00138,0.00219,0.00291,0.0058,,,,,,,0.00144,0.00228,0.00306,0.00614,,,,,,,0.00121,0.00189,0.00245,0.00465,,,,,,,0.00123,0.00192,0.00251,0.00482,,,,,,,0.00115,0.00179,0.00232,0.00436,,,,,,,0.00126,0.00198,0.0026,0.00505,,,,,,,0.00113,0.00175,0.00227,0.00428,,,,,,,0.04396,0.04582,0.04757,0.05464,,,,,,,0.0452,0.04695,0.04857,0.05506,,,,,,,0.04928,0.05108,0.05275,0.05951,,,,,,,0.04117,0.04307,0.04487,0.05217,,,,,,,0.04799,0.04943,0.05068,0.0556,,,,,,,0.04374,0.04523,0.04655,0.05177,,,,,,,0.0438,0.04515,0.04632,0.05084,,,,,,,0.04613,0.04769,0.04909,0.05468,,,,,,,0.04561,0.04693,0.04807,0.05253,,,,,,,0.00805,0.0097,0.01125,0.01751,,,,,,,0.00809,0.00964,0.01107,0.01682,,,,,,,0.00865,0.01024,0.01172,0.01771,,,,,,,0.00774,0.00942,0.01102,0.01747,,,,,,,0.00813,0.00941,0.01052,0.01486,,,,,,,0.00764,0.00896,0.01013,0.01474,,,,,,,0.00751,0.00871,0.00973,0.01373,,,,,,,0.00801,0.0094,0.01064,0.01558,,,,,,,0.00769,0.00886,0.00986,0.01381,,,,,,,0.00189,0.0019,0.00191,0.00214,,,,,,,0.0019,0.00191,0.00193,0.00215,,,,,,,0.00193,0.00194,0.00195,0.00218,,,,,,,0.00188,0.00189,0.00191,0.00214,,,,,,,0.00193,0.00193,0.00194,0.00216,,,,,,,0.0019,0.0019,0.00192,0.00213,,,,,,,0.00191,0.00192,0.00193,0.00214,,,,,,,0.00189,0.00189,0.00191,0.00212,,,,,,,0.00174,0.00175,0.00176,0.00195,,,,,,,0.09086,0.11927,0.17637,0.44935,,,,,,,0.08047,0.10611,0.16004,0.42736,,,,,,,0.08702,0.11866,0.17889,0.46919,,,,,,,0.09566,0.13072,0.1944,0.48789,,,,,,,0.05626,0.08246,0.13652,0.42084,,,,,,,0.06117,0.0888,0.14363,0.42523,,,,,,,0.05454,0.07911,0.13102,0.40845,,,,,,,0.07055,0.09906,0.15616,0.44357,,,,,,,0.05554,0.07992,0.13197,0.40789,, +Pickup,GSL,2030,,,,,,0.00073,0.00121,0.00172,0.00318,,,,,,,0.00067,0.00111,0.00156,0.00286,,,,,,,0.0007,0.00116,0.00163,0.00302,,,,,,,0.00076,0.00126,0.00178,0.00332,,,,,,,0.0005,0.00082,0.00113,0.002,,,,,,,0.00053,0.00088,0.00121,0.00218,,,,,,,0.00046,0.00075,0.00103,0.00181,,,,,,,0.00057,0.00094,0.00131,0.00237,,,,,,,0.00045,0.00073,0.00101,0.00177,,,,,,,0.0091,0.00694,0.00673,0.00917,,,,,,,0.00781,0.00605,0.00593,0.00818,,,,,,,0.00848,0.00675,0.00662,0.00933,,,,,,,0.00959,0.0076,0.00743,0.01041,,,,,,,0.00446,0.00402,0.00419,0.00636,,,,,,,0.0052,0.00456,0.00468,0.00702,,,,,,,0.00431,0.00391,0.0041,0.00625,,,,,,,0.00617,0.00513,0.00516,0.00749,,,,,,,0.00447,0.00391,0.00405,0.00601,,,,,,,1.17118,1.70869,2.20698,3.28782,,,,,,,1.10423,1.6357,2.12259,3.1829,,,,,,,1.18602,1.82687,2.41172,3.73977,,,,,,,1.27427,1.96961,2.60597,4.02112,,,,,,,0.91825,1.54056,2.06129,3.26417,,,,,,,0.98099,1.62928,2.18245,3.46347,,,,,,,0.94724,1.58654,2.12244,3.35708,,,,,,,1.04789,1.66456,2.19203,3.3993,,,,,,,0.88389,1.42109,1.85989,2.86598,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.0429,0.06364,0.0876,0.13698,,,,,,,0.04106,0.06117,0.08456,0.13284,,,,,,,0.04138,0.0646,0.08899,0.14366,,,,,,,0.04391,0.06942,0.09553,0.15458,,,,,,,0.03266,0.05446,0.07671,0.12705,,,,,,,0.03584,0.05881,0.08225,0.13513,,,,,,,0.03351,0.05544,0.0781,0.12836,,,,,,,0.04,0.06385,0.08888,0.14384,,,,,,,0.03505,0.05596,0.07853,0.12591,,,,,,,0.00142,0.00225,0.00299,0.00497,,,,,,,0.00136,0.00215,0.00284,0.00467,,,,,,,0.00138,0.00218,0.0029,0.00479,,,,,,,0.00143,0.00228,0.00303,0.00508,,,,,,,0.00121,0.00188,0.00244,0.00386,,,,,,,0.00123,0.00192,0.0025,0.004,,,,,,,0.00115,0.00179,0.00231,0.00363,,,,,,,0.00126,0.00198,0.00259,0.00418,,,,,,,0.00112,0.00175,0.00227,0.00355,,,,,,,0.04395,0.04581,0.04752,0.05222,,,,,,,0.04519,0.04694,0.04853,0.05283,,,,,,,0.04927,0.05106,0.05271,0.05719,,,,,,,0.04116,0.04306,0.04481,0.04968,,,,,,,0.04798,0.04942,0.05065,0.05387,,,,,,,0.04374,0.04523,0.04652,0.04995,,,,,,,0.04379,0.04515,0.04628,0.04924,,,,,,,0.04613,0.04769,0.04907,0.05273,,,,,,,0.04561,0.04693,0.04806,0.05094,,,,,,,0.00805,0.00969,0.01121,0.01536,,,,,,,0.00809,0.00963,0.01104,0.01484,,,,,,,0.00865,0.01023,0.01169,0.01565,,,,,,,0.00773,0.00941,0.01096,0.01527,,,,,,,0.00813,0.0094,0.01049,0.01334,,,,,,,0.00764,0.00896,0.0101,0.01313,,,,,,,0.0075,0.0087,0.0097,0.01232,,,,,,,0.00801,0.00939,0.01061,0.01386,,,,,,,0.00769,0.00886,0.00986,0.01241,,,,,,,0.00173,0.00174,0.00177,0.00192,,,,,,,0.00174,0.00175,0.00178,0.00192,,,,,,,0.00177,0.00178,0.00181,0.00195,,,,,,,0.00173,0.00174,0.00177,0.00191,,,,,,,0.00176,0.00178,0.00179,0.00193,,,,,,,0.00174,0.00175,0.00177,0.0019,,,,,,,0.00175,0.00176,0.00178,0.00191,,,,,,,0.00173,0.00174,0.00176,0.0019,,,,,,,0.0016,0.00161,0.00162,0.00175,,,,,,,0.0862,0.11097,0.16487,0.39748,,,,,,,0.07579,0.09787,0.14854,0.37511,,,,,,,0.08233,0.1096,0.16628,0.4108,,,,,,,0.09081,0.12111,0.18091,0.4273,,,,,,,0.05129,0.07306,0.123,0.35862,,,,,,,0.05632,0.07942,0.1302,0.36379,,,,,,,0.0495,0.06962,0.1173,0.34581,,,,,,,0.06547,0.08966,0.14269,0.38263,,,,,,,0.05029,0.07054,0.11865,0.34825, +Pickup,GSL,2035,,,,,,,0.00073,0.0012,0.00172,0.00294,,,,,,,0.00067,0.0011,0.00156,0.00265,,,,,,,0.00069,0.00115,0.00164,0.00279,,,,,,,0.00075,0.00124,0.00179,0.00307,,,,,,,0.0005,0.00081,0.00113,0.00185,,,,,,,0.00053,0.00087,0.00122,0.00201,,,,,,,0.00046,0.00075,0.00103,0.00168,,,,,,,0.00057,0.00093,0.00131,0.00219,,,,,,,0.00045,0.00073,0.00101,0.00163,,,,,,,0.00908,0.00695,0.00672,0.0085,,,,,,,0.00779,0.00605,0.00592,0.00751,,,,,,,0.00846,0.00676,0.00661,0.0085,,,,,,,0.00956,0.00762,0.00742,0.00952,,,,,,,0.00445,0.00402,0.00418,0.00551,,,,,,,0.00519,0.00457,0.00467,0.00614,,,,,,,0.0043,0.00391,0.00409,0.0054,,,,,,,0.00615,0.00513,0.00515,0.00668,,,,,,,0.00446,0.00391,0.00405,0.00526,,,,,,,1.16868,1.71324,2.20253,2.98485,,,,,,,1.10186,1.6388,2.11914,2.87174,,,,,,,1.18344,1.83083,2.4075,3.35064,,,,,,,1.27152,1.9735,2.60169,3.6076,,,,,,,0.91609,1.53888,2.06095,2.86559,,,,,,,0.9787,1.62843,2.1815,3.05052,,,,,,,0.94514,1.58555,2.12161,2.94713,,,,,,,1.0454,1.66457,2.1905,3.02057,,,,,,,0.88179,1.42046,1.85907,2.53587,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04276,0.06341,0.08764,0.12009,,,,,,,0.04092,0.06095,0.08461,0.11594,,,,,,,0.04123,0.06436,0.08905,0.12426,,,,,,,0.04375,0.06913,0.09561,0.13359,,,,,,,0.03255,0.05427,0.07674,0.10779,,,,,,,0.03572,0.0586,0.08229,0.11525,,,,,,,0.03341,0.05522,0.07816,0.10912,,,,,,,0.03987,0.06367,0.0889,0.12337,,,,,,,0.03495,0.05586,0.07851,0.10793,,,,,,,0.00141,0.00224,0.003,0.00461,,,,,,,0.00136,0.00214,0.00285,0.00434,,,,,,,0.00137,0.00217,0.0029,0.00445,,,,,,,0.00143,0.00226,0.00304,0.00471,,,,,,,0.0012,0.00187,0.00245,0.00359,,,,,,,0.00122,0.00191,0.0025,0.00371,,,,,,,0.00115,0.00178,0.00232,0.00338,,,,,,,0.00126,0.00197,0.0026,0.00388,,,,,,,0.00112,0.00175,0.00227,0.00329,,,,,,,0.04394,0.04577,0.04754,0.05138,,,,,,,0.04518,0.04691,0.04854,0.05205,,,,,,,0.04926,0.05103,0.05272,0.05639,,,,,,,0.04114,0.04301,0.04484,0.04884,,,,,,,0.04798,0.0494,0.05066,0.05326,,,,,,,0.04373,0.0452,0.04654,0.04931,,,,,,,0.04379,0.04512,0.0463,0.04869,,,,,,,0.04612,0.04766,0.04908,0.05205,,,,,,,0.0456,0.04692,0.04806,0.05038,,,,,,,0.00804,0.00966,0.01122,0.01462,,,,,,,0.00808,0.0096,0.01105,0.01415,,,,,,,0.00864,0.0102,0.0117,0.01494,,,,,,,0.00772,0.00937,0.01099,0.01452,,,,,,,0.00812,0.00938,0.0105,0.0128,,,,,,,0.00763,0.00893,0.01011,0.01257,,,,,,,0.00749,0.00867,0.00971,0.01183,,,,,,,0.008,0.00937,0.01062,0.01325,,,,,,,0.00768,0.00885,0.00986,0.01191,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00174,0.00175,0.00178,0.00185,,,,,,,0.00176,0.00178,0.00181,0.00188,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00176,0.00178,0.00179,0.00185,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00175,0.00176,0.00178,0.00183,,,,,,,0.00173,0.00174,0.00176,0.00182,,,,,,,0.0016,0.00161,0.00162,0.00168,,,,,,,0.08589,0.11097,0.16466,0.37821,,,,,,,0.07552,0.09786,0.14836,0.35567,,,,,,,0.08204,0.10964,0.16604,0.38863,,,,,,,0.09048,0.12107,0.1807,0.4043,,,,,,,0.05111,0.07292,0.12293,0.33508,,,,,,,0.05612,0.07932,0.13009,0.34042,,,,,,,0.04933,0.06946,0.11726,0.32215,,,,,,,0.06521,0.08942,0.14265,0.35977,,,,,,,0.05012,0.07044,0.11856,0.32597 +Pickup,GSL,2040,,,,,,,,0.00072,0.00121,0.00173,,,,,,,,0.00066,0.0011,0.00157,,,,,,,,0.00069,0.00115,0.00165,,,,,,,,0.00074,0.00125,0.0018,,,,,,,,0.0005,0.00082,0.00114,,,,,,,,0.00053,0.00087,0.00122,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00057,0.00094,0.00132,,,,,,,,0.00045,0.00073,0.00101,,,,,,,,0.00909,0.00694,0.00671,,,,,,,,0.0078,0.00604,0.00591,,,,,,,,0.00848,0.00675,0.0066,,,,,,,,0.00958,0.0076,0.00741,,,,,,,,0.00445,0.00402,0.00417,,,,,,,,0.0052,0.00456,0.00467,,,,,,,,0.0043,0.00391,0.00409,,,,,,,,0.00615,0.00512,0.00515,,,,,,,,0.00446,0.0039,0.00405,,,,,,,,1.17274,1.70986,2.19797,,,,,,,,1.10473,1.63617,2.11558,,,,,,,,1.1875,1.82775,2.40328,,,,,,,,1.27601,1.97041,2.59749,,,,,,,,0.91541,1.53869,2.06067,,,,,,,,0.9788,1.6278,2.18062,,,,,,,,0.94491,1.58502,2.12074,,,,,,,,1.04589,1.66344,2.18904,,,,,,,,0.88133,1.41976,1.85822,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04261,0.06343,0.0877,,,,,,,,0.04078,0.06097,0.08466,,,,,,,,0.04108,0.06439,0.08912,,,,,,,,0.04356,0.06918,0.09572,,,,,,,,0.03244,0.05429,0.07679,,,,,,,,0.0356,0.05862,0.08234,,,,,,,,0.03328,0.05525,0.07822,,,,,,,,0.03976,0.06367,0.08892,,,,,,,,0.03489,0.05583,0.07848,,,,,,,,0.0014,0.00224,0.00301,,,,,,,,0.00135,0.00214,0.00286,,,,,,,,0.00137,0.00217,0.00291,,,,,,,,0.00142,0.00227,0.00305,,,,,,,,0.0012,0.00188,0.00245,,,,,,,,0.00122,0.00191,0.00251,,,,,,,,0.00114,0.00178,0.00232,,,,,,,,0.00125,0.00197,0.0026,,,,,,,,0.00112,0.00175,0.00227,,,,,,,,0.04392,0.04578,0.04756,,,,,,,,0.04517,0.04692,0.04856,,,,,,,,0.04924,0.05104,0.05274,,,,,,,,0.04112,0.04302,0.04487,,,,,,,,0.04796,0.04941,0.05068,,,,,,,,0.04371,0.04521,0.04655,,,,,,,,0.04377,0.04513,0.04631,,,,,,,,0.0461,0.04767,0.04909,,,,,,,,0.0456,0.04692,0.04806,,,,,,,,0.00802,0.00967,0.01124,,,,,,,,0.00806,0.00961,0.01107,,,,,,,,0.00862,0.01021,0.01172,,,,,,,,0.00769,0.00938,0.01101,,,,,,,,0.00811,0.00939,0.01051,,,,,,,,0.00762,0.00894,0.01013,,,,,,,,0.00748,0.00868,0.00973,,,,,,,,0.00799,0.00937,0.01063,,,,,,,,0.00768,0.00885,0.00986,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00174,0.00175,0.00178,,,,,,,,0.00176,0.00178,0.00181,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00176,0.00178,0.00179,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00175,0.00176,0.00178,,,,,,,,0.00173,0.00174,0.00176,,,,,,,,0.00159,0.00161,0.00162,,,,,,,,0.08595,0.11086,0.16458,,,,,,,,0.07555,0.09777,0.14829,,,,,,,,0.08213,0.10952,0.16594,,,,,,,,0.09052,0.12098,0.18066,,,,,,,,0.05106,0.07292,0.12299,,,,,,,,0.0561,0.0793,0.13013,,,,,,,,0.04926,0.06947,0.11733,,,,,,,,0.0651,0.08947,0.14281,,,,,,,,0.05009,0.07042,0.11858 +Pickup,GSL,2045,,,,,,,,,0.00072,0.00121,,,,,,,,,0.00066,0.00111,,,,,,,,,0.00069,0.00116,,,,,,,,,0.00075,0.00126,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00053,0.00087,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00057,0.00094,,,,,,,,,0.00045,0.00073,,,,,,,,,0.00908,0.00693,,,,,,,,,0.00779,0.00604,,,,,,,,,0.00847,0.00674,,,,,,,,,0.00957,0.00759,,,,,,,,,0.00445,0.00401,,,,,,,,,0.00519,0.00455,,,,,,,,,0.0043,0.00391,,,,,,,,,0.00615,0.00512,,,,,,,,,0.00445,0.0039,,,,,,,,,1.1703,1.70666,,,,,,,,,1.10291,1.6338,,,,,,,,,1.18509,1.82476,,,,,,,,,1.27337,1.96738,,,,,,,,,0.91541,1.53891,,,,,,,,,0.9784,1.62753,,,,,,,,,0.9447,1.58486,,,,,,,,,1.04524,1.66273,,,,,,,,,0.88121,1.41952,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04265,0.06351,,,,,,,,,0.04082,0.06104,,,,,,,,,0.04112,0.06448,,,,,,,,,0.04362,0.06929,,,,,,,,,0.03247,0.05434,,,,,,,,,0.03563,0.05869,,,,,,,,,0.03331,0.05532,,,,,,,,,0.03978,0.06372,,,,,,,,,0.0349,0.05584,,,,,,,,,0.00141,0.00225,,,,,,,,,0.00135,0.00215,,,,,,,,,0.00137,0.00218,,,,,,,,,0.00142,0.00228,,,,,,,,,0.0012,0.00188,,,,,,,,,0.00122,0.00192,,,,,,,,,0.00114,0.00179,,,,,,,,,0.00125,0.00198,,,,,,,,,0.00112,0.00175,,,,,,,,,0.04392,0.0458,,,,,,,,,0.04517,0.04693,,,,,,,,,0.04925,0.05106,,,,,,,,,0.04113,0.04305,,,,,,,,,0.04797,0.04942,,,,,,,,,0.04372,0.04522,,,,,,,,,0.04377,0.04514,,,,,,,,,0.04611,0.04768,,,,,,,,,0.0456,0.04692,,,,,,,,,0.00802,0.00968,,,,,,,,,0.00807,0.00963,,,,,,,,,0.00863,0.01022,,,,,,,,,0.0077,0.0094,,,,,,,,,0.00811,0.0094,,,,,,,,,0.00762,0.00895,,,,,,,,,0.00749,0.00869,,,,,,,,,0.00799,0.00938,,,,,,,,,0.00768,0.00885,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00175,0.00176,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00159,0.00161,,,,,,,,,0.08586,0.11079,,,,,,,,,0.07549,0.09771,,,,,,,,,0.08204,0.10943,,,,,,,,,0.09044,0.12092,,,,,,,,,0.05105,0.07294,,,,,,,,,0.05607,0.0793,,,,,,,,,0.04926,0.0695,,,,,,,,,0.06511,0.08954,,,,,,,,,0.05007,0.07042 +Pickup,GSL,2050,,,,,,,,,,0.00073,,,,,,,,,,0.00067,,,,,,,,,,0.00069,,,,,,,,,,0.00075,,,,,,,,,,0.0005,,,,,,,,,,0.00053,,,,,,,,,,0.00046,,,,,,,,,,0.00057,,,,,,,,,,0.00045,,,,,,,,,,0.00907,,,,,,,,,,0.00778,,,,,,,,,,0.00845,,,,,,,,,,0.00955,,,,,,,,,,0.00444,,,,,,,,,,0.00518,,,,,,,,,,0.0043,,,,,,,,,,0.00614,,,,,,,,,,0.00445,,,,,,,,,,1.16765,,,,,,,,,,1.10092,,,,,,,,,,1.18243,,,,,,,,,,1.27045,,,,,,,,,,0.91538,,,,,,,,,,0.97793,,,,,,,,,,0.94442,,,,,,,,,,1.04454,,,,,,,,,,0.88107,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.0427,,,,,,,,,,0.04087,,,,,,,,,,0.04118,,,,,,,,,,0.0437,,,,,,,,,,0.03251,,,,,,,,,,0.03568,,,,,,,,,,0.03336,,,,,,,,,,0.03982,,,,,,,,,,0.03491,,,,,,,,,,0.00141,,,,,,,,,,0.00136,,,,,,,,,,0.00137,,,,,,,,,,0.00143,,,,,,,,,,0.0012,,,,,,,,,,0.00122,,,,,,,,,,0.00115,,,,,,,,,,0.00126,,,,,,,,,,0.00112,,,,,,,,,,0.04393,,,,,,,,,,0.04518,,,,,,,,,,0.04926,,,,,,,,,,0.04114,,,,,,,,,,0.04797,,,,,,,,,,0.04373,,,,,,,,,,0.04378,,,,,,,,,,0.04612,,,,,,,,,,0.0456,,,,,,,,,,0.00803,,,,,,,,,,0.00808,,,,,,,,,,0.00863,,,,,,,,,,0.00772,,,,,,,,,,0.00812,,,,,,,,,,0.00763,,,,,,,,,,0.00749,,,,,,,,,,0.008,,,,,,,,,,0.00768,,,,,,,,,,0.00173,,,,,,,,,,0.00174,,,,,,,,,,0.00176,,,,,,,,,,0.00173,,,,,,,,,,0.00176,,,,,,,,,,0.00174,,,,,,,,,,0.00175,,,,,,,,,,0.00173,,,,,,,,,,0.00159,,,,,,,,,,0.0858,,,,,,,,,,0.07545,,,,,,,,,,0.08196,,,,,,,,,,0.09039,,,,,,,,,,0.05106,,,,,,,,,,0.05607,,,,,,,,,,0.04928,,,,,,,,,,0.06516,,,,,,,,,,0.05007 +Pickup,PH10E,1990,0.00736,0,0,0,0,0,0,0,0,0,0.00761,0,0,0,0,0,0,0,0,0,0.00833,0,0,0,0,0,0,0,0,0,0.00685,0,0,0,0,0,0,0,0,0,0.00818,0,0,0,0,0,0,0,0,0,0.00741,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.00782,0,0,0,0,0,0,0,0,0,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.00042,0.00056,0,0,0,0,0,0,0,0.00025,0.0004,0.00053,0,0,0,0,0,0,0,0.00026,0.00041,0.00055,0,0,0,0,0,0,0,0.00027,0.00043,0.00057,0,0,0,0,0,0,0,0.00022,0.00034,0.00044,0,0,0,0,0,0,0,0.00023,0.00035,0.00046,0,0,0,0,0,0,0,0.00022,0.00034,0.00044,0,0,0,0,0,0,0,0.00024,0.00037,0.00048,0,0,0,0,0,0,0,0.00023,0.00035,0.00045,0,0,0,0,0,0,0,0.00793,0.00827,0.00859,0,0,0,0,0,0,0,0.00815,0.00847,0.00876,0,0,0,0,0,0,0,0.0089,0.00923,0.00955,0,0,0,0,0,0,0,0.00743,0.00778,0.00811,0,0,0,0,0,0,0,0.00864,0.0089,0.00912,0,0,0,0,0,0,0,0.00788,0.00815,0.00839,0,0,0,0,0,0,0,0.00791,0.00816,0.00838,0,0,0,0,0,0,0,0.00832,0.00861,0.00887,0,0,0,0,0,0,0,0.00825,0.00851,0.00873,0,0,0,0,0,0,0,0.00147,0.00177,0.00205,0,0,0,0,0,0,0,0.00147,0.00175,0.00201,0,0,0,0,0,0,0,0.00158,0.00188,0.00216,0,0,0,0,0,0,0,0.00141,0.00172,0.00201,0,0,0,0,0,0,0,0.00147,0.0017,0.00189,0,0,0,0,0,0,0,0.00138,0.00162,0.00183,0,0,0,0,0,0,0,0.00137,0.0016,0.00179,0,0,0,0,0,0,0,0.00146,0.00172,0.00194,0,0,0,0,0,0,0,0.00142,0.00165,0.00185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH10E,1995,0.00735,0.00735,0,0,0,0,0,0,0,0,0.00761,0.00761,0,0,0,0,0,0,0,0,0.00833,0.00833,0,0,0,0,0,0,0,0,0.00684,0.00684,0,0,0,0,0,0,0,0,0.00818,0.00818,0,0,0,0,0,0,0,0,0.00741,0.00741,0,0,0,0,0,0,0,0,0.00745,0.00745,0,0,0,0,0,0,0,0,0.00782,0.00782,0,0,0,0,0,0,0,0,0.00779,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.00042,0,0,0,0,0,0,0,0,0.00025,0.0004,0,0,0,0,0,0,0,0,0.00026,0.00041,0,0,0,0,0,0,0,0,0.00027,0.00043,0,0,0,0,0,0,0,0,0.00022,0.00034,0,0,0,0,0,0,0,0,0.00023,0.00035,0,0,0,0,0,0,0,0,0.00022,0.00034,0,0,0,0,0,0,0,0,0.00024,0.00037,0,0,0,0,0,0,0,0,0.00023,0.00035,0,0,0,0,0,0,0,0,0.00793,0.00827,0,0,0,0,0,0,0,0,0.00815,0.00847,0,0,0,0,0,0,0,0,0.0089,0.00923,0,0,0,0,0,0,0,0,0.00742,0.00778,0,0,0,0,0,0,0,0,0.00864,0.0089,0,0,0,0,0,0,0,0,0.00788,0.00815,0,0,0,0,0,0,0,0,0.00791,0.00816,0,0,0,0,0,0,0,0,0.00832,0.00861,0,0,0,0,0,0,0,0,0.00825,0.00851,0,0,0,0,0,0,0,0,0.00147,0.00177,0,0,0,0,0,0,0,0,0.00147,0.00175,0,0,0,0,0,0,0,0,0.00158,0.00188,0,0,0,0,0,0,0,0,0.00141,0.00172,0,0,0,0,0,0,0,0,0.00147,0.0017,0,0,0,0,0,0,0,0,0.00138,0.00162,0,0,0,0,0,0,0,0,0.00137,0.0016,0,0,0,0,0,0,0,0,0.00146,0.00172,0,0,0,0,0,0,0,0,0.00142,0.00165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH10E,2000,0.00736,0.01464,0.01852,0,0,0,0,0,0,0,0.00761,0.01386,0.01715,0,0,0,0,0,0,0,0.00833,0.01535,0.0191,0,0,0,0,0,0,0,0.00684,0.01464,0.01884,0,0,0,0,0,0,0,0.00818,0.01167,0.01345,0,0,0,0,0,0,0,0.00741,0.01153,0.01393,0,0,0,0,0,0,0,0.00745,0.0108,0.01248,0,0,0,0,0,0,0,0.00782,0.01266,0.01517,0,0,0,0,0,0,0,0.00779,0.01117,0.01285,0,0,0,0,0,0,0,0,0.14089,0.15451,0,0,0,0,0,0,0,0,0.13573,0.15157,0,0,0,0,0,0,0,0,0.16081,0.17779,0,0,0,0,0,0,0,0,0.16758,0.18418,0,0,0,0,0,0,0,0,0.14553,0.1629,0,0,0,0,0,0,0,0,0.15328,0.17008,0,0,0,0,0,0,0,0,0.14794,0.16027,0,0,0,0,0,0,0,0,0.14627,0.16107,0,0,0,0,0,0,0,0,0.12873,0.14257,0,0,0,0,0,0,0,0,12.76272,16.10851,0,0,0,0,0,0,0,0,12.50945,15.99917,0,0,0,0,0,0,0,0,14.3238,18.20538,0,0,0,0,0,0,0,0,15.15682,19.14568,0,0,0,0,0,0,0,0,13.58049,17.34446,0,0,0,0,0,0,0,0,14.10916,18.03755,0,0,0,0,0,0,0,0,14.12754,17.53883,0,0,0,0,0,0,0,0,13.47311,17.02084,0,0,0,0,0,0,0,0,11.65908,14.80696,0,0,0,0,0,0,0,0,428.04028,434.44389,0,0,0,0,0,0,0,0,431.35345,437.29409,0,0,0,0,0,0,0,0,437.67973,443.93028,0,0,0,0,0,0,0,0,427.48486,433.73649,0,0,0,0,0,0,0,0,438.06185,442.38577,0,0,0,0,0,0,0,0,431.02765,437.29105,0,0,0,0,0,0,0,0,434.61359,438.74833,0,0,0,0,0,0,0,0,434.84444,439.8663,0,0,0,0,0,0,0,0,428.27298,432.86375,0,0,0,0,0,0,0,0,0.03848,0.04595,0,0,0,0,0,0,0,0,0.03858,0.04602,0,0,0,0,0,0,0,0,0.03932,0.04679,0,0,0,0,0,0,0,0,0.03764,0.04501,0,0,0,0,0,0,0,0,0.03912,0.04657,0,0,0,0,0,0,0,0,0.03816,0.04556,0,0,0,0,0,0,0,0,0.03847,0.04591,0,0,0,0,0,0,0,0,0.03891,0.04638,0,0,0,0,0,0,0,0,0.03917,0.04672,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06727,0.06728,0,0,0,0,0,0,0,0,0.06725,0.06726,0,0,0,0,0,0,0,0,0.06691,0.06691,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06697,0.06697,0,0,0,0,0,0,0,0,0.06715,0.06716,0,0,0,0,0,0,0,0,0.0673,0.0673,0,0,0,0,0,0,0,0,0.06745,0.06745,0,0,0,0,0,0,0,0,1.67917,2.04404,0,0,0,0,0,0,0,0,1.65811,2.04336,0,0,0,0,0,0,0,0,1.85354,2.26397,0,0,0,0,0,0,0,0,1.91901,2.33383,0,0,0,0,0,0,0,0,1.80859,2.22695,0,0,0,0,0,0,0,0,1.86021,2.26579,0,0,0,0,0,0,0,0,1.84185,2.2101,0,0,0,0,0,0,0,0,1.91328,2.31007,0,0,0,0,0,0,0,0,1.71779,2.08945,0,0,0,0,0,0,0,0,0.01552,0.02198,0,0,0,0,0,0,0.00027,0,0.01357,0.01916,0,0,0,0,0,0,0.00025,0,0.01471,0.02087,0,0,0,0,0,0,0.00026,0,0.01609,0.02289,0,0,0,0,0,0,0.00027,0,0.00814,0.01137,0,0,0,0,0,0,0.00022,0,0.00936,0.01363,0,0,0,0,0,0,0.00023,0,0.008,0.01115,0,0,0,0,0,0,0.00022,0,0.01079,0.01518,0,0,0,0,0,0,0.00024,0,0.0082,0.01141,0,0,0,0,0,0,0.00023,0,0.06669,0.0812,0,0,0,0,0,0,0.00793,0,0.06356,0.07607,0,0,0,0,0,0,0.00815,0,0.0695,0.0834,0,0,0,0,0,0,0.0089,0,0.06578,0.08116,0,0,0,0,0,0,0.00742,0,0.05438,0.06151,0,0,0,0,0,0,0.00864,0,0.05351,0.06313,0,0,0,0,0,0,0.00788,0,0.05068,0.05757,0,0,0,0,0,0,0.00791,0,0.0585,0.06825,0,0,0,0,0,0,0.00832,0,0.0526,0.05959,0,0,0,0,0,0,0.00825,0,0.03373,0.04657,0,0,0,0,0,0,0.00147,0,0.03008,0.04115,0,0,0,0,0,0,0.00147,0,0.03284,0.04513,0,0,0,0,0,0,0.00158,0,0.03469,0.0483,0,0,0,0,0,0,0.00141,0,0.01997,0.02628,0,0,0,0,0,0,0.00147,0,0.02188,0.03027,0,0,0,0,0,0,0.00138,0,0.01923,0.02532,0,0,0,0,0,0,0.00137,0,0.02487,0.03349,0,0,0,0,0,0,0.00146,0,0.01976,0.02595,0,0,0,0,0,0,0.00142,0,0.01401,0.01254,0,0,0,0,0,0,0,0,0.01412,0.01263,0,0,0,0,0,0,0,0,0.01433,0.01282,0,0,0,0,0,0,0,0,0.014,0.01252,0,0,0,0,0,0,0,0,0.01434,0.01277,0,0,0,0,0,0,0,0,0.01411,0.01263,0,0,0,0,0,0,0,0,0.01423,0.01267,0,0,0,0,0,0,0,0,0.01424,0.0127,0,0,0,0,0,0,0,0,0.01402,0.0125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH10E,2005,0.00736,0.01048,0.012,0.01558,0,0,0,0,0,0,0.00761,0.01033,0.01164,0.01469,0,0,0,0,0,0,0.00833,0.01137,0.01285,0.01632,0,0,0,0,0,0,0.00685,0.01017,0.0118,0.01568,0,0,0,0,0,0,0.00819,0.00983,0.01061,0.01228,0,0,0,0,0,0,0.00741,0.0093,0.01029,0.01219,0,0,0,0,0,0,0.00746,0.00904,0.00978,0.01137,0,0,0,0,0,0,0.00782,0.00999,0.01103,0.01338,0,0,0,0,0,0,0.00779,0.0094,0.01014,0.01173,0,0,0,0,0,0,0,0.05887,0.05022,0.06479,0,0,0,0,0,0,0,0.05408,0.0477,0.06194,0,0,0,0,0,0,0,0.06401,0.05612,0.07552,0,0,0,0,0,0,0,0.06738,0.05899,0.07886,0,0,0,0,0,0,0,0.04787,0.04505,0.06288,0,0,0,0,0,0,0,0.05251,0.04891,0.06715,0,0,0,0,0,0,0,0.04796,0.0441,0.06135,0,0,0,0,0,0,0,0.05292,0.04736,0.06414,0,0,0,0,0,0,0,0.04274,0.03929,0.05278,0,0,0,0,0,0,0,5.03412,6.51817,9.6669,0,0,0,0,0,0,0,4.92195,6.52967,9.63502,0,0,0,0,0,0,0,5.52979,7.47297,11.28146,0,0,0,0,0,0,0,5.81165,7.86714,11.83045,0,0,0,0,0,0,0,5.41158,7.41913,10.98143,0,0,0,0,0,0,0,5.5191,7.60533,11.2422,0,0,0,0,0,0,0,5.63436,7.5301,11.09352,0,0,0,0,0,0,0,5.36905,7.14597,10.57365,0,0,0,0,0,0,0,4.7859,6.32427,9.17675,0,0,0,0,0,0,0,443.85587,448.671,454.14966,0,0,0,0,0,0,0,447.5675,452.04046,456.9226,0,0,0,0,0,0,0,453.75619,458.45937,463.73966,0,0,0,0,0,0,0,443.50689,448.21429,453.516,0,0,0,0,0,0,0,455.48889,458.76702,461.58576,0,0,0,0,0,0,0,448.04979,453.15963,455.06293,0,0,0,0,0,0,0,452.21983,455.36076,457.93914,0,0,0,0,0,0,0,451.77312,455.56747,459.27256,0,0,0,0,0,0,0,445.21511,448.68114,451.8233,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00804,0.00948,0.0182,0,0,0,0,0,0,0,0.00775,0.00918,0.01764,0,0,0,0,0,0,0,0.008,0.00944,0.01813,0,0,0,0,0,0,0,0.00783,0.00927,0.0178,0,0,0,0,0,0,0,0.0079,0.00934,0.01795,0,0,0,0,0,0,0,0.00797,0.00942,0.0181,0,0,0,0,0,0,0,0.00804,0.0095,0.01824,0,0,0,0,0,0,0,0.02199,0.02755,0.03263,0,0,0,0,0,0,0,0.02202,0.02758,0.03267,0,0,0,0,0,0,0,0.02202,0.02757,0.03266,0,0,0,0,0,0,0,0.0219,0.02743,0.03249,0,0,0,0,0,0,0,0.022,0.02755,0.03263,0,0,0,0,0,0,0,0.02192,0.02745,0.03252,0,0,0,0,0,0,0,0.02198,0.02753,0.03261,0,0,0,0,0,0,0,0.02203,0.02759,0.03268,0,0,0,0,0,0,0,0.02208,0.02765,0.03275,0,0,0,0,0,0,0,0.72008,0.96199,1.00621,0,0,0,0,0,0,0,0.70065,0.95882,1.00077,0,0,0,0,0,0,0,0.78869,1.0611,1.1307,0,0,0,0,0,0,0,0.8264,1.10905,1.17783,0,0,0,0,0,0,0,0.76098,1.03562,1.10788,0,0,0,0,0,0,0,0.79046,1.06322,1.13191,0,0,0,0,0,0,0,0.78123,1.03534,1.09738,0,0,0,0,0,0,0,0.819,1.08974,1.13977,0,0,0,0,0,0,0,0.73434,0.98227,1.01871,0,0,0,0,0,0,0.01783,0.00672,0.00918,0.01499,0,0,0,0,0,0,0.01557,0.00601,0.00819,0.01326,0,0,0,0,0,0,0.01736,0.00648,0.00887,0.01444,0,0,0,0,0,0,0.01912,0.00692,0.00949,0.01561,0,0,0,0,0,0,0.00929,0.00402,0.00549,0.00852,0,0,0,0,0,0,0.01086,0.00444,0.00623,0.00955,0,0,0,0,0,0,0.00892,0.00395,0.00538,0.00834,0,0,0,0,0,0,0.01235,0.00499,0.00681,0.01083,0,0,0,0,0,0,0.00882,0.00405,0.0055,0.00851,0,0,0,0,0,0,0.04731,0.04784,0.05339,0.06646,0,0,0,0,0,0,0.04236,0.0474,0.05231,0.06363,0,0,0,0,0,0,0.04749,0.0518,0.0572,0.06976,0,0,0,0,0,0,0.05006,0.04602,0.05187,0.06573,0,0,0,0,0,0,0.02861,0.04565,0.04885,0.05549,0,0,0,0,0,0,0.03145,0.04305,0.04716,0.05432,0,0,0,0,0,0,0.027,0.04214,0.04525,0.05167,0,0,0,0,0,0,0.03528,0.04613,0.05017,0.05909,0,0,0,0,0,0,0.02695,0.04386,0.04701,0.05353,0,0,0,0,0,0,0.0363,0.01704,0.02196,0.03352,0,0,0,0,0,0,0.03173,0.01578,0.02013,0.03014,0,0,0,0,0,0,0.03572,0.01717,0.02195,0.03306,0,0,0,0,0,0,0.03912,0.0172,0.02238,0.03464,0,0,0,0,0,0,0.01913,0.01225,0.01507,0.02095,0,0,0,0,0,0,0.02223,0.01263,0.01615,0.0226,0,0,0,0,0,0,0.01826,0.01167,0.01442,0.0201,0,0,0,0,0,0,0.02531,0.01392,0.01749,0.02539,0,0,0,0,0,0,0.01796,0.01203,0.01481,0.02058,0,0,0,0,0,0,0,0.01453,0.01296,0.00437,0,0,0,0,0,0,0,0.01465,0.01305,0.0044,0,0,0,0,0,0,0,0.01486,0.01324,0.00446,0,0,0,0,0,0,0,0.01452,0.01294,0.00437,0,0,0,0,0,0,0,0.01492,0.01325,0.00444,0,0,0,0,0,0,0,0.01467,0.01309,0.00438,0,0,0,0,0,0,0,0.01481,0.01315,0.00441,0,0,0,0,0,0,0,0.01479,0.01315,0.00442,0,0,0,0,0,0,0,0.01458,0.01296,0.00435,0,0,0,0,0,0,0,0.31408,0.43795,0.4377,0,0,0,0,0,0,0,0.2837,0.40636,0.40432,0,0,0,0,0,0,0,0.33316,0.47535,0.47029,0,0,0,0,0,0,0,0.35249,0.50182,0.49458,0,0,0,0,0,0,0,0.2218,0.34265,0.33094,0,0,0,0,0,0,0,0.24992,0.38317,0.36479,0,0,0,0,0,0,0,0.2186,0.33154,0.31952,0,0,0,0,0,0,0,0.25991,0.38065,0.37276,0,0,0,0,0,0,0,0.19773,0.29988,0.29008,0,0,0,0,0,0 +Pickup,PH10E,2010,0,0.00865,0.00976,0.01088,0.01426,0,0,0,0,0,0,0.00875,0.00973,0.0107,0.0136,0,0,0,0,0,0,0.0096,0.01069,0.01179,0.01508,0,0,0,0,0,0,0.00822,0.00942,0.01063,0.01429,0,0,0,0,0,0,0.00895,0.00958,0.01018,0.01183,0,0,0,0,0,0,0.00826,0.00901,0.00965,0.01158,0,0,0,0,0,0,0.0082,0.0088,0.00937,0.01094,0,0,0,0,0,0,0.00877,0.00957,0.01036,0.01261,0,0,0,0,0,0,0.00854,0.00915,0.00972,0.01129,0,0,0,0,0,0,0.03835,0.02739,0.0207,0.03399,0,0,0,0,0,0,0.03344,0.0249,0.01902,0.03184,0,0,0,0,0,0,0.03752,0.02934,0.02246,0.03887,0,0,0,0,0,0,0.04169,0.03243,0.02472,0.04165,0,0,0,0,0,0,0.02246,0.02126,0.01693,0.03091,0,0,0,0,0,0,0.0251,0.02356,0.0183,0.0333,0,0,0,0,0,0,0.02198,0.02095,0.01669,0.03024,0,0,0,0,0,0,0.02806,0.02371,0.0184,0.03225,0,0,0,0,0,0,0.02159,0.01933,0.01509,0.02616,0,0,0,0,0,0,2.0369,3.39096,4.56938,6.84813,0,0,0,0,0,0,1.93755,3.35282,4.54128,6.8043,0,0,0,0,0,0,2.03853,3.71667,5.15994,8.00096,0,0,0,0,0,0,2.17908,3.97967,5.53703,8.50531,0,0,0,0,0,0,1.79358,3.54468,4.96864,7.70574,0,0,0,0,0,0,1.85132,3.67735,5.10192,7.94581,0,0,0,0,0,0,1.86968,3.64795,5.09363,7.83205,0,0,0,0,0,0,1.90876,3.54693,4.88233,7.46049,0,0,0,0,0,0,1.678,3.13644,4.26343,6.41479,0,0,0,0,0,0,412.76858,414.52877,418.20047,431.86292,0,0,0,0,0,0,416.40558,417.94235,421.24785,434.37073,0,0,0,0,0,0,422.09134,423.74737,427.27943,440.89257,0,0,0,0,0,0,412.52141,414.19798,417.76787,431.26329,0,0,0,0,0,0,424.39239,425.16307,427.20546,438.37632,0,0,0,0,0,0,417.28153,419.64642,420.6841,432.33298,0,0,0,0,0,0,421.41221,422.1002,424.00932,434.90386,0,0,0,0,0,0,420.66738,421.76965,424.35789,436.36691,0,0,0,0,0,0,414.64889,415.59408,417.84536,429.16517,0,0,0,0,0,0,0.00702,0.0079,0.00947,0.01359,0,0,0,0,0,0,0.00703,0.00791,0.00947,0.01358,0,0,0,0,0,0,0.00715,0.00803,0.0096,0.01374,0,0,0,0,0,0,0.00688,0.00775,0.00929,0.01335,0,0,0,0,0,0,0.00712,0.00799,0.00956,0.01368,0,0,0,0,0,0,0.00696,0.00783,0.00938,0.01345,0,0,0,0,0,0,0.00702,0.00789,0.00946,0.01356,0,0,0,0,0,0,0.00709,0.00797,0.00954,0.01367,0,0,0,0,0,0,0.00714,0.00803,0.00961,0.01378,0,0,0,0,0,0,0.01459,0.01675,0.02185,0.02421,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02424,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02423,0,0,0,0,0,0,0.01453,0.01668,0.02175,0.02411,0,0,0,0,0,0,0.01459,0.01676,0.02185,0.02421,0,0,0,0,0,0,0.01455,0.0167,0.02178,0.02413,0,0,0,0,0,0,0.01458,0.01674,0.02183,0.02419,0,0,0,0,0,0,0.01462,0.01678,0.02188,0.02425,0,0,0,0,0,0,0.01465,0.01682,0.02193,0.0243,0,0,0,0,0,0,0.11818,0.20617,0.20688,0.44349,0,0,0,0,0,0,0.11395,0.20427,0.2047,0.43937,0,0,0,0,0,0,0.1164,0.2249,0.22374,0.50136,0,0,0,0,0,0,0.12046,0.23865,0.23563,0.52724,0,0,0,0,0,0,0.10702,0.21405,0.21224,0.48579,0,0,0,0,0,0,0.11168,0.22309,0.22032,0.50004,0,0,0,0,0,0,0.1104,0.21568,0.21334,0.48154,0,0,0,0,0,0,0.1205,0.23032,0.22538,0.50037,0,0,0,0,0,0,0.11127,0.20718,0.20273,0.44167,0,0,0,0,0,0.00482,0.01286,0.00409,0.00571,0.01093,0,0,0,0,0,0.00422,0.01137,0.00381,0.00528,0.00987,0,0,0,0,0,0.00468,0.01253,0.00401,0.0056,0.01065,0,0,0,0,0,0.00513,0.01363,0.00421,0.0059,0.01139,0,0,0,0,0,0.00254,0.00725,0.00309,0.00419,0.00708,0,0,0,0,0,0.00295,0.00823,0.00326,0.0044,0.00767,0,0,0,0,0,0.00245,0.00703,0.00306,0.00414,0.00696,0,0,0,0,0,0.00336,0.00927,0.00344,0.00473,0.00845,0,0,0,0,0,0.00244,0.00704,0.00312,0.00422,0.00707,0,0,0,0,0,0.018,0.06951,0.04266,0.0464,0.05834,0,0,0,0,0,0.0169,0.06743,0.04307,0.04643,0.05686,0,0,0,0,0,0.01874,0.07423,0.04694,0.0506,0.06218,0,0,0,0,0,0.01828,0.06864,0.04068,0.04462,0.05727,0,0,0,0,0,0.01369,0.06113,0.04381,0.04621,0.05263,0,0,0,0,0,0.01386,0.05907,0.04092,0.04325,0.05056,0,0,0,0,0,0.01275,0.05654,0.04039,0.04273,0.04893,0,0,0,0,0,0.01519,0.06381,0.0431,0.04596,0.05434,0,0,0,0,0,0.01301,0.05836,0.04203,0.0444,0.05068,0,0,0,0,0,0.01038,0.03067,0.01247,0.01577,0.02633,0,0,0,0,0,0.00921,0.02777,0.01196,0.01493,0.02415,0,0,0,0,0,0.01029,0.03072,0.01288,0.01612,0.02636,0,0,0,0,0,0.01101,0.03205,0.01249,0.01597,0.02716,0,0,0,0,0,0.00594,0.01977,0.01062,0.01274,0.01842,0,0,0,0,0,0.00667,0.02121,0.01062,0.01281,0.01928,0,0,0,0,0,0.00566,0.01879,0.01012,0.01219,0.01768,0,0,0,0,0,0.00754,0.02366,0.01124,0.01377,0.02118,0,0,0,0,0,0.00563,0.01898,0.01041,0.0125,0.01806,0,0,0,0,0,0,0.01351,0.01197,0.00403,0.00416,0,0,0,0,0,0,0.01363,0.01207,0.00405,0.00418,0,0,0,0,0,0,0.01382,0.01224,0.00411,0.00424,0,0,0,0,0,0,0.01351,0.01196,0.00402,0.00415,0,0,0,0,0,0,0.0139,0.01228,0.00411,0.00422,0,0,0,0,0,0,0.01366,0.01212,0.00405,0.00416,0,0,0,0,0,0,0.0138,0.01219,0.00408,0.00419,0,0,0,0,0,0,0.01377,0.01218,0.00408,0.0042,0,0,0,0,0,0,0.01358,0.012,0.00402,0.00413,0,0,0,0,0,0,0.09628,0.14483,0.19833,0.32215,0,0,0,0,0,0,0.08171,0.12792,0.17824,0.29336,0,0,0,0,0,0,0.09432,0.15197,0.21171,0.35312,0,0,0,0,0,0,0.10592,0.16872,0.23324,0.38186,0,0,0,0,0,0,0.04851,0.09719,0.14596,0.25056,0,0,0,0,0,0,0.05622,0.11052,0.15954,0.27471,0,0,0,0,0,0,0.04619,0.09371,0.14146,0.24218,0,0,0,0,0,0,0.0651,0.11464,0.16503,0.27758,0,0,0,0,0,0,0.04573,0.0879,0.13002,0.21562,0,0,0,0,0 +Pickup,PH10E,2015,0,0,0.00851,0.00932,0.01037,0.0128,0,0,0,0,0,0,0.00865,0.00938,0.01032,0.01244,0,0,0,0,0,0,0.00947,0.01026,0.01129,0.01368,0,0,0,0,0,0,0.00805,0.0089,0.01002,0.01263,0,0,0,0,0,0,0.00894,0.00945,0.01007,0.01137,0,0,0,0,0,0,0.00825,0.00879,0.00948,0.01097,0,0,0,0,0,0,0.00819,0.00868,0.00929,0.01053,0,0,0,0,0,0,0.00872,0.00934,0.01011,0.01181,0,0,0,0,0,0,0.00853,0.00903,0.00963,0.01087,0,0,0,0,0,0,0.02901,0.01941,0.01781,0.02215,0,0,0,0,0,0,0.02658,0.01807,0.01687,0.02094,0,0,0,0,0,0,0.02882,0.02106,0.01968,0.02486,0,0,0,0,0,0,0.03107,0.02281,0.02127,0.02671,0,0,0,0,0,0,0.01998,0.01624,0.01622,0.02037,0,0,0,0,0,0,0.02221,0.01753,0.01732,0.0218,0,0,0,0,0,0,0.01979,0.01605,0.01612,0.02014,0,0,0,0,0,0,0.02339,0.01765,0.017,0.02122,0,0,0,0,0,0,0.01942,0.01481,0.01452,0.0178,0,0,0,0,0,0,1.74799,3.07054,4.1433,5.53772,0,0,0,0,0,0,1.74058,3.08025,4.17933,5.56657,0,0,0,0,0,0,1.79393,3.3989,4.7293,6.41596,0,0,0,0,0,0,1.91334,3.63271,5.06757,6.83287,0,0,0,0,0,0,1.71079,3.3865,4.75319,6.37417,0,0,0,0,0,0,1.75939,3.44427,4.84742,6.53269,0,0,0,0,0,0,1.78328,3.49932,4.89366,6.53236,0,0,0,0,0,0,1.75814,3.3309,4.59475,6.14177,0,0,0,0,0,0,1.6025,3.00063,4.08485,5.39092,0,0,0,0,0,0,338.12208,340.05626,343.22557,362.165,0,0,0,0,0,0,340.95583,342.66252,345.51406,364.06892,0,0,0,0,0,0,345.67308,347.51146,350.55982,369.62377,0,0,0,0,0,0,337.90022,339.76243,342.84575,361.64608,0,0,0,0,0,0,347.01262,347.93671,349.69034,366.75993,0,0,0,0,0,0,342.47414,342.50262,344.57625,361.91932,0,0,0,0,0,0,344.54961,345.39056,347.02963,363.8184,0,0,0,0,0,0,344.17477,345.43692,347.66513,365.3673,0,0,0,0,0,0,339.12031,340.19555,342.12805,359.14252,0,0,0,0,0,0,0.00464,0.00532,0.00631,0.00881,0,0,0,0,0,0,0.00465,0.00532,0.00631,0.0088,0,0,0,0,0,0,0.00472,0.0054,0.00639,0.00889,0,0,0,0,0,0,0.00455,0.00522,0.00619,0.00865,0,0,0,0,0,0,0.0047,0.00538,0.00636,0.00886,0,0,0,0,0,0,0.0046,0.00527,0.00625,0.00871,0,0,0,0,0,0,0.00464,0.00531,0.0063,0.00879,0,0,0,0,0,0,0.00468,0.00536,0.00635,0.00885,0,0,0,0,0,0,0.00472,0.00541,0.00641,0.00893,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02214,0,0,0,0,0,0,0.01462,0.017,0.02188,0.02217,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02216,0,0,0,0,0,0,0.01454,0.01691,0.02176,0.02205,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02214,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02207,0,0,0,0,0,0,0.01459,0.01697,0.02184,0.02213,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02217,0,0,0,0,0,0,0.01465,0.01705,0.02194,0.02222,0,0,0,0,0,0,0.10495,0.12905,0.18836,0.26828,0,0,0,0,0,0,0.10452,0.12736,0.18642,0.26545,0,0,0,0,0,0,0.10568,0.13983,0.20329,0.29451,0,0,0,0,0,0,0.11026,0.14786,0.21472,0.31055,0,0,0,0,0,0,0.0969,0.13038,0.19182,0.28015,0,0,0,0,0,0,0.10169,0.13624,0.19976,0.29062,0,0,0,0,0,0,0.09928,0.13114,0.1932,0.28031,0,0,0,0,0,0,0.10885,0.14034,0.20452,0.29402,0,0,0,0,0,0,0.10062,0.12587,0.18364,0.26179,0,0,0,0,0.00267,0.00373,0.00963,0.00363,0.00522,0.00859,0,0,0,0,0.00234,0.00327,0.00857,0.00344,0.00491,0.00796,0,0,0,0,0.00255,0.00357,0.00932,0.00356,0.00512,0.00843,0,0,0,0,0.00278,0.0039,0.01009,0.00368,0.00531,0.00885,0,0,0,0,0.00142,0.00197,0.00563,0.00292,0.00408,0.00626,0,0,0,0,0.00163,0.00227,0.00632,0.00301,0.00424,0.00661,0,0,0,0,0.00139,0.00192,0.0055,0.00291,0.00406,0.0062,0,0,0,0,0.00187,0.0026,0.00707,0.00318,0.0045,0.0071,0,0,0,0,0.00141,0.00195,0.00556,0.00297,0.00414,0.00629,0,0,0,0,0.01309,0.01538,0.06211,0.04145,0.0451,0.05304,0,0,0,0,0.01263,0.0146,0.06104,0.0421,0.04545,0.05255,0,0,0,0,0.01387,0.01602,0.06689,0.04576,0.04935,0.05712,0,0,0,0,0.01289,0.01531,0.06042,0.03928,0.04307,0.05144,0,0,0,0,0.01119,0.01233,0.05752,0.04338,0.04593,0.05081,0,0,0,0,0.01089,0.01221,0.05496,0.04011,0.04283,0.04821,0,0,0,0,0.01039,0.0115,0.05312,0.04,0.04251,0.04726,0,0,0,0,0.01182,0.01338,0.05879,0.0424,0.04535,0.05132,0,0,0,0,0.01074,0.01187,0.05507,0.04164,0.04418,0.04898,0,0,0,0,0.00603,0.00806,0.02412,0.01139,0.01462,0.02165,0,0,0,0,0.00543,0.00718,0.02212,0.0111,0.01406,0.02034,0,0,0,0,0.00598,0.00788,0.02423,0.01183,0.01501,0.02188,0,0,0,0,0.00624,0.00838,0.02479,0.01125,0.0146,0.02201,0,0,0,0,0.00373,0.00473,0.01657,0.01024,0.0125,0.01681,0,0,0,0,0.00405,0.00522,0.01746,0.01003,0.01244,0.01719,0,0,0,0,0.00356,0.00455,0.01577,0.00978,0.012,0.0162,0,0,0,0,0.00456,0.00594,0.01922,0.01063,0.01323,0.01851,0,0,0,0,0.00362,0.00463,0.01607,0.01007,0.01231,0.01655,0,0,0,0,0,0,0.00976,0.00327,0.0033,0.00349,0,0,0,0,0,0,0.00985,0.0033,0.00333,0.0035,0,0,0,0,0,0,0.00998,0.00334,0.00337,0.00356,0,0,0,0,0,0,0.00976,0.00327,0.0033,0.00348,0,0,0,0,0,0,0.01002,0.00335,0.00337,0.00353,0,0,0,0,0,0,0.00989,0.0033,0.00332,0.00348,0,0,0,0,0,0,0.00995,0.00332,0.00334,0.0035,0,0,0,0,0,0,0.00994,0.00332,0.00335,0.00352,0,0,0,0,0,0,0.00979,0.00327,0.00329,0.00346,0,0,0,0,0,0,0.07256,0.10793,0.16473,0.24345,0,0,0,0,0,0,0.06456,0.09841,0.15324,0.22614,0,0,0,0,0,0,0.07203,0.11521,0.17944,0.26852,0,0,0,0,0,0,0.07823,0.12455,0.19303,0.28812,0,0,0,0,0,0,0.04358,0.08151,0.13798,0.20586,0,0,0,0,0,0,0.05032,0.08897,0.14828,0.22181,0,0,0,0,0,0,0.04216,0.07918,0.13504,0.20088,0,0,0,0,0,0,0.0541,0.09194,0.14887,0.22095,0,0,0,0,0,0,0.04161,0.07409,0.12354,0.18049,0,0,0,0 +Pickup,PH10E,2020,0,0,0,0.00832,0.009,0.00969,0.01202,0,0,0,0,0,0,0.00849,0.0091,0.00971,0.01177,0,0,0,0,0,0,0.00928,0.00995,0.01063,0.01292,0,0,0,0,0,0,0.00785,0.00856,0.00929,0.01178,0,0,0,0,0,0,0.00883,0.00926,0.00967,0.01098,0,0,0,0,0,0,0.00811,0.00858,0.00904,0.01053,0,0,0,0,0,0,0.00809,0.00851,0.0089,0.01017,0,0,0,0,0,0,0.00858,0.0091,0.00961,0.01129,0,0,0,0,0,0,0.00843,0.00885,0.00924,0.01051,0,0,0,0,0,0,0.02221,0.01607,0.01367,0.01742,0,0,0,0,0,0,0.01995,0.01477,0.01277,0.01638,0,0,0,0,0,0,0.02206,0.01724,0.01491,0.01972,0,0,0,0,0,0,0.02395,0.01876,0.01619,0.02129,0,0,0,0,0,0,0.0138,0.01254,0.01156,0.01576,0,0,0,0,0,0,0.01546,0.01373,0.01252,0.01702,0,0,0,0,0,0,0.0135,0.01235,0.01146,0.01556,0,0,0,0,0,0,0.01693,0.014,0.01246,0.01654,0,0,0,0,0,0,0.01322,0.01137,0.01033,0.01357,0,0,0,0,0,0,1.37924,2.0814,2.62686,4.03125,0,0,0,0,0,0,1.36505,2.07029,2.62221,4.04018,0,0,0,0,0,0,1.42101,2.28589,2.96238,4.76964,0,0,0,0,0,0,1.52138,2.45739,3.19844,5.11541,0,0,0,0,0,0,1.32564,2.2181,2.88967,4.67583,0,0,0,0,0,0,1.35579,2.27169,2.97123,4.83684,0,0,0,0,0,0,1.37756,2.29363,2.9807,4.79141,0,0,0,0,0,0,1.37093,2.20682,2.83455,4.49834,0,0,0,0,0,0,1.23549,1.96805,2.49394,3.87749,0,0,0,0,0,0,287.03177,288.945,292.13415,317.35488,0,0,0,0,0,0,289.31393,291.03834,293.95164,318.81544,0,0,0,0,0,0,293.37827,295.21817,298.31062,323.7828,0,0,0,0,0,0,286.83015,288.68405,291.79913,316.87766,0,0,0,0,0,0,294.03922,295.11255,297.06731,320.47563,0,0,0,0,0,0,289.36988,290.63083,292.86101,316.46625,0,0,0,0,0,0,291.92229,292.92404,294.77611,317.8553,0,0,0,0,0,0,291.81081,293.16554,295.53406,319.55864,0,0,0,0,0,0,287.40281,288.59464,290.69332,313.90899,0,0,0,0,0,0,0.00474,0.00536,0.00631,0.00831,0,0,0,0,0,0,0.00475,0.00536,0.00631,0.0083,0,0,0,0,0,0,0.00482,0.00544,0.00639,0.00839,0,0,0,0,0,0,0.00465,0.00526,0.00619,0.00817,0,0,0,0,0,0,0.0048,0.00542,0.00636,0.00836,0,0,0,0,0,0,0.0047,0.00531,0.00625,0.00822,0,0,0,0,0,0,0.00474,0.00536,0.0063,0.0083,0,0,0,0,0,0,0.00478,0.0054,0.00635,0.00836,0,0,0,0,0,0,0.00482,0.00545,0.0064,0.00843,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01462,0.01701,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01692,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01698,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01705,0.02193,0.02193,0,0,0,0,0,0,0.06862,0.11062,0.1487,0.20682,0,0,0,0,0,0,0.06775,0.10897,0.14679,0.20422,0,0,0,0,0,0,0.06919,0.11933,0.1596,0.22751,0,0,0,0,0,0,0.07215,0.12682,0.16948,0.24162,0,0,0,0,0,0,0.0612,0.10996,0.14835,0.21334,0,0,0,0,0,0,0.06471,0.11568,0.15571,0.22311,0,0,0,0,0,0,0.06244,0.11099,0.15,0.21393,0,0,0,0,0,0,0.06915,0.11948,0.16006,0.22568,0,0,0,0,0,0,0.06291,0.10639,0.14262,0.19858,0,0,0,0.00083,0.00132,0.0018,0.00625,0.00307,0.00407,0.00729,0,0,0,0.00076,0.00118,0.0016,0.00564,0.00291,0.00384,0.00679,0,0,0,0.00088,0.00108,0.00146,0.00602,0.00302,0.004,0.00716,0,0,0,0.0009,0.00134,0.00183,0.00648,0.00311,0.00414,0.00748,0,0,0,0.00053,0.00083,0.00113,0.00396,0.00249,0.00322,0.00544,0,0,0,0.0006,0.00085,0.00115,0.00432,0.00257,0.00334,0.00572,0,0,0,0.00051,0.00078,0.00106,0.00385,0.00249,0.00321,0.00539,0,0,0,0.00065,0.00094,0.00127,0.00476,0.00271,0.00353,0.00611,0,0,0,0.00047,0.00071,0.00096,0.00387,0.00254,0.00326,0.00547,0,0,0,0.00914,0.01019,0.01128,0.05461,0.04021,0.04254,0.05012,0,0,0,0.00924,0.01011,0.01107,0.05457,0.04096,0.04309,0.04996,0,0,0,0.01025,0.01063,0.01148,0.05954,0.04455,0.04684,0.05429,0,0,0,0.00882,0.00975,0.01087,0.05236,0.038,0.04042,0.04835,0,0,0,0.00931,0.00992,0.01058,0.05388,0.04249,0.0441,0.04906,0,0,0,0.00868,0.00919,0.00986,0.05041,0.03917,0.04089,0.04629,0,0,0,0.00854,0.00909,0.00969,0.04953,0.03912,0.0407,0.04556,0,0,0,0.00922,0.00981,0.01054,0.05372,0.04139,0.04326,0.04916,0,0,0,0.00878,0.00925,0.00979,0.05144,0.04075,0.04234,0.04724,0,0,0,0.00254,0.00347,0.00443,0.01749,0.0103,0.01236,0.01906,0,0,0,0.00243,0.0032,0.00405,0.01639,0.01009,0.01198,0.01806,0,0,0,0.00278,0.00311,0.00387,0.01774,0.01076,0.01278,0.01937,0,0,0,0.00264,0.00346,0.00445,0.01766,0.01012,0.01225,0.01927,0,0,0,0.00205,0.0026,0.00318,0.01335,0.00945,0.01087,0.01527,0,0,0,0.00209,0.00254,0.00313,0.01355,0.0092,0.01072,0.01549,0,0,0,0.00193,0.00241,0.00295,0.01259,0.009,0.0104,0.0147,0,0,0,0.00225,0.00277,0.00342,0.01474,0.00973,0.01138,0.01661,0,0,0,0.00188,0.00231,0.00278,0.01285,0.00928,0.01069,0.01502,0,0,0,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00278,0.0028,0.00283,0.00307,0,0,0,0,0,0,0.00282,0.00284,0.00287,0.00312,0,0,0,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00283,0.00284,0.00286,0.00308,0,0,0,0,0,0,0.00279,0.0028,0.00282,0.00305,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00306,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00308,0,0,0,0,0,0,0.00277,0.00278,0.0028,0.00302,0,0,0,0,0,0,0.06129,0.09029,0.12737,0.19823,0,0,0,0,0,0,0.05401,0.08132,0.11645,0.18306,0,0,0,0,0,0,0.06093,0.09522,0.13643,0.2208,0,0,0,0,0,0,0.06641,0.10347,0.14776,0.23796,0,0,0,0,0,0,0.0345,0.06284,0.09654,0.16485,0,0,0,0,0,0,0.03959,0.06993,0.1059,0.17941,0,0,0,0,0,0,0.0331,0.06081,0.09405,0.16042,0,0,0,0,0,0,0.04426,0.07339,0.10849,0.17831,0,0,0,0,0,0,0.03251,0.05685,0.08625,0.14194,0,0,0 +Pickup,PH10E,2025,0,0,0,0,0.00798,0.00838,0.00881,0.01073,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.01062,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01165,0,0,0,0,0,0,0.00749,0.00792,0.00836,0.0104,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.01022,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00968,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00943,0,0,0,0,0,0,0.00831,0.00862,0.00894,0.01034,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00977,0,0,0,0,0,0,0.01788,0.01171,0.00946,0.01326,0,0,0,0,0,0,0.01557,0.01039,0.00853,0.01223,0,0,0,0,0,0,0.01766,0.0122,0.01001,0.01484,0,0,0,0,0,0,0.01944,0.01341,0.01097,0.01612,0,0,0,0,0,0,0.00922,0.00744,0.00661,0.01094,0,0,0,0,0,0,0.01087,0.00849,0.00741,0.01204,0,0,0,0,0,0,0.00883,0.0072,0.00645,0.01072,0,0,0,0,0,0,0.01237,0.00906,0.0077,0.01189,0,0,0,0,0,0,0.00863,0.0067,0.00588,0.00931,0,0,0,0,0,0,0.91715,1.34034,1.7002,2.85338,0,0,0,0,0,0,0.88569,1.30716,1.66592,2.82923,0,0,0,0,0,0,0.93291,1.44892,1.88519,3.36535,0,0,0,0,0,0,1.00807,1.57114,2.0509,3.63255,0,0,0,0,0,0,0.79473,1.31547,1.73116,3.19084,0,0,0,0,0,0,0.82906,1.36736,1.80371,3.33111,0,0,0,0,0,0,0.82197,1.3577,1.78296,3.26628,0,0,0,0,0,0,0.85374,1.34733,1.74398,3.10779,0,0,0,0,0,0,0.74165,1.17042,1.49807,2.63216,0,0,0,0,0,0,234.5869,235.72343,238.0583,268.31088,0,0,0,0,0,0,236.33707,237.30807,239.39352,269.34204,0,0,0,0,0,0,239.7154,240.77831,243.01688,273.64091,0,0,0,0,0,0,234.41023,235.49784,237.77024,267.88659,0,0,0,0,0,0,239.81341,240.21794,241.44124,270.06181,0,0,0,0,0,0,236.1256,236.69955,238.17702,266.89992,0,0,0,0,0,0,238.05912,238.40674,239.54376,267.80454,0,0,0,0,0,0,238.15974,238.80941,240.4054,269.58388,0,0,0,0,0,0,234.44742,234.96253,236.32132,264.61313,0,0,0,0,0,0,0.00477,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00478,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00485,0.00544,0.00637,0.0083,0,0,0,0,0,0,0.00468,0.00525,0.00617,0.00808,0,0,0,0,0,0,0.00483,0.00541,0.00634,0.00827,0,0,0,0,0,0,0.00473,0.00531,0.00623,0.00814,0,0,0,0,0,0,0.00477,0.00535,0.00628,0.00821,0,0,0,0,0,0,0.00481,0.0054,0.00633,0.00827,0,0,0,0,0,0,0.00485,0.00544,0.00638,0.00834,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01703,0.02193,0.02193,0,0,0,0,0,0,0.04247,0.06358,0.08504,0.14444,0,0,0,0,0,0,0.04132,0.06188,0.083,0.14177,0,0,0,0,0,0,0.04249,0.06735,0.0898,0.15883,0,0,0,0,0,0,0.04441,0.07155,0.0953,0.1691,0,0,0,0,0,0,0.03499,0.05869,0.0794,0.14505,0,0,0,0,0,0,0.03792,0.06286,0.08465,0.15312,0,0,0,0,0,0,0.03567,0.05933,0.08035,0.14532,0,0,0,0,0,0,0.04046,0.06509,0.08718,0.15454,0,0,0,0,0,0,0.03571,0.0569,0.0765,0.13396,0,0,0,0.0005,0.00084,0.00119,0.00431,0.00192,0.00254,0.00526,0,0,0,0.00046,0.00078,0.0011,0.00392,0.00183,0.0024,0.0049,0,0,0,0.00042,0.0007,0.00114,0.00414,0.00189,0.0025,0.00516,0,0,0,0.00051,0.00086,0.00123,0.00445,0.00195,0.00258,0.00539,0,0,0,0.0004,0.00066,0.00088,0.00288,0.00156,0.00202,0.00394,0,0,0,0.00039,0.00065,0.00092,0.00309,0.00161,0.00209,0.00414,0,0,0,0.00038,0.00063,0.00083,0.00277,0.00156,0.00201,0.0039,0,0,0,0.0004,0.00067,0.00097,0.00336,0.0017,0.00221,0.00442,0,0,0,0.00034,0.00056,0.00081,0.00277,0.00159,0.00204,0.00396,0,0,0,0.00847,0.00925,0.01006,0.05048,0.0377,0.03914,0.04549,0,0,0,0.00863,0.00934,0.01008,0.05094,0.0386,0.03992,0.04571,0,0,0,0.00925,0.00988,0.01092,0.05553,0.04208,0.04349,0.04974,0,0,0,0.00799,0.00879,0.00966,0.04803,0.03544,0.03693,0.04355,0,0,0,0.00904,0.0096,0.01008,0.05163,0.04054,0.04154,0.04582,0,0,0,0.00824,0.00879,0.00941,0.04783,0.03714,0.03821,0.04283,0,0,0,0.00826,0.00878,0.00923,0.04729,0.03719,0.03817,0.04236,0,0,0,0.0087,0.00928,0.00996,0.05078,0.03924,0.04039,0.04542,0,0,0,0.0085,0.00896,0.00951,0.04915,0.03878,0.03977,0.04401,0,0,0,0.00194,0.00263,0.00335,0.01384,0.00808,0.00935,0.01497,0,0,0,0.00189,0.00252,0.00318,0.01318,0.008,0.00917,0.01429,0,0,0,0.00189,0.00245,0.00337,0.01418,0.00858,0.00983,0.01535,0,0,0,0.0019,0.00261,0.00339,0.01382,0.00785,0.00917,0.01502,0,0,0,0.00182,0.00231,0.00274,0.01136,0.00773,0.00861,0.01239,0,0,0,0.0017,0.00219,0.00273,0.01127,0.0074,0.00835,0.01243,0,0,0,0.00168,0.00214,0.00254,0.01061,0.00729,0.00816,0.01187,0,0,0,0.00179,0.0023,0.00291,0.01213,0.00782,0.00885,0.01329,0,0,0,0.00164,0.00205,0.00254,0.01083,0.00753,0.00841,0.01216,0,0,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00227,0.00228,0.0023,0.00259,0,0,0,0,0,0,0.00231,0.00232,0.00234,0.00263,0,0,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00231,0.00231,0.00232,0.0026,0,0,0,0,0,0,0.00227,0.00228,0.00229,0.00257,0,0,0,0,0,0,0.00229,0.00229,0.00231,0.00258,0,0,0,0,0,0,0.00229,0.0023,0.00231,0.00259,0,0,0,0,0,0,0.00226,0.00226,0.00227,0.00255,0,0,0,0,0,0,0.05239,0.07068,0.09542,0.15728,0,0,0,0,0,0,0.04494,0.06163,0.08436,0.14244,0,0,0,0,0,0,0.05167,0.07251,0.09923,0.17265,0,0,0,0,0,0,0.05713,0.07986,0.10885,0.18752,0,0,0,0,0,0,0.02472,0.03987,0.05907,0.1178,0,0,0,0,0,0,0.0299,0.04655,0.06759,0.13108,0,0,0,0,0,0,0.02327,0.03794,0.05667,0.11377,0,0,0,0,0,0,0.03468,0.05123,0.07249,0.13297,0,0,0,0,0,0,0.02279,0.03576,0.05249,0.1005,0,0 +Pickup,PH10E,2030,0,0,0,0,0,0.00797,0.00838,0.0088,0.01001,0,0,0,0,0,0,0.00817,0.00854,0.00891,0.00998,0,0,0,0,0,0,0.00894,0.00934,0.00975,0.01094,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.00964,0,0,0,0,0,0,0.0086,0.00885,0.00911,0.0098,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.0092,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00902,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00981,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00936,0,0,0,0,0,0,0.01662,0.01047,0.00835,0.0107,0,0,0,0,0,0,0.01429,0.00916,0.00742,0.00966,0,0,0,0,0,0,0.01635,0.01077,0.00873,0.01163,0,0,0,0,0,0,0.01809,0.01189,0.0096,0.01271,0,0,0,0,0,0,0.0079,0.00602,0.00532,0.00773,0,0,0,0,0,0,0.00953,0.00701,0.00608,0.00869,0,0,0,0,0,0,0.00748,0.00576,0.00515,0.00751,0,0,0,0,0,0,0.01105,0.00767,0.00645,0.00887,0,0,0,0,0,0,0.00732,0.0054,0.00472,0.00662,0,0,0,0,0,0,0.7973,1.16542,1.49197,2.19791,0,0,0,0,0,0,0.76171,1.12744,1.45133,2.15194,0,0,0,0,0,0,0.80604,1.25159,1.64416,2.53336,0,0,0,0,0,0,0.87395,1.36104,1.79302,2.74754,0,0,0,0,0,0,0.6579,1.10385,1.47231,2.31051,0,0,0,0,0,0,0.69274,1.15455,1.54226,2.42859,0,0,0,0,0,0,0.67878,1.13779,1.51464,2.36529,0,0,0,0,0,0,0.71997,1.14551,1.49969,2.29838,0,0,0,0,0,0,0.61454,0.98364,1.27484,1.92636,0,0,0,0,0,0,213.49891,215.51143,218.87846,237.62188,0,0,0,0,0,0,215.04232,216.91048,220.04699,238.42257,0,0,0,0,0,0,218.14123,220.1076,223.40804,242.28526,0,0,0,0,0,0,213.33378,215.30129,218.60983,237.23679,0,0,0,0,0,0,218.03909,219.40321,221.73125,238.68086,0,0,0,0,0,0,214.73855,216.24264,218.79651,236.00728,0,0,0,0,0,0,216.43235,217.73743,219.97522,236.65925,0,0,0,0,0,0,216.60666,218.18827,220.8651,238.42237,0,0,0,0,0,0,213.17955,214.62181,217.05028,233.90875,0,0,0,0,0,0,0.00476,0.00533,0.00628,0.00818,0,0,0,0,0,0,0.00477,0.00534,0.00628,0.00817,0,0,0,0,0,0,0.00485,0.00541,0.00636,0.00826,0,0,0,0,0,0,0.00467,0.00523,0.00616,0.00804,0,0,0,0,0,0,0.00482,0.00539,0.00633,0.00823,0,0,0,0,0,0,0.00472,0.00528,0.00622,0.00809,0,0,0,0,0,0,0.00476,0.00533,0.00627,0.00816,0,0,0,0,0,0,0.00481,0.00538,0.00632,0.00822,0,0,0,0,0,0,0.00484,0.00542,0.00637,0.00829,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01697,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01697,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01688,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.0169,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01694,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01698,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01702,0.02193,0.02193,0,0,0,0,0,0,0.03365,0.04914,0.06776,0.10601,0,0,0,0,0,0,0.03239,0.04743,0.06568,0.10326,0,0,0,0,0,0,0.03333,0.05141,0.07089,0.11465,0,0,0,0,0,0,0.03478,0.0545,0.07511,0.12181,0,0,0,0,0,0,0.02603,0.04302,0.06075,0.10111,0,0,0,0,0,0,0.0287,0.04664,0.06537,0.10784,0,0,0,0,0,0,0.02654,0.04348,0.06145,0.10144,0,0,0,0,0,0,0.03064,0.04839,0.06736,0.10932,0,0,0,0,0,0,0.02653,0.0418,0.05855,0.09404,0,0,0,0.00042,0.00072,0.00105,0.00324,0.00192,0.00254,0.00418,0,0,0,0.0004,0.00069,0.001,0.00303,0.00182,0.0024,0.00391,0,0,0,0.00037,0.0007,0.00102,0.00314,0.00188,0.0025,0.00411,0,0,0,0.00043,0.00073,0.00107,0.00332,0.00194,0.00258,0.00428,0,0,0,0.00037,0.0006,0.00085,0.00245,0.00156,0.00201,0.00315,0,0,0,0.00035,0.00061,0.00087,0.00255,0.00161,0.00209,0.00331,0,0,0,0.00035,0.00057,0.0008,0.00236,0.00156,0.00201,0.00313,0,0,0,0.00036,0.00063,0.0009,0.0027,0.00169,0.00221,0.00353,0,0,0,0.00031,0.00055,0.00078,0.00235,0.00159,0.00204,0.00318,0,0,0,0.00829,0.00894,0.0097,0.04812,0.03768,0.03913,0.043,0,0,0,0.00848,0.00911,0.00981,0.04896,0.03858,0.03991,0.04344,0,0,0,0.00912,0.00986,0.01059,0.05329,0.04206,0.04349,0.0473,0,0,0,0.00778,0.00847,0.00925,0.04549,0.03543,0.03693,0.04097,0,0,0,0.00895,0.00944,0.00999,0.05068,0.04054,0.04154,0.04411,0,0,0,0.00815,0.0087,0.00928,0.04665,0.03713,0.0382,0.04099,0,0,0,0.00818,0.00864,0.00915,0.04639,0.03718,0.03816,0.04068,0,0,0,0.00858,0.00917,0.00978,0.04933,0.03922,0.04039,0.04343,0,0,0,0.00844,0.00895,0.00944,0.04823,0.03877,0.03977,0.0423,0,0,0,0.00178,0.00236,0.00303,0.01174,0.00806,0.00934,0.01277,0,0,0,0.00176,0.00231,0.00294,0.01143,0.00799,0.00916,0.01228,0,0,0,0.00178,0.00244,0.00308,0.0122,0.00856,0.00982,0.01319,0,0,0,0.00172,0.00233,0.00302,0.01158,0.00784,0.00917,0.01274,0,0,0,0.00174,0.00217,0.00266,0.01052,0.00772,0.00861,0.01088,0,0,0,0.00162,0.00211,0.00262,0.01022,0.00739,0.00834,0.01081,0,0,0,0.00161,0.00202,0.00247,0.00981,0.00728,0.00816,0.01038,0,0,0,0.00169,0.00221,0.00275,0.01085,0.00781,0.00884,0.01153,0,0,0,0.00158,0.00204,0.00248,0.01002,0.00753,0.00841,0.01065,0,0,0,0,0,0,0.00205,0.00207,0.00211,0.00229,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.00229,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00233,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00228,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0023,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00227,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00228,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.00229,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00225,0,0,0,0,0,0,0.04937,0.06481,0.08712,0.13154,0,0,0,0,0,0,0.04193,0.05581,0.07605,0.11667,0,0,0,0,0,0,0.04852,0.06576,0.0896,0.14025,0,0,0,0,0,0,0.05391,0.07278,0.09875,0.15351,0,0,0,0,0,0,0.02162,0.03329,0.0495,0.08575,0,0,0,0,0,0,0.02678,0.03979,0.05778,0.09789,0,0,0,0,0,0,0.02017,0.03139,0.04712,0.08211,0,0,0,0,0,0,0.03157,0.0448,0.06324,0.10275,0,0,0,0,0,0,0.01975,0.02976,0.04387,0.07366,0 +Pickup,PH10E,2035,0,0,0,0,0,0,0.00797,0.00838,0.0088,0.00978,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.00978,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01072,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.0094,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.00967,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00905,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00889,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00964,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00923,0,0,0,0,0,0,0.01653,0.01046,0.00836,0.00986,0,0,0,0,0,0,0.01421,0.00915,0.00742,0.0088,0,0,0,0,0,0,0.01626,0.01076,0.00873,0.01053,0,0,0,0,0,0,0.01799,0.01188,0.0096,0.01153,0,0,0,0,0,0,0.00786,0.00602,0.00533,0.00661,0,0,0,0,0,0,0.00948,0.00701,0.00608,0.00752,0,0,0,0,0,0,0.00745,0.00576,0.00515,0.00639,0,0,0,0,0,0,0.01099,0.00767,0.00646,0.00783,0,0,0,0,0,0,0.00728,0.0054,0.00472,0.00571,0,0,0,0,0,0,0.79761,1.16635,1.49257,1.99708,0,0,0,0,0,0,0.76227,1.12838,1.45186,1.9433,0,0,0,0,0,0,0.80673,1.25277,1.64477,2.27123,0,0,0,0,0,0,0.8747,1.36231,1.79367,2.46744,0,0,0,0,0,0,0.65933,1.105,1.47266,2.03042,0,0,0,0,0,0,0.69411,1.15574,1.54266,2.14062,0,0,0,0,0,0,0.68029,1.13894,1.51496,2.07866,0,0,0,0,0,0,0.72107,1.14653,1.50013,2.04353,0,0,0,0,0,0,0.61569,0.98447,1.27517,1.70565,0,0,0,0,0,0,213.45459,215.51958,218.89542,227.92808,0,0,0,0,0,0,215.00058,216.91807,220.06238,228.65637,0,0,0,0,0,0,218.09737,220.1156,223.42433,232.38117,0,0,0,0,0,0,213.28959,215.30918,218.62603,227.5553,0,0,0,0,0,0,218.00676,219.40855,221.74227,228.7709,0,0,0,0,0,0,214.70366,216.24846,218.8088,226.25097,0,0,0,0,0,0,216.40104,217.74241,219.98545,226.82384,0,0,0,0,0,0,216.57028,218.19448,220.87797,228.58087,0,0,0,0,0,0,213.14733,214.62766,217.06223,224.21254,0,0,0,0,0,0,0.00475,0.00534,0.00628,0.00819,0,0,0,0,0,0,0.00476,0.00534,0.00628,0.00818,0,0,0,0,0,0,0.00483,0.00542,0.00636,0.00826,0,0,0,0,0,0,0.00466,0.00523,0.00617,0.00805,0,0,0,0,0,0,0.00481,0.00539,0.00634,0.00823,0,0,0,0,0,0,0.00471,0.00529,0.00622,0.0081,0,0,0,0,0,0,0.00475,0.00533,0.00627,0.00817,0,0,0,0,0,0,0.00479,0.00538,0.00633,0.00823,0,0,0,0,0,0,0.00483,0.00542,0.00638,0.0083,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01704,0.02193,0.02193,0,0,0,0,0,0,0.03362,0.04925,0.0678,0.09277,0,0,0,0,0,0,0.03237,0.04753,0.06572,0.08998,0,0,0,0,0,0,0.03332,0.05153,0.07093,0.09907,0,0,0,0,0,0,0.03477,0.05462,0.07515,0.10502,0,0,0,0,0,0,0.02604,0.04313,0.06078,0.08557,0,0,0,0,0,0,0.0287,0.04676,0.0654,0.0918,0,0,0,0,0,0,0.02655,0.04359,0.06148,0.08596,0,0,0,0,0,0,0.03064,0.0485,0.0674,0.09343,0,0,0,0,0,0,0.02653,0.0419,0.05858,0.0802,0,0,0,0.00039,0.00063,0.00084,0.00272,0.00192,0.00254,0.00384,0,0,0,0.00037,0.0006,0.0008,0.00257,0.00182,0.0024,0.00359,0,0,0,0.00038,0.00061,0.00081,0.00264,0.00189,0.0025,0.00378,0,0,0,0.00039,0.00064,0.00085,0.00277,0.00194,0.00258,0.00393,0,0,0,0.00033,0.00052,0.00068,0.00216,0.00156,0.00201,0.00291,0,0,0,0.00033,0.00053,0.0007,0.00223,0.00161,0.00209,0.00305,0,0,0,0.00031,0.0005,0.00065,0.00209,0.00156,0.00201,0.00288,0,0,0,0.00034,0.00055,0.00072,0.00234,0.00169,0.00221,0.00325,0,0,0,0.00031,0.00049,0.00063,0.00208,0.00159,0.00204,0.00293,0,0,0,0.0082,0.00874,0.00923,0.04693,0.03769,0.03913,0.04223,0,0,0,0.00841,0.00892,0.00937,0.04793,0.03859,0.03991,0.04272,0,0,0,0.00915,0.00967,0.01014,0.05218,0.04207,0.04349,0.04653,0,0,0,0.0077,0.00825,0.00876,0.04424,0.03543,0.03693,0.04016,0,0,0,0.00887,0.00929,0.00963,0.05005,0.04054,0.04154,0.04356,0,0,0,0.00811,0.00854,0.00891,0.04594,0.03713,0.03821,0.04041,0,0,0,0.00811,0.0085,0.00882,0.04581,0.03718,0.03817,0.04014,0,0,0,0.00855,0.009,0.00939,0.04852,0.03923,0.04039,0.0428,0,0,0,0.00842,0.00881,0.00912,0.04766,0.03878,0.03977,0.04176,0,0,0,0.0017,0.00218,0.00261,0.0107,0.00807,0.00935,0.01208,0,0,0,0.0017,0.00215,0.00254,0.01052,0.00799,0.00917,0.01165,0,0,0,0.0018,0.00226,0.00268,0.01122,0.00857,0.00982,0.01251,0,0,0,0.00165,0.00214,0.00259,0.01047,0.00784,0.00917,0.01203,0,0,0,0.00167,0.00204,0.00235,0.00996,0.00773,0.00861,0.0104,0,0,0,0.00159,0.00197,0.00229,0.00959,0.0074,0.00834,0.01029,0,0,0,0.00155,0.00189,0.00218,0.00929,0.00729,0.00816,0.00991,0,0,0,0.00166,0.00206,0.00241,0.01013,0.00782,0.00884,0.01098,0,0,0,0.00157,0.00191,0.00219,0.00951,0.00753,0.00841,0.01017,0,0,0,0,0,0,0.00205,0.00207,0.00211,0.00219,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.0022,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00224,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00219,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0022,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.0022,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00216,0,0,0,0,0,0,0.04925,0.0649,0.08719,0.12317,0,0,0,0,0,0,0.04183,0.05589,0.07612,0.10819,0,0,0,0,0,0,0.0484,0.06585,0.08967,0.12928,0,0,0,0,0,0,0.05379,0.07288,0.09883,0.142,0,0,0,0,0,0,0.02159,0.03336,0.04954,0.07461,0,0,0,0,0,0,0.02673,0.03987,0.05782,0.08636,0,0,0,0,0,0,0.02014,0.03146,0.04715,0.07113,0,0,0,0,0,0,0.03151,0.04487,0.06329,0.09245,0,0,0,0,0,0,0.01971,0.02982,0.04391,0.06454 +Pickup,PH10E,2040,0,0,0,0,0,0,0,0.00797,0.00838,0.0088,0,0,0,0,0,0,0,0.00817,0.00854,0.00892,0,0,0,0,0,0,0,0.00894,0.00934,0.00975,0,0,0,0,0,0,0,0.00749,0.00791,0.00836,0,0,0,0,0,0,0,0.0086,0.00885,0.00911,0,0,0,0,0,0,0,0.00786,0.00814,0.00842,0,0,0,0,0,0,0,0.00786,0.00811,0.00835,0,0,0,0,0,0,0,0.00831,0.00862,0.00893,0,0,0,0,0,0,0,0.0082,0.00845,0.00869,0,0,0,0,0,0,0,0.01653,0.01046,0.00835,0,0,0,0,0,0,0,0.01422,0.00915,0.00742,0,0,0,0,0,0,0,0.01626,0.01076,0.00873,0,0,0,0,0,0,0,0.01799,0.01188,0.0096,0,0,0,0,0,0,0,0.00787,0.00601,0.00532,0,0,0,0,0,0,0,0.00949,0.00701,0.00608,0,0,0,0,0,0,0,0.00745,0.00576,0.00515,0,0,0,0,0,0,0,0.01099,0.00767,0.00645,0,0,0,0,0,0,0,0.00729,0.00539,0.00472,0,0,0,0,0,0,0,0.79649,1.16554,1.49218,0,0,0,0,0,0,0,0.76117,1.12762,1.45152,0,0,0,0,0,0,0,0.80545,1.25186,1.64437,0,0,0,0,0,0,0,0.87331,1.36132,1.79325,0,0,0,0,0,0,0,0.65816,1.10427,1.47244,0,0,0,0,0,0,0,0.69289,1.15496,1.5424,0,0,0,0,0,0,0,0.67911,1.13823,1.51475,0,0,0,0,0,0,0,0.71989,1.14579,1.49985,0,0,0,0,0,0,0,0.61469,0.98389,1.27496,0,0,0,0,0,0,0,213.4427,215.5043,218.88484,0,0,0,0,0,0,0,214.98953,216.90376,220.05274,0,0,0,0,0,0,0,218.08565,220.10049,223.41404,0,0,0,0,0,0,0,213.27791,215.29397,218.61572,0,0,0,0,0,0,0,217.99862,219.39784,221.73511,0,0,0,0,0,0,0,214.69468,216.23676,218.80109,0,0,0,0,0,0,0,216.39311,217.73212,219.97902,0,0,0,0,0,0,0,216.56081,218.18222,220.86993,0,0,0,0,0,0,0,213.1388,214.61659,217.05499,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00483,0.00541,0.00636,0,0,0,0,0,0,0,0.00465,0.00523,0.00617,0,0,0,0,0,0,0,0.00481,0.00539,0.00634,0,0,0,0,0,0,0,0.00471,0.00528,0.00622,0,0,0,0,0,0,0,0.00475,0.00533,0.00627,0,0,0,0,0,0,0,0.00479,0.00537,0.00632,0,0,0,0,0,0,0,0.00483,0.00542,0.00638,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01461,0.01699,0.02188,0,0,0,0,0,0,0,0.01461,0.01698,0.02187,0,0,0,0,0,0,0,0.01454,0.01689,0.02176,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01455,0.01691,0.02178,0,0,0,0,0,0,0,0.01459,0.01695,0.02184,0,0,0,0,0,0,0,0.01462,0.01699,0.02189,0,0,0,0,0,0,0,0.01465,0.01703,0.02193,0,0,0,0,0,0,0,0.03358,0.04918,0.06777,0,0,0,0,0,0,0,0.03233,0.04746,0.0657,0,0,0,0,0,0,0,0.03327,0.05145,0.07091,0,0,0,0,0,0,0,0.03472,0.05454,0.07513,0,0,0,0,0,0,0,0.026,0.04306,0.06076,0,0,0,0,0,0,0,0.02866,0.04669,0.06538,0,0,0,0,0,0,0,0.02651,0.04352,0.06147,0,0,0,0,0,0,0,0.0306,0.04843,0.06738,0,0,0,0,0,0,0,0.0265,0.04184,0.05856,0,0,0,0,0.00026,0.00041,0.00054,0.0023,0.00192,0.00254,0,0,0,0,0.00025,0.00039,0.00051,0.00218,0.00182,0.0024,0,0,0,0,0.00025,0.00039,0.00052,0.00224,0.00188,0.0025,0,0,0,0,0.00026,0.00041,0.00055,0.00233,0.00194,0.00258,0,0,0,0,0.00022,0.00034,0.00044,0.00184,0.00156,0.00201,0,0,0,0,0.00022,0.00035,0.00045,0.0019,0.00161,0.00209,0,0,0,0,0.00021,0.00032,0.00042,0.00179,0.00156,0.00201,0,0,0,0,0.00023,0.00036,0.00047,0.00199,0.00169,0.00221,0,0,0,0,0.0002,0.00032,0.00041,0.0018,0.00159,0.00204,0,0,0,0,0.00791,0.00825,0.00856,0.04596,0.03769,0.03913,0,0,0,0,0.00814,0.00845,0.00874,0.04704,0.03859,0.03991,0,0,0,0,0.00887,0.00919,0.0095,0.05124,0.04207,0.04349,0,0,0,0,0.00741,0.00775,0.00808,0.04322,0.03543,0.03693,0,0,0,0,0.00864,0.0089,0.00912,0.04937,0.04054,0.04154,0,0,0,0,0.00787,0.00814,0.00838,0.04522,0.03713,0.0382,0,0,0,0,0.00788,0.00813,0.00834,0.04517,0.03718,0.03817,0,0,0,0,0.0083,0.00858,0.00884,0.04775,0.03923,0.04039,0,0,0,0,0.00821,0.00845,0.00865,0.04705,0.03877,0.03977,0,0,0,0,0.00145,0.00175,0.00202,0.00983,0.00807,0.00934,0,0,0,0,0.00146,0.00174,0.00199,0.00973,0.00799,0.00916,0,0,0,0,0.00156,0.00184,0.00211,0.01039,0.00856,0.00982,0,0,0,0,0.00139,0.0017,0.00198,0.00957,0.00784,0.00917,0,0,0,0,0.00146,0.00169,0.00189,0.00936,0.00772,0.00861,0,0,0,0,0.00138,0.00161,0.00182,0.00896,0.00739,0.00834,0,0,0,0,0.00135,0.00157,0.00175,0.00873,0.00729,0.00816,0,0,0,0,0.00144,0.00169,0.00191,0.00945,0.00782,0.00884,0,0,0,0,0.00138,0.00159,0.00178,0.00897,0.00753,0.00841,0,0,0,0,0,0,0,0.00205,0.00207,0.00211,0,0,0,0,0,0,0,0.00207,0.00209,0.00212,0,0,0,0,0,0,0,0.0021,0.00212,0.00215,0,0,0,0,0,0,0,0.00205,0.00207,0.0021,0,0,0,0,0,0,0,0.0021,0.00211,0.00213,0,0,0,0,0,0,0,0.00207,0.00208,0.00211,0,0,0,0,0,0,0,0.00208,0.0021,0.00212,0,0,0,0,0,0,0,0.00208,0.0021,0.00213,0,0,0,0,0,0,0,0.00205,0.00207,0.00209,0,0,0,0,0,0,0,0.04919,0.06481,0.08714,0,0,0,0,0,0,0,0.04177,0.05581,0.07607,0,0,0,0,0,0,0,0.04834,0.06576,0.08963,0,0,0,0,0,0,0,0.05372,0.07278,0.09878,0,0,0,0,0,0,0,0.02155,0.03331,0.04951,0,0,0,0,0,0,0,0.02669,0.03981,0.05779,0,0,0,0,0,0,0,0.02011,0.0314,0.04713,0,0,0,0,0,0,0,0.03146,0.04481,0.06326,0,0,0,0,0,0,0,0.01969,0.02977,0.04388 +Pickup,PH10E,2045,0,0,0,0,0,0,0,0,0.00797,0.00838,0,0,0,0,0,0,0,0,0.00817,0.00854,0,0,0,0,0,0,0,0,0.00894,0.00934,0,0,0,0,0,0,0,0,0.00749,0.00791,0,0,0,0,0,0,0,0,0.0086,0.00885,0,0,0,0,0,0,0,0,0.00786,0.00814,0,0,0,0,0,0,0,0,0.00786,0.00811,0,0,0,0,0,0,0,0,0.00831,0.00862,0,0,0,0,0,0,0,0,0.0082,0.00845,0,0,0,0,0,0,0,0,0.01653,0.01046,0,0,0,0,0,0,0,0,0.01422,0.00915,0,0,0,0,0,0,0,0,0.01626,0.01076,0,0,0,0,0,0,0,0,0.01799,0.01188,0,0,0,0,0,0,0,0,0.00787,0.00601,0,0,0,0,0,0,0,0,0.00949,0.00701,0,0,0,0,0,0,0,0,0.00745,0.00576,0,0,0,0,0,0,0,0,0.01099,0.00767,0,0,0,0,0,0,0,0,0.00729,0.00539,0,0,0,0,0,0,0,0,0.79587,1.16531,0,0,0,0,0,0,0,0,0.76056,1.12739,0,0,0,0,0,0,0,0,0.80475,1.25157,0,0,0,0,0,0,0,0,0.87255,1.36101,0,0,0,0,0,0,0,0,0.65756,1.10402,0,0,0,0,0,0,0,0,0.69225,1.15469,0,0,0,0,0,0,0,0,0.67851,1.13797,0,0,0,0,0,0,0,0,0.71926,1.14555,0,0,0,0,0,0,0,0,0.61417,0.9837,0,0,0,0,0,0,0,0,213.43362,215.50112,0,0,0,0,0,0,0,0,214.98102,216.90063,0,0,0,0,0,0,0,0,218.07672,220.09735,0,0,0,0,0,0,0,0,213.26892,215.29077,0,0,0,0,0,0,0,0,217.99222,219.39577,0,0,0,0,0,0,0,0,214.68769,216.23437,0,0,0,0,0,0,0,0,216.38703,217.73035,0,0,0,0,0,0,0,0,216.55366,218.17975,0,0,0,0,0,0,0,0,213.13228,214.61452,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00483,0.00541,0,0,0,0,0,0,0,0,0.00465,0.00523,0,0,0,0,0,0,0,0,0.00481,0.00539,0,0,0,0,0,0,0,0,0.0047,0.00528,0,0,0,0,0,0,0,0,0.00474,0.00533,0,0,0,0,0,0,0,0,0.00479,0.00537,0,0,0,0,0,0,0,0,0.00482,0.00542,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01454,0.01689,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01455,0.01691,0,0,0,0,0,0,0,0,0.01459,0.01695,0,0,0,0,0,0,0,0,0.01462,0.01699,0,0,0,0,0,0,0,0,0.01465,0.01703,0,0,0,0,0,0,0,0,0.03356,0.04916,0,0,0,0,0,0,0,0,0.03231,0.04744,0,0,0,0,0,0,0,0,0.03324,0.05143,0,0,0,0,0,0,0,0,0.03469,0.05452,0,0,0,0,0,0,0,0,0.02598,0.04304,0,0,0,0,0,0,0,0,0.02864,0.04666,0,0,0,0,0,0,0,0,0.02649,0.0435,0,0,0,0,0,0,0,0,0.03057,0.04841,0,0,0,0,0,0,0,0,0.02648,0.04182,0,0,0,0,0,0.00026,0.0004,0.00054,0.00211,0.00192,0,0,0,0,0,0.00024,0.00039,0.00051,0.002,0.00182,0,0,0,0,0,0.00025,0.00039,0.00052,0.00206,0.00188,0,0,0,0,0,0.00026,0.00041,0.00055,0.00214,0.00194,0,0,0,0,0,0.00022,0.00034,0.00044,0.0017,0.00156,0,0,0,0,0,0.00022,0.00035,0.00045,0.00175,0.00161,0,0,0,0,0,0.00021,0.00032,0.00042,0.00166,0.00156,0,0,0,0,0,0.00023,0.00036,0.00047,0.00184,0.00169,0,0,0,0,0,0.0002,0.00031,0.00041,0.00166,0.00159,0,0,0,0,0,0.00791,0.00824,0.00855,0.04552,0.03768,0,0,0,0,0,0.00814,0.00845,0.00873,0.04663,0.03858,0,0,0,0,0,0.00887,0.00919,0.00949,0.05082,0.04207,0,0,0,0,0,0.00741,0.00775,0.00807,0.04277,0.03543,0,0,0,0,0,0.00864,0.0089,0.00912,0.04906,0.04054,0,0,0,0,0,0.00787,0.00814,0.00837,0.04489,0.03713,0,0,0,0,0,0.00788,0.00813,0.00833,0.04488,0.03718,0,0,0,0,0,0.0083,0.00858,0.00883,0.0474,0.03923,0,0,0,0,0,0.00821,0.00845,0.00865,0.04676,0.03877,0,0,0,0,0,0.00145,0.00174,0.00202,0.00945,0.00806,0,0,0,0,0,0.00146,0.00173,0.00199,0.00937,0.00799,0,0,0,0,0,0.00156,0.00184,0.0021,0.01002,0.00856,0,0,0,0,0,0.00139,0.00169,0.00197,0.00917,0.00784,0,0,0,0,0,0.00146,0.00169,0.00189,0.00908,0.00772,0,0,0,0,0,0.00137,0.00161,0.00182,0.00866,0.00739,0,0,0,0,0,0.00135,0.00157,0.00175,0.00847,0.00728,0,0,0,0,0,0.00144,0.00169,0.00191,0.00914,0.00781,0,0,0,0,0,0.00138,0.00159,0.00177,0.00871,0.00753,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.00207,0.00209,0,0,0,0,0,0,0,0,0.0021,0.00212,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.0021,0.00211,0,0,0,0,0,0,0,0,0.00207,0.00208,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.04915,0.06479,0,0,0,0,0,0,0,0,0.04174,0.05579,0,0,0,0,0,0,0,0,0.0483,0.06573,0,0,0,0,0,0,0,0,0.05368,0.07276,0,0,0,0,0,0,0,0,0.02153,0.03329,0,0,0,0,0,0,0,0,0.02666,0.03979,0,0,0,0,0,0,0,0,0.02009,0.03139,0,0,0,0,0,0,0,0,0.03144,0.04479,0,0,0,0,0,0,0,0,0.01967,0.02975 +Pickup,PH10E,2050,0,0,0,0,0,0,0,0,0,0.00797,0,0,0,0,0,0,0,0,0,0.00817,0,0,0,0,0,0,0,0,0,0.00894,0,0,0,0,0,0,0,0,0,0.00749,0,0,0,0,0,0,0,0,0,0.0086,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00831,0,0,0,0,0,0,0,0,0,0.0082,0,0,0,0,0,0,0,0,0,0.01653,0,0,0,0,0,0,0,0,0,0.01422,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01799,0,0,0,0,0,0,0,0,0,0.00787,0,0,0,0,0,0,0,0,0,0.00949,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.01099,0,0,0,0,0,0,0,0,0,0.00729,0,0,0,0,0,0,0,0,0,0.79588,0,0,0,0,0,0,0,0,0,0.76057,0,0,0,0,0,0,0,0,0,0.80476,0,0,0,0,0,0,0,0,0,0.87256,0,0,0,0,0,0,0,0,0,0.65758,0,0,0,0,0,0,0,0,0,0.69226,0,0,0,0,0,0,0,0,0,0.67852,0,0,0,0,0,0,0,0,0,0.71927,0,0,0,0,0,0,0,0,0,0.61418,0,0,0,0,0,0,0,0,0,213.43367,0,0,0,0,0,0,0,0,0,214.98087,0,0,0,0,0,0,0,0,0,218.0766,0,0,0,0,0,0,0,0,0,213.26882,0,0,0,0,0,0,0,0,0,217.99211,0,0,0,0,0,0,0,0,0,214.68757,0,0,0,0,0,0,0,0,0,216.3871,0,0,0,0,0,0,0,0,0,216.55347,0,0,0,0,0,0,0,0,0,213.13218,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00483,0,0,0,0,0,0,0,0,0,0.00465,0,0,0,0,0,0,0,0,0,0.00481,0,0,0,0,0,0,0,0,0,0.0047,0,0,0,0,0,0,0,0,0,0.00474,0,0,0,0,0,0,0,0,0,0.00479,0,0,0,0,0,0,0,0,0,0.00482,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01454,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01455,0,0,0,0,0,0,0,0,0,0.01459,0,0,0,0,0,0,0,0,0,0.01462,0,0,0,0,0,0,0,0,0,0.01465,0,0,0,0,0,0,0,0,0,0.03356,0,0,0,0,0,0,0,0,0,0.03231,0,0,0,0,0,0,0,0,0,0.03325,0,0,0,0,0,0,0,0,0,0.03469,0,0,0,0,0,0,0,0,0,0.02598,0,0,0,0,0,0,0,0,0,0.02864,0,0,0,0,0,0,0,0,0,0.02649,0,0,0,0,0,0,0,0,0,0.03057,0,0,0,0,0,0,0,0,0,0.02648,0,0,0,0,0,0,0.00025,0.0004,0.00054,0.00204,0,0,0,0,0,0,0.00024,0.00038,0.00051,0.00194,0,0,0,0,0,0,0.00025,0.00039,0.00052,0.00199,0,0,0,0,0,0,0.00026,0.00041,0.00055,0.00207,0,0,0,0,0,0,0.00022,0.00034,0.00044,0.00165,0,0,0,0,0,0,0.00022,0.00034,0.00045,0.0017,0,0,0,0,0,0,0.00021,0.00032,0.00042,0.00161,0,0,0,0,0,0,0.00023,0.00035,0.00047,0.00178,0,0,0,0,0,0,0.0002,0.00031,0.00041,0.00162,0,0,0,0,0,0,0.00791,0.00824,0.00856,0.04537,0,0,0,0,0,0,0.00813,0.00844,0.00874,0.04649,0,0,0,0,0,0,0.00887,0.00919,0.00949,0.05068,0,0,0,0,0,0,0.00741,0.00774,0.00807,0.04262,0,0,0,0,0,0,0.00864,0.00889,0.00912,0.04895,0,0,0,0,0,0,0.00787,0.00814,0.00838,0.04477,0,0,0,0,0,0,0.00788,0.00812,0.00833,0.04478,0,0,0,0,0,0,0.0083,0.00858,0.00883,0.04728,0,0,0,0,0,0,0.00821,0.00845,0.00865,0.04666,0,0,0,0,0,0,0.00145,0.00174,0.00202,0.00931,0,0,0,0,0,0,0.00145,0.00173,0.00199,0.00925,0,0,0,0,0,0,0.00155,0.00184,0.00211,0.00989,0,0,0,0,0,0,0.00139,0.00169,0.00198,0.00904,0,0,0,0,0,0,0.00146,0.00169,0.00189,0.00899,0,0,0,0,0,0,0.00137,0.00161,0.00182,0.00856,0,0,0,0,0,0,0.00135,0.00156,0.00175,0.00838,0,0,0,0,0,0,0.00144,0.00169,0.00191,0.00903,0,0,0,0,0,0,0.00138,0.00159,0.00177,0.00862,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.04915,0,0,0,0,0,0,0,0,0,0.04174,0,0,0,0,0,0,0,0,0,0.0483,0,0,0,0,0,0,0,0,0,0.05368,0,0,0,0,0,0,0,0,0,0.02153,0,0,0,0,0,0,0,0,0,0.02666,0,0,0,0,0,0,0,0,0,0.02009,0,0,0,0,0,0,0,0,0,0.03144,0,0,0,0,0,0,0,0,0,0.01967 +Pickup,PH10G,1990,0.04668,0,0,0,0,0,0,0,0,0,0.04118,0,0,0,0,0,0,0,0,0,0.04674,0,0,0,0,0,0,0,0,0,0.04975,0,0,0,0,0,0,0,0,0,0.0266,0,0,0,0,0,0,0,0,0,0.02946,0,0,0,0,0,0,0,0,0,0.02482,0,0,0,0,0,0,0,0,0,0.03361,0,0,0,0,0,0,0,0,0,0.02495,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0,0,0,0,0,0,0.00027,0.00042,0.00056,0.06054,0,0,0,0,0,0,0.00025,0.0004,0.00053,0.06752,0,0,0,0,0,0,0.00026,0.00041,0.00055,0.07436,0,0,0,0,0,0,0.00027,0.00043,0.00057,0.03611,0,0,0,0,0,0,0.00022,0.00034,0.00044,0.04223,0,0,0,0,0,0,0.00023,0.00035,0.00046,0.03468,0,0,0,0,0,0,0.00022,0.00034,0.00044,0.04801,0,0,0,0,0,0,0.00024,0.00037,0.00048,0.03431,0,0,0,0,0,0,0.00023,0.00035,0.00045,0.18397,0,0,0,0,0,0,0.00793,0.00827,0.00859,0.16475,0,0,0,0,0,0,0.00815,0.00847,0.00876,0.18469,0,0,0,0,0,0,0.0089,0.00923,0.00955,0.19469,0,0,0,0,0,0,0.00743,0.00778,0.00811,0.11125,0,0,0,0,0,0,0.00864,0.0089,0.00912,0.12231,0,0,0,0,0,0,0.00788,0.00815,0.00839,0.105,0,0,0,0,0,0,0.00791,0.00816,0.00838,0.1372,0,0,0,0,0,0,0.00832,0.00861,0.00887,0.10482,0,0,0,0,0,0,0.00825,0.00851,0.00873,0.14116,0,0,0,0,0,0,0.00147,0.00177,0.00205,0.12341,0,0,0,0,0,0,0.00147,0.00175,0.00201,0.13892,0,0,0,0,0,0,0.00158,0.00188,0.00216,0.15215,0,0,0,0,0,0,0.00141,0.00172,0.00201,0.07439,0,0,0,0,0,0,0.00147,0.0017,0.00189,0.08646,0,0,0,0,0,0,0.00138,0.00162,0.00183,0.07102,0,0,0,0,0,0,0.00137,0.0016,0.00179,0.09841,0,0,0,0,0,0,0.00146,0.00172,0.00194,0.06986,0,0,0,0,0,0,0.00142,0.00165,0.00185,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Pickup,PH10G,1995,0.01727,0.03094,0,0,0,0,0,0,0,0,0.01609,0.02773,0,0,0,0,0,0,0,0,0.018,0.03135,0,0,0,0,0,0,0,0,0.01761,0.03253,0,0,0,0,0,0,0,0,0.01288,0.01918,0,0,0,0,0,0,0,0,0.01301,0.02057,0,0,0,0,0,0,0,0,0.0119,0.01783,0,0,0,0,0,0,0,0,0.01436,0.02326,0,0,0,0,0,0,0,0,0.0122,0.01807,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0,0,0,0,0,0,0.00027,0.00042,0.01643,0.03584,0,0,0,0,0,0,0.00025,0.0004,0.01821,0.03995,0,0,0,0,0,0,0.00026,0.00041,0.01995,0.04383,0,0,0,0,0,0,0.00027,0.00043,0.00987,0.02128,0,0,0,0,0,0,0.00022,0.00034,0.01148,0.02483,0,0,0,0,0,0,0.00023,0.00035,0.00952,0.02044,0,0,0,0,0,0,0.00022,0.00034,0.01307,0.02838,0,0,0,0,0,0,0.00024,0.00037,0.00949,0.02035,0,0,0,0,0,0,0.00023,0.00035,0.07,0.12017,0,0,0,0,0,0,0.00793,0.00827,0.06572,0.10912,0,0,0,0,0,0,0.00815,0.00847,0.07288,0.12157,0,0,0,0,0,0,0.0089,0.00923,0.07109,0.12518,0,0,0,0,0,0,0.00742,0.00778,0.05325,0.07821,0,0,0,0,0,0,0.00864,0.0089,0.0539,0.08322,0,0,0,0,0,0,0.00788,0.00815,0.04958,0.0735,0,0,0,0,0,0,0.00791,0.00816,0.05908,0.09317,0,0,0,0,0,0,0.00832,0.00861,0.0506,0.07435,0,0,0,0,0,0,0.00825,0.00851,0.04035,0.08473,0,0,0,0,0,0,0.00147,0.00177,0.03582,0.07421,0,0,0,0,0,0,0.00147,0.00175,0.04002,0.08309,0,0,0,0,0,0,0.00158,0.00188,0.04282,0.09067,0,0,0,0,0,0,0.00141,0.00172,0.02309,0.04517,0,0,0,0,0,0,0.00147,0.0017,0.02594,0.05189,0,0,0,0,0,0,0.00138,0.00162,0.022,0.04316,0,0,0,0,0,0,0.00137,0.0016,0.02931,0.05947,0,0,0,0,0,0,0.00146,0.00172,0.02191,0.04291,0,0,0,0,0,0,0.00142,0.00165,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Pickup,PH10G,2000,0.01213,0.01435,0.02348,0,0,0,0,0,0,0,0.01171,0.01361,0.02136,0,0,0,0,0,0,0,0.01294,0.0151,0.024,0,0,0,0,0,0,0,0.01195,0.01436,0.02433,0,0,0,0,0,0,0,0.01049,0.01153,0.01571,0,0,0,0,0,0,0,0.01013,0.01137,0.01639,0,0,0,0,0,0,0,0.00966,0.01065,0.01458,0,0,0,0,0,0,0,0.011,0.01246,0.01838,0,0,0,0,0,0,0,0.01001,0.011,0.01489,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0,0,0,0,0,0,0.00027,0.00911,0.01271,0.02516,0,0,0,0,0,0,0.00025,0.00993,0.01389,0.02782,0,0,0,0,0,0,0.00026,0.01083,0.01516,0.03057,0,0,0,0,0,0,0.00027,0.00552,0.00765,0.01489,0,0,0,0,0,0,0.00022,0.00634,0.00881,0.01733,0,0,0,0,0,0,0.00023,0.00539,0.00747,0.01442,0,0,0,0,0,0,0.00022,0.00727,0.01012,0.0199,0,0,0,0,0,0,0.00024,0.00549,0.0076,0.0145,0,0,0,0,0,0,0.00023,0.05092,0.05981,0.09255,0,0,0,0,0,0,0.00793,0.04911,0.05679,0.08505,0,0,0,0,0,0,0.00815,0.05393,0.06231,0.09414,0,0,0,0,0,0,0.0089,0.05013,0.05952,0.09469,0,0,0,0,0,0,0.00742,0.04353,0.04796,0.06411,0,0,0,0,0,0,0.00864,0.04236,0.0475,0.06659,0,0,0,0,0,0,0.00788,0.04039,0.04473,0.06009,0,0,0,0,0,0,0.00791,0.04598,0.05204,0.07399,0,0,0,0,0,0,0.00832,0.04175,0.04618,0.06143,0,0,0,0,0,0,0.00825,0.02346,0.03133,0.0603,0,0,0,0,0,0,0.00147,0.02112,0.02792,0.05292,0,0,0,0,0,0,0.00147,0.02325,0.03066,0.05882,0,0,0,0,0,0,0.00158,0.02428,0.03259,0.0637,0,0,0,0,0,0,0.00141,0.01449,0.01841,0.0327,0,0,0,0,0,0,0.00147,0.01574,0.02029,0.03717,0,0,0,0,0,0,0.00138,0.01386,0.01771,0.0313,0,0,0,0,0,0,0.00137,0.01772,0.02308,0.0425,0,0,0,0,0,0,0.00146,0.01407,0.01799,0.03149,0,0,0,0,0,0,0.00142,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Pickup,PH10G,2005,0.00884,0.00977,0.01094,0.01702,0,0,0,0,0,0,0.00894,0.00968,0.01067,0.0159,0,0,0,0,0,0,0.00997,0.01017,0.01102,0.01759,0,0,0,0,0,0,0.00855,0.00936,0.01059,0.01725,0,0,0,0,0,0,0.00904,0.00953,0.01016,0.0129,0,0,0,0,0,0,0.00841,0.00878,0.00942,0.01291,0,0,0,0,0,0,0.00826,0.00868,0.00924,0.01182,0,0,0,0,0,0,0.00894,0.00939,0.01012,0.01422,0,0,0,0,0,0,0.00851,0.00885,0.00932,0.0121,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.02106,0.00515,0.00701,0.01693,0,0,0,0,0,0,0.01852,0.00457,0.00622,0.01488,0,0,0,0,0,0,0.02079,0.00422,0.00569,0.01617,0,0,0,0,0,0,0.02264,0.00522,0.00713,0.01775,0,0,0,0,0,0,0.01134,0.00322,0.00439,0.00929,0,0,0,0,0,0,0.01317,0.00329,0.00448,0.01052,0,0,0,0,0,0,0.01091,0.00303,0.00413,0.00886,0,0,0,0,0,0,0.01488,0.00364,0.00495,0.01193,0,0,0,0,0,0,0.01066,0.00275,0.00372,0.00883,0,0,0,0,0,0,0.08287,0.03964,0.04388,0.06619,0,0,0,0,0,0,0.0783,0.03932,0.04303,0.06244,0,0,0,0,0,0,0.08737,0.04134,0.04465,0.06832,0,0,0,0,0,0,0.08437,0.03793,0.04225,0.06626,0,0,0,0,0,0,0.0648,0.03857,0.04115,0.05192,0,0,0,0,0,0,0.06522,0.03572,0.03833,0.05172,0,0,0,0,0,0,0.0602,0.03534,0.0377,0.04803,0,0,0,0,0,0,0.07114,0.03814,0.04099,0.05653,0,0,0,0,0,0,0.06108,0.03599,0.03806,0.04924,0,0,0,0,0,0,0.04617,0.01348,0.01723,0.03697,0,0,0,0,0,0,0.04119,0.01246,0.01574,0.03291,0,0,0,0,0,0,0.04653,0.01211,0.01504,0.03598,0,0,0,0,0,0,0.04939,0.01347,0.0173,0.03854,0,0,0,0,0,0,0.02712,0.0101,0.01238,0.02191,0,0,0,0,0,0,0.03037,0.00986,0.01217,0.02401,0,0,0,0,0,0,0.02576,0.00939,0.01148,0.02062,0,0,0,0,0,0,0.03406,0.01078,0.01331,0.02705,0,0,0,0,0,0,0.02529,0.00897,0.01081,0.0207,0,0,0,0,0,0,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Pickup,PH10G,2010,0,0.00846,0.00931,0.01029,0.0148,0,0,0,0,0,0,0.00857,0.00931,0.01018,0.01404,0,0,0,0,0,0,0.00917,0.0098,0.01109,0.01539,0,0,0,0,0,0,0.008,0.0089,0.00997,0.01483,0,0,0,0,0,0,0.00887,0.00937,0.00987,0.01202,0,0,0,0,0,0,0.00809,0.00859,0.00926,0.01178,0,0,0,0,0,0,0.00808,0.00854,0.00897,0.01094,0,0,0,0,0,0,0.00857,0.00913,0.00989,0.01284,0,0,0,0,0,0,0.00833,0.00871,0.00926,0.0112,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0.00482,0.0125,0.00327,0.00461,0.01201,0,0,0,0,0,0.00422,0.01102,0.00303,0.00428,0.01072,0,0,0,0,0,0.00468,0.0119,0.00272,0.00443,0.01144,0,0,0,0,0,0.00513,0.01324,0.00333,0.00477,0.01253,0,0,0,0,0,0.00254,0.00704,0.00258,0.00343,0.00728,0,0,0,0,0,0.00295,0.00791,0.00251,0.00357,0.00798,0,0,0,0,0,0.00245,0.00674,0.00244,0.00323,0.00686,0,0,0,0,0,0.00336,0.00887,0.0026,0.00377,0.00884,0,0,0,0,0,0.00244,0.00656,0.00217,0.00314,0.00677,0,0,0,0,0,0.018,0.06383,0.03598,0.03912,0.05581,0,0,0,0,0,0.0169,0.06161,0.03631,0.03921,0.05368,0,0,0,0,0,0.01874,0.06723,0.03841,0.04245,0.05828,0,0,0,0,0,0.01828,0.06325,0.03419,0.03758,0.05519,0,0,0,0,0,0.01369,0.05525,0.03732,0.03921,0.04771,0,0,0,0,0,0.01386,0.05345,0.0342,0.03658,0.04637,0,0,0,0,0,0.01275,0.05102,0.03415,0.03588,0.04384,0,0,0,0,0,0.01519,0.05777,0.03607,0.03873,0.05002,0,0,0,0,0,0.01301,0.05218,0.03485,0.037,0.04493,0,0,0,0,0,0.01038,0.02933,0.01025,0.01303,0.02779,0,0,0,0,0,0.00921,0.02644,0.00979,0.01236,0.02516,0,0,0,0,0,0.01029,0.02872,0.00952,0.01309,0.0271,0,0,0,0,0,0.01101,0.03072,0.01017,0.01317,0.02875,0,0,0,0,0,0.00594,0.01867,0.00899,0.01066,0.01818,0,0,0,0,0,0.00667,0.01996,0.00851,0.01062,0.01928,0,0,0,0,0,0.00566,0.01764,0.00834,0.00987,0.01691,0,0,0,0,0,0.00754,0.02225,0.00895,0.0113,0.02129,0,0,0,0,0,0.00563,0.01742,0.00796,0.00987,0.01689,0,0,0,0,0,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Pickup,PH10G,2015,0,0,0.00822,0.00889,0.00974,0.01243,0,0,0,0,0,0,0.00838,0.009,0.00976,0.01209,0,0,0,0,0,0,0.009,0.00979,0.0106,0.01312,0,0,0,0,0,0,0.00773,0.00845,0.00934,0.01221,0,0,0,0,0,0,0.00878,0.0092,0.00973,0.01112,0,0,0,0,0,0,0.008,0.0085,0.00907,0.01065,0,0,0,0,0,0,0.00801,0.00839,0.00886,0.0101,0,0,0,0,0,0,0.00845,0.009,0.00962,0.01143,0,0,0,0,0,0,0.00826,0.00869,0.00915,0.01036,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0.00267,0.00373,0.00908,0.00281,0.00409,0.00789,0,0,0,0,0.00234,0.00327,0.00804,0.00267,0.00387,0.00727,0,0,0,0,0.00255,0.00357,0.00858,0.00272,0.00396,0.00756,0,0,0,0,0.00278,0.0039,0.00952,0.00285,0.00417,0.00814,0,0,0,0,0.00142,0.00197,0.00525,0.00232,0.0033,0.00561,0,0,0,0,0.00163,0.00227,0.00583,0.00237,0.00339,0.0059,0,0,0,0,0.00139,0.00192,0.00506,0.00221,0.00313,0.00526,0,0,0,0,0.00187,0.0026,0.00651,0.00245,0.00351,0.0063,0,0,0,0,0.00141,0.00195,0.00494,0.00215,0.00305,0.00514,0,0,0,0,0.01309,0.01538,0.05602,0.03478,0.03774,0.04665,0,0,0,0,0.01263,0.0146,0.05485,0.03541,0.03814,0.04603,0,0,0,0,0.01387,0.01602,0.05966,0.03836,0.0412,0.04962,0,0,0,0,0.01289,0.01531,0.05461,0.03293,0.03598,0.04535,0,0,0,0,0.01119,0.01233,0.05129,0.03671,0.03885,0.04404,0,0,0,0,0.01089,0.01221,0.04883,0.03385,0.03609,0.04181,0,0,0,0,0.01039,0.0115,0.04726,0.03361,0.0356,0.04035,0,0,0,0,0.01182,0.01338,0.05241,0.03566,0.03804,0.04442,0,0,0,0,0.01074,0.01187,0.0486,0.03479,0.03673,0.04139,0,0,0,0,0.00603,0.00806,0.02242,0.00919,0.0118,0.01969,0,0,0,0,0.00543,0.00718,0.02046,0.009,0.01142,0.01839,0,0,0,0,0.00598,0.00788,0.02203,0.00948,0.01199,0.01943,0,0,0,0,0.00624,0.00838,0.02308,0.00906,0.01175,0.02005,0,0,0,0,0.00373,0.00473,0.01518,0.00846,0.01035,0.01493,0,0,0,0,0.00405,0.00522,0.01587,0.0082,0.01019,0.01525,0,0,0,0,0.00356,0.00455,0.01432,0.00786,0.00962,0.01383,0,0,0,0,0.00456,0.00594,0.0175,0.00859,0.0107,0.01634,0,0,0,0,0.00362,0.00463,0.01426,0.00792,0.00963,0.01376,0,0,0,0,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Pickup,PH10G,2020,0,0,0,0.00813,0.00869,0.00925,0.01117,0,0,0,0,0,0,0.00832,0.00882,0.00933,0.01102,0,0,0,0,0,0,0.00907,0.0096,0.01013,0.01194,0,0,0,0,0,0,0.00765,0.00823,0.00882,0.01084,0,0,0,0,0,0,0.00872,0.00908,0.00942,0.01053,0,0,0,0,0,0,0.00798,0.00837,0.00874,0.00997,0,0,0,0,0,0,0.00795,0.00828,0.00859,0.00957,0,0,0,0,0,0,0.00843,0.00885,0.00926,0.01062,0,0,0,0,0,0,0.00827,0.00859,0.00889,0.00984,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0.00083,0.00132,0.0018,0.00586,0.00245,0.00326,0.00585,0,0,0,0.00076,0.00118,0.0016,0.00527,0.00234,0.0031,0.00548,0,0,0,0.00088,0.00108,0.00146,0.00562,0.00237,0.00316,0.00564,0,0,0,0.0009,0.00134,0.00183,0.00609,0.00248,0.00332,0.006,0,0,0,0.00053,0.00083,0.00113,0.00367,0.00204,0.00265,0.00447,0,0,0,0.0006,0.00085,0.00115,0.00401,0.00208,0.00272,0.00464,0,0,0,0.00051,0.00078,0.00106,0.0035,0.00194,0.00251,0.0042,0,0,0,0.00065,0.00094,0.00127,0.0044,0.00215,0.00282,0.00487,0,0,0,0.00047,0.00071,0.00096,0.00346,0.00189,0.00245,0.00409,0,0,0,0.00914,0.01019,0.01128,0.0489,0.03398,0.03588,0.04203,0,0,0,0.00924,0.01011,0.01107,0.04876,0.03467,0.03642,0.04201,0,0,0,0.01025,0.01063,0.01148,0.05314,0.0376,0.03942,0.04528,0,0,0,0.00882,0.00975,0.01087,0.04699,0.0321,0.03406,0.04047,0,0,0,0.00931,0.00992,0.01058,0.04785,0.03612,0.03747,0.04157,0,0,0,0.00868,0.00919,0.00986,0.04485,0.03323,0.03465,0.03903,0,0,0,0.00854,0.00909,0.00969,0.04387,0.03304,0.0343,0.03806,0,0,0,0.00922,0.00981,0.01054,0.04779,0.03501,0.03653,0.04125,0,0,0,0.00878,0.00925,0.00979,0.04542,0.03425,0.03547,0.03914,0,0,0,0.00254,0.00347,0.00443,0.01613,0.00848,0.01016,0.0156,0,0,0,0.00243,0.0032,0.00405,0.01506,0.00835,0.0099,0.01484,0,0,0,0.00278,0.00311,0.00387,0.01626,0.0088,0.01041,0.01559,0,0,0,0.00264,0.00346,0.00445,0.01633,0.00832,0.01006,0.01573,0,0,0,0.00205,0.0026,0.00318,0.01213,0.00793,0.00912,0.01275,0,0,0,0.00209,0.00254,0.00313,0.01235,0.00766,0.00892,0.01279,0,0,0,0.00193,0.00241,0.00295,0.01132,0.00736,0.00847,0.0118,0,0,0,0.00225,0.00277,0.00342,0.01342,0.00802,0.00936,0.01354,0,0,0,0.00188,0.00231,0.00278,0.01144,0.00744,0.00852,0.01177,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Pickup,PH10G,2025,0,0,0,0,0.00787,0.00821,0.00857,0.01007,0,0,0,0,0,0,0.00808,0.00839,0.00871,0.01005,0,0,0,0,0,0,0.00882,0.00915,0.00949,0.01091,0,0,0,0,0,0,0.00738,0.00773,0.00811,0.00968,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00989,0,0,0,0,0,0,0.00778,0.00802,0.00827,0.00926,0,0,0,0,0,0,0.00778,0.00798,0.00818,0.00899,0,0,0,0,0,0,0.00822,0.00848,0.00875,0.00984,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00929,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0.0005,0.00084,0.00119,0.00408,0.00158,0.00211,0.00421,0,0,0,0.00046,0.00078,0.0011,0.00371,0.00151,0.002,0.00396,0,0,0,0.00042,0.0007,0.00114,0.00391,0.00153,0.00204,0.00406,0,0,0,0.00051,0.00086,0.00123,0.00423,0.0016,0.00214,0.0043,0,0,0,0.0004,0.00066,0.00088,0.00272,0.00132,0.00172,0.00326,0,0,0,0.00039,0.00065,0.00092,0.00291,0.00135,0.00176,0.00337,0,0,0,0.00038,0.00063,0.00083,0.00257,0.00126,0.00163,0.00305,0,0,0,0.0004,0.00067,0.00097,0.00316,0.00139,0.00182,0.00353,0,0,0,0.00034,0.00056,0.00081,0.00253,0.00123,0.00159,0.003,0,0,0,0.00847,0.00925,0.01006,0.04512,0.03207,0.0333,0.03825,0,0,0,0.00863,0.00934,0.01008,0.04544,0.03287,0.034,0.03854,0,0,0,0.00925,0.00988,0.01092,0.04948,0.03575,0.03693,0.04166,0,0,0,0.00799,0.00879,0.00966,0.04301,0.03015,0.03141,0.03652,0,0,0,0.00904,0.0096,0.01008,0.04586,0.0346,0.03548,0.03892,0,0,0,0.00824,0.00879,0.00941,0.04254,0.03166,0.03259,0.03624,0,0,0,0.00826,0.00878,0.00923,0.04193,0.03161,0.03242,0.03559,0,0,0,0.0087,0.00928,0.00996,0.04515,0.03339,0.03437,0.03828,0,0,0,0.0085,0.00896,0.00951,0.04348,0.03285,0.03365,0.03677,0,0,0,0.00194,0.00263,0.00335,0.01278,0.00679,0.00787,0.01226,0,0,0,0.00189,0.00252,0.00318,0.01214,0.00675,0.00775,0.01177,0,0,0,0.00189,0.00245,0.00337,0.01303,0.00717,0.00821,0.01239,0,0,0,0.0019,0.00261,0.00339,0.01281,0.0066,0.00771,0.01223,0,0,0,0.00182,0.00231,0.00274,0.01037,0.00659,0.00736,0.01041,0,0,0,0.0017,0.00219,0.00273,0.01031,0.00627,0.00709,0.01032,0,0,0,0.00168,0.00214,0.00254,0.0096,0.00609,0.00681,0.00961,0,0,0,0.00179,0.0023,0.00291,0.01108,0.00658,0.00744,0.0109,0,0,0,0.00164,0.00205,0.00254,0.00972,0.0062,0.0069,0.00967,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Pickup,PH10G,2030,0,0,0,0,0,0.00787,0.00821,0.00856,0.00958,0,0,0,0,0,0,0.00808,0.00838,0.0087,0.00961,0,0,0,0,0,0,0.00882,0.00914,0.00948,0.01044,0,0,0,0,0,0,0.00737,0.00773,0.00809,0.00917,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00959,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00893,0,0,0,0,0,0,0.00778,0.00798,0.00817,0.00872,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00948,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00903,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0,0.00042,0.00072,0.00105,0.00302,0.00157,0.00209,0.00348,0,0,0,0.0004,0.00069,0.001,0.00282,0.00151,0.00199,0.00327,0,0,0,0.00037,0.0007,0.00102,0.00291,0.00153,0.00203,0.00336,0,0,0,0.00043,0.00073,0.00107,0.0031,0.0016,0.00212,0.00355,0,0,0,0.00037,0.0006,0.00085,0.00229,0.00132,0.00171,0.0027,0,0,0,0.00035,0.00061,0.00087,0.00238,0.00134,0.00175,0.0028,0,0,0,0.00035,0.00057,0.0008,0.00216,0.00125,0.00162,0.00254,0,0,0,0.00036,0.00063,0.0009,0.0025,0.00139,0.00181,0.00293,0,0,0,0.00031,0.00055,0.00078,0.00211,0.00122,0.00159,0.00249,0,0,0,0.00829,0.00894,0.0097,0.04276,0.03206,0.03327,0.03655,0,0,0,0.00848,0.00911,0.00981,0.04347,0.03286,0.03397,0.03698,0,0,0,0.00912,0.00986,0.01059,0.04725,0.03574,0.0369,0.04004,0,0,0,0.00778,0.00847,0.00925,0.04047,0.03014,0.03137,0.03478,0,0,0,0.00895,0.00944,0.00999,0.04491,0.0346,0.03546,0.03771,0,0,0,0.00815,0.0087,0.00928,0.04137,0.03166,0.03257,0.03496,0,0,0,0.00818,0.00864,0.00915,0.04103,0.0316,0.0324,0.03447,0,0,0,0.00858,0.00917,0.00978,0.04371,0.03338,0.03435,0.03691,0,0,0,0.00844,0.00895,0.00944,0.04257,0.03285,0.03364,0.03566,0,0,0,0.00178,0.00236,0.00303,0.01069,0.00678,0.00785,0.01075,0,0,0,0.00176,0.00231,0.00294,0.01039,0.00674,0.00772,0.01039,0,0,0,0.00178,0.00244,0.00308,0.01105,0.00716,0.00818,0.01096,0,0,0,0.00172,0.00233,0.00302,0.01057,0.00659,0.00767,0.01069,0,0,0,0.00174,0.00217,0.00266,0.00953,0.00658,0.00734,0.00933,0,0,0,0.00162,0.00211,0.00262,0.00927,0.00627,0.00707,0.00919,0,0,0,0.00161,0.00202,0.00247,0.00881,0.00609,0.00679,0.00863,0,0,0,0.00169,0.00221,0.00275,0.00981,0.00657,0.00743,0.0097,0,0,0,0.00158,0.00204,0.00248,0.00892,0.0062,0.0069,0.00868,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Pickup,PH10G,2035,0,0,0,0,0,0,0.00786,0.0082,0.00856,0.00941,0,0,0,0,0,0,0.00807,0.00838,0.0087,0.00946,0,0,0,0,0,0,0.00882,0.00913,0.00948,0.01028,0,0,0,0,0,0,0.00737,0.00772,0.0081,0.00899,0,0,0,0,0,0,0.00854,0.00875,0.00898,0.00948,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00882,0,0,0,0,0,0,0.00778,0.00797,0.00818,0.00863,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00935,0,0,0,0,0,0,0.0081,0.0083,0.0085,0.00893,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0,0,0,0.00039,0.00063,0.00084,0.00249,0.00156,0.0021,0.00323,0,0,0,0.00037,0.0006,0.0008,0.00236,0.0015,0.00199,0.00303,0,0,0,0.00038,0.00061,0.00081,0.00241,0.00152,0.00203,0.00311,0,0,0,0.00039,0.00064,0.00085,0.00254,0.00158,0.00213,0.0033,0,0,0,0.00033,0.00052,0.00068,0.00199,0.00131,0.00171,0.00251,0,0,0,0.00033,0.00053,0.0007,0.00205,0.00134,0.00175,0.0026,0,0,0,0.00031,0.0005,0.00065,0.00188,0.00125,0.00162,0.00236,0,0,0,0.00034,0.00055,0.00072,0.00213,0.00138,0.00182,0.00271,0,0,0,0.00031,0.00049,0.00063,0.00184,0.00122,0.00159,0.00231,0,0,0,0.0082,0.00874,0.00923,0.04156,0.03204,0.03328,0.03597,0,0,0,0.00841,0.00892,0.00937,0.04243,0.03284,0.03398,0.03644,0,0,0,0.00915,0.00967,0.01014,0.04613,0.03572,0.03691,0.03947,0,0,0,0.0077,0.00825,0.00876,0.03921,0.03011,0.03139,0.03419,0,0,0,0.00887,0.00929,0.00963,0.04427,0.03458,0.03546,0.03728,0,0,0,0.00811,0.00854,0.00891,0.04065,0.03164,0.03257,0.03452,0,0,0,0.00811,0.0085,0.00882,0.04044,0.03158,0.03241,0.03408,0,0,0,0.00855,0.009,0.00939,0.04289,0.03336,0.03436,0.03644,0,0,0,0.00842,0.00881,0.00912,0.04199,0.03284,0.03364,0.03526,0,0,0,0.0017,0.00218,0.00261,0.00964,0.00676,0.00786,0.01024,0,0,0,0.0017,0.00215,0.00254,0.00947,0.00672,0.00773,0.00991,0,0,0,0.0018,0.00226,0.00268,0.01006,0.00714,0.00819,0.01046,0,0,0,0.00165,0.00214,0.00259,0.00945,0.00656,0.00769,0.01017,0,0,0,0.00167,0.00204,0.00235,0.00896,0.00657,0.00735,0.00896,0,0,0,0.00159,0.00197,0.00229,0.00863,0.00625,0.00708,0.0088,0,0,0,0.00155,0.00189,0.00218,0.00828,0.00607,0.0068,0.00828,0,0,0,0.00166,0.00206,0.00241,0.00908,0.00656,0.00743,0.00928,0,0,0,0.00157,0.00191,0.00219,0.0084,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Pickup,PH10G,2040,0,0,0,0,0,0,0,0.00786,0.0082,0.00857,0,0,0,0,0,0,0,0.00807,0.00838,0.00871,0,0,0,0,0,0,0,0.00881,0.00914,0.00948,0,0,0,0,0,0,0,0.00737,0.00772,0.00811,0,0,0,0,0,0,0,0.00853,0.00876,0.00898,0,0,0,0,0,0,0,0.00778,0.00802,0.00826,0,0,0,0,0,0,0,0.00777,0.00798,0.00818,0,0,0,0,0,0,0,0.00822,0.00848,0.00875,0,0,0,0,0,0,0,0.0081,0.0083,0.0085,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0,0,0,0,0.00026,0.00041,0.00054,0.00207,0.00157,0.0021,0,0,0,0,0.00025,0.00039,0.00051,0.00196,0.0015,0.002,0,0,0,0,0.00025,0.00039,0.00052,0.002,0.00152,0.00204,0,0,0,0,0.00026,0.00041,0.00055,0.0021,0.00159,0.00214,0,0,0,0,0.00022,0.00034,0.00044,0.00168,0.00131,0.00172,0,0,0,0,0.00022,0.00035,0.00045,0.00172,0.00134,0.00176,0,0,0,0,0.00021,0.00032,0.00042,0.00158,0.00125,0.00163,0,0,0,0,0.00023,0.00036,0.00047,0.00178,0.00138,0.00182,0,0,0,0,0.0002,0.00032,0.00041,0.00155,0.00122,0.00159,0,0,0,0,0.00791,0.00825,0.00856,0.04058,0.03205,0.03329,0,0,0,0,0.00814,0.00845,0.00874,0.04153,0.03284,0.03399,0,0,0,0,0.00887,0.00919,0.0095,0.04518,0.03573,0.03692,0,0,0,0,0.00741,0.00775,0.00808,0.03817,0.03012,0.03141,0,0,0,0,0.00864,0.0089,0.00912,0.04358,0.03458,0.03547,0,0,0,0,0.00787,0.00814,0.00838,0.03992,0.03165,0.03258,0,0,0,0,0.00788,0.00813,0.00834,0.03979,0.03159,0.03242,0,0,0,0,0.0083,0.00858,0.00884,0.04212,0.03337,0.03436,0,0,0,0,0.00821,0.00845,0.00865,0.04137,0.03284,0.03364,0,0,0,0,0.00145,0.00175,0.00202,0.00876,0.00677,0.00787,0,0,0,0,0.00146,0.00174,0.00199,0.00867,0.00673,0.00775,0,0,0,0,0.00156,0.00184,0.00211,0.00922,0.00715,0.0082,0,0,0,0,0.00139,0.0017,0.00198,0.00853,0.00657,0.00771,0,0,0,0,0.00146,0.00169,0.00189,0.00835,0.00657,0.00736,0,0,0,0,0.00138,0.00161,0.00182,0.00799,0.00626,0.00709,0,0,0,0,0.00135,0.00157,0.00175,0.00771,0.00608,0.00681,0,0,0,0,0.00144,0.00169,0.00191,0.0084,0.00656,0.00744,0,0,0,0,0.00138,0.00159,0.00178,0.00786,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Pickup,PH10G,2045,0,0,0,0,0,0,0,0,0.00786,0.0082,0,0,0,0,0,0,0,0,0.00807,0.00838,0,0,0,0,0,0,0,0,0.00882,0.00914,0,0,0,0,0,0,0,0,0.00737,0.00773,0,0,0,0,0,0,0,0,0.00853,0.00876,0,0,0,0,0,0,0,0,0.00778,0.00802,0,0,0,0,0,0,0,0,0.00777,0.00798,0,0,0,0,0,0,0,0,0.00822,0.00848,0,0,0,0,0,0,0,0,0.0081,0.0083,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0,0,0,0,0,0.00026,0.0004,0.00054,0.00188,0.00157,0,0,0,0,0,0.00024,0.00039,0.00051,0.00179,0.0015,0,0,0,0,0,0.00025,0.00039,0.00052,0.00182,0.00153,0,0,0,0,0,0.00026,0.00041,0.00055,0.00191,0.00159,0,0,0,0,0,0.00022,0.00034,0.00044,0.00154,0.00132,0,0,0,0,0,0.00022,0.00035,0.00045,0.00157,0.00134,0,0,0,0,0,0.00021,0.00032,0.00042,0.00145,0.00125,0,0,0,0,0,0.00023,0.00036,0.00047,0.00163,0.00138,0,0,0,0,0,0.0002,0.00031,0.00041,0.00142,0.00122,0,0,0,0,0,0.00791,0.00824,0.00855,0.04015,0.03206,0,0,0,0,0,0.00814,0.00845,0.00873,0.04113,0.03285,0,0,0,0,0,0.00887,0.00919,0.00949,0.04477,0.03574,0,0,0,0,0,0.00741,0.00775,0.00807,0.03773,0.03013,0,0,0,0,0,0.00864,0.0089,0.00912,0.04327,0.03459,0,0,0,0,0,0.00787,0.00814,0.00837,0.03959,0.03165,0,0,0,0,0,0.00788,0.00813,0.00833,0.03951,0.0316,0,0,0,0,0,0.0083,0.00858,0.00883,0.04177,0.03338,0,0,0,0,0,0.00821,0.00845,0.00865,0.04109,0.03285,0,0,0,0,0,0.00145,0.00174,0.00202,0.00838,0.00678,0,0,0,0,0,0.00146,0.00173,0.00199,0.00832,0.00674,0,0,0,0,0,0.00156,0.00184,0.0021,0.00886,0.00716,0,0,0,0,0,0.00139,0.00169,0.00197,0.00814,0.00658,0,0,0,0,0,0.00146,0.00169,0.00189,0.00808,0.00658,0,0,0,0,0,0.00137,0.00161,0.00182,0.0077,0.00627,0,0,0,0,0,0.00135,0.00157,0.00175,0.00746,0.00609,0,0,0,0,0,0.00144,0.00169,0.00191,0.00809,0.00657,0,0,0,0,0,0.00138,0.00159,0.00177,0.00761,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Pickup,PH10G,2050,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00807,0,0,0,0,0,0,0,0,0,0.00882,0,0,0,0,0,0,0,0,0,0.00737,0,0,0,0,0,0,0,0,0,0.00853,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00822,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0,0,0,0,0,0,0.00025,0.0004,0.00054,0.00182,0,0,0,0,0,0,0.00024,0.00038,0.00051,0.00173,0,0,0,0,0,0,0.00025,0.00039,0.00052,0.00176,0,0,0,0,0,0,0.00026,0.00041,0.00055,0.00185,0,0,0,0,0,0,0.00022,0.00034,0.00044,0.00149,0,0,0,0,0,0,0.00022,0.00034,0.00045,0.00152,0,0,0,0,0,0,0.00021,0.00032,0.00042,0.00141,0,0,0,0,0,0,0.00023,0.00035,0.00047,0.00158,0,0,0,0,0,0,0.0002,0.00031,0.00041,0.00138,0,0,0,0,0,0,0.00791,0.00824,0.00856,0.04,0,0,0,0,0,0,0.00813,0.00844,0.00874,0.041,0,0,0,0,0,0,0.00887,0.00919,0.00949,0.04463,0,0,0,0,0,0,0.00741,0.00774,0.00807,0.03759,0,0,0,0,0,0,0.00864,0.00889,0.00912,0.04317,0,0,0,0,0,0,0.00787,0.00814,0.00838,0.03948,0,0,0,0,0,0,0.00788,0.00812,0.00833,0.03941,0,0,0,0,0,0,0.0083,0.00858,0.00883,0.04165,0,0,0,0,0,0,0.00821,0.00845,0.00865,0.04099,0,0,0,0,0,0,0.00145,0.00174,0.00202,0.00826,0,0,0,0,0,0,0.00145,0.00173,0.00199,0.0082,0,0,0,0,0,0,0.00155,0.00184,0.00211,0.00873,0,0,0,0,0,0,0.00139,0.00169,0.00198,0.00802,0,0,0,0,0,0,0.00146,0.00169,0.00189,0.00799,0,0,0,0,0,0,0.00137,0.00161,0.00182,0.0076,0,0,0,0,0,0,0.00135,0.00156,0.00175,0.00737,0,0,0,0,0,0,0.00144,0.00169,0.00191,0.00799,0,0,0,0,0,0,0.00138,0.00159,0.00177,0.00752,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Pickup,PH20E,1990,0.01226,0,0,0,0,0,0,0,0,0,0.01268,0,0,0,0,0,0,0,0,0,0.01389,0,0,0,0,0,0,0,0,0,0.01141,0,0,0,0,0,0,0,0,0,0.01364,0,0,0,0,0,0,0,0,0,0.01235,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01304,0,0,0,0,0,0,0,0,0,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.0007,0.00093,0,0,0,0,0,0,0,0.00042,0.00067,0.00088,0,0,0,0,0,0,0,0.00044,0.00069,0.00091,0,0,0,0,0,0,0,0.00045,0.00071,0.00094,0,0,0,0,0,0,0,0.00037,0.00057,0.00074,0,0,0,0,0,0,0,0.00038,0.00059,0.00076,0,0,0,0,0,0,0,0.00037,0.00057,0.00073,0,0,0,0,0,0,0,0.0004,0.00062,0.00081,0,0,0,0,0,0,0,0.00038,0.00058,0.00075,0,0,0,0,0,0,0,0.01322,0.01379,0.01432,0,0,0,0,0,0,0,0.01358,0.01412,0.0146,0,0,0,0,0,0,0,0.01483,0.01539,0.01591,0,0,0,0,0,0,0,0.01238,0.01296,0.01351,0,0,0,0,0,0,0,0.0144,0.01483,0.0152,0,0,0,0,0,0,0,0.01313,0.01358,0.01398,0,0,0,0,0,0,0,0.01318,0.0136,0.01396,0,0,0,0,0,0,0,0.01387,0.01435,0.01478,0,0,0,0,0,0,0,0.01375,0.01419,0.01455,0,0,0,0,0,0,0,0.00244,0.00295,0.00342,0,0,0,0,0,0,0,0.00245,0.00292,0.00335,0,0,0,0,0,0,0,0.00264,0.00313,0.00359,0,0,0,0,0,0,0,0.00235,0.00287,0.00335,0,0,0,0,0,0,0,0.00245,0.00283,0.00315,0,0,0,0,0,0,0,0.00231,0.00271,0.00305,0,0,0,0,0,0,0,0.00229,0.00267,0.00298,0,0,0,0,0,0,0,0.00243,0.00286,0.00324,0,0,0,0,0,0,0,0.00237,0.00275,0.00308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH20E,1995,0.01226,0.01226,0,0,0,0,0,0,0,0,0.01268,0.01268,0,0,0,0,0,0,0,0,0.01388,0.01388,0,0,0,0,0,0,0,0,0.01141,0.0114,0,0,0,0,0,0,0,0,0.01364,0.01364,0,0,0,0,0,0,0,0,0.01235,0.01235,0,0,0,0,0,0,0,0,0.01242,0.01242,0,0,0,0,0,0,0,0,0.01303,0.01303,0,0,0,0,0,0,0,0,0.01298,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.0007,0,0,0,0,0,0,0,0,0.00042,0.00067,0,0,0,0,0,0,0,0,0.00044,0.00069,0,0,0,0,0,0,0,0,0.00045,0.00071,0,0,0,0,0,0,0,0,0.00037,0.00057,0,0,0,0,0,0,0,0,0.00038,0.00059,0,0,0,0,0,0,0,0,0.00037,0.00057,0,0,0,0,0,0,0,0,0.0004,0.00062,0,0,0,0,0,0,0,0,0.00038,0.00058,0,0,0,0,0,0,0,0,0.01321,0.01379,0,0,0,0,0,0,0,0,0.01358,0.01412,0,0,0,0,0,0,0,0,0.01483,0.01539,0,0,0,0,0,0,0,0,0.01237,0.01296,0,0,0,0,0,0,0,0,0.0144,0.01483,0,0,0,0,0,0,0,0,0.01313,0.01358,0,0,0,0,0,0,0,0,0.01318,0.0136,0,0,0,0,0,0,0,0,0.01387,0.01435,0,0,0,0,0,0,0,0,0.01375,0.01419,0,0,0,0,0,0,0,0,0.00244,0.00295,0,0,0,0,0,0,0,0,0.00245,0.00292,0,0,0,0,0,0,0,0,0.00264,0.00313,0,0,0,0,0,0,0,0,0.00235,0.00287,0,0,0,0,0,0,0,0,0.00244,0.00283,0,0,0,0,0,0,0,0,0.00231,0.0027,0,0,0,0,0,0,0,0,0.00229,0.00267,0,0,0,0,0,0,0,0,0.00243,0.00286,0,0,0,0,0,0,0,0,0.00237,0.00275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH20E,2000,0.01226,0.01848,0.02179,0,0,0,0,0,0,0,0.01268,0.01801,0.02083,0,0,0,0,0,0,0,0.01389,0.01987,0.02308,0,0,0,0,0,0,0,0.01141,0.01806,0.02165,0,0,0,0,0,0,0,0.01364,0.01662,0.01813,0,0,0,0,0,0,0,0.01235,0.01586,0.01791,0,0,0,0,0,0,0,0.01242,0.01528,0.01671,0,0,0,0,0,0,0,0.01304,0.01716,0.01931,0,0,0,0,0,0,0,0.01298,0.01587,0.0173,0,0,0,0,0,0,0,0,0.12027,0.1319,0,0,0,0,0,0,0,0,0.11586,0.12939,0,0,0,0,0,0,0,0,0.13727,0.15177,0,0,0,0,0,0,0,0,0.14305,0.15722,0,0,0,0,0,0,0,0,0.12423,0.13906,0,0,0,0,0,0,0,0,0.13085,0.14519,0,0,0,0,0,0,0,0,0.12629,0.13682,0,0,0,0,0,0,0,0,0.12486,0.1375,0,0,0,0,0,0,0,0,0.10989,0.1217,0,0,0,0,0,0,0,0,10.89501,13.75117,0,0,0,0,0,0,0,0,10.6788,13.65783,0,0,0,0,0,0,0,0,12.22763,15.54118,0,0,0,0,0,0,0,0,12.93875,16.34388,0,0,0,0,0,0,0,0,11.5931,14.80624,0,0,0,0,0,0,0,0,12.04441,15.39791,0,0,0,0,0,0,0,0,12.0601,14.97217,0,0,0,0,0,0,0,0,11.50144,14.52998,0,0,0,0,0,0,0,0,9.95287,12.64009,0,0,0,0,0,0,0,0,365.40024,370.86674,0,0,0,0,0,0,0,0,368.22856,373.29984,0,0,0,0,0,0,0,0,373.62904,378.96487,0,0,0,0,0,0,0,0,364.9261,370.26286,0,0,0,0,0,0,0,0,373.95523,377.64639,0,0,0,0,0,0,0,0,367.95043,373.29723,0,0,0,0,0,0,0,0,371.0116,374.54125,0,0,0,0,0,0,0,0,371.20867,375.49562,0,0,0,0,0,0,0,0,365.59889,369.51784,0,0,0,0,0,0,0,0,0.03285,0.03922,0,0,0,0,0,0,0,0,0.03293,0.03928,0,0,0,0,0,0,0,0,0.03357,0.03994,0,0,0,0,0,0,0,0,0.03213,0.03842,0,0,0,0,0,0,0,0,0.0334,0.03975,0,0,0,0,0,0,0,0,0.03258,0.0389,0,0,0,0,0,0,0,0,0.03284,0.0392,0,0,0,0,0,0,0,0,0.03321,0.03959,0,0,0,0,0,0,0,0,0.03344,0.03989,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05743,0.05743,0,0,0,0,0,0,0,0,0.05741,0.05742,0,0,0,0,0,0,0,0,0.05712,0.05712,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05717,0.05717,0,0,0,0,0,0,0,0,0.05732,0.05733,0,0,0,0,0,0,0,0,0.05745,0.05745,0,0,0,0,0,0,0,0,0.05758,0.05758,0,0,0,0,0,0,0,0,1.43344,1.74492,0,0,0,0,0,0,0,0,1.41546,1.74433,0,0,0,0,0,0,0,0,1.58229,1.93266,0,0,0,0,0,0,0,0,1.63818,1.99229,0,0,0,0,0,0,0,0,1.54392,1.90106,0,0,0,0,0,0,0,0,1.58798,1.93421,0,0,0,0,0,0,0,0,1.57231,1.88667,0,0,0,0,0,0,0,0,1.63329,1.97201,0,0,0,0,0,0,0,0,1.46641,1.78368,0,0,0,0,0,0,0,0,0.01325,0.01876,0,0,0,0,0,0,0.00044,0,0.01159,0.01636,0,0,0,0,0,0,0.00042,0,0.01256,0.01782,0,0,0,0,0,0,0.00044,0,0.01374,0.01954,0,0,0,0,0,0,0.00045,0,0.00695,0.00971,0,0,0,0,0,0,0.00037,0,0.00799,0.01164,0,0,0,0,0,0,0.00038,0,0.00683,0.00951,0,0,0,0,0,0,0.00037,0,0.00921,0.01296,0,0,0,0,0,0,0.0004,0,0.007,0.00974,0,0,0,0,0,0,0.00038,0,0.05693,0.06932,0,0,0,0,0,0,0.01321,0,0.05426,0.06494,0,0,0,0,0,0,0.01358,0,0.05933,0.07119,0,0,0,0,0,0,0.01483,0,0.05615,0.06929,0,0,0,0,0,0,0.01237,0,0.04642,0.05251,0,0,0,0,0,0,0.0144,0,0.04568,0.05389,0,0,0,0,0,0,0.01313,0,0.04326,0.04914,0,0,0,0,0,0,0.01318,0,0.04994,0.05826,0,0,0,0,0,0,0.01387,0,0.0449,0.05087,0,0,0,0,0,0,0.01375,0,0.02879,0.03975,0,0,0,0,0,0,0.00244,0,0.02568,0.03513,0,0,0,0,0,0,0.00245,0,0.02803,0.03853,0,0,0,0,0,0,0.00264,0,0.02962,0.04123,0,0,0,0,0,0,0.00235,0,0.01705,0.02243,0,0,0,0,0,0,0.00244,0,0.01868,0.02584,0,0,0,0,0,0,0.00231,0,0.01641,0.02162,0,0,0,0,0,0,0.00229,0,0.02123,0.02859,0,0,0,0,0,0,0.00243,0,0.01687,0.02215,0,0,0,0,0,0,0.00237,0,0.01196,0.01071,0,0,0,0,0,0,0,0,0.01206,0.01078,0,0,0,0,0,0,0,0,0.01223,0.01094,0,0,0,0,0,0,0,0,0.01195,0.01069,0,0,0,0,0,0,0,0,0.01225,0.0109,0,0,0,0,0,0,0,0,0.01205,0.01078,0,0,0,0,0,0,0,0,0.01215,0.01082,0,0,0,0,0,0,0,0,0.01215,0.01084,0,0,0,0,0,0,0,0,0.01197,0.01067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH20E,2005,0.01227,0.01493,0.01623,0.01928,0,0,0,0,0,0,0.01268,0.015,0.01612,0.01873,0,0,0,0,0,0,0.01389,0.01648,0.01774,0.02071,0,0,0,0,0,0,0.01141,0.01424,0.01564,0.01895,0,0,0,0,0,0,0.01364,0.01505,0.01571,0.01714,0,0,0,0,0,0,0.01235,0.01396,0.01481,0.01643,0,0,0,0,0,0,0.01243,0.01378,0.01441,0.01577,0,0,0,0,0,0,0.01304,0.01489,0.01577,0.01778,0,0,0,0,0,0,0.01299,0.01436,0.01499,0.01635,0,0,0,0,0,0,0,0.05026,0.04287,0.05531,0,0,0,0,0,0,0,0.04616,0.04072,0.05288,0,0,0,0,0,0,0,0.05464,0.0479,0.06447,0,0,0,0,0,0,0,0.05752,0.05036,0.06732,0,0,0,0,0,0,0,0.04086,0.03846,0.05367,0,0,0,0,0,0,0,0.04483,0.04175,0.05732,0,0,0,0,0,0,0,0.04094,0.03765,0.05237,0,0,0,0,0,0,0,0.04517,0.04043,0.05475,0,0,0,0,0,0,0,0.03649,0.03354,0.04505,0,0,0,0,0,0,0,4.29742,5.56429,8.25223,0,0,0,0,0,0,0,4.20167,5.57411,8.22501,0,0,0,0,0,0,0,4.72055,6.37936,9.63051,0,0,0,0,0,0,0,4.96116,6.71585,10.09916,0,0,0,0,0,0,0,4.61964,6.3334,9.37439,0,0,0,0,0,0,0,4.71143,6.49236,9.597,0,0,0,0,0,0,0,4.80982,6.42814,9.47008,0,0,0,0,0,0,0,4.58333,6.10022,9.02629,0,0,0,0,0,0,0,4.08552,5.39877,7.83381,0,0,0,0,0,0,0,378.90135,383.01183,387.68874,0,0,0,0,0,0,0,382.06981,385.8882,390.05587,0,0,0,0,0,0,0,387.35284,391.36776,395.87532,0,0,0,0,0,0,0,378.60345,382.62196,387.1478,0,0,0,0,0,0,0,388.83198,391.63038,394.03662,0,0,0,0,0,0,0,382.48152,386.84358,388.46836,0,0,0,0,0,0,0,386.04132,388.7226,390.92365,0,0,0,0,0,0,0,385.65998,388.89906,392.06194,0,0,0,0,0,0,0,380.06168,383.02048,385.70281,0,0,0,0,0,0,0,0.00675,0.00799,0.01534,0,0,0,0,0,0,0,0.00676,0.00799,0.01534,0,0,0,0,0,0,0,0.00686,0.0081,0.01554,0,0,0,0,0,0,0,0.00662,0.00784,0.01506,0,0,0,0,0,0,0,0.00683,0.00806,0.01548,0,0,0,0,0,0,0,0.00669,0.00791,0.01519,0,0,0,0,0,0,0,0.00674,0.00798,0.01532,0,0,0,0,0,0,0,0.00681,0.00804,0.01545,0,0,0,0,0,0,0,0.00686,0.00811,0.01557,0,0,0,0,0,0,0,0.01878,0.02351,0.02785,0,0,0,0,0,0,0,0.0188,0.02354,0.02789,0,0,0,0,0,0,0,0.01879,0.02354,0.02788,0,0,0,0,0,0,0,0.0187,0.02341,0.02773,0,0,0,0,0,0,0,0.01878,0.02352,0.02786,0,0,0,0,0,0,0,0.01871,0.02344,0.02776,0,0,0,0,0,0,0,0.01876,0.0235,0.02783,0,0,0,0,0,0,0,0.0188,0.02355,0.0279,0,0,0,0,0,0,0,0.01885,0.0236,0.02796,0,0,0,0,0,0,0,0.61471,0.82121,0.85896,0,0,0,0,0,0,0,0.59811,0.8185,0.85432,0,0,0,0,0,0,0,0.67327,0.90582,0.96523,0,0,0,0,0,0,0,0.70547,0.94675,1.00546,0,0,0,0,0,0,0,0.64962,0.88406,0.94575,0,0,0,0,0,0,0,0.67479,0.90762,0.96626,0,0,0,0,0,0,0,0.66691,0.88382,0.93679,0,0,0,0,0,0,0,0.69915,0.93026,0.97297,0,0,0,0,0,0,0,0.62687,0.83852,0.86963,0,0,0,0,0,0,0.02972,0.00574,0.00783,0.0128,0,0,0,0,0,0,0.02595,0.00513,0.007,0.01132,0,0,0,0,0,0,0.02894,0.00553,0.00757,0.01233,0,0,0,0,0,0,0.03187,0.00591,0.0081,0.01332,0,0,0,0,0,0,0.01548,0.00343,0.00468,0.00727,0,0,0,0,0,0,0.0181,0.00379,0.00532,0.00816,0,0,0,0,0,0,0.01486,0.00337,0.00459,0.00712,0,0,0,0,0,0,0.02058,0.00426,0.00581,0.00925,0,0,0,0,0,0,0.01471,0.00345,0.0047,0.00726,0,0,0,0,0,0,0.07884,0.04084,0.04558,0.05674,0,0,0,0,0,0,0.07061,0.04046,0.04465,0.05432,0,0,0,0,0,0,0.07915,0.04422,0.04883,0.05955,0,0,0,0,0,0,0.08344,0.03928,0.04428,0.05611,0,0,0,0,0,0,0.04768,0.03897,0.0417,0.04737,0,0,0,0,0,0,0.05242,0.03675,0.04026,0.04637,0,0,0,0,0,0,0.045,0.03597,0.03863,0.04411,0,0,0,0,0,0,0.0588,0.03938,0.04282,0.05044,0,0,0,0,0,0,0.04492,0.03744,0.04013,0.0457,0,0,0,0,0,0,0.0605,0.01455,0.01875,0.02861,0,0,0,0,0,0,0.05289,0.01347,0.01718,0.02573,0,0,0,0,0,0,0.05954,0.01466,0.01874,0.02822,0,0,0,0,0,0,0.06521,0.01469,0.01911,0.02957,0,0,0,0,0,0,0.03188,0.01045,0.01287,0.01788,0,0,0,0,0,0,0.03705,0.01078,0.01378,0.01929,0,0,0,0,0,0,0.03044,0.00996,0.01231,0.01716,0,0,0,0,0,0,0.04218,0.01189,0.01493,0.02167,0,0,0,0,0,0,0.02994,0.01027,0.01265,0.01757,0,0,0,0,0,0,0,0.0124,0.01106,0.00373,0,0,0,0,0,0,0,0.01251,0.01114,0.00375,0,0,0,0,0,0,0,0.01268,0.0113,0.00381,0,0,0,0,0,0,0,0.0124,0.01105,0.00373,0,0,0,0,0,0,0,0.01273,0.01131,0.00379,0,0,0,0,0,0,0,0.01252,0.01117,0.00374,0,0,0,0,0,0,0,0.01264,0.01122,0.00376,0,0,0,0,0,0,0,0.01263,0.01123,0.00377,0,0,0,0,0,0,0,0.01244,0.01106,0.00371,0,0,0,0,0,0,0,0.26812,0.37386,0.37364,0,0,0,0,0,0,0,0.24219,0.34689,0.34515,0,0,0,0,0,0,0,0.28441,0.40579,0.40147,0,0,0,0,0,0,0,0.30091,0.42839,0.4222,0,0,0,0,0,0,0,0.18934,0.2925,0.28251,0,0,0,0,0,0,0,0.21335,0.32709,0.3114,0,0,0,0,0,0,0,0.18661,0.28302,0.27276,0,0,0,0,0,0,0,0.22187,0.32494,0.31821,0,0,0,0,0,0,0,0.1688,0.25599,0.24763,0,0,0,0,0,0 +Pickup,PH20E,2010,0,0.01336,0.01432,0.01527,0.01816,0,0,0,0,0,0,0.01366,0.01449,0.01532,0.0178,0,0,0,0,0,0,0.01497,0.0159,0.01684,0.01965,0,0,0,0,0,0,0.01258,0.01361,0.01464,0.01776,0,0,0,0,0,0,0.0143,0.01483,0.01534,0.01675,0,0,0,0,0,0,0.01307,0.01372,0.01426,0.01591,0,0,0,0,0,0,0.01306,0.01357,0.01406,0.0154,0,0,0,0,0,0,0.01385,0.01453,0.0152,0.01713,0,0,0,0,0,0,0.01362,0.01414,0.01463,0.01597,0,0,0,0,0,0,0.03274,0.02339,0.01767,0.02902,0,0,0,0,0,0,0.02855,0.02126,0.01624,0.02718,0,0,0,0,0,0,0.03203,0.02504,0.01918,0.03318,0,0,0,0,0,0,0.03559,0.02769,0.02111,0.03556,0,0,0,0,0,0,0.01917,0.01815,0.01445,0.02638,0,0,0,0,0,0,0.02143,0.02011,0.01562,0.02842,0,0,0,0,0,0,0.01876,0.01789,0.01425,0.02582,0,0,0,0,0,0,0.02396,0.02024,0.01571,0.02753,0,0,0,0,0,0,0.01843,0.0165,0.01288,0.02233,0,0,0,0,0,0,1.73881,2.89472,3.90069,5.84596,0,0,0,0,0,0,1.65401,2.86217,3.8767,5.80855,0,0,0,0,0,0,1.74021,3.17277,4.40483,6.83009,0,0,0,0,0,0,1.86019,3.39728,4.72673,7.26063,0,0,0,0,0,0,1.53111,3.02595,4.24152,6.57807,0,0,0,0,0,0,1.58039,3.1392,4.3553,6.78301,0,0,0,0,0,0,1.59607,3.1141,4.34822,6.68589,0,0,0,0,0,0,1.62943,3.02786,4.16784,6.36871,0,0,0,0,0,0,1.43244,2.67745,3.63951,5.47604,0,0,0,0,0,0,352.36342,353.86602,357.0004,368.66347,0,0,0,0,0,0,355.46818,356.78005,359.60182,370.80428,0,0,0,0,0,0,360.32187,361.73556,364.75073,376.37171,0,0,0,0,0,0,352.15243,353.58365,356.63111,368.15159,0,0,0,0,0,0,362.28618,362.94408,364.68759,374.22369,0,0,0,0,0,0,356.21594,358.23474,359.12057,369.06474,0,0,0,0,0,0,359.74213,360.32944,361.95917,371.25939,0,0,0,0,0,0,359.1063,360.04726,362.25674,372.50834,0,0,0,0,0,0,353.96856,354.77544,356.69726,366.36051,0,0,0,0,0,0,0.00599,0.00674,0.00808,0.0116,0,0,0,0,0,0,0.006,0.00675,0.00808,0.01159,0,0,0,0,0,0,0.0061,0.00685,0.00819,0.01173,0,0,0,0,0,0,0.00587,0.00661,0.00793,0.01139,0,0,0,0,0,0,0.00608,0.00682,0.00816,0.01168,0,0,0,0,0,0,0.00594,0.00669,0.008,0.01148,0,0,0,0,0,0,0.00599,0.00674,0.00807,0.01158,0,0,0,0,0,0,0.00605,0.0068,0.00814,0.01167,0,0,0,0,0,0,0.0061,0.00685,0.00821,0.01177,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.0124,0.01424,0.01857,0.02058,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01242,0.01425,0.01859,0.0206,0,0,0,0,0,0,0.01245,0.01429,0.01864,0.02065,0,0,0,0,0,0,0.01248,0.01432,0.01868,0.0207,0,0,0,0,0,0,0.0125,0.01436,0.01872,0.02074,0,0,0,0,0,0,0.10088,0.176,0.17661,0.37859,0,0,0,0,0,0,0.09728,0.17438,0.17475,0.37507,0,0,0,0,0,0,0.09937,0.19199,0.191,0.42799,0,0,0,0,0,0,0.10284,0.20373,0.20114,0.45008,0,0,0,0,0,0,0.09136,0.18272,0.18118,0.4147,0,0,0,0,0,0,0.09534,0.19044,0.18808,0.42686,0,0,0,0,0,0,0.09424,0.18412,0.18212,0.41107,0,0,0,0,0,0,0.10287,0.19662,0.1924,0.42714,0,0,0,0,0,0,0.09498,0.17686,0.17306,0.37703,0,0,0,0,0,0.00804,0.01956,0.00349,0.00487,0.00933,0,0,0,0,0,0.00704,0.0172,0.00325,0.0045,0.00842,0,0,0,0,0,0.0078,0.01905,0.00343,0.00478,0.00909,0,0,0,0,0,0.00855,0.0208,0.0036,0.00504,0.00972,0,0,0,0,0,0.00423,0.01064,0.00263,0.00358,0.00605,0,0,0,0,0,0.00492,0.01222,0.00279,0.00376,0.00655,0,0,0,0,0,0.00408,0.01027,0.00261,0.00354,0.00594,0,0,0,0,0,0.0056,0.01384,0.00294,0.00404,0.00721,0,0,0,0,0,0.00407,0.01026,0.00266,0.0036,0.00604,0,0,0,0,0,0.03,0.08446,0.03642,0.03961,0.0498,0,0,0,0,0,0.02817,0.08037,0.03677,0.03963,0.04854,0,0,0,0,0,0.03124,0.08878,0.04007,0.0432,0.05308,0,0,0,0,0,0.03047,0.08476,0.03473,0.03809,0.04889,0,0,0,0,0,0.02282,0.06854,0.0374,0.03945,0.04492,0,0,0,0,0,0.0231,0.06783,0.03493,0.03692,0.04316,0,0,0,0,0,0.02125,0.06364,0.03448,0.03648,0.04177,0,0,0,0,0,0.02532,0.07395,0.03679,0.03924,0.04639,0,0,0,0,0,0.02169,0.06537,0.03588,0.0379,0.04326,0,0,0,0,0,0.01729,0.04389,0.01064,0.01346,0.02248,0,0,0,0,0,0.01535,0.03922,0.01021,0.01274,0.02062,0,0,0,0,0,0.01715,0.0436,0.01099,0.01376,0.0225,0,0,0,0,0,0.01835,0.04632,0.01066,0.01363,0.02319,0,0,0,0,0,0.0099,0.02632,0.00907,0.01088,0.01572,0,0,0,0,0,0.01112,0.02896,0.00907,0.01093,0.01645,0,0,0,0,0,0.00943,0.02506,0.00864,0.01041,0.01509,0,0,0,0,0,0.01256,0.03263,0.00959,0.01176,0.01808,0,0,0,0,0,0.00939,0.02517,0.00888,0.01067,0.01542,0,0,0,0,0,0,0.01154,0.01022,0.00344,0.00355,0,0,0,0,0,0,0.01164,0.0103,0.00346,0.00357,0,0,0,0,0,0,0.0118,0.01045,0.00351,0.00362,0,0,0,0,0,0,0.01153,0.01021,0.00343,0.00354,0,0,0,0,0,0,0.01186,0.01048,0.00351,0.0036,0,0,0,0,0,0,0.01166,0.01034,0.00346,0.00355,0,0,0,0,0,0,0.01178,0.0104,0.00348,0.00357,0,0,0,0,0,0,0.01176,0.0104,0.00349,0.00359,0,0,0,0,0,0,0.01159,0.01024,0.00343,0.00353,0,0,0,0,0,0,0.08219,0.12364,0.1693,0.275,0,0,0,0,0,0,0.06975,0.1092,0.15215,0.25043,0,0,0,0,0,0,0.08052,0.12973,0.18073,0.30145,0,0,0,0,0,0,0.09042,0.14403,0.1991,0.32598,0,0,0,0,0,0,0.04141,0.08297,0.1246,0.2139,0,0,0,0,0,0,0.048,0.09434,0.13619,0.23451,0,0,0,0,0,0,0.03943,0.08,0.12076,0.20674,0,0,0,0,0,0,0.05557,0.09786,0.14088,0.23696,0,0,0,0,0,0,0.03904,0.07504,0.11099,0.18407,0,0,0,0,0 +Pickup,PH20E,2015,0,0,0.01325,0.01394,0.01483,0.01691,0,0,0,0,0,0,0.01357,0.01419,0.01499,0.0168,0,0,0,0,0,0,0.01485,0.01553,0.01641,0.01845,0,0,0,0,0,0,0.01244,0.01317,0.01411,0.01635,0,0,0,0,0,0,0.01428,0.01472,0.01525,0.01636,0,0,0,0,0,0,0.01306,0.01353,0.01412,0.01539,0,0,0,0,0,0,0.01305,0.01347,0.01399,0.01505,0,0,0,0,0,0,0.0138,0.01433,0.01499,0.01644,0,0,0,0,0,0,0.01362,0.01404,0.01456,0.01562,0,0,0,0,0,0,0.02477,0.01657,0.0152,0.01891,0,0,0,0,0,0,0.02269,0.01542,0.0144,0.01788,0,0,0,0,0,0,0.0246,0.01798,0.0168,0.02122,0,0,0,0,0,0,0.02652,0.01947,0.01816,0.0228,0,0,0,0,0,0,0.01706,0.01387,0.01385,0.01739,0,0,0,0,0,0,0.01896,0.01496,0.01478,0.01861,0,0,0,0,0,0,0.01689,0.0137,0.01376,0.0172,0,0,0,0,0,0,0.01997,0.01507,0.01451,0.01811,0,0,0,0,0,0,0.01658,0.01264,0.01239,0.0152,0,0,0,0,0,0,1.49218,2.6212,3.53696,4.72732,0,0,0,0,0,0,1.48586,2.62949,3.56772,4.75195,0,0,0,0,0,0,1.53141,2.9015,4.03721,5.47704,0,0,0,0,0,0,1.63334,3.10109,4.32598,5.83294,0,0,0,0,0,0,1.46043,2.89091,4.0576,5.44136,0,0,0,0,0,0,1.50192,2.94023,4.13805,5.57669,0,0,0,0,0,0,1.52231,2.98722,4.17751,5.57641,0,0,0,0,0,0,1.50085,2.84346,3.92235,5.24298,0,0,0,0,0,0,1.36799,2.56151,3.48707,4.602,0,0,0,0,0,0,288.6408,290.29193,292.99744,309.16524,0,0,0,0,0,0,291.05986,292.51679,294.95103,310.79054,0,0,0,0,0,0,295.08677,296.65612,299.25838,315.53249,0,0,0,0,0,0,288.45141,290.0411,292.6732,308.72227,0,0,0,0,0,0,296.23029,297.01914,298.51614,313.08774,0,0,0,0,0,0,292.35597,292.38028,294.15046,308.95552,0,0,0,0,0,0,294.12772,294.8456,296.24481,310.57668,0,0,0,0,0,0,293.80773,294.88518,296.78731,311.89891,0,0,0,0,0,0,289.49294,290.41083,292.06053,306.58508,0,0,0,0,0,0,0.00396,0.00454,0.00539,0.00752,0,0,0,0,0,0,0.00397,0.00454,0.00539,0.00751,0,0,0,0,0,0,0.00403,0.00461,0.00546,0.00759,0,0,0,0,0,0,0.00388,0.00445,0.00529,0.00739,0,0,0,0,0,0,0.00401,0.00459,0.00543,0.00756,0,0,0,0,0,0,0.00393,0.0045,0.00533,0.00744,0,0,0,0,0,0,0.00396,0.00454,0.00538,0.0075,0,0,0,0,0,0,0.004,0.00458,0.00542,0.00756,0,0,0,0,0,0,0.00403,0.00461,0.00547,0.00762,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01892,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01892,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01882,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01884,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01889,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01893,0,0,0,0,0,0,0.01251,0.01455,0.01873,0.01897,0,0,0,0,0,0,0.08959,0.11016,0.1608,0.22902,0,0,0,0,0,0,0.08923,0.10873,0.15914,0.2266,0,0,0,0,0,0,0.09022,0.11937,0.17354,0.25141,0,0,0,0,0,0,0.09412,0.12622,0.1833,0.26511,0,0,0,0,0,0,0.08272,0.1113,0.16375,0.23915,0,0,0,0,0,0,0.08681,0.1163,0.17053,0.24809,0,0,0,0,0,0,0.08475,0.11195,0.16493,0.23929,0,0,0,0,0,0,0.09292,0.1198,0.17459,0.25099,0,0,0,0,0,0,0.0859,0.10745,0.15677,0.22348,0,0,0,0,0.00445,0.00622,0.01426,0.0031,0.00445,0.00733,0,0,0,0,0.0039,0.00545,0.01257,0.00293,0.00419,0.00679,0,0,0,0,0.00426,0.00595,0.01377,0.00304,0.00437,0.00719,0,0,0,0,0.00464,0.0065,0.01501,0.00314,0.00453,0.00755,0,0,0,0,0.00236,0.00328,0.00792,0.00249,0.00349,0.00535,0,0,0,0,0.00272,0.00378,0.00902,0.00257,0.00362,0.00564,0,0,0,0,0.00231,0.0032,0.00771,0.00248,0.00347,0.00529,0,0,0,0,0.00312,0.00434,0.01019,0.00271,0.00384,0.00606,0,0,0,0,0.00235,0.00326,0.00778,0.00253,0.00353,0.00537,0,0,0,0,0.02182,0.02563,0.07237,0.03538,0.0385,0.04528,0,0,0,0,0.02105,0.02434,0.06989,0.03594,0.0388,0.04486,0,0,0,0,0.02311,0.0267,0.07678,0.03906,0.04213,0.04876,0,0,0,0,0.02149,0.02551,0.07137,0.03354,0.03676,0.04392,0,0,0,0,0.01866,0.02056,0.0625,0.03703,0.03921,0.04337,0,0,0,0,0.01816,0.02036,0.06084,0.03424,0.03657,0.04115,0,0,0,0,0.01731,0.01917,0.05791,0.03415,0.03629,0.04035,0,0,0,0,0.0197,0.0223,0.06566,0.0362,0.03871,0.04381,0,0,0,0,0.01789,0.01979,0.05986,0.03555,0.03772,0.04181,0,0,0,0,0.01005,0.01343,0.0332,0.00973,0.01248,0.01848,0,0,0,0,0.00905,0.01196,0.02994,0.00947,0.012,0.01737,0,0,0,0,0.00997,0.01314,0.03298,0.0101,0.01281,0.01868,0,0,0,0,0.0104,0.01397,0.03448,0.00961,0.01246,0.01879,0,0,0,0,0.00621,0.00789,0.02098,0.00874,0.01067,0.01435,0,0,0,0,0.00675,0.00869,0.02268,0.00856,0.01062,0.01468,0,0,0,0,0.00594,0.00759,0.02,0.00835,0.01025,0.01383,0,0,0,0,0.00759,0.00989,0.02529,0.00907,0.0113,0.0158,0,0,0,0,0.00603,0.00771,0.0203,0.00859,0.01051,0.01413,0,0,0,0,0,0,0.00833,0.00279,0.00282,0.00298,0,0,0,0,0,0,0.0084,0.00282,0.00284,0.00299,0,0,0,0,0,0,0.00852,0.00286,0.00288,0.00304,0,0,0,0,0,0,0.00833,0.00279,0.00282,0.00297,0,0,0,0,0,0,0.00855,0.00286,0.00287,0.00301,0,0,0,0,0,0,0.00844,0.00281,0.00283,0.00297,0,0,0,0,0,0,0.00849,0.00284,0.00285,0.00299,0,0,0,0,0,0,0.00848,0.00284,0.00286,0.003,0,0,0,0,0,0,0.00836,0.0028,0.00281,0.00295,0,0,0,0,0,0,0.06194,0.09213,0.14062,0.20782,0,0,0,0,0,0,0.05511,0.08401,0.13081,0.19304,0,0,0,0,0,0,0.06149,0.09835,0.15318,0.22922,0,0,0,0,0,0,0.06678,0.10633,0.16478,0.24595,0,0,0,0,0,0,0.0372,0.06958,0.11779,0.17574,0,0,0,0,0,0,0.04296,0.07595,0.12658,0.18935,0,0,0,0,0,0,0.03599,0.0676,0.11528,0.17149,0,0,0,0,0,0,0.04618,0.07848,0.12708,0.18862,0,0,0,0,0,0,0.03552,0.06325,0.10546,0.15408,0,0,0,0 +Pickup,PH20E,2020,0,0,0,0.01308,0.01366,0.01425,0.01625,0,0,0,0,0,0,0.01343,0.01395,0.01448,0.01624,0,0,0,0,0,0,0.0147,0.01527,0.01584,0.0178,0,0,0,0,0,0,0.01227,0.01288,0.0135,0.01562,0,0,0,0,0,0,0.01419,0.01456,0.01491,0.01603,0,0,0,0,0,0,0.01294,0.01335,0.01374,0.01501,0,0,0,0,0,0,0.01296,0.01332,0.01366,0.01474,0,0,0,0,0,0,0.01369,0.01413,0.01457,0.016,0,0,0,0,0,0,0.01353,0.01389,0.01422,0.0153,0,0,0,0,0,0,0.01896,0.01372,0.01167,0.01487,0,0,0,0,0,0,0.01703,0.01261,0.0109,0.01398,0,0,0,0,0,0,0.01883,0.01472,0.01273,0.01683,0,0,0,0,0,0,0.02044,0.01602,0.01382,0.01817,0,0,0,0,0,0,0.01178,0.0107,0.00987,0.01345,0,0,0,0,0,0,0.01319,0.01172,0.01069,0.01453,0,0,0,0,0,0,0.01153,0.01054,0.00978,0.01328,0,0,0,0,0,0,0.01445,0.01195,0.01064,0.01412,0,0,0,0,0,0,0.01128,0.00971,0.00882,0.01158,0,0,0,0,0,0,1.1774,1.77681,2.24244,3.44131,0,0,0,0,0,0,1.16529,1.76732,2.23847,3.44893,0,0,0,0,0,0,1.21306,1.95137,2.52886,4.07165,0,0,0,0,0,0,1.29874,2.09777,2.73038,4.36681,0,0,0,0,0,0,1.13164,1.8935,2.46679,3.99156,0,0,0,0,0,0,1.15738,1.93925,2.53642,4.12901,0,0,0,0,0,0,1.17596,1.95798,2.5445,4.09023,0,0,0,0,0,0,1.17031,1.88387,2.41974,3.84005,0,0,0,0,0,0,1.05469,1.68004,2.12898,3.31005,0,0,0,0,0,0,245.02712,246.66036,249.38281,270.91271,0,0,0,0,0,0,246.97531,248.44737,250.93432,272.15952,0,0,0,0,0,0,250.44486,252.01551,254.6554,276.39995,0,0,0,0,0,0,244.855,246.43761,249.09682,270.50532,0,0,0,0,0,0,251.00909,251.92534,253.59404,273.57675,0,0,0,0,0,0,247.02307,248.09949,250.0033,270.15412,0,0,0,0,0,0,249.20195,250.05711,251.63815,271.33989,0,0,0,0,0,0,249.10679,250.26327,252.28517,272.79396,0,0,0,0,0,0,245.34386,246.36128,248.15284,267.97109,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.0071,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.00709,0,0,0,0,0,0,0.00412,0.00465,0.00546,0.00716,0,0,0,0,0,0,0.00397,0.00449,0.00529,0.00697,0,0,0,0,0,0,0.0041,0.00463,0.00543,0.00714,0,0,0,0,0,0,0.00401,0.00453,0.00533,0.00702,0,0,0,0,0,0,0.00404,0.00457,0.00538,0.00708,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00713,0,0,0,0,0,0,0.00411,0.00465,0.00547,0.00719,0,0,0,0,0,0,0.01246,0.0145,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01858,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01456,0.01872,0.01872,0,0,0,0,0,0,0.05857,0.09444,0.12694,0.17656,0,0,0,0,0,0,0.05784,0.09303,0.12531,0.17434,0,0,0,0,0,0,0.05907,0.10187,0.13624,0.19421,0,0,0,0,0,0,0.06159,0.10826,0.14468,0.20626,0,0,0,0,0,0,0.05224,0.09387,0.12664,0.18212,0,0,0,0,0,0,0.05524,0.09875,0.13292,0.19046,0,0,0,0,0,0,0.05331,0.09475,0.12805,0.18262,0,0,0,0,0,0,0.05903,0.10199,0.13663,0.19265,0,0,0,0,0,0,0.05371,0.09082,0.12175,0.16952,0,0,0,0.00138,0.00221,0.00301,0.00887,0.00262,0.00348,0.00622,0,0,0,0.00127,0.00196,0.00266,0.00792,0.00249,0.00328,0.0058,0,0,0,0.00147,0.00181,0.00244,0.00852,0.00258,0.00342,0.00611,0,0,0,0.00151,0.00224,0.00306,0.00924,0.00265,0.00353,0.00639,0,0,0,0.00088,0.00138,0.00188,0.00532,0.00213,0.00275,0.00464,0,0,0,0.00099,0.00141,0.00192,0.00588,0.00219,0.00285,0.00488,0,0,0,0.00085,0.0013,0.00177,0.00514,0.00212,0.00274,0.0046,0,0,0,0.00109,0.00156,0.00212,0.00656,0.00231,0.00302,0.00522,0,0,0,0.00079,0.00118,0.0016,0.00515,0.00216,0.00279,0.00467,0,0,0,0.01524,0.01699,0.01881,0.06046,0.03433,0.03631,0.04278,0,0,0,0.0154,0.01685,0.01844,0.05964,0.03496,0.03679,0.04265,0,0,0,0.01709,0.01772,0.01914,0.06511,0.03803,0.03998,0.04634,0,0,0,0.0147,0.01626,0.01811,0.05855,0.03244,0.0345,0.04128,0,0,0,0.01551,0.01653,0.01763,0.05685,0.03627,0.03764,0.04188,0,0,0,0.01447,0.01531,0.01643,0.05384,0.03344,0.03491,0.03951,0,0,0,0.01423,0.01514,0.01616,0.05232,0.0334,0.03475,0.03889,0,0,0,0.01537,0.01635,0.01757,0.05768,0.03533,0.03693,0.04197,0,0,0,0.01463,0.01542,0.01631,0.05421,0.03479,0.03615,0.04033,0,0,0,0.00423,0.00578,0.00739,0.02266,0.00879,0.01055,0.01627,0,0,0,0.00405,0.00534,0.00675,0.02087,0.00861,0.01022,0.01541,0,0,0,0.00463,0.00519,0.00644,0.02266,0.00918,0.01091,0.01654,0,0,0,0.0044,0.00577,0.00742,0.02313,0.00864,0.01046,0.01645,0,0,0,0.00342,0.00433,0.0053,0.01598,0.00807,0.00928,0.01303,0,0,0,0.00349,0.00423,0.00521,0.01659,0.00785,0.00915,0.01323,0,0,0,0.00321,0.00402,0.00492,0.01506,0.00769,0.00888,0.01255,0,0,0,0.00375,0.00462,0.0057,0.01824,0.0083,0.00971,0.01418,0,0,0,0.00314,0.00385,0.00463,0.0153,0.00792,0.00912,0.01282,0,0,0,0,0,0,0.00236,0.00237,0.0024,0.00261,0,0,0,0,0,0,0.00238,0.00239,0.00242,0.00262,0,0,0,0,0,0,0.00241,0.00243,0.00245,0.00266,0,0,0,0,0,0,0.00236,0.00237,0.0024,0.0026,0,0,0,0,0,0,0.00242,0.00242,0.00244,0.00263,0,0,0,0,0,0,0.00238,0.00239,0.00241,0.0026,0,0,0,0,0,0,0.0024,0.00241,0.00242,0.00261,0,0,0,0,0,0,0.0024,0.00241,0.00243,0.00263,0,0,0,0,0,0,0.00236,0.00237,0.00239,0.00258,0,0,0,0,0,0,0.05232,0.07708,0.10873,0.16922,0,0,0,0,0,0,0.0461,0.06942,0.09941,0.15627,0,0,0,0,0,0,0.05202,0.08128,0.11646,0.18849,0,0,0,0,0,0,0.05669,0.08833,0.12614,0.20314,0,0,0,0,0,0,0.02945,0.05364,0.08241,0.14073,0,0,0,0,0,0,0.0338,0.05969,0.0904,0.15316,0,0,0,0,0,0,0.02826,0.05191,0.08029,0.13695,0,0,0,0,0,0,0.03778,0.06265,0.09261,0.15221,0,0,0,0,0,0,0.02775,0.04853,0.07362,0.12117,0,0,0 +Pickup,PH20E,2025,0,0,0,0,0.01279,0.01314,0.0135,0.01514,0,0,0,0,0,0,0.01316,0.01348,0.0138,0.01525,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01672,0,0,0,0,0,0,0.01196,0.01232,0.01271,0.01445,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01538,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01429,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01411,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01519,0,0,0,0,0,0,0.01333,0.01355,0.01376,0.01467,0,0,0,0,0,0,0.01527,0.00999,0.00807,0.01132,0,0,0,0,0,0,0.01329,0.00887,0.00728,0.01044,0,0,0,0,0,0,0.01507,0.01042,0.00855,0.01267,0,0,0,0,0,0,0.01659,0.01145,0.00937,0.01376,0,0,0,0,0,0,0.00787,0.00635,0.00565,0.00933,0,0,0,0,0,0,0.00928,0.00725,0.00633,0.01027,0,0,0,0,0,0,0.00754,0.00615,0.00551,0.00915,0,0,0,0,0,0,0.01056,0.00773,0.00657,0.01015,0,0,0,0,0,0,0.00737,0.00572,0.00502,0.00795,0,0,0,0,0,0,0.78293,1.14419,1.45139,2.43581,0,0,0,0,0,0,0.75608,1.11587,1.42212,2.41519,0,0,0,0,0,0,0.79639,1.23688,1.60931,2.87286,0,0,0,0,0,0,0.86055,1.34122,1.75077,3.10096,0,0,0,0,0,0,0.67843,1.12296,1.47782,2.72389,0,0,0,0,0,0,0.70774,1.16726,1.53975,2.84363,0,0,0,0,0,0,0.70168,1.15902,1.52204,2.78828,0,0,0,0,0,0,0.7288,1.15016,1.48876,2.65299,0,0,0,0,0,0,0.63311,0.99914,1.27884,2.24697,0,0,0,0,0,0,200.25711,201.22732,203.2205,229.04587,0,0,0,0,0,0,201.75116,202.58006,204.36032,229.92613,0,0,0,0,0,0,204.63509,205.54246,207.45343,233.5959,0,0,0,0,0,0,200.1063,201.03474,202.97459,228.68367,0,0,0,0,0,0,204.71877,205.06409,206.10838,230.54057,0,0,0,0,0,0,201.57064,202.06059,203.32184,227.8414,0,0,0,0,0,0,203.2212,203.51795,204.48858,228.61363,0,0,0,0,0,0,203.30709,203.8617,205.22412,230.13258,0,0,0,0,0,0,200.13804,200.57777,201.73772,225.88926,0,0,0,0,0,0,0.00407,0.00457,0.00537,0.00702,0,0,0,0,0,0,0.00408,0.00457,0.00537,0.00701,0,0,0,0,0,0,0.00414,0.00464,0.00544,0.00709,0,0,0,0,0,0,0.00399,0.00448,0.00527,0.0069,0,0,0,0,0,0,0.00412,0.00462,0.00542,0.00706,0,0,0,0,0,0,0.00404,0.00453,0.00532,0.00695,0,0,0,0,0,0,0.00407,0.00457,0.00536,0.00701,0,0,0,0,0,0,0.00411,0.00461,0.00541,0.00706,0,0,0,0,0,0,0.00414,0.00464,0.00545,0.00712,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.0145,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01858,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01454,0.01872,0.01872,0,0,0,0,0,0,0.03626,0.05428,0.07259,0.1233,0,0,0,0,0,0,0.03527,0.05283,0.07085,0.12102,0,0,0,0,0,0,0.03627,0.05749,0.07666,0.13559,0,0,0,0,0,0,0.03791,0.06108,0.08136,0.14435,0,0,0,0,0,0,0.02987,0.0501,0.06778,0.12383,0,0,0,0,0,0,0.03237,0.05366,0.07226,0.13072,0,0,0,0,0,0,0.03045,0.05065,0.06859,0.12405,0,0,0,0,0,0,0.03454,0.05556,0.07442,0.13193,0,0,0,0,0,0,0.03049,0.04857,0.0653,0.11436,0,0,0,0.00083,0.0014,0.00198,0.00619,0.00164,0.00217,0.00449,0,0,0,0.00077,0.0013,0.00183,0.00559,0.00156,0.00205,0.00418,0,0,0,0.0007,0.00117,0.0019,0.00593,0.00161,0.00213,0.00441,0,0,0,0.00084,0.00143,0.00204,0.00642,0.00166,0.00221,0.0046,0,0,0,0.00067,0.0011,0.00147,0.00398,0.00133,0.00172,0.00336,0,0,0,0.00065,0.00108,0.00153,0.0043,0.00138,0.00178,0.00353,0,0,0,0.00064,0.00104,0.00139,0.0038,0.00133,0.00171,0.00333,0,0,0,0.00067,0.00112,0.00162,0.00471,0.00145,0.00189,0.00377,0,0,0,0.00057,0.00093,0.00135,0.00378,0.00136,0.00174,0.00338,0,0,0,0.01411,0.01542,0.01677,0.05476,0.03218,0.03341,0.03883,0,0,0,0.01438,0.01556,0.0168,0.0547,0.03295,0.03407,0.03902,0,0,0,0.01541,0.01646,0.01819,0.05958,0.03592,0.03713,0.04246,0,0,0,0.01331,0.01465,0.0161,0.05254,0.03026,0.03153,0.03717,0,0,0,0.01506,0.01599,0.0168,0.05405,0.03461,0.03546,0.03911,0,0,0,0.01374,0.01466,0.01568,0.05052,0.03171,0.03262,0.03656,0,0,0,0.01376,0.01463,0.01538,0.04954,0.03175,0.03258,0.03616,0,0,0,0.01449,0.01546,0.0166,0.0538,0.03349,0.03448,0.03877,0,0,0,0.01417,0.01493,0.01586,0.05135,0.03311,0.03395,0.03757,0,0,0,0.00323,0.00439,0.00558,0.01762,0.0069,0.00798,0.01278,0,0,0,0.00315,0.0042,0.0053,0.01651,0.00683,0.00783,0.0122,0,0,0,0.00315,0.00408,0.00561,0.01777,0.00732,0.00839,0.0131,0,0,0,0.00317,0.00436,0.00564,0.01781,0.0067,0.00783,0.01282,0,0,0,0.00303,0.00385,0.00457,0.0135,0.0066,0.00735,0.01058,0,0,0,0.00283,0.00365,0.00455,0.01365,0.00632,0.00712,0.01061,0,0,0,0.0028,0.00357,0.00423,0.01259,0.00622,0.00696,0.01013,0,0,0,0.00298,0.00384,0.00484,0.01481,0.00668,0.00755,0.01135,0,0,0,0.00274,0.00341,0.00423,0.01277,0.00643,0.00718,0.01038,0,0,0,0,0,0,0.00193,0.00194,0.00196,0.0022,0,0,0,0,0,0,0.00194,0.00195,0.00197,0.00221,0,0,0,0,0,0,0.00197,0.00198,0.002,0.00225,0,0,0,0,0,0,0.00193,0.00194,0.00195,0.0022,0,0,0,0,0,0,0.00197,0.00197,0.00198,0.00222,0,0,0,0,0,0,0.00194,0.00194,0.00196,0.00219,0,0,0,0,0,0,0.00196,0.00196,0.00197,0.0022,0,0,0,0,0,0,0.00196,0.00196,0.00198,0.00222,0,0,0,0,0,0,0.00193,0.00193,0.00194,0.00217,0,0,0,0,0,0,0.04472,0.06033,0.08146,0.13426,0,0,0,0,0,0,0.03836,0.05261,0.07201,0.12159,0,0,0,0,0,0,0.04411,0.0619,0.08471,0.14738,0,0,0,0,0,0,0.04877,0.06817,0.09292,0.16008,0,0,0,0,0,0,0.0211,0.03404,0.05043,0.10057,0,0,0,0,0,0,0.02552,0.03974,0.0577,0.1119,0,0,0,0,0,0,0.01987,0.03239,0.04838,0.09712,0,0,0,0,0,0,0.0296,0.04373,0.06188,0.11351,0,0,0,0,0,0,0.01945,0.03053,0.04481,0.08579,0,0 +Pickup,PH20E,2030,0,0,0,0,0,0.01279,0.01313,0.0135,0.01452,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01471,0,0,0,0,0,0,0.01441,0.01474,0.0151,0.01611,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01379,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01502,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01388,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01376,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01473,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01432,0,0,0,0,0,0,0.01419,0.00894,0.00713,0.00914,0,0,0,0,0,0,0.0122,0.00782,0.00633,0.00824,0,0,0,0,0,0,0.01396,0.0092,0.00745,0.00993,0,0,0,0,0,0,0.01544,0.01015,0.00819,0.01085,0,0,0,0,0,0,0.00674,0.00514,0.00454,0.0066,0,0,0,0,0,0,0.00814,0.00599,0.00519,0.00742,0,0,0,0,0,0,0.00639,0.00492,0.00439,0.00641,0,0,0,0,0,0,0.00943,0.00655,0.00551,0.00757,0,0,0,0,0,0,0.00625,0.00461,0.00403,0.00565,0,0,0,0,0,0,0.68062,0.99487,1.27363,1.87627,0,0,0,0,0,0,0.65024,0.96245,1.23894,1.83703,0,0,0,0,0,0,0.68808,1.06843,1.40355,2.16263,0,0,0,0,0,0,0.74606,1.16186,1.53062,2.34546,0,0,0,0,0,0,0.56162,0.94231,1.25685,1.97239,0,0,0,0,0,0,0.59137,0.98559,1.31656,2.07319,0,0,0,0,0,0,0.57944,0.97129,1.29299,2.01915,0,0,0,0,0,0,0.61461,0.97787,1.28022,1.96203,0,0,0,0,0,0,0.52461,0.83969,1.08828,1.64445,0,0,0,0,0,0,182.25516,183.97317,186.84746,202.84795,0,0,0,0,0,0,183.57271,185.16748,187.84499,203.53146,0,0,0,0,0,0,186.21813,187.89673,190.71418,206.82888,0,0,0,0,0,0,182.11421,183.79378,186.61814,202.51921,0,0,0,0,0,0,186.13093,187.29543,189.28277,203.75195,0,0,0,0,0,0,183.3134,184.59737,186.77751,201.46963,0,0,0,0,0,0,184.75932,185.87341,187.78372,202.02619,0,0,0,0,0,0,184.90813,186.25828,188.54338,203.53129,0,0,0,0,0,0,181.98254,183.21374,185.28683,199.6782,0,0,0,0,0,0,0.00407,0.00455,0.00536,0.00698,0,0,0,0,0,0,0.00407,0.00456,0.00536,0.00697,0,0,0,0,0,0,0.00414,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00399,0.00447,0.00526,0.00686,0,0,0,0,0,0,0.00412,0.0046,0.00541,0.00702,0,0,0,0,0,0,0.00403,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00406,0.00455,0.00535,0.00697,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00708,0,0,0,0,0,0,0.01246,0.01447,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01449,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01441,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01447,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01443,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01446,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01453,0.01872,0.01872,0,0,0,0,0,0,0.02873,0.04195,0.05784,0.09049,0,0,0,0,0,0,0.02765,0.04049,0.05607,0.08815,0,0,0,0,0,0,0.02845,0.04389,0.06052,0.09787,0,0,0,0,0,0,0.02969,0.04652,0.06412,0.10399,0,0,0,0,0,0,0.02222,0.03672,0.05186,0.08631,0,0,0,0,0,0,0.0245,0.03982,0.0558,0.09206,0,0,0,0,0,0,0.02266,0.03711,0.05246,0.0866,0,0,0,0,0,0,0.02616,0.04131,0.05751,0.09332,0,0,0,0,0,0,0.02265,0.03568,0.04999,0.08028,0,0,0,0.00071,0.0012,0.00175,0.00442,0.00164,0.00217,0.00357,0,0,0,0.00067,0.00115,0.00166,0.0041,0.00155,0.00205,0.00333,0,0,0,0.00061,0.00117,0.0017,0.00426,0.00161,0.00213,0.00351,0,0,0,0.00071,0.00122,0.00179,0.00454,0.00166,0.0022,0.00365,0,0,0,0.00061,0.001,0.00141,0.00326,0.00133,0.00172,0.00269,0,0,0,0.00059,0.00102,0.00145,0.00341,0.00137,0.00178,0.00282,0,0,0,0.00058,0.00095,0.00134,0.00311,0.00133,0.00171,0.00267,0,0,0,0.0006,0.00105,0.00151,0.00362,0.00144,0.00188,0.00301,0,0,0,0.00052,0.00092,0.00131,0.00308,0.00135,0.00174,0.00271,0,0,0,0.01381,0.01491,0.01617,0.05083,0.03217,0.0334,0.03671,0,0,0,0.01413,0.01518,0.01635,0.05142,0.03294,0.03407,0.03708,0,0,0,0.0152,0.01644,0.01766,0.05586,0.03591,0.03712,0.04037,0,0,0,0.01297,0.01411,0.01542,0.04831,0.03024,0.03152,0.03497,0,0,0,0.01492,0.01573,0.01665,0.05247,0.0346,0.03546,0.03765,0,0,0,0.01359,0.01451,0.01547,0.04856,0.0317,0.03261,0.03499,0,0,0,0.01363,0.0144,0.01526,0.04804,0.03174,0.03258,0.03473,0,0,0,0.01431,0.01528,0.0163,0.0514,0.03348,0.03448,0.03707,0,0,0,0.01406,0.01491,0.01574,0.04983,0.0331,0.03395,0.03611,0,0,0,0.00297,0.00394,0.00506,0.01414,0.00688,0.00798,0.0109,0,0,0,0.00293,0.00386,0.00489,0.0136,0.00682,0.00782,0.01048,0,0,0,0.00296,0.00406,0.00514,0.01448,0.00731,0.00838,0.01126,0,0,0,0.00287,0.00388,0.00504,0.01407,0.00669,0.00782,0.01088,0,0,0,0.0029,0.00362,0.00443,0.0121,0.00659,0.00735,0.00929,0,0,0,0.00271,0.00352,0.00437,0.01191,0.00631,0.00712,0.00923,0,0,0,0.00269,0.00337,0.00412,0.01126,0.00622,0.00696,0.00886,0,0,0,0.00282,0.00368,0.00458,0.01268,0.00667,0.00755,0.00984,0,0,0,0.00264,0.00339,0.00413,0.01143,0.00643,0.00718,0.00909,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00196,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00199,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00196,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00196,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00192,0,0,0,0,0,0,0.04215,0.05533,0.07437,0.11229,0,0,0,0,0,0,0.03579,0.04764,0.06492,0.0996,0,0,0,0,0,0,0.04142,0.05613,0.07649,0.11972,0,0,0,0,0,0,0.04602,0.06213,0.0843,0.13104,0,0,0,0,0,0,0.01846,0.02842,0.04225,0.0732,0,0,0,0,0,0,0.02286,0.03397,0.04932,0.08356,0,0,0,0,0,0,0.01722,0.02679,0.04022,0.0701,0,0,0,0,0,0,0.02695,0.03824,0.05399,0.08772,0,0,0,0,0,0,0.01686,0.0254,0.03745,0.06288,0 +Pickup,PH20E,2035,0,0,0,0,0,0,0.01279,0.01313,0.0135,0.01433,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01453,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01592,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01359,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.0149,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01375,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01365,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01459,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01421,0,0,0,0,0,0,0.01411,0.00893,0.00713,0.00842,0,0,0,0,0,0,0.01213,0.00781,0.00634,0.00751,0,0,0,0,0,0,0.01388,0.00919,0.00746,0.00899,0,0,0,0,0,0,0.01535,0.01014,0.0082,0.00985,0,0,0,0,0,0,0.00671,0.00514,0.00455,0.00564,0,0,0,0,0,0,0.0081,0.00599,0.00519,0.00642,0,0,0,0,0,0,0.00636,0.00492,0.0044,0.00546,0,0,0,0,0,0,0.00938,0.00655,0.00551,0.00668,0,0,0,0,0,0,0.00622,0.00461,0.00403,0.00487,0,0,0,0,0,0,0.68089,0.99566,1.27414,1.70483,0,0,0,0,0,0,0.65071,0.96325,1.23939,1.65892,0,0,0,0,0,0,0.68867,1.06944,1.40407,1.93885,0,0,0,0,0,0,0.7467,1.16295,1.53118,2.10635,0,0,0,0,0,0,0.56284,0.94329,1.25715,1.73329,0,0,0,0,0,0,0.59253,0.9866,1.3169,1.82736,0,0,0,0,0,0,0.58073,0.97227,1.29326,1.77447,0,0,0,0,0,0,0.61555,0.97874,1.2806,1.74448,0,0,0,0,0,0,0.52559,0.8404,1.08856,1.45604,0,0,0,0,0,0,182.21733,183.98013,186.86194,194.57275,0,0,0,0,0,0,183.53708,185.17397,187.85813,195.19446,0,0,0,0,0,0,186.18068,187.90356,190.72809,198.37417,0,0,0,0,0,0,182.07648,183.80052,186.63198,194.25452,0,0,0,0,0,0,186.10333,187.29998,189.29218,195.29223,0,0,0,0,0,0,183.28361,184.60235,186.788,193.14107,0,0,0,0,0,0,184.7326,185.87767,187.79246,193.63011,0,0,0,0,0,0,184.87707,186.26358,188.55436,195.13001,0,0,0,0,0,0,181.95504,183.21874,185.29702,191.40095,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00699,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00698,0,0,0,0,0,0,0.00413,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00398,0.00447,0.00527,0.00687,0,0,0,0,0,0,0.00411,0.0046,0.00541,0.00703,0,0,0,0,0,0,0.00402,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00405,0.00455,0.00536,0.00697,0,0,0,0,0,0,0.00409,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00412,0.00463,0.00545,0.00709,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01455,0.01872,0.01872,0,0,0,0,0,0,0.0287,0.04204,0.05787,0.0792,0,0,0,0,0,0,0.02763,0.04058,0.0561,0.07681,0,0,0,0,0,0,0.02844,0.04398,0.06055,0.08457,0,0,0,0,0,0,0.02968,0.04663,0.06416,0.08965,0,0,0,0,0,0,0.02223,0.03682,0.05188,0.07305,0,0,0,0,0,0,0.0245,0.03991,0.05583,0.07836,0,0,0,0,0,0,0.02266,0.03721,0.05249,0.07338,0,0,0,0,0,0,0.02615,0.0414,0.05753,0.07976,0,0,0,0,0,0,0.02265,0.03577,0.05001,0.06846,0,0,0,0.00065,0.00105,0.0014,0.00355,0.00164,0.00217,0.00328,0,0,0,0.00062,0.001,0.00133,0.00334,0.00156,0.00205,0.00307,0,0,0,0.00063,0.00102,0.00135,0.00344,0.00161,0.00213,0.00322,0,0,0,0.00065,0.00106,0.00142,0.00362,0.00166,0.0022,0.00336,0,0,0,0.00055,0.00087,0.00114,0.00278,0.00133,0.00172,0.00248,0,0,0,0.00056,0.00089,0.00116,0.00287,0.00137,0.00178,0.0026,0,0,0,0.00052,0.00083,0.00108,0.00266,0.00133,0.00171,0.00246,0,0,0,0.00057,0.00092,0.00121,0.00301,0.00145,0.00189,0.00277,0,0,0,0.00051,0.00081,0.00105,0.00263,0.00136,0.00174,0.0025,0,0,0,0.01366,0.01456,0.01538,0.04885,0.03217,0.03341,0.03605,0,0,0,0.01401,0.01486,0.01561,0.0497,0.03294,0.03407,0.03647,0,0,0,0.01525,0.01611,0.01689,0.05401,0.03591,0.03712,0.03972,0,0,0,0.01284,0.01376,0.0146,0.04622,0.03025,0.03152,0.03428,0,0,0,0.01478,0.01548,0.01606,0.05142,0.03461,0.03546,0.03719,0,0,0,0.01352,0.01424,0.01485,0.04737,0.0317,0.03261,0.03449,0,0,0,0.01351,0.01416,0.0147,0.04706,0.03174,0.03258,0.03427,0,0,0,0.01425,0.015,0.01565,0.05004,0.03349,0.03448,0.03653,0,0,0,0.01404,0.01468,0.0152,0.04887,0.0331,0.03395,0.03565,0,0,0,0.00284,0.00363,0.00435,0.01239,0.00689,0.00798,0.01031,0,0,0,0.00283,0.00358,0.00424,0.01208,0.00682,0.00782,0.00994,0,0,0,0.003,0.00377,0.00446,0.01284,0.00731,0.00839,0.01068,0,0,0,0.00275,0.00357,0.00431,0.01223,0.0067,0.00783,0.01027,0,0,0,0.00278,0.0034,0.00391,0.01117,0.0066,0.00735,0.00888,0,0,0,0.00264,0.00328,0.00382,0.01086,0.00631,0.00712,0.00879,0,0,0,0.00258,0.00316,0.00363,0.0104,0.00622,0.00696,0.00846,0,0,0,0.00277,0.00344,0.00401,0.01148,0.00667,0.00755,0.00937,0,0,0,0.00262,0.00319,0.00365,0.01058,0.00643,0.00718,0.00868,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00188,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00191,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00188,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00188,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00184,0,0,0,0,0,0,0.04204,0.0554,0.07443,0.10514,0,0,0,0,0,0,0.0357,0.04771,0.06498,0.09236,0,0,0,0,0,0,0.04132,0.05621,0.07655,0.11037,0,0,0,0,0,0,0.04591,0.06221,0.08437,0.12122,0,0,0,0,0,0,0.01843,0.02848,0.04229,0.06369,0,0,0,0,0,0,0.02281,0.03403,0.04936,0.07372,0,0,0,0,0,0,0.01719,0.02685,0.04025,0.06072,0,0,0,0,0,0,0.0269,0.0383,0.05403,0.07892,0,0,0,0,0,0,0.01683,0.02545,0.03748,0.0551 +Pickup,PH20E,2040,0,0,0,0,0,0,0,0.01279,0.01313,0.0135,0,0,0,0,0,0,0,0.01316,0.01347,0.0138,0,0,0,0,0,0,0,0.0144,0.01475,0.0151,0,0,0,0,0,0,0,0.01196,0.01232,0.0127,0,0,0,0,0,0,0,0.01399,0.01421,0.01443,0,0,0,0,0,0,0,0.01273,0.01297,0.01321,0,0,0,0,0,0,0,0.01277,0.01298,0.01319,0,0,0,0,0,0,0,0.01345,0.01372,0.01399,0,0,0,0,0,0,0,0.01333,0.01355,0.01375,0,0,0,0,0,0,0,0.01411,0.00893,0.00713,0,0,0,0,0,0,0,0.01214,0.00781,0.00633,0,0,0,0,0,0,0,0.01388,0.00919,0.00745,0,0,0,0,0,0,0,0.01536,0.01014,0.00819,0,0,0,0,0,0,0,0.00671,0.00513,0.00455,0,0,0,0,0,0,0,0.0081,0.00598,0.00519,0,0,0,0,0,0,0,0.00636,0.00492,0.00439,0,0,0,0,0,0,0,0.00938,0.00655,0.00551,0,0,0,0,0,0,0,0.00622,0.0046,0.00403,0,0,0,0,0,0,0,0.67993,0.99498,1.27381,0,0,0,0,0,0,0,0.64978,0.9626,1.23911,0,0,0,0,0,0,0,0.68758,1.06866,1.40373,0,0,0,0,0,0,0,0.74551,1.16211,1.53082,0,0,0,0,0,0,0,0.56185,0.94267,1.25696,0,0,0,0,0,0,0,0.59149,0.98594,1.31668,0,0,0,0,0,0,0,0.57973,0.97166,1.29308,0,0,0,0,0,0,0,0.61454,0.97812,1.28036,0,0,0,0,0,0,0,0.52473,0.83991,1.08838,0,0,0,0,0,0,0,182.20719,183.96709,186.85292,0,0,0,0,0,0,0,183.52765,185.16175,187.8499,0,0,0,0,0,0,0,186.17068,187.89066,190.71931,0,0,0,0,0,0,0,182.06651,183.78754,186.62318,0,0,0,0,0,0,0,186.09639,187.29084,189.28607,0,0,0,0,0,0,0,183.27595,184.59236,186.78142,0,0,0,0,0,0,0,184.72583,185.86888,187.78697,0,0,0,0,0,0,0,184.86899,186.25312,188.5475,0,0,0,0,0,0,0,181.94775,183.20928,185.29084,0,0,0,0,0,0,0,0.00405,0.00455,0.00536,0,0,0,0,0,0,0,0.00406,0.00455,0.00536,0,0,0,0,0,0,0,0.00412,0.00462,0.00543,0,0,0,0,0,0,0,0.00397,0.00446,0.00526,0,0,0,0,0,0,0,0.0041,0.0046,0.00541,0,0,0,0,0,0,0,0.00402,0.00451,0.00531,0,0,0,0,0,0,0,0.00405,0.00455,0.00535,0,0,0,0,0,0,0,0.00409,0.00459,0.0054,0,0,0,0,0,0,0,0.00412,0.00462,0.00544,0,0,0,0,0,0,0,0.01246,0.01448,0.01865,0,0,0,0,0,0,0,0.01248,0.0145,0.01868,0,0,0,0,0,0,0,0.01247,0.0145,0.01867,0,0,0,0,0,0,0,0.01241,0.01442,0.01857,0,0,0,0,0,0,0,0.01246,0.01448,0.01866,0,0,0,0,0,0,0,0.01242,0.01444,0.01859,0,0,0,0,0,0,0,0.01245,0.01447,0.01864,0,0,0,0,0,0,0,0.01248,0.01451,0.01868,0,0,0,0,0,0,0,0.01251,0.01454,0.01872,0,0,0,0,0,0,0,0.02867,0.04198,0.05785,0,0,0,0,0,0,0,0.0276,0.04052,0.05608,0,0,0,0,0,0,0,0.0284,0.04392,0.06053,0,0,0,0,0,0,0,0.02964,0.04656,0.06413,0,0,0,0,0,0,0,0.02219,0.03676,0.05187,0,0,0,0,0,0,0,0.02447,0.03985,0.05581,0,0,0,0,0,0,0,0.02263,0.03715,0.05247,0,0,0,0,0,0,0,0.02612,0.04134,0.05752,0,0,0,0,0,0,0,0.02262,0.03572,0.04999,0,0,0,0,0.00043,0.00068,0.0009,0.00284,0.00164,0.00217,0,0,0,0,0.00041,0.00065,0.00086,0.00268,0.00156,0.00205,0,0,0,0,0.00041,0.00066,0.00087,0.00276,0.00161,0.00213,0,0,0,0,0.00043,0.00069,0.00092,0.00289,0.00166,0.0022,0,0,0,0,0.00036,0.00057,0.00074,0.00225,0.00133,0.00172,0,0,0,0,0.00037,0.00058,0.00075,0.00233,0.00137,0.00178,0,0,0,0,0.00035,0.00054,0.0007,0.00217,0.00133,0.00171,0,0,0,0,0.00038,0.00059,0.00078,0.00244,0.00144,0.00189,0,0,0,0,0.00034,0.00053,0.00068,0.00216,0.00136,0.00174,0,0,0,0,0.01319,0.01375,0.01427,0.04723,0.03217,0.0334,0,0,0,0,0.01356,0.01409,0.01457,0.04821,0.03294,0.03407,0,0,0,0,0.01478,0.01532,0.01583,0.05245,0.03591,0.03712,0,0,0,0,0.01235,0.01292,0.01346,0.04453,0.03024,0.03152,0,0,0,0,0.0144,0.01483,0.0152,0.05028,0.0346,0.03546,0,0,0,0,0.01312,0.01357,0.01397,0.04617,0.0317,0.03261,0,0,0,0,0.01314,0.01355,0.01389,0.046,0.03174,0.03258,0,0,0,0,0.01384,0.01431,0.01473,0.04876,0.03349,0.03448,0,0,0,0,0.01368,0.01408,0.01442,0.04785,0.0331,0.03395,0,0,0,0,0.00242,0.00291,0.00337,0.01096,0.00689,0.00798,0,0,0,0,0.00243,0.00289,0.00332,0.01076,0.00682,0.00782,0,0,0,0,0.0026,0.00307,0.00352,0.01146,0.00731,0.00838,0,0,0,0,0.00232,0.00283,0.00331,0.01072,0.00669,0.00782,0,0,0,0,0.00244,0.00282,0.00315,0.01016,0.00659,0.00735,0,0,0,0,0.00229,0.00269,0.00304,0.0098,0.00631,0.00712,0,0,0,0,0.00225,0.00261,0.00292,0.00946,0.00622,0.00696,0,0,0,0,0.0024,0.00282,0.00319,0.01035,0.00667,0.00755,0,0,0,0,0.00231,0.00266,0.00296,0.00968,0.00643,0.00718,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00177,0.00178,0.00181,0,0,0,0,0,0,0,0.00179,0.00181,0.00184,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00179,0.0018,0.00182,0,0,0,0,0,0,0,0.00176,0.00178,0.0018,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00175,0.00176,0.00178,0,0,0,0,0,0,0,0.04199,0.05533,0.07439,0,0,0,0,0,0,0,0.03566,0.04765,0.06494,0,0,0,0,0,0,0,0.04127,0.05613,0.07651,0,0,0,0,0,0,0,0.04586,0.06213,0.08432,0,0,0,0,0,0,0,0.0184,0.02843,0.04227,0,0,0,0,0,0,0,0.02278,0.03398,0.04934,0,0,0,0,0,0,0,0.01717,0.02681,0.04023,0,0,0,0,0,0,0,0.02686,0.03825,0.054,0,0,0,0,0,0,0,0.01681,0.02541,0.03746 +Pickup,PH20E,2045,0,0,0,0,0,0,0,0,0.01279,0.01313,0,0,0,0,0,0,0,0,0.01316,0.01347,0,0,0,0,0,0,0,0,0.0144,0.01474,0,0,0,0,0,0,0,0,0.01196,0.01232,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01273,0.01297,0,0,0,0,0,0,0,0,0.01277,0.01298,0,0,0,0,0,0,0,0,0.01345,0.01372,0,0,0,0,0,0,0,0,0.01333,0.01355,0,0,0,0,0,0,0,0,0.01411,0.00893,0,0,0,0,0,0,0,0,0.01214,0.00781,0,0,0,0,0,0,0,0,0.01388,0.00919,0,0,0,0,0,0,0,0,0.01536,0.01014,0,0,0,0,0,0,0,0,0.00671,0.00513,0,0,0,0,0,0,0,0,0.0081,0.00598,0,0,0,0,0,0,0,0,0.00636,0.00491,0,0,0,0,0,0,0,0,0.00938,0.00655,0,0,0,0,0,0,0,0,0.00622,0.0046,0,0,0,0,0,0,0,0,0.6794,0.99478,0,0,0,0,0,0,0,0,0.64926,0.9624,0,0,0,0,0,0,0,0,0.68698,1.06841,0,0,0,0,0,0,0,0,0.74486,1.16184,0,0,0,0,0,0,0,0,0.56134,0.94245,0,0,0,0,0,0,0,0,0.59095,0.98571,0,0,0,0,0,0,0,0,0.57921,0.97144,0,0,0,0,0,0,0,0,0.61401,0.97791,0,0,0,0,0,0,0,0,0.52429,0.83975,0,0,0,0,0,0,0,0,182.19943,183.96437,0,0,0,0,0,0,0,0,183.52038,185.15908,0,0,0,0,0,0,0,0,186.16305,187.88798,0,0,0,0,0,0,0,0,182.05884,183.7848,0,0,0,0,0,0,0,0,186.09092,187.28907,0,0,0,0,0,0,0,0,183.26998,184.59031,0,0,0,0,0,0,0,0,184.72064,185.86737,0,0,0,0,0,0,0,0,184.86288,186.251,0,0,0,0,0,0,0,0,181.94219,183.20752,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00406,0.00455,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.00397,0.00446,0,0,0,0,0,0,0,0,0.0041,0.0046,0,0,0,0,0,0,0,0,0.00402,0.00451,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00409,0.00459,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01247,0.01449,0,0,0,0,0,0,0,0,0.01241,0.01442,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01242,0.01443,0,0,0,0,0,0,0,0,0.01245,0.01447,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01251,0.01453,0,0,0,0,0,0,0,0,0.02865,0.04196,0,0,0,0,0,0,0,0,0.02758,0.0405,0,0,0,0,0,0,0,0,0.02838,0.0439,0,0,0,0,0,0,0,0,0.02961,0.04654,0,0,0,0,0,0,0,0,0.02218,0.03674,0,0,0,0,0,0,0,0,0.02445,0.03983,0,0,0,0,0,0,0,0,0.02262,0.03713,0,0,0,0,0,0,0,0,0.0261,0.04132,0,0,0,0,0,0,0,0,0.0226,0.0357,0,0,0,0,0,0.00043,0.00067,0.0009,0.00253,0.00164,0,0,0,0,0,0.00041,0.00065,0.00085,0.00239,0.00155,0,0,0,0,0,0.00041,0.00066,0.00087,0.00246,0.00161,0,0,0,0,0,0.00043,0.00068,0.00091,0.00257,0.00166,0,0,0,0,0,0.00036,0.00056,0.00073,0.00202,0.00133,0,0,0,0,0,0.00037,0.00058,0.00075,0.00208,0.00137,0,0,0,0,0,0.00035,0.00054,0.00069,0.00195,0.00133,0,0,0,0,0,0.00038,0.00059,0.00078,0.00218,0.00144,0,0,0,0,0,0.00034,0.00052,0.00068,0.00194,0.00135,0,0,0,0,0,0.01318,0.01374,0.01426,0.0465,0.03217,0,0,0,0,0,0.01356,0.01408,0.01456,0.04754,0.03294,0,0,0,0,0,0.01478,0.01532,0.01581,0.05176,0.03591,0,0,0,0,0,0.01235,0.01292,0.01344,0.04378,0.03024,0,0,0,0,0,0.01439,0.01483,0.0152,0.04976,0.0346,0,0,0,0,0,0.01312,0.01357,0.01396,0.04563,0.0317,0,0,0,0,0,0.01314,0.01354,0.01388,0.04552,0.03174,0,0,0,0,0,0.01384,0.01431,0.01472,0.04818,0.03348,0,0,0,0,0,0.01368,0.01408,0.01442,0.04737,0.0331,0,0,0,0,0,0.00241,0.00291,0.00336,0.01031,0.00688,0,0,0,0,0,0.00243,0.00289,0.00331,0.01017,0.00682,0,0,0,0,0,0.00259,0.00307,0.00351,0.01085,0.00731,0,0,0,0,0,0.00232,0.00282,0.00329,0.01006,0.00669,0,0,0,0,0,0.00244,0.00282,0.00315,0.0097,0.00659,0,0,0,0,0,0.00229,0.00269,0.00303,0.00932,0.00631,0,0,0,0,0,0.00225,0.00261,0.00291,0.00903,0.00622,0,0,0,0,0,0.0024,0.00282,0.00318,0.00983,0.00667,0,0,0,0,0,0.00231,0.00266,0.00296,0.00925,0.00643,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00177,0.00178,0,0,0,0,0,0,0,0,0.00179,0.00181,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00179,0.0018,0,0,0,0,0,0,0,0,0.00176,0.00178,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00175,0.00176,0,0,0,0,0,0,0,0,0.04196,0.05531,0,0,0,0,0,0,0,0,0.03563,0.04763,0,0,0,0,0,0,0,0,0.04123,0.05611,0,0,0,0,0,0,0,0,0.04582,0.06211,0,0,0,0,0,0,0,0,0.01838,0.02842,0,0,0,0,0,0,0,0,0.02276,0.03397,0,0,0,0,0,0,0,0,0.01715,0.02679,0,0,0,0,0,0,0,0,0.02684,0.03823,0,0,0,0,0,0,0,0,0.01679,0.0254 +Pickup,PH20E,2050,0,0,0,0,0,0,0,0,0,0.01279,0,0,0,0,0,0,0,0,0,0.01316,0,0,0,0,0,0,0,0,0,0.0144,0,0,0,0,0,0,0,0,0,0.01196,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01273,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01345,0,0,0,0,0,0,0,0,0,0.01333,0,0,0,0,0,0,0,0,0,0.01411,0,0,0,0,0,0,0,0,0,0.01214,0,0,0,0,0,0,0,0,0,0.01388,0,0,0,0,0,0,0,0,0,0.01536,0,0,0,0,0,0,0,0,0,0.00671,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00636,0,0,0,0,0,0,0,0,0,0.00938,0,0,0,0,0,0,0,0,0,0.00622,0,0,0,0,0,0,0,0,0,0.67941,0,0,0,0,0,0,0,0,0,0.64926,0,0,0,0,0,0,0,0,0,0.68699,0,0,0,0,0,0,0,0,0,0.74487,0,0,0,0,0,0,0,0,0,0.56135,0,0,0,0,0,0,0,0,0,0.59096,0,0,0,0,0,0,0,0,0,0.57922,0,0,0,0,0,0,0,0,0,0.61401,0,0,0,0,0,0,0,0,0,0.5243,0,0,0,0,0,0,0,0,0,182.19948,0,0,0,0,0,0,0,0,0,183.52025,0,0,0,0,0,0,0,0,0,186.16295,0,0,0,0,0,0,0,0,0,182.05875,0,0,0,0,0,0,0,0,0,186.09083,0,0,0,0,0,0,0,0,0,183.26987,0,0,0,0,0,0,0,0,0,184.7207,0,0,0,0,0,0,0,0,0,184.86272,0,0,0,0,0,0,0,0,0,181.94211,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00406,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.00397,0,0,0,0,0,0,0,0,0,0.0041,0,0,0,0,0,0,0,0,0,0.00402,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00409,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01247,0,0,0,0,0,0,0,0,0,0.01241,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01245,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01251,0,0,0,0,0,0,0,0,0,0.02865,0,0,0,0,0,0,0,0,0,0.02758,0,0,0,0,0,0,0,0,0,0.02838,0,0,0,0,0,0,0,0,0,0.02961,0,0,0,0,0,0,0,0,0,0.02218,0,0,0,0,0,0,0,0,0,0.02445,0,0,0,0,0,0,0,0,0,0.02262,0,0,0,0,0,0,0,0,0,0.0261,0,0,0,0,0,0,0,0,0,0.0226,0,0,0,0,0,0,0.00042,0.00067,0.0009,0.00242,0,0,0,0,0,0,0.00041,0.00064,0.00085,0.00229,0,0,0,0,0,0,0.00041,0.00065,0.00087,0.00235,0,0,0,0,0,0,0.00043,0.00068,0.00091,0.00246,0,0,0,0,0,0,0.00036,0.00056,0.00073,0.00193,0,0,0,0,0,0,0.00037,0.00057,0.00075,0.00199,0,0,0,0,0,0,0.00034,0.00053,0.00069,0.00187,0,0,0,0,0,0,0.00038,0.00059,0.00078,0.00209,0,0,0,0,0,0,0.00034,0.00052,0.00068,0.00186,0,0,0,0,0,0,0.01318,0.01373,0.01426,0.04625,0,0,0,0,0,0,0.01356,0.01407,0.01456,0.04731,0,0,0,0,0,0,0.01478,0.01531,0.01582,0.05151,0,0,0,0,0,0,0.01234,0.0129,0.01345,0.04353,0,0,0,0,0,0,0.01439,0.01482,0.0152,0.04958,0,0,0,0,0,0,0.01312,0.01356,0.01396,0.04544,0,0,0,0,0,0,0.01314,0.01354,0.01389,0.04535,0,0,0,0,0,0,0.01384,0.0143,0.01472,0.04798,0,0,0,0,0,0,0.01368,0.01408,0.01442,0.0472,0,0,0,0,0,0,0.00241,0.0029,0.00337,0.01009,0,0,0,0,0,0,0.00242,0.00288,0.00331,0.00996,0,0,0,0,0,0,0.00259,0.00306,0.00351,0.01063,0,0,0,0,0,0,0.00232,0.00281,0.0033,0.00984,0,0,0,0,0,0,0.00244,0.00281,0.00315,0.00954,0,0,0,0,0,0,0.00229,0.00268,0.00303,0.00915,0,0,0,0,0,0,0.00225,0.0026,0.00291,0.00889,0,0,0,0,0,0,0.0024,0.00281,0.00319,0.00965,0,0,0,0,0,0,0.0023,0.00265,0.00296,0.0091,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00177,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00176,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.04196,0,0,0,0,0,0,0,0,0,0.03563,0,0,0,0,0,0,0,0,0,0.04123,0,0,0,0,0,0,0,0,0,0.04582,0,0,0,0,0,0,0,0,0,0.01838,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.01715,0,0,0,0,0,0,0,0,0,0.02684,0,0,0,0,0,0,0,0,0,0.01679 +Pickup,PH20G,1990,0.05159,0,0,0,0,0,0,0,0,0,0.04625,0,0,0,0,0,0,0,0,0,0.05229,0,0,0,0,0,0,0,0,0,0.05431,0,0,0,0,0,0,0,0,0,0.03205,0,0,0,0,0,0,0,0,0,0.0344,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.03883,0,0,0,0,0,0,0,0,0,0.03014,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0,0,0,0,0,0,0.00044,0.0007,0.00093,0.06054,0,0,0,0,0,0,0.00042,0.00067,0.00088,0.06752,0,0,0,0,0,0,0.00044,0.00069,0.00091,0.07436,0,0,0,0,0,0,0.00045,0.00071,0.00094,0.03611,0,0,0,0,0,0,0.00037,0.00057,0.00074,0.04223,0,0,0,0,0,0,0.00038,0.00059,0.00076,0.03468,0,0,0,0,0,0,0.00037,0.00057,0.00073,0.04801,0,0,0,0,0,0,0.0004,0.00062,0.00081,0.03431,0,0,0,0,0,0,0.00038,0.00058,0.00075,0.18397,0,0,0,0,0,0,0.01322,0.01379,0.01432,0.16475,0,0,0,0,0,0,0.01358,0.01412,0.0146,0.18469,0,0,0,0,0,0,0.01483,0.01539,0.01591,0.19469,0,0,0,0,0,0,0.01238,0.01296,0.01351,0.11125,0,0,0,0,0,0,0.0144,0.01483,0.0152,0.12231,0,0,0,0,0,0,0.01313,0.01358,0.01398,0.105,0,0,0,0,0,0,0.01318,0.0136,0.01396,0.1372,0,0,0,0,0,0,0.01387,0.01435,0.01478,0.10482,0,0,0,0,0,0,0.01375,0.01419,0.01455,0.14116,0,0,0,0,0,0,0.00244,0.00295,0.00342,0.12341,0,0,0,0,0,0,0.00245,0.00292,0.00335,0.13892,0,0,0,0,0,0,0.00264,0.00313,0.00359,0.15215,0,0,0,0,0,0,0.00235,0.00287,0.00335,0.07439,0,0,0,0,0,0,0.00245,0.00283,0.00315,0.08646,0,0,0,0,0,0,0.00231,0.00271,0.00305,0.07102,0,0,0,0,0,0,0.00229,0.00267,0.00298,0.09841,0,0,0,0,0,0,0.00243,0.00286,0.00324,0.06986,0,0,0,0,0,0,0.00237,0.00275,0.00308,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Pickup,PH20G,1995,0.02217,0.03584,0,0,0,0,0,0,0,0,0.02116,0.0328,0,0,0,0,0,0,0,0,0.02355,0.03691,0,0,0,0,0,0,0,0,0.02217,0.03709,0,0,0,0,0,0,0,0,0.01834,0.02464,0,0,0,0,0,0,0,0,0.01795,0.02551,0,0,0,0,0,0,0,0,0.01687,0.02279,0,0,0,0,0,0,0,0,0.01958,0.02848,0,0,0,0,0,0,0,0,0.01739,0.02326,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0,0,0,0,0,0,0.00044,0.0007,0.01643,0.03584,0,0,0,0,0,0,0.00042,0.00067,0.01821,0.03995,0,0,0,0,0,0,0.00044,0.00069,0.01995,0.04383,0,0,0,0,0,0,0.00045,0.00071,0.00987,0.02128,0,0,0,0,0,0,0.00037,0.00057,0.01148,0.02483,0,0,0,0,0,0,0.00038,0.00059,0.00952,0.02044,0,0,0,0,0,0,0.00037,0.00057,0.01307,0.02838,0,0,0,0,0,0,0.0004,0.00062,0.00949,0.02035,0,0,0,0,0,0,0.00038,0.00058,0.07,0.12017,0,0,0,0,0,0,0.01321,0.01379,0.06572,0.10912,0,0,0,0,0,0,0.01358,0.01412,0.07288,0.12157,0,0,0,0,0,0,0.01483,0.01539,0.07109,0.12518,0,0,0,0,0,0,0.01237,0.01296,0.05325,0.07821,0,0,0,0,0,0,0.0144,0.01483,0.0539,0.08322,0,0,0,0,0,0,0.01313,0.01358,0.04958,0.0735,0,0,0,0,0,0,0.01318,0.0136,0.05908,0.09317,0,0,0,0,0,0,0.01387,0.01435,0.0506,0.07435,0,0,0,0,0,0,0.01375,0.01419,0.04035,0.08473,0,0,0,0,0,0,0.00244,0.00295,0.03582,0.07421,0,0,0,0,0,0,0.00245,0.00292,0.04002,0.08309,0,0,0,0,0,0,0.00264,0.00313,0.04282,0.09067,0,0,0,0,0,0,0.00235,0.00287,0.02309,0.04517,0,0,0,0,0,0,0.00244,0.00283,0.02594,0.05189,0,0,0,0,0,0,0.00231,0.0027,0.022,0.04316,0,0,0,0,0,0,0.00229,0.00267,0.02931,0.05947,0,0,0,0,0,0,0.00243,0.00286,0.02191,0.04291,0,0,0,0,0,0,0.00237,0.00275,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Pickup,PH20G,2000,0.01703,0.01926,0.02838,0,0,0,0,0,0,0,0.01678,0.01868,0.02643,0,0,0,0,0,0,0,0.0185,0.02065,0.02956,0,0,0,0,0,0,0,0.01652,0.01892,0.02889,0,0,0,0,0,0,0,0.01595,0.01699,0.02116,0,0,0,0,0,0,0,0.01507,0.01631,0.02133,0,0,0,0,0,0,0,0.01463,0.01562,0.01954,0,0,0,0,0,0,0,0.01622,0.01768,0.02359,0,0,0,0,0,0,0,0.0152,0.01619,0.02008,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0,0,0,0,0,0,0.00044,0.00911,0.01271,0.02516,0,0,0,0,0,0,0.00042,0.00993,0.01389,0.02782,0,0,0,0,0,0,0.00044,0.01083,0.01516,0.03057,0,0,0,0,0,0,0.00045,0.00552,0.00765,0.01489,0,0,0,0,0,0,0.00037,0.00634,0.00881,0.01733,0,0,0,0,0,0,0.00038,0.00539,0.00747,0.01442,0,0,0,0,0,0,0.00037,0.00727,0.01012,0.0199,0,0,0,0,0,0,0.0004,0.00549,0.0076,0.0145,0,0,0,0,0,0,0.00038,0.05092,0.05981,0.09255,0,0,0,0,0,0,0.01321,0.04911,0.05679,0.08505,0,0,0,0,0,0,0.01358,0.05393,0.06231,0.09414,0,0,0,0,0,0,0.01483,0.05013,0.05952,0.09469,0,0,0,0,0,0,0.01237,0.04353,0.04796,0.06411,0,0,0,0,0,0,0.0144,0.04236,0.0475,0.06659,0,0,0,0,0,0,0.01313,0.04039,0.04473,0.06009,0,0,0,0,0,0,0.01318,0.04598,0.05204,0.07399,0,0,0,0,0,0,0.01387,0.04175,0.04618,0.06143,0,0,0,0,0,0,0.01375,0.02346,0.03133,0.0603,0,0,0,0,0,0,0.00244,0.02112,0.02792,0.05292,0,0,0,0,0,0,0.00245,0.02325,0.03066,0.05882,0,0,0,0,0,0,0.00264,0.02428,0.03259,0.0637,0,0,0,0,0,0,0.00235,0.01449,0.01841,0.0327,0,0,0,0,0,0,0.00244,0.01574,0.02029,0.03717,0,0,0,0,0,0,0.00231,0.01386,0.01771,0.0313,0,0,0,0,0,0,0.00229,0.01772,0.02308,0.0425,0,0,0,0,0,0,0.00243,0.01407,0.01799,0.03149,0,0,0,0,0,0,0.00237,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Pickup,PH20G,2005,0.01375,0.01467,0.01584,0.02193,0,0,0,0,0,0,0.01402,0.01476,0.01575,0.02097,0,0,0,0,0,0,0.01553,0.01572,0.01657,0.02315,0,0,0,0,0,0,0.01311,0.01392,0.01515,0.02181,0,0,0,0,0,0,0.01449,0.01498,0.01561,0.01835,0,0,0,0,0,0,0.01336,0.01372,0.01436,0.01785,0,0,0,0,0,0,0.01323,0.01365,0.01421,0.01679,0,0,0,0,0,0,0.01415,0.0146,0.01533,0.01944,0,0,0,0,0,0,0.0137,0.01404,0.01452,0.01729,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.03294,0.00515,0.00701,0.01693,0,0,0,0,0,0,0.0289,0.00457,0.00622,0.01488,0,0,0,0,0,0,0.03236,0.00422,0.00569,0.01617,0,0,0,0,0,0,0.03538,0.00522,0.00713,0.01775,0,0,0,0,0,0,0.01753,0.00322,0.00439,0.00929,0,0,0,0,0,0,0.02041,0.00329,0.00448,0.01052,0,0,0,0,0,0,0.01685,0.00303,0.00413,0.00886,0,0,0,0,0,0,0.02311,0.00364,0.00495,0.01193,0,0,0,0,0,0,0.01655,0.00275,0.00372,0.00883,0,0,0,0,0,0,0.11441,0.03964,0.04388,0.06619,0,0,0,0,0,0,0.10654,0.03932,0.04303,0.06244,0,0,0,0,0,0,0.11903,0.04134,0.04465,0.06832,0,0,0,0,0,0,0.11775,0.03793,0.04225,0.06626,0,0,0,0,0,0,0.08387,0.03857,0.04115,0.05192,0,0,0,0,0,0,0.08619,0.03572,0.03833,0.05172,0,0,0,0,0,0,0.0782,0.03534,0.0377,0.04803,0,0,0,0,0,0,0.09466,0.03814,0.04099,0.05653,0,0,0,0,0,0,0.07905,0.03599,0.03806,0.04924,0,0,0,0,0,0,0.07037,0.01348,0.01723,0.03697,0,0,0,0,0,0,0.06235,0.01246,0.01574,0.03291,0,0,0,0,0,0,0.07035,0.01211,0.01504,0.03598,0,0,0,0,0,0,0.07548,0.01347,0.0173,0.03854,0,0,0,0,0,0,0.03987,0.0101,0.01238,0.02191,0,0,0,0,0,0,0.04519,0.00986,0.01217,0.02401,0,0,0,0,0,0,0.03793,0.00939,0.01148,0.02062,0,0,0,0,0,0,0.05093,0.01078,0.01331,0.02705,0,0,0,0,0,0,0.03727,0.00897,0.01081,0.0207,0,0,0,0,0,0,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Pickup,PH20G,2010,0,0.01336,0.01421,0.01519,0.01971,0,0,0,0,0,0,0.01364,0.01438,0.01526,0.01911,0,0,0,0,0,0,0.01472,0.01535,0.01665,0.02094,0,0,0,0,0,0,0.01256,0.01346,0.01453,0.01939,0,0,0,0,0,0,0.01433,0.01483,0.01533,0.01748,0,0,0,0,0,0,0.01303,0.01353,0.0142,0.01672,0,0,0,0,0,0,0.01305,0.01351,0.01394,0.0159,0,0,0,0,0,0,0.01379,0.01435,0.01511,0.01805,0,0,0,0,0,0,0.01352,0.0139,0.01445,0.01639,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0.00804,0.01953,0.00327,0.00461,0.01201,0,0,0,0,0,0.00704,0.01717,0.00303,0.00428,0.01072,0,0,0,0,0,0.0078,0.01875,0.00272,0.00443,0.01144,0,0,0,0,0,0.00855,0.02075,0.00333,0.00477,0.01253,0,0,0,0,0,0.00423,0.01068,0.00258,0.00343,0.00728,0,0,0,0,0,0.00492,0.01216,0.00251,0.00357,0.00798,0,0,0,0,0,0.00408,0.01025,0.00244,0.00323,0.00686,0,0,0,0,0,0.0056,0.01373,0.0026,0.00377,0.00884,0,0,0,0,0,0.00407,0.01005,0.00217,0.00314,0.00677,0,0,0,0,0,0.03,0.08443,0.03598,0.03912,0.05581,0,0,0,0,0,0.02817,0.08032,0.03631,0.03921,0.05368,0,0,0,0,0,0.03124,0.08807,0.03841,0.04245,0.05828,0,0,0,0,0,0.03047,0.08471,0.03419,0.03758,0.05519,0,0,0,0,0,0.02282,0.06866,0.03732,0.03921,0.04771,0,0,0,0,0,0.0231,0.06772,0.0342,0.03658,0.04637,0,0,0,0,0,0.02125,0.06362,0.03415,0.03588,0.04384,0,0,0,0,0,0.02532,0.07375,0.03607,0.03873,0.05002,0,0,0,0,0,0.02169,0.06493,0.03485,0.037,0.04493,0,0,0,0,0,0.01729,0.04386,0.01025,0.01303,0.02779,0,0,0,0,0,0.01535,0.03916,0.00979,0.01236,0.02516,0,0,0,0,0,0.01715,0.04297,0.00952,0.01309,0.0271,0,0,0,0,0,0.01835,0.04626,0.01017,0.01317,0.02875,0,0,0,0,0,0.0099,0.02642,0.00899,0.01066,0.01818,0,0,0,0,0,0.01112,0.02885,0.00851,0.01062,0.01928,0,0,0,0,0,0.00943,0.02504,0.00834,0.00987,0.01691,0,0,0,0,0,0.01256,0.03244,0.00895,0.0113,0.02129,0,0,0,0,0,0.00939,0.02478,0.00796,0.00987,0.01689,0,0,0,0,0,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Pickup,PH20G,2015,0,0,0.01312,0.01379,0.01464,0.01733,0,0,0,0,0,0,0.01346,0.01407,0.01484,0.01716,0,0,0,0,0,0,0.01456,0.01535,0.01615,0.01867,0,0,0,0,0,0,0.0123,0.01301,0.0139,0.01677,0,0,0,0,0,0,0.01424,0.01466,0.01518,0.01657,0,0,0,0,0,0,0.01294,0.01344,0.01401,0.01559,0,0,0,0,0,0,0.01298,0.01336,0.01383,0.01507,0,0,0,0,0,0,0.01366,0.01421,0.01484,0.01664,0,0,0,0,0,0,0.01346,0.01389,0.01435,0.01555,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0.00445,0.00622,0.01402,0.00281,0.00409,0.00789,0,0,0,0,0.0039,0.00545,0.01235,0.00267,0.00387,0.00727,0,0,0,0,0.00426,0.00595,0.01334,0.00272,0.00396,0.00756,0,0,0,0,0.00464,0.0065,0.01476,0.00285,0.00417,0.00814,0,0,0,0,0.00236,0.00328,0.0078,0.00232,0.0033,0.00561,0,0,0,0,0.00272,0.00378,0.0088,0.00237,0.00339,0.0059,0,0,0,0,0.00231,0.0032,0.00753,0.00221,0.00313,0.00526,0,0,0,0,0.00312,0.00434,0.00992,0.00245,0.00351,0.0063,0,0,0,0,0.00235,0.00326,0.00743,0.00215,0.00305,0.00514,0,0,0,0,0.02182,0.02563,0.07188,0.03478,0.03774,0.04665,0,0,0,0,0.02105,0.02434,0.06943,0.03541,0.03814,0.04603,0,0,0,0,0.02311,0.0267,0.0758,0.03836,0.0412,0.04962,0,0,0,0,0.02149,0.02551,0.07085,0.03293,0.03598,0.04535,0,0,0,0,0.01866,0.02056,0.06228,0.03671,0.03885,0.04404,0,0,0,0,0.01816,0.02036,0.06025,0.03385,0.03609,0.04181,0,0,0,0,0.01731,0.01917,0.05757,0.03361,0.0356,0.04035,0,0,0,0,0.0197,0.0223,0.06509,0.03566,0.03804,0.04442,0,0,0,0,0.01789,0.01979,0.05913,0.03479,0.03673,0.04139,0,0,0,0,0.01005,0.01343,0.03276,0.00919,0.0118,0.01969,0,0,0,0,0.00905,0.01196,0.02953,0.009,0.01142,0.01839,0,0,0,0,0.00997,0.01314,0.03212,0.00948,0.01199,0.01943,0,0,0,0,0.0104,0.01397,0.034,0.00906,0.01175,0.02005,0,0,0,0,0.00621,0.00789,0.02078,0.00846,0.01035,0.01493,0,0,0,0,0.00675,0.00869,0.02224,0.0082,0.01019,0.01525,0,0,0,0,0.00594,0.00759,0.01969,0.00786,0.00962,0.01383,0,0,0,0,0.00759,0.00989,0.02479,0.00859,0.0107,0.01634,0,0,0,0,0.00603,0.00771,0.01965,0.00792,0.00963,0.01376,0,0,0,0,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Pickup,PH20G,2020,0,0,0,0.01304,0.01359,0.01415,0.01607,0,0,0,0,0,0,0.01339,0.01389,0.0144,0.01609,0,0,0,0,0,0,0.01463,0.01515,0.01569,0.0175,0,0,0,0,0,0,0.01222,0.01279,0.01338,0.01541,0,0,0,0,0,0,0.01418,0.01454,0.01488,0.01598,0,0,0,0,0,0,0.01292,0.01331,0.01368,0.01491,0,0,0,0,0,0,0.01292,0.01324,0.01355,0.01454,0,0,0,0,0,0,0.01365,0.01406,0.01448,0.01584,0,0,0,0,0,0,0.01346,0.01378,0.01408,0.01504,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0.00138,0.00221,0.00301,0.00876,0.00245,0.00326,0.00585,0,0,0,0.00127,0.00196,0.00266,0.00783,0.00234,0.0031,0.00548,0,0,0,0.00147,0.00181,0.00244,0.00839,0.00237,0.00316,0.00564,0,0,0,0.00151,0.00224,0.00306,0.00913,0.00248,0.00332,0.006,0,0,0,0.00088,0.00138,0.00188,0.00526,0.00204,0.00265,0.00447,0,0,0,0.00099,0.00141,0.00192,0.00581,0.00208,0.00272,0.00464,0,0,0,0.00085,0.0013,0.00177,0.00502,0.00194,0.00251,0.0042,0,0,0,0.00109,0.00156,0.00212,0.00645,0.00215,0.00282,0.00487,0,0,0,0.00079,0.00118,0.0016,0.00497,0.00189,0.00245,0.00409,0,0,0,0.01524,0.01699,0.01881,0.06025,0.03398,0.03588,0.04203,0,0,0,0.0154,0.01685,0.01844,0.05946,0.03467,0.03642,0.04201,0,0,0,0.01709,0.01772,0.01914,0.06485,0.0376,0.03942,0.04528,0,0,0,0.0147,0.01626,0.01811,0.05835,0.0321,0.03406,0.04047,0,0,0,0.01551,0.01653,0.01763,0.05675,0.03612,0.03747,0.04157,0,0,0,0.01447,0.01531,0.01643,0.05371,0.03323,0.03465,0.03903,0,0,0,0.01423,0.01514,0.01616,0.05211,0.03304,0.0343,0.03806,0,0,0,0.01537,0.01635,0.01757,0.05748,0.03501,0.03653,0.04125,0,0,0,0.01463,0.01542,0.01631,0.05387,0.03425,0.03547,0.03914,0,0,0,0.00423,0.00578,0.00739,0.02246,0.00848,0.01016,0.0156,0,0,0,0.00405,0.00534,0.00675,0.02071,0.00835,0.0099,0.01484,0,0,0,0.00463,0.00519,0.00644,0.02243,0.0088,0.01041,0.01559,0,0,0,0.0044,0.00577,0.00742,0.02294,0.00832,0.01006,0.01573,0,0,0,0.00342,0.00433,0.0053,0.01588,0.00793,0.00912,0.01275,0,0,0,0.00349,0.00423,0.00521,0.01646,0.00766,0.00892,0.01279,0,0,0,0.00321,0.00402,0.00492,0.01486,0.00736,0.00847,0.0118,0,0,0,0.00375,0.00462,0.0057,0.01805,0.00802,0.00936,0.01354,0,0,0,0.00314,0.00385,0.00463,0.01499,0.00744,0.00852,0.01177,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Pickup,PH20G,2025,0,0,0,0,0.01277,0.01311,0.01347,0.01498,0,0,0,0,0,0,0.01315,0.01346,0.01378,0.01513,0,0,0,0,0,0,0.01438,0.0147,0.01504,0.01647,0,0,0,0,0,0,0.01194,0.01229,0.01267,0.01424,0,0,0,0,0,0,0.01399,0.01422,0.01444,0.01534,0,0,0,0,0,0,0.01272,0.01296,0.01321,0.0142,0,0,0,0,0,0,0.01275,0.01295,0.01315,0.01396,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.01506,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01449,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0.00083,0.0014,0.00198,0.00614,0.00158,0.00211,0.00421,0,0,0,0.00077,0.0013,0.00183,0.00555,0.00151,0.002,0.00396,0,0,0,0.0007,0.00117,0.0019,0.00587,0.00153,0.00204,0.00406,0,0,0,0.00084,0.00143,0.00204,0.00638,0.0016,0.00214,0.0043,0,0,0,0.00067,0.0011,0.00147,0.00397,0.00132,0.00172,0.00326,0,0,0,0.00065,0.00108,0.00153,0.00428,0.00135,0.00176,0.00337,0,0,0,0.00064,0.00104,0.00139,0.00375,0.00126,0.00163,0.00305,0,0,0,0.00067,0.00112,0.00162,0.00467,0.00139,0.00182,0.00353,0,0,0,0.00057,0.00093,0.00135,0.00369,0.00123,0.00159,0.003,0,0,0,0.01411,0.01542,0.01677,0.05469,0.03207,0.0333,0.03825,0,0,0,0.01438,0.01556,0.0168,0.05465,0.03287,0.034,0.03854,0,0,0,0.01541,0.01646,0.01819,0.05948,0.03575,0.03693,0.04166,0,0,0,0.01331,0.01465,0.0161,0.05247,0.03015,0.03141,0.03652,0,0,0,0.01506,0.01599,0.0168,0.05404,0.0346,0.03548,0.03892,0,0,0,0.01374,0.01466,0.01568,0.05049,0.03166,0.03259,0.03624,0,0,0,0.01376,0.01463,0.01538,0.04945,0.03161,0.03242,0.03559,0,0,0,0.01449,0.01546,0.0166,0.05373,0.03339,0.03437,0.03828,0,0,0,0.01417,0.01493,0.01586,0.05118,0.03285,0.03365,0.03677,0,0,0,0.00323,0.00439,0.00558,0.01755,0.00679,0.00787,0.01226,0,0,0,0.00315,0.0042,0.0053,0.01645,0.00675,0.00775,0.01177,0,0,0,0.00315,0.00408,0.00561,0.01767,0.00717,0.00821,0.01239,0,0,0,0.00317,0.00436,0.00564,0.01774,0.0066,0.00771,0.01223,0,0,0,0.00303,0.00385,0.00457,0.01349,0.00659,0.00736,0.01041,0,0,0,0.00283,0.00365,0.00455,0.01361,0.00627,0.00709,0.01032,0,0,0,0.0028,0.00357,0.00423,0.0125,0.00609,0.00681,0.00961,0,0,0,0.00298,0.00384,0.00484,0.01474,0.00658,0.00744,0.0109,0,0,0,0.00274,0.00341,0.00423,0.01262,0.0062,0.0069,0.00967,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Pickup,PH20G,2030,0,0,0,0,0,0.01277,0.01311,0.01346,0.01449,0,0,0,0,0,0,0.01315,0.01346,0.01377,0.01469,0,0,0,0,0,0,0.01438,0.0147,0.01503,0.016,0,0,0,0,0,0,0.01194,0.01229,0.01266,0.01373,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01504,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01387,0,0,0,0,0,0,0.01275,0.01295,0.01314,0.01369,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.0147,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01422,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0,0.00071,0.0012,0.00175,0.00438,0.00157,0.00209,0.00348,0,0,0,0.00067,0.00115,0.00166,0.00407,0.00151,0.00199,0.00327,0,0,0,0.00061,0.00117,0.0017,0.0042,0.00153,0.00203,0.00336,0,0,0,0.00071,0.00122,0.00179,0.00449,0.0016,0.00212,0.00355,0,0,0,0.00061,0.001,0.00141,0.00325,0.00132,0.00171,0.0027,0,0,0,0.00059,0.00102,0.00145,0.00339,0.00134,0.00175,0.0028,0,0,0,0.00058,0.00095,0.00134,0.00306,0.00125,0.00162,0.00254,0,0,0,0.0006,0.00105,0.00151,0.00358,0.00139,0.00181,0.00293,0,0,0,0.00052,0.00092,0.00131,0.00299,0.00122,0.00159,0.00249,0,0,0,0.01381,0.01491,0.01617,0.05076,0.03206,0.03327,0.03655,0,0,0,0.01413,0.01518,0.01635,0.05136,0.03286,0.03397,0.03698,0,0,0,0.0152,0.01644,0.01766,0.05575,0.03574,0.0369,0.04004,0,0,0,0.01297,0.01411,0.01542,0.04825,0.03014,0.03137,0.03478,0,0,0,0.01492,0.01573,0.01665,0.05246,0.0346,0.03546,0.03771,0,0,0,0.01359,0.01451,0.01547,0.04853,0.03166,0.03257,0.03496,0,0,0,0.01363,0.0144,0.01526,0.04795,0.0316,0.0324,0.03447,0,0,0,0.01431,0.01528,0.0163,0.05133,0.03338,0.03435,0.03691,0,0,0,0.01406,0.01491,0.01574,0.04966,0.03285,0.03364,0.03566,0,0,0,0.00297,0.00394,0.00506,0.01407,0.00678,0.00785,0.01075,0,0,0,0.00293,0.00386,0.00489,0.01354,0.00674,0.00772,0.01039,0,0,0,0.00296,0.00406,0.00514,0.01438,0.00716,0.00818,0.01096,0,0,0,0.00287,0.00388,0.00504,0.014,0.00659,0.00767,0.01069,0,0,0,0.0029,0.00362,0.00443,0.01209,0.00658,0.00734,0.00933,0,0,0,0.00271,0.00352,0.00437,0.01188,0.00627,0.00707,0.00919,0,0,0,0.00269,0.00337,0.00412,0.01118,0.00609,0.00679,0.00863,0,0,0,0.00282,0.00368,0.00458,0.01261,0.00657,0.00743,0.0097,0,0,0,0.00264,0.00339,0.00413,0.01128,0.0062,0.0069,0.00868,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Pickup,PH20G,2035,0,0,0,0,0,0,0.01277,0.0131,0.01347,0.01432,0,0,0,0,0,0,0.01315,0.01345,0.01378,0.01453,0,0,0,0,0,0,0.01437,0.01469,0.01503,0.01584,0,0,0,0,0,0,0.01194,0.01228,0.01266,0.01356,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01494,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01376,0,0,0,0,0,0,0.01275,0.01294,0.01315,0.0136,0,0,0,0,0,0,0.01344,0.01369,0.01396,0.01457,0,0,0,0,0,0,0.0133,0.01349,0.01369,0.01412,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0,0,0,0.00065,0.00105,0.0014,0.0035,0.00156,0.0021,0.00323,0,0,0,0.00062,0.001,0.00133,0.0033,0.0015,0.00199,0.00303,0,0,0,0.00063,0.00102,0.00135,0.00338,0.00152,0.00203,0.00311,0,0,0,0.00065,0.00106,0.00142,0.00357,0.00158,0.00213,0.0033,0,0,0,0.00055,0.00087,0.00114,0.00276,0.00131,0.00171,0.00251,0,0,0,0.00056,0.00089,0.00116,0.00284,0.00134,0.00175,0.0026,0,0,0,0.00052,0.00083,0.00108,0.0026,0.00125,0.00162,0.00236,0,0,0,0.00057,0.00092,0.00121,0.00297,0.00138,0.00182,0.00271,0,0,0,0.00051,0.00081,0.00105,0.00254,0.00122,0.00159,0.00231,0,0,0,0.01366,0.01456,0.01538,0.04877,0.03204,0.03328,0.03597,0,0,0,0.01401,0.01486,0.01561,0.04963,0.03284,0.03398,0.03644,0,0,0,0.01525,0.01611,0.01689,0.05389,0.03572,0.03691,0.03947,0,0,0,0.01284,0.01376,0.0146,0.04615,0.03011,0.03139,0.03419,0,0,0,0.01478,0.01548,0.01606,0.0514,0.03458,0.03546,0.03728,0,0,0,0.01352,0.01424,0.01485,0.04734,0.03164,0.03257,0.03452,0,0,0,0.01351,0.01416,0.0147,0.04696,0.03158,0.03241,0.03408,0,0,0,0.01425,0.015,0.01565,0.04996,0.03336,0.03436,0.03644,0,0,0,0.01404,0.01468,0.0152,0.0487,0.03284,0.03364,0.03526,0,0,0,0.00284,0.00363,0.00435,0.01231,0.00676,0.00786,0.01024,0,0,0,0.00283,0.00358,0.00424,0.01201,0.00672,0.00773,0.00991,0,0,0,0.003,0.00377,0.00446,0.01273,0.00714,0.00819,0.01046,0,0,0,0.00275,0.00357,0.00431,0.01214,0.00656,0.00769,0.01017,0,0,0,0.00278,0.0034,0.00391,0.01115,0.00657,0.00735,0.00896,0,0,0,0.00264,0.00328,0.00382,0.01082,0.00625,0.00708,0.0088,0,0,0,0.00258,0.00316,0.00363,0.0103,0.00607,0.0068,0.00828,0,0,0,0.00277,0.00344,0.00401,0.0114,0.00656,0.00743,0.00928,0,0,0,0.00262,0.00319,0.00365,0.01042,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Pickup,PH20G,2040,0,0,0,0,0,0,0,0.01276,0.0131,0.01347,0,0,0,0,0,0,0,0.01314,0.01345,0.01378,0,0,0,0,0,0,0,0.01437,0.01469,0.01504,0,0,0,0,0,0,0,0.01193,0.01228,0.01267,0,0,0,0,0,0,0,0.01399,0.01421,0.01444,0,0,0,0,0,0,0,0.01272,0.01296,0.0132,0,0,0,0,0,0,0,0.01274,0.01295,0.01315,0,0,0,0,0,0,0,0.01343,0.01369,0.01396,0,0,0,0,0,0,0,0.0133,0.01349,0.01369,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0,0,0,0,0.00043,0.00068,0.0009,0.00279,0.00157,0.0021,0,0,0,0,0.00041,0.00065,0.00086,0.00264,0.0015,0.002,0,0,0,0,0.00041,0.00066,0.00087,0.0027,0.00152,0.00204,0,0,0,0,0.00043,0.00069,0.00092,0.00283,0.00159,0.00214,0,0,0,0,0.00036,0.00057,0.00074,0.00223,0.00131,0.00172,0,0,0,0,0.00037,0.00058,0.00075,0.0023,0.00134,0.00176,0,0,0,0,0.00035,0.00054,0.0007,0.00211,0.00125,0.00163,0,0,0,0,0.00038,0.00059,0.00078,0.00239,0.00138,0.00182,0,0,0,0,0.00034,0.00053,0.00068,0.00207,0.00122,0.00159,0,0,0,0,0.01319,0.01375,0.01427,0.04713,0.03205,0.03329,0,0,0,0,0.01356,0.01409,0.01457,0.04813,0.03284,0.03399,0,0,0,0,0.01478,0.01532,0.01583,0.05232,0.03573,0.03692,0,0,0,0,0.01235,0.01292,0.01346,0.04443,0.03012,0.03141,0,0,0,0,0.0144,0.01483,0.0152,0.05025,0.03458,0.03547,0,0,0,0,0.01312,0.01357,0.01397,0.04613,0.03165,0.03258,0,0,0,0,0.01314,0.01355,0.01389,0.04589,0.03159,0.03242,0,0,0,0,0.01384,0.01431,0.01473,0.04868,0.03337,0.03436,0,0,0,0,0.01368,0.01408,0.01442,0.04768,0.03284,0.03364,0,0,0,0,0.00242,0.00291,0.00337,0.01086,0.00677,0.00787,0,0,0,0,0.00243,0.00289,0.00332,0.01069,0.00673,0.00775,0,0,0,0,0.0026,0.00307,0.00352,0.01135,0.00715,0.0082,0,0,0,0,0.00232,0.00283,0.00331,0.01063,0.00657,0.00771,0,0,0,0,0.00244,0.00282,0.00315,0.01014,0.00657,0.00736,0,0,0,0,0.00229,0.00269,0.00304,0.00975,0.00626,0.00709,0,0,0,0,0.00225,0.00261,0.00292,0.00936,0.00608,0.00681,0,0,0,0,0.0024,0.00282,0.00319,0.01027,0.00656,0.00744,0,0,0,0,0.00231,0.00266,0.00296,0.00952,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Pickup,PH20G,2045,0,0,0,0,0,0,0,0,0.01277,0.01311,0,0,0,0,0,0,0,0,0.01314,0.01345,0,0,0,0,0,0,0,0,0.01437,0.0147,0,0,0,0,0,0,0,0,0.01193,0.01229,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01272,0.01296,0,0,0,0,0,0,0,0,0.01274,0.01295,0,0,0,0,0,0,0,0,0.01343,0.01369,0,0,0,0,0,0,0,0,0.0133,0.01349,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0,0,0,0,0,0.00043,0.00067,0.0009,0.00248,0.00157,0,0,0,0,0,0.00041,0.00065,0.00085,0.00235,0.0015,0,0,0,0,0,0.00041,0.00066,0.00087,0.0024,0.00153,0,0,0,0,0,0.00043,0.00068,0.00091,0.00252,0.00159,0,0,0,0,0,0.00036,0.00056,0.00073,0.002,0.00132,0,0,0,0,0,0.00037,0.00058,0.00075,0.00205,0.00134,0,0,0,0,0,0.00035,0.00054,0.00069,0.00189,0.00125,0,0,0,0,0,0.00038,0.00059,0.00078,0.00213,0.00138,0,0,0,0,0,0.00034,0.00052,0.00068,0.00185,0.00122,0,0,0,0,0,0.01318,0.01374,0.01426,0.04641,0.03206,0,0,0,0,0,0.01356,0.01408,0.01456,0.04747,0.03285,0,0,0,0,0,0.01478,0.01532,0.01581,0.05163,0.03574,0,0,0,0,0,0.01235,0.01292,0.01344,0.04369,0.03013,0,0,0,0,0,0.01439,0.01483,0.0152,0.04974,0.03459,0,0,0,0,0,0.01312,0.01357,0.01396,0.04559,0.03165,0,0,0,0,0,0.01314,0.01354,0.01388,0.04542,0.0316,0,0,0,0,0,0.01384,0.01431,0.01472,0.0481,0.03338,0,0,0,0,0,0.01368,0.01408,0.01442,0.0472,0.03285,0,0,0,0,0,0.00241,0.00291,0.00336,0.01023,0.00678,0,0,0,0,0,0.00243,0.00289,0.00331,0.0101,0.00674,0,0,0,0,0,0.00259,0.00307,0.00351,0.01073,0.00716,0,0,0,0,0,0.00232,0.00282,0.00329,0.00998,0.00658,0,0,0,0,0,0.00244,0.00282,0.00315,0.00968,0.00658,0,0,0,0,0,0.00229,0.00269,0.00303,0.00927,0.00627,0,0,0,0,0,0.00225,0.00261,0.00291,0.00894,0.00609,0,0,0,0,0,0.0024,0.00282,0.00318,0.00975,0.00657,0,0,0,0,0,0.00231,0.00266,0.00296,0.0091,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Pickup,PH20G,2050,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01315,0,0,0,0,0,0,0,0,0,0.01437,0,0,0,0,0,0,0,0,0,0.01193,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01272,0,0,0,0,0,0,0,0,0,0.01274,0,0,0,0,0,0,0,0,0,0.01344,0,0,0,0,0,0,0,0,0,0.0133,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0,0,0,0,0,0,0.00042,0.00067,0.0009,0.00237,0,0,0,0,0,0,0.00041,0.00064,0.00085,0.00225,0,0,0,0,0,0,0.00041,0.00065,0.00087,0.00229,0,0,0,0,0,0,0.00043,0.00068,0.00091,0.00241,0,0,0,0,0,0,0.00036,0.00056,0.00073,0.00192,0,0,0,0,0,0,0.00037,0.00057,0.00075,0.00197,0,0,0,0,0,0,0.00034,0.00053,0.00069,0.00182,0,0,0,0,0,0,0.00038,0.00059,0.00078,0.00204,0,0,0,0,0,0,0.00034,0.00052,0.00068,0.00177,0,0,0,0,0,0,0.01318,0.01373,0.01426,0.04617,0,0,0,0,0,0,0.01356,0.01407,0.01456,0.04724,0,0,0,0,0,0,0.01478,0.01531,0.01582,0.0514,0,0,0,0,0,0,0.01234,0.0129,0.01345,0.04345,0,0,0,0,0,0,0.01439,0.01482,0.0152,0.04956,0,0,0,0,0,0,0.01312,0.01356,0.01396,0.0454,0,0,0,0,0,0,0.01314,0.01354,0.01389,0.04526,0,0,0,0,0,0,0.01384,0.0143,0.01472,0.0479,0,0,0,0,0,0,0.01368,0.01408,0.01442,0.04703,0,0,0,0,0,0,0.00241,0.0029,0.00337,0.01001,0,0,0,0,0,0,0.00242,0.00288,0.00331,0.0099,0,0,0,0,0,0,0.00259,0.00306,0.00351,0.01053,0,0,0,0,0,0,0.00232,0.00281,0.0033,0.00976,0,0,0,0,0,0,0.00244,0.00281,0.00315,0.00952,0,0,0,0,0,0,0.00229,0.00268,0.00303,0.00911,0,0,0,0,0,0,0.00225,0.0026,0.00291,0.00879,0,0,0,0,0,0,0.0024,0.00281,0.00319,0.00958,0,0,0,0,0,0,0.0023,0.00265,0.00296,0.00895,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Pickup,PH40E,1990,0.02044,0,0,0,0,0,0,0,0,0,0.02114,0,0,0,0,0,0,0,0,0,0.02314,0,0,0,0,0,0,0,0,0,0.01902,0,0,0,0,0,0,0,0,0,0.02273,0,0,0,0,0,0,0,0,0,0.02058,0,0,0,0,0,0,0,0,0,0.02071,0,0,0,0,0,0,0,0,0,0.02173,0,0,0,0,0,0,0,0,0,0.02164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.00117,0.00155,0,0,0,0,0,0,0,0.00071,0.00111,0.00146,0,0,0,0,0,0,0,0.00073,0.00115,0.00152,0,0,0,0,0,0,0,0.00075,0.00118,0.00157,0,0,0,0,0,0,0,0.00061,0.00095,0.00123,0,0,0,0,0,0,0,0.00063,0.00098,0.00127,0,0,0,0,0,0,0,0.00061,0.00095,0.00122,0,0,0,0,0,0,0,0.00066,0.00103,0.00135,0,0,0,0,0,0,0,0.00063,0.00097,0.00125,0,0,0,0,0,0,0,0.02203,0.02298,0.02386,0,0,0,0,0,0,0,0.02264,0.02353,0.02434,0,0,0,0,0,0,0,0.02471,0.02565,0.02652,0,0,0,0,0,0,0,0.02063,0.0216,0.02252,0,0,0,0,0,0,0,0.024,0.02472,0.02533,0,0,0,0,0,0,0,0.02189,0.02264,0.0233,0,0,0,0,0,0,0,0.02196,0.02267,0.02327,0,0,0,0,0,0,0,0.02311,0.02392,0.02463,0,0,0,0,0,0,0,0.02292,0.02364,0.02425,0,0,0,0,0,0,0,0.00407,0.00492,0.0057,0,0,0,0,0,0,0,0.00408,0.00487,0.00559,0,0,0,0,0,0,0,0.00439,0.00522,0.00599,0,0,0,0,0,0,0,0.00392,0.00478,0.00559,0,0,0,0,0,0,0,0.00408,0.00471,0.00525,0,0,0,0,0,0,0,0.00384,0.00451,0.00509,0,0,0,0,0,0,0,0.00381,0.00444,0.00497,0,0,0,0,0,0,0,0.00405,0.00477,0.00539,0,0,0,0,0,0,0,0.00395,0.00459,0.00513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH40E,1995,0.02043,0.02043,0,0,0,0,0,0,0,0,0.02113,0.02113,0,0,0,0,0,0,0,0,0.02314,0.02314,0,0,0,0,0,0,0,0,0.01901,0.01901,0,0,0,0,0,0,0,0,0.02273,0.02273,0,0,0,0,0,0,0,0,0.02058,0.02058,0,0,0,0,0,0,0,0,0.0207,0.0207,0,0,0,0,0,0,0,0,0.02172,0.02172,0,0,0,0,0,0,0,0,0.02163,0.02163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.00117,0,0,0,0,0,0,0,0,0.00071,0.00111,0,0,0,0,0,0,0,0,0.00073,0.00115,0,0,0,0,0,0,0,0,0.00075,0.00118,0,0,0,0,0,0,0,0,0.00061,0.00095,0,0,0,0,0,0,0,0,0.00063,0.00098,0,0,0,0,0,0,0,0,0.00061,0.00095,0,0,0,0,0,0,0,0,0.00066,0.00103,0,0,0,0,0,0,0,0,0.00063,0.00097,0,0,0,0,0,0,0,0,0.02202,0.02298,0,0,0,0,0,0,0,0,0.02264,0.02353,0,0,0,0,0,0,0,0,0.02471,0.02565,0,0,0,0,0,0,0,0,0.02062,0.0216,0,0,0,0,0,0,0,0,0.024,0.02472,0,0,0,0,0,0,0,0,0.02189,0.02264,0,0,0,0,0,0,0,0,0.02196,0.02267,0,0,0,0,0,0,0,0,0.02311,0.02392,0,0,0,0,0,0,0,0,0.02292,0.02364,0,0,0,0,0,0,0,0,0.00407,0.00492,0,0,0,0,0,0,0,0,0.00408,0.00487,0,0,0,0,0,0,0,0,0.00439,0.00522,0,0,0,0,0,0,0,0,0.00392,0.00478,0,0,0,0,0,0,0,0,0.00407,0.00471,0,0,0,0,0,0,0,0,0.00384,0.00451,0,0,0,0,0,0,0,0,0.00381,0.00444,0,0,0,0,0,0,0,0,0.00405,0.00476,0,0,0,0,0,0,0,0,0.00395,0.00459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH40E,2000,0.02043,0.02487,0.02724,0,0,0,0,0,0,0,0.02113,0.02494,0.02695,0,0,0,0,0,0,0,0.02314,0.02742,0.02971,0,0,0,0,0,0,0,0.01901,0.02376,0.02632,0,0,0,0,0,0,0,0.02273,0.02486,0.02594,0,0,0,0,0,0,0,0.02058,0.02309,0.02455,0,0,0,0,0,0,0,0.0207,0.02274,0.02376,0,0,0,0,0,0,0,0.02173,0.02467,0.02621,0,0,0,0,0,0,0,0.02164,0.0237,0.02472,0,0,0,0,0,0,0,0,0.08591,0.09421,0,0,0,0,0,0,0,0,0.08276,0.09242,0,0,0,0,0,0,0,0,0.09805,0.10841,0,0,0,0,0,0,0,0,0.10218,0.1123,0,0,0,0,0,0,0,0,0.08874,0.09933,0,0,0,0,0,0,0,0,0.09346,0.10371,0,0,0,0,0,0,0,0,0.09021,0.09773,0,0,0,0,0,0,0,0,0.08919,0.09821,0,0,0,0,0,0,0,0,0.07849,0.08693,0,0,0,0,0,0,0,0,7.78215,9.82226,0,0,0,0,0,0,0,0,7.62771,9.75559,0,0,0,0,0,0,0,0,8.73402,11.10084,0,0,0,0,0,0,0,0,9.24196,11.6742,0,0,0,0,0,0,0,0,8.28078,10.57589,0,0,0,0,0,0,0,0,8.60315,10.99851,0,0,0,0,0,0,0,0,8.61435,10.69441,0,0,0,0,0,0,0,0,8.21531,10.37856,0,0,0,0,0,0,0,0,7.10919,9.02863,0,0,0,0,0,0,0,0,261.00017,264.90481,0,0,0,0,0,0,0,0,263.0204,266.64274,0,0,0,0,0,0,0,0,266.87788,270.68919,0,0,0,0,0,0,0,0,260.6615,264.47347,0,0,0,0,0,0,0,0,267.11088,269.74742,0,0,0,0,0,0,0,0,262.82174,266.64088,0,0,0,0,0,0,0,0,265.00829,267.52947,0,0,0,0,0,0,0,0,265.14905,268.21116,0,0,0,0,0,0,0,0,261.14206,263.94131,0,0,0,0,0,0,0,0,0.02346,0.02802,0,0,0,0,0,0,0,0,0.02352,0.02806,0,0,0,0,0,0,0,0,0.02398,0.02853,0,0,0,0,0,0,0,0,0.02295,0.02744,0,0,0,0,0,0,0,0,0.02385,0.0284,0,0,0,0,0,0,0,0,0.02327,0.02778,0,0,0,0,0,0,0,0,0.02346,0.028,0,0,0,0,0,0,0,0,0.02372,0.02828,0,0,0,0,0,0,0,0,0.02389,0.02849,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04102,0.04102,0,0,0,0,0,0,0,0,0.04101,0.04101,0,0,0,0,0,0,0,0,0.0408,0.0408,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04084,0.04084,0,0,0,0,0,0,0,0,0.04095,0.04095,0,0,0,0,0,0,0,0,0.04103,0.04104,0,0,0,0,0,0,0,0,0.04113,0.04113,0,0,0,0,0,0,0,0,1.02389,1.24637,0,0,0,0,0,0,0,0,1.01104,1.24595,0,0,0,0,0,0,0,0,1.13021,1.38047,0,0,0,0,0,0,0,0,1.17013,1.42306,0,0,0,0,0,0,0,0,1.1028,1.3579,0,0,0,0,0,0,0,0,1.13427,1.38158,0,0,0,0,0,0,0,0,1.12308,1.34762,0,0,0,0,0,0,0,0,1.16663,1.40858,0,0,0,0,0,0,0,0,1.04744,1.27405,0,0,0,0,0,0,0,0,0.00947,0.0134,0,0,0,0,0,0,0.00074,0,0.00828,0.01168,0,0,0,0,0,0,0.00071,0,0.00897,0.01273,0,0,0,0,0,0,0.00073,0,0.00981,0.01396,0,0,0,0,0,0,0.00075,0,0.00496,0.00694,0,0,0,0,0,0,0.00061,0,0.00571,0.00831,0,0,0,0,0,0,0.00063,0,0.00488,0.0068,0,0,0,0,0,0,0.00061,0,0.00658,0.00926,0,0,0,0,0,0,0.00066,0,0.005,0.00696,0,0,0,0,0,0,0.00063,0,0.04066,0.04951,0,0,0,0,0,0,0.02202,0,0.03875,0.04638,0,0,0,0,0,0,0.02264,0,0.04238,0.05085,0,0,0,0,0,0,0.02471,0,0.04011,0.04949,0,0,0,0,0,0,0.02062,0,0.03316,0.0375,0,0,0,0,0,0,0.024,0,0.03263,0.03849,0,0,0,0,0,0,0.02189,0,0.0309,0.0351,0,0,0,0,0,0,0.02196,0,0.03567,0.04162,0,0,0,0,0,0,0.02311,0,0.03207,0.03634,0,0,0,0,0,0,0.02292,0,0.02056,0.02839,0,0,0,0,0,0,0.00407,0,0.01834,0.02509,0,0,0,0,0,0,0.00408,0,0.02002,0.02752,0,0,0,0,0,0,0.00439,0,0.02115,0.02945,0,0,0,0,0,0,0.00392,0,0.01218,0.01602,0,0,0,0,0,0,0.00407,0,0.01334,0.01846,0,0,0,0,0,0,0.00384,0,0.01172,0.01544,0,0,0,0,0,0,0.00381,0,0.01516,0.02042,0,0,0,0,0,0,0.00405,0,0.01205,0.01582,0,0,0,0,0,0,0.00395,0,0.00854,0.00765,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00874,0.00782,0,0,0,0,0,0,0,0,0.00853,0.00764,0,0,0,0,0,0,0,0,0.00875,0.00779,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00868,0.00773,0,0,0,0,0,0,0,0,0.00868,0.00774,0,0,0,0,0,0,0,0,0.00855,0.00762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Pickup,PH40E,2005,0.02044,0.02234,0.02327,0.02545,0,0,0,0,0,0,0.02114,0.0228,0.02359,0.02545,0,0,0,0,0,0,0.02315,0.025,0.0259,0.02802,0,0,0,0,0,0,0.01902,0.02104,0.02204,0.0244,0,0,0,0,0,0,0.02274,0.02374,0.02421,0.02523,0,0,0,0,0,0,0.02059,0.02174,0.02234,0.02349,0,0,0,0,0,0,0.02071,0.02168,0.02212,0.02309,0,0,0,0,0,0,0.02174,0.02306,0.02369,0.02511,0,0,0,0,0,0,0.02165,0.02262,0.02307,0.02404,0,0,0,0,0,0,0,0.0359,0.03062,0.03951,0,0,0,0,0,0,0,0.03297,0.02908,0.03777,0,0,0,0,0,0,0,0.03903,0.03422,0.04605,0,0,0,0,0,0,0,0.04109,0.03597,0.04809,0,0,0,0,0,0,0,0.02919,0.02747,0.03834,0,0,0,0,0,0,0,0.03202,0.02982,0.04094,0,0,0,0,0,0,0,0.02924,0.02689,0.03741,0,0,0,0,0,0,0,0.03227,0.02888,0.03911,0,0,0,0,0,0,0,0.02606,0.02396,0.03218,0,0,0,0,0,0,0,3.06958,3.97449,5.89445,0,0,0,0,0,0,0,3.00119,3.98151,5.87501,0,0,0,0,0,0,0,3.37182,4.55669,6.87894,0,0,0,0,0,0,0,3.54369,4.79704,7.21369,0,0,0,0,0,0,0,3.29974,4.52386,6.69599,0,0,0,0,0,0,0,3.36531,4.6374,6.855,0,0,0,0,0,0,0,3.43558,4.59153,6.76434,0,0,0,0,0,0,0,3.27381,4.3573,6.44735,0,0,0,0,0,0,0,2.91823,3.85626,5.59558,0,0,0,0,0,0,0,270.64382,273.57988,276.92053,0,0,0,0,0,0,0,272.90701,275.63443,278.61134,0,0,0,0,0,0,0,276.6806,279.5484,282.76808,0,0,0,0,0,0,0,270.43103,273.3014,276.53414,0,0,0,0,0,0,0,277.73713,279.73599,281.45473,0,0,0,0,0,0,0,273.20109,276.31685,277.4774,0,0,0,0,0,0,0,275.7438,277.659,279.23118,0,0,0,0,0,0,0,275.47141,277.78504,280.04424,0,0,0,0,0,0,0,271.47263,273.58606,275.50201,0,0,0,0,0,0,0,0.00482,0.00571,0.01096,0,0,0,0,0,0,0,0.00483,0.00571,0.01096,0,0,0,0,0,0,0,0.0049,0.00578,0.0111,0,0,0,0,0,0,0,0.00473,0.0056,0.01076,0,0,0,0,0,0,0,0.00488,0.00576,0.01105,0,0,0,0,0,0,0,0.00478,0.00565,0.01085,0,0,0,0,0,0,0,0.00482,0.0057,0.01094,0,0,0,0,0,0,0,0.00486,0.00575,0.01103,0,0,0,0,0,0,0,0.0049,0.00579,0.01112,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01343,0.01682,0.01992,0,0,0,0,0,0,0,0.01342,0.01681,0.01991,0,0,0,0,0,0,0,0.01335,0.01672,0.01981,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01337,0.01674,0.01983,0,0,0,0,0,0,0,0.0134,0.01678,0.01988,0,0,0,0,0,0,0,0.01343,0.01682,0.01993,0,0,0,0,0,0,0,0.01346,0.01686,0.01997,0,0,0,0,0,0,0,0.43908,0.58658,0.61355,0,0,0,0,0,0,0,0.42722,0.58465,0.61023,0,0,0,0,0,0,0,0.48091,0.64701,0.68945,0,0,0,0,0,0,0,0.5039,0.67625,0.71819,0,0,0,0,0,0,0,0.46401,0.63147,0.67553,0,0,0,0,0,0,0,0.48199,0.6483,0.69019,0,0,0,0,0,0,0,0.47636,0.6313,0.66914,0,0,0,0,0,0,0,0.49939,0.66447,0.69498,0,0,0,0,0,0,0,0.44777,0.59895,0.62117,0,0,0,0,0,0,0.04953,0.0041,0.0056,0.00914,0,0,0,0,0,0,0.04325,0.00366,0.005,0.00809,0,0,0,0,0,0,0.04823,0.00395,0.00541,0.0088,0,0,0,0,0,0,0.05311,0.00422,0.00579,0.00952,0,0,0,0,0,0,0.02579,0.00245,0.00334,0.00519,0,0,0,0,0,0,0.03017,0.00271,0.0038,0.00583,0,0,0,0,0,0,0.02477,0.00241,0.00328,0.00508,0,0,0,0,0,0,0.03429,0.00304,0.00415,0.00661,0,0,0,0,0,0,0.02451,0.00247,0.00336,0.00519,0,0,0,0,0,0,0.13141,0.02917,0.03256,0.04053,0,0,0,0,0,0,0.11768,0.0289,0.03189,0.0388,0,0,0,0,0,0,0.13192,0.03158,0.03488,0.04254,0,0,0,0,0,0,0.13906,0.02806,0.03163,0.04008,0,0,0,0,0,0,0.07947,0.02784,0.02978,0.03383,0,0,0,0,0,0,0.08737,0.02625,0.02876,0.03312,0,0,0,0,0,0,0.075,0.0257,0.02759,0.03151,0,0,0,0,0,0,0.098,0.02813,0.03059,0.03603,0,0,0,0,0,0,0.07487,0.02675,0.02867,0.03264,0,0,0,0,0,0,0.10083,0.01039,0.01339,0.02044,0,0,0,0,0,0,0.08815,0.00962,0.01227,0.01838,0,0,0,0,0,0,0.09923,0.01047,0.01339,0.02016,0,0,0,0,0,0,0.10868,0.01049,0.01365,0.02112,0,0,0,0,0,0,0.05314,0.00747,0.00919,0.01277,0,0,0,0,0,0,0.06176,0.0077,0.00984,0.01378,0,0,0,0,0,0,0.05073,0.00712,0.00879,0.01226,0,0,0,0,0,0,0.0703,0.00849,0.01067,0.01548,0,0,0,0,0,0,0.0499,0.00733,0.00903,0.01255,0,0,0,0,0,0,0,0.00886,0.0079,0.00267,0,0,0,0,0,0,0,0.00894,0.00796,0.00268,0,0,0,0,0,0,0,0.00906,0.00807,0.00272,0,0,0,0,0,0,0,0.00885,0.00789,0.00266,0,0,0,0,0,0,0,0.00909,0.00808,0.00271,0,0,0,0,0,0,0,0.00895,0.00798,0.00267,0,0,0,0,0,0,0,0.00903,0.00802,0.00269,0,0,0,0,0,0,0,0.00902,0.00802,0.0027,0,0,0,0,0,0,0,0.00889,0.0079,0.00265,0,0,0,0,0,0,0,0.19151,0.26704,0.26689,0,0,0,0,0,0,0,0.17299,0.24778,0.24653,0,0,0,0,0,0,0,0.20315,0.28985,0.28676,0,0,0,0,0,0,0,0.21493,0.30599,0.30157,0,0,0,0,0,0,0,0.13524,0.20893,0.2018,0,0,0,0,0,0,0,0.15239,0.23364,0.22243,0,0,0,0,0,0,0,0.13329,0.20216,0.19483,0,0,0,0,0,0,0,0.15848,0.2321,0.22729,0,0,0,0,0,0,0,0.12057,0.18285,0.17688,0,0,0,0,0,0 +Pickup,PH40E,2010,0,0.02122,0.0219,0.02259,0.02465,0,0,0,0,0,0,0.02183,0.02243,0.02302,0.02479,0,0,0,0,0,0,0.02392,0.02458,0.02525,0.02726,0,0,0,0,0,0,0.01985,0.02058,0.02132,0.02355,0,0,0,0,0,0,0.0232,0.02359,0.02395,0.02496,0,0,0,0,0,0,0.0211,0.02156,0.02195,0.02313,0,0,0,0,0,0,0.02116,0.02153,0.02188,0.02283,0,0,0,0,0,0,0.02231,0.0228,0.02327,0.02465,0,0,0,0,0,0,0.0221,0.02247,0.02282,0.02377,0,0,0,0,0,0,0.02338,0.0167,0.01262,0.02073,0,0,0,0,0,0,0.02039,0.01518,0.0116,0.01941,0,0,0,0,0,0,0.02288,0.01789,0.0137,0.0237,0,0,0,0,0,0,0.02542,0.01978,0.01508,0.0254,0,0,0,0,0,0,0.01369,0.01296,0.01032,0.01884,0,0,0,0,0,0,0.01531,0.01437,0.01116,0.0203,0,0,0,0,0,0,0.0134,0.01278,0.01018,0.01844,0,0,0,0,0,0,0.01711,0.01446,0.01122,0.01967,0,0,0,0,0,0,0.01316,0.01179,0.0092,0.01595,0,0,0,0,0,0,1.24201,2.06766,2.78621,4.17569,0,0,0,0,0,0,1.18144,2.0444,2.76907,4.14896,0,0,0,0,0,0,1.243,2.26626,3.14631,4.87863,0,0,0,0,0,0,1.32871,2.42663,3.37624,5.18617,0,0,0,0,0,0,1.09365,2.16139,3.02966,4.69862,0,0,0,0,0,0,1.12885,2.24229,3.11093,4.845,0,0,0,0,0,0,1.14005,2.22436,3.10587,4.77564,0,0,0,0,0,0,1.16388,2.16276,2.97703,4.54908,0,0,0,0,0,0,1.02317,1.91247,2.59965,3.91145,0,0,0,0,0,0,251.68816,252.76145,255.00028,263.33105,0,0,0,0,0,0,253.90584,254.8429,256.85844,264.8602,0,0,0,0,0,0,257.37277,258.38255,260.53624,268.83693,0,0,0,0,0,0,251.53745,252.55975,254.73651,262.96542,0,0,0,0,0,0,258.77585,259.24577,260.49114,267.30263,0,0,0,0,0,0,254.43996,255.88196,256.5147,263.61767,0,0,0,0,0,0,256.95866,257.37817,258.54227,265.18528,0,0,0,0,0,0,256.5045,257.17661,258.75481,266.07739,0,0,0,0,0,0,252.83469,253.41103,254.78376,261.68608,0,0,0,0,0,0,0.00428,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00429,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00436,0.0049,0.00585,0.00838,0,0,0,0,0,0,0.00419,0.00472,0.00567,0.00814,0,0,0,0,0,0,0.00434,0.00487,0.00583,0.00834,0,0,0,0,0,0,0.00424,0.00478,0.00572,0.0082,0,0,0,0,0,0,0.00428,0.00481,0.00577,0.00827,0,0,0,0,0,0,0.00432,0.00486,0.00581,0.00833,0,0,0,0,0,0,0.00435,0.0049,0.00586,0.0084,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00891,0.01023,0.01333,0.01478,0,0,0,0,0,0,0.00886,0.01017,0.01326,0.0147,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00887,0.01018,0.01328,0.01471,0,0,0,0,0,0,0.00889,0.01021,0.01331,0.01475,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00893,0.01025,0.01337,0.01482,0,0,0,0,0,0,0.07206,0.12572,0.12615,0.27042,0,0,0,0,0,0,0.06948,0.12456,0.12482,0.26791,0,0,0,0,0,0,0.07098,0.13713,0.13643,0.30571,0,0,0,0,0,0,0.07345,0.14552,0.14367,0.32149,0,0,0,0,0,0,0.06525,0.13052,0.12942,0.29622,0,0,0,0,0,0,0.0681,0.13603,0.13434,0.3049,0,0,0,0,0,0,0.06732,0.13151,0.13009,0.29362,0,0,0,0,0,0,0.07348,0.14044,0.13743,0.3051,0,0,0,0,0,0,0.06785,0.12633,0.12362,0.26931,0,0,0,0,0,0.0134,0.03073,0.0025,0.00348,0.00666,0,0,0,0,0,0.01173,0.02692,0.00232,0.00322,0.00602,0,0,0,0,0,0.01301,0.02991,0.00245,0.00341,0.00649,0,0,0,0,0,0.01425,0.03275,0.00257,0.0036,0.00694,0,0,0,0,0,0.00705,0.01628,0.00188,0.00255,0.00432,0,0,0,0,0,0.0082,0.01886,0.00199,0.00268,0.00468,0,0,0,0,0,0.0068,0.01568,0.00187,0.00253,0.00424,0,0,0,0,0,0.00934,0.02147,0.0021,0.00288,0.00515,0,0,0,0,0,0.00678,0.01564,0.0019,0.00257,0.00431,0,0,0,0,0,0.05,0.10938,0.02602,0.02829,0.03557,0,0,0,0,0,0.04694,0.10195,0.02626,0.02831,0.03467,0,0,0,0,0,0.05206,0.11303,0.02862,0.03086,0.03791,0,0,0,0,0,0.05078,0.11164,0.02481,0.02721,0.03492,0,0,0,0,0,0.03804,0.08088,0.02671,0.02818,0.03209,0,0,0,0,0,0.0385,0.08241,0.02495,0.02637,0.03083,0,0,0,0,0,0.03541,0.07546,0.02463,0.02606,0.02984,0,0,0,0,0,0.0422,0.09085,0.02628,0.02803,0.03313,0,0,0,0,0,0.03615,0.07703,0.02563,0.02707,0.0309,0,0,0,0,0,0.02882,0.06594,0.0076,0.00962,0.01606,0,0,0,0,0,0.02559,0.0583,0.00729,0.0091,0.01473,0,0,0,0,0,0.02859,0.06506,0.00785,0.00983,0.01607,0,0,0,0,0,0.03058,0.07009,0.00761,0.00974,0.01656,0,0,0,0,0,0.01649,0.03723,0.00648,0.00777,0.01123,0,0,0,0,0,0.01853,0.04186,0.00648,0.00781,0.01175,0,0,0,0,0,0.01571,0.03552,0.00617,0.00743,0.01078,0,0,0,0,0,0.02094,0.04758,0.00685,0.0084,0.01292,0,0,0,0,0,0.01565,0.0355,0.00635,0.00762,0.01101,0,0,0,0,0,0,0.00824,0.0073,0.00245,0.00253,0,0,0,0,0,0,0.00831,0.00736,0.00247,0.00255,0,0,0,0,0,0,0.00843,0.00746,0.00251,0.00259,0,0,0,0,0,0,0.00824,0.00729,0.00245,0.00253,0,0,0,0,0,0,0.00847,0.00749,0.00251,0.00257,0,0,0,0,0,0,0.00833,0.00739,0.00247,0.00254,0,0,0,0,0,0,0.00841,0.00743,0.00249,0.00255,0,0,0,0,0,0,0.0084,0.00743,0.00249,0.00256,0,0,0,0,0,0,0.00828,0.00732,0.00245,0.00252,0,0,0,0,0,0,0.05871,0.08831,0.12093,0.19643,0,0,0,0,0,0,0.04982,0.078,0.10868,0.17888,0,0,0,0,0,0,0.05751,0.09267,0.12909,0.21532,0,0,0,0,0,0,0.06458,0.10288,0.14222,0.23284,0,0,0,0,0,0,0.02958,0.05926,0.089,0.15278,0,0,0,0,0,0,0.03428,0.06739,0.09728,0.16751,0,0,0,0,0,0,0.02817,0.05714,0.08626,0.14767,0,0,0,0,0,0,0.03969,0.0699,0.10063,0.16926,0,0,0,0,0,0,0.02788,0.0536,0.07928,0.13148,0,0,0,0,0 +Pickup,PH40E,2015,0,0,0.02114,0.02163,0.02227,0.02375,0,0,0,0,0,0,0.02177,0.02222,0.02279,0.02408,0,0,0,0,0,0,0.02384,0.02432,0.02495,0.0264,0,0,0,0,0,0,0.01975,0.02027,0.02095,0.02254,0,0,0,0,0,0,0.02319,0.0235,0.02388,0.02467,0,0,0,0,0,0,0.02109,0.02142,0.02185,0.02275,0,0,0,0,0,0,0.02115,0.02145,0.02182,0.02258,0,0,0,0,0,0,0.02228,0.02265,0.02313,0.02416,0,0,0,0,0,0,0.02209,0.02239,0.02276,0.02352,0,0,0,0,0,0,0.01769,0.01184,0.01086,0.01351,0,0,0,0,0,0,0.01621,0.01102,0.01029,0.01277,0,0,0,0,0,0,0.01757,0.01284,0.012,0.01516,0,0,0,0,0,0,0.01894,0.01391,0.01297,0.01629,0,0,0,0,0,0,0.01218,0.0099,0.00989,0.01242,0,0,0,0,0,0,0.01354,0.01069,0.01056,0.01329,0,0,0,0,0,0,0.01207,0.00978,0.00983,0.01228,0,0,0,0,0,0,0.01427,0.01076,0.01036,0.01294,0,0,0,0,0,0,0.01184,0.00903,0.00885,0.01086,0,0,0,0,0,0,1.06585,1.87228,2.5264,3.37666,0,0,0,0,0,0,1.06133,1.8782,2.54837,3.39425,0,0,0,0,0,0,1.09386,2.0725,2.88372,3.91217,0,0,0,0,0,0,1.16667,2.21507,3.08998,4.16638,0,0,0,0,0,0,1.04316,2.06494,2.89829,3.88669,0,0,0,0,0,0,1.0728,2.10017,2.95575,3.98335,0,0,0,0,0,0,1.08737,2.13373,2.98394,3.98315,0,0,0,0,0,0,1.07203,2.03104,2.80168,3.74498,0,0,0,0,0,0,0.97714,1.82965,2.49076,3.28714,0,0,0,0,0,0,206.172,207.35138,209.28388,220.83232,0,0,0,0,0,0,207.8999,208.94056,210.67931,221.99325,0,0,0,0,0,0,210.77627,211.89723,213.75599,225.38035,0,0,0,0,0,0,206.03672,207.17221,209.05229,220.5159,0,0,0,0,0,0,211.59306,212.15653,213.22582,223.6341,0,0,0,0,0,0,208.8257,208.84306,210.10747,220.68251,0,0,0,0,0,0,210.09123,210.604,211.60344,221.84049,0,0,0,0,0,0,209.86266,210.63227,211.99093,222.78494,0,0,0,0,0,0,206.78067,207.43631,208.61466,218.98934,0,0,0,0,0,0,0.00283,0.00324,0.00385,0.00537,0,0,0,0,0,0,0.00283,0.00325,0.00385,0.00536,0,0,0,0,0,0,0.00288,0.00329,0.0039,0.00542,0,0,0,0,0,0,0.00277,0.00318,0.00378,0.00528,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.0054,0,0,0,0,0,0,0.00281,0.00321,0.00381,0.00531,0,0,0,0,0,0,0.00283,0.00324,0.00384,0.00536,0,0,0,0,0,0,0.00286,0.00327,0.00387,0.0054,0,0,0,0,0,0,0.00288,0.0033,0.00391,0.00545,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01352,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01351,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01344,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01346,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01349,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01352,0,0,0,0,0,0,0.00894,0.0104,0.01338,0.01355,0,0,0,0,0,0,0.06399,0.07869,0.11485,0.16359,0,0,0,0,0,0,0.06373,0.07766,0.11367,0.16186,0,0,0,0,0,0,0.06444,0.08526,0.12396,0.17958,0,0,0,0,0,0,0.06723,0.09016,0.13093,0.18936,0,0,0,0,0,0,0.05908,0.0795,0.11696,0.17082,0,0,0,0,0,0,0.06201,0.08307,0.1218,0.17721,0,0,0,0,0,0,0.06053,0.07996,0.11781,0.17092,0,0,0,0,0,0,0.06637,0.08557,0.12471,0.17928,0,0,0,0,0,0,0.06136,0.07675,0.11198,0.15963,0,0,0,0,0.00742,0.01037,0.02197,0.00221,0.00318,0.00524,0,0,0,0,0.00651,0.00908,0.01925,0.00209,0.00299,0.00485,0,0,0,0,0.00709,0.00992,0.02119,0.00217,0.00312,0.00514,0,0,0,0,0.00773,0.01083,0.0232,0.00224,0.00324,0.00539,0,0,0,0,0.00394,0.00546,0.01174,0.00178,0.00249,0.00382,0,0,0,0,0.00453,0.00629,0.01352,0.00184,0.00259,0.00403,0,0,0,0,0.00385,0.00533,0.01139,0.00177,0.00248,0.00378,0,0,0,0,0.00519,0.00723,0.0154,0.00194,0.00274,0.00433,0,0,0,0,0.00392,0.00543,0.01147,0.00181,0.00252,0.00384,0,0,0,0,0.03637,0.04272,0.08947,0.02527,0.0275,0.03234,0,0,0,0,0.03508,0.04056,0.08464,0.02567,0.02771,0.03204,0,0,0,0,0.03852,0.04451,0.09327,0.0279,0.03009,0.03483,0,0,0,0,0.03581,0.04252,0.08963,0.02395,0.02626,0.03137,0,0,0,0,0.0311,0.03426,0.07081,0.02645,0.02801,0.03098,0,0,0,0,0.03026,0.03393,0.07064,0.02446,0.02612,0.02939,0,0,0,0,0.02885,0.03195,0.06589,0.02439,0.02592,0.02882,0,0,0,0,0.03284,0.03717,0.0771,0.02586,0.02765,0.03129,0,0,0,0,0.02982,0.03298,0.06783,0.02539,0.02694,0.02986,0,0,0,0,0.01676,0.02238,0.04833,0.00695,0.00892,0.0132,0,0,0,0,0.01509,0.01994,0.04299,0.00677,0.00857,0.0124,0,0,0,0,0.01661,0.0219,0.04757,0.00722,0.00915,0.01334,0,0,0,0,0.01734,0.02328,0.05062,0.00686,0.0089,0.01342,0,0,0,0,0.01035,0.01315,0.02833,0.00624,0.00762,0.01025,0,0,0,0,0.01124,0.01449,0.03137,0.00611,0.00758,0.01048,0,0,0,0,0.0099,0.01265,0.02706,0.00596,0.00732,0.00988,0,0,0,0,0.01265,0.01649,0.03541,0.00648,0.00807,0.01129,0,0,0,0,0.01005,0.01285,0.02735,0.00614,0.00751,0.01009,0,0,0,0,0,0,0.00595,0.002,0.00201,0.00213,0,0,0,0,0,0,0.006,0.00201,0.00203,0.00214,0,0,0,0,0,0,0.00609,0.00204,0.00206,0.00217,0,0,0,0,0,0,0.00595,0.00199,0.00201,0.00212,0,0,0,0,0,0,0.00611,0.00204,0.00205,0.00215,0,0,0,0,0,0,0.00603,0.00201,0.00202,0.00212,0,0,0,0,0,0,0.00607,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00606,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00597,0.002,0.00201,0.00211,0,0,0,0,0,0,0.04424,0.06581,0.10044,0.14844,0,0,0,0,0,0,0.03937,0.06001,0.09344,0.13789,0,0,0,0,0,0,0.04392,0.07025,0.10941,0.16373,0,0,0,0,0,0,0.0477,0.07595,0.1177,0.17568,0,0,0,0,0,0,0.02657,0.0497,0.08413,0.12553,0,0,0,0,0,0,0.03069,0.05425,0.09041,0.13525,0,0,0,0,0,0,0.02571,0.04828,0.08234,0.12249,0,0,0,0,0,0,0.03299,0.05606,0.09077,0.13473,0,0,0,0,0,0,0.02537,0.04518,0.07533,0.11005,0,0,0,0 +Pickup,PH40E,2020,0,0,0,0.02102,0.02144,0.02186,0.02328,0,0,0,0,0,0,0.02167,0.02204,0.02242,0.02367,0,0,0,0,0,0,0.02372,0.02413,0.02454,0.02594,0,0,0,0,0,0,0.01963,0.02006,0.02051,0.02202,0,0,0,0,0,0,0.02313,0.02339,0.02364,0.02444,0,0,0,0,0,0,0.02101,0.0213,0.02157,0.02248,0,0,0,0,0,0,0.02109,0.02134,0.02158,0.02236,0,0,0,0,0,0,0.02219,0.02251,0.02282,0.02385,0,0,0,0,0,0,0.02203,0.02228,0.02252,0.0233,0,0,0,0,0,0,0.01354,0.0098,0.00833,0.01062,0,0,0,0,0,0,0.01217,0.00901,0.00778,0.00999,0,0,0,0,0,0,0.01345,0.01051,0.00909,0.01202,0,0,0,0,0,0,0.0146,0.01144,0.00987,0.01298,0,0,0,0,0,0,0.00842,0.00765,0.00705,0.00961,0,0,0,0,0,0,0.00942,0.00837,0.00763,0.01038,0,0,0,0,0,0,0.00823,0.00753,0.00699,0.00949,0,0,0,0,0,0,0.01032,0.00854,0.0076,0.01008,0,0,0,0,0,0,0.00806,0.00694,0.0063,0.00827,0,0,0,0,0,0,0.841,1.26915,1.60175,2.45808,0,0,0,0,0,0,0.83235,1.26237,1.59891,2.46352,0,0,0,0,0,0,0.86647,1.39384,1.80633,2.90832,0,0,0,0,0,0,0.92767,1.49841,1.95027,3.11915,0,0,0,0,0,0,0.80832,1.3525,1.762,2.85111,0,0,0,0,0,0,0.8267,1.38518,1.81173,2.94929,0,0,0,0,0,0,0.83997,1.39856,1.8175,2.92159,0,0,0,0,0,0,0.83593,1.34562,1.72839,2.74289,0,0,0,0,0,0,0.75335,1.20003,1.5207,2.36432,0,0,0,0,0,0,175.01937,176.18597,178.13058,193.50908,0,0,0,0,0,0,176.41093,177.4624,179.2388,194.39966,0,0,0,0,0,0,178.88919,180.01108,181.89672,197.42854,0,0,0,0,0,0,174.89643,176.02686,177.9263,193.21809,0,0,0,0,0,0,179.2922,179.94667,181.1386,195.41197,0,0,0,0,0,0,176.44505,177.21392,178.57379,192.96723,0,0,0,0,0,0,178.0014,178.61222,179.74153,193.81421,0,0,0,0,0,0,177.93342,178.75948,180.20369,194.85283,0,0,0,0,0,0,175.24562,175.97234,177.25203,191.40792,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00507,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00506,0,0,0,0,0,0,0.00294,0.00332,0.0039,0.00512,0,0,0,0,0,0,0.00283,0.00321,0.00378,0.00498,0,0,0,0,0,0,0.00293,0.0033,0.00388,0.0051,0,0,0,0,0,0,0.00286,0.00324,0.00381,0.00501,0,0,0,0,0,0,0.00289,0.00327,0.00384,0.00506,0,0,0,0,0,0,0.00292,0.00329,0.00387,0.00509,0,0,0,0,0,0,0.00294,0.00332,0.00391,0.00514,0,0,0,0,0,0,0.0089,0.01036,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01335,0,0,0,0,0,0,0.00893,0.0104,0.01337,0.01337,0,0,0,0,0,0,0.04184,0.06745,0.09067,0.12611,0,0,0,0,0,0,0.04131,0.06645,0.0895,0.12453,0,0,0,0,0,0,0.04219,0.07277,0.09732,0.13872,0,0,0,0,0,0,0.04399,0.07733,0.10334,0.14733,0,0,0,0,0,0,0.03732,0.06705,0.09046,0.13008,0,0,0,0,0,0,0.03946,0.07054,0.09495,0.13604,0,0,0,0,0,0,0.03808,0.06768,0.09146,0.13044,0,0,0,0,0,0,0.04216,0.07285,0.09759,0.13761,0,0,0,0,0,0,0.03836,0.06487,0.08696,0.12108,0,0,0,0.0023,0.00368,0.00501,0.01325,0.00187,0.00248,0.00444,0,0,0,0.00211,0.00327,0.00444,0.01173,0.00178,0.00234,0.00414,0,0,0,0.00244,0.00301,0.00407,0.01268,0.00184,0.00244,0.00437,0,0,0,0.00251,0.00373,0.0051,0.01384,0.00189,0.00252,0.00456,0,0,0,0.00147,0.0023,0.00314,0.00759,0.00152,0.00196,0.00332,0,0,0,0.00165,0.00235,0.0032,0.0085,0.00157,0.00204,0.00349,0,0,0,0.00142,0.00217,0.00295,0.00728,0.00152,0.00195,0.00329,0,0,0,0.00181,0.0026,0.00353,0.00955,0.00165,0.00215,0.00373,0,0,0,0.00131,0.00197,0.00266,0.00728,0.00155,0.00199,0.00334,0,0,0,0.0254,0.02832,0.03134,0.0702,0.02452,0.02594,0.03056,0,0,0,0.02567,0.02809,0.03074,0.06809,0.02497,0.02628,0.03047,0,0,0,0.02848,0.02953,0.03189,0.07439,0.02716,0.02856,0.0331,0,0,0,0.02451,0.02709,0.03018,0.06887,0.02317,0.02464,0.02948,0,0,0,0.02585,0.02755,0.02939,0.0618,0.02591,0.02689,0.02992,0,0,0,0.02412,0.02552,0.02738,0.05957,0.02388,0.02493,0.02822,0,0,0,0.02371,0.02524,0.02693,0.05698,0.02386,0.02482,0.02778,0,0,0,0.02561,0.02725,0.02928,0.06427,0.02524,0.02638,0.02998,0,0,0,0.02438,0.02571,0.02719,0.05882,0.02485,0.02582,0.02881,0,0,0,0.00705,0.00963,0.01231,0.03127,0.00628,0.00754,0.01162,0,0,0,0.00676,0.0089,0.01124,0.02834,0.00615,0.0073,0.01101,0,0,0,0.00772,0.00865,0.01074,0.03087,0.00656,0.00779,0.01181,0,0,0,0.00734,0.00962,0.01236,0.03225,0.00617,0.00747,0.01175,0,0,0,0.0057,0.00721,0.00884,0.02035,0.00576,0.00663,0.00931,0,0,0,0.00581,0.00704,0.00869,0.02165,0.00561,0.00654,0.00945,0,0,0,0.00535,0.00671,0.0082,0.01917,0.00549,0.00634,0.00896,0,0,0,0.00625,0.0077,0.0095,0.02407,0.00593,0.00694,0.01013,0,0,0,0.00523,0.00641,0.00772,0.01938,0.00566,0.00652,0.00916,0,0,0,0,0,0,0.00168,0.0017,0.00171,0.00186,0,0,0,0,0,0,0.0017,0.00171,0.00173,0.00187,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.0019,0,0,0,0,0,0,0.00168,0.00169,0.00171,0.00186,0,0,0,0,0,0,0.00173,0.00173,0.00174,0.00188,0,0,0,0,0,0,0.0017,0.00171,0.00172,0.00186,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00187,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00188,0,0,0,0,0,0,0.00169,0.00169,0.00171,0.00184,0,0,0,0,0,0,0.03737,0.05506,0.07767,0.12087,0,0,0,0,0,0,0.03293,0.04958,0.071,0.11162,0,0,0,0,0,0,0.03715,0.05806,0.08319,0.13463,0,0,0,0,0,0,0.04049,0.06309,0.0901,0.1451,0,0,0,0,0,0,0.02104,0.03831,0.05887,0.10052,0,0,0,0,0,0,0.02414,0.04264,0.06457,0.1094,0,0,0,0,0,0,0.02018,0.03708,0.05735,0.09782,0,0,0,0,0,0,0.02698,0.04475,0.06615,0.10872,0,0,0,0,0,0,0.01982,0.03467,0.05259,0.08655,0,0,0 +Pickup,PH40E,2025,0,0,0,0,0.02081,0.02106,0.02132,0.02249,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02297,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02517,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02118,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02398,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02196,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02191,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02327,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02285,0,0,0,0,0,0,0.0109,0.00714,0.00577,0.00809,0,0,0,0,0,0,0.00949,0.00634,0.0052,0.00746,0,0,0,0,0,0,0.01077,0.00744,0.00611,0.00905,0,0,0,0,0,0,0.01185,0.00818,0.00669,0.00983,0,0,0,0,0,0,0.00562,0.00454,0.00403,0.00667,0,0,0,0,0,0,0.00663,0.00518,0.00452,0.00734,0,0,0,0,0,0,0.00538,0.00439,0.00393,0.00653,0,0,0,0,0,0,0.00754,0.00552,0.00469,0.00725,0,0,0,0,0,0,0.00526,0.00408,0.00358,0.00568,0,0,0,0,0,0,0.55924,0.81728,1.03671,1.73986,0,0,0,0,0,0,0.54005,0.79705,1.0158,1.72514,0,0,0,0,0,0,0.56885,0.88349,1.14951,2.05204,0,0,0,0,0,0,0.61468,0.95801,1.25055,2.21497,0,0,0,0,0,0,0.48459,0.80212,1.05558,1.94563,0,0,0,0,0,0,0.50553,0.83376,1.09982,2.03116,0,0,0,0,0,0,0.5012,0.82787,1.08717,1.99163,0,0,0,0,0,0,0.52057,0.82155,1.0634,1.89499,0,0,0,0,0,0,0.45222,0.71367,0.91346,1.60498,0,0,0,0,0,0,143.04079,143.7338,145.1575,163.6042,0,0,0,0,0,0,144.10797,144.70004,145.97166,164.23295,0,0,0,0,0,0,146.16792,146.81604,148.18102,166.85421,0,0,0,0,0,0,142.93307,143.59624,144.98185,163.34548,0,0,0,0,0,0,146.22769,146.47435,147.22027,164.67183,0,0,0,0,0,0,143.97903,144.32899,145.22989,162.74385,0,0,0,0,0,0,145.158,145.36996,146.06327,163.29545,0,0,0,0,0,0,145.21935,145.6155,146.58866,164.38042,0,0,0,0,0,0,142.95575,143.26983,144.09837,161.34947,0,0,0,0,0,0,0.00291,0.00327,0.00384,0.00502,0,0,0,0,0,0,0.00291,0.00327,0.00383,0.00501,0,0,0,0,0,0,0.00296,0.00332,0.00388,0.00506,0,0,0,0,0,0,0.00285,0.0032,0.00377,0.00493,0,0,0,0,0,0,0.00295,0.0033,0.00387,0.00504,0,0,0,0,0,0,0.00288,0.00324,0.0038,0.00496,0,0,0,0,0,0,0.00291,0.00326,0.00383,0.00501,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00504,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00509,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.0103,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01031,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01335,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0259,0.03877,0.05185,0.08807,0,0,0,0,0,0,0.02519,0.03773,0.05061,0.08644,0,0,0,0,0,0,0.02591,0.04107,0.05476,0.09685,0,0,0,0,0,0,0.02708,0.04363,0.05811,0.10311,0,0,0,0,0,0,0.02134,0.03579,0.04841,0.08845,0,0,0,0,0,0,0.02312,0.03833,0.05162,0.09337,0,0,0,0,0,0,0.02175,0.03618,0.04899,0.08861,0,0,0,0,0,0,0.02467,0.03969,0.05316,0.09423,0,0,0,0,0,0,0.02178,0.0347,0.04665,0.08168,0,0,0,0.00138,0.00234,0.00329,0.00932,0.00117,0.00155,0.0032,0,0,0,0.00129,0.00216,0.00305,0.00837,0.00111,0.00146,0.00299,0,0,0,0.00117,0.00194,0.00316,0.0089,0.00115,0.00152,0.00315,0,0,0,0.00141,0.00238,0.00341,0.0097,0.00119,0.00158,0.00329,0,0,0,0.00112,0.00184,0.00245,0.00582,0.00095,0.00123,0.0024,0,0,0,0.00109,0.00179,0.00255,0.00633,0.00098,0.00127,0.00252,0,0,0,0.00106,0.00174,0.00231,0.00551,0.00095,0.00122,0.00238,0,0,0,0.00112,0.00186,0.00269,0.00697,0.00103,0.00135,0.00269,0,0,0,0.00095,0.00155,0.00225,0.00546,0.00097,0.00125,0.00241,0,0,0,0.02352,0.0257,0.02795,0.0619,0.02299,0.02386,0.02774,0,0,0,0.02397,0.02594,0.02801,0.06098,0.02353,0.02434,0.02787,0,0,0,0.02569,0.02744,0.03032,0.06635,0.02566,0.02652,0.03033,0,0,0,0.02219,0.02442,0.02684,0.06006,0.02161,0.02252,0.02655,0,0,0,0.0251,0.02666,0.02801,0.05808,0.02472,0.02533,0.02794,0,0,0,0.02289,0.02443,0.02613,0.05501,0.02265,0.0233,0.02611,0,0,0,0.02294,0.02439,0.02563,0.05327,0.02268,0.02327,0.02583,0,0,0,0.02415,0.02577,0.02766,0.05885,0.02392,0.02463,0.02769,0,0,0,0.02362,0.02489,0.02643,0.05502,0.02365,0.02425,0.02683,0,0,0,0.00539,0.00732,0.0093,0.02393,0.00493,0.0057,0.00913,0,0,0,0.00526,0.007,0.00883,0.02206,0.00488,0.00559,0.00872,0,0,0,0.00526,0.0068,0.00935,0.02375,0.00523,0.00599,0.00936,0,0,0,0.00529,0.00726,0.0094,0.02446,0.00479,0.00559,0.00916,0,0,0,0.00504,0.00642,0.00761,0.01707,0.00471,0.00525,0.00756,0,0,0,0.00472,0.00608,0.00758,0.01762,0.00451,0.00509,0.00758,0,0,0,0.00467,0.00596,0.00705,0.01589,0.00445,0.00497,0.00724,0,0,0,0.00497,0.0064,0.00807,0.01927,0.00477,0.00539,0.00811,0,0,0,0.00456,0.00569,0.00705,0.01602,0.00459,0.00513,0.00741,0,0,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00139,0.00139,0.00141,0.00158,0,0,0,0,0,0,0.00141,0.00141,0.00143,0.00161,0,0,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00141,0.00141,0.00142,0.00159,0,0,0,0,0,0,0.00139,0.00139,0.0014,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00158,0,0,0,0,0,0,0.00138,0.00138,0.00139,0.00155,0,0,0,0,0,0,0.03194,0.0431,0.05818,0.0959,0,0,0,0,0,0,0.0274,0.03758,0.05144,0.08685,0,0,0,0,0,0,0.0315,0.04421,0.06051,0.10527,0,0,0,0,0,0,0.03483,0.04869,0.06637,0.11434,0,0,0,0,0,0,0.01507,0.02431,0.03602,0.07183,0,0,0,0,0,0,0.01823,0.02838,0.04122,0.07993,0,0,0,0,0,0,0.01419,0.02313,0.03456,0.06937,0,0,0,0,0,0,0.02115,0.03124,0.0442,0.08108,0,0,0,0,0,0,0.0139,0.02181,0.03201,0.06128,0,0 +Pickup,PH40E,2030,0,0,0,0,0,0.02081,0.02106,0.02132,0.02205,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02258,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02473,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02072,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02372,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02168,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02166,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02294,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.0226,0,0,0,0,0,0,0.01013,0.00639,0.00509,0.00653,0,0,0,0,0,0,0.00871,0.00559,0.00452,0.00589,0,0,0,0,0,0,0.00997,0.00657,0.00532,0.00709,0,0,0,0,0,0,0.01103,0.00725,0.00585,0.00775,0,0,0,0,0,0,0.00482,0.00367,0.00325,0.00471,0,0,0,0,0,0,0.00581,0.00428,0.0037,0.0053,0,0,0,0,0,0,0.00456,0.00351,0.00314,0.00458,0,0,0,0,0,0,0.00674,0.00468,0.00393,0.00541,0,0,0,0,0,0,0.00446,0.00329,0.00288,0.00404,0,0,0,0,0,0,0.48616,0.71062,0.90973,1.34019,0,0,0,0,0,0,0.46446,0.68746,0.88496,1.31216,0,0,0,0,0,0,0.49149,0.76317,1.00253,1.54473,0,0,0,0,0,0,0.5329,0.8299,1.0933,1.67533,0,0,0,0,0,0,0.40116,0.67308,0.89775,1.40885,0,0,0,0,0,0,0.42241,0.70399,0.9404,1.48085,0,0,0,0,0,0,0.41389,0.69378,0.92356,1.44225,0,0,0,0,0,0,0.439,0.69848,0.91445,1.40145,0,0,0,0,0,0,0.37472,0.59978,0.77734,1.17461,0,0,0,0,0,0,130.18226,131.40941,133.46247,144.89139,0,0,0,0,0,0,131.12337,132.26249,134.17499,145.37962,0,0,0,0,0,0,133.01295,134.21195,136.22441,147.73491,0,0,0,0,0,0,130.08158,131.28127,133.29867,144.65658,0,0,0,0,0,0,132.95067,133.78245,135.20198,145.53711,0,0,0,0,0,0,130.93814,131.85527,133.41251,143.90688,0,0,0,0,0,0,131.97094,132.76672,134.13123,144.30442,0,0,0,0,0,0,132.07723,133.04163,134.67384,145.3795,0,0,0,0,0,0,129.98753,130.86696,132.34773,142.62728,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00503,0,0,0,0,0,0,0.00285,0.00319,0.00376,0.0049,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00288,0.00322,0.00379,0.00493,0,0,0,0,0,0,0.0029,0.00325,0.00382,0.00498,0,0,0,0,0,0,0.00293,0.00328,0.00385,0.00501,0,0,0,0,0,0,0.00295,0.0033,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01029,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01034,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.0103,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01033,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01038,0.01337,0.01337,0,0,0,0,0,0,0.02052,0.02997,0.04132,0.06464,0,0,0,0,0,0,0.01975,0.02892,0.04005,0.06296,0,0,0,0,0,0,0.02032,0.03135,0.04323,0.06991,0,0,0,0,0,0,0.0212,0.03323,0.0458,0.07428,0,0,0,0,0,0,0.01587,0.02623,0.03704,0.06165,0,0,0,0,0,0,0.0175,0.02844,0.03986,0.06576,0,0,0,0,0,0,0.01619,0.02651,0.03747,0.06185,0,0,0,0,0,0,0.01868,0.0295,0.04108,0.06666,0,0,0,0,0,0,0.01618,0.02549,0.0357,0.05734,0,0,0,0.00118,0.002,0.00292,0.00638,0.00117,0.00155,0.00255,0,0,0,0.00112,0.00191,0.00277,0.0059,0.00111,0.00146,0.00238,0,0,0,0.00102,0.00194,0.00283,0.00612,0.00115,0.00152,0.0025,0,0,0,0.00118,0.00204,0.00298,0.00656,0.00118,0.00157,0.00261,0,0,0,0.00102,0.00166,0.00236,0.00462,0.00095,0.00123,0.00192,0,0,0,0.00098,0.00169,0.00242,0.00484,0.00098,0.00127,0.00202,0,0,0,0.00097,0.00158,0.00223,0.00437,0.00095,0.00122,0.00191,0,0,0,0.001,0.00175,0.00251,0.00516,0.00103,0.00135,0.00215,0,0,0,0.00087,0.00154,0.00218,0.00429,0.00097,0.00125,0.00194,0,0,0,0.02301,0.02484,0.02695,0.05535,0.02298,0.02386,0.02622,0,0,0,0.02356,0.02529,0.02725,0.05551,0.02353,0.02434,0.02649,0,0,0,0.02533,0.0274,0.02943,0.06015,0.02565,0.02652,0.02884,0,0,0,0.02162,0.02352,0.0257,0.05302,0.0216,0.02252,0.02498,0,0,0,0.02486,0.02622,0.02775,0.05546,0.02472,0.02533,0.02689,0,0,0,0.02265,0.02418,0.02578,0.05175,0.02264,0.0233,0.02499,0,0,0,0.02272,0.02401,0.02543,0.05078,0.02267,0.02327,0.02481,0,0,0,0.02385,0.02547,0.02717,0.05484,0.02392,0.02463,0.02648,0,0,0,0.02343,0.02485,0.02624,0.05249,0.02364,0.02425,0.02579,0,0,0,0.00494,0.00656,0.00843,0.01814,0.00492,0.0057,0.00779,0,0,0,0.00489,0.00643,0.00816,0.01722,0.00487,0.00559,0.00749,0,0,0,0.00493,0.00677,0.00856,0.01827,0.00522,0.00599,0.00804,0,0,0,0.00478,0.00647,0.00839,0.01824,0.00478,0.00559,0.00777,0,0,0,0.00483,0.00604,0.00739,0.01474,0.00471,0.00525,0.00663,0,0,0,0.00451,0.00586,0.00728,0.01473,0.00451,0.00509,0.00659,0,0,0,0.00448,0.00562,0.00687,0.01369,0.00444,0.00497,0.00633,0,0,0,0.0047,0.00614,0.00764,0.01573,0.00476,0.00539,0.00703,0,0,0,0.0044,0.00566,0.00688,0.01378,0.00459,0.00513,0.00649,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.0014,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00142,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.0014,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.0014,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00137,0,0,0,0,0,0,0.03011,0.03952,0.05312,0.08021,0,0,0,0,0,0,0.02556,0.03403,0.04637,0.07114,0,0,0,0,0,0,0.02958,0.04009,0.05463,0.08552,0,0,0,0,0,0,0.03287,0.04438,0.06021,0.0936,0,0,0,0,0,0,0.01318,0.0203,0.03018,0.05228,0,0,0,0,0,0,0.01633,0.02426,0.03523,0.05969,0,0,0,0,0,0,0.0123,0.01914,0.02873,0.05007,0,0,0,0,0,0,0.01925,0.02731,0.03856,0.06265,0,0,0,0,0,0,0.01204,0.01814,0.02675,0.04491,0 +Pickup,PH40E,2035,0,0,0,0,0,0,0.02081,0.02106,0.02132,0.02191,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02246,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.0246,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02057,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02364,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02158,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02158,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02284,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02252,0,0,0,0,0,0,0.01008,0.00638,0.0051,0.00601,0,0,0,0,0,0,0.00866,0.00558,0.00453,0.00537,0,0,0,0,0,0,0.00991,0.00656,0.00533,0.00642,0,0,0,0,0,0,0.01097,0.00724,0.00586,0.00703,0,0,0,0,0,0,0.00479,0.00367,0.00325,0.00403,0,0,0,0,0,0,0.00578,0.00428,0.00371,0.00458,0,0,0,0,0,0,0.00454,0.00351,0.00314,0.0039,0,0,0,0,0,0,0.0067,0.00468,0.00394,0.00477,0,0,0,0,0,0,0.00444,0.00329,0.00288,0.00348,0,0,0,0,0,0,0.48635,0.71119,0.9101,1.21773,0,0,0,0,0,0,0.4648,0.68804,0.88528,1.18494,0,0,0,0,0,0,0.49191,0.76389,1.00291,1.38489,0,0,0,0,0,0,0.53336,0.83068,1.0937,1.50454,0,0,0,0,0,0,0.40203,0.67378,0.89797,1.23806,0,0,0,0,0,0,0.42324,0.70472,0.94064,1.30526,0,0,0,0,0,0,0.41481,0.69448,0.92376,1.26748,0,0,0,0,0,0,0.43968,0.6991,0.91471,1.24605,0,0,0,0,0,0,0.37542,0.60029,0.77754,1.04003,0,0,0,0,0,0,130.15524,131.41438,133.47282,138.98054,0,0,0,0,0,0,131.09791,132.26712,134.18438,139.42462,0,0,0,0,0,0,132.9862,134.21683,136.23435,141.69584,0,0,0,0,0,0,130.05463,131.28609,133.30856,138.75323,0,0,0,0,0,0,132.93095,133.7857,135.2087,139.49445,0,0,0,0,0,0,130.91686,131.85882,133.42,137.95791,0,0,0,0,0,0,131.95186,132.76976,134.13747,138.30722,0,0,0,0,0,0,132.05505,133.04541,134.68169,139.37858,0,0,0,0,0,0,129.96789,130.87053,132.35502,136.71497,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.0029,0.00326,0.00383,0.00499,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00504,0,0,0,0,0,0,0.00284,0.00319,0.00376,0.00491,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00287,0.00322,0.00379,0.00494,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00292,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0205,0.03003,0.04134,0.05657,0,0,0,0,0,0,0.01974,0.02898,0.04007,0.05486,0,0,0,0,0,0,0.02031,0.03142,0.04325,0.06041,0,0,0,0,0,0,0.0212,0.03331,0.04583,0.06404,0,0,0,0,0,0,0.01588,0.0263,0.03706,0.05218,0,0,0,0,0,0,0.0175,0.02851,0.03988,0.05597,0,0,0,0,0,0,0.01619,0.02658,0.03749,0.05242,0,0,0,0,0,0,0.01868,0.02957,0.0411,0.05697,0,0,0,0,0,0,0.01618,0.02555,0.03572,0.0489,0,0,0,0.00108,0.00175,0.00233,0.00492,0.00117,0.00155,0.00234,0,0,0,0.00103,0.00167,0.00221,0.00462,0.00111,0.00146,0.00219,0,0,0,0.00105,0.0017,0.00226,0.00475,0.00115,0.00152,0.0023,0,0,0,0.00109,0.00177,0.00237,0.00504,0.00118,0.00157,0.0024,0,0,0,0.00092,0.00146,0.00189,0.00381,0.00095,0.00123,0.00177,0,0,0,0.00093,0.00149,0.00194,0.00394,0.00098,0.00127,0.00186,0,0,0,0.00087,0.00139,0.00179,0.00361,0.00095,0.00122,0.00176,0,0,0,0.00096,0.00153,0.00201,0.00414,0.00103,0.00135,0.00198,0,0,0,0.00085,0.00135,0.00175,0.00355,0.00097,0.00125,0.00178,0,0,0,0.02277,0.02427,0.02563,0.05205,0.02298,0.02386,0.02575,0,0,0,0.02336,0.02476,0.02602,0.05265,0.02353,0.02434,0.02605,0,0,0,0.02541,0.02686,0.02816,0.05706,0.02565,0.02652,0.02837,0,0,0,0.02139,0.02293,0.02433,0.04954,0.02161,0.02252,0.02449,0,0,0,0.02464,0.0258,0.02676,0.05369,0.02472,0.02533,0.02656,0,0,0,0.02253,0.02373,0.02475,0.04977,0.02264,0.0233,0.02464,0,0,0,0.02251,0.0236,0.0245,0.04915,0.02267,0.02327,0.02448,0,0,0,0.02375,0.02501,0.02609,0.05258,0.02392,0.02463,0.0261,0,0,0,0.0234,0.02446,0.02534,0.05088,0.02364,0.02425,0.02546,0,0,0,0.00473,0.00606,0.00726,0.01522,0.00492,0.0057,0.00737,0,0,0,0.00472,0.00596,0.00707,0.01469,0.00487,0.00559,0.0071,0,0,0,0.00501,0.00629,0.00744,0.01553,0.00522,0.00599,0.00763,0,0,0,0.00459,0.00595,0.00718,0.01515,0.00478,0.00559,0.00733,0,0,0,0.00464,0.00566,0.00652,0.01318,0.00471,0.00525,0.00634,0,0,0,0.00441,0.00547,0.00637,0.01298,0.00451,0.00509,0.00628,0,0,0,0.0043,0.00526,0.00605,0.01225,0.00444,0.00497,0.00604,0,0,0,0.00461,0.00573,0.00668,0.01372,0.00477,0.00539,0.00669,0,0,0,0.00437,0.00531,0.00608,0.01236,0.00459,0.00513,0.0062,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00136,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.00134,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00132,0,0,0,0,0,0,0.03003,0.03957,0.05316,0.0751,0,0,0,0,0,0,0.0255,0.03408,0.04641,0.06597,0,0,0,0,0,0,0.02951,0.04015,0.05468,0.07883,0,0,0,0,0,0,0.0328,0.04444,0.06026,0.08659,0,0,0,0,0,0,0.01316,0.02034,0.0302,0.0455,0,0,0,0,0,0,0.0163,0.02431,0.03526,0.05266,0,0,0,0,0,0,0.01228,0.01918,0.02875,0.04337,0,0,0,0,0,0,0.01921,0.02736,0.03859,0.05637,0,0,0,0,0,0,0.01202,0.01818,0.02677,0.03936 +Pickup,PH40E,2040,0,0,0,0,0,0,0,0.02081,0.02106,0.02132,0,0,0,0,0,0,0,0.02148,0.0217,0.02193,0,0,0,0,0,0,0,0.02351,0.02376,0.02401,0,0,0,0,0,0,0,0.01941,0.01967,0.01994,0,0,0,0,0,0,0,0.02299,0.02314,0.0233,0,0,0,0,0,0,0,0.02085,0.02103,0.0212,0,0,0,0,0,0,0,0.02095,0.0211,0.02125,0,0,0,0,0,0,0,0.02203,0.02222,0.02241,0,0,0,0,0,0,0,0.02189,0.02204,0.02219,0,0,0,0,0,0,0,0.01008,0.00638,0.00509,0,0,0,0,0,0,0,0.00867,0.00558,0.00452,0,0,0,0,0,0,0,0.00992,0.00656,0.00532,0,0,0,0,0,0,0,0.01097,0.00724,0.00585,0,0,0,0,0,0,0,0.0048,0.00367,0.00325,0,0,0,0,0,0,0,0.00579,0.00427,0.00371,0,0,0,0,0,0,0,0.00454,0.00351,0.00314,0,0,0,0,0,0,0,0.0067,0.00468,0.00393,0,0,0,0,0,0,0,0.00444,0.00329,0.00288,0,0,0,0,0,0,0,0.48567,0.7107,0.90987,0,0,0,0,0,0,0,0.46413,0.68757,0.88508,0,0,0,0,0,0,0,0.49113,0.76333,1.00267,0,0,0,0,0,0,0,0.5325,0.83008,1.09344,0,0,0,0,0,0,0,0.40132,0.67334,0.89783,0,0,0,0,0,0,0,0.42249,0.70424,0.94049,0,0,0,0,0,0,0,0.41409,0.69404,0.92363,0,0,0,0,0,0,0,0.43896,0.69866,0.91454,0,0,0,0,0,0,0,0.37481,0.59994,0.77741,0,0,0,0,0,0,0,130.14799,131.40506,133.46637,0,0,0,0,0,0,0,131.09118,132.25839,134.1785,0,0,0,0,0,0,0,132.97906,134.20762,136.22808,0,0,0,0,0,0,0,130.0475,131.27681,133.30227,0,0,0,0,0,0,0,132.92599,133.77917,135.20433,0,0,0,0,0,0,0,130.91139,131.85169,133.4153,0,0,0,0,0,0,0,131.94702,132.76349,134.13355,0,0,0,0,0,0,0,132.04928,133.03794,134.67679,0,0,0,0,0,0,0,129.96268,130.86377,132.3506,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.00295,0.0033,0.00388,0,0,0,0,0,0,0,0.00284,0.00319,0.00376,0,0,0,0,0,0,0,0.00293,0.00329,0.00386,0,0,0,0,0,0,0,0.00287,0.00322,0.00379,0,0,0,0,0,0,0,0.00289,0.00325,0.00382,0,0,0,0,0,0,0,0.00292,0.00328,0.00386,0,0,0,0,0,0,0,0.00294,0.0033,0.00389,0,0,0,0,0,0,0,0.0089,0.01035,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00891,0.01035,0.01334,0,0,0,0,0,0,0,0.00886,0.0103,0.01327,0,0,0,0,0,0,0,0.0089,0.01035,0.01333,0,0,0,0,0,0,0,0.00887,0.01031,0.01328,0,0,0,0,0,0,0,0.0089,0.01034,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00893,0.01038,0.01337,0,0,0,0,0,0,0,0.02048,0.02999,0.04132,0,0,0,0,0,0,0,0.01971,0.02894,0.04006,0,0,0,0,0,0,0,0.02029,0.03137,0.04324,0,0,0,0,0,0,0,0.02117,0.03326,0.04581,0,0,0,0,0,0,0,0.01585,0.02626,0.03705,0,0,0,0,0,0,0,0.01748,0.02847,0.03986,0,0,0,0,0,0,0,0.01617,0.02654,0.03748,0,0,0,0,0,0,0,0.01866,0.02953,0.04108,0,0,0,0,0,0,0,0.01616,0.02551,0.03571,0,0,0,0,0.00071,0.00113,0.0015,0.00375,0.00117,0.00155,0,0,0,0,0.00068,0.00108,0.00143,0.00353,0.00111,0.00146,0,0,0,0,0.00069,0.00109,0.00146,0.00363,0.00115,0.00152,0,0,0,0,0.00072,0.00114,0.00153,0.00382,0.00118,0.00157,0,0,0,0,0.0006,0.00094,0.00123,0.00294,0.00095,0.00123,0,0,0,0,0.00061,0.00096,0.00126,0.00304,0.00098,0.00127,0,0,0,0,0.00058,0.0009,0.00116,0.00279,0.00095,0.00122,0,0,0,0,0.00063,0.00099,0.0013,0.00318,0.00103,0.00135,0,0,0,0,0.00056,0.00088,0.00113,0.00277,0.00097,0.00125,0,0,0,0,0.02198,0.02291,0.02378,0.04935,0.02298,0.02386,0,0,0,0,0.0226,0.02348,0.02428,0.05017,0.02353,0.02434,0,0,0,0,0.02464,0.02554,0.02638,0.05447,0.02565,0.02652,0,0,0,0,0.02058,0.02154,0.02244,0.04671,0.0216,0.02252,0,0,0,0,0.02399,0.02471,0.02534,0.0518,0.02472,0.02533,0,0,0,0,0.02187,0.02262,0.02328,0.04777,0.02264,0.0233,0,0,0,0,0.0219,0.02258,0.02316,0.04738,0.02267,0.02327,0,0,0,0,0.02307,0.02385,0.02455,0.05045,0.02392,0.02463,0,0,0,0,0.0228,0.02347,0.02403,0.04919,0.02364,0.02425,0,0,0,0,0.00403,0.00485,0.00562,0.01283,0.00492,0.0057,0,0,0,0,0.00405,0.00482,0.00554,0.01249,0.00487,0.00559,0,0,0,0,0.00433,0.00512,0.00586,0.01325,0.00522,0.00599,0,0,0,0,0.00387,0.00471,0.00551,0.01265,0.00478,0.00559,0,0,0,0,0.00407,0.0047,0.00526,0.01151,0.00471,0.00525,0,0,0,0,0.00382,0.00448,0.00506,0.01121,0.00451,0.00509,0,0,0,0,0.00375,0.00435,0.00487,0.01068,0.00444,0.00497,0,0,0,0,0.00401,0.0047,0.00532,0.01184,0.00477,0.00539,0,0,0,0,0.00384,0.00443,0.00493,0.01086,0.00459,0.00513,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00126,0.00127,0.00129,0,0,0,0,0,0,0,0.00128,0.00129,0.00131,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00128,0.00129,0.0013,0,0,0,0,0,0,0,0.00126,0.00127,0.00128,0,0,0,0,0,0,0,0.00127,0.00128,0.00129,0,0,0,0,0,0,0,0.00127,0.00128,0.0013,0,0,0,0,0,0,0,0.00125,0.00126,0.00127,0,0,0,0,0,0,0,0.03,0.03952,0.05314,0,0,0,0,0,0,0,0.02547,0.03403,0.04639,0,0,0,0,0,0,0,0.02948,0.0401,0.05465,0,0,0,0,0,0,0,0.03276,0.04438,0.06023,0,0,0,0,0,0,0,0.01314,0.02031,0.03019,0,0,0,0,0,0,0,0.01627,0.02427,0.03524,0,0,0,0,0,0,0,0.01226,0.01915,0.02874,0,0,0,0,0,0,0,0.01919,0.02732,0.03857,0,0,0,0,0,0,0,0.012,0.01815,0.02676 +Pickup,PH40E,2045,0,0,0,0,0,0,0,0,0.02081,0.02106,0,0,0,0,0,0,0,0,0.02148,0.0217,0,0,0,0,0,0,0,0,0.02351,0.02376,0,0,0,0,0,0,0,0,0.01941,0.01966,0,0,0,0,0,0,0,0,0.02299,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02103,0,0,0,0,0,0,0,0,0.02095,0.0211,0,0,0,0,0,0,0,0,0.02203,0.02222,0,0,0,0,0,0,0,0,0.02189,0.02204,0,0,0,0,0,0,0,0,0.01008,0.00638,0,0,0,0,0,0,0,0,0.00867,0.00558,0,0,0,0,0,0,0,0,0.00992,0.00656,0,0,0,0,0,0,0,0,0.01097,0.00724,0,0,0,0,0,0,0,0,0.0048,0.00367,0,0,0,0,0,0,0,0,0.00578,0.00427,0,0,0,0,0,0,0,0,0.00454,0.00351,0,0,0,0,0,0,0,0,0.0067,0.00468,0,0,0,0,0,0,0,0,0.00444,0.00329,0,0,0,0,0,0,0,0,0.48529,0.71055,0,0,0,0,0,0,0,0,0.46375,0.68743,0,0,0,0,0,0,0,0,0.4907,0.76315,0,0,0,0,0,0,0,0,0.53204,0.82989,0,0,0,0,0,0,0,0,0.40095,0.67318,0,0,0,0,0,0,0,0,0.42211,0.70408,0,0,0,0,0,0,0,0,0.41372,0.69388,0,0,0,0,0,0,0,0,0.43858,0.69851,0,0,0,0,0,0,0,0,0.37449,0.59982,0,0,0,0,0,0,0,0,130.14245,131.40312,0,0,0,0,0,0,0,0,131.08599,132.25648,0,0,0,0,0,0,0,0,132.97361,134.2057,0,0,0,0,0,0,0,0,130.04203,131.27486,0,0,0,0,0,0,0,0,132.92209,133.77791,0,0,0,0,0,0,0,0,130.90713,131.85022,0,0,0,0,0,0,0,0,131.94331,132.76241,0,0,0,0,0,0,0,0,132.04492,133.03643,0,0,0,0,0,0,0,0,129.95871,130.86251,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.0029,0.00325,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.00284,0.00319,0,0,0,0,0,0,0,0,0.00293,0.00329,0,0,0,0,0,0,0,0,0.00287,0.00322,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.00292,0.00328,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00886,0.0103,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00887,0.01031,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01036,0,0,0,0,0,0,0,0,0.00893,0.01038,0,0,0,0,0,0,0,0,0.02046,0.02997,0,0,0,0,0,0,0,0,0.0197,0.02893,0,0,0,0,0,0,0,0,0.02027,0.03136,0,0,0,0,0,0,0,0,0.02115,0.03324,0,0,0,0,0,0,0,0,0.01584,0.02624,0,0,0,0,0,0,0,0,0.01746,0.02845,0,0,0,0,0,0,0,0,0.01615,0.02652,0,0,0,0,0,0,0,0,0.01864,0.02952,0,0,0,0,0,0,0,0,0.01614,0.0255,0,0,0,0,0,0.00071,0.00112,0.0015,0.00323,0.00117,0,0,0,0,0,0.00068,0.00108,0.00142,0.00304,0.00111,0,0,0,0,0,0.00069,0.00109,0.00145,0.00312,0.00115,0,0,0,0,0,0.00072,0.00114,0.00152,0.00328,0.00118,0,0,0,0,0,0.0006,0.00094,0.00122,0.00255,0.00095,0,0,0,0,0,0.00061,0.00096,0.00125,0.00263,0.00098,0,0,0,0,0,0.00058,0.0009,0.00115,0.00243,0.00095,0,0,0,0,0,0.00063,0.00099,0.0013,0.00275,0.00103,0,0,0,0,0,0.00056,0.00087,0.00113,0.0024,0.00097,0,0,0,0,0,0.02197,0.0229,0.02376,0.04813,0.02298,0,0,0,0,0,0.0226,0.02347,0.02426,0.04905,0.02353,0,0,0,0,0,0.02464,0.02553,0.02635,0.05331,0.02565,0,0,0,0,0,0.02058,0.02153,0.02241,0.04547,0.0216,0,0,0,0,0,0.02399,0.02471,0.02533,0.05093,0.02472,0,0,0,0,0,0.02187,0.02261,0.02326,0.04686,0.02264,0,0,0,0,0,0.0219,0.02257,0.02314,0.04658,0.02267,0,0,0,0,0,0.02306,0.02384,0.02453,0.04948,0.02392,0,0,0,0,0,0.0228,0.02346,0.02403,0.04839,0.02364,0,0,0,0,0,0.00402,0.00484,0.0056,0.01176,0.00492,0,0,0,0,0,0.00404,0.00482,0.00552,0.0115,0.00487,0,0,0,0,0,0.00432,0.00512,0.00584,0.01222,0.00522,0,0,0,0,0,0.00387,0.00471,0.00548,0.01155,0.00478,0,0,0,0,0,0.00406,0.0047,0.00525,0.01074,0.00471,0,0,0,0,0,0.00382,0.00448,0.00505,0.01041,0.00451,0,0,0,0,0,0.00375,0.00435,0.00485,0.00997,0.00444,0,0,0,0,0,0.004,0.00469,0.00531,0.01098,0.00476,0,0,0,0,0,0.00384,0.00443,0.00493,0.01015,0.00459,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.02997,0.03951,0,0,0,0,0,0,0,0,0.02545,0.03402,0,0,0,0,0,0,0,0,0.02945,0.04008,0,0,0,0,0,0,0,0,0.03273,0.04436,0,0,0,0,0,0,0,0,0.01313,0.0203,0,0,0,0,0,0,0,0,0.01626,0.02426,0,0,0,0,0,0,0,0,0.01225,0.01914,0,0,0,0,0,0,0,0,0.01917,0.02731,0,0,0,0,0,0,0,0,0.01199,0.01814 +Pickup,PH40E,2050,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02148,0,0,0,0,0,0,0,0,0,0.02351,0,0,0,0,0,0,0,0,0,0.01941,0,0,0,0,0,0,0,0,0,0.02299,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02095,0,0,0,0,0,0,0,0,0,0.02203,0,0,0,0,0,0,0,0,0,0.02189,0,0,0,0,0,0,0,0,0,0.01008,0,0,0,0,0,0,0,0,0,0.00867,0,0,0,0,0,0,0,0,0,0.00992,0,0,0,0,0,0,0,0,0,0.01097,0,0,0,0,0,0,0,0,0,0.0048,0,0,0,0,0,0,0,0,0,0.00578,0,0,0,0,0,0,0,0,0,0.00454,0,0,0,0,0,0,0,0,0,0.0067,0,0,0,0,0,0,0,0,0,0.00444,0,0,0,0,0,0,0,0,0,0.48529,0,0,0,0,0,0,0,0,0,0.46376,0,0,0,0,0,0,0,0,0,0.49071,0,0,0,0,0,0,0,0,0,0.53205,0,0,0,0,0,0,0,0,0,0.40096,0,0,0,0,0,0,0,0,0,0.42211,0,0,0,0,0,0,0,0,0,0.41373,0,0,0,0,0,0,0,0,0,0.43858,0,0,0,0,0,0,0,0,0,0.3745,0,0,0,0,0,0,0,0,0,130.14248,0,0,0,0,0,0,0,0,0,131.08589,0,0,0,0,0,0,0,0,0,132.97354,0,0,0,0,0,0,0,0,0,130.04196,0,0,0,0,0,0,0,0,0,132.92202,0,0,0,0,0,0,0,0,0,130.90705,0,0,0,0,0,0,0,0,0,131.94336,0,0,0,0,0,0,0,0,0,132.0448,0,0,0,0,0,0,0,0,0,129.95865,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.0029,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.00284,0,0,0,0,0,0,0,0,0,0.00293,0,0,0,0,0,0,0,0,0,0.00287,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.00292,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00886,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00893,0,0,0,0,0,0,0,0,0,0.02046,0,0,0,0,0,0,0,0,0,0.0197,0,0,0,0,0,0,0,0,0,0.02027,0,0,0,0,0,0,0,0,0,0.02115,0,0,0,0,0,0,0,0,0,0.01584,0,0,0,0,0,0,0,0,0,0.01746,0,0,0,0,0,0,0,0,0,0.01615,0,0,0,0,0,0,0,0,0,0.01864,0,0,0,0,0,0,0,0,0,0.01614,0,0,0,0,0,0,0.00071,0.00112,0.0015,0.00304,0,0,0,0,0,0,0.00068,0.00107,0.00142,0.00287,0,0,0,0,0,0,0.00069,0.00108,0.00145,0.00295,0,0,0,0,0,0,0.00071,0.00113,0.00152,0.0031,0,0,0,0,0,0,0.0006,0.00094,0.00122,0.00241,0,0,0,0,0,0,0.00061,0.00095,0.00125,0.00248,0,0,0,0,0,0,0.00057,0.00089,0.00116,0.0023,0,0,0,0,0,0,0.00063,0.00098,0.0013,0.0026,0,0,0,0,0,0,0.00056,0.00087,0.00113,0.00227,0,0,0,0,0,0,0.02197,0.02289,0.02377,0.04772,0,0,0,0,0,0,0.02259,0.02345,0.02427,0.04866,0,0,0,0,0,0,0.02463,0.02551,0.02636,0.05291,0,0,0,0,0,0,0.02057,0.0215,0.02242,0.04504,0,0,0,0,0,0,0.02399,0.0247,0.02533,0.05063,0,0,0,0,0,0,0.02186,0.0226,0.02327,0.04654,0,0,0,0,0,0,0.02189,0.02256,0.02315,0.0463,0,0,0,0,0,0,0.02306,0.02383,0.02454,0.04914,0,0,0,0,0,0,0.0228,0.02346,0.02403,0.04811,0,0,0,0,0,0,0.00402,0.00483,0.00561,0.01138,0,0,0,0,0,0,0.00404,0.0048,0.00552,0.01116,0,0,0,0,0,0,0.00432,0.0051,0.00585,0.01186,0,0,0,0,0,0,0.00386,0.00468,0.00549,0.01118,0,0,0,0,0,0,0.00406,0.00469,0.00525,0.01047,0,0,0,0,0,0,0.00382,0.00447,0.00506,0.01013,0,0,0,0,0,0,0.00375,0.00434,0.00486,0.00973,0,0,0,0,0,0,0.004,0.00468,0.00531,0.01068,0,0,0,0,0,0,0.00384,0.00442,0.00493,0.0099,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.02997,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02945,0,0,0,0,0,0,0,0,0,0.03273,0,0,0,0,0,0,0,0,0,0.01313,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01225,0,0,0,0,0,0,0,0,0,0.01917,0,0,0,0,0,0,0,0,0,0.01199 +Pickup,PH40G,1990,0.04853,0,0,0,0,0,0,0,0,0,0.04512,0,0,0,0,0,0,0,0,0,0.05058,0,0,0,0,0,0,0,0,0,0.04966,0,0,0,0,0,0,0,0,0,0.03589,0,0,0,0,0,0,0,0,0,0.03633,0,0,0,0,0,0,0,0,0,0.03311,0,0,0,0,0,0,0,0,0,0.04015,0,0,0,0,0,0,0,0,0,0.0339,0,0,0,0,0,0,0,0,0,0.05721,0,0,0,0,0,0,0,0,0,0.04793,0,0,0,0,0,0,0,0,0,0.06232,0,0,0,0,0,0,0,0,0,0.06483,0,0,0,0,0,0,0,0,0,0.05407,0,0,0,0,0,0,0,0,0,0.05931,0,0,0,0,0,0,0,0,0,0.05417,0,0,0,0,0,0,0,0,0,0.0534,0,0,0,0,0,0,0,0,0,0.04241,0,0,0,0,0,0,0,0,0,35.07906,0,0,0,0,0,0,0,0,0,31.27098,0,0,0,0,0,0,0,0,0,38.98308,0,0,0,0,0,0,0,0,0,40.45848,0,0,0,0,0,0,0,0,0,36.19404,0,0,0,0,0,0,0,0,0,38.9985,0,0,0,0,0,0,0,0,0,37.35767,0,0,0,0,0,0,0,0,0,35.04495,0,0,0,0,0,0,0,0,0,28.57715,0,0,0,0,0,0,0,0,0,309.76857,0,0,0,0,0,0,0,0,0,310.48098,0,0,0,0,0,0,0,0,0,314.31655,0,0,0,0,0,0,0,0,0,308.79709,0,0,0,0,0,0,0,0,0,310.27577,0,0,0,0,0,0,0,0,0,307.51573,0,0,0,0,0,0,0,0,0,307.96362,0,0,0,0,0,0,0,0,0,310.2278,0,0,0,0,0,0,0,0,0,306.35158,0,0,0,0,0,0,0,0,0,0.06266,0,0,0,0,0,0,0,0,0,0.06272,0,0,0,0,0,0,0,0,0,0.06372,0,0,0,0,0,0,0,0,0,0.06141,0,0,0,0,0,0,0,0,0,0.06343,0,0,0,0,0,0,0,0,0,0.06208,0,0,0,0,0,0,0,0,0,0.0626,0,0,0,0,0,0,0,0,0,0.0632,0,0,0,0,0,0,0,0,0,0.06369,0,0,0,0,0,0,0,0,0,0.02053,0,0,0,0,0,0,0,0,0,0.02055,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.02049,0,0,0,0,0,0,0,0,0,0.02052,0,0,0,0,0,0,0,0,0,0.02054,0,0,0,0,0,0,0,0,0,0.02056,0,0,0,0,0,0,0,0,0,2.53113,0,0,0,0,0,0,0,0,0,2.38486,0,0,0,0,0,0,0,0,0,2.67037,0,0,0,0,0,0,0,0,0,2.83383,0,0,0,0,0,0,0,0,0,2.61703,0,0,0,0,0,0,0,0,0,2.75096,0,0,0,0,0,0,0,0,0,2.62288,0,0,0,0,0,0,0,0,0,2.76787,0,0,0,0,0,0,0,0,0,2.25703,0,0,0,0,0,0,0,0,0,0.04953,0,0,0,0,0,0,0.00074,0.00117,0.00155,0.04325,0,0,0,0,0,0,0.00071,0.00111,0.00146,0.04823,0,0,0,0,0,0,0.00073,0.00115,0.00152,0.05311,0,0,0,0,0,0,0.00075,0.00118,0.00157,0.02579,0,0,0,0,0,0,0.00061,0.00095,0.00123,0.03017,0,0,0,0,0,0,0.00063,0.00098,0.00127,0.02477,0,0,0,0,0,0,0.00061,0.00095,0.00122,0.03429,0,0,0,0,0,0,0.00066,0.00103,0.00135,0.02451,0,0,0,0,0,0,0.00063,0.00097,0.00125,0.13141,0,0,0,0,0,0,0.02203,0.02298,0.02386,0.11768,0,0,0,0,0,0,0.02264,0.02353,0.02434,0.13192,0,0,0,0,0,0,0.02471,0.02565,0.02652,0.13906,0,0,0,0,0,0,0.02063,0.0216,0.02252,0.07947,0,0,0,0,0,0,0.024,0.02472,0.02533,0.08737,0,0,0,0,0,0,0.02189,0.02264,0.0233,0.075,0,0,0,0,0,0,0.02196,0.02267,0.02327,0.098,0,0,0,0,0,0,0.02311,0.02392,0.02463,0.07487,0,0,0,0,0,0,0.02292,0.02364,0.02425,0.10083,0,0,0,0,0,0,0.00407,0.00492,0.0057,0.08815,0,0,0,0,0,0,0.00408,0.00487,0.00559,0.09923,0,0,0,0,0,0,0.00439,0.00522,0.00599,0.10868,0,0,0,0,0,0,0.00392,0.00478,0.00559,0.05314,0,0,0,0,0,0,0.00408,0.00471,0.00525,0.06176,0,0,0,0,0,0,0.00384,0.00451,0.00509,0.05073,0,0,0,0,0,0,0.00381,0.00444,0.00497,0.0703,0,0,0,0,0,0,0.00405,0.00477,0.00539,0.0499,0,0,0,0,0,0,0.00395,0.00459,0.00513,0.01373,0,0,0,0,0,0,0,0,0,0.01548,0,0,0,0,0,0,0,0,0,0.02199,0,0,0,0,0,0,0,0,0,0.02016,0,0,0,0,0,0,0,0,0,0.01794,0,0,0,0,0,0,0,0,0,0.01978,0,0,0,0,0,0,0,0,0,0.018,0,0,0,0,0,0,0,0,0,0.01779,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,2.11282,0,0,0,0,0,0,0,0,0,1.86289,0,0,0,0,0,0,0,0,0,2.3408,0,0,0,0,0,0,0,0,0,2.4215,0,0,0,0,0,0,0,0,0,2.26922,0,0,0,0,0,0,0,0,0,2.3711,0,0,0,0,0,0,0,0,0,2.26492,0,0,0,0,0,0,0,0,0,2.19953,0,0,0,0,0,0,0,0,0,1.78969,0,0,0,0,0,0,0,0,0 +Pickup,PH40G,1995,0.02751,0.03727,0,0,0,0,0,0,0,0,0.02719,0.0355,0,0,0,0,0,0,0,0,0.03004,0.03958,0,0,0,0,0,0,0,0,0.0267,0.03735,0,0,0,0,0,0,0,0,0.02609,0.03059,0,0,0,0,0,0,0,0,0.02458,0.02998,0,0,0,0,0,0,0,0,0.02387,0.02811,0,0,0,0,0,0,0,0,0.0264,0.03275,0,0,0,0,0,0,0,0,0.02478,0.02898,0,0,0,0,0,0,0,0,0.03917,0.04477,0,0,0,0,0,0,0,0,0.03627,0.03853,0,0,0,0,0,0,0,0,0.0439,0.05067,0,0,0,0,0,0,0,0,0.04503,0.05493,0,0,0,0,0,0,0,0,0.03946,0.0455,0,0,0,0,0,0,0,0,0.04189,0.05004,0,0,0,0,0,0,0,0,0.03918,0.04569,0,0,0,0,0,0,0,0,0.03934,0.04539,0,0,0,0,0,0,0,0,0.03291,0.03475,0,0,0,0,0,0,0,0,16.55049,22.93876,0,0,0,0,0,0,0,0,16.07993,21.06143,0,0,0,0,0,0,0,0,18.86972,25.57563,0,0,0,0,0,0,0,0,19.71238,27.57242,0,0,0,0,0,0,0,0,17.93665,24.48259,0,0,0,0,0,0,0,0,18.95962,26.26305,0,0,0,0,0,0,0,0,18.51493,25.54084,0,0,0,0,0,0,0,0,17.62792,24.39996,0,0,0,0,0,0,0,0,14.45226,19.49302,0,0,0,0,0,0,0,0,242.7102,259.3027,0,0,0,0,0,0,0,0,244.36161,260.4985,0,0,0,0,0,0,0,0,248.17166,264.55828,0,0,0,0,0,0,0,0,241.8919,258.29446,0,0,0,0,0,0,0,0,247.36505,261.92345,0,0,0,0,0,0,0,0,243.37201,258.40709,0,0,0,0,0,0,0,0,245.03455,259.41254,0,0,0,0,0,0,0,0,245.86106,261.10087,0,0,0,0,0,0,0,0,242.38329,257.32786,0,0,0,0,0,0,0,0,0.04639,0.05878,0,0,0,0,0,0,0,0,0.0465,0.05886,0,0,0,0,0,0,0,0,0.04739,0.05981,0,0,0,0,0,0,0,0,0.04538,0.0576,0,0,0,0,0,0,0,0,0.04715,0.05954,0,0,0,0,0,0,0,0,0.046,0.05825,0,0,0,0,0,0,0,0,0.04637,0.05874,0,0,0,0,0,0,0,0,0.04689,0.05931,0,0,0,0,0,0,0,0,0.04722,0.05976,0,0,0,0,0,0,0,0,0.05276,0.04229,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05272,0.04225,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05269,0.04223,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05272,0.04226,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05289,0.04239,0,0,0,0,0,0,0,0,2.08064,2.48504,0,0,0,0,0,0,0,0,2.05287,2.34451,0,0,0,0,0,0,0,0,2.24514,2.54934,0,0,0,0,0,0,0,0,2.33983,2.80384,0,0,0,0,0,0,0,0,2.19331,2.59615,0,0,0,0,0,0,0,0,2.29135,2.69495,0,0,0,0,0,0,0,0,2.22014,2.61358,0,0,0,0,0,0,0,0,2.32703,2.74151,0,0,0,0,0,0,0,0,1.92696,2.24397,0,0,0,0,0,0,0,0,0.0134,0.02933,0,0,0,0,0,0,0.00074,0.00117,0.01173,0.0256,0,0,0,0,0,0,0.00071,0.00111,0.01301,0.02854,0,0,0,0,0,0,0.00073,0.00115,0.01425,0.03131,0,0,0,0,0,0,0.00075,0.00118,0.00705,0.0152,0,0,0,0,0,0,0.00061,0.00095,0.0082,0.01773,0,0,0,0,0,0,0.00063,0.00098,0.0068,0.0146,0,0,0,0,0,0,0.00061,0.00095,0.00934,0.02027,0,0,0,0,0,0,0.00066,0.00103,0.00678,0.01454,0,0,0,0,0,0,0.00063,0.00097,0.05,0.08584,0,0,0,0,0,0,0.02202,0.02298,0.04694,0.07794,0,0,0,0,0,0,0.02264,0.02353,0.05206,0.08684,0,0,0,0,0,0,0.02471,0.02565,0.05078,0.08942,0,0,0,0,0,0,0.02062,0.0216,0.03804,0.05587,0,0,0,0,0,0,0.024,0.02472,0.0385,0.05944,0,0,0,0,0,0,0.02189,0.02264,0.03541,0.0525,0,0,0,0,0,0,0.02196,0.02267,0.0422,0.06655,0,0,0,0,0,0,0.02311,0.02392,0.03615,0.0531,0,0,0,0,0,0,0.02292,0.02364,0.02882,0.06052,0,0,0,0,0,0,0.00407,0.00492,0.02559,0.05301,0,0,0,0,0,0,0.00408,0.00487,0.02859,0.05935,0,0,0,0,0,0,0.00439,0.00522,0.03058,0.06476,0,0,0,0,0,0,0.00392,0.00478,0.01649,0.03227,0,0,0,0,0,0,0.00407,0.00471,0.01853,0.03706,0,0,0,0,0,0,0.00384,0.00451,0.01571,0.03083,0,0,0,0,0,0,0.00381,0.00444,0.02094,0.04248,0,0,0,0,0,0,0.00405,0.00476,0.01565,0.03065,0,0,0,0,0,0,0.00395,0.00459,0.01073,0.00551,0,0,0,0,0,0,0,0,0.01218,0.00559,0,0,0,0,0,0,0,0,0.01737,0.00579,0,0,0,0,0,0,0,0,0.01579,0.00968,0,0,0,0,0,0,0,0,0.0143,0.0057,0,0,0,0,0,0,0,0,0.01565,0.00565,0,0,0,0,0,0,0,0,0.01432,0.00775,0,0,0,0,0,0,0,0,0.01407,0.00882,0,0,0,0,0,0,0,0,0.00662,0.00324,0,0,0,0,0,0,0,0,1.46325,1.81021,0,0,0,0,0,0,0,0,1.40068,1.64808,0,0,0,0,0,0,0,0,1.66111,2.05515,0,0,0,0,0,0,0,0,1.68667,2.19368,0,0,0,0,0,0,0,0,1.60438,2.04812,0,0,0,0,0,0,0,0,1.64584,2.13632,0,0,0,0,0,0,0,0,1.59029,2.04471,0,0,0,0,0,0,0,0,1.58411,2.0166,0,0,0,0,0,0,0,0,1.34248,1.61492,0,0,0,0,0,0,0,0 +Pickup,PH40G,2000,0.02384,0.02543,0.03195,0,0,0,0,0,0,0,0.02406,0.02542,0.03095,0,0,0,0,0,0,0,0.02644,0.02798,0.03433,0,0,0,0,0,0,0,0.02266,0.02438,0.0315,0,0,0,0,0,0,0,0.02438,0.02512,0.0281,0,0,0,0,0,0,0,0.02252,0.02341,0.02699,0,0,0,0,0,0,0,0.02228,0.02298,0.02579,0,0,0,0,0,0,0,0.024,0.02504,0.02927,0,0,0,0,0,0,0,0.02322,0.02393,0.0267,0,0,0,0,0,0,0,0.02226,0.03259,0.04418,0,0,0,0,0,0,0,0.02081,0.0313,0.03922,0,0,0,0,0,0,0,0.02524,0.03775,0.05114,0,0,0,0,0,0,0,0.02579,0.0393,0.05226,0,0,0,0,0,0,0,0.01944,0.03188,0.04408,0,0,0,0,0,0,0,0.02106,0.03406,0.04677,0,0,0,0,0,0,0,0.01911,0.03199,0.04247,0,0,0,0,0,0,0,0.02102,0.03345,0.04328,0,0,0,0,0,0,0,0.01731,0.02896,0.03504,0,0,0,0,0,0,0,5.12962,8.16348,15.04953,0,0,0,0,0,0,0,4.99127,8.03463,13.70246,0,0,0,0,0,0,0,5.95952,9.50757,17.18178,0,0,0,0,0,0,0,6.15701,9.88798,17.48577,0,0,0,0,0,0,0,4.9654,8.51225,15.71439,0,0,0,0,0,0,0,5.31776,8.98237,16.46462,0,0,0,0,0,0,0,5.06318,8.7791,15.72537,0,0,0,0,0,0,0,5.17315,8.7429,15.26942,0,0,0,0,0,0,0,4.22624,7.50259,12.44636,0,0,0,0,0,0,0,259.65803,261.99721,263.42668,0,0,0,0,0,0,0,261.76802,263.95163,264.89978,0,0,0,0,0,0,0,265.55252,267.85066,269.06354,0,0,0,0,0,0,0,259.32721,261.60067,262.7578,0,0,0,0,0,0,0,266.18159,267.81164,267.1362,0,0,0,0,0,0,0,261.78099,263.57171,263.33802,0,0,0,0,0,0,0,264.0998,265.66506,264.74677,0,0,0,0,0,0,0,264.07883,265.94876,265.96498,0,0,0,0,0,0,0,260.20025,261.92676,261.738,0,0,0,0,0,0,0,0.02562,0.02853,0.04389,0,0,0,0,0,0,0,0.0257,0.0286,0.04394,0,0,0,0,0,0,0,0.02624,0.02915,0.04463,0,0,0,0,0,0,0,0.02503,0.02791,0.04302,0,0,0,0,0,0,0,0.0261,0.029,0.04443,0,0,0,0,0,0,0,0.02542,0.02829,0.04349,0,0,0,0,0,0,0,0.02562,0.02852,0.04385,0,0,0,0,0,0,0,0.02593,0.02884,0.04427,0,0,0,0,0,0,0,0.0261,0.02904,0.04461,0,0,0,0,0,0,0,0.03109,0.04053,0.04237,0,0,0,0,0,0,0,0.03112,0.04058,0.04241,0,0,0,0,0,0,0,0.03111,0.04056,0.04238,0,0,0,0,0,0,0,0.03096,0.04036,0.04221,0,0,0,0,0,0,0,0.03109,0.04053,0.04235,0,0,0,0,0,0,0,0.03098,0.0404,0.04224,0,0,0,0,0,0,0,0.03106,0.0405,0.04234,0,0,0,0,0,0,0,0.03113,0.04059,0.04242,0,0,0,0,0,0,0,0.0312,0.04068,0.0425,0,0,0,0,0,0,0,0.75644,1.04909,1.76194,0,0,0,0,0,0,0,0.74387,1.0399,1.66867,0,0,0,0,0,0,0,0.87221,1.1468,1.87413,0,0,0,0,0,0,0,0.89329,1.22235,1.93119,0,0,0,0,0,0,0,0.8289,1.13875,1.87972,0,0,0,0,0,0,0,0.86386,1.16417,1.90739,0,0,0,0,0,0,0,0.84078,1.16047,1.81692,0,0,0,0,0,0,0,0.88094,1.20969,1.90528,0,0,0,0,0,0,0,0.73331,1.03005,1.58991,0,0,0,0,0,0,0,0.00742,0.01037,0.02062,0,0,0,0,0,0,0.00074,0.00651,0.00908,0.01797,0,0,0,0,0,0,0.00071,0.00709,0.00992,0.01987,0,0,0,0,0,0,0.00073,0.00773,0.01083,0.02183,0,0,0,0,0,0,0.00075,0.00394,0.00546,0.01064,0,0,0,0,0,0,0.00061,0.00453,0.00629,0.01238,0,0,0,0,0,0,0.00063,0.00385,0.00533,0.0103,0,0,0,0,0,0,0.00061,0.00519,0.00723,0.01422,0,0,0,0,0,0,0.00066,0.00392,0.00543,0.01036,0,0,0,0,0,0,0.00063,0.03637,0.04272,0.06611,0,0,0,0,0,0,0.02202,0.03508,0.04056,0.06075,0,0,0,0,0,0,0.02264,0.03852,0.04451,0.06724,0,0,0,0,0,0,0.02471,0.03581,0.04252,0.06764,0,0,0,0,0,0,0.02062,0.0311,0.03426,0.04579,0,0,0,0,0,0,0.024,0.03026,0.03393,0.04756,0,0,0,0,0,0,0.02189,0.02885,0.03195,0.04292,0,0,0,0,0,0,0.02196,0.03284,0.03717,0.05285,0,0,0,0,0,0,0.02311,0.02982,0.03298,0.04388,0,0,0,0,0,0,0.02292,0.01676,0.02238,0.04307,0,0,0,0,0,0,0.00407,0.01509,0.01994,0.0378,0,0,0,0,0,0,0.00408,0.01661,0.0219,0.04202,0,0,0,0,0,0,0.00439,0.01734,0.02328,0.0455,0,0,0,0,0,0,0.00392,0.01035,0.01315,0.02336,0,0,0,0,0,0,0.00407,0.01124,0.01449,0.02655,0,0,0,0,0,0,0.00384,0.0099,0.01265,0.02236,0,0,0,0,0,0,0.00381,0.01265,0.01649,0.03036,0,0,0,0,0,0,0.00405,0.01005,0.01285,0.02249,0,0,0,0,0,0,0.00395,0.01147,0.00557,0.00504,0,0,0,0,0,0,0,0.01304,0.00566,0.00507,0,0,0,0,0,0,0,0.0186,0.00586,0.00515,0,0,0,0,0,0,0,0.01693,0.00982,0.00503,0,0,0,0,0,0,0,0.01538,0.00583,0.00511,0,0,0,0,0,0,0,0.01683,0.00576,0.00504,0,0,0,0,0,0,0,0.01543,0.00794,0.00507,0,0,0,0,0,0,0,0.0151,0.00898,0.00456,0,0,0,0,0,0,0,0.00709,0.00329,0.00237,0,0,0,0,0,0,0,0.4836,0.81498,1.47434,0,0,0,0,0,0,0,0.4692,0.80086,1.33632,0,0,0,0,0,0,0,0.55761,0.95058,1.70176,0,0,0,0,0,0,0,0.57229,0.9868,1.72824,0,0,0,0,0,0,0,0.48195,0.86852,1.61023,0,0,0,0,0,0,0,0.5025,0.90307,1.65146,0,0,0,0,0,0,0,0.47702,0.86754,1.55555,0,0,0,0,0,0,0,0.50817,0.89925,1.56273,0,0,0,0,0,0,0,0.42218,0.78074,1.28114,0,0,0,0,0,0,0 +Pickup,PH40G,2005,0.0215,0.02216,0.02299,0.02734,0,0,0,0,0,0,0.02209,0.02262,0.02333,0.02706,0,0,0,0,0,0,0.02432,0.02446,0.02507,0.02976,0,0,0,0,0,0,0.02023,0.02081,0.02169,0.02645,0,0,0,0,0,0,0.02335,0.0237,0.02414,0.0261,0,0,0,0,0,0,0.0213,0.02156,0.02202,0.02451,0,0,0,0,0,0,0.02128,0.02158,0.02198,0.02382,0,0,0,0,0,0,0.02253,0.02285,0.02337,0.0263,0,0,0,0,0,0,0.02216,0.0224,0.02273,0.02472,0,0,0,0,0,0,0.0152,0.01155,0.01221,0.02544,0,0,0,0,0,0,0.0139,0.01046,0.01135,0.02301,0,0,0,0,0,0,0.01554,0.01173,0.0127,0.029,0,0,0,0,0,0,0.0158,0.0134,0.01357,0.03058,0,0,0,0,0,0,0.00981,0.00852,0.00981,0.02415,0,0,0,0,0,0,0.01095,0.00923,0.01043,0.02578,0,0,0,0,0,0,0.00939,0.00885,0.00964,0.02332,0,0,0,0,0,0,0.01192,0.01018,0.01047,0.02483,0,0,0,0,0,0,0.00799,0.00688,0.00779,0.02052,0,0,0,0,0,0,2.49883,3.79272,4.91778,8.94899,0,0,0,0,0,0,2.43036,3.73186,4.92581,8.52828,0,0,0,0,0,0,2.68991,4.40328,5.89108,10.32223,0,0,0,0,0,0,2.79462,4.67579,5.78261,10.761,0,0,0,0,0,0,2.41196,3.95413,5.34889,9.56865,0,0,0,0,0,0,2.49419,4.14736,5.58117,9.95342,0,0,0,0,0,0,2.47761,4.25627,5.40286,9.66101,0,0,0,0,0,0,2.53818,4.39345,5.37855,9.55236,0,0,0,0,0,0,2.00894,3.66647,4.82534,8.21743,0,0,0,0,0,0,272.20226,273.52307,276.48712,276.61527,0,0,0,0,0,0,274.58457,275.81078,278.56434,278.21407,0,0,0,0,0,0,278.33847,279.62917,282.5243,282.44583,0,0,0,0,0,0,272.04728,273.30884,276.20669,276.15614,0,0,0,0,0,0,279.80708,280.69417,282.71229,280.7449,0,0,0,0,0,0,275.12099,276.10869,278.33086,276.83445,0,0,0,0,0,0,277.829,278.67527,280.60908,278.44821,0,0,0,0,0,0,277.36762,278.40223,280.73824,279.46319,0,0,0,0,0,0,273.38089,274.3566,276.49097,274.88313,0,0,0,0,0,0,0.00507,0.00544,0.0064,0.02049,0,0,0,0,0,0,0.00508,0.00545,0.00641,0.0205,0,0,0,0,0,0,0.00517,0.00554,0.0065,0.02078,0,0,0,0,0,0,0.00497,0.00533,0.00628,0.02011,0,0,0,0,0,0,0.00514,0.00551,0.00647,0.02069,0,0,0,0,0,0,0.00503,0.00539,0.00634,0.02029,0,0,0,0,0,0,0.00507,0.00543,0.0064,0.02047,0,0,0,0,0,0,0.00512,0.00549,0.00645,0.02064,0,0,0,0,0,0,0.00516,0.00553,0.00651,0.02081,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.02571,0,0,0,0,0,0,0.01255,0.01443,0.01776,0.02574,0,0,0,0,0,0,0.01255,0.01442,0.01776,0.02572,0,0,0,0,0,0,0.01249,0.01435,0.01767,0.02561,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.0257,0,0,0,0,0,0,0.0125,0.01436,0.01768,0.02563,0,0,0,0,0,0,0.01253,0.0144,0.01773,0.02569,0,0,0,0,0,0,0.01256,0.01443,0.01777,0.02574,0,0,0,0,0,0,0.01258,0.01446,0.01781,0.0258,0,0,0,0,0,0,0.28844,0.4567,0.59466,0.89365,0,0,0,0,0,0,0.28327,0.44692,0.5933,0.86412,0,0,0,0,0,0,0.30703,0.4943,0.64683,0.97862,0,0,0,0,0,0,0.30618,0.54338,0.67603,1.0224,0,0,0,0,0,0,0.28735,0.47746,0.63151,0.96893,0,0,0,0,0,0,0.29749,0.4943,0.64683,0.98751,0,0,0,0,0,0,0.29163,0.50132,0.63067,0.94673,0,0,0,0,0,0,0.31397,0.52292,0.64577,1.00185,0,0,0,0,0,0,0.24569,0.35067,0.46092,0.86731,0,0,0,0,0,0,0.05184,0.00368,0.00501,0.01209,0,0,0,0,0,0,0.04535,0.00327,0.00444,0.01063,0,0,0,0,0,0,0.05068,0.00301,0.00407,0.01155,0,0,0,0,0,0,0.05562,0.00373,0.0051,0.01268,0,0,0,0,0,0,0.02726,0.0023,0.00314,0.00664,0,0,0,0,0,0,0.03182,0.00235,0.0032,0.00752,0,0,0,0,0,0,0.02619,0.00217,0.00295,0.00633,0,0,0,0,0,0,0.0361,0.0026,0.00353,0.00852,0,0,0,0,0,0,0.02582,0.00197,0.00266,0.00631,0,0,0,0,0,0,0.15681,0.02832,0.03134,0.04728,0,0,0,0,0,0,0.14335,0.02809,0.03074,0.0446,0,0,0,0,0,0,0.1604,0.02953,0.03189,0.0488,0,0,0,0,0,0,0.16357,0.02709,0.03018,0.04733,0,0,0,0,0,0,0.10532,0.02755,0.02939,0.03709,0,0,0,0,0,0,0.11149,0.02552,0.02738,0.03694,0,0,0,0,0,0,0.09872,0.02524,0.02693,0.03431,0,0,0,0,0,0,0.12361,0.02725,0.02928,0.04038,0,0,0,0,0,0,0.09925,0.02571,0.02719,0.03517,0,0,0,0,0,0,0.10788,0.00963,0.01231,0.02641,0,0,0,0,0,0,0.09491,0.0089,0.01124,0.02351,0,0,0,0,0,0,0.10695,0.00865,0.01074,0.0257,0,0,0,0,0,0,0.11601,0.00962,0.01236,0.02753,0,0,0,0,0,0,0.05884,0.00721,0.00884,0.01565,0,0,0,0,0,0,0.06757,0.00704,0.00869,0.01715,0,0,0,0,0,0,0.05608,0.00671,0.0082,0.01473,0,0,0,0,0,0,0.07655,0.0077,0.0095,0.01932,0,0,0,0,0,0,0.05513,0.00641,0.00772,0.01479,0,0,0,0,0,0,0.01202,0.00582,0.00529,0.00176,0,0,0,0,0,0,0.01368,0.00592,0.00533,0.00177,0,0,0,0,0,0,0.0195,0.00612,0.00541,0.0018,0,0,0,0,0,0,0.01776,0.01026,0.00529,0.00176,0,0,0,0,0,0,0.01617,0.00611,0.00541,0.00179,0,0,0,0,0,0,0.01769,0.00604,0.00533,0.00177,0,0,0,0,0,0,0.01623,0.00833,0.00537,0.00178,0,0,0,0,0,0,0.01585,0.00941,0.00481,0.00176,0,0,0,0,0,0,0.00745,0.00344,0.0025,0.00162,0,0,0,0,0,0,0.21324,0.26238,0.36053,0.87318,0,0,0,0,0,0,0.19842,0.24505,0.34113,0.80987,0,0,0,0,0,0,0.22293,0.27379,0.38038,0.98281,0,0,0,0,0,0,0.22839,0.30666,0.40263,1.02159,0,0,0,0,0,0,0.15719,0.21896,0.31675,0.89741,0,0,0,0,0,0,0.16971,0.23018,0.32876,0.92458,0,0,0,0,0,0,0.15185,0.22318,0.30923,0.8695,0,0,0,0,0,0,0.18625,0.25477,0.33999,0.9136,0,0,0,0,0,0,0.13273,0.18736,0.26838,0.77673,0,0,0,0,0,0 +Pickup,PH40G,2010,0,0.02122,0.02183,0.02253,0.02575,0,0,0,0,0,0,0.02182,0.02235,0.02297,0.02573,0,0,0,0,0,0,0.02374,0.02419,0.02512,0.02818,0,0,0,0,0,0,0.01984,0.02048,0.02125,0.02472,0,0,0,0,0,0,0.02323,0.02358,0.02394,0.02547,0,0,0,0,0,0,0.02107,0.02143,0.02191,0.02371,0,0,0,0,0,0,0.02115,0.02148,0.02179,0.02319,0,0,0,0,0,0,0.02227,0.02267,0.02321,0.02531,0,0,0,0,0,0,0.02202,0.0223,0.02269,0.02407,0,0,0,0,0,0,0.01083,0.00988,0.00851,0.01739,0,0,0,0,0,0,0.00951,0.00907,0.00774,0.01599,0,0,0,0,0,0,0.01033,0.0102,0.00872,0.01939,0,0,0,0,0,0,0.01222,0.01123,0.00968,0.02082,0,0,0,0,0,0,0.00701,0.00808,0.00676,0.01572,0,0,0,0,0,0,0.00749,0.00843,0.00712,0.01677,0,0,0,0,0,0,0.00724,0.00799,0.00669,0.01531,0,0,0,0,0,0,0.00865,0.0084,0.00744,0.01661,0,0,0,0,0,0,0.0058,0.00623,0.00652,0.01405,0,0,0,0,0,0,1.72061,2.74102,3.58502,6.4091,0,0,0,0,0,0,1.64197,2.71832,3.53004,6.25353,0,0,0,0,0,0,1.90217,3.18773,3.99381,7.52788,0,0,0,0,0,0,1.99214,3.15166,4.23997,7.90904,0,0,0,0,0,0,1.52014,2.78595,3.71385,6.94439,0,0,0,0,0,0,1.62622,2.9305,3.83855,7.24726,0,0,0,0,0,0,1.63437,2.83102,3.80371,7.04808,0,0,0,0,0,0,1.78892,2.87104,3.8016,6.98109,0,0,0,0,0,0,1.45423,2.54332,3.35073,6.03273,0,0,0,0,0,0,258.982,260.13634,262.47802,272.9807,0,0,0,0,0,0,261.2575,262.2648,264.36628,274.47183,0,0,0,0,0,0,264.83046,265.91704,268.16522,278.65589,0,0,0,0,0,0,258.82207,259.92387,262.19675,272.57002,0,0,0,0,0,0,266.24776,266.75077,268.02288,276.68567,0,0,0,0,0,0,261.79149,262.44192,263.95564,272.95718,0,0,0,0,0,0,264.37065,264.82071,266.00526,274.44882,0,0,0,0,0,0,263.9185,264.64016,266.27061,275.55026,0,0,0,0,0,0,260.13985,260.75493,262.16893,270.92047,0,0,0,0,0,0,0.00483,0.00544,0.00652,0.01289,0,0,0,0,0,0,0.00484,0.00545,0.00652,0.01288,0,0,0,0,0,0,0.00492,0.00554,0.00662,0.01305,0,0,0,0,0,0,0.00473,0.00533,0.0064,0.01266,0,0,0,0,0,0,0.0049,0.00551,0.00659,0.013,0,0,0,0,0,0,0.00479,0.00539,0.00646,0.01276,0,0,0,0,0,0,0.00483,0.00544,0.00651,0.01287,0,0,0,0,0,0,0.00488,0.00549,0.00657,0.01297,0,0,0,0,0,0,0.00491,0.00553,0.00662,0.01308,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.0183,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.01829,0,0,0,0,0,0,0.00942,0.0109,0.01366,0.0182,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00943,0.01091,0.01367,0.01822,0,0,0,0,0,0,0.00945,0.01093,0.01371,0.01827,0,0,0,0,0,0,0.00947,0.01096,0.01374,0.0183,0,0,0,0,0,0,0.00949,0.01098,0.01377,0.01834,0,0,0,0,0,0,0.10442,0.16865,0.15241,0.46982,0,0,0,0,0,0,0.1008,0.16773,0.1505,0.46098,0,0,0,0,0,0,0.10414,0.1802,0.16066,0.5253,0,0,0,0,0,0,0.11257,0.18925,0.16949,0.55472,0,0,0,0,0,0,0.09749,0.17291,0.15258,0.51553,0,0,0,0,0,0,0.10078,0.17843,0.15748,0.52727,0,0,0,0,0,0,0.10239,0.17383,0.15392,0.50724,0,0,0,0,0,0,0.11026,0.17998,0.16782,0.53721,0,0,0,0,0,0,0.0752,0.12741,0.15179,0.46901,0,0,0,0,0,0.0134,0.03071,0.00234,0.00329,0.00858,0,0,0,0,0,0.01173,0.02689,0.00216,0.00305,0.00766,0,0,0,0,0,0.01301,0.0297,0.00194,0.00316,0.00817,0,0,0,0,0,0.01425,0.03271,0.00238,0.00341,0.00895,0,0,0,0,0,0.00705,0.01632,0.00184,0.00245,0.0052,0,0,0,0,0,0.0082,0.01882,0.00179,0.00255,0.0057,0,0,0,0,0,0.0068,0.01566,0.00174,0.00231,0.0049,0,0,0,0,0,0.00934,0.02139,0.00186,0.00269,0.00631,0,0,0,0,0,0.00678,0.01549,0.00155,0.00225,0.00484,0,0,0,0,0,0.05,0.10936,0.0257,0.02795,0.03986,0,0,0,0,0,0.04694,0.10191,0.02594,0.02801,0.03834,0,0,0,0,0,0.05206,0.11253,0.02744,0.03032,0.04163,0,0,0,0,0,0.05078,0.1116,0.02442,0.02684,0.03942,0,0,0,0,0,0.03804,0.08096,0.02666,0.02801,0.03408,0,0,0,0,0,0.0385,0.08234,0.02443,0.02613,0.03312,0,0,0,0,0,0.03541,0.07544,0.02439,0.02563,0.03131,0,0,0,0,0,0.0422,0.0907,0.02577,0.02766,0.03573,0,0,0,0,0,0.03615,0.07672,0.02489,0.02643,0.03209,0,0,0,0,0,0.02882,0.06591,0.00732,0.0093,0.01985,0,0,0,0,0,0.02559,0.05826,0.007,0.00883,0.01797,0,0,0,0,0,0.02859,0.06461,0.0068,0.00935,0.01936,0,0,0,0,0,0.03058,0.07005,0.00726,0.0094,0.02054,0,0,0,0,0,0.01649,0.03731,0.00642,0.00761,0.01299,0,0,0,0,0,0.01853,0.04179,0.00608,0.00758,0.01377,0,0,0,0,0,0.01571,0.0355,0.00596,0.00705,0.01208,0,0,0,0,0,0.02094,0.04745,0.0064,0.00807,0.01521,0,0,0,0,0,0.01565,0.03521,0.00569,0.00705,0.01206,0,0,0,0,0,0,0.00551,0.00498,0.00167,0.00174,0,0,0,0,0,0,0.0056,0.00502,0.00169,0.00175,0,0,0,0,0,0,0.0058,0.00509,0.00171,0.00178,0,0,0,0,0,0,0.00972,0.00497,0.00167,0.00174,0,0,0,0,0,0,0.00579,0.00511,0.00171,0.00177,0,0,0,0,0,0,0.00572,0.00502,0.00168,0.00174,0,0,0,0,0,0,0.0079,0.00507,0.0017,0.00175,0,0,0,0,0,0,0.00892,0.00454,0.00167,0.00173,0,0,0,0,0,0,0.00326,0.00236,0.00155,0.0016,0,0,0,0,0,0,0.08586,0.12696,0.1798,0.59575,0,0,0,0,0,0,0.07547,0.11512,0.16492,0.56352,0,0,0,0,0,0,0.08347,0.13007,0.18393,0.65564,0,0,0,0,0,0,0.097,0.14287,0.20141,0.68613,0,0,0,0,0,0,0.05604,0.09956,0.15044,0.58993,0,0,0,0,0,0,0.05965,0.10373,0.15463,0.60458,0,0,0,0,0,0,0.05659,0.09733,0.14747,0.57396,0,0,0,0,0,0,0.07098,0.11084,0.16694,0.61349,0,0,0,0,0,0,0.05187,0.08729,0.14693,0.54041,0,0,0,0,0 +Pickup,PH40G,2015,0,0,0.02105,0.02153,0.02214,0.02406,0,0,0,0,0,0,0.02169,0.02213,0.02267,0.02433,0,0,0,0,0,0,0.02363,0.02419,0.02476,0.02656,0,0,0,0,0,0,0.01965,0.02016,0.02079,0.02284,0,0,0,0,0,0,0.02316,0.02346,0.02384,0.02483,0,0,0,0,0,0,0.021,0.02136,0.02177,0.0229,0,0,0,0,0,0,0.0211,0.02137,0.02171,0.02259,0,0,0,0,0,0,0.02218,0.02257,0.02301,0.0243,0,0,0,0,0,0,0.02198,0.02228,0.02261,0.02347,0,0,0,0,0,0,0.00805,0.00623,0.00667,0.01002,0,0,0,0,0,0,0.0074,0.00575,0.00625,0.00931,0,0,0,0,0,0,0.00768,0.0064,0.00697,0.01073,0,0,0,0,0,0,0.00842,0.00705,0.00766,0.01172,0,0,0,0,0,0,0.00573,0.00513,0.00589,0.00878,0,0,0,0,0,0,0.00608,0.00543,0.00618,0.00929,0,0,0,0,0,0,0.00577,0.00512,0.0059,0.00871,0,0,0,0,0,0,0.00636,0.00562,0.00627,0.00941,0,0,0,0,0,0,0.00479,0.00502,0.00571,0.00826,0,0,0,0,0,0,1.20946,2.16828,2.95967,4.46943,0,0,0,0,0,0,1.20605,2.16593,2.9716,4.44162,0,0,0,0,0,0,1.32541,2.39526,3.36397,5.2091,0,0,0,0,0,0,1.31936,2.55072,3.58753,5.51337,0,0,0,0,0,0,1.15925,2.33057,3.30072,4.96191,0,0,0,0,0,0,1.2123,2.38725,3.38787,5.14376,0,0,0,0,0,0,1.19222,2.39774,3.3887,5.0806,0,0,0,0,0,0,1.21916,2.36381,3.29637,4.96617,0,0,0,0,0,0,1.09269,2.12101,2.93067,4.35071,0,0,0,0,0,0,208.90289,210.10545,212.07411,233.92207,0,0,0,0,0,0,210.65993,211.72602,213.50303,235.13312,0,0,0,0,0,0,213.57494,214.72084,216.61797,238.73532,0,0,0,0,0,0,208.76815,209.92794,211.84557,233.58344,0,0,0,0,0,0,214.42223,215.01792,216.13277,236.80911,0,0,0,0,0,0,210.91686,211.65007,212.95748,233.70185,0,0,0,0,0,0,212.89901,213.44445,214.49048,234.89937,0,0,0,0,0,0,212.65933,213.45823,214.85921,235.9354,0,0,0,0,0,0,209.53696,210.22218,211.44203,231.89469,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.00661,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00668,0,0,0,0,0,0,0.00284,0.00325,0.00384,0.0065,0,0,0,0,0,0,0.00294,0.00335,0.00395,0.00666,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.00654,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00293,0.00334,0.00394,0.00665,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00671,0,0,0,0,0,0,0.00947,0.0108,0.01374,0.01445,0,0,0,0,0,0,0.00948,0.01081,0.01376,0.01446,0,0,0,0,0,0,0.00948,0.0108,0.01375,0.01446,0,0,0,0,0,0,0.00943,0.01075,0.01369,0.01439,0,0,0,0,0,0,0.00947,0.01079,0.01374,0.01445,0,0,0,0,0,0,0.00944,0.01076,0.0137,0.0144,0,0,0,0,0,0,0.00947,0.01079,0.01373,0.01444,0,0,0,0,0,0,0.00949,0.01081,0.01376,0.01447,0,0,0,0,0,0,0.00951,0.01083,0.01379,0.0145,0,0,0,0,0,0,0.06363,0.07889,0.11795,0.21915,0,0,0,0,0,0,0.0633,0.07755,0.11629,0.21619,0,0,0,0,0,0,0.06331,0.0835,0.12449,0.2399,0,0,0,0,0,0,0.06635,0.08912,0.1328,0.25532,0,0,0,0,0,0,0.05817,0.07756,0.11713,0.23003,0,0,0,0,0,0,0.06086,0.08101,0.12191,0.23739,0,0,0,0,0,0,0.05958,0.07843,0.1186,0.22974,0,0,0,0,0,0,0.06332,0.08649,0.12954,0.24752,0,0,0,0,0,0,0.04577,0.07747,0.11635,0.21957,0,0,0,0,0.00742,0.01037,0.0218,0.002,0.00292,0.00564,0,0,0,0,0.00651,0.00908,0.01909,0.00191,0.00277,0.00519,0,0,0,0,0.00709,0.00992,0.02089,0.00194,0.00283,0.0054,0,0,0,0,0.00773,0.01083,0.02302,0.00204,0.00298,0.00582,0,0,0,0,0.00394,0.00546,0.01165,0.00166,0.00236,0.004,0,0,0,0,0.00453,0.00629,0.01336,0.00169,0.00242,0.00422,0,0,0,0,0.00385,0.00533,0.01127,0.00158,0.00223,0.00376,0,0,0,0,0.00519,0.00723,0.01521,0.00175,0.00251,0.0045,0,0,0,0,0.00392,0.00543,0.01123,0.00154,0.00218,0.00367,0,0,0,0,0.03637,0.04272,0.08912,0.02484,0.02695,0.03332,0,0,0,0,0.03508,0.04056,0.08431,0.02529,0.02725,0.03288,0,0,0,0,0.03852,0.04451,0.09257,0.0274,0.02943,0.03544,0,0,0,0,0.03581,0.04252,0.08925,0.02352,0.0257,0.0324,0,0,0,0,0.0311,0.03426,0.07066,0.02622,0.02775,0.03146,0,0,0,0,0.03026,0.03393,0.07021,0.02418,0.02578,0.02986,0,0,0,0,0.02885,0.03195,0.06565,0.02401,0.02543,0.02882,0,0,0,0,0.03284,0.03717,0.07669,0.02547,0.02717,0.03173,0,0,0,0,0.02982,0.03298,0.06731,0.02485,0.02624,0.02957,0,0,0,0,0.01676,0.02238,0.04801,0.00656,0.00843,0.01406,0,0,0,0,0.01509,0.01994,0.04269,0.00643,0.00816,0.01314,0,0,0,0,0.01661,0.0219,0.04695,0.00677,0.00856,0.01388,0,0,0,0,0.01734,0.02328,0.05028,0.00647,0.00839,0.01432,0,0,0,0,0.01035,0.01315,0.02819,0.00604,0.00739,0.01067,0,0,0,0,0.01124,0.01449,0.03106,0.00586,0.00728,0.01089,0,0,0,0,0.0099,0.01265,0.02684,0.00562,0.00687,0.00988,0,0,0,0,0.01265,0.01649,0.03505,0.00614,0.00764,0.01167,0,0,0,0,0.01005,0.01285,0.02689,0.00566,0.00688,0.00983,0,0,0,0,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.00403,0.00135,0.00136,0.0015,0,0,0,0,0,0,0.00409,0.00137,0.00138,0.00152,0,0,0,0,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.0041,0.00137,0.00138,0.00151,0,0,0,0,0,0,0.00404,0.00135,0.00136,0.00149,0,0,0,0,0,0,0.00407,0.00136,0.00137,0.0015,0,0,0,0,0,0,0.00365,0.00134,0.00135,0.00148,0,0,0,0,0,0,0.00189,0.00124,0.00125,0.00137,0,0,0,0,0,0,0.06107,0.08856,0.14503,0.35368,0,0,0,0,0,0,0.05602,0.08205,0.13702,0.33849,0,0,0,0,0,0,0.05982,0.09044,0.15099,0.37484,0,0,0,0,0,0,0.06432,0.09805,0.16208,0.39252,0,0,0,0,0,0,0.04478,0.07489,0.13466,0.34278,0,0,0,0,0,0,0.04682,0.07721,0.13691,0.34637,0,0,0,0,0,0,0.04432,0.07383,0.13301,0.33611,0,0,0,0,0,0,0.05163,0.08321,0.14411,0.35965,0,0,0,0,0,0,0.04191,0.07401,0.13211,0.33009,0,0,0,0 +Pickup,PH40G,2020,0,0,0,0.02099,0.02138,0.02179,0.02316,0,0,0,0,0,0,0.02164,0.022,0.02236,0.02357,0,0,0,0,0,0,0.02368,0.02405,0.02443,0.02572,0,0,0,0,0,0,0.01959,0.02,0.02042,0.02187,0,0,0,0,0,0,0.02312,0.02337,0.02362,0.02441,0,0,0,0,0,0,0.02099,0.02126,0.02153,0.02241,0,0,0,0,0,0,0.02106,0.02129,0.02151,0.02222,0,0,0,0,0,0,0.02216,0.02246,0.02276,0.02373,0,0,0,0,0,0,0.02198,0.02221,0.02242,0.02311,0,0,0,0,0,0,0.00622,0.00531,0.00528,0.00725,0,0,0,0,0,0,0.00559,0.00486,0.00487,0.00671,0,0,0,0,0,0,0.00588,0.0054,0.00543,0.0077,0,0,0,0,0,0,0.0065,0.00598,0.006,0.00847,0,0,0,0,0,0,0.00398,0.00413,0.00431,0.00622,0,0,0,0,0,0,0.00433,0.00442,0.00458,0.00661,0,0,0,0,0,0,0.00396,0.00411,0.0043,0.00619,0,0,0,0,0,0,0.00482,0.00462,0.00472,0.00671,0,0,0,0,0,0,0.00407,0.00401,0.00416,0.00586,0,0,0,0,0,0,0.99206,1.52807,1.92959,2.9974,0,0,0,0,0,0,0.97371,1.51164,1.91354,2.97491,0,0,0,0,0,0,1.02676,1.67356,2.16254,3.49728,0,0,0,0,0,0,1.09388,1.78868,2.31873,3.72493,0,0,0,0,0,0,0.92531,1.57942,2.04718,3.30587,0,0,0,0,0,0,0.9563,1.62959,2.11972,3.44477,0,0,0,0,0,0,0.95705,1.62668,2.10664,3.39496,0,0,0,0,0,0,0.98782,1.62281,2.08061,3.31894,0,0,0,0,0,0,0.88084,1.44133,1.8306,2.88136,0,0,0,0,0,0,179.40777,180.59417,182.57119,199.38448,0,0,0,0,0,0,180.84125,181.91036,183.716,200.31641,0,0,0,0,0,0,183.38144,184.52199,186.43889,203.43358,0,0,0,0,0,0,179.28322,180.43242,182.36328,199.08663,0,0,0,0,0,0,183.81824,184.48271,185.69332,201.40737,0,0,0,0,0,0,180.89197,181.67301,183.05444,198.87244,0,0,0,0,0,0,182.49343,183.11355,184.26012,199.76077,0,0,0,0,0,0,182.41445,183.25373,184.7213,200.80969,0,0,0,0,0,0,179.66247,180.40088,181.70163,197.27036,0,0,0,0,0,0,0.00297,0.00336,0.00395,0.00534,0,0,0,0,0,0,0.00298,0.00336,0.00395,0.00533,0,0,0,0,0,0,0.00302,0.00341,0.004,0.00539,0,0,0,0,0,0,0.00291,0.00329,0.00387,0.00525,0,0,0,0,0,0,0.00301,0.00339,0.00398,0.00537,0,0,0,0,0,0,0.00294,0.00333,0.00391,0.00528,0,0,0,0,0,0,0.00297,0.00335,0.00394,0.00533,0,0,0,0,0,0,0.003,0.00338,0.00397,0.00537,0,0,0,0,0,0,0.00302,0.00341,0.00401,0.00541,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01375,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01374,0,0,0,0,0,0,0.00941,0.01082,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01083,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01088,0.01375,0.01375,0,0,0,0,0,0,0.00948,0.0109,0.01378,0.01378,0,0,0,0,0,0,0.04319,0.07113,0.09563,0.13529,0,0,0,0,0,0,0.04245,0.06984,0.09407,0.13307,0,0,0,0,0,0,0.04277,0.0749,0.10023,0.14497,0,0,0,0,0,0,0.04512,0.08024,0.10733,0.15532,0,0,0,0,0,0,0.03788,0.06898,0.09306,0.13578,0,0,0,0,0,0,0.04,0.07245,0.09754,0.1417,0,0,0,0,0,0,0.03881,0.07,0.09457,0.1369,0,0,0,0,0,0,0.04413,0.0775,0.10403,0.14951,0,0,0,0,0,0,0.0401,0.06925,0.09321,0.13276,0,0,0,0.0023,0.00368,0.00501,0.01317,0.00175,0.00233,0.00418,0,0,0,0.00211,0.00327,0.00444,0.01166,0.00167,0.00221,0.00391,0,0,0,0.00244,0.00301,0.00407,0.01259,0.0017,0.00226,0.00403,0,0,0,0.00251,0.00373,0.0051,0.01377,0.00177,0.00237,0.00429,0,0,0,0.00147,0.0023,0.00314,0.00755,0.00146,0.00189,0.00319,0,0,0,0.00165,0.00235,0.0032,0.00845,0.00149,0.00194,0.00331,0,0,0,0.00142,0.00217,0.00295,0.0072,0.00139,0.00179,0.003,0,0,0,0.00181,0.0026,0.00353,0.00948,0.00153,0.00201,0.00348,0,0,0,0.00131,0.00197,0.00266,0.00716,0.00135,0.00175,0.00292,0,0,0,0.0254,0.02832,0.03134,0.07005,0.02427,0.02563,0.03002,0,0,0,0.02567,0.02809,0.03074,0.06796,0.02476,0.02602,0.03001,0,0,0,0.02848,0.02953,0.03189,0.07421,0.02686,0.02816,0.03234,0,0,0,0.02451,0.02709,0.03018,0.06872,0.02293,0.02433,0.02891,0,0,0,0.02585,0.02755,0.02939,0.06173,0.0258,0.02676,0.02969,0,0,0,0.02412,0.02552,0.02738,0.05948,0.02373,0.02475,0.02788,0,0,0,0.02371,0.02524,0.02693,0.05682,0.0236,0.0245,0.02719,0,0,0,0.02561,0.02725,0.02928,0.06413,0.02501,0.02609,0.02947,0,0,0,0.02438,0.02571,0.02719,0.05857,0.02446,0.02534,0.02796,0,0,0,0.00705,0.00963,0.01231,0.03113,0.00606,0.00726,0.01114,0,0,0,0.00676,0.0089,0.01124,0.02822,0.00596,0.00707,0.0106,0,0,0,0.00772,0.00865,0.01074,0.03071,0.00629,0.00744,0.01114,0,0,0,0.00734,0.00962,0.01236,0.03212,0.00595,0.00718,0.01123,0,0,0,0.0057,0.00721,0.00884,0.02029,0.00566,0.00652,0.00911,0,0,0,0.00581,0.00704,0.00869,0.02156,0.00547,0.00637,0.00914,0,0,0,0.00535,0.00671,0.0082,0.01903,0.00526,0.00605,0.00843,0,0,0,0.00625,0.0077,0.0095,0.02394,0.00573,0.00668,0.00967,0,0,0,0.00523,0.00641,0.00772,0.01916,0.00531,0.00608,0.0084,0,0,0,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00128,0,0,0,0,0,0,0.00117,0.00118,0.00119,0.0013,0,0,0,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00117,0.00118,0.00118,0.00128,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00127,0,0,0,0,0,0,0.00116,0.00117,0.00118,0.00127,0,0,0,0,0,0,0.00115,0.00115,0.00116,0.00126,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00116,0,0,0,0,0,0,0.05341,0.07612,0.11524,0.26525,0,0,0,0,0,0,0.04838,0.06964,0.10722,0.2538,0,0,0,0,0,0,0.05156,0.0772,0.11885,0.27833,0,0,0,0,0,0,0.05602,0.08414,0.12819,0.29028,0,0,0,0,0,0,0.03717,0.06063,0.10004,0.2557,0,0,0,0,0,0,0.03927,0.06344,0.1031,0.25731,0,0,0,0,0,0,0.0365,0.05927,0.0978,0.25022,0,0,0,0,0,0,0.04437,0.06883,0.1096,0.26769,0,0,0,0,0,0,0.03732,0.05944,0.09752,0.24821,0,0,0 +Pickup,PH40G,2025,0,0,0,0,0.0208,0.02104,0.0213,0.02238,0,0,0,0,0,0,0.02147,0.02169,0.02192,0.02288,0,0,0,0,0,0,0.02349,0.02373,0.02397,0.02499,0,0,0,0,0,0,0.01939,0.01965,0.01992,0.02104,0,0,0,0,0,0,0.02299,0.02315,0.0233,0.02395,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.0219,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.0218,0,0,0,0,0,0,0.02202,0.0222,0.02239,0.02317,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02271,0,0,0,0,0,0,0.00492,0.00386,0.00374,0.00549,0,0,0,0,0,0,0.00427,0.00341,0.00333,0.00499,0,0,0,0,0,0,0.0046,0.0038,0.00372,0.00575,0,0,0,0,0,0,0.00517,0.00426,0.00416,0.00637,0,0,0,0,0,0,0.00261,0.00245,0.00253,0.0043,0,0,0,0,0,0,0.00298,0.00273,0.00278,0.00466,0,0,0,0,0,0,0.00255,0.0024,0.00249,0.00425,0,0,0,0,0,0,0.00346,0.00299,0.003,0.00481,0,0,0,0,0,0,0.00263,0.00238,0.00244,0.00403,0,0,0,0,0,0,0.66178,0.9675,1.23518,2.08322,0,0,0,0,0,0,0.63104,0.93411,1.19784,2.0427,0,0,0,0,0,0,0.67437,1.04187,1.35999,2.41971,0,0,0,0,0,0,0.72303,1.12145,1.46792,2.59248,0,0,0,0,0,0,0.54623,0.9063,1.19724,2.19896,0,0,0,0,0,0,0.57771,0.95224,1.26003,2.3157,0,0,0,0,0,0,0.56408,0.93382,1.23279,2.26084,0,0,0,0,0,0,0.61098,0.96542,1.25666,2.24153,0,0,0,0,0,0,0.5244,0.83354,1.07725,1.911,0,0,0,0,0,0,147.83877,148.5656,150.03975,167.74222,0,0,0,0,0,0,148.95279,149.57707,150.89656,168.40381,0,0,0,0,0,0,151.07933,151.76098,153.17582,171.08617,0,0,0,0,0,0,147.72954,148.42581,149.86082,167.47969,0,0,0,0,0,0,151.1798,151.45314,152.23791,168.90959,0,0,0,0,0,0,148.84387,149.22183,150.16391,166.91435,0,0,0,0,0,0,150.07392,150.31158,151.04251,167.49902,0,0,0,0,0,0,150.12127,150.54642,151.56239,168.58579,0,0,0,0,0,0,147.78842,148.13016,148.99882,165.4903,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00304,0.0034,0.00398,0.00518,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00503,0,0,0,0,0,0,0.00303,0.00339,0.00397,0.00516,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00507,0,0,0,0,0,0,0.00299,0.00335,0.00392,0.00511,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00515,0,0,0,0,0,0,0.00304,0.0034,0.00399,0.0052,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.0265,0.03999,0.05369,0.09116,0,0,0,0,0,0,0.02562,0.03874,0.05217,0.08907,0,0,0,0,0,0,0.02589,0.04123,0.05522,0.09728,0,0,0,0,0,0,0.02746,0.04433,0.05933,0.10468,0,0,0,0,0,0,0.02139,0.03597,0.04887,0.08873,0,0,0,0,0,0,0.02313,0.03846,0.05201,0.09353,0,0,0,0,0,0,0.02193,0.03659,0.04975,0.08946,0,0,0,0,0,0,0.02566,0.04146,0.05588,0.09885,0,0,0,0,0,0,0.02278,0.03656,0.04954,0.08688,0,0,0,0.00138,0.00234,0.00329,0.00929,0.00113,0.0015,0.00301,0,0,0,0.00129,0.00216,0.00305,0.00834,0.00108,0.00143,0.00283,0,0,0,0.00117,0.00194,0.00316,0.00886,0.00109,0.00146,0.0029,0,0,0,0.00141,0.00238,0.00341,0.00967,0.00114,0.00153,0.00307,0,0,0,0.00112,0.00184,0.00245,0.00581,0.00094,0.00123,0.00233,0,0,0,0.00109,0.00179,0.00255,0.00631,0.00096,0.00126,0.00241,0,0,0,0.00106,0.00174,0.00231,0.00548,0.0009,0.00116,0.00218,0,0,0,0.00112,0.00186,0.00269,0.00694,0.00099,0.0013,0.00252,0,0,0,0.00095,0.00155,0.00225,0.0054,0.00088,0.00113,0.00214,0,0,0,0.02352,0.0257,0.02795,0.06184,0.02291,0.02378,0.02732,0,0,0,0.02397,0.02594,0.02801,0.06094,0.02348,0.02428,0.02753,0,0,0,0.02569,0.02744,0.03032,0.06627,0.02554,0.02638,0.02976,0,0,0,0.02219,0.02442,0.02684,0.06001,0.02154,0.02244,0.02608,0,0,0,0.0251,0.02666,0.02801,0.05807,0.02471,0.02534,0.0278,0,0,0,0.02289,0.02443,0.02613,0.05499,0.02262,0.02328,0.02588,0,0,0,0.02294,0.02439,0.02563,0.05321,0.02258,0.02316,0.02542,0,0,0,0.02415,0.02577,0.02766,0.0588,0.02385,0.02455,0.02734,0,0,0,0.02362,0.02489,0.02643,0.0549,0.02347,0.02403,0.02626,0,0,0,0.00539,0.00732,0.0093,0.02387,0.00485,0.00562,0.00875,0,0,0,0.00526,0.007,0.00883,0.02202,0.00482,0.00554,0.00841,0,0,0,0.00526,0.0068,0.00935,0.02368,0.00512,0.00586,0.00885,0,0,0,0.00529,0.00726,0.0094,0.02441,0.00471,0.00551,0.00873,0,0,0,0.00504,0.00642,0.00761,0.01705,0.0047,0.00526,0.00743,0,0,0,0.00472,0.00608,0.00758,0.01759,0.00448,0.00506,0.00737,0,0,0,0.00467,0.00596,0.00705,0.01583,0.00435,0.00487,0.00687,0,0,0,0.00497,0.0064,0.00807,0.01922,0.0047,0.00532,0.00779,0,0,0,0.00456,0.00569,0.00705,0.01591,0.00443,0.00493,0.00691,0,0,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.00109,0,0,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00097,0.00108,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00106,0,0,0,0,0,0,0.00096,0.00096,0.00096,0.00107,0,0,0,0,0,0,0.00094,0.00095,0.00095,0.00106,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00098,0,0,0,0,0,0,0.04543,0.05964,0.08818,0.22467,0,0,0,0,0,0,0.04023,0.05306,0.08002,0.21368,0,0,0,0,0,0,0.04351,0.05933,0.08944,0.2346,0,0,0,0,0,0,0.04783,0.06536,0.0972,0.24394,0,0,0,0,0,0,0.02813,0.04123,0.06826,0.21042,0,0,0,0,0,0,0.03059,0.0444,0.07181,0.21262,0,0,0,0,0,0,0.02727,0.03955,0.06551,0.20423,0,0,0,0,0,0,0.03528,0.04953,0.07808,0.22178,0,0,0,0,0,0,0.02777,0.03996,0.06598,0.20394,0,0 +Pickup,PH40G,2030,0,0,0,0,0,0.0208,0.02104,0.02129,0.02202,0,0,0,0,0,0,0.02147,0.02169,0.02191,0.02257,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02465,0,0,0,0,0,0,0.01939,0.01964,0.0199,0.02067,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02374,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.02167,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.02161,0,0,0,0,0,0,0.02201,0.0222,0.02238,0.02291,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02252,0,0,0,0,0,0,0.00455,0.00347,0.00337,0.00458,0,0,0,0,0,0,0.00391,0.00302,0.00296,0.00409,0,0,0,0,0,0,0.00424,0.00337,0.00331,0.00467,0,0,0,0,0,0,0.00479,0.0038,0.00372,0.0052,0,0,0,0,0,0,0.00223,0.00201,0.00209,0.00318,0,0,0,0,0,0,0.0026,0.00228,0.00234,0.00351,0,0,0,0,0,0,0.00216,0.00196,0.00205,0.00313,0,0,0,0,0,0,0.00308,0.00256,0.00258,0.00374,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00301,0,0,0,0,0,0,0.58559,0.85434,1.10349,1.64391,0,0,0,0,0,0,0.55211,0.81785,1.06129,1.59145,0,0,0,0,0,0,0.59301,0.91344,1.20586,1.86989,0,0,0,0,0,0,0.63713,0.98481,1.30299,2.01056,0,0,0,0,0,0,0.45912,0.77028,1.03065,1.63208,0,0,0,0,0,0,0.4905,0.81464,1.09123,1.73174,0,0,0,0,0,0,0.47362,0.79327,1.06122,1.67854,0,0,0,0,0,0,0.52395,0.83228,1.09601,1.69965,0,0,0,0,0,0,0.44194,0.71054,0.92995,1.43299,0,0,0,0,0,0,135.38297,136.63864,138.73799,150.23079,0,0,0,0,0,0,136.3743,137.53975,139.49517,150.75644,0,0,0,0,0,0,138.33607,139.56287,141.62039,153.192,0,0,0,0,0,0,135.28045,136.50771,138.57013,149.99007,0,0,0,0,0,0,138.3167,139.16703,140.61766,150.98435,0,0,0,0,0,0,136.20994,137.14778,138.73931,149.27268,0,0,0,0,0,0,137.29769,138.11108,139.50502,149.70743,0,0,0,0,0,0,137.38947,138.37583,140.04413,150.79217,0,0,0,0,0,0,135.22477,136.12443,137.63836,147.95375,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.00511,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.0051,0,0,0,0,0,0,0.00304,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00293,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00303,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00296,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00301,0.00337,0.00396,0.00514,0,0,0,0,0,0,0.00304,0.00339,0.00399,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.01081,0.01368,0.01368,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01082,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01087,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02145,0.03182,0.0438,0.06849,0,0,0,0,0,0,0.02053,0.03058,0.04228,0.06642,0,0,0,0,0,0,0.02069,0.0323,0.0445,0.07183,0,0,0,0,0,0,0.02195,0.03471,0.04776,0.07729,0,0,0,0,0,0,0.01633,0.02723,0.03835,0.06353,0,0,0,0,0,0,0.01792,0.0294,0.04112,0.06757,0,0,0,0,0,0,0.01676,0.02772,0.03905,0.06418,0,0,0,0,0,0,0.02,0.03192,0.04444,0.07192,0,0,0,0,0,0,0.01752,0.02798,0.03927,0.06295,0,0,0,0.00118,0.002,0.00292,0.00635,0.00112,0.0015,0.00249,0,0,0,0.00112,0.00191,0.00277,0.00587,0.00108,0.00142,0.00234,0,0,0,0.00102,0.00194,0.00283,0.00609,0.00109,0.00145,0.0024,0,0,0,0.00118,0.00204,0.00298,0.00653,0.00114,0.00152,0.00254,0,0,0,0.00102,0.00166,0.00236,0.00461,0.00094,0.00122,0.00193,0,0,0,0.00098,0.00169,0.00242,0.00483,0.00096,0.00125,0.002,0,0,0,0.00097,0.00158,0.00223,0.00433,0.0009,0.00115,0.00182,0,0,0,0.001,0.00175,0.00251,0.00513,0.00099,0.0013,0.00209,0,0,0,0.00087,0.00154,0.00218,0.00423,0.00087,0.00113,0.00178,0,0,0,0.02301,0.02484,0.02695,0.0553,0.0229,0.02376,0.02611,0,0,0,0.02356,0.02529,0.02725,0.05547,0.02347,0.02426,0.02641,0,0,0,0.02533,0.0274,0.02943,0.06008,0.02553,0.02635,0.0286,0,0,0,0.02162,0.02352,0.0257,0.05297,0.02153,0.02241,0.02484,0,0,0,0.02486,0.02622,0.02775,0.05545,0.02471,0.02533,0.02693,0,0,0,0.02265,0.02418,0.02578,0.05173,0.02261,0.02326,0.02497,0,0,0,0.02272,0.02401,0.02543,0.05072,0.02257,0.02314,0.02462,0,0,0,0.02385,0.02547,0.02717,0.05479,0.02384,0.02453,0.02637,0,0,0,0.02343,0.02485,0.02624,0.05237,0.02346,0.02403,0.02547,0,0,0,0.00494,0.00656,0.00843,0.01808,0.00484,0.0056,0.00768,0,0,0,0.00489,0.00643,0.00816,0.01718,0.00482,0.00552,0.00742,0,0,0,0.00493,0.00677,0.00856,0.0182,0.00512,0.00584,0.00783,0,0,0,0.00478,0.00647,0.00839,0.01818,0.00471,0.00548,0.00764,0,0,0,0.00483,0.00604,0.00739,0.01473,0.0047,0.00525,0.00667,0,0,0,0.00451,0.00586,0.00728,0.01471,0.00448,0.00505,0.00657,0,0,0,0.00448,0.00562,0.00687,0.01363,0.00435,0.00485,0.00616,0,0,0,0.0047,0.00614,0.00764,0.01568,0.00469,0.00531,0.00693,0,0,0,0.0044,0.00566,0.00688,0.01367,0.00443,0.00493,0.0062,0,0,0,0,0,0,0.00086,0.00087,0.00089,0.00096,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00098,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00096,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00095,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00095,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00087,0,0,0,0,0,0,0.0431,0.05549,0.08243,0.19874,0,0,0,0,0,0,0.0379,0.04894,0.07427,0.18756,0,0,0,0,0,0,0.04116,0.0548,0.08314,0.2054,0,0,0,0,0,0,0.0454,0.06055,0.09046,0.21365,0,0,0,0,0,0,0.02565,0.03653,0.0615,0.17931,0,0,0,0,0,0,0.02816,0.03971,0.0651,0.1819,0,0,0,0,0,0,0.02475,0.03481,0.05865,0.17291,0,0,0,0,0,0,0.03274,0.04483,0.07135,0.19132,0,0,0,0,0,0,0.02515,0.03527,0.05933,0.17412,0 +Pickup,PH40G,2035,0,0,0,0,0,0,0.0208,0.02104,0.0213,0.0219,0,0,0,0,0,0,0.02147,0.02168,0.02192,0.02246,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02454,0,0,0,0,0,0,0.01939,0.01964,0.01991,0.02055,0,0,0,0,0,0,0.02298,0.02314,0.0233,0.02366,0,0,0,0,0,0,0.02085,0.02101,0.02119,0.02159,0,0,0,0,0,0,0.02093,0.02108,0.02122,0.02154,0,0,0,0,0,0,0.02201,0.0222,0.02239,0.02282,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02245,0,0,0,0,0,0,0.00454,0.00347,0.00336,0.00425,0,0,0,0,0,0,0.0039,0.00303,0.00296,0.00376,0,0,0,0,0,0,0.00423,0.00338,0.00331,0.00425,0,0,0,0,0,0,0.00478,0.00381,0.00371,0.00476,0,0,0,0,0,0,0.00222,0.00201,0.00209,0.00275,0,0,0,0,0,0,0.00259,0.00228,0.00234,0.00307,0,0,0,0,0,0,0.00215,0.00196,0.00205,0.0027,0,0,0,0,0,0,0.00307,0.00256,0.00258,0.00334,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00263,0,0,0,0,0,0,0.58434,0.85662,1.10126,1.49242,0,0,0,0,0,0,0.55093,0.8194,1.05957,1.43587,0,0,0,0,0,0,0.59172,0.91542,1.20375,1.67532,0,0,0,0,0,0,0.63576,0.98675,1.30085,1.8038,0,0,0,0,0,0,0.45804,0.76944,1.03048,1.4328,0,0,0,0,0,0,0.48935,0.81421,1.09075,1.52526,0,0,0,0,0,0,0.47257,0.79278,1.06081,1.47356,0,0,0,0,0,0,0.5227,0.83228,1.09525,1.51029,0,0,0,0,0,0,0.4409,0.71023,0.92953,1.26793,0,0,0,0,0,0,135.35035,136.63097,138.72659,144.30938,0,0,0,0,0,0,136.34407,137.5329,139.48452,144.793,0,0,0,0,0,0,138.30412,139.55545,141.60923,147.14325,0,0,0,0,0,0,135.2482,136.50027,138.55892,144.07655,0,0,0,0,0,0,138.29444,139.16229,140.60971,144.94019,0,0,0,0,0,0,136.18545,137.14241,138.73072,143.32004,0,0,0,0,0,0,137.27632,138.10654,139.49763,143.70931,0,0,0,0,0,0,137.3638,138.37006,140.03504,144.78679,0,0,0,0,0,0,135.20198,136.11957,137.63026,142.03885,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.00511,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00292,0.00327,0.00385,0.00502,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00505,0,0,0,0,0,0,0.00297,0.00333,0.00392,0.0051,0,0,0,0,0,0,0.003,0.00337,0.00395,0.00513,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01368,0.01368,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02138,0.03171,0.04382,0.06004,0,0,0,0,0,0,0.02046,0.03048,0.0423,0.05797,0,0,0,0,0,0,0.02062,0.03218,0.04452,0.06213,0,0,0,0,0,0,0.02187,0.03456,0.0478,0.06679,0,0,0,0,0,0,0.01628,0.02714,0.03837,0.0539,0,0,0,0,0,0,0.01786,0.0293,0.04114,0.05763,0,0,0,0,0,0,0.0167,0.02761,0.03908,0.05456,0,0,0,0,0,0,0.01993,0.03183,0.04445,0.06169,0,0,0,0,0,0,0.01747,0.02793,0.03926,0.05396,0,0,0,0.00108,0.00175,0.00233,0.00489,0.00112,0.0015,0.0023,0,0,0,0.00103,0.00167,0.00221,0.00459,0.00107,0.00142,0.00217,0,0,0,0.00105,0.0017,0.00226,0.00471,0.00108,0.00145,0.00222,0,0,0,0.00109,0.00177,0.00237,0.005,0.00113,0.00152,0.00236,0,0,0,0.00092,0.00146,0.00189,0.00379,0.00094,0.00122,0.00179,0,0,0,0.00093,0.00149,0.00194,0.00392,0.00095,0.00125,0.00186,0,0,0,0.00087,0.00139,0.00179,0.00357,0.00089,0.00116,0.00169,0,0,0,0.00096,0.00153,0.00201,0.0041,0.00098,0.0013,0.00194,0,0,0,0.00085,0.00135,0.00175,0.00348,0.00087,0.00113,0.00165,0,0,0,0.02277,0.02427,0.02563,0.05199,0.02289,0.02377,0.02569,0,0,0,0.02336,0.02476,0.02602,0.0526,0.02345,0.02427,0.02603,0,0,0,0.02541,0.02686,0.02816,0.05697,0.02551,0.02636,0.0282,0,0,0,0.02139,0.02293,0.02433,0.04948,0.0215,0.02242,0.02442,0,0,0,0.02464,0.0258,0.02676,0.05368,0.0247,0.02533,0.02663,0,0,0,0.02253,0.02373,0.02475,0.04974,0.0226,0.02327,0.02466,0,0,0,0.02251,0.0236,0.0245,0.04908,0.02256,0.02315,0.02435,0,0,0,0.02375,0.02501,0.02609,0.05252,0.02383,0.02454,0.02603,0,0,0,0.0234,0.02446,0.02534,0.05076,0.02346,0.02403,0.02519,0,0,0,0.00473,0.00606,0.00726,0.01516,0.00483,0.00561,0.00731,0,0,0,0.00472,0.00596,0.00707,0.01464,0.0048,0.00552,0.00708,0,0,0,0.00501,0.00629,0.00744,0.01546,0.0051,0.00585,0.00747,0,0,0,0.00459,0.00595,0.00718,0.01509,0.00468,0.00549,0.00726,0,0,0,0.00464,0.00566,0.00652,0.01317,0.00469,0.00525,0.0064,0,0,0,0.00441,0.00547,0.00637,0.01295,0.00447,0.00506,0.00628,0,0,0,0.0043,0.00526,0.00605,0.01218,0.00434,0.00486,0.00592,0,0,0,0.00461,0.00573,0.00668,0.01367,0.00468,0.00531,0.00663,0,0,0,0.00437,0.00531,0.00608,0.01225,0.00442,0.00493,0.00595,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00094,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00092,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00091,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00091,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00084,0,0,0,0,0,0,0.04295,0.05549,0.08233,0.18911,0,0,0,0,0,0,0.03776,0.04893,0.07418,0.17783,0,0,0,0,0,0,0.04102,0.05482,0.08302,0.19431,0,0,0,0,0,0,0.04524,0.06054,0.09035,0.20215,0,0,0,0,0,0,0.02556,0.03646,0.06147,0.16754,0,0,0,0,0,0,0.02806,0.03966,0.06505,0.17021,0,0,0,0,0,0,0.02466,0.03473,0.05863,0.16108,0,0,0,0,0,0,0.03261,0.04471,0.07133,0.17989,0,0,0,0,0,0,0.02506,0.03522,0.05928,0.16298 +Pickup,PH40G,2040,0,0,0,0,0,0,0,0.02079,0.02104,0.0213,0,0,0,0,0,0,0,0.02146,0.02168,0.02192,0,0,0,0,0,0,0,0.02349,0.02372,0.02397,0,0,0,0,0,0,0,0.01939,0.01964,0.01991,0,0,0,0,0,0,0,0.02298,0.02314,0.0233,0,0,0,0,0,0,0,0.02084,0.02102,0.02119,0,0,0,0,0,0,0,0.02093,0.02108,0.02122,0,0,0,0,0,0,0,0.02201,0.0222,0.02239,0,0,0,0,0,0,0,0.02186,0.022,0.02214,0,0,0,0,0,0,0,0.00454,0.00347,0.00336,0,0,0,0,0,0,0,0.0039,0.00302,0.00296,0,0,0,0,0,0,0,0.00424,0.00338,0.0033,0,0,0,0,0,0,0,0.00479,0.0038,0.0037,0,0,0,0,0,0,0,0.00223,0.00201,0.00209,0,0,0,0,0,0,0,0.0026,0.00228,0.00233,0,0,0,0,0,0,0,0.00215,0.00195,0.00205,0,0,0,0,0,0,0,0.00308,0.00256,0.00257,0,0,0,0,0,0,0,0.00223,0.00195,0.00202,0,0,0,0,0,0,0,0.58637,0.85493,1.09898,0,0,0,0,0,0,0,0.55237,0.81808,1.05779,0,0,0,0,0,0,0,0.59375,0.91388,1.20164,0,0,0,0,0,0,0,0.638,0.9852,1.29874,0,0,0,0,0,0,0,0.45771,0.76934,1.03033,0,0,0,0,0,0,0,0.4894,0.8139,1.09031,0,0,0,0,0,0,0,0.47246,0.79251,1.06037,0,0,0,0,0,0,0,0.52294,0.83172,1.09452,0,0,0,0,0,0,0,0.44066,0.70988,0.92911,0,0,0,0,0,0,0,135.31596,136.59718,138.69927,0,0,0,0,0,0,0,136.30965,137.49906,139.45684,0,0,0,0,0,0,0,138.26901,139.52107,141.58116,0,0,0,0,0,0,0,135.21387,136.46656,138.53155,0,0,0,0,0,0,0,138.26032,139.1288,140.58094,0,0,0,0,0,0,0,136.15164,137.10908,138.70261,0,0,0,0,0,0,0,137.24245,138.07339,139.46903,0,0,0,0,0,0,0,137.32947,138.33643,140.00687,0,0,0,0,0,0,0,135.16861,136.08668,137.60238,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00303,0.00339,0.00398,0,0,0,0,0,0,0,0.00292,0.00327,0.00385,0,0,0,0,0,0,0,0.00301,0.00337,0.00396,0,0,0,0,0,0,0,0.00295,0.00331,0.00389,0,0,0,0,0,0,0,0.00297,0.00333,0.00392,0,0,0,0,0,0,0,0.003,0.00336,0.00395,0,0,0,0,0,0,0,0.00302,0.00339,0.00398,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00946,0.01086,0.01374,0,0,0,0,0,0,0,0.00946,0.01085,0.01374,0,0,0,0,0,0,0,0.00941,0.0108,0.01367,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00942,0.01081,0.01369,0,0,0,0,0,0,0,0.00945,0.01084,0.01372,0,0,0,0,0,0,0,0.00947,0.01086,0.01375,0,0,0,0,0,0,0,0.00948,0.01089,0.01378,0,0,0,0,0,0,0,0.0213,0.03172,0.04385,0,0,0,0,0,0,0,0.02039,0.03049,0.04233,0,0,0,0,0,0,0,0.02054,0.0322,0.04456,0,0,0,0,0,0,0,0.02178,0.03459,0.04786,0,0,0,0,0,0,0,0.01622,0.02714,0.03839,0,0,0,0,0,0,0,0.0178,0.02931,0.04117,0,0,0,0,0,0,0,0.01664,0.02762,0.03911,0,0,0,0,0,0,0,0.01988,0.03183,0.04446,0,0,0,0,0,0,0,0.01745,0.02792,0.03924,0,0,0,0,0.00071,0.00113,0.0015,0.00371,0.00112,0.0015,0,0,0,0,0.00068,0.00108,0.00143,0.0035,0.00107,0.00143,0,0,0,0,0.00069,0.00109,0.00146,0.00358,0.00109,0.00146,0,0,0,0,0.00072,0.00114,0.00153,0.00378,0.00113,0.00153,0,0,0,0,0.0006,0.00094,0.00123,0.00292,0.00094,0.00123,0,0,0,0,0.00061,0.00096,0.00126,0.00302,0.00096,0.00126,0,0,0,0,0.00058,0.0009,0.00116,0.00275,0.00089,0.00116,0,0,0,0,0.00063,0.00099,0.0013,0.00315,0.00099,0.0013,0,0,0,0,0.00056,0.00088,0.00113,0.0027,0.00087,0.00113,0,0,0,0,0.02198,0.02291,0.02378,0.04928,0.02289,0.02378,0,0,0,0,0.0226,0.02348,0.02428,0.05011,0.02346,0.02428,0,0,0,0,0.02464,0.02554,0.02638,0.05438,0.02552,0.02637,0,0,0,0,0.02058,0.02154,0.02244,0.04664,0.02151,0.02243,0,0,0,0,0.02399,0.02471,0.02534,0.05178,0.0247,0.02534,0,0,0,0,0.02187,0.02262,0.02328,0.04774,0.0226,0.02327,0,0,0,0,0.0219,0.02258,0.02316,0.0473,0.02256,0.02316,0,0,0,0,0.02307,0.02385,0.02455,0.05039,0.02383,0.02454,0,0,0,0,0.0228,0.02347,0.02403,0.04906,0.02346,0.02403,0,0,0,0,0.00403,0.00485,0.00562,0.01276,0.00483,0.00562,0,0,0,0,0.00405,0.00482,0.00554,0.01244,0.00481,0.00553,0,0,0,0,0.00433,0.00512,0.00586,0.01316,0.00511,0.00586,0,0,0,0,0.00387,0.00471,0.00551,0.01258,0.00469,0.00551,0,0,0,0,0.00407,0.0047,0.00526,0.01149,0.00469,0.00526,0,0,0,0,0.00382,0.00448,0.00506,0.01118,0.00447,0.00506,0,0,0,0,0.00375,0.00435,0.00487,0.01061,0.00434,0.00486,0,0,0,0,0.00401,0.0047,0.00532,0.01178,0.00469,0.00532,0,0,0,0,0.00384,0.00443,0.00493,0.01074,0.00442,0.00493,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00087,0.00088,0.00089,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00087,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00088,0.00089,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.0008,0.0008,0.00081,0,0,0,0,0,0,0,0.04297,0.05543,0.08229,0,0,0,0,0,0,0,0.03778,0.04888,0.07415,0,0,0,0,0,0,0,0.04107,0.05476,0.08297,0,0,0,0,0,0,0,0.04526,0.06049,0.09033,0,0,0,0,0,0,0,0.02553,0.03646,0.0615,0,0,0,0,0,0,0,0.02805,0.03965,0.06506,0,0,0,0,0,0,0,0.02463,0.03474,0.05867,0,0,0,0,0,0,0,0.03255,0.04473,0.0714,0,0,0,0,0,0,0,0.02504,0.03521,0.05929 +Pickup,PH40G,2045,0,0,0,0,0,0,0,0,0.0208,0.02104,0,0,0,0,0,0,0,0,0.02146,0.02169,0,0,0,0,0,0,0,0,0.02349,0.02372,0,0,0,0,0,0,0,0,0.01939,0.01964,0,0,0,0,0,0,0,0,0.02298,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02102,0,0,0,0,0,0,0,0,0.02093,0.02108,0,0,0,0,0,0,0,0,0.02201,0.0222,0,0,0,0,0,0,0,0,0.02186,0.022,0,0,0,0,0,0,0,0,0.00454,0.00347,0,0,0,0,0,0,0,0,0.0039,0.00302,0,0,0,0,0,0,0,0,0.00423,0.00337,0,0,0,0,0,0,0,0,0.00478,0.0038,0,0,0,0,0,0,0,0,0.00222,0.00201,0,0,0,0,0,0,0,0,0.00259,0.00228,0,0,0,0,0,0,0,0,0.00215,0.00195,0,0,0,0,0,0,0,0,0.00307,0.00256,0,0,0,0,0,0,0,0,0.00223,0.00195,0,0,0,0,0,0,0,0,0.58515,0.85333,0,0,0,0,0,0,0,0,0.55145,0.8169,0,0,0,0,0,0,0,0,0.59254,0.91238,0,0,0,0,0,0,0,0,0.63668,0.98369,0,0,0,0,0,0,0,0,0.4577,0.76945,0,0,0,0,0,0,0,0,0.4892,0.81376,0,0,0,0,0,0,0,0,0.47235,0.79243,0,0,0,0,0,0,0,0,0.52262,0.83136,0,0,0,0,0,0,0,0,0.4406,0.70976,0,0,0,0,0,0,0,0,135.30893,136.59487,0,0,0,0,0,0,0,0,136.30292,137.49674,0,0,0,0,0,0,0,0,138.26201,139.51861,0,0,0,0,0,0,0,0,135.20696,136.46414,0,0,0,0,0,0,0,0,138.25445,139.12641,0,0,0,0,0,0,0,0,136.14548,137.10674,0,0,0,0,0,0,0,0,137.23684,138.07104,0,0,0,0,0,0,0,0,137.32323,138.33411,0,0,0,0,0,0,0,0,135.16274,136.0843,0,0,0,0,0,0,0,0,0.00297,0.00334,0,0,0,0,0,0,0,0,0.00298,0.00334,0,0,0,0,0,0,0,0,0.00303,0.00339,0,0,0,0,0,0,0,0,0.00291,0.00327,0,0,0,0,0,0,0,0,0.00301,0.00337,0,0,0,0,0,0,0,0,0.00295,0.00331,0,0,0,0,0,0,0,0,0.00297,0.00333,0,0,0,0,0,0,0,0,0.003,0.00336,0,0,0,0,0,0,0,0,0.00302,0.00339,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00946,0.01085,0,0,0,0,0,0,0,0,0.00941,0.0108,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00942,0.01081,0,0,0,0,0,0,0,0,0.00944,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00948,0.01088,0,0,0,0,0,0,0,0,0.02132,0.03175,0,0,0,0,0,0,0,0,0.02041,0.03052,0,0,0,0,0,0,0,0,0.02056,0.03224,0,0,0,0,0,0,0,0,0.02181,0.03464,0,0,0,0,0,0,0,0,0.01624,0.02717,0,0,0,0,0,0,0,0,0.01782,0.02934,0,0,0,0,0,0,0,0,0.01666,0.02766,0,0,0,0,0,0,0,0,0.01989,0.03186,0,0,0,0,0,0,0,0,0.01745,0.02792,0,0,0,0,0,0.00071,0.00112,0.0015,0.00319,0.00112,0,0,0,0,0,0.00068,0.00108,0.00142,0.00301,0.00107,0,0,0,0,0,0.00069,0.00109,0.00145,0.00308,0.00109,0,0,0,0,0,0.00072,0.00114,0.00152,0.00325,0.00114,0,0,0,0,0,0.0006,0.00094,0.00122,0.00253,0.00094,0,0,0,0,0,0.00061,0.00096,0.00125,0.00261,0.00096,0,0,0,0,0,0.00058,0.0009,0.00115,0.00239,0.00089,0,0,0,0,0,0.00063,0.00099,0.0013,0.00272,0.00099,0,0,0,0,0,0.00056,0.00087,0.00113,0.00234,0.00087,0,0,0,0,0,0.02197,0.0229,0.02376,0.04807,0.0229,0,0,0,0,0,0.0226,0.02347,0.02426,0.049,0.02347,0,0,0,0,0,0.02464,0.02553,0.02635,0.05322,0.02553,0,0,0,0,0,0.02058,0.02153,0.02241,0.04541,0.02152,0,0,0,0,0,0.02399,0.02471,0.02533,0.05092,0.02471,0,0,0,0,0,0.02187,0.02261,0.02326,0.04683,0.02261,0,0,0,0,0,0.0219,0.02257,0.02314,0.04651,0.02257,0,0,0,0,0,0.02306,0.02384,0.02453,0.04942,0.02384,0,0,0,0,0,0.0228,0.02346,0.02403,0.04827,0.02346,0,0,0,0,0,0.00402,0.00484,0.0056,0.01169,0.00484,0,0,0,0,0,0.00404,0.00482,0.00552,0.01145,0.00481,0,0,0,0,0,0.00432,0.00512,0.00584,0.01214,0.00511,0,0,0,0,0,0.00387,0.00471,0.00548,0.01149,0.0047,0,0,0,0,0,0.00406,0.0047,0.00525,0.01072,0.0047,0,0,0,0,0,0.00382,0.00448,0.00505,0.01038,0.00448,0,0,0,0,0,0.00375,0.00435,0.00485,0.0099,0.00435,0,0,0,0,0,0.004,0.00469,0.00531,0.01092,0.00469,0,0,0,0,0,0.00384,0.00443,0.00493,0.01004,0.00443,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00087,0.00088,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00087,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00088,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.0008,0.0008,0,0,0,0,0,0,0,0,0.04293,0.0554,0,0,0,0,0,0,0,0,0.03774,0.04886,0,0,0,0,0,0,0,0,0.04102,0.05471,0,0,0,0,0,0,0,0,0.04522,0.06046,0,0,0,0,0,0,0,0,0.02553,0.03647,0,0,0,0,0,0,0,0,0.02804,0.03965,0,0,0,0,0,0,0,0,0.02463,0.03475,0,0,0,0,0,0,0,0,0.03256,0.04477,0,0,0,0,0,0,0,0,0.02504,0.03521 +Pickup,PH40G,2050,0,0,0,0,0,0,0,0,0,0.0208,0,0,0,0,0,0,0,0,0,0.02147,0,0,0,0,0,0,0,0,0,0.02349,0,0,0,0,0,0,0,0,0,0.01939,0,0,0,0,0,0,0,0,0,0.02298,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02093,0,0,0,0,0,0,0,0,0,0.02201,0,0,0,0,0,0,0,0,0,0.02186,0,0,0,0,0,0,0,0,0,0.00453,0,0,0,0,0,0,0,0,0,0.00389,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.00478,0,0,0,0,0,0,0,0,0,0.00222,0,0,0,0,0,0,0,0,0,0.00259,0,0,0,0,0,0,0,0,0,0.00215,0,0,0,0,0,0,0,0,0,0.00307,0,0,0,0,0,0,0,0,0,0.00223,0,0,0,0,0,0,0,0,0,0.58383,0,0,0,0,0,0,0,0,0,0.55046,0,0,0,0,0,0,0,0,0,0.59121,0,0,0,0,0,0,0,0,0,0.63522,0,0,0,0,0,0,0,0,0,0.45769,0,0,0,0,0,0,0,0,0,0.48896,0,0,0,0,0,0,0,0,0,0.47221,0,0,0,0,0,0,0,0,0,0.52227,0,0,0,0,0,0,0,0,0,0.44054,0,0,0,0,0,0,0,0,0,135.30911,0,0,0,0,0,0,0,0,0,136.30301,0,0,0,0,0,0,0,0,0,138.26211,0,0,0,0,0,0,0,0,0,135.20703,0,0,0,0,0,0,0,0,0,138.25462,0,0,0,0,0,0,0,0,0,136.14562,0,0,0,0,0,0,0,0,0,137.23687,0,0,0,0,0,0,0,0,0,137.32338,0,0,0,0,0,0,0,0,0,135.16284,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.00298,0,0,0,0,0,0,0,0,0,0.00303,0,0,0,0,0,0,0,0,0,0.00291,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.00295,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00302,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00941,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00942,0,0,0,0,0,0,0,0,0,0.00944,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00948,0,0,0,0,0,0,0,0,0,0.02135,0,0,0,0,0,0,0,0,0,0.02044,0,0,0,0,0,0,0,0,0,0.02059,0,0,0,0,0,0,0,0,0,0.02185,0,0,0,0,0,0,0,0,0,0.01625,0,0,0,0,0,0,0,0,0,0.01784,0,0,0,0,0,0,0,0,0,0.01668,0,0,0,0,0,0,0,0,0,0.01991,0,0,0,0,0,0,0,0,0,0.01745,0,0,0,0,0,0,0.00071,0.00112,0.0015,0.00301,0,0,0,0,0,0,0.00068,0.00107,0.00142,0.00285,0,0,0,0,0,0,0.00069,0.00108,0.00145,0.00291,0,0,0,0,0,0,0.00071,0.00113,0.00152,0.00307,0,0,0,0,0,0,0.0006,0.00094,0.00122,0.0024,0,0,0,0,0,0,0.00061,0.00095,0.00125,0.00247,0,0,0,0,0,0,0.00057,0.00089,0.00116,0.00226,0,0,0,0,0,0,0.00063,0.00098,0.0013,0.00257,0,0,0,0,0,0,0.00056,0.00087,0.00113,0.00221,0,0,0,0,0,0,0.02197,0.02289,0.02377,0.04766,0,0,0,0,0,0,0.02259,0.02345,0.02427,0.04862,0,0,0,0,0,0,0.02463,0.02551,0.02636,0.05283,0,0,0,0,0,0,0.02057,0.0215,0.02242,0.04499,0,0,0,0,0,0,0.02399,0.0247,0.02533,0.05062,0,0,0,0,0,0,0.02186,0.0226,0.02327,0.04652,0,0,0,0,0,0,0.02189,0.02256,0.02315,0.04624,0,0,0,0,0,0,0.02306,0.02383,0.02454,0.04908,0,0,0,0,0,0,0.0228,0.02346,0.02403,0.04799,0,0,0,0,0,0,0.00402,0.00483,0.00561,0.01133,0,0,0,0,0,0,0.00404,0.0048,0.00552,0.01112,0,0,0,0,0,0,0.00432,0.0051,0.00585,0.01179,0,0,0,0,0,0,0.00386,0.00468,0.00549,0.01112,0,0,0,0,0,0,0.00406,0.00469,0.00525,0.01046,0,0,0,0,0,0,0.00382,0.00447,0.00506,0.0101,0,0,0,0,0,0,0.00375,0.00434,0.00486,0.00966,0,0,0,0,0,0,0.004,0.00468,0.00531,0.01063,0,0,0,0,0,0,0.00384,0.00442,0.00493,0.00979,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.0008,0,0,0,0,0,0,0,0,0,0.0429,0,0,0,0,0,0,0,0,0,0.03772,0,0,0,0,0,0,0,0,0,0.04098,0,0,0,0,0,0,0,0,0,0.04519,0,0,0,0,0,0,0,0,0,0.02553,0,0,0,0,0,0,0,0,0,0.02803,0,0,0,0,0,0,0,0,0,0.02464,0,0,0,0,0,0,0,0,0,0.03258,0,0,0,0,0,0,0,0,0,0.02504 +Small SUV,B20,1990,0.22805,,,,,,,,,,0.22758,,,,,,,,,,0.22652,,,,,,,,,,0.22882,,,,,,,,,,0.22674,,,,,,,,,,0.22793,,,,,,,,,,0.22788,,,,,,,,,,0.22726,,,,,,,,,,0.22738,,,,,,,,,,0.00727,,,,,,,,,,0.0073,,,,,,,,,,0.0075,,,,,,,,,,0.00715,,,,,,,,,,0.00733,,,,,,,,,,0.00716,,,,,,,,,,0.00718,,,,,,,,,,0.00732,,,,,,,,,,0.00722,,,,,,,,,,51.08076,,,,,,,,,,51.76979,,,,,,,,,,52.11024,,,,,,,,,,51.40393,,,,,,,,,,53.85553,,,,,,,,,,52.69588,,,,,,,,,,54.2288,,,,,,,,,,53.09684,,,,,,,,,,52.37859,,,,,,,,,,538.78784,,,,,,,,,,540.82552,,,,,,,,,,546.10831,,,,,,,,,,537.34516,,,,,,,,,,544.15597,,,,,,,,,,538.80041,,,,,,,,,,541.01955,,,,,,,,,,542.54018,,,,,,,,,,537.90486,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.83861,,,,,,,,,,5.88438,,,,,,,,,,5.92266,,,,,,,,,,5.80178,,,,,,,,,,5.83039,,,,,,,,,,5.79643,,,,,,,,,,5.83528,,,,,,,,,,6.1888,,,,,,,,,,5.9569,,,,,,,,,,0.06237,,,,,,,,,,0.06353,,,,,,,,,,0.06715,,,,,,,,,,0.05956,,,,,,,,,,0.06637,,,,,,,,,,0.06234,,,,,,,,,,0.06277,,,,,,,,,,0.06461,,,,,,,,,,0.06473,,,,,,,,,,0.38774,,,,,,,,,,0.39042,,,,,,,,,,0.39892,,,,,,,,,,0.38136,,,,,,,,,,0.39713,,,,,,,,,,0.38783,,,,,,,,,,0.3887,,,,,,,,,,0.39294,,,,,,,,,,0.39308,,,,,,,,,,0.3243,,,,,,,,,,0.32567,,,,,,,,,,0.33035,,,,,,,,,,0.32063,,,,,,,,,,0.32935,,,,,,,,,,0.32415,,,,,,,,,,0.32476,,,,,,,,,,0.32706,,,,,,,,,,0.32733,,,,,,,,,,0.04323,,,,,,,,,,0.04339,,,,,,,,,,0.04381,,,,,,,,,,0.04311,,,,,,,,,,0.04366,,,,,,,,,,0.04323,,,,,,,,,,0.0434,,,,,,,,,,0.04353,,,,,,,,,,0.04315,,,,,,,,,,3.16077,,,,,,,,,,3.17278,,,,,,,,,,3.25865,,,,,,,,,,3.10689,,,,,,,,,,3.18343,,,,,,,,,,3.11363,,,,,,,,,,3.12008,,,,,,,,,,3.17963,,,,,,,,,,3.13782,,,,,,,,, +Small SUV,B20,1995,0.17989,0.17824,,,,,,,,,0.18072,0.17862,,,,,,,,,0.18332,0.17994,,,,,,,,,0.17759,0.177,,,,,,,,,0.18271,0.17961,,,,,,,,,0.17961,0.178,,,,,,,,,0.1801,0.17832,,,,,,,,,0.18148,0.17901,,,,,,,,,0.18179,0.17926,,,,,,,,,0.00409,0.0059,,,,,,,,,0.00411,0.00592,,,,,,,,,0.00422,0.00607,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00413,0.00593,,,,,,,,,0.00404,0.00582,,,,,,,,,0.00406,0.00583,,,,,,,,,0.00412,0.00593,,,,,,,,,0.00405,0.00585,,,,,,,,,16.44771,32.26825,,,,,,,,,16.86814,32.85107,,,,,,,,,16.87762,32.93686,,,,,,,,,16.93022,32.79195,,,,,,,,,18.03012,34.50973,,,,,,,,,17.59858,33.77339,,,,,,,,,18.44219,35.02464,,,,,,,,,17.60578,33.92034,,,,,,,,,17.03581,33.20786,,,,,,,,,601.03056,581.61769,,,,,,,,,605.47132,585.05585,,,,,,,,,611.12901,590.77357,,,,,,,,,601.92026,581.57618,,,,,,,,,615.76521,592.40359,,,,,,,,,608.16961,585.65927,,,,,,,,,613.41805,589.65718,,,,,,,,,611.11325,589.02543,,,,,,,,,604.06398,582.67328,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.70728,6.16661,,,,,,,,,5.81129,6.24702,,,,,,,,,5.90706,6.31341,,,,,,,,,5.69559,6.14882,,,,,,,,,5.92634,6.28923,,,,,,,,,5.79816,6.20353,,,,,,,,,5.90398,6.28765,,,,,,,,,6.22269,6.62793,,,,,,,,,5.90345,6.33515,,,,,,,,,0.04916,0.05176,,,,,,,,,0.05072,0.05305,,,,,,,,,0.05537,0.05694,,,,,,,,,0.04545,0.04858,,,,,,,,,0.05434,0.05607,,,,,,,,,0.04907,0.0516,,,,,,,,,0.04966,0.05216,,,,,,,,,0.05209,0.0542,,,,,,,,,0.05226,0.05442,,,,,,,,,0.31429,0.31418,,,,,,,,,0.31901,0.31792,,,,,,,,,0.33306,0.32924,,,,,,,,,0.30321,0.30519,,,,,,,,,0.32999,0.32676,,,,,,,,,0.31414,0.31396,,,,,,,,,0.31584,0.31539,,,,,,,,,0.32315,0.32127,,,,,,,,,0.32358,0.32171,,,,,,,,,0.25665,0.25659,,,,,,,,,0.25992,0.25895,,,,,,,,,0.26974,0.26625,,,,,,,,,0.24864,0.25052,,,,,,,,,0.26754,0.2646,,,,,,,,,0.25628,0.25616,,,,,,,,,0.25765,0.25729,,,,,,,,,0.26281,0.26111,,,,,,,,,0.26334,0.26166,,,,,,,,,0.04822,0.00538,,,,,,,,,0.04858,0.00542,,,,,,,,,0.04903,0.00547,,,,,,,,,0.04829,0.00538,,,,,,,,,0.0494,0.00548,,,,,,,,,0.04879,0.00542,,,,,,,,,0.04921,0.00546,,,,,,,,,0.04903,0.00545,,,,,,,,,0.04846,0.00539,,,,,,,,,2.01091,2.75535,,,,,,,,,2.01877,2.76324,,,,,,,,,2.07351,2.832,,,,,,,,,1.98408,2.71558,,,,,,,,,2.02997,2.76938,,,,,,,,,1.98773,2.71574,,,,,,,,,1.99382,2.72313,,,,,,,,,2.02581,2.76909,,,,,,,,,1.99133,2.72948,,,,,,,, +Small SUV,B20,2000,0.17277,0.17036,0.16849,,,,,,,,0.17351,0.17108,0.16911,,,,,,,,0.17566,0.17317,0.17096,,,,,,,,0.17051,0.16815,0.16654,,,,,,,,0.17509,0.1726,0.17046,,,,,,,,0.17224,0.16983,0.16801,,,,,,,,0.17288,0.17046,0.16858,,,,,,,,0.17416,0.17171,0.16967,,,,,,,,0.17464,0.1722,0.17011,,,,,,,,0.00196,0.00273,0.00398,,,,,,,,0.00197,0.00273,0.00398,,,,,,,,0.00204,0.00281,0.00408,,,,,,,,0.00194,0.0027,0.00393,,,,,,,,0.00197,0.00273,0.00396,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00193,0.00268,0.0039,,,,,,,,0.00197,0.00273,0.00397,,,,,,,,0.00191,0.00266,0.00389,,,,,,,,5.36619,8.06769,14.31453,,,,,,,,5.56579,8.32587,14.66954,,,,,,,,5.67676,8.43474,14.74389,,,,,,,,5.55271,8.32892,14.68617,,,,,,,,6.15287,9.09831,15.70228,,,,,,,,5.90527,8.78164,15.28578,,,,,,,,6.20957,9.23242,15.98444,,,,,,,,5.89796,8.77512,15.30446,,,,,,,,5.61249,8.41137,14.82543,,,,,,,,607.45309,611.27577,611.22536,,,,,,,,612.68141,616.30533,615.63262,,,,,,,,618.59733,622.29771,621.77589,,,,,,,,608.94563,612.6327,612.15592,,,,,,,,625.29169,628.26771,625.67413,,,,,,,,616.80843,619.94316,617.91526,,,,,,,,623.06316,625.97761,623.1592,,,,,,,,619.60626,622.8754,621.12208,,,,,,,,611.82942,615.05615,613.38267,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.27894,4.5826,5.23497,,,,,,,,4.38664,4.68891,5.33485,,,,,,,,4.49703,4.79631,5.43246,,,,,,,,4.27293,4.57458,5.22215,,,,,,,,4.55602,4.84927,5.46542,,,,,,,,4.40525,4.70173,5.33139,,,,,,,,4.51455,4.81186,5.43793,,,,,,,,4.75874,5.06634,5.7178,,,,,,,,4.46893,4.77437,5.42474,,,,,,,,0.04518,0.04528,0.04678,,,,,,,,0.0467,0.04675,0.04815,,,,,,,,0.05117,0.05111,0.05227,,,,,,,,0.04161,0.04175,0.04338,,,,,,,,0.05018,0.05014,0.05134,,,,,,,,0.0451,0.04515,0.04659,,,,,,,,0.04567,0.04574,0.04719,,,,,,,,0.04802,0.04804,0.04937,,,,,,,,0.04818,0.04823,0.04962,,,,,,,,0.3003,0.29571,0.296,,,,,,,,0.30484,0.30009,0.30012,,,,,,,,0.3181,0.31292,0.31232,,,,,,,,0.2895,0.28517,0.28593,,,,,,,,0.31513,0.31003,0.30956,,,,,,,,0.29989,0.29523,0.29547,,,,,,,,0.3017,0.29704,0.29724,,,,,,,,0.30877,0.3039,0.30374,,,,,,,,0.30936,0.30455,0.30443,,,,,,,,0.24374,0.23952,0.2398,,,,,,,,0.24685,0.24249,0.24253,,,,,,,,0.25596,0.2512,0.25065,,,,,,,,0.23596,0.232,0.23272,,,,,,,,0.25385,0.24917,0.24875,,,,,,,,0.24313,0.23885,0.23909,,,,,,,,0.24461,0.24034,0.24054,,,,,,,,0.24955,0.24507,0.24494,,,,,,,,0.25024,0.24582,0.24572,,,,,,,,0.04873,0.00566,0.00566,,,,,,,,0.04915,0.00571,0.0057,,,,,,,,0.04963,0.00576,0.00576,,,,,,,,0.04885,0.00567,0.00567,,,,,,,,0.05017,0.00582,0.00579,,,,,,,,0.04948,0.00574,0.00572,,,,,,,,0.04999,0.00579,0.00577,,,,,,,,0.04971,0.00577,0.00575,,,,,,,,0.04909,0.00569,0.00568,,,,,,,,0.98924,1.36957,1.96291,,,,,,,,0.99427,1.37336,1.96434,,,,,,,,1.03043,1.41134,2.01209,,,,,,,,0.97808,1.35605,1.94133,,,,,,,,0.99486,1.3699,1.95249,,,,,,,,0.9736,1.3476,1.92505,,,,,,,,0.97176,1.34753,1.925,,,,,,,,0.99419,1.37292,1.96122,,,,,,,,0.9621,1.33842,1.92073,,,,,,, +Small SUV,B20,2005,0.08078,0.1089,0.10857,0.12252,,,,,,,0.08084,0.10897,0.10864,0.12272,,,,,,,0.08096,0.10912,0.10879,0.12329,,,,,,,0.08046,0.10845,0.10811,0.12168,,,,,,,0.08089,0.10903,0.10869,0.1231,,,,,,,0.08058,0.10861,0.10827,0.12216,,,,,,,0.08075,0.10885,0.10851,0.12249,,,,,,,0.08089,0.10903,0.1087,0.12291,,,,,,,0.08105,0.10927,0.10894,0.12321,,,,,,,0.002,0.00178,0.00203,0.00282,,,,,,,0.00198,0.00178,0.00202,0.00281,,,,,,,0.00207,0.00185,0.0021,0.0029,,,,,,,0.00199,0.00176,0.00201,0.00279,,,,,,,0.00184,0.00176,0.00198,0.00273,,,,,,,0.00185,0.00173,0.00195,0.00271,,,,,,,0.0018,0.00171,0.00193,0.00269,,,,,,,0.00191,0.00177,0.002,0.00277,,,,,,,0.00177,0.00169,0.00191,0.00267,,,,,,,2.10242,4.07972,4.8952,7.74585,,,,,,,2.18134,4.23234,5.06451,7.96509,,,,,,,2.22336,4.3202,5.15429,8.04899,,,,,,,2.17347,4.21186,5.04278,7.95377,,,,,,,2.41578,4.68882,5.5724,8.62104,,,,,,,2.31342,4.48547,5.34557,8.33881,,,,,,,2.44196,4.73124,5.63191,8.74726,,,,,,,2.31503,4.49118,5.35639,8.35543,,,,,,,2.20527,4.27963,5.1245,8.05815,,,,,,,749.77621,752.25396,757.28552,731.51385,,,,,,,758.02248,760.3571,765.13224,738.2125,,,,,,,768.76441,771.12215,776.03367,748.21617,,,,,,,749.43253,751.77386,756.63497,731.06234,,,,,,,778.53836,780.40633,784.33281,754.11852,,,,,,,763.47669,765.454,769.58737,741.29687,,,,,,,772.3496,774.17497,777.98916,748.53308,,,,,,,768.82496,770.90602,775.20833,746.575,,,,,,,758.95407,761.08564,765.29914,736.94078,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.98685,3.15562,3.27307,3.85585,,,,,,,3.05399,3.22159,3.33648,3.92591,,,,,,,3.11921,3.28271,3.3937,3.99106,,,,,,,2.98457,3.15342,3.26981,3.84841,,,,,,,3.14299,3.3027,3.40888,4.00743,,,,,,,3.05829,3.22222,3.33306,3.91961,,,,,,,3.12339,3.28768,3.39721,3.99332,,,,,,,3.29701,3.46771,3.58008,4.19993,,,,,,,3.10548,3.27441,3.38984,3.98908,,,,,,,0.01856,0.025,0.02542,0.03118,,,,,,,0.01916,0.0258,0.02622,0.03211,,,,,,,0.0209,0.02814,0.02853,0.03484,,,,,,,0.01724,0.02322,0.02364,0.029,,,,,,,0.02053,0.02764,0.02803,0.03424,,,,,,,0.0186,0.02504,0.02545,0.03113,,,,,,,0.01877,0.02528,0.02569,0.03148,,,,,,,0.01968,0.0265,0.02691,0.03292,,,,,,,0.01968,0.0265,0.02692,0.03302,,,,,,,0.15839,0.19789,0.19818,0.22219,,,,,,,0.16073,0.20055,0.20082,0.22517,,,,,,,0.16747,0.20816,0.20841,0.23386,,,,,,,0.15323,0.19196,0.19224,0.21521,,,,,,,0.16602,0.2065,0.20675,0.23193,,,,,,,0.15851,0.19794,0.1982,0.22202,,,,,,,0.15919,0.19878,0.19906,0.22314,,,,,,,0.16275,0.20282,0.20309,0.22777,,,,,,,0.16274,0.2029,0.20319,0.22806,,,,,,,0.11317,0.14952,0.14979,0.17188,,,,,,,0.11426,0.1509,0.15115,0.17356,,,,,,,0.11738,0.15482,0.15505,0.17847,,,,,,,0.11058,0.14622,0.14649,0.16762,,,,,,,0.11667,0.15392,0.15415,0.17732,,,,,,,0.11305,0.14933,0.14957,0.17149,,,,,,,0.1135,0.14992,0.15018,0.17234,,,,,,,0.1152,0.15208,0.15233,0.17504,,,,,,,0.11534,0.15229,0.15257,0.17545,,,,,,,0.06015,0.00696,0.00701,0.00677,,,,,,,0.06081,0.00704,0.00708,0.00683,,,,,,,0.06168,0.00714,0.00718,0.00693,,,,,,,0.06012,0.00696,0.007,0.00677,,,,,,,0.06246,0.00722,0.00726,0.00698,,,,,,,0.06125,0.00709,0.00712,0.00686,,,,,,,0.06196,0.00717,0.0072,0.00693,,,,,,,0.06168,0.00714,0.00718,0.00691,,,,,,,0.06089,0.00705,0.00708,0.00682,,,,,,,0.40779,0.68676,0.76688,1.18176,,,,,,,0.4062,0.68918,0.76716,1.17874,,,,,,,0.42408,0.71703,0.7963,1.21432,,,,,,,0.40444,0.67975,0.75955,1.17047,,,,,,,0.38967,0.68243,0.7519,1.15107,,,,,,,0.38748,0.66991,0.74214,1.14147,,,,,,,0.38001,0.66538,0.73519,1.13233,,,,,,,0.39774,0.68533,0.75943,1.16612,,,,,,,0.37425,0.65652,0.72651,1.12526,,,,,, +Small SUV,B20,2010,,0.03413,0.03237,0.02989,0.06582,,,,,,,0.03416,0.0324,0.02991,0.06592,,,,,,,0.03421,0.03245,0.02996,0.06618,,,,,,,0.03398,0.03222,0.02974,0.06539,,,,,,,0.03418,0.03242,0.02993,0.06608,,,,,,,0.03404,0.03228,0.02979,0.06562,,,,,,,0.03411,0.03235,0.02987,0.0658,,,,,,,0.03418,0.03242,0.02993,0.06601,,,,,,,0.03426,0.0325,0.03001,0.06618,,,,,,,0.05914,0.09372,0.12903,0.10029,,,,,,,0.05628,0.09046,0.12463,0.09674,,,,,,,0.05935,0.0944,0.12935,0.1003,,,,,,,0.05929,0.09368,0.12898,0.10025,,,,,,,0.04346,0.07565,0.10509,0.08119,,,,,,,0.04769,0.0802,0.11124,0.08617,,,,,,,0.04293,0.07487,0.10445,0.08081,,,,,,,0.05001,0.08329,0.11526,0.0893,,,,,,,0.04206,0.07374,0.10317,0.07993,,,,,,,1.46727,2.36807,3.05721,5.45039,,,,,,,1.51824,2.44314,3.14567,5.59664,,,,,,,1.53136,2.45291,3.14953,5.63128,,,,,,,1.52073,2.45058,3.15657,5.59741,,,,,,,1.66585,2.6603,3.40189,6.03286,,,,,,,1.60629,2.57443,3.30116,5.84887,,,,,,,1.70131,2.72629,3.49122,6.14754,,,,,,,1.60649,2.57654,3.30635,5.86371,,,,,,,1.53655,2.47504,3.18865,5.66916,,,,,,,722.88144,723.26489,724.86131,733.55234,,,,,,,730.79918,730.96901,732.24039,740.34255,,,,,,,741.14393,741.36063,742.74017,750.86644,,,,,,,722.58197,722.8257,724.24086,732.82405,,,,,,,750.61223,750.0992,750.32436,756.49744,,,,,,,736.13965,735.82867,736.36051,743.24035,,,,,,,744.66165,744.08374,744.20571,750.4392,,,,,,,741.20631,740.99778,741.68743,748.76308,,,,,,,731.75047,731.55203,732.17584,738.98818,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.62417,1.71677,1.7449,2.62565,,,,,,,1.65637,1.74939,1.77609,2.67106,,,,,,,1.69129,1.78421,1.80928,2.71599,,,,,,,1.61751,1.70931,1.7365,2.6166,,,,,,,1.6921,1.7841,1.80787,2.72089,,,,,,,1.651,1.74253,1.76771,2.66245,,,,,,,1.67968,1.77231,1.79706,2.70934,,,,,,,1.77606,1.87257,1.89633,2.84979,,,,,,,1.68299,1.77744,1.80444,2.71379,,,,,,,0.00822,0.0084,0.00805,0.01746,,,,,,,0.00848,0.00865,0.00827,0.01795,,,,,,,0.00922,0.00935,0.00891,0.0194,,,,,,,0.00766,0.00787,0.00755,0.0163,,,,,,,0.00906,0.0092,0.00877,0.01908,,,,,,,0.00824,0.00842,0.00805,0.01743,,,,,,,0.00831,0.00849,0.00812,0.01762,,,,,,,0.0087,0.00886,0.00846,0.01838,,,,,,,0.00869,0.00886,0.00847,0.01844,,,,,,,0.094,0.09526,0.09277,0.14416,,,,,,,0.09578,0.09704,0.09452,0.14638,,,,,,,0.10092,0.1022,0.09958,0.15285,,,,,,,0.09018,0.0914,0.08896,0.13908,,,,,,,0.09984,0.10111,0.0985,0.15143,,,,,,,0.0942,0.09543,0.09292,0.14414,,,,,,,0.09464,0.09589,0.09339,0.1449,,,,,,,0.09731,0.09858,0.09603,0.14832,,,,,,,0.09722,0.09851,0.09598,0.14845,,,,,,,0.05395,0.05511,0.05283,0.1001,,,,,,,0.05453,0.05569,0.05337,0.10108,,,,,,,0.05617,0.05735,0.05494,0.10395,,,,,,,0.0526,0.05373,0.05149,0.09759,,,,,,,0.0558,0.05697,0.05458,0.10327,,,,,,,0.0539,0.05504,0.05273,0.09985,,,,,,,0.05413,0.05528,0.05298,0.10036,,,,,,,0.05502,0.05619,0.05384,0.10195,,,,,,,0.05509,0.05628,0.05395,0.10221,,,,,,,0.00636,0.00636,0.00636,0.00657,,,,,,,0.00643,0.00643,0.00643,0.00664,,,,,,,0.00653,0.00652,0.00652,0.00673,,,,,,,0.00636,0.00635,0.00636,0.00657,,,,,,,0.00661,0.00659,0.00658,0.00678,,,,,,,0.00648,0.00647,0.00646,0.00666,,,,,,,0.00656,0.00654,0.00653,0.00673,,,,,,,0.00653,0.00651,0.00651,0.00671,,,,,,,0.00644,0.00643,0.00643,0.00662,,,,,,,0.22863,0.26113,0.29326,0.69406,,,,,,,0.22671,0.25838,0.28877,0.68767,,,,,,,0.23699,0.26926,0.30025,0.71008,,,,,,,0.22704,0.25947,0.29171,0.68874,,,,,,,0.21325,0.24141,0.26495,0.6524,,,,,,,0.21384,0.24311,0.2693,0.65487,,,,,,,0.20814,0.23641,0.26045,0.64258,,,,,,,0.21992,0.24999,0.27718,0.67096,,,,,,,0.20479,0.23296,0.25705,0.63767,,,,, +Small SUV,B20,2015,,,0.00072,0.00116,0.00138,0.017,,,,,,,0.00072,0.00116,0.00139,0.01701,,,,,,,0.00074,0.00118,0.00141,0.01705,,,,,,,0.0007,0.00113,0.00135,0.0169,,,,,,,0.00073,0.00118,0.0014,0.01703,,,,,,,0.00071,0.00115,0.00137,0.01694,,,,,,,0.00072,0.00116,0.00138,0.01699,,,,,,,0.00073,0.00117,0.0014,0.01703,,,,,,,0.00073,0.00118,0.00141,0.01708,,,,,,,0.08452,0.11522,0.15291,0.17495,,,,,,,0.0805,0.11044,0.1469,0.16807,,,,,,,0.08489,0.11551,0.15277,0.1745,,,,,,,0.0847,0.11535,0.15304,0.17504,,,,,,,0.06251,0.08914,0.12046,0.13817,,,,,,,0.0684,0.09606,0.12913,0.14804,,,,,,,0.0617,0.08838,0.11987,0.13766,,,,,,,0.0717,0.10011,0.13418,0.15373,,,,,,,0.06045,0.08695,0.11829,0.13609,,,,,,,0.91342,1.75476,2.44395,3.72102,,,,,,,0.93766,1.80032,2.5048,3.81076,,,,,,,0.92709,1.78281,2.48348,3.79799,,,,,,,0.94758,1.8168,2.52446,3.82746,,,,,,,1.00472,1.92811,2.67742,4.07194,,,,,,,0.98312,1.88496,2.61696,3.97137,,,,,,,1.04466,2.00046,2.77209,4.18838,,,,,,,0.98318,1.88653,2.62106,3.98173,,,,,,,0.95128,1.82695,2.54218,3.86592,,,,,,,628.04989,629.96688,633.22933,667.36676,,,,,,,634.82955,636.56026,639.57363,673.57396,,,,,,,643.63616,645.44076,648.57141,683.22598,,,,,,,627.7626,629.55898,632.68016,666.57559,,,,,,,651.64498,652.76595,654.96349,688.28856,,,,,,,639.21463,640.50081,642.91766,676.07495,,,,,,,646.66173,647.70936,649.81246,682.70751,,,,,,,643.71917,645.11017,647.6692,681.25657,,,,,,,635.53638,636.89304,639.35925,672.36628,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.33306,,,,,,,0.53682,0.77214,0.84369,1.35329,,,,,,,0.54809,0.78753,0.85813,1.37456,,,,,,,0.52372,0.75365,0.82514,1.32582,,,,,,,0.5485,0.78781,0.85785,1.37441,,,,,,,0.53445,0.7684,0.83893,1.34638,,,,,,,0.54375,0.78179,0.85304,1.36862,,,,,,,0.57087,0.82186,0.89466,1.43542,,,,,,,0.54606,0.78532,0.85779,1.3751,,,,,,,0.00101,0.00156,0.00171,0.00554,,,,,,,0.00101,0.00158,0.00172,0.00565,,,,,,,0.00104,0.00161,0.00175,0.00601,,,,,,,0.00098,0.00153,0.00167,0.00524,,,,,,,0.00103,0.0016,0.00174,0.00593,,,,,,,0.001,0.00155,0.00169,0.00552,,,,,,,0.00101,0.00157,0.00171,0.00557,,,,,,,0.00102,0.00159,0.00173,0.00576,,,,,,,0.00103,0.0016,0.00174,0.00578,,,,,,,0.04842,0.05245,0.05361,0.07642,,,,,,,0.04982,0.05388,0.05503,0.078,,,,,,,0.05386,0.05801,0.05915,0.0826,,,,,,,0.04553,0.04946,0.0506,0.07295,,,,,,,0.05303,0.05715,0.05829,0.08162,,,,,,,0.04868,0.05268,0.05381,0.07654,,,,,,,0.04895,0.05298,0.05413,0.07698,,,,,,,0.05102,0.0551,0.05625,0.07937,,,,,,,0.05087,0.05498,0.05615,0.07935,,,,,,,0.01202,0.01573,0.0168,0.03778,,,,,,,0.01224,0.01598,0.01703,0.03817,,,,,,,0.01288,0.0167,0.01775,0.03932,,,,,,,0.01152,0.01514,0.01619,0.03675,,,,,,,0.01274,0.01653,0.01758,0.03904,,,,,,,0.01202,0.01571,0.01674,0.03766,,,,,,,0.0121,0.01581,0.01686,0.03788,,,,,,,0.01243,0.01619,0.01725,0.03852,,,,,,,0.01245,0.01623,0.01731,0.03865,,,,,,,0.0054,0.00542,0.00545,0.00581,,,,,,,0.00546,0.00548,0.0055,0.00586,,,,,,,0.00554,0.00555,0.00558,0.00595,,,,,,,0.0054,0.00542,0.00544,0.0058,,,,,,,0.00561,0.00561,0.00563,0.00599,,,,,,,0.0055,0.00551,0.00553,0.00589,,,,,,,0.00556,0.00557,0.00559,0.00594,,,,,,,0.00554,0.00555,0.00557,0.00593,,,,,,,0.00547,0.00548,0.0055,0.00585,,,,,,,0.08842,0.11694,0.15196,0.30894,,,,,,,0.0848,0.11261,0.14648,0.30159,,,,,,,0.08902,0.11745,0.15208,0.31248,,,,,,,0.08859,0.11705,0.15207,0.30789,,,,,,,0.06837,0.0931,0.12219,0.26763,,,,,,,0.07364,0.09933,0.13005,0.27671,,,,,,,0.06754,0.09231,0.12157,0.2648,,,,,,,0.07677,0.10316,0.13481,0.2853,,,,,,,0.06621,0.09081,0.11993,0.26207,,,, +Small SUV,B20,2020,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00072,0.00111,0.00125,0.00418,,,,,,,0.00074,0.00113,0.00127,0.00421,,,,,,,0.0007,0.00108,0.00122,0.00414,,,,,,,0.00073,0.00112,0.00127,0.0042,,,,,,,0.00072,0.00109,0.00124,0.00415,,,,,,,0.00072,0.0011,0.00125,0.00418,,,,,,,0.00073,0.00111,0.00126,0.00419,,,,,,,0.00073,0.00112,0.00127,0.00422,,,,,,,0.08358,0.10624,0.13139,0.18031,,,,,,,0.07944,0.1014,0.12537,0.17228,,,,,,,0.08399,0.10664,0.1315,0.1799,,,,,,,0.08379,0.10643,0.13163,0.18056,,,,,,,0.06087,0.07977,0.09876,0.13728,,,,,,,0.06698,0.08684,0.10757,0.14897,,,,,,,0.06,0.07885,0.09788,0.13647,,,,,,,0.07033,0.09085,0.11244,0.15536,,,,,,,0.05872,0.07739,0.09623,0.1346,,,,,,,0.78003,1.244,1.58419,2.54313,,,,,,,0.80087,1.27638,1.623,2.59981,,,,,,,0.7941,1.26576,1.6085,2.57887,,,,,,,0.80806,1.28709,1.63602,2.61669,,,,,,,0.85922,1.36751,1.7326,2.76223,,,,,,,0.83946,1.3361,1.69464,2.70367,,,,,,,0.89057,1.41653,1.79422,2.85345,,,,,,,0.83979,1.33732,1.69717,2.71054,,,,,,,0.81228,1.29491,1.647,2.63871,,,,,,,550.76488,551.97758,554.5184,590.54774,,,,,,,556.65536,557.70538,560.02341,595.9663,,,,,,,564.37632,565.48582,567.90427,604.49952,,,,,,,550.49794,551.60614,554.01994,589.81791,,,,,,,571.21973,571.74336,573.334,608.73913,,,,,,,560.38047,561.05115,562.84058,598.00753,,,,,,,566.85909,567.32038,568.82618,603.8187,,,,,,,564.35678,565.11296,567.02507,602.63906,,,,,,,557.15998,557.89524,559.73271,594.75276,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82389,,,,,,,0.44685,0.5816,0.6301,0.83493,,,,,,,0.45614,0.59314,0.64146,0.848,,,,,,,0.43605,0.5678,0.61593,0.8177,,,,,,,0.45642,0.59326,0.64117,0.8469,,,,,,,0.44481,0.5787,0.62653,0.82966,,,,,,,0.45243,0.58857,0.63684,0.84263,,,,,,,0.47433,0.61755,0.66685,0.88083,,,,,,,0.45454,0.59154,0.64072,0.84859,,,,,,,0.00102,0.00152,0.00161,0.00244,,,,,,,0.00103,0.00153,0.00162,0.00247,,,,,,,0.00105,0.00157,0.00166,0.00256,,,,,,,0.001,0.00148,0.00157,0.00236,,,,,,,0.00105,0.00156,0.00165,0.00253,,,,,,,0.00102,0.00151,0.0016,0.00243,,,,,,,0.00102,0.00152,0.00161,0.00245,,,,,,,0.00104,0.00154,0.00163,0.0025,,,,,,,0.00104,0.00155,0.00164,0.00251,,,,,,,0.04852,0.05211,0.05284,0.05833,,,,,,,0.04992,0.05354,0.05426,0.05977,,,,,,,0.05397,0.05767,0.05839,0.06397,,,,,,,0.04563,0.04913,0.04984,0.05523,,,,,,,0.05314,0.05681,0.05753,0.06309,,,,,,,0.04878,0.05235,0.05306,0.0585,,,,,,,0.04905,0.05264,0.05337,0.05885,,,,,,,0.05112,0.05476,0.05548,0.06102,,,,,,,0.05097,0.05463,0.05537,0.06095,,,,,,,0.01212,0.01542,0.01609,0.02114,,,,,,,0.01234,0.01566,0.01633,0.0214,,,,,,,0.01299,0.01638,0.01705,0.02218,,,,,,,0.01161,0.01483,0.01549,0.02045,,,,,,,0.01284,0.01622,0.01688,0.022,,,,,,,0.01212,0.0154,0.01605,0.02106,,,,,,,0.01219,0.01549,0.01616,0.02121,,,,,,,0.01253,0.01588,0.01654,0.02164,,,,,,,0.01254,0.01591,0.01659,0.02172,,,,,,,0.00474,0.00475,0.00477,0.00509,,,,,,,0.00479,0.0048,0.00482,0.00514,,,,,,,0.00485,0.00486,0.00488,0.00521,,,,,,,0.00474,0.00474,0.00477,0.00508,,,,,,,0.00491,0.00492,0.00493,0.00525,,,,,,,0.00482,0.00483,0.00484,0.00516,,,,,,,0.00488,0.00488,0.00489,0.00521,,,,,,,0.00485,0.00486,0.00488,0.0052,,,,,,,0.00479,0.0048,0.00481,0.00513,,,,,,,0.08632,0.10737,0.13074,0.19448,,,,,,,0.08257,0.10296,0.12525,0.18693,,,,,,,0.08691,0.10795,0.13106,0.19485,,,,,,,0.08651,0.10753,0.13096,0.19457,,,,,,,0.06557,0.08311,0.10076,0.15354,,,,,,,0.07107,0.08951,0.10877,0.16432,,,,,,,0.0647,0.0822,0.09987,0.15237,,,,,,,0.07425,0.09329,0.11335,0.17078,,,,,,,0.06335,0.08069,0.0982,0.15031,,, +Small SUV,B20,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,512.94968,514.78197,517.99663,544.25471,,,,,,,518.41824,520.11253,523.12908,549.19587,,,,,,,525.63567,527.39377,530.51625,557.07648,,,,,,,512.69748,514.43352,517.52977,543.57044,,,,,,,531.93956,533.18201,535.5448,560.80507,,,,,,,521.85672,523.21567,525.74649,550.9689,,,,,,,527.85874,529.03774,531.31514,556.26614,,,,,,,525.56045,527.00165,529.65269,555.2562,,,,,,,518.83947,520.25518,522.82468,547.95859,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00441,0.00443,0.00446,0.00468,,,,,,,0.00446,0.00447,0.0045,0.00472,,,,,,,0.00452,0.00454,0.00456,0.00479,,,,,,,0.00441,0.00442,0.00445,0.00468,,,,,,,0.00458,0.00459,0.00461,0.00482,,,,,,,0.00449,0.0045,0.00452,0.00474,,,,,,,0.00454,0.00455,0.00457,0.00478,,,,,,,0.00452,0.00453,0.00456,0.00478,,,,,,,0.00446,0.00447,0.0045,0.00471,,,,,,,0.08159,0.09699,0.11488,0.16091,,,,,,,0.07781,0.09262,0.10945,0.15328,,,,,,,0.08221,0.09767,0.11535,0.16087,,,,,,,0.08181,0.09721,0.11518,0.16128,,,,,,,0.06066,0.07282,0.08511,0.11973,,,,,,,0.06623,0.07923,0.09313,0.13096,,,,,,,0.05974,0.07178,0.08404,0.11866,,,,,,,0.06938,0.0829,0.09753,0.13694,,,,,,,0.05838,0.07026,0.08234,0.11665,, +Small SUV,B20,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,503.3718,505.58672,509.32506,524.005,,,,,,,508.73521,510.82156,514.36827,528.75158,,,,,,,515.82884,517.98233,521.64211,536.35182,,,,,,,503.12336,505.24438,508.86591,523.34427,,,,,,,522.00133,523.66189,526.57097,539.90088,,,,,,,512.10638,513.87105,516.93712,530.43894,,,,,,,517.98771,519.58364,522.40402,535.52213,,,,,,,515.73928,517.58703,520.77689,534.56791,,,,,,,509.13879,510.95708,514.05712,527.53122,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00433,0.00435,0.00438,0.00451,,,,,,,0.00438,0.00439,0.00442,0.00455,,,,,,,0.00444,0.00446,0.00449,0.00461,,,,,,,0.00433,0.00435,0.00438,0.0045,,,,,,,0.00449,0.0045,0.00453,0.00464,,,,,,,0.0044,0.00442,0.00445,0.00456,,,,,,,0.00446,0.00447,0.00449,0.00461,,,,,,,0.00444,0.00445,0.00448,0.0046,,,,,,,0.00438,0.00439,0.00442,0.00454,,,,,,,0.08017,0.0942,0.11124,0.14813,,,,,,,0.0764,0.08985,0.10581,0.14053,,,,,,,0.0808,0.09491,0.11173,0.14819,,,,,,,0.0804,0.09443,0.11155,0.14859,,,,,,,0.05928,0.07014,0.0815,0.10697,,,,,,,0.06484,0.07653,0.08953,0.11827,,,,,,,0.05833,0.06907,0.08039,0.10579,,,,,,,0.06798,0.08017,0.09389,0.12412,,,,,,,0.05698,0.06756,0.07867,0.10371, +Small SUV,B20,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,503.3128,505.57794,509.31583,517.92765,,,,,,,508.67869,510.81372,514.35931,522.61762,,,,,,,515.77052,517.97394,521.633,530.13469,,,,,,,503.06497,505.23579,508.85677,517.27438,,,,,,,521.95275,523.65546,526.56382,533.6353,,,,,,,512.05585,513.86405,516.92984,524.2835,,,,,,,517.94008,519.57754,522.39719,529.3037,,,,,,,515.68704,517.57981,520.769,528.36379,,,,,,,509.0895,510.95084,514.04998,521.40596,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00438,0.00439,0.00442,0.0045,,,,,,,0.00444,0.00446,0.00449,0.00456,,,,,,,0.00433,0.00435,0.00438,0.00445,,,,,,,0.00449,0.0045,0.00453,0.00459,,,,,,,0.0044,0.00442,0.00445,0.00451,,,,,,,0.00446,0.00447,0.00449,0.00455,,,,,,,0.00444,0.00445,0.00448,0.00454,,,,,,,0.00438,0.00439,0.00442,0.00448,,,,,,,0.07996,0.09416,0.11119,0.14344,,,,,,,0.0762,0.08981,0.10577,0.13585,,,,,,,0.08059,0.09487,0.11169,0.14354,,,,,,,0.08018,0.09439,0.1115,0.14394,,,,,,,0.05915,0.07011,0.08147,0.1023,,,,,,,0.06469,0.0765,0.08949,0.11362,,,,,,,0.05821,0.06904,0.08036,0.10108,,,,,,,0.06781,0.08013,0.09385,0.11942,,,,,,,0.05686,0.06753,0.07865,0.09897 +Small SUV,B20,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,503.3127,505.57737,509.32466,,,,,,,,508.67923,510.81324,514.3685,,,,,,,,515.7706,517.97353,521.64196,,,,,,,,503.06515,505.23527,508.8656,,,,,,,,521.95499,523.65697,526.57308,,,,,,,,512.05759,513.865,516.939,,,,,,,,517.94224,519.57897,522.40675,,,,,,,,515.68842,517.58047,520.77814,,,,,,,,509.09118,510.95144,514.05931,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.00444,0.00446,0.00449,,,,,,,,0.00433,0.00435,0.00438,,,,,,,,0.00449,0.0045,0.00453,,,,,,,,0.0044,0.00442,0.00445,,,,,,,,0.00446,0.00447,0.00449,,,,,,,,0.00444,0.00445,0.00448,,,,,,,,0.00438,0.00439,0.00442,,,,,,,,0.07992,0.09412,0.11119,,,,,,,,0.07617,0.08978,0.10577,,,,,,,,0.08055,0.09483,0.11168,,,,,,,,0.08014,0.09435,0.1115,,,,,,,,0.05913,0.07009,0.08147,,,,,,,,0.06466,0.07648,0.08949,,,,,,,,0.05819,0.06902,0.08036,,,,,,,,0.06778,0.08011,0.09385,,,,,,,,0.05684,0.06751,0.07865 +Small SUV,B20,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,503.30521,505.57746,,,,,,,,,508.67208,510.81364,,,,,,,,,515.76329,517.97369,,,,,,,,,503.05787,505.23542,,,,,,,,,521.94878,523.65741,,,,,,,,,512.05102,513.86545,,,,,,,,,517.93623,519.5794,,,,,,,,,515.6819,517.5808,,,,,,,,,509.08488,510.95195,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00438,0.00439,,,,,,,,,0.00444,0.00446,,,,,,,,,0.00433,0.00435,,,,,,,,,0.00449,0.0045,,,,,,,,,0.0044,0.00442,,,,,,,,,0.00445,0.00447,,,,,,,,,0.00444,0.00445,,,,,,,,,0.00438,0.00439,,,,,,,,,0.07989,0.09412,,,,,,,,,0.07614,0.08978,,,,,,,,,0.08053,0.09483,,,,,,,,,0.08011,0.09435,,,,,,,,,0.05911,0.07009,,,,,,,,,0.06464,0.07647,,,,,,,,,0.05817,0.06902,,,,,,,,,0.06776,0.0801,,,,,,,,,0.05682,0.06751 +Small SUV,B20,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,503.30269,,,,,,,,,,508.66947,,,,,,,,,,515.76074,,,,,,,,,,503.0552,,,,,,,,,,521.94623,,,,,,,,,,512.04854,,,,,,,,,,517.93382,,,,,,,,,,515.6793,,,,,,,,,,509.08241,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00433,,,,,,,,,,0.00438,,,,,,,,,,0.00444,,,,,,,,,,0.00433,,,,,,,,,,0.00449,,,,,,,,,,0.0044,,,,,,,,,,0.00445,,,,,,,,,,0.00444,,,,,,,,,,0.00438,,,,,,,,,,0.07989,,,,,,,,,,0.07614,,,,,,,,,,0.08053,,,,,,,,,,0.08011,,,,,,,,,,0.05911,,,,,,,,,,0.06464,,,,,,,,,,0.05817,,,,,,,,,,0.06776,,,,,,,,,,0.05682 +Small SUV,DSL,1990,0.2702,,,,,,,,,,0.26964,,,,,,,,,,0.26838,,,,,,,,,,0.27112,,,,,,,,,,0.26865,,,,,,,,,,0.27006,,,,,,,,,,0.27,,,,,,,,,,0.26927,,,,,,,,,,0.2694,,,,,,,,,,0.00847,,,,,,,,,,0.0085,,,,,,,,,,0.00873,,,,,,,,,,0.00832,,,,,,,,,,0.00853,,,,,,,,,,0.00834,,,,,,,,,,0.00836,,,,,,,,,,0.00852,,,,,,,,,,0.00841,,,,,,,,,,59.25842,,,,,,,,,,60.05778,,,,,,,,,,60.45272,,,,,,,,,,59.63333,,,,,,,,,,62.47742,,,,,,,,,,61.13211,,,,,,,,,,62.91043,,,,,,,,,,61.59726,,,,,,,,,,60.76403,,,,,,,,,,541.49662,,,,,,,,,,543.54455,,,,,,,,,,548.85394,,,,,,,,,,540.04668,,,,,,,,,,546.89176,,,,,,,,,,541.50929,,,,,,,,,,543.73957,,,,,,,,,,545.2678,,,,,,,,,,540.60916,,,,,,,,,,0.00196,,,,,,,,,,0.00198,,,,,,,,,,0.00206,,,,,,,,,,0.0019,,,,,,,,,,0.00204,,,,,,,,,,0.00196,,,,,,,,,,0.00197,,,,,,,,,,0.00201,,,,,,,,,,0.00202,,,,,,,,,,0.01541,,,,,,,,,,0.01542,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01538,,,,,,,,,,0.0154,,,,,,,,,,0.01542,,,,,,,,,,0.01544,,,,,,,,,,5.71292,,,,,,,,,,5.75771,,,,,,,,,,5.79517,,,,,,,,,,5.67689,,,,,,,,,,5.70488,,,,,,,,,,5.67166,,,,,,,,,,5.70967,,,,,,,,,,6.05558,,,,,,,,,,5.82867,,,,,,,,,,0.0739,,,,,,,,,,0.07528,,,,,,,,,,0.07956,,,,,,,,,,0.07057,,,,,,,,,,0.07864,,,,,,,,,,0.07386,,,,,,,,,,0.07437,,,,,,,,,,0.07655,,,,,,,,,,0.07669,,,,,,,,,,0.45084,,,,,,,,,,0.45374,,,,,,,,,,0.46303,,,,,,,,,,0.44383,,,,,,,,,,0.46107,,,,,,,,,,0.4509,,,,,,,,,,0.45187,,,,,,,,,,0.45649,,,,,,,,,,0.45669,,,,,,,,,,0.38235,,,,,,,,,,0.38393,,,,,,,,,,0.38934,,,,,,,,,,0.37811,,,,,,,,,,0.38817,,,,,,,,,,0.38217,,,,,,,,,,0.38288,,,,,,,,,,0.38553,,,,,,,,,,0.38586,,,,,,,,,,0.04127,,,,,,,,,,0.04142,,,,,,,,,,0.04183,,,,,,,,,,0.04116,,,,,,,,,,0.04168,,,,,,,,,,0.04127,,,,,,,,,,0.04144,,,,,,,,,,0.04156,,,,,,,,,,0.0412,,,,,,,,,,3.676,,,,,,,,,,3.68997,,,,,,,,,,3.7899,,,,,,,,,,3.61329,,,,,,,,,,3.70235,,,,,,,,,,3.62112,,,,,,,,,,3.62861,,,,,,,,,,3.69793,,,,,,,,,,3.64929,,,,,,,,, +Small SUV,DSL,1995,0.21313,0.21119,,,,,,,,,0.21413,0.21164,,,,,,,,,0.2172,0.2132,,,,,,,,,0.21042,0.20971,,,,,,,,,0.21648,0.21281,,,,,,,,,0.21281,0.2109,,,,,,,,,0.21339,0.21128,,,,,,,,,0.21503,0.2121,,,,,,,,,0.21539,0.2124,,,,,,,,,0.00476,0.00687,,,,,,,,,0.00478,0.00689,,,,,,,,,0.00491,0.00706,,,,,,,,,0.0047,0.00677,,,,,,,,,0.00481,0.00691,,,,,,,,,0.00471,0.00677,,,,,,,,,0.00472,0.00679,,,,,,,,,0.0048,0.00691,,,,,,,,,0.00472,0.00681,,,,,,,,,19.08086,37.43417,,,,,,,,,19.56861,38.11029,,,,,,,,,19.5796,38.20981,,,,,,,,,19.64063,38.0417,,,,,,,,,20.9166,40.03449,,,,,,,,,20.41599,39.18027,,,,,,,,,21.39465,40.63183,,,,,,,,,20.42434,39.35074,,,,,,,,,19.76313,38.5242,,,,,,,,,604.05216,584.54177,,,,,,,,,608.51534,587.99728,,,,,,,,,614.20139,593.74374,,,,,,,,,604.94647,584.50009,,,,,,,,,618.86109,595.38189,,,,,,,,,611.22718,588.60376,,,,,,,,,616.50204,592.62164,,,,,,,,,614.18567,591.98679,,,,,,,,,607.10088,585.60288,,,,,,,,,0.00206,0.00204,,,,,,,,,0.00209,0.00206,,,,,,,,,0.00218,0.00215,,,,,,,,,0.00199,0.00197,,,,,,,,,0.00216,0.00213,,,,,,,,,0.00206,0.00203,,,,,,,,,0.00207,0.00205,,,,,,,,,0.00212,0.00209,,,,,,,,,0.00212,0.0021,,,,,,,,,0.01931,0.01726,,,,,,,,,0.01933,0.01727,,,,,,,,,0.0193,0.01724,,,,,,,,,0.01927,0.01723,,,,,,,,,0.01929,0.01724,,,,,,,,,0.01928,0.01723,,,,,,,,,0.0193,0.01725,,,,,,,,,0.01933,0.01727,,,,,,,,,0.01934,0.01729,,,,,,,,,5.58442,6.03387,,,,,,,,,5.6862,6.11255,,,,,,,,,5.7799,6.1775,,,,,,,,,5.57299,6.01646,,,,,,,,,5.79876,6.15385,,,,,,,,,5.67334,6.06999,,,,,,,,,5.77689,6.1523,,,,,,,,,6.08874,6.48525,,,,,,,,,5.77638,6.19878,,,,,,,,,0.05825,0.06133,,,,,,,,,0.06009,0.06285,,,,,,,,,0.0656,0.06747,,,,,,,,,0.05386,0.05755,,,,,,,,,0.06439,0.06643,,,,,,,,,0.05814,0.06114,,,,,,,,,0.05884,0.0618,,,,,,,,,0.06172,0.06422,,,,,,,,,0.06192,0.06448,,,,,,,,,0.36405,0.36433,,,,,,,,,0.36937,0.3685,,,,,,,,,0.38522,0.38117,,,,,,,,,0.35148,0.35421,,,,,,,,,0.38174,0.37837,,,,,,,,,0.36381,0.36402,,,,,,,,,0.36577,0.36567,,,,,,,,,0.37404,0.37225,,,,,,,,,0.37457,0.3728,,,,,,,,,0.30242,0.30273,,,,,,,,,0.30624,0.30549,,,,,,,,,0.31772,0.31402,,,,,,,,,0.29304,0.29561,,,,,,,,,0.31515,0.31208,,,,,,,,,0.30197,0.30221,,,,,,,,,0.30359,0.30354,,,,,,,,,0.30962,0.30801,,,,,,,,,0.31026,0.30866,,,,,,,,,0.04604,0.00514,,,,,,,,,0.04638,0.00517,,,,,,,,,0.04681,0.00522,,,,,,,,,0.0461,0.00514,,,,,,,,,0.04716,0.00524,,,,,,,,,0.04658,0.00518,,,,,,,,,0.04698,0.00521,,,,,,,,,0.04681,0.00521,,,,,,,,,0.04627,0.00515,,,,,,,,,2.33699,3.20375,,,,,,,,,2.34611,3.21291,,,,,,,,,2.40979,3.29292,,,,,,,,,2.30575,3.15745,,,,,,,,,2.35907,3.22001,,,,,,,,,2.30995,3.15761,,,,,,,,,2.31701,3.16618,,,,,,,,,2.35426,3.21969,,,,,,,,,2.31417,3.17362,,,,,,,, +Small SUV,DSL,2000,0.2047,0.20185,0.19963,,,,,,,,0.20558,0.20271,0.20037,,,,,,,,0.20813,0.20517,0.20255,,,,,,,,0.20203,0.19923,0.19732,,,,,,,,0.20745,0.2045,0.20196,,,,,,,,0.20408,0.20121,0.19907,,,,,,,,0.20483,0.20197,0.19973,,,,,,,,0.20635,0.20345,0.20103,,,,,,,,0.20692,0.20403,0.20155,,,,,,,,0.00228,0.00317,0.00463,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00238,0.00327,0.00475,,,,,,,,0.00226,0.00314,0.00458,,,,,,,,0.0023,0.00317,0.00461,,,,,,,,0.00225,0.00312,0.00454,,,,,,,,0.00224,0.00312,0.00454,,,,,,,,0.0023,0.00318,0.00463,,,,,,,,0.00222,0.0031,0.00453,,,,,,,,6.22527,9.35927,16.60618,,,,,,,,6.45683,9.65879,17.01802,,,,,,,,6.58557,9.78509,17.10428,,,,,,,,6.44166,9.66232,17.03732,,,,,,,,7.1379,10.55488,18.2161,,,,,,,,6.85066,10.18753,17.73292,,,,,,,,7.20367,10.71046,18.54343,,,,,,,,6.84218,10.17996,17.7546,,,,,,,,6.51101,9.75797,17.19887,,,,,,,,610.50715,614.34896,614.29834,,,,,,,,615.76176,619.40381,618.72774,,,,,,,,621.70733,625.42643,624.90186,,,,,,,,612.00712,615.71271,615.2336,,,,,,,,628.43527,631.42639,628.81969,,,,,,,,619.90948,623.05993,621.02176,,,,,,,,626.19565,629.12468,626.29217,,,,,,,,622.72126,626.0069,624.24476,,,,,,,,614.90551,618.14864,616.46645,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00226,0.00234,0.00244,,,,,,,,0.00236,0.00244,0.00255,,,,,,,,0.00214,0.00222,0.00233,,,,,,,,0.00234,0.00242,0.00252,,,,,,,,0.00222,0.0023,0.00241,,,,,,,,0.00223,0.00231,0.00242,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.00229,0.00237,0.00248,,,,,,,,0.02154,0.02137,0.02044,,,,,,,,0.02156,0.02138,0.02046,,,,,,,,0.02153,0.02135,0.02043,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02152,0.02135,0.02042,,,,,,,,0.0215,0.02133,0.0204,,,,,,,,0.02153,0.02136,0.02043,,,,,,,,0.02156,0.02139,0.02046,,,,,,,,0.02158,0.0214,0.02048,,,,,,,,4.18683,4.48395,5.12228,,,,,,,,4.29221,4.58798,5.22001,,,,,,,,4.40022,4.69306,5.31552,,,,,,,,4.18095,4.47611,5.10973,,,,,,,,4.45795,4.74488,5.34777,,,,,,,,4.31042,4.60052,5.21662,,,,,,,,4.41737,4.70827,5.32087,,,,,,,,4.6563,4.95728,5.59472,,,,,,,,4.37273,4.6716,5.30797,,,,,,,,0.05353,0.05365,0.05543,,,,,,,,0.05533,0.05539,0.05706,,,,,,,,0.06062,0.06056,0.06193,,,,,,,,0.04931,0.04946,0.0514,,,,,,,,0.05945,0.05941,0.06083,,,,,,,,0.05344,0.0535,0.0552,,,,,,,,0.05411,0.05419,0.05592,,,,,,,,0.05689,0.05692,0.0585,,,,,,,,0.05708,0.05715,0.05879,,,,,,,,0.34752,0.34248,0.3428,,,,,,,,0.35263,0.34741,0.34743,,,,,,,,0.36756,0.36186,0.36114,,,,,,,,0.33528,0.33052,0.33141,,,,,,,,0.3642,0.35859,0.35803,,,,,,,,0.34698,0.34185,0.34213,,,,,,,,0.34908,0.34395,0.34418,,,,,,,,0.35706,0.3517,0.3515,,,,,,,,0.35779,0.3525,0.35234,,,,,,,,0.28718,0.28255,0.28287,,,,,,,,0.29081,0.28602,0.28606,,,,,,,,0.30146,0.29622,0.29557,,,,,,,,0.27808,0.27371,0.27455,,,,,,,,0.299,0.29384,0.29334,,,,,,,,0.28645,0.28174,0.28201,,,,,,,,0.2882,0.28349,0.28372,,,,,,,,0.29397,0.28905,0.28888,,,,,,,,0.29479,0.28993,0.2898,,,,,,,,0.04653,0.0054,0.0054,,,,,,,,0.04693,0.00545,0.00544,,,,,,,,0.04738,0.0055,0.0055,,,,,,,,0.04664,0.00541,0.00541,,,,,,,,0.04789,0.00555,0.00553,,,,,,,,0.04724,0.00548,0.00546,,,,,,,,0.04772,0.00553,0.00551,,,,,,,,0.04746,0.0055,0.00549,,,,,,,,0.04686,0.00544,0.00542,,,,,,,,1.14941,1.59216,2.28248,,,,,,,,1.15524,1.59655,2.28412,,,,,,,,1.19731,1.64074,2.33968,,,,,,,,1.1364,1.57641,2.25735,,,,,,,,1.15588,1.59247,2.27029,,,,,,,,1.13116,1.56655,2.23838,,,,,,,,1.12899,1.56644,2.23829,,,,,,,,1.15513,1.59602,2.28046,,,,,,,,1.11779,1.55587,2.23336,,,,,,, +Small SUV,DSL,2005,0.09572,0.12903,0.12863,0.14516,,,,,,,0.09578,0.12912,0.12872,0.14541,,,,,,,0.09592,0.12929,0.12889,0.14608,,,,,,,0.09533,0.1285,0.1281,0.14417,,,,,,,0.09584,0.12918,0.12878,0.14585,,,,,,,0.09547,0.12869,0.12828,0.14474,,,,,,,0.09567,0.12896,0.12857,0.14514,,,,,,,0.09584,0.12919,0.12879,0.14563,,,,,,,0.09604,0.12947,0.12908,0.14598,,,,,,,0.00233,0.00207,0.00236,0.00328,,,,,,,0.0023,0.00207,0.00236,0.00327,,,,,,,0.00241,0.00216,0.00245,0.00337,,,,,,,0.00231,0.00205,0.00234,0.00325,,,,,,,0.00214,0.00205,0.0023,0.00318,,,,,,,0.00216,0.00201,0.00228,0.00316,,,,,,,0.00209,0.00199,0.00225,0.00313,,,,,,,0.00222,0.00206,0.00233,0.00323,,,,,,,0.00206,0.00197,0.00223,0.0031,,,,,,,2.439,4.73285,5.67889,8.98591,,,,,,,2.53055,4.90991,5.8753,9.24024,,,,,,,2.5793,5.01184,5.97945,9.33758,,,,,,,2.52143,4.88615,5.85009,9.22712,,,,,,,2.80253,5.43947,6.46451,10.0012,,,,,,,2.68379,5.20356,6.20135,9.67379,,,,,,,2.8329,5.48868,6.53354,10.14763,,,,,,,2.68565,5.21018,6.21391,9.69307,,,,,,,2.55832,4.96476,5.94489,9.34819,,,,,,,753.54559,756.03598,761.09282,735.19163,,,,,,,761.83357,764.17973,768.97886,741.92389,,,,,,,772.62944,774.99911,779.93525,751.9778,,,,,,,753.20032,755.55334,760.43898,734.73777,,,,,,,782.45236,784.32988,788.27607,757.90977,,,,,,,767.31518,769.30236,773.45652,745.02376,,,,,,,776.2326,778.06727,781.90038,752.29625,,,,,,,772.69015,774.78178,779.10577,750.3284,,,,,,,762.76947,764.91202,769.14664,740.64573,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00224,0.00229,0.00243,0.00265,,,,,,,0.00235,0.0024,0.00254,0.00275,,,,,,,0.00212,0.00217,0.00231,0.00253,,,,,,,0.00232,0.00238,0.00251,0.00273,,,,,,,0.0022,0.00226,0.00239,0.00261,,,,,,,0.00222,0.00227,0.00241,0.00262,,,,,,,0.00227,0.00233,0.00246,0.00268,,,,,,,0.00227,0.00233,0.00247,0.00269,,,,,,,0.02224,0.02226,0.02225,0.02189,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02223,0.02225,0.02223,0.02187,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02222,0.02224,0.02223,0.02186,,,,,,,0.0222,0.02222,0.02221,0.02185,,,,,,,0.02223,0.02225,0.02224,0.02188,,,,,,,0.02226,0.02228,0.02227,0.02191,,,,,,,0.02228,0.0223,0.02229,0.02193,,,,,,,2.92255,3.08769,3.20261,3.77284,,,,,,,2.98825,3.15224,3.26466,3.8414,,,,,,,3.05207,3.21204,3.32065,3.90515,,,,,,,2.92033,3.08554,3.19943,3.76557,,,,,,,3.07534,3.2316,3.3355,3.92117,,,,,,,2.99246,3.15286,3.26132,3.83524,,,,,,,3.05616,3.21691,3.32408,3.90736,,,,,,,3.22604,3.39306,3.50301,4.10952,,,,,,,3.03863,3.20392,3.31687,3.90321,,,,,,,0.022,0.02962,0.03012,0.03695,,,,,,,0.02271,0.03057,0.03106,0.03804,,,,,,,0.02476,0.03334,0.03381,0.04128,,,,,,,0.02043,0.02751,0.02801,0.03436,,,,,,,0.02432,0.03274,0.03321,0.04056,,,,,,,0.02204,0.02967,0.03015,0.03688,,,,,,,0.02224,0.02995,0.03044,0.0373,,,,,,,0.02332,0.0314,0.03188,0.03901,,,,,,,0.02332,0.0314,0.0319,0.03912,,,,,,,0.17976,0.22669,0.22704,0.25544,,,,,,,0.18228,0.22959,0.22991,0.25872,,,,,,,0.18952,0.23787,0.23816,0.26828,,,,,,,0.17417,0.22018,0.22051,0.24769,,,,,,,0.18795,0.23606,0.23635,0.26614,,,,,,,0.17985,0.22669,0.227,0.25518,,,,,,,0.18062,0.22765,0.22797,0.25647,,,,,,,0.18445,0.23206,0.23238,0.26158,,,,,,,0.18448,0.23219,0.23254,0.26196,,,,,,,0.13283,0.17602,0.17633,0.20247,,,,,,,0.13409,0.17761,0.17791,0.20443,,,,,,,0.13767,0.18216,0.18243,0.21013,,,,,,,0.12985,0.17218,0.17249,0.1975,,,,,,,0.13685,0.18111,0.18138,0.20879,,,,,,,0.13268,0.17578,0.17607,0.202,,,,,,,0.1332,0.17648,0.17679,0.203,,,,,,,0.13517,0.17898,0.17928,0.20614,,,,,,,0.13534,0.17924,0.17957,0.20664,,,,,,,0.05743,0.00665,0.00669,0.00647,,,,,,,0.05806,0.00672,0.00676,0.00652,,,,,,,0.05888,0.00682,0.00686,0.00661,,,,,,,0.0574,0.00664,0.00669,0.00646,,,,,,,0.05963,0.0069,0.00693,0.00666,,,,,,,0.05848,0.00677,0.0068,0.00655,,,,,,,0.05916,0.00684,0.00688,0.00662,,,,,,,0.05889,0.00681,0.00685,0.0066,,,,,,,0.05813,0.00673,0.00676,0.00651,,,,,,,0.47208,0.79683,0.89009,1.37306,,,,,,,0.47019,0.79962,0.89039,1.36952,,,,,,,0.49098,0.832,0.92428,1.41091,,,,,,,0.46817,0.78867,0.88156,1.35992,,,,,,,0.45087,0.79169,0.87256,1.33725,,,,,,,0.44838,0.77717,0.86124,1.32612,,,,,,,0.43966,0.77187,0.85312,1.31545,,,,,,,0.46031,0.7951,0.88136,1.3548,,,,,,,0.433,0.7616,0.84306,1.30727,,,,,, +Small SUV,DSL,2010,,0.04035,0.03818,0.0352,0.07782,,,,,,,0.04038,0.03821,0.03522,0.07794,,,,,,,0.04044,0.03828,0.03529,0.07825,,,,,,,0.04018,0.03801,0.03503,0.07731,,,,,,,0.04041,0.03824,0.03525,0.07813,,,,,,,0.04024,0.03807,0.03509,0.07758,,,,,,,0.04033,0.03816,0.03518,0.0778,,,,,,,0.04041,0.03824,0.03525,0.07804,,,,,,,0.0405,0.03833,0.03534,0.07825,,,,,,,0.05923,0.09381,0.12912,0.10055,,,,,,,0.05636,0.09055,0.12472,0.09699,,,,,,,0.05944,0.09449,0.12944,0.10056,,,,,,,0.05937,0.09377,0.12906,0.1005,,,,,,,0.04355,0.07574,0.10517,0.08143,,,,,,,0.04777,0.08028,0.11132,0.08641,,,,,,,0.04301,0.07495,0.10453,0.08104,,,,,,,0.0501,0.08337,0.11534,0.08954,,,,,,,0.04214,0.07382,0.10325,0.08016,,,,,,,1.59913,2.50496,3.19832,6.05493,,,,,,,1.65554,2.58543,3.29192,6.2182,,,,,,,1.67207,2.59853,3.2987,6.2603,,,,,,,1.65726,2.59205,3.30208,6.21735,,,,,,,1.81931,2.81867,3.56346,6.70594,,,,,,,1.75257,2.7256,3.45587,6.49917,,,,,,,1.85583,2.8858,3.65427,6.82938,,,,,,,1.75282,2.72785,3.46131,6.51573,,,,,,,1.67525,2.61883,3.33655,6.29824,,,,,,,726.51573,726.9011,728.50556,737.24026,,,,,,,734.4734,734.64384,735.92169,744.06471,,,,,,,744.87017,745.08782,746.47429,754.6415,,,,,,,726.21471,726.45981,727.88196,736.50833,,,,,,,754.38594,753.87029,754.09659,760.3007,,,,,,,739.84073,739.52804,740.06255,746.97698,,,,,,,748.40552,747.82464,747.94723,754.2121,,,,,,,744.93281,744.72319,745.4163,752.52753,,,,,,,735.42934,735.22972,735.85715,742.70343,,,,,,,0.00215,0.00224,0.00238,0.00266,,,,,,,0.00219,0.00227,0.00241,0.0027,,,,,,,0.00229,0.00238,0.00252,0.0028,,,,,,,0.00207,0.00215,0.00229,0.00258,,,,,,,0.00227,0.00235,0.00249,0.00278,,,,,,,0.00215,0.00223,0.00237,0.00266,,,,,,,0.00216,0.00225,0.00239,0.00267,,,,,,,0.00222,0.0023,0.00244,0.00273,,,,,,,0.00222,0.00231,0.00245,0.00274,,,,,,,0.02197,0.02188,0.02174,0.02175,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.02195,0.02186,0.02172,0.02173,,,,,,,0.02193,0.02185,0.0217,0.02171,,,,,,,0.02194,0.02186,0.02171,0.02173,,,,,,,0.02193,0.02184,0.0217,0.02171,,,,,,,0.02196,0.02187,0.02173,0.02174,,,,,,,0.02198,0.0219,0.02175,0.02177,,,,,,,0.022,0.02192,0.02177,0.02179,,,,,,,1.60689,1.70024,1.72947,2.58328,,,,,,,1.63878,1.73258,1.7604,2.62795,,,,,,,1.67343,1.76716,1.79337,2.67221,,,,,,,1.60024,1.69279,1.72109,2.57432,,,,,,,1.67426,1.76707,1.79199,2.677,,,,,,,1.63347,1.72578,1.7521,2.61945,,,,,,,1.66187,1.7553,1.78121,2.66557,,,,,,,1.75725,1.85461,1.8796,2.80378,,,,,,,1.66516,1.76039,1.78853,2.67001,,,,,,,0.00962,0.00973,0.00928,0.02051,,,,,,,0.00993,0.01001,0.00954,0.02109,,,,,,,0.0108,0.01084,0.01029,0.0228,,,,,,,0.00897,0.0091,0.00869,0.01914,,,,,,,0.01061,0.01066,0.01013,0.02242,,,,,,,0.00965,0.00974,0.00929,0.02047,,,,,,,0.00973,0.00983,0.00937,0.0207,,,,,,,0.01019,0.01026,0.00976,0.0216,,,,,,,0.01018,0.01026,0.00977,0.02167,,,,,,,0.10286,0.10356,0.10039,0.16178,,,,,,,0.10472,0.10542,0.1022,0.16416,,,,,,,0.11007,0.11077,0.10744,0.17107,,,,,,,0.09887,0.09953,0.09643,0.15629,,,,,,,0.10893,0.10963,0.10632,0.16954,,,,,,,0.10305,0.10372,0.10052,0.16171,,,,,,,0.10352,0.10421,0.10102,0.16255,,,,,,,0.10631,0.10701,0.10376,0.16622,,,,,,,0.10624,0.10696,0.10373,0.1664,,,,,,,0.06211,0.06275,0.05983,0.11631,,,,,,,0.06275,0.06339,0.06043,0.11743,,,,,,,0.06459,0.06523,0.06217,0.12071,,,,,,,0.06059,0.06121,0.05836,0.11343,,,,,,,0.06417,0.06481,0.06177,0.11993,,,,,,,0.06205,0.06266,0.05973,0.11601,,,,,,,0.0623,0.06294,0.06001,0.11661,,,,,,,0.0633,0.06395,0.06096,0.11842,,,,,,,0.06338,0.06404,0.06108,0.11873,,,,,,,0.00608,0.00607,0.00607,0.00628,,,,,,,0.00614,0.00614,0.00613,0.00633,,,,,,,0.00623,0.00622,0.00622,0.00642,,,,,,,0.00607,0.00607,0.00607,0.00627,,,,,,,0.00631,0.0063,0.00629,0.00647,,,,,,,0.00619,0.00618,0.00617,0.00636,,,,,,,0.00626,0.00625,0.00624,0.00642,,,,,,,0.00623,0.00622,0.00621,0.00641,,,,,,,0.00615,0.00614,0.00613,0.00632,,,,,,,0.25482,0.28738,0.3194,0.79043,,,,,,,0.253,0.28466,0.31483,0.7835,,,,,,,0.26447,0.2967,0.32744,0.80902,,,,,,,0.25295,0.28546,0.31762,0.78425,,,,,,,0.23921,0.26709,0.29001,0.74475,,,,,,,0.2393,0.26843,0.29418,0.74691,,,,,,,0.23336,0.26142,0.28489,0.73339,,,,,,,0.24602,0.27595,0.30272,0.76515,,,,,,,0.22964,0.25761,0.28117,0.72785,,,,, +Small SUV,DSL,2015,,,0.00072,0.00116,0.00138,0.01985,,,,,,,0.00072,0.00116,0.00139,0.01986,,,,,,,0.00074,0.00118,0.00141,0.0199,,,,,,,0.0007,0.00113,0.00135,0.01974,,,,,,,0.00073,0.00118,0.0014,0.01988,,,,,,,0.00071,0.00115,0.00137,0.01978,,,,,,,0.00072,0.00116,0.00138,0.01983,,,,,,,0.00073,0.00117,0.0014,0.01988,,,,,,,0.00073,0.00118,0.00141,0.01994,,,,,,,0.08452,0.11522,0.15291,0.17502,,,,,,,0.0805,0.11044,0.1469,0.16813,,,,,,,0.08489,0.11551,0.15277,0.17456,,,,,,,0.0847,0.11535,0.15304,0.1751,,,,,,,0.06251,0.08914,0.12046,0.13823,,,,,,,0.0684,0.09606,0.12913,0.1481,,,,,,,0.0617,0.08838,0.11987,0.13772,,,,,,,0.0717,0.10011,0.13418,0.15379,,,,,,,0.06045,0.08695,0.11829,0.13615,,,,,,,0.91342,1.75476,2.44395,3.86478,,,,,,,0.93766,1.80032,2.5048,3.95859,,,,,,,0.92709,1.78281,2.48348,3.94764,,,,,,,0.94758,1.8168,2.52446,3.97481,,,,,,,1.00472,1.92811,2.67742,4.23212,,,,,,,0.98312,1.88496,2.61696,4.12601,,,,,,,1.04466,2.00046,2.77209,4.3506,,,,,,,0.98318,1.88653,2.62106,4.13686,,,,,,,0.95128,1.82695,2.54218,4.01561,,,,,,,631.20736,633.13412,636.41281,670.72204,,,,,,,638.0212,639.76055,642.78907,676.96032,,,,,,,646.87206,648.68575,651.83213,686.66084,,,,,,,630.91863,632.72408,635.86096,669.92674,,,,,,,654.92112,656.04769,658.25622,691.74887,,,,,,,642.42822,643.72105,646.14985,679.47404,,,,,,,649.91271,650.96569,653.07937,686.13987,,,,,,,646.95551,648.35351,650.92532,684.68167,,,,,,,638.7315,640.09514,642.57352,675.74666,,,,,,,0.00217,0.00226,0.0024,0.00265,,,,,,,0.0022,0.00229,0.00243,0.00268,,,,,,,0.00231,0.0024,0.00254,0.00279,,,,,,,0.00208,0.00218,0.00231,0.00256,,,,,,,0.00228,0.00238,0.00252,0.00277,,,,,,,0.00217,0.00226,0.0024,0.00264,,,,,,,0.00218,0.00227,0.00241,0.00266,,,,,,,0.00223,0.00233,0.00247,0.00272,,,,,,,0.00224,0.00233,0.00247,0.00272,,,,,,,0.0222,0.0222,0.0222,0.02208,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02218,0.02218,0.02218,0.02206,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02217,0.02217,0.02217,0.02205,,,,,,,0.02216,0.02216,0.02216,0.02204,,,,,,,0.02219,0.02219,0.02219,0.02207,,,,,,,0.02222,0.02222,0.02222,0.0221,,,,,,,0.02224,0.02224,0.02224,0.02212,,,,,,,0.52773,0.759,0.83082,1.32275,,,,,,,0.53682,0.77214,0.84369,1.34281,,,,,,,0.54809,0.78753,0.85813,1.36392,,,,,,,0.52372,0.75365,0.82514,1.31553,,,,,,,0.5485,0.78781,0.85785,1.36376,,,,,,,0.53445,0.7684,0.83893,1.33593,,,,,,,0.54375,0.78179,0.85304,1.358,,,,,,,0.57087,0.82186,0.89466,1.42425,,,,,,,0.54606,0.78532,0.85779,1.36446,,,,,,,0.00101,0.00156,0.00171,0.00625,,,,,,,0.00101,0.00158,0.00172,0.00638,,,,,,,0.00104,0.00161,0.00175,0.0068,,,,,,,0.00098,0.00153,0.00167,0.0059,,,,,,,0.00103,0.0016,0.00174,0.0067,,,,,,,0.001,0.00155,0.00169,0.00623,,,,,,,0.00101,0.00157,0.00171,0.00629,,,,,,,0.00102,0.00159,0.00173,0.00651,,,,,,,0.00103,0.0016,0.00174,0.00653,,,,,,,0.04842,0.05245,0.05361,0.08058,,,,,,,0.04982,0.05388,0.05503,0.08219,,,,,,,0.05386,0.05801,0.05915,0.08688,,,,,,,0.04553,0.04946,0.0506,0.07703,,,,,,,0.05303,0.05715,0.05829,0.08588,,,,,,,0.04868,0.05268,0.05381,0.08069,,,,,,,0.04895,0.05298,0.05413,0.08115,,,,,,,0.05102,0.0551,0.05625,0.08359,,,,,,,0.05087,0.05498,0.05615,0.08358,,,,,,,0.01202,0.01573,0.0168,0.04161,,,,,,,0.01224,0.01598,0.01703,0.04202,,,,,,,0.01288,0.0167,0.01775,0.04326,,,,,,,0.01152,0.01514,0.01619,0.0405,,,,,,,0.01274,0.01653,0.01758,0.04297,,,,,,,0.01202,0.01571,0.01674,0.04147,,,,,,,0.0121,0.01581,0.01686,0.04172,,,,,,,0.01243,0.01619,0.01725,0.0424,,,,,,,0.01245,0.01623,0.01731,0.04254,,,,,,,0.00516,0.00517,0.0052,0.00555,,,,,,,0.00521,0.00523,0.00525,0.0056,,,,,,,0.00529,0.0053,0.00533,0.00568,,,,,,,0.00516,0.00517,0.0052,0.00554,,,,,,,0.00535,0.00536,0.00538,0.00572,,,,,,,0.00525,0.00526,0.00528,0.00562,,,,,,,0.00531,0.00532,0.00534,0.00567,,,,,,,0.00529,0.0053,0.00532,0.00566,,,,,,,0.00522,0.00523,0.00525,0.00559,,,,,,,0.08796,0.11648,0.15151,0.33083,,,,,,,0.08434,0.11215,0.14602,0.3233,,,,,,,0.08855,0.11698,0.15161,0.33496,,,,,,,0.08813,0.1166,0.15162,0.32959,,,,,,,0.0679,0.09263,0.12172,0.28826,,,,,,,0.07318,0.09887,0.12959,0.29737,,,,,,,0.06708,0.09184,0.1211,0.28507,,,,,,,0.07631,0.1027,0.13435,0.30649,,,,,,,0.06575,0.09035,0.11947,0.28216,,,, +Small SUV,DSL,2020,,,,0.00072,0.0011,0.00125,0.00465,,,,,,,0.00072,0.00111,0.00125,0.00465,,,,,,,0.00074,0.00113,0.00127,0.00467,,,,,,,0.0007,0.00108,0.00122,0.0046,,,,,,,0.00073,0.00112,0.00127,0.00466,,,,,,,0.00072,0.00109,0.00124,0.00462,,,,,,,0.00072,0.0011,0.00125,0.00464,,,,,,,0.00073,0.00111,0.00126,0.00466,,,,,,,0.00073,0.00112,0.00127,0.00468,,,,,,,0.08358,0.10624,0.13139,0.18032,,,,,,,0.07944,0.1014,0.12537,0.17229,,,,,,,0.08399,0.10664,0.1315,0.17991,,,,,,,0.08379,0.10643,0.13163,0.18057,,,,,,,0.06087,0.07977,0.09876,0.13729,,,,,,,0.06698,0.08684,0.10757,0.14898,,,,,,,0.06,0.07885,0.09788,0.13648,,,,,,,0.07033,0.09085,0.11244,0.15537,,,,,,,0.05872,0.07739,0.09623,0.13461,,,,,,,0.78003,1.244,1.58419,2.56054,,,,,,,0.80087,1.27638,1.623,2.61775,,,,,,,0.7941,1.26576,1.6085,2.59704,,,,,,,0.80806,1.28709,1.63602,2.63457,,,,,,,0.85922,1.36751,1.7326,2.78175,,,,,,,0.83946,1.3361,1.69464,2.72248,,,,,,,0.89057,1.41653,1.79422,2.87322,,,,,,,0.83979,1.33732,1.69717,2.72941,,,,,,,0.81228,1.29491,1.647,2.65687,,,,,,,553.53381,554.75256,557.30624,593.51674,,,,,,,559.45393,560.50931,562.8389,598.96247,,,,,,,567.21372,568.32858,570.75943,607.53869,,,,,,,553.26555,554.3794,556.80518,592.78327,,,,,,,574.09163,574.61785,576.2165,611.79962,,,,,,,563.19783,563.8719,565.67017,601.01403,,,,,,,569.70897,570.17245,571.686,606.85437,,,,,,,567.19413,567.9541,569.87587,605.66885,,,,,,,559.96123,560.69998,562.54688,597.74298,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.00222,0.0023,0.00244,0.00269,,,,,,,0.00232,0.00241,0.00255,0.0028,,,,,,,0.0021,0.00219,0.00232,0.00257,,,,,,,0.0023,0.00239,0.00252,0.00277,,,,,,,0.00218,0.00227,0.0024,0.00265,,,,,,,0.00219,0.00228,0.00242,0.00267,,,,,,,0.00225,0.00234,0.00247,0.00272,,,,,,,0.00225,0.00234,0.00248,0.00273,,,,,,,0.02219,0.02219,0.02219,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02213,,,,,,,0.02217,0.02217,0.02217,0.02214,,,,,,,0.02215,0.02215,0.02215,0.02213,,,,,,,0.02218,0.02218,0.02218,0.02216,,,,,,,0.02221,0.02221,0.02221,0.02218,,,,,,,0.02223,0.02223,0.02223,0.0222,,,,,,,0.43957,0.57219,0.6208,0.82244,,,,,,,0.44685,0.5816,0.6301,0.83346,,,,,,,0.45614,0.59314,0.64146,0.84651,,,,,,,0.43605,0.5678,0.61593,0.81625,,,,,,,0.45642,0.59326,0.64117,0.84541,,,,,,,0.44481,0.5787,0.62653,0.82819,,,,,,,0.45243,0.58857,0.63684,0.84114,,,,,,,0.47433,0.61755,0.66685,0.87927,,,,,,,0.45454,0.59154,0.64072,0.8471,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00103,0.00153,0.00162,0.00259,,,,,,,0.00105,0.00157,0.00166,0.00268,,,,,,,0.001,0.00148,0.00157,0.00246,,,,,,,0.00105,0.00156,0.00165,0.00266,,,,,,,0.00102,0.00151,0.0016,0.00254,,,,,,,0.00102,0.00152,0.00161,0.00256,,,,,,,0.00104,0.00154,0.00163,0.00262,,,,,,,0.00104,0.00155,0.00164,0.00263,,,,,,,0.04852,0.05211,0.05284,0.05901,,,,,,,0.04992,0.05354,0.05426,0.06045,,,,,,,0.05397,0.05767,0.05839,0.06467,,,,,,,0.04563,0.04913,0.04984,0.05589,,,,,,,0.05314,0.05681,0.05753,0.06378,,,,,,,0.04878,0.05235,0.05306,0.05917,,,,,,,0.04905,0.05264,0.05337,0.05953,,,,,,,0.05112,0.05476,0.05548,0.06171,,,,,,,0.05097,0.05463,0.05537,0.06164,,,,,,,0.01212,0.01542,0.01609,0.02176,,,,,,,0.01234,0.01566,0.01633,0.02203,,,,,,,0.01299,0.01638,0.01705,0.02282,,,,,,,0.01161,0.01483,0.01549,0.02106,,,,,,,0.01284,0.01622,0.01688,0.02263,,,,,,,0.01212,0.0154,0.01605,0.02168,,,,,,,0.01219,0.01549,0.01616,0.02183,,,,,,,0.01253,0.01588,0.01654,0.02227,,,,,,,0.01254,0.01591,0.01659,0.02235,,,,,,,0.00452,0.00453,0.00455,0.00486,,,,,,,0.00457,0.00458,0.0046,0.00491,,,,,,,0.00463,0.00464,0.00466,0.00498,,,,,,,0.00452,0.00453,0.00455,0.00485,,,,,,,0.00469,0.0047,0.00471,0.00501,,,,,,,0.0046,0.00461,0.00462,0.00492,,,,,,,0.00466,0.00466,0.00467,0.00497,,,,,,,0.00463,0.00464,0.00466,0.00496,,,,,,,0.00458,0.00458,0.0046,0.0049,,,,,,,0.08592,0.10697,0.13034,0.19699,,,,,,,0.08217,0.10256,0.12484,0.18939,,,,,,,0.08651,0.10754,0.13065,0.19743,,,,,,,0.08611,0.10714,0.13056,0.19705,,,,,,,0.06516,0.0827,0.10035,0.15581,,,,,,,0.07066,0.0891,0.10837,0.16662,,,,,,,0.06429,0.08179,0.09946,0.1546,,,,,,,0.07384,0.09288,0.11294,0.17316,,,,,,,0.06295,0.08029,0.0978,0.15251,,, +Small SUV,DSL,2025,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00096,0.00105,0.00143,,,,,,,0.00065,0.00098,0.00107,0.00145,,,,,,,0.00062,0.00093,0.00102,0.0014,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.00063,0.00095,0.00104,0.00142,,,,,,,0.00063,0.00095,0.00104,0.00143,,,,,,,0.00064,0.00097,0.00106,0.00144,,,,,,,0.00065,0.00097,0.00106,0.00145,,,,,,,0.07913,0.0957,0.11493,0.16408,,,,,,,0.07497,0.0909,0.10898,0.15577,,,,,,,0.07959,0.09622,0.11521,0.16382,,,,,,,0.07937,0.09594,0.11525,0.16449,,,,,,,0.05625,0.06933,0.08254,0.11941,,,,,,,0.06243,0.07641,0.09135,0.13169,,,,,,,0.05532,0.06828,0.08146,0.11835,,,,,,,0.06576,0.08031,0.09603,0.13806,,,,,,,0.05402,0.0668,0.07977,0.11632,,,,,,,0.53581,0.81874,1.02876,1.76802,,,,,,,0.55073,0.84069,1.05453,1.80628,,,,,,,0.54936,0.8366,1.04771,1.79083,,,,,,,0.554,0.84635,1.06177,1.81826,,,,,,,0.59332,0.90307,1.12777,1.91581,,,,,,,0.57764,0.88056,1.10154,1.87667,,,,,,,0.61116,0.93215,1.16493,1.97941,,,,,,,0.57805,0.88142,1.1032,1.88152,,,,,,,0.55815,0.85244,1.06966,1.83325,,,,,,,515.52862,517.36999,520.60093,546.99097,,,,,,,521.02447,522.72726,525.75913,551.95705,,,,,,,528.27837,530.04534,533.18339,559.87723,,,,,,,515.27507,517.01989,520.13162,546.30321,,,,,,,534.61387,535.86256,538.23725,563.62452,,,,,,,524.48034,525.84611,528.38966,553.73895,,,,,,,530.51251,531.69744,533.98624,559.06272,,,,,,,528.20274,529.6511,532.31554,558.0478,,,,,,,521.44792,522.87079,525.4533,550.71343,,,,,,,0.00219,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00239,0.00252,0.00279,,,,,,,0.00218,0.00227,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00234,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00274,,,,,,,0.02219,0.02219,0.02219,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02217,0.02217,0.02217,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02216,0.02216,0.02216,0.02215,,,,,,,0.02215,0.02215,0.02215,0.02214,,,,,,,0.02218,0.02218,0.02218,0.02217,,,,,,,0.02221,0.02221,0.02221,0.02219,,,,,,,0.02223,0.02223,0.02223,0.02221,,,,,,,0.24868,0.32724,0.37499,0.54044,,,,,,,0.25195,0.33174,0.37973,0.54658,,,,,,,0.25653,0.33775,0.38612,0.55471,,,,,,,0.24644,0.3244,0.37166,0.53568,,,,,,,0.25658,0.33774,0.3859,0.55399,,,,,,,0.25066,0.32996,0.37749,0.54296,,,,,,,0.25465,0.33528,0.3834,0.55114,,,,,,,0.26511,0.34977,0.39933,0.57326,,,,,,,0.25621,0.33736,0.38611,0.5556,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00096,0.00142,0.00148,0.0017,,,,,,,0.00098,0.00146,0.00151,0.00173,,,,,,,0.00093,0.00137,0.00143,0.00165,,,,,,,0.00098,0.00145,0.00151,0.00173,,,,,,,0.00095,0.0014,0.00146,0.00168,,,,,,,0.00095,0.00141,0.00147,0.00169,,,,,,,0.00097,0.00143,0.00149,0.00171,,,,,,,0.00097,0.00144,0.0015,0.00172,,,,,,,0.04798,0.05123,0.05171,0.05354,,,,,,,0.04938,0.05267,0.05314,0.05496,,,,,,,0.05344,0.0568,0.05727,0.05909,,,,,,,0.04509,0.04827,0.04873,0.05054,,,,,,,0.05261,0.05595,0.05642,0.05823,,,,,,,0.04825,0.05149,0.05196,0.05375,,,,,,,0.04851,0.05177,0.05225,0.05407,,,,,,,0.05058,0.05389,0.05436,0.05619,,,,,,,0.05042,0.05374,0.05422,0.05609,,,,,,,0.01162,0.01461,0.01505,0.01674,,,,,,,0.01184,0.01486,0.01529,0.01697,,,,,,,0.01249,0.01559,0.01602,0.01769,,,,,,,0.01112,0.01404,0.01447,0.01613,,,,,,,0.01235,0.01543,0.01586,0.01753,,,,,,,0.01163,0.01461,0.01504,0.01669,,,,,,,0.0117,0.01469,0.01513,0.0168,,,,,,,0.01204,0.01508,0.01551,0.01719,,,,,,,0.01204,0.01509,0.01553,0.01724,,,,,,,0.00421,0.00423,0.00425,0.00447,,,,,,,0.00426,0.00427,0.0043,0.00451,,,,,,,0.00432,0.00433,0.00436,0.00457,,,,,,,0.00421,0.00422,0.00425,0.00446,,,,,,,0.00437,0.00438,0.0044,0.00461,,,,,,,0.00429,0.0043,0.00432,0.00452,,,,,,,0.00433,0.00434,0.00436,0.00457,,,,,,,0.00432,0.00433,0.00435,0.00456,,,,,,,0.00426,0.00427,0.00429,0.0045,,,,,,,0.08122,0.09662,0.11451,0.16051,,,,,,,0.07744,0.09224,0.10907,0.15288,,,,,,,0.08183,0.09729,0.11497,0.16047,,,,,,,0.08144,0.09684,0.1148,0.16089,,,,,,,0.06028,0.07243,0.08473,0.11932,,,,,,,0.06586,0.07885,0.09275,0.13056,,,,,,,0.05935,0.07139,0.08365,0.11826,,,,,,,0.06901,0.08252,0.09715,0.13654,,,,,,,0.05801,0.06988,0.08196,0.11625,, +Small SUV,DSL,2030,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00105,0.0013,,,,,,,0.00065,0.00098,0.00107,0.00132,,,,,,,0.00062,0.00093,0.00102,0.00126,,,,,,,0.00065,0.00097,0.00106,0.00131,,,,,,,0.00063,0.00095,0.00104,0.00128,,,,,,,0.00063,0.00095,0.00104,0.00129,,,,,,,0.00064,0.00096,0.00106,0.0013,,,,,,,0.00064,0.00097,0.00106,0.00131,,,,,,,0.07777,0.09285,0.11115,0.15066,,,,,,,0.07361,0.08808,0.10521,0.14239,,,,,,,0.07824,0.0934,0.11147,0.15051,,,,,,,0.07802,0.0931,0.11149,0.15117,,,,,,,0.05493,0.06661,0.0788,0.10602,,,,,,,0.0611,0.07367,0.08762,0.11836,,,,,,,0.05398,0.06553,0.07767,0.10482,,,,,,,0.06441,0.07752,0.09225,0.1246,,,,,,,0.05267,0.06404,0.07597,0.10272,,,,,,,0.47378,0.72062,0.90639,1.35002,,,,,,,0.48725,0.74025,0.92938,1.37959,,,,,,,0.48739,0.73794,0.92459,1.36897,,,,,,,0.48946,0.74461,0.93516,1.38825,,,,,,,0.52605,0.7963,0.99498,1.46435,,,,,,,0.51127,0.77562,0.97105,1.43374,,,,,,,0.54034,0.82051,1.02638,1.51169,,,,,,,0.51171,0.77642,0.97255,1.43737,,,,,,,0.49365,0.75041,0.94253,1.39992,,,,,,,505.90251,508.12865,511.88576,526.63939,,,,,,,511.29304,513.38981,516.95436,531.40985,,,,,,,518.42229,520.58653,524.26462,539.04839,,,,,,,505.65284,507.78444,511.42427,525.97531,,,,,,,524.62573,526.29466,529.21837,542.61528,,,,,,,514.68098,516.45452,519.53618,533.10575,,,,,,,520.59197,522.19594,525.03042,538.21442,,,,,,,518.33218,520.18913,523.39511,537.25547,,,,,,,511.6985,513.52605,516.64155,530.18337,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00233,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.0022,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00226,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23404,0.31164,0.3589,0.44909,,,,,,,0.23705,0.31596,0.36348,0.45388,,,,,,,0.24144,0.32195,0.3699,0.4608,,,,,,,0.23183,0.3088,0.35555,0.4448,,,,,,,0.24148,0.32194,0.36971,0.46021,,,,,,,0.23584,0.31429,0.36137,0.45089,,,,,,,0.23956,0.31934,0.36701,0.45755,,,,,,,0.24921,0.33307,0.38219,0.47493,,,,,,,0.24108,0.32135,0.36962,0.4614,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00096,0.00142,0.00148,0.00162,,,,,,,0.00098,0.00146,0.00151,0.00165,,,,,,,0.00093,0.00137,0.00143,0.00157,,,,,,,0.00098,0.00145,0.00151,0.00164,,,,,,,0.00095,0.0014,0.00146,0.0016,,,,,,,0.00095,0.00141,0.00147,0.00161,,,,,,,0.00097,0.00143,0.00149,0.00163,,,,,,,0.00097,0.00144,0.0015,0.00164,,,,,,,0.04797,0.05123,0.05171,0.05287,,,,,,,0.04937,0.05266,0.05314,0.0543,,,,,,,0.05343,0.0568,0.05727,0.05843,,,,,,,0.04509,0.04827,0.04873,0.04988,,,,,,,0.0526,0.05595,0.05642,0.05757,,,,,,,0.04824,0.05149,0.05195,0.0531,,,,,,,0.04851,0.05177,0.05224,0.0534,,,,,,,0.05057,0.05389,0.05436,0.05552,,,,,,,0.05041,0.05374,0.05422,0.05541,,,,,,,0.01161,0.01461,0.01505,0.01612,,,,,,,0.01183,0.01486,0.01529,0.01636,,,,,,,0.01248,0.01559,0.01602,0.01708,,,,,,,0.01111,0.01404,0.01447,0.01552,,,,,,,0.01234,0.01543,0.01586,0.01692,,,,,,,0.01162,0.01461,0.01504,0.01609,,,,,,,0.01169,0.01469,0.01513,0.01619,,,,,,,0.01203,0.01508,0.01551,0.01658,,,,,,,0.01203,0.01509,0.01553,0.01662,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00418,0.00419,0.00422,0.00434,,,,,,,0.00424,0.00425,0.00428,0.0044,,,,,,,0.00413,0.00415,0.00418,0.0043,,,,,,,0.00429,0.0043,0.00432,0.00443,,,,,,,0.00421,0.00422,0.00425,0.00436,,,,,,,0.00425,0.00427,0.00429,0.0044,,,,,,,0.00424,0.00425,0.00428,0.00439,,,,,,,0.00418,0.0042,0.00422,0.00433,,,,,,,0.07981,0.09384,0.11087,0.14775,,,,,,,0.07604,0.08949,0.10544,0.14015,,,,,,,0.08043,0.09454,0.11136,0.14781,,,,,,,0.08004,0.09407,0.11118,0.14822,,,,,,,0.0589,0.06976,0.08112,0.10658,,,,,,,0.06448,0.07616,0.08915,0.11789,,,,,,,0.05796,0.0687,0.08001,0.1054,,,,,,,0.06761,0.0798,0.09351,0.12374,,,,,,,0.05661,0.06719,0.0783,0.10333, +Small SUV,DSL,2035,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00105,0.00125,,,,,,,0.00065,0.00098,0.00107,0.00127,,,,,,,0.00062,0.00093,0.00102,0.00122,,,,,,,0.00065,0.00097,0.00106,0.00126,,,,,,,0.00063,0.00095,0.00104,0.00123,,,,,,,0.00063,0.00095,0.00104,0.00124,,,,,,,0.00064,0.00096,0.00106,0.00126,,,,,,,0.00064,0.00097,0.00106,0.00127,,,,,,,0.07754,0.09281,0.11109,0.1457,,,,,,,0.0734,0.08803,0.10516,0.13745,,,,,,,0.07801,0.09335,0.11142,0.1456,,,,,,,0.07778,0.09306,0.11144,0.14625,,,,,,,0.05479,0.06658,0.07877,0.1011,,,,,,,0.06094,0.07363,0.08758,0.11346,,,,,,,0.05385,0.0655,0.07764,0.09986,,,,,,,0.06424,0.07748,0.09221,0.11964,,,,,,,0.05255,0.06401,0.07594,0.09772,,,,,,,0.47325,0.72043,0.90623,1.20471,,,,,,,0.48672,0.74005,0.92922,1.23138,,,,,,,0.48687,0.73774,0.92444,1.22252,,,,,,,0.48894,0.74442,0.935,1.23887,,,,,,,0.52552,0.7961,0.99482,1.30784,,,,,,,0.51074,0.77542,0.97089,1.28006,,,,,,,0.5398,0.82031,1.02622,1.34951,,,,,,,0.51118,0.77622,0.97239,1.28324,,,,,,,0.49312,0.75021,0.94237,1.24938,,,,,,,505.84325,508.11981,511.87641,520.53161,,,,,,,511.23605,513.38181,516.94536,525.24513,,,,,,,518.36354,520.57802,524.25551,532.79992,,,,,,,505.5941,507.77589,511.41505,519.87502,,,,,,,524.57686,526.28822,529.21111,536.3182,,,,,,,514.63015,516.44746,519.52878,526.91938,,,,,,,520.54403,522.18978,525.02349,531.96478,,,,,,,518.27972,520.18195,523.3872,531.02016,,,,,,,511.649,513.51958,516.63441,524.02733,,,,,,,0.00218,0.00227,0.0024,0.00267,,,,,,,0.00222,0.0023,0.00243,0.0027,,,,,,,0.00232,0.00241,0.00254,0.00281,,,,,,,0.0021,0.00218,0.00231,0.00258,,,,,,,0.0023,0.00238,0.00252,0.00279,,,,,,,0.00218,0.00226,0.0024,0.00266,,,,,,,0.00219,0.00228,0.00241,0.00268,,,,,,,0.00225,0.00233,0.00247,0.00274,,,,,,,0.00225,0.00234,0.00247,0.00275,,,,,,,0.02219,0.02219,0.02219,0.02219,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02217,0.02217,0.02217,0.02217,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02216,0.02216,0.02216,0.02216,,,,,,,0.02215,0.02215,0.02215,0.02215,,,,,,,0.02218,0.02218,0.02218,0.02218,,,,,,,0.02221,0.02221,0.02221,0.02221,,,,,,,0.02223,0.02223,0.02223,0.02223,,,,,,,0.23366,0.31148,0.35882,0.41622,,,,,,,0.23668,0.3158,0.3634,0.42052,,,,,,,0.24106,0.32179,0.36982,0.42699,,,,,,,0.23146,0.30864,0.35548,0.4121,,,,,,,0.24111,0.32178,0.36963,0.42645,,,,,,,0.23547,0.31413,0.36129,0.41776,,,,,,,0.23919,0.31918,0.36694,0.42387,,,,,,,0.24883,0.3329,0.38211,0.43956,,,,,,,0.2407,0.32119,0.36954,0.42751,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00096,0.00142,0.00148,0.00159,,,,,,,0.00098,0.00146,0.00151,0.00163,,,,,,,0.00093,0.00137,0.00143,0.00154,,,,,,,0.00098,0.00145,0.00151,0.00162,,,,,,,0.00095,0.0014,0.00146,0.00157,,,,,,,0.00095,0.00141,0.00147,0.00158,,,,,,,0.00097,0.00143,0.00149,0.0016,,,,,,,0.00097,0.00144,0.0015,0.00161,,,,,,,0.04797,0.05123,0.05171,0.05264,,,,,,,0.04937,0.05266,0.05314,0.05406,,,,,,,0.05343,0.0568,0.05727,0.05819,,,,,,,0.04508,0.04827,0.04873,0.04965,,,,,,,0.05259,0.05595,0.05642,0.05734,,,,,,,0.04824,0.05149,0.05195,0.05286,,,,,,,0.0485,0.05177,0.05224,0.05317,,,,,,,0.05057,0.05389,0.05436,0.05529,,,,,,,0.05041,0.05374,0.05422,0.05517,,,,,,,0.01161,0.01461,0.01505,0.0159,,,,,,,0.01183,0.01486,0.01529,0.01614,,,,,,,0.01248,0.01559,0.01602,0.01687,,,,,,,0.01111,0.01404,0.01447,0.01531,,,,,,,0.01234,0.01543,0.01586,0.0167,,,,,,,0.01162,0.01461,0.01504,0.01587,,,,,,,0.01168,0.01469,0.01513,0.01598,,,,,,,0.01202,0.01508,0.01551,0.01636,,,,,,,0.01202,0.01509,0.01553,0.0164,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00418,0.00419,0.00422,0.00429,,,,,,,0.00424,0.00425,0.00428,0.00435,,,,,,,0.00413,0.00415,0.00418,0.00425,,,,,,,0.00429,0.0043,0.00432,0.00438,,,,,,,0.00421,0.00422,0.00425,0.00431,,,,,,,0.00425,0.00427,0.00429,0.00435,,,,,,,0.00423,0.00425,0.00428,0.00434,,,,,,,0.00418,0.0042,0.00422,0.00428,,,,,,,0.0796,0.0938,0.11082,0.14306,,,,,,,0.07584,0.08944,0.1054,0.13548,,,,,,,0.08022,0.09449,0.11131,0.14315,,,,,,,0.07982,0.09402,0.11113,0.14356,,,,,,,0.05877,0.06974,0.08109,0.10192,,,,,,,0.06432,0.07613,0.08912,0.11324,,,,,,,0.05784,0.06867,0.07998,0.1007,,,,,,,0.06744,0.07976,0.09347,0.11904,,,,,,,0.05649,0.06716,0.07828,0.0986 +Small SUV,DSL,2040,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00105,,,,,,,,0.00065,0.00098,0.00107,,,,,,,,0.00062,0.00093,0.00102,,,,,,,,0.00065,0.00097,0.00106,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00063,0.00095,0.00104,,,,,,,,0.00064,0.00096,0.00106,,,,,,,,0.00064,0.00097,0.00106,,,,,,,,0.0775,0.09277,0.11109,,,,,,,,0.07336,0.088,0.10516,,,,,,,,0.07797,0.09332,0.11142,,,,,,,,0.07774,0.09302,0.11144,,,,,,,,0.05477,0.06656,0.07877,,,,,,,,0.06091,0.0736,0.08758,,,,,,,,0.05382,0.06548,0.07764,,,,,,,,0.06421,0.07746,0.09221,,,,,,,,0.05252,0.06399,0.07594,,,,,,,,0.47296,0.72035,0.9062,,,,,,,,0.48642,0.73997,0.92919,,,,,,,,0.48657,0.73766,0.92441,,,,,,,,0.48863,0.74434,0.93498,,,,,,,,0.5252,0.79602,0.99479,,,,,,,,0.51043,0.77535,0.97087,,,,,,,,0.53947,0.82023,1.02619,,,,,,,,0.51087,0.77614,0.97236,,,,,,,,0.49281,0.75013,0.94235,,,,,,,,505.84317,508.11917,511.88521,,,,,,,,511.23668,513.38141,516.95445,,,,,,,,518.36366,520.57755,524.26456,,,,,,,,505.59432,507.77538,511.42401,,,,,,,,524.57908,526.28967,529.22036,,,,,,,,514.63195,516.44843,519.53798,,,,,,,,520.5461,522.19116,525.03319,,,,,,,,518.28109,520.18253,523.39643,,,,,,,,511.65072,513.5203,516.64385,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00222,0.0023,0.00243,,,,,,,,0.00232,0.00241,0.00254,,,,,,,,0.0021,0.00218,0.00231,,,,,,,,0.0023,0.00238,0.00252,,,,,,,,0.00218,0.00226,0.0024,,,,,,,,0.00219,0.00228,0.00241,,,,,,,,0.00225,0.00233,0.00247,,,,,,,,0.00225,0.00234,0.00247,,,,,,,,0.02219,0.02219,0.02219,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02217,0.02217,0.02217,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02216,0.02216,0.02216,,,,,,,,0.02215,0.02215,0.02215,,,,,,,,0.02218,0.02218,0.02218,,,,,,,,0.02221,0.02221,0.02221,,,,,,,,0.02223,0.02223,0.02223,,,,,,,,0.2336,0.31148,0.35883,,,,,,,,0.23662,0.3158,0.36341,,,,,,,,0.24101,0.32178,0.36983,,,,,,,,0.23141,0.30864,0.35548,,,,,,,,0.24105,0.32178,0.36964,,,,,,,,0.23541,0.31413,0.3613,,,,,,,,0.23913,0.31918,0.36694,,,,,,,,0.24878,0.33291,0.38212,,,,,,,,0.24064,0.32118,0.36955,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00142,0.00148,,,,,,,,0.00098,0.00146,0.00151,,,,,,,,0.00093,0.00137,0.00143,,,,,,,,0.00098,0.00145,0.00151,,,,,,,,0.00095,0.0014,0.00146,,,,,,,,0.00095,0.00141,0.00147,,,,,,,,0.00096,0.00143,0.00149,,,,,,,,0.00097,0.00144,0.0015,,,,,,,,0.04796,0.05123,0.05171,,,,,,,,0.04937,0.05266,0.05314,,,,,,,,0.05342,0.0568,0.05727,,,,,,,,0.04508,0.04827,0.04873,,,,,,,,0.05259,0.05595,0.05642,,,,,,,,0.04824,0.05149,0.05195,,,,,,,,0.0485,0.05177,0.05224,,,,,,,,0.05057,0.05389,0.05436,,,,,,,,0.05041,0.05374,0.05422,,,,,,,,0.0116,0.01461,0.01505,,,,,,,,0.01183,0.01486,0.01529,,,,,,,,0.01248,0.01559,0.01602,,,,,,,,0.01111,0.01404,0.01447,,,,,,,,0.01234,0.01543,0.01586,,,,,,,,0.01162,0.01461,0.01504,,,,,,,,0.01168,0.01469,0.01513,,,,,,,,0.01202,0.01508,0.01551,,,,,,,,0.01202,0.01509,0.01553,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00418,0.00419,0.00422,,,,,,,,0.00424,0.00425,0.00428,,,,,,,,0.00413,0.00415,0.00418,,,,,,,,0.00429,0.0043,0.00432,,,,,,,,0.00421,0.00422,0.00425,,,,,,,,0.00425,0.00427,0.00429,,,,,,,,0.00423,0.00425,0.00428,,,,,,,,0.00418,0.0042,0.00422,,,,,,,,0.07956,0.09376,0.11082,,,,,,,,0.0758,0.08941,0.10539,,,,,,,,0.08018,0.09446,0.11131,,,,,,,,0.07978,0.09399,0.11113,,,,,,,,0.05875,0.06972,0.08109,,,,,,,,0.0643,0.0761,0.08912,,,,,,,,0.05781,0.06865,0.07998,,,,,,,,0.06741,0.07973,0.09347,,,,,,,,0.05647,0.06714,0.07828 +Small SUV,DSL,2045,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00065,0.00098,,,,,,,,,0.00062,0.00093,,,,,,,,,0.00065,0.00097,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00063,0.00095,,,,,,,,,0.00064,0.00096,,,,,,,,,0.00064,0.00097,,,,,,,,,0.07747,0.09276,,,,,,,,,0.07333,0.08799,,,,,,,,,0.07794,0.09331,,,,,,,,,0.07771,0.09301,,,,,,,,,0.05475,0.06656,,,,,,,,,0.06089,0.0736,,,,,,,,,0.05381,0.06547,,,,,,,,,0.06418,0.07745,,,,,,,,,0.0525,0.06399,,,,,,,,,0.47292,0.72029,,,,,,,,,0.48638,0.73992,,,,,,,,,0.48653,0.7376,,,,,,,,,0.48859,0.74428,,,,,,,,,0.52516,0.79596,,,,,,,,,0.51039,0.77528,,,,,,,,,0.53944,0.82017,,,,,,,,,0.51083,0.77608,,,,,,,,,0.49277,0.75007,,,,,,,,,505.83557,508.1193,,,,,,,,,511.22947,513.38177,,,,,,,,,518.35636,520.57781,,,,,,,,,505.58695,507.77559,,,,,,,,,524.57279,526.29014,,,,,,,,,514.62534,516.44883,,,,,,,,,520.54012,522.19179,,,,,,,,,518.27447,520.18296,,,,,,,,,511.64435,513.52073,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00222,0.0023,,,,,,,,,0.00232,0.00241,,,,,,,,,0.0021,0.00218,,,,,,,,,0.0023,0.00238,,,,,,,,,0.00218,0.00226,,,,,,,,,0.00219,0.00228,,,,,,,,,0.00225,0.00233,,,,,,,,,0.00225,0.00234,,,,,,,,,0.02219,0.02219,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02217,0.02217,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02216,0.02216,,,,,,,,,0.02215,0.02215,,,,,,,,,0.02218,0.02218,,,,,,,,,0.02221,0.02221,,,,,,,,,0.02223,0.02223,,,,,,,,,0.23355,0.31141,,,,,,,,,0.23657,0.31573,,,,,,,,,0.24096,0.32171,,,,,,,,,0.23136,0.30857,,,,,,,,,0.241,0.32171,,,,,,,,,0.23536,0.31406,,,,,,,,,0.23908,0.31911,,,,,,,,,0.24873,0.33283,,,,,,,,,0.24059,0.32112,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00142,,,,,,,,,0.00098,0.00146,,,,,,,,,0.00093,0.00137,,,,,,,,,0.00098,0.00145,,,,,,,,,0.00095,0.0014,,,,,,,,,0.00095,0.00141,,,,,,,,,0.00096,0.00143,,,,,,,,,0.00097,0.00144,,,,,,,,,0.04797,0.05123,,,,,,,,,0.04937,0.05266,,,,,,,,,0.05342,0.0568,,,,,,,,,0.04508,0.04827,,,,,,,,,0.05259,0.05595,,,,,,,,,0.04824,0.05149,,,,,,,,,0.0485,0.05177,,,,,,,,,0.05057,0.05389,,,,,,,,,0.05041,0.05374,,,,,,,,,0.0116,0.01461,,,,,,,,,0.01183,0.01486,,,,,,,,,0.01248,0.01559,,,,,,,,,0.01111,0.01404,,,,,,,,,0.01234,0.01543,,,,,,,,,0.01162,0.01461,,,,,,,,,0.01168,0.01469,,,,,,,,,0.01202,0.01508,,,,,,,,,0.01202,0.01509,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00418,0.00419,,,,,,,,,0.00424,0.00425,,,,,,,,,0.00413,0.00415,,,,,,,,,0.00429,0.0043,,,,,,,,,0.0042,0.00422,,,,,,,,,0.00425,0.00427,,,,,,,,,0.00423,0.00425,,,,,,,,,0.00418,0.0042,,,,,,,,,0.07953,0.09376,,,,,,,,,0.07578,0.08941,,,,,,,,,0.08015,0.09445,,,,,,,,,0.07975,0.09398,,,,,,,,,0.05873,0.06971,,,,,,,,,0.06428,0.0761,,,,,,,,,0.0578,0.06865,,,,,,,,,0.06739,0.07973,,,,,,,,,0.05645,0.06714 +Small SUV,DSL,2050,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00065,,,,,,,,,,0.00062,,,,,,,,,,0.00065,,,,,,,,,,0.00063,,,,,,,,,,0.00063,,,,,,,,,,0.00064,,,,,,,,,,0.00064,,,,,,,,,,0.07747,,,,,,,,,,0.07333,,,,,,,,,,0.07794,,,,,,,,,,0.07771,,,,,,,,,,0.05475,,,,,,,,,,0.06089,,,,,,,,,,0.05381,,,,,,,,,,0.06418,,,,,,,,,,0.0525,,,,,,,,,,0.47292,,,,,,,,,,0.48639,,,,,,,,,,0.48654,,,,,,,,,,0.4886,,,,,,,,,,0.52517,,,,,,,,,,0.5104,,,,,,,,,,0.53945,,,,,,,,,,0.51084,,,,,,,,,,0.49278,,,,,,,,,,505.83304,,,,,,,,,,511.2268,,,,,,,,,,518.35376,,,,,,,,,,505.58432,,,,,,,,,,524.57034,,,,,,,,,,514.62275,,,,,,,,,,520.53783,,,,,,,,,,518.27191,,,,,,,,,,511.64183,,,,,,,,,,0.00218,,,,,,,,,,0.00222,,,,,,,,,,0.00232,,,,,,,,,,0.0021,,,,,,,,,,0.0023,,,,,,,,,,0.00218,,,,,,,,,,0.00219,,,,,,,,,,0.00225,,,,,,,,,,0.00225,,,,,,,,,,0.02219,,,,,,,,,,0.02221,,,,,,,,,,0.02217,,,,,,,,,,0.02215,,,,,,,,,,0.02216,,,,,,,,,,0.02215,,,,,,,,,,0.02218,,,,,,,,,,0.02221,,,,,,,,,,0.02223,,,,,,,,,,0.23355,,,,,,,,,,0.23657,,,,,,,,,,0.24096,,,,,,,,,,0.23136,,,,,,,,,,0.241,,,,,,,,,,0.23536,,,,,,,,,,0.23908,,,,,,,,,,0.24873,,,,,,,,,,0.24059,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00098,,,,,,,,,,0.00093,,,,,,,,,,0.00098,,,,,,,,,,0.00095,,,,,,,,,,0.00095,,,,,,,,,,0.00096,,,,,,,,,,0.00097,,,,,,,,,,0.04797,,,,,,,,,,0.04937,,,,,,,,,,0.05342,,,,,,,,,,0.04508,,,,,,,,,,0.05259,,,,,,,,,,0.04824,,,,,,,,,,0.0485,,,,,,,,,,0.05057,,,,,,,,,,0.05041,,,,,,,,,,0.0116,,,,,,,,,,0.01183,,,,,,,,,,0.01248,,,,,,,,,,0.01111,,,,,,,,,,0.01234,,,,,,,,,,0.01162,,,,,,,,,,0.01168,,,,,,,,,,0.01202,,,,,,,,,,0.01202,,,,,,,,,,0.00413,,,,,,,,,,0.00418,,,,,,,,,,0.00424,,,,,,,,,,0.00413,,,,,,,,,,0.00429,,,,,,,,,,0.0042,,,,,,,,,,0.00425,,,,,,,,,,0.00423,,,,,,,,,,0.00418,,,,,,,,,,0.07953,,,,,,,,,,0.07578,,,,,,,,,,0.08015,,,,,,,,,,0.07975,,,,,,,,,,0.05873,,,,,,,,,,0.06428,,,,,,,,,,0.0578,,,,,,,,,,0.06739,,,,,,,,,,0.05645 +Small SUV,E10,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11314,,,,,,,,,,0.09514,,,,,,,,,,0.12563,,,,,,,,,,0.13114,,,,,,,,,,0.10808,,,,,,,,,,0.11889,,,,,,,,,,0.1086,,,,,,,,,,0.10523,,,,,,,,,,0.082,,,,,,,,,,63.2126,,,,,,,,,,56.71448,,,,,,,,,,72.5467,,,,,,,,,,75.39182,,,,,,,,,,65.86029,,,,,,,,,,71.70294,,,,,,,,,,67.75261,,,,,,,,,,64.00043,,,,,,,,,,51.27035,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.42804,,,,,,,,,,5.10132,,,,,,,,,,5.66747,,,,,,,,,,6.03225,,,,,,,,,,5.57448,,,,,,,,,,5.84644,,,,,,,,,,5.59049,,,,,,,,,,5.89878,,,,,,,,,,4.86777,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02859,,,,,,,,,,0.03225,,,,,,,,,,0.0458,,,,,,,,,,0.04198,,,,,,,,,,0.03737,,,,,,,,,,0.04119,,,,,,,,,,0.03748,,,,,,,,,,0.03705,,,,,,,,,,0.01748,,,,,,,,,,4.58393,,,,,,,,,,4.09865,,,,,,,,,,5.16888,,,,,,,,,,5.36494,,,,,,,,,,5.05775,,,,,,,,,,5.2588,,,,,,,,,,5.07596,,,,,,,,,,4.89415,,,,,,,,,,3.91859,,,,,,,,, +Small SUV,E10,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07748,0.08904,,,,,,,,,0.072,0.07672,,,,,,,,,0.08854,0.09985,,,,,,,,,0.09111,0.10812,,,,,,,,,0.0789,0.09187,,,,,,,,,0.084,0.10018,,,,,,,,,0.07855,0.09062,,,,,,,,,0.07752,0.08825,,,,,,,,,0.0636,0.06606,,,,,,,,,29.63897,41.36596,,,,,,,,,28.97433,38.13233,,,,,,,,,34.93065,46.68978,,,,,,,,,36.55574,50.87631,,,,,,,,,32.44092,44.68976,,,,,,,,,34.65845,48.01339,,,,,,,,,33.36491,46.18974,,,,,,,,,32.00793,44.75452,,,,,,,,,25.76618,35.26581,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.4622,5.38071,,,,,,,,,4.39166,5.07853,,,,,,,,,4.76518,5.5464,,,,,,,,,4.98088,6.03246,,,,,,,,,4.67221,5.61475,,,,,,,,,4.86994,5.84286,,,,,,,,,4.73253,5.63439,,,,,,,,,4.9598,5.90802,,,,,,,,,4.15621,4.87518,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02235,0.01148,,,,,,,,,0.02537,0.01164,,,,,,,,,0.03618,0.01205,,,,,,,,,0.03289,0.02015,,,,,,,,,0.02978,0.01187,,,,,,,,,0.03259,0.01176,,,,,,,,,0.02981,0.01615,,,,,,,,,0.0293,0.01836,,,,,,,,,0.01378,0.00675,,,,,,,,,3.15995,3.95794,,,,,,,,,3.05508,3.64352,,,,,,,,,3.65557,4.47219,,,,,,,,,3.72559,4.76354,,,,,,,,,3.55404,4.60463,,,,,,,,,3.63499,4.74219,,,,,,,,,3.54137,4.55094,,,,,,,,,3.49782,4.45048,,,,,,,,,2.90021,3.5081,,,,,,,, +Small SUV,E10,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04401,0.06476,0.08784,,,,,,,,0.0413,0.06232,0.0781,,,,,,,,0.05087,0.07437,0.10072,,,,,,,,0.05219,0.07737,0.10281,,,,,,,,0.03885,0.06434,0.08903,,,,,,,,0.04221,0.06816,0.09361,,,,,,,,0.03831,0.06344,0.08422,,,,,,,,0.0414,0.06502,0.08415,,,,,,,,0.03345,0.05497,0.06663,,,,,,,,9.20673,14.67901,27.14853,,,,,,,,9.00892,14.50541,24.80322,,,,,,,,11.06622,17.33347,31.26982,,,,,,,,11.46401,18.23061,32.27626,,,,,,,,8.96455,15.47148,28.66746,,,,,,,,9.72109,16.37041,30.05152,,,,,,,,9.10995,15.80052,28.4154,,,,,,,,9.39068,15.98896,27.98844,,,,,,,,7.52152,13.50881,22.50913,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.62242,2.27158,3.8184,,,,,,,,1.59133,2.25249,3.61825,,,,,,,,1.85119,2.49498,4.08478,,,,,,,,1.90156,2.62987,4.18527,,,,,,,,1.76576,2.46283,4.06962,,,,,,,,1.83606,2.52392,4.14115,,,,,,,,1.79219,2.50177,3.93434,,,,,,,,1.87762,2.60733,4.13455,,,,,,,,1.58162,2.23808,3.46002,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.0239,0.0116,0.0105,,,,,,,,0.02716,0.01179,0.01056,,,,,,,,0.03873,0.01221,0.01072,,,,,,,,0.03527,0.02044,0.01047,,,,,,,,0.03204,0.01214,0.01065,,,,,,,,0.03506,0.012,0.0105,,,,,,,,0.03213,0.01653,0.01055,,,,,,,,0.03144,0.01871,0.0095,,,,,,,,0.01477,0.00685,0.00494,,,,,,,,1.06311,1.76753,3.20543,,,,,,,,1.04361,1.7498,2.93418,,,,,,,,1.24914,2.05104,3.67596,,,,,,,,1.2881,2.12799,3.7341,,,,,,,,1.10217,1.94308,3.60125,,,,,,,,1.14195,1.99627,3.65022,,,,,,,,1.09683,1.91642,3.44684,,,,,,,,1.15621,1.96365,3.42979,,,,,,,,0.94024,1.66224,2.76321,,,,,,, +Small SUV,E10,2005,0.00218,0.00358,0.00529,0.01394,,,,,,,0.00196,0.00308,0.00454,0.01197,,,,,,,0.00241,0.00274,0.00401,0.01339,,,,,,,0.00251,0.0037,0.00548,0.01499,,,,,,,0.00126,0.00201,0.00294,0.00684,,,,,,,0.00148,0.00206,0.00301,0.00798,,,,,,,0.0012,0.00183,0.00267,0.00633,,,,,,,0.00164,0.00232,0.00339,0.00923,,,,,,,0.00106,0.00158,0.00227,0.00621,,,,,,,0.02811,0.02142,0.02264,0.04902,,,,,,,0.02586,0.01943,0.0211,0.0445,,,,,,,0.02914,0.02137,0.02317,0.05647,,,,,,,0.02949,0.02482,0.02517,0.05903,,,,,,,0.01864,0.01622,0.01864,0.04767,,,,,,,0.02074,0.01732,0.01956,0.05074,,,,,,,0.01788,0.01677,0.01823,0.04544,,,,,,,0.02234,0.01889,0.0194,0.04745,,,,,,,0.01497,0.01269,0.01434,0.03839,,,,,,,4.53533,6.85821,8.85974,16.10575,,,,,,,4.44842,6.79605,8.94289,15.44397,,,,,,,4.9582,7.98354,10.64999,18.92182,,,,,,,5.10544,8.63779,10.64684,19.76927,,,,,,,4.51382,7.38109,9.95459,17.53775,,,,,,,4.66371,7.69058,10.31608,18.29136,,,,,,,4.62635,7.94441,10.04262,17.59912,,,,,,,4.71885,8.17685,9.97695,17.58782,,,,,,,3.72873,6.82375,8.95189,15.11981,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.61209,0.96956,1.26103,1.92446,,,,,,,0.60099,0.94894,1.25846,1.86081,,,,,,,0.65121,1.05001,1.37261,2.11066,,,,,,,0.65002,1.15382,1.43403,2.20209,,,,,,,0.6098,1.01467,1.34061,2.08907,,,,,,,0.63115,1.05028,1.37292,2.12959,,,,,,,0.61933,1.06557,1.33917,2.04097,,,,,,,0.66549,1.10947,1.36821,2.15451,,,,,,,0.52141,0.74253,0.97447,1.86164,,,,,,,0.00487,0.0078,0.0106,0.02466,,,,,,,0.00446,0.00694,0.00942,0.02171,,,,,,,0.00516,0.00643,0.00867,0.02359,,,,,,,0.00532,0.00788,0.01073,0.02582,,,,,,,0.00313,0.00492,0.0067,0.01364,,,,,,,0.00351,0.00503,0.00683,0.01542,,,,,,,0.00304,0.00464,0.0063,0.013,,,,,,,0.00384,0.00554,0.00749,0.01741,,,,,,,0.00281,0.00421,0.00567,0.01291,,,,,,,0.05129,0.05749,0.0638,0.09546,,,,,,,0.0518,0.05697,0.06251,0.09006,,,,,,,0.05747,0.05985,0.06482,0.09857,,,,,,,0.04957,0.05498,0.06137,0.09554,,,,,,,0.05206,0.05572,0.0596,0.07487,,,,,,,0.04863,0.05167,0.05559,0.07463,,,,,,,0.04779,0.05106,0.05461,0.06927,,,,,,,0.05164,0.05512,0.05937,0.08145,,,,,,,0.04909,0.05192,0.05504,0.07088,,,,,,,0.01453,0.02002,0.02561,0.05361,,,,,,,0.01392,0.0185,0.0234,0.04778,,,,,,,0.01589,0.018,0.0224,0.05226,,,,,,,0.01517,0.01995,0.02561,0.05584,,,,,,,0.01173,0.01497,0.0184,0.03191,,,,,,,0.01196,0.01465,0.01812,0.03496,,,,,,,0.01103,0.01392,0.01706,0.03004,,,,,,,0.01287,0.01596,0.01972,0.03926,,,,,,,0.01076,0.01327,0.01602,0.03005,,,,,,,0.02504,0.01211,0.01102,0.00368,,,,,,,0.02848,0.01232,0.0111,0.0037,,,,,,,0.0406,0.01275,0.01126,0.00375,,,,,,,0.037,0.02137,0.01101,0.00367,,,,,,,0.03367,0.01272,0.01127,0.00373,,,,,,,0.03685,0.01257,0.01109,0.00368,,,,,,,0.0338,0.01734,0.01118,0.0037,,,,,,,0.03301,0.01959,0.01002,0.00366,,,,,,,0.01551,0.00717,0.00521,0.00338,,,,,,,0.42668,0.52192,0.71339,1.83233,,,,,,,0.4036,0.49321,0.68111,1.71672,,,,,,,0.45618,0.54093,0.74631,2.08237,,,,,,,0.46665,0.61217,0.80079,2.15051,,,,,,,0.34117,0.46419,0.6603,1.95653,,,,,,,0.36239,0.478,0.67328,1.99999,,,,,,,0.3322,0.47036,0.64293,1.88454,,,,,,,0.39852,0.52943,0.7006,1.96066,,,,,,,0.28505,0.38919,0.54876,1.63607,,,,,, +Small SUV,E10,2010,,0.00162,0.00287,0.00427,0.01079,,,,,,,0.00142,0.0025,0.00377,0.00934,,,,,,,0.00124,0.00218,0.00406,0.01029,,,,,,,0.00168,0.00299,0.00454,0.01154,,,,,,,0.00103,0.00178,0.0025,0.00562,,,,,,,0.00102,0.00177,0.00275,0.00641,,,,,,,0.00094,0.00161,0.00226,0.0051,,,,,,,0.00111,0.00193,0.00303,0.00727,,,,,,,0.0008,0.00136,0.00215,0.00492,,,,,,,0.02013,0.01854,0.01573,0.03289,,,,,,,0.01774,0.01707,0.01438,0.03038,,,,,,,0.01881,0.01888,0.01616,0.03701,,,,,,,0.02262,0.02104,0.01791,0.03947,,,,,,,0.01341,0.01553,0.01279,0.0305,,,,,,,0.01411,0.01603,0.01342,0.03241,,,,,,,0.0138,0.01531,0.01259,0.02938,,,,,,,0.01612,0.0158,0.01384,0.03135,,,,,,,0.01078,0.01164,0.01209,0.02613,,,,,,,3.09224,4.95927,6.48848,11.49491,,,,,,,2.97276,4.9579,6.43558,11.29062,,,,,,,3.41119,5.77432,7.27606,13.6769,,,,,,,3.65072,5.8182,7.79685,14.45278,,,,,,,2.83758,5.21916,6.92104,12.75393,,,,,,,3.00662,5.44818,7.12479,13.30185,,,,,,,3.05711,5.30439,7.08065,12.89365,,,,,,,3.3226,5.35322,7.08916,12.86984,,,,,,,2.71446,4.75412,6.32517,11.19949,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.22139,0.3576,0.32156,1.00374,,,,,,,0.21378,0.35576,0.31782,0.98526,,,,,,,0.22098,0.3824,0.33969,1.12438,,,,,,,0.23875,0.40147,0.35787,1.18556,,,,,,,0.20712,0.36724,0.32313,1.10404,,,,,,,0.214,0.37886,0.33338,1.12913,,,,,,,0.21757,0.36928,0.32582,1.08596,,,,,,,0.23378,0.3815,0.35378,1.14599,,,,,,,0.15918,0.26955,0.31976,0.99901,,,,,,,0.00293,0.00493,0.0069,0.01768,,,,,,,0.00274,0.00458,0.00642,0.01583,,,,,,,0.00249,0.00414,0.00667,0.01692,,,,,,,0.00296,0.00499,0.00711,0.01842,,,,,,,0.0024,0.00394,0.00523,0.01087,,,,,,,0.00233,0.00384,0.00542,0.01188,,,,,,,0.00227,0.00372,0.00492,0.01024,,,,,,,0.00239,0.00395,0.00568,0.01307,,,,,,,0.00203,0.00331,0.00475,0.01004,,,,,,,0.04735,0.0519,0.05648,0.08074,,,,,,,0.04824,0.05237,0.05662,0.07768,,,,,,,0.05169,0.05538,0.06132,0.08441,,,,,,,0.04465,0.04927,0.05425,0.07982,,,,,,,0.0505,0.05381,0.05663,0.06906,,,,,,,0.04609,0.04934,0.05288,0.06719,,,,,,,0.04617,0.04924,0.05184,0.06347,,,,,,,0.04858,0.05196,0.05587,0.07229,,,,,,,0.04748,0.05018,0.05333,0.06485,,,,,,,0.01105,0.01508,0.01913,0.04059,,,,,,,0.01078,0.01443,0.01819,0.03682,,,,,,,0.01078,0.01404,0.0193,0.03973,,,,,,,0.01081,0.01491,0.01931,0.04193,,,,,,,0.01035,0.01328,0.01577,0.02677,,,,,,,0.00972,0.01259,0.01572,0.02838,,,,,,,0.0096,0.01232,0.01462,0.02491,,,,,,,0.01017,0.01317,0.01663,0.03115,,,,,,,0.00934,0.01173,0.01452,0.02471,,,,,,,0.01147,0.01037,0.00349,0.00363,,,,,,,0.01167,0.01045,0.00351,0.00365,,,,,,,0.01208,0.0106,0.00356,0.0037,,,,,,,0.02024,0.01036,0.00348,0.00362,,,,,,,0.01207,0.01063,0.00356,0.00368,,,,,,,0.01192,0.01046,0.00351,0.00363,,,,,,,0.01645,0.01056,0.00353,0.00365,,,,,,,0.01857,0.00945,0.00349,0.00361,,,,,,,0.0068,0.00491,0.00322,0.00333,,,,,,,0.17024,0.25037,0.35532,1.23054,,,,,,,0.15173,0.22939,0.32973,1.1748,,,,,,,0.16315,0.2531,0.36572,1.3646,,,,,,,0.19174,0.28179,0.39888,1.41916,,,,,,,0.12082,0.20837,0.31351,1.2648,,,,,,,0.12492,0.21256,0.3183,1.28611,,,,,,,0.12209,0.2039,0.30703,1.22529,,,,,,,0.1483,0.22827,0.34463,1.30038,,,,,,,0.10918,0.1789,0.30002,1.12921,,,,, +Small SUV,E10,2015,,,0.00128,0.00225,0.00349,0.00739,,,,,,,0.00115,0.00206,0.00317,0.00655,,,,,,,0.00101,0.00217,0.00335,0.00705,,,,,,,0.0013,0.00235,0.00364,0.0078,,,,,,,0.0009,0.00152,0.0023,0.00434,,,,,,,0.00089,0.00163,0.00248,0.00479,,,,,,,0.00083,0.0014,0.0021,0.00391,,,,,,,0.00093,0.00173,0.00264,0.00526,,,,,,,0.00071,0.00133,0.002,0.00373,,,,,,,0.01503,0.01155,0.01238,0.01853,,,,,,,0.01385,0.01072,0.01164,0.01731,,,,,,,0.01406,0.01191,0.01298,0.01995,,,,,,,0.01566,0.01311,0.01424,0.02173,,,,,,,0.01097,0.00973,0.01115,0.0166,,,,,,,0.01147,0.01026,0.01165,0.01751,,,,,,,0.01101,0.00968,0.01111,0.01635,,,,,,,0.01188,0.01049,0.01169,0.01747,,,,,,,0.0089,0.00934,0.01058,0.01524,,,,,,,2.20988,3.99465,5.43701,8.07463,,,,,,,2.22179,4.01555,5.49317,8.07877,,,,,,,2.41633,4.43487,6.2143,9.47883,,,,,,,2.44973,4.75977,6.67892,10.11635,,,,,,,2.1891,4.39723,6.2066,9.19718,,,,,,,2.2712,4.49018,6.35204,9.50604,,,,,,,2.25387,4.52083,6.36443,9.39782,,,,,,,2.29043,4.46132,6.20488,9.23024,,,,,,,2.06139,4.03955,5.56824,8.18043,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.1346,0.16641,0.24871,0.46267,,,,,,,0.134,0.16374,0.24547,0.45687,,,,,,,0.13407,0.17653,0.2631,0.50771,,,,,,,0.14045,0.1882,0.28033,0.53953,,,,,,,0.12341,0.16433,0.24802,0.48761,,,,,,,0.12905,0.17155,0.25804,0.50304,,,,,,,0.12645,0.16611,0.25103,0.48674,,,,,,,0.134,0.18242,0.27299,0.52188,,,,,,,0.09672,0.16332,0.24504,0.46248,,,,,,,0.00251,0.00424,0.00615,0.01177,,,,,,,0.00239,0.00405,0.00585,0.01088,,,,,,,0.00218,0.00413,0.00599,0.01135,,,,,,,0.0025,0.0043,0.00626,0.01212,,,,,,,0.00218,0.00356,0.00504,0.00849,,,,,,,0.00211,0.00362,0.00516,0.00893,,,,,,,0.00208,0.00339,0.00478,0.00797,,,,,,,0.00213,0.00372,0.00532,0.00944,,,,,,,0.00186,0.00328,0.00462,0.00772,,,,,,,0.04631,0.05013,0.05451,0.06761,,,,,,,0.0474,0.05103,0.0551,0.06672,,,,,,,0.05094,0.05528,0.05952,0.07198,,,,,,,0.04349,0.04747,0.05198,0.06572,,,,,,,0.05001,0.0529,0.05612,0.06385,,,,,,,0.04558,0.04881,0.05219,0.0607,,,,,,,0.04572,0.04844,0.05144,0.05853,,,,,,,0.04794,0.05136,0.05491,0.0643,,,,,,,0.0471,0.05007,0.05296,0.05982,,,,,,,0.01014,0.01351,0.01739,0.02897,,,,,,,0.01003,0.01325,0.01685,0.02713,,,,,,,0.01012,0.01397,0.01772,0.02874,,,,,,,0.0098,0.01331,0.0173,0.02946,,,,,,,0.00992,0.01248,0.01533,0.02216,,,,,,,0.00927,0.01212,0.01511,0.02264,,,,,,,0.0092,0.01162,0.01427,0.02054,,,,,,,0.00962,0.01264,0.01578,0.02408,,,,,,,0.00901,0.01164,0.01419,0.02026,,,,,,,0.00833,0.00279,0.00282,0.00311,,,,,,,0.0084,0.00281,0.00284,0.00312,,,,,,,0.00851,0.00285,0.00288,0.00317,,,,,,,0.00832,0.00279,0.00281,0.0031,,,,,,,0.00855,0.00286,0.00287,0.00315,,,,,,,0.00841,0.00281,0.00283,0.0031,,,,,,,0.00849,0.00284,0.00285,0.00312,,,,,,,0.00759,0.00279,0.00281,0.00309,,,,,,,0.00394,0.00258,0.0026,0.00285,,,,,,,0.12353,0.17702,0.29,0.72192,,,,,,,0.11491,0.16616,0.27682,0.69693,,,,,,,0.1197,0.18197,0.30366,0.7682,,,,,,,0.13045,0.19657,0.32478,0.80098,,,,,,,0.09844,0.15906,0.28186,0.72466,,,,,,,0.10006,0.16147,0.28336,0.7259,,,,,,,0.09787,0.15691,0.27799,0.70886,,,,,,,0.1109,0.17464,0.29942,0.75565,,,,,,,0.08985,0.15336,0.27084,0.6876,,,, +Small SUV,E10,2020,,,,0.00115,0.00196,0.00278,0.00556,,,,,,,0.00106,0.00179,0.00253,0.005,,,,,,,0.0011,0.00188,0.00267,0.00532,,,,,,,0.00119,0.00203,0.00289,0.00583,,,,,,,0.0008,0.00134,0.00185,0.00347,,,,,,,0.00085,0.00143,0.00199,0.00379,,,,,,,0.00074,0.00123,0.00169,0.00314,,,,,,,0.0009,0.00152,0.00212,0.00409,,,,,,,0.00071,0.00117,0.00161,0.00299,,,,,,,0.01145,0.00983,0.00977,0.01336,,,,,,,0.01034,0.00904,0.00906,0.01243,,,,,,,0.01084,0.01004,0.01008,0.01424,,,,,,,0.01196,0.0111,0.01112,0.01564,,,,,,,0.00753,0.00784,0.00815,0.01171,,,,,,,0.00814,0.00836,0.00864,0.0124,,,,,,,0.00745,0.00777,0.0081,0.01159,,,,,,,0.00894,0.00861,0.00879,0.01243,,,,,,,0.00756,0.00747,0.00772,0.01081,,,,,,,1.80774,2.7961,3.51815,5.41595,,,,,,,1.78859,2.78553,3.51355,5.41323,,,,,,,1.87754,3.07814,3.96495,6.35892,,,,,,,2.01775,3.31666,4.28691,6.8323,,,,,,,1.73861,2.97001,3.83583,6.13895,,,,,,,1.78779,3.0529,3.95738,6.37473,,,,,,,1.79846,3.05696,3.94339,6.29473,,,,,,,1.85337,3.05077,3.89999,6.17588,,,,,,,1.67447,2.73989,3.47141,5.43122,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.09102,0.15014,0.20177,0.28483,,,,,,,0.08957,0.14758,0.1987,0.28046,,,,,,,0.09036,0.15847,0.21197,0.30597,,,,,,,0.09519,0.1696,0.22674,0.32739,,,,,,,0.08026,0.14628,0.19723,0.28718,,,,,,,0.08469,0.15357,0.20662,0.29958,,,,,,,0.08221,0.14839,0.20036,0.28941,,,,,,,0.09308,0.16365,0.21951,0.31452,,,,,,,0.08459,0.1462,0.19659,0.27912,,,,,,,0.00228,0.0037,0.00491,0.00876,,,,,,,0.0022,0.00354,0.00468,0.00822,,,,,,,0.00223,0.00361,0.00478,0.00849,,,,,,,0.00231,0.00374,0.00499,0.00896,,,,,,,0.00196,0.00312,0.00404,0.00679,,,,,,,0.00199,0.00318,0.00414,0.00703,,,,,,,0.00188,0.00297,0.00384,0.00638,,,,,,,0.00204,0.00326,0.00426,0.00732,,,,,,,0.00182,0.00288,0.00371,0.00616,,,,,,,0.04579,0.04893,0.05175,0.06081,,,,,,,0.04696,0.04992,0.05253,0.06079,,,,,,,0.05109,0.05414,0.05685,0.06556,,,,,,,0.04303,0.04624,0.04913,0.05855,,,,,,,0.04954,0.05199,0.05402,0.06016,,,,,,,0.04532,0.04787,0.05001,0.05656,,,,,,,0.04527,0.04759,0.04947,0.05512,,,,,,,0.04774,0.05038,0.05263,0.05962,,,,,,,0.04701,0.04925,0.05106,0.05649,,,,,,,0.00968,0.01246,0.01494,0.02296,,,,,,,0.00965,0.01227,0.01457,0.02189,,,,,,,0.01025,0.01295,0.01535,0.02306,,,,,,,0.00939,0.01222,0.01478,0.02312,,,,,,,0.0095,0.01168,0.01347,0.0189,,,,,,,0.00904,0.01129,0.01318,0.01898,,,,,,,0.00881,0.01086,0.01252,0.01752,,,,,,,0.00944,0.01177,0.01376,0.01994,,,,,,,0.00893,0.01091,0.01251,0.01731,,,,,,,0.00238,0.0024,0.00243,0.00265,,,,,,,0.0024,0.00242,0.00244,0.00266,,,,,,,0.00244,0.00245,0.00248,0.0027,,,,,,,0.00238,0.0024,0.00242,0.00265,,,,,,,0.00244,0.00245,0.00247,0.00268,,,,,,,0.0024,0.00241,0.00243,0.00264,,,,,,,0.00242,0.00243,0.00245,0.00265,,,,,,,0.00239,0.0024,0.00242,0.00263,,,,,,,0.00221,0.00222,0.00223,0.00242,,,,,,,0.10613,0.15012,0.22846,0.54308,,,,,,,0.09752,0.13893,0.21469,0.52368,,,,,,,0.10331,0.15336,0.23717,0.5715,,,,,,,0.11171,0.16649,0.25488,0.59357,,,,,,,0.07974,0.12682,0.20827,0.54088,,,,,,,0.08262,0.13079,0.21213,0.53986,,,,,,,0.07853,0.12388,0.20307,0.52837,,,,,,,0.09362,0.14252,0.22633,0.56366,,,,,,,0.0781,0.12159,0.19912,0.51941,,, +Small SUV,E10,2025,,,,,0.00076,0.00126,0.00178,0.00398,,,,,,,0.0007,0.00115,0.00162,0.00359,,,,,,,0.00073,0.00121,0.00171,0.00381,,,,,,,0.00078,0.0013,0.00185,0.00414,,,,,,,0.00053,0.00086,0.00119,0.00253,,,,,,,0.00056,0.00092,0.00128,0.00275,,,,,,,0.00049,0.00079,0.00109,0.00228,,,,,,,0.00059,0.00097,0.00136,0.00296,,,,,,,0.00047,0.00076,0.00104,0.00219,,,,,,,0.00894,0.00705,0.00683,0.01005,,,,,,,0.0078,0.00625,0.00612,0.00918,,,,,,,0.00836,0.00697,0.00682,0.01057,,,,,,,0.00939,0.0078,0.00762,0.01169,,,,,,,0.00486,0.0046,0.00474,0.00806,,,,,,,0.00551,0.00509,0.00518,0.00869,,,,,,,0.00472,0.00449,0.00465,0.00792,,,,,,,0.00633,0.00551,0.00552,0.00886,,,,,,,0.00482,0.00438,0.00449,0.0074,,,,,,,1.18398,1.7428,2.22113,3.72535,,,,,,,1.1395,1.69672,2.17184,3.68152,,,,,,,1.20991,1.88654,2.45982,4.35409,,,,,,,1.31013,2.04967,2.68018,4.70544,,,,,,,1.01572,1.69093,2.22852,4.05968,,,,,,,1.06639,1.76693,2.33344,4.25659,,,,,,,1.04974,1.74207,2.29355,4.16627,,,,,,,1.13273,1.79813,2.33673,4.14545,,,,,,,0.99097,1.5772,2.0348,3.59288,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.05552,0.08396,0.11273,0.19147,,,,,,,0.05378,0.08147,0.10968,0.18734,,,,,,,0.05442,0.08686,0.11631,0.20496,,,,,,,0.05764,0.09329,0.1248,0.22027,,,,,,,0.04515,0.07603,0.10324,0.18744,,,,,,,0.04877,0.08123,0.1098,0.19747,,,,,,,0.04627,0.07731,0.10507,0.1889,,,,,,,0.05383,0.08713,0.11734,0.20752,,,,,,,0.04781,0.07683,0.10401,0.18229,,,,,,,0.00151,0.00239,0.00317,0.00631,,,,,,,0.00145,0.00229,0.00303,0.00595,,,,,,,0.00147,0.00233,0.00309,0.00613,,,,,,,0.00152,0.00241,0.00322,0.00643,,,,,,,0.0013,0.00202,0.00262,0.00495,,,,,,,0.00132,0.00206,0.00268,0.00512,,,,,,,0.00124,0.00192,0.00249,0.00465,,,,,,,0.00135,0.00211,0.00276,0.00532,,,,,,,0.0012,0.00187,0.00241,0.00451,,,,,,,0.04412,0.04607,0.04789,0.05522,,,,,,,0.04537,0.04721,0.04889,0.05565,,,,,,,0.04946,0.05135,0.0531,0.06018,,,,,,,0.04133,0.04332,0.04518,0.05273,,,,,,,0.04816,0.04969,0.05101,0.05618,,,,,,,0.04391,0.04549,0.04688,0.05237,,,,,,,0.04396,0.0454,0.04663,0.05139,,,,,,,0.04629,0.04793,0.04939,0.05519,,,,,,,0.04575,0.04714,0.04832,0.05295,,,,,,,0.0082,0.00992,0.01153,0.01802,,,,,,,0.00824,0.00987,0.01136,0.01734,,,,,,,0.00881,0.01048,0.01204,0.01829,,,,,,,0.00788,0.00964,0.01129,0.01797,,,,,,,0.00828,0.00964,0.0108,0.01538,,,,,,,0.00779,0.00919,0.01042,0.01527,,,,,,,0.00765,0.00892,0.01001,0.01422,,,,,,,0.00815,0.0096,0.0109,0.01603,,,,,,,0.00781,0.00905,0.01009,0.01418,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00198,0.00199,0.002,0.00224,,,,,,,0.00201,0.00202,0.00204,0.00227,,,,,,,0.00196,0.00197,0.00199,0.00223,,,,,,,0.00201,0.00201,0.00202,0.00224,,,,,,,0.00198,0.00198,0.002,0.00222,,,,,,,0.00199,0.002,0.00201,0.00223,,,,,,,0.00196,0.00197,0.00198,0.00221,,,,,,,0.00182,0.00182,0.00183,0.00203,,,,,,,0.08884,0.11605,0.17324,0.46046,,,,,,,0.07969,0.10435,0.15872,0.44123,,,,,,,0.08569,0.11632,0.17708,0.48245,,,,,,,0.0937,0.12765,0.19166,0.49927,,,,,,,0.0593,0.08559,0.14178,0.44597,,,,,,,0.0632,0.09068,0.14726,0.44702,,,,,,,0.0576,0.08195,0.13561,0.43194,,,,,,,0.0732,0.10157,0.16064,0.46764,,,,,,,0.05738,0.0813,0.13472,0.42859,, +Small SUV,E10,2030,,,,,,0.00075,0.00125,0.00177,0.00326,,,,,,,0.00069,0.00115,0.00161,0.00294,,,,,,,0.00073,0.0012,0.0017,0.00312,,,,,,,0.00078,0.0013,0.00183,0.00339,,,,,,,0.00053,0.00086,0.00118,0.00208,,,,,,,0.00056,0.00092,0.00127,0.00226,,,,,,,0.00049,0.00079,0.00108,0.00189,,,,,,,0.00059,0.00097,0.00135,0.00243,,,,,,,0.00047,0.00075,0.00104,0.0018,,,,,,,0.00824,0.00631,0.00612,0.00834,,,,,,,0.0071,0.00552,0.00541,0.00748,,,,,,,0.00767,0.00614,0.00603,0.00852,,,,,,,0.00866,0.00691,0.00676,0.00949,,,,,,,0.00413,0.00375,0.0039,0.00593,,,,,,,0.00478,0.00423,0.00434,0.00651,,,,,,,0.00397,0.00363,0.0038,0.0058,,,,,,,0.0056,0.00469,0.00472,0.00686,,,,,,,0.00407,0.00358,0.00371,0.0055,,,,,,,1.04003,1.53051,1.96854,2.92609,,,,,,,0.99,1.4779,1.90991,2.85621,,,,,,,1.05552,1.64452,2.16274,3.34955,,,,,,,1.14572,1.7901,2.35812,3.63606,,,,,,,0.84984,1.43294,1.90946,3.00885,,,,,,,0.90029,1.50612,2.00959,3.17653,,,,,,,0.87756,1.47575,1.96432,3.09091,,,,,,,0.96643,1.54482,2.02794,3.1354,,,,,,,0.83315,1.34237,1.75322,2.69085,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.04478,0.06659,0.09172,0.14345,,,,,,,0.04294,0.06411,0.08868,0.13932,,,,,,,0.04336,0.06786,0.09351,0.15098,,,,,,,0.04592,0.07282,0.10024,0.16221,,,,,,,0.03436,0.05741,0.08088,0.13394,,,,,,,0.03767,0.06195,0.08666,0.14237,,,,,,,0.03525,0.05842,0.08231,0.13525,,,,,,,0.04178,0.06685,0.09306,0.15057,,,,,,,0.03663,0.0586,0.08222,0.13175,,,,,,,0.0015,0.00238,0.00316,0.00522,,,,,,,0.00145,0.00228,0.00301,0.00492,,,,,,,0.00147,0.00232,0.00308,0.00506,,,,,,,0.00152,0.00241,0.0032,0.00532,,,,,,,0.0013,0.00202,0.00261,0.00411,,,,,,,0.00131,0.00205,0.00267,0.00425,,,,,,,0.00124,0.00192,0.00247,0.00387,,,,,,,0.00134,0.0021,0.00275,0.00441,,,,,,,0.0012,0.00186,0.00241,0.00375,,,,,,,0.04411,0.04606,0.04785,0.0527,,,,,,,0.04536,0.0472,0.04886,0.05331,,,,,,,0.04945,0.05134,0.05307,0.05774,,,,,,,0.04132,0.0433,0.04513,0.05015,,,,,,,0.04815,0.04968,0.05098,0.05435,,,,,,,0.04391,0.04549,0.04686,0.05044,,,,,,,0.04395,0.04539,0.04659,0.0497,,,,,,,0.04628,0.04792,0.04937,0.05316,,,,,,,0.04575,0.04714,0.04832,0.05129,,,,,,,0.00819,0.00991,0.0115,0.01579,,,,,,,0.00824,0.00986,0.01133,0.01527,,,,,,,0.0088,0.01047,0.012,0.01614,,,,,,,0.00787,0.00963,0.01125,0.01568,,,,,,,0.00828,0.00963,0.01078,0.01376,,,,,,,0.00779,0.00919,0.0104,0.01357,,,,,,,0.00764,0.00892,0.00998,0.01273,,,,,,,0.00815,0.0096,0.01088,0.01423,,,,,,,0.00781,0.00904,0.01009,0.01272,,,,,,,0.0018,0.00182,0.00184,0.002,,,,,,,0.00181,0.00183,0.00185,0.002,,,,,,,0.00184,0.00185,0.00188,0.00204,,,,,,,0.0018,0.00181,0.00184,0.00199,,,,,,,0.00184,0.00185,0.00187,0.00201,,,,,,,0.00181,0.00182,0.00184,0.00198,,,,,,,0.00182,0.00183,0.00185,0.00199,,,,,,,0.0018,0.00181,0.00183,0.00197,,,,,,,0.00166,0.00167,0.00169,0.00182,,,,,,,0.08409,0.1078,0.16182,0.40709,,,,,,,0.07489,0.09611,0.14725,0.38716,,,,,,,0.08085,0.10729,0.16453,0.42266,,,,,,,0.08871,0.11809,0.17818,0.43748,,,,,,,0.0541,0.07606,0.12816,0.38111,,,,,,,0.05813,0.08124,0.13378,0.38345,,,,,,,0.05232,0.07237,0.12184,0.36672,,,,,,,0.06785,0.0921,0.14704,0.40446,,,,,,,0.05204,0.07202,0.12166,0.36714, +Small SUV,E10,2035,,,,,,,0.00075,0.00124,0.00177,0.00301,,,,,,,0.00069,0.00114,0.00162,0.00272,,,,,,,0.00072,0.0012,0.0017,0.00288,,,,,,,0.00078,0.00128,0.00184,0.00313,,,,,,,0.00053,0.00085,0.00118,0.00193,,,,,,,0.00056,0.00091,0.00127,0.00209,,,,,,,0.00049,0.00078,0.00108,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00224,,,,,,,0.00047,0.00075,0.00104,0.00166,,,,,,,0.00821,0.00631,0.00611,0.00772,,,,,,,0.00708,0.00552,0.00541,0.00685,,,,,,,0.00765,0.00615,0.00602,0.00774,,,,,,,0.00864,0.00692,0.00675,0.00865,,,,,,,0.00412,0.00375,0.0039,0.00512,,,,,,,0.00477,0.00423,0.00433,0.00568,,,,,,,0.00397,0.00363,0.0038,0.00499,,,,,,,0.00559,0.00469,0.00472,0.0061,,,,,,,0.00406,0.00358,0.00371,0.00479,,,,,,,1.03716,1.52885,1.96803,2.65465,,,,,,,0.9873,1.47547,1.91,2.57555,,,,,,,1.05245,1.64125,2.16316,2.9991,,,,,,,1.14221,1.78486,2.35962,3.2623,,,,,,,0.84751,1.42772,1.91153,2.64262,,,,,,,0.89776,1.50092,2.01154,2.79826,,,,,,,0.87517,1.47017,1.96657,2.71624,,,,,,,0.96377,1.54122,2.02879,2.78535,,,,,,,0.83114,1.34091,1.75303,2.38043,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04463,0.06637,0.09175,0.12553,,,,,,,0.04279,0.0639,0.08872,0.12139,,,,,,,0.0432,0.06762,0.09356,0.13038,,,,,,,0.04576,0.07253,0.10031,0.13994,,,,,,,0.03426,0.05723,0.08091,0.11349,,,,,,,0.03755,0.06175,0.08669,0.12126,,,,,,,0.03514,0.05821,0.08236,0.11482,,,,,,,0.04165,0.06668,0.09307,0.12892,,,,,,,0.03653,0.05851,0.08219,0.11276,,,,,,,0.0015,0.00237,0.00316,0.00483,,,,,,,0.00144,0.00227,0.00302,0.00456,,,,,,,0.00147,0.00231,0.00308,0.00469,,,,,,,0.00151,0.00239,0.00321,0.00493,,,,,,,0.00129,0.00201,0.00262,0.00382,,,,,,,0.00131,0.00204,0.00268,0.00394,,,,,,,0.00123,0.00191,0.00248,0.0036,,,,,,,0.00134,0.0021,0.00275,0.00409,,,,,,,0.0012,0.00186,0.00241,0.00347,,,,,,,0.0441,0.04603,0.04786,0.05182,,,,,,,0.04535,0.04717,0.04887,0.0525,,,,,,,0.04944,0.05131,0.05308,0.05689,,,,,,,0.04131,0.04326,0.04515,0.04926,,,,,,,0.04814,0.04966,0.05099,0.05371,,,,,,,0.0439,0.04546,0.04687,0.04977,,,,,,,0.04395,0.04537,0.04661,0.04911,,,,,,,0.04627,0.0479,0.04938,0.05245,,,,,,,0.04574,0.04713,0.04832,0.0507,,,,,,,0.00818,0.00989,0.01151,0.01501,,,,,,,0.00823,0.00983,0.01134,0.01455,,,,,,,0.00879,0.01045,0.01202,0.01539,,,,,,,0.00786,0.00959,0.01127,0.0149,,,,,,,0.00827,0.00961,0.01079,0.01319,,,,,,,0.00778,0.00917,0.01041,0.01297,,,,,,,0.00764,0.00889,0.00999,0.01221,,,,,,,0.00814,0.00958,0.01088,0.0136,,,,,,,0.00781,0.00904,0.01009,0.0122,,,,,,,0.0018,0.00182,0.00184,0.00192,,,,,,,0.00181,0.00183,0.00185,0.00192,,,,,,,0.00184,0.00185,0.00188,0.00195,,,,,,,0.0018,0.00181,0.00184,0.00191,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00181,0.00182,0.00184,0.0019,,,,,,,0.00182,0.00183,0.00185,0.00191,,,,,,,0.0018,0.00181,0.00183,0.0019,,,,,,,0.00166,0.00167,0.00169,0.00175,,,,,,,0.08379,0.10772,0.16167,0.38733,,,,,,,0.07462,0.09603,0.14712,0.36711,,,,,,,0.08056,0.10724,0.16435,0.4001,,,,,,,0.08837,0.11789,0.17807,0.41418,,,,,,,0.05389,0.07585,0.12814,0.35668,,,,,,,0.05792,0.08106,0.13373,0.35939,,,,,,,0.05212,0.07213,0.12185,0.34223,,,,,,,0.06756,0.09168,0.14722,0.38063,,,,,,,0.05187,0.07191,0.12158,0.34424 +Small SUV,E10,2040,,,,,,,,0.00075,0.00125,0.00178,,,,,,,,0.00069,0.00114,0.00162,,,,,,,,0.00072,0.0012,0.00171,,,,,,,,0.00077,0.00129,0.00185,,,,,,,,0.00052,0.00085,0.00119,,,,,,,,0.00055,0.00091,0.00128,,,,,,,,0.00048,0.00078,0.00109,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00822,0.0063,0.00611,,,,,,,,0.00708,0.00551,0.0054,,,,,,,,0.00766,0.00614,0.00602,,,,,,,,0.00865,0.00691,0.00675,,,,,,,,0.00412,0.00375,0.0039,,,,,,,,0.00478,0.00422,0.00433,,,,,,,,0.00396,0.00363,0.0038,,,,,,,,0.00559,0.00469,0.00471,,,,,,,,0.00406,0.00357,0.0037,,,,,,,,1.03644,1.52849,1.96794,,,,,,,,0.98602,1.47553,1.91046,,,,,,,,1.05112,1.64166,2.16419,,,,,,,,1.13988,1.78611,2.36203,,,,,,,,0.84451,1.42926,1.91398,,,,,,,,0.89492,1.50241,2.01398,,,,,,,,0.87196,1.47185,1.96923,,,,,,,,0.9617,1.54187,2.03004,,,,,,,,0.8301,1.34068,1.75287,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04448,0.06639,0.09181,,,,,,,,0.04266,0.06391,0.08876,,,,,,,,0.04306,0.06765,0.09363,,,,,,,,0.04558,0.07257,0.10041,,,,,,,,0.03415,0.05724,0.08094,,,,,,,,0.03744,0.06177,0.08674,,,,,,,,0.03501,0.05823,0.08242,,,,,,,,0.04154,0.06668,0.09309,,,,,,,,0.03648,0.05847,0.08216,,,,,,,,0.00149,0.00237,0.00317,,,,,,,,0.00144,0.00228,0.00302,,,,,,,,0.00146,0.00232,0.00309,,,,,,,,0.0015,0.0024,0.00322,,,,,,,,0.00129,0.00201,0.00262,,,,,,,,0.0013,0.00205,0.00268,,,,,,,,0.00123,0.00191,0.00249,,,,,,,,0.00133,0.0021,0.00276,,,,,,,,0.0012,0.00186,0.00241,,,,,,,,0.04408,0.04604,0.04788,,,,,,,,0.04534,0.04718,0.04888,,,,,,,,0.04942,0.05132,0.0531,,,,,,,,0.04128,0.04328,0.04518,,,,,,,,0.04813,0.04966,0.051,,,,,,,,0.04388,0.04547,0.04688,,,,,,,,0.04393,0.04538,0.04662,,,,,,,,0.04626,0.04791,0.04938,,,,,,,,0.04574,0.04713,0.04832,,,,,,,,0.00817,0.00989,0.01152,,,,,,,,0.00821,0.00984,0.01135,,,,,,,,0.00878,0.01046,0.01203,,,,,,,,0.00784,0.00961,0.01129,,,,,,,,0.00826,0.00962,0.0108,,,,,,,,0.00777,0.00917,0.01042,,,,,,,,0.00762,0.0089,0.01,,,,,,,,0.00813,0.00959,0.01089,,,,,,,,0.0078,0.00904,0.01009,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00181,0.00183,0.00185,,,,,,,,0.00184,0.00185,0.00188,,,,,,,,0.0018,0.00181,0.00184,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00181,0.00182,0.00184,,,,,,,,0.00182,0.00183,0.00185,,,,,,,,0.0018,0.00181,0.00183,,,,,,,,0.00166,0.00167,0.00169,,,,,,,,0.08378,0.10766,0.16165,,,,,,,,0.0746,0.09598,0.14711,,,,,,,,0.08058,0.10717,0.16434,,,,,,,,0.0883,0.11788,0.17816,,,,,,,,0.05379,0.07589,0.12827,,,,,,,,0.05784,0.08108,0.13384,,,,,,,,0.052,0.07219,0.122,,,,,,,,0.06733,0.09193,0.14743,,,,,,,,0.05183,0.0719,0.12162 +Small SUV,E10,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00115,,,,,,,,,0.00072,0.0012,,,,,,,,,0.00077,0.00129,,,,,,,,,0.00052,0.00086,,,,,,,,,0.00056,0.00092,,,,,,,,,0.00048,0.00079,,,,,,,,,0.00059,0.00097,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00821,0.0063,,,,,,,,,0.00707,0.00551,,,,,,,,,0.00765,0.00613,,,,,,,,,0.00864,0.0069,,,,,,,,,0.00412,0.00374,,,,,,,,,0.00477,0.00422,,,,,,,,,0.00396,0.00363,,,,,,,,,0.00558,0.00468,,,,,,,,,0.00405,0.00357,,,,,,,,,1.03629,1.52874,,,,,,,,,0.98618,1.47623,,,,,,,,,1.05127,1.64267,,,,,,,,,1.14045,1.78812,,,,,,,,,0.84562,1.43146,,,,,,,,,0.89592,1.50455,,,,,,,,,0.87316,1.47423,,,,,,,,,0.96228,1.54316,,,,,,,,,0.83028,1.34093,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04452,0.06646,,,,,,,,,0.04269,0.06398,,,,,,,,,0.04309,0.06772,,,,,,,,,0.04563,0.07267,,,,,,,,,0.03418,0.0573,,,,,,,,,0.03746,0.06183,,,,,,,,,0.03505,0.0583,,,,,,,,,0.04156,0.06672,,,,,,,,,0.03648,0.05848,,,,,,,,,0.00149,0.00238,,,,,,,,,0.00144,0.00228,,,,,,,,,0.00146,0.00232,,,,,,,,,0.00151,0.00241,,,,,,,,,0.00129,0.00202,,,,,,,,,0.00131,0.00205,,,,,,,,,0.00123,0.00192,,,,,,,,,0.00134,0.0021,,,,,,,,,0.0012,0.00186,,,,,,,,,0.04409,0.04605,,,,,,,,,0.04534,0.04719,,,,,,,,,0.04943,0.05133,,,,,,,,,0.04129,0.04329,,,,,,,,,0.04814,0.04967,,,,,,,,,0.04389,0.04548,,,,,,,,,0.04394,0.04539,,,,,,,,,0.04627,0.04792,,,,,,,,,0.04574,0.04713,,,,,,,,,0.00817,0.00991,,,,,,,,,0.00822,0.00985,,,,,,,,,0.00878,0.01047,,,,,,,,,0.00785,0.00962,,,,,,,,,0.00826,0.00962,,,,,,,,,0.00777,0.00918,,,,,,,,,0.00763,0.00891,,,,,,,,,0.00813,0.00959,,,,,,,,,0.0078,0.00904,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00181,0.00183,,,,,,,,,0.00184,0.00185,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00181,0.00182,,,,,,,,,0.00182,0.00183,,,,,,,,,0.0018,0.00181,,,,,,,,,0.00166,0.00167,,,,,,,,,0.08373,0.10763,,,,,,,,,0.07456,0.09596,,,,,,,,,0.08052,0.10713,,,,,,,,,0.08827,0.11791,,,,,,,,,0.05381,0.07595,,,,,,,,,0.05785,0.08112,,,,,,,,,0.05203,0.07227,,,,,,,,,0.06747,0.09201,,,,,,,,,0.05181,0.07191 +Small SUV,E10,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00072,,,,,,,,,,0.00078,,,,,,,,,,0.00053,,,,,,,,,,0.00056,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.00046,,,,,,,,,,0.0082,,,,,,,,,,0.00707,,,,,,,,,,0.00764,,,,,,,,,,0.00863,,,,,,,,,,0.00411,,,,,,,,,,0.00476,,,,,,,,,,0.00396,,,,,,,,,,0.00558,,,,,,,,,,0.00405,,,,,,,,,,1.03626,,,,,,,,,,0.98648,,,,,,,,,,1.05157,,,,,,,,,,1.14126,,,,,,,,,,0.84688,,,,,,,,,,0.89708,,,,,,,,,,0.87452,,,,,,,,,,0.963,,,,,,,,,,0.83048,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.04457,,,,,,,,,,0.04274,,,,,,,,,,0.04315,,,,,,,,,,0.04571,,,,,,,,,,0.03421,,,,,,,,,,0.03751,,,,,,,,,,0.0351,,,,,,,,,,0.0416,,,,,,,,,,0.03649,,,,,,,,,,0.0015,,,,,,,,,,0.00144,,,,,,,,,,0.00146,,,,,,,,,,0.00151,,,,,,,,,,0.00129,,,,,,,,,,0.00131,,,,,,,,,,0.00123,,,,,,,,,,0.00134,,,,,,,,,,0.0012,,,,,,,,,,0.0441,,,,,,,,,,0.04535,,,,,,,,,,0.04944,,,,,,,,,,0.0413,,,,,,,,,,0.04814,,,,,,,,,,0.0439,,,,,,,,,,0.04395,,,,,,,,,,0.04627,,,,,,,,,,0.04574,,,,,,,,,,0.00818,,,,,,,,,,0.00823,,,,,,,,,,0.00879,,,,,,,,,,0.00786,,,,,,,,,,0.00827,,,,,,,,,,0.00778,,,,,,,,,,0.00764,,,,,,,,,,0.00814,,,,,,,,,,0.0078,,,,,,,,,,0.0018,,,,,,,,,,0.00181,,,,,,,,,,0.00184,,,,,,,,,,0.0018,,,,,,,,,,0.00184,,,,,,,,,,0.00181,,,,,,,,,,0.00182,,,,,,,,,,0.0018,,,,,,,,,,0.00166,,,,,,,,,,0.0837,,,,,,,,,,0.07455,,,,,,,,,,0.08049,,,,,,,,,,0.08828,,,,,,,,,,0.05385,,,,,,,,,,0.05787,,,,,,,,,,0.05208,,,,,,,,,,0.06753,,,,,,,,,,0.05182 +Small SUV,E15,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.12065,,,,,,,,,,0.10162,,,,,,,,,,0.13541,,,,,,,,,,0.14182,,,,,,,,,,0.11558,,,,,,,,,,0.12745,,,,,,,,,,0.11645,,,,,,,,,,0.11186,,,,,,,,,,0.0861,,,,,,,,,,59.59238,,,,,,,,,,53.45102,,,,,,,,,,68.40019,,,,,,,,,,71.15177,,,,,,,,,,62.01726,,,,,,,,,,67.54108,,,,,,,,,,63.84635,,,,,,,,,,60.29827,,,,,,,,,,48.25039,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.67638,,,,,,,,,,5.32777,,,,,,,,,,5.89604,,,,,,,,,,6.28535,,,,,,,,,,5.8091,,,,,,,,,,6.08587,,,,,,,,,,5.82808,,,,,,,,,,6.14781,,,,,,,,,,5.10341,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02918,,,,,,,,,,0.03291,,,,,,,,,,0.04674,,,,,,,,,,0.04285,,,,,,,,,,0.03814,,,,,,,,,,0.04203,,,,,,,,,,0.03825,,,,,,,,,,0.03781,,,,,,,,,,0.01784,,,,,,,,,,4.65991,,,,,,,,,,4.17681,,,,,,,,,,5.28432,,,,,,,,,,5.49861,,,,,,,,,,5.12669,,,,,,,,,,5.34065,,,,,,,,,,5.15853,,,,,,,,,,4.96051,,,,,,,,,,3.95279,,,,,,,,, +Small SUV,E15,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.08258,0.09566,,,,,,,,,0.07687,0.08214,,,,,,,,,0.09541,0.1051,,,,,,,,,0.09851,0.11569,,,,,,,,,0.08436,0.09869,,,,,,,,,0.09003,0.1066,,,,,,,,,0.08421,0.09726,,,,,,,,,0.08236,0.09265,,,,,,,,,0.06672,0.06853,,,,,,,,,27.87856,39.02577,,,,,,,,,27.24741,36.0603,,,,,,,,,32.86673,44.83978,,,,,,,,,34.42847,47.97397,,,,,,,,,30.47994,42.13867,,,,,,,,,32.57638,45.61889,,,,,,,,,31.37145,43.51357,,,,,,,,,30.09137,42.19543,,,,,,,,,24.19631,33.19909,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.6664,5.66445,,,,,,,,,4.58673,5.3417,,,,,,,,,4.95732,5.81974,,,,,,,,,5.1898,6.32021,,,,,,,,,4.86879,5.90005,,,,,,,,,5.06929,6.13387,,,,,,,,,4.93364,5.91427,,,,,,,,,5.1693,6.18841,,,,,,,,,4.35748,5.12875,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02281,0.01172,,,,,,,,,0.02589,0.01188,,,,,,,,,0.03693,0.0123,,,,,,,,,0.03357,0.02056,,,,,,,,,0.03039,0.01212,,,,,,,,,0.03326,0.01201,,,,,,,,,0.03043,0.01648,,,,,,,,,0.0299,0.01874,,,,,,,,,0.01406,0.00689,,,,,,,,,3.22511,4.07292,,,,,,,,,3.11826,3.74208,,,,,,,,,3.75479,4.53079,,,,,,,,,3.84111,4.87321,,,,,,,,,3.62314,4.71745,,,,,,,,,3.71396,4.82907,,,,,,,,,3.61873,4.65989,,,,,,,,,3.55848,4.50338,,,,,,,,,2.92715,3.53898,,,,,,,, +Small SUV,E15,2000,0.00678,0.00997,0.02284,,,,,,,,0.00583,0.00855,0.01949,,,,,,,,0.00656,0.00964,0.0222,,,,,,,,0.00726,0.0107,0.02477,,,,,,,,0.00328,0.00477,0.01066,,,,,,,,0.00387,0.00564,0.0133,,,,,,,,0.00314,0.00456,0.01009,,,,,,,,0.00452,0.00661,0.01496,,,,,,,,0.00316,0.00458,0.01006,,,,,,,,0.04666,0.06942,0.09406,,,,,,,,0.04383,0.06659,0.08351,,,,,,,,0.05448,0.07808,0.10576,,,,,,,,0.05611,0.08266,0.10974,,,,,,,,0.04123,0.069,0.09537,,,,,,,,0.04492,0.07237,0.09994,,,,,,,,0.04076,0.06797,0.09013,,,,,,,,0.04369,0.0681,0.0881,,,,,,,,0.03483,0.05686,0.06904,,,,,,,,8.59577,13.80621,25.42879,,,,,,,,8.40494,13.67133,23.31772,,,,,,,,10.33208,16.59557,29.83902,,,,,,,,10.71726,17.14071,30.23553,,,,,,,,8.34909,14.54229,26.84265,,,,,,,,9.06002,15.50459,28.7891,,,,,,,,8.49084,14.84126,26.58304,,,,,,,,8.75648,15.02741,26.21991,,,,,,,,7.00193,12.67493,21.07122,,,,,,,,519.42675,524.09096,527.02867,,,,,,,,523.65108,528.00485,529.98667,,,,,,,,531.22032,535.80276,538.31103,,,,,,,,518.7679,523.30119,525.70058,,,,,,,,532.49042,535.74026,534.49675,,,,,,,,523.68493,527.25523,528.67382,,,,,,,,528.32762,531.44913,529.72438,,,,,,,,528.27961,532.00795,532.13864,,,,,,,,520.52036,523.96225,523.681,,,,,,,,0.05098,0.05676,0.08712,,,,,,,,0.05115,0.05691,0.08721,,,,,,,,0.05222,0.058,0.08859,,,,,,,,0.04982,0.05553,0.08539,,,,,,,,0.05194,0.0577,0.08819,,,,,,,,0.05058,0.05629,0.08637,,,,,,,,0.05098,0.05675,0.08704,,,,,,,,0.0516,0.05739,0.08788,,,,,,,,0.05194,0.05779,0.08855,,,,,,,,0.06211,0.08109,0.08468,,,,,,,,0.06218,0.08118,0.08476,,,,,,,,0.06216,0.08115,0.0847,,,,,,,,0.06184,0.08074,0.08437,,,,,,,,0.06211,0.08108,0.08464,,,,,,,,0.0619,0.08082,0.08441,,,,,,,,0.06206,0.08103,0.08462,,,,,,,,0.0622,0.08121,0.08478,,,,,,,,0.06233,0.08139,0.08495,,,,,,,,1.68898,2.38865,3.99568,,,,,,,,1.65357,2.36648,3.78631,,,,,,,,1.91637,2.61527,4.26287,,,,,,,,1.97177,2.75259,4.37505,,,,,,,,1.83094,2.58524,4.2534,,,,,,,,1.90187,2.64699,4.33135,,,,,,,,1.85911,2.62331,4.11499,,,,,,,,1.94761,2.72841,4.31954,,,,,,,,1.65012,2.35186,3.6239,,,,,,,,0.01478,0.02069,0.04094,,,,,,,,0.01296,0.01811,0.03568,,,,,,,,0.01413,0.01978,0.03945,,,,,,,,0.0154,0.0216,0.04334,,,,,,,,0.00785,0.0109,0.02112,,,,,,,,0.00902,0.01256,0.02552,,,,,,,,0.00767,0.01064,0.02045,,,,,,,,0.01034,0.01442,0.02822,,,,,,,,0.00781,0.01083,0.02057,,,,,,,,0.0726,0.08533,0.13153,,,,,,,,0.07004,0.08102,0.12091,,,,,,,,0.07691,0.08889,0.1338,,,,,,,,0.07147,0.0849,0.13452,,,,,,,,0.06212,0.06846,0.09124,,,,,,,,0.06043,0.06778,0.09703,,,,,,,,0.05763,0.06384,0.08552,,,,,,,,0.06558,0.07426,0.10523,,,,,,,,0.05958,0.06591,0.08744,,,,,,,,0.0334,0.04466,0.08553,,,,,,,,0.03007,0.03979,0.07507,,,,,,,,0.0331,0.0437,0.08343,,,,,,,,0.03455,0.04644,0.09033,,,,,,,,0.02063,0.02625,0.04641,,,,,,,,0.02241,0.02891,0.05464,,,,,,,,0.01974,0.02524,0.04442,,,,,,,,0.02522,0.0329,0.0603,,,,,,,,0.02005,0.02566,0.0447,,,,,,,,0.02439,0.01184,0.01072,,,,,,,,0.02773,0.01204,0.01078,,,,,,,,0.03954,0.01246,0.01095,,,,,,,,0.036,0.02087,0.01069,,,,,,,,0.0327,0.01239,0.01087,,,,,,,,0.03579,0.01225,0.01075,,,,,,,,0.0328,0.01687,0.01077,,,,,,,,0.0321,0.0191,0.0097,,,,,,,,0.01508,0.007,0.00504,,,,,,,,1.10156,1.83782,3.30219,,,,,,,,1.08213,1.8141,3.02223,,,,,,,,1.30177,2.09502,3.73038,,,,,,,,1.34769,2.20316,3.83672,,,,,,,,1.14073,2.01504,3.69944,,,,,,,,1.1838,2.05474,3.82289,,,,,,,,1.13686,1.98429,3.53952,,,,,,,,1.19425,2.00379,3.47845,,,,,,,,0.9625,1.68027,2.78972,,,,,,, +Small SUV,E15,2005,0.00224,0.00371,0.00548,0.01393,,,,,,,0.00201,0.00319,0.0047,0.01197,,,,,,,0.00247,0.00285,0.00417,0.01341,,,,,,,0.00259,0.00381,0.00565,0.01496,,,,,,,0.00129,0.00208,0.00304,0.00685,,,,,,,0.00152,0.00213,0.00313,0.00799,,,,,,,0.00123,0.00189,0.00275,0.00633,,,,,,,0.00168,0.00238,0.00348,0.0092,,,,,,,0.00109,0.00162,0.00233,0.00617,,,,,,,0.02784,0.02128,0.02252,0.05038,,,,,,,0.02563,0.01928,0.02097,0.04585,,,,,,,0.02904,0.02104,0.02287,0.05848,,,,,,,0.02944,0.02457,0.02496,0.06071,,,,,,,0.01845,0.0161,0.01855,0.04944,,,,,,,0.02058,0.01714,0.01968,0.05264,,,,,,,0.01773,0.01659,0.01808,0.04679,,,,,,,0.02212,0.0186,0.01914,0.04835,,,,,,,0.01469,0.01239,0.01402,0.03844,,,,,,,4.4151,6.66009,8.6055,15.27794,,,,,,,4.33412,6.60611,8.69689,14.68121,,,,,,,4.84393,7.77284,10.37328,17.95611,,,,,,,4.97685,8.44323,10.41162,18.77986,,,,,,,4.40055,7.19572,9.71333,16.65928,,,,,,,4.55213,7.49856,10.25832,17.36852,,,,,,,4.50383,7.74561,9.79538,16.72235,,,,,,,4.60901,7.99681,9.76447,16.7489,,,,,,,3.63511,6.67418,8.76272,14.44939,,,,,,,544.39318,547.03541,552.96372,553.50631,,,,,,,549.15818,551.61044,557.11807,556.71381,,,,,,,556.66504,559.24687,565.03727,565.17411,,,,,,,544.08328,546.6066,552.40283,552.59409,,,,,,,559.60243,561.37696,565.41325,561.80501,,,,,,,550.23082,552.20635,558.50072,553.97491,,,,,,,555.6476,557.33996,561.20779,557.21621,,,,,,,554.72399,556.7937,561.46575,559.22916,,,,,,,546.751,548.70275,552.97175,550.06822,,,,,,,0.01007,0.0108,0.01272,0.04015,,,,,,,0.01009,0.01082,0.01273,0.04016,,,,,,,0.01026,0.01099,0.01291,0.04072,,,,,,,0.00986,0.01058,0.01248,0.0394,,,,,,,0.01021,0.01094,0.01286,0.04055,,,,,,,0.00998,0.01071,0.01261,0.03976,,,,,,,0.01006,0.01079,0.01271,0.0401,,,,,,,0.01017,0.0109,0.01282,0.04045,,,,,,,0.01024,0.01098,0.01293,0.04078,,,,,,,0.02495,0.0287,0.03537,0.05091,,,,,,,0.02498,0.02873,0.03541,0.05096,,,,,,,0.02497,0.02872,0.0354,0.05094,,,,,,,0.02485,0.02858,0.03522,0.05071,,,,,,,0.02495,0.0287,0.03537,0.0509,,,,,,,0.02488,0.02861,0.03525,0.05075,,,,,,,0.02494,0.02868,0.03535,0.05088,,,,,,,0.02499,0.02874,0.03542,0.05098,,,,,,,0.02504,0.0288,0.0355,0.05109,,,,,,,0.62564,0.99522,1.29585,1.98078,,,,,,,0.61402,0.97385,1.29323,1.91655,,,,,,,0.66538,1.07873,1.41171,2.1752,,,,,,,0.66465,1.18569,1.47516,2.26824,,,,,,,0.62303,1.04246,1.37897,2.15195,,,,,,,0.6449,1.07929,1.41423,2.19415,,,,,,,0.63308,1.09505,1.37762,2.10288,,,,,,,0.67963,1.13893,1.40583,2.21675,,,,,,,0.53278,0.76137,1.00009,1.91448,,,,,,,0.00504,0.00812,0.01102,0.02474,,,,,,,0.00462,0.00723,0.0098,0.0218,,,,,,,0.00534,0.0067,0.00903,0.0237,,,,,,,0.00552,0.00818,0.01113,0.02588,,,,,,,0.00324,0.00511,0.00696,0.01373,,,,,,,0.00364,0.00523,0.00715,0.01551,,,,,,,0.00315,0.00482,0.00654,0.01308,,,,,,,0.00398,0.00575,0.00777,0.01747,,,,,,,0.00291,0.00437,0.00588,0.01294,,,,,,,0.05163,0.05814,0.06469,0.09556,,,,,,,0.05211,0.05754,0.06329,0.09019,,,,,,,0.05783,0.0604,0.06557,0.09875,,,,,,,0.04999,0.05557,0.06218,0.09559,,,,,,,0.05228,0.0561,0.06012,0.07502,,,,,,,0.04887,0.05207,0.05643,0.07479,,,,,,,0.04801,0.05141,0.05508,0.06939,,,,,,,0.0519,0.05553,0.05992,0.08152,,,,,,,0.04928,0.05222,0.05543,0.0709,,,,,,,0.01483,0.02059,0.02639,0.05371,,,,,,,0.01419,0.01901,0.02409,0.04789,,,,,,,0.01621,0.01849,0.02306,0.05241,,,,,,,0.01554,0.02048,0.02633,0.05588,,,,,,,0.01192,0.01531,0.01886,0.03205,,,,,,,0.01217,0.015,0.01872,0.0351,,,,,,,0.01122,0.01423,0.01748,0.03015,,,,,,,0.01311,0.01632,0.02021,0.03932,,,,,,,0.01093,0.01353,0.01637,0.03006,,,,,,,0.02556,0.01236,0.01125,0.00375,,,,,,,0.02907,0.01257,0.01133,0.00377,,,,,,,0.04144,0.01301,0.01149,0.00383,,,,,,,0.03776,0.02181,0.01124,0.00375,,,,,,,0.03437,0.01298,0.0115,0.00381,,,,,,,0.0376,0.01283,0.01136,0.00376,,,,,,,0.03449,0.0177,0.01141,0.00378,,,,,,,0.03369,0.01999,0.01023,0.00374,,,,,,,0.01583,0.00732,0.00532,0.00345,,,,,,,0.43447,0.531,0.7254,1.8609,,,,,,,0.41218,0.50223,0.69293,1.7482,,,,,,,0.46788,0.54718,0.75455,2.122,,,,,,,0.47923,0.62123,0.81272,2.18144,,,,,,,0.35141,0.47581,0.6755,1.99324,,,,,,,0.37296,0.48802,0.70705,2.03795,,,,,,,0.34265,0.4805,0.65593,1.9116,,,,,,,0.40921,0.53849,0.71204,1.98032,,,,,,,0.29202,0.39475,0.55528,1.6373,,,,,, +Small SUV,E15,2010,,0.00166,0.00295,0.00438,0.01081,,,,,,,0.00145,0.00257,0.00387,0.00937,,,,,,,0.00128,0.00225,0.0042,0.01036,,,,,,,0.00171,0.00305,0.00465,0.01154,,,,,,,0.00105,0.00182,0.00257,0.00565,,,,,,,0.00105,0.00182,0.00283,0.00645,,,,,,,0.00096,0.00165,0.00231,0.00512,,,,,,,0.00112,0.00197,0.00309,0.00726,,,,,,,0.00081,0.00139,0.00217,0.00488,,,,,,,0.02001,0.01826,0.01552,0.03279,,,,,,,0.01761,0.01677,0.0142,0.03035,,,,,,,0.01849,0.01845,0.016,0.03709,,,,,,,0.02239,0.02068,0.01769,0.03936,,,,,,,0.01324,0.01522,0.01264,0.03059,,,,,,,0.01392,0.01589,0.01329,0.03253,,,,,,,0.0136,0.01497,0.01242,0.0293,,,,,,,0.01584,0.01541,0.01359,0.03101,,,,,,,0.01051,0.01125,0.01171,0.02544,,,,,,,2.95326,4.7524,6.25649,10.91147,,,,,,,2.84207,4.75451,6.20872,10.73036,,,,,,,3.26228,5.54729,7.03116,12.98077,,,,,,,3.5068,5.61418,7.56137,13.75476,,,,,,,2.70871,5.01628,6.69247,12.12347,,,,,,,2.87181,5.34479,6.89196,12.64055,,,,,,,2.91924,5.09833,6.84483,12.25959,,,,,,,3.18676,5.16194,6.88171,12.28225,,,,,,,2.60163,4.58049,6.15705,10.73228,,,,,,,516.83349,519.09937,523.84119,544.87964,,,,,,,521.37604,523.34975,527.61558,547.87014,,,,,,,528.50488,530.63568,535.19412,556.21225,,,,,,,516.51536,518.67635,523.2822,544.06459,,,,,,,531.33983,532.31245,534.9316,552.33741,,,,,,,522.44566,525.43011,526.8089,544.88158,,,,,,,527.59534,528.46326,530.90767,547.87909,,,,,,,526.68943,528.09633,531.42638,550.05078,,,,,,,519.14926,520.34582,523.24418,540.82102,,,,,,,0.00953,0.01073,0.01287,0.02506,,,,,,,0.00954,0.01074,0.01288,0.02505,,,,,,,0.00971,0.01092,0.01306,0.02537,,,,,,,0.00933,0.01052,0.01263,0.02461,,,,,,,0.00966,0.01087,0.013,0.02527,,,,,,,0.00944,0.01064,0.01275,0.02481,,,,,,,0.00952,0.01072,0.01286,0.02502,,,,,,,0.00962,0.01083,0.01297,0.02522,,,,,,,0.00969,0.01091,0.01307,0.02543,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.0188,0.02173,0.02737,0.03605,,,,,,,0.0188,0.02172,0.02737,0.03604,,,,,,,0.0187,0.02161,0.02723,0.03586,,,,,,,0.01878,0.0217,0.02734,0.03601,,,,,,,0.01872,0.02163,0.02725,0.03589,,,,,,,0.01877,0.02169,0.02732,0.03598,,,,,,,0.01881,0.02173,0.02738,0.03606,,,,,,,0.01885,0.02178,0.02744,0.03614,,,,,,,0.2189,0.35561,0.32344,1.00662,,,,,,,0.21138,0.3537,0.31973,0.98852,,,,,,,0.21828,0.38094,0.34236,1.12858,,,,,,,0.23604,0.40051,0.36087,1.18948,,,,,,,0.20437,0.36567,0.3257,1.1077,,,,,,,0.21132,0.37825,0.33621,1.1332,,,,,,,0.21483,0.36779,0.32837,1.08977,,,,,,,0.23074,0.37961,0.35579,1.1482,,,,,,,0.15716,0.26798,0.32114,1.00035,,,,,,,0.00301,0.00509,0.00712,0.01775,,,,,,,0.00281,0.00473,0.00664,0.01592,,,,,,,0.00256,0.00429,0.00692,0.01704,,,,,,,0.00303,0.00513,0.00734,0.01846,,,,,,,0.00246,0.00407,0.00541,0.011,,,,,,,0.0024,0.00395,0.00562,0.01201,,,,,,,0.00234,0.00384,0.0051,0.01035,,,,,,,0.00245,0.00407,0.00586,0.01314,,,,,,,0.00208,0.00342,0.00489,0.01008,,,,,,,0.04752,0.05224,0.05696,0.08086,,,,,,,0.0484,0.05268,0.05707,0.07783,,,,,,,0.05185,0.05568,0.06186,0.08466,,,,,,,0.04478,0.04956,0.05472,0.07989,,,,,,,0.05063,0.05406,0.05699,0.06929,,,,,,,0.04622,0.04976,0.05328,0.06743,,,,,,,0.04628,0.04947,0.05218,0.06366,,,,,,,0.04869,0.05219,0.05622,0.07238,,,,,,,0.04758,0.05036,0.05357,0.06486,,,,,,,0.0112,0.01538,0.01955,0.04069,,,,,,,0.01092,0.01471,0.01859,0.03696,,,,,,,0.01092,0.01432,0.01978,0.03995,,,,,,,0.01094,0.01517,0.01973,0.04199,,,,,,,0.01047,0.01351,0.0161,0.02697,,,,,,,0.00983,0.01282,0.01608,0.02859,,,,,,,0.0097,0.01252,0.01492,0.02508,,,,,,,0.01028,0.01337,0.01694,0.03123,,,,,,,0.00943,0.01189,0.01473,0.02472,,,,,,,0.01168,0.01056,0.00355,0.00369,,,,,,,0.01189,0.01064,0.00358,0.00371,,,,,,,0.0123,0.01079,0.00363,0.00377,,,,,,,0.02062,0.01055,0.00355,0.00369,,,,,,,0.01229,0.01083,0.00363,0.00374,,,,,,,0.01214,0.01069,0.00357,0.00369,,,,,,,0.01675,0.01075,0.0036,0.00371,,,,,,,0.01891,0.00962,0.00355,0.00367,,,,,,,0.00692,0.005,0.00328,0.00339,,,,,,,0.17178,0.25154,0.35865,1.23069,,,,,,,0.15323,0.23035,0.33337,1.17682,,,,,,,0.16318,0.25233,0.37023,1.36693,,,,,,,0.19271,0.28241,0.4026,1.41661,,,,,,,0.12259,0.20996,0.31874,1.26856,,,,,,,0.12616,0.22226,0.3234,1.28928,,,,,,,0.12349,0.20491,0.31128,1.22487,,,,,,,0.14922,0.22866,0.34822,1.29549,,,,,,,0.10966,0.17835,0.30063,1.11673,,,,, +Small SUV,E15,2015,,,0.00133,0.00233,0.0036,0.00745,,,,,,,0.0012,0.00213,0.00327,0.00662,,,,,,,0.00105,0.00225,0.00348,0.00716,,,,,,,0.00135,0.00242,0.00375,0.00785,,,,,,,0.00093,0.00157,0.00237,0.00439,,,,,,,0.00091,0.00169,0.00256,0.00486,,,,,,,0.00086,0.00144,0.00216,0.00396,,,,,,,0.00096,0.00178,0.00271,0.00528,,,,,,,0.00072,0.00136,0.00202,0.00371,,,,,,,0.015,0.01151,0.01233,0.01816,,,,,,,0.01381,0.01069,0.01161,0.01699,,,,,,,0.01393,0.01192,0.01298,0.0196,,,,,,,0.01559,0.01308,0.01419,0.02128,,,,,,,0.01094,0.00974,0.01113,0.01634,,,,,,,0.01156,0.01027,0.01165,0.01724,,,,,,,0.01095,0.00965,0.01106,0.01604,,,,,,,0.01177,0.0104,0.01158,0.01703,,,,,,,0.00874,0.00915,0.01035,0.01469,,,,,,,2.14858,3.87322,5.26793,7.7213,,,,,,,2.16115,3.89332,5.32271,7.7322,,,,,,,2.3556,4.30818,6.03287,9.06332,,,,,,,2.39513,4.63612,6.50193,9.70226,,,,,,,2.13134,4.26836,6.02256,8.81099,,,,,,,2.25481,4.36052,6.16675,9.10458,,,,,,,2.19432,4.38766,6.1745,9.00283,,,,,,,2.23866,4.34703,6.04454,8.88189,,,,,,,2.01498,3.94723,5.44128,7.91035,,,,,,,417.53748,419.96275,423.92135,464.77929,,,,,,,421.04661,423.19792,426.77245,467.19115,,,,,,,426.87244,429.18435,432.99983,474.34402,,,,,,,417.26701,419.6063,423.46225,464.10738,,,,,,,428.5573,429.76455,432.01165,470.53769,,,,,,,422.94251,423.03662,425.66968,464.35855,,,,,,,425.51324,426.6195,428.72824,466.74582,,,,,,,425.03789,426.65293,429.47363,468.79458,,,,,,,418.79749,420.18389,422.64161,460.77193,,,,,,,0.00577,0.0066,0.0078,0.01287,,,,,,,0.00578,0.0066,0.0078,0.01286,,,,,,,0.00587,0.0067,0.00791,0.013,,,,,,,0.00565,0.00647,0.00766,0.01264,,,,,,,0.00585,0.00667,0.00788,0.01296,,,,,,,0.00572,0.00653,0.00773,0.01274,,,,,,,0.00577,0.00659,0.00779,0.01285,,,,,,,0.00582,0.00665,0.00786,0.01294,,,,,,,0.00587,0.0067,0.00792,0.01305,,,,,,,0.01869,0.02141,0.02733,0.02862,,,,,,,0.01871,0.02144,0.02737,0.02866,,,,,,,0.01871,0.02143,0.02736,0.02865,,,,,,,0.01861,0.02133,0.02722,0.02851,,,,,,,0.01869,0.02141,0.02734,0.02862,,,,,,,0.01863,0.02135,0.02725,0.02853,,,,,,,0.01868,0.0214,0.02732,0.02861,,,,,,,0.01872,0.02145,0.02738,0.02867,,,,,,,0.01876,0.02149,0.02743,0.02873,,,,,,,0.13741,0.17005,0.25327,0.45796,,,,,,,0.13682,0.16738,0.25004,0.45233,,,,,,,0.13709,0.1809,0.26855,0.50246,,,,,,,0.14367,0.19289,0.28614,0.53383,,,,,,,0.12619,0.16847,0.25324,0.48226,,,,,,,0.13238,0.17591,0.26352,0.49778,,,,,,,0.12929,0.17023,0.25622,0.48157,,,,,,,0.13688,0.18654,0.27802,0.51546,,,,,,,0.09874,0.16678,0.24924,0.45662,,,,,,,0.00261,0.0044,0.00637,0.01193,,,,,,,0.00249,0.00421,0.00607,0.01105,,,,,,,0.00227,0.00431,0.00623,0.01155,,,,,,,0.0026,0.00446,0.00647,0.01226,,,,,,,0.00227,0.0037,0.00522,0.00867,,,,,,,0.00219,0.00377,0.00535,0.00911,,,,,,,0.00216,0.00352,0.00495,0.00814,,,,,,,0.00221,0.00386,0.00549,0.00958,,,,,,,0.00193,0.00339,0.00475,0.00782,,,,,,,0.04653,0.05047,0.05497,0.06791,,,,,,,0.0476,0.05136,0.05555,0.06705,,,,,,,0.05113,0.05565,0.06003,0.07242,,,,,,,0.04369,0.0478,0.05243,0.06598,,,,,,,0.05018,0.05317,0.05648,0.06419,,,,,,,0.04592,0.0491,0.05258,0.06106,,,,,,,0.04587,0.0487,0.05178,0.05884,,,,,,,0.0481,0.05163,0.05526,0.06453,,,,,,,0.04723,0.05027,0.0532,0.05995,,,,,,,0.01033,0.01381,0.0178,0.02925,,,,,,,0.01022,0.01354,0.01725,0.02742,,,,,,,0.01029,0.01429,0.01817,0.02912,,,,,,,0.00997,0.01361,0.01771,0.0297,,,,,,,0.01007,0.01272,0.01565,0.02247,,,,,,,0.00942,0.01238,0.01546,0.02296,,,,,,,0.00934,0.01184,0.01457,0.02082,,,,,,,0.00976,0.01288,0.01609,0.02429,,,,,,,0.00912,0.01181,0.01441,0.02038,,,,,,,0.00849,0.00285,0.00287,0.00315,,,,,,,0.00856,0.00287,0.00289,0.00317,,,,,,,0.00868,0.00291,0.00294,0.00322,,,,,,,0.00849,0.00284,0.00287,0.00315,,,,,,,0.00872,0.00291,0.00293,0.00319,,,,,,,0.0086,0.00287,0.00289,0.00315,,,,,,,0.00865,0.00289,0.00291,0.00316,,,,,,,0.00774,0.00285,0.00287,0.00313,,,,,,,0.00402,0.00263,0.00265,0.00289,,,,,,,0.12646,0.18055,0.29518,0.71847,,,,,,,0.11768,0.16975,0.28212,0.69453,,,,,,,0.1217,0.18622,0.31,0.76526,,,,,,,0.13326,0.20057,0.33059,0.79581,,,,,,,0.10147,0.16347,0.2886,0.7248,,,,,,,0.10781,0.16581,0.28995,0.72519,,,,,,,0.10063,0.16078,0.28378,0.70755,,,,,,,0.11343,0.1783,0.30479,0.75197,,,,,,,0.09157,0.1552,0.27326,0.68119,,,, +Small SUV,E15,2020,,,,0.00118,0.00201,0.00285,0.00571,,,,,,,0.00109,0.00184,0.0026,0.00514,,,,,,,0.00114,0.00195,0.00276,0.0055,,,,,,,0.00122,0.00208,0.00296,0.00597,,,,,,,0.00083,0.00138,0.0019,0.00356,,,,,,,0.00088,0.00147,0.00205,0.0039,,,,,,,0.00076,0.00126,0.00173,0.00322,,,,,,,0.00092,0.00155,0.00216,0.00417,,,,,,,0.00072,0.00119,0.00163,0.003,,,,,,,0.01138,0.00976,0.00969,0.01323,,,,,,,0.01028,0.00897,0.009,0.01232,,,,,,,0.01079,0.01,0.01004,0.01416,,,,,,,0.01187,0.01102,0.01104,0.0155,,,,,,,0.00749,0.00779,0.00811,0.01165,,,,,,,0.0081,0.00832,0.00861,0.01234,,,,,,,0.00739,0.0077,0.00803,0.01148,,,,,,,0.00883,0.0085,0.00868,0.01225,,,,,,,0.00738,0.00728,0.00752,0.01052,,,,,,,1.75346,2.70311,3.40415,5.23717,,,,,,,1.73504,2.69294,3.40028,5.23739,,,,,,,1.8221,2.98023,3.84322,6.16501,,,,,,,1.9638,3.22016,4.16746,6.64494,,,,,,,1.68648,2.87426,3.71799,5.95641,,,,,,,1.73449,2.95563,3.83734,6.18761,,,,,,,1.74446,2.95795,3.82139,6.10522,,,,,,,1.80599,2.96455,3.7956,6.01734,,,,,,,1.63703,2.67087,3.38976,5.31156,,,,,,,357.91079,360.37415,364.37202,397.59847,,,,,,,360.76828,362.99831,366.6542,399.45254,,,,,,,365.83607,368.21014,372.08895,405.66982,,,,,,,357.66181,360.05112,363.95662,397.00389,,,,,,,366.69938,368.12354,370.59162,401.61394,,,,,,,360.86399,362.51937,365.32828,396.56361,,,,,,,364.05649,365.39199,367.73176,398.33068,,,,,,,363.90252,365.67487,368.65588,400.42854,,,,,,,358.41105,359.98073,362.62781,393.36751,,,,,,,0.00591,0.00669,0.00786,0.0106,,,,,,,0.00592,0.00669,0.00786,0.01059,,,,,,,0.00602,0.00679,0.00797,0.0107,,,,,,,0.0058,0.00656,0.00772,0.01041,,,,,,,0.00599,0.00676,0.00793,0.01066,,,,,,,0.00586,0.00662,0.00779,0.01049,,,,,,,0.00591,0.00668,0.00785,0.01058,,,,,,,0.00597,0.00674,0.00792,0.01065,,,,,,,0.00601,0.00679,0.00798,0.01075,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01873,0.02159,0.02737,0.02737,,,,,,,0.01872,0.02158,0.02736,0.02736,,,,,,,0.01863,0.02148,0.02723,0.02723,,,,,,,0.01871,0.02156,0.02734,0.02734,,,,,,,0.01865,0.0215,0.02725,0.02725,,,,,,,0.0187,0.02155,0.02732,0.02732,,,,,,,0.01874,0.0216,0.02738,0.02738,,,,,,,0.01878,0.02164,0.02744,0.02744,,,,,,,0.09268,0.15258,0.20516,0.28869,,,,,,,0.09124,0.15001,0.20209,0.28435,,,,,,,0.09213,0.16143,0.21602,0.3109,,,,,,,0.09704,0.17279,0.23109,0.3327,,,,,,,0.08183,0.14903,0.20103,0.29187,,,,,,,0.08636,0.15649,0.21065,0.30458,,,,,,,0.0838,0.15112,0.20417,0.29404,,,,,,,0.09474,0.16638,0.22324,0.31878,,,,,,,0.08605,0.14846,0.19968,0.28245,,,,,,,0.00236,0.00382,0.00507,0.00903,,,,,,,0.00227,0.00367,0.00484,0.00849,,,,,,,0.00231,0.00374,0.00496,0.0088,,,,,,,0.00238,0.00386,0.00515,0.00923,,,,,,,0.00203,0.00323,0.00418,0.00701,,,,,,,0.00206,0.00329,0.00429,0.00728,,,,,,,0.00194,0.00308,0.00396,0.00659,,,,,,,0.0021,0.00336,0.00439,0.00753,,,,,,,0.00187,0.00296,0.00381,0.00631,,,,,,,0.04595,0.04919,0.05208,0.0614,,,,,,,0.04711,0.05017,0.05285,0.06136,,,,,,,0.05126,0.05442,0.05722,0.06624,,,,,,,0.04318,0.04648,0.04946,0.05913,,,,,,,0.04967,0.05221,0.05429,0.06061,,,,,,,0.04546,0.04809,0.0503,0.05706,,,,,,,0.0454,0.04778,0.04972,0.05553,,,,,,,0.04787,0.05058,0.05289,0.06004,,,,,,,0.04711,0.0494,0.05124,0.05675,,,,,,,0.00982,0.01268,0.01524,0.02349,,,,,,,0.00979,0.01249,0.01486,0.02239,,,,,,,0.0104,0.0132,0.01568,0.02366,,,,,,,0.00952,0.01245,0.01508,0.02363,,,,,,,0.00962,0.01187,0.01371,0.0193,,,,,,,0.00917,0.01149,0.01344,0.01942,,,,,,,0.00892,0.01103,0.01275,0.01789,,,,,,,0.00955,0.01195,0.01399,0.02032,,,,,,,0.00902,0.01104,0.01267,0.01755,,,,,,,0.00243,0.00244,0.00247,0.0027,,,,,,,0.00245,0.00246,0.00249,0.00271,,,,,,,0.00248,0.0025,0.00252,0.00275,,,,,,,0.00242,0.00244,0.00247,0.00269,,,,,,,0.00249,0.0025,0.00251,0.00272,,,,,,,0.00245,0.00246,0.00248,0.00269,,,,,,,0.00247,0.00248,0.00249,0.0027,,,,,,,0.00243,0.00244,0.00246,0.00267,,,,,,,0.00225,0.00226,0.00227,0.00247,,,,,,,0.1078,0.15202,0.23173,0.55538,,,,,,,0.09925,0.14089,0.21806,0.5363,,,,,,,0.10524,0.1558,0.24132,0.58563,,,,,,,0.11342,0.16861,0.25857,0.60661,,,,,,,0.08173,0.12938,0.21272,0.55633,,,,,,,0.08456,0.13331,0.21649,0.5548,,,,,,,0.08029,0.12598,0.20676,0.54238,,,,,,,0.09531,0.14449,0.2298,0.57712,,,,,,,0.07898,0.12217,0.20051,0.5296,,, +Small SUV,E15,2025,,,,,0.00078,0.00129,0.00182,0.00409,,,,,,,0.00071,0.00118,0.00166,0.0037,,,,,,,0.00075,0.00125,0.00176,0.00395,,,,,,,0.0008,0.00133,0.00189,0.00426,,,,,,,0.00054,0.00088,0.00122,0.00259,,,,,,,0.00058,0.00094,0.00131,0.00283,,,,,,,0.0005,0.00081,0.00111,0.00234,,,,,,,0.00061,0.00099,0.00138,0.00302,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00887,0.00699,0.00677,0.00997,,,,,,,0.00775,0.00621,0.00607,0.00912,,,,,,,0.00832,0.00693,0.00678,0.01054,,,,,,,0.00932,0.00774,0.00755,0.01162,,,,,,,0.00483,0.00457,0.0047,0.00803,,,,,,,0.00548,0.00506,0.00515,0.00867,,,,,,,0.00468,0.00445,0.00459,0.00786,,,,,,,0.00625,0.00543,0.00544,0.00875,,,,,,,0.0047,0.00426,0.00436,0.0072,,,,,,,1.15248,1.69392,2.15677,3.61217,,,,,,,1.10944,1.6495,2.10948,3.57126,,,,,,,1.17834,1.83578,2.39212,4.23238,,,,,,,1.28025,2.00064,2.61454,4.5877,,,,,,,0.98945,1.64607,2.16823,3.95008,,,,,,,1.03885,1.7203,2.27074,4.14298,,,,,,,1.02242,1.69536,2.23069,4.05113,,,,,,,1.109,1.75818,2.2836,4.05208,,,,,,,0.97386,1.5477,1.99585,3.52701,,,,,,,294.61925,296.12761,299.04954,334.68556,,,,,,,296.83595,298.13998,300.75261,335.99998,,,,,,,301.07455,302.49404,305.29706,341.35366,,,,,,,294.40087,295.84827,298.69212,334.16079,,,,,,,301.26286,301.86726,303.41114,336.99134,,,,,,,296.61122,297.42381,299.28242,333.01626,,,,,,,299.05874,299.5917,301.02822,334.17656,,,,,,,299.15832,300.06538,302.07148,336.35325,,,,,,,294.50739,295.24691,296.95909,330.1732,,,,,,,0.00595,0.00668,0.00783,0.01021,,,,,,,0.00596,0.00668,0.00783,0.0102,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00583,0.00655,0.00769,0.01004,,,,,,,0.00603,0.00675,0.0079,0.01028,,,,,,,0.0059,0.00661,0.00775,0.0101,,,,,,,0.00595,0.00667,0.00782,0.01019,,,,,,,0.00601,0.00673,0.00788,0.01027,,,,,,,0.00605,0.00678,0.00795,0.01036,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01875,0.02157,0.02737,0.02736,,,,,,,0.01875,0.02156,0.02736,0.02735,,,,,,,0.01866,0.02146,0.02723,0.02722,,,,,,,0.01873,0.02155,0.02734,0.02733,,,,,,,0.01867,0.02148,0.02725,0.02724,,,,,,,0.01872,0.02153,0.02732,0.02731,,,,,,,0.01876,0.02158,0.02738,0.02737,,,,,,,0.0188,0.02162,0.02744,0.02743,,,,,,,0.05663,0.08559,0.11481,0.1948,,,,,,,0.05489,0.08308,0.11175,0.19066,,,,,,,0.05562,0.08876,0.11874,0.20917,,,,,,,0.05888,0.09531,0.12737,0.22478,,,,,,,0.04614,0.07771,0.10541,0.19136,,,,,,,0.04985,0.08304,0.11214,0.20164,,,,,,,0.04727,0.07898,0.10724,0.19274,,,,,,,0.05489,0.08883,0.11948,0.21116,,,,,,,0.04872,0.07823,0.10577,0.18514,,,,,,,0.00155,0.00246,0.00326,0.00651,,,,,,,0.0015,0.00236,0.00311,0.00614,,,,,,,0.00152,0.00241,0.00319,0.00635,,,,,,,0.00157,0.00248,0.00331,0.00663,,,,,,,0.00134,0.00208,0.0027,0.0051,,,,,,,0.00136,0.00212,0.00276,0.00529,,,,,,,0.00128,0.00198,0.00256,0.00479,,,,,,,0.00138,0.00217,0.00283,0.00547,,,,,,,0.00123,0.00191,0.00246,0.00461,,,,,,,0.04421,0.04621,0.04807,0.05565,,,,,,,0.04546,0.04734,0.04906,0.05605,,,,,,,0.04956,0.05151,0.05331,0.06067,,,,,,,0.04141,0.04346,0.04536,0.05316,,,,,,,0.04823,0.04981,0.05115,0.05649,,,,,,,0.04399,0.04562,0.04704,0.05272,,,,,,,0.04403,0.04551,0.04676,0.05168,,,,,,,0.04636,0.04804,0.04952,0.05549,,,,,,,0.0458,0.04722,0.04841,0.05312,,,,,,,0.00828,0.01005,0.01169,0.0184,,,,,,,0.00832,0.00999,0.01151,0.0177,,,,,,,0.0089,0.01063,0.01222,0.01873,,,,,,,0.00796,0.00977,0.01145,0.01835,,,,,,,0.00835,0.00974,0.01093,0.01566,,,,,,,0.00787,0.00931,0.01056,0.01558,,,,,,,0.00771,0.00902,0.01013,0.01448,,,,,,,0.00822,0.0097,0.01102,0.01629,,,,,,,0.00786,0.00912,0.01017,0.01433,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00201,0.00202,0.00204,0.00228,,,,,,,0.00204,0.00205,0.00207,0.00231,,,,,,,0.002,0.00201,0.00203,0.00227,,,,,,,0.00204,0.00205,0.00206,0.00228,,,,,,,0.00201,0.00202,0.00203,0.00226,,,,,,,0.00203,0.00203,0.00204,0.00227,,,,,,,0.002,0.002,0.00202,0.00225,,,,,,,0.00185,0.00185,0.00186,0.00207,,,,,,,0.0902,0.11755,0.17575,0.47272,,,,,,,0.08107,0.10586,0.16125,0.45355,,,,,,,0.08724,0.11822,0.18025,0.49628,,,,,,,0.09508,0.12933,0.19452,0.51235,,,,,,,0.06082,0.08748,0.14504,0.46043,,,,,,,0.0647,0.09256,0.15049,0.46114,,,,,,,0.05894,0.08349,0.13828,0.44515,,,,,,,0.07454,0.10311,0.16333,0.4808,,,,,,,0.05812,0.0819,0.13602,0.43913,, +Small SUV,E15,2030,,,,,,0.00077,0.00128,0.00181,0.00333,,,,,,,0.00071,0.00118,0.00165,0.00301,,,,,,,0.00075,0.00124,0.00175,0.00321,,,,,,,0.0008,0.00133,0.00187,0.00346,,,,,,,0.00054,0.00088,0.00121,0.00212,,,,,,,0.00058,0.00094,0.0013,0.00231,,,,,,,0.0005,0.00081,0.0011,0.00192,,,,,,,0.0006,0.00099,0.00138,0.00246,,,,,,,0.00047,0.00076,0.00104,0.0018,,,,,,,0.00817,0.00624,0.00605,0.00825,,,,,,,0.00704,0.00546,0.00536,0.0074,,,,,,,0.00762,0.0061,0.00599,0.00846,,,,,,,0.00858,0.00684,0.00669,0.00939,,,,,,,0.0041,0.00371,0.00386,0.00588,,,,,,,0.00475,0.00419,0.0043,0.00646,,,,,,,0.00393,0.00358,0.00375,0.00572,,,,,,,0.00552,0.00461,0.00464,0.00674,,,,,,,0.00396,0.00347,0.00359,0.00532,,,,,,,1.01096,1.48514,1.9055,2.83083,,,,,,,0.96248,1.43428,1.84919,2.76397,,,,,,,1.02638,1.59754,2.09654,3.24715,,,,,,,1.11805,1.74459,2.29296,3.53662,,,,,,,0.8264,1.39225,1.85226,2.91835,,,,,,,0.87552,1.46364,1.94975,3.08201,,,,,,,0.85317,1.43338,1.90441,2.9962,,,,,,,0.945,1.50815,1.97656,3.0563,,,,,,,0.81791,1.31527,1.71574,2.63365,,,,,,,269.5982,272.0849,276.19714,299.20659,,,,,,,271.5686,273.87519,277.69925,300.24733,,,,,,,275.47606,277.90493,281.93183,305.10027,,,,,,,269.39329,271.82346,275.86215,298.72625,,,,,,,275.42421,277.10159,279.91653,300.68076,,,,,,,271.23305,273.08524,276.1829,297.27847,,,,,,,273.39504,274.99885,277.70142,298.13726,,,,,,,273.58337,275.53222,278.7825,300.30712,,,,,,,269.27018,271.04618,273.98937,294.64918,,,,,,,0.00595,0.00665,0.00782,0.01018,,,,,,,0.00596,0.00666,0.00782,0.01017,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00583,0.00653,0.00768,0.01,,,,,,,0.00603,0.00673,0.00789,0.01024,,,,,,,0.0059,0.00659,0.00775,0.01007,,,,,,,0.00594,0.00665,0.00781,0.01016,,,,,,,0.006,0.00671,0.00788,0.01023,,,,,,,0.00605,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01876,0.02157,0.02736,0.02736,,,,,,,0.01876,0.02156,0.02735,0.02735,,,,,,,0.01867,0.02146,0.02722,0.02722,,,,,,,0.01874,0.02155,0.02733,0.02733,,,,,,,0.01868,0.02148,0.02724,0.02724,,,,,,,0.01873,0.02153,0.02731,0.02731,,,,,,,0.01877,0.02158,0.02737,0.02737,,,,,,,0.01881,0.02162,0.02743,0.02743,,,,,,,0.04553,0.06755,0.09295,0.14539,,,,,,,0.04368,0.06505,0.0899,0.14125,,,,,,,0.04417,0.06902,0.09503,0.15349,,,,,,,0.04675,0.07404,0.10183,0.16487,,,,,,,0.03498,0.05837,0.08215,0.13615,,,,,,,0.03837,0.06301,0.08806,0.14477,,,,,,,0.03587,0.05936,0.08356,0.1374,,,,,,,0.04242,0.06777,0.09424,0.15254,,,,,,,0.03716,0.05932,0.08311,0.13321,,,,,,,0.00155,0.00245,0.00325,0.00535,,,,,,,0.00149,0.00235,0.0031,0.00505,,,,,,,0.00152,0.0024,0.00317,0.00522,,,,,,,0.00156,0.00248,0.00328,0.00545,,,,,,,0.00134,0.00208,0.00268,0.00422,,,,,,,0.00136,0.00212,0.00275,0.00437,,,,,,,0.00128,0.00198,0.00254,0.00397,,,,,,,0.00138,0.00216,0.00282,0.0045,,,,,,,0.00123,0.00191,0.00246,0.00381,,,,,,,0.0442,0.0462,0.04803,0.05298,,,,,,,0.04545,0.04733,0.04903,0.05358,,,,,,,0.04955,0.0515,0.05327,0.05807,,,,,,,0.04141,0.04344,0.04531,0.05042,,,,,,,0.04823,0.0498,0.05112,0.05456,,,,,,,0.04399,0.04561,0.04701,0.05068,,,,,,,0.04403,0.0455,0.04673,0.04989,,,,,,,0.04635,0.04803,0.0495,0.05335,,,,,,,0.0458,0.04722,0.0484,0.05139,,,,,,,0.00827,0.01004,0.01166,0.01603,,,,,,,0.00832,0.00998,0.01148,0.01551,,,,,,,0.00889,0.01061,0.01219,0.01643,,,,,,,0.00795,0.00975,0.01141,0.01593,,,,,,,0.00835,0.00973,0.01091,0.01395,,,,,,,0.00786,0.0093,0.01054,0.01378,,,,,,,0.00771,0.00902,0.0101,0.0129,,,,,,,0.00821,0.0097,0.01099,0.0144,,,,,,,0.00786,0.00911,0.01016,0.01281,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00184,0.00186,0.00188,0.00204,,,,,,,0.00187,0.00188,0.00191,0.00207,,,,,,,0.00183,0.00184,0.00187,0.00203,,,,,,,0.00187,0.00188,0.0019,0.00204,,,,,,,0.00184,0.00185,0.00187,0.00202,,,,,,,0.00185,0.00186,0.00188,0.00202,,,,,,,0.00183,0.00184,0.00186,0.00201,,,,,,,0.00169,0.0017,0.00172,0.00185,,,,,,,0.08535,0.10912,0.16409,0.41674,,,,,,,0.07616,0.09743,0.14952,0.39681,,,,,,,0.08228,0.10896,0.16741,0.43357,,,,,,,0.08998,0.11956,0.18078,0.44773,,,,,,,0.05548,0.0777,0.13108,0.39244,,,,,,,0.0595,0.08288,0.13667,0.39452,,,,,,,0.05354,0.0737,0.12423,0.37695,,,,,,,0.06908,0.09346,0.14947,0.41486,,,,,,,0.05274,0.07256,0.12286,0.37552, +Small SUV,E15,2035,,,,,,,0.00077,0.00127,0.00181,0.00306,,,,,,,0.00071,0.00117,0.00165,0.00277,,,,,,,0.00075,0.00123,0.00175,0.00296,,,,,,,0.0008,0.00132,0.00188,0.00319,,,,,,,0.00054,0.00087,0.00121,0.00196,,,,,,,0.00057,0.00094,0.0013,0.00213,,,,,,,0.0005,0.0008,0.0011,0.00178,,,,,,,0.0006,0.00098,0.00138,0.00227,,,,,,,0.00047,0.00076,0.00104,0.00166,,,,,,,0.00814,0.00625,0.00605,0.00763,,,,,,,0.00702,0.00547,0.00535,0.00677,,,,,,,0.0076,0.00611,0.00598,0.00767,,,,,,,0.00856,0.00685,0.00668,0.00856,,,,,,,0.00409,0.00372,0.00386,0.00507,,,,,,,0.00474,0.0042,0.00429,0.00562,,,,,,,0.00392,0.00358,0.00374,0.00491,,,,,,,0.00551,0.00462,0.00463,0.00599,,,,,,,0.00395,0.00347,0.00359,0.00463,,,,,,,1.00827,1.48136,1.90637,2.57095,,,,,,,0.96,1.42993,1.8505,2.4948,,,,,,,1.02356,1.59198,2.0985,2.9105,,,,,,,1.11473,1.73644,2.29641,3.17715,,,,,,,0.82444,1.38577,1.85511,2.56501,,,,,,,0.87335,1.45698,1.95265,2.71712,,,,,,,0.85112,1.42624,1.90762,2.63519,,,,,,,0.94269,1.50316,1.9783,2.71728,,,,,,,0.81626,1.31318,1.71589,2.33089,,,,,,,269.51136,271.99405,276.18109,287.3431,,,,,,,271.48589,273.78452,277.68429,288.29897,,,,,,,275.38988,277.81231,281.91605,292.98124,,,,,,,269.3071,271.73283,275.84623,286.87843,,,,,,,275.35637,277.01217,279.90494,288.56819,,,,,,,271.16129,272.9964,276.17064,285.35007,,,,,,,273.32909,274.91027,277.69055,286.11666,,,,,,,273.50926,275.44215,278.76945,288.27332,,,,,,,269.20201,270.9587,273.97769,282.79607,,,,,,,0.00593,0.00665,0.00782,0.01018,,,,,,,0.00594,0.00665,0.00782,0.01016,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.00581,0.00652,0.00767,0.01,,,,,,,0.00601,0.00672,0.00789,0.01024,,,,,,,0.00588,0.00659,0.00774,0.01007,,,,,,,0.00593,0.00664,0.00781,0.01016,,,,,,,0.00598,0.0067,0.00787,0.01023,,,,,,,0.00603,0.00676,0.00794,0.01032,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01876,0.02156,0.02736,0.02736,,,,,,,0.01875,0.02155,0.02735,0.02735,,,,,,,0.01866,0.02144,0.02722,0.02722,,,,,,,0.01874,0.02153,0.02733,0.02733,,,,,,,0.01868,0.02146,0.02724,0.02724,,,,,,,0.01873,0.02152,0.02731,0.02731,,,,,,,0.01877,0.02156,0.02737,0.02737,,,,,,,0.01881,0.02161,0.02743,0.02743,,,,,,,0.04539,0.06732,0.093,0.12719,,,,,,,0.04354,0.06483,0.08994,0.12304,,,,,,,0.04403,0.06877,0.09508,0.1325,,,,,,,0.0466,0.07375,0.10191,0.14217,,,,,,,0.03488,0.05817,0.08218,0.1153,,,,,,,0.03826,0.06279,0.0881,0.12324,,,,,,,0.03577,0.05913,0.08362,0.11658,,,,,,,0.0423,0.06758,0.09426,0.13053,,,,,,,0.03707,0.0592,0.08309,0.11393,,,,,,,0.00155,0.00244,0.00325,0.00495,,,,,,,0.00149,0.00234,0.0031,0.00468,,,,,,,0.00152,0.00239,0.00318,0.00483,,,,,,,0.00156,0.00246,0.00329,0.00504,,,,,,,0.00133,0.00207,0.00269,0.00391,,,,,,,0.00135,0.00211,0.00275,0.00405,,,,,,,0.00127,0.00197,0.00255,0.00368,,,,,,,0.00138,0.00215,0.00282,0.00417,,,,,,,0.00123,0.00191,0.00246,0.00353,,,,,,,0.0442,0.04617,0.04804,0.05206,,,,,,,0.04544,0.04731,0.04904,0.05273,,,,,,,0.04954,0.05147,0.05329,0.05718,,,,,,,0.0414,0.0434,0.04533,0.04949,,,,,,,0.04822,0.04978,0.05113,0.05389,,,,,,,0.04398,0.04559,0.04702,0.04997,,,,,,,0.04402,0.04548,0.04674,0.04928,,,,,,,0.04635,0.04801,0.04951,0.05261,,,,,,,0.0458,0.04721,0.0484,0.05079,,,,,,,0.00827,0.01001,0.01167,0.01522,,,,,,,0.00831,0.00996,0.01149,0.01475,,,,,,,0.00889,0.01059,0.0122,0.01564,,,,,,,0.00795,0.00972,0.01142,0.01511,,,,,,,0.00834,0.00972,0.01092,0.01336,,,,,,,0.00786,0.00928,0.01055,0.01316,,,,,,,0.0077,0.00899,0.01011,0.01236,,,,,,,0.00821,0.00968,0.011,0.01375,,,,,,,0.00786,0.00911,0.01016,0.01227,,,,,,,0.00183,0.00184,0.00187,0.00195,,,,,,,0.00184,0.00186,0.00188,0.00195,,,,,,,0.00187,0.00188,0.00191,0.00199,,,,,,,0.00183,0.00184,0.00187,0.00194,,,,,,,0.00187,0.00188,0.0019,0.00196,,,,,,,0.00184,0.00185,0.00187,0.00193,,,,,,,0.00185,0.00186,0.00188,0.00194,,,,,,,0.00183,0.00184,0.00186,0.00193,,,,,,,0.00169,0.0017,0.00172,0.00177,,,,,,,0.08506,0.10909,0.16395,0.39675,,,,,,,0.07591,0.09738,0.1494,0.3765,,,,,,,0.08201,0.10895,0.16724,0.41071,,,,,,,0.08966,0.11943,0.18069,0.42419,,,,,,,0.05529,0.07751,0.13108,0.36767,,,,,,,0.0593,0.08272,0.13664,0.37013,,,,,,,0.05335,0.07347,0.12425,0.35215,,,,,,,0.0688,0.09306,0.14969,0.39082,,,,,,,0.05257,0.07245,0.12281,0.35259 +Small SUV,E15,2040,,,,,,,,0.00077,0.00128,0.00182,,,,,,,,0.00071,0.00117,0.00166,,,,,,,,0.00074,0.00124,0.00176,,,,,,,,0.00079,0.00132,0.00189,,,,,,,,0.00054,0.00088,0.00121,,,,,,,,0.00057,0.00094,0.00131,,,,,,,,0.00049,0.0008,0.00111,,,,,,,,0.0006,0.00099,0.00138,,,,,,,,0.00047,0.00076,0.00104,,,,,,,,0.00815,0.00624,0.00604,,,,,,,,0.00703,0.00546,0.00535,,,,,,,,0.00762,0.0061,0.00597,,,,,,,,0.00857,0.00684,0.00667,,,,,,,,0.00409,0.00371,0.00385,,,,,,,,0.00474,0.00419,0.00429,,,,,,,,0.00392,0.00358,0.00374,,,,,,,,0.00551,0.00461,0.00463,,,,,,,,0.00394,0.00347,0.00358,,,,,,,,1.0059,1.48211,1.90802,,,,,,,,0.95725,1.43101,1.85257,,,,,,,,1.02039,1.59357,2.10146,,,,,,,,1.11006,1.73915,2.30119,,,,,,,,0.82054,1.38802,1.85882,,,,,,,,0.86941,1.45927,1.95647,,,,,,,,0.84681,1.42878,1.91176,,,,,,,,0.93958,1.50458,1.98083,,,,,,,,0.81481,1.31336,1.71645,,,,,,,,269.41499,271.97422,276.17231,,,,,,,,271.38948,273.76527,277.67564,,,,,,,,275.29168,277.79257,281.90715,,,,,,,,269.21099,271.71322,275.83759,,,,,,,,275.26015,276.99518,279.89591,,,,,,,,271.06602,272.97883,276.16184,,,,,,,,273.23343,274.89379,277.68161,,,,,,,,273.41267,275.42428,278.76077,,,,,,,,269.10772,270.94171,273.96907,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00593,0.00665,0.00782,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.00581,0.00652,0.00767,,,,,,,,0.006,0.00672,0.00789,,,,,,,,0.00587,0.00658,0.00774,,,,,,,,0.00592,0.00664,0.00781,,,,,,,,0.00598,0.0067,0.00787,,,,,,,,0.00602,0.00675,0.00794,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01875,0.02156,0.02736,,,,,,,,0.01874,0.02155,0.02735,,,,,,,,0.01865,0.02145,0.02722,,,,,,,,0.01873,0.02153,0.02733,,,,,,,,0.01867,0.02146,0.02724,,,,,,,,0.01872,0.02152,0.02731,,,,,,,,0.01876,0.02157,0.02737,,,,,,,,0.01879,0.02161,0.02743,,,,,,,,0.04523,0.06735,0.09309,,,,,,,,0.0434,0.06486,0.09003,,,,,,,,0.04387,0.06881,0.09518,,,,,,,,0.04641,0.0738,0.10204,,,,,,,,0.03477,0.0582,0.08226,,,,,,,,0.03813,0.06282,0.08818,,,,,,,,0.03563,0.05917,0.08371,,,,,,,,0.04218,0.06759,0.09432,,,,,,,,0.037,0.05918,0.0831,,,,,,,,0.00154,0.00244,0.00326,,,,,,,,0.00148,0.00235,0.00311,,,,,,,,0.00151,0.00239,0.00319,,,,,,,,0.00155,0.00247,0.0033,,,,,,,,0.00133,0.00207,0.00269,,,,,,,,0.00135,0.00211,0.00276,,,,,,,,0.00127,0.00197,0.00255,,,,,,,,0.00137,0.00216,0.00283,,,,,,,,0.00123,0.00191,0.00246,,,,,,,,0.04418,0.04618,0.04806,,,,,,,,0.04543,0.04731,0.04905,,,,,,,,0.04953,0.05148,0.0533,,,,,,,,0.04137,0.04341,0.04535,,,,,,,,0.04821,0.04978,0.05114,,,,,,,,0.04397,0.0456,0.04703,,,,,,,,0.044,0.04549,0.04675,,,,,,,,0.04634,0.04802,0.04952,,,,,,,,0.04579,0.04721,0.04841,,,,,,,,0.00825,0.01002,0.01168,,,,,,,,0.00829,0.00996,0.0115,,,,,,,,0.00887,0.0106,0.01221,,,,,,,,0.00793,0.00973,0.01144,,,,,,,,0.00833,0.00972,0.01093,,,,,,,,0.00784,0.00928,0.01056,,,,,,,,0.00769,0.009,0.01012,,,,,,,,0.0082,0.00968,0.01101,,,,,,,,0.00785,0.00911,0.01016,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00184,0.00186,0.00188,,,,,,,,0.00187,0.00188,0.00191,,,,,,,,0.00183,0.00184,0.00187,,,,,,,,0.00187,0.00188,0.0019,,,,,,,,0.00184,0.00185,0.00187,,,,,,,,0.00185,0.00186,0.00188,,,,,,,,0.00183,0.00184,0.00186,,,,,,,,0.00169,0.0017,0.00172,,,,,,,,0.08507,0.10901,0.16393,,,,,,,,0.07589,0.09732,0.14939,,,,,,,,0.08203,0.10887,0.16722,,,,,,,,0.08961,0.1194,0.18077,,,,,,,,0.05518,0.07755,0.13122,,,,,,,,0.05922,0.08274,0.13676,,,,,,,,0.05323,0.07353,0.12441,,,,,,,,0.06856,0.09331,0.14991,,,,,,,,0.05252,0.07246,0.12287 +Small SUV,E15,2045,,,,,,,,,0.00077,0.00128,,,,,,,,,0.00071,0.00117,,,,,,,,,0.00074,0.00124,,,,,,,,,0.00079,0.00132,,,,,,,,,0.00054,0.00088,,,,,,,,,0.00057,0.00094,,,,,,,,,0.0005,0.00081,,,,,,,,,0.0006,0.00099,,,,,,,,,0.00047,0.00076,,,,,,,,,0.00814,0.00624,,,,,,,,,0.00702,0.00546,,,,,,,,,0.0076,0.00609,,,,,,,,,0.00856,0.00683,,,,,,,,,0.00408,0.00371,,,,,,,,,0.00474,0.00418,,,,,,,,,0.00391,0.00358,,,,,,,,,0.0055,0.00461,,,,,,,,,0.00394,0.00347,,,,,,,,,1.00632,1.48336,,,,,,,,,0.95789,1.43258,,,,,,,,,1.02116,1.59572,,,,,,,,,1.11145,1.74264,,,,,,,,,0.82184,1.39076,,,,,,,,,0.87069,1.46206,,,,,,,,,0.84829,1.43185,,,,,,,,,0.94041,1.50646,,,,,,,,,0.81497,1.31376,,,,,,,,,269.40495,271.97292,,,,,,,,,271.38003,273.76412,,,,,,,,,275.28172,277.79116,,,,,,,,,269.20123,271.71197,,,,,,,,,275.25249,276.99411,,,,,,,,,271.05778,272.97774,,,,,,,,,273.22644,274.89273,,,,,,,,,273.40433,275.42322,,,,,,,,,269.09989,270.94038,,,,,,,,,0.00592,0.00665,,,,,,,,,0.00593,0.00665,,,,,,,,,0.00603,0.00675,,,,,,,,,0.0058,0.00652,,,,,,,,,0.006,0.00672,,,,,,,,,0.00587,0.00658,,,,,,,,,0.00592,0.00664,,,,,,,,,0.00598,0.0067,,,,,,,,,0.00602,0.00675,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01875,0.02155,,,,,,,,,0.01874,0.02155,,,,,,,,,0.01865,0.02144,,,,,,,,,0.01873,0.02153,,,,,,,,,0.01867,0.02146,,,,,,,,,0.01872,0.02152,,,,,,,,,0.01876,0.02156,,,,,,,,,0.01879,0.02161,,,,,,,,,0.04526,0.06741,,,,,,,,,0.04342,0.06492,,,,,,,,,0.0439,0.06889,,,,,,,,,0.04646,0.0739,,,,,,,,,0.03479,0.05825,,,,,,,,,0.03815,0.06288,,,,,,,,,0.03566,0.05923,,,,,,,,,0.0422,0.06764,,,,,,,,,0.03699,0.05919,,,,,,,,,0.00154,0.00245,,,,,,,,,0.00149,0.00235,,,,,,,,,0.00151,0.0024,,,,,,,,,0.00155,0.00247,,,,,,,,,0.00133,0.00208,,,,,,,,,0.00135,0.00211,,,,,,,,,0.00127,0.00198,,,,,,,,,0.00138,0.00216,,,,,,,,,0.00123,0.00191,,,,,,,,,0.04418,0.04619,,,,,,,,,0.04543,0.04732,,,,,,,,,0.04953,0.05149,,,,,,,,,0.04138,0.04343,,,,,,,,,0.04821,0.04979,,,,,,,,,0.04397,0.0456,,,,,,,,,0.04401,0.0455,,,,,,,,,0.04634,0.04802,,,,,,,,,0.04579,0.04721,,,,,,,,,0.00826,0.01003,,,,,,,,,0.0083,0.00997,,,,,,,,,0.00888,0.01061,,,,,,,,,0.00793,0.00974,,,,,,,,,0.00833,0.00973,,,,,,,,,0.00785,0.00929,,,,,,,,,0.0077,0.00901,,,,,,,,,0.0082,0.00969,,,,,,,,,0.00785,0.00911,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00184,0.00186,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00187,0.00188,,,,,,,,,0.00184,0.00185,,,,,,,,,0.00185,0.00186,,,,,,,,,0.00183,0.00184,,,,,,,,,0.00169,0.0017,,,,,,,,,0.085,0.10896,,,,,,,,,0.07584,0.09728,,,,,,,,,0.08196,0.10881,,,,,,,,,0.08956,0.1194,,,,,,,,,0.05519,0.0776,,,,,,,,,0.05922,0.08277,,,,,,,,,0.05325,0.0736,,,,,,,,,0.0687,0.09338,,,,,,,,,0.05251,0.07246 +Small SUV,E15,2050,,,,,,,,,,0.00077,,,,,,,,,,0.00071,,,,,,,,,,0.00075,,,,,,,,,,0.00079,,,,,,,,,,0.00054,,,,,,,,,,0.00057,,,,,,,,,,0.0005,,,,,,,,,,0.0006,,,,,,,,,,0.00047,,,,,,,,,,0.00814,,,,,,,,,,0.00701,,,,,,,,,,0.00759,,,,,,,,,,0.00855,,,,,,,,,,0.00408,,,,,,,,,,0.00473,,,,,,,,,,0.00391,,,,,,,,,,0.0055,,,,,,,,,,0.00394,,,,,,,,,,1.00707,,,,,,,,,,0.95886,,,,,,,,,,1.02232,,,,,,,,,,1.11338,,,,,,,,,,0.82345,,,,,,,,,,0.8723,,,,,,,,,,0.85011,,,,,,,,,,0.94156,,,,,,,,,,0.81527,,,,,,,,,,269.4052,,,,,,,,,,271.38023,,,,,,,,,,275.28184,,,,,,,,,,269.20133,,,,,,,,,,275.2527,,,,,,,,,,271.05795,,,,,,,,,,273.22647,,,,,,,,,,273.40459,,,,,,,,,,269.10001,,,,,,,,,,0.00592,,,,,,,,,,0.00593,,,,,,,,,,0.00603,,,,,,,,,,0.0058,,,,,,,,,,0.006,,,,,,,,,,0.00587,,,,,,,,,,0.00592,,,,,,,,,,0.00598,,,,,,,,,,0.00602,,,,,,,,,,0.01873,,,,,,,,,,0.01875,,,,,,,,,,0.01874,,,,,,,,,,0.01865,,,,,,,,,,0.01873,,,,,,,,,,0.01867,,,,,,,,,,0.01872,,,,,,,,,,0.01876,,,,,,,,,,0.01879,,,,,,,,,,0.04531,,,,,,,,,,0.04347,,,,,,,,,,0.04396,,,,,,,,,,0.04653,,,,,,,,,,0.03482,,,,,,,,,,0.03819,,,,,,,,,,0.03571,,,,,,,,,,0.04223,,,,,,,,,,0.037,,,,,,,,,,0.00154,,,,,,,,,,0.00149,,,,,,,,,,0.00151,,,,,,,,,,0.00156,,,,,,,,,,0.00133,,,,,,,,,,0.00135,,,,,,,,,,0.00127,,,,,,,,,,0.00138,,,,,,,,,,0.00123,,,,,,,,,,0.04419,,,,,,,,,,0.04544,,,,,,,,,,0.04954,,,,,,,,,,0.04139,,,,,,,,,,0.04822,,,,,,,,,,0.04398,,,,,,,,,,0.04402,,,,,,,,,,0.04634,,,,,,,,,,0.04579,,,,,,,,,,0.00826,,,,,,,,,,0.0083,,,,,,,,,,0.00888,,,,,,,,,,0.00794,,,,,,,,,,0.00834,,,,,,,,,,0.00785,,,,,,,,,,0.0077,,,,,,,,,,0.0082,,,,,,,,,,0.00785,,,,,,,,,,0.00183,,,,,,,,,,0.00184,,,,,,,,,,0.00187,,,,,,,,,,0.00183,,,,,,,,,,0.00187,,,,,,,,,,0.00184,,,,,,,,,,0.00185,,,,,,,,,,0.00183,,,,,,,,,,0.00169,,,,,,,,,,0.08496,,,,,,,,,,0.07582,,,,,,,,,,0.08192,,,,,,,,,,0.08956,,,,,,,,,,0.05523,,,,,,,,,,0.05924,,,,,,,,,,0.0533,,,,,,,,,,0.06876,,,,,,,,,,0.05252 +Small SUV,E85,1990,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,E85,1995,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,E85,2000,,0.00889,0.01362,,,,,,,,,0.00762,0.01164,,,,,,,,,0.00855,0.01314,,,,,,,,,0.0095,0.01463,,,,,,,,,0.00425,0.00642,,,,,,,,,0.00503,0.00796,,,,,,,,,0.00408,0.00613,,,,,,,,,0.0059,0.00897,,,,,,,,,0.00412,0.00618,,,,,,,,,0.17182,0.18842,,,,,,,,,0.16552,0.18484,,,,,,,,,0.1961,0.21682,,,,,,,,,0.20436,0.2246,,,,,,,,,0.17747,0.19866,,,,,,,,,0.18693,0.20742,,,,,,,,,0.18041,0.19545,,,,,,,,,0.17838,0.19643,,,,,,,,,0.15699,0.17386,,,,,,,,,15.56429,19.64453,,,,,,,,,15.25543,19.51119,,,,,,,,,17.46805,22.20168,,,,,,,,,18.48392,23.3484,,,,,,,,,16.56157,21.15178,,,,,,,,,17.20629,21.99701,,,,,,,,,17.22871,21.38882,,,,,,,,,16.43062,20.75712,,,,,,,,,14.21839,18.05726,,,,,,,,,522.00035,529.80963,,,,,,,,,526.0408,533.28548,,,,,,,,,533.75577,541.37839,,,,,,,,,521.323,528.94694,,,,,,,,,534.22176,539.49484,,,,,,,,,525.64348,533.28176,,,,,,,,,530.01657,535.05893,,,,,,,,,530.2981,536.42231,,,,,,,,,522.28412,527.88262,,,,,,,,,0.04692,0.05603,,,,,,,,,0.04705,0.05612,,,,,,,,,0.04796,0.05706,,,,,,,,,0.0459,0.05489,,,,,,,,,0.04771,0.05679,,,,,,,,,0.04654,0.05557,,,,,,,,,0.04691,0.05599,,,,,,,,,0.04745,0.05656,,,,,,,,,0.04777,0.05698,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08204,0.08205,,,,,,,,,0.08202,0.08202,,,,,,,,,0.0816,0.0816,,,,,,,,,0.08195,0.08195,,,,,,,,,0.08168,0.08168,,,,,,,,,0.08189,0.0819,,,,,,,,,0.08207,0.08208,,,,,,,,,0.08225,0.08226,,,,,,,,,2.04777,2.49274,,,,,,,,,2.02209,2.4919,,,,,,,,,2.26042,2.76094,,,,,,,,,2.34025,2.84613,,,,,,,,,2.20559,2.7158,,,,,,,,,2.26855,2.76316,,,,,,,,,2.24616,2.69524,,,,,,,,,2.33326,2.81716,,,,,,,,,2.09487,2.54811,,,,,,,,,0.01893,0.0268,,,,,,,,,0.01655,0.02337,,,,,,,,,0.01794,0.02545,,,,,,,,,0.01963,0.02791,,,,,,,,,0.00992,0.01387,,,,,,,,,0.01141,0.01662,,,,,,,,,0.00975,0.01359,,,,,,,,,0.01316,0.01851,,,,,,,,,0.01,0.01392,,,,,,,,,0.08133,0.09903,,,,,,,,,0.07751,0.09277,,,,,,,,,0.08476,0.10171,,,,,,,,,0.08022,0.09898,,,,,,,,,0.06632,0.07501,,,,,,,,,0.06525,0.07698,,,,,,,,,0.0618,0.07021,,,,,,,,,0.07134,0.08323,,,,,,,,,0.06415,0.07268,,,,,,,,,0.04113,0.05679,,,,,,,,,0.03669,0.05018,,,,,,,,,0.04004,0.05504,,,,,,,,,0.04231,0.0589,,,,,,,,,0.02436,0.03204,,,,,,,,,0.02669,0.03692,,,,,,,,,0.02345,0.03088,,,,,,,,,0.03032,0.04085,,,,,,,,,0.0241,0.03165,,,,,,,,,0.01709,0.0153,,,,,,,,,0.01722,0.0154,,,,,,,,,0.01747,0.01563,,,,,,,,,0.01707,0.01527,,,,,,,,,0.01749,0.01558,,,,,,,,,0.01721,0.0154,,,,,,,,,0.01736,0.01545,,,,,,,,,0.01736,0.01549,,,,,,,,,0.0171,0.01524,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,,,,0,0,,,,,,, +Small SUV,E85,2005,,0.00381,0.00566,0.01003,,,,,,,,0.00332,0.00491,0.00864,,,,,,,,0.0037,0.00551,0.00974,,,,,,,,0.00405,0.00605,0.01077,,,,,,,,0.00201,0.00295,0.005,,,,,,,,0.0023,0.00352,0.00582,,,,,,,,0.00194,0.00283,0.00478,,,,,,,,0.00265,0.00391,0.00677,,,,,,,,0.00196,0.00286,0.00481,,,,,,,,0.07179,0.06124,0.07902,,,,,,,,0.06595,0.05817,0.07554,,,,,,,,0.07806,0.06843,0.0921,,,,,,,,0.08217,0.07195,0.09618,,,,,,,,0.05837,0.05494,0.07668,,,,,,,,0.06404,0.05964,0.08189,,,,,,,,0.05849,0.05378,0.07482,,,,,,,,0.06453,0.05775,0.07821,,,,,,,,0.05212,0.04792,0.06436,,,,,,,,6.13917,7.94899,11.7889,,,,,,,,6.00238,7.96301,11.75002,,,,,,,,6.74365,9.11337,13.75788,,,,,,,,7.08738,9.59407,14.42737,,,,,,,,6.59948,9.04772,13.39198,,,,,,,,6.73061,9.2748,13.71001,,,,,,,,6.87116,9.18305,13.52869,,,,,,,,6.54762,8.7146,12.8947,,,,,,,,5.83646,7.71253,11.19115,,,,,,,,541.28764,547.15975,553.84105,,,,,,,,545.81402,551.26886,557.22268,,,,,,,,553.3612,559.0968,565.53617,,,,,,,,540.86207,546.6028,553.06829,,,,,,,,555.47426,559.47197,562.90946,,,,,,,,546.40218,552.63369,554.9548,,,,,,,,551.4876,555.318,558.46236,,,,,,,,550.94283,555.57008,560.08848,,,,,,,,542.94525,547.17212,551.00402,,,,,,,,0.00964,0.01141,0.02192,,,,,,,,0.00965,0.01141,0.02191,,,,,,,,0.0098,0.01157,0.0222,,,,,,,,0.00945,0.0112,0.02152,,,,,,,,0.00976,0.01152,0.02211,,,,,,,,0.00955,0.0113,0.0217,,,,,,,,0.00963,0.0114,0.02189,,,,,,,,0.00972,0.01149,0.02207,,,,,,,,0.0098,0.01159,0.02225,,,,,,,,0.02682,0.03359,0.03979,,,,,,,,0.02685,0.03363,0.03984,,,,,,,,0.02685,0.03362,0.03983,,,,,,,,0.02671,0.03345,0.03962,,,,,,,,0.02683,0.03359,0.03979,,,,,,,,0.02674,0.03348,0.03966,,,,,,,,0.0268,0.03357,0.03976,,,,,,,,0.02686,0.03364,0.03985,,,,,,,,0.02692,0.03372,0.03994,,,,,,,,0.87815,1.17316,1.22709,,,,,,,,0.85445,1.16929,1.22046,,,,,,,,0.96182,1.29403,1.3789,,,,,,,,1.00781,1.3525,1.43637,,,,,,,,0.92802,1.26295,1.35107,,,,,,,,0.96398,1.29661,1.38038,,,,,,,,0.95272,1.2626,1.33827,,,,,,,,0.99878,1.32895,1.38996,,,,,,,,0.89553,1.19789,1.24233,,,,,,,,0.0082,0.01119,0.01829,,,,,,,,0.00733,0.00999,0.01617,,,,,,,,0.00791,0.01081,0.01761,,,,,,,,0.00844,0.01157,0.01904,,,,,,,,0.0049,0.00669,0.01039,,,,,,,,0.00542,0.0076,0.01165,,,,,,,,0.00482,0.00656,0.01016,,,,,,,,0.00608,0.0083,0.01321,,,,,,,,0.00493,0.00671,0.01038,,,,,,,,0.05834,0.06511,0.08105,,,,,,,,0.0578,0.06379,0.07759,,,,,,,,0.06317,0.06976,0.08507,,,,,,,,0.05612,0.06326,0.08015,,,,,,,,0.05567,0.05957,0.06767,,,,,,,,0.0525,0.05751,0.06625,,,,,,,,0.05139,0.05518,0.06302,,,,,,,,0.05626,0.06118,0.07206,,,,,,,,0.05349,0.05733,0.06528,,,,,,,,0.02078,0.02678,0.04088,,,,,,,,0.01925,0.02455,0.03676,,,,,,,,0.02094,0.02677,0.04032,,,,,,,,0.02098,0.0273,0.04224,,,,,,,,0.01493,0.01838,0.02555,,,,,,,,0.0154,0.01969,0.02756,,,,,,,,0.01423,0.01758,0.02452,,,,,,,,0.01698,0.02133,0.03096,,,,,,,,0.01467,0.01807,0.0251,,,,,,,,0.01772,0.0158,0.00533,,,,,,,,0.01787,0.01592,0.00536,,,,,,,,0.01812,0.01614,0.00544,,,,,,,,0.01771,0.01578,0.00532,,,,,,,,0.01819,0.01616,0.00542,,,,,,,,0.01789,0.01596,0.00534,,,,,,,,0.01806,0.01604,0.00538,,,,,,,,0.01804,0.01604,0.00539,,,,,,,,0.01778,0.0158,0.0053,,,,,,,,0.38302,0.53409,0.53378,,,,,,,,0.34598,0.49556,0.49307,,,,,,,,0.4063,0.5797,0.57353,,,,,,,,0.42986,0.61198,0.60315,,,,,,,,0.27049,0.41786,0.40359,,,,,,,,0.30479,0.46728,0.44486,,,,,,,,0.26659,0.40431,0.38966,,,,,,,,0.31696,0.4642,0.45459,,,,,,,,0.24114,0.36571,0.35375,,,,,, +Small SUV,E85,2010,,0.00157,0.00293,0.0043,0.00842,,,,,,,0.00139,0.00259,0.00378,0.00731,,,,,,,0.00154,0.00288,0.00422,0.00823,,,,,,,0.00168,0.00314,0.00461,0.00908,,,,,,,0.00094,0.0017,0.00243,0.00444,,,,,,,0.00104,0.00195,0.00273,0.00509,,,,,,,0.00091,0.00164,0.00234,0.00425,,,,,,,0.00116,0.00213,0.00309,0.00584,,,,,,,0.00091,0.00165,0.00235,0.00426,,,,,,,0.04677,0.03341,0.02525,0.04146,,,,,,,0.04078,0.03037,0.0232,0.03883,,,,,,,0.04576,0.03578,0.02739,0.0474,,,,,,,0.05084,0.03955,0.03015,0.0508,,,,,,,0.02739,0.02593,0.02064,0.03769,,,,,,,0.03061,0.02873,0.02232,0.04061,,,,,,,0.02681,0.02555,0.02035,0.03688,,,,,,,0.03422,0.02892,0.02244,0.03933,,,,,,,0.02633,0.02357,0.0184,0.0319,,,,,,,2.48402,4.13531,5.57241,8.35138,,,,,,,2.36287,4.08881,5.53815,8.29793,,,,,,,2.48601,4.53252,6.29261,9.75727,,,,,,,2.65742,4.85325,6.75248,10.37233,,,,,,,2.1873,4.32278,6.05932,9.39725,,,,,,,2.2577,4.48457,6.22185,9.69001,,,,,,,2.2801,4.44872,6.21174,9.55128,,,,,,,2.32776,4.32552,5.95406,9.09815,,,,,,,2.04634,3.82493,5.1993,7.82291,,,,,,,503.37632,505.52289,510.00057,526.6621,,,,,,,507.81169,509.68579,513.71689,529.7204,,,,,,,514.74553,516.76509,521.07248,537.67387,,,,,,,503.0749,505.11949,509.47302,525.93084,,,,,,,517.55169,518.49154,520.98227,534.60527,,,,,,,508.87992,511.76392,513.02939,527.23535,,,,,,,513.91733,514.75634,517.08453,530.37056,,,,,,,513.009,514.35323,517.50963,532.15477,,,,,,,505.66937,506.82205,509.56751,523.37215,,,,,,,0.00856,0.00964,0.01155,0.01657,,,,,,,0.00858,0.00964,0.01155,0.01656,,,,,,,0.00872,0.00979,0.0117,0.01675,,,,,,,0.00839,0.00945,0.01133,0.01628,,,,,,,0.00868,0.00975,0.01165,0.01669,,,,,,,0.00849,0.00955,0.01143,0.0164,,,,,,,0.00856,0.00963,0.01153,0.01654,,,,,,,0.00864,0.00972,0.01163,0.01667,,,,,,,0.00871,0.00979,0.01172,0.01681,,,,,,,0.0178,0.02043,0.02664,0.02952,,,,,,,0.01782,0.02045,0.02667,0.02956,,,,,,,0.01781,0.02045,0.02667,0.02955,,,,,,,0.01772,0.02034,0.02653,0.0294,,,,,,,0.0178,0.02043,0.02664,0.02953,,,,,,,0.01774,0.02036,0.02656,0.02943,,,,,,,0.01778,0.02042,0.02662,0.0295,,,,,,,0.01782,0.02046,0.02668,0.02957,,,,,,,0.01786,0.02051,0.02674,0.02963,,,,,,,0.14412,0.25143,0.2523,0.54084,,,,,,,0.13897,0.24912,0.24964,0.53582,,,,,,,0.14195,0.27426,0.27285,0.61142,,,,,,,0.14691,0.29104,0.28735,0.64298,,,,,,,0.13051,0.26103,0.25883,0.59243,,,,,,,0.1362,0.27206,0.26868,0.6098,,,,,,,0.13464,0.26302,0.26017,0.58725,,,,,,,0.14695,0.28088,0.27486,0.6102,,,,,,,0.13569,0.25266,0.24723,0.53862,,,,,,,0.00281,0.00499,0.00696,0.01332,,,,,,,0.00263,0.00464,0.00644,0.01203,,,,,,,0.00276,0.0049,0.00683,0.01298,,,,,,,0.00288,0.00514,0.00719,0.01389,,,,,,,0.00217,0.00376,0.00511,0.00864,,,,,,,0.00226,0.00398,0.00537,0.00935,,,,,,,0.00216,0.00373,0.00505,0.00848,,,,,,,0.0024,0.0042,0.00577,0.0103,,,,,,,0.0022,0.0038,0.00514,0.00863,,,,,,,0.04708,0.05203,0.05658,0.07114,,,,,,,0.04801,0.05252,0.05662,0.06934,,,,,,,0.0524,0.05725,0.06171,0.07583,,,,,,,0.04445,0.04961,0.05442,0.06985,,,,,,,0.05003,0.05343,0.05635,0.06418,,,,,,,0.04594,0.0499,0.05275,0.06166,,,,,,,0.04591,0.04925,0.05211,0.05967,,,,,,,0.04861,0.05256,0.05605,0.06627,,,,,,,0.04786,0.05126,0.05415,0.06181,,,,,,,0.01083,0.01521,0.01923,0.03211,,,,,,,0.01059,0.01458,0.0182,0.02945,,,,,,,0.01141,0.0157,0.01965,0.03214,,,,,,,0.01066,0.01523,0.01948,0.03313,,,,,,,0.00994,0.01295,0.01554,0.02246,,,,,,,0.0096,0.01296,0.01562,0.02351,,,,,,,0.00938,0.01234,0.01487,0.02156,,,,,,,0.01021,0.0137,0.0168,0.02583,,,,,,,0.00969,0.01269,0.01525,0.02202,,,,,,,0.01648,0.0146,0.00491,0.00507,,,,,,,0.01663,0.01472,0.00494,0.0051,,,,,,,0.01685,0.01492,0.00502,0.00518,,,,,,,0.01647,0.01459,0.0049,0.00506,,,,,,,0.01695,0.01497,0.00501,0.00515,,,,,,,0.01666,0.01478,0.00494,0.00507,,,,,,,0.01683,0.01486,0.00498,0.0051,,,,,,,0.0168,0.01485,0.00498,0.00512,,,,,,,0.01656,0.01463,0.0049,0.00504,,,,,,,0.11742,0.17662,0.24186,0.39286,,,,,,,0.09965,0.156,0.21736,0.35775,,,,,,,0.11503,0.18533,0.25819,0.43064,,,,,,,0.12917,0.20575,0.28443,0.46568,,,,,,,0.05916,0.11853,0.178,0.30557,,,,,,,0.06856,0.13478,0.19456,0.33502,,,,,,,0.05633,0.11428,0.17251,0.29534,,,,,,,0.07938,0.1398,0.20126,0.33851,,,,,,,0.05576,0.1072,0.15856,0.26295,,,,, +Small SUV,E85,2015,,,0.00141,0.00239,0.00367,0.00664,,,,,,,0.00127,0.00216,0.0033,0.00589,,,,,,,0.00138,0.00235,0.00361,0.00652,,,,,,,0.00147,0.00251,0.00387,0.00705,,,,,,,0.00092,0.00154,0.0023,0.00388,,,,,,,0.00102,0.00168,0.00253,0.00435,,,,,,,0.0009,0.0015,0.00224,0.00375,,,,,,,0.00109,0.00185,0.00279,0.00487,,,,,,,0.0009,0.00151,0.00225,0.00376,,,,,,,0.03538,0.02367,0.02172,0.02701,,,,,,,0.03242,0.02203,0.02057,0.02554,,,,,,,0.03515,0.02568,0.024,0.03032,,,,,,,0.03789,0.02782,0.02594,0.03257,,,,,,,0.02437,0.01981,0.01978,0.02484,,,,,,,0.02708,0.02137,0.02112,0.02659,,,,,,,0.02413,0.01957,0.01966,0.02456,,,,,,,0.02853,0.02152,0.02073,0.02588,,,,,,,0.02369,0.01806,0.0177,0.02171,,,,,,,2.13169,3.74457,5.0528,6.75332,,,,,,,2.12265,3.75641,5.09675,6.78849,,,,,,,2.18773,4.145,5.76744,7.82434,,,,,,,2.33334,4.43013,6.17996,8.33276,,,,,,,2.08632,4.12988,5.79657,7.77338,,,,,,,2.1456,4.20033,5.91149,7.9667,,,,,,,2.17473,4.26746,5.96788,7.96629,,,,,,,2.14407,4.06208,5.60335,7.48997,,,,,,,1.95427,3.65931,4.98153,6.57429,,,,,,,412.344,414.70276,418.56776,441.66463,,,,,,,415.79979,417.88112,421.35861,443.98649,,,,,,,421.55253,423.79446,427.51198,450.7607,,,,,,,412.07344,414.34442,418.10457,441.03181,,,,,,,423.18613,424.31306,426.45163,447.2682,,,,,,,417.65139,417.68612,420.21494,441.36502,,,,,,,420.18245,421.208,423.20687,443.68097,,,,,,,419.72533,421.26454,423.98187,445.56987,,,,,,,413.56135,414.87262,417.22932,437.97869,,,,,,,0.00566,0.00649,0.0077,0.01074,,,,,,,0.00567,0.00649,0.00769,0.01073,,,,,,,0.00576,0.00659,0.00779,0.01085,,,,,,,0.00555,0.00636,0.00755,0.01055,,,,,,,0.00573,0.00656,0.00776,0.01081,,,,,,,0.00561,0.00643,0.00762,0.01063,,,,,,,0.00566,0.00648,0.00768,0.01072,,,,,,,0.00571,0.00654,0.00775,0.0108,,,,,,,0.00576,0.00659,0.00781,0.01089,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01782,0.02074,0.02668,0.02703,,,,,,,0.01782,0.02073,0.02668,0.02703,,,,,,,0.01773,0.02062,0.02654,0.02689,,,,,,,0.0178,0.02071,0.02665,0.027,,,,,,,0.01774,0.02065,0.02656,0.02691,,,,,,,0.01779,0.0207,0.02663,0.02698,,,,,,,0.01783,0.02074,0.02669,0.02704,,,,,,,0.01787,0.02079,0.02675,0.0271,,,,,,,0.12799,0.15738,0.22971,0.32717,,,,,,,0.12747,0.15532,0.22734,0.32372,,,,,,,0.12888,0.17053,0.24791,0.35916,,,,,,,0.13446,0.18032,0.26185,0.37872,,,,,,,0.11817,0.159,0.23392,0.34165,,,,,,,0.12402,0.16614,0.24361,0.35441,,,,,,,0.12107,0.15993,0.23561,0.34185,,,,,,,0.13274,0.17114,0.24941,0.35856,,,,,,,0.12271,0.1535,0.22395,0.31926,,,,,,,0.00269,0.00442,0.00636,0.01048,,,,,,,0.00256,0.00419,0.00599,0.0097,,,,,,,0.00264,0.00435,0.00625,0.01028,,,,,,,0.00272,0.00449,0.00648,0.01079,,,,,,,0.00219,0.00356,0.00498,0.00764,,,,,,,0.00228,0.00367,0.00517,0.00806,,,,,,,0.00219,0.00355,0.00496,0.00756,,,,,,,0.00238,0.00388,0.00549,0.00866,,,,,,,0.00223,0.00362,0.00504,0.00768,,,,,,,0.04672,0.05055,0.055,0.06468,,,,,,,0.04777,0.05134,0.05543,0.06409,,,,,,,0.05205,0.05581,0.06018,0.06966,,,,,,,0.04399,0.04791,0.05252,0.06274,,,,,,,0.05004,0.05291,0.05601,0.06196,,,,,,,0.04615,0.04891,0.05224,0.05879,,,,,,,0.04594,0.04879,0.05185,0.05764,,,,,,,0.0485,0.05171,0.05531,0.06258,,,,,,,0.0479,0.05079,0.05388,0.05973,,,,,,,0.01051,0.01389,0.01783,0.0264,,,,,,,0.01038,0.01353,0.01715,0.02481,,,,,,,0.01111,0.01443,0.0183,0.02669,,,,,,,0.01025,0.01372,0.0178,0.02684,,,,,,,0.00995,0.01249,0.01524,0.0205,,,,,,,0.00964,0.01223,0.01517,0.02096,,,,,,,0.00941,0.01193,0.01464,0.01976,,,,,,,0.01011,0.01296,0.01614,0.02258,,,,,,,0.00972,0.01228,0.01502,0.02019,,,,,,,0.01191,0.00399,0.00403,0.00425,,,,,,,0.01201,0.00402,0.00406,0.00427,,,,,,,0.01217,0.00408,0.00411,0.00434,,,,,,,0.0119,0.00399,0.00402,0.00425,,,,,,,0.01222,0.00408,0.0041,0.00431,,,,,,,0.01206,0.00402,0.00404,0.00425,,,,,,,0.01213,0.00405,0.00407,0.00427,,,,,,,0.01212,0.00405,0.00408,0.00429,,,,,,,0.01194,0.00399,0.00402,0.00422,,,,,,,0.08849,0.13162,0.20089,0.29689,,,,,,,0.07873,0.12001,0.18688,0.27577,,,,,,,0.08784,0.1405,0.21883,0.32746,,,,,,,0.0954,0.1519,0.2354,0.35136,,,,,,,0.05314,0.0994,0.16827,0.25105,,,,,,,0.06137,0.10849,0.18083,0.2705,,,,,,,0.05142,0.09657,0.16468,0.24498,,,,,,,0.06597,0.11212,0.18154,0.26946,,,,,,,0.05075,0.09035,0.15066,0.22011,,,, +Small SUV,E85,2020,,,,0.00117,0.00201,0.00284,0.00569,,,,,,,0.00107,0.00182,0.00257,0.00508,,,,,,,0.00116,0.00197,0.0028,0.0056,,,,,,,0.00122,0.0021,0.00298,0.00602,,,,,,,0.00079,0.00131,0.00181,0.00342,,,,,,,0.00085,0.00143,0.00198,0.00381,,,,,,,0.00077,0.00128,0.00176,0.00331,,,,,,,0.00093,0.00156,0.00218,0.00423,,,,,,,0.00078,0.00129,0.00177,0.00332,,,,,,,0.02708,0.01959,0.01667,0.02125,,,,,,,0.02434,0.01802,0.01557,0.01997,,,,,,,0.02691,0.02103,0.01818,0.02405,,,,,,,0.0292,0.02288,0.01974,0.02596,,,,,,,0.01683,0.01529,0.0141,0.01921,,,,,,,0.01885,0.01675,0.01527,0.02076,,,,,,,0.01646,0.01506,0.01397,0.01898,,,,,,,0.02065,0.01708,0.0152,0.02017,,,,,,,0.01612,0.01387,0.01259,0.01655,,,,,,,1.682,2.53829,3.20349,4.91615,,,,,,,1.6647,2.52474,3.19782,4.92705,,,,,,,1.73294,2.78767,3.61266,5.81664,,,,,,,1.85534,2.99681,3.90054,6.23831,,,,,,,1.61663,2.70499,3.52399,5.70223,,,,,,,1.6534,2.77036,3.62345,5.89859,,,,,,,1.67995,2.79711,3.635,5.84319,,,,,,,1.67187,2.69125,3.45677,5.48578,,,,,,,1.50669,2.40006,3.04139,4.72865,,,,,,,350.03874,352.37195,356.26115,387.01815,,,,,,,352.82186,354.92481,358.47761,388.79932,,,,,,,357.77838,360.02216,363.79343,394.85707,,,,,,,349.79286,352.05372,355.85259,386.43617,,,,,,,358.58441,359.89335,362.2772,390.82394,,,,,,,352.8901,354.42784,357.14757,385.93446,,,,,,,356.00279,357.22444,359.48306,387.62842,,,,,,,355.86684,357.51895,360.40739,389.70566,,,,,,,350.49123,351.94468,354.50405,382.81585,,,,,,,0.00578,0.00654,0.0077,0.01014,,,,,,,0.00579,0.00654,0.00769,0.01012,,,,,,,0.00588,0.00664,0.00779,0.01023,,,,,,,0.00567,0.00641,0.00755,0.00996,,,,,,,0.00585,0.00661,0.00776,0.0102,,,,,,,0.00573,0.00648,0.00762,0.01003,,,,,,,0.00578,0.00653,0.00768,0.01012,,,,,,,0.00583,0.00659,0.00775,0.01019,,,,,,,0.00588,0.00664,0.00781,0.01028,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01782,0.02074,0.02668,0.02668,,,,,,,0.01782,0.02074,0.02667,0.02667,,,,,,,0.01773,0.02063,0.02654,0.02654,,,,,,,0.0178,0.02072,0.02665,0.02665,,,,,,,0.01774,0.02065,0.02656,0.02656,,,,,,,0.01779,0.0207,0.02663,0.02663,,,,,,,0.01783,0.02075,0.02669,0.02669,,,,,,,0.01787,0.02079,0.02675,0.02675,,,,,,,0.08368,0.13491,0.18134,0.25222,,,,,,,0.08263,0.13289,0.17901,0.24905,,,,,,,0.08438,0.14553,0.19463,0.27745,,,,,,,0.08799,0.15466,0.20669,0.29466,,,,,,,0.07463,0.1341,0.18091,0.26017,,,,,,,0.07891,0.14107,0.18989,0.27209,,,,,,,0.07615,0.13536,0.18293,0.26089,,,,,,,0.08433,0.14571,0.19519,0.27522,,,,,,,0.07672,0.12975,0.17393,0.24217,,,,,,,0.00231,0.00374,0.00497,0.00889,,,,,,,0.0022,0.00355,0.00469,0.00828,,,,,,,0.00227,0.00368,0.00488,0.00873,,,,,,,0.00233,0.00379,0.00505,0.00912,,,,,,,0.00191,0.00304,0.00393,0.00663,,,,,,,0.00196,0.00313,0.00407,0.00697,,,,,,,0.00191,0.00303,0.00391,0.00657,,,,,,,0.00206,0.0033,0.00431,0.00745,,,,,,,0.00195,0.00309,0.00398,0.00667,,,,,,,0.04585,0.04904,0.05187,0.06112,,,,,,,0.04697,0.04995,0.05255,0.06093,,,,,,,0.05119,0.05433,0.05712,0.0662,,,,,,,0.04308,0.04634,0.04929,0.05897,,,,,,,0.04943,0.05182,0.05378,0.05983,,,,,,,0.04525,0.04777,0.04987,0.05645,,,,,,,0.04534,0.04771,0.04964,0.05556,,,,,,,0.04779,0.05047,0.05275,0.05995,,,,,,,0.04729,0.04969,0.05164,0.05762,,,,,,,0.00974,0.01256,0.01507,0.02325,,,,,,,0.00967,0.0123,0.01461,0.02202,,,,,,,0.01035,0.01312,0.01559,0.02363,,,,,,,0.00945,0.01234,0.01494,0.02351,,,,,,,0.00941,0.01153,0.01326,0.01862,,,,,,,0.00899,0.01122,0.01307,0.01889,,,,,,,0.00888,0.01098,0.01268,0.01792,,,,,,,0.00949,0.01186,0.01388,0.02025,,,,,,,0.00918,0.01131,0.01303,0.01832,,,,,,,0.00337,0.00339,0.00343,0.00373,,,,,,,0.0034,0.00342,0.00345,0.00374,,,,,,,0.00344,0.00347,0.0035,0.0038,,,,,,,0.00337,0.00339,0.00343,0.00372,,,,,,,0.00345,0.00346,0.00349,0.00376,,,,,,,0.0034,0.00341,0.00344,0.00371,,,,,,,0.00343,0.00344,0.00346,0.00373,,,,,,,0.00343,0.00344,0.00347,0.00375,,,,,,,0.00337,0.00339,0.00341,0.00368,,,,,,,0.07474,0.11011,0.15534,0.24174,,,,,,,0.06586,0.09917,0.14201,0.22324,,,,,,,0.07431,0.11612,0.16637,0.26926,,,,,,,0.08098,0.12618,0.1802,0.29019,,,,,,,0.04207,0.07663,0.11773,0.20104,,,,,,,0.04828,0.08527,0.12915,0.21879,,,,,,,0.04037,0.07416,0.1147,0.19564,,,,,,,0.05397,0.0895,0.1323,0.21745,,,,,,,0.03965,0.06933,0.10518,0.1731,,, +Small SUV,E85,2025,,,,,0.00076,0.00125,0.00177,0.00411,,,,,,,0.00069,0.00114,0.0016,0.00368,,,,,,,0.00074,0.00123,0.00174,0.00404,,,,,,,0.00079,0.00131,0.00185,0.00434,,,,,,,0.00051,0.00082,0.00113,0.00249,,,,,,,0.00055,0.00089,0.00123,0.00277,,,,,,,0.0005,0.0008,0.0011,0.00241,,,,,,,0.0006,0.00098,0.00136,0.00307,,,,,,,0.0005,0.00081,0.0011,0.00242,,,,,,,0.02181,0.01428,0.01154,0.01617,,,,,,,0.01898,0.01268,0.0104,0.01491,,,,,,,0.02153,0.01488,0.01221,0.0181,,,,,,,0.0237,0.01636,0.01338,0.01966,,,,,,,0.01125,0.00907,0.00807,0.01334,,,,,,,0.01325,0.01035,0.00904,0.01468,,,,,,,0.01077,0.00878,0.00787,0.01307,,,,,,,0.01509,0.01105,0.00939,0.0145,,,,,,,0.01052,0.00816,0.00717,0.01136,,,,,,,1.11848,1.63456,2.07341,3.47973,,,,,,,1.08011,1.5941,2.0316,3.45027,,,,,,,1.1377,1.76698,2.29902,4.10409,,,,,,,1.22936,1.91603,2.5011,4.42994,,,,,,,0.96919,1.60423,2.11117,3.89127,,,,,,,1.01105,1.66752,2.19965,4.06233,,,,,,,1.00241,1.65574,2.17434,3.98326,,,,,,,1.04115,1.64309,2.1268,3.78999,,,,,,,0.90445,1.42735,1.82691,3.20995,,,,,,,286.08159,287.4676,290.315,327.20839,,,,,,,288.21594,289.40008,291.94332,328.4659,,,,,,,292.33585,293.63208,296.36204,333.70843,,,,,,,285.86614,287.19248,289.96371,326.69096,,,,,,,292.45538,292.9487,294.44054,329.34367,,,,,,,287.95805,288.65799,290.45978,325.48771,,,,,,,290.316,290.73992,292.12654,326.5909,,,,,,,290.4387,291.23099,293.17732,328.76083,,,,,,,285.91149,286.53967,288.19674,322.69894,,,,,,,0.00582,0.00653,0.00767,0.01003,,,,,,,0.00583,0.00654,0.00767,0.01002,,,,,,,0.00592,0.00663,0.00777,0.01013,,,,,,,0.0057,0.00641,0.00753,0.00986,,,,,,,0.00589,0.0066,0.00774,0.01009,,,,,,,0.00577,0.00647,0.00759,0.00992,,,,,,,0.00581,0.00652,0.00766,0.01001,,,,,,,0.00587,0.00658,0.00772,0.01008,,,,,,,0.00592,0.00664,0.00779,0.01017,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02071,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02068,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02077,0.02675,0.02675,,,,,,,0.0518,0.07754,0.10371,0.17615,,,,,,,0.05039,0.07547,0.10122,0.17289,,,,,,,0.05182,0.08213,0.10952,0.1937,,,,,,,0.05416,0.08725,0.11622,0.20622,,,,,,,0.04268,0.07158,0.09683,0.17689,,,,,,,0.04624,0.07666,0.10323,0.18674,,,,,,,0.04351,0.07235,0.09799,0.17722,,,,,,,0.04934,0.07937,0.10632,0.18846,,,,,,,0.04355,0.06939,0.09329,0.16337,,,,,,,0.00149,0.00235,0.0031,0.00641,,,,,,,0.00142,0.00223,0.00293,0.00598,,,,,,,0.00146,0.0023,0.00305,0.0063,,,,,,,0.0015,0.00237,0.00315,0.00657,,,,,,,0.00123,0.00191,0.00246,0.0048,,,,,,,0.00126,0.00196,0.00255,0.00504,,,,,,,0.00123,0.0019,0.00245,0.00476,,,,,,,0.00132,0.00207,0.00269,0.00539,,,,,,,0.00125,0.00194,0.00249,0.00483,,,,,,,0.04406,0.04597,0.04773,0.05547,,,,,,,0.04528,0.04707,0.04868,0.05575,,,,,,,0.04944,0.05132,0.05304,0.06065,,,,,,,0.04126,0.04322,0.04504,0.05311,,,,,,,0.04801,0.04944,0.05066,0.05587,,,,,,,0.04378,0.04529,0.04659,0.05223,,,,,,,0.04393,0.04535,0.04655,0.05166,,,,,,,0.04624,0.04785,0.04926,0.05539,,,,,,,0.04585,0.04729,0.0485,0.05367,,,,,,,0.00816,0.00985,0.0114,0.01825,,,,,,,0.00818,0.00976,0.01118,0.01743,,,,,,,0.0088,0.01046,0.01198,0.01872,,,,,,,0.00784,0.00958,0.01118,0.01832,,,,,,,0.00816,0.00943,0.0105,0.01512,,,,,,,0.00769,0.00903,0.01018,0.01516,,,,,,,0.00763,0.00889,0.00995,0.01448,,,,,,,0.00812,0.00954,0.01079,0.01621,,,,,,,0.00791,0.00919,0.01026,0.01482,,,,,,,0.00275,0.00277,0.00279,0.00315,,,,,,,0.00277,0.00279,0.00281,0.00316,,,,,,,0.00281,0.00283,0.00285,0.00321,,,,,,,0.00275,0.00276,0.00279,0.00314,,,,,,,0.00281,0.00282,0.00283,0.00317,,,,,,,0.00277,0.00278,0.0028,0.00313,,,,,,,0.00279,0.0028,0.00281,0.00314,,,,,,,0.0028,0.0028,0.00282,0.00316,,,,,,,0.00275,0.00276,0.00277,0.00311,,,,,,,0.06389,0.08619,0.11637,0.1918,,,,,,,0.0548,0.07516,0.10288,0.1737,,,,,,,0.06301,0.08842,0.12102,0.21054,,,,,,,0.06967,0.09738,0.13274,0.22869,,,,,,,0.03014,0.04863,0.07204,0.14366,,,,,,,0.03646,0.05677,0.08243,0.15986,,,,,,,0.02838,0.04627,0.06911,0.13874,,,,,,,0.04229,0.06247,0.0884,0.16216,,,,,,,0.02779,0.04361,0.06402,0.12256,, +Small SUV,E85,2030,,,,,,0.00075,0.00125,0.00176,0.00323,,,,,,,0.00069,0.00113,0.00159,0.00289,,,,,,,0.00074,0.00123,0.00173,0.00318,,,,,,,0.00078,0.0013,0.00185,0.00341,,,,,,,0.0005,0.00082,0.00112,0.00197,,,,,,,0.00055,0.00089,0.00123,0.00219,,,,,,,0.00049,0.0008,0.0011,0.00191,,,,,,,0.00059,0.00097,0.00136,0.00243,,,,,,,0.0005,0.0008,0.0011,0.00192,,,,,,,0.02027,0.01277,0.01018,0.01305,,,,,,,0.01743,0.01117,0.00905,0.01178,,,,,,,0.01994,0.01314,0.01064,0.01418,,,,,,,0.02206,0.0145,0.0117,0.0155,,,,,,,0.00964,0.00734,0.00649,0.00943,,,,,,,0.01162,0.00855,0.00741,0.0106,,,,,,,0.00912,0.00703,0.00628,0.00916,,,,,,,0.01347,0.00936,0.00787,0.01081,,,,,,,0.00893,0.00658,0.00575,0.00808,,,,,,,0.97232,1.42124,1.81947,2.68038,,,,,,,0.92892,1.37493,1.76992,2.62432,,,,,,,0.98297,1.52633,2.00507,3.08947,,,,,,,1.06579,1.6598,2.1866,3.35065,,,,,,,0.80231,1.34616,1.7955,2.8177,,,,,,,0.84481,1.40798,1.8808,2.96169,,,,,,,0.82778,1.38755,1.84712,2.88449,,,,,,,0.87801,1.39696,1.82889,2.8029,,,,,,,0.74944,1.19956,1.55468,2.34922,,,,,,,260.36452,262.81881,266.92495,289.78278,,,,,,,262.24673,264.52498,268.34998,290.75923,,,,,,,266.0259,268.4239,272.44883,295.46983,,,,,,,260.16315,262.56255,266.59735,289.31316,,,,,,,265.90133,267.5649,270.40396,291.07422,,,,,,,261.87628,263.71053,266.82502,287.81376,,,,,,,263.94189,265.53345,268.26246,288.60885,,,,,,,264.15447,266.08326,269.34768,290.75899,,,,,,,259.97506,261.73392,264.69547,285.25457,,,,,,,0.00581,0.00651,0.00766,0.00997,,,,,,,0.00582,0.00651,0.00766,0.00996,,,,,,,0.00591,0.0066,0.00776,0.01007,,,,,,,0.0057,0.00638,0.00752,0.0098,,,,,,,0.00588,0.00657,0.00772,0.01003,,,,,,,0.00576,0.00644,0.00758,0.00987,,,,,,,0.00581,0.0065,0.00765,0.00995,,,,,,,0.00586,0.00656,0.00771,0.01002,,,,,,,0.00591,0.00661,0.00777,0.01011,,,,,,,0.0178,0.02067,0.02665,0.02665,,,,,,,0.01782,0.0207,0.02668,0.02668,,,,,,,0.01782,0.02069,0.02667,0.02667,,,,,,,0.01773,0.02059,0.02654,0.02654,,,,,,,0.0178,0.02068,0.02665,0.02665,,,,,,,0.01774,0.02061,0.02656,0.02656,,,,,,,0.01779,0.02066,0.02663,0.02663,,,,,,,0.01783,0.02071,0.02669,0.02669,,,,,,,0.01787,0.02075,0.02675,0.02675,,,,,,,0.04104,0.05993,0.08263,0.12928,,,,,,,0.0395,0.05784,0.0801,0.12592,,,,,,,0.04065,0.0627,0.08645,0.13981,,,,,,,0.04241,0.06646,0.0916,0.14855,,,,,,,0.03174,0.05246,0.07408,0.12331,,,,,,,0.035,0.05688,0.07971,0.13152,,,,,,,0.03237,0.05302,0.07494,0.12371,,,,,,,0.03737,0.05901,0.08215,0.13332,,,,,,,0.03235,0.05097,0.07141,0.11468,,,,,,,0.00148,0.00234,0.0031,0.0051,,,,,,,0.00141,0.00222,0.00293,0.00476,,,,,,,0.00146,0.0023,0.00305,0.00501,,,,,,,0.00149,0.00236,0.00315,0.00522,,,,,,,0.00123,0.0019,0.00246,0.00385,,,,,,,0.00126,0.00196,0.00255,0.00404,,,,,,,0.00123,0.0019,0.00245,0.00382,,,,,,,0.00132,0.00206,0.00269,0.0043,,,,,,,0.00125,0.00193,0.00249,0.00387,,,,,,,0.04405,0.04596,0.04772,0.05244,,,,,,,0.04528,0.04705,0.04867,0.05297,,,,,,,0.04943,0.0513,0.05303,0.05768,,,,,,,0.04125,0.0432,0.04503,0.04996,,,,,,,0.048,0.04943,0.05065,0.05379,,,,,,,0.04378,0.04528,0.04659,0.04999,,,,,,,0.04392,0.04534,0.04654,0.04961,,,,,,,0.04623,0.04783,0.04925,0.05296,,,,,,,0.04584,0.04728,0.0485,0.05159,,,,,,,0.00815,0.00983,0.01139,0.01557,,,,,,,0.00817,0.00974,0.01117,0.01498,,,,,,,0.00879,0.01044,0.01198,0.01609,,,,,,,0.00783,0.00956,0.01118,0.01554,,,,,,,0.00815,0.00942,0.0105,0.01327,,,,,,,0.00769,0.00902,0.01017,0.01318,,,,,,,0.00763,0.00888,0.00995,0.01266,,,,,,,0.00811,0.00953,0.01078,0.01406,,,,,,,0.0079,0.00918,0.01025,0.01299,,,,,,,0.00251,0.00253,0.00257,0.00279,,,,,,,0.00252,0.00255,0.00258,0.0028,,,,,,,0.00256,0.00258,0.00262,0.00284,,,,,,,0.0025,0.00253,0.00257,0.00278,,,,,,,0.00256,0.00258,0.0026,0.0028,,,,,,,0.00252,0.00254,0.00257,0.00277,,,,,,,0.00254,0.00256,0.00258,0.00278,,,,,,,0.00254,0.00256,0.00259,0.0028,,,,,,,0.0025,0.00252,0.00255,0.00275,,,,,,,0.06021,0.07904,0.10624,0.16041,,,,,,,0.05113,0.06806,0.09275,0.14228,,,,,,,0.05917,0.08019,0.10927,0.17104,,,,,,,0.06575,0.08876,0.12042,0.18721,,,,,,,0.02637,0.0406,0.06036,0.10457,,,,,,,0.03265,0.04853,0.07046,0.11938,,,,,,,0.0246,0.03828,0.05746,0.10014,,,,,,,0.0385,0.05463,0.07712,0.12531,,,,,,,0.02408,0.03629,0.0535,0.08983, +Small SUV,E85,2035,,,,,,,0.00075,0.00125,0.00177,0.00296,,,,,,,0.00069,0.00113,0.00159,0.00265,,,,,,,0.00074,0.00123,0.00174,0.00291,,,,,,,0.00079,0.0013,0.00185,0.00312,,,,,,,0.0005,0.00082,0.00112,0.00181,,,,,,,0.00055,0.00089,0.00123,0.00201,,,,,,,0.00049,0.0008,0.0011,0.00175,,,,,,,0.00059,0.00097,0.00136,0.00222,,,,,,,0.0005,0.00081,0.0011,0.00176,,,,,,,0.02015,0.01276,0.01019,0.01203,,,,,,,0.01733,0.01116,0.00905,0.01073,,,,,,,0.01983,0.01313,0.01065,0.01284,,,,,,,0.02193,0.01449,0.01171,0.01407,,,,,,,0.00959,0.00734,0.0065,0.00806,,,,,,,0.01157,0.00855,0.00741,0.00917,,,,,,,0.00908,0.00703,0.00628,0.00779,,,,,,,0.0134,0.00935,0.00787,0.00955,,,,,,,0.00888,0.00658,0.00576,0.00696,,,,,,,0.9727,1.42238,1.8202,2.43547,,,,,,,0.92959,1.37608,1.77056,2.36988,,,,,,,0.98381,1.52777,2.00581,2.76979,,,,,,,1.06671,1.66135,2.1874,3.00908,,,,,,,0.80406,1.34756,1.79593,2.47612,,,,,,,0.84647,1.40943,1.88129,2.61051,,,,,,,0.82962,1.38896,1.84752,2.53495,,,,,,,0.87935,1.39821,1.82943,2.49211,,,,,,,0.75084,1.20057,1.55509,2.08006,,,,,,,260.31047,262.82875,266.94563,277.96108,,,,,,,262.19583,264.53424,268.36876,278.84923,,,,,,,265.9724,268.43366,272.4687,283.39168,,,,,,,260.10926,262.57218,266.61711,277.50646,,,,,,,265.8619,267.5714,270.4174,278.9889,,,,,,,261.83373,263.71764,266.84,275.91581,,,,,,,263.90371,265.53953,268.27494,276.61444,,,,,,,264.11009,266.09083,269.36337,278.75715,,,,,,,259.93577,261.74105,264.71003,273.42993,,,,,,,0.0058,0.00651,0.00766,0.00998,,,,,,,0.0058,0.00651,0.00766,0.00997,,,,,,,0.00589,0.00661,0.00776,0.01008,,,,,,,0.00568,0.00638,0.00752,0.00981,,,,,,,0.00587,0.00658,0.00773,0.01004,,,,,,,0.00574,0.00645,0.00759,0.00988,,,,,,,0.00579,0.0065,0.00765,0.00996,,,,,,,0.00585,0.00656,0.00771,0.01003,,,,,,,0.00589,0.00661,0.00778,0.01012,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01782,0.02072,0.02668,0.02668,,,,,,,0.01782,0.02072,0.02667,0.02667,,,,,,,0.01773,0.02061,0.02654,0.02654,,,,,,,0.0178,0.0207,0.02665,0.02665,,,,,,,0.01774,0.02063,0.02656,0.02656,,,,,,,0.01779,0.02069,0.02663,0.02663,,,,,,,0.01783,0.02073,0.02669,0.02669,,,,,,,0.01787,0.02078,0.02675,0.02675,,,,,,,0.041,0.06006,0.08268,0.11314,,,,,,,0.03947,0.05796,0.08015,0.10973,,,,,,,0.04063,0.06284,0.0865,0.12082,,,,,,,0.0424,0.06661,0.09165,0.12807,,,,,,,0.03175,0.0526,0.07412,0.10436,,,,,,,0.03501,0.05702,0.07975,0.11195,,,,,,,0.03238,0.05316,0.07498,0.10483,,,,,,,0.03736,0.05915,0.08219,0.11394,,,,,,,0.03236,0.0511,0.07144,0.09781,,,,,,,0.00148,0.00234,0.0031,0.00469,,,,,,,0.00141,0.00222,0.00293,0.00438,,,,,,,0.00146,0.0023,0.00305,0.0046,,,,,,,0.0015,0.00237,0.00315,0.00479,,,,,,,0.00123,0.0019,0.00246,0.00354,,,,,,,0.00126,0.00196,0.00255,0.00372,,,,,,,0.00123,0.0019,0.00245,0.00352,,,,,,,0.00132,0.00207,0.00269,0.00396,,,,,,,0.00125,0.00194,0.00249,0.00357,,,,,,,0.04406,0.04596,0.04772,0.05149,,,,,,,0.04528,0.04706,0.04868,0.0521,,,,,,,0.04943,0.05131,0.05304,0.05674,,,,,,,0.04126,0.04321,0.04504,0.04898,,,,,,,0.048,0.04944,0.05066,0.05312,,,,,,,0.04378,0.04529,0.04659,0.04928,,,,,,,0.04392,0.04535,0.04654,0.04896,,,,,,,0.04623,0.04784,0.04925,0.05219,,,,,,,0.04585,0.04729,0.0485,0.05093,,,,,,,0.00815,0.00984,0.0114,0.01473,,,,,,,0.00817,0.00975,0.01118,0.01421,,,,,,,0.00879,0.01045,0.01198,0.01526,,,,,,,0.00784,0.00957,0.01118,0.01467,,,,,,,0.00815,0.00942,0.0105,0.01268,,,,,,,0.00769,0.00902,0.01018,0.01255,,,,,,,0.00763,0.00889,0.00995,0.01208,,,,,,,0.00811,0.00953,0.01079,0.01338,,,,,,,0.00791,0.00918,0.01025,0.0124,,,,,,,0.00251,0.00253,0.00257,0.00268,,,,,,,0.00252,0.00255,0.00258,0.00268,,,,,,,0.00256,0.00258,0.00262,0.00273,,,,,,,0.0025,0.00253,0.00257,0.00267,,,,,,,0.00256,0.00258,0.0026,0.00269,,,,,,,0.00252,0.00254,0.00257,0.00266,,,,,,,0.00254,0.00256,0.00258,0.00266,,,,,,,0.00254,0.00256,0.00259,0.00268,,,,,,,0.0025,0.00252,0.00255,0.00263,,,,,,,0.06006,0.07914,0.10633,0.15021,,,,,,,0.05101,0.06816,0.09282,0.13194,,,,,,,0.05903,0.0803,0.10936,0.15766,,,,,,,0.06559,0.08888,0.12052,0.17317,,,,,,,0.02632,0.04069,0.06041,0.09099,,,,,,,0.03259,0.04862,0.07052,0.10531,,,,,,,0.02456,0.03836,0.0575,0.08674,,,,,,,0.03842,0.05472,0.07719,0.11274,,,,,,,0.02404,0.03636,0.05354,0.07871 +Small SUV,E85,2040,,,,,,,,0.00075,0.00125,0.00176,,,,,,,,0.00069,0.00113,0.00159,,,,,,,,0.00074,0.00123,0.00174,,,,,,,,0.00078,0.0013,0.00185,,,,,,,,0.0005,0.00082,0.00112,,,,,,,,0.00055,0.00089,0.00123,,,,,,,,0.00049,0.0008,0.0011,,,,,,,,0.00059,0.00097,0.00136,,,,,,,,0.0005,0.00081,0.0011,,,,,,,,0.02016,0.01276,0.01019,,,,,,,,0.01734,0.01116,0.00905,,,,,,,,0.01984,0.01312,0.01065,,,,,,,,0.02194,0.01448,0.01171,,,,,,,,0.00959,0.00733,0.00649,,,,,,,,0.01157,0.00855,0.00741,,,,,,,,0.00908,0.00702,0.00628,,,,,,,,0.01341,0.00935,0.00787,,,,,,,,0.00889,0.00658,0.00576,,,,,,,,0.97133,1.42139,1.81973,,,,,,,,0.92825,1.37515,1.77015,,,,,,,,0.98225,1.52666,2.00534,,,,,,,,1.06501,1.66015,2.18689,,,,,,,,0.80264,1.34667,1.79565,,,,,,,,0.84498,1.40849,1.88097,,,,,,,,0.82819,1.38808,1.84726,,,,,,,,0.87791,1.39731,1.82908,,,,,,,,0.74962,1.19987,1.55483,,,,,,,,260.29598,262.81012,266.93274,,,,,,,,262.18236,264.51678,268.35701,,,,,,,,265.95811,268.41523,272.45615,,,,,,,,260.09501,262.55362,266.60454,,,,,,,,265.85198,267.55834,270.40867,,,,,,,,261.82278,263.70337,266.8306,,,,,,,,263.89404,265.52697,268.2671,,,,,,,,264.09855,266.07588,269.35358,,,,,,,,259.92536,261.72755,264.70121,,,,,,,,0.00579,0.0065,0.00766,,,,,,,,0.0058,0.00651,0.00766,,,,,,,,0.00589,0.0066,0.00776,,,,,,,,0.00568,0.00638,0.00752,,,,,,,,0.00586,0.00657,0.00773,,,,,,,,0.00574,0.00644,0.00758,,,,,,,,0.00579,0.0065,0.00765,,,,,,,,0.00584,0.00655,0.00771,,,,,,,,0.00589,0.00661,0.00777,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01782,0.02071,0.02668,,,,,,,,0.01782,0.02071,0.02667,,,,,,,,0.01773,0.0206,0.02654,,,,,,,,0.0178,0.02069,0.02665,,,,,,,,0.01774,0.02062,0.02656,,,,,,,,0.01779,0.02068,0.02663,,,,,,,,0.01783,0.02072,0.02669,,,,,,,,0.01787,0.02077,0.02675,,,,,,,,0.04096,0.05997,0.08265,,,,,,,,0.03942,0.05788,0.08012,,,,,,,,0.04057,0.06274,0.08647,,,,,,,,0.04234,0.06652,0.09162,,,,,,,,0.03171,0.05252,0.07409,,,,,,,,0.03496,0.05693,0.07973,,,,,,,,0.03233,0.05307,0.07496,,,,,,,,0.03731,0.05906,0.08217,,,,,,,,0.03231,0.05102,0.07142,,,,,,,,0.00148,0.00234,0.0031,,,,,,,,0.00141,0.00222,0.00293,,,,,,,,0.00146,0.0023,0.00305,,,,,,,,0.00149,0.00237,0.00315,,,,,,,,0.00123,0.0019,0.00246,,,,,,,,0.00126,0.00196,0.00255,,,,,,,,0.00123,0.0019,0.00245,,,,,,,,0.00132,0.00206,0.00269,,,,,,,,0.00125,0.00194,0.00249,,,,,,,,0.04405,0.04596,0.04772,,,,,,,,0.04528,0.04706,0.04867,,,,,,,,0.04943,0.0513,0.05303,,,,,,,,0.04125,0.04321,0.04503,,,,,,,,0.048,0.04944,0.05066,,,,,,,,0.04378,0.04528,0.04659,,,,,,,,0.04392,0.04534,0.04654,,,,,,,,0.04623,0.04784,0.04925,,,,,,,,0.04584,0.04729,0.0485,,,,,,,,0.00815,0.00984,0.0114,,,,,,,,0.00817,0.00974,0.01118,,,,,,,,0.00879,0.01045,0.01198,,,,,,,,0.00783,0.00956,0.01118,,,,,,,,0.00815,0.00942,0.0105,,,,,,,,0.00769,0.00902,0.01018,,,,,,,,0.00763,0.00888,0.00995,,,,,,,,0.00811,0.00953,0.01078,,,,,,,,0.0079,0.00918,0.01025,,,,,,,,0.00251,0.00253,0.00257,,,,,,,,0.00252,0.00255,0.00258,,,,,,,,0.00256,0.00258,0.00262,,,,,,,,0.0025,0.00253,0.00257,,,,,,,,0.00256,0.00258,0.0026,,,,,,,,0.00252,0.00254,0.00257,,,,,,,,0.00254,0.00256,0.00258,,,,,,,,0.00254,0.00256,0.00259,,,,,,,,0.0025,0.00252,0.00255,,,,,,,,0.05999,0.07904,0.10627,,,,,,,,0.05094,0.06807,0.09277,,,,,,,,0.05895,0.08019,0.1093,,,,,,,,0.06551,0.08876,0.12046,,,,,,,,0.02628,0.04062,0.06038,,,,,,,,0.03255,0.04855,0.07048,,,,,,,,0.02453,0.0383,0.05748,,,,,,,,0.03837,0.05464,0.07715,,,,,,,,0.02401,0.0363,0.05352 +Small SUV,E85,2045,,,,,,,,,0.00075,0.00125,,,,,,,,,0.00069,0.00113,,,,,,,,,0.00074,0.00123,,,,,,,,,0.00078,0.0013,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00054,0.00089,,,,,,,,,0.00049,0.0008,,,,,,,,,0.00059,0.00097,,,,,,,,,0.0005,0.00081,,,,,,,,,0.02016,0.01276,,,,,,,,,0.01734,0.01116,,,,,,,,,0.01983,0.01313,,,,,,,,,0.02194,0.01449,,,,,,,,,0.00959,0.00733,,,,,,,,,0.01157,0.00855,,,,,,,,,0.00908,0.00702,,,,,,,,,0.01341,0.00935,,,,,,,,,0.00889,0.00658,,,,,,,,,0.97057,1.42111,,,,,,,,,0.92751,1.37486,,,,,,,,,0.9814,1.5263,,,,,,,,,1.06408,1.65977,,,,,,,,,0.80191,1.34636,,,,,,,,,0.84421,1.40815,,,,,,,,,0.82745,1.38777,,,,,,,,,0.87715,1.39702,,,,,,,,,0.74899,1.19964,,,,,,,,,260.2849,262.80624,,,,,,,,,262.17197,264.51296,,,,,,,,,265.94722,268.4114,,,,,,,,,260.08405,262.54972,,,,,,,,,265.84418,267.55582,,,,,,,,,261.81425,263.70045,,,,,,,,,263.88663,265.52482,,,,,,,,,264.08983,266.07286,,,,,,,,,259.91741,261.72502,,,,,,,,,0.00579,0.0065,,,,,,,,,0.0058,0.0065,,,,,,,,,0.00589,0.0066,,,,,,,,,0.00567,0.00638,,,,,,,,,0.00586,0.00657,,,,,,,,,0.00574,0.00644,,,,,,,,,0.00578,0.00649,,,,,,,,,0.00584,0.00655,,,,,,,,,0.00588,0.0066,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01782,0.02071,,,,,,,,,0.01782,0.0207,,,,,,,,,0.01773,0.0206,,,,,,,,,0.0178,0.02069,,,,,,,,,0.01774,0.02062,,,,,,,,,0.01779,0.02067,,,,,,,,,0.01783,0.02072,,,,,,,,,0.01787,0.02076,,,,,,,,,0.04093,0.05995,,,,,,,,,0.0394,0.05785,,,,,,,,,0.04054,0.06271,,,,,,,,,0.0423,0.06649,,,,,,,,,0.03168,0.05249,,,,,,,,,0.03493,0.05691,,,,,,,,,0.03231,0.05305,,,,,,,,,0.03728,0.05903,,,,,,,,,0.03229,0.051,,,,,,,,,0.00148,0.00234,,,,,,,,,0.00141,0.00222,,,,,,,,,0.00145,0.0023,,,,,,,,,0.00149,0.00237,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00126,0.00196,,,,,,,,,0.00123,0.0019,,,,,,,,,0.00132,0.00206,,,,,,,,,0.00125,0.00194,,,,,,,,,0.04405,0.04596,,,,,,,,,0.04527,0.04705,,,,,,,,,0.04942,0.0513,,,,,,,,,0.04125,0.0432,,,,,,,,,0.048,0.04943,,,,,,,,,0.04378,0.04528,,,,,,,,,0.04392,0.04534,,,,,,,,,0.04623,0.04784,,,,,,,,,0.04584,0.04728,,,,,,,,,0.00815,0.00983,,,,,,,,,0.00817,0.00974,,,,,,,,,0.00878,0.01044,,,,,,,,,0.00783,0.00956,,,,,,,,,0.00815,0.00942,,,,,,,,,0.00768,0.00902,,,,,,,,,0.00763,0.00888,,,,,,,,,0.00811,0.00953,,,,,,,,,0.0079,0.00918,,,,,,,,,0.00251,0.00253,,,,,,,,,0.00252,0.00255,,,,,,,,,0.00256,0.00258,,,,,,,,,0.0025,0.00253,,,,,,,,,0.00256,0.00258,,,,,,,,,0.00252,0.00254,,,,,,,,,0.00254,0.00256,,,,,,,,,0.00254,0.00256,,,,,,,,,0.0025,0.00252,,,,,,,,,0.05994,0.07901,,,,,,,,,0.0509,0.06804,,,,,,,,,0.0589,0.08016,,,,,,,,,0.06546,0.08873,,,,,,,,,0.02626,0.0406,,,,,,,,,0.03252,0.04852,,,,,,,,,0.0245,0.03828,,,,,,,,,0.03834,0.05462,,,,,,,,,0.02399,0.03629 +Small SUV,E85,2050,,,,,,,,,,0.00075,,,,,,,,,,0.00069,,,,,,,,,,0.00074,,,,,,,,,,0.00078,,,,,,,,,,0.0005,,,,,,,,,,0.00054,,,,,,,,,,0.00049,,,,,,,,,,0.00059,,,,,,,,,,0.0005,,,,,,,,,,0.02016,,,,,,,,,,0.01734,,,,,,,,,,0.01983,,,,,,,,,,0.02194,,,,,,,,,,0.00959,,,,,,,,,,0.01157,,,,,,,,,,0.00908,,,,,,,,,,0.01341,,,,,,,,,,0.00888,,,,,,,,,,0.97058,,,,,,,,,,0.92752,,,,,,,,,,0.98142,,,,,,,,,,1.0641,,,,,,,,,,0.80192,,,,,,,,,,0.84422,,,,,,,,,,0.82746,,,,,,,,,,0.87716,,,,,,,,,,0.749,,,,,,,,,,260.28497,,,,,,,,,,262.17179,,,,,,,,,,265.94707,,,,,,,,,,260.08392,,,,,,,,,,265.84404,,,,,,,,,,261.81411,,,,,,,,,,263.88671,,,,,,,,,,264.0896,,,,,,,,,,259.91729,,,,,,,,,,0.00579,,,,,,,,,,0.0058,,,,,,,,,,0.00589,,,,,,,,,,0.00567,,,,,,,,,,0.00586,,,,,,,,,,0.00574,,,,,,,,,,0.00578,,,,,,,,,,0.00584,,,,,,,,,,0.00588,,,,,,,,,,0.0178,,,,,,,,,,0.01782,,,,,,,,,,0.01782,,,,,,,,,,0.01773,,,,,,,,,,0.0178,,,,,,,,,,0.01774,,,,,,,,,,0.01779,,,,,,,,,,0.01783,,,,,,,,,,0.01787,,,,,,,,,,0.04093,,,,,,,,,,0.0394,,,,,,,,,,0.04054,,,,,,,,,,0.04231,,,,,,,,,,0.03168,,,,,,,,,,0.03493,,,,,,,,,,0.03231,,,,,,,,,,0.03728,,,,,,,,,,0.03229,,,,,,,,,,0.00148,,,,,,,,,,0.00141,,,,,,,,,,0.00145,,,,,,,,,,0.00149,,,,,,,,,,0.00123,,,,,,,,,,0.00126,,,,,,,,,,0.00123,,,,,,,,,,0.00132,,,,,,,,,,0.00125,,,,,,,,,,0.04405,,,,,,,,,,0.04527,,,,,,,,,,0.04942,,,,,,,,,,0.04125,,,,,,,,,,0.048,,,,,,,,,,0.04378,,,,,,,,,,0.04392,,,,,,,,,,0.04623,,,,,,,,,,0.04584,,,,,,,,,,0.00815,,,,,,,,,,0.00817,,,,,,,,,,0.00878,,,,,,,,,,0.00783,,,,,,,,,,0.00815,,,,,,,,,,0.00768,,,,,,,,,,0.00763,,,,,,,,,,0.00811,,,,,,,,,,0.0079,,,,,,,,,,0.00251,,,,,,,,,,0.00252,,,,,,,,,,0.00256,,,,,,,,,,0.0025,,,,,,,,,,0.00256,,,,,,,,,,0.00252,,,,,,,,,,0.00254,,,,,,,,,,0.00254,,,,,,,,,,0.0025,,,,,,,,,,0.05994,,,,,,,,,,0.0509,,,,,,,,,,0.0589,,,,,,,,,,0.06546,,,,,,,,,,0.02626,,,,,,,,,,0.03252,,,,,,,,,,0.0245,,,,,,,,,,0.03834,,,,,,,,,,0.02399 +Small SUV,ELC,1990,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03804,,,,,,,,,,0.04547,,,,,,,,,,0.04117,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.00141,,,,,,,,,,0.00136,,,,,,,,,,0.00137,,,,,,,,,,0.00143,,,,,,,,,,0.0012,,,,,,,,,,0.00122,,,,,,,,,,0.00115,,,,,,,,,,0.00126,,,,,,,,,,0.00112,,,,,,,,,,0.04393,,,,,,,,,,0.04518,,,,,,,,,,0.04926,,,,,,,,,,0.04114,,,,,,,,,,0.04797,,,,,,,,,,0.04373,,,,,,,,,,0.04378,,,,,,,,,,0.04612,,,,,,,,,,0.0456,,,,,,,,,,0.00803,,,,,,,,,,0.00808,,,,,,,,,,0.00863,,,,,,,,,,0.00772,,,,,,,,,,0.00812,,,,,,,,,,0.00763,,,,,,,,,,0.00749,,,,,,,,,,0.008,,,,,,,,,,0.00768,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,1995,0.04086,0.04086,,,,,,,,,0.04226,0.04226,,,,,,,,,0.04628,0.04628,,,,,,,,,0.03802,0.03802,,,,,,,,,0.04546,0.04546,,,,,,,,,0.04115,0.04115,,,,,,,,,0.0414,0.04139,,,,,,,,,0.04345,0.04345,,,,,,,,,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2000,0.04087,0.04086,0.04086,,,,,,,,0.04226,0.04226,0.04226,,,,,,,,0.04629,0.04628,0.04628,,,,,,,,0.03803,0.03802,0.03802,,,,,,,,0.04547,0.04546,0.04546,,,,,,,,0.04116,0.04115,0.04115,,,,,,,,0.0414,0.0414,0.04139,,,,,,,,0.04346,0.04345,0.04345,,,,,,,,0.04327,0.04327,0.04326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2005,0.04088,0.04088,0.04087,0.04087,,,,,,,0.04228,0.04227,0.04227,0.04227,,,,,,,0.0463,0.04629,0.04629,0.04629,,,,,,,0.03804,0.03804,0.03803,0.03803,,,,,,,0.04548,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04117,0.04117,0.04116,,,,,,,0.04142,0.04141,0.04141,0.04141,,,,,,,0.04347,0.04346,0.04346,0.04346,,,,,,,0.04329,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2010,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04117,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2015,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2020,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2025,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2030,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2035,,,,,,,0.04087,0.04087,0.04087,0.04087,,,,,,,0.04227,0.04227,0.04227,0.04227,,,,,,,0.04629,0.04629,0.04629,0.04629,,,,,,,0.03803,0.03803,0.03803,0.03803,,,,,,,0.04547,0.04547,0.04547,0.04547,,,,,,,0.04116,0.04116,0.04116,0.04116,,,,,,,0.04141,0.04141,0.04141,0.04141,,,,,,,0.04346,0.04346,0.04346,0.04346,,,,,,,0.04328,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2040,,,,,,,,0.04087,0.04087,0.04087,,,,,,,,0.04227,0.04227,0.04227,,,,,,,,0.04629,0.04629,0.04629,,,,,,,,0.03803,0.03803,0.03803,,,,,,,,0.04547,0.04547,0.04547,,,,,,,,0.04116,0.04116,0.04116,,,,,,,,0.04141,0.04141,0.04141,,,,,,,,0.04346,0.04346,0.04346,,,,,,,,0.04328,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2045,,,,,,,,,0.04087,0.04087,,,,,,,,,0.04227,0.04227,,,,,,,,,0.04629,0.04629,,,,,,,,,0.03803,0.03803,,,,,,,,,0.04547,0.04547,,,,,,,,,0.04116,0.04116,,,,,,,,,0.04141,0.04141,,,,,,,,,0.04346,0.04346,,,,,,,,,0.04328,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,ELC,2050,,,,,,,,,,0.04087,,,,,,,,,,0.04227,,,,,,,,,,0.04629,,,,,,,,,,0.03803,,,,,,,,,,0.04547,,,,,,,,,,0.04116,,,,,,,,,,0.04141,,,,,,,,,,0.04346,,,,,,,,,,0.04328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Small SUV,GSL,1990,0.05618,,,,,,,,,,0.04796,,,,,,,,,,0.05487,,,,,,,,,,0.06129,,,,,,,,,,0.0263,,,,,,,,,,0.0315,,,,,,,,,,0.02481,,,,,,,,,,0.03684,,,,,,,,,,0.02451,,,,,,,,,,0.11442,,,,,,,,,,0.09585,,,,,,,,,,0.12464,,,,,,,,,,0.12966,,,,,,,,,,0.10814,,,,,,,,,,0.11861,,,,,,,,,,0.10835,,,,,,,,,,0.1068,,,,,,,,,,0.08482,,,,,,,,,,70.15811,,,,,,,,,,62.54196,,,,,,,,,,77.96616,,,,,,,,,,80.91697,,,,,,,,,,72.38807,,,,,,,,,,77.997,,,,,,,,,,74.71533,,,,,,,,,,70.08991,,,,,,,,,,57.1543,,,,,,,,,,619.53714,,,,,,,,,,620.96195,,,,,,,,,,628.63309,,,,,,,,,,617.59417,,,,,,,,,,620.55155,,,,,,,,,,615.03145,,,,,,,,,,615.92725,,,,,,,,,,620.4556,,,,,,,,,,612.70316,,,,,,,,,,0.12531,,,,,,,,,,0.12545,,,,,,,,,,0.12744,,,,,,,,,,0.12282,,,,,,,,,,0.12686,,,,,,,,,,0.12416,,,,,,,,,,0.1252,,,,,,,,,,0.12641,,,,,,,,,,0.12737,,,,,,,,,,0.04106,,,,,,,,,,0.04109,,,,,,,,,,0.04101,,,,,,,,,,0.041,,,,,,,,,,0.041,,,,,,,,,,0.04098,,,,,,,,,,0.04104,,,,,,,,,,0.04109,,,,,,,,,,0.04113,,,,,,,,,,5.06226,,,,,,,,,,4.76972,,,,,,,,,,5.34074,,,,,,,,,,5.66766,,,,,,,,,,5.23406,,,,,,,,,,5.50192,,,,,,,,,,5.24575,,,,,,,,,,5.53574,,,,,,,,,,4.51405,,,,,,,,,,0.09906,,,,,,,,,,0.08649,,,,,,,,,,0.09646,,,,,,,,,,0.10622,,,,,,,,,,0.05159,,,,,,,,,,0.06033,,,,,,,,,,0.04954,,,,,,,,,,0.06858,,,,,,,,,,0.04902,,,,,,,,,,0.26281,,,,,,,,,,0.23535,,,,,,,,,,0.26385,,,,,,,,,,0.27813,,,,,,,,,,0.15893,,,,,,,,,,0.17473,,,,,,,,,,0.15001,,,,,,,,,,0.196,,,,,,,,,,0.14974,,,,,,,,,,0.20166,,,,,,,,,,0.1763,,,,,,,,,,0.19846,,,,,,,,,,0.21736,,,,,,,,,,0.10628,,,,,,,,,,0.12352,,,,,,,,,,0.10146,,,,,,,,,,0.14059,,,,,,,,,,0.0998,,,,,,,,,,0.02745,,,,,,,,,,0.03097,,,,,,,,,,0.04398,,,,,,,,,,0.04032,,,,,,,,,,0.03589,,,,,,,,,,0.03955,,,,,,,,,,0.03599,,,,,,,,,,0.03558,,,,,,,,,,0.01678,,,,,,,,,,4.22564,,,,,,,,,,3.72577,,,,,,,,,,4.6816,,,,,,,,,,4.84299,,,,,,,,,,4.53843,,,,,,,,,,4.7422,,,,,,,,,,4.52984,,,,,,,,,,4.39906,,,,,,,,,,3.57938,,,,,,,,, +Small SUV,GSL,1995,0.01416,0.03369,,,,,,,,,0.01212,0.02875,,,,,,,,,0.01381,0.03289,,,,,,,,,0.01538,0.03669,,,,,,,,,0.00671,0.01572,,,,,,,,,0.008,0.01881,,,,,,,,,0.00635,0.01482,,,,,,,,,0.00935,0.02206,,,,,,,,,0.0063,0.01469,,,,,,,,,0.07834,0.08955,,,,,,,,,0.07253,0.07705,,,,,,,,,0.0878,0.10134,,,,,,,,,0.09006,0.10986,,,,,,,,,0.07892,0.091,,,,,,,,,0.08377,0.10009,,,,,,,,,0.07835,0.09138,,,,,,,,,0.07869,0.09077,,,,,,,,,0.06582,0.0695,,,,,,,,,33.10098,45.87751,,,,,,,,,32.15986,42.12287,,,,,,,,,37.73945,51.15126,,,,,,,,,39.42476,55.14485,,,,,,,,,35.87329,48.96518,,,,,,,,,37.91924,52.52611,,,,,,,,,37.02987,51.08168,,,,,,,,,35.25583,48.79992,,,,,,,,,28.90452,38.98605,,,,,,,,,485.4204,518.60541,,,,,,,,,488.72321,520.997,,,,,,,,,496.34332,529.11656,,,,,,,,,483.78379,516.58892,,,,,,,,,494.7301,523.84691,,,,,,,,,486.74402,516.81419,,,,,,,,,490.06909,518.82508,,,,,,,,,491.72212,522.20175,,,,,,,,,484.76658,514.65573,,,,,,,,,0.09277,0.11757,,,,,,,,,0.09301,0.11772,,,,,,,,,0.09478,0.11963,,,,,,,,,0.09076,0.11521,,,,,,,,,0.0943,0.11908,,,,,,,,,0.092,0.11651,,,,,,,,,0.09275,0.11747,,,,,,,,,0.09379,0.11863,,,,,,,,,0.09444,0.11952,,,,,,,,,0.10552,0.08458,,,,,,,,,0.1056,0.08465,,,,,,,,,0.10544,0.0845,,,,,,,,,0.10523,0.08437,,,,,,,,,0.10539,0.08447,,,,,,,,,0.10523,0.08436,,,,,,,,,0.10545,0.08453,,,,,,,,,0.10561,0.08465,,,,,,,,,0.10578,0.08478,,,,,,,,,4.16127,4.97008,,,,,,,,,4.10575,4.68902,,,,,,,,,4.49028,5.09867,,,,,,,,,4.67966,5.60769,,,,,,,,,4.38662,5.19231,,,,,,,,,4.5827,5.38989,,,,,,,,,4.44028,5.22717,,,,,,,,,4.65406,5.48301,,,,,,,,,3.85393,4.48793,,,,,,,,,0.02679,0.05865,,,,,,,,,0.02347,0.0512,,,,,,,,,0.02601,0.05707,,,,,,,,,0.02851,0.06261,,,,,,,,,0.0141,0.0304,,,,,,,,,0.0164,0.03546,,,,,,,,,0.0136,0.0292,,,,,,,,,0.01867,0.04054,,,,,,,,,0.01356,0.02908,,,,,,,,,0.1,0.17168,,,,,,,,,0.09389,0.15588,,,,,,,,,0.10412,0.17367,,,,,,,,,0.10156,0.17883,,,,,,,,,0.07607,0.11173,,,,,,,,,0.07699,0.11889,,,,,,,,,0.07083,0.105,,,,,,,,,0.0844,0.1331,,,,,,,,,0.07229,0.10621,,,,,,,,,0.05764,0.12105,,,,,,,,,0.05117,0.10601,,,,,,,,,0.05717,0.1187,,,,,,,,,0.06117,0.12953,,,,,,,,,0.03298,0.06453,,,,,,,,,0.03706,0.07412,,,,,,,,,0.03142,0.06166,,,,,,,,,0.04187,0.08495,,,,,,,,,0.0313,0.06131,,,,,,,,,0.02146,0.01103,,,,,,,,,0.02436,0.01117,,,,,,,,,0.03475,0.01158,,,,,,,,,0.03159,0.01935,,,,,,,,,0.0286,0.0114,,,,,,,,,0.0313,0.0113,,,,,,,,,0.02863,0.0155,,,,,,,,,0.02813,0.01763,,,,,,,,,0.01323,0.00648,,,,,,,,,2.92649,3.62043,,,,,,,,,2.80136,3.29616,,,,,,,,,3.32222,4.11029,,,,,,,,,3.37334,4.38736,,,,,,,,,3.20876,4.09625,,,,,,,,,3.29169,4.27263,,,,,,,,,3.18059,4.08943,,,,,,,,,3.16823,4.03319,,,,,,,,,2.68496,3.22983,,,,,,,, +Small SUV,GSL,2000,0.00682,0.01,0.02303,,,,,,,,0.00586,0.00857,0.01965,,,,,,,,0.00659,0.00967,0.02239,,,,,,,,0.0073,0.01073,0.02498,,,,,,,,0.0033,0.00478,0.01075,,,,,,,,0.00389,0.00566,0.01284,,,,,,,,0.00315,0.00457,0.01018,,,,,,,,0.00454,0.00663,0.01508,,,,,,,,0.00317,0.00459,0.01014,,,,,,,,0.04452,0.06518,0.08837,,,,,,,,0.04162,0.0626,0.07845,,,,,,,,0.05049,0.07551,0.10228,,,,,,,,0.05159,0.07861,0.10452,,,,,,,,0.03887,0.06376,0.08816,,,,,,,,0.04211,0.06812,0.09354,,,,,,,,0.03822,0.06397,0.08493,,,,,,,,0.04204,0.0669,0.08657,,,,,,,,0.03462,0.05792,0.07008,,,,,,,,10.25924,16.32697,30.09906,,,,,,,,9.98254,16.06926,27.40491,,,,,,,,11.91904,19.01514,34.36357,,,,,,,,12.31401,19.77596,34.97153,,,,,,,,9.93079,17.0245,31.42878,,,,,,,,10.63553,17.96475,32.92924,,,,,,,,10.12637,17.55821,31.45074,,,,,,,,10.3463,17.48581,30.53883,,,,,,,,8.45249,15.00519,24.89272,,,,,,,,519.31606,523.99442,526.85335,,,,,,,,523.53604,527.90325,529.79956,,,,,,,,531.10503,535.70132,538.12708,,,,,,,,518.65443,523.20135,525.51559,,,,,,,,532.36319,535.62329,534.27239,,,,,,,,523.56198,527.14342,526.67604,,,,,,,,528.19961,531.33012,529.49354,,,,,,,,528.15767,531.89753,531.92995,,,,,,,,520.40049,523.85352,523.47601,,,,,,,,0.05123,0.05705,0.08778,,,,,,,,0.05141,0.0572,0.08787,,,,,,,,0.05248,0.05829,0.08926,,,,,,,,0.05007,0.05581,0.08604,,,,,,,,0.0522,0.058,0.08886,,,,,,,,0.05083,0.05658,0.08698,,,,,,,,0.05124,0.05704,0.0877,,,,,,,,0.05186,0.05768,0.08854,,,,,,,,0.0522,0.05808,0.08922,,,,,,,,0.06217,0.08106,0.08473,,,,,,,,0.06224,0.08115,0.08482,,,,,,,,0.06222,0.08113,0.08475,,,,,,,,0.06191,0.08072,0.08442,,,,,,,,0.06217,0.08106,0.08469,,,,,,,,0.06197,0.0808,0.08447,,,,,,,,0.06213,0.08101,0.08468,,,,,,,,0.06226,0.08118,0.08484,,,,,,,,0.0624,0.08136,0.08501,,,,,,,,1.51289,2.09817,3.52388,,,,,,,,1.48773,2.07981,3.33735,,,,,,,,1.74442,2.29361,3.74827,,,,,,,,1.78657,2.4447,3.86239,,,,,,,,1.65781,2.2775,3.75943,,,,,,,,1.72771,2.32834,3.81478,,,,,,,,1.68155,2.32093,3.63384,,,,,,,,1.76187,2.41938,3.81055,,,,,,,,1.46662,2.0601,3.17983,,,,,,,,0.01484,0.02075,0.04125,,,,,,,,0.01301,0.01816,0.03594,,,,,,,,0.01419,0.01984,0.03974,,,,,,,,0.01547,0.02166,0.04367,,,,,,,,0.00788,0.01092,0.02128,,,,,,,,0.00906,0.01259,0.02476,,,,,,,,0.0077,0.01067,0.02059,,,,,,,,0.01038,0.01445,0.02843,,,,,,,,0.00784,0.01085,0.02072,,,,,,,,0.07274,0.08544,0.13222,,,,,,,,0.07016,0.08113,0.1215,,,,,,,,0.07705,0.08901,0.13448,,,,,,,,0.07162,0.08503,0.13527,,,,,,,,0.06219,0.06852,0.09159,,,,,,,,0.06052,0.06786,0.09512,,,,,,,,0.0577,0.0639,0.08585,,,,,,,,0.06568,0.07434,0.1057,,,,,,,,0.05964,0.06596,0.08776,,,,,,,,0.03352,0.04476,0.08614,,,,,,,,0.03017,0.03988,0.0756,,,,,,,,0.03322,0.04381,0.08403,,,,,,,,0.03468,0.04655,0.091,,,,,,,,0.0207,0.0263,0.04671,,,,,,,,0.02248,0.02898,0.0531,,,,,,,,0.0198,0.02529,0.04471,,,,,,,,0.02531,0.03297,0.06072,,,,,,,,0.0201,0.0257,0.04498,,,,,,,,0.02295,0.01114,0.01008,,,,,,,,0.02608,0.01132,0.01014,,,,,,,,0.03719,0.01173,0.0103,,,,,,,,0.03387,0.01963,0.01006,,,,,,,,0.03077,0.01166,0.01023,,,,,,,,0.03367,0.01153,0.01008,,,,,,,,0.03086,0.01587,0.01013,,,,,,,,0.0302,0.01797,0.00913,,,,,,,,0.01419,0.00658,0.00474,,,,,,,,0.96721,1.62997,2.94868,,,,,,,,0.9384,1.60171,2.67264,,,,,,,,1.11521,1.90115,3.40351,,,,,,,,1.14458,1.9736,3.45647,,,,,,,,0.9639,1.73705,3.22046,,,,,,,,1.00501,1.80614,3.30293,,,,,,,,0.95405,1.73508,3.11109,,,,,,,,1.01635,1.7985,3.12546,,,,,,,,0.84435,1.56149,2.56228,,,,,,, +Small SUV,GSL,2005,0.00212,0.00345,0.00512,0.01381,,,,,,,0.0019,0.00296,0.00438,0.01185,,,,,,,0.00234,0.00262,0.00384,0.01323,,,,,,,0.00243,0.00359,0.00535,0.01487,,,,,,,0.00122,0.00192,0.00282,0.00673,,,,,,,0.00143,0.00196,0.00287,0.00786,,,,,,,0.00115,0.00175,0.00256,0.00624,,,,,,,0.00159,0.00223,0.00328,0.00914,,,,,,,0.00102,0.00151,0.00219,0.00616,,,,,,,0.0304,0.0231,0.02441,0.05089,,,,,,,0.02781,0.02093,0.0227,0.04603,,,,,,,0.03109,0.02347,0.02541,0.05799,,,,,,,0.03159,0.0268,0.02714,0.06115,,,,,,,0.01962,0.01705,0.01961,0.0483,,,,,,,0.0219,0.01846,0.02085,0.05156,,,,,,,0.01879,0.0177,0.01927,0.04665,,,,,,,0.02384,0.02035,0.02093,0.04966,,,,,,,0.01598,0.01375,0.01558,0.04103,,,,,,,4.99765,7.58544,9.83556,17.89797,,,,,,,4.86072,7.46372,9.85161,17.05656,,,,,,,5.37981,8.80655,11.78216,20.64445,,,,,,,5.58924,9.35159,11.56521,21.52199,,,,,,,4.82392,7.90825,10.69778,19.1373,,,,,,,4.98838,8.29473,11.16233,19.90684,,,,,,,4.95523,8.51253,10.80572,19.32202,,,,,,,5.07636,8.7869,10.75709,19.10472,,,,,,,4.01788,7.33294,9.65067,16.43486,,,,,,,544.40453,547.04613,552.97423,553.23054,,,,,,,549.16915,551.62156,557.12869,556.42815,,,,,,,556.67693,559.25834,565.0486,564.89167,,,,,,,544.09456,546.61767,552.41337,552.31228,,,,,,,559.61417,561.38834,565.42457,561.4898,,,,,,,550.24197,552.21739,556.66171,553.6689,,,,,,,555.65801,557.35054,561.21815,556.89643,,,,,,,554.73524,556.80446,561.47648,558.92637,,,,,,,546.76178,548.7132,552.98193,549.76627,,,,,,,0.01014,0.01088,0.01281,0.04099,,,,,,,0.01016,0.01089,0.01282,0.04099,,,,,,,0.01034,0.01107,0.013,0.04156,,,,,,,0.00993,0.01066,0.01256,0.04021,,,,,,,0.01029,0.01102,0.01295,0.04139,,,,,,,0.01005,0.01078,0.01269,0.04059,,,,,,,0.01014,0.01087,0.01279,0.04093,,,,,,,0.01024,0.01098,0.01291,0.04129,,,,,,,0.01032,0.01106,0.01301,0.04162,,,,,,,0.02508,0.02882,0.03548,0.05142,,,,,,,0.02511,0.02885,0.03552,0.05147,,,,,,,0.0251,0.02885,0.03551,0.05145,,,,,,,0.02498,0.0287,0.03534,0.05122,,,,,,,0.02508,0.02882,0.03548,0.05141,,,,,,,0.025,0.02873,0.03537,0.05126,,,,,,,0.02506,0.0288,0.03546,0.05138,,,,,,,0.02512,0.02886,0.03554,0.05149,,,,,,,0.02517,0.02892,0.03561,0.0516,,,,,,,0.57688,0.9134,1.18931,1.78731,,,,,,,0.56654,0.89384,1.1866,1.72824,,,,,,,0.61406,0.9886,1.29365,1.95725,,,,,,,0.61236,1.08676,1.35205,2.0448,,,,,,,0.57469,0.95493,1.26301,1.93786,,,,,,,0.59498,0.9886,1.29366,1.97501,,,,,,,0.58325,1.00264,1.26134,1.89346,,,,,,,0.62794,1.04584,1.29154,2.00371,,,,,,,0.49137,0.70134,0.92184,1.73463,,,,,,,0.00461,0.00735,0.01002,0.02419,,,,,,,0.00422,0.00653,0.00888,0.02126,,,,,,,0.00489,0.00602,0.00813,0.0231,,,,,,,0.00503,0.00746,0.01019,0.02536,,,,,,,0.00294,0.0046,0.00628,0.01327,,,,,,,0.00331,0.0047,0.0064,0.01503,,,,,,,0.00285,0.00434,0.0059,0.01265,,,,,,,0.00362,0.0052,0.00707,0.01704,,,,,,,0.00263,0.00393,0.00532,0.01261,,,,,,,0.0508,0.05663,0.06269,0.09455,,,,,,,0.05134,0.05618,0.06148,0.0892,,,,,,,0.05696,0.05906,0.06378,0.0976,,,,,,,0.04901,0.05418,0.06036,0.09466,,,,,,,0.0517,0.0551,0.05878,0.07417,,,,,,,0.04825,0.05103,0.05475,0.07388,,,,,,,0.04743,0.05048,0.05385,0.06862,,,,,,,0.05122,0.05449,0.05856,0.08076,,,,,,,0.04876,0.05141,0.05438,0.07035,,,,,,,0.0141,0.01926,0.02462,0.05281,,,,,,,0.01351,0.0178,0.02249,0.04702,,,,,,,0.01544,0.0173,0.02148,0.0514,,,,,,,0.01467,0.01925,0.02472,0.05506,,,,,,,0.01141,0.01442,0.01768,0.0313,,,,,,,0.01162,0.01409,0.01738,0.03431,,,,,,,0.0107,0.01341,0.0164,0.02946,,,,,,,0.01251,0.01541,0.01901,0.03864,,,,,,,0.01046,0.01282,0.01544,0.02957,,,,,,,0.02405,0.01163,0.01058,0.00353,,,,,,,0.02735,0.01183,0.01066,0.00355,,,,,,,0.03899,0.01224,0.01081,0.0036,,,,,,,0.03553,0.02052,0.01057,0.00352,,,,,,,0.03234,0.01222,0.01082,0.00358,,,,,,,0.03538,0.01208,0.01065,0.00353,,,,,,,0.03246,0.01665,0.01074,0.00355,,,,,,,0.0317,0.01881,0.00963,0.00351,,,,,,,0.0149,0.00689,0.005,0.00324,,,,,,,0.42648,0.52475,0.72106,1.74636,,,,,,,0.39685,0.4901,0.68226,1.61973,,,,,,,0.44587,0.54758,0.76075,1.96562,,,,,,,0.45678,0.61332,0.80526,2.04318,,,,,,,0.31439,0.43792,0.63349,1.79482,,,,,,,0.33942,0.46036,0.65752,1.84916,,,,,,,0.3037,0.44636,0.61847,1.73899,,,,,,,0.37251,0.50954,0.67999,1.82721,,,,,,,0.26545,0.37473,0.53675,1.55347,,,,,, +Small SUV,GSL,2010,,0.00157,0.00279,0.00419,0.01064,,,,,,,0.00137,0.00242,0.00368,0.00919,,,,,,,0.00119,0.00209,0.00394,0.01008,,,,,,,0.00165,0.00293,0.00446,0.0114,,,,,,,0.00098,0.0017,0.00241,0.00548,,,,,,,0.00098,0.00169,0.00265,0.00625,,,,,,,0.0009,0.00155,0.00217,0.00497,,,,,,,0.00107,0.00187,0.00296,0.00717,,,,,,,0.00076,0.00131,0.0021,0.00487,,,,,,,0.02165,0.01977,0.01702,0.03478,,,,,,,0.01902,0.01813,0.01548,0.03198,,,,,,,0.02065,0.02041,0.01743,0.03878,,,,,,,0.02443,0.02246,0.01936,0.04164,,,,,,,0.01403,0.01616,0.01352,0.03144,,,,,,,0.01498,0.01685,0.01425,0.03353,,,,,,,0.01448,0.01597,0.01338,0.03062,,,,,,,0.01729,0.01681,0.01489,0.03322,,,,,,,0.0116,0.01246,0.01304,0.0281,,,,,,,3.44122,5.48204,7.17005,12.8182,,,,,,,3.28395,5.43663,7.06009,12.50706,,,,,,,3.80434,6.37546,7.98762,15.05577,,,,,,,3.98428,6.30332,8.47995,15.81808,,,,,,,3.04027,5.57191,7.42771,13.88879,,,,,,,3.25244,5.86101,7.6771,14.49452,,,,,,,3.26874,5.66205,7.60742,14.09616,,,,,,,3.57783,5.74207,7.6032,13.96218,,,,,,,2.90847,5.08664,6.70146,12.06546,,,,,,,517.964,520.27268,524.95603,545.96141,,,,,,,522.515,524.5296,528.73256,548.94367,,,,,,,529.66093,531.83407,536.33044,557.31177,,,,,,,517.64414,519.84773,524.3935,545.14004,,,,,,,532.49551,533.50153,536.04577,553.37135,,,,,,,523.58298,524.88385,527.91127,545.91436,,,,,,,528.74129,529.64141,532.01053,548.89763,,,,,,,527.83701,529.28032,532.54123,551.10051,,,,,,,520.2797,521.50986,524.33786,541.84093,,,,,,,0.00966,0.01088,0.01305,0.02578,,,,,,,0.00968,0.0109,0.01305,0.02577,,,,,,,0.00985,0.01107,0.01323,0.0261,,,,,,,0.00946,0.01067,0.0128,0.02531,,,,,,,0.0098,0.01102,0.01318,0.02599,,,,,,,0.00957,0.01079,0.01292,0.02552,,,,,,,0.00965,0.01088,0.01303,0.02574,,,,,,,0.00975,0.01098,0.01314,0.02595,,,,,,,0.00983,0.01106,0.01325,0.02616,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01894,0.02191,0.02746,0.0366,,,,,,,0.01893,0.0219,0.02746,0.03658,,,,,,,0.01884,0.02179,0.02732,0.0364,,,,,,,0.01892,0.02188,0.02743,0.03655,,,,,,,0.01886,0.02181,0.02735,0.03644,,,,,,,0.0189,0.02187,0.02741,0.03653,,,,,,,0.01894,0.02191,0.02747,0.03661,,,,,,,0.01898,0.02196,0.02753,0.03669,,,,,,,0.20883,0.3373,0.30482,0.93964,,,,,,,0.20159,0.33545,0.30099,0.92195,,,,,,,0.20829,0.36041,0.32133,1.05059,,,,,,,0.22515,0.3785,0.33898,1.10943,,,,,,,0.19498,0.34582,0.30516,1.03106,,,,,,,0.20155,0.35686,0.31495,1.05454,,,,,,,0.20478,0.34766,0.30783,1.01449,,,,,,,0.22052,0.35997,0.33564,1.07442,,,,,,,0.1504,0.25481,0.30358,0.93802,,,,,,,0.00277,0.00467,0.00659,0.01716,,,,,,,0.00258,0.00432,0.00611,0.01532,,,,,,,0.00233,0.00389,0.00632,0.01635,,,,,,,0.00281,0.00476,0.00681,0.0179,,,,,,,0.00224,0.00368,0.00491,0.01041,,,,,,,0.00218,0.00359,0.0051,0.0114,,,,,,,0.00212,0.00348,0.00462,0.0098,,,,,,,0.00224,0.00372,0.00539,0.01262,,,,,,,0.0019,0.0031,0.00449,0.00967,,,,,,,0.04704,0.0514,0.05589,0.07973,,,,,,,0.04794,0.05187,0.05601,0.07668,,,,,,,0.05138,0.05487,0.06064,0.08326,,,,,,,0.04438,0.04884,0.05368,0.07885,,,,,,,0.0502,0.05331,0.05601,0.06816,,,,,,,0.04579,0.04885,0.05225,0.06624,,,,,,,0.04588,0.04878,0.05125,0.06262,,,,,,,0.04831,0.05153,0.05532,0.07146,,,,,,,0.04723,0.04978,0.05285,0.06419,,,,,,,0.01078,0.01464,0.01861,0.0397,,,,,,,0.01051,0.01399,0.01766,0.03594,,,,,,,0.01051,0.0136,0.0187,0.03871,,,,,,,0.01058,0.01452,0.01881,0.04107,,,,,,,0.01008,0.01284,0.01523,0.02597,,,,,,,0.00945,0.01216,0.01517,0.02755,,,,,,,0.00935,0.01191,0.0141,0.02416,,,,,,,0.00994,0.01279,0.01614,0.03042,,,,,,,0.00912,0.01138,0.0141,0.02412,,,,,,,0.01101,0.00996,0.00335,0.00348,,,,,,,0.01121,0.01004,0.00337,0.0035,,,,,,,0.0116,0.01018,0.00342,0.00356,,,,,,,0.01944,0.00995,0.00335,0.00348,,,,,,,0.01159,0.01021,0.00342,0.00353,,,,,,,0.01145,0.01005,0.00337,0.00348,,,,,,,0.0158,0.01014,0.00339,0.0035,,,,,,,0.01783,0.00907,0.00335,0.00346,,,,,,,0.00653,0.00471,0.00309,0.0032,,,,,,,0.17173,0.25392,0.35959,1.19151,,,,,,,0.15094,0.23024,0.32985,1.12703,,,,,,,0.16693,0.26014,0.36786,1.31129,,,,,,,0.19399,0.28573,0.40283,1.37226,,,,,,,0.11209,0.19911,0.30088,1.17986,,,,,,,0.11929,0.20746,0.30927,1.20916,,,,,,,0.11318,0.19466,0.29494,1.14792,,,,,,,0.14195,0.22168,0.33388,1.22697,,,,,,,0.10374,0.17458,0.29386,1.08082,,,,, +Small SUV,GSL,2015,,,0.00123,0.00219,0.0034,0.00724,,,,,,,0.00111,0.00199,0.00308,0.0064,,,,,,,0.00096,0.00209,0.00324,0.00684,,,,,,,0.00127,0.00229,0.00356,0.00766,,,,,,,0.00086,0.00146,0.0022,0.00419,,,,,,,0.00084,0.00156,0.00238,0.00463,,,,,,,0.00079,0.00134,0.00201,0.00378,,,,,,,0.0009,0.00168,0.00257,0.00515,,,,,,,0.00067,0.00129,0.00195,0.00367,,,,,,,0.0161,0.01245,0.01335,0.02003,,,,,,,0.01479,0.0115,0.0125,0.01863,,,,,,,0.01536,0.01279,0.01394,0.02146,,,,,,,0.01683,0.0141,0.01531,0.02343,,,,,,,0.01147,0.01026,0.01178,0.01756,,,,,,,0.01216,0.01086,0.01235,0.01859,,,,,,,0.01154,0.01025,0.01181,0.01741,,,,,,,0.01273,0.01123,0.01255,0.01882,,,,,,,0.00958,0.01005,0.01142,0.01653,,,,,,,2.41892,4.33656,5.91935,8.93887,,,,,,,2.4121,4.33186,5.94321,8.88324,,,,,,,2.65083,4.79052,6.72794,10.4182,,,,,,,2.63872,5.10144,7.17506,11.02674,,,,,,,2.3185,4.66114,6.60144,9.92382,,,,,,,2.42459,4.7745,6.77574,10.28752,,,,,,,2.38443,4.79547,6.77741,10.16121,,,,,,,2.43831,4.72761,6.59275,9.93234,,,,,,,2.18539,4.24202,5.86133,8.70142,,,,,,,417.80578,420.2109,424.14823,467.84413,,,,,,,421.31986,423.45203,427.00606,470.26623,,,,,,,427.14988,429.44167,433.23593,477.47064,,,,,,,417.53629,419.85589,423.69113,467.16687,,,,,,,428.84446,430.03585,432.26554,473.61822,,,,,,,421.83373,423.30015,425.91496,467.4037,,,,,,,425.79802,426.88889,428.98097,469.79874,,,,,,,425.31866,426.91645,429.71843,471.87079,,,,,,,419.07393,420.44436,422.88407,463.78938,,,,,,,0.0058,0.00662,0.00783,0.01322,,,,,,,0.00581,0.00663,0.00783,0.01321,,,,,,,0.00591,0.00673,0.00793,0.01336,,,,,,,0.00568,0.00649,0.00768,0.01299,,,,,,,0.00588,0.0067,0.0079,0.01331,,,,,,,0.00575,0.00656,0.00775,0.01308,,,,,,,0.0058,0.00662,0.00782,0.0132,,,,,,,0.00585,0.00668,0.00788,0.0133,,,,,,,0.0059,0.00673,0.00795,0.01341,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01896,0.02161,0.02752,0.02892,,,,,,,0.01896,0.02161,0.02751,0.02892,,,,,,,0.01887,0.0215,0.02737,0.02877,,,,,,,0.01894,0.02159,0.02748,0.02889,,,,,,,0.01888,0.02152,0.0274,0.0288,,,,,,,0.01893,0.02158,0.02747,0.02887,,,,,,,0.01897,0.02162,0.02753,0.02894,,,,,,,0.01901,0.02167,0.02758,0.029,,,,,,,0.12726,0.15779,0.2359,0.43831,,,,,,,0.12661,0.1551,0.23259,0.43239,,,,,,,0.12663,0.16699,0.24899,0.47981,,,,,,,0.13269,0.17823,0.26561,0.51064,,,,,,,0.11633,0.15513,0.23427,0.46006,,,,,,,0.12172,0.16201,0.24382,0.47478,,,,,,,0.11917,0.15687,0.2372,0.45947,,,,,,,0.12664,0.17298,0.25908,0.49504,,,,,,,0.09155,0.15494,0.23271,0.43913,,,,,,,0.00236,0.00401,0.00584,0.01128,,,,,,,0.00224,0.00382,0.00553,0.01038,,,,,,,0.00203,0.00389,0.00565,0.01079,,,,,,,0.00237,0.00407,0.00595,0.01163,,,,,,,0.00203,0.00332,0.00471,0.00801,,,,,,,0.00197,0.00339,0.00484,0.00843,,,,,,,0.00194,0.00316,0.00447,0.00751,,,,,,,0.00199,0.0035,0.00502,0.009,,,,,,,0.00174,0.00308,0.00435,0.00734,,,,,,,0.04603,0.04969,0.05391,0.06664,,,,,,,0.04711,0.05059,0.05449,0.06575,,,,,,,0.05065,0.05481,0.05885,0.07088,,,,,,,0.04324,0.04704,0.05139,0.06479,,,,,,,0.04972,0.05245,0.0555,0.06291,,,,,,,0.0453,0.04835,0.05156,0.05973,,,,,,,0.04545,0.04801,0.05085,0.05764,,,,,,,0.04769,0.05095,0.05435,0.06346,,,,,,,0.04686,0.0497,0.05247,0.05913,,,,,,,0.00989,0.01312,0.01686,0.02812,,,,,,,0.00978,0.01286,0.01631,0.02627,,,,,,,0.00987,0.01354,0.01712,0.02776,,,,,,,0.00957,0.01294,0.01679,0.02864,,,,,,,0.00967,0.01208,0.01478,0.02133,,,,,,,0.00902,0.01172,0.01456,0.02178,,,,,,,0.00896,0.01123,0.01375,0.01975,,,,,,,0.00939,0.01228,0.01528,0.02334,,,,,,,0.0088,0.01131,0.01376,0.01965,,,,,,,0.008,0.00268,0.00271,0.00298,,,,,,,0.00806,0.0027,0.00272,0.003,,,,,,,0.00817,0.00274,0.00276,0.00305,,,,,,,0.00799,0.00268,0.0027,0.00298,,,,,,,0.00821,0.00274,0.00276,0.00302,,,,,,,0.00807,0.0027,0.00272,0.00298,,,,,,,0.00815,0.00272,0.00274,0.003,,,,,,,0.00729,0.00268,0.0027,0.00297,,,,,,,0.00379,0.00248,0.00249,0.00274,,,,,,,0.12213,0.17712,0.29005,0.70735,,,,,,,0.11203,0.16409,0.27404,0.67698,,,,,,,0.11963,0.18088,0.30198,0.74968,,,,,,,0.12863,0.1961,0.32415,0.78504,,,,,,,0.08956,0.14979,0.26931,0.68556,,,,,,,0.09364,0.15442,0.27381,0.69274,,,,,,,0.08864,0.14766,0.26602,0.67221,,,,,,,0.10326,0.16643,0.28822,0.71931,,,,,,,0.08381,0.14803,0.26422,0.66019,,,, +Small SUV,GSL,2020,,,,0.00111,0.0019,0.0027,0.00544,,,,,,,0.00102,0.00173,0.00245,0.00487,,,,,,,0.00106,0.00181,0.00257,0.00515,,,,,,,0.00115,0.00198,0.00282,0.00571,,,,,,,0.00077,0.00128,0.00177,0.00335,,,,,,,0.00081,0.00137,0.00191,0.00365,,,,,,,0.00071,0.00118,0.00162,0.00303,,,,,,,0.00087,0.00147,0.00206,0.004,,,,,,,0.00068,0.00114,0.00157,0.00294,,,,,,,0.01244,0.01062,0.01056,0.0145,,,,,,,0.01117,0.00971,0.00975,0.01343,,,,,,,0.01176,0.0108,0.01086,0.0154,,,,,,,0.013,0.01196,0.01199,0.01693,,,,,,,0.00797,0.00826,0.00862,0.01244,,,,,,,0.00867,0.00885,0.00916,0.01322,,,,,,,0.00792,0.00822,0.0086,0.01238,,,,,,,0.00964,0.00923,0.00945,0.01342,,,,,,,0.00815,0.00802,0.00832,0.01173,,,,,,,1.98412,3.05614,3.85917,5.9948,,,,,,,1.94741,3.02329,3.82708,5.94981,,,,,,,2.05353,3.34712,4.32508,6.99457,,,,,,,2.18775,3.57736,4.63745,7.44986,,,,,,,1.85063,3.15883,4.09436,6.61173,,,,,,,1.9126,3.25918,4.23944,6.88954,,,,,,,1.91411,3.25336,4.21327,6.78993,,,,,,,1.97565,3.24561,4.16121,6.63788,,,,,,,1.76168,2.88267,3.66119,5.76271,,,,,,,358.81555,361.18833,365.14237,398.76896,,,,,,,361.68251,363.82072,367.43201,400.63283,,,,,,,366.76287,369.04397,372.87777,406.86717,,,,,,,358.56644,360.86485,364.72655,398.17327,,,,,,,367.63648,368.96541,371.38663,402.81473,,,,,,,361.78394,363.34603,366.10888,397.74489,,,,,,,364.98686,366.22711,368.52024,399.52154,,,,,,,364.82891,366.50745,369.4426,401.61938,,,,,,,359.32494,360.80176,363.40326,394.54072,,,,,,,0.00594,0.00671,0.00789,0.01068,,,,,,,0.00595,0.00672,0.00789,0.01067,,,,,,,0.00605,0.00682,0.008,0.01079,,,,,,,0.00582,0.00658,0.00775,0.01049,,,,,,,0.00602,0.00679,0.00796,0.01075,,,,,,,0.00589,0.00665,0.00781,0.01057,,,,,,,0.00594,0.00671,0.00788,0.01066,,,,,,,0.006,0.00677,0.00795,0.01074,,,,,,,0.00604,0.00682,0.00801,0.01083,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01892,0.02175,0.02749,0.02749,,,,,,,0.01892,0.02174,0.02748,0.02748,,,,,,,0.01883,0.02163,0.02735,0.02735,,,,,,,0.0189,0.02172,0.02746,0.02746,,,,,,,0.01884,0.02165,0.02737,0.02738,,,,,,,0.01889,0.02171,0.02744,0.02744,,,,,,,0.01893,0.02175,0.0275,0.0275,,,,,,,0.01897,0.0218,0.02756,0.02756,,,,,,,0.08638,0.14226,0.19125,0.27057,,,,,,,0.08489,0.13968,0.18814,0.26613,,,,,,,0.08555,0.1498,0.20047,0.28994,,,,,,,0.09023,0.16047,0.21466,0.31065,,,,,,,0.07577,0.13797,0.18613,0.27156,,,,,,,0.08,0.14491,0.19507,0.28341,,,,,,,0.07763,0.14,0.18915,0.27379,,,,,,,0.08826,0.155,0.20807,0.29902,,,,,,,0.08019,0.13849,0.18641,0.26551,,,,,,,0.00215,0.00349,0.00466,0.00836,,,,,,,0.00207,0.00334,0.00442,0.00782,,,,,,,0.00209,0.00339,0.00451,0.00805,,,,,,,0.00218,0.00354,0.00474,0.00857,,,,,,,0.00183,0.00291,0.00379,0.00638,,,,,,,0.00186,0.00297,0.00388,0.00662,,,,,,,0.00175,0.00277,0.00359,0.006,,,,,,,0.00191,0.00307,0.00402,0.00695,,,,,,,0.0017,0.0027,0.0035,0.00585,,,,,,,0.04555,0.04855,0.05126,0.06005,,,,,,,0.04671,0.04953,0.05203,0.06001,,,,,,,0.05082,0.05371,0.05631,0.06468,,,,,,,0.04279,0.04586,0.04866,0.05781,,,,,,,0.04928,0.0516,0.05353,0.05938,,,,,,,0.04507,0.04747,0.0495,0.05576,,,,,,,0.04503,0.04721,0.04899,0.05437,,,,,,,0.0475,0.05002,0.05218,0.05893,,,,,,,0.0468,0.04892,0.05067,0.05592,,,,,,,0.00946,0.01211,0.01451,0.02229,,,,,,,0.00943,0.01192,0.01414,0.0212,,,,,,,0.01001,0.01257,0.01487,0.02228,,,,,,,0.00917,0.01189,0.01437,0.02247,,,,,,,0.00928,0.01133,0.01303,0.01821,,,,,,,0.00882,0.01094,0.01274,0.01827,,,,,,,0.0086,0.01052,0.0121,0.01686,,,,,,,0.00923,0.01145,0.01337,0.01934,,,,,,,0.00875,0.01062,0.01217,0.01681,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00231,0.00232,0.00234,0.00256,,,,,,,0.00234,0.00235,0.00238,0.0026,,,,,,,0.00229,0.0023,0.00233,0.00254,,,,,,,0.00235,0.00235,0.00237,0.00257,,,,,,,0.00231,0.00232,0.00234,0.00254,,,,,,,0.00233,0.00234,0.00235,0.00255,,,,,,,0.00229,0.0023,0.00232,0.00252,,,,,,,0.00212,0.00213,0.00214,0.00233,,,,,,,0.10681,0.15223,0.23047,0.5305,,,,,,,0.09676,0.13927,0.21444,0.5076,,,,,,,0.10312,0.1544,0.23771,0.55665,,,,,,,0.11204,0.16827,0.25638,0.58055,,,,,,,0.07433,0.12126,0.20009,0.5114,,,,,,,0.07854,0.12688,0.20621,0.51463,,,,,,,0.073,0.11854,0.19561,0.50045,,,,,,,0.08874,0.13765,0.21919,0.53537,,,,,,,0.07465,0.11889,0.19504,0.49641,,, +Small SUV,GSL,2025,,,,,0.00073,0.00122,0.00173,0.00388,,,,,,,0.00067,0.00111,0.00157,0.00349,,,,,,,0.0007,0.00116,0.00165,0.00368,,,,,,,0.00076,0.00127,0.0018,0.00405,,,,,,,0.0005,0.00082,0.00114,0.00243,,,,,,,0.00054,0.00088,0.00122,0.00265,,,,,,,0.00047,0.00076,0.00104,0.0022,,,,,,,0.00057,0.00094,0.00132,0.00289,,,,,,,0.00045,0.00073,0.00101,0.00215,,,,,,,0.00983,0.00771,0.00747,0.01097,,,,,,,0.00855,0.00681,0.00667,0.00999,,,,,,,0.00921,0.00761,0.00744,0.01151,,,,,,,0.01035,0.00853,0.00832,0.01275,,,,,,,0.00522,0.0049,0.00505,0.0086,,,,,,,0.00595,0.00546,0.00556,0.00931,,,,,,,0.00509,0.00481,0.00498,0.0085,,,,,,,0.00692,0.00598,0.00599,0.00962,,,,,,,0.00526,0.00476,0.00489,0.00805,,,,,,,1.32356,1.935,2.47035,4.16644,,,,,,,1.26208,1.86822,2.39568,4.08539,,,,,,,1.34874,2.08374,2.71997,4.83941,,,,,,,1.44605,2.24291,2.93583,5.18495,,,,,,,1.09246,1.8126,2.39449,4.39793,,,,,,,1.15543,1.90448,2.52006,4.63139,,,,,,,1.12816,1.86764,2.46557,4.52168,,,,,,,1.22197,1.93084,2.51333,4.48306,,,,,,,1.0488,1.66708,2.15449,3.822,,,,,,,295.67753,297.1312,300.0795,335.48444,,,,,,,297.90559,299.15415,301.79313,336.80763,,,,,,,302.15866,303.52196,306.35164,342.17235,,,,,,,295.45907,296.85162,299.72165,334.95939,,,,,,,302.35961,302.90629,304.47581,337.81918,,,,,,,297.68774,298.44366,300.32782,333.8287,,,,,,,300.14783,300.62317,302.08501,334.99803,,,,,,,300.24253,301.09285,303.12478,337.17159,,,,,,,295.57684,296.26033,297.99763,330.98059,,,,,,,0.00598,0.0067,0.00786,0.01025,,,,,,,0.00599,0.00671,0.00786,0.01024,,,,,,,0.00608,0.00681,0.00796,0.01035,,,,,,,0.00586,0.00657,0.00771,0.01007,,,,,,,0.00606,0.00678,0.00793,0.01031,,,,,,,0.00593,0.00664,0.00778,0.01014,,,,,,,0.00597,0.0067,0.00785,0.01023,,,,,,,0.00603,0.00676,0.00791,0.0103,,,,,,,0.00608,0.00681,0.00798,0.01039,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01892,0.02171,0.02748,0.02748,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02737,0.02737,,,,,,,0.0189,0.02168,0.02744,0.02744,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01897,0.02177,0.02756,0.02756,,,,,,,0.053,0.07997,0.10739,0.18231,,,,,,,0.05125,0.07748,0.10434,0.17814,,,,,,,0.05177,0.08246,0.11045,0.19456,,,,,,,0.05492,0.08867,0.11867,0.20937,,,,,,,0.04278,0.07194,0.09773,0.17747,,,,,,,0.04625,0.07691,0.10402,0.18706,,,,,,,0.04386,0.07318,0.09951,0.17892,,,,,,,0.05133,0.08292,0.11176,0.19769,,,,,,,0.04556,0.07312,0.09907,0.17375,,,,,,,0.00142,0.00225,0.00301,0.00602,,,,,,,0.00136,0.00216,0.00286,0.00565,,,,,,,0.00138,0.00219,0.00291,0.0058,,,,,,,0.00144,0.00228,0.00306,0.00614,,,,,,,0.00121,0.00189,0.00245,0.00465,,,,,,,0.00123,0.00192,0.00251,0.00482,,,,,,,0.00115,0.00179,0.00232,0.00436,,,,,,,0.00126,0.00198,0.0026,0.00505,,,,,,,0.00113,0.00175,0.00227,0.00428,,,,,,,0.04396,0.04582,0.04757,0.05464,,,,,,,0.0452,0.04695,0.04857,0.05506,,,,,,,0.04928,0.05108,0.05275,0.05951,,,,,,,0.04117,0.04307,0.04487,0.05217,,,,,,,0.04799,0.04943,0.05068,0.0556,,,,,,,0.04374,0.04523,0.04655,0.05177,,,,,,,0.0438,0.04515,0.04632,0.05084,,,,,,,0.04613,0.04769,0.04909,0.05468,,,,,,,0.04561,0.04693,0.04807,0.05253,,,,,,,0.00805,0.0097,0.01125,0.01751,,,,,,,0.00809,0.00964,0.01107,0.01682,,,,,,,0.00865,0.01024,0.01172,0.01771,,,,,,,0.00774,0.00942,0.01102,0.01747,,,,,,,0.00813,0.00941,0.01052,0.01486,,,,,,,0.00764,0.00896,0.01013,0.01474,,,,,,,0.00751,0.00871,0.00973,0.01373,,,,,,,0.00801,0.0094,0.01064,0.01558,,,,,,,0.00769,0.00886,0.00986,0.01381,,,,,,,0.00189,0.0019,0.00191,0.00214,,,,,,,0.0019,0.00191,0.00193,0.00215,,,,,,,0.00193,0.00194,0.00195,0.00218,,,,,,,0.00188,0.00189,0.00191,0.00214,,,,,,,0.00193,0.00193,0.00194,0.00216,,,,,,,0.0019,0.0019,0.00192,0.00213,,,,,,,0.00191,0.00192,0.00193,0.00214,,,,,,,0.00189,0.00189,0.00191,0.00212,,,,,,,0.00174,0.00175,0.00176,0.00195,,,,,,,0.09086,0.11927,0.17637,0.44935,,,,,,,0.08047,0.10611,0.16004,0.42736,,,,,,,0.08702,0.11866,0.17889,0.46919,,,,,,,0.09566,0.13072,0.1944,0.48789,,,,,,,0.05626,0.08246,0.13652,0.42084,,,,,,,0.06117,0.0888,0.14363,0.42523,,,,,,,0.05454,0.07911,0.13102,0.40845,,,,,,,0.07055,0.09906,0.15616,0.44357,,,,,,,0.05554,0.07992,0.13197,0.40789,, +Small SUV,GSL,2030,,,,,,0.00073,0.00121,0.00172,0.00318,,,,,,,0.00067,0.00111,0.00156,0.00286,,,,,,,0.0007,0.00116,0.00163,0.00302,,,,,,,0.00076,0.00126,0.00178,0.00332,,,,,,,0.0005,0.00082,0.00113,0.002,,,,,,,0.00053,0.00088,0.00121,0.00218,,,,,,,0.00046,0.00075,0.00103,0.00181,,,,,,,0.00057,0.00094,0.00131,0.00237,,,,,,,0.00045,0.00073,0.00101,0.00177,,,,,,,0.0091,0.00694,0.00673,0.00917,,,,,,,0.00781,0.00605,0.00593,0.00818,,,,,,,0.00848,0.00675,0.00662,0.00933,,,,,,,0.00959,0.0076,0.00743,0.01041,,,,,,,0.00446,0.00402,0.00419,0.00636,,,,,,,0.0052,0.00456,0.00468,0.00702,,,,,,,0.00431,0.00391,0.0041,0.00625,,,,,,,0.00617,0.00513,0.00516,0.00749,,,,,,,0.00447,0.00391,0.00405,0.00601,,,,,,,1.17118,1.70869,2.20698,3.28782,,,,,,,1.10423,1.6357,2.12259,3.1829,,,,,,,1.18602,1.82687,2.41172,3.73977,,,,,,,1.27427,1.96961,2.60597,4.02112,,,,,,,0.91825,1.54056,2.06129,3.26417,,,,,,,0.98099,1.62928,2.18245,3.46347,,,,,,,0.94724,1.58654,2.12244,3.35708,,,,,,,1.04789,1.66456,2.19203,3.3993,,,,,,,0.88389,1.42109,1.85989,2.86598,,,,,,,270.76593,273.27727,277.47598,300.46159,,,,,,,272.74859,275.0795,278.99033,301.51289,,,,,,,276.67215,279.12574,283.24077,306.38401,,,,,,,270.5609,273.01543,277.14026,299.98014,,,,,,,276.6334,278.33407,281.23532,301.9687,,,,,,,272.41989,274.29556,277.47861,298.54537,,,,,,,274.59538,276.22216,279.01003,299.41486,,,,,,,274.77894,276.75165,280.08826,301.58434,,,,,,,270.44954,272.24886,275.27673,295.9075,,,,,,,0.00597,0.00668,0.00786,0.01022,,,,,,,0.00598,0.00669,0.00786,0.01021,,,,,,,0.00608,0.00679,0.00796,0.01032,,,,,,,0.00585,0.00655,0.00771,0.01004,,,,,,,0.00605,0.00676,0.00793,0.01028,,,,,,,0.00592,0.00662,0.00778,0.01011,,,,,,,0.00597,0.00667,0.00785,0.0102,,,,,,,0.00603,0.00674,0.00791,0.01027,,,,,,,0.00607,0.00679,0.00798,0.01036,,,,,,,0.01891,0.02171,0.02746,0.02746,,,,,,,0.01893,0.02173,0.02749,0.02749,,,,,,,0.01892,0.02172,0.02749,0.02749,,,,,,,0.01883,0.02162,0.02735,0.02735,,,,,,,0.01891,0.0217,0.02746,0.02746,,,,,,,0.01885,0.02164,0.02738,0.02738,,,,,,,0.0189,0.02169,0.02745,0.02745,,,,,,,0.01894,0.02174,0.0275,0.0275,,,,,,,0.01898,0.02178,0.02756,0.02756,,,,,,,0.0429,0.06364,0.0876,0.13698,,,,,,,0.04106,0.06117,0.08456,0.13284,,,,,,,0.04138,0.0646,0.08899,0.14366,,,,,,,0.04391,0.06942,0.09553,0.15458,,,,,,,0.03266,0.05446,0.07671,0.12705,,,,,,,0.03584,0.05881,0.08225,0.13513,,,,,,,0.03351,0.05544,0.0781,0.12836,,,,,,,0.04,0.06385,0.08888,0.14384,,,,,,,0.03505,0.05596,0.07853,0.12591,,,,,,,0.00142,0.00225,0.00299,0.00497,,,,,,,0.00136,0.00215,0.00284,0.00467,,,,,,,0.00138,0.00218,0.0029,0.00479,,,,,,,0.00143,0.00228,0.00303,0.00508,,,,,,,0.00121,0.00188,0.00244,0.00386,,,,,,,0.00123,0.00192,0.0025,0.004,,,,,,,0.00115,0.00179,0.00231,0.00363,,,,,,,0.00126,0.00198,0.00259,0.00418,,,,,,,0.00112,0.00175,0.00227,0.00355,,,,,,,0.04395,0.04581,0.04752,0.05222,,,,,,,0.04519,0.04694,0.04853,0.05283,,,,,,,0.04927,0.05106,0.05271,0.05719,,,,,,,0.04116,0.04306,0.04481,0.04968,,,,,,,0.04798,0.04942,0.05065,0.05387,,,,,,,0.04374,0.04523,0.04652,0.04995,,,,,,,0.04379,0.04515,0.04628,0.04924,,,,,,,0.04613,0.04769,0.04907,0.05273,,,,,,,0.04561,0.04693,0.04806,0.05094,,,,,,,0.00805,0.00969,0.01121,0.01536,,,,,,,0.00809,0.00963,0.01104,0.01484,,,,,,,0.00865,0.01023,0.01169,0.01565,,,,,,,0.00773,0.00941,0.01096,0.01527,,,,,,,0.00813,0.0094,0.01049,0.01334,,,,,,,0.00764,0.00896,0.0101,0.01313,,,,,,,0.0075,0.0087,0.0097,0.01232,,,,,,,0.00801,0.00939,0.01061,0.01386,,,,,,,0.00769,0.00886,0.00986,0.01241,,,,,,,0.00173,0.00174,0.00177,0.00192,,,,,,,0.00174,0.00175,0.00178,0.00192,,,,,,,0.00177,0.00178,0.00181,0.00195,,,,,,,0.00173,0.00174,0.00177,0.00191,,,,,,,0.00176,0.00178,0.00179,0.00193,,,,,,,0.00174,0.00175,0.00177,0.0019,,,,,,,0.00175,0.00176,0.00178,0.00191,,,,,,,0.00173,0.00174,0.00176,0.0019,,,,,,,0.0016,0.00161,0.00162,0.00175,,,,,,,0.0862,0.11097,0.16487,0.39748,,,,,,,0.07579,0.09787,0.14854,0.37511,,,,,,,0.08233,0.1096,0.16628,0.4108,,,,,,,0.09081,0.12111,0.18091,0.4273,,,,,,,0.05129,0.07306,0.123,0.35862,,,,,,,0.05632,0.07942,0.1302,0.36379,,,,,,,0.0495,0.06962,0.1173,0.34581,,,,,,,0.06547,0.08966,0.14269,0.38263,,,,,,,0.05029,0.07054,0.11865,0.34825, +Small SUV,GSL,2035,,,,,,,0.00073,0.0012,0.00172,0.00294,,,,,,,0.00067,0.0011,0.00156,0.00265,,,,,,,0.00069,0.00115,0.00164,0.00279,,,,,,,0.00075,0.00124,0.00179,0.00307,,,,,,,0.0005,0.00081,0.00113,0.00185,,,,,,,0.00053,0.00087,0.00122,0.00201,,,,,,,0.00046,0.00075,0.00103,0.00168,,,,,,,0.00057,0.00093,0.00131,0.00219,,,,,,,0.00045,0.00073,0.00101,0.00163,,,,,,,0.00908,0.00695,0.00672,0.0085,,,,,,,0.00779,0.00605,0.00592,0.00751,,,,,,,0.00846,0.00676,0.00661,0.0085,,,,,,,0.00956,0.00762,0.00742,0.00952,,,,,,,0.00445,0.00402,0.00418,0.00551,,,,,,,0.00519,0.00457,0.00467,0.00614,,,,,,,0.0043,0.00391,0.00409,0.0054,,,,,,,0.00615,0.00513,0.00515,0.00668,,,,,,,0.00446,0.00391,0.00405,0.00526,,,,,,,1.16868,1.71324,2.20253,2.98485,,,,,,,1.10186,1.6388,2.11914,2.87174,,,,,,,1.18344,1.83083,2.4075,3.35064,,,,,,,1.27152,1.9735,2.60169,3.6076,,,,,,,0.91609,1.53888,2.06095,2.86559,,,,,,,0.9787,1.62843,2.1815,3.05052,,,,,,,0.94514,1.58555,2.12161,2.94713,,,,,,,1.0454,1.66457,2.1905,3.02057,,,,,,,0.88179,1.42046,1.85907,2.53587,,,,,,,270.7007,273.26195,277.45317,288.61876,,,,,,,272.68814,275.0658,278.96903,289.58601,,,,,,,276.60824,279.1109,283.21846,294.28649,,,,,,,270.4964,273.00053,277.11785,288.1531,,,,,,,276.58888,278.32458,281.21943,289.88038,,,,,,,272.37089,274.28482,277.46143,286.64007,,,,,,,274.55263,276.21307,278.99526,287.41862,,,,,,,274.7276,276.74013,280.07009,289.57357,,,,,,,270.40395,272.23914,275.26051,284.0777,,,,,,,0.00595,0.00668,0.00785,0.01021,,,,,,,0.00596,0.00668,0.00785,0.0102,,,,,,,0.00606,0.00678,0.00795,0.01032,,,,,,,0.00583,0.00655,0.0077,0.01004,,,,,,,0.00603,0.00675,0.00792,0.01028,,,,,,,0.0059,0.00661,0.00777,0.01011,,,,,,,0.00595,0.00667,0.00784,0.01019,,,,,,,0.00601,0.00673,0.0079,0.01027,,,,,,,0.00605,0.00678,0.00797,0.01036,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01893,0.02172,0.02749,0.02749,,,,,,,0.01893,0.02171,0.02749,0.02749,,,,,,,0.01883,0.02161,0.02735,0.02735,,,,,,,0.01891,0.02169,0.02746,0.02746,,,,,,,0.01885,0.02163,0.02738,0.02738,,,,,,,0.0189,0.02168,0.02745,0.02745,,,,,,,0.01894,0.02173,0.0275,0.0275,,,,,,,0.01898,0.02177,0.02756,0.02756,,,,,,,0.04276,0.06341,0.08764,0.12009,,,,,,,0.04092,0.06095,0.08461,0.11594,,,,,,,0.04123,0.06436,0.08905,0.12426,,,,,,,0.04375,0.06913,0.09561,0.13359,,,,,,,0.03255,0.05427,0.07674,0.10779,,,,,,,0.03572,0.0586,0.08229,0.11525,,,,,,,0.03341,0.05522,0.07816,0.10912,,,,,,,0.03987,0.06367,0.0889,0.12337,,,,,,,0.03495,0.05586,0.07851,0.10793,,,,,,,0.00141,0.00224,0.003,0.00461,,,,,,,0.00136,0.00214,0.00285,0.00434,,,,,,,0.00137,0.00217,0.0029,0.00445,,,,,,,0.00143,0.00226,0.00304,0.00471,,,,,,,0.0012,0.00187,0.00245,0.00359,,,,,,,0.00122,0.00191,0.0025,0.00371,,,,,,,0.00115,0.00178,0.00232,0.00338,,,,,,,0.00126,0.00197,0.0026,0.00388,,,,,,,0.00112,0.00175,0.00227,0.00329,,,,,,,0.04394,0.04577,0.04754,0.05138,,,,,,,0.04518,0.04691,0.04854,0.05205,,,,,,,0.04926,0.05103,0.05272,0.05639,,,,,,,0.04114,0.04301,0.04484,0.04884,,,,,,,0.04798,0.0494,0.05066,0.05326,,,,,,,0.04373,0.0452,0.04654,0.04931,,,,,,,0.04379,0.04512,0.0463,0.04869,,,,,,,0.04612,0.04766,0.04908,0.05205,,,,,,,0.0456,0.04692,0.04806,0.05038,,,,,,,0.00804,0.00966,0.01122,0.01462,,,,,,,0.00808,0.0096,0.01105,0.01415,,,,,,,0.00864,0.0102,0.0117,0.01494,,,,,,,0.00772,0.00937,0.01099,0.01452,,,,,,,0.00812,0.00938,0.0105,0.0128,,,,,,,0.00763,0.00893,0.01011,0.01257,,,,,,,0.00749,0.00867,0.00971,0.01183,,,,,,,0.008,0.00937,0.01062,0.01325,,,,,,,0.00768,0.00885,0.00986,0.01191,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00174,0.00175,0.00178,0.00185,,,,,,,0.00176,0.00178,0.00181,0.00188,,,,,,,0.00173,0.00174,0.00177,0.00184,,,,,,,0.00176,0.00178,0.00179,0.00185,,,,,,,0.00174,0.00175,0.00177,0.00183,,,,,,,0.00175,0.00176,0.00178,0.00183,,,,,,,0.00173,0.00174,0.00176,0.00182,,,,,,,0.0016,0.00161,0.00162,0.00168,,,,,,,0.08589,0.11097,0.16466,0.37821,,,,,,,0.07552,0.09786,0.14836,0.35567,,,,,,,0.08204,0.10964,0.16604,0.38863,,,,,,,0.09048,0.12107,0.1807,0.4043,,,,,,,0.05111,0.07292,0.12293,0.33508,,,,,,,0.05612,0.07932,0.13009,0.34042,,,,,,,0.04933,0.06946,0.11726,0.32215,,,,,,,0.06521,0.08942,0.14265,0.35977,,,,,,,0.05012,0.07044,0.11856,0.32597 +Small SUV,GSL,2040,,,,,,,,0.00072,0.00121,0.00173,,,,,,,,0.00066,0.0011,0.00157,,,,,,,,0.00069,0.00115,0.00165,,,,,,,,0.00074,0.00125,0.0018,,,,,,,,0.0005,0.00082,0.00114,,,,,,,,0.00053,0.00087,0.00122,,,,,,,,0.00046,0.00075,0.00104,,,,,,,,0.00057,0.00094,0.00132,,,,,,,,0.00045,0.00073,0.00101,,,,,,,,0.00909,0.00694,0.00671,,,,,,,,0.0078,0.00604,0.00591,,,,,,,,0.00848,0.00675,0.0066,,,,,,,,0.00958,0.0076,0.00741,,,,,,,,0.00445,0.00402,0.00417,,,,,,,,0.0052,0.00456,0.00467,,,,,,,,0.0043,0.00391,0.00409,,,,,,,,0.00615,0.00512,0.00515,,,,,,,,0.00446,0.0039,0.00405,,,,,,,,1.17274,1.70986,2.19797,,,,,,,,1.10473,1.63617,2.11558,,,,,,,,1.1875,1.82775,2.40328,,,,,,,,1.27601,1.97041,2.59749,,,,,,,,0.91541,1.53869,2.06067,,,,,,,,0.9788,1.6278,2.18062,,,,,,,,0.94491,1.58502,2.12074,,,,,,,,1.04589,1.66344,2.18904,,,,,,,,0.88133,1.41976,1.85822,,,,,,,,270.63193,273.19435,277.39854,,,,,,,,272.61931,274.99811,278.91368,,,,,,,,276.53801,279.04213,283.16233,,,,,,,,270.42775,272.93311,277.0631,,,,,,,,276.52064,278.2576,281.16187,,,,,,,,272.30328,274.21816,277.40521,,,,,,,,274.4849,276.14679,278.93807,,,,,,,,274.65895,276.67287,280.01374,,,,,,,,270.33723,272.17336,275.20476,,,,,,,,0.00595,0.00667,0.00785,,,,,,,,0.00596,0.00668,0.00785,,,,,,,,0.00606,0.00678,0.00795,,,,,,,,0.00583,0.00654,0.0077,,,,,,,,0.00603,0.00675,0.00792,,,,,,,,0.0059,0.00661,0.00777,,,,,,,,0.00595,0.00667,0.00784,,,,,,,,0.006,0.00673,0.0079,,,,,,,,0.00605,0.00678,0.00797,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01892,0.02172,0.02749,,,,,,,,0.01892,0.02171,0.02748,,,,,,,,0.01883,0.0216,0.02735,,,,,,,,0.0189,0.02169,0.02746,,,,,,,,0.01884,0.02162,0.02737,,,,,,,,0.01889,0.02168,0.02744,,,,,,,,0.01893,0.02172,0.0275,,,,,,,,0.01897,0.02177,0.02756,,,,,,,,0.04261,0.06343,0.0877,,,,,,,,0.04078,0.06097,0.08466,,,,,,,,0.04108,0.06439,0.08912,,,,,,,,0.04356,0.06918,0.09572,,,,,,,,0.03244,0.05429,0.07679,,,,,,,,0.0356,0.05862,0.08234,,,,,,,,0.03328,0.05525,0.07822,,,,,,,,0.03976,0.06367,0.08892,,,,,,,,0.03489,0.05583,0.07848,,,,,,,,0.0014,0.00224,0.00301,,,,,,,,0.00135,0.00214,0.00286,,,,,,,,0.00137,0.00217,0.00291,,,,,,,,0.00142,0.00227,0.00305,,,,,,,,0.0012,0.00188,0.00245,,,,,,,,0.00122,0.00191,0.00251,,,,,,,,0.00114,0.00178,0.00232,,,,,,,,0.00125,0.00197,0.0026,,,,,,,,0.00112,0.00175,0.00227,,,,,,,,0.04392,0.04578,0.04756,,,,,,,,0.04517,0.04692,0.04856,,,,,,,,0.04924,0.05104,0.05274,,,,,,,,0.04112,0.04302,0.04487,,,,,,,,0.04796,0.04941,0.05068,,,,,,,,0.04371,0.04521,0.04655,,,,,,,,0.04377,0.04513,0.04631,,,,,,,,0.0461,0.04767,0.04909,,,,,,,,0.0456,0.04692,0.04806,,,,,,,,0.00802,0.00967,0.01124,,,,,,,,0.00806,0.00961,0.01107,,,,,,,,0.00862,0.01021,0.01172,,,,,,,,0.00769,0.00938,0.01101,,,,,,,,0.00811,0.00939,0.01051,,,,,,,,0.00762,0.00894,0.01013,,,,,,,,0.00748,0.00868,0.00973,,,,,,,,0.00799,0.00937,0.01063,,,,,,,,0.00768,0.00885,0.00986,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00174,0.00175,0.00178,,,,,,,,0.00176,0.00178,0.00181,,,,,,,,0.00173,0.00174,0.00177,,,,,,,,0.00176,0.00178,0.00179,,,,,,,,0.00174,0.00175,0.00177,,,,,,,,0.00175,0.00176,0.00178,,,,,,,,0.00173,0.00174,0.00176,,,,,,,,0.00159,0.00161,0.00162,,,,,,,,0.08595,0.11086,0.16458,,,,,,,,0.07555,0.09777,0.14829,,,,,,,,0.08213,0.10952,0.16594,,,,,,,,0.09052,0.12098,0.18066,,,,,,,,0.05106,0.07292,0.12299,,,,,,,,0.0561,0.0793,0.13013,,,,,,,,0.04926,0.06947,0.11733,,,,,,,,0.0651,0.08947,0.14281,,,,,,,,0.05009,0.07042,0.11858 +Small SUV,GSL,2045,,,,,,,,,0.00072,0.00121,,,,,,,,,0.00066,0.00111,,,,,,,,,0.00069,0.00116,,,,,,,,,0.00075,0.00126,,,,,,,,,0.0005,0.00082,,,,,,,,,0.00053,0.00087,,,,,,,,,0.00046,0.00075,,,,,,,,,0.00057,0.00094,,,,,,,,,0.00045,0.00073,,,,,,,,,0.00908,0.00693,,,,,,,,,0.00779,0.00604,,,,,,,,,0.00847,0.00674,,,,,,,,,0.00957,0.00759,,,,,,,,,0.00445,0.00401,,,,,,,,,0.00519,0.00455,,,,,,,,,0.0043,0.00391,,,,,,,,,0.00615,0.00512,,,,,,,,,0.00445,0.0039,,,,,,,,,1.1703,1.70666,,,,,,,,,1.10291,1.6338,,,,,,,,,1.18509,1.82476,,,,,,,,,1.27337,1.96738,,,,,,,,,0.91541,1.53891,,,,,,,,,0.9784,1.62753,,,,,,,,,0.9447,1.58486,,,,,,,,,1.04524,1.66273,,,,,,,,,0.88121,1.41952,,,,,,,,,270.61786,273.18975,,,,,,,,,272.60584,274.99348,,,,,,,,,276.52401,279.03722,,,,,,,,,270.41392,272.92828,,,,,,,,,276.50889,278.25281,,,,,,,,,272.29095,274.21347,,,,,,,,,274.47369,276.14208,,,,,,,,,274.64645,276.66822,,,,,,,,,270.32548,272.16861,,,,,,,,,0.00595,0.00667,,,,,,,,,0.00596,0.00668,,,,,,,,,0.00605,0.00678,,,,,,,,,0.00583,0.00654,,,,,,,,,0.00603,0.00675,,,,,,,,,0.00589,0.00661,,,,,,,,,0.00594,0.00667,,,,,,,,,0.006,0.00673,,,,,,,,,0.00605,0.00678,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01892,0.02171,,,,,,,,,0.01883,0.0216,,,,,,,,,0.0189,0.02169,,,,,,,,,0.01884,0.02162,,,,,,,,,0.01889,0.02168,,,,,,,,,0.01893,0.02172,,,,,,,,,0.01897,0.02177,,,,,,,,,0.04265,0.06351,,,,,,,,,0.04082,0.06104,,,,,,,,,0.04112,0.06448,,,,,,,,,0.04362,0.06929,,,,,,,,,0.03247,0.05434,,,,,,,,,0.03563,0.05869,,,,,,,,,0.03331,0.05532,,,,,,,,,0.03978,0.06372,,,,,,,,,0.0349,0.05584,,,,,,,,,0.00141,0.00225,,,,,,,,,0.00135,0.00215,,,,,,,,,0.00137,0.00218,,,,,,,,,0.00142,0.00228,,,,,,,,,0.0012,0.00188,,,,,,,,,0.00122,0.00192,,,,,,,,,0.00114,0.00179,,,,,,,,,0.00125,0.00198,,,,,,,,,0.00112,0.00175,,,,,,,,,0.04392,0.0458,,,,,,,,,0.04517,0.04693,,,,,,,,,0.04925,0.05106,,,,,,,,,0.04113,0.04305,,,,,,,,,0.04797,0.04942,,,,,,,,,0.04372,0.04522,,,,,,,,,0.04377,0.04514,,,,,,,,,0.04611,0.04768,,,,,,,,,0.0456,0.04692,,,,,,,,,0.00802,0.00968,,,,,,,,,0.00807,0.00963,,,,,,,,,0.00863,0.01022,,,,,,,,,0.0077,0.0094,,,,,,,,,0.00811,0.0094,,,,,,,,,0.00762,0.00895,,,,,,,,,0.00749,0.00869,,,,,,,,,0.00799,0.00938,,,,,,,,,0.00768,0.00885,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00176,0.00178,,,,,,,,,0.00174,0.00175,,,,,,,,,0.00175,0.00176,,,,,,,,,0.00173,0.00174,,,,,,,,,0.00159,0.00161,,,,,,,,,0.08586,0.11079,,,,,,,,,0.07549,0.09771,,,,,,,,,0.08204,0.10943,,,,,,,,,0.09044,0.12092,,,,,,,,,0.05105,0.07294,,,,,,,,,0.05607,0.0793,,,,,,,,,0.04926,0.0695,,,,,,,,,0.06511,0.08954,,,,,,,,,0.05007,0.07042 +Small SUV,GSL,2050,,,,,,,,,,0.00073,,,,,,,,,,0.00067,,,,,,,,,,0.00069,,,,,,,,,,0.00075,,,,,,,,,,0.0005,,,,,,,,,,0.00053,,,,,,,,,,0.00046,,,,,,,,,,0.00057,,,,,,,,,,0.00045,,,,,,,,,,0.00907,,,,,,,,,,0.00778,,,,,,,,,,0.00845,,,,,,,,,,0.00955,,,,,,,,,,0.00444,,,,,,,,,,0.00518,,,,,,,,,,0.0043,,,,,,,,,,0.00614,,,,,,,,,,0.00445,,,,,,,,,,1.16765,,,,,,,,,,1.10092,,,,,,,,,,1.18243,,,,,,,,,,1.27045,,,,,,,,,,0.91538,,,,,,,,,,0.97793,,,,,,,,,,0.94442,,,,,,,,,,1.04454,,,,,,,,,,0.88107,,,,,,,,,,270.61823,,,,,,,,,,272.60603,,,,,,,,,,276.52421,,,,,,,,,,270.41406,,,,,,,,,,276.50924,,,,,,,,,,272.29123,,,,,,,,,,274.47375,,,,,,,,,,274.64677,,,,,,,,,,270.32567,,,,,,,,,,0.00595,,,,,,,,,,0.00596,,,,,,,,,,0.00605,,,,,,,,,,0.00583,,,,,,,,,,0.00603,,,,,,,,,,0.00589,,,,,,,,,,0.00594,,,,,,,,,,0.006,,,,,,,,,,0.00605,,,,,,,,,,0.0189,,,,,,,,,,0.01892,,,,,,,,,,0.01892,,,,,,,,,,0.01883,,,,,,,,,,0.0189,,,,,,,,,,0.01884,,,,,,,,,,0.01889,,,,,,,,,,0.01893,,,,,,,,,,0.01897,,,,,,,,,,0.0427,,,,,,,,,,0.04087,,,,,,,,,,0.04118,,,,,,,,,,0.0437,,,,,,,,,,0.03251,,,,,,,,,,0.03568,,,,,,,,,,0.03336,,,,,,,,,,0.03982,,,,,,,,,,0.03491,,,,,,,,,,0.00141,,,,,,,,,,0.00136,,,,,,,,,,0.00137,,,,,,,,,,0.00143,,,,,,,,,,0.0012,,,,,,,,,,0.00122,,,,,,,,,,0.00115,,,,,,,,,,0.00126,,,,,,,,,,0.00112,,,,,,,,,,0.04393,,,,,,,,,,0.04518,,,,,,,,,,0.04926,,,,,,,,,,0.04114,,,,,,,,,,0.04797,,,,,,,,,,0.04373,,,,,,,,,,0.04378,,,,,,,,,,0.04612,,,,,,,,,,0.0456,,,,,,,,,,0.00803,,,,,,,,,,0.00808,,,,,,,,,,0.00863,,,,,,,,,,0.00772,,,,,,,,,,0.00812,,,,,,,,,,0.00763,,,,,,,,,,0.00749,,,,,,,,,,0.008,,,,,,,,,,0.00768,,,,,,,,,,0.00173,,,,,,,,,,0.00174,,,,,,,,,,0.00176,,,,,,,,,,0.00173,,,,,,,,,,0.00176,,,,,,,,,,0.00174,,,,,,,,,,0.00175,,,,,,,,,,0.00173,,,,,,,,,,0.00159,,,,,,,,,,0.0858,,,,,,,,,,0.07545,,,,,,,,,,0.08196,,,,,,,,,,0.09039,,,,,,,,,,0.05106,,,,,,,,,,0.05607,,,,,,,,,,0.04928,,,,,,,,,,0.06516,,,,,,,,,,0.05007 +Small SUV,PH10E,1990,0.00736,0,0,0,0,0,0,0,0,0,0.00761,0,0,0,0,0,0,0,0,0,0.00833,0,0,0,0,0,0,0,0,0,0.00685,0,0,0,0,0,0,0,0,0,0.00818,0,0,0,0,0,0,0,0,0,0.00741,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.00782,0,0,0,0,0,0,0,0,0,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0,0,0,0,0,0,0,0,0,0.00024,0,0,0,0,0,0,0,0,0,0.00025,0,0,0,0,0,0,0,0,0,0.00026,0,0,0,0,0,0,0,0,0,0.00022,0,0,0,0,0,0,0,0,0,0.00022,0,0,0,0,0,0,0,0,0,0.00021,0,0,0,0,0,0,0,0,0,0.00023,0,0,0,0,0,0,0,0,0,0.0002,0,0,0,0,0,0,0,0,0,0.00791,0,0,0,0,0,0,0,0,0,0.00813,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.00741,0,0,0,0,0,0,0,0,0,0.00864,0,0,0,0,0,0,0,0,0,0.00787,0,0,0,0,0,0,0,0,0,0.00788,0,0,0,0,0,0,0,0,0,0.0083,0,0,0,0,0,0,0,0,0,0.00821,0,0,0,0,0,0,0,0,0,0.00145,0,0,0,0,0,0,0,0,0,0.00145,0,0,0,0,0,0,0,0,0,0.00155,0,0,0,0,0,0,0,0,0,0.00139,0,0,0,0,0,0,0,0,0,0.00146,0,0,0,0,0,0,0,0,0,0.00137,0,0,0,0,0,0,0,0,0,0.00135,0,0,0,0,0,0,0,0,0,0.00144,0,0,0,0,0,0,0,0,0,0.00138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH10E,1995,0.00735,0.00735,0,0,0,0,0,0,0,0,0.00761,0.00761,0,0,0,0,0,0,0,0,0.00833,0.00833,0,0,0,0,0,0,0,0,0.00684,0.00684,0,0,0,0,0,0,0,0,0.00818,0.00818,0,0,0,0,0,0,0,0,0.00741,0.00741,0,0,0,0,0,0,0,0,0.00745,0.00745,0,0,0,0,0,0,0,0,0.00782,0.00782,0,0,0,0,0,0,0,0,0.00779,0.00779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH10E,2000,0.00736,0.01464,0.01852,0,0,0,0,0,0,0,0.00761,0.01386,0.01715,0,0,0,0,0,0,0,0.00833,0.01535,0.0191,0,0,0,0,0,0,0,0.00684,0.01464,0.01884,0,0,0,0,0,0,0,0.00818,0.01167,0.01345,0,0,0,0,0,0,0,0.00741,0.01153,0.01393,0,0,0,0,0,0,0,0.00745,0.0108,0.01248,0,0,0,0,0,0,0,0.00782,0.01266,0.01517,0,0,0,0,0,0,0,0.00779,0.01117,0.01285,0,0,0,0,0,0,0,0,0.14089,0.15451,0,0,0,0,0,0,0,0,0.13573,0.15157,0,0,0,0,0,0,0,0,0.16081,0.17779,0,0,0,0,0,0,0,0,0.16758,0.18418,0,0,0,0,0,0,0,0,0.14553,0.1629,0,0,0,0,0,0,0,0,0.15328,0.17008,0,0,0,0,0,0,0,0,0.14794,0.16027,0,0,0,0,0,0,0,0,0.14627,0.16107,0,0,0,0,0,0,0,0,0.12873,0.14257,0,0,0,0,0,0,0,0,12.76272,16.10851,0,0,0,0,0,0,0,0,12.50945,15.99917,0,0,0,0,0,0,0,0,14.3238,18.20538,0,0,0,0,0,0,0,0,15.15682,19.14568,0,0,0,0,0,0,0,0,13.58049,17.34446,0,0,0,0,0,0,0,0,14.10916,18.03755,0,0,0,0,0,0,0,0,14.12754,17.53883,0,0,0,0,0,0,0,0,13.47311,17.02084,0,0,0,0,0,0,0,0,11.65908,14.80696,0,0,0,0,0,0,0,0,428.04028,434.44389,0,0,0,0,0,0,0,0,431.35345,437.29409,0,0,0,0,0,0,0,0,437.67973,443.93028,0,0,0,0,0,0,0,0,427.48486,433.73649,0,0,0,0,0,0,0,0,438.06185,442.38577,0,0,0,0,0,0,0,0,431.02765,437.29105,0,0,0,0,0,0,0,0,434.61359,438.74833,0,0,0,0,0,0,0,0,434.84444,439.8663,0,0,0,0,0,0,0,0,428.27298,432.86375,0,0,0,0,0,0,0,0,0.03848,0.04595,0,0,0,0,0,0,0,0,0.03858,0.04602,0,0,0,0,0,0,0,0,0.03932,0.04679,0,0,0,0,0,0,0,0,0.03764,0.04501,0,0,0,0,0,0,0,0,0.03912,0.04657,0,0,0,0,0,0,0,0,0.03816,0.04556,0,0,0,0,0,0,0,0,0.03847,0.04591,0,0,0,0,0,0,0,0,0.03891,0.04638,0,0,0,0,0,0,0,0,0.03917,0.04672,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06727,0.06728,0,0,0,0,0,0,0,0,0.06725,0.06726,0,0,0,0,0,0,0,0,0.06691,0.06691,0,0,0,0,0,0,0,0,0.0672,0.0672,0,0,0,0,0,0,0,0,0.06697,0.06697,0,0,0,0,0,0,0,0,0.06715,0.06716,0,0,0,0,0,0,0,0,0.0673,0.0673,0,0,0,0,0,0,0,0,0.06745,0.06745,0,0,0,0,0,0,0,0,1.67917,2.04404,0,0,0,0,0,0,0,0,1.65811,2.04336,0,0,0,0,0,0,0,0,1.85354,2.26397,0,0,0,0,0,0,0,0,1.91901,2.33383,0,0,0,0,0,0,0,0,1.80859,2.22695,0,0,0,0,0,0,0,0,1.86021,2.26579,0,0,0,0,0,0,0,0,1.84185,2.2101,0,0,0,0,0,0,0,0,1.91328,2.31007,0,0,0,0,0,0,0,0,1.71779,2.08945,0,0,0,0,0,0,0,0,0.01552,0.02198,0,0,0,0,0,0,0,0,0.01357,0.01916,0,0,0,0,0,0,0,0,0.01471,0.02087,0,0,0,0,0,0,0,0,0.01609,0.02289,0,0,0,0,0,0,0,0,0.00814,0.01137,0,0,0,0,0,0,0,0,0.00936,0.01363,0,0,0,0,0,0,0,0,0.008,0.01115,0,0,0,0,0,0,0,0,0.01079,0.01518,0,0,0,0,0,0,0,0,0.0082,0.01141,0,0,0,0,0,0,0,0,0.06669,0.0812,0,0,0,0,0,0,0,0,0.06356,0.07607,0,0,0,0,0,0,0,0,0.0695,0.0834,0,0,0,0,0,0,0,0,0.06578,0.08116,0,0,0,0,0,0,0,0,0.05438,0.06151,0,0,0,0,0,0,0,0,0.05351,0.06313,0,0,0,0,0,0,0,0,0.05068,0.05757,0,0,0,0,0,0,0,0,0.0585,0.06825,0,0,0,0,0,0,0,0,0.0526,0.05959,0,0,0,0,0,0,0,0,0.03373,0.04657,0,0,0,0,0,0,0,0,0.03008,0.04115,0,0,0,0,0,0,0,0,0.03284,0.04513,0,0,0,0,0,0,0,0,0.03469,0.0483,0,0,0,0,0,0,0,0,0.01997,0.02628,0,0,0,0,0,0,0,0,0.02188,0.03027,0,0,0,0,0,0,0,0,0.01923,0.02532,0,0,0,0,0,0,0,0,0.02487,0.03349,0,0,0,0,0,0,0,0,0.01976,0.02595,0,0,0,0,0,0,0,0,0.01401,0.01254,0,0,0,0,0,0,0,0,0.01412,0.01263,0,0,0,0,0,0,0,0,0.01433,0.01282,0,0,0,0,0,0,0,0,0.014,0.01252,0,0,0,0,0,0,0,0,0.01434,0.01277,0,0,0,0,0,0,0,0,0.01411,0.01263,0,0,0,0,0,0,0,0,0.01423,0.01267,0,0,0,0,0,0,0,0,0.01424,0.0127,0,0,0,0,0,0,0,0,0.01402,0.0125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH10E,2005,0.00736,0.01048,0.012,0.01558,0,0,0,0,0,0,0.00761,0.01033,0.01164,0.01469,0,0,0,0,0,0,0.00833,0.01137,0.01285,0.01632,0,0,0,0,0,0,0.00685,0.01017,0.0118,0.01568,0,0,0,0,0,0,0.00819,0.00983,0.01061,0.01228,0,0,0,0,0,0,0.00741,0.0093,0.01029,0.01219,0,0,0,0,0,0,0.00746,0.00904,0.00978,0.01137,0,0,0,0,0,0,0.00782,0.00999,0.01103,0.01338,0,0,0,0,0,0,0.00779,0.0094,0.01014,0.01173,0,0,0,0,0,0,0,0.05887,0.05022,0.06479,0,0,0,0,0,0,0,0.05408,0.0477,0.06194,0,0,0,0,0,0,0,0.06401,0.05612,0.07552,0,0,0,0,0,0,0,0.06738,0.05899,0.07886,0,0,0,0,0,0,0,0.04787,0.04505,0.06288,0,0,0,0,0,0,0,0.05251,0.04891,0.06715,0,0,0,0,0,0,0,0.04796,0.0441,0.06135,0,0,0,0,0,0,0,0.05292,0.04736,0.06414,0,0,0,0,0,0,0,0.04274,0.03929,0.05278,0,0,0,0,0,0,0,5.03412,6.51817,9.6669,0,0,0,0,0,0,0,4.92195,6.52967,9.63502,0,0,0,0,0,0,0,5.52979,7.47297,11.28146,0,0,0,0,0,0,0,5.81165,7.86714,11.83045,0,0,0,0,0,0,0,5.41158,7.41913,10.98143,0,0,0,0,0,0,0,5.5191,7.60533,11.2422,0,0,0,0,0,0,0,5.63436,7.5301,11.09352,0,0,0,0,0,0,0,5.36905,7.14597,10.57365,0,0,0,0,0,0,0,4.7859,6.32427,9.17675,0,0,0,0,0,0,0,443.85587,448.671,454.14966,0,0,0,0,0,0,0,447.5675,452.04046,456.9226,0,0,0,0,0,0,0,453.75619,458.45937,463.73966,0,0,0,0,0,0,0,443.50689,448.21429,453.516,0,0,0,0,0,0,0,455.48889,458.76702,461.58576,0,0,0,0,0,0,0,448.04979,453.15963,455.06293,0,0,0,0,0,0,0,452.21983,455.36076,457.93914,0,0,0,0,0,0,0,451.77312,455.56747,459.27256,0,0,0,0,0,0,0,445.21511,448.68114,451.8233,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00791,0.00936,0.01797,0,0,0,0,0,0,0,0.00804,0.00948,0.0182,0,0,0,0,0,0,0,0.00775,0.00918,0.01764,0,0,0,0,0,0,0,0.008,0.00944,0.01813,0,0,0,0,0,0,0,0.00783,0.00927,0.0178,0,0,0,0,0,0,0,0.0079,0.00934,0.01795,0,0,0,0,0,0,0,0.00797,0.00942,0.0181,0,0,0,0,0,0,0,0.00804,0.0095,0.01824,0,0,0,0,0,0,0,0.02199,0.02755,0.03263,0,0,0,0,0,0,0,0.02202,0.02758,0.03267,0,0,0,0,0,0,0,0.02202,0.02757,0.03266,0,0,0,0,0,0,0,0.0219,0.02743,0.03249,0,0,0,0,0,0,0,0.022,0.02755,0.03263,0,0,0,0,0,0,0,0.02192,0.02745,0.03252,0,0,0,0,0,0,0,0.02198,0.02753,0.03261,0,0,0,0,0,0,0,0.02203,0.02759,0.03268,0,0,0,0,0,0,0,0.02208,0.02765,0.03275,0,0,0,0,0,0,0,0.72008,0.96199,1.00621,0,0,0,0,0,0,0,0.70065,0.95882,1.00077,0,0,0,0,0,0,0,0.78869,1.0611,1.1307,0,0,0,0,0,0,0,0.8264,1.10905,1.17783,0,0,0,0,0,0,0,0.76098,1.03562,1.10788,0,0,0,0,0,0,0,0.79046,1.06322,1.13191,0,0,0,0,0,0,0,0.78123,1.03534,1.09738,0,0,0,0,0,0,0,0.819,1.08974,1.13977,0,0,0,0,0,0,0,0.73434,0.98227,1.01871,0,0,0,0,0,0,0,0.00672,0.00918,0.01499,0,0,0,0,0,0,0,0.00601,0.00819,0.01326,0,0,0,0,0,0,0,0.00648,0.00887,0.01444,0,0,0,0,0,0,0,0.00692,0.00949,0.01561,0,0,0,0,0,0,0,0.00402,0.00549,0.00852,0,0,0,0,0,0,0,0.00444,0.00623,0.00955,0,0,0,0,0,0,0,0.00395,0.00538,0.00834,0,0,0,0,0,0,0,0.00499,0.00681,0.01083,0,0,0,0,0,0,0,0.00405,0.0055,0.00851,0,0,0,0,0,0,0,0.04784,0.05339,0.06646,0,0,0,0,0,0,0,0.0474,0.05231,0.06363,0,0,0,0,0,0,0,0.0518,0.0572,0.06976,0,0,0,0,0,0,0,0.04602,0.05187,0.06573,0,0,0,0,0,0,0,0.04565,0.04885,0.05549,0,0,0,0,0,0,0,0.04305,0.04716,0.05432,0,0,0,0,0,0,0,0.04214,0.04525,0.05167,0,0,0,0,0,0,0,0.04613,0.05017,0.05909,0,0,0,0,0,0,0,0.04386,0.04701,0.05353,0,0,0,0,0,0,0,0.01704,0.02196,0.03352,0,0,0,0,0,0,0,0.01578,0.02013,0.03014,0,0,0,0,0,0,0,0.01717,0.02195,0.03306,0,0,0,0,0,0,0,0.0172,0.02238,0.03464,0,0,0,0,0,0,0,0.01225,0.01507,0.02095,0,0,0,0,0,0,0,0.01263,0.01615,0.0226,0,0,0,0,0,0,0,0.01167,0.01442,0.0201,0,0,0,0,0,0,0,0.01392,0.01749,0.02539,0,0,0,0,0,0,0,0.01203,0.01481,0.02058,0,0,0,0,0,0,0,0.01453,0.01296,0.00437,0,0,0,0,0,0,0,0.01465,0.01305,0.0044,0,0,0,0,0,0,0,0.01486,0.01324,0.00446,0,0,0,0,0,0,0,0.01452,0.01294,0.00437,0,0,0,0,0,0,0,0.01492,0.01325,0.00444,0,0,0,0,0,0,0,0.01467,0.01309,0.00438,0,0,0,0,0,0,0,0.01481,0.01315,0.00441,0,0,0,0,0,0,0,0.01479,0.01315,0.00442,0,0,0,0,0,0,0,0.01458,0.01296,0.00435,0,0,0,0,0,0,0,0.31408,0.43795,0.4377,0,0,0,0,0,0,0,0.2837,0.40636,0.40432,0,0,0,0,0,0,0,0.33316,0.47535,0.47029,0,0,0,0,0,0,0,0.35249,0.50182,0.49458,0,0,0,0,0,0,0,0.2218,0.34265,0.33094,0,0,0,0,0,0,0,0.24992,0.38317,0.36479,0,0,0,0,0,0,0,0.2186,0.33154,0.31952,0,0,0,0,0,0,0,0.25991,0.38065,0.37276,0,0,0,0,0,0,0,0.19773,0.29988,0.29008,0,0,0,0,0,0 +Small SUV,PH10E,2010,0,0.00865,0.00976,0.01088,0.01426,0,0,0,0,0,0,0.00875,0.00973,0.0107,0.0136,0,0,0,0,0,0,0.0096,0.01069,0.01179,0.01508,0,0,0,0,0,0,0.00822,0.00942,0.01063,0.01429,0,0,0,0,0,0,0.00895,0.00958,0.01018,0.01183,0,0,0,0,0,0,0.00826,0.00901,0.00965,0.01158,0,0,0,0,0,0,0.0082,0.0088,0.00937,0.01094,0,0,0,0,0,0,0.00877,0.00957,0.01036,0.01261,0,0,0,0,0,0,0.00854,0.00915,0.00972,0.01129,0,0,0,0,0,0,0.03835,0.02739,0.0207,0.03399,0,0,0,0,0,0,0.03344,0.0249,0.01902,0.03184,0,0,0,0,0,0,0.03752,0.02934,0.02246,0.03887,0,0,0,0,0,0,0.04169,0.03243,0.02472,0.04165,0,0,0,0,0,0,0.02246,0.02126,0.01693,0.03091,0,0,0,0,0,0,0.0251,0.02356,0.0183,0.0333,0,0,0,0,0,0,0.02198,0.02095,0.01669,0.03024,0,0,0,0,0,0,0.02806,0.02371,0.0184,0.03225,0,0,0,0,0,0,0.02159,0.01933,0.01509,0.02616,0,0,0,0,0,0,2.0369,3.39096,4.56938,6.84813,0,0,0,0,0,0,1.93755,3.35282,4.54128,6.8043,0,0,0,0,0,0,2.03853,3.71667,5.15994,8.00096,0,0,0,0,0,0,2.17908,3.97967,5.53703,8.50531,0,0,0,0,0,0,1.79358,3.54468,4.96864,7.70574,0,0,0,0,0,0,1.85132,3.67735,5.10192,7.94581,0,0,0,0,0,0,1.86968,3.64795,5.09363,7.83205,0,0,0,0,0,0,1.90876,3.54693,4.88233,7.46049,0,0,0,0,0,0,1.678,3.13644,4.26343,6.41479,0,0,0,0,0,0,412.76858,414.52877,418.20047,431.86292,0,0,0,0,0,0,416.40558,417.94235,421.24785,434.37073,0,0,0,0,0,0,422.09134,423.74737,427.27943,440.89257,0,0,0,0,0,0,412.52141,414.19798,417.76787,431.26329,0,0,0,0,0,0,424.39239,425.16307,427.20546,438.37632,0,0,0,0,0,0,417.28153,419.64642,420.6841,432.33298,0,0,0,0,0,0,421.41221,422.1002,424.00932,434.90386,0,0,0,0,0,0,420.66738,421.76965,424.35789,436.36691,0,0,0,0,0,0,414.64889,415.59408,417.84536,429.16517,0,0,0,0,0,0,0.00702,0.0079,0.00947,0.01359,0,0,0,0,0,0,0.00703,0.00791,0.00947,0.01358,0,0,0,0,0,0,0.00715,0.00803,0.0096,0.01374,0,0,0,0,0,0,0.00688,0.00775,0.00929,0.01335,0,0,0,0,0,0,0.00712,0.00799,0.00956,0.01368,0,0,0,0,0,0,0.00696,0.00783,0.00938,0.01345,0,0,0,0,0,0,0.00702,0.00789,0.00946,0.01356,0,0,0,0,0,0,0.00709,0.00797,0.00954,0.01367,0,0,0,0,0,0,0.00714,0.00803,0.00961,0.01378,0,0,0,0,0,0,0.01459,0.01675,0.02185,0.02421,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02424,0,0,0,0,0,0,0.01461,0.01677,0.02187,0.02423,0,0,0,0,0,0,0.01453,0.01668,0.02175,0.02411,0,0,0,0,0,0,0.01459,0.01676,0.02185,0.02421,0,0,0,0,0,0,0.01455,0.0167,0.02178,0.02413,0,0,0,0,0,0,0.01458,0.01674,0.02183,0.02419,0,0,0,0,0,0,0.01462,0.01678,0.02188,0.02425,0,0,0,0,0,0,0.01465,0.01682,0.02193,0.0243,0,0,0,0,0,0,0.11818,0.20617,0.20688,0.44349,0,0,0,0,0,0,0.11395,0.20427,0.2047,0.43937,0,0,0,0,0,0,0.1164,0.2249,0.22374,0.50136,0,0,0,0,0,0,0.12046,0.23865,0.23563,0.52724,0,0,0,0,0,0,0.10702,0.21405,0.21224,0.48579,0,0,0,0,0,0,0.11168,0.22309,0.22032,0.50004,0,0,0,0,0,0,0.1104,0.21568,0.21334,0.48154,0,0,0,0,0,0,0.1205,0.23032,0.22538,0.50037,0,0,0,0,0,0,0.11127,0.20718,0.20273,0.44167,0,0,0,0,0,0,0.00231,0.00409,0.00571,0.01093,0,0,0,0,0,0,0.00216,0.00381,0.00528,0.00987,0,0,0,0,0,0,0.00226,0.00401,0.0056,0.01065,0,0,0,0,0,0,0.00236,0.00421,0.0059,0.01139,0,0,0,0,0,0,0.00178,0.00309,0.00419,0.00708,0,0,0,0,0,0,0.00185,0.00326,0.0044,0.00767,0,0,0,0,0,0,0.00177,0.00306,0.00414,0.00696,0,0,0,0,0,0,0.00197,0.00344,0.00473,0.00845,0,0,0,0,0,0,0.00181,0.00312,0.00422,0.00707,0,0,0,0,0,0,0.03861,0.04266,0.0464,0.05834,0,0,0,0,0,0,0.03937,0.04307,0.04643,0.05686,0,0,0,0,0,0,0.04296,0.04694,0.0506,0.06218,0,0,0,0,0,0,0.03645,0.04068,0.04462,0.05727,0,0,0,0,0,0,0.04102,0.04381,0.04621,0.05263,0,0,0,0,0,0,0.03767,0.04092,0.04325,0.05056,0,0,0,0,0,0,0.03764,0.04039,0.04273,0.04893,0,0,0,0,0,0,0.03986,0.0431,0.04596,0.05434,0,0,0,0,0,0,0.03925,0.04203,0.0444,0.05068,0,0,0,0,0,0,0.00888,0.01247,0.01577,0.02633,0,0,0,0,0,0,0.00868,0.01196,0.01493,0.02415,0,0,0,0,0,0,0.00936,0.01288,0.01612,0.02636,0,0,0,0,0,0,0.00874,0.01249,0.01597,0.02716,0,0,0,0,0,0,0.00815,0.01062,0.01274,0.01842,0,0,0,0,0,0,0.00787,0.01062,0.01281,0.01928,0,0,0,0,0,0,0.00769,0.01012,0.01219,0.01768,0,0,0,0,0,0,0.00837,0.01124,0.01377,0.02118,0,0,0,0,0,0,0.00794,0.01041,0.0125,0.01806,0,0,0,0,0,0,0.01351,0.01197,0.00403,0.00416,0,0,0,0,0,0,0.01363,0.01207,0.00405,0.00418,0,0,0,0,0,0,0.01382,0.01224,0.00411,0.00424,0,0,0,0,0,0,0.01351,0.01196,0.00402,0.00415,0,0,0,0,0,0,0.0139,0.01228,0.00411,0.00422,0,0,0,0,0,0,0.01366,0.01212,0.00405,0.00416,0,0,0,0,0,0,0.0138,0.01219,0.00408,0.00419,0,0,0,0,0,0,0.01377,0.01218,0.00408,0.0042,0,0,0,0,0,0,0.01358,0.012,0.00402,0.00413,0,0,0,0,0,0,0.09628,0.14483,0.19833,0.32215,0,0,0,0,0,0,0.08171,0.12792,0.17824,0.29336,0,0,0,0,0,0,0.09432,0.15197,0.21171,0.35312,0,0,0,0,0,0,0.10592,0.16872,0.23324,0.38186,0,0,0,0,0,0,0.04851,0.09719,0.14596,0.25056,0,0,0,0,0,0,0.05622,0.11052,0.15954,0.27471,0,0,0,0,0,0,0.04619,0.09371,0.14146,0.24218,0,0,0,0,0,0,0.0651,0.11464,0.16503,0.27758,0,0,0,0,0,0,0.04573,0.0879,0.13002,0.21562,0,0,0,0,0 +Small SUV,PH10E,2015,0,0,0.00851,0.00932,0.01037,0.0128,0,0,0,0,0,0,0.00865,0.00938,0.01032,0.01244,0,0,0,0,0,0,0.00947,0.01026,0.01129,0.01368,0,0,0,0,0,0,0.00805,0.0089,0.01002,0.01263,0,0,0,0,0,0,0.00894,0.00945,0.01007,0.01137,0,0,0,0,0,0,0.00825,0.00879,0.00948,0.01097,0,0,0,0,0,0,0.00819,0.00868,0.00929,0.01053,0,0,0,0,0,0,0.00872,0.00934,0.01011,0.01181,0,0,0,0,0,0,0.00853,0.00903,0.00963,0.01087,0,0,0,0,0,0,0.02901,0.01941,0.01781,0.02215,0,0,0,0,0,0,0.02658,0.01807,0.01687,0.02094,0,0,0,0,0,0,0.02882,0.02106,0.01968,0.02486,0,0,0,0,0,0,0.03107,0.02281,0.02127,0.02671,0,0,0,0,0,0,0.01998,0.01624,0.01622,0.02037,0,0,0,0,0,0,0.02221,0.01753,0.01732,0.0218,0,0,0,0,0,0,0.01979,0.01605,0.01612,0.02014,0,0,0,0,0,0,0.02339,0.01765,0.017,0.02122,0,0,0,0,0,0,0.01942,0.01481,0.01452,0.0178,0,0,0,0,0,0,1.74799,3.07054,4.1433,5.53772,0,0,0,0,0,0,1.74058,3.08025,4.17933,5.56657,0,0,0,0,0,0,1.79393,3.3989,4.7293,6.41596,0,0,0,0,0,0,1.91334,3.63271,5.06757,6.83287,0,0,0,0,0,0,1.71079,3.3865,4.75319,6.37417,0,0,0,0,0,0,1.75939,3.44427,4.84742,6.53269,0,0,0,0,0,0,1.78328,3.49932,4.89366,6.53236,0,0,0,0,0,0,1.75814,3.3309,4.59475,6.14177,0,0,0,0,0,0,1.6025,3.00063,4.08485,5.39092,0,0,0,0,0,0,338.12208,340.05626,343.22557,362.165,0,0,0,0,0,0,340.95583,342.66252,345.51406,364.06892,0,0,0,0,0,0,345.67308,347.51146,350.55982,369.62377,0,0,0,0,0,0,337.90022,339.76243,342.84575,361.64608,0,0,0,0,0,0,347.01262,347.93671,349.69034,366.75993,0,0,0,0,0,0,342.47414,342.50262,344.57625,361.91932,0,0,0,0,0,0,344.54961,345.39056,347.02963,363.8184,0,0,0,0,0,0,344.17477,345.43692,347.66513,365.3673,0,0,0,0,0,0,339.12031,340.19555,342.12805,359.14252,0,0,0,0,0,0,0.00464,0.00532,0.00631,0.00881,0,0,0,0,0,0,0.00465,0.00532,0.00631,0.0088,0,0,0,0,0,0,0.00472,0.0054,0.00639,0.00889,0,0,0,0,0,0,0.00455,0.00522,0.00619,0.00865,0,0,0,0,0,0,0.0047,0.00538,0.00636,0.00886,0,0,0,0,0,0,0.0046,0.00527,0.00625,0.00871,0,0,0,0,0,0,0.00464,0.00531,0.0063,0.00879,0,0,0,0,0,0,0.00468,0.00536,0.00635,0.00885,0,0,0,0,0,0,0.00472,0.00541,0.00641,0.00893,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02214,0,0,0,0,0,0,0.01462,0.017,0.02188,0.02217,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02216,0,0,0,0,0,0,0.01454,0.01691,0.02176,0.02205,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02214,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02207,0,0,0,0,0,0,0.01459,0.01697,0.02184,0.02213,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02217,0,0,0,0,0,0,0.01465,0.01705,0.02194,0.02222,0,0,0,0,0,0,0.10495,0.12905,0.18836,0.26828,0,0,0,0,0,0,0.10452,0.12736,0.18642,0.26545,0,0,0,0,0,0,0.10568,0.13983,0.20329,0.29451,0,0,0,0,0,0,0.11026,0.14786,0.21472,0.31055,0,0,0,0,0,0,0.0969,0.13038,0.19182,0.28015,0,0,0,0,0,0,0.10169,0.13624,0.19976,0.29062,0,0,0,0,0,0,0.09928,0.13114,0.1932,0.28031,0,0,0,0,0,0,0.10885,0.14034,0.20452,0.29402,0,0,0,0,0,0,0.10062,0.12587,0.18364,0.26179,0,0,0,0,0,0,0.00221,0.00363,0.00522,0.00859,0,0,0,0,0,0,0.0021,0.00344,0.00491,0.00796,0,0,0,0,0,0,0.00217,0.00356,0.00512,0.00843,0,0,0,0,0,0,0.00223,0.00368,0.00531,0.00885,0,0,0,0,0,0,0.0018,0.00292,0.00408,0.00626,0,0,0,0,0,0,0.00187,0.00301,0.00424,0.00661,0,0,0,0,0,0,0.0018,0.00291,0.00406,0.0062,0,0,0,0,0,0,0.00195,0.00318,0.0045,0.0071,0,0,0,0,0,0,0.00183,0.00297,0.00414,0.00629,0,0,0,0,0,0,0.03831,0.04145,0.0451,0.05304,0,0,0,0,0,0,0.03917,0.0421,0.04545,0.05255,0,0,0,0,0,0,0.04268,0.04576,0.04935,0.05712,0,0,0,0,0,0,0.03607,0.03928,0.04307,0.05144,0,0,0,0,0,0,0.04103,0.04338,0.04593,0.05081,0,0,0,0,0,0,0.03784,0.04011,0.04283,0.04821,0,0,0,0,0,0,0.03767,0.04,0.04251,0.04726,0,0,0,0,0,0,0.03977,0.0424,0.04535,0.05132,0,0,0,0,0,0,0.03928,0.04164,0.04418,0.04898,0,0,0,0,0,0,0.00862,0.01139,0.01462,0.02165,0,0,0,0,0,0,0.00851,0.0111,0.01406,0.02034,0,0,0,0,0,0,0.00911,0.01183,0.01501,0.02188,0,0,0,0,0,0,0.00841,0.01125,0.0146,0.02201,0,0,0,0,0,0,0.00816,0.01024,0.0125,0.01681,0,0,0,0,0,0,0.0079,0.01003,0.01244,0.01719,0,0,0,0,0,0,0.00772,0.00978,0.012,0.0162,0,0,0,0,0,0,0.00829,0.01063,0.01323,0.01851,0,0,0,0,0,0,0.00797,0.01007,0.01231,0.01655,0,0,0,0,0,0,0.00976,0.00327,0.0033,0.00349,0,0,0,0,0,0,0.00985,0.0033,0.00333,0.0035,0,0,0,0,0,0,0.00998,0.00334,0.00337,0.00356,0,0,0,0,0,0,0.00976,0.00327,0.0033,0.00348,0,0,0,0,0,0,0.01002,0.00335,0.00337,0.00353,0,0,0,0,0,0,0.00989,0.0033,0.00332,0.00348,0,0,0,0,0,0,0.00995,0.00332,0.00334,0.0035,0,0,0,0,0,0,0.00994,0.00332,0.00335,0.00352,0,0,0,0,0,0,0.00979,0.00327,0.00329,0.00346,0,0,0,0,0,0,0.07256,0.10793,0.16473,0.24345,0,0,0,0,0,0,0.06456,0.09841,0.15324,0.22614,0,0,0,0,0,0,0.07203,0.11521,0.17944,0.26852,0,0,0,0,0,0,0.07823,0.12455,0.19303,0.28812,0,0,0,0,0,0,0.04358,0.08151,0.13798,0.20586,0,0,0,0,0,0,0.05032,0.08897,0.14828,0.22181,0,0,0,0,0,0,0.04216,0.07918,0.13504,0.20088,0,0,0,0,0,0,0.0541,0.09194,0.14887,0.22095,0,0,0,0,0,0,0.04161,0.07409,0.12354,0.18049,0,0,0,0 +Small SUV,PH10E,2020,0,0,0,0.00832,0.009,0.00969,0.01202,0,0,0,0,0,0,0.00849,0.0091,0.00971,0.01177,0,0,0,0,0,0,0.00928,0.00995,0.01063,0.01292,0,0,0,0,0,0,0.00785,0.00856,0.00929,0.01178,0,0,0,0,0,0,0.00883,0.00926,0.00967,0.01098,0,0,0,0,0,0,0.00811,0.00858,0.00904,0.01053,0,0,0,0,0,0,0.00809,0.00851,0.0089,0.01017,0,0,0,0,0,0,0.00858,0.0091,0.00961,0.01129,0,0,0,0,0,0,0.00843,0.00885,0.00924,0.01051,0,0,0,0,0,0,0.02221,0.01607,0.01367,0.01742,0,0,0,0,0,0,0.01995,0.01477,0.01277,0.01638,0,0,0,0,0,0,0.02206,0.01724,0.01491,0.01972,0,0,0,0,0,0,0.02395,0.01876,0.01619,0.02129,0,0,0,0,0,0,0.0138,0.01254,0.01156,0.01576,0,0,0,0,0,0,0.01546,0.01373,0.01252,0.01702,0,0,0,0,0,0,0.0135,0.01235,0.01146,0.01556,0,0,0,0,0,0,0.01693,0.014,0.01246,0.01654,0,0,0,0,0,0,0.01322,0.01137,0.01033,0.01357,0,0,0,0,0,0,1.37924,2.0814,2.62686,4.03125,0,0,0,0,0,0,1.36505,2.07029,2.62221,4.04018,0,0,0,0,0,0,1.42101,2.28589,2.96238,4.76964,0,0,0,0,0,0,1.52138,2.45739,3.19844,5.11541,0,0,0,0,0,0,1.32564,2.2181,2.88967,4.67583,0,0,0,0,0,0,1.35579,2.27169,2.97123,4.83684,0,0,0,0,0,0,1.37756,2.29363,2.9807,4.79141,0,0,0,0,0,0,1.37093,2.20682,2.83455,4.49834,0,0,0,0,0,0,1.23549,1.96805,2.49394,3.87749,0,0,0,0,0,0,287.03177,288.945,292.13415,317.35488,0,0,0,0,0,0,289.31393,291.03834,293.95164,318.81544,0,0,0,0,0,0,293.37827,295.21817,298.31062,323.7828,0,0,0,0,0,0,286.83015,288.68405,291.79913,316.87766,0,0,0,0,0,0,294.03922,295.11255,297.06731,320.47563,0,0,0,0,0,0,289.36988,290.63083,292.86101,316.46625,0,0,0,0,0,0,291.92229,292.92404,294.77611,317.8553,0,0,0,0,0,0,291.81081,293.16554,295.53406,319.55864,0,0,0,0,0,0,287.40281,288.59464,290.69332,313.90899,0,0,0,0,0,0,0.00474,0.00536,0.00631,0.00831,0,0,0,0,0,0,0.00475,0.00536,0.00631,0.0083,0,0,0,0,0,0,0.00482,0.00544,0.00639,0.00839,0,0,0,0,0,0,0.00465,0.00526,0.00619,0.00817,0,0,0,0,0,0,0.0048,0.00542,0.00636,0.00836,0,0,0,0,0,0,0.0047,0.00531,0.00625,0.00822,0,0,0,0,0,0,0.00474,0.00536,0.0063,0.0083,0,0,0,0,0,0,0.00478,0.0054,0.00635,0.00836,0,0,0,0,0,0,0.00482,0.00545,0.0064,0.00843,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01462,0.01701,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.017,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01692,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01699,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01693,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01698,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01701,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01705,0.02193,0.02193,0,0,0,0,0,0,0.06862,0.11062,0.1487,0.20682,0,0,0,0,0,0,0.06775,0.10897,0.14679,0.20422,0,0,0,0,0,0,0.06919,0.11933,0.1596,0.22751,0,0,0,0,0,0,0.07215,0.12682,0.16948,0.24162,0,0,0,0,0,0,0.0612,0.10996,0.14835,0.21334,0,0,0,0,0,0,0.06471,0.11568,0.15571,0.22311,0,0,0,0,0,0,0.06244,0.11099,0.15,0.21393,0,0,0,0,0,0,0.06915,0.11948,0.16006,0.22568,0,0,0,0,0,0,0.06291,0.10639,0.14262,0.19858,0,0,0,0,0,0,0.0019,0.00307,0.00407,0.00729,0,0,0,0,0,0,0.00181,0.00291,0.00384,0.00679,0,0,0,0,0,0,0.00186,0.00302,0.004,0.00716,0,0,0,0,0,0,0.00191,0.00311,0.00414,0.00748,0,0,0,0,0,0,0.00157,0.00249,0.00322,0.00544,0,0,0,0,0,0,0.00161,0.00257,0.00334,0.00572,0,0,0,0,0,0,0.00157,0.00249,0.00321,0.00539,0,0,0,0,0,0,0.00169,0.00271,0.00353,0.00611,0,0,0,0,0,0,0.0016,0.00254,0.00326,0.00547,0,0,0,0,0,0,0.03759,0.04021,0.04254,0.05012,0,0,0,0,0,0,0.03852,0.04096,0.04309,0.04996,0,0,0,0,0,0,0.04198,0.04455,0.04684,0.05429,0,0,0,0,0,0,0.03532,0.038,0.04042,0.04835,0,0,0,0,0,0,0.04053,0.04249,0.0441,0.04906,0,0,0,0,0,0,0.03711,0.03917,0.04089,0.04629,0,0,0,0,0,0,0.03718,0.03912,0.0407,0.04556,0,0,0,0,0,0,0.03919,0.04139,0.04326,0.04916,0,0,0,0,0,0,0.03878,0.04075,0.04234,0.04724,0,0,0,0,0,0,0.00798,0.0103,0.01236,0.01906,0,0,0,0,0,0,0.00793,0.01009,0.01198,0.01806,0,0,0,0,0,0,0.00849,0.01076,0.01278,0.01937,0,0,0,0,0,0,0.00775,0.01012,0.01225,0.01927,0,0,0,0,0,0,0.00772,0.00945,0.01087,0.01527,0,0,0,0,0,0,0.00737,0.0092,0.01072,0.01549,0,0,0,0,0,0,0.00728,0.009,0.0104,0.0147,0,0,0,0,0,0,0.00778,0.00973,0.01138,0.01661,0,0,0,0,0,0,0.00753,0.00928,0.01069,0.01502,0,0,0,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00278,0.0028,0.00283,0.00307,0,0,0,0,0,0,0.00282,0.00284,0.00287,0.00312,0,0,0,0,0,0,0.00276,0.00278,0.00281,0.00305,0,0,0,0,0,0,0.00283,0.00284,0.00286,0.00308,0,0,0,0,0,0,0.00279,0.0028,0.00282,0.00305,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00306,0,0,0,0,0,0,0.00281,0.00282,0.00284,0.00308,0,0,0,0,0,0,0.00277,0.00278,0.0028,0.00302,0,0,0,0,0,0,0.06129,0.09029,0.12737,0.19823,0,0,0,0,0,0,0.05401,0.08132,0.11645,0.18306,0,0,0,0,0,0,0.06093,0.09522,0.13643,0.2208,0,0,0,0,0,0,0.06641,0.10347,0.14776,0.23796,0,0,0,0,0,0,0.0345,0.06284,0.09654,0.16485,0,0,0,0,0,0,0.03959,0.06993,0.1059,0.17941,0,0,0,0,0,0,0.0331,0.06081,0.09405,0.16042,0,0,0,0,0,0,0.04426,0.07339,0.10849,0.17831,0,0,0,0,0,0,0.03251,0.05685,0.08625,0.14194,0,0,0 +Small SUV,PH10E,2025,0,0,0,0,0.00798,0.00838,0.00881,0.01073,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.01062,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01165,0,0,0,0,0,0,0.00749,0.00792,0.00836,0.0104,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.01022,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00968,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00943,0,0,0,0,0,0,0.00831,0.00862,0.00894,0.01034,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00977,0,0,0,0,0,0,0.01788,0.01171,0.00946,0.01326,0,0,0,0,0,0,0.01557,0.01039,0.00853,0.01223,0,0,0,0,0,0,0.01766,0.0122,0.01001,0.01484,0,0,0,0,0,0,0.01944,0.01341,0.01097,0.01612,0,0,0,0,0,0,0.00922,0.00744,0.00661,0.01094,0,0,0,0,0,0,0.01087,0.00849,0.00741,0.01204,0,0,0,0,0,0,0.00883,0.0072,0.00645,0.01072,0,0,0,0,0,0,0.01237,0.00906,0.0077,0.01189,0,0,0,0,0,0,0.00863,0.0067,0.00588,0.00931,0,0,0,0,0,0,0.91715,1.34034,1.7002,2.85338,0,0,0,0,0,0,0.88569,1.30716,1.66592,2.82923,0,0,0,0,0,0,0.93291,1.44892,1.88519,3.36535,0,0,0,0,0,0,1.00807,1.57114,2.0509,3.63255,0,0,0,0,0,0,0.79473,1.31547,1.73116,3.19084,0,0,0,0,0,0,0.82906,1.36736,1.80371,3.33111,0,0,0,0,0,0,0.82197,1.3577,1.78296,3.26628,0,0,0,0,0,0,0.85374,1.34733,1.74398,3.10779,0,0,0,0,0,0,0.74165,1.17042,1.49807,2.63216,0,0,0,0,0,0,234.5869,235.72343,238.0583,268.31088,0,0,0,0,0,0,236.33707,237.30807,239.39352,269.34204,0,0,0,0,0,0,239.7154,240.77831,243.01688,273.64091,0,0,0,0,0,0,234.41023,235.49784,237.77024,267.88659,0,0,0,0,0,0,239.81341,240.21794,241.44124,270.06181,0,0,0,0,0,0,236.1256,236.69955,238.17702,266.89992,0,0,0,0,0,0,238.05912,238.40674,239.54376,267.80454,0,0,0,0,0,0,238.15974,238.80941,240.4054,269.58388,0,0,0,0,0,0,234.44742,234.96253,236.32132,264.61313,0,0,0,0,0,0,0.00477,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00478,0.00536,0.00629,0.00822,0,0,0,0,0,0,0.00485,0.00544,0.00637,0.0083,0,0,0,0,0,0,0.00468,0.00525,0.00617,0.00808,0,0,0,0,0,0,0.00483,0.00541,0.00634,0.00827,0,0,0,0,0,0,0.00473,0.00531,0.00623,0.00814,0,0,0,0,0,0,0.00477,0.00535,0.00628,0.00821,0,0,0,0,0,0,0.00481,0.0054,0.00633,0.00827,0,0,0,0,0,0,0.00485,0.00544,0.00638,0.00834,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01703,0.02193,0.02193,0,0,0,0,0,0,0.04247,0.06358,0.08504,0.14444,0,0,0,0,0,0,0.04132,0.06188,0.083,0.14177,0,0,0,0,0,0,0.04249,0.06735,0.0898,0.15883,0,0,0,0,0,0,0.04441,0.07155,0.0953,0.1691,0,0,0,0,0,0,0.03499,0.05869,0.0794,0.14505,0,0,0,0,0,0,0.03792,0.06286,0.08465,0.15312,0,0,0,0,0,0,0.03567,0.05933,0.08035,0.14532,0,0,0,0,0,0,0.04046,0.06509,0.08718,0.15454,0,0,0,0,0,0,0.03571,0.0569,0.0765,0.13396,0,0,0,0,0,0,0.00122,0.00192,0.00254,0.00526,0,0,0,0,0,0,0.00116,0.00183,0.0024,0.0049,0,0,0,0,0,0,0.0012,0.00189,0.0025,0.00516,0,0,0,0,0,0,0.00123,0.00195,0.00258,0.00539,0,0,0,0,0,0,0.00101,0.00156,0.00202,0.00394,0,0,0,0,0,0,0.00103,0.00161,0.00209,0.00414,0,0,0,0,0,0,0.00101,0.00156,0.00201,0.0039,0,0,0,0,0,0,0.00109,0.0017,0.00221,0.00442,0,0,0,0,0,0,0.00103,0.00159,0.00204,0.00396,0,0,0,0,0,0,0.03613,0.0377,0.03914,0.04549,0,0,0,0,0,0,0.03713,0.0386,0.03992,0.04571,0,0,0,0,0,0,0.04054,0.04208,0.04349,0.04974,0,0,0,0,0,0,0.03384,0.03544,0.03693,0.04355,0,0,0,0,0,0,0.03937,0.04054,0.04154,0.04582,0,0,0,0,0,0,0.0359,0.03714,0.03821,0.04283,0,0,0,0,0,0,0.03602,0.03719,0.03817,0.04236,0,0,0,0,0,0,0.03791,0.03924,0.04039,0.04542,0,0,0,0,0,0,0.0376,0.03878,0.03977,0.04401,0,0,0,0,0,0,0.00669,0.00808,0.00935,0.01497,0,0,0,0,0,0,0.00671,0.008,0.00917,0.01429,0,0,0,0,0,0,0.00721,0.00858,0.00983,0.01535,0,0,0,0,0,0,0.00643,0.00785,0.00917,0.01502,0,0,0,0,0,0,0.00669,0.00773,0.00861,0.01239,0,0,0,0,0,0,0.00631,0.0074,0.00835,0.01243,0,0,0,0,0,0,0.00626,0.00729,0.00816,0.01187,0,0,0,0,0,0,0.00666,0.00782,0.00885,0.01329,0,0,0,0,0,0,0.00649,0.00753,0.00841,0.01216,0,0,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00227,0.00228,0.0023,0.00259,0,0,0,0,0,0,0.00231,0.00232,0.00234,0.00263,0,0,0,0,0,0,0.00226,0.00227,0.00229,0.00258,0,0,0,0,0,0,0.00231,0.00231,0.00232,0.0026,0,0,0,0,0,0,0.00227,0.00228,0.00229,0.00257,0,0,0,0,0,0,0.00229,0.00229,0.00231,0.00258,0,0,0,0,0,0,0.00229,0.0023,0.00231,0.00259,0,0,0,0,0,0,0.00226,0.00226,0.00227,0.00255,0,0,0,0,0,0,0.05239,0.07068,0.09542,0.15728,0,0,0,0,0,0,0.04494,0.06163,0.08436,0.14244,0,0,0,0,0,0,0.05167,0.07251,0.09923,0.17265,0,0,0,0,0,0,0.05713,0.07986,0.10885,0.18752,0,0,0,0,0,0,0.02472,0.03987,0.05907,0.1178,0,0,0,0,0,0,0.0299,0.04655,0.06759,0.13108,0,0,0,0,0,0,0.02327,0.03794,0.05667,0.11377,0,0,0,0,0,0,0.03468,0.05123,0.07249,0.13297,0,0,0,0,0,0,0.02279,0.03576,0.05249,0.1005,0,0 +Small SUV,PH10E,2030,0,0,0,0,0,0.00797,0.00838,0.0088,0.01001,0,0,0,0,0,0,0.00817,0.00854,0.00891,0.00998,0,0,0,0,0,0,0.00894,0.00934,0.00975,0.01094,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.00964,0,0,0,0,0,0,0.0086,0.00885,0.00911,0.0098,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.0092,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00902,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00981,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00936,0,0,0,0,0,0,0.01662,0.01047,0.00835,0.0107,0,0,0,0,0,0,0.01429,0.00916,0.00742,0.00966,0,0,0,0,0,0,0.01635,0.01077,0.00873,0.01163,0,0,0,0,0,0,0.01809,0.01189,0.0096,0.01271,0,0,0,0,0,0,0.0079,0.00602,0.00532,0.00773,0,0,0,0,0,0,0.00953,0.00701,0.00608,0.00869,0,0,0,0,0,0,0.00748,0.00576,0.00515,0.00751,0,0,0,0,0,0,0.01105,0.00767,0.00645,0.00887,0,0,0,0,0,0,0.00732,0.0054,0.00472,0.00662,0,0,0,0,0,0,0.7973,1.16542,1.49197,2.19791,0,0,0,0,0,0,0.76171,1.12744,1.45133,2.15194,0,0,0,0,0,0,0.80604,1.25159,1.64416,2.53336,0,0,0,0,0,0,0.87395,1.36104,1.79302,2.74754,0,0,0,0,0,0,0.6579,1.10385,1.47231,2.31051,0,0,0,0,0,0,0.69274,1.15455,1.54226,2.42859,0,0,0,0,0,0,0.67878,1.13779,1.51464,2.36529,0,0,0,0,0,0,0.71997,1.14551,1.49969,2.29838,0,0,0,0,0,0,0.61454,0.98364,1.27484,1.92636,0,0,0,0,0,0,213.49891,215.51143,218.87846,237.62188,0,0,0,0,0,0,215.04232,216.91048,220.04699,238.42257,0,0,0,0,0,0,218.14123,220.1076,223.40804,242.28526,0,0,0,0,0,0,213.33378,215.30129,218.60983,237.23679,0,0,0,0,0,0,218.03909,219.40321,221.73125,238.68086,0,0,0,0,0,0,214.73855,216.24264,218.79651,236.00728,0,0,0,0,0,0,216.43235,217.73743,219.97522,236.65925,0,0,0,0,0,0,216.60666,218.18827,220.8651,238.42237,0,0,0,0,0,0,213.17955,214.62181,217.05028,233.90875,0,0,0,0,0,0,0.00476,0.00533,0.00628,0.00818,0,0,0,0,0,0,0.00477,0.00534,0.00628,0.00817,0,0,0,0,0,0,0.00485,0.00541,0.00636,0.00826,0,0,0,0,0,0,0.00467,0.00523,0.00616,0.00804,0,0,0,0,0,0,0.00482,0.00539,0.00633,0.00823,0,0,0,0,0,0,0.00472,0.00528,0.00622,0.00809,0,0,0,0,0,0,0.00476,0.00533,0.00627,0.00816,0,0,0,0,0,0,0.00481,0.00538,0.00632,0.00822,0,0,0,0,0,0,0.00484,0.00542,0.00637,0.00829,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01697,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01697,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.01688,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01695,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.0169,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01694,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.01698,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01702,0.02193,0.02193,0,0,0,0,0,0,0.03365,0.04914,0.06776,0.10601,0,0,0,0,0,0,0.03239,0.04743,0.06568,0.10326,0,0,0,0,0,0,0.03333,0.05141,0.07089,0.11465,0,0,0,0,0,0,0.03478,0.0545,0.07511,0.12181,0,0,0,0,0,0,0.02603,0.04302,0.06075,0.10111,0,0,0,0,0,0,0.0287,0.04664,0.06537,0.10784,0,0,0,0,0,0,0.02654,0.04348,0.06145,0.10144,0,0,0,0,0,0,0.03064,0.04839,0.06736,0.10932,0,0,0,0,0,0,0.02653,0.0418,0.05855,0.09404,0,0,0,0,0,0,0.00121,0.00192,0.00254,0.00418,0,0,0,0,0,0,0.00116,0.00182,0.0024,0.00391,0,0,0,0,0,0,0.00119,0.00188,0.0025,0.00411,0,0,0,0,0,0,0.00122,0.00194,0.00258,0.00428,0,0,0,0,0,0,0.00101,0.00156,0.00201,0.00315,0,0,0,0,0,0,0.00103,0.00161,0.00209,0.00331,0,0,0,0,0,0,0.00101,0.00156,0.00201,0.00313,0,0,0,0,0,0,0.00108,0.00169,0.00221,0.00353,0,0,0,0,0,0,0.00103,0.00159,0.00204,0.00318,0,0,0,0,0,0,0.03612,0.03768,0.03913,0.043,0,0,0,0,0,0,0.03713,0.03858,0.03991,0.04344,0,0,0,0,0,0,0.04053,0.04206,0.04349,0.0473,0,0,0,0,0,0,0.03383,0.03543,0.03693,0.04097,0,0,0,0,0,0,0.03936,0.04054,0.04154,0.04411,0,0,0,0,0,0,0.0359,0.03713,0.0382,0.04099,0,0,0,0,0,0,0.03601,0.03718,0.03816,0.04068,0,0,0,0,0,0,0.03791,0.03922,0.04039,0.04343,0,0,0,0,0,0,0.03759,0.03877,0.03977,0.0423,0,0,0,0,0,0,0.00668,0.00806,0.00934,0.01277,0,0,0,0,0,0,0.0067,0.00799,0.00916,0.01228,0,0,0,0,0,0,0.00721,0.00856,0.00982,0.01319,0,0,0,0,0,0,0.00642,0.00784,0.00917,0.01274,0,0,0,0,0,0,0.00668,0.00772,0.00861,0.01088,0,0,0,0,0,0,0.0063,0.00739,0.00834,0.01081,0,0,0,0,0,0,0.00625,0.00728,0.00816,0.01038,0,0,0,0,0,0,0.00665,0.00781,0.00884,0.01153,0,0,0,0,0,0,0.00648,0.00753,0.00841,0.01065,0,0,0,0,0,0,0.00205,0.00207,0.00211,0.00229,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.00229,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00233,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00228,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0023,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00227,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00228,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.00229,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00225,0,0,0,0,0,0,0.04937,0.06481,0.08712,0.13154,0,0,0,0,0,0,0.04193,0.05581,0.07605,0.11667,0,0,0,0,0,0,0.04852,0.06576,0.0896,0.14025,0,0,0,0,0,0,0.05391,0.07278,0.09875,0.15351,0,0,0,0,0,0,0.02162,0.03329,0.0495,0.08575,0,0,0,0,0,0,0.02678,0.03979,0.05778,0.09789,0,0,0,0,0,0,0.02017,0.03139,0.04712,0.08211,0,0,0,0,0,0,0.03157,0.0448,0.06324,0.10275,0,0,0,0,0,0,0.01975,0.02976,0.04387,0.07366,0 +Small SUV,PH10E,2035,0,0,0,0,0,0,0.00797,0.00838,0.0088,0.00978,0,0,0,0,0,0,0.00817,0.00854,0.00892,0.00978,0,0,0,0,0,0,0.00894,0.00934,0.00976,0.01072,0,0,0,0,0,0,0.00749,0.00791,0.00836,0.0094,0,0,0,0,0,0,0.0086,0.00886,0.00911,0.00967,0,0,0,0,0,0,0.00786,0.00814,0.00842,0.00905,0,0,0,0,0,0,0.00786,0.00811,0.00835,0.00889,0,0,0,0,0,0,0.00831,0.00862,0.00893,0.00964,0,0,0,0,0,0,0.0082,0.00845,0.00869,0.00923,0,0,0,0,0,0,0.01653,0.01046,0.00836,0.00986,0,0,0,0,0,0,0.01421,0.00915,0.00742,0.0088,0,0,0,0,0,0,0.01626,0.01076,0.00873,0.01053,0,0,0,0,0,0,0.01799,0.01188,0.0096,0.01153,0,0,0,0,0,0,0.00786,0.00602,0.00533,0.00661,0,0,0,0,0,0,0.00948,0.00701,0.00608,0.00752,0,0,0,0,0,0,0.00745,0.00576,0.00515,0.00639,0,0,0,0,0,0,0.01099,0.00767,0.00646,0.00783,0,0,0,0,0,0,0.00728,0.0054,0.00472,0.00571,0,0,0,0,0,0,0.79761,1.16635,1.49257,1.99708,0,0,0,0,0,0,0.76227,1.12838,1.45186,1.9433,0,0,0,0,0,0,0.80673,1.25277,1.64477,2.27123,0,0,0,0,0,0,0.8747,1.36231,1.79367,2.46744,0,0,0,0,0,0,0.65933,1.105,1.47266,2.03042,0,0,0,0,0,0,0.69411,1.15574,1.54266,2.14062,0,0,0,0,0,0,0.68029,1.13894,1.51496,2.07866,0,0,0,0,0,0,0.72107,1.14653,1.50013,2.04353,0,0,0,0,0,0,0.61569,0.98447,1.27517,1.70565,0,0,0,0,0,0,213.45459,215.51958,218.89542,227.92808,0,0,0,0,0,0,215.00058,216.91807,220.06238,228.65637,0,0,0,0,0,0,218.09737,220.1156,223.42433,232.38117,0,0,0,0,0,0,213.28959,215.30918,218.62603,227.5553,0,0,0,0,0,0,218.00676,219.40855,221.74227,228.7709,0,0,0,0,0,0,214.70366,216.24846,218.8088,226.25097,0,0,0,0,0,0,216.40104,217.74241,219.98545,226.82384,0,0,0,0,0,0,216.57028,218.19448,220.87797,228.58087,0,0,0,0,0,0,213.14733,214.62766,217.06223,224.21254,0,0,0,0,0,0,0.00475,0.00534,0.00628,0.00819,0,0,0,0,0,0,0.00476,0.00534,0.00628,0.00818,0,0,0,0,0,0,0.00483,0.00542,0.00636,0.00826,0,0,0,0,0,0,0.00466,0.00523,0.00617,0.00805,0,0,0,0,0,0,0.00481,0.00539,0.00634,0.00823,0,0,0,0,0,0,0.00471,0.00529,0.00622,0.0081,0,0,0,0,0,0,0.00475,0.00533,0.00627,0.00817,0,0,0,0,0,0,0.00479,0.00538,0.00633,0.00823,0,0,0,0,0,0,0.00483,0.00542,0.00638,0.0083,0,0,0,0,0,0,0.0146,0.01697,0.02185,0.02185,0,0,0,0,0,0,0.01461,0.01699,0.02188,0.02188,0,0,0,0,0,0,0.01461,0.01699,0.02187,0.02187,0,0,0,0,0,0,0.01454,0.0169,0.02176,0.02176,0,0,0,0,0,0,0.0146,0.01698,0.02185,0.02185,0,0,0,0,0,0,0.01455,0.01692,0.02178,0.02178,0,0,0,0,0,0,0.01459,0.01696,0.02184,0.02184,0,0,0,0,0,0,0.01462,0.017,0.02189,0.02189,0,0,0,0,0,0,0.01465,0.01704,0.02193,0.02193,0,0,0,0,0,0,0.03362,0.04925,0.0678,0.09277,0,0,0,0,0,0,0.03237,0.04753,0.06572,0.08998,0,0,0,0,0,0,0.03332,0.05153,0.07093,0.09907,0,0,0,0,0,0,0.03477,0.05462,0.07515,0.10502,0,0,0,0,0,0,0.02604,0.04313,0.06078,0.08557,0,0,0,0,0,0,0.0287,0.04676,0.0654,0.0918,0,0,0,0,0,0,0.02655,0.04359,0.06148,0.08596,0,0,0,0,0,0,0.03064,0.0485,0.0674,0.09343,0,0,0,0,0,0,0.02653,0.0419,0.05858,0.0802,0,0,0,0,0,0,0.00122,0.00192,0.00254,0.00384,0,0,0,0,0,0,0.00116,0.00182,0.0024,0.00359,0,0,0,0,0,0,0.0012,0.00189,0.0025,0.00378,0,0,0,0,0,0,0.00123,0.00194,0.00258,0.00393,0,0,0,0,0,0,0.00101,0.00156,0.00201,0.00291,0,0,0,0,0,0,0.00103,0.00161,0.00209,0.00305,0,0,0,0,0,0,0.00101,0.00156,0.00201,0.00288,0,0,0,0,0,0,0.00109,0.00169,0.00221,0.00325,0,0,0,0,0,0,0.00103,0.00159,0.00204,0.00293,0,0,0,0,0,0,0.03613,0.03769,0.03913,0.04223,0,0,0,0,0,0,0.03713,0.03859,0.03991,0.04272,0,0,0,0,0,0,0.04053,0.04207,0.04349,0.04653,0,0,0,0,0,0,0.03383,0.03543,0.03693,0.04016,0,0,0,0,0,0,0.03936,0.04054,0.04154,0.04356,0,0,0,0,0,0,0.0359,0.03713,0.03821,0.04041,0,0,0,0,0,0,0.03602,0.03718,0.03817,0.04014,0,0,0,0,0,0,0.03791,0.03923,0.04039,0.0428,0,0,0,0,0,0,0.03759,0.03878,0.03977,0.04176,0,0,0,0,0,0,0.00669,0.00807,0.00935,0.01208,0,0,0,0,0,0,0.0067,0.00799,0.00917,0.01165,0,0,0,0,0,0,0.00721,0.00857,0.00982,0.01251,0,0,0,0,0,0,0.00643,0.00784,0.00917,0.01203,0,0,0,0,0,0,0.00669,0.00773,0.00861,0.0104,0,0,0,0,0,0,0.00631,0.0074,0.00834,0.01029,0,0,0,0,0,0,0.00626,0.00729,0.00816,0.00991,0,0,0,0,0,0,0.00665,0.00782,0.00884,0.01098,0,0,0,0,0,0,0.00648,0.00753,0.00841,0.01017,0,0,0,0,0,0,0.00205,0.00207,0.00211,0.00219,0,0,0,0,0,0,0.00207,0.00209,0.00212,0.0022,0,0,0,0,0,0,0.0021,0.00212,0.00215,0.00224,0,0,0,0,0,0,0.00205,0.00207,0.0021,0.00219,0,0,0,0,0,0,0.0021,0.00211,0.00213,0.0022,0,0,0,0,0,0,0.00207,0.00208,0.00211,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00212,0.00218,0,0,0,0,0,0,0.00208,0.0021,0.00213,0.0022,0,0,0,0,0,0,0.00205,0.00207,0.00209,0.00216,0,0,0,0,0,0,0.04925,0.0649,0.08719,0.12317,0,0,0,0,0,0,0.04183,0.05589,0.07612,0.10819,0,0,0,0,0,0,0.0484,0.06585,0.08967,0.12928,0,0,0,0,0,0,0.05379,0.07288,0.09883,0.142,0,0,0,0,0,0,0.02159,0.03336,0.04954,0.07461,0,0,0,0,0,0,0.02673,0.03987,0.05782,0.08636,0,0,0,0,0,0,0.02014,0.03146,0.04715,0.07113,0,0,0,0,0,0,0.03151,0.04487,0.06329,0.09245,0,0,0,0,0,0,0.01971,0.02982,0.04391,0.06454 +Small SUV,PH10E,2040,0,0,0,0,0,0,0,0.00797,0.00838,0.0088,0,0,0,0,0,0,0,0.00817,0.00854,0.00892,0,0,0,0,0,0,0,0.00894,0.00934,0.00975,0,0,0,0,0,0,0,0.00749,0.00791,0.00836,0,0,0,0,0,0,0,0.0086,0.00885,0.00911,0,0,0,0,0,0,0,0.00786,0.00814,0.00842,0,0,0,0,0,0,0,0.00786,0.00811,0.00835,0,0,0,0,0,0,0,0.00831,0.00862,0.00893,0,0,0,0,0,0,0,0.0082,0.00845,0.00869,0,0,0,0,0,0,0,0.01653,0.01046,0.00835,0,0,0,0,0,0,0,0.01422,0.00915,0.00742,0,0,0,0,0,0,0,0.01626,0.01076,0.00873,0,0,0,0,0,0,0,0.01799,0.01188,0.0096,0,0,0,0,0,0,0,0.00787,0.00601,0.00532,0,0,0,0,0,0,0,0.00949,0.00701,0.00608,0,0,0,0,0,0,0,0.00745,0.00576,0.00515,0,0,0,0,0,0,0,0.01099,0.00767,0.00645,0,0,0,0,0,0,0,0.00729,0.00539,0.00472,0,0,0,0,0,0,0,0.79649,1.16554,1.49218,0,0,0,0,0,0,0,0.76117,1.12762,1.45152,0,0,0,0,0,0,0,0.80545,1.25186,1.64437,0,0,0,0,0,0,0,0.87331,1.36132,1.79325,0,0,0,0,0,0,0,0.65816,1.10427,1.47244,0,0,0,0,0,0,0,0.69289,1.15496,1.5424,0,0,0,0,0,0,0,0.67911,1.13823,1.51475,0,0,0,0,0,0,0,0.71989,1.14579,1.49985,0,0,0,0,0,0,0,0.61469,0.98389,1.27496,0,0,0,0,0,0,0,213.4427,215.5043,218.88484,0,0,0,0,0,0,0,214.98953,216.90376,220.05274,0,0,0,0,0,0,0,218.08565,220.10049,223.41404,0,0,0,0,0,0,0,213.27791,215.29397,218.61572,0,0,0,0,0,0,0,217.99862,219.39784,221.73511,0,0,0,0,0,0,0,214.69468,216.23676,218.80109,0,0,0,0,0,0,0,216.39311,217.73212,219.97902,0,0,0,0,0,0,0,216.56081,218.18222,220.86993,0,0,0,0,0,0,0,213.1388,214.61659,217.05499,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00475,0.00533,0.00628,0,0,0,0,0,0,0,0.00483,0.00541,0.00636,0,0,0,0,0,0,0,0.00465,0.00523,0.00617,0,0,0,0,0,0,0,0.00481,0.00539,0.00634,0,0,0,0,0,0,0,0.00471,0.00528,0.00622,0,0,0,0,0,0,0,0.00475,0.00533,0.00627,0,0,0,0,0,0,0,0.00479,0.00537,0.00632,0,0,0,0,0,0,0,0.00483,0.00542,0.00638,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01461,0.01699,0.02188,0,0,0,0,0,0,0,0.01461,0.01698,0.02187,0,0,0,0,0,0,0,0.01454,0.01689,0.02176,0,0,0,0,0,0,0,0.0146,0.01697,0.02185,0,0,0,0,0,0,0,0.01455,0.01691,0.02178,0,0,0,0,0,0,0,0.01459,0.01695,0.02184,0,0,0,0,0,0,0,0.01462,0.01699,0.02189,0,0,0,0,0,0,0,0.01465,0.01703,0.02193,0,0,0,0,0,0,0,0.03358,0.04918,0.06777,0,0,0,0,0,0,0,0.03233,0.04746,0.0657,0,0,0,0,0,0,0,0.03327,0.05145,0.07091,0,0,0,0,0,0,0,0.03472,0.05454,0.07513,0,0,0,0,0,0,0,0.026,0.04306,0.06076,0,0,0,0,0,0,0,0.02866,0.04669,0.06538,0,0,0,0,0,0,0,0.02651,0.04352,0.06147,0,0,0,0,0,0,0,0.0306,0.04843,0.06738,0,0,0,0,0,0,0,0.0265,0.04184,0.05856,0,0,0,0,0,0,0,0.00121,0.00192,0.00254,0,0,0,0,0,0,0,0.00116,0.00182,0.0024,0,0,0,0,0,0,0,0.00119,0.00188,0.0025,0,0,0,0,0,0,0,0.00122,0.00194,0.00258,0,0,0,0,0,0,0,0.00101,0.00156,0.00201,0,0,0,0,0,0,0,0.00103,0.00161,0.00209,0,0,0,0,0,0,0,0.00101,0.00156,0.00201,0,0,0,0,0,0,0,0.00108,0.00169,0.00221,0,0,0,0,0,0,0,0.00103,0.00159,0.00204,0,0,0,0,0,0,0,0.03612,0.03769,0.03913,0,0,0,0,0,0,0,0.03713,0.03859,0.03991,0,0,0,0,0,0,0,0.04053,0.04207,0.04349,0,0,0,0,0,0,0,0.03383,0.03543,0.03693,0,0,0,0,0,0,0,0.03936,0.04054,0.04154,0,0,0,0,0,0,0,0.0359,0.03713,0.0382,0,0,0,0,0,0,0,0.03602,0.03718,0.03817,0,0,0,0,0,0,0,0.03791,0.03923,0.04039,0,0,0,0,0,0,0,0.03759,0.03877,0.03977,0,0,0,0,0,0,0,0.00668,0.00807,0.00934,0,0,0,0,0,0,0,0.0067,0.00799,0.00916,0,0,0,0,0,0,0,0.00721,0.00856,0.00982,0,0,0,0,0,0,0,0.00642,0.00784,0.00917,0,0,0,0,0,0,0,0.00668,0.00772,0.00861,0,0,0,0,0,0,0,0.0063,0.00739,0.00834,0,0,0,0,0,0,0,0.00625,0.00729,0.00816,0,0,0,0,0,0,0,0.00665,0.00782,0.00884,0,0,0,0,0,0,0,0.00648,0.00753,0.00841,0,0,0,0,0,0,0,0.00205,0.00207,0.00211,0,0,0,0,0,0,0,0.00207,0.00209,0.00212,0,0,0,0,0,0,0,0.0021,0.00212,0.00215,0,0,0,0,0,0,0,0.00205,0.00207,0.0021,0,0,0,0,0,0,0,0.0021,0.00211,0.00213,0,0,0,0,0,0,0,0.00207,0.00208,0.00211,0,0,0,0,0,0,0,0.00208,0.0021,0.00212,0,0,0,0,0,0,0,0.00208,0.0021,0.00213,0,0,0,0,0,0,0,0.00205,0.00207,0.00209,0,0,0,0,0,0,0,0.04919,0.06481,0.08714,0,0,0,0,0,0,0,0.04177,0.05581,0.07607,0,0,0,0,0,0,0,0.04834,0.06576,0.08963,0,0,0,0,0,0,0,0.05372,0.07278,0.09878,0,0,0,0,0,0,0,0.02155,0.03331,0.04951,0,0,0,0,0,0,0,0.02669,0.03981,0.05779,0,0,0,0,0,0,0,0.02011,0.0314,0.04713,0,0,0,0,0,0,0,0.03146,0.04481,0.06326,0,0,0,0,0,0,0,0.01969,0.02977,0.04388 +Small SUV,PH10E,2045,0,0,0,0,0,0,0,0,0.00797,0.00838,0,0,0,0,0,0,0,0,0.00817,0.00854,0,0,0,0,0,0,0,0,0.00894,0.00934,0,0,0,0,0,0,0,0,0.00749,0.00791,0,0,0,0,0,0,0,0,0.0086,0.00885,0,0,0,0,0,0,0,0,0.00786,0.00814,0,0,0,0,0,0,0,0,0.00786,0.00811,0,0,0,0,0,0,0,0,0.00831,0.00862,0,0,0,0,0,0,0,0,0.0082,0.00845,0,0,0,0,0,0,0,0,0.01653,0.01046,0,0,0,0,0,0,0,0,0.01422,0.00915,0,0,0,0,0,0,0,0,0.01626,0.01076,0,0,0,0,0,0,0,0,0.01799,0.01188,0,0,0,0,0,0,0,0,0.00787,0.00601,0,0,0,0,0,0,0,0,0.00949,0.00701,0,0,0,0,0,0,0,0,0.00745,0.00576,0,0,0,0,0,0,0,0,0.01099,0.00767,0,0,0,0,0,0,0,0,0.00729,0.00539,0,0,0,0,0,0,0,0,0.79587,1.16531,0,0,0,0,0,0,0,0,0.76056,1.12739,0,0,0,0,0,0,0,0,0.80475,1.25157,0,0,0,0,0,0,0,0,0.87255,1.36101,0,0,0,0,0,0,0,0,0.65756,1.10402,0,0,0,0,0,0,0,0,0.69225,1.15469,0,0,0,0,0,0,0,0,0.67851,1.13797,0,0,0,0,0,0,0,0,0.71926,1.14555,0,0,0,0,0,0,0,0,0.61417,0.9837,0,0,0,0,0,0,0,0,213.43362,215.50112,0,0,0,0,0,0,0,0,214.98102,216.90063,0,0,0,0,0,0,0,0,218.07672,220.09735,0,0,0,0,0,0,0,0,213.26892,215.29077,0,0,0,0,0,0,0,0,217.99222,219.39577,0,0,0,0,0,0,0,0,214.68769,216.23437,0,0,0,0,0,0,0,0,216.38703,217.73035,0,0,0,0,0,0,0,0,216.55366,218.17975,0,0,0,0,0,0,0,0,213.13228,214.61452,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00475,0.00533,0,0,0,0,0,0,0,0,0.00483,0.00541,0,0,0,0,0,0,0,0,0.00465,0.00523,0,0,0,0,0,0,0,0,0.00481,0.00539,0,0,0,0,0,0,0,0,0.0047,0.00528,0,0,0,0,0,0,0,0,0.00474,0.00533,0,0,0,0,0,0,0,0,0.00479,0.00537,0,0,0,0,0,0,0,0,0.00482,0.00542,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01461,0.01698,0,0,0,0,0,0,0,0,0.01454,0.01689,0,0,0,0,0,0,0,0,0.0146,0.01696,0,0,0,0,0,0,0,0,0.01455,0.01691,0,0,0,0,0,0,0,0,0.01459,0.01695,0,0,0,0,0,0,0,0,0.01462,0.01699,0,0,0,0,0,0,0,0,0.01465,0.01703,0,0,0,0,0,0,0,0,0.03356,0.04916,0,0,0,0,0,0,0,0,0.03231,0.04744,0,0,0,0,0,0,0,0,0.03324,0.05143,0,0,0,0,0,0,0,0,0.03469,0.05452,0,0,0,0,0,0,0,0,0.02598,0.04304,0,0,0,0,0,0,0,0,0.02864,0.04666,0,0,0,0,0,0,0,0,0.02649,0.0435,0,0,0,0,0,0,0,0,0.03057,0.04841,0,0,0,0,0,0,0,0,0.02648,0.04182,0,0,0,0,0,0,0,0,0.00121,0.00192,0,0,0,0,0,0,0,0,0.00116,0.00182,0,0,0,0,0,0,0,0,0.00119,0.00188,0,0,0,0,0,0,0,0,0.00122,0.00194,0,0,0,0,0,0,0,0,0.00101,0.00156,0,0,0,0,0,0,0,0,0.00103,0.00161,0,0,0,0,0,0,0,0,0.001,0.00156,0,0,0,0,0,0,0,0,0.00108,0.00169,0,0,0,0,0,0,0,0,0.00103,0.00159,0,0,0,0,0,0,0,0,0.03612,0.03768,0,0,0,0,0,0,0,0,0.03712,0.03858,0,0,0,0,0,0,0,0,0.04053,0.04207,0,0,0,0,0,0,0,0,0.03382,0.03543,0,0,0,0,0,0,0,0,0.03936,0.04054,0,0,0,0,0,0,0,0,0.0359,0.03713,0,0,0,0,0,0,0,0,0.03601,0.03718,0,0,0,0,0,0,0,0,0.03791,0.03923,0,0,0,0,0,0,0,0,0.03759,0.03877,0,0,0,0,0,0,0,0,0.00668,0.00806,0,0,0,0,0,0,0,0,0.0067,0.00799,0,0,0,0,0,0,0,0,0.0072,0.00856,0,0,0,0,0,0,0,0,0.00642,0.00784,0,0,0,0,0,0,0,0,0.00668,0.00772,0,0,0,0,0,0,0,0,0.0063,0.00739,0,0,0,0,0,0,0,0,0.00625,0.00728,0,0,0,0,0,0,0,0,0.00665,0.00781,0,0,0,0,0,0,0,0,0.00648,0.00753,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.00207,0.00209,0,0,0,0,0,0,0,0,0.0021,0.00212,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.0021,0.00211,0,0,0,0,0,0,0,0,0.00207,0.00208,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00208,0.0021,0,0,0,0,0,0,0,0,0.00205,0.00207,0,0,0,0,0,0,0,0,0.04915,0.06479,0,0,0,0,0,0,0,0,0.04174,0.05579,0,0,0,0,0,0,0,0,0.0483,0.06573,0,0,0,0,0,0,0,0,0.05368,0.07276,0,0,0,0,0,0,0,0,0.02153,0.03329,0,0,0,0,0,0,0,0,0.02666,0.03979,0,0,0,0,0,0,0,0,0.02009,0.03139,0,0,0,0,0,0,0,0,0.03144,0.04479,0,0,0,0,0,0,0,0,0.01967,0.02975 +Small SUV,PH10E,2050,0,0,0,0,0,0,0,0,0,0.00797,0,0,0,0,0,0,0,0,0,0.00817,0,0,0,0,0,0,0,0,0,0.00894,0,0,0,0,0,0,0,0,0,0.00749,0,0,0,0,0,0,0,0,0,0.0086,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00831,0,0,0,0,0,0,0,0,0,0.0082,0,0,0,0,0,0,0,0,0,0.01653,0,0,0,0,0,0,0,0,0,0.01422,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01799,0,0,0,0,0,0,0,0,0,0.00787,0,0,0,0,0,0,0,0,0,0.00949,0,0,0,0,0,0,0,0,0,0.00745,0,0,0,0,0,0,0,0,0,0.01099,0,0,0,0,0,0,0,0,0,0.00729,0,0,0,0,0,0,0,0,0,0.79588,0,0,0,0,0,0,0,0,0,0.76057,0,0,0,0,0,0,0,0,0,0.80476,0,0,0,0,0,0,0,0,0,0.87256,0,0,0,0,0,0,0,0,0,0.65758,0,0,0,0,0,0,0,0,0,0.69226,0,0,0,0,0,0,0,0,0,0.67852,0,0,0,0,0,0,0,0,0,0.71927,0,0,0,0,0,0,0,0,0,0.61418,0,0,0,0,0,0,0,0,0,213.43367,0,0,0,0,0,0,0,0,0,214.98087,0,0,0,0,0,0,0,0,0,218.0766,0,0,0,0,0,0,0,0,0,213.26882,0,0,0,0,0,0,0,0,0,217.99211,0,0,0,0,0,0,0,0,0,214.68757,0,0,0,0,0,0,0,0,0,216.3871,0,0,0,0,0,0,0,0,0,216.55347,0,0,0,0,0,0,0,0,0,213.13218,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00475,0,0,0,0,0,0,0,0,0,0.00483,0,0,0,0,0,0,0,0,0,0.00465,0,0,0,0,0,0,0,0,0,0.00481,0,0,0,0,0,0,0,0,0,0.0047,0,0,0,0,0,0,0,0,0,0.00474,0,0,0,0,0,0,0,0,0,0.00479,0,0,0,0,0,0,0,0,0,0.00482,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01461,0,0,0,0,0,0,0,0,0,0.01454,0,0,0,0,0,0,0,0,0,0.0146,0,0,0,0,0,0,0,0,0,0.01455,0,0,0,0,0,0,0,0,0,0.01459,0,0,0,0,0,0,0,0,0,0.01462,0,0,0,0,0,0,0,0,0,0.01465,0,0,0,0,0,0,0,0,0,0.03356,0,0,0,0,0,0,0,0,0,0.03231,0,0,0,0,0,0,0,0,0,0.03325,0,0,0,0,0,0,0,0,0,0.03469,0,0,0,0,0,0,0,0,0,0.02598,0,0,0,0,0,0,0,0,0,0.02864,0,0,0,0,0,0,0,0,0,0.02649,0,0,0,0,0,0,0,0,0,0.03057,0,0,0,0,0,0,0,0,0,0.02648,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00116,0,0,0,0,0,0,0,0,0,0.00119,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00101,0,0,0,0,0,0,0,0,0,0.00103,0,0,0,0,0,0,0,0,0,0.001,0,0,0,0,0,0,0,0,0,0.00108,0,0,0,0,0,0,0,0,0,0.00103,0,0,0,0,0,0,0,0,0,0.03612,0,0,0,0,0,0,0,0,0,0.03712,0,0,0,0,0,0,0,0,0,0.04053,0,0,0,0,0,0,0,0,0,0.03382,0,0,0,0,0,0,0,0,0,0.03936,0,0,0,0,0,0,0,0,0,0.0359,0,0,0,0,0,0,0,0,0,0.03601,0,0,0,0,0,0,0,0,0,0.03791,0,0,0,0,0,0,0,0,0,0.03759,0,0,0,0,0,0,0,0,0,0.00668,0,0,0,0,0,0,0,0,0,0.0067,0,0,0,0,0,0,0,0,0,0.0072,0,0,0,0,0,0,0,0,0,0.00642,0,0,0,0,0,0,0,0,0,0.00668,0,0,0,0,0,0,0,0,0,0.0063,0,0,0,0,0,0,0,0,0,0.00625,0,0,0,0,0,0,0,0,0,0.00665,0,0,0,0,0,0,0,0,0,0.00648,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.0021,0,0,0,0,0,0,0,0,0,0.00207,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00208,0,0,0,0,0,0,0,0,0,0.00205,0,0,0,0,0,0,0,0,0,0.04915,0,0,0,0,0,0,0,0,0,0.04174,0,0,0,0,0,0,0,0,0,0.0483,0,0,0,0,0,0,0,0,0,0.05368,0,0,0,0,0,0,0,0,0,0.02153,0,0,0,0,0,0,0,0,0,0.02666,0,0,0,0,0,0,0,0,0,0.02009,0,0,0,0,0,0,0,0,0,0.03144,0,0,0,0,0,0,0,0,0,0.01967 +Small SUV,PH10G,1990,0.04668,0,0,0,0,0,0,0,0,0,0.04118,0,0,0,0,0,0,0,0,0,0.04674,0,0,0,0,0,0,0,0,0,0.04975,0,0,0,0,0,0,0,0,0,0.0266,0,0,0,0,0,0,0,0,0,0.02946,0,0,0,0,0,0,0,0,0,0.02482,0,0,0,0,0,0,0,0,0,0.03361,0,0,0,0,0,0,0,0,0,0.02495,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0,0,0,0,0,0,0,0,0.00025,0.06054,0,0,0,0,0,0,0,0,0.00024,0.06752,0,0,0,0,0,0,0,0,0.00025,0.07436,0,0,0,0,0,0,0,0,0.00026,0.03611,0,0,0,0,0,0,0,0,0.00022,0.04223,0,0,0,0,0,0,0,0,0.00022,0.03468,0,0,0,0,0,0,0,0,0.00021,0.04801,0,0,0,0,0,0,0,0,0.00023,0.03431,0,0,0,0,0,0,0,0,0.0002,0.18397,0,0,0,0,0,0,0,0,0.00791,0.16475,0,0,0,0,0,0,0,0,0.00813,0.18469,0,0,0,0,0,0,0,0,0.00887,0.19469,0,0,0,0,0,0,0,0,0.00741,0.11125,0,0,0,0,0,0,0,0,0.00864,0.12231,0,0,0,0,0,0,0,0,0.00787,0.105,0,0,0,0,0,0,0,0,0.00788,0.1372,0,0,0,0,0,0,0,0,0.0083,0.10482,0,0,0,0,0,0,0,0,0.00821,0.14116,0,0,0,0,0,0,0,0,0.00145,0.12341,0,0,0,0,0,0,0,0,0.00145,0.13892,0,0,0,0,0,0,0,0,0.00155,0.15215,0,0,0,0,0,0,0,0,0.00139,0.07439,0,0,0,0,0,0,0,0,0.00146,0.08646,0,0,0,0,0,0,0,0,0.00137,0.07102,0,0,0,0,0,0,0,0,0.00135,0.09841,0,0,0,0,0,0,0,0,0.00144,0.06986,0,0,0,0,0,0,0,0,0.00138,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Small SUV,PH10G,1995,0.01727,0.03094,0,0,0,0,0,0,0,0,0.01609,0.02773,0,0,0,0,0,0,0,0,0.018,0.03135,0,0,0,0,0,0,0,0,0.01761,0.03253,0,0,0,0,0,0,0,0,0.01288,0.01918,0,0,0,0,0,0,0,0,0.01301,0.02057,0,0,0,0,0,0,0,0,0.0119,0.01783,0,0,0,0,0,0,0,0,0.01436,0.02326,0,0,0,0,0,0,0,0,0.0122,0.01807,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0,0,0,0,0,0,0,0,0.01643,0.03584,0,0,0,0,0,0,0,0,0.01821,0.03995,0,0,0,0,0,0,0,0,0.01995,0.04383,0,0,0,0,0,0,0,0,0.00987,0.02128,0,0,0,0,0,0,0,0,0.01148,0.02483,0,0,0,0,0,0,0,0,0.00952,0.02044,0,0,0,0,0,0,0,0,0.01307,0.02838,0,0,0,0,0,0,0,0,0.00949,0.02035,0,0,0,0,0,0,0,0,0.07,0.12017,0,0,0,0,0,0,0,0,0.06572,0.10912,0,0,0,0,0,0,0,0,0.07288,0.12157,0,0,0,0,0,0,0,0,0.07109,0.12518,0,0,0,0,0,0,0,0,0.05325,0.07821,0,0,0,0,0,0,0,0,0.0539,0.08322,0,0,0,0,0,0,0,0,0.04958,0.0735,0,0,0,0,0,0,0,0,0.05908,0.09317,0,0,0,0,0,0,0,0,0.0506,0.07435,0,0,0,0,0,0,0,0,0.04035,0.08473,0,0,0,0,0,0,0,0,0.03582,0.07421,0,0,0,0,0,0,0,0,0.04002,0.08309,0,0,0,0,0,0,0,0,0.04282,0.09067,0,0,0,0,0,0,0,0,0.02309,0.04517,0,0,0,0,0,0,0,0,0.02594,0.05189,0,0,0,0,0,0,0,0,0.022,0.04316,0,0,0,0,0,0,0,0,0.02931,0.05947,0,0,0,0,0,0,0,0,0.02191,0.04291,0,0,0,0,0,0,0,0,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Small SUV,PH10G,2000,0.01213,0.01435,0.02348,0,0,0,0,0,0,0,0.01171,0.01361,0.02136,0,0,0,0,0,0,0,0.01294,0.0151,0.024,0,0,0,0,0,0,0,0.01195,0.01436,0.02433,0,0,0,0,0,0,0,0.01049,0.01153,0.01571,0,0,0,0,0,0,0,0.01013,0.01137,0.01639,0,0,0,0,0,0,0,0.00966,0.01065,0.01458,0,0,0,0,0,0,0,0.011,0.01246,0.01838,0,0,0,0,0,0,0,0.01001,0.011,0.01489,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0,0,0,0,0,0,0,0.00911,0.01271,0.02516,0,0,0,0,0,0,0,0.00993,0.01389,0.02782,0,0,0,0,0,0,0,0.01083,0.01516,0.03057,0,0,0,0,0,0,0,0.00552,0.00765,0.01489,0,0,0,0,0,0,0,0.00634,0.00881,0.01733,0,0,0,0,0,0,0,0.00539,0.00747,0.01442,0,0,0,0,0,0,0,0.00727,0.01012,0.0199,0,0,0,0,0,0,0,0.00549,0.0076,0.0145,0,0,0,0,0,0,0,0.05092,0.05981,0.09255,0,0,0,0,0,0,0,0.04911,0.05679,0.08505,0,0,0,0,0,0,0,0.05393,0.06231,0.09414,0,0,0,0,0,0,0,0.05013,0.05952,0.09469,0,0,0,0,0,0,0,0.04353,0.04796,0.06411,0,0,0,0,0,0,0,0.04236,0.0475,0.06659,0,0,0,0,0,0,0,0.04039,0.04473,0.06009,0,0,0,0,0,0,0,0.04598,0.05204,0.07399,0,0,0,0,0,0,0,0.04175,0.04618,0.06143,0,0,0,0,0,0,0,0.02346,0.03133,0.0603,0,0,0,0,0,0,0,0.02112,0.02792,0.05292,0,0,0,0,0,0,0,0.02325,0.03066,0.05882,0,0,0,0,0,0,0,0.02428,0.03259,0.0637,0,0,0,0,0,0,0,0.01449,0.01841,0.0327,0,0,0,0,0,0,0,0.01574,0.02029,0.03717,0,0,0,0,0,0,0,0.01386,0.01771,0.0313,0,0,0,0,0,0,0,0.01772,0.02308,0.0425,0,0,0,0,0,0,0,0.01407,0.01799,0.03149,0,0,0,0,0,0,0,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Small SUV,PH10G,2005,0.00884,0.00977,0.01094,0.01702,0,0,0,0,0,0,0.00894,0.00968,0.01067,0.0159,0,0,0,0,0,0,0.00997,0.01017,0.01102,0.01759,0,0,0,0,0,0,0.00855,0.00936,0.01059,0.01725,0,0,0,0,0,0,0.00904,0.00953,0.01016,0.0129,0,0,0,0,0,0,0.00841,0.00878,0.00942,0.01291,0,0,0,0,0,0,0.00826,0.00868,0.00924,0.01182,0,0,0,0,0,0,0.00894,0.00939,0.01012,0.01422,0,0,0,0,0,0,0.00851,0.00885,0.00932,0.0121,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.00323,0.00515,0.00701,0.01693,0,0,0,0,0,0,0.00295,0.00457,0.00622,0.01488,0,0,0,0,0,0,0.00342,0.00422,0.00569,0.01617,0,0,0,0,0,0,0.00352,0.00522,0.00713,0.01775,0,0,0,0,0,0,0.00206,0.00322,0.00439,0.00929,0,0,0,0,0,0,0.00231,0.00329,0.00448,0.01052,0,0,0,0,0,0,0.00199,0.00303,0.00413,0.00886,0,0,0,0,0,0,0.00253,0.00364,0.00495,0.01193,0,0,0,0,0,0,0.00184,0.00275,0.00372,0.00883,0,0,0,0,0,0,0.03556,0.03964,0.04388,0.06619,0,0,0,0,0,0,0.03594,0.03932,0.04303,0.06244,0,0,0,0,0,0,0.03987,0.04134,0.04465,0.06832,0,0,0,0,0,0,0.03431,0.03793,0.04225,0.06626,0,0,0,0,0,0,0.03619,0.03857,0.04115,0.05192,0,0,0,0,0,0,0.03377,0.03572,0.03833,0.05172,0,0,0,0,0,0,0.0332,0.03534,0.0377,0.04803,0,0,0,0,0,0,0.03586,0.03814,0.04099,0.05653,0,0,0,0,0,0,0.03413,0.03599,0.03806,0.04924,0,0,0,0,0,0,0.00987,0.01348,0.01723,0.03697,0,0,0,0,0,0,0.00946,0.01246,0.01574,0.03291,0,0,0,0,0,0,0.01081,0.01211,0.01504,0.03598,0,0,0,0,0,0,0.01027,0.01347,0.0173,0.03854,0,0,0,0,0,0,0.00799,0.0101,0.01238,0.02191,0,0,0,0,0,0,0.00813,0.00986,0.01217,0.02401,0,0,0,0,0,0,0.00749,0.00939,0.01148,0.02062,0,0,0,0,0,0,0.00876,0.01078,0.01331,0.02705,0,0,0,0,0,0,0.00732,0.00897,0.01081,0.0207,0,0,0,0,0,0,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Small SUV,PH10G,2010,0,0.00846,0.00931,0.01029,0.0148,0,0,0,0,0,0,0.00857,0.00931,0.01018,0.01404,0,0,0,0,0,0,0.00917,0.0098,0.01109,0.01539,0,0,0,0,0,0,0.008,0.0089,0.00997,0.01483,0,0,0,0,0,0,0.00887,0.00937,0.00987,0.01202,0,0,0,0,0,0,0.00809,0.00859,0.00926,0.01178,0,0,0,0,0,0,0.00808,0.00854,0.00897,0.01094,0,0,0,0,0,0,0.00857,0.00913,0.00989,0.01284,0,0,0,0,0,0,0.00833,0.00871,0.00926,0.0112,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0,0.00194,0.00327,0.00461,0.01201,0,0,0,0,0,0,0.0018,0.00303,0.00428,0.01072,0,0,0,0,0,0,0.00163,0.00272,0.00443,0.01144,0,0,0,0,0,0,0.00197,0.00333,0.00477,0.01253,0,0,0,0,0,0,0.00157,0.00258,0.00343,0.00728,0,0,0,0,0,0,0.00152,0.00251,0.00357,0.00798,0,0,0,0,0,0,0.00149,0.00244,0.00323,0.00686,0,0,0,0,0,0,0.00157,0.0026,0.00377,0.00884,0,0,0,0,0,0,0.00133,0.00217,0.00314,0.00677,0,0,0,0,0,0,0.03293,0.03598,0.03912,0.05581,0,0,0,0,0,0,0.03356,0.03631,0.03921,0.05368,0,0,0,0,0,0,0.03597,0.03841,0.04245,0.05828,0,0,0,0,0,0,0.03106,0.03419,0.03758,0.05519,0,0,0,0,0,0,0.03514,0.03732,0.03921,0.04771,0,0,0,0,0,0,0.03205,0.0342,0.03658,0.04637,0,0,0,0,0,0,0.03212,0.03415,0.03588,0.04384,0,0,0,0,0,0,0.03382,0.03607,0.03873,0.05002,0,0,0,0,0,0,0.03306,0.03485,0.037,0.04493,0,0,0,0,0,0,0.00755,0.01025,0.01303,0.02779,0,0,0,0,0,0,0.00736,0.00979,0.01236,0.02516,0,0,0,0,0,0,0.00736,0.00952,0.01309,0.0271,0,0,0,0,0,0,0.0074,0.01017,0.01317,0.02875,0,0,0,0,0,0,0.00706,0.00899,0.01066,0.01818,0,0,0,0,0,0,0.00661,0.00851,0.01062,0.01928,0,0,0,0,0,0,0.00654,0.00834,0.00987,0.01691,0,0,0,0,0,0,0.00696,0.00895,0.0113,0.02129,0,0,0,0,0,0,0.00639,0.00796,0.00987,0.01689,0,0,0,0,0,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Small SUV,PH10G,2015,0,0,0.00822,0.00889,0.00974,0.01243,0,0,0,0,0,0,0.00838,0.009,0.00976,0.01209,0,0,0,0,0,0,0.009,0.00979,0.0106,0.01312,0,0,0,0,0,0,0.00773,0.00845,0.00934,0.01221,0,0,0,0,0,0,0.00878,0.0092,0.00973,0.01112,0,0,0,0,0,0,0.008,0.0085,0.00907,0.01065,0,0,0,0,0,0,0.00801,0.00839,0.00886,0.0101,0,0,0,0,0,0,0.00845,0.009,0.00962,0.01143,0,0,0,0,0,0,0.00826,0.00869,0.00915,0.01036,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0,0,0.00165,0.00281,0.00409,0.00789,0,0,0,0,0,0,0.00157,0.00267,0.00387,0.00727,0,0,0,0,0,0,0.00142,0.00272,0.00396,0.00756,0,0,0,0,0,0,0.00166,0.00285,0.00417,0.00814,0,0,0,0,0,0,0.00142,0.00232,0.0033,0.00561,0,0,0,0,0,0,0.00138,0.00237,0.00339,0.0059,0,0,0,0,0,0,0.00136,0.00221,0.00313,0.00526,0,0,0,0,0,0,0.0014,0.00245,0.00351,0.0063,0,0,0,0,0,0,0.00121,0.00215,0.00305,0.00514,0,0,0,0,0,0,0.03222,0.03478,0.03774,0.04665,0,0,0,0,0,0,0.03298,0.03541,0.03814,0.04603,0,0,0,0,0,0,0.03546,0.03836,0.0412,0.04962,0,0,0,0,0,0,0.03026,0.03293,0.03598,0.04535,0,0,0,0,0,0,0.03481,0.03671,0.03885,0.04404,0,0,0,0,0,0,0.03171,0.03385,0.03609,0.04181,0,0,0,0,0,0,0.03181,0.03361,0.0356,0.04035,0,0,0,0,0,0,0.03338,0.03566,0.03804,0.04442,0,0,0,0,0,0,0.0328,0.03479,0.03673,0.04139,0,0,0,0,0,0,0.00692,0.00919,0.0118,0.01969,0,0,0,0,0,0,0.00685,0.009,0.01142,0.01839,0,0,0,0,0,0,0.00691,0.00948,0.01199,0.01943,0,0,0,0,0,0,0.0067,0.00906,0.01175,0.02005,0,0,0,0,0,0,0.00677,0.00846,0.01035,0.01493,0,0,0,0,0,0,0.00631,0.0082,0.01019,0.01525,0,0,0,0,0,0,0.00627,0.00786,0.00962,0.01383,0,0,0,0,0,0,0.00657,0.00859,0.0107,0.01634,0,0,0,0,0,0,0.00616,0.00792,0.00963,0.01376,0,0,0,0,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Small SUV,PH10G,2020,0,0,0,0.00813,0.00869,0.00925,0.01117,0,0,0,0,0,0,0.00832,0.00882,0.00933,0.01102,0,0,0,0,0,0,0.00907,0.0096,0.01013,0.01194,0,0,0,0,0,0,0.00765,0.00823,0.00882,0.01084,0,0,0,0,0,0,0.00872,0.00908,0.00942,0.01053,0,0,0,0,0,0,0.00798,0.00837,0.00874,0.00997,0,0,0,0,0,0,0.00795,0.00828,0.00859,0.00957,0,0,0,0,0,0,0.00843,0.00885,0.00926,0.01062,0,0,0,0,0,0,0.00827,0.00859,0.00889,0.00984,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0,0,0,0.00151,0.00245,0.00326,0.00585,0,0,0,0,0,0,0.00145,0.00234,0.0031,0.00548,0,0,0,0,0,0,0.00146,0.00237,0.00316,0.00564,0,0,0,0,0,0,0.00152,0.00248,0.00332,0.006,0,0,0,0,0,0,0.00128,0.00204,0.00265,0.00447,0,0,0,0,0,0,0.0013,0.00208,0.00272,0.00464,0,0,0,0,0,0,0.00122,0.00194,0.00251,0.0042,0,0,0,0,0,0,0.00134,0.00215,0.00282,0.00487,0,0,0,0,0,0,0.00119,0.00189,0.00245,0.00409,0,0,0,0,0,0,0.03188,0.03398,0.03588,0.04203,0,0,0,0,0,0,0.0327,0.03467,0.03642,0.04201,0,0,0,0,0,0,0.03557,0.0376,0.03942,0.04528,0,0,0,0,0,0,0.02995,0.0321,0.03406,0.04047,0,0,0,0,0,0,0.0345,0.03612,0.03747,0.04157,0,0,0,0,0,0,0.03155,0.03323,0.03465,0.03903,0,0,0,0,0,0,0.03152,0.03304,0.0343,0.03806,0,0,0,0,0,0,0.03325,0.03501,0.03653,0.04125,0,0,0,0,0,0,0.03276,0.03425,0.03547,0.03914,0,0,0,0,0,0,0.00662,0.00848,0.01016,0.0156,0,0,0,0,0,0,0.0066,0.00835,0.0099,0.01484,0,0,0,0,0,0,0.00701,0.0088,0.01041,0.01559,0,0,0,0,0,0,0.00642,0.00832,0.01006,0.01573,0,0,0,0,0,0,0.00649,0.00793,0.00912,0.01275,0,0,0,0,0,0,0.00617,0.00766,0.00892,0.01279,0,0,0,0,0,0,0.00602,0.00736,0.00847,0.0118,0,0,0,0,0,0,0.00646,0.00802,0.00936,0.01354,0,0,0,0,0,0,0.00612,0.00744,0.00852,0.01177,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Small SUV,PH10G,2025,0,0,0,0,0.00787,0.00821,0.00857,0.01007,0,0,0,0,0,0,0.00808,0.00839,0.00871,0.01005,0,0,0,0,0,0,0.00882,0.00915,0.00949,0.01091,0,0,0,0,0,0,0.00738,0.00773,0.00811,0.00968,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00989,0,0,0,0,0,0,0.00778,0.00802,0.00827,0.00926,0,0,0,0,0,0,0.00778,0.00798,0.00818,0.00899,0,0,0,0,0,0,0.00822,0.00848,0.00875,0.00984,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00929,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0,0,0,0.00099,0.00158,0.00211,0.00421,0,0,0,0,0,0,0.00095,0.00151,0.002,0.00396,0,0,0,0,0,0,0.00097,0.00153,0.00204,0.00406,0,0,0,0,0,0,0.00101,0.0016,0.00214,0.0043,0,0,0,0,0,0,0.00085,0.00132,0.00172,0.00326,0,0,0,0,0,0,0.00086,0.00135,0.00176,0.00337,0,0,0,0,0,0,0.00081,0.00126,0.00163,0.00305,0,0,0,0,0,0,0.00088,0.00139,0.00182,0.00353,0,0,0,0,0,0,0.00079,0.00123,0.00159,0.003,0,0,0,0,0,0,0.03077,0.03207,0.0333,0.03825,0,0,0,0,0,0,0.03164,0.03287,0.034,0.03854,0,0,0,0,0,0,0.0345,0.03575,0.03693,0.04166,0,0,0,0,0,0,0.02882,0.03015,0.03141,0.03652,0,0,0,0,0,0,0.03359,0.0346,0.03548,0.03892,0,0,0,0,0,0,0.03062,0.03166,0.03259,0.03624,0,0,0,0,0,0,0.03066,0.03161,0.03242,0.03559,0,0,0,0,0,0,0.03229,0.03339,0.03437,0.03828,0,0,0,0,0,0,0.03193,0.03285,0.03365,0.03677,0,0,0,0,0,0,0.00564,0.00679,0.00787,0.01226,0,0,0,0,0,0,0.00567,0.00675,0.00775,0.01177,0,0,0,0,0,0,0.00606,0.00717,0.00821,0.01239,0,0,0,0,0,0,0.00542,0.0066,0.00771,0.01223,0,0,0,0,0,0,0.00569,0.00659,0.00736,0.01041,0,0,0,0,0,0,0.00535,0.00627,0.00709,0.01032,0,0,0,0,0,0,0.00525,0.00609,0.00681,0.00961,0,0,0,0,0,0,0.00561,0.00658,0.00744,0.0109,0,0,0,0,0,0,0.00538,0.0062,0.0069,0.00967,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Small SUV,PH10G,2030,0,0,0,0,0,0.00787,0.00821,0.00856,0.00958,0,0,0,0,0,0,0.00808,0.00838,0.0087,0.00961,0,0,0,0,0,0,0.00882,0.00914,0.00948,0.01044,0,0,0,0,0,0,0.00737,0.00773,0.00809,0.00917,0,0,0,0,0,0,0.00854,0.00876,0.00898,0.00959,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00893,0,0,0,0,0,0,0.00778,0.00798,0.00817,0.00872,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00948,0,0,0,0,0,0,0.00811,0.0083,0.0085,0.00903,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0,0,0,0,0.00099,0.00157,0.00209,0.00348,0,0,0,0,0,0,0.00095,0.00151,0.00199,0.00327,0,0,0,0,0,0,0.00096,0.00153,0.00203,0.00336,0,0,0,0,0,0,0.001,0.0016,0.00212,0.00355,0,0,0,0,0,0,0.00084,0.00132,0.00171,0.0027,0,0,0,0,0,0,0.00086,0.00134,0.00175,0.0028,0,0,0,0,0,0,0.00081,0.00125,0.00162,0.00254,0,0,0,0,0,0,0.00088,0.00139,0.00181,0.00293,0,0,0,0,0,0,0.00079,0.00122,0.00159,0.00249,0,0,0,0,0,0,0.03076,0.03206,0.03327,0.03655,0,0,0,0,0,0,0.03164,0.03286,0.03397,0.03698,0,0,0,0,0,0,0.03449,0.03574,0.0369,0.04004,0,0,0,0,0,0,0.02881,0.03014,0.03137,0.03478,0,0,0,0,0,0,0.03359,0.0346,0.03546,0.03771,0,0,0,0,0,0,0.03062,0.03166,0.03257,0.03496,0,0,0,0,0,0,0.03065,0.0316,0.0324,0.03447,0,0,0,0,0,0,0.03229,0.03338,0.03435,0.03691,0,0,0,0,0,0,0.03192,0.03285,0.03364,0.03566,0,0,0,0,0,0,0.00563,0.00678,0.00785,0.01075,0,0,0,0,0,0,0.00566,0.00674,0.00772,0.01039,0,0,0,0,0,0,0.00605,0.00716,0.00818,0.01096,0,0,0,0,0,0,0.00541,0.00659,0.00767,0.01069,0,0,0,0,0,0,0.00569,0.00658,0.00734,0.00933,0,0,0,0,0,0,0.00535,0.00627,0.00707,0.00919,0,0,0,0,0,0,0.00525,0.00609,0.00679,0.00863,0,0,0,0,0,0,0.00561,0.00657,0.00743,0.0097,0,0,0,0,0,0,0.00538,0.0062,0.0069,0.00868,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Small SUV,PH10G,2035,0,0,0,0,0,0,0.00786,0.0082,0.00856,0.00941,0,0,0,0,0,0,0.00807,0.00838,0.0087,0.00946,0,0,0,0,0,0,0.00882,0.00913,0.00948,0.01028,0,0,0,0,0,0,0.00737,0.00772,0.0081,0.00899,0,0,0,0,0,0,0.00854,0.00875,0.00898,0.00948,0,0,0,0,0,0,0.00778,0.00802,0.00826,0.00882,0,0,0,0,0,0,0.00778,0.00797,0.00818,0.00863,0,0,0,0,0,0,0.00822,0.00848,0.00874,0.00935,0,0,0,0,0,0,0.0081,0.0083,0.0085,0.00893,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0,0,0,0,0,0,0.00099,0.00156,0.0021,0.00323,0,0,0,0,0,0,0.00095,0.0015,0.00199,0.00303,0,0,0,0,0,0,0.00096,0.00152,0.00203,0.00311,0,0,0,0,0,0,0.001,0.00158,0.00213,0.0033,0,0,0,0,0,0,0.00084,0.00131,0.00171,0.00251,0,0,0,0,0,0,0.00086,0.00134,0.00175,0.0026,0,0,0,0,0,0,0.0008,0.00125,0.00162,0.00236,0,0,0,0,0,0,0.00088,0.00138,0.00182,0.00271,0,0,0,0,0,0,0.00079,0.00122,0.00159,0.00231,0,0,0,0,0,0,0.03076,0.03204,0.03328,0.03597,0,0,0,0,0,0,0.03163,0.03284,0.03398,0.03644,0,0,0,0,0,0,0.03448,0.03572,0.03691,0.03947,0,0,0,0,0,0,0.0288,0.03011,0.03139,0.03419,0,0,0,0,0,0,0.03358,0.03458,0.03546,0.03728,0,0,0,0,0,0,0.03061,0.03164,0.03257,0.03452,0,0,0,0,0,0,0.03065,0.03158,0.03241,0.03408,0,0,0,0,0,0,0.03228,0.03336,0.03436,0.03644,0,0,0,0,0,0,0.03192,0.03284,0.03364,0.03526,0,0,0,0,0,0,0.00563,0.00676,0.00786,0.01024,0,0,0,0,0,0,0.00566,0.00672,0.00773,0.00991,0,0,0,0,0,0,0.00605,0.00714,0.00819,0.01046,0,0,0,0,0,0,0.0054,0.00656,0.00769,0.01017,0,0,0,0,0,0,0.00569,0.00657,0.00735,0.00896,0,0,0,0,0,0,0.00534,0.00625,0.00708,0.0088,0,0,0,0,0,0,0.00525,0.00607,0.0068,0.00828,0,0,0,0,0,0,0.0056,0.00656,0.00743,0.00928,0,0,0,0,0,0,0.00538,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Small SUV,PH10G,2040,0,0,0,0,0,0,0,0.00786,0.0082,0.00857,0,0,0,0,0,0,0,0.00807,0.00838,0.00871,0,0,0,0,0,0,0,0.00881,0.00914,0.00948,0,0,0,0,0,0,0,0.00737,0.00772,0.00811,0,0,0,0,0,0,0,0.00853,0.00876,0.00898,0,0,0,0,0,0,0,0.00778,0.00802,0.00826,0,0,0,0,0,0,0,0.00777,0.00798,0.00818,0,0,0,0,0,0,0,0.00822,0.00848,0.00875,0,0,0,0,0,0,0,0.0081,0.0083,0.0085,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0,0,0,0,0,0,0,0.00098,0.00157,0.0021,0,0,0,0,0,0,0,0.00094,0.0015,0.002,0,0,0,0,0,0,0,0.00096,0.00152,0.00204,0,0,0,0,0,0,0,0.00099,0.00159,0.00214,0,0,0,0,0,0,0,0.00084,0.00131,0.00172,0,0,0,0,0,0,0,0.00085,0.00134,0.00176,0,0,0,0,0,0,0,0.0008,0.00125,0.00163,0,0,0,0,0,0,0,0.00088,0.00138,0.00182,0,0,0,0,0,0,0,0.00078,0.00122,0.00159,0,0,0,0,0,0,0,0.03074,0.03205,0.03329,0,0,0,0,0,0,0,0.03162,0.03284,0.03399,0,0,0,0,0,0,0,0.03447,0.03573,0.03692,0,0,0,0,0,0,0,0.02878,0.03012,0.03141,0,0,0,0,0,0,0,0.03357,0.03458,0.03547,0,0,0,0,0,0,0,0.0306,0.03165,0.03258,0,0,0,0,0,0,0,0.03064,0.03159,0.03242,0,0,0,0,0,0,0,0.03227,0.03337,0.03436,0,0,0,0,0,0,0,0.03192,0.03284,0.03364,0,0,0,0,0,0,0,0.00561,0.00677,0.00787,0,0,0,0,0,0,0,0.00564,0.00673,0.00775,0,0,0,0,0,0,0,0.00603,0.00715,0.0082,0,0,0,0,0,0,0,0.00539,0.00657,0.00771,0,0,0,0,0,0,0,0.00568,0.00657,0.00736,0,0,0,0,0,0,0,0.00533,0.00626,0.00709,0,0,0,0,0,0,0,0.00524,0.00608,0.00681,0,0,0,0,0,0,0,0.00559,0.00656,0.00744,0,0,0,0,0,0,0,0.00537,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Small SUV,PH10G,2045,0,0,0,0,0,0,0,0,0.00786,0.0082,0,0,0,0,0,0,0,0,0.00807,0.00838,0,0,0,0,0,0,0,0,0.00882,0.00914,0,0,0,0,0,0,0,0,0.00737,0.00773,0,0,0,0,0,0,0,0,0.00853,0.00876,0,0,0,0,0,0,0,0,0.00778,0.00802,0,0,0,0,0,0,0,0,0.00777,0.00798,0,0,0,0,0,0,0,0,0.00822,0.00848,0,0,0,0,0,0,0,0,0.0081,0.0083,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0,0,0,0,0,0,0,0,0.00099,0.00157,0,0,0,0,0,0,0,0,0.00095,0.0015,0,0,0,0,0,0,0,0,0.00096,0.00153,0,0,0,0,0,0,0,0,0.00099,0.00159,0,0,0,0,0,0,0,0,0.00084,0.00132,0,0,0,0,0,0,0,0,0.00085,0.00134,0,0,0,0,0,0,0,0,0.0008,0.00125,0,0,0,0,0,0,0,0,0.00088,0.00138,0,0,0,0,0,0,0,0,0.00078,0.00122,0,0,0,0,0,0,0,0,0.03075,0.03206,0,0,0,0,0,0,0,0,0.03162,0.03285,0,0,0,0,0,0,0,0,0.03447,0.03574,0,0,0,0,0,0,0,0,0.02879,0.03013,0,0,0,0,0,0,0,0,0.03358,0.03459,0,0,0,0,0,0,0,0,0.0306,0.03165,0,0,0,0,0,0,0,0,0.03064,0.0316,0,0,0,0,0,0,0,0,0.03228,0.03338,0,0,0,0,0,0,0,0,0.03192,0.03285,0,0,0,0,0,0,0,0,0.00562,0.00678,0,0,0,0,0,0,0,0,0.00565,0.00674,0,0,0,0,0,0,0,0,0.00604,0.00716,0,0,0,0,0,0,0,0,0.00539,0.00658,0,0,0,0,0,0,0,0,0.00568,0.00658,0,0,0,0,0,0,0,0,0.00534,0.00627,0,0,0,0,0,0,0,0,0.00524,0.00609,0,0,0,0,0,0,0,0,0.0056,0.00657,0,0,0,0,0,0,0,0,0.00537,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Small SUV,PH10G,2050,0,0,0,0,0,0,0,0,0,0.00786,0,0,0,0,0,0,0,0,0,0.00807,0,0,0,0,0,0,0,0,0,0.00882,0,0,0,0,0,0,0,0,0,0.00737,0,0,0,0,0,0,0,0,0,0.00853,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00778,0,0,0,0,0,0,0,0,0,0.00822,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00095,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.001,0,0,0,0,0,0,0,0,0,0.00084,0,0,0,0,0,0,0,0,0,0.00085,0,0,0,0,0,0,0,0,0,0.0008,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00078,0,0,0,0,0,0,0,0,0,0.03075,0,0,0,0,0,0,0,0,0,0.03163,0,0,0,0,0,0,0,0,0,0.03448,0,0,0,0,0,0,0,0,0,0.0288,0,0,0,0,0,0,0,0,0,0.03358,0,0,0,0,0,0,0,0,0,0.03061,0,0,0,0,0,0,0,0,0,0.03065,0,0,0,0,0,0,0,0,0,0.03228,0,0,0,0,0,0,0,0,0,0.03192,0,0,0,0,0,0,0,0,0,0.00562,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.00604,0,0,0,0,0,0,0,0,0,0.0054,0,0,0,0,0,0,0,0,0,0.00568,0,0,0,0,0,0,0,0,0,0.00534,0,0,0,0,0,0,0,0,0,0.00524,0,0,0,0,0,0,0,0,0,0.0056,0,0,0,0,0,0,0,0,0,0.00538,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Small SUV,PH20E,1990,0.01226,0,0,0,0,0,0,0,0,0,0.01268,0,0,0,0,0,0,0,0,0,0.01389,0,0,0,0,0,0,0,0,0,0.01141,0,0,0,0,0,0,0,0,0,0.01364,0,0,0,0,0,0,0,0,0,0.01235,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01304,0,0,0,0,0,0,0,0,0,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0,0,0,0,0,0,0,0,0,0.00041,0,0,0,0,0,0,0,0,0,0.00041,0,0,0,0,0,0,0,0,0,0.00043,0,0,0,0,0,0,0,0,0,0.00036,0,0,0,0,0,0,0,0,0,0.00037,0,0,0,0,0,0,0,0,0,0.00034,0,0,0,0,0,0,0,0,0,0.00038,0,0,0,0,0,0,0,0,0,0.00034,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01355,0,0,0,0,0,0,0,0,0,0.01478,0,0,0,0,0,0,0,0,0,0.01234,0,0,0,0,0,0,0,0,0,0.01439,0,0,0,0,0,0,0,0,0,0.01312,0,0,0,0,0,0,0,0,0,0.01313,0,0,0,0,0,0,0,0,0,0.01383,0,0,0,0,0,0,0,0,0,0.01368,0,0,0,0,0,0,0,0,0,0.00241,0,0,0,0,0,0,0,0,0,0.00242,0,0,0,0,0,0,0,0,0,0.00259,0,0,0,0,0,0,0,0,0,0.00232,0,0,0,0,0,0,0,0,0,0.00244,0,0,0,0,0,0,0,0,0,0.00229,0,0,0,0,0,0,0,0,0,0.00225,0,0,0,0,0,0,0,0,0,0.0024,0,0,0,0,0,0,0,0,0,0.0023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH20E,1995,0.01226,0.01226,0,0,0,0,0,0,0,0,0.01268,0.01268,0,0,0,0,0,0,0,0,0.01388,0.01388,0,0,0,0,0,0,0,0,0.01141,0.0114,0,0,0,0,0,0,0,0,0.01364,0.01364,0,0,0,0,0,0,0,0,0.01235,0.01235,0,0,0,0,0,0,0,0,0.01242,0.01242,0,0,0,0,0,0,0,0,0.01303,0.01303,0,0,0,0,0,0,0,0,0.01298,0.01298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH20E,2000,0.01226,0.01848,0.02179,0,0,0,0,0,0,0,0.01268,0.01801,0.02083,0,0,0,0,0,0,0,0.01389,0.01987,0.02308,0,0,0,0,0,0,0,0.01141,0.01806,0.02165,0,0,0,0,0,0,0,0.01364,0.01662,0.01813,0,0,0,0,0,0,0,0.01235,0.01586,0.01791,0,0,0,0,0,0,0,0.01242,0.01528,0.01671,0,0,0,0,0,0,0,0.01304,0.01716,0.01931,0,0,0,0,0,0,0,0.01298,0.01587,0.0173,0,0,0,0,0,0,0,0,0.12027,0.1319,0,0,0,0,0,0,0,0,0.11586,0.12939,0,0,0,0,0,0,0,0,0.13727,0.15177,0,0,0,0,0,0,0,0,0.14305,0.15722,0,0,0,0,0,0,0,0,0.12423,0.13906,0,0,0,0,0,0,0,0,0.13085,0.14519,0,0,0,0,0,0,0,0,0.12629,0.13682,0,0,0,0,0,0,0,0,0.12486,0.1375,0,0,0,0,0,0,0,0,0.10989,0.1217,0,0,0,0,0,0,0,0,10.89501,13.75117,0,0,0,0,0,0,0,0,10.6788,13.65783,0,0,0,0,0,0,0,0,12.22763,15.54118,0,0,0,0,0,0,0,0,12.93875,16.34388,0,0,0,0,0,0,0,0,11.5931,14.80624,0,0,0,0,0,0,0,0,12.04441,15.39791,0,0,0,0,0,0,0,0,12.0601,14.97217,0,0,0,0,0,0,0,0,11.50144,14.52998,0,0,0,0,0,0,0,0,9.95287,12.64009,0,0,0,0,0,0,0,0,365.40024,370.86674,0,0,0,0,0,0,0,0,368.22856,373.29984,0,0,0,0,0,0,0,0,373.62904,378.96487,0,0,0,0,0,0,0,0,364.9261,370.26286,0,0,0,0,0,0,0,0,373.95523,377.64639,0,0,0,0,0,0,0,0,367.95043,373.29723,0,0,0,0,0,0,0,0,371.0116,374.54125,0,0,0,0,0,0,0,0,371.20867,375.49562,0,0,0,0,0,0,0,0,365.59889,369.51784,0,0,0,0,0,0,0,0,0.03285,0.03922,0,0,0,0,0,0,0,0,0.03293,0.03928,0,0,0,0,0,0,0,0,0.03357,0.03994,0,0,0,0,0,0,0,0,0.03213,0.03842,0,0,0,0,0,0,0,0,0.0334,0.03975,0,0,0,0,0,0,0,0,0.03258,0.0389,0,0,0,0,0,0,0,0,0.03284,0.0392,0,0,0,0,0,0,0,0,0.03321,0.03959,0,0,0,0,0,0,0,0,0.03344,0.03989,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05743,0.05743,0,0,0,0,0,0,0,0,0.05741,0.05742,0,0,0,0,0,0,0,0,0.05712,0.05712,0,0,0,0,0,0,0,0,0.05736,0.05737,0,0,0,0,0,0,0,0,0.05717,0.05717,0,0,0,0,0,0,0,0,0.05732,0.05733,0,0,0,0,0,0,0,0,0.05745,0.05745,0,0,0,0,0,0,0,0,0.05758,0.05758,0,0,0,0,0,0,0,0,1.43344,1.74492,0,0,0,0,0,0,0,0,1.41546,1.74433,0,0,0,0,0,0,0,0,1.58229,1.93266,0,0,0,0,0,0,0,0,1.63818,1.99229,0,0,0,0,0,0,0,0,1.54392,1.90106,0,0,0,0,0,0,0,0,1.58798,1.93421,0,0,0,0,0,0,0,0,1.57231,1.88667,0,0,0,0,0,0,0,0,1.63329,1.97201,0,0,0,0,0,0,0,0,1.46641,1.78368,0,0,0,0,0,0,0,0,0.01325,0.01876,0,0,0,0,0,0,0,0,0.01159,0.01636,0,0,0,0,0,0,0,0,0.01256,0.01782,0,0,0,0,0,0,0,0,0.01374,0.01954,0,0,0,0,0,0,0,0,0.00695,0.00971,0,0,0,0,0,0,0,0,0.00799,0.01164,0,0,0,0,0,0,0,0,0.00683,0.00951,0,0,0,0,0,0,0,0,0.00921,0.01296,0,0,0,0,0,0,0,0,0.007,0.00974,0,0,0,0,0,0,0,0,0.05693,0.06932,0,0,0,0,0,0,0,0,0.05426,0.06494,0,0,0,0,0,0,0,0,0.05933,0.07119,0,0,0,0,0,0,0,0,0.05615,0.06929,0,0,0,0,0,0,0,0,0.04642,0.05251,0,0,0,0,0,0,0,0,0.04568,0.05389,0,0,0,0,0,0,0,0,0.04326,0.04914,0,0,0,0,0,0,0,0,0.04994,0.05826,0,0,0,0,0,0,0,0,0.0449,0.05087,0,0,0,0,0,0,0,0,0.02879,0.03975,0,0,0,0,0,0,0,0,0.02568,0.03513,0,0,0,0,0,0,0,0,0.02803,0.03853,0,0,0,0,0,0,0,0,0.02962,0.04123,0,0,0,0,0,0,0,0,0.01705,0.02243,0,0,0,0,0,0,0,0,0.01868,0.02584,0,0,0,0,0,0,0,0,0.01641,0.02162,0,0,0,0,0,0,0,0,0.02123,0.02859,0,0,0,0,0,0,0,0,0.01687,0.02215,0,0,0,0,0,0,0,0,0.01196,0.01071,0,0,0,0,0,0,0,0,0.01206,0.01078,0,0,0,0,0,0,0,0,0.01223,0.01094,0,0,0,0,0,0,0,0,0.01195,0.01069,0,0,0,0,0,0,0,0,0.01225,0.0109,0,0,0,0,0,0,0,0,0.01205,0.01078,0,0,0,0,0,0,0,0,0.01215,0.01082,0,0,0,0,0,0,0,0,0.01215,0.01084,0,0,0,0,0,0,0,0,0.01197,0.01067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH20E,2005,0.01227,0.01493,0.01623,0.01928,0,0,0,0,0,0,0.01268,0.015,0.01612,0.01873,0,0,0,0,0,0,0.01389,0.01648,0.01774,0.02071,0,0,0,0,0,0,0.01141,0.01424,0.01564,0.01895,0,0,0,0,0,0,0.01364,0.01505,0.01571,0.01714,0,0,0,0,0,0,0.01235,0.01396,0.01481,0.01643,0,0,0,0,0,0,0.01243,0.01378,0.01441,0.01577,0,0,0,0,0,0,0.01304,0.01489,0.01577,0.01778,0,0,0,0,0,0,0.01299,0.01436,0.01499,0.01635,0,0,0,0,0,0,0,0.05026,0.04287,0.05531,0,0,0,0,0,0,0,0.04616,0.04072,0.05288,0,0,0,0,0,0,0,0.05464,0.0479,0.06447,0,0,0,0,0,0,0,0.05752,0.05036,0.06732,0,0,0,0,0,0,0,0.04086,0.03846,0.05367,0,0,0,0,0,0,0,0.04483,0.04175,0.05732,0,0,0,0,0,0,0,0.04094,0.03765,0.05237,0,0,0,0,0,0,0,0.04517,0.04043,0.05475,0,0,0,0,0,0,0,0.03649,0.03354,0.04505,0,0,0,0,0,0,0,4.29742,5.56429,8.25223,0,0,0,0,0,0,0,4.20167,5.57411,8.22501,0,0,0,0,0,0,0,4.72055,6.37936,9.63051,0,0,0,0,0,0,0,4.96116,6.71585,10.09916,0,0,0,0,0,0,0,4.61964,6.3334,9.37439,0,0,0,0,0,0,0,4.71143,6.49236,9.597,0,0,0,0,0,0,0,4.80982,6.42814,9.47008,0,0,0,0,0,0,0,4.58333,6.10022,9.02629,0,0,0,0,0,0,0,4.08552,5.39877,7.83381,0,0,0,0,0,0,0,378.90135,383.01183,387.68874,0,0,0,0,0,0,0,382.06981,385.8882,390.05587,0,0,0,0,0,0,0,387.35284,391.36776,395.87532,0,0,0,0,0,0,0,378.60345,382.62196,387.1478,0,0,0,0,0,0,0,388.83198,391.63038,394.03662,0,0,0,0,0,0,0,382.48152,386.84358,388.46836,0,0,0,0,0,0,0,386.04132,388.7226,390.92365,0,0,0,0,0,0,0,385.65998,388.89906,392.06194,0,0,0,0,0,0,0,380.06168,383.02048,385.70281,0,0,0,0,0,0,0,0.00675,0.00799,0.01534,0,0,0,0,0,0,0,0.00676,0.00799,0.01534,0,0,0,0,0,0,0,0.00686,0.0081,0.01554,0,0,0,0,0,0,0,0.00662,0.00784,0.01506,0,0,0,0,0,0,0,0.00683,0.00806,0.01548,0,0,0,0,0,0,0,0.00669,0.00791,0.01519,0,0,0,0,0,0,0,0.00674,0.00798,0.01532,0,0,0,0,0,0,0,0.00681,0.00804,0.01545,0,0,0,0,0,0,0,0.00686,0.00811,0.01557,0,0,0,0,0,0,0,0.01878,0.02351,0.02785,0,0,0,0,0,0,0,0.0188,0.02354,0.02789,0,0,0,0,0,0,0,0.01879,0.02354,0.02788,0,0,0,0,0,0,0,0.0187,0.02341,0.02773,0,0,0,0,0,0,0,0.01878,0.02352,0.02786,0,0,0,0,0,0,0,0.01871,0.02344,0.02776,0,0,0,0,0,0,0,0.01876,0.0235,0.02783,0,0,0,0,0,0,0,0.0188,0.02355,0.0279,0,0,0,0,0,0,0,0.01885,0.0236,0.02796,0,0,0,0,0,0,0,0.61471,0.82121,0.85896,0,0,0,0,0,0,0,0.59811,0.8185,0.85432,0,0,0,0,0,0,0,0.67327,0.90582,0.96523,0,0,0,0,0,0,0,0.70547,0.94675,1.00546,0,0,0,0,0,0,0,0.64962,0.88406,0.94575,0,0,0,0,0,0,0,0.67479,0.90762,0.96626,0,0,0,0,0,0,0,0.66691,0.88382,0.93679,0,0,0,0,0,0,0,0.69915,0.93026,0.97297,0,0,0,0,0,0,0,0.62687,0.83852,0.86963,0,0,0,0,0,0,0,0.00574,0.00783,0.0128,0,0,0,0,0,0,0,0.00513,0.007,0.01132,0,0,0,0,0,0,0,0.00553,0.00757,0.01233,0,0,0,0,0,0,0,0.00591,0.0081,0.01332,0,0,0,0,0,0,0,0.00343,0.00468,0.00727,0,0,0,0,0,0,0,0.00379,0.00532,0.00816,0,0,0,0,0,0,0,0.00337,0.00459,0.00712,0,0,0,0,0,0,0,0.00426,0.00581,0.00925,0,0,0,0,0,0,0,0.00345,0.0047,0.00726,0,0,0,0,0,0,0,0.04084,0.04558,0.05674,0,0,0,0,0,0,0,0.04046,0.04465,0.05432,0,0,0,0,0,0,0,0.04422,0.04883,0.05955,0,0,0,0,0,0,0,0.03928,0.04428,0.05611,0,0,0,0,0,0,0,0.03897,0.0417,0.04737,0,0,0,0,0,0,0,0.03675,0.04026,0.04637,0,0,0,0,0,0,0,0.03597,0.03863,0.04411,0,0,0,0,0,0,0,0.03938,0.04282,0.05044,0,0,0,0,0,0,0,0.03744,0.04013,0.0457,0,0,0,0,0,0,0,0.01455,0.01875,0.02861,0,0,0,0,0,0,0,0.01347,0.01718,0.02573,0,0,0,0,0,0,0,0.01466,0.01874,0.02822,0,0,0,0,0,0,0,0.01469,0.01911,0.02957,0,0,0,0,0,0,0,0.01045,0.01287,0.01788,0,0,0,0,0,0,0,0.01078,0.01378,0.01929,0,0,0,0,0,0,0,0.00996,0.01231,0.01716,0,0,0,0,0,0,0,0.01189,0.01493,0.02167,0,0,0,0,0,0,0,0.01027,0.01265,0.01757,0,0,0,0,0,0,0,0.0124,0.01106,0.00373,0,0,0,0,0,0,0,0.01251,0.01114,0.00375,0,0,0,0,0,0,0,0.01268,0.0113,0.00381,0,0,0,0,0,0,0,0.0124,0.01105,0.00373,0,0,0,0,0,0,0,0.01273,0.01131,0.00379,0,0,0,0,0,0,0,0.01252,0.01117,0.00374,0,0,0,0,0,0,0,0.01264,0.01122,0.00376,0,0,0,0,0,0,0,0.01263,0.01123,0.00377,0,0,0,0,0,0,0,0.01244,0.01106,0.00371,0,0,0,0,0,0,0,0.26812,0.37386,0.37364,0,0,0,0,0,0,0,0.24219,0.34689,0.34515,0,0,0,0,0,0,0,0.28441,0.40579,0.40147,0,0,0,0,0,0,0,0.30091,0.42839,0.4222,0,0,0,0,0,0,0,0.18934,0.2925,0.28251,0,0,0,0,0,0,0,0.21335,0.32709,0.3114,0,0,0,0,0,0,0,0.18661,0.28302,0.27276,0,0,0,0,0,0,0,0.22187,0.32494,0.31821,0,0,0,0,0,0,0,0.1688,0.25599,0.24763,0,0,0,0,0,0 +Small SUV,PH20E,2010,0,0.01336,0.01432,0.01527,0.01816,0,0,0,0,0,0,0.01366,0.01449,0.01532,0.0178,0,0,0,0,0,0,0.01497,0.0159,0.01684,0.01965,0,0,0,0,0,0,0.01258,0.01361,0.01464,0.01776,0,0,0,0,0,0,0.0143,0.01483,0.01534,0.01675,0,0,0,0,0,0,0.01307,0.01372,0.01426,0.01591,0,0,0,0,0,0,0.01306,0.01357,0.01406,0.0154,0,0,0,0,0,0,0.01385,0.01453,0.0152,0.01713,0,0,0,0,0,0,0.01362,0.01414,0.01463,0.01597,0,0,0,0,0,0,0.03274,0.02339,0.01767,0.02902,0,0,0,0,0,0,0.02855,0.02126,0.01624,0.02718,0,0,0,0,0,0,0.03203,0.02504,0.01918,0.03318,0,0,0,0,0,0,0.03559,0.02769,0.02111,0.03556,0,0,0,0,0,0,0.01917,0.01815,0.01445,0.02638,0,0,0,0,0,0,0.02143,0.02011,0.01562,0.02842,0,0,0,0,0,0,0.01876,0.01789,0.01425,0.02582,0,0,0,0,0,0,0.02396,0.02024,0.01571,0.02753,0,0,0,0,0,0,0.01843,0.0165,0.01288,0.02233,0,0,0,0,0,0,1.73881,2.89472,3.90069,5.84596,0,0,0,0,0,0,1.65401,2.86217,3.8767,5.80855,0,0,0,0,0,0,1.74021,3.17277,4.40483,6.83009,0,0,0,0,0,0,1.86019,3.39728,4.72673,7.26063,0,0,0,0,0,0,1.53111,3.02595,4.24152,6.57807,0,0,0,0,0,0,1.58039,3.1392,4.3553,6.78301,0,0,0,0,0,0,1.59607,3.1141,4.34822,6.68589,0,0,0,0,0,0,1.62943,3.02786,4.16784,6.36871,0,0,0,0,0,0,1.43244,2.67745,3.63951,5.47604,0,0,0,0,0,0,352.36342,353.86602,357.0004,368.66347,0,0,0,0,0,0,355.46818,356.78005,359.60182,370.80428,0,0,0,0,0,0,360.32187,361.73556,364.75073,376.37171,0,0,0,0,0,0,352.15243,353.58365,356.63111,368.15159,0,0,0,0,0,0,362.28618,362.94408,364.68759,374.22369,0,0,0,0,0,0,356.21594,358.23474,359.12057,369.06474,0,0,0,0,0,0,359.74213,360.32944,361.95917,371.25939,0,0,0,0,0,0,359.1063,360.04726,362.25674,372.50834,0,0,0,0,0,0,353.96856,354.77544,356.69726,366.36051,0,0,0,0,0,0,0.00599,0.00674,0.00808,0.0116,0,0,0,0,0,0,0.006,0.00675,0.00808,0.01159,0,0,0,0,0,0,0.0061,0.00685,0.00819,0.01173,0,0,0,0,0,0,0.00587,0.00661,0.00793,0.01139,0,0,0,0,0,0,0.00608,0.00682,0.00816,0.01168,0,0,0,0,0,0,0.00594,0.00669,0.008,0.01148,0,0,0,0,0,0,0.00599,0.00674,0.00807,0.01158,0,0,0,0,0,0,0.00605,0.0068,0.00814,0.01167,0,0,0,0,0,0,0.0061,0.00685,0.00821,0.01177,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.01247,0.01432,0.01867,0.02069,0,0,0,0,0,0,0.0124,0.01424,0.01857,0.02058,0,0,0,0,0,0,0.01246,0.0143,0.01865,0.02067,0,0,0,0,0,0,0.01242,0.01425,0.01859,0.0206,0,0,0,0,0,0,0.01245,0.01429,0.01864,0.02065,0,0,0,0,0,0,0.01248,0.01432,0.01868,0.0207,0,0,0,0,0,0,0.0125,0.01436,0.01872,0.02074,0,0,0,0,0,0,0.10088,0.176,0.17661,0.37859,0,0,0,0,0,0,0.09728,0.17438,0.17475,0.37507,0,0,0,0,0,0,0.09937,0.19199,0.191,0.42799,0,0,0,0,0,0,0.10284,0.20373,0.20114,0.45008,0,0,0,0,0,0,0.09136,0.18272,0.18118,0.4147,0,0,0,0,0,0,0.09534,0.19044,0.18808,0.42686,0,0,0,0,0,0,0.09424,0.18412,0.18212,0.41107,0,0,0,0,0,0,0.10287,0.19662,0.1924,0.42714,0,0,0,0,0,0,0.09498,0.17686,0.17306,0.37703,0,0,0,0,0,0,0.00197,0.00349,0.00487,0.00933,0,0,0,0,0,0,0.00184,0.00325,0.0045,0.00842,0,0,0,0,0,0,0.00193,0.00343,0.00478,0.00909,0,0,0,0,0,0,0.00202,0.0036,0.00504,0.00972,0,0,0,0,0,0,0.00152,0.00263,0.00358,0.00605,0,0,0,0,0,0,0.00158,0.00279,0.00376,0.00655,0,0,0,0,0,0,0.00151,0.00261,0.00354,0.00594,0,0,0,0,0,0,0.00168,0.00294,0.00404,0.00721,0,0,0,0,0,0,0.00154,0.00266,0.0036,0.00604,0,0,0,0,0,0,0.03296,0.03642,0.03961,0.0498,0,0,0,0,0,0,0.03361,0.03677,0.03963,0.04854,0,0,0,0,0,0,0.03668,0.04007,0.0432,0.05308,0,0,0,0,0,0,0.03111,0.03473,0.03809,0.04889,0,0,0,0,0,0,0.03502,0.0374,0.03945,0.04492,0,0,0,0,0,0,0.03216,0.03493,0.03692,0.04316,0,0,0,0,0,0,0.03214,0.03448,0.03648,0.04177,0,0,0,0,0,0,0.03402,0.03679,0.03924,0.04639,0,0,0,0,0,0,0.0335,0.03588,0.0379,0.04326,0,0,0,0,0,0,0.00758,0.01064,0.01346,0.02248,0,0,0,0,0,0,0.00741,0.01021,0.01274,0.02062,0,0,0,0,0,0,0.00799,0.01099,0.01376,0.0225,0,0,0,0,0,0,0.00746,0.01066,0.01363,0.02319,0,0,0,0,0,0,0.00696,0.00907,0.01088,0.01572,0,0,0,0,0,0,0.00672,0.00907,0.01093,0.01645,0,0,0,0,0,0,0.00657,0.00864,0.01041,0.01509,0,0,0,0,0,0,0.00715,0.00959,0.01176,0.01808,0,0,0,0,0,0,0.00678,0.00888,0.01067,0.01542,0,0,0,0,0,0,0.01154,0.01022,0.00344,0.00355,0,0,0,0,0,0,0.01164,0.0103,0.00346,0.00357,0,0,0,0,0,0,0.0118,0.01045,0.00351,0.00362,0,0,0,0,0,0,0.01153,0.01021,0.00343,0.00354,0,0,0,0,0,0,0.01186,0.01048,0.00351,0.0036,0,0,0,0,0,0,0.01166,0.01034,0.00346,0.00355,0,0,0,0,0,0,0.01178,0.0104,0.00348,0.00357,0,0,0,0,0,0,0.01176,0.0104,0.00349,0.00359,0,0,0,0,0,0,0.01159,0.01024,0.00343,0.00353,0,0,0,0,0,0,0.08219,0.12364,0.1693,0.275,0,0,0,0,0,0,0.06975,0.1092,0.15215,0.25043,0,0,0,0,0,0,0.08052,0.12973,0.18073,0.30145,0,0,0,0,0,0,0.09042,0.14403,0.1991,0.32598,0,0,0,0,0,0,0.04141,0.08297,0.1246,0.2139,0,0,0,0,0,0,0.048,0.09434,0.13619,0.23451,0,0,0,0,0,0,0.03943,0.08,0.12076,0.20674,0,0,0,0,0,0,0.05557,0.09786,0.14088,0.23696,0,0,0,0,0,0,0.03904,0.07504,0.11099,0.18407,0,0,0,0,0 +Small SUV,PH20E,2015,0,0,0.01325,0.01394,0.01483,0.01691,0,0,0,0,0,0,0.01357,0.01419,0.01499,0.0168,0,0,0,0,0,0,0.01485,0.01553,0.01641,0.01845,0,0,0,0,0,0,0.01244,0.01317,0.01411,0.01635,0,0,0,0,0,0,0.01428,0.01472,0.01525,0.01636,0,0,0,0,0,0,0.01306,0.01353,0.01412,0.01539,0,0,0,0,0,0,0.01305,0.01347,0.01399,0.01505,0,0,0,0,0,0,0.0138,0.01433,0.01499,0.01644,0,0,0,0,0,0,0.01362,0.01404,0.01456,0.01562,0,0,0,0,0,0,0.02477,0.01657,0.0152,0.01891,0,0,0,0,0,0,0.02269,0.01542,0.0144,0.01788,0,0,0,0,0,0,0.0246,0.01798,0.0168,0.02122,0,0,0,0,0,0,0.02652,0.01947,0.01816,0.0228,0,0,0,0,0,0,0.01706,0.01387,0.01385,0.01739,0,0,0,0,0,0,0.01896,0.01496,0.01478,0.01861,0,0,0,0,0,0,0.01689,0.0137,0.01376,0.0172,0,0,0,0,0,0,0.01997,0.01507,0.01451,0.01811,0,0,0,0,0,0,0.01658,0.01264,0.01239,0.0152,0,0,0,0,0,0,1.49218,2.6212,3.53696,4.72732,0,0,0,0,0,0,1.48586,2.62949,3.56772,4.75195,0,0,0,0,0,0,1.53141,2.9015,4.03721,5.47704,0,0,0,0,0,0,1.63334,3.10109,4.32598,5.83294,0,0,0,0,0,0,1.46043,2.89091,4.0576,5.44136,0,0,0,0,0,0,1.50192,2.94023,4.13805,5.57669,0,0,0,0,0,0,1.52231,2.98722,4.17751,5.57641,0,0,0,0,0,0,1.50085,2.84346,3.92235,5.24298,0,0,0,0,0,0,1.36799,2.56151,3.48707,4.602,0,0,0,0,0,0,288.6408,290.29193,292.99744,309.16524,0,0,0,0,0,0,291.05986,292.51679,294.95103,310.79054,0,0,0,0,0,0,295.08677,296.65612,299.25838,315.53249,0,0,0,0,0,0,288.45141,290.0411,292.6732,308.72227,0,0,0,0,0,0,296.23029,297.01914,298.51614,313.08774,0,0,0,0,0,0,292.35597,292.38028,294.15046,308.95552,0,0,0,0,0,0,294.12772,294.8456,296.24481,310.57668,0,0,0,0,0,0,293.80773,294.88518,296.78731,311.89891,0,0,0,0,0,0,289.49294,290.41083,292.06053,306.58508,0,0,0,0,0,0,0.00396,0.00454,0.00539,0.00752,0,0,0,0,0,0,0.00397,0.00454,0.00539,0.00751,0,0,0,0,0,0,0.00403,0.00461,0.00546,0.00759,0,0,0,0,0,0,0.00388,0.00445,0.00529,0.00739,0,0,0,0,0,0,0.00401,0.00459,0.00543,0.00756,0,0,0,0,0,0,0.00393,0.0045,0.00533,0.00744,0,0,0,0,0,0,0.00396,0.00454,0.00538,0.0075,0,0,0,0,0,0,0.004,0.00458,0.00542,0.00756,0,0,0,0,0,0,0.00403,0.00461,0.00547,0.00762,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01892,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01892,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01882,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.0189,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01884,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01889,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01893,0,0,0,0,0,0,0.01251,0.01455,0.01873,0.01897,0,0,0,0,0,0,0.08959,0.11016,0.1608,0.22902,0,0,0,0,0,0,0.08923,0.10873,0.15914,0.2266,0,0,0,0,0,0,0.09022,0.11937,0.17354,0.25141,0,0,0,0,0,0,0.09412,0.12622,0.1833,0.26511,0,0,0,0,0,0,0.08272,0.1113,0.16375,0.23915,0,0,0,0,0,0,0.08681,0.1163,0.17053,0.24809,0,0,0,0,0,0,0.08475,0.11195,0.16493,0.23929,0,0,0,0,0,0,0.09292,0.1198,0.17459,0.25099,0,0,0,0,0,0,0.0859,0.10745,0.15677,0.22348,0,0,0,0,0,0,0.00188,0.0031,0.00445,0.00733,0,0,0,0,0,0,0.00179,0.00293,0.00419,0.00679,0,0,0,0,0,0,0.00185,0.00304,0.00437,0.00719,0,0,0,0,0,0,0.00191,0.00314,0.00453,0.00755,0,0,0,0,0,0,0.00154,0.00249,0.00349,0.00535,0,0,0,0,0,0,0.00159,0.00257,0.00362,0.00564,0,0,0,0,0,0,0.00153,0.00248,0.00347,0.00529,0,0,0,0,0,0,0.00166,0.00271,0.00384,0.00606,0,0,0,0,0,0,0.00156,0.00253,0.00353,0.00537,0,0,0,0,0,0,0.03271,0.03538,0.0385,0.04528,0,0,0,0,0,0,0.03344,0.03594,0.0388,0.04486,0,0,0,0,0,0,0.03643,0.03906,0.04213,0.04876,0,0,0,0,0,0,0.03079,0.03354,0.03676,0.04392,0,0,0,0,0,0,0.03503,0.03703,0.03921,0.04337,0,0,0,0,0,0,0.0323,0.03424,0.03657,0.04115,0,0,0,0,0,0,0.03216,0.03415,0.03629,0.04035,0,0,0,0,0,0,0.03395,0.0362,0.03871,0.04381,0,0,0,0,0,0,0.03353,0.03555,0.03772,0.04181,0,0,0,0,0,0,0.00736,0.00973,0.01248,0.01848,0,0,0,0,0,0,0.00726,0.00947,0.012,0.01737,0,0,0,0,0,0,0.00778,0.0101,0.01281,0.01868,0,0,0,0,0,0,0.00718,0.00961,0.01246,0.01879,0,0,0,0,0,0,0.00697,0.00874,0.01067,0.01435,0,0,0,0,0,0,0.00675,0.00856,0.01062,0.01468,0,0,0,0,0,0,0.00659,0.00835,0.01025,0.01383,0,0,0,0,0,0,0.00708,0.00907,0.0113,0.0158,0,0,0,0,0,0,0.00681,0.00859,0.01051,0.01413,0,0,0,0,0,0,0.00833,0.00279,0.00282,0.00298,0,0,0,0,0,0,0.0084,0.00282,0.00284,0.00299,0,0,0,0,0,0,0.00852,0.00286,0.00288,0.00304,0,0,0,0,0,0,0.00833,0.00279,0.00282,0.00297,0,0,0,0,0,0,0.00855,0.00286,0.00287,0.00301,0,0,0,0,0,0,0.00844,0.00281,0.00283,0.00297,0,0,0,0,0,0,0.00849,0.00284,0.00285,0.00299,0,0,0,0,0,0,0.00848,0.00284,0.00286,0.003,0,0,0,0,0,0,0.00836,0.0028,0.00281,0.00295,0,0,0,0,0,0,0.06194,0.09213,0.14062,0.20782,0,0,0,0,0,0,0.05511,0.08401,0.13081,0.19304,0,0,0,0,0,0,0.06149,0.09835,0.15318,0.22922,0,0,0,0,0,0,0.06678,0.10633,0.16478,0.24595,0,0,0,0,0,0,0.0372,0.06958,0.11779,0.17574,0,0,0,0,0,0,0.04296,0.07595,0.12658,0.18935,0,0,0,0,0,0,0.03599,0.0676,0.11528,0.17149,0,0,0,0,0,0,0.04618,0.07848,0.12708,0.18862,0,0,0,0,0,0,0.03552,0.06325,0.10546,0.15408,0,0,0,0 +Small SUV,PH20E,2020,0,0,0,0.01308,0.01366,0.01425,0.01625,0,0,0,0,0,0,0.01343,0.01395,0.01448,0.01624,0,0,0,0,0,0,0.0147,0.01527,0.01584,0.0178,0,0,0,0,0,0,0.01227,0.01288,0.0135,0.01562,0,0,0,0,0,0,0.01419,0.01456,0.01491,0.01603,0,0,0,0,0,0,0.01294,0.01335,0.01374,0.01501,0,0,0,0,0,0,0.01296,0.01332,0.01366,0.01474,0,0,0,0,0,0,0.01369,0.01413,0.01457,0.016,0,0,0,0,0,0,0.01353,0.01389,0.01422,0.0153,0,0,0,0,0,0,0.01896,0.01372,0.01167,0.01487,0,0,0,0,0,0,0.01703,0.01261,0.0109,0.01398,0,0,0,0,0,0,0.01883,0.01472,0.01273,0.01683,0,0,0,0,0,0,0.02044,0.01602,0.01382,0.01817,0,0,0,0,0,0,0.01178,0.0107,0.00987,0.01345,0,0,0,0,0,0,0.01319,0.01172,0.01069,0.01453,0,0,0,0,0,0,0.01153,0.01054,0.00978,0.01328,0,0,0,0,0,0,0.01445,0.01195,0.01064,0.01412,0,0,0,0,0,0,0.01128,0.00971,0.00882,0.01158,0,0,0,0,0,0,1.1774,1.77681,2.24244,3.44131,0,0,0,0,0,0,1.16529,1.76732,2.23847,3.44893,0,0,0,0,0,0,1.21306,1.95137,2.52886,4.07165,0,0,0,0,0,0,1.29874,2.09777,2.73038,4.36681,0,0,0,0,0,0,1.13164,1.8935,2.46679,3.99156,0,0,0,0,0,0,1.15738,1.93925,2.53642,4.12901,0,0,0,0,0,0,1.17596,1.95798,2.5445,4.09023,0,0,0,0,0,0,1.17031,1.88387,2.41974,3.84005,0,0,0,0,0,0,1.05469,1.68004,2.12898,3.31005,0,0,0,0,0,0,245.02712,246.66036,249.38281,270.91271,0,0,0,0,0,0,246.97531,248.44737,250.93432,272.15952,0,0,0,0,0,0,250.44486,252.01551,254.6554,276.39995,0,0,0,0,0,0,244.855,246.43761,249.09682,270.50532,0,0,0,0,0,0,251.00909,251.92534,253.59404,273.57675,0,0,0,0,0,0,247.02307,248.09949,250.0033,270.15412,0,0,0,0,0,0,249.20195,250.05711,251.63815,271.33989,0,0,0,0,0,0,249.10679,250.26327,252.28517,272.79396,0,0,0,0,0,0,245.34386,246.36128,248.15284,267.97109,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.0071,0,0,0,0,0,0,0.00405,0.00458,0.00539,0.00709,0,0,0,0,0,0,0.00412,0.00465,0.00546,0.00716,0,0,0,0,0,0,0.00397,0.00449,0.00529,0.00697,0,0,0,0,0,0,0.0041,0.00463,0.00543,0.00714,0,0,0,0,0,0,0.00401,0.00453,0.00533,0.00702,0,0,0,0,0,0,0.00404,0.00457,0.00538,0.00708,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00713,0,0,0,0,0,0,0.00411,0.00465,0.00547,0.00719,0,0,0,0,0,0,0.01246,0.0145,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01451,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01444,0.01858,0.01858,0,0,0,0,0,0,0.01246,0.0145,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01445,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01449,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01452,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01456,0.01872,0.01872,0,0,0,0,0,0,0.05857,0.09444,0.12694,0.17656,0,0,0,0,0,0,0.05784,0.09303,0.12531,0.17434,0,0,0,0,0,0,0.05907,0.10187,0.13624,0.19421,0,0,0,0,0,0,0.06159,0.10826,0.14468,0.20626,0,0,0,0,0,0,0.05224,0.09387,0.12664,0.18212,0,0,0,0,0,0,0.05524,0.09875,0.13292,0.19046,0,0,0,0,0,0,0.05331,0.09475,0.12805,0.18262,0,0,0,0,0,0,0.05903,0.10199,0.13663,0.19265,0,0,0,0,0,0,0.05371,0.09082,0.12175,0.16952,0,0,0,0,0,0,0.00162,0.00262,0.00348,0.00622,0,0,0,0,0,0,0.00154,0.00249,0.00328,0.0058,0,0,0,0,0,0,0.00159,0.00258,0.00342,0.00611,0,0,0,0,0,0,0.00163,0.00265,0.00353,0.00639,0,0,0,0,0,0,0.00134,0.00213,0.00275,0.00464,0,0,0,0,0,0,0.00137,0.00219,0.00285,0.00488,0,0,0,0,0,0,0.00134,0.00212,0.00274,0.0046,0,0,0,0,0,0,0.00144,0.00231,0.00302,0.00522,0,0,0,0,0,0,0.00137,0.00216,0.00279,0.00467,0,0,0,0,0,0,0.03209,0.03433,0.03631,0.04278,0,0,0,0,0,0,0.03288,0.03496,0.03679,0.04265,0,0,0,0,0,0,0.03583,0.03803,0.03998,0.04634,0,0,0,0,0,0,0.03015,0.03244,0.0345,0.04128,0,0,0,0,0,0,0.0346,0.03627,0.03764,0.04188,0,0,0,0,0,0,0.03168,0.03344,0.03491,0.03951,0,0,0,0,0,0,0.03174,0.0334,0.03475,0.03889,0,0,0,0,0,0,0.03345,0.03533,0.03693,0.04197,0,0,0,0,0,0,0.0331,0.03479,0.03615,0.04033,0,0,0,0,0,0,0.00682,0.00879,0.01055,0.01627,0,0,0,0,0,0,0.00677,0.00861,0.01022,0.01541,0,0,0,0,0,0,0.00724,0.00918,0.01091,0.01654,0,0,0,0,0,0,0.00661,0.00864,0.01046,0.01645,0,0,0,0,0,0,0.00659,0.00807,0.00928,0.01303,0,0,0,0,0,0,0.00629,0.00785,0.00915,0.01323,0,0,0,0,0,0,0.00622,0.00769,0.00888,0.01255,0,0,0,0,0,0,0.00664,0.0083,0.00971,0.01418,0,0,0,0,0,0,0.00643,0.00792,0.00912,0.01282,0,0,0,0,0,0,0.00236,0.00237,0.0024,0.00261,0,0,0,0,0,0,0.00238,0.00239,0.00242,0.00262,0,0,0,0,0,0,0.00241,0.00243,0.00245,0.00266,0,0,0,0,0,0,0.00236,0.00237,0.0024,0.0026,0,0,0,0,0,0,0.00242,0.00242,0.00244,0.00263,0,0,0,0,0,0,0.00238,0.00239,0.00241,0.0026,0,0,0,0,0,0,0.0024,0.00241,0.00242,0.00261,0,0,0,0,0,0,0.0024,0.00241,0.00243,0.00263,0,0,0,0,0,0,0.00236,0.00237,0.00239,0.00258,0,0,0,0,0,0,0.05232,0.07708,0.10873,0.16922,0,0,0,0,0,0,0.0461,0.06942,0.09941,0.15627,0,0,0,0,0,0,0.05202,0.08128,0.11646,0.18849,0,0,0,0,0,0,0.05669,0.08833,0.12614,0.20314,0,0,0,0,0,0,0.02945,0.05364,0.08241,0.14073,0,0,0,0,0,0,0.0338,0.05969,0.0904,0.15316,0,0,0,0,0,0,0.02826,0.05191,0.08029,0.13695,0,0,0,0,0,0,0.03778,0.06265,0.09261,0.15221,0,0,0,0,0,0,0.02775,0.04853,0.07362,0.12117,0,0,0 +Small SUV,PH20E,2025,0,0,0,0,0.01279,0.01314,0.0135,0.01514,0,0,0,0,0,0,0.01316,0.01348,0.0138,0.01525,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01672,0,0,0,0,0,0,0.01196,0.01232,0.01271,0.01445,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01538,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01429,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01411,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01519,0,0,0,0,0,0,0.01333,0.01355,0.01376,0.01467,0,0,0,0,0,0,0.01527,0.00999,0.00807,0.01132,0,0,0,0,0,0,0.01329,0.00887,0.00728,0.01044,0,0,0,0,0,0,0.01507,0.01042,0.00855,0.01267,0,0,0,0,0,0,0.01659,0.01145,0.00937,0.01376,0,0,0,0,0,0,0.00787,0.00635,0.00565,0.00933,0,0,0,0,0,0,0.00928,0.00725,0.00633,0.01027,0,0,0,0,0,0,0.00754,0.00615,0.00551,0.00915,0,0,0,0,0,0,0.01056,0.00773,0.00657,0.01015,0,0,0,0,0,0,0.00737,0.00572,0.00502,0.00795,0,0,0,0,0,0,0.78293,1.14419,1.45139,2.43581,0,0,0,0,0,0,0.75608,1.11587,1.42212,2.41519,0,0,0,0,0,0,0.79639,1.23688,1.60931,2.87286,0,0,0,0,0,0,0.86055,1.34122,1.75077,3.10096,0,0,0,0,0,0,0.67843,1.12296,1.47782,2.72389,0,0,0,0,0,0,0.70774,1.16726,1.53975,2.84363,0,0,0,0,0,0,0.70168,1.15902,1.52204,2.78828,0,0,0,0,0,0,0.7288,1.15016,1.48876,2.65299,0,0,0,0,0,0,0.63311,0.99914,1.27884,2.24697,0,0,0,0,0,0,200.25711,201.22732,203.2205,229.04587,0,0,0,0,0,0,201.75116,202.58006,204.36032,229.92613,0,0,0,0,0,0,204.63509,205.54246,207.45343,233.5959,0,0,0,0,0,0,200.1063,201.03474,202.97459,228.68367,0,0,0,0,0,0,204.71877,205.06409,206.10838,230.54057,0,0,0,0,0,0,201.57064,202.06059,203.32184,227.8414,0,0,0,0,0,0,203.2212,203.51795,204.48858,228.61363,0,0,0,0,0,0,203.30709,203.8617,205.22412,230.13258,0,0,0,0,0,0,200.13804,200.57777,201.73772,225.88926,0,0,0,0,0,0,0.00407,0.00457,0.00537,0.00702,0,0,0,0,0,0,0.00408,0.00457,0.00537,0.00701,0,0,0,0,0,0,0.00414,0.00464,0.00544,0.00709,0,0,0,0,0,0,0.00399,0.00448,0.00527,0.0069,0,0,0,0,0,0,0.00412,0.00462,0.00542,0.00706,0,0,0,0,0,0,0.00404,0.00453,0.00532,0.00695,0,0,0,0,0,0,0.00407,0.00457,0.00536,0.00701,0,0,0,0,0,0,0.00411,0.00461,0.00541,0.00706,0,0,0,0,0,0,0.00414,0.00464,0.00545,0.00712,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.0145,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01858,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01454,0.01872,0.01872,0,0,0,0,0,0,0.03626,0.05428,0.07259,0.1233,0,0,0,0,0,0,0.03527,0.05283,0.07085,0.12102,0,0,0,0,0,0,0.03627,0.05749,0.07666,0.13559,0,0,0,0,0,0,0.03791,0.06108,0.08136,0.14435,0,0,0,0,0,0,0.02987,0.0501,0.06778,0.12383,0,0,0,0,0,0,0.03237,0.05366,0.07226,0.13072,0,0,0,0,0,0,0.03045,0.05065,0.06859,0.12405,0,0,0,0,0,0,0.03454,0.05556,0.07442,0.13193,0,0,0,0,0,0,0.03049,0.04857,0.0653,0.11436,0,0,0,0,0,0,0.00104,0.00164,0.00217,0.00449,0,0,0,0,0,0,0.00099,0.00156,0.00205,0.00418,0,0,0,0,0,0,0.00102,0.00161,0.00213,0.00441,0,0,0,0,0,0,0.00105,0.00166,0.00221,0.0046,0,0,0,0,0,0,0.00086,0.00133,0.00172,0.00336,0,0,0,0,0,0,0.00088,0.00138,0.00178,0.00353,0,0,0,0,0,0,0.00086,0.00133,0.00171,0.00333,0,0,0,0,0,0,0.00093,0.00145,0.00189,0.00377,0,0,0,0,0,0,0.00088,0.00136,0.00174,0.00338,0,0,0,0,0,0,0.03084,0.03218,0.03341,0.03883,0,0,0,0,0,0,0.0317,0.03295,0.03407,0.03902,0,0,0,0,0,0,0.03461,0.03592,0.03713,0.04246,0,0,0,0,0,0,0.02888,0.03026,0.03153,0.03717,0,0,0,0,0,0,0.03361,0.03461,0.03546,0.03911,0,0,0,0,0,0,0.03065,0.03171,0.03262,0.03656,0,0,0,0,0,0,0.03075,0.03175,0.03258,0.03616,0,0,0,0,0,0,0.03237,0.03349,0.03448,0.03877,0,0,0,0,0,0,0.03209,0.03311,0.03395,0.03757,0,0,0,0,0,0,0.00571,0.0069,0.00798,0.01278,0,0,0,0,0,0,0.00572,0.00683,0.00783,0.0122,0,0,0,0,0,0,0.00616,0.00732,0.00839,0.0131,0,0,0,0,0,0,0.00549,0.0067,0.00783,0.01282,0,0,0,0,0,0,0.00571,0.0066,0.00735,0.01058,0,0,0,0,0,0,0.00538,0.00632,0.00712,0.01061,0,0,0,0,0,0,0.00534,0.00622,0.00696,0.01013,0,0,0,0,0,0,0.00568,0.00668,0.00755,0.01135,0,0,0,0,0,0,0.00554,0.00643,0.00718,0.01038,0,0,0,0,0,0,0.00193,0.00194,0.00196,0.0022,0,0,0,0,0,0,0.00194,0.00195,0.00197,0.00221,0,0,0,0,0,0,0.00197,0.00198,0.002,0.00225,0,0,0,0,0,0,0.00193,0.00194,0.00195,0.0022,0,0,0,0,0,0,0.00197,0.00197,0.00198,0.00222,0,0,0,0,0,0,0.00194,0.00194,0.00196,0.00219,0,0,0,0,0,0,0.00196,0.00196,0.00197,0.0022,0,0,0,0,0,0,0.00196,0.00196,0.00198,0.00222,0,0,0,0,0,0,0.00193,0.00193,0.00194,0.00217,0,0,0,0,0,0,0.04472,0.06033,0.08146,0.13426,0,0,0,0,0,0,0.03836,0.05261,0.07201,0.12159,0,0,0,0,0,0,0.04411,0.0619,0.08471,0.14738,0,0,0,0,0,0,0.04877,0.06817,0.09292,0.16008,0,0,0,0,0,0,0.0211,0.03404,0.05043,0.10057,0,0,0,0,0,0,0.02552,0.03974,0.0577,0.1119,0,0,0,0,0,0,0.01987,0.03239,0.04838,0.09712,0,0,0,0,0,0,0.0296,0.04373,0.06188,0.11351,0,0,0,0,0,0,0.01945,0.03053,0.04481,0.08579,0,0 +Small SUV,PH20E,2030,0,0,0,0,0,0.01279,0.01313,0.0135,0.01452,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01471,0,0,0,0,0,0,0.01441,0.01474,0.0151,0.01611,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01379,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01502,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01388,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01376,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01473,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01432,0,0,0,0,0,0,0.01419,0.00894,0.00713,0.00914,0,0,0,0,0,0,0.0122,0.00782,0.00633,0.00824,0,0,0,0,0,0,0.01396,0.0092,0.00745,0.00993,0,0,0,0,0,0,0.01544,0.01015,0.00819,0.01085,0,0,0,0,0,0,0.00674,0.00514,0.00454,0.0066,0,0,0,0,0,0,0.00814,0.00599,0.00519,0.00742,0,0,0,0,0,0,0.00639,0.00492,0.00439,0.00641,0,0,0,0,0,0,0.00943,0.00655,0.00551,0.00757,0,0,0,0,0,0,0.00625,0.00461,0.00403,0.00565,0,0,0,0,0,0,0.68062,0.99487,1.27363,1.87627,0,0,0,0,0,0,0.65024,0.96245,1.23894,1.83703,0,0,0,0,0,0,0.68808,1.06843,1.40355,2.16263,0,0,0,0,0,0,0.74606,1.16186,1.53062,2.34546,0,0,0,0,0,0,0.56162,0.94231,1.25685,1.97239,0,0,0,0,0,0,0.59137,0.98559,1.31656,2.07319,0,0,0,0,0,0,0.57944,0.97129,1.29299,2.01915,0,0,0,0,0,0,0.61461,0.97787,1.28022,1.96203,0,0,0,0,0,0,0.52461,0.83969,1.08828,1.64445,0,0,0,0,0,0,182.25516,183.97317,186.84746,202.84795,0,0,0,0,0,0,183.57271,185.16748,187.84499,203.53146,0,0,0,0,0,0,186.21813,187.89673,190.71418,206.82888,0,0,0,0,0,0,182.11421,183.79378,186.61814,202.51921,0,0,0,0,0,0,186.13093,187.29543,189.28277,203.75195,0,0,0,0,0,0,183.3134,184.59737,186.77751,201.46963,0,0,0,0,0,0,184.75932,185.87341,187.78372,202.02619,0,0,0,0,0,0,184.90813,186.25828,188.54338,203.53129,0,0,0,0,0,0,181.98254,183.21374,185.28683,199.6782,0,0,0,0,0,0,0.00407,0.00455,0.00536,0.00698,0,0,0,0,0,0,0.00407,0.00456,0.00536,0.00697,0,0,0,0,0,0,0.00414,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00399,0.00447,0.00526,0.00686,0,0,0,0,0,0,0.00412,0.0046,0.00541,0.00702,0,0,0,0,0,0,0.00403,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00406,0.00455,0.00535,0.00697,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00708,0,0,0,0,0,0,0.01246,0.01447,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.01449,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01441,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01447,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01443,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01446,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01449,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01453,0.01872,0.01872,0,0,0,0,0,0,0.02873,0.04195,0.05784,0.09049,0,0,0,0,0,0,0.02765,0.04049,0.05607,0.08815,0,0,0,0,0,0,0.02845,0.04389,0.06052,0.09787,0,0,0,0,0,0,0.02969,0.04652,0.06412,0.10399,0,0,0,0,0,0,0.02222,0.03672,0.05186,0.08631,0,0,0,0,0,0,0.0245,0.03982,0.0558,0.09206,0,0,0,0,0,0,0.02266,0.03711,0.05246,0.0866,0,0,0,0,0,0,0.02616,0.04131,0.05751,0.09332,0,0,0,0,0,0,0.02265,0.03568,0.04999,0.08028,0,0,0,0,0,0,0.00104,0.00164,0.00217,0.00357,0,0,0,0,0,0,0.00099,0.00155,0.00205,0.00333,0,0,0,0,0,0,0.00102,0.00161,0.00213,0.00351,0,0,0,0,0,0,0.00105,0.00166,0.0022,0.00365,0,0,0,0,0,0,0.00086,0.00133,0.00172,0.00269,0,0,0,0,0,0,0.00088,0.00137,0.00178,0.00282,0,0,0,0,0,0,0.00086,0.00133,0.00171,0.00267,0,0,0,0,0,0,0.00092,0.00144,0.00188,0.00301,0,0,0,0,0,0,0.00088,0.00135,0.00174,0.00271,0,0,0,0,0,0,0.03084,0.03217,0.0334,0.03671,0,0,0,0,0,0,0.03169,0.03294,0.03407,0.03708,0,0,0,0,0,0,0.0346,0.03591,0.03712,0.04037,0,0,0,0,0,0,0.02888,0.03024,0.03152,0.03497,0,0,0,0,0,0,0.0336,0.0346,0.03546,0.03765,0,0,0,0,0,0,0.03064,0.0317,0.03261,0.03499,0,0,0,0,0,0,0.03074,0.03174,0.03258,0.03473,0,0,0,0,0,0,0.03236,0.03348,0.03448,0.03707,0,0,0,0,0,0,0.03209,0.0331,0.03395,0.03611,0,0,0,0,0,0,0.0057,0.00688,0.00798,0.0109,0,0,0,0,0,0,0.00572,0.00682,0.00782,0.01048,0,0,0,0,0,0,0.00615,0.00731,0.00838,0.01126,0,0,0,0,0,0,0.00548,0.00669,0.00782,0.01088,0,0,0,0,0,0,0.0057,0.00659,0.00735,0.00929,0,0,0,0,0,0,0.00538,0.00631,0.00712,0.00923,0,0,0,0,0,0,0.00534,0.00622,0.00696,0.00886,0,0,0,0,0,0,0.00568,0.00667,0.00755,0.00984,0,0,0,0,0,0,0.00553,0.00643,0.00718,0.00909,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00196,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00199,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00195,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00196,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00194,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00196,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00192,0,0,0,0,0,0,0.04215,0.05533,0.07437,0.11229,0,0,0,0,0,0,0.03579,0.04764,0.06492,0.0996,0,0,0,0,0,0,0.04142,0.05613,0.07649,0.11972,0,0,0,0,0,0,0.04602,0.06213,0.0843,0.13104,0,0,0,0,0,0,0.01846,0.02842,0.04225,0.0732,0,0,0,0,0,0,0.02286,0.03397,0.04932,0.08356,0,0,0,0,0,0,0.01722,0.02679,0.04022,0.0701,0,0,0,0,0,0,0.02695,0.03824,0.05399,0.08772,0,0,0,0,0,0,0.01686,0.0254,0.03745,0.06288,0 +Small SUV,PH20E,2035,0,0,0,0,0,0,0.01279,0.01313,0.0135,0.01433,0,0,0,0,0,0,0.01316,0.01347,0.0138,0.01453,0,0,0,0,0,0,0.01441,0.01475,0.0151,0.01592,0,0,0,0,0,0,0.01196,0.01232,0.0127,0.01359,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.0149,0,0,0,0,0,0,0.01273,0.01297,0.01321,0.01375,0,0,0,0,0,0,0.01277,0.01298,0.01319,0.01365,0,0,0,0,0,0,0.01345,0.01372,0.01399,0.01459,0,0,0,0,0,0,0.01333,0.01355,0.01375,0.01421,0,0,0,0,0,0,0.01411,0.00893,0.00713,0.00842,0,0,0,0,0,0,0.01213,0.00781,0.00634,0.00751,0,0,0,0,0,0,0.01388,0.00919,0.00746,0.00899,0,0,0,0,0,0,0.01535,0.01014,0.0082,0.00985,0,0,0,0,0,0,0.00671,0.00514,0.00455,0.00564,0,0,0,0,0,0,0.0081,0.00599,0.00519,0.00642,0,0,0,0,0,0,0.00636,0.00492,0.0044,0.00546,0,0,0,0,0,0,0.00938,0.00655,0.00551,0.00668,0,0,0,0,0,0,0.00622,0.00461,0.00403,0.00487,0,0,0,0,0,0,0.68089,0.99566,1.27414,1.70483,0,0,0,0,0,0,0.65071,0.96325,1.23939,1.65892,0,0,0,0,0,0,0.68867,1.06944,1.40407,1.93885,0,0,0,0,0,0,0.7467,1.16295,1.53118,2.10635,0,0,0,0,0,0,0.56284,0.94329,1.25715,1.73329,0,0,0,0,0,0,0.59253,0.9866,1.3169,1.82736,0,0,0,0,0,0,0.58073,0.97227,1.29326,1.77447,0,0,0,0,0,0,0.61555,0.97874,1.2806,1.74448,0,0,0,0,0,0,0.52559,0.8404,1.08856,1.45604,0,0,0,0,0,0,182.21733,183.98013,186.86194,194.57275,0,0,0,0,0,0,183.53708,185.17397,187.85813,195.19446,0,0,0,0,0,0,186.18068,187.90356,190.72809,198.37417,0,0,0,0,0,0,182.07648,183.80052,186.63198,194.25452,0,0,0,0,0,0,186.10333,187.29998,189.29218,195.29223,0,0,0,0,0,0,183.28361,184.60235,186.788,193.14107,0,0,0,0,0,0,184.7326,185.87767,187.79246,193.63011,0,0,0,0,0,0,184.87707,186.26358,188.55436,195.13001,0,0,0,0,0,0,181.95504,183.21874,185.29702,191.40095,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00699,0,0,0,0,0,0,0.00406,0.00456,0.00536,0.00698,0,0,0,0,0,0,0.00413,0.00462,0.00543,0.00705,0,0,0,0,0,0,0.00398,0.00447,0.00527,0.00687,0,0,0,0,0,0,0.00411,0.0046,0.00541,0.00703,0,0,0,0,0,0,0.00402,0.00451,0.00531,0.00691,0,0,0,0,0,0,0.00405,0.00455,0.00536,0.00697,0,0,0,0,0,0,0.00409,0.00459,0.0054,0.00702,0,0,0,0,0,0,0.00412,0.00463,0.00545,0.00709,0,0,0,0,0,0,0.01246,0.01449,0.01865,0.01865,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01247,0.0145,0.01867,0.01867,0,0,0,0,0,0,0.01241,0.01443,0.01857,0.01857,0,0,0,0,0,0,0.01246,0.01449,0.01866,0.01866,0,0,0,0,0,0,0.01242,0.01444,0.01859,0.01859,0,0,0,0,0,0,0.01245,0.01448,0.01864,0.01864,0,0,0,0,0,0,0.01248,0.01451,0.01868,0.01868,0,0,0,0,0,0,0.01251,0.01455,0.01872,0.01872,0,0,0,0,0,0,0.0287,0.04204,0.05787,0.0792,0,0,0,0,0,0,0.02763,0.04058,0.0561,0.07681,0,0,0,0,0,0,0.02844,0.04398,0.06055,0.08457,0,0,0,0,0,0,0.02968,0.04663,0.06416,0.08965,0,0,0,0,0,0,0.02223,0.03682,0.05188,0.07305,0,0,0,0,0,0,0.0245,0.03991,0.05583,0.07836,0,0,0,0,0,0,0.02266,0.03721,0.05249,0.07338,0,0,0,0,0,0,0.02615,0.0414,0.05753,0.07976,0,0,0,0,0,0,0.02265,0.03577,0.05001,0.06846,0,0,0,0,0,0,0.00104,0.00164,0.00217,0.00328,0,0,0,0,0,0,0.00099,0.00156,0.00205,0.00307,0,0,0,0,0,0,0.00102,0.00161,0.00213,0.00322,0,0,0,0,0,0,0.00105,0.00166,0.0022,0.00336,0,0,0,0,0,0,0.00086,0.00133,0.00172,0.00248,0,0,0,0,0,0,0.00088,0.00137,0.00178,0.0026,0,0,0,0,0,0,0.00086,0.00133,0.00171,0.00246,0,0,0,0,0,0,0.00093,0.00145,0.00189,0.00277,0,0,0,0,0,0,0.00088,0.00136,0.00174,0.0025,0,0,0,0,0,0,0.03084,0.03217,0.03341,0.03605,0,0,0,0,0,0,0.0317,0.03294,0.03407,0.03647,0,0,0,0,0,0,0.0346,0.03591,0.03712,0.03972,0,0,0,0,0,0,0.02888,0.03025,0.03152,0.03428,0,0,0,0,0,0,0.0336,0.03461,0.03546,0.03719,0,0,0,0,0,0,0.03065,0.0317,0.03261,0.03449,0,0,0,0,0,0,0.03075,0.03174,0.03258,0.03427,0,0,0,0,0,0,0.03236,0.03349,0.03448,0.03653,0,0,0,0,0,0,0.03209,0.0331,0.03395,0.03565,0,0,0,0,0,0,0.00571,0.00689,0.00798,0.01031,0,0,0,0,0,0,0.00572,0.00682,0.00782,0.00994,0,0,0,0,0,0,0.00615,0.00731,0.00839,0.01068,0,0,0,0,0,0,0.00549,0.0067,0.00783,0.01027,0,0,0,0,0,0,0.00571,0.0066,0.00735,0.00888,0,0,0,0,0,0,0.00538,0.00631,0.00712,0.00879,0,0,0,0,0,0,0.00534,0.00622,0.00696,0.00846,0,0,0,0,0,0,0.00568,0.00667,0.00755,0.00937,0,0,0,0,0,0,0.00553,0.00643,0.00718,0.00868,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00177,0.00178,0.00181,0.00188,0,0,0,0,0,0,0.00179,0.00181,0.00184,0.00191,0,0,0,0,0,0,0.00175,0.00177,0.0018,0.00187,0,0,0,0,0,0,0.00179,0.0018,0.00182,0.00188,0,0,0,0,0,0,0.00176,0.00178,0.0018,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00186,0,0,0,0,0,0,0.00178,0.00179,0.00181,0.00188,0,0,0,0,0,0,0.00175,0.00176,0.00178,0.00184,0,0,0,0,0,0,0.04204,0.0554,0.07443,0.10514,0,0,0,0,0,0,0.0357,0.04771,0.06498,0.09236,0,0,0,0,0,0,0.04132,0.05621,0.07655,0.11037,0,0,0,0,0,0,0.04591,0.06221,0.08437,0.12122,0,0,0,0,0,0,0.01843,0.02848,0.04229,0.06369,0,0,0,0,0,0,0.02281,0.03403,0.04936,0.07372,0,0,0,0,0,0,0.01719,0.02685,0.04025,0.06072,0,0,0,0,0,0,0.0269,0.0383,0.05403,0.07892,0,0,0,0,0,0,0.01683,0.02545,0.03748,0.0551 +Small SUV,PH20E,2040,0,0,0,0,0,0,0,0.01279,0.01313,0.0135,0,0,0,0,0,0,0,0.01316,0.01347,0.0138,0,0,0,0,0,0,0,0.0144,0.01475,0.0151,0,0,0,0,0,0,0,0.01196,0.01232,0.0127,0,0,0,0,0,0,0,0.01399,0.01421,0.01443,0,0,0,0,0,0,0,0.01273,0.01297,0.01321,0,0,0,0,0,0,0,0.01277,0.01298,0.01319,0,0,0,0,0,0,0,0.01345,0.01372,0.01399,0,0,0,0,0,0,0,0.01333,0.01355,0.01375,0,0,0,0,0,0,0,0.01411,0.00893,0.00713,0,0,0,0,0,0,0,0.01214,0.00781,0.00633,0,0,0,0,0,0,0,0.01388,0.00919,0.00745,0,0,0,0,0,0,0,0.01536,0.01014,0.00819,0,0,0,0,0,0,0,0.00671,0.00513,0.00455,0,0,0,0,0,0,0,0.0081,0.00598,0.00519,0,0,0,0,0,0,0,0.00636,0.00492,0.00439,0,0,0,0,0,0,0,0.00938,0.00655,0.00551,0,0,0,0,0,0,0,0.00622,0.0046,0.00403,0,0,0,0,0,0,0,0.67993,0.99498,1.27381,0,0,0,0,0,0,0,0.64978,0.9626,1.23911,0,0,0,0,0,0,0,0.68758,1.06866,1.40373,0,0,0,0,0,0,0,0.74551,1.16211,1.53082,0,0,0,0,0,0,0,0.56185,0.94267,1.25696,0,0,0,0,0,0,0,0.59149,0.98594,1.31668,0,0,0,0,0,0,0,0.57973,0.97166,1.29308,0,0,0,0,0,0,0,0.61454,0.97812,1.28036,0,0,0,0,0,0,0,0.52473,0.83991,1.08838,0,0,0,0,0,0,0,182.20719,183.96709,186.85292,0,0,0,0,0,0,0,183.52765,185.16175,187.8499,0,0,0,0,0,0,0,186.17068,187.89066,190.71931,0,0,0,0,0,0,0,182.06651,183.78754,186.62318,0,0,0,0,0,0,0,186.09639,187.29084,189.28607,0,0,0,0,0,0,0,183.27595,184.59236,186.78142,0,0,0,0,0,0,0,184.72583,185.86888,187.78697,0,0,0,0,0,0,0,184.86899,186.25312,188.5475,0,0,0,0,0,0,0,181.94775,183.20928,185.29084,0,0,0,0,0,0,0,0.00405,0.00455,0.00536,0,0,0,0,0,0,0,0.00406,0.00455,0.00536,0,0,0,0,0,0,0,0.00412,0.00462,0.00543,0,0,0,0,0,0,0,0.00397,0.00446,0.00526,0,0,0,0,0,0,0,0.0041,0.0046,0.00541,0,0,0,0,0,0,0,0.00402,0.00451,0.00531,0,0,0,0,0,0,0,0.00405,0.00455,0.00535,0,0,0,0,0,0,0,0.00409,0.00459,0.0054,0,0,0,0,0,0,0,0.00412,0.00462,0.00544,0,0,0,0,0,0,0,0.01246,0.01448,0.01865,0,0,0,0,0,0,0,0.01248,0.0145,0.01868,0,0,0,0,0,0,0,0.01247,0.0145,0.01867,0,0,0,0,0,0,0,0.01241,0.01442,0.01857,0,0,0,0,0,0,0,0.01246,0.01448,0.01866,0,0,0,0,0,0,0,0.01242,0.01444,0.01859,0,0,0,0,0,0,0,0.01245,0.01447,0.01864,0,0,0,0,0,0,0,0.01248,0.01451,0.01868,0,0,0,0,0,0,0,0.01251,0.01454,0.01872,0,0,0,0,0,0,0,0.02867,0.04198,0.05785,0,0,0,0,0,0,0,0.0276,0.04052,0.05608,0,0,0,0,0,0,0,0.0284,0.04392,0.06053,0,0,0,0,0,0,0,0.02964,0.04656,0.06413,0,0,0,0,0,0,0,0.02219,0.03676,0.05187,0,0,0,0,0,0,0,0.02447,0.03985,0.05581,0,0,0,0,0,0,0,0.02263,0.03715,0.05247,0,0,0,0,0,0,0,0.02612,0.04134,0.05752,0,0,0,0,0,0,0,0.02262,0.03572,0.04999,0,0,0,0,0,0,0,0.00104,0.00164,0.00217,0,0,0,0,0,0,0,0.00099,0.00156,0.00205,0,0,0,0,0,0,0,0.00102,0.00161,0.00213,0,0,0,0,0,0,0,0.00105,0.00166,0.0022,0,0,0,0,0,0,0,0.00086,0.00133,0.00172,0,0,0,0,0,0,0,0.00088,0.00137,0.00178,0,0,0,0,0,0,0,0.00086,0.00133,0.00171,0,0,0,0,0,0,0,0.00092,0.00144,0.00189,0,0,0,0,0,0,0,0.00088,0.00136,0.00174,0,0,0,0,0,0,0,0.03084,0.03217,0.0334,0,0,0,0,0,0,0,0.03169,0.03294,0.03407,0,0,0,0,0,0,0,0.0346,0.03591,0.03712,0,0,0,0,0,0,0,0.02888,0.03024,0.03152,0,0,0,0,0,0,0,0.0336,0.0346,0.03546,0,0,0,0,0,0,0,0.03064,0.0317,0.03261,0,0,0,0,0,0,0,0.03074,0.03174,0.03258,0,0,0,0,0,0,0,0.03236,0.03349,0.03448,0,0,0,0,0,0,0,0.03209,0.0331,0.03395,0,0,0,0,0,0,0,0.0057,0.00689,0.00798,0,0,0,0,0,0,0,0.00572,0.00682,0.00782,0,0,0,0,0,0,0,0.00615,0.00731,0.00838,0,0,0,0,0,0,0,0.00548,0.00669,0.00782,0,0,0,0,0,0,0,0.00571,0.00659,0.00735,0,0,0,0,0,0,0,0.00538,0.00631,0.00712,0,0,0,0,0,0,0,0.00534,0.00622,0.00696,0,0,0,0,0,0,0,0.00568,0.00667,0.00755,0,0,0,0,0,0,0,0.00553,0.00643,0.00718,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00177,0.00178,0.00181,0,0,0,0,0,0,0,0.00179,0.00181,0.00184,0,0,0,0,0,0,0,0.00175,0.00177,0.0018,0,0,0,0,0,0,0,0.00179,0.0018,0.00182,0,0,0,0,0,0,0,0.00176,0.00178,0.0018,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00178,0.00179,0.00181,0,0,0,0,0,0,0,0.00175,0.00176,0.00178,0,0,0,0,0,0,0,0.04199,0.05533,0.07439,0,0,0,0,0,0,0,0.03566,0.04765,0.06494,0,0,0,0,0,0,0,0.04127,0.05613,0.07651,0,0,0,0,0,0,0,0.04586,0.06213,0.08432,0,0,0,0,0,0,0,0.0184,0.02843,0.04227,0,0,0,0,0,0,0,0.02278,0.03398,0.04934,0,0,0,0,0,0,0,0.01717,0.02681,0.04023,0,0,0,0,0,0,0,0.02686,0.03825,0.054,0,0,0,0,0,0,0,0.01681,0.02541,0.03746 +Small SUV,PH20E,2045,0,0,0,0,0,0,0,0,0.01279,0.01313,0,0,0,0,0,0,0,0,0.01316,0.01347,0,0,0,0,0,0,0,0,0.0144,0.01474,0,0,0,0,0,0,0,0,0.01196,0.01232,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01273,0.01297,0,0,0,0,0,0,0,0,0.01277,0.01298,0,0,0,0,0,0,0,0,0.01345,0.01372,0,0,0,0,0,0,0,0,0.01333,0.01355,0,0,0,0,0,0,0,0,0.01411,0.00893,0,0,0,0,0,0,0,0,0.01214,0.00781,0,0,0,0,0,0,0,0,0.01388,0.00919,0,0,0,0,0,0,0,0,0.01536,0.01014,0,0,0,0,0,0,0,0,0.00671,0.00513,0,0,0,0,0,0,0,0,0.0081,0.00598,0,0,0,0,0,0,0,0,0.00636,0.00491,0,0,0,0,0,0,0,0,0.00938,0.00655,0,0,0,0,0,0,0,0,0.00622,0.0046,0,0,0,0,0,0,0,0,0.6794,0.99478,0,0,0,0,0,0,0,0,0.64926,0.9624,0,0,0,0,0,0,0,0,0.68698,1.06841,0,0,0,0,0,0,0,0,0.74486,1.16184,0,0,0,0,0,0,0,0,0.56134,0.94245,0,0,0,0,0,0,0,0,0.59095,0.98571,0,0,0,0,0,0,0,0,0.57921,0.97144,0,0,0,0,0,0,0,0,0.61401,0.97791,0,0,0,0,0,0,0,0,0.52429,0.83975,0,0,0,0,0,0,0,0,182.19943,183.96437,0,0,0,0,0,0,0,0,183.52038,185.15908,0,0,0,0,0,0,0,0,186.16305,187.88798,0,0,0,0,0,0,0,0,182.05884,183.7848,0,0,0,0,0,0,0,0,186.09092,187.28907,0,0,0,0,0,0,0,0,183.26998,184.59031,0,0,0,0,0,0,0,0,184.72064,185.86737,0,0,0,0,0,0,0,0,184.86288,186.251,0,0,0,0,0,0,0,0,181.94219,183.20752,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00406,0.00455,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.00397,0.00446,0,0,0,0,0,0,0,0,0.0041,0.0046,0,0,0,0,0,0,0,0,0.00402,0.00451,0,0,0,0,0,0,0,0,0.00405,0.00455,0,0,0,0,0,0,0,0,0.00409,0.00459,0,0,0,0,0,0,0,0,0.00412,0.00462,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01247,0.01449,0,0,0,0,0,0,0,0,0.01241,0.01442,0,0,0,0,0,0,0,0,0.01246,0.01448,0,0,0,0,0,0,0,0,0.01242,0.01443,0,0,0,0,0,0,0,0,0.01245,0.01447,0,0,0,0,0,0,0,0,0.01248,0.0145,0,0,0,0,0,0,0,0,0.01251,0.01453,0,0,0,0,0,0,0,0,0.02865,0.04196,0,0,0,0,0,0,0,0,0.02758,0.0405,0,0,0,0,0,0,0,0,0.02838,0.0439,0,0,0,0,0,0,0,0,0.02961,0.04654,0,0,0,0,0,0,0,0,0.02218,0.03674,0,0,0,0,0,0,0,0,0.02445,0.03983,0,0,0,0,0,0,0,0,0.02262,0.03713,0,0,0,0,0,0,0,0,0.0261,0.04132,0,0,0,0,0,0,0,0,0.0226,0.0357,0,0,0,0,0,0,0,0,0.00104,0.00164,0,0,0,0,0,0,0,0,0.00099,0.00155,0,0,0,0,0,0,0,0,0.00102,0.00161,0,0,0,0,0,0,0,0,0.00104,0.00166,0,0,0,0,0,0,0,0,0.00086,0.00133,0,0,0,0,0,0,0,0,0.00088,0.00137,0,0,0,0,0,0,0,0,0.00086,0.00133,0,0,0,0,0,0,0,0,0.00092,0.00144,0,0,0,0,0,0,0,0,0.00088,0.00135,0,0,0,0,0,0,0,0,0.03083,0.03217,0,0,0,0,0,0,0,0,0.03169,0.03294,0,0,0,0,0,0,0,0,0.0346,0.03591,0,0,0,0,0,0,0,0,0.02887,0.03024,0,0,0,0,0,0,0,0,0.0336,0.0346,0,0,0,0,0,0,0,0,0.03064,0.0317,0,0,0,0,0,0,0,0,0.03074,0.03174,0,0,0,0,0,0,0,0,0.03236,0.03348,0,0,0,0,0,0,0,0,0.03209,0.0331,0,0,0,0,0,0,0,0,0.0057,0.00688,0,0,0,0,0,0,0,0,0.00572,0.00682,0,0,0,0,0,0,0,0,0.00615,0.00731,0,0,0,0,0,0,0,0,0.00548,0.00669,0,0,0,0,0,0,0,0,0.0057,0.00659,0,0,0,0,0,0,0,0,0.00538,0.00631,0,0,0,0,0,0,0,0,0.00534,0.00622,0,0,0,0,0,0,0,0,0.00568,0.00667,0,0,0,0,0,0,0,0,0.00553,0.00643,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00177,0.00178,0,0,0,0,0,0,0,0,0.00179,0.00181,0,0,0,0,0,0,0,0,0.00175,0.00177,0,0,0,0,0,0,0,0,0.00179,0.0018,0,0,0,0,0,0,0,0,0.00176,0.00178,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00178,0.00179,0,0,0,0,0,0,0,0,0.00175,0.00176,0,0,0,0,0,0,0,0,0.04196,0.05531,0,0,0,0,0,0,0,0,0.03563,0.04763,0,0,0,0,0,0,0,0,0.04123,0.05611,0,0,0,0,0,0,0,0,0.04582,0.06211,0,0,0,0,0,0,0,0,0.01838,0.02842,0,0,0,0,0,0,0,0,0.02276,0.03397,0,0,0,0,0,0,0,0,0.01715,0.02679,0,0,0,0,0,0,0,0,0.02684,0.03823,0,0,0,0,0,0,0,0,0.01679,0.0254 +Small SUV,PH20E,2050,0,0,0,0,0,0,0,0,0,0.01279,0,0,0,0,0,0,0,0,0,0.01316,0,0,0,0,0,0,0,0,0,0.0144,0,0,0,0,0,0,0,0,0,0.01196,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01273,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01345,0,0,0,0,0,0,0,0,0,0.01333,0,0,0,0,0,0,0,0,0,0.01411,0,0,0,0,0,0,0,0,0,0.01214,0,0,0,0,0,0,0,0,0,0.01388,0,0,0,0,0,0,0,0,0,0.01536,0,0,0,0,0,0,0,0,0,0.00671,0,0,0,0,0,0,0,0,0,0.0081,0,0,0,0,0,0,0,0,0,0.00636,0,0,0,0,0,0,0,0,0,0.00938,0,0,0,0,0,0,0,0,0,0.00622,0,0,0,0,0,0,0,0,0,0.67941,0,0,0,0,0,0,0,0,0,0.64926,0,0,0,0,0,0,0,0,0,0.68699,0,0,0,0,0,0,0,0,0,0.74487,0,0,0,0,0,0,0,0,0,0.56135,0,0,0,0,0,0,0,0,0,0.59096,0,0,0,0,0,0,0,0,0,0.57922,0,0,0,0,0,0,0,0,0,0.61401,0,0,0,0,0,0,0,0,0,0.5243,0,0,0,0,0,0,0,0,0,182.19948,0,0,0,0,0,0,0,0,0,183.52025,0,0,0,0,0,0,0,0,0,186.16295,0,0,0,0,0,0,0,0,0,182.05875,0,0,0,0,0,0,0,0,0,186.09083,0,0,0,0,0,0,0,0,0,183.26987,0,0,0,0,0,0,0,0,0,184.7207,0,0,0,0,0,0,0,0,0,184.86272,0,0,0,0,0,0,0,0,0,181.94211,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00406,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.00397,0,0,0,0,0,0,0,0,0,0.0041,0,0,0,0,0,0,0,0,0,0.00402,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00409,0,0,0,0,0,0,0,0,0,0.00412,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01247,0,0,0,0,0,0,0,0,0,0.01241,0,0,0,0,0,0,0,0,0,0.01246,0,0,0,0,0,0,0,0,0,0.01242,0,0,0,0,0,0,0,0,0,0.01245,0,0,0,0,0,0,0,0,0,0.01248,0,0,0,0,0,0,0,0,0,0.01251,0,0,0,0,0,0,0,0,0,0.02865,0,0,0,0,0,0,0,0,0,0.02758,0,0,0,0,0,0,0,0,0,0.02838,0,0,0,0,0,0,0,0,0,0.02961,0,0,0,0,0,0,0,0,0,0.02218,0,0,0,0,0,0,0,0,0,0.02445,0,0,0,0,0,0,0,0,0,0.02262,0,0,0,0,0,0,0,0,0,0.0261,0,0,0,0,0,0,0,0,0,0.0226,0,0,0,0,0,0,0,0,0,0.00104,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00102,0,0,0,0,0,0,0,0,0,0.00104,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00092,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.03083,0,0,0,0,0,0,0,0,0,0.03169,0,0,0,0,0,0,0,0,0,0.0346,0,0,0,0,0,0,0,0,0,0.02887,0,0,0,0,0,0,0,0,0,0.0336,0,0,0,0,0,0,0,0,0,0.03064,0,0,0,0,0,0,0,0,0,0.03074,0,0,0,0,0,0,0,0,0,0.03236,0,0,0,0,0,0,0,0,0,0.03209,0,0,0,0,0,0,0,0,0,0.0057,0,0,0,0,0,0,0,0,0,0.00572,0,0,0,0,0,0,0,0,0,0.00615,0,0,0,0,0,0,0,0,0,0.00548,0,0,0,0,0,0,0,0,0,0.0057,0,0,0,0,0,0,0,0,0,0.00538,0,0,0,0,0,0,0,0,0,0.00534,0,0,0,0,0,0,0,0,0,0.00568,0,0,0,0,0,0,0,0,0,0.00553,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00177,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.00179,0,0,0,0,0,0,0,0,0,0.00176,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00178,0,0,0,0,0,0,0,0,0,0.00175,0,0,0,0,0,0,0,0,0,0.04196,0,0,0,0,0,0,0,0,0,0.03563,0,0,0,0,0,0,0,0,0,0.04123,0,0,0,0,0,0,0,0,0,0.04582,0,0,0,0,0,0,0,0,0,0.01838,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.01715,0,0,0,0,0,0,0,0,0,0.02684,0,0,0,0,0,0,0,0,0,0.01679 +Small SUV,PH20G,1990,0.05159,0,0,0,0,0,0,0,0,0,0.04625,0,0,0,0,0,0,0,0,0,0.05229,0,0,0,0,0,0,0,0,0,0.05431,0,0,0,0,0,0,0,0,0,0.03205,0,0,0,0,0,0,0,0,0,0.0344,0,0,0,0,0,0,0,0,0,0.02979,0,0,0,0,0,0,0,0,0,0.03883,0,0,0,0,0,0,0,0,0,0.03014,0,0,0,0,0,0,0,0,0,0.08009,0,0,0,0,0,0,0,0,0,0.0671,0,0,0,0,0,0,0,0,0,0.08725,0,0,0,0,0,0,0,0,0,0.09076,0,0,0,0,0,0,0,0,0,0.0757,0,0,0,0,0,0,0,0,0,0.08303,0,0,0,0,0,0,0,0,0,0.07584,0,0,0,0,0,0,0,0,0,0.07476,0,0,0,0,0,0,0,0,0,0.05937,0,0,0,0,0,0,0,0,0,49.11068,0,0,0,0,0,0,0,0,0,43.77937,0,0,0,0,0,0,0,0,0,54.57631,0,0,0,0,0,0,0,0,0,56.64188,0,0,0,0,0,0,0,0,0,50.67165,0,0,0,0,0,0,0,0,0,54.5979,0,0,0,0,0,0,0,0,0,52.30073,0,0,0,0,0,0,0,0,0,49.06293,0,0,0,0,0,0,0,0,0,40.00801,0,0,0,0,0,0,0,0,0,433.676,0,0,0,0,0,0,0,0,0,434.67337,0,0,0,0,0,0,0,0,0,440.04317,0,0,0,0,0,0,0,0,0,432.31592,0,0,0,0,0,0,0,0,0,434.38608,0,0,0,0,0,0,0,0,0,430.52202,0,0,0,0,0,0,0,0,0,431.14907,0,0,0,0,0,0,0,0,0,434.31892,0,0,0,0,0,0,0,0,0,428.89221,0,0,0,0,0,0,0,0,0,0.08772,0,0,0,0,0,0,0,0,0,0.08781,0,0,0,0,0,0,0,0,0,0.08921,0,0,0,0,0,0,0,0,0,0.08597,0,0,0,0,0,0,0,0,0,0.0888,0,0,0,0,0,0,0,0,0,0.08691,0,0,0,0,0,0,0,0,0,0.08764,0,0,0,0,0,0,0,0,0,0.08849,0,0,0,0,0,0,0,0,0,0.08916,0,0,0,0,0,0,0,0,0,0.02874,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02871,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.0287,0,0,0,0,0,0,0,0,0,0.02869,0,0,0,0,0,0,0,0,0,0.02873,0,0,0,0,0,0,0,0,0,0.02876,0,0,0,0,0,0,0,0,0,0.02879,0,0,0,0,0,0,0,0,0,3.54358,0,0,0,0,0,0,0,0,0,3.3388,0,0,0,0,0,0,0,0,0,3.73852,0,0,0,0,0,0,0,0,0,3.96737,0,0,0,0,0,0,0,0,0,3.66384,0,0,0,0,0,0,0,0,0,3.85134,0,0,0,0,0,0,0,0,0,3.67203,0,0,0,0,0,0,0,0,0,3.87502,0,0,0,0,0,0,0,0,0,3.15984,0,0,0,0,0,0,0,0,0,0.06934,0,0,0,0,0,0,0,0,0.00042,0.06054,0,0,0,0,0,0,0,0,0.00041,0.06752,0,0,0,0,0,0,0,0,0.00041,0.07436,0,0,0,0,0,0,0,0,0.00043,0.03611,0,0,0,0,0,0,0,0,0.00036,0.04223,0,0,0,0,0,0,0,0,0.00037,0.03468,0,0,0,0,0,0,0,0,0.00034,0.04801,0,0,0,0,0,0,0,0,0.00038,0.03431,0,0,0,0,0,0,0,0,0.00034,0.18397,0,0,0,0,0,0,0,0,0.01318,0.16475,0,0,0,0,0,0,0,0,0.01355,0.18469,0,0,0,0,0,0,0,0,0.01478,0.19469,0,0,0,0,0,0,0,0,0.01234,0.11125,0,0,0,0,0,0,0,0,0.01439,0.12231,0,0,0,0,0,0,0,0,0.01312,0.105,0,0,0,0,0,0,0,0,0.01313,0.1372,0,0,0,0,0,0,0,0,0.01383,0.10482,0,0,0,0,0,0,0,0,0.01368,0.14116,0,0,0,0,0,0,0,0,0.00241,0.12341,0,0,0,0,0,0,0,0,0.00242,0.13892,0,0,0,0,0,0,0,0,0.00259,0.15215,0,0,0,0,0,0,0,0,0.00232,0.07439,0,0,0,0,0,0,0,0,0.00244,0.08646,0,0,0,0,0,0,0,0,0.00229,0.07102,0,0,0,0,0,0,0,0,0.00225,0.09841,0,0,0,0,0,0,0,0,0.0024,0.06986,0,0,0,0,0,0,0,0,0.0023,0.01922,0,0,0,0,0,0,0,0,0,0.02168,0,0,0,0,0,0,0,0,0,0.03079,0,0,0,0,0,0,0,0,0,0.02822,0,0,0,0,0,0,0,0,0,0.02512,0,0,0,0,0,0,0,0,0,0.02769,0,0,0,0,0,0,0,0,0,0.0252,0,0,0,0,0,0,0,0,0,0.0249,0,0,0,0,0,0,0,0,0,0.01175,0,0,0,0,0,0,0,0,0,2.95795,0,0,0,0,0,0,0,0,0,2.60804,0,0,0,0,0,0,0,0,0,3.27712,0,0,0,0,0,0,0,0,0,3.3901,0,0,0,0,0,0,0,0,0,3.1769,0,0,0,0,0,0,0,0,0,3.31954,0,0,0,0,0,0,0,0,0,3.17089,0,0,0,0,0,0,0,0,0,3.07934,0,0,0,0,0,0,0,0,0,2.50557,0,0,0,0,0,0,0,0,0 +Small SUV,PH20G,1995,0.02217,0.03584,0,0,0,0,0,0,0,0,0.02116,0.0328,0,0,0,0,0,0,0,0,0.02355,0.03691,0,0,0,0,0,0,0,0,0.02217,0.03709,0,0,0,0,0,0,0,0,0.01834,0.02464,0,0,0,0,0,0,0,0,0.01795,0.02551,0,0,0,0,0,0,0,0,0.01687,0.02279,0,0,0,0,0,0,0,0,0.01958,0.02848,0,0,0,0,0,0,0,0,0.01739,0.02326,0,0,0,0,0,0,0,0,0.05484,0.06268,0,0,0,0,0,0,0,0,0.05077,0.05394,0,0,0,0,0,0,0,0,0.06146,0.07094,0,0,0,0,0,0,0,0,0.06304,0.0769,0,0,0,0,0,0,0,0,0.05525,0.0637,0,0,0,0,0,0,0,0,0.05864,0.07006,0,0,0,0,0,0,0,0,0.05485,0.06397,0,0,0,0,0,0,0,0,0.05508,0.06354,0,0,0,0,0,0,0,0,0.04607,0.04865,0,0,0,0,0,0,0,0,23.17069,32.11426,0,0,0,0,0,0,0,0,22.5119,29.48601,0,0,0,0,0,0,0,0,26.41761,35.80588,0,0,0,0,0,0,0,0,27.59733,38.60139,0,0,0,0,0,0,0,0,25.1113,34.27563,0,0,0,0,0,0,0,0,26.54347,36.76828,0,0,0,0,0,0,0,0,25.92091,35.75717,0,0,0,0,0,0,0,0,24.67908,34.15994,0,0,0,0,0,0,0,0,20.23316,27.29023,0,0,0,0,0,0,0,0,339.79428,363.02378,0,0,0,0,0,0,0,0,342.10625,364.6979,0,0,0,0,0,0,0,0,347.44033,370.38159,0,0,0,0,0,0,0,0,338.64866,361.61225,0,0,0,0,0,0,0,0,346.31107,366.69284,0,0,0,0,0,0,0,0,340.72081,361.76993,0,0,0,0,0,0,0,0,343.04837,363.17755,0,0,0,0,0,0,0,0,344.20548,365.54122,0,0,0,0,0,0,0,0,339.3366,360.25901,0,0,0,0,0,0,0,0,0.06494,0.0823,0,0,0,0,0,0,0,0,0.06511,0.0824,0,0,0,0,0,0,0,0,0.06635,0.08374,0,0,0,0,0,0,0,0,0.06353,0.08064,0,0,0,0,0,0,0,0,0.06601,0.08335,0,0,0,0,0,0,0,0,0.0644,0.08155,0,0,0,0,0,0,0,0,0.06492,0.08223,0,0,0,0,0,0,0,0,0.06565,0.08304,0,0,0,0,0,0,0,0,0.06611,0.08367,0,0,0,0,0,0,0,0,0.07386,0.0592,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.0738,0.05915,0,0,0,0,0,0,0,0,0.07366,0.05906,0,0,0,0,0,0,0,0,0.07377,0.05913,0,0,0,0,0,0,0,0,0.07366,0.05905,0,0,0,0,0,0,0,0,0.07381,0.05917,0,0,0,0,0,0,0,0,0.07392,0.05925,0,0,0,0,0,0,0,0,0.07405,0.05934,0,0,0,0,0,0,0,0,2.91289,3.47905,0,0,0,0,0,0,0,0,2.87402,3.28231,0,0,0,0,0,0,0,0,3.1432,3.56907,0,0,0,0,0,0,0,0,3.27576,3.92538,0,0,0,0,0,0,0,0,3.07064,3.63462,0,0,0,0,0,0,0,0,3.20789,3.77292,0,0,0,0,0,0,0,0,3.1082,3.65902,0,0,0,0,0,0,0,0,3.25784,3.83811,0,0,0,0,0,0,0,0,2.69775,3.14155,0,0,0,0,0,0,0,0,0.01876,0.04106,0,0,0,0,0,0,0,0,0.01643,0.03584,0,0,0,0,0,0,0,0,0.01821,0.03995,0,0,0,0,0,0,0,0,0.01995,0.04383,0,0,0,0,0,0,0,0,0.00987,0.02128,0,0,0,0,0,0,0,0,0.01148,0.02483,0,0,0,0,0,0,0,0,0.00952,0.02044,0,0,0,0,0,0,0,0,0.01307,0.02838,0,0,0,0,0,0,0,0,0.00949,0.02035,0,0,0,0,0,0,0,0,0.07,0.12017,0,0,0,0,0,0,0,0,0.06572,0.10912,0,0,0,0,0,0,0,0,0.07288,0.12157,0,0,0,0,0,0,0,0,0.07109,0.12518,0,0,0,0,0,0,0,0,0.05325,0.07821,0,0,0,0,0,0,0,0,0.0539,0.08322,0,0,0,0,0,0,0,0,0.04958,0.0735,0,0,0,0,0,0,0,0,0.05908,0.09317,0,0,0,0,0,0,0,0,0.0506,0.07435,0,0,0,0,0,0,0,0,0.04035,0.08473,0,0,0,0,0,0,0,0,0.03582,0.07421,0,0,0,0,0,0,0,0,0.04002,0.08309,0,0,0,0,0,0,0,0,0.04282,0.09067,0,0,0,0,0,0,0,0,0.02309,0.04517,0,0,0,0,0,0,0,0,0.02594,0.05189,0,0,0,0,0,0,0,0,0.022,0.04316,0,0,0,0,0,0,0,0,0.02931,0.05947,0,0,0,0,0,0,0,0,0.02191,0.04291,0,0,0,0,0,0,0,0,0.01502,0.00772,0,0,0,0,0,0,0,0,0.01705,0.00782,0,0,0,0,0,0,0,0,0.02432,0.0081,0,0,0,0,0,0,0,0,0.02211,0.01355,0,0,0,0,0,0,0,0,0.02002,0.00798,0,0,0,0,0,0,0,0,0.02191,0.00791,0,0,0,0,0,0,0,0,0.02004,0.01085,0,0,0,0,0,0,0,0,0.01969,0.01234,0,0,0,0,0,0,0,0,0.00926,0.00454,0,0,0,0,0,0,0,0,2.04855,2.5343,0,0,0,0,0,0,0,0,1.96095,2.30731,0,0,0,0,0,0,0,0,2.32556,2.8772,0,0,0,0,0,0,0,0,2.36134,3.07115,0,0,0,0,0,0,0,0,2.24613,2.86737,0,0,0,0,0,0,0,0,2.30418,2.99084,0,0,0,0,0,0,0,0,2.22641,2.8626,0,0,0,0,0,0,0,0,2.21776,2.82323,0,0,0,0,0,0,0,0,1.87947,2.26088,0,0,0,0,0,0,0,0 +Small SUV,PH20G,2000,0.01703,0.01926,0.02838,0,0,0,0,0,0,0,0.01678,0.01868,0.02643,0,0,0,0,0,0,0,0.0185,0.02065,0.02956,0,0,0,0,0,0,0,0.01652,0.01892,0.02889,0,0,0,0,0,0,0,0.01595,0.01699,0.02116,0,0,0,0,0,0,0,0.01507,0.01631,0.02133,0,0,0,0,0,0,0,0.01463,0.01562,0.01954,0,0,0,0,0,0,0,0.01622,0.01768,0.02359,0,0,0,0,0,0,0,0.0152,0.01619,0.02008,0,0,0,0,0,0,0,0.03116,0.04563,0.06186,0,0,0,0,0,0,0,0.02914,0.04382,0.05491,0,0,0,0,0,0,0,0.03534,0.05285,0.0716,0,0,0,0,0,0,0,0.03611,0.05503,0.07317,0,0,0,0,0,0,0,0.02721,0.04463,0.06172,0,0,0,0,0,0,0,0.02948,0.04769,0.06548,0,0,0,0,0,0,0,0.02676,0.04478,0.05945,0,0,0,0,0,0,0,0.02943,0.04683,0.0606,0,0,0,0,0,0,0,0.02423,0.04055,0.04905,0,0,0,0,0,0,0,7.18147,11.42888,21.06935,0,0,0,0,0,0,0,6.98777,11.24848,19.18344,0,0,0,0,0,0,0,8.34333,13.3106,24.0545,0,0,0,0,0,0,0,8.61981,13.84317,24.48007,0,0,0,0,0,0,0,6.95155,11.91715,22.00015,0,0,0,0,0,0,0,7.44487,12.57532,23.05047,0,0,0,0,0,0,0,7.08846,12.29074,22.01552,0,0,0,0,0,0,0,7.24241,12.24007,21.37718,0,0,0,0,0,0,0,5.91674,10.50363,17.42491,0,0,0,0,0,0,0,363.52124,366.7961,368.79735,0,0,0,0,0,0,0,366.47522,369.53228,370.85969,0,0,0,0,0,0,0,371.77352,374.99092,376.68895,0,0,0,0,0,0,0,363.0581,366.24094,367.86092,0,0,0,0,0,0,0,372.65423,374.9363,373.99067,0,0,0,0,0,0,0,366.49339,369.00039,368.67323,0,0,0,0,0,0,0,369.73972,371.93108,370.64548,0,0,0,0,0,0,0,369.71037,372.32827,372.35097,0,0,0,0,0,0,0,364.28034,366.69747,366.43321,0,0,0,0,0,0,0,0.03586,0.03994,0.06145,0,0,0,0,0,0,0,0.03598,0.04004,0.06151,0,0,0,0,0,0,0,0.03674,0.04081,0.06248,0,0,0,0,0,0,0,0.03505,0.03907,0.06023,0,0,0,0,0,0,0,0.03654,0.0406,0.0622,0,0,0,0,0,0,0,0.03558,0.03961,0.06088,0,0,0,0,0,0,0,0.03587,0.03993,0.06139,0,0,0,0,0,0,0,0.0363,0.04038,0.06198,0,0,0,0,0,0,0,0.03654,0.04066,0.06245,0,0,0,0,0,0,0,0.04352,0.05674,0.05931,0,0,0,0,0,0,0,0.04357,0.05681,0.05937,0,0,0,0,0,0,0,0.04356,0.05679,0.05933,0,0,0,0,0,0,0,0.04334,0.0565,0.0591,0,0,0,0,0,0,0,0.04352,0.05674,0.05929,0,0,0,0,0,0,0,0.04338,0.05656,0.05913,0,0,0,0,0,0,0,0.04349,0.0567,0.05927,0,0,0,0,0,0,0,0.04358,0.05683,0.05939,0,0,0,0,0,0,0,0.04368,0.05695,0.05951,0,0,0,0,0,0,0,1.05902,1.46872,2.46671,0,0,0,0,0,0,0,1.04141,1.45587,2.33614,0,0,0,0,0,0,0,1.22109,1.60553,2.62379,0,0,0,0,0,0,0,1.2506,1.71129,2.70367,0,0,0,0,0,0,0,1.16047,1.59425,2.6316,0,0,0,0,0,0,0,1.2094,1.62984,2.67035,0,0,0,0,0,0,0,1.17709,1.62465,2.54369,0,0,0,0,0,0,0,1.23331,1.69356,2.66739,0,0,0,0,0,0,0,1.02663,1.44207,2.22588,0,0,0,0,0,0,0,0.01039,0.01452,0.02887,0,0,0,0,0,0,0,0.00911,0.01271,0.02516,0,0,0,0,0,0,0,0.00993,0.01389,0.02782,0,0,0,0,0,0,0,0.01083,0.01516,0.03057,0,0,0,0,0,0,0,0.00552,0.00765,0.01489,0,0,0,0,0,0,0,0.00634,0.00881,0.01733,0,0,0,0,0,0,0,0.00539,0.00747,0.01442,0,0,0,0,0,0,0,0.00727,0.01012,0.0199,0,0,0,0,0,0,0,0.00549,0.0076,0.0145,0,0,0,0,0,0,0,0.05092,0.05981,0.09255,0,0,0,0,0,0,0,0.04911,0.05679,0.08505,0,0,0,0,0,0,0,0.05393,0.06231,0.09414,0,0,0,0,0,0,0,0.05013,0.05952,0.09469,0,0,0,0,0,0,0,0.04353,0.04796,0.06411,0,0,0,0,0,0,0,0.04236,0.0475,0.06659,0,0,0,0,0,0,0,0.04039,0.04473,0.06009,0,0,0,0,0,0,0,0.04598,0.05204,0.07399,0,0,0,0,0,0,0,0.04175,0.04618,0.06143,0,0,0,0,0,0,0,0.02346,0.03133,0.0603,0,0,0,0,0,0,0,0.02112,0.02792,0.05292,0,0,0,0,0,0,0,0.02325,0.03066,0.05882,0,0,0,0,0,0,0,0.02428,0.03259,0.0637,0,0,0,0,0,0,0,0.01449,0.01841,0.0327,0,0,0,0,0,0,0,0.01574,0.02029,0.03717,0,0,0,0,0,0,0,0.01386,0.01771,0.0313,0,0,0,0,0,0,0,0.01772,0.02308,0.0425,0,0,0,0,0,0,0,0.01407,0.01799,0.03149,0,0,0,0,0,0,0,0.01606,0.0078,0.00706,0,0,0,0,0,0,0,0.01826,0.00793,0.0071,0,0,0,0,0,0,0,0.02604,0.00821,0.00721,0,0,0,0,0,0,0,0.02371,0.01374,0.00704,0,0,0,0,0,0,0,0.02154,0.00816,0.00716,0,0,0,0,0,0,0,0.02357,0.00807,0.00706,0,0,0,0,0,0,0,0.0216,0.01111,0.00709,0,0,0,0,0,0,0,0.02114,0.01258,0.00639,0,0,0,0,0,0,0,0.00993,0.00461,0.00332,0,0,0,0,0,0,0,0.67704,1.14098,2.06408,0,0,0,0,0,0,0,0.65688,1.1212,1.87084,0,0,0,0,0,0,0,0.78065,1.33081,2.38246,0,0,0,0,0,0,0,0.8012,1.38152,2.41953,0,0,0,0,0,0,0,0.67473,1.21593,2.25432,0,0,0,0,0,0,0,0.7035,1.2643,2.31205,0,0,0,0,0,0,0,0.66783,1.21456,2.17777,0,0,0,0,0,0,0,0.71144,1.25895,2.18782,0,0,0,0,0,0,0,0.59105,1.09304,1.7936,0,0,0,0,0,0,0 +Small SUV,PH20G,2005,0.01375,0.01467,0.01584,0.02193,0,0,0,0,0,0,0.01402,0.01476,0.01575,0.02097,0,0,0,0,0,0,0.01553,0.01572,0.01657,0.02315,0,0,0,0,0,0,0.01311,0.01392,0.01515,0.02181,0,0,0,0,0,0,0.01449,0.01498,0.01561,0.01835,0,0,0,0,0,0,0.01336,0.01372,0.01436,0.01785,0,0,0,0,0,0,0.01323,0.01365,0.01421,0.01679,0,0,0,0,0,0,0.01415,0.0146,0.01533,0.01944,0,0,0,0,0,0,0.0137,0.01404,0.01452,0.01729,0,0,0,0,0,0,0.02128,0.01617,0.01709,0.03562,0,0,0,0,0,0,0.01946,0.01465,0.01589,0.03222,0,0,0,0,0,0,0.02176,0.01643,0.01778,0.04059,0,0,0,0,0,0,0.02212,0.01876,0.019,0.04281,0,0,0,0,0,0,0.01374,0.01193,0.01373,0.03381,0,0,0,0,0,0,0.01533,0.01292,0.0146,0.03609,0,0,0,0,0,0,0.01315,0.01239,0.01349,0.03265,0,0,0,0,0,0,0.01669,0.01425,0.01465,0.03476,0,0,0,0,0,0,0.01119,0.00963,0.01091,0.02872,0,0,0,0,0,0,3.49836,5.30981,6.88489,12.52858,0,0,0,0,0,0,3.40251,5.2246,6.89613,11.93959,0,0,0,0,0,0,3.76587,6.16459,8.24752,14.45112,0,0,0,0,0,0,3.91247,6.54611,8.09565,15.06539,0,0,0,0,0,0,3.37674,5.53578,7.48845,13.39611,0,0,0,0,0,0,3.49187,5.80631,7.81363,13.93479,0,0,0,0,0,0,3.46866,5.95877,7.564,13.52542,0,0,0,0,0,0,3.55345,6.15083,7.52997,13.3733,0,0,0,0,0,0,2.81252,5.13306,6.75547,11.5044,0,0,0,0,0,0,381.08317,382.93229,387.08196,387.26138,0,0,0,0,0,0,384.4184,386.13509,389.99008,389.4997,0,0,0,0,0,0,389.67385,391.48084,395.53402,395.42417,0,0,0,0,0,0,380.86619,382.63237,386.68936,386.61859,0,0,0,0,0,0,391.72992,392.97184,395.7972,393.04286,0,0,0,0,0,0,385.16938,386.55217,389.6632,387.56823,0,0,0,0,0,0,388.9606,390.14538,392.85271,389.8275,0,0,0,0,0,0,388.31467,389.76312,393.03354,391.24846,0,0,0,0,0,0,382.73325,384.09924,387.08735,384.83639,0,0,0,0,0,0,0.0071,0.00761,0.00897,0.02869,0,0,0,0,0,0,0.00711,0.00762,0.00897,0.0287,0,0,0,0,0,0,0.00724,0.00775,0.0091,0.02909,0,0,0,0,0,0,0.00695,0.00746,0.00879,0.02815,0,0,0,0,0,0,0.0072,0.00771,0.00906,0.02897,0,0,0,0,0,0,0.00704,0.00755,0.00888,0.02841,0,0,0,0,0,0,0.0071,0.00761,0.00896,0.02865,0,0,0,0,0,0,0.00717,0.00768,0.00904,0.0289,0,0,0,0,0,0,0.00722,0.00774,0.00911,0.02913,0,0,0,0,0,0,0.01755,0.02017,0.02484,0.03599,0,0,0,0,0,0,0.01757,0.0202,0.02487,0.03603,0,0,0,0,0,0,0.01757,0.02019,0.02486,0.03601,0,0,0,0,0,0,0.01748,0.02009,0.02473,0.03585,0,0,0,0,0,0,0.01756,0.02017,0.02484,0.03598,0,0,0,0,0,0,0.0175,0.02011,0.02476,0.03588,0,0,0,0,0,0,0.01754,0.02016,0.02482,0.03597,0,0,0,0,0,0,0.01758,0.0202,0.02487,0.03604,0,0,0,0,0,0,0.01762,0.02025,0.02493,0.03612,0,0,0,0,0,0,0.40381,0.63938,0.83252,1.25112,0,0,0,0,0,0,0.39657,0.62569,0.83062,1.20977,0,0,0,0,0,0,0.42984,0.69202,0.90556,1.37007,0,0,0,0,0,0,0.42865,0.76073,0.94644,1.43136,0,0,0,0,0,0,0.40229,0.66845,0.88411,1.3565,0,0,0,0,0,0,0.41649,0.69202,0.90556,1.38251,0,0,0,0,0,0,0.40828,0.70185,0.88293,1.32542,0,0,0,0,0,0,0.43956,0.73209,0.90408,1.4026,0,0,0,0,0,0,0.34396,0.49094,0.64529,1.21424,0,0,0,0,0,0,0.00323,0.00515,0.00701,0.01693,0,0,0,0,0,0,0.00295,0.00457,0.00622,0.01488,0,0,0,0,0,0,0.00342,0.00422,0.00569,0.01617,0,0,0,0,0,0,0.00352,0.00522,0.00713,0.01775,0,0,0,0,0,0,0.00206,0.00322,0.00439,0.00929,0,0,0,0,0,0,0.00231,0.00329,0.00448,0.01052,0,0,0,0,0,0,0.00199,0.00303,0.00413,0.00886,0,0,0,0,0,0,0.00253,0.00364,0.00495,0.01193,0,0,0,0,0,0,0.00184,0.00275,0.00372,0.00883,0,0,0,0,0,0,0.03556,0.03964,0.04388,0.06619,0,0,0,0,0,0,0.03594,0.03932,0.04303,0.06244,0,0,0,0,0,0,0.03987,0.04134,0.04465,0.06832,0,0,0,0,0,0,0.03431,0.03793,0.04225,0.06626,0,0,0,0,0,0,0.03619,0.03857,0.04115,0.05192,0,0,0,0,0,0,0.03377,0.03572,0.03833,0.05172,0,0,0,0,0,0,0.0332,0.03534,0.0377,0.04803,0,0,0,0,0,0,0.03586,0.03814,0.04099,0.05653,0,0,0,0,0,0,0.03413,0.03599,0.03806,0.04924,0,0,0,0,0,0,0.00987,0.01348,0.01723,0.03697,0,0,0,0,0,0,0.00946,0.01246,0.01574,0.03291,0,0,0,0,0,0,0.01081,0.01211,0.01504,0.03598,0,0,0,0,0,0,0.01027,0.01347,0.0173,0.03854,0,0,0,0,0,0,0.00799,0.0101,0.01238,0.02191,0,0,0,0,0,0,0.00813,0.00986,0.01217,0.02401,0,0,0,0,0,0,0.00749,0.00939,0.01148,0.02062,0,0,0,0,0,0,0.00876,0.01078,0.01331,0.02705,0,0,0,0,0,0,0.00732,0.00897,0.01081,0.0207,0,0,0,0,0,0,0.01683,0.00814,0.00741,0.00247,0,0,0,0,0,0,0.01915,0.00828,0.00746,0.00248,0,0,0,0,0,0,0.0273,0.00857,0.00757,0.00252,0,0,0,0,0,0,0.02487,0.01437,0.0074,0.00247,0,0,0,0,0,0,0.02264,0.00855,0.00757,0.00251,0,0,0,0,0,0,0.02477,0.00845,0.00746,0.00247,0,0,0,0,0,0,0.02272,0.01166,0.00752,0.00249,0,0,0,0,0,0,0.02219,0.01317,0.00674,0.00246,0,0,0,0,0,0,0.01043,0.00482,0.0035,0.00227,0,0,0,0,0,0,0.29854,0.36733,0.50474,1.22245,0,0,0,0,0,0,0.27779,0.34307,0.47758,1.13381,0,0,0,0,0,0,0.31211,0.3833,0.53253,1.37593,0,0,0,0,0,0,0.31975,0.42932,0.56368,1.43023,0,0,0,0,0,0,0.22007,0.30654,0.44345,1.25638,0,0,0,0,0,0,0.23759,0.32226,0.46026,1.29441,0,0,0,0,0,0,0.21259,0.31245,0.43293,1.2173,0,0,0,0,0,0,0.26076,0.35668,0.47599,1.27905,0,0,0,0,0,0,0.18582,0.26231,0.37573,1.08743,0,0,0,0,0,0 +Small SUV,PH20G,2010,0,0.01336,0.01421,0.01519,0.01971,0,0,0,0,0,0,0.01364,0.01438,0.01526,0.01911,0,0,0,0,0,0,0.01472,0.01535,0.01665,0.02094,0,0,0,0,0,0,0.01256,0.01346,0.01453,0.01939,0,0,0,0,0,0,0.01433,0.01483,0.01533,0.01748,0,0,0,0,0,0,0.01303,0.01353,0.0142,0.01672,0,0,0,0,0,0,0.01305,0.01351,0.01394,0.0159,0,0,0,0,0,0,0.01379,0.01435,0.01511,0.01805,0,0,0,0,0,0,0.01352,0.0139,0.01445,0.01639,0,0,0,0,0,0,0.01516,0.01384,0.01191,0.02435,0,0,0,0,0,0,0.01331,0.01269,0.01084,0.02239,0,0,0,0,0,0,0.01446,0.01428,0.0122,0.02715,0,0,0,0,0,0,0.0171,0.01572,0.01355,0.02915,0,0,0,0,0,0,0.00982,0.01131,0.00946,0.02201,0,0,0,0,0,0,0.01048,0.0118,0.00997,0.02347,0,0,0,0,0,0,0.01014,0.01118,0.00937,0.02143,0,0,0,0,0,0,0.0121,0.01176,0.01042,0.02326,0,0,0,0,0,0,0.00812,0.00872,0.00913,0.01967,0,0,0,0,0,0,2.40885,3.83743,5.01903,8.97274,0,0,0,0,0,0,2.29876,3.80564,4.94206,8.75494,0,0,0,0,0,0,2.66304,4.46282,5.59134,10.53904,0,0,0,0,0,0,2.789,4.41232,5.93596,11.07266,0,0,0,0,0,0,2.12819,3.90034,5.19939,9.72215,0,0,0,0,0,0,2.27671,4.10271,5.37397,10.14616,0,0,0,0,0,0,2.28812,3.96343,5.3252,9.86731,0,0,0,0,0,0,2.50448,4.01945,5.32224,9.77353,0,0,0,0,0,0,2.03593,3.56064,4.69102,8.44582,0,0,0,0,0,0,362.5748,364.19087,367.46922,382.17299,0,0,0,0,0,0,365.7605,367.17072,370.11279,384.26057,0,0,0,0,0,0,370.76265,372.28385,375.43131,390.11824,0,0,0,0,0,0,362.3509,363.89341,367.07545,381.59803,0,0,0,0,0,0,372.74686,373.45107,375.23204,387.35994,0,0,0,0,0,0,366.50808,367.41869,369.53789,382.14005,0,0,0,0,0,0,370.11891,370.74899,372.40737,384.22834,0,0,0,0,0,0,369.48591,370.49623,372.77886,385.77036,0,0,0,0,0,0,364.19579,365.0569,367.0365,379.28865,0,0,0,0,0,0,0.00676,0.00762,0.00913,0.01805,0,0,0,0,0,0,0.00677,0.00763,0.00913,0.01804,0,0,0,0,0,0,0.00689,0.00775,0.00926,0.01827,0,0,0,0,0,0,0.00662,0.00747,0.00896,0.01772,0,0,0,0,0,0,0.00686,0.00772,0.00922,0.01819,0,0,0,0,0,0,0.0067,0.00755,0.00904,0.01786,0,0,0,0,0,0,0.00676,0.00761,0.00912,0.01802,0,0,0,0,0,0,0.00683,0.00769,0.0092,0.01816,0,0,0,0,0,0,0.00688,0.00775,0.00927,0.01831,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.01326,0.01533,0.01922,0.02562,0,0,0,0,0,0,0.01325,0.01533,0.01922,0.02561,0,0,0,0,0,0,0.01319,0.01525,0.01912,0.02548,0,0,0,0,0,0,0.01324,0.01532,0.0192,0.02559,0,0,0,0,0,0,0.0132,0.01527,0.01914,0.02551,0,0,0,0,0,0,0.01323,0.01531,0.01919,0.02557,0,0,0,0,0,0,0.01326,0.01534,0.01923,0.02563,0,0,0,0,0,0,0.01329,0.01537,0.01927,0.02568,0,0,0,0,0,0,0.14618,0.23611,0.21337,0.65775,0,0,0,0,0,0,0.14111,0.23482,0.21069,0.64537,0,0,0,0,0,0,0.1458,0.25228,0.22493,0.73541,0,0,0,0,0,0,0.1576,0.26495,0.23728,0.7766,0,0,0,0,0,0,0.13649,0.24208,0.21361,0.72174,0,0,0,0,0,0,0.14109,0.2498,0.22047,0.73818,0,0,0,0,0,0,0.14335,0.24336,0.21548,0.71014,0,0,0,0,0,0,0.15436,0.25198,0.23495,0.75209,0,0,0,0,0,0,0.10528,0.17837,0.21251,0.65661,0,0,0,0,0,0,0.00194,0.00327,0.00461,0.01201,0,0,0,0,0,0,0.0018,0.00303,0.00428,0.01072,0,0,0,0,0,0,0.00163,0.00272,0.00443,0.01144,0,0,0,0,0,0,0.00197,0.00333,0.00477,0.01253,0,0,0,0,0,0,0.00157,0.00258,0.00343,0.00728,0,0,0,0,0,0,0.00152,0.00251,0.00357,0.00798,0,0,0,0,0,0,0.00149,0.00244,0.00323,0.00686,0,0,0,0,0,0,0.00157,0.0026,0.00377,0.00884,0,0,0,0,0,0,0.00133,0.00217,0.00314,0.00677,0,0,0,0,0,0,0.03293,0.03598,0.03912,0.05581,0,0,0,0,0,0,0.03356,0.03631,0.03921,0.05368,0,0,0,0,0,0,0.03597,0.03841,0.04245,0.05828,0,0,0,0,0,0,0.03106,0.03419,0.03758,0.05519,0,0,0,0,0,0,0.03514,0.03732,0.03921,0.04771,0,0,0,0,0,0,0.03205,0.0342,0.03658,0.04637,0,0,0,0,0,0,0.03212,0.03415,0.03588,0.04384,0,0,0,0,0,0,0.03382,0.03607,0.03873,0.05002,0,0,0,0,0,0,0.03306,0.03485,0.037,0.04493,0,0,0,0,0,0,0.00755,0.01025,0.01303,0.02779,0,0,0,0,0,0,0.00736,0.00979,0.01236,0.02516,0,0,0,0,0,0,0.00736,0.00952,0.01309,0.0271,0,0,0,0,0,0,0.0074,0.01017,0.01317,0.02875,0,0,0,0,0,0,0.00706,0.00899,0.01066,0.01818,0,0,0,0,0,0,0.00661,0.00851,0.01062,0.01928,0,0,0,0,0,0,0.00654,0.00834,0.00987,0.01691,0,0,0,0,0,0,0.00696,0.00895,0.0113,0.02129,0,0,0,0,0,0,0.00639,0.00796,0.00987,0.01689,0,0,0,0,0,0,0.00771,0.00697,0.00234,0.00244,0,0,0,0,0,0,0.00785,0.00703,0.00236,0.00245,0,0,0,0,0,0,0.00812,0.00712,0.0024,0.00249,0,0,0,0,0,0,0.01361,0.00696,0.00234,0.00243,0,0,0,0,0,0,0.00811,0.00715,0.00239,0.00247,0,0,0,0,0,0,0.00801,0.00703,0.00236,0.00244,0,0,0,0,0,0,0.01106,0.0071,0.00238,0.00245,0,0,0,0,0,0,0.01248,0.00635,0.00234,0.00242,0,0,0,0,0,0,0.00457,0.0033,0.00217,0.00224,0,0,0,0,0,0,0.12021,0.17774,0.25171,0.83406,0,0,0,0,0,0,0.10566,0.16117,0.23089,0.78892,0,0,0,0,0,0,0.11685,0.1821,0.2575,0.9179,0,0,0,0,0,0,0.13579,0.20001,0.28198,0.96058,0,0,0,0,0,0,0.07846,0.13938,0.21062,0.8259,0,0,0,0,0,0,0.0835,0.14522,0.21649,0.84641,0,0,0,0,0,0,0.07923,0.13627,0.20646,0.80355,0,0,0,0,0,0,0.09937,0.15518,0.23372,0.85888,0,0,0,0,0,0,0.07262,0.1222,0.2057,0.75657,0,0,0,0,0 +Small SUV,PH20G,2015,0,0,0.01312,0.01379,0.01464,0.01733,0,0,0,0,0,0,0.01346,0.01407,0.01484,0.01716,0,0,0,0,0,0,0.01456,0.01535,0.01615,0.01867,0,0,0,0,0,0,0.0123,0.01301,0.0139,0.01677,0,0,0,0,0,0,0.01424,0.01466,0.01518,0.01657,0,0,0,0,0,0,0.01294,0.01344,0.01401,0.01559,0,0,0,0,0,0,0.01298,0.01336,0.01383,0.01507,0,0,0,0,0,0,0.01366,0.01421,0.01484,0.01664,0,0,0,0,0,0,0.01346,0.01389,0.01435,0.01555,0,0,0,0,0,0,0.01127,0.00872,0.00934,0.01402,0,0,0,0,0,0,0.01035,0.00805,0.00875,0.01304,0,0,0,0,0,0,0.01075,0.00895,0.00976,0.01502,0,0,0,0,0,0,0.01178,0.00987,0.01072,0.0164,0,0,0,0,0,0,0.00803,0.00718,0.00825,0.01229,0,0,0,0,0,0,0.00851,0.0076,0.00865,0.01301,0,0,0,0,0,0,0.00808,0.00717,0.00827,0.01219,0,0,0,0,0,0,0.00891,0.00786,0.00878,0.01317,0,0,0,0,0,0,0.0067,0.00703,0.00799,0.01157,0,0,0,0,0,0,1.69325,3.03559,4.14354,6.25721,0,0,0,0,0,0,1.68847,3.0323,4.16024,6.21827,0,0,0,0,0,0,1.85558,3.35336,4.70956,7.29274,0,0,0,0,0,0,1.8471,3.57101,5.02254,7.71872,0,0,0,0,0,0,1.62295,3.2628,4.62101,6.94667,0,0,0,0,0,0,1.69721,3.34215,4.74302,7.20127,0,0,0,0,0,0,1.6691,3.35683,4.74419,7.11284,0,0,0,0,0,0,1.70682,3.30933,4.61492,6.95264,0,0,0,0,0,0,1.52977,2.96941,4.10293,6.091,0,0,0,0,0,0,292.46404,294.14763,296.90376,327.49089,0,0,0,0,0,0,294.9239,296.41642,298.90424,329.18636,0,0,0,0,0,0,299.00492,300.60917,303.26515,334.22945,0,0,0,0,0,0,292.27541,293.89912,296.58379,327.01681,0,0,0,0,0,0,300.19112,301.02509,302.58588,331.53275,0,0,0,0,0,0,295.28361,296.3101,298.14047,327.18259,0,0,0,0,0,0,298.05862,298.82223,300.28668,328.85912,0,0,0,0,0,0,297.72307,298.84152,300.8029,330.30956,0,0,0,0,0,0,293.35175,294.31105,296.01885,324.65256,0,0,0,0,0,0,0.00406,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00407,0.00464,0.00548,0.00925,0,0,0,0,0,0,0.00413,0.00471,0.00555,0.00935,0,0,0,0,0,0,0.00398,0.00455,0.00538,0.00909,0,0,0,0,0,0,0.00411,0.00469,0.00553,0.00932,0,0,0,0,0,0,0.00402,0.00459,0.00543,0.00916,0,0,0,0,0,0,0.00406,0.00463,0.00547,0.00924,0,0,0,0,0,0,0.0041,0.00467,0.00552,0.00931,0,0,0,0,0,0,0.00413,0.00471,0.00556,0.00939,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01328,0.01513,0.01926,0.02025,0,0,0,0,0,0,0.01327,0.01513,0.01925,0.02024,0,0,0,0,0,0,0.01321,0.01505,0.01916,0.02014,0,0,0,0,0,0,0.01326,0.01511,0.01924,0.02022,0,0,0,0,0,0,0.01322,0.01507,0.01918,0.02016,0,0,0,0,0,0,0.01325,0.0151,0.01923,0.02021,0,0,0,0,0,0,0.01328,0.01514,0.01927,0.02025,0,0,0,0,0,0,0.01331,0.01517,0.01931,0.0203,0,0,0,0,0,0,0.08909,0.11045,0.16513,0.30681,0,0,0,0,0,0,0.08863,0.10857,0.16281,0.30267,0,0,0,0,0,0,0.08864,0.1169,0.17429,0.33587,0,0,0,0,0,0,0.09289,0.12476,0.18592,0.35745,0,0,0,0,0,0,0.08143,0.10859,0.16399,0.32204,0,0,0,0,0,0,0.0852,0.11341,0.17068,0.33235,0,0,0,0,0,0,0.08342,0.10981,0.16604,0.32163,0,0,0,0,0,0,0.08865,0.12109,0.18135,0.34653,0,0,0,0,0,0,0.06408,0.10845,0.16289,0.30739,0,0,0,0,0,0,0.00165,0.00281,0.00409,0.00789,0,0,0,0,0,0,0.00157,0.00267,0.00387,0.00727,0,0,0,0,0,0,0.00142,0.00272,0.00396,0.00756,0,0,0,0,0,0,0.00166,0.00285,0.00417,0.00814,0,0,0,0,0,0,0.00142,0.00232,0.0033,0.00561,0,0,0,0,0,0,0.00138,0.00237,0.00339,0.0059,0,0,0,0,0,0,0.00136,0.00221,0.00313,0.00526,0,0,0,0,0,0,0.0014,0.00245,0.00351,0.0063,0,0,0,0,0,0,0.00121,0.00215,0.00305,0.00514,0,0,0,0,0,0,0.03222,0.03478,0.03774,0.04665,0,0,0,0,0,0,0.03298,0.03541,0.03814,0.04603,0,0,0,0,0,0,0.03546,0.03836,0.0412,0.04962,0,0,0,0,0,0,0.03026,0.03293,0.03598,0.04535,0,0,0,0,0,0,0.03481,0.03671,0.03885,0.04404,0,0,0,0,0,0,0.03171,0.03385,0.03609,0.04181,0,0,0,0,0,0,0.03181,0.03361,0.0356,0.04035,0,0,0,0,0,0,0.03338,0.03566,0.03804,0.04442,0,0,0,0,0,0,0.0328,0.03479,0.03673,0.04139,0,0,0,0,0,0,0.00692,0.00919,0.0118,0.01969,0,0,0,0,0,0,0.00685,0.009,0.01142,0.01839,0,0,0,0,0,0,0.00691,0.00948,0.01199,0.01943,0,0,0,0,0,0,0.0067,0.00906,0.01175,0.02005,0,0,0,0,0,0,0.00677,0.00846,0.01035,0.01493,0,0,0,0,0,0,0.00631,0.0082,0.01019,0.01525,0,0,0,0,0,0,0.00627,0.00786,0.00962,0.01383,0,0,0,0,0,0,0.00657,0.00859,0.0107,0.01634,0,0,0,0,0,0,0.00616,0.00792,0.00963,0.01376,0,0,0,0,0,0,0.0056,0.00188,0.00189,0.00209,0,0,0,0,0,0,0.00564,0.00189,0.00191,0.0021,0,0,0,0,0,0,0.00572,0.00192,0.00193,0.00213,0,0,0,0,0,0,0.00559,0.00187,0.00189,0.00209,0,0,0,0,0,0,0.00575,0.00192,0.00193,0.00211,0,0,0,0,0,0,0.00565,0.00189,0.0019,0.00209,0,0,0,0,0,0,0.0057,0.00191,0.00192,0.0021,0,0,0,0,0,0,0.0051,0.00188,0.00189,0.00208,0,0,0,0,0,0,0.00265,0.00174,0.00175,0.00192,0,0,0,0,0,0,0.08549,0.12398,0.20304,0.49515,0,0,0,0,0,0,0.07842,0.11486,0.19183,0.47388,0,0,0,0,0,0,0.08374,0.12662,0.21139,0.52478,0,0,0,0,0,0,0.09004,0.13727,0.22691,0.54953,0,0,0,0,0,0,0.06269,0.10485,0.18852,0.47989,0,0,0,0,0,0,0.06555,0.10809,0.19167,0.48492,0,0,0,0,0,0,0.06205,0.10336,0.18621,0.47055,0,0,0,0,0,0,0.07228,0.1165,0.20175,0.50351,0,0,0,0,0,0,0.05867,0.10362,0.18495,0.46213,0,0,0,0 +Small SUV,PH20G,2020,0,0,0,0.01304,0.01359,0.01415,0.01607,0,0,0,0,0,0,0.01339,0.01389,0.0144,0.01609,0,0,0,0,0,0,0.01463,0.01515,0.01569,0.0175,0,0,0,0,0,0,0.01222,0.01279,0.01338,0.01541,0,0,0,0,0,0,0.01418,0.01454,0.01488,0.01598,0,0,0,0,0,0,0.01292,0.01331,0.01368,0.01491,0,0,0,0,0,0,0.01292,0.01324,0.01355,0.01454,0,0,0,0,0,0,0.01365,0.01406,0.01448,0.01584,0,0,0,0,0,0,0.01346,0.01378,0.01408,0.01504,0,0,0,0,0,0,0.00871,0.00743,0.00739,0.01015,0,0,0,0,0,0,0.00782,0.0068,0.00682,0.0094,0,0,0,0,0,0,0.00823,0.00756,0.0076,0.01078,0,0,0,0,0,0,0.0091,0.00837,0.0084,0.01185,0,0,0,0,0,0,0.00558,0.00578,0.00603,0.00871,0,0,0,0,0,0,0.00607,0.00619,0.00642,0.00925,0,0,0,0,0,0,0.00554,0.00576,0.00602,0.00867,0,0,0,0,0,0,0.00675,0.00646,0.00661,0.0094,0,0,0,0,0,0,0.0057,0.00561,0.00583,0.00821,0,0,0,0,0,0,1.38889,2.1393,2.70142,4.19636,0,0,0,0,0,0,1.36319,2.1163,2.67896,4.16487,0,0,0,0,0,0,1.43747,2.34299,3.02756,4.8962,0,0,0,0,0,0,1.53143,2.50415,3.24622,5.2149,0,0,0,0,0,0,1.29544,2.21118,2.86605,4.62821,0,0,0,0,0,0,1.33882,2.28143,2.96761,4.82268,0,0,0,0,0,0,1.33988,2.27735,2.94929,4.75295,0,0,0,0,0,0,1.38295,2.27193,2.91285,4.64651,0,0,0,0,0,0,1.23318,2.01787,2.56283,4.0339,0,0,0,0,0,0,251.17088,252.83183,255.59966,279.13827,0,0,0,0,0,0,253.17775,254.6745,257.20241,280.44298,0,0,0,0,0,0,256.73401,258.33078,261.01444,284.80702,0,0,0,0,0,0,250.99651,252.60539,255.30859,278.72129,0,0,0,0,0,0,257.34554,258.27579,259.97064,281.97031,0,0,0,0,0,0,253.24876,254.34222,256.27621,278.42142,0,0,0,0,0,0,255.4908,256.35898,257.96417,279.66508,0,0,0,0,0,0,255.38024,256.55522,258.60982,281.13357,0,0,0,0,0,0,251.52746,252.56123,254.38228,276.1785,0,0,0,0,0,0,0.00416,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00417,0.0047,0.00552,0.00747,0,0,0,0,0,0,0.00423,0.00477,0.0056,0.00755,0,0,0,0,0,0,0.00408,0.00461,0.00542,0.00734,0,0,0,0,0,0,0.00421,0.00475,0.00557,0.00752,0,0,0,0,0,0,0.00412,0.00466,0.00547,0.0074,0,0,0,0,0,0,0.00416,0.00469,0.00552,0.00746,0,0,0,0,0,0,0.0042,0.00474,0.00556,0.00752,0,0,0,0,0,0,0.00423,0.00477,0.00561,0.00758,0,0,0,0,0,0,0.01323,0.01521,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01522,0.01924,0.01925,0,0,0,0,0,0,0.01324,0.01522,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01514,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.0152,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01516,0.01916,0.01916,0,0,0,0,0,0,0.01322,0.0152,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01523,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01526,0.01929,0.01929,0,0,0,0,0,0,0.06047,0.09958,0.13388,0.1894,0,0,0,0,0,0,0.05943,0.09778,0.1317,0.18629,0,0,0,0,0,0,0.05988,0.10486,0.14033,0.20296,0,0,0,0,0,0,0.06316,0.11233,0.15026,0.21745,0,0,0,0,0,0,0.05304,0.09658,0.13029,0.19009,0,0,0,0,0,0,0.056,0.10144,0.13655,0.19839,0,0,0,0,0,0,0.05434,0.098,0.1324,0.19166,0,0,0,0,0,0,0.06178,0.1085,0.14565,0.20931,0,0,0,0,0,0,0.05614,0.09695,0.13049,0.18586,0,0,0,0,0,0,0.00151,0.00245,0.00326,0.00585,0,0,0,0,0,0,0.00145,0.00234,0.0031,0.00548,0,0,0,0,0,0,0.00146,0.00237,0.00316,0.00564,0,0,0,0,0,0,0.00152,0.00248,0.00332,0.006,0,0,0,0,0,0,0.00128,0.00204,0.00265,0.00447,0,0,0,0,0,0,0.0013,0.00208,0.00272,0.00464,0,0,0,0,0,0,0.00122,0.00194,0.00251,0.0042,0,0,0,0,0,0,0.00134,0.00215,0.00282,0.00487,0,0,0,0,0,0,0.00119,0.00189,0.00245,0.00409,0,0,0,0,0,0,0.03188,0.03398,0.03588,0.04203,0,0,0,0,0,0,0.0327,0.03467,0.03642,0.04201,0,0,0,0,0,0,0.03557,0.0376,0.03942,0.04528,0,0,0,0,0,0,0.02995,0.0321,0.03406,0.04047,0,0,0,0,0,0,0.0345,0.03612,0.03747,0.04157,0,0,0,0,0,0,0.03155,0.03323,0.03465,0.03903,0,0,0,0,0,0,0.03152,0.03304,0.0343,0.03806,0,0,0,0,0,0,0.03325,0.03501,0.03653,0.04125,0,0,0,0,0,0,0.03276,0.03425,0.03547,0.03914,0,0,0,0,0,0,0.00662,0.00848,0.01016,0.0156,0,0,0,0,0,0,0.0066,0.00835,0.0099,0.01484,0,0,0,0,0,0,0.00701,0.0088,0.01041,0.01559,0,0,0,0,0,0,0.00642,0.00832,0.01006,0.01573,0,0,0,0,0,0,0.00649,0.00793,0.00912,0.01275,0,0,0,0,0,0,0.00617,0.00766,0.00892,0.01279,0,0,0,0,0,0,0.00602,0.00736,0.00847,0.0118,0,0,0,0,0,0,0.00646,0.00802,0.00936,0.01354,0,0,0,0,0,0,0.00612,0.00744,0.00852,0.01177,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00162,0.00162,0.00164,0.00179,0,0,0,0,0,0,0.00164,0.00165,0.00167,0.00182,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00178,0,0,0,0,0,0,0.00164,0.00165,0.00166,0.0018,0,0,0,0,0,0,0.00162,0.00162,0.00163,0.00178,0,0,0,0,0,0,0.00163,0.00164,0.00165,0.00178,0,0,0,0,0,0,0.0016,0.00161,0.00163,0.00177,0,0,0,0,0,0,0.00148,0.00149,0.0015,0.00163,0,0,0,0,0,0,0.07477,0.10656,0.16133,0.37135,0,0,0,0,0,0,0.06773,0.09749,0.15011,0.35532,0,0,0,0,0,0,0.07219,0.10808,0.16639,0.38966,0,0,0,0,0,0,0.07843,0.11779,0.17947,0.40639,0,0,0,0,0,0,0.05203,0.08488,0.14006,0.35798,0,0,0,0,0,0,0.05497,0.08881,0.14434,0.36024,0,0,0,0,0,0,0.0511,0.08298,0.13693,0.35031,0,0,0,0,0,0,0.06212,0.09636,0.15343,0.37476,0,0,0,0,0,0,0.05225,0.08322,0.13653,0.34749,0,0,0 +Small SUV,PH20G,2025,0,0,0,0,0.01277,0.01311,0.01347,0.01498,0,0,0,0,0,0,0.01315,0.01346,0.01378,0.01513,0,0,0,0,0,0,0.01438,0.0147,0.01504,0.01647,0,0,0,0,0,0,0.01194,0.01229,0.01267,0.01424,0,0,0,0,0,0,0.01399,0.01422,0.01444,0.01534,0,0,0,0,0,0,0.01272,0.01296,0.01321,0.0142,0,0,0,0,0,0,0.01275,0.01295,0.01315,0.01396,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.01506,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01449,0,0,0,0,0,0,0.00688,0.0054,0.00523,0.00768,0,0,0,0,0,0,0.00598,0.00477,0.00467,0.00699,0,0,0,0,0,0,0.00644,0.00532,0.00521,0.00806,0,0,0,0,0,0,0.00724,0.00597,0.00582,0.00892,0,0,0,0,0,0,0.00365,0.00343,0.00354,0.00602,0,0,0,0,0,0,0.00417,0.00382,0.00389,0.00652,0,0,0,0,0,0,0.00356,0.00337,0.00349,0.00595,0,0,0,0,0,0,0.00485,0.00419,0.0042,0.00674,0,0,0,0,0,0,0.00368,0.00333,0.00342,0.00564,0,0,0,0,0,0,0.92649,1.3545,1.72925,2.9165,0,0,0,0,0,0,0.88345,1.30776,1.67698,2.85978,0,0,0,0,0,0,0.94412,1.45862,1.90398,3.38759,0,0,0,0,0,0,1.01224,1.57003,2.05508,3.62947,0,0,0,0,0,0,0.76472,1.26882,1.67614,3.07855,0,0,0,0,0,0,0.8088,1.33314,1.76404,3.24198,0,0,0,0,0,0,0.78971,1.30734,1.7259,3.16517,0,0,0,0,0,0,0.85538,1.35159,1.75933,3.13814,0,0,0,0,0,0,0.73416,1.16695,1.50815,2.6754,0,0,0,0,0,0,206.97427,207.99184,210.05565,234.83911,0,0,0,0,0,0,208.53391,209.4079,211.25519,235.76534,0,0,0,0,0,0,211.51106,212.46537,214.44615,239.52064,0,0,0,0,0,0,206.82135,207.79613,209.80515,234.47157,0,0,0,0,0,0,211.65172,212.0344,213.13307,236.47343,0,0,0,0,0,0,208.38142,208.91056,210.22947,233.68009,0,0,0,0,0,0,210.10348,210.43622,211.45951,234.49862,0,0,0,0,0,0,210.16977,210.76499,212.18734,236.02011,0,0,0,0,0,0,206.90378,207.38223,208.59834,231.68641,0,0,0,0,0,0,0.00419,0.00469,0.0055,0.00717,0,0,0,0,0,0,0.00419,0.0047,0.0055,0.00717,0,0,0,0,0,0,0.00426,0.00477,0.00557,0.00725,0,0,0,0,0,0,0.0041,0.0046,0.0054,0.00705,0,0,0,0,0,0,0.00424,0.00474,0.00555,0.00722,0,0,0,0,0,0,0.00415,0.00465,0.00545,0.0071,0,0,0,0,0,0,0.00418,0.00469,0.00549,0.00716,0,0,0,0,0,0,0.00422,0.00473,0.00554,0.00721,0,0,0,0,0,0,0.00426,0.00477,0.00558,0.00727,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01914,0.01914,0,0,0,0,0,0,0.01323,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01319,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.0371,0.05598,0.07517,0.12762,0,0,0,0,0,0,0.03587,0.05424,0.07304,0.1247,0,0,0,0,0,0,0.03624,0.05772,0.07731,0.13619,0,0,0,0,0,0,0.03845,0.06207,0.08307,0.14656,0,0,0,0,0,0,0.02994,0.05036,0.06841,0.12423,0,0,0,0,0,0,0.03238,0.05384,0.07281,0.13094,0,0,0,0,0,0,0.0307,0.05122,0.06966,0.12525,0,0,0,0,0,0,0.03593,0.05805,0.07823,0.13839,0,0,0,0,0,0,0.03189,0.05118,0.06935,0.12163,0,0,0,0,0,0,0.00099,0.00158,0.00211,0.00421,0,0,0,0,0,0,0.00095,0.00151,0.002,0.00396,0,0,0,0,0,0,0.00097,0.00153,0.00204,0.00406,0,0,0,0,0,0,0.00101,0.0016,0.00214,0.0043,0,0,0,0,0,0,0.00085,0.00132,0.00172,0.00326,0,0,0,0,0,0,0.00086,0.00135,0.00176,0.00337,0,0,0,0,0,0,0.00081,0.00126,0.00163,0.00305,0,0,0,0,0,0,0.00088,0.00139,0.00182,0.00353,0,0,0,0,0,0,0.00079,0.00123,0.00159,0.003,0,0,0,0,0,0,0.03077,0.03207,0.0333,0.03825,0,0,0,0,0,0,0.03164,0.03287,0.034,0.03854,0,0,0,0,0,0,0.0345,0.03575,0.03693,0.04166,0,0,0,0,0,0,0.02882,0.03015,0.03141,0.03652,0,0,0,0,0,0,0.03359,0.0346,0.03548,0.03892,0,0,0,0,0,0,0.03062,0.03166,0.03259,0.03624,0,0,0,0,0,0,0.03066,0.03161,0.03242,0.03559,0,0,0,0,0,0,0.03229,0.03339,0.03437,0.03828,0,0,0,0,0,0,0.03193,0.03285,0.03365,0.03677,0,0,0,0,0,0,0.00564,0.00679,0.00787,0.01226,0,0,0,0,0,0,0.00567,0.00675,0.00775,0.01177,0,0,0,0,0,0,0.00606,0.00717,0.00821,0.01239,0,0,0,0,0,0,0.00542,0.0066,0.00771,0.01223,0,0,0,0,0,0,0.00569,0.00659,0.00736,0.01041,0,0,0,0,0,0,0.00535,0.00627,0.00709,0.01032,0,0,0,0,0,0,0.00525,0.00609,0.00681,0.00961,0,0,0,0,0,0,0.00561,0.00658,0.00744,0.0109,0,0,0,0,0,0,0.00538,0.0062,0.0069,0.00967,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00133,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00135,0.00136,0.00137,0.00153,0,0,0,0,0,0,0.00132,0.00133,0.00134,0.0015,0,0,0,0,0,0,0.00135,0.00135,0.00136,0.00151,0,0,0,0,0,0,0.00133,0.00133,0.00134,0.00149,0,0,0,0,0,0,0.00134,0.00134,0.00135,0.0015,0,0,0,0,0,0,0.00132,0.00132,0.00133,0.00148,0,0,0,0,0,0,0.00122,0.00122,0.00123,0.00137,0,0,0,0,0,0,0.0636,0.08349,0.12346,0.31454,0,0,0,0,0,0,0.05633,0.07428,0.11203,0.29915,0,0,0,0,0,0,0.06092,0.08306,0.12522,0.32843,0,0,0,0,0,0,0.06696,0.09151,0.13608,0.34152,0,0,0,0,0,0,0.03938,0.05772,0.09556,0.29459,0,0,0,0,0,0,0.04282,0.06216,0.10054,0.29766,0,0,0,0,0,0,0.03818,0.05538,0.09171,0.28592,0,0,0,0,0,0,0.04939,0.06934,0.10931,0.3105,0,0,0,0,0,0,0.03888,0.05594,0.09238,0.28552,0,0 +Small SUV,PH20G,2030,0,0,0,0,0,0.01277,0.01311,0.01346,0.01449,0,0,0,0,0,0,0.01315,0.01346,0.01377,0.01469,0,0,0,0,0,0,0.01438,0.0147,0.01503,0.016,0,0,0,0,0,0,0.01194,0.01229,0.01266,0.01373,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01504,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01387,0,0,0,0,0,0,0.01275,0.01295,0.01314,0.01369,0,0,0,0,0,0,0.01344,0.0137,0.01396,0.0147,0,0,0,0,0,0,0.0133,0.0135,0.01369,0.01422,0,0,0,0,0,0,0.00637,0.00486,0.00471,0.00642,0,0,0,0,0,0,0.00547,0.00423,0.00415,0.00573,0,0,0,0,0,0,0.00594,0.00472,0.00464,0.00653,0,0,0,0,0,0,0.00671,0.00532,0.0052,0.00729,0,0,0,0,0,0,0.00312,0.00281,0.00293,0.00445,0,0,0,0,0,0,0.00364,0.00319,0.00328,0.00491,0,0,0,0,0,0,0.00302,0.00274,0.00287,0.00438,0,0,0,0,0,0,0.00432,0.00359,0.00361,0.00524,0,0,0,0,0,0,0.00313,0.00274,0.00284,0.00421,0,0,0,0,0,0,0.81983,1.19608,1.54489,2.30147,0,0,0,0,0,0,0.77296,1.14499,1.48581,2.22803,0,0,0,0,0,0,0.83021,1.27881,1.68821,2.61784,0,0,0,0,0,0,0.89199,1.37873,1.82418,2.81479,0,0,0,0,0,0,0.64277,1.07839,1.4429,2.28492,0,0,0,0,0,0,0.68669,1.1405,1.52772,2.42443,0,0,0,0,0,0,0.66307,1.11058,1.48571,2.34995,0,0,0,0,0,0,0.73353,1.16519,1.53442,2.37951,0,0,0,0,0,0,0.61872,0.99476,1.30192,2.00618,0,0,0,0,0,0,189.53615,191.29409,194.23318,210.32311,0,0,0,0,0,0,190.92402,192.55565,195.29323,211.05902,0,0,0,0,0,0,193.6705,195.38802,198.26854,214.46881,0,0,0,0,0,0,189.39263,191.1108,193.99818,209.9861,0,0,0,0,0,0,193.64338,194.83385,196.86472,211.37809,0,0,0,0,0,0,190.69392,192.00689,194.23503,208.98176,0,0,0,0,0,0,192.21677,193.35551,195.30702,209.5904,0,0,0,0,0,0,192.34526,193.72616,196.06178,211.10904,0,0,0,0,0,0,189.31468,190.5742,192.69371,207.13525,0,0,0,0,0,0,0.00418,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00419,0.00468,0.0055,0.00715,0,0,0,0,0,0,0.00426,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.0041,0.00459,0.0054,0.00703,0,0,0,0,0,0,0.00424,0.00473,0.00555,0.0072,0,0,0,0,0,0,0.00414,0.00463,0.00545,0.00708,0,0,0,0,0,0,0.00418,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00422,0.00472,0.00554,0.00719,0,0,0,0,0,0,0.00425,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.01521,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01513,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01515,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01522,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01525,0.01929,0.01929,0,0,0,0,0,0,0.03003,0.04454,0.06132,0.09589,0,0,0,0,0,0,0.02874,0.04282,0.05919,0.09299,0,0,0,0,0,0,0.02897,0.04522,0.06229,0.10056,0,0,0,0,0,0,0.03074,0.0486,0.06687,0.10821,0,0,0,0,0,0,0.02286,0.03812,0.0537,0.08894,0,0,0,0,0,0,0.02509,0.04116,0.05757,0.09459,0,0,0,0,0,0,0.02346,0.03881,0.05467,0.08985,0,0,0,0,0,0,0.028,0.04469,0.06221,0.10069,0,0,0,0,0,0,0.02453,0.03917,0.05497,0.08814,0,0,0,0,0,0,0.00099,0.00157,0.00209,0.00348,0,0,0,0,0,0,0.00095,0.00151,0.00199,0.00327,0,0,0,0,0,0,0.00096,0.00153,0.00203,0.00336,0,0,0,0,0,0,0.001,0.0016,0.00212,0.00355,0,0,0,0,0,0,0.00084,0.00132,0.00171,0.0027,0,0,0,0,0,0,0.00086,0.00134,0.00175,0.0028,0,0,0,0,0,0,0.00081,0.00125,0.00162,0.00254,0,0,0,0,0,0,0.00088,0.00139,0.00181,0.00293,0,0,0,0,0,0,0.00079,0.00122,0.00159,0.00249,0,0,0,0,0,0,0.03076,0.03206,0.03327,0.03655,0,0,0,0,0,0,0.03164,0.03286,0.03397,0.03698,0,0,0,0,0,0,0.03449,0.03574,0.0369,0.04004,0,0,0,0,0,0,0.02881,0.03014,0.03137,0.03478,0,0,0,0,0,0,0.03359,0.0346,0.03546,0.03771,0,0,0,0,0,0,0.03062,0.03166,0.03257,0.03496,0,0,0,0,0,0,0.03065,0.0316,0.0324,0.03447,0,0,0,0,0,0,0.03229,0.03338,0.03435,0.03691,0,0,0,0,0,0,0.03192,0.03285,0.03364,0.03566,0,0,0,0,0,0,0.00563,0.00678,0.00785,0.01075,0,0,0,0,0,0,0.00566,0.00674,0.00772,0.01039,0,0,0,0,0,0,0.00605,0.00716,0.00818,0.01096,0,0,0,0,0,0,0.00541,0.00659,0.00767,0.01069,0,0,0,0,0,0,0.00569,0.00658,0.00734,0.00933,0,0,0,0,0,0,0.00535,0.00627,0.00707,0.00919,0,0,0,0,0,0,0.00525,0.00609,0.00679,0.00863,0,0,0,0,0,0,0.00561,0.00657,0.00743,0.0097,0,0,0,0,0,0,0.00538,0.0062,0.0069,0.00868,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00135,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00137,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00134,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00135,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00133,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00134,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00133,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00122,0,0,0,0,0,0,0.06034,0.07768,0.11541,0.27823,0,0,0,0,0,0,0.05305,0.06851,0.10398,0.26258,0,0,0,0,0,0,0.05763,0.07672,0.1164,0.28756,0,0,0,0,0,0,0.06357,0.08478,0.12664,0.29911,0,0,0,0,0,0,0.03591,0.05114,0.0861,0.25104,0,0,0,0,0,0,0.03942,0.05559,0.09114,0.25466,0,0,0,0,0,0,0.03465,0.04873,0.08211,0.24207,0,0,0,0,0,0,0.04583,0.06276,0.09988,0.26784,0,0,0,0,0,0,0.03521,0.04938,0.08306,0.24377,0 +Small SUV,PH20G,2035,0,0,0,0,0,0,0.01277,0.0131,0.01347,0.01432,0,0,0,0,0,0,0.01315,0.01345,0.01378,0.01453,0,0,0,0,0,0,0.01437,0.01469,0.01503,0.01584,0,0,0,0,0,0,0.01194,0.01228,0.01266,0.01356,0,0,0,0,0,0,0.01399,0.01421,0.01443,0.01494,0,0,0,0,0,0,0.01272,0.01296,0.0132,0.01376,0,0,0,0,0,0,0.01275,0.01294,0.01315,0.0136,0,0,0,0,0,0,0.01344,0.01369,0.01396,0.01457,0,0,0,0,0,0,0.0133,0.01349,0.01369,0.01412,0,0,0,0,0,0,0.00636,0.00486,0.0047,0.00595,0,0,0,0,0,0,0.00546,0.00424,0.00414,0.00526,0,0,0,0,0,0,0.00592,0.00473,0.00463,0.00595,0,0,0,0,0,0,0.00669,0.00533,0.00519,0.00666,0,0,0,0,0,0,0.00311,0.00281,0.00293,0.00385,0,0,0,0,0,0,0.00363,0.0032,0.00327,0.0043,0,0,0,0,0,0,0.00301,0.00274,0.00287,0.00378,0,0,0,0,0,0,0.0043,0.00359,0.00361,0.00468,0,0,0,0,0,0,0.00312,0.00274,0.00284,0.00368,0,0,0,0,0,0,0.81808,1.19927,1.54177,2.08939,0,0,0,0,0,0,0.7713,1.14716,1.4834,2.01022,0,0,0,0,0,0,0.82841,1.28158,1.68525,2.34545,0,0,0,0,0,0,0.89006,1.38145,1.82118,2.52532,0,0,0,0,0,0,0.64126,1.07721,1.44267,2.00592,0,0,0,0,0,0,0.68509,1.1399,1.52705,2.13536,0,0,0,0,0,0,0.6616,1.10989,1.48513,2.06299,0,0,0,0,0,0,0.73178,1.1652,1.53335,2.1144,0,0,0,0,0,0,0.61726,0.99432,1.30135,1.77511,0,0,0,0,0,0,189.49049,191.28336,194.21722,202.03313,0,0,0,0,0,0,190.8817,192.54606,195.27832,202.71021,0,0,0,0,0,0,193.62577,195.37763,198.25292,206.00055,0,0,0,0,0,0,189.34748,191.10037,193.98249,201.70717,0,0,0,0,0,0,193.61222,194.82721,196.8536,202.91627,0,0,0,0,0,0,190.65963,191.99938,194.223,200.64805,0,0,0,0,0,0,192.18684,193.34915,195.29668,201.19303,0,0,0,0,0,0,192.30932,193.71809,196.04906,202.7015,0,0,0,0,0,0,189.28277,190.5674,192.68236,198.85439,0,0,0,0,0,0,0.00417,0.00467,0.00549,0.00715,0,0,0,0,0,0,0.00417,0.00468,0.00549,0.00714,0,0,0,0,0,0,0.00424,0.00475,0.00557,0.00722,0,0,0,0,0,0,0.00408,0.00458,0.00539,0.00703,0,0,0,0,0,0,0.00422,0.00473,0.00555,0.00719,0,0,0,0,0,0,0.00413,0.00463,0.00544,0.00707,0,0,0,0,0,0,0.00416,0.00467,0.00549,0.00714,0,0,0,0,0,0,0.00421,0.00471,0.00553,0.00719,0,0,0,0,0,0,0.00424,0.00475,0.00558,0.00725,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.01325,0.0152,0.01925,0.01925,0,0,0,0,0,0,0.01325,0.0152,0.01924,0.01924,0,0,0,0,0,0,0.01318,0.01512,0.01915,0.01915,0,0,0,0,0,0,0.01324,0.01519,0.01922,0.01922,0,0,0,0,0,0,0.0132,0.01514,0.01916,0.01916,0,0,0,0,0,0,0.01323,0.01518,0.01921,0.01921,0,0,0,0,0,0,0.01326,0.01521,0.01925,0.01925,0,0,0,0,0,0,0.01328,0.01524,0.01929,0.01929,0,0,0,0,0,0,0.02993,0.04439,0.06135,0.08406,0,0,0,0,0,0,0.02865,0.04267,0.05922,0.08116,0,0,0,0,0,0,0.02886,0.04505,0.06233,0.08698,0,0,0,0,0,0,0.03062,0.04839,0.06693,0.09351,0,0,0,0,0,0,0.02279,0.03799,0.05372,0.07545,0,0,0,0,0,0,0.025,0.04102,0.0576,0.08068,0,0,0,0,0,0,0.02338,0.03866,0.05471,0.07638,0,0,0,0,0,0,0.02791,0.04457,0.06223,0.08636,0,0,0,0,0,0,0.02446,0.03911,0.05496,0.07555,0,0,0,0,0,0,0.00099,0.00156,0.0021,0.00323,0,0,0,0,0,0,0.00095,0.0015,0.00199,0.00303,0,0,0,0,0,0,0.00096,0.00152,0.00203,0.00311,0,0,0,0,0,0,0.001,0.00158,0.00213,0.0033,0,0,0,0,0,0,0.00084,0.00131,0.00171,0.00251,0,0,0,0,0,0,0.00086,0.00134,0.00175,0.0026,0,0,0,0,0,0,0.0008,0.00125,0.00162,0.00236,0,0,0,0,0,0,0.00088,0.00138,0.00182,0.00271,0,0,0,0,0,0,0.00079,0.00122,0.00159,0.00231,0,0,0,0,0,0,0.03076,0.03204,0.03328,0.03597,0,0,0,0,0,0,0.03163,0.03284,0.03398,0.03644,0,0,0,0,0,0,0.03448,0.03572,0.03691,0.03947,0,0,0,0,0,0,0.0288,0.03011,0.03139,0.03419,0,0,0,0,0,0,0.03358,0.03458,0.03546,0.03728,0,0,0,0,0,0,0.03061,0.03164,0.03257,0.03452,0,0,0,0,0,0,0.03065,0.03158,0.03241,0.03408,0,0,0,0,0,0,0.03228,0.03336,0.03436,0.03644,0,0,0,0,0,0,0.03192,0.03284,0.03364,0.03526,0,0,0,0,0,0,0.00563,0.00676,0.00786,0.01024,0,0,0,0,0,0,0.00566,0.00672,0.00773,0.00991,0,0,0,0,0,0,0.00605,0.00714,0.00819,0.01046,0,0,0,0,0,0,0.0054,0.00656,0.00769,0.01017,0,0,0,0,0,0,0.00569,0.00657,0.00735,0.00896,0,0,0,0,0,0,0.00534,0.00625,0.00708,0.0088,0,0,0,0,0,0,0.00525,0.00607,0.0068,0.00828,0,0,0,0,0,0,0.0056,0.00656,0.00743,0.00928,0,0,0,0,0,0,0.00538,0.00619,0.0069,0.00833,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00122,0.00123,0.00125,0.00129,0,0,0,0,0,0,0.00124,0.00125,0.00126,0.00131,0,0,0,0,0,0,0.00121,0.00122,0.00124,0.00129,0,0,0,0,0,0,0.00124,0.00124,0.00126,0.00129,0,0,0,0,0,0,0.00122,0.00122,0.00124,0.00128,0,0,0,0,0,0,0.00123,0.00123,0.00125,0.00128,0,0,0,0,0,0,0.00121,0.00122,0.00123,0.00127,0,0,0,0,0,0,0.00112,0.00112,0.00114,0.00117,0,0,0,0,0,0,0.06013,0.07768,0.11526,0.26475,0,0,0,0,0,0,0.05287,0.0685,0.10385,0.24897,0,0,0,0,0,0,0.05743,0.07675,0.11623,0.27204,0,0,0,0,0,0,0.06333,0.08475,0.12649,0.28301,0,0,0,0,0,0,0.03578,0.05104,0.08605,0.23455,0,0,0,0,0,0,0.03928,0.05552,0.09107,0.2383,0,0,0,0,0,0,0.03453,0.04862,0.08208,0.22551,0,0,0,0,0,0,0.04565,0.0626,0.09986,0.25184,0,0,0,0,0,0,0.03509,0.04931,0.08299,0.22818 +Small SUV,PH20G,2040,0,0,0,0,0,0,0,0.01276,0.0131,0.01347,0,0,0,0,0,0,0,0.01314,0.01345,0.01378,0,0,0,0,0,0,0,0.01437,0.01469,0.01504,0,0,0,0,0,0,0,0.01193,0.01228,0.01267,0,0,0,0,0,0,0,0.01399,0.01421,0.01444,0,0,0,0,0,0,0,0.01272,0.01296,0.0132,0,0,0,0,0,0,0,0.01274,0.01295,0.01315,0,0,0,0,0,0,0,0.01343,0.01369,0.01396,0,0,0,0,0,0,0,0.0133,0.01349,0.01369,0,0,0,0,0,0,0,0.00636,0.00486,0.0047,0,0,0,0,0,0,0,0.00546,0.00423,0.00414,0,0,0,0,0,0,0,0.00594,0.00473,0.00462,0,0,0,0,0,0,0,0.00671,0.00532,0.00518,0,0,0,0,0,0,0,0.00312,0.00281,0.00292,0,0,0,0,0,0,0,0.00364,0.00319,0.00327,0,0,0,0,0,0,0,0.00301,0.00274,0.00286,0,0,0,0,0,0,0,0.00431,0.00359,0.0036,0,0,0,0,0,0,0,0.00312,0.00273,0.00283,0,0,0,0,0,0,0,0.82092,1.1969,1.53858,0,0,0,0,0,0,0,0.77331,1.14532,1.48091,0,0,0,0,0,0,0,0.83125,1.27943,1.68229,0,0,0,0,0,0,0,0.8932,1.37928,1.81824,0,0,0,0,0,0,0,0.64079,1.07708,1.44247,0,0,0,0,0,0,0,0.68516,1.13946,1.52644,0,0,0,0,0,0,0,0.66144,1.10952,1.48452,0,0,0,0,0,0,0,0.73212,1.16441,1.53233,0,0,0,0,0,0,0,0.61693,0.99384,1.30076,0,0,0,0,0,0,0,189.44235,191.23605,194.17898,0,0,0,0,0,0,0,190.83351,192.49868,195.23958,0,0,0,0,0,0,0,193.57661,195.32949,198.21363,0,0,0,0,0,0,0,189.29942,191.05318,193.94417,0,0,0,0,0,0,0,193.56445,194.78032,196.81331,0,0,0,0,0,0,0,190.6123,191.95271,194.18365,0,0,0,0,0,0,0,192.13943,193.30275,195.25665,0,0,0,0,0,0,0,192.26126,193.67101,196.00962,0,0,0,0,0,0,0,189.23606,190.52135,192.64333,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00417,0.00467,0.00549,0,0,0,0,0,0,0,0.00424,0.00474,0.00557,0,0,0,0,0,0,0,0.00408,0.00458,0.00539,0,0,0,0,0,0,0,0.00422,0.00472,0.00554,0,0,0,0,0,0,0,0.00413,0.00463,0.00544,0,0,0,0,0,0,0,0.00416,0.00467,0.00549,0,0,0,0,0,0,0,0.0042,0.00471,0.00553,0,0,0,0,0,0,0,0.00423,0.00475,0.00558,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01325,0.0152,0.01924,0,0,0,0,0,0,0,0.01324,0.0152,0.01924,0,0,0,0,0,0,0,0.01318,0.01512,0.01914,0,0,0,0,0,0,0,0.01323,0.01518,0.01922,0,0,0,0,0,0,0,0.01319,0.01514,0.01916,0,0,0,0,0,0,0,0.01322,0.01517,0.01921,0,0,0,0,0,0,0,0.01325,0.01521,0.01925,0,0,0,0,0,0,0,0.01328,0.01524,0.01929,0,0,0,0,0,0,0,0.02983,0.0444,0.06139,0,0,0,0,0,0,0,0.02855,0.04268,0.05927,0,0,0,0,0,0,0,0.02876,0.04507,0.06239,0,0,0,0,0,0,0,0.03049,0.04843,0.067,0,0,0,0,0,0,0,0.02271,0.038,0.05375,0,0,0,0,0,0,0,0.02492,0.04104,0.05764,0,0,0,0,0,0,0,0.02329,0.03867,0.05476,0,0,0,0,0,0,0,0.02783,0.04457,0.06225,0,0,0,0,0,0,0,0.02443,0.03908,0.05494,0,0,0,0,0,0,0,0.00098,0.00157,0.0021,0,0,0,0,0,0,0,0.00094,0.0015,0.002,0,0,0,0,0,0,0,0.00096,0.00152,0.00204,0,0,0,0,0,0,0,0.00099,0.00159,0.00214,0,0,0,0,0,0,0,0.00084,0.00131,0.00172,0,0,0,0,0,0,0,0.00085,0.00134,0.00176,0,0,0,0,0,0,0,0.0008,0.00125,0.00163,0,0,0,0,0,0,0,0.00088,0.00138,0.00182,0,0,0,0,0,0,0,0.00078,0.00122,0.00159,0,0,0,0,0,0,0,0.03074,0.03205,0.03329,0,0,0,0,0,0,0,0.03162,0.03284,0.03399,0,0,0,0,0,0,0,0.03447,0.03573,0.03692,0,0,0,0,0,0,0,0.02878,0.03012,0.03141,0,0,0,0,0,0,0,0.03357,0.03458,0.03547,0,0,0,0,0,0,0,0.0306,0.03165,0.03258,0,0,0,0,0,0,0,0.03064,0.03159,0.03242,0,0,0,0,0,0,0,0.03227,0.03337,0.03436,0,0,0,0,0,0,0,0.03192,0.03284,0.03364,0,0,0,0,0,0,0,0.00561,0.00677,0.00787,0,0,0,0,0,0,0,0.00564,0.00673,0.00775,0,0,0,0,0,0,0,0.00603,0.00715,0.0082,0,0,0,0,0,0,0,0.00539,0.00657,0.00771,0,0,0,0,0,0,0,0.00568,0.00657,0.00736,0,0,0,0,0,0,0,0.00533,0.00626,0.00709,0,0,0,0,0,0,0,0.00524,0.00608,0.00681,0,0,0,0,0,0,0,0.00559,0.00656,0.00744,0,0,0,0,0,0,0,0.00537,0.00619,0.0069,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00122,0.00123,0.00125,0,0,0,0,0,0,0,0.00123,0.00125,0.00126,0,0,0,0,0,0,0,0.00121,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00124,0.00126,0,0,0,0,0,0,0,0.00122,0.00122,0.00124,0,0,0,0,0,0,0,0.00123,0.00123,0.00125,0,0,0,0,0,0,0,0.00121,0.00122,0.00123,0,0,0,0,0,0,0,0.00112,0.00112,0.00114,0,0,0,0,0,0,0,0.06016,0.0776,0.11521,0,0,0,0,0,0,0,0.05289,0.06844,0.10381,0,0,0,0,0,0,0,0.05749,0.07666,0.11616,0,0,0,0,0,0,0,0.06336,0.08469,0.12646,0,0,0,0,0,0,0,0.03574,0.05105,0.0861,0,0,0,0,0,0,0,0.03927,0.05551,0.09109,0,0,0,0,0,0,0,0.03448,0.04863,0.08213,0,0,0,0,0,0,0,0.04557,0.06263,0.09997,0,0,0,0,0,0,0,0.03506,0.0493,0.083 +Small SUV,PH20G,2045,0,0,0,0,0,0,0,0,0.01277,0.01311,0,0,0,0,0,0,0,0,0.01314,0.01345,0,0,0,0,0,0,0,0,0.01437,0.0147,0,0,0,0,0,0,0,0,0.01193,0.01229,0,0,0,0,0,0,0,0,0.01399,0.01421,0,0,0,0,0,0,0,0,0.01272,0.01296,0,0,0,0,0,0,0,0,0.01274,0.01295,0,0,0,0,0,0,0,0,0.01343,0.01369,0,0,0,0,0,0,0,0,0.0133,0.01349,0,0,0,0,0,0,0,0,0.00635,0.00485,0,0,0,0,0,0,0,0,0.00545,0.00423,0,0,0,0,0,0,0,0,0.00593,0.00472,0,0,0,0,0,0,0,0,0.0067,0.00531,0,0,0,0,0,0,0,0,0.00311,0.00281,0,0,0,0,0,0,0,0,0.00363,0.00319,0,0,0,0,0,0,0,0,0.00301,0.00274,0,0,0,0,0,0,0,0,0.0043,0.00358,0,0,0,0,0,0,0,0,0.00312,0.00273,0,0,0,0,0,0,0,0,0.81921,1.19466,0,0,0,0,0,0,0,0,0.77204,1.14366,0,0,0,0,0,0,0,0,0.82956,1.27733,0,0,0,0,0,0,0,0,0.89136,1.37717,0,0,0,0,0,0,0,0,0.64079,1.07724,0,0,0,0,0,0,0,0,0.68488,1.13927,0,0,0,0,0,0,0,0,0.66129,1.1094,0,0,0,0,0,0,0,0,0.73167,1.16391,0,0,0,0,0,0,0,0,0.61685,0.99366,0,0,0,0,0,0,0,0,189.4325,191.23282,0,0,0,0,0,0,0,0,190.82409,192.49543,0,0,0,0,0,0,0,0,193.56681,195.32605,0,0,0,0,0,0,0,0,189.28974,191.0498,0,0,0,0,0,0,0,0,193.55622,194.77697,0,0,0,0,0,0,0,0,190.60367,191.94943,0,0,0,0,0,0,0,0,192.13158,193.29946,0,0,0,0,0,0,0,0,192.25252,193.66775,0,0,0,0,0,0,0,0,189.22784,190.51803,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.00417,0.00467,0,0,0,0,0,0,0,0,0.00424,0.00474,0,0,0,0,0,0,0,0,0.00408,0.00458,0,0,0,0,0,0,0,0,0.00422,0.00472,0,0,0,0,0,0,0,0,0.00413,0.00463,0,0,0,0,0,0,0,0,0.00416,0.00467,0,0,0,0,0,0,0,0,0.0042,0.00471,0,0,0,0,0,0,0,0,0.00423,0.00475,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01324,0.01519,0,0,0,0,0,0,0,0,0.01318,0.01512,0,0,0,0,0,0,0,0,0.01323,0.01518,0,0,0,0,0,0,0,0,0.01319,0.01513,0,0,0,0,0,0,0,0,0.01322,0.01517,0,0,0,0,0,0,0,0,0.01325,0.0152,0,0,0,0,0,0,0,0,0.01328,0.01524,0,0,0,0,0,0,0,0,0.02985,0.04446,0,0,0,0,0,0,0,0,0.02857,0.04273,0,0,0,0,0,0,0,0,0.02878,0.04513,0,0,0,0,0,0,0,0,0.03053,0.0485,0,0,0,0,0,0,0,0,0.02273,0.03804,0,0,0,0,0,0,0,0,0.02494,0.04108,0,0,0,0,0,0,0,0,0.02332,0.03873,0,0,0,0,0,0,0,0,0.02785,0.0446,0,0,0,0,0,0,0,0,0.02443,0.03909,0,0,0,0,0,0,0,0,0.00099,0.00157,0,0,0,0,0,0,0,0,0.00095,0.0015,0,0,0,0,0,0,0,0,0.00096,0.00153,0,0,0,0,0,0,0,0,0.00099,0.00159,0,0,0,0,0,0,0,0,0.00084,0.00132,0,0,0,0,0,0,0,0,0.00085,0.00134,0,0,0,0,0,0,0,0,0.0008,0.00125,0,0,0,0,0,0,0,0,0.00088,0.00138,0,0,0,0,0,0,0,0,0.00078,0.00122,0,0,0,0,0,0,0,0,0.03075,0.03206,0,0,0,0,0,0,0,0,0.03162,0.03285,0,0,0,0,0,0,0,0,0.03447,0.03574,0,0,0,0,0,0,0,0,0.02879,0.03013,0,0,0,0,0,0,0,0,0.03358,0.03459,0,0,0,0,0,0,0,0,0.0306,0.03165,0,0,0,0,0,0,0,0,0.03064,0.0316,0,0,0,0,0,0,0,0,0.03228,0.03338,0,0,0,0,0,0,0,0,0.03192,0.03285,0,0,0,0,0,0,0,0,0.00562,0.00678,0,0,0,0,0,0,0,0,0.00565,0.00674,0,0,0,0,0,0,0,0,0.00604,0.00716,0,0,0,0,0,0,0,0,0.00539,0.00658,0,0,0,0,0,0,0,0,0.00568,0.00658,0,0,0,0,0,0,0,0,0.00534,0.00627,0,0,0,0,0,0,0,0,0.00524,0.00609,0,0,0,0,0,0,0,0,0.0056,0.00657,0,0,0,0,0,0,0,0,0.00537,0.0062,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00122,0.00123,0,0,0,0,0,0,0,0,0.00123,0.00125,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00124,0,0,0,0,0,0,0,0,0.00122,0.00122,0,0,0,0,0,0,0,0,0.00123,0.00123,0,0,0,0,0,0,0,0,0.00121,0.00122,0,0,0,0,0,0,0,0,0.00112,0.00112,0,0,0,0,0,0,0,0,0.0601,0.07756,0,0,0,0,0,0,0,0,0.05284,0.0684,0,0,0,0,0,0,0,0,0.05743,0.0766,0,0,0,0,0,0,0,0,0.06331,0.08464,0,0,0,0,0,0,0,0,0.03574,0.05106,0,0,0,0,0,0,0,0,0.03925,0.05551,0,0,0,0,0,0,0,0,0.03448,0.04865,0,0,0,0,0,0,0,0,0.04558,0.06268,0,0,0,0,0,0,0,0,0.03505,0.04929 +Small SUV,PH20G,2050,0,0,0,0,0,0,0,0,0,0.01277,0,0,0,0,0,0,0,0,0,0.01315,0,0,0,0,0,0,0,0,0,0.01437,0,0,0,0,0,0,0,0,0,0.01193,0,0,0,0,0,0,0,0,0,0.01399,0,0,0,0,0,0,0,0,0,0.01272,0,0,0,0,0,0,0,0,0,0.01274,0,0,0,0,0,0,0,0,0,0.01344,0,0,0,0,0,0,0,0,0,0.0133,0,0,0,0,0,0,0,0,0,0.00635,0,0,0,0,0,0,0,0,0,0.00545,0,0,0,0,0,0,0,0,0,0.00592,0,0,0,0,0,0,0,0,0,0.00669,0,0,0,0,0,0,0,0,0,0.00311,0,0,0,0,0,0,0,0,0,0.00363,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.0043,0,0,0,0,0,0,0,0,0,0.00312,0,0,0,0,0,0,0,0,0,0.81736,0,0,0,0,0,0,0,0,0,0.77064,0,0,0,0,0,0,0,0,0,0.8277,0,0,0,0,0,0,0,0,0,0.88931,0,0,0,0,0,0,0,0,0,0.64076,0,0,0,0,0,0,0,0,0,0.68455,0,0,0,0,0,0,0,0,0,0.66109,0,0,0,0,0,0,0,0,0,0.73118,0,0,0,0,0,0,0,0,0,0.61675,0,0,0,0,0,0,0,0,0,189.43276,0,0,0,0,0,0,0,0,0,190.82422,0,0,0,0,0,0,0,0,0,193.56695,0,0,0,0,0,0,0,0,0,189.28984,0,0,0,0,0,0,0,0,0,193.55647,0,0,0,0,0,0,0,0,0,190.60386,0,0,0,0,0,0,0,0,0,192.13162,0,0,0,0,0,0,0,0,0,192.25274,0,0,0,0,0,0,0,0,0,189.22797,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.00417,0,0,0,0,0,0,0,0,0,0.00424,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00422,0,0,0,0,0,0,0,0,0,0.00413,0,0,0,0,0,0,0,0,0,0.00416,0,0,0,0,0,0,0,0,0,0.0042,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01324,0,0,0,0,0,0,0,0,0,0.01318,0,0,0,0,0,0,0,0,0,0.01323,0,0,0,0,0,0,0,0,0,0.01319,0,0,0,0,0,0,0,0,0,0.01322,0,0,0,0,0,0,0,0,0,0.01325,0,0,0,0,0,0,0,0,0,0.01328,0,0,0,0,0,0,0,0,0,0.02989,0,0,0,0,0,0,0,0,0,0.02861,0,0,0,0,0,0,0,0,0,0.02883,0,0,0,0,0,0,0,0,0,0.03059,0,0,0,0,0,0,0,0,0,0.02276,0,0,0,0,0,0,0,0,0,0.02497,0,0,0,0,0,0,0,0,0,0.02335,0,0,0,0,0,0,0,0,0,0.02787,0,0,0,0,0,0,0,0,0,0.02443,0,0,0,0,0,0,0,0,0,0.00099,0,0,0,0,0,0,0,0,0,0.00095,0,0,0,0,0,0,0,0,0,0.00096,0,0,0,0,0,0,0,0,0,0.001,0,0,0,0,0,0,0,0,0,0.00084,0,0,0,0,0,0,0,0,0,0.00085,0,0,0,0,0,0,0,0,0,0.0008,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00078,0,0,0,0,0,0,0,0,0,0.03075,0,0,0,0,0,0,0,0,0,0.03163,0,0,0,0,0,0,0,0,0,0.03448,0,0,0,0,0,0,0,0,0,0.0288,0,0,0,0,0,0,0,0,0,0.03358,0,0,0,0,0,0,0,0,0,0.03061,0,0,0,0,0,0,0,0,0,0.03065,0,0,0,0,0,0,0,0,0,0.03228,0,0,0,0,0,0,0,0,0,0.03192,0,0,0,0,0,0,0,0,0,0.00562,0,0,0,0,0,0,0,0,0,0.00565,0,0,0,0,0,0,0,0,0,0.00604,0,0,0,0,0,0,0,0,0,0.0054,0,0,0,0,0,0,0,0,0,0.00568,0,0,0,0,0,0,0,0,0,0.00534,0,0,0,0,0,0,0,0,0,0.00524,0,0,0,0,0,0,0,0,0,0.0056,0,0,0,0,0,0,0,0,0,0.00538,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00122,0,0,0,0,0,0,0,0,0,0.00123,0,0,0,0,0,0,0,0,0,0.00121,0,0,0,0,0,0,0,0,0,0.00112,0,0,0,0,0,0,0,0,0,0.06006,0,0,0,0,0,0,0,0,0,0.05281,0,0,0,0,0,0,0,0,0,0.05737,0,0,0,0,0,0,0,0,0,0.06327,0,0,0,0,0,0,0,0,0,0.03575,0,0,0,0,0,0,0,0,0,0.03925,0,0,0,0,0,0,0,0,0,0.0345,0,0,0,0,0,0,0,0,0,0.04561,0,0,0,0,0,0,0,0,0,0.03505 +Small SUV,PH40E,1990,0.02044,0,0,0,0,0,0,0,0,0,0.02114,0,0,0,0,0,0,0,0,0,0.02314,0,0,0,0,0,0,0,0,0,0.01902,0,0,0,0,0,0,0,0,0,0.02273,0,0,0,0,0,0,0,0,0,0.02058,0,0,0,0,0,0,0,0,0,0.02071,0,0,0,0,0,0,0,0,0,0.02173,0,0,0,0,0,0,0,0,0,0.02164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0,0,0,0,0,0,0,0,0,0.00068,0,0,0,0,0,0,0,0,0,0.00069,0,0,0,0,0,0,0,0,0,0.00071,0,0,0,0,0,0,0,0,0,0.0006,0,0,0,0,0,0,0,0,0,0.00061,0,0,0,0,0,0,0,0,0,0.00057,0,0,0,0,0,0,0,0,0,0.00063,0,0,0,0,0,0,0,0,0,0.00056,0,0,0,0,0,0,0,0,0,0.02197,0,0,0,0,0,0,0,0,0,0.02259,0,0,0,0,0,0,0,0,0,0.02463,0,0,0,0,0,0,0,0,0,0.02057,0,0,0,0,0,0,0,0,0,0.02399,0,0,0,0,0,0,0,0,0,0.02186,0,0,0,0,0,0,0,0,0,0.02189,0,0,0,0,0,0,0,0,0,0.02306,0,0,0,0,0,0,0,0,0,0.0228,0,0,0,0,0,0,0,0,0,0.00402,0,0,0,0,0,0,0,0,0,0.00404,0,0,0,0,0,0,0,0,0,0.00432,0,0,0,0,0,0,0,0,0,0.00386,0,0,0,0,0,0,0,0,0,0.00406,0,0,0,0,0,0,0,0,0,0.00381,0,0,0,0,0,0,0,0,0,0.00375,0,0,0,0,0,0,0,0,0,0.004,0,0,0,0,0,0,0,0,0,0.00384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH40E,1995,0.02043,0.02043,0,0,0,0,0,0,0,0,0.02113,0.02113,0,0,0,0,0,0,0,0,0.02314,0.02314,0,0,0,0,0,0,0,0,0.01901,0.01901,0,0,0,0,0,0,0,0,0.02273,0.02273,0,0,0,0,0,0,0,0,0.02058,0.02058,0,0,0,0,0,0,0,0,0.0207,0.0207,0,0,0,0,0,0,0,0,0.02172,0.02172,0,0,0,0,0,0,0,0,0.02163,0.02163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH40E,2000,0.02043,0.02487,0.02724,0,0,0,0,0,0,0,0.02113,0.02494,0.02695,0,0,0,0,0,0,0,0.02314,0.02742,0.02971,0,0,0,0,0,0,0,0.01901,0.02376,0.02632,0,0,0,0,0,0,0,0.02273,0.02486,0.02594,0,0,0,0,0,0,0,0.02058,0.02309,0.02455,0,0,0,0,0,0,0,0.0207,0.02274,0.02376,0,0,0,0,0,0,0,0.02173,0.02467,0.02621,0,0,0,0,0,0,0,0.02164,0.0237,0.02472,0,0,0,0,0,0,0,0,0.08591,0.09421,0,0,0,0,0,0,0,0,0.08276,0.09242,0,0,0,0,0,0,0,0,0.09805,0.10841,0,0,0,0,0,0,0,0,0.10218,0.1123,0,0,0,0,0,0,0,0,0.08874,0.09933,0,0,0,0,0,0,0,0,0.09346,0.10371,0,0,0,0,0,0,0,0,0.09021,0.09773,0,0,0,0,0,0,0,0,0.08919,0.09821,0,0,0,0,0,0,0,0,0.07849,0.08693,0,0,0,0,0,0,0,0,7.78215,9.82226,0,0,0,0,0,0,0,0,7.62771,9.75559,0,0,0,0,0,0,0,0,8.73402,11.10084,0,0,0,0,0,0,0,0,9.24196,11.6742,0,0,0,0,0,0,0,0,8.28078,10.57589,0,0,0,0,0,0,0,0,8.60315,10.99851,0,0,0,0,0,0,0,0,8.61435,10.69441,0,0,0,0,0,0,0,0,8.21531,10.37856,0,0,0,0,0,0,0,0,7.10919,9.02863,0,0,0,0,0,0,0,0,261.00017,264.90481,0,0,0,0,0,0,0,0,263.0204,266.64274,0,0,0,0,0,0,0,0,266.87788,270.68919,0,0,0,0,0,0,0,0,260.6615,264.47347,0,0,0,0,0,0,0,0,267.11088,269.74742,0,0,0,0,0,0,0,0,262.82174,266.64088,0,0,0,0,0,0,0,0,265.00829,267.52947,0,0,0,0,0,0,0,0,265.14905,268.21116,0,0,0,0,0,0,0,0,261.14206,263.94131,0,0,0,0,0,0,0,0,0.02346,0.02802,0,0,0,0,0,0,0,0,0.02352,0.02806,0,0,0,0,0,0,0,0,0.02398,0.02853,0,0,0,0,0,0,0,0,0.02295,0.02744,0,0,0,0,0,0,0,0,0.02385,0.0284,0,0,0,0,0,0,0,0,0.02327,0.02778,0,0,0,0,0,0,0,0,0.02346,0.028,0,0,0,0,0,0,0,0,0.02372,0.02828,0,0,0,0,0,0,0,0,0.02389,0.02849,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04102,0.04102,0,0,0,0,0,0,0,0,0.04101,0.04101,0,0,0,0,0,0,0,0,0.0408,0.0408,0,0,0,0,0,0,0,0,0.04097,0.04098,0,0,0,0,0,0,0,0,0.04084,0.04084,0,0,0,0,0,0,0,0,0.04095,0.04095,0,0,0,0,0,0,0,0,0.04103,0.04104,0,0,0,0,0,0,0,0,0.04113,0.04113,0,0,0,0,0,0,0,0,1.02389,1.24637,0,0,0,0,0,0,0,0,1.01104,1.24595,0,0,0,0,0,0,0,0,1.13021,1.38047,0,0,0,0,0,0,0,0,1.17013,1.42306,0,0,0,0,0,0,0,0,1.1028,1.3579,0,0,0,0,0,0,0,0,1.13427,1.38158,0,0,0,0,0,0,0,0,1.12308,1.34762,0,0,0,0,0,0,0,0,1.16663,1.40858,0,0,0,0,0,0,0,0,1.04744,1.27405,0,0,0,0,0,0,0,0,0.00947,0.0134,0,0,0,0,0,0,0,0,0.00828,0.01168,0,0,0,0,0,0,0,0,0.00897,0.01273,0,0,0,0,0,0,0,0,0.00981,0.01396,0,0,0,0,0,0,0,0,0.00496,0.00694,0,0,0,0,0,0,0,0,0.00571,0.00831,0,0,0,0,0,0,0,0,0.00488,0.0068,0,0,0,0,0,0,0,0,0.00658,0.00926,0,0,0,0,0,0,0,0,0.005,0.00696,0,0,0,0,0,0,0,0,0.04066,0.04951,0,0,0,0,0,0,0,0,0.03875,0.04638,0,0,0,0,0,0,0,0,0.04238,0.05085,0,0,0,0,0,0,0,0,0.04011,0.04949,0,0,0,0,0,0,0,0,0.03316,0.0375,0,0,0,0,0,0,0,0,0.03263,0.03849,0,0,0,0,0,0,0,0,0.0309,0.0351,0,0,0,0,0,0,0,0,0.03567,0.04162,0,0,0,0,0,0,0,0,0.03207,0.03634,0,0,0,0,0,0,0,0,0.02056,0.02839,0,0,0,0,0,0,0,0,0.01834,0.02509,0,0,0,0,0,0,0,0,0.02002,0.02752,0,0,0,0,0,0,0,0,0.02115,0.02945,0,0,0,0,0,0,0,0,0.01218,0.01602,0,0,0,0,0,0,0,0,0.01334,0.01846,0,0,0,0,0,0,0,0,0.01172,0.01544,0,0,0,0,0,0,0,0,0.01516,0.02042,0,0,0,0,0,0,0,0,0.01205,0.01582,0,0,0,0,0,0,0,0,0.00854,0.00765,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00874,0.00782,0,0,0,0,0,0,0,0,0.00853,0.00764,0,0,0,0,0,0,0,0,0.00875,0.00779,0,0,0,0,0,0,0,0,0.00861,0.0077,0,0,0,0,0,0,0,0,0.00868,0.00773,0,0,0,0,0,0,0,0,0.00868,0.00774,0,0,0,0,0,0,0,0,0.00855,0.00762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Small SUV,PH40E,2005,0.02044,0.02234,0.02327,0.02545,0,0,0,0,0,0,0.02114,0.0228,0.02359,0.02545,0,0,0,0,0,0,0.02315,0.025,0.0259,0.02802,0,0,0,0,0,0,0.01902,0.02104,0.02204,0.0244,0,0,0,0,0,0,0.02274,0.02374,0.02421,0.02523,0,0,0,0,0,0,0.02059,0.02174,0.02234,0.02349,0,0,0,0,0,0,0.02071,0.02168,0.02212,0.02309,0,0,0,0,0,0,0.02174,0.02306,0.02369,0.02511,0,0,0,0,0,0,0.02165,0.02262,0.02307,0.02404,0,0,0,0,0,0,0,0.0359,0.03062,0.03951,0,0,0,0,0,0,0,0.03297,0.02908,0.03777,0,0,0,0,0,0,0,0.03903,0.03422,0.04605,0,0,0,0,0,0,0,0.04109,0.03597,0.04809,0,0,0,0,0,0,0,0.02919,0.02747,0.03834,0,0,0,0,0,0,0,0.03202,0.02982,0.04094,0,0,0,0,0,0,0,0.02924,0.02689,0.03741,0,0,0,0,0,0,0,0.03227,0.02888,0.03911,0,0,0,0,0,0,0,0.02606,0.02396,0.03218,0,0,0,0,0,0,0,3.06958,3.97449,5.89445,0,0,0,0,0,0,0,3.00119,3.98151,5.87501,0,0,0,0,0,0,0,3.37182,4.55669,6.87894,0,0,0,0,0,0,0,3.54369,4.79704,7.21369,0,0,0,0,0,0,0,3.29974,4.52386,6.69599,0,0,0,0,0,0,0,3.36531,4.6374,6.855,0,0,0,0,0,0,0,3.43558,4.59153,6.76434,0,0,0,0,0,0,0,3.27381,4.3573,6.44735,0,0,0,0,0,0,0,2.91823,3.85626,5.59558,0,0,0,0,0,0,0,270.64382,273.57988,276.92053,0,0,0,0,0,0,0,272.90701,275.63443,278.61134,0,0,0,0,0,0,0,276.6806,279.5484,282.76808,0,0,0,0,0,0,0,270.43103,273.3014,276.53414,0,0,0,0,0,0,0,277.73713,279.73599,281.45473,0,0,0,0,0,0,0,273.20109,276.31685,277.4774,0,0,0,0,0,0,0,275.7438,277.659,279.23118,0,0,0,0,0,0,0,275.47141,277.78504,280.04424,0,0,0,0,0,0,0,271.47263,273.58606,275.50201,0,0,0,0,0,0,0,0.00482,0.00571,0.01096,0,0,0,0,0,0,0,0.00483,0.00571,0.01096,0,0,0,0,0,0,0,0.0049,0.00578,0.0111,0,0,0,0,0,0,0,0.00473,0.0056,0.01076,0,0,0,0,0,0,0,0.00488,0.00576,0.01105,0,0,0,0,0,0,0,0.00478,0.00565,0.01085,0,0,0,0,0,0,0,0.00482,0.0057,0.01094,0,0,0,0,0,0,0,0.00486,0.00575,0.01103,0,0,0,0,0,0,0,0.0049,0.00579,0.01112,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01343,0.01682,0.01992,0,0,0,0,0,0,0,0.01342,0.01681,0.01991,0,0,0,0,0,0,0,0.01335,0.01672,0.01981,0,0,0,0,0,0,0,0.01341,0.0168,0.0199,0,0,0,0,0,0,0,0.01337,0.01674,0.01983,0,0,0,0,0,0,0,0.0134,0.01678,0.01988,0,0,0,0,0,0,0,0.01343,0.01682,0.01993,0,0,0,0,0,0,0,0.01346,0.01686,0.01997,0,0,0,0,0,0,0,0.43908,0.58658,0.61355,0,0,0,0,0,0,0,0.42722,0.58465,0.61023,0,0,0,0,0,0,0,0.48091,0.64701,0.68945,0,0,0,0,0,0,0,0.5039,0.67625,0.71819,0,0,0,0,0,0,0,0.46401,0.63147,0.67553,0,0,0,0,0,0,0,0.48199,0.6483,0.69019,0,0,0,0,0,0,0,0.47636,0.6313,0.66914,0,0,0,0,0,0,0,0.49939,0.66447,0.69498,0,0,0,0,0,0,0,0.44777,0.59895,0.62117,0,0,0,0,0,0,0,0.0041,0.0056,0.00914,0,0,0,0,0,0,0,0.00366,0.005,0.00809,0,0,0,0,0,0,0,0.00395,0.00541,0.0088,0,0,0,0,0,0,0,0.00422,0.00579,0.00952,0,0,0,0,0,0,0,0.00245,0.00334,0.00519,0,0,0,0,0,0,0,0.00271,0.0038,0.00583,0,0,0,0,0,0,0,0.00241,0.00328,0.00508,0,0,0,0,0,0,0,0.00304,0.00415,0.00661,0,0,0,0,0,0,0,0.00247,0.00336,0.00519,0,0,0,0,0,0,0,0.02917,0.03256,0.04053,0,0,0,0,0,0,0,0.0289,0.03189,0.0388,0,0,0,0,0,0,0,0.03158,0.03488,0.04254,0,0,0,0,0,0,0,0.02806,0.03163,0.04008,0,0,0,0,0,0,0,0.02784,0.02978,0.03383,0,0,0,0,0,0,0,0.02625,0.02876,0.03312,0,0,0,0,0,0,0,0.0257,0.02759,0.03151,0,0,0,0,0,0,0,0.02813,0.03059,0.03603,0,0,0,0,0,0,0,0.02675,0.02867,0.03264,0,0,0,0,0,0,0,0.01039,0.01339,0.02044,0,0,0,0,0,0,0,0.00962,0.01227,0.01838,0,0,0,0,0,0,0,0.01047,0.01339,0.02016,0,0,0,0,0,0,0,0.01049,0.01365,0.02112,0,0,0,0,0,0,0,0.00747,0.00919,0.01277,0,0,0,0,0,0,0,0.0077,0.00984,0.01378,0,0,0,0,0,0,0,0.00712,0.00879,0.01226,0,0,0,0,0,0,0,0.00849,0.01067,0.01548,0,0,0,0,0,0,0,0.00733,0.00903,0.01255,0,0,0,0,0,0,0,0.00886,0.0079,0.00267,0,0,0,0,0,0,0,0.00894,0.00796,0.00268,0,0,0,0,0,0,0,0.00906,0.00807,0.00272,0,0,0,0,0,0,0,0.00885,0.00789,0.00266,0,0,0,0,0,0,0,0.00909,0.00808,0.00271,0,0,0,0,0,0,0,0.00895,0.00798,0.00267,0,0,0,0,0,0,0,0.00903,0.00802,0.00269,0,0,0,0,0,0,0,0.00902,0.00802,0.0027,0,0,0,0,0,0,0,0.00889,0.0079,0.00265,0,0,0,0,0,0,0,0.19151,0.26704,0.26689,0,0,0,0,0,0,0,0.17299,0.24778,0.24653,0,0,0,0,0,0,0,0.20315,0.28985,0.28676,0,0,0,0,0,0,0,0.21493,0.30599,0.30157,0,0,0,0,0,0,0,0.13524,0.20893,0.2018,0,0,0,0,0,0,0,0.15239,0.23364,0.22243,0,0,0,0,0,0,0,0.13329,0.20216,0.19483,0,0,0,0,0,0,0,0.15848,0.2321,0.22729,0,0,0,0,0,0,0,0.12057,0.18285,0.17688,0,0,0,0,0,0 +Small SUV,PH40E,2010,0,0.02122,0.0219,0.02259,0.02465,0,0,0,0,0,0,0.02183,0.02243,0.02302,0.02479,0,0,0,0,0,0,0.02392,0.02458,0.02525,0.02726,0,0,0,0,0,0,0.01985,0.02058,0.02132,0.02355,0,0,0,0,0,0,0.0232,0.02359,0.02395,0.02496,0,0,0,0,0,0,0.0211,0.02156,0.02195,0.02313,0,0,0,0,0,0,0.02116,0.02153,0.02188,0.02283,0,0,0,0,0,0,0.02231,0.0228,0.02327,0.02465,0,0,0,0,0,0,0.0221,0.02247,0.02282,0.02377,0,0,0,0,0,0,0.02338,0.0167,0.01262,0.02073,0,0,0,0,0,0,0.02039,0.01518,0.0116,0.01941,0,0,0,0,0,0,0.02288,0.01789,0.0137,0.0237,0,0,0,0,0,0,0.02542,0.01978,0.01508,0.0254,0,0,0,0,0,0,0.01369,0.01296,0.01032,0.01884,0,0,0,0,0,0,0.01531,0.01437,0.01116,0.0203,0,0,0,0,0,0,0.0134,0.01278,0.01018,0.01844,0,0,0,0,0,0,0.01711,0.01446,0.01122,0.01967,0,0,0,0,0,0,0.01316,0.01179,0.0092,0.01595,0,0,0,0,0,0,1.24201,2.06766,2.78621,4.17569,0,0,0,0,0,0,1.18144,2.0444,2.76907,4.14896,0,0,0,0,0,0,1.243,2.26626,3.14631,4.87863,0,0,0,0,0,0,1.32871,2.42663,3.37624,5.18617,0,0,0,0,0,0,1.09365,2.16139,3.02966,4.69862,0,0,0,0,0,0,1.12885,2.24229,3.11093,4.845,0,0,0,0,0,0,1.14005,2.22436,3.10587,4.77564,0,0,0,0,0,0,1.16388,2.16276,2.97703,4.54908,0,0,0,0,0,0,1.02317,1.91247,2.59965,3.91145,0,0,0,0,0,0,251.68816,252.76145,255.00028,263.33105,0,0,0,0,0,0,253.90584,254.8429,256.85844,264.8602,0,0,0,0,0,0,257.37277,258.38255,260.53624,268.83693,0,0,0,0,0,0,251.53745,252.55975,254.73651,262.96542,0,0,0,0,0,0,258.77585,259.24577,260.49114,267.30263,0,0,0,0,0,0,254.43996,255.88196,256.5147,263.61767,0,0,0,0,0,0,256.95866,257.37817,258.54227,265.18528,0,0,0,0,0,0,256.5045,257.17661,258.75481,266.07739,0,0,0,0,0,0,252.83469,253.41103,254.78376,261.68608,0,0,0,0,0,0,0.00428,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00429,0.00482,0.00577,0.00828,0,0,0,0,0,0,0.00436,0.0049,0.00585,0.00838,0,0,0,0,0,0,0.00419,0.00472,0.00567,0.00814,0,0,0,0,0,0,0.00434,0.00487,0.00583,0.00834,0,0,0,0,0,0,0.00424,0.00478,0.00572,0.0082,0,0,0,0,0,0,0.00428,0.00481,0.00577,0.00827,0,0,0,0,0,0,0.00432,0.00486,0.00581,0.00833,0,0,0,0,0,0,0.00435,0.0049,0.00586,0.0084,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00891,0.01023,0.01333,0.01478,0,0,0,0,0,0,0.00886,0.01017,0.01326,0.0147,0,0,0,0,0,0,0.0089,0.01022,0.01332,0.01476,0,0,0,0,0,0,0.00887,0.01018,0.01328,0.01471,0,0,0,0,0,0,0.00889,0.01021,0.01331,0.01475,0,0,0,0,0,0,0.00891,0.01023,0.01334,0.01478,0,0,0,0,0,0,0.00893,0.01025,0.01337,0.01482,0,0,0,0,0,0,0.07206,0.12572,0.12615,0.27042,0,0,0,0,0,0,0.06948,0.12456,0.12482,0.26791,0,0,0,0,0,0,0.07098,0.13713,0.13643,0.30571,0,0,0,0,0,0,0.07345,0.14552,0.14367,0.32149,0,0,0,0,0,0,0.06525,0.13052,0.12942,0.29622,0,0,0,0,0,0,0.0681,0.13603,0.13434,0.3049,0,0,0,0,0,0,0.06732,0.13151,0.13009,0.29362,0,0,0,0,0,0,0.07348,0.14044,0.13743,0.3051,0,0,0,0,0,0,0.06785,0.12633,0.12362,0.26931,0,0,0,0,0,0,0.00141,0.0025,0.00348,0.00666,0,0,0,0,0,0,0.00132,0.00232,0.00322,0.00602,0,0,0,0,0,0,0.00138,0.00245,0.00341,0.00649,0,0,0,0,0,0,0.00144,0.00257,0.0036,0.00694,0,0,0,0,0,0,0.00109,0.00188,0.00255,0.00432,0,0,0,0,0,0,0.00113,0.00199,0.00268,0.00468,0,0,0,0,0,0,0.00108,0.00187,0.00253,0.00424,0,0,0,0,0,0,0.0012,0.0021,0.00288,0.00515,0,0,0,0,0,0,0.0011,0.0019,0.00257,0.00431,0,0,0,0,0,0,0.02354,0.02602,0.02829,0.03557,0,0,0,0,0,0,0.02401,0.02626,0.02831,0.03467,0,0,0,0,0,0,0.0262,0.02862,0.03086,0.03791,0,0,0,0,0,0,0.02222,0.02481,0.02721,0.03492,0,0,0,0,0,0,0.02501,0.02671,0.02818,0.03209,0,0,0,0,0,0,0.02297,0.02495,0.02637,0.03083,0,0,0,0,0,0,0.02295,0.02463,0.02606,0.02984,0,0,0,0,0,0,0.0243,0.02628,0.02803,0.03313,0,0,0,0,0,0,0.02393,0.02563,0.02707,0.0309,0,0,0,0,0,0,0.00541,0.0076,0.00962,0.01606,0,0,0,0,0,0,0.00529,0.00729,0.0091,0.01473,0,0,0,0,0,0,0.0057,0.00785,0.00983,0.01607,0,0,0,0,0,0,0.00533,0.00761,0.00974,0.01656,0,0,0,0,0,0,0.00497,0.00648,0.00777,0.01123,0,0,0,0,0,0,0.0048,0.00648,0.00781,0.01175,0,0,0,0,0,0,0.00469,0.00617,0.00743,0.01078,0,0,0,0,0,0,0.0051,0.00685,0.0084,0.01292,0,0,0,0,0,0,0.00484,0.00635,0.00762,0.01101,0,0,0,0,0,0,0.00824,0.0073,0.00245,0.00253,0,0,0,0,0,0,0.00831,0.00736,0.00247,0.00255,0,0,0,0,0,0,0.00843,0.00746,0.00251,0.00259,0,0,0,0,0,0,0.00824,0.00729,0.00245,0.00253,0,0,0,0,0,0,0.00847,0.00749,0.00251,0.00257,0,0,0,0,0,0,0.00833,0.00739,0.00247,0.00254,0,0,0,0,0,0,0.00841,0.00743,0.00249,0.00255,0,0,0,0,0,0,0.0084,0.00743,0.00249,0.00256,0,0,0,0,0,0,0.00828,0.00732,0.00245,0.00252,0,0,0,0,0,0,0.05871,0.08831,0.12093,0.19643,0,0,0,0,0,0,0.04982,0.078,0.10868,0.17888,0,0,0,0,0,0,0.05751,0.09267,0.12909,0.21532,0,0,0,0,0,0,0.06458,0.10288,0.14222,0.23284,0,0,0,0,0,0,0.02958,0.05926,0.089,0.15278,0,0,0,0,0,0,0.03428,0.06739,0.09728,0.16751,0,0,0,0,0,0,0.02817,0.05714,0.08626,0.14767,0,0,0,0,0,0,0.03969,0.0699,0.10063,0.16926,0,0,0,0,0,0,0.02788,0.0536,0.07928,0.13148,0,0,0,0,0 +Small SUV,PH40E,2015,0,0,0.02114,0.02163,0.02227,0.02375,0,0,0,0,0,0,0.02177,0.02222,0.02279,0.02408,0,0,0,0,0,0,0.02384,0.02432,0.02495,0.0264,0,0,0,0,0,0,0.01975,0.02027,0.02095,0.02254,0,0,0,0,0,0,0.02319,0.0235,0.02388,0.02467,0,0,0,0,0,0,0.02109,0.02142,0.02185,0.02275,0,0,0,0,0,0,0.02115,0.02145,0.02182,0.02258,0,0,0,0,0,0,0.02228,0.02265,0.02313,0.02416,0,0,0,0,0,0,0.02209,0.02239,0.02276,0.02352,0,0,0,0,0,0,0.01769,0.01184,0.01086,0.01351,0,0,0,0,0,0,0.01621,0.01102,0.01029,0.01277,0,0,0,0,0,0,0.01757,0.01284,0.012,0.01516,0,0,0,0,0,0,0.01894,0.01391,0.01297,0.01629,0,0,0,0,0,0,0.01218,0.0099,0.00989,0.01242,0,0,0,0,0,0,0.01354,0.01069,0.01056,0.01329,0,0,0,0,0,0,0.01207,0.00978,0.00983,0.01228,0,0,0,0,0,0,0.01427,0.01076,0.01036,0.01294,0,0,0,0,0,0,0.01184,0.00903,0.00885,0.01086,0,0,0,0,0,0,1.06585,1.87228,2.5264,3.37666,0,0,0,0,0,0,1.06133,1.8782,2.54837,3.39425,0,0,0,0,0,0,1.09386,2.0725,2.88372,3.91217,0,0,0,0,0,0,1.16667,2.21507,3.08998,4.16638,0,0,0,0,0,0,1.04316,2.06494,2.89829,3.88669,0,0,0,0,0,0,1.0728,2.10017,2.95575,3.98335,0,0,0,0,0,0,1.08737,2.13373,2.98394,3.98315,0,0,0,0,0,0,1.07203,2.03104,2.80168,3.74498,0,0,0,0,0,0,0.97714,1.82965,2.49076,3.28714,0,0,0,0,0,0,206.172,207.35138,209.28388,220.83232,0,0,0,0,0,0,207.8999,208.94056,210.67931,221.99325,0,0,0,0,0,0,210.77627,211.89723,213.75599,225.38035,0,0,0,0,0,0,206.03672,207.17221,209.05229,220.5159,0,0,0,0,0,0,211.59306,212.15653,213.22582,223.6341,0,0,0,0,0,0,208.8257,208.84306,210.10747,220.68251,0,0,0,0,0,0,210.09123,210.604,211.60344,221.84049,0,0,0,0,0,0,209.86266,210.63227,211.99093,222.78494,0,0,0,0,0,0,206.78067,207.43631,208.61466,218.98934,0,0,0,0,0,0,0.00283,0.00324,0.00385,0.00537,0,0,0,0,0,0,0.00283,0.00325,0.00385,0.00536,0,0,0,0,0,0,0.00288,0.00329,0.0039,0.00542,0,0,0,0,0,0,0.00277,0.00318,0.00378,0.00528,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.0054,0,0,0,0,0,0,0.00281,0.00321,0.00381,0.00531,0,0,0,0,0,0,0.00283,0.00324,0.00384,0.00536,0,0,0,0,0,0,0.00286,0.00327,0.00387,0.0054,0,0,0,0,0,0,0.00288,0.0033,0.00391,0.00545,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01352,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01351,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01344,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.0135,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01346,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01349,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01352,0,0,0,0,0,0,0.00894,0.0104,0.01338,0.01355,0,0,0,0,0,0,0.06399,0.07869,0.11485,0.16359,0,0,0,0,0,0,0.06373,0.07766,0.11367,0.16186,0,0,0,0,0,0,0.06444,0.08526,0.12396,0.17958,0,0,0,0,0,0,0.06723,0.09016,0.13093,0.18936,0,0,0,0,0,0,0.05908,0.0795,0.11696,0.17082,0,0,0,0,0,0,0.06201,0.08307,0.1218,0.17721,0,0,0,0,0,0,0.06053,0.07996,0.11781,0.17092,0,0,0,0,0,0,0.06637,0.08557,0.12471,0.17928,0,0,0,0,0,0,0.06136,0.07675,0.11198,0.15963,0,0,0,0,0,0,0.00135,0.00221,0.00318,0.00524,0,0,0,0,0,0,0.00128,0.00209,0.00299,0.00485,0,0,0,0,0,0,0.00132,0.00217,0.00312,0.00514,0,0,0,0,0,0,0.00136,0.00224,0.00324,0.00539,0,0,0,0,0,0,0.0011,0.00178,0.00249,0.00382,0,0,0,0,0,0,0.00114,0.00184,0.00259,0.00403,0,0,0,0,0,0,0.00109,0.00177,0.00248,0.00378,0,0,0,0,0,0,0.00119,0.00194,0.00274,0.00433,0,0,0,0,0,0,0.00112,0.00181,0.00252,0.00384,0,0,0,0,0,0,0.02336,0.02527,0.0275,0.03234,0,0,0,0,0,0,0.02389,0.02567,0.02771,0.03204,0,0,0,0,0,0,0.02602,0.0279,0.03009,0.03483,0,0,0,0,0,0,0.02199,0.02395,0.02626,0.03137,0,0,0,0,0,0,0.02502,0.02645,0.02801,0.03098,0,0,0,0,0,0,0.02307,0.02446,0.02612,0.02939,0,0,0,0,0,0,0.02297,0.02439,0.02592,0.02882,0,0,0,0,0,0,0.02425,0.02586,0.02765,0.03129,0,0,0,0,0,0,0.02395,0.02539,0.02694,0.02986,0,0,0,0,0,0,0.00526,0.00695,0.00892,0.0132,0,0,0,0,0,0,0.00519,0.00677,0.00857,0.0124,0,0,0,0,0,0,0.00555,0.00722,0.00915,0.01334,0,0,0,0,0,0,0.00513,0.00686,0.0089,0.01342,0,0,0,0,0,0,0.00498,0.00624,0.00762,0.01025,0,0,0,0,0,0,0.00482,0.00611,0.00758,0.01048,0,0,0,0,0,0,0.00471,0.00596,0.00732,0.00988,0,0,0,0,0,0,0.00506,0.00648,0.00807,0.01129,0,0,0,0,0,0,0.00486,0.00614,0.00751,0.01009,0,0,0,0,0,0,0.00595,0.002,0.00201,0.00213,0,0,0,0,0,0,0.006,0.00201,0.00203,0.00214,0,0,0,0,0,0,0.00609,0.00204,0.00206,0.00217,0,0,0,0,0,0,0.00595,0.00199,0.00201,0.00212,0,0,0,0,0,0,0.00611,0.00204,0.00205,0.00215,0,0,0,0,0,0,0.00603,0.00201,0.00202,0.00212,0,0,0,0,0,0,0.00607,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00606,0.00203,0.00204,0.00214,0,0,0,0,0,0,0.00597,0.002,0.00201,0.00211,0,0,0,0,0,0,0.04424,0.06581,0.10044,0.14844,0,0,0,0,0,0,0.03937,0.06001,0.09344,0.13789,0,0,0,0,0,0,0.04392,0.07025,0.10941,0.16373,0,0,0,0,0,0,0.0477,0.07595,0.1177,0.17568,0,0,0,0,0,0,0.02657,0.0497,0.08413,0.12553,0,0,0,0,0,0,0.03069,0.05425,0.09041,0.13525,0,0,0,0,0,0,0.02571,0.04828,0.08234,0.12249,0,0,0,0,0,0,0.03299,0.05606,0.09077,0.13473,0,0,0,0,0,0,0.02537,0.04518,0.07533,0.11005,0,0,0,0 +Small SUV,PH40E,2020,0,0,0,0.02102,0.02144,0.02186,0.02328,0,0,0,0,0,0,0.02167,0.02204,0.02242,0.02367,0,0,0,0,0,0,0.02372,0.02413,0.02454,0.02594,0,0,0,0,0,0,0.01963,0.02006,0.02051,0.02202,0,0,0,0,0,0,0.02313,0.02339,0.02364,0.02444,0,0,0,0,0,0,0.02101,0.0213,0.02157,0.02248,0,0,0,0,0,0,0.02109,0.02134,0.02158,0.02236,0,0,0,0,0,0,0.02219,0.02251,0.02282,0.02385,0,0,0,0,0,0,0.02203,0.02228,0.02252,0.0233,0,0,0,0,0,0,0.01354,0.0098,0.00833,0.01062,0,0,0,0,0,0,0.01217,0.00901,0.00778,0.00999,0,0,0,0,0,0,0.01345,0.01051,0.00909,0.01202,0,0,0,0,0,0,0.0146,0.01144,0.00987,0.01298,0,0,0,0,0,0,0.00842,0.00765,0.00705,0.00961,0,0,0,0,0,0,0.00942,0.00837,0.00763,0.01038,0,0,0,0,0,0,0.00823,0.00753,0.00699,0.00949,0,0,0,0,0,0,0.01032,0.00854,0.0076,0.01008,0,0,0,0,0,0,0.00806,0.00694,0.0063,0.00827,0,0,0,0,0,0,0.841,1.26915,1.60175,2.45808,0,0,0,0,0,0,0.83235,1.26237,1.59891,2.46352,0,0,0,0,0,0,0.86647,1.39384,1.80633,2.90832,0,0,0,0,0,0,0.92767,1.49841,1.95027,3.11915,0,0,0,0,0,0,0.80832,1.3525,1.762,2.85111,0,0,0,0,0,0,0.8267,1.38518,1.81173,2.94929,0,0,0,0,0,0,0.83997,1.39856,1.8175,2.92159,0,0,0,0,0,0,0.83593,1.34562,1.72839,2.74289,0,0,0,0,0,0,0.75335,1.20003,1.5207,2.36432,0,0,0,0,0,0,175.01937,176.18597,178.13058,193.50908,0,0,0,0,0,0,176.41093,177.4624,179.2388,194.39966,0,0,0,0,0,0,178.88919,180.01108,181.89672,197.42854,0,0,0,0,0,0,174.89643,176.02686,177.9263,193.21809,0,0,0,0,0,0,179.2922,179.94667,181.1386,195.41197,0,0,0,0,0,0,176.44505,177.21392,178.57379,192.96723,0,0,0,0,0,0,178.0014,178.61222,179.74153,193.81421,0,0,0,0,0,0,177.93342,178.75948,180.20369,194.85283,0,0,0,0,0,0,175.24562,175.97234,177.25203,191.40792,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00507,0,0,0,0,0,0,0.00289,0.00327,0.00385,0.00506,0,0,0,0,0,0,0.00294,0.00332,0.0039,0.00512,0,0,0,0,0,0,0.00283,0.00321,0.00378,0.00498,0,0,0,0,0,0,0.00293,0.0033,0.00388,0.0051,0,0,0,0,0,0,0.00286,0.00324,0.00381,0.00501,0,0,0,0,0,0,0.00289,0.00327,0.00384,0.00506,0,0,0,0,0,0,0.00292,0.00329,0.00387,0.00509,0,0,0,0,0,0,0.00294,0.00332,0.00391,0.00514,0,0,0,0,0,0,0.0089,0.01036,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01036,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00892,0.01037,0.01335,0.01335,0,0,0,0,0,0,0.00893,0.0104,0.01337,0.01337,0,0,0,0,0,0,0.04184,0.06745,0.09067,0.12611,0,0,0,0,0,0,0.04131,0.06645,0.0895,0.12453,0,0,0,0,0,0,0.04219,0.07277,0.09732,0.13872,0,0,0,0,0,0,0.04399,0.07733,0.10334,0.14733,0,0,0,0,0,0,0.03732,0.06705,0.09046,0.13008,0,0,0,0,0,0,0.03946,0.07054,0.09495,0.13604,0,0,0,0,0,0,0.03808,0.06768,0.09146,0.13044,0,0,0,0,0,0,0.04216,0.07285,0.09759,0.13761,0,0,0,0,0,0,0.03836,0.06487,0.08696,0.12108,0,0,0,0,0,0,0.00116,0.00187,0.00248,0.00444,0,0,0,0,0,0,0.0011,0.00178,0.00234,0.00414,0,0,0,0,0,0,0.00114,0.00184,0.00244,0.00437,0,0,0,0,0,0,0.00117,0.00189,0.00252,0.00456,0,0,0,0,0,0,0.00096,0.00152,0.00196,0.00332,0,0,0,0,0,0,0.00098,0.00157,0.00204,0.00349,0,0,0,0,0,0,0.00096,0.00152,0.00195,0.00329,0,0,0,0,0,0,0.00103,0.00165,0.00215,0.00373,0,0,0,0,0,0,0.00098,0.00155,0.00199,0.00334,0,0,0,0,0,0,0.02292,0.02452,0.02594,0.03056,0,0,0,0,0,0,0.02349,0.02497,0.02628,0.03047,0,0,0,0,0,0,0.0256,0.02716,0.02856,0.0331,0,0,0,0,0,0,0.02154,0.02317,0.02464,0.02948,0,0,0,0,0,0,0.02471,0.02591,0.02689,0.02992,0,0,0,0,0,0,0.02263,0.02388,0.02493,0.02822,0,0,0,0,0,0,0.02267,0.02386,0.02482,0.02778,0,0,0,0,0,0,0.0239,0.02524,0.02638,0.02998,0,0,0,0,0,0,0.02364,0.02485,0.02582,0.02881,0,0,0,0,0,0,0.00487,0.00628,0.00754,0.01162,0,0,0,0,0,0,0.00484,0.00615,0.0073,0.01101,0,0,0,0,0,0,0.00517,0.00656,0.00779,0.01181,0,0,0,0,0,0,0.00472,0.00617,0.00747,0.01175,0,0,0,0,0,0,0.00471,0.00576,0.00663,0.00931,0,0,0,0,0,0,0.0045,0.00561,0.00654,0.00945,0,0,0,0,0,0,0.00444,0.00549,0.00634,0.00896,0,0,0,0,0,0,0.00475,0.00593,0.00694,0.01013,0,0,0,0,0,0,0.00459,0.00566,0.00652,0.00916,0,0,0,0,0,0,0.00168,0.0017,0.00171,0.00186,0,0,0,0,0,0,0.0017,0.00171,0.00173,0.00187,0,0,0,0,0,0,0.00172,0.00173,0.00175,0.0019,0,0,0,0,0,0,0.00168,0.00169,0.00171,0.00186,0,0,0,0,0,0,0.00173,0.00173,0.00174,0.00188,0,0,0,0,0,0,0.0017,0.00171,0.00172,0.00186,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00187,0,0,0,0,0,0,0.00171,0.00172,0.00173,0.00188,0,0,0,0,0,0,0.00169,0.00169,0.00171,0.00184,0,0,0,0,0,0,0.03737,0.05506,0.07767,0.12087,0,0,0,0,0,0,0.03293,0.04958,0.071,0.11162,0,0,0,0,0,0,0.03715,0.05806,0.08319,0.13463,0,0,0,0,0,0,0.04049,0.06309,0.0901,0.1451,0,0,0,0,0,0,0.02104,0.03831,0.05887,0.10052,0,0,0,0,0,0,0.02414,0.04264,0.06457,0.1094,0,0,0,0,0,0,0.02018,0.03708,0.05735,0.09782,0,0,0,0,0,0,0.02698,0.04475,0.06615,0.10872,0,0,0,0,0,0,0.01982,0.03467,0.05259,0.08655,0,0,0 +Small SUV,PH40E,2025,0,0,0,0,0.02081,0.02106,0.02132,0.02249,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02297,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02517,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02118,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02398,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02196,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02191,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02327,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02285,0,0,0,0,0,0,0.0109,0.00714,0.00577,0.00809,0,0,0,0,0,0,0.00949,0.00634,0.0052,0.00746,0,0,0,0,0,0,0.01077,0.00744,0.00611,0.00905,0,0,0,0,0,0,0.01185,0.00818,0.00669,0.00983,0,0,0,0,0,0,0.00562,0.00454,0.00403,0.00667,0,0,0,0,0,0,0.00663,0.00518,0.00452,0.00734,0,0,0,0,0,0,0.00538,0.00439,0.00393,0.00653,0,0,0,0,0,0,0.00754,0.00552,0.00469,0.00725,0,0,0,0,0,0,0.00526,0.00408,0.00358,0.00568,0,0,0,0,0,0,0.55924,0.81728,1.03671,1.73986,0,0,0,0,0,0,0.54005,0.79705,1.0158,1.72514,0,0,0,0,0,0,0.56885,0.88349,1.14951,2.05204,0,0,0,0,0,0,0.61468,0.95801,1.25055,2.21497,0,0,0,0,0,0,0.48459,0.80212,1.05558,1.94563,0,0,0,0,0,0,0.50553,0.83376,1.09982,2.03116,0,0,0,0,0,0,0.5012,0.82787,1.08717,1.99163,0,0,0,0,0,0,0.52057,0.82155,1.0634,1.89499,0,0,0,0,0,0,0.45222,0.71367,0.91346,1.60498,0,0,0,0,0,0,143.04079,143.7338,145.1575,163.6042,0,0,0,0,0,0,144.10797,144.70004,145.97166,164.23295,0,0,0,0,0,0,146.16792,146.81604,148.18102,166.85421,0,0,0,0,0,0,142.93307,143.59624,144.98185,163.34548,0,0,0,0,0,0,146.22769,146.47435,147.22027,164.67183,0,0,0,0,0,0,143.97903,144.32899,145.22989,162.74385,0,0,0,0,0,0,145.158,145.36996,146.06327,163.29545,0,0,0,0,0,0,145.21935,145.6155,146.58866,164.38042,0,0,0,0,0,0,142.95575,143.26983,144.09837,161.34947,0,0,0,0,0,0,0.00291,0.00327,0.00384,0.00502,0,0,0,0,0,0,0.00291,0.00327,0.00383,0.00501,0,0,0,0,0,0,0.00296,0.00332,0.00388,0.00506,0,0,0,0,0,0,0.00285,0.0032,0.00377,0.00493,0,0,0,0,0,0,0.00295,0.0033,0.00387,0.00504,0,0,0,0,0,0,0.00288,0.00324,0.0038,0.00496,0,0,0,0,0,0,0.00291,0.00326,0.00383,0.00501,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00504,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00509,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.0103,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01031,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01335,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0259,0.03877,0.05185,0.08807,0,0,0,0,0,0,0.02519,0.03773,0.05061,0.08644,0,0,0,0,0,0,0.02591,0.04107,0.05476,0.09685,0,0,0,0,0,0,0.02708,0.04363,0.05811,0.10311,0,0,0,0,0,0,0.02134,0.03579,0.04841,0.08845,0,0,0,0,0,0,0.02312,0.03833,0.05162,0.09337,0,0,0,0,0,0,0.02175,0.03618,0.04899,0.08861,0,0,0,0,0,0,0.02467,0.03969,0.05316,0.09423,0,0,0,0,0,0,0.02178,0.0347,0.04665,0.08168,0,0,0,0,0,0,0.00074,0.00117,0.00155,0.0032,0,0,0,0,0,0,0.00071,0.00111,0.00146,0.00299,0,0,0,0,0,0,0.00073,0.00115,0.00152,0.00315,0,0,0,0,0,0,0.00075,0.00119,0.00158,0.00329,0,0,0,0,0,0,0.00061,0.00095,0.00123,0.0024,0,0,0,0,0,0,0.00063,0.00098,0.00127,0.00252,0,0,0,0,0,0,0.00061,0.00095,0.00122,0.00238,0,0,0,0,0,0,0.00066,0.00103,0.00135,0.00269,0,0,0,0,0,0,0.00063,0.00097,0.00125,0.00241,0,0,0,0,0,0,0.02203,0.02299,0.02386,0.02774,0,0,0,0,0,0,0.02264,0.02353,0.02434,0.02787,0,0,0,0,0,0,0.02472,0.02566,0.02652,0.03033,0,0,0,0,0,0,0.02063,0.02161,0.02252,0.02655,0,0,0,0,0,0,0.024,0.02472,0.02533,0.02794,0,0,0,0,0,0,0.02189,0.02265,0.0233,0.02611,0,0,0,0,0,0,0.02196,0.02268,0.02327,0.02583,0,0,0,0,0,0,0.02312,0.02392,0.02463,0.02769,0,0,0,0,0,0,0.02292,0.02365,0.02425,0.02683,0,0,0,0,0,0,0.00408,0.00493,0.0057,0.00913,0,0,0,0,0,0,0.00409,0.00488,0.00559,0.00872,0,0,0,0,0,0,0.0044,0.00523,0.00599,0.00936,0,0,0,0,0,0,0.00392,0.00479,0.00559,0.00916,0,0,0,0,0,0,0.00408,0.00471,0.00525,0.00756,0,0,0,0,0,0,0.00385,0.00451,0.00509,0.00758,0,0,0,0,0,0,0.00382,0.00445,0.00497,0.00724,0,0,0,0,0,0,0.00406,0.00477,0.00539,0.00811,0,0,0,0,0,0,0.00395,0.00459,0.00513,0.00741,0,0,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00139,0.00139,0.00141,0.00158,0,0,0,0,0,0,0.00141,0.00141,0.00143,0.00161,0,0,0,0,0,0,0.00138,0.00138,0.0014,0.00157,0,0,0,0,0,0,0.00141,0.00141,0.00142,0.00159,0,0,0,0,0,0,0.00139,0.00139,0.0014,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00157,0,0,0,0,0,0,0.0014,0.0014,0.00141,0.00158,0,0,0,0,0,0,0.00138,0.00138,0.00139,0.00155,0,0,0,0,0,0,0.03194,0.0431,0.05818,0.0959,0,0,0,0,0,0,0.0274,0.03758,0.05144,0.08685,0,0,0,0,0,0,0.0315,0.04421,0.06051,0.10527,0,0,0,0,0,0,0.03483,0.04869,0.06637,0.11434,0,0,0,0,0,0,0.01507,0.02431,0.03602,0.07183,0,0,0,0,0,0,0.01823,0.02838,0.04122,0.07993,0,0,0,0,0,0,0.01419,0.02313,0.03456,0.06937,0,0,0,0,0,0,0.02115,0.03124,0.0442,0.08108,0,0,0,0,0,0,0.0139,0.02181,0.03201,0.06128,0,0 +Small SUV,PH40E,2030,0,0,0,0,0,0.02081,0.02106,0.02132,0.02205,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02258,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.02473,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02072,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02372,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02168,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02166,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02294,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.0226,0,0,0,0,0,0,0.01013,0.00639,0.00509,0.00653,0,0,0,0,0,0,0.00871,0.00559,0.00452,0.00589,0,0,0,0,0,0,0.00997,0.00657,0.00532,0.00709,0,0,0,0,0,0,0.01103,0.00725,0.00585,0.00775,0,0,0,0,0,0,0.00482,0.00367,0.00325,0.00471,0,0,0,0,0,0,0.00581,0.00428,0.0037,0.0053,0,0,0,0,0,0,0.00456,0.00351,0.00314,0.00458,0,0,0,0,0,0,0.00674,0.00468,0.00393,0.00541,0,0,0,0,0,0,0.00446,0.00329,0.00288,0.00404,0,0,0,0,0,0,0.48616,0.71062,0.90973,1.34019,0,0,0,0,0,0,0.46446,0.68746,0.88496,1.31216,0,0,0,0,0,0,0.49149,0.76317,1.00253,1.54473,0,0,0,0,0,0,0.5329,0.8299,1.0933,1.67533,0,0,0,0,0,0,0.40116,0.67308,0.89775,1.40885,0,0,0,0,0,0,0.42241,0.70399,0.9404,1.48085,0,0,0,0,0,0,0.41389,0.69378,0.92356,1.44225,0,0,0,0,0,0,0.439,0.69848,0.91445,1.40145,0,0,0,0,0,0,0.37472,0.59978,0.77734,1.17461,0,0,0,0,0,0,130.18226,131.40941,133.46247,144.89139,0,0,0,0,0,0,131.12337,132.26249,134.17499,145.37962,0,0,0,0,0,0,133.01295,134.21195,136.22441,147.73491,0,0,0,0,0,0,130.08158,131.28127,133.29867,144.65658,0,0,0,0,0,0,132.95067,133.78245,135.20198,145.53711,0,0,0,0,0,0,130.93814,131.85527,133.41251,143.90688,0,0,0,0,0,0,131.97094,132.76672,134.13123,144.30442,0,0,0,0,0,0,132.07723,133.04163,134.67384,145.3795,0,0,0,0,0,0,129.98753,130.86696,132.34773,142.62728,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.00291,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00503,0,0,0,0,0,0,0.00285,0.00319,0.00376,0.0049,0,0,0,0,0,0,0.00294,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00288,0.00322,0.00379,0.00493,0,0,0,0,0,0,0.0029,0.00325,0.00382,0.00498,0,0,0,0,0,0,0.00293,0.00328,0.00385,0.00501,0,0,0,0,0,0,0.00295,0.0033,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01029,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01034,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.0103,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01033,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01035,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01038,0.01337,0.01337,0,0,0,0,0,0,0.02052,0.02997,0.04132,0.06464,0,0,0,0,0,0,0.01975,0.02892,0.04005,0.06296,0,0,0,0,0,0,0.02032,0.03135,0.04323,0.06991,0,0,0,0,0,0,0.0212,0.03323,0.0458,0.07428,0,0,0,0,0,0,0.01587,0.02623,0.03704,0.06165,0,0,0,0,0,0,0.0175,0.02844,0.03986,0.06576,0,0,0,0,0,0,0.01619,0.02651,0.03747,0.06185,0,0,0,0,0,0,0.01868,0.0295,0.04108,0.06666,0,0,0,0,0,0,0.01618,0.02549,0.0357,0.05734,0,0,0,0,0,0,0.00074,0.00117,0.00155,0.00255,0,0,0,0,0,0,0.00071,0.00111,0.00146,0.00238,0,0,0,0,0,0,0.00073,0.00115,0.00152,0.0025,0,0,0,0,0,0,0.00075,0.00118,0.00157,0.00261,0,0,0,0,0,0,0.00061,0.00095,0.00123,0.00192,0,0,0,0,0,0,0.00063,0.00098,0.00127,0.00202,0,0,0,0,0,0,0.00061,0.00095,0.00122,0.00191,0,0,0,0,0,0,0.00066,0.00103,0.00135,0.00215,0,0,0,0,0,0,0.00063,0.00097,0.00125,0.00194,0,0,0,0,0,0,0.02203,0.02298,0.02386,0.02622,0,0,0,0,0,0,0.02264,0.02353,0.02434,0.02649,0,0,0,0,0,0,0.02471,0.02565,0.02652,0.02884,0,0,0,0,0,0,0.02063,0.0216,0.02252,0.02498,0,0,0,0,0,0,0.024,0.02472,0.02533,0.02689,0,0,0,0,0,0,0.02189,0.02264,0.0233,0.02499,0,0,0,0,0,0,0.02196,0.02267,0.02327,0.02481,0,0,0,0,0,0,0.02311,0.02392,0.02463,0.02648,0,0,0,0,0,0,0.02292,0.02364,0.02425,0.02579,0,0,0,0,0,0,0.00407,0.00492,0.0057,0.00779,0,0,0,0,0,0,0.00408,0.00487,0.00559,0.00749,0,0,0,0,0,0,0.00439,0.00522,0.00599,0.00804,0,0,0,0,0,0,0.00392,0.00478,0.00559,0.00777,0,0,0,0,0,0,0.00407,0.00471,0.00525,0.00663,0,0,0,0,0,0,0.00384,0.00451,0.00509,0.00659,0,0,0,0,0,0,0.00381,0.00444,0.00497,0.00633,0,0,0,0,0,0,0.00405,0.00476,0.00539,0.00703,0,0,0,0,0,0,0.00395,0.00459,0.00513,0.00649,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.0014,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00142,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00139,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.0014,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00139,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.0014,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00137,0,0,0,0,0,0,0.03011,0.03952,0.05312,0.08021,0,0,0,0,0,0,0.02556,0.03403,0.04637,0.07114,0,0,0,0,0,0,0.02958,0.04009,0.05463,0.08552,0,0,0,0,0,0,0.03287,0.04438,0.06021,0.0936,0,0,0,0,0,0,0.01318,0.0203,0.03018,0.05228,0,0,0,0,0,0,0.01633,0.02426,0.03523,0.05969,0,0,0,0,0,0,0.0123,0.01914,0.02873,0.05007,0,0,0,0,0,0,0.01925,0.02731,0.03856,0.06265,0,0,0,0,0,0,0.01204,0.01814,0.02675,0.04491,0 +Small SUV,PH40E,2035,0,0,0,0,0,0,0.02081,0.02106,0.02132,0.02191,0,0,0,0,0,0,0.02148,0.0217,0.02193,0.02246,0,0,0,0,0,0,0.02352,0.02376,0.02401,0.0246,0,0,0,0,0,0,0.01941,0.01967,0.01994,0.02057,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02364,0,0,0,0,0,0,0.02085,0.02103,0.0212,0.02158,0,0,0,0,0,0,0.02095,0.0211,0.02125,0.02158,0,0,0,0,0,0,0.02203,0.02222,0.02241,0.02284,0,0,0,0,0,0,0.02189,0.02204,0.02219,0.02252,0,0,0,0,0,0,0.01008,0.00638,0.0051,0.00601,0,0,0,0,0,0,0.00866,0.00558,0.00453,0.00537,0,0,0,0,0,0,0.00991,0.00656,0.00533,0.00642,0,0,0,0,0,0,0.01097,0.00724,0.00586,0.00703,0,0,0,0,0,0,0.00479,0.00367,0.00325,0.00403,0,0,0,0,0,0,0.00578,0.00428,0.00371,0.00458,0,0,0,0,0,0,0.00454,0.00351,0.00314,0.0039,0,0,0,0,0,0,0.0067,0.00468,0.00394,0.00477,0,0,0,0,0,0,0.00444,0.00329,0.00288,0.00348,0,0,0,0,0,0,0.48635,0.71119,0.9101,1.21773,0,0,0,0,0,0,0.4648,0.68804,0.88528,1.18494,0,0,0,0,0,0,0.49191,0.76389,1.00291,1.38489,0,0,0,0,0,0,0.53336,0.83068,1.0937,1.50454,0,0,0,0,0,0,0.40203,0.67378,0.89797,1.23806,0,0,0,0,0,0,0.42324,0.70472,0.94064,1.30526,0,0,0,0,0,0,0.41481,0.69448,0.92376,1.26748,0,0,0,0,0,0,0.43968,0.6991,0.91471,1.24605,0,0,0,0,0,0,0.37542,0.60029,0.77754,1.04003,0,0,0,0,0,0,130.15524,131.41438,133.47282,138.98054,0,0,0,0,0,0,131.09791,132.26712,134.18438,139.42462,0,0,0,0,0,0,132.9862,134.21683,136.23435,141.69584,0,0,0,0,0,0,130.05463,131.28609,133.30856,138.75323,0,0,0,0,0,0,132.93095,133.7857,135.2087,139.49445,0,0,0,0,0,0,130.91686,131.85882,133.42,137.95791,0,0,0,0,0,0,131.95186,132.76976,134.13747,138.30722,0,0,0,0,0,0,132.05505,133.04541,134.68169,139.37858,0,0,0,0,0,0,129.96789,130.87053,132.35502,136.71497,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00499,0,0,0,0,0,0,0.0029,0.00326,0.00383,0.00499,0,0,0,0,0,0,0.00295,0.0033,0.00388,0.00504,0,0,0,0,0,0,0.00284,0.00319,0.00376,0.00491,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00502,0,0,0,0,0,0,0.00287,0.00322,0.00379,0.00494,0,0,0,0,0,0,0.0029,0.00325,0.00383,0.00498,0,0,0,0,0,0,0.00292,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.0089,0.01035,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00891,0.01036,0.01334,0.01334,0,0,0,0,0,0,0.00886,0.01031,0.01327,0.01327,0,0,0,0,0,0,0.0089,0.01035,0.01333,0.01333,0,0,0,0,0,0,0.00887,0.01032,0.01328,0.01328,0,0,0,0,0,0,0.0089,0.01034,0.01332,0.01332,0,0,0,0,0,0,0.00891,0.01037,0.01334,0.01334,0,0,0,0,0,0,0.00893,0.01039,0.01337,0.01337,0,0,0,0,0,0,0.0205,0.03003,0.04134,0.05657,0,0,0,0,0,0,0.01974,0.02898,0.04007,0.05486,0,0,0,0,0,0,0.02031,0.03142,0.04325,0.06041,0,0,0,0,0,0,0.0212,0.03331,0.04583,0.06404,0,0,0,0,0,0,0.01588,0.0263,0.03706,0.05218,0,0,0,0,0,0,0.0175,0.02851,0.03988,0.05597,0,0,0,0,0,0,0.01619,0.02658,0.03749,0.05242,0,0,0,0,0,0,0.01868,0.02957,0.0411,0.05697,0,0,0,0,0,0,0.01618,0.02555,0.03572,0.0489,0,0,0,0,0,0,0.00074,0.00117,0.00155,0.00234,0,0,0,0,0,0,0.00071,0.00111,0.00146,0.00219,0,0,0,0,0,0,0.00073,0.00115,0.00152,0.0023,0,0,0,0,0,0,0.00075,0.00118,0.00157,0.0024,0,0,0,0,0,0,0.00061,0.00095,0.00123,0.00177,0,0,0,0,0,0,0.00063,0.00098,0.00127,0.00186,0,0,0,0,0,0,0.00061,0.00095,0.00122,0.00176,0,0,0,0,0,0,0.00066,0.00103,0.00135,0.00198,0,0,0,0,0,0,0.00063,0.00097,0.00125,0.00178,0,0,0,0,0,0,0.02203,0.02298,0.02386,0.02575,0,0,0,0,0,0,0.02264,0.02353,0.02434,0.02605,0,0,0,0,0,0,0.02472,0.02565,0.02652,0.02837,0,0,0,0,0,0,0.02063,0.02161,0.02252,0.02449,0,0,0,0,0,0,0.024,0.02472,0.02533,0.02656,0,0,0,0,0,0,0.02189,0.02264,0.0233,0.02464,0,0,0,0,0,0,0.02196,0.02267,0.02327,0.02448,0,0,0,0,0,0,0.02312,0.02392,0.02463,0.0261,0,0,0,0,0,0,0.02292,0.02364,0.02425,0.02546,0,0,0,0,0,0,0.00408,0.00492,0.0057,0.00737,0,0,0,0,0,0,0.00409,0.00487,0.00559,0.0071,0,0,0,0,0,0,0.0044,0.00522,0.00599,0.00763,0,0,0,0,0,0,0.00392,0.00478,0.00559,0.00733,0,0,0,0,0,0,0.00408,0.00471,0.00525,0.00634,0,0,0,0,0,0,0.00384,0.00451,0.00509,0.00628,0,0,0,0,0,0,0.00381,0.00444,0.00497,0.00604,0,0,0,0,0,0,0.00406,0.00477,0.00539,0.00669,0,0,0,0,0,0,0.00395,0.00459,0.00513,0.0062,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00129,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.00131,0.00136,0,0,0,0,0,0,0.00125,0.00126,0.00128,0.00134,0,0,0,0,0,0,0.00128,0.00129,0.0013,0.00134,0,0,0,0,0,0,0.00126,0.00127,0.00128,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.00129,0.00133,0,0,0,0,0,0,0.00127,0.00128,0.0013,0.00134,0,0,0,0,0,0,0.00125,0.00126,0.00127,0.00132,0,0,0,0,0,0,0.03003,0.03957,0.05316,0.0751,0,0,0,0,0,0,0.0255,0.03408,0.04641,0.06597,0,0,0,0,0,0,0.02951,0.04015,0.05468,0.07883,0,0,0,0,0,0,0.0328,0.04444,0.06026,0.08659,0,0,0,0,0,0,0.01316,0.02034,0.0302,0.0455,0,0,0,0,0,0,0.0163,0.02431,0.03526,0.05266,0,0,0,0,0,0,0.01228,0.01918,0.02875,0.04337,0,0,0,0,0,0,0.01921,0.02736,0.03859,0.05637,0,0,0,0,0,0,0.01202,0.01818,0.02677,0.03936 +Small SUV,PH40E,2040,0,0,0,0,0,0,0,0.02081,0.02106,0.02132,0,0,0,0,0,0,0,0.02148,0.0217,0.02193,0,0,0,0,0,0,0,0.02351,0.02376,0.02401,0,0,0,0,0,0,0,0.01941,0.01967,0.01994,0,0,0,0,0,0,0,0.02299,0.02314,0.0233,0,0,0,0,0,0,0,0.02085,0.02103,0.0212,0,0,0,0,0,0,0,0.02095,0.0211,0.02125,0,0,0,0,0,0,0,0.02203,0.02222,0.02241,0,0,0,0,0,0,0,0.02189,0.02204,0.02219,0,0,0,0,0,0,0,0.01008,0.00638,0.00509,0,0,0,0,0,0,0,0.00867,0.00558,0.00452,0,0,0,0,0,0,0,0.00992,0.00656,0.00532,0,0,0,0,0,0,0,0.01097,0.00724,0.00585,0,0,0,0,0,0,0,0.0048,0.00367,0.00325,0,0,0,0,0,0,0,0.00579,0.00427,0.00371,0,0,0,0,0,0,0,0.00454,0.00351,0.00314,0,0,0,0,0,0,0,0.0067,0.00468,0.00393,0,0,0,0,0,0,0,0.00444,0.00329,0.00288,0,0,0,0,0,0,0,0.48567,0.7107,0.90987,0,0,0,0,0,0,0,0.46413,0.68757,0.88508,0,0,0,0,0,0,0,0.49113,0.76333,1.00267,0,0,0,0,0,0,0,0.5325,0.83008,1.09344,0,0,0,0,0,0,0,0.40132,0.67334,0.89783,0,0,0,0,0,0,0,0.42249,0.70424,0.94049,0,0,0,0,0,0,0,0.41409,0.69404,0.92363,0,0,0,0,0,0,0,0.43896,0.69866,0.91454,0,0,0,0,0,0,0,0.37481,0.59994,0.77741,0,0,0,0,0,0,0,130.14799,131.40506,133.46637,0,0,0,0,0,0,0,131.09118,132.25839,134.1785,0,0,0,0,0,0,0,132.97906,134.20762,136.22808,0,0,0,0,0,0,0,130.0475,131.27681,133.30227,0,0,0,0,0,0,0,132.92599,133.77917,135.20433,0,0,0,0,0,0,0,130.91139,131.85169,133.4153,0,0,0,0,0,0,0,131.94702,132.76349,134.13355,0,0,0,0,0,0,0,132.04928,133.03794,134.67679,0,0,0,0,0,0,0,129.96268,130.86377,132.3506,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.0029,0.00325,0.00383,0,0,0,0,0,0,0,0.00295,0.0033,0.00388,0,0,0,0,0,0,0,0.00284,0.00319,0.00376,0,0,0,0,0,0,0,0.00293,0.00329,0.00386,0,0,0,0,0,0,0,0.00287,0.00322,0.00379,0,0,0,0,0,0,0,0.00289,0.00325,0.00382,0,0,0,0,0,0,0,0.00292,0.00328,0.00386,0,0,0,0,0,0,0,0.00294,0.0033,0.00389,0,0,0,0,0,0,0,0.0089,0.01035,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00891,0.01035,0.01334,0,0,0,0,0,0,0,0.00886,0.0103,0.01327,0,0,0,0,0,0,0,0.0089,0.01035,0.01333,0,0,0,0,0,0,0,0.00887,0.01031,0.01328,0,0,0,0,0,0,0,0.0089,0.01034,0.01332,0,0,0,0,0,0,0,0.00891,0.01036,0.01334,0,0,0,0,0,0,0,0.00893,0.01038,0.01337,0,0,0,0,0,0,0,0.02048,0.02999,0.04132,0,0,0,0,0,0,0,0.01971,0.02894,0.04006,0,0,0,0,0,0,0,0.02029,0.03137,0.04324,0,0,0,0,0,0,0,0.02117,0.03326,0.04581,0,0,0,0,0,0,0,0.01585,0.02626,0.03705,0,0,0,0,0,0,0,0.01748,0.02847,0.03986,0,0,0,0,0,0,0,0.01617,0.02654,0.03748,0,0,0,0,0,0,0,0.01866,0.02953,0.04108,0,0,0,0,0,0,0,0.01616,0.02551,0.03571,0,0,0,0,0,0,0,0.00074,0.00117,0.00155,0,0,0,0,0,0,0,0.00071,0.00111,0.00146,0,0,0,0,0,0,0,0.00073,0.00115,0.00152,0,0,0,0,0,0,0,0.00075,0.00118,0.00157,0,0,0,0,0,0,0,0.00061,0.00095,0.00123,0,0,0,0,0,0,0,0.00063,0.00098,0.00127,0,0,0,0,0,0,0,0.00061,0.00095,0.00122,0,0,0,0,0,0,0,0.00066,0.00103,0.00135,0,0,0,0,0,0,0,0.00063,0.00097,0.00125,0,0,0,0,0,0,0,0.02203,0.02298,0.02386,0,0,0,0,0,0,0,0.02264,0.02353,0.02434,0,0,0,0,0,0,0,0.02471,0.02565,0.02652,0,0,0,0,0,0,0,0.02063,0.0216,0.02252,0,0,0,0,0,0,0,0.024,0.02472,0.02533,0,0,0,0,0,0,0,0.02189,0.02264,0.0233,0,0,0,0,0,0,0,0.02196,0.02267,0.02327,0,0,0,0,0,0,0,0.02311,0.02392,0.02463,0,0,0,0,0,0,0,0.02292,0.02364,0.02425,0,0,0,0,0,0,0,0.00407,0.00492,0.0057,0,0,0,0,0,0,0,0.00408,0.00487,0.00559,0,0,0,0,0,0,0,0.00439,0.00522,0.00599,0,0,0,0,0,0,0,0.00392,0.00478,0.00559,0,0,0,0,0,0,0,0.00408,0.00471,0.00525,0,0,0,0,0,0,0,0.00384,0.00451,0.00509,0,0,0,0,0,0,0,0.00381,0.00444,0.00497,0,0,0,0,0,0,0,0.00405,0.00477,0.00539,0,0,0,0,0,0,0,0.00395,0.00459,0.00513,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00126,0.00127,0.00129,0,0,0,0,0,0,0,0.00128,0.00129,0.00131,0,0,0,0,0,0,0,0.00125,0.00126,0.00128,0,0,0,0,0,0,0,0.00128,0.00129,0.0013,0,0,0,0,0,0,0,0.00126,0.00127,0.00128,0,0,0,0,0,0,0,0.00127,0.00128,0.00129,0,0,0,0,0,0,0,0.00127,0.00128,0.0013,0,0,0,0,0,0,0,0.00125,0.00126,0.00127,0,0,0,0,0,0,0,0.03,0.03952,0.05314,0,0,0,0,0,0,0,0.02547,0.03403,0.04639,0,0,0,0,0,0,0,0.02948,0.0401,0.05465,0,0,0,0,0,0,0,0.03276,0.04438,0.06023,0,0,0,0,0,0,0,0.01314,0.02031,0.03019,0,0,0,0,0,0,0,0.01627,0.02427,0.03524,0,0,0,0,0,0,0,0.01226,0.01915,0.02874,0,0,0,0,0,0,0,0.01919,0.02732,0.03857,0,0,0,0,0,0,0,0.012,0.01815,0.02676 +Small SUV,PH40E,2045,0,0,0,0,0,0,0,0,0.02081,0.02106,0,0,0,0,0,0,0,0,0.02148,0.0217,0,0,0,0,0,0,0,0,0.02351,0.02376,0,0,0,0,0,0,0,0,0.01941,0.01966,0,0,0,0,0,0,0,0,0.02299,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02103,0,0,0,0,0,0,0,0,0.02095,0.0211,0,0,0,0,0,0,0,0,0.02203,0.02222,0,0,0,0,0,0,0,0,0.02189,0.02204,0,0,0,0,0,0,0,0,0.01008,0.00638,0,0,0,0,0,0,0,0,0.00867,0.00558,0,0,0,0,0,0,0,0,0.00992,0.00656,0,0,0,0,0,0,0,0,0.01097,0.00724,0,0,0,0,0,0,0,0,0.0048,0.00367,0,0,0,0,0,0,0,0,0.00578,0.00427,0,0,0,0,0,0,0,0,0.00454,0.00351,0,0,0,0,0,0,0,0,0.0067,0.00468,0,0,0,0,0,0,0,0,0.00444,0.00329,0,0,0,0,0,0,0,0,0.48529,0.71055,0,0,0,0,0,0,0,0,0.46375,0.68743,0,0,0,0,0,0,0,0,0.4907,0.76315,0,0,0,0,0,0,0,0,0.53204,0.82989,0,0,0,0,0,0,0,0,0.40095,0.67318,0,0,0,0,0,0,0,0,0.42211,0.70408,0,0,0,0,0,0,0,0,0.41372,0.69388,0,0,0,0,0,0,0,0,0.43858,0.69851,0,0,0,0,0,0,0,0,0.37449,0.59982,0,0,0,0,0,0,0,0,130.14245,131.40312,0,0,0,0,0,0,0,0,131.08599,132.25648,0,0,0,0,0,0,0,0,132.97361,134.2057,0,0,0,0,0,0,0,0,130.04203,131.27486,0,0,0,0,0,0,0,0,132.92209,133.77791,0,0,0,0,0,0,0,0,130.90713,131.85022,0,0,0,0,0,0,0,0,131.94331,132.76241,0,0,0,0,0,0,0,0,132.04492,133.03643,0,0,0,0,0,0,0,0,129.95871,130.86251,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.0029,0.00325,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.00284,0.00319,0,0,0,0,0,0,0,0,0.00293,0.00329,0,0,0,0,0,0,0,0,0.00287,0.00322,0,0,0,0,0,0,0,0,0.00289,0.00325,0,0,0,0,0,0,0,0,0.00292,0.00328,0,0,0,0,0,0,0,0,0.00294,0.0033,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00891,0.01035,0,0,0,0,0,0,0,0,0.00886,0.0103,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00887,0.01031,0,0,0,0,0,0,0,0,0.0089,0.01034,0,0,0,0,0,0,0,0,0.00891,0.01036,0,0,0,0,0,0,0,0,0.00893,0.01038,0,0,0,0,0,0,0,0,0.02046,0.02997,0,0,0,0,0,0,0,0,0.0197,0.02893,0,0,0,0,0,0,0,0,0.02027,0.03136,0,0,0,0,0,0,0,0,0.02115,0.03324,0,0,0,0,0,0,0,0,0.01584,0.02624,0,0,0,0,0,0,0,0,0.01746,0.02845,0,0,0,0,0,0,0,0,0.01615,0.02652,0,0,0,0,0,0,0,0,0.01864,0.02952,0,0,0,0,0,0,0,0,0.01614,0.0255,0,0,0,0,0,0,0,0,0.00074,0.00117,0,0,0,0,0,0,0,0,0.00071,0.00111,0,0,0,0,0,0,0,0,0.00073,0.00115,0,0,0,0,0,0,0,0,0.00075,0.00118,0,0,0,0,0,0,0,0,0.00061,0.00095,0,0,0,0,0,0,0,0,0.00063,0.00098,0,0,0,0,0,0,0,0,0.00061,0.00095,0,0,0,0,0,0,0,0,0.00066,0.00103,0,0,0,0,0,0,0,0,0.00063,0.00097,0,0,0,0,0,0,0,0,0.02202,0.02298,0,0,0,0,0,0,0,0,0.02264,0.02353,0,0,0,0,0,0,0,0,0.02471,0.02565,0,0,0,0,0,0,0,0,0.02062,0.0216,0,0,0,0,0,0,0,0,0.024,0.02472,0,0,0,0,0,0,0,0,0.02189,0.02264,0,0,0,0,0,0,0,0,0.02196,0.02267,0,0,0,0,0,0,0,0,0.02311,0.02392,0,0,0,0,0,0,0,0,0.02292,0.02364,0,0,0,0,0,0,0,0,0.00407,0.00492,0,0,0,0,0,0,0,0,0.00408,0.00487,0,0,0,0,0,0,0,0,0.00439,0.00522,0,0,0,0,0,0,0,0,0.00392,0.00478,0,0,0,0,0,0,0,0,0.00407,0.00471,0,0,0,0,0,0,0,0,0.00384,0.00451,0,0,0,0,0,0,0,0,0.00381,0.00444,0,0,0,0,0,0,0,0,0.00405,0.00476,0,0,0,0,0,0,0,0,0.00395,0.00459,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.00128,0.00129,0,0,0,0,0,0,0,0,0.00126,0.00127,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00127,0.00128,0,0,0,0,0,0,0,0,0.00125,0.00126,0,0,0,0,0,0,0,0,0.02997,0.03951,0,0,0,0,0,0,0,0,0.02545,0.03402,0,0,0,0,0,0,0,0,0.02945,0.04008,0,0,0,0,0,0,0,0,0.03273,0.04436,0,0,0,0,0,0,0,0,0.01313,0.0203,0,0,0,0,0,0,0,0,0.01626,0.02426,0,0,0,0,0,0,0,0,0.01225,0.01914,0,0,0,0,0,0,0,0,0.01917,0.02731,0,0,0,0,0,0,0,0,0.01199,0.01814 +Small SUV,PH40E,2050,0,0,0,0,0,0,0,0,0,0.02081,0,0,0,0,0,0,0,0,0,0.02148,0,0,0,0,0,0,0,0,0,0.02351,0,0,0,0,0,0,0,0,0,0.01941,0,0,0,0,0,0,0,0,0,0.02299,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02095,0,0,0,0,0,0,0,0,0,0.02203,0,0,0,0,0,0,0,0,0,0.02189,0,0,0,0,0,0,0,0,0,0.01008,0,0,0,0,0,0,0,0,0,0.00867,0,0,0,0,0,0,0,0,0,0.00992,0,0,0,0,0,0,0,0,0,0.01097,0,0,0,0,0,0,0,0,0,0.0048,0,0,0,0,0,0,0,0,0,0.00578,0,0,0,0,0,0,0,0,0,0.00454,0,0,0,0,0,0,0,0,0,0.0067,0,0,0,0,0,0,0,0,0,0.00444,0,0,0,0,0,0,0,0,0,0.48529,0,0,0,0,0,0,0,0,0,0.46376,0,0,0,0,0,0,0,0,0,0.49071,0,0,0,0,0,0,0,0,0,0.53205,0,0,0,0,0,0,0,0,0,0.40096,0,0,0,0,0,0,0,0,0,0.42211,0,0,0,0,0,0,0,0,0,0.41373,0,0,0,0,0,0,0,0,0,0.43858,0,0,0,0,0,0,0,0,0,0.3745,0,0,0,0,0,0,0,0,0,130.14248,0,0,0,0,0,0,0,0,0,131.08589,0,0,0,0,0,0,0,0,0,132.97354,0,0,0,0,0,0,0,0,0,130.04196,0,0,0,0,0,0,0,0,0,132.92202,0,0,0,0,0,0,0,0,0,130.90705,0,0,0,0,0,0,0,0,0,131.94336,0,0,0,0,0,0,0,0,0,132.0448,0,0,0,0,0,0,0,0,0,129.95865,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.0029,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.00284,0,0,0,0,0,0,0,0,0,0.00293,0,0,0,0,0,0,0,0,0,0.00287,0,0,0,0,0,0,0,0,0,0.00289,0,0,0,0,0,0,0,0,0,0.00292,0,0,0,0,0,0,0,0,0,0.00294,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00886,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00887,0,0,0,0,0,0,0,0,0,0.0089,0,0,0,0,0,0,0,0,0,0.00891,0,0,0,0,0,0,0,0,0,0.00893,0,0,0,0,0,0,0,0,0,0.02046,0,0,0,0,0,0,0,0,0,0.0197,0,0,0,0,0,0,0,0,0,0.02027,0,0,0,0,0,0,0,0,0,0.02115,0,0,0,0,0,0,0,0,0,0.01584,0,0,0,0,0,0,0,0,0,0.01746,0,0,0,0,0,0,0,0,0,0.01615,0,0,0,0,0,0,0,0,0,0.01864,0,0,0,0,0,0,0,0,0,0.01614,0,0,0,0,0,0,0,0,0,0.00074,0,0,0,0,0,0,0,0,0,0.00071,0,0,0,0,0,0,0,0,0,0.00073,0,0,0,0,0,0,0,0,0,0.00075,0,0,0,0,0,0,0,0,0,0.00061,0,0,0,0,0,0,0,0,0,0.00063,0,0,0,0,0,0,0,0,0,0.00061,0,0,0,0,0,0,0,0,0,0.00066,0,0,0,0,0,0,0,0,0,0.00063,0,0,0,0,0,0,0,0,0,0.02202,0,0,0,0,0,0,0,0,0,0.02264,0,0,0,0,0,0,0,0,0,0.02471,0,0,0,0,0,0,0,0,0,0.02062,0,0,0,0,0,0,0,0,0,0.024,0,0,0,0,0,0,0,0,0,0.02189,0,0,0,0,0,0,0,0,0,0.02196,0,0,0,0,0,0,0,0,0,0.02311,0,0,0,0,0,0,0,0,0,0.02292,0,0,0,0,0,0,0,0,0,0.00407,0,0,0,0,0,0,0,0,0,0.00408,0,0,0,0,0,0,0,0,0,0.00439,0,0,0,0,0,0,0,0,0,0.00392,0,0,0,0,0,0,0,0,0,0.00407,0,0,0,0,0,0,0,0,0,0.00384,0,0,0,0,0,0,0,0,0,0.00381,0,0,0,0,0,0,0,0,0,0.00405,0,0,0,0,0,0,0,0,0,0.00395,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.00128,0,0,0,0,0,0,0,0,0,0.00126,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00127,0,0,0,0,0,0,0,0,0,0.00125,0,0,0,0,0,0,0,0,0,0.02997,0,0,0,0,0,0,0,0,0,0.02545,0,0,0,0,0,0,0,0,0,0.02945,0,0,0,0,0,0,0,0,0,0.03273,0,0,0,0,0,0,0,0,0,0.01313,0,0,0,0,0,0,0,0,0,0.01626,0,0,0,0,0,0,0,0,0,0.01225,0,0,0,0,0,0,0,0,0,0.01917,0,0,0,0,0,0,0,0,0,0.01199 +Small SUV,PH40G,1990,0.04853,0,0,0,0,0,0,0,0,0,0.04512,0,0,0,0,0,0,0,0,0,0.05058,0,0,0,0,0,0,0,0,0,0.04966,0,0,0,0,0,0,0,0,0,0.03589,0,0,0,0,0,0,0,0,0,0.03633,0,0,0,0,0,0,0,0,0,0.03311,0,0,0,0,0,0,0,0,0,0.04015,0,0,0,0,0,0,0,0,0,0.0339,0,0,0,0,0,0,0,0,0,0.05721,0,0,0,0,0,0,0,0,0,0.04793,0,0,0,0,0,0,0,0,0,0.06232,0,0,0,0,0,0,0,0,0,0.06483,0,0,0,0,0,0,0,0,0,0.05407,0,0,0,0,0,0,0,0,0,0.05931,0,0,0,0,0,0,0,0,0,0.05417,0,0,0,0,0,0,0,0,0,0.0534,0,0,0,0,0,0,0,0,0,0.04241,0,0,0,0,0,0,0,0,0,35.07906,0,0,0,0,0,0,0,0,0,31.27098,0,0,0,0,0,0,0,0,0,38.98308,0,0,0,0,0,0,0,0,0,40.45848,0,0,0,0,0,0,0,0,0,36.19404,0,0,0,0,0,0,0,0,0,38.9985,0,0,0,0,0,0,0,0,0,37.35767,0,0,0,0,0,0,0,0,0,35.04495,0,0,0,0,0,0,0,0,0,28.57715,0,0,0,0,0,0,0,0,0,309.76857,0,0,0,0,0,0,0,0,0,310.48098,0,0,0,0,0,0,0,0,0,314.31655,0,0,0,0,0,0,0,0,0,308.79709,0,0,0,0,0,0,0,0,0,310.27577,0,0,0,0,0,0,0,0,0,307.51573,0,0,0,0,0,0,0,0,0,307.96362,0,0,0,0,0,0,0,0,0,310.2278,0,0,0,0,0,0,0,0,0,306.35158,0,0,0,0,0,0,0,0,0,0.06266,0,0,0,0,0,0,0,0,0,0.06272,0,0,0,0,0,0,0,0,0,0.06372,0,0,0,0,0,0,0,0,0,0.06141,0,0,0,0,0,0,0,0,0,0.06343,0,0,0,0,0,0,0,0,0,0.06208,0,0,0,0,0,0,0,0,0,0.0626,0,0,0,0,0,0,0,0,0,0.0632,0,0,0,0,0,0,0,0,0,0.06369,0,0,0,0,0,0,0,0,0,0.02053,0,0,0,0,0,0,0,0,0,0.02055,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.0205,0,0,0,0,0,0,0,0,0,0.02049,0,0,0,0,0,0,0,0,0,0.02052,0,0,0,0,0,0,0,0,0,0.02054,0,0,0,0,0,0,0,0,0,0.02056,0,0,0,0,0,0,0,0,0,2.53113,0,0,0,0,0,0,0,0,0,2.38486,0,0,0,0,0,0,0,0,0,2.67037,0,0,0,0,0,0,0,0,0,2.83383,0,0,0,0,0,0,0,0,0,2.61703,0,0,0,0,0,0,0,0,0,2.75096,0,0,0,0,0,0,0,0,0,2.62288,0,0,0,0,0,0,0,0,0,2.76787,0,0,0,0,0,0,0,0,0,2.25703,0,0,0,0,0,0,0,0,0,0.04953,0,0,0,0,0,0,0,0,0.00071,0.04325,0,0,0,0,0,0,0,0,0.00068,0.04823,0,0,0,0,0,0,0,0,0.00069,0.05311,0,0,0,0,0,0,0,0,0.00071,0.02579,0,0,0,0,0,0,0,0,0.0006,0.03017,0,0,0,0,0,0,0,0,0.00061,0.02477,0,0,0,0,0,0,0,0,0.00057,0.03429,0,0,0,0,0,0,0,0,0.00063,0.02451,0,0,0,0,0,0,0,0,0.00056,0.13141,0,0,0,0,0,0,0,0,0.02197,0.11768,0,0,0,0,0,0,0,0,0.02259,0.13192,0,0,0,0,0,0,0,0,0.02463,0.13906,0,0,0,0,0,0,0,0,0.02057,0.07947,0,0,0,0,0,0,0,0,0.02399,0.08737,0,0,0,0,0,0,0,0,0.02186,0.075,0,0,0,0,0,0,0,0,0.02189,0.098,0,0,0,0,0,0,0,0,0.02306,0.07487,0,0,0,0,0,0,0,0,0.0228,0.10083,0,0,0,0,0,0,0,0,0.00402,0.08815,0,0,0,0,0,0,0,0,0.00404,0.09923,0,0,0,0,0,0,0,0,0.00432,0.10868,0,0,0,0,0,0,0,0,0.00386,0.05314,0,0,0,0,0,0,0,0,0.00406,0.06176,0,0,0,0,0,0,0,0,0.00381,0.05073,0,0,0,0,0,0,0,0,0.00375,0.0703,0,0,0,0,0,0,0,0,0.004,0.0499,0,0,0,0,0,0,0,0,0.00384,0.01373,0,0,0,0,0,0,0,0,0,0.01548,0,0,0,0,0,0,0,0,0,0.02199,0,0,0,0,0,0,0,0,0,0.02016,0,0,0,0,0,0,0,0,0,0.01794,0,0,0,0,0,0,0,0,0,0.01978,0,0,0,0,0,0,0,0,0,0.018,0,0,0,0,0,0,0,0,0,0.01779,0,0,0,0,0,0,0,0,0,0.00839,0,0,0,0,0,0,0,0,0,2.11282,0,0,0,0,0,0,0,0,0,1.86289,0,0,0,0,0,0,0,0,0,2.3408,0,0,0,0,0,0,0,0,0,2.4215,0,0,0,0,0,0,0,0,0,2.26922,0,0,0,0,0,0,0,0,0,2.3711,0,0,0,0,0,0,0,0,0,2.26492,0,0,0,0,0,0,0,0,0,2.19953,0,0,0,0,0,0,0,0,0,1.78969,0,0,0,0,0,0,0,0,0 +Small SUV,PH40G,1995,0.02751,0.03727,0,0,0,0,0,0,0,0,0.02719,0.0355,0,0,0,0,0,0,0,0,0.03004,0.03958,0,0,0,0,0,0,0,0,0.0267,0.03735,0,0,0,0,0,0,0,0,0.02609,0.03059,0,0,0,0,0,0,0,0,0.02458,0.02998,0,0,0,0,0,0,0,0,0.02387,0.02811,0,0,0,0,0,0,0,0,0.0264,0.03275,0,0,0,0,0,0,0,0,0.02478,0.02898,0,0,0,0,0,0,0,0,0.03917,0.04477,0,0,0,0,0,0,0,0,0.03627,0.03853,0,0,0,0,0,0,0,0,0.0439,0.05067,0,0,0,0,0,0,0,0,0.04503,0.05493,0,0,0,0,0,0,0,0,0.03946,0.0455,0,0,0,0,0,0,0,0,0.04189,0.05004,0,0,0,0,0,0,0,0,0.03918,0.04569,0,0,0,0,0,0,0,0,0.03934,0.04539,0,0,0,0,0,0,0,0,0.03291,0.03475,0,0,0,0,0,0,0,0,16.55049,22.93876,0,0,0,0,0,0,0,0,16.07993,21.06143,0,0,0,0,0,0,0,0,18.86972,25.57563,0,0,0,0,0,0,0,0,19.71238,27.57242,0,0,0,0,0,0,0,0,17.93665,24.48259,0,0,0,0,0,0,0,0,18.95962,26.26305,0,0,0,0,0,0,0,0,18.51493,25.54084,0,0,0,0,0,0,0,0,17.62792,24.39996,0,0,0,0,0,0,0,0,14.45226,19.49302,0,0,0,0,0,0,0,0,242.7102,259.3027,0,0,0,0,0,0,0,0,244.36161,260.4985,0,0,0,0,0,0,0,0,248.17166,264.55828,0,0,0,0,0,0,0,0,241.8919,258.29446,0,0,0,0,0,0,0,0,247.36505,261.92345,0,0,0,0,0,0,0,0,243.37201,258.40709,0,0,0,0,0,0,0,0,245.03455,259.41254,0,0,0,0,0,0,0,0,245.86106,261.10087,0,0,0,0,0,0,0,0,242.38329,257.32786,0,0,0,0,0,0,0,0,0.04639,0.05878,0,0,0,0,0,0,0,0,0.0465,0.05886,0,0,0,0,0,0,0,0,0.04739,0.05981,0,0,0,0,0,0,0,0,0.04538,0.0576,0,0,0,0,0,0,0,0,0.04715,0.05954,0,0,0,0,0,0,0,0,0.046,0.05825,0,0,0,0,0,0,0,0,0.04637,0.05874,0,0,0,0,0,0,0,0,0.04689,0.05931,0,0,0,0,0,0,0,0,0.04722,0.05976,0,0,0,0,0,0,0,0,0.05276,0.04229,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05272,0.04225,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05269,0.04223,0,0,0,0,0,0,0,0,0.05261,0.04218,0,0,0,0,0,0,0,0,0.05272,0.04226,0,0,0,0,0,0,0,0,0.0528,0.04232,0,0,0,0,0,0,0,0,0.05289,0.04239,0,0,0,0,0,0,0,0,2.08064,2.48504,0,0,0,0,0,0,0,0,2.05287,2.34451,0,0,0,0,0,0,0,0,2.24514,2.54934,0,0,0,0,0,0,0,0,2.33983,2.80384,0,0,0,0,0,0,0,0,2.19331,2.59615,0,0,0,0,0,0,0,0,2.29135,2.69495,0,0,0,0,0,0,0,0,2.22014,2.61358,0,0,0,0,0,0,0,0,2.32703,2.74151,0,0,0,0,0,0,0,0,1.92696,2.24397,0,0,0,0,0,0,0,0,0.0134,0.02933,0,0,0,0,0,0,0,0,0.01173,0.0256,0,0,0,0,0,0,0,0,0.01301,0.02854,0,0,0,0,0,0,0,0,0.01425,0.03131,0,0,0,0,0,0,0,0,0.00705,0.0152,0,0,0,0,0,0,0,0,0.0082,0.01773,0,0,0,0,0,0,0,0,0.0068,0.0146,0,0,0,0,0,0,0,0,0.00934,0.02027,0,0,0,0,0,0,0,0,0.00678,0.01454,0,0,0,0,0,0,0,0,0.05,0.08584,0,0,0,0,0,0,0,0,0.04694,0.07794,0,0,0,0,0,0,0,0,0.05206,0.08684,0,0,0,0,0,0,0,0,0.05078,0.08942,0,0,0,0,0,0,0,0,0.03804,0.05587,0,0,0,0,0,0,0,0,0.0385,0.05944,0,0,0,0,0,0,0,0,0.03541,0.0525,0,0,0,0,0,0,0,0,0.0422,0.06655,0,0,0,0,0,0,0,0,0.03615,0.0531,0,0,0,0,0,0,0,0,0.02882,0.06052,0,0,0,0,0,0,0,0,0.02559,0.05301,0,0,0,0,0,0,0,0,0.02859,0.05935,0,0,0,0,0,0,0,0,0.03058,0.06476,0,0,0,0,0,0,0,0,0.01649,0.03227,0,0,0,0,0,0,0,0,0.01853,0.03706,0,0,0,0,0,0,0,0,0.01571,0.03083,0,0,0,0,0,0,0,0,0.02094,0.04248,0,0,0,0,0,0,0,0,0.01565,0.03065,0,0,0,0,0,0,0,0,0.01073,0.00551,0,0,0,0,0,0,0,0,0.01218,0.00559,0,0,0,0,0,0,0,0,0.01737,0.00579,0,0,0,0,0,0,0,0,0.01579,0.00968,0,0,0,0,0,0,0,0,0.0143,0.0057,0,0,0,0,0,0,0,0,0.01565,0.00565,0,0,0,0,0,0,0,0,0.01432,0.00775,0,0,0,0,0,0,0,0,0.01407,0.00882,0,0,0,0,0,0,0,0,0.00662,0.00324,0,0,0,0,0,0,0,0,1.46325,1.81021,0,0,0,0,0,0,0,0,1.40068,1.64808,0,0,0,0,0,0,0,0,1.66111,2.05515,0,0,0,0,0,0,0,0,1.68667,2.19368,0,0,0,0,0,0,0,0,1.60438,2.04812,0,0,0,0,0,0,0,0,1.64584,2.13632,0,0,0,0,0,0,0,0,1.59029,2.04471,0,0,0,0,0,0,0,0,1.58411,2.0166,0,0,0,0,0,0,0,0,1.34248,1.61492,0,0,0,0,0,0,0,0 +Small SUV,PH40G,2000,0.02384,0.02543,0.03195,0,0,0,0,0,0,0,0.02406,0.02542,0.03095,0,0,0,0,0,0,0,0.02644,0.02798,0.03433,0,0,0,0,0,0,0,0.02266,0.02438,0.0315,0,0,0,0,0,0,0,0.02438,0.02512,0.0281,0,0,0,0,0,0,0,0.02252,0.02341,0.02699,0,0,0,0,0,0,0,0.02228,0.02298,0.02579,0,0,0,0,0,0,0,0.024,0.02504,0.02927,0,0,0,0,0,0,0,0.02322,0.02393,0.0267,0,0,0,0,0,0,0,0.02226,0.03259,0.04418,0,0,0,0,0,0,0,0.02081,0.0313,0.03922,0,0,0,0,0,0,0,0.02524,0.03775,0.05114,0,0,0,0,0,0,0,0.02579,0.0393,0.05226,0,0,0,0,0,0,0,0.01944,0.03188,0.04408,0,0,0,0,0,0,0,0.02106,0.03406,0.04677,0,0,0,0,0,0,0,0.01911,0.03199,0.04247,0,0,0,0,0,0,0,0.02102,0.03345,0.04328,0,0,0,0,0,0,0,0.01731,0.02896,0.03504,0,0,0,0,0,0,0,5.12962,8.16348,15.04953,0,0,0,0,0,0,0,4.99127,8.03463,13.70246,0,0,0,0,0,0,0,5.95952,9.50757,17.18178,0,0,0,0,0,0,0,6.15701,9.88798,17.48577,0,0,0,0,0,0,0,4.9654,8.51225,15.71439,0,0,0,0,0,0,0,5.31776,8.98237,16.46462,0,0,0,0,0,0,0,5.06318,8.7791,15.72537,0,0,0,0,0,0,0,5.17315,8.7429,15.26942,0,0,0,0,0,0,0,4.22624,7.50259,12.44636,0,0,0,0,0,0,0,259.65803,261.99721,263.42668,0,0,0,0,0,0,0,261.76802,263.95163,264.89978,0,0,0,0,0,0,0,265.55252,267.85066,269.06354,0,0,0,0,0,0,0,259.32721,261.60067,262.7578,0,0,0,0,0,0,0,266.18159,267.81164,267.1362,0,0,0,0,0,0,0,261.78099,263.57171,263.33802,0,0,0,0,0,0,0,264.0998,265.66506,264.74677,0,0,0,0,0,0,0,264.07883,265.94876,265.96498,0,0,0,0,0,0,0,260.20025,261.92676,261.738,0,0,0,0,0,0,0,0.02562,0.02853,0.04389,0,0,0,0,0,0,0,0.0257,0.0286,0.04394,0,0,0,0,0,0,0,0.02624,0.02915,0.04463,0,0,0,0,0,0,0,0.02503,0.02791,0.04302,0,0,0,0,0,0,0,0.0261,0.029,0.04443,0,0,0,0,0,0,0,0.02542,0.02829,0.04349,0,0,0,0,0,0,0,0.02562,0.02852,0.04385,0,0,0,0,0,0,0,0.02593,0.02884,0.04427,0,0,0,0,0,0,0,0.0261,0.02904,0.04461,0,0,0,0,0,0,0,0.03109,0.04053,0.04237,0,0,0,0,0,0,0,0.03112,0.04058,0.04241,0,0,0,0,0,0,0,0.03111,0.04056,0.04238,0,0,0,0,0,0,0,0.03096,0.04036,0.04221,0,0,0,0,0,0,0,0.03109,0.04053,0.04235,0,0,0,0,0,0,0,0.03098,0.0404,0.04224,0,0,0,0,0,0,0,0.03106,0.0405,0.04234,0,0,0,0,0,0,0,0.03113,0.04059,0.04242,0,0,0,0,0,0,0,0.0312,0.04068,0.0425,0,0,0,0,0,0,0,0.75644,1.04909,1.76194,0,0,0,0,0,0,0,0.74387,1.0399,1.66867,0,0,0,0,0,0,0,0.87221,1.1468,1.87413,0,0,0,0,0,0,0,0.89329,1.22235,1.93119,0,0,0,0,0,0,0,0.8289,1.13875,1.87972,0,0,0,0,0,0,0,0.86386,1.16417,1.90739,0,0,0,0,0,0,0,0.84078,1.16047,1.81692,0,0,0,0,0,0,0,0.88094,1.20969,1.90528,0,0,0,0,0,0,0,0.73331,1.03005,1.58991,0,0,0,0,0,0,0,0.00742,0.01037,0.02062,0,0,0,0,0,0,0,0.00651,0.00908,0.01797,0,0,0,0,0,0,0,0.00709,0.00992,0.01987,0,0,0,0,0,0,0,0.00773,0.01083,0.02183,0,0,0,0,0,0,0,0.00394,0.00546,0.01064,0,0,0,0,0,0,0,0.00453,0.00629,0.01238,0,0,0,0,0,0,0,0.00385,0.00533,0.0103,0,0,0,0,0,0,0,0.00519,0.00723,0.01422,0,0,0,0,0,0,0,0.00392,0.00543,0.01036,0,0,0,0,0,0,0,0.03637,0.04272,0.06611,0,0,0,0,0,0,0,0.03508,0.04056,0.06075,0,0,0,0,0,0,0,0.03852,0.04451,0.06724,0,0,0,0,0,0,0,0.03581,0.04252,0.06764,0,0,0,0,0,0,0,0.0311,0.03426,0.04579,0,0,0,0,0,0,0,0.03026,0.03393,0.04756,0,0,0,0,0,0,0,0.02885,0.03195,0.04292,0,0,0,0,0,0,0,0.03284,0.03717,0.05285,0,0,0,0,0,0,0,0.02982,0.03298,0.04388,0,0,0,0,0,0,0,0.01676,0.02238,0.04307,0,0,0,0,0,0,0,0.01509,0.01994,0.0378,0,0,0,0,0,0,0,0.01661,0.0219,0.04202,0,0,0,0,0,0,0,0.01734,0.02328,0.0455,0,0,0,0,0,0,0,0.01035,0.01315,0.02336,0,0,0,0,0,0,0,0.01124,0.01449,0.02655,0,0,0,0,0,0,0,0.0099,0.01265,0.02236,0,0,0,0,0,0,0,0.01265,0.01649,0.03036,0,0,0,0,0,0,0,0.01005,0.01285,0.02249,0,0,0,0,0,0,0,0.01147,0.00557,0.00504,0,0,0,0,0,0,0,0.01304,0.00566,0.00507,0,0,0,0,0,0,0,0.0186,0.00586,0.00515,0,0,0,0,0,0,0,0.01693,0.00982,0.00503,0,0,0,0,0,0,0,0.01538,0.00583,0.00511,0,0,0,0,0,0,0,0.01683,0.00576,0.00504,0,0,0,0,0,0,0,0.01543,0.00794,0.00507,0,0,0,0,0,0,0,0.0151,0.00898,0.00456,0,0,0,0,0,0,0,0.00709,0.00329,0.00237,0,0,0,0,0,0,0,0.4836,0.81498,1.47434,0,0,0,0,0,0,0,0.4692,0.80086,1.33632,0,0,0,0,0,0,0,0.55761,0.95058,1.70176,0,0,0,0,0,0,0,0.57229,0.9868,1.72824,0,0,0,0,0,0,0,0.48195,0.86852,1.61023,0,0,0,0,0,0,0,0.5025,0.90307,1.65146,0,0,0,0,0,0,0,0.47702,0.86754,1.55555,0,0,0,0,0,0,0,0.50817,0.89925,1.56273,0,0,0,0,0,0,0,0.42218,0.78074,1.28114,0,0,0,0,0,0,0 +Small SUV,PH40G,2005,0.0215,0.02216,0.02299,0.02734,0,0,0,0,0,0,0.02209,0.02262,0.02333,0.02706,0,0,0,0,0,0,0.02432,0.02446,0.02507,0.02976,0,0,0,0,0,0,0.02023,0.02081,0.02169,0.02645,0,0,0,0,0,0,0.02335,0.0237,0.02414,0.0261,0,0,0,0,0,0,0.0213,0.02156,0.02202,0.02451,0,0,0,0,0,0,0.02128,0.02158,0.02198,0.02382,0,0,0,0,0,0,0.02253,0.02285,0.02337,0.0263,0,0,0,0,0,0,0.02216,0.0224,0.02273,0.02472,0,0,0,0,0,0,0.0152,0.01155,0.01221,0.02544,0,0,0,0,0,0,0.0139,0.01046,0.01135,0.02301,0,0,0,0,0,0,0.01554,0.01173,0.0127,0.029,0,0,0,0,0,0,0.0158,0.0134,0.01357,0.03058,0,0,0,0,0,0,0.00981,0.00852,0.00981,0.02415,0,0,0,0,0,0,0.01095,0.00923,0.01043,0.02578,0,0,0,0,0,0,0.00939,0.00885,0.00964,0.02332,0,0,0,0,0,0,0.01192,0.01018,0.01047,0.02483,0,0,0,0,0,0,0.00799,0.00688,0.00779,0.02052,0,0,0,0,0,0,2.49883,3.79272,4.91778,8.94899,0,0,0,0,0,0,2.43036,3.73186,4.92581,8.52828,0,0,0,0,0,0,2.68991,4.40328,5.89108,10.32223,0,0,0,0,0,0,2.79462,4.67579,5.78261,10.761,0,0,0,0,0,0,2.41196,3.95413,5.34889,9.56865,0,0,0,0,0,0,2.49419,4.14736,5.58117,9.95342,0,0,0,0,0,0,2.47761,4.25627,5.40286,9.66101,0,0,0,0,0,0,2.53818,4.39345,5.37855,9.55236,0,0,0,0,0,0,2.00894,3.66647,4.82534,8.21743,0,0,0,0,0,0,272.20226,273.52307,276.48712,276.61527,0,0,0,0,0,0,274.58457,275.81078,278.56434,278.21407,0,0,0,0,0,0,278.33847,279.62917,282.5243,282.44583,0,0,0,0,0,0,272.04728,273.30884,276.20669,276.15614,0,0,0,0,0,0,279.80708,280.69417,282.71229,280.7449,0,0,0,0,0,0,275.12099,276.10869,278.33086,276.83445,0,0,0,0,0,0,277.829,278.67527,280.60908,278.44821,0,0,0,0,0,0,277.36762,278.40223,280.73824,279.46319,0,0,0,0,0,0,273.38089,274.3566,276.49097,274.88313,0,0,0,0,0,0,0.00507,0.00544,0.0064,0.02049,0,0,0,0,0,0,0.00508,0.00545,0.00641,0.0205,0,0,0,0,0,0,0.00517,0.00554,0.0065,0.02078,0,0,0,0,0,0,0.00497,0.00533,0.00628,0.02011,0,0,0,0,0,0,0.00514,0.00551,0.00647,0.02069,0,0,0,0,0,0,0.00503,0.00539,0.00634,0.02029,0,0,0,0,0,0,0.00507,0.00543,0.0064,0.02047,0,0,0,0,0,0,0.00512,0.00549,0.00645,0.02064,0,0,0,0,0,0,0.00516,0.00553,0.00651,0.02081,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.02571,0,0,0,0,0,0,0.01255,0.01443,0.01776,0.02574,0,0,0,0,0,0,0.01255,0.01442,0.01776,0.02572,0,0,0,0,0,0,0.01249,0.01435,0.01767,0.02561,0,0,0,0,0,0,0.01254,0.01441,0.01774,0.0257,0,0,0,0,0,0,0.0125,0.01436,0.01768,0.02563,0,0,0,0,0,0,0.01253,0.0144,0.01773,0.02569,0,0,0,0,0,0,0.01256,0.01443,0.01777,0.02574,0,0,0,0,0,0,0.01258,0.01446,0.01781,0.0258,0,0,0,0,0,0,0.28844,0.4567,0.59466,0.89365,0,0,0,0,0,0,0.28327,0.44692,0.5933,0.86412,0,0,0,0,0,0,0.30703,0.4943,0.64683,0.97862,0,0,0,0,0,0,0.30618,0.54338,0.67603,1.0224,0,0,0,0,0,0,0.28735,0.47746,0.63151,0.96893,0,0,0,0,0,0,0.29749,0.4943,0.64683,0.98751,0,0,0,0,0,0,0.29163,0.50132,0.63067,0.94673,0,0,0,0,0,0,0.31397,0.52292,0.64577,1.00185,0,0,0,0,0,0,0.24569,0.35067,0.46092,0.86731,0,0,0,0,0,0,0.0023,0.00368,0.00501,0.01209,0,0,0,0,0,0,0.00211,0.00327,0.00444,0.01063,0,0,0,0,0,0,0.00244,0.00301,0.00407,0.01155,0,0,0,0,0,0,0.00251,0.00373,0.0051,0.01268,0,0,0,0,0,0,0.00147,0.0023,0.00314,0.00664,0,0,0,0,0,0,0.00165,0.00235,0.0032,0.00752,0,0,0,0,0,0,0.00142,0.00217,0.00295,0.00633,0,0,0,0,0,0,0.00181,0.0026,0.00353,0.00852,0,0,0,0,0,0,0.00131,0.00197,0.00266,0.00631,0,0,0,0,0,0,0.0254,0.02832,0.03134,0.04728,0,0,0,0,0,0,0.02567,0.02809,0.03074,0.0446,0,0,0,0,0,0,0.02848,0.02953,0.03189,0.0488,0,0,0,0,0,0,0.02451,0.02709,0.03018,0.04733,0,0,0,0,0,0,0.02585,0.02755,0.02939,0.03709,0,0,0,0,0,0,0.02412,0.02552,0.02738,0.03694,0,0,0,0,0,0,0.02371,0.02524,0.02693,0.03431,0,0,0,0,0,0,0.02561,0.02725,0.02928,0.04038,0,0,0,0,0,0,0.02438,0.02571,0.02719,0.03517,0,0,0,0,0,0,0.00705,0.00963,0.01231,0.02641,0,0,0,0,0,0,0.00676,0.0089,0.01124,0.02351,0,0,0,0,0,0,0.00772,0.00865,0.01074,0.0257,0,0,0,0,0,0,0.00734,0.00962,0.01236,0.02753,0,0,0,0,0,0,0.0057,0.00721,0.00884,0.01565,0,0,0,0,0,0,0.00581,0.00704,0.00869,0.01715,0,0,0,0,0,0,0.00535,0.00671,0.0082,0.01473,0,0,0,0,0,0,0.00625,0.0077,0.0095,0.01932,0,0,0,0,0,0,0.00523,0.00641,0.00772,0.01479,0,0,0,0,0,0,0.01202,0.00582,0.00529,0.00176,0,0,0,0,0,0,0.01368,0.00592,0.00533,0.00177,0,0,0,0,0,0,0.0195,0.00612,0.00541,0.0018,0,0,0,0,0,0,0.01776,0.01026,0.00529,0.00176,0,0,0,0,0,0,0.01617,0.00611,0.00541,0.00179,0,0,0,0,0,0,0.01769,0.00604,0.00533,0.00177,0,0,0,0,0,0,0.01623,0.00833,0.00537,0.00178,0,0,0,0,0,0,0.01585,0.00941,0.00481,0.00176,0,0,0,0,0,0,0.00745,0.00344,0.0025,0.00162,0,0,0,0,0,0,0.21324,0.26238,0.36053,0.87318,0,0,0,0,0,0,0.19842,0.24505,0.34113,0.80987,0,0,0,0,0,0,0.22293,0.27379,0.38038,0.98281,0,0,0,0,0,0,0.22839,0.30666,0.40263,1.02159,0,0,0,0,0,0,0.15719,0.21896,0.31675,0.89741,0,0,0,0,0,0,0.16971,0.23018,0.32876,0.92458,0,0,0,0,0,0,0.15185,0.22318,0.30923,0.8695,0,0,0,0,0,0,0.18625,0.25477,0.33999,0.9136,0,0,0,0,0,0,0.13273,0.18736,0.26838,0.77673,0,0,0,0,0,0 +Small SUV,PH40G,2010,0,0.02122,0.02183,0.02253,0.02575,0,0,0,0,0,0,0.02182,0.02235,0.02297,0.02573,0,0,0,0,0,0,0.02374,0.02419,0.02512,0.02818,0,0,0,0,0,0,0.01984,0.02048,0.02125,0.02472,0,0,0,0,0,0,0.02323,0.02358,0.02394,0.02547,0,0,0,0,0,0,0.02107,0.02143,0.02191,0.02371,0,0,0,0,0,0,0.02115,0.02148,0.02179,0.02319,0,0,0,0,0,0,0.02227,0.02267,0.02321,0.02531,0,0,0,0,0,0,0.02202,0.0223,0.02269,0.02407,0,0,0,0,0,0,0.01083,0.00988,0.00851,0.01739,0,0,0,0,0,0,0.00951,0.00907,0.00774,0.01599,0,0,0,0,0,0,0.01033,0.0102,0.00872,0.01939,0,0,0,0,0,0,0.01222,0.01123,0.00968,0.02082,0,0,0,0,0,0,0.00701,0.00808,0.00676,0.01572,0,0,0,0,0,0,0.00749,0.00843,0.00712,0.01677,0,0,0,0,0,0,0.00724,0.00799,0.00669,0.01531,0,0,0,0,0,0,0.00865,0.0084,0.00744,0.01661,0,0,0,0,0,0,0.0058,0.00623,0.00652,0.01405,0,0,0,0,0,0,1.72061,2.74102,3.58502,6.4091,0,0,0,0,0,0,1.64197,2.71832,3.53004,6.25353,0,0,0,0,0,0,1.90217,3.18773,3.99381,7.52788,0,0,0,0,0,0,1.99214,3.15166,4.23997,7.90904,0,0,0,0,0,0,1.52014,2.78595,3.71385,6.94439,0,0,0,0,0,0,1.62622,2.9305,3.83855,7.24726,0,0,0,0,0,0,1.63437,2.83102,3.80371,7.04808,0,0,0,0,0,0,1.78892,2.87104,3.8016,6.98109,0,0,0,0,0,0,1.45423,2.54332,3.35073,6.03273,0,0,0,0,0,0,258.982,260.13634,262.47802,272.9807,0,0,0,0,0,0,261.2575,262.2648,264.36628,274.47183,0,0,0,0,0,0,264.83046,265.91704,268.16522,278.65589,0,0,0,0,0,0,258.82207,259.92387,262.19675,272.57002,0,0,0,0,0,0,266.24776,266.75077,268.02288,276.68567,0,0,0,0,0,0,261.79149,262.44192,263.95564,272.95718,0,0,0,0,0,0,264.37065,264.82071,266.00526,274.44882,0,0,0,0,0,0,263.9185,264.64016,266.27061,275.55026,0,0,0,0,0,0,260.13985,260.75493,262.16893,270.92047,0,0,0,0,0,0,0.00483,0.00544,0.00652,0.01289,0,0,0,0,0,0,0.00484,0.00545,0.00652,0.01288,0,0,0,0,0,0,0.00492,0.00554,0.00662,0.01305,0,0,0,0,0,0,0.00473,0.00533,0.0064,0.01266,0,0,0,0,0,0,0.0049,0.00551,0.00659,0.013,0,0,0,0,0,0,0.00479,0.00539,0.00646,0.01276,0,0,0,0,0,0,0.00483,0.00544,0.00651,0.01287,0,0,0,0,0,0,0.00488,0.00549,0.00657,0.01297,0,0,0,0,0,0,0.00491,0.00553,0.00662,0.01308,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.0183,0,0,0,0,0,0,0.00947,0.01095,0.01373,0.01829,0,0,0,0,0,0,0.00942,0.0109,0.01366,0.0182,0,0,0,0,0,0,0.00946,0.01094,0.01372,0.01828,0,0,0,0,0,0,0.00943,0.01091,0.01367,0.01822,0,0,0,0,0,0,0.00945,0.01093,0.01371,0.01827,0,0,0,0,0,0,0.00947,0.01096,0.01374,0.0183,0,0,0,0,0,0,0.00949,0.01098,0.01377,0.01834,0,0,0,0,0,0,0.10442,0.16865,0.15241,0.46982,0,0,0,0,0,0,0.1008,0.16773,0.1505,0.46098,0,0,0,0,0,0,0.10414,0.1802,0.16066,0.5253,0,0,0,0,0,0,0.11257,0.18925,0.16949,0.55472,0,0,0,0,0,0,0.09749,0.17291,0.15258,0.51553,0,0,0,0,0,0,0.10078,0.17843,0.15748,0.52727,0,0,0,0,0,0,0.10239,0.17383,0.15392,0.50724,0,0,0,0,0,0,0.11026,0.17998,0.16782,0.53721,0,0,0,0,0,0,0.0752,0.12741,0.15179,0.46901,0,0,0,0,0,0,0.00138,0.00234,0.00329,0.00858,0,0,0,0,0,0,0.00129,0.00216,0.00305,0.00766,0,0,0,0,0,0,0.00117,0.00194,0.00316,0.00817,0,0,0,0,0,0,0.00141,0.00238,0.00341,0.00895,0,0,0,0,0,0,0.00112,0.00184,0.00245,0.0052,0,0,0,0,0,0,0.00109,0.00179,0.00255,0.0057,0,0,0,0,0,0,0.00106,0.00174,0.00231,0.0049,0,0,0,0,0,0,0.00112,0.00186,0.00269,0.00631,0,0,0,0,0,0,0.00095,0.00155,0.00225,0.00484,0,0,0,0,0,0,0.02352,0.0257,0.02795,0.03986,0,0,0,0,0,0,0.02397,0.02594,0.02801,0.03834,0,0,0,0,0,0,0.02569,0.02744,0.03032,0.04163,0,0,0,0,0,0,0.02219,0.02442,0.02684,0.03942,0,0,0,0,0,0,0.0251,0.02666,0.02801,0.03408,0,0,0,0,0,0,0.02289,0.02443,0.02613,0.03312,0,0,0,0,0,0,0.02294,0.02439,0.02563,0.03131,0,0,0,0,0,0,0.02415,0.02577,0.02766,0.03573,0,0,0,0,0,0,0.02362,0.02489,0.02643,0.03209,0,0,0,0,0,0,0.00539,0.00732,0.0093,0.01985,0,0,0,0,0,0,0.00526,0.007,0.00883,0.01797,0,0,0,0,0,0,0.00526,0.0068,0.00935,0.01936,0,0,0,0,0,0,0.00529,0.00726,0.0094,0.02054,0,0,0,0,0,0,0.00504,0.00642,0.00761,0.01299,0,0,0,0,0,0,0.00472,0.00608,0.00758,0.01377,0,0,0,0,0,0,0.00467,0.00596,0.00705,0.01208,0,0,0,0,0,0,0.00497,0.0064,0.00807,0.01521,0,0,0,0,0,0,0.00456,0.00569,0.00705,0.01206,0,0,0,0,0,0,0.00551,0.00498,0.00167,0.00174,0,0,0,0,0,0,0.0056,0.00502,0.00169,0.00175,0,0,0,0,0,0,0.0058,0.00509,0.00171,0.00178,0,0,0,0,0,0,0.00972,0.00497,0.00167,0.00174,0,0,0,0,0,0,0.00579,0.00511,0.00171,0.00177,0,0,0,0,0,0,0.00572,0.00502,0.00168,0.00174,0,0,0,0,0,0,0.0079,0.00507,0.0017,0.00175,0,0,0,0,0,0,0.00892,0.00454,0.00167,0.00173,0,0,0,0,0,0,0.00326,0.00236,0.00155,0.0016,0,0,0,0,0,0,0.08586,0.12696,0.1798,0.59575,0,0,0,0,0,0,0.07547,0.11512,0.16492,0.56352,0,0,0,0,0,0,0.08347,0.13007,0.18393,0.65564,0,0,0,0,0,0,0.097,0.14287,0.20141,0.68613,0,0,0,0,0,0,0.05604,0.09956,0.15044,0.58993,0,0,0,0,0,0,0.05965,0.10373,0.15463,0.60458,0,0,0,0,0,0,0.05659,0.09733,0.14747,0.57396,0,0,0,0,0,0,0.07098,0.11084,0.16694,0.61349,0,0,0,0,0,0,0.05187,0.08729,0.14693,0.54041,0,0,0,0,0 +Small SUV,PH40G,2015,0,0,0.02105,0.02153,0.02214,0.02406,0,0,0,0,0,0,0.02169,0.02213,0.02267,0.02433,0,0,0,0,0,0,0.02363,0.02419,0.02476,0.02656,0,0,0,0,0,0,0.01965,0.02016,0.02079,0.02284,0,0,0,0,0,0,0.02316,0.02346,0.02384,0.02483,0,0,0,0,0,0,0.021,0.02136,0.02177,0.0229,0,0,0,0,0,0,0.0211,0.02137,0.02171,0.02259,0,0,0,0,0,0,0.02218,0.02257,0.02301,0.0243,0,0,0,0,0,0,0.02198,0.02228,0.02261,0.02347,0,0,0,0,0,0,0.00805,0.00623,0.00667,0.01002,0,0,0,0,0,0,0.0074,0.00575,0.00625,0.00931,0,0,0,0,0,0,0.00768,0.0064,0.00697,0.01073,0,0,0,0,0,0,0.00842,0.00705,0.00766,0.01172,0,0,0,0,0,0,0.00573,0.00513,0.00589,0.00878,0,0,0,0,0,0,0.00608,0.00543,0.00618,0.00929,0,0,0,0,0,0,0.00577,0.00512,0.0059,0.00871,0,0,0,0,0,0,0.00636,0.00562,0.00627,0.00941,0,0,0,0,0,0,0.00479,0.00502,0.00571,0.00826,0,0,0,0,0,0,1.20946,2.16828,2.95967,4.46943,0,0,0,0,0,0,1.20605,2.16593,2.9716,4.44162,0,0,0,0,0,0,1.32541,2.39526,3.36397,5.2091,0,0,0,0,0,0,1.31936,2.55072,3.58753,5.51337,0,0,0,0,0,0,1.15925,2.33057,3.30072,4.96191,0,0,0,0,0,0,1.2123,2.38725,3.38787,5.14376,0,0,0,0,0,0,1.19222,2.39774,3.3887,5.0806,0,0,0,0,0,0,1.21916,2.36381,3.29637,4.96617,0,0,0,0,0,0,1.09269,2.12101,2.93067,4.35071,0,0,0,0,0,0,208.90289,210.10545,212.07411,233.92207,0,0,0,0,0,0,210.65993,211.72602,213.50303,235.13312,0,0,0,0,0,0,213.57494,214.72084,216.61797,238.73532,0,0,0,0,0,0,208.76815,209.92794,211.84557,233.58344,0,0,0,0,0,0,214.42223,215.01792,216.13277,236.80911,0,0,0,0,0,0,210.91686,211.65007,212.95748,233.70185,0,0,0,0,0,0,212.89901,213.44445,214.49048,234.89937,0,0,0,0,0,0,212.65933,213.45823,214.85921,235.9354,0,0,0,0,0,0,209.53696,210.22218,211.44203,231.89469,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.00661,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00668,0,0,0,0,0,0,0.00284,0.00325,0.00384,0.0065,0,0,0,0,0,0,0.00294,0.00335,0.00395,0.00666,0,0,0,0,0,0,0.00287,0.00328,0.00388,0.00654,0,0,0,0,0,0,0.0029,0.00331,0.00391,0.0066,0,0,0,0,0,0,0.00293,0.00334,0.00394,0.00665,0,0,0,0,0,0,0.00295,0.00336,0.00397,0.00671,0,0,0,0,0,0,0.00947,0.0108,0.01374,0.01445,0,0,0,0,0,0,0.00948,0.01081,0.01376,0.01446,0,0,0,0,0,0,0.00948,0.0108,0.01375,0.01446,0,0,0,0,0,0,0.00943,0.01075,0.01369,0.01439,0,0,0,0,0,0,0.00947,0.01079,0.01374,0.01445,0,0,0,0,0,0,0.00944,0.01076,0.0137,0.0144,0,0,0,0,0,0,0.00947,0.01079,0.01373,0.01444,0,0,0,0,0,0,0.00949,0.01081,0.01376,0.01447,0,0,0,0,0,0,0.00951,0.01083,0.01379,0.0145,0,0,0,0,0,0,0.06363,0.07889,0.11795,0.21915,0,0,0,0,0,0,0.0633,0.07755,0.11629,0.21619,0,0,0,0,0,0,0.06331,0.0835,0.12449,0.2399,0,0,0,0,0,0,0.06635,0.08912,0.1328,0.25532,0,0,0,0,0,0,0.05817,0.07756,0.11713,0.23003,0,0,0,0,0,0,0.06086,0.08101,0.12191,0.23739,0,0,0,0,0,0,0.05958,0.07843,0.1186,0.22974,0,0,0,0,0,0,0.06332,0.08649,0.12954,0.24752,0,0,0,0,0,0,0.04577,0.07747,0.11635,0.21957,0,0,0,0,0,0,0.00118,0.002,0.00292,0.00564,0,0,0,0,0,0,0.00112,0.00191,0.00277,0.00519,0,0,0,0,0,0,0.00102,0.00194,0.00283,0.0054,0,0,0,0,0,0,0.00118,0.00204,0.00298,0.00582,0,0,0,0,0,0,0.00102,0.00166,0.00236,0.004,0,0,0,0,0,0,0.00098,0.00169,0.00242,0.00422,0,0,0,0,0,0,0.00097,0.00158,0.00223,0.00376,0,0,0,0,0,0,0.001,0.00175,0.00251,0.0045,0,0,0,0,0,0,0.00087,0.00154,0.00218,0.00367,0,0,0,0,0,0,0.02301,0.02484,0.02695,0.03332,0,0,0,0,0,0,0.02356,0.02529,0.02725,0.03288,0,0,0,0,0,0,0.02533,0.0274,0.02943,0.03544,0,0,0,0,0,0,0.02162,0.02352,0.0257,0.0324,0,0,0,0,0,0,0.02486,0.02622,0.02775,0.03146,0,0,0,0,0,0,0.02265,0.02418,0.02578,0.02986,0,0,0,0,0,0,0.02272,0.02401,0.02543,0.02882,0,0,0,0,0,0,0.02385,0.02547,0.02717,0.03173,0,0,0,0,0,0,0.02343,0.02485,0.02624,0.02957,0,0,0,0,0,0,0.00494,0.00656,0.00843,0.01406,0,0,0,0,0,0,0.00489,0.00643,0.00816,0.01314,0,0,0,0,0,0,0.00493,0.00677,0.00856,0.01388,0,0,0,0,0,0,0.00478,0.00647,0.00839,0.01432,0,0,0,0,0,0,0.00483,0.00604,0.00739,0.01067,0,0,0,0,0,0,0.00451,0.00586,0.00728,0.01089,0,0,0,0,0,0,0.00448,0.00562,0.00687,0.00988,0,0,0,0,0,0,0.0047,0.00614,0.00764,0.01167,0,0,0,0,0,0,0.0044,0.00566,0.00688,0.00983,0,0,0,0,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.00403,0.00135,0.00136,0.0015,0,0,0,0,0,0,0.00409,0.00137,0.00138,0.00152,0,0,0,0,0,0,0.004,0.00134,0.00135,0.00149,0,0,0,0,0,0,0.0041,0.00137,0.00138,0.00151,0,0,0,0,0,0,0.00404,0.00135,0.00136,0.00149,0,0,0,0,0,0,0.00407,0.00136,0.00137,0.0015,0,0,0,0,0,0,0.00365,0.00134,0.00135,0.00148,0,0,0,0,0,0,0.00189,0.00124,0.00125,0.00137,0,0,0,0,0,0,0.06107,0.08856,0.14503,0.35368,0,0,0,0,0,0,0.05602,0.08205,0.13702,0.33849,0,0,0,0,0,0,0.05982,0.09044,0.15099,0.37484,0,0,0,0,0,0,0.06432,0.09805,0.16208,0.39252,0,0,0,0,0,0,0.04478,0.07489,0.13466,0.34278,0,0,0,0,0,0,0.04682,0.07721,0.13691,0.34637,0,0,0,0,0,0,0.04432,0.07383,0.13301,0.33611,0,0,0,0,0,0,0.05163,0.08321,0.14411,0.35965,0,0,0,0,0,0,0.04191,0.07401,0.13211,0.33009,0,0,0,0 +Small SUV,PH40G,2020,0,0,0,0.02099,0.02138,0.02179,0.02316,0,0,0,0,0,0,0.02164,0.022,0.02236,0.02357,0,0,0,0,0,0,0.02368,0.02405,0.02443,0.02572,0,0,0,0,0,0,0.01959,0.02,0.02042,0.02187,0,0,0,0,0,0,0.02312,0.02337,0.02362,0.02441,0,0,0,0,0,0,0.02099,0.02126,0.02153,0.02241,0,0,0,0,0,0,0.02106,0.02129,0.02151,0.02222,0,0,0,0,0,0,0.02216,0.02246,0.02276,0.02373,0,0,0,0,0,0,0.02198,0.02221,0.02242,0.02311,0,0,0,0,0,0,0.00622,0.00531,0.00528,0.00725,0,0,0,0,0,0,0.00559,0.00486,0.00487,0.00671,0,0,0,0,0,0,0.00588,0.0054,0.00543,0.0077,0,0,0,0,0,0,0.0065,0.00598,0.006,0.00847,0,0,0,0,0,0,0.00398,0.00413,0.00431,0.00622,0,0,0,0,0,0,0.00433,0.00442,0.00458,0.00661,0,0,0,0,0,0,0.00396,0.00411,0.0043,0.00619,0,0,0,0,0,0,0.00482,0.00462,0.00472,0.00671,0,0,0,0,0,0,0.00407,0.00401,0.00416,0.00586,0,0,0,0,0,0,0.99206,1.52807,1.92959,2.9974,0,0,0,0,0,0,0.97371,1.51164,1.91354,2.97491,0,0,0,0,0,0,1.02676,1.67356,2.16254,3.49728,0,0,0,0,0,0,1.09388,1.78868,2.31873,3.72493,0,0,0,0,0,0,0.92531,1.57942,2.04718,3.30587,0,0,0,0,0,0,0.9563,1.62959,2.11972,3.44477,0,0,0,0,0,0,0.95705,1.62668,2.10664,3.39496,0,0,0,0,0,0,0.98782,1.62281,2.08061,3.31894,0,0,0,0,0,0,0.88084,1.44133,1.8306,2.88136,0,0,0,0,0,0,179.40777,180.59417,182.57119,199.38448,0,0,0,0,0,0,180.84125,181.91036,183.716,200.31641,0,0,0,0,0,0,183.38144,184.52199,186.43889,203.43358,0,0,0,0,0,0,179.28322,180.43242,182.36328,199.08663,0,0,0,0,0,0,183.81824,184.48271,185.69332,201.40737,0,0,0,0,0,0,180.89197,181.67301,183.05444,198.87244,0,0,0,0,0,0,182.49343,183.11355,184.26012,199.76077,0,0,0,0,0,0,182.41445,183.25373,184.7213,200.80969,0,0,0,0,0,0,179.66247,180.40088,181.70163,197.27036,0,0,0,0,0,0,0.00297,0.00336,0.00395,0.00534,0,0,0,0,0,0,0.00298,0.00336,0.00395,0.00533,0,0,0,0,0,0,0.00302,0.00341,0.004,0.00539,0,0,0,0,0,0,0.00291,0.00329,0.00387,0.00525,0,0,0,0,0,0,0.00301,0.00339,0.00398,0.00537,0,0,0,0,0,0,0.00294,0.00333,0.00391,0.00528,0,0,0,0,0,0,0.00297,0.00335,0.00394,0.00533,0,0,0,0,0,0,0.003,0.00338,0.00397,0.00537,0,0,0,0,0,0,0.00302,0.00341,0.00401,0.00541,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01375,0,0,0,0,0,0,0.00946,0.01087,0.01374,0.01374,0,0,0,0,0,0,0.00941,0.01082,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01086,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01083,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01088,0.01375,0.01375,0,0,0,0,0,0,0.00948,0.0109,0.01378,0.01378,0,0,0,0,0,0,0.04319,0.07113,0.09563,0.13529,0,0,0,0,0,0,0.04245,0.06984,0.09407,0.13307,0,0,0,0,0,0,0.04277,0.0749,0.10023,0.14497,0,0,0,0,0,0,0.04512,0.08024,0.10733,0.15532,0,0,0,0,0,0,0.03788,0.06898,0.09306,0.13578,0,0,0,0,0,0,0.04,0.07245,0.09754,0.1417,0,0,0,0,0,0,0.03881,0.07,0.09457,0.1369,0,0,0,0,0,0,0.04413,0.0775,0.10403,0.14951,0,0,0,0,0,0,0.0401,0.06925,0.09321,0.13276,0,0,0,0,0,0,0.00108,0.00175,0.00233,0.00418,0,0,0,0,0,0,0.00103,0.00167,0.00221,0.00391,0,0,0,0,0,0,0.00105,0.0017,0.00226,0.00403,0,0,0,0,0,0,0.00109,0.00177,0.00237,0.00429,0,0,0,0,0,0,0.00092,0.00146,0.00189,0.00319,0,0,0,0,0,0,0.00093,0.00149,0.00194,0.00331,0,0,0,0,0,0,0.00087,0.00139,0.00179,0.003,0,0,0,0,0,0,0.00096,0.00153,0.00201,0.00348,0,0,0,0,0,0,0.00085,0.00135,0.00175,0.00292,0,0,0,0,0,0,0.02277,0.02427,0.02563,0.03002,0,0,0,0,0,0,0.02336,0.02476,0.02602,0.03001,0,0,0,0,0,0,0.02541,0.02686,0.02816,0.03234,0,0,0,0,0,0,0.02139,0.02293,0.02433,0.02891,0,0,0,0,0,0,0.02464,0.0258,0.02676,0.02969,0,0,0,0,0,0,0.02253,0.02373,0.02475,0.02788,0,0,0,0,0,0,0.02251,0.0236,0.0245,0.02719,0,0,0,0,0,0,0.02375,0.02501,0.02609,0.02947,0,0,0,0,0,0,0.0234,0.02446,0.02534,0.02796,0,0,0,0,0,0,0.00473,0.00606,0.00726,0.01114,0,0,0,0,0,0,0.00472,0.00596,0.00707,0.0106,0,0,0,0,0,0,0.00501,0.00629,0.00744,0.01114,0,0,0,0,0,0,0.00459,0.00595,0.00718,0.01123,0,0,0,0,0,0,0.00464,0.00566,0.00652,0.00911,0,0,0,0,0,0,0.00441,0.00547,0.00637,0.00914,0,0,0,0,0,0,0.0043,0.00526,0.00605,0.00843,0,0,0,0,0,0,0.00461,0.00573,0.00668,0.00967,0,0,0,0,0,0,0.00437,0.00531,0.00608,0.0084,0,0,0,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00128,0,0,0,0,0,0,0.00117,0.00118,0.00119,0.0013,0,0,0,0,0,0,0.00114,0.00115,0.00116,0.00127,0,0,0,0,0,0,0.00117,0.00118,0.00118,0.00128,0,0,0,0,0,0,0.00115,0.00116,0.00117,0.00127,0,0,0,0,0,0,0.00116,0.00117,0.00118,0.00127,0,0,0,0,0,0,0.00115,0.00115,0.00116,0.00126,0,0,0,0,0,0,0.00106,0.00106,0.00107,0.00116,0,0,0,0,0,0,0.05341,0.07612,0.11524,0.26525,0,0,0,0,0,0,0.04838,0.06964,0.10722,0.2538,0,0,0,0,0,0,0.05156,0.0772,0.11885,0.27833,0,0,0,0,0,0,0.05602,0.08414,0.12819,0.29028,0,0,0,0,0,0,0.03717,0.06063,0.10004,0.2557,0,0,0,0,0,0,0.03927,0.06344,0.1031,0.25731,0,0,0,0,0,0,0.0365,0.05927,0.0978,0.25022,0,0,0,0,0,0,0.04437,0.06883,0.1096,0.26769,0,0,0,0,0,0,0.03732,0.05944,0.09752,0.24821,0,0,0 +Small SUV,PH40G,2025,0,0,0,0,0.0208,0.02104,0.0213,0.02238,0,0,0,0,0,0,0.02147,0.02169,0.02192,0.02288,0,0,0,0,0,0,0.02349,0.02373,0.02397,0.02499,0,0,0,0,0,0,0.01939,0.01965,0.01992,0.02104,0,0,0,0,0,0,0.02299,0.02315,0.0233,0.02395,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.0219,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.0218,0,0,0,0,0,0,0.02202,0.0222,0.02239,0.02317,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02271,0,0,0,0,0,0,0.00492,0.00386,0.00374,0.00549,0,0,0,0,0,0,0.00427,0.00341,0.00333,0.00499,0,0,0,0,0,0,0.0046,0.0038,0.00372,0.00575,0,0,0,0,0,0,0.00517,0.00426,0.00416,0.00637,0,0,0,0,0,0,0.00261,0.00245,0.00253,0.0043,0,0,0,0,0,0,0.00298,0.00273,0.00278,0.00466,0,0,0,0,0,0,0.00255,0.0024,0.00249,0.00425,0,0,0,0,0,0,0.00346,0.00299,0.003,0.00481,0,0,0,0,0,0,0.00263,0.00238,0.00244,0.00403,0,0,0,0,0,0,0.66178,0.9675,1.23518,2.08322,0,0,0,0,0,0,0.63104,0.93411,1.19784,2.0427,0,0,0,0,0,0,0.67437,1.04187,1.35999,2.41971,0,0,0,0,0,0,0.72303,1.12145,1.46792,2.59248,0,0,0,0,0,0,0.54623,0.9063,1.19724,2.19896,0,0,0,0,0,0,0.57771,0.95224,1.26003,2.3157,0,0,0,0,0,0,0.56408,0.93382,1.23279,2.26084,0,0,0,0,0,0,0.61098,0.96542,1.25666,2.24153,0,0,0,0,0,0,0.5244,0.83354,1.07725,1.911,0,0,0,0,0,0,147.83877,148.5656,150.03975,167.74222,0,0,0,0,0,0,148.95279,149.57707,150.89656,168.40381,0,0,0,0,0,0,151.07933,151.76098,153.17582,171.08617,0,0,0,0,0,0,147.72954,148.42581,149.86082,167.47969,0,0,0,0,0,0,151.1798,151.45314,152.23791,168.90959,0,0,0,0,0,0,148.84387,149.22183,150.16391,166.91435,0,0,0,0,0,0,150.07392,150.31158,151.04251,167.49902,0,0,0,0,0,0,150.12127,150.54642,151.56239,168.58579,0,0,0,0,0,0,147.78842,148.13016,148.99882,165.4903,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00299,0.00335,0.00393,0.00512,0,0,0,0,0,0,0.00304,0.0034,0.00398,0.00518,0,0,0,0,0,0,0.00293,0.00329,0.00386,0.00503,0,0,0,0,0,0,0.00303,0.00339,0.00397,0.00516,0,0,0,0,0,0,0.00296,0.00332,0.00389,0.00507,0,0,0,0,0,0,0.00299,0.00335,0.00392,0.00511,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00515,0,0,0,0,0,0,0.00304,0.0034,0.00399,0.0052,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00946,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01367,0.01367,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00942,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.0265,0.03999,0.05369,0.09116,0,0,0,0,0,0,0.02562,0.03874,0.05217,0.08907,0,0,0,0,0,0,0.02589,0.04123,0.05522,0.09728,0,0,0,0,0,0,0.02746,0.04433,0.05933,0.10468,0,0,0,0,0,0,0.02139,0.03597,0.04887,0.08873,0,0,0,0,0,0,0.02313,0.03846,0.05201,0.09353,0,0,0,0,0,0,0.02193,0.03659,0.04975,0.08946,0,0,0,0,0,0,0.02566,0.04146,0.05588,0.09885,0,0,0,0,0,0,0.02278,0.03656,0.04954,0.08688,0,0,0,0,0,0,0.00071,0.00113,0.0015,0.00301,0,0,0,0,0,0,0.00068,0.00108,0.00143,0.00283,0,0,0,0,0,0,0.00069,0.00109,0.00146,0.0029,0,0,0,0,0,0,0.00072,0.00114,0.00153,0.00307,0,0,0,0,0,0,0.0006,0.00094,0.00123,0.00233,0,0,0,0,0,0,0.00061,0.00096,0.00126,0.00241,0,0,0,0,0,0,0.00058,0.0009,0.00116,0.00218,0,0,0,0,0,0,0.00063,0.00099,0.0013,0.00252,0,0,0,0,0,0,0.00056,0.00088,0.00113,0.00214,0,0,0,0,0,0,0.02198,0.02291,0.02378,0.02732,0,0,0,0,0,0,0.0226,0.02348,0.02428,0.02753,0,0,0,0,0,0,0.02464,0.02554,0.02638,0.02976,0,0,0,0,0,0,0.02058,0.02154,0.02244,0.02608,0,0,0,0,0,0,0.02399,0.02471,0.02534,0.0278,0,0,0,0,0,0,0.02187,0.02262,0.02328,0.02588,0,0,0,0,0,0,0.0219,0.02258,0.02316,0.02542,0,0,0,0,0,0,0.02307,0.02385,0.02455,0.02734,0,0,0,0,0,0,0.0228,0.02347,0.02403,0.02626,0,0,0,0,0,0,0.00403,0.00485,0.00562,0.00875,0,0,0,0,0,0,0.00405,0.00482,0.00554,0.00841,0,0,0,0,0,0,0.00433,0.00512,0.00586,0.00885,0,0,0,0,0,0,0.00387,0.00471,0.00551,0.00873,0,0,0,0,0,0,0.00407,0.0047,0.00526,0.00743,0,0,0,0,0,0,0.00382,0.00448,0.00506,0.00737,0,0,0,0,0,0,0.00375,0.00435,0.00487,0.00687,0,0,0,0,0,0,0.00401,0.0047,0.00532,0.00779,0,0,0,0,0,0,0.00384,0.00443,0.00493,0.00691,0,0,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00098,0.00109,0,0,0,0,0,0,0.00094,0.00095,0.00096,0.00107,0,0,0,0,0,0,0.00096,0.00097,0.00097,0.00108,0,0,0,0,0,0,0.00095,0.00095,0.00096,0.00106,0,0,0,0,0,0,0.00096,0.00096,0.00096,0.00107,0,0,0,0,0,0,0.00094,0.00095,0.00095,0.00106,0,0,0,0,0,0,0.00087,0.00087,0.00088,0.00098,0,0,0,0,0,0,0.04543,0.05964,0.08818,0.22467,0,0,0,0,0,0,0.04023,0.05306,0.08002,0.21368,0,0,0,0,0,0,0.04351,0.05933,0.08944,0.2346,0,0,0,0,0,0,0.04783,0.06536,0.0972,0.24394,0,0,0,0,0,0,0.02813,0.04123,0.06826,0.21042,0,0,0,0,0,0,0.03059,0.0444,0.07181,0.21262,0,0,0,0,0,0,0.02727,0.03955,0.06551,0.20423,0,0,0,0,0,0,0.03528,0.04953,0.07808,0.22178,0,0,0,0,0,0,0.02777,0.03996,0.06598,0.20394,0,0 +Small SUV,PH40G,2030,0,0,0,0,0,0.0208,0.02104,0.02129,0.02202,0,0,0,0,0,0,0.02147,0.02169,0.02191,0.02257,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02465,0,0,0,0,0,0,0.01939,0.01964,0.0199,0.02067,0,0,0,0,0,0,0.02299,0.02314,0.0233,0.02374,0,0,0,0,0,0,0.02085,0.02102,0.02119,0.02167,0,0,0,0,0,0,0.02094,0.02108,0.02122,0.02161,0,0,0,0,0,0,0.02201,0.0222,0.02238,0.02291,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02252,0,0,0,0,0,0,0.00455,0.00347,0.00337,0.00458,0,0,0,0,0,0,0.00391,0.00302,0.00296,0.00409,0,0,0,0,0,0,0.00424,0.00337,0.00331,0.00467,0,0,0,0,0,0,0.00479,0.0038,0.00372,0.0052,0,0,0,0,0,0,0.00223,0.00201,0.00209,0.00318,0,0,0,0,0,0,0.0026,0.00228,0.00234,0.00351,0,0,0,0,0,0,0.00216,0.00196,0.00205,0.00313,0,0,0,0,0,0,0.00308,0.00256,0.00258,0.00374,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00301,0,0,0,0,0,0,0.58559,0.85434,1.10349,1.64391,0,0,0,0,0,0,0.55211,0.81785,1.06129,1.59145,0,0,0,0,0,0,0.59301,0.91344,1.20586,1.86989,0,0,0,0,0,0,0.63713,0.98481,1.30299,2.01056,0,0,0,0,0,0,0.45912,0.77028,1.03065,1.63208,0,0,0,0,0,0,0.4905,0.81464,1.09123,1.73174,0,0,0,0,0,0,0.47362,0.79327,1.06122,1.67854,0,0,0,0,0,0,0.52395,0.83228,1.09601,1.69965,0,0,0,0,0,0,0.44194,0.71054,0.92995,1.43299,0,0,0,0,0,0,135.38297,136.63864,138.73799,150.23079,0,0,0,0,0,0,136.3743,137.53975,139.49517,150.75644,0,0,0,0,0,0,138.33607,139.56287,141.62039,153.192,0,0,0,0,0,0,135.28045,136.50771,138.57013,149.99007,0,0,0,0,0,0,138.3167,139.16703,140.61766,150.98435,0,0,0,0,0,0,136.20994,137.14778,138.73931,149.27268,0,0,0,0,0,0,137.29769,138.11108,139.50502,149.70743,0,0,0,0,0,0,137.38947,138.37583,140.04413,150.79217,0,0,0,0,0,0,135.22477,136.12443,137.63836,147.95375,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.00511,0,0,0,0,0,0,0.00299,0.00334,0.00393,0.0051,0,0,0,0,0,0,0.00304,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00293,0.00328,0.00386,0.00502,0,0,0,0,0,0,0.00303,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00296,0.00331,0.00389,0.00506,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00301,0.00337,0.00396,0.00514,0,0,0,0,0,0,0.00304,0.00339,0.00399,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.01081,0.01368,0.01368,0,0,0,0,0,0,0.00945,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01082,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01085,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01087,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02145,0.03182,0.0438,0.06849,0,0,0,0,0,0,0.02053,0.03058,0.04228,0.06642,0,0,0,0,0,0,0.02069,0.0323,0.0445,0.07183,0,0,0,0,0,0,0.02195,0.03471,0.04776,0.07729,0,0,0,0,0,0,0.01633,0.02723,0.03835,0.06353,0,0,0,0,0,0,0.01792,0.0294,0.04112,0.06757,0,0,0,0,0,0,0.01676,0.02772,0.03905,0.06418,0,0,0,0,0,0,0.02,0.03192,0.04444,0.07192,0,0,0,0,0,0,0.01752,0.02798,0.03927,0.06295,0,0,0,0,0,0,0.00071,0.00112,0.0015,0.00249,0,0,0,0,0,0,0.00068,0.00108,0.00142,0.00234,0,0,0,0,0,0,0.00069,0.00109,0.00145,0.0024,0,0,0,0,0,0,0.00072,0.00114,0.00152,0.00254,0,0,0,0,0,0,0.0006,0.00094,0.00122,0.00193,0,0,0,0,0,0,0.00061,0.00096,0.00125,0.002,0,0,0,0,0,0,0.00058,0.0009,0.00115,0.00182,0,0,0,0,0,0,0.00063,0.00099,0.0013,0.00209,0,0,0,0,0,0,0.00056,0.00087,0.00113,0.00178,0,0,0,0,0,0,0.02197,0.0229,0.02376,0.02611,0,0,0,0,0,0,0.0226,0.02347,0.02426,0.02641,0,0,0,0,0,0,0.02464,0.02553,0.02635,0.0286,0,0,0,0,0,0,0.02058,0.02153,0.02241,0.02484,0,0,0,0,0,0,0.02399,0.02471,0.02533,0.02693,0,0,0,0,0,0,0.02187,0.02261,0.02326,0.02497,0,0,0,0,0,0,0.0219,0.02257,0.02314,0.02462,0,0,0,0,0,0,0.02306,0.02384,0.02453,0.02637,0,0,0,0,0,0,0.0228,0.02346,0.02403,0.02547,0,0,0,0,0,0,0.00402,0.00484,0.0056,0.00768,0,0,0,0,0,0,0.00404,0.00482,0.00552,0.00742,0,0,0,0,0,0,0.00432,0.00512,0.00584,0.00783,0,0,0,0,0,0,0.00387,0.00471,0.00548,0.00764,0,0,0,0,0,0,0.00406,0.0047,0.00525,0.00667,0,0,0,0,0,0,0.00382,0.00448,0.00505,0.00657,0,0,0,0,0,0,0.00375,0.00435,0.00485,0.00616,0,0,0,0,0,0,0.004,0.00469,0.00531,0.00693,0,0,0,0,0,0,0.00384,0.00443,0.00493,0.0062,0,0,0,0,0,0,0.00086,0.00087,0.00089,0.00096,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00098,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00096,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00096,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00095,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00096,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00095,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00087,0,0,0,0,0,0,0.0431,0.05549,0.08243,0.19874,0,0,0,0,0,0,0.0379,0.04894,0.07427,0.18756,0,0,0,0,0,0,0.04116,0.0548,0.08314,0.2054,0,0,0,0,0,0,0.0454,0.06055,0.09046,0.21365,0,0,0,0,0,0,0.02565,0.03653,0.0615,0.17931,0,0,0,0,0,0,0.02816,0.03971,0.0651,0.1819,0,0,0,0,0,0,0.02475,0.03481,0.05865,0.17291,0,0,0,0,0,0,0.03274,0.04483,0.07135,0.19132,0,0,0,0,0,0,0.02515,0.03527,0.05933,0.17412,0 +Small SUV,PH40G,2035,0,0,0,0,0,0,0.0208,0.02104,0.0213,0.0219,0,0,0,0,0,0,0.02147,0.02168,0.02192,0.02246,0,0,0,0,0,0,0.02349,0.02372,0.02396,0.02454,0,0,0,0,0,0,0.01939,0.01964,0.01991,0.02055,0,0,0,0,0,0,0.02298,0.02314,0.0233,0.02366,0,0,0,0,0,0,0.02085,0.02101,0.02119,0.02159,0,0,0,0,0,0,0.02093,0.02108,0.02122,0.02154,0,0,0,0,0,0,0.02201,0.0222,0.02239,0.02282,0,0,0,0,0,0,0.02186,0.022,0.02214,0.02245,0,0,0,0,0,0,0.00454,0.00347,0.00336,0.00425,0,0,0,0,0,0,0.0039,0.00303,0.00296,0.00376,0,0,0,0,0,0,0.00423,0.00338,0.00331,0.00425,0,0,0,0,0,0,0.00478,0.00381,0.00371,0.00476,0,0,0,0,0,0,0.00222,0.00201,0.00209,0.00275,0,0,0,0,0,0,0.00259,0.00228,0.00234,0.00307,0,0,0,0,0,0,0.00215,0.00196,0.00205,0.0027,0,0,0,0,0,0,0.00307,0.00256,0.00258,0.00334,0,0,0,0,0,0,0.00223,0.00195,0.00203,0.00263,0,0,0,0,0,0,0.58434,0.85662,1.10126,1.49242,0,0,0,0,0,0,0.55093,0.8194,1.05957,1.43587,0,0,0,0,0,0,0.59172,0.91542,1.20375,1.67532,0,0,0,0,0,0,0.63576,0.98675,1.30085,1.8038,0,0,0,0,0,0,0.45804,0.76944,1.03048,1.4328,0,0,0,0,0,0,0.48935,0.81421,1.09075,1.52526,0,0,0,0,0,0,0.47257,0.79278,1.06081,1.47356,0,0,0,0,0,0,0.5227,0.83228,1.09525,1.51029,0,0,0,0,0,0,0.4409,0.71023,0.92953,1.26793,0,0,0,0,0,0,135.35035,136.63097,138.72659,144.30938,0,0,0,0,0,0,136.34407,137.5329,139.48452,144.793,0,0,0,0,0,0,138.30412,139.55545,141.60923,147.14325,0,0,0,0,0,0,135.2482,136.50027,138.55892,144.07655,0,0,0,0,0,0,138.29444,139.16229,140.60971,144.94019,0,0,0,0,0,0,136.18545,137.14241,138.73072,143.32004,0,0,0,0,0,0,137.27632,138.10654,139.49763,143.70931,0,0,0,0,0,0,137.3638,138.37006,140.03504,144.78679,0,0,0,0,0,0,135.20198,136.11957,137.63026,142.03885,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.00511,0,0,0,0,0,0,0.00298,0.00334,0.00392,0.0051,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00516,0,0,0,0,0,0,0.00292,0.00327,0.00385,0.00502,0,0,0,0,0,0,0.00302,0.00338,0.00396,0.00514,0,0,0,0,0,0,0.00295,0.00331,0.00389,0.00505,0,0,0,0,0,0,0.00297,0.00333,0.00392,0.0051,0,0,0,0,0,0,0.003,0.00337,0.00395,0.00513,0,0,0,0,0,0,0.00303,0.00339,0.00398,0.00518,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00946,0.01086,0.01374,0.01374,0,0,0,0,0,0,0.00942,0.0108,0.01368,0.01368,0,0,0,0,0,0,0.00946,0.01085,0.01373,0.01373,0,0,0,0,0,0,0.00943,0.01081,0.01369,0.01369,0,0,0,0,0,0,0.00945,0.01084,0.01372,0.01372,0,0,0,0,0,0,0.00947,0.01086,0.01375,0.01375,0,0,0,0,0,0,0.00949,0.01089,0.01378,0.01378,0,0,0,0,0,0,0.02138,0.03171,0.04382,0.06004,0,0,0,0,0,0,0.02046,0.03048,0.0423,0.05797,0,0,0,0,0,0,0.02062,0.03218,0.04452,0.06213,0,0,0,0,0,0,0.02187,0.03456,0.0478,0.06679,0,0,0,0,0,0,0.01628,0.02714,0.03837,0.0539,0,0,0,0,0,0,0.01786,0.0293,0.04114,0.05763,0,0,0,0,0,0,0.0167,0.02761,0.03908,0.05456,0,0,0,0,0,0,0.01993,0.03183,0.04445,0.06169,0,0,0,0,0,0,0.01747,0.02793,0.03926,0.05396,0,0,0,0,0,0,0.00071,0.00112,0.0015,0.0023,0,0,0,0,0,0,0.00068,0.00107,0.00142,0.00217,0,0,0,0,0,0,0.00069,0.00108,0.00145,0.00222,0,0,0,0,0,0,0.00071,0.00113,0.00152,0.00236,0,0,0,0,0,0,0.0006,0.00094,0.00122,0.00179,0,0,0,0,0,0,0.00061,0.00095,0.00125,0.00186,0,0,0,0,0,0,0.00057,0.00089,0.00116,0.00169,0,0,0,0,0,0,0.00063,0.00098,0.0013,0.00194,0,0,0,0,0,0,0.00056,0.00087,0.00113,0.00165,0,0,0,0,0,0,0.02197,0.02289,0.02377,0.02569,0,0,0,0,0,0,0.02259,0.02345,0.02427,0.02603,0,0,0,0,0,0,0.02463,0.02551,0.02636,0.0282,0,0,0,0,0,0,0.02057,0.0215,0.02242,0.02442,0,0,0,0,0,0,0.02399,0.0247,0.02533,0.02663,0,0,0,0,0,0,0.02186,0.0226,0.02327,0.02466,0,0,0,0,0,0,0.02189,0.02256,0.02315,0.02435,0,0,0,0,0,0,0.02306,0.02383,0.02454,0.02603,0,0,0,0,0,0,0.0228,0.02346,0.02403,0.02519,0,0,0,0,0,0,0.00402,0.00483,0.00561,0.00731,0,0,0,0,0,0,0.00404,0.0048,0.00552,0.00708,0,0,0,0,0,0,0.00432,0.0051,0.00585,0.00747,0,0,0,0,0,0,0.00386,0.00468,0.00549,0.00726,0,0,0,0,0,0,0.00406,0.00469,0.00525,0.0064,0,0,0,0,0,0,0.00382,0.00447,0.00506,0.00628,0,0,0,0,0,0,0.00375,0.00434,0.00486,0.00592,0,0,0,0,0,0,0.004,0.00468,0.00531,0.00663,0,0,0,0,0,0,0.00384,0.00442,0.00493,0.00595,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00087,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00094,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00092,0,0,0,0,0,0,0.00088,0.00089,0.0009,0.00092,0,0,0,0,0,0,0.00087,0.00087,0.00089,0.00091,0,0,0,0,0,0,0.00088,0.00088,0.00089,0.00092,0,0,0,0,0,0,0.00086,0.00087,0.00088,0.00091,0,0,0,0,0,0,0.0008,0.0008,0.00081,0.00084,0,0,0,0,0,0,0.04295,0.05549,0.08233,0.18911,0,0,0,0,0,0,0.03776,0.04893,0.07418,0.17783,0,0,0,0,0,0,0.04102,0.05482,0.08302,0.19431,0,0,0,0,0,0,0.04524,0.06054,0.09035,0.20215,0,0,0,0,0,0,0.02556,0.03646,0.06147,0.16754,0,0,0,0,0,0,0.02806,0.03966,0.06505,0.17021,0,0,0,0,0,0,0.02466,0.03473,0.05863,0.16108,0,0,0,0,0,0,0.03261,0.04471,0.07133,0.17989,0,0,0,0,0,0,0.02506,0.03522,0.05928,0.16298 +Small SUV,PH40G,2040,0,0,0,0,0,0,0,0.02079,0.02104,0.0213,0,0,0,0,0,0,0,0.02146,0.02168,0.02192,0,0,0,0,0,0,0,0.02349,0.02372,0.02397,0,0,0,0,0,0,0,0.01939,0.01964,0.01991,0,0,0,0,0,0,0,0.02298,0.02314,0.0233,0,0,0,0,0,0,0,0.02084,0.02102,0.02119,0,0,0,0,0,0,0,0.02093,0.02108,0.02122,0,0,0,0,0,0,0,0.02201,0.0222,0.02239,0,0,0,0,0,0,0,0.02186,0.022,0.02214,0,0,0,0,0,0,0,0.00454,0.00347,0.00336,0,0,0,0,0,0,0,0.0039,0.00302,0.00296,0,0,0,0,0,0,0,0.00424,0.00338,0.0033,0,0,0,0,0,0,0,0.00479,0.0038,0.0037,0,0,0,0,0,0,0,0.00223,0.00201,0.00209,0,0,0,0,0,0,0,0.0026,0.00228,0.00233,0,0,0,0,0,0,0,0.00215,0.00195,0.00205,0,0,0,0,0,0,0,0.00308,0.00256,0.00257,0,0,0,0,0,0,0,0.00223,0.00195,0.00202,0,0,0,0,0,0,0,0.58637,0.85493,1.09898,0,0,0,0,0,0,0,0.55237,0.81808,1.05779,0,0,0,0,0,0,0,0.59375,0.91388,1.20164,0,0,0,0,0,0,0,0.638,0.9852,1.29874,0,0,0,0,0,0,0,0.45771,0.76934,1.03033,0,0,0,0,0,0,0,0.4894,0.8139,1.09031,0,0,0,0,0,0,0,0.47246,0.79251,1.06037,0,0,0,0,0,0,0,0.52294,0.83172,1.09452,0,0,0,0,0,0,0,0.44066,0.70988,0.92911,0,0,0,0,0,0,0,135.31596,136.59718,138.69927,0,0,0,0,0,0,0,136.30965,137.49906,139.45684,0,0,0,0,0,0,0,138.26901,139.52107,141.58116,0,0,0,0,0,0,0,135.21387,136.46656,138.53155,0,0,0,0,0,0,0,138.26032,139.1288,140.58094,0,0,0,0,0,0,0,136.15164,137.10908,138.70261,0,0,0,0,0,0,0,137.24245,138.07339,139.46903,0,0,0,0,0,0,0,137.32947,138.33643,140.00687,0,0,0,0,0,0,0,135.16861,136.08668,137.60238,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00298,0.00334,0.00392,0,0,0,0,0,0,0,0.00303,0.00339,0.00398,0,0,0,0,0,0,0,0.00292,0.00327,0.00385,0,0,0,0,0,0,0,0.00301,0.00337,0.00396,0,0,0,0,0,0,0,0.00295,0.00331,0.00389,0,0,0,0,0,0,0,0.00297,0.00333,0.00392,0,0,0,0,0,0,0,0.003,0.00336,0.00395,0,0,0,0,0,0,0,0.00302,0.00339,0.00398,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00946,0.01086,0.01374,0,0,0,0,0,0,0,0.00946,0.01085,0.01374,0,0,0,0,0,0,0,0.00941,0.0108,0.01367,0,0,0,0,0,0,0,0.00945,0.01085,0.01373,0,0,0,0,0,0,0,0.00942,0.01081,0.01369,0,0,0,0,0,0,0,0.00945,0.01084,0.01372,0,0,0,0,0,0,0,0.00947,0.01086,0.01375,0,0,0,0,0,0,0,0.00948,0.01089,0.01378,0,0,0,0,0,0,0,0.0213,0.03172,0.04385,0,0,0,0,0,0,0,0.02039,0.03049,0.04233,0,0,0,0,0,0,0,0.02054,0.0322,0.04456,0,0,0,0,0,0,0,0.02178,0.03459,0.04786,0,0,0,0,0,0,0,0.01622,0.02714,0.03839,0,0,0,0,0,0,0,0.0178,0.02931,0.04117,0,0,0,0,0,0,0,0.01664,0.02762,0.03911,0,0,0,0,0,0,0,0.01988,0.03183,0.04446,0,0,0,0,0,0,0,0.01745,0.02792,0.03924,0,0,0,0,0,0,0,0.0007,0.00112,0.0015,0,0,0,0,0,0,0,0.00067,0.00107,0.00143,0,0,0,0,0,0,0,0.00068,0.00109,0.00146,0,0,0,0,0,0,0,0.00071,0.00113,0.00153,0,0,0,0,0,0,0,0.0006,0.00094,0.00123,0,0,0,0,0,0,0,0.00061,0.00096,0.00126,0,0,0,0,0,0,0,0.00057,0.00089,0.00116,0,0,0,0,0,0,0,0.00063,0.00099,0.0013,0,0,0,0,0,0,0,0.00056,0.00087,0.00113,0,0,0,0,0,0,0,0.02196,0.02289,0.02378,0,0,0,0,0,0,0,0.02258,0.02346,0.02428,0,0,0,0,0,0,0,0.02462,0.02552,0.02637,0,0,0,0,0,0,0,0.02056,0.02151,0.02243,0,0,0,0,0,0,0,0.02398,0.0247,0.02534,0,0,0,0,0,0,0,0.02186,0.0226,0.02327,0,0,0,0,0,0,0,0.02188,0.02256,0.02316,0,0,0,0,0,0,0,0.02305,0.02383,0.02454,0,0,0,0,0,0,0,0.0228,0.02346,0.02403,0,0,0,0,0,0,0,0.00401,0.00483,0.00562,0,0,0,0,0,0,0,0.00403,0.00481,0.00553,0,0,0,0,0,0,0,0.00431,0.00511,0.00586,0,0,0,0,0,0,0,0.00385,0.00469,0.00551,0,0,0,0,0,0,0,0.00405,0.00469,0.00526,0,0,0,0,0,0,0,0.00381,0.00447,0.00506,0,0,0,0,0,0,0,0.00374,0.00434,0.00486,0,0,0,0,0,0,0,0.004,0.00469,0.00532,0,0,0,0,0,0,0,0.00384,0.00442,0.00493,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00087,0.00088,0.00089,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00089,0.0009,0,0,0,0,0,0,0,0.00087,0.00087,0.00088,0,0,0,0,0,0,0,0.00088,0.00088,0.00089,0,0,0,0,0,0,0,0.00086,0.00087,0.00088,0,0,0,0,0,0,0,0.0008,0.0008,0.00081,0,0,0,0,0,0,0,0.04297,0.05543,0.08229,0,0,0,0,0,0,0,0.03778,0.04888,0.07415,0,0,0,0,0,0,0,0.04107,0.05476,0.08297,0,0,0,0,0,0,0,0.04526,0.06049,0.09033,0,0,0,0,0,0,0,0.02553,0.03646,0.0615,0,0,0,0,0,0,0,0.02805,0.03965,0.06506,0,0,0,0,0,0,0,0.02463,0.03474,0.05867,0,0,0,0,0,0,0,0.03255,0.04473,0.0714,0,0,0,0,0,0,0,0.02504,0.03521,0.05929 +Small SUV,PH40G,2045,0,0,0,0,0,0,0,0,0.0208,0.02104,0,0,0,0,0,0,0,0,0.02146,0.02169,0,0,0,0,0,0,0,0,0.02349,0.02372,0,0,0,0,0,0,0,0,0.01939,0.01964,0,0,0,0,0,0,0,0,0.02298,0.02314,0,0,0,0,0,0,0,0,0.02085,0.02102,0,0,0,0,0,0,0,0,0.02093,0.02108,0,0,0,0,0,0,0,0,0.02201,0.0222,0,0,0,0,0,0,0,0,0.02186,0.022,0,0,0,0,0,0,0,0,0.00454,0.00347,0,0,0,0,0,0,0,0,0.0039,0.00302,0,0,0,0,0,0,0,0,0.00423,0.00337,0,0,0,0,0,0,0,0,0.00478,0.0038,0,0,0,0,0,0,0,0,0.00222,0.00201,0,0,0,0,0,0,0,0,0.00259,0.00228,0,0,0,0,0,0,0,0,0.00215,0.00195,0,0,0,0,0,0,0,0,0.00307,0.00256,0,0,0,0,0,0,0,0,0.00223,0.00195,0,0,0,0,0,0,0,0,0.58515,0.85333,0,0,0,0,0,0,0,0,0.55145,0.8169,0,0,0,0,0,0,0,0,0.59254,0.91238,0,0,0,0,0,0,0,0,0.63668,0.98369,0,0,0,0,0,0,0,0,0.4577,0.76945,0,0,0,0,0,0,0,0,0.4892,0.81376,0,0,0,0,0,0,0,0,0.47235,0.79243,0,0,0,0,0,0,0,0,0.52262,0.83136,0,0,0,0,0,0,0,0,0.4406,0.70976,0,0,0,0,0,0,0,0,135.30893,136.59487,0,0,0,0,0,0,0,0,136.30292,137.49674,0,0,0,0,0,0,0,0,138.26201,139.51861,0,0,0,0,0,0,0,0,135.20696,136.46414,0,0,0,0,0,0,0,0,138.25445,139.12641,0,0,0,0,0,0,0,0,136.14548,137.10674,0,0,0,0,0,0,0,0,137.23684,138.07104,0,0,0,0,0,0,0,0,137.32323,138.33411,0,0,0,0,0,0,0,0,135.16274,136.0843,0,0,0,0,0,0,0,0,0.00297,0.00334,0,0,0,0,0,0,0,0,0.00298,0.00334,0,0,0,0,0,0,0,0,0.00303,0.00339,0,0,0,0,0,0,0,0,0.00291,0.00327,0,0,0,0,0,0,0,0,0.00301,0.00337,0,0,0,0,0,0,0,0,0.00295,0.00331,0,0,0,0,0,0,0,0,0.00297,0.00333,0,0,0,0,0,0,0,0,0.003,0.00336,0,0,0,0,0,0,0,0,0.00302,0.00339,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00946,0.01085,0,0,0,0,0,0,0,0,0.00941,0.0108,0,0,0,0,0,0,0,0,0.00945,0.01084,0,0,0,0,0,0,0,0,0.00942,0.01081,0,0,0,0,0,0,0,0,0.00944,0.01084,0,0,0,0,0,0,0,0,0.00946,0.01086,0,0,0,0,0,0,0,0,0.00948,0.01088,0,0,0,0,0,0,0,0,0.02132,0.03175,0,0,0,0,0,0,0,0,0.02041,0.03052,0,0,0,0,0,0,0,0,0.02056,0.03224,0,0,0,0,0,0,0,0,0.02181,0.03464,0,0,0,0,0,0,0,0,0.01624,0.02717,0,0,0,0,0,0,0,0,0.01782,0.02934,0,0,0,0,0,0,0,0,0.01666,0.02766,0,0,0,0,0,0,0,0,0.01989,0.03186,0,0,0,0,0,0,0,0,0.01745,0.02792,0,0,0,0,0,0,0,0,0.0007,0.00112,0,0,0,0,0,0,0,0,0.00068,0.00107,0,0,0,0,0,0,0,0,0.00068,0.00109,0,0,0,0,0,0,0,0,0.00071,0.00114,0,0,0,0,0,0,0,0,0.0006,0.00094,0,0,0,0,0,0,0,0,0.00061,0.00096,0,0,0,0,0,0,0,0,0.00057,0.00089,0,0,0,0,0,0,0,0,0.00063,0.00099,0,0,0,0,0,0,0,0,0.00056,0.00087,0,0,0,0,0,0,0,0,0.02196,0.0229,0,0,0,0,0,0,0,0,0.02259,0.02347,0,0,0,0,0,0,0,0,0.02462,0.02553,0,0,0,0,0,0,0,0,0.02056,0.02152,0,0,0,0,0,0,0,0,0.02398,0.02471,0,0,0,0,0,0,0,0,0.02186,0.02261,0,0,0,0,0,0,0,0,0.02189,0.02257,0,0,0,0,0,0,0,0,0.02305,0.02384,0,0,0,0,0,0,0,0,0.0228,0.02346,0,0,0,0,0,0,0,0,0.00401,0.00484,0,0,0,0,0,0,0,0,0.00403,0.00481,0,0,0,0,0,0,0,0,0.00431,0.00511,0,0,0,0,0,0,0,0,0.00385,0.0047,0,0,0,0,0,0,0,0,0.00406,0.0047,0,0,0,0,0,0,0,0,0.00381,0.00448,0,0,0,0,0,0,0,0,0.00374,0.00435,0,0,0,0,0,0,0,0,0.004,0.00469,0,0,0,0,0,0,0,0,0.00384,0.00443,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00087,0.00088,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00089,0,0,0,0,0,0,0,0,0.00087,0.00087,0,0,0,0,0,0,0,0,0.00088,0.00088,0,0,0,0,0,0,0,0,0.00086,0.00087,0,0,0,0,0,0,0,0,0.0008,0.0008,0,0,0,0,0,0,0,0,0.04293,0.0554,0,0,0,0,0,0,0,0,0.03774,0.04886,0,0,0,0,0,0,0,0,0.04102,0.05471,0,0,0,0,0,0,0,0,0.04522,0.06046,0,0,0,0,0,0,0,0,0.02553,0.03647,0,0,0,0,0,0,0,0,0.02804,0.03965,0,0,0,0,0,0,0,0,0.02463,0.03475,0,0,0,0,0,0,0,0,0.03256,0.04477,0,0,0,0,0,0,0,0,0.02504,0.03521 +Small SUV,PH40G,2050,0,0,0,0,0,0,0,0,0,0.0208,0,0,0,0,0,0,0,0,0,0.02147,0,0,0,0,0,0,0,0,0,0.02349,0,0,0,0,0,0,0,0,0,0.01939,0,0,0,0,0,0,0,0,0,0.02298,0,0,0,0,0,0,0,0,0,0.02085,0,0,0,0,0,0,0,0,0,0.02093,0,0,0,0,0,0,0,0,0,0.02201,0,0,0,0,0,0,0,0,0,0.02186,0,0,0,0,0,0,0,0,0,0.00453,0,0,0,0,0,0,0,0,0,0.00389,0,0,0,0,0,0,0,0,0,0.00423,0,0,0,0,0,0,0,0,0,0.00478,0,0,0,0,0,0,0,0,0,0.00222,0,0,0,0,0,0,0,0,0,0.00259,0,0,0,0,0,0,0,0,0,0.00215,0,0,0,0,0,0,0,0,0,0.00307,0,0,0,0,0,0,0,0,0,0.00223,0,0,0,0,0,0,0,0,0,0.58383,0,0,0,0,0,0,0,0,0,0.55046,0,0,0,0,0,0,0,0,0,0.59121,0,0,0,0,0,0,0,0,0,0.63522,0,0,0,0,0,0,0,0,0,0.45769,0,0,0,0,0,0,0,0,0,0.48896,0,0,0,0,0,0,0,0,0,0.47221,0,0,0,0,0,0,0,0,0,0.52227,0,0,0,0,0,0,0,0,0,0.44054,0,0,0,0,0,0,0,0,0,135.30911,0,0,0,0,0,0,0,0,0,136.30301,0,0,0,0,0,0,0,0,0,138.26211,0,0,0,0,0,0,0,0,0,135.20703,0,0,0,0,0,0,0,0,0,138.25462,0,0,0,0,0,0,0,0,0,136.14562,0,0,0,0,0,0,0,0,0,137.23687,0,0,0,0,0,0,0,0,0,137.32338,0,0,0,0,0,0,0,0,0,135.16284,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.00298,0,0,0,0,0,0,0,0,0,0.00303,0,0,0,0,0,0,0,0,0,0.00291,0,0,0,0,0,0,0,0,0,0.00301,0,0,0,0,0,0,0,0,0,0.00295,0,0,0,0,0,0,0,0,0,0.00297,0,0,0,0,0,0,0,0,0,0.003,0,0,0,0,0,0,0,0,0,0.00302,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00941,0,0,0,0,0,0,0,0,0,0.00945,0,0,0,0,0,0,0,0,0,0.00942,0,0,0,0,0,0,0,0,0,0.00944,0,0,0,0,0,0,0,0,0,0.00946,0,0,0,0,0,0,0,0,0,0.00948,0,0,0,0,0,0,0,0,0,0.02135,0,0,0,0,0,0,0,0,0,0.02044,0,0,0,0,0,0,0,0,0,0.02059,0,0,0,0,0,0,0,0,0,0.02185,0,0,0,0,0,0,0,0,0,0.01625,0,0,0,0,0,0,0,0,0,0.01784,0,0,0,0,0,0,0,0,0,0.01668,0,0,0,0,0,0,0,0,0,0.01991,0,0,0,0,0,0,0,0,0,0.01745,0,0,0,0,0,0,0,0,0,0.00071,0,0,0,0,0,0,0,0,0,0.00068,0,0,0,0,0,0,0,0,0,0.00069,0,0,0,0,0,0,0,0,0,0.00071,0,0,0,0,0,0,0,0,0,0.0006,0,0,0,0,0,0,0,0,0,0.00061,0,0,0,0,0,0,0,0,0,0.00057,0,0,0,0,0,0,0,0,0,0.00063,0,0,0,0,0,0,0,0,0,0.00056,0,0,0,0,0,0,0,0,0,0.02197,0,0,0,0,0,0,0,0,0,0.02259,0,0,0,0,0,0,0,0,0,0.02463,0,0,0,0,0,0,0,0,0,0.02057,0,0,0,0,0,0,0,0,0,0.02399,0,0,0,0,0,0,0,0,0,0.02186,0,0,0,0,0,0,0,0,0,0.02189,0,0,0,0,0,0,0,0,0,0.02306,0,0,0,0,0,0,0,0,0,0.0228,0,0,0,0,0,0,0,0,0,0.00402,0,0,0,0,0,0,0,0,0,0.00404,0,0,0,0,0,0,0,0,0,0.00432,0,0,0,0,0,0,0,0,0,0.00386,0,0,0,0,0,0,0,0,0,0.00406,0,0,0,0,0,0,0,0,0,0.00381,0,0,0,0,0,0,0,0,0,0.00375,0,0,0,0,0,0,0,0,0,0.004,0,0,0,0,0,0,0,0,0,0.00384,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00087,0,0,0,0,0,0,0,0,0,0.00088,0,0,0,0,0,0,0,0,0,0.00086,0,0,0,0,0,0,0,0,0,0.0008,0,0,0,0,0,0,0,0,0,0.0429,0,0,0,0,0,0,0,0,0,0.03772,0,0,0,0,0,0,0,0,0,0.04098,0,0,0,0,0,0,0,0,0,0.04519,0,0,0,0,0,0,0,0,0,0.02553,0,0,0,0,0,0,0,0,0,0.02803,0,0,0,0,0,0,0,0,0,0.02464,0,0,0,0,0,0,0,0,0,0.03258,0,0,0,0,0,0,0,0,0,0.02504 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_eff_missing_mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_eff_missing_mapping.csv new file mode 100644 index 0000000000..ccddb1ad33 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_eff_missing_mapping.csv @@ -0,0 +1,11 @@ +# File: MARKAL_LDV_eff_missing_mapping.csv +# Title: MARKAL LDV efficiency mapping file between similar vehicle classes +# Description: Mapping file for copying efficiencies from similar vehicle classes for needed types that are missing +# Units: NA +# Source: NA - Mapping file +# Column types: cccc +# ---------- +Class.orig,Fuel.orig,Class.new,Fuel.new +Compact car,CNG,Mini car,CNG +Minivan,CNG,Small SUV,CNG +Pickup,CNG,Large SUV,CNG diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_eff_vmtMJ.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_eff_vmtMJ.csv new file mode 100644 index 0000000000..b5e9163359 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_LDV_eff_vmtMJ.csv @@ -0,0 +1,101 @@ +# File: MARKAL_LDV_eff_vmtMJ.csv +# Title: MARKAL LDV efficiency data +# Source: Provided by Dan Loughin from the EPA US Nine-region MARKAL Database 2016 +# Comments: NA +# Units: veh miles traveled/MJ +# Column types: ccccnnnnnnnnn +# ---------- +Class,Technology,Fuel,Unit,2010,2015,2020,2025,2030,2035,2040,2045,2050 +Mini car,ICE,Gasoline,billion vmt/PJ,0.170172719,0.175851583,0.211042541,0.262434795,0.263413288,0.263165809,0.262997446,0.262997446,0.262997446 +Mini car,Electric 100mi,Electricity,billion vmt/PJ,1.088607048,1.088607048,1.129741317,1.173552702,1.196354716,1.212534584,1.212534584,1.212534584,1.212534584 +Mini car,Electric 200mi,Electricity,billion vmt/PJ,0.975988022,0.975988022,0.975988022,0.975988022,0.99494597,1.008396299,1.008396299,1.008396299,1.008396299 +Compact car,ICE,Gasoline,billion vmt/PJ,0.202450583,0.227520497,0.273060999,0.33749688,0.339621505,0.338961207,0.338302207,0.338302207,0.338302207 +Compact car,Electric 100mi,Electricity,billion vmt/PJ,1.201795858,1.201795858,1.245499825,1.291916757,1.317578619,1.335981432,1.335981432,1.335981432,1.335981432 +Compact car,Electric 200mi,Electricity,billion vmt/PJ,1.074492507,1.074492507,1.074492507,1.074492507,1.095830872,1.111131591,1.111131591,1.111131591,1.111131591 +Compact car,ICE,Diesel,billion vmt/PJ,0.249352882,0.281805905,0.315065337,0.360324777,0.36196466,0.361184597,0.360384006,0.360384006,0.360384006 +Compact car,ICE,CNG,billion vmt/PJ,0.216896505,0.246011423,0.296808655,0.373532868,0.375533346,0.37477578,0.373910116,0.373910116,0.373910116 +Compact car,ICE,CNG or gasoline,billion vmt/PJ,0.201151517,0.228685721,0.275170818,0.345411641,0.347270526,0.346491349,0.345666799,0.345666799,0.345666799 +Compact car,Hybrid,Diesel,billion vmt/PJ,0.387131927,0.387131927,0.387131927,0.425187314,0.427200931,0.426285416,0.425708178,0.425708178,0.425708178 +Compact car,Flex fuel,E85 or gasoline,billion vmt/PJ,0.202450583,0.227520497,0.273060999,0.33749688,0.339621505,0.338961207,0.338302207,0.338302207,0.338302207 +Compact car,Fuel cell,Hydrogen,billion vmt/PJ,0.367527687,0.37192871,0.37430405,0.384831406,0.387170136,0.387174283,0.387181097,0.387181097,0.387181097 +Compact car,Hybrid,Gasoline,billion vmt/PJ,0.348931245,0.323362811,0.380467348,0.45054669,0.453056586,0.452277039,0.451573984,0.451573984,0.451573984 +Compact car,Flex fuel,LPG or gasoline,billion vmt/PJ,0.201213505,0.228675493,0.275180676,0.345453178,0.347409677,0.346677545,0.345908758,0.345908758,0.345908758 +Compact car,Plugin-hybrid 40mi,Electricity and gasoline 40mi,billion vmt/PJ,0.512778509,0.475203933,0.559122985,0.662109407,0.665797872,0.664652274,0.663619086,0.663619086,0.663619086 +Full size car,ICE,Gasoline,billion vmt/PJ,0.19283856,0.22410264,0.267135662,0.335340813,0.337646576,0.33731603,0.336972921,0.336972921,0.336972921 +Full size car,Electric 100mi,Electricity,billion vmt/PJ,1.049546804,1.049546804,1.083059793,1.11834049,1.140726349,1.156838175,1.156838175,1.156838175,1.156838175 +Full size car,Electric 200mi,Electricity,billion vmt/PJ,0.930086866,0.930086866,0.930086866,0.930086866,0.948760855,0.962220154,0.962220154,0.962220154,0.962220154 +Full size car,ICE,CNG,billion vmt/PJ,0.199849766,0.21615189,0.277260656,0.355896254,0.361140195,0.361347417,0.361769126,0.361769126,0.361769126 +Full size car,Flex fuel,CNG or gasoline,billion vmt/PJ,0.185220565,0.200983647,0.257716365,0.330625384,0.335719831,0.336302225,0.336698933,0.336698933,0.336698933 +Full size car,Hybrid,Diesel,billion vmt/PJ,0.47600712,0.47600712,0.47600712,0.47600712,0.478237077,0.477344622,0.476548446,0.476548446,0.476548446 +Full size car,ICE,Diesel,billion vmt/PJ,0.238313542,0.276784068,0.300767741,0.346550567,0.348538823,0.348238021,0.347905569,0.347905569,0.347905569 +Full size car,Flex fuel,E85 or gasoline,billion vmt/PJ,0.19283856,0.22410264,0.267135662,0.335340813,0.337646576,0.33731603,0.336972921,0.336972921,0.336972921 +Full size car,Fuel cell,Hydrogen,billion vmt/PJ,0.333453045,0.333453045,0.333453045,0.344185721,0.346193451,0.346194873,0.34621074,0.34621074,0.34621074 +Full size car,Hybrid,Gasoline,billion vmt/PJ,0.335294065,0.318670994,0.371553395,0.449446976,0.451900357,0.451122057,0.450501328,0.450501328,0.450501328 +Full size car,Flex fuel,LPG or gasoline,billion vmt/PJ,0.19283856,0.224112959,0.26708828,0.335173203,0.337459598,0.337101892,0.336722711,0.336722711,0.336722711 +Full size car,Plugin-hybrid 40mi,Electricity and gasoline 40mi,billion vmt/PJ,0.492737733,0.468308984,0.546023317,0.660493302,0.664098714,0.662954949,0.662042745,0.662042745,0.662042745 +Minivan,ICE,Gasoline,billion vmt/PJ,0.16865309,0.175764115,0.207785711,0.254071152,0.257872261,0.259658772,0.259248775,0.259248775,0.259248775 +Minivan,Electric 100mi,Electricity,billion vmt/PJ,0.741737473,0.741737473,0.753904279,0.766476889,0.773016809,0.779669292,0.779669292,0.779669292,0.779669292 +Minivan,Electric 200mi,Electricity,billion vmt/PJ,0.679427705,0.679427705,0.679427705,0.679427705,0.685214143,0.69109999,0.69109999,0.69109999,0.69109999 +Minivan,ICE,CNG,billion vmt/PJ,0.18161264,0.189004428,0.222243597,0.268769011,0.272681159,0.274917204,0.27490117,0.27490117,0.27490117 +Minivan,Flex fuel,CNG or gasoline,billion vmt/PJ,0.168240041,0.175716139,0.207811945,0.251421731,0.255327925,0.25750229,0.257147388,0.257147388,0.257147388 +Minivan,Hybrid,Diesel,billion vmt/PJ,0.371325109,0.371325109,0.371325109,0.371325109,0.373873353,0.375583773,0.373718569,0.373718569,0.373718569 +Minivan,ICE,Diesel,billion vmt/PJ,0.208601615,0.21564686,0.233492558,0.265533486,0.269078339,0.27109826,0.270701819,0.270701819,0.270701819 +Minivan,Flex fuel,E85 or gasoline,billion vmt/PJ,0.16865309,0.175764115,0.207785711,0.254071152,0.257872261,0.259658772,0.259248775,0.259248775,0.259248775 +Minivan,Fuel cell,Hydrogen,billion vmt/PJ,0.254450243,0.254450243,0.271239567,0.297832249,0.297861108,0.297861471,0.297868782,0.297868782,0.297868782 +Minivan,Hybrid,Gasoline,billion vmt/PJ,0.280378841,0.275777015,0.27117519,0.324863945,0.328561794,0.331122742,0.332172688,0.332172688,0.332172688 +Minivan,ICE,LPG,billion vmt/PJ,0.17499002,0.182411169,0.215277511,0.260561362,0.264432131,0.266589348,0.266433251,0.266433251,0.266433251 +Minivan,Flex fuel,LPG or gasoline,billion vmt/PJ,0.168367399,0.175796789,0.208137861,0.252076778,0.255963977,0.258083591,0.257745181,0.257745181,0.257745181 +Minivan,Plugin-hybrid 40mi,Electricity and gasoline 40mi,billion vmt/PJ,0.419549037,0.412663026,0.405777016,0.486114981,0.491648312,0.495480424,0.497051526,0.497051526,0.497051526 +Pickup,ICE,Gasoline,billion vmt/PJ,0.142536188,0.17285991,0.197888654,0.234594578,0.23728519,0.238445448,0.238149194,0.238149194,0.238149194 +Pickup,Electric 100mi,Electricity,billion vmt/PJ,0.689400748,0.689400748,0.698445773,0.707731298,0.713329419,0.719016807,0.719016807,0.719016807,0.719016807 +Pickup,Electric 200mi,Electricity,billion vmt/PJ,0.627338833,0.627338833,0.627338833,0.627338833,0.63228918,0.637318275,0.637318275,0.637318275,0.637318275 +Pickup,ICE,CNG,billion vmt/PJ,0.15161981,0.188713937,0.212553665,0.249028182,0.25194665,0.253777754,0.253522713,0.253522713,0.253522713 +Pickup,Flex fuel,CNG or gasoline,billion vmt/PJ,0.140412297,0.175268119,0.198454296,0.233171724,0.236105615,0.237786939,0.237460871,0.237460871,0.237460871 +Pickup,ICE,Diesel,billion vmt/PJ,0.177714962,0.212704396,0.228534536,0.255881043,0.258754797,0.260291512,0.260103341,0.260103341,0.260103341 +Pickup,Flex fuel,E85 or gasoline,billion vmt/PJ,0.142536188,0.17285991,0.197888654,0.234594578,0.23728519,0.238445448,0.238149194,0.238149194,0.238149194 +Pickup,Hybrid,Gasoline,billion vmt/PJ,0.249022012,0.249022012,0.266973722,0.30964565,0.312547648,0.314271025,0.314358307,0.314358307,0.314358307 +Pickup,ICE,LPG,billion vmt/PJ,0.146143412,0.182031859,0.205782112,0.241611535,0.244520699,0.24624011,0.245993379,0.245993379,0.245993379 +Pickup,Flex fuel,LPG or gasoline,billion vmt/PJ,0.140539655,0.175346215,0.198771838,0.233803573,0.23672539,0.238355797,0.23804263,0.23804263,0.23804263 +Pickup,Plugin-hybrid 40mi,Electricity and gasoline 40mi,billion vmt/PJ,0.372627779,0.372627779,0.399490087,0.46334286,0.467685308,0.470264108,0.470394713,0.470394713,0.470394713 +Small SUV,ICE,Gasoline,billion vmt/PJ,0.173015969,0.196492931,0.234553527,0.276635469,0.278124667,0.277624239,0.277067251,0.277067251,0.277067251 +Small SUV,Electric 100mi,Electricity,billion vmt/PJ,0.826949321,0.826949321,0.838717203,0.850824846,0.857952135,0.865199843,0.865199843,0.865199843,0.865199843 +Small SUV,Electric 200mi,Electricity,billion vmt/PJ,0.754153944,0.754153944,0.754153944,0.754153944,0.760494769,0.766943124,0.766943124,0.766943124,0.766943124 +Small SUV,Hybrid,Diesel,billion vmt/PJ,,,0.369708916,0.391758938,0.392691276,0.392597024,0.392308972,0.392308972,0.392308972 +Small SUV,ICE,Diesel,billion vmt/PJ,0.212942731,0.239344612,0.259880709,0.289388401,0.290507446,0.290311779,0.289733612,0.289733612,0.289733612 +Small SUV,Flex fuel,E85 or gasoline,billion vmt/PJ,0.173015969,0.196492931,0.234553527,0.276635469,0.278124667,0.277624239,0.277067251,0.277067251,0.277067251 +Small SUV,Fuel cell,Hydrogen,billion vmt/PJ,0.283489232,0.283489232,0.302342375,0.324190681,0.324622877,0.324722981,0.32482588,0.32482588,0.32482588 +Small SUV,Hybrid,Gasoline,billion vmt/PJ,0.305786781,0.275360818,0.30899816,0.36534983,0.366808061,0.366769676,0.3663892,0.3663892,0.3663892 +Small SUV,Plugin-hybrid 40mi,Electricity and gasoline 40mi,billion vmt/PJ,0.457568584,0.412040243,0.462373978,0.546696636,0.548878681,0.548821242,0.548251911,0.548251911,0.548251911 +Large SUV,ICE,Gasoline,billion vmt/PJ,0.139075037,0.167227066,0.203534031,0.248019493,0.253338923,0.25508583,0.254770402,0.254770402,0.254770402 +Large SUV,Electric 100mi,Electricity,billion vmt/PJ,0.702744076,0.702744076,0.714041881,0.725708884,0.731740836,0.737873902,0.737873902,0.737873902,0.737873902 +Large SUV,Electric 200mi,Electricity,billion vmt/PJ,0.64330987,0.64330987,0.64330987,0.64330987,0.648630174,0.654039211,0.654039211,0.654039211,0.654039211 +Large SUV,Hybrid,Diesel,billion vmt/PJ,,,0.278441578,0.309153772,0.314558347,0.316645625,0.316883855,0.316883855,0.316883855 +Large SUV,ICE,Diesel,billion vmt/PJ,0.172188142,0.20128767,0.217933436,0.249977108,0.254353584,0.256180995,0.255949833,0.255949833,0.255949833 +Large SUV,Flex fuel,E85 or gasoline,billion vmt/PJ,0.139075037,0.167227066,0.203534031,0.248019493,0.253338923,0.25508583,0.254770402,0.254770402,0.254770402 +Large SUV,Fuel cell,Hydrogen,billion vmt/PJ,0.244311889,0.244311889,0.244311889,0.244311889,0.245531763,0.245688808,0.245820955,0.245820955,0.245820955 +Large SUV,Hybrid,Gasoline,billion vmt/PJ,0.250322331,0.234708529,0.272049062,0.332224188,0.338503598,0.340735293,0.341526811,0.341526811,0.341526811 +Large SUV,Plugin-hybrid 40mi,Electricity and gasoline 40mi,billion vmt/PJ,0.374573532,0.351209587,0.407084647,0.497128589,0.506524877,0.509864308,0.511048708,0.511048708,0.511048708 +Compact car,Flex fuel hybrid,E85 or gasoline,billion vmt/PJ,0.346797183,0.319431445,0.373570805,0.439722956,0.439532757,0.438776479,0.43809441,0.43809441,0.43809441 +Full size car,Flex fuel hybrid,E85 or gasoline,billion vmt/PJ,0.333243408,0.31479667,0.364818431,0.438649661,0.438411041,0.437655974,0.437053774,0.437053774,0.437053774 +Pickup,Flex fuel hybrid,E85 or gasoline,billion vmt/PJ,0.238106468,0.238106468,0.255271289,0.296072751,0.298847543,0.300495378,0.300578834,0.300578834,0.300578834 +Minivan,Flex fuel hybrid,E85 or gasoline,billion vmt/PJ,0.268088813,0.263688702,0.259288591,0.310623972,0.314159731,0.316608423,0.317612346,0.317612346,0.317612346 +Large SUV,Flex fuel hybrid,E85 or gasoline,billion vmt/PJ,0.23934979,0.224420397,0.260124158,0.317661588,0.323665749,0.325799621,0.326556444,0.326556444,0.326556444 +Small SUV,Flex fuel hybrid,E85 or gasoline,billion vmt/PJ,0.29238303,0.263290748,0.295453642,0.349335213,0.350729525,0.350692821,0.350329023,0.350329023,0.350329023 +Compact car,Plugin-hybrid 20mi,Electricity and gasoline 20mi,billion vmt/PJ,0.42821977,0.394428983,0.461279422,0.54296307,0.542728215,0.541794375,0.540952167,0.540952167,0.540952167 +Full size car,Plugin-hybrid 20mi,Electricity and gasoline 20mi,billion vmt/PJ,0.41148378,0.388706034,0.450472127,0.541637782,0.541343138,0.540410793,0.539667205,0.539667205,0.539667205 +Pickup,Plugin-hybrid 20mi,Electricity and gasoline 20mi,billion vmt/PJ,0.297200305,0.297200305,0.318625133,0.3695528,0.373016248,0.375073046,0.375177215,0.375177215,0.375177215 +Minivan,Plugin-hybrid 20mi,Electricity and gasoline 20mi,billion vmt/PJ,0.334623742,0.3291316,0.323639459,0.387715379,0.392128651,0.395185065,0.396438144,0.396438144,0.396438144 +Large SUV,Plugin-hybrid 20mi,Electricity and gasoline 20mi,billion vmt/PJ,0.298752198,0.280117592,0.324682399,0.396499608,0.403993896,0.406657358,0.40760201,0.40760201,0.40760201 +Small SUV,Plugin-hybrid 20mi,Electricity and gasoline 20mi,billion vmt/PJ,0.364947356,0.328634881,0.36878004,0.436034069,0.437774424,0.437728612,0.437274526,0.437274526,0.437274526 +Compact car,Flex fuel plugin-hybrid 20mi,Electricity and gasoline or ethanol 20mi,billion vmt/PJ,0.42821977,0.394428983,0.461279422,0.54296307,0.542728215,0.541794375,0.540952167,0.540952167,0.540952167 +Full size car,Flex fuel plugin-hybrid 20mi,Electricity and gasoline or ethanol 20mi,billion vmt/PJ,0.42821977,0.394428983,0.461279422,0.54296307,0.542728215,0.541794375,0.540952167,0.540952167,0.540952167 +Pickup,Flex fuel plugin-hybrid 20mi,Electricity and gasoline or ethanol 20mi,billion vmt/PJ,0.192224691,0.197431939,0.235509851,0.291101394,0.290442396,0.290169523,0.289983885,0.289983885,0.289983885 +Minivan,Flex fuel plugin-hybrid 20mi,Electricity and gasoline or ethanol 20mi,billion vmt/PJ,0.298752198,0.280117592,0.324682399,0.396499608,0.403993896,0.406657358,0.40760201,0.40760201,0.40760201 +Large SUV,Flex fuel plugin-hybrid 20mi,Electricity and gasoline or ethanol 20mi,billion vmt/PJ,0.406666515,0.38415543,0.445198423,0.535296797,0.535005602,0.534084172,0.53334929,0.53334929,0.53334929 +Small SUV,Flex fuel plugin-hybrid 20mi,Electricity and gasoline or ethanol 20mi,billion vmt/PJ,0.297200305,0.297200305,0.318625133,0.3695528,0.373016248,0.375073046,0.375177215,0.375177215,0.375177215 +Compact car,Flex fuel plugin-hybrid 40mi,Electricity and gasoline or ethanol 40mi,billion vmt/PJ,0.509642357,0.46942652,0.548988039,0.646203184,0.645923673,0.644812271,0.643809924,0.643809924,0.643809924 +Full size car,Flex fuel plugin-hybrid 40mi,Electricity and gasoline or ethanol 40mi,billion vmt/PJ,0.489724151,0.462615398,0.536125823,0.644625903,0.644275235,0.643165611,0.642280637,0.642280637,0.642280637 +Pickup,Flex fuel plugin-hybrid 40mi,Electricity and gasoline or ethanol 40mi,billion vmt/PJ,0.356294143,0.356294143,0.381978978,0.44303285,0.447184953,0.449650715,0.449775595,0.449775595,0.449775595 +Minivan,Flex fuel plugin-hybrid 40mi,Electricity and gasoline or ethanol 40mi,billion vmt/PJ,0.40115867,0.394574499,0.387990327,0.464806786,0.470097571,0.473761708,0.475263943,0.475263943,0.475263943 +Large SUV,Flex fuel plugin-hybrid 40mi,Electricity and gasoline or ethanol 40mi,billion vmt/PJ,0.358154606,0.335814788,0.389240641,0.475337628,0.484322042,0.487515094,0.488647577,0.488647577,0.488647577 +Small SUV,Flex fuel plugin-hybrid 40mi,Electricity and gasoline or ethanol 40mi,billion vmt/PJ,0.437511682,0.393979014,0.442106438,0.522732926,0.524819324,0.524764403,0.524220028,0.524220028,0.524220028 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_MOVES_class.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_MOVES_class.csv new file mode 100644 index 0000000000..c8bb941305 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_MOVES_class.csv @@ -0,0 +1,30 @@ +# File: MARKAL_MOVES_class.csv +# Title: Mapping file between MARKAL and MOVES +# Source: NA - Mapping file +# Comments: for MOVES_to_MARKAL_Mapping: A represents a single MOVES sourceTypeID to multiple MARKAL classes. B represents multiple MOVES sourceTypeIDs to a single MARKAL class. +# Units: NA +# Column types: ciic +# ---------- +MARKAL_Class,MOVES_Source_Type,MOVES_Reg_Class,MOVES_to_MARKAL_Mapping +Mini car,21,,A +Compact car,21,,A +Full size car,21,,A +Minivan,31,,A +Small SUV,31,,A +Large SUV,31,,A +Pickup,32,30, +Bus,41,,B +Bus,42,,B +Bus,43,,B +Commercial truck,32,40, +Commercial truck,32,41, +Commercial truck,51,40, +Commercial truck,51,41, +Commercial truck,52,40, +Commercial truck,52,41, +Commercial truck,53,40, +Commercial truck,53,41, +Heavy duty long haul truck,53,,B +Heavy duty long haul truck,62,,B +Heavy duty short haul truck,52,,B +Heavy duty short haul truck,61,,B diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_HDV_fuel.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_HDV_fuel.csv new file mode 100644 index 0000000000..f52fa4c45e --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_HDV_fuel.csv @@ -0,0 +1,10 @@ +# File: MARKAL_UCD_HDV_fuel.csv +# Title: mapping file for MARKAL and UCD HDV fuels +# Units: NA +# Source: NA - Mapping file +# Column types: cc +# ---------- +MARKAL_HDV_fuel,UCD_HDV_fuel +B0,Liquids +CNG,NG +ELC,BEV diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_LDV_fuel.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_LDV_fuel.csv new file mode 100644 index 0000000000..ea4fa88c82 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_LDV_fuel.csv @@ -0,0 +1,12 @@ +# File: MARKAL_UCD_LDV_fuel.csv +# Title: mapping file for MARKAL and UCD LDV fuels +# Units: NA +# Source: NA - Mapping file +# Column types: cc +# ---------- +MARKAL_LDV_fuel,UCD_LDV_fuel +ELC,BEV +ELC,FCEV +GSL,Liquids +GSL,Hybrid Liquids +CNG,NG diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_class.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_class.csv new file mode 100644 index 0000000000..1e7bc79b8a --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_UCD_class.csv @@ -0,0 +1,17 @@ +# File: MARKAL_UCD_class.csv +# Title: mapping file for MARKAL and UCD vehicle classes +# Units: NA +# Source: NA - Mapping file +# Column types: ccc +# ---------- +MARKAL_class,UCD_class_old,UCD_class +Bus,Bus,Bus +Compact car,Compact Car,Car +Full size car,Midsize Car,Car +Small SUV,Large Car,Large Car and Truck +Pickup,Light Truck and SUV,Large Car and Truck +Pickup,Truck (0-2.7t),Light truck +Commercial truck,Truck (2.7-4.5t),Medium truck +Heavy duty short haul truck,Truck (4.5-12t),Medium truck +Heavy duty long haul truck,Truck (>12t),Heavy truck +Motorcycle,None,2W and 3W diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_fuel_name_code.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_fuel_name_code.csv new file mode 100644 index 0000000000..35d79cb9b2 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_fuel_name_code.csv @@ -0,0 +1,21 @@ +# File: MARKAL_fuel_name_code.csv +# Title: Mapping file between MARKAL fuel code and fuel name +# Source: NA - Mapping file +# Comments: In B# the # is the biodiesel content. So B0 is diesel and B100 is pure biodiesel +# Units: NA +# Column types: cc +# ---------- +Fuel_name,Fuel_code +Gasoline,GSL +Diesel,DSL +CNG,CNG +Electricity,ELC +E85 or gasoline,E10 +E85 or gasoline,E15 +E85 or gasoline,E85 +Electricity and gasoline 20mi,PH20G +Electricity and gasoline or ethanol 20mi,PH20E +Electricity and gasoline 40mi,PH40G +Electricity and gasoline or ethanol 40mi,PH40E +Biodiesel (B20),B20 +Diesel,B0 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_nonghg_indenergy_tech_coeff_USA_dhl.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_nonghg_indenergy_tech_coeff_USA_dhl.csv new file mode 100644 index 0000000000..9380052c95 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MARKAL_nonghg_indenergy_tech_coeff_USA_dhl.csv @@ -0,0 +1,49376 @@ +# File: MARKAL_nonghg_indenergy_tech_coeff_USA_dhl.csv +# Title: Industrial fuel use emission factors +# Source: Dan Loughlin (EPA)'s calculations based on GREET 2014 and market shares estimated using the EPA US nine-region MARKAL database: Database documentation Office of Research and Development. U.S. Environmental Protection Agency; 2013. No.: EPA 600/B-13/203. Available at:http://cfpub.epa.gov/si/si_public_record_Report.cfm?dirEntryId=278925&CFID=36235307&CFTOKEN=34660040&jsessionid=cc308791e9d5b702ad59412787521533d523 +# EFs for NOx SO2 PM10 PM2.5 NMVOC CO BC and OC +# Units: Tg/EJ +# Column types: ccccicn +# ---------- +region,supplysector,subsector,stub.technology,year,Non.CO2,emiss.coeff +AK,industrial fuel use,coal,coal,2005,NOx,0.261565752 +AK,industrial fuel use,coal,coal,2010,NOx,0.24128762 +AK,industrial fuel use,coal,coal,2015,NOx,0.247879608 +AK,industrial fuel use,coal,coal,2020,NOx,0.234312556 +AK,industrial fuel use,coal,coal,2025,NOx,0.240398293 +AK,industrial fuel use,coal,coal,2030,NOx,0.246677964 +AK,industrial fuel use,coal,coal,2035,NOx,0.250299201 +AK,industrial fuel use,coal,coal,2040,NOx,0.253554811 +AK,industrial fuel use,coal,coal,2045,NOx,0.255578056 +AK,industrial fuel use,coal,coal,2050,NOx,0.258549854 +AK,industrial fuel use,coal,coal,2055,NOx,0.26014596 +AK,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +AK,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +AK,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +AK,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +AK,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +AK,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +AK,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +AK,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +AK,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +AK,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +AK,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +AK,industrial fuel use,gas,gas,2005,NOx,0.080919016 +AK,industrial fuel use,gas,gas,2010,NOx,0.044952568 +AK,industrial fuel use,gas,gas,2015,NOx,0.037239142 +AK,industrial fuel use,gas,gas,2020,NOx,0.040745965 +AK,industrial fuel use,gas,gas,2025,NOx,0.042574105 +AK,industrial fuel use,gas,gas,2030,NOx,0.045347383 +AK,industrial fuel use,gas,gas,2035,NOx,0.048574619 +AK,industrial fuel use,gas,gas,2040,NOx,0.050422899 +AK,industrial fuel use,gas,gas,2045,NOx,0.050680722 +AK,industrial fuel use,gas,gas,2050,NOx,0.0517343 +AK,industrial fuel use,gas,gas,2055,NOx,0.052443137 +AK,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +AK,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +AK,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +AK,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +AK,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +AK,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +AK,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +AK,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +AK,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +AK,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +AK,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +AK,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +AK,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +AK,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +AK,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +AK,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +AK,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +AK,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +AK,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +AK,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +AK,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +AK,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +AK,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +AK,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +AK,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +AK,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +AK,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +AK,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +AK,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +AK,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +AK,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +AK,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +AK,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +AK,industrial fuel use,coal,coal,2005,SO2,0.709862367 +AK,industrial fuel use,coal,coal,2010,SO2,0.679592789 +AK,industrial fuel use,coal,coal,2015,SO2,0.590904591 +AK,industrial fuel use,coal,coal,2020,SO2,0.549595621 +AK,industrial fuel use,coal,coal,2025,SO2,0.56430149 +AK,industrial fuel use,coal,coal,2030,SO2,0.576548046 +AK,industrial fuel use,coal,coal,2035,SO2,0.583595424 +AK,industrial fuel use,coal,coal,2040,SO2,0.590805881 +AK,industrial fuel use,coal,coal,2045,SO2,0.596410723 +AK,industrial fuel use,coal,coal,2050,SO2,0.606154195 +AK,industrial fuel use,coal,coal,2055,SO2,0.611234923 +AK,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +AK,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +AK,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +AK,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +AK,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +AK,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +AK,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +AK,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +AK,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +AK,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +AK,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +AK,industrial fuel use,gas,gas,2005,SO2,0.000213988 +AK,industrial fuel use,gas,gas,2010,SO2,0.002761946 +AK,industrial fuel use,gas,gas,2015,SO2,0.002854723 +AK,industrial fuel use,gas,gas,2020,SO2,0.002771127 +AK,industrial fuel use,gas,gas,2025,SO2,0.002798763 +AK,industrial fuel use,gas,gas,2030,SO2,0.002938075 +AK,industrial fuel use,gas,gas,2035,SO2,0.003016098 +AK,industrial fuel use,gas,gas,2040,SO2,0.003118901 +AK,industrial fuel use,gas,gas,2045,SO2,0.00311325 +AK,industrial fuel use,gas,gas,2050,SO2,0.003090451 +AK,industrial fuel use,gas,gas,2055,SO2,0.003025213 +AK,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +AK,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +AK,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +AK,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +AK,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +AK,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +AK,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +AK,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +AK,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +AK,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +AK,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +AK,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +AK,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +AK,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +AK,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +AK,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +AK,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +AK,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +AK,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +AK,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +AK,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +AK,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +AK,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +AK,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +AK,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +AK,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +AK,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +AK,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +AK,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +AK,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +AK,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +AK,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +AK,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +AK,industrial fuel use,coal,coal,2005,PM10,0.136452905 +AK,industrial fuel use,coal,coal,2010,PM10,0.093662835 +AK,industrial fuel use,coal,coal,2015,PM10,0.100887759 +AK,industrial fuel use,coal,coal,2020,PM10,0.094503476 +AK,industrial fuel use,coal,coal,2025,PM10,0.09752377 +AK,industrial fuel use,coal,coal,2030,PM10,0.099823133 +AK,industrial fuel use,coal,coal,2035,PM10,0.101097535 +AK,industrial fuel use,coal,coal,2040,PM10,0.102438117 +AK,industrial fuel use,coal,coal,2045,PM10,0.103553978 +AK,industrial fuel use,coal,coal,2050,PM10,0.105393893 +AK,industrial fuel use,coal,coal,2055,PM10,0.106304221 +AK,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +AK,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +AK,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +AK,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +AK,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +AK,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +AK,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +AK,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +AK,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +AK,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +AK,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +AK,industrial fuel use,gas,gas,2005,PM10,0.002144603 +AK,industrial fuel use,gas,gas,2010,PM10,0.004157892 +AK,industrial fuel use,gas,gas,2015,PM10,0.004308637 +AK,industrial fuel use,gas,gas,2020,PM10,0.004261296 +AK,industrial fuel use,gas,gas,2025,PM10,0.004334357 +AK,industrial fuel use,gas,gas,2030,PM10,0.00454497 +AK,industrial fuel use,gas,gas,2035,PM10,0.004581054 +AK,industrial fuel use,gas,gas,2040,PM10,0.004690204 +AK,industrial fuel use,gas,gas,2045,PM10,0.004695842 +AK,industrial fuel use,gas,gas,2050,PM10,0.004649052 +AK,industrial fuel use,gas,gas,2055,PM10,0.00454824 +AK,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +AK,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +AK,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +AK,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +AK,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +AK,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +AK,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +AK,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +AK,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +AK,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +AK,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +AK,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +AK,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +AK,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +AK,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +AK,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +AK,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +AK,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +AK,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +AK,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +AK,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +AK,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +AK,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +AK,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +AK,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +AK,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +AK,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +AK,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +AK,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +AK,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +AK,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +AK,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +AK,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +AK,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +AK,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +AK,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +AK,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +AK,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +AK,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +AK,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +AK,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +AK,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +AK,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +AK,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +AK,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +AK,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +AK,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +AK,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +AK,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +AK,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +AK,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +AK,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +AK,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +AK,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +AK,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +AK,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +AK,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +AK,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +AK,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +AK,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +AK,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +AK,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +AK,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +AK,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +AK,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +AK,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +AK,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +AK,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +AK,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +AK,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +AK,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +AK,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +AK,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +AK,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +AK,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +AK,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +AK,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +AK,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +AK,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +AK,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +AK,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +AK,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +AK,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +AK,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +AK,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +AK,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +AK,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +AK,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +AK,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +AK,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +AK,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +AK,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +AK,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +AK,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +AK,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +AK,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +AK,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +AK,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +AK,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +AK,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +AK,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +AK,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +AK,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +AK,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +AK,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +AK,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +AK,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +AK,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +AK,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +AK,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +AK,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +AK,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +AK,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +AK,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +AK,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +AK,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +AK,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +AK,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +AK,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +AK,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +AK,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +AK,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +AK,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +AK,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +AK,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +AK,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +AK,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +AK,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +AK,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +AK,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +AK,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +AK,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +AK,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +AK,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +AK,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +AK,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +AK,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +AK,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +AK,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +AK,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +AK,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +AK,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +AK,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,1.15E-02 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,1.25E-02 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +AK,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +AK,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +AK,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +AK,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +AK,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +AK,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +AK,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +AK,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +AK,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +AK,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +AK,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +AK,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +AK,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +AK,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +AK,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +AK,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +AK,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +AK,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +AK,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +AK,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +AK,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +AK,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +AK,industrial fuel use,coal,coal,2005,CO,0.069434106 +AK,industrial fuel use,coal,coal,2010,CO,0.07723114 +AK,industrial fuel use,coal,coal,2015,CO,0.068281575 +AK,industrial fuel use,coal,coal,2020,CO,0.063753622 +AK,industrial fuel use,coal,coal,2025,CO,0.065761399 +AK,industrial fuel use,coal,coal,2030,CO,0.067959367 +AK,industrial fuel use,coal,coal,2035,CO,0.069173462 +AK,industrial fuel use,coal,coal,2040,CO,0.070202866 +AK,industrial fuel use,coal,coal,2045,CO,0.071098148 +AK,industrial fuel use,coal,coal,2050,CO,0.072063393 +AK,industrial fuel use,coal,coal,2055,CO,0.072511454 +AK,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +AK,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +AK,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +AK,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +AK,industrial fuel use,coal,coal cogen,2025,CO,6.58E-02 +AK,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +AK,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +AK,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +AK,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +AK,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +AK,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +AK,industrial fuel use,gas,gas,2005,CO,0.054958784 +AK,industrial fuel use,gas,gas,2010,CO,0.041119779 +AK,industrial fuel use,gas,gas,2015,CO,0.037376927 +AK,industrial fuel use,gas,gas,2020,CO,0.042196984 +AK,industrial fuel use,gas,gas,2025,CO,0.046340259 +AK,industrial fuel use,gas,gas,2030,CO,0.051044751 +AK,industrial fuel use,gas,gas,2035,CO,0.048377476 +AK,industrial fuel use,gas,gas,2040,CO,0.04844371 +AK,industrial fuel use,gas,gas,2045,CO,0.049325699 +AK,industrial fuel use,gas,gas,2050,CO,0.048085677 +AK,industrial fuel use,gas,gas,2055,CO,0.046506083 +AK,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +AK,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +AK,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +AK,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +AK,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +AK,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +AK,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +AK,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +AK,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +AK,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +AK,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +AK,industrial fuel use,biomass,biomass,2005,CO,9.52E-02 +AK,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +AK,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +AK,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +AK,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +AK,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +AK,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +AK,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +AK,industrial fuel use,biomass,biomass,2045,CO,9.24E-02 +AK,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +AK,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +AK,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +AK,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +AK,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +AK,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +AK,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +AK,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +AK,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +AK,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +AK,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +AK,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +AK,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +AK,industrial fuel use,coal,coal,2005,CH4,0.008615911 +AK,industrial fuel use,coal,coal,2010,CH4,0.007087118 +AK,industrial fuel use,coal,coal,2015,CH4,0.007645512 +AK,industrial fuel use,coal,coal,2020,CH4,0.007093206 +AK,industrial fuel use,coal,coal,2025,CH4,0.007280827 +AK,industrial fuel use,coal,coal,2030,CH4,0.007426545 +AK,industrial fuel use,coal,coal,2035,CH4,0.007524098 +AK,industrial fuel use,coal,coal,2040,CH4,0.007621441 +AK,industrial fuel use,coal,coal,2045,CH4,0.007691307 +AK,industrial fuel use,coal,coal,2050,CH4,0.007801358 +AK,industrial fuel use,coal,coal,2055,CH4,0.007871907 +AK,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +AK,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +AK,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +AK,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +AK,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +AK,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +AK,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +AK,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +AK,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +AK,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +AK,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +AK,industrial fuel use,gas,gas,2005,CH4,0.002575726 +AK,industrial fuel use,gas,gas,2010,CH4,0.0036902 +AK,industrial fuel use,gas,gas,2015,CH4,0.001847174 +AK,industrial fuel use,gas,gas,2020,CH4,0.002575374 +AK,industrial fuel use,gas,gas,2025,CH4,0.002470739 +AK,industrial fuel use,gas,gas,2030,CH4,0.002514812 +AK,industrial fuel use,gas,gas,2035,CH4,0.004402202 +AK,industrial fuel use,gas,gas,2040,CH4,0.005194877 +AK,industrial fuel use,gas,gas,2045,CH4,0.005264291 +AK,industrial fuel use,gas,gas,2050,CH4,0.006086388 +AK,industrial fuel use,gas,gas,2055,CH4,0.006850703 +AK,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +AK,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +AK,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +AK,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +AK,industrial fuel use,gas,gas cogen,2025,CH4,2.47E-03 +AK,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +AK,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +AK,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +AK,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +AK,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +AK,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +AK,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +AK,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +AK,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +AK,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +AK,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +AK,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +AK,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +AK,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +AK,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +AK,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +AK,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +AK,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +AK,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +AK,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +AK,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +AK,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +AK,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +AK,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +AK,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +AK,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +AK,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +AK,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +AK,industrial fuel use,coal,coal,2005,N2O,0.002945881 +AK,industrial fuel use,coal,coal,2010,N2O,0.004699422 +AK,industrial fuel use,coal,coal,2015,N2O,0.003718249 +AK,industrial fuel use,coal,coal,2020,N2O,0.003503987 +AK,industrial fuel use,coal,coal,2025,N2O,0.003902448 +AK,industrial fuel use,coal,coal,2030,N2O,0.005231917 +AK,industrial fuel use,coal,coal,2035,N2O,0.005844861 +AK,industrial fuel use,coal,coal,2040,N2O,0.006123209 +AK,industrial fuel use,coal,coal,2045,N2O,0.006493024 +AK,industrial fuel use,coal,coal,2050,N2O,0.00643187 +AK,industrial fuel use,coal,coal,2055,N2O,0.006580646 +AK,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +AK,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +AK,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +AK,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +AK,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +AK,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +AK,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +AK,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +AK,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +AK,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +AK,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +AK,industrial fuel use,gas,gas,2005,N2O,0.000509795 +AK,industrial fuel use,gas,gas,2010,N2O,0.000459136 +AK,industrial fuel use,gas,gas,2015,N2O,0.000457847 +AK,industrial fuel use,gas,gas,2020,N2O,0.000469807 +AK,industrial fuel use,gas,gas,2025,N2O,0.0004748 +AK,industrial fuel use,gas,gas,2030,N2O,0.000493269 +AK,industrial fuel use,gas,gas,2035,N2O,0.0005142 +AK,industrial fuel use,gas,gas,2040,N2O,0.000525413 +AK,industrial fuel use,gas,gas,2045,N2O,0.000530678 +AK,industrial fuel use,gas,gas,2050,N2O,0.000534097 +AK,industrial fuel use,gas,gas,2055,N2O,0.000535185 +AK,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +AK,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +AK,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +AK,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +AK,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +AK,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +AK,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +AK,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +AK,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +AK,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +AK,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +AK,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +AK,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +AK,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +AK,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +AK,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +AK,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +AK,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +AK,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +AK,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +AK,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +AK,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +AK,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +AK,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +AK,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +AK,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +AK,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +AK,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +AK,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +AK,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +AK,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +AK,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +AK,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +AK,industrial fuel use,coal,coal,2005,BC,0.052178527 +AK,industrial fuel use,coal,coal,2010,BC,0.054113893 +AK,industrial fuel use,coal,coal,2015,BC,0.054816673 +AK,industrial fuel use,coal,coal,2020,BC,0.051442317 +AK,industrial fuel use,coal,coal,2025,BC,0.05280003 +AK,industrial fuel use,coal,coal,2030,BC,0.054819383 +AK,industrial fuel use,coal,coal,2035,BC,0.055934389 +AK,industrial fuel use,coal,coal,2040,BC,0.056737391 +AK,industrial fuel use,coal,coal,2045,BC,0.057341111 +AK,industrial fuel use,coal,coal,2050,BC,0.057867944 +AK,industrial fuel use,coal,coal,2055,BC,0.058307588 +AK,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +AK,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +AK,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +AK,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +AK,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +AK,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +AK,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +AK,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +AK,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +AK,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +AK,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +AK,industrial fuel use,gas,gas,2005,BC,0.000879555 +AK,industrial fuel use,gas,gas,2010,BC,0.000594596 +AK,industrial fuel use,gas,gas,2015,BC,0.000780779 +AK,industrial fuel use,gas,gas,2020,BC,0.000758542 +AK,industrial fuel use,gas,gas,2025,BC,0.000791704 +AK,industrial fuel use,gas,gas,2030,BC,0.000829295 +AK,industrial fuel use,gas,gas,2035,BC,0.000745895 +AK,industrial fuel use,gas,gas,2040,BC,0.000739727 +AK,industrial fuel use,gas,gas,2045,BC,0.000759191 +AK,industrial fuel use,gas,gas,2050,BC,0.000728476 +AK,industrial fuel use,gas,gas,2055,BC,0.000688571 +AK,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +AK,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +AK,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +AK,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +AK,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +AK,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +AK,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +AK,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +AK,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +AK,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +AK,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +AK,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +AK,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +AK,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +AK,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +AK,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +AK,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +AK,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +AK,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +AK,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +AK,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +AK,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +AK,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +AK,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +AK,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +AK,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +AK,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +AK,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +AK,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +AK,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +AK,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +AK,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +AK,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +AK,industrial fuel use,coal,coal,2005,OC,0.004608879 +AK,industrial fuel use,coal,coal,2010,OC,0.004949044 +AK,industrial fuel use,coal,coal,2015,OC,0.005291355 +AK,industrial fuel use,coal,coal,2020,OC,0.005047635 +AK,industrial fuel use,coal,coal,2025,OC,0.005240698 +AK,industrial fuel use,coal,coal,2030,OC,0.005398598 +AK,industrial fuel use,coal,coal,2035,OC,0.005483036 +AK,industrial fuel use,coal,coal,2040,OC,0.005583473 +AK,industrial fuel use,coal,coal,2045,OC,0.005638434 +AK,industrial fuel use,coal,coal,2050,OC,0.005723515 +AK,industrial fuel use,coal,coal,2055,OC,0.005777195 +AK,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +AK,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +AK,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +AK,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +AK,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +AK,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +AK,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +AK,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +AK,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +AK,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +AK,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +AK,industrial fuel use,gas,gas,2005,OC,0.000586894 +AK,industrial fuel use,gas,gas,2010,OC,0.000538986 +AK,industrial fuel use,gas,gas,2015,OC,0.000406177 +AK,industrial fuel use,gas,gas,2020,OC,0.000436774 +AK,industrial fuel use,gas,gas,2025,OC,0.000431434 +AK,industrial fuel use,gas,gas,2030,OC,0.000454497 +AK,industrial fuel use,gas,gas,2035,OC,0.0005142 +AK,industrial fuel use,gas,gas,2040,OC,0.000542203 +AK,industrial fuel use,gas,gas,2045,OC,0.0005354 +AK,industrial fuel use,gas,gas,2050,OC,0.000552822 +AK,industrial fuel use,gas,gas,2055,OC,0.000563528 +AK,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +AK,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +AK,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +AK,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +AK,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +AK,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +AK,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +AK,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +AK,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +AK,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +AK,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +AK,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +AK,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +AK,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +AK,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +AK,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +AK,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +AK,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +AK,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +AK,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +AK,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +AK,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +AK,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +AK,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +AK,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +AK,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +AK,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +AK,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +AK,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +AK,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +AK,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +AK,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +AK,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +AK,industrial fuel use,coal,coal,2005,CO2,0.022413751 +AK,industrial fuel use,coal,coal,2010,CO2,0.023247485 +AK,industrial fuel use,coal,coal,2015,CO2,0.023542577 +AK,industrial fuel use,coal,coal,2020,CO2,0.022100946 +AK,industrial fuel use,coal,coal,2025,CO2,0.022682182 +AK,industrial fuel use,coal,coal,2030,CO2,0.023544891 +AK,industrial fuel use,coal,coal,2035,CO2,0.024022124 +AK,industrial fuel use,coal,coal,2040,CO2,0.024371859 +AK,industrial fuel use,coal,coal,2045,CO2,0.024626877 +AK,industrial fuel use,coal,coal,2050,CO2,0.024861999 +AK,industrial fuel use,coal,coal,2055,CO2,0.025047846 +AK,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +AK,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +AK,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +AK,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +AK,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +AK,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +AK,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +AK,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +AK,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +AK,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +AK,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +AK,industrial fuel use,gas,gas,2005,CO2,0.010100215 +AK,industrial fuel use,gas,gas,2010,CO2,0.008735772 +AK,industrial fuel use,gas,gas,2015,CO2,0.008975567 +AK,industrial fuel use,gas,gas,2020,CO2,0.009141549 +AK,industrial fuel use,gas,gas,2025,CO2,0.009319403 +AK,industrial fuel use,gas,gas,2030,CO2,0.009661635 +AK,industrial fuel use,gas,gas,2035,CO2,0.009858394 +AK,industrial fuel use,gas,gas,2040,CO2,0.010090146 +AK,industrial fuel use,gas,gas,2045,CO2,0.010177486 +AK,industrial fuel use,gas,gas,2050,CO2,0.010210503 +AK,industrial fuel use,gas,gas,2055,CO2,0.010168744 +AK,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +AK,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +AK,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +AK,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +AK,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +AK,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +AK,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +AK,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +AK,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +AK,industrial fuel use,gas,gas cogen,2050,CO2,1.02E-02 +AK,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +AK,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +AK,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +AK,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,9.80E-03 +AK,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,8.85E-03 +AK,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +AK,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +AK,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +AK,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +AK,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +AK,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +AK,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,9.36E-03 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +AK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +AK,industrial fuel use,biomass,biomass,2005,CO2,0 +AK,industrial fuel use,biomass,biomass,2010,CO2,0 +AK,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +AK,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +AK,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +AK,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +AK,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +AK,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +AK,industrial fuel use,biomass,biomass,2045,CO2,1.11E-04 +AK,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +AK,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +AK,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +AK,industrial fuel use,biomass,biomass cogen,2010,CO2,0.00E+00 +AK,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +AK,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +AK,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +AK,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +AK,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +AK,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +AK,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +AK,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +AK,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +AL,industrial fuel use,coal,coal,2005,NOx,0.261565752 +AL,industrial fuel use,coal,coal,2010,NOx,0.24128762 +AL,industrial fuel use,coal,coal,2015,NOx,0.247879608 +AL,industrial fuel use,coal,coal,2020,NOx,0.234312556 +AL,industrial fuel use,coal,coal,2025,NOx,2.40E-01 +AL,industrial fuel use,coal,coal,2030,NOx,2.47E-01 +AL,industrial fuel use,coal,coal,2035,NOx,0.250299201 +AL,industrial fuel use,coal,coal,2040,NOx,0.253554811 +AL,industrial fuel use,coal,coal,2045,NOx,0.255578056 +AL,industrial fuel use,coal,coal,2050,NOx,2.59E-01 +AL,industrial fuel use,coal,coal,2055,NOx,2.60E-01 +AL,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +AL,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +AL,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +AL,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +AL,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +AL,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +AL,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +AL,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +AL,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +AL,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +AL,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +AL,industrial fuel use,gas,gas,2005,NOx,0.080919016 +AL,industrial fuel use,gas,gas,2010,NOx,4.50E-02 +AL,industrial fuel use,gas,gas,2015,NOx,0.037239142 +AL,industrial fuel use,gas,gas,2020,NOx,0.040745965 +AL,industrial fuel use,gas,gas,2025,NOx,0.042574105 +AL,industrial fuel use,gas,gas,2030,NOx,0.045347383 +AL,industrial fuel use,gas,gas,2035,NOx,0.048574619 +AL,industrial fuel use,gas,gas,2040,NOx,0.050422899 +AL,industrial fuel use,gas,gas,2045,NOx,0.050680722 +AL,industrial fuel use,gas,gas,2050,NOx,0.0517343 +AL,industrial fuel use,gas,gas,2055,NOx,0.052443137 +AL,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +AL,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +AL,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +AL,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +AL,industrial fuel use,gas,gas cogen,2025,NOx,4.26E-02 +AL,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +AL,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +AL,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +AL,industrial fuel use,gas,gas cogen,2045,NOx,5.07E-02 +AL,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +AL,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,1.06E-01 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +AL,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +AL,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +AL,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +AL,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +AL,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +AL,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +AL,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +AL,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +AL,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +AL,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +AL,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +AL,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +AL,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +AL,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +AL,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +AL,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +AL,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +AL,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +AL,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +AL,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +AL,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +AL,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +AL,industrial fuel use,coal,coal,2005,SO2,0.709862367 +AL,industrial fuel use,coal,coal,2010,SO2,0.679592789 +AL,industrial fuel use,coal,coal,2015,SO2,0.590904591 +AL,industrial fuel use,coal,coal,2020,SO2,0.549595621 +AL,industrial fuel use,coal,coal,2025,SO2,0.56430149 +AL,industrial fuel use,coal,coal,2030,SO2,0.576548046 +AL,industrial fuel use,coal,coal,2035,SO2,0.583595424 +AL,industrial fuel use,coal,coal,2040,SO2,0.590805881 +AL,industrial fuel use,coal,coal,2045,SO2,0.596410723 +AL,industrial fuel use,coal,coal,2050,SO2,0.606154195 +AL,industrial fuel use,coal,coal,2055,SO2,0.611234923 +AL,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +AL,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +AL,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +AL,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +AL,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +AL,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +AL,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +AL,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +AL,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +AL,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +AL,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +AL,industrial fuel use,gas,gas,2005,SO2,0.000213988 +AL,industrial fuel use,gas,gas,2010,SO2,0.002761946 +AL,industrial fuel use,gas,gas,2015,SO2,0.002854723 +AL,industrial fuel use,gas,gas,2020,SO2,0.002771127 +AL,industrial fuel use,gas,gas,2025,SO2,0.002798763 +AL,industrial fuel use,gas,gas,2030,SO2,0.002938075 +AL,industrial fuel use,gas,gas,2035,SO2,0.003016098 +AL,industrial fuel use,gas,gas,2040,SO2,0.003118901 +AL,industrial fuel use,gas,gas,2045,SO2,0.00311325 +AL,industrial fuel use,gas,gas,2050,SO2,0.003090451 +AL,industrial fuel use,gas,gas,2055,SO2,0.003025213 +AL,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +AL,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +AL,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +AL,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +AL,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +AL,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +AL,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +AL,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +AL,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +AL,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +AL,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +AL,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +AL,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +AL,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +AL,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +AL,industrial fuel use,biomass,biomass,2025,SO2,5.21E-03 +AL,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +AL,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +AL,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +AL,industrial fuel use,biomass,biomass,2045,SO2,5.21E-03 +AL,industrial fuel use,biomass,biomass,2050,SO2,5.18E-03 +AL,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +AL,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +AL,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +AL,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +AL,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +AL,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +AL,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +AL,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +AL,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +AL,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +AL,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +AL,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +AL,industrial fuel use,coal,coal,2005,PM10,1.36E-01 +AL,industrial fuel use,coal,coal,2010,PM10,0.093662835 +AL,industrial fuel use,coal,coal,2015,PM10,0.100887759 +AL,industrial fuel use,coal,coal,2020,PM10,0.094503476 +AL,industrial fuel use,coal,coal,2025,PM10,0.09752377 +AL,industrial fuel use,coal,coal,2030,PM10,0.099823133 +AL,industrial fuel use,coal,coal,2035,PM10,0.101097535 +AL,industrial fuel use,coal,coal,2040,PM10,0.102438117 +AL,industrial fuel use,coal,coal,2045,PM10,0.103553978 +AL,industrial fuel use,coal,coal,2050,PM10,0.105393893 +AL,industrial fuel use,coal,coal,2055,PM10,0.106304221 +AL,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +AL,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +AL,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +AL,industrial fuel use,coal,coal cogen,2020,PM10,9.45E-02 +AL,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +AL,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +AL,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +AL,industrial fuel use,coal,coal cogen,2040,PM10,1.02E-01 +AL,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +AL,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +AL,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +AL,industrial fuel use,gas,gas,2005,PM10,0.002144603 +AL,industrial fuel use,gas,gas,2010,PM10,0.004157892 +AL,industrial fuel use,gas,gas,2015,PM10,0.004308637 +AL,industrial fuel use,gas,gas,2020,PM10,0.004261296 +AL,industrial fuel use,gas,gas,2025,PM10,0.004334357 +AL,industrial fuel use,gas,gas,2030,PM10,0.00454497 +AL,industrial fuel use,gas,gas,2035,PM10,0.004581054 +AL,industrial fuel use,gas,gas,2040,PM10,0.004690204 +AL,industrial fuel use,gas,gas,2045,PM10,0.004695842 +AL,industrial fuel use,gas,gas,2050,PM10,0.004649052 +AL,industrial fuel use,gas,gas,2055,PM10,4.55E-03 +AL,industrial fuel use,gas,gas cogen,2005,PM10,2.14E-03 +AL,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +AL,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +AL,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +AL,industrial fuel use,gas,gas cogen,2025,PM10,4.33E-03 +AL,industrial fuel use,gas,gas cogen,2030,PM10,4.54E-03 +AL,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +AL,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +AL,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +AL,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +AL,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,3.42E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,4.05E-02 +AL,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +AL,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +AL,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +AL,industrial fuel use,biomass,biomass,2020,PM10,4.14E-03 +AL,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +AL,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +AL,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +AL,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +AL,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +AL,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +AL,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +AL,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +AL,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +AL,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +AL,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +AL,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +AL,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +AL,industrial fuel use,biomass,biomass cogen,2035,PM10,2.98E-03 +AL,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +AL,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +AL,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +AL,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +AL,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +AL,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +AL,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +AL,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +AL,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +AL,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +AL,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +AL,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +AL,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +AL,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +AL,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +AL,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +AL,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +AL,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +AL,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +AL,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +AL,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +AL,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +AL,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +AL,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +AL,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +AL,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +AL,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +AL,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +AL,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +AL,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +AL,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +AL,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +AL,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +AL,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +AL,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +AL,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +AL,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +AL,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +AL,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +AL,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +AL,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +AL,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +AL,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +AL,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +AL,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +AL,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +AL,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +AL,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +AL,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +AL,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +AL,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +AL,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +AL,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +AL,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +AL,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +AL,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +AL,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +AL,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +AL,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +AL,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +AL,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +AL,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +AL,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +AL,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +AL,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +AL,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +AL,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +AL,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +AL,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +AL,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +AL,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +AL,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +AL,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +AL,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +AL,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +AL,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +AL,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +AL,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +AL,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +AL,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +AL,industrial fuel use,coal,coal,2055,NMVOC,4.21E-03 +AL,industrial fuel use,coal,coal cogen,2005,NMVOC,1.12E-03 +AL,industrial fuel use,coal,coal cogen,2010,NMVOC,3.35E-03 +AL,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +AL,industrial fuel use,coal,coal cogen,2020,NMVOC,3.20E-03 +AL,industrial fuel use,coal,coal cogen,2025,NMVOC,3.43E-03 +AL,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +AL,industrial fuel use,coal,coal cogen,2035,NMVOC,3.73E-03 +AL,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +AL,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +AL,industrial fuel use,coal,coal cogen,2050,NMVOC,4.10E-03 +AL,industrial fuel use,coal,coal cogen,2055,NMVOC,4.21E-03 +AL,industrial fuel use,gas,gas,2005,NMVOC,2.30E-03 +AL,industrial fuel use,gas,gas,2010,NMVOC,4.28E-03 +AL,industrial fuel use,gas,gas,2015,NMVOC,3.81E-03 +AL,industrial fuel use,gas,gas,2020,NMVOC,4.05E-03 +AL,industrial fuel use,gas,gas,2025,NMVOC,4.30E-03 +AL,industrial fuel use,gas,gas,2030,NMVOC,4.69E-03 +AL,industrial fuel use,gas,gas,2035,NMVOC,4.65E-03 +AL,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +AL,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +AL,industrial fuel use,gas,gas,2050,NMVOC,4.63E-03 +AL,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +AL,industrial fuel use,gas,gas cogen,2005,NMVOC,2.30E-03 +AL,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +AL,industrial fuel use,gas,gas cogen,2015,NMVOC,3.81E-03 +AL,industrial fuel use,gas,gas cogen,2020,NMVOC,4.05E-03 +AL,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +AL,industrial fuel use,gas,gas cogen,2030,NMVOC,4.69E-03 +AL,industrial fuel use,gas,gas cogen,2035,NMVOC,4.65E-03 +AL,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +AL,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +AL,industrial fuel use,gas,gas cogen,2050,NMVOC,4.63E-03 +AL,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,1.15E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,1.25E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,1.25E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,1.31E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,1.48E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,1.55E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,1.62E-02 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,1.59E-02 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,1.25E-02 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,1.31E-02 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,1.69E-02 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,1.48E-02 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,1.55E-02 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,1.55E-02 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,1.59E-02 +AL,industrial fuel use,biomass,biomass,2005,NMVOC,4.42E-03 +AL,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +AL,industrial fuel use,biomass,biomass,2015,NMVOC,3.14E-03 +AL,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +AL,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +AL,industrial fuel use,biomass,biomass,2030,NMVOC,2.28E-03 +AL,industrial fuel use,biomass,biomass,2035,NMVOC,2.15E-03 +AL,industrial fuel use,biomass,biomass,2040,NMVOC,2.07E-03 +AL,industrial fuel use,biomass,biomass,2045,NMVOC,1.92E-03 +AL,industrial fuel use,biomass,biomass,2050,NMVOC,1.84E-03 +AL,industrial fuel use,biomass,biomass,2055,NMVOC,1.70E-03 +AL,industrial fuel use,biomass,biomass cogen,2005,NMVOC,4.42E-03 +AL,industrial fuel use,biomass,biomass cogen,2010,NMVOC,3.70E-03 +AL,industrial fuel use,biomass,biomass cogen,2015,NMVOC,3.14E-03 +AL,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +AL,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +AL,industrial fuel use,biomass,biomass cogen,2030,NMVOC,2.28E-03 +AL,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +AL,industrial fuel use,biomass,biomass cogen,2040,NMVOC,2.07E-03 +AL,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +AL,industrial fuel use,biomass,biomass cogen,2050,NMVOC,1.84E-03 +AL,industrial fuel use,biomass,biomass cogen,2055,NMVOC,1.70E-03 +AL,industrial fuel use,coal,coal,2005,CO,0.069434106 +AL,industrial fuel use,coal,coal,2010,CO,7.72E-02 +AL,industrial fuel use,coal,coal,2015,CO,6.83E-02 +AL,industrial fuel use,coal,coal,2020,CO,0.063753622 +AL,industrial fuel use,coal,coal,2025,CO,0.065761399 +AL,industrial fuel use,coal,coal,2030,CO,6.80E-02 +AL,industrial fuel use,coal,coal,2035,CO,0.069173462 +AL,industrial fuel use,coal,coal,2040,CO,0.070202866 +AL,industrial fuel use,coal,coal,2045,CO,7.11E-02 +AL,industrial fuel use,coal,coal,2050,CO,7.21E-02 +AL,industrial fuel use,coal,coal,2055,CO,7.25E-02 +AL,industrial fuel use,coal,coal cogen,2005,CO,6.94E-02 +AL,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +AL,industrial fuel use,coal,coal cogen,2015,CO,6.83E-02 +AL,industrial fuel use,coal,coal cogen,2020,CO,6.38E-02 +AL,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +AL,industrial fuel use,coal,coal cogen,2030,CO,6.80E-02 +AL,industrial fuel use,coal,coal cogen,2035,CO,6.92E-02 +AL,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +AL,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +AL,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +AL,industrial fuel use,coal,coal cogen,2055,CO,7.25E-02 +AL,industrial fuel use,gas,gas,2005,CO,5.50E-02 +AL,industrial fuel use,gas,gas,2010,CO,4.11E-02 +AL,industrial fuel use,gas,gas,2015,CO,0.037376927 +AL,industrial fuel use,gas,gas,2020,CO,0.042196984 +AL,industrial fuel use,gas,gas,2025,CO,0.046340259 +AL,industrial fuel use,gas,gas,2030,CO,0.051044751 +AL,industrial fuel use,gas,gas,2035,CO,0.048377476 +AL,industrial fuel use,gas,gas,2040,CO,0.04844371 +AL,industrial fuel use,gas,gas,2045,CO,0.049325699 +AL,industrial fuel use,gas,gas,2050,CO,0.048085677 +AL,industrial fuel use,gas,gas,2055,CO,0.046506083 +AL,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +AL,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +AL,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +AL,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +AL,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +AL,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +AL,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +AL,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +AL,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +AL,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +AL,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +AL,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +AL,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +AL,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +AL,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +AL,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +AL,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +AL,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +AL,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +AL,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +AL,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +AL,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +AL,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +AL,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +AL,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +AL,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +AL,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +AL,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +AL,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +AL,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +AL,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +AL,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +AL,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +AL,industrial fuel use,coal,coal,2005,CH4,0.008615911 +AL,industrial fuel use,coal,coal,2010,CH4,0.007087118 +AL,industrial fuel use,coal,coal,2015,CH4,0.007645512 +AL,industrial fuel use,coal,coal,2020,CH4,0.007093206 +AL,industrial fuel use,coal,coal,2025,CH4,0.007280827 +AL,industrial fuel use,coal,coal,2030,CH4,0.007426545 +AL,industrial fuel use,coal,coal,2035,CH4,0.007524098 +AL,industrial fuel use,coal,coal,2040,CH4,0.007621441 +AL,industrial fuel use,coal,coal,2045,CH4,0.007691307 +AL,industrial fuel use,coal,coal,2050,CH4,0.007801358 +AL,industrial fuel use,coal,coal,2055,CH4,0.007871907 +AL,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +AL,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +AL,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +AL,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +AL,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +AL,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +AL,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +AL,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +AL,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +AL,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +AL,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +AL,industrial fuel use,gas,gas,2005,CH4,0.002575726 +AL,industrial fuel use,gas,gas,2010,CH4,0.0036902 +AL,industrial fuel use,gas,gas,2015,CH4,0.001847174 +AL,industrial fuel use,gas,gas,2020,CH4,0.002575374 +AL,industrial fuel use,gas,gas,2025,CH4,0.002470739 +AL,industrial fuel use,gas,gas,2030,CH4,0.002514812 +AL,industrial fuel use,gas,gas,2035,CH4,0.004402202 +AL,industrial fuel use,gas,gas,2040,CH4,0.005194877 +AL,industrial fuel use,gas,gas,2045,CH4,0.005264291 +AL,industrial fuel use,gas,gas,2050,CH4,0.006086388 +AL,industrial fuel use,gas,gas,2055,CH4,0.006850703 +AL,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +AL,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +AL,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +AL,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +AL,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +AL,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +AL,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +AL,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +AL,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +AL,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +AL,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +AL,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +AL,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +AL,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +AL,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +AL,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +AL,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +AL,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +AL,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +AL,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +AL,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +AL,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +AL,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +AL,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +AL,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +AL,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +AL,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +AL,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +AL,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +AL,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +AL,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +AL,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +AL,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +AL,industrial fuel use,coal,coal,2005,N2O,0.002945881 +AL,industrial fuel use,coal,coal,2010,N2O,0.004699422 +AL,industrial fuel use,coal,coal,2015,N2O,0.003718249 +AL,industrial fuel use,coal,coal,2020,N2O,0.003503987 +AL,industrial fuel use,coal,coal,2025,N2O,0.003902448 +AL,industrial fuel use,coal,coal,2030,N2O,0.005231917 +AL,industrial fuel use,coal,coal,2035,N2O,0.005844861 +AL,industrial fuel use,coal,coal,2040,N2O,0.006123209 +AL,industrial fuel use,coal,coal,2045,N2O,0.006493024 +AL,industrial fuel use,coal,coal,2050,N2O,0.00643187 +AL,industrial fuel use,coal,coal,2055,N2O,0.006580646 +AL,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +AL,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +AL,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +AL,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +AL,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +AL,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +AL,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +AL,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +AL,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +AL,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +AL,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +AL,industrial fuel use,gas,gas,2005,N2O,0.000509795 +AL,industrial fuel use,gas,gas,2010,N2O,0.000459136 +AL,industrial fuel use,gas,gas,2015,N2O,0.000457847 +AL,industrial fuel use,gas,gas,2020,N2O,0.000469807 +AL,industrial fuel use,gas,gas,2025,N2O,0.0004748 +AL,industrial fuel use,gas,gas,2030,N2O,0.000493269 +AL,industrial fuel use,gas,gas,2035,N2O,0.0005142 +AL,industrial fuel use,gas,gas,2040,N2O,0.000525413 +AL,industrial fuel use,gas,gas,2045,N2O,0.000530678 +AL,industrial fuel use,gas,gas,2050,N2O,0.000534097 +AL,industrial fuel use,gas,gas,2055,N2O,0.000535185 +AL,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +AL,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +AL,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +AL,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +AL,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +AL,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +AL,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +AL,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +AL,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +AL,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +AL,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +AL,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +AL,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +AL,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +AL,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +AL,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +AL,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +AL,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +AL,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +AL,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +AL,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +AL,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +AL,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +AL,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +AL,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +AL,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +AL,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +AL,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +AL,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +AL,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +AL,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +AL,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +AL,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +AL,industrial fuel use,coal,coal,2005,BC,0.052178527 +AL,industrial fuel use,coal,coal,2010,BC,0.054113893 +AL,industrial fuel use,coal,coal,2015,BC,0.054816673 +AL,industrial fuel use,coal,coal,2020,BC,0.051442317 +AL,industrial fuel use,coal,coal,2025,BC,0.05280003 +AL,industrial fuel use,coal,coal,2030,BC,0.054819383 +AL,industrial fuel use,coal,coal,2035,BC,0.055934389 +AL,industrial fuel use,coal,coal,2040,BC,0.056737391 +AL,industrial fuel use,coal,coal,2045,BC,0.057341111 +AL,industrial fuel use,coal,coal,2050,BC,0.057867944 +AL,industrial fuel use,coal,coal,2055,BC,0.058307588 +AL,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +AL,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +AL,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +AL,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +AL,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +AL,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +AL,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +AL,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +AL,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +AL,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +AL,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +AL,industrial fuel use,gas,gas,2005,BC,0.000879555 +AL,industrial fuel use,gas,gas,2010,BC,0.000594596 +AL,industrial fuel use,gas,gas,2015,BC,0.000780779 +AL,industrial fuel use,gas,gas,2020,BC,0.000758542 +AL,industrial fuel use,gas,gas,2025,BC,0.000791704 +AL,industrial fuel use,gas,gas,2030,BC,0.000829295 +AL,industrial fuel use,gas,gas,2035,BC,0.000745895 +AL,industrial fuel use,gas,gas,2040,BC,0.000739727 +AL,industrial fuel use,gas,gas,2045,BC,0.000759191 +AL,industrial fuel use,gas,gas,2050,BC,0.000728476 +AL,industrial fuel use,gas,gas,2055,BC,0.000688571 +AL,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +AL,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +AL,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +AL,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +AL,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +AL,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +AL,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +AL,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +AL,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +AL,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +AL,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +AL,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +AL,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +AL,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +AL,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +AL,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +AL,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +AL,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +AL,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +AL,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +AL,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +AL,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +AL,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +AL,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +AL,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +AL,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +AL,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +AL,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +AL,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +AL,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +AL,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +AL,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +AL,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +AL,industrial fuel use,coal,coal,2005,OC,0.004608879 +AL,industrial fuel use,coal,coal,2010,OC,0.004949044 +AL,industrial fuel use,coal,coal,2015,OC,0.005291355 +AL,industrial fuel use,coal,coal,2020,OC,0.005047635 +AL,industrial fuel use,coal,coal,2025,OC,0.005240698 +AL,industrial fuel use,coal,coal,2030,OC,0.005398598 +AL,industrial fuel use,coal,coal,2035,OC,0.005483036 +AL,industrial fuel use,coal,coal,2040,OC,0.005583473 +AL,industrial fuel use,coal,coal,2045,OC,0.005638434 +AL,industrial fuel use,coal,coal,2050,OC,0.005723515 +AL,industrial fuel use,coal,coal,2055,OC,0.005777195 +AL,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +AL,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +AL,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +AL,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +AL,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +AL,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +AL,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +AL,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +AL,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +AL,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +AL,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +AL,industrial fuel use,gas,gas,2005,OC,0.000586894 +AL,industrial fuel use,gas,gas,2010,OC,0.000538986 +AL,industrial fuel use,gas,gas,2015,OC,0.000406177 +AL,industrial fuel use,gas,gas,2020,OC,0.000436774 +AL,industrial fuel use,gas,gas,2025,OC,0.000431434 +AL,industrial fuel use,gas,gas,2030,OC,0.000454497 +AL,industrial fuel use,gas,gas,2035,OC,0.0005142 +AL,industrial fuel use,gas,gas,2040,OC,0.000542203 +AL,industrial fuel use,gas,gas,2045,OC,0.0005354 +AL,industrial fuel use,gas,gas,2050,OC,0.000552822 +AL,industrial fuel use,gas,gas,2055,OC,0.000563528 +AL,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +AL,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +AL,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +AL,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +AL,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +AL,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +AL,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +AL,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +AL,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +AL,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +AL,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +AL,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +AL,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +AL,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +AL,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +AL,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +AL,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +AL,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +AL,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +AL,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +AL,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +AL,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +AL,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +AL,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +AL,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +AL,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +AL,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +AL,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +AL,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +AL,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +AL,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +AL,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +AL,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +AL,industrial fuel use,coal,coal,2005,CO2,0.022413751 +AL,industrial fuel use,coal,coal,2010,CO2,0.023247485 +AL,industrial fuel use,coal,coal,2015,CO2,0.023542577 +AL,industrial fuel use,coal,coal,2020,CO2,0.022100946 +AL,industrial fuel use,coal,coal,2025,CO2,0.022682182 +AL,industrial fuel use,coal,coal,2030,CO2,0.023544891 +AL,industrial fuel use,coal,coal,2035,CO2,0.024022124 +AL,industrial fuel use,coal,coal,2040,CO2,0.024371859 +AL,industrial fuel use,coal,coal,2045,CO2,0.024626877 +AL,industrial fuel use,coal,coal,2050,CO2,0.024861999 +AL,industrial fuel use,coal,coal,2055,CO2,0.025047846 +AL,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +AL,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +AL,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +AL,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +AL,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +AL,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +AL,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +AL,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +AL,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +AL,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +AL,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +AL,industrial fuel use,gas,gas,2005,CO2,0.010100215 +AL,industrial fuel use,gas,gas,2010,CO2,0.008735772 +AL,industrial fuel use,gas,gas,2015,CO2,0.008975567 +AL,industrial fuel use,gas,gas,2020,CO2,0.009141549 +AL,industrial fuel use,gas,gas,2025,CO2,0.009319403 +AL,industrial fuel use,gas,gas,2030,CO2,0.009661635 +AL,industrial fuel use,gas,gas,2035,CO2,0.009858394 +AL,industrial fuel use,gas,gas,2040,CO2,0.010090146 +AL,industrial fuel use,gas,gas,2045,CO2,0.010177486 +AL,industrial fuel use,gas,gas,2050,CO2,0.010210503 +AL,industrial fuel use,gas,gas,2055,CO2,0.010168744 +AL,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +AL,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +AL,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +AL,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +AL,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +AL,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +AL,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +AL,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +AL,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +AL,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +AL,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +AL,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +AL,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +AL,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +AL,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +AL,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +AL,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +AL,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +AL,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +AL,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +AL,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +AL,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +AL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +AL,industrial fuel use,biomass,biomass,2005,CO2,0 +AL,industrial fuel use,biomass,biomass,2010,CO2,0 +AL,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +AL,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +AL,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +AL,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +AL,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +AL,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +AL,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +AL,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +AL,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +AL,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +AL,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +AL,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +AL,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +AL,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +AL,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +AL,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +AL,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +AL,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +AL,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +AL,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +AR,industrial fuel use,coal,coal,2005,NOx,0.261565752 +AR,industrial fuel use,coal,coal,2010,NOx,0.24128762 +AR,industrial fuel use,coal,coal,2015,NOx,0.247879608 +AR,industrial fuel use,coal,coal,2020,NOx,0.234312556 +AR,industrial fuel use,coal,coal,2025,NOx,0.240398293 +AR,industrial fuel use,coal,coal,2030,NOx,0.246677964 +AR,industrial fuel use,coal,coal,2035,NOx,0.250299201 +AR,industrial fuel use,coal,coal,2040,NOx,0.253554811 +AR,industrial fuel use,coal,coal,2045,NOx,0.255578056 +AR,industrial fuel use,coal,coal,2050,NOx,0.258549854 +AR,industrial fuel use,coal,coal,2055,NOx,0.26014596 +AR,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +AR,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +AR,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +AR,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +AR,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +AR,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +AR,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +AR,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +AR,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +AR,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +AR,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +AR,industrial fuel use,gas,gas,2005,NOx,0.080919016 +AR,industrial fuel use,gas,gas,2010,NOx,0.044952568 +AR,industrial fuel use,gas,gas,2015,NOx,0.037239142 +AR,industrial fuel use,gas,gas,2020,NOx,0.040745965 +AR,industrial fuel use,gas,gas,2025,NOx,0.042574105 +AR,industrial fuel use,gas,gas,2030,NOx,0.045347383 +AR,industrial fuel use,gas,gas,2035,NOx,0.048574619 +AR,industrial fuel use,gas,gas,2040,NOx,0.050422899 +AR,industrial fuel use,gas,gas,2045,NOx,0.050680722 +AR,industrial fuel use,gas,gas,2050,NOx,0.0517343 +AR,industrial fuel use,gas,gas,2055,NOx,0.052443137 +AR,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +AR,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +AR,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +AR,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +AR,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +AR,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +AR,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +AR,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +AR,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +AR,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +AR,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +AR,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +AR,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +AR,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +AR,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +AR,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +AR,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +AR,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +AR,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +AR,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +AR,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +AR,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +AR,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +AR,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +AR,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +AR,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +AR,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +AR,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +AR,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +AR,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +AR,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +AR,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +AR,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +AR,industrial fuel use,coal,coal,2005,SO2,0.709862367 +AR,industrial fuel use,coal,coal,2010,SO2,0.679592789 +AR,industrial fuel use,coal,coal,2015,SO2,0.590904591 +AR,industrial fuel use,coal,coal,2020,SO2,0.549595621 +AR,industrial fuel use,coal,coal,2025,SO2,0.56430149 +AR,industrial fuel use,coal,coal,2030,SO2,0.576548046 +AR,industrial fuel use,coal,coal,2035,SO2,0.583595424 +AR,industrial fuel use,coal,coal,2040,SO2,0.590805881 +AR,industrial fuel use,coal,coal,2045,SO2,0.596410723 +AR,industrial fuel use,coal,coal,2050,SO2,0.606154195 +AR,industrial fuel use,coal,coal,2055,SO2,0.611234923 +AR,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +AR,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +AR,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +AR,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +AR,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +AR,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +AR,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +AR,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +AR,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +AR,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +AR,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +AR,industrial fuel use,gas,gas,2005,SO2,0.000213988 +AR,industrial fuel use,gas,gas,2010,SO2,0.002761946 +AR,industrial fuel use,gas,gas,2015,SO2,0.002854723 +AR,industrial fuel use,gas,gas,2020,SO2,0.002771127 +AR,industrial fuel use,gas,gas,2025,SO2,0.002798763 +AR,industrial fuel use,gas,gas,2030,SO2,0.002938075 +AR,industrial fuel use,gas,gas,2035,SO2,0.003016098 +AR,industrial fuel use,gas,gas,2040,SO2,0.003118901 +AR,industrial fuel use,gas,gas,2045,SO2,0.00311325 +AR,industrial fuel use,gas,gas,2050,SO2,0.003090451 +AR,industrial fuel use,gas,gas,2055,SO2,0.003025213 +AR,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +AR,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +AR,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +AR,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +AR,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +AR,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +AR,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +AR,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +AR,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +AR,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +AR,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +AR,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +AR,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +AR,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +AR,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +AR,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +AR,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +AR,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +AR,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +AR,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +AR,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +AR,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +AR,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +AR,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +AR,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +AR,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +AR,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +AR,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +AR,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +AR,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +AR,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +AR,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +AR,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +AR,industrial fuel use,coal,coal,2005,PM10,0.136452905 +AR,industrial fuel use,coal,coal,2010,PM10,0.093662835 +AR,industrial fuel use,coal,coal,2015,PM10,0.100887759 +AR,industrial fuel use,coal,coal,2020,PM10,0.094503476 +AR,industrial fuel use,coal,coal,2025,PM10,0.09752377 +AR,industrial fuel use,coal,coal,2030,PM10,0.099823133 +AR,industrial fuel use,coal,coal,2035,PM10,0.101097535 +AR,industrial fuel use,coal,coal,2040,PM10,0.102438117 +AR,industrial fuel use,coal,coal,2045,PM10,0.103553978 +AR,industrial fuel use,coal,coal,2050,PM10,0.105393893 +AR,industrial fuel use,coal,coal,2055,PM10,0.106304221 +AR,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +AR,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +AR,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +AR,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +AR,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +AR,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +AR,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +AR,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +AR,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +AR,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +AR,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +AR,industrial fuel use,gas,gas,2005,PM10,0.002144603 +AR,industrial fuel use,gas,gas,2010,PM10,0.004157892 +AR,industrial fuel use,gas,gas,2015,PM10,0.004308637 +AR,industrial fuel use,gas,gas,2020,PM10,0.004261296 +AR,industrial fuel use,gas,gas,2025,PM10,0.004334357 +AR,industrial fuel use,gas,gas,2030,PM10,0.00454497 +AR,industrial fuel use,gas,gas,2035,PM10,0.004581054 +AR,industrial fuel use,gas,gas,2040,PM10,0.004690204 +AR,industrial fuel use,gas,gas,2045,PM10,0.004695842 +AR,industrial fuel use,gas,gas,2050,PM10,0.004649052 +AR,industrial fuel use,gas,gas,2055,PM10,0.00454824 +AR,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +AR,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +AR,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +AR,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +AR,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +AR,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +AR,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +AR,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +AR,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +AR,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +AR,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +AR,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +AR,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +AR,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +AR,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +AR,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +AR,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +AR,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +AR,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +AR,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +AR,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +AR,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +AR,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +AR,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +AR,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +AR,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +AR,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +AR,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +AR,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +AR,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +AR,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +AR,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +AR,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +AR,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +AR,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +AR,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +AR,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +AR,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +AR,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +AR,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +AR,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +AR,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +AR,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +AR,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +AR,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +AR,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +AR,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +AR,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +AR,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +AR,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +AR,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +AR,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +AR,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +AR,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +AR,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +AR,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +AR,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +AR,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +AR,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +AR,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +AR,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +AR,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +AR,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +AR,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +AR,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +AR,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +AR,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +AR,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +AR,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +AR,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +AR,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +AR,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +AR,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +AR,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +AR,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +AR,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +AR,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +AR,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +AR,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +AR,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +AR,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +AR,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +AR,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +AR,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +AR,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +AR,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +AR,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +AR,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +AR,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +AR,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +AR,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +AR,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +AR,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +AR,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +AR,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +AR,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +AR,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +AR,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +AR,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +AR,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +AR,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +AR,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +AR,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +AR,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +AR,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +AR,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +AR,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +AR,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +AR,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +AR,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +AR,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +AR,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +AR,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +AR,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +AR,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +AR,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +AR,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +AR,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +AR,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +AR,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +AR,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +AR,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +AR,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +AR,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +AR,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +AR,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +AR,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +AR,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +AR,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +AR,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +AR,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +AR,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +AR,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +AR,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +AR,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +AR,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +AR,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +AR,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +AR,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +AR,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +AR,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +AR,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +AR,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +AR,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +AR,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +AR,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +AR,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +AR,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +AR,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +AR,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +AR,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +AR,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +AR,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +AR,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +AR,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +AR,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +AR,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +AR,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +AR,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +AR,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +AR,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +AR,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +AR,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +AR,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +AR,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +AR,industrial fuel use,coal,coal,2005,CO,0.069434106 +AR,industrial fuel use,coal,coal,2010,CO,0.07723114 +AR,industrial fuel use,coal,coal,2015,CO,0.068281575 +AR,industrial fuel use,coal,coal,2020,CO,0.063753622 +AR,industrial fuel use,coal,coal,2025,CO,0.065761399 +AR,industrial fuel use,coal,coal,2030,CO,0.067959367 +AR,industrial fuel use,coal,coal,2035,CO,0.069173462 +AR,industrial fuel use,coal,coal,2040,CO,0.070202866 +AR,industrial fuel use,coal,coal,2045,CO,0.071098148 +AR,industrial fuel use,coal,coal,2050,CO,0.072063393 +AR,industrial fuel use,coal,coal,2055,CO,0.072511454 +AR,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +AR,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +AR,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +AR,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +AR,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +AR,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +AR,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +AR,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +AR,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +AR,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +AR,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +AR,industrial fuel use,gas,gas,2005,CO,0.054958784 +AR,industrial fuel use,gas,gas,2010,CO,0.041119779 +AR,industrial fuel use,gas,gas,2015,CO,0.037376927 +AR,industrial fuel use,gas,gas,2020,CO,0.042196984 +AR,industrial fuel use,gas,gas,2025,CO,0.046340259 +AR,industrial fuel use,gas,gas,2030,CO,0.051044751 +AR,industrial fuel use,gas,gas,2035,CO,0.048377476 +AR,industrial fuel use,gas,gas,2040,CO,0.04844371 +AR,industrial fuel use,gas,gas,2045,CO,0.049325699 +AR,industrial fuel use,gas,gas,2050,CO,0.048085677 +AR,industrial fuel use,gas,gas,2055,CO,0.046506083 +AR,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +AR,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +AR,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +AR,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +AR,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +AR,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +AR,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +AR,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +AR,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +AR,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +AR,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +AR,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +AR,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +AR,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +AR,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +AR,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +AR,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +AR,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +AR,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +AR,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +AR,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +AR,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +AR,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +AR,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +AR,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +AR,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +AR,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +AR,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +AR,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +AR,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +AR,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +AR,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +AR,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +AR,industrial fuel use,coal,coal,2005,CH4,0.008615911 +AR,industrial fuel use,coal,coal,2010,CH4,0.007087118 +AR,industrial fuel use,coal,coal,2015,CH4,0.007645512 +AR,industrial fuel use,coal,coal,2020,CH4,0.007093206 +AR,industrial fuel use,coal,coal,2025,CH4,0.007280827 +AR,industrial fuel use,coal,coal,2030,CH4,0.007426545 +AR,industrial fuel use,coal,coal,2035,CH4,0.007524098 +AR,industrial fuel use,coal,coal,2040,CH4,0.007621441 +AR,industrial fuel use,coal,coal,2045,CH4,0.007691307 +AR,industrial fuel use,coal,coal,2050,CH4,0.007801358 +AR,industrial fuel use,coal,coal,2055,CH4,0.007871907 +AR,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +AR,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +AR,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +AR,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +AR,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +AR,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +AR,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +AR,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +AR,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +AR,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +AR,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +AR,industrial fuel use,gas,gas,2005,CH4,0.002575726 +AR,industrial fuel use,gas,gas,2010,CH4,0.0036902 +AR,industrial fuel use,gas,gas,2015,CH4,0.001847174 +AR,industrial fuel use,gas,gas,2020,CH4,0.002575374 +AR,industrial fuel use,gas,gas,2025,CH4,0.002470739 +AR,industrial fuel use,gas,gas,2030,CH4,0.002514812 +AR,industrial fuel use,gas,gas,2035,CH4,0.004402202 +AR,industrial fuel use,gas,gas,2040,CH4,0.005194877 +AR,industrial fuel use,gas,gas,2045,CH4,0.005264291 +AR,industrial fuel use,gas,gas,2050,CH4,0.006086388 +AR,industrial fuel use,gas,gas,2055,CH4,0.006850703 +AR,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +AR,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +AR,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +AR,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +AR,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +AR,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +AR,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +AR,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +AR,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +AR,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +AR,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +AR,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +AR,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +AR,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +AR,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +AR,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +AR,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +AR,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +AR,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +AR,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +AR,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +AR,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +AR,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +AR,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +AR,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +AR,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +AR,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +AR,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +AR,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +AR,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +AR,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +AR,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +AR,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +AR,industrial fuel use,coal,coal,2005,N2O,0.002945881 +AR,industrial fuel use,coal,coal,2010,N2O,0.004699422 +AR,industrial fuel use,coal,coal,2015,N2O,0.003718249 +AR,industrial fuel use,coal,coal,2020,N2O,0.003503987 +AR,industrial fuel use,coal,coal,2025,N2O,0.003902448 +AR,industrial fuel use,coal,coal,2030,N2O,0.005231917 +AR,industrial fuel use,coal,coal,2035,N2O,0.005844861 +AR,industrial fuel use,coal,coal,2040,N2O,0.006123209 +AR,industrial fuel use,coal,coal,2045,N2O,0.006493024 +AR,industrial fuel use,coal,coal,2050,N2O,0.00643187 +AR,industrial fuel use,coal,coal,2055,N2O,0.006580646 +AR,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +AR,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +AR,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +AR,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +AR,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +AR,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +AR,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +AR,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +AR,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +AR,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +AR,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +AR,industrial fuel use,gas,gas,2005,N2O,0.000509795 +AR,industrial fuel use,gas,gas,2010,N2O,0.000459136 +AR,industrial fuel use,gas,gas,2015,N2O,0.000457847 +AR,industrial fuel use,gas,gas,2020,N2O,0.000469807 +AR,industrial fuel use,gas,gas,2025,N2O,0.0004748 +AR,industrial fuel use,gas,gas,2030,N2O,0.000493269 +AR,industrial fuel use,gas,gas,2035,N2O,0.0005142 +AR,industrial fuel use,gas,gas,2040,N2O,0.000525413 +AR,industrial fuel use,gas,gas,2045,N2O,0.000530678 +AR,industrial fuel use,gas,gas,2050,N2O,0.000534097 +AR,industrial fuel use,gas,gas,2055,N2O,0.000535185 +AR,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +AR,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +AR,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +AR,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +AR,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +AR,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +AR,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +AR,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +AR,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +AR,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +AR,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +AR,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +AR,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +AR,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +AR,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +AR,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +AR,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +AR,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +AR,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +AR,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +AR,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +AR,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +AR,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +AR,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +AR,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +AR,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +AR,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +AR,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +AR,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +AR,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +AR,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +AR,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +AR,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +AR,industrial fuel use,coal,coal,2005,BC,0.052178527 +AR,industrial fuel use,coal,coal,2010,BC,0.054113893 +AR,industrial fuel use,coal,coal,2015,BC,0.054816673 +AR,industrial fuel use,coal,coal,2020,BC,0.051442317 +AR,industrial fuel use,coal,coal,2025,BC,0.05280003 +AR,industrial fuel use,coal,coal,2030,BC,0.054819383 +AR,industrial fuel use,coal,coal,2035,BC,0.055934389 +AR,industrial fuel use,coal,coal,2040,BC,0.056737391 +AR,industrial fuel use,coal,coal,2045,BC,0.057341111 +AR,industrial fuel use,coal,coal,2050,BC,0.057867944 +AR,industrial fuel use,coal,coal,2055,BC,0.058307588 +AR,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +AR,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +AR,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +AR,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +AR,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +AR,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +AR,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +AR,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +AR,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +AR,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +AR,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +AR,industrial fuel use,gas,gas,2005,BC,0.000879555 +AR,industrial fuel use,gas,gas,2010,BC,0.000594596 +AR,industrial fuel use,gas,gas,2015,BC,0.000780779 +AR,industrial fuel use,gas,gas,2020,BC,0.000758542 +AR,industrial fuel use,gas,gas,2025,BC,0.000791704 +AR,industrial fuel use,gas,gas,2030,BC,0.000829295 +AR,industrial fuel use,gas,gas,2035,BC,0.000745895 +AR,industrial fuel use,gas,gas,2040,BC,0.000739727 +AR,industrial fuel use,gas,gas,2045,BC,0.000759191 +AR,industrial fuel use,gas,gas,2050,BC,0.000728476 +AR,industrial fuel use,gas,gas,2055,BC,0.000688571 +AR,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +AR,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +AR,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +AR,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +AR,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +AR,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +AR,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +AR,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +AR,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +AR,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +AR,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +AR,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +AR,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +AR,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +AR,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +AR,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +AR,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +AR,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +AR,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +AR,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +AR,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +AR,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +AR,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +AR,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +AR,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +AR,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +AR,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +AR,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +AR,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +AR,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +AR,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +AR,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +AR,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +AR,industrial fuel use,coal,coal,2005,OC,0.004608879 +AR,industrial fuel use,coal,coal,2010,OC,0.004949044 +AR,industrial fuel use,coal,coal,2015,OC,0.005291355 +AR,industrial fuel use,coal,coal,2020,OC,0.005047635 +AR,industrial fuel use,coal,coal,2025,OC,0.005240698 +AR,industrial fuel use,coal,coal,2030,OC,0.005398598 +AR,industrial fuel use,coal,coal,2035,OC,0.005483036 +AR,industrial fuel use,coal,coal,2040,OC,0.005583473 +AR,industrial fuel use,coal,coal,2045,OC,0.005638434 +AR,industrial fuel use,coal,coal,2050,OC,0.005723515 +AR,industrial fuel use,coal,coal,2055,OC,0.005777195 +AR,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +AR,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +AR,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +AR,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +AR,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +AR,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +AR,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +AR,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +AR,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +AR,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +AR,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +AR,industrial fuel use,gas,gas,2005,OC,0.000586894 +AR,industrial fuel use,gas,gas,2010,OC,0.000538986 +AR,industrial fuel use,gas,gas,2015,OC,0.000406177 +AR,industrial fuel use,gas,gas,2020,OC,0.000436774 +AR,industrial fuel use,gas,gas,2025,OC,0.000431434 +AR,industrial fuel use,gas,gas,2030,OC,0.000454497 +AR,industrial fuel use,gas,gas,2035,OC,0.0005142 +AR,industrial fuel use,gas,gas,2040,OC,0.000542203 +AR,industrial fuel use,gas,gas,2045,OC,0.0005354 +AR,industrial fuel use,gas,gas,2050,OC,0.000552822 +AR,industrial fuel use,gas,gas,2055,OC,0.000563528 +AR,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +AR,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +AR,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +AR,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +AR,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +AR,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +AR,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +AR,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +AR,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +AR,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +AR,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +AR,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +AR,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +AR,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +AR,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +AR,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +AR,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +AR,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +AR,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +AR,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +AR,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +AR,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +AR,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +AR,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +AR,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +AR,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +AR,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +AR,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +AR,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +AR,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +AR,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +AR,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +AR,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +AR,industrial fuel use,coal,coal,2005,CO2,0.022413751 +AR,industrial fuel use,coal,coal,2010,CO2,0.023247485 +AR,industrial fuel use,coal,coal,2015,CO2,0.023542577 +AR,industrial fuel use,coal,coal,2020,CO2,0.022100946 +AR,industrial fuel use,coal,coal,2025,CO2,0.022682182 +AR,industrial fuel use,coal,coal,2030,CO2,0.023544891 +AR,industrial fuel use,coal,coal,2035,CO2,0.024022124 +AR,industrial fuel use,coal,coal,2040,CO2,0.024371859 +AR,industrial fuel use,coal,coal,2045,CO2,0.024626877 +AR,industrial fuel use,coal,coal,2050,CO2,0.024861999 +AR,industrial fuel use,coal,coal,2055,CO2,0.025047846 +AR,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +AR,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +AR,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +AR,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +AR,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +AR,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +AR,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +AR,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +AR,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +AR,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +AR,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +AR,industrial fuel use,gas,gas,2005,CO2,0.010100215 +AR,industrial fuel use,gas,gas,2010,CO2,0.008735772 +AR,industrial fuel use,gas,gas,2015,CO2,0.008975567 +AR,industrial fuel use,gas,gas,2020,CO2,0.009141549 +AR,industrial fuel use,gas,gas,2025,CO2,0.009319403 +AR,industrial fuel use,gas,gas,2030,CO2,0.009661635 +AR,industrial fuel use,gas,gas,2035,CO2,0.009858394 +AR,industrial fuel use,gas,gas,2040,CO2,0.010090146 +AR,industrial fuel use,gas,gas,2045,CO2,0.010177486 +AR,industrial fuel use,gas,gas,2050,CO2,0.010210503 +AR,industrial fuel use,gas,gas,2055,CO2,0.010168744 +AR,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +AR,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +AR,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +AR,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +AR,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +AR,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +AR,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +AR,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +AR,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +AR,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +AR,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +AR,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +AR,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +AR,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +AR,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +AR,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +AR,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +AR,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +AR,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +AR,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +AR,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +AR,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +AR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +AR,industrial fuel use,biomass,biomass,2005,CO2,0 +AR,industrial fuel use,biomass,biomass,2010,CO2,0 +AR,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +AR,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +AR,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +AR,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +AR,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +AR,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +AR,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +AR,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +AR,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +AR,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +AR,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +AR,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +AR,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +AR,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +AR,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +AR,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +AR,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +AR,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +AR,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +AR,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +AZ,industrial fuel use,coal,coal,2005,NOx,0.261565752 +AZ,industrial fuel use,coal,coal,2010,NOx,0.24128762 +AZ,industrial fuel use,coal,coal,2015,NOx,0.247879608 +AZ,industrial fuel use,coal,coal,2020,NOx,0.234312556 +AZ,industrial fuel use,coal,coal,2025,NOx,0.240398293 +AZ,industrial fuel use,coal,coal,2030,NOx,0.246677964 +AZ,industrial fuel use,coal,coal,2035,NOx,0.250299201 +AZ,industrial fuel use,coal,coal,2040,NOx,0.253554811 +AZ,industrial fuel use,coal,coal,2045,NOx,0.255578056 +AZ,industrial fuel use,coal,coal,2050,NOx,0.258549854 +AZ,industrial fuel use,coal,coal,2055,NOx,0.26014596 +AZ,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +AZ,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +AZ,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +AZ,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +AZ,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +AZ,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +AZ,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +AZ,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +AZ,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +AZ,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +AZ,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +AZ,industrial fuel use,gas,gas,2005,NOx,0.080919016 +AZ,industrial fuel use,gas,gas,2010,NOx,0.044952568 +AZ,industrial fuel use,gas,gas,2015,NOx,0.037239142 +AZ,industrial fuel use,gas,gas,2020,NOx,0.040745965 +AZ,industrial fuel use,gas,gas,2025,NOx,0.042574105 +AZ,industrial fuel use,gas,gas,2030,NOx,0.045347383 +AZ,industrial fuel use,gas,gas,2035,NOx,0.048574619 +AZ,industrial fuel use,gas,gas,2040,NOx,0.050422899 +AZ,industrial fuel use,gas,gas,2045,NOx,0.050680722 +AZ,industrial fuel use,gas,gas,2050,NOx,0.0517343 +AZ,industrial fuel use,gas,gas,2055,NOx,0.052443137 +AZ,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +AZ,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +AZ,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +AZ,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +AZ,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +AZ,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +AZ,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +AZ,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +AZ,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +AZ,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +AZ,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +AZ,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +AZ,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +AZ,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +AZ,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +AZ,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +AZ,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +AZ,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +AZ,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +AZ,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +AZ,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +AZ,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +AZ,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +AZ,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +AZ,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +AZ,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +AZ,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +AZ,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +AZ,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +AZ,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +AZ,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +AZ,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +AZ,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +AZ,industrial fuel use,coal,coal,2005,SO2,0.709862367 +AZ,industrial fuel use,coal,coal,2010,SO2,0.679592789 +AZ,industrial fuel use,coal,coal,2015,SO2,0.590904591 +AZ,industrial fuel use,coal,coal,2020,SO2,0.549595621 +AZ,industrial fuel use,coal,coal,2025,SO2,0.56430149 +AZ,industrial fuel use,coal,coal,2030,SO2,0.576548046 +AZ,industrial fuel use,coal,coal,2035,SO2,0.583595424 +AZ,industrial fuel use,coal,coal,2040,SO2,0.590805881 +AZ,industrial fuel use,coal,coal,2045,SO2,0.596410723 +AZ,industrial fuel use,coal,coal,2050,SO2,0.606154195 +AZ,industrial fuel use,coal,coal,2055,SO2,0.611234923 +AZ,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +AZ,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +AZ,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +AZ,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +AZ,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +AZ,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +AZ,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +AZ,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +AZ,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +AZ,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +AZ,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +AZ,industrial fuel use,gas,gas,2005,SO2,0.000213988 +AZ,industrial fuel use,gas,gas,2010,SO2,0.002761946 +AZ,industrial fuel use,gas,gas,2015,SO2,0.002854723 +AZ,industrial fuel use,gas,gas,2020,SO2,0.002771127 +AZ,industrial fuel use,gas,gas,2025,SO2,0.002798763 +AZ,industrial fuel use,gas,gas,2030,SO2,0.002938075 +AZ,industrial fuel use,gas,gas,2035,SO2,0.003016098 +AZ,industrial fuel use,gas,gas,2040,SO2,0.003118901 +AZ,industrial fuel use,gas,gas,2045,SO2,0.00311325 +AZ,industrial fuel use,gas,gas,2050,SO2,0.003090451 +AZ,industrial fuel use,gas,gas,2055,SO2,0.003025213 +AZ,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +AZ,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +AZ,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +AZ,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +AZ,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +AZ,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +AZ,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +AZ,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +AZ,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +AZ,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +AZ,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +AZ,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +AZ,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +AZ,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +AZ,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +AZ,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +AZ,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +AZ,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +AZ,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +AZ,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +AZ,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +AZ,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +AZ,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +AZ,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +AZ,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +AZ,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +AZ,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +AZ,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +AZ,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +AZ,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +AZ,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +AZ,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +AZ,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +AZ,industrial fuel use,coal,coal,2005,PM10,0.136452905 +AZ,industrial fuel use,coal,coal,2010,PM10,0.093662835 +AZ,industrial fuel use,coal,coal,2015,PM10,0.100887759 +AZ,industrial fuel use,coal,coal,2020,PM10,0.094503476 +AZ,industrial fuel use,coal,coal,2025,PM10,0.09752377 +AZ,industrial fuel use,coal,coal,2030,PM10,0.099823133 +AZ,industrial fuel use,coal,coal,2035,PM10,0.101097535 +AZ,industrial fuel use,coal,coal,2040,PM10,0.102438117 +AZ,industrial fuel use,coal,coal,2045,PM10,0.103553978 +AZ,industrial fuel use,coal,coal,2050,PM10,0.105393893 +AZ,industrial fuel use,coal,coal,2055,PM10,0.106304221 +AZ,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +AZ,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +AZ,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +AZ,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +AZ,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +AZ,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +AZ,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +AZ,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +AZ,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +AZ,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +AZ,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +AZ,industrial fuel use,gas,gas,2005,PM10,0.002144603 +AZ,industrial fuel use,gas,gas,2010,PM10,0.004157892 +AZ,industrial fuel use,gas,gas,2015,PM10,0.004308637 +AZ,industrial fuel use,gas,gas,2020,PM10,0.004261296 +AZ,industrial fuel use,gas,gas,2025,PM10,0.004334357 +AZ,industrial fuel use,gas,gas,2030,PM10,0.00454497 +AZ,industrial fuel use,gas,gas,2035,PM10,0.004581054 +AZ,industrial fuel use,gas,gas,2040,PM10,0.004690204 +AZ,industrial fuel use,gas,gas,2045,PM10,0.004695842 +AZ,industrial fuel use,gas,gas,2050,PM10,0.004649052 +AZ,industrial fuel use,gas,gas,2055,PM10,0.00454824 +AZ,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +AZ,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +AZ,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +AZ,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +AZ,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +AZ,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +AZ,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +AZ,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +AZ,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +AZ,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +AZ,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +AZ,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +AZ,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +AZ,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +AZ,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +AZ,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +AZ,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +AZ,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +AZ,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +AZ,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +AZ,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +AZ,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +AZ,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +AZ,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +AZ,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +AZ,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +AZ,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +AZ,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +AZ,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +AZ,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +AZ,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +AZ,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +AZ,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +AZ,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +AZ,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +AZ,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +AZ,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +AZ,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +AZ,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +AZ,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +AZ,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +AZ,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +AZ,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +AZ,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +AZ,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +AZ,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +AZ,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +AZ,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +AZ,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +AZ,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +AZ,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +AZ,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +AZ,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +AZ,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +AZ,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +AZ,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +AZ,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +AZ,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +AZ,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +AZ,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +AZ,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +AZ,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +AZ,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +AZ,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +AZ,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +AZ,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +AZ,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +AZ,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +AZ,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +AZ,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +AZ,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +AZ,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +AZ,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +AZ,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +AZ,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +AZ,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +AZ,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +AZ,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +AZ,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +AZ,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +AZ,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +AZ,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +AZ,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +AZ,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +AZ,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +AZ,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +AZ,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +AZ,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +AZ,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +AZ,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +AZ,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +AZ,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +AZ,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +AZ,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +AZ,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +AZ,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +AZ,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +AZ,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +AZ,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +AZ,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +AZ,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +AZ,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +AZ,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +AZ,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +AZ,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +AZ,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +AZ,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +AZ,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +AZ,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +AZ,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +AZ,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +AZ,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +AZ,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +AZ,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +AZ,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +AZ,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +AZ,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +AZ,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +AZ,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +AZ,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +AZ,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +AZ,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +AZ,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +AZ,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +AZ,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +AZ,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +AZ,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +AZ,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +AZ,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +AZ,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +AZ,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +AZ,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +AZ,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +AZ,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +AZ,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +AZ,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +AZ,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +AZ,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +AZ,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +AZ,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +AZ,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +AZ,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +AZ,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +AZ,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +AZ,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +AZ,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +AZ,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +AZ,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +AZ,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +AZ,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +AZ,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +AZ,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +AZ,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +AZ,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +AZ,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +AZ,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +AZ,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +AZ,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +AZ,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +AZ,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +AZ,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +AZ,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +AZ,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +AZ,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +AZ,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +AZ,industrial fuel use,coal,coal,2005,CO,0.069434106 +AZ,industrial fuel use,coal,coal,2010,CO,0.07723114 +AZ,industrial fuel use,coal,coal,2015,CO,0.068281575 +AZ,industrial fuel use,coal,coal,2020,CO,0.063753622 +AZ,industrial fuel use,coal,coal,2025,CO,0.065761399 +AZ,industrial fuel use,coal,coal,2030,CO,0.067959367 +AZ,industrial fuel use,coal,coal,2035,CO,0.069173462 +AZ,industrial fuel use,coal,coal,2040,CO,0.070202866 +AZ,industrial fuel use,coal,coal,2045,CO,0.071098148 +AZ,industrial fuel use,coal,coal,2050,CO,0.072063393 +AZ,industrial fuel use,coal,coal,2055,CO,0.072511454 +AZ,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +AZ,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +AZ,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +AZ,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +AZ,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +AZ,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +AZ,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +AZ,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +AZ,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +AZ,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +AZ,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +AZ,industrial fuel use,gas,gas,2005,CO,0.054958784 +AZ,industrial fuel use,gas,gas,2010,CO,0.041119779 +AZ,industrial fuel use,gas,gas,2015,CO,0.037376927 +AZ,industrial fuel use,gas,gas,2020,CO,0.042196984 +AZ,industrial fuel use,gas,gas,2025,CO,0.046340259 +AZ,industrial fuel use,gas,gas,2030,CO,0.051044751 +AZ,industrial fuel use,gas,gas,2035,CO,0.048377476 +AZ,industrial fuel use,gas,gas,2040,CO,0.04844371 +AZ,industrial fuel use,gas,gas,2045,CO,0.049325699 +AZ,industrial fuel use,gas,gas,2050,CO,0.048085677 +AZ,industrial fuel use,gas,gas,2055,CO,0.046506083 +AZ,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +AZ,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +AZ,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +AZ,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +AZ,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +AZ,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +AZ,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +AZ,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +AZ,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +AZ,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +AZ,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +AZ,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +AZ,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +AZ,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +AZ,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +AZ,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +AZ,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +AZ,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +AZ,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +AZ,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +AZ,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +AZ,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +AZ,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +AZ,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +AZ,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +AZ,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +AZ,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +AZ,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +AZ,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +AZ,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +AZ,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +AZ,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +AZ,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +AZ,industrial fuel use,coal,coal,2005,CH4,0.008615911 +AZ,industrial fuel use,coal,coal,2010,CH4,0.007087118 +AZ,industrial fuel use,coal,coal,2015,CH4,0.007645512 +AZ,industrial fuel use,coal,coal,2020,CH4,0.007093206 +AZ,industrial fuel use,coal,coal,2025,CH4,0.007280827 +AZ,industrial fuel use,coal,coal,2030,CH4,0.007426545 +AZ,industrial fuel use,coal,coal,2035,CH4,0.007524098 +AZ,industrial fuel use,coal,coal,2040,CH4,0.007621441 +AZ,industrial fuel use,coal,coal,2045,CH4,0.007691307 +AZ,industrial fuel use,coal,coal,2050,CH4,0.007801358 +AZ,industrial fuel use,coal,coal,2055,CH4,0.007871907 +AZ,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +AZ,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +AZ,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +AZ,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +AZ,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +AZ,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +AZ,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +AZ,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +AZ,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +AZ,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +AZ,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +AZ,industrial fuel use,gas,gas,2005,CH4,0.002575726 +AZ,industrial fuel use,gas,gas,2010,CH4,0.0036902 +AZ,industrial fuel use,gas,gas,2015,CH4,0.001847174 +AZ,industrial fuel use,gas,gas,2020,CH4,0.002575374 +AZ,industrial fuel use,gas,gas,2025,CH4,0.002470739 +AZ,industrial fuel use,gas,gas,2030,CH4,0.002514812 +AZ,industrial fuel use,gas,gas,2035,CH4,0.004402202 +AZ,industrial fuel use,gas,gas,2040,CH4,0.005194877 +AZ,industrial fuel use,gas,gas,2045,CH4,0.005264291 +AZ,industrial fuel use,gas,gas,2050,CH4,0.006086388 +AZ,industrial fuel use,gas,gas,2055,CH4,0.006850703 +AZ,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +AZ,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +AZ,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +AZ,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +AZ,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +AZ,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +AZ,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +AZ,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +AZ,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +AZ,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +AZ,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +AZ,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +AZ,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +AZ,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +AZ,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +AZ,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +AZ,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +AZ,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +AZ,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +AZ,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +AZ,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +AZ,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +AZ,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +AZ,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +AZ,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +AZ,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +AZ,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +AZ,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +AZ,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +AZ,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +AZ,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +AZ,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +AZ,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +AZ,industrial fuel use,coal,coal,2005,N2O,0.002945881 +AZ,industrial fuel use,coal,coal,2010,N2O,0.004699422 +AZ,industrial fuel use,coal,coal,2015,N2O,0.003718249 +AZ,industrial fuel use,coal,coal,2020,N2O,0.003503987 +AZ,industrial fuel use,coal,coal,2025,N2O,0.003902448 +AZ,industrial fuel use,coal,coal,2030,N2O,0.005231917 +AZ,industrial fuel use,coal,coal,2035,N2O,0.005844861 +AZ,industrial fuel use,coal,coal,2040,N2O,0.006123209 +AZ,industrial fuel use,coal,coal,2045,N2O,0.006493024 +AZ,industrial fuel use,coal,coal,2050,N2O,0.00643187 +AZ,industrial fuel use,coal,coal,2055,N2O,0.006580646 +AZ,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +AZ,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +AZ,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +AZ,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +AZ,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +AZ,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +AZ,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +AZ,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +AZ,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +AZ,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +AZ,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +AZ,industrial fuel use,gas,gas,2005,N2O,0.000509795 +AZ,industrial fuel use,gas,gas,2010,N2O,0.000459136 +AZ,industrial fuel use,gas,gas,2015,N2O,0.000457847 +AZ,industrial fuel use,gas,gas,2020,N2O,0.000469807 +AZ,industrial fuel use,gas,gas,2025,N2O,0.0004748 +AZ,industrial fuel use,gas,gas,2030,N2O,0.000493269 +AZ,industrial fuel use,gas,gas,2035,N2O,0.0005142 +AZ,industrial fuel use,gas,gas,2040,N2O,0.000525413 +AZ,industrial fuel use,gas,gas,2045,N2O,0.000530678 +AZ,industrial fuel use,gas,gas,2050,N2O,0.000534097 +AZ,industrial fuel use,gas,gas,2055,N2O,0.000535185 +AZ,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +AZ,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +AZ,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +AZ,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +AZ,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +AZ,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +AZ,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +AZ,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +AZ,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +AZ,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +AZ,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +AZ,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +AZ,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +AZ,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +AZ,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +AZ,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +AZ,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +AZ,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +AZ,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +AZ,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +AZ,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +AZ,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +AZ,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +AZ,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +AZ,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +AZ,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +AZ,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +AZ,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +AZ,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +AZ,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +AZ,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +AZ,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +AZ,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +AZ,industrial fuel use,coal,coal,2005,BC,0.052178527 +AZ,industrial fuel use,coal,coal,2010,BC,0.054113893 +AZ,industrial fuel use,coal,coal,2015,BC,0.054816673 +AZ,industrial fuel use,coal,coal,2020,BC,0.051442317 +AZ,industrial fuel use,coal,coal,2025,BC,0.05280003 +AZ,industrial fuel use,coal,coal,2030,BC,0.054819383 +AZ,industrial fuel use,coal,coal,2035,BC,0.055934389 +AZ,industrial fuel use,coal,coal,2040,BC,0.056737391 +AZ,industrial fuel use,coal,coal,2045,BC,0.057341111 +AZ,industrial fuel use,coal,coal,2050,BC,0.057867944 +AZ,industrial fuel use,coal,coal,2055,BC,0.058307588 +AZ,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +AZ,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +AZ,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +AZ,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +AZ,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +AZ,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +AZ,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +AZ,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +AZ,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +AZ,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +AZ,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +AZ,industrial fuel use,gas,gas,2005,BC,0.000879555 +AZ,industrial fuel use,gas,gas,2010,BC,0.000594596 +AZ,industrial fuel use,gas,gas,2015,BC,0.000780779 +AZ,industrial fuel use,gas,gas,2020,BC,0.000758542 +AZ,industrial fuel use,gas,gas,2025,BC,0.000791704 +AZ,industrial fuel use,gas,gas,2030,BC,0.000829295 +AZ,industrial fuel use,gas,gas,2035,BC,0.000745895 +AZ,industrial fuel use,gas,gas,2040,BC,0.000739727 +AZ,industrial fuel use,gas,gas,2045,BC,0.000759191 +AZ,industrial fuel use,gas,gas,2050,BC,0.000728476 +AZ,industrial fuel use,gas,gas,2055,BC,0.000688571 +AZ,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +AZ,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +AZ,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +AZ,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +AZ,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +AZ,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +AZ,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +AZ,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +AZ,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +AZ,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +AZ,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +AZ,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +AZ,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +AZ,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +AZ,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +AZ,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +AZ,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +AZ,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +AZ,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +AZ,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +AZ,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +AZ,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +AZ,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +AZ,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +AZ,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +AZ,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +AZ,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +AZ,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +AZ,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +AZ,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +AZ,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +AZ,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +AZ,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +AZ,industrial fuel use,coal,coal,2005,OC,0.004608879 +AZ,industrial fuel use,coal,coal,2010,OC,0.004949044 +AZ,industrial fuel use,coal,coal,2015,OC,0.005291355 +AZ,industrial fuel use,coal,coal,2020,OC,0.005047635 +AZ,industrial fuel use,coal,coal,2025,OC,0.005240698 +AZ,industrial fuel use,coal,coal,2030,OC,0.005398598 +AZ,industrial fuel use,coal,coal,2035,OC,0.005483036 +AZ,industrial fuel use,coal,coal,2040,OC,0.005583473 +AZ,industrial fuel use,coal,coal,2045,OC,0.005638434 +AZ,industrial fuel use,coal,coal,2050,OC,0.005723515 +AZ,industrial fuel use,coal,coal,2055,OC,0.005777195 +AZ,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +AZ,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +AZ,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +AZ,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +AZ,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +AZ,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +AZ,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +AZ,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +AZ,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +AZ,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +AZ,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +AZ,industrial fuel use,gas,gas,2005,OC,0.000586894 +AZ,industrial fuel use,gas,gas,2010,OC,0.000538986 +AZ,industrial fuel use,gas,gas,2015,OC,0.000406177 +AZ,industrial fuel use,gas,gas,2020,OC,0.000436774 +AZ,industrial fuel use,gas,gas,2025,OC,0.000431434 +AZ,industrial fuel use,gas,gas,2030,OC,0.000454497 +AZ,industrial fuel use,gas,gas,2035,OC,0.0005142 +AZ,industrial fuel use,gas,gas,2040,OC,0.000542203 +AZ,industrial fuel use,gas,gas,2045,OC,0.0005354 +AZ,industrial fuel use,gas,gas,2050,OC,0.000552822 +AZ,industrial fuel use,gas,gas,2055,OC,0.000563528 +AZ,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +AZ,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +AZ,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +AZ,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +AZ,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +AZ,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +AZ,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +AZ,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +AZ,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +AZ,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +AZ,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +AZ,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +AZ,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +AZ,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +AZ,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +AZ,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +AZ,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +AZ,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +AZ,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +AZ,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +AZ,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +AZ,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +AZ,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +AZ,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +AZ,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +AZ,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +AZ,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +AZ,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +AZ,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +AZ,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +AZ,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +AZ,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +AZ,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +AZ,industrial fuel use,coal,coal,2005,CO2,0.022413751 +AZ,industrial fuel use,coal,coal,2010,CO2,0.023247485 +AZ,industrial fuel use,coal,coal,2015,CO2,0.023542577 +AZ,industrial fuel use,coal,coal,2020,CO2,0.022100946 +AZ,industrial fuel use,coal,coal,2025,CO2,0.022682182 +AZ,industrial fuel use,coal,coal,2030,CO2,0.023544891 +AZ,industrial fuel use,coal,coal,2035,CO2,0.024022124 +AZ,industrial fuel use,coal,coal,2040,CO2,0.024371859 +AZ,industrial fuel use,coal,coal,2045,CO2,0.024626877 +AZ,industrial fuel use,coal,coal,2050,CO2,0.024861999 +AZ,industrial fuel use,coal,coal,2055,CO2,0.025047846 +AZ,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +AZ,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +AZ,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +AZ,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +AZ,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +AZ,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +AZ,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +AZ,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +AZ,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +AZ,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +AZ,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +AZ,industrial fuel use,gas,gas,2005,CO2,0.010100215 +AZ,industrial fuel use,gas,gas,2010,CO2,0.008735772 +AZ,industrial fuel use,gas,gas,2015,CO2,0.008975567 +AZ,industrial fuel use,gas,gas,2020,CO2,0.009141549 +AZ,industrial fuel use,gas,gas,2025,CO2,0.009319403 +AZ,industrial fuel use,gas,gas,2030,CO2,0.009661635 +AZ,industrial fuel use,gas,gas,2035,CO2,0.009858394 +AZ,industrial fuel use,gas,gas,2040,CO2,0.010090146 +AZ,industrial fuel use,gas,gas,2045,CO2,0.010177486 +AZ,industrial fuel use,gas,gas,2050,CO2,0.010210503 +AZ,industrial fuel use,gas,gas,2055,CO2,0.010168744 +AZ,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +AZ,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +AZ,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +AZ,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +AZ,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +AZ,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +AZ,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +AZ,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +AZ,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +AZ,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +AZ,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +AZ,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +AZ,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +AZ,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +AZ,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +AZ,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +AZ,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +AZ,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +AZ,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +AZ,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +AZ,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +AZ,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +AZ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +AZ,industrial fuel use,biomass,biomass,2005,CO2,0 +AZ,industrial fuel use,biomass,biomass,2010,CO2,0 +AZ,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +AZ,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +AZ,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +AZ,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +AZ,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +AZ,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +AZ,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +AZ,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +AZ,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +AZ,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +AZ,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +AZ,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +AZ,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +AZ,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +AZ,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +AZ,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +AZ,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +AZ,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +AZ,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +AZ,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +CA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +CA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +CA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +CA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +CA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +CA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +CA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +CA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +CA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +CA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +CA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +CA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +CA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +CA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +CA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +CA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +CA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +CA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +CA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +CA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +CA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +CA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +CA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +CA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +CA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +CA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +CA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +CA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +CA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +CA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +CA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +CA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +CA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +CA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +CA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +CA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +CA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +CA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +CA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +CA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +CA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +CA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +CA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +CA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +CA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +CA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +CA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +CA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +CA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +CA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +CA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +CA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +CA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +CA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +CA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +CA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +CA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +CA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +CA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +CA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +CA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +CA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +CA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +CA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +CA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +CA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +CA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +CA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +CA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +CA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +CA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +CA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +CA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +CA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +CA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +CA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +CA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +CA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +CA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +CA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +CA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +CA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +CA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +CA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +CA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +CA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +CA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +CA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +CA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +CA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +CA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +CA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +CA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +CA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +CA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +CA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +CA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +CA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +CA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +CA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +CA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +CA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +CA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +CA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +CA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +CA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +CA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +CA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +CA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +CA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +CA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +CA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +CA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +CA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +CA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +CA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +CA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +CA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +CA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +CA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +CA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +CA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +CA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +CA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +CA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +CA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +CA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +CA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +CA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +CA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +CA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +CA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +CA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +CA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +CA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +CA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +CA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +CA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +CA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +CA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +CA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +CA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +CA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +CA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +CA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +CA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +CA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +CA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +CA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +CA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +CA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +CA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +CA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +CA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +CA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +CA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +CA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +CA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +CA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +CA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +CA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +CA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +CA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +CA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +CA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +CA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +CA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +CA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +CA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +CA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +CA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +CA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +CA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +CA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +CA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +CA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +CA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +CA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +CA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +CA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +CA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +CA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +CA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +CA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +CA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +CA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +CA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +CA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +CA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +CA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +CA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +CA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +CA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +CA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +CA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +CA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +CA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +CA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +CA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +CA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +CA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +CA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +CA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +CA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +CA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +CA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +CA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +CA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +CA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +CA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +CA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +CA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +CA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +CA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +CA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +CA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +CA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +CA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +CA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +CA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +CA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +CA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +CA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +CA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +CA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +CA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +CA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +CA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +CA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +CA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +CA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +CA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +CA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +CA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +CA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +CA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +CA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +CA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +CA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +CA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +CA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +CA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +CA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +CA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +CA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +CA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +CA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +CA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +CA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +CA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +CA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +CA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +CA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +CA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +CA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +CA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +CA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +CA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +CA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +CA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +CA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +CA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +CA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +CA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +CA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +CA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +CA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +CA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +CA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +CA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +CA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +CA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +CA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +CA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +CA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +CA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +CA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +CA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +CA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +CA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +CA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +CA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +CA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +CA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +CA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +CA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +CA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +CA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +CA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +CA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +CA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +CA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +CA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +CA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +CA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +CA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +CA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +CA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +CA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +CA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +CA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +CA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +CA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +CA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +CA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +CA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +CA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +CA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +CA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +CA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +CA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +CA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +CA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +CA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +CA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +CA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +CA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +CA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +CA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +CA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +CA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +CA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +CA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +CA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +CA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +CA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +CA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +CA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +CA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +CA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +CA,industrial fuel use,coal,coal,2005,CO,0.069434106 +CA,industrial fuel use,coal,coal,2010,CO,0.07723114 +CA,industrial fuel use,coal,coal,2015,CO,0.068281575 +CA,industrial fuel use,coal,coal,2020,CO,0.063753622 +CA,industrial fuel use,coal,coal,2025,CO,0.065761399 +CA,industrial fuel use,coal,coal,2030,CO,0.067959367 +CA,industrial fuel use,coal,coal,2035,CO,0.069173462 +CA,industrial fuel use,coal,coal,2040,CO,0.070202866 +CA,industrial fuel use,coal,coal,2045,CO,0.071098148 +CA,industrial fuel use,coal,coal,2050,CO,0.072063393 +CA,industrial fuel use,coal,coal,2055,CO,0.072511454 +CA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +CA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +CA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +CA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +CA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +CA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +CA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +CA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +CA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +CA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +CA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +CA,industrial fuel use,gas,gas,2005,CO,0.054958784 +CA,industrial fuel use,gas,gas,2010,CO,0.041119779 +CA,industrial fuel use,gas,gas,2015,CO,0.037376927 +CA,industrial fuel use,gas,gas,2020,CO,0.042196984 +CA,industrial fuel use,gas,gas,2025,CO,0.046340259 +CA,industrial fuel use,gas,gas,2030,CO,0.051044751 +CA,industrial fuel use,gas,gas,2035,CO,0.048377476 +CA,industrial fuel use,gas,gas,2040,CO,0.04844371 +CA,industrial fuel use,gas,gas,2045,CO,0.049325699 +CA,industrial fuel use,gas,gas,2050,CO,0.048085677 +CA,industrial fuel use,gas,gas,2055,CO,0.046506083 +CA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +CA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +CA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +CA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +CA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +CA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +CA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +CA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +CA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +CA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +CA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +CA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +CA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +CA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +CA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +CA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +CA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +CA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +CA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +CA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +CA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +CA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +CA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +CA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +CA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +CA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +CA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +CA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +CA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +CA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +CA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +CA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +CA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +CA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +CA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +CA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +CA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +CA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +CA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +CA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +CA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +CA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +CA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +CA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +CA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +CA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +CA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +CA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +CA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +CA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +CA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +CA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +CA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +CA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +CA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +CA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +CA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +CA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +CA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +CA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +CA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +CA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +CA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +CA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +CA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +CA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +CA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +CA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +CA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +CA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +CA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +CA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +CA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +CA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +CA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +CA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +CA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +CA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +CA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +CA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +CA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +CA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +CA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +CA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +CA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +CA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +CA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +CA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +CA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +CA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +CA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +CA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +CA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +CA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +CA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +CA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +CA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +CA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +CA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +CA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +CA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +CA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +CA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +CA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +CA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +CA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +CA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +CA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +CA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +CA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +CA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +CA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +CA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +CA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +CA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +CA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +CA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +CA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +CA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +CA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +CA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +CA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +CA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +CA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +CA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +CA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +CA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +CA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +CA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +CA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +CA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +CA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +CA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +CA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +CA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +CA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +CA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +CA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +CA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +CA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +CA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +CA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +CA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +CA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +CA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +CA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +CA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +CA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +CA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +CA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +CA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +CA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +CA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +CA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +CA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +CA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +CA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +CA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +CA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +CA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +CA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +CA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +CA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +CA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +CA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +CA,industrial fuel use,coal,coal,2005,BC,0.052178527 +CA,industrial fuel use,coal,coal,2010,BC,0.054113893 +CA,industrial fuel use,coal,coal,2015,BC,0.054816673 +CA,industrial fuel use,coal,coal,2020,BC,0.051442317 +CA,industrial fuel use,coal,coal,2025,BC,0.05280003 +CA,industrial fuel use,coal,coal,2030,BC,0.054819383 +CA,industrial fuel use,coal,coal,2035,BC,0.055934389 +CA,industrial fuel use,coal,coal,2040,BC,0.056737391 +CA,industrial fuel use,coal,coal,2045,BC,0.057341111 +CA,industrial fuel use,coal,coal,2050,BC,0.057867944 +CA,industrial fuel use,coal,coal,2055,BC,0.058307588 +CA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +CA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +CA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +CA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +CA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +CA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +CA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +CA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +CA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +CA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +CA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +CA,industrial fuel use,gas,gas,2005,BC,0.000879555 +CA,industrial fuel use,gas,gas,2010,BC,0.000594596 +CA,industrial fuel use,gas,gas,2015,BC,0.000780779 +CA,industrial fuel use,gas,gas,2020,BC,0.000758542 +CA,industrial fuel use,gas,gas,2025,BC,0.000791704 +CA,industrial fuel use,gas,gas,2030,BC,0.000829295 +CA,industrial fuel use,gas,gas,2035,BC,0.000745895 +CA,industrial fuel use,gas,gas,2040,BC,0.000739727 +CA,industrial fuel use,gas,gas,2045,BC,0.000759191 +CA,industrial fuel use,gas,gas,2050,BC,0.000728476 +CA,industrial fuel use,gas,gas,2055,BC,0.000688571 +CA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +CA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +CA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +CA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +CA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +CA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +CA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +CA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +CA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +CA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +CA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +CA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +CA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +CA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +CA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +CA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +CA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +CA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +CA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +CA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +CA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +CA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +CA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +CA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +CA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +CA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +CA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +CA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +CA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +CA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +CA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +CA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +CA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +CA,industrial fuel use,coal,coal,2005,OC,0.004608879 +CA,industrial fuel use,coal,coal,2010,OC,0.004949044 +CA,industrial fuel use,coal,coal,2015,OC,0.005291355 +CA,industrial fuel use,coal,coal,2020,OC,0.005047635 +CA,industrial fuel use,coal,coal,2025,OC,0.005240698 +CA,industrial fuel use,coal,coal,2030,OC,0.005398598 +CA,industrial fuel use,coal,coal,2035,OC,0.005483036 +CA,industrial fuel use,coal,coal,2040,OC,0.005583473 +CA,industrial fuel use,coal,coal,2045,OC,0.005638434 +CA,industrial fuel use,coal,coal,2050,OC,0.005723515 +CA,industrial fuel use,coal,coal,2055,OC,0.005777195 +CA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +CA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +CA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +CA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +CA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +CA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +CA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +CA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +CA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +CA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +CA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +CA,industrial fuel use,gas,gas,2005,OC,0.000586894 +CA,industrial fuel use,gas,gas,2010,OC,0.000538986 +CA,industrial fuel use,gas,gas,2015,OC,0.000406177 +CA,industrial fuel use,gas,gas,2020,OC,0.000436774 +CA,industrial fuel use,gas,gas,2025,OC,0.000431434 +CA,industrial fuel use,gas,gas,2030,OC,0.000454497 +CA,industrial fuel use,gas,gas,2035,OC,0.0005142 +CA,industrial fuel use,gas,gas,2040,OC,0.000542203 +CA,industrial fuel use,gas,gas,2045,OC,0.0005354 +CA,industrial fuel use,gas,gas,2050,OC,0.000552822 +CA,industrial fuel use,gas,gas,2055,OC,0.000563528 +CA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +CA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +CA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +CA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +CA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +CA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +CA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +CA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +CA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +CA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +CA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +CA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +CA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +CA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +CA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +CA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +CA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +CA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +CA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +CA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +CA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +CA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +CA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +CA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +CA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +CA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +CA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +CA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +CA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +CA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +CA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +CA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +CA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +CA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +CA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +CA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +CA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +CA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +CA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +CA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +CA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +CA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +CA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +CA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +CA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +CA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +CA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +CA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +CA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +CA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +CA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +CA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +CA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +CA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +CA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +CA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +CA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +CA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +CA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +CA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +CA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +CA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +CA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +CA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +CA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +CA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +CA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +CA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +CA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +CA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +CA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +CA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +CA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +CA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +CA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +CA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +CA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +CA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +CA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +CA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +CA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +CA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +CA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +CA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +CA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +CA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +CA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +CA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +CA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +CA,industrial fuel use,biomass,biomass,2005,CO2,0 +CA,industrial fuel use,biomass,biomass,2010,CO2,0 +CA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +CA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +CA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +CA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +CA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +CA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +CA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +CA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +CA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +CA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +CA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +CA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +CA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +CA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +CA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +CA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +CA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +CA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +CA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +CA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +CO,industrial fuel use,coal,coal,2005,NOx,0.261565752 +CO,industrial fuel use,coal,coal,2010,NOx,0.24128762 +CO,industrial fuel use,coal,coal,2015,NOx,0.247879608 +CO,industrial fuel use,coal,coal,2020,NOx,0.234312556 +CO,industrial fuel use,coal,coal,2025,NOx,0.240398293 +CO,industrial fuel use,coal,coal,2030,NOx,0.246677964 +CO,industrial fuel use,coal,coal,2035,NOx,0.250299201 +CO,industrial fuel use,coal,coal,2040,NOx,0.253554811 +CO,industrial fuel use,coal,coal,2045,NOx,0.255578056 +CO,industrial fuel use,coal,coal,2050,NOx,0.258549854 +CO,industrial fuel use,coal,coal,2055,NOx,0.26014596 +CO,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +CO,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +CO,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +CO,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +CO,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +CO,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +CO,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +CO,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +CO,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +CO,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +CO,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +CO,industrial fuel use,gas,gas,2005,NOx,0.080919016 +CO,industrial fuel use,gas,gas,2010,NOx,0.044952568 +CO,industrial fuel use,gas,gas,2015,NOx,0.037239142 +CO,industrial fuel use,gas,gas,2020,NOx,0.040745965 +CO,industrial fuel use,gas,gas,2025,NOx,0.042574105 +CO,industrial fuel use,gas,gas,2030,NOx,0.045347383 +CO,industrial fuel use,gas,gas,2035,NOx,0.048574619 +CO,industrial fuel use,gas,gas,2040,NOx,0.050422899 +CO,industrial fuel use,gas,gas,2045,NOx,0.050680722 +CO,industrial fuel use,gas,gas,2050,NOx,0.0517343 +CO,industrial fuel use,gas,gas,2055,NOx,0.052443137 +CO,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +CO,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +CO,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +CO,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +CO,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +CO,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +CO,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +CO,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +CO,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +CO,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +CO,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +CO,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +CO,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +CO,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +CO,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +CO,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +CO,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +CO,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +CO,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +CO,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +CO,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +CO,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +CO,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +CO,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +CO,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +CO,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +CO,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +CO,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +CO,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +CO,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +CO,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +CO,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +CO,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +CO,industrial fuel use,coal,coal,2005,SO2,0.709862367 +CO,industrial fuel use,coal,coal,2010,SO2,0.679592789 +CO,industrial fuel use,coal,coal,2015,SO2,0.590904591 +CO,industrial fuel use,coal,coal,2020,SO2,0.549595621 +CO,industrial fuel use,coal,coal,2025,SO2,0.56430149 +CO,industrial fuel use,coal,coal,2030,SO2,0.576548046 +CO,industrial fuel use,coal,coal,2035,SO2,0.583595424 +CO,industrial fuel use,coal,coal,2040,SO2,0.590805881 +CO,industrial fuel use,coal,coal,2045,SO2,0.596410723 +CO,industrial fuel use,coal,coal,2050,SO2,0.606154195 +CO,industrial fuel use,coal,coal,2055,SO2,0.611234923 +CO,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +CO,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +CO,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +CO,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +CO,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +CO,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +CO,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +CO,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +CO,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +CO,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +CO,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +CO,industrial fuel use,gas,gas,2005,SO2,0.000213988 +CO,industrial fuel use,gas,gas,2010,SO2,0.002761946 +CO,industrial fuel use,gas,gas,2015,SO2,0.002854723 +CO,industrial fuel use,gas,gas,2020,SO2,0.002771127 +CO,industrial fuel use,gas,gas,2025,SO2,0.002798763 +CO,industrial fuel use,gas,gas,2030,SO2,0.002938075 +CO,industrial fuel use,gas,gas,2035,SO2,0.003016098 +CO,industrial fuel use,gas,gas,2040,SO2,0.003118901 +CO,industrial fuel use,gas,gas,2045,SO2,0.00311325 +CO,industrial fuel use,gas,gas,2050,SO2,0.003090451 +CO,industrial fuel use,gas,gas,2055,SO2,0.003025213 +CO,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +CO,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +CO,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +CO,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +CO,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +CO,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +CO,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +CO,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +CO,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +CO,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +CO,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +CO,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +CO,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +CO,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +CO,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +CO,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +CO,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +CO,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +CO,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +CO,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +CO,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +CO,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +CO,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +CO,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +CO,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +CO,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +CO,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +CO,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +CO,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +CO,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +CO,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +CO,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +CO,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +CO,industrial fuel use,coal,coal,2005,PM10,0.136452905 +CO,industrial fuel use,coal,coal,2010,PM10,0.093662835 +CO,industrial fuel use,coal,coal,2015,PM10,0.100887759 +CO,industrial fuel use,coal,coal,2020,PM10,0.094503476 +CO,industrial fuel use,coal,coal,2025,PM10,0.09752377 +CO,industrial fuel use,coal,coal,2030,PM10,0.099823133 +CO,industrial fuel use,coal,coal,2035,PM10,0.101097535 +CO,industrial fuel use,coal,coal,2040,PM10,0.102438117 +CO,industrial fuel use,coal,coal,2045,PM10,0.103553978 +CO,industrial fuel use,coal,coal,2050,PM10,0.105393893 +CO,industrial fuel use,coal,coal,2055,PM10,0.106304221 +CO,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +CO,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +CO,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +CO,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +CO,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +CO,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +CO,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +CO,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +CO,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +CO,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +CO,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +CO,industrial fuel use,gas,gas,2005,PM10,0.002144603 +CO,industrial fuel use,gas,gas,2010,PM10,0.004157892 +CO,industrial fuel use,gas,gas,2015,PM10,0.004308637 +CO,industrial fuel use,gas,gas,2020,PM10,0.004261296 +CO,industrial fuel use,gas,gas,2025,PM10,0.004334357 +CO,industrial fuel use,gas,gas,2030,PM10,0.00454497 +CO,industrial fuel use,gas,gas,2035,PM10,0.004581054 +CO,industrial fuel use,gas,gas,2040,PM10,0.004690204 +CO,industrial fuel use,gas,gas,2045,PM10,0.004695842 +CO,industrial fuel use,gas,gas,2050,PM10,0.004649052 +CO,industrial fuel use,gas,gas,2055,PM10,0.00454824 +CO,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +CO,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +CO,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +CO,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +CO,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +CO,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +CO,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +CO,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +CO,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +CO,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +CO,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +CO,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +CO,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +CO,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +CO,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +CO,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +CO,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +CO,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +CO,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +CO,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +CO,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +CO,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +CO,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +CO,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +CO,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +CO,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +CO,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +CO,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +CO,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +CO,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +CO,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +CO,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +CO,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +CO,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +CO,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +CO,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +CO,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +CO,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +CO,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +CO,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +CO,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +CO,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +CO,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +CO,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +CO,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +CO,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +CO,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +CO,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +CO,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +CO,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +CO,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +CO,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +CO,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +CO,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +CO,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +CO,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +CO,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +CO,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +CO,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +CO,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +CO,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +CO,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +CO,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +CO,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +CO,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +CO,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +CO,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +CO,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +CO,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +CO,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +CO,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +CO,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +CO,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +CO,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +CO,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +CO,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +CO,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +CO,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +CO,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +CO,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +CO,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +CO,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +CO,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +CO,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +CO,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +CO,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +CO,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +CO,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +CO,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +CO,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +CO,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +CO,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +CO,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +CO,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +CO,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +CO,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +CO,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +CO,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +CO,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +CO,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +CO,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +CO,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +CO,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +CO,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +CO,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +CO,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +CO,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +CO,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +CO,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +CO,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +CO,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +CO,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +CO,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +CO,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +CO,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +CO,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +CO,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +CO,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +CO,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +CO,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +CO,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +CO,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +CO,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +CO,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +CO,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +CO,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +CO,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +CO,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +CO,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +CO,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +CO,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +CO,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +CO,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +CO,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +CO,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +CO,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +CO,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +CO,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +CO,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +CO,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +CO,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +CO,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +CO,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +CO,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +CO,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +CO,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +CO,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +CO,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +CO,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +CO,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +CO,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +CO,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +CO,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +CO,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +CO,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +CO,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +CO,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +CO,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +CO,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +CO,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +CO,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +CO,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +CO,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +CO,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +CO,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +CO,industrial fuel use,coal,coal,2005,CO,0.069434106 +CO,industrial fuel use,coal,coal,2010,CO,0.07723114 +CO,industrial fuel use,coal,coal,2015,CO,0.068281575 +CO,industrial fuel use,coal,coal,2020,CO,0.063753622 +CO,industrial fuel use,coal,coal,2025,CO,0.065761399 +CO,industrial fuel use,coal,coal,2030,CO,0.067959367 +CO,industrial fuel use,coal,coal,2035,CO,0.069173462 +CO,industrial fuel use,coal,coal,2040,CO,0.070202866 +CO,industrial fuel use,coal,coal,2045,CO,0.071098148 +CO,industrial fuel use,coal,coal,2050,CO,0.072063393 +CO,industrial fuel use,coal,coal,2055,CO,0.072511454 +CO,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +CO,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +CO,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +CO,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +CO,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +CO,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +CO,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +CO,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +CO,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +CO,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +CO,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +CO,industrial fuel use,gas,gas,2005,CO,0.054958784 +CO,industrial fuel use,gas,gas,2010,CO,0.041119779 +CO,industrial fuel use,gas,gas,2015,CO,0.037376927 +CO,industrial fuel use,gas,gas,2020,CO,0.042196984 +CO,industrial fuel use,gas,gas,2025,CO,0.046340259 +CO,industrial fuel use,gas,gas,2030,CO,0.051044751 +CO,industrial fuel use,gas,gas,2035,CO,0.048377476 +CO,industrial fuel use,gas,gas,2040,CO,0.04844371 +CO,industrial fuel use,gas,gas,2045,CO,0.049325699 +CO,industrial fuel use,gas,gas,2050,CO,0.048085677 +CO,industrial fuel use,gas,gas,2055,CO,0.046506083 +CO,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +CO,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +CO,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +CO,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +CO,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +CO,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +CO,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +CO,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +CO,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +CO,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +CO,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +CO,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +CO,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +CO,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +CO,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +CO,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +CO,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +CO,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +CO,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +CO,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +CO,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +CO,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +CO,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +CO,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +CO,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +CO,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +CO,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +CO,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +CO,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +CO,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +CO,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +CO,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +CO,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +CO,industrial fuel use,coal,coal,2005,CH4,0.008615911 +CO,industrial fuel use,coal,coal,2010,CH4,0.007087118 +CO,industrial fuel use,coal,coal,2015,CH4,0.007645512 +CO,industrial fuel use,coal,coal,2020,CH4,0.007093206 +CO,industrial fuel use,coal,coal,2025,CH4,0.007280827 +CO,industrial fuel use,coal,coal,2030,CH4,0.007426545 +CO,industrial fuel use,coal,coal,2035,CH4,0.007524098 +CO,industrial fuel use,coal,coal,2040,CH4,0.007621441 +CO,industrial fuel use,coal,coal,2045,CH4,0.007691307 +CO,industrial fuel use,coal,coal,2050,CH4,0.007801358 +CO,industrial fuel use,coal,coal,2055,CH4,0.007871907 +CO,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +CO,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +CO,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +CO,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +CO,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +CO,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +CO,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +CO,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +CO,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +CO,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +CO,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +CO,industrial fuel use,gas,gas,2005,CH4,0.002575726 +CO,industrial fuel use,gas,gas,2010,CH4,0.0036902 +CO,industrial fuel use,gas,gas,2015,CH4,0.001847174 +CO,industrial fuel use,gas,gas,2020,CH4,0.002575374 +CO,industrial fuel use,gas,gas,2025,CH4,0.002470739 +CO,industrial fuel use,gas,gas,2030,CH4,0.002514812 +CO,industrial fuel use,gas,gas,2035,CH4,0.004402202 +CO,industrial fuel use,gas,gas,2040,CH4,0.005194877 +CO,industrial fuel use,gas,gas,2045,CH4,0.005264291 +CO,industrial fuel use,gas,gas,2050,CH4,0.006086388 +CO,industrial fuel use,gas,gas,2055,CH4,0.006850703 +CO,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +CO,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +CO,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +CO,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +CO,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +CO,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +CO,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +CO,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +CO,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +CO,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +CO,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +CO,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +CO,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +CO,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +CO,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +CO,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +CO,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +CO,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +CO,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +CO,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +CO,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +CO,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +CO,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +CO,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +CO,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +CO,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +CO,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +CO,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +CO,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +CO,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +CO,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +CO,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +CO,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +CO,industrial fuel use,coal,coal,2005,N2O,0.002945881 +CO,industrial fuel use,coal,coal,2010,N2O,0.004699422 +CO,industrial fuel use,coal,coal,2015,N2O,0.003718249 +CO,industrial fuel use,coal,coal,2020,N2O,0.003503987 +CO,industrial fuel use,coal,coal,2025,N2O,0.003902448 +CO,industrial fuel use,coal,coal,2030,N2O,0.005231917 +CO,industrial fuel use,coal,coal,2035,N2O,0.005844861 +CO,industrial fuel use,coal,coal,2040,N2O,0.006123209 +CO,industrial fuel use,coal,coal,2045,N2O,0.006493024 +CO,industrial fuel use,coal,coal,2050,N2O,0.00643187 +CO,industrial fuel use,coal,coal,2055,N2O,0.006580646 +CO,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +CO,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +CO,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +CO,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +CO,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +CO,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +CO,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +CO,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +CO,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +CO,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +CO,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +CO,industrial fuel use,gas,gas,2005,N2O,0.000509795 +CO,industrial fuel use,gas,gas,2010,N2O,0.000459136 +CO,industrial fuel use,gas,gas,2015,N2O,0.000457847 +CO,industrial fuel use,gas,gas,2020,N2O,0.000469807 +CO,industrial fuel use,gas,gas,2025,N2O,0.0004748 +CO,industrial fuel use,gas,gas,2030,N2O,0.000493269 +CO,industrial fuel use,gas,gas,2035,N2O,0.0005142 +CO,industrial fuel use,gas,gas,2040,N2O,0.000525413 +CO,industrial fuel use,gas,gas,2045,N2O,0.000530678 +CO,industrial fuel use,gas,gas,2050,N2O,0.000534097 +CO,industrial fuel use,gas,gas,2055,N2O,0.000535185 +CO,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +CO,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +CO,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +CO,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +CO,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +CO,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +CO,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +CO,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +CO,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +CO,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +CO,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +CO,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +CO,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +CO,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +CO,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +CO,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +CO,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +CO,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +CO,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +CO,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +CO,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +CO,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +CO,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +CO,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +CO,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +CO,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +CO,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +CO,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +CO,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +CO,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +CO,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +CO,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +CO,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +CO,industrial fuel use,coal,coal,2005,BC,0.052178527 +CO,industrial fuel use,coal,coal,2010,BC,0.054113893 +CO,industrial fuel use,coal,coal,2015,BC,0.054816673 +CO,industrial fuel use,coal,coal,2020,BC,0.051442317 +CO,industrial fuel use,coal,coal,2025,BC,0.05280003 +CO,industrial fuel use,coal,coal,2030,BC,0.054819383 +CO,industrial fuel use,coal,coal,2035,BC,0.055934389 +CO,industrial fuel use,coal,coal,2040,BC,0.056737391 +CO,industrial fuel use,coal,coal,2045,BC,0.057341111 +CO,industrial fuel use,coal,coal,2050,BC,0.057867944 +CO,industrial fuel use,coal,coal,2055,BC,0.058307588 +CO,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +CO,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +CO,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +CO,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +CO,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +CO,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +CO,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +CO,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +CO,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +CO,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +CO,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +CO,industrial fuel use,gas,gas,2005,BC,0.000879555 +CO,industrial fuel use,gas,gas,2010,BC,0.000594596 +CO,industrial fuel use,gas,gas,2015,BC,0.000780779 +CO,industrial fuel use,gas,gas,2020,BC,0.000758542 +CO,industrial fuel use,gas,gas,2025,BC,0.000791704 +CO,industrial fuel use,gas,gas,2030,BC,0.000829295 +CO,industrial fuel use,gas,gas,2035,BC,0.000745895 +CO,industrial fuel use,gas,gas,2040,BC,0.000739727 +CO,industrial fuel use,gas,gas,2045,BC,0.000759191 +CO,industrial fuel use,gas,gas,2050,BC,0.000728476 +CO,industrial fuel use,gas,gas,2055,BC,0.000688571 +CO,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +CO,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +CO,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +CO,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +CO,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +CO,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +CO,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +CO,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +CO,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +CO,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +CO,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +CO,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +CO,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +CO,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +CO,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +CO,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +CO,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +CO,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +CO,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +CO,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +CO,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +CO,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +CO,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +CO,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +CO,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +CO,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +CO,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +CO,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +CO,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +CO,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +CO,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +CO,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +CO,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +CO,industrial fuel use,coal,coal,2005,OC,0.004608879 +CO,industrial fuel use,coal,coal,2010,OC,0.004949044 +CO,industrial fuel use,coal,coal,2015,OC,0.005291355 +CO,industrial fuel use,coal,coal,2020,OC,0.005047635 +CO,industrial fuel use,coal,coal,2025,OC,0.005240698 +CO,industrial fuel use,coal,coal,2030,OC,0.005398598 +CO,industrial fuel use,coal,coal,2035,OC,0.005483036 +CO,industrial fuel use,coal,coal,2040,OC,0.005583473 +CO,industrial fuel use,coal,coal,2045,OC,0.005638434 +CO,industrial fuel use,coal,coal,2050,OC,0.005723515 +CO,industrial fuel use,coal,coal,2055,OC,0.005777195 +CO,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +CO,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +CO,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +CO,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +CO,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +CO,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +CO,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +CO,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +CO,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +CO,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +CO,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +CO,industrial fuel use,gas,gas,2005,OC,0.000586894 +CO,industrial fuel use,gas,gas,2010,OC,0.000538986 +CO,industrial fuel use,gas,gas,2015,OC,0.000406177 +CO,industrial fuel use,gas,gas,2020,OC,0.000436774 +CO,industrial fuel use,gas,gas,2025,OC,0.000431434 +CO,industrial fuel use,gas,gas,2030,OC,0.000454497 +CO,industrial fuel use,gas,gas,2035,OC,0.0005142 +CO,industrial fuel use,gas,gas,2040,OC,0.000542203 +CO,industrial fuel use,gas,gas,2045,OC,0.0005354 +CO,industrial fuel use,gas,gas,2050,OC,0.000552822 +CO,industrial fuel use,gas,gas,2055,OC,0.000563528 +CO,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +CO,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +CO,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +CO,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +CO,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +CO,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +CO,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +CO,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +CO,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +CO,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +CO,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +CO,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +CO,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +CO,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +CO,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +CO,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +CO,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +CO,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +CO,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +CO,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +CO,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +CO,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +CO,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +CO,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +CO,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +CO,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +CO,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +CO,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +CO,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +CO,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +CO,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +CO,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +CO,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +CO,industrial fuel use,coal,coal,2005,CO2,0.022413751 +CO,industrial fuel use,coal,coal,2010,CO2,0.023247485 +CO,industrial fuel use,coal,coal,2015,CO2,0.023542577 +CO,industrial fuel use,coal,coal,2020,CO2,0.022100946 +CO,industrial fuel use,coal,coal,2025,CO2,0.022682182 +CO,industrial fuel use,coal,coal,2030,CO2,0.023544891 +CO,industrial fuel use,coal,coal,2035,CO2,0.024022124 +CO,industrial fuel use,coal,coal,2040,CO2,0.024371859 +CO,industrial fuel use,coal,coal,2045,CO2,0.024626877 +CO,industrial fuel use,coal,coal,2050,CO2,0.024861999 +CO,industrial fuel use,coal,coal,2055,CO2,0.025047846 +CO,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +CO,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +CO,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +CO,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +CO,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +CO,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +CO,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +CO,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +CO,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +CO,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +CO,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +CO,industrial fuel use,gas,gas,2005,CO2,0.010100215 +CO,industrial fuel use,gas,gas,2010,CO2,0.008735772 +CO,industrial fuel use,gas,gas,2015,CO2,0.008975567 +CO,industrial fuel use,gas,gas,2020,CO2,0.009141549 +CO,industrial fuel use,gas,gas,2025,CO2,0.009319403 +CO,industrial fuel use,gas,gas,2030,CO2,0.009661635 +CO,industrial fuel use,gas,gas,2035,CO2,0.009858394 +CO,industrial fuel use,gas,gas,2040,CO2,0.010090146 +CO,industrial fuel use,gas,gas,2045,CO2,0.010177486 +CO,industrial fuel use,gas,gas,2050,CO2,0.010210503 +CO,industrial fuel use,gas,gas,2055,CO2,0.010168744 +CO,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +CO,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +CO,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +CO,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +CO,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +CO,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +CO,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +CO,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +CO,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +CO,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +CO,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +CO,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +CO,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +CO,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +CO,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +CO,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +CO,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +CO,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +CO,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +CO,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +CO,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +CO,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +CO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +CO,industrial fuel use,biomass,biomass,2005,CO2,0 +CO,industrial fuel use,biomass,biomass,2010,CO2,0 +CO,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +CO,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +CO,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +CO,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +CO,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +CO,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +CO,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +CO,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +CO,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +CO,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +CO,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +CO,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +CO,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +CO,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +CO,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +CO,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +CO,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +CO,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +CO,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +CO,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +CT,industrial fuel use,coal,coal,2005,NOx,0.261565752 +CT,industrial fuel use,coal,coal,2010,NOx,0.24128762 +CT,industrial fuel use,coal,coal,2015,NOx,0.247879608 +CT,industrial fuel use,coal,coal,2020,NOx,0.234312556 +CT,industrial fuel use,coal,coal,2025,NOx,0.240398293 +CT,industrial fuel use,coal,coal,2030,NOx,0.246677964 +CT,industrial fuel use,coal,coal,2035,NOx,0.250299201 +CT,industrial fuel use,coal,coal,2040,NOx,0.253554811 +CT,industrial fuel use,coal,coal,2045,NOx,0.255578056 +CT,industrial fuel use,coal,coal,2050,NOx,0.258549854 +CT,industrial fuel use,coal,coal,2055,NOx,0.26014596 +CT,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +CT,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +CT,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +CT,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +CT,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +CT,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +CT,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +CT,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +CT,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +CT,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +CT,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +CT,industrial fuel use,gas,gas,2005,NOx,0.080919016 +CT,industrial fuel use,gas,gas,2010,NOx,0.044952568 +CT,industrial fuel use,gas,gas,2015,NOx,0.037239142 +CT,industrial fuel use,gas,gas,2020,NOx,0.040745965 +CT,industrial fuel use,gas,gas,2025,NOx,0.042574105 +CT,industrial fuel use,gas,gas,2030,NOx,0.045347383 +CT,industrial fuel use,gas,gas,2035,NOx,0.048574619 +CT,industrial fuel use,gas,gas,2040,NOx,0.050422899 +CT,industrial fuel use,gas,gas,2045,NOx,0.050680722 +CT,industrial fuel use,gas,gas,2050,NOx,0.0517343 +CT,industrial fuel use,gas,gas,2055,NOx,0.052443137 +CT,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +CT,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +CT,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +CT,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +CT,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +CT,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +CT,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +CT,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +CT,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +CT,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +CT,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +CT,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +CT,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +CT,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +CT,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +CT,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +CT,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +CT,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +CT,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +CT,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +CT,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +CT,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +CT,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +CT,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +CT,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +CT,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +CT,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +CT,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +CT,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +CT,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +CT,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +CT,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +CT,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +CT,industrial fuel use,coal,coal,2005,SO2,0.709862367 +CT,industrial fuel use,coal,coal,2010,SO2,0.679592789 +CT,industrial fuel use,coal,coal,2015,SO2,0.590904591 +CT,industrial fuel use,coal,coal,2020,SO2,0.549595621 +CT,industrial fuel use,coal,coal,2025,SO2,0.56430149 +CT,industrial fuel use,coal,coal,2030,SO2,0.576548046 +CT,industrial fuel use,coal,coal,2035,SO2,0.583595424 +CT,industrial fuel use,coal,coal,2040,SO2,0.590805881 +CT,industrial fuel use,coal,coal,2045,SO2,0.596410723 +CT,industrial fuel use,coal,coal,2050,SO2,0.606154195 +CT,industrial fuel use,coal,coal,2055,SO2,0.611234923 +CT,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +CT,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +CT,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +CT,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +CT,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +CT,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +CT,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +CT,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +CT,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +CT,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +CT,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +CT,industrial fuel use,gas,gas,2005,SO2,0.000213988 +CT,industrial fuel use,gas,gas,2010,SO2,0.002761946 +CT,industrial fuel use,gas,gas,2015,SO2,0.002854723 +CT,industrial fuel use,gas,gas,2020,SO2,0.002771127 +CT,industrial fuel use,gas,gas,2025,SO2,0.002798763 +CT,industrial fuel use,gas,gas,2030,SO2,0.002938075 +CT,industrial fuel use,gas,gas,2035,SO2,0.003016098 +CT,industrial fuel use,gas,gas,2040,SO2,0.003118901 +CT,industrial fuel use,gas,gas,2045,SO2,0.00311325 +CT,industrial fuel use,gas,gas,2050,SO2,0.003090451 +CT,industrial fuel use,gas,gas,2055,SO2,0.003025213 +CT,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +CT,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +CT,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +CT,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +CT,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +CT,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +CT,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +CT,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +CT,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +CT,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +CT,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +CT,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +CT,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +CT,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +CT,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +CT,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +CT,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +CT,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +CT,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +CT,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +CT,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +CT,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +CT,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +CT,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +CT,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +CT,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +CT,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +CT,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +CT,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +CT,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +CT,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +CT,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +CT,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +CT,industrial fuel use,coal,coal,2005,PM10,0.136452905 +CT,industrial fuel use,coal,coal,2010,PM10,0.093662835 +CT,industrial fuel use,coal,coal,2015,PM10,0.100887759 +CT,industrial fuel use,coal,coal,2020,PM10,0.094503476 +CT,industrial fuel use,coal,coal,2025,PM10,0.09752377 +CT,industrial fuel use,coal,coal,2030,PM10,0.099823133 +CT,industrial fuel use,coal,coal,2035,PM10,0.101097535 +CT,industrial fuel use,coal,coal,2040,PM10,0.102438117 +CT,industrial fuel use,coal,coal,2045,PM10,0.103553978 +CT,industrial fuel use,coal,coal,2050,PM10,0.105393893 +CT,industrial fuel use,coal,coal,2055,PM10,0.106304221 +CT,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +CT,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +CT,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +CT,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +CT,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +CT,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +CT,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +CT,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +CT,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +CT,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +CT,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +CT,industrial fuel use,gas,gas,2005,PM10,0.002144603 +CT,industrial fuel use,gas,gas,2010,PM10,0.004157892 +CT,industrial fuel use,gas,gas,2015,PM10,0.004308637 +CT,industrial fuel use,gas,gas,2020,PM10,0.004261296 +CT,industrial fuel use,gas,gas,2025,PM10,0.004334357 +CT,industrial fuel use,gas,gas,2030,PM10,0.00454497 +CT,industrial fuel use,gas,gas,2035,PM10,0.004581054 +CT,industrial fuel use,gas,gas,2040,PM10,0.004690204 +CT,industrial fuel use,gas,gas,2045,PM10,0.004695842 +CT,industrial fuel use,gas,gas,2050,PM10,0.004649052 +CT,industrial fuel use,gas,gas,2055,PM10,0.00454824 +CT,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +CT,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +CT,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +CT,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +CT,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +CT,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +CT,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +CT,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +CT,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +CT,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +CT,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +CT,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +CT,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +CT,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +CT,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +CT,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +CT,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +CT,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +CT,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +CT,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +CT,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +CT,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +CT,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +CT,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +CT,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +CT,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +CT,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +CT,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +CT,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +CT,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +CT,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +CT,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +CT,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +CT,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +CT,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +CT,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +CT,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +CT,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +CT,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +CT,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +CT,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +CT,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +CT,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +CT,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +CT,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +CT,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +CT,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +CT,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +CT,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +CT,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +CT,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +CT,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +CT,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +CT,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +CT,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +CT,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +CT,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +CT,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +CT,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +CT,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +CT,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +CT,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +CT,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +CT,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +CT,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +CT,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +CT,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +CT,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +CT,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +CT,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +CT,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +CT,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +CT,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +CT,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +CT,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +CT,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +CT,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +CT,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +CT,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +CT,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +CT,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +CT,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +CT,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +CT,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +CT,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +CT,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +CT,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +CT,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +CT,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +CT,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +CT,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +CT,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +CT,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +CT,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +CT,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +CT,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +CT,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +CT,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +CT,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +CT,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +CT,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +CT,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +CT,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +CT,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +CT,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +CT,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +CT,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +CT,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +CT,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +CT,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +CT,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +CT,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +CT,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +CT,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +CT,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +CT,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +CT,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +CT,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +CT,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +CT,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +CT,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +CT,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +CT,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +CT,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +CT,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +CT,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +CT,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +CT,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +CT,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +CT,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +CT,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +CT,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +CT,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +CT,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +CT,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +CT,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +CT,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +CT,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +CT,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +CT,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +CT,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +CT,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +CT,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +CT,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +CT,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +CT,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +CT,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +CT,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +CT,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +CT,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +CT,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +CT,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +CT,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +CT,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +CT,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +CT,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +CT,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +CT,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +CT,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +CT,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +CT,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +CT,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +CT,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +CT,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +CT,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +CT,industrial fuel use,coal,coal,2005,CO,0.069434106 +CT,industrial fuel use,coal,coal,2010,CO,0.07723114 +CT,industrial fuel use,coal,coal,2015,CO,0.068281575 +CT,industrial fuel use,coal,coal,2020,CO,0.063753622 +CT,industrial fuel use,coal,coal,2025,CO,0.065761399 +CT,industrial fuel use,coal,coal,2030,CO,0.067959367 +CT,industrial fuel use,coal,coal,2035,CO,0.069173462 +CT,industrial fuel use,coal,coal,2040,CO,0.070202866 +CT,industrial fuel use,coal,coal,2045,CO,0.071098148 +CT,industrial fuel use,coal,coal,2050,CO,0.072063393 +CT,industrial fuel use,coal,coal,2055,CO,0.072511454 +CT,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +CT,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +CT,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +CT,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +CT,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +CT,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +CT,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +CT,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +CT,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +CT,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +CT,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +CT,industrial fuel use,gas,gas,2005,CO,0.054958784 +CT,industrial fuel use,gas,gas,2010,CO,0.041119779 +CT,industrial fuel use,gas,gas,2015,CO,0.037376927 +CT,industrial fuel use,gas,gas,2020,CO,0.042196984 +CT,industrial fuel use,gas,gas,2025,CO,0.046340259 +CT,industrial fuel use,gas,gas,2030,CO,0.051044751 +CT,industrial fuel use,gas,gas,2035,CO,0.048377476 +CT,industrial fuel use,gas,gas,2040,CO,0.04844371 +CT,industrial fuel use,gas,gas,2045,CO,0.049325699 +CT,industrial fuel use,gas,gas,2050,CO,0.048085677 +CT,industrial fuel use,gas,gas,2055,CO,0.046506083 +CT,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +CT,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +CT,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +CT,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +CT,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +CT,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +CT,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +CT,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +CT,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +CT,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +CT,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +CT,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +CT,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +CT,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +CT,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +CT,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +CT,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +CT,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +CT,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +CT,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +CT,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +CT,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +CT,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +CT,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +CT,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +CT,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +CT,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +CT,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +CT,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +CT,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +CT,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +CT,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +CT,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +CT,industrial fuel use,coal,coal,2005,CH4,0.008615911 +CT,industrial fuel use,coal,coal,2010,CH4,0.007087118 +CT,industrial fuel use,coal,coal,2015,CH4,0.007645512 +CT,industrial fuel use,coal,coal,2020,CH4,0.007093206 +CT,industrial fuel use,coal,coal,2025,CH4,0.007280827 +CT,industrial fuel use,coal,coal,2030,CH4,0.007426545 +CT,industrial fuel use,coal,coal,2035,CH4,0.007524098 +CT,industrial fuel use,coal,coal,2040,CH4,0.007621441 +CT,industrial fuel use,coal,coal,2045,CH4,0.007691307 +CT,industrial fuel use,coal,coal,2050,CH4,0.007801358 +CT,industrial fuel use,coal,coal,2055,CH4,0.007871907 +CT,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +CT,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +CT,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +CT,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +CT,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +CT,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +CT,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +CT,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +CT,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +CT,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +CT,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +CT,industrial fuel use,gas,gas,2005,CH4,0.002575726 +CT,industrial fuel use,gas,gas,2010,CH4,0.0036902 +CT,industrial fuel use,gas,gas,2015,CH4,0.001847174 +CT,industrial fuel use,gas,gas,2020,CH4,0.002575374 +CT,industrial fuel use,gas,gas,2025,CH4,0.002470739 +CT,industrial fuel use,gas,gas,2030,CH4,0.002514812 +CT,industrial fuel use,gas,gas,2035,CH4,0.004402202 +CT,industrial fuel use,gas,gas,2040,CH4,0.005194877 +CT,industrial fuel use,gas,gas,2045,CH4,0.005264291 +CT,industrial fuel use,gas,gas,2050,CH4,0.006086388 +CT,industrial fuel use,gas,gas,2055,CH4,0.006850703 +CT,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +CT,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +CT,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +CT,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +CT,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +CT,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +CT,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +CT,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +CT,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +CT,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +CT,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +CT,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +CT,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +CT,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +CT,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +CT,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +CT,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +CT,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +CT,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +CT,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +CT,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +CT,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +CT,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +CT,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +CT,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +CT,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +CT,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +CT,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +CT,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +CT,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +CT,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +CT,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +CT,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +CT,industrial fuel use,coal,coal,2005,N2O,0.002945881 +CT,industrial fuel use,coal,coal,2010,N2O,0.004699422 +CT,industrial fuel use,coal,coal,2015,N2O,0.003718249 +CT,industrial fuel use,coal,coal,2020,N2O,0.003503987 +CT,industrial fuel use,coal,coal,2025,N2O,0.003902448 +CT,industrial fuel use,coal,coal,2030,N2O,0.005231917 +CT,industrial fuel use,coal,coal,2035,N2O,0.005844861 +CT,industrial fuel use,coal,coal,2040,N2O,0.006123209 +CT,industrial fuel use,coal,coal,2045,N2O,0.006493024 +CT,industrial fuel use,coal,coal,2050,N2O,0.00643187 +CT,industrial fuel use,coal,coal,2055,N2O,0.006580646 +CT,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +CT,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +CT,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +CT,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +CT,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +CT,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +CT,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +CT,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +CT,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +CT,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +CT,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +CT,industrial fuel use,gas,gas,2005,N2O,0.000509795 +CT,industrial fuel use,gas,gas,2010,N2O,0.000459136 +CT,industrial fuel use,gas,gas,2015,N2O,0.000457847 +CT,industrial fuel use,gas,gas,2020,N2O,0.000469807 +CT,industrial fuel use,gas,gas,2025,N2O,0.0004748 +CT,industrial fuel use,gas,gas,2030,N2O,0.000493269 +CT,industrial fuel use,gas,gas,2035,N2O,0.0005142 +CT,industrial fuel use,gas,gas,2040,N2O,0.000525413 +CT,industrial fuel use,gas,gas,2045,N2O,0.000530678 +CT,industrial fuel use,gas,gas,2050,N2O,0.000534097 +CT,industrial fuel use,gas,gas,2055,N2O,0.000535185 +CT,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +CT,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +CT,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +CT,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +CT,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +CT,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +CT,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +CT,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +CT,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +CT,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +CT,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +CT,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +CT,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +CT,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +CT,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +CT,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +CT,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +CT,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +CT,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +CT,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +CT,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +CT,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +CT,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +CT,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +CT,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +CT,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +CT,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +CT,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +CT,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +CT,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +CT,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +CT,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +CT,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +CT,industrial fuel use,coal,coal,2005,BC,0.052178527 +CT,industrial fuel use,coal,coal,2010,BC,0.054113893 +CT,industrial fuel use,coal,coal,2015,BC,0.054816673 +CT,industrial fuel use,coal,coal,2020,BC,0.051442317 +CT,industrial fuel use,coal,coal,2025,BC,0.05280003 +CT,industrial fuel use,coal,coal,2030,BC,0.054819383 +CT,industrial fuel use,coal,coal,2035,BC,0.055934389 +CT,industrial fuel use,coal,coal,2040,BC,0.056737391 +CT,industrial fuel use,coal,coal,2045,BC,0.057341111 +CT,industrial fuel use,coal,coal,2050,BC,0.057867944 +CT,industrial fuel use,coal,coal,2055,BC,0.058307588 +CT,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +CT,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +CT,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +CT,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +CT,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +CT,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +CT,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +CT,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +CT,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +CT,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +CT,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +CT,industrial fuel use,gas,gas,2005,BC,0.000879555 +CT,industrial fuel use,gas,gas,2010,BC,0.000594596 +CT,industrial fuel use,gas,gas,2015,BC,0.000780779 +CT,industrial fuel use,gas,gas,2020,BC,0.000758542 +CT,industrial fuel use,gas,gas,2025,BC,0.000791704 +CT,industrial fuel use,gas,gas,2030,BC,0.000829295 +CT,industrial fuel use,gas,gas,2035,BC,0.000745895 +CT,industrial fuel use,gas,gas,2040,BC,0.000739727 +CT,industrial fuel use,gas,gas,2045,BC,0.000759191 +CT,industrial fuel use,gas,gas,2050,BC,0.000728476 +CT,industrial fuel use,gas,gas,2055,BC,0.000688571 +CT,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +CT,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +CT,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +CT,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +CT,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +CT,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +CT,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +CT,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +CT,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +CT,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +CT,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +CT,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +CT,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +CT,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +CT,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +CT,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +CT,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +CT,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +CT,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +CT,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +CT,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +CT,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +CT,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +CT,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +CT,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +CT,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +CT,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +CT,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +CT,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +CT,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +CT,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +CT,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +CT,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +CT,industrial fuel use,coal,coal,2005,OC,0.004608879 +CT,industrial fuel use,coal,coal,2010,OC,0.004949044 +CT,industrial fuel use,coal,coal,2015,OC,0.005291355 +CT,industrial fuel use,coal,coal,2020,OC,0.005047635 +CT,industrial fuel use,coal,coal,2025,OC,0.005240698 +CT,industrial fuel use,coal,coal,2030,OC,0.005398598 +CT,industrial fuel use,coal,coal,2035,OC,0.005483036 +CT,industrial fuel use,coal,coal,2040,OC,0.005583473 +CT,industrial fuel use,coal,coal,2045,OC,0.005638434 +CT,industrial fuel use,coal,coal,2050,OC,0.005723515 +CT,industrial fuel use,coal,coal,2055,OC,0.005777195 +CT,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +CT,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +CT,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +CT,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +CT,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +CT,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +CT,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +CT,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +CT,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +CT,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +CT,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +CT,industrial fuel use,gas,gas,2005,OC,0.000586894 +CT,industrial fuel use,gas,gas,2010,OC,0.000538986 +CT,industrial fuel use,gas,gas,2015,OC,0.000406177 +CT,industrial fuel use,gas,gas,2020,OC,0.000436774 +CT,industrial fuel use,gas,gas,2025,OC,0.000431434 +CT,industrial fuel use,gas,gas,2030,OC,0.000454497 +CT,industrial fuel use,gas,gas,2035,OC,0.0005142 +CT,industrial fuel use,gas,gas,2040,OC,0.000542203 +CT,industrial fuel use,gas,gas,2045,OC,0.0005354 +CT,industrial fuel use,gas,gas,2050,OC,0.000552822 +CT,industrial fuel use,gas,gas,2055,OC,0.000563528 +CT,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +CT,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +CT,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +CT,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +CT,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +CT,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +CT,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +CT,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +CT,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +CT,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +CT,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +CT,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +CT,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +CT,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +CT,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +CT,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +CT,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +CT,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +CT,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +CT,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +CT,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +CT,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +CT,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +CT,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +CT,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +CT,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +CT,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +CT,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +CT,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +CT,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +CT,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +CT,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +CT,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +CT,industrial fuel use,coal,coal,2005,CO2,0.022413751 +CT,industrial fuel use,coal,coal,2010,CO2,0.023247485 +CT,industrial fuel use,coal,coal,2015,CO2,0.023542577 +CT,industrial fuel use,coal,coal,2020,CO2,0.022100946 +CT,industrial fuel use,coal,coal,2025,CO2,0.022682182 +CT,industrial fuel use,coal,coal,2030,CO2,0.023544891 +CT,industrial fuel use,coal,coal,2035,CO2,0.024022124 +CT,industrial fuel use,coal,coal,2040,CO2,0.024371859 +CT,industrial fuel use,coal,coal,2045,CO2,0.024626877 +CT,industrial fuel use,coal,coal,2050,CO2,0.024861999 +CT,industrial fuel use,coal,coal,2055,CO2,0.025047846 +CT,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +CT,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +CT,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +CT,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +CT,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +CT,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +CT,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +CT,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +CT,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +CT,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +CT,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +CT,industrial fuel use,gas,gas,2005,CO2,0.010100215 +CT,industrial fuel use,gas,gas,2010,CO2,0.008735772 +CT,industrial fuel use,gas,gas,2015,CO2,0.008975567 +CT,industrial fuel use,gas,gas,2020,CO2,0.009141549 +CT,industrial fuel use,gas,gas,2025,CO2,0.009319403 +CT,industrial fuel use,gas,gas,2030,CO2,0.009661635 +CT,industrial fuel use,gas,gas,2035,CO2,0.009858394 +CT,industrial fuel use,gas,gas,2040,CO2,0.010090146 +CT,industrial fuel use,gas,gas,2045,CO2,0.010177486 +CT,industrial fuel use,gas,gas,2050,CO2,0.010210503 +CT,industrial fuel use,gas,gas,2055,CO2,0.010168744 +CT,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +CT,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +CT,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +CT,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +CT,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +CT,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +CT,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +CT,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +CT,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +CT,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +CT,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +CT,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +CT,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +CT,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +CT,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +CT,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +CT,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +CT,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +CT,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +CT,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +CT,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +CT,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +CT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +CT,industrial fuel use,biomass,biomass,2005,CO2,0 +CT,industrial fuel use,biomass,biomass,2010,CO2,0 +CT,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +CT,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +CT,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +CT,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +CT,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +CT,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +CT,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +CT,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +CT,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +CT,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +CT,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +CT,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +CT,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +CT,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +CT,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +CT,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +CT,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +CT,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +CT,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +CT,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +DC,industrial fuel use,coal,coal,2005,NOx,0.261565752 +DC,industrial fuel use,coal,coal,2010,NOx,0.24128762 +DC,industrial fuel use,coal,coal,2015,NOx,0.247879608 +DC,industrial fuel use,coal,coal,2020,NOx,0.234312556 +DC,industrial fuel use,coal,coal,2025,NOx,0.240398293 +DC,industrial fuel use,coal,coal,2030,NOx,0.246677964 +DC,industrial fuel use,coal,coal,2035,NOx,0.250299201 +DC,industrial fuel use,coal,coal,2040,NOx,0.253554811 +DC,industrial fuel use,coal,coal,2045,NOx,0.255578056 +DC,industrial fuel use,coal,coal,2050,NOx,0.258549854 +DC,industrial fuel use,coal,coal,2055,NOx,0.26014596 +DC,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +DC,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +DC,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +DC,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +DC,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +DC,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +DC,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +DC,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +DC,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +DC,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +DC,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +DC,industrial fuel use,gas,gas,2005,NOx,0.080919016 +DC,industrial fuel use,gas,gas,2010,NOx,0.044952568 +DC,industrial fuel use,gas,gas,2015,NOx,0.037239142 +DC,industrial fuel use,gas,gas,2020,NOx,0.040745965 +DC,industrial fuel use,gas,gas,2025,NOx,0.042574105 +DC,industrial fuel use,gas,gas,2030,NOx,0.045347383 +DC,industrial fuel use,gas,gas,2035,NOx,0.048574619 +DC,industrial fuel use,gas,gas,2040,NOx,0.050422899 +DC,industrial fuel use,gas,gas,2045,NOx,0.050680722 +DC,industrial fuel use,gas,gas,2050,NOx,0.0517343 +DC,industrial fuel use,gas,gas,2055,NOx,0.052443137 +DC,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +DC,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +DC,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +DC,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +DC,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +DC,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +DC,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +DC,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +DC,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +DC,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +DC,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +DC,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +DC,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +DC,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +DC,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +DC,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +DC,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +DC,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +DC,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +DC,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +DC,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +DC,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +DC,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +DC,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +DC,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +DC,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +DC,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +DC,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +DC,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +DC,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +DC,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +DC,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +DC,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +DC,industrial fuel use,coal,coal,2005,SO2,0.709862367 +DC,industrial fuel use,coal,coal,2010,SO2,0.679592789 +DC,industrial fuel use,coal,coal,2015,SO2,0.590904591 +DC,industrial fuel use,coal,coal,2020,SO2,0.549595621 +DC,industrial fuel use,coal,coal,2025,SO2,0.56430149 +DC,industrial fuel use,coal,coal,2030,SO2,0.576548046 +DC,industrial fuel use,coal,coal,2035,SO2,0.583595424 +DC,industrial fuel use,coal,coal,2040,SO2,0.590805881 +DC,industrial fuel use,coal,coal,2045,SO2,0.596410723 +DC,industrial fuel use,coal,coal,2050,SO2,0.606154195 +DC,industrial fuel use,coal,coal,2055,SO2,0.611234923 +DC,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +DC,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +DC,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +DC,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +DC,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +DC,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +DC,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +DC,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +DC,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +DC,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +DC,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +DC,industrial fuel use,gas,gas,2005,SO2,0.000213988 +DC,industrial fuel use,gas,gas,2010,SO2,0.002761946 +DC,industrial fuel use,gas,gas,2015,SO2,0.002854723 +DC,industrial fuel use,gas,gas,2020,SO2,0.002771127 +DC,industrial fuel use,gas,gas,2025,SO2,0.002798763 +DC,industrial fuel use,gas,gas,2030,SO2,0.002938075 +DC,industrial fuel use,gas,gas,2035,SO2,0.003016098 +DC,industrial fuel use,gas,gas,2040,SO2,0.003118901 +DC,industrial fuel use,gas,gas,2045,SO2,0.00311325 +DC,industrial fuel use,gas,gas,2050,SO2,0.003090451 +DC,industrial fuel use,gas,gas,2055,SO2,0.003025213 +DC,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +DC,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +DC,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +DC,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +DC,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +DC,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +DC,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +DC,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +DC,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +DC,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +DC,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +DC,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +DC,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +DC,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +DC,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +DC,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +DC,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +DC,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +DC,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +DC,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +DC,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +DC,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +DC,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +DC,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +DC,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +DC,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +DC,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +DC,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +DC,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +DC,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +DC,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +DC,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +DC,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +DC,industrial fuel use,coal,coal,2005,PM10,0.136452905 +DC,industrial fuel use,coal,coal,2010,PM10,0.093662835 +DC,industrial fuel use,coal,coal,2015,PM10,0.100887759 +DC,industrial fuel use,coal,coal,2020,PM10,0.094503476 +DC,industrial fuel use,coal,coal,2025,PM10,0.09752377 +DC,industrial fuel use,coal,coal,2030,PM10,0.099823133 +DC,industrial fuel use,coal,coal,2035,PM10,0.101097535 +DC,industrial fuel use,coal,coal,2040,PM10,0.102438117 +DC,industrial fuel use,coal,coal,2045,PM10,0.103553978 +DC,industrial fuel use,coal,coal,2050,PM10,0.105393893 +DC,industrial fuel use,coal,coal,2055,PM10,0.106304221 +DC,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +DC,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +DC,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +DC,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +DC,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +DC,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +DC,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +DC,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +DC,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +DC,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +DC,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +DC,industrial fuel use,gas,gas,2005,PM10,0.002144603 +DC,industrial fuel use,gas,gas,2010,PM10,0.004157892 +DC,industrial fuel use,gas,gas,2015,PM10,0.004308637 +DC,industrial fuel use,gas,gas,2020,PM10,0.004261296 +DC,industrial fuel use,gas,gas,2025,PM10,0.004334357 +DC,industrial fuel use,gas,gas,2030,PM10,0.00454497 +DC,industrial fuel use,gas,gas,2035,PM10,0.004581054 +DC,industrial fuel use,gas,gas,2040,PM10,0.004690204 +DC,industrial fuel use,gas,gas,2045,PM10,0.004695842 +DC,industrial fuel use,gas,gas,2050,PM10,0.004649052 +DC,industrial fuel use,gas,gas,2055,PM10,0.00454824 +DC,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +DC,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +DC,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +DC,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +DC,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +DC,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +DC,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +DC,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +DC,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +DC,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +DC,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +DC,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +DC,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +DC,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +DC,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +DC,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +DC,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +DC,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +DC,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +DC,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +DC,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +DC,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +DC,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +DC,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +DC,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +DC,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +DC,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +DC,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +DC,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +DC,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +DC,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +DC,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +DC,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +DC,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +DC,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +DC,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +DC,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +DC,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +DC,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +DC,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +DC,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +DC,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +DC,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +DC,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +DC,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +DC,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +DC,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +DC,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +DC,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +DC,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +DC,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +DC,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +DC,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +DC,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +DC,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +DC,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +DC,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +DC,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +DC,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +DC,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +DC,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +DC,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +DC,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +DC,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +DC,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +DC,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +DC,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +DC,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +DC,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +DC,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +DC,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +DC,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +DC,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +DC,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +DC,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +DC,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +DC,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +DC,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +DC,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +DC,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +DC,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +DC,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +DC,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +DC,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +DC,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +DC,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +DC,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +DC,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +DC,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +DC,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +DC,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +DC,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +DC,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +DC,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +DC,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +DC,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +DC,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +DC,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +DC,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +DC,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +DC,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +DC,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +DC,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +DC,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +DC,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +DC,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +DC,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +DC,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +DC,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +DC,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +DC,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +DC,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +DC,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +DC,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +DC,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +DC,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +DC,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +DC,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +DC,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +DC,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +DC,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +DC,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +DC,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +DC,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +DC,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +DC,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +DC,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +DC,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +DC,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +DC,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +DC,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +DC,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +DC,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +DC,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +DC,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +DC,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +DC,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +DC,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +DC,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +DC,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +DC,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +DC,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +DC,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +DC,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +DC,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +DC,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +DC,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +DC,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +DC,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +DC,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +DC,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +DC,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +DC,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +DC,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +DC,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +DC,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +DC,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +DC,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +DC,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +DC,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +DC,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +DC,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +DC,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +DC,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +DC,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +DC,industrial fuel use,coal,coal,2005,CO,0.069434106 +DC,industrial fuel use,coal,coal,2010,CO,0.07723114 +DC,industrial fuel use,coal,coal,2015,CO,0.068281575 +DC,industrial fuel use,coal,coal,2020,CO,0.063753622 +DC,industrial fuel use,coal,coal,2025,CO,0.065761399 +DC,industrial fuel use,coal,coal,2030,CO,0.067959367 +DC,industrial fuel use,coal,coal,2035,CO,0.069173462 +DC,industrial fuel use,coal,coal,2040,CO,0.070202866 +DC,industrial fuel use,coal,coal,2045,CO,0.071098148 +DC,industrial fuel use,coal,coal,2050,CO,0.072063393 +DC,industrial fuel use,coal,coal,2055,CO,0.072511454 +DC,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +DC,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +DC,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +DC,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +DC,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +DC,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +DC,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +DC,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +DC,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +DC,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +DC,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +DC,industrial fuel use,gas,gas,2005,CO,0.054958784 +DC,industrial fuel use,gas,gas,2010,CO,0.041119779 +DC,industrial fuel use,gas,gas,2015,CO,0.037376927 +DC,industrial fuel use,gas,gas,2020,CO,0.042196984 +DC,industrial fuel use,gas,gas,2025,CO,0.046340259 +DC,industrial fuel use,gas,gas,2030,CO,0.051044751 +DC,industrial fuel use,gas,gas,2035,CO,0.048377476 +DC,industrial fuel use,gas,gas,2040,CO,0.04844371 +DC,industrial fuel use,gas,gas,2045,CO,0.049325699 +DC,industrial fuel use,gas,gas,2050,CO,0.048085677 +DC,industrial fuel use,gas,gas,2055,CO,0.046506083 +DC,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +DC,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +DC,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +DC,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +DC,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +DC,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +DC,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +DC,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +DC,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +DC,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +DC,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +DC,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +DC,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +DC,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +DC,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +DC,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +DC,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +DC,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +DC,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +DC,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +DC,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +DC,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +DC,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +DC,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +DC,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +DC,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +DC,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +DC,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +DC,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +DC,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +DC,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +DC,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +DC,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +DC,industrial fuel use,coal,coal,2005,CH4,0.008615911 +DC,industrial fuel use,coal,coal,2010,CH4,0.007087118 +DC,industrial fuel use,coal,coal,2015,CH4,0.007645512 +DC,industrial fuel use,coal,coal,2020,CH4,0.007093206 +DC,industrial fuel use,coal,coal,2025,CH4,0.007280827 +DC,industrial fuel use,coal,coal,2030,CH4,0.007426545 +DC,industrial fuel use,coal,coal,2035,CH4,0.007524098 +DC,industrial fuel use,coal,coal,2040,CH4,0.007621441 +DC,industrial fuel use,coal,coal,2045,CH4,0.007691307 +DC,industrial fuel use,coal,coal,2050,CH4,0.007801358 +DC,industrial fuel use,coal,coal,2055,CH4,0.007871907 +DC,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +DC,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +DC,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +DC,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +DC,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +DC,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +DC,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +DC,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +DC,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +DC,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +DC,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +DC,industrial fuel use,gas,gas,2005,CH4,0.002575726 +DC,industrial fuel use,gas,gas,2010,CH4,0.0036902 +DC,industrial fuel use,gas,gas,2015,CH4,0.001847174 +DC,industrial fuel use,gas,gas,2020,CH4,0.002575374 +DC,industrial fuel use,gas,gas,2025,CH4,0.002470739 +DC,industrial fuel use,gas,gas,2030,CH4,0.002514812 +DC,industrial fuel use,gas,gas,2035,CH4,0.004402202 +DC,industrial fuel use,gas,gas,2040,CH4,0.005194877 +DC,industrial fuel use,gas,gas,2045,CH4,0.005264291 +DC,industrial fuel use,gas,gas,2050,CH4,0.006086388 +DC,industrial fuel use,gas,gas,2055,CH4,0.006850703 +DC,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +DC,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +DC,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +DC,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +DC,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +DC,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +DC,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +DC,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +DC,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +DC,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +DC,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +DC,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +DC,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +DC,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +DC,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +DC,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +DC,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +DC,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +DC,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +DC,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +DC,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +DC,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +DC,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +DC,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +DC,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +DC,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +DC,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +DC,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +DC,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +DC,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +DC,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +DC,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +DC,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +DC,industrial fuel use,coal,coal,2005,N2O,0.002945881 +DC,industrial fuel use,coal,coal,2010,N2O,0.004699422 +DC,industrial fuel use,coal,coal,2015,N2O,0.003718249 +DC,industrial fuel use,coal,coal,2020,N2O,0.003503987 +DC,industrial fuel use,coal,coal,2025,N2O,0.003902448 +DC,industrial fuel use,coal,coal,2030,N2O,0.005231917 +DC,industrial fuel use,coal,coal,2035,N2O,0.005844861 +DC,industrial fuel use,coal,coal,2040,N2O,0.006123209 +DC,industrial fuel use,coal,coal,2045,N2O,0.006493024 +DC,industrial fuel use,coal,coal,2050,N2O,0.00643187 +DC,industrial fuel use,coal,coal,2055,N2O,0.006580646 +DC,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +DC,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +DC,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +DC,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +DC,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +DC,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +DC,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +DC,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +DC,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +DC,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +DC,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +DC,industrial fuel use,gas,gas,2005,N2O,0.000509795 +DC,industrial fuel use,gas,gas,2010,N2O,0.000459136 +DC,industrial fuel use,gas,gas,2015,N2O,0.000457847 +DC,industrial fuel use,gas,gas,2020,N2O,0.000469807 +DC,industrial fuel use,gas,gas,2025,N2O,0.0004748 +DC,industrial fuel use,gas,gas,2030,N2O,0.000493269 +DC,industrial fuel use,gas,gas,2035,N2O,0.0005142 +DC,industrial fuel use,gas,gas,2040,N2O,0.000525413 +DC,industrial fuel use,gas,gas,2045,N2O,0.000530678 +DC,industrial fuel use,gas,gas,2050,N2O,0.000534097 +DC,industrial fuel use,gas,gas,2055,N2O,0.000535185 +DC,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +DC,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +DC,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +DC,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +DC,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +DC,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +DC,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +DC,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +DC,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +DC,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +DC,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +DC,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +DC,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +DC,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +DC,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +DC,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +DC,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +DC,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +DC,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +DC,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +DC,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +DC,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +DC,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +DC,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +DC,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +DC,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +DC,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +DC,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +DC,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +DC,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +DC,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +DC,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +DC,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +DC,industrial fuel use,coal,coal,2005,BC,0.052178527 +DC,industrial fuel use,coal,coal,2010,BC,0.054113893 +DC,industrial fuel use,coal,coal,2015,BC,0.054816673 +DC,industrial fuel use,coal,coal,2020,BC,0.051442317 +DC,industrial fuel use,coal,coal,2025,BC,0.05280003 +DC,industrial fuel use,coal,coal,2030,BC,0.054819383 +DC,industrial fuel use,coal,coal,2035,BC,0.055934389 +DC,industrial fuel use,coal,coal,2040,BC,0.056737391 +DC,industrial fuel use,coal,coal,2045,BC,0.057341111 +DC,industrial fuel use,coal,coal,2050,BC,0.057867944 +DC,industrial fuel use,coal,coal,2055,BC,0.058307588 +DC,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +DC,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +DC,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +DC,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +DC,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +DC,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +DC,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +DC,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +DC,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +DC,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +DC,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +DC,industrial fuel use,gas,gas,2005,BC,0.000879555 +DC,industrial fuel use,gas,gas,2010,BC,0.000594596 +DC,industrial fuel use,gas,gas,2015,BC,0.000780779 +DC,industrial fuel use,gas,gas,2020,BC,0.000758542 +DC,industrial fuel use,gas,gas,2025,BC,0.000791704 +DC,industrial fuel use,gas,gas,2030,BC,0.000829295 +DC,industrial fuel use,gas,gas,2035,BC,0.000745895 +DC,industrial fuel use,gas,gas,2040,BC,0.000739727 +DC,industrial fuel use,gas,gas,2045,BC,0.000759191 +DC,industrial fuel use,gas,gas,2050,BC,0.000728476 +DC,industrial fuel use,gas,gas,2055,BC,0.000688571 +DC,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +DC,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +DC,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +DC,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +DC,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +DC,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +DC,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +DC,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +DC,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +DC,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +DC,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +DC,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +DC,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +DC,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +DC,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +DC,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +DC,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +DC,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +DC,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +DC,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +DC,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +DC,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +DC,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +DC,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +DC,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +DC,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +DC,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +DC,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +DC,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +DC,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +DC,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +DC,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +DC,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +DC,industrial fuel use,coal,coal,2005,OC,0.004608879 +DC,industrial fuel use,coal,coal,2010,OC,0.004949044 +DC,industrial fuel use,coal,coal,2015,OC,0.005291355 +DC,industrial fuel use,coal,coal,2020,OC,0.005047635 +DC,industrial fuel use,coal,coal,2025,OC,0.005240698 +DC,industrial fuel use,coal,coal,2030,OC,0.005398598 +DC,industrial fuel use,coal,coal,2035,OC,0.005483036 +DC,industrial fuel use,coal,coal,2040,OC,0.005583473 +DC,industrial fuel use,coal,coal,2045,OC,0.005638434 +DC,industrial fuel use,coal,coal,2050,OC,0.005723515 +DC,industrial fuel use,coal,coal,2055,OC,0.005777195 +DC,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +DC,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +DC,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +DC,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +DC,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +DC,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +DC,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +DC,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +DC,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +DC,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +DC,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +DC,industrial fuel use,gas,gas,2005,OC,0.000586894 +DC,industrial fuel use,gas,gas,2010,OC,0.000538986 +DC,industrial fuel use,gas,gas,2015,OC,0.000406177 +DC,industrial fuel use,gas,gas,2020,OC,0.000436774 +DC,industrial fuel use,gas,gas,2025,OC,0.000431434 +DC,industrial fuel use,gas,gas,2030,OC,0.000454497 +DC,industrial fuel use,gas,gas,2035,OC,0.0005142 +DC,industrial fuel use,gas,gas,2040,OC,0.000542203 +DC,industrial fuel use,gas,gas,2045,OC,0.0005354 +DC,industrial fuel use,gas,gas,2050,OC,0.000552822 +DC,industrial fuel use,gas,gas,2055,OC,0.000563528 +DC,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +DC,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +DC,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +DC,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +DC,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +DC,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +DC,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +DC,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +DC,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +DC,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +DC,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +DC,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +DC,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +DC,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +DC,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +DC,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +DC,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +DC,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +DC,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +DC,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +DC,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +DC,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +DC,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +DC,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +DC,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +DC,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +DC,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +DC,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +DC,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +DC,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +DC,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +DC,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +DC,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +DC,industrial fuel use,coal,coal,2005,CO2,0.022413751 +DC,industrial fuel use,coal,coal,2010,CO2,0.023247485 +DC,industrial fuel use,coal,coal,2015,CO2,0.023542577 +DC,industrial fuel use,coal,coal,2020,CO2,0.022100946 +DC,industrial fuel use,coal,coal,2025,CO2,0.022682182 +DC,industrial fuel use,coal,coal,2030,CO2,0.023544891 +DC,industrial fuel use,coal,coal,2035,CO2,0.024022124 +DC,industrial fuel use,coal,coal,2040,CO2,0.024371859 +DC,industrial fuel use,coal,coal,2045,CO2,0.024626877 +DC,industrial fuel use,coal,coal,2050,CO2,0.024861999 +DC,industrial fuel use,coal,coal,2055,CO2,0.025047846 +DC,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +DC,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +DC,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +DC,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +DC,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +DC,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +DC,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +DC,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +DC,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +DC,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +DC,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +DC,industrial fuel use,gas,gas,2005,CO2,0.010100215 +DC,industrial fuel use,gas,gas,2010,CO2,0.008735772 +DC,industrial fuel use,gas,gas,2015,CO2,0.008975567 +DC,industrial fuel use,gas,gas,2020,CO2,0.009141549 +DC,industrial fuel use,gas,gas,2025,CO2,0.009319403 +DC,industrial fuel use,gas,gas,2030,CO2,0.009661635 +DC,industrial fuel use,gas,gas,2035,CO2,0.009858394 +DC,industrial fuel use,gas,gas,2040,CO2,0.010090146 +DC,industrial fuel use,gas,gas,2045,CO2,0.010177486 +DC,industrial fuel use,gas,gas,2050,CO2,0.010210503 +DC,industrial fuel use,gas,gas,2055,CO2,0.010168744 +DC,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +DC,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +DC,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +DC,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +DC,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +DC,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +DC,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +DC,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +DC,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +DC,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +DC,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +DC,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +DC,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +DC,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +DC,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +DC,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +DC,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +DC,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +DC,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +DC,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +DC,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +DC,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +DC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +DC,industrial fuel use,biomass,biomass,2005,CO2,0 +DC,industrial fuel use,biomass,biomass,2010,CO2,0 +DC,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +DC,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +DC,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +DC,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +DC,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +DC,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +DC,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +DC,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +DC,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +DC,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +DC,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +DC,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +DC,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +DC,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +DC,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +DC,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +DC,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +DC,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +DC,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +DC,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +DE,industrial fuel use,coal,coal,2005,NOx,0.261565752 +DE,industrial fuel use,coal,coal,2010,NOx,0.24128762 +DE,industrial fuel use,coal,coal,2015,NOx,0.247879608 +DE,industrial fuel use,coal,coal,2020,NOx,0.234312556 +DE,industrial fuel use,coal,coal,2025,NOx,0.240398293 +DE,industrial fuel use,coal,coal,2030,NOx,0.246677964 +DE,industrial fuel use,coal,coal,2035,NOx,0.250299201 +DE,industrial fuel use,coal,coal,2040,NOx,0.253554811 +DE,industrial fuel use,coal,coal,2045,NOx,0.255578056 +DE,industrial fuel use,coal,coal,2050,NOx,0.258549854 +DE,industrial fuel use,coal,coal,2055,NOx,0.26014596 +DE,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +DE,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +DE,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +DE,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +DE,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +DE,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +DE,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +DE,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +DE,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +DE,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +DE,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +DE,industrial fuel use,gas,gas,2005,NOx,0.080919016 +DE,industrial fuel use,gas,gas,2010,NOx,0.044952568 +DE,industrial fuel use,gas,gas,2015,NOx,0.037239142 +DE,industrial fuel use,gas,gas,2020,NOx,0.040745965 +DE,industrial fuel use,gas,gas,2025,NOx,0.042574105 +DE,industrial fuel use,gas,gas,2030,NOx,0.045347383 +DE,industrial fuel use,gas,gas,2035,NOx,0.048574619 +DE,industrial fuel use,gas,gas,2040,NOx,0.050422899 +DE,industrial fuel use,gas,gas,2045,NOx,0.050680722 +DE,industrial fuel use,gas,gas,2050,NOx,0.0517343 +DE,industrial fuel use,gas,gas,2055,NOx,0.052443137 +DE,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +DE,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +DE,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +DE,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +DE,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +DE,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +DE,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +DE,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +DE,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +DE,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +DE,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +DE,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +DE,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +DE,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +DE,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +DE,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +DE,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +DE,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +DE,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +DE,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +DE,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +DE,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +DE,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +DE,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +DE,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +DE,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +DE,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +DE,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +DE,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +DE,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +DE,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +DE,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +DE,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +DE,industrial fuel use,coal,coal,2005,SO2,0.709862367 +DE,industrial fuel use,coal,coal,2010,SO2,0.679592789 +DE,industrial fuel use,coal,coal,2015,SO2,0.590904591 +DE,industrial fuel use,coal,coal,2020,SO2,0.549595621 +DE,industrial fuel use,coal,coal,2025,SO2,0.56430149 +DE,industrial fuel use,coal,coal,2030,SO2,0.576548046 +DE,industrial fuel use,coal,coal,2035,SO2,0.583595424 +DE,industrial fuel use,coal,coal,2040,SO2,0.590805881 +DE,industrial fuel use,coal,coal,2045,SO2,0.596410723 +DE,industrial fuel use,coal,coal,2050,SO2,0.606154195 +DE,industrial fuel use,coal,coal,2055,SO2,0.611234923 +DE,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +DE,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +DE,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +DE,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +DE,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +DE,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +DE,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +DE,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +DE,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +DE,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +DE,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +DE,industrial fuel use,gas,gas,2005,SO2,0.000213988 +DE,industrial fuel use,gas,gas,2010,SO2,0.002761946 +DE,industrial fuel use,gas,gas,2015,SO2,0.002854723 +DE,industrial fuel use,gas,gas,2020,SO2,0.002771127 +DE,industrial fuel use,gas,gas,2025,SO2,0.002798763 +DE,industrial fuel use,gas,gas,2030,SO2,0.002938075 +DE,industrial fuel use,gas,gas,2035,SO2,0.003016098 +DE,industrial fuel use,gas,gas,2040,SO2,0.003118901 +DE,industrial fuel use,gas,gas,2045,SO2,0.00311325 +DE,industrial fuel use,gas,gas,2050,SO2,0.003090451 +DE,industrial fuel use,gas,gas,2055,SO2,0.003025213 +DE,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +DE,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +DE,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +DE,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +DE,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +DE,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +DE,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +DE,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +DE,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +DE,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +DE,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +DE,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +DE,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +DE,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +DE,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +DE,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +DE,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +DE,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +DE,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +DE,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +DE,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +DE,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +DE,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +DE,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +DE,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +DE,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +DE,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +DE,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +DE,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +DE,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +DE,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +DE,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +DE,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +DE,industrial fuel use,coal,coal,2005,PM10,0.136452905 +DE,industrial fuel use,coal,coal,2010,PM10,0.093662835 +DE,industrial fuel use,coal,coal,2015,PM10,0.100887759 +DE,industrial fuel use,coal,coal,2020,PM10,0.094503476 +DE,industrial fuel use,coal,coal,2025,PM10,0.09752377 +DE,industrial fuel use,coal,coal,2030,PM10,0.099823133 +DE,industrial fuel use,coal,coal,2035,PM10,0.101097535 +DE,industrial fuel use,coal,coal,2040,PM10,0.102438117 +DE,industrial fuel use,coal,coal,2045,PM10,0.103553978 +DE,industrial fuel use,coal,coal,2050,PM10,0.105393893 +DE,industrial fuel use,coal,coal,2055,PM10,0.106304221 +DE,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +DE,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +DE,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +DE,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +DE,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +DE,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +DE,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +DE,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +DE,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +DE,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +DE,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +DE,industrial fuel use,gas,gas,2005,PM10,0.002144603 +DE,industrial fuel use,gas,gas,2010,PM10,0.004157892 +DE,industrial fuel use,gas,gas,2015,PM10,0.004308637 +DE,industrial fuel use,gas,gas,2020,PM10,0.004261296 +DE,industrial fuel use,gas,gas,2025,PM10,0.004334357 +DE,industrial fuel use,gas,gas,2030,PM10,0.00454497 +DE,industrial fuel use,gas,gas,2035,PM10,0.004581054 +DE,industrial fuel use,gas,gas,2040,PM10,0.004690204 +DE,industrial fuel use,gas,gas,2045,PM10,0.004695842 +DE,industrial fuel use,gas,gas,2050,PM10,0.004649052 +DE,industrial fuel use,gas,gas,2055,PM10,0.00454824 +DE,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +DE,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +DE,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +DE,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +DE,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +DE,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +DE,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +DE,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +DE,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +DE,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +DE,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +DE,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +DE,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +DE,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +DE,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +DE,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +DE,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +DE,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +DE,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +DE,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +DE,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +DE,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +DE,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +DE,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +DE,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +DE,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +DE,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +DE,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +DE,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +DE,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +DE,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +DE,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +DE,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +DE,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +DE,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +DE,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +DE,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +DE,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +DE,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +DE,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +DE,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +DE,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +DE,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +DE,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +DE,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +DE,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +DE,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +DE,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +DE,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +DE,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +DE,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +DE,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +DE,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +DE,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +DE,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +DE,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +DE,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +DE,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +DE,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +DE,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +DE,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +DE,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +DE,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +DE,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +DE,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +DE,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +DE,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +DE,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +DE,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +DE,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +DE,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +DE,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +DE,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +DE,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +DE,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +DE,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +DE,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +DE,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +DE,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +DE,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +DE,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +DE,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +DE,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +DE,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +DE,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +DE,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +DE,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +DE,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +DE,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +DE,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +DE,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +DE,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +DE,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +DE,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +DE,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +DE,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +DE,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +DE,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +DE,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +DE,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +DE,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +DE,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +DE,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +DE,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +DE,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +DE,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +DE,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +DE,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +DE,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +DE,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +DE,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +DE,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +DE,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +DE,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +DE,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +DE,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +DE,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +DE,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +DE,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +DE,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +DE,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +DE,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +DE,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +DE,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +DE,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +DE,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +DE,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +DE,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +DE,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +DE,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +DE,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +DE,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +DE,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +DE,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +DE,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +DE,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +DE,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +DE,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +DE,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +DE,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +DE,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +DE,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +DE,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +DE,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +DE,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +DE,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +DE,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +DE,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +DE,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +DE,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +DE,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +DE,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +DE,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +DE,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +DE,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +DE,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +DE,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +DE,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +DE,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +DE,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +DE,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +DE,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +DE,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +DE,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +DE,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +DE,industrial fuel use,coal,coal,2005,CO,0.069434106 +DE,industrial fuel use,coal,coal,2010,CO,0.07723114 +DE,industrial fuel use,coal,coal,2015,CO,0.068281575 +DE,industrial fuel use,coal,coal,2020,CO,0.063753622 +DE,industrial fuel use,coal,coal,2025,CO,0.065761399 +DE,industrial fuel use,coal,coal,2030,CO,0.067959367 +DE,industrial fuel use,coal,coal,2035,CO,0.069173462 +DE,industrial fuel use,coal,coal,2040,CO,0.070202866 +DE,industrial fuel use,coal,coal,2045,CO,0.071098148 +DE,industrial fuel use,coal,coal,2050,CO,0.072063393 +DE,industrial fuel use,coal,coal,2055,CO,0.072511454 +DE,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +DE,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +DE,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +DE,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +DE,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +DE,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +DE,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +DE,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +DE,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +DE,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +DE,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +DE,industrial fuel use,gas,gas,2005,CO,0.054958784 +DE,industrial fuel use,gas,gas,2010,CO,0.041119779 +DE,industrial fuel use,gas,gas,2015,CO,0.037376927 +DE,industrial fuel use,gas,gas,2020,CO,0.042196984 +DE,industrial fuel use,gas,gas,2025,CO,0.046340259 +DE,industrial fuel use,gas,gas,2030,CO,0.051044751 +DE,industrial fuel use,gas,gas,2035,CO,0.048377476 +DE,industrial fuel use,gas,gas,2040,CO,0.04844371 +DE,industrial fuel use,gas,gas,2045,CO,0.049325699 +DE,industrial fuel use,gas,gas,2050,CO,0.048085677 +DE,industrial fuel use,gas,gas,2055,CO,0.046506083 +DE,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +DE,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +DE,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +DE,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +DE,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +DE,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +DE,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +DE,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +DE,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +DE,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +DE,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +DE,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +DE,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +DE,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +DE,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +DE,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +DE,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +DE,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +DE,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +DE,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +DE,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +DE,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +DE,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +DE,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +DE,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +DE,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +DE,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +DE,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +DE,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +DE,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +DE,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +DE,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +DE,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +DE,industrial fuel use,coal,coal,2005,CH4,0.008615911 +DE,industrial fuel use,coal,coal,2010,CH4,0.007087118 +DE,industrial fuel use,coal,coal,2015,CH4,0.007645512 +DE,industrial fuel use,coal,coal,2020,CH4,0.007093206 +DE,industrial fuel use,coal,coal,2025,CH4,0.007280827 +DE,industrial fuel use,coal,coal,2030,CH4,0.007426545 +DE,industrial fuel use,coal,coal,2035,CH4,0.007524098 +DE,industrial fuel use,coal,coal,2040,CH4,0.007621441 +DE,industrial fuel use,coal,coal,2045,CH4,0.007691307 +DE,industrial fuel use,coal,coal,2050,CH4,0.007801358 +DE,industrial fuel use,coal,coal,2055,CH4,0.007871907 +DE,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +DE,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +DE,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +DE,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +DE,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +DE,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +DE,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +DE,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +DE,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +DE,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +DE,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +DE,industrial fuel use,gas,gas,2005,CH4,0.002575726 +DE,industrial fuel use,gas,gas,2010,CH4,0.0036902 +DE,industrial fuel use,gas,gas,2015,CH4,0.001847174 +DE,industrial fuel use,gas,gas,2020,CH4,0.002575374 +DE,industrial fuel use,gas,gas,2025,CH4,0.002470739 +DE,industrial fuel use,gas,gas,2030,CH4,0.002514812 +DE,industrial fuel use,gas,gas,2035,CH4,0.004402202 +DE,industrial fuel use,gas,gas,2040,CH4,0.005194877 +DE,industrial fuel use,gas,gas,2045,CH4,0.005264291 +DE,industrial fuel use,gas,gas,2050,CH4,0.006086388 +DE,industrial fuel use,gas,gas,2055,CH4,0.006850703 +DE,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +DE,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +DE,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +DE,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +DE,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +DE,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +DE,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +DE,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +DE,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +DE,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +DE,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +DE,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +DE,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +DE,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +DE,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +DE,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +DE,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +DE,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +DE,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +DE,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +DE,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +DE,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +DE,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +DE,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +DE,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +DE,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +DE,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +DE,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +DE,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +DE,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +DE,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +DE,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +DE,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +DE,industrial fuel use,coal,coal,2005,N2O,0.002945881 +DE,industrial fuel use,coal,coal,2010,N2O,0.004699422 +DE,industrial fuel use,coal,coal,2015,N2O,0.003718249 +DE,industrial fuel use,coal,coal,2020,N2O,0.003503987 +DE,industrial fuel use,coal,coal,2025,N2O,0.003902448 +DE,industrial fuel use,coal,coal,2030,N2O,0.005231917 +DE,industrial fuel use,coal,coal,2035,N2O,0.005844861 +DE,industrial fuel use,coal,coal,2040,N2O,0.006123209 +DE,industrial fuel use,coal,coal,2045,N2O,0.006493024 +DE,industrial fuel use,coal,coal,2050,N2O,0.00643187 +DE,industrial fuel use,coal,coal,2055,N2O,0.006580646 +DE,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +DE,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +DE,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +DE,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +DE,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +DE,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +DE,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +DE,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +DE,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +DE,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +DE,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +DE,industrial fuel use,gas,gas,2005,N2O,0.000509795 +DE,industrial fuel use,gas,gas,2010,N2O,0.000459136 +DE,industrial fuel use,gas,gas,2015,N2O,0.000457847 +DE,industrial fuel use,gas,gas,2020,N2O,0.000469807 +DE,industrial fuel use,gas,gas,2025,N2O,0.0004748 +DE,industrial fuel use,gas,gas,2030,N2O,0.000493269 +DE,industrial fuel use,gas,gas,2035,N2O,0.0005142 +DE,industrial fuel use,gas,gas,2040,N2O,0.000525413 +DE,industrial fuel use,gas,gas,2045,N2O,0.000530678 +DE,industrial fuel use,gas,gas,2050,N2O,0.000534097 +DE,industrial fuel use,gas,gas,2055,N2O,0.000535185 +DE,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +DE,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +DE,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +DE,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +DE,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +DE,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +DE,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +DE,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +DE,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +DE,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +DE,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +DE,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +DE,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +DE,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +DE,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +DE,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +DE,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +DE,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +DE,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +DE,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +DE,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +DE,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +DE,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +DE,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +DE,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +DE,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +DE,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +DE,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +DE,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +DE,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +DE,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +DE,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +DE,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +DE,industrial fuel use,coal,coal,2005,BC,0.052178527 +DE,industrial fuel use,coal,coal,2010,BC,0.054113893 +DE,industrial fuel use,coal,coal,2015,BC,0.054816673 +DE,industrial fuel use,coal,coal,2020,BC,0.051442317 +DE,industrial fuel use,coal,coal,2025,BC,0.05280003 +DE,industrial fuel use,coal,coal,2030,BC,0.054819383 +DE,industrial fuel use,coal,coal,2035,BC,0.055934389 +DE,industrial fuel use,coal,coal,2040,BC,0.056737391 +DE,industrial fuel use,coal,coal,2045,BC,0.057341111 +DE,industrial fuel use,coal,coal,2050,BC,0.057867944 +DE,industrial fuel use,coal,coal,2055,BC,0.058307588 +DE,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +DE,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +DE,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +DE,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +DE,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +DE,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +DE,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +DE,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +DE,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +DE,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +DE,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +DE,industrial fuel use,gas,gas,2005,BC,0.000879555 +DE,industrial fuel use,gas,gas,2010,BC,0.000594596 +DE,industrial fuel use,gas,gas,2015,BC,0.000780779 +DE,industrial fuel use,gas,gas,2020,BC,0.000758542 +DE,industrial fuel use,gas,gas,2025,BC,0.000791704 +DE,industrial fuel use,gas,gas,2030,BC,0.000829295 +DE,industrial fuel use,gas,gas,2035,BC,0.000745895 +DE,industrial fuel use,gas,gas,2040,BC,0.000739727 +DE,industrial fuel use,gas,gas,2045,BC,0.000759191 +DE,industrial fuel use,gas,gas,2050,BC,0.000728476 +DE,industrial fuel use,gas,gas,2055,BC,0.000688571 +DE,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +DE,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +DE,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +DE,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +DE,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +DE,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +DE,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +DE,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +DE,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +DE,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +DE,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +DE,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +DE,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +DE,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +DE,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +DE,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +DE,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +DE,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +DE,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +DE,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +DE,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +DE,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +DE,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +DE,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +DE,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +DE,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +DE,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +DE,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +DE,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +DE,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +DE,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +DE,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +DE,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +DE,industrial fuel use,coal,coal,2005,OC,0.004608879 +DE,industrial fuel use,coal,coal,2010,OC,0.004949044 +DE,industrial fuel use,coal,coal,2015,OC,0.005291355 +DE,industrial fuel use,coal,coal,2020,OC,0.005047635 +DE,industrial fuel use,coal,coal,2025,OC,0.005240698 +DE,industrial fuel use,coal,coal,2030,OC,0.005398598 +DE,industrial fuel use,coal,coal,2035,OC,0.005483036 +DE,industrial fuel use,coal,coal,2040,OC,0.005583473 +DE,industrial fuel use,coal,coal,2045,OC,0.005638434 +DE,industrial fuel use,coal,coal,2050,OC,0.005723515 +DE,industrial fuel use,coal,coal,2055,OC,0.005777195 +DE,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +DE,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +DE,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +DE,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +DE,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +DE,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +DE,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +DE,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +DE,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +DE,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +DE,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +DE,industrial fuel use,gas,gas,2005,OC,0.000586894 +DE,industrial fuel use,gas,gas,2010,OC,0.000538986 +DE,industrial fuel use,gas,gas,2015,OC,0.000406177 +DE,industrial fuel use,gas,gas,2020,OC,0.000436774 +DE,industrial fuel use,gas,gas,2025,OC,0.000431434 +DE,industrial fuel use,gas,gas,2030,OC,0.000454497 +DE,industrial fuel use,gas,gas,2035,OC,0.0005142 +DE,industrial fuel use,gas,gas,2040,OC,0.000542203 +DE,industrial fuel use,gas,gas,2045,OC,0.0005354 +DE,industrial fuel use,gas,gas,2050,OC,0.000552822 +DE,industrial fuel use,gas,gas,2055,OC,0.000563528 +DE,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +DE,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +DE,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +DE,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +DE,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +DE,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +DE,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +DE,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +DE,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +DE,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +DE,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +DE,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +DE,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +DE,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +DE,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +DE,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +DE,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +DE,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +DE,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +DE,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +DE,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +DE,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +DE,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +DE,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +DE,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +DE,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +DE,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +DE,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +DE,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +DE,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +DE,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +DE,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +DE,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +DE,industrial fuel use,coal,coal,2005,CO2,0.022413751 +DE,industrial fuel use,coal,coal,2010,CO2,0.023247485 +DE,industrial fuel use,coal,coal,2015,CO2,0.023542577 +DE,industrial fuel use,coal,coal,2020,CO2,0.022100946 +DE,industrial fuel use,coal,coal,2025,CO2,0.022682182 +DE,industrial fuel use,coal,coal,2030,CO2,0.023544891 +DE,industrial fuel use,coal,coal,2035,CO2,0.024022124 +DE,industrial fuel use,coal,coal,2040,CO2,0.024371859 +DE,industrial fuel use,coal,coal,2045,CO2,0.024626877 +DE,industrial fuel use,coal,coal,2050,CO2,0.024861999 +DE,industrial fuel use,coal,coal,2055,CO2,0.025047846 +DE,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +DE,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +DE,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +DE,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +DE,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +DE,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +DE,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +DE,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +DE,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +DE,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +DE,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +DE,industrial fuel use,gas,gas,2005,CO2,0.010100215 +DE,industrial fuel use,gas,gas,2010,CO2,0.008735772 +DE,industrial fuel use,gas,gas,2015,CO2,0.008975567 +DE,industrial fuel use,gas,gas,2020,CO2,0.009141549 +DE,industrial fuel use,gas,gas,2025,CO2,0.009319403 +DE,industrial fuel use,gas,gas,2030,CO2,0.009661635 +DE,industrial fuel use,gas,gas,2035,CO2,0.009858394 +DE,industrial fuel use,gas,gas,2040,CO2,0.010090146 +DE,industrial fuel use,gas,gas,2045,CO2,0.010177486 +DE,industrial fuel use,gas,gas,2050,CO2,0.010210503 +DE,industrial fuel use,gas,gas,2055,CO2,0.010168744 +DE,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +DE,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +DE,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +DE,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +DE,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +DE,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +DE,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +DE,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +DE,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +DE,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +DE,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +DE,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +DE,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +DE,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +DE,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +DE,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +DE,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +DE,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +DE,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +DE,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +DE,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +DE,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +DE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +DE,industrial fuel use,biomass,biomass,2005,CO2,0 +DE,industrial fuel use,biomass,biomass,2010,CO2,0 +DE,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +DE,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +DE,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +DE,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +DE,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +DE,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +DE,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +DE,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +DE,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +DE,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +DE,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +DE,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +DE,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +DE,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +DE,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +DE,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +DE,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +DE,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +DE,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +DE,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +FL,industrial fuel use,coal,coal,2005,NOx,0.261565752 +FL,industrial fuel use,coal,coal,2010,NOx,0.24128762 +FL,industrial fuel use,coal,coal,2015,NOx,0.247879608 +FL,industrial fuel use,coal,coal,2020,NOx,0.234312556 +FL,industrial fuel use,coal,coal,2025,NOx,0.240398293 +FL,industrial fuel use,coal,coal,2030,NOx,0.246677964 +FL,industrial fuel use,coal,coal,2035,NOx,0.250299201 +FL,industrial fuel use,coal,coal,2040,NOx,0.253554811 +FL,industrial fuel use,coal,coal,2045,NOx,0.255578056 +FL,industrial fuel use,coal,coal,2050,NOx,0.258549854 +FL,industrial fuel use,coal,coal,2055,NOx,0.26014596 +FL,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +FL,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +FL,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +FL,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +FL,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +FL,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +FL,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +FL,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +FL,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +FL,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +FL,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +FL,industrial fuel use,gas,gas,2005,NOx,0.080919016 +FL,industrial fuel use,gas,gas,2010,NOx,0.044952568 +FL,industrial fuel use,gas,gas,2015,NOx,0.037239142 +FL,industrial fuel use,gas,gas,2020,NOx,0.040745965 +FL,industrial fuel use,gas,gas,2025,NOx,0.042574105 +FL,industrial fuel use,gas,gas,2030,NOx,0.045347383 +FL,industrial fuel use,gas,gas,2035,NOx,0.048574619 +FL,industrial fuel use,gas,gas,2040,NOx,0.050422899 +FL,industrial fuel use,gas,gas,2045,NOx,0.050680722 +FL,industrial fuel use,gas,gas,2050,NOx,0.0517343 +FL,industrial fuel use,gas,gas,2055,NOx,0.052443137 +FL,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +FL,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +FL,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +FL,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +FL,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +FL,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +FL,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +FL,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +FL,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +FL,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +FL,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +FL,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +FL,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +FL,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +FL,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +FL,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +FL,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +FL,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +FL,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +FL,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +FL,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +FL,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +FL,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +FL,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +FL,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +FL,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +FL,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +FL,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +FL,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +FL,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +FL,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +FL,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +FL,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +FL,industrial fuel use,coal,coal,2005,SO2,0.709862367 +FL,industrial fuel use,coal,coal,2010,SO2,0.679592789 +FL,industrial fuel use,coal,coal,2015,SO2,0.590904591 +FL,industrial fuel use,coal,coal,2020,SO2,0.549595621 +FL,industrial fuel use,coal,coal,2025,SO2,0.56430149 +FL,industrial fuel use,coal,coal,2030,SO2,0.576548046 +FL,industrial fuel use,coal,coal,2035,SO2,0.583595424 +FL,industrial fuel use,coal,coal,2040,SO2,0.590805881 +FL,industrial fuel use,coal,coal,2045,SO2,0.596410723 +FL,industrial fuel use,coal,coal,2050,SO2,0.606154195 +FL,industrial fuel use,coal,coal,2055,SO2,0.611234923 +FL,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +FL,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +FL,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +FL,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +FL,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +FL,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +FL,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +FL,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +FL,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +FL,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +FL,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +FL,industrial fuel use,gas,gas,2005,SO2,0.000213988 +FL,industrial fuel use,gas,gas,2010,SO2,0.002761946 +FL,industrial fuel use,gas,gas,2015,SO2,0.002854723 +FL,industrial fuel use,gas,gas,2020,SO2,0.002771127 +FL,industrial fuel use,gas,gas,2025,SO2,0.002798763 +FL,industrial fuel use,gas,gas,2030,SO2,0.002938075 +FL,industrial fuel use,gas,gas,2035,SO2,0.003016098 +FL,industrial fuel use,gas,gas,2040,SO2,0.003118901 +FL,industrial fuel use,gas,gas,2045,SO2,0.00311325 +FL,industrial fuel use,gas,gas,2050,SO2,0.003090451 +FL,industrial fuel use,gas,gas,2055,SO2,0.003025213 +FL,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +FL,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +FL,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +FL,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +FL,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +FL,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +FL,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +FL,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +FL,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +FL,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +FL,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +FL,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +FL,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +FL,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +FL,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +FL,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +FL,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +FL,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +FL,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +FL,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +FL,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +FL,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +FL,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +FL,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +FL,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +FL,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +FL,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +FL,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +FL,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +FL,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +FL,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +FL,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +FL,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +FL,industrial fuel use,coal,coal,2005,PM10,0.136452905 +FL,industrial fuel use,coal,coal,2010,PM10,0.093662835 +FL,industrial fuel use,coal,coal,2015,PM10,0.100887759 +FL,industrial fuel use,coal,coal,2020,PM10,0.094503476 +FL,industrial fuel use,coal,coal,2025,PM10,0.09752377 +FL,industrial fuel use,coal,coal,2030,PM10,0.099823133 +FL,industrial fuel use,coal,coal,2035,PM10,0.101097535 +FL,industrial fuel use,coal,coal,2040,PM10,0.102438117 +FL,industrial fuel use,coal,coal,2045,PM10,0.103553978 +FL,industrial fuel use,coal,coal,2050,PM10,0.105393893 +FL,industrial fuel use,coal,coal,2055,PM10,0.106304221 +FL,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +FL,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +FL,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +FL,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +FL,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +FL,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +FL,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +FL,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +FL,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +FL,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +FL,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +FL,industrial fuel use,gas,gas,2005,PM10,0.002144603 +FL,industrial fuel use,gas,gas,2010,PM10,0.004157892 +FL,industrial fuel use,gas,gas,2015,PM10,0.004308637 +FL,industrial fuel use,gas,gas,2020,PM10,0.004261296 +FL,industrial fuel use,gas,gas,2025,PM10,0.004334357 +FL,industrial fuel use,gas,gas,2030,PM10,0.00454497 +FL,industrial fuel use,gas,gas,2035,PM10,0.004581054 +FL,industrial fuel use,gas,gas,2040,PM10,0.004690204 +FL,industrial fuel use,gas,gas,2045,PM10,0.004695842 +FL,industrial fuel use,gas,gas,2050,PM10,0.004649052 +FL,industrial fuel use,gas,gas,2055,PM10,0.00454824 +FL,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +FL,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +FL,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +FL,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +FL,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +FL,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +FL,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +FL,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +FL,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +FL,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +FL,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +FL,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +FL,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +FL,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +FL,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +FL,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +FL,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +FL,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +FL,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +FL,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +FL,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +FL,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +FL,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +FL,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +FL,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +FL,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +FL,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +FL,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +FL,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +FL,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +FL,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +FL,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +FL,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +FL,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +FL,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +FL,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +FL,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +FL,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +FL,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +FL,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +FL,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +FL,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +FL,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +FL,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +FL,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +FL,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +FL,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +FL,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +FL,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +FL,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +FL,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +FL,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +FL,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +FL,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +FL,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +FL,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +FL,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +FL,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +FL,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +FL,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +FL,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +FL,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +FL,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +FL,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +FL,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +FL,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +FL,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +FL,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +FL,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +FL,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +FL,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +FL,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +FL,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +FL,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +FL,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +FL,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +FL,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +FL,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +FL,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +FL,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +FL,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +FL,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +FL,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +FL,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +FL,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +FL,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +FL,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +FL,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +FL,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +FL,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +FL,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +FL,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +FL,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +FL,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +FL,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +FL,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +FL,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +FL,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +FL,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +FL,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +FL,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +FL,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +FL,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +FL,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +FL,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +FL,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +FL,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +FL,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +FL,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +FL,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +FL,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +FL,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +FL,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +FL,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +FL,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +FL,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +FL,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +FL,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +FL,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +FL,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +FL,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +FL,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +FL,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +FL,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +FL,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +FL,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +FL,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +FL,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +FL,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +FL,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +FL,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +FL,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +FL,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +FL,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +FL,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +FL,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +FL,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +FL,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +FL,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +FL,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +FL,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +FL,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +FL,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +FL,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +FL,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +FL,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +FL,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +FL,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +FL,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +FL,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +FL,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +FL,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +FL,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +FL,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +FL,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +FL,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +FL,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +FL,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +FL,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +FL,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +FL,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +FL,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +FL,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +FL,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +FL,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +FL,industrial fuel use,coal,coal,2005,CO,0.069434106 +FL,industrial fuel use,coal,coal,2010,CO,0.07723114 +FL,industrial fuel use,coal,coal,2015,CO,0.068281575 +FL,industrial fuel use,coal,coal,2020,CO,0.063753622 +FL,industrial fuel use,coal,coal,2025,CO,0.065761399 +FL,industrial fuel use,coal,coal,2030,CO,0.067959367 +FL,industrial fuel use,coal,coal,2035,CO,0.069173462 +FL,industrial fuel use,coal,coal,2040,CO,0.070202866 +FL,industrial fuel use,coal,coal,2045,CO,0.071098148 +FL,industrial fuel use,coal,coal,2050,CO,0.072063393 +FL,industrial fuel use,coal,coal,2055,CO,0.072511454 +FL,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +FL,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +FL,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +FL,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +FL,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +FL,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +FL,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +FL,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +FL,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +FL,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +FL,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +FL,industrial fuel use,gas,gas,2005,CO,0.054958784 +FL,industrial fuel use,gas,gas,2010,CO,0.041119779 +FL,industrial fuel use,gas,gas,2015,CO,0.037376927 +FL,industrial fuel use,gas,gas,2020,CO,0.042196984 +FL,industrial fuel use,gas,gas,2025,CO,0.046340259 +FL,industrial fuel use,gas,gas,2030,CO,0.051044751 +FL,industrial fuel use,gas,gas,2035,CO,0.048377476 +FL,industrial fuel use,gas,gas,2040,CO,0.04844371 +FL,industrial fuel use,gas,gas,2045,CO,0.049325699 +FL,industrial fuel use,gas,gas,2050,CO,0.048085677 +FL,industrial fuel use,gas,gas,2055,CO,0.046506083 +FL,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +FL,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +FL,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +FL,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +FL,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +FL,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +FL,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +FL,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +FL,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +FL,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +FL,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +FL,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +FL,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +FL,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +FL,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +FL,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +FL,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +FL,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +FL,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +FL,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +FL,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +FL,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +FL,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +FL,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +FL,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +FL,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +FL,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +FL,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +FL,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +FL,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +FL,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +FL,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +FL,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +FL,industrial fuel use,coal,coal,2005,CH4,0.008615911 +FL,industrial fuel use,coal,coal,2010,CH4,0.007087118 +FL,industrial fuel use,coal,coal,2015,CH4,0.007645512 +FL,industrial fuel use,coal,coal,2020,CH4,0.007093206 +FL,industrial fuel use,coal,coal,2025,CH4,0.007280827 +FL,industrial fuel use,coal,coal,2030,CH4,0.007426545 +FL,industrial fuel use,coal,coal,2035,CH4,0.007524098 +FL,industrial fuel use,coal,coal,2040,CH4,0.007621441 +FL,industrial fuel use,coal,coal,2045,CH4,0.007691307 +FL,industrial fuel use,coal,coal,2050,CH4,0.007801358 +FL,industrial fuel use,coal,coal,2055,CH4,0.007871907 +FL,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +FL,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +FL,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +FL,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +FL,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +FL,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +FL,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +FL,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +FL,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +FL,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +FL,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +FL,industrial fuel use,gas,gas,2005,CH4,0.002575726 +FL,industrial fuel use,gas,gas,2010,CH4,0.0036902 +FL,industrial fuel use,gas,gas,2015,CH4,0.001847174 +FL,industrial fuel use,gas,gas,2020,CH4,0.002575374 +FL,industrial fuel use,gas,gas,2025,CH4,0.002470739 +FL,industrial fuel use,gas,gas,2030,CH4,0.002514812 +FL,industrial fuel use,gas,gas,2035,CH4,0.004402202 +FL,industrial fuel use,gas,gas,2040,CH4,0.005194877 +FL,industrial fuel use,gas,gas,2045,CH4,0.005264291 +FL,industrial fuel use,gas,gas,2050,CH4,0.006086388 +FL,industrial fuel use,gas,gas,2055,CH4,0.006850703 +FL,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +FL,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +FL,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +FL,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +FL,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +FL,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +FL,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +FL,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +FL,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +FL,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +FL,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +FL,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +FL,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +FL,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +FL,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +FL,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +FL,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +FL,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +FL,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +FL,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +FL,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +FL,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +FL,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +FL,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +FL,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +FL,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +FL,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +FL,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +FL,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +FL,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +FL,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +FL,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +FL,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +FL,industrial fuel use,coal,coal,2005,N2O,0.002945881 +FL,industrial fuel use,coal,coal,2010,N2O,0.004699422 +FL,industrial fuel use,coal,coal,2015,N2O,0.003718249 +FL,industrial fuel use,coal,coal,2020,N2O,0.003503987 +FL,industrial fuel use,coal,coal,2025,N2O,0.003902448 +FL,industrial fuel use,coal,coal,2030,N2O,0.005231917 +FL,industrial fuel use,coal,coal,2035,N2O,0.005844861 +FL,industrial fuel use,coal,coal,2040,N2O,0.006123209 +FL,industrial fuel use,coal,coal,2045,N2O,0.006493024 +FL,industrial fuel use,coal,coal,2050,N2O,0.00643187 +FL,industrial fuel use,coal,coal,2055,N2O,0.006580646 +FL,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +FL,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +FL,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +FL,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +FL,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +FL,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +FL,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +FL,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +FL,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +FL,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +FL,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +FL,industrial fuel use,gas,gas,2005,N2O,0.000509795 +FL,industrial fuel use,gas,gas,2010,N2O,0.000459136 +FL,industrial fuel use,gas,gas,2015,N2O,0.000457847 +FL,industrial fuel use,gas,gas,2020,N2O,0.000469807 +FL,industrial fuel use,gas,gas,2025,N2O,0.0004748 +FL,industrial fuel use,gas,gas,2030,N2O,0.000493269 +FL,industrial fuel use,gas,gas,2035,N2O,0.0005142 +FL,industrial fuel use,gas,gas,2040,N2O,0.000525413 +FL,industrial fuel use,gas,gas,2045,N2O,0.000530678 +FL,industrial fuel use,gas,gas,2050,N2O,0.000534097 +FL,industrial fuel use,gas,gas,2055,N2O,0.000535185 +FL,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +FL,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +FL,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +FL,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +FL,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +FL,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +FL,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +FL,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +FL,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +FL,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +FL,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +FL,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +FL,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +FL,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +FL,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +FL,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +FL,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +FL,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +FL,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +FL,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +FL,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +FL,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +FL,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +FL,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +FL,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +FL,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +FL,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +FL,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +FL,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +FL,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +FL,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +FL,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +FL,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +FL,industrial fuel use,coal,coal,2005,BC,0.052178527 +FL,industrial fuel use,coal,coal,2010,BC,0.054113893 +FL,industrial fuel use,coal,coal,2015,BC,0.054816673 +FL,industrial fuel use,coal,coal,2020,BC,0.051442317 +FL,industrial fuel use,coal,coal,2025,BC,0.05280003 +FL,industrial fuel use,coal,coal,2030,BC,0.054819383 +FL,industrial fuel use,coal,coal,2035,BC,0.055934389 +FL,industrial fuel use,coal,coal,2040,BC,0.056737391 +FL,industrial fuel use,coal,coal,2045,BC,0.057341111 +FL,industrial fuel use,coal,coal,2050,BC,0.057867944 +FL,industrial fuel use,coal,coal,2055,BC,0.058307588 +FL,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +FL,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +FL,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +FL,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +FL,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +FL,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +FL,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +FL,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +FL,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +FL,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +FL,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +FL,industrial fuel use,gas,gas,2005,BC,0.000879555 +FL,industrial fuel use,gas,gas,2010,BC,0.000594596 +FL,industrial fuel use,gas,gas,2015,BC,0.000780779 +FL,industrial fuel use,gas,gas,2020,BC,0.000758542 +FL,industrial fuel use,gas,gas,2025,BC,0.000791704 +FL,industrial fuel use,gas,gas,2030,BC,0.000829295 +FL,industrial fuel use,gas,gas,2035,BC,0.000745895 +FL,industrial fuel use,gas,gas,2040,BC,0.000739727 +FL,industrial fuel use,gas,gas,2045,BC,0.000759191 +FL,industrial fuel use,gas,gas,2050,BC,0.000728476 +FL,industrial fuel use,gas,gas,2055,BC,0.000688571 +FL,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +FL,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +FL,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +FL,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +FL,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +FL,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +FL,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +FL,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +FL,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +FL,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +FL,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +FL,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +FL,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +FL,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +FL,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +FL,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +FL,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +FL,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +FL,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +FL,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +FL,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +FL,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +FL,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +FL,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +FL,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +FL,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +FL,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +FL,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +FL,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +FL,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +FL,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +FL,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +FL,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +FL,industrial fuel use,coal,coal,2005,OC,0.004608879 +FL,industrial fuel use,coal,coal,2010,OC,0.004949044 +FL,industrial fuel use,coal,coal,2015,OC,0.005291355 +FL,industrial fuel use,coal,coal,2020,OC,0.005047635 +FL,industrial fuel use,coal,coal,2025,OC,0.005240698 +FL,industrial fuel use,coal,coal,2030,OC,0.005398598 +FL,industrial fuel use,coal,coal,2035,OC,0.005483036 +FL,industrial fuel use,coal,coal,2040,OC,0.005583473 +FL,industrial fuel use,coal,coal,2045,OC,0.005638434 +FL,industrial fuel use,coal,coal,2050,OC,0.005723515 +FL,industrial fuel use,coal,coal,2055,OC,0.005777195 +FL,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +FL,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +FL,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +FL,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +FL,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +FL,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +FL,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +FL,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +FL,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +FL,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +FL,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +FL,industrial fuel use,gas,gas,2005,OC,0.000586894 +FL,industrial fuel use,gas,gas,2010,OC,0.000538986 +FL,industrial fuel use,gas,gas,2015,OC,0.000406177 +FL,industrial fuel use,gas,gas,2020,OC,0.000436774 +FL,industrial fuel use,gas,gas,2025,OC,0.000431434 +FL,industrial fuel use,gas,gas,2030,OC,0.000454497 +FL,industrial fuel use,gas,gas,2035,OC,0.0005142 +FL,industrial fuel use,gas,gas,2040,OC,0.000542203 +FL,industrial fuel use,gas,gas,2045,OC,0.0005354 +FL,industrial fuel use,gas,gas,2050,OC,0.000552822 +FL,industrial fuel use,gas,gas,2055,OC,0.000563528 +FL,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +FL,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +FL,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +FL,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +FL,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +FL,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +FL,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +FL,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +FL,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +FL,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +FL,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +FL,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +FL,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +FL,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +FL,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +FL,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +FL,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +FL,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +FL,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +FL,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +FL,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +FL,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +FL,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +FL,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +FL,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +FL,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +FL,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +FL,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +FL,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +FL,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +FL,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +FL,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +FL,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +FL,industrial fuel use,coal,coal,2005,CO2,0.022413751 +FL,industrial fuel use,coal,coal,2010,CO2,0.023247485 +FL,industrial fuel use,coal,coal,2015,CO2,0.023542577 +FL,industrial fuel use,coal,coal,2020,CO2,0.022100946 +FL,industrial fuel use,coal,coal,2025,CO2,0.022682182 +FL,industrial fuel use,coal,coal,2030,CO2,0.023544891 +FL,industrial fuel use,coal,coal,2035,CO2,0.024022124 +FL,industrial fuel use,coal,coal,2040,CO2,0.024371859 +FL,industrial fuel use,coal,coal,2045,CO2,0.024626877 +FL,industrial fuel use,coal,coal,2050,CO2,0.024861999 +FL,industrial fuel use,coal,coal,2055,CO2,0.025047846 +FL,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +FL,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +FL,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +FL,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +FL,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +FL,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +FL,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +FL,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +FL,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +FL,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +FL,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +FL,industrial fuel use,gas,gas,2005,CO2,0.010100215 +FL,industrial fuel use,gas,gas,2010,CO2,0.008735772 +FL,industrial fuel use,gas,gas,2015,CO2,0.008975567 +FL,industrial fuel use,gas,gas,2020,CO2,0.009141549 +FL,industrial fuel use,gas,gas,2025,CO2,0.009319403 +FL,industrial fuel use,gas,gas,2030,CO2,0.009661635 +FL,industrial fuel use,gas,gas,2035,CO2,0.009858394 +FL,industrial fuel use,gas,gas,2040,CO2,0.010090146 +FL,industrial fuel use,gas,gas,2045,CO2,0.010177486 +FL,industrial fuel use,gas,gas,2050,CO2,0.010210503 +FL,industrial fuel use,gas,gas,2055,CO2,0.010168744 +FL,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +FL,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +FL,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +FL,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +FL,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +FL,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +FL,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +FL,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +FL,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +FL,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +FL,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +FL,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +FL,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +FL,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +FL,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +FL,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +FL,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +FL,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +FL,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +FL,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +FL,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +FL,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +FL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +FL,industrial fuel use,biomass,biomass,2005,CO2,0 +FL,industrial fuel use,biomass,biomass,2010,CO2,0 +FL,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +FL,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +FL,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +FL,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +FL,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +FL,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +FL,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +FL,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +FL,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +FL,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +FL,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +FL,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +FL,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +FL,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +FL,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +FL,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +FL,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +FL,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +FL,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +FL,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +GA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +GA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +GA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +GA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +GA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +GA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +GA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +GA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +GA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +GA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +GA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +GA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +GA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +GA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +GA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +GA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +GA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +GA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +GA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +GA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +GA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +GA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +GA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +GA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +GA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +GA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +GA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +GA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +GA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +GA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +GA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +GA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +GA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +GA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +GA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +GA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +GA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +GA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +GA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +GA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +GA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +GA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +GA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +GA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +GA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +GA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +GA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +GA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +GA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +GA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +GA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +GA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +GA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +GA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +GA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +GA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +GA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +GA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +GA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +GA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +GA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +GA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +GA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +GA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +GA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +GA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +GA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +GA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +GA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +GA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +GA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +GA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +GA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +GA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +GA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +GA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +GA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +GA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +GA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +GA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +GA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +GA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +GA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +GA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +GA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +GA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +GA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +GA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +GA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +GA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +GA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +GA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +GA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +GA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +GA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +GA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +GA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +GA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +GA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +GA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +GA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +GA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +GA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +GA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +GA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +GA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +GA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +GA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +GA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +GA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +GA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +GA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +GA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +GA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +GA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +GA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +GA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +GA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +GA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +GA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +GA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +GA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +GA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +GA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +GA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +GA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +GA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +GA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +GA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +GA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +GA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +GA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +GA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +GA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +GA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +GA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +GA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +GA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +GA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +GA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +GA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +GA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +GA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +GA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +GA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +GA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +GA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +GA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +GA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +GA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +GA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +GA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +GA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +GA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +GA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +GA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +GA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +GA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +GA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +GA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +GA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +GA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +GA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +GA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +GA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +GA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +GA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +GA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +GA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +GA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +GA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +GA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +GA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +GA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +GA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +GA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +GA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +GA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +GA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +GA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +GA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +GA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +GA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +GA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +GA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +GA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +GA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +GA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +GA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +GA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +GA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +GA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +GA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +GA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +GA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +GA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +GA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +GA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +GA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +GA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +GA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +GA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +GA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +GA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +GA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +GA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +GA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +GA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +GA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +GA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +GA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +GA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +GA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +GA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +GA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +GA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +GA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +GA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +GA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +GA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +GA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +GA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +GA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +GA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +GA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +GA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +GA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +GA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +GA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +GA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +GA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +GA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +GA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +GA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +GA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +GA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +GA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +GA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +GA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +GA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +GA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +GA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +GA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +GA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +GA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +GA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +GA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +GA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +GA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +GA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +GA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +GA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +GA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +GA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +GA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +GA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +GA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +GA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +GA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +GA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +GA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +GA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +GA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +GA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +GA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +GA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +GA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +GA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +GA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +GA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +GA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +GA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +GA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +GA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +GA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +GA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +GA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +GA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +GA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +GA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +GA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +GA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +GA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +GA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +GA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +GA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +GA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +GA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +GA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +GA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +GA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +GA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +GA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +GA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +GA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +GA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +GA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +GA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +GA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +GA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +GA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +GA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +GA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +GA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +GA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +GA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +GA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +GA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +GA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +GA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +GA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +GA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +GA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +GA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +GA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +GA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +GA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +GA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +GA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +GA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +GA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +GA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +GA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +GA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +GA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +GA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +GA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +GA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +GA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +GA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +GA,industrial fuel use,coal,coal,2005,CO,0.069434106 +GA,industrial fuel use,coal,coal,2010,CO,0.07723114 +GA,industrial fuel use,coal,coal,2015,CO,0.068281575 +GA,industrial fuel use,coal,coal,2020,CO,0.063753622 +GA,industrial fuel use,coal,coal,2025,CO,0.065761399 +GA,industrial fuel use,coal,coal,2030,CO,0.067959367 +GA,industrial fuel use,coal,coal,2035,CO,0.069173462 +GA,industrial fuel use,coal,coal,2040,CO,0.070202866 +GA,industrial fuel use,coal,coal,2045,CO,0.071098148 +GA,industrial fuel use,coal,coal,2050,CO,0.072063393 +GA,industrial fuel use,coal,coal,2055,CO,0.072511454 +GA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +GA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +GA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +GA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +GA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +GA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +GA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +GA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +GA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +GA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +GA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +GA,industrial fuel use,gas,gas,2005,CO,0.054958784 +GA,industrial fuel use,gas,gas,2010,CO,0.041119779 +GA,industrial fuel use,gas,gas,2015,CO,0.037376927 +GA,industrial fuel use,gas,gas,2020,CO,0.042196984 +GA,industrial fuel use,gas,gas,2025,CO,0.046340259 +GA,industrial fuel use,gas,gas,2030,CO,0.051044751 +GA,industrial fuel use,gas,gas,2035,CO,0.048377476 +GA,industrial fuel use,gas,gas,2040,CO,0.04844371 +GA,industrial fuel use,gas,gas,2045,CO,0.049325699 +GA,industrial fuel use,gas,gas,2050,CO,0.048085677 +GA,industrial fuel use,gas,gas,2055,CO,0.046506083 +GA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +GA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +GA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +GA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +GA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +GA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +GA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +GA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +GA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +GA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +GA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +GA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +GA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +GA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +GA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +GA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +GA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +GA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +GA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +GA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +GA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +GA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +GA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +GA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +GA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +GA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +GA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +GA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +GA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +GA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +GA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +GA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +GA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +GA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +GA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +GA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +GA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +GA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +GA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +GA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +GA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +GA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +GA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +GA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +GA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +GA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +GA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +GA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +GA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +GA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +GA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +GA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +GA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +GA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +GA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +GA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +GA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +GA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +GA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +GA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +GA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +GA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +GA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +GA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +GA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +GA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +GA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +GA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +GA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +GA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +GA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +GA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +GA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +GA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +GA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +GA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +GA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +GA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +GA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +GA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +GA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +GA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +GA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +GA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +GA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +GA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +GA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +GA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +GA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +GA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +GA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +GA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +GA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +GA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +GA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +GA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +GA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +GA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +GA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +GA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +GA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +GA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +GA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +GA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +GA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +GA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +GA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +GA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +GA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +GA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +GA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +GA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +GA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +GA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +GA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +GA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +GA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +GA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +GA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +GA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +GA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +GA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +GA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +GA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +GA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +GA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +GA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +GA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +GA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +GA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +GA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +GA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +GA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +GA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +GA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +GA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +GA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +GA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +GA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +GA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +GA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +GA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +GA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +GA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +GA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +GA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +GA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +GA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +GA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +GA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +GA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +GA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +GA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +GA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +GA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +GA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +GA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +GA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +GA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +GA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +GA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +GA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +GA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +GA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +GA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +GA,industrial fuel use,coal,coal,2005,BC,0.052178527 +GA,industrial fuel use,coal,coal,2010,BC,0.054113893 +GA,industrial fuel use,coal,coal,2015,BC,0.054816673 +GA,industrial fuel use,coal,coal,2020,BC,0.051442317 +GA,industrial fuel use,coal,coal,2025,BC,0.05280003 +GA,industrial fuel use,coal,coal,2030,BC,0.054819383 +GA,industrial fuel use,coal,coal,2035,BC,0.055934389 +GA,industrial fuel use,coal,coal,2040,BC,0.056737391 +GA,industrial fuel use,coal,coal,2045,BC,0.057341111 +GA,industrial fuel use,coal,coal,2050,BC,0.057867944 +GA,industrial fuel use,coal,coal,2055,BC,0.058307588 +GA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +GA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +GA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +GA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +GA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +GA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +GA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +GA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +GA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +GA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +GA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +GA,industrial fuel use,gas,gas,2005,BC,0.000879555 +GA,industrial fuel use,gas,gas,2010,BC,0.000594596 +GA,industrial fuel use,gas,gas,2015,BC,0.000780779 +GA,industrial fuel use,gas,gas,2020,BC,0.000758542 +GA,industrial fuel use,gas,gas,2025,BC,0.000791704 +GA,industrial fuel use,gas,gas,2030,BC,0.000829295 +GA,industrial fuel use,gas,gas,2035,BC,0.000745895 +GA,industrial fuel use,gas,gas,2040,BC,0.000739727 +GA,industrial fuel use,gas,gas,2045,BC,0.000759191 +GA,industrial fuel use,gas,gas,2050,BC,0.000728476 +GA,industrial fuel use,gas,gas,2055,BC,0.000688571 +GA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +GA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +GA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +GA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +GA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +GA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +GA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +GA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +GA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +GA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +GA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +GA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +GA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +GA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +GA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +GA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +GA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +GA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +GA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +GA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +GA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +GA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +GA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +GA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +GA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +GA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +GA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +GA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +GA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +GA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +GA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +GA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +GA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +GA,industrial fuel use,coal,coal,2005,OC,0.004608879 +GA,industrial fuel use,coal,coal,2010,OC,0.004949044 +GA,industrial fuel use,coal,coal,2015,OC,0.005291355 +GA,industrial fuel use,coal,coal,2020,OC,0.005047635 +GA,industrial fuel use,coal,coal,2025,OC,0.005240698 +GA,industrial fuel use,coal,coal,2030,OC,0.005398598 +GA,industrial fuel use,coal,coal,2035,OC,0.005483036 +GA,industrial fuel use,coal,coal,2040,OC,0.005583473 +GA,industrial fuel use,coal,coal,2045,OC,0.005638434 +GA,industrial fuel use,coal,coal,2050,OC,0.005723515 +GA,industrial fuel use,coal,coal,2055,OC,0.005777195 +GA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +GA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +GA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +GA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +GA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +GA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +GA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +GA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +GA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +GA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +GA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +GA,industrial fuel use,gas,gas,2005,OC,0.000586894 +GA,industrial fuel use,gas,gas,2010,OC,0.000538986 +GA,industrial fuel use,gas,gas,2015,OC,0.000406177 +GA,industrial fuel use,gas,gas,2020,OC,0.000436774 +GA,industrial fuel use,gas,gas,2025,OC,0.000431434 +GA,industrial fuel use,gas,gas,2030,OC,0.000454497 +GA,industrial fuel use,gas,gas,2035,OC,0.0005142 +GA,industrial fuel use,gas,gas,2040,OC,0.000542203 +GA,industrial fuel use,gas,gas,2045,OC,0.0005354 +GA,industrial fuel use,gas,gas,2050,OC,0.000552822 +GA,industrial fuel use,gas,gas,2055,OC,0.000563528 +GA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +GA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +GA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +GA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +GA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +GA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +GA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +GA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +GA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +GA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +GA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +GA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +GA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +GA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +GA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +GA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +GA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +GA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +GA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +GA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +GA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +GA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +GA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +GA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +GA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +GA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +GA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +GA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +GA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +GA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +GA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +GA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +GA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +GA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +GA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +GA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +GA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +GA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +GA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +GA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +GA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +GA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +GA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +GA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +GA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +GA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +GA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +GA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +GA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +GA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +GA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +GA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +GA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +GA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +GA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +GA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +GA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +GA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +GA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +GA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +GA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +GA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +GA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +GA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +GA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +GA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +GA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +GA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +GA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +GA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +GA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +GA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +GA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +GA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +GA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +GA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +GA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +GA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +GA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +GA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +GA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +GA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +GA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +GA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +GA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +GA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +GA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +GA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +GA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +GA,industrial fuel use,biomass,biomass,2005,CO2,0 +GA,industrial fuel use,biomass,biomass,2010,CO2,0 +GA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +GA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +GA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +GA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +GA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +GA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +GA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +GA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +GA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +GA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +GA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +GA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +GA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +GA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +GA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +GA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +GA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +GA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +GA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +GA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +HI,industrial fuel use,coal,coal,2005,NOx,0.261565752 +HI,industrial fuel use,coal,coal,2010,NOx,0.24128762 +HI,industrial fuel use,coal,coal,2015,NOx,0.247879608 +HI,industrial fuel use,coal,coal,2020,NOx,0.234312556 +HI,industrial fuel use,coal,coal,2025,NOx,0.240398293 +HI,industrial fuel use,coal,coal,2030,NOx,0.246677964 +HI,industrial fuel use,coal,coal,2035,NOx,0.250299201 +HI,industrial fuel use,coal,coal,2040,NOx,0.253554811 +HI,industrial fuel use,coal,coal,2045,NOx,0.255578056 +HI,industrial fuel use,coal,coal,2050,NOx,0.258549854 +HI,industrial fuel use,coal,coal,2055,NOx,0.26014596 +HI,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +HI,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +HI,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +HI,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +HI,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +HI,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +HI,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +HI,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +HI,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +HI,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +HI,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +HI,industrial fuel use,gas,gas,2005,NOx,0.080919016 +HI,industrial fuel use,gas,gas,2010,NOx,0.044952568 +HI,industrial fuel use,gas,gas,2015,NOx,0.037239142 +HI,industrial fuel use,gas,gas,2020,NOx,0.040745965 +HI,industrial fuel use,gas,gas,2025,NOx,0.042574105 +HI,industrial fuel use,gas,gas,2030,NOx,0.045347383 +HI,industrial fuel use,gas,gas,2035,NOx,0.048574619 +HI,industrial fuel use,gas,gas,2040,NOx,0.050422899 +HI,industrial fuel use,gas,gas,2045,NOx,0.050680722 +HI,industrial fuel use,gas,gas,2050,NOx,0.0517343 +HI,industrial fuel use,gas,gas,2055,NOx,0.052443137 +HI,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +HI,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +HI,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +HI,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +HI,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +HI,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +HI,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +HI,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +HI,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +HI,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +HI,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +HI,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +HI,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +HI,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +HI,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +HI,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +HI,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +HI,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +HI,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +HI,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +HI,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +HI,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +HI,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +HI,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +HI,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +HI,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +HI,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +HI,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +HI,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +HI,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +HI,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +HI,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +HI,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +HI,industrial fuel use,coal,coal,2005,SO2,0.709862367 +HI,industrial fuel use,coal,coal,2010,SO2,0.679592789 +HI,industrial fuel use,coal,coal,2015,SO2,0.590904591 +HI,industrial fuel use,coal,coal,2020,SO2,0.549595621 +HI,industrial fuel use,coal,coal,2025,SO2,0.56430149 +HI,industrial fuel use,coal,coal,2030,SO2,0.576548046 +HI,industrial fuel use,coal,coal,2035,SO2,0.583595424 +HI,industrial fuel use,coal,coal,2040,SO2,0.590805881 +HI,industrial fuel use,coal,coal,2045,SO2,0.596410723 +HI,industrial fuel use,coal,coal,2050,SO2,0.606154195 +HI,industrial fuel use,coal,coal,2055,SO2,0.611234923 +HI,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +HI,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +HI,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +HI,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +HI,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +HI,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +HI,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +HI,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +HI,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +HI,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +HI,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +HI,industrial fuel use,gas,gas,2005,SO2,0.000213988 +HI,industrial fuel use,gas,gas,2010,SO2,0.002761946 +HI,industrial fuel use,gas,gas,2015,SO2,0.002854723 +HI,industrial fuel use,gas,gas,2020,SO2,0.002771127 +HI,industrial fuel use,gas,gas,2025,SO2,0.002798763 +HI,industrial fuel use,gas,gas,2030,SO2,0.002938075 +HI,industrial fuel use,gas,gas,2035,SO2,0.003016098 +HI,industrial fuel use,gas,gas,2040,SO2,0.003118901 +HI,industrial fuel use,gas,gas,2045,SO2,0.00311325 +HI,industrial fuel use,gas,gas,2050,SO2,0.003090451 +HI,industrial fuel use,gas,gas,2055,SO2,0.003025213 +HI,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +HI,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +HI,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +HI,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +HI,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +HI,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +HI,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +HI,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +HI,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +HI,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +HI,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +HI,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +HI,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +HI,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +HI,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +HI,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +HI,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +HI,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +HI,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +HI,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +HI,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +HI,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +HI,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +HI,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +HI,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +HI,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +HI,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +HI,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +HI,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +HI,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +HI,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +HI,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +HI,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +HI,industrial fuel use,coal,coal,2005,PM10,0.136452905 +HI,industrial fuel use,coal,coal,2010,PM10,0.093662835 +HI,industrial fuel use,coal,coal,2015,PM10,0.100887759 +HI,industrial fuel use,coal,coal,2020,PM10,0.094503476 +HI,industrial fuel use,coal,coal,2025,PM10,0.09752377 +HI,industrial fuel use,coal,coal,2030,PM10,0.099823133 +HI,industrial fuel use,coal,coal,2035,PM10,0.101097535 +HI,industrial fuel use,coal,coal,2040,PM10,0.102438117 +HI,industrial fuel use,coal,coal,2045,PM10,0.103553978 +HI,industrial fuel use,coal,coal,2050,PM10,0.105393893 +HI,industrial fuel use,coal,coal,2055,PM10,0.106304221 +HI,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +HI,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +HI,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +HI,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +HI,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +HI,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +HI,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +HI,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +HI,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +HI,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +HI,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +HI,industrial fuel use,gas,gas,2005,PM10,0.002144603 +HI,industrial fuel use,gas,gas,2010,PM10,0.004157892 +HI,industrial fuel use,gas,gas,2015,PM10,0.004308637 +HI,industrial fuel use,gas,gas,2020,PM10,0.004261296 +HI,industrial fuel use,gas,gas,2025,PM10,0.004334357 +HI,industrial fuel use,gas,gas,2030,PM10,0.00454497 +HI,industrial fuel use,gas,gas,2035,PM10,0.004581054 +HI,industrial fuel use,gas,gas,2040,PM10,0.004690204 +HI,industrial fuel use,gas,gas,2045,PM10,0.004695842 +HI,industrial fuel use,gas,gas,2050,PM10,0.004649052 +HI,industrial fuel use,gas,gas,2055,PM10,0.00454824 +HI,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +HI,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +HI,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +HI,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +HI,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +HI,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +HI,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +HI,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +HI,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +HI,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +HI,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +HI,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +HI,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +HI,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +HI,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +HI,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +HI,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +HI,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +HI,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +HI,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +HI,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +HI,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +HI,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +HI,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +HI,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +HI,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +HI,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +HI,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +HI,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +HI,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +HI,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +HI,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +HI,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +HI,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +HI,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +HI,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +HI,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +HI,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +HI,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +HI,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +HI,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +HI,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +HI,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +HI,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +HI,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +HI,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +HI,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +HI,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +HI,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +HI,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +HI,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +HI,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +HI,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +HI,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +HI,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +HI,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +HI,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +HI,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +HI,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +HI,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +HI,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +HI,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +HI,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +HI,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +HI,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +HI,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +HI,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +HI,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +HI,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +HI,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +HI,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +HI,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +HI,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +HI,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +HI,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +HI,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +HI,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +HI,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +HI,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +HI,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +HI,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +HI,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +HI,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +HI,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +HI,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +HI,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +HI,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +HI,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +HI,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +HI,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +HI,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +HI,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +HI,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +HI,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +HI,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +HI,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +HI,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +HI,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +HI,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +HI,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +HI,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +HI,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +HI,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +HI,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +HI,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +HI,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +HI,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +HI,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +HI,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +HI,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +HI,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +HI,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +HI,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +HI,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +HI,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +HI,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +HI,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +HI,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +HI,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +HI,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +HI,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +HI,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +HI,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +HI,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +HI,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +HI,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +HI,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +HI,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +HI,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +HI,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +HI,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +HI,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +HI,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +HI,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +HI,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +HI,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +HI,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +HI,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +HI,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +HI,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +HI,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +HI,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +HI,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +HI,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +HI,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +HI,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +HI,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +HI,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +HI,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +HI,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +HI,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +HI,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +HI,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +HI,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +HI,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +HI,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +HI,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +HI,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +HI,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +HI,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +HI,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +HI,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +HI,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +HI,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +HI,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +HI,industrial fuel use,coal,coal,2005,CO,0.069434106 +HI,industrial fuel use,coal,coal,2010,CO,0.07723114 +HI,industrial fuel use,coal,coal,2015,CO,0.068281575 +HI,industrial fuel use,coal,coal,2020,CO,0.063753622 +HI,industrial fuel use,coal,coal,2025,CO,0.065761399 +HI,industrial fuel use,coal,coal,2030,CO,0.067959367 +HI,industrial fuel use,coal,coal,2035,CO,0.069173462 +HI,industrial fuel use,coal,coal,2040,CO,0.070202866 +HI,industrial fuel use,coal,coal,2045,CO,0.071098148 +HI,industrial fuel use,coal,coal,2050,CO,0.072063393 +HI,industrial fuel use,coal,coal,2055,CO,0.072511454 +HI,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +HI,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +HI,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +HI,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +HI,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +HI,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +HI,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +HI,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +HI,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +HI,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +HI,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +HI,industrial fuel use,gas,gas,2005,CO,0.054958784 +HI,industrial fuel use,gas,gas,2010,CO,0.041119779 +HI,industrial fuel use,gas,gas,2015,CO,0.037376927 +HI,industrial fuel use,gas,gas,2020,CO,0.042196984 +HI,industrial fuel use,gas,gas,2025,CO,0.046340259 +HI,industrial fuel use,gas,gas,2030,CO,0.051044751 +HI,industrial fuel use,gas,gas,2035,CO,0.048377476 +HI,industrial fuel use,gas,gas,2040,CO,0.04844371 +HI,industrial fuel use,gas,gas,2045,CO,0.049325699 +HI,industrial fuel use,gas,gas,2050,CO,0.048085677 +HI,industrial fuel use,gas,gas,2055,CO,0.046506083 +HI,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +HI,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +HI,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +HI,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +HI,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +HI,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +HI,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +HI,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +HI,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +HI,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +HI,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +HI,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +HI,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +HI,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +HI,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +HI,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +HI,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +HI,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +HI,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +HI,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +HI,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +HI,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +HI,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +HI,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +HI,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +HI,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +HI,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +HI,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +HI,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +HI,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +HI,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +HI,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +HI,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +HI,industrial fuel use,coal,coal,2005,CH4,0.008615911 +HI,industrial fuel use,coal,coal,2010,CH4,0.007087118 +HI,industrial fuel use,coal,coal,2015,CH4,0.007645512 +HI,industrial fuel use,coal,coal,2020,CH4,0.007093206 +HI,industrial fuel use,coal,coal,2025,CH4,0.007280827 +HI,industrial fuel use,coal,coal,2030,CH4,0.007426545 +HI,industrial fuel use,coal,coal,2035,CH4,0.007524098 +HI,industrial fuel use,coal,coal,2040,CH4,0.007621441 +HI,industrial fuel use,coal,coal,2045,CH4,0.007691307 +HI,industrial fuel use,coal,coal,2050,CH4,0.007801358 +HI,industrial fuel use,coal,coal,2055,CH4,0.007871907 +HI,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +HI,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +HI,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +HI,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +HI,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +HI,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +HI,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +HI,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +HI,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +HI,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +HI,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +HI,industrial fuel use,gas,gas,2005,CH4,0.002575726 +HI,industrial fuel use,gas,gas,2010,CH4,0.0036902 +HI,industrial fuel use,gas,gas,2015,CH4,0.001847174 +HI,industrial fuel use,gas,gas,2020,CH4,0.002575374 +HI,industrial fuel use,gas,gas,2025,CH4,0.002470739 +HI,industrial fuel use,gas,gas,2030,CH4,0.002514812 +HI,industrial fuel use,gas,gas,2035,CH4,0.004402202 +HI,industrial fuel use,gas,gas,2040,CH4,0.005194877 +HI,industrial fuel use,gas,gas,2045,CH4,0.005264291 +HI,industrial fuel use,gas,gas,2050,CH4,0.006086388 +HI,industrial fuel use,gas,gas,2055,CH4,0.006850703 +HI,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +HI,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +HI,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +HI,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +HI,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +HI,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +HI,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +HI,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +HI,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +HI,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +HI,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +HI,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +HI,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +HI,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +HI,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +HI,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +HI,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +HI,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +HI,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +HI,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +HI,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +HI,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +HI,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +HI,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +HI,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +HI,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +HI,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +HI,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +HI,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +HI,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +HI,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +HI,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +HI,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +HI,industrial fuel use,coal,coal,2005,N2O,0.002945881 +HI,industrial fuel use,coal,coal,2010,N2O,0.004699422 +HI,industrial fuel use,coal,coal,2015,N2O,0.003718249 +HI,industrial fuel use,coal,coal,2020,N2O,0.003503987 +HI,industrial fuel use,coal,coal,2025,N2O,0.003902448 +HI,industrial fuel use,coal,coal,2030,N2O,0.005231917 +HI,industrial fuel use,coal,coal,2035,N2O,0.005844861 +HI,industrial fuel use,coal,coal,2040,N2O,0.006123209 +HI,industrial fuel use,coal,coal,2045,N2O,0.006493024 +HI,industrial fuel use,coal,coal,2050,N2O,0.00643187 +HI,industrial fuel use,coal,coal,2055,N2O,0.006580646 +HI,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +HI,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +HI,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +HI,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +HI,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +HI,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +HI,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +HI,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +HI,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +HI,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +HI,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +HI,industrial fuel use,gas,gas,2005,N2O,0.000509795 +HI,industrial fuel use,gas,gas,2010,N2O,0.000459136 +HI,industrial fuel use,gas,gas,2015,N2O,0.000457847 +HI,industrial fuel use,gas,gas,2020,N2O,0.000469807 +HI,industrial fuel use,gas,gas,2025,N2O,0.0004748 +HI,industrial fuel use,gas,gas,2030,N2O,0.000493269 +HI,industrial fuel use,gas,gas,2035,N2O,0.0005142 +HI,industrial fuel use,gas,gas,2040,N2O,0.000525413 +HI,industrial fuel use,gas,gas,2045,N2O,0.000530678 +HI,industrial fuel use,gas,gas,2050,N2O,0.000534097 +HI,industrial fuel use,gas,gas,2055,N2O,0.000535185 +HI,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +HI,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +HI,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +HI,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +HI,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +HI,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +HI,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +HI,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +HI,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +HI,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +HI,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +HI,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +HI,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +HI,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +HI,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +HI,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +HI,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +HI,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +HI,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +HI,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +HI,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +HI,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +HI,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +HI,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +HI,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +HI,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +HI,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +HI,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +HI,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +HI,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +HI,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +HI,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +HI,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +HI,industrial fuel use,coal,coal,2005,BC,0.052178527 +HI,industrial fuel use,coal,coal,2010,BC,0.054113893 +HI,industrial fuel use,coal,coal,2015,BC,0.054816673 +HI,industrial fuel use,coal,coal,2020,BC,0.051442317 +HI,industrial fuel use,coal,coal,2025,BC,0.05280003 +HI,industrial fuel use,coal,coal,2030,BC,0.054819383 +HI,industrial fuel use,coal,coal,2035,BC,0.055934389 +HI,industrial fuel use,coal,coal,2040,BC,0.056737391 +HI,industrial fuel use,coal,coal,2045,BC,0.057341111 +HI,industrial fuel use,coal,coal,2050,BC,0.057867944 +HI,industrial fuel use,coal,coal,2055,BC,0.058307588 +HI,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +HI,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +HI,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +HI,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +HI,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +HI,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +HI,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +HI,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +HI,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +HI,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +HI,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +HI,industrial fuel use,gas,gas,2005,BC,0.000879555 +HI,industrial fuel use,gas,gas,2010,BC,0.000594596 +HI,industrial fuel use,gas,gas,2015,BC,0.000780779 +HI,industrial fuel use,gas,gas,2020,BC,0.000758542 +HI,industrial fuel use,gas,gas,2025,BC,0.000791704 +HI,industrial fuel use,gas,gas,2030,BC,0.000829295 +HI,industrial fuel use,gas,gas,2035,BC,0.000745895 +HI,industrial fuel use,gas,gas,2040,BC,0.000739727 +HI,industrial fuel use,gas,gas,2045,BC,0.000759191 +HI,industrial fuel use,gas,gas,2050,BC,0.000728476 +HI,industrial fuel use,gas,gas,2055,BC,0.000688571 +HI,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +HI,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +HI,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +HI,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +HI,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +HI,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +HI,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +HI,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +HI,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +HI,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +HI,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +HI,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +HI,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +HI,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +HI,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +HI,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +HI,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +HI,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +HI,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +HI,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +HI,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +HI,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +HI,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +HI,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +HI,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +HI,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +HI,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +HI,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +HI,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +HI,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +HI,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +HI,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +HI,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +HI,industrial fuel use,coal,coal,2005,OC,0.004608879 +HI,industrial fuel use,coal,coal,2010,OC,0.004949044 +HI,industrial fuel use,coal,coal,2015,OC,0.005291355 +HI,industrial fuel use,coal,coal,2020,OC,0.005047635 +HI,industrial fuel use,coal,coal,2025,OC,0.005240698 +HI,industrial fuel use,coal,coal,2030,OC,0.005398598 +HI,industrial fuel use,coal,coal,2035,OC,0.005483036 +HI,industrial fuel use,coal,coal,2040,OC,0.005583473 +HI,industrial fuel use,coal,coal,2045,OC,0.005638434 +HI,industrial fuel use,coal,coal,2050,OC,0.005723515 +HI,industrial fuel use,coal,coal,2055,OC,0.005777195 +HI,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +HI,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +HI,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +HI,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +HI,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +HI,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +HI,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +HI,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +HI,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +HI,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +HI,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +HI,industrial fuel use,gas,gas,2005,OC,0.000586894 +HI,industrial fuel use,gas,gas,2010,OC,0.000538986 +HI,industrial fuel use,gas,gas,2015,OC,0.000406177 +HI,industrial fuel use,gas,gas,2020,OC,0.000436774 +HI,industrial fuel use,gas,gas,2025,OC,0.000431434 +HI,industrial fuel use,gas,gas,2030,OC,0.000454497 +HI,industrial fuel use,gas,gas,2035,OC,0.0005142 +HI,industrial fuel use,gas,gas,2040,OC,0.000542203 +HI,industrial fuel use,gas,gas,2045,OC,0.0005354 +HI,industrial fuel use,gas,gas,2050,OC,0.000552822 +HI,industrial fuel use,gas,gas,2055,OC,0.000563528 +HI,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +HI,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +HI,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +HI,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +HI,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +HI,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +HI,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +HI,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +HI,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +HI,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +HI,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +HI,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +HI,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +HI,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +HI,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +HI,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +HI,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +HI,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +HI,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +HI,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +HI,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +HI,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +HI,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +HI,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +HI,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +HI,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +HI,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +HI,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +HI,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +HI,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +HI,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +HI,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +HI,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +HI,industrial fuel use,coal,coal,2005,CO2,0.022413751 +HI,industrial fuel use,coal,coal,2010,CO2,0.023247485 +HI,industrial fuel use,coal,coal,2015,CO2,0.023542577 +HI,industrial fuel use,coal,coal,2020,CO2,0.022100946 +HI,industrial fuel use,coal,coal,2025,CO2,0.022682182 +HI,industrial fuel use,coal,coal,2030,CO2,0.023544891 +HI,industrial fuel use,coal,coal,2035,CO2,0.024022124 +HI,industrial fuel use,coal,coal,2040,CO2,0.024371859 +HI,industrial fuel use,coal,coal,2045,CO2,0.024626877 +HI,industrial fuel use,coal,coal,2050,CO2,0.024861999 +HI,industrial fuel use,coal,coal,2055,CO2,0.025047846 +HI,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +HI,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +HI,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +HI,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +HI,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +HI,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +HI,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +HI,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +HI,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +HI,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +HI,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +HI,industrial fuel use,gas,gas,2005,CO2,0.010100215 +HI,industrial fuel use,gas,gas,2010,CO2,0.008735772 +HI,industrial fuel use,gas,gas,2015,CO2,0.008975567 +HI,industrial fuel use,gas,gas,2020,CO2,0.009141549 +HI,industrial fuel use,gas,gas,2025,CO2,0.009319403 +HI,industrial fuel use,gas,gas,2030,CO2,0.009661635 +HI,industrial fuel use,gas,gas,2035,CO2,0.009858394 +HI,industrial fuel use,gas,gas,2040,CO2,0.010090146 +HI,industrial fuel use,gas,gas,2045,CO2,0.010177486 +HI,industrial fuel use,gas,gas,2050,CO2,0.010210503 +HI,industrial fuel use,gas,gas,2055,CO2,0.010168744 +HI,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +HI,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +HI,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +HI,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +HI,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +HI,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +HI,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +HI,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +HI,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +HI,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +HI,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +HI,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +HI,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +HI,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +HI,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +HI,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +HI,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +HI,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +HI,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +HI,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +HI,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +HI,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +HI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +HI,industrial fuel use,biomass,biomass,2005,CO2,0 +HI,industrial fuel use,biomass,biomass,2010,CO2,0 +HI,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +HI,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +HI,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +HI,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +HI,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +HI,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +HI,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +HI,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +HI,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +HI,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +HI,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +HI,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +HI,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +HI,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +HI,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +HI,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +HI,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +HI,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +HI,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +HI,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +IA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +IA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +IA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +IA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +IA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +IA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +IA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +IA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +IA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +IA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +IA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +IA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +IA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +IA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +IA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +IA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +IA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +IA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +IA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +IA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +IA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +IA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +IA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +IA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +IA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +IA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +IA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +IA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +IA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +IA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +IA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +IA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +IA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +IA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +IA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +IA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +IA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +IA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +IA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +IA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +IA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +IA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +IA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +IA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +IA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +IA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +IA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +IA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +IA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +IA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +IA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +IA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +IA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +IA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +IA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +IA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +IA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +IA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +IA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +IA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +IA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +IA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +IA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +IA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +IA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +IA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +IA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +IA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +IA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +IA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +IA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +IA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +IA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +IA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +IA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +IA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +IA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +IA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +IA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +IA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +IA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +IA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +IA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +IA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +IA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +IA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +IA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +IA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +IA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +IA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +IA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +IA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +IA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +IA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +IA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +IA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +IA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +IA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +IA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +IA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +IA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +IA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +IA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +IA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +IA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +IA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +IA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +IA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +IA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +IA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +IA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +IA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +IA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +IA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +IA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +IA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +IA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +IA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +IA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +IA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +IA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +IA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +IA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +IA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +IA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +IA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +IA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +IA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +IA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +IA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +IA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +IA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +IA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +IA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +IA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +IA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +IA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +IA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +IA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +IA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +IA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +IA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +IA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +IA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +IA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +IA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +IA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +IA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +IA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +IA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +IA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +IA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +IA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +IA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +IA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +IA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +IA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +IA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +IA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +IA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +IA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +IA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +IA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +IA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +IA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +IA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +IA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +IA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +IA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +IA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +IA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +IA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +IA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +IA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +IA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +IA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +IA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +IA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +IA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +IA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +IA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +IA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +IA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +IA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +IA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +IA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +IA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +IA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +IA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +IA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +IA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +IA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +IA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +IA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +IA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +IA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +IA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +IA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +IA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +IA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +IA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +IA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +IA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +IA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +IA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +IA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +IA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +IA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +IA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +IA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +IA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +IA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +IA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +IA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +IA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +IA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +IA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +IA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +IA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +IA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +IA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +IA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +IA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +IA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +IA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +IA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +IA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +IA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +IA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +IA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +IA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +IA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +IA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +IA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +IA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +IA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +IA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +IA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +IA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +IA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +IA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +IA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +IA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +IA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +IA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +IA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +IA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +IA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +IA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +IA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +IA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +IA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +IA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +IA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +IA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +IA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +IA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +IA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +IA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +IA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +IA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +IA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +IA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +IA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +IA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +IA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +IA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +IA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +IA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +IA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +IA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +IA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +IA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +IA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +IA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +IA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +IA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +IA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +IA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +IA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +IA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +IA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +IA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +IA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +IA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +IA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +IA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +IA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +IA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +IA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +IA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +IA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +IA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +IA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +IA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +IA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +IA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +IA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +IA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +IA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +IA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +IA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +IA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +IA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +IA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +IA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +IA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +IA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +IA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +IA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +IA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +IA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +IA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +IA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +IA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +IA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +IA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +IA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +IA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +IA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +IA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +IA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +IA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +IA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +IA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +IA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +IA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +IA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +IA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +IA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +IA,industrial fuel use,coal,coal,2005,CO,0.069434106 +IA,industrial fuel use,coal,coal,2010,CO,0.07723114 +IA,industrial fuel use,coal,coal,2015,CO,0.068281575 +IA,industrial fuel use,coal,coal,2020,CO,0.063753622 +IA,industrial fuel use,coal,coal,2025,CO,0.065761399 +IA,industrial fuel use,coal,coal,2030,CO,0.067959367 +IA,industrial fuel use,coal,coal,2035,CO,0.069173462 +IA,industrial fuel use,coal,coal,2040,CO,0.070202866 +IA,industrial fuel use,coal,coal,2045,CO,0.071098148 +IA,industrial fuel use,coal,coal,2050,CO,0.072063393 +IA,industrial fuel use,coal,coal,2055,CO,0.072511454 +IA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +IA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +IA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +IA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +IA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +IA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +IA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +IA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +IA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +IA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +IA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +IA,industrial fuel use,gas,gas,2005,CO,0.054958784 +IA,industrial fuel use,gas,gas,2010,CO,0.041119779 +IA,industrial fuel use,gas,gas,2015,CO,0.037376927 +IA,industrial fuel use,gas,gas,2020,CO,0.042196984 +IA,industrial fuel use,gas,gas,2025,CO,0.046340259 +IA,industrial fuel use,gas,gas,2030,CO,0.051044751 +IA,industrial fuel use,gas,gas,2035,CO,0.048377476 +IA,industrial fuel use,gas,gas,2040,CO,0.04844371 +IA,industrial fuel use,gas,gas,2045,CO,0.049325699 +IA,industrial fuel use,gas,gas,2050,CO,0.048085677 +IA,industrial fuel use,gas,gas,2055,CO,0.046506083 +IA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +IA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +IA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +IA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +IA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +IA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +IA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +IA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +IA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +IA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +IA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +IA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +IA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +IA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +IA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +IA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +IA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +IA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +IA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +IA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +IA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +IA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +IA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +IA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +IA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +IA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +IA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +IA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +IA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +IA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +IA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +IA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +IA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +IA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +IA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +IA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +IA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +IA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +IA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +IA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +IA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +IA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +IA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +IA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +IA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +IA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +IA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +IA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +IA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +IA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +IA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +IA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +IA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +IA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +IA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +IA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +IA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +IA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +IA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +IA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +IA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +IA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +IA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +IA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +IA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +IA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +IA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +IA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +IA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +IA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +IA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +IA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +IA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +IA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +IA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +IA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +IA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +IA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +IA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +IA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +IA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +IA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +IA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +IA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +IA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +IA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +IA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +IA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +IA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +IA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +IA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +IA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +IA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +IA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +IA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +IA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +IA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +IA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +IA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +IA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +IA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +IA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +IA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +IA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +IA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +IA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +IA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +IA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +IA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +IA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +IA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +IA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +IA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +IA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +IA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +IA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +IA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +IA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +IA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +IA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +IA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +IA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +IA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +IA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +IA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +IA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +IA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +IA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +IA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +IA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +IA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +IA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +IA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +IA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +IA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +IA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +IA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +IA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +IA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +IA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +IA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +IA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +IA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +IA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +IA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +IA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +IA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +IA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +IA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +IA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +IA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +IA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +IA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +IA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +IA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +IA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +IA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +IA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +IA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +IA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +IA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +IA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +IA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +IA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +IA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +IA,industrial fuel use,coal,coal,2005,BC,0.052178527 +IA,industrial fuel use,coal,coal,2010,BC,0.054113893 +IA,industrial fuel use,coal,coal,2015,BC,0.054816673 +IA,industrial fuel use,coal,coal,2020,BC,0.051442317 +IA,industrial fuel use,coal,coal,2025,BC,0.05280003 +IA,industrial fuel use,coal,coal,2030,BC,0.054819383 +IA,industrial fuel use,coal,coal,2035,BC,0.055934389 +IA,industrial fuel use,coal,coal,2040,BC,0.056737391 +IA,industrial fuel use,coal,coal,2045,BC,0.057341111 +IA,industrial fuel use,coal,coal,2050,BC,0.057867944 +IA,industrial fuel use,coal,coal,2055,BC,0.058307588 +IA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +IA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +IA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +IA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +IA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +IA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +IA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +IA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +IA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +IA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +IA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +IA,industrial fuel use,gas,gas,2005,BC,0.000879555 +IA,industrial fuel use,gas,gas,2010,BC,0.000594596 +IA,industrial fuel use,gas,gas,2015,BC,0.000780779 +IA,industrial fuel use,gas,gas,2020,BC,0.000758542 +IA,industrial fuel use,gas,gas,2025,BC,0.000791704 +IA,industrial fuel use,gas,gas,2030,BC,0.000829295 +IA,industrial fuel use,gas,gas,2035,BC,0.000745895 +IA,industrial fuel use,gas,gas,2040,BC,0.000739727 +IA,industrial fuel use,gas,gas,2045,BC,0.000759191 +IA,industrial fuel use,gas,gas,2050,BC,0.000728476 +IA,industrial fuel use,gas,gas,2055,BC,0.000688571 +IA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +IA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +IA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +IA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +IA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +IA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +IA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +IA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +IA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +IA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +IA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +IA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +IA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +IA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +IA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +IA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +IA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +IA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +IA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +IA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +IA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +IA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +IA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +IA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +IA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +IA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +IA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +IA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +IA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +IA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +IA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +IA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +IA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +IA,industrial fuel use,coal,coal,2005,OC,0.004608879 +IA,industrial fuel use,coal,coal,2010,OC,0.004949044 +IA,industrial fuel use,coal,coal,2015,OC,0.005291355 +IA,industrial fuel use,coal,coal,2020,OC,0.005047635 +IA,industrial fuel use,coal,coal,2025,OC,0.005240698 +IA,industrial fuel use,coal,coal,2030,OC,0.005398598 +IA,industrial fuel use,coal,coal,2035,OC,0.005483036 +IA,industrial fuel use,coal,coal,2040,OC,0.005583473 +IA,industrial fuel use,coal,coal,2045,OC,0.005638434 +IA,industrial fuel use,coal,coal,2050,OC,0.005723515 +IA,industrial fuel use,coal,coal,2055,OC,0.005777195 +IA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +IA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +IA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +IA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +IA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +IA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +IA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +IA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +IA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +IA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +IA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +IA,industrial fuel use,gas,gas,2005,OC,0.000586894 +IA,industrial fuel use,gas,gas,2010,OC,0.000538986 +IA,industrial fuel use,gas,gas,2015,OC,0.000406177 +IA,industrial fuel use,gas,gas,2020,OC,0.000436774 +IA,industrial fuel use,gas,gas,2025,OC,0.000431434 +IA,industrial fuel use,gas,gas,2030,OC,0.000454497 +IA,industrial fuel use,gas,gas,2035,OC,0.0005142 +IA,industrial fuel use,gas,gas,2040,OC,0.000542203 +IA,industrial fuel use,gas,gas,2045,OC,0.0005354 +IA,industrial fuel use,gas,gas,2050,OC,0.000552822 +IA,industrial fuel use,gas,gas,2055,OC,0.000563528 +IA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +IA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +IA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +IA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +IA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +IA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +IA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +IA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +IA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +IA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +IA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +IA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +IA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +IA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +IA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +IA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +IA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +IA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +IA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +IA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +IA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +IA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +IA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +IA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +IA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +IA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +IA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +IA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +IA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +IA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +IA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +IA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +IA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +IA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +IA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +IA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +IA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +IA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +IA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +IA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +IA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +IA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +IA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +IA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +IA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +IA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +IA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +IA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +IA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +IA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +IA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +IA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +IA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +IA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +IA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +IA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +IA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +IA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +IA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +IA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +IA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +IA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +IA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +IA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +IA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +IA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +IA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +IA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +IA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +IA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +IA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +IA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +IA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +IA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +IA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +IA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +IA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +IA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +IA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +IA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +IA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +IA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +IA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +IA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +IA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +IA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +IA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +IA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +IA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +IA,industrial fuel use,biomass,biomass,2005,CO2,0 +IA,industrial fuel use,biomass,biomass,2010,CO2,0 +IA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +IA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +IA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +IA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +IA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +IA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +IA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +IA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +IA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +IA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +IA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +IA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +IA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +IA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +IA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +IA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +IA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +IA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +IA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +IA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +ID,industrial fuel use,coal,coal,2005,NOx,0.261565752 +ID,industrial fuel use,coal,coal,2010,NOx,0.24128762 +ID,industrial fuel use,coal,coal,2015,NOx,0.247879608 +ID,industrial fuel use,coal,coal,2020,NOx,0.234312556 +ID,industrial fuel use,coal,coal,2025,NOx,0.240398293 +ID,industrial fuel use,coal,coal,2030,NOx,0.246677964 +ID,industrial fuel use,coal,coal,2035,NOx,0.250299201 +ID,industrial fuel use,coal,coal,2040,NOx,0.253554811 +ID,industrial fuel use,coal,coal,2045,NOx,0.255578056 +ID,industrial fuel use,coal,coal,2050,NOx,0.258549854 +ID,industrial fuel use,coal,coal,2055,NOx,0.26014596 +ID,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +ID,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +ID,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +ID,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +ID,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +ID,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +ID,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +ID,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +ID,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +ID,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +ID,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +ID,industrial fuel use,gas,gas,2005,NOx,0.080919016 +ID,industrial fuel use,gas,gas,2010,NOx,0.044952568 +ID,industrial fuel use,gas,gas,2015,NOx,0.037239142 +ID,industrial fuel use,gas,gas,2020,NOx,0.040745965 +ID,industrial fuel use,gas,gas,2025,NOx,0.042574105 +ID,industrial fuel use,gas,gas,2030,NOx,0.045347383 +ID,industrial fuel use,gas,gas,2035,NOx,0.048574619 +ID,industrial fuel use,gas,gas,2040,NOx,0.050422899 +ID,industrial fuel use,gas,gas,2045,NOx,0.050680722 +ID,industrial fuel use,gas,gas,2050,NOx,0.0517343 +ID,industrial fuel use,gas,gas,2055,NOx,0.052443137 +ID,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +ID,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +ID,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +ID,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +ID,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +ID,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +ID,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +ID,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +ID,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +ID,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +ID,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +ID,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +ID,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +ID,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +ID,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +ID,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +ID,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +ID,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +ID,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +ID,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +ID,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +ID,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +ID,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +ID,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +ID,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +ID,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +ID,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +ID,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +ID,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +ID,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +ID,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +ID,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +ID,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +ID,industrial fuel use,coal,coal,2005,SO2,0.709862367 +ID,industrial fuel use,coal,coal,2010,SO2,0.679592789 +ID,industrial fuel use,coal,coal,2015,SO2,0.590904591 +ID,industrial fuel use,coal,coal,2020,SO2,0.549595621 +ID,industrial fuel use,coal,coal,2025,SO2,0.56430149 +ID,industrial fuel use,coal,coal,2030,SO2,0.576548046 +ID,industrial fuel use,coal,coal,2035,SO2,0.583595424 +ID,industrial fuel use,coal,coal,2040,SO2,0.590805881 +ID,industrial fuel use,coal,coal,2045,SO2,0.596410723 +ID,industrial fuel use,coal,coal,2050,SO2,0.606154195 +ID,industrial fuel use,coal,coal,2055,SO2,0.611234923 +ID,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +ID,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +ID,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +ID,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +ID,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +ID,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +ID,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +ID,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +ID,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +ID,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +ID,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +ID,industrial fuel use,gas,gas,2005,SO2,0.000213988 +ID,industrial fuel use,gas,gas,2010,SO2,0.002761946 +ID,industrial fuel use,gas,gas,2015,SO2,0.002854723 +ID,industrial fuel use,gas,gas,2020,SO2,0.002771127 +ID,industrial fuel use,gas,gas,2025,SO2,0.002798763 +ID,industrial fuel use,gas,gas,2030,SO2,0.002938075 +ID,industrial fuel use,gas,gas,2035,SO2,0.003016098 +ID,industrial fuel use,gas,gas,2040,SO2,0.003118901 +ID,industrial fuel use,gas,gas,2045,SO2,0.00311325 +ID,industrial fuel use,gas,gas,2050,SO2,0.003090451 +ID,industrial fuel use,gas,gas,2055,SO2,0.003025213 +ID,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +ID,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +ID,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +ID,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +ID,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +ID,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +ID,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +ID,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +ID,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +ID,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +ID,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +ID,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +ID,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +ID,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +ID,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +ID,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +ID,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +ID,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +ID,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +ID,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +ID,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +ID,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +ID,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +ID,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +ID,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +ID,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +ID,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +ID,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +ID,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +ID,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +ID,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +ID,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +ID,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +ID,industrial fuel use,coal,coal,2005,PM10,0.136452905 +ID,industrial fuel use,coal,coal,2010,PM10,0.093662835 +ID,industrial fuel use,coal,coal,2015,PM10,0.100887759 +ID,industrial fuel use,coal,coal,2020,PM10,0.094503476 +ID,industrial fuel use,coal,coal,2025,PM10,0.09752377 +ID,industrial fuel use,coal,coal,2030,PM10,0.099823133 +ID,industrial fuel use,coal,coal,2035,PM10,0.101097535 +ID,industrial fuel use,coal,coal,2040,PM10,0.102438117 +ID,industrial fuel use,coal,coal,2045,PM10,0.103553978 +ID,industrial fuel use,coal,coal,2050,PM10,0.105393893 +ID,industrial fuel use,coal,coal,2055,PM10,0.106304221 +ID,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +ID,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +ID,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +ID,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +ID,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +ID,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +ID,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +ID,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +ID,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +ID,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +ID,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +ID,industrial fuel use,gas,gas,2005,PM10,0.002144603 +ID,industrial fuel use,gas,gas,2010,PM10,0.004157892 +ID,industrial fuel use,gas,gas,2015,PM10,0.004308637 +ID,industrial fuel use,gas,gas,2020,PM10,0.004261296 +ID,industrial fuel use,gas,gas,2025,PM10,0.004334357 +ID,industrial fuel use,gas,gas,2030,PM10,0.00454497 +ID,industrial fuel use,gas,gas,2035,PM10,0.004581054 +ID,industrial fuel use,gas,gas,2040,PM10,0.004690204 +ID,industrial fuel use,gas,gas,2045,PM10,0.004695842 +ID,industrial fuel use,gas,gas,2050,PM10,0.004649052 +ID,industrial fuel use,gas,gas,2055,PM10,0.00454824 +ID,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +ID,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +ID,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +ID,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +ID,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +ID,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +ID,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +ID,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +ID,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +ID,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +ID,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +ID,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +ID,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +ID,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +ID,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +ID,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +ID,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +ID,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +ID,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +ID,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +ID,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +ID,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +ID,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +ID,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +ID,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +ID,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +ID,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +ID,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +ID,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +ID,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +ID,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +ID,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +ID,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +ID,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +ID,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +ID,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +ID,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +ID,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +ID,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +ID,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +ID,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +ID,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +ID,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +ID,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +ID,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +ID,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +ID,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +ID,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +ID,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +ID,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +ID,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +ID,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +ID,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +ID,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +ID,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +ID,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +ID,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +ID,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +ID,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +ID,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +ID,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +ID,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +ID,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +ID,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +ID,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +ID,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +ID,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +ID,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +ID,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +ID,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +ID,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +ID,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +ID,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +ID,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +ID,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +ID,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +ID,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +ID,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +ID,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +ID,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +ID,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +ID,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +ID,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +ID,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +ID,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +ID,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +ID,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +ID,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +ID,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +ID,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +ID,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +ID,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +ID,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +ID,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +ID,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +ID,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +ID,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +ID,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +ID,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +ID,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +ID,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +ID,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +ID,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +ID,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +ID,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +ID,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +ID,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +ID,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +ID,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +ID,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +ID,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +ID,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +ID,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +ID,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +ID,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +ID,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +ID,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +ID,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +ID,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +ID,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +ID,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +ID,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +ID,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +ID,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +ID,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +ID,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +ID,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +ID,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +ID,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +ID,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +ID,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +ID,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +ID,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +ID,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +ID,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +ID,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +ID,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +ID,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +ID,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +ID,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +ID,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +ID,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +ID,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +ID,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +ID,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +ID,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +ID,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +ID,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +ID,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +ID,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +ID,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +ID,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +ID,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +ID,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +ID,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +ID,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +ID,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +ID,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +ID,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +ID,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +ID,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +ID,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +ID,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +ID,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +ID,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +ID,industrial fuel use,coal,coal,2005,CO,0.069434106 +ID,industrial fuel use,coal,coal,2010,CO,0.07723114 +ID,industrial fuel use,coal,coal,2015,CO,0.068281575 +ID,industrial fuel use,coal,coal,2020,CO,0.063753622 +ID,industrial fuel use,coal,coal,2025,CO,0.065761399 +ID,industrial fuel use,coal,coal,2030,CO,0.067959367 +ID,industrial fuel use,coal,coal,2035,CO,0.069173462 +ID,industrial fuel use,coal,coal,2040,CO,0.070202866 +ID,industrial fuel use,coal,coal,2045,CO,0.071098148 +ID,industrial fuel use,coal,coal,2050,CO,0.072063393 +ID,industrial fuel use,coal,coal,2055,CO,0.072511454 +ID,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +ID,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +ID,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +ID,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +ID,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +ID,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +ID,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +ID,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +ID,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +ID,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +ID,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +ID,industrial fuel use,gas,gas,2005,CO,0.054958784 +ID,industrial fuel use,gas,gas,2010,CO,0.041119779 +ID,industrial fuel use,gas,gas,2015,CO,0.037376927 +ID,industrial fuel use,gas,gas,2020,CO,0.042196984 +ID,industrial fuel use,gas,gas,2025,CO,0.046340259 +ID,industrial fuel use,gas,gas,2030,CO,0.051044751 +ID,industrial fuel use,gas,gas,2035,CO,0.048377476 +ID,industrial fuel use,gas,gas,2040,CO,0.04844371 +ID,industrial fuel use,gas,gas,2045,CO,0.049325699 +ID,industrial fuel use,gas,gas,2050,CO,0.048085677 +ID,industrial fuel use,gas,gas,2055,CO,0.046506083 +ID,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +ID,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +ID,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +ID,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +ID,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +ID,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +ID,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +ID,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +ID,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +ID,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +ID,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +ID,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +ID,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +ID,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +ID,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +ID,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +ID,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +ID,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +ID,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +ID,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +ID,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +ID,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +ID,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +ID,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +ID,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +ID,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +ID,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +ID,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +ID,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +ID,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +ID,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +ID,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +ID,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +ID,industrial fuel use,coal,coal,2005,CH4,0.008615911 +ID,industrial fuel use,coal,coal,2010,CH4,0.007087118 +ID,industrial fuel use,coal,coal,2015,CH4,0.007645512 +ID,industrial fuel use,coal,coal,2020,CH4,0.007093206 +ID,industrial fuel use,coal,coal,2025,CH4,0.007280827 +ID,industrial fuel use,coal,coal,2030,CH4,0.007426545 +ID,industrial fuel use,coal,coal,2035,CH4,0.007524098 +ID,industrial fuel use,coal,coal,2040,CH4,0.007621441 +ID,industrial fuel use,coal,coal,2045,CH4,0.007691307 +ID,industrial fuel use,coal,coal,2050,CH4,0.007801358 +ID,industrial fuel use,coal,coal,2055,CH4,0.007871907 +ID,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +ID,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +ID,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +ID,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +ID,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +ID,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +ID,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +ID,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +ID,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +ID,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +ID,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +ID,industrial fuel use,gas,gas,2005,CH4,0.002575726 +ID,industrial fuel use,gas,gas,2010,CH4,0.0036902 +ID,industrial fuel use,gas,gas,2015,CH4,0.001847174 +ID,industrial fuel use,gas,gas,2020,CH4,0.002575374 +ID,industrial fuel use,gas,gas,2025,CH4,0.002470739 +ID,industrial fuel use,gas,gas,2030,CH4,0.002514812 +ID,industrial fuel use,gas,gas,2035,CH4,0.004402202 +ID,industrial fuel use,gas,gas,2040,CH4,0.005194877 +ID,industrial fuel use,gas,gas,2045,CH4,0.005264291 +ID,industrial fuel use,gas,gas,2050,CH4,0.006086388 +ID,industrial fuel use,gas,gas,2055,CH4,0.006850703 +ID,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +ID,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +ID,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +ID,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +ID,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +ID,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +ID,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +ID,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +ID,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +ID,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +ID,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +ID,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +ID,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +ID,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +ID,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +ID,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +ID,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +ID,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +ID,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +ID,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +ID,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +ID,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +ID,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +ID,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +ID,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +ID,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +ID,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +ID,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +ID,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +ID,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +ID,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +ID,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +ID,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +ID,industrial fuel use,coal,coal,2005,N2O,0.002945881 +ID,industrial fuel use,coal,coal,2010,N2O,0.004699422 +ID,industrial fuel use,coal,coal,2015,N2O,0.003718249 +ID,industrial fuel use,coal,coal,2020,N2O,0.003503987 +ID,industrial fuel use,coal,coal,2025,N2O,0.003902448 +ID,industrial fuel use,coal,coal,2030,N2O,0.005231917 +ID,industrial fuel use,coal,coal,2035,N2O,0.005844861 +ID,industrial fuel use,coal,coal,2040,N2O,0.006123209 +ID,industrial fuel use,coal,coal,2045,N2O,0.006493024 +ID,industrial fuel use,coal,coal,2050,N2O,0.00643187 +ID,industrial fuel use,coal,coal,2055,N2O,0.006580646 +ID,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +ID,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +ID,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +ID,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +ID,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +ID,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +ID,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +ID,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +ID,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +ID,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +ID,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +ID,industrial fuel use,gas,gas,2005,N2O,0.000509795 +ID,industrial fuel use,gas,gas,2010,N2O,0.000459136 +ID,industrial fuel use,gas,gas,2015,N2O,0.000457847 +ID,industrial fuel use,gas,gas,2020,N2O,0.000469807 +ID,industrial fuel use,gas,gas,2025,N2O,0.0004748 +ID,industrial fuel use,gas,gas,2030,N2O,0.000493269 +ID,industrial fuel use,gas,gas,2035,N2O,0.0005142 +ID,industrial fuel use,gas,gas,2040,N2O,0.000525413 +ID,industrial fuel use,gas,gas,2045,N2O,0.000530678 +ID,industrial fuel use,gas,gas,2050,N2O,0.000534097 +ID,industrial fuel use,gas,gas,2055,N2O,0.000535185 +ID,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +ID,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +ID,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +ID,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +ID,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +ID,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +ID,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +ID,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +ID,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +ID,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +ID,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +ID,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +ID,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +ID,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +ID,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +ID,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +ID,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +ID,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +ID,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +ID,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +ID,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +ID,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +ID,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +ID,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +ID,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +ID,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +ID,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +ID,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +ID,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +ID,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +ID,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +ID,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +ID,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +ID,industrial fuel use,coal,coal,2005,BC,0.052178527 +ID,industrial fuel use,coal,coal,2010,BC,0.054113893 +ID,industrial fuel use,coal,coal,2015,BC,0.054816673 +ID,industrial fuel use,coal,coal,2020,BC,0.051442317 +ID,industrial fuel use,coal,coal,2025,BC,0.05280003 +ID,industrial fuel use,coal,coal,2030,BC,0.054819383 +ID,industrial fuel use,coal,coal,2035,BC,0.055934389 +ID,industrial fuel use,coal,coal,2040,BC,0.056737391 +ID,industrial fuel use,coal,coal,2045,BC,0.057341111 +ID,industrial fuel use,coal,coal,2050,BC,0.057867944 +ID,industrial fuel use,coal,coal,2055,BC,0.058307588 +ID,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +ID,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +ID,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +ID,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +ID,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +ID,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +ID,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +ID,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +ID,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +ID,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +ID,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +ID,industrial fuel use,gas,gas,2005,BC,0.000879555 +ID,industrial fuel use,gas,gas,2010,BC,0.000594596 +ID,industrial fuel use,gas,gas,2015,BC,0.000780779 +ID,industrial fuel use,gas,gas,2020,BC,0.000758542 +ID,industrial fuel use,gas,gas,2025,BC,0.000791704 +ID,industrial fuel use,gas,gas,2030,BC,0.000829295 +ID,industrial fuel use,gas,gas,2035,BC,0.000745895 +ID,industrial fuel use,gas,gas,2040,BC,0.000739727 +ID,industrial fuel use,gas,gas,2045,BC,0.000759191 +ID,industrial fuel use,gas,gas,2050,BC,0.000728476 +ID,industrial fuel use,gas,gas,2055,BC,0.000688571 +ID,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +ID,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +ID,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +ID,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +ID,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +ID,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +ID,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +ID,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +ID,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +ID,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +ID,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +ID,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +ID,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +ID,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +ID,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +ID,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +ID,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +ID,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +ID,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +ID,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +ID,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +ID,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +ID,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +ID,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +ID,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +ID,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +ID,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +ID,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +ID,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +ID,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +ID,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +ID,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +ID,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +ID,industrial fuel use,coal,coal,2005,OC,0.004608879 +ID,industrial fuel use,coal,coal,2010,OC,0.004949044 +ID,industrial fuel use,coal,coal,2015,OC,0.005291355 +ID,industrial fuel use,coal,coal,2020,OC,0.005047635 +ID,industrial fuel use,coal,coal,2025,OC,0.005240698 +ID,industrial fuel use,coal,coal,2030,OC,0.005398598 +ID,industrial fuel use,coal,coal,2035,OC,0.005483036 +ID,industrial fuel use,coal,coal,2040,OC,0.005583473 +ID,industrial fuel use,coal,coal,2045,OC,0.005638434 +ID,industrial fuel use,coal,coal,2050,OC,0.005723515 +ID,industrial fuel use,coal,coal,2055,OC,0.005777195 +ID,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +ID,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +ID,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +ID,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +ID,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +ID,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +ID,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +ID,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +ID,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +ID,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +ID,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +ID,industrial fuel use,gas,gas,2005,OC,0.000586894 +ID,industrial fuel use,gas,gas,2010,OC,0.000538986 +ID,industrial fuel use,gas,gas,2015,OC,0.000406177 +ID,industrial fuel use,gas,gas,2020,OC,0.000436774 +ID,industrial fuel use,gas,gas,2025,OC,0.000431434 +ID,industrial fuel use,gas,gas,2030,OC,0.000454497 +ID,industrial fuel use,gas,gas,2035,OC,0.0005142 +ID,industrial fuel use,gas,gas,2040,OC,0.000542203 +ID,industrial fuel use,gas,gas,2045,OC,0.0005354 +ID,industrial fuel use,gas,gas,2050,OC,0.000552822 +ID,industrial fuel use,gas,gas,2055,OC,0.000563528 +ID,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +ID,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +ID,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +ID,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +ID,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +ID,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +ID,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +ID,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +ID,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +ID,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +ID,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +ID,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +ID,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +ID,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +ID,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +ID,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +ID,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +ID,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +ID,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +ID,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +ID,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +ID,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +ID,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +ID,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +ID,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +ID,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +ID,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +ID,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +ID,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +ID,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +ID,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +ID,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +ID,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +ID,industrial fuel use,coal,coal,2005,CO2,0.022413751 +ID,industrial fuel use,coal,coal,2010,CO2,0.023247485 +ID,industrial fuel use,coal,coal,2015,CO2,0.023542577 +ID,industrial fuel use,coal,coal,2020,CO2,0.022100946 +ID,industrial fuel use,coal,coal,2025,CO2,0.022682182 +ID,industrial fuel use,coal,coal,2030,CO2,0.023544891 +ID,industrial fuel use,coal,coal,2035,CO2,0.024022124 +ID,industrial fuel use,coal,coal,2040,CO2,0.024371859 +ID,industrial fuel use,coal,coal,2045,CO2,0.024626877 +ID,industrial fuel use,coal,coal,2050,CO2,0.024861999 +ID,industrial fuel use,coal,coal,2055,CO2,0.025047846 +ID,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +ID,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +ID,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +ID,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +ID,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +ID,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +ID,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +ID,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +ID,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +ID,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +ID,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +ID,industrial fuel use,gas,gas,2005,CO2,0.010100215 +ID,industrial fuel use,gas,gas,2010,CO2,0.008735772 +ID,industrial fuel use,gas,gas,2015,CO2,0.008975567 +ID,industrial fuel use,gas,gas,2020,CO2,0.009141549 +ID,industrial fuel use,gas,gas,2025,CO2,0.009319403 +ID,industrial fuel use,gas,gas,2030,CO2,0.009661635 +ID,industrial fuel use,gas,gas,2035,CO2,0.009858394 +ID,industrial fuel use,gas,gas,2040,CO2,0.010090146 +ID,industrial fuel use,gas,gas,2045,CO2,0.010177486 +ID,industrial fuel use,gas,gas,2050,CO2,0.010210503 +ID,industrial fuel use,gas,gas,2055,CO2,0.010168744 +ID,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +ID,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +ID,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +ID,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +ID,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +ID,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +ID,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +ID,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +ID,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +ID,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +ID,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +ID,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +ID,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +ID,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +ID,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +ID,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +ID,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +ID,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +ID,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +ID,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +ID,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +ID,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +ID,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +ID,industrial fuel use,biomass,biomass,2005,CO2,0 +ID,industrial fuel use,biomass,biomass,2010,CO2,0 +ID,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +ID,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +ID,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +ID,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +ID,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +ID,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +ID,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +ID,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +ID,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +ID,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +ID,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +ID,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +ID,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +ID,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +ID,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +ID,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +ID,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +ID,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +ID,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +ID,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +IL,industrial fuel use,coal,coal,2005,NOx,0.261565752 +IL,industrial fuel use,coal,coal,2010,NOx,0.24128762 +IL,industrial fuel use,coal,coal,2015,NOx,0.247879608 +IL,industrial fuel use,coal,coal,2020,NOx,0.234312556 +IL,industrial fuel use,coal,coal,2025,NOx,0.240398293 +IL,industrial fuel use,coal,coal,2030,NOx,0.246677964 +IL,industrial fuel use,coal,coal,2035,NOx,0.250299201 +IL,industrial fuel use,coal,coal,2040,NOx,0.253554811 +IL,industrial fuel use,coal,coal,2045,NOx,0.255578056 +IL,industrial fuel use,coal,coal,2050,NOx,0.258549854 +IL,industrial fuel use,coal,coal,2055,NOx,0.26014596 +IL,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +IL,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +IL,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +IL,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +IL,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +IL,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +IL,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +IL,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +IL,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +IL,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +IL,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +IL,industrial fuel use,gas,gas,2005,NOx,0.080919016 +IL,industrial fuel use,gas,gas,2010,NOx,0.044952568 +IL,industrial fuel use,gas,gas,2015,NOx,0.037239142 +IL,industrial fuel use,gas,gas,2020,NOx,0.040745965 +IL,industrial fuel use,gas,gas,2025,NOx,0.042574105 +IL,industrial fuel use,gas,gas,2030,NOx,0.045347383 +IL,industrial fuel use,gas,gas,2035,NOx,0.048574619 +IL,industrial fuel use,gas,gas,2040,NOx,0.050422899 +IL,industrial fuel use,gas,gas,2045,NOx,0.050680722 +IL,industrial fuel use,gas,gas,2050,NOx,0.0517343 +IL,industrial fuel use,gas,gas,2055,NOx,0.052443137 +IL,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +IL,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +IL,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +IL,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +IL,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +IL,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +IL,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +IL,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +IL,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +IL,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +IL,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +IL,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +IL,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +IL,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +IL,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +IL,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +IL,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +IL,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +IL,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +IL,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +IL,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +IL,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +IL,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +IL,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +IL,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +IL,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +IL,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +IL,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +IL,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +IL,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +IL,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +IL,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +IL,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +IL,industrial fuel use,coal,coal,2005,SO2,0.709862367 +IL,industrial fuel use,coal,coal,2010,SO2,0.679592789 +IL,industrial fuel use,coal,coal,2015,SO2,0.590904591 +IL,industrial fuel use,coal,coal,2020,SO2,0.549595621 +IL,industrial fuel use,coal,coal,2025,SO2,0.56430149 +IL,industrial fuel use,coal,coal,2030,SO2,0.576548046 +IL,industrial fuel use,coal,coal,2035,SO2,0.583595424 +IL,industrial fuel use,coal,coal,2040,SO2,0.590805881 +IL,industrial fuel use,coal,coal,2045,SO2,0.596410723 +IL,industrial fuel use,coal,coal,2050,SO2,0.606154195 +IL,industrial fuel use,coal,coal,2055,SO2,0.611234923 +IL,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +IL,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +IL,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +IL,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +IL,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +IL,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +IL,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +IL,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +IL,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +IL,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +IL,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +IL,industrial fuel use,gas,gas,2005,SO2,0.000213988 +IL,industrial fuel use,gas,gas,2010,SO2,0.002761946 +IL,industrial fuel use,gas,gas,2015,SO2,0.002854723 +IL,industrial fuel use,gas,gas,2020,SO2,0.002771127 +IL,industrial fuel use,gas,gas,2025,SO2,0.002798763 +IL,industrial fuel use,gas,gas,2030,SO2,0.002938075 +IL,industrial fuel use,gas,gas,2035,SO2,0.003016098 +IL,industrial fuel use,gas,gas,2040,SO2,0.003118901 +IL,industrial fuel use,gas,gas,2045,SO2,0.00311325 +IL,industrial fuel use,gas,gas,2050,SO2,0.003090451 +IL,industrial fuel use,gas,gas,2055,SO2,0.003025213 +IL,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +IL,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +IL,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +IL,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +IL,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +IL,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +IL,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +IL,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +IL,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +IL,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +IL,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +IL,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +IL,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +IL,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +IL,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +IL,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +IL,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +IL,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +IL,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +IL,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +IL,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +IL,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +IL,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +IL,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +IL,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +IL,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +IL,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +IL,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +IL,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +IL,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +IL,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +IL,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +IL,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +IL,industrial fuel use,coal,coal,2005,PM10,0.136452905 +IL,industrial fuel use,coal,coal,2010,PM10,0.093662835 +IL,industrial fuel use,coal,coal,2015,PM10,0.100887759 +IL,industrial fuel use,coal,coal,2020,PM10,0.094503476 +IL,industrial fuel use,coal,coal,2025,PM10,0.09752377 +IL,industrial fuel use,coal,coal,2030,PM10,0.099823133 +IL,industrial fuel use,coal,coal,2035,PM10,0.101097535 +IL,industrial fuel use,coal,coal,2040,PM10,0.102438117 +IL,industrial fuel use,coal,coal,2045,PM10,0.103553978 +IL,industrial fuel use,coal,coal,2050,PM10,0.105393893 +IL,industrial fuel use,coal,coal,2055,PM10,0.106304221 +IL,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +IL,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +IL,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +IL,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +IL,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +IL,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +IL,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +IL,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +IL,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +IL,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +IL,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +IL,industrial fuel use,gas,gas,2005,PM10,0.002144603 +IL,industrial fuel use,gas,gas,2010,PM10,0.004157892 +IL,industrial fuel use,gas,gas,2015,PM10,0.004308637 +IL,industrial fuel use,gas,gas,2020,PM10,0.004261296 +IL,industrial fuel use,gas,gas,2025,PM10,0.004334357 +IL,industrial fuel use,gas,gas,2030,PM10,0.00454497 +IL,industrial fuel use,gas,gas,2035,PM10,0.004581054 +IL,industrial fuel use,gas,gas,2040,PM10,0.004690204 +IL,industrial fuel use,gas,gas,2045,PM10,0.004695842 +IL,industrial fuel use,gas,gas,2050,PM10,0.004649052 +IL,industrial fuel use,gas,gas,2055,PM10,0.00454824 +IL,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +IL,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +IL,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +IL,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +IL,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +IL,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +IL,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +IL,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +IL,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +IL,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +IL,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +IL,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +IL,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +IL,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +IL,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +IL,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +IL,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +IL,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +IL,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +IL,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +IL,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +IL,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +IL,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +IL,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +IL,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +IL,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +IL,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +IL,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +IL,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +IL,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +IL,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +IL,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +IL,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +IL,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +IL,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +IL,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +IL,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +IL,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +IL,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +IL,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +IL,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +IL,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +IL,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +IL,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +IL,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +IL,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +IL,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +IL,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +IL,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +IL,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +IL,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +IL,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +IL,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +IL,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +IL,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +IL,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +IL,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +IL,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +IL,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +IL,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +IL,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +IL,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +IL,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +IL,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +IL,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +IL,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +IL,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +IL,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +IL,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +IL,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +IL,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +IL,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +IL,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +IL,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +IL,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +IL,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +IL,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +IL,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +IL,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +IL,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +IL,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +IL,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +IL,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +IL,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +IL,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +IL,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +IL,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +IL,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +IL,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +IL,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +IL,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +IL,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +IL,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +IL,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +IL,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +IL,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +IL,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +IL,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +IL,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +IL,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +IL,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +IL,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +IL,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +IL,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +IL,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +IL,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +IL,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +IL,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +IL,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +IL,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +IL,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +IL,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +IL,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +IL,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +IL,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +IL,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +IL,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +IL,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +IL,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +IL,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +IL,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +IL,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +IL,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +IL,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +IL,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +IL,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +IL,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +IL,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +IL,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +IL,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +IL,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +IL,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +IL,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +IL,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +IL,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +IL,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +IL,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +IL,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +IL,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +IL,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +IL,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +IL,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +IL,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +IL,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +IL,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +IL,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +IL,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +IL,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +IL,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +IL,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +IL,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +IL,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +IL,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +IL,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +IL,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +IL,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +IL,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +IL,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +IL,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +IL,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +IL,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +IL,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +IL,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +IL,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +IL,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +IL,industrial fuel use,coal,coal,2005,CO,0.069434106 +IL,industrial fuel use,coal,coal,2010,CO,0.07723114 +IL,industrial fuel use,coal,coal,2015,CO,0.068281575 +IL,industrial fuel use,coal,coal,2020,CO,0.063753622 +IL,industrial fuel use,coal,coal,2025,CO,0.065761399 +IL,industrial fuel use,coal,coal,2030,CO,0.067959367 +IL,industrial fuel use,coal,coal,2035,CO,0.069173462 +IL,industrial fuel use,coal,coal,2040,CO,0.070202866 +IL,industrial fuel use,coal,coal,2045,CO,0.071098148 +IL,industrial fuel use,coal,coal,2050,CO,0.072063393 +IL,industrial fuel use,coal,coal,2055,CO,0.072511454 +IL,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +IL,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +IL,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +IL,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +IL,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +IL,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +IL,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +IL,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +IL,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +IL,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +IL,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +IL,industrial fuel use,gas,gas,2005,CO,0.054958784 +IL,industrial fuel use,gas,gas,2010,CO,0.041119779 +IL,industrial fuel use,gas,gas,2015,CO,0.037376927 +IL,industrial fuel use,gas,gas,2020,CO,0.042196984 +IL,industrial fuel use,gas,gas,2025,CO,0.046340259 +IL,industrial fuel use,gas,gas,2030,CO,0.051044751 +IL,industrial fuel use,gas,gas,2035,CO,0.048377476 +IL,industrial fuel use,gas,gas,2040,CO,0.04844371 +IL,industrial fuel use,gas,gas,2045,CO,0.049325699 +IL,industrial fuel use,gas,gas,2050,CO,0.048085677 +IL,industrial fuel use,gas,gas,2055,CO,0.046506083 +IL,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +IL,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +IL,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +IL,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +IL,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +IL,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +IL,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +IL,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +IL,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +IL,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +IL,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +IL,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +IL,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +IL,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +IL,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +IL,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +IL,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +IL,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +IL,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +IL,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +IL,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +IL,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +IL,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +IL,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +IL,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +IL,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +IL,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +IL,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +IL,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +IL,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +IL,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +IL,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +IL,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +IL,industrial fuel use,coal,coal,2005,CH4,0.008615911 +IL,industrial fuel use,coal,coal,2010,CH4,0.007087118 +IL,industrial fuel use,coal,coal,2015,CH4,0.007645512 +IL,industrial fuel use,coal,coal,2020,CH4,0.007093206 +IL,industrial fuel use,coal,coal,2025,CH4,0.007280827 +IL,industrial fuel use,coal,coal,2030,CH4,0.007426545 +IL,industrial fuel use,coal,coal,2035,CH4,0.007524098 +IL,industrial fuel use,coal,coal,2040,CH4,0.007621441 +IL,industrial fuel use,coal,coal,2045,CH4,0.007691307 +IL,industrial fuel use,coal,coal,2050,CH4,0.007801358 +IL,industrial fuel use,coal,coal,2055,CH4,0.007871907 +IL,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +IL,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +IL,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +IL,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +IL,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +IL,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +IL,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +IL,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +IL,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +IL,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +IL,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +IL,industrial fuel use,gas,gas,2005,CH4,0.002575726 +IL,industrial fuel use,gas,gas,2010,CH4,0.0036902 +IL,industrial fuel use,gas,gas,2015,CH4,0.001847174 +IL,industrial fuel use,gas,gas,2020,CH4,0.002575374 +IL,industrial fuel use,gas,gas,2025,CH4,0.002470739 +IL,industrial fuel use,gas,gas,2030,CH4,0.002514812 +IL,industrial fuel use,gas,gas,2035,CH4,0.004402202 +IL,industrial fuel use,gas,gas,2040,CH4,0.005194877 +IL,industrial fuel use,gas,gas,2045,CH4,0.005264291 +IL,industrial fuel use,gas,gas,2050,CH4,0.006086388 +IL,industrial fuel use,gas,gas,2055,CH4,0.006850703 +IL,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +IL,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +IL,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +IL,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +IL,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +IL,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +IL,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +IL,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +IL,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +IL,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +IL,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +IL,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +IL,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +IL,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +IL,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +IL,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +IL,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +IL,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +IL,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +IL,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +IL,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +IL,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +IL,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +IL,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +IL,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +IL,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +IL,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +IL,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +IL,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +IL,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +IL,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +IL,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +IL,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +IL,industrial fuel use,coal,coal,2005,N2O,0.002945881 +IL,industrial fuel use,coal,coal,2010,N2O,0.004699422 +IL,industrial fuel use,coal,coal,2015,N2O,0.003718249 +IL,industrial fuel use,coal,coal,2020,N2O,0.003503987 +IL,industrial fuel use,coal,coal,2025,N2O,0.003902448 +IL,industrial fuel use,coal,coal,2030,N2O,0.005231917 +IL,industrial fuel use,coal,coal,2035,N2O,0.005844861 +IL,industrial fuel use,coal,coal,2040,N2O,0.006123209 +IL,industrial fuel use,coal,coal,2045,N2O,0.006493024 +IL,industrial fuel use,coal,coal,2050,N2O,0.00643187 +IL,industrial fuel use,coal,coal,2055,N2O,0.006580646 +IL,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +IL,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +IL,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +IL,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +IL,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +IL,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +IL,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +IL,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +IL,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +IL,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +IL,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +IL,industrial fuel use,gas,gas,2005,N2O,0.000509795 +IL,industrial fuel use,gas,gas,2010,N2O,0.000459136 +IL,industrial fuel use,gas,gas,2015,N2O,0.000457847 +IL,industrial fuel use,gas,gas,2020,N2O,0.000469807 +IL,industrial fuel use,gas,gas,2025,N2O,0.0004748 +IL,industrial fuel use,gas,gas,2030,N2O,0.000493269 +IL,industrial fuel use,gas,gas,2035,N2O,0.0005142 +IL,industrial fuel use,gas,gas,2040,N2O,0.000525413 +IL,industrial fuel use,gas,gas,2045,N2O,0.000530678 +IL,industrial fuel use,gas,gas,2050,N2O,0.000534097 +IL,industrial fuel use,gas,gas,2055,N2O,0.000535185 +IL,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +IL,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +IL,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +IL,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +IL,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +IL,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +IL,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +IL,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +IL,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +IL,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +IL,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +IL,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +IL,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +IL,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +IL,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +IL,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +IL,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +IL,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +IL,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +IL,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +IL,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +IL,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +IL,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +IL,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +IL,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +IL,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +IL,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +IL,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +IL,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +IL,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +IL,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +IL,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +IL,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +IL,industrial fuel use,coal,coal,2005,BC,0.052178527 +IL,industrial fuel use,coal,coal,2010,BC,0.054113893 +IL,industrial fuel use,coal,coal,2015,BC,0.054816673 +IL,industrial fuel use,coal,coal,2020,BC,0.051442317 +IL,industrial fuel use,coal,coal,2025,BC,0.05280003 +IL,industrial fuel use,coal,coal,2030,BC,0.054819383 +IL,industrial fuel use,coal,coal,2035,BC,0.055934389 +IL,industrial fuel use,coal,coal,2040,BC,0.056737391 +IL,industrial fuel use,coal,coal,2045,BC,0.057341111 +IL,industrial fuel use,coal,coal,2050,BC,0.057867944 +IL,industrial fuel use,coal,coal,2055,BC,0.058307588 +IL,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +IL,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +IL,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +IL,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +IL,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +IL,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +IL,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +IL,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +IL,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +IL,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +IL,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +IL,industrial fuel use,gas,gas,2005,BC,0.000879555 +IL,industrial fuel use,gas,gas,2010,BC,0.000594596 +IL,industrial fuel use,gas,gas,2015,BC,0.000780779 +IL,industrial fuel use,gas,gas,2020,BC,0.000758542 +IL,industrial fuel use,gas,gas,2025,BC,0.000791704 +IL,industrial fuel use,gas,gas,2030,BC,0.000829295 +IL,industrial fuel use,gas,gas,2035,BC,0.000745895 +IL,industrial fuel use,gas,gas,2040,BC,0.000739727 +IL,industrial fuel use,gas,gas,2045,BC,0.000759191 +IL,industrial fuel use,gas,gas,2050,BC,0.000728476 +IL,industrial fuel use,gas,gas,2055,BC,0.000688571 +IL,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +IL,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +IL,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +IL,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +IL,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +IL,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +IL,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +IL,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +IL,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +IL,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +IL,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +IL,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +IL,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +IL,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +IL,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +IL,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +IL,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +IL,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +IL,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +IL,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +IL,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +IL,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +IL,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +IL,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +IL,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +IL,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +IL,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +IL,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +IL,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +IL,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +IL,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +IL,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +IL,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +IL,industrial fuel use,coal,coal,2005,OC,0.004608879 +IL,industrial fuel use,coal,coal,2010,OC,0.004949044 +IL,industrial fuel use,coal,coal,2015,OC,0.005291355 +IL,industrial fuel use,coal,coal,2020,OC,0.005047635 +IL,industrial fuel use,coal,coal,2025,OC,0.005240698 +IL,industrial fuel use,coal,coal,2030,OC,0.005398598 +IL,industrial fuel use,coal,coal,2035,OC,0.005483036 +IL,industrial fuel use,coal,coal,2040,OC,0.005583473 +IL,industrial fuel use,coal,coal,2045,OC,0.005638434 +IL,industrial fuel use,coal,coal,2050,OC,0.005723515 +IL,industrial fuel use,coal,coal,2055,OC,0.005777195 +IL,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +IL,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +IL,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +IL,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +IL,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +IL,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +IL,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +IL,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +IL,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +IL,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +IL,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +IL,industrial fuel use,gas,gas,2005,OC,0.000586894 +IL,industrial fuel use,gas,gas,2010,OC,0.000538986 +IL,industrial fuel use,gas,gas,2015,OC,0.000406177 +IL,industrial fuel use,gas,gas,2020,OC,0.000436774 +IL,industrial fuel use,gas,gas,2025,OC,0.000431434 +IL,industrial fuel use,gas,gas,2030,OC,0.000454497 +IL,industrial fuel use,gas,gas,2035,OC,0.0005142 +IL,industrial fuel use,gas,gas,2040,OC,0.000542203 +IL,industrial fuel use,gas,gas,2045,OC,0.0005354 +IL,industrial fuel use,gas,gas,2050,OC,0.000552822 +IL,industrial fuel use,gas,gas,2055,OC,0.000563528 +IL,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +IL,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +IL,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +IL,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +IL,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +IL,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +IL,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +IL,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +IL,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +IL,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +IL,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +IL,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +IL,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +IL,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +IL,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +IL,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +IL,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +IL,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +IL,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +IL,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +IL,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +IL,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +IL,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +IL,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +IL,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +IL,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +IL,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +IL,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +IL,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +IL,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +IL,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +IL,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +IL,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +IL,industrial fuel use,coal,coal,2005,CO2,0.022413751 +IL,industrial fuel use,coal,coal,2010,CO2,0.023247485 +IL,industrial fuel use,coal,coal,2015,CO2,0.023542577 +IL,industrial fuel use,coal,coal,2020,CO2,0.022100946 +IL,industrial fuel use,coal,coal,2025,CO2,0.022682182 +IL,industrial fuel use,coal,coal,2030,CO2,0.023544891 +IL,industrial fuel use,coal,coal,2035,CO2,0.024022124 +IL,industrial fuel use,coal,coal,2040,CO2,0.024371859 +IL,industrial fuel use,coal,coal,2045,CO2,0.024626877 +IL,industrial fuel use,coal,coal,2050,CO2,0.024861999 +IL,industrial fuel use,coal,coal,2055,CO2,0.025047846 +IL,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +IL,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +IL,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +IL,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +IL,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +IL,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +IL,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +IL,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +IL,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +IL,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +IL,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +IL,industrial fuel use,gas,gas,2005,CO2,0.010100215 +IL,industrial fuel use,gas,gas,2010,CO2,0.008735772 +IL,industrial fuel use,gas,gas,2015,CO2,0.008975567 +IL,industrial fuel use,gas,gas,2020,CO2,0.009141549 +IL,industrial fuel use,gas,gas,2025,CO2,0.009319403 +IL,industrial fuel use,gas,gas,2030,CO2,0.009661635 +IL,industrial fuel use,gas,gas,2035,CO2,0.009858394 +IL,industrial fuel use,gas,gas,2040,CO2,0.010090146 +IL,industrial fuel use,gas,gas,2045,CO2,0.010177486 +IL,industrial fuel use,gas,gas,2050,CO2,0.010210503 +IL,industrial fuel use,gas,gas,2055,CO2,0.010168744 +IL,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +IL,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +IL,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +IL,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +IL,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +IL,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +IL,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +IL,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +IL,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +IL,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +IL,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +IL,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +IL,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +IL,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +IL,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +IL,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +IL,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +IL,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +IL,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +IL,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +IL,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +IL,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +IL,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +IL,industrial fuel use,biomass,biomass,2005,CO2,0 +IL,industrial fuel use,biomass,biomass,2010,CO2,0 +IL,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +IL,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +IL,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +IL,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +IL,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +IL,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +IL,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +IL,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +IL,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +IL,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +IL,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +IL,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +IL,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +IL,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +IL,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +IL,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +IL,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +IL,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +IL,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +IL,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +IN,industrial fuel use,coal,coal,2005,NOx,0.261565752 +IN,industrial fuel use,coal,coal,2010,NOx,0.24128762 +IN,industrial fuel use,coal,coal,2015,NOx,0.247879608 +IN,industrial fuel use,coal,coal,2020,NOx,0.234312556 +IN,industrial fuel use,coal,coal,2025,NOx,0.240398293 +IN,industrial fuel use,coal,coal,2030,NOx,0.246677964 +IN,industrial fuel use,coal,coal,2035,NOx,0.250299201 +IN,industrial fuel use,coal,coal,2040,NOx,0.253554811 +IN,industrial fuel use,coal,coal,2045,NOx,0.255578056 +IN,industrial fuel use,coal,coal,2050,NOx,0.258549854 +IN,industrial fuel use,coal,coal,2055,NOx,0.26014596 +IN,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +IN,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +IN,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +IN,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +IN,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +IN,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +IN,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +IN,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +IN,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +IN,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +IN,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +IN,industrial fuel use,gas,gas,2005,NOx,0.080919016 +IN,industrial fuel use,gas,gas,2010,NOx,0.044952568 +IN,industrial fuel use,gas,gas,2015,NOx,0.037239142 +IN,industrial fuel use,gas,gas,2020,NOx,0.040745965 +IN,industrial fuel use,gas,gas,2025,NOx,0.042574105 +IN,industrial fuel use,gas,gas,2030,NOx,0.045347383 +IN,industrial fuel use,gas,gas,2035,NOx,0.048574619 +IN,industrial fuel use,gas,gas,2040,NOx,0.050422899 +IN,industrial fuel use,gas,gas,2045,NOx,0.050680722 +IN,industrial fuel use,gas,gas,2050,NOx,0.0517343 +IN,industrial fuel use,gas,gas,2055,NOx,0.052443137 +IN,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +IN,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +IN,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +IN,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +IN,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +IN,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +IN,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +IN,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +IN,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +IN,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +IN,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +IN,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +IN,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +IN,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +IN,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +IN,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +IN,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +IN,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +IN,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +IN,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +IN,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +IN,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +IN,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +IN,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +IN,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +IN,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +IN,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +IN,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +IN,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +IN,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +IN,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +IN,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +IN,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +IN,industrial fuel use,coal,coal,2005,SO2,0.709862367 +IN,industrial fuel use,coal,coal,2010,SO2,0.679592789 +IN,industrial fuel use,coal,coal,2015,SO2,0.590904591 +IN,industrial fuel use,coal,coal,2020,SO2,0.549595621 +IN,industrial fuel use,coal,coal,2025,SO2,0.56430149 +IN,industrial fuel use,coal,coal,2030,SO2,0.576548046 +IN,industrial fuel use,coal,coal,2035,SO2,0.583595424 +IN,industrial fuel use,coal,coal,2040,SO2,0.590805881 +IN,industrial fuel use,coal,coal,2045,SO2,0.596410723 +IN,industrial fuel use,coal,coal,2050,SO2,0.606154195 +IN,industrial fuel use,coal,coal,2055,SO2,0.611234923 +IN,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +IN,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +IN,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +IN,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +IN,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +IN,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +IN,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +IN,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +IN,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +IN,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +IN,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +IN,industrial fuel use,gas,gas,2005,SO2,0.000213988 +IN,industrial fuel use,gas,gas,2010,SO2,0.002761946 +IN,industrial fuel use,gas,gas,2015,SO2,0.002854723 +IN,industrial fuel use,gas,gas,2020,SO2,0.002771127 +IN,industrial fuel use,gas,gas,2025,SO2,0.002798763 +IN,industrial fuel use,gas,gas,2030,SO2,0.002938075 +IN,industrial fuel use,gas,gas,2035,SO2,0.003016098 +IN,industrial fuel use,gas,gas,2040,SO2,0.003118901 +IN,industrial fuel use,gas,gas,2045,SO2,0.00311325 +IN,industrial fuel use,gas,gas,2050,SO2,0.003090451 +IN,industrial fuel use,gas,gas,2055,SO2,0.003025213 +IN,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +IN,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +IN,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +IN,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +IN,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +IN,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +IN,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +IN,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +IN,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +IN,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +IN,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +IN,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +IN,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +IN,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +IN,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +IN,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +IN,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +IN,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +IN,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +IN,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +IN,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +IN,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +IN,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +IN,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +IN,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +IN,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +IN,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +IN,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +IN,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +IN,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +IN,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +IN,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +IN,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +IN,industrial fuel use,coal,coal,2005,PM10,0.136452905 +IN,industrial fuel use,coal,coal,2010,PM10,0.093662835 +IN,industrial fuel use,coal,coal,2015,PM10,0.100887759 +IN,industrial fuel use,coal,coal,2020,PM10,0.094503476 +IN,industrial fuel use,coal,coal,2025,PM10,0.09752377 +IN,industrial fuel use,coal,coal,2030,PM10,0.099823133 +IN,industrial fuel use,coal,coal,2035,PM10,0.101097535 +IN,industrial fuel use,coal,coal,2040,PM10,0.102438117 +IN,industrial fuel use,coal,coal,2045,PM10,0.103553978 +IN,industrial fuel use,coal,coal,2050,PM10,0.105393893 +IN,industrial fuel use,coal,coal,2055,PM10,0.106304221 +IN,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +IN,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +IN,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +IN,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +IN,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +IN,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +IN,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +IN,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +IN,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +IN,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +IN,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +IN,industrial fuel use,gas,gas,2005,PM10,0.002144603 +IN,industrial fuel use,gas,gas,2010,PM10,0.004157892 +IN,industrial fuel use,gas,gas,2015,PM10,0.004308637 +IN,industrial fuel use,gas,gas,2020,PM10,0.004261296 +IN,industrial fuel use,gas,gas,2025,PM10,0.004334357 +IN,industrial fuel use,gas,gas,2030,PM10,0.00454497 +IN,industrial fuel use,gas,gas,2035,PM10,0.004581054 +IN,industrial fuel use,gas,gas,2040,PM10,0.004690204 +IN,industrial fuel use,gas,gas,2045,PM10,0.004695842 +IN,industrial fuel use,gas,gas,2050,PM10,0.004649052 +IN,industrial fuel use,gas,gas,2055,PM10,0.00454824 +IN,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +IN,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +IN,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +IN,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +IN,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +IN,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +IN,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +IN,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +IN,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +IN,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +IN,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +IN,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +IN,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +IN,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +IN,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +IN,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +IN,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +IN,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +IN,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +IN,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +IN,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +IN,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +IN,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +IN,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +IN,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +IN,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +IN,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +IN,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +IN,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +IN,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +IN,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +IN,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +IN,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +IN,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +IN,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +IN,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +IN,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +IN,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +IN,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +IN,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +IN,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +IN,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +IN,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +IN,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +IN,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +IN,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +IN,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +IN,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +IN,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +IN,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +IN,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +IN,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +IN,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +IN,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +IN,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +IN,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +IN,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +IN,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +IN,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +IN,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +IN,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +IN,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +IN,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +IN,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +IN,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +IN,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +IN,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +IN,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +IN,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +IN,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +IN,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +IN,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +IN,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +IN,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +IN,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +IN,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +IN,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +IN,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +IN,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +IN,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +IN,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +IN,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +IN,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +IN,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +IN,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +IN,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +IN,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +IN,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +IN,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +IN,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +IN,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +IN,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +IN,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +IN,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +IN,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +IN,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +IN,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +IN,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +IN,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +IN,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +IN,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +IN,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +IN,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +IN,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +IN,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +IN,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +IN,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +IN,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +IN,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +IN,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +IN,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +IN,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +IN,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +IN,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +IN,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +IN,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +IN,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +IN,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +IN,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +IN,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +IN,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +IN,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +IN,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +IN,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +IN,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +IN,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +IN,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +IN,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +IN,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +IN,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +IN,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +IN,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +IN,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +IN,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +IN,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +IN,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +IN,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +IN,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +IN,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +IN,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +IN,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +IN,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +IN,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +IN,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +IN,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +IN,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +IN,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +IN,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +IN,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +IN,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +IN,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +IN,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +IN,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +IN,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +IN,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +IN,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +IN,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +IN,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +IN,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +IN,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +IN,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +IN,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +IN,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +IN,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +IN,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +IN,industrial fuel use,coal,coal,2005,CO,0.069434106 +IN,industrial fuel use,coal,coal,2010,CO,0.07723114 +IN,industrial fuel use,coal,coal,2015,CO,0.068281575 +IN,industrial fuel use,coal,coal,2020,CO,0.063753622 +IN,industrial fuel use,coal,coal,2025,CO,0.065761399 +IN,industrial fuel use,coal,coal,2030,CO,0.067959367 +IN,industrial fuel use,coal,coal,2035,CO,0.069173462 +IN,industrial fuel use,coal,coal,2040,CO,0.070202866 +IN,industrial fuel use,coal,coal,2045,CO,0.071098148 +IN,industrial fuel use,coal,coal,2050,CO,0.072063393 +IN,industrial fuel use,coal,coal,2055,CO,0.072511454 +IN,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +IN,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +IN,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +IN,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +IN,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +IN,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +IN,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +IN,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +IN,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +IN,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +IN,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +IN,industrial fuel use,gas,gas,2005,CO,0.054958784 +IN,industrial fuel use,gas,gas,2010,CO,0.041119779 +IN,industrial fuel use,gas,gas,2015,CO,0.037376927 +IN,industrial fuel use,gas,gas,2020,CO,0.042196984 +IN,industrial fuel use,gas,gas,2025,CO,0.046340259 +IN,industrial fuel use,gas,gas,2030,CO,0.051044751 +IN,industrial fuel use,gas,gas,2035,CO,0.048377476 +IN,industrial fuel use,gas,gas,2040,CO,0.04844371 +IN,industrial fuel use,gas,gas,2045,CO,0.049325699 +IN,industrial fuel use,gas,gas,2050,CO,0.048085677 +IN,industrial fuel use,gas,gas,2055,CO,0.046506083 +IN,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +IN,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +IN,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +IN,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +IN,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +IN,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +IN,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +IN,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +IN,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +IN,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +IN,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +IN,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +IN,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +IN,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +IN,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +IN,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +IN,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +IN,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +IN,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +IN,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +IN,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +IN,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +IN,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +IN,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +IN,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +IN,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +IN,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +IN,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +IN,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +IN,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +IN,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +IN,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +IN,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +IN,industrial fuel use,coal,coal,2005,CH4,0.008615911 +IN,industrial fuel use,coal,coal,2010,CH4,0.007087118 +IN,industrial fuel use,coal,coal,2015,CH4,0.007645512 +IN,industrial fuel use,coal,coal,2020,CH4,0.007093206 +IN,industrial fuel use,coal,coal,2025,CH4,0.007280827 +IN,industrial fuel use,coal,coal,2030,CH4,0.007426545 +IN,industrial fuel use,coal,coal,2035,CH4,0.007524098 +IN,industrial fuel use,coal,coal,2040,CH4,0.007621441 +IN,industrial fuel use,coal,coal,2045,CH4,0.007691307 +IN,industrial fuel use,coal,coal,2050,CH4,0.007801358 +IN,industrial fuel use,coal,coal,2055,CH4,0.007871907 +IN,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +IN,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +IN,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +IN,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +IN,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +IN,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +IN,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +IN,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +IN,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +IN,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +IN,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +IN,industrial fuel use,gas,gas,2005,CH4,0.002575726 +IN,industrial fuel use,gas,gas,2010,CH4,0.0036902 +IN,industrial fuel use,gas,gas,2015,CH4,0.001847174 +IN,industrial fuel use,gas,gas,2020,CH4,0.002575374 +IN,industrial fuel use,gas,gas,2025,CH4,0.002470739 +IN,industrial fuel use,gas,gas,2030,CH4,0.002514812 +IN,industrial fuel use,gas,gas,2035,CH4,0.004402202 +IN,industrial fuel use,gas,gas,2040,CH4,0.005194877 +IN,industrial fuel use,gas,gas,2045,CH4,0.005264291 +IN,industrial fuel use,gas,gas,2050,CH4,0.006086388 +IN,industrial fuel use,gas,gas,2055,CH4,0.006850703 +IN,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +IN,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +IN,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +IN,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +IN,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +IN,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +IN,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +IN,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +IN,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +IN,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +IN,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +IN,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +IN,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +IN,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +IN,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +IN,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +IN,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +IN,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +IN,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +IN,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +IN,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +IN,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +IN,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +IN,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +IN,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +IN,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +IN,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +IN,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +IN,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +IN,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +IN,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +IN,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +IN,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +IN,industrial fuel use,coal,coal,2005,N2O,0.002945881 +IN,industrial fuel use,coal,coal,2010,N2O,0.004699422 +IN,industrial fuel use,coal,coal,2015,N2O,0.003718249 +IN,industrial fuel use,coal,coal,2020,N2O,0.003503987 +IN,industrial fuel use,coal,coal,2025,N2O,0.003902448 +IN,industrial fuel use,coal,coal,2030,N2O,0.005231917 +IN,industrial fuel use,coal,coal,2035,N2O,0.005844861 +IN,industrial fuel use,coal,coal,2040,N2O,0.006123209 +IN,industrial fuel use,coal,coal,2045,N2O,0.006493024 +IN,industrial fuel use,coal,coal,2050,N2O,0.00643187 +IN,industrial fuel use,coal,coal,2055,N2O,0.006580646 +IN,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +IN,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +IN,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +IN,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +IN,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +IN,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +IN,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +IN,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +IN,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +IN,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +IN,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +IN,industrial fuel use,gas,gas,2005,N2O,0.000509795 +IN,industrial fuel use,gas,gas,2010,N2O,0.000459136 +IN,industrial fuel use,gas,gas,2015,N2O,0.000457847 +IN,industrial fuel use,gas,gas,2020,N2O,0.000469807 +IN,industrial fuel use,gas,gas,2025,N2O,0.0004748 +IN,industrial fuel use,gas,gas,2030,N2O,0.000493269 +IN,industrial fuel use,gas,gas,2035,N2O,0.0005142 +IN,industrial fuel use,gas,gas,2040,N2O,0.000525413 +IN,industrial fuel use,gas,gas,2045,N2O,0.000530678 +IN,industrial fuel use,gas,gas,2050,N2O,0.000534097 +IN,industrial fuel use,gas,gas,2055,N2O,0.000535185 +IN,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +IN,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +IN,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +IN,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +IN,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +IN,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +IN,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +IN,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +IN,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +IN,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +IN,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +IN,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +IN,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +IN,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +IN,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +IN,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +IN,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +IN,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +IN,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +IN,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +IN,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +IN,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +IN,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +IN,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +IN,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +IN,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +IN,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +IN,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +IN,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +IN,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +IN,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +IN,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +IN,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +IN,industrial fuel use,coal,coal,2005,BC,0.052178527 +IN,industrial fuel use,coal,coal,2010,BC,0.054113893 +IN,industrial fuel use,coal,coal,2015,BC,0.054816673 +IN,industrial fuel use,coal,coal,2020,BC,0.051442317 +IN,industrial fuel use,coal,coal,2025,BC,0.05280003 +IN,industrial fuel use,coal,coal,2030,BC,0.054819383 +IN,industrial fuel use,coal,coal,2035,BC,0.055934389 +IN,industrial fuel use,coal,coal,2040,BC,0.056737391 +IN,industrial fuel use,coal,coal,2045,BC,0.057341111 +IN,industrial fuel use,coal,coal,2050,BC,0.057867944 +IN,industrial fuel use,coal,coal,2055,BC,0.058307588 +IN,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +IN,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +IN,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +IN,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +IN,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +IN,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +IN,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +IN,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +IN,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +IN,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +IN,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +IN,industrial fuel use,gas,gas,2005,BC,0.000879555 +IN,industrial fuel use,gas,gas,2010,BC,0.000594596 +IN,industrial fuel use,gas,gas,2015,BC,0.000780779 +IN,industrial fuel use,gas,gas,2020,BC,0.000758542 +IN,industrial fuel use,gas,gas,2025,BC,0.000791704 +IN,industrial fuel use,gas,gas,2030,BC,0.000829295 +IN,industrial fuel use,gas,gas,2035,BC,0.000745895 +IN,industrial fuel use,gas,gas,2040,BC,0.000739727 +IN,industrial fuel use,gas,gas,2045,BC,0.000759191 +IN,industrial fuel use,gas,gas,2050,BC,0.000728476 +IN,industrial fuel use,gas,gas,2055,BC,0.000688571 +IN,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +IN,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +IN,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +IN,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +IN,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +IN,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +IN,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +IN,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +IN,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +IN,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +IN,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +IN,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +IN,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +IN,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +IN,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +IN,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +IN,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +IN,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +IN,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +IN,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +IN,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +IN,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +IN,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +IN,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +IN,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +IN,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +IN,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +IN,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +IN,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +IN,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +IN,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +IN,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +IN,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +IN,industrial fuel use,coal,coal,2005,OC,0.004608879 +IN,industrial fuel use,coal,coal,2010,OC,0.004949044 +IN,industrial fuel use,coal,coal,2015,OC,0.005291355 +IN,industrial fuel use,coal,coal,2020,OC,0.005047635 +IN,industrial fuel use,coal,coal,2025,OC,0.005240698 +IN,industrial fuel use,coal,coal,2030,OC,0.005398598 +IN,industrial fuel use,coal,coal,2035,OC,0.005483036 +IN,industrial fuel use,coal,coal,2040,OC,0.005583473 +IN,industrial fuel use,coal,coal,2045,OC,0.005638434 +IN,industrial fuel use,coal,coal,2050,OC,0.005723515 +IN,industrial fuel use,coal,coal,2055,OC,0.005777195 +IN,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +IN,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +IN,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +IN,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +IN,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +IN,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +IN,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +IN,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +IN,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +IN,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +IN,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +IN,industrial fuel use,gas,gas,2005,OC,0.000586894 +IN,industrial fuel use,gas,gas,2010,OC,0.000538986 +IN,industrial fuel use,gas,gas,2015,OC,0.000406177 +IN,industrial fuel use,gas,gas,2020,OC,0.000436774 +IN,industrial fuel use,gas,gas,2025,OC,0.000431434 +IN,industrial fuel use,gas,gas,2030,OC,0.000454497 +IN,industrial fuel use,gas,gas,2035,OC,0.0005142 +IN,industrial fuel use,gas,gas,2040,OC,0.000542203 +IN,industrial fuel use,gas,gas,2045,OC,0.0005354 +IN,industrial fuel use,gas,gas,2050,OC,0.000552822 +IN,industrial fuel use,gas,gas,2055,OC,0.000563528 +IN,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +IN,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +IN,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +IN,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +IN,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +IN,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +IN,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +IN,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +IN,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +IN,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +IN,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +IN,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +IN,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +IN,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +IN,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +IN,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +IN,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +IN,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +IN,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +IN,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +IN,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +IN,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +IN,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +IN,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +IN,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +IN,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +IN,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +IN,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +IN,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +IN,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +IN,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +IN,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +IN,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +IN,industrial fuel use,coal,coal,2005,CO2,0.022413751 +IN,industrial fuel use,coal,coal,2010,CO2,0.023247485 +IN,industrial fuel use,coal,coal,2015,CO2,0.023542577 +IN,industrial fuel use,coal,coal,2020,CO2,0.022100946 +IN,industrial fuel use,coal,coal,2025,CO2,0.022682182 +IN,industrial fuel use,coal,coal,2030,CO2,0.023544891 +IN,industrial fuel use,coal,coal,2035,CO2,0.024022124 +IN,industrial fuel use,coal,coal,2040,CO2,0.024371859 +IN,industrial fuel use,coal,coal,2045,CO2,0.024626877 +IN,industrial fuel use,coal,coal,2050,CO2,0.024861999 +IN,industrial fuel use,coal,coal,2055,CO2,0.025047846 +IN,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +IN,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +IN,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +IN,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +IN,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +IN,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +IN,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +IN,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +IN,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +IN,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +IN,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +IN,industrial fuel use,gas,gas,2005,CO2,0.010100215 +IN,industrial fuel use,gas,gas,2010,CO2,0.008735772 +IN,industrial fuel use,gas,gas,2015,CO2,0.008975567 +IN,industrial fuel use,gas,gas,2020,CO2,0.009141549 +IN,industrial fuel use,gas,gas,2025,CO2,0.009319403 +IN,industrial fuel use,gas,gas,2030,CO2,0.009661635 +IN,industrial fuel use,gas,gas,2035,CO2,0.009858394 +IN,industrial fuel use,gas,gas,2040,CO2,0.010090146 +IN,industrial fuel use,gas,gas,2045,CO2,0.010177486 +IN,industrial fuel use,gas,gas,2050,CO2,0.010210503 +IN,industrial fuel use,gas,gas,2055,CO2,0.010168744 +IN,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +IN,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +IN,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +IN,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +IN,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +IN,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +IN,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +IN,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +IN,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +IN,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +IN,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +IN,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +IN,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +IN,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +IN,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +IN,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +IN,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +IN,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +IN,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +IN,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +IN,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +IN,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +IN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +IN,industrial fuel use,biomass,biomass,2005,CO2,0 +IN,industrial fuel use,biomass,biomass,2010,CO2,0 +IN,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +IN,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +IN,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +IN,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +IN,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +IN,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +IN,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +IN,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +IN,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +IN,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +IN,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +IN,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +IN,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +IN,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +IN,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +IN,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +IN,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +IN,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +IN,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +IN,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +KS,industrial fuel use,coal,coal,2005,NOx,0.261565752 +KS,industrial fuel use,coal,coal,2010,NOx,0.24128762 +KS,industrial fuel use,coal,coal,2015,NOx,0.247879608 +KS,industrial fuel use,coal,coal,2020,NOx,0.234312556 +KS,industrial fuel use,coal,coal,2025,NOx,0.240398293 +KS,industrial fuel use,coal,coal,2030,NOx,0.246677964 +KS,industrial fuel use,coal,coal,2035,NOx,0.250299201 +KS,industrial fuel use,coal,coal,2040,NOx,0.253554811 +KS,industrial fuel use,coal,coal,2045,NOx,0.255578056 +KS,industrial fuel use,coal,coal,2050,NOx,0.258549854 +KS,industrial fuel use,coal,coal,2055,NOx,0.26014596 +KS,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +KS,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +KS,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +KS,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +KS,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +KS,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +KS,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +KS,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +KS,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +KS,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +KS,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +KS,industrial fuel use,gas,gas,2005,NOx,0.080919016 +KS,industrial fuel use,gas,gas,2010,NOx,0.044952568 +KS,industrial fuel use,gas,gas,2015,NOx,0.037239142 +KS,industrial fuel use,gas,gas,2020,NOx,0.040745965 +KS,industrial fuel use,gas,gas,2025,NOx,0.042574105 +KS,industrial fuel use,gas,gas,2030,NOx,0.045347383 +KS,industrial fuel use,gas,gas,2035,NOx,0.048574619 +KS,industrial fuel use,gas,gas,2040,NOx,0.050422899 +KS,industrial fuel use,gas,gas,2045,NOx,0.050680722 +KS,industrial fuel use,gas,gas,2050,NOx,0.0517343 +KS,industrial fuel use,gas,gas,2055,NOx,0.052443137 +KS,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +KS,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +KS,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +KS,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +KS,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +KS,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +KS,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +KS,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +KS,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +KS,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +KS,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +KS,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +KS,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +KS,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +KS,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +KS,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +KS,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +KS,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +KS,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +KS,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +KS,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +KS,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +KS,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +KS,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +KS,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +KS,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +KS,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +KS,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +KS,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +KS,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +KS,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +KS,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +KS,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +KS,industrial fuel use,coal,coal,2005,SO2,0.709862367 +KS,industrial fuel use,coal,coal,2010,SO2,0.679592789 +KS,industrial fuel use,coal,coal,2015,SO2,0.590904591 +KS,industrial fuel use,coal,coal,2020,SO2,0.549595621 +KS,industrial fuel use,coal,coal,2025,SO2,0.56430149 +KS,industrial fuel use,coal,coal,2030,SO2,0.576548046 +KS,industrial fuel use,coal,coal,2035,SO2,0.583595424 +KS,industrial fuel use,coal,coal,2040,SO2,0.590805881 +KS,industrial fuel use,coal,coal,2045,SO2,0.596410723 +KS,industrial fuel use,coal,coal,2050,SO2,0.606154195 +KS,industrial fuel use,coal,coal,2055,SO2,0.611234923 +KS,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +KS,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +KS,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +KS,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +KS,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +KS,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +KS,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +KS,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +KS,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +KS,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +KS,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +KS,industrial fuel use,gas,gas,2005,SO2,0.000213988 +KS,industrial fuel use,gas,gas,2010,SO2,0.002761946 +KS,industrial fuel use,gas,gas,2015,SO2,0.002854723 +KS,industrial fuel use,gas,gas,2020,SO2,0.002771127 +KS,industrial fuel use,gas,gas,2025,SO2,0.002798763 +KS,industrial fuel use,gas,gas,2030,SO2,0.002938075 +KS,industrial fuel use,gas,gas,2035,SO2,0.003016098 +KS,industrial fuel use,gas,gas,2040,SO2,0.003118901 +KS,industrial fuel use,gas,gas,2045,SO2,0.00311325 +KS,industrial fuel use,gas,gas,2050,SO2,0.003090451 +KS,industrial fuel use,gas,gas,2055,SO2,0.003025213 +KS,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +KS,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +KS,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +KS,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +KS,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +KS,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +KS,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +KS,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +KS,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +KS,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +KS,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +KS,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +KS,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +KS,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +KS,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +KS,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +KS,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +KS,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +KS,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +KS,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +KS,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +KS,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +KS,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +KS,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +KS,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +KS,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +KS,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +KS,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +KS,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +KS,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +KS,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +KS,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +KS,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +KS,industrial fuel use,coal,coal,2005,PM10,0.136452905 +KS,industrial fuel use,coal,coal,2010,PM10,0.093662835 +KS,industrial fuel use,coal,coal,2015,PM10,0.100887759 +KS,industrial fuel use,coal,coal,2020,PM10,0.094503476 +KS,industrial fuel use,coal,coal,2025,PM10,0.09752377 +KS,industrial fuel use,coal,coal,2030,PM10,0.099823133 +KS,industrial fuel use,coal,coal,2035,PM10,0.101097535 +KS,industrial fuel use,coal,coal,2040,PM10,0.102438117 +KS,industrial fuel use,coal,coal,2045,PM10,0.103553978 +KS,industrial fuel use,coal,coal,2050,PM10,0.105393893 +KS,industrial fuel use,coal,coal,2055,PM10,0.106304221 +KS,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +KS,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +KS,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +KS,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +KS,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +KS,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +KS,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +KS,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +KS,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +KS,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +KS,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +KS,industrial fuel use,gas,gas,2005,PM10,0.002144603 +KS,industrial fuel use,gas,gas,2010,PM10,0.004157892 +KS,industrial fuel use,gas,gas,2015,PM10,0.004308637 +KS,industrial fuel use,gas,gas,2020,PM10,0.004261296 +KS,industrial fuel use,gas,gas,2025,PM10,0.004334357 +KS,industrial fuel use,gas,gas,2030,PM10,0.00454497 +KS,industrial fuel use,gas,gas,2035,PM10,0.004581054 +KS,industrial fuel use,gas,gas,2040,PM10,0.004690204 +KS,industrial fuel use,gas,gas,2045,PM10,0.004695842 +KS,industrial fuel use,gas,gas,2050,PM10,0.004649052 +KS,industrial fuel use,gas,gas,2055,PM10,0.00454824 +KS,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +KS,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +KS,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +KS,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +KS,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +KS,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +KS,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +KS,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +KS,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +KS,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +KS,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +KS,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +KS,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +KS,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +KS,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +KS,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +KS,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +KS,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +KS,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +KS,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +KS,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +KS,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +KS,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +KS,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +KS,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +KS,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +KS,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +KS,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +KS,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +KS,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +KS,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +KS,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +KS,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +KS,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +KS,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +KS,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +KS,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +KS,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +KS,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +KS,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +KS,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +KS,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +KS,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +KS,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +KS,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +KS,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +KS,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +KS,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +KS,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +KS,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +KS,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +KS,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +KS,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +KS,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +KS,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +KS,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +KS,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +KS,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +KS,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +KS,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +KS,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +KS,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +KS,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +KS,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +KS,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +KS,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +KS,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +KS,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +KS,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +KS,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +KS,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +KS,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +KS,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +KS,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +KS,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +KS,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +KS,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +KS,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +KS,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +KS,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +KS,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +KS,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +KS,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +KS,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +KS,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +KS,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +KS,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +KS,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +KS,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +KS,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +KS,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +KS,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +KS,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +KS,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +KS,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +KS,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +KS,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +KS,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +KS,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +KS,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +KS,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +KS,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +KS,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +KS,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +KS,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +KS,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +KS,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +KS,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +KS,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +KS,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +KS,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +KS,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +KS,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +KS,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +KS,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +KS,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +KS,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +KS,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +KS,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +KS,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +KS,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +KS,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +KS,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +KS,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +KS,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +KS,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +KS,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +KS,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +KS,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +KS,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +KS,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +KS,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +KS,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +KS,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +KS,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +KS,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +KS,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +KS,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +KS,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +KS,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +KS,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +KS,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +KS,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +KS,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +KS,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +KS,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +KS,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +KS,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +KS,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +KS,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +KS,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +KS,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +KS,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +KS,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +KS,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +KS,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +KS,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +KS,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +KS,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +KS,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +KS,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +KS,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +KS,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +KS,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +KS,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +KS,industrial fuel use,coal,coal,2005,CO,0.069434106 +KS,industrial fuel use,coal,coal,2010,CO,0.07723114 +KS,industrial fuel use,coal,coal,2015,CO,0.068281575 +KS,industrial fuel use,coal,coal,2020,CO,0.063753622 +KS,industrial fuel use,coal,coal,2025,CO,0.065761399 +KS,industrial fuel use,coal,coal,2030,CO,0.067959367 +KS,industrial fuel use,coal,coal,2035,CO,0.069173462 +KS,industrial fuel use,coal,coal,2040,CO,0.070202866 +KS,industrial fuel use,coal,coal,2045,CO,0.071098148 +KS,industrial fuel use,coal,coal,2050,CO,0.072063393 +KS,industrial fuel use,coal,coal,2055,CO,0.072511454 +KS,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +KS,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +KS,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +KS,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +KS,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +KS,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +KS,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +KS,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +KS,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +KS,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +KS,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +KS,industrial fuel use,gas,gas,2005,CO,0.054958784 +KS,industrial fuel use,gas,gas,2010,CO,0.041119779 +KS,industrial fuel use,gas,gas,2015,CO,0.037376927 +KS,industrial fuel use,gas,gas,2020,CO,0.042196984 +KS,industrial fuel use,gas,gas,2025,CO,0.046340259 +KS,industrial fuel use,gas,gas,2030,CO,0.051044751 +KS,industrial fuel use,gas,gas,2035,CO,0.048377476 +KS,industrial fuel use,gas,gas,2040,CO,0.04844371 +KS,industrial fuel use,gas,gas,2045,CO,0.049325699 +KS,industrial fuel use,gas,gas,2050,CO,0.048085677 +KS,industrial fuel use,gas,gas,2055,CO,0.046506083 +KS,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +KS,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +KS,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +KS,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +KS,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +KS,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +KS,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +KS,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +KS,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +KS,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +KS,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +KS,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +KS,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +KS,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +KS,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +KS,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +KS,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +KS,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +KS,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +KS,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +KS,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +KS,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +KS,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +KS,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +KS,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +KS,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +KS,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +KS,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +KS,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +KS,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +KS,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +KS,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +KS,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +KS,industrial fuel use,coal,coal,2005,CH4,0.008615911 +KS,industrial fuel use,coal,coal,2010,CH4,0.007087118 +KS,industrial fuel use,coal,coal,2015,CH4,0.007645512 +KS,industrial fuel use,coal,coal,2020,CH4,0.007093206 +KS,industrial fuel use,coal,coal,2025,CH4,0.007280827 +KS,industrial fuel use,coal,coal,2030,CH4,0.007426545 +KS,industrial fuel use,coal,coal,2035,CH4,0.007524098 +KS,industrial fuel use,coal,coal,2040,CH4,0.007621441 +KS,industrial fuel use,coal,coal,2045,CH4,0.007691307 +KS,industrial fuel use,coal,coal,2050,CH4,0.007801358 +KS,industrial fuel use,coal,coal,2055,CH4,0.007871907 +KS,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +KS,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +KS,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +KS,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +KS,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +KS,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +KS,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +KS,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +KS,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +KS,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +KS,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +KS,industrial fuel use,gas,gas,2005,CH4,0.002575726 +KS,industrial fuel use,gas,gas,2010,CH4,0.0036902 +KS,industrial fuel use,gas,gas,2015,CH4,0.001847174 +KS,industrial fuel use,gas,gas,2020,CH4,0.002575374 +KS,industrial fuel use,gas,gas,2025,CH4,0.002470739 +KS,industrial fuel use,gas,gas,2030,CH4,0.002514812 +KS,industrial fuel use,gas,gas,2035,CH4,0.004402202 +KS,industrial fuel use,gas,gas,2040,CH4,0.005194877 +KS,industrial fuel use,gas,gas,2045,CH4,0.005264291 +KS,industrial fuel use,gas,gas,2050,CH4,0.006086388 +KS,industrial fuel use,gas,gas,2055,CH4,0.006850703 +KS,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +KS,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +KS,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +KS,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +KS,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +KS,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +KS,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +KS,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +KS,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +KS,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +KS,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +KS,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +KS,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +KS,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +KS,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +KS,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +KS,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +KS,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +KS,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +KS,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +KS,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +KS,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +KS,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +KS,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +KS,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +KS,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +KS,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +KS,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +KS,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +KS,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +KS,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +KS,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +KS,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +KS,industrial fuel use,coal,coal,2005,N2O,0.002945881 +KS,industrial fuel use,coal,coal,2010,N2O,0.004699422 +KS,industrial fuel use,coal,coal,2015,N2O,0.003718249 +KS,industrial fuel use,coal,coal,2020,N2O,0.003503987 +KS,industrial fuel use,coal,coal,2025,N2O,0.003902448 +KS,industrial fuel use,coal,coal,2030,N2O,0.005231917 +KS,industrial fuel use,coal,coal,2035,N2O,0.005844861 +KS,industrial fuel use,coal,coal,2040,N2O,0.006123209 +KS,industrial fuel use,coal,coal,2045,N2O,0.006493024 +KS,industrial fuel use,coal,coal,2050,N2O,0.00643187 +KS,industrial fuel use,coal,coal,2055,N2O,0.006580646 +KS,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +KS,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +KS,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +KS,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +KS,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +KS,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +KS,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +KS,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +KS,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +KS,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +KS,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +KS,industrial fuel use,gas,gas,2005,N2O,0.000509795 +KS,industrial fuel use,gas,gas,2010,N2O,0.000459136 +KS,industrial fuel use,gas,gas,2015,N2O,0.000457847 +KS,industrial fuel use,gas,gas,2020,N2O,0.000469807 +KS,industrial fuel use,gas,gas,2025,N2O,0.0004748 +KS,industrial fuel use,gas,gas,2030,N2O,0.000493269 +KS,industrial fuel use,gas,gas,2035,N2O,0.0005142 +KS,industrial fuel use,gas,gas,2040,N2O,0.000525413 +KS,industrial fuel use,gas,gas,2045,N2O,0.000530678 +KS,industrial fuel use,gas,gas,2050,N2O,0.000534097 +KS,industrial fuel use,gas,gas,2055,N2O,0.000535185 +KS,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +KS,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +KS,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +KS,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +KS,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +KS,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +KS,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +KS,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +KS,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +KS,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +KS,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +KS,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +KS,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +KS,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +KS,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +KS,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +KS,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +KS,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +KS,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +KS,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +KS,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +KS,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +KS,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +KS,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +KS,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +KS,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +KS,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +KS,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +KS,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +KS,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +KS,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +KS,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +KS,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +KS,industrial fuel use,coal,coal,2005,BC,0.052178527 +KS,industrial fuel use,coal,coal,2010,BC,0.054113893 +KS,industrial fuel use,coal,coal,2015,BC,0.054816673 +KS,industrial fuel use,coal,coal,2020,BC,0.051442317 +KS,industrial fuel use,coal,coal,2025,BC,0.05280003 +KS,industrial fuel use,coal,coal,2030,BC,0.054819383 +KS,industrial fuel use,coal,coal,2035,BC,0.055934389 +KS,industrial fuel use,coal,coal,2040,BC,0.056737391 +KS,industrial fuel use,coal,coal,2045,BC,0.057341111 +KS,industrial fuel use,coal,coal,2050,BC,0.057867944 +KS,industrial fuel use,coal,coal,2055,BC,0.058307588 +KS,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +KS,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +KS,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +KS,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +KS,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +KS,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +KS,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +KS,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +KS,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +KS,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +KS,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +KS,industrial fuel use,gas,gas,2005,BC,0.000879555 +KS,industrial fuel use,gas,gas,2010,BC,0.000594596 +KS,industrial fuel use,gas,gas,2015,BC,0.000780779 +KS,industrial fuel use,gas,gas,2020,BC,0.000758542 +KS,industrial fuel use,gas,gas,2025,BC,0.000791704 +KS,industrial fuel use,gas,gas,2030,BC,0.000829295 +KS,industrial fuel use,gas,gas,2035,BC,0.000745895 +KS,industrial fuel use,gas,gas,2040,BC,0.000739727 +KS,industrial fuel use,gas,gas,2045,BC,0.000759191 +KS,industrial fuel use,gas,gas,2050,BC,0.000728476 +KS,industrial fuel use,gas,gas,2055,BC,0.000688571 +KS,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +KS,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +KS,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +KS,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +KS,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +KS,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +KS,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +KS,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +KS,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +KS,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +KS,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +KS,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +KS,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +KS,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +KS,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +KS,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +KS,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +KS,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +KS,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +KS,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +KS,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +KS,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +KS,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +KS,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +KS,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +KS,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +KS,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +KS,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +KS,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +KS,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +KS,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +KS,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +KS,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +KS,industrial fuel use,coal,coal,2005,OC,0.004608879 +KS,industrial fuel use,coal,coal,2010,OC,0.004949044 +KS,industrial fuel use,coal,coal,2015,OC,0.005291355 +KS,industrial fuel use,coal,coal,2020,OC,0.005047635 +KS,industrial fuel use,coal,coal,2025,OC,0.005240698 +KS,industrial fuel use,coal,coal,2030,OC,0.005398598 +KS,industrial fuel use,coal,coal,2035,OC,0.005483036 +KS,industrial fuel use,coal,coal,2040,OC,0.005583473 +KS,industrial fuel use,coal,coal,2045,OC,0.005638434 +KS,industrial fuel use,coal,coal,2050,OC,0.005723515 +KS,industrial fuel use,coal,coal,2055,OC,0.005777195 +KS,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +KS,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +KS,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +KS,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +KS,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +KS,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +KS,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +KS,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +KS,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +KS,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +KS,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +KS,industrial fuel use,gas,gas,2005,OC,0.000586894 +KS,industrial fuel use,gas,gas,2010,OC,0.000538986 +KS,industrial fuel use,gas,gas,2015,OC,0.000406177 +KS,industrial fuel use,gas,gas,2020,OC,0.000436774 +KS,industrial fuel use,gas,gas,2025,OC,0.000431434 +KS,industrial fuel use,gas,gas,2030,OC,0.000454497 +KS,industrial fuel use,gas,gas,2035,OC,0.0005142 +KS,industrial fuel use,gas,gas,2040,OC,0.000542203 +KS,industrial fuel use,gas,gas,2045,OC,0.0005354 +KS,industrial fuel use,gas,gas,2050,OC,0.000552822 +KS,industrial fuel use,gas,gas,2055,OC,0.000563528 +KS,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +KS,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +KS,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +KS,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +KS,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +KS,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +KS,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +KS,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +KS,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +KS,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +KS,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +KS,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +KS,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +KS,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +KS,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +KS,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +KS,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +KS,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +KS,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +KS,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +KS,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +KS,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +KS,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +KS,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +KS,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +KS,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +KS,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +KS,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +KS,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +KS,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +KS,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +KS,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +KS,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +KS,industrial fuel use,coal,coal,2005,CO2,0.022413751 +KS,industrial fuel use,coal,coal,2010,CO2,0.023247485 +KS,industrial fuel use,coal,coal,2015,CO2,0.023542577 +KS,industrial fuel use,coal,coal,2020,CO2,0.022100946 +KS,industrial fuel use,coal,coal,2025,CO2,0.022682182 +KS,industrial fuel use,coal,coal,2030,CO2,0.023544891 +KS,industrial fuel use,coal,coal,2035,CO2,0.024022124 +KS,industrial fuel use,coal,coal,2040,CO2,0.024371859 +KS,industrial fuel use,coal,coal,2045,CO2,0.024626877 +KS,industrial fuel use,coal,coal,2050,CO2,0.024861999 +KS,industrial fuel use,coal,coal,2055,CO2,0.025047846 +KS,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +KS,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +KS,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +KS,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +KS,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +KS,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +KS,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +KS,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +KS,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +KS,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +KS,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +KS,industrial fuel use,gas,gas,2005,CO2,0.010100215 +KS,industrial fuel use,gas,gas,2010,CO2,0.008735772 +KS,industrial fuel use,gas,gas,2015,CO2,0.008975567 +KS,industrial fuel use,gas,gas,2020,CO2,0.009141549 +KS,industrial fuel use,gas,gas,2025,CO2,0.009319403 +KS,industrial fuel use,gas,gas,2030,CO2,0.009661635 +KS,industrial fuel use,gas,gas,2035,CO2,0.009858394 +KS,industrial fuel use,gas,gas,2040,CO2,0.010090146 +KS,industrial fuel use,gas,gas,2045,CO2,0.010177486 +KS,industrial fuel use,gas,gas,2050,CO2,0.010210503 +KS,industrial fuel use,gas,gas,2055,CO2,0.010168744 +KS,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +KS,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +KS,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +KS,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +KS,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +KS,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +KS,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +KS,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +KS,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +KS,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +KS,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +KS,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +KS,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +KS,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +KS,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +KS,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +KS,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +KS,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +KS,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +KS,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +KS,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +KS,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +KS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +KS,industrial fuel use,biomass,biomass,2005,CO2,0 +KS,industrial fuel use,biomass,biomass,2010,CO2,0 +KS,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +KS,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +KS,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +KS,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +KS,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +KS,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +KS,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +KS,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +KS,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +KS,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +KS,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +KS,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +KS,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +KS,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +KS,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +KS,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +KS,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +KS,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +KS,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +KS,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +KY,industrial fuel use,coal,coal,2005,NOx,0.261565752 +KY,industrial fuel use,coal,coal,2010,NOx,0.24128762 +KY,industrial fuel use,coal,coal,2015,NOx,0.247879608 +KY,industrial fuel use,coal,coal,2020,NOx,0.234312556 +KY,industrial fuel use,coal,coal,2025,NOx,0.240398293 +KY,industrial fuel use,coal,coal,2030,NOx,0.246677964 +KY,industrial fuel use,coal,coal,2035,NOx,0.250299201 +KY,industrial fuel use,coal,coal,2040,NOx,0.253554811 +KY,industrial fuel use,coal,coal,2045,NOx,0.255578056 +KY,industrial fuel use,coal,coal,2050,NOx,0.258549854 +KY,industrial fuel use,coal,coal,2055,NOx,0.26014596 +KY,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +KY,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +KY,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +KY,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +KY,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +KY,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +KY,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +KY,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +KY,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +KY,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +KY,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +KY,industrial fuel use,gas,gas,2005,NOx,0.080919016 +KY,industrial fuel use,gas,gas,2010,NOx,0.044952568 +KY,industrial fuel use,gas,gas,2015,NOx,0.037239142 +KY,industrial fuel use,gas,gas,2020,NOx,0.040745965 +KY,industrial fuel use,gas,gas,2025,NOx,0.042574105 +KY,industrial fuel use,gas,gas,2030,NOx,0.045347383 +KY,industrial fuel use,gas,gas,2035,NOx,0.048574619 +KY,industrial fuel use,gas,gas,2040,NOx,0.050422899 +KY,industrial fuel use,gas,gas,2045,NOx,0.050680722 +KY,industrial fuel use,gas,gas,2050,NOx,0.0517343 +KY,industrial fuel use,gas,gas,2055,NOx,0.052443137 +KY,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +KY,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +KY,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +KY,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +KY,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +KY,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +KY,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +KY,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +KY,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +KY,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +KY,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +KY,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +KY,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +KY,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +KY,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +KY,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +KY,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +KY,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +KY,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +KY,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +KY,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +KY,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +KY,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +KY,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +KY,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +KY,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +KY,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +KY,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +KY,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +KY,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +KY,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +KY,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +KY,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +KY,industrial fuel use,coal,coal,2005,SO2,0.709862367 +KY,industrial fuel use,coal,coal,2010,SO2,0.679592789 +KY,industrial fuel use,coal,coal,2015,SO2,0.590904591 +KY,industrial fuel use,coal,coal,2020,SO2,0.549595621 +KY,industrial fuel use,coal,coal,2025,SO2,0.56430149 +KY,industrial fuel use,coal,coal,2030,SO2,0.576548046 +KY,industrial fuel use,coal,coal,2035,SO2,0.583595424 +KY,industrial fuel use,coal,coal,2040,SO2,0.590805881 +KY,industrial fuel use,coal,coal,2045,SO2,0.596410723 +KY,industrial fuel use,coal,coal,2050,SO2,0.606154195 +KY,industrial fuel use,coal,coal,2055,SO2,0.611234923 +KY,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +KY,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +KY,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +KY,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +KY,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +KY,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +KY,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +KY,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +KY,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +KY,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +KY,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +KY,industrial fuel use,gas,gas,2005,SO2,0.000213988 +KY,industrial fuel use,gas,gas,2010,SO2,0.002761946 +KY,industrial fuel use,gas,gas,2015,SO2,0.002854723 +KY,industrial fuel use,gas,gas,2020,SO2,0.002771127 +KY,industrial fuel use,gas,gas,2025,SO2,0.002798763 +KY,industrial fuel use,gas,gas,2030,SO2,0.002938075 +KY,industrial fuel use,gas,gas,2035,SO2,0.003016098 +KY,industrial fuel use,gas,gas,2040,SO2,0.003118901 +KY,industrial fuel use,gas,gas,2045,SO2,0.00311325 +KY,industrial fuel use,gas,gas,2050,SO2,0.003090451 +KY,industrial fuel use,gas,gas,2055,SO2,0.003025213 +KY,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +KY,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +KY,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +KY,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +KY,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +KY,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +KY,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +KY,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +KY,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +KY,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +KY,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +KY,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +KY,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +KY,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +KY,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +KY,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +KY,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +KY,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +KY,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +KY,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +KY,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +KY,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +KY,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +KY,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +KY,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +KY,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +KY,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +KY,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +KY,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +KY,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +KY,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +KY,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +KY,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +KY,industrial fuel use,coal,coal,2005,PM10,0.136452905 +KY,industrial fuel use,coal,coal,2010,PM10,0.093662835 +KY,industrial fuel use,coal,coal,2015,PM10,0.100887759 +KY,industrial fuel use,coal,coal,2020,PM10,0.094503476 +KY,industrial fuel use,coal,coal,2025,PM10,0.09752377 +KY,industrial fuel use,coal,coal,2030,PM10,0.099823133 +KY,industrial fuel use,coal,coal,2035,PM10,0.101097535 +KY,industrial fuel use,coal,coal,2040,PM10,0.102438117 +KY,industrial fuel use,coal,coal,2045,PM10,0.103553978 +KY,industrial fuel use,coal,coal,2050,PM10,0.105393893 +KY,industrial fuel use,coal,coal,2055,PM10,0.106304221 +KY,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +KY,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +KY,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +KY,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +KY,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +KY,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +KY,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +KY,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +KY,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +KY,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +KY,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +KY,industrial fuel use,gas,gas,2005,PM10,0.002144603 +KY,industrial fuel use,gas,gas,2010,PM10,0.004157892 +KY,industrial fuel use,gas,gas,2015,PM10,0.004308637 +KY,industrial fuel use,gas,gas,2020,PM10,0.004261296 +KY,industrial fuel use,gas,gas,2025,PM10,0.004334357 +KY,industrial fuel use,gas,gas,2030,PM10,0.00454497 +KY,industrial fuel use,gas,gas,2035,PM10,0.004581054 +KY,industrial fuel use,gas,gas,2040,PM10,0.004690204 +KY,industrial fuel use,gas,gas,2045,PM10,0.004695842 +KY,industrial fuel use,gas,gas,2050,PM10,0.004649052 +KY,industrial fuel use,gas,gas,2055,PM10,0.00454824 +KY,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +KY,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +KY,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +KY,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +KY,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +KY,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +KY,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +KY,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +KY,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +KY,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +KY,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +KY,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +KY,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +KY,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +KY,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +KY,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +KY,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +KY,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +KY,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +KY,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +KY,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +KY,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +KY,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +KY,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +KY,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +KY,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +KY,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +KY,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +KY,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +KY,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +KY,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +KY,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +KY,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +KY,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +KY,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +KY,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +KY,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +KY,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +KY,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +KY,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +KY,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +KY,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +KY,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +KY,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +KY,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +KY,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +KY,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +KY,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +KY,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +KY,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +KY,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +KY,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +KY,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +KY,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +KY,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +KY,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +KY,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +KY,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +KY,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +KY,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +KY,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +KY,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +KY,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +KY,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +KY,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +KY,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +KY,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +KY,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +KY,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +KY,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +KY,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +KY,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +KY,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +KY,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +KY,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +KY,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +KY,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +KY,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +KY,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +KY,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +KY,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +KY,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +KY,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +KY,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +KY,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +KY,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +KY,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +KY,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +KY,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +KY,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +KY,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +KY,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +KY,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +KY,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +KY,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +KY,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +KY,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +KY,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +KY,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +KY,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +KY,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +KY,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +KY,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +KY,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +KY,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +KY,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +KY,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +KY,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +KY,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +KY,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +KY,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +KY,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +KY,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +KY,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +KY,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +KY,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +KY,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +KY,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +KY,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +KY,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +KY,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +KY,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +KY,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +KY,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +KY,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +KY,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +KY,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +KY,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +KY,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +KY,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +KY,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +KY,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +KY,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +KY,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +KY,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +KY,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +KY,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +KY,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +KY,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +KY,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +KY,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +KY,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +KY,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +KY,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +KY,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +KY,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +KY,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +KY,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +KY,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +KY,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +KY,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +KY,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +KY,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +KY,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +KY,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +KY,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +KY,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +KY,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +KY,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +KY,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +KY,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +KY,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +KY,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +KY,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +KY,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +KY,industrial fuel use,coal,coal,2005,CO,0.069434106 +KY,industrial fuel use,coal,coal,2010,CO,0.07723114 +KY,industrial fuel use,coal,coal,2015,CO,0.068281575 +KY,industrial fuel use,coal,coal,2020,CO,0.063753622 +KY,industrial fuel use,coal,coal,2025,CO,0.065761399 +KY,industrial fuel use,coal,coal,2030,CO,0.067959367 +KY,industrial fuel use,coal,coal,2035,CO,0.069173462 +KY,industrial fuel use,coal,coal,2040,CO,0.070202866 +KY,industrial fuel use,coal,coal,2045,CO,0.071098148 +KY,industrial fuel use,coal,coal,2050,CO,0.072063393 +KY,industrial fuel use,coal,coal,2055,CO,0.072511454 +KY,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +KY,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +KY,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +KY,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +KY,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +KY,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +KY,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +KY,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +KY,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +KY,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +KY,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +KY,industrial fuel use,gas,gas,2005,CO,0.054958784 +KY,industrial fuel use,gas,gas,2010,CO,0.041119779 +KY,industrial fuel use,gas,gas,2015,CO,0.037376927 +KY,industrial fuel use,gas,gas,2020,CO,0.042196984 +KY,industrial fuel use,gas,gas,2025,CO,0.046340259 +KY,industrial fuel use,gas,gas,2030,CO,0.051044751 +KY,industrial fuel use,gas,gas,2035,CO,0.048377476 +KY,industrial fuel use,gas,gas,2040,CO,0.04844371 +KY,industrial fuel use,gas,gas,2045,CO,0.049325699 +KY,industrial fuel use,gas,gas,2050,CO,0.048085677 +KY,industrial fuel use,gas,gas,2055,CO,0.046506083 +KY,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +KY,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +KY,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +KY,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +KY,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +KY,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +KY,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +KY,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +KY,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +KY,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +KY,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +KY,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +KY,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +KY,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +KY,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +KY,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +KY,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +KY,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +KY,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +KY,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +KY,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +KY,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +KY,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +KY,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +KY,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +KY,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +KY,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +KY,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +KY,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +KY,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +KY,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +KY,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +KY,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +KY,industrial fuel use,coal,coal,2005,CH4,0.008615911 +KY,industrial fuel use,coal,coal,2010,CH4,0.007087118 +KY,industrial fuel use,coal,coal,2015,CH4,0.007645512 +KY,industrial fuel use,coal,coal,2020,CH4,0.007093206 +KY,industrial fuel use,coal,coal,2025,CH4,0.007280827 +KY,industrial fuel use,coal,coal,2030,CH4,0.007426545 +KY,industrial fuel use,coal,coal,2035,CH4,0.007524098 +KY,industrial fuel use,coal,coal,2040,CH4,0.007621441 +KY,industrial fuel use,coal,coal,2045,CH4,0.007691307 +KY,industrial fuel use,coal,coal,2050,CH4,0.007801358 +KY,industrial fuel use,coal,coal,2055,CH4,0.007871907 +KY,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +KY,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +KY,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +KY,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +KY,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +KY,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +KY,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +KY,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +KY,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +KY,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +KY,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +KY,industrial fuel use,gas,gas,2005,CH4,0.002575726 +KY,industrial fuel use,gas,gas,2010,CH4,0.0036902 +KY,industrial fuel use,gas,gas,2015,CH4,0.001847174 +KY,industrial fuel use,gas,gas,2020,CH4,0.002575374 +KY,industrial fuel use,gas,gas,2025,CH4,0.002470739 +KY,industrial fuel use,gas,gas,2030,CH4,0.002514812 +KY,industrial fuel use,gas,gas,2035,CH4,0.004402202 +KY,industrial fuel use,gas,gas,2040,CH4,0.005194877 +KY,industrial fuel use,gas,gas,2045,CH4,0.005264291 +KY,industrial fuel use,gas,gas,2050,CH4,0.006086388 +KY,industrial fuel use,gas,gas,2055,CH4,0.006850703 +KY,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +KY,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +KY,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +KY,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +KY,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +KY,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +KY,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +KY,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +KY,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +KY,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +KY,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +KY,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +KY,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +KY,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +KY,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +KY,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +KY,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +KY,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +KY,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +KY,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +KY,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +KY,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +KY,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +KY,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +KY,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +KY,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +KY,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +KY,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +KY,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +KY,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +KY,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +KY,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +KY,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +KY,industrial fuel use,coal,coal,2005,N2O,0.002945881 +KY,industrial fuel use,coal,coal,2010,N2O,0.004699422 +KY,industrial fuel use,coal,coal,2015,N2O,0.003718249 +KY,industrial fuel use,coal,coal,2020,N2O,0.003503987 +KY,industrial fuel use,coal,coal,2025,N2O,0.003902448 +KY,industrial fuel use,coal,coal,2030,N2O,0.005231917 +KY,industrial fuel use,coal,coal,2035,N2O,0.005844861 +KY,industrial fuel use,coal,coal,2040,N2O,0.006123209 +KY,industrial fuel use,coal,coal,2045,N2O,0.006493024 +KY,industrial fuel use,coal,coal,2050,N2O,0.00643187 +KY,industrial fuel use,coal,coal,2055,N2O,0.006580646 +KY,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +KY,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +KY,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +KY,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +KY,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +KY,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +KY,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +KY,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +KY,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +KY,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +KY,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +KY,industrial fuel use,gas,gas,2005,N2O,0.000509795 +KY,industrial fuel use,gas,gas,2010,N2O,0.000459136 +KY,industrial fuel use,gas,gas,2015,N2O,0.000457847 +KY,industrial fuel use,gas,gas,2020,N2O,0.000469807 +KY,industrial fuel use,gas,gas,2025,N2O,0.0004748 +KY,industrial fuel use,gas,gas,2030,N2O,0.000493269 +KY,industrial fuel use,gas,gas,2035,N2O,0.0005142 +KY,industrial fuel use,gas,gas,2040,N2O,0.000525413 +KY,industrial fuel use,gas,gas,2045,N2O,0.000530678 +KY,industrial fuel use,gas,gas,2050,N2O,0.000534097 +KY,industrial fuel use,gas,gas,2055,N2O,0.000535185 +KY,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +KY,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +KY,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +KY,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +KY,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +KY,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +KY,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +KY,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +KY,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +KY,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +KY,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +KY,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +KY,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +KY,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +KY,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +KY,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +KY,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +KY,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +KY,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +KY,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +KY,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +KY,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +KY,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +KY,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +KY,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +KY,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +KY,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +KY,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +KY,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +KY,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +KY,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +KY,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +KY,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +KY,industrial fuel use,coal,coal,2005,BC,0.052178527 +KY,industrial fuel use,coal,coal,2010,BC,0.054113893 +KY,industrial fuel use,coal,coal,2015,BC,0.054816673 +KY,industrial fuel use,coal,coal,2020,BC,0.051442317 +KY,industrial fuel use,coal,coal,2025,BC,0.05280003 +KY,industrial fuel use,coal,coal,2030,BC,0.054819383 +KY,industrial fuel use,coal,coal,2035,BC,0.055934389 +KY,industrial fuel use,coal,coal,2040,BC,0.056737391 +KY,industrial fuel use,coal,coal,2045,BC,0.057341111 +KY,industrial fuel use,coal,coal,2050,BC,0.057867944 +KY,industrial fuel use,coal,coal,2055,BC,0.058307588 +KY,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +KY,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +KY,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +KY,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +KY,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +KY,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +KY,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +KY,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +KY,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +KY,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +KY,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +KY,industrial fuel use,gas,gas,2005,BC,0.000879555 +KY,industrial fuel use,gas,gas,2010,BC,0.000594596 +KY,industrial fuel use,gas,gas,2015,BC,0.000780779 +KY,industrial fuel use,gas,gas,2020,BC,0.000758542 +KY,industrial fuel use,gas,gas,2025,BC,0.000791704 +KY,industrial fuel use,gas,gas,2030,BC,0.000829295 +KY,industrial fuel use,gas,gas,2035,BC,0.000745895 +KY,industrial fuel use,gas,gas,2040,BC,0.000739727 +KY,industrial fuel use,gas,gas,2045,BC,0.000759191 +KY,industrial fuel use,gas,gas,2050,BC,0.000728476 +KY,industrial fuel use,gas,gas,2055,BC,0.000688571 +KY,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +KY,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +KY,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +KY,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +KY,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +KY,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +KY,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +KY,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +KY,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +KY,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +KY,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +KY,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +KY,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +KY,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +KY,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +KY,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +KY,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +KY,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +KY,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +KY,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +KY,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +KY,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +KY,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +KY,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +KY,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +KY,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +KY,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +KY,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +KY,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +KY,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +KY,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +KY,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +KY,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +KY,industrial fuel use,coal,coal,2005,OC,0.004608879 +KY,industrial fuel use,coal,coal,2010,OC,0.004949044 +KY,industrial fuel use,coal,coal,2015,OC,0.005291355 +KY,industrial fuel use,coal,coal,2020,OC,0.005047635 +KY,industrial fuel use,coal,coal,2025,OC,0.005240698 +KY,industrial fuel use,coal,coal,2030,OC,0.005398598 +KY,industrial fuel use,coal,coal,2035,OC,0.005483036 +KY,industrial fuel use,coal,coal,2040,OC,0.005583473 +KY,industrial fuel use,coal,coal,2045,OC,0.005638434 +KY,industrial fuel use,coal,coal,2050,OC,0.005723515 +KY,industrial fuel use,coal,coal,2055,OC,0.005777195 +KY,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +KY,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +KY,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +KY,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +KY,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +KY,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +KY,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +KY,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +KY,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +KY,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +KY,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +KY,industrial fuel use,gas,gas,2005,OC,0.000586894 +KY,industrial fuel use,gas,gas,2010,OC,0.000538986 +KY,industrial fuel use,gas,gas,2015,OC,0.000406177 +KY,industrial fuel use,gas,gas,2020,OC,0.000436774 +KY,industrial fuel use,gas,gas,2025,OC,0.000431434 +KY,industrial fuel use,gas,gas,2030,OC,0.000454497 +KY,industrial fuel use,gas,gas,2035,OC,0.0005142 +KY,industrial fuel use,gas,gas,2040,OC,0.000542203 +KY,industrial fuel use,gas,gas,2045,OC,0.0005354 +KY,industrial fuel use,gas,gas,2050,OC,0.000552822 +KY,industrial fuel use,gas,gas,2055,OC,0.000563528 +KY,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +KY,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +KY,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +KY,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +KY,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +KY,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +KY,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +KY,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +KY,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +KY,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +KY,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +KY,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +KY,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +KY,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +KY,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +KY,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +KY,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +KY,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +KY,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +KY,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +KY,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +KY,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +KY,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +KY,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +KY,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +KY,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +KY,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +KY,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +KY,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +KY,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +KY,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +KY,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +KY,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +KY,industrial fuel use,coal,coal,2005,CO2,0.022413751 +KY,industrial fuel use,coal,coal,2010,CO2,0.023247485 +KY,industrial fuel use,coal,coal,2015,CO2,0.023542577 +KY,industrial fuel use,coal,coal,2020,CO2,0.022100946 +KY,industrial fuel use,coal,coal,2025,CO2,0.022682182 +KY,industrial fuel use,coal,coal,2030,CO2,0.023544891 +KY,industrial fuel use,coal,coal,2035,CO2,0.024022124 +KY,industrial fuel use,coal,coal,2040,CO2,0.024371859 +KY,industrial fuel use,coal,coal,2045,CO2,0.024626877 +KY,industrial fuel use,coal,coal,2050,CO2,0.024861999 +KY,industrial fuel use,coal,coal,2055,CO2,0.025047846 +KY,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +KY,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +KY,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +KY,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +KY,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +KY,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +KY,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +KY,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +KY,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +KY,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +KY,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +KY,industrial fuel use,gas,gas,2005,CO2,0.010100215 +KY,industrial fuel use,gas,gas,2010,CO2,0.008735772 +KY,industrial fuel use,gas,gas,2015,CO2,0.008975567 +KY,industrial fuel use,gas,gas,2020,CO2,0.009141549 +KY,industrial fuel use,gas,gas,2025,CO2,0.009319403 +KY,industrial fuel use,gas,gas,2030,CO2,0.009661635 +KY,industrial fuel use,gas,gas,2035,CO2,0.009858394 +KY,industrial fuel use,gas,gas,2040,CO2,0.010090146 +KY,industrial fuel use,gas,gas,2045,CO2,0.010177486 +KY,industrial fuel use,gas,gas,2050,CO2,0.010210503 +KY,industrial fuel use,gas,gas,2055,CO2,0.010168744 +KY,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +KY,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +KY,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +KY,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +KY,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +KY,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +KY,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +KY,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +KY,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +KY,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +KY,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +KY,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +KY,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +KY,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +KY,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +KY,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +KY,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +KY,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +KY,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +KY,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +KY,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +KY,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +KY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +KY,industrial fuel use,biomass,biomass,2005,CO2,0 +KY,industrial fuel use,biomass,biomass,2010,CO2,0 +KY,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +KY,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +KY,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +KY,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +KY,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +KY,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +KY,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +KY,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +KY,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +KY,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +KY,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +KY,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +KY,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +KY,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +KY,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +KY,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +KY,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +KY,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +KY,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +KY,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +LA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +LA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +LA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +LA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +LA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +LA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +LA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +LA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +LA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +LA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +LA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +LA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +LA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +LA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +LA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +LA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +LA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +LA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +LA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +LA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +LA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +LA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +LA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +LA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +LA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +LA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +LA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +LA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +LA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +LA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +LA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +LA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +LA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +LA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +LA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +LA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +LA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +LA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +LA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +LA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +LA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +LA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +LA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +LA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +LA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +LA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +LA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +LA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +LA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +LA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +LA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +LA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +LA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +LA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +LA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +LA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +LA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +LA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +LA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +LA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +LA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +LA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +LA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +LA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +LA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +LA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +LA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +LA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +LA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +LA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +LA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +LA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +LA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +LA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +LA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +LA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +LA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +LA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +LA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +LA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +LA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +LA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +LA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +LA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +LA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +LA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +LA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +LA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +LA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +LA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +LA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +LA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +LA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +LA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +LA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +LA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +LA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +LA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +LA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +LA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +LA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +LA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +LA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +LA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +LA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +LA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +LA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +LA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +LA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +LA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +LA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +LA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +LA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +LA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +LA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +LA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +LA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +LA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +LA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +LA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +LA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +LA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +LA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +LA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +LA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +LA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +LA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +LA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +LA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +LA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +LA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +LA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +LA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +LA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +LA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +LA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +LA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +LA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +LA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +LA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +LA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +LA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +LA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +LA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +LA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +LA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +LA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +LA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +LA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +LA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +LA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +LA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +LA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +LA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +LA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +LA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +LA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +LA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +LA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +LA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +LA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +LA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +LA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +LA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +LA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +LA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +LA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +LA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +LA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +LA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +LA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +LA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +LA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +LA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +LA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +LA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +LA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +LA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +LA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +LA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +LA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +LA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +LA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +LA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +LA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +LA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +LA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +LA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +LA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +LA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +LA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +LA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +LA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +LA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +LA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +LA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +LA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +LA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +LA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +LA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +LA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +LA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +LA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +LA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +LA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +LA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +LA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +LA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +LA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +LA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +LA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +LA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +LA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +LA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +LA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +LA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +LA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +LA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +LA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +LA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +LA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +LA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +LA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +LA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +LA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +LA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +LA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +LA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +LA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +LA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +LA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +LA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +LA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +LA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +LA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +LA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +LA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +LA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +LA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +LA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +LA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +LA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +LA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +LA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +LA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +LA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +LA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +LA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +LA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +LA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +LA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +LA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +LA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +LA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +LA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +LA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +LA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +LA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +LA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +LA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +LA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +LA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +LA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +LA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +LA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +LA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +LA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +LA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +LA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +LA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +LA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +LA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +LA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +LA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +LA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +LA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +LA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +LA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +LA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +LA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +LA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +LA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +LA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +LA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +LA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +LA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +LA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +LA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +LA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +LA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +LA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +LA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +LA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +LA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +LA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +LA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +LA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +LA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +LA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +LA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +LA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +LA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +LA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +LA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +LA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +LA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +LA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +LA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +LA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +LA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +LA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +LA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +LA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +LA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +LA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +LA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +LA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +LA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +LA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +LA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +LA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +LA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +LA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +LA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +LA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +LA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +LA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +LA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +LA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +LA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +LA,industrial fuel use,coal,coal,2005,CO,0.069434106 +LA,industrial fuel use,coal,coal,2010,CO,0.07723114 +LA,industrial fuel use,coal,coal,2015,CO,0.068281575 +LA,industrial fuel use,coal,coal,2020,CO,0.063753622 +LA,industrial fuel use,coal,coal,2025,CO,0.065761399 +LA,industrial fuel use,coal,coal,2030,CO,0.067959367 +LA,industrial fuel use,coal,coal,2035,CO,0.069173462 +LA,industrial fuel use,coal,coal,2040,CO,0.070202866 +LA,industrial fuel use,coal,coal,2045,CO,0.071098148 +LA,industrial fuel use,coal,coal,2050,CO,0.072063393 +LA,industrial fuel use,coal,coal,2055,CO,0.072511454 +LA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +LA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +LA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +LA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +LA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +LA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +LA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +LA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +LA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +LA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +LA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +LA,industrial fuel use,gas,gas,2005,CO,0.054958784 +LA,industrial fuel use,gas,gas,2010,CO,0.041119779 +LA,industrial fuel use,gas,gas,2015,CO,0.037376927 +LA,industrial fuel use,gas,gas,2020,CO,0.042196984 +LA,industrial fuel use,gas,gas,2025,CO,0.046340259 +LA,industrial fuel use,gas,gas,2030,CO,0.051044751 +LA,industrial fuel use,gas,gas,2035,CO,0.048377476 +LA,industrial fuel use,gas,gas,2040,CO,0.04844371 +LA,industrial fuel use,gas,gas,2045,CO,0.049325699 +LA,industrial fuel use,gas,gas,2050,CO,0.048085677 +LA,industrial fuel use,gas,gas,2055,CO,0.046506083 +LA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +LA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +LA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +LA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +LA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +LA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +LA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +LA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +LA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +LA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +LA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +LA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +LA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +LA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +LA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +LA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +LA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +LA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +LA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +LA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +LA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +LA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +LA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +LA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +LA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +LA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +LA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +LA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +LA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +LA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +LA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +LA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +LA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +LA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +LA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +LA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +LA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +LA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +LA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +LA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +LA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +LA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +LA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +LA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +LA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +LA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +LA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +LA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +LA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +LA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +LA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +LA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +LA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +LA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +LA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +LA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +LA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +LA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +LA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +LA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +LA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +LA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +LA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +LA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +LA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +LA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +LA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +LA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +LA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +LA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +LA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +LA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +LA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +LA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +LA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +LA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +LA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +LA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +LA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +LA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +LA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +LA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +LA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +LA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +LA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +LA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +LA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +LA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +LA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +LA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +LA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +LA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +LA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +LA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +LA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +LA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +LA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +LA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +LA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +LA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +LA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +LA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +LA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +LA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +LA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +LA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +LA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +LA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +LA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +LA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +LA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +LA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +LA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +LA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +LA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +LA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +LA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +LA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +LA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +LA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +LA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +LA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +LA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +LA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +LA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +LA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +LA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +LA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +LA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +LA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +LA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +LA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +LA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +LA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +LA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +LA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +LA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +LA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +LA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +LA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +LA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +LA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +LA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +LA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +LA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +LA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +LA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +LA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +LA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +LA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +LA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +LA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +LA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +LA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +LA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +LA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +LA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +LA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +LA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +LA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +LA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +LA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +LA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +LA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +LA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +LA,industrial fuel use,coal,coal,2005,BC,0.052178527 +LA,industrial fuel use,coal,coal,2010,BC,0.054113893 +LA,industrial fuel use,coal,coal,2015,BC,0.054816673 +LA,industrial fuel use,coal,coal,2020,BC,0.051442317 +LA,industrial fuel use,coal,coal,2025,BC,0.05280003 +LA,industrial fuel use,coal,coal,2030,BC,0.054819383 +LA,industrial fuel use,coal,coal,2035,BC,0.055934389 +LA,industrial fuel use,coal,coal,2040,BC,0.056737391 +LA,industrial fuel use,coal,coal,2045,BC,0.057341111 +LA,industrial fuel use,coal,coal,2050,BC,0.057867944 +LA,industrial fuel use,coal,coal,2055,BC,0.058307588 +LA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +LA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +LA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +LA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +LA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +LA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +LA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +LA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +LA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +LA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +LA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +LA,industrial fuel use,gas,gas,2005,BC,0.000879555 +LA,industrial fuel use,gas,gas,2010,BC,0.000594596 +LA,industrial fuel use,gas,gas,2015,BC,0.000780779 +LA,industrial fuel use,gas,gas,2020,BC,0.000758542 +LA,industrial fuel use,gas,gas,2025,BC,0.000791704 +LA,industrial fuel use,gas,gas,2030,BC,0.000829295 +LA,industrial fuel use,gas,gas,2035,BC,0.000745895 +LA,industrial fuel use,gas,gas,2040,BC,0.000739727 +LA,industrial fuel use,gas,gas,2045,BC,0.000759191 +LA,industrial fuel use,gas,gas,2050,BC,0.000728476 +LA,industrial fuel use,gas,gas,2055,BC,0.000688571 +LA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +LA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +LA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +LA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +LA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +LA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +LA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +LA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +LA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +LA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +LA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +LA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +LA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +LA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +LA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +LA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +LA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +LA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +LA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +LA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +LA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +LA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +LA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +LA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +LA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +LA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +LA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +LA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +LA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +LA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +LA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +LA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +LA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +LA,industrial fuel use,coal,coal,2005,OC,0.004608879 +LA,industrial fuel use,coal,coal,2010,OC,0.004949044 +LA,industrial fuel use,coal,coal,2015,OC,0.005291355 +LA,industrial fuel use,coal,coal,2020,OC,0.005047635 +LA,industrial fuel use,coal,coal,2025,OC,0.005240698 +LA,industrial fuel use,coal,coal,2030,OC,0.005398598 +LA,industrial fuel use,coal,coal,2035,OC,0.005483036 +LA,industrial fuel use,coal,coal,2040,OC,0.005583473 +LA,industrial fuel use,coal,coal,2045,OC,0.005638434 +LA,industrial fuel use,coal,coal,2050,OC,0.005723515 +LA,industrial fuel use,coal,coal,2055,OC,0.005777195 +LA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +LA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +LA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +LA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +LA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +LA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +LA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +LA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +LA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +LA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +LA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +LA,industrial fuel use,gas,gas,2005,OC,0.000586894 +LA,industrial fuel use,gas,gas,2010,OC,0.000538986 +LA,industrial fuel use,gas,gas,2015,OC,0.000406177 +LA,industrial fuel use,gas,gas,2020,OC,0.000436774 +LA,industrial fuel use,gas,gas,2025,OC,0.000431434 +LA,industrial fuel use,gas,gas,2030,OC,0.000454497 +LA,industrial fuel use,gas,gas,2035,OC,0.0005142 +LA,industrial fuel use,gas,gas,2040,OC,0.000542203 +LA,industrial fuel use,gas,gas,2045,OC,0.0005354 +LA,industrial fuel use,gas,gas,2050,OC,0.000552822 +LA,industrial fuel use,gas,gas,2055,OC,0.000563528 +LA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +LA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +LA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +LA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +LA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +LA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +LA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +LA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +LA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +LA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +LA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +LA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +LA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +LA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +LA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +LA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +LA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +LA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +LA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +LA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +LA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +LA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +LA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +LA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +LA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +LA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +LA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +LA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +LA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +LA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +LA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +LA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +LA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +LA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +LA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +LA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +LA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +LA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +LA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +LA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +LA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +LA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +LA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +LA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +LA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +LA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +LA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +LA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +LA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +LA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +LA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +LA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +LA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +LA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +LA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +LA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +LA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +LA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +LA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +LA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +LA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +LA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +LA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +LA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +LA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +LA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +LA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +LA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +LA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +LA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +LA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +LA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +LA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +LA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +LA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +LA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +LA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +LA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +LA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +LA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +LA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +LA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +LA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +LA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +LA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +LA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +LA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +LA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +LA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +LA,industrial fuel use,biomass,biomass,2005,CO2,0 +LA,industrial fuel use,biomass,biomass,2010,CO2,0 +LA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +LA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +LA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +LA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +LA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +LA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +LA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +LA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +LA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +LA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +LA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +LA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +LA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +LA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +LA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +LA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +LA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +LA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +LA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +LA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +MA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +MA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +MA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +MA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +MA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +MA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +MA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +MA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +MA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +MA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +MA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +MA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +MA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +MA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +MA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +MA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +MA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +MA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +MA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +MA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +MA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +MA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +MA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +MA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +MA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +MA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +MA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +MA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +MA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +MA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +MA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +MA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +MA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +MA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +MA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +MA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +MA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +MA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +MA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +MA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +MA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +MA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +MA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +MA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +MA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +MA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +MA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +MA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +MA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +MA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +MA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +MA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +MA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +MA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +MA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +MA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +MA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +MA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +MA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +MA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +MA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +MA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +MA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +MA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +MA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +MA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +MA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +MA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +MA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +MA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +MA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +MA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +MA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +MA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +MA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +MA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +MA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +MA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +MA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +MA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +MA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +MA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +MA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +MA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +MA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +MA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +MA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +MA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +MA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +MA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +MA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +MA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +MA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +MA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +MA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +MA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +MA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +MA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +MA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +MA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +MA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +MA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +MA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +MA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +MA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +MA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +MA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +MA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +MA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +MA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +MA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +MA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +MA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +MA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +MA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +MA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +MA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +MA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +MA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +MA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +MA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +MA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +MA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +MA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +MA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +MA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +MA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +MA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +MA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +MA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +MA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +MA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +MA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +MA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +MA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +MA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +MA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +MA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +MA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +MA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +MA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +MA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +MA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +MA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +MA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +MA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +MA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +MA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +MA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +MA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +MA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +MA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +MA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +MA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +MA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +MA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +MA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +MA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +MA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +MA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +MA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +MA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +MA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +MA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +MA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +MA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +MA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +MA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +MA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +MA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +MA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +MA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +MA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +MA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +MA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +MA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +MA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +MA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +MA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +MA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +MA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +MA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +MA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +MA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +MA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +MA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +MA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +MA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +MA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +MA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +MA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +MA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +MA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +MA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +MA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +MA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +MA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +MA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +MA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +MA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +MA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +MA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +MA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +MA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +MA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +MA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +MA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +MA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +MA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +MA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +MA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +MA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +MA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +MA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +MA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +MA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +MA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +MA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +MA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +MA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +MA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +MA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +MA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +MA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +MA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +MA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +MA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +MA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +MA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +MA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +MA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +MA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +MA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +MA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +MA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +MA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +MA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +MA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +MA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +MA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +MA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +MA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +MA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +MA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +MA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +MA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +MA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +MA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +MA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +MA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +MA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +MA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +MA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +MA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +MA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +MA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +MA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +MA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +MA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +MA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +MA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +MA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +MA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +MA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +MA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +MA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +MA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +MA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +MA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +MA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +MA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +MA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +MA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +MA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +MA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +MA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +MA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +MA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +MA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +MA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +MA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +MA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +MA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +MA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +MA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +MA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +MA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +MA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +MA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +MA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +MA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +MA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +MA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +MA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +MA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +MA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +MA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +MA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +MA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +MA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +MA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +MA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +MA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +MA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +MA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +MA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +MA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +MA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +MA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +MA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +MA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +MA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +MA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +MA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +MA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +MA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +MA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +MA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +MA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +MA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +MA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +MA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +MA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +MA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +MA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +MA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +MA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +MA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +MA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +MA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +MA,industrial fuel use,coal,coal,2005,CO,0.069434106 +MA,industrial fuel use,coal,coal,2010,CO,0.07723114 +MA,industrial fuel use,coal,coal,2015,CO,0.068281575 +MA,industrial fuel use,coal,coal,2020,CO,0.063753622 +MA,industrial fuel use,coal,coal,2025,CO,0.065761399 +MA,industrial fuel use,coal,coal,2030,CO,0.067959367 +MA,industrial fuel use,coal,coal,2035,CO,0.069173462 +MA,industrial fuel use,coal,coal,2040,CO,0.070202866 +MA,industrial fuel use,coal,coal,2045,CO,0.071098148 +MA,industrial fuel use,coal,coal,2050,CO,0.072063393 +MA,industrial fuel use,coal,coal,2055,CO,0.072511454 +MA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +MA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +MA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +MA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +MA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +MA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +MA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +MA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +MA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +MA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +MA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +MA,industrial fuel use,gas,gas,2005,CO,0.054958784 +MA,industrial fuel use,gas,gas,2010,CO,0.041119779 +MA,industrial fuel use,gas,gas,2015,CO,0.037376927 +MA,industrial fuel use,gas,gas,2020,CO,0.042196984 +MA,industrial fuel use,gas,gas,2025,CO,0.046340259 +MA,industrial fuel use,gas,gas,2030,CO,0.051044751 +MA,industrial fuel use,gas,gas,2035,CO,0.048377476 +MA,industrial fuel use,gas,gas,2040,CO,0.04844371 +MA,industrial fuel use,gas,gas,2045,CO,0.049325699 +MA,industrial fuel use,gas,gas,2050,CO,0.048085677 +MA,industrial fuel use,gas,gas,2055,CO,0.046506083 +MA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +MA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +MA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +MA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +MA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +MA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +MA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +MA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +MA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +MA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +MA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +MA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +MA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +MA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +MA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +MA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +MA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +MA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +MA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +MA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +MA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +MA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +MA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +MA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +MA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +MA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +MA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +MA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +MA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +MA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +MA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +MA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +MA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +MA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +MA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +MA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +MA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +MA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +MA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +MA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +MA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +MA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +MA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +MA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +MA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +MA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +MA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +MA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +MA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +MA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +MA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +MA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +MA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +MA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +MA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +MA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +MA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +MA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +MA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +MA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +MA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +MA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +MA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +MA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +MA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +MA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +MA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +MA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +MA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +MA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +MA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +MA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +MA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +MA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +MA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +MA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +MA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +MA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +MA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +MA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +MA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +MA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +MA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +MA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +MA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +MA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +MA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +MA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +MA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +MA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +MA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +MA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +MA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +MA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +MA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +MA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +MA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +MA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +MA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +MA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +MA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +MA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +MA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +MA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +MA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +MA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +MA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +MA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +MA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +MA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +MA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +MA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +MA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +MA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +MA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +MA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +MA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +MA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +MA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +MA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +MA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +MA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +MA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +MA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +MA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +MA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +MA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +MA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +MA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +MA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +MA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +MA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +MA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +MA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +MA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +MA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +MA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +MA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +MA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +MA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +MA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +MA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +MA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +MA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +MA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +MA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +MA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +MA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +MA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +MA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +MA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +MA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +MA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +MA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +MA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +MA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +MA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +MA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +MA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +MA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +MA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +MA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +MA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +MA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +MA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +MA,industrial fuel use,coal,coal,2005,BC,0.052178527 +MA,industrial fuel use,coal,coal,2010,BC,0.054113893 +MA,industrial fuel use,coal,coal,2015,BC,0.054816673 +MA,industrial fuel use,coal,coal,2020,BC,0.051442317 +MA,industrial fuel use,coal,coal,2025,BC,0.05280003 +MA,industrial fuel use,coal,coal,2030,BC,0.054819383 +MA,industrial fuel use,coal,coal,2035,BC,0.055934389 +MA,industrial fuel use,coal,coal,2040,BC,0.056737391 +MA,industrial fuel use,coal,coal,2045,BC,0.057341111 +MA,industrial fuel use,coal,coal,2050,BC,0.057867944 +MA,industrial fuel use,coal,coal,2055,BC,0.058307588 +MA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +MA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +MA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +MA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +MA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +MA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +MA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +MA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +MA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +MA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +MA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +MA,industrial fuel use,gas,gas,2005,BC,0.000879555 +MA,industrial fuel use,gas,gas,2010,BC,0.000594596 +MA,industrial fuel use,gas,gas,2015,BC,0.000780779 +MA,industrial fuel use,gas,gas,2020,BC,0.000758542 +MA,industrial fuel use,gas,gas,2025,BC,0.000791704 +MA,industrial fuel use,gas,gas,2030,BC,0.000829295 +MA,industrial fuel use,gas,gas,2035,BC,0.000745895 +MA,industrial fuel use,gas,gas,2040,BC,0.000739727 +MA,industrial fuel use,gas,gas,2045,BC,0.000759191 +MA,industrial fuel use,gas,gas,2050,BC,0.000728476 +MA,industrial fuel use,gas,gas,2055,BC,0.000688571 +MA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +MA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +MA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +MA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +MA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +MA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +MA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +MA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +MA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +MA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +MA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +MA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +MA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +MA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +MA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +MA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +MA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +MA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +MA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +MA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +MA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +MA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +MA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +MA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +MA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +MA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +MA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +MA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +MA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +MA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +MA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +MA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +MA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +MA,industrial fuel use,coal,coal,2005,OC,0.004608879 +MA,industrial fuel use,coal,coal,2010,OC,0.004949044 +MA,industrial fuel use,coal,coal,2015,OC,0.005291355 +MA,industrial fuel use,coal,coal,2020,OC,0.005047635 +MA,industrial fuel use,coal,coal,2025,OC,0.005240698 +MA,industrial fuel use,coal,coal,2030,OC,0.005398598 +MA,industrial fuel use,coal,coal,2035,OC,0.005483036 +MA,industrial fuel use,coal,coal,2040,OC,0.005583473 +MA,industrial fuel use,coal,coal,2045,OC,0.005638434 +MA,industrial fuel use,coal,coal,2050,OC,0.005723515 +MA,industrial fuel use,coal,coal,2055,OC,0.005777195 +MA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +MA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +MA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +MA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +MA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +MA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +MA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +MA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +MA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +MA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +MA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +MA,industrial fuel use,gas,gas,2005,OC,0.000586894 +MA,industrial fuel use,gas,gas,2010,OC,0.000538986 +MA,industrial fuel use,gas,gas,2015,OC,0.000406177 +MA,industrial fuel use,gas,gas,2020,OC,0.000436774 +MA,industrial fuel use,gas,gas,2025,OC,0.000431434 +MA,industrial fuel use,gas,gas,2030,OC,0.000454497 +MA,industrial fuel use,gas,gas,2035,OC,0.0005142 +MA,industrial fuel use,gas,gas,2040,OC,0.000542203 +MA,industrial fuel use,gas,gas,2045,OC,0.0005354 +MA,industrial fuel use,gas,gas,2050,OC,0.000552822 +MA,industrial fuel use,gas,gas,2055,OC,0.000563528 +MA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +MA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +MA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +MA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +MA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +MA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +MA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +MA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +MA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +MA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +MA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +MA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +MA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +MA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +MA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +MA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +MA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +MA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +MA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +MA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +MA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +MA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +MA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +MA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +MA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +MA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +MA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +MA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +MA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +MA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +MA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +MA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +MA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +MA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +MA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +MA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +MA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +MA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +MA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +MA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +MA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +MA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +MA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +MA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +MA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +MA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +MA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +MA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +MA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +MA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +MA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +MA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +MA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +MA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +MA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +MA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +MA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +MA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +MA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +MA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +MA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +MA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +MA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +MA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +MA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +MA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +MA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +MA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +MA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +MA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +MA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +MA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +MA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +MA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +MA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +MA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +MA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +MA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +MA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +MA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +MA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +MA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +MA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +MA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +MA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +MA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +MA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +MA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +MA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +MA,industrial fuel use,biomass,biomass,2005,CO2,0 +MA,industrial fuel use,biomass,biomass,2010,CO2,0 +MA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +MA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +MA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +MA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +MA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +MA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +MA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +MA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +MA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +MA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +MA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +MA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +MA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +MA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +MA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +MA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +MA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +MA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +MA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +MA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +MD,industrial fuel use,coal,coal,2005,NOx,0.261565752 +MD,industrial fuel use,coal,coal,2010,NOx,0.24128762 +MD,industrial fuel use,coal,coal,2015,NOx,0.247879608 +MD,industrial fuel use,coal,coal,2020,NOx,0.234312556 +MD,industrial fuel use,coal,coal,2025,NOx,0.240398293 +MD,industrial fuel use,coal,coal,2030,NOx,0.246677964 +MD,industrial fuel use,coal,coal,2035,NOx,0.250299201 +MD,industrial fuel use,coal,coal,2040,NOx,0.253554811 +MD,industrial fuel use,coal,coal,2045,NOx,0.255578056 +MD,industrial fuel use,coal,coal,2050,NOx,0.258549854 +MD,industrial fuel use,coal,coal,2055,NOx,0.26014596 +MD,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +MD,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +MD,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +MD,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +MD,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +MD,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +MD,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +MD,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +MD,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +MD,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +MD,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +MD,industrial fuel use,gas,gas,2005,NOx,0.080919016 +MD,industrial fuel use,gas,gas,2010,NOx,0.044952568 +MD,industrial fuel use,gas,gas,2015,NOx,0.037239142 +MD,industrial fuel use,gas,gas,2020,NOx,0.040745965 +MD,industrial fuel use,gas,gas,2025,NOx,0.042574105 +MD,industrial fuel use,gas,gas,2030,NOx,0.045347383 +MD,industrial fuel use,gas,gas,2035,NOx,0.048574619 +MD,industrial fuel use,gas,gas,2040,NOx,0.050422899 +MD,industrial fuel use,gas,gas,2045,NOx,0.050680722 +MD,industrial fuel use,gas,gas,2050,NOx,0.0517343 +MD,industrial fuel use,gas,gas,2055,NOx,0.052443137 +MD,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +MD,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +MD,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +MD,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +MD,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +MD,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +MD,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +MD,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +MD,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +MD,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +MD,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +MD,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +MD,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +MD,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +MD,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +MD,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +MD,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +MD,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +MD,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +MD,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +MD,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +MD,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +MD,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +MD,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +MD,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +MD,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +MD,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +MD,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +MD,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +MD,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +MD,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +MD,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +MD,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +MD,industrial fuel use,coal,coal,2005,SO2,0.709862367 +MD,industrial fuel use,coal,coal,2010,SO2,0.679592789 +MD,industrial fuel use,coal,coal,2015,SO2,0.590904591 +MD,industrial fuel use,coal,coal,2020,SO2,0.549595621 +MD,industrial fuel use,coal,coal,2025,SO2,0.56430149 +MD,industrial fuel use,coal,coal,2030,SO2,0.576548046 +MD,industrial fuel use,coal,coal,2035,SO2,0.583595424 +MD,industrial fuel use,coal,coal,2040,SO2,0.590805881 +MD,industrial fuel use,coal,coal,2045,SO2,0.596410723 +MD,industrial fuel use,coal,coal,2050,SO2,0.606154195 +MD,industrial fuel use,coal,coal,2055,SO2,0.611234923 +MD,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +MD,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +MD,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +MD,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +MD,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +MD,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +MD,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +MD,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +MD,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +MD,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +MD,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +MD,industrial fuel use,gas,gas,2005,SO2,0.000213988 +MD,industrial fuel use,gas,gas,2010,SO2,0.002761946 +MD,industrial fuel use,gas,gas,2015,SO2,0.002854723 +MD,industrial fuel use,gas,gas,2020,SO2,0.002771127 +MD,industrial fuel use,gas,gas,2025,SO2,0.002798763 +MD,industrial fuel use,gas,gas,2030,SO2,0.002938075 +MD,industrial fuel use,gas,gas,2035,SO2,0.003016098 +MD,industrial fuel use,gas,gas,2040,SO2,0.003118901 +MD,industrial fuel use,gas,gas,2045,SO2,0.00311325 +MD,industrial fuel use,gas,gas,2050,SO2,0.003090451 +MD,industrial fuel use,gas,gas,2055,SO2,0.003025213 +MD,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +MD,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +MD,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +MD,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +MD,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +MD,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +MD,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +MD,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +MD,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +MD,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +MD,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +MD,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +MD,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +MD,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +MD,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +MD,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +MD,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +MD,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +MD,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +MD,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +MD,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +MD,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +MD,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +MD,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +MD,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +MD,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +MD,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +MD,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +MD,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +MD,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +MD,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +MD,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +MD,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +MD,industrial fuel use,coal,coal,2005,PM10,0.136452905 +MD,industrial fuel use,coal,coal,2010,PM10,0.093662835 +MD,industrial fuel use,coal,coal,2015,PM10,0.100887759 +MD,industrial fuel use,coal,coal,2020,PM10,0.094503476 +MD,industrial fuel use,coal,coal,2025,PM10,0.09752377 +MD,industrial fuel use,coal,coal,2030,PM10,0.099823133 +MD,industrial fuel use,coal,coal,2035,PM10,0.101097535 +MD,industrial fuel use,coal,coal,2040,PM10,0.102438117 +MD,industrial fuel use,coal,coal,2045,PM10,0.103553978 +MD,industrial fuel use,coal,coal,2050,PM10,0.105393893 +MD,industrial fuel use,coal,coal,2055,PM10,0.106304221 +MD,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +MD,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +MD,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +MD,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +MD,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +MD,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +MD,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +MD,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +MD,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +MD,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +MD,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +MD,industrial fuel use,gas,gas,2005,PM10,0.002144603 +MD,industrial fuel use,gas,gas,2010,PM10,0.004157892 +MD,industrial fuel use,gas,gas,2015,PM10,0.004308637 +MD,industrial fuel use,gas,gas,2020,PM10,0.004261296 +MD,industrial fuel use,gas,gas,2025,PM10,0.004334357 +MD,industrial fuel use,gas,gas,2030,PM10,0.00454497 +MD,industrial fuel use,gas,gas,2035,PM10,0.004581054 +MD,industrial fuel use,gas,gas,2040,PM10,0.004690204 +MD,industrial fuel use,gas,gas,2045,PM10,0.004695842 +MD,industrial fuel use,gas,gas,2050,PM10,0.004649052 +MD,industrial fuel use,gas,gas,2055,PM10,0.00454824 +MD,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +MD,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +MD,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +MD,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +MD,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +MD,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +MD,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +MD,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +MD,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +MD,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +MD,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +MD,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +MD,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +MD,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +MD,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +MD,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +MD,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +MD,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +MD,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +MD,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +MD,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +MD,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +MD,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +MD,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +MD,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +MD,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +MD,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +MD,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +MD,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +MD,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +MD,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +MD,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +MD,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +MD,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +MD,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +MD,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +MD,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +MD,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +MD,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +MD,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +MD,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +MD,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +MD,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +MD,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +MD,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +MD,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +MD,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +MD,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +MD,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +MD,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +MD,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +MD,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +MD,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +MD,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +MD,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +MD,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +MD,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +MD,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +MD,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +MD,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +MD,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +MD,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +MD,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +MD,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +MD,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +MD,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +MD,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +MD,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +MD,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +MD,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +MD,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +MD,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +MD,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +MD,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +MD,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +MD,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +MD,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +MD,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +MD,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +MD,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +MD,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +MD,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +MD,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +MD,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +MD,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +MD,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +MD,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +MD,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +MD,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +MD,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +MD,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +MD,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +MD,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +MD,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +MD,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +MD,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +MD,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +MD,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +MD,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +MD,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +MD,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +MD,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +MD,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +MD,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +MD,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +MD,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +MD,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +MD,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +MD,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +MD,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +MD,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +MD,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +MD,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +MD,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +MD,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +MD,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +MD,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +MD,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +MD,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +MD,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +MD,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +MD,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +MD,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +MD,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +MD,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +MD,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +MD,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +MD,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +MD,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +MD,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +MD,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +MD,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +MD,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +MD,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +MD,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +MD,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +MD,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +MD,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +MD,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +MD,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +MD,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +MD,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +MD,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +MD,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +MD,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +MD,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +MD,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +MD,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +MD,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +MD,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +MD,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +MD,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +MD,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +MD,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +MD,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +MD,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +MD,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +MD,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +MD,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +MD,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +MD,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +MD,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +MD,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +MD,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +MD,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +MD,industrial fuel use,coal,coal,2005,CO,0.069434106 +MD,industrial fuel use,coal,coal,2010,CO,0.07723114 +MD,industrial fuel use,coal,coal,2015,CO,0.068281575 +MD,industrial fuel use,coal,coal,2020,CO,0.063753622 +MD,industrial fuel use,coal,coal,2025,CO,0.065761399 +MD,industrial fuel use,coal,coal,2030,CO,0.067959367 +MD,industrial fuel use,coal,coal,2035,CO,0.069173462 +MD,industrial fuel use,coal,coal,2040,CO,0.070202866 +MD,industrial fuel use,coal,coal,2045,CO,0.071098148 +MD,industrial fuel use,coal,coal,2050,CO,0.072063393 +MD,industrial fuel use,coal,coal,2055,CO,0.072511454 +MD,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +MD,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +MD,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +MD,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +MD,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +MD,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +MD,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +MD,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +MD,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +MD,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +MD,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +MD,industrial fuel use,gas,gas,2005,CO,0.054958784 +MD,industrial fuel use,gas,gas,2010,CO,0.041119779 +MD,industrial fuel use,gas,gas,2015,CO,0.037376927 +MD,industrial fuel use,gas,gas,2020,CO,0.042196984 +MD,industrial fuel use,gas,gas,2025,CO,0.046340259 +MD,industrial fuel use,gas,gas,2030,CO,0.051044751 +MD,industrial fuel use,gas,gas,2035,CO,0.048377476 +MD,industrial fuel use,gas,gas,2040,CO,0.04844371 +MD,industrial fuel use,gas,gas,2045,CO,0.049325699 +MD,industrial fuel use,gas,gas,2050,CO,0.048085677 +MD,industrial fuel use,gas,gas,2055,CO,0.046506083 +MD,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +MD,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +MD,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +MD,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +MD,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +MD,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +MD,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +MD,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +MD,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +MD,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +MD,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +MD,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +MD,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +MD,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +MD,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +MD,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +MD,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +MD,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +MD,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +MD,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +MD,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +MD,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +MD,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +MD,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +MD,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +MD,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +MD,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +MD,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +MD,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +MD,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +MD,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +MD,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +MD,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +MD,industrial fuel use,coal,coal,2005,CH4,0.008615911 +MD,industrial fuel use,coal,coal,2010,CH4,0.007087118 +MD,industrial fuel use,coal,coal,2015,CH4,0.007645512 +MD,industrial fuel use,coal,coal,2020,CH4,0.007093206 +MD,industrial fuel use,coal,coal,2025,CH4,0.007280827 +MD,industrial fuel use,coal,coal,2030,CH4,0.007426545 +MD,industrial fuel use,coal,coal,2035,CH4,0.007524098 +MD,industrial fuel use,coal,coal,2040,CH4,0.007621441 +MD,industrial fuel use,coal,coal,2045,CH4,0.007691307 +MD,industrial fuel use,coal,coal,2050,CH4,0.007801358 +MD,industrial fuel use,coal,coal,2055,CH4,0.007871907 +MD,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +MD,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +MD,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +MD,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +MD,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +MD,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +MD,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +MD,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +MD,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +MD,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +MD,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +MD,industrial fuel use,gas,gas,2005,CH4,0.002575726 +MD,industrial fuel use,gas,gas,2010,CH4,0.0036902 +MD,industrial fuel use,gas,gas,2015,CH4,0.001847174 +MD,industrial fuel use,gas,gas,2020,CH4,0.002575374 +MD,industrial fuel use,gas,gas,2025,CH4,0.002470739 +MD,industrial fuel use,gas,gas,2030,CH4,0.002514812 +MD,industrial fuel use,gas,gas,2035,CH4,0.004402202 +MD,industrial fuel use,gas,gas,2040,CH4,0.005194877 +MD,industrial fuel use,gas,gas,2045,CH4,0.005264291 +MD,industrial fuel use,gas,gas,2050,CH4,0.006086388 +MD,industrial fuel use,gas,gas,2055,CH4,0.006850703 +MD,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +MD,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +MD,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +MD,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +MD,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +MD,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +MD,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +MD,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +MD,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +MD,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +MD,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +MD,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +MD,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +MD,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +MD,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +MD,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +MD,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +MD,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +MD,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +MD,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +MD,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +MD,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +MD,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +MD,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +MD,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +MD,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +MD,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +MD,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +MD,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +MD,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +MD,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +MD,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +MD,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +MD,industrial fuel use,coal,coal,2005,N2O,0.002945881 +MD,industrial fuel use,coal,coal,2010,N2O,0.004699422 +MD,industrial fuel use,coal,coal,2015,N2O,0.003718249 +MD,industrial fuel use,coal,coal,2020,N2O,0.003503987 +MD,industrial fuel use,coal,coal,2025,N2O,0.003902448 +MD,industrial fuel use,coal,coal,2030,N2O,0.005231917 +MD,industrial fuel use,coal,coal,2035,N2O,0.005844861 +MD,industrial fuel use,coal,coal,2040,N2O,0.006123209 +MD,industrial fuel use,coal,coal,2045,N2O,0.006493024 +MD,industrial fuel use,coal,coal,2050,N2O,0.00643187 +MD,industrial fuel use,coal,coal,2055,N2O,0.006580646 +MD,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +MD,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +MD,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +MD,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +MD,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +MD,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +MD,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +MD,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +MD,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +MD,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +MD,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +MD,industrial fuel use,gas,gas,2005,N2O,0.000509795 +MD,industrial fuel use,gas,gas,2010,N2O,0.000459136 +MD,industrial fuel use,gas,gas,2015,N2O,0.000457847 +MD,industrial fuel use,gas,gas,2020,N2O,0.000469807 +MD,industrial fuel use,gas,gas,2025,N2O,0.0004748 +MD,industrial fuel use,gas,gas,2030,N2O,0.000493269 +MD,industrial fuel use,gas,gas,2035,N2O,0.0005142 +MD,industrial fuel use,gas,gas,2040,N2O,0.000525413 +MD,industrial fuel use,gas,gas,2045,N2O,0.000530678 +MD,industrial fuel use,gas,gas,2050,N2O,0.000534097 +MD,industrial fuel use,gas,gas,2055,N2O,0.000535185 +MD,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +MD,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +MD,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +MD,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +MD,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +MD,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +MD,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +MD,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +MD,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +MD,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +MD,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +MD,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +MD,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +MD,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +MD,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +MD,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +MD,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +MD,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +MD,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +MD,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +MD,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +MD,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +MD,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +MD,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +MD,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +MD,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +MD,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +MD,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +MD,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +MD,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +MD,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +MD,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +MD,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +MD,industrial fuel use,coal,coal,2005,BC,0.052178527 +MD,industrial fuel use,coal,coal,2010,BC,0.054113893 +MD,industrial fuel use,coal,coal,2015,BC,0.054816673 +MD,industrial fuel use,coal,coal,2020,BC,0.051442317 +MD,industrial fuel use,coal,coal,2025,BC,0.05280003 +MD,industrial fuel use,coal,coal,2030,BC,0.054819383 +MD,industrial fuel use,coal,coal,2035,BC,0.055934389 +MD,industrial fuel use,coal,coal,2040,BC,0.056737391 +MD,industrial fuel use,coal,coal,2045,BC,0.057341111 +MD,industrial fuel use,coal,coal,2050,BC,0.057867944 +MD,industrial fuel use,coal,coal,2055,BC,0.058307588 +MD,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +MD,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +MD,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +MD,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +MD,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +MD,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +MD,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +MD,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +MD,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +MD,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +MD,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +MD,industrial fuel use,gas,gas,2005,BC,0.000879555 +MD,industrial fuel use,gas,gas,2010,BC,0.000594596 +MD,industrial fuel use,gas,gas,2015,BC,0.000780779 +MD,industrial fuel use,gas,gas,2020,BC,0.000758542 +MD,industrial fuel use,gas,gas,2025,BC,0.000791704 +MD,industrial fuel use,gas,gas,2030,BC,0.000829295 +MD,industrial fuel use,gas,gas,2035,BC,0.000745895 +MD,industrial fuel use,gas,gas,2040,BC,0.000739727 +MD,industrial fuel use,gas,gas,2045,BC,0.000759191 +MD,industrial fuel use,gas,gas,2050,BC,0.000728476 +MD,industrial fuel use,gas,gas,2055,BC,0.000688571 +MD,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +MD,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +MD,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +MD,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +MD,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +MD,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +MD,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +MD,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +MD,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +MD,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +MD,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +MD,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +MD,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +MD,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +MD,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +MD,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +MD,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +MD,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +MD,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +MD,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +MD,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +MD,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +MD,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +MD,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +MD,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +MD,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +MD,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +MD,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +MD,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +MD,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +MD,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +MD,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +MD,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +MD,industrial fuel use,coal,coal,2005,OC,0.004608879 +MD,industrial fuel use,coal,coal,2010,OC,0.004949044 +MD,industrial fuel use,coal,coal,2015,OC,0.005291355 +MD,industrial fuel use,coal,coal,2020,OC,0.005047635 +MD,industrial fuel use,coal,coal,2025,OC,0.005240698 +MD,industrial fuel use,coal,coal,2030,OC,0.005398598 +MD,industrial fuel use,coal,coal,2035,OC,0.005483036 +MD,industrial fuel use,coal,coal,2040,OC,0.005583473 +MD,industrial fuel use,coal,coal,2045,OC,0.005638434 +MD,industrial fuel use,coal,coal,2050,OC,0.005723515 +MD,industrial fuel use,coal,coal,2055,OC,0.005777195 +MD,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +MD,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +MD,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +MD,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +MD,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +MD,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +MD,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +MD,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +MD,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +MD,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +MD,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +MD,industrial fuel use,gas,gas,2005,OC,0.000586894 +MD,industrial fuel use,gas,gas,2010,OC,0.000538986 +MD,industrial fuel use,gas,gas,2015,OC,0.000406177 +MD,industrial fuel use,gas,gas,2020,OC,0.000436774 +MD,industrial fuel use,gas,gas,2025,OC,0.000431434 +MD,industrial fuel use,gas,gas,2030,OC,0.000454497 +MD,industrial fuel use,gas,gas,2035,OC,0.0005142 +MD,industrial fuel use,gas,gas,2040,OC,0.000542203 +MD,industrial fuel use,gas,gas,2045,OC,0.0005354 +MD,industrial fuel use,gas,gas,2050,OC,0.000552822 +MD,industrial fuel use,gas,gas,2055,OC,0.000563528 +MD,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +MD,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +MD,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +MD,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +MD,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +MD,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +MD,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +MD,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +MD,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +MD,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +MD,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +MD,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +MD,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +MD,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +MD,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +MD,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +MD,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +MD,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +MD,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +MD,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +MD,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +MD,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +MD,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +MD,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +MD,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +MD,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +MD,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +MD,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +MD,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +MD,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +MD,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +MD,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +MD,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +MD,industrial fuel use,coal,coal,2005,CO2,0.022413751 +MD,industrial fuel use,coal,coal,2010,CO2,0.023247485 +MD,industrial fuel use,coal,coal,2015,CO2,0.023542577 +MD,industrial fuel use,coal,coal,2020,CO2,0.022100946 +MD,industrial fuel use,coal,coal,2025,CO2,0.022682182 +MD,industrial fuel use,coal,coal,2030,CO2,0.023544891 +MD,industrial fuel use,coal,coal,2035,CO2,0.024022124 +MD,industrial fuel use,coal,coal,2040,CO2,0.024371859 +MD,industrial fuel use,coal,coal,2045,CO2,0.024626877 +MD,industrial fuel use,coal,coal,2050,CO2,0.024861999 +MD,industrial fuel use,coal,coal,2055,CO2,0.025047846 +MD,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +MD,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +MD,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +MD,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +MD,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +MD,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +MD,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +MD,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +MD,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +MD,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +MD,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +MD,industrial fuel use,gas,gas,2005,CO2,0.010100215 +MD,industrial fuel use,gas,gas,2010,CO2,0.008735772 +MD,industrial fuel use,gas,gas,2015,CO2,0.008975567 +MD,industrial fuel use,gas,gas,2020,CO2,0.009141549 +MD,industrial fuel use,gas,gas,2025,CO2,0.009319403 +MD,industrial fuel use,gas,gas,2030,CO2,0.009661635 +MD,industrial fuel use,gas,gas,2035,CO2,0.009858394 +MD,industrial fuel use,gas,gas,2040,CO2,0.010090146 +MD,industrial fuel use,gas,gas,2045,CO2,0.010177486 +MD,industrial fuel use,gas,gas,2050,CO2,0.010210503 +MD,industrial fuel use,gas,gas,2055,CO2,0.010168744 +MD,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +MD,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +MD,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +MD,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +MD,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +MD,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +MD,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +MD,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +MD,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +MD,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +MD,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +MD,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +MD,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +MD,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +MD,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +MD,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +MD,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +MD,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +MD,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +MD,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +MD,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +MD,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +MD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +MD,industrial fuel use,biomass,biomass,2005,CO2,0 +MD,industrial fuel use,biomass,biomass,2010,CO2,0 +MD,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +MD,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +MD,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +MD,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +MD,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +MD,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +MD,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +MD,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +MD,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +MD,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +MD,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +MD,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +MD,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +MD,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +MD,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +MD,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +MD,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +MD,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +MD,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +MD,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +ME,industrial fuel use,coal,coal,2005,NOx,0.261565752 +ME,industrial fuel use,coal,coal,2010,NOx,0.24128762 +ME,industrial fuel use,coal,coal,2015,NOx,0.247879608 +ME,industrial fuel use,coal,coal,2020,NOx,0.234312556 +ME,industrial fuel use,coal,coal,2025,NOx,0.240398293 +ME,industrial fuel use,coal,coal,2030,NOx,0.246677964 +ME,industrial fuel use,coal,coal,2035,NOx,0.250299201 +ME,industrial fuel use,coal,coal,2040,NOx,0.253554811 +ME,industrial fuel use,coal,coal,2045,NOx,0.255578056 +ME,industrial fuel use,coal,coal,2050,NOx,0.258549854 +ME,industrial fuel use,coal,coal,2055,NOx,0.26014596 +ME,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +ME,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +ME,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +ME,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +ME,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +ME,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +ME,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +ME,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +ME,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +ME,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +ME,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +ME,industrial fuel use,gas,gas,2005,NOx,0.080919016 +ME,industrial fuel use,gas,gas,2010,NOx,0.044952568 +ME,industrial fuel use,gas,gas,2015,NOx,0.037239142 +ME,industrial fuel use,gas,gas,2020,NOx,0.040745965 +ME,industrial fuel use,gas,gas,2025,NOx,0.042574105 +ME,industrial fuel use,gas,gas,2030,NOx,0.045347383 +ME,industrial fuel use,gas,gas,2035,NOx,0.048574619 +ME,industrial fuel use,gas,gas,2040,NOx,0.050422899 +ME,industrial fuel use,gas,gas,2045,NOx,0.050680722 +ME,industrial fuel use,gas,gas,2050,NOx,0.0517343 +ME,industrial fuel use,gas,gas,2055,NOx,0.052443137 +ME,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +ME,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +ME,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +ME,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +ME,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +ME,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +ME,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +ME,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +ME,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +ME,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +ME,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +ME,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +ME,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +ME,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +ME,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +ME,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +ME,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +ME,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +ME,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +ME,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +ME,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +ME,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +ME,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +ME,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +ME,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +ME,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +ME,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +ME,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +ME,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +ME,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +ME,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +ME,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +ME,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +ME,industrial fuel use,coal,coal,2005,SO2,0.709862367 +ME,industrial fuel use,coal,coal,2010,SO2,0.679592789 +ME,industrial fuel use,coal,coal,2015,SO2,0.590904591 +ME,industrial fuel use,coal,coal,2020,SO2,0.549595621 +ME,industrial fuel use,coal,coal,2025,SO2,0.56430149 +ME,industrial fuel use,coal,coal,2030,SO2,0.576548046 +ME,industrial fuel use,coal,coal,2035,SO2,0.583595424 +ME,industrial fuel use,coal,coal,2040,SO2,0.590805881 +ME,industrial fuel use,coal,coal,2045,SO2,0.596410723 +ME,industrial fuel use,coal,coal,2050,SO2,0.606154195 +ME,industrial fuel use,coal,coal,2055,SO2,0.611234923 +ME,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +ME,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +ME,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +ME,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +ME,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +ME,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +ME,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +ME,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +ME,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +ME,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +ME,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +ME,industrial fuel use,gas,gas,2005,SO2,0.000213988 +ME,industrial fuel use,gas,gas,2010,SO2,0.002761946 +ME,industrial fuel use,gas,gas,2015,SO2,0.002854723 +ME,industrial fuel use,gas,gas,2020,SO2,0.002771127 +ME,industrial fuel use,gas,gas,2025,SO2,0.002798763 +ME,industrial fuel use,gas,gas,2030,SO2,0.002938075 +ME,industrial fuel use,gas,gas,2035,SO2,0.003016098 +ME,industrial fuel use,gas,gas,2040,SO2,0.003118901 +ME,industrial fuel use,gas,gas,2045,SO2,0.00311325 +ME,industrial fuel use,gas,gas,2050,SO2,0.003090451 +ME,industrial fuel use,gas,gas,2055,SO2,0.003025213 +ME,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +ME,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +ME,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +ME,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +ME,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +ME,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +ME,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +ME,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +ME,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +ME,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +ME,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +ME,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +ME,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +ME,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +ME,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +ME,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +ME,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +ME,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +ME,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +ME,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +ME,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +ME,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +ME,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +ME,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +ME,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +ME,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +ME,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +ME,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +ME,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +ME,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +ME,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +ME,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +ME,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +ME,industrial fuel use,coal,coal,2005,PM10,0.136452905 +ME,industrial fuel use,coal,coal,2010,PM10,0.093662835 +ME,industrial fuel use,coal,coal,2015,PM10,0.100887759 +ME,industrial fuel use,coal,coal,2020,PM10,0.094503476 +ME,industrial fuel use,coal,coal,2025,PM10,0.09752377 +ME,industrial fuel use,coal,coal,2030,PM10,0.099823133 +ME,industrial fuel use,coal,coal,2035,PM10,0.101097535 +ME,industrial fuel use,coal,coal,2040,PM10,0.102438117 +ME,industrial fuel use,coal,coal,2045,PM10,0.103553978 +ME,industrial fuel use,coal,coal,2050,PM10,0.105393893 +ME,industrial fuel use,coal,coal,2055,PM10,0.106304221 +ME,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +ME,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +ME,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +ME,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +ME,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +ME,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +ME,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +ME,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +ME,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +ME,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +ME,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +ME,industrial fuel use,gas,gas,2005,PM10,0.002144603 +ME,industrial fuel use,gas,gas,2010,PM10,0.004157892 +ME,industrial fuel use,gas,gas,2015,PM10,0.004308637 +ME,industrial fuel use,gas,gas,2020,PM10,0.004261296 +ME,industrial fuel use,gas,gas,2025,PM10,0.004334357 +ME,industrial fuel use,gas,gas,2030,PM10,0.00454497 +ME,industrial fuel use,gas,gas,2035,PM10,0.004581054 +ME,industrial fuel use,gas,gas,2040,PM10,0.004690204 +ME,industrial fuel use,gas,gas,2045,PM10,0.004695842 +ME,industrial fuel use,gas,gas,2050,PM10,0.004649052 +ME,industrial fuel use,gas,gas,2055,PM10,0.00454824 +ME,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +ME,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +ME,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +ME,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +ME,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +ME,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +ME,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +ME,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +ME,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +ME,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +ME,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +ME,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +ME,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +ME,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +ME,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +ME,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +ME,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +ME,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +ME,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +ME,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +ME,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +ME,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +ME,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +ME,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +ME,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +ME,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +ME,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +ME,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +ME,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +ME,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +ME,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +ME,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +ME,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +ME,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +ME,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +ME,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +ME,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +ME,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +ME,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +ME,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +ME,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +ME,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +ME,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +ME,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +ME,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +ME,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +ME,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +ME,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +ME,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +ME,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +ME,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +ME,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +ME,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +ME,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +ME,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +ME,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +ME,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +ME,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +ME,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +ME,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +ME,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +ME,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +ME,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +ME,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +ME,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +ME,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +ME,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +ME,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +ME,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +ME,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +ME,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +ME,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +ME,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +ME,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +ME,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +ME,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +ME,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +ME,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +ME,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +ME,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +ME,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +ME,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +ME,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +ME,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +ME,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +ME,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +ME,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +ME,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +ME,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +ME,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +ME,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +ME,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +ME,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +ME,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +ME,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +ME,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +ME,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +ME,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +ME,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +ME,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +ME,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +ME,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +ME,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +ME,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +ME,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +ME,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +ME,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +ME,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +ME,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +ME,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +ME,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +ME,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +ME,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +ME,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +ME,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +ME,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +ME,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +ME,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +ME,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +ME,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +ME,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +ME,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +ME,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +ME,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +ME,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +ME,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +ME,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +ME,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +ME,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +ME,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +ME,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +ME,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +ME,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +ME,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +ME,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +ME,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +ME,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +ME,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +ME,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +ME,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +ME,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +ME,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +ME,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +ME,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +ME,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +ME,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +ME,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +ME,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +ME,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +ME,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +ME,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +ME,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +ME,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +ME,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +ME,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +ME,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +ME,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +ME,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +ME,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +ME,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +ME,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +ME,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +ME,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +ME,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +ME,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +ME,industrial fuel use,coal,coal,2005,CO,0.069434106 +ME,industrial fuel use,coal,coal,2010,CO,0.07723114 +ME,industrial fuel use,coal,coal,2015,CO,0.068281575 +ME,industrial fuel use,coal,coal,2020,CO,0.063753622 +ME,industrial fuel use,coal,coal,2025,CO,0.065761399 +ME,industrial fuel use,coal,coal,2030,CO,0.067959367 +ME,industrial fuel use,coal,coal,2035,CO,0.069173462 +ME,industrial fuel use,coal,coal,2040,CO,0.070202866 +ME,industrial fuel use,coal,coal,2045,CO,0.071098148 +ME,industrial fuel use,coal,coal,2050,CO,0.072063393 +ME,industrial fuel use,coal,coal,2055,CO,0.072511454 +ME,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +ME,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +ME,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +ME,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +ME,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +ME,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +ME,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +ME,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +ME,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +ME,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +ME,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +ME,industrial fuel use,gas,gas,2005,CO,0.054958784 +ME,industrial fuel use,gas,gas,2010,CO,0.041119779 +ME,industrial fuel use,gas,gas,2015,CO,0.037376927 +ME,industrial fuel use,gas,gas,2020,CO,0.042196984 +ME,industrial fuel use,gas,gas,2025,CO,0.046340259 +ME,industrial fuel use,gas,gas,2030,CO,0.051044751 +ME,industrial fuel use,gas,gas,2035,CO,0.048377476 +ME,industrial fuel use,gas,gas,2040,CO,0.04844371 +ME,industrial fuel use,gas,gas,2045,CO,0.049325699 +ME,industrial fuel use,gas,gas,2050,CO,0.048085677 +ME,industrial fuel use,gas,gas,2055,CO,0.046506083 +ME,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +ME,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +ME,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +ME,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +ME,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +ME,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +ME,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +ME,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +ME,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +ME,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +ME,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +ME,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +ME,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +ME,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +ME,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +ME,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +ME,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +ME,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +ME,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +ME,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +ME,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +ME,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +ME,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +ME,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +ME,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +ME,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +ME,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +ME,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +ME,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +ME,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +ME,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +ME,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +ME,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +ME,industrial fuel use,coal,coal,2005,CH4,0.008615911 +ME,industrial fuel use,coal,coal,2010,CH4,0.007087118 +ME,industrial fuel use,coal,coal,2015,CH4,0.007645512 +ME,industrial fuel use,coal,coal,2020,CH4,0.007093206 +ME,industrial fuel use,coal,coal,2025,CH4,0.007280827 +ME,industrial fuel use,coal,coal,2030,CH4,0.007426545 +ME,industrial fuel use,coal,coal,2035,CH4,0.007524098 +ME,industrial fuel use,coal,coal,2040,CH4,0.007621441 +ME,industrial fuel use,coal,coal,2045,CH4,0.007691307 +ME,industrial fuel use,coal,coal,2050,CH4,0.007801358 +ME,industrial fuel use,coal,coal,2055,CH4,0.007871907 +ME,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +ME,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +ME,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +ME,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +ME,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +ME,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +ME,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +ME,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +ME,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +ME,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +ME,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +ME,industrial fuel use,gas,gas,2005,CH4,0.002575726 +ME,industrial fuel use,gas,gas,2010,CH4,0.0036902 +ME,industrial fuel use,gas,gas,2015,CH4,0.001847174 +ME,industrial fuel use,gas,gas,2020,CH4,0.002575374 +ME,industrial fuel use,gas,gas,2025,CH4,0.002470739 +ME,industrial fuel use,gas,gas,2030,CH4,0.002514812 +ME,industrial fuel use,gas,gas,2035,CH4,0.004402202 +ME,industrial fuel use,gas,gas,2040,CH4,0.005194877 +ME,industrial fuel use,gas,gas,2045,CH4,0.005264291 +ME,industrial fuel use,gas,gas,2050,CH4,0.006086388 +ME,industrial fuel use,gas,gas,2055,CH4,0.006850703 +ME,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +ME,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +ME,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +ME,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +ME,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +ME,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +ME,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +ME,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +ME,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +ME,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +ME,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +ME,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +ME,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +ME,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +ME,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +ME,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +ME,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +ME,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +ME,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +ME,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +ME,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +ME,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +ME,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +ME,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +ME,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +ME,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +ME,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +ME,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +ME,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +ME,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +ME,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +ME,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +ME,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +ME,industrial fuel use,coal,coal,2005,N2O,0.002945881 +ME,industrial fuel use,coal,coal,2010,N2O,0.004699422 +ME,industrial fuel use,coal,coal,2015,N2O,0.003718249 +ME,industrial fuel use,coal,coal,2020,N2O,0.003503987 +ME,industrial fuel use,coal,coal,2025,N2O,0.003902448 +ME,industrial fuel use,coal,coal,2030,N2O,0.005231917 +ME,industrial fuel use,coal,coal,2035,N2O,0.005844861 +ME,industrial fuel use,coal,coal,2040,N2O,0.006123209 +ME,industrial fuel use,coal,coal,2045,N2O,0.006493024 +ME,industrial fuel use,coal,coal,2050,N2O,0.00643187 +ME,industrial fuel use,coal,coal,2055,N2O,0.006580646 +ME,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +ME,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +ME,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +ME,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +ME,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +ME,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +ME,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +ME,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +ME,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +ME,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +ME,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +ME,industrial fuel use,gas,gas,2005,N2O,0.000509795 +ME,industrial fuel use,gas,gas,2010,N2O,0.000459136 +ME,industrial fuel use,gas,gas,2015,N2O,0.000457847 +ME,industrial fuel use,gas,gas,2020,N2O,0.000469807 +ME,industrial fuel use,gas,gas,2025,N2O,0.0004748 +ME,industrial fuel use,gas,gas,2030,N2O,0.000493269 +ME,industrial fuel use,gas,gas,2035,N2O,0.0005142 +ME,industrial fuel use,gas,gas,2040,N2O,0.000525413 +ME,industrial fuel use,gas,gas,2045,N2O,0.000530678 +ME,industrial fuel use,gas,gas,2050,N2O,0.000534097 +ME,industrial fuel use,gas,gas,2055,N2O,0.000535185 +ME,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +ME,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +ME,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +ME,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +ME,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +ME,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +ME,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +ME,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +ME,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +ME,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +ME,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +ME,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +ME,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +ME,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +ME,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +ME,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +ME,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +ME,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +ME,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +ME,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +ME,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +ME,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +ME,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +ME,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +ME,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +ME,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +ME,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +ME,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +ME,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +ME,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +ME,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +ME,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +ME,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +ME,industrial fuel use,coal,coal,2005,BC,0.052178527 +ME,industrial fuel use,coal,coal,2010,BC,0.054113893 +ME,industrial fuel use,coal,coal,2015,BC,0.054816673 +ME,industrial fuel use,coal,coal,2020,BC,0.051442317 +ME,industrial fuel use,coal,coal,2025,BC,0.05280003 +ME,industrial fuel use,coal,coal,2030,BC,0.054819383 +ME,industrial fuel use,coal,coal,2035,BC,0.055934389 +ME,industrial fuel use,coal,coal,2040,BC,0.056737391 +ME,industrial fuel use,coal,coal,2045,BC,0.057341111 +ME,industrial fuel use,coal,coal,2050,BC,0.057867944 +ME,industrial fuel use,coal,coal,2055,BC,0.058307588 +ME,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +ME,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +ME,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +ME,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +ME,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +ME,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +ME,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +ME,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +ME,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +ME,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +ME,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +ME,industrial fuel use,gas,gas,2005,BC,0.000879555 +ME,industrial fuel use,gas,gas,2010,BC,0.000594596 +ME,industrial fuel use,gas,gas,2015,BC,0.000780779 +ME,industrial fuel use,gas,gas,2020,BC,0.000758542 +ME,industrial fuel use,gas,gas,2025,BC,0.000791704 +ME,industrial fuel use,gas,gas,2030,BC,0.000829295 +ME,industrial fuel use,gas,gas,2035,BC,0.000745895 +ME,industrial fuel use,gas,gas,2040,BC,0.000739727 +ME,industrial fuel use,gas,gas,2045,BC,0.000759191 +ME,industrial fuel use,gas,gas,2050,BC,0.000728476 +ME,industrial fuel use,gas,gas,2055,BC,0.000688571 +ME,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +ME,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +ME,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +ME,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +ME,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +ME,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +ME,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +ME,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +ME,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +ME,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +ME,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +ME,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +ME,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +ME,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +ME,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +ME,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +ME,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +ME,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +ME,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +ME,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +ME,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +ME,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +ME,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +ME,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +ME,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +ME,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +ME,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +ME,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +ME,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +ME,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +ME,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +ME,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +ME,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +ME,industrial fuel use,coal,coal,2005,OC,0.004608879 +ME,industrial fuel use,coal,coal,2010,OC,0.004949044 +ME,industrial fuel use,coal,coal,2015,OC,0.005291355 +ME,industrial fuel use,coal,coal,2020,OC,0.005047635 +ME,industrial fuel use,coal,coal,2025,OC,0.005240698 +ME,industrial fuel use,coal,coal,2030,OC,0.005398598 +ME,industrial fuel use,coal,coal,2035,OC,0.005483036 +ME,industrial fuel use,coal,coal,2040,OC,0.005583473 +ME,industrial fuel use,coal,coal,2045,OC,0.005638434 +ME,industrial fuel use,coal,coal,2050,OC,0.005723515 +ME,industrial fuel use,coal,coal,2055,OC,0.005777195 +ME,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +ME,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +ME,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +ME,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +ME,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +ME,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +ME,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +ME,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +ME,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +ME,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +ME,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +ME,industrial fuel use,gas,gas,2005,OC,0.000586894 +ME,industrial fuel use,gas,gas,2010,OC,0.000538986 +ME,industrial fuel use,gas,gas,2015,OC,0.000406177 +ME,industrial fuel use,gas,gas,2020,OC,0.000436774 +ME,industrial fuel use,gas,gas,2025,OC,0.000431434 +ME,industrial fuel use,gas,gas,2030,OC,0.000454497 +ME,industrial fuel use,gas,gas,2035,OC,0.0005142 +ME,industrial fuel use,gas,gas,2040,OC,0.000542203 +ME,industrial fuel use,gas,gas,2045,OC,0.0005354 +ME,industrial fuel use,gas,gas,2050,OC,0.000552822 +ME,industrial fuel use,gas,gas,2055,OC,0.000563528 +ME,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +ME,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +ME,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +ME,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +ME,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +ME,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +ME,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +ME,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +ME,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +ME,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +ME,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +ME,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +ME,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +ME,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +ME,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +ME,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +ME,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +ME,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +ME,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +ME,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +ME,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +ME,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +ME,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +ME,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +ME,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +ME,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +ME,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +ME,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +ME,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +ME,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +ME,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +ME,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +ME,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +ME,industrial fuel use,coal,coal,2005,CO2,0.022413751 +ME,industrial fuel use,coal,coal,2010,CO2,0.023247485 +ME,industrial fuel use,coal,coal,2015,CO2,0.023542577 +ME,industrial fuel use,coal,coal,2020,CO2,0.022100946 +ME,industrial fuel use,coal,coal,2025,CO2,0.022682182 +ME,industrial fuel use,coal,coal,2030,CO2,0.023544891 +ME,industrial fuel use,coal,coal,2035,CO2,0.024022124 +ME,industrial fuel use,coal,coal,2040,CO2,0.024371859 +ME,industrial fuel use,coal,coal,2045,CO2,0.024626877 +ME,industrial fuel use,coal,coal,2050,CO2,0.024861999 +ME,industrial fuel use,coal,coal,2055,CO2,0.025047846 +ME,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +ME,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +ME,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +ME,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +ME,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +ME,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +ME,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +ME,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +ME,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +ME,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +ME,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +ME,industrial fuel use,gas,gas,2005,CO2,0.010100215 +ME,industrial fuel use,gas,gas,2010,CO2,0.008735772 +ME,industrial fuel use,gas,gas,2015,CO2,0.008975567 +ME,industrial fuel use,gas,gas,2020,CO2,0.009141549 +ME,industrial fuel use,gas,gas,2025,CO2,0.009319403 +ME,industrial fuel use,gas,gas,2030,CO2,0.009661635 +ME,industrial fuel use,gas,gas,2035,CO2,0.009858394 +ME,industrial fuel use,gas,gas,2040,CO2,0.010090146 +ME,industrial fuel use,gas,gas,2045,CO2,0.010177486 +ME,industrial fuel use,gas,gas,2050,CO2,0.010210503 +ME,industrial fuel use,gas,gas,2055,CO2,0.010168744 +ME,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +ME,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +ME,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +ME,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +ME,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +ME,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +ME,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +ME,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +ME,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +ME,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +ME,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +ME,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +ME,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +ME,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +ME,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +ME,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +ME,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +ME,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +ME,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +ME,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +ME,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +ME,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +ME,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +ME,industrial fuel use,biomass,biomass,2005,CO2,0 +ME,industrial fuel use,biomass,biomass,2010,CO2,0 +ME,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +ME,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +ME,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +ME,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +ME,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +ME,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +ME,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +ME,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +ME,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +ME,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +ME,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +ME,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +ME,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +ME,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +ME,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +ME,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +ME,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +ME,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +ME,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +ME,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +MI,industrial fuel use,coal,coal,2005,NOx,0.261565752 +MI,industrial fuel use,coal,coal,2010,NOx,0.24128762 +MI,industrial fuel use,coal,coal,2015,NOx,0.247879608 +MI,industrial fuel use,coal,coal,2020,NOx,0.234312556 +MI,industrial fuel use,coal,coal,2025,NOx,0.240398293 +MI,industrial fuel use,coal,coal,2030,NOx,0.246677964 +MI,industrial fuel use,coal,coal,2035,NOx,0.250299201 +MI,industrial fuel use,coal,coal,2040,NOx,0.253554811 +MI,industrial fuel use,coal,coal,2045,NOx,0.255578056 +MI,industrial fuel use,coal,coal,2050,NOx,0.258549854 +MI,industrial fuel use,coal,coal,2055,NOx,0.26014596 +MI,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +MI,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +MI,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +MI,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +MI,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +MI,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +MI,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +MI,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +MI,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +MI,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +MI,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +MI,industrial fuel use,gas,gas,2005,NOx,0.080919016 +MI,industrial fuel use,gas,gas,2010,NOx,0.044952568 +MI,industrial fuel use,gas,gas,2015,NOx,0.037239142 +MI,industrial fuel use,gas,gas,2020,NOx,0.040745965 +MI,industrial fuel use,gas,gas,2025,NOx,0.042574105 +MI,industrial fuel use,gas,gas,2030,NOx,0.045347383 +MI,industrial fuel use,gas,gas,2035,NOx,0.048574619 +MI,industrial fuel use,gas,gas,2040,NOx,0.050422899 +MI,industrial fuel use,gas,gas,2045,NOx,0.050680722 +MI,industrial fuel use,gas,gas,2050,NOx,0.0517343 +MI,industrial fuel use,gas,gas,2055,NOx,0.052443137 +MI,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +MI,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +MI,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +MI,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +MI,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +MI,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +MI,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +MI,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +MI,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +MI,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +MI,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +MI,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +MI,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +MI,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +MI,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +MI,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +MI,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +MI,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +MI,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +MI,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +MI,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +MI,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +MI,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +MI,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +MI,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +MI,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +MI,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +MI,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +MI,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +MI,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +MI,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +MI,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +MI,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +MI,industrial fuel use,coal,coal,2005,SO2,0.709862367 +MI,industrial fuel use,coal,coal,2010,SO2,0.679592789 +MI,industrial fuel use,coal,coal,2015,SO2,0.590904591 +MI,industrial fuel use,coal,coal,2020,SO2,0.549595621 +MI,industrial fuel use,coal,coal,2025,SO2,0.56430149 +MI,industrial fuel use,coal,coal,2030,SO2,0.576548046 +MI,industrial fuel use,coal,coal,2035,SO2,0.583595424 +MI,industrial fuel use,coal,coal,2040,SO2,0.590805881 +MI,industrial fuel use,coal,coal,2045,SO2,0.596410723 +MI,industrial fuel use,coal,coal,2050,SO2,0.606154195 +MI,industrial fuel use,coal,coal,2055,SO2,0.611234923 +MI,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +MI,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +MI,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +MI,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +MI,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +MI,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +MI,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +MI,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +MI,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +MI,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +MI,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +MI,industrial fuel use,gas,gas,2005,SO2,0.000213988 +MI,industrial fuel use,gas,gas,2010,SO2,0.002761946 +MI,industrial fuel use,gas,gas,2015,SO2,0.002854723 +MI,industrial fuel use,gas,gas,2020,SO2,0.002771127 +MI,industrial fuel use,gas,gas,2025,SO2,0.002798763 +MI,industrial fuel use,gas,gas,2030,SO2,0.002938075 +MI,industrial fuel use,gas,gas,2035,SO2,0.003016098 +MI,industrial fuel use,gas,gas,2040,SO2,0.003118901 +MI,industrial fuel use,gas,gas,2045,SO2,0.00311325 +MI,industrial fuel use,gas,gas,2050,SO2,0.003090451 +MI,industrial fuel use,gas,gas,2055,SO2,0.003025213 +MI,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +MI,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +MI,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +MI,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +MI,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +MI,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +MI,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +MI,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +MI,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +MI,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +MI,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +MI,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +MI,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +MI,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +MI,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +MI,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +MI,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +MI,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +MI,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +MI,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +MI,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +MI,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +MI,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +MI,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +MI,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +MI,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +MI,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +MI,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +MI,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +MI,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +MI,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +MI,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +MI,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +MI,industrial fuel use,coal,coal,2005,PM10,0.136452905 +MI,industrial fuel use,coal,coal,2010,PM10,0.093662835 +MI,industrial fuel use,coal,coal,2015,PM10,0.100887759 +MI,industrial fuel use,coal,coal,2020,PM10,0.094503476 +MI,industrial fuel use,coal,coal,2025,PM10,0.09752377 +MI,industrial fuel use,coal,coal,2030,PM10,0.099823133 +MI,industrial fuel use,coal,coal,2035,PM10,0.101097535 +MI,industrial fuel use,coal,coal,2040,PM10,0.102438117 +MI,industrial fuel use,coal,coal,2045,PM10,0.103553978 +MI,industrial fuel use,coal,coal,2050,PM10,0.105393893 +MI,industrial fuel use,coal,coal,2055,PM10,0.106304221 +MI,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +MI,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +MI,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +MI,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +MI,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +MI,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +MI,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +MI,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +MI,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +MI,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +MI,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +MI,industrial fuel use,gas,gas,2005,PM10,0.002144603 +MI,industrial fuel use,gas,gas,2010,PM10,0.004157892 +MI,industrial fuel use,gas,gas,2015,PM10,0.004308637 +MI,industrial fuel use,gas,gas,2020,PM10,0.004261296 +MI,industrial fuel use,gas,gas,2025,PM10,0.004334357 +MI,industrial fuel use,gas,gas,2030,PM10,0.00454497 +MI,industrial fuel use,gas,gas,2035,PM10,0.004581054 +MI,industrial fuel use,gas,gas,2040,PM10,0.004690204 +MI,industrial fuel use,gas,gas,2045,PM10,0.004695842 +MI,industrial fuel use,gas,gas,2050,PM10,0.004649052 +MI,industrial fuel use,gas,gas,2055,PM10,0.00454824 +MI,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +MI,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +MI,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +MI,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +MI,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +MI,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +MI,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +MI,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +MI,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +MI,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +MI,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +MI,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +MI,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +MI,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +MI,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +MI,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +MI,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +MI,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +MI,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +MI,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +MI,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +MI,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +MI,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +MI,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +MI,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +MI,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +MI,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +MI,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +MI,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +MI,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +MI,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +MI,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +MI,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +MI,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +MI,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +MI,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +MI,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +MI,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +MI,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +MI,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +MI,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +MI,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +MI,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +MI,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +MI,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +MI,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +MI,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +MI,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +MI,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +MI,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +MI,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +MI,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +MI,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +MI,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +MI,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +MI,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +MI,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +MI,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +MI,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +MI,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +MI,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +MI,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +MI,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +MI,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +MI,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +MI,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +MI,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +MI,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +MI,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +MI,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +MI,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +MI,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +MI,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +MI,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +MI,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +MI,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +MI,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +MI,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +MI,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +MI,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +MI,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +MI,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +MI,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +MI,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +MI,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +MI,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +MI,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +MI,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +MI,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +MI,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +MI,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +MI,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +MI,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +MI,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +MI,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +MI,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +MI,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +MI,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +MI,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +MI,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +MI,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +MI,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +MI,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +MI,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +MI,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +MI,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +MI,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +MI,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +MI,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +MI,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +MI,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +MI,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +MI,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +MI,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +MI,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +MI,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +MI,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +MI,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +MI,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +MI,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +MI,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +MI,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +MI,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +MI,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +MI,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +MI,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +MI,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +MI,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +MI,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +MI,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +MI,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +MI,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +MI,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +MI,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +MI,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +MI,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +MI,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +MI,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +MI,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +MI,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +MI,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +MI,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +MI,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +MI,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +MI,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +MI,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +MI,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +MI,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +MI,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +MI,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +MI,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +MI,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +MI,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +MI,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +MI,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +MI,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +MI,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +MI,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +MI,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +MI,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +MI,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +MI,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +MI,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +MI,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +MI,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +MI,industrial fuel use,coal,coal,2005,CO,0.069434106 +MI,industrial fuel use,coal,coal,2010,CO,0.07723114 +MI,industrial fuel use,coal,coal,2015,CO,0.068281575 +MI,industrial fuel use,coal,coal,2020,CO,0.063753622 +MI,industrial fuel use,coal,coal,2025,CO,0.065761399 +MI,industrial fuel use,coal,coal,2030,CO,0.067959367 +MI,industrial fuel use,coal,coal,2035,CO,0.069173462 +MI,industrial fuel use,coal,coal,2040,CO,0.070202866 +MI,industrial fuel use,coal,coal,2045,CO,0.071098148 +MI,industrial fuel use,coal,coal,2050,CO,0.072063393 +MI,industrial fuel use,coal,coal,2055,CO,0.072511454 +MI,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +MI,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +MI,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +MI,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +MI,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +MI,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +MI,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +MI,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +MI,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +MI,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +MI,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +MI,industrial fuel use,gas,gas,2005,CO,0.054958784 +MI,industrial fuel use,gas,gas,2010,CO,0.041119779 +MI,industrial fuel use,gas,gas,2015,CO,0.037376927 +MI,industrial fuel use,gas,gas,2020,CO,0.042196984 +MI,industrial fuel use,gas,gas,2025,CO,0.046340259 +MI,industrial fuel use,gas,gas,2030,CO,0.051044751 +MI,industrial fuel use,gas,gas,2035,CO,0.048377476 +MI,industrial fuel use,gas,gas,2040,CO,0.04844371 +MI,industrial fuel use,gas,gas,2045,CO,0.049325699 +MI,industrial fuel use,gas,gas,2050,CO,0.048085677 +MI,industrial fuel use,gas,gas,2055,CO,0.046506083 +MI,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +MI,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +MI,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +MI,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +MI,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +MI,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +MI,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +MI,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +MI,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +MI,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +MI,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +MI,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +MI,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +MI,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +MI,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +MI,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +MI,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +MI,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +MI,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +MI,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +MI,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +MI,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +MI,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +MI,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +MI,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +MI,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +MI,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +MI,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +MI,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +MI,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +MI,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +MI,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +MI,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +MI,industrial fuel use,coal,coal,2005,CH4,0.008615911 +MI,industrial fuel use,coal,coal,2010,CH4,0.007087118 +MI,industrial fuel use,coal,coal,2015,CH4,0.007645512 +MI,industrial fuel use,coal,coal,2020,CH4,0.007093206 +MI,industrial fuel use,coal,coal,2025,CH4,0.007280827 +MI,industrial fuel use,coal,coal,2030,CH4,0.007426545 +MI,industrial fuel use,coal,coal,2035,CH4,0.007524098 +MI,industrial fuel use,coal,coal,2040,CH4,0.007621441 +MI,industrial fuel use,coal,coal,2045,CH4,0.007691307 +MI,industrial fuel use,coal,coal,2050,CH4,0.007801358 +MI,industrial fuel use,coal,coal,2055,CH4,0.007871907 +MI,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +MI,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +MI,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +MI,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +MI,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +MI,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +MI,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +MI,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +MI,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +MI,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +MI,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +MI,industrial fuel use,gas,gas,2005,CH4,0.002575726 +MI,industrial fuel use,gas,gas,2010,CH4,0.0036902 +MI,industrial fuel use,gas,gas,2015,CH4,0.001847174 +MI,industrial fuel use,gas,gas,2020,CH4,0.002575374 +MI,industrial fuel use,gas,gas,2025,CH4,0.002470739 +MI,industrial fuel use,gas,gas,2030,CH4,0.002514812 +MI,industrial fuel use,gas,gas,2035,CH4,0.004402202 +MI,industrial fuel use,gas,gas,2040,CH4,0.005194877 +MI,industrial fuel use,gas,gas,2045,CH4,0.005264291 +MI,industrial fuel use,gas,gas,2050,CH4,0.006086388 +MI,industrial fuel use,gas,gas,2055,CH4,0.006850703 +MI,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +MI,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +MI,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +MI,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +MI,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +MI,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +MI,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +MI,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +MI,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +MI,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +MI,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +MI,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +MI,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +MI,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +MI,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +MI,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +MI,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +MI,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +MI,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +MI,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +MI,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +MI,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +MI,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +MI,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +MI,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +MI,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +MI,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +MI,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +MI,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +MI,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +MI,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +MI,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +MI,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +MI,industrial fuel use,coal,coal,2005,N2O,0.002945881 +MI,industrial fuel use,coal,coal,2010,N2O,0.004699422 +MI,industrial fuel use,coal,coal,2015,N2O,0.003718249 +MI,industrial fuel use,coal,coal,2020,N2O,0.003503987 +MI,industrial fuel use,coal,coal,2025,N2O,0.003902448 +MI,industrial fuel use,coal,coal,2030,N2O,0.005231917 +MI,industrial fuel use,coal,coal,2035,N2O,0.005844861 +MI,industrial fuel use,coal,coal,2040,N2O,0.006123209 +MI,industrial fuel use,coal,coal,2045,N2O,0.006493024 +MI,industrial fuel use,coal,coal,2050,N2O,0.00643187 +MI,industrial fuel use,coal,coal,2055,N2O,0.006580646 +MI,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +MI,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +MI,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +MI,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +MI,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +MI,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +MI,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +MI,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +MI,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +MI,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +MI,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +MI,industrial fuel use,gas,gas,2005,N2O,0.000509795 +MI,industrial fuel use,gas,gas,2010,N2O,0.000459136 +MI,industrial fuel use,gas,gas,2015,N2O,0.000457847 +MI,industrial fuel use,gas,gas,2020,N2O,0.000469807 +MI,industrial fuel use,gas,gas,2025,N2O,0.0004748 +MI,industrial fuel use,gas,gas,2030,N2O,0.000493269 +MI,industrial fuel use,gas,gas,2035,N2O,0.0005142 +MI,industrial fuel use,gas,gas,2040,N2O,0.000525413 +MI,industrial fuel use,gas,gas,2045,N2O,0.000530678 +MI,industrial fuel use,gas,gas,2050,N2O,0.000534097 +MI,industrial fuel use,gas,gas,2055,N2O,0.000535185 +MI,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +MI,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +MI,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +MI,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +MI,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +MI,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +MI,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +MI,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +MI,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +MI,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +MI,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +MI,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +MI,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +MI,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +MI,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +MI,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +MI,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +MI,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +MI,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +MI,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +MI,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +MI,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +MI,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +MI,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +MI,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +MI,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +MI,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +MI,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +MI,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +MI,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +MI,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +MI,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +MI,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +MI,industrial fuel use,coal,coal,2005,BC,0.052178527 +MI,industrial fuel use,coal,coal,2010,BC,0.054113893 +MI,industrial fuel use,coal,coal,2015,BC,0.054816673 +MI,industrial fuel use,coal,coal,2020,BC,0.051442317 +MI,industrial fuel use,coal,coal,2025,BC,0.05280003 +MI,industrial fuel use,coal,coal,2030,BC,0.054819383 +MI,industrial fuel use,coal,coal,2035,BC,0.055934389 +MI,industrial fuel use,coal,coal,2040,BC,0.056737391 +MI,industrial fuel use,coal,coal,2045,BC,0.057341111 +MI,industrial fuel use,coal,coal,2050,BC,0.057867944 +MI,industrial fuel use,coal,coal,2055,BC,0.058307588 +MI,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +MI,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +MI,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +MI,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +MI,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +MI,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +MI,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +MI,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +MI,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +MI,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +MI,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +MI,industrial fuel use,gas,gas,2005,BC,0.000879555 +MI,industrial fuel use,gas,gas,2010,BC,0.000594596 +MI,industrial fuel use,gas,gas,2015,BC,0.000780779 +MI,industrial fuel use,gas,gas,2020,BC,0.000758542 +MI,industrial fuel use,gas,gas,2025,BC,0.000791704 +MI,industrial fuel use,gas,gas,2030,BC,0.000829295 +MI,industrial fuel use,gas,gas,2035,BC,0.000745895 +MI,industrial fuel use,gas,gas,2040,BC,0.000739727 +MI,industrial fuel use,gas,gas,2045,BC,0.000759191 +MI,industrial fuel use,gas,gas,2050,BC,0.000728476 +MI,industrial fuel use,gas,gas,2055,BC,0.000688571 +MI,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +MI,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +MI,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +MI,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +MI,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +MI,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +MI,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +MI,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +MI,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +MI,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +MI,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +MI,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +MI,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +MI,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +MI,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +MI,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +MI,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +MI,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +MI,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +MI,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +MI,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +MI,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +MI,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +MI,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +MI,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +MI,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +MI,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +MI,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +MI,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +MI,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +MI,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +MI,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +MI,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +MI,industrial fuel use,coal,coal,2005,OC,0.004608879 +MI,industrial fuel use,coal,coal,2010,OC,0.004949044 +MI,industrial fuel use,coal,coal,2015,OC,0.005291355 +MI,industrial fuel use,coal,coal,2020,OC,0.005047635 +MI,industrial fuel use,coal,coal,2025,OC,0.005240698 +MI,industrial fuel use,coal,coal,2030,OC,0.005398598 +MI,industrial fuel use,coal,coal,2035,OC,0.005483036 +MI,industrial fuel use,coal,coal,2040,OC,0.005583473 +MI,industrial fuel use,coal,coal,2045,OC,0.005638434 +MI,industrial fuel use,coal,coal,2050,OC,0.005723515 +MI,industrial fuel use,coal,coal,2055,OC,0.005777195 +MI,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +MI,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +MI,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +MI,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +MI,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +MI,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +MI,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +MI,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +MI,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +MI,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +MI,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +MI,industrial fuel use,gas,gas,2005,OC,0.000586894 +MI,industrial fuel use,gas,gas,2010,OC,0.000538986 +MI,industrial fuel use,gas,gas,2015,OC,0.000406177 +MI,industrial fuel use,gas,gas,2020,OC,0.000436774 +MI,industrial fuel use,gas,gas,2025,OC,0.000431434 +MI,industrial fuel use,gas,gas,2030,OC,0.000454497 +MI,industrial fuel use,gas,gas,2035,OC,0.0005142 +MI,industrial fuel use,gas,gas,2040,OC,0.000542203 +MI,industrial fuel use,gas,gas,2045,OC,0.0005354 +MI,industrial fuel use,gas,gas,2050,OC,0.000552822 +MI,industrial fuel use,gas,gas,2055,OC,0.000563528 +MI,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +MI,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +MI,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +MI,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +MI,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +MI,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +MI,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +MI,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +MI,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +MI,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +MI,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +MI,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +MI,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +MI,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +MI,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +MI,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +MI,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +MI,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +MI,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +MI,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +MI,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +MI,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +MI,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +MI,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +MI,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +MI,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +MI,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +MI,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +MI,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +MI,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +MI,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +MI,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +MI,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +MI,industrial fuel use,coal,coal,2005,CO2,0.022413751 +MI,industrial fuel use,coal,coal,2010,CO2,0.023247485 +MI,industrial fuel use,coal,coal,2015,CO2,0.023542577 +MI,industrial fuel use,coal,coal,2020,CO2,0.022100946 +MI,industrial fuel use,coal,coal,2025,CO2,0.022682182 +MI,industrial fuel use,coal,coal,2030,CO2,0.023544891 +MI,industrial fuel use,coal,coal,2035,CO2,0.024022124 +MI,industrial fuel use,coal,coal,2040,CO2,0.024371859 +MI,industrial fuel use,coal,coal,2045,CO2,0.024626877 +MI,industrial fuel use,coal,coal,2050,CO2,0.024861999 +MI,industrial fuel use,coal,coal,2055,CO2,0.025047846 +MI,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +MI,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +MI,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +MI,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +MI,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +MI,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +MI,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +MI,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +MI,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +MI,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +MI,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +MI,industrial fuel use,gas,gas,2005,CO2,0.010100215 +MI,industrial fuel use,gas,gas,2010,CO2,0.008735772 +MI,industrial fuel use,gas,gas,2015,CO2,0.008975567 +MI,industrial fuel use,gas,gas,2020,CO2,0.009141549 +MI,industrial fuel use,gas,gas,2025,CO2,0.009319403 +MI,industrial fuel use,gas,gas,2030,CO2,0.009661635 +MI,industrial fuel use,gas,gas,2035,CO2,0.009858394 +MI,industrial fuel use,gas,gas,2040,CO2,0.010090146 +MI,industrial fuel use,gas,gas,2045,CO2,0.010177486 +MI,industrial fuel use,gas,gas,2050,CO2,0.010210503 +MI,industrial fuel use,gas,gas,2055,CO2,0.010168744 +MI,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +MI,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +MI,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +MI,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +MI,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +MI,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +MI,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +MI,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +MI,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +MI,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +MI,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +MI,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +MI,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +MI,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +MI,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +MI,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +MI,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +MI,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +MI,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +MI,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +MI,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +MI,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +MI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +MI,industrial fuel use,biomass,biomass,2005,CO2,0 +MI,industrial fuel use,biomass,biomass,2010,CO2,0 +MI,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +MI,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +MI,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +MI,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +MI,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +MI,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +MI,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +MI,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +MI,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +MI,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +MI,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +MI,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +MI,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +MI,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +MI,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +MI,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +MI,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +MI,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +MI,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +MI,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +MN,industrial fuel use,coal,coal,2005,NOx,0.261565752 +MN,industrial fuel use,coal,coal,2010,NOx,0.24128762 +MN,industrial fuel use,coal,coal,2015,NOx,0.247879608 +MN,industrial fuel use,coal,coal,2020,NOx,0.234312556 +MN,industrial fuel use,coal,coal,2025,NOx,0.240398293 +MN,industrial fuel use,coal,coal,2030,NOx,0.246677964 +MN,industrial fuel use,coal,coal,2035,NOx,0.250299201 +MN,industrial fuel use,coal,coal,2040,NOx,0.253554811 +MN,industrial fuel use,coal,coal,2045,NOx,0.255578056 +MN,industrial fuel use,coal,coal,2050,NOx,0.258549854 +MN,industrial fuel use,coal,coal,2055,NOx,0.26014596 +MN,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +MN,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +MN,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +MN,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +MN,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +MN,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +MN,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +MN,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +MN,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +MN,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +MN,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +MN,industrial fuel use,gas,gas,2005,NOx,0.080919016 +MN,industrial fuel use,gas,gas,2010,NOx,0.044952568 +MN,industrial fuel use,gas,gas,2015,NOx,0.037239142 +MN,industrial fuel use,gas,gas,2020,NOx,0.040745965 +MN,industrial fuel use,gas,gas,2025,NOx,0.042574105 +MN,industrial fuel use,gas,gas,2030,NOx,0.045347383 +MN,industrial fuel use,gas,gas,2035,NOx,0.048574619 +MN,industrial fuel use,gas,gas,2040,NOx,0.050422899 +MN,industrial fuel use,gas,gas,2045,NOx,0.050680722 +MN,industrial fuel use,gas,gas,2050,NOx,0.0517343 +MN,industrial fuel use,gas,gas,2055,NOx,0.052443137 +MN,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +MN,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +MN,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +MN,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +MN,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +MN,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +MN,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +MN,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +MN,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +MN,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +MN,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +MN,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +MN,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +MN,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +MN,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +MN,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +MN,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +MN,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +MN,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +MN,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +MN,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +MN,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +MN,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +MN,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +MN,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +MN,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +MN,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +MN,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +MN,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +MN,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +MN,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +MN,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +MN,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +MN,industrial fuel use,coal,coal,2005,SO2,0.709862367 +MN,industrial fuel use,coal,coal,2010,SO2,0.679592789 +MN,industrial fuel use,coal,coal,2015,SO2,0.590904591 +MN,industrial fuel use,coal,coal,2020,SO2,0.549595621 +MN,industrial fuel use,coal,coal,2025,SO2,0.56430149 +MN,industrial fuel use,coal,coal,2030,SO2,0.576548046 +MN,industrial fuel use,coal,coal,2035,SO2,0.583595424 +MN,industrial fuel use,coal,coal,2040,SO2,0.590805881 +MN,industrial fuel use,coal,coal,2045,SO2,0.596410723 +MN,industrial fuel use,coal,coal,2050,SO2,0.606154195 +MN,industrial fuel use,coal,coal,2055,SO2,0.611234923 +MN,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +MN,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +MN,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +MN,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +MN,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +MN,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +MN,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +MN,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +MN,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +MN,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +MN,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +MN,industrial fuel use,gas,gas,2005,SO2,0.000213988 +MN,industrial fuel use,gas,gas,2010,SO2,0.002761946 +MN,industrial fuel use,gas,gas,2015,SO2,0.002854723 +MN,industrial fuel use,gas,gas,2020,SO2,0.002771127 +MN,industrial fuel use,gas,gas,2025,SO2,0.002798763 +MN,industrial fuel use,gas,gas,2030,SO2,0.002938075 +MN,industrial fuel use,gas,gas,2035,SO2,0.003016098 +MN,industrial fuel use,gas,gas,2040,SO2,0.003118901 +MN,industrial fuel use,gas,gas,2045,SO2,0.00311325 +MN,industrial fuel use,gas,gas,2050,SO2,0.003090451 +MN,industrial fuel use,gas,gas,2055,SO2,0.003025213 +MN,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +MN,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +MN,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +MN,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +MN,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +MN,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +MN,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +MN,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +MN,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +MN,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +MN,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +MN,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +MN,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +MN,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +MN,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +MN,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +MN,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +MN,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +MN,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +MN,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +MN,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +MN,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +MN,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +MN,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +MN,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +MN,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +MN,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +MN,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +MN,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +MN,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +MN,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +MN,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +MN,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +MN,industrial fuel use,coal,coal,2005,PM10,0.136452905 +MN,industrial fuel use,coal,coal,2010,PM10,0.093662835 +MN,industrial fuel use,coal,coal,2015,PM10,0.100887759 +MN,industrial fuel use,coal,coal,2020,PM10,0.094503476 +MN,industrial fuel use,coal,coal,2025,PM10,0.09752377 +MN,industrial fuel use,coal,coal,2030,PM10,0.099823133 +MN,industrial fuel use,coal,coal,2035,PM10,0.101097535 +MN,industrial fuel use,coal,coal,2040,PM10,0.102438117 +MN,industrial fuel use,coal,coal,2045,PM10,0.103553978 +MN,industrial fuel use,coal,coal,2050,PM10,0.105393893 +MN,industrial fuel use,coal,coal,2055,PM10,0.106304221 +MN,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +MN,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +MN,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +MN,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +MN,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +MN,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +MN,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +MN,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +MN,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +MN,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +MN,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +MN,industrial fuel use,gas,gas,2005,PM10,0.002144603 +MN,industrial fuel use,gas,gas,2010,PM10,0.004157892 +MN,industrial fuel use,gas,gas,2015,PM10,0.004308637 +MN,industrial fuel use,gas,gas,2020,PM10,0.004261296 +MN,industrial fuel use,gas,gas,2025,PM10,0.004334357 +MN,industrial fuel use,gas,gas,2030,PM10,0.00454497 +MN,industrial fuel use,gas,gas,2035,PM10,0.004581054 +MN,industrial fuel use,gas,gas,2040,PM10,0.004690204 +MN,industrial fuel use,gas,gas,2045,PM10,0.004695842 +MN,industrial fuel use,gas,gas,2050,PM10,0.004649052 +MN,industrial fuel use,gas,gas,2055,PM10,0.00454824 +MN,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +MN,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +MN,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +MN,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +MN,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +MN,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +MN,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +MN,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +MN,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +MN,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +MN,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +MN,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +MN,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +MN,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +MN,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +MN,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +MN,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +MN,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +MN,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +MN,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +MN,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +MN,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +MN,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +MN,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +MN,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +MN,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +MN,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +MN,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +MN,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +MN,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +MN,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +MN,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +MN,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +MN,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +MN,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +MN,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +MN,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +MN,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +MN,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +MN,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +MN,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +MN,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +MN,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +MN,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +MN,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +MN,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +MN,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +MN,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +MN,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +MN,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +MN,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +MN,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +MN,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +MN,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +MN,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +MN,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +MN,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +MN,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +MN,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +MN,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +MN,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +MN,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +MN,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +MN,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +MN,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +MN,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +MN,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +MN,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +MN,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +MN,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +MN,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +MN,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +MN,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +MN,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +MN,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +MN,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +MN,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +MN,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +MN,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +MN,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +MN,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +MN,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +MN,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +MN,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +MN,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +MN,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +MN,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +MN,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +MN,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +MN,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +MN,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +MN,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +MN,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +MN,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +MN,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +MN,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +MN,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +MN,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +MN,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +MN,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +MN,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +MN,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +MN,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +MN,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +MN,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +MN,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +MN,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +MN,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +MN,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +MN,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +MN,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +MN,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +MN,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +MN,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +MN,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +MN,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +MN,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +MN,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +MN,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +MN,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +MN,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +MN,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +MN,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +MN,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +MN,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +MN,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +MN,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +MN,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +MN,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +MN,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +MN,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +MN,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +MN,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +MN,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +MN,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +MN,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +MN,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +MN,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +MN,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +MN,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +MN,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +MN,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +MN,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +MN,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +MN,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +MN,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +MN,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +MN,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +MN,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +MN,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +MN,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +MN,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +MN,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +MN,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +MN,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +MN,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +MN,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +MN,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +MN,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +MN,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +MN,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +MN,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +MN,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +MN,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +MN,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +MN,industrial fuel use,coal,coal,2005,CO,0.069434106 +MN,industrial fuel use,coal,coal,2010,CO,0.07723114 +MN,industrial fuel use,coal,coal,2015,CO,0.068281575 +MN,industrial fuel use,coal,coal,2020,CO,0.063753622 +MN,industrial fuel use,coal,coal,2025,CO,0.065761399 +MN,industrial fuel use,coal,coal,2030,CO,0.067959367 +MN,industrial fuel use,coal,coal,2035,CO,0.069173462 +MN,industrial fuel use,coal,coal,2040,CO,0.070202866 +MN,industrial fuel use,coal,coal,2045,CO,0.071098148 +MN,industrial fuel use,coal,coal,2050,CO,0.072063393 +MN,industrial fuel use,coal,coal,2055,CO,0.072511454 +MN,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +MN,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +MN,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +MN,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +MN,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +MN,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +MN,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +MN,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +MN,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +MN,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +MN,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +MN,industrial fuel use,gas,gas,2005,CO,0.054958784 +MN,industrial fuel use,gas,gas,2010,CO,0.041119779 +MN,industrial fuel use,gas,gas,2015,CO,0.037376927 +MN,industrial fuel use,gas,gas,2020,CO,0.042196984 +MN,industrial fuel use,gas,gas,2025,CO,0.046340259 +MN,industrial fuel use,gas,gas,2030,CO,0.051044751 +MN,industrial fuel use,gas,gas,2035,CO,0.048377476 +MN,industrial fuel use,gas,gas,2040,CO,0.04844371 +MN,industrial fuel use,gas,gas,2045,CO,0.049325699 +MN,industrial fuel use,gas,gas,2050,CO,0.048085677 +MN,industrial fuel use,gas,gas,2055,CO,0.046506083 +MN,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +MN,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +MN,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +MN,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +MN,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +MN,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +MN,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +MN,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +MN,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +MN,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +MN,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +MN,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +MN,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +MN,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +MN,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +MN,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +MN,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +MN,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +MN,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +MN,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +MN,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +MN,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +MN,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +MN,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +MN,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +MN,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +MN,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +MN,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +MN,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +MN,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +MN,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +MN,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +MN,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +MN,industrial fuel use,coal,coal,2005,CH4,0.008615911 +MN,industrial fuel use,coal,coal,2010,CH4,0.007087118 +MN,industrial fuel use,coal,coal,2015,CH4,0.007645512 +MN,industrial fuel use,coal,coal,2020,CH4,0.007093206 +MN,industrial fuel use,coal,coal,2025,CH4,0.007280827 +MN,industrial fuel use,coal,coal,2030,CH4,0.007426545 +MN,industrial fuel use,coal,coal,2035,CH4,0.007524098 +MN,industrial fuel use,coal,coal,2040,CH4,0.007621441 +MN,industrial fuel use,coal,coal,2045,CH4,0.007691307 +MN,industrial fuel use,coal,coal,2050,CH4,0.007801358 +MN,industrial fuel use,coal,coal,2055,CH4,0.007871907 +MN,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +MN,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +MN,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +MN,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +MN,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +MN,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +MN,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +MN,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +MN,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +MN,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +MN,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +MN,industrial fuel use,gas,gas,2005,CH4,0.002575726 +MN,industrial fuel use,gas,gas,2010,CH4,0.0036902 +MN,industrial fuel use,gas,gas,2015,CH4,0.001847174 +MN,industrial fuel use,gas,gas,2020,CH4,0.002575374 +MN,industrial fuel use,gas,gas,2025,CH4,0.002470739 +MN,industrial fuel use,gas,gas,2030,CH4,0.002514812 +MN,industrial fuel use,gas,gas,2035,CH4,0.004402202 +MN,industrial fuel use,gas,gas,2040,CH4,0.005194877 +MN,industrial fuel use,gas,gas,2045,CH4,0.005264291 +MN,industrial fuel use,gas,gas,2050,CH4,0.006086388 +MN,industrial fuel use,gas,gas,2055,CH4,0.006850703 +MN,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +MN,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +MN,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +MN,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +MN,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +MN,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +MN,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +MN,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +MN,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +MN,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +MN,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +MN,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +MN,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +MN,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +MN,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +MN,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +MN,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +MN,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +MN,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +MN,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +MN,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +MN,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +MN,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +MN,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +MN,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +MN,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +MN,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +MN,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +MN,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +MN,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +MN,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +MN,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +MN,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +MN,industrial fuel use,coal,coal,2005,N2O,0.002945881 +MN,industrial fuel use,coal,coal,2010,N2O,0.004699422 +MN,industrial fuel use,coal,coal,2015,N2O,0.003718249 +MN,industrial fuel use,coal,coal,2020,N2O,0.003503987 +MN,industrial fuel use,coal,coal,2025,N2O,0.003902448 +MN,industrial fuel use,coal,coal,2030,N2O,0.005231917 +MN,industrial fuel use,coal,coal,2035,N2O,0.005844861 +MN,industrial fuel use,coal,coal,2040,N2O,0.006123209 +MN,industrial fuel use,coal,coal,2045,N2O,0.006493024 +MN,industrial fuel use,coal,coal,2050,N2O,0.00643187 +MN,industrial fuel use,coal,coal,2055,N2O,0.006580646 +MN,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +MN,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +MN,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +MN,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +MN,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +MN,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +MN,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +MN,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +MN,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +MN,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +MN,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +MN,industrial fuel use,gas,gas,2005,N2O,0.000509795 +MN,industrial fuel use,gas,gas,2010,N2O,0.000459136 +MN,industrial fuel use,gas,gas,2015,N2O,0.000457847 +MN,industrial fuel use,gas,gas,2020,N2O,0.000469807 +MN,industrial fuel use,gas,gas,2025,N2O,0.0004748 +MN,industrial fuel use,gas,gas,2030,N2O,0.000493269 +MN,industrial fuel use,gas,gas,2035,N2O,0.0005142 +MN,industrial fuel use,gas,gas,2040,N2O,0.000525413 +MN,industrial fuel use,gas,gas,2045,N2O,0.000530678 +MN,industrial fuel use,gas,gas,2050,N2O,0.000534097 +MN,industrial fuel use,gas,gas,2055,N2O,0.000535185 +MN,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +MN,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +MN,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +MN,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +MN,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +MN,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +MN,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +MN,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +MN,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +MN,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +MN,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +MN,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +MN,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +MN,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +MN,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +MN,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +MN,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +MN,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +MN,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +MN,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +MN,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +MN,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +MN,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +MN,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +MN,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +MN,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +MN,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +MN,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +MN,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +MN,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +MN,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +MN,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +MN,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +MN,industrial fuel use,coal,coal,2005,BC,0.052178527 +MN,industrial fuel use,coal,coal,2010,BC,0.054113893 +MN,industrial fuel use,coal,coal,2015,BC,0.054816673 +MN,industrial fuel use,coal,coal,2020,BC,0.051442317 +MN,industrial fuel use,coal,coal,2025,BC,0.05280003 +MN,industrial fuel use,coal,coal,2030,BC,0.054819383 +MN,industrial fuel use,coal,coal,2035,BC,0.055934389 +MN,industrial fuel use,coal,coal,2040,BC,0.056737391 +MN,industrial fuel use,coal,coal,2045,BC,0.057341111 +MN,industrial fuel use,coal,coal,2050,BC,0.057867944 +MN,industrial fuel use,coal,coal,2055,BC,0.058307588 +MN,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +MN,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +MN,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +MN,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +MN,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +MN,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +MN,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +MN,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +MN,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +MN,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +MN,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +MN,industrial fuel use,gas,gas,2005,BC,0.000879555 +MN,industrial fuel use,gas,gas,2010,BC,0.000594596 +MN,industrial fuel use,gas,gas,2015,BC,0.000780779 +MN,industrial fuel use,gas,gas,2020,BC,0.000758542 +MN,industrial fuel use,gas,gas,2025,BC,0.000791704 +MN,industrial fuel use,gas,gas,2030,BC,0.000829295 +MN,industrial fuel use,gas,gas,2035,BC,0.000745895 +MN,industrial fuel use,gas,gas,2040,BC,0.000739727 +MN,industrial fuel use,gas,gas,2045,BC,0.000759191 +MN,industrial fuel use,gas,gas,2050,BC,0.000728476 +MN,industrial fuel use,gas,gas,2055,BC,0.000688571 +MN,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +MN,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +MN,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +MN,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +MN,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +MN,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +MN,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +MN,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +MN,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +MN,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +MN,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +MN,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +MN,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +MN,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +MN,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +MN,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +MN,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +MN,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +MN,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +MN,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +MN,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +MN,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +MN,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +MN,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +MN,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +MN,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +MN,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +MN,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +MN,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +MN,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +MN,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +MN,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +MN,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +MN,industrial fuel use,coal,coal,2005,OC,0.004608879 +MN,industrial fuel use,coal,coal,2010,OC,0.004949044 +MN,industrial fuel use,coal,coal,2015,OC,0.005291355 +MN,industrial fuel use,coal,coal,2020,OC,0.005047635 +MN,industrial fuel use,coal,coal,2025,OC,0.005240698 +MN,industrial fuel use,coal,coal,2030,OC,0.005398598 +MN,industrial fuel use,coal,coal,2035,OC,0.005483036 +MN,industrial fuel use,coal,coal,2040,OC,0.005583473 +MN,industrial fuel use,coal,coal,2045,OC,0.005638434 +MN,industrial fuel use,coal,coal,2050,OC,0.005723515 +MN,industrial fuel use,coal,coal,2055,OC,0.005777195 +MN,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +MN,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +MN,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +MN,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +MN,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +MN,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +MN,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +MN,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +MN,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +MN,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +MN,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +MN,industrial fuel use,gas,gas,2005,OC,0.000586894 +MN,industrial fuel use,gas,gas,2010,OC,0.000538986 +MN,industrial fuel use,gas,gas,2015,OC,0.000406177 +MN,industrial fuel use,gas,gas,2020,OC,0.000436774 +MN,industrial fuel use,gas,gas,2025,OC,0.000431434 +MN,industrial fuel use,gas,gas,2030,OC,0.000454497 +MN,industrial fuel use,gas,gas,2035,OC,0.0005142 +MN,industrial fuel use,gas,gas,2040,OC,0.000542203 +MN,industrial fuel use,gas,gas,2045,OC,0.0005354 +MN,industrial fuel use,gas,gas,2050,OC,0.000552822 +MN,industrial fuel use,gas,gas,2055,OC,0.000563528 +MN,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +MN,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +MN,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +MN,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +MN,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +MN,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +MN,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +MN,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +MN,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +MN,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +MN,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +MN,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +MN,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +MN,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +MN,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +MN,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +MN,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +MN,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +MN,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +MN,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +MN,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +MN,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +MN,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +MN,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +MN,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +MN,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +MN,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +MN,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +MN,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +MN,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +MN,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +MN,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +MN,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +MN,industrial fuel use,coal,coal,2005,CO2,0.022413751 +MN,industrial fuel use,coal,coal,2010,CO2,0.023247485 +MN,industrial fuel use,coal,coal,2015,CO2,0.023542577 +MN,industrial fuel use,coal,coal,2020,CO2,0.022100946 +MN,industrial fuel use,coal,coal,2025,CO2,0.022682182 +MN,industrial fuel use,coal,coal,2030,CO2,0.023544891 +MN,industrial fuel use,coal,coal,2035,CO2,0.024022124 +MN,industrial fuel use,coal,coal,2040,CO2,0.024371859 +MN,industrial fuel use,coal,coal,2045,CO2,0.024626877 +MN,industrial fuel use,coal,coal,2050,CO2,0.024861999 +MN,industrial fuel use,coal,coal,2055,CO2,0.025047846 +MN,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +MN,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +MN,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +MN,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +MN,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +MN,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +MN,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +MN,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +MN,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +MN,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +MN,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +MN,industrial fuel use,gas,gas,2005,CO2,0.010100215 +MN,industrial fuel use,gas,gas,2010,CO2,0.008735772 +MN,industrial fuel use,gas,gas,2015,CO2,0.008975567 +MN,industrial fuel use,gas,gas,2020,CO2,0.009141549 +MN,industrial fuel use,gas,gas,2025,CO2,0.009319403 +MN,industrial fuel use,gas,gas,2030,CO2,0.009661635 +MN,industrial fuel use,gas,gas,2035,CO2,0.009858394 +MN,industrial fuel use,gas,gas,2040,CO2,0.010090146 +MN,industrial fuel use,gas,gas,2045,CO2,0.010177486 +MN,industrial fuel use,gas,gas,2050,CO2,0.010210503 +MN,industrial fuel use,gas,gas,2055,CO2,0.010168744 +MN,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +MN,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +MN,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +MN,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +MN,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +MN,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +MN,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +MN,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +MN,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +MN,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +MN,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +MN,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +MN,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +MN,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +MN,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +MN,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +MN,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +MN,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +MN,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +MN,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +MN,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +MN,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +MN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +MN,industrial fuel use,biomass,biomass,2005,CO2,0 +MN,industrial fuel use,biomass,biomass,2010,CO2,0 +MN,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +MN,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +MN,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +MN,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +MN,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +MN,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +MN,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +MN,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +MN,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +MN,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +MN,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +MN,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +MN,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +MN,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +MN,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +MN,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +MN,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +MN,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +MN,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +MN,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +MO,industrial fuel use,coal,coal,2005,NOx,0.261565752 +MO,industrial fuel use,coal,coal,2010,NOx,0.24128762 +MO,industrial fuel use,coal,coal,2015,NOx,0.247879608 +MO,industrial fuel use,coal,coal,2020,NOx,0.234312556 +MO,industrial fuel use,coal,coal,2025,NOx,0.240398293 +MO,industrial fuel use,coal,coal,2030,NOx,0.246677964 +MO,industrial fuel use,coal,coal,2035,NOx,0.250299201 +MO,industrial fuel use,coal,coal,2040,NOx,0.253554811 +MO,industrial fuel use,coal,coal,2045,NOx,0.255578056 +MO,industrial fuel use,coal,coal,2050,NOx,0.258549854 +MO,industrial fuel use,coal,coal,2055,NOx,0.26014596 +MO,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +MO,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +MO,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +MO,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +MO,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +MO,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +MO,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +MO,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +MO,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +MO,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +MO,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +MO,industrial fuel use,gas,gas,2005,NOx,0.080919016 +MO,industrial fuel use,gas,gas,2010,NOx,0.044952568 +MO,industrial fuel use,gas,gas,2015,NOx,0.037239142 +MO,industrial fuel use,gas,gas,2020,NOx,0.040745965 +MO,industrial fuel use,gas,gas,2025,NOx,0.042574105 +MO,industrial fuel use,gas,gas,2030,NOx,0.045347383 +MO,industrial fuel use,gas,gas,2035,NOx,0.048574619 +MO,industrial fuel use,gas,gas,2040,NOx,0.050422899 +MO,industrial fuel use,gas,gas,2045,NOx,0.050680722 +MO,industrial fuel use,gas,gas,2050,NOx,0.0517343 +MO,industrial fuel use,gas,gas,2055,NOx,0.052443137 +MO,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +MO,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +MO,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +MO,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +MO,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +MO,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +MO,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +MO,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +MO,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +MO,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +MO,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +MO,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +MO,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +MO,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +MO,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +MO,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +MO,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +MO,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +MO,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +MO,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +MO,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +MO,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +MO,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +MO,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +MO,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +MO,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +MO,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +MO,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +MO,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +MO,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +MO,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +MO,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +MO,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +MO,industrial fuel use,coal,coal,2005,SO2,0.709862367 +MO,industrial fuel use,coal,coal,2010,SO2,0.679592789 +MO,industrial fuel use,coal,coal,2015,SO2,0.590904591 +MO,industrial fuel use,coal,coal,2020,SO2,0.549595621 +MO,industrial fuel use,coal,coal,2025,SO2,0.56430149 +MO,industrial fuel use,coal,coal,2030,SO2,0.576548046 +MO,industrial fuel use,coal,coal,2035,SO2,0.583595424 +MO,industrial fuel use,coal,coal,2040,SO2,0.590805881 +MO,industrial fuel use,coal,coal,2045,SO2,0.596410723 +MO,industrial fuel use,coal,coal,2050,SO2,0.606154195 +MO,industrial fuel use,coal,coal,2055,SO2,0.611234923 +MO,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +MO,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +MO,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +MO,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +MO,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +MO,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +MO,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +MO,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +MO,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +MO,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +MO,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +MO,industrial fuel use,gas,gas,2005,SO2,0.000213988 +MO,industrial fuel use,gas,gas,2010,SO2,0.002761946 +MO,industrial fuel use,gas,gas,2015,SO2,0.002854723 +MO,industrial fuel use,gas,gas,2020,SO2,0.002771127 +MO,industrial fuel use,gas,gas,2025,SO2,0.002798763 +MO,industrial fuel use,gas,gas,2030,SO2,0.002938075 +MO,industrial fuel use,gas,gas,2035,SO2,0.003016098 +MO,industrial fuel use,gas,gas,2040,SO2,0.003118901 +MO,industrial fuel use,gas,gas,2045,SO2,0.00311325 +MO,industrial fuel use,gas,gas,2050,SO2,0.003090451 +MO,industrial fuel use,gas,gas,2055,SO2,0.003025213 +MO,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +MO,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +MO,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +MO,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +MO,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +MO,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +MO,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +MO,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +MO,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +MO,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +MO,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +MO,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +MO,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +MO,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +MO,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +MO,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +MO,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +MO,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +MO,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +MO,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +MO,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +MO,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +MO,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +MO,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +MO,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +MO,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +MO,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +MO,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +MO,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +MO,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +MO,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +MO,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +MO,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +MO,industrial fuel use,coal,coal,2005,PM10,0.136452905 +MO,industrial fuel use,coal,coal,2010,PM10,0.093662835 +MO,industrial fuel use,coal,coal,2015,PM10,0.100887759 +MO,industrial fuel use,coal,coal,2020,PM10,0.094503476 +MO,industrial fuel use,coal,coal,2025,PM10,0.09752377 +MO,industrial fuel use,coal,coal,2030,PM10,0.099823133 +MO,industrial fuel use,coal,coal,2035,PM10,0.101097535 +MO,industrial fuel use,coal,coal,2040,PM10,0.102438117 +MO,industrial fuel use,coal,coal,2045,PM10,0.103553978 +MO,industrial fuel use,coal,coal,2050,PM10,0.105393893 +MO,industrial fuel use,coal,coal,2055,PM10,0.106304221 +MO,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +MO,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +MO,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +MO,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +MO,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +MO,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +MO,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +MO,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +MO,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +MO,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +MO,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +MO,industrial fuel use,gas,gas,2005,PM10,0.002144603 +MO,industrial fuel use,gas,gas,2010,PM10,0.004157892 +MO,industrial fuel use,gas,gas,2015,PM10,0.004308637 +MO,industrial fuel use,gas,gas,2020,PM10,0.004261296 +MO,industrial fuel use,gas,gas,2025,PM10,0.004334357 +MO,industrial fuel use,gas,gas,2030,PM10,0.00454497 +MO,industrial fuel use,gas,gas,2035,PM10,0.004581054 +MO,industrial fuel use,gas,gas,2040,PM10,0.004690204 +MO,industrial fuel use,gas,gas,2045,PM10,0.004695842 +MO,industrial fuel use,gas,gas,2050,PM10,0.004649052 +MO,industrial fuel use,gas,gas,2055,PM10,0.00454824 +MO,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +MO,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +MO,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +MO,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +MO,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +MO,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +MO,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +MO,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +MO,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +MO,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +MO,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +MO,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +MO,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +MO,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +MO,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +MO,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +MO,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +MO,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +MO,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +MO,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +MO,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +MO,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +MO,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +MO,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +MO,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +MO,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +MO,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +MO,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +MO,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +MO,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +MO,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +MO,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +MO,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +MO,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +MO,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +MO,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +MO,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +MO,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +MO,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +MO,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +MO,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +MO,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +MO,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +MO,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +MO,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +MO,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +MO,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +MO,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +MO,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +MO,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +MO,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +MO,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +MO,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +MO,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +MO,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +MO,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +MO,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +MO,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +MO,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +MO,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +MO,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +MO,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +MO,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +MO,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +MO,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +MO,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +MO,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +MO,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +MO,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +MO,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +MO,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +MO,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +MO,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +MO,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +MO,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +MO,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +MO,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +MO,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +MO,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +MO,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +MO,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +MO,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +MO,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +MO,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +MO,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +MO,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +MO,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +MO,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +MO,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +MO,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +MO,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +MO,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +MO,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +MO,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +MO,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +MO,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +MO,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +MO,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +MO,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +MO,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +MO,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +MO,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +MO,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +MO,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +MO,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +MO,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +MO,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +MO,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +MO,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +MO,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +MO,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +MO,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +MO,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +MO,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +MO,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +MO,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +MO,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +MO,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +MO,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +MO,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +MO,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +MO,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +MO,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +MO,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +MO,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +MO,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +MO,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +MO,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +MO,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +MO,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +MO,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +MO,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +MO,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +MO,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +MO,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +MO,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +MO,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +MO,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +MO,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +MO,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +MO,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +MO,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +MO,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +MO,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +MO,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +MO,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +MO,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +MO,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +MO,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +MO,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +MO,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +MO,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +MO,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +MO,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +MO,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +MO,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +MO,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +MO,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +MO,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +MO,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +MO,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +MO,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +MO,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +MO,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +MO,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +MO,industrial fuel use,coal,coal,2005,CO,0.069434106 +MO,industrial fuel use,coal,coal,2010,CO,0.07723114 +MO,industrial fuel use,coal,coal,2015,CO,0.068281575 +MO,industrial fuel use,coal,coal,2020,CO,0.063753622 +MO,industrial fuel use,coal,coal,2025,CO,0.065761399 +MO,industrial fuel use,coal,coal,2030,CO,0.067959367 +MO,industrial fuel use,coal,coal,2035,CO,0.069173462 +MO,industrial fuel use,coal,coal,2040,CO,0.070202866 +MO,industrial fuel use,coal,coal,2045,CO,0.071098148 +MO,industrial fuel use,coal,coal,2050,CO,0.072063393 +MO,industrial fuel use,coal,coal,2055,CO,0.072511454 +MO,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +MO,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +MO,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +MO,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +MO,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +MO,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +MO,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +MO,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +MO,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +MO,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +MO,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +MO,industrial fuel use,gas,gas,2005,CO,0.054958784 +MO,industrial fuel use,gas,gas,2010,CO,0.041119779 +MO,industrial fuel use,gas,gas,2015,CO,0.037376927 +MO,industrial fuel use,gas,gas,2020,CO,0.042196984 +MO,industrial fuel use,gas,gas,2025,CO,0.046340259 +MO,industrial fuel use,gas,gas,2030,CO,0.051044751 +MO,industrial fuel use,gas,gas,2035,CO,0.048377476 +MO,industrial fuel use,gas,gas,2040,CO,0.04844371 +MO,industrial fuel use,gas,gas,2045,CO,0.049325699 +MO,industrial fuel use,gas,gas,2050,CO,0.048085677 +MO,industrial fuel use,gas,gas,2055,CO,0.046506083 +MO,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +MO,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +MO,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +MO,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +MO,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +MO,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +MO,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +MO,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +MO,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +MO,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +MO,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +MO,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +MO,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +MO,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +MO,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +MO,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +MO,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +MO,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +MO,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +MO,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +MO,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +MO,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +MO,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +MO,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +MO,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +MO,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +MO,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +MO,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +MO,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +MO,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +MO,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +MO,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +MO,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +MO,industrial fuel use,coal,coal,2005,CH4,0.008615911 +MO,industrial fuel use,coal,coal,2010,CH4,0.007087118 +MO,industrial fuel use,coal,coal,2015,CH4,0.007645512 +MO,industrial fuel use,coal,coal,2020,CH4,0.007093206 +MO,industrial fuel use,coal,coal,2025,CH4,0.007280827 +MO,industrial fuel use,coal,coal,2030,CH4,0.007426545 +MO,industrial fuel use,coal,coal,2035,CH4,0.007524098 +MO,industrial fuel use,coal,coal,2040,CH4,0.007621441 +MO,industrial fuel use,coal,coal,2045,CH4,0.007691307 +MO,industrial fuel use,coal,coal,2050,CH4,0.007801358 +MO,industrial fuel use,coal,coal,2055,CH4,0.007871907 +MO,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +MO,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +MO,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +MO,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +MO,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +MO,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +MO,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +MO,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +MO,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +MO,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +MO,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +MO,industrial fuel use,gas,gas,2005,CH4,0.002575726 +MO,industrial fuel use,gas,gas,2010,CH4,0.0036902 +MO,industrial fuel use,gas,gas,2015,CH4,0.001847174 +MO,industrial fuel use,gas,gas,2020,CH4,0.002575374 +MO,industrial fuel use,gas,gas,2025,CH4,0.002470739 +MO,industrial fuel use,gas,gas,2030,CH4,0.002514812 +MO,industrial fuel use,gas,gas,2035,CH4,0.004402202 +MO,industrial fuel use,gas,gas,2040,CH4,0.005194877 +MO,industrial fuel use,gas,gas,2045,CH4,0.005264291 +MO,industrial fuel use,gas,gas,2050,CH4,0.006086388 +MO,industrial fuel use,gas,gas,2055,CH4,0.006850703 +MO,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +MO,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +MO,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +MO,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +MO,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +MO,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +MO,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +MO,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +MO,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +MO,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +MO,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +MO,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +MO,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +MO,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +MO,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +MO,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +MO,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +MO,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +MO,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +MO,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +MO,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +MO,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +MO,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +MO,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +MO,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +MO,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +MO,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +MO,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +MO,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +MO,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +MO,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +MO,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +MO,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +MO,industrial fuel use,coal,coal,2005,N2O,0.002945881 +MO,industrial fuel use,coal,coal,2010,N2O,0.004699422 +MO,industrial fuel use,coal,coal,2015,N2O,0.003718249 +MO,industrial fuel use,coal,coal,2020,N2O,0.003503987 +MO,industrial fuel use,coal,coal,2025,N2O,0.003902448 +MO,industrial fuel use,coal,coal,2030,N2O,0.005231917 +MO,industrial fuel use,coal,coal,2035,N2O,0.005844861 +MO,industrial fuel use,coal,coal,2040,N2O,0.006123209 +MO,industrial fuel use,coal,coal,2045,N2O,0.006493024 +MO,industrial fuel use,coal,coal,2050,N2O,0.00643187 +MO,industrial fuel use,coal,coal,2055,N2O,0.006580646 +MO,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +MO,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +MO,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +MO,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +MO,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +MO,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +MO,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +MO,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +MO,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +MO,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +MO,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +MO,industrial fuel use,gas,gas,2005,N2O,0.000509795 +MO,industrial fuel use,gas,gas,2010,N2O,0.000459136 +MO,industrial fuel use,gas,gas,2015,N2O,0.000457847 +MO,industrial fuel use,gas,gas,2020,N2O,0.000469807 +MO,industrial fuel use,gas,gas,2025,N2O,0.0004748 +MO,industrial fuel use,gas,gas,2030,N2O,0.000493269 +MO,industrial fuel use,gas,gas,2035,N2O,0.0005142 +MO,industrial fuel use,gas,gas,2040,N2O,0.000525413 +MO,industrial fuel use,gas,gas,2045,N2O,0.000530678 +MO,industrial fuel use,gas,gas,2050,N2O,0.000534097 +MO,industrial fuel use,gas,gas,2055,N2O,0.000535185 +MO,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +MO,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +MO,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +MO,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +MO,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +MO,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +MO,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +MO,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +MO,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +MO,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +MO,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +MO,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +MO,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +MO,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +MO,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +MO,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +MO,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +MO,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +MO,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +MO,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +MO,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +MO,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +MO,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +MO,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +MO,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +MO,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +MO,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +MO,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +MO,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +MO,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +MO,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +MO,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +MO,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +MO,industrial fuel use,coal,coal,2005,BC,0.052178527 +MO,industrial fuel use,coal,coal,2010,BC,0.054113893 +MO,industrial fuel use,coal,coal,2015,BC,0.054816673 +MO,industrial fuel use,coal,coal,2020,BC,0.051442317 +MO,industrial fuel use,coal,coal,2025,BC,0.05280003 +MO,industrial fuel use,coal,coal,2030,BC,0.054819383 +MO,industrial fuel use,coal,coal,2035,BC,0.055934389 +MO,industrial fuel use,coal,coal,2040,BC,0.056737391 +MO,industrial fuel use,coal,coal,2045,BC,0.057341111 +MO,industrial fuel use,coal,coal,2050,BC,0.057867944 +MO,industrial fuel use,coal,coal,2055,BC,0.058307588 +MO,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +MO,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +MO,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +MO,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +MO,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +MO,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +MO,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +MO,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +MO,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +MO,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +MO,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +MO,industrial fuel use,gas,gas,2005,BC,0.000879555 +MO,industrial fuel use,gas,gas,2010,BC,0.000594596 +MO,industrial fuel use,gas,gas,2015,BC,0.000780779 +MO,industrial fuel use,gas,gas,2020,BC,0.000758542 +MO,industrial fuel use,gas,gas,2025,BC,0.000791704 +MO,industrial fuel use,gas,gas,2030,BC,0.000829295 +MO,industrial fuel use,gas,gas,2035,BC,0.000745895 +MO,industrial fuel use,gas,gas,2040,BC,0.000739727 +MO,industrial fuel use,gas,gas,2045,BC,0.000759191 +MO,industrial fuel use,gas,gas,2050,BC,0.000728476 +MO,industrial fuel use,gas,gas,2055,BC,0.000688571 +MO,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +MO,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +MO,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +MO,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +MO,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +MO,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +MO,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +MO,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +MO,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +MO,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +MO,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +MO,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +MO,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +MO,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +MO,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +MO,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +MO,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +MO,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +MO,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +MO,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +MO,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +MO,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +MO,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +MO,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +MO,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +MO,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +MO,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +MO,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +MO,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +MO,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +MO,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +MO,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +MO,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +MO,industrial fuel use,coal,coal,2005,OC,0.004608879 +MO,industrial fuel use,coal,coal,2010,OC,0.004949044 +MO,industrial fuel use,coal,coal,2015,OC,0.005291355 +MO,industrial fuel use,coal,coal,2020,OC,0.005047635 +MO,industrial fuel use,coal,coal,2025,OC,0.005240698 +MO,industrial fuel use,coal,coal,2030,OC,0.005398598 +MO,industrial fuel use,coal,coal,2035,OC,0.005483036 +MO,industrial fuel use,coal,coal,2040,OC,0.005583473 +MO,industrial fuel use,coal,coal,2045,OC,0.005638434 +MO,industrial fuel use,coal,coal,2050,OC,0.005723515 +MO,industrial fuel use,coal,coal,2055,OC,0.005777195 +MO,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +MO,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +MO,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +MO,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +MO,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +MO,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +MO,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +MO,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +MO,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +MO,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +MO,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +MO,industrial fuel use,gas,gas,2005,OC,0.000586894 +MO,industrial fuel use,gas,gas,2010,OC,0.000538986 +MO,industrial fuel use,gas,gas,2015,OC,0.000406177 +MO,industrial fuel use,gas,gas,2020,OC,0.000436774 +MO,industrial fuel use,gas,gas,2025,OC,0.000431434 +MO,industrial fuel use,gas,gas,2030,OC,0.000454497 +MO,industrial fuel use,gas,gas,2035,OC,0.0005142 +MO,industrial fuel use,gas,gas,2040,OC,0.000542203 +MO,industrial fuel use,gas,gas,2045,OC,0.0005354 +MO,industrial fuel use,gas,gas,2050,OC,0.000552822 +MO,industrial fuel use,gas,gas,2055,OC,0.000563528 +MO,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +MO,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +MO,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +MO,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +MO,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +MO,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +MO,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +MO,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +MO,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +MO,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +MO,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +MO,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +MO,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +MO,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +MO,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +MO,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +MO,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +MO,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +MO,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +MO,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +MO,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +MO,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +MO,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +MO,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +MO,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +MO,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +MO,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +MO,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +MO,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +MO,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +MO,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +MO,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +MO,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +MO,industrial fuel use,coal,coal,2005,CO2,0.022413751 +MO,industrial fuel use,coal,coal,2010,CO2,0.023247485 +MO,industrial fuel use,coal,coal,2015,CO2,0.023542577 +MO,industrial fuel use,coal,coal,2020,CO2,0.022100946 +MO,industrial fuel use,coal,coal,2025,CO2,0.022682182 +MO,industrial fuel use,coal,coal,2030,CO2,0.023544891 +MO,industrial fuel use,coal,coal,2035,CO2,0.024022124 +MO,industrial fuel use,coal,coal,2040,CO2,0.024371859 +MO,industrial fuel use,coal,coal,2045,CO2,0.024626877 +MO,industrial fuel use,coal,coal,2050,CO2,0.024861999 +MO,industrial fuel use,coal,coal,2055,CO2,0.025047846 +MO,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +MO,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +MO,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +MO,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +MO,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +MO,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +MO,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +MO,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +MO,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +MO,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +MO,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +MO,industrial fuel use,gas,gas,2005,CO2,0.010100215 +MO,industrial fuel use,gas,gas,2010,CO2,0.008735772 +MO,industrial fuel use,gas,gas,2015,CO2,0.008975567 +MO,industrial fuel use,gas,gas,2020,CO2,0.009141549 +MO,industrial fuel use,gas,gas,2025,CO2,0.009319403 +MO,industrial fuel use,gas,gas,2030,CO2,0.009661635 +MO,industrial fuel use,gas,gas,2035,CO2,0.009858394 +MO,industrial fuel use,gas,gas,2040,CO2,0.010090146 +MO,industrial fuel use,gas,gas,2045,CO2,0.010177486 +MO,industrial fuel use,gas,gas,2050,CO2,0.010210503 +MO,industrial fuel use,gas,gas,2055,CO2,0.010168744 +MO,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +MO,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +MO,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +MO,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +MO,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +MO,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +MO,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +MO,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +MO,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +MO,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +MO,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +MO,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +MO,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +MO,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +MO,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +MO,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +MO,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +MO,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +MO,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +MO,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +MO,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +MO,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +MO,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +MO,industrial fuel use,biomass,biomass,2005,CO2,0 +MO,industrial fuel use,biomass,biomass,2010,CO2,0 +MO,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +MO,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +MO,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +MO,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +MO,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +MO,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +MO,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +MO,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +MO,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +MO,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +MO,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +MO,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +MO,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +MO,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +MO,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +MO,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +MO,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +MO,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +MO,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +MO,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +MS,industrial fuel use,coal,coal,2005,NOx,0.261565752 +MS,industrial fuel use,coal,coal,2010,NOx,0.24128762 +MS,industrial fuel use,coal,coal,2015,NOx,0.247879608 +MS,industrial fuel use,coal,coal,2020,NOx,0.234312556 +MS,industrial fuel use,coal,coal,2025,NOx,0.240398293 +MS,industrial fuel use,coal,coal,2030,NOx,0.246677964 +MS,industrial fuel use,coal,coal,2035,NOx,0.250299201 +MS,industrial fuel use,coal,coal,2040,NOx,0.253554811 +MS,industrial fuel use,coal,coal,2045,NOx,0.255578056 +MS,industrial fuel use,coal,coal,2050,NOx,0.258549854 +MS,industrial fuel use,coal,coal,2055,NOx,0.26014596 +MS,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +MS,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +MS,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +MS,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +MS,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +MS,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +MS,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +MS,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +MS,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +MS,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +MS,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +MS,industrial fuel use,gas,gas,2005,NOx,0.080919016 +MS,industrial fuel use,gas,gas,2010,NOx,0.044952568 +MS,industrial fuel use,gas,gas,2015,NOx,0.037239142 +MS,industrial fuel use,gas,gas,2020,NOx,0.040745965 +MS,industrial fuel use,gas,gas,2025,NOx,0.042574105 +MS,industrial fuel use,gas,gas,2030,NOx,0.045347383 +MS,industrial fuel use,gas,gas,2035,NOx,0.048574619 +MS,industrial fuel use,gas,gas,2040,NOx,0.050422899 +MS,industrial fuel use,gas,gas,2045,NOx,0.050680722 +MS,industrial fuel use,gas,gas,2050,NOx,0.0517343 +MS,industrial fuel use,gas,gas,2055,NOx,0.052443137 +MS,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +MS,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +MS,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +MS,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +MS,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +MS,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +MS,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +MS,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +MS,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +MS,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +MS,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +MS,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +MS,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +MS,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +MS,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +MS,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +MS,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +MS,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +MS,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +MS,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +MS,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +MS,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +MS,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +MS,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +MS,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +MS,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +MS,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +MS,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +MS,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +MS,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +MS,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +MS,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +MS,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +MS,industrial fuel use,coal,coal,2005,SO2,0.709862367 +MS,industrial fuel use,coal,coal,2010,SO2,0.679592789 +MS,industrial fuel use,coal,coal,2015,SO2,0.590904591 +MS,industrial fuel use,coal,coal,2020,SO2,0.549595621 +MS,industrial fuel use,coal,coal,2025,SO2,0.56430149 +MS,industrial fuel use,coal,coal,2030,SO2,0.576548046 +MS,industrial fuel use,coal,coal,2035,SO2,0.583595424 +MS,industrial fuel use,coal,coal,2040,SO2,0.590805881 +MS,industrial fuel use,coal,coal,2045,SO2,0.596410723 +MS,industrial fuel use,coal,coal,2050,SO2,0.606154195 +MS,industrial fuel use,coal,coal,2055,SO2,0.611234923 +MS,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +MS,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +MS,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +MS,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +MS,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +MS,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +MS,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +MS,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +MS,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +MS,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +MS,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +MS,industrial fuel use,gas,gas,2005,SO2,0.000213988 +MS,industrial fuel use,gas,gas,2010,SO2,0.002761946 +MS,industrial fuel use,gas,gas,2015,SO2,0.002854723 +MS,industrial fuel use,gas,gas,2020,SO2,0.002771127 +MS,industrial fuel use,gas,gas,2025,SO2,0.002798763 +MS,industrial fuel use,gas,gas,2030,SO2,0.002938075 +MS,industrial fuel use,gas,gas,2035,SO2,0.003016098 +MS,industrial fuel use,gas,gas,2040,SO2,0.003118901 +MS,industrial fuel use,gas,gas,2045,SO2,0.00311325 +MS,industrial fuel use,gas,gas,2050,SO2,0.003090451 +MS,industrial fuel use,gas,gas,2055,SO2,0.003025213 +MS,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +MS,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +MS,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +MS,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +MS,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +MS,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +MS,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +MS,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +MS,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +MS,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +MS,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +MS,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +MS,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +MS,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +MS,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +MS,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +MS,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +MS,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +MS,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +MS,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +MS,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +MS,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +MS,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +MS,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +MS,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +MS,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +MS,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +MS,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +MS,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +MS,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +MS,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +MS,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +MS,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +MS,industrial fuel use,coal,coal,2005,PM10,0.136452905 +MS,industrial fuel use,coal,coal,2010,PM10,0.093662835 +MS,industrial fuel use,coal,coal,2015,PM10,0.100887759 +MS,industrial fuel use,coal,coal,2020,PM10,0.094503476 +MS,industrial fuel use,coal,coal,2025,PM10,0.09752377 +MS,industrial fuel use,coal,coal,2030,PM10,0.099823133 +MS,industrial fuel use,coal,coal,2035,PM10,0.101097535 +MS,industrial fuel use,coal,coal,2040,PM10,0.102438117 +MS,industrial fuel use,coal,coal,2045,PM10,0.103553978 +MS,industrial fuel use,coal,coal,2050,PM10,0.105393893 +MS,industrial fuel use,coal,coal,2055,PM10,0.106304221 +MS,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +MS,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +MS,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +MS,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +MS,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +MS,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +MS,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +MS,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +MS,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +MS,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +MS,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +MS,industrial fuel use,gas,gas,2005,PM10,0.002144603 +MS,industrial fuel use,gas,gas,2010,PM10,0.004157892 +MS,industrial fuel use,gas,gas,2015,PM10,0.004308637 +MS,industrial fuel use,gas,gas,2020,PM10,0.004261296 +MS,industrial fuel use,gas,gas,2025,PM10,0.004334357 +MS,industrial fuel use,gas,gas,2030,PM10,0.00454497 +MS,industrial fuel use,gas,gas,2035,PM10,0.004581054 +MS,industrial fuel use,gas,gas,2040,PM10,0.004690204 +MS,industrial fuel use,gas,gas,2045,PM10,0.004695842 +MS,industrial fuel use,gas,gas,2050,PM10,0.004649052 +MS,industrial fuel use,gas,gas,2055,PM10,0.00454824 +MS,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +MS,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +MS,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +MS,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +MS,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +MS,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +MS,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +MS,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +MS,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +MS,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +MS,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +MS,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +MS,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +MS,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +MS,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +MS,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +MS,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +MS,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +MS,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +MS,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +MS,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +MS,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +MS,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +MS,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +MS,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +MS,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +MS,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +MS,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +MS,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +MS,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +MS,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +MS,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +MS,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +MS,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +MS,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +MS,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +MS,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +MS,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +MS,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +MS,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +MS,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +MS,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +MS,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +MS,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +MS,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +MS,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +MS,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +MS,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +MS,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +MS,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +MS,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +MS,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +MS,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +MS,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +MS,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +MS,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +MS,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +MS,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +MS,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +MS,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +MS,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +MS,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +MS,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +MS,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +MS,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +MS,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +MS,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +MS,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +MS,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +MS,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +MS,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +MS,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +MS,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +MS,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +MS,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +MS,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +MS,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +MS,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +MS,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +MS,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +MS,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +MS,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +MS,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +MS,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +MS,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +MS,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +MS,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +MS,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +MS,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +MS,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +MS,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +MS,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +MS,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +MS,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +MS,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +MS,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +MS,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +MS,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +MS,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +MS,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +MS,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +MS,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +MS,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +MS,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +MS,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +MS,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +MS,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +MS,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +MS,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +MS,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +MS,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +MS,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +MS,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +MS,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +MS,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +MS,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +MS,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +MS,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +MS,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +MS,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +MS,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +MS,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +MS,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +MS,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +MS,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +MS,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +MS,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +MS,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +MS,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +MS,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +MS,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +MS,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +MS,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +MS,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +MS,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +MS,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +MS,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +MS,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +MS,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +MS,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +MS,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +MS,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +MS,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +MS,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +MS,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +MS,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +MS,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +MS,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +MS,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +MS,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +MS,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +MS,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +MS,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +MS,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +MS,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +MS,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +MS,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +MS,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +MS,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +MS,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +MS,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +MS,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +MS,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +MS,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +MS,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +MS,industrial fuel use,coal,coal,2005,CO,0.069434106 +MS,industrial fuel use,coal,coal,2010,CO,0.07723114 +MS,industrial fuel use,coal,coal,2015,CO,0.068281575 +MS,industrial fuel use,coal,coal,2020,CO,0.063753622 +MS,industrial fuel use,coal,coal,2025,CO,0.065761399 +MS,industrial fuel use,coal,coal,2030,CO,0.067959367 +MS,industrial fuel use,coal,coal,2035,CO,0.069173462 +MS,industrial fuel use,coal,coal,2040,CO,0.070202866 +MS,industrial fuel use,coal,coal,2045,CO,0.071098148 +MS,industrial fuel use,coal,coal,2050,CO,0.072063393 +MS,industrial fuel use,coal,coal,2055,CO,0.072511454 +MS,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +MS,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +MS,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +MS,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +MS,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +MS,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +MS,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +MS,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +MS,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +MS,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +MS,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +MS,industrial fuel use,gas,gas,2005,CO,0.054958784 +MS,industrial fuel use,gas,gas,2010,CO,0.041119779 +MS,industrial fuel use,gas,gas,2015,CO,0.037376927 +MS,industrial fuel use,gas,gas,2020,CO,0.042196984 +MS,industrial fuel use,gas,gas,2025,CO,0.046340259 +MS,industrial fuel use,gas,gas,2030,CO,0.051044751 +MS,industrial fuel use,gas,gas,2035,CO,0.048377476 +MS,industrial fuel use,gas,gas,2040,CO,0.04844371 +MS,industrial fuel use,gas,gas,2045,CO,0.049325699 +MS,industrial fuel use,gas,gas,2050,CO,0.048085677 +MS,industrial fuel use,gas,gas,2055,CO,0.046506083 +MS,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +MS,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +MS,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +MS,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +MS,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +MS,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +MS,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +MS,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +MS,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +MS,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +MS,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +MS,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +MS,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +MS,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +MS,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +MS,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +MS,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +MS,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +MS,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +MS,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +MS,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +MS,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +MS,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +MS,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +MS,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +MS,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +MS,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +MS,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +MS,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +MS,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +MS,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +MS,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +MS,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +MS,industrial fuel use,coal,coal,2005,CH4,0.008615911 +MS,industrial fuel use,coal,coal,2010,CH4,0.007087118 +MS,industrial fuel use,coal,coal,2015,CH4,0.007645512 +MS,industrial fuel use,coal,coal,2020,CH4,0.007093206 +MS,industrial fuel use,coal,coal,2025,CH4,0.007280827 +MS,industrial fuel use,coal,coal,2030,CH4,0.007426545 +MS,industrial fuel use,coal,coal,2035,CH4,0.007524098 +MS,industrial fuel use,coal,coal,2040,CH4,0.007621441 +MS,industrial fuel use,coal,coal,2045,CH4,0.007691307 +MS,industrial fuel use,coal,coal,2050,CH4,0.007801358 +MS,industrial fuel use,coal,coal,2055,CH4,0.007871907 +MS,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +MS,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +MS,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +MS,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +MS,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +MS,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +MS,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +MS,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +MS,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +MS,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +MS,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +MS,industrial fuel use,gas,gas,2005,CH4,0.002575726 +MS,industrial fuel use,gas,gas,2010,CH4,0.0036902 +MS,industrial fuel use,gas,gas,2015,CH4,0.001847174 +MS,industrial fuel use,gas,gas,2020,CH4,0.002575374 +MS,industrial fuel use,gas,gas,2025,CH4,0.002470739 +MS,industrial fuel use,gas,gas,2030,CH4,0.002514812 +MS,industrial fuel use,gas,gas,2035,CH4,0.004402202 +MS,industrial fuel use,gas,gas,2040,CH4,0.005194877 +MS,industrial fuel use,gas,gas,2045,CH4,0.005264291 +MS,industrial fuel use,gas,gas,2050,CH4,0.006086388 +MS,industrial fuel use,gas,gas,2055,CH4,0.006850703 +MS,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +MS,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +MS,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +MS,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +MS,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +MS,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +MS,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +MS,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +MS,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +MS,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +MS,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +MS,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +MS,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +MS,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +MS,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +MS,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +MS,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +MS,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +MS,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +MS,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +MS,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +MS,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +MS,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +MS,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +MS,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +MS,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +MS,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +MS,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +MS,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +MS,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +MS,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +MS,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +MS,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +MS,industrial fuel use,coal,coal,2005,N2O,0.002945881 +MS,industrial fuel use,coal,coal,2010,N2O,0.004699422 +MS,industrial fuel use,coal,coal,2015,N2O,0.003718249 +MS,industrial fuel use,coal,coal,2020,N2O,0.003503987 +MS,industrial fuel use,coal,coal,2025,N2O,0.003902448 +MS,industrial fuel use,coal,coal,2030,N2O,0.005231917 +MS,industrial fuel use,coal,coal,2035,N2O,0.005844861 +MS,industrial fuel use,coal,coal,2040,N2O,0.006123209 +MS,industrial fuel use,coal,coal,2045,N2O,0.006493024 +MS,industrial fuel use,coal,coal,2050,N2O,0.00643187 +MS,industrial fuel use,coal,coal,2055,N2O,0.006580646 +MS,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +MS,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +MS,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +MS,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +MS,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +MS,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +MS,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +MS,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +MS,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +MS,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +MS,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +MS,industrial fuel use,gas,gas,2005,N2O,0.000509795 +MS,industrial fuel use,gas,gas,2010,N2O,0.000459136 +MS,industrial fuel use,gas,gas,2015,N2O,0.000457847 +MS,industrial fuel use,gas,gas,2020,N2O,0.000469807 +MS,industrial fuel use,gas,gas,2025,N2O,0.0004748 +MS,industrial fuel use,gas,gas,2030,N2O,0.000493269 +MS,industrial fuel use,gas,gas,2035,N2O,0.0005142 +MS,industrial fuel use,gas,gas,2040,N2O,0.000525413 +MS,industrial fuel use,gas,gas,2045,N2O,0.000530678 +MS,industrial fuel use,gas,gas,2050,N2O,0.000534097 +MS,industrial fuel use,gas,gas,2055,N2O,0.000535185 +MS,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +MS,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +MS,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +MS,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +MS,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +MS,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +MS,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +MS,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +MS,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +MS,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +MS,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +MS,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +MS,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +MS,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +MS,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +MS,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +MS,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +MS,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +MS,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +MS,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +MS,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +MS,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +MS,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +MS,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +MS,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +MS,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +MS,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +MS,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +MS,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +MS,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +MS,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +MS,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +MS,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +MS,industrial fuel use,coal,coal,2005,BC,0.052178527 +MS,industrial fuel use,coal,coal,2010,BC,0.054113893 +MS,industrial fuel use,coal,coal,2015,BC,0.054816673 +MS,industrial fuel use,coal,coal,2020,BC,0.051442317 +MS,industrial fuel use,coal,coal,2025,BC,0.05280003 +MS,industrial fuel use,coal,coal,2030,BC,0.054819383 +MS,industrial fuel use,coal,coal,2035,BC,0.055934389 +MS,industrial fuel use,coal,coal,2040,BC,0.056737391 +MS,industrial fuel use,coal,coal,2045,BC,0.057341111 +MS,industrial fuel use,coal,coal,2050,BC,0.057867944 +MS,industrial fuel use,coal,coal,2055,BC,0.058307588 +MS,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +MS,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +MS,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +MS,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +MS,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +MS,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +MS,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +MS,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +MS,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +MS,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +MS,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +MS,industrial fuel use,gas,gas,2005,BC,0.000879555 +MS,industrial fuel use,gas,gas,2010,BC,0.000594596 +MS,industrial fuel use,gas,gas,2015,BC,0.000780779 +MS,industrial fuel use,gas,gas,2020,BC,0.000758542 +MS,industrial fuel use,gas,gas,2025,BC,0.000791704 +MS,industrial fuel use,gas,gas,2030,BC,0.000829295 +MS,industrial fuel use,gas,gas,2035,BC,0.000745895 +MS,industrial fuel use,gas,gas,2040,BC,0.000739727 +MS,industrial fuel use,gas,gas,2045,BC,0.000759191 +MS,industrial fuel use,gas,gas,2050,BC,0.000728476 +MS,industrial fuel use,gas,gas,2055,BC,0.000688571 +MS,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +MS,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +MS,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +MS,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +MS,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +MS,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +MS,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +MS,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +MS,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +MS,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +MS,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +MS,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +MS,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +MS,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +MS,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +MS,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +MS,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +MS,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +MS,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +MS,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +MS,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +MS,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +MS,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +MS,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +MS,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +MS,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +MS,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +MS,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +MS,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +MS,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +MS,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +MS,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +MS,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +MS,industrial fuel use,coal,coal,2005,OC,0.004608879 +MS,industrial fuel use,coal,coal,2010,OC,0.004949044 +MS,industrial fuel use,coal,coal,2015,OC,0.005291355 +MS,industrial fuel use,coal,coal,2020,OC,0.005047635 +MS,industrial fuel use,coal,coal,2025,OC,0.005240698 +MS,industrial fuel use,coal,coal,2030,OC,0.005398598 +MS,industrial fuel use,coal,coal,2035,OC,0.005483036 +MS,industrial fuel use,coal,coal,2040,OC,0.005583473 +MS,industrial fuel use,coal,coal,2045,OC,0.005638434 +MS,industrial fuel use,coal,coal,2050,OC,0.005723515 +MS,industrial fuel use,coal,coal,2055,OC,0.005777195 +MS,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +MS,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +MS,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +MS,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +MS,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +MS,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +MS,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +MS,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +MS,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +MS,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +MS,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +MS,industrial fuel use,gas,gas,2005,OC,0.000586894 +MS,industrial fuel use,gas,gas,2010,OC,0.000538986 +MS,industrial fuel use,gas,gas,2015,OC,0.000406177 +MS,industrial fuel use,gas,gas,2020,OC,0.000436774 +MS,industrial fuel use,gas,gas,2025,OC,0.000431434 +MS,industrial fuel use,gas,gas,2030,OC,0.000454497 +MS,industrial fuel use,gas,gas,2035,OC,0.0005142 +MS,industrial fuel use,gas,gas,2040,OC,0.000542203 +MS,industrial fuel use,gas,gas,2045,OC,0.0005354 +MS,industrial fuel use,gas,gas,2050,OC,0.000552822 +MS,industrial fuel use,gas,gas,2055,OC,0.000563528 +MS,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +MS,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +MS,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +MS,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +MS,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +MS,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +MS,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +MS,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +MS,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +MS,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +MS,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +MS,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +MS,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +MS,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +MS,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +MS,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +MS,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +MS,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +MS,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +MS,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +MS,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +MS,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +MS,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +MS,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +MS,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +MS,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +MS,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +MS,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +MS,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +MS,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +MS,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +MS,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +MS,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +MS,industrial fuel use,coal,coal,2005,CO2,0.022413751 +MS,industrial fuel use,coal,coal,2010,CO2,0.023247485 +MS,industrial fuel use,coal,coal,2015,CO2,0.023542577 +MS,industrial fuel use,coal,coal,2020,CO2,0.022100946 +MS,industrial fuel use,coal,coal,2025,CO2,0.022682182 +MS,industrial fuel use,coal,coal,2030,CO2,0.023544891 +MS,industrial fuel use,coal,coal,2035,CO2,0.024022124 +MS,industrial fuel use,coal,coal,2040,CO2,0.024371859 +MS,industrial fuel use,coal,coal,2045,CO2,0.024626877 +MS,industrial fuel use,coal,coal,2050,CO2,0.024861999 +MS,industrial fuel use,coal,coal,2055,CO2,0.025047846 +MS,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +MS,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +MS,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +MS,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +MS,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +MS,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +MS,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +MS,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +MS,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +MS,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +MS,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +MS,industrial fuel use,gas,gas,2005,CO2,0.010100215 +MS,industrial fuel use,gas,gas,2010,CO2,0.008735772 +MS,industrial fuel use,gas,gas,2015,CO2,0.008975567 +MS,industrial fuel use,gas,gas,2020,CO2,0.009141549 +MS,industrial fuel use,gas,gas,2025,CO2,0.009319403 +MS,industrial fuel use,gas,gas,2030,CO2,0.009661635 +MS,industrial fuel use,gas,gas,2035,CO2,0.009858394 +MS,industrial fuel use,gas,gas,2040,CO2,0.010090146 +MS,industrial fuel use,gas,gas,2045,CO2,0.010177486 +MS,industrial fuel use,gas,gas,2050,CO2,0.010210503 +MS,industrial fuel use,gas,gas,2055,CO2,0.010168744 +MS,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +MS,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +MS,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +MS,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +MS,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +MS,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +MS,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +MS,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +MS,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +MS,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +MS,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +MS,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +MS,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +MS,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +MS,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +MS,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +MS,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +MS,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +MS,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +MS,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +MS,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +MS,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +MS,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +MS,industrial fuel use,biomass,biomass,2005,CO2,0 +MS,industrial fuel use,biomass,biomass,2010,CO2,0 +MS,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +MS,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +MS,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +MS,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +MS,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +MS,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +MS,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +MS,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +MS,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +MS,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +MS,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +MS,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +MS,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +MS,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +MS,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +MS,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +MS,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +MS,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +MS,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +MS,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +MT,industrial fuel use,coal,coal,2005,NOx,0.261565752 +MT,industrial fuel use,coal,coal,2010,NOx,0.24128762 +MT,industrial fuel use,coal,coal,2015,NOx,0.247879608 +MT,industrial fuel use,coal,coal,2020,NOx,0.234312556 +MT,industrial fuel use,coal,coal,2025,NOx,0.240398293 +MT,industrial fuel use,coal,coal,2030,NOx,0.246677964 +MT,industrial fuel use,coal,coal,2035,NOx,0.250299201 +MT,industrial fuel use,coal,coal,2040,NOx,0.253554811 +MT,industrial fuel use,coal,coal,2045,NOx,0.255578056 +MT,industrial fuel use,coal,coal,2050,NOx,0.258549854 +MT,industrial fuel use,coal,coal,2055,NOx,0.26014596 +MT,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +MT,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +MT,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +MT,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +MT,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +MT,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +MT,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +MT,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +MT,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +MT,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +MT,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +MT,industrial fuel use,gas,gas,2005,NOx,0.080919016 +MT,industrial fuel use,gas,gas,2010,NOx,0.044952568 +MT,industrial fuel use,gas,gas,2015,NOx,0.037239142 +MT,industrial fuel use,gas,gas,2020,NOx,0.040745965 +MT,industrial fuel use,gas,gas,2025,NOx,0.042574105 +MT,industrial fuel use,gas,gas,2030,NOx,0.045347383 +MT,industrial fuel use,gas,gas,2035,NOx,0.048574619 +MT,industrial fuel use,gas,gas,2040,NOx,0.050422899 +MT,industrial fuel use,gas,gas,2045,NOx,0.050680722 +MT,industrial fuel use,gas,gas,2050,NOx,0.0517343 +MT,industrial fuel use,gas,gas,2055,NOx,0.052443137 +MT,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +MT,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +MT,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +MT,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +MT,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +MT,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +MT,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +MT,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +MT,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +MT,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +MT,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +MT,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +MT,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +MT,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +MT,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +MT,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +MT,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +MT,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +MT,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +MT,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +MT,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +MT,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +MT,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +MT,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +MT,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +MT,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +MT,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +MT,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +MT,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +MT,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +MT,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +MT,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +MT,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +MT,industrial fuel use,coal,coal,2005,SO2,0.709862367 +MT,industrial fuel use,coal,coal,2010,SO2,0.679592789 +MT,industrial fuel use,coal,coal,2015,SO2,0.590904591 +MT,industrial fuel use,coal,coal,2020,SO2,0.549595621 +MT,industrial fuel use,coal,coal,2025,SO2,0.56430149 +MT,industrial fuel use,coal,coal,2030,SO2,0.576548046 +MT,industrial fuel use,coal,coal,2035,SO2,0.583595424 +MT,industrial fuel use,coal,coal,2040,SO2,0.590805881 +MT,industrial fuel use,coal,coal,2045,SO2,0.596410723 +MT,industrial fuel use,coal,coal,2050,SO2,0.606154195 +MT,industrial fuel use,coal,coal,2055,SO2,0.611234923 +MT,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +MT,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +MT,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +MT,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +MT,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +MT,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +MT,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +MT,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +MT,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +MT,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +MT,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +MT,industrial fuel use,gas,gas,2005,SO2,0.000213988 +MT,industrial fuel use,gas,gas,2010,SO2,0.002761946 +MT,industrial fuel use,gas,gas,2015,SO2,0.002854723 +MT,industrial fuel use,gas,gas,2020,SO2,0.002771127 +MT,industrial fuel use,gas,gas,2025,SO2,0.002798763 +MT,industrial fuel use,gas,gas,2030,SO2,0.002938075 +MT,industrial fuel use,gas,gas,2035,SO2,0.003016098 +MT,industrial fuel use,gas,gas,2040,SO2,0.003118901 +MT,industrial fuel use,gas,gas,2045,SO2,0.00311325 +MT,industrial fuel use,gas,gas,2050,SO2,0.003090451 +MT,industrial fuel use,gas,gas,2055,SO2,0.003025213 +MT,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +MT,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +MT,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +MT,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +MT,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +MT,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +MT,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +MT,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +MT,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +MT,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +MT,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +MT,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +MT,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +MT,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +MT,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +MT,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +MT,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +MT,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +MT,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +MT,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +MT,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +MT,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +MT,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +MT,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +MT,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +MT,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +MT,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +MT,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +MT,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +MT,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +MT,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +MT,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +MT,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +MT,industrial fuel use,coal,coal,2005,PM10,0.136452905 +MT,industrial fuel use,coal,coal,2010,PM10,0.093662835 +MT,industrial fuel use,coal,coal,2015,PM10,0.100887759 +MT,industrial fuel use,coal,coal,2020,PM10,0.094503476 +MT,industrial fuel use,coal,coal,2025,PM10,0.09752377 +MT,industrial fuel use,coal,coal,2030,PM10,0.099823133 +MT,industrial fuel use,coal,coal,2035,PM10,0.101097535 +MT,industrial fuel use,coal,coal,2040,PM10,0.102438117 +MT,industrial fuel use,coal,coal,2045,PM10,0.103553978 +MT,industrial fuel use,coal,coal,2050,PM10,0.105393893 +MT,industrial fuel use,coal,coal,2055,PM10,0.106304221 +MT,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +MT,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +MT,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +MT,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +MT,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +MT,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +MT,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +MT,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +MT,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +MT,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +MT,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +MT,industrial fuel use,gas,gas,2005,PM10,0.002144603 +MT,industrial fuel use,gas,gas,2010,PM10,0.004157892 +MT,industrial fuel use,gas,gas,2015,PM10,0.004308637 +MT,industrial fuel use,gas,gas,2020,PM10,0.004261296 +MT,industrial fuel use,gas,gas,2025,PM10,0.004334357 +MT,industrial fuel use,gas,gas,2030,PM10,0.00454497 +MT,industrial fuel use,gas,gas,2035,PM10,0.004581054 +MT,industrial fuel use,gas,gas,2040,PM10,0.004690204 +MT,industrial fuel use,gas,gas,2045,PM10,0.004695842 +MT,industrial fuel use,gas,gas,2050,PM10,0.004649052 +MT,industrial fuel use,gas,gas,2055,PM10,0.00454824 +MT,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +MT,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +MT,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +MT,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +MT,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +MT,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +MT,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +MT,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +MT,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +MT,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +MT,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +MT,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +MT,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +MT,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +MT,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +MT,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +MT,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +MT,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +MT,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +MT,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +MT,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +MT,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +MT,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +MT,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +MT,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +MT,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +MT,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +MT,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +MT,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +MT,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +MT,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +MT,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +MT,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +MT,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +MT,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +MT,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +MT,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +MT,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +MT,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +MT,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +MT,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +MT,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +MT,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +MT,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +MT,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +MT,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +MT,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +MT,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +MT,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +MT,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +MT,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +MT,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +MT,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +MT,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +MT,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +MT,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +MT,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +MT,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +MT,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +MT,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +MT,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +MT,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +MT,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +MT,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +MT,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +MT,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +MT,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +MT,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +MT,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +MT,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +MT,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +MT,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +MT,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +MT,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +MT,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +MT,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +MT,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +MT,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +MT,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +MT,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +MT,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +MT,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +MT,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +MT,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +MT,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +MT,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +MT,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +MT,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +MT,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +MT,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +MT,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +MT,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +MT,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +MT,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +MT,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +MT,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +MT,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +MT,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +MT,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +MT,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +MT,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +MT,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +MT,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +MT,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +MT,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +MT,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +MT,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +MT,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +MT,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +MT,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +MT,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +MT,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +MT,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +MT,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +MT,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +MT,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +MT,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +MT,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +MT,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +MT,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +MT,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +MT,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +MT,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +MT,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +MT,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +MT,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +MT,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +MT,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +MT,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +MT,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +MT,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +MT,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +MT,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +MT,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +MT,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +MT,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +MT,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +MT,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +MT,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +MT,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +MT,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +MT,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +MT,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +MT,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +MT,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +MT,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +MT,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +MT,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +MT,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +MT,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +MT,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +MT,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +MT,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +MT,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +MT,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +MT,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +MT,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +MT,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +MT,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +MT,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +MT,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +MT,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +MT,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +MT,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +MT,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +MT,industrial fuel use,coal,coal,2005,CO,0.069434106 +MT,industrial fuel use,coal,coal,2010,CO,0.07723114 +MT,industrial fuel use,coal,coal,2015,CO,0.068281575 +MT,industrial fuel use,coal,coal,2020,CO,0.063753622 +MT,industrial fuel use,coal,coal,2025,CO,0.065761399 +MT,industrial fuel use,coal,coal,2030,CO,0.067959367 +MT,industrial fuel use,coal,coal,2035,CO,0.069173462 +MT,industrial fuel use,coal,coal,2040,CO,0.070202866 +MT,industrial fuel use,coal,coal,2045,CO,0.071098148 +MT,industrial fuel use,coal,coal,2050,CO,0.072063393 +MT,industrial fuel use,coal,coal,2055,CO,0.072511454 +MT,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +MT,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +MT,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +MT,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +MT,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +MT,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +MT,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +MT,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +MT,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +MT,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +MT,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +MT,industrial fuel use,gas,gas,2005,CO,0.054958784 +MT,industrial fuel use,gas,gas,2010,CO,0.041119779 +MT,industrial fuel use,gas,gas,2015,CO,0.037376927 +MT,industrial fuel use,gas,gas,2020,CO,0.042196984 +MT,industrial fuel use,gas,gas,2025,CO,0.046340259 +MT,industrial fuel use,gas,gas,2030,CO,0.051044751 +MT,industrial fuel use,gas,gas,2035,CO,0.048377476 +MT,industrial fuel use,gas,gas,2040,CO,0.04844371 +MT,industrial fuel use,gas,gas,2045,CO,0.049325699 +MT,industrial fuel use,gas,gas,2050,CO,0.048085677 +MT,industrial fuel use,gas,gas,2055,CO,0.046506083 +MT,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +MT,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +MT,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +MT,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +MT,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +MT,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +MT,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +MT,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +MT,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +MT,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +MT,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +MT,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +MT,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +MT,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +MT,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +MT,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +MT,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +MT,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +MT,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +MT,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +MT,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +MT,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +MT,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +MT,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +MT,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +MT,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +MT,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +MT,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +MT,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +MT,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +MT,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +MT,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +MT,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +MT,industrial fuel use,coal,coal,2005,CH4,0.008615911 +MT,industrial fuel use,coal,coal,2010,CH4,0.007087118 +MT,industrial fuel use,coal,coal,2015,CH4,0.007645512 +MT,industrial fuel use,coal,coal,2020,CH4,0.007093206 +MT,industrial fuel use,coal,coal,2025,CH4,0.007280827 +MT,industrial fuel use,coal,coal,2030,CH4,0.007426545 +MT,industrial fuel use,coal,coal,2035,CH4,0.007524098 +MT,industrial fuel use,coal,coal,2040,CH4,0.007621441 +MT,industrial fuel use,coal,coal,2045,CH4,0.007691307 +MT,industrial fuel use,coal,coal,2050,CH4,0.007801358 +MT,industrial fuel use,coal,coal,2055,CH4,0.007871907 +MT,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +MT,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +MT,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +MT,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +MT,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +MT,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +MT,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +MT,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +MT,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +MT,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +MT,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +MT,industrial fuel use,gas,gas,2005,CH4,0.002575726 +MT,industrial fuel use,gas,gas,2010,CH4,0.0036902 +MT,industrial fuel use,gas,gas,2015,CH4,0.001847174 +MT,industrial fuel use,gas,gas,2020,CH4,0.002575374 +MT,industrial fuel use,gas,gas,2025,CH4,0.002470739 +MT,industrial fuel use,gas,gas,2030,CH4,0.002514812 +MT,industrial fuel use,gas,gas,2035,CH4,0.004402202 +MT,industrial fuel use,gas,gas,2040,CH4,0.005194877 +MT,industrial fuel use,gas,gas,2045,CH4,0.005264291 +MT,industrial fuel use,gas,gas,2050,CH4,0.006086388 +MT,industrial fuel use,gas,gas,2055,CH4,0.006850703 +MT,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +MT,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +MT,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +MT,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +MT,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +MT,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +MT,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +MT,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +MT,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +MT,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +MT,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +MT,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +MT,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +MT,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +MT,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +MT,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +MT,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +MT,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +MT,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +MT,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +MT,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +MT,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +MT,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +MT,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +MT,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +MT,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +MT,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +MT,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +MT,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +MT,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +MT,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +MT,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +MT,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +MT,industrial fuel use,coal,coal,2005,N2O,0.002945881 +MT,industrial fuel use,coal,coal,2010,N2O,0.004699422 +MT,industrial fuel use,coal,coal,2015,N2O,0.003718249 +MT,industrial fuel use,coal,coal,2020,N2O,0.003503987 +MT,industrial fuel use,coal,coal,2025,N2O,0.003902448 +MT,industrial fuel use,coal,coal,2030,N2O,0.005231917 +MT,industrial fuel use,coal,coal,2035,N2O,0.005844861 +MT,industrial fuel use,coal,coal,2040,N2O,0.006123209 +MT,industrial fuel use,coal,coal,2045,N2O,0.006493024 +MT,industrial fuel use,coal,coal,2050,N2O,0.00643187 +MT,industrial fuel use,coal,coal,2055,N2O,0.006580646 +MT,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +MT,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +MT,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +MT,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +MT,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +MT,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +MT,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +MT,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +MT,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +MT,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +MT,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +MT,industrial fuel use,gas,gas,2005,N2O,0.000509795 +MT,industrial fuel use,gas,gas,2010,N2O,0.000459136 +MT,industrial fuel use,gas,gas,2015,N2O,0.000457847 +MT,industrial fuel use,gas,gas,2020,N2O,0.000469807 +MT,industrial fuel use,gas,gas,2025,N2O,0.0004748 +MT,industrial fuel use,gas,gas,2030,N2O,0.000493269 +MT,industrial fuel use,gas,gas,2035,N2O,0.0005142 +MT,industrial fuel use,gas,gas,2040,N2O,0.000525413 +MT,industrial fuel use,gas,gas,2045,N2O,0.000530678 +MT,industrial fuel use,gas,gas,2050,N2O,0.000534097 +MT,industrial fuel use,gas,gas,2055,N2O,0.000535185 +MT,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +MT,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +MT,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +MT,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +MT,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +MT,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +MT,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +MT,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +MT,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +MT,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +MT,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +MT,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +MT,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +MT,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +MT,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +MT,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +MT,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +MT,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +MT,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +MT,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +MT,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +MT,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +MT,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +MT,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +MT,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +MT,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +MT,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +MT,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +MT,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +MT,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +MT,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +MT,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +MT,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +MT,industrial fuel use,coal,coal,2005,BC,0.052178527 +MT,industrial fuel use,coal,coal,2010,BC,0.054113893 +MT,industrial fuel use,coal,coal,2015,BC,0.054816673 +MT,industrial fuel use,coal,coal,2020,BC,0.051442317 +MT,industrial fuel use,coal,coal,2025,BC,0.05280003 +MT,industrial fuel use,coal,coal,2030,BC,0.054819383 +MT,industrial fuel use,coal,coal,2035,BC,0.055934389 +MT,industrial fuel use,coal,coal,2040,BC,0.056737391 +MT,industrial fuel use,coal,coal,2045,BC,0.057341111 +MT,industrial fuel use,coal,coal,2050,BC,0.057867944 +MT,industrial fuel use,coal,coal,2055,BC,0.058307588 +MT,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +MT,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +MT,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +MT,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +MT,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +MT,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +MT,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +MT,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +MT,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +MT,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +MT,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +MT,industrial fuel use,gas,gas,2005,BC,0.000879555 +MT,industrial fuel use,gas,gas,2010,BC,0.000594596 +MT,industrial fuel use,gas,gas,2015,BC,0.000780779 +MT,industrial fuel use,gas,gas,2020,BC,0.000758542 +MT,industrial fuel use,gas,gas,2025,BC,0.000791704 +MT,industrial fuel use,gas,gas,2030,BC,0.000829295 +MT,industrial fuel use,gas,gas,2035,BC,0.000745895 +MT,industrial fuel use,gas,gas,2040,BC,0.000739727 +MT,industrial fuel use,gas,gas,2045,BC,0.000759191 +MT,industrial fuel use,gas,gas,2050,BC,0.000728476 +MT,industrial fuel use,gas,gas,2055,BC,0.000688571 +MT,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +MT,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +MT,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +MT,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +MT,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +MT,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +MT,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +MT,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +MT,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +MT,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +MT,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +MT,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +MT,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +MT,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +MT,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +MT,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +MT,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +MT,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +MT,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +MT,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +MT,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +MT,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +MT,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +MT,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +MT,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +MT,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +MT,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +MT,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +MT,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +MT,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +MT,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +MT,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +MT,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +MT,industrial fuel use,coal,coal,2005,OC,0.004608879 +MT,industrial fuel use,coal,coal,2010,OC,0.004949044 +MT,industrial fuel use,coal,coal,2015,OC,0.005291355 +MT,industrial fuel use,coal,coal,2020,OC,0.005047635 +MT,industrial fuel use,coal,coal,2025,OC,0.005240698 +MT,industrial fuel use,coal,coal,2030,OC,0.005398598 +MT,industrial fuel use,coal,coal,2035,OC,0.005483036 +MT,industrial fuel use,coal,coal,2040,OC,0.005583473 +MT,industrial fuel use,coal,coal,2045,OC,0.005638434 +MT,industrial fuel use,coal,coal,2050,OC,0.005723515 +MT,industrial fuel use,coal,coal,2055,OC,0.005777195 +MT,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +MT,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +MT,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +MT,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +MT,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +MT,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +MT,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +MT,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +MT,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +MT,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +MT,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +MT,industrial fuel use,gas,gas,2005,OC,0.000586894 +MT,industrial fuel use,gas,gas,2010,OC,0.000538986 +MT,industrial fuel use,gas,gas,2015,OC,0.000406177 +MT,industrial fuel use,gas,gas,2020,OC,0.000436774 +MT,industrial fuel use,gas,gas,2025,OC,0.000431434 +MT,industrial fuel use,gas,gas,2030,OC,0.000454497 +MT,industrial fuel use,gas,gas,2035,OC,0.0005142 +MT,industrial fuel use,gas,gas,2040,OC,0.000542203 +MT,industrial fuel use,gas,gas,2045,OC,0.0005354 +MT,industrial fuel use,gas,gas,2050,OC,0.000552822 +MT,industrial fuel use,gas,gas,2055,OC,0.000563528 +MT,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +MT,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +MT,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +MT,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +MT,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +MT,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +MT,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +MT,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +MT,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +MT,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +MT,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +MT,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +MT,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +MT,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +MT,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +MT,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +MT,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +MT,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +MT,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +MT,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +MT,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +MT,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +MT,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +MT,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +MT,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +MT,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +MT,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +MT,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +MT,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +MT,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +MT,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +MT,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +MT,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +MT,industrial fuel use,coal,coal,2005,CO2,0.022413751 +MT,industrial fuel use,coal,coal,2010,CO2,0.023247485 +MT,industrial fuel use,coal,coal,2015,CO2,0.023542577 +MT,industrial fuel use,coal,coal,2020,CO2,0.022100946 +MT,industrial fuel use,coal,coal,2025,CO2,0.022682182 +MT,industrial fuel use,coal,coal,2030,CO2,0.023544891 +MT,industrial fuel use,coal,coal,2035,CO2,0.024022124 +MT,industrial fuel use,coal,coal,2040,CO2,0.024371859 +MT,industrial fuel use,coal,coal,2045,CO2,0.024626877 +MT,industrial fuel use,coal,coal,2050,CO2,0.024861999 +MT,industrial fuel use,coal,coal,2055,CO2,0.025047846 +MT,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +MT,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +MT,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +MT,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +MT,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +MT,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +MT,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +MT,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +MT,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +MT,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +MT,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +MT,industrial fuel use,gas,gas,2005,CO2,0.010100215 +MT,industrial fuel use,gas,gas,2010,CO2,0.008735772 +MT,industrial fuel use,gas,gas,2015,CO2,0.008975567 +MT,industrial fuel use,gas,gas,2020,CO2,0.009141549 +MT,industrial fuel use,gas,gas,2025,CO2,0.009319403 +MT,industrial fuel use,gas,gas,2030,CO2,0.009661635 +MT,industrial fuel use,gas,gas,2035,CO2,0.009858394 +MT,industrial fuel use,gas,gas,2040,CO2,0.010090146 +MT,industrial fuel use,gas,gas,2045,CO2,0.010177486 +MT,industrial fuel use,gas,gas,2050,CO2,0.010210503 +MT,industrial fuel use,gas,gas,2055,CO2,0.010168744 +MT,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +MT,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +MT,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +MT,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +MT,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +MT,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +MT,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +MT,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +MT,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +MT,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +MT,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +MT,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +MT,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +MT,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +MT,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +MT,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +MT,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +MT,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +MT,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +MT,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +MT,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +MT,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +MT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +MT,industrial fuel use,biomass,biomass,2005,CO2,0 +MT,industrial fuel use,biomass,biomass,2010,CO2,0 +MT,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +MT,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +MT,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +MT,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +MT,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +MT,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +MT,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +MT,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +MT,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +MT,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +MT,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +MT,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +MT,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +MT,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +MT,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +MT,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +MT,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +MT,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +MT,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +MT,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +NC,industrial fuel use,coal,coal,2005,NOx,0.261565752 +NC,industrial fuel use,coal,coal,2010,NOx,0.24128762 +NC,industrial fuel use,coal,coal,2015,NOx,0.247879608 +NC,industrial fuel use,coal,coal,2020,NOx,0.234312556 +NC,industrial fuel use,coal,coal,2025,NOx,0.240398293 +NC,industrial fuel use,coal,coal,2030,NOx,0.246677964 +NC,industrial fuel use,coal,coal,2035,NOx,0.250299201 +NC,industrial fuel use,coal,coal,2040,NOx,0.253554811 +NC,industrial fuel use,coal,coal,2045,NOx,0.255578056 +NC,industrial fuel use,coal,coal,2050,NOx,0.258549854 +NC,industrial fuel use,coal,coal,2055,NOx,0.26014596 +NC,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +NC,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +NC,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +NC,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +NC,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +NC,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +NC,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +NC,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +NC,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +NC,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +NC,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +NC,industrial fuel use,gas,gas,2005,NOx,0.080919016 +NC,industrial fuel use,gas,gas,2010,NOx,0.044952568 +NC,industrial fuel use,gas,gas,2015,NOx,0.037239142 +NC,industrial fuel use,gas,gas,2020,NOx,0.040745965 +NC,industrial fuel use,gas,gas,2025,NOx,0.042574105 +NC,industrial fuel use,gas,gas,2030,NOx,0.045347383 +NC,industrial fuel use,gas,gas,2035,NOx,0.048574619 +NC,industrial fuel use,gas,gas,2040,NOx,0.050422899 +NC,industrial fuel use,gas,gas,2045,NOx,0.050680722 +NC,industrial fuel use,gas,gas,2050,NOx,0.0517343 +NC,industrial fuel use,gas,gas,2055,NOx,0.052443137 +NC,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +NC,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +NC,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +NC,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +NC,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +NC,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +NC,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +NC,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +NC,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +NC,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +NC,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +NC,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +NC,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +NC,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +NC,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +NC,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +NC,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +NC,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +NC,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +NC,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +NC,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +NC,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +NC,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +NC,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +NC,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +NC,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +NC,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +NC,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +NC,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +NC,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +NC,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +NC,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +NC,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +NC,industrial fuel use,coal,coal,2005,SO2,0.709862367 +NC,industrial fuel use,coal,coal,2010,SO2,0.679592789 +NC,industrial fuel use,coal,coal,2015,SO2,0.590904591 +NC,industrial fuel use,coal,coal,2020,SO2,0.549595621 +NC,industrial fuel use,coal,coal,2025,SO2,0.56430149 +NC,industrial fuel use,coal,coal,2030,SO2,0.576548046 +NC,industrial fuel use,coal,coal,2035,SO2,0.583595424 +NC,industrial fuel use,coal,coal,2040,SO2,0.590805881 +NC,industrial fuel use,coal,coal,2045,SO2,0.596410723 +NC,industrial fuel use,coal,coal,2050,SO2,0.606154195 +NC,industrial fuel use,coal,coal,2055,SO2,0.611234923 +NC,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +NC,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +NC,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +NC,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +NC,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +NC,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +NC,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +NC,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +NC,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +NC,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +NC,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +NC,industrial fuel use,gas,gas,2005,SO2,0.000213988 +NC,industrial fuel use,gas,gas,2010,SO2,0.002761946 +NC,industrial fuel use,gas,gas,2015,SO2,0.002854723 +NC,industrial fuel use,gas,gas,2020,SO2,0.002771127 +NC,industrial fuel use,gas,gas,2025,SO2,0.002798763 +NC,industrial fuel use,gas,gas,2030,SO2,0.002938075 +NC,industrial fuel use,gas,gas,2035,SO2,0.003016098 +NC,industrial fuel use,gas,gas,2040,SO2,0.003118901 +NC,industrial fuel use,gas,gas,2045,SO2,0.00311325 +NC,industrial fuel use,gas,gas,2050,SO2,0.003090451 +NC,industrial fuel use,gas,gas,2055,SO2,0.003025213 +NC,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +NC,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +NC,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +NC,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +NC,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +NC,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +NC,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +NC,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +NC,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +NC,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +NC,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +NC,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +NC,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +NC,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +NC,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +NC,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +NC,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +NC,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +NC,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +NC,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +NC,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +NC,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +NC,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +NC,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +NC,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +NC,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +NC,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +NC,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +NC,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +NC,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +NC,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +NC,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +NC,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +NC,industrial fuel use,coal,coal,2005,PM10,0.136452905 +NC,industrial fuel use,coal,coal,2010,PM10,0.093662835 +NC,industrial fuel use,coal,coal,2015,PM10,0.100887759 +NC,industrial fuel use,coal,coal,2020,PM10,0.094503476 +NC,industrial fuel use,coal,coal,2025,PM10,0.09752377 +NC,industrial fuel use,coal,coal,2030,PM10,0.099823133 +NC,industrial fuel use,coal,coal,2035,PM10,0.101097535 +NC,industrial fuel use,coal,coal,2040,PM10,0.102438117 +NC,industrial fuel use,coal,coal,2045,PM10,0.103553978 +NC,industrial fuel use,coal,coal,2050,PM10,0.105393893 +NC,industrial fuel use,coal,coal,2055,PM10,0.106304221 +NC,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +NC,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +NC,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +NC,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +NC,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +NC,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +NC,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +NC,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +NC,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +NC,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +NC,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +NC,industrial fuel use,gas,gas,2005,PM10,0.002144603 +NC,industrial fuel use,gas,gas,2010,PM10,0.004157892 +NC,industrial fuel use,gas,gas,2015,PM10,0.004308637 +NC,industrial fuel use,gas,gas,2020,PM10,0.004261296 +NC,industrial fuel use,gas,gas,2025,PM10,0.004334357 +NC,industrial fuel use,gas,gas,2030,PM10,0.00454497 +NC,industrial fuel use,gas,gas,2035,PM10,0.004581054 +NC,industrial fuel use,gas,gas,2040,PM10,0.004690204 +NC,industrial fuel use,gas,gas,2045,PM10,0.004695842 +NC,industrial fuel use,gas,gas,2050,PM10,0.004649052 +NC,industrial fuel use,gas,gas,2055,PM10,0.00454824 +NC,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +NC,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +NC,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +NC,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +NC,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +NC,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +NC,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +NC,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +NC,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +NC,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +NC,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +NC,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +NC,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +NC,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +NC,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +NC,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +NC,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +NC,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +NC,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +NC,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +NC,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +NC,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +NC,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +NC,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +NC,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +NC,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +NC,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +NC,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +NC,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +NC,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +NC,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +NC,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +NC,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +NC,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +NC,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +NC,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +NC,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +NC,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +NC,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +NC,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +NC,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +NC,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +NC,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +NC,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +NC,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +NC,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +NC,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +NC,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +NC,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +NC,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +NC,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +NC,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +NC,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +NC,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +NC,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +NC,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +NC,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +NC,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +NC,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +NC,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +NC,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +NC,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +NC,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +NC,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +NC,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +NC,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +NC,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +NC,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +NC,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +NC,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +NC,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +NC,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +NC,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +NC,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +NC,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +NC,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +NC,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +NC,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +NC,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +NC,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +NC,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +NC,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +NC,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +NC,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +NC,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +NC,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +NC,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +NC,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +NC,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +NC,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +NC,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +NC,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +NC,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +NC,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +NC,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +NC,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +NC,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +NC,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +NC,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +NC,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +NC,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +NC,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +NC,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +NC,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +NC,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +NC,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +NC,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +NC,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +NC,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +NC,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +NC,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +NC,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +NC,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +NC,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +NC,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +NC,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +NC,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +NC,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +NC,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +NC,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +NC,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +NC,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +NC,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +NC,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +NC,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +NC,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +NC,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +NC,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +NC,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +NC,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +NC,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +NC,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +NC,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +NC,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +NC,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +NC,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +NC,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +NC,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +NC,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +NC,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +NC,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +NC,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +NC,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +NC,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +NC,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +NC,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +NC,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +NC,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +NC,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +NC,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +NC,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +NC,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +NC,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +NC,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +NC,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +NC,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +NC,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +NC,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +NC,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +NC,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +NC,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +NC,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +NC,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +NC,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +NC,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +NC,industrial fuel use,coal,coal,2005,CO,0.069434106 +NC,industrial fuel use,coal,coal,2010,CO,0.07723114 +NC,industrial fuel use,coal,coal,2015,CO,0.068281575 +NC,industrial fuel use,coal,coal,2020,CO,0.063753622 +NC,industrial fuel use,coal,coal,2025,CO,0.065761399 +NC,industrial fuel use,coal,coal,2030,CO,0.067959367 +NC,industrial fuel use,coal,coal,2035,CO,0.069173462 +NC,industrial fuel use,coal,coal,2040,CO,0.070202866 +NC,industrial fuel use,coal,coal,2045,CO,0.071098148 +NC,industrial fuel use,coal,coal,2050,CO,0.072063393 +NC,industrial fuel use,coal,coal,2055,CO,0.072511454 +NC,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +NC,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +NC,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +NC,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +NC,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +NC,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +NC,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +NC,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +NC,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +NC,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +NC,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +NC,industrial fuel use,gas,gas,2005,CO,0.054958784 +NC,industrial fuel use,gas,gas,2010,CO,0.041119779 +NC,industrial fuel use,gas,gas,2015,CO,0.037376927 +NC,industrial fuel use,gas,gas,2020,CO,0.042196984 +NC,industrial fuel use,gas,gas,2025,CO,0.046340259 +NC,industrial fuel use,gas,gas,2030,CO,0.051044751 +NC,industrial fuel use,gas,gas,2035,CO,0.048377476 +NC,industrial fuel use,gas,gas,2040,CO,0.04844371 +NC,industrial fuel use,gas,gas,2045,CO,0.049325699 +NC,industrial fuel use,gas,gas,2050,CO,0.048085677 +NC,industrial fuel use,gas,gas,2055,CO,0.046506083 +NC,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +NC,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +NC,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +NC,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +NC,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +NC,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +NC,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +NC,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +NC,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +NC,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +NC,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +NC,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +NC,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +NC,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +NC,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +NC,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +NC,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +NC,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +NC,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +NC,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +NC,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +NC,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +NC,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +NC,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +NC,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +NC,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +NC,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +NC,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +NC,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +NC,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +NC,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +NC,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +NC,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +NC,industrial fuel use,coal,coal,2005,CH4,0.008615911 +NC,industrial fuel use,coal,coal,2010,CH4,0.007087118 +NC,industrial fuel use,coal,coal,2015,CH4,0.007645512 +NC,industrial fuel use,coal,coal,2020,CH4,0.007093206 +NC,industrial fuel use,coal,coal,2025,CH4,0.007280827 +NC,industrial fuel use,coal,coal,2030,CH4,0.007426545 +NC,industrial fuel use,coal,coal,2035,CH4,0.007524098 +NC,industrial fuel use,coal,coal,2040,CH4,0.007621441 +NC,industrial fuel use,coal,coal,2045,CH4,0.007691307 +NC,industrial fuel use,coal,coal,2050,CH4,0.007801358 +NC,industrial fuel use,coal,coal,2055,CH4,0.007871907 +NC,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +NC,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +NC,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +NC,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +NC,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +NC,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +NC,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +NC,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +NC,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +NC,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +NC,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +NC,industrial fuel use,gas,gas,2005,CH4,0.002575726 +NC,industrial fuel use,gas,gas,2010,CH4,0.0036902 +NC,industrial fuel use,gas,gas,2015,CH4,0.001847174 +NC,industrial fuel use,gas,gas,2020,CH4,0.002575374 +NC,industrial fuel use,gas,gas,2025,CH4,0.002470739 +NC,industrial fuel use,gas,gas,2030,CH4,0.002514812 +NC,industrial fuel use,gas,gas,2035,CH4,0.004402202 +NC,industrial fuel use,gas,gas,2040,CH4,0.005194877 +NC,industrial fuel use,gas,gas,2045,CH4,0.005264291 +NC,industrial fuel use,gas,gas,2050,CH4,0.006086388 +NC,industrial fuel use,gas,gas,2055,CH4,0.006850703 +NC,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +NC,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +NC,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +NC,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +NC,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +NC,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +NC,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +NC,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +NC,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +NC,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +NC,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +NC,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +NC,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +NC,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +NC,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +NC,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +NC,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +NC,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +NC,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +NC,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +NC,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +NC,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +NC,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +NC,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +NC,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +NC,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +NC,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +NC,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +NC,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +NC,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +NC,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +NC,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +NC,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +NC,industrial fuel use,coal,coal,2005,N2O,0.002945881 +NC,industrial fuel use,coal,coal,2010,N2O,0.004699422 +NC,industrial fuel use,coal,coal,2015,N2O,0.003718249 +NC,industrial fuel use,coal,coal,2020,N2O,0.003503987 +NC,industrial fuel use,coal,coal,2025,N2O,0.003902448 +NC,industrial fuel use,coal,coal,2030,N2O,0.005231917 +NC,industrial fuel use,coal,coal,2035,N2O,0.005844861 +NC,industrial fuel use,coal,coal,2040,N2O,0.006123209 +NC,industrial fuel use,coal,coal,2045,N2O,0.006493024 +NC,industrial fuel use,coal,coal,2050,N2O,0.00643187 +NC,industrial fuel use,coal,coal,2055,N2O,0.006580646 +NC,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +NC,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +NC,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +NC,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +NC,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +NC,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +NC,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +NC,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +NC,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +NC,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +NC,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +NC,industrial fuel use,gas,gas,2005,N2O,0.000509795 +NC,industrial fuel use,gas,gas,2010,N2O,0.000459136 +NC,industrial fuel use,gas,gas,2015,N2O,0.000457847 +NC,industrial fuel use,gas,gas,2020,N2O,0.000469807 +NC,industrial fuel use,gas,gas,2025,N2O,0.0004748 +NC,industrial fuel use,gas,gas,2030,N2O,0.000493269 +NC,industrial fuel use,gas,gas,2035,N2O,0.0005142 +NC,industrial fuel use,gas,gas,2040,N2O,0.000525413 +NC,industrial fuel use,gas,gas,2045,N2O,0.000530678 +NC,industrial fuel use,gas,gas,2050,N2O,0.000534097 +NC,industrial fuel use,gas,gas,2055,N2O,0.000535185 +NC,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +NC,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +NC,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +NC,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +NC,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +NC,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +NC,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +NC,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +NC,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +NC,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +NC,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +NC,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +NC,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +NC,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +NC,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +NC,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +NC,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +NC,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +NC,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +NC,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +NC,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +NC,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +NC,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +NC,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +NC,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +NC,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +NC,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +NC,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +NC,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +NC,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +NC,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +NC,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +NC,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +NC,industrial fuel use,coal,coal,2005,BC,0.052178527 +NC,industrial fuel use,coal,coal,2010,BC,0.054113893 +NC,industrial fuel use,coal,coal,2015,BC,0.054816673 +NC,industrial fuel use,coal,coal,2020,BC,0.051442317 +NC,industrial fuel use,coal,coal,2025,BC,0.05280003 +NC,industrial fuel use,coal,coal,2030,BC,0.054819383 +NC,industrial fuel use,coal,coal,2035,BC,0.055934389 +NC,industrial fuel use,coal,coal,2040,BC,0.056737391 +NC,industrial fuel use,coal,coal,2045,BC,0.057341111 +NC,industrial fuel use,coal,coal,2050,BC,0.057867944 +NC,industrial fuel use,coal,coal,2055,BC,0.058307588 +NC,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +NC,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +NC,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +NC,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +NC,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +NC,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +NC,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +NC,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +NC,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +NC,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +NC,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +NC,industrial fuel use,gas,gas,2005,BC,0.000879555 +NC,industrial fuel use,gas,gas,2010,BC,0.000594596 +NC,industrial fuel use,gas,gas,2015,BC,0.000780779 +NC,industrial fuel use,gas,gas,2020,BC,0.000758542 +NC,industrial fuel use,gas,gas,2025,BC,0.000791704 +NC,industrial fuel use,gas,gas,2030,BC,0.000829295 +NC,industrial fuel use,gas,gas,2035,BC,0.000745895 +NC,industrial fuel use,gas,gas,2040,BC,0.000739727 +NC,industrial fuel use,gas,gas,2045,BC,0.000759191 +NC,industrial fuel use,gas,gas,2050,BC,0.000728476 +NC,industrial fuel use,gas,gas,2055,BC,0.000688571 +NC,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +NC,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +NC,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +NC,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +NC,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +NC,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +NC,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +NC,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +NC,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +NC,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +NC,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +NC,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +NC,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +NC,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +NC,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +NC,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +NC,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +NC,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +NC,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +NC,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +NC,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +NC,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +NC,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +NC,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +NC,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +NC,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +NC,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +NC,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +NC,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +NC,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +NC,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +NC,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +NC,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +NC,industrial fuel use,coal,coal,2005,OC,0.004608879 +NC,industrial fuel use,coal,coal,2010,OC,0.004949044 +NC,industrial fuel use,coal,coal,2015,OC,0.005291355 +NC,industrial fuel use,coal,coal,2020,OC,0.005047635 +NC,industrial fuel use,coal,coal,2025,OC,0.005240698 +NC,industrial fuel use,coal,coal,2030,OC,0.005398598 +NC,industrial fuel use,coal,coal,2035,OC,0.005483036 +NC,industrial fuel use,coal,coal,2040,OC,0.005583473 +NC,industrial fuel use,coal,coal,2045,OC,0.005638434 +NC,industrial fuel use,coal,coal,2050,OC,0.005723515 +NC,industrial fuel use,coal,coal,2055,OC,0.005777195 +NC,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +NC,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +NC,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +NC,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +NC,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +NC,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +NC,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +NC,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +NC,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +NC,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +NC,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +NC,industrial fuel use,gas,gas,2005,OC,0.000586894 +NC,industrial fuel use,gas,gas,2010,OC,0.000538986 +NC,industrial fuel use,gas,gas,2015,OC,0.000406177 +NC,industrial fuel use,gas,gas,2020,OC,0.000436774 +NC,industrial fuel use,gas,gas,2025,OC,0.000431434 +NC,industrial fuel use,gas,gas,2030,OC,0.000454497 +NC,industrial fuel use,gas,gas,2035,OC,0.0005142 +NC,industrial fuel use,gas,gas,2040,OC,0.000542203 +NC,industrial fuel use,gas,gas,2045,OC,0.0005354 +NC,industrial fuel use,gas,gas,2050,OC,0.000552822 +NC,industrial fuel use,gas,gas,2055,OC,0.000563528 +NC,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +NC,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +NC,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +NC,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +NC,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +NC,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +NC,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +NC,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +NC,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +NC,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +NC,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +NC,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +NC,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +NC,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +NC,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +NC,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +NC,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +NC,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +NC,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +NC,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +NC,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +NC,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +NC,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +NC,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +NC,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +NC,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +NC,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +NC,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +NC,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +NC,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +NC,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +NC,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +NC,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +NC,industrial fuel use,coal,coal,2005,CO2,0.022413751 +NC,industrial fuel use,coal,coal,2010,CO2,0.023247485 +NC,industrial fuel use,coal,coal,2015,CO2,0.023542577 +NC,industrial fuel use,coal,coal,2020,CO2,0.022100946 +NC,industrial fuel use,coal,coal,2025,CO2,0.022682182 +NC,industrial fuel use,coal,coal,2030,CO2,0.023544891 +NC,industrial fuel use,coal,coal,2035,CO2,0.024022124 +NC,industrial fuel use,coal,coal,2040,CO2,0.024371859 +NC,industrial fuel use,coal,coal,2045,CO2,0.024626877 +NC,industrial fuel use,coal,coal,2050,CO2,0.024861999 +NC,industrial fuel use,coal,coal,2055,CO2,0.025047846 +NC,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +NC,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +NC,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +NC,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +NC,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +NC,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +NC,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +NC,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +NC,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +NC,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +NC,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +NC,industrial fuel use,gas,gas,2005,CO2,0.010100215 +NC,industrial fuel use,gas,gas,2010,CO2,0.008735772 +NC,industrial fuel use,gas,gas,2015,CO2,0.008975567 +NC,industrial fuel use,gas,gas,2020,CO2,0.009141549 +NC,industrial fuel use,gas,gas,2025,CO2,0.009319403 +NC,industrial fuel use,gas,gas,2030,CO2,0.009661635 +NC,industrial fuel use,gas,gas,2035,CO2,0.009858394 +NC,industrial fuel use,gas,gas,2040,CO2,0.010090146 +NC,industrial fuel use,gas,gas,2045,CO2,0.010177486 +NC,industrial fuel use,gas,gas,2050,CO2,0.010210503 +NC,industrial fuel use,gas,gas,2055,CO2,0.010168744 +NC,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +NC,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +NC,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +NC,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +NC,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +NC,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +NC,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +NC,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +NC,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +NC,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +NC,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +NC,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +NC,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +NC,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +NC,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +NC,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +NC,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +NC,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +NC,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +NC,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +NC,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +NC,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +NC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +NC,industrial fuel use,biomass,biomass,2005,CO2,0 +NC,industrial fuel use,biomass,biomass,2010,CO2,0 +NC,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +NC,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +NC,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +NC,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +NC,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +NC,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +NC,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +NC,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +NC,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +NC,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +NC,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +NC,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +NC,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +NC,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +NC,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +NC,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +NC,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +NC,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +NC,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +NC,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +ND,industrial fuel use,coal,coal,2005,NOx,0.261565752 +ND,industrial fuel use,coal,coal,2010,NOx,0.24128762 +ND,industrial fuel use,coal,coal,2015,NOx,0.247879608 +ND,industrial fuel use,coal,coal,2020,NOx,0.234312556 +ND,industrial fuel use,coal,coal,2025,NOx,0.240398293 +ND,industrial fuel use,coal,coal,2030,NOx,0.246677964 +ND,industrial fuel use,coal,coal,2035,NOx,0.250299201 +ND,industrial fuel use,coal,coal,2040,NOx,0.253554811 +ND,industrial fuel use,coal,coal,2045,NOx,0.255578056 +ND,industrial fuel use,coal,coal,2050,NOx,0.258549854 +ND,industrial fuel use,coal,coal,2055,NOx,0.26014596 +ND,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +ND,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +ND,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +ND,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +ND,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +ND,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +ND,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +ND,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +ND,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +ND,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +ND,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +ND,industrial fuel use,gas,gas,2005,NOx,0.080919016 +ND,industrial fuel use,gas,gas,2010,NOx,0.044952568 +ND,industrial fuel use,gas,gas,2015,NOx,0.037239142 +ND,industrial fuel use,gas,gas,2020,NOx,0.040745965 +ND,industrial fuel use,gas,gas,2025,NOx,0.042574105 +ND,industrial fuel use,gas,gas,2030,NOx,0.045347383 +ND,industrial fuel use,gas,gas,2035,NOx,0.048574619 +ND,industrial fuel use,gas,gas,2040,NOx,0.050422899 +ND,industrial fuel use,gas,gas,2045,NOx,0.050680722 +ND,industrial fuel use,gas,gas,2050,NOx,0.0517343 +ND,industrial fuel use,gas,gas,2055,NOx,0.052443137 +ND,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +ND,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +ND,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +ND,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +ND,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +ND,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +ND,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +ND,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +ND,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +ND,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +ND,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +ND,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +ND,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +ND,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +ND,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +ND,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +ND,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +ND,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +ND,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +ND,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +ND,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +ND,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +ND,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +ND,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +ND,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +ND,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +ND,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +ND,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +ND,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +ND,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +ND,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +ND,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +ND,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +ND,industrial fuel use,coal,coal,2005,SO2,0.709862367 +ND,industrial fuel use,coal,coal,2010,SO2,0.679592789 +ND,industrial fuel use,coal,coal,2015,SO2,0.590904591 +ND,industrial fuel use,coal,coal,2020,SO2,0.549595621 +ND,industrial fuel use,coal,coal,2025,SO2,0.56430149 +ND,industrial fuel use,coal,coal,2030,SO2,0.576548046 +ND,industrial fuel use,coal,coal,2035,SO2,0.583595424 +ND,industrial fuel use,coal,coal,2040,SO2,0.590805881 +ND,industrial fuel use,coal,coal,2045,SO2,0.596410723 +ND,industrial fuel use,coal,coal,2050,SO2,0.606154195 +ND,industrial fuel use,coal,coal,2055,SO2,0.611234923 +ND,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +ND,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +ND,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +ND,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +ND,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +ND,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +ND,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +ND,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +ND,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +ND,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +ND,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +ND,industrial fuel use,gas,gas,2005,SO2,0.000213988 +ND,industrial fuel use,gas,gas,2010,SO2,0.002761946 +ND,industrial fuel use,gas,gas,2015,SO2,0.002854723 +ND,industrial fuel use,gas,gas,2020,SO2,0.002771127 +ND,industrial fuel use,gas,gas,2025,SO2,0.002798763 +ND,industrial fuel use,gas,gas,2030,SO2,0.002938075 +ND,industrial fuel use,gas,gas,2035,SO2,0.003016098 +ND,industrial fuel use,gas,gas,2040,SO2,0.003118901 +ND,industrial fuel use,gas,gas,2045,SO2,0.00311325 +ND,industrial fuel use,gas,gas,2050,SO2,0.003090451 +ND,industrial fuel use,gas,gas,2055,SO2,0.003025213 +ND,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +ND,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +ND,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +ND,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +ND,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +ND,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +ND,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +ND,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +ND,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +ND,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +ND,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +ND,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +ND,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +ND,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +ND,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +ND,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +ND,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +ND,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +ND,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +ND,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +ND,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +ND,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +ND,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +ND,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +ND,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +ND,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +ND,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +ND,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +ND,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +ND,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +ND,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +ND,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +ND,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +ND,industrial fuel use,coal,coal,2005,PM10,0.136452905 +ND,industrial fuel use,coal,coal,2010,PM10,0.093662835 +ND,industrial fuel use,coal,coal,2015,PM10,0.100887759 +ND,industrial fuel use,coal,coal,2020,PM10,0.094503476 +ND,industrial fuel use,coal,coal,2025,PM10,0.09752377 +ND,industrial fuel use,coal,coal,2030,PM10,0.099823133 +ND,industrial fuel use,coal,coal,2035,PM10,0.101097535 +ND,industrial fuel use,coal,coal,2040,PM10,0.102438117 +ND,industrial fuel use,coal,coal,2045,PM10,0.103553978 +ND,industrial fuel use,coal,coal,2050,PM10,0.105393893 +ND,industrial fuel use,coal,coal,2055,PM10,0.106304221 +ND,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +ND,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +ND,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +ND,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +ND,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +ND,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +ND,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +ND,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +ND,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +ND,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +ND,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +ND,industrial fuel use,gas,gas,2005,PM10,0.002144603 +ND,industrial fuel use,gas,gas,2010,PM10,0.004157892 +ND,industrial fuel use,gas,gas,2015,PM10,0.004308637 +ND,industrial fuel use,gas,gas,2020,PM10,0.004261296 +ND,industrial fuel use,gas,gas,2025,PM10,0.004334357 +ND,industrial fuel use,gas,gas,2030,PM10,0.00454497 +ND,industrial fuel use,gas,gas,2035,PM10,0.004581054 +ND,industrial fuel use,gas,gas,2040,PM10,0.004690204 +ND,industrial fuel use,gas,gas,2045,PM10,0.004695842 +ND,industrial fuel use,gas,gas,2050,PM10,0.004649052 +ND,industrial fuel use,gas,gas,2055,PM10,0.00454824 +ND,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +ND,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +ND,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +ND,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +ND,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +ND,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +ND,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +ND,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +ND,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +ND,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +ND,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +ND,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +ND,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +ND,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +ND,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +ND,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +ND,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +ND,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +ND,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +ND,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +ND,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +ND,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +ND,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +ND,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +ND,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +ND,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +ND,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +ND,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +ND,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +ND,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +ND,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +ND,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +ND,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +ND,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +ND,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +ND,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +ND,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +ND,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +ND,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +ND,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +ND,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +ND,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +ND,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +ND,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +ND,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +ND,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +ND,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +ND,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +ND,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +ND,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +ND,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +ND,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +ND,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +ND,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +ND,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +ND,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +ND,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +ND,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +ND,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +ND,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +ND,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +ND,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +ND,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +ND,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +ND,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +ND,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +ND,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +ND,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +ND,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +ND,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +ND,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +ND,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +ND,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +ND,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +ND,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +ND,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +ND,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +ND,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +ND,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +ND,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +ND,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +ND,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +ND,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +ND,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +ND,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +ND,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +ND,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +ND,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +ND,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +ND,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +ND,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +ND,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +ND,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +ND,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +ND,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +ND,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +ND,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +ND,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +ND,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +ND,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +ND,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +ND,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +ND,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +ND,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +ND,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +ND,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +ND,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +ND,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +ND,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +ND,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +ND,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +ND,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +ND,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +ND,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +ND,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +ND,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +ND,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +ND,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +ND,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +ND,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +ND,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +ND,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +ND,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +ND,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +ND,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +ND,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +ND,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +ND,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +ND,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +ND,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +ND,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +ND,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +ND,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +ND,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +ND,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +ND,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +ND,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +ND,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +ND,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +ND,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +ND,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +ND,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +ND,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +ND,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +ND,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +ND,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +ND,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +ND,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +ND,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +ND,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +ND,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +ND,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +ND,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +ND,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +ND,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +ND,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +ND,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +ND,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +ND,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +ND,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +ND,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +ND,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +ND,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +ND,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +ND,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +ND,industrial fuel use,coal,coal,2005,CO,0.069434106 +ND,industrial fuel use,coal,coal,2010,CO,0.07723114 +ND,industrial fuel use,coal,coal,2015,CO,0.068281575 +ND,industrial fuel use,coal,coal,2020,CO,0.063753622 +ND,industrial fuel use,coal,coal,2025,CO,0.065761399 +ND,industrial fuel use,coal,coal,2030,CO,0.067959367 +ND,industrial fuel use,coal,coal,2035,CO,0.069173462 +ND,industrial fuel use,coal,coal,2040,CO,0.070202866 +ND,industrial fuel use,coal,coal,2045,CO,0.071098148 +ND,industrial fuel use,coal,coal,2050,CO,0.072063393 +ND,industrial fuel use,coal,coal,2055,CO,0.072511454 +ND,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +ND,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +ND,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +ND,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +ND,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +ND,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +ND,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +ND,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +ND,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +ND,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +ND,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +ND,industrial fuel use,gas,gas,2005,CO,0.054958784 +ND,industrial fuel use,gas,gas,2010,CO,0.041119779 +ND,industrial fuel use,gas,gas,2015,CO,0.037376927 +ND,industrial fuel use,gas,gas,2020,CO,0.042196984 +ND,industrial fuel use,gas,gas,2025,CO,0.046340259 +ND,industrial fuel use,gas,gas,2030,CO,0.051044751 +ND,industrial fuel use,gas,gas,2035,CO,0.048377476 +ND,industrial fuel use,gas,gas,2040,CO,0.04844371 +ND,industrial fuel use,gas,gas,2045,CO,0.049325699 +ND,industrial fuel use,gas,gas,2050,CO,0.048085677 +ND,industrial fuel use,gas,gas,2055,CO,0.046506083 +ND,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +ND,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +ND,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +ND,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +ND,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +ND,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +ND,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +ND,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +ND,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +ND,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +ND,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +ND,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +ND,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +ND,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +ND,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +ND,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +ND,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +ND,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +ND,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +ND,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +ND,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +ND,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +ND,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +ND,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +ND,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +ND,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +ND,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +ND,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +ND,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +ND,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +ND,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +ND,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +ND,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +ND,industrial fuel use,coal,coal,2005,CH4,0.008615911 +ND,industrial fuel use,coal,coal,2010,CH4,0.007087118 +ND,industrial fuel use,coal,coal,2015,CH4,0.007645512 +ND,industrial fuel use,coal,coal,2020,CH4,0.007093206 +ND,industrial fuel use,coal,coal,2025,CH4,0.007280827 +ND,industrial fuel use,coal,coal,2030,CH4,0.007426545 +ND,industrial fuel use,coal,coal,2035,CH4,0.007524098 +ND,industrial fuel use,coal,coal,2040,CH4,0.007621441 +ND,industrial fuel use,coal,coal,2045,CH4,0.007691307 +ND,industrial fuel use,coal,coal,2050,CH4,0.007801358 +ND,industrial fuel use,coal,coal,2055,CH4,0.007871907 +ND,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +ND,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +ND,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +ND,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +ND,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +ND,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +ND,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +ND,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +ND,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +ND,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +ND,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +ND,industrial fuel use,gas,gas,2005,CH4,0.002575726 +ND,industrial fuel use,gas,gas,2010,CH4,0.0036902 +ND,industrial fuel use,gas,gas,2015,CH4,0.001847174 +ND,industrial fuel use,gas,gas,2020,CH4,0.002575374 +ND,industrial fuel use,gas,gas,2025,CH4,0.002470739 +ND,industrial fuel use,gas,gas,2030,CH4,0.002514812 +ND,industrial fuel use,gas,gas,2035,CH4,0.004402202 +ND,industrial fuel use,gas,gas,2040,CH4,0.005194877 +ND,industrial fuel use,gas,gas,2045,CH4,0.005264291 +ND,industrial fuel use,gas,gas,2050,CH4,0.006086388 +ND,industrial fuel use,gas,gas,2055,CH4,0.006850703 +ND,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +ND,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +ND,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +ND,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +ND,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +ND,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +ND,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +ND,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +ND,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +ND,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +ND,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +ND,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +ND,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +ND,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +ND,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +ND,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +ND,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +ND,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +ND,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +ND,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +ND,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +ND,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +ND,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +ND,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +ND,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +ND,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +ND,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +ND,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +ND,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +ND,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +ND,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +ND,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +ND,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +ND,industrial fuel use,coal,coal,2005,N2O,0.002945881 +ND,industrial fuel use,coal,coal,2010,N2O,0.004699422 +ND,industrial fuel use,coal,coal,2015,N2O,0.003718249 +ND,industrial fuel use,coal,coal,2020,N2O,0.003503987 +ND,industrial fuel use,coal,coal,2025,N2O,0.003902448 +ND,industrial fuel use,coal,coal,2030,N2O,0.005231917 +ND,industrial fuel use,coal,coal,2035,N2O,0.005844861 +ND,industrial fuel use,coal,coal,2040,N2O,0.006123209 +ND,industrial fuel use,coal,coal,2045,N2O,0.006493024 +ND,industrial fuel use,coal,coal,2050,N2O,0.00643187 +ND,industrial fuel use,coal,coal,2055,N2O,0.006580646 +ND,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +ND,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +ND,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +ND,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +ND,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +ND,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +ND,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +ND,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +ND,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +ND,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +ND,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +ND,industrial fuel use,gas,gas,2005,N2O,0.000509795 +ND,industrial fuel use,gas,gas,2010,N2O,0.000459136 +ND,industrial fuel use,gas,gas,2015,N2O,0.000457847 +ND,industrial fuel use,gas,gas,2020,N2O,0.000469807 +ND,industrial fuel use,gas,gas,2025,N2O,0.0004748 +ND,industrial fuel use,gas,gas,2030,N2O,0.000493269 +ND,industrial fuel use,gas,gas,2035,N2O,0.0005142 +ND,industrial fuel use,gas,gas,2040,N2O,0.000525413 +ND,industrial fuel use,gas,gas,2045,N2O,0.000530678 +ND,industrial fuel use,gas,gas,2050,N2O,0.000534097 +ND,industrial fuel use,gas,gas,2055,N2O,0.000535185 +ND,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +ND,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +ND,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +ND,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +ND,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +ND,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +ND,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +ND,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +ND,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +ND,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +ND,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +ND,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +ND,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +ND,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +ND,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +ND,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +ND,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +ND,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +ND,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +ND,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +ND,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +ND,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +ND,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +ND,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +ND,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +ND,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +ND,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +ND,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +ND,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +ND,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +ND,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +ND,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +ND,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +ND,industrial fuel use,coal,coal,2005,BC,0.052178527 +ND,industrial fuel use,coal,coal,2010,BC,0.054113893 +ND,industrial fuel use,coal,coal,2015,BC,0.054816673 +ND,industrial fuel use,coal,coal,2020,BC,0.051442317 +ND,industrial fuel use,coal,coal,2025,BC,0.05280003 +ND,industrial fuel use,coal,coal,2030,BC,0.054819383 +ND,industrial fuel use,coal,coal,2035,BC,0.055934389 +ND,industrial fuel use,coal,coal,2040,BC,0.056737391 +ND,industrial fuel use,coal,coal,2045,BC,0.057341111 +ND,industrial fuel use,coal,coal,2050,BC,0.057867944 +ND,industrial fuel use,coal,coal,2055,BC,0.058307588 +ND,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +ND,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +ND,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +ND,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +ND,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +ND,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +ND,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +ND,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +ND,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +ND,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +ND,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +ND,industrial fuel use,gas,gas,2005,BC,0.000879555 +ND,industrial fuel use,gas,gas,2010,BC,0.000594596 +ND,industrial fuel use,gas,gas,2015,BC,0.000780779 +ND,industrial fuel use,gas,gas,2020,BC,0.000758542 +ND,industrial fuel use,gas,gas,2025,BC,0.000791704 +ND,industrial fuel use,gas,gas,2030,BC,0.000829295 +ND,industrial fuel use,gas,gas,2035,BC,0.000745895 +ND,industrial fuel use,gas,gas,2040,BC,0.000739727 +ND,industrial fuel use,gas,gas,2045,BC,0.000759191 +ND,industrial fuel use,gas,gas,2050,BC,0.000728476 +ND,industrial fuel use,gas,gas,2055,BC,0.000688571 +ND,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +ND,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +ND,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +ND,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +ND,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +ND,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +ND,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +ND,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +ND,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +ND,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +ND,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +ND,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +ND,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +ND,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +ND,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +ND,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +ND,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +ND,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +ND,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +ND,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +ND,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +ND,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +ND,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +ND,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +ND,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +ND,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +ND,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +ND,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +ND,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +ND,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +ND,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +ND,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +ND,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +ND,industrial fuel use,coal,coal,2005,OC,0.004608879 +ND,industrial fuel use,coal,coal,2010,OC,0.004949044 +ND,industrial fuel use,coal,coal,2015,OC,0.005291355 +ND,industrial fuel use,coal,coal,2020,OC,0.005047635 +ND,industrial fuel use,coal,coal,2025,OC,0.005240698 +ND,industrial fuel use,coal,coal,2030,OC,0.005398598 +ND,industrial fuel use,coal,coal,2035,OC,0.005483036 +ND,industrial fuel use,coal,coal,2040,OC,0.005583473 +ND,industrial fuel use,coal,coal,2045,OC,0.005638434 +ND,industrial fuel use,coal,coal,2050,OC,0.005723515 +ND,industrial fuel use,coal,coal,2055,OC,0.005777195 +ND,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +ND,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +ND,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +ND,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +ND,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +ND,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +ND,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +ND,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +ND,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +ND,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +ND,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +ND,industrial fuel use,gas,gas,2005,OC,0.000586894 +ND,industrial fuel use,gas,gas,2010,OC,0.000538986 +ND,industrial fuel use,gas,gas,2015,OC,0.000406177 +ND,industrial fuel use,gas,gas,2020,OC,0.000436774 +ND,industrial fuel use,gas,gas,2025,OC,0.000431434 +ND,industrial fuel use,gas,gas,2030,OC,0.000454497 +ND,industrial fuel use,gas,gas,2035,OC,0.0005142 +ND,industrial fuel use,gas,gas,2040,OC,0.000542203 +ND,industrial fuel use,gas,gas,2045,OC,0.0005354 +ND,industrial fuel use,gas,gas,2050,OC,0.000552822 +ND,industrial fuel use,gas,gas,2055,OC,0.000563528 +ND,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +ND,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +ND,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +ND,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +ND,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +ND,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +ND,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +ND,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +ND,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +ND,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +ND,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +ND,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +ND,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +ND,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +ND,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +ND,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +ND,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +ND,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +ND,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +ND,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +ND,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +ND,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +ND,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +ND,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +ND,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +ND,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +ND,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +ND,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +ND,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +ND,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +ND,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +ND,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +ND,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +ND,industrial fuel use,coal,coal,2005,CO2,0.022413751 +ND,industrial fuel use,coal,coal,2010,CO2,0.023247485 +ND,industrial fuel use,coal,coal,2015,CO2,0.023542577 +ND,industrial fuel use,coal,coal,2020,CO2,0.022100946 +ND,industrial fuel use,coal,coal,2025,CO2,0.022682182 +ND,industrial fuel use,coal,coal,2030,CO2,0.023544891 +ND,industrial fuel use,coal,coal,2035,CO2,0.024022124 +ND,industrial fuel use,coal,coal,2040,CO2,0.024371859 +ND,industrial fuel use,coal,coal,2045,CO2,0.024626877 +ND,industrial fuel use,coal,coal,2050,CO2,0.024861999 +ND,industrial fuel use,coal,coal,2055,CO2,0.025047846 +ND,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +ND,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +ND,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +ND,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +ND,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +ND,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +ND,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +ND,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +ND,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +ND,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +ND,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +ND,industrial fuel use,gas,gas,2005,CO2,0.010100215 +ND,industrial fuel use,gas,gas,2010,CO2,0.008735772 +ND,industrial fuel use,gas,gas,2015,CO2,0.008975567 +ND,industrial fuel use,gas,gas,2020,CO2,0.009141549 +ND,industrial fuel use,gas,gas,2025,CO2,0.009319403 +ND,industrial fuel use,gas,gas,2030,CO2,0.009661635 +ND,industrial fuel use,gas,gas,2035,CO2,0.009858394 +ND,industrial fuel use,gas,gas,2040,CO2,0.010090146 +ND,industrial fuel use,gas,gas,2045,CO2,0.010177486 +ND,industrial fuel use,gas,gas,2050,CO2,0.010210503 +ND,industrial fuel use,gas,gas,2055,CO2,0.010168744 +ND,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +ND,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +ND,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +ND,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +ND,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +ND,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +ND,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +ND,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +ND,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +ND,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +ND,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +ND,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +ND,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +ND,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +ND,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +ND,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +ND,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +ND,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +ND,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +ND,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +ND,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +ND,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +ND,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +ND,industrial fuel use,biomass,biomass,2005,CO2,0 +ND,industrial fuel use,biomass,biomass,2010,CO2,0 +ND,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +ND,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +ND,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +ND,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +ND,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +ND,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +ND,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +ND,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +ND,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +ND,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +ND,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +ND,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +ND,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +ND,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +ND,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +ND,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +ND,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +ND,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +ND,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +ND,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +NE,industrial fuel use,coal,coal,2005,NOx,0.261565752 +NE,industrial fuel use,coal,coal,2010,NOx,0.24128762 +NE,industrial fuel use,coal,coal,2015,NOx,0.247879608 +NE,industrial fuel use,coal,coal,2020,NOx,0.234312556 +NE,industrial fuel use,coal,coal,2025,NOx,0.240398293 +NE,industrial fuel use,coal,coal,2030,NOx,0.246677964 +NE,industrial fuel use,coal,coal,2035,NOx,0.250299201 +NE,industrial fuel use,coal,coal,2040,NOx,0.253554811 +NE,industrial fuel use,coal,coal,2045,NOx,0.255578056 +NE,industrial fuel use,coal,coal,2050,NOx,0.258549854 +NE,industrial fuel use,coal,coal,2055,NOx,0.26014596 +NE,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +NE,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +NE,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +NE,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +NE,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +NE,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +NE,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +NE,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +NE,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +NE,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +NE,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +NE,industrial fuel use,gas,gas,2005,NOx,0.080919016 +NE,industrial fuel use,gas,gas,2010,NOx,0.044952568 +NE,industrial fuel use,gas,gas,2015,NOx,0.037239142 +NE,industrial fuel use,gas,gas,2020,NOx,0.040745965 +NE,industrial fuel use,gas,gas,2025,NOx,0.042574105 +NE,industrial fuel use,gas,gas,2030,NOx,0.045347383 +NE,industrial fuel use,gas,gas,2035,NOx,0.048574619 +NE,industrial fuel use,gas,gas,2040,NOx,0.050422899 +NE,industrial fuel use,gas,gas,2045,NOx,0.050680722 +NE,industrial fuel use,gas,gas,2050,NOx,0.0517343 +NE,industrial fuel use,gas,gas,2055,NOx,0.052443137 +NE,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +NE,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +NE,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +NE,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +NE,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +NE,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +NE,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +NE,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +NE,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +NE,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +NE,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +NE,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +NE,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +NE,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +NE,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +NE,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +NE,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +NE,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +NE,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +NE,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +NE,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +NE,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +NE,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +NE,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +NE,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +NE,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +NE,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +NE,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +NE,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +NE,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +NE,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +NE,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +NE,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +NE,industrial fuel use,coal,coal,2005,SO2,0.709862367 +NE,industrial fuel use,coal,coal,2010,SO2,0.679592789 +NE,industrial fuel use,coal,coal,2015,SO2,0.590904591 +NE,industrial fuel use,coal,coal,2020,SO2,0.549595621 +NE,industrial fuel use,coal,coal,2025,SO2,0.56430149 +NE,industrial fuel use,coal,coal,2030,SO2,0.576548046 +NE,industrial fuel use,coal,coal,2035,SO2,0.583595424 +NE,industrial fuel use,coal,coal,2040,SO2,0.590805881 +NE,industrial fuel use,coal,coal,2045,SO2,0.596410723 +NE,industrial fuel use,coal,coal,2050,SO2,0.606154195 +NE,industrial fuel use,coal,coal,2055,SO2,0.611234923 +NE,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +NE,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +NE,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +NE,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +NE,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +NE,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +NE,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +NE,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +NE,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +NE,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +NE,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +NE,industrial fuel use,gas,gas,2005,SO2,0.000213988 +NE,industrial fuel use,gas,gas,2010,SO2,0.002761946 +NE,industrial fuel use,gas,gas,2015,SO2,0.002854723 +NE,industrial fuel use,gas,gas,2020,SO2,0.002771127 +NE,industrial fuel use,gas,gas,2025,SO2,0.002798763 +NE,industrial fuel use,gas,gas,2030,SO2,0.002938075 +NE,industrial fuel use,gas,gas,2035,SO2,0.003016098 +NE,industrial fuel use,gas,gas,2040,SO2,0.003118901 +NE,industrial fuel use,gas,gas,2045,SO2,0.00311325 +NE,industrial fuel use,gas,gas,2050,SO2,0.003090451 +NE,industrial fuel use,gas,gas,2055,SO2,0.003025213 +NE,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +NE,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +NE,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +NE,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +NE,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +NE,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +NE,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +NE,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +NE,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +NE,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +NE,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +NE,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +NE,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +NE,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +NE,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +NE,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +NE,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +NE,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +NE,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +NE,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +NE,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +NE,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +NE,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +NE,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +NE,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +NE,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +NE,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +NE,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +NE,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +NE,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +NE,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +NE,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +NE,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +NE,industrial fuel use,coal,coal,2005,PM10,0.136452905 +NE,industrial fuel use,coal,coal,2010,PM10,0.093662835 +NE,industrial fuel use,coal,coal,2015,PM10,0.100887759 +NE,industrial fuel use,coal,coal,2020,PM10,0.094503476 +NE,industrial fuel use,coal,coal,2025,PM10,0.09752377 +NE,industrial fuel use,coal,coal,2030,PM10,0.099823133 +NE,industrial fuel use,coal,coal,2035,PM10,0.101097535 +NE,industrial fuel use,coal,coal,2040,PM10,0.102438117 +NE,industrial fuel use,coal,coal,2045,PM10,0.103553978 +NE,industrial fuel use,coal,coal,2050,PM10,0.105393893 +NE,industrial fuel use,coal,coal,2055,PM10,0.106304221 +NE,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +NE,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +NE,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +NE,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +NE,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +NE,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +NE,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +NE,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +NE,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +NE,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +NE,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +NE,industrial fuel use,gas,gas,2005,PM10,0.002144603 +NE,industrial fuel use,gas,gas,2010,PM10,0.004157892 +NE,industrial fuel use,gas,gas,2015,PM10,0.004308637 +NE,industrial fuel use,gas,gas,2020,PM10,0.004261296 +NE,industrial fuel use,gas,gas,2025,PM10,0.004334357 +NE,industrial fuel use,gas,gas,2030,PM10,0.00454497 +NE,industrial fuel use,gas,gas,2035,PM10,0.004581054 +NE,industrial fuel use,gas,gas,2040,PM10,0.004690204 +NE,industrial fuel use,gas,gas,2045,PM10,0.004695842 +NE,industrial fuel use,gas,gas,2050,PM10,0.004649052 +NE,industrial fuel use,gas,gas,2055,PM10,0.00454824 +NE,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +NE,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +NE,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +NE,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +NE,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +NE,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +NE,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +NE,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +NE,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +NE,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +NE,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +NE,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +NE,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +NE,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +NE,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +NE,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +NE,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +NE,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +NE,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +NE,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +NE,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +NE,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +NE,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +NE,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +NE,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +NE,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +NE,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +NE,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +NE,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +NE,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +NE,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +NE,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +NE,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +NE,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +NE,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +NE,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +NE,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +NE,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +NE,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +NE,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +NE,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +NE,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +NE,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +NE,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +NE,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +NE,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +NE,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +NE,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +NE,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +NE,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +NE,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +NE,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +NE,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +NE,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +NE,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +NE,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +NE,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +NE,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +NE,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +NE,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +NE,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +NE,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +NE,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +NE,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +NE,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +NE,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +NE,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +NE,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +NE,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +NE,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +NE,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +NE,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +NE,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +NE,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +NE,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +NE,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +NE,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +NE,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +NE,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +NE,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +NE,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +NE,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +NE,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +NE,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +NE,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +NE,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +NE,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +NE,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +NE,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +NE,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +NE,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +NE,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +NE,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +NE,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +NE,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +NE,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +NE,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +NE,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +NE,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +NE,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +NE,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +NE,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +NE,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +NE,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +NE,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +NE,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +NE,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +NE,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +NE,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +NE,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +NE,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +NE,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +NE,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +NE,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +NE,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +NE,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +NE,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +NE,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +NE,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +NE,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +NE,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +NE,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +NE,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +NE,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +NE,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +NE,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +NE,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +NE,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +NE,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +NE,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +NE,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +NE,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +NE,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +NE,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +NE,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +NE,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +NE,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +NE,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +NE,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +NE,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +NE,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +NE,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +NE,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +NE,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +NE,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +NE,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +NE,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +NE,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +NE,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +NE,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +NE,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +NE,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +NE,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +NE,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +NE,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +NE,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +NE,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +NE,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +NE,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +NE,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +NE,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +NE,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +NE,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +NE,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +NE,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +NE,industrial fuel use,coal,coal,2005,CO,0.069434106 +NE,industrial fuel use,coal,coal,2010,CO,0.07723114 +NE,industrial fuel use,coal,coal,2015,CO,0.068281575 +NE,industrial fuel use,coal,coal,2020,CO,0.063753622 +NE,industrial fuel use,coal,coal,2025,CO,0.065761399 +NE,industrial fuel use,coal,coal,2030,CO,0.067959367 +NE,industrial fuel use,coal,coal,2035,CO,0.069173462 +NE,industrial fuel use,coal,coal,2040,CO,0.070202866 +NE,industrial fuel use,coal,coal,2045,CO,0.071098148 +NE,industrial fuel use,coal,coal,2050,CO,0.072063393 +NE,industrial fuel use,coal,coal,2055,CO,0.072511454 +NE,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +NE,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +NE,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +NE,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +NE,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +NE,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +NE,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +NE,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +NE,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +NE,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +NE,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +NE,industrial fuel use,gas,gas,2005,CO,0.054958784 +NE,industrial fuel use,gas,gas,2010,CO,0.041119779 +NE,industrial fuel use,gas,gas,2015,CO,0.037376927 +NE,industrial fuel use,gas,gas,2020,CO,0.042196984 +NE,industrial fuel use,gas,gas,2025,CO,0.046340259 +NE,industrial fuel use,gas,gas,2030,CO,0.051044751 +NE,industrial fuel use,gas,gas,2035,CO,0.048377476 +NE,industrial fuel use,gas,gas,2040,CO,0.04844371 +NE,industrial fuel use,gas,gas,2045,CO,0.049325699 +NE,industrial fuel use,gas,gas,2050,CO,0.048085677 +NE,industrial fuel use,gas,gas,2055,CO,0.046506083 +NE,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +NE,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +NE,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +NE,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +NE,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +NE,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +NE,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +NE,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +NE,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +NE,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +NE,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +NE,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +NE,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +NE,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +NE,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +NE,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +NE,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +NE,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +NE,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +NE,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +NE,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +NE,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +NE,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +NE,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +NE,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +NE,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +NE,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +NE,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +NE,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +NE,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +NE,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +NE,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +NE,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +NE,industrial fuel use,coal,coal,2005,CH4,0.008615911 +NE,industrial fuel use,coal,coal,2010,CH4,0.007087118 +NE,industrial fuel use,coal,coal,2015,CH4,0.007645512 +NE,industrial fuel use,coal,coal,2020,CH4,0.007093206 +NE,industrial fuel use,coal,coal,2025,CH4,0.007280827 +NE,industrial fuel use,coal,coal,2030,CH4,0.007426545 +NE,industrial fuel use,coal,coal,2035,CH4,0.007524098 +NE,industrial fuel use,coal,coal,2040,CH4,0.007621441 +NE,industrial fuel use,coal,coal,2045,CH4,0.007691307 +NE,industrial fuel use,coal,coal,2050,CH4,0.007801358 +NE,industrial fuel use,coal,coal,2055,CH4,0.007871907 +NE,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +NE,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +NE,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +NE,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +NE,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +NE,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +NE,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +NE,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +NE,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +NE,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +NE,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +NE,industrial fuel use,gas,gas,2005,CH4,0.002575726 +NE,industrial fuel use,gas,gas,2010,CH4,0.0036902 +NE,industrial fuel use,gas,gas,2015,CH4,0.001847174 +NE,industrial fuel use,gas,gas,2020,CH4,0.002575374 +NE,industrial fuel use,gas,gas,2025,CH4,0.002470739 +NE,industrial fuel use,gas,gas,2030,CH4,0.002514812 +NE,industrial fuel use,gas,gas,2035,CH4,0.004402202 +NE,industrial fuel use,gas,gas,2040,CH4,0.005194877 +NE,industrial fuel use,gas,gas,2045,CH4,0.005264291 +NE,industrial fuel use,gas,gas,2050,CH4,0.006086388 +NE,industrial fuel use,gas,gas,2055,CH4,0.006850703 +NE,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +NE,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +NE,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +NE,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +NE,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +NE,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +NE,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +NE,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +NE,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +NE,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +NE,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +NE,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +NE,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +NE,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +NE,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +NE,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +NE,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +NE,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +NE,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +NE,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +NE,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +NE,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +NE,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +NE,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +NE,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +NE,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +NE,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +NE,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +NE,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +NE,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +NE,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +NE,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +NE,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +NE,industrial fuel use,coal,coal,2005,N2O,0.002945881 +NE,industrial fuel use,coal,coal,2010,N2O,0.004699422 +NE,industrial fuel use,coal,coal,2015,N2O,0.003718249 +NE,industrial fuel use,coal,coal,2020,N2O,0.003503987 +NE,industrial fuel use,coal,coal,2025,N2O,0.003902448 +NE,industrial fuel use,coal,coal,2030,N2O,0.005231917 +NE,industrial fuel use,coal,coal,2035,N2O,0.005844861 +NE,industrial fuel use,coal,coal,2040,N2O,0.006123209 +NE,industrial fuel use,coal,coal,2045,N2O,0.006493024 +NE,industrial fuel use,coal,coal,2050,N2O,0.00643187 +NE,industrial fuel use,coal,coal,2055,N2O,0.006580646 +NE,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +NE,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +NE,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +NE,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +NE,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +NE,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +NE,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +NE,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +NE,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +NE,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +NE,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +NE,industrial fuel use,gas,gas,2005,N2O,0.000509795 +NE,industrial fuel use,gas,gas,2010,N2O,0.000459136 +NE,industrial fuel use,gas,gas,2015,N2O,0.000457847 +NE,industrial fuel use,gas,gas,2020,N2O,0.000469807 +NE,industrial fuel use,gas,gas,2025,N2O,0.0004748 +NE,industrial fuel use,gas,gas,2030,N2O,0.000493269 +NE,industrial fuel use,gas,gas,2035,N2O,0.0005142 +NE,industrial fuel use,gas,gas,2040,N2O,0.000525413 +NE,industrial fuel use,gas,gas,2045,N2O,0.000530678 +NE,industrial fuel use,gas,gas,2050,N2O,0.000534097 +NE,industrial fuel use,gas,gas,2055,N2O,0.000535185 +NE,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +NE,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +NE,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +NE,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +NE,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +NE,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +NE,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +NE,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +NE,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +NE,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +NE,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +NE,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +NE,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +NE,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +NE,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +NE,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +NE,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +NE,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +NE,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +NE,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +NE,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +NE,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +NE,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +NE,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +NE,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +NE,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +NE,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +NE,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +NE,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +NE,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +NE,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +NE,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +NE,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +NE,industrial fuel use,coal,coal,2005,BC,0.052178527 +NE,industrial fuel use,coal,coal,2010,BC,0.054113893 +NE,industrial fuel use,coal,coal,2015,BC,0.054816673 +NE,industrial fuel use,coal,coal,2020,BC,0.051442317 +NE,industrial fuel use,coal,coal,2025,BC,0.05280003 +NE,industrial fuel use,coal,coal,2030,BC,0.054819383 +NE,industrial fuel use,coal,coal,2035,BC,0.055934389 +NE,industrial fuel use,coal,coal,2040,BC,0.056737391 +NE,industrial fuel use,coal,coal,2045,BC,0.057341111 +NE,industrial fuel use,coal,coal,2050,BC,0.057867944 +NE,industrial fuel use,coal,coal,2055,BC,0.058307588 +NE,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +NE,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +NE,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +NE,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +NE,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +NE,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +NE,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +NE,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +NE,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +NE,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +NE,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +NE,industrial fuel use,gas,gas,2005,BC,0.000879555 +NE,industrial fuel use,gas,gas,2010,BC,0.000594596 +NE,industrial fuel use,gas,gas,2015,BC,0.000780779 +NE,industrial fuel use,gas,gas,2020,BC,0.000758542 +NE,industrial fuel use,gas,gas,2025,BC,0.000791704 +NE,industrial fuel use,gas,gas,2030,BC,0.000829295 +NE,industrial fuel use,gas,gas,2035,BC,0.000745895 +NE,industrial fuel use,gas,gas,2040,BC,0.000739727 +NE,industrial fuel use,gas,gas,2045,BC,0.000759191 +NE,industrial fuel use,gas,gas,2050,BC,0.000728476 +NE,industrial fuel use,gas,gas,2055,BC,0.000688571 +NE,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +NE,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +NE,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +NE,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +NE,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +NE,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +NE,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +NE,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +NE,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +NE,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +NE,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +NE,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +NE,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +NE,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +NE,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +NE,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +NE,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +NE,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +NE,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +NE,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +NE,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +NE,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +NE,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +NE,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +NE,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +NE,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +NE,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +NE,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +NE,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +NE,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +NE,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +NE,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +NE,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +NE,industrial fuel use,coal,coal,2005,OC,0.004608879 +NE,industrial fuel use,coal,coal,2010,OC,0.004949044 +NE,industrial fuel use,coal,coal,2015,OC,0.005291355 +NE,industrial fuel use,coal,coal,2020,OC,0.005047635 +NE,industrial fuel use,coal,coal,2025,OC,0.005240698 +NE,industrial fuel use,coal,coal,2030,OC,0.005398598 +NE,industrial fuel use,coal,coal,2035,OC,0.005483036 +NE,industrial fuel use,coal,coal,2040,OC,0.005583473 +NE,industrial fuel use,coal,coal,2045,OC,0.005638434 +NE,industrial fuel use,coal,coal,2050,OC,0.005723515 +NE,industrial fuel use,coal,coal,2055,OC,0.005777195 +NE,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +NE,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +NE,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +NE,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +NE,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +NE,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +NE,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +NE,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +NE,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +NE,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +NE,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +NE,industrial fuel use,gas,gas,2005,OC,0.000586894 +NE,industrial fuel use,gas,gas,2010,OC,0.000538986 +NE,industrial fuel use,gas,gas,2015,OC,0.000406177 +NE,industrial fuel use,gas,gas,2020,OC,0.000436774 +NE,industrial fuel use,gas,gas,2025,OC,0.000431434 +NE,industrial fuel use,gas,gas,2030,OC,0.000454497 +NE,industrial fuel use,gas,gas,2035,OC,0.0005142 +NE,industrial fuel use,gas,gas,2040,OC,0.000542203 +NE,industrial fuel use,gas,gas,2045,OC,0.0005354 +NE,industrial fuel use,gas,gas,2050,OC,0.000552822 +NE,industrial fuel use,gas,gas,2055,OC,0.000563528 +NE,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +NE,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +NE,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +NE,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +NE,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +NE,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +NE,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +NE,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +NE,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +NE,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +NE,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +NE,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +NE,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +NE,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +NE,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +NE,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +NE,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +NE,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +NE,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +NE,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +NE,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +NE,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +NE,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +NE,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +NE,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +NE,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +NE,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +NE,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +NE,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +NE,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +NE,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +NE,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +NE,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +NE,industrial fuel use,coal,coal,2005,CO2,0.022413751 +NE,industrial fuel use,coal,coal,2010,CO2,0.023247485 +NE,industrial fuel use,coal,coal,2015,CO2,0.023542577 +NE,industrial fuel use,coal,coal,2020,CO2,0.022100946 +NE,industrial fuel use,coal,coal,2025,CO2,0.022682182 +NE,industrial fuel use,coal,coal,2030,CO2,0.023544891 +NE,industrial fuel use,coal,coal,2035,CO2,0.024022124 +NE,industrial fuel use,coal,coal,2040,CO2,0.024371859 +NE,industrial fuel use,coal,coal,2045,CO2,0.024626877 +NE,industrial fuel use,coal,coal,2050,CO2,0.024861999 +NE,industrial fuel use,coal,coal,2055,CO2,0.025047846 +NE,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +NE,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +NE,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +NE,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +NE,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +NE,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +NE,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +NE,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +NE,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +NE,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +NE,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +NE,industrial fuel use,gas,gas,2005,CO2,0.010100215 +NE,industrial fuel use,gas,gas,2010,CO2,0.008735772 +NE,industrial fuel use,gas,gas,2015,CO2,0.008975567 +NE,industrial fuel use,gas,gas,2020,CO2,0.009141549 +NE,industrial fuel use,gas,gas,2025,CO2,0.009319403 +NE,industrial fuel use,gas,gas,2030,CO2,0.009661635 +NE,industrial fuel use,gas,gas,2035,CO2,0.009858394 +NE,industrial fuel use,gas,gas,2040,CO2,0.010090146 +NE,industrial fuel use,gas,gas,2045,CO2,0.010177486 +NE,industrial fuel use,gas,gas,2050,CO2,0.010210503 +NE,industrial fuel use,gas,gas,2055,CO2,0.010168744 +NE,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +NE,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +NE,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +NE,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +NE,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +NE,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +NE,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +NE,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +NE,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +NE,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +NE,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +NE,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +NE,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +NE,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +NE,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +NE,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +NE,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +NE,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +NE,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +NE,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +NE,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +NE,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +NE,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +NE,industrial fuel use,biomass,biomass,2005,CO2,0 +NE,industrial fuel use,biomass,biomass,2010,CO2,0 +NE,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +NE,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +NE,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +NE,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +NE,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +NE,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +NE,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +NE,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +NE,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +NE,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +NE,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +NE,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +NE,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +NE,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +NE,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +NE,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +NE,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +NE,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +NE,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +NE,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +NH,industrial fuel use,coal,coal,2005,NOx,0.261565752 +NH,industrial fuel use,coal,coal,2010,NOx,0.24128762 +NH,industrial fuel use,coal,coal,2015,NOx,0.247879608 +NH,industrial fuel use,coal,coal,2020,NOx,0.234312556 +NH,industrial fuel use,coal,coal,2025,NOx,0.240398293 +NH,industrial fuel use,coal,coal,2030,NOx,0.246677964 +NH,industrial fuel use,coal,coal,2035,NOx,0.250299201 +NH,industrial fuel use,coal,coal,2040,NOx,0.253554811 +NH,industrial fuel use,coal,coal,2045,NOx,0.255578056 +NH,industrial fuel use,coal,coal,2050,NOx,0.258549854 +NH,industrial fuel use,coal,coal,2055,NOx,0.26014596 +NH,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +NH,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +NH,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +NH,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +NH,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +NH,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +NH,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +NH,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +NH,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +NH,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +NH,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +NH,industrial fuel use,gas,gas,2005,NOx,0.080919016 +NH,industrial fuel use,gas,gas,2010,NOx,0.044952568 +NH,industrial fuel use,gas,gas,2015,NOx,0.037239142 +NH,industrial fuel use,gas,gas,2020,NOx,0.040745965 +NH,industrial fuel use,gas,gas,2025,NOx,0.042574105 +NH,industrial fuel use,gas,gas,2030,NOx,0.045347383 +NH,industrial fuel use,gas,gas,2035,NOx,0.048574619 +NH,industrial fuel use,gas,gas,2040,NOx,0.050422899 +NH,industrial fuel use,gas,gas,2045,NOx,0.050680722 +NH,industrial fuel use,gas,gas,2050,NOx,0.0517343 +NH,industrial fuel use,gas,gas,2055,NOx,0.052443137 +NH,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +NH,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +NH,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +NH,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +NH,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +NH,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +NH,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +NH,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +NH,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +NH,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +NH,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +NH,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +NH,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +NH,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +NH,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +NH,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +NH,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +NH,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +NH,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +NH,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +NH,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +NH,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +NH,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +NH,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +NH,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +NH,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +NH,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +NH,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +NH,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +NH,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +NH,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +NH,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +NH,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +NH,industrial fuel use,coal,coal,2005,SO2,0.709862367 +NH,industrial fuel use,coal,coal,2010,SO2,0.679592789 +NH,industrial fuel use,coal,coal,2015,SO2,0.590904591 +NH,industrial fuel use,coal,coal,2020,SO2,0.549595621 +NH,industrial fuel use,coal,coal,2025,SO2,0.56430149 +NH,industrial fuel use,coal,coal,2030,SO2,0.576548046 +NH,industrial fuel use,coal,coal,2035,SO2,0.583595424 +NH,industrial fuel use,coal,coal,2040,SO2,0.590805881 +NH,industrial fuel use,coal,coal,2045,SO2,0.596410723 +NH,industrial fuel use,coal,coal,2050,SO2,0.606154195 +NH,industrial fuel use,coal,coal,2055,SO2,0.611234923 +NH,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +NH,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +NH,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +NH,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +NH,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +NH,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +NH,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +NH,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +NH,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +NH,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +NH,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +NH,industrial fuel use,gas,gas,2005,SO2,0.000213988 +NH,industrial fuel use,gas,gas,2010,SO2,0.002761946 +NH,industrial fuel use,gas,gas,2015,SO2,0.002854723 +NH,industrial fuel use,gas,gas,2020,SO2,0.002771127 +NH,industrial fuel use,gas,gas,2025,SO2,0.002798763 +NH,industrial fuel use,gas,gas,2030,SO2,0.002938075 +NH,industrial fuel use,gas,gas,2035,SO2,0.003016098 +NH,industrial fuel use,gas,gas,2040,SO2,0.003118901 +NH,industrial fuel use,gas,gas,2045,SO2,0.00311325 +NH,industrial fuel use,gas,gas,2050,SO2,0.003090451 +NH,industrial fuel use,gas,gas,2055,SO2,0.003025213 +NH,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +NH,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +NH,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +NH,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +NH,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +NH,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +NH,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +NH,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +NH,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +NH,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +NH,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +NH,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +NH,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +NH,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +NH,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +NH,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +NH,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +NH,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +NH,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +NH,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +NH,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +NH,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +NH,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +NH,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +NH,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +NH,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +NH,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +NH,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +NH,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +NH,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +NH,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +NH,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +NH,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +NH,industrial fuel use,coal,coal,2005,PM10,0.136452905 +NH,industrial fuel use,coal,coal,2010,PM10,0.093662835 +NH,industrial fuel use,coal,coal,2015,PM10,0.100887759 +NH,industrial fuel use,coal,coal,2020,PM10,0.094503476 +NH,industrial fuel use,coal,coal,2025,PM10,0.09752377 +NH,industrial fuel use,coal,coal,2030,PM10,0.099823133 +NH,industrial fuel use,coal,coal,2035,PM10,0.101097535 +NH,industrial fuel use,coal,coal,2040,PM10,0.102438117 +NH,industrial fuel use,coal,coal,2045,PM10,0.103553978 +NH,industrial fuel use,coal,coal,2050,PM10,0.105393893 +NH,industrial fuel use,coal,coal,2055,PM10,0.106304221 +NH,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +NH,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +NH,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +NH,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +NH,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +NH,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +NH,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +NH,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +NH,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +NH,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +NH,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +NH,industrial fuel use,gas,gas,2005,PM10,0.002144603 +NH,industrial fuel use,gas,gas,2010,PM10,0.004157892 +NH,industrial fuel use,gas,gas,2015,PM10,0.004308637 +NH,industrial fuel use,gas,gas,2020,PM10,0.004261296 +NH,industrial fuel use,gas,gas,2025,PM10,0.004334357 +NH,industrial fuel use,gas,gas,2030,PM10,0.00454497 +NH,industrial fuel use,gas,gas,2035,PM10,0.004581054 +NH,industrial fuel use,gas,gas,2040,PM10,0.004690204 +NH,industrial fuel use,gas,gas,2045,PM10,0.004695842 +NH,industrial fuel use,gas,gas,2050,PM10,0.004649052 +NH,industrial fuel use,gas,gas,2055,PM10,0.00454824 +NH,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +NH,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +NH,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +NH,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +NH,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +NH,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +NH,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +NH,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +NH,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +NH,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +NH,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +NH,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +NH,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +NH,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +NH,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +NH,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +NH,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +NH,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +NH,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +NH,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +NH,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +NH,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +NH,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +NH,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +NH,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +NH,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +NH,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +NH,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +NH,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +NH,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +NH,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +NH,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +NH,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +NH,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +NH,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +NH,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +NH,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +NH,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +NH,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +NH,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +NH,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +NH,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +NH,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +NH,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +NH,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +NH,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +NH,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +NH,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +NH,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +NH,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +NH,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +NH,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +NH,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +NH,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +NH,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +NH,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +NH,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +NH,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +NH,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +NH,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +NH,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +NH,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +NH,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +NH,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +NH,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +NH,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +NH,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +NH,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +NH,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +NH,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +NH,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +NH,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +NH,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +NH,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +NH,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +NH,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +NH,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +NH,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +NH,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +NH,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +NH,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +NH,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +NH,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +NH,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +NH,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +NH,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +NH,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +NH,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +NH,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +NH,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +NH,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +NH,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +NH,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +NH,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +NH,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +NH,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +NH,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +NH,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +NH,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +NH,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +NH,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +NH,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +NH,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +NH,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +NH,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +NH,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +NH,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +NH,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +NH,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +NH,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +NH,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +NH,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +NH,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +NH,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +NH,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +NH,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +NH,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +NH,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +NH,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +NH,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +NH,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +NH,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +NH,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +NH,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +NH,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +NH,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +NH,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +NH,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +NH,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +NH,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +NH,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +NH,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +NH,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +NH,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +NH,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +NH,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +NH,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +NH,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +NH,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +NH,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +NH,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +NH,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +NH,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +NH,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +NH,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +NH,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +NH,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +NH,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +NH,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +NH,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +NH,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +NH,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +NH,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +NH,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +NH,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +NH,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +NH,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +NH,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +NH,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +NH,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +NH,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +NH,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +NH,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +NH,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +NH,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +NH,industrial fuel use,coal,coal,2005,CO,0.069434106 +NH,industrial fuel use,coal,coal,2010,CO,0.07723114 +NH,industrial fuel use,coal,coal,2015,CO,0.068281575 +NH,industrial fuel use,coal,coal,2020,CO,0.063753622 +NH,industrial fuel use,coal,coal,2025,CO,0.065761399 +NH,industrial fuel use,coal,coal,2030,CO,0.067959367 +NH,industrial fuel use,coal,coal,2035,CO,0.069173462 +NH,industrial fuel use,coal,coal,2040,CO,0.070202866 +NH,industrial fuel use,coal,coal,2045,CO,0.071098148 +NH,industrial fuel use,coal,coal,2050,CO,0.072063393 +NH,industrial fuel use,coal,coal,2055,CO,0.072511454 +NH,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +NH,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +NH,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +NH,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +NH,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +NH,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +NH,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +NH,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +NH,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +NH,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +NH,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +NH,industrial fuel use,gas,gas,2005,CO,0.054958784 +NH,industrial fuel use,gas,gas,2010,CO,0.041119779 +NH,industrial fuel use,gas,gas,2015,CO,0.037376927 +NH,industrial fuel use,gas,gas,2020,CO,0.042196984 +NH,industrial fuel use,gas,gas,2025,CO,0.046340259 +NH,industrial fuel use,gas,gas,2030,CO,0.051044751 +NH,industrial fuel use,gas,gas,2035,CO,0.048377476 +NH,industrial fuel use,gas,gas,2040,CO,0.04844371 +NH,industrial fuel use,gas,gas,2045,CO,0.049325699 +NH,industrial fuel use,gas,gas,2050,CO,0.048085677 +NH,industrial fuel use,gas,gas,2055,CO,0.046506083 +NH,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +NH,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +NH,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +NH,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +NH,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +NH,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +NH,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +NH,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +NH,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +NH,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +NH,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +NH,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +NH,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +NH,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +NH,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +NH,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +NH,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +NH,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +NH,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +NH,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +NH,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +NH,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +NH,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +NH,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +NH,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +NH,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +NH,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +NH,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +NH,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +NH,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +NH,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +NH,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +NH,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +NH,industrial fuel use,coal,coal,2005,CH4,0.008615911 +NH,industrial fuel use,coal,coal,2010,CH4,0.007087118 +NH,industrial fuel use,coal,coal,2015,CH4,0.007645512 +NH,industrial fuel use,coal,coal,2020,CH4,0.007093206 +NH,industrial fuel use,coal,coal,2025,CH4,0.007280827 +NH,industrial fuel use,coal,coal,2030,CH4,0.007426545 +NH,industrial fuel use,coal,coal,2035,CH4,0.007524098 +NH,industrial fuel use,coal,coal,2040,CH4,0.007621441 +NH,industrial fuel use,coal,coal,2045,CH4,0.007691307 +NH,industrial fuel use,coal,coal,2050,CH4,0.007801358 +NH,industrial fuel use,coal,coal,2055,CH4,0.007871907 +NH,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +NH,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +NH,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +NH,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +NH,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +NH,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +NH,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +NH,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +NH,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +NH,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +NH,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +NH,industrial fuel use,gas,gas,2005,CH4,0.002575726 +NH,industrial fuel use,gas,gas,2010,CH4,0.0036902 +NH,industrial fuel use,gas,gas,2015,CH4,0.001847174 +NH,industrial fuel use,gas,gas,2020,CH4,0.002575374 +NH,industrial fuel use,gas,gas,2025,CH4,0.002470739 +NH,industrial fuel use,gas,gas,2030,CH4,0.002514812 +NH,industrial fuel use,gas,gas,2035,CH4,0.004402202 +NH,industrial fuel use,gas,gas,2040,CH4,0.005194877 +NH,industrial fuel use,gas,gas,2045,CH4,0.005264291 +NH,industrial fuel use,gas,gas,2050,CH4,0.006086388 +NH,industrial fuel use,gas,gas,2055,CH4,0.006850703 +NH,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +NH,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +NH,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +NH,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +NH,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +NH,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +NH,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +NH,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +NH,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +NH,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +NH,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +NH,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +NH,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +NH,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +NH,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +NH,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +NH,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +NH,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +NH,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +NH,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +NH,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +NH,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +NH,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +NH,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +NH,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +NH,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +NH,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +NH,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +NH,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +NH,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +NH,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +NH,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +NH,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +NH,industrial fuel use,coal,coal,2005,N2O,0.002945881 +NH,industrial fuel use,coal,coal,2010,N2O,0.004699422 +NH,industrial fuel use,coal,coal,2015,N2O,0.003718249 +NH,industrial fuel use,coal,coal,2020,N2O,0.003503987 +NH,industrial fuel use,coal,coal,2025,N2O,0.003902448 +NH,industrial fuel use,coal,coal,2030,N2O,0.005231917 +NH,industrial fuel use,coal,coal,2035,N2O,0.005844861 +NH,industrial fuel use,coal,coal,2040,N2O,0.006123209 +NH,industrial fuel use,coal,coal,2045,N2O,0.006493024 +NH,industrial fuel use,coal,coal,2050,N2O,0.00643187 +NH,industrial fuel use,coal,coal,2055,N2O,0.006580646 +NH,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +NH,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +NH,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +NH,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +NH,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +NH,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +NH,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +NH,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +NH,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +NH,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +NH,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +NH,industrial fuel use,gas,gas,2005,N2O,0.000509795 +NH,industrial fuel use,gas,gas,2010,N2O,0.000459136 +NH,industrial fuel use,gas,gas,2015,N2O,0.000457847 +NH,industrial fuel use,gas,gas,2020,N2O,0.000469807 +NH,industrial fuel use,gas,gas,2025,N2O,0.0004748 +NH,industrial fuel use,gas,gas,2030,N2O,0.000493269 +NH,industrial fuel use,gas,gas,2035,N2O,0.0005142 +NH,industrial fuel use,gas,gas,2040,N2O,0.000525413 +NH,industrial fuel use,gas,gas,2045,N2O,0.000530678 +NH,industrial fuel use,gas,gas,2050,N2O,0.000534097 +NH,industrial fuel use,gas,gas,2055,N2O,0.000535185 +NH,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +NH,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +NH,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +NH,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +NH,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +NH,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +NH,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +NH,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +NH,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +NH,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +NH,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +NH,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +NH,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +NH,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +NH,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +NH,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +NH,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +NH,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +NH,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +NH,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +NH,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +NH,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +NH,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +NH,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +NH,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +NH,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +NH,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +NH,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +NH,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +NH,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +NH,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +NH,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +NH,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +NH,industrial fuel use,coal,coal,2005,BC,0.052178527 +NH,industrial fuel use,coal,coal,2010,BC,0.054113893 +NH,industrial fuel use,coal,coal,2015,BC,0.054816673 +NH,industrial fuel use,coal,coal,2020,BC,0.051442317 +NH,industrial fuel use,coal,coal,2025,BC,0.05280003 +NH,industrial fuel use,coal,coal,2030,BC,0.054819383 +NH,industrial fuel use,coal,coal,2035,BC,0.055934389 +NH,industrial fuel use,coal,coal,2040,BC,0.056737391 +NH,industrial fuel use,coal,coal,2045,BC,0.057341111 +NH,industrial fuel use,coal,coal,2050,BC,0.057867944 +NH,industrial fuel use,coal,coal,2055,BC,0.058307588 +NH,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +NH,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +NH,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +NH,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +NH,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +NH,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +NH,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +NH,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +NH,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +NH,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +NH,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +NH,industrial fuel use,gas,gas,2005,BC,0.000879555 +NH,industrial fuel use,gas,gas,2010,BC,0.000594596 +NH,industrial fuel use,gas,gas,2015,BC,0.000780779 +NH,industrial fuel use,gas,gas,2020,BC,0.000758542 +NH,industrial fuel use,gas,gas,2025,BC,0.000791704 +NH,industrial fuel use,gas,gas,2030,BC,0.000829295 +NH,industrial fuel use,gas,gas,2035,BC,0.000745895 +NH,industrial fuel use,gas,gas,2040,BC,0.000739727 +NH,industrial fuel use,gas,gas,2045,BC,0.000759191 +NH,industrial fuel use,gas,gas,2050,BC,0.000728476 +NH,industrial fuel use,gas,gas,2055,BC,0.000688571 +NH,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +NH,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +NH,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +NH,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +NH,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +NH,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +NH,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +NH,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +NH,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +NH,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +NH,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +NH,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +NH,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +NH,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +NH,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +NH,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +NH,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +NH,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +NH,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +NH,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +NH,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +NH,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +NH,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +NH,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +NH,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +NH,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +NH,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +NH,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +NH,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +NH,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +NH,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +NH,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +NH,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +NH,industrial fuel use,coal,coal,2005,OC,0.004608879 +NH,industrial fuel use,coal,coal,2010,OC,0.004949044 +NH,industrial fuel use,coal,coal,2015,OC,0.005291355 +NH,industrial fuel use,coal,coal,2020,OC,0.005047635 +NH,industrial fuel use,coal,coal,2025,OC,0.005240698 +NH,industrial fuel use,coal,coal,2030,OC,0.005398598 +NH,industrial fuel use,coal,coal,2035,OC,0.005483036 +NH,industrial fuel use,coal,coal,2040,OC,0.005583473 +NH,industrial fuel use,coal,coal,2045,OC,0.005638434 +NH,industrial fuel use,coal,coal,2050,OC,0.005723515 +NH,industrial fuel use,coal,coal,2055,OC,0.005777195 +NH,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +NH,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +NH,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +NH,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +NH,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +NH,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +NH,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +NH,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +NH,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +NH,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +NH,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +NH,industrial fuel use,gas,gas,2005,OC,0.000586894 +NH,industrial fuel use,gas,gas,2010,OC,0.000538986 +NH,industrial fuel use,gas,gas,2015,OC,0.000406177 +NH,industrial fuel use,gas,gas,2020,OC,0.000436774 +NH,industrial fuel use,gas,gas,2025,OC,0.000431434 +NH,industrial fuel use,gas,gas,2030,OC,0.000454497 +NH,industrial fuel use,gas,gas,2035,OC,0.0005142 +NH,industrial fuel use,gas,gas,2040,OC,0.000542203 +NH,industrial fuel use,gas,gas,2045,OC,0.0005354 +NH,industrial fuel use,gas,gas,2050,OC,0.000552822 +NH,industrial fuel use,gas,gas,2055,OC,0.000563528 +NH,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +NH,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +NH,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +NH,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +NH,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +NH,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +NH,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +NH,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +NH,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +NH,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +NH,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +NH,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +NH,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +NH,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +NH,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +NH,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +NH,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +NH,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +NH,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +NH,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +NH,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +NH,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +NH,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +NH,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +NH,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +NH,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +NH,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +NH,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +NH,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +NH,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +NH,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +NH,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +NH,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +NH,industrial fuel use,coal,coal,2005,CO2,0.022413751 +NH,industrial fuel use,coal,coal,2010,CO2,0.023247485 +NH,industrial fuel use,coal,coal,2015,CO2,0.023542577 +NH,industrial fuel use,coal,coal,2020,CO2,0.022100946 +NH,industrial fuel use,coal,coal,2025,CO2,0.022682182 +NH,industrial fuel use,coal,coal,2030,CO2,0.023544891 +NH,industrial fuel use,coal,coal,2035,CO2,0.024022124 +NH,industrial fuel use,coal,coal,2040,CO2,0.024371859 +NH,industrial fuel use,coal,coal,2045,CO2,0.024626877 +NH,industrial fuel use,coal,coal,2050,CO2,0.024861999 +NH,industrial fuel use,coal,coal,2055,CO2,0.025047846 +NH,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +NH,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +NH,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +NH,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +NH,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +NH,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +NH,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +NH,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +NH,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +NH,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +NH,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +NH,industrial fuel use,gas,gas,2005,CO2,0.010100215 +NH,industrial fuel use,gas,gas,2010,CO2,0.008735772 +NH,industrial fuel use,gas,gas,2015,CO2,0.008975567 +NH,industrial fuel use,gas,gas,2020,CO2,0.009141549 +NH,industrial fuel use,gas,gas,2025,CO2,0.009319403 +NH,industrial fuel use,gas,gas,2030,CO2,0.009661635 +NH,industrial fuel use,gas,gas,2035,CO2,0.009858394 +NH,industrial fuel use,gas,gas,2040,CO2,0.010090146 +NH,industrial fuel use,gas,gas,2045,CO2,0.010177486 +NH,industrial fuel use,gas,gas,2050,CO2,0.010210503 +NH,industrial fuel use,gas,gas,2055,CO2,0.010168744 +NH,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +NH,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +NH,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +NH,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +NH,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +NH,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +NH,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +NH,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +NH,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +NH,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +NH,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +NH,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +NH,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +NH,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +NH,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +NH,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +NH,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +NH,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +NH,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +NH,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +NH,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +NH,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +NH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +NH,industrial fuel use,biomass,biomass,2005,CO2,0 +NH,industrial fuel use,biomass,biomass,2010,CO2,0 +NH,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +NH,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +NH,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +NH,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +NH,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +NH,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +NH,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +NH,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +NH,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +NH,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +NH,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +NH,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +NH,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +NH,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +NH,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +NH,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +NH,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +NH,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +NH,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +NH,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +NJ,industrial fuel use,coal,coal,2005,NOx,0.261565752 +NJ,industrial fuel use,coal,coal,2010,NOx,0.24128762 +NJ,industrial fuel use,coal,coal,2015,NOx,0.247879608 +NJ,industrial fuel use,coal,coal,2020,NOx,0.234312556 +NJ,industrial fuel use,coal,coal,2025,NOx,0.240398293 +NJ,industrial fuel use,coal,coal,2030,NOx,0.246677964 +NJ,industrial fuel use,coal,coal,2035,NOx,0.250299201 +NJ,industrial fuel use,coal,coal,2040,NOx,0.253554811 +NJ,industrial fuel use,coal,coal,2045,NOx,0.255578056 +NJ,industrial fuel use,coal,coal,2050,NOx,0.258549854 +NJ,industrial fuel use,coal,coal,2055,NOx,0.26014596 +NJ,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +NJ,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +NJ,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +NJ,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +NJ,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +NJ,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +NJ,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +NJ,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +NJ,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +NJ,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +NJ,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +NJ,industrial fuel use,gas,gas,2005,NOx,0.080919016 +NJ,industrial fuel use,gas,gas,2010,NOx,0.044952568 +NJ,industrial fuel use,gas,gas,2015,NOx,0.037239142 +NJ,industrial fuel use,gas,gas,2020,NOx,0.040745965 +NJ,industrial fuel use,gas,gas,2025,NOx,0.042574105 +NJ,industrial fuel use,gas,gas,2030,NOx,0.045347383 +NJ,industrial fuel use,gas,gas,2035,NOx,0.048574619 +NJ,industrial fuel use,gas,gas,2040,NOx,0.050422899 +NJ,industrial fuel use,gas,gas,2045,NOx,0.050680722 +NJ,industrial fuel use,gas,gas,2050,NOx,0.0517343 +NJ,industrial fuel use,gas,gas,2055,NOx,0.052443137 +NJ,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +NJ,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +NJ,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +NJ,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +NJ,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +NJ,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +NJ,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +NJ,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +NJ,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +NJ,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +NJ,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +NJ,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +NJ,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +NJ,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +NJ,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +NJ,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +NJ,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +NJ,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +NJ,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +NJ,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +NJ,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +NJ,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +NJ,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +NJ,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +NJ,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +NJ,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +NJ,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +NJ,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +NJ,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +NJ,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +NJ,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +NJ,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +NJ,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +NJ,industrial fuel use,coal,coal,2005,SO2,0.709862367 +NJ,industrial fuel use,coal,coal,2010,SO2,0.679592789 +NJ,industrial fuel use,coal,coal,2015,SO2,0.590904591 +NJ,industrial fuel use,coal,coal,2020,SO2,0.549595621 +NJ,industrial fuel use,coal,coal,2025,SO2,0.56430149 +NJ,industrial fuel use,coal,coal,2030,SO2,0.576548046 +NJ,industrial fuel use,coal,coal,2035,SO2,0.583595424 +NJ,industrial fuel use,coal,coal,2040,SO2,0.590805881 +NJ,industrial fuel use,coal,coal,2045,SO2,0.596410723 +NJ,industrial fuel use,coal,coal,2050,SO2,0.606154195 +NJ,industrial fuel use,coal,coal,2055,SO2,0.611234923 +NJ,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +NJ,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +NJ,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +NJ,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +NJ,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +NJ,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +NJ,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +NJ,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +NJ,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +NJ,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +NJ,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +NJ,industrial fuel use,gas,gas,2005,SO2,0.000213988 +NJ,industrial fuel use,gas,gas,2010,SO2,0.002761946 +NJ,industrial fuel use,gas,gas,2015,SO2,0.002854723 +NJ,industrial fuel use,gas,gas,2020,SO2,0.002771127 +NJ,industrial fuel use,gas,gas,2025,SO2,0.002798763 +NJ,industrial fuel use,gas,gas,2030,SO2,0.002938075 +NJ,industrial fuel use,gas,gas,2035,SO2,0.003016098 +NJ,industrial fuel use,gas,gas,2040,SO2,0.003118901 +NJ,industrial fuel use,gas,gas,2045,SO2,0.00311325 +NJ,industrial fuel use,gas,gas,2050,SO2,0.003090451 +NJ,industrial fuel use,gas,gas,2055,SO2,0.003025213 +NJ,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +NJ,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +NJ,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +NJ,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +NJ,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +NJ,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +NJ,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +NJ,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +NJ,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +NJ,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +NJ,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +NJ,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +NJ,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +NJ,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +NJ,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +NJ,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +NJ,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +NJ,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +NJ,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +NJ,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +NJ,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +NJ,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +NJ,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +NJ,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +NJ,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +NJ,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +NJ,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +NJ,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +NJ,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +NJ,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +NJ,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +NJ,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +NJ,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +NJ,industrial fuel use,coal,coal,2005,PM10,0.136452905 +NJ,industrial fuel use,coal,coal,2010,PM10,0.093662835 +NJ,industrial fuel use,coal,coal,2015,PM10,0.100887759 +NJ,industrial fuel use,coal,coal,2020,PM10,0.094503476 +NJ,industrial fuel use,coal,coal,2025,PM10,0.09752377 +NJ,industrial fuel use,coal,coal,2030,PM10,0.099823133 +NJ,industrial fuel use,coal,coal,2035,PM10,0.101097535 +NJ,industrial fuel use,coal,coal,2040,PM10,0.102438117 +NJ,industrial fuel use,coal,coal,2045,PM10,0.103553978 +NJ,industrial fuel use,coal,coal,2050,PM10,0.105393893 +NJ,industrial fuel use,coal,coal,2055,PM10,0.106304221 +NJ,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +NJ,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +NJ,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +NJ,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +NJ,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +NJ,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +NJ,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +NJ,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +NJ,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +NJ,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +NJ,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +NJ,industrial fuel use,gas,gas,2005,PM10,0.002144603 +NJ,industrial fuel use,gas,gas,2010,PM10,0.004157892 +NJ,industrial fuel use,gas,gas,2015,PM10,0.004308637 +NJ,industrial fuel use,gas,gas,2020,PM10,0.004261296 +NJ,industrial fuel use,gas,gas,2025,PM10,0.004334357 +NJ,industrial fuel use,gas,gas,2030,PM10,0.00454497 +NJ,industrial fuel use,gas,gas,2035,PM10,0.004581054 +NJ,industrial fuel use,gas,gas,2040,PM10,0.004690204 +NJ,industrial fuel use,gas,gas,2045,PM10,0.004695842 +NJ,industrial fuel use,gas,gas,2050,PM10,0.004649052 +NJ,industrial fuel use,gas,gas,2055,PM10,0.00454824 +NJ,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +NJ,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +NJ,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +NJ,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +NJ,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +NJ,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +NJ,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +NJ,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +NJ,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +NJ,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +NJ,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +NJ,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +NJ,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +NJ,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +NJ,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +NJ,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +NJ,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +NJ,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +NJ,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +NJ,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +NJ,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +NJ,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +NJ,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +NJ,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +NJ,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +NJ,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +NJ,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +NJ,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +NJ,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +NJ,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +NJ,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +NJ,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +NJ,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +NJ,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +NJ,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +NJ,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +NJ,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +NJ,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +NJ,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +NJ,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +NJ,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +NJ,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +NJ,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +NJ,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +NJ,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +NJ,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +NJ,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +NJ,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +NJ,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +NJ,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +NJ,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +NJ,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +NJ,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +NJ,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +NJ,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +NJ,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +NJ,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +NJ,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +NJ,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +NJ,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +NJ,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +NJ,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +NJ,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +NJ,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +NJ,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +NJ,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +NJ,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +NJ,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +NJ,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +NJ,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +NJ,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +NJ,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +NJ,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +NJ,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +NJ,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +NJ,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +NJ,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +NJ,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +NJ,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +NJ,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +NJ,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +NJ,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +NJ,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +NJ,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +NJ,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +NJ,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +NJ,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +NJ,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +NJ,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +NJ,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +NJ,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +NJ,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +NJ,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +NJ,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +NJ,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +NJ,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +NJ,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +NJ,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +NJ,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +NJ,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +NJ,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +NJ,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +NJ,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +NJ,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +NJ,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +NJ,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +NJ,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +NJ,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +NJ,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +NJ,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +NJ,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +NJ,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +NJ,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +NJ,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +NJ,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +NJ,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +NJ,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +NJ,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +NJ,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +NJ,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +NJ,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +NJ,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +NJ,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +NJ,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +NJ,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +NJ,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +NJ,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +NJ,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +NJ,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +NJ,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +NJ,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +NJ,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +NJ,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +NJ,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +NJ,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +NJ,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +NJ,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +NJ,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +NJ,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +NJ,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +NJ,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +NJ,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +NJ,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +NJ,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +NJ,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +NJ,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +NJ,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +NJ,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +NJ,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +NJ,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +NJ,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +NJ,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +NJ,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +NJ,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +NJ,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +NJ,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +NJ,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +NJ,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +NJ,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +NJ,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +NJ,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +NJ,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +NJ,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +NJ,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +NJ,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +NJ,industrial fuel use,coal,coal,2005,CO,0.069434106 +NJ,industrial fuel use,coal,coal,2010,CO,0.07723114 +NJ,industrial fuel use,coal,coal,2015,CO,0.068281575 +NJ,industrial fuel use,coal,coal,2020,CO,0.063753622 +NJ,industrial fuel use,coal,coal,2025,CO,0.065761399 +NJ,industrial fuel use,coal,coal,2030,CO,0.067959367 +NJ,industrial fuel use,coal,coal,2035,CO,0.069173462 +NJ,industrial fuel use,coal,coal,2040,CO,0.070202866 +NJ,industrial fuel use,coal,coal,2045,CO,0.071098148 +NJ,industrial fuel use,coal,coal,2050,CO,0.072063393 +NJ,industrial fuel use,coal,coal,2055,CO,0.072511454 +NJ,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +NJ,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +NJ,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +NJ,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +NJ,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +NJ,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +NJ,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +NJ,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +NJ,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +NJ,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +NJ,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +NJ,industrial fuel use,gas,gas,2005,CO,0.054958784 +NJ,industrial fuel use,gas,gas,2010,CO,0.041119779 +NJ,industrial fuel use,gas,gas,2015,CO,0.037376927 +NJ,industrial fuel use,gas,gas,2020,CO,0.042196984 +NJ,industrial fuel use,gas,gas,2025,CO,0.046340259 +NJ,industrial fuel use,gas,gas,2030,CO,0.051044751 +NJ,industrial fuel use,gas,gas,2035,CO,0.048377476 +NJ,industrial fuel use,gas,gas,2040,CO,0.04844371 +NJ,industrial fuel use,gas,gas,2045,CO,0.049325699 +NJ,industrial fuel use,gas,gas,2050,CO,0.048085677 +NJ,industrial fuel use,gas,gas,2055,CO,0.046506083 +NJ,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +NJ,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +NJ,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +NJ,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +NJ,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +NJ,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +NJ,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +NJ,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +NJ,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +NJ,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +NJ,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +NJ,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +NJ,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +NJ,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +NJ,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +NJ,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +NJ,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +NJ,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +NJ,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +NJ,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +NJ,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +NJ,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +NJ,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +NJ,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +NJ,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +NJ,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +NJ,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +NJ,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +NJ,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +NJ,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +NJ,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +NJ,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +NJ,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +NJ,industrial fuel use,coal,coal,2005,CH4,0.008615911 +NJ,industrial fuel use,coal,coal,2010,CH4,0.007087118 +NJ,industrial fuel use,coal,coal,2015,CH4,0.007645512 +NJ,industrial fuel use,coal,coal,2020,CH4,0.007093206 +NJ,industrial fuel use,coal,coal,2025,CH4,0.007280827 +NJ,industrial fuel use,coal,coal,2030,CH4,0.007426545 +NJ,industrial fuel use,coal,coal,2035,CH4,0.007524098 +NJ,industrial fuel use,coal,coal,2040,CH4,0.007621441 +NJ,industrial fuel use,coal,coal,2045,CH4,0.007691307 +NJ,industrial fuel use,coal,coal,2050,CH4,0.007801358 +NJ,industrial fuel use,coal,coal,2055,CH4,0.007871907 +NJ,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +NJ,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +NJ,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +NJ,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +NJ,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +NJ,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +NJ,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +NJ,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +NJ,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +NJ,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +NJ,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +NJ,industrial fuel use,gas,gas,2005,CH4,0.002575726 +NJ,industrial fuel use,gas,gas,2010,CH4,0.0036902 +NJ,industrial fuel use,gas,gas,2015,CH4,0.001847174 +NJ,industrial fuel use,gas,gas,2020,CH4,0.002575374 +NJ,industrial fuel use,gas,gas,2025,CH4,0.002470739 +NJ,industrial fuel use,gas,gas,2030,CH4,0.002514812 +NJ,industrial fuel use,gas,gas,2035,CH4,0.004402202 +NJ,industrial fuel use,gas,gas,2040,CH4,0.005194877 +NJ,industrial fuel use,gas,gas,2045,CH4,0.005264291 +NJ,industrial fuel use,gas,gas,2050,CH4,0.006086388 +NJ,industrial fuel use,gas,gas,2055,CH4,0.006850703 +NJ,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +NJ,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +NJ,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +NJ,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +NJ,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +NJ,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +NJ,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +NJ,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +NJ,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +NJ,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +NJ,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +NJ,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +NJ,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +NJ,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +NJ,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +NJ,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +NJ,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +NJ,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +NJ,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +NJ,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +NJ,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +NJ,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +NJ,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +NJ,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +NJ,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +NJ,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +NJ,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +NJ,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +NJ,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +NJ,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +NJ,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +NJ,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +NJ,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +NJ,industrial fuel use,coal,coal,2005,N2O,0.002945881 +NJ,industrial fuel use,coal,coal,2010,N2O,0.004699422 +NJ,industrial fuel use,coal,coal,2015,N2O,0.003718249 +NJ,industrial fuel use,coal,coal,2020,N2O,0.003503987 +NJ,industrial fuel use,coal,coal,2025,N2O,0.003902448 +NJ,industrial fuel use,coal,coal,2030,N2O,0.005231917 +NJ,industrial fuel use,coal,coal,2035,N2O,0.005844861 +NJ,industrial fuel use,coal,coal,2040,N2O,0.006123209 +NJ,industrial fuel use,coal,coal,2045,N2O,0.006493024 +NJ,industrial fuel use,coal,coal,2050,N2O,0.00643187 +NJ,industrial fuel use,coal,coal,2055,N2O,0.006580646 +NJ,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +NJ,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +NJ,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +NJ,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +NJ,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +NJ,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +NJ,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +NJ,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +NJ,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +NJ,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +NJ,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +NJ,industrial fuel use,gas,gas,2005,N2O,0.000509795 +NJ,industrial fuel use,gas,gas,2010,N2O,0.000459136 +NJ,industrial fuel use,gas,gas,2015,N2O,0.000457847 +NJ,industrial fuel use,gas,gas,2020,N2O,0.000469807 +NJ,industrial fuel use,gas,gas,2025,N2O,0.0004748 +NJ,industrial fuel use,gas,gas,2030,N2O,0.000493269 +NJ,industrial fuel use,gas,gas,2035,N2O,0.0005142 +NJ,industrial fuel use,gas,gas,2040,N2O,0.000525413 +NJ,industrial fuel use,gas,gas,2045,N2O,0.000530678 +NJ,industrial fuel use,gas,gas,2050,N2O,0.000534097 +NJ,industrial fuel use,gas,gas,2055,N2O,0.000535185 +NJ,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +NJ,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +NJ,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +NJ,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +NJ,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +NJ,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +NJ,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +NJ,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +NJ,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +NJ,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +NJ,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +NJ,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +NJ,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +NJ,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +NJ,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +NJ,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +NJ,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +NJ,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +NJ,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +NJ,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +NJ,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +NJ,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +NJ,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +NJ,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +NJ,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +NJ,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +NJ,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +NJ,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +NJ,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +NJ,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +NJ,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +NJ,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +NJ,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +NJ,industrial fuel use,coal,coal,2005,BC,0.052178527 +NJ,industrial fuel use,coal,coal,2010,BC,0.054113893 +NJ,industrial fuel use,coal,coal,2015,BC,0.054816673 +NJ,industrial fuel use,coal,coal,2020,BC,0.051442317 +NJ,industrial fuel use,coal,coal,2025,BC,0.05280003 +NJ,industrial fuel use,coal,coal,2030,BC,0.054819383 +NJ,industrial fuel use,coal,coal,2035,BC,0.055934389 +NJ,industrial fuel use,coal,coal,2040,BC,0.056737391 +NJ,industrial fuel use,coal,coal,2045,BC,0.057341111 +NJ,industrial fuel use,coal,coal,2050,BC,0.057867944 +NJ,industrial fuel use,coal,coal,2055,BC,0.058307588 +NJ,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +NJ,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +NJ,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +NJ,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +NJ,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +NJ,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +NJ,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +NJ,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +NJ,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +NJ,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +NJ,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +NJ,industrial fuel use,gas,gas,2005,BC,0.000879555 +NJ,industrial fuel use,gas,gas,2010,BC,0.000594596 +NJ,industrial fuel use,gas,gas,2015,BC,0.000780779 +NJ,industrial fuel use,gas,gas,2020,BC,0.000758542 +NJ,industrial fuel use,gas,gas,2025,BC,0.000791704 +NJ,industrial fuel use,gas,gas,2030,BC,0.000829295 +NJ,industrial fuel use,gas,gas,2035,BC,0.000745895 +NJ,industrial fuel use,gas,gas,2040,BC,0.000739727 +NJ,industrial fuel use,gas,gas,2045,BC,0.000759191 +NJ,industrial fuel use,gas,gas,2050,BC,0.000728476 +NJ,industrial fuel use,gas,gas,2055,BC,0.000688571 +NJ,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +NJ,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +NJ,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +NJ,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +NJ,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +NJ,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +NJ,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +NJ,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +NJ,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +NJ,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +NJ,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +NJ,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +NJ,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +NJ,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +NJ,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +NJ,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +NJ,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +NJ,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +NJ,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +NJ,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +NJ,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +NJ,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +NJ,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +NJ,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +NJ,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +NJ,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +NJ,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +NJ,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +NJ,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +NJ,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +NJ,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +NJ,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +NJ,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +NJ,industrial fuel use,coal,coal,2005,OC,0.004608879 +NJ,industrial fuel use,coal,coal,2010,OC,0.004949044 +NJ,industrial fuel use,coal,coal,2015,OC,0.005291355 +NJ,industrial fuel use,coal,coal,2020,OC,0.005047635 +NJ,industrial fuel use,coal,coal,2025,OC,0.005240698 +NJ,industrial fuel use,coal,coal,2030,OC,0.005398598 +NJ,industrial fuel use,coal,coal,2035,OC,0.005483036 +NJ,industrial fuel use,coal,coal,2040,OC,0.005583473 +NJ,industrial fuel use,coal,coal,2045,OC,0.005638434 +NJ,industrial fuel use,coal,coal,2050,OC,0.005723515 +NJ,industrial fuel use,coal,coal,2055,OC,0.005777195 +NJ,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +NJ,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +NJ,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +NJ,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +NJ,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +NJ,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +NJ,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +NJ,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +NJ,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +NJ,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +NJ,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +NJ,industrial fuel use,gas,gas,2005,OC,0.000586894 +NJ,industrial fuel use,gas,gas,2010,OC,0.000538986 +NJ,industrial fuel use,gas,gas,2015,OC,0.000406177 +NJ,industrial fuel use,gas,gas,2020,OC,0.000436774 +NJ,industrial fuel use,gas,gas,2025,OC,0.000431434 +NJ,industrial fuel use,gas,gas,2030,OC,0.000454497 +NJ,industrial fuel use,gas,gas,2035,OC,0.0005142 +NJ,industrial fuel use,gas,gas,2040,OC,0.000542203 +NJ,industrial fuel use,gas,gas,2045,OC,0.0005354 +NJ,industrial fuel use,gas,gas,2050,OC,0.000552822 +NJ,industrial fuel use,gas,gas,2055,OC,0.000563528 +NJ,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +NJ,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +NJ,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +NJ,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +NJ,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +NJ,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +NJ,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +NJ,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +NJ,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +NJ,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +NJ,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +NJ,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +NJ,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +NJ,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +NJ,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +NJ,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +NJ,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +NJ,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +NJ,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +NJ,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +NJ,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +NJ,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +NJ,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +NJ,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +NJ,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +NJ,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +NJ,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +NJ,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +NJ,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +NJ,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +NJ,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +NJ,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +NJ,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +NJ,industrial fuel use,coal,coal,2005,CO2,0.022413751 +NJ,industrial fuel use,coal,coal,2010,CO2,0.023247485 +NJ,industrial fuel use,coal,coal,2015,CO2,0.023542577 +NJ,industrial fuel use,coal,coal,2020,CO2,0.022100946 +NJ,industrial fuel use,coal,coal,2025,CO2,0.022682182 +NJ,industrial fuel use,coal,coal,2030,CO2,0.023544891 +NJ,industrial fuel use,coal,coal,2035,CO2,0.024022124 +NJ,industrial fuel use,coal,coal,2040,CO2,0.024371859 +NJ,industrial fuel use,coal,coal,2045,CO2,0.024626877 +NJ,industrial fuel use,coal,coal,2050,CO2,0.024861999 +NJ,industrial fuel use,coal,coal,2055,CO2,0.025047846 +NJ,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +NJ,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +NJ,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +NJ,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +NJ,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +NJ,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +NJ,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +NJ,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +NJ,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +NJ,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +NJ,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +NJ,industrial fuel use,gas,gas,2005,CO2,0.010100215 +NJ,industrial fuel use,gas,gas,2010,CO2,0.008735772 +NJ,industrial fuel use,gas,gas,2015,CO2,0.008975567 +NJ,industrial fuel use,gas,gas,2020,CO2,0.009141549 +NJ,industrial fuel use,gas,gas,2025,CO2,0.009319403 +NJ,industrial fuel use,gas,gas,2030,CO2,0.009661635 +NJ,industrial fuel use,gas,gas,2035,CO2,0.009858394 +NJ,industrial fuel use,gas,gas,2040,CO2,0.010090146 +NJ,industrial fuel use,gas,gas,2045,CO2,0.010177486 +NJ,industrial fuel use,gas,gas,2050,CO2,0.010210503 +NJ,industrial fuel use,gas,gas,2055,CO2,0.010168744 +NJ,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +NJ,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +NJ,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +NJ,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +NJ,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +NJ,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +NJ,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +NJ,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +NJ,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +NJ,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +NJ,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +NJ,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +NJ,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +NJ,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +NJ,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +NJ,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +NJ,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +NJ,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +NJ,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +NJ,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +NJ,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +NJ,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +NJ,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +NJ,industrial fuel use,biomass,biomass,2005,CO2,0 +NJ,industrial fuel use,biomass,biomass,2010,CO2,0 +NJ,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +NJ,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +NJ,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +NJ,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +NJ,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +NJ,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +NJ,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +NJ,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +NJ,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +NJ,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +NJ,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +NJ,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +NJ,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +NJ,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +NJ,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +NJ,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +NJ,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +NJ,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +NJ,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +NJ,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +NM,industrial fuel use,coal,coal,2005,NOx,0.261565752 +NM,industrial fuel use,coal,coal,2010,NOx,0.24128762 +NM,industrial fuel use,coal,coal,2015,NOx,0.247879608 +NM,industrial fuel use,coal,coal,2020,NOx,0.234312556 +NM,industrial fuel use,coal,coal,2025,NOx,0.240398293 +NM,industrial fuel use,coal,coal,2030,NOx,0.246677964 +NM,industrial fuel use,coal,coal,2035,NOx,0.250299201 +NM,industrial fuel use,coal,coal,2040,NOx,0.253554811 +NM,industrial fuel use,coal,coal,2045,NOx,0.255578056 +NM,industrial fuel use,coal,coal,2050,NOx,0.258549854 +NM,industrial fuel use,coal,coal,2055,NOx,0.26014596 +NM,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +NM,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +NM,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +NM,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +NM,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +NM,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +NM,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +NM,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +NM,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +NM,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +NM,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +NM,industrial fuel use,gas,gas,2005,NOx,0.080919016 +NM,industrial fuel use,gas,gas,2010,NOx,0.044952568 +NM,industrial fuel use,gas,gas,2015,NOx,0.037239142 +NM,industrial fuel use,gas,gas,2020,NOx,0.040745965 +NM,industrial fuel use,gas,gas,2025,NOx,0.042574105 +NM,industrial fuel use,gas,gas,2030,NOx,0.045347383 +NM,industrial fuel use,gas,gas,2035,NOx,0.048574619 +NM,industrial fuel use,gas,gas,2040,NOx,0.050422899 +NM,industrial fuel use,gas,gas,2045,NOx,0.050680722 +NM,industrial fuel use,gas,gas,2050,NOx,0.0517343 +NM,industrial fuel use,gas,gas,2055,NOx,0.052443137 +NM,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +NM,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +NM,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +NM,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +NM,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +NM,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +NM,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +NM,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +NM,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +NM,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +NM,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +NM,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +NM,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +NM,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +NM,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +NM,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +NM,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +NM,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +NM,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +NM,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +NM,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +NM,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +NM,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +NM,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +NM,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +NM,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +NM,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +NM,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +NM,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +NM,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +NM,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +NM,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +NM,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +NM,industrial fuel use,coal,coal,2005,SO2,0.709862367 +NM,industrial fuel use,coal,coal,2010,SO2,0.679592789 +NM,industrial fuel use,coal,coal,2015,SO2,0.590904591 +NM,industrial fuel use,coal,coal,2020,SO2,0.549595621 +NM,industrial fuel use,coal,coal,2025,SO2,0.56430149 +NM,industrial fuel use,coal,coal,2030,SO2,0.576548046 +NM,industrial fuel use,coal,coal,2035,SO2,0.583595424 +NM,industrial fuel use,coal,coal,2040,SO2,0.590805881 +NM,industrial fuel use,coal,coal,2045,SO2,0.596410723 +NM,industrial fuel use,coal,coal,2050,SO2,0.606154195 +NM,industrial fuel use,coal,coal,2055,SO2,0.611234923 +NM,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +NM,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +NM,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +NM,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +NM,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +NM,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +NM,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +NM,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +NM,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +NM,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +NM,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +NM,industrial fuel use,gas,gas,2005,SO2,0.000213988 +NM,industrial fuel use,gas,gas,2010,SO2,0.002761946 +NM,industrial fuel use,gas,gas,2015,SO2,0.002854723 +NM,industrial fuel use,gas,gas,2020,SO2,0.002771127 +NM,industrial fuel use,gas,gas,2025,SO2,0.002798763 +NM,industrial fuel use,gas,gas,2030,SO2,0.002938075 +NM,industrial fuel use,gas,gas,2035,SO2,0.003016098 +NM,industrial fuel use,gas,gas,2040,SO2,0.003118901 +NM,industrial fuel use,gas,gas,2045,SO2,0.00311325 +NM,industrial fuel use,gas,gas,2050,SO2,0.003090451 +NM,industrial fuel use,gas,gas,2055,SO2,0.003025213 +NM,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +NM,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +NM,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +NM,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +NM,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +NM,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +NM,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +NM,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +NM,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +NM,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +NM,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +NM,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +NM,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +NM,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +NM,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +NM,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +NM,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +NM,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +NM,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +NM,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +NM,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +NM,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +NM,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +NM,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +NM,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +NM,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +NM,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +NM,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +NM,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +NM,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +NM,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +NM,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +NM,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +NM,industrial fuel use,coal,coal,2005,PM10,0.136452905 +NM,industrial fuel use,coal,coal,2010,PM10,0.093662835 +NM,industrial fuel use,coal,coal,2015,PM10,0.100887759 +NM,industrial fuel use,coal,coal,2020,PM10,0.094503476 +NM,industrial fuel use,coal,coal,2025,PM10,0.09752377 +NM,industrial fuel use,coal,coal,2030,PM10,0.099823133 +NM,industrial fuel use,coal,coal,2035,PM10,0.101097535 +NM,industrial fuel use,coal,coal,2040,PM10,0.102438117 +NM,industrial fuel use,coal,coal,2045,PM10,0.103553978 +NM,industrial fuel use,coal,coal,2050,PM10,0.105393893 +NM,industrial fuel use,coal,coal,2055,PM10,0.106304221 +NM,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +NM,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +NM,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +NM,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +NM,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +NM,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +NM,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +NM,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +NM,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +NM,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +NM,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +NM,industrial fuel use,gas,gas,2005,PM10,0.002144603 +NM,industrial fuel use,gas,gas,2010,PM10,0.004157892 +NM,industrial fuel use,gas,gas,2015,PM10,0.004308637 +NM,industrial fuel use,gas,gas,2020,PM10,0.004261296 +NM,industrial fuel use,gas,gas,2025,PM10,0.004334357 +NM,industrial fuel use,gas,gas,2030,PM10,0.00454497 +NM,industrial fuel use,gas,gas,2035,PM10,0.004581054 +NM,industrial fuel use,gas,gas,2040,PM10,0.004690204 +NM,industrial fuel use,gas,gas,2045,PM10,0.004695842 +NM,industrial fuel use,gas,gas,2050,PM10,0.004649052 +NM,industrial fuel use,gas,gas,2055,PM10,0.00454824 +NM,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +NM,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +NM,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +NM,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +NM,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +NM,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +NM,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +NM,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +NM,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +NM,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +NM,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +NM,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +NM,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +NM,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +NM,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +NM,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +NM,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +NM,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +NM,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +NM,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +NM,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +NM,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +NM,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +NM,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +NM,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +NM,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +NM,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +NM,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +NM,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +NM,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +NM,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +NM,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +NM,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +NM,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +NM,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +NM,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +NM,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +NM,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +NM,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +NM,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +NM,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +NM,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +NM,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +NM,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +NM,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +NM,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +NM,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +NM,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +NM,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +NM,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +NM,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +NM,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +NM,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +NM,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +NM,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +NM,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +NM,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +NM,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +NM,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +NM,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +NM,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +NM,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +NM,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +NM,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +NM,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +NM,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +NM,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +NM,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +NM,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +NM,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +NM,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +NM,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +NM,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +NM,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +NM,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +NM,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +NM,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +NM,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +NM,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +NM,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +NM,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +NM,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +NM,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +NM,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +NM,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +NM,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +NM,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +NM,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +NM,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +NM,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +NM,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +NM,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +NM,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +NM,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +NM,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +NM,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +NM,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +NM,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +NM,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +NM,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +NM,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +NM,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +NM,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +NM,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +NM,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +NM,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +NM,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +NM,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +NM,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +NM,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +NM,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +NM,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +NM,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +NM,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +NM,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +NM,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +NM,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +NM,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +NM,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +NM,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +NM,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +NM,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +NM,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +NM,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +NM,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +NM,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +NM,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +NM,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +NM,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +NM,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +NM,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +NM,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +NM,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +NM,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +NM,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +NM,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +NM,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +NM,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +NM,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +NM,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +NM,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +NM,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +NM,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +NM,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +NM,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +NM,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +NM,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +NM,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +NM,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +NM,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +NM,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +NM,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +NM,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +NM,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +NM,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +NM,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +NM,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +NM,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +NM,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +NM,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +NM,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +NM,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +NM,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +NM,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +NM,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +NM,industrial fuel use,coal,coal,2005,CO,0.069434106 +NM,industrial fuel use,coal,coal,2010,CO,0.07723114 +NM,industrial fuel use,coal,coal,2015,CO,0.068281575 +NM,industrial fuel use,coal,coal,2020,CO,0.063753622 +NM,industrial fuel use,coal,coal,2025,CO,0.065761399 +NM,industrial fuel use,coal,coal,2030,CO,0.067959367 +NM,industrial fuel use,coal,coal,2035,CO,0.069173462 +NM,industrial fuel use,coal,coal,2040,CO,0.070202866 +NM,industrial fuel use,coal,coal,2045,CO,0.071098148 +NM,industrial fuel use,coal,coal,2050,CO,0.072063393 +NM,industrial fuel use,coal,coal,2055,CO,0.072511454 +NM,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +NM,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +NM,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +NM,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +NM,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +NM,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +NM,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +NM,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +NM,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +NM,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +NM,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +NM,industrial fuel use,gas,gas,2005,CO,0.054958784 +NM,industrial fuel use,gas,gas,2010,CO,0.041119779 +NM,industrial fuel use,gas,gas,2015,CO,0.037376927 +NM,industrial fuel use,gas,gas,2020,CO,0.042196984 +NM,industrial fuel use,gas,gas,2025,CO,0.046340259 +NM,industrial fuel use,gas,gas,2030,CO,0.051044751 +NM,industrial fuel use,gas,gas,2035,CO,0.048377476 +NM,industrial fuel use,gas,gas,2040,CO,0.04844371 +NM,industrial fuel use,gas,gas,2045,CO,0.049325699 +NM,industrial fuel use,gas,gas,2050,CO,0.048085677 +NM,industrial fuel use,gas,gas,2055,CO,0.046506083 +NM,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +NM,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +NM,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +NM,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +NM,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +NM,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +NM,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +NM,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +NM,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +NM,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +NM,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +NM,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +NM,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +NM,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +NM,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +NM,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +NM,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +NM,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +NM,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +NM,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +NM,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +NM,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +NM,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +NM,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +NM,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +NM,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +NM,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +NM,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +NM,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +NM,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +NM,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +NM,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +NM,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +NM,industrial fuel use,coal,coal,2005,CH4,0.008615911 +NM,industrial fuel use,coal,coal,2010,CH4,0.007087118 +NM,industrial fuel use,coal,coal,2015,CH4,0.007645512 +NM,industrial fuel use,coal,coal,2020,CH4,0.007093206 +NM,industrial fuel use,coal,coal,2025,CH4,0.007280827 +NM,industrial fuel use,coal,coal,2030,CH4,0.007426545 +NM,industrial fuel use,coal,coal,2035,CH4,0.007524098 +NM,industrial fuel use,coal,coal,2040,CH4,0.007621441 +NM,industrial fuel use,coal,coal,2045,CH4,0.007691307 +NM,industrial fuel use,coal,coal,2050,CH4,0.007801358 +NM,industrial fuel use,coal,coal,2055,CH4,0.007871907 +NM,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +NM,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +NM,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +NM,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +NM,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +NM,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +NM,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +NM,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +NM,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +NM,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +NM,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +NM,industrial fuel use,gas,gas,2005,CH4,0.002575726 +NM,industrial fuel use,gas,gas,2010,CH4,0.0036902 +NM,industrial fuel use,gas,gas,2015,CH4,0.001847174 +NM,industrial fuel use,gas,gas,2020,CH4,0.002575374 +NM,industrial fuel use,gas,gas,2025,CH4,0.002470739 +NM,industrial fuel use,gas,gas,2030,CH4,0.002514812 +NM,industrial fuel use,gas,gas,2035,CH4,0.004402202 +NM,industrial fuel use,gas,gas,2040,CH4,0.005194877 +NM,industrial fuel use,gas,gas,2045,CH4,0.005264291 +NM,industrial fuel use,gas,gas,2050,CH4,0.006086388 +NM,industrial fuel use,gas,gas,2055,CH4,0.006850703 +NM,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +NM,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +NM,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +NM,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +NM,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +NM,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +NM,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +NM,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +NM,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +NM,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +NM,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +NM,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +NM,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +NM,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +NM,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +NM,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +NM,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +NM,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +NM,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +NM,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +NM,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +NM,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +NM,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +NM,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +NM,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +NM,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +NM,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +NM,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +NM,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +NM,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +NM,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +NM,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +NM,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +NM,industrial fuel use,coal,coal,2005,N2O,0.002945881 +NM,industrial fuel use,coal,coal,2010,N2O,0.004699422 +NM,industrial fuel use,coal,coal,2015,N2O,0.003718249 +NM,industrial fuel use,coal,coal,2020,N2O,0.003503987 +NM,industrial fuel use,coal,coal,2025,N2O,0.003902448 +NM,industrial fuel use,coal,coal,2030,N2O,0.005231917 +NM,industrial fuel use,coal,coal,2035,N2O,0.005844861 +NM,industrial fuel use,coal,coal,2040,N2O,0.006123209 +NM,industrial fuel use,coal,coal,2045,N2O,0.006493024 +NM,industrial fuel use,coal,coal,2050,N2O,0.00643187 +NM,industrial fuel use,coal,coal,2055,N2O,0.006580646 +NM,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +NM,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +NM,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +NM,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +NM,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +NM,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +NM,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +NM,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +NM,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +NM,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +NM,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +NM,industrial fuel use,gas,gas,2005,N2O,0.000509795 +NM,industrial fuel use,gas,gas,2010,N2O,0.000459136 +NM,industrial fuel use,gas,gas,2015,N2O,0.000457847 +NM,industrial fuel use,gas,gas,2020,N2O,0.000469807 +NM,industrial fuel use,gas,gas,2025,N2O,0.0004748 +NM,industrial fuel use,gas,gas,2030,N2O,0.000493269 +NM,industrial fuel use,gas,gas,2035,N2O,0.0005142 +NM,industrial fuel use,gas,gas,2040,N2O,0.000525413 +NM,industrial fuel use,gas,gas,2045,N2O,0.000530678 +NM,industrial fuel use,gas,gas,2050,N2O,0.000534097 +NM,industrial fuel use,gas,gas,2055,N2O,0.000535185 +NM,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +NM,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +NM,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +NM,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +NM,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +NM,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +NM,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +NM,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +NM,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +NM,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +NM,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +NM,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +NM,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +NM,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +NM,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +NM,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +NM,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +NM,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +NM,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +NM,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +NM,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +NM,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +NM,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +NM,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +NM,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +NM,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +NM,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +NM,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +NM,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +NM,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +NM,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +NM,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +NM,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +NM,industrial fuel use,coal,coal,2005,BC,0.052178527 +NM,industrial fuel use,coal,coal,2010,BC,0.054113893 +NM,industrial fuel use,coal,coal,2015,BC,0.054816673 +NM,industrial fuel use,coal,coal,2020,BC,0.051442317 +NM,industrial fuel use,coal,coal,2025,BC,0.05280003 +NM,industrial fuel use,coal,coal,2030,BC,0.054819383 +NM,industrial fuel use,coal,coal,2035,BC,0.055934389 +NM,industrial fuel use,coal,coal,2040,BC,0.056737391 +NM,industrial fuel use,coal,coal,2045,BC,0.057341111 +NM,industrial fuel use,coal,coal,2050,BC,0.057867944 +NM,industrial fuel use,coal,coal,2055,BC,0.058307588 +NM,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +NM,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +NM,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +NM,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +NM,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +NM,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +NM,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +NM,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +NM,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +NM,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +NM,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +NM,industrial fuel use,gas,gas,2005,BC,0.000879555 +NM,industrial fuel use,gas,gas,2010,BC,0.000594596 +NM,industrial fuel use,gas,gas,2015,BC,0.000780779 +NM,industrial fuel use,gas,gas,2020,BC,0.000758542 +NM,industrial fuel use,gas,gas,2025,BC,0.000791704 +NM,industrial fuel use,gas,gas,2030,BC,0.000829295 +NM,industrial fuel use,gas,gas,2035,BC,0.000745895 +NM,industrial fuel use,gas,gas,2040,BC,0.000739727 +NM,industrial fuel use,gas,gas,2045,BC,0.000759191 +NM,industrial fuel use,gas,gas,2050,BC,0.000728476 +NM,industrial fuel use,gas,gas,2055,BC,0.000688571 +NM,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +NM,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +NM,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +NM,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +NM,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +NM,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +NM,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +NM,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +NM,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +NM,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +NM,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +NM,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +NM,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +NM,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +NM,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +NM,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +NM,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +NM,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +NM,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +NM,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +NM,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +NM,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +NM,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +NM,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +NM,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +NM,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +NM,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +NM,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +NM,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +NM,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +NM,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +NM,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +NM,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +NM,industrial fuel use,coal,coal,2005,OC,0.004608879 +NM,industrial fuel use,coal,coal,2010,OC,0.004949044 +NM,industrial fuel use,coal,coal,2015,OC,0.005291355 +NM,industrial fuel use,coal,coal,2020,OC,0.005047635 +NM,industrial fuel use,coal,coal,2025,OC,0.005240698 +NM,industrial fuel use,coal,coal,2030,OC,0.005398598 +NM,industrial fuel use,coal,coal,2035,OC,0.005483036 +NM,industrial fuel use,coal,coal,2040,OC,0.005583473 +NM,industrial fuel use,coal,coal,2045,OC,0.005638434 +NM,industrial fuel use,coal,coal,2050,OC,0.005723515 +NM,industrial fuel use,coal,coal,2055,OC,0.005777195 +NM,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +NM,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +NM,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +NM,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +NM,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +NM,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +NM,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +NM,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +NM,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +NM,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +NM,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +NM,industrial fuel use,gas,gas,2005,OC,0.000586894 +NM,industrial fuel use,gas,gas,2010,OC,0.000538986 +NM,industrial fuel use,gas,gas,2015,OC,0.000406177 +NM,industrial fuel use,gas,gas,2020,OC,0.000436774 +NM,industrial fuel use,gas,gas,2025,OC,0.000431434 +NM,industrial fuel use,gas,gas,2030,OC,0.000454497 +NM,industrial fuel use,gas,gas,2035,OC,0.0005142 +NM,industrial fuel use,gas,gas,2040,OC,0.000542203 +NM,industrial fuel use,gas,gas,2045,OC,0.0005354 +NM,industrial fuel use,gas,gas,2050,OC,0.000552822 +NM,industrial fuel use,gas,gas,2055,OC,0.000563528 +NM,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +NM,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +NM,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +NM,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +NM,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +NM,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +NM,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +NM,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +NM,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +NM,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +NM,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +NM,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +NM,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +NM,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +NM,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +NM,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +NM,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +NM,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +NM,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +NM,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +NM,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +NM,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +NM,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +NM,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +NM,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +NM,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +NM,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +NM,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +NM,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +NM,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +NM,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +NM,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +NM,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +NM,industrial fuel use,coal,coal,2005,CO2,0.022413751 +NM,industrial fuel use,coal,coal,2010,CO2,0.023247485 +NM,industrial fuel use,coal,coal,2015,CO2,0.023542577 +NM,industrial fuel use,coal,coal,2020,CO2,0.022100946 +NM,industrial fuel use,coal,coal,2025,CO2,0.022682182 +NM,industrial fuel use,coal,coal,2030,CO2,0.023544891 +NM,industrial fuel use,coal,coal,2035,CO2,0.024022124 +NM,industrial fuel use,coal,coal,2040,CO2,0.024371859 +NM,industrial fuel use,coal,coal,2045,CO2,0.024626877 +NM,industrial fuel use,coal,coal,2050,CO2,0.024861999 +NM,industrial fuel use,coal,coal,2055,CO2,0.025047846 +NM,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +NM,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +NM,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +NM,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +NM,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +NM,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +NM,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +NM,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +NM,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +NM,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +NM,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +NM,industrial fuel use,gas,gas,2005,CO2,0.010100215 +NM,industrial fuel use,gas,gas,2010,CO2,0.008735772 +NM,industrial fuel use,gas,gas,2015,CO2,0.008975567 +NM,industrial fuel use,gas,gas,2020,CO2,0.009141549 +NM,industrial fuel use,gas,gas,2025,CO2,0.009319403 +NM,industrial fuel use,gas,gas,2030,CO2,0.009661635 +NM,industrial fuel use,gas,gas,2035,CO2,0.009858394 +NM,industrial fuel use,gas,gas,2040,CO2,0.010090146 +NM,industrial fuel use,gas,gas,2045,CO2,0.010177486 +NM,industrial fuel use,gas,gas,2050,CO2,0.010210503 +NM,industrial fuel use,gas,gas,2055,CO2,0.010168744 +NM,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +NM,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +NM,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +NM,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +NM,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +NM,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +NM,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +NM,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +NM,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +NM,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +NM,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +NM,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +NM,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +NM,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +NM,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +NM,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +NM,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +NM,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +NM,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +NM,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +NM,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +NM,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +NM,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +NM,industrial fuel use,biomass,biomass,2005,CO2,0 +NM,industrial fuel use,biomass,biomass,2010,CO2,0 +NM,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +NM,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +NM,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +NM,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +NM,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +NM,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +NM,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +NM,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +NM,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +NM,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +NM,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +NM,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +NM,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +NM,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +NM,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +NM,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +NM,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +NM,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +NM,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +NM,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +NV,industrial fuel use,coal,coal,2005,NOx,0.261565752 +NV,industrial fuel use,coal,coal,2010,NOx,0.24128762 +NV,industrial fuel use,coal,coal,2015,NOx,0.247879608 +NV,industrial fuel use,coal,coal,2020,NOx,0.234312556 +NV,industrial fuel use,coal,coal,2025,NOx,0.240398293 +NV,industrial fuel use,coal,coal,2030,NOx,0.246677964 +NV,industrial fuel use,coal,coal,2035,NOx,0.250299201 +NV,industrial fuel use,coal,coal,2040,NOx,0.253554811 +NV,industrial fuel use,coal,coal,2045,NOx,0.255578056 +NV,industrial fuel use,coal,coal,2050,NOx,0.258549854 +NV,industrial fuel use,coal,coal,2055,NOx,0.26014596 +NV,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +NV,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +NV,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +NV,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +NV,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +NV,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +NV,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +NV,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +NV,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +NV,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +NV,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +NV,industrial fuel use,gas,gas,2005,NOx,0.080919016 +NV,industrial fuel use,gas,gas,2010,NOx,0.044952568 +NV,industrial fuel use,gas,gas,2015,NOx,0.037239142 +NV,industrial fuel use,gas,gas,2020,NOx,0.040745965 +NV,industrial fuel use,gas,gas,2025,NOx,0.042574105 +NV,industrial fuel use,gas,gas,2030,NOx,0.045347383 +NV,industrial fuel use,gas,gas,2035,NOx,0.048574619 +NV,industrial fuel use,gas,gas,2040,NOx,0.050422899 +NV,industrial fuel use,gas,gas,2045,NOx,0.050680722 +NV,industrial fuel use,gas,gas,2050,NOx,0.0517343 +NV,industrial fuel use,gas,gas,2055,NOx,0.052443137 +NV,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +NV,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +NV,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +NV,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +NV,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +NV,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +NV,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +NV,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +NV,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +NV,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +NV,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +NV,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +NV,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +NV,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +NV,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +NV,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +NV,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +NV,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +NV,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +NV,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +NV,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +NV,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +NV,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +NV,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +NV,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +NV,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +NV,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +NV,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +NV,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +NV,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +NV,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +NV,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +NV,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +NV,industrial fuel use,coal,coal,2005,SO2,0.709862367 +NV,industrial fuel use,coal,coal,2010,SO2,0.679592789 +NV,industrial fuel use,coal,coal,2015,SO2,0.590904591 +NV,industrial fuel use,coal,coal,2020,SO2,0.549595621 +NV,industrial fuel use,coal,coal,2025,SO2,0.56430149 +NV,industrial fuel use,coal,coal,2030,SO2,0.576548046 +NV,industrial fuel use,coal,coal,2035,SO2,0.583595424 +NV,industrial fuel use,coal,coal,2040,SO2,0.590805881 +NV,industrial fuel use,coal,coal,2045,SO2,0.596410723 +NV,industrial fuel use,coal,coal,2050,SO2,0.606154195 +NV,industrial fuel use,coal,coal,2055,SO2,0.611234923 +NV,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +NV,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +NV,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +NV,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +NV,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +NV,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +NV,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +NV,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +NV,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +NV,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +NV,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +NV,industrial fuel use,gas,gas,2005,SO2,0.000213988 +NV,industrial fuel use,gas,gas,2010,SO2,0.002761946 +NV,industrial fuel use,gas,gas,2015,SO2,0.002854723 +NV,industrial fuel use,gas,gas,2020,SO2,0.002771127 +NV,industrial fuel use,gas,gas,2025,SO2,0.002798763 +NV,industrial fuel use,gas,gas,2030,SO2,0.002938075 +NV,industrial fuel use,gas,gas,2035,SO2,0.003016098 +NV,industrial fuel use,gas,gas,2040,SO2,0.003118901 +NV,industrial fuel use,gas,gas,2045,SO2,0.00311325 +NV,industrial fuel use,gas,gas,2050,SO2,0.003090451 +NV,industrial fuel use,gas,gas,2055,SO2,0.003025213 +NV,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +NV,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +NV,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +NV,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +NV,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +NV,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +NV,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +NV,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +NV,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +NV,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +NV,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +NV,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +NV,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +NV,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +NV,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +NV,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +NV,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +NV,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +NV,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +NV,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +NV,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +NV,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +NV,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +NV,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +NV,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +NV,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +NV,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +NV,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +NV,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +NV,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +NV,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +NV,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +NV,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +NV,industrial fuel use,coal,coal,2005,PM10,0.136452905 +NV,industrial fuel use,coal,coal,2010,PM10,0.093662835 +NV,industrial fuel use,coal,coal,2015,PM10,0.100887759 +NV,industrial fuel use,coal,coal,2020,PM10,0.094503476 +NV,industrial fuel use,coal,coal,2025,PM10,0.09752377 +NV,industrial fuel use,coal,coal,2030,PM10,0.099823133 +NV,industrial fuel use,coal,coal,2035,PM10,0.101097535 +NV,industrial fuel use,coal,coal,2040,PM10,0.102438117 +NV,industrial fuel use,coal,coal,2045,PM10,0.103553978 +NV,industrial fuel use,coal,coal,2050,PM10,0.105393893 +NV,industrial fuel use,coal,coal,2055,PM10,0.106304221 +NV,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +NV,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +NV,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +NV,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +NV,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +NV,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +NV,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +NV,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +NV,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +NV,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +NV,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +NV,industrial fuel use,gas,gas,2005,PM10,0.002144603 +NV,industrial fuel use,gas,gas,2010,PM10,0.004157892 +NV,industrial fuel use,gas,gas,2015,PM10,0.004308637 +NV,industrial fuel use,gas,gas,2020,PM10,0.004261296 +NV,industrial fuel use,gas,gas,2025,PM10,0.004334357 +NV,industrial fuel use,gas,gas,2030,PM10,0.00454497 +NV,industrial fuel use,gas,gas,2035,PM10,0.004581054 +NV,industrial fuel use,gas,gas,2040,PM10,0.004690204 +NV,industrial fuel use,gas,gas,2045,PM10,0.004695842 +NV,industrial fuel use,gas,gas,2050,PM10,0.004649052 +NV,industrial fuel use,gas,gas,2055,PM10,0.00454824 +NV,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +NV,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +NV,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +NV,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +NV,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +NV,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +NV,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +NV,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +NV,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +NV,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +NV,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +NV,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +NV,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +NV,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +NV,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +NV,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +NV,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +NV,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +NV,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +NV,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +NV,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +NV,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +NV,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +NV,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +NV,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +NV,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +NV,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +NV,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +NV,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +NV,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +NV,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +NV,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +NV,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +NV,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +NV,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +NV,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +NV,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +NV,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +NV,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +NV,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +NV,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +NV,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +NV,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +NV,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +NV,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +NV,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +NV,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +NV,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +NV,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +NV,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +NV,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +NV,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +NV,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +NV,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +NV,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +NV,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +NV,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +NV,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +NV,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +NV,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +NV,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +NV,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +NV,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +NV,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +NV,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +NV,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +NV,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +NV,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +NV,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +NV,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +NV,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +NV,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +NV,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +NV,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +NV,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +NV,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +NV,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +NV,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +NV,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +NV,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +NV,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +NV,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +NV,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +NV,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +NV,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +NV,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +NV,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +NV,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +NV,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +NV,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +NV,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +NV,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +NV,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +NV,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +NV,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +NV,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +NV,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +NV,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +NV,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +NV,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +NV,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +NV,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +NV,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +NV,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +NV,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +NV,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +NV,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +NV,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +NV,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +NV,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +NV,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +NV,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +NV,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +NV,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +NV,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +NV,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +NV,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +NV,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +NV,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +NV,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +NV,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +NV,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +NV,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +NV,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +NV,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +NV,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +NV,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +NV,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +NV,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +NV,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +NV,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +NV,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +NV,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +NV,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +NV,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +NV,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +NV,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +NV,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +NV,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +NV,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +NV,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +NV,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +NV,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +NV,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +NV,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +NV,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +NV,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +NV,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +NV,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +NV,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +NV,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +NV,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +NV,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +NV,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +NV,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +NV,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +NV,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +NV,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +NV,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +NV,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +NV,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +NV,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +NV,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +NV,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +NV,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +NV,industrial fuel use,coal,coal,2005,CO,0.069434106 +NV,industrial fuel use,coal,coal,2010,CO,0.07723114 +NV,industrial fuel use,coal,coal,2015,CO,0.068281575 +NV,industrial fuel use,coal,coal,2020,CO,0.063753622 +NV,industrial fuel use,coal,coal,2025,CO,0.065761399 +NV,industrial fuel use,coal,coal,2030,CO,0.067959367 +NV,industrial fuel use,coal,coal,2035,CO,0.069173462 +NV,industrial fuel use,coal,coal,2040,CO,0.070202866 +NV,industrial fuel use,coal,coal,2045,CO,0.071098148 +NV,industrial fuel use,coal,coal,2050,CO,0.072063393 +NV,industrial fuel use,coal,coal,2055,CO,0.072511454 +NV,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +NV,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +NV,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +NV,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +NV,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +NV,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +NV,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +NV,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +NV,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +NV,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +NV,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +NV,industrial fuel use,gas,gas,2005,CO,0.054958784 +NV,industrial fuel use,gas,gas,2010,CO,0.041119779 +NV,industrial fuel use,gas,gas,2015,CO,0.037376927 +NV,industrial fuel use,gas,gas,2020,CO,0.042196984 +NV,industrial fuel use,gas,gas,2025,CO,0.046340259 +NV,industrial fuel use,gas,gas,2030,CO,0.051044751 +NV,industrial fuel use,gas,gas,2035,CO,0.048377476 +NV,industrial fuel use,gas,gas,2040,CO,0.04844371 +NV,industrial fuel use,gas,gas,2045,CO,0.049325699 +NV,industrial fuel use,gas,gas,2050,CO,0.048085677 +NV,industrial fuel use,gas,gas,2055,CO,0.046506083 +NV,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +NV,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +NV,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +NV,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +NV,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +NV,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +NV,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +NV,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +NV,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +NV,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +NV,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +NV,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +NV,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +NV,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +NV,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +NV,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +NV,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +NV,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +NV,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +NV,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +NV,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +NV,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +NV,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +NV,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +NV,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +NV,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +NV,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +NV,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +NV,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +NV,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +NV,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +NV,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +NV,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +NV,industrial fuel use,coal,coal,2005,CH4,0.008615911 +NV,industrial fuel use,coal,coal,2010,CH4,0.007087118 +NV,industrial fuel use,coal,coal,2015,CH4,0.007645512 +NV,industrial fuel use,coal,coal,2020,CH4,0.007093206 +NV,industrial fuel use,coal,coal,2025,CH4,0.007280827 +NV,industrial fuel use,coal,coal,2030,CH4,0.007426545 +NV,industrial fuel use,coal,coal,2035,CH4,0.007524098 +NV,industrial fuel use,coal,coal,2040,CH4,0.007621441 +NV,industrial fuel use,coal,coal,2045,CH4,0.007691307 +NV,industrial fuel use,coal,coal,2050,CH4,0.007801358 +NV,industrial fuel use,coal,coal,2055,CH4,0.007871907 +NV,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +NV,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +NV,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +NV,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +NV,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +NV,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +NV,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +NV,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +NV,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +NV,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +NV,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +NV,industrial fuel use,gas,gas,2005,CH4,0.002575726 +NV,industrial fuel use,gas,gas,2010,CH4,0.0036902 +NV,industrial fuel use,gas,gas,2015,CH4,0.001847174 +NV,industrial fuel use,gas,gas,2020,CH4,0.002575374 +NV,industrial fuel use,gas,gas,2025,CH4,0.002470739 +NV,industrial fuel use,gas,gas,2030,CH4,0.002514812 +NV,industrial fuel use,gas,gas,2035,CH4,0.004402202 +NV,industrial fuel use,gas,gas,2040,CH4,0.005194877 +NV,industrial fuel use,gas,gas,2045,CH4,0.005264291 +NV,industrial fuel use,gas,gas,2050,CH4,0.006086388 +NV,industrial fuel use,gas,gas,2055,CH4,0.006850703 +NV,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +NV,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +NV,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +NV,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +NV,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +NV,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +NV,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +NV,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +NV,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +NV,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +NV,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +NV,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +NV,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +NV,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +NV,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +NV,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +NV,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +NV,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +NV,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +NV,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +NV,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +NV,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +NV,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +NV,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +NV,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +NV,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +NV,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +NV,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +NV,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +NV,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +NV,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +NV,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +NV,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +NV,industrial fuel use,coal,coal,2005,N2O,0.002945881 +NV,industrial fuel use,coal,coal,2010,N2O,0.004699422 +NV,industrial fuel use,coal,coal,2015,N2O,0.003718249 +NV,industrial fuel use,coal,coal,2020,N2O,0.003503987 +NV,industrial fuel use,coal,coal,2025,N2O,0.003902448 +NV,industrial fuel use,coal,coal,2030,N2O,0.005231917 +NV,industrial fuel use,coal,coal,2035,N2O,0.005844861 +NV,industrial fuel use,coal,coal,2040,N2O,0.006123209 +NV,industrial fuel use,coal,coal,2045,N2O,0.006493024 +NV,industrial fuel use,coal,coal,2050,N2O,0.00643187 +NV,industrial fuel use,coal,coal,2055,N2O,0.006580646 +NV,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +NV,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +NV,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +NV,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +NV,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +NV,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +NV,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +NV,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +NV,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +NV,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +NV,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +NV,industrial fuel use,gas,gas,2005,N2O,0.000509795 +NV,industrial fuel use,gas,gas,2010,N2O,0.000459136 +NV,industrial fuel use,gas,gas,2015,N2O,0.000457847 +NV,industrial fuel use,gas,gas,2020,N2O,0.000469807 +NV,industrial fuel use,gas,gas,2025,N2O,0.0004748 +NV,industrial fuel use,gas,gas,2030,N2O,0.000493269 +NV,industrial fuel use,gas,gas,2035,N2O,0.0005142 +NV,industrial fuel use,gas,gas,2040,N2O,0.000525413 +NV,industrial fuel use,gas,gas,2045,N2O,0.000530678 +NV,industrial fuel use,gas,gas,2050,N2O,0.000534097 +NV,industrial fuel use,gas,gas,2055,N2O,0.000535185 +NV,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +NV,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +NV,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +NV,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +NV,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +NV,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +NV,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +NV,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +NV,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +NV,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +NV,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +NV,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +NV,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +NV,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +NV,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +NV,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +NV,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +NV,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +NV,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +NV,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +NV,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +NV,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +NV,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +NV,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +NV,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +NV,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +NV,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +NV,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +NV,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +NV,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +NV,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +NV,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +NV,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +NV,industrial fuel use,coal,coal,2005,BC,0.052178527 +NV,industrial fuel use,coal,coal,2010,BC,0.054113893 +NV,industrial fuel use,coal,coal,2015,BC,0.054816673 +NV,industrial fuel use,coal,coal,2020,BC,0.051442317 +NV,industrial fuel use,coal,coal,2025,BC,0.05280003 +NV,industrial fuel use,coal,coal,2030,BC,0.054819383 +NV,industrial fuel use,coal,coal,2035,BC,0.055934389 +NV,industrial fuel use,coal,coal,2040,BC,0.056737391 +NV,industrial fuel use,coal,coal,2045,BC,0.057341111 +NV,industrial fuel use,coal,coal,2050,BC,0.057867944 +NV,industrial fuel use,coal,coal,2055,BC,0.058307588 +NV,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +NV,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +NV,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +NV,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +NV,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +NV,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +NV,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +NV,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +NV,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +NV,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +NV,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +NV,industrial fuel use,gas,gas,2005,BC,0.000879555 +NV,industrial fuel use,gas,gas,2010,BC,0.000594596 +NV,industrial fuel use,gas,gas,2015,BC,0.000780779 +NV,industrial fuel use,gas,gas,2020,BC,0.000758542 +NV,industrial fuel use,gas,gas,2025,BC,0.000791704 +NV,industrial fuel use,gas,gas,2030,BC,0.000829295 +NV,industrial fuel use,gas,gas,2035,BC,0.000745895 +NV,industrial fuel use,gas,gas,2040,BC,0.000739727 +NV,industrial fuel use,gas,gas,2045,BC,0.000759191 +NV,industrial fuel use,gas,gas,2050,BC,0.000728476 +NV,industrial fuel use,gas,gas,2055,BC,0.000688571 +NV,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +NV,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +NV,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +NV,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +NV,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +NV,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +NV,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +NV,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +NV,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +NV,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +NV,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +NV,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +NV,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +NV,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +NV,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +NV,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +NV,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +NV,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +NV,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +NV,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +NV,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +NV,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +NV,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +NV,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +NV,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +NV,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +NV,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +NV,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +NV,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +NV,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +NV,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +NV,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +NV,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +NV,industrial fuel use,coal,coal,2005,OC,0.004608879 +NV,industrial fuel use,coal,coal,2010,OC,0.004949044 +NV,industrial fuel use,coal,coal,2015,OC,0.005291355 +NV,industrial fuel use,coal,coal,2020,OC,0.005047635 +NV,industrial fuel use,coal,coal,2025,OC,0.005240698 +NV,industrial fuel use,coal,coal,2030,OC,0.005398598 +NV,industrial fuel use,coal,coal,2035,OC,0.005483036 +NV,industrial fuel use,coal,coal,2040,OC,0.005583473 +NV,industrial fuel use,coal,coal,2045,OC,0.005638434 +NV,industrial fuel use,coal,coal,2050,OC,0.005723515 +NV,industrial fuel use,coal,coal,2055,OC,0.005777195 +NV,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +NV,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +NV,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +NV,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +NV,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +NV,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +NV,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +NV,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +NV,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +NV,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +NV,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +NV,industrial fuel use,gas,gas,2005,OC,0.000586894 +NV,industrial fuel use,gas,gas,2010,OC,0.000538986 +NV,industrial fuel use,gas,gas,2015,OC,0.000406177 +NV,industrial fuel use,gas,gas,2020,OC,0.000436774 +NV,industrial fuel use,gas,gas,2025,OC,0.000431434 +NV,industrial fuel use,gas,gas,2030,OC,0.000454497 +NV,industrial fuel use,gas,gas,2035,OC,0.0005142 +NV,industrial fuel use,gas,gas,2040,OC,0.000542203 +NV,industrial fuel use,gas,gas,2045,OC,0.0005354 +NV,industrial fuel use,gas,gas,2050,OC,0.000552822 +NV,industrial fuel use,gas,gas,2055,OC,0.000563528 +NV,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +NV,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +NV,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +NV,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +NV,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +NV,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +NV,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +NV,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +NV,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +NV,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +NV,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +NV,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +NV,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +NV,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +NV,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +NV,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +NV,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +NV,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +NV,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +NV,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +NV,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +NV,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +NV,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +NV,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +NV,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +NV,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +NV,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +NV,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +NV,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +NV,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +NV,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +NV,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +NV,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +NV,industrial fuel use,coal,coal,2005,CO2,0.022413751 +NV,industrial fuel use,coal,coal,2010,CO2,0.023247485 +NV,industrial fuel use,coal,coal,2015,CO2,0.023542577 +NV,industrial fuel use,coal,coal,2020,CO2,0.022100946 +NV,industrial fuel use,coal,coal,2025,CO2,0.022682182 +NV,industrial fuel use,coal,coal,2030,CO2,0.023544891 +NV,industrial fuel use,coal,coal,2035,CO2,0.024022124 +NV,industrial fuel use,coal,coal,2040,CO2,0.024371859 +NV,industrial fuel use,coal,coal,2045,CO2,0.024626877 +NV,industrial fuel use,coal,coal,2050,CO2,0.024861999 +NV,industrial fuel use,coal,coal,2055,CO2,0.025047846 +NV,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +NV,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +NV,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +NV,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +NV,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +NV,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +NV,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +NV,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +NV,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +NV,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +NV,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +NV,industrial fuel use,gas,gas,2005,CO2,0.010100215 +NV,industrial fuel use,gas,gas,2010,CO2,0.008735772 +NV,industrial fuel use,gas,gas,2015,CO2,0.008975567 +NV,industrial fuel use,gas,gas,2020,CO2,0.009141549 +NV,industrial fuel use,gas,gas,2025,CO2,0.009319403 +NV,industrial fuel use,gas,gas,2030,CO2,0.009661635 +NV,industrial fuel use,gas,gas,2035,CO2,0.009858394 +NV,industrial fuel use,gas,gas,2040,CO2,0.010090146 +NV,industrial fuel use,gas,gas,2045,CO2,0.010177486 +NV,industrial fuel use,gas,gas,2050,CO2,0.010210503 +NV,industrial fuel use,gas,gas,2055,CO2,0.010168744 +NV,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +NV,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +NV,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +NV,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +NV,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +NV,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +NV,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +NV,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +NV,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +NV,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +NV,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +NV,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +NV,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +NV,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +NV,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +NV,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +NV,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +NV,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +NV,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +NV,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +NV,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +NV,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +NV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +NV,industrial fuel use,biomass,biomass,2005,CO2,0 +NV,industrial fuel use,biomass,biomass,2010,CO2,0 +NV,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +NV,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +NV,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +NV,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +NV,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +NV,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +NV,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +NV,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +NV,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +NV,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +NV,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +NV,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +NV,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +NV,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +NV,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +NV,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +NV,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +NV,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +NV,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +NV,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +NY,industrial fuel use,coal,coal,2005,NOx,0.261565752 +NY,industrial fuel use,coal,coal,2010,NOx,0.24128762 +NY,industrial fuel use,coal,coal,2015,NOx,0.247879608 +NY,industrial fuel use,coal,coal,2020,NOx,0.234312556 +NY,industrial fuel use,coal,coal,2025,NOx,0.240398293 +NY,industrial fuel use,coal,coal,2030,NOx,0.246677964 +NY,industrial fuel use,coal,coal,2035,NOx,0.250299201 +NY,industrial fuel use,coal,coal,2040,NOx,0.253554811 +NY,industrial fuel use,coal,coal,2045,NOx,0.255578056 +NY,industrial fuel use,coal,coal,2050,NOx,0.258549854 +NY,industrial fuel use,coal,coal,2055,NOx,0.26014596 +NY,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +NY,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +NY,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +NY,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +NY,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +NY,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +NY,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +NY,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +NY,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +NY,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +NY,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +NY,industrial fuel use,gas,gas,2005,NOx,0.080919016 +NY,industrial fuel use,gas,gas,2010,NOx,0.044952568 +NY,industrial fuel use,gas,gas,2015,NOx,0.037239142 +NY,industrial fuel use,gas,gas,2020,NOx,0.040745965 +NY,industrial fuel use,gas,gas,2025,NOx,0.042574105 +NY,industrial fuel use,gas,gas,2030,NOx,0.045347383 +NY,industrial fuel use,gas,gas,2035,NOx,0.048574619 +NY,industrial fuel use,gas,gas,2040,NOx,0.050422899 +NY,industrial fuel use,gas,gas,2045,NOx,0.050680722 +NY,industrial fuel use,gas,gas,2050,NOx,0.0517343 +NY,industrial fuel use,gas,gas,2055,NOx,0.052443137 +NY,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +NY,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +NY,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +NY,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +NY,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +NY,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +NY,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +NY,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +NY,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +NY,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +NY,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +NY,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +NY,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +NY,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +NY,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +NY,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +NY,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +NY,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +NY,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +NY,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +NY,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +NY,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +NY,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +NY,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +NY,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +NY,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +NY,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +NY,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +NY,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +NY,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +NY,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +NY,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +NY,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +NY,industrial fuel use,coal,coal,2005,SO2,0.709862367 +NY,industrial fuel use,coal,coal,2010,SO2,0.679592789 +NY,industrial fuel use,coal,coal,2015,SO2,0.590904591 +NY,industrial fuel use,coal,coal,2020,SO2,0.549595621 +NY,industrial fuel use,coal,coal,2025,SO2,0.56430149 +NY,industrial fuel use,coal,coal,2030,SO2,0.576548046 +NY,industrial fuel use,coal,coal,2035,SO2,0.583595424 +NY,industrial fuel use,coal,coal,2040,SO2,0.590805881 +NY,industrial fuel use,coal,coal,2045,SO2,0.596410723 +NY,industrial fuel use,coal,coal,2050,SO2,0.606154195 +NY,industrial fuel use,coal,coal,2055,SO2,0.611234923 +NY,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +NY,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +NY,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +NY,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +NY,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +NY,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +NY,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +NY,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +NY,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +NY,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +NY,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +NY,industrial fuel use,gas,gas,2005,SO2,0.000213988 +NY,industrial fuel use,gas,gas,2010,SO2,0.002761946 +NY,industrial fuel use,gas,gas,2015,SO2,0.002854723 +NY,industrial fuel use,gas,gas,2020,SO2,0.002771127 +NY,industrial fuel use,gas,gas,2025,SO2,0.002798763 +NY,industrial fuel use,gas,gas,2030,SO2,0.002938075 +NY,industrial fuel use,gas,gas,2035,SO2,0.003016098 +NY,industrial fuel use,gas,gas,2040,SO2,0.003118901 +NY,industrial fuel use,gas,gas,2045,SO2,0.00311325 +NY,industrial fuel use,gas,gas,2050,SO2,0.003090451 +NY,industrial fuel use,gas,gas,2055,SO2,0.003025213 +NY,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +NY,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +NY,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +NY,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +NY,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +NY,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +NY,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +NY,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +NY,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +NY,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +NY,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +NY,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +NY,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +NY,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +NY,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +NY,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +NY,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +NY,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +NY,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +NY,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +NY,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +NY,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +NY,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +NY,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +NY,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +NY,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +NY,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +NY,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +NY,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +NY,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +NY,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +NY,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +NY,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +NY,industrial fuel use,coal,coal,2005,PM10,0.136452905 +NY,industrial fuel use,coal,coal,2010,PM10,0.093662835 +NY,industrial fuel use,coal,coal,2015,PM10,0.100887759 +NY,industrial fuel use,coal,coal,2020,PM10,0.094503476 +NY,industrial fuel use,coal,coal,2025,PM10,0.09752377 +NY,industrial fuel use,coal,coal,2030,PM10,0.099823133 +NY,industrial fuel use,coal,coal,2035,PM10,0.101097535 +NY,industrial fuel use,coal,coal,2040,PM10,0.102438117 +NY,industrial fuel use,coal,coal,2045,PM10,0.103553978 +NY,industrial fuel use,coal,coal,2050,PM10,0.105393893 +NY,industrial fuel use,coal,coal,2055,PM10,0.106304221 +NY,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +NY,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +NY,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +NY,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +NY,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +NY,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +NY,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +NY,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +NY,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +NY,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +NY,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +NY,industrial fuel use,gas,gas,2005,PM10,0.002144603 +NY,industrial fuel use,gas,gas,2010,PM10,0.004157892 +NY,industrial fuel use,gas,gas,2015,PM10,0.004308637 +NY,industrial fuel use,gas,gas,2020,PM10,0.004261296 +NY,industrial fuel use,gas,gas,2025,PM10,0.004334357 +NY,industrial fuel use,gas,gas,2030,PM10,0.00454497 +NY,industrial fuel use,gas,gas,2035,PM10,0.004581054 +NY,industrial fuel use,gas,gas,2040,PM10,0.004690204 +NY,industrial fuel use,gas,gas,2045,PM10,0.004695842 +NY,industrial fuel use,gas,gas,2050,PM10,0.004649052 +NY,industrial fuel use,gas,gas,2055,PM10,0.00454824 +NY,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +NY,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +NY,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +NY,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +NY,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +NY,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +NY,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +NY,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +NY,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +NY,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +NY,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +NY,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +NY,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +NY,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +NY,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +NY,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +NY,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +NY,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +NY,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +NY,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +NY,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +NY,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +NY,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +NY,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +NY,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +NY,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +NY,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +NY,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +NY,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +NY,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +NY,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +NY,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +NY,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +NY,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +NY,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +NY,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +NY,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +NY,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +NY,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +NY,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +NY,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +NY,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +NY,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +NY,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +NY,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +NY,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +NY,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +NY,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +NY,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +NY,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +NY,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +NY,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +NY,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +NY,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +NY,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +NY,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +NY,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +NY,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +NY,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +NY,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +NY,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +NY,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +NY,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +NY,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +NY,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +NY,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +NY,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +NY,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +NY,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +NY,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +NY,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +NY,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +NY,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +NY,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +NY,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +NY,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +NY,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +NY,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +NY,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +NY,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +NY,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +NY,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +NY,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +NY,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +NY,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +NY,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +NY,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +NY,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +NY,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +NY,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +NY,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +NY,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +NY,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +NY,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +NY,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +NY,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +NY,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +NY,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +NY,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +NY,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +NY,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +NY,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +NY,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +NY,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +NY,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +NY,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +NY,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +NY,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +NY,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +NY,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +NY,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +NY,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +NY,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +NY,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +NY,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +NY,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +NY,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +NY,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +NY,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +NY,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +NY,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +NY,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +NY,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +NY,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +NY,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +NY,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +NY,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +NY,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +NY,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +NY,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +NY,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +NY,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +NY,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +NY,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +NY,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +NY,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +NY,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +NY,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +NY,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +NY,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +NY,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +NY,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +NY,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +NY,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +NY,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +NY,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +NY,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +NY,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +NY,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +NY,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +NY,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +NY,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +NY,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +NY,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +NY,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +NY,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +NY,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +NY,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +NY,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +NY,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +NY,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +NY,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +NY,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +NY,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +NY,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +NY,industrial fuel use,coal,coal,2005,CO,0.069434106 +NY,industrial fuel use,coal,coal,2010,CO,0.07723114 +NY,industrial fuel use,coal,coal,2015,CO,0.068281575 +NY,industrial fuel use,coal,coal,2020,CO,0.063753622 +NY,industrial fuel use,coal,coal,2025,CO,0.065761399 +NY,industrial fuel use,coal,coal,2030,CO,0.067959367 +NY,industrial fuel use,coal,coal,2035,CO,0.069173462 +NY,industrial fuel use,coal,coal,2040,CO,0.070202866 +NY,industrial fuel use,coal,coal,2045,CO,0.071098148 +NY,industrial fuel use,coal,coal,2050,CO,0.072063393 +NY,industrial fuel use,coal,coal,2055,CO,0.072511454 +NY,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +NY,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +NY,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +NY,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +NY,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +NY,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +NY,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +NY,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +NY,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +NY,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +NY,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +NY,industrial fuel use,gas,gas,2005,CO,0.054958784 +NY,industrial fuel use,gas,gas,2010,CO,0.041119779 +NY,industrial fuel use,gas,gas,2015,CO,0.037376927 +NY,industrial fuel use,gas,gas,2020,CO,0.042196984 +NY,industrial fuel use,gas,gas,2025,CO,0.046340259 +NY,industrial fuel use,gas,gas,2030,CO,0.051044751 +NY,industrial fuel use,gas,gas,2035,CO,0.048377476 +NY,industrial fuel use,gas,gas,2040,CO,0.04844371 +NY,industrial fuel use,gas,gas,2045,CO,0.049325699 +NY,industrial fuel use,gas,gas,2050,CO,0.048085677 +NY,industrial fuel use,gas,gas,2055,CO,0.046506083 +NY,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +NY,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +NY,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +NY,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +NY,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +NY,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +NY,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +NY,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +NY,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +NY,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +NY,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +NY,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +NY,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +NY,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +NY,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +NY,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +NY,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +NY,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +NY,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +NY,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +NY,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +NY,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +NY,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +NY,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +NY,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +NY,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +NY,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +NY,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +NY,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +NY,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +NY,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +NY,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +NY,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +NY,industrial fuel use,coal,coal,2005,CH4,0.008615911 +NY,industrial fuel use,coal,coal,2010,CH4,0.007087118 +NY,industrial fuel use,coal,coal,2015,CH4,0.007645512 +NY,industrial fuel use,coal,coal,2020,CH4,0.007093206 +NY,industrial fuel use,coal,coal,2025,CH4,0.007280827 +NY,industrial fuel use,coal,coal,2030,CH4,0.007426545 +NY,industrial fuel use,coal,coal,2035,CH4,0.007524098 +NY,industrial fuel use,coal,coal,2040,CH4,0.007621441 +NY,industrial fuel use,coal,coal,2045,CH4,0.007691307 +NY,industrial fuel use,coal,coal,2050,CH4,0.007801358 +NY,industrial fuel use,coal,coal,2055,CH4,0.007871907 +NY,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +NY,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +NY,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +NY,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +NY,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +NY,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +NY,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +NY,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +NY,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +NY,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +NY,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +NY,industrial fuel use,gas,gas,2005,CH4,0.002575726 +NY,industrial fuel use,gas,gas,2010,CH4,0.0036902 +NY,industrial fuel use,gas,gas,2015,CH4,0.001847174 +NY,industrial fuel use,gas,gas,2020,CH4,0.002575374 +NY,industrial fuel use,gas,gas,2025,CH4,0.002470739 +NY,industrial fuel use,gas,gas,2030,CH4,0.002514812 +NY,industrial fuel use,gas,gas,2035,CH4,0.004402202 +NY,industrial fuel use,gas,gas,2040,CH4,0.005194877 +NY,industrial fuel use,gas,gas,2045,CH4,0.005264291 +NY,industrial fuel use,gas,gas,2050,CH4,0.006086388 +NY,industrial fuel use,gas,gas,2055,CH4,0.006850703 +NY,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +NY,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +NY,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +NY,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +NY,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +NY,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +NY,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +NY,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +NY,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +NY,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +NY,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +NY,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +NY,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +NY,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +NY,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +NY,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +NY,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +NY,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +NY,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +NY,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +NY,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +NY,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +NY,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +NY,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +NY,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +NY,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +NY,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +NY,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +NY,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +NY,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +NY,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +NY,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +NY,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +NY,industrial fuel use,coal,coal,2005,N2O,0.002945881 +NY,industrial fuel use,coal,coal,2010,N2O,0.004699422 +NY,industrial fuel use,coal,coal,2015,N2O,0.003718249 +NY,industrial fuel use,coal,coal,2020,N2O,0.003503987 +NY,industrial fuel use,coal,coal,2025,N2O,0.003902448 +NY,industrial fuel use,coal,coal,2030,N2O,0.005231917 +NY,industrial fuel use,coal,coal,2035,N2O,0.005844861 +NY,industrial fuel use,coal,coal,2040,N2O,0.006123209 +NY,industrial fuel use,coal,coal,2045,N2O,0.006493024 +NY,industrial fuel use,coal,coal,2050,N2O,0.00643187 +NY,industrial fuel use,coal,coal,2055,N2O,0.006580646 +NY,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +NY,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +NY,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +NY,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +NY,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +NY,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +NY,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +NY,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +NY,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +NY,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +NY,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +NY,industrial fuel use,gas,gas,2005,N2O,0.000509795 +NY,industrial fuel use,gas,gas,2010,N2O,0.000459136 +NY,industrial fuel use,gas,gas,2015,N2O,0.000457847 +NY,industrial fuel use,gas,gas,2020,N2O,0.000469807 +NY,industrial fuel use,gas,gas,2025,N2O,0.0004748 +NY,industrial fuel use,gas,gas,2030,N2O,0.000493269 +NY,industrial fuel use,gas,gas,2035,N2O,0.0005142 +NY,industrial fuel use,gas,gas,2040,N2O,0.000525413 +NY,industrial fuel use,gas,gas,2045,N2O,0.000530678 +NY,industrial fuel use,gas,gas,2050,N2O,0.000534097 +NY,industrial fuel use,gas,gas,2055,N2O,0.000535185 +NY,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +NY,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +NY,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +NY,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +NY,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +NY,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +NY,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +NY,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +NY,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +NY,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +NY,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +NY,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +NY,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +NY,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +NY,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +NY,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +NY,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +NY,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +NY,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +NY,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +NY,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +NY,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +NY,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +NY,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +NY,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +NY,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +NY,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +NY,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +NY,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +NY,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +NY,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +NY,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +NY,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +NY,industrial fuel use,coal,coal,2005,BC,0.052178527 +NY,industrial fuel use,coal,coal,2010,BC,0.054113893 +NY,industrial fuel use,coal,coal,2015,BC,0.054816673 +NY,industrial fuel use,coal,coal,2020,BC,0.051442317 +NY,industrial fuel use,coal,coal,2025,BC,0.05280003 +NY,industrial fuel use,coal,coal,2030,BC,0.054819383 +NY,industrial fuel use,coal,coal,2035,BC,0.055934389 +NY,industrial fuel use,coal,coal,2040,BC,0.056737391 +NY,industrial fuel use,coal,coal,2045,BC,0.057341111 +NY,industrial fuel use,coal,coal,2050,BC,0.057867944 +NY,industrial fuel use,coal,coal,2055,BC,0.058307588 +NY,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +NY,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +NY,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +NY,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +NY,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +NY,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +NY,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +NY,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +NY,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +NY,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +NY,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +NY,industrial fuel use,gas,gas,2005,BC,0.000879555 +NY,industrial fuel use,gas,gas,2010,BC,0.000594596 +NY,industrial fuel use,gas,gas,2015,BC,0.000780779 +NY,industrial fuel use,gas,gas,2020,BC,0.000758542 +NY,industrial fuel use,gas,gas,2025,BC,0.000791704 +NY,industrial fuel use,gas,gas,2030,BC,0.000829295 +NY,industrial fuel use,gas,gas,2035,BC,0.000745895 +NY,industrial fuel use,gas,gas,2040,BC,0.000739727 +NY,industrial fuel use,gas,gas,2045,BC,0.000759191 +NY,industrial fuel use,gas,gas,2050,BC,0.000728476 +NY,industrial fuel use,gas,gas,2055,BC,0.000688571 +NY,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +NY,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +NY,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +NY,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +NY,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +NY,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +NY,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +NY,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +NY,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +NY,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +NY,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +NY,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +NY,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +NY,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +NY,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +NY,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +NY,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +NY,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +NY,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +NY,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +NY,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +NY,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +NY,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +NY,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +NY,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +NY,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +NY,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +NY,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +NY,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +NY,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +NY,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +NY,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +NY,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +NY,industrial fuel use,coal,coal,2005,OC,0.004608879 +NY,industrial fuel use,coal,coal,2010,OC,0.004949044 +NY,industrial fuel use,coal,coal,2015,OC,0.005291355 +NY,industrial fuel use,coal,coal,2020,OC,0.005047635 +NY,industrial fuel use,coal,coal,2025,OC,0.005240698 +NY,industrial fuel use,coal,coal,2030,OC,0.005398598 +NY,industrial fuel use,coal,coal,2035,OC,0.005483036 +NY,industrial fuel use,coal,coal,2040,OC,0.005583473 +NY,industrial fuel use,coal,coal,2045,OC,0.005638434 +NY,industrial fuel use,coal,coal,2050,OC,0.005723515 +NY,industrial fuel use,coal,coal,2055,OC,0.005777195 +NY,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +NY,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +NY,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +NY,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +NY,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +NY,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +NY,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +NY,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +NY,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +NY,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +NY,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +NY,industrial fuel use,gas,gas,2005,OC,0.000586894 +NY,industrial fuel use,gas,gas,2010,OC,0.000538986 +NY,industrial fuel use,gas,gas,2015,OC,0.000406177 +NY,industrial fuel use,gas,gas,2020,OC,0.000436774 +NY,industrial fuel use,gas,gas,2025,OC,0.000431434 +NY,industrial fuel use,gas,gas,2030,OC,0.000454497 +NY,industrial fuel use,gas,gas,2035,OC,0.0005142 +NY,industrial fuel use,gas,gas,2040,OC,0.000542203 +NY,industrial fuel use,gas,gas,2045,OC,0.0005354 +NY,industrial fuel use,gas,gas,2050,OC,0.000552822 +NY,industrial fuel use,gas,gas,2055,OC,0.000563528 +NY,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +NY,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +NY,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +NY,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +NY,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +NY,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +NY,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +NY,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +NY,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +NY,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +NY,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +NY,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +NY,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +NY,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +NY,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +NY,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +NY,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +NY,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +NY,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +NY,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +NY,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +NY,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +NY,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +NY,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +NY,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +NY,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +NY,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +NY,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +NY,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +NY,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +NY,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +NY,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +NY,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +NY,industrial fuel use,coal,coal,2005,CO2,0.022413751 +NY,industrial fuel use,coal,coal,2010,CO2,0.023247485 +NY,industrial fuel use,coal,coal,2015,CO2,0.023542577 +NY,industrial fuel use,coal,coal,2020,CO2,0.022100946 +NY,industrial fuel use,coal,coal,2025,CO2,0.022682182 +NY,industrial fuel use,coal,coal,2030,CO2,0.023544891 +NY,industrial fuel use,coal,coal,2035,CO2,0.024022124 +NY,industrial fuel use,coal,coal,2040,CO2,0.024371859 +NY,industrial fuel use,coal,coal,2045,CO2,0.024626877 +NY,industrial fuel use,coal,coal,2050,CO2,0.024861999 +NY,industrial fuel use,coal,coal,2055,CO2,0.025047846 +NY,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +NY,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +NY,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +NY,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +NY,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +NY,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +NY,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +NY,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +NY,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +NY,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +NY,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +NY,industrial fuel use,gas,gas,2005,CO2,0.010100215 +NY,industrial fuel use,gas,gas,2010,CO2,0.008735772 +NY,industrial fuel use,gas,gas,2015,CO2,0.008975567 +NY,industrial fuel use,gas,gas,2020,CO2,0.009141549 +NY,industrial fuel use,gas,gas,2025,CO2,0.009319403 +NY,industrial fuel use,gas,gas,2030,CO2,0.009661635 +NY,industrial fuel use,gas,gas,2035,CO2,0.009858394 +NY,industrial fuel use,gas,gas,2040,CO2,0.010090146 +NY,industrial fuel use,gas,gas,2045,CO2,0.010177486 +NY,industrial fuel use,gas,gas,2050,CO2,0.010210503 +NY,industrial fuel use,gas,gas,2055,CO2,0.010168744 +NY,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +NY,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +NY,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +NY,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +NY,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +NY,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +NY,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +NY,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +NY,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +NY,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +NY,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +NY,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +NY,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +NY,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +NY,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +NY,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +NY,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +NY,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +NY,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +NY,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +NY,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +NY,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +NY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +NY,industrial fuel use,biomass,biomass,2005,CO2,0 +NY,industrial fuel use,biomass,biomass,2010,CO2,0 +NY,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +NY,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +NY,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +NY,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +NY,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +NY,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +NY,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +NY,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +NY,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +NY,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +NY,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +NY,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +NY,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +NY,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +NY,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +NY,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +NY,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +NY,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +NY,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +NY,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +OH,industrial fuel use,coal,coal,2005,NOx,0.261565752 +OH,industrial fuel use,coal,coal,2010,NOx,0.24128762 +OH,industrial fuel use,coal,coal,2015,NOx,0.247879608 +OH,industrial fuel use,coal,coal,2020,NOx,0.234312556 +OH,industrial fuel use,coal,coal,2025,NOx,0.240398293 +OH,industrial fuel use,coal,coal,2030,NOx,0.246677964 +OH,industrial fuel use,coal,coal,2035,NOx,0.250299201 +OH,industrial fuel use,coal,coal,2040,NOx,0.253554811 +OH,industrial fuel use,coal,coal,2045,NOx,0.255578056 +OH,industrial fuel use,coal,coal,2050,NOx,0.258549854 +OH,industrial fuel use,coal,coal,2055,NOx,0.26014596 +OH,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +OH,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +OH,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +OH,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +OH,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +OH,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +OH,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +OH,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +OH,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +OH,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +OH,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +OH,industrial fuel use,gas,gas,2005,NOx,0.080919016 +OH,industrial fuel use,gas,gas,2010,NOx,0.044952568 +OH,industrial fuel use,gas,gas,2015,NOx,0.037239142 +OH,industrial fuel use,gas,gas,2020,NOx,0.040745965 +OH,industrial fuel use,gas,gas,2025,NOx,0.042574105 +OH,industrial fuel use,gas,gas,2030,NOx,0.045347383 +OH,industrial fuel use,gas,gas,2035,NOx,0.048574619 +OH,industrial fuel use,gas,gas,2040,NOx,0.050422899 +OH,industrial fuel use,gas,gas,2045,NOx,0.050680722 +OH,industrial fuel use,gas,gas,2050,NOx,0.0517343 +OH,industrial fuel use,gas,gas,2055,NOx,0.052443137 +OH,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +OH,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +OH,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +OH,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +OH,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +OH,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +OH,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +OH,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +OH,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +OH,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +OH,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +OH,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +OH,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +OH,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +OH,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +OH,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +OH,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +OH,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +OH,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +OH,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +OH,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +OH,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +OH,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +OH,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +OH,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +OH,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +OH,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +OH,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +OH,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +OH,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +OH,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +OH,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +OH,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +OH,industrial fuel use,coal,coal,2005,SO2,0.709862367 +OH,industrial fuel use,coal,coal,2010,SO2,0.679592789 +OH,industrial fuel use,coal,coal,2015,SO2,0.590904591 +OH,industrial fuel use,coal,coal,2020,SO2,0.549595621 +OH,industrial fuel use,coal,coal,2025,SO2,0.56430149 +OH,industrial fuel use,coal,coal,2030,SO2,0.576548046 +OH,industrial fuel use,coal,coal,2035,SO2,0.583595424 +OH,industrial fuel use,coal,coal,2040,SO2,0.590805881 +OH,industrial fuel use,coal,coal,2045,SO2,0.596410723 +OH,industrial fuel use,coal,coal,2050,SO2,0.606154195 +OH,industrial fuel use,coal,coal,2055,SO2,0.611234923 +OH,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +OH,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +OH,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +OH,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +OH,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +OH,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +OH,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +OH,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +OH,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +OH,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +OH,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +OH,industrial fuel use,gas,gas,2005,SO2,0.000213988 +OH,industrial fuel use,gas,gas,2010,SO2,0.002761946 +OH,industrial fuel use,gas,gas,2015,SO2,0.002854723 +OH,industrial fuel use,gas,gas,2020,SO2,0.002771127 +OH,industrial fuel use,gas,gas,2025,SO2,0.002798763 +OH,industrial fuel use,gas,gas,2030,SO2,0.002938075 +OH,industrial fuel use,gas,gas,2035,SO2,0.003016098 +OH,industrial fuel use,gas,gas,2040,SO2,0.003118901 +OH,industrial fuel use,gas,gas,2045,SO2,0.00311325 +OH,industrial fuel use,gas,gas,2050,SO2,0.003090451 +OH,industrial fuel use,gas,gas,2055,SO2,0.003025213 +OH,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +OH,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +OH,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +OH,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +OH,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +OH,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +OH,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +OH,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +OH,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +OH,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +OH,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +OH,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +OH,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +OH,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +OH,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +OH,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +OH,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +OH,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +OH,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +OH,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +OH,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +OH,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +OH,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +OH,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +OH,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +OH,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +OH,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +OH,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +OH,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +OH,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +OH,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +OH,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +OH,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +OH,industrial fuel use,coal,coal,2005,PM10,0.136452905 +OH,industrial fuel use,coal,coal,2010,PM10,0.093662835 +OH,industrial fuel use,coal,coal,2015,PM10,0.100887759 +OH,industrial fuel use,coal,coal,2020,PM10,0.094503476 +OH,industrial fuel use,coal,coal,2025,PM10,0.09752377 +OH,industrial fuel use,coal,coal,2030,PM10,0.099823133 +OH,industrial fuel use,coal,coal,2035,PM10,0.101097535 +OH,industrial fuel use,coal,coal,2040,PM10,0.102438117 +OH,industrial fuel use,coal,coal,2045,PM10,0.103553978 +OH,industrial fuel use,coal,coal,2050,PM10,0.105393893 +OH,industrial fuel use,coal,coal,2055,PM10,0.106304221 +OH,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +OH,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +OH,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +OH,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +OH,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +OH,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +OH,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +OH,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +OH,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +OH,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +OH,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +OH,industrial fuel use,gas,gas,2005,PM10,0.002144603 +OH,industrial fuel use,gas,gas,2010,PM10,0.004157892 +OH,industrial fuel use,gas,gas,2015,PM10,0.004308637 +OH,industrial fuel use,gas,gas,2020,PM10,0.004261296 +OH,industrial fuel use,gas,gas,2025,PM10,0.004334357 +OH,industrial fuel use,gas,gas,2030,PM10,0.00454497 +OH,industrial fuel use,gas,gas,2035,PM10,0.004581054 +OH,industrial fuel use,gas,gas,2040,PM10,0.004690204 +OH,industrial fuel use,gas,gas,2045,PM10,0.004695842 +OH,industrial fuel use,gas,gas,2050,PM10,0.004649052 +OH,industrial fuel use,gas,gas,2055,PM10,0.00454824 +OH,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +OH,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +OH,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +OH,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +OH,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +OH,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +OH,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +OH,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +OH,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +OH,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +OH,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +OH,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +OH,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +OH,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +OH,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +OH,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +OH,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +OH,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +OH,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +OH,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +OH,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +OH,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +OH,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +OH,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +OH,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +OH,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +OH,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +OH,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +OH,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +OH,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +OH,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +OH,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +OH,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +OH,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +OH,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +OH,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +OH,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +OH,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +OH,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +OH,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +OH,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +OH,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +OH,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +OH,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +OH,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +OH,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +OH,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +OH,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +OH,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +OH,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +OH,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +OH,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +OH,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +OH,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +OH,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +OH,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +OH,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +OH,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +OH,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +OH,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +OH,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +OH,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +OH,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +OH,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +OH,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +OH,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +OH,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +OH,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +OH,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +OH,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +OH,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +OH,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +OH,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +OH,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +OH,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +OH,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +OH,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +OH,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +OH,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +OH,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +OH,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +OH,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +OH,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +OH,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +OH,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +OH,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +OH,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +OH,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +OH,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +OH,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +OH,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +OH,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +OH,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +OH,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +OH,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +OH,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +OH,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +OH,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +OH,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +OH,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +OH,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +OH,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +OH,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +OH,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +OH,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +OH,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +OH,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +OH,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +OH,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +OH,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +OH,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +OH,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +OH,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +OH,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +OH,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +OH,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +OH,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +OH,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +OH,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +OH,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +OH,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +OH,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +OH,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +OH,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +OH,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +OH,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +OH,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +OH,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +OH,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +OH,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +OH,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +OH,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +OH,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +OH,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +OH,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +OH,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +OH,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +OH,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +OH,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +OH,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +OH,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +OH,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +OH,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +OH,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +OH,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +OH,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +OH,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +OH,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +OH,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +OH,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +OH,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +OH,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +OH,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +OH,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +OH,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +OH,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +OH,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +OH,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +OH,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +OH,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +OH,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +OH,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +OH,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +OH,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +OH,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +OH,industrial fuel use,coal,coal,2005,CO,0.069434106 +OH,industrial fuel use,coal,coal,2010,CO,0.07723114 +OH,industrial fuel use,coal,coal,2015,CO,0.068281575 +OH,industrial fuel use,coal,coal,2020,CO,0.063753622 +OH,industrial fuel use,coal,coal,2025,CO,0.065761399 +OH,industrial fuel use,coal,coal,2030,CO,0.067959367 +OH,industrial fuel use,coal,coal,2035,CO,0.069173462 +OH,industrial fuel use,coal,coal,2040,CO,0.070202866 +OH,industrial fuel use,coal,coal,2045,CO,0.071098148 +OH,industrial fuel use,coal,coal,2050,CO,0.072063393 +OH,industrial fuel use,coal,coal,2055,CO,0.072511454 +OH,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +OH,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +OH,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +OH,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +OH,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +OH,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +OH,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +OH,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +OH,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +OH,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +OH,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +OH,industrial fuel use,gas,gas,2005,CO,0.054958784 +OH,industrial fuel use,gas,gas,2010,CO,0.041119779 +OH,industrial fuel use,gas,gas,2015,CO,0.037376927 +OH,industrial fuel use,gas,gas,2020,CO,0.042196984 +OH,industrial fuel use,gas,gas,2025,CO,0.046340259 +OH,industrial fuel use,gas,gas,2030,CO,0.051044751 +OH,industrial fuel use,gas,gas,2035,CO,0.048377476 +OH,industrial fuel use,gas,gas,2040,CO,0.04844371 +OH,industrial fuel use,gas,gas,2045,CO,0.049325699 +OH,industrial fuel use,gas,gas,2050,CO,0.048085677 +OH,industrial fuel use,gas,gas,2055,CO,0.046506083 +OH,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +OH,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +OH,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +OH,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +OH,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +OH,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +OH,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +OH,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +OH,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +OH,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +OH,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +OH,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +OH,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +OH,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +OH,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +OH,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +OH,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +OH,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +OH,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +OH,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +OH,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +OH,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +OH,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +OH,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +OH,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +OH,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +OH,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +OH,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +OH,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +OH,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +OH,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +OH,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +OH,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +OH,industrial fuel use,coal,coal,2005,CH4,0.008615911 +OH,industrial fuel use,coal,coal,2010,CH4,0.007087118 +OH,industrial fuel use,coal,coal,2015,CH4,0.007645512 +OH,industrial fuel use,coal,coal,2020,CH4,0.007093206 +OH,industrial fuel use,coal,coal,2025,CH4,0.007280827 +OH,industrial fuel use,coal,coal,2030,CH4,0.007426545 +OH,industrial fuel use,coal,coal,2035,CH4,0.007524098 +OH,industrial fuel use,coal,coal,2040,CH4,0.007621441 +OH,industrial fuel use,coal,coal,2045,CH4,0.007691307 +OH,industrial fuel use,coal,coal,2050,CH4,0.007801358 +OH,industrial fuel use,coal,coal,2055,CH4,0.007871907 +OH,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +OH,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +OH,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +OH,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +OH,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +OH,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +OH,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +OH,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +OH,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +OH,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +OH,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +OH,industrial fuel use,gas,gas,2005,CH4,0.002575726 +OH,industrial fuel use,gas,gas,2010,CH4,0.0036902 +OH,industrial fuel use,gas,gas,2015,CH4,0.001847174 +OH,industrial fuel use,gas,gas,2020,CH4,0.002575374 +OH,industrial fuel use,gas,gas,2025,CH4,0.002470739 +OH,industrial fuel use,gas,gas,2030,CH4,0.002514812 +OH,industrial fuel use,gas,gas,2035,CH4,0.004402202 +OH,industrial fuel use,gas,gas,2040,CH4,0.005194877 +OH,industrial fuel use,gas,gas,2045,CH4,0.005264291 +OH,industrial fuel use,gas,gas,2050,CH4,0.006086388 +OH,industrial fuel use,gas,gas,2055,CH4,0.006850703 +OH,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +OH,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +OH,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +OH,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +OH,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +OH,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +OH,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +OH,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +OH,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +OH,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +OH,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +OH,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +OH,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +OH,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +OH,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +OH,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +OH,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +OH,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +OH,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +OH,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +OH,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +OH,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +OH,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +OH,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +OH,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +OH,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +OH,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +OH,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +OH,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +OH,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +OH,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +OH,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +OH,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +OH,industrial fuel use,coal,coal,2005,N2O,0.002945881 +OH,industrial fuel use,coal,coal,2010,N2O,0.004699422 +OH,industrial fuel use,coal,coal,2015,N2O,0.003718249 +OH,industrial fuel use,coal,coal,2020,N2O,0.003503987 +OH,industrial fuel use,coal,coal,2025,N2O,0.003902448 +OH,industrial fuel use,coal,coal,2030,N2O,0.005231917 +OH,industrial fuel use,coal,coal,2035,N2O,0.005844861 +OH,industrial fuel use,coal,coal,2040,N2O,0.006123209 +OH,industrial fuel use,coal,coal,2045,N2O,0.006493024 +OH,industrial fuel use,coal,coal,2050,N2O,0.00643187 +OH,industrial fuel use,coal,coal,2055,N2O,0.006580646 +OH,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +OH,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +OH,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +OH,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +OH,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +OH,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +OH,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +OH,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +OH,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +OH,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +OH,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +OH,industrial fuel use,gas,gas,2005,N2O,0.000509795 +OH,industrial fuel use,gas,gas,2010,N2O,0.000459136 +OH,industrial fuel use,gas,gas,2015,N2O,0.000457847 +OH,industrial fuel use,gas,gas,2020,N2O,0.000469807 +OH,industrial fuel use,gas,gas,2025,N2O,0.0004748 +OH,industrial fuel use,gas,gas,2030,N2O,0.000493269 +OH,industrial fuel use,gas,gas,2035,N2O,0.0005142 +OH,industrial fuel use,gas,gas,2040,N2O,0.000525413 +OH,industrial fuel use,gas,gas,2045,N2O,0.000530678 +OH,industrial fuel use,gas,gas,2050,N2O,0.000534097 +OH,industrial fuel use,gas,gas,2055,N2O,0.000535185 +OH,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +OH,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +OH,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +OH,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +OH,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +OH,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +OH,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +OH,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +OH,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +OH,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +OH,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +OH,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +OH,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +OH,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +OH,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +OH,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +OH,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +OH,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +OH,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +OH,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +OH,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +OH,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +OH,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +OH,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +OH,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +OH,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +OH,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +OH,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +OH,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +OH,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +OH,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +OH,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +OH,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +OH,industrial fuel use,coal,coal,2005,BC,0.052178527 +OH,industrial fuel use,coal,coal,2010,BC,0.054113893 +OH,industrial fuel use,coal,coal,2015,BC,0.054816673 +OH,industrial fuel use,coal,coal,2020,BC,0.051442317 +OH,industrial fuel use,coal,coal,2025,BC,0.05280003 +OH,industrial fuel use,coal,coal,2030,BC,0.054819383 +OH,industrial fuel use,coal,coal,2035,BC,0.055934389 +OH,industrial fuel use,coal,coal,2040,BC,0.056737391 +OH,industrial fuel use,coal,coal,2045,BC,0.057341111 +OH,industrial fuel use,coal,coal,2050,BC,0.057867944 +OH,industrial fuel use,coal,coal,2055,BC,0.058307588 +OH,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +OH,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +OH,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +OH,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +OH,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +OH,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +OH,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +OH,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +OH,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +OH,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +OH,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +OH,industrial fuel use,gas,gas,2005,BC,0.000879555 +OH,industrial fuel use,gas,gas,2010,BC,0.000594596 +OH,industrial fuel use,gas,gas,2015,BC,0.000780779 +OH,industrial fuel use,gas,gas,2020,BC,0.000758542 +OH,industrial fuel use,gas,gas,2025,BC,0.000791704 +OH,industrial fuel use,gas,gas,2030,BC,0.000829295 +OH,industrial fuel use,gas,gas,2035,BC,0.000745895 +OH,industrial fuel use,gas,gas,2040,BC,0.000739727 +OH,industrial fuel use,gas,gas,2045,BC,0.000759191 +OH,industrial fuel use,gas,gas,2050,BC,0.000728476 +OH,industrial fuel use,gas,gas,2055,BC,0.000688571 +OH,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +OH,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +OH,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +OH,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +OH,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +OH,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +OH,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +OH,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +OH,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +OH,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +OH,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +OH,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +OH,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +OH,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +OH,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +OH,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +OH,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +OH,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +OH,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +OH,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +OH,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +OH,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +OH,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +OH,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +OH,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +OH,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +OH,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +OH,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +OH,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +OH,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +OH,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +OH,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +OH,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +OH,industrial fuel use,coal,coal,2005,OC,0.004608879 +OH,industrial fuel use,coal,coal,2010,OC,0.004949044 +OH,industrial fuel use,coal,coal,2015,OC,0.005291355 +OH,industrial fuel use,coal,coal,2020,OC,0.005047635 +OH,industrial fuel use,coal,coal,2025,OC,0.005240698 +OH,industrial fuel use,coal,coal,2030,OC,0.005398598 +OH,industrial fuel use,coal,coal,2035,OC,0.005483036 +OH,industrial fuel use,coal,coal,2040,OC,0.005583473 +OH,industrial fuel use,coal,coal,2045,OC,0.005638434 +OH,industrial fuel use,coal,coal,2050,OC,0.005723515 +OH,industrial fuel use,coal,coal,2055,OC,0.005777195 +OH,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +OH,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +OH,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +OH,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +OH,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +OH,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +OH,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +OH,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +OH,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +OH,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +OH,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +OH,industrial fuel use,gas,gas,2005,OC,0.000586894 +OH,industrial fuel use,gas,gas,2010,OC,0.000538986 +OH,industrial fuel use,gas,gas,2015,OC,0.000406177 +OH,industrial fuel use,gas,gas,2020,OC,0.000436774 +OH,industrial fuel use,gas,gas,2025,OC,0.000431434 +OH,industrial fuel use,gas,gas,2030,OC,0.000454497 +OH,industrial fuel use,gas,gas,2035,OC,0.0005142 +OH,industrial fuel use,gas,gas,2040,OC,0.000542203 +OH,industrial fuel use,gas,gas,2045,OC,0.0005354 +OH,industrial fuel use,gas,gas,2050,OC,0.000552822 +OH,industrial fuel use,gas,gas,2055,OC,0.000563528 +OH,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +OH,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +OH,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +OH,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +OH,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +OH,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +OH,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +OH,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +OH,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +OH,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +OH,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +OH,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +OH,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +OH,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +OH,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +OH,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +OH,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +OH,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +OH,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +OH,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +OH,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +OH,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +OH,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +OH,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +OH,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +OH,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +OH,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +OH,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +OH,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +OH,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +OH,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +OH,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +OH,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +OH,industrial fuel use,coal,coal,2005,CO2,0.022413751 +OH,industrial fuel use,coal,coal,2010,CO2,0.023247485 +OH,industrial fuel use,coal,coal,2015,CO2,0.023542577 +OH,industrial fuel use,coal,coal,2020,CO2,0.022100946 +OH,industrial fuel use,coal,coal,2025,CO2,0.022682182 +OH,industrial fuel use,coal,coal,2030,CO2,0.023544891 +OH,industrial fuel use,coal,coal,2035,CO2,0.024022124 +OH,industrial fuel use,coal,coal,2040,CO2,0.024371859 +OH,industrial fuel use,coal,coal,2045,CO2,0.024626877 +OH,industrial fuel use,coal,coal,2050,CO2,0.024861999 +OH,industrial fuel use,coal,coal,2055,CO2,0.025047846 +OH,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +OH,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +OH,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +OH,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +OH,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +OH,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +OH,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +OH,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +OH,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +OH,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +OH,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +OH,industrial fuel use,gas,gas,2005,CO2,0.010100215 +OH,industrial fuel use,gas,gas,2010,CO2,0.008735772 +OH,industrial fuel use,gas,gas,2015,CO2,0.008975567 +OH,industrial fuel use,gas,gas,2020,CO2,0.009141549 +OH,industrial fuel use,gas,gas,2025,CO2,0.009319403 +OH,industrial fuel use,gas,gas,2030,CO2,0.009661635 +OH,industrial fuel use,gas,gas,2035,CO2,0.009858394 +OH,industrial fuel use,gas,gas,2040,CO2,0.010090146 +OH,industrial fuel use,gas,gas,2045,CO2,0.010177486 +OH,industrial fuel use,gas,gas,2050,CO2,0.010210503 +OH,industrial fuel use,gas,gas,2055,CO2,0.010168744 +OH,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +OH,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +OH,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +OH,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +OH,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +OH,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +OH,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +OH,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +OH,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +OH,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +OH,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +OH,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +OH,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +OH,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +OH,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +OH,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +OH,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +OH,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +OH,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +OH,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +OH,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +OH,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +OH,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +OH,industrial fuel use,biomass,biomass,2005,CO2,0 +OH,industrial fuel use,biomass,biomass,2010,CO2,0 +OH,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +OH,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +OH,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +OH,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +OH,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +OH,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +OH,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +OH,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +OH,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +OH,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +OH,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +OH,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +OH,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +OH,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +OH,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +OH,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +OH,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +OH,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +OH,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +OH,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +OK,industrial fuel use,coal,coal,2005,NOx,0.261565752 +OK,industrial fuel use,coal,coal,2010,NOx,0.24128762 +OK,industrial fuel use,coal,coal,2015,NOx,0.247879608 +OK,industrial fuel use,coal,coal,2020,NOx,0.234312556 +OK,industrial fuel use,coal,coal,2025,NOx,0.240398293 +OK,industrial fuel use,coal,coal,2030,NOx,0.246677964 +OK,industrial fuel use,coal,coal,2035,NOx,0.250299201 +OK,industrial fuel use,coal,coal,2040,NOx,0.253554811 +OK,industrial fuel use,coal,coal,2045,NOx,0.255578056 +OK,industrial fuel use,coal,coal,2050,NOx,0.258549854 +OK,industrial fuel use,coal,coal,2055,NOx,0.26014596 +OK,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +OK,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +OK,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +OK,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +OK,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +OK,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +OK,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +OK,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +OK,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +OK,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +OK,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +OK,industrial fuel use,gas,gas,2005,NOx,0.080919016 +OK,industrial fuel use,gas,gas,2010,NOx,0.044952568 +OK,industrial fuel use,gas,gas,2015,NOx,0.037239142 +OK,industrial fuel use,gas,gas,2020,NOx,0.040745965 +OK,industrial fuel use,gas,gas,2025,NOx,0.042574105 +OK,industrial fuel use,gas,gas,2030,NOx,0.045347383 +OK,industrial fuel use,gas,gas,2035,NOx,0.048574619 +OK,industrial fuel use,gas,gas,2040,NOx,0.050422899 +OK,industrial fuel use,gas,gas,2045,NOx,0.050680722 +OK,industrial fuel use,gas,gas,2050,NOx,0.0517343 +OK,industrial fuel use,gas,gas,2055,NOx,0.052443137 +OK,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +OK,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +OK,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +OK,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +OK,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +OK,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +OK,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +OK,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +OK,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +OK,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +OK,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +OK,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +OK,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +OK,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +OK,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +OK,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +OK,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +OK,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +OK,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +OK,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +OK,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +OK,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +OK,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +OK,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +OK,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +OK,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +OK,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +OK,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +OK,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +OK,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +OK,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +OK,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +OK,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +OK,industrial fuel use,coal,coal,2005,SO2,0.709862367 +OK,industrial fuel use,coal,coal,2010,SO2,0.679592789 +OK,industrial fuel use,coal,coal,2015,SO2,0.590904591 +OK,industrial fuel use,coal,coal,2020,SO2,0.549595621 +OK,industrial fuel use,coal,coal,2025,SO2,0.56430149 +OK,industrial fuel use,coal,coal,2030,SO2,0.576548046 +OK,industrial fuel use,coal,coal,2035,SO2,0.583595424 +OK,industrial fuel use,coal,coal,2040,SO2,0.590805881 +OK,industrial fuel use,coal,coal,2045,SO2,0.596410723 +OK,industrial fuel use,coal,coal,2050,SO2,0.606154195 +OK,industrial fuel use,coal,coal,2055,SO2,0.611234923 +OK,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +OK,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +OK,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +OK,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +OK,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +OK,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +OK,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +OK,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +OK,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +OK,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +OK,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +OK,industrial fuel use,gas,gas,2005,SO2,0.000213988 +OK,industrial fuel use,gas,gas,2010,SO2,0.002761946 +OK,industrial fuel use,gas,gas,2015,SO2,0.002854723 +OK,industrial fuel use,gas,gas,2020,SO2,0.002771127 +OK,industrial fuel use,gas,gas,2025,SO2,0.002798763 +OK,industrial fuel use,gas,gas,2030,SO2,0.002938075 +OK,industrial fuel use,gas,gas,2035,SO2,0.003016098 +OK,industrial fuel use,gas,gas,2040,SO2,0.003118901 +OK,industrial fuel use,gas,gas,2045,SO2,0.00311325 +OK,industrial fuel use,gas,gas,2050,SO2,0.003090451 +OK,industrial fuel use,gas,gas,2055,SO2,0.003025213 +OK,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +OK,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +OK,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +OK,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +OK,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +OK,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +OK,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +OK,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +OK,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +OK,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +OK,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +OK,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +OK,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +OK,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +OK,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +OK,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +OK,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +OK,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +OK,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +OK,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +OK,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +OK,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +OK,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +OK,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +OK,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +OK,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +OK,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +OK,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +OK,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +OK,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +OK,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +OK,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +OK,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +OK,industrial fuel use,coal,coal,2005,PM10,0.136452905 +OK,industrial fuel use,coal,coal,2010,PM10,0.093662835 +OK,industrial fuel use,coal,coal,2015,PM10,0.100887759 +OK,industrial fuel use,coal,coal,2020,PM10,0.094503476 +OK,industrial fuel use,coal,coal,2025,PM10,0.09752377 +OK,industrial fuel use,coal,coal,2030,PM10,0.099823133 +OK,industrial fuel use,coal,coal,2035,PM10,0.101097535 +OK,industrial fuel use,coal,coal,2040,PM10,0.102438117 +OK,industrial fuel use,coal,coal,2045,PM10,0.103553978 +OK,industrial fuel use,coal,coal,2050,PM10,0.105393893 +OK,industrial fuel use,coal,coal,2055,PM10,0.106304221 +OK,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +OK,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +OK,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +OK,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +OK,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +OK,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +OK,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +OK,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +OK,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +OK,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +OK,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +OK,industrial fuel use,gas,gas,2005,PM10,0.002144603 +OK,industrial fuel use,gas,gas,2010,PM10,0.004157892 +OK,industrial fuel use,gas,gas,2015,PM10,0.004308637 +OK,industrial fuel use,gas,gas,2020,PM10,0.004261296 +OK,industrial fuel use,gas,gas,2025,PM10,0.004334357 +OK,industrial fuel use,gas,gas,2030,PM10,0.00454497 +OK,industrial fuel use,gas,gas,2035,PM10,0.004581054 +OK,industrial fuel use,gas,gas,2040,PM10,0.004690204 +OK,industrial fuel use,gas,gas,2045,PM10,0.004695842 +OK,industrial fuel use,gas,gas,2050,PM10,0.004649052 +OK,industrial fuel use,gas,gas,2055,PM10,0.00454824 +OK,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +OK,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +OK,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +OK,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +OK,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +OK,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +OK,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +OK,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +OK,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +OK,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +OK,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +OK,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +OK,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +OK,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +OK,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +OK,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +OK,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +OK,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +OK,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +OK,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +OK,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +OK,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +OK,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +OK,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +OK,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +OK,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +OK,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +OK,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +OK,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +OK,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +OK,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +OK,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +OK,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +OK,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +OK,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +OK,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +OK,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +OK,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +OK,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +OK,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +OK,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +OK,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +OK,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +OK,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +OK,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +OK,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +OK,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +OK,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +OK,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +OK,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +OK,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +OK,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +OK,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +OK,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +OK,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +OK,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +OK,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +OK,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +OK,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +OK,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +OK,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +OK,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +OK,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +OK,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +OK,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +OK,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +OK,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +OK,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +OK,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +OK,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +OK,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +OK,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +OK,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +OK,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +OK,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +OK,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +OK,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +OK,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +OK,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +OK,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +OK,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +OK,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +OK,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +OK,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +OK,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +OK,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +OK,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +OK,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +OK,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +OK,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +OK,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +OK,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +OK,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +OK,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +OK,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +OK,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +OK,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +OK,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +OK,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +OK,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +OK,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +OK,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +OK,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +OK,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +OK,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +OK,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +OK,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +OK,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +OK,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +OK,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +OK,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +OK,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +OK,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +OK,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +OK,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +OK,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +OK,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +OK,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +OK,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +OK,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +OK,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +OK,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +OK,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +OK,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +OK,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +OK,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +OK,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +OK,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +OK,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +OK,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +OK,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +OK,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +OK,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +OK,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +OK,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +OK,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +OK,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +OK,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +OK,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +OK,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +OK,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +OK,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +OK,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +OK,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +OK,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +OK,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +OK,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +OK,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +OK,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +OK,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +OK,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +OK,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +OK,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +OK,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +OK,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +OK,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +OK,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +OK,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +OK,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +OK,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +OK,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +OK,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +OK,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +OK,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +OK,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +OK,industrial fuel use,coal,coal,2005,CO,0.069434106 +OK,industrial fuel use,coal,coal,2010,CO,0.07723114 +OK,industrial fuel use,coal,coal,2015,CO,0.068281575 +OK,industrial fuel use,coal,coal,2020,CO,0.063753622 +OK,industrial fuel use,coal,coal,2025,CO,0.065761399 +OK,industrial fuel use,coal,coal,2030,CO,0.067959367 +OK,industrial fuel use,coal,coal,2035,CO,0.069173462 +OK,industrial fuel use,coal,coal,2040,CO,0.070202866 +OK,industrial fuel use,coal,coal,2045,CO,0.071098148 +OK,industrial fuel use,coal,coal,2050,CO,0.072063393 +OK,industrial fuel use,coal,coal,2055,CO,0.072511454 +OK,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +OK,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +OK,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +OK,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +OK,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +OK,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +OK,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +OK,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +OK,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +OK,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +OK,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +OK,industrial fuel use,gas,gas,2005,CO,0.054958784 +OK,industrial fuel use,gas,gas,2010,CO,0.041119779 +OK,industrial fuel use,gas,gas,2015,CO,0.037376927 +OK,industrial fuel use,gas,gas,2020,CO,0.042196984 +OK,industrial fuel use,gas,gas,2025,CO,0.046340259 +OK,industrial fuel use,gas,gas,2030,CO,0.051044751 +OK,industrial fuel use,gas,gas,2035,CO,0.048377476 +OK,industrial fuel use,gas,gas,2040,CO,0.04844371 +OK,industrial fuel use,gas,gas,2045,CO,0.049325699 +OK,industrial fuel use,gas,gas,2050,CO,0.048085677 +OK,industrial fuel use,gas,gas,2055,CO,0.046506083 +OK,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +OK,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +OK,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +OK,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +OK,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +OK,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +OK,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +OK,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +OK,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +OK,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +OK,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +OK,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +OK,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +OK,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +OK,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +OK,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +OK,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +OK,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +OK,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +OK,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +OK,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +OK,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +OK,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +OK,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +OK,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +OK,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +OK,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +OK,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +OK,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +OK,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +OK,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +OK,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +OK,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +OK,industrial fuel use,coal,coal,2005,CH4,0.008615911 +OK,industrial fuel use,coal,coal,2010,CH4,0.007087118 +OK,industrial fuel use,coal,coal,2015,CH4,0.007645512 +OK,industrial fuel use,coal,coal,2020,CH4,0.007093206 +OK,industrial fuel use,coal,coal,2025,CH4,0.007280827 +OK,industrial fuel use,coal,coal,2030,CH4,0.007426545 +OK,industrial fuel use,coal,coal,2035,CH4,0.007524098 +OK,industrial fuel use,coal,coal,2040,CH4,0.007621441 +OK,industrial fuel use,coal,coal,2045,CH4,0.007691307 +OK,industrial fuel use,coal,coal,2050,CH4,0.007801358 +OK,industrial fuel use,coal,coal,2055,CH4,0.007871907 +OK,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +OK,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +OK,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +OK,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +OK,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +OK,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +OK,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +OK,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +OK,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +OK,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +OK,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +OK,industrial fuel use,gas,gas,2005,CH4,0.002575726 +OK,industrial fuel use,gas,gas,2010,CH4,0.0036902 +OK,industrial fuel use,gas,gas,2015,CH4,0.001847174 +OK,industrial fuel use,gas,gas,2020,CH4,0.002575374 +OK,industrial fuel use,gas,gas,2025,CH4,0.002470739 +OK,industrial fuel use,gas,gas,2030,CH4,0.002514812 +OK,industrial fuel use,gas,gas,2035,CH4,0.004402202 +OK,industrial fuel use,gas,gas,2040,CH4,0.005194877 +OK,industrial fuel use,gas,gas,2045,CH4,0.005264291 +OK,industrial fuel use,gas,gas,2050,CH4,0.006086388 +OK,industrial fuel use,gas,gas,2055,CH4,0.006850703 +OK,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +OK,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +OK,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +OK,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +OK,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +OK,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +OK,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +OK,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +OK,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +OK,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +OK,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +OK,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +OK,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +OK,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +OK,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +OK,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +OK,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +OK,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +OK,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +OK,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +OK,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +OK,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +OK,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +OK,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +OK,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +OK,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +OK,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +OK,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +OK,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +OK,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +OK,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +OK,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +OK,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +OK,industrial fuel use,coal,coal,2005,N2O,0.002945881 +OK,industrial fuel use,coal,coal,2010,N2O,0.004699422 +OK,industrial fuel use,coal,coal,2015,N2O,0.003718249 +OK,industrial fuel use,coal,coal,2020,N2O,0.003503987 +OK,industrial fuel use,coal,coal,2025,N2O,0.003902448 +OK,industrial fuel use,coal,coal,2030,N2O,0.005231917 +OK,industrial fuel use,coal,coal,2035,N2O,0.005844861 +OK,industrial fuel use,coal,coal,2040,N2O,0.006123209 +OK,industrial fuel use,coal,coal,2045,N2O,0.006493024 +OK,industrial fuel use,coal,coal,2050,N2O,0.00643187 +OK,industrial fuel use,coal,coal,2055,N2O,0.006580646 +OK,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +OK,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +OK,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +OK,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +OK,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +OK,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +OK,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +OK,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +OK,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +OK,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +OK,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +OK,industrial fuel use,gas,gas,2005,N2O,0.000509795 +OK,industrial fuel use,gas,gas,2010,N2O,0.000459136 +OK,industrial fuel use,gas,gas,2015,N2O,0.000457847 +OK,industrial fuel use,gas,gas,2020,N2O,0.000469807 +OK,industrial fuel use,gas,gas,2025,N2O,0.0004748 +OK,industrial fuel use,gas,gas,2030,N2O,0.000493269 +OK,industrial fuel use,gas,gas,2035,N2O,0.0005142 +OK,industrial fuel use,gas,gas,2040,N2O,0.000525413 +OK,industrial fuel use,gas,gas,2045,N2O,0.000530678 +OK,industrial fuel use,gas,gas,2050,N2O,0.000534097 +OK,industrial fuel use,gas,gas,2055,N2O,0.000535185 +OK,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +OK,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +OK,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +OK,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +OK,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +OK,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +OK,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +OK,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +OK,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +OK,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +OK,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +OK,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +OK,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +OK,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +OK,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +OK,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +OK,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +OK,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +OK,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +OK,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +OK,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +OK,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +OK,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +OK,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +OK,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +OK,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +OK,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +OK,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +OK,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +OK,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +OK,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +OK,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +OK,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +OK,industrial fuel use,coal,coal,2005,BC,0.052178527 +OK,industrial fuel use,coal,coal,2010,BC,0.054113893 +OK,industrial fuel use,coal,coal,2015,BC,0.054816673 +OK,industrial fuel use,coal,coal,2020,BC,0.051442317 +OK,industrial fuel use,coal,coal,2025,BC,0.05280003 +OK,industrial fuel use,coal,coal,2030,BC,0.054819383 +OK,industrial fuel use,coal,coal,2035,BC,0.055934389 +OK,industrial fuel use,coal,coal,2040,BC,0.056737391 +OK,industrial fuel use,coal,coal,2045,BC,0.057341111 +OK,industrial fuel use,coal,coal,2050,BC,0.057867944 +OK,industrial fuel use,coal,coal,2055,BC,0.058307588 +OK,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +OK,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +OK,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +OK,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +OK,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +OK,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +OK,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +OK,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +OK,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +OK,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +OK,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +OK,industrial fuel use,gas,gas,2005,BC,0.000879555 +OK,industrial fuel use,gas,gas,2010,BC,0.000594596 +OK,industrial fuel use,gas,gas,2015,BC,0.000780779 +OK,industrial fuel use,gas,gas,2020,BC,0.000758542 +OK,industrial fuel use,gas,gas,2025,BC,0.000791704 +OK,industrial fuel use,gas,gas,2030,BC,0.000829295 +OK,industrial fuel use,gas,gas,2035,BC,0.000745895 +OK,industrial fuel use,gas,gas,2040,BC,0.000739727 +OK,industrial fuel use,gas,gas,2045,BC,0.000759191 +OK,industrial fuel use,gas,gas,2050,BC,0.000728476 +OK,industrial fuel use,gas,gas,2055,BC,0.000688571 +OK,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +OK,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +OK,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +OK,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +OK,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +OK,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +OK,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +OK,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +OK,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +OK,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +OK,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +OK,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +OK,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +OK,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +OK,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +OK,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +OK,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +OK,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +OK,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +OK,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +OK,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +OK,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +OK,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +OK,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +OK,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +OK,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +OK,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +OK,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +OK,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +OK,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +OK,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +OK,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +OK,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +OK,industrial fuel use,coal,coal,2005,OC,0.004608879 +OK,industrial fuel use,coal,coal,2010,OC,0.004949044 +OK,industrial fuel use,coal,coal,2015,OC,0.005291355 +OK,industrial fuel use,coal,coal,2020,OC,0.005047635 +OK,industrial fuel use,coal,coal,2025,OC,0.005240698 +OK,industrial fuel use,coal,coal,2030,OC,0.005398598 +OK,industrial fuel use,coal,coal,2035,OC,0.005483036 +OK,industrial fuel use,coal,coal,2040,OC,0.005583473 +OK,industrial fuel use,coal,coal,2045,OC,0.005638434 +OK,industrial fuel use,coal,coal,2050,OC,0.005723515 +OK,industrial fuel use,coal,coal,2055,OC,0.005777195 +OK,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +OK,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +OK,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +OK,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +OK,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +OK,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +OK,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +OK,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +OK,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +OK,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +OK,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +OK,industrial fuel use,gas,gas,2005,OC,0.000586894 +OK,industrial fuel use,gas,gas,2010,OC,0.000538986 +OK,industrial fuel use,gas,gas,2015,OC,0.000406177 +OK,industrial fuel use,gas,gas,2020,OC,0.000436774 +OK,industrial fuel use,gas,gas,2025,OC,0.000431434 +OK,industrial fuel use,gas,gas,2030,OC,0.000454497 +OK,industrial fuel use,gas,gas,2035,OC,0.0005142 +OK,industrial fuel use,gas,gas,2040,OC,0.000542203 +OK,industrial fuel use,gas,gas,2045,OC,0.0005354 +OK,industrial fuel use,gas,gas,2050,OC,0.000552822 +OK,industrial fuel use,gas,gas,2055,OC,0.000563528 +OK,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +OK,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +OK,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +OK,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +OK,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +OK,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +OK,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +OK,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +OK,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +OK,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +OK,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +OK,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +OK,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +OK,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +OK,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +OK,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +OK,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +OK,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +OK,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +OK,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +OK,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +OK,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +OK,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +OK,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +OK,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +OK,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +OK,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +OK,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +OK,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +OK,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +OK,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +OK,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +OK,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +OK,industrial fuel use,coal,coal,2005,CO2,0.022413751 +OK,industrial fuel use,coal,coal,2010,CO2,0.023247485 +OK,industrial fuel use,coal,coal,2015,CO2,0.023542577 +OK,industrial fuel use,coal,coal,2020,CO2,0.022100946 +OK,industrial fuel use,coal,coal,2025,CO2,0.022682182 +OK,industrial fuel use,coal,coal,2030,CO2,0.023544891 +OK,industrial fuel use,coal,coal,2035,CO2,0.024022124 +OK,industrial fuel use,coal,coal,2040,CO2,0.024371859 +OK,industrial fuel use,coal,coal,2045,CO2,0.024626877 +OK,industrial fuel use,coal,coal,2050,CO2,0.024861999 +OK,industrial fuel use,coal,coal,2055,CO2,0.025047846 +OK,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +OK,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +OK,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +OK,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +OK,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +OK,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +OK,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +OK,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +OK,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +OK,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +OK,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +OK,industrial fuel use,gas,gas,2005,CO2,0.010100215 +OK,industrial fuel use,gas,gas,2010,CO2,0.008735772 +OK,industrial fuel use,gas,gas,2015,CO2,0.008975567 +OK,industrial fuel use,gas,gas,2020,CO2,0.009141549 +OK,industrial fuel use,gas,gas,2025,CO2,0.009319403 +OK,industrial fuel use,gas,gas,2030,CO2,0.009661635 +OK,industrial fuel use,gas,gas,2035,CO2,0.009858394 +OK,industrial fuel use,gas,gas,2040,CO2,0.010090146 +OK,industrial fuel use,gas,gas,2045,CO2,0.010177486 +OK,industrial fuel use,gas,gas,2050,CO2,0.010210503 +OK,industrial fuel use,gas,gas,2055,CO2,0.010168744 +OK,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +OK,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +OK,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +OK,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +OK,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +OK,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +OK,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +OK,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +OK,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +OK,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +OK,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +OK,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +OK,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +OK,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +OK,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +OK,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +OK,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +OK,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +OK,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +OK,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +OK,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +OK,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +OK,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +OK,industrial fuel use,biomass,biomass,2005,CO2,0 +OK,industrial fuel use,biomass,biomass,2010,CO2,0 +OK,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +OK,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +OK,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +OK,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +OK,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +OK,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +OK,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +OK,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +OK,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +OK,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +OK,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +OK,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +OK,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +OK,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +OK,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +OK,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +OK,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +OK,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +OK,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +OK,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +OR,industrial fuel use,coal,coal,2005,NOx,0.261565752 +OR,industrial fuel use,coal,coal,2010,NOx,0.24128762 +OR,industrial fuel use,coal,coal,2015,NOx,0.247879608 +OR,industrial fuel use,coal,coal,2020,NOx,0.234312556 +OR,industrial fuel use,coal,coal,2025,NOx,0.240398293 +OR,industrial fuel use,coal,coal,2030,NOx,0.246677964 +OR,industrial fuel use,coal,coal,2035,NOx,0.250299201 +OR,industrial fuel use,coal,coal,2040,NOx,0.253554811 +OR,industrial fuel use,coal,coal,2045,NOx,0.255578056 +OR,industrial fuel use,coal,coal,2050,NOx,0.258549854 +OR,industrial fuel use,coal,coal,2055,NOx,0.26014596 +OR,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +OR,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +OR,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +OR,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +OR,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +OR,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +OR,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +OR,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +OR,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +OR,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +OR,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +OR,industrial fuel use,gas,gas,2005,NOx,0.080919016 +OR,industrial fuel use,gas,gas,2010,NOx,0.044952568 +OR,industrial fuel use,gas,gas,2015,NOx,0.037239142 +OR,industrial fuel use,gas,gas,2020,NOx,0.040745965 +OR,industrial fuel use,gas,gas,2025,NOx,0.042574105 +OR,industrial fuel use,gas,gas,2030,NOx,0.045347383 +OR,industrial fuel use,gas,gas,2035,NOx,0.048574619 +OR,industrial fuel use,gas,gas,2040,NOx,0.050422899 +OR,industrial fuel use,gas,gas,2045,NOx,0.050680722 +OR,industrial fuel use,gas,gas,2050,NOx,0.0517343 +OR,industrial fuel use,gas,gas,2055,NOx,0.052443137 +OR,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +OR,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +OR,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +OR,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +OR,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +OR,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +OR,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +OR,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +OR,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +OR,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +OR,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +OR,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +OR,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +OR,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +OR,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +OR,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +OR,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +OR,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +OR,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +OR,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +OR,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +OR,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +OR,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +OR,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +OR,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +OR,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +OR,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +OR,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +OR,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +OR,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +OR,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +OR,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +OR,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +OR,industrial fuel use,coal,coal,2005,SO2,0.709862367 +OR,industrial fuel use,coal,coal,2010,SO2,0.679592789 +OR,industrial fuel use,coal,coal,2015,SO2,0.590904591 +OR,industrial fuel use,coal,coal,2020,SO2,0.549595621 +OR,industrial fuel use,coal,coal,2025,SO2,0.56430149 +OR,industrial fuel use,coal,coal,2030,SO2,0.576548046 +OR,industrial fuel use,coal,coal,2035,SO2,0.583595424 +OR,industrial fuel use,coal,coal,2040,SO2,0.590805881 +OR,industrial fuel use,coal,coal,2045,SO2,0.596410723 +OR,industrial fuel use,coal,coal,2050,SO2,0.606154195 +OR,industrial fuel use,coal,coal,2055,SO2,0.611234923 +OR,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +OR,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +OR,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +OR,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +OR,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +OR,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +OR,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +OR,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +OR,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +OR,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +OR,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +OR,industrial fuel use,gas,gas,2005,SO2,0.000213988 +OR,industrial fuel use,gas,gas,2010,SO2,0.002761946 +OR,industrial fuel use,gas,gas,2015,SO2,0.002854723 +OR,industrial fuel use,gas,gas,2020,SO2,0.002771127 +OR,industrial fuel use,gas,gas,2025,SO2,0.002798763 +OR,industrial fuel use,gas,gas,2030,SO2,0.002938075 +OR,industrial fuel use,gas,gas,2035,SO2,0.003016098 +OR,industrial fuel use,gas,gas,2040,SO2,0.003118901 +OR,industrial fuel use,gas,gas,2045,SO2,0.00311325 +OR,industrial fuel use,gas,gas,2050,SO2,0.003090451 +OR,industrial fuel use,gas,gas,2055,SO2,0.003025213 +OR,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +OR,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +OR,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +OR,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +OR,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +OR,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +OR,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +OR,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +OR,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +OR,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +OR,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +OR,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +OR,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +OR,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +OR,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +OR,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +OR,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +OR,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +OR,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +OR,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +OR,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +OR,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +OR,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +OR,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +OR,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +OR,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +OR,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +OR,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +OR,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +OR,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +OR,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +OR,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +OR,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +OR,industrial fuel use,coal,coal,2005,PM10,0.136452905 +OR,industrial fuel use,coal,coal,2010,PM10,0.093662835 +OR,industrial fuel use,coal,coal,2015,PM10,0.100887759 +OR,industrial fuel use,coal,coal,2020,PM10,0.094503476 +OR,industrial fuel use,coal,coal,2025,PM10,0.09752377 +OR,industrial fuel use,coal,coal,2030,PM10,0.099823133 +OR,industrial fuel use,coal,coal,2035,PM10,0.101097535 +OR,industrial fuel use,coal,coal,2040,PM10,0.102438117 +OR,industrial fuel use,coal,coal,2045,PM10,0.103553978 +OR,industrial fuel use,coal,coal,2050,PM10,0.105393893 +OR,industrial fuel use,coal,coal,2055,PM10,0.106304221 +OR,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +OR,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +OR,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +OR,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +OR,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +OR,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +OR,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +OR,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +OR,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +OR,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +OR,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +OR,industrial fuel use,gas,gas,2005,PM10,0.002144603 +OR,industrial fuel use,gas,gas,2010,PM10,0.004157892 +OR,industrial fuel use,gas,gas,2015,PM10,0.004308637 +OR,industrial fuel use,gas,gas,2020,PM10,0.004261296 +OR,industrial fuel use,gas,gas,2025,PM10,0.004334357 +OR,industrial fuel use,gas,gas,2030,PM10,0.00454497 +OR,industrial fuel use,gas,gas,2035,PM10,0.004581054 +OR,industrial fuel use,gas,gas,2040,PM10,0.004690204 +OR,industrial fuel use,gas,gas,2045,PM10,0.004695842 +OR,industrial fuel use,gas,gas,2050,PM10,0.004649052 +OR,industrial fuel use,gas,gas,2055,PM10,0.00454824 +OR,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +OR,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +OR,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +OR,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +OR,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +OR,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +OR,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +OR,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +OR,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +OR,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +OR,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +OR,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +OR,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +OR,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +OR,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +OR,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +OR,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +OR,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +OR,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +OR,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +OR,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +OR,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +OR,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +OR,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +OR,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +OR,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +OR,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +OR,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +OR,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +OR,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +OR,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +OR,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +OR,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +OR,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +OR,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +OR,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +OR,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +OR,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +OR,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +OR,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +OR,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +OR,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +OR,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +OR,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +OR,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +OR,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +OR,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +OR,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +OR,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +OR,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +OR,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +OR,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +OR,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +OR,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +OR,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +OR,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +OR,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +OR,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +OR,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +OR,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +OR,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +OR,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +OR,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +OR,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +OR,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +OR,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +OR,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +OR,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +OR,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +OR,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +OR,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +OR,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +OR,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +OR,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +OR,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +OR,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +OR,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +OR,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +OR,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +OR,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +OR,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +OR,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +OR,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +OR,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +OR,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +OR,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +OR,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +OR,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +OR,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +OR,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +OR,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +OR,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +OR,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +OR,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +OR,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +OR,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +OR,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +OR,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +OR,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +OR,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +OR,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +OR,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +OR,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +OR,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +OR,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +OR,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +OR,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +OR,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +OR,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +OR,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +OR,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +OR,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +OR,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +OR,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +OR,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +OR,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +OR,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +OR,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +OR,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +OR,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +OR,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +OR,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +OR,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +OR,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +OR,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +OR,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +OR,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +OR,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +OR,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +OR,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +OR,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +OR,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +OR,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +OR,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +OR,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +OR,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +OR,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +OR,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +OR,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +OR,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +OR,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +OR,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +OR,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +OR,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +OR,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +OR,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +OR,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +OR,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +OR,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +OR,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +OR,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +OR,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +OR,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +OR,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +OR,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +OR,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +OR,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +OR,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +OR,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +OR,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +OR,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +OR,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +OR,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +OR,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +OR,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +OR,industrial fuel use,coal,coal,2005,CO,0.069434106 +OR,industrial fuel use,coal,coal,2010,CO,0.07723114 +OR,industrial fuel use,coal,coal,2015,CO,0.068281575 +OR,industrial fuel use,coal,coal,2020,CO,0.063753622 +OR,industrial fuel use,coal,coal,2025,CO,0.065761399 +OR,industrial fuel use,coal,coal,2030,CO,0.067959367 +OR,industrial fuel use,coal,coal,2035,CO,0.069173462 +OR,industrial fuel use,coal,coal,2040,CO,0.070202866 +OR,industrial fuel use,coal,coal,2045,CO,0.071098148 +OR,industrial fuel use,coal,coal,2050,CO,0.072063393 +OR,industrial fuel use,coal,coal,2055,CO,0.072511454 +OR,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +OR,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +OR,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +OR,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +OR,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +OR,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +OR,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +OR,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +OR,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +OR,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +OR,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +OR,industrial fuel use,gas,gas,2005,CO,0.054958784 +OR,industrial fuel use,gas,gas,2010,CO,0.041119779 +OR,industrial fuel use,gas,gas,2015,CO,0.037376927 +OR,industrial fuel use,gas,gas,2020,CO,0.042196984 +OR,industrial fuel use,gas,gas,2025,CO,0.046340259 +OR,industrial fuel use,gas,gas,2030,CO,0.051044751 +OR,industrial fuel use,gas,gas,2035,CO,0.048377476 +OR,industrial fuel use,gas,gas,2040,CO,0.04844371 +OR,industrial fuel use,gas,gas,2045,CO,0.049325699 +OR,industrial fuel use,gas,gas,2050,CO,0.048085677 +OR,industrial fuel use,gas,gas,2055,CO,0.046506083 +OR,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +OR,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +OR,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +OR,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +OR,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +OR,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +OR,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +OR,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +OR,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +OR,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +OR,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +OR,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +OR,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +OR,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +OR,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +OR,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +OR,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +OR,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +OR,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +OR,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +OR,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +OR,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +OR,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +OR,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +OR,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +OR,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +OR,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +OR,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +OR,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +OR,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +OR,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +OR,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +OR,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +OR,industrial fuel use,coal,coal,2005,CH4,0.008615911 +OR,industrial fuel use,coal,coal,2010,CH4,0.007087118 +OR,industrial fuel use,coal,coal,2015,CH4,0.007645512 +OR,industrial fuel use,coal,coal,2020,CH4,0.007093206 +OR,industrial fuel use,coal,coal,2025,CH4,0.007280827 +OR,industrial fuel use,coal,coal,2030,CH4,0.007426545 +OR,industrial fuel use,coal,coal,2035,CH4,0.007524098 +OR,industrial fuel use,coal,coal,2040,CH4,0.007621441 +OR,industrial fuel use,coal,coal,2045,CH4,0.007691307 +OR,industrial fuel use,coal,coal,2050,CH4,0.007801358 +OR,industrial fuel use,coal,coal,2055,CH4,0.007871907 +OR,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +OR,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +OR,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +OR,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +OR,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +OR,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +OR,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +OR,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +OR,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +OR,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +OR,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +OR,industrial fuel use,gas,gas,2005,CH4,0.002575726 +OR,industrial fuel use,gas,gas,2010,CH4,0.0036902 +OR,industrial fuel use,gas,gas,2015,CH4,0.001847174 +OR,industrial fuel use,gas,gas,2020,CH4,0.002575374 +OR,industrial fuel use,gas,gas,2025,CH4,0.002470739 +OR,industrial fuel use,gas,gas,2030,CH4,0.002514812 +OR,industrial fuel use,gas,gas,2035,CH4,0.004402202 +OR,industrial fuel use,gas,gas,2040,CH4,0.005194877 +OR,industrial fuel use,gas,gas,2045,CH4,0.005264291 +OR,industrial fuel use,gas,gas,2050,CH4,0.006086388 +OR,industrial fuel use,gas,gas,2055,CH4,0.006850703 +OR,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +OR,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +OR,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +OR,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +OR,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +OR,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +OR,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +OR,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +OR,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +OR,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +OR,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +OR,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +OR,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +OR,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +OR,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +OR,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +OR,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +OR,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +OR,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +OR,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +OR,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +OR,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +OR,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +OR,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +OR,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +OR,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +OR,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +OR,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +OR,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +OR,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +OR,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +OR,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +OR,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +OR,industrial fuel use,coal,coal,2005,N2O,0.002945881 +OR,industrial fuel use,coal,coal,2010,N2O,0.004699422 +OR,industrial fuel use,coal,coal,2015,N2O,0.003718249 +OR,industrial fuel use,coal,coal,2020,N2O,0.003503987 +OR,industrial fuel use,coal,coal,2025,N2O,0.003902448 +OR,industrial fuel use,coal,coal,2030,N2O,0.005231917 +OR,industrial fuel use,coal,coal,2035,N2O,0.005844861 +OR,industrial fuel use,coal,coal,2040,N2O,0.006123209 +OR,industrial fuel use,coal,coal,2045,N2O,0.006493024 +OR,industrial fuel use,coal,coal,2050,N2O,0.00643187 +OR,industrial fuel use,coal,coal,2055,N2O,0.006580646 +OR,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +OR,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +OR,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +OR,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +OR,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +OR,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +OR,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +OR,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +OR,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +OR,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +OR,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +OR,industrial fuel use,gas,gas,2005,N2O,0.000509795 +OR,industrial fuel use,gas,gas,2010,N2O,0.000459136 +OR,industrial fuel use,gas,gas,2015,N2O,0.000457847 +OR,industrial fuel use,gas,gas,2020,N2O,0.000469807 +OR,industrial fuel use,gas,gas,2025,N2O,0.0004748 +OR,industrial fuel use,gas,gas,2030,N2O,0.000493269 +OR,industrial fuel use,gas,gas,2035,N2O,0.0005142 +OR,industrial fuel use,gas,gas,2040,N2O,0.000525413 +OR,industrial fuel use,gas,gas,2045,N2O,0.000530678 +OR,industrial fuel use,gas,gas,2050,N2O,0.000534097 +OR,industrial fuel use,gas,gas,2055,N2O,0.000535185 +OR,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +OR,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +OR,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +OR,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +OR,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +OR,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +OR,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +OR,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +OR,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +OR,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +OR,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +OR,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +OR,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +OR,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +OR,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +OR,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +OR,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +OR,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +OR,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +OR,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +OR,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +OR,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +OR,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +OR,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +OR,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +OR,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +OR,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +OR,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +OR,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +OR,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +OR,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +OR,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +OR,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +OR,industrial fuel use,coal,coal,2005,BC,0.052178527 +OR,industrial fuel use,coal,coal,2010,BC,0.054113893 +OR,industrial fuel use,coal,coal,2015,BC,0.054816673 +OR,industrial fuel use,coal,coal,2020,BC,0.051442317 +OR,industrial fuel use,coal,coal,2025,BC,0.05280003 +OR,industrial fuel use,coal,coal,2030,BC,0.054819383 +OR,industrial fuel use,coal,coal,2035,BC,0.055934389 +OR,industrial fuel use,coal,coal,2040,BC,0.056737391 +OR,industrial fuel use,coal,coal,2045,BC,0.057341111 +OR,industrial fuel use,coal,coal,2050,BC,0.057867944 +OR,industrial fuel use,coal,coal,2055,BC,0.058307588 +OR,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +OR,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +OR,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +OR,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +OR,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +OR,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +OR,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +OR,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +OR,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +OR,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +OR,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +OR,industrial fuel use,gas,gas,2005,BC,0.000879555 +OR,industrial fuel use,gas,gas,2010,BC,0.000594596 +OR,industrial fuel use,gas,gas,2015,BC,0.000780779 +OR,industrial fuel use,gas,gas,2020,BC,0.000758542 +OR,industrial fuel use,gas,gas,2025,BC,0.000791704 +OR,industrial fuel use,gas,gas,2030,BC,0.000829295 +OR,industrial fuel use,gas,gas,2035,BC,0.000745895 +OR,industrial fuel use,gas,gas,2040,BC,0.000739727 +OR,industrial fuel use,gas,gas,2045,BC,0.000759191 +OR,industrial fuel use,gas,gas,2050,BC,0.000728476 +OR,industrial fuel use,gas,gas,2055,BC,0.000688571 +OR,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +OR,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +OR,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +OR,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +OR,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +OR,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +OR,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +OR,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +OR,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +OR,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +OR,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +OR,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +OR,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +OR,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +OR,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +OR,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +OR,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +OR,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +OR,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +OR,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +OR,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +OR,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +OR,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +OR,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +OR,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +OR,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +OR,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +OR,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +OR,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +OR,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +OR,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +OR,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +OR,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +OR,industrial fuel use,coal,coal,2005,OC,0.004608879 +OR,industrial fuel use,coal,coal,2010,OC,0.004949044 +OR,industrial fuel use,coal,coal,2015,OC,0.005291355 +OR,industrial fuel use,coal,coal,2020,OC,0.005047635 +OR,industrial fuel use,coal,coal,2025,OC,0.005240698 +OR,industrial fuel use,coal,coal,2030,OC,0.005398598 +OR,industrial fuel use,coal,coal,2035,OC,0.005483036 +OR,industrial fuel use,coal,coal,2040,OC,0.005583473 +OR,industrial fuel use,coal,coal,2045,OC,0.005638434 +OR,industrial fuel use,coal,coal,2050,OC,0.005723515 +OR,industrial fuel use,coal,coal,2055,OC,0.005777195 +OR,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +OR,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +OR,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +OR,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +OR,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +OR,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +OR,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +OR,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +OR,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +OR,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +OR,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +OR,industrial fuel use,gas,gas,2005,OC,0.000586894 +OR,industrial fuel use,gas,gas,2010,OC,0.000538986 +OR,industrial fuel use,gas,gas,2015,OC,0.000406177 +OR,industrial fuel use,gas,gas,2020,OC,0.000436774 +OR,industrial fuel use,gas,gas,2025,OC,0.000431434 +OR,industrial fuel use,gas,gas,2030,OC,0.000454497 +OR,industrial fuel use,gas,gas,2035,OC,0.0005142 +OR,industrial fuel use,gas,gas,2040,OC,0.000542203 +OR,industrial fuel use,gas,gas,2045,OC,0.0005354 +OR,industrial fuel use,gas,gas,2050,OC,0.000552822 +OR,industrial fuel use,gas,gas,2055,OC,0.000563528 +OR,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +OR,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +OR,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +OR,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +OR,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +OR,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +OR,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +OR,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +OR,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +OR,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +OR,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +OR,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +OR,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +OR,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +OR,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +OR,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +OR,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +OR,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +OR,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +OR,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +OR,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +OR,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +OR,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +OR,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +OR,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +OR,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +OR,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +OR,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +OR,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +OR,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +OR,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +OR,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +OR,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +OR,industrial fuel use,coal,coal,2005,CO2,0.022413751 +OR,industrial fuel use,coal,coal,2010,CO2,0.023247485 +OR,industrial fuel use,coal,coal,2015,CO2,0.023542577 +OR,industrial fuel use,coal,coal,2020,CO2,0.022100946 +OR,industrial fuel use,coal,coal,2025,CO2,0.022682182 +OR,industrial fuel use,coal,coal,2030,CO2,0.023544891 +OR,industrial fuel use,coal,coal,2035,CO2,0.024022124 +OR,industrial fuel use,coal,coal,2040,CO2,0.024371859 +OR,industrial fuel use,coal,coal,2045,CO2,0.024626877 +OR,industrial fuel use,coal,coal,2050,CO2,0.024861999 +OR,industrial fuel use,coal,coal,2055,CO2,0.025047846 +OR,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +OR,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +OR,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +OR,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +OR,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +OR,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +OR,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +OR,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +OR,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +OR,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +OR,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +OR,industrial fuel use,gas,gas,2005,CO2,0.010100215 +OR,industrial fuel use,gas,gas,2010,CO2,0.008735772 +OR,industrial fuel use,gas,gas,2015,CO2,0.008975567 +OR,industrial fuel use,gas,gas,2020,CO2,0.009141549 +OR,industrial fuel use,gas,gas,2025,CO2,0.009319403 +OR,industrial fuel use,gas,gas,2030,CO2,0.009661635 +OR,industrial fuel use,gas,gas,2035,CO2,0.009858394 +OR,industrial fuel use,gas,gas,2040,CO2,0.010090146 +OR,industrial fuel use,gas,gas,2045,CO2,0.010177486 +OR,industrial fuel use,gas,gas,2050,CO2,0.010210503 +OR,industrial fuel use,gas,gas,2055,CO2,0.010168744 +OR,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +OR,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +OR,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +OR,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +OR,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +OR,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +OR,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +OR,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +OR,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +OR,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +OR,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +OR,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +OR,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +OR,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +OR,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +OR,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +OR,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +OR,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +OR,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +OR,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +OR,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +OR,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +OR,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +OR,industrial fuel use,biomass,biomass,2005,CO2,0 +OR,industrial fuel use,biomass,biomass,2010,CO2,0 +OR,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +OR,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +OR,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +OR,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +OR,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +OR,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +OR,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +OR,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +OR,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +OR,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +OR,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +OR,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +OR,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +OR,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +OR,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +OR,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +OR,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +OR,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +OR,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +OR,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +PA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +PA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +PA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +PA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +PA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +PA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +PA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +PA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +PA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +PA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +PA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +PA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +PA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +PA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +PA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +PA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +PA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +PA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +PA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +PA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +PA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +PA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +PA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +PA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +PA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +PA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +PA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +PA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +PA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +PA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +PA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +PA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +PA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +PA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +PA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +PA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +PA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +PA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +PA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +PA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +PA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +PA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +PA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +PA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +PA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +PA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +PA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +PA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +PA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +PA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +PA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +PA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +PA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +PA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +PA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +PA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +PA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +PA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +PA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +PA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +PA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +PA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +PA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +PA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +PA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +PA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +PA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +PA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +PA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +PA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +PA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +PA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +PA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +PA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +PA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +PA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +PA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +PA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +PA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +PA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +PA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +PA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +PA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +PA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +PA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +PA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +PA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +PA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +PA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +PA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +PA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +PA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +PA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +PA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +PA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +PA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +PA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +PA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +PA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +PA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +PA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +PA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +PA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +PA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +PA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +PA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +PA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +PA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +PA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +PA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +PA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +PA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +PA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +PA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +PA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +PA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +PA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +PA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +PA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +PA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +PA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +PA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +PA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +PA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +PA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +PA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +PA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +PA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +PA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +PA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +PA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +PA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +PA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +PA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +PA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +PA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +PA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +PA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +PA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +PA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +PA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +PA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +PA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +PA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +PA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +PA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +PA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +PA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +PA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +PA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +PA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +PA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +PA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +PA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +PA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +PA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +PA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +PA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +PA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +PA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +PA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +PA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +PA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +PA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +PA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +PA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +PA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +PA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +PA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +PA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +PA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +PA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +PA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +PA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +PA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +PA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +PA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +PA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +PA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +PA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +PA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +PA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +PA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +PA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +PA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +PA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +PA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +PA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +PA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +PA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +PA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +PA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +PA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +PA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +PA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +PA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +PA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +PA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +PA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +PA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +PA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +PA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +PA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +PA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +PA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +PA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +PA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +PA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +PA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +PA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +PA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +PA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +PA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +PA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +PA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +PA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +PA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +PA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +PA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +PA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +PA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +PA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +PA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +PA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +PA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +PA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +PA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +PA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +PA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +PA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +PA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +PA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +PA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +PA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +PA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +PA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +PA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +PA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +PA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +PA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +PA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +PA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +PA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +PA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +PA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +PA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +PA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +PA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +PA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +PA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +PA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +PA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +PA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +PA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +PA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +PA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +PA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +PA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +PA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +PA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +PA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +PA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +PA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +PA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +PA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +PA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +PA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +PA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +PA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +PA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +PA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +PA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +PA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +PA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +PA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +PA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +PA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +PA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +PA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +PA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +PA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +PA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +PA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +PA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +PA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +PA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +PA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +PA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +PA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +PA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +PA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +PA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +PA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +PA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +PA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +PA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +PA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +PA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +PA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +PA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +PA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +PA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +PA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +PA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +PA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +PA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +PA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +PA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +PA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +PA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +PA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +PA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +PA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +PA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +PA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +PA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +PA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +PA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +PA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +PA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +PA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +PA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +PA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +PA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +PA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +PA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +PA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +PA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +PA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +PA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +PA,industrial fuel use,coal,coal,2005,CO,0.069434106 +PA,industrial fuel use,coal,coal,2010,CO,0.07723114 +PA,industrial fuel use,coal,coal,2015,CO,0.068281575 +PA,industrial fuel use,coal,coal,2020,CO,0.063753622 +PA,industrial fuel use,coal,coal,2025,CO,0.065761399 +PA,industrial fuel use,coal,coal,2030,CO,0.067959367 +PA,industrial fuel use,coal,coal,2035,CO,0.069173462 +PA,industrial fuel use,coal,coal,2040,CO,0.070202866 +PA,industrial fuel use,coal,coal,2045,CO,0.071098148 +PA,industrial fuel use,coal,coal,2050,CO,0.072063393 +PA,industrial fuel use,coal,coal,2055,CO,0.072511454 +PA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +PA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +PA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +PA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +PA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +PA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +PA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +PA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +PA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +PA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +PA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +PA,industrial fuel use,gas,gas,2005,CO,0.054958784 +PA,industrial fuel use,gas,gas,2010,CO,0.041119779 +PA,industrial fuel use,gas,gas,2015,CO,0.037376927 +PA,industrial fuel use,gas,gas,2020,CO,0.042196984 +PA,industrial fuel use,gas,gas,2025,CO,0.046340259 +PA,industrial fuel use,gas,gas,2030,CO,0.051044751 +PA,industrial fuel use,gas,gas,2035,CO,0.048377476 +PA,industrial fuel use,gas,gas,2040,CO,0.04844371 +PA,industrial fuel use,gas,gas,2045,CO,0.049325699 +PA,industrial fuel use,gas,gas,2050,CO,0.048085677 +PA,industrial fuel use,gas,gas,2055,CO,0.046506083 +PA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +PA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +PA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +PA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +PA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +PA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +PA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +PA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +PA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +PA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +PA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +PA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +PA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +PA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +PA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +PA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +PA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +PA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +PA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +PA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +PA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +PA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +PA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +PA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +PA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +PA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +PA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +PA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +PA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +PA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +PA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +PA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +PA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +PA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +PA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +PA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +PA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +PA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +PA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +PA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +PA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +PA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +PA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +PA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +PA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +PA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +PA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +PA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +PA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +PA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +PA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +PA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +PA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +PA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +PA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +PA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +PA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +PA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +PA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +PA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +PA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +PA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +PA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +PA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +PA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +PA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +PA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +PA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +PA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +PA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +PA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +PA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +PA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +PA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +PA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +PA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +PA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +PA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +PA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +PA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +PA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +PA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +PA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +PA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +PA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +PA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +PA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +PA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +PA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +PA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +PA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +PA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +PA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +PA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +PA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +PA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +PA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +PA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +PA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +PA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +PA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +PA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +PA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +PA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +PA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +PA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +PA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +PA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +PA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +PA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +PA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +PA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +PA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +PA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +PA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +PA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +PA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +PA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +PA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +PA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +PA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +PA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +PA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +PA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +PA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +PA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +PA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +PA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +PA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +PA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +PA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +PA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +PA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +PA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +PA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +PA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +PA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +PA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +PA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +PA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +PA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +PA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +PA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +PA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +PA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +PA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +PA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +PA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +PA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +PA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +PA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +PA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +PA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +PA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +PA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +PA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +PA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +PA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +PA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +PA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +PA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +PA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +PA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +PA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +PA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +PA,industrial fuel use,coal,coal,2005,BC,0.052178527 +PA,industrial fuel use,coal,coal,2010,BC,0.054113893 +PA,industrial fuel use,coal,coal,2015,BC,0.054816673 +PA,industrial fuel use,coal,coal,2020,BC,0.051442317 +PA,industrial fuel use,coal,coal,2025,BC,0.05280003 +PA,industrial fuel use,coal,coal,2030,BC,0.054819383 +PA,industrial fuel use,coal,coal,2035,BC,0.055934389 +PA,industrial fuel use,coal,coal,2040,BC,0.056737391 +PA,industrial fuel use,coal,coal,2045,BC,0.057341111 +PA,industrial fuel use,coal,coal,2050,BC,0.057867944 +PA,industrial fuel use,coal,coal,2055,BC,0.058307588 +PA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +PA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +PA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +PA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +PA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +PA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +PA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +PA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +PA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +PA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +PA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +PA,industrial fuel use,gas,gas,2005,BC,0.000879555 +PA,industrial fuel use,gas,gas,2010,BC,0.000594596 +PA,industrial fuel use,gas,gas,2015,BC,0.000780779 +PA,industrial fuel use,gas,gas,2020,BC,0.000758542 +PA,industrial fuel use,gas,gas,2025,BC,0.000791704 +PA,industrial fuel use,gas,gas,2030,BC,0.000829295 +PA,industrial fuel use,gas,gas,2035,BC,0.000745895 +PA,industrial fuel use,gas,gas,2040,BC,0.000739727 +PA,industrial fuel use,gas,gas,2045,BC,0.000759191 +PA,industrial fuel use,gas,gas,2050,BC,0.000728476 +PA,industrial fuel use,gas,gas,2055,BC,0.000688571 +PA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +PA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +PA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +PA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +PA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +PA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +PA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +PA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +PA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +PA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +PA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +PA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +PA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +PA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +PA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +PA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +PA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +PA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +PA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +PA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +PA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +PA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +PA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +PA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +PA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +PA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +PA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +PA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +PA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +PA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +PA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +PA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +PA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +PA,industrial fuel use,coal,coal,2005,OC,0.004608879 +PA,industrial fuel use,coal,coal,2010,OC,0.004949044 +PA,industrial fuel use,coal,coal,2015,OC,0.005291355 +PA,industrial fuel use,coal,coal,2020,OC,0.005047635 +PA,industrial fuel use,coal,coal,2025,OC,0.005240698 +PA,industrial fuel use,coal,coal,2030,OC,0.005398598 +PA,industrial fuel use,coal,coal,2035,OC,0.005483036 +PA,industrial fuel use,coal,coal,2040,OC,0.005583473 +PA,industrial fuel use,coal,coal,2045,OC,0.005638434 +PA,industrial fuel use,coal,coal,2050,OC,0.005723515 +PA,industrial fuel use,coal,coal,2055,OC,0.005777195 +PA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +PA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +PA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +PA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +PA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +PA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +PA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +PA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +PA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +PA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +PA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +PA,industrial fuel use,gas,gas,2005,OC,0.000586894 +PA,industrial fuel use,gas,gas,2010,OC,0.000538986 +PA,industrial fuel use,gas,gas,2015,OC,0.000406177 +PA,industrial fuel use,gas,gas,2020,OC,0.000436774 +PA,industrial fuel use,gas,gas,2025,OC,0.000431434 +PA,industrial fuel use,gas,gas,2030,OC,0.000454497 +PA,industrial fuel use,gas,gas,2035,OC,0.0005142 +PA,industrial fuel use,gas,gas,2040,OC,0.000542203 +PA,industrial fuel use,gas,gas,2045,OC,0.0005354 +PA,industrial fuel use,gas,gas,2050,OC,0.000552822 +PA,industrial fuel use,gas,gas,2055,OC,0.000563528 +PA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +PA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +PA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +PA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +PA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +PA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +PA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +PA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +PA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +PA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +PA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +PA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +PA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +PA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +PA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +PA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +PA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +PA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +PA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +PA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +PA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +PA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +PA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +PA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +PA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +PA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +PA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +PA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +PA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +PA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +PA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +PA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +PA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +PA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +PA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +PA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +PA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +PA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +PA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +PA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +PA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +PA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +PA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +PA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +PA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +PA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +PA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +PA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +PA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +PA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +PA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +PA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +PA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +PA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +PA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +PA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +PA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +PA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +PA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +PA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +PA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +PA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +PA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +PA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +PA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +PA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +PA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +PA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +PA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +PA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +PA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +PA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +PA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +PA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +PA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +PA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +PA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +PA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +PA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +PA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +PA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +PA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +PA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +PA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +PA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +PA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +PA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +PA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +PA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +PA,industrial fuel use,biomass,biomass,2005,CO2,0 +PA,industrial fuel use,biomass,biomass,2010,CO2,0 +PA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +PA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +PA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +PA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +PA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +PA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +PA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +PA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +PA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +PA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +PA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +PA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +PA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +PA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +PA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +PA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +PA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +PA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +PA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +PA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +RI,industrial fuel use,coal,coal,2005,NOx,0.261565752 +RI,industrial fuel use,coal,coal,2010,NOx,0.24128762 +RI,industrial fuel use,coal,coal,2015,NOx,0.247879608 +RI,industrial fuel use,coal,coal,2020,NOx,0.234312556 +RI,industrial fuel use,coal,coal,2025,NOx,0.240398293 +RI,industrial fuel use,coal,coal,2030,NOx,0.246677964 +RI,industrial fuel use,coal,coal,2035,NOx,0.250299201 +RI,industrial fuel use,coal,coal,2040,NOx,0.253554811 +RI,industrial fuel use,coal,coal,2045,NOx,0.255578056 +RI,industrial fuel use,coal,coal,2050,NOx,0.258549854 +RI,industrial fuel use,coal,coal,2055,NOx,0.26014596 +RI,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +RI,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +RI,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +RI,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +RI,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +RI,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +RI,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +RI,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +RI,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +RI,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +RI,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +RI,industrial fuel use,gas,gas,2005,NOx,0.080919016 +RI,industrial fuel use,gas,gas,2010,NOx,0.044952568 +RI,industrial fuel use,gas,gas,2015,NOx,0.037239142 +RI,industrial fuel use,gas,gas,2020,NOx,0.040745965 +RI,industrial fuel use,gas,gas,2025,NOx,0.042574105 +RI,industrial fuel use,gas,gas,2030,NOx,0.045347383 +RI,industrial fuel use,gas,gas,2035,NOx,0.048574619 +RI,industrial fuel use,gas,gas,2040,NOx,0.050422899 +RI,industrial fuel use,gas,gas,2045,NOx,0.050680722 +RI,industrial fuel use,gas,gas,2050,NOx,0.0517343 +RI,industrial fuel use,gas,gas,2055,NOx,0.052443137 +RI,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +RI,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +RI,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +RI,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +RI,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +RI,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +RI,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +RI,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +RI,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +RI,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +RI,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +RI,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +RI,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +RI,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +RI,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +RI,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +RI,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +RI,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +RI,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +RI,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +RI,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +RI,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +RI,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +RI,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +RI,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +RI,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +RI,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +RI,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +RI,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +RI,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +RI,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +RI,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +RI,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +RI,industrial fuel use,coal,coal,2005,SO2,0.709862367 +RI,industrial fuel use,coal,coal,2010,SO2,0.679592789 +RI,industrial fuel use,coal,coal,2015,SO2,0.590904591 +RI,industrial fuel use,coal,coal,2020,SO2,0.549595621 +RI,industrial fuel use,coal,coal,2025,SO2,0.56430149 +RI,industrial fuel use,coal,coal,2030,SO2,0.576548046 +RI,industrial fuel use,coal,coal,2035,SO2,0.583595424 +RI,industrial fuel use,coal,coal,2040,SO2,0.590805881 +RI,industrial fuel use,coal,coal,2045,SO2,0.596410723 +RI,industrial fuel use,coal,coal,2050,SO2,0.606154195 +RI,industrial fuel use,coal,coal,2055,SO2,0.611234923 +RI,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +RI,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +RI,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +RI,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +RI,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +RI,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +RI,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +RI,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +RI,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +RI,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +RI,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +RI,industrial fuel use,gas,gas,2005,SO2,0.000213988 +RI,industrial fuel use,gas,gas,2010,SO2,0.002761946 +RI,industrial fuel use,gas,gas,2015,SO2,0.002854723 +RI,industrial fuel use,gas,gas,2020,SO2,0.002771127 +RI,industrial fuel use,gas,gas,2025,SO2,0.002798763 +RI,industrial fuel use,gas,gas,2030,SO2,0.002938075 +RI,industrial fuel use,gas,gas,2035,SO2,0.003016098 +RI,industrial fuel use,gas,gas,2040,SO2,0.003118901 +RI,industrial fuel use,gas,gas,2045,SO2,0.00311325 +RI,industrial fuel use,gas,gas,2050,SO2,0.003090451 +RI,industrial fuel use,gas,gas,2055,SO2,0.003025213 +RI,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +RI,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +RI,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +RI,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +RI,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +RI,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +RI,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +RI,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +RI,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +RI,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +RI,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +RI,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +RI,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +RI,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +RI,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +RI,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +RI,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +RI,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +RI,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +RI,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +RI,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +RI,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +RI,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +RI,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +RI,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +RI,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +RI,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +RI,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +RI,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +RI,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +RI,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +RI,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +RI,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +RI,industrial fuel use,coal,coal,2005,PM10,0.136452905 +RI,industrial fuel use,coal,coal,2010,PM10,0.093662835 +RI,industrial fuel use,coal,coal,2015,PM10,0.100887759 +RI,industrial fuel use,coal,coal,2020,PM10,0.094503476 +RI,industrial fuel use,coal,coal,2025,PM10,0.09752377 +RI,industrial fuel use,coal,coal,2030,PM10,0.099823133 +RI,industrial fuel use,coal,coal,2035,PM10,0.101097535 +RI,industrial fuel use,coal,coal,2040,PM10,0.102438117 +RI,industrial fuel use,coal,coal,2045,PM10,0.103553978 +RI,industrial fuel use,coal,coal,2050,PM10,0.105393893 +RI,industrial fuel use,coal,coal,2055,PM10,0.106304221 +RI,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +RI,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +RI,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +RI,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +RI,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +RI,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +RI,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +RI,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +RI,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +RI,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +RI,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +RI,industrial fuel use,gas,gas,2005,PM10,0.002144603 +RI,industrial fuel use,gas,gas,2010,PM10,0.004157892 +RI,industrial fuel use,gas,gas,2015,PM10,0.004308637 +RI,industrial fuel use,gas,gas,2020,PM10,0.004261296 +RI,industrial fuel use,gas,gas,2025,PM10,0.004334357 +RI,industrial fuel use,gas,gas,2030,PM10,0.00454497 +RI,industrial fuel use,gas,gas,2035,PM10,0.004581054 +RI,industrial fuel use,gas,gas,2040,PM10,0.004690204 +RI,industrial fuel use,gas,gas,2045,PM10,0.004695842 +RI,industrial fuel use,gas,gas,2050,PM10,0.004649052 +RI,industrial fuel use,gas,gas,2055,PM10,0.00454824 +RI,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +RI,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +RI,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +RI,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +RI,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +RI,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +RI,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +RI,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +RI,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +RI,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +RI,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +RI,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +RI,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +RI,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +RI,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +RI,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +RI,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +RI,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +RI,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +RI,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +RI,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +RI,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +RI,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +RI,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +RI,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +RI,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +RI,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +RI,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +RI,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +RI,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +RI,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +RI,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +RI,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +RI,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +RI,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +RI,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +RI,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +RI,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +RI,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +RI,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +RI,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +RI,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +RI,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +RI,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +RI,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +RI,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +RI,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +RI,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +RI,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +RI,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +RI,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +RI,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +RI,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +RI,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +RI,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +RI,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +RI,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +RI,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +RI,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +RI,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +RI,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +RI,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +RI,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +RI,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +RI,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +RI,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +RI,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +RI,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +RI,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +RI,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +RI,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +RI,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +RI,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +RI,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +RI,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +RI,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +RI,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +RI,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +RI,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +RI,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +RI,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +RI,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +RI,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +RI,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +RI,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +RI,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +RI,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +RI,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +RI,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +RI,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +RI,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +RI,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +RI,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +RI,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +RI,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +RI,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +RI,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +RI,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +RI,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +RI,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +RI,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +RI,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +RI,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +RI,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +RI,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +RI,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +RI,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +RI,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +RI,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +RI,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +RI,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +RI,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +RI,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +RI,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +RI,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +RI,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +RI,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +RI,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +RI,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +RI,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +RI,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +RI,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +RI,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +RI,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +RI,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +RI,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +RI,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +RI,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +RI,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +RI,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +RI,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +RI,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +RI,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +RI,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +RI,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +RI,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +RI,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +RI,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +RI,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +RI,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +RI,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +RI,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +RI,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +RI,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +RI,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +RI,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +RI,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +RI,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +RI,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +RI,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +RI,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +RI,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +RI,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +RI,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +RI,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +RI,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +RI,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +RI,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +RI,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +RI,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +RI,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +RI,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +RI,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +RI,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +RI,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +RI,industrial fuel use,coal,coal,2005,CO,0.069434106 +RI,industrial fuel use,coal,coal,2010,CO,0.07723114 +RI,industrial fuel use,coal,coal,2015,CO,0.068281575 +RI,industrial fuel use,coal,coal,2020,CO,0.063753622 +RI,industrial fuel use,coal,coal,2025,CO,0.065761399 +RI,industrial fuel use,coal,coal,2030,CO,0.067959367 +RI,industrial fuel use,coal,coal,2035,CO,0.069173462 +RI,industrial fuel use,coal,coal,2040,CO,0.070202866 +RI,industrial fuel use,coal,coal,2045,CO,0.071098148 +RI,industrial fuel use,coal,coal,2050,CO,0.072063393 +RI,industrial fuel use,coal,coal,2055,CO,0.072511454 +RI,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +RI,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +RI,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +RI,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +RI,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +RI,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +RI,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +RI,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +RI,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +RI,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +RI,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +RI,industrial fuel use,gas,gas,2005,CO,0.054958784 +RI,industrial fuel use,gas,gas,2010,CO,0.041119779 +RI,industrial fuel use,gas,gas,2015,CO,0.037376927 +RI,industrial fuel use,gas,gas,2020,CO,0.042196984 +RI,industrial fuel use,gas,gas,2025,CO,0.046340259 +RI,industrial fuel use,gas,gas,2030,CO,0.051044751 +RI,industrial fuel use,gas,gas,2035,CO,0.048377476 +RI,industrial fuel use,gas,gas,2040,CO,0.04844371 +RI,industrial fuel use,gas,gas,2045,CO,0.049325699 +RI,industrial fuel use,gas,gas,2050,CO,0.048085677 +RI,industrial fuel use,gas,gas,2055,CO,0.046506083 +RI,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +RI,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +RI,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +RI,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +RI,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +RI,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +RI,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +RI,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +RI,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +RI,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +RI,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +RI,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +RI,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +RI,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +RI,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +RI,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +RI,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +RI,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +RI,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +RI,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +RI,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +RI,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +RI,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +RI,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +RI,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +RI,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +RI,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +RI,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +RI,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +RI,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +RI,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +RI,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +RI,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +RI,industrial fuel use,coal,coal,2005,CH4,0.008615911 +RI,industrial fuel use,coal,coal,2010,CH4,0.007087118 +RI,industrial fuel use,coal,coal,2015,CH4,0.007645512 +RI,industrial fuel use,coal,coal,2020,CH4,0.007093206 +RI,industrial fuel use,coal,coal,2025,CH4,0.007280827 +RI,industrial fuel use,coal,coal,2030,CH4,0.007426545 +RI,industrial fuel use,coal,coal,2035,CH4,0.007524098 +RI,industrial fuel use,coal,coal,2040,CH4,0.007621441 +RI,industrial fuel use,coal,coal,2045,CH4,0.007691307 +RI,industrial fuel use,coal,coal,2050,CH4,0.007801358 +RI,industrial fuel use,coal,coal,2055,CH4,0.007871907 +RI,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +RI,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +RI,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +RI,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +RI,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +RI,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +RI,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +RI,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +RI,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +RI,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +RI,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +RI,industrial fuel use,gas,gas,2005,CH4,0.002575726 +RI,industrial fuel use,gas,gas,2010,CH4,0.0036902 +RI,industrial fuel use,gas,gas,2015,CH4,0.001847174 +RI,industrial fuel use,gas,gas,2020,CH4,0.002575374 +RI,industrial fuel use,gas,gas,2025,CH4,0.002470739 +RI,industrial fuel use,gas,gas,2030,CH4,0.002514812 +RI,industrial fuel use,gas,gas,2035,CH4,0.004402202 +RI,industrial fuel use,gas,gas,2040,CH4,0.005194877 +RI,industrial fuel use,gas,gas,2045,CH4,0.005264291 +RI,industrial fuel use,gas,gas,2050,CH4,0.006086388 +RI,industrial fuel use,gas,gas,2055,CH4,0.006850703 +RI,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +RI,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +RI,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +RI,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +RI,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +RI,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +RI,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +RI,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +RI,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +RI,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +RI,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +RI,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +RI,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +RI,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +RI,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +RI,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +RI,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +RI,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +RI,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +RI,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +RI,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +RI,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +RI,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +RI,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +RI,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +RI,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +RI,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +RI,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +RI,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +RI,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +RI,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +RI,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +RI,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +RI,industrial fuel use,coal,coal,2005,N2O,0.002945881 +RI,industrial fuel use,coal,coal,2010,N2O,0.004699422 +RI,industrial fuel use,coal,coal,2015,N2O,0.003718249 +RI,industrial fuel use,coal,coal,2020,N2O,0.003503987 +RI,industrial fuel use,coal,coal,2025,N2O,0.003902448 +RI,industrial fuel use,coal,coal,2030,N2O,0.005231917 +RI,industrial fuel use,coal,coal,2035,N2O,0.005844861 +RI,industrial fuel use,coal,coal,2040,N2O,0.006123209 +RI,industrial fuel use,coal,coal,2045,N2O,0.006493024 +RI,industrial fuel use,coal,coal,2050,N2O,0.00643187 +RI,industrial fuel use,coal,coal,2055,N2O,0.006580646 +RI,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +RI,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +RI,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +RI,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +RI,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +RI,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +RI,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +RI,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +RI,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +RI,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +RI,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +RI,industrial fuel use,gas,gas,2005,N2O,0.000509795 +RI,industrial fuel use,gas,gas,2010,N2O,0.000459136 +RI,industrial fuel use,gas,gas,2015,N2O,0.000457847 +RI,industrial fuel use,gas,gas,2020,N2O,0.000469807 +RI,industrial fuel use,gas,gas,2025,N2O,0.0004748 +RI,industrial fuel use,gas,gas,2030,N2O,0.000493269 +RI,industrial fuel use,gas,gas,2035,N2O,0.0005142 +RI,industrial fuel use,gas,gas,2040,N2O,0.000525413 +RI,industrial fuel use,gas,gas,2045,N2O,0.000530678 +RI,industrial fuel use,gas,gas,2050,N2O,0.000534097 +RI,industrial fuel use,gas,gas,2055,N2O,0.000535185 +RI,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +RI,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +RI,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +RI,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +RI,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +RI,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +RI,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +RI,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +RI,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +RI,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +RI,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +RI,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +RI,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +RI,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +RI,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +RI,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +RI,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +RI,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +RI,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +RI,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +RI,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +RI,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +RI,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +RI,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +RI,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +RI,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +RI,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +RI,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +RI,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +RI,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +RI,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +RI,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +RI,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +RI,industrial fuel use,coal,coal,2005,BC,0.052178527 +RI,industrial fuel use,coal,coal,2010,BC,0.054113893 +RI,industrial fuel use,coal,coal,2015,BC,0.054816673 +RI,industrial fuel use,coal,coal,2020,BC,0.051442317 +RI,industrial fuel use,coal,coal,2025,BC,0.05280003 +RI,industrial fuel use,coal,coal,2030,BC,0.054819383 +RI,industrial fuel use,coal,coal,2035,BC,0.055934389 +RI,industrial fuel use,coal,coal,2040,BC,0.056737391 +RI,industrial fuel use,coal,coal,2045,BC,0.057341111 +RI,industrial fuel use,coal,coal,2050,BC,0.057867944 +RI,industrial fuel use,coal,coal,2055,BC,0.058307588 +RI,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +RI,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +RI,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +RI,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +RI,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +RI,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +RI,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +RI,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +RI,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +RI,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +RI,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +RI,industrial fuel use,gas,gas,2005,BC,0.000879555 +RI,industrial fuel use,gas,gas,2010,BC,0.000594596 +RI,industrial fuel use,gas,gas,2015,BC,0.000780779 +RI,industrial fuel use,gas,gas,2020,BC,0.000758542 +RI,industrial fuel use,gas,gas,2025,BC,0.000791704 +RI,industrial fuel use,gas,gas,2030,BC,0.000829295 +RI,industrial fuel use,gas,gas,2035,BC,0.000745895 +RI,industrial fuel use,gas,gas,2040,BC,0.000739727 +RI,industrial fuel use,gas,gas,2045,BC,0.000759191 +RI,industrial fuel use,gas,gas,2050,BC,0.000728476 +RI,industrial fuel use,gas,gas,2055,BC,0.000688571 +RI,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +RI,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +RI,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +RI,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +RI,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +RI,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +RI,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +RI,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +RI,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +RI,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +RI,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +RI,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +RI,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +RI,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +RI,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +RI,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +RI,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +RI,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +RI,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +RI,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +RI,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +RI,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +RI,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +RI,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +RI,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +RI,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +RI,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +RI,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +RI,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +RI,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +RI,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +RI,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +RI,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +RI,industrial fuel use,coal,coal,2005,OC,0.004608879 +RI,industrial fuel use,coal,coal,2010,OC,0.004949044 +RI,industrial fuel use,coal,coal,2015,OC,0.005291355 +RI,industrial fuel use,coal,coal,2020,OC,0.005047635 +RI,industrial fuel use,coal,coal,2025,OC,0.005240698 +RI,industrial fuel use,coal,coal,2030,OC,0.005398598 +RI,industrial fuel use,coal,coal,2035,OC,0.005483036 +RI,industrial fuel use,coal,coal,2040,OC,0.005583473 +RI,industrial fuel use,coal,coal,2045,OC,0.005638434 +RI,industrial fuel use,coal,coal,2050,OC,0.005723515 +RI,industrial fuel use,coal,coal,2055,OC,0.005777195 +RI,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +RI,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +RI,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +RI,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +RI,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +RI,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +RI,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +RI,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +RI,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +RI,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +RI,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +RI,industrial fuel use,gas,gas,2005,OC,0.000586894 +RI,industrial fuel use,gas,gas,2010,OC,0.000538986 +RI,industrial fuel use,gas,gas,2015,OC,0.000406177 +RI,industrial fuel use,gas,gas,2020,OC,0.000436774 +RI,industrial fuel use,gas,gas,2025,OC,0.000431434 +RI,industrial fuel use,gas,gas,2030,OC,0.000454497 +RI,industrial fuel use,gas,gas,2035,OC,0.0005142 +RI,industrial fuel use,gas,gas,2040,OC,0.000542203 +RI,industrial fuel use,gas,gas,2045,OC,0.0005354 +RI,industrial fuel use,gas,gas,2050,OC,0.000552822 +RI,industrial fuel use,gas,gas,2055,OC,0.000563528 +RI,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +RI,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +RI,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +RI,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +RI,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +RI,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +RI,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +RI,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +RI,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +RI,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +RI,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +RI,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +RI,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +RI,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +RI,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +RI,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +RI,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +RI,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +RI,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +RI,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +RI,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +RI,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +RI,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +RI,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +RI,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +RI,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +RI,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +RI,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +RI,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +RI,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +RI,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +RI,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +RI,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +RI,industrial fuel use,coal,coal,2005,CO2,0.022413751 +RI,industrial fuel use,coal,coal,2010,CO2,0.023247485 +RI,industrial fuel use,coal,coal,2015,CO2,0.023542577 +RI,industrial fuel use,coal,coal,2020,CO2,0.022100946 +RI,industrial fuel use,coal,coal,2025,CO2,0.022682182 +RI,industrial fuel use,coal,coal,2030,CO2,0.023544891 +RI,industrial fuel use,coal,coal,2035,CO2,0.024022124 +RI,industrial fuel use,coal,coal,2040,CO2,0.024371859 +RI,industrial fuel use,coal,coal,2045,CO2,0.024626877 +RI,industrial fuel use,coal,coal,2050,CO2,0.024861999 +RI,industrial fuel use,coal,coal,2055,CO2,0.025047846 +RI,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +RI,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +RI,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +RI,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +RI,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +RI,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +RI,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +RI,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +RI,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +RI,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +RI,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +RI,industrial fuel use,gas,gas,2005,CO2,0.010100215 +RI,industrial fuel use,gas,gas,2010,CO2,0.008735772 +RI,industrial fuel use,gas,gas,2015,CO2,0.008975567 +RI,industrial fuel use,gas,gas,2020,CO2,0.009141549 +RI,industrial fuel use,gas,gas,2025,CO2,0.009319403 +RI,industrial fuel use,gas,gas,2030,CO2,0.009661635 +RI,industrial fuel use,gas,gas,2035,CO2,0.009858394 +RI,industrial fuel use,gas,gas,2040,CO2,0.010090146 +RI,industrial fuel use,gas,gas,2045,CO2,0.010177486 +RI,industrial fuel use,gas,gas,2050,CO2,0.010210503 +RI,industrial fuel use,gas,gas,2055,CO2,0.010168744 +RI,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +RI,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +RI,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +RI,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +RI,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +RI,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +RI,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +RI,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +RI,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +RI,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +RI,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +RI,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +RI,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +RI,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +RI,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +RI,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +RI,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +RI,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +RI,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +RI,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +RI,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +RI,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +RI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +RI,industrial fuel use,biomass,biomass,2005,CO2,0 +RI,industrial fuel use,biomass,biomass,2010,CO2,0 +RI,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +RI,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +RI,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +RI,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +RI,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +RI,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +RI,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +RI,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +RI,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +RI,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +RI,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +RI,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +RI,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +RI,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +RI,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +RI,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +RI,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +RI,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +RI,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +RI,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +SC,industrial fuel use,coal,coal,2005,NOx,0.261565752 +SC,industrial fuel use,coal,coal,2010,NOx,0.24128762 +SC,industrial fuel use,coal,coal,2015,NOx,0.247879608 +SC,industrial fuel use,coal,coal,2020,NOx,0.234312556 +SC,industrial fuel use,coal,coal,2025,NOx,0.240398293 +SC,industrial fuel use,coal,coal,2030,NOx,0.246677964 +SC,industrial fuel use,coal,coal,2035,NOx,0.250299201 +SC,industrial fuel use,coal,coal,2040,NOx,0.253554811 +SC,industrial fuel use,coal,coal,2045,NOx,0.255578056 +SC,industrial fuel use,coal,coal,2050,NOx,0.258549854 +SC,industrial fuel use,coal,coal,2055,NOx,0.26014596 +SC,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +SC,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +SC,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +SC,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +SC,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +SC,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +SC,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +SC,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +SC,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +SC,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +SC,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +SC,industrial fuel use,gas,gas,2005,NOx,0.080919016 +SC,industrial fuel use,gas,gas,2010,NOx,0.044952568 +SC,industrial fuel use,gas,gas,2015,NOx,0.037239142 +SC,industrial fuel use,gas,gas,2020,NOx,0.040745965 +SC,industrial fuel use,gas,gas,2025,NOx,0.042574105 +SC,industrial fuel use,gas,gas,2030,NOx,0.045347383 +SC,industrial fuel use,gas,gas,2035,NOx,0.048574619 +SC,industrial fuel use,gas,gas,2040,NOx,0.050422899 +SC,industrial fuel use,gas,gas,2045,NOx,0.050680722 +SC,industrial fuel use,gas,gas,2050,NOx,0.0517343 +SC,industrial fuel use,gas,gas,2055,NOx,0.052443137 +SC,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +SC,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +SC,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +SC,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +SC,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +SC,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +SC,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +SC,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +SC,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +SC,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +SC,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +SC,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +SC,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +SC,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +SC,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +SC,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +SC,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +SC,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +SC,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +SC,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +SC,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +SC,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +SC,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +SC,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +SC,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +SC,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +SC,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +SC,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +SC,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +SC,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +SC,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +SC,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +SC,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +SC,industrial fuel use,coal,coal,2005,SO2,0.709862367 +SC,industrial fuel use,coal,coal,2010,SO2,0.679592789 +SC,industrial fuel use,coal,coal,2015,SO2,0.590904591 +SC,industrial fuel use,coal,coal,2020,SO2,0.549595621 +SC,industrial fuel use,coal,coal,2025,SO2,0.56430149 +SC,industrial fuel use,coal,coal,2030,SO2,0.576548046 +SC,industrial fuel use,coal,coal,2035,SO2,0.583595424 +SC,industrial fuel use,coal,coal,2040,SO2,0.590805881 +SC,industrial fuel use,coal,coal,2045,SO2,0.596410723 +SC,industrial fuel use,coal,coal,2050,SO2,0.606154195 +SC,industrial fuel use,coal,coal,2055,SO2,0.611234923 +SC,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +SC,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +SC,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +SC,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +SC,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +SC,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +SC,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +SC,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +SC,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +SC,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +SC,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +SC,industrial fuel use,gas,gas,2005,SO2,0.000213988 +SC,industrial fuel use,gas,gas,2010,SO2,0.002761946 +SC,industrial fuel use,gas,gas,2015,SO2,0.002854723 +SC,industrial fuel use,gas,gas,2020,SO2,0.002771127 +SC,industrial fuel use,gas,gas,2025,SO2,0.002798763 +SC,industrial fuel use,gas,gas,2030,SO2,0.002938075 +SC,industrial fuel use,gas,gas,2035,SO2,0.003016098 +SC,industrial fuel use,gas,gas,2040,SO2,0.003118901 +SC,industrial fuel use,gas,gas,2045,SO2,0.00311325 +SC,industrial fuel use,gas,gas,2050,SO2,0.003090451 +SC,industrial fuel use,gas,gas,2055,SO2,0.003025213 +SC,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +SC,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +SC,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +SC,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +SC,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +SC,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +SC,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +SC,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +SC,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +SC,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +SC,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +SC,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +SC,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +SC,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +SC,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +SC,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +SC,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +SC,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +SC,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +SC,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +SC,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +SC,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +SC,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +SC,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +SC,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +SC,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +SC,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +SC,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +SC,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +SC,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +SC,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +SC,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +SC,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +SC,industrial fuel use,coal,coal,2005,PM10,0.136452905 +SC,industrial fuel use,coal,coal,2010,PM10,0.093662835 +SC,industrial fuel use,coal,coal,2015,PM10,0.100887759 +SC,industrial fuel use,coal,coal,2020,PM10,0.094503476 +SC,industrial fuel use,coal,coal,2025,PM10,0.09752377 +SC,industrial fuel use,coal,coal,2030,PM10,0.099823133 +SC,industrial fuel use,coal,coal,2035,PM10,0.101097535 +SC,industrial fuel use,coal,coal,2040,PM10,0.102438117 +SC,industrial fuel use,coal,coal,2045,PM10,0.103553978 +SC,industrial fuel use,coal,coal,2050,PM10,0.105393893 +SC,industrial fuel use,coal,coal,2055,PM10,0.106304221 +SC,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +SC,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +SC,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +SC,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +SC,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +SC,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +SC,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +SC,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +SC,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +SC,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +SC,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +SC,industrial fuel use,gas,gas,2005,PM10,0.002144603 +SC,industrial fuel use,gas,gas,2010,PM10,0.004157892 +SC,industrial fuel use,gas,gas,2015,PM10,0.004308637 +SC,industrial fuel use,gas,gas,2020,PM10,0.004261296 +SC,industrial fuel use,gas,gas,2025,PM10,0.004334357 +SC,industrial fuel use,gas,gas,2030,PM10,0.00454497 +SC,industrial fuel use,gas,gas,2035,PM10,0.004581054 +SC,industrial fuel use,gas,gas,2040,PM10,0.004690204 +SC,industrial fuel use,gas,gas,2045,PM10,0.004695842 +SC,industrial fuel use,gas,gas,2050,PM10,0.004649052 +SC,industrial fuel use,gas,gas,2055,PM10,0.00454824 +SC,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +SC,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +SC,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +SC,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +SC,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +SC,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +SC,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +SC,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +SC,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +SC,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +SC,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +SC,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +SC,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +SC,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +SC,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +SC,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +SC,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +SC,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +SC,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +SC,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +SC,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +SC,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +SC,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +SC,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +SC,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +SC,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +SC,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +SC,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +SC,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +SC,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +SC,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +SC,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +SC,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +SC,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +SC,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +SC,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +SC,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +SC,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +SC,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +SC,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +SC,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +SC,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +SC,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +SC,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +SC,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +SC,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +SC,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +SC,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +SC,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +SC,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +SC,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +SC,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +SC,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +SC,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +SC,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +SC,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +SC,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +SC,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +SC,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +SC,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +SC,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +SC,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +SC,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +SC,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +SC,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +SC,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +SC,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +SC,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +SC,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +SC,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +SC,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +SC,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +SC,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +SC,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +SC,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +SC,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +SC,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +SC,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +SC,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +SC,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +SC,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +SC,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +SC,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +SC,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +SC,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +SC,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +SC,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +SC,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +SC,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +SC,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +SC,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +SC,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +SC,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +SC,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +SC,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +SC,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +SC,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +SC,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +SC,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +SC,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +SC,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +SC,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +SC,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +SC,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +SC,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +SC,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +SC,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +SC,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +SC,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +SC,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +SC,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +SC,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +SC,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +SC,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +SC,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +SC,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +SC,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +SC,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +SC,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +SC,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +SC,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +SC,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +SC,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +SC,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +SC,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +SC,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +SC,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +SC,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +SC,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +SC,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +SC,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +SC,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +SC,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +SC,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +SC,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +SC,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +SC,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +SC,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +SC,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +SC,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +SC,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +SC,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +SC,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +SC,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +SC,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +SC,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +SC,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +SC,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +SC,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +SC,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +SC,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +SC,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +SC,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +SC,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +SC,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +SC,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +SC,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +SC,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +SC,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +SC,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +SC,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +SC,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +SC,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +SC,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +SC,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +SC,industrial fuel use,coal,coal,2005,CO,0.069434106 +SC,industrial fuel use,coal,coal,2010,CO,0.07723114 +SC,industrial fuel use,coal,coal,2015,CO,0.068281575 +SC,industrial fuel use,coal,coal,2020,CO,0.063753622 +SC,industrial fuel use,coal,coal,2025,CO,0.065761399 +SC,industrial fuel use,coal,coal,2030,CO,0.067959367 +SC,industrial fuel use,coal,coal,2035,CO,0.069173462 +SC,industrial fuel use,coal,coal,2040,CO,0.070202866 +SC,industrial fuel use,coal,coal,2045,CO,0.071098148 +SC,industrial fuel use,coal,coal,2050,CO,0.072063393 +SC,industrial fuel use,coal,coal,2055,CO,0.072511454 +SC,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +SC,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +SC,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +SC,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +SC,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +SC,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +SC,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +SC,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +SC,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +SC,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +SC,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +SC,industrial fuel use,gas,gas,2005,CO,0.054958784 +SC,industrial fuel use,gas,gas,2010,CO,0.041119779 +SC,industrial fuel use,gas,gas,2015,CO,0.037376927 +SC,industrial fuel use,gas,gas,2020,CO,0.042196984 +SC,industrial fuel use,gas,gas,2025,CO,0.046340259 +SC,industrial fuel use,gas,gas,2030,CO,0.051044751 +SC,industrial fuel use,gas,gas,2035,CO,0.048377476 +SC,industrial fuel use,gas,gas,2040,CO,0.04844371 +SC,industrial fuel use,gas,gas,2045,CO,0.049325699 +SC,industrial fuel use,gas,gas,2050,CO,0.048085677 +SC,industrial fuel use,gas,gas,2055,CO,0.046506083 +SC,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +SC,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +SC,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +SC,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +SC,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +SC,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +SC,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +SC,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +SC,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +SC,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +SC,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +SC,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +SC,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +SC,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +SC,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +SC,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +SC,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +SC,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +SC,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +SC,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +SC,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +SC,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +SC,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +SC,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +SC,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +SC,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +SC,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +SC,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +SC,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +SC,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +SC,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +SC,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +SC,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +SC,industrial fuel use,coal,coal,2005,CH4,0.008615911 +SC,industrial fuel use,coal,coal,2010,CH4,0.007087118 +SC,industrial fuel use,coal,coal,2015,CH4,0.007645512 +SC,industrial fuel use,coal,coal,2020,CH4,0.007093206 +SC,industrial fuel use,coal,coal,2025,CH4,0.007280827 +SC,industrial fuel use,coal,coal,2030,CH4,0.007426545 +SC,industrial fuel use,coal,coal,2035,CH4,0.007524098 +SC,industrial fuel use,coal,coal,2040,CH4,0.007621441 +SC,industrial fuel use,coal,coal,2045,CH4,0.007691307 +SC,industrial fuel use,coal,coal,2050,CH4,0.007801358 +SC,industrial fuel use,coal,coal,2055,CH4,0.007871907 +SC,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +SC,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +SC,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +SC,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +SC,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +SC,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +SC,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +SC,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +SC,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +SC,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +SC,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +SC,industrial fuel use,gas,gas,2005,CH4,0.002575726 +SC,industrial fuel use,gas,gas,2010,CH4,0.0036902 +SC,industrial fuel use,gas,gas,2015,CH4,0.001847174 +SC,industrial fuel use,gas,gas,2020,CH4,0.002575374 +SC,industrial fuel use,gas,gas,2025,CH4,0.002470739 +SC,industrial fuel use,gas,gas,2030,CH4,0.002514812 +SC,industrial fuel use,gas,gas,2035,CH4,0.004402202 +SC,industrial fuel use,gas,gas,2040,CH4,0.005194877 +SC,industrial fuel use,gas,gas,2045,CH4,0.005264291 +SC,industrial fuel use,gas,gas,2050,CH4,0.006086388 +SC,industrial fuel use,gas,gas,2055,CH4,0.006850703 +SC,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +SC,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +SC,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +SC,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +SC,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +SC,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +SC,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +SC,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +SC,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +SC,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +SC,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +SC,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +SC,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +SC,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +SC,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +SC,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +SC,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +SC,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +SC,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +SC,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +SC,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +SC,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +SC,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +SC,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +SC,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +SC,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +SC,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +SC,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +SC,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +SC,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +SC,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +SC,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +SC,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +SC,industrial fuel use,coal,coal,2005,N2O,0.002945881 +SC,industrial fuel use,coal,coal,2010,N2O,0.004699422 +SC,industrial fuel use,coal,coal,2015,N2O,0.003718249 +SC,industrial fuel use,coal,coal,2020,N2O,0.003503987 +SC,industrial fuel use,coal,coal,2025,N2O,0.003902448 +SC,industrial fuel use,coal,coal,2030,N2O,0.005231917 +SC,industrial fuel use,coal,coal,2035,N2O,0.005844861 +SC,industrial fuel use,coal,coal,2040,N2O,0.006123209 +SC,industrial fuel use,coal,coal,2045,N2O,0.006493024 +SC,industrial fuel use,coal,coal,2050,N2O,0.00643187 +SC,industrial fuel use,coal,coal,2055,N2O,0.006580646 +SC,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +SC,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +SC,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +SC,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +SC,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +SC,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +SC,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +SC,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +SC,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +SC,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +SC,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +SC,industrial fuel use,gas,gas,2005,N2O,0.000509795 +SC,industrial fuel use,gas,gas,2010,N2O,0.000459136 +SC,industrial fuel use,gas,gas,2015,N2O,0.000457847 +SC,industrial fuel use,gas,gas,2020,N2O,0.000469807 +SC,industrial fuel use,gas,gas,2025,N2O,0.0004748 +SC,industrial fuel use,gas,gas,2030,N2O,0.000493269 +SC,industrial fuel use,gas,gas,2035,N2O,0.0005142 +SC,industrial fuel use,gas,gas,2040,N2O,0.000525413 +SC,industrial fuel use,gas,gas,2045,N2O,0.000530678 +SC,industrial fuel use,gas,gas,2050,N2O,0.000534097 +SC,industrial fuel use,gas,gas,2055,N2O,0.000535185 +SC,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +SC,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +SC,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +SC,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +SC,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +SC,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +SC,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +SC,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +SC,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +SC,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +SC,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +SC,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +SC,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +SC,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +SC,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +SC,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +SC,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +SC,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +SC,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +SC,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +SC,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +SC,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +SC,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +SC,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +SC,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +SC,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +SC,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +SC,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +SC,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +SC,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +SC,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +SC,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +SC,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +SC,industrial fuel use,coal,coal,2005,BC,0.052178527 +SC,industrial fuel use,coal,coal,2010,BC,0.054113893 +SC,industrial fuel use,coal,coal,2015,BC,0.054816673 +SC,industrial fuel use,coal,coal,2020,BC,0.051442317 +SC,industrial fuel use,coal,coal,2025,BC,0.05280003 +SC,industrial fuel use,coal,coal,2030,BC,0.054819383 +SC,industrial fuel use,coal,coal,2035,BC,0.055934389 +SC,industrial fuel use,coal,coal,2040,BC,0.056737391 +SC,industrial fuel use,coal,coal,2045,BC,0.057341111 +SC,industrial fuel use,coal,coal,2050,BC,0.057867944 +SC,industrial fuel use,coal,coal,2055,BC,0.058307588 +SC,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +SC,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +SC,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +SC,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +SC,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +SC,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +SC,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +SC,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +SC,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +SC,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +SC,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +SC,industrial fuel use,gas,gas,2005,BC,0.000879555 +SC,industrial fuel use,gas,gas,2010,BC,0.000594596 +SC,industrial fuel use,gas,gas,2015,BC,0.000780779 +SC,industrial fuel use,gas,gas,2020,BC,0.000758542 +SC,industrial fuel use,gas,gas,2025,BC,0.000791704 +SC,industrial fuel use,gas,gas,2030,BC,0.000829295 +SC,industrial fuel use,gas,gas,2035,BC,0.000745895 +SC,industrial fuel use,gas,gas,2040,BC,0.000739727 +SC,industrial fuel use,gas,gas,2045,BC,0.000759191 +SC,industrial fuel use,gas,gas,2050,BC,0.000728476 +SC,industrial fuel use,gas,gas,2055,BC,0.000688571 +SC,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +SC,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +SC,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +SC,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +SC,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +SC,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +SC,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +SC,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +SC,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +SC,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +SC,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +SC,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +SC,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +SC,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +SC,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +SC,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +SC,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +SC,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +SC,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +SC,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +SC,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +SC,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +SC,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +SC,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +SC,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +SC,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +SC,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +SC,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +SC,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +SC,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +SC,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +SC,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +SC,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +SC,industrial fuel use,coal,coal,2005,OC,0.004608879 +SC,industrial fuel use,coal,coal,2010,OC,0.004949044 +SC,industrial fuel use,coal,coal,2015,OC,0.005291355 +SC,industrial fuel use,coal,coal,2020,OC,0.005047635 +SC,industrial fuel use,coal,coal,2025,OC,0.005240698 +SC,industrial fuel use,coal,coal,2030,OC,0.005398598 +SC,industrial fuel use,coal,coal,2035,OC,0.005483036 +SC,industrial fuel use,coal,coal,2040,OC,0.005583473 +SC,industrial fuel use,coal,coal,2045,OC,0.005638434 +SC,industrial fuel use,coal,coal,2050,OC,0.005723515 +SC,industrial fuel use,coal,coal,2055,OC,0.005777195 +SC,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +SC,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +SC,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +SC,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +SC,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +SC,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +SC,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +SC,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +SC,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +SC,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +SC,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +SC,industrial fuel use,gas,gas,2005,OC,0.000586894 +SC,industrial fuel use,gas,gas,2010,OC,0.000538986 +SC,industrial fuel use,gas,gas,2015,OC,0.000406177 +SC,industrial fuel use,gas,gas,2020,OC,0.000436774 +SC,industrial fuel use,gas,gas,2025,OC,0.000431434 +SC,industrial fuel use,gas,gas,2030,OC,0.000454497 +SC,industrial fuel use,gas,gas,2035,OC,0.0005142 +SC,industrial fuel use,gas,gas,2040,OC,0.000542203 +SC,industrial fuel use,gas,gas,2045,OC,0.0005354 +SC,industrial fuel use,gas,gas,2050,OC,0.000552822 +SC,industrial fuel use,gas,gas,2055,OC,0.000563528 +SC,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +SC,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +SC,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +SC,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +SC,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +SC,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +SC,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +SC,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +SC,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +SC,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +SC,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +SC,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +SC,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +SC,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +SC,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +SC,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +SC,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +SC,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +SC,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +SC,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +SC,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +SC,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +SC,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +SC,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +SC,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +SC,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +SC,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +SC,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +SC,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +SC,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +SC,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +SC,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +SC,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +SC,industrial fuel use,coal,coal,2005,CO2,0.022413751 +SC,industrial fuel use,coal,coal,2010,CO2,0.023247485 +SC,industrial fuel use,coal,coal,2015,CO2,0.023542577 +SC,industrial fuel use,coal,coal,2020,CO2,0.022100946 +SC,industrial fuel use,coal,coal,2025,CO2,0.022682182 +SC,industrial fuel use,coal,coal,2030,CO2,0.023544891 +SC,industrial fuel use,coal,coal,2035,CO2,0.024022124 +SC,industrial fuel use,coal,coal,2040,CO2,0.024371859 +SC,industrial fuel use,coal,coal,2045,CO2,0.024626877 +SC,industrial fuel use,coal,coal,2050,CO2,0.024861999 +SC,industrial fuel use,coal,coal,2055,CO2,0.025047846 +SC,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +SC,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +SC,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +SC,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +SC,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +SC,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +SC,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +SC,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +SC,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +SC,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +SC,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +SC,industrial fuel use,gas,gas,2005,CO2,0.010100215 +SC,industrial fuel use,gas,gas,2010,CO2,0.008735772 +SC,industrial fuel use,gas,gas,2015,CO2,0.008975567 +SC,industrial fuel use,gas,gas,2020,CO2,0.009141549 +SC,industrial fuel use,gas,gas,2025,CO2,0.009319403 +SC,industrial fuel use,gas,gas,2030,CO2,0.009661635 +SC,industrial fuel use,gas,gas,2035,CO2,0.009858394 +SC,industrial fuel use,gas,gas,2040,CO2,0.010090146 +SC,industrial fuel use,gas,gas,2045,CO2,0.010177486 +SC,industrial fuel use,gas,gas,2050,CO2,0.010210503 +SC,industrial fuel use,gas,gas,2055,CO2,0.010168744 +SC,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +SC,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +SC,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +SC,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +SC,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +SC,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +SC,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +SC,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +SC,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +SC,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +SC,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +SC,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +SC,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +SC,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +SC,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +SC,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +SC,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +SC,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +SC,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +SC,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +SC,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +SC,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +SC,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +SC,industrial fuel use,biomass,biomass,2005,CO2,0 +SC,industrial fuel use,biomass,biomass,2010,CO2,0 +SC,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +SC,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +SC,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +SC,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +SC,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +SC,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +SC,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +SC,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +SC,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +SC,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +SC,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +SC,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +SC,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +SC,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +SC,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +SC,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +SC,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +SC,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +SC,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +SC,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +SD,industrial fuel use,coal,coal,2005,NOx,0.261565752 +SD,industrial fuel use,coal,coal,2010,NOx,0.24128762 +SD,industrial fuel use,coal,coal,2015,NOx,0.247879608 +SD,industrial fuel use,coal,coal,2020,NOx,0.234312556 +SD,industrial fuel use,coal,coal,2025,NOx,0.240398293 +SD,industrial fuel use,coal,coal,2030,NOx,0.246677964 +SD,industrial fuel use,coal,coal,2035,NOx,0.250299201 +SD,industrial fuel use,coal,coal,2040,NOx,0.253554811 +SD,industrial fuel use,coal,coal,2045,NOx,0.255578056 +SD,industrial fuel use,coal,coal,2050,NOx,0.258549854 +SD,industrial fuel use,coal,coal,2055,NOx,0.26014596 +SD,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +SD,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +SD,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +SD,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +SD,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +SD,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +SD,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +SD,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +SD,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +SD,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +SD,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +SD,industrial fuel use,gas,gas,2005,NOx,0.080919016 +SD,industrial fuel use,gas,gas,2010,NOx,0.044952568 +SD,industrial fuel use,gas,gas,2015,NOx,0.037239142 +SD,industrial fuel use,gas,gas,2020,NOx,0.040745965 +SD,industrial fuel use,gas,gas,2025,NOx,0.042574105 +SD,industrial fuel use,gas,gas,2030,NOx,0.045347383 +SD,industrial fuel use,gas,gas,2035,NOx,0.048574619 +SD,industrial fuel use,gas,gas,2040,NOx,0.050422899 +SD,industrial fuel use,gas,gas,2045,NOx,0.050680722 +SD,industrial fuel use,gas,gas,2050,NOx,0.0517343 +SD,industrial fuel use,gas,gas,2055,NOx,0.052443137 +SD,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +SD,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +SD,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +SD,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +SD,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +SD,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +SD,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +SD,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +SD,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +SD,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +SD,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +SD,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +SD,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +SD,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +SD,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +SD,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +SD,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +SD,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +SD,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +SD,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +SD,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +SD,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +SD,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +SD,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +SD,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +SD,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +SD,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +SD,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +SD,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +SD,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +SD,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +SD,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +SD,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +SD,industrial fuel use,coal,coal,2005,SO2,0.709862367 +SD,industrial fuel use,coal,coal,2010,SO2,0.679592789 +SD,industrial fuel use,coal,coal,2015,SO2,0.590904591 +SD,industrial fuel use,coal,coal,2020,SO2,0.549595621 +SD,industrial fuel use,coal,coal,2025,SO2,0.56430149 +SD,industrial fuel use,coal,coal,2030,SO2,0.576548046 +SD,industrial fuel use,coal,coal,2035,SO2,0.583595424 +SD,industrial fuel use,coal,coal,2040,SO2,0.590805881 +SD,industrial fuel use,coal,coal,2045,SO2,0.596410723 +SD,industrial fuel use,coal,coal,2050,SO2,0.606154195 +SD,industrial fuel use,coal,coal,2055,SO2,0.611234923 +SD,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +SD,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +SD,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +SD,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +SD,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +SD,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +SD,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +SD,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +SD,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +SD,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +SD,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +SD,industrial fuel use,gas,gas,2005,SO2,0.000213988 +SD,industrial fuel use,gas,gas,2010,SO2,0.002761946 +SD,industrial fuel use,gas,gas,2015,SO2,0.002854723 +SD,industrial fuel use,gas,gas,2020,SO2,0.002771127 +SD,industrial fuel use,gas,gas,2025,SO2,0.002798763 +SD,industrial fuel use,gas,gas,2030,SO2,0.002938075 +SD,industrial fuel use,gas,gas,2035,SO2,0.003016098 +SD,industrial fuel use,gas,gas,2040,SO2,0.003118901 +SD,industrial fuel use,gas,gas,2045,SO2,0.00311325 +SD,industrial fuel use,gas,gas,2050,SO2,0.003090451 +SD,industrial fuel use,gas,gas,2055,SO2,0.003025213 +SD,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +SD,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +SD,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +SD,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +SD,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +SD,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +SD,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +SD,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +SD,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +SD,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +SD,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +SD,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +SD,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +SD,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +SD,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +SD,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +SD,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +SD,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +SD,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +SD,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +SD,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +SD,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +SD,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +SD,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +SD,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +SD,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +SD,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +SD,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +SD,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +SD,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +SD,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +SD,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +SD,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +SD,industrial fuel use,coal,coal,2005,PM10,0.136452905 +SD,industrial fuel use,coal,coal,2010,PM10,0.093662835 +SD,industrial fuel use,coal,coal,2015,PM10,0.100887759 +SD,industrial fuel use,coal,coal,2020,PM10,0.094503476 +SD,industrial fuel use,coal,coal,2025,PM10,0.09752377 +SD,industrial fuel use,coal,coal,2030,PM10,0.099823133 +SD,industrial fuel use,coal,coal,2035,PM10,0.101097535 +SD,industrial fuel use,coal,coal,2040,PM10,0.102438117 +SD,industrial fuel use,coal,coal,2045,PM10,0.103553978 +SD,industrial fuel use,coal,coal,2050,PM10,0.105393893 +SD,industrial fuel use,coal,coal,2055,PM10,0.106304221 +SD,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +SD,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +SD,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +SD,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +SD,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +SD,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +SD,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +SD,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +SD,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +SD,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +SD,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +SD,industrial fuel use,gas,gas,2005,PM10,0.002144603 +SD,industrial fuel use,gas,gas,2010,PM10,0.004157892 +SD,industrial fuel use,gas,gas,2015,PM10,0.004308637 +SD,industrial fuel use,gas,gas,2020,PM10,0.004261296 +SD,industrial fuel use,gas,gas,2025,PM10,0.004334357 +SD,industrial fuel use,gas,gas,2030,PM10,0.00454497 +SD,industrial fuel use,gas,gas,2035,PM10,0.004581054 +SD,industrial fuel use,gas,gas,2040,PM10,0.004690204 +SD,industrial fuel use,gas,gas,2045,PM10,0.004695842 +SD,industrial fuel use,gas,gas,2050,PM10,0.004649052 +SD,industrial fuel use,gas,gas,2055,PM10,0.00454824 +SD,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +SD,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +SD,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +SD,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +SD,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +SD,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +SD,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +SD,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +SD,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +SD,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +SD,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +SD,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +SD,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +SD,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +SD,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +SD,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +SD,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +SD,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +SD,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +SD,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +SD,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +SD,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +SD,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +SD,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +SD,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +SD,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +SD,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +SD,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +SD,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +SD,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +SD,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +SD,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +SD,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +SD,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +SD,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +SD,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +SD,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +SD,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +SD,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +SD,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +SD,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +SD,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +SD,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +SD,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +SD,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +SD,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +SD,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +SD,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +SD,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +SD,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +SD,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +SD,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +SD,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +SD,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +SD,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +SD,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +SD,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +SD,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +SD,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +SD,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +SD,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +SD,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +SD,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +SD,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +SD,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +SD,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +SD,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +SD,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +SD,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +SD,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +SD,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +SD,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +SD,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +SD,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +SD,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +SD,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +SD,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +SD,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +SD,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +SD,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +SD,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +SD,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +SD,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +SD,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +SD,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +SD,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +SD,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +SD,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +SD,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +SD,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +SD,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +SD,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +SD,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +SD,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +SD,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +SD,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +SD,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +SD,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +SD,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +SD,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +SD,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +SD,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +SD,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +SD,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +SD,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +SD,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +SD,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +SD,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +SD,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +SD,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +SD,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +SD,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +SD,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +SD,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +SD,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +SD,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +SD,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +SD,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +SD,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +SD,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +SD,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +SD,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +SD,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +SD,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +SD,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +SD,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +SD,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +SD,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +SD,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +SD,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +SD,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +SD,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +SD,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +SD,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +SD,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +SD,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +SD,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +SD,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +SD,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +SD,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +SD,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +SD,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +SD,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +SD,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +SD,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +SD,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +SD,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +SD,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +SD,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +SD,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +SD,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +SD,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +SD,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +SD,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +SD,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +SD,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +SD,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +SD,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +SD,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +SD,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +SD,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +SD,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +SD,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +SD,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +SD,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +SD,industrial fuel use,coal,coal,2005,CO,0.069434106 +SD,industrial fuel use,coal,coal,2010,CO,0.07723114 +SD,industrial fuel use,coal,coal,2015,CO,0.068281575 +SD,industrial fuel use,coal,coal,2020,CO,0.063753622 +SD,industrial fuel use,coal,coal,2025,CO,0.065761399 +SD,industrial fuel use,coal,coal,2030,CO,0.067959367 +SD,industrial fuel use,coal,coal,2035,CO,0.069173462 +SD,industrial fuel use,coal,coal,2040,CO,0.070202866 +SD,industrial fuel use,coal,coal,2045,CO,0.071098148 +SD,industrial fuel use,coal,coal,2050,CO,0.072063393 +SD,industrial fuel use,coal,coal,2055,CO,0.072511454 +SD,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +SD,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +SD,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +SD,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +SD,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +SD,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +SD,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +SD,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +SD,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +SD,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +SD,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +SD,industrial fuel use,gas,gas,2005,CO,0.054958784 +SD,industrial fuel use,gas,gas,2010,CO,0.041119779 +SD,industrial fuel use,gas,gas,2015,CO,0.037376927 +SD,industrial fuel use,gas,gas,2020,CO,0.042196984 +SD,industrial fuel use,gas,gas,2025,CO,0.046340259 +SD,industrial fuel use,gas,gas,2030,CO,0.051044751 +SD,industrial fuel use,gas,gas,2035,CO,0.048377476 +SD,industrial fuel use,gas,gas,2040,CO,0.04844371 +SD,industrial fuel use,gas,gas,2045,CO,0.049325699 +SD,industrial fuel use,gas,gas,2050,CO,0.048085677 +SD,industrial fuel use,gas,gas,2055,CO,0.046506083 +SD,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +SD,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +SD,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +SD,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +SD,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +SD,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +SD,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +SD,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +SD,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +SD,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +SD,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +SD,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +SD,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +SD,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +SD,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +SD,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +SD,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +SD,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +SD,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +SD,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +SD,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +SD,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +SD,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +SD,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +SD,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +SD,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +SD,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +SD,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +SD,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +SD,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +SD,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +SD,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +SD,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +SD,industrial fuel use,coal,coal,2005,CH4,0.008615911 +SD,industrial fuel use,coal,coal,2010,CH4,0.007087118 +SD,industrial fuel use,coal,coal,2015,CH4,0.007645512 +SD,industrial fuel use,coal,coal,2020,CH4,0.007093206 +SD,industrial fuel use,coal,coal,2025,CH4,0.007280827 +SD,industrial fuel use,coal,coal,2030,CH4,0.007426545 +SD,industrial fuel use,coal,coal,2035,CH4,0.007524098 +SD,industrial fuel use,coal,coal,2040,CH4,0.007621441 +SD,industrial fuel use,coal,coal,2045,CH4,0.007691307 +SD,industrial fuel use,coal,coal,2050,CH4,0.007801358 +SD,industrial fuel use,coal,coal,2055,CH4,0.007871907 +SD,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +SD,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +SD,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +SD,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +SD,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +SD,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +SD,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +SD,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +SD,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +SD,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +SD,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +SD,industrial fuel use,gas,gas,2005,CH4,0.002575726 +SD,industrial fuel use,gas,gas,2010,CH4,0.0036902 +SD,industrial fuel use,gas,gas,2015,CH4,0.001847174 +SD,industrial fuel use,gas,gas,2020,CH4,0.002575374 +SD,industrial fuel use,gas,gas,2025,CH4,0.002470739 +SD,industrial fuel use,gas,gas,2030,CH4,0.002514812 +SD,industrial fuel use,gas,gas,2035,CH4,0.004402202 +SD,industrial fuel use,gas,gas,2040,CH4,0.005194877 +SD,industrial fuel use,gas,gas,2045,CH4,0.005264291 +SD,industrial fuel use,gas,gas,2050,CH4,0.006086388 +SD,industrial fuel use,gas,gas,2055,CH4,0.006850703 +SD,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +SD,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +SD,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +SD,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +SD,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +SD,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +SD,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +SD,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +SD,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +SD,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +SD,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +SD,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +SD,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +SD,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +SD,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +SD,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +SD,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +SD,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +SD,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +SD,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +SD,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +SD,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +SD,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +SD,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +SD,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +SD,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +SD,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +SD,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +SD,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +SD,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +SD,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +SD,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +SD,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +SD,industrial fuel use,coal,coal,2005,N2O,0.002945881 +SD,industrial fuel use,coal,coal,2010,N2O,0.004699422 +SD,industrial fuel use,coal,coal,2015,N2O,0.003718249 +SD,industrial fuel use,coal,coal,2020,N2O,0.003503987 +SD,industrial fuel use,coal,coal,2025,N2O,0.003902448 +SD,industrial fuel use,coal,coal,2030,N2O,0.005231917 +SD,industrial fuel use,coal,coal,2035,N2O,0.005844861 +SD,industrial fuel use,coal,coal,2040,N2O,0.006123209 +SD,industrial fuel use,coal,coal,2045,N2O,0.006493024 +SD,industrial fuel use,coal,coal,2050,N2O,0.00643187 +SD,industrial fuel use,coal,coal,2055,N2O,0.006580646 +SD,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +SD,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +SD,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +SD,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +SD,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +SD,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +SD,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +SD,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +SD,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +SD,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +SD,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +SD,industrial fuel use,gas,gas,2005,N2O,0.000509795 +SD,industrial fuel use,gas,gas,2010,N2O,0.000459136 +SD,industrial fuel use,gas,gas,2015,N2O,0.000457847 +SD,industrial fuel use,gas,gas,2020,N2O,0.000469807 +SD,industrial fuel use,gas,gas,2025,N2O,0.0004748 +SD,industrial fuel use,gas,gas,2030,N2O,0.000493269 +SD,industrial fuel use,gas,gas,2035,N2O,0.0005142 +SD,industrial fuel use,gas,gas,2040,N2O,0.000525413 +SD,industrial fuel use,gas,gas,2045,N2O,0.000530678 +SD,industrial fuel use,gas,gas,2050,N2O,0.000534097 +SD,industrial fuel use,gas,gas,2055,N2O,0.000535185 +SD,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +SD,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +SD,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +SD,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +SD,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +SD,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +SD,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +SD,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +SD,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +SD,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +SD,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +SD,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +SD,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +SD,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +SD,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +SD,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +SD,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +SD,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +SD,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +SD,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +SD,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +SD,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +SD,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +SD,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +SD,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +SD,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +SD,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +SD,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +SD,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +SD,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +SD,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +SD,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +SD,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +SD,industrial fuel use,coal,coal,2005,BC,0.052178527 +SD,industrial fuel use,coal,coal,2010,BC,0.054113893 +SD,industrial fuel use,coal,coal,2015,BC,0.054816673 +SD,industrial fuel use,coal,coal,2020,BC,0.051442317 +SD,industrial fuel use,coal,coal,2025,BC,0.05280003 +SD,industrial fuel use,coal,coal,2030,BC,0.054819383 +SD,industrial fuel use,coal,coal,2035,BC,0.055934389 +SD,industrial fuel use,coal,coal,2040,BC,0.056737391 +SD,industrial fuel use,coal,coal,2045,BC,0.057341111 +SD,industrial fuel use,coal,coal,2050,BC,0.057867944 +SD,industrial fuel use,coal,coal,2055,BC,0.058307588 +SD,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +SD,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +SD,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +SD,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +SD,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +SD,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +SD,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +SD,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +SD,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +SD,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +SD,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +SD,industrial fuel use,gas,gas,2005,BC,0.000879555 +SD,industrial fuel use,gas,gas,2010,BC,0.000594596 +SD,industrial fuel use,gas,gas,2015,BC,0.000780779 +SD,industrial fuel use,gas,gas,2020,BC,0.000758542 +SD,industrial fuel use,gas,gas,2025,BC,0.000791704 +SD,industrial fuel use,gas,gas,2030,BC,0.000829295 +SD,industrial fuel use,gas,gas,2035,BC,0.000745895 +SD,industrial fuel use,gas,gas,2040,BC,0.000739727 +SD,industrial fuel use,gas,gas,2045,BC,0.000759191 +SD,industrial fuel use,gas,gas,2050,BC,0.000728476 +SD,industrial fuel use,gas,gas,2055,BC,0.000688571 +SD,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +SD,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +SD,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +SD,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +SD,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +SD,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +SD,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +SD,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +SD,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +SD,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +SD,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +SD,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +SD,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +SD,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +SD,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +SD,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +SD,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +SD,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +SD,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +SD,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +SD,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +SD,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +SD,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +SD,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +SD,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +SD,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +SD,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +SD,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +SD,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +SD,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +SD,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +SD,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +SD,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +SD,industrial fuel use,coal,coal,2005,OC,0.004608879 +SD,industrial fuel use,coal,coal,2010,OC,0.004949044 +SD,industrial fuel use,coal,coal,2015,OC,0.005291355 +SD,industrial fuel use,coal,coal,2020,OC,0.005047635 +SD,industrial fuel use,coal,coal,2025,OC,0.005240698 +SD,industrial fuel use,coal,coal,2030,OC,0.005398598 +SD,industrial fuel use,coal,coal,2035,OC,0.005483036 +SD,industrial fuel use,coal,coal,2040,OC,0.005583473 +SD,industrial fuel use,coal,coal,2045,OC,0.005638434 +SD,industrial fuel use,coal,coal,2050,OC,0.005723515 +SD,industrial fuel use,coal,coal,2055,OC,0.005777195 +SD,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +SD,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +SD,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +SD,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +SD,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +SD,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +SD,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +SD,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +SD,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +SD,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +SD,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +SD,industrial fuel use,gas,gas,2005,OC,0.000586894 +SD,industrial fuel use,gas,gas,2010,OC,0.000538986 +SD,industrial fuel use,gas,gas,2015,OC,0.000406177 +SD,industrial fuel use,gas,gas,2020,OC,0.000436774 +SD,industrial fuel use,gas,gas,2025,OC,0.000431434 +SD,industrial fuel use,gas,gas,2030,OC,0.000454497 +SD,industrial fuel use,gas,gas,2035,OC,0.0005142 +SD,industrial fuel use,gas,gas,2040,OC,0.000542203 +SD,industrial fuel use,gas,gas,2045,OC,0.0005354 +SD,industrial fuel use,gas,gas,2050,OC,0.000552822 +SD,industrial fuel use,gas,gas,2055,OC,0.000563528 +SD,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +SD,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +SD,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +SD,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +SD,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +SD,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +SD,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +SD,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +SD,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +SD,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +SD,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +SD,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +SD,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +SD,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +SD,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +SD,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +SD,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +SD,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +SD,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +SD,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +SD,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +SD,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +SD,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +SD,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +SD,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +SD,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +SD,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +SD,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +SD,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +SD,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +SD,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +SD,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +SD,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +SD,industrial fuel use,coal,coal,2005,CO2,0.022413751 +SD,industrial fuel use,coal,coal,2010,CO2,0.023247485 +SD,industrial fuel use,coal,coal,2015,CO2,0.023542577 +SD,industrial fuel use,coal,coal,2020,CO2,0.022100946 +SD,industrial fuel use,coal,coal,2025,CO2,0.022682182 +SD,industrial fuel use,coal,coal,2030,CO2,0.023544891 +SD,industrial fuel use,coal,coal,2035,CO2,0.024022124 +SD,industrial fuel use,coal,coal,2040,CO2,0.024371859 +SD,industrial fuel use,coal,coal,2045,CO2,0.024626877 +SD,industrial fuel use,coal,coal,2050,CO2,0.024861999 +SD,industrial fuel use,coal,coal,2055,CO2,0.025047846 +SD,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +SD,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +SD,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +SD,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +SD,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +SD,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +SD,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +SD,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +SD,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +SD,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +SD,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +SD,industrial fuel use,gas,gas,2005,CO2,0.010100215 +SD,industrial fuel use,gas,gas,2010,CO2,0.008735772 +SD,industrial fuel use,gas,gas,2015,CO2,0.008975567 +SD,industrial fuel use,gas,gas,2020,CO2,0.009141549 +SD,industrial fuel use,gas,gas,2025,CO2,0.009319403 +SD,industrial fuel use,gas,gas,2030,CO2,0.009661635 +SD,industrial fuel use,gas,gas,2035,CO2,0.009858394 +SD,industrial fuel use,gas,gas,2040,CO2,0.010090146 +SD,industrial fuel use,gas,gas,2045,CO2,0.010177486 +SD,industrial fuel use,gas,gas,2050,CO2,0.010210503 +SD,industrial fuel use,gas,gas,2055,CO2,0.010168744 +SD,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +SD,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +SD,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +SD,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +SD,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +SD,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +SD,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +SD,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +SD,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +SD,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +SD,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +SD,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +SD,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +SD,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +SD,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +SD,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +SD,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +SD,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +SD,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +SD,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +SD,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +SD,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +SD,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +SD,industrial fuel use,biomass,biomass,2005,CO2,0 +SD,industrial fuel use,biomass,biomass,2010,CO2,0 +SD,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +SD,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +SD,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +SD,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +SD,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +SD,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +SD,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +SD,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +SD,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +SD,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +SD,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +SD,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +SD,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +SD,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +SD,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +SD,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +SD,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +SD,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +SD,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +SD,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +TN,industrial fuel use,coal,coal,2005,NOx,0.261565752 +TN,industrial fuel use,coal,coal,2010,NOx,0.24128762 +TN,industrial fuel use,coal,coal,2015,NOx,0.247879608 +TN,industrial fuel use,coal,coal,2020,NOx,0.234312556 +TN,industrial fuel use,coal,coal,2025,NOx,0.240398293 +TN,industrial fuel use,coal,coal,2030,NOx,0.246677964 +TN,industrial fuel use,coal,coal,2035,NOx,0.250299201 +TN,industrial fuel use,coal,coal,2040,NOx,0.253554811 +TN,industrial fuel use,coal,coal,2045,NOx,0.255578056 +TN,industrial fuel use,coal,coal,2050,NOx,0.258549854 +TN,industrial fuel use,coal,coal,2055,NOx,0.26014596 +TN,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +TN,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +TN,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +TN,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +TN,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +TN,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +TN,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +TN,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +TN,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +TN,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +TN,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +TN,industrial fuel use,gas,gas,2005,NOx,0.080919016 +TN,industrial fuel use,gas,gas,2010,NOx,0.044952568 +TN,industrial fuel use,gas,gas,2015,NOx,0.037239142 +TN,industrial fuel use,gas,gas,2020,NOx,0.040745965 +TN,industrial fuel use,gas,gas,2025,NOx,0.042574105 +TN,industrial fuel use,gas,gas,2030,NOx,0.045347383 +TN,industrial fuel use,gas,gas,2035,NOx,0.048574619 +TN,industrial fuel use,gas,gas,2040,NOx,0.050422899 +TN,industrial fuel use,gas,gas,2045,NOx,0.050680722 +TN,industrial fuel use,gas,gas,2050,NOx,0.0517343 +TN,industrial fuel use,gas,gas,2055,NOx,0.052443137 +TN,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +TN,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +TN,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +TN,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +TN,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +TN,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +TN,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +TN,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +TN,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +TN,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +TN,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +TN,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +TN,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +TN,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +TN,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +TN,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +TN,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +TN,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +TN,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +TN,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +TN,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +TN,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +TN,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +TN,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +TN,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +TN,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +TN,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +TN,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +TN,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +TN,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +TN,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +TN,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +TN,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +TN,industrial fuel use,coal,coal,2005,SO2,0.709862367 +TN,industrial fuel use,coal,coal,2010,SO2,0.679592789 +TN,industrial fuel use,coal,coal,2015,SO2,0.590904591 +TN,industrial fuel use,coal,coal,2020,SO2,0.549595621 +TN,industrial fuel use,coal,coal,2025,SO2,0.56430149 +TN,industrial fuel use,coal,coal,2030,SO2,0.576548046 +TN,industrial fuel use,coal,coal,2035,SO2,0.583595424 +TN,industrial fuel use,coal,coal,2040,SO2,0.590805881 +TN,industrial fuel use,coal,coal,2045,SO2,0.596410723 +TN,industrial fuel use,coal,coal,2050,SO2,0.606154195 +TN,industrial fuel use,coal,coal,2055,SO2,0.611234923 +TN,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +TN,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +TN,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +TN,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +TN,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +TN,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +TN,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +TN,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +TN,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +TN,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +TN,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +TN,industrial fuel use,gas,gas,2005,SO2,0.000213988 +TN,industrial fuel use,gas,gas,2010,SO2,0.002761946 +TN,industrial fuel use,gas,gas,2015,SO2,0.002854723 +TN,industrial fuel use,gas,gas,2020,SO2,0.002771127 +TN,industrial fuel use,gas,gas,2025,SO2,0.002798763 +TN,industrial fuel use,gas,gas,2030,SO2,0.002938075 +TN,industrial fuel use,gas,gas,2035,SO2,0.003016098 +TN,industrial fuel use,gas,gas,2040,SO2,0.003118901 +TN,industrial fuel use,gas,gas,2045,SO2,0.00311325 +TN,industrial fuel use,gas,gas,2050,SO2,0.003090451 +TN,industrial fuel use,gas,gas,2055,SO2,0.003025213 +TN,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +TN,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +TN,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +TN,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +TN,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +TN,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +TN,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +TN,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +TN,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +TN,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +TN,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +TN,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +TN,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +TN,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +TN,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +TN,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +TN,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +TN,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +TN,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +TN,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +TN,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +TN,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +TN,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +TN,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +TN,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +TN,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +TN,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +TN,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +TN,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +TN,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +TN,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +TN,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +TN,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +TN,industrial fuel use,coal,coal,2005,PM10,0.136452905 +TN,industrial fuel use,coal,coal,2010,PM10,0.093662835 +TN,industrial fuel use,coal,coal,2015,PM10,0.100887759 +TN,industrial fuel use,coal,coal,2020,PM10,0.094503476 +TN,industrial fuel use,coal,coal,2025,PM10,0.09752377 +TN,industrial fuel use,coal,coal,2030,PM10,0.099823133 +TN,industrial fuel use,coal,coal,2035,PM10,0.101097535 +TN,industrial fuel use,coal,coal,2040,PM10,0.102438117 +TN,industrial fuel use,coal,coal,2045,PM10,0.103553978 +TN,industrial fuel use,coal,coal,2050,PM10,0.105393893 +TN,industrial fuel use,coal,coal,2055,PM10,0.106304221 +TN,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +TN,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +TN,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +TN,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +TN,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +TN,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +TN,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +TN,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +TN,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +TN,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +TN,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +TN,industrial fuel use,gas,gas,2005,PM10,0.002144603 +TN,industrial fuel use,gas,gas,2010,PM10,0.004157892 +TN,industrial fuel use,gas,gas,2015,PM10,0.004308637 +TN,industrial fuel use,gas,gas,2020,PM10,0.004261296 +TN,industrial fuel use,gas,gas,2025,PM10,0.004334357 +TN,industrial fuel use,gas,gas,2030,PM10,0.00454497 +TN,industrial fuel use,gas,gas,2035,PM10,0.004581054 +TN,industrial fuel use,gas,gas,2040,PM10,0.004690204 +TN,industrial fuel use,gas,gas,2045,PM10,0.004695842 +TN,industrial fuel use,gas,gas,2050,PM10,0.004649052 +TN,industrial fuel use,gas,gas,2055,PM10,0.00454824 +TN,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +TN,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +TN,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +TN,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +TN,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +TN,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +TN,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +TN,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +TN,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +TN,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +TN,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +TN,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +TN,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +TN,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +TN,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +TN,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +TN,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +TN,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +TN,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +TN,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +TN,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +TN,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +TN,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +TN,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +TN,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +TN,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +TN,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +TN,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +TN,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +TN,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +TN,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +TN,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +TN,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +TN,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +TN,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +TN,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +TN,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +TN,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +TN,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +TN,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +TN,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +TN,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +TN,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +TN,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +TN,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +TN,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +TN,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +TN,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +TN,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +TN,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +TN,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +TN,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +TN,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +TN,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +TN,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +TN,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +TN,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +TN,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +TN,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +TN,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +TN,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +TN,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +TN,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +TN,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +TN,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +TN,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +TN,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +TN,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +TN,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +TN,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +TN,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +TN,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +TN,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +TN,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +TN,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +TN,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +TN,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +TN,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +TN,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +TN,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +TN,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +TN,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +TN,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +TN,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +TN,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +TN,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +TN,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +TN,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +TN,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +TN,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +TN,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +TN,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +TN,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +TN,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +TN,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +TN,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +TN,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +TN,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +TN,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +TN,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +TN,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +TN,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +TN,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +TN,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +TN,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +TN,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +TN,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +TN,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +TN,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +TN,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +TN,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +TN,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +TN,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +TN,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +TN,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +TN,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +TN,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +TN,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +TN,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +TN,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +TN,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +TN,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +TN,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +TN,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +TN,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +TN,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +TN,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +TN,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +TN,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +TN,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +TN,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +TN,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +TN,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +TN,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +TN,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +TN,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +TN,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +TN,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +TN,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +TN,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +TN,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +TN,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +TN,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +TN,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +TN,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +TN,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +TN,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +TN,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +TN,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +TN,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +TN,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +TN,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +TN,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +TN,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +TN,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +TN,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +TN,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +TN,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +TN,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +TN,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +TN,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +TN,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +TN,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +TN,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +TN,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +TN,industrial fuel use,coal,coal,2005,CO,0.069434106 +TN,industrial fuel use,coal,coal,2010,CO,0.07723114 +TN,industrial fuel use,coal,coal,2015,CO,0.068281575 +TN,industrial fuel use,coal,coal,2020,CO,0.063753622 +TN,industrial fuel use,coal,coal,2025,CO,0.065761399 +TN,industrial fuel use,coal,coal,2030,CO,0.067959367 +TN,industrial fuel use,coal,coal,2035,CO,0.069173462 +TN,industrial fuel use,coal,coal,2040,CO,0.070202866 +TN,industrial fuel use,coal,coal,2045,CO,0.071098148 +TN,industrial fuel use,coal,coal,2050,CO,0.072063393 +TN,industrial fuel use,coal,coal,2055,CO,0.072511454 +TN,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +TN,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +TN,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +TN,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +TN,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +TN,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +TN,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +TN,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +TN,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +TN,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +TN,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +TN,industrial fuel use,gas,gas,2005,CO,0.054958784 +TN,industrial fuel use,gas,gas,2010,CO,0.041119779 +TN,industrial fuel use,gas,gas,2015,CO,0.037376927 +TN,industrial fuel use,gas,gas,2020,CO,0.042196984 +TN,industrial fuel use,gas,gas,2025,CO,0.046340259 +TN,industrial fuel use,gas,gas,2030,CO,0.051044751 +TN,industrial fuel use,gas,gas,2035,CO,0.048377476 +TN,industrial fuel use,gas,gas,2040,CO,0.04844371 +TN,industrial fuel use,gas,gas,2045,CO,0.049325699 +TN,industrial fuel use,gas,gas,2050,CO,0.048085677 +TN,industrial fuel use,gas,gas,2055,CO,0.046506083 +TN,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +TN,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +TN,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +TN,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +TN,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +TN,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +TN,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +TN,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +TN,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +TN,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +TN,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +TN,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +TN,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +TN,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +TN,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +TN,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +TN,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +TN,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +TN,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +TN,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +TN,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +TN,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +TN,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +TN,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +TN,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +TN,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +TN,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +TN,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +TN,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +TN,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +TN,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +TN,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +TN,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +TN,industrial fuel use,coal,coal,2005,CH4,0.008615911 +TN,industrial fuel use,coal,coal,2010,CH4,0.007087118 +TN,industrial fuel use,coal,coal,2015,CH4,0.007645512 +TN,industrial fuel use,coal,coal,2020,CH4,0.007093206 +TN,industrial fuel use,coal,coal,2025,CH4,0.007280827 +TN,industrial fuel use,coal,coal,2030,CH4,0.007426545 +TN,industrial fuel use,coal,coal,2035,CH4,0.007524098 +TN,industrial fuel use,coal,coal,2040,CH4,0.007621441 +TN,industrial fuel use,coal,coal,2045,CH4,0.007691307 +TN,industrial fuel use,coal,coal,2050,CH4,0.007801358 +TN,industrial fuel use,coal,coal,2055,CH4,0.007871907 +TN,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +TN,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +TN,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +TN,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +TN,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +TN,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +TN,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +TN,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +TN,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +TN,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +TN,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +TN,industrial fuel use,gas,gas,2005,CH4,0.002575726 +TN,industrial fuel use,gas,gas,2010,CH4,0.0036902 +TN,industrial fuel use,gas,gas,2015,CH4,0.001847174 +TN,industrial fuel use,gas,gas,2020,CH4,0.002575374 +TN,industrial fuel use,gas,gas,2025,CH4,0.002470739 +TN,industrial fuel use,gas,gas,2030,CH4,0.002514812 +TN,industrial fuel use,gas,gas,2035,CH4,0.004402202 +TN,industrial fuel use,gas,gas,2040,CH4,0.005194877 +TN,industrial fuel use,gas,gas,2045,CH4,0.005264291 +TN,industrial fuel use,gas,gas,2050,CH4,0.006086388 +TN,industrial fuel use,gas,gas,2055,CH4,0.006850703 +TN,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +TN,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +TN,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +TN,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +TN,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +TN,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +TN,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +TN,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +TN,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +TN,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +TN,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +TN,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +TN,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +TN,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +TN,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +TN,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +TN,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +TN,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +TN,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +TN,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +TN,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +TN,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +TN,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +TN,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +TN,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +TN,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +TN,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +TN,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +TN,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +TN,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +TN,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +TN,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +TN,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +TN,industrial fuel use,coal,coal,2005,N2O,0.002945881 +TN,industrial fuel use,coal,coal,2010,N2O,0.004699422 +TN,industrial fuel use,coal,coal,2015,N2O,0.003718249 +TN,industrial fuel use,coal,coal,2020,N2O,0.003503987 +TN,industrial fuel use,coal,coal,2025,N2O,0.003902448 +TN,industrial fuel use,coal,coal,2030,N2O,0.005231917 +TN,industrial fuel use,coal,coal,2035,N2O,0.005844861 +TN,industrial fuel use,coal,coal,2040,N2O,0.006123209 +TN,industrial fuel use,coal,coal,2045,N2O,0.006493024 +TN,industrial fuel use,coal,coal,2050,N2O,0.00643187 +TN,industrial fuel use,coal,coal,2055,N2O,0.006580646 +TN,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +TN,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +TN,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +TN,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +TN,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +TN,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +TN,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +TN,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +TN,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +TN,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +TN,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +TN,industrial fuel use,gas,gas,2005,N2O,0.000509795 +TN,industrial fuel use,gas,gas,2010,N2O,0.000459136 +TN,industrial fuel use,gas,gas,2015,N2O,0.000457847 +TN,industrial fuel use,gas,gas,2020,N2O,0.000469807 +TN,industrial fuel use,gas,gas,2025,N2O,0.0004748 +TN,industrial fuel use,gas,gas,2030,N2O,0.000493269 +TN,industrial fuel use,gas,gas,2035,N2O,0.0005142 +TN,industrial fuel use,gas,gas,2040,N2O,0.000525413 +TN,industrial fuel use,gas,gas,2045,N2O,0.000530678 +TN,industrial fuel use,gas,gas,2050,N2O,0.000534097 +TN,industrial fuel use,gas,gas,2055,N2O,0.000535185 +TN,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +TN,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +TN,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +TN,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +TN,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +TN,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +TN,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +TN,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +TN,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +TN,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +TN,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +TN,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +TN,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +TN,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +TN,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +TN,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +TN,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +TN,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +TN,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +TN,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +TN,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +TN,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +TN,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +TN,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +TN,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +TN,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +TN,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +TN,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +TN,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +TN,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +TN,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +TN,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +TN,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +TN,industrial fuel use,coal,coal,2005,BC,0.052178527 +TN,industrial fuel use,coal,coal,2010,BC,0.054113893 +TN,industrial fuel use,coal,coal,2015,BC,0.054816673 +TN,industrial fuel use,coal,coal,2020,BC,0.051442317 +TN,industrial fuel use,coal,coal,2025,BC,0.05280003 +TN,industrial fuel use,coal,coal,2030,BC,0.054819383 +TN,industrial fuel use,coal,coal,2035,BC,0.055934389 +TN,industrial fuel use,coal,coal,2040,BC,0.056737391 +TN,industrial fuel use,coal,coal,2045,BC,0.057341111 +TN,industrial fuel use,coal,coal,2050,BC,0.057867944 +TN,industrial fuel use,coal,coal,2055,BC,0.058307588 +TN,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +TN,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +TN,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +TN,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +TN,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +TN,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +TN,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +TN,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +TN,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +TN,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +TN,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +TN,industrial fuel use,gas,gas,2005,BC,0.000879555 +TN,industrial fuel use,gas,gas,2010,BC,0.000594596 +TN,industrial fuel use,gas,gas,2015,BC,0.000780779 +TN,industrial fuel use,gas,gas,2020,BC,0.000758542 +TN,industrial fuel use,gas,gas,2025,BC,0.000791704 +TN,industrial fuel use,gas,gas,2030,BC,0.000829295 +TN,industrial fuel use,gas,gas,2035,BC,0.000745895 +TN,industrial fuel use,gas,gas,2040,BC,0.000739727 +TN,industrial fuel use,gas,gas,2045,BC,0.000759191 +TN,industrial fuel use,gas,gas,2050,BC,0.000728476 +TN,industrial fuel use,gas,gas,2055,BC,0.000688571 +TN,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +TN,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +TN,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +TN,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +TN,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +TN,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +TN,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +TN,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +TN,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +TN,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +TN,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +TN,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +TN,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +TN,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +TN,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +TN,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +TN,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +TN,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +TN,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +TN,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +TN,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +TN,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +TN,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +TN,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +TN,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +TN,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +TN,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +TN,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +TN,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +TN,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +TN,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +TN,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +TN,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +TN,industrial fuel use,coal,coal,2005,OC,0.004608879 +TN,industrial fuel use,coal,coal,2010,OC,0.004949044 +TN,industrial fuel use,coal,coal,2015,OC,0.005291355 +TN,industrial fuel use,coal,coal,2020,OC,0.005047635 +TN,industrial fuel use,coal,coal,2025,OC,0.005240698 +TN,industrial fuel use,coal,coal,2030,OC,0.005398598 +TN,industrial fuel use,coal,coal,2035,OC,0.005483036 +TN,industrial fuel use,coal,coal,2040,OC,0.005583473 +TN,industrial fuel use,coal,coal,2045,OC,0.005638434 +TN,industrial fuel use,coal,coal,2050,OC,0.005723515 +TN,industrial fuel use,coal,coal,2055,OC,0.005777195 +TN,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +TN,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +TN,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +TN,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +TN,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +TN,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +TN,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +TN,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +TN,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +TN,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +TN,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +TN,industrial fuel use,gas,gas,2005,OC,0.000586894 +TN,industrial fuel use,gas,gas,2010,OC,0.000538986 +TN,industrial fuel use,gas,gas,2015,OC,0.000406177 +TN,industrial fuel use,gas,gas,2020,OC,0.000436774 +TN,industrial fuel use,gas,gas,2025,OC,0.000431434 +TN,industrial fuel use,gas,gas,2030,OC,0.000454497 +TN,industrial fuel use,gas,gas,2035,OC,0.0005142 +TN,industrial fuel use,gas,gas,2040,OC,0.000542203 +TN,industrial fuel use,gas,gas,2045,OC,0.0005354 +TN,industrial fuel use,gas,gas,2050,OC,0.000552822 +TN,industrial fuel use,gas,gas,2055,OC,0.000563528 +TN,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +TN,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +TN,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +TN,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +TN,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +TN,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +TN,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +TN,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +TN,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +TN,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +TN,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +TN,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +TN,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +TN,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +TN,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +TN,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +TN,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +TN,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +TN,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +TN,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +TN,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +TN,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +TN,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +TN,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +TN,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +TN,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +TN,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +TN,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +TN,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +TN,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +TN,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +TN,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +TN,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +TN,industrial fuel use,coal,coal,2005,CO2,0.022413751 +TN,industrial fuel use,coal,coal,2010,CO2,0.023247485 +TN,industrial fuel use,coal,coal,2015,CO2,0.023542577 +TN,industrial fuel use,coal,coal,2020,CO2,0.022100946 +TN,industrial fuel use,coal,coal,2025,CO2,0.022682182 +TN,industrial fuel use,coal,coal,2030,CO2,0.023544891 +TN,industrial fuel use,coal,coal,2035,CO2,0.024022124 +TN,industrial fuel use,coal,coal,2040,CO2,0.024371859 +TN,industrial fuel use,coal,coal,2045,CO2,0.024626877 +TN,industrial fuel use,coal,coal,2050,CO2,0.024861999 +TN,industrial fuel use,coal,coal,2055,CO2,0.025047846 +TN,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +TN,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +TN,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +TN,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +TN,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +TN,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +TN,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +TN,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +TN,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +TN,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +TN,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +TN,industrial fuel use,gas,gas,2005,CO2,0.010100215 +TN,industrial fuel use,gas,gas,2010,CO2,0.008735772 +TN,industrial fuel use,gas,gas,2015,CO2,0.008975567 +TN,industrial fuel use,gas,gas,2020,CO2,0.009141549 +TN,industrial fuel use,gas,gas,2025,CO2,0.009319403 +TN,industrial fuel use,gas,gas,2030,CO2,0.009661635 +TN,industrial fuel use,gas,gas,2035,CO2,0.009858394 +TN,industrial fuel use,gas,gas,2040,CO2,0.010090146 +TN,industrial fuel use,gas,gas,2045,CO2,0.010177486 +TN,industrial fuel use,gas,gas,2050,CO2,0.010210503 +TN,industrial fuel use,gas,gas,2055,CO2,0.010168744 +TN,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +TN,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +TN,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +TN,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +TN,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +TN,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +TN,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +TN,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +TN,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +TN,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +TN,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +TN,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +TN,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +TN,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +TN,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +TN,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +TN,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +TN,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +TN,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +TN,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +TN,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +TN,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +TN,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +TN,industrial fuel use,biomass,biomass,2005,CO2,0 +TN,industrial fuel use,biomass,biomass,2010,CO2,0 +TN,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +TN,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +TN,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +TN,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +TN,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +TN,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +TN,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +TN,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +TN,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +TN,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +TN,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +TN,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +TN,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +TN,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +TN,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +TN,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +TN,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +TN,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +TN,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +TN,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +TX,industrial fuel use,coal,coal,2005,NOx,0.261565752 +TX,industrial fuel use,coal,coal,2010,NOx,0.24128762 +TX,industrial fuel use,coal,coal,2015,NOx,0.247879608 +TX,industrial fuel use,coal,coal,2020,NOx,0.234312556 +TX,industrial fuel use,coal,coal,2025,NOx,0.240398293 +TX,industrial fuel use,coal,coal,2030,NOx,0.246677964 +TX,industrial fuel use,coal,coal,2035,NOx,0.250299201 +TX,industrial fuel use,coal,coal,2040,NOx,0.253554811 +TX,industrial fuel use,coal,coal,2045,NOx,0.255578056 +TX,industrial fuel use,coal,coal,2050,NOx,0.258549854 +TX,industrial fuel use,coal,coal,2055,NOx,0.26014596 +TX,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +TX,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +TX,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +TX,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +TX,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +TX,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +TX,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +TX,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +TX,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +TX,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +TX,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +TX,industrial fuel use,gas,gas,2005,NOx,0.080919016 +TX,industrial fuel use,gas,gas,2010,NOx,0.044952568 +TX,industrial fuel use,gas,gas,2015,NOx,0.037239142 +TX,industrial fuel use,gas,gas,2020,NOx,0.040745965 +TX,industrial fuel use,gas,gas,2025,NOx,0.042574105 +TX,industrial fuel use,gas,gas,2030,NOx,0.045347383 +TX,industrial fuel use,gas,gas,2035,NOx,0.048574619 +TX,industrial fuel use,gas,gas,2040,NOx,0.050422899 +TX,industrial fuel use,gas,gas,2045,NOx,0.050680722 +TX,industrial fuel use,gas,gas,2050,NOx,0.0517343 +TX,industrial fuel use,gas,gas,2055,NOx,0.052443137 +TX,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +TX,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +TX,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +TX,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +TX,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +TX,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +TX,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +TX,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +TX,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +TX,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +TX,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +TX,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +TX,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +TX,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +TX,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +TX,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +TX,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +TX,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +TX,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +TX,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +TX,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +TX,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +TX,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +TX,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +TX,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +TX,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +TX,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +TX,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +TX,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +TX,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +TX,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +TX,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +TX,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +TX,industrial fuel use,coal,coal,2005,SO2,0.709862367 +TX,industrial fuel use,coal,coal,2010,SO2,0.679592789 +TX,industrial fuel use,coal,coal,2015,SO2,0.590904591 +TX,industrial fuel use,coal,coal,2020,SO2,0.549595621 +TX,industrial fuel use,coal,coal,2025,SO2,0.56430149 +TX,industrial fuel use,coal,coal,2030,SO2,0.576548046 +TX,industrial fuel use,coal,coal,2035,SO2,0.583595424 +TX,industrial fuel use,coal,coal,2040,SO2,0.590805881 +TX,industrial fuel use,coal,coal,2045,SO2,0.596410723 +TX,industrial fuel use,coal,coal,2050,SO2,0.606154195 +TX,industrial fuel use,coal,coal,2055,SO2,0.611234923 +TX,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +TX,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +TX,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +TX,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +TX,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +TX,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +TX,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +TX,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +TX,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +TX,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +TX,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +TX,industrial fuel use,gas,gas,2005,SO2,0.000213988 +TX,industrial fuel use,gas,gas,2010,SO2,0.002761946 +TX,industrial fuel use,gas,gas,2015,SO2,0.002854723 +TX,industrial fuel use,gas,gas,2020,SO2,0.002771127 +TX,industrial fuel use,gas,gas,2025,SO2,0.002798763 +TX,industrial fuel use,gas,gas,2030,SO2,0.002938075 +TX,industrial fuel use,gas,gas,2035,SO2,0.003016098 +TX,industrial fuel use,gas,gas,2040,SO2,0.003118901 +TX,industrial fuel use,gas,gas,2045,SO2,0.00311325 +TX,industrial fuel use,gas,gas,2050,SO2,0.003090451 +TX,industrial fuel use,gas,gas,2055,SO2,0.003025213 +TX,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +TX,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +TX,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +TX,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +TX,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +TX,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +TX,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +TX,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +TX,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +TX,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +TX,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +TX,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +TX,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +TX,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +TX,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +TX,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +TX,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +TX,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +TX,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +TX,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +TX,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +TX,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +TX,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +TX,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +TX,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +TX,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +TX,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +TX,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +TX,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +TX,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +TX,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +TX,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +TX,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +TX,industrial fuel use,coal,coal,2005,PM10,0.136452905 +TX,industrial fuel use,coal,coal,2010,PM10,0.093662835 +TX,industrial fuel use,coal,coal,2015,PM10,0.100887759 +TX,industrial fuel use,coal,coal,2020,PM10,0.094503476 +TX,industrial fuel use,coal,coal,2025,PM10,0.09752377 +TX,industrial fuel use,coal,coal,2030,PM10,0.099823133 +TX,industrial fuel use,coal,coal,2035,PM10,0.101097535 +TX,industrial fuel use,coal,coal,2040,PM10,0.102438117 +TX,industrial fuel use,coal,coal,2045,PM10,0.103553978 +TX,industrial fuel use,coal,coal,2050,PM10,0.105393893 +TX,industrial fuel use,coal,coal,2055,PM10,0.106304221 +TX,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +TX,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +TX,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +TX,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +TX,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +TX,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +TX,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +TX,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +TX,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +TX,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +TX,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +TX,industrial fuel use,gas,gas,2005,PM10,0.002144603 +TX,industrial fuel use,gas,gas,2010,PM10,0.004157892 +TX,industrial fuel use,gas,gas,2015,PM10,0.004308637 +TX,industrial fuel use,gas,gas,2020,PM10,0.004261296 +TX,industrial fuel use,gas,gas,2025,PM10,0.004334357 +TX,industrial fuel use,gas,gas,2030,PM10,0.00454497 +TX,industrial fuel use,gas,gas,2035,PM10,0.004581054 +TX,industrial fuel use,gas,gas,2040,PM10,0.004690204 +TX,industrial fuel use,gas,gas,2045,PM10,0.004695842 +TX,industrial fuel use,gas,gas,2050,PM10,0.004649052 +TX,industrial fuel use,gas,gas,2055,PM10,0.00454824 +TX,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +TX,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +TX,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +TX,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +TX,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +TX,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +TX,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +TX,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +TX,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +TX,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +TX,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +TX,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +TX,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +TX,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +TX,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +TX,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +TX,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +TX,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +TX,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +TX,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +TX,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +TX,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +TX,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +TX,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +TX,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +TX,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +TX,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +TX,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +TX,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +TX,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +TX,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +TX,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +TX,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +TX,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +TX,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +TX,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +TX,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +TX,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +TX,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +TX,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +TX,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +TX,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +TX,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +TX,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +TX,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +TX,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +TX,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +TX,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +TX,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +TX,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +TX,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +TX,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +TX,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +TX,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +TX,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +TX,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +TX,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +TX,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +TX,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +TX,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +TX,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +TX,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +TX,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +TX,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +TX,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +TX,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +TX,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +TX,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +TX,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +TX,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +TX,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +TX,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +TX,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +TX,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +TX,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +TX,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +TX,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +TX,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +TX,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +TX,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +TX,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +TX,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +TX,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +TX,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +TX,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +TX,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +TX,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +TX,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +TX,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +TX,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +TX,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +TX,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +TX,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +TX,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +TX,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +TX,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +TX,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +TX,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +TX,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +TX,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +TX,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +TX,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +TX,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +TX,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +TX,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +TX,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +TX,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +TX,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +TX,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +TX,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +TX,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +TX,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +TX,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +TX,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +TX,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +TX,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +TX,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +TX,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +TX,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +TX,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +TX,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +TX,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +TX,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +TX,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +TX,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +TX,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +TX,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +TX,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +TX,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +TX,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +TX,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +TX,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +TX,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +TX,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +TX,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +TX,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +TX,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +TX,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +TX,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +TX,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +TX,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +TX,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +TX,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +TX,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +TX,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +TX,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +TX,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +TX,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +TX,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +TX,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +TX,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +TX,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +TX,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +TX,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +TX,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +TX,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +TX,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +TX,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +TX,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +TX,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +TX,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +TX,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +TX,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +TX,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +TX,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +TX,industrial fuel use,coal,coal,2005,CO,0.069434106 +TX,industrial fuel use,coal,coal,2010,CO,0.07723114 +TX,industrial fuel use,coal,coal,2015,CO,0.068281575 +TX,industrial fuel use,coal,coal,2020,CO,0.063753622 +TX,industrial fuel use,coal,coal,2025,CO,0.065761399 +TX,industrial fuel use,coal,coal,2030,CO,0.067959367 +TX,industrial fuel use,coal,coal,2035,CO,0.069173462 +TX,industrial fuel use,coal,coal,2040,CO,0.070202866 +TX,industrial fuel use,coal,coal,2045,CO,0.071098148 +TX,industrial fuel use,coal,coal,2050,CO,0.072063393 +TX,industrial fuel use,coal,coal,2055,CO,0.072511454 +TX,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +TX,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +TX,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +TX,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +TX,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +TX,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +TX,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +TX,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +TX,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +TX,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +TX,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +TX,industrial fuel use,gas,gas,2005,CO,0.054958784 +TX,industrial fuel use,gas,gas,2010,CO,0.041119779 +TX,industrial fuel use,gas,gas,2015,CO,0.037376927 +TX,industrial fuel use,gas,gas,2020,CO,0.042196984 +TX,industrial fuel use,gas,gas,2025,CO,0.046340259 +TX,industrial fuel use,gas,gas,2030,CO,0.051044751 +TX,industrial fuel use,gas,gas,2035,CO,0.048377476 +TX,industrial fuel use,gas,gas,2040,CO,0.04844371 +TX,industrial fuel use,gas,gas,2045,CO,0.049325699 +TX,industrial fuel use,gas,gas,2050,CO,0.048085677 +TX,industrial fuel use,gas,gas,2055,CO,0.046506083 +TX,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +TX,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +TX,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +TX,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +TX,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +TX,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +TX,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +TX,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +TX,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +TX,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +TX,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +TX,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +TX,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +TX,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +TX,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +TX,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +TX,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +TX,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +TX,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +TX,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +TX,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +TX,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +TX,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +TX,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +TX,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +TX,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +TX,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +TX,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +TX,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +TX,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +TX,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +TX,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +TX,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +TX,industrial fuel use,coal,coal,2005,CH4,0.008615911 +TX,industrial fuel use,coal,coal,2010,CH4,0.007087118 +TX,industrial fuel use,coal,coal,2015,CH4,0.007645512 +TX,industrial fuel use,coal,coal,2020,CH4,0.007093206 +TX,industrial fuel use,coal,coal,2025,CH4,0.007280827 +TX,industrial fuel use,coal,coal,2030,CH4,0.007426545 +TX,industrial fuel use,coal,coal,2035,CH4,0.007524098 +TX,industrial fuel use,coal,coal,2040,CH4,0.007621441 +TX,industrial fuel use,coal,coal,2045,CH4,0.007691307 +TX,industrial fuel use,coal,coal,2050,CH4,0.007801358 +TX,industrial fuel use,coal,coal,2055,CH4,0.007871907 +TX,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +TX,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +TX,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +TX,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +TX,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +TX,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +TX,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +TX,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +TX,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +TX,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +TX,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +TX,industrial fuel use,gas,gas,2005,CH4,0.002575726 +TX,industrial fuel use,gas,gas,2010,CH4,0.0036902 +TX,industrial fuel use,gas,gas,2015,CH4,0.001847174 +TX,industrial fuel use,gas,gas,2020,CH4,0.002575374 +TX,industrial fuel use,gas,gas,2025,CH4,0.002470739 +TX,industrial fuel use,gas,gas,2030,CH4,0.002514812 +TX,industrial fuel use,gas,gas,2035,CH4,0.004402202 +TX,industrial fuel use,gas,gas,2040,CH4,0.005194877 +TX,industrial fuel use,gas,gas,2045,CH4,0.005264291 +TX,industrial fuel use,gas,gas,2050,CH4,0.006086388 +TX,industrial fuel use,gas,gas,2055,CH4,0.006850703 +TX,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +TX,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +TX,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +TX,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +TX,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +TX,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +TX,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +TX,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +TX,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +TX,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +TX,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +TX,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +TX,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +TX,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +TX,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +TX,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +TX,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +TX,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +TX,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +TX,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +TX,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +TX,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +TX,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +TX,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +TX,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +TX,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +TX,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +TX,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +TX,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +TX,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +TX,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +TX,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +TX,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +TX,industrial fuel use,coal,coal,2005,N2O,0.002945881 +TX,industrial fuel use,coal,coal,2010,N2O,0.004699422 +TX,industrial fuel use,coal,coal,2015,N2O,0.003718249 +TX,industrial fuel use,coal,coal,2020,N2O,0.003503987 +TX,industrial fuel use,coal,coal,2025,N2O,0.003902448 +TX,industrial fuel use,coal,coal,2030,N2O,0.005231917 +TX,industrial fuel use,coal,coal,2035,N2O,0.005844861 +TX,industrial fuel use,coal,coal,2040,N2O,0.006123209 +TX,industrial fuel use,coal,coal,2045,N2O,0.006493024 +TX,industrial fuel use,coal,coal,2050,N2O,0.00643187 +TX,industrial fuel use,coal,coal,2055,N2O,0.006580646 +TX,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +TX,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +TX,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +TX,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +TX,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +TX,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +TX,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +TX,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +TX,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +TX,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +TX,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +TX,industrial fuel use,gas,gas,2005,N2O,0.000509795 +TX,industrial fuel use,gas,gas,2010,N2O,0.000459136 +TX,industrial fuel use,gas,gas,2015,N2O,0.000457847 +TX,industrial fuel use,gas,gas,2020,N2O,0.000469807 +TX,industrial fuel use,gas,gas,2025,N2O,0.0004748 +TX,industrial fuel use,gas,gas,2030,N2O,0.000493269 +TX,industrial fuel use,gas,gas,2035,N2O,0.0005142 +TX,industrial fuel use,gas,gas,2040,N2O,0.000525413 +TX,industrial fuel use,gas,gas,2045,N2O,0.000530678 +TX,industrial fuel use,gas,gas,2050,N2O,0.000534097 +TX,industrial fuel use,gas,gas,2055,N2O,0.000535185 +TX,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +TX,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +TX,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +TX,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +TX,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +TX,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +TX,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +TX,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +TX,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +TX,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +TX,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +TX,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +TX,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +TX,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +TX,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +TX,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +TX,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +TX,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +TX,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +TX,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +TX,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +TX,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +TX,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +TX,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +TX,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +TX,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +TX,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +TX,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +TX,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +TX,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +TX,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +TX,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +TX,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +TX,industrial fuel use,coal,coal,2005,BC,0.052178527 +TX,industrial fuel use,coal,coal,2010,BC,0.054113893 +TX,industrial fuel use,coal,coal,2015,BC,0.054816673 +TX,industrial fuel use,coal,coal,2020,BC,0.051442317 +TX,industrial fuel use,coal,coal,2025,BC,0.05280003 +TX,industrial fuel use,coal,coal,2030,BC,0.054819383 +TX,industrial fuel use,coal,coal,2035,BC,0.055934389 +TX,industrial fuel use,coal,coal,2040,BC,0.056737391 +TX,industrial fuel use,coal,coal,2045,BC,0.057341111 +TX,industrial fuel use,coal,coal,2050,BC,0.057867944 +TX,industrial fuel use,coal,coal,2055,BC,0.058307588 +TX,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +TX,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +TX,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +TX,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +TX,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +TX,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +TX,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +TX,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +TX,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +TX,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +TX,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +TX,industrial fuel use,gas,gas,2005,BC,0.000879555 +TX,industrial fuel use,gas,gas,2010,BC,0.000594596 +TX,industrial fuel use,gas,gas,2015,BC,0.000780779 +TX,industrial fuel use,gas,gas,2020,BC,0.000758542 +TX,industrial fuel use,gas,gas,2025,BC,0.000791704 +TX,industrial fuel use,gas,gas,2030,BC,0.000829295 +TX,industrial fuel use,gas,gas,2035,BC,0.000745895 +TX,industrial fuel use,gas,gas,2040,BC,0.000739727 +TX,industrial fuel use,gas,gas,2045,BC,0.000759191 +TX,industrial fuel use,gas,gas,2050,BC,0.000728476 +TX,industrial fuel use,gas,gas,2055,BC,0.000688571 +TX,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +TX,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +TX,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +TX,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +TX,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +TX,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +TX,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +TX,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +TX,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +TX,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +TX,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +TX,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +TX,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +TX,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +TX,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +TX,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +TX,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +TX,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +TX,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +TX,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +TX,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +TX,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +TX,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +TX,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +TX,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +TX,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +TX,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +TX,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +TX,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +TX,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +TX,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +TX,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +TX,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +TX,industrial fuel use,coal,coal,2005,OC,0.004608879 +TX,industrial fuel use,coal,coal,2010,OC,0.004949044 +TX,industrial fuel use,coal,coal,2015,OC,0.005291355 +TX,industrial fuel use,coal,coal,2020,OC,0.005047635 +TX,industrial fuel use,coal,coal,2025,OC,0.005240698 +TX,industrial fuel use,coal,coal,2030,OC,0.005398598 +TX,industrial fuel use,coal,coal,2035,OC,0.005483036 +TX,industrial fuel use,coal,coal,2040,OC,0.005583473 +TX,industrial fuel use,coal,coal,2045,OC,0.005638434 +TX,industrial fuel use,coal,coal,2050,OC,0.005723515 +TX,industrial fuel use,coal,coal,2055,OC,0.005777195 +TX,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +TX,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +TX,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +TX,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +TX,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +TX,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +TX,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +TX,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +TX,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +TX,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +TX,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +TX,industrial fuel use,gas,gas,2005,OC,0.000586894 +TX,industrial fuel use,gas,gas,2010,OC,0.000538986 +TX,industrial fuel use,gas,gas,2015,OC,0.000406177 +TX,industrial fuel use,gas,gas,2020,OC,0.000436774 +TX,industrial fuel use,gas,gas,2025,OC,0.000431434 +TX,industrial fuel use,gas,gas,2030,OC,0.000454497 +TX,industrial fuel use,gas,gas,2035,OC,0.0005142 +TX,industrial fuel use,gas,gas,2040,OC,0.000542203 +TX,industrial fuel use,gas,gas,2045,OC,0.0005354 +TX,industrial fuel use,gas,gas,2050,OC,0.000552822 +TX,industrial fuel use,gas,gas,2055,OC,0.000563528 +TX,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +TX,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +TX,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +TX,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +TX,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +TX,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +TX,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +TX,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +TX,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +TX,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +TX,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +TX,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +TX,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +TX,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +TX,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +TX,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +TX,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +TX,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +TX,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +TX,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +TX,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +TX,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +TX,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +TX,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +TX,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +TX,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +TX,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +TX,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +TX,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +TX,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +TX,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +TX,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +TX,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +TX,industrial fuel use,coal,coal,2005,CO2,0.022413751 +TX,industrial fuel use,coal,coal,2010,CO2,0.023247485 +TX,industrial fuel use,coal,coal,2015,CO2,0.023542577 +TX,industrial fuel use,coal,coal,2020,CO2,0.022100946 +TX,industrial fuel use,coal,coal,2025,CO2,0.022682182 +TX,industrial fuel use,coal,coal,2030,CO2,0.023544891 +TX,industrial fuel use,coal,coal,2035,CO2,0.024022124 +TX,industrial fuel use,coal,coal,2040,CO2,0.024371859 +TX,industrial fuel use,coal,coal,2045,CO2,0.024626877 +TX,industrial fuel use,coal,coal,2050,CO2,0.024861999 +TX,industrial fuel use,coal,coal,2055,CO2,0.025047846 +TX,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +TX,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +TX,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +TX,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +TX,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +TX,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +TX,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +TX,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +TX,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +TX,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +TX,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +TX,industrial fuel use,gas,gas,2005,CO2,0.010100215 +TX,industrial fuel use,gas,gas,2010,CO2,0.008735772 +TX,industrial fuel use,gas,gas,2015,CO2,0.008975567 +TX,industrial fuel use,gas,gas,2020,CO2,0.009141549 +TX,industrial fuel use,gas,gas,2025,CO2,0.009319403 +TX,industrial fuel use,gas,gas,2030,CO2,0.009661635 +TX,industrial fuel use,gas,gas,2035,CO2,0.009858394 +TX,industrial fuel use,gas,gas,2040,CO2,0.010090146 +TX,industrial fuel use,gas,gas,2045,CO2,0.010177486 +TX,industrial fuel use,gas,gas,2050,CO2,0.010210503 +TX,industrial fuel use,gas,gas,2055,CO2,0.010168744 +TX,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +TX,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +TX,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +TX,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +TX,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +TX,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +TX,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +TX,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +TX,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +TX,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +TX,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +TX,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +TX,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +TX,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +TX,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +TX,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +TX,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +TX,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +TX,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +TX,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +TX,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +TX,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +TX,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +TX,industrial fuel use,biomass,biomass,2005,CO2,0 +TX,industrial fuel use,biomass,biomass,2010,CO2,0 +TX,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +TX,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +TX,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +TX,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +TX,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +TX,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +TX,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +TX,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +TX,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +TX,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +TX,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +TX,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +TX,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +TX,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +TX,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +TX,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +TX,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +TX,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +TX,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +TX,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +UT,industrial fuel use,coal,coal,2005,NOx,0.261565752 +UT,industrial fuel use,coal,coal,2010,NOx,0.24128762 +UT,industrial fuel use,coal,coal,2015,NOx,0.247879608 +UT,industrial fuel use,coal,coal,2020,NOx,0.234312556 +UT,industrial fuel use,coal,coal,2025,NOx,0.240398293 +UT,industrial fuel use,coal,coal,2030,NOx,0.246677964 +UT,industrial fuel use,coal,coal,2035,NOx,0.250299201 +UT,industrial fuel use,coal,coal,2040,NOx,0.253554811 +UT,industrial fuel use,coal,coal,2045,NOx,0.255578056 +UT,industrial fuel use,coal,coal,2050,NOx,0.258549854 +UT,industrial fuel use,coal,coal,2055,NOx,0.26014596 +UT,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +UT,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +UT,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +UT,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +UT,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +UT,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +UT,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +UT,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +UT,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +UT,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +UT,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +UT,industrial fuel use,gas,gas,2005,NOx,0.080919016 +UT,industrial fuel use,gas,gas,2010,NOx,0.044952568 +UT,industrial fuel use,gas,gas,2015,NOx,0.037239142 +UT,industrial fuel use,gas,gas,2020,NOx,0.040745965 +UT,industrial fuel use,gas,gas,2025,NOx,0.042574105 +UT,industrial fuel use,gas,gas,2030,NOx,0.045347383 +UT,industrial fuel use,gas,gas,2035,NOx,0.048574619 +UT,industrial fuel use,gas,gas,2040,NOx,0.050422899 +UT,industrial fuel use,gas,gas,2045,NOx,0.050680722 +UT,industrial fuel use,gas,gas,2050,NOx,0.0517343 +UT,industrial fuel use,gas,gas,2055,NOx,0.052443137 +UT,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +UT,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +UT,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +UT,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +UT,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +UT,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +UT,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +UT,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +UT,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +UT,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +UT,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +UT,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +UT,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +UT,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +UT,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +UT,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +UT,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +UT,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +UT,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +UT,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +UT,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +UT,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +UT,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +UT,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +UT,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +UT,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +UT,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +UT,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +UT,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +UT,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +UT,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +UT,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +UT,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +UT,industrial fuel use,coal,coal,2005,SO2,0.709862367 +UT,industrial fuel use,coal,coal,2010,SO2,0.679592789 +UT,industrial fuel use,coal,coal,2015,SO2,0.590904591 +UT,industrial fuel use,coal,coal,2020,SO2,0.549595621 +UT,industrial fuel use,coal,coal,2025,SO2,0.56430149 +UT,industrial fuel use,coal,coal,2030,SO2,0.576548046 +UT,industrial fuel use,coal,coal,2035,SO2,0.583595424 +UT,industrial fuel use,coal,coal,2040,SO2,0.590805881 +UT,industrial fuel use,coal,coal,2045,SO2,0.596410723 +UT,industrial fuel use,coal,coal,2050,SO2,0.606154195 +UT,industrial fuel use,coal,coal,2055,SO2,0.611234923 +UT,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +UT,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +UT,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +UT,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +UT,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +UT,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +UT,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +UT,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +UT,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +UT,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +UT,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +UT,industrial fuel use,gas,gas,2005,SO2,0.000213988 +UT,industrial fuel use,gas,gas,2010,SO2,0.002761946 +UT,industrial fuel use,gas,gas,2015,SO2,0.002854723 +UT,industrial fuel use,gas,gas,2020,SO2,0.002771127 +UT,industrial fuel use,gas,gas,2025,SO2,0.002798763 +UT,industrial fuel use,gas,gas,2030,SO2,0.002938075 +UT,industrial fuel use,gas,gas,2035,SO2,0.003016098 +UT,industrial fuel use,gas,gas,2040,SO2,0.003118901 +UT,industrial fuel use,gas,gas,2045,SO2,0.00311325 +UT,industrial fuel use,gas,gas,2050,SO2,0.003090451 +UT,industrial fuel use,gas,gas,2055,SO2,0.003025213 +UT,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +UT,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +UT,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +UT,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +UT,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +UT,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +UT,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +UT,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +UT,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +UT,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +UT,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +UT,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +UT,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +UT,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +UT,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +UT,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +UT,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +UT,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +UT,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +UT,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +UT,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +UT,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +UT,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +UT,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +UT,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +UT,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +UT,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +UT,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +UT,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +UT,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +UT,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +UT,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +UT,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +UT,industrial fuel use,coal,coal,2005,PM10,0.136452905 +UT,industrial fuel use,coal,coal,2010,PM10,0.093662835 +UT,industrial fuel use,coal,coal,2015,PM10,0.100887759 +UT,industrial fuel use,coal,coal,2020,PM10,0.094503476 +UT,industrial fuel use,coal,coal,2025,PM10,0.09752377 +UT,industrial fuel use,coal,coal,2030,PM10,0.099823133 +UT,industrial fuel use,coal,coal,2035,PM10,0.101097535 +UT,industrial fuel use,coal,coal,2040,PM10,0.102438117 +UT,industrial fuel use,coal,coal,2045,PM10,0.103553978 +UT,industrial fuel use,coal,coal,2050,PM10,0.105393893 +UT,industrial fuel use,coal,coal,2055,PM10,0.106304221 +UT,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +UT,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +UT,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +UT,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +UT,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +UT,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +UT,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +UT,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +UT,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +UT,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +UT,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +UT,industrial fuel use,gas,gas,2005,PM10,0.002144603 +UT,industrial fuel use,gas,gas,2010,PM10,0.004157892 +UT,industrial fuel use,gas,gas,2015,PM10,0.004308637 +UT,industrial fuel use,gas,gas,2020,PM10,0.004261296 +UT,industrial fuel use,gas,gas,2025,PM10,0.004334357 +UT,industrial fuel use,gas,gas,2030,PM10,0.00454497 +UT,industrial fuel use,gas,gas,2035,PM10,0.004581054 +UT,industrial fuel use,gas,gas,2040,PM10,0.004690204 +UT,industrial fuel use,gas,gas,2045,PM10,0.004695842 +UT,industrial fuel use,gas,gas,2050,PM10,0.004649052 +UT,industrial fuel use,gas,gas,2055,PM10,0.00454824 +UT,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +UT,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +UT,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +UT,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +UT,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +UT,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +UT,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +UT,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +UT,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +UT,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +UT,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +UT,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +UT,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +UT,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +UT,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +UT,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +UT,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +UT,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +UT,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +UT,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +UT,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +UT,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +UT,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +UT,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +UT,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +UT,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +UT,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +UT,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +UT,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +UT,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +UT,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +UT,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +UT,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +UT,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +UT,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +UT,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +UT,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +UT,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +UT,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +UT,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +UT,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +UT,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +UT,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +UT,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +UT,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +UT,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +UT,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +UT,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +UT,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +UT,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +UT,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +UT,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +UT,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +UT,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +UT,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +UT,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +UT,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +UT,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +UT,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +UT,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +UT,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +UT,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +UT,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +UT,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +UT,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +UT,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +UT,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +UT,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +UT,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +UT,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +UT,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +UT,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +UT,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +UT,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +UT,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +UT,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +UT,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +UT,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +UT,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +UT,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +UT,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +UT,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +UT,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +UT,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +UT,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +UT,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +UT,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +UT,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +UT,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +UT,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +UT,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +UT,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +UT,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +UT,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +UT,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +UT,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +UT,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +UT,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +UT,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +UT,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +UT,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +UT,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +UT,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +UT,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +UT,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +UT,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +UT,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +UT,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +UT,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +UT,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +UT,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +UT,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +UT,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +UT,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +UT,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +UT,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +UT,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +UT,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +UT,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +UT,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +UT,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +UT,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +UT,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +UT,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +UT,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +UT,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +UT,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +UT,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +UT,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +UT,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +UT,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +UT,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +UT,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +UT,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +UT,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +UT,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +UT,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +UT,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +UT,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +UT,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +UT,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +UT,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +UT,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +UT,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +UT,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +UT,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +UT,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +UT,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +UT,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +UT,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +UT,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +UT,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +UT,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +UT,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +UT,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +UT,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +UT,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +UT,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +UT,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +UT,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +UT,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +UT,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +UT,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +UT,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +UT,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +UT,industrial fuel use,coal,coal,2005,CO,0.069434106 +UT,industrial fuel use,coal,coal,2010,CO,0.07723114 +UT,industrial fuel use,coal,coal,2015,CO,0.068281575 +UT,industrial fuel use,coal,coal,2020,CO,0.063753622 +UT,industrial fuel use,coal,coal,2025,CO,0.065761399 +UT,industrial fuel use,coal,coal,2030,CO,0.067959367 +UT,industrial fuel use,coal,coal,2035,CO,0.069173462 +UT,industrial fuel use,coal,coal,2040,CO,0.070202866 +UT,industrial fuel use,coal,coal,2045,CO,0.071098148 +UT,industrial fuel use,coal,coal,2050,CO,0.072063393 +UT,industrial fuel use,coal,coal,2055,CO,0.072511454 +UT,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +UT,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +UT,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +UT,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +UT,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +UT,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +UT,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +UT,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +UT,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +UT,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +UT,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +UT,industrial fuel use,gas,gas,2005,CO,0.054958784 +UT,industrial fuel use,gas,gas,2010,CO,0.041119779 +UT,industrial fuel use,gas,gas,2015,CO,0.037376927 +UT,industrial fuel use,gas,gas,2020,CO,0.042196984 +UT,industrial fuel use,gas,gas,2025,CO,0.046340259 +UT,industrial fuel use,gas,gas,2030,CO,0.051044751 +UT,industrial fuel use,gas,gas,2035,CO,0.048377476 +UT,industrial fuel use,gas,gas,2040,CO,0.04844371 +UT,industrial fuel use,gas,gas,2045,CO,0.049325699 +UT,industrial fuel use,gas,gas,2050,CO,0.048085677 +UT,industrial fuel use,gas,gas,2055,CO,0.046506083 +UT,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +UT,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +UT,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +UT,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +UT,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +UT,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +UT,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +UT,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +UT,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +UT,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +UT,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +UT,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +UT,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +UT,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +UT,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +UT,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +UT,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +UT,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +UT,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +UT,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +UT,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +UT,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +UT,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +UT,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +UT,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +UT,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +UT,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +UT,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +UT,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +UT,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +UT,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +UT,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +UT,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +UT,industrial fuel use,coal,coal,2005,CH4,0.008615911 +UT,industrial fuel use,coal,coal,2010,CH4,0.007087118 +UT,industrial fuel use,coal,coal,2015,CH4,0.007645512 +UT,industrial fuel use,coal,coal,2020,CH4,0.007093206 +UT,industrial fuel use,coal,coal,2025,CH4,0.007280827 +UT,industrial fuel use,coal,coal,2030,CH4,0.007426545 +UT,industrial fuel use,coal,coal,2035,CH4,0.007524098 +UT,industrial fuel use,coal,coal,2040,CH4,0.007621441 +UT,industrial fuel use,coal,coal,2045,CH4,0.007691307 +UT,industrial fuel use,coal,coal,2050,CH4,0.007801358 +UT,industrial fuel use,coal,coal,2055,CH4,0.007871907 +UT,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +UT,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +UT,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +UT,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +UT,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +UT,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +UT,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +UT,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +UT,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +UT,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +UT,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +UT,industrial fuel use,gas,gas,2005,CH4,0.002575726 +UT,industrial fuel use,gas,gas,2010,CH4,0.0036902 +UT,industrial fuel use,gas,gas,2015,CH4,0.001847174 +UT,industrial fuel use,gas,gas,2020,CH4,0.002575374 +UT,industrial fuel use,gas,gas,2025,CH4,0.002470739 +UT,industrial fuel use,gas,gas,2030,CH4,0.002514812 +UT,industrial fuel use,gas,gas,2035,CH4,0.004402202 +UT,industrial fuel use,gas,gas,2040,CH4,0.005194877 +UT,industrial fuel use,gas,gas,2045,CH4,0.005264291 +UT,industrial fuel use,gas,gas,2050,CH4,0.006086388 +UT,industrial fuel use,gas,gas,2055,CH4,0.006850703 +UT,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +UT,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +UT,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +UT,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +UT,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +UT,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +UT,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +UT,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +UT,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +UT,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +UT,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +UT,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +UT,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +UT,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +UT,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +UT,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +UT,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +UT,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +UT,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +UT,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +UT,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +UT,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +UT,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +UT,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +UT,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +UT,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +UT,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +UT,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +UT,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +UT,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +UT,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +UT,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +UT,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +UT,industrial fuel use,coal,coal,2005,N2O,0.002945881 +UT,industrial fuel use,coal,coal,2010,N2O,0.004699422 +UT,industrial fuel use,coal,coal,2015,N2O,0.003718249 +UT,industrial fuel use,coal,coal,2020,N2O,0.003503987 +UT,industrial fuel use,coal,coal,2025,N2O,0.003902448 +UT,industrial fuel use,coal,coal,2030,N2O,0.005231917 +UT,industrial fuel use,coal,coal,2035,N2O,0.005844861 +UT,industrial fuel use,coal,coal,2040,N2O,0.006123209 +UT,industrial fuel use,coal,coal,2045,N2O,0.006493024 +UT,industrial fuel use,coal,coal,2050,N2O,0.00643187 +UT,industrial fuel use,coal,coal,2055,N2O,0.006580646 +UT,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +UT,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +UT,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +UT,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +UT,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +UT,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +UT,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +UT,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +UT,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +UT,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +UT,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +UT,industrial fuel use,gas,gas,2005,N2O,0.000509795 +UT,industrial fuel use,gas,gas,2010,N2O,0.000459136 +UT,industrial fuel use,gas,gas,2015,N2O,0.000457847 +UT,industrial fuel use,gas,gas,2020,N2O,0.000469807 +UT,industrial fuel use,gas,gas,2025,N2O,0.0004748 +UT,industrial fuel use,gas,gas,2030,N2O,0.000493269 +UT,industrial fuel use,gas,gas,2035,N2O,0.0005142 +UT,industrial fuel use,gas,gas,2040,N2O,0.000525413 +UT,industrial fuel use,gas,gas,2045,N2O,0.000530678 +UT,industrial fuel use,gas,gas,2050,N2O,0.000534097 +UT,industrial fuel use,gas,gas,2055,N2O,0.000535185 +UT,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +UT,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +UT,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +UT,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +UT,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +UT,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +UT,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +UT,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +UT,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +UT,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +UT,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +UT,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +UT,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +UT,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +UT,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +UT,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +UT,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +UT,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +UT,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +UT,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +UT,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +UT,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +UT,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +UT,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +UT,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +UT,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +UT,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +UT,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +UT,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +UT,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +UT,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +UT,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +UT,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +UT,industrial fuel use,coal,coal,2005,BC,0.052178527 +UT,industrial fuel use,coal,coal,2010,BC,0.054113893 +UT,industrial fuel use,coal,coal,2015,BC,0.054816673 +UT,industrial fuel use,coal,coal,2020,BC,0.051442317 +UT,industrial fuel use,coal,coal,2025,BC,0.05280003 +UT,industrial fuel use,coal,coal,2030,BC,0.054819383 +UT,industrial fuel use,coal,coal,2035,BC,0.055934389 +UT,industrial fuel use,coal,coal,2040,BC,0.056737391 +UT,industrial fuel use,coal,coal,2045,BC,0.057341111 +UT,industrial fuel use,coal,coal,2050,BC,0.057867944 +UT,industrial fuel use,coal,coal,2055,BC,0.058307588 +UT,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +UT,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +UT,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +UT,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +UT,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +UT,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +UT,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +UT,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +UT,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +UT,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +UT,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +UT,industrial fuel use,gas,gas,2005,BC,0.000879555 +UT,industrial fuel use,gas,gas,2010,BC,0.000594596 +UT,industrial fuel use,gas,gas,2015,BC,0.000780779 +UT,industrial fuel use,gas,gas,2020,BC,0.000758542 +UT,industrial fuel use,gas,gas,2025,BC,0.000791704 +UT,industrial fuel use,gas,gas,2030,BC,0.000829295 +UT,industrial fuel use,gas,gas,2035,BC,0.000745895 +UT,industrial fuel use,gas,gas,2040,BC,0.000739727 +UT,industrial fuel use,gas,gas,2045,BC,0.000759191 +UT,industrial fuel use,gas,gas,2050,BC,0.000728476 +UT,industrial fuel use,gas,gas,2055,BC,0.000688571 +UT,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +UT,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +UT,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +UT,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +UT,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +UT,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +UT,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +UT,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +UT,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +UT,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +UT,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +UT,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +UT,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +UT,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +UT,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +UT,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +UT,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +UT,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +UT,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +UT,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +UT,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +UT,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +UT,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +UT,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +UT,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +UT,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +UT,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +UT,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +UT,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +UT,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +UT,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +UT,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +UT,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +UT,industrial fuel use,coal,coal,2005,OC,0.004608879 +UT,industrial fuel use,coal,coal,2010,OC,0.004949044 +UT,industrial fuel use,coal,coal,2015,OC,0.005291355 +UT,industrial fuel use,coal,coal,2020,OC,0.005047635 +UT,industrial fuel use,coal,coal,2025,OC,0.005240698 +UT,industrial fuel use,coal,coal,2030,OC,0.005398598 +UT,industrial fuel use,coal,coal,2035,OC,0.005483036 +UT,industrial fuel use,coal,coal,2040,OC,0.005583473 +UT,industrial fuel use,coal,coal,2045,OC,0.005638434 +UT,industrial fuel use,coal,coal,2050,OC,0.005723515 +UT,industrial fuel use,coal,coal,2055,OC,0.005777195 +UT,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +UT,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +UT,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +UT,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +UT,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +UT,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +UT,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +UT,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +UT,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +UT,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +UT,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +UT,industrial fuel use,gas,gas,2005,OC,0.000586894 +UT,industrial fuel use,gas,gas,2010,OC,0.000538986 +UT,industrial fuel use,gas,gas,2015,OC,0.000406177 +UT,industrial fuel use,gas,gas,2020,OC,0.000436774 +UT,industrial fuel use,gas,gas,2025,OC,0.000431434 +UT,industrial fuel use,gas,gas,2030,OC,0.000454497 +UT,industrial fuel use,gas,gas,2035,OC,0.0005142 +UT,industrial fuel use,gas,gas,2040,OC,0.000542203 +UT,industrial fuel use,gas,gas,2045,OC,0.0005354 +UT,industrial fuel use,gas,gas,2050,OC,0.000552822 +UT,industrial fuel use,gas,gas,2055,OC,0.000563528 +UT,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +UT,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +UT,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +UT,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +UT,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +UT,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +UT,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +UT,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +UT,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +UT,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +UT,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +UT,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +UT,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +UT,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +UT,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +UT,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +UT,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +UT,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +UT,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +UT,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +UT,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +UT,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +UT,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +UT,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +UT,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +UT,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +UT,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +UT,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +UT,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +UT,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +UT,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +UT,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +UT,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +UT,industrial fuel use,coal,coal,2005,CO2,0.022413751 +UT,industrial fuel use,coal,coal,2010,CO2,0.023247485 +UT,industrial fuel use,coal,coal,2015,CO2,0.023542577 +UT,industrial fuel use,coal,coal,2020,CO2,0.022100946 +UT,industrial fuel use,coal,coal,2025,CO2,0.022682182 +UT,industrial fuel use,coal,coal,2030,CO2,0.023544891 +UT,industrial fuel use,coal,coal,2035,CO2,0.024022124 +UT,industrial fuel use,coal,coal,2040,CO2,0.024371859 +UT,industrial fuel use,coal,coal,2045,CO2,0.024626877 +UT,industrial fuel use,coal,coal,2050,CO2,0.024861999 +UT,industrial fuel use,coal,coal,2055,CO2,0.025047846 +UT,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +UT,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +UT,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +UT,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +UT,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +UT,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +UT,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +UT,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +UT,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +UT,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +UT,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +UT,industrial fuel use,gas,gas,2005,CO2,0.010100215 +UT,industrial fuel use,gas,gas,2010,CO2,0.008735772 +UT,industrial fuel use,gas,gas,2015,CO2,0.008975567 +UT,industrial fuel use,gas,gas,2020,CO2,0.009141549 +UT,industrial fuel use,gas,gas,2025,CO2,0.009319403 +UT,industrial fuel use,gas,gas,2030,CO2,0.009661635 +UT,industrial fuel use,gas,gas,2035,CO2,0.009858394 +UT,industrial fuel use,gas,gas,2040,CO2,0.010090146 +UT,industrial fuel use,gas,gas,2045,CO2,0.010177486 +UT,industrial fuel use,gas,gas,2050,CO2,0.010210503 +UT,industrial fuel use,gas,gas,2055,CO2,0.010168744 +UT,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +UT,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +UT,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +UT,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +UT,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +UT,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +UT,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +UT,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +UT,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +UT,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +UT,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +UT,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +UT,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +UT,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +UT,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +UT,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +UT,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +UT,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +UT,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +UT,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +UT,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +UT,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +UT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +UT,industrial fuel use,biomass,biomass,2005,CO2,0 +UT,industrial fuel use,biomass,biomass,2010,CO2,0 +UT,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +UT,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +UT,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +UT,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +UT,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +UT,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +UT,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +UT,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +UT,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +UT,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +UT,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +UT,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +UT,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +UT,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +UT,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +UT,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +UT,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +UT,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +UT,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +UT,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +VA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +VA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +VA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +VA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +VA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +VA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +VA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +VA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +VA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +VA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +VA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +VA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +VA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +VA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +VA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +VA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +VA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +VA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +VA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +VA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +VA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +VA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +VA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +VA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +VA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +VA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +VA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +VA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +VA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +VA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +VA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +VA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +VA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +VA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +VA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +VA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +VA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +VA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +VA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +VA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +VA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +VA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +VA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +VA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +VA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +VA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +VA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +VA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +VA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +VA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +VA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +VA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +VA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +VA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +VA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +VA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +VA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +VA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +VA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +VA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +VA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +VA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +VA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +VA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +VA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +VA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +VA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +VA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +VA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +VA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +VA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +VA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +VA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +VA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +VA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +VA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +VA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +VA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +VA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +VA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +VA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +VA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +VA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +VA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +VA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +VA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +VA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +VA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +VA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +VA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +VA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +VA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +VA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +VA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +VA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +VA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +VA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +VA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +VA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +VA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +VA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +VA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +VA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +VA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +VA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +VA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +VA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +VA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +VA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +VA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +VA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +VA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +VA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +VA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +VA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +VA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +VA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +VA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +VA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +VA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +VA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +VA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +VA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +VA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +VA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +VA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +VA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +VA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +VA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +VA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +VA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +VA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +VA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +VA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +VA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +VA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +VA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +VA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +VA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +VA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +VA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +VA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +VA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +VA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +VA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +VA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +VA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +VA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +VA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +VA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +VA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +VA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +VA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +VA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +VA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +VA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +VA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +VA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +VA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +VA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +VA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +VA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +VA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +VA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +VA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +VA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +VA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +VA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +VA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +VA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +VA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +VA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +VA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +VA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +VA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +VA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +VA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +VA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +VA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +VA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +VA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +VA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +VA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +VA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +VA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +VA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +VA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +VA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +VA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +VA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +VA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +VA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +VA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +VA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +VA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +VA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +VA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +VA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +VA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +VA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +VA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +VA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +VA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +VA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +VA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +VA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +VA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +VA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +VA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +VA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +VA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +VA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +VA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +VA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +VA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +VA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +VA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +VA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +VA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +VA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +VA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +VA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +VA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +VA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +VA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +VA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +VA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +VA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +VA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +VA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +VA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +VA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +VA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +VA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +VA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +VA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +VA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +VA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +VA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +VA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +VA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +VA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +VA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +VA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +VA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +VA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +VA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +VA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +VA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +VA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +VA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +VA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +VA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +VA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +VA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +VA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +VA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +VA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +VA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +VA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +VA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +VA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +VA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +VA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +VA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +VA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +VA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +VA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +VA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +VA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +VA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +VA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +VA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +VA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +VA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +VA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +VA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +VA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +VA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +VA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +VA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +VA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +VA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +VA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +VA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +VA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +VA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +VA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +VA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +VA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +VA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +VA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +VA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +VA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +VA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +VA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +VA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +VA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +VA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +VA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +VA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +VA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +VA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +VA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +VA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +VA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +VA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +VA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +VA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +VA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +VA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +VA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +VA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +VA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +VA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +VA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +VA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +VA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +VA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +VA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +VA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +VA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +VA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +VA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +VA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +VA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +VA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +VA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +VA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +VA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +VA,industrial fuel use,coal,coal,2005,CO,0.069434106 +VA,industrial fuel use,coal,coal,2010,CO,0.07723114 +VA,industrial fuel use,coal,coal,2015,CO,0.068281575 +VA,industrial fuel use,coal,coal,2020,CO,0.063753622 +VA,industrial fuel use,coal,coal,2025,CO,0.065761399 +VA,industrial fuel use,coal,coal,2030,CO,0.067959367 +VA,industrial fuel use,coal,coal,2035,CO,0.069173462 +VA,industrial fuel use,coal,coal,2040,CO,0.070202866 +VA,industrial fuel use,coal,coal,2045,CO,0.071098148 +VA,industrial fuel use,coal,coal,2050,CO,0.072063393 +VA,industrial fuel use,coal,coal,2055,CO,0.072511454 +VA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +VA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +VA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +VA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +VA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +VA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +VA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +VA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +VA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +VA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +VA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +VA,industrial fuel use,gas,gas,2005,CO,0.054958784 +VA,industrial fuel use,gas,gas,2010,CO,0.041119779 +VA,industrial fuel use,gas,gas,2015,CO,0.037376927 +VA,industrial fuel use,gas,gas,2020,CO,0.042196984 +VA,industrial fuel use,gas,gas,2025,CO,0.046340259 +VA,industrial fuel use,gas,gas,2030,CO,0.051044751 +VA,industrial fuel use,gas,gas,2035,CO,0.048377476 +VA,industrial fuel use,gas,gas,2040,CO,0.04844371 +VA,industrial fuel use,gas,gas,2045,CO,0.049325699 +VA,industrial fuel use,gas,gas,2050,CO,0.048085677 +VA,industrial fuel use,gas,gas,2055,CO,0.046506083 +VA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +VA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +VA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +VA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +VA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +VA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +VA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +VA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +VA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +VA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +VA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +VA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +VA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +VA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +VA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +VA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +VA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +VA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +VA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +VA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +VA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +VA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +VA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +VA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +VA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +VA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +VA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +VA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +VA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +VA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +VA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +VA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +VA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +VA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +VA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +VA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +VA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +VA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +VA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +VA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +VA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +VA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +VA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +VA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +VA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +VA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +VA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +VA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +VA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +VA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +VA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +VA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +VA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +VA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +VA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +VA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +VA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +VA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +VA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +VA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +VA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +VA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +VA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +VA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +VA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +VA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +VA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +VA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +VA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +VA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +VA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +VA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +VA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +VA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +VA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +VA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +VA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +VA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +VA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +VA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +VA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +VA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +VA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +VA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +VA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +VA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +VA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +VA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +VA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +VA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +VA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +VA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +VA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +VA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +VA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +VA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +VA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +VA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +VA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +VA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +VA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +VA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +VA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +VA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +VA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +VA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +VA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +VA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +VA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +VA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +VA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +VA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +VA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +VA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +VA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +VA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +VA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +VA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +VA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +VA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +VA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +VA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +VA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +VA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +VA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +VA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +VA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +VA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +VA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +VA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +VA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +VA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +VA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +VA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +VA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +VA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +VA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +VA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +VA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +VA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +VA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +VA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +VA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +VA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +VA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +VA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +VA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +VA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +VA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +VA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +VA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +VA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +VA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +VA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +VA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +VA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +VA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +VA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +VA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +VA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +VA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +VA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +VA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +VA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +VA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +VA,industrial fuel use,coal,coal,2005,BC,0.052178527 +VA,industrial fuel use,coal,coal,2010,BC,0.054113893 +VA,industrial fuel use,coal,coal,2015,BC,0.054816673 +VA,industrial fuel use,coal,coal,2020,BC,0.051442317 +VA,industrial fuel use,coal,coal,2025,BC,0.05280003 +VA,industrial fuel use,coal,coal,2030,BC,0.054819383 +VA,industrial fuel use,coal,coal,2035,BC,0.055934389 +VA,industrial fuel use,coal,coal,2040,BC,0.056737391 +VA,industrial fuel use,coal,coal,2045,BC,0.057341111 +VA,industrial fuel use,coal,coal,2050,BC,0.057867944 +VA,industrial fuel use,coal,coal,2055,BC,0.058307588 +VA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +VA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +VA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +VA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +VA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +VA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +VA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +VA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +VA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +VA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +VA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +VA,industrial fuel use,gas,gas,2005,BC,0.000879555 +VA,industrial fuel use,gas,gas,2010,BC,0.000594596 +VA,industrial fuel use,gas,gas,2015,BC,0.000780779 +VA,industrial fuel use,gas,gas,2020,BC,0.000758542 +VA,industrial fuel use,gas,gas,2025,BC,0.000791704 +VA,industrial fuel use,gas,gas,2030,BC,0.000829295 +VA,industrial fuel use,gas,gas,2035,BC,0.000745895 +VA,industrial fuel use,gas,gas,2040,BC,0.000739727 +VA,industrial fuel use,gas,gas,2045,BC,0.000759191 +VA,industrial fuel use,gas,gas,2050,BC,0.000728476 +VA,industrial fuel use,gas,gas,2055,BC,0.000688571 +VA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +VA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +VA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +VA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +VA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +VA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +VA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +VA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +VA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +VA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +VA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +VA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +VA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +VA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +VA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +VA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +VA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +VA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +VA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +VA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +VA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +VA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +VA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +VA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +VA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +VA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +VA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +VA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +VA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +VA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +VA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +VA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +VA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +VA,industrial fuel use,coal,coal,2005,OC,0.004608879 +VA,industrial fuel use,coal,coal,2010,OC,0.004949044 +VA,industrial fuel use,coal,coal,2015,OC,0.005291355 +VA,industrial fuel use,coal,coal,2020,OC,0.005047635 +VA,industrial fuel use,coal,coal,2025,OC,0.005240698 +VA,industrial fuel use,coal,coal,2030,OC,0.005398598 +VA,industrial fuel use,coal,coal,2035,OC,0.005483036 +VA,industrial fuel use,coal,coal,2040,OC,0.005583473 +VA,industrial fuel use,coal,coal,2045,OC,0.005638434 +VA,industrial fuel use,coal,coal,2050,OC,0.005723515 +VA,industrial fuel use,coal,coal,2055,OC,0.005777195 +VA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +VA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +VA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +VA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +VA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +VA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +VA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +VA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +VA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +VA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +VA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +VA,industrial fuel use,gas,gas,2005,OC,0.000586894 +VA,industrial fuel use,gas,gas,2010,OC,0.000538986 +VA,industrial fuel use,gas,gas,2015,OC,0.000406177 +VA,industrial fuel use,gas,gas,2020,OC,0.000436774 +VA,industrial fuel use,gas,gas,2025,OC,0.000431434 +VA,industrial fuel use,gas,gas,2030,OC,0.000454497 +VA,industrial fuel use,gas,gas,2035,OC,0.0005142 +VA,industrial fuel use,gas,gas,2040,OC,0.000542203 +VA,industrial fuel use,gas,gas,2045,OC,0.0005354 +VA,industrial fuel use,gas,gas,2050,OC,0.000552822 +VA,industrial fuel use,gas,gas,2055,OC,0.000563528 +VA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +VA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +VA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +VA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +VA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +VA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +VA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +VA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +VA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +VA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +VA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +VA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +VA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +VA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +VA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +VA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +VA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +VA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +VA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +VA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +VA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +VA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +VA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +VA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +VA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +VA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +VA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +VA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +VA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +VA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +VA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +VA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +VA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +VA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +VA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +VA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +VA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +VA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +VA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +VA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +VA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +VA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +VA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +VA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +VA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +VA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +VA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +VA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +VA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +VA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +VA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +VA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +VA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +VA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +VA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +VA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +VA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +VA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +VA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +VA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +VA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +VA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +VA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +VA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +VA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +VA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +VA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +VA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +VA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +VA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +VA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +VA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +VA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +VA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +VA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +VA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +VA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +VA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +VA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +VA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +VA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +VA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +VA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +VA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +VA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +VA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +VA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +VA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +VA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +VA,industrial fuel use,biomass,biomass,2005,CO2,0 +VA,industrial fuel use,biomass,biomass,2010,CO2,0 +VA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +VA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +VA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +VA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +VA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +VA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +VA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +VA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +VA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +VA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +VA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +VA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +VA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +VA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +VA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +VA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +VA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +VA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +VA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +VA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +VT,industrial fuel use,coal,coal,2005,NOx,0.261565752 +VT,industrial fuel use,coal,coal,2010,NOx,0.24128762 +VT,industrial fuel use,coal,coal,2015,NOx,0.247879608 +VT,industrial fuel use,coal,coal,2020,NOx,0.234312556 +VT,industrial fuel use,coal,coal,2025,NOx,0.240398293 +VT,industrial fuel use,coal,coal,2030,NOx,0.246677964 +VT,industrial fuel use,coal,coal,2035,NOx,0.250299201 +VT,industrial fuel use,coal,coal,2040,NOx,0.253554811 +VT,industrial fuel use,coal,coal,2045,NOx,0.255578056 +VT,industrial fuel use,coal,coal,2050,NOx,0.258549854 +VT,industrial fuel use,coal,coal,2055,NOx,0.26014596 +VT,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +VT,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +VT,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +VT,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +VT,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +VT,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +VT,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +VT,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +VT,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +VT,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +VT,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +VT,industrial fuel use,gas,gas,2005,NOx,0.080919016 +VT,industrial fuel use,gas,gas,2010,NOx,0.044952568 +VT,industrial fuel use,gas,gas,2015,NOx,0.037239142 +VT,industrial fuel use,gas,gas,2020,NOx,0.040745965 +VT,industrial fuel use,gas,gas,2025,NOx,0.042574105 +VT,industrial fuel use,gas,gas,2030,NOx,0.045347383 +VT,industrial fuel use,gas,gas,2035,NOx,0.048574619 +VT,industrial fuel use,gas,gas,2040,NOx,0.050422899 +VT,industrial fuel use,gas,gas,2045,NOx,0.050680722 +VT,industrial fuel use,gas,gas,2050,NOx,0.0517343 +VT,industrial fuel use,gas,gas,2055,NOx,0.052443137 +VT,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +VT,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +VT,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +VT,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +VT,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +VT,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +VT,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +VT,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +VT,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +VT,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +VT,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +VT,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +VT,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +VT,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +VT,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +VT,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +VT,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +VT,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +VT,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +VT,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +VT,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +VT,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +VT,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +VT,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +VT,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +VT,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +VT,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +VT,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +VT,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +VT,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +VT,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +VT,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +VT,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +VT,industrial fuel use,coal,coal,2005,SO2,0.709862367 +VT,industrial fuel use,coal,coal,2010,SO2,0.679592789 +VT,industrial fuel use,coal,coal,2015,SO2,0.590904591 +VT,industrial fuel use,coal,coal,2020,SO2,0.549595621 +VT,industrial fuel use,coal,coal,2025,SO2,0.56430149 +VT,industrial fuel use,coal,coal,2030,SO2,0.576548046 +VT,industrial fuel use,coal,coal,2035,SO2,0.583595424 +VT,industrial fuel use,coal,coal,2040,SO2,0.590805881 +VT,industrial fuel use,coal,coal,2045,SO2,0.596410723 +VT,industrial fuel use,coal,coal,2050,SO2,0.606154195 +VT,industrial fuel use,coal,coal,2055,SO2,0.611234923 +VT,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +VT,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +VT,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +VT,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +VT,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +VT,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +VT,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +VT,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +VT,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +VT,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +VT,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +VT,industrial fuel use,gas,gas,2005,SO2,0.000213988 +VT,industrial fuel use,gas,gas,2010,SO2,0.002761946 +VT,industrial fuel use,gas,gas,2015,SO2,0.002854723 +VT,industrial fuel use,gas,gas,2020,SO2,0.002771127 +VT,industrial fuel use,gas,gas,2025,SO2,0.002798763 +VT,industrial fuel use,gas,gas,2030,SO2,0.002938075 +VT,industrial fuel use,gas,gas,2035,SO2,0.003016098 +VT,industrial fuel use,gas,gas,2040,SO2,0.003118901 +VT,industrial fuel use,gas,gas,2045,SO2,0.00311325 +VT,industrial fuel use,gas,gas,2050,SO2,0.003090451 +VT,industrial fuel use,gas,gas,2055,SO2,0.003025213 +VT,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +VT,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +VT,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +VT,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +VT,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +VT,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +VT,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +VT,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +VT,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +VT,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +VT,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +VT,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +VT,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +VT,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +VT,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +VT,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +VT,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +VT,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +VT,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +VT,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +VT,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +VT,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +VT,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +VT,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +VT,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +VT,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +VT,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +VT,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +VT,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +VT,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +VT,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +VT,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +VT,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +VT,industrial fuel use,coal,coal,2005,PM10,0.136452905 +VT,industrial fuel use,coal,coal,2010,PM10,0.093662835 +VT,industrial fuel use,coal,coal,2015,PM10,0.100887759 +VT,industrial fuel use,coal,coal,2020,PM10,0.094503476 +VT,industrial fuel use,coal,coal,2025,PM10,0.09752377 +VT,industrial fuel use,coal,coal,2030,PM10,0.099823133 +VT,industrial fuel use,coal,coal,2035,PM10,0.101097535 +VT,industrial fuel use,coal,coal,2040,PM10,0.102438117 +VT,industrial fuel use,coal,coal,2045,PM10,0.103553978 +VT,industrial fuel use,coal,coal,2050,PM10,0.105393893 +VT,industrial fuel use,coal,coal,2055,PM10,0.106304221 +VT,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +VT,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +VT,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +VT,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +VT,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +VT,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +VT,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +VT,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +VT,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +VT,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +VT,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +VT,industrial fuel use,gas,gas,2005,PM10,0.002144603 +VT,industrial fuel use,gas,gas,2010,PM10,0.004157892 +VT,industrial fuel use,gas,gas,2015,PM10,0.004308637 +VT,industrial fuel use,gas,gas,2020,PM10,0.004261296 +VT,industrial fuel use,gas,gas,2025,PM10,0.004334357 +VT,industrial fuel use,gas,gas,2030,PM10,0.00454497 +VT,industrial fuel use,gas,gas,2035,PM10,0.004581054 +VT,industrial fuel use,gas,gas,2040,PM10,0.004690204 +VT,industrial fuel use,gas,gas,2045,PM10,0.004695842 +VT,industrial fuel use,gas,gas,2050,PM10,0.004649052 +VT,industrial fuel use,gas,gas,2055,PM10,0.00454824 +VT,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +VT,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +VT,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +VT,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +VT,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +VT,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +VT,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +VT,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +VT,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +VT,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +VT,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +VT,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +VT,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +VT,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +VT,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +VT,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +VT,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +VT,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +VT,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +VT,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +VT,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +VT,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +VT,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +VT,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +VT,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +VT,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +VT,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +VT,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +VT,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +VT,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +VT,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +VT,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +VT,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +VT,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +VT,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +VT,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +VT,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +VT,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +VT,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +VT,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +VT,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +VT,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +VT,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +VT,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +VT,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +VT,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +VT,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +VT,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +VT,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +VT,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +VT,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +VT,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +VT,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +VT,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +VT,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +VT,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +VT,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +VT,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +VT,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +VT,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +VT,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +VT,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +VT,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +VT,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +VT,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +VT,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +VT,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +VT,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +VT,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +VT,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +VT,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +VT,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +VT,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +VT,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +VT,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +VT,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +VT,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +VT,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +VT,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +VT,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +VT,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +VT,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +VT,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +VT,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +VT,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +VT,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +VT,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +VT,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +VT,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +VT,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +VT,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +VT,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +VT,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +VT,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +VT,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +VT,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +VT,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +VT,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +VT,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +VT,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +VT,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +VT,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +VT,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +VT,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +VT,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +VT,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +VT,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +VT,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +VT,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +VT,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +VT,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +VT,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +VT,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +VT,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +VT,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +VT,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +VT,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +VT,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +VT,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +VT,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +VT,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +VT,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +VT,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +VT,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +VT,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +VT,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +VT,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +VT,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +VT,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +VT,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +VT,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +VT,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +VT,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +VT,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +VT,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +VT,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +VT,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +VT,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +VT,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +VT,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +VT,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +VT,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +VT,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +VT,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +VT,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +VT,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +VT,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +VT,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +VT,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +VT,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +VT,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +VT,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +VT,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +VT,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +VT,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +VT,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +VT,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +VT,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +VT,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +VT,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +VT,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +VT,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +VT,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +VT,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +VT,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +VT,industrial fuel use,coal,coal,2005,CO,0.069434106 +VT,industrial fuel use,coal,coal,2010,CO,0.07723114 +VT,industrial fuel use,coal,coal,2015,CO,0.068281575 +VT,industrial fuel use,coal,coal,2020,CO,0.063753622 +VT,industrial fuel use,coal,coal,2025,CO,0.065761399 +VT,industrial fuel use,coal,coal,2030,CO,0.067959367 +VT,industrial fuel use,coal,coal,2035,CO,0.069173462 +VT,industrial fuel use,coal,coal,2040,CO,0.070202866 +VT,industrial fuel use,coal,coal,2045,CO,0.071098148 +VT,industrial fuel use,coal,coal,2050,CO,0.072063393 +VT,industrial fuel use,coal,coal,2055,CO,0.072511454 +VT,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +VT,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +VT,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +VT,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +VT,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +VT,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +VT,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +VT,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +VT,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +VT,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +VT,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +VT,industrial fuel use,gas,gas,2005,CO,0.054958784 +VT,industrial fuel use,gas,gas,2010,CO,0.041119779 +VT,industrial fuel use,gas,gas,2015,CO,0.037376927 +VT,industrial fuel use,gas,gas,2020,CO,0.042196984 +VT,industrial fuel use,gas,gas,2025,CO,0.046340259 +VT,industrial fuel use,gas,gas,2030,CO,0.051044751 +VT,industrial fuel use,gas,gas,2035,CO,0.048377476 +VT,industrial fuel use,gas,gas,2040,CO,0.04844371 +VT,industrial fuel use,gas,gas,2045,CO,0.049325699 +VT,industrial fuel use,gas,gas,2050,CO,0.048085677 +VT,industrial fuel use,gas,gas,2055,CO,0.046506083 +VT,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +VT,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +VT,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +VT,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +VT,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +VT,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +VT,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +VT,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +VT,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +VT,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +VT,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +VT,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +VT,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +VT,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +VT,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +VT,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +VT,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +VT,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +VT,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +VT,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +VT,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +VT,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +VT,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +VT,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +VT,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +VT,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +VT,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +VT,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +VT,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +VT,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +VT,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +VT,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +VT,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +VT,industrial fuel use,coal,coal,2005,CH4,0.008615911 +VT,industrial fuel use,coal,coal,2010,CH4,0.007087118 +VT,industrial fuel use,coal,coal,2015,CH4,0.007645512 +VT,industrial fuel use,coal,coal,2020,CH4,0.007093206 +VT,industrial fuel use,coal,coal,2025,CH4,0.007280827 +VT,industrial fuel use,coal,coal,2030,CH4,0.007426545 +VT,industrial fuel use,coal,coal,2035,CH4,0.007524098 +VT,industrial fuel use,coal,coal,2040,CH4,0.007621441 +VT,industrial fuel use,coal,coal,2045,CH4,0.007691307 +VT,industrial fuel use,coal,coal,2050,CH4,0.007801358 +VT,industrial fuel use,coal,coal,2055,CH4,0.007871907 +VT,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +VT,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +VT,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +VT,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +VT,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +VT,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +VT,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +VT,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +VT,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +VT,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +VT,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +VT,industrial fuel use,gas,gas,2005,CH4,0.002575726 +VT,industrial fuel use,gas,gas,2010,CH4,0.0036902 +VT,industrial fuel use,gas,gas,2015,CH4,0.001847174 +VT,industrial fuel use,gas,gas,2020,CH4,0.002575374 +VT,industrial fuel use,gas,gas,2025,CH4,0.002470739 +VT,industrial fuel use,gas,gas,2030,CH4,0.002514812 +VT,industrial fuel use,gas,gas,2035,CH4,0.004402202 +VT,industrial fuel use,gas,gas,2040,CH4,0.005194877 +VT,industrial fuel use,gas,gas,2045,CH4,0.005264291 +VT,industrial fuel use,gas,gas,2050,CH4,0.006086388 +VT,industrial fuel use,gas,gas,2055,CH4,0.006850703 +VT,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +VT,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +VT,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +VT,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +VT,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +VT,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +VT,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +VT,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +VT,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +VT,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +VT,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +VT,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +VT,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +VT,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +VT,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +VT,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +VT,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +VT,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +VT,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +VT,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +VT,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +VT,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +VT,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +VT,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +VT,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +VT,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +VT,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +VT,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +VT,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +VT,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +VT,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +VT,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +VT,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +VT,industrial fuel use,coal,coal,2005,N2O,0.002945881 +VT,industrial fuel use,coal,coal,2010,N2O,0.004699422 +VT,industrial fuel use,coal,coal,2015,N2O,0.003718249 +VT,industrial fuel use,coal,coal,2020,N2O,0.003503987 +VT,industrial fuel use,coal,coal,2025,N2O,0.003902448 +VT,industrial fuel use,coal,coal,2030,N2O,0.005231917 +VT,industrial fuel use,coal,coal,2035,N2O,0.005844861 +VT,industrial fuel use,coal,coal,2040,N2O,0.006123209 +VT,industrial fuel use,coal,coal,2045,N2O,0.006493024 +VT,industrial fuel use,coal,coal,2050,N2O,0.00643187 +VT,industrial fuel use,coal,coal,2055,N2O,0.006580646 +VT,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +VT,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +VT,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +VT,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +VT,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +VT,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +VT,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +VT,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +VT,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +VT,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +VT,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +VT,industrial fuel use,gas,gas,2005,N2O,0.000509795 +VT,industrial fuel use,gas,gas,2010,N2O,0.000459136 +VT,industrial fuel use,gas,gas,2015,N2O,0.000457847 +VT,industrial fuel use,gas,gas,2020,N2O,0.000469807 +VT,industrial fuel use,gas,gas,2025,N2O,0.0004748 +VT,industrial fuel use,gas,gas,2030,N2O,0.000493269 +VT,industrial fuel use,gas,gas,2035,N2O,0.0005142 +VT,industrial fuel use,gas,gas,2040,N2O,0.000525413 +VT,industrial fuel use,gas,gas,2045,N2O,0.000530678 +VT,industrial fuel use,gas,gas,2050,N2O,0.000534097 +VT,industrial fuel use,gas,gas,2055,N2O,0.000535185 +VT,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +VT,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +VT,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +VT,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +VT,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +VT,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +VT,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +VT,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +VT,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +VT,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +VT,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +VT,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +VT,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +VT,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +VT,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +VT,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +VT,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +VT,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +VT,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +VT,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +VT,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +VT,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +VT,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +VT,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +VT,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +VT,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +VT,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +VT,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +VT,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +VT,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +VT,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +VT,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +VT,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +VT,industrial fuel use,coal,coal,2005,BC,0.052178527 +VT,industrial fuel use,coal,coal,2010,BC,0.054113893 +VT,industrial fuel use,coal,coal,2015,BC,0.054816673 +VT,industrial fuel use,coal,coal,2020,BC,0.051442317 +VT,industrial fuel use,coal,coal,2025,BC,0.05280003 +VT,industrial fuel use,coal,coal,2030,BC,0.054819383 +VT,industrial fuel use,coal,coal,2035,BC,0.055934389 +VT,industrial fuel use,coal,coal,2040,BC,0.056737391 +VT,industrial fuel use,coal,coal,2045,BC,0.057341111 +VT,industrial fuel use,coal,coal,2050,BC,0.057867944 +VT,industrial fuel use,coal,coal,2055,BC,0.058307588 +VT,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +VT,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +VT,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +VT,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +VT,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +VT,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +VT,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +VT,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +VT,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +VT,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +VT,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +VT,industrial fuel use,gas,gas,2005,BC,0.000879555 +VT,industrial fuel use,gas,gas,2010,BC,0.000594596 +VT,industrial fuel use,gas,gas,2015,BC,0.000780779 +VT,industrial fuel use,gas,gas,2020,BC,0.000758542 +VT,industrial fuel use,gas,gas,2025,BC,0.000791704 +VT,industrial fuel use,gas,gas,2030,BC,0.000829295 +VT,industrial fuel use,gas,gas,2035,BC,0.000745895 +VT,industrial fuel use,gas,gas,2040,BC,0.000739727 +VT,industrial fuel use,gas,gas,2045,BC,0.000759191 +VT,industrial fuel use,gas,gas,2050,BC,0.000728476 +VT,industrial fuel use,gas,gas,2055,BC,0.000688571 +VT,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +VT,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +VT,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +VT,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +VT,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +VT,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +VT,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +VT,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +VT,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +VT,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +VT,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +VT,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +VT,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +VT,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +VT,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +VT,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +VT,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +VT,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +VT,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +VT,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +VT,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +VT,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +VT,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +VT,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +VT,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +VT,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +VT,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +VT,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +VT,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +VT,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +VT,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +VT,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +VT,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +VT,industrial fuel use,coal,coal,2005,OC,0.004608879 +VT,industrial fuel use,coal,coal,2010,OC,0.004949044 +VT,industrial fuel use,coal,coal,2015,OC,0.005291355 +VT,industrial fuel use,coal,coal,2020,OC,0.005047635 +VT,industrial fuel use,coal,coal,2025,OC,0.005240698 +VT,industrial fuel use,coal,coal,2030,OC,0.005398598 +VT,industrial fuel use,coal,coal,2035,OC,0.005483036 +VT,industrial fuel use,coal,coal,2040,OC,0.005583473 +VT,industrial fuel use,coal,coal,2045,OC,0.005638434 +VT,industrial fuel use,coal,coal,2050,OC,0.005723515 +VT,industrial fuel use,coal,coal,2055,OC,0.005777195 +VT,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +VT,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +VT,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +VT,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +VT,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +VT,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +VT,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +VT,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +VT,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +VT,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +VT,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +VT,industrial fuel use,gas,gas,2005,OC,0.000586894 +VT,industrial fuel use,gas,gas,2010,OC,0.000538986 +VT,industrial fuel use,gas,gas,2015,OC,0.000406177 +VT,industrial fuel use,gas,gas,2020,OC,0.000436774 +VT,industrial fuel use,gas,gas,2025,OC,0.000431434 +VT,industrial fuel use,gas,gas,2030,OC,0.000454497 +VT,industrial fuel use,gas,gas,2035,OC,0.0005142 +VT,industrial fuel use,gas,gas,2040,OC,0.000542203 +VT,industrial fuel use,gas,gas,2045,OC,0.0005354 +VT,industrial fuel use,gas,gas,2050,OC,0.000552822 +VT,industrial fuel use,gas,gas,2055,OC,0.000563528 +VT,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +VT,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +VT,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +VT,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +VT,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +VT,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +VT,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +VT,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +VT,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +VT,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +VT,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +VT,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +VT,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +VT,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +VT,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +VT,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +VT,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +VT,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +VT,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +VT,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +VT,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +VT,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +VT,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +VT,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +VT,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +VT,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +VT,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +VT,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +VT,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +VT,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +VT,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +VT,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +VT,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +VT,industrial fuel use,coal,coal,2005,CO2,0.022413751 +VT,industrial fuel use,coal,coal,2010,CO2,0.023247485 +VT,industrial fuel use,coal,coal,2015,CO2,0.023542577 +VT,industrial fuel use,coal,coal,2020,CO2,0.022100946 +VT,industrial fuel use,coal,coal,2025,CO2,0.022682182 +VT,industrial fuel use,coal,coal,2030,CO2,0.023544891 +VT,industrial fuel use,coal,coal,2035,CO2,0.024022124 +VT,industrial fuel use,coal,coal,2040,CO2,0.024371859 +VT,industrial fuel use,coal,coal,2045,CO2,0.024626877 +VT,industrial fuel use,coal,coal,2050,CO2,0.024861999 +VT,industrial fuel use,coal,coal,2055,CO2,0.025047846 +VT,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +VT,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +VT,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +VT,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +VT,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +VT,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +VT,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +VT,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +VT,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +VT,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +VT,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +VT,industrial fuel use,gas,gas,2005,CO2,0.010100215 +VT,industrial fuel use,gas,gas,2010,CO2,0.008735772 +VT,industrial fuel use,gas,gas,2015,CO2,0.008975567 +VT,industrial fuel use,gas,gas,2020,CO2,0.009141549 +VT,industrial fuel use,gas,gas,2025,CO2,0.009319403 +VT,industrial fuel use,gas,gas,2030,CO2,0.009661635 +VT,industrial fuel use,gas,gas,2035,CO2,0.009858394 +VT,industrial fuel use,gas,gas,2040,CO2,0.010090146 +VT,industrial fuel use,gas,gas,2045,CO2,0.010177486 +VT,industrial fuel use,gas,gas,2050,CO2,0.010210503 +VT,industrial fuel use,gas,gas,2055,CO2,0.010168744 +VT,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +VT,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +VT,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +VT,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +VT,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +VT,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +VT,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +VT,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +VT,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +VT,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +VT,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +VT,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +VT,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +VT,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +VT,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +VT,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +VT,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +VT,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +VT,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +VT,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +VT,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +VT,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +VT,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +VT,industrial fuel use,biomass,biomass,2005,CO2,0 +VT,industrial fuel use,biomass,biomass,2010,CO2,0 +VT,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +VT,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +VT,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +VT,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +VT,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +VT,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +VT,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +VT,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +VT,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +VT,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +VT,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +VT,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +VT,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +VT,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +VT,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +VT,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +VT,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +VT,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +VT,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +VT,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +WA,industrial fuel use,coal,coal,2005,NOx,0.261565752 +WA,industrial fuel use,coal,coal,2010,NOx,0.24128762 +WA,industrial fuel use,coal,coal,2015,NOx,0.247879608 +WA,industrial fuel use,coal,coal,2020,NOx,0.234312556 +WA,industrial fuel use,coal,coal,2025,NOx,0.240398293 +WA,industrial fuel use,coal,coal,2030,NOx,0.246677964 +WA,industrial fuel use,coal,coal,2035,NOx,0.250299201 +WA,industrial fuel use,coal,coal,2040,NOx,0.253554811 +WA,industrial fuel use,coal,coal,2045,NOx,0.255578056 +WA,industrial fuel use,coal,coal,2050,NOx,0.258549854 +WA,industrial fuel use,coal,coal,2055,NOx,0.26014596 +WA,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +WA,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +WA,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +WA,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +WA,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +WA,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +WA,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +WA,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +WA,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +WA,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +WA,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +WA,industrial fuel use,gas,gas,2005,NOx,0.080919016 +WA,industrial fuel use,gas,gas,2010,NOx,0.044952568 +WA,industrial fuel use,gas,gas,2015,NOx,0.037239142 +WA,industrial fuel use,gas,gas,2020,NOx,0.040745965 +WA,industrial fuel use,gas,gas,2025,NOx,0.042574105 +WA,industrial fuel use,gas,gas,2030,NOx,0.045347383 +WA,industrial fuel use,gas,gas,2035,NOx,0.048574619 +WA,industrial fuel use,gas,gas,2040,NOx,0.050422899 +WA,industrial fuel use,gas,gas,2045,NOx,0.050680722 +WA,industrial fuel use,gas,gas,2050,NOx,0.0517343 +WA,industrial fuel use,gas,gas,2055,NOx,0.052443137 +WA,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +WA,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +WA,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +WA,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +WA,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +WA,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +WA,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +WA,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +WA,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +WA,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +WA,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +WA,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +WA,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +WA,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +WA,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +WA,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +WA,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +WA,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +WA,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +WA,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +WA,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +WA,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +WA,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +WA,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +WA,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +WA,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +WA,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +WA,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +WA,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +WA,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +WA,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +WA,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +WA,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +WA,industrial fuel use,coal,coal,2005,SO2,0.709862367 +WA,industrial fuel use,coal,coal,2010,SO2,0.679592789 +WA,industrial fuel use,coal,coal,2015,SO2,0.590904591 +WA,industrial fuel use,coal,coal,2020,SO2,0.549595621 +WA,industrial fuel use,coal,coal,2025,SO2,0.56430149 +WA,industrial fuel use,coal,coal,2030,SO2,0.576548046 +WA,industrial fuel use,coal,coal,2035,SO2,0.583595424 +WA,industrial fuel use,coal,coal,2040,SO2,0.590805881 +WA,industrial fuel use,coal,coal,2045,SO2,0.596410723 +WA,industrial fuel use,coal,coal,2050,SO2,0.606154195 +WA,industrial fuel use,coal,coal,2055,SO2,0.611234923 +WA,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +WA,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +WA,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +WA,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +WA,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +WA,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +WA,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +WA,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +WA,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +WA,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +WA,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +WA,industrial fuel use,gas,gas,2005,SO2,0.000213988 +WA,industrial fuel use,gas,gas,2010,SO2,0.002761946 +WA,industrial fuel use,gas,gas,2015,SO2,0.002854723 +WA,industrial fuel use,gas,gas,2020,SO2,0.002771127 +WA,industrial fuel use,gas,gas,2025,SO2,0.002798763 +WA,industrial fuel use,gas,gas,2030,SO2,0.002938075 +WA,industrial fuel use,gas,gas,2035,SO2,0.003016098 +WA,industrial fuel use,gas,gas,2040,SO2,0.003118901 +WA,industrial fuel use,gas,gas,2045,SO2,0.00311325 +WA,industrial fuel use,gas,gas,2050,SO2,0.003090451 +WA,industrial fuel use,gas,gas,2055,SO2,0.003025213 +WA,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +WA,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +WA,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +WA,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +WA,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +WA,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +WA,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +WA,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +WA,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +WA,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +WA,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +WA,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +WA,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +WA,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +WA,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +WA,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +WA,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +WA,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +WA,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +WA,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +WA,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +WA,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +WA,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +WA,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +WA,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +WA,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +WA,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +WA,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +WA,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +WA,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +WA,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +WA,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +WA,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +WA,industrial fuel use,coal,coal,2005,PM10,0.136452905 +WA,industrial fuel use,coal,coal,2010,PM10,0.093662835 +WA,industrial fuel use,coal,coal,2015,PM10,0.100887759 +WA,industrial fuel use,coal,coal,2020,PM10,0.094503476 +WA,industrial fuel use,coal,coal,2025,PM10,0.09752377 +WA,industrial fuel use,coal,coal,2030,PM10,0.099823133 +WA,industrial fuel use,coal,coal,2035,PM10,0.101097535 +WA,industrial fuel use,coal,coal,2040,PM10,0.102438117 +WA,industrial fuel use,coal,coal,2045,PM10,0.103553978 +WA,industrial fuel use,coal,coal,2050,PM10,0.105393893 +WA,industrial fuel use,coal,coal,2055,PM10,0.106304221 +WA,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +WA,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +WA,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +WA,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +WA,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +WA,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +WA,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +WA,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +WA,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +WA,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +WA,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +WA,industrial fuel use,gas,gas,2005,PM10,0.002144603 +WA,industrial fuel use,gas,gas,2010,PM10,0.004157892 +WA,industrial fuel use,gas,gas,2015,PM10,0.004308637 +WA,industrial fuel use,gas,gas,2020,PM10,0.004261296 +WA,industrial fuel use,gas,gas,2025,PM10,0.004334357 +WA,industrial fuel use,gas,gas,2030,PM10,0.00454497 +WA,industrial fuel use,gas,gas,2035,PM10,0.004581054 +WA,industrial fuel use,gas,gas,2040,PM10,0.004690204 +WA,industrial fuel use,gas,gas,2045,PM10,0.004695842 +WA,industrial fuel use,gas,gas,2050,PM10,0.004649052 +WA,industrial fuel use,gas,gas,2055,PM10,0.00454824 +WA,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +WA,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +WA,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +WA,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +WA,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +WA,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +WA,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +WA,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +WA,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +WA,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +WA,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +WA,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +WA,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +WA,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +WA,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +WA,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +WA,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +WA,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +WA,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +WA,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +WA,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +WA,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +WA,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +WA,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +WA,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +WA,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +WA,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +WA,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +WA,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +WA,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +WA,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +WA,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +WA,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +WA,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +WA,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +WA,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +WA,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +WA,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +WA,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +WA,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +WA,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +WA,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +WA,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +WA,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +WA,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +WA,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +WA,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +WA,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +WA,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +WA,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +WA,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +WA,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +WA,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +WA,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +WA,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +WA,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +WA,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +WA,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +WA,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +WA,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +WA,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +WA,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +WA,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +WA,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +WA,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +WA,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +WA,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +WA,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +WA,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +WA,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +WA,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +WA,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +WA,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +WA,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +WA,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +WA,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +WA,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +WA,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +WA,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +WA,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +WA,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +WA,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +WA,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +WA,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +WA,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +WA,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +WA,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +WA,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +WA,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +WA,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +WA,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +WA,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +WA,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +WA,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +WA,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +WA,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +WA,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +WA,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +WA,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +WA,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +WA,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +WA,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +WA,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +WA,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +WA,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +WA,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +WA,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +WA,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +WA,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +WA,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +WA,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +WA,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +WA,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +WA,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +WA,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +WA,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +WA,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +WA,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +WA,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +WA,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +WA,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +WA,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +WA,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +WA,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +WA,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +WA,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +WA,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +WA,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +WA,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +WA,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +WA,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +WA,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +WA,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +WA,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +WA,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +WA,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +WA,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +WA,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +WA,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +WA,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +WA,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +WA,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +WA,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +WA,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +WA,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +WA,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +WA,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +WA,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +WA,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +WA,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +WA,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +WA,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +WA,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +WA,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +WA,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +WA,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +WA,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +WA,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +WA,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +WA,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +WA,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +WA,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +WA,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +WA,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +WA,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +WA,industrial fuel use,coal,coal,2005,CO,0.069434106 +WA,industrial fuel use,coal,coal,2010,CO,0.07723114 +WA,industrial fuel use,coal,coal,2015,CO,0.068281575 +WA,industrial fuel use,coal,coal,2020,CO,0.063753622 +WA,industrial fuel use,coal,coal,2025,CO,0.065761399 +WA,industrial fuel use,coal,coal,2030,CO,0.067959367 +WA,industrial fuel use,coal,coal,2035,CO,0.069173462 +WA,industrial fuel use,coal,coal,2040,CO,0.070202866 +WA,industrial fuel use,coal,coal,2045,CO,0.071098148 +WA,industrial fuel use,coal,coal,2050,CO,0.072063393 +WA,industrial fuel use,coal,coal,2055,CO,0.072511454 +WA,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +WA,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +WA,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +WA,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +WA,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +WA,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +WA,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +WA,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +WA,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +WA,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +WA,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +WA,industrial fuel use,gas,gas,2005,CO,0.054958784 +WA,industrial fuel use,gas,gas,2010,CO,0.041119779 +WA,industrial fuel use,gas,gas,2015,CO,0.037376927 +WA,industrial fuel use,gas,gas,2020,CO,0.042196984 +WA,industrial fuel use,gas,gas,2025,CO,0.046340259 +WA,industrial fuel use,gas,gas,2030,CO,0.051044751 +WA,industrial fuel use,gas,gas,2035,CO,0.048377476 +WA,industrial fuel use,gas,gas,2040,CO,0.04844371 +WA,industrial fuel use,gas,gas,2045,CO,0.049325699 +WA,industrial fuel use,gas,gas,2050,CO,0.048085677 +WA,industrial fuel use,gas,gas,2055,CO,0.046506083 +WA,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +WA,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +WA,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +WA,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +WA,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +WA,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +WA,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +WA,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +WA,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +WA,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +WA,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +WA,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +WA,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +WA,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +WA,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +WA,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +WA,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +WA,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +WA,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +WA,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +WA,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +WA,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +WA,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +WA,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +WA,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +WA,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +WA,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +WA,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +WA,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +WA,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +WA,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +WA,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +WA,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +WA,industrial fuel use,coal,coal,2005,CH4,0.008615911 +WA,industrial fuel use,coal,coal,2010,CH4,0.007087118 +WA,industrial fuel use,coal,coal,2015,CH4,0.007645512 +WA,industrial fuel use,coal,coal,2020,CH4,0.007093206 +WA,industrial fuel use,coal,coal,2025,CH4,0.007280827 +WA,industrial fuel use,coal,coal,2030,CH4,0.007426545 +WA,industrial fuel use,coal,coal,2035,CH4,0.007524098 +WA,industrial fuel use,coal,coal,2040,CH4,0.007621441 +WA,industrial fuel use,coal,coal,2045,CH4,0.007691307 +WA,industrial fuel use,coal,coal,2050,CH4,0.007801358 +WA,industrial fuel use,coal,coal,2055,CH4,0.007871907 +WA,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +WA,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +WA,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +WA,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +WA,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +WA,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +WA,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +WA,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +WA,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +WA,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +WA,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +WA,industrial fuel use,gas,gas,2005,CH4,0.002575726 +WA,industrial fuel use,gas,gas,2010,CH4,0.0036902 +WA,industrial fuel use,gas,gas,2015,CH4,0.001847174 +WA,industrial fuel use,gas,gas,2020,CH4,0.002575374 +WA,industrial fuel use,gas,gas,2025,CH4,0.002470739 +WA,industrial fuel use,gas,gas,2030,CH4,0.002514812 +WA,industrial fuel use,gas,gas,2035,CH4,0.004402202 +WA,industrial fuel use,gas,gas,2040,CH4,0.005194877 +WA,industrial fuel use,gas,gas,2045,CH4,0.005264291 +WA,industrial fuel use,gas,gas,2050,CH4,0.006086388 +WA,industrial fuel use,gas,gas,2055,CH4,0.006850703 +WA,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +WA,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +WA,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +WA,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +WA,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +WA,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +WA,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +WA,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +WA,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +WA,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +WA,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +WA,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +WA,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +WA,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +WA,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +WA,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +WA,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +WA,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +WA,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +WA,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +WA,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +WA,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +WA,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +WA,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +WA,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +WA,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +WA,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +WA,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +WA,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +WA,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +WA,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +WA,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +WA,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +WA,industrial fuel use,coal,coal,2005,N2O,0.002945881 +WA,industrial fuel use,coal,coal,2010,N2O,0.004699422 +WA,industrial fuel use,coal,coal,2015,N2O,0.003718249 +WA,industrial fuel use,coal,coal,2020,N2O,0.003503987 +WA,industrial fuel use,coal,coal,2025,N2O,0.003902448 +WA,industrial fuel use,coal,coal,2030,N2O,0.005231917 +WA,industrial fuel use,coal,coal,2035,N2O,0.005844861 +WA,industrial fuel use,coal,coal,2040,N2O,0.006123209 +WA,industrial fuel use,coal,coal,2045,N2O,0.006493024 +WA,industrial fuel use,coal,coal,2050,N2O,0.00643187 +WA,industrial fuel use,coal,coal,2055,N2O,0.006580646 +WA,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +WA,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +WA,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +WA,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +WA,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +WA,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +WA,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +WA,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +WA,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +WA,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +WA,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +WA,industrial fuel use,gas,gas,2005,N2O,0.000509795 +WA,industrial fuel use,gas,gas,2010,N2O,0.000459136 +WA,industrial fuel use,gas,gas,2015,N2O,0.000457847 +WA,industrial fuel use,gas,gas,2020,N2O,0.000469807 +WA,industrial fuel use,gas,gas,2025,N2O,0.0004748 +WA,industrial fuel use,gas,gas,2030,N2O,0.000493269 +WA,industrial fuel use,gas,gas,2035,N2O,0.0005142 +WA,industrial fuel use,gas,gas,2040,N2O,0.000525413 +WA,industrial fuel use,gas,gas,2045,N2O,0.000530678 +WA,industrial fuel use,gas,gas,2050,N2O,0.000534097 +WA,industrial fuel use,gas,gas,2055,N2O,0.000535185 +WA,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +WA,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +WA,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +WA,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +WA,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +WA,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +WA,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +WA,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +WA,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +WA,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +WA,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +WA,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +WA,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +WA,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +WA,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +WA,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +WA,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +WA,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +WA,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +WA,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +WA,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +WA,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +WA,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +WA,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +WA,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +WA,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +WA,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +WA,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +WA,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +WA,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +WA,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +WA,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +WA,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +WA,industrial fuel use,coal,coal,2005,BC,0.052178527 +WA,industrial fuel use,coal,coal,2010,BC,0.054113893 +WA,industrial fuel use,coal,coal,2015,BC,0.054816673 +WA,industrial fuel use,coal,coal,2020,BC,0.051442317 +WA,industrial fuel use,coal,coal,2025,BC,0.05280003 +WA,industrial fuel use,coal,coal,2030,BC,0.054819383 +WA,industrial fuel use,coal,coal,2035,BC,0.055934389 +WA,industrial fuel use,coal,coal,2040,BC,0.056737391 +WA,industrial fuel use,coal,coal,2045,BC,0.057341111 +WA,industrial fuel use,coal,coal,2050,BC,0.057867944 +WA,industrial fuel use,coal,coal,2055,BC,0.058307588 +WA,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +WA,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +WA,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +WA,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +WA,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +WA,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +WA,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +WA,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +WA,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +WA,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +WA,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +WA,industrial fuel use,gas,gas,2005,BC,0.000879555 +WA,industrial fuel use,gas,gas,2010,BC,0.000594596 +WA,industrial fuel use,gas,gas,2015,BC,0.000780779 +WA,industrial fuel use,gas,gas,2020,BC,0.000758542 +WA,industrial fuel use,gas,gas,2025,BC,0.000791704 +WA,industrial fuel use,gas,gas,2030,BC,0.000829295 +WA,industrial fuel use,gas,gas,2035,BC,0.000745895 +WA,industrial fuel use,gas,gas,2040,BC,0.000739727 +WA,industrial fuel use,gas,gas,2045,BC,0.000759191 +WA,industrial fuel use,gas,gas,2050,BC,0.000728476 +WA,industrial fuel use,gas,gas,2055,BC,0.000688571 +WA,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +WA,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +WA,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +WA,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +WA,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +WA,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +WA,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +WA,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +WA,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +WA,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +WA,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +WA,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +WA,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +WA,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +WA,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +WA,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +WA,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +WA,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +WA,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +WA,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +WA,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +WA,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +WA,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +WA,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +WA,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +WA,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +WA,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +WA,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +WA,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +WA,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +WA,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +WA,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +WA,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +WA,industrial fuel use,coal,coal,2005,OC,0.004608879 +WA,industrial fuel use,coal,coal,2010,OC,0.004949044 +WA,industrial fuel use,coal,coal,2015,OC,0.005291355 +WA,industrial fuel use,coal,coal,2020,OC,0.005047635 +WA,industrial fuel use,coal,coal,2025,OC,0.005240698 +WA,industrial fuel use,coal,coal,2030,OC,0.005398598 +WA,industrial fuel use,coal,coal,2035,OC,0.005483036 +WA,industrial fuel use,coal,coal,2040,OC,0.005583473 +WA,industrial fuel use,coal,coal,2045,OC,0.005638434 +WA,industrial fuel use,coal,coal,2050,OC,0.005723515 +WA,industrial fuel use,coal,coal,2055,OC,0.005777195 +WA,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +WA,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +WA,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +WA,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +WA,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +WA,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +WA,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +WA,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +WA,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +WA,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +WA,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +WA,industrial fuel use,gas,gas,2005,OC,0.000586894 +WA,industrial fuel use,gas,gas,2010,OC,0.000538986 +WA,industrial fuel use,gas,gas,2015,OC,0.000406177 +WA,industrial fuel use,gas,gas,2020,OC,0.000436774 +WA,industrial fuel use,gas,gas,2025,OC,0.000431434 +WA,industrial fuel use,gas,gas,2030,OC,0.000454497 +WA,industrial fuel use,gas,gas,2035,OC,0.0005142 +WA,industrial fuel use,gas,gas,2040,OC,0.000542203 +WA,industrial fuel use,gas,gas,2045,OC,0.0005354 +WA,industrial fuel use,gas,gas,2050,OC,0.000552822 +WA,industrial fuel use,gas,gas,2055,OC,0.000563528 +WA,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +WA,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +WA,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +WA,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +WA,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +WA,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +WA,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +WA,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +WA,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +WA,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +WA,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +WA,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +WA,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +WA,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +WA,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +WA,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +WA,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +WA,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +WA,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +WA,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +WA,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +WA,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +WA,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +WA,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +WA,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +WA,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +WA,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +WA,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +WA,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +WA,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +WA,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +WA,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +WA,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +WA,industrial fuel use,coal,coal,2005,CO2,0.022413751 +WA,industrial fuel use,coal,coal,2010,CO2,0.023247485 +WA,industrial fuel use,coal,coal,2015,CO2,0.023542577 +WA,industrial fuel use,coal,coal,2020,CO2,0.022100946 +WA,industrial fuel use,coal,coal,2025,CO2,0.022682182 +WA,industrial fuel use,coal,coal,2030,CO2,0.023544891 +WA,industrial fuel use,coal,coal,2035,CO2,0.024022124 +WA,industrial fuel use,coal,coal,2040,CO2,0.024371859 +WA,industrial fuel use,coal,coal,2045,CO2,0.024626877 +WA,industrial fuel use,coal,coal,2050,CO2,0.024861999 +WA,industrial fuel use,coal,coal,2055,CO2,0.025047846 +WA,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +WA,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +WA,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +WA,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +WA,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +WA,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +WA,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +WA,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +WA,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +WA,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +WA,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +WA,industrial fuel use,gas,gas,2005,CO2,0.010100215 +WA,industrial fuel use,gas,gas,2010,CO2,0.008735772 +WA,industrial fuel use,gas,gas,2015,CO2,0.008975567 +WA,industrial fuel use,gas,gas,2020,CO2,0.009141549 +WA,industrial fuel use,gas,gas,2025,CO2,0.009319403 +WA,industrial fuel use,gas,gas,2030,CO2,0.009661635 +WA,industrial fuel use,gas,gas,2035,CO2,0.009858394 +WA,industrial fuel use,gas,gas,2040,CO2,0.010090146 +WA,industrial fuel use,gas,gas,2045,CO2,0.010177486 +WA,industrial fuel use,gas,gas,2050,CO2,0.010210503 +WA,industrial fuel use,gas,gas,2055,CO2,0.010168744 +WA,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +WA,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +WA,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +WA,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +WA,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +WA,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +WA,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +WA,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +WA,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +WA,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +WA,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +WA,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +WA,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +WA,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +WA,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +WA,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +WA,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +WA,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +WA,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +WA,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +WA,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +WA,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +WA,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +WA,industrial fuel use,biomass,biomass,2005,CO2,0 +WA,industrial fuel use,biomass,biomass,2010,CO2,0 +WA,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +WA,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +WA,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +WA,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +WA,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +WA,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +WA,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +WA,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +WA,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +WA,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +WA,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +WA,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +WA,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +WA,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +WA,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +WA,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +WA,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +WA,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +WA,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +WA,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +WI,industrial fuel use,coal,coal,2005,NOx,0.261565752 +WI,industrial fuel use,coal,coal,2010,NOx,0.24128762 +WI,industrial fuel use,coal,coal,2015,NOx,0.247879608 +WI,industrial fuel use,coal,coal,2020,NOx,0.234312556 +WI,industrial fuel use,coal,coal,2025,NOx,0.240398293 +WI,industrial fuel use,coal,coal,2030,NOx,0.246677964 +WI,industrial fuel use,coal,coal,2035,NOx,0.250299201 +WI,industrial fuel use,coal,coal,2040,NOx,0.253554811 +WI,industrial fuel use,coal,coal,2045,NOx,0.255578056 +WI,industrial fuel use,coal,coal,2050,NOx,0.258549854 +WI,industrial fuel use,coal,coal,2055,NOx,0.26014596 +WI,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +WI,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +WI,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +WI,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +WI,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +WI,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +WI,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +WI,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +WI,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +WI,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +WI,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +WI,industrial fuel use,gas,gas,2005,NOx,0.080919016 +WI,industrial fuel use,gas,gas,2010,NOx,0.044952568 +WI,industrial fuel use,gas,gas,2015,NOx,0.037239142 +WI,industrial fuel use,gas,gas,2020,NOx,0.040745965 +WI,industrial fuel use,gas,gas,2025,NOx,0.042574105 +WI,industrial fuel use,gas,gas,2030,NOx,0.045347383 +WI,industrial fuel use,gas,gas,2035,NOx,0.048574619 +WI,industrial fuel use,gas,gas,2040,NOx,0.050422899 +WI,industrial fuel use,gas,gas,2045,NOx,0.050680722 +WI,industrial fuel use,gas,gas,2050,NOx,0.0517343 +WI,industrial fuel use,gas,gas,2055,NOx,0.052443137 +WI,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +WI,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +WI,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +WI,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +WI,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +WI,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +WI,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +WI,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +WI,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +WI,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +WI,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +WI,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +WI,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +WI,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +WI,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +WI,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +WI,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +WI,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +WI,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +WI,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +WI,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +WI,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +WI,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +WI,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +WI,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +WI,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +WI,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +WI,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +WI,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +WI,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +WI,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +WI,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +WI,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +WI,industrial fuel use,coal,coal,2005,SO2,0.709862367 +WI,industrial fuel use,coal,coal,2010,SO2,0.679592789 +WI,industrial fuel use,coal,coal,2015,SO2,0.590904591 +WI,industrial fuel use,coal,coal,2020,SO2,0.549595621 +WI,industrial fuel use,coal,coal,2025,SO2,0.56430149 +WI,industrial fuel use,coal,coal,2030,SO2,0.576548046 +WI,industrial fuel use,coal,coal,2035,SO2,0.583595424 +WI,industrial fuel use,coal,coal,2040,SO2,0.590805881 +WI,industrial fuel use,coal,coal,2045,SO2,0.596410723 +WI,industrial fuel use,coal,coal,2050,SO2,0.606154195 +WI,industrial fuel use,coal,coal,2055,SO2,0.611234923 +WI,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +WI,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +WI,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +WI,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +WI,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +WI,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +WI,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +WI,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +WI,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +WI,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +WI,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +WI,industrial fuel use,gas,gas,2005,SO2,0.000213988 +WI,industrial fuel use,gas,gas,2010,SO2,0.002761946 +WI,industrial fuel use,gas,gas,2015,SO2,0.002854723 +WI,industrial fuel use,gas,gas,2020,SO2,0.002771127 +WI,industrial fuel use,gas,gas,2025,SO2,0.002798763 +WI,industrial fuel use,gas,gas,2030,SO2,0.002938075 +WI,industrial fuel use,gas,gas,2035,SO2,0.003016098 +WI,industrial fuel use,gas,gas,2040,SO2,0.003118901 +WI,industrial fuel use,gas,gas,2045,SO2,0.00311325 +WI,industrial fuel use,gas,gas,2050,SO2,0.003090451 +WI,industrial fuel use,gas,gas,2055,SO2,0.003025213 +WI,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +WI,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +WI,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +WI,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +WI,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +WI,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +WI,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +WI,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +WI,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +WI,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +WI,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +WI,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +WI,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +WI,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +WI,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +WI,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +WI,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +WI,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +WI,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +WI,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +WI,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +WI,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +WI,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +WI,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +WI,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +WI,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +WI,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +WI,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +WI,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +WI,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +WI,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +WI,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +WI,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +WI,industrial fuel use,coal,coal,2005,PM10,0.136452905 +WI,industrial fuel use,coal,coal,2010,PM10,0.093662835 +WI,industrial fuel use,coal,coal,2015,PM10,0.100887759 +WI,industrial fuel use,coal,coal,2020,PM10,0.094503476 +WI,industrial fuel use,coal,coal,2025,PM10,0.09752377 +WI,industrial fuel use,coal,coal,2030,PM10,0.099823133 +WI,industrial fuel use,coal,coal,2035,PM10,0.101097535 +WI,industrial fuel use,coal,coal,2040,PM10,0.102438117 +WI,industrial fuel use,coal,coal,2045,PM10,0.103553978 +WI,industrial fuel use,coal,coal,2050,PM10,0.105393893 +WI,industrial fuel use,coal,coal,2055,PM10,0.106304221 +WI,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +WI,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +WI,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +WI,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +WI,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +WI,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +WI,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +WI,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +WI,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +WI,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +WI,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +WI,industrial fuel use,gas,gas,2005,PM10,0.002144603 +WI,industrial fuel use,gas,gas,2010,PM10,0.004157892 +WI,industrial fuel use,gas,gas,2015,PM10,0.004308637 +WI,industrial fuel use,gas,gas,2020,PM10,0.004261296 +WI,industrial fuel use,gas,gas,2025,PM10,0.004334357 +WI,industrial fuel use,gas,gas,2030,PM10,0.00454497 +WI,industrial fuel use,gas,gas,2035,PM10,0.004581054 +WI,industrial fuel use,gas,gas,2040,PM10,0.004690204 +WI,industrial fuel use,gas,gas,2045,PM10,0.004695842 +WI,industrial fuel use,gas,gas,2050,PM10,0.004649052 +WI,industrial fuel use,gas,gas,2055,PM10,0.00454824 +WI,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +WI,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +WI,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +WI,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +WI,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +WI,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +WI,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +WI,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +WI,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +WI,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +WI,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +WI,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +WI,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +WI,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +WI,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +WI,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +WI,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +WI,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +WI,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +WI,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +WI,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +WI,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +WI,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +WI,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +WI,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +WI,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +WI,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +WI,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +WI,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +WI,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +WI,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +WI,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +WI,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +WI,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +WI,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +WI,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +WI,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +WI,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +WI,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +WI,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +WI,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +WI,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +WI,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +WI,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +WI,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +WI,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +WI,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +WI,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +WI,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +WI,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +WI,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +WI,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +WI,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +WI,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +WI,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +WI,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +WI,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +WI,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +WI,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +WI,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +WI,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +WI,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +WI,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +WI,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +WI,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +WI,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +WI,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +WI,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +WI,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +WI,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +WI,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +WI,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +WI,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +WI,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +WI,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +WI,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +WI,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +WI,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +WI,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +WI,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +WI,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +WI,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +WI,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +WI,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +WI,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +WI,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +WI,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +WI,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +WI,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +WI,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +WI,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +WI,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +WI,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +WI,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +WI,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +WI,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +WI,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +WI,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +WI,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +WI,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +WI,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +WI,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +WI,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +WI,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +WI,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +WI,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +WI,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +WI,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +WI,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +WI,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +WI,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +WI,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +WI,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +WI,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +WI,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +WI,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +WI,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +WI,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +WI,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +WI,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +WI,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +WI,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +WI,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +WI,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +WI,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +WI,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +WI,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +WI,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +WI,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +WI,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +WI,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +WI,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +WI,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +WI,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +WI,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +WI,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +WI,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +WI,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +WI,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +WI,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +WI,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +WI,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +WI,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +WI,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +WI,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +WI,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +WI,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +WI,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +WI,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +WI,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +WI,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +WI,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +WI,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +WI,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +WI,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +WI,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +WI,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +WI,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +WI,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +WI,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +WI,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +WI,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +WI,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +WI,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +WI,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +WI,industrial fuel use,coal,coal,2005,CO,0.069434106 +WI,industrial fuel use,coal,coal,2010,CO,0.07723114 +WI,industrial fuel use,coal,coal,2015,CO,0.068281575 +WI,industrial fuel use,coal,coal,2020,CO,0.063753622 +WI,industrial fuel use,coal,coal,2025,CO,0.065761399 +WI,industrial fuel use,coal,coal,2030,CO,0.067959367 +WI,industrial fuel use,coal,coal,2035,CO,0.069173462 +WI,industrial fuel use,coal,coal,2040,CO,0.070202866 +WI,industrial fuel use,coal,coal,2045,CO,0.071098148 +WI,industrial fuel use,coal,coal,2050,CO,0.072063393 +WI,industrial fuel use,coal,coal,2055,CO,0.072511454 +WI,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +WI,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +WI,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +WI,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +WI,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +WI,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +WI,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +WI,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +WI,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +WI,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +WI,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +WI,industrial fuel use,gas,gas,2005,CO,0.054958784 +WI,industrial fuel use,gas,gas,2010,CO,0.041119779 +WI,industrial fuel use,gas,gas,2015,CO,0.037376927 +WI,industrial fuel use,gas,gas,2020,CO,0.042196984 +WI,industrial fuel use,gas,gas,2025,CO,0.046340259 +WI,industrial fuel use,gas,gas,2030,CO,0.051044751 +WI,industrial fuel use,gas,gas,2035,CO,0.048377476 +WI,industrial fuel use,gas,gas,2040,CO,0.04844371 +WI,industrial fuel use,gas,gas,2045,CO,0.049325699 +WI,industrial fuel use,gas,gas,2050,CO,0.048085677 +WI,industrial fuel use,gas,gas,2055,CO,0.046506083 +WI,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +WI,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +WI,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +WI,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +WI,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +WI,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +WI,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +WI,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +WI,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +WI,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +WI,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +WI,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +WI,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +WI,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +WI,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +WI,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +WI,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +WI,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +WI,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +WI,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +WI,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +WI,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +WI,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +WI,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +WI,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +WI,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +WI,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +WI,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +WI,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +WI,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +WI,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +WI,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +WI,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +WI,industrial fuel use,coal,coal,2005,CH4,0.008615911 +WI,industrial fuel use,coal,coal,2010,CH4,0.007087118 +WI,industrial fuel use,coal,coal,2015,CH4,0.007645512 +WI,industrial fuel use,coal,coal,2020,CH4,0.007093206 +WI,industrial fuel use,coal,coal,2025,CH4,0.007280827 +WI,industrial fuel use,coal,coal,2030,CH4,0.007426545 +WI,industrial fuel use,coal,coal,2035,CH4,0.007524098 +WI,industrial fuel use,coal,coal,2040,CH4,0.007621441 +WI,industrial fuel use,coal,coal,2045,CH4,0.007691307 +WI,industrial fuel use,coal,coal,2050,CH4,0.007801358 +WI,industrial fuel use,coal,coal,2055,CH4,0.007871907 +WI,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +WI,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +WI,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +WI,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +WI,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +WI,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +WI,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +WI,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +WI,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +WI,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +WI,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +WI,industrial fuel use,gas,gas,2005,CH4,0.002575726 +WI,industrial fuel use,gas,gas,2010,CH4,0.0036902 +WI,industrial fuel use,gas,gas,2015,CH4,0.001847174 +WI,industrial fuel use,gas,gas,2020,CH4,0.002575374 +WI,industrial fuel use,gas,gas,2025,CH4,0.002470739 +WI,industrial fuel use,gas,gas,2030,CH4,0.002514812 +WI,industrial fuel use,gas,gas,2035,CH4,0.004402202 +WI,industrial fuel use,gas,gas,2040,CH4,0.005194877 +WI,industrial fuel use,gas,gas,2045,CH4,0.005264291 +WI,industrial fuel use,gas,gas,2050,CH4,0.006086388 +WI,industrial fuel use,gas,gas,2055,CH4,0.006850703 +WI,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +WI,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +WI,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +WI,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +WI,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +WI,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +WI,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +WI,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +WI,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +WI,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +WI,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +WI,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +WI,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +WI,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +WI,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +WI,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +WI,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +WI,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +WI,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +WI,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +WI,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +WI,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +WI,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +WI,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +WI,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +WI,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +WI,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +WI,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +WI,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +WI,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +WI,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +WI,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +WI,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +WI,industrial fuel use,coal,coal,2005,N2O,0.002945881 +WI,industrial fuel use,coal,coal,2010,N2O,0.004699422 +WI,industrial fuel use,coal,coal,2015,N2O,0.003718249 +WI,industrial fuel use,coal,coal,2020,N2O,0.003503987 +WI,industrial fuel use,coal,coal,2025,N2O,0.003902448 +WI,industrial fuel use,coal,coal,2030,N2O,0.005231917 +WI,industrial fuel use,coal,coal,2035,N2O,0.005844861 +WI,industrial fuel use,coal,coal,2040,N2O,0.006123209 +WI,industrial fuel use,coal,coal,2045,N2O,0.006493024 +WI,industrial fuel use,coal,coal,2050,N2O,0.00643187 +WI,industrial fuel use,coal,coal,2055,N2O,0.006580646 +WI,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +WI,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +WI,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +WI,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +WI,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +WI,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +WI,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +WI,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +WI,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +WI,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +WI,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +WI,industrial fuel use,gas,gas,2005,N2O,0.000509795 +WI,industrial fuel use,gas,gas,2010,N2O,0.000459136 +WI,industrial fuel use,gas,gas,2015,N2O,0.000457847 +WI,industrial fuel use,gas,gas,2020,N2O,0.000469807 +WI,industrial fuel use,gas,gas,2025,N2O,0.0004748 +WI,industrial fuel use,gas,gas,2030,N2O,0.000493269 +WI,industrial fuel use,gas,gas,2035,N2O,0.0005142 +WI,industrial fuel use,gas,gas,2040,N2O,0.000525413 +WI,industrial fuel use,gas,gas,2045,N2O,0.000530678 +WI,industrial fuel use,gas,gas,2050,N2O,0.000534097 +WI,industrial fuel use,gas,gas,2055,N2O,0.000535185 +WI,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +WI,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +WI,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +WI,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +WI,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +WI,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +WI,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +WI,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +WI,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +WI,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +WI,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +WI,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +WI,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +WI,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +WI,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +WI,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +WI,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +WI,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +WI,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +WI,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +WI,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +WI,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +WI,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +WI,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +WI,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +WI,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +WI,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +WI,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +WI,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +WI,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +WI,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +WI,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +WI,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +WI,industrial fuel use,coal,coal,2005,BC,0.052178527 +WI,industrial fuel use,coal,coal,2010,BC,0.054113893 +WI,industrial fuel use,coal,coal,2015,BC,0.054816673 +WI,industrial fuel use,coal,coal,2020,BC,0.051442317 +WI,industrial fuel use,coal,coal,2025,BC,0.05280003 +WI,industrial fuel use,coal,coal,2030,BC,0.054819383 +WI,industrial fuel use,coal,coal,2035,BC,0.055934389 +WI,industrial fuel use,coal,coal,2040,BC,0.056737391 +WI,industrial fuel use,coal,coal,2045,BC,0.057341111 +WI,industrial fuel use,coal,coal,2050,BC,0.057867944 +WI,industrial fuel use,coal,coal,2055,BC,0.058307588 +WI,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +WI,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +WI,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +WI,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +WI,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +WI,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +WI,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +WI,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +WI,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +WI,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +WI,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +WI,industrial fuel use,gas,gas,2005,BC,0.000879555 +WI,industrial fuel use,gas,gas,2010,BC,0.000594596 +WI,industrial fuel use,gas,gas,2015,BC,0.000780779 +WI,industrial fuel use,gas,gas,2020,BC,0.000758542 +WI,industrial fuel use,gas,gas,2025,BC,0.000791704 +WI,industrial fuel use,gas,gas,2030,BC,0.000829295 +WI,industrial fuel use,gas,gas,2035,BC,0.000745895 +WI,industrial fuel use,gas,gas,2040,BC,0.000739727 +WI,industrial fuel use,gas,gas,2045,BC,0.000759191 +WI,industrial fuel use,gas,gas,2050,BC,0.000728476 +WI,industrial fuel use,gas,gas,2055,BC,0.000688571 +WI,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +WI,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +WI,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +WI,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +WI,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +WI,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +WI,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +WI,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +WI,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +WI,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +WI,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +WI,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +WI,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +WI,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +WI,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +WI,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +WI,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +WI,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +WI,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +WI,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +WI,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +WI,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +WI,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +WI,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +WI,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +WI,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +WI,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +WI,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +WI,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +WI,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +WI,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +WI,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +WI,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +WI,industrial fuel use,coal,coal,2005,OC,0.004608879 +WI,industrial fuel use,coal,coal,2010,OC,0.004949044 +WI,industrial fuel use,coal,coal,2015,OC,0.005291355 +WI,industrial fuel use,coal,coal,2020,OC,0.005047635 +WI,industrial fuel use,coal,coal,2025,OC,0.005240698 +WI,industrial fuel use,coal,coal,2030,OC,0.005398598 +WI,industrial fuel use,coal,coal,2035,OC,0.005483036 +WI,industrial fuel use,coal,coal,2040,OC,0.005583473 +WI,industrial fuel use,coal,coal,2045,OC,0.005638434 +WI,industrial fuel use,coal,coal,2050,OC,0.005723515 +WI,industrial fuel use,coal,coal,2055,OC,0.005777195 +WI,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +WI,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +WI,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +WI,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +WI,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +WI,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +WI,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +WI,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +WI,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +WI,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +WI,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +WI,industrial fuel use,gas,gas,2005,OC,0.000586894 +WI,industrial fuel use,gas,gas,2010,OC,0.000538986 +WI,industrial fuel use,gas,gas,2015,OC,0.000406177 +WI,industrial fuel use,gas,gas,2020,OC,0.000436774 +WI,industrial fuel use,gas,gas,2025,OC,0.000431434 +WI,industrial fuel use,gas,gas,2030,OC,0.000454497 +WI,industrial fuel use,gas,gas,2035,OC,0.0005142 +WI,industrial fuel use,gas,gas,2040,OC,0.000542203 +WI,industrial fuel use,gas,gas,2045,OC,0.0005354 +WI,industrial fuel use,gas,gas,2050,OC,0.000552822 +WI,industrial fuel use,gas,gas,2055,OC,0.000563528 +WI,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +WI,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +WI,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +WI,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +WI,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +WI,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +WI,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +WI,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +WI,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +WI,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +WI,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +WI,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +WI,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +WI,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +WI,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +WI,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +WI,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +WI,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +WI,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +WI,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +WI,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +WI,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +WI,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +WI,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +WI,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +WI,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +WI,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +WI,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +WI,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +WI,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +WI,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +WI,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +WI,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +WI,industrial fuel use,coal,coal,2005,CO2,0.022413751 +WI,industrial fuel use,coal,coal,2010,CO2,0.023247485 +WI,industrial fuel use,coal,coal,2015,CO2,0.023542577 +WI,industrial fuel use,coal,coal,2020,CO2,0.022100946 +WI,industrial fuel use,coal,coal,2025,CO2,0.022682182 +WI,industrial fuel use,coal,coal,2030,CO2,0.023544891 +WI,industrial fuel use,coal,coal,2035,CO2,0.024022124 +WI,industrial fuel use,coal,coal,2040,CO2,0.024371859 +WI,industrial fuel use,coal,coal,2045,CO2,0.024626877 +WI,industrial fuel use,coal,coal,2050,CO2,0.024861999 +WI,industrial fuel use,coal,coal,2055,CO2,0.025047846 +WI,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +WI,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +WI,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +WI,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +WI,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +WI,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +WI,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +WI,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +WI,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +WI,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +WI,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +WI,industrial fuel use,gas,gas,2005,CO2,0.010100215 +WI,industrial fuel use,gas,gas,2010,CO2,0.008735772 +WI,industrial fuel use,gas,gas,2015,CO2,0.008975567 +WI,industrial fuel use,gas,gas,2020,CO2,0.009141549 +WI,industrial fuel use,gas,gas,2025,CO2,0.009319403 +WI,industrial fuel use,gas,gas,2030,CO2,0.009661635 +WI,industrial fuel use,gas,gas,2035,CO2,0.009858394 +WI,industrial fuel use,gas,gas,2040,CO2,0.010090146 +WI,industrial fuel use,gas,gas,2045,CO2,0.010177486 +WI,industrial fuel use,gas,gas,2050,CO2,0.010210503 +WI,industrial fuel use,gas,gas,2055,CO2,0.010168744 +WI,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +WI,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +WI,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +WI,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +WI,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +WI,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +WI,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +WI,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +WI,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +WI,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +WI,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +WI,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +WI,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +WI,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +WI,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +WI,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +WI,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +WI,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +WI,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +WI,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +WI,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +WI,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +WI,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +WI,industrial fuel use,biomass,biomass,2005,CO2,0 +WI,industrial fuel use,biomass,biomass,2010,CO2,0 +WI,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +WI,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +WI,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +WI,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +WI,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +WI,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +WI,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +WI,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +WI,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +WI,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +WI,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +WI,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +WI,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +WI,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +WI,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +WI,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +WI,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +WI,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +WI,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +WI,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +WV,industrial fuel use,coal,coal,2005,NOx,0.261565752 +WV,industrial fuel use,coal,coal,2010,NOx,0.24128762 +WV,industrial fuel use,coal,coal,2015,NOx,0.247879608 +WV,industrial fuel use,coal,coal,2020,NOx,0.234312556 +WV,industrial fuel use,coal,coal,2025,NOx,0.240398293 +WV,industrial fuel use,coal,coal,2030,NOx,0.246677964 +WV,industrial fuel use,coal,coal,2035,NOx,0.250299201 +WV,industrial fuel use,coal,coal,2040,NOx,0.253554811 +WV,industrial fuel use,coal,coal,2045,NOx,0.255578056 +WV,industrial fuel use,coal,coal,2050,NOx,0.258549854 +WV,industrial fuel use,coal,coal,2055,NOx,0.26014596 +WV,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +WV,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +WV,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +WV,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +WV,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +WV,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +WV,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +WV,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +WV,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +WV,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +WV,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +WV,industrial fuel use,gas,gas,2005,NOx,0.080919016 +WV,industrial fuel use,gas,gas,2010,NOx,0.044952568 +WV,industrial fuel use,gas,gas,2015,NOx,0.037239142 +WV,industrial fuel use,gas,gas,2020,NOx,0.040745965 +WV,industrial fuel use,gas,gas,2025,NOx,0.042574105 +WV,industrial fuel use,gas,gas,2030,NOx,0.045347383 +WV,industrial fuel use,gas,gas,2035,NOx,0.048574619 +WV,industrial fuel use,gas,gas,2040,NOx,0.050422899 +WV,industrial fuel use,gas,gas,2045,NOx,0.050680722 +WV,industrial fuel use,gas,gas,2050,NOx,0.0517343 +WV,industrial fuel use,gas,gas,2055,NOx,0.052443137 +WV,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +WV,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +WV,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +WV,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +WV,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +WV,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +WV,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +WV,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +WV,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +WV,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +WV,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +WV,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +WV,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +WV,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +WV,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +WV,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +WV,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +WV,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +WV,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +WV,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +WV,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +WV,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +WV,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +WV,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +WV,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +WV,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +WV,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +WV,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +WV,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +WV,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +WV,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +WV,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +WV,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +WV,industrial fuel use,coal,coal,2005,SO2,0.709862367 +WV,industrial fuel use,coal,coal,2010,SO2,0.679592789 +WV,industrial fuel use,coal,coal,2015,SO2,0.590904591 +WV,industrial fuel use,coal,coal,2020,SO2,0.549595621 +WV,industrial fuel use,coal,coal,2025,SO2,0.56430149 +WV,industrial fuel use,coal,coal,2030,SO2,0.576548046 +WV,industrial fuel use,coal,coal,2035,SO2,0.583595424 +WV,industrial fuel use,coal,coal,2040,SO2,0.590805881 +WV,industrial fuel use,coal,coal,2045,SO2,0.596410723 +WV,industrial fuel use,coal,coal,2050,SO2,0.606154195 +WV,industrial fuel use,coal,coal,2055,SO2,0.611234923 +WV,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +WV,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +WV,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +WV,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +WV,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +WV,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +WV,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +WV,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +WV,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +WV,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +WV,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +WV,industrial fuel use,gas,gas,2005,SO2,0.000213988 +WV,industrial fuel use,gas,gas,2010,SO2,0.002761946 +WV,industrial fuel use,gas,gas,2015,SO2,0.002854723 +WV,industrial fuel use,gas,gas,2020,SO2,0.002771127 +WV,industrial fuel use,gas,gas,2025,SO2,0.002798763 +WV,industrial fuel use,gas,gas,2030,SO2,0.002938075 +WV,industrial fuel use,gas,gas,2035,SO2,0.003016098 +WV,industrial fuel use,gas,gas,2040,SO2,0.003118901 +WV,industrial fuel use,gas,gas,2045,SO2,0.00311325 +WV,industrial fuel use,gas,gas,2050,SO2,0.003090451 +WV,industrial fuel use,gas,gas,2055,SO2,0.003025213 +WV,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +WV,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +WV,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +WV,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +WV,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +WV,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +WV,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +WV,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +WV,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +WV,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +WV,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +WV,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +WV,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +WV,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +WV,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +WV,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +WV,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +WV,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +WV,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +WV,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +WV,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +WV,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +WV,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +WV,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +WV,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +WV,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +WV,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +WV,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +WV,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +WV,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +WV,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +WV,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +WV,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +WV,industrial fuel use,coal,coal,2005,PM10,0.136452905 +WV,industrial fuel use,coal,coal,2010,PM10,0.093662835 +WV,industrial fuel use,coal,coal,2015,PM10,0.100887759 +WV,industrial fuel use,coal,coal,2020,PM10,0.094503476 +WV,industrial fuel use,coal,coal,2025,PM10,0.09752377 +WV,industrial fuel use,coal,coal,2030,PM10,0.099823133 +WV,industrial fuel use,coal,coal,2035,PM10,0.101097535 +WV,industrial fuel use,coal,coal,2040,PM10,0.102438117 +WV,industrial fuel use,coal,coal,2045,PM10,0.103553978 +WV,industrial fuel use,coal,coal,2050,PM10,0.105393893 +WV,industrial fuel use,coal,coal,2055,PM10,0.106304221 +WV,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +WV,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +WV,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +WV,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +WV,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +WV,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +WV,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +WV,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +WV,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +WV,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +WV,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +WV,industrial fuel use,gas,gas,2005,PM10,0.002144603 +WV,industrial fuel use,gas,gas,2010,PM10,0.004157892 +WV,industrial fuel use,gas,gas,2015,PM10,0.004308637 +WV,industrial fuel use,gas,gas,2020,PM10,0.004261296 +WV,industrial fuel use,gas,gas,2025,PM10,0.004334357 +WV,industrial fuel use,gas,gas,2030,PM10,0.00454497 +WV,industrial fuel use,gas,gas,2035,PM10,0.004581054 +WV,industrial fuel use,gas,gas,2040,PM10,0.004690204 +WV,industrial fuel use,gas,gas,2045,PM10,0.004695842 +WV,industrial fuel use,gas,gas,2050,PM10,0.004649052 +WV,industrial fuel use,gas,gas,2055,PM10,0.00454824 +WV,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +WV,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +WV,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +WV,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +WV,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +WV,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +WV,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +WV,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +WV,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +WV,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +WV,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +WV,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +WV,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +WV,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +WV,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +WV,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +WV,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +WV,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +WV,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +WV,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +WV,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +WV,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +WV,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +WV,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +WV,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +WV,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +WV,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +WV,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +WV,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +WV,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +WV,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +WV,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +WV,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +WV,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +WV,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +WV,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +WV,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +WV,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +WV,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +WV,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +WV,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +WV,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +WV,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +WV,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +WV,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +WV,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +WV,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +WV,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +WV,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +WV,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +WV,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +WV,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +WV,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +WV,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +WV,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +WV,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +WV,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +WV,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +WV,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +WV,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +WV,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +WV,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +WV,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +WV,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +WV,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +WV,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +WV,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +WV,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +WV,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +WV,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +WV,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +WV,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +WV,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +WV,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +WV,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +WV,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +WV,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +WV,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +WV,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +WV,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +WV,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +WV,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +WV,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +WV,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +WV,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +WV,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +WV,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +WV,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +WV,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +WV,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +WV,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +WV,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +WV,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +WV,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +WV,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +WV,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +WV,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +WV,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +WV,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +WV,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +WV,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +WV,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +WV,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +WV,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +WV,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +WV,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +WV,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +WV,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +WV,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +WV,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +WV,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +WV,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +WV,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +WV,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +WV,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +WV,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +WV,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +WV,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +WV,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +WV,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +WV,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +WV,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +WV,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +WV,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +WV,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +WV,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +WV,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +WV,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +WV,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +WV,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +WV,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +WV,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +WV,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +WV,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +WV,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +WV,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +WV,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +WV,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +WV,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +WV,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +WV,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +WV,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +WV,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +WV,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +WV,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +WV,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +WV,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +WV,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +WV,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +WV,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +WV,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +WV,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +WV,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +WV,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +WV,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +WV,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +WV,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +WV,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +WV,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +WV,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +WV,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +WV,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +WV,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +WV,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +WV,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +WV,industrial fuel use,coal,coal,2005,CO,0.069434106 +WV,industrial fuel use,coal,coal,2010,CO,0.07723114 +WV,industrial fuel use,coal,coal,2015,CO,0.068281575 +WV,industrial fuel use,coal,coal,2020,CO,0.063753622 +WV,industrial fuel use,coal,coal,2025,CO,0.065761399 +WV,industrial fuel use,coal,coal,2030,CO,0.067959367 +WV,industrial fuel use,coal,coal,2035,CO,0.069173462 +WV,industrial fuel use,coal,coal,2040,CO,0.070202866 +WV,industrial fuel use,coal,coal,2045,CO,0.071098148 +WV,industrial fuel use,coal,coal,2050,CO,0.072063393 +WV,industrial fuel use,coal,coal,2055,CO,0.072511454 +WV,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +WV,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +WV,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +WV,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +WV,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +WV,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +WV,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +WV,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +WV,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +WV,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +WV,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +WV,industrial fuel use,gas,gas,2005,CO,0.054958784 +WV,industrial fuel use,gas,gas,2010,CO,0.041119779 +WV,industrial fuel use,gas,gas,2015,CO,0.037376927 +WV,industrial fuel use,gas,gas,2020,CO,0.042196984 +WV,industrial fuel use,gas,gas,2025,CO,0.046340259 +WV,industrial fuel use,gas,gas,2030,CO,0.051044751 +WV,industrial fuel use,gas,gas,2035,CO,0.048377476 +WV,industrial fuel use,gas,gas,2040,CO,0.04844371 +WV,industrial fuel use,gas,gas,2045,CO,0.049325699 +WV,industrial fuel use,gas,gas,2050,CO,0.048085677 +WV,industrial fuel use,gas,gas,2055,CO,0.046506083 +WV,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +WV,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +WV,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +WV,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +WV,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +WV,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +WV,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +WV,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +WV,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +WV,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +WV,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +WV,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +WV,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +WV,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +WV,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +WV,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +WV,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +WV,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +WV,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +WV,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +WV,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +WV,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +WV,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +WV,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +WV,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +WV,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +WV,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +WV,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +WV,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +WV,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +WV,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +WV,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +WV,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +WV,industrial fuel use,coal,coal,2005,CH4,0.008615911 +WV,industrial fuel use,coal,coal,2010,CH4,0.007087118 +WV,industrial fuel use,coal,coal,2015,CH4,0.007645512 +WV,industrial fuel use,coal,coal,2020,CH4,0.007093206 +WV,industrial fuel use,coal,coal,2025,CH4,0.007280827 +WV,industrial fuel use,coal,coal,2030,CH4,0.007426545 +WV,industrial fuel use,coal,coal,2035,CH4,0.007524098 +WV,industrial fuel use,coal,coal,2040,CH4,0.007621441 +WV,industrial fuel use,coal,coal,2045,CH4,0.007691307 +WV,industrial fuel use,coal,coal,2050,CH4,0.007801358 +WV,industrial fuel use,coal,coal,2055,CH4,0.007871907 +WV,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +WV,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +WV,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +WV,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +WV,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +WV,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +WV,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +WV,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +WV,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +WV,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +WV,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +WV,industrial fuel use,gas,gas,2005,CH4,0.002575726 +WV,industrial fuel use,gas,gas,2010,CH4,0.0036902 +WV,industrial fuel use,gas,gas,2015,CH4,0.001847174 +WV,industrial fuel use,gas,gas,2020,CH4,0.002575374 +WV,industrial fuel use,gas,gas,2025,CH4,0.002470739 +WV,industrial fuel use,gas,gas,2030,CH4,0.002514812 +WV,industrial fuel use,gas,gas,2035,CH4,0.004402202 +WV,industrial fuel use,gas,gas,2040,CH4,0.005194877 +WV,industrial fuel use,gas,gas,2045,CH4,0.005264291 +WV,industrial fuel use,gas,gas,2050,CH4,0.006086388 +WV,industrial fuel use,gas,gas,2055,CH4,0.006850703 +WV,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +WV,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +WV,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +WV,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +WV,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +WV,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +WV,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +WV,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +WV,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +WV,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +WV,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +WV,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +WV,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +WV,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +WV,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +WV,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +WV,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +WV,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +WV,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +WV,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +WV,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +WV,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +WV,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +WV,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +WV,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +WV,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +WV,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +WV,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +WV,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +WV,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +WV,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +WV,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +WV,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +WV,industrial fuel use,coal,coal,2005,N2O,0.002945881 +WV,industrial fuel use,coal,coal,2010,N2O,0.004699422 +WV,industrial fuel use,coal,coal,2015,N2O,0.003718249 +WV,industrial fuel use,coal,coal,2020,N2O,0.003503987 +WV,industrial fuel use,coal,coal,2025,N2O,0.003902448 +WV,industrial fuel use,coal,coal,2030,N2O,0.005231917 +WV,industrial fuel use,coal,coal,2035,N2O,0.005844861 +WV,industrial fuel use,coal,coal,2040,N2O,0.006123209 +WV,industrial fuel use,coal,coal,2045,N2O,0.006493024 +WV,industrial fuel use,coal,coal,2050,N2O,0.00643187 +WV,industrial fuel use,coal,coal,2055,N2O,0.006580646 +WV,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +WV,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +WV,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +WV,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +WV,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +WV,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +WV,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +WV,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +WV,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +WV,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +WV,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +WV,industrial fuel use,gas,gas,2005,N2O,0.000509795 +WV,industrial fuel use,gas,gas,2010,N2O,0.000459136 +WV,industrial fuel use,gas,gas,2015,N2O,0.000457847 +WV,industrial fuel use,gas,gas,2020,N2O,0.000469807 +WV,industrial fuel use,gas,gas,2025,N2O,0.0004748 +WV,industrial fuel use,gas,gas,2030,N2O,0.000493269 +WV,industrial fuel use,gas,gas,2035,N2O,0.0005142 +WV,industrial fuel use,gas,gas,2040,N2O,0.000525413 +WV,industrial fuel use,gas,gas,2045,N2O,0.000530678 +WV,industrial fuel use,gas,gas,2050,N2O,0.000534097 +WV,industrial fuel use,gas,gas,2055,N2O,0.000535185 +WV,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +WV,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +WV,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +WV,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +WV,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +WV,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +WV,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +WV,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +WV,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +WV,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +WV,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +WV,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +WV,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +WV,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +WV,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +WV,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +WV,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +WV,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +WV,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +WV,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +WV,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +WV,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +WV,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +WV,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +WV,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +WV,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +WV,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +WV,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +WV,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +WV,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +WV,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +WV,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +WV,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +WV,industrial fuel use,coal,coal,2005,BC,0.052178527 +WV,industrial fuel use,coal,coal,2010,BC,0.054113893 +WV,industrial fuel use,coal,coal,2015,BC,0.054816673 +WV,industrial fuel use,coal,coal,2020,BC,0.051442317 +WV,industrial fuel use,coal,coal,2025,BC,0.05280003 +WV,industrial fuel use,coal,coal,2030,BC,0.054819383 +WV,industrial fuel use,coal,coal,2035,BC,0.055934389 +WV,industrial fuel use,coal,coal,2040,BC,0.056737391 +WV,industrial fuel use,coal,coal,2045,BC,0.057341111 +WV,industrial fuel use,coal,coal,2050,BC,0.057867944 +WV,industrial fuel use,coal,coal,2055,BC,0.058307588 +WV,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +WV,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +WV,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +WV,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +WV,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +WV,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +WV,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +WV,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +WV,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +WV,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +WV,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +WV,industrial fuel use,gas,gas,2005,BC,0.000879555 +WV,industrial fuel use,gas,gas,2010,BC,0.000594596 +WV,industrial fuel use,gas,gas,2015,BC,0.000780779 +WV,industrial fuel use,gas,gas,2020,BC,0.000758542 +WV,industrial fuel use,gas,gas,2025,BC,0.000791704 +WV,industrial fuel use,gas,gas,2030,BC,0.000829295 +WV,industrial fuel use,gas,gas,2035,BC,0.000745895 +WV,industrial fuel use,gas,gas,2040,BC,0.000739727 +WV,industrial fuel use,gas,gas,2045,BC,0.000759191 +WV,industrial fuel use,gas,gas,2050,BC,0.000728476 +WV,industrial fuel use,gas,gas,2055,BC,0.000688571 +WV,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +WV,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +WV,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +WV,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +WV,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +WV,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +WV,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +WV,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +WV,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +WV,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +WV,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +WV,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +WV,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +WV,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +WV,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +WV,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +WV,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +WV,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +WV,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +WV,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +WV,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +WV,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +WV,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +WV,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +WV,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +WV,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +WV,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +WV,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +WV,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +WV,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +WV,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +WV,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +WV,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +WV,industrial fuel use,coal,coal,2005,OC,0.004608879 +WV,industrial fuel use,coal,coal,2010,OC,0.004949044 +WV,industrial fuel use,coal,coal,2015,OC,0.005291355 +WV,industrial fuel use,coal,coal,2020,OC,0.005047635 +WV,industrial fuel use,coal,coal,2025,OC,0.005240698 +WV,industrial fuel use,coal,coal,2030,OC,0.005398598 +WV,industrial fuel use,coal,coal,2035,OC,0.005483036 +WV,industrial fuel use,coal,coal,2040,OC,0.005583473 +WV,industrial fuel use,coal,coal,2045,OC,0.005638434 +WV,industrial fuel use,coal,coal,2050,OC,0.005723515 +WV,industrial fuel use,coal,coal,2055,OC,0.005777195 +WV,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +WV,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +WV,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +WV,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +WV,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +WV,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +WV,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +WV,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +WV,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +WV,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +WV,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +WV,industrial fuel use,gas,gas,2005,OC,0.000586894 +WV,industrial fuel use,gas,gas,2010,OC,0.000538986 +WV,industrial fuel use,gas,gas,2015,OC,0.000406177 +WV,industrial fuel use,gas,gas,2020,OC,0.000436774 +WV,industrial fuel use,gas,gas,2025,OC,0.000431434 +WV,industrial fuel use,gas,gas,2030,OC,0.000454497 +WV,industrial fuel use,gas,gas,2035,OC,0.0005142 +WV,industrial fuel use,gas,gas,2040,OC,0.000542203 +WV,industrial fuel use,gas,gas,2045,OC,0.0005354 +WV,industrial fuel use,gas,gas,2050,OC,0.000552822 +WV,industrial fuel use,gas,gas,2055,OC,0.000563528 +WV,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +WV,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +WV,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +WV,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +WV,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +WV,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +WV,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +WV,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +WV,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +WV,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +WV,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +WV,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +WV,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +WV,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +WV,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +WV,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +WV,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +WV,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +WV,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +WV,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +WV,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +WV,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +WV,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +WV,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +WV,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +WV,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +WV,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +WV,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +WV,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +WV,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +WV,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +WV,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +WV,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +WV,industrial fuel use,coal,coal,2005,CO2,0.022413751 +WV,industrial fuel use,coal,coal,2010,CO2,0.023247485 +WV,industrial fuel use,coal,coal,2015,CO2,0.023542577 +WV,industrial fuel use,coal,coal,2020,CO2,0.022100946 +WV,industrial fuel use,coal,coal,2025,CO2,0.022682182 +WV,industrial fuel use,coal,coal,2030,CO2,0.023544891 +WV,industrial fuel use,coal,coal,2035,CO2,0.024022124 +WV,industrial fuel use,coal,coal,2040,CO2,0.024371859 +WV,industrial fuel use,coal,coal,2045,CO2,0.024626877 +WV,industrial fuel use,coal,coal,2050,CO2,0.024861999 +WV,industrial fuel use,coal,coal,2055,CO2,0.025047846 +WV,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +WV,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +WV,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +WV,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +WV,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +WV,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +WV,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +WV,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +WV,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +WV,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +WV,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +WV,industrial fuel use,gas,gas,2005,CO2,0.010100215 +WV,industrial fuel use,gas,gas,2010,CO2,0.008735772 +WV,industrial fuel use,gas,gas,2015,CO2,0.008975567 +WV,industrial fuel use,gas,gas,2020,CO2,0.009141549 +WV,industrial fuel use,gas,gas,2025,CO2,0.009319403 +WV,industrial fuel use,gas,gas,2030,CO2,0.009661635 +WV,industrial fuel use,gas,gas,2035,CO2,0.009858394 +WV,industrial fuel use,gas,gas,2040,CO2,0.010090146 +WV,industrial fuel use,gas,gas,2045,CO2,0.010177486 +WV,industrial fuel use,gas,gas,2050,CO2,0.010210503 +WV,industrial fuel use,gas,gas,2055,CO2,0.010168744 +WV,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +WV,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +WV,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +WV,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +WV,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +WV,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +WV,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +WV,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +WV,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +WV,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +WV,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +WV,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +WV,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +WV,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +WV,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +WV,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +WV,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +WV,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +WV,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +WV,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +WV,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +WV,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +WV,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +WV,industrial fuel use,biomass,biomass,2005,CO2,0 +WV,industrial fuel use,biomass,biomass,2010,CO2,0 +WV,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +WV,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +WV,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +WV,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +WV,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +WV,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +WV,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +WV,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +WV,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +WV,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +WV,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +WV,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +WV,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +WV,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +WV,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +WV,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +WV,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +WV,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +WV,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +WV,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 +WY,industrial fuel use,coal,coal,2005,NOx,0.261565752 +WY,industrial fuel use,coal,coal,2010,NOx,0.24128762 +WY,industrial fuel use,coal,coal,2015,NOx,0.247879608 +WY,industrial fuel use,coal,coal,2020,NOx,0.234312556 +WY,industrial fuel use,coal,coal,2025,NOx,0.240398293 +WY,industrial fuel use,coal,coal,2030,NOx,0.246677964 +WY,industrial fuel use,coal,coal,2035,NOx,0.250299201 +WY,industrial fuel use,coal,coal,2040,NOx,0.253554811 +WY,industrial fuel use,coal,coal,2045,NOx,0.255578056 +WY,industrial fuel use,coal,coal,2050,NOx,0.258549854 +WY,industrial fuel use,coal,coal,2055,NOx,0.26014596 +WY,industrial fuel use,coal,coal cogen,2005,NOx,0.261565752 +WY,industrial fuel use,coal,coal cogen,2010,NOx,0.24128762 +WY,industrial fuel use,coal,coal cogen,2015,NOx,0.247879608 +WY,industrial fuel use,coal,coal cogen,2020,NOx,0.234312556 +WY,industrial fuel use,coal,coal cogen,2025,NOx,0.240398293 +WY,industrial fuel use,coal,coal cogen,2030,NOx,0.246677964 +WY,industrial fuel use,coal,coal cogen,2035,NOx,0.250299201 +WY,industrial fuel use,coal,coal cogen,2040,NOx,0.253554811 +WY,industrial fuel use,coal,coal cogen,2045,NOx,0.255578056 +WY,industrial fuel use,coal,coal cogen,2050,NOx,0.258549854 +WY,industrial fuel use,coal,coal cogen,2055,NOx,0.26014596 +WY,industrial fuel use,gas,gas,2005,NOx,0.080919016 +WY,industrial fuel use,gas,gas,2010,NOx,0.044952568 +WY,industrial fuel use,gas,gas,2015,NOx,0.037239142 +WY,industrial fuel use,gas,gas,2020,NOx,0.040745965 +WY,industrial fuel use,gas,gas,2025,NOx,0.042574105 +WY,industrial fuel use,gas,gas,2030,NOx,0.045347383 +WY,industrial fuel use,gas,gas,2035,NOx,0.048574619 +WY,industrial fuel use,gas,gas,2040,NOx,0.050422899 +WY,industrial fuel use,gas,gas,2045,NOx,0.050680722 +WY,industrial fuel use,gas,gas,2050,NOx,0.0517343 +WY,industrial fuel use,gas,gas,2055,NOx,0.052443137 +WY,industrial fuel use,gas,gas cogen,2005,NOx,0.080919016 +WY,industrial fuel use,gas,gas cogen,2010,NOx,0.044952568 +WY,industrial fuel use,gas,gas cogen,2015,NOx,0.037239142 +WY,industrial fuel use,gas,gas cogen,2020,NOx,0.040745965 +WY,industrial fuel use,gas,gas cogen,2025,NOx,0.042574105 +WY,industrial fuel use,gas,gas cogen,2030,NOx,0.045347383 +WY,industrial fuel use,gas,gas cogen,2035,NOx,0.048574619 +WY,industrial fuel use,gas,gas cogen,2040,NOx,0.050422899 +WY,industrial fuel use,gas,gas cogen,2045,NOx,0.050680722 +WY,industrial fuel use,gas,gas cogen,2050,NOx,0.0517343 +WY,industrial fuel use,gas,gas cogen,2055,NOx,0.052443137 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,NOx,0.106478279 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,NOx,0.084533941 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,NOx,0.122125747 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,NOx,0.099602575 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,NOx,0.099883863 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,NOx,0.103820578 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,NOx,0.110247378 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,NOx,0.118612445 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,NOx,0.113739208 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,NOx,0.119924426 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,NOx,0.142152341 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NOx,0.106478279 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NOx,0.084533941 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NOx,0.122125747 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NOx,0.099602575 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NOx,0.099883863 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NOx,0.103820578 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NOx,0.110247378 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NOx,0.118612445 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NOx,0.113739208 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NOx,0.119924426 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NOx,0.142152341 +WY,industrial fuel use,biomass,biomass,2005,NOx,0.053534287 +WY,industrial fuel use,biomass,biomass,2010,NOx,0.039262579 +WY,industrial fuel use,biomass,biomass,2015,NOx,0.036282631 +WY,industrial fuel use,biomass,biomass,2020,NOx,0.034365052 +WY,industrial fuel use,biomass,biomass,2025,NOx,0.031459832 +WY,industrial fuel use,biomass,biomass,2030,NOx,0.029580451 +WY,industrial fuel use,biomass,biomass,2035,NOx,0.028030976 +WY,industrial fuel use,biomass,biomass,2040,NOx,0.026946029 +WY,industrial fuel use,biomass,biomass,2045,NOx,0.025829366 +WY,industrial fuel use,biomass,biomass,2050,NOx,0.025099994 +WY,industrial fuel use,biomass,biomass,2055,NOx,0.023618343 +WY,industrial fuel use,biomass,biomass cogen,2005,NOx,0.053534287 +WY,industrial fuel use,biomass,biomass cogen,2010,NOx,0.039262579 +WY,industrial fuel use,biomass,biomass cogen,2015,NOx,0.036282631 +WY,industrial fuel use,biomass,biomass cogen,2020,NOx,0.034365052 +WY,industrial fuel use,biomass,biomass cogen,2025,NOx,0.031459832 +WY,industrial fuel use,biomass,biomass cogen,2030,NOx,0.029580451 +WY,industrial fuel use,biomass,biomass cogen,2035,NOx,0.028030976 +WY,industrial fuel use,biomass,biomass cogen,2040,NOx,0.026946029 +WY,industrial fuel use,biomass,biomass cogen,2045,NOx,0.025829366 +WY,industrial fuel use,biomass,biomass cogen,2050,NOx,0.025099994 +WY,industrial fuel use,biomass,biomass cogen,2055,NOx,0.023618343 +WY,industrial fuel use,coal,coal,2005,SO2,0.709862367 +WY,industrial fuel use,coal,coal,2010,SO2,0.679592789 +WY,industrial fuel use,coal,coal,2015,SO2,0.590904591 +WY,industrial fuel use,coal,coal,2020,SO2,0.549595621 +WY,industrial fuel use,coal,coal,2025,SO2,0.56430149 +WY,industrial fuel use,coal,coal,2030,SO2,0.576548046 +WY,industrial fuel use,coal,coal,2035,SO2,0.583595424 +WY,industrial fuel use,coal,coal,2040,SO2,0.590805881 +WY,industrial fuel use,coal,coal,2045,SO2,0.596410723 +WY,industrial fuel use,coal,coal,2050,SO2,0.606154195 +WY,industrial fuel use,coal,coal,2055,SO2,0.611234923 +WY,industrial fuel use,coal,coal cogen,2005,SO2,0.709862367 +WY,industrial fuel use,coal,coal cogen,2010,SO2,0.679592789 +WY,industrial fuel use,coal,coal cogen,2015,SO2,0.590904591 +WY,industrial fuel use,coal,coal cogen,2020,SO2,0.549595621 +WY,industrial fuel use,coal,coal cogen,2025,SO2,0.56430149 +WY,industrial fuel use,coal,coal cogen,2030,SO2,0.576548046 +WY,industrial fuel use,coal,coal cogen,2035,SO2,0.583595424 +WY,industrial fuel use,coal,coal cogen,2040,SO2,0.590805881 +WY,industrial fuel use,coal,coal cogen,2045,SO2,0.596410723 +WY,industrial fuel use,coal,coal cogen,2050,SO2,0.606154195 +WY,industrial fuel use,coal,coal cogen,2055,SO2,0.611234923 +WY,industrial fuel use,gas,gas,2005,SO2,0.000213988 +WY,industrial fuel use,gas,gas,2010,SO2,0.002761946 +WY,industrial fuel use,gas,gas,2015,SO2,0.002854723 +WY,industrial fuel use,gas,gas,2020,SO2,0.002771127 +WY,industrial fuel use,gas,gas,2025,SO2,0.002798763 +WY,industrial fuel use,gas,gas,2030,SO2,0.002938075 +WY,industrial fuel use,gas,gas,2035,SO2,0.003016098 +WY,industrial fuel use,gas,gas,2040,SO2,0.003118901 +WY,industrial fuel use,gas,gas,2045,SO2,0.00311325 +WY,industrial fuel use,gas,gas,2050,SO2,0.003090451 +WY,industrial fuel use,gas,gas,2055,SO2,0.003025213 +WY,industrial fuel use,gas,gas cogen,2005,SO2,0.000213988 +WY,industrial fuel use,gas,gas cogen,2010,SO2,0.002761946 +WY,industrial fuel use,gas,gas cogen,2015,SO2,0.002854723 +WY,industrial fuel use,gas,gas cogen,2020,SO2,0.002771127 +WY,industrial fuel use,gas,gas cogen,2025,SO2,0.002798763 +WY,industrial fuel use,gas,gas cogen,2030,SO2,0.002938075 +WY,industrial fuel use,gas,gas cogen,2035,SO2,0.003016098 +WY,industrial fuel use,gas,gas cogen,2040,SO2,0.003118901 +WY,industrial fuel use,gas,gas cogen,2045,SO2,0.00311325 +WY,industrial fuel use,gas,gas cogen,2050,SO2,0.003090451 +WY,industrial fuel use,gas,gas cogen,2055,SO2,0.003025213 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,SO2,0.074354348 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,SO2,0.05577291 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,SO2,0.108171466 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,SO2,0.085765925 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,SO2,0.086051899 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,SO2,0.087052124 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,SO2,0.092889725 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,SO2,0.101337111 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,SO2,0.0992303 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,SO2,0.105851024 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,SO2,0.130017179 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,SO2,0.074354348 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,SO2,0.05577291 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,SO2,0.108171466 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,SO2,0.085765925 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,SO2,0.086051899 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,SO2,0.087052124 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,SO2,0.092889725 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,SO2,0.101337111 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,SO2,0.0992303 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,SO2,0.105851024 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,SO2,0.130017179 +WY,industrial fuel use,biomass,biomass,2005,SO2,0.006849688 +WY,industrial fuel use,biomass,biomass,2010,SO2,0.005812341 +WY,industrial fuel use,biomass,biomass,2015,SO2,0.005070281 +WY,industrial fuel use,biomass,biomass,2020,SO2,0.005176373 +WY,industrial fuel use,biomass,biomass,2025,SO2,0.005205835 +WY,industrial fuel use,biomass,biomass,2030,SO2,0.0051985 +WY,industrial fuel use,biomass,biomass,2035,SO2,0.005184311 +WY,industrial fuel use,biomass,biomass,2040,SO2,0.005259589 +WY,industrial fuel use,biomass,biomass,2045,SO2,0.005213556 +WY,industrial fuel use,biomass,biomass,2050,SO2,0.005181054 +WY,industrial fuel use,biomass,biomass,2055,SO2,0.005134422 +WY,industrial fuel use,biomass,biomass cogen,2005,SO2,0.006849688 +WY,industrial fuel use,biomass,biomass cogen,2010,SO2,0.005812341 +WY,industrial fuel use,biomass,biomass cogen,2015,SO2,0.005070281 +WY,industrial fuel use,biomass,biomass cogen,2020,SO2,0.005176373 +WY,industrial fuel use,biomass,biomass cogen,2025,SO2,0.005205835 +WY,industrial fuel use,biomass,biomass cogen,2030,SO2,0.0051985 +WY,industrial fuel use,biomass,biomass cogen,2035,SO2,0.005184311 +WY,industrial fuel use,biomass,biomass cogen,2040,SO2,0.005259589 +WY,industrial fuel use,biomass,biomass cogen,2045,SO2,0.005213556 +WY,industrial fuel use,biomass,biomass cogen,2050,SO2,0.005181054 +WY,industrial fuel use,biomass,biomass cogen,2055,SO2,0.005134422 +WY,industrial fuel use,coal,coal,2005,PM10,0.136452905 +WY,industrial fuel use,coal,coal,2010,PM10,0.093662835 +WY,industrial fuel use,coal,coal,2015,PM10,0.100887759 +WY,industrial fuel use,coal,coal,2020,PM10,0.094503476 +WY,industrial fuel use,coal,coal,2025,PM10,0.09752377 +WY,industrial fuel use,coal,coal,2030,PM10,0.099823133 +WY,industrial fuel use,coal,coal,2035,PM10,0.101097535 +WY,industrial fuel use,coal,coal,2040,PM10,0.102438117 +WY,industrial fuel use,coal,coal,2045,PM10,0.103553978 +WY,industrial fuel use,coal,coal,2050,PM10,0.105393893 +WY,industrial fuel use,coal,coal,2055,PM10,0.106304221 +WY,industrial fuel use,coal,coal cogen,2005,PM10,0.136452905 +WY,industrial fuel use,coal,coal cogen,2010,PM10,0.093662835 +WY,industrial fuel use,coal,coal cogen,2015,PM10,0.100887759 +WY,industrial fuel use,coal,coal cogen,2020,PM10,0.094503476 +WY,industrial fuel use,coal,coal cogen,2025,PM10,0.09752377 +WY,industrial fuel use,coal,coal cogen,2030,PM10,0.099823133 +WY,industrial fuel use,coal,coal cogen,2035,PM10,0.101097535 +WY,industrial fuel use,coal,coal cogen,2040,PM10,0.102438117 +WY,industrial fuel use,coal,coal cogen,2045,PM10,0.103553978 +WY,industrial fuel use,coal,coal cogen,2050,PM10,0.105393893 +WY,industrial fuel use,coal,coal cogen,2055,PM10,0.106304221 +WY,industrial fuel use,gas,gas,2005,PM10,0.002144603 +WY,industrial fuel use,gas,gas,2010,PM10,0.004157892 +WY,industrial fuel use,gas,gas,2015,PM10,0.004308637 +WY,industrial fuel use,gas,gas,2020,PM10,0.004261296 +WY,industrial fuel use,gas,gas,2025,PM10,0.004334357 +WY,industrial fuel use,gas,gas,2030,PM10,0.00454497 +WY,industrial fuel use,gas,gas,2035,PM10,0.004581054 +WY,industrial fuel use,gas,gas,2040,PM10,0.004690204 +WY,industrial fuel use,gas,gas,2045,PM10,0.004695842 +WY,industrial fuel use,gas,gas,2050,PM10,0.004649052 +WY,industrial fuel use,gas,gas,2055,PM10,0.00454824 +WY,industrial fuel use,gas,gas cogen,2005,PM10,0.002144603 +WY,industrial fuel use,gas,gas cogen,2010,PM10,0.004157892 +WY,industrial fuel use,gas,gas cogen,2015,PM10,0.004308637 +WY,industrial fuel use,gas,gas cogen,2020,PM10,0.004261296 +WY,industrial fuel use,gas,gas cogen,2025,PM10,0.004334357 +WY,industrial fuel use,gas,gas cogen,2030,PM10,0.00454497 +WY,industrial fuel use,gas,gas cogen,2035,PM10,0.004581054 +WY,industrial fuel use,gas,gas cogen,2040,PM10,0.004690204 +WY,industrial fuel use,gas,gas cogen,2045,PM10,0.004695842 +WY,industrial fuel use,gas,gas cogen,2050,PM10,0.004649052 +WY,industrial fuel use,gas,gas cogen,2055,PM10,0.00454824 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,PM10,0.016924975 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,PM10,0.021964332 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,PM10,0.033128528 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,PM10,0.028422216 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,PM10,0.028975845 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,PM10,0.032239999 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,PM10,0.031841319 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,PM10,0.03419888 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,PM10,0.033712142 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,PM10,0.035668487 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,PM10,0.040490033 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM10,0.016924975 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM10,0.021964332 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM10,0.033128528 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM10,0.028422216 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM10,0.028975845 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM10,0.032239999 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM10,0.031841319 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM10,0.03419888 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM10,0.033712142 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM10,0.035668487 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM10,0.040490033 +WY,industrial fuel use,biomass,biomass,2005,PM10,0.009370678 +WY,industrial fuel use,biomass,biomass,2010,PM10,0.006416381 +WY,industrial fuel use,biomass,biomass,2015,PM10,0.004731426 +WY,industrial fuel use,biomass,biomass,2020,PM10,0.00413773 +WY,industrial fuel use,biomass,biomass,2025,PM10,0.00358713 +WY,industrial fuel use,biomass,biomass,2030,PM10,0.003216628 +WY,industrial fuel use,biomass,biomass,2035,PM10,0.002977531 +WY,industrial fuel use,biomass,biomass,2040,PM10,0.002884533 +WY,industrial fuel use,biomass,biomass,2045,PM10,0.002629568 +WY,industrial fuel use,biomass,biomass,2050,PM10,0.002518984 +WY,industrial fuel use,biomass,biomass,2055,PM10,0.002272396 +WY,industrial fuel use,biomass,biomass cogen,2005,PM10,0.009370678 +WY,industrial fuel use,biomass,biomass cogen,2010,PM10,0.006416381 +WY,industrial fuel use,biomass,biomass cogen,2015,PM10,0.004731426 +WY,industrial fuel use,biomass,biomass cogen,2020,PM10,0.00413773 +WY,industrial fuel use,biomass,biomass cogen,2025,PM10,0.00358713 +WY,industrial fuel use,biomass,biomass cogen,2030,PM10,0.003216628 +WY,industrial fuel use,biomass,biomass cogen,2035,PM10,0.002977531 +WY,industrial fuel use,biomass,biomass cogen,2040,PM10,0.002884533 +WY,industrial fuel use,biomass,biomass cogen,2045,PM10,0.002629568 +WY,industrial fuel use,biomass,biomass cogen,2050,PM10,0.002518984 +WY,industrial fuel use,biomass,biomass cogen,2055,PM10,0.002272396 +WY,industrial fuel use,coal,coal,2005,PM2.5,0.052305231 +WY,industrial fuel use,coal,coal,2010,PM2.5,0.039668327 +WY,industrial fuel use,coal,coal,2015,PM2.5,0.041164758 +WY,industrial fuel use,coal,coal,2020,PM2.5,0.038515446 +WY,industrial fuel use,coal,coal,2025,PM2.5,0.039801228 +WY,industrial fuel use,coal,coal,2030,PM2.5,0.040744136 +WY,industrial fuel use,coal,coal,2035,PM2.5,0.041303682 +WY,industrial fuel use,coal,coal,2040,PM2.5,0.041885353 +WY,industrial fuel use,coal,coal,2045,PM2.5,0.042376502 +WY,industrial fuel use,coal,coal,2050,PM2.5,0.043171923 +WY,industrial fuel use,coal,coal,2055,PM2.5,0.043596782 +WY,industrial fuel use,coal,coal cogen,2005,PM2.5,0.052305231 +WY,industrial fuel use,coal,coal cogen,2010,PM2.5,0.039668327 +WY,industrial fuel use,coal,coal cogen,2015,PM2.5,0.041164758 +WY,industrial fuel use,coal,coal cogen,2020,PM2.5,0.038515446 +WY,industrial fuel use,coal,coal cogen,2025,PM2.5,0.039801228 +WY,industrial fuel use,coal,coal cogen,2030,PM2.5,0.040744136 +WY,industrial fuel use,coal,coal cogen,2035,PM2.5,0.041303682 +WY,industrial fuel use,coal,coal cogen,2040,PM2.5,0.041885353 +WY,industrial fuel use,coal,coal cogen,2045,PM2.5,0.042376502 +WY,industrial fuel use,coal,coal cogen,2050,PM2.5,0.043171923 +WY,industrial fuel use,coal,coal cogen,2055,PM2.5,0.043596782 +WY,industrial fuel use,gas,gas,2005,PM2.5,0.002144603 +WY,industrial fuel use,gas,gas,2010,PM2.5,0.004165021 +WY,industrial fuel use,gas,gas,2015,PM2.5,0.004317249 +WY,industrial fuel use,gas,gas,2020,PM2.5,0.004268637 +WY,industrial fuel use,gas,gas,2025,PM2.5,0.004343253 +WY,industrial fuel use,gas,gas,2030,PM2.5,0.004553586 +WY,industrial fuel use,gas,gas,2035,PM2.5,0.004587151 +WY,industrial fuel use,gas,gas,2040,PM2.5,0.004698105 +WY,industrial fuel use,gas,gas,2045,PM2.5,0.004703396 +WY,industrial fuel use,gas,gas,2050,PM2.5,0.004657077 +WY,industrial fuel use,gas,gas,2055,PM2.5,0.004554075 +WY,industrial fuel use,gas,gas cogen,2005,PM2.5,0.002144603 +WY,industrial fuel use,gas,gas cogen,2010,PM2.5,0.004165021 +WY,industrial fuel use,gas,gas cogen,2015,PM2.5,0.004317249 +WY,industrial fuel use,gas,gas cogen,2020,PM2.5,0.004268637 +WY,industrial fuel use,gas,gas cogen,2025,PM2.5,0.004343253 +WY,industrial fuel use,gas,gas cogen,2030,PM2.5,0.004553586 +WY,industrial fuel use,gas,gas cogen,2035,PM2.5,0.004587151 +WY,industrial fuel use,gas,gas cogen,2040,PM2.5,0.004698105 +WY,industrial fuel use,gas,gas cogen,2045,PM2.5,0.004703396 +WY,industrial fuel use,gas,gas cogen,2050,PM2.5,0.004657077 +WY,industrial fuel use,gas,gas cogen,2055,PM2.5,0.004554075 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,PM2.5,0.008811971 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,PM2.5,0.016206414 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,PM2.5,0.020860025 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,PM2.5,0.019075737 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,PM2.5,0.01965417 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,PM2.5,0.023255951 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,PM2.5,0.021820786 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,PM2.5,0.023167794 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,PM2.5,0.022985277 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,PM2.5,0.024174713 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,PM2.5,0.025793567 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,PM2.5,0.008811971 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,PM2.5,0.016206414 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,PM2.5,0.020860025 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,PM2.5,0.019075737 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,PM2.5,0.01965417 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,PM2.5,0.023255951 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,PM2.5,0.021820786 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,PM2.5,0.023167794 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,PM2.5,0.022985277 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,PM2.5,0.024174713 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,PM2.5,0.025793567 +WY,industrial fuel use,biomass,biomass,2005,PM2.5,0.004682617 +WY,industrial fuel use,biomass,biomass,2010,PM2.5,0.002970889 +WY,industrial fuel use,biomass,biomass,2015,PM2.5,0.002422189 +WY,industrial fuel use,biomass,biomass,2020,PM2.5,0.002094129 +WY,industrial fuel use,biomass,biomass,2025,PM2.5,0.001813549 +WY,industrial fuel use,biomass,biomass,2030,PM2.5,0.00163292 +WY,industrial fuel use,biomass,biomass,2035,PM2.5,0.001513105 +WY,industrial fuel use,biomass,biomass,2040,PM2.5,0.001457251 +WY,industrial fuel use,biomass,biomass,2045,PM2.5,0.00133582 +WY,industrial fuel use,biomass,biomass,2050,PM2.5,0.001277794 +WY,industrial fuel use,biomass,biomass,2055,PM2.5,0.001152761 +WY,industrial fuel use,biomass,biomass cogen,2005,PM2.5,0.004682617 +WY,industrial fuel use,biomass,biomass cogen,2010,PM2.5,0.002970889 +WY,industrial fuel use,biomass,biomass cogen,2015,PM2.5,0.002422189 +WY,industrial fuel use,biomass,biomass cogen,2020,PM2.5,0.002094129 +WY,industrial fuel use,biomass,biomass cogen,2025,PM2.5,0.001813549 +WY,industrial fuel use,biomass,biomass cogen,2030,PM2.5,0.00163292 +WY,industrial fuel use,biomass,biomass cogen,2035,PM2.5,0.001513105 +WY,industrial fuel use,biomass,biomass cogen,2040,PM2.5,0.001457251 +WY,industrial fuel use,biomass,biomass cogen,2045,PM2.5,0.00133582 +WY,industrial fuel use,biomass,biomass cogen,2050,PM2.5,0.001277794 +WY,industrial fuel use,biomass,biomass cogen,2055,PM2.5,0.001152761 +WY,industrial fuel use,coal,coal,2005,NMVOC,0.001116584 +WY,industrial fuel use,coal,coal,2010,NMVOC,0.003353629 +WY,industrial fuel use,coal,coal,2015,NMVOC,0.003377226 +WY,industrial fuel use,coal,coal,2020,NMVOC,0.003200939 +WY,industrial fuel use,coal,coal,2025,NMVOC,0.003434529 +WY,industrial fuel use,coal,coal,2030,NMVOC,0.003592892 +WY,industrial fuel use,coal,coal,2035,NMVOC,0.003729578 +WY,industrial fuel use,coal,coal,2040,NMVOC,0.003843291 +WY,industrial fuel use,coal,coal,2045,NMVOC,0.003947833 +WY,industrial fuel use,coal,coal,2050,NMVOC,0.004099019 +WY,industrial fuel use,coal,coal,2055,NMVOC,0.004208553 +WY,industrial fuel use,coal,coal cogen,2005,NMVOC,0.001116584 +WY,industrial fuel use,coal,coal cogen,2010,NMVOC,0.003353629 +WY,industrial fuel use,coal,coal cogen,2015,NMVOC,0.003377226 +WY,industrial fuel use,coal,coal cogen,2020,NMVOC,0.003200939 +WY,industrial fuel use,coal,coal cogen,2025,NMVOC,0.003434529 +WY,industrial fuel use,coal,coal cogen,2030,NMVOC,0.003592892 +WY,industrial fuel use,coal,coal cogen,2035,NMVOC,0.003729578 +WY,industrial fuel use,coal,coal cogen,2040,NMVOC,0.003843291 +WY,industrial fuel use,coal,coal cogen,2045,NMVOC,0.003947833 +WY,industrial fuel use,coal,coal cogen,2050,NMVOC,0.004099019 +WY,industrial fuel use,coal,coal cogen,2055,NMVOC,0.004208553 +WY,industrial fuel use,gas,gas,2005,NMVOC,0.002297226 +WY,industrial fuel use,gas,gas,2010,NMVOC,0.004284796 +WY,industrial fuel use,gas,gas,2015,NMVOC,0.003812039 +WY,industrial fuel use,gas,gas,2020,NMVOC,0.004054532 +WY,industrial fuel use,gas,gas,2025,NMVOC,0.004297663 +WY,industrial fuel use,gas,gas,2030,NMVOC,0.004688212 +WY,industrial fuel use,gas,gas,2035,NMVOC,0.004650156 +WY,industrial fuel use,gas,gas,2040,NMVOC,0.004729708 +WY,industrial fuel use,gas,gas,2045,NMVOC,0.004728891 +WY,industrial fuel use,gas,gas,2050,NMVOC,0.004633002 +WY,industrial fuel use,gas,gas,2055,NMVOC,0.004483217 +WY,industrial fuel use,gas,gas cogen,2005,NMVOC,0.002297226 +WY,industrial fuel use,gas,gas cogen,2010,NMVOC,0.004284796 +WY,industrial fuel use,gas,gas cogen,2015,NMVOC,0.003812039 +WY,industrial fuel use,gas,gas cogen,2020,NMVOC,0.004054532 +WY,industrial fuel use,gas,gas cogen,2025,NMVOC,0.004297663 +WY,industrial fuel use,gas,gas cogen,2030,NMVOC,0.004688212 +WY,industrial fuel use,gas,gas cogen,2035,NMVOC,0.004650156 +WY,industrial fuel use,gas,gas cogen,2040,NMVOC,0.004729708 +WY,industrial fuel use,gas,gas cogen,2045,NMVOC,0.004728891 +WY,industrial fuel use,gas,gas cogen,2050,NMVOC,0.004633002 +WY,industrial fuel use,gas,gas cogen,2055,NMVOC,0.004483217 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,NMVOC,0.001726019 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,NMVOC,0.011472999 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,NMVOC,0.012506495 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,NMVOC,0.012545185 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,NMVOC,0.013082297 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,NMVOC,0.016859828 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,NMVOC,0.014760306 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,NMVOC,0.015497545 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,NMVOC,0.01553296 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,NMVOC,0.016239456 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,NMVOC,0.015889672 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,NMVOC,0.001726019 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,NMVOC,0.011472999 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,NMVOC,0.012506495 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,NMVOC,0.012545185 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,NMVOC,0.013082297 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,NMVOC,0.016859828 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,NMVOC,0.014760306 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,NMVOC,0.015497545 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,NMVOC,0.01553296 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,NMVOC,0.016239456 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,NMVOC,0.015889672 +WY,industrial fuel use,biomass,biomass,2005,NMVOC,0.004415816 +WY,industrial fuel use,biomass,biomass,2010,NMVOC,0.003704366 +WY,industrial fuel use,biomass,biomass,2015,NMVOC,0.003143825 +WY,industrial fuel use,biomass,biomass,2020,NMVOC,0.002795915 +WY,industrial fuel use,biomass,biomass,2025,NMVOC,0.002483014 +WY,industrial fuel use,biomass,biomass,2030,NMVOC,0.002281614 +WY,industrial fuel use,biomass,biomass,2035,NMVOC,0.002154045 +WY,industrial fuel use,biomass,biomass,2040,NMVOC,0.002067873 +WY,industrial fuel use,biomass,biomass,2045,NMVOC,0.001921337 +WY,industrial fuel use,biomass,biomass,2050,NMVOC,0.001843484 +WY,industrial fuel use,biomass,biomass,2055,NMVOC,0.001699328 +WY,industrial fuel use,biomass,biomass cogen,2005,NMVOC,0.004415816 +WY,industrial fuel use,biomass,biomass cogen,2010,NMVOC,0.003704366 +WY,industrial fuel use,biomass,biomass cogen,2015,NMVOC,0.003143825 +WY,industrial fuel use,biomass,biomass cogen,2020,NMVOC,0.002795915 +WY,industrial fuel use,biomass,biomass cogen,2025,NMVOC,0.002483014 +WY,industrial fuel use,biomass,biomass cogen,2030,NMVOC,0.002281614 +WY,industrial fuel use,biomass,biomass cogen,2035,NMVOC,0.002154045 +WY,industrial fuel use,biomass,biomass cogen,2040,NMVOC,0.002067873 +WY,industrial fuel use,biomass,biomass cogen,2045,NMVOC,0.001921337 +WY,industrial fuel use,biomass,biomass cogen,2050,NMVOC,0.001843484 +WY,industrial fuel use,biomass,biomass cogen,2055,NMVOC,0.001699328 +WY,industrial fuel use,coal,coal,2005,CO,0.069434106 +WY,industrial fuel use,coal,coal,2010,CO,0.07723114 +WY,industrial fuel use,coal,coal,2015,CO,0.068281575 +WY,industrial fuel use,coal,coal,2020,CO,0.063753622 +WY,industrial fuel use,coal,coal,2025,CO,0.065761399 +WY,industrial fuel use,coal,coal,2030,CO,0.067959367 +WY,industrial fuel use,coal,coal,2035,CO,0.069173462 +WY,industrial fuel use,coal,coal,2040,CO,0.070202866 +WY,industrial fuel use,coal,coal,2045,CO,0.071098148 +WY,industrial fuel use,coal,coal,2050,CO,0.072063393 +WY,industrial fuel use,coal,coal,2055,CO,0.072511454 +WY,industrial fuel use,coal,coal cogen,2005,CO,0.069434106 +WY,industrial fuel use,coal,coal cogen,2010,CO,0.07723114 +WY,industrial fuel use,coal,coal cogen,2015,CO,0.068281575 +WY,industrial fuel use,coal,coal cogen,2020,CO,0.063753622 +WY,industrial fuel use,coal,coal cogen,2025,CO,0.065761399 +WY,industrial fuel use,coal,coal cogen,2030,CO,0.067959367 +WY,industrial fuel use,coal,coal cogen,2035,CO,0.069173462 +WY,industrial fuel use,coal,coal cogen,2040,CO,0.070202866 +WY,industrial fuel use,coal,coal cogen,2045,CO,0.071098148 +WY,industrial fuel use,coal,coal cogen,2050,CO,0.072063393 +WY,industrial fuel use,coal,coal cogen,2055,CO,0.072511454 +WY,industrial fuel use,gas,gas,2005,CO,0.054958784 +WY,industrial fuel use,gas,gas,2010,CO,0.041119779 +WY,industrial fuel use,gas,gas,2015,CO,0.037376927 +WY,industrial fuel use,gas,gas,2020,CO,0.042196984 +WY,industrial fuel use,gas,gas,2025,CO,0.046340259 +WY,industrial fuel use,gas,gas,2030,CO,0.051044751 +WY,industrial fuel use,gas,gas,2035,CO,0.048377476 +WY,industrial fuel use,gas,gas,2040,CO,0.04844371 +WY,industrial fuel use,gas,gas,2045,CO,0.049325699 +WY,industrial fuel use,gas,gas,2050,CO,0.048085677 +WY,industrial fuel use,gas,gas,2055,CO,0.046506083 +WY,industrial fuel use,gas,gas cogen,2005,CO,0.054958784 +WY,industrial fuel use,gas,gas cogen,2010,CO,0.041119779 +WY,industrial fuel use,gas,gas cogen,2015,CO,0.037376927 +WY,industrial fuel use,gas,gas cogen,2020,CO,0.042196984 +WY,industrial fuel use,gas,gas cogen,2025,CO,0.046340259 +WY,industrial fuel use,gas,gas cogen,2030,CO,0.051044751 +WY,industrial fuel use,gas,gas cogen,2035,CO,0.048377476 +WY,industrial fuel use,gas,gas cogen,2040,CO,0.04844371 +WY,industrial fuel use,gas,gas cogen,2045,CO,0.049325699 +WY,industrial fuel use,gas,gas cogen,2050,CO,0.048085677 +WY,industrial fuel use,gas,gas cogen,2055,CO,0.046506083 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,CO,0.015462851 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,CO,0.024191821 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,CO,0.024584604 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,CO,0.023362868 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,CO,0.023491603 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,CO,0.027388377 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,CO,0.025500105 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,CO,0.026154856 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,CO,0.024528906 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,CO,0.024906648 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,CO,0.024388799 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO,0.015462851 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO,0.024191821 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO,0.024584604 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO,0.023362868 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO,0.023491603 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO,0.027388377 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO,0.025500105 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO,0.026154856 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO,0.024528906 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO,0.024906648 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO,0.024388799 +WY,industrial fuel use,biomass,biomass,2005,CO,0.095236799 +WY,industrial fuel use,biomass,biomass,2010,CO,0.080799551 +WY,industrial fuel use,biomass,biomass,2015,CO,0.062054468 +WY,industrial fuel use,biomass,biomass,2020,CO,0.078639321 +WY,industrial fuel use,biomass,biomass,2025,CO,0.08416267 +WY,industrial fuel use,biomass,biomass,2030,CO,0.08741265 +WY,industrial fuel use,biomass,biomass,2035,CO,0.088904033 +WY,industrial fuel use,biomass,biomass,2040,CO,0.090450699 +WY,industrial fuel use,biomass,biomass,2045,CO,0.092403004 +WY,industrial fuel use,biomass,biomass,2050,CO,0.092996093 +WY,industrial fuel use,biomass,biomass,2055,CO,0.091780286 +WY,industrial fuel use,biomass,biomass cogen,2005,CO,0.095236799 +WY,industrial fuel use,biomass,biomass cogen,2010,CO,0.080799551 +WY,industrial fuel use,biomass,biomass cogen,2015,CO,0.062054468 +WY,industrial fuel use,biomass,biomass cogen,2020,CO,0.078639321 +WY,industrial fuel use,biomass,biomass cogen,2025,CO,0.08416267 +WY,industrial fuel use,biomass,biomass cogen,2030,CO,0.08741265 +WY,industrial fuel use,biomass,biomass cogen,2035,CO,0.088904033 +WY,industrial fuel use,biomass,biomass cogen,2040,CO,0.090450699 +WY,industrial fuel use,biomass,biomass cogen,2045,CO,0.092403004 +WY,industrial fuel use,biomass,biomass cogen,2050,CO,0.092996093 +WY,industrial fuel use,biomass,biomass cogen,2055,CO,0.091780286 +WY,industrial fuel use,coal,coal,2005,CH4,0.008615911 +WY,industrial fuel use,coal,coal,2010,CH4,0.007087118 +WY,industrial fuel use,coal,coal,2015,CH4,0.007645512 +WY,industrial fuel use,coal,coal,2020,CH4,0.007093206 +WY,industrial fuel use,coal,coal,2025,CH4,0.007280827 +WY,industrial fuel use,coal,coal,2030,CH4,0.007426545 +WY,industrial fuel use,coal,coal,2035,CH4,0.007524098 +WY,industrial fuel use,coal,coal,2040,CH4,0.007621441 +WY,industrial fuel use,coal,coal,2045,CH4,0.007691307 +WY,industrial fuel use,coal,coal,2050,CH4,0.007801358 +WY,industrial fuel use,coal,coal,2055,CH4,0.007871907 +WY,industrial fuel use,coal,coal cogen,2005,CH4,0.008615911 +WY,industrial fuel use,coal,coal cogen,2010,CH4,0.007087118 +WY,industrial fuel use,coal,coal cogen,2015,CH4,0.007645512 +WY,industrial fuel use,coal,coal cogen,2020,CH4,0.007093206 +WY,industrial fuel use,coal,coal cogen,2025,CH4,0.007280827 +WY,industrial fuel use,coal,coal cogen,2030,CH4,0.007426545 +WY,industrial fuel use,coal,coal cogen,2035,CH4,0.007524098 +WY,industrial fuel use,coal,coal cogen,2040,CH4,0.007621441 +WY,industrial fuel use,coal,coal cogen,2045,CH4,0.007691307 +WY,industrial fuel use,coal,coal cogen,2050,CH4,0.007801358 +WY,industrial fuel use,coal,coal cogen,2055,CH4,0.007871907 +WY,industrial fuel use,gas,gas,2005,CH4,0.002575726 +WY,industrial fuel use,gas,gas,2010,CH4,0.0036902 +WY,industrial fuel use,gas,gas,2015,CH4,0.001847174 +WY,industrial fuel use,gas,gas,2020,CH4,0.002575374 +WY,industrial fuel use,gas,gas,2025,CH4,0.002470739 +WY,industrial fuel use,gas,gas,2030,CH4,0.002514812 +WY,industrial fuel use,gas,gas,2035,CH4,0.004402202 +WY,industrial fuel use,gas,gas,2040,CH4,0.005194877 +WY,industrial fuel use,gas,gas,2045,CH4,0.005264291 +WY,industrial fuel use,gas,gas,2050,CH4,0.006086388 +WY,industrial fuel use,gas,gas,2055,CH4,0.006850703 +WY,industrial fuel use,gas,gas cogen,2005,CH4,0.002575726 +WY,industrial fuel use,gas,gas cogen,2010,CH4,0.0036902 +WY,industrial fuel use,gas,gas cogen,2015,CH4,0.001847174 +WY,industrial fuel use,gas,gas cogen,2020,CH4,0.002575374 +WY,industrial fuel use,gas,gas cogen,2025,CH4,0.002470739 +WY,industrial fuel use,gas,gas cogen,2030,CH4,0.002514812 +WY,industrial fuel use,gas,gas cogen,2035,CH4,0.004402202 +WY,industrial fuel use,gas,gas cogen,2040,CH4,0.005194877 +WY,industrial fuel use,gas,gas cogen,2045,CH4,0.005264291 +WY,industrial fuel use,gas,gas cogen,2050,CH4,0.006086388 +WY,industrial fuel use,gas,gas cogen,2055,CH4,0.006850703 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,CH4,0.001323044 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,CH4,0.000967387 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,CH4,0.001713545 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,CH4,0.001374678 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,CH4,0.001364147 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,CH4,0.001335228 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,CH4,0.001432383 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,CH4,0.001529652 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,CH4,0.001449985 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,CH4,0.001526354 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,CH4,0.001833532 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CH4,0.001323044 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CH4,0.000967387 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CH4,0.001713545 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CH4,0.001374678 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CH4,0.001364147 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CH4,0.001335228 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CH4,0.001432383 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CH4,0.001529652 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CH4,0.001449985 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CH4,0.001526354 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CH4,0.001833532 +WY,industrial fuel use,biomass,biomass,2005,CH4,0.002700672 +WY,industrial fuel use,biomass,biomass,2010,CH4,0.001787464 +WY,industrial fuel use,biomass,biomass,2015,CH4,0.001418173 +WY,industrial fuel use,biomass,biomass,2020,CH4,0.002060443 +WY,industrial fuel use,biomass,biomass,2025,CH4,0.00241307 +WY,industrial fuel use,biomass,biomass,2030,CH4,0.00263504 +WY,industrial fuel use,biomass,biomass,2035,CH4,0.002794984 +WY,industrial fuel use,biomass,biomass,2040,CH4,0.002914502 +WY,industrial fuel use,biomass,biomass,2045,CH4,0.003036274 +WY,industrial fuel use,biomass,biomass,2050,CH4,0.003088001 +WY,industrial fuel use,biomass,biomass,2055,CH4,0.003067403 +WY,industrial fuel use,biomass,biomass cogen,2005,CH4,0.002700672 +WY,industrial fuel use,biomass,biomass cogen,2010,CH4,0.001787464 +WY,industrial fuel use,biomass,biomass cogen,2015,CH4,0.001418173 +WY,industrial fuel use,biomass,biomass cogen,2020,CH4,0.002060443 +WY,industrial fuel use,biomass,biomass cogen,2025,CH4,0.00241307 +WY,industrial fuel use,biomass,biomass cogen,2030,CH4,0.00263504 +WY,industrial fuel use,biomass,biomass cogen,2035,CH4,0.002794984 +WY,industrial fuel use,biomass,biomass cogen,2040,CH4,0.002914502 +WY,industrial fuel use,biomass,biomass cogen,2045,CH4,0.003036274 +WY,industrial fuel use,biomass,biomass cogen,2050,CH4,0.003088001 +WY,industrial fuel use,biomass,biomass cogen,2055,CH4,0.003067403 +WY,industrial fuel use,coal,coal,2005,N2O,0.002945881 +WY,industrial fuel use,coal,coal,2010,N2O,0.004699422 +WY,industrial fuel use,coal,coal,2015,N2O,0.003718249 +WY,industrial fuel use,coal,coal,2020,N2O,0.003503987 +WY,industrial fuel use,coal,coal,2025,N2O,0.003902448 +WY,industrial fuel use,coal,coal,2030,N2O,0.005231917 +WY,industrial fuel use,coal,coal,2035,N2O,0.005844861 +WY,industrial fuel use,coal,coal,2040,N2O,0.006123209 +WY,industrial fuel use,coal,coal,2045,N2O,0.006493024 +WY,industrial fuel use,coal,coal,2050,N2O,0.00643187 +WY,industrial fuel use,coal,coal,2055,N2O,0.006580646 +WY,industrial fuel use,coal,coal cogen,2005,N2O,0.002945881 +WY,industrial fuel use,coal,coal cogen,2010,N2O,0.004699422 +WY,industrial fuel use,coal,coal cogen,2015,N2O,0.003718249 +WY,industrial fuel use,coal,coal cogen,2020,N2O,0.003503987 +WY,industrial fuel use,coal,coal cogen,2025,N2O,0.003902448 +WY,industrial fuel use,coal,coal cogen,2030,N2O,0.005231917 +WY,industrial fuel use,coal,coal cogen,2035,N2O,0.005844861 +WY,industrial fuel use,coal,coal cogen,2040,N2O,0.006123209 +WY,industrial fuel use,coal,coal cogen,2045,N2O,0.006493024 +WY,industrial fuel use,coal,coal cogen,2050,N2O,0.00643187 +WY,industrial fuel use,coal,coal cogen,2055,N2O,0.006580646 +WY,industrial fuel use,gas,gas,2005,N2O,0.000509795 +WY,industrial fuel use,gas,gas,2010,N2O,0.000459136 +WY,industrial fuel use,gas,gas,2015,N2O,0.000457847 +WY,industrial fuel use,gas,gas,2020,N2O,0.000469807 +WY,industrial fuel use,gas,gas,2025,N2O,0.0004748 +WY,industrial fuel use,gas,gas,2030,N2O,0.000493269 +WY,industrial fuel use,gas,gas,2035,N2O,0.0005142 +WY,industrial fuel use,gas,gas,2040,N2O,0.000525413 +WY,industrial fuel use,gas,gas,2045,N2O,0.000530678 +WY,industrial fuel use,gas,gas,2050,N2O,0.000534097 +WY,industrial fuel use,gas,gas,2055,N2O,0.000535185 +WY,industrial fuel use,gas,gas cogen,2005,N2O,0.000509795 +WY,industrial fuel use,gas,gas cogen,2010,N2O,0.000459136 +WY,industrial fuel use,gas,gas cogen,2015,N2O,0.000457847 +WY,industrial fuel use,gas,gas cogen,2020,N2O,0.000469807 +WY,industrial fuel use,gas,gas cogen,2025,N2O,0.0004748 +WY,industrial fuel use,gas,gas cogen,2030,N2O,0.000493269 +WY,industrial fuel use,gas,gas cogen,2035,N2O,0.0005142 +WY,industrial fuel use,gas,gas cogen,2040,N2O,0.000525413 +WY,industrial fuel use,gas,gas cogen,2045,N2O,0.000530678 +WY,industrial fuel use,gas,gas cogen,2050,N2O,0.000534097 +WY,industrial fuel use,gas,gas cogen,2055,N2O,0.000535185 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,N2O,0.001205361 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,N2O,0.00093169 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,N2O,0.001178062 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,N2O,0.001101739 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,N2O,0.001087631 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,N2O,0.001190799 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,N2O,0.001164964 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,N2O,0.001209273 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,N2O,0.001159988 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,N2O,0.001205016 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,N2O,0.00124116 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,N2O,0.001205361 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,N2O,0.00093169 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,N2O,0.001178062 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,N2O,0.001101739 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,N2O,0.001087631 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,N2O,0.001190799 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,N2O,0.001164964 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,N2O,0.001209273 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,N2O,0.001159988 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,N2O,0.001205016 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,N2O,0.00124116 +WY,industrial fuel use,biomass,biomass,2005,N2O,0.004132681 +WY,industrial fuel use,biomass,biomass,2010,N2O,0.003463983 +WY,industrial fuel use,biomass,biomass,2015,N2O,0.003601908 +WY,industrial fuel use,biomass,biomass,2020,N2O,0.003722272 +WY,industrial fuel use,biomass,biomass,2025,N2O,0.003702038 +WY,industrial fuel use,biomass,biomass,2030,N2O,0.003641635 +WY,industrial fuel use,biomass,biomass,2035,N2O,0.003573848 +WY,industrial fuel use,biomass,biomass,2040,N2O,0.00352887 +WY,industrial fuel use,biomass,biomass,2045,N2O,0.003523621 +WY,industrial fuel use,biomass,biomass,2050,N2O,0.003493967 +WY,industrial fuel use,biomass,biomass,2055,N2O,0.003484782 +WY,industrial fuel use,biomass,biomass cogen,2005,N2O,0.004132681 +WY,industrial fuel use,biomass,biomass cogen,2010,N2O,0.003463983 +WY,industrial fuel use,biomass,biomass cogen,2015,N2O,0.003601908 +WY,industrial fuel use,biomass,biomass cogen,2020,N2O,0.003722272 +WY,industrial fuel use,biomass,biomass cogen,2025,N2O,0.003702038 +WY,industrial fuel use,biomass,biomass cogen,2030,N2O,0.003641635 +WY,industrial fuel use,biomass,biomass cogen,2035,N2O,0.003573848 +WY,industrial fuel use,biomass,biomass cogen,2040,N2O,0.00352887 +WY,industrial fuel use,biomass,biomass cogen,2045,N2O,0.003523621 +WY,industrial fuel use,biomass,biomass cogen,2050,N2O,0.003493967 +WY,industrial fuel use,biomass,biomass cogen,2055,N2O,0.003484782 +WY,industrial fuel use,coal,coal,2005,BC,0.052178527 +WY,industrial fuel use,coal,coal,2010,BC,0.054113893 +WY,industrial fuel use,coal,coal,2015,BC,0.054816673 +WY,industrial fuel use,coal,coal,2020,BC,0.051442317 +WY,industrial fuel use,coal,coal,2025,BC,0.05280003 +WY,industrial fuel use,coal,coal,2030,BC,0.054819383 +WY,industrial fuel use,coal,coal,2035,BC,0.055934389 +WY,industrial fuel use,coal,coal,2040,BC,0.056737391 +WY,industrial fuel use,coal,coal,2045,BC,0.057341111 +WY,industrial fuel use,coal,coal,2050,BC,0.057867944 +WY,industrial fuel use,coal,coal,2055,BC,0.058307588 +WY,industrial fuel use,coal,coal cogen,2005,BC,0.052178527 +WY,industrial fuel use,coal,coal cogen,2010,BC,0.054113893 +WY,industrial fuel use,coal,coal cogen,2015,BC,0.054816673 +WY,industrial fuel use,coal,coal cogen,2020,BC,0.051442317 +WY,industrial fuel use,coal,coal cogen,2025,BC,0.05280003 +WY,industrial fuel use,coal,coal cogen,2030,BC,0.054819383 +WY,industrial fuel use,coal,coal cogen,2035,BC,0.055934389 +WY,industrial fuel use,coal,coal cogen,2040,BC,0.056737391 +WY,industrial fuel use,coal,coal cogen,2045,BC,0.057341111 +WY,industrial fuel use,coal,coal cogen,2050,BC,0.057867944 +WY,industrial fuel use,coal,coal cogen,2055,BC,0.058307588 +WY,industrial fuel use,gas,gas,2005,BC,0.000879555 +WY,industrial fuel use,gas,gas,2010,BC,0.000594596 +WY,industrial fuel use,gas,gas,2015,BC,0.000780779 +WY,industrial fuel use,gas,gas,2020,BC,0.000758542 +WY,industrial fuel use,gas,gas,2025,BC,0.000791704 +WY,industrial fuel use,gas,gas,2030,BC,0.000829295 +WY,industrial fuel use,gas,gas,2035,BC,0.000745895 +WY,industrial fuel use,gas,gas,2040,BC,0.000739727 +WY,industrial fuel use,gas,gas,2045,BC,0.000759191 +WY,industrial fuel use,gas,gas,2050,BC,0.000728476 +WY,industrial fuel use,gas,gas,2055,BC,0.000688571 +WY,industrial fuel use,gas,gas cogen,2005,BC,0.000879555 +WY,industrial fuel use,gas,gas cogen,2010,BC,0.000594596 +WY,industrial fuel use,gas,gas cogen,2015,BC,0.000780779 +WY,industrial fuel use,gas,gas cogen,2020,BC,0.000758542 +WY,industrial fuel use,gas,gas cogen,2025,BC,0.000791704 +WY,industrial fuel use,gas,gas cogen,2030,BC,0.000829295 +WY,industrial fuel use,gas,gas cogen,2035,BC,0.000745895 +WY,industrial fuel use,gas,gas cogen,2040,BC,0.000739727 +WY,industrial fuel use,gas,gas cogen,2045,BC,0.000759191 +WY,industrial fuel use,gas,gas cogen,2050,BC,0.000728476 +WY,industrial fuel use,gas,gas cogen,2055,BC,0.000688571 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,BC,0.006454742 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,BC,0.004508524 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,BC,0.008305931 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,BC,0.006497267 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,BC,0.006541149 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,BC,0.006611293 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,BC,0.007134251 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,BC,0.007808451 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,BC,0.007612419 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,BC,0.008134605 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,BC,0.010098531 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,BC,0.006454742 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,BC,0.004508524 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,BC,0.008305931 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,BC,0.006497267 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,BC,0.006541149 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,BC,0.006611293 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,BC,0.007134251 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,BC,0.007808451 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,BC,0.007612419 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,BC,0.008134605 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,BC,0.010098531 +WY,industrial fuel use,biomass,biomass,2005,BC,8.17E-05 +WY,industrial fuel use,biomass,biomass,2010,BC,3.08E-05 +WY,industrial fuel use,biomass,biomass,2015,BC,6.28E-06 +WY,industrial fuel use,biomass,biomass,2020,BC,1.68E-05 +WY,industrial fuel use,biomass,biomass,2025,BC,2.00E-05 +WY,industrial fuel use,biomass,biomass,2030,BC,2.24E-05 +WY,industrial fuel use,biomass,biomass,2035,BC,2.03E-05 +WY,industrial fuel use,biomass,biomass,2040,BC,1.87E-05 +WY,industrial fuel use,biomass,biomass,2045,BC,2.45E-05 +WY,industrial fuel use,biomass,biomass,2050,BC,2.33E-05 +WY,industrial fuel use,biomass,biomass,2055,BC,1.33E-05 +WY,industrial fuel use,biomass,biomass cogen,2005,BC,8.17E-05 +WY,industrial fuel use,biomass,biomass cogen,2010,BC,3.08E-05 +WY,industrial fuel use,biomass,biomass cogen,2015,BC,6.28E-06 +WY,industrial fuel use,biomass,biomass cogen,2020,BC,1.68E-05 +WY,industrial fuel use,biomass,biomass cogen,2025,BC,2.00E-05 +WY,industrial fuel use,biomass,biomass cogen,2030,BC,2.24E-05 +WY,industrial fuel use,biomass,biomass cogen,2035,BC,2.03E-05 +WY,industrial fuel use,biomass,biomass cogen,2040,BC,1.87E-05 +WY,industrial fuel use,biomass,biomass cogen,2045,BC,2.45E-05 +WY,industrial fuel use,biomass,biomass cogen,2050,BC,2.33E-05 +WY,industrial fuel use,biomass,biomass cogen,2055,BC,1.33E-05 +WY,industrial fuel use,coal,coal,2005,OC,0.004608879 +WY,industrial fuel use,coal,coal,2010,OC,0.004949044 +WY,industrial fuel use,coal,coal,2015,OC,0.005291355 +WY,industrial fuel use,coal,coal,2020,OC,0.005047635 +WY,industrial fuel use,coal,coal,2025,OC,0.005240698 +WY,industrial fuel use,coal,coal,2030,OC,0.005398598 +WY,industrial fuel use,coal,coal,2035,OC,0.005483036 +WY,industrial fuel use,coal,coal,2040,OC,0.005583473 +WY,industrial fuel use,coal,coal,2045,OC,0.005638434 +WY,industrial fuel use,coal,coal,2050,OC,0.005723515 +WY,industrial fuel use,coal,coal,2055,OC,0.005777195 +WY,industrial fuel use,coal,coal cogen,2005,OC,0.004608879 +WY,industrial fuel use,coal,coal cogen,2010,OC,0.004949044 +WY,industrial fuel use,coal,coal cogen,2015,OC,0.005291355 +WY,industrial fuel use,coal,coal cogen,2020,OC,0.005047635 +WY,industrial fuel use,coal,coal cogen,2025,OC,0.005240698 +WY,industrial fuel use,coal,coal cogen,2030,OC,0.005398598 +WY,industrial fuel use,coal,coal cogen,2035,OC,0.005483036 +WY,industrial fuel use,coal,coal cogen,2040,OC,0.005583473 +WY,industrial fuel use,coal,coal cogen,2045,OC,0.005638434 +WY,industrial fuel use,coal,coal cogen,2050,OC,0.005723515 +WY,industrial fuel use,coal,coal cogen,2055,OC,0.005777195 +WY,industrial fuel use,gas,gas,2005,OC,0.000586894 +WY,industrial fuel use,gas,gas,2010,OC,0.000538986 +WY,industrial fuel use,gas,gas,2015,OC,0.000406177 +WY,industrial fuel use,gas,gas,2020,OC,0.000436774 +WY,industrial fuel use,gas,gas,2025,OC,0.000431434 +WY,industrial fuel use,gas,gas,2030,OC,0.000454497 +WY,industrial fuel use,gas,gas,2035,OC,0.0005142 +WY,industrial fuel use,gas,gas,2040,OC,0.000542203 +WY,industrial fuel use,gas,gas,2045,OC,0.0005354 +WY,industrial fuel use,gas,gas,2050,OC,0.000552822 +WY,industrial fuel use,gas,gas,2055,OC,0.000563528 +WY,industrial fuel use,gas,gas cogen,2005,OC,0.000586894 +WY,industrial fuel use,gas,gas cogen,2010,OC,0.000538986 +WY,industrial fuel use,gas,gas cogen,2015,OC,0.000406177 +WY,industrial fuel use,gas,gas cogen,2020,OC,0.000436774 +WY,industrial fuel use,gas,gas cogen,2025,OC,0.000431434 +WY,industrial fuel use,gas,gas cogen,2030,OC,0.000454497 +WY,industrial fuel use,gas,gas cogen,2035,OC,0.0005142 +WY,industrial fuel use,gas,gas cogen,2040,OC,0.000542203 +WY,industrial fuel use,gas,gas cogen,2045,OC,0.0005354 +WY,industrial fuel use,gas,gas cogen,2050,OC,0.000552822 +WY,industrial fuel use,gas,gas cogen,2055,OC,0.000563528 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,OC,0.001005656 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,OC,0.000735357 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,OC,0.000821073 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,OC,0.000738931 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,OC,0.000752739 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,OC,0.000807621 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,OC,0.000823774 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,OC,0.000854344 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,OC,0.000848845 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,OC,0.000886654 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,OC,0.000947795 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,OC,0.001005656 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,OC,0.000735357 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,OC,0.000821073 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,OC,0.000738931 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,OC,0.000752739 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,OC,0.000807621 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,OC,0.000823774 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,OC,0.000854344 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,OC,0.000848845 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,OC,0.000886654 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,OC,0.000947795 +WY,industrial fuel use,biomass,biomass,2005,OC,0.001323111 +WY,industrial fuel use,biomass,biomass,2010,OC,0.000961533 +WY,industrial fuel use,biomass,biomass,2015,OC,0.000872239 +WY,industrial fuel use,biomass,biomass,2020,OC,0.000937586 +WY,industrial fuel use,biomass,biomass,2025,OC,0.000909273 +WY,industrial fuel use,biomass,biomass,2030,OC,0.000885803 +WY,industrial fuel use,biomass,biomass,2035,OC,0.000855939 +WY,industrial fuel use,biomass,biomass,2040,OC,0.000839137 +WY,industrial fuel use,biomass,biomass,2045,OC,0.000830943 +WY,industrial fuel use,biomass,biomass,2050,OC,0.000815259 +WY,industrial fuel use,biomass,biomass,2055,OC,0.000761882 +WY,industrial fuel use,biomass,biomass cogen,2005,OC,0.001323111 +WY,industrial fuel use,biomass,biomass cogen,2010,OC,0.000961533 +WY,industrial fuel use,biomass,biomass cogen,2015,OC,0.000872239 +WY,industrial fuel use,biomass,biomass cogen,2020,OC,0.000937586 +WY,industrial fuel use,biomass,biomass cogen,2025,OC,0.000909273 +WY,industrial fuel use,biomass,biomass cogen,2030,OC,0.000885803 +WY,industrial fuel use,biomass,biomass cogen,2035,OC,0.000855939 +WY,industrial fuel use,biomass,biomass cogen,2040,OC,0.000839137 +WY,industrial fuel use,biomass,biomass cogen,2045,OC,0.000830943 +WY,industrial fuel use,biomass,biomass cogen,2050,OC,0.000815259 +WY,industrial fuel use,biomass,biomass cogen,2055,OC,0.000761882 +WY,industrial fuel use,coal,coal,2005,CO2,0.022413751 +WY,industrial fuel use,coal,coal,2010,CO2,0.023247485 +WY,industrial fuel use,coal,coal,2015,CO2,0.023542577 +WY,industrial fuel use,coal,coal,2020,CO2,0.022100946 +WY,industrial fuel use,coal,coal,2025,CO2,0.022682182 +WY,industrial fuel use,coal,coal,2030,CO2,0.023544891 +WY,industrial fuel use,coal,coal,2035,CO2,0.024022124 +WY,industrial fuel use,coal,coal,2040,CO2,0.024371859 +WY,industrial fuel use,coal,coal,2045,CO2,0.024626877 +WY,industrial fuel use,coal,coal,2050,CO2,0.024861999 +WY,industrial fuel use,coal,coal,2055,CO2,0.025047846 +WY,industrial fuel use,coal,coal cogen,2005,CO2,0.022413751 +WY,industrial fuel use,coal,coal cogen,2010,CO2,0.023247485 +WY,industrial fuel use,coal,coal cogen,2015,CO2,0.023542577 +WY,industrial fuel use,coal,coal cogen,2020,CO2,0.022100946 +WY,industrial fuel use,coal,coal cogen,2025,CO2,0.022682182 +WY,industrial fuel use,coal,coal cogen,2030,CO2,0.023544891 +WY,industrial fuel use,coal,coal cogen,2035,CO2,0.024022124 +WY,industrial fuel use,coal,coal cogen,2040,CO2,0.024371859 +WY,industrial fuel use,coal,coal cogen,2045,CO2,0.024626877 +WY,industrial fuel use,coal,coal cogen,2050,CO2,0.024861999 +WY,industrial fuel use,coal,coal cogen,2055,CO2,0.025047846 +WY,industrial fuel use,gas,gas,2005,CO2,0.010100215 +WY,industrial fuel use,gas,gas,2010,CO2,0.008735772 +WY,industrial fuel use,gas,gas,2015,CO2,0.008975567 +WY,industrial fuel use,gas,gas,2020,CO2,0.009141549 +WY,industrial fuel use,gas,gas,2025,CO2,0.009319403 +WY,industrial fuel use,gas,gas,2030,CO2,0.009661635 +WY,industrial fuel use,gas,gas,2035,CO2,0.009858394 +WY,industrial fuel use,gas,gas,2040,CO2,0.010090146 +WY,industrial fuel use,gas,gas,2045,CO2,0.010177486 +WY,industrial fuel use,gas,gas,2050,CO2,0.010210503 +WY,industrial fuel use,gas,gas,2055,CO2,0.010168744 +WY,industrial fuel use,gas,gas cogen,2005,CO2,0.010100215 +WY,industrial fuel use,gas,gas cogen,2010,CO2,0.008735772 +WY,industrial fuel use,gas,gas cogen,2015,CO2,0.008975567 +WY,industrial fuel use,gas,gas cogen,2020,CO2,0.009141549 +WY,industrial fuel use,gas,gas cogen,2025,CO2,0.009319403 +WY,industrial fuel use,gas,gas cogen,2030,CO2,0.009661635 +WY,industrial fuel use,gas,gas cogen,2035,CO2,0.009858394 +WY,industrial fuel use,gas,gas cogen,2040,CO2,0.010090146 +WY,industrial fuel use,gas,gas cogen,2045,CO2,0.010177486 +WY,industrial fuel use,gas,gas cogen,2050,CO2,0.010210503 +WY,industrial fuel use,gas,gas cogen,2055,CO2,0.010168744 +WY,industrial fuel use,liquid fuels,liquid fuels,2005,CO2,0.010479635 +WY,industrial fuel use,liquid fuels,liquid fuels,2010,CO2,0.008057126 +WY,industrial fuel use,liquid fuels,liquid fuels,2015,CO2,0.009803119 +WY,industrial fuel use,liquid fuels,liquid fuels,2020,CO2,0.008852648 +WY,industrial fuel use,liquid fuels,liquid fuels,2025,CO2,0.008747973 +WY,industrial fuel use,liquid fuels,liquid fuels,2030,CO2,0.009364278 +WY,industrial fuel use,liquid fuels,liquid fuels,2035,CO2,0.009051173 +WY,industrial fuel use,liquid fuels,liquid fuels,2040,CO2,0.009239591 +WY,industrial fuel use,liquid fuels,liquid fuels,2045,CO2,0.008436274 +WY,industrial fuel use,liquid fuels,liquid fuels,2050,CO2,0.008581178 +WY,industrial fuel use,liquid fuels,liquid fuels,2055,CO2,0.009028672 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2005,CO2,0.010479635 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2010,CO2,0.008057126 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2015,CO2,0.009803119 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2020,CO2,0.008852648 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2025,CO2,0.008747973 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2030,CO2,0.009364278 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2035,CO2,0.009051173 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2040,CO2,0.009239591 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2045,CO2,0.008436274 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2050,CO2,0.008581178 +WY,industrial fuel use,liquid fuels,liquid fuels cogen,2055,CO2,0.009028672 +WY,industrial fuel use,biomass,biomass,2005,CO2,0 +WY,industrial fuel use,biomass,biomass,2010,CO2,0 +WY,industrial fuel use,biomass,biomass,2015,CO2,3.77E-05 +WY,industrial fuel use,biomass,biomass,2020,CO2,0.000105651 +WY,industrial fuel use,biomass,biomass,2025,CO2,0.000104916 +WY,industrial fuel use,biomass,biomass,2030,CO2,0.000123232 +WY,industrial fuel use,biomass,biomass,2035,CO2,0.000110634 +WY,industrial fuel use,biomass,biomass,2040,CO2,0.000114428 +WY,industrial fuel use,biomass,biomass,2045,CO2,0.00011092 +WY,industrial fuel use,biomass,biomass,2050,CO2,0.00011344 +WY,industrial fuel use,biomass,biomass,2055,CO2,0.000118348 +WY,industrial fuel use,biomass,biomass cogen,2005,CO2,0 +WY,industrial fuel use,biomass,biomass cogen,2010,CO2,0 +WY,industrial fuel use,biomass,biomass cogen,2015,CO2,3.77E-05 +WY,industrial fuel use,biomass,biomass cogen,2020,CO2,0.000105651 +WY,industrial fuel use,biomass,biomass cogen,2025,CO2,0.000104916 +WY,industrial fuel use,biomass,biomass cogen,2030,CO2,0.000123232 +WY,industrial fuel use,biomass,biomass cogen,2035,CO2,0.000110634 +WY,industrial fuel use,biomass,biomass cogen,2040,CO2,0.000114428 +WY,industrial fuel use,biomass,biomass cogen,2045,CO2,0.00011092 +WY,industrial fuel use,biomass,biomass cogen,2050,CO2,0.00011344 +WY,industrial fuel use,biomass,biomass cogen,2055,CO2,0.000118348 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_EV_Efs_ORD.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_EV_Efs_ORD.csv new file mode 100644 index 0000000000..917c71edd2 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_EV_Efs_ORD.csv @@ -0,0 +1,721 @@ +# File: MOVES_EV_Efs_ORD.csv +# Title: PM emission factors for electric vehicles accounting for the break and tire wear +# Units: Tg/million-pass-km +# Source: derived from Brake and Tire Wear Emissions from On-road Vehicles in MOVES2014 +# Column types: ccccnnnnnnnnnn +# ---------- +state,class,fuel,pollutant,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050 +AK,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AK,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AK,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AK,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AK,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AK,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AK,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AK,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AK,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +AK,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +AK,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AK,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AL,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AL,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AL,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AL,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AL,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AL,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AL,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AL,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AL,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +AL,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +AL,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AL,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AR,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AR,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AR,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AR,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AR,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AR,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AR,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AR,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AR,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +AR,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +AR,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AR,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AZ,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AZ,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AZ,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AZ,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AZ,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AZ,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AZ,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AZ,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AZ,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +AZ,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +AZ,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +AZ,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +CA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +CA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +CA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +CA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +CA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +CA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +CO,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CO,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CO,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CO,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CO,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +CO,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +CO,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CO,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CO,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +CO,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +CO,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +CO,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +CT,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CT,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CT,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CT,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CT,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +CT,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +CT,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CT,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CT,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +CT,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +CT,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +CT,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +DC,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DC,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DC,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DC,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DC,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +DC,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +DC,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DC,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DC,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +DC,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +DC,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +DC,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +DE,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DE,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DE,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DE,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DE,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +DE,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +DE,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DE,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DE,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +DE,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +DE,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +DE,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +FL,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +FL,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +FL,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +FL,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +FL,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +FL,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +FL,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +FL,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +FL,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +FL,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +FL,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +FL,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +GA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +GA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +GA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +GA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +GA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +GA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +GA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +GA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +GA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +GA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +GA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +GA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +HI,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +HI,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +HI,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +HI,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +HI,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +HI,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +HI,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +HI,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +HI,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +HI,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +HI,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +HI,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +IA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +IA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +IA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +IA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +IA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +IA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +ID,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ID,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ID,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ID,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ID,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +ID,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +ID,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ID,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ID,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +ID,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +ID,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +ID,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +IL,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IL,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IL,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IL,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IL,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +IL,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +IL,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IL,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IL,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +IL,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +IL,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +IL,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +IN,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IN,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IN,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IN,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IN,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +IN,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +IN,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IN,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IN,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +IN,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +IN,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +IN,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +KS,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KS,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KS,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KS,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KS,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +KS,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +KS,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KS,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KS,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +KS,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +KS,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +KS,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +KY,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KY,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KY,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KY,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KY,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +KY,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +KY,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KY,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KY,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +KY,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +KY,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +KY,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +LA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +LA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +LA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +LA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +LA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +LA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +LA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +LA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +LA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +LA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +LA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +LA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +MA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +MA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MD,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MD,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MD,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MD,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MD,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MD,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MD,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MD,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MD,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +MD,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +MD,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MD,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +ME,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ME,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ME,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ME,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ME,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +ME,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +ME,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ME,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ME,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +ME,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +ME,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +ME,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MI,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MI,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MI,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MI,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MI,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MI,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MI,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MI,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MI,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +MI,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +MI,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MI,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MN,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MN,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MN,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MN,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MN,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MN,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MN,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MN,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MN,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +MN,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +MN,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MN,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MO,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MO,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MO,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MO,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MO,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MO,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MO,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MO,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MO,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +MO,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +MO,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MO,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MS,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MS,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MS,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MS,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MS,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MS,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MS,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MS,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MS,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +MS,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +MS,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MS,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MT,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MT,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MT,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MT,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MT,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MT,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +MT,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MT,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MT,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +MT,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +MT,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +MT,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NC,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NC,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NC,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NC,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NC,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NC,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NC,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NC,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NC,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +NC,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +NC,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NC,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +ND,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ND,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ND,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ND,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ND,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +ND,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +ND,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ND,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ND,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +ND,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +ND,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +ND,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NE,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NE,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NE,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NE,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NE,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NE,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NE,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NE,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NE,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +NE,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +NE,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NE,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NH,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NH,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NH,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NH,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NH,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NH,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NH,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NH,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NH,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +NH,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +NH,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NH,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NJ,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NJ,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NJ,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NJ,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NJ,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NJ,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NJ,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NJ,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NJ,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +NJ,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +NJ,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NJ,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NM,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NM,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NM,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NM,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NM,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NM,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NM,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NM,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NM,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +NM,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +NM,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NM,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NV,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NV,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NV,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NV,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NV,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NV,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NV,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NV,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NV,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +NV,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +NV,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NV,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NY,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NY,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NY,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NY,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NY,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NY,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +NY,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NY,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NY,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +NY,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +NY,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +NY,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +OH,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OH,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OH,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OH,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OH,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +OH,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +OH,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OH,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OH,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +OH,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +OH,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +OH,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +OK,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OK,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OK,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OK,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OK,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +OK,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +OK,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OK,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OK,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +OK,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +OK,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +OK,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +OR,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OR,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OR,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OR,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OR,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +OR,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +OR,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OR,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OR,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +OR,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +OR,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +OR,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +PA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +PA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +PA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +PA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +PA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +PA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +PA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +PA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +PA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +PA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +PA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +PA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +RI,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +RI,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +RI,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +RI,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +RI,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +RI,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +RI,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +RI,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +RI,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +RI,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +RI,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +RI,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +SC,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SC,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SC,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SC,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SC,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +SC,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +SC,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SC,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SC,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +SC,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +SC,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +SC,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +SD,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SD,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SD,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SD,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SD,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +SD,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +SD,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SD,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SD,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +SD,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +SD,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +SD,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +TN,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TN,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TN,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TN,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TN,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +TN,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +TN,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TN,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TN,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +TN,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +TN,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +TN,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +TX,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TX,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TX,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TX,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TX,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +TX,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +TX,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TX,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TX,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +TX,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +TX,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +TX,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +UT,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +UT,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +UT,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +UT,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +UT,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +UT,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +UT,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +UT,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +UT,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +UT,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +UT,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +UT,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +VA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +VA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +VA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +VA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +VA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +VA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +VT,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VT,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VT,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VT,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VT,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +VT,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +VT,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VT,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VT,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +VT,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +VT,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +VT,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WA,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WA,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WA,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WA,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WA,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WA,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WA,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WA,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WA,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +WA,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +WA,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WA,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WI,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WI,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WI,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WI,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WI,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WI,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WI,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WI,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WI,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +WI,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +WI,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WI,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WV,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WV,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WV,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WV,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WV,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WV,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WV,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WV,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WV,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +WV,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +WV,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WV,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WY,Compact car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WY,Compact car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WY,Full size car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WY,Full size car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WY,Large SUV,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WY,Large SUV,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +WY,Mini car,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WY,Mini car,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WY,Minivan,ELC,PM10,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08,1.47E-08 +WY,Minivan,ELC,PM2.5,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09,1.93E-09 +WY,Pickup,ELC,PM10,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08,1.34E-08 +WY,Pickup,ELC,PM2.5,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09,1.76E-09 +AK,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AK,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AL,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AL,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AR,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AR,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +AZ,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +AZ,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CO,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CO,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +CT,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +CT,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DC,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DC,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +DE,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +DE,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +FL,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +FL,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +GA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +GA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +HI,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +HI,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ID,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ID,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IL,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IL,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +IN,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +IN,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KS,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KS,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +KY,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +KY,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +LA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +LA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MD,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MD,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ME,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ME,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MI,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MI,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MN,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MN,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MO,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MO,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MS,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MS,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +MT,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +MT,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NC,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NC,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +ND,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +ND,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NE,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NE,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NH,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NH,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NJ,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NJ,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NM,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NM,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NV,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NV,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +NY,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +NY,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OH,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OH,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OK,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OK,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +OR,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +OR,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +PA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +PA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +RI,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +RI,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SC,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SC,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +SD,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +SD,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TN,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TN,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +TX,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +TX,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +UT,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +UT,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +VT,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +VT,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WA,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WA,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WI,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WI,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WV,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WV,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 +WY,Small SUV,ELC,PM10,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08,1.35E-08 +WY,Small SUV,ELC,PM2.5,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09,1.79E-09 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_VMT_dist.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_VMT_dist.csv new file mode 100644 index 0000000000..2b0f80d99f --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_VMT_dist.csv @@ -0,0 +1,157 @@ +# File: MOVES_VMT_dist.csv +# Title: Vehicle Miles Traveled by Vehicle Class and Age +# Source: Population and Activity of On-Road Vehicles in MOVES2014. US EPA Office of Transportation and Air Quality. January 2016. p. 61-63. https://cfpub.epa.gov/si/si_public_record_report.cfm?Lab=OTAQ&dirEntryId=309336 +# Comments: Tables 7-3 to 7-5 +# Units: Miles Traveled: mi Age: years +# Column types: inci +# ---------- +Age,Miles Traveled,Class.Of.Car,MOVES.sourceTypeID +4,52050,Passenger Cars,21 +5,58580,Passenger Cars,21 +10,18425,Passenger Cars,21 +16,17145,Passenger Cars,21 +1,15806,Light Trucks,32 +2,15683,Light Trucks,32 +3,15859,Light Trucks,32 +4,15302,Light Trucks,32 +5,14762,Light Trucks,32 +6,13836,Light Trucks,32 +7,13542,Light Trucks,32 +8,13615,Light Trucks,32 +9,12875,Light Trucks,32 +10,12203,Light Trucks,32 +11,11501,Light Trucks,32 +12,10815,Light Trucks,32 +13,11391,Light Trucks,32 +14,10843,Light Trucks,32 +15,10378,Light Trucks,32 +16,9259,Light Trucks,32 +17,8358,Light Trucks,32 +18,9371,Light Trucks,32 +19,7352,Light Trucks,32 +20,8363,Light Trucks,32 +21,6999,Light Trucks,32 +22,7327,Light Trucks,32 +23,6969,Light Trucks,32 +24,6220,Light Trucks,32 +25,6312,Light Trucks,32 +26,6745,Light Trucks,32 +27,9515,Light Trucks,32 +28,6635,Light Trucks,32 +29,12108,Light Trucks,32 +30,5067,Light Trucks,32 +31,4577,Light Trucks,32 +32,6923,Light Trucks,32 +3,46791,Transit Bus,42 +4,41262,Transit Bus,42 +5,42206,Transit Bus,42 +6,39160,Transit Bus,42 +7,38266,Transit Bus,42 +8,36358,Transit Bus,42 +9,34935,Transit Bus,42 +10,33021,Transit Bus,42 +11,32540,Transit Bus,42 +12,32605,Transit Bus,42 +13,27722,Transit Bus,42 +14,28429,Transit Bus,42 +15,32140,Transit Bus,42 +16,28100,Transit Bus,42 +17,24626,Transit Bus,42 +18,23428,Transit Bus,42 +19,22575,Transit Bus,42 +20,23220,Transit Bus,42 +21,19588,Transit Bus,42 +22,22939,Transit Bus,42 +23,26413,Transit Bus,42 +24,23366,Transit Bus,42 +25,11259,Transit Bus,42 +26,23228,Transit Bus,42 +27,21515,Transit Bus,42 +28,25939,Transit Bus,42 +29,20117,Transit Bus,42 +30,17515,Transit Bus,42 +0,26703,Refuse,51 +1,32391,Refuse,51 +2,31210,Refuse,51 +3,31444,Refuse,51 +4,31815,Refuse,51 +5,28450,Refuse,51 +6,25462,Refuse,51 +7,30182,Refuse,51 +8,20722,Refuse,51 +9,25199,Refuse,51 +10,23366,Refuse,51 +11,18818,Refuse,51 +12,12533,Refuse,51 +13,15891,Refuse,51 +14,19618,Refuse,51 +15,12480,Refuse,51 +16,12577,Refuse,51 +0,21926,Short-Haul,52 +1,22755,Short-Haul,52 +2,24446,Short-Haul,52 +3,23874,Short-Haul,52 +4,21074,Short-Haul,52 +5,21444,Short-Haul,52 +6,16901,Short-Haul,52 +7,15453,Short-Haul,52 +8,13930,Short-Haul,52 +9,13303,Short-Haul,52 +10,11749,Short-Haul,52 +11,13675,Short-Haul,52 +12,11332,Short-Haul,52 +13,9795,Short-Haul,52 +14,9309,Short-Haul,52 +15,9379,Short-Haul,52 +16,4830,Short-Haul,52 +0,40538,Long-Haul,53 +1,28168,Long-Haul,53 +2,30139,Long-Haul,53 +3,49428,Long-Haul,53 +4,33266,Long-Haul,53 +5,23784,Long-Haul,53 +6,21238,Long-Haul,53 +7,27562,Long-Haul,53 +8,21052,Long-Haul,53 +9,11273,Long-Haul,53 +10,18599,Long-Haul,53 +11,15140,Long-Haul,53 +12,13311,Long-Haul,53 +13,9796,Long-Haul,53 +14,12067,Long-Haul,53 +15,1606,Long-Haul,53 +16,8941,Long-Haul,53 +0,119867,Short-Haul,61 +1,114983,Short-Haul,61 +2,110099,Short-Haul,61 +3,105215,Short-Haul,61 +4,100331,Short-Haul,61 +5,95447,Short-Haul,61 +6,90563,Short-Haul,61 +7,85679,Short-Haul,61 +8,80795,Short-Haul,61 +9,75911,Short-Haul,61 +10,71026,Short-Haul,61 +11,66142,Short-Haul,61 +12,61258,Short-Haul,61 +13,56374,Short-Haul,61 +14,51490,Short-Haul,61 +15,46606,Short-Haul,61 +16,41722,Short-Haul,61 +0,109418,Long-Haul,62 +1,128287,Long-Haul,62 +2,117945,Long-Haul,62 +3,110713,Long-Haul,62 +4,99925,Long-Haul,62 +5,94326,Long-Haul,62 +6,85225,Long-Haul,62 +7,85406,Long-Haul,62 +8,71834,Long-Haul,62 +9,71160,Long-Haul,62 +10,67760,Long-Haul,62 +11,80207,Long-Haul,62 +12,48562,Long-Haul,62 +13,64473,Long-Haul,62 +14,48242,Long-Haul,62 +15,58951,Long-Haul,62 +16,35897,Long-Haul,62 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_VMT_dist_missing_mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_VMT_dist_missing_mapping.csv new file mode 100644 index 0000000000..a891317dc1 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_VMT_dist_missing_mapping.csv @@ -0,0 +1,11 @@ +# File: MOVES_VMT_dist_missing_mapping.csv +# Title: MOVES VMT dist mapping file between similar vehicle source classes +# Description: Mapping file for copying VMT distributions from similar vehicle source classes for needed types that are missing +# Units: NA +# Source: NA - Mapping file. Found source type names in Table 2-1 US EPA Population and Activity of On-road Vehicles in MOVES2014 Draft Report. https://cfpub.epa.gov/si/si_public_record_report.cfm?Lab=OTAQ&dirEntryId=309336 +# Column types: icic +# ---------- +sourceTypeID.orig,Class.orig,sourceTypeID.new,Class.new +32,Light Commercial Trucks,31,Passenger Trucks (primarily personal use) +42,Transit Buses,41,Intercity Buses +42,Transit Buses,43,School Buses diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_motorcycle_data.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_motorcycle_data.csv new file mode 100644 index 0000000000..42946fd37d --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_motorcycle_data.csv @@ -0,0 +1,13678 @@ +# File: MOVES_motorcycle_data.csv +# Title: Emissions and Distance data for motorcycles to be used for EF calculations +# Units: emissions are in g/year (mass) and distance is in miles +# Source: EPA-ORD Dan Loughlin using MOVES 3.0. Ran 4 month per year one county per state chosen at random +# Column types: nnnnnnnnnnnnn +# ---------- +Year,State,ModelYr,NH3,CO,CH4,N2O,NOx,Total_PM10,Total_PM25,SO2,VOC,Distance +2010,1,1980,274,789721,18709,59,8427,1802,1594,116,330357,16350 +2010,1,1981,42,90125,1221,9,2417,57,50,18,38348,2494 +2010,1,1982,46,99594,1349,10,2671,63,56,20,40101,2756 +2010,1,1983,51,109811,1487,11,2947,69,61,22,42469,3041 +2010,1,1984,57,123680,1675,12,3319,78,69,24,45214,3425 +2010,1,1985,65,141056,1910,14,3786,89,79,28,48596,3906 +2010,1,1986,79,123615,1222,17,3852,108,95,33,49648,4719 +2010,1,1987,60,94512,934,13,2944,82,73,26,36163,3607 +2010,1,1988,51,80386,794,11,2503,70,62,22,29401,3066 +2010,1,1989,53,83512,825,12,2599,73,64,23,29891,3184 +2010,1,1990,50,78050,771,11,2428,68,60,21,27359,2975 +2010,1,1991,68,77985,770,11,2425,68,60,23,21315,2971 +2010,1,1992,86,98633,973,14,3066,86,76,30,26337,3756 +2010,1,1993,123,141680,1397,19,4402,123,109,43,36796,5392 +2010,1,1994,144,164670,1629,23,5161,144,127,51,41974,6318 +2010,1,1995,181,206463,2042,29,6468,181,160,65,51326,7918 +2010,1,1996,230,262359,2593,29,8214,229,203,84,54845,10056 +2010,1,1997,267,305122,3014,34,9548,267,236,99,60800,11688 +2010,1,1998,348,397476,3924,44,12430,347,307,130,66199,15217 +2010,1,1999,497,568344,5608,62,17763,496,439,189,89506,21744 +2010,1,2000,702,803013,7918,88,25081,700,619,267,123019,30703 +2010,1,2001,940,1075147,10241,118,32854,1046,925,358,154336,41116 +2010,1,2002,1211,1385395,13197,152,42334,1348,1193,461,193293,52980 +2010,1,2003,1627,1861593,17733,204,56886,1811,1602,619,251756,71191 +2010,1,2004,1649,1374315,12601,207,47247,1836,1624,628,215285,72160 +2010,1,2005,2235,1862630,17078,280,64035,2488,2201,851,280149,97799 +2010,1,2006,6887,2324575,21292,350,79899,3106,2747,1061,333894,122054 +2010,1,2007,8198,2767366,25347,417,95118,3697,3271,1264,377396,145304 +2010,1,2008,8049,1732522,14479,409,87327,3630,3211,1241,287091,142656 +2010,1,2009,8626,1856704,15517,438,93586,3890,3441,1330,280333,152881 +2010,1,2010,7101,1528162,12771,361,77038,3202,2833,1094,198167,125849 +2010,4,1980,1429,4505983,91757,262,50931,9155,8098,1327,1490745,81652 +2010,4,1981,218,513998,5985,40,14611,289,256,202,169481,12455 +2010,4,1982,241,568002,6614,44,16146,319,283,224,177558,13764 +2010,4,1983,266,626371,7291,49,17815,352,312,247,188319,15187 +2010,4,1984,299,705479,8212,55,20065,397,351,278,200911,17105 +2010,4,1985,341,804593,9366,63,22884,453,400,317,216445,19508 +2010,4,1986,412,706066,5998,76,23293,547,484,383,218520,23567 +2010,4,1987,315,539841,4585,58,17803,418,370,293,159397,18012 +2010,4,1988,268,459153,3898,49,15136,355,314,249,129774,15314 +2010,4,1989,278,477013,4047,51,15717,369,326,258,132024,15902 +2010,4,1990,260,445815,3782,48,14683,345,305,241,120922,14855 +2010,4,1991,354,445449,3777,48,14664,344,305,270,98641,14836 +2010,4,1992,448,563388,4775,60,18538,435,385,346,121961,18756 +2010,4,1993,643,809278,6856,86,26615,625,553,503,170524,26928 +2010,4,1994,753,899908,7920,101,31634,732,648,597,194201,31554 +2010,4,1995,943,1128312,9925,127,39641,917,812,759,237630,39541 +2010,4,1996,1198,1433792,12605,128,50346,1165,1031,976,258419,50219 +2010,4,1997,1393,1667502,14651,148,58518,1354,1198,1149,285669,58370 +2010,4,1998,1813,2172234,19074,193,76186,1763,1560,1515,321191,75993 +2010,4,1999,2591,3106060,27257,276,108867,2520,2229,2204,437451,108592 +2010,4,2000,3659,4388582,38487,390,153722,3558,3147,3112,601136,153333 +2010,4,2001,4899,6535988,54091,522,238521,4867,4305,4168,782476,205334 +2010,4,2002,6313,8422038,69700,672,307350,6272,5548,5370,980588,264587 +2010,4,2003,8483,11316933,93658,904,412994,8427,7455,7216,1278069,355532 +2010,4,2004,8599,8354848,66560,916,343001,8542,7556,7314,1086160,360371 +2010,4,2005,11654,11323459,90210,1241,464875,11577,10241,9913,1414385,488416 +2010,4,2006,35911,14131757,112443,1549,580073,14448,12781,12372,1686916,609547 +2010,4,2007,42751,16823598,133861,1844,690567,17200,15216,14728,1908521,725655 +2010,4,2008,41972,10534891,76368,1811,633705,16887,14938,14460,1437218,712434 +2010,4,2009,44981,11290036,81842,1940,679129,18097,16009,15496,1404614,763501 +2010,4,2010,37027,9292138,67360,1597,559043,14897,13178,12756,994509,628497 +2010,5,1980,203,596791,11688,32,6242,1235,1092,180,203205,10966 +2010,5,1981,31,68178,764,5,1790,39,34,27,23492,1673 +2010,5,1982,34,75341,844,5,1978,43,38,30,24560,1849 +2010,5,1983,38,83042,930,6,2182,48,42,33,26002,2040 +2010,5,1984,42,93529,1048,7,2458,54,47,38,27676,2297 +2010,5,1985,48,106669,1195,8,2803,61,54,43,29738,2620 +2010,5,1986,59,93190,762,9,2853,74,65,52,30263,3165 +2010,5,1987,45,71244,582,7,2180,56,50,40,22034,2419 +2010,5,1988,38,60588,495,6,1854,48,42,34,17907,2057 +2010,5,1989,39,62937,514,6,1925,50,44,35,18201,2136 +2010,5,1990,37,58814,481,6,1798,46,41,33,16657,1995 +2010,5,1991,50,58758,480,6,1796,46,41,37,12634,1993 +2010,5,1992,64,74306,607,7,2270,59,52,48,15613,2519 +2010,5,1993,91,106722,871,11,3260,84,75,70,21816,3617 +2010,5,1994,107,118666,1007,12,3874,99,87,83,24831,4238 +2010,5,1995,134,148762,1262,16,4855,124,109,105,30366,5311 +2010,5,1996,170,189009,1602,16,6166,157,139,135,32172,6745 +2010,5,1997,198,219783,1862,18,7166,183,162,159,35625,7839 +2010,5,1998,257,286262,2425,24,9330,238,210,210,39091,10206 +2010,5,1999,368,409253,3465,34,13332,340,301,305,52963,14585 +2010,5,2000,519,578137,4892,48,18826,480,424,431,72807,20594 +2010,5,2001,695,883058,6904,64,29157,672,595,577,94356,27578 +2010,5,2002,896,1137878,8897,83,37571,866,766,743,118340,35535 +2010,5,2003,1204,1528997,11955,111,50485,1164,1030,999,154380,47750 +2010,5,2004,1220,1129056,8504,112,41936,1180,1044,1013,130344,48400 +2010,5,2005,1654,1530227,11525,152,56836,1599,1414,1372,169896,65597 +2010,5,2006,5096,1909732,14342,190,70907,1995,1765,1713,202718,81866 +2010,5,2007,6067,2273503,17074,226,84414,2376,2101,2039,229648,97460 +2010,5,2008,5956,1426486,9812,222,77499,2332,2063,2002,171543,95684 +2010,5,2009,6383,1528733,10515,238,83054,2499,2211,2145,167948,102542 +2010,5,2010,5254,1257995,8653,196,68368,2057,1820,1766,119289,84411 +2010,6,1980,257,604693,12528,42,9217,1603,1418,17,162440,14656 +2010,6,1981,39,69246,821,6,2643,51,45,3,17402,2236 +2010,6,1982,43,76522,908,7,2920,56,49,3,18326,2471 +2010,6,1983,48,84274,999,8,3222,62,55,3,19502,2726 +2010,6,1984,54,94918,1125,9,3629,69,61,4,20925,3070 +2010,6,1985,61,108253,1283,10,4139,79,70,4,22685,3502 +2010,6,1986,74,93917,815,12,4215,96,85,5,22021,4230 +2010,6,1987,57,71790,623,9,3221,73,65,4,16122,3233 +2010,6,1988,48,61044,530,8,2739,62,55,3,13173,2749 +2010,6,1989,50,63400,550,8,2844,65,57,3,13425,2854 +2010,6,1990,47,59237,515,8,2657,60,53,3,12321,2666 +2010,6,1991,64,59171,514,8,2653,60,53,3,9263,2663 +2010,6,1992,80,74816,650,10,3354,76,67,4,11488,3367 +2010,6,1993,116,107435,933,14,4816,109,97,6,16122,4833 +2010,6,1994,135,142765,1195,16,5674,128,113,8,19094,5664 +2010,6,1995,170,178938,1498,20,7110,161,142,10,23463,7097 +2010,6,1996,215,227304,1902,20,9030,204,180,12,25557,9014 +2010,6,1997,250,264256,2211,24,10496,237,210,15,28751,10477 +2010,6,1998,326,344114,2879,31,13664,309,273,19,33332,13640 +2010,6,1999,466,491848,4114,44,19526,441,390,28,45913,19492 +2010,6,2000,658,694656,5808,62,27571,623,551,40,63592,27522 +2010,6,2001,881,859144,7909,83,38384,815,721,53,82112,36856 +2010,6,2002,1135,1107061,10192,107,49461,1050,929,68,103810,47492 +2010,6,2003,1525,1487590,13695,144,66462,1410,1248,92,136637,63816 +2010,6,2004,1546,1098790,9750,146,55208,1430,1265,93,111219,64684 +2010,6,2005,2095,1489208,13215,198,74825,1938,1714,126,146574,87668 +2010,6,2006,6457,1858539,16420,247,93347,2418,2139,157,176915,109410 +2010,6,2007,7687,2212560,19547,294,111128,2879,2547,187,203421,130251 +2010,6,2008,7547,1384603,11111,289,101945,2826,2500,184,144216,127877 +2010,6,2009,8088,1483849,11908,310,109252,3029,2679,197,144770,137043 +2010,6,2010,6658,1220800,9796,255,89934,2493,2205,162,107474,112811 +2010,8,1980,58,171200,3292,9,2053,362,321,33,45590,3271 +2010,8,1981,9,19559,215,1,589,11,10,5,4976,499 +2010,8,1982,10,21614,238,1,651,13,11,5,5233,551 +2010,8,1983,11,23822,262,2,718,14,12,6,5565,608 +2010,8,1984,12,26831,295,2,809,16,14,7,5962,685 +2010,8,1985,14,30601,337,2,922,18,16,8,6452,781 +2010,8,1986,17,26741,215,3,939,22,19,9,6351,944 +2010,8,1987,13,20444,164,2,718,17,15,7,4646,722 +2010,8,1988,11,17388,140,2,610,14,12,6,3793,613 +2010,8,1989,11,18063,145,2,633,15,13,6,3864,637 +2010,8,1990,11,16881,136,2,592,14,12,6,3544,595 +2010,8,1991,14,16866,135,2,591,14,12,7,2876,594 +2010,8,1992,18,21330,171,2,747,17,15,9,3563,751 +2010,8,1993,26,30638,246,3,1073,25,22,12,4995,1079 +2010,8,1994,31,34820,284,3,1262,29,26,15,5699,1264 +2010,8,1995,39,43655,356,4,1582,36,32,19,6991,1584 +2010,8,1996,49,55470,452,4,2009,46,41,24,7713,2012 +2010,8,1997,57,64507,525,5,2335,54,47,28,8634,2338 +2010,8,1998,74,84027,684,6,3040,70,62,38,10003,3044 +2010,8,1999,106,120139,977,9,4344,100,88,55,13746,4350 +2010,8,2000,150,169733,1379,13,6134,141,125,77,18951,6142 +2010,8,2001,200,233090,1830,17,8785,197,174,103,24148,8226 +2010,8,2002,258,300351,2358,22,11319,253,224,133,30355,10599 +2010,8,2003,347,403591,3168,30,15210,340,301,179,39701,14243 +2010,8,2004,352,298032,2254,31,12634,345,305,181,33464,14436 +2010,8,2005,477,403928,3055,41,17123,467,414,246,43768,19566 +2010,8,2006,1470,504105,3800,52,21363,583,516,306,52423,24418 +2010,8,2007,1749,600128,4524,62,25433,695,614,365,59667,29069 +2010,8,2008,1718,375344,2576,60,23334,682,603,358,44545,28540 +2010,8,2009,1841,402249,2761,65,25007,731,646,384,44009,30586 +2010,8,2010,1515,331001,2272,53,20585,601,532,316,31777,25177 +2010,9,1980,710,1975636,44411,150,23732,4645,4109,292,647841,42109 +2010,9,1981,108,226235,2911,23,6800,147,130,45,71823,6423 +2010,9,1982,120,250005,3217,25,7514,162,143,49,75363,7098 +2010,9,1983,132,275335,3540,28,8291,179,158,54,79987,7832 +2010,9,1984,149,310109,3987,32,9338,201,178,61,85480,8821 +2010,9,1985,170,353677,4547,36,10650,230,203,70,92263,10061 +2010,9,1986,205,306821,2890,43,10842,277,245,84,91446,12154 +2010,9,1987,157,234519,2209,33,8287,212,188,64,66755,9289 +2010,9,1988,133,199401,1878,28,7045,180,159,55,54389,7897 +2010,9,1989,138,207082,1950,29,7316,187,166,57,55353,8201 +2010,9,1990,129,193467,1824,27,6834,175,155,53,50727,7661 +2010,9,1991,176,193238,1822,27,6825,175,155,59,36533,7651 +2010,9,1992,222,244312,2303,35,8629,221,195,75,45233,9672 +2010,9,1993,319,350800,3306,50,12388,317,280,109,63356,13887 +2010,9,1994,374,408364,3860,58,14524,371,329,130,72441,16273 +2010,9,1995,469,511786,4837,73,18200,466,412,164,88788,20392 +2010,9,1996,595,650063,6144,73,23115,591,523,211,93637,25898 +2010,9,1997,692,755667,7141,85,26867,687,608,249,104585,30102 +2010,9,1998,901,983934,9297,111,34978,895,791,328,116437,39190 +2010,9,1999,1287,1406200,13285,159,49984,1278,1131,477,158699,56002 +2010,9,2000,1818,1985827,18758,224,70577,1805,1597,674,219315,79075 +2010,9,2001,2434,2509535,26183,300,94616,2483,2197,902,284372,105893 +2010,9,2002,3136,3233699,33738,387,121919,3200,2831,1163,358814,136449 +2010,9,2003,4215,4345208,45335,520,163826,4300,3803,1562,471257,183351 +2010,9,2004,4272,3209913,32277,527,136106,4358,3855,1583,385901,185846 +2010,9,2005,5790,4350446,43745,714,184466,5907,5225,2146,507137,251881 +2010,9,2006,17841,5429380,54361,891,230093,7371,6521,2678,610229,314348 +2010,9,2007,21240,6463584,64715,1060,273922,8776,7763,3189,699024,374226 +2010,9,2008,20853,4056088,36974,1041,251427,8616,7622,3130,499691,367408 +2010,9,2009,22347,4346822,39624,1116,269449,9233,8168,3355,498186,393743 +2010,9,2010,18396,3575932,32597,918,221805,7600,6723,2762,365478,324121 +2010,10,1980,1294,3635042,83255,286,41772,8607,7614,541,1246927,78099 +2010,10,1981,197,415543,5444,44,11975,272,240,83,139192,11914 +2010,10,1982,218,459203,6016,48,13233,300,266,91,145997,13165 +2010,10,1983,241,506023,6626,53,14601,331,293,101,154946,14526 +2010,10,1984,271,569930,7463,60,16445,373,330,113,165520,16361 +2010,10,1985,309,650002,8512,68,18755,426,376,129,178573,18659 +2010,10,1986,373,566570,5428,82,19091,514,455,156,178000,22542 +2010,10,1987,285,433059,4149,63,14591,393,348,119,129923,17228 +2010,10,1988,243,368210,3527,54,12405,334,296,101,105843,14647 +2010,10,1989,252,382392,3663,56,12882,347,307,105,107711,15210 +2010,10,1990,235,357252,3424,52,12034,324,287,98,98691,14209 +2010,10,1991,321,356828,3420,52,12018,324,286,108,72390,14191 +2010,10,1992,405,451139,4323,66,15193,409,362,138,89609,17940 +2010,10,1993,582,647778,6207,94,21814,587,520,201,125478,25756 +2010,10,1994,682,754063,7246,110,25574,688,609,239,143443,30181 +2010,10,1995,854,945038,9080,138,32047,863,763,303,175768,37821 +2010,10,1996,1085,1200372,11532,139,40702,1096,969,390,185989,48034 +2010,10,1997,1261,1395372,13404,162,47308,1273,1126,459,207357,55830 +2010,10,1998,1642,1816875,17451,211,61591,1658,1467,605,227936,72687 +2010,10,1999,2346,2596613,24937,301,88012,2369,2096,879,309767,103868 +2010,10,2000,3313,3666914,35212,425,124274,3345,2959,1241,427952,146662 +2010,10,2001,4437,4638036,49180,570,166559,4603,4072,1662,556103,196400 +2010,10,2002,5717,5976400,63371,734,214622,5931,5247,2142,701340,253075 +2010,10,2003,7682,8030661,85154,986,288393,7970,7051,2879,920630,340063 +2010,10,2004,7787,5930529,60561,1000,239563,8079,7147,2918,759047,344692 +2010,10,2005,10554,8037739,82079,1355,324684,10949,9686,3954,996990,467166 +2010,10,2006,32521,10031160,102182,1691,405055,13665,12088,4935,1200145,583026 +2010,10,2007,38716,11941914,121645,2013,482212,16268,14391,5875,1373870,694083 +2010,10,2008,38010,7485876,69324,1976,442596,15971,14129,5768,993452,681438 +2010,10,2009,40735,8022458,74293,2118,474320,17116,15141,6182,990020,730281 +2010,10,2010,33532,6601290,61136,1743,390450,14089,12463,5089,725863,601151 +2010,11,1980,551,1733323,46216,220,18053,4085,3613,266,1388721,36739 +2010,11,1981,84,199773,3047,34,5159,129,114,41,175619,5604 +2010,11,1982,93,220763,3367,37,5701,143,126,45,182089,6193 +2010,11,1983,103,242601,3698,41,6291,157,139,50,191503,6833 +2010,11,1984,116,273241,4165,46,7085,177,157,56,201906,7696 +2010,11,1985,132,311629,4750,53,8081,202,179,64,214643,8778 +2010,11,1986,159,265247,2986,63,8212,244,216,77,229128,10604 +2010,11,1987,122,202742,2282,49,6276,186,165,59,165742,8105 +2010,11,1988,103,172382,1940,41,5336,159,140,50,133839,6890 +2010,11,1989,107,179023,2015,43,5541,165,146,52,135613,7155 +2010,11,1990,100,167253,1886,40,5176,154,136,48,123731,6684 +2010,11,1991,137,167055,1884,40,5170,154,136,51,84195,6676 +2010,11,1992,173,211209,2382,51,6535,194,172,66,103517,8439 +2010,11,1993,248,303270,3419,73,9383,279,247,95,143755,12116 +2010,11,1994,291,353054,3992,85,11001,327,289,113,163104,14198 +2010,11,1995,364,442469,5003,107,13785,409,362,143,198282,17792 +2010,11,1996,462,562019,6354,107,17508,520,460,184,195699,22596 +2010,11,1997,537,653320,7385,125,20349,604,535,217,213912,26264 +2010,11,1998,700,850673,9615,162,26493,787,696,285,213537,34193 +2010,11,1999,1000,1215755,13739,232,37858,1124,995,414,280611,48861 +2010,11,2000,1412,1716883,19400,328,53456,1587,1404,585,382120,68993 +2010,11,2001,1891,2166080,27027,439,71587,2179,1928,783,475618,92390 +2010,11,2002,2436,2791131,34825,565,92244,2808,2484,1009,590151,119051 +2010,11,2003,3274,3750523,46796,760,123951,3773,3338,1356,760530,159972 +2010,11,2004,3318,2773142,33372,770,103048,3824,3383,1375,654761,162149 +2010,11,2005,4498,3758477,45229,1044,139663,5183,4585,1863,840059,219764 +2010,11,2006,13859,4690612,56046,1302,174070,6468,5722,2326,982513,274266 +2010,11,2007,16499,5584082,66722,1550,207228,7700,6812,2769,1087838,326510 +2010,11,2008,16198,3575939,39412,1522,190838,7560,6688,2718,824767,320561 +2010,11,2009,17359,3832248,42237,1631,204517,8102,7167,2913,772602,343538 +2010,11,2010,14290,3150563,34736,1343,168354,6668,5899,2398,503134,282793 +2010,12,1980,1545,4607628,118823,397,45389,10596,9373,694,2037212,96333 +2010,12,1981,236,525265,7741,61,13023,334,296,106,234980,14695 +2010,12,1982,260,580451,8555,67,14391,370,327,117,245952,16239 +2010,12,1983,287,640236,9435,74,15879,408,361,129,260701,17918 +2010,12,1984,324,721095,10627,83,17884,459,406,145,277849,20181 +2010,12,1985,369,822403,12120,95,20397,524,463,166,298993,23016 +2010,12,1986,446,723080,7776,115,20754,633,560,200,304687,27804 +2010,12,1987,341,552846,5944,88,15862,484,428,153,222133,21251 +2010,12,1988,290,470213,5053,74,13485,411,364,130,180759,18067 +2010,12,1989,301,488500,5247,77,14004,427,378,135,183848,18761 +2010,12,1990,281,456549,4902,72,13082,399,353,126,168339,17526 +2010,12,1991,383,456172,4896,72,13065,398,352,137,132314,17504 +2010,12,1992,484,576948,6190,91,16517,504,446,176,163574,22128 +2010,12,1993,695,828751,8886,131,23713,723,640,255,228674,31770 +2010,12,1994,814,963222,10364,153,27806,847,750,303,261003,37228 +2010,12,1995,1020,1207689,12987,192,34844,1062,939,384,319342,46651 +2010,12,1996,1296,1534648,16494,194,44254,1349,1193,494,342375,59249 +2010,12,1997,1506,1784786,19171,225,51437,1568,1387,581,379544,68865 +2010,12,1998,1961,2325002,24959,293,66966,2041,1805,766,410878,89657 +2010,12,1999,2802,3324475,35666,419,95693,2916,2580,1114,555324,128118 +2010,12,2000,3956,4697152,50361,591,135120,4118,3643,1572,764372,180903 +2010,12,2001,5298,6291703,65159,791,177048,6153,5443,2106,962389,242254 +2010,12,2002,6826,8107273,83961,1020,228138,7928,7014,2713,1207246,312160 +2010,12,2003,9173,10893961,112821,1370,306555,10654,9424,3646,1575238,419458 +2010,12,2004,9298,8041472,80136,1389,254590,10799,9553,3695,1346498,425167 +2010,12,2005,12601,10898746,108609,1883,345050,14636,12947,5008,1756438,576235 +2010,12,2006,38830,13601688,135508,2350,430576,18265,16158,6251,2099938,719146 +2010,12,2007,46227,16192589,161320,2797,512594,21744,19236,7441,2381578,856130 +2010,12,2008,45384,10131125,91852,2746,470614,21348,18885,7306,1815907,840531 +2010,12,2009,48638,10857298,98436,2943,504346,22879,20239,7829,1785094,900779 +2010,12,2010,40037,8936903,81027,2423,415167,18833,16660,6445,1277536,741502 +2010,13,1980,289,745169,14666,38,9026,1686,1491,106,266207,15105 +2010,13,1981,44,85149,959,6,2588,53,47,16,31074,2304 +2010,13,1982,49,94095,1060,6,2860,59,52,18,32453,2546 +2010,13,1983,54,103704,1168,7,3156,65,57,20,34330,2809 +2010,13,1984,60,116801,1315,8,3554,73,65,22,36496,3164 +2010,13,1985,69,133211,1500,9,4053,83,74,25,39164,3609 +2010,13,1986,83,116295,956,11,4126,101,89,30,40060,4360 +2010,13,1987,64,88916,730,8,3153,77,68,23,29142,3332 +2010,13,1988,54,75626,621,7,2681,65,58,20,23663,2833 +2010,13,1989,56,78567,645,7,2784,68,60,21,24042,2942 +2010,13,1990,53,73428,603,7,2600,63,56,19,21993,2748 +2010,13,1991,72,73367,602,7,2597,63,56,22,16632,2744 +2010,13,1992,90,92792,761,9,3283,80,71,28,20541,3470 +2010,13,1993,130,133290,1093,13,4714,115,102,41,28683,4981 +2010,13,1994,152,154920,1274,15,5528,135,119,49,32702,5837 +2010,13,1995,191,194239,1597,18,6927,169,149,62,39968,7315 +2010,13,1996,242,246826,2028,19,8797,215,190,80,42207,9290 +2010,13,1997,281,287057,2357,22,10225,249,221,95,46764,10798 +2010,13,1998,366,373944,3069,28,13312,325,287,125,50857,14058 +2010,13,1999,523,534696,4386,40,19023,464,410,182,68719,20088 +2010,13,2000,739,755472,6193,57,26860,655,580,257,94370,28365 +2010,13,2001,990,1010887,8006,76,35190,979,866,344,117701,37984 +2010,13,2002,1275,1302594,10316,98,45345,1261,1116,443,147294,48945 +2010,13,2003,1714,1750330,13861,132,60931,1695,1499,595,191673,65769 +2010,13,2004,1737,1292375,9858,134,50611,1718,1520,603,163129,66664 +2010,13,2005,2354,1751576,13361,181,68594,2328,2060,818,211978,90351 +2010,13,2006,7254,2185977,16633,226,85580,2906,2570,1020,252079,112758 +2010,13,2007,8636,2602370,19802,269,101881,3459,3060,1215,284347,134237 +2010,13,2008,8478,1629631,11370,264,93519,3396,3004,1193,214288,131791 +2010,13,2009,9086,1746441,12185,283,100222,3639,3219,1278,208230,141237 +2010,13,2010,7479,1437245,10027,233,82501,2996,2650,1052,145859,116264 +2010,16,1980,124,364106,6907,19,4605,762,674,68,97923,6819 +2010,16,1981,19,41838,456,3,1319,24,21,10,10778,1040 +2010,16,1982,21,46234,503,3,1457,27,24,12,11323,1149 +2010,16,1983,23,50859,553,4,1608,29,26,13,12020,1268 +2010,16,1984,26,57283,623,4,1811,33,29,14,12862,1428 +2010,16,1985,30,65331,710,4,2065,38,33,16,13901,1629 +2010,16,1986,36,56236,448,5,2103,46,40,20,13685,1968 +2010,16,1987,27,42995,343,4,1607,35,31,15,9999,1504 +2010,16,1988,23,36567,291,4,1366,30,26,13,8153,1279 +2010,16,1989,24,37987,302,4,1419,31,27,13,8301,1328 +2010,16,1990,23,35500,283,3,1326,29,25,12,7614,1241 +2010,16,1991,31,35469,283,3,1324,29,25,14,5710,1239 +2010,16,1992,39,44858,358,4,1674,36,32,18,7076,1566 +2010,16,1993,56,64432,514,6,2403,52,46,26,9921,2249 +2010,16,1994,65,73246,594,7,2828,61,54,31,11319,2635 +2010,16,1995,82,91830,744,9,3543,76,68,40,13886,3302 +2010,16,1996,104,116685,945,9,4500,97,86,51,14964,4194 +2010,16,1997,121,135695,1098,11,5231,113,100,60,16784,4874 +2010,16,1998,157,176755,1429,14,6810,147,130,79,19634,6346 +2010,16,1999,225,252721,2043,20,9731,210,186,115,27047,9069 +2010,16,2000,317,357045,2884,28,13740,296,262,162,37317,12805 +2010,16,2001,425,488505,3821,38,19689,413,365,217,47084,17148 +2010,16,2002,547,629470,4923,48,25371,532,470,280,59263,22096 +2010,16,2003,735,845836,6616,65,34091,714,632,376,77621,29691 +2010,16,2004,745,625358,4731,66,28329,724,641,382,64934,30095 +2010,16,2005,1010,847559,6413,89,38395,982,868,517,85072,40788 +2010,16,2006,3112,1057758,7910,111,47879,1225,1084,645,101686,50903 +2010,16,2007,3705,1259243,9417,133,56999,1458,1290,768,115985,60600 +2010,16,2008,3637,791481,5435,130,52316,1432,1267,754,85782,59495 +2010,16,2009,3898,848213,5825,140,56066,1534,1357,808,85035,63760 +2010,16,2010,3209,697356,4784,115,46153,1263,1117,665,61715,52486 +2010,17,1980,392,1144816,25856,81,12455,2535,2242,171,410777,22898 +2010,17,1981,60,130928,1692,12,3570,80,71,26,46558,3493 +2010,17,1982,66,144684,1869,14,3945,88,78,29,48796,3860 +2010,17,1983,73,159412,2058,15,4353,98,86,32,51755,4259 +2010,17,1984,82,179545,2318,17,4903,110,97,36,55239,4797 +2010,17,1985,94,204770,2644,19,5592,125,111,41,59537,5471 +2010,17,1986,113,178380,1686,23,5691,151,134,49,59922,6609 +2010,17,1987,87,136386,1288,18,4350,116,102,38,43720,5051 +2010,17,1988,74,116002,1095,15,3698,98,87,32,35604,4294 +2010,17,1989,76,120516,1137,16,3840,102,90,33,36226,4459 +2010,17,1990,71,112635,1063,15,3587,95,84,31,33187,4166 +2010,17,1991,97,112544,1062,15,3583,95,84,34,25214,4161 +2010,17,1992,123,142343,1343,19,4529,120,107,44,31204,5260 +2010,17,1993,176,204471,1928,27,6503,173,153,64,43680,7552 +2010,17,1994,207,236967,2245,31,7628,203,179,76,49891,8849 +2010,17,1995,259,297115,2813,39,9558,254,225,97,61118,11089 +2010,17,1996,329,377561,3573,40,12140,323,285,125,65396,14083 +2010,17,1997,382,439111,4152,46,14110,375,332,147,72861,16369 +2010,17,1998,498,572033,5406,60,18370,488,432,193,81224,21311 +2010,17,1999,711,817957,7725,85,26250,698,617,281,110650,30453 +2010,17,2000,1005,1155720,10908,121,37066,985,871,397,152542,43000 +2010,17,2001,1345,1512743,13623,162,49887,1461,1293,531,188258,57583 +2010,17,2002,1733,1949268,17554,208,64283,1883,1666,685,236538,74200 +2010,17,2003,2329,2619285,23588,280,86378,2531,2239,920,309200,99704 +2010,17,2004,2361,1934377,16781,284,71754,2565,2269,932,262464,101061 +2010,17,2005,3200,2621693,22744,384,97249,3476,3075,1264,343121,136970 +2010,17,2006,9860,3271889,28295,480,121320,4338,3838,1577,410783,170940 +2010,17,2007,11739,3895129,33685,571,144429,5165,4569,1878,467253,203501 +2010,17,2008,11525,2441520,19254,561,132587,5071,4486,1843,353323,199793 +2010,17,2009,12351,2616523,20634,601,142091,5434,4807,1975,349032,214113 +2010,17,2010,10167,2152951,16978,495,116966,4473,3957,1626,251967,176254 +2010,18,1980,67,190347,3834,11,2287,416,368,27,56196,3767 +2010,18,1981,10,21791,251,2,655,13,12,4,6239,575 +2010,18,1982,11,24080,278,2,724,15,13,5,6549,635 +2010,18,1983,13,26522,306,2,799,16,14,5,6953,701 +2010,18,1984,14,29872,344,2,900,18,16,6,7434,789 +2010,18,1985,16,34069,393,3,1026,21,18,7,8028,900 +2010,18,1986,19,29601,250,3,1045,25,22,8,7968,1087 +2010,18,1987,15,22633,191,2,799,19,17,6,5820,831 +2010,18,1988,13,19250,162,2,679,16,14,5,4744,707 +2010,18,1989,13,19999,168,2,705,17,15,5,4829,734 +2010,18,1990,12,18691,157,2,659,16,14,5,4427,685 +2010,18,1991,17,18676,157,2,658,16,14,6,3319,685 +2010,18,1992,21,23621,199,2,832,20,18,7,4112,865 +2010,18,1993,30,33931,285,3,1194,28,25,10,5764,1242 +2010,18,1994,35,39324,332,4,1400,33,29,12,6591,1456 +2010,18,1995,44,49306,417,5,1755,42,37,16,8084,1824 +2010,18,1996,56,62656,529,5,2229,53,47,20,8671,2317 +2010,18,1997,66,72869,615,6,2590,62,55,24,9697,2693 +2010,18,1998,85,94928,801,8,3373,80,71,32,11003,3506 +2010,18,1999,122,135739,1144,11,4819,115,101,46,15069,5010 +2010,18,2000,172,191790,1616,16,6805,162,143,65,20811,7074 +2010,18,2001,231,250867,2017,21,9163,240,212,87,25619,9474 +2010,18,2002,298,323258,2599,27,11807,309,274,112,32258,12207 +2010,18,2003,400,434369,3492,36,15865,416,368,150,42268,16403 +2010,18,2004,405,320852,2487,37,13180,421,373,152,35524,16627 +2010,18,2005,549,434855,3370,50,17863,571,505,207,46574,22534 +2010,18,2006,1693,542702,4186,62,22282,713,630,258,55897,28123 +2010,18,2007,2015,646078,4984,74,26527,848,751,307,63828,33480 +2010,18,2008,1978,404728,2851,73,24345,833,737,301,47638,32870 +2010,18,2009,2120,433737,3056,78,26090,893,790,323,47358,35226 +2010,18,2010,1745,356840,2513,64,21477,735,650,266,34569,28997 +2010,19,1980,149,468664,9846,28,5085,970,858,142,125257,8660 +2010,19,1981,23,53607,645,4,1457,31,27,22,13321,1321 +2010,19,1982,25,59240,712,5,1610,34,30,24,14046,1460 +2010,19,1983,28,65267,784,5,1777,37,33,26,14963,1611 +2010,19,1984,31,73509,883,6,2001,42,37,30,16076,1814 +2010,19,1985,36,83837,1007,7,2283,48,42,34,17454,2069 +2010,19,1986,43,73017,642,8,2324,58,51,41,16894,2500 +2010,19,1987,33,55821,491,6,1776,44,39,31,12383,1910 +2010,19,1988,28,47472,417,5,1510,38,33,27,10130,1624 +2010,19,1989,29,49313,433,5,1568,39,35,28,10329,1687 +2010,19,1990,27,46082,405,5,1465,37,32,26,9484,1576 +2010,19,1991,37,46038,405,5,1463,36,32,29,7247,1574 +2010,19,1992,47,58220,511,6,1849,46,41,37,9000,1989 +2010,19,1993,67,83619,734,9,2655,66,59,53,12650,2856 +2010,19,1994,78,92985,848,11,3156,78,69,63,14460,3347 +2010,19,1995,98,116568,1063,13,3955,97,86,80,17781,4194 +2010,19,1996,125,148105,1350,13,5023,123,109,103,19415,5326 +2010,19,1997,145,172219,1569,16,5838,143,127,122,21811,6191 +2010,19,1998,189,224312,2043,20,7600,187,165,160,25374,8060 +2010,19,1999,270,320686,2920,29,10861,267,236,233,35023,11518 +2010,19,2000,381,453021,4123,41,15336,377,333,330,48541,16263 +2010,19,2001,510,691251,5816,55,23758,528,467,441,63950,21779 +2010,19,2002,657,890720,7495,71,30614,680,601,569,80933,28063 +2010,19,2003,883,1196884,10071,95,41136,914,808,764,106649,37709 +2010,19,2004,895,884105,7172,97,34174,926,819,775,87980,38223 +2010,19,2005,1214,1198242,9721,131,46317,1255,1110,1050,116175,51804 +2010,19,2006,3740,1495412,12075,163,57776,1566,1386,1310,140537,64651 +2010,19,2007,4452,1780266,14375,195,68781,1865,1650,1560,162009,76967 +2010,19,2008,4371,1115082,8206,191,63122,1831,1620,1531,118302,75564 +2010,19,2009,4684,1195009,8795,205,67647,1962,1736,1641,119577,80980 +2010,19,2010,3856,983130,7233,168,55685,1615,1429,1351,89808,66661 +2010,20,1980,167,511729,10674,32,5413,1053,931,156,181905,9392 +2010,20,1981,26,58565,699,5,1551,33,29,24,20948,1433 +2010,20,1982,28,64718,773,5,1714,37,32,26,21912,1583 +2010,20,1983,31,71289,851,6,1891,41,36,29,23204,1747 +2010,20,1984,35,80293,958,7,2130,46,40,33,24712,1968 +2010,20,1985,40,91573,1093,8,2429,52,46,37,26571,2244 +2010,20,1986,48,79629,695,9,2473,63,56,45,26959,2711 +2010,20,1987,37,60876,531,7,1890,48,43,34,19637,2072 +2010,20,1988,31,51771,452,6,1607,41,36,29,15965,1761 +2010,20,1989,33,53778,469,6,1668,42,38,30,16231,1829 +2010,20,1990,30,50255,439,6,1559,40,35,28,14859,1709 +2010,20,1991,41,50207,438,6,1557,40,35,32,11201,1707 +2010,20,1992,52,63493,554,7,1968,50,44,41,13846,2157 +2010,20,1993,75,91191,795,10,2825,72,64,59,19354,3097 +2010,20,1994,88,101410,919,12,3358,84,74,70,22034,3630 +2010,20,1995,110,127129,1151,15,4208,106,93,89,26954,4548 +2010,20,1996,140,161524,1462,15,5344,134,119,115,28586,5777 +2010,20,1997,163,187823,1700,18,6211,156,138,135,31722,6714 +2010,20,1998,212,244635,2213,23,8087,203,179,178,35259,8741 +2010,20,1999,303,349742,3162,33,11555,290,256,259,47913,12491 +2010,20,2000,428,494068,4465,47,16316,409,362,366,65882,17638 +2010,20,2001,573,753830,6299,63,25273,573,507,490,85277,23619 +2010,20,2002,739,971359,8117,82,32566,738,653,632,106989,30435 +2010,20,2003,993,1305242,10906,110,43759,992,878,849,139623,40896 +2010,20,2004,1006,964186,7769,111,36355,1006,890,861,117832,41453 +2010,20,2005,1364,1306776,10529,151,49273,1363,1206,1167,153662,56181 +2010,20,2006,4203,1630864,13072,188,61459,1701,1505,1456,183268,70115 +2010,20,2007,5003,1941517,15562,224,73166,2025,1791,1733,207742,83471 +2010,20,2008,4912,1220408,8967,220,67185,1988,1759,1702,155192,81950 +2010,20,2009,5264,1307882,9610,236,72001,2130,1885,1824,152124,87824 +2010,20,2010,4334,1075961,7905,194,59269,1753,1551,1501,108272,72295 +2010,21,1980,94,263405,5307,14,3060,579,512,38,79661,5247 +2010,21,1981,14,30092,347,2,878,18,16,6,8896,800 +2010,21,1982,16,33253,383,2,970,20,18,6,9334,885 +2010,21,1983,17,36652,422,3,1070,22,20,7,9909,976 +2010,21,1984,20,41281,476,3,1205,25,22,8,10589,1099 +2010,21,1985,22,47081,542,3,1374,29,25,9,11429,1254 +2010,21,1986,27,41137,346,4,1399,35,31,11,11403,1514 +2010,21,1987,21,31452,265,3,1069,26,23,8,8326,1158 +2010,21,1988,18,26752,225,3,909,22,20,7,6786,984 +2010,21,1989,18,27792,234,3,944,23,21,7,6907,1022 +2010,21,1990,17,25975,218,3,882,22,19,7,6330,955 +2010,21,1991,23,25954,218,3,881,22,19,8,4880,953 +2010,21,1992,29,32826,276,3,1114,28,24,10,6043,1205 +2010,21,1993,42,47153,396,5,1599,40,35,15,8465,1730 +2010,21,1994,49,54646,461,6,1875,46,41,17,9675,2028 +2010,21,1995,62,68517,578,7,2350,58,51,22,11860,2541 +2010,21,1996,79,87068,734,7,2984,74,65,28,12792,3227 +2010,21,1997,91,101262,853,8,3469,86,76,33,14274,3751 +2010,21,1998,119,131915,1110,11,4516,112,99,44,16018,4884 +2010,21,1999,170,188627,1586,15,6454,159,141,64,21870,6979 +2010,21,2000,240,266517,2240,21,9113,225,199,90,30175,9854 +2010,21,2001,322,349041,2798,29,12267,334,295,121,37315,13195 +2010,21,2002,414,449761,3606,37,15807,430,381,156,46925,17003 +2010,21,2003,557,604356,4845,50,21240,578,512,209,61400,22848 +2010,21,2004,564,446252,3446,50,17642,586,518,212,51888,23159 +2010,21,2005,765,604813,4670,68,23911,794,703,287,67911,31387 +2010,21,2006,2357,754809,5814,85,29832,991,877,359,81432,39171 +2010,21,2007,2806,898589,6921,102,35515,1180,1044,427,92774,46633 +2010,21,2008,2755,562110,3945,100,32590,1159,1025,419,69694,45783 +2010,21,2009,2953,602401,4228,107,34926,1242,1098,449,69019,49065 +2010,21,2010,2431,495733,3479,88,28751,1022,904,370,50049,40389 +2010,22,1980,245,666600,15008,43,7153,1537,1360,98,248079,13904 +2010,22,1981,37,76013,978,7,2052,49,43,15,28359,2121 +2010,22,1982,41,84000,1081,7,2268,54,47,16,29688,2344 +2010,22,1983,46,92642,1192,8,2502,59,52,18,31470,2586 +2010,22,1984,51,104343,1343,9,2818,67,59,20,33545,2913 +2010,22,1985,58,119002,1531,10,3214,76,67,23,36104,3322 +2010,22,1986,71,104524,982,12,3271,92,81,28,36565,4013 +2010,22,1987,54,79911,750,10,2500,70,62,22,26654,3067 +2010,22,1988,46,67962,638,8,2126,60,53,18,21686,2608 +2010,22,1989,48,70599,662,8,2207,62,55,19,22055,2708 +2010,22,1990,45,65976,619,8,2062,58,51,18,20194,2530 +2010,22,1991,61,65916,618,8,2059,58,51,20,15595,2526 +2010,22,1992,77,83361,781,10,2603,73,65,26,19284,3194 +2010,22,1993,110,119731,1122,14,3738,105,93,37,26968,4585 +2010,22,1994,129,139145,1308,17,4383,123,109,44,30787,5373 +2010,22,1995,162,174443,1639,21,5492,154,136,56,37680,6733 +2010,22,1996,205,221648,2082,21,6975,196,173,72,40198,8551 +2010,22,1997,239,257747,2420,24,8108,227,201,85,44573,9939 +2010,22,1998,311,335726,3151,32,10555,296,262,112,48151,12940 +2010,22,1999,444,479992,4503,45,15083,423,374,163,65096,18491 +2010,22,2000,627,678103,6358,64,21298,597,528,230,89681,26110 +2010,22,2001,839,914806,8536,86,28110,900,796,308,114558,34965 +2010,22,2002,1082,1178787,10999,111,36222,1160,1026,397,143922,45054 +2010,22,2003,1454,1583967,14780,149,48672,1559,1379,533,188110,60541 +2010,22,2004,1473,1169257,10500,151,40423,1580,1398,541,158797,61365 +2010,22,2005,1997,1584713,14230,204,54785,2141,1894,733,207519,83168 +2010,22,2006,6153,1977731,17750,255,68364,2673,2364,914,248599,103794 +2010,22,2007,7325,2354455,21132,304,81386,3182,2815,1088,282646,123566 +2010,22,2008,7192,1471903,12045,298,74699,3124,2763,1069,211558,121314 +2010,22,2009,7707,1577406,12908,319,80053,3348,2961,1145,208624,130010 +2010,22,2010,6345,1298368,10625,263,65898,2756,2438,943,150156,107021 +2010,23,1980,227,622017,13275,35,8061,1406,1244,88,175165,12715 +2010,23,1981,35,71317,872,5,2309,44,39,13,18865,1940 +2010,23,1982,38,78810,964,6,2552,49,43,15,19853,2143 +2010,23,1983,42,86759,1060,7,2816,54,48,16,21110,2365 +2010,23,1984,48,97716,1194,7,3171,61,54,19,22633,2664 +2010,23,1985,54,111444,1362,8,3617,70,62,21,24515,3038 +2010,23,1986,66,96375,862,10,3683,84,74,25,23835,3670 +2010,23,1987,50,73678,659,8,2815,64,57,19,17438,2805 +2010,23,1988,43,62657,560,7,2393,55,48,17,14239,2385 +2010,23,1989,44,65085,582,7,2485,57,50,17,14507,2476 +2010,23,1990,41,60820,544,6,2321,53,47,16,13311,2313 +2010,23,1991,56,60761,544,6,2318,53,47,18,9660,2310 +2010,23,1992,71,76838,687,8,2931,67,59,23,11989,2921 +2010,23,1993,102,110356,987,12,4208,96,85,34,16839,4193 +2010,23,1994,120,128248,1151,14,4934,112,99,40,19296,4914 +2010,23,1995,150,160771,1442,17,6183,141,125,51,23713,6158 +2010,23,1996,191,204263,1832,17,7853,179,158,66,25403,7820 +2010,23,1997,222,237515,2129,20,9127,208,184,77,28539,9090 +2010,23,1998,288,309351,2772,26,11883,271,240,102,32894,11834 +2010,23,1999,412,442251,3961,37,16981,387,342,148,45305,16911 +2010,23,2000,582,624737,5592,53,23977,547,483,209,62787,23878 +2010,23,2001,779,836976,7824,70,31917,830,735,280,81967,31976 +2010,23,2002,1004,1078498,10081,91,41127,1070,947,361,103750,41203 +2010,23,2003,1349,1449207,13546,122,55263,1438,1272,485,136739,55365 +2010,23,2004,1368,1070604,9657,124,45916,1458,1289,491,111801,56119 +2010,23,2005,1854,1451006,13088,168,62230,1975,1748,666,147628,76059 +2010,23,2006,5713,1810864,16229,209,77616,2465,2181,831,178392,94922 +2010,23,2007,6801,2155805,19321,249,92401,2935,2596,990,205635,113003 +2010,23,2008,6677,1350073,11082,245,84801,2881,2549,972,147945,110944 +2010,23,2009,7155,1446843,11877,262,90879,3088,2732,1041,149387,118896 +2010,23,2010,5890,1190217,9767,216,74810,2541,2248,857,111993,97873 +2010,24,1980,448,1296369,30839,94,14598,2945,2605,190,426019,26737 +2010,24,1981,68,148130,2015,14,4185,93,82,29,46507,4079 +2010,24,1982,76,163694,2227,16,4625,103,91,32,48928,4507 +2010,24,1983,83,180411,2454,17,5103,113,100,35,52049,4973 +2010,24,1984,94,203196,2763,20,5748,128,113,40,55786,5601 +2010,24,1985,107,231744,3152,22,6555,146,129,45,60408,6388 +2010,24,1986,129,202317,2012,27,6673,176,156,55,59500,7717 +2010,24,1987,99,154686,1538,21,5100,134,119,42,43546,5898 +2010,24,1988,84,131565,1307,18,4336,114,101,36,35567,5015 +2010,24,1989,87,136682,1357,18,4503,119,105,37,36240,5207 +2010,24,1990,82,127742,1269,17,4206,111,98,35,33247,4864 +2010,24,1991,111,127637,1267,17,4201,111,98,38,25563,4858 +2010,24,1992,140,161430,1602,22,5311,140,124,49,31704,6142 +2010,24,1993,202,231884,2300,31,7625,201,178,71,44494,8818 +2010,24,1994,236,269514,2683,36,8941,236,208,84,50957,10333 +2010,24,1995,296,337916,3362,46,11204,295,261,107,62575,12948 +2010,24,1996,376,429402,4269,46,14230,375,332,137,67987,16445 +2010,24,1997,437,499392,4962,53,16539,436,385,162,76143,19114 +2010,24,1998,569,650548,6460,69,21533,567,502,213,86511,24884 +2010,24,1999,813,930207,9232,99,30770,811,717,310,118661,35559 +2010,24,2000,1147,1314289,13035,140,43447,1145,1013,437,164197,50210 +2010,24,2001,1537,1758594,16857,187,56923,1710,1513,586,206779,67238 +2010,24,2002,1980,2266063,21721,242,73349,2203,1949,755,260980,86641 +2010,24,2003,2661,3044966,29187,325,98561,2960,2619,1014,342868,116421 +2010,24,2004,2697,2248300,20753,329,81870,3001,2655,1028,287378,118006 +2010,24,2005,3655,3047155,28127,446,110960,4067,3598,1393,378088,159935 +2010,24,2006,11263,3802869,35028,557,138432,5076,4490,1739,456123,199600 +2010,24,2007,13408,4527251,41701,663,164801,6042,5345,2070,523307,237620 +2010,24,2008,13164,2830728,23729,650,151249,5932,5248,2032,390584,233291 +2010,24,2009,14107,3033630,25430,697,162090,6358,5624,2178,391789,250013 +2010,24,2010,11613,2496531,20927,574,133429,5233,4629,1793,290539,205805 +2010,25,1980,2777,7940157,189423,692,92504,18449,16320,1190,2977625,168471 +2010,25,1981,424,910942,12439,106,26486,582,515,181,336793,25699 +2010,25,1982,468,1006651,13746,117,29269,644,569,201,352812,28399 +2010,25,1983,516,1107947,15117,129,32295,710,628,221,373946,31335 +2010,25,1984,582,1247877,17026,145,36374,800,708,249,398896,35293 +2010,25,1985,663,1423193,19418,165,41484,912,807,284,429675,40251 +2010,25,1986,801,1227864,12301,200,42228,1102,975,343,430745,48625 +2010,25,1987,613,938519,9402,153,32274,842,745,262,314055,37164 +2010,25,1988,521,797979,7993,130,27439,716,633,223,255574,31596 +2010,25,1989,541,828718,8300,135,28493,744,658,232,259949,32810 +2010,25,1990,505,774234,7767,126,26618,695,614,216,238097,30650 +2010,25,1991,688,773317,7757,126,26584,694,614,236,168806,30611 +2010,25,1992,870,977710,9806,159,33607,877,776,303,208843,38698 +2010,25,1993,1249,1403862,14079,228,48250,1259,1114,440,292244,55560 +2010,25,1994,1463,1634249,16437,268,56568,1475,1305,522,333882,65105 +2010,25,1995,1834,2048140,20597,335,70886,1849,1636,663,408865,81585 +2010,25,1996,2329,2601519,26159,338,90028,2348,2077,852,427089,103616 +2010,25,1997,2707,3024141,30405,393,104641,2729,2414,1003,476209,120434 +2010,25,1998,3524,3937652,39585,511,136233,3553,3143,1322,526690,156795 +2010,25,1999,5036,5627550,56566,730,194675,5078,4492,1921,716127,224056 +2010,25,2000,7110,7947192,79872,1031,274882,7170,6343,2713,988261,316369 +2010,25,2001,9522,10036396,111447,1381,368506,9858,8721,3633,1274102,423662 +2010,25,2002,12269,12932548,143607,1780,474844,12703,11238,4681,1605263,545915 +2010,25,2003,16487,17377796,192968,2391,638060,17070,15100,6291,2104850,733562 +2010,25,2004,16711,12840980,137481,2424,530194,17302,15306,6376,1737481,743545 +2010,25,2005,22649,17403586,186330,3285,718580,23450,20744,8642,2278744,1007740 +2010,25,2006,69792,21719788,231266,4100,896133,29265,25889,10785,2734285,1257665 +2010,25,2007,83086,25857018,275319,4881,1066831,34840,30820,12839,3123625,1497230 +2010,25,2008,81573,16268432,157920,4792,979593,34205,30259,12605,2260433,1469951 +2010,25,2009,87420,17434532,169239,5135,1049808,36657,32428,13509,2243624,1575315 +2010,25,2010,71962,14339660,139203,4227,864180,30170,26689,11120,1633054,1296763 +2010,26,1980,324,926838,19019,53,11347,2025,1791,134,259830,18304 +2010,26,1981,49,106225,1249,8,3251,64,57,20,28288,2792 +2010,26,1982,55,117385,1380,9,3592,71,62,23,29754,3086 +2010,26,1983,60,129242,1518,10,3964,78,69,25,31631,3405 +2010,26,1984,68,145564,1709,11,4464,88,78,28,33893,3835 +2010,26,1985,77,166015,1950,13,5092,100,89,32,36690,4373 +2010,26,1986,94,143792,1236,15,5184,121,107,39,35962,5283 +2010,26,1987,72,109941,945,12,3962,92,82,29,26306,4038 +2010,26,1988,61,93510,803,10,3369,79,70,25,21476,3433 +2010,26,1989,63,97148,834,10,3498,82,72,26,21878,3565 +2010,26,1990,59,90795,781,10,3268,76,67,24,20072,3330 +2010,26,1991,80,90722,780,10,3264,76,67,27,14949,3326 +2010,26,1992,102,114744,986,12,4126,96,85,35,18544,4205 +2010,26,1993,146,164825,1415,17,5924,138,122,51,26032,6037 +2010,26,1994,171,191026,1648,20,6948,162,143,60,29804,7074 +2010,26,1995,214,239514,2065,26,8707,203,180,77,36608,8864 +2010,26,1996,272,304364,2623,26,11058,258,228,99,39455,11258 +2010,26,1997,316,353982,3049,30,12853,300,265,116,44286,13085 +2010,26,1998,411,461134,3969,39,16733,390,345,153,51034,17036 +2010,26,1999,588,659383,5672,56,23912,557,493,223,70229,24344 +2010,26,2000,830,931666,8009,79,33764,787,696,315,97194,34374 +2010,26,2001,1112,1217760,9995,105,45475,1167,1033,422,119597,46031 +2010,26,2002,1432,1569163,12879,136,58598,1504,1331,543,150951,59314 +2010,26,2003,1925,2108526,17305,183,78739,2021,1788,730,198321,79702 +2010,26,2004,1951,1557808,12335,185,65418,2049,1812,740,165650,80786 +2010,26,2005,2644,2111323,16718,251,88662,2777,2456,1003,217925,109491 +2010,26,2006,8147,2634945,20736,313,110588,3465,3065,1252,262379,136646 +2010,26,2007,9699,3136851,24685,373,131654,4125,3649,1490,300980,162674 +2010,26,2008,9522,1965474,14125,366,120823,4050,3583,1463,223336,159710 +2010,26,2009,10205,2106356,15137,392,129483,4340,3840,1568,223871,171158 +2010,26,2010,8401,1732646,12447,323,106588,3572,3160,1290,165761,140894 +2010,27,1980,110,313004,6574,19,3787,690,610,43,92440,6225 +2010,27,1981,17,35901,432,3,1085,22,19,7,10155,950 +2010,27,1982,19,39672,477,3,1199,24,21,7,10674,1049 +2010,27,1983,20,43668,525,4,1323,27,23,8,11340,1158 +2010,27,1984,23,49184,591,4,1490,30,26,9,12142,1304 +2010,27,1985,26,56093,674,5,1699,34,30,10,13132,1487 +2010,27,1986,32,48524,428,5,1730,41,36,12,12944,1797 +2010,27,1987,24,37102,327,4,1322,31,28,10,9464,1373 +2010,27,1988,21,31559,278,4,1124,27,24,8,7722,1167 +2010,27,1989,21,32788,289,4,1167,28,25,8,7865,1212 +2010,27,1990,20,30646,270,3,1090,26,23,8,7214,1133 +2010,27,1991,27,30623,270,3,1089,26,23,9,5353,1131 +2010,27,1992,34,38733,341,4,1377,33,29,11,6638,1430 +2010,27,1993,49,55642,490,6,1977,47,42,16,9314,2053 +2010,27,1994,58,64772,571,7,2318,55,49,19,10667,2406 +2010,27,1995,72,81218,716,9,2904,69,61,25,13096,3015 +2010,27,1996,92,103216,909,9,3688,88,78,32,14062,3829 +2010,27,1997,107,120051,1057,11,4287,102,90,37,15781,4450 +2010,27,1998,139,156402,1376,14,5581,133,117,49,18072,5794 +2010,27,1999,199,223659,1967,20,7976,190,168,72,24828,8279 +2010,27,2000,281,316040,2777,28,11262,268,237,101,34345,11690 +2010,27,2001,376,399247,3431,38,14846,385,341,136,42040,15654 +2010,27,2002,485,514456,4422,49,19129,497,439,175,53030,20172 +2010,27,2003,652,691289,5941,65,25705,667,590,235,69627,27105 +2010,27,2004,661,510812,4236,66,21356,676,598,238,58370,27474 +2010,27,2005,895,692312,5742,90,28945,917,811,323,76732,37236 +2010,27,2006,2759,864010,7120,112,36102,1144,1012,403,92305,46471 +2010,27,2007,3284,1028589,8477,134,42979,1362,1205,480,105777,55323 +2010,27,2008,3224,644958,4854,131,39445,1337,1183,471,78896,54315 +2010,27,2009,3455,691188,5201,141,42273,1433,1267,505,78961,58208 +2010,27,2010,2844,568492,4276,116,34798,1179,1043,415,58300,47916 +2010,28,1980,93,254982,5332,15,2934,576,510,36,87994,5226 +2010,28,1981,14,29102,348,2,841,18,16,6,10058,797 +2010,28,1982,16,32159,385,2,930,20,18,6,10530,881 +2010,28,1983,17,35458,424,3,1026,22,20,7,11161,972 +2010,28,1984,20,39936,477,3,1156,25,22,8,11897,1095 +2010,28,1985,22,45546,544,3,1318,28,25,9,12805,1249 +2010,28,1986,27,39903,348,4,1341,34,30,10,12959,1508 +2010,28,1987,21,30509,266,3,1025,26,23,8,9446,1153 +2010,28,1988,18,25948,226,3,872,22,20,7,7686,980 +2010,28,1989,18,26958,235,3,905,23,21,7,7817,1018 +2010,28,1990,17,25194,220,3,846,22,19,7,7157,951 +2010,28,1991,23,25174,219,3,844,22,19,7,5581,950 +2010,28,1992,29,31839,277,3,1068,27,24,10,6901,1200 +2010,28,1993,42,45734,398,5,1533,39,35,14,9650,1723 +2010,28,1994,49,53155,464,6,1797,46,41,16,11017,2020 +2010,28,1995,62,66646,582,7,2252,58,51,21,13483,2531 +2010,28,1996,78,84689,739,7,2860,73,65,27,14472,3214 +2010,28,1997,91,98493,859,8,3325,85,75,32,16080,3736 +2010,28,1998,119,128305,1118,11,4328,111,98,42,17693,4864 +2010,28,1999,169,183461,1598,15,6185,159,140,61,24005,6950 +2010,28,2000,239,259212,2256,22,8734,224,198,86,33035,9814 +2010,28,2001,320,347023,2917,29,11441,335,296,115,41476,13142 +2010,28,2002,413,447162,3759,37,14742,431,381,148,52021,16934 +2010,28,2003,555,600863,5051,50,19809,579,512,199,67866,22755 +2010,28,2004,562,443593,3590,51,16453,587,519,202,57671,23065 +2010,28,2005,762,601210,4866,69,22299,796,704,273,75195,31260 +2010,28,2006,2348,750313,6064,86,27823,993,879,341,89812,39013 +2010,28,2007,2795,893236,7219,102,33123,1182,1046,406,101790,46445 +2010,28,2008,2744,558494,4119,100,30399,1161,1027,399,76797,45598 +2010,28,2009,2941,598527,4414,108,32578,1244,1100,427,75326,48867 +2010,28,2010,2421,492609,3633,89,26818,1024,906,352,53687,40226 +2010,29,1980,312,930411,17736,47,10206,1919,1698,276,283359,17075 +2010,29,1981,48,106360,1161,7,2926,61,54,42,32126,2605 +2010,29,1982,53,117535,1283,8,3233,67,59,47,33645,2878 +2010,29,1983,58,129519,1413,9,3567,74,65,51,35664,3176 +2010,29,1984,65,145876,1591,10,4018,83,74,58,38034,3577 +2010,29,1985,75,166371,1814,11,4582,95,84,66,40956,4080 +2010,29,1986,90,145091,1156,13,4664,115,101,80,41182,4928 +2010,29,1987,69,110922,883,10,3565,88,78,61,30022,3767 +2010,29,1988,59,94332,751,9,3031,74,66,52,24429,3202 +2010,29,1989,61,97989,780,9,3147,77,68,54,24846,3325 +2010,29,1990,57,91569,729,9,2940,72,64,50,22754,3107 +2010,29,1991,77,91482,728,8,2936,72,64,57,17150,3103 +2010,29,1992,98,115689,921,11,3712,91,81,73,21216,3922 +2010,29,1993,140,166159,1322,15,5329,131,116,106,29685,5631 +2010,29,1994,165,184761,1527,18,6334,153,136,126,33818,6599 +2010,29,1995,206,231621,1914,23,7937,192,170,161,41408,8269 +2010,29,1996,262,294286,2430,23,10081,244,216,207,44087,10502 +2010,29,1997,304,342200,2825,26,11717,284,251,243,49005,12207 +2010,29,1998,396,445707,3677,34,15254,370,327,321,54695,15892 +2010,29,1999,566,637203,5255,49,21798,528,467,467,74492,22709 +2010,29,2000,800,900154,7420,70,30779,746,660,660,102604,32065 +2010,29,2001,1071,1374348,10470,93,47676,1045,924,884,133383,42940 +2010,29,2002,1380,1770935,13491,120,61434,1346,1191,1139,167667,55331 +2010,29,2003,1854,2379652,18129,161,82550,1809,1600,1530,219285,74350 +2010,29,2004,1879,1757438,12904,164,68575,1834,1622,1551,183724,75362 +2010,29,2005,2547,2381886,17489,222,92940,2485,2198,2102,240236,102139 +2010,29,2006,7849,2972603,21740,277,115943,3101,2744,2623,287545,127470 +2010,29,2007,9344,3538840,25882,329,138028,3692,3266,3123,327164,151751 +2010,29,2008,9174,2219351,14863,323,126699,3625,3207,3066,242203,148986 +2010,29,2009,9831,2378431,15928,347,135781,3885,3436,3286,238956,159665 +2010,29,2010,8093,1957014,13104,285,111772,3198,2829,2705,172093,131433 +2010,30,1980,25,68088,1191,3,853,143,127,13,22276,1263 +2010,30,1981,4,7823,79,0,244,5,4,2,2618,193 +2010,30,1982,4,8645,87,1,270,5,4,2,2732,213 +2010,30,1983,5,9510,95,1,298,6,5,2,2887,235 +2010,30,1984,5,10711,107,1,335,6,5,3,3066,265 +2010,30,1985,6,12216,123,1,383,7,6,3,3287,302 +2010,30,1986,7,10510,77,1,389,9,8,4,3363,364 +2010,30,1987,6,8035,59,1,298,7,6,3,2444,279 +2010,30,1988,5,6834,50,1,253,6,5,2,1983,237 +2010,30,1989,5,7099,52,1,263,6,5,2,2014,246 +2010,30,1990,5,6635,49,1,246,5,5,2,1842,230 +2010,30,1991,6,6629,49,1,245,5,5,3,1367,229 +2010,30,1992,8,8383,62,1,310,7,6,3,1687,290 +2010,30,1993,11,12042,88,1,445,10,9,5,2354,416 +2010,30,1994,13,13689,102,1,524,11,10,6,2677,488 +2010,30,1995,17,17162,128,2,656,14,13,8,3269,612 +2010,30,1996,21,21807,162,2,834,18,16,10,3436,777 +2010,30,1997,24,25359,189,2,969,21,19,12,3811,903 +2010,30,1998,32,33033,246,2,1261,28,24,15,4276,1175 +2010,30,1999,45,47230,351,3,1802,39,35,22,5809,1679 +2010,30,2000,64,66726,496,5,2545,56,49,31,7957,2371 +2010,30,2001,86,91356,657,6,3646,78,69,42,9937,3176 +2010,30,2002,111,117718,847,8,4698,100,88,54,12406,4092 +2010,30,2003,149,158180,1138,11,6312,134,119,73,16100,5499 +2010,30,2004,151,116928,813,11,5245,136,120,74,13724,5573 +2010,30,2005,204,158475,1102,15,7109,185,163,100,17769,7554 +2010,30,2006,629,197777,1360,18,8865,230,204,125,20971,9427 +2010,30,2007,749,235451,1620,22,10554,274,243,149,23529,11223 +2010,30,2008,735,148324,944,22,9690,269,238,146,17704,11018 +2010,30,2009,788,158956,1011,23,10385,288,255,157,17019,11808 +2010,30,2010,649,130703,831,19,8549,237,210,129,11672,9720 +2010,31,1980,149,471106,10055,30,5319,973,860,143,149012,8659 +2010,31,1981,23,53977,660,5,1524,31,27,22,16587,1321 +2010,31,1982,25,59648,729,5,1684,34,30,24,17409,1460 +2010,31,1983,28,65680,802,6,1858,37,33,27,18479,1611 +2010,31,1984,31,73975,903,6,2092,42,37,30,19753,1814 +2010,31,1985,36,84368,1030,7,2386,48,43,34,21328,2069 +2010,31,1986,43,73124,654,9,2429,58,51,41,21196,2499 +2010,31,1987,33,55904,500,7,1857,44,39,32,15479,1910 +2010,31,1988,28,47543,425,6,1579,38,33,27,12617,1624 +2010,31,1989,29,49386,441,6,1639,39,35,28,12843,1686 +2010,31,1990,27,46150,413,5,1531,37,32,26,11772,1575 +2010,31,1991,37,46106,412,5,1529,37,32,29,9125,1573 +2010,31,1992,47,58306,521,7,1933,46,41,37,11297,1989 +2010,31,1993,67,83743,749,10,2776,66,59,54,15822,2856 +2010,31,1994,79,93132,865,11,3299,78,69,64,18038,3346 +2010,31,1995,99,116752,1084,14,4134,97,86,81,22106,4193 +2010,31,1996,125,148339,1376,14,5251,124,110,104,23967,5326 +2010,31,1997,146,172491,1600,17,6103,144,127,123,26786,6190 +2010,31,1998,190,224666,2083,22,7945,187,166,162,30912,8059 +2010,31,1999,271,321192,2976,31,11354,268,237,236,42404,11516 +2010,31,2000,383,453737,4203,44,16032,378,334,333,58403,16260 +2010,31,2001,512,691852,5929,59,24844,529,468,446,76027,21775 +2010,31,2002,660,891496,7640,76,32013,682,603,574,95553,28058 +2010,31,2003,887,1197927,10266,102,43016,916,811,772,124949,37703 +2010,31,2004,899,885119,7319,104,35741,929,822,782,104847,38216 +2010,31,2005,1219,1199616,9920,141,48441,1259,1114,1060,137073,51795 +2010,31,2006,3756,1497128,12299,176,60415,1571,1390,1323,163839,64640 +2010,31,2007,4471,1782307,14641,209,71923,1870,1654,1575,186357,76953 +2010,31,2008,4390,1119289,8410,205,66025,1836,1624,1546,138155,75551 +2010,31,2009,4704,1199516,9013,220,70758,1968,1741,1657,136240,80966 +2010,31,2010,3872,986637,7411,181,58246,1620,1433,1364,98013,66650 +2010,32,1980,76,237708,4482,11,2881,478,423,68,56612,4277 +2010,32,1981,12,27139,293,2,826,15,13,10,5991,652 +2010,32,1982,13,29990,324,2,913,17,15,11,6319,721 +2010,32,1983,14,33063,357,2,1008,18,16,13,6734,795 +2010,32,1984,16,37238,402,2,1135,21,18,14,7237,896 +2010,32,1985,18,42470,458,3,1294,24,21,16,7860,1022 +2010,32,1986,22,37180,293,3,1318,29,25,20,7593,1234 +2010,32,1987,17,28427,224,2,1007,22,19,15,5567,943 +2010,32,1988,14,24178,190,2,856,19,16,13,4554,802 +2010,32,1989,15,25119,198,2,889,19,17,13,4644,833 +2010,32,1990,14,23476,185,2,831,18,16,12,4264,778 +2010,32,1991,19,23456,184,2,830,18,16,14,3501,777 +2010,32,1992,24,29667,233,3,1049,23,20,18,4344,982 +2010,32,1993,34,42615,335,4,1506,33,29,26,6100,1410 +2010,32,1994,40,47389,387,4,1790,38,34,31,6968,1653 +2010,32,1995,50,59417,485,5,2243,48,42,39,8561,2071 +2010,32,1996,64,75504,615,5,2848,61,54,51,9542,2630 +2010,32,1997,75,87811,715,6,3310,71,63,60,10687,3057 +2010,32,1998,97,114391,931,8,4310,92,81,79,12612,3980 +2010,32,1999,139,163566,1331,12,6159,132,116,114,17425,5688 +2010,32,2000,196,231104,1879,17,8696,186,164,162,24072,8031 +2010,32,2001,262,343966,2640,22,13495,254,225,216,31656,10755 +2010,32,2002,338,443224,3402,29,17390,327,290,279,39908,13859 +2010,32,2003,454,595572,4572,39,23367,440,389,375,52365,18622 +2010,32,2004,460,439772,3252,39,19408,446,395,380,43566,18876 +2010,32,2005,624,596029,4408,53,26304,604,535,515,57207,25582 +2010,32,2006,1921,743848,5485,66,32820,754,667,642,68831,31927 +2010,32,2007,2287,885539,6529,79,39072,898,794,764,78765,38008 +2010,32,2008,2246,553525,3712,78,35843,882,780,751,57804,37316 +2010,32,2009,2407,593200,3978,83,38412,945,836,804,57626,39991 +2010,32,2010,1981,488156,3273,69,31620,778,688,662,42277,32919 +2010,33,1980,534,1466603,31127,87,18820,3277,2899,207,441200,29490 +2010,33,1981,81,168368,2049,13,5389,103,92,32,48570,4498 +2010,33,1982,90,186058,2264,15,5955,114,101,35,51024,4971 +2010,33,1983,99,204735,2488,16,6571,126,112,39,54179,5485 +2010,33,1984,112,230592,2802,18,7401,142,126,43,57975,6178 +2010,33,1985,128,262988,3196,21,8440,162,143,50,62664,7046 +2010,33,1986,154,226739,2019,25,8594,196,173,60,61742,8511 +2010,33,1987,118,173359,1543,19,6568,150,132,46,45115,6505 +2010,33,1988,100,147447,1312,16,5584,127,113,39,36793,5531 +2010,33,1989,104,153182,1363,17,5799,132,117,40,37462,5743 +2010,33,1990,97,143163,1276,16,5417,123,109,38,34355,5365 +2010,33,1991,132,143045,1274,16,5410,123,109,43,25105,5358 +2010,33,1992,167,180918,1611,20,6839,156,138,55,31124,6774 +2010,33,1993,240,259877,2313,29,9820,224,198,80,43660,9725 +2010,33,1994,281,302065,2698,34,11514,262,232,94,49979,11396 +2010,33,1995,352,378730,3381,42,14429,328,291,120,61348,14281 +2010,33,1996,448,481265,4293,42,18325,417,369,154,65572,18137 +2010,33,1997,520,559709,4990,49,21300,485,429,182,73558,21081 +2010,33,1998,677,729124,6497,64,27730,631,558,240,84752,27446 +2010,33,1999,968,1042562,9284,91,39626,902,798,349,116537,39219 +2010,33,2000,1367,1473038,13109,129,55953,1274,1127,492,161119,55378 +2010,33,2001,1830,1964745,16921,173,73331,1901,1682,659,200833,74159 +2010,33,2002,2358,2531701,21804,223,94492,2450,2167,850,253315,95559 +2010,33,2003,3169,3401914,29298,299,126971,3292,2912,1142,332565,128405 +2010,33,2004,3212,2513781,20909,303,105506,3337,2952,1157,277180,130152 +2010,33,2005,4353,3406967,28338,411,142993,4522,4000,1569,364261,176397 +2010,33,2006,13415,4251915,35082,513,178326,5644,4993,1958,437622,220145 +2010,33,2007,15970,5061834,41764,611,212294,6719,5944,2331,501271,262079 +2010,33,2008,15679,3173959,24015,600,194866,6596,5835,2288,370256,257304 +2010,33,2009,16803,3401463,25736,643,208834,7069,6254,2452,369990,275747 +2010,33,2010,13832,2797646,21154,529,171907,5818,5146,2019,272430,226989 +2010,34,1980,886,2515002,59857,221,28871,5860,5184,378,1026966,53574 +2010,34,1981,135,288125,3924,34,8270,185,164,58,118534,8172 +2010,34,1982,149,318397,4336,37,9139,204,181,64,123941,9031 +2010,34,1983,165,350605,4772,41,10084,226,200,70,131204,9965 +2010,34,1984,186,394885,5374,46,11358,254,225,79,139669,11223 +2010,34,1985,212,450363,6129,53,12953,290,256,90,150099,12800 +2010,34,1986,256,390100,3892,64,13183,350,310,109,152417,15463 +2010,34,1987,195,298173,2975,49,10076,268,237,83,110975,11818 +2010,34,1988,166,253523,2529,42,8566,227,201,71,90190,10048 +2010,34,1989,172,263288,2626,43,8895,236,209,74,91674,10434 +2010,34,1990,161,245979,2456,40,8310,221,195,69,83905,9747 +2010,34,1991,219,245687,2453,40,8299,220,195,75,59333,9734 +2010,34,1992,277,310624,3101,51,10492,279,246,96,73334,12306 +2010,34,1993,398,446015,4453,73,15063,400,354,140,102497,17668 +2010,34,1994,467,519204,5199,86,17660,469,415,166,116976,20704 +2010,34,1995,585,650698,6514,107,22130,587,520,211,143086,25944 +2010,34,1996,743,826508,8274,108,28106,746,660,271,148016,32950 +2010,34,1997,863,960775,9617,126,32668,867,767,319,164317,38298 +2010,34,1998,1124,1250999,12520,163,42530,1129,998,420,176678,49861 +2010,34,1999,1606,1787882,17891,233,60775,1613,1427,611,238493,71250 +2010,34,2000,2268,2524834,25262,330,85815,2277,2015,863,328735,100606 +2010,34,2001,3037,3191159,35260,441,115028,3132,2771,1156,422858,134725 +2010,34,2002,3913,4112019,45435,569,148220,4036,3570,1489,532061,173602 +2010,34,2003,5258,5525425,61052,764,199167,5423,4798,2001,696616,233273 +2010,34,2004,5330,4081799,43458,775,165477,5497,4863,2029,578713,236448 +2010,34,2005,7223,5532123,58899,1050,224273,7450,6591,2749,757614,320462 +2010,34,2006,22258,6904120,73217,1311,279727,9298,8225,3431,907951,399939 +2010,34,2007,26498,8219238,87164,1560,333010,11069,9792,4085,1034717,476121 +2010,34,2008,26015,5171776,50017,1532,305805,10867,9614,4010,755753,467445 +2010,34,2009,27880,5542478,53603,1642,327724,11646,10303,4298,747115,500951 +2010,34,2010,22950,4559523,44101,1351,269776,9586,8480,3538,539992,412373 +2010,35,1980,95,269774,4873,13,3313,559,495,80,104196,4925 +2010,35,1981,15,30825,319,2,950,18,16,12,12539,751 +2010,35,1982,16,34063,352,2,1050,20,17,14,13057,830 +2010,35,1983,18,37543,388,2,1158,22,19,15,13781,916 +2010,35,1984,20,42284,437,3,1305,24,21,17,14601,1032 +2010,35,1985,23,48224,498,3,1488,28,24,19,15609,1177 +2010,35,1986,28,42111,317,4,1514,33,30,23,16241,1422 +2010,35,1987,21,32193,243,3,1157,26,23,18,11787,1087 +2010,35,1988,18,27379,206,2,984,22,19,15,9549,924 +2010,35,1989,19,28440,214,2,1022,23,20,16,9691,959 +2010,35,1990,17,26577,200,2,954,21,19,15,8855,896 +2010,35,1991,24,26551,200,2,953,21,19,17,7053,895 +2010,35,1992,30,33577,253,3,1205,27,24,22,8691,1131 +2010,35,1993,43,48225,363,4,1730,38,34,32,12102,1624 +2010,35,1994,50,53623,419,5,2056,45,40,38,13738,1903 +2010,35,1995,63,67223,526,6,2577,56,50,48,16744,2385 +2010,35,1996,80,85410,668,6,3273,71,63,61,17825,3029 +2010,35,1997,93,99316,776,7,3804,83,73,72,19648,3521 +2010,35,1998,121,129357,1010,9,4952,108,95,95,21512,4584 +2010,35,1999,173,184935,1444,13,7077,154,136,139,28973,6551 +2010,35,2000,245,261251,2038,19,9992,217,192,196,39516,9249 +2010,35,2001,327,399039,2877,25,15488,304,269,263,50636,12386 +2010,35,2002,422,514188,3707,32,19957,392,347,338,62919,15961 +2010,35,2003,567,690928,4981,44,26817,527,466,455,81216,21447 +2010,35,2004,575,510214,3544,44,22275,534,473,461,70008,21739 +2010,35,2005,779,691501,4803,60,30189,724,641,625,90029,29463 +2010,35,2006,2400,862998,5975,75,37665,904,800,780,105727,36770 +2010,35,2007,2857,1027384,7113,89,44839,1076,952,928,117477,43774 +2010,35,2008,2805,645475,4114,87,41163,1056,935,911,89183,42976 +2010,35,2009,3006,691742,4409,94,44114,1132,1002,977,84166,46057 +2010,35,2010,2475,569224,3628,77,36313,932,824,804,55674,37913 +2010,36,1980,244,684505,15078,49,8413,1522,1346,97,293612,13611 +2010,36,1981,37,78897,998,7,2406,48,43,15,34822,2076 +2010,36,1982,41,87187,1103,8,2659,53,47,16,36322,2294 +2010,36,1983,45,95810,1209,9,2933,59,52,18,38357,2532 +2010,36,1984,51,107910,1362,10,3304,66,58,20,40718,2851 +2010,36,1985,58,123070,1553,12,3768,75,67,23,43622,3252 +2010,36,1986,70,104855,973,14,3835,91,80,28,44848,3929 +2010,36,1987,54,80169,743,11,2931,69,61,21,32587,3003 +2010,36,1988,46,68186,632,9,2492,59,52,18,26431,2553 +2010,36,1989,48,70838,656,10,2588,61,54,19,26839,2651 +2010,36,1990,44,66205,615,9,2417,57,51,18,24548,2476 +2010,36,1991,60,66151,614,9,2414,57,51,20,17236,2473 +2010,36,1992,76,83665,777,11,3052,72,64,25,21279,3126 +2010,36,1993,110,120180,1115,16,4382,104,92,37,29697,4489 +2010,36,1994,129,139695,1301,19,5138,122,108,44,33841,5260 +2010,36,1995,161,175150,1630,24,6439,153,135,56,41339,6591 +2010,36,1996,205,222569,2070,24,8178,194,171,72,42562,8371 +2010,36,1997,238,258847,2406,28,9505,225,199,85,47225,9730 +2010,36,1998,310,337196,3132,36,12375,293,259,112,52098,12668 +2010,36,1999,443,482152,4476,52,17684,419,371,162,70569,18102 +2010,36,2000,625,681235,6320,73,24970,592,523,229,96837,25560 +2010,36,2001,837,906891,8147,97,32716,883,781,307,119036,34228 +2010,36,2002,1079,1168590,10499,125,42157,1137,1006,396,148894,44105 +2010,36,2003,1449,1570263,14107,169,56647,1528,1352,532,193652,59266 +2010,36,2004,1469,1160888,10085,171,47088,1549,1370,539,164829,60072 +2010,36,2005,1991,1573370,13669,232,63819,2099,1857,730,214033,81417 +2010,36,2006,6136,1963574,16871,289,79555,2620,2318,911,253443,101609 +2010,36,2007,7305,2337601,20084,344,94709,3119,2759,1085,285540,120963 +2010,36,2008,7172,1474804,11739,338,87021,3062,2709,1065,215532,118760 +2010,36,2009,7686,1580516,12581,362,93258,3282,2903,1141,208977,127272 +2010,36,2010,6327,1299481,10338,298,76768,2700,2389,940,145683,104768 +2010,37,1980,38,103039,2124,6,1208,233,206,15,36147,2104 +2010,37,1981,6,11767,139,1,346,7,6,2,4161,321 +2010,37,1982,6,13004,153,1,383,8,7,2,4352,355 +2010,37,1983,7,14334,169,1,422,9,8,3,4610,391 +2010,37,1984,8,16145,190,1,476,10,9,3,4909,441 +2010,37,1985,9,18413,217,1,543,12,10,3,5278,503 +2010,37,1986,11,16101,139,2,552,14,12,4,5359,607 +2010,37,1987,8,12311,106,1,422,11,9,3,3904,464 +2010,37,1988,7,10471,90,1,359,9,8,3,3174,395 +2010,37,1989,7,10878,94,1,373,9,8,3,3227,410 +2010,37,1990,7,10166,87,1,348,9,8,3,2953,383 +2010,37,1991,9,10158,87,1,348,9,8,3,2241,382 +2010,37,1992,12,12847,110,1,439,11,10,4,2770,483 +2010,37,1993,17,18454,158,2,631,16,14,6,3872,694 +2010,37,1994,20,21449,185,2,740,19,16,7,4419,813 +2010,37,1995,25,26893,232,3,927,23,21,8,5406,1019 +2010,37,1996,32,34173,294,3,1177,30,26,11,5743,1294 +2010,37,1997,37,39743,342,3,1369,34,30,13,6375,1504 +2010,37,1998,49,51773,445,4,1782,45,40,17,6974,1958 +2010,37,1999,69,74029,636,6,2546,64,57,25,9449,2798 +2010,37,2000,98,104596,898,9,3595,90,80,35,13002,3951 +2010,37,2001,131,139997,1161,12,4710,135,120,47,16265,5291 +2010,37,2002,169,180396,1496,15,6069,174,154,60,20401,6818 +2010,37,2003,227,242402,2010,20,8155,234,207,81,26615,9161 +2010,37,2004,230,178968,1429,20,6774,237,210,82,22568,9286 +2010,37,2005,312,242558,1937,27,9180,321,284,111,29423,12585 +2010,37,2006,961,302714,2413,34,11454,401,355,139,35133,15707 +2010,37,2007,1144,360376,2873,41,13636,478,422,165,39816,18699 +2010,37,2008,1123,225522,1644,40,12516,469,415,162,29947,18358 +2010,37,2009,1204,241686,1762,43,13413,502,444,174,29359,19674 +2010,37,2010,991,198907,1450,35,11041,414,366,143,20907,16195 +2010,38,1980,25,71880,1449,4,926,157,138,10,23426,1405 +2010,38,1981,4,8282,96,1,265,5,4,1,2672,214 +2010,38,1982,4,9152,106,1,293,5,5,2,2797,237 +2010,38,1983,5,10058,116,1,323,6,5,2,2962,261 +2010,38,1984,5,11329,131,1,364,7,6,2,3158,294 +2010,38,1985,6,12920,149,1,415,8,7,2,3399,336 +2010,38,1986,7,11058,94,1,423,9,8,3,3417,406 +2010,38,1987,6,8455,72,1,323,7,6,2,2490,310 +2010,38,1988,5,7192,61,1,275,6,5,2,2025,264 +2010,38,1989,5,7472,63,1,285,6,6,2,2060,274 +2010,38,1990,5,6984,59,1,266,6,5,2,1887,256 +2010,38,1991,6,6978,59,1,266,6,5,2,1360,255 +2010,38,1992,8,8827,75,1,336,7,7,3,1682,323 +2010,38,1993,11,12680,108,1,483,11,9,4,2354,463 +2010,38,1994,13,14761,126,2,566,13,11,4,2690,543 +2010,38,1995,17,18510,158,2,709,16,14,6,3294,681 +2010,38,1996,21,23523,200,2,901,20,18,7,3465,864 +2010,38,1997,24,27360,233,2,1047,23,20,8,3874,1005 +2010,38,1998,32,35645,303,3,1364,30,27,11,4396,1308 +2010,38,1999,46,50973,433,4,1948,43,38,16,6010,1869 +2010,38,2000,64,72027,611,6,2751,61,54,23,8280,2639 +2010,38,2001,86,90644,753,8,3629,87,77,31,10046,3534 +2010,38,2002,111,116800,971,11,4676,113,100,39,12616,4554 +2010,38,2003,149,156948,1305,15,6284,151,134,53,16481,6119 +2010,38,2004,151,116092,934,15,5222,153,136,54,13933,6202 +2010,38,2005,205,157342,1266,20,7078,208,184,73,18198,8406 +2010,38,2006,631,196363,1561,25,8825,259,229,91,21681,10491 +2010,38,2007,752,233767,1858,30,10506,309,273,108,24625,12489 +2010,38,2008,738,147239,1078,29,9645,303,268,106,18477,12261 +2010,38,2009,791,157793,1155,31,10337,325,287,114,18189,13140 +2010,38,2010,651,129684,948,26,8509,267,236,94,13033,10817 +2010,39,1980,395,1104273,22595,63,13115,2421,2142,160,328909,21804 +2010,39,1981,60,126478,1482,10,3758,76,68,24,36451,3326 +2010,39,1982,67,139766,1638,11,4153,84,75,27,38271,3676 +2010,39,1983,74,153917,1802,12,4582,93,82,30,40635,4056 +2010,39,1984,83,173356,2030,13,5161,105,93,34,43455,4568 +2010,39,1985,94,197711,2315,15,5886,120,106,38,46938,5210 +2010,39,1986,114,171520,1469,18,5992,145,128,46,46526,6293 +2010,39,1987,87,131141,1123,14,4580,111,98,35,33986,4810 +2010,39,1988,74,111541,955,12,3894,94,83,30,27708,4089 +2010,39,1989,77,115881,992,12,4043,98,86,31,28208,4246 +2010,39,1990,72,108304,928,11,3777,91,81,29,25860,3967 +2010,39,1991,98,108216,926,11,3772,91,81,33,19297,3962 +2010,39,1992,124,136870,1171,14,4769,115,102,42,23912,5009 +2010,39,1993,178,196608,1682,21,6847,165,146,62,33524,7191 +2010,39,1994,208,227859,1958,24,8031,194,171,73,38339,8426 +2010,39,1995,261,285696,2454,31,10063,243,215,93,47034,10559 +2010,39,1996,332,363050,3116,31,12781,308,273,120,50417,13411 +2010,39,1997,385,422234,3622,36,14856,358,317,141,56415,15587 +2010,39,1998,502,550049,4716,47,19341,466,413,186,64161,20293 +2010,39,1999,717,786523,6739,66,27637,666,590,270,87934,28999 +2010,39,2000,1012,1111305,9516,94,39024,941,832,381,121482,40946 +2010,39,2001,1356,1453347,11877,126,52548,1396,1235,511,149463,54833 +2010,39,2002,1747,1872734,15305,162,67712,1799,1591,658,188268,70656 +2010,39,2003,2348,2516441,20565,218,90986,2417,2138,884,246797,94942 +2010,39,2004,2380,1858908,14650,221,75589,2450,2167,896,207231,96234 +2010,39,2005,3225,2519407,19855,299,102448,3320,2937,1215,271848,130427 +2010,39,2006,9938,3144237,24651,373,127789,4144,3665,1516,326415,162774 +2010,39,2007,11831,3743161,29347,444,152131,4933,4364,1805,373010,193780 +2010,39,2008,11616,2345595,16798,436,139627,4843,4284,1772,278220,190250 +2010,39,2009,12448,2513720,18002,467,149636,5190,4591,1899,276972,203886 +2010,39,2010,10247,2067963,14807,385,123177,4272,3779,1563,202663,167835 +2010,40,1980,337,1053745,22041,62,10861,2189,1936,319,326477,19582 +2010,40,1981,51,120294,1439,10,3115,69,61,49,36305,2987 +2010,40,1982,57,132932,1590,11,3442,76,68,54,38113,3301 +2010,40,1983,63,146555,1753,12,3798,84,75,59,40483,3642 +2010,40,1984,71,165064,1974,13,4277,95,84,67,43289,4102 +2010,40,1985,81,188254,2251,15,4878,108,96,76,46754,4679 +2010,40,1986,97,164807,1439,18,4965,131,116,92,46567,5652 +2010,40,1987,74,125995,1100,14,3795,100,88,70,34021,4320 +2010,40,1988,63,107151,935,12,3226,85,75,60,27740,3673 +2010,40,1989,66,111305,971,12,3350,88,78,62,28242,3814 +2010,40,1990,61,104012,908,11,3130,82,73,58,25887,3563 +2010,40,1991,84,103914,907,11,3126,82,73,65,20187,3558 +2010,40,1992,106,131410,1146,14,3952,104,92,83,25002,4498 +2010,40,1993,152,188738,1645,21,5674,149,132,120,35028,6458 +2010,40,1994,178,209851,1901,24,6743,175,155,143,39949,7568 +2010,40,1995,223,263074,2382,30,8450,219,194,182,48976,9483 +2010,40,1996,283,334248,3025,30,10732,279,246,234,52985,12044 +2010,40,1997,329,388668,3516,35,12474,324,286,275,59022,13999 +2010,40,1998,428,506231,4578,46,16240,422,373,363,66307,18225 +2010,40,1999,612,723730,6542,66,23206,602,533,528,90554,26043 +2010,40,2000,864,1022388,9237,93,32767,851,752,745,124962,36773 +2010,40,2001,1157,1561979,13037,125,50754,1192,1054,998,163661,49245 +2010,40,2002,1491,2012711,16798,160,65400,1536,1358,1286,206112,63455 +2010,40,2003,2003,2704534,22572,216,87879,2064,1825,1728,270131,85266 +2010,40,2004,2031,1996884,16049,219,72993,2092,1850,1751,226383,86427 +2010,40,2005,2752,2706410,21751,296,98928,2835,2508,2373,296865,117135 +2010,40,2006,8481,3377621,27091,370,123429,3538,3130,2962,356815,146186 +2010,40,2007,10096,4020997,32252,440,146941,4212,3726,3526,407579,174032 +2010,40,2008,9912,2517437,18396,432,134862,4135,3658,3462,302811,170861 +2010,40,2009,10623,2697882,19715,463,144528,4431,3920,3710,301120,183108 +2010,40,2010,8744,2220264,16225,381,118973,3648,3227,3054,219960,150730 +2010,41,1980,452,1392832,29185,88,16923,2937,2598,268,401093,26424 +2010,41,1981,69,159823,1919,13,4847,93,82,41,43743,4031 +2010,41,1982,76,176615,2121,15,5356,102,91,45,46013,4454 +2010,41,1983,84,194375,2331,16,5909,113,100,50,48910,4915 +2010,41,1984,95,218924,2625,18,6656,127,113,56,52411,5535 +2010,41,1985,108,249681,2994,21,7591,145,128,64,56740,6313 +2010,41,1986,130,215456,1895,25,7729,175,155,77,55642,7627 +2010,41,1987,100,164724,1448,19,5907,134,119,59,40706,5829 +2010,41,1988,85,140097,1231,16,5022,114,101,50,33235,4956 +2010,41,1989,88,145538,1278,17,5215,118,105,52,33858,5146 +2010,41,1990,82,136011,1197,16,4872,111,98,49,31065,4807 +2010,41,1991,112,135892,1195,16,4866,110,98,54,23756,4801 +2010,41,1992,142,171861,1511,20,6151,140,123,69,29455,6070 +2010,41,1993,203,246854,2169,29,8832,200,177,101,41325,8714 +2010,41,1994,238,280596,2506,34,10393,235,208,119,47171,10211 +2010,41,1995,298,351790,3140,43,13024,294,260,152,57906,12796 +2010,41,1996,379,447004,3988,43,16541,374,331,195,63012,16252 +2010,41,1997,441,519827,4636,50,19225,434,384,229,70728,18889 +2010,41,1998,574,677122,6035,65,25030,566,500,303,82840,24592 +2010,41,1999,820,968137,8624,93,35767,808,715,440,114206,35142 +2010,41,2000,1157,1367782,12177,131,50503,1141,1010,621,157708,49621 +2010,41,2001,1550,1874391,16147,175,72379,1591,1408,832,199899,66449 +2010,41,2002,1997,2415274,20807,226,93265,2050,1814,1072,251817,85624 +2010,41,2003,2684,3245469,27958,303,125323,2755,2437,1441,330130,115055 +2010,41,2004,2720,2398309,19947,307,104134,2793,2470,1460,276521,116621 +2010,41,2005,3687,3250462,27034,417,141134,3785,3348,1979,362753,158058 +2010,41,2006,11360,4056599,33464,520,176010,4723,4178,2470,434968,197257 +2010,41,2007,13524,4829321,39838,619,209537,5623,4974,2941,497048,234831 +2010,41,2008,13277,3031438,22848,608,192321,5521,4884,2887,369038,230553 +2010,41,2009,14229,3248729,24486,651,206106,5916,5234,3094,367239,247078 +2010,41,2010,11713,2671917,20133,536,169662,4869,4307,2547,268491,203390 +2010,42,1980,209,597796,13624,41,7210,1347,1192,86,197382,12199 +2010,42,1981,32,68465,893,6,2066,43,38,13,21849,1861 +2010,42,1982,35,75658,987,7,2283,47,42,15,22948,2056 +2010,42,1983,39,83320,1086,8,2519,52,46,16,24373,2269 +2010,42,1984,44,93843,1223,9,2837,58,52,18,26075,2555 +2010,42,1985,50,107027,1395,10,3236,67,59,21,28177,2915 +2010,42,1986,60,92847,886,12,3294,80,71,25,27925,3521 +2010,42,1987,46,70988,677,9,2518,61,54,19,20406,2691 +2010,42,1988,39,60378,576,8,2140,52,46,16,16642,2288 +2010,42,1989,41,62726,598,8,2223,54,48,17,16945,2376 +2010,42,1990,38,58623,559,7,2076,51,45,16,15537,2219 +2010,42,1991,52,58575,559,7,2074,51,45,17,11637,2217 +2010,42,1992,65,74083,706,9,2622,64,57,22,14421,2802 +2010,42,1993,94,106416,1014,13,3764,92,81,32,20220,4023 +2010,42,1994,110,123688,1183,16,4413,108,95,38,23137,4714 +2010,42,1995,138,155080,1482,20,5531,135,119,49,28387,5907 +2010,42,1996,175,197066,1882,20,7024,171,152,63,30491,7503 +2010,42,1997,204,229186,2188,23,8164,199,176,74,34126,8720 +2010,42,1998,265,298557,2848,30,10629,259,230,97,38822,11353 +2010,42,1999,379,426901,4070,43,15189,371,328,142,53211,16224 +2010,42,2000,535,603169,5747,61,21447,523,463,200,73527,22908 +2010,42,2001,717,805927,7426,81,28103,782,692,268,92039,30677 +2010,42,2002,924,1038490,9568,105,36212,1007,891,345,116002,39529 +2010,42,2003,1241,1395448,12857,141,48659,1354,1197,464,152163,53117 +2010,42,2004,1258,1030699,9156,143,40426,1372,1214,470,127538,53839 +2010,42,2005,1705,1396923,12409,194,54790,1859,1645,637,167443,72969 +2010,42,2006,5253,1743367,15415,242,68342,2321,2053,795,201289,91066 +2010,42,2007,6254,2075450,18351,288,81360,2763,2444,947,230278,108413 +2010,42,2008,6140,1300025,10502,283,74681,2712,2399,930,171471,106438 +2010,42,2009,6580,1393209,11254,303,80034,2907,2571,996,171042,114067 +2010,42,2010,5417,1146254,9258,249,65882,2392,2116,820,125595,93897 +2010,44,1980,281,812006,19793,70,9307,1910,1690,123,256640,17420 +2010,44,1981,43,92959,1296,11,2667,60,53,19,27493,2657 +2010,44,1982,47,102726,1432,12,2947,67,59,21,28961,2937 +2010,44,1983,52,113145,1577,13,3251,74,65,23,30829,3240 +2010,44,1984,59,127434,1776,15,3662,83,73,26,33088,3649 +2010,44,1985,67,145337,2025,17,4177,94,84,29,35884,4162 +2010,44,1986,81,126147,1289,20,4252,114,101,35,34867,5028 +2010,44,1987,62,96420,985,15,3250,87,77,27,25536,3843 +2010,44,1988,53,81982,837,13,2763,74,66,23,20872,3267 +2010,44,1989,55,85140,870,14,2869,77,68,24,21274,3393 +2010,44,1990,51,79542,813,13,2680,72,64,22,19526,3169 +2010,44,1991,70,79448,812,13,2677,72,64,24,14276,3165 +2010,44,1992,88,100446,1027,16,3384,91,80,31,17716,4001 +2010,44,1993,126,144228,1474,23,4859,130,115,45,24883,5745 +2010,44,1994,148,167894,1721,27,5696,153,135,54,28523,6732 +2010,44,1995,185,210414,2157,34,7138,191,169,68,35050,8436 +2010,44,1996,236,267265,2739,34,9065,243,215,87,37607,10714 +2010,44,1997,274,310683,3183,40,10537,283,250,103,42230,12453 +2010,44,1998,356,404531,4145,52,13718,368,326,135,48037,16213 +2010,44,1999,509,578141,5923,74,19603,526,465,197,65965,23168 +2010,44,2000,719,816446,8363,105,27679,742,657,278,91507,32713 +2010,44,2001,963,1031989,11678,140,37110,1021,904,372,119729,43808 +2010,44,2002,1241,1329783,15048,180,47819,1316,1164,480,151678,56449 +2010,44,2003,1667,1786865,20220,242,64256,1769,1565,645,200097,75852 +2010,44,2004,1690,1319881,14390,246,53384,1793,1586,654,163020,76884 +2010,44,2005,2290,1788856,19504,333,72352,2430,2149,886,215523,104203 +2010,44,2006,7058,2232504,24251,416,90247,3032,2682,1105,261176,130046 +2010,44,2007,8403,2657759,28871,495,107438,3610,3193,1316,301557,154817 +2010,44,2008,8249,1665738,16424,486,98606,3544,3135,1292,215544,151996 +2010,44,2009,8841,1785135,17602,521,105674,3798,3360,1385,218253,162891 +2010,44,2010,7278,1468649,14482,429,86988,3126,2766,1140,164430,134088 +2010,45,1980,545,1575728,38105,119,17028,3601,3185,233,584373,32635 +2010,45,1981,83,179872,2487,18,4883,114,101,36,65635,4978 +2010,45,1982,92,198771,2748,20,5397,126,111,39,68863,5501 +2010,45,1983,101,219144,3029,22,5954,139,123,43,73114,6070 +2010,45,1984,114,246821,3412,25,6706,156,138,49,78130,6837 +2010,45,1985,130,281497,3891,28,7649,178,158,56,84323,7797 +2010,45,1986,157,246492,2489,34,7785,215,190,67,84536,9419 +2010,45,1987,120,188461,1902,26,5950,164,145,51,61739,7199 +2010,45,1988,102,160292,1617,22,5058,140,124,44,50325,6121 +2010,45,1989,106,166526,1680,23,5253,145,128,45,51228,6356 +2010,45,1990,99,155634,1570,22,4907,136,120,42,46948,5937 +2010,45,1991,135,155505,1568,22,4901,135,120,47,36565,5930 +2010,45,1992,171,196677,1982,27,6195,171,151,60,45270,7496 +2010,45,1993,245,282514,2845,39,8895,246,217,87,63401,10763 +2010,45,1994,287,328358,3318,46,10430,288,255,103,72478,12612 +2010,45,1995,360,411695,4158,58,13070,361,319,131,88828,15804 +2010,45,1996,457,523154,5281,58,16600,458,405,168,95907,20072 +2010,45,1997,531,608426,6138,68,19294,533,471,198,106876,23330 +2010,45,1998,692,792583,7992,88,25119,694,614,261,118821,30374 +2010,45,1999,989,1133300,11420,126,35895,991,877,379,161858,43403 +2010,45,2000,1396,1601241,16125,178,50684,1399,1238,536,223316,61286 +2010,45,2001,1869,2143555,20856,238,66395,2091,1849,717,281084,82070 +2010,45,2002,2409,2762107,26875,306,85555,2694,2383,924,353572,105753 +2010,45,2003,3237,3711519,36112,412,114962,3620,3202,1242,462776,142103 +2010,45,2004,3281,2740118,25665,417,95485,3669,3246,1259,391852,144037 +2010,45,2005,4447,3713728,34784,565,129412,4973,4399,1706,513108,195215 +2010,45,2006,13702,4634755,43355,706,161469,6206,5490,2129,615912,243630 +2010,45,2007,16312,5517595,51613,840,192226,7389,6536,2535,702169,290037 +2010,45,2008,16015,3450853,29386,825,176440,7254,6417,2489,529702,284753 +2010,45,2009,17163,3698204,31492,884,189087,7774,6877,2667,525423,305163 +2010,45,2010,14128,3043724,25920,728,155652,6399,5661,2196,382128,251204 +2010,46,1980,83,240733,5303,16,2865,533,472,34,70584,4818 +2010,46,1981,13,27594,348,2,821,17,15,5,7630,735 +2010,46,1982,14,30493,385,3,907,19,16,6,8035,812 +2010,46,1983,15,33571,423,3,1001,21,18,6,8549,896 +2010,46,1984,17,37811,476,3,1127,23,20,7,9173,1009 +2010,46,1985,20,43124,543,4,1285,26,23,8,9944,1151 +2010,46,1986,24,37373,345,5,1309,32,28,10,9716,1391 +2010,46,1987,18,28576,264,3,1000,24,22,7,7116,1063 +2010,46,1988,15,24306,224,3,850,21,18,6,5815,904 +2010,46,1989,16,25254,233,3,883,21,19,7,5927,938 +2010,46,1990,15,23603,218,3,825,20,18,6,5441,877 +2010,46,1991,20,23586,218,3,824,20,18,7,4142,875 +2010,46,1992,26,29832,275,4,1042,25,22,9,5140,1107 +2010,46,1993,37,42855,395,5,1496,36,32,13,7219,1589 +2010,46,1994,44,49887,461,6,1753,43,38,15,8275,1862 +2010,46,1995,55,62554,578,8,2197,53,47,19,10170,2333 +2010,46,1996,69,79496,734,8,2791,68,60,24,11061,2963 +2010,46,1997,81,92462,854,9,3244,79,70,29,12437,3444 +2010,46,1998,105,120459,1111,12,4223,103,91,38,14377,4484 +2010,46,1999,150,172260,1588,17,6034,147,130,55,19804,6408 +2010,46,2000,212,243410,2242,23,8521,207,183,78,27421,9048 +2010,46,2001,283,307588,2772,31,11233,298,264,105,33703,12116 +2010,46,2002,365,396346,3572,41,14475,384,340,135,42553,15613 +2010,46,2003,491,532581,4799,54,19450,516,456,181,55928,20979 +2010,46,2004,497,393502,3420,55,16159,523,463,183,46889,21264 +2010,46,2005,674,533320,4636,75,21901,709,627,249,61724,28820 +2010,46,2006,2077,665586,5753,93,27317,885,783,310,74389,35968 +2010,46,2007,2473,792370,6849,111,32521,1053,932,369,85404,42819 +2010,46,2008,2428,496412,3908,109,29844,1034,915,363,63794,42039 +2010,46,2009,2602,531994,4189,117,31984,1108,980,389,64076,45052 +2010,46,2010,2142,437588,3444,96,26328,912,807,320,47607,37086 +2010,47,1980,145,397450,8305,22,4795,896,792,56,120039,8120 +2010,47,1981,22,45410,543,3,1375,28,25,9,13269,1239 +2010,47,1982,24,50181,600,4,1519,31,28,9,13935,1369 +2010,47,1983,27,55308,661,4,1676,34,30,10,14804,1510 +2010,47,1984,30,62293,744,5,1888,39,34,12,15836,1701 +2010,47,1985,35,71044,849,5,2153,44,39,13,17111,1940 +2010,47,1986,42,62054,542,6,2192,53,47,16,16966,2344 +2010,47,1987,32,47445,414,5,1676,41,36,12,12397,1791 +2010,47,1988,27,40353,352,4,1424,35,31,11,10110,1523 +2010,47,1989,28,41923,365,4,1479,36,32,11,10294,1581 +2010,47,1990,26,39180,342,4,1382,34,30,10,9437,1477 +2010,47,1991,36,39148,341,4,1380,34,30,12,7292,1475 +2010,47,1992,45,49513,431,5,1745,43,38,15,9034,1865 +2010,47,1993,65,71122,619,7,2505,61,54,22,12662,2678 +2010,47,1994,76,82664,722,9,2937,72,63,26,14485,3138 +2010,47,1995,96,103644,905,11,3681,90,79,32,17767,3932 +2010,47,1996,122,131704,1150,11,4675,114,101,42,19232,4994 +2010,47,1997,141,153171,1336,13,5433,133,117,49,21495,5805 +2010,47,1998,184,199533,1740,16,7074,173,153,65,24283,7557 +2010,47,1999,263,285309,2486,23,10108,247,218,94,33222,10799 +2010,47,2000,372,403113,3510,33,14273,348,308,133,45873,15248 +2010,47,2001,498,539341,4538,44,18700,520,460,179,57646,20420 +2010,47,2002,641,694976,5848,57,24096,670,593,230,72584,26312 +2010,47,2003,862,933858,7858,76,32378,900,796,309,95106,35356 +2010,47,2004,873,689531,5589,77,26894,913,807,313,79883,35837 +2010,47,2005,1184,934532,7574,105,36450,1237,1094,425,104728,48571 +2010,47,2006,3648,1166302,9428,131,45476,1543,1365,530,125809,60617 +2010,47,2007,4343,1388462,11224,156,54138,1837,1625,631,143658,72163 +2010,47,2008,4264,867899,6398,153,49679,1804,1596,620,107058,70848 +2010,47,2009,4569,930108,6856,164,53240,1933,1710,664,106416,75927 +2010,47,2010,3761,765430,5642,135,43826,1591,1408,547,77673,62501 +2010,48,1980,224,602757,12873,33,6793,1381,1222,87,188590,12540 +2010,48,1981,34,68724,839,5,1949,44,39,13,20906,1913 +2010,48,1982,38,75945,927,6,2154,48,43,15,21946,2114 +2010,48,1983,42,83762,1023,6,2376,53,47,16,23312,2332 +2010,48,1984,47,94341,1152,7,2677,60,53,18,24925,2627 +2010,48,1985,54,107595,1313,8,3053,68,60,21,26918,2996 +2010,48,1986,65,94534,842,10,3107,82,73,25,26773,3619 +2010,48,1987,49,72270,644,7,2375,63,56,19,19557,2766 +2010,48,1988,42,61460,547,6,2019,54,47,16,15944,2352 +2010,48,1989,44,63841,568,6,2097,56,49,17,16231,2442 +2010,48,1990,41,59657,531,6,1959,52,46,16,14876,2281 +2010,48,1991,56,59600,530,6,1956,52,46,18,11725,2278 +2010,48,1992,70,75369,670,8,2473,66,58,23,14519,2880 +2010,48,1993,101,108247,962,11,3551,94,83,33,20338,4135 +2010,48,1994,118,125790,1122,13,4163,110,98,39,23252,4846 +2010,48,1995,148,157689,1407,16,5217,138,122,50,28503,6073 +2010,48,1996,188,200348,1786,16,6626,176,155,64,30823,7712 +2010,48,1997,218,232961,2076,19,7702,204,181,76,34305,8964 +2010,48,1998,284,303420,2703,24,10027,266,235,100,37677,11671 +2010,48,1999,406,433770,3863,35,14328,380,336,146,51218,16677 +2010,48,2000,574,612756,5454,49,20231,537,475,206,70723,23548 +2010,48,2001,769,823472,7643,66,26908,816,722,275,92707,31534 +2010,48,2002,990,1061097,9848,85,34673,1051,930,355,116814,40634 +2010,48,2003,1331,1425824,13234,115,46591,1413,1250,477,153185,54601 +2010,48,2004,1349,1052511,9401,116,38693,1432,1267,483,127700,55344 +2010,48,2005,1828,1426486,12742,157,52442,1940,1717,655,167560,75009 +2010,48,2006,5634,1780264,15893,196,65440,2422,2142,818,201666,93612 +2010,48,2007,6707,2119373,18920,234,77905,2883,2550,974,230551,111443 +2010,48,2008,6585,1322971,10750,230,71479,2830,2504,956,169716,109413 +2010,48,2009,7057,1417799,11520,246,76603,3033,2683,1024,168921,117255 +2010,48,2010,5809,1167001,9482,203,63058,2497,2209,843,123600,96522 +2010,49,1980,484,1417139,28285,82,17300,2968,2625,272,437871,26721 +2010,49,1981,74,162490,1858,13,4956,94,83,41,49313,4076 +2010,49,1982,82,179562,2054,14,5476,104,92,46,51698,4504 +2010,49,1983,90,197669,2258,15,6043,114,101,51,54823,4970 +2010,49,1984,101,222634,2543,17,6806,129,114,57,58531,5598 +2010,49,1985,116,253912,2901,20,7762,147,130,65,63106,6384 +2010,49,1986,140,219672,1838,24,7902,177,157,78,63123,7712 +2010,49,1987,107,167948,1405,18,6040,135,120,60,46055,5895 +2010,49,1988,91,142838,1194,15,5135,115,102,51,37505,5012 +2010,49,1989,94,148386,1240,16,5332,120,106,53,38160,5204 +2010,49,1990,88,138673,1161,15,4981,112,99,49,34967,4861 +2010,49,1991,120,138551,1160,15,4975,112,99,56,26815,4855 +2010,49,1992,152,175225,1466,19,6289,141,125,72,33183,6138 +2010,49,1993,218,251685,2105,27,9029,203,179,104,46447,8812 +2010,49,1994,255,286086,2431,32,10626,237,210,124,52930,10326 +2010,49,1995,320,358673,3047,40,13315,297,263,157,64833,12940 +2010,49,1996,406,455749,3869,40,16911,378,334,202,69776,16435 +2010,49,1997,472,529998,4497,47,19656,439,388,238,77875,19102 +2010,49,1998,614,690372,5855,61,25590,572,506,314,89151,24869 +2010,49,1999,877,987081,8367,87,36568,817,723,456,122043,35538 +2010,49,2000,1239,1394548,11814,123,51634,1153,1020,644,167991,50180 +2010,49,2001,1659,1911429,15659,164,73985,1608,1422,863,212144,67197 +2010,49,2002,2138,2463001,20178,211,95335,2072,1833,1112,266275,86588 +2010,49,2003,2873,3309601,27114,284,128104,2784,2463,1494,347669,116351 +2010,49,2004,2912,2445531,19337,288,106436,2822,2496,1515,293831,117934 +2010,49,2005,3947,3314464,26208,390,144254,3825,3383,2053,383461,159839 +2010,49,2006,12161,4136471,32470,487,179919,4773,4222,2562,457331,199480 +2010,49,2007,14478,4924400,38655,580,214190,5682,5027,3050,518914,237477 +2010,49,2008,14214,3092908,22232,569,196604,5579,4935,2994,388540,233150 +2010,49,2009,15233,3314603,23826,610,210697,5979,5289,3209,381668,249862 +2010,49,2010,12539,2726238,19590,502,173441,4921,4353,2641,272655,205681 +2010,50,1980,238,661416,14145,40,8457,1476,1305,94,200329,13311 +2010,50,1981,36,75932,931,6,2422,47,41,14,22030,2031 +2010,50,1982,40,83910,1029,7,2676,51,46,16,23127,2244 +2010,50,1983,44,92333,1131,7,2953,57,50,17,24543,2476 +2010,50,1984,50,103994,1273,8,3326,64,57,20,26241,2788 +2010,50,1985,57,118605,1452,10,3793,73,65,22,28339,3180 +2010,50,1986,69,102258,918,12,3862,88,78,27,27875,3842 +2010,50,1987,53,78184,701,9,2952,67,60,21,20351,2936 +2010,50,1988,45,66498,596,7,2509,57,51,18,16583,2496 +2010,50,1989,46,69084,619,8,2606,59,53,18,16877,2592 +2010,50,1990,43,64566,580,7,2434,56,49,17,15472,2422 +2010,50,1991,59,64512,579,7,2431,55,49,19,11108,2419 +2010,50,1992,75,81593,732,9,3073,70,62,25,13757,3058 +2010,50,1993,107,117203,1051,13,4413,101,89,36,19277,4390 +2010,50,1994,126,136230,1226,15,5174,118,104,42,22041,5144 +2010,50,1995,157,170805,1536,19,6484,148,131,54,27024,6446 +2010,50,1996,200,217048,1951,20,8235,188,166,69,28588,8187 +2010,50,1997,232,252426,2268,23,9571,218,193,82,31991,9516 +2010,50,1998,302,328831,2953,30,12461,284,251,108,36487,12388 +2010,50,1999,432,470189,4219,42,17807,406,359,157,49993,17703 +2010,50,2000,610,664332,5958,60,25143,574,507,221,69063,24997 +2010,50,2001,817,886078,7690,80,32952,856,757,296,85694,33474 +2010,50,2002,1053,1141770,9909,103,42461,1103,976,381,107996,43133 +2010,50,2003,1415,1534226,13315,138,57055,1482,1311,512,141647,57959 +2010,50,2004,1434,1133703,9502,140,47410,1502,1329,519,116433,58748 +2010,50,2005,1944,1536527,12878,190,64255,2036,1801,704,152745,79622 +2010,50,2006,5990,1917596,15946,237,80132,2541,2248,879,183097,99369 +2010,50,2007,7131,2282864,18983,282,95396,3025,2676,1046,209232,118297 +2010,50,2008,7001,1431731,10919,277,87567,2970,2627,1027,150282,116142 +2010,50,2009,7503,1534355,11702,296,93844,3183,2816,1100,149165,124467 +2010,50,2010,6176,1261968,9619,244,77250,2619,2317,906,108531,102458 +2010,51,1980,78,212440,4439,12,2553,479,424,30,64056,4346 +2010,51,1981,12,24261,290,2,732,15,13,5,7076,663 +2010,51,1982,13,26810,321,2,809,17,15,5,7432,733 +2010,51,1983,14,29553,353,2,893,18,16,6,7896,808 +2010,51,1984,16,33286,398,2,1005,21,18,6,8448,911 +2010,51,1985,19,37962,454,3,1147,24,21,7,9129,1038 +2010,51,1986,22,33200,290,3,1167,29,25,9,9052,1255 +2010,51,1987,17,25384,221,3,892,22,19,7,6615,959 +2010,51,1988,15,21590,188,2,759,19,16,6,5395,815 +2010,51,1989,15,22429,195,2,788,19,17,6,5493,846 +2010,51,1990,14,20962,183,2,736,18,16,5,5036,791 +2010,51,1991,19,20945,182,2,735,18,16,6,3862,790 +2010,51,1992,24,26490,231,3,929,23,20,8,4786,998 +2010,51,1993,35,38052,331,4,1334,33,29,12,6710,1433 +2010,51,1994,41,44227,386,5,1564,38,34,14,7677,1680 +2010,51,1995,51,55451,484,6,1960,48,42,17,9419,2105 +2010,51,1996,65,70464,615,6,2489,61,54,22,10171,2673 +2010,51,1997,76,81949,715,7,2893,71,63,26,11363,3107 +2010,51,1998,99,106753,930,9,3767,92,82,35,12764,4045 +2010,51,1999,141,152645,1329,12,5383,132,117,51,17450,5781 +2010,51,2000,199,215672,1877,18,7600,186,165,71,24114,8162 +2010,51,2001,266,288642,2427,24,9958,278,246,96,30320,10930 +2010,51,2002,343,371935,3128,30,12831,359,317,123,38211,14084 +2010,51,2003,461,499779,4203,41,17242,482,426,165,50117,18925 +2010,51,2004,468,368995,2988,41,14321,488,432,168,42030,19183 +2010,51,2005,634,500106,4050,56,19410,662,585,227,55174,25999 +2010,51,2006,1953,624136,5044,70,24217,826,731,284,66394,32447 +2010,51,2007,2325,743023,6005,83,28830,983,870,338,75946,38628 +2010,51,2008,2282,464335,3420,82,26455,965,854,332,56562,37924 +2010,51,2009,2446,497619,3665,88,28351,1035,915,355,56407,40642 +2010,51,2010,2013,409534,3016,72,23338,852,753,293,41411,33456 +2010,53,1980,320,939493,19018,58,11237,1969,1742,181,326235,17750 +2010,53,1981,49,107675,1249,9,3219,62,55,28,37640,2708 +2010,53,1982,54,118988,1380,10,3558,69,61,31,39368,2992 +2010,53,1983,59,131006,1517,11,3925,76,67,34,41679,3301 +2010,53,1984,67,147552,1709,12,4421,85,76,38,44382,3718 +2010,53,1985,76,168282,1949,14,5042,97,86,43,47713,4241 +2010,53,1986,92,145678,1235,17,5133,118,104,52,48423,5123 +2010,53,1987,71,111377,944,13,3923,90,80,40,35267,3916 +2010,53,1988,60,94725,803,11,3335,76,68,34,28669,3329 +2010,53,1989,62,98404,834,11,3463,79,70,35,29145,3457 +2010,53,1990,58,91962,780,11,3235,74,66,33,26680,3229 +2010,53,1991,79,91882,779,11,3231,74,66,37,20052,3225 +2010,53,1992,100,116202,985,13,4085,94,83,48,24785,4077 +2010,53,1993,144,166908,1414,19,5864,134,119,69,34643,5854 +2010,53,1994,169,189715,1633,22,6901,158,139,82,39438,6859 +2010,53,1995,211,237850,2047,28,8648,197,175,104,48241,8596 +2010,53,1996,268,302225,2599,28,10983,251,222,134,51211,10917 +2010,53,1997,312,351462,3021,33,12766,291,258,158,56910,12689 +2010,53,1998,406,457812,3933,43,16621,379,336,209,63824,16520 +2010,53,1999,580,654570,5621,61,23750,542,480,303,86874,23606 +2010,53,2000,819,924776,7936,86,33536,765,677,429,119387,33332 +2010,53,2001,1097,1268472,10522,115,48051,1067,944,574,150227,44636 +2010,53,2002,1413,1634508,13559,149,61916,1375,1216,739,188221,57517 +2010,53,2003,1899,2196334,18219,200,83199,1848,1635,994,245261,77287 +2010,53,2004,1925,1622603,12982,203,69124,1873,1657,1007,208305,78339 +2010,53,2005,2609,2199138,17595,275,93685,2538,2245,1365,271154,106174 +2010,53,2006,8039,2744539,21830,343,116851,3168,2802,1703,322660,132506 +2010,53,2007,9571,3267327,25988,408,139109,3771,3336,2028,364826,157746 +2010,53,2008,9396,2054309,14982,401,127715,3703,3275,1991,274764,154872 +2010,53,2009,10070,2201558,16056,429,136870,3968,3510,2134,268218,165973 +2010,53,2010,8289,1811026,13206,353,112668,3266,2889,1756,189448,136625 +2010,54,1980,82,232129,4675,13,2789,508,450,33,66003,4600 +2010,54,1981,13,26562,306,2,799,16,14,5,7251,702 +2010,54,1982,14,29353,338,2,883,18,16,6,7619,775 +2010,54,1983,15,32335,373,2,975,20,17,6,8096,856 +2010,54,1984,17,36419,420,3,1098,22,19,7,8666,964 +2010,54,1985,20,41536,479,3,1252,25,22,8,9370,1099 +2010,54,1986,24,36121,304,4,1274,30,27,10,9244,1328 +2010,54,1987,18,27617,233,3,974,23,21,7,6757,1015 +2010,54,1988,15,23490,198,2,828,20,17,6,5513,863 +2010,54,1989,16,24403,205,2,860,20,18,7,5614,896 +2010,54,1990,15,22808,192,2,803,19,17,6,5148,837 +2010,54,1991,20,22789,192,2,802,19,17,7,3913,836 +2010,54,1992,26,28823,242,3,1014,24,21,9,4851,1057 +2010,54,1993,37,41404,348,4,1456,35,31,13,6803,1517 +2010,54,1994,43,47984,405,5,1708,41,36,15,7782,1778 +2010,54,1995,54,60164,508,6,2140,51,45,19,9550,2228 +2010,54,1996,69,76453,645,6,2718,65,57,25,10322,2829 +2010,54,1997,80,88917,750,7,3160,75,67,29,11561,3289 +2010,54,1998,104,115832,976,9,4114,98,87,39,13216,4282 +2010,54,1999,149,165631,1395,13,5878,140,124,56,18137,6118 +2010,54,2000,211,234025,1970,19,8300,198,175,79,25059,8639 +2010,54,2001,282,306231,2459,25,11176,293,259,106,30909,11569 +2010,54,2002,363,394599,3169,33,14402,378,334,137,38936,14907 +2010,54,2003,488,530233,4259,44,19352,507,449,184,51044,20031 +2010,54,2004,495,391620,3032,44,16076,514,455,186,42844,20304 +2010,54,2005,671,530768,4109,60,21788,697,617,252,56207,27518 +2010,54,2006,2067,662401,5106,75,27180,870,770,315,67524,34343 +2010,54,2007,2461,788578,6079,89,32357,1036,916,375,77171,40885 +2010,54,2008,2416,493609,3471,88,29693,1017,899,368,57499,40140 +2010,54,2009,2589,528990,3720,94,31822,1090,964,394,57248,43017 +2010,54,2010,2131,435239,3060,77,26195,897,793,324,41902,35411 +2010,55,1980,203,572519,11549,32,7133,1258,1112,78,163813,11367 +2010,55,1981,31,65650,759,5,2043,40,35,12,18038,1734 +2010,55,1982,34,72548,838,5,2258,44,39,13,18951,1916 +2010,55,1983,38,79861,922,6,2491,48,43,14,20129,2114 +2010,55,1984,43,89948,1038,7,2806,55,48,16,21542,2381 +2010,55,1985,49,102584,1184,8,3200,62,55,19,23287,2716 +2010,55,1986,59,88770,751,9,3258,75,66,22,22979,3281 +2010,55,1987,45,67875,574,7,2490,57,51,17,16794,2507 +2010,55,1988,38,57733,488,6,2117,49,43,15,13699,2132 +2010,55,1989,40,59983,507,6,2199,51,45,15,13949,2214 +2010,55,1990,37,56064,474,6,2054,47,42,14,12792,2068 +2010,55,1991,50,56021,474,6,2051,47,42,16,9477,2065 +2010,55,1992,64,70859,599,7,2593,60,53,20,11749,2611 +2010,55,1993,91,101792,860,10,3723,86,76,30,16482,3749 +2010,55,1994,107,118493,1003,12,4365,101,89,35,18872,4393 +2010,55,1995,134,148579,1257,15,5470,126,111,45,23165,5504 +2010,55,1996,170,188821,1597,16,6948,160,142,58,24840,6991 +2010,55,1997,198,219618,1856,18,8075,186,165,68,27862,8126 +2010,55,1998,258,286118,2416,23,10513,242,214,90,31851,10579 +2010,55,1999,368,409157,3452,34,15023,346,306,131,43732,15117 +2010,55,2000,520,578156,4875,47,21213,489,432,184,60472,21345 +2010,55,2001,697,730634,6025,63,27968,703,622,247,73988,28584 +2010,55,2002,898,941470,7763,82,36038,906,801,318,93291,36833 +2010,55,2003,1206,1265079,10432,110,48426,1217,1077,428,122431,49493 +2010,55,2004,1223,934712,7437,111,40233,1234,1091,434,102600,50167 +2010,55,2005,1657,1266831,10080,151,54528,1672,1479,588,134788,67992 +2010,55,2006,5106,1581010,12500,188,68014,2087,1846,733,162024,84854 +2010,55,2007,6079,1882165,14881,224,80969,2484,2197,873,185511,101018 +2010,55,2008,5968,1179723,8521,220,74308,2439,2157,857,138149,99177 +2010,55,2009,6396,1264283,9131,236,79634,2614,2312,919,138021,106286 +2010,55,2010,5265,1039929,7508,194,65553,2151,1903,756,101606,87492 +2010,56,1980,285,886236,19226,62,10275,1871,1655,172,299486,16773 +2010,56,1981,43,101825,1266,9,2941,59,52,26,33801,2559 +2010,56,1982,48,112524,1399,10,3250,65,58,29,35438,2827 +2010,56,1983,53,123785,1537,11,3586,72,64,32,37575,3120 +2010,56,1984,60,139418,1731,13,4039,81,72,36,40118,3514 +2010,56,1985,68,159005,1974,15,4606,93,82,41,43257,4007 +2010,56,1986,82,136806,1248,18,4690,112,99,50,43299,4841 +2010,56,1987,63,104593,954,14,3584,85,76,38,31594,3700 +2010,56,1988,53,88956,811,12,3047,73,64,32,25730,3146 +2010,56,1989,55,92411,842,12,3164,75,67,33,26181,3267 +2010,56,1990,52,86362,789,11,2956,70,62,31,23993,3052 +2010,56,1991,71,86286,788,11,2952,70,62,35,18293,3048 +2010,56,1992,89,109126,996,14,3732,89,79,44,22637,3853 +2010,56,1993,128,156744,1429,20,5359,128,113,64,31685,5532 +2010,56,1994,150,178182,1651,24,6306,150,132,76,36108,6482 +2010,56,1995,188,223392,2069,30,7902,188,166,97,44226,8123 +2010,56,1996,239,283854,2628,30,10036,238,211,125,47593,10316 +2010,56,1997,277,330099,3055,35,11665,277,245,147,53170,11990 +2010,56,1998,361,429985,3977,46,15186,360,319,194,61319,15610 +2010,56,1999,516,614785,5683,65,21701,515,456,281,84050,22307 +2010,56,2000,729,868569,8025,92,30642,727,643,397,115661,31498 +2010,56,2001,976,1189034,10634,123,43895,1013,896,532,145833,42180 +2010,56,2002,1257,1532147,13702,159,56562,1305,1155,686,182990,54351 +2010,56,2003,1690,2058787,18412,213,76004,1754,1552,921,238848,73033 +2010,56,2004,1713,1521900,13147,216,63162,1778,1573,934,202253,74027 +2010,56,2005,2321,2062657,17818,293,85604,2410,2132,1266,263850,100330 +2010,56,2006,7153,2574207,22033,365,106743,3007,2660,1580,314306,125213 +2010,56,2007,8515,3064550,26230,435,127075,3580,3167,1881,356434,149064 +2010,56,2008,8360,1928939,15127,427,116678,3515,3109,1846,267670,146348 +2010,56,2009,8959,2067203,16211,458,125041,3767,3332,1979,262727,156838 +2010,56,2010,7375,1699747,13324,377,102931,3100,2742,1629,187385,129106 +2015,1,1985,315,684158,8921,68,18266,430,380,137,296405,18826 +2015,1,1986,52,81647,778,11,2533,71,63,23,41860,3099 +2015,1,1987,40,63102,601,9,1957,55,48,17,30454,2395 +2015,1,1988,34,53463,509,7,1658,46,41,15,24671,2029 +2015,1,1989,37,58308,556,8,1809,50,45,16,25284,2213 +2015,1,1990,37,57592,549,8,1786,50,44,16,23381,2186 +2015,1,1991,51,59340,565,8,1840,51,45,18,22919,2251 +2015,1,1992,67,77166,735,11,2392,67,59,24,28419,2927 +2015,1,1993,98,112773,1074,15,3495,98,86,35,39736,4276 +2015,1,1994,113,129342,1237,18,4053,113,100,41,45058,4955 +2015,1,1995,140,160429,1534,22,5025,140,124,52,54767,6143 +2015,1,1996,177,202117,1932,22,6329,177,156,66,51865,7737 +2015,1,1997,203,231608,2213,25,7250,202,179,77,56894,8863 +2015,1,1998,261,298103,2847,33,9328,260,230,100,59364,11403 +2015,1,1999,368,421583,4025,46,13186,368,325,144,78879,16120 +2015,1,2000,509,582886,5563,64,18224,508,450,200,106801,22279 +2015,1,2001,670,757155,7081,84,23726,706,625,263,125190,29308 +2015,1,2002,846,956843,8949,106,29984,892,789,332,154469,37037 +2015,1,2003,1109,1253907,11727,139,39293,1169,1034,435,197366,48536 +2015,1,2004,1085,893825,8046,137,31511,1144,1012,426,168464,47502 +2015,1,2005,1415,1165255,10490,178,41080,1492,1320,555,213092,61927 +2015,1,2006,4123,1374977,12364,210,48463,1760,1557,655,237139,73072 +2015,1,2007,4545,1515876,13631,232,53429,1941,1717,722,253280,80560 +2015,1,2008,3987,848817,6964,203,43832,1702,1506,633,185130,70672 +2015,1,2009,3520,749309,6148,179,38693,1503,1329,559,156642,62387 +2015,1,2010,1762,375090,3078,90,19372,752,666,280,74850,31235 +2015,1,2011,2567,546256,4482,131,28217,1096,969,408,103428,45496 +2015,1,2012,4303,915488,7512,219,47299,1837,1625,683,163215,76262 +2015,1,2013,4982,1059791,8696,254,54763,2127,1881,791,175894,88297 +2015,1,2014,7571,1610520,13216,386,83221,3232,2859,1202,244223,134182 +2015,1,2015,14407,3064749,25149,734,158366,6150,5440,2288,401154,255342 +2015,4,1985,1645,3195888,43632,302,109907,2142,1895,376,1399652,94018 +2015,4,1986,271,381680,3805,50,15243,353,312,62,197132,15475 +2015,4,1987,209,294987,2941,38,11781,272,241,48,143495,11960 +2015,4,1988,177,249926,2492,33,9981,231,204,41,116290,10133 +2015,4,1989,193,272576,2718,35,10886,252,223,44,119250,11052 +2015,4,1990,191,269228,2685,35,10752,249,220,44,110347,10916 +2015,4,1991,268,277350,2766,36,11075,256,227,50,108291,11244 +2015,4,1992,349,360612,3596,47,14398,333,295,66,134355,14618 +2015,4,1993,510,526923,5253,69,21036,487,430,98,187970,21356 +2015,4,1994,590,630681,6211,79,24358,564,499,115,214144,24744 +2015,4,1995,732,782111,7701,99,30202,699,618,145,260390,30680 +2015,4,1996,922,985161,9699,98,38037,880,779,185,255002,38640 +2015,4,1997,1056,1128691,11111,113,43572,1008,892,214,279829,44262 +2015,4,1998,1359,1452432,14295,145,56060,1297,1148,279,292388,56949 +2015,4,1999,1921,2053589,20208,205,79249,1834,1622,402,388760,80505 +2015,4,2000,2655,2838667,27929,283,109526,2535,2242,556,526526,111262 +2015,4,2001,3492,3837548,41403,373,142044,3691,3266,731,659535,146364 +2015,4,2002,4413,4849639,52322,471,179506,4665,4127,924,814904,184965 +2015,4,2003,5783,6355285,68566,617,235237,6113,5408,1211,1042764,242390 +2015,4,2004,5660,4530120,47055,604,188642,5983,5293,1185,880127,237226 +2015,4,2005,7379,5905798,61344,788,245928,7800,6900,1545,1114958,309266 +2015,4,2006,21499,6968724,72281,930,290139,9204,8142,1823,1249363,364927 +2015,4,2007,23702,7682819,79688,1025,319871,10147,8976,2010,1336509,402322 +2015,4,2008,20793,4297630,40843,899,262299,8902,7874,1763,962942,352941 +2015,4,2009,18356,3793811,36055,794,231549,7858,6951,1556,816064,311565 +2015,4,2010,9190,1899150,18048,397,115929,3934,3480,779,390657,155990 +2015,4,2011,13386,2765846,26285,579,168859,5730,5069,1135,540969,227212 +2015,4,2012,22438,4635470,44052,970,283045,9604,8496,1903,855905,380856 +2015,4,2013,25979,5366238,50996,1123,327714,11119,9837,2203,925440,440962 +2015,4,2014,39479,8154837,77496,1707,498014,16898,14948,3348,1290738,670113 +2015,4,2015,75127,15518315,147472,3248,947698,32156,28446,6370,2137608,1275195 +2015,5,1985,233,451753,5382,37,13463,290,256,73,183422,12627 +2015,5,1986,38,53688,467,6,1867,48,42,12,25928,2078 +2015,5,1987,30,41494,361,5,1443,37,33,9,18847,1606 +2015,5,1988,25,35155,306,4,1222,31,28,8,15257,1361 +2015,5,1989,27,38342,334,4,1333,34,30,9,15620,1484 +2015,5,1990,27,37870,330,4,1317,34,30,9,14428,1466 +2015,5,1991,38,39017,340,4,1356,35,31,10,14140,1510 +2015,5,1992,49,50735,442,6,1763,45,40,13,17517,1963 +2015,5,1993,72,74142,645,8,2576,66,58,20,24472,2868 +2015,5,1994,84,86337,750,10,2984,76,67,23,27777,3323 +2015,5,1995,104,107080,930,12,3700,95,84,29,33750,4121 +2015,5,1996,131,134896,1171,12,4660,119,105,37,30898,5190 +2015,5,1997,150,154568,1342,14,5338,136,121,43,33879,5945 +2015,5,1998,193,198928,1726,18,6868,175,155,56,35241,7649 +2015,5,1999,273,281304,2440,25,9709,248,219,80,46788,10812 +2015,5,2000,377,388901,3372,35,13418,343,303,111,63337,14943 +2015,5,2001,496,501801,4325,46,17068,484,428,146,73377,19658 +2015,5,2002,626,634143,5465,58,21569,612,541,184,90551,24842 +2015,5,2003,821,831022,7162,76,28266,801,709,241,115715,32554 +2015,5,2004,803,592485,4919,74,22671,784,694,236,98321,31861 +2015,5,2005,1047,772407,6413,97,29555,1023,905,308,124373,41536 +2015,5,2006,3051,911425,7545,114,34862,1207,1067,363,137663,49012 +2015,5,2007,3363,1004823,8319,126,38434,1330,1177,401,147067,54034 +2015,5,2008,2951,562937,4275,111,31530,1167,1032,351,106806,47402 +2015,5,2009,2605,496943,3774,98,27834,1030,911,310,90375,41845 +2015,5,2010,1304,248727,1889,49,13935,516,456,155,43185,20950 +2015,5,2011,1900,362180,2750,71,20298,751,664,226,59673,30516 +2015,5,2012,3184,606908,4608,119,34024,1259,1114,379,94168,51151 +2015,5,2013,3686,702477,5334,138,39393,1458,1289,439,101486,59224 +2015,5,2014,5602,1067524,8106,210,59864,2215,1960,667,140925,90000 +2015,5,2015,10661,2031452,15425,399,113919,4215,3729,1270,231527,171266 +2015,6,1985,296,528651,6195,48,20030,382,338,20,132684,16876 +2015,6,1986,49,62454,536,8,2779,63,56,3,17879,2778 +2015,6,1987,38,48268,414,6,2148,49,43,3,13081,2147 +2015,6,1988,32,40895,351,5,1820,41,36,2,10642,1819 +2015,6,1989,35,44601,383,6,1985,45,40,2,10976,1984 +2015,6,1990,34,44053,379,6,1960,44,39,2,10225,1959 +2015,6,1991,48,45388,390,6,2019,46,40,3,10064,2018 +2015,6,1992,63,59019,507,7,2625,59,53,4,12544,2624 +2015,6,1993,92,86249,741,11,3835,87,77,5,17629,3833 +2015,6,1994,106,113155,937,13,4467,101,89,6,20519,4441 +2015,6,1995,132,140343,1162,16,5539,125,110,8,25008,5507 +2015,6,1996,166,176802,1464,16,6976,157,139,10,23506,6936 +2015,6,1997,190,202588,1677,18,7991,180,159,11,26099,7945 +2015,6,1998,244,260734,2157,23,10281,231,205,15,29421,10222 +2015,6,1999,345,368710,3050,33,14533,327,289,21,39936,14450 +2015,6,2000,477,509747,4215,45,20086,452,400,30,54329,19971 +2015,6,2001,628,599156,5558,60,27327,565,500,39,64325,26271 +2015,6,2002,794,757175,7024,75,34533,714,632,49,79920,33200 +2015,6,2003,1040,992250,9205,99,45255,936,828,65,102879,43507 +2015,6,2004,1018,707738,6328,96,36297,916,810,63,83240,42581 +2015,6,2005,1327,922659,8249,126,47320,1194,1056,83,106126,55511 +2015,6,2006,3866,1088719,9691,148,55816,1409,1246,97,118470,65502 +2015,6,2007,4262,1200283,10685,164,61535,1553,1374,107,127698,72214 +2015,6,2008,3739,671632,5426,144,50440,1363,1206,94,86033,63351 +2015,6,2009,3300,592896,4790,127,44527,1203,1064,83,73526,55924 +2015,6,2010,1652,296658,2397,63,22293,602,533,42,35528,27999 +2015,6,2011,2407,431836,3489,92,32472,877,776,61,49741,40783 +2015,6,2012,4034,723398,5845,155,54430,1470,1300,102,79737,68361 +2015,6,2013,4671,837040,6764,179,63020,1702,1506,118,87635,79150 +2015,6,2014,7098,1272015,10279,272,95768,2586,2288,179,124939,120281 +2015,6,2015,13508,2420589,19561,518,182243,4922,4354,340,215057,228889 +2015,8,1985,67,131033,1505,10,4437,86,76,19,37807,3766 +2015,8,1986,11,15589,131,2,615,14,12,3,5201,620 +2015,8,1987,9,12048,101,1,476,11,10,2,3798,479 +2015,8,1988,7,10208,86,1,403,9,8,2,3086,406 +2015,8,1989,8,11133,93,1,440,10,9,2,3177,443 +2015,8,1990,8,10996,92,1,434,10,9,2,2953,437 +2015,8,1991,11,11328,95,1,447,10,9,3,2910,450 +2015,8,1992,14,14729,124,2,581,13,12,3,3623,586 +2015,8,1993,21,21521,181,2,849,19,17,5,5086,856 +2015,8,1994,24,25288,211,3,984,23,20,6,5795,991 +2015,8,1995,30,31359,262,3,1220,28,25,7,7058,1229 +2015,8,1996,38,39500,330,3,1536,35,31,9,6926,1548 +2015,8,1997,43,45255,378,4,1759,40,36,11,7665,1773 +2015,8,1998,56,58235,486,5,2264,52,46,14,8492,2281 +2015,8,1999,79,82338,687,7,3200,73,65,21,11470,3225 +2015,8,2000,109,113815,950,9,4423,101,90,28,15566,4457 +2015,8,2001,143,142350,1224,12,5668,130,115,37,18459,5863 +2015,8,2002,181,179893,1547,16,7162,165,146,47,22848,7410 +2015,8,2003,237,235743,2027,21,9386,216,191,62,29293,9710 +2015,8,2004,232,168091,1393,20,7528,211,187,60,24611,9503 +2015,8,2005,302,219136,1816,26,9813,276,244,79,31247,12389 +2015,8,2006,880,258576,2135,31,11576,325,288,93,34953,14619 +2015,8,2007,970,285073,2354,34,12763,358,317,103,37492,16117 +2015,8,2008,851,159386,1198,30,10463,314,278,90,26808,14139 +2015,8,2009,751,140701,1058,26,9236,278,246,79,22797,12481 +2015,8,2010,376,70418,529,13,4624,139,123,40,10955,6249 +2015,8,2011,548,102531,771,19,6736,202,179,58,15240,9102 +2015,8,2012,918,171800,1291,32,11290,339,300,97,24244,15257 +2015,8,2013,1063,198839,1495,37,13072,393,347,112,26395,17665 +2015,8,2014,1616,302168,2271,57,19865,597,528,171,37161,26844 +2015,8,2015,3074,575013,4322,108,37803,1136,1005,325,62584,51084 +2015,9,1985,817,1757722,23055,174,51905,1107,979,340,557112,48486 +2015,9,1986,135,207531,1996,29,7200,182,161,56,76155,7981 +2015,9,1987,104,160393,1543,22,5564,141,125,43,55576,6168 +2015,9,1988,88,135892,1307,19,4714,119,106,37,45129,5226 +2015,9,1989,96,148208,1426,20,5142,130,115,40,46413,5700 +2015,9,1990,95,146387,1410,20,5078,129,114,40,43096,5629 +2015,9,1991,133,150827,1452,21,5231,132,117,45,42311,5799 +2015,9,1992,173,196133,1888,27,6801,172,152,59,52611,7538 +2015,9,1993,253,286631,2759,39,9936,251,222,88,73761,11014 +2015,9,1994,293,329777,3183,46,11518,291,258,103,83737,12761 +2015,9,1995,364,409029,3947,57,14281,361,320,129,101896,15822 +2015,9,1996,458,515308,4971,57,17986,455,403,165,91241,19927 +2015,9,1997,525,590486,5694,65,20604,521,461,191,100734,22827 +2015,9,1998,675,759996,7326,83,26509,671,593,249,109398,29369 +2015,9,1999,954,1074779,10356,118,37475,948,839,358,147064,41517 +2015,9,2000,1319,1485966,14313,163,51792,1310,1159,495,199768,57379 +2015,9,2001,1735,1812260,20708,214,66564,1746,1545,651,243323,75481 +2015,9,2002,2193,2290214,26169,271,84119,2207,1952,823,302089,95388 +2015,9,2003,2873,3001243,34294,355,110236,2892,2558,1079,388558,125002 +2015,9,2004,2812,2140873,23571,347,88427,2830,2504,1056,314899,122340 +2015,9,2005,3666,2790996,30729,453,115280,3690,3264,1376,401082,159491 +2015,9,2006,10681,3293320,36117,535,135958,4354,3851,1624,445591,188196 +2015,9,2007,11776,3630800,39818,589,149890,4800,4246,1790,479854,207481 +2015,9,2008,10330,2036376,20359,517,122936,4211,3725,1571,324400,182015 +2015,9,2009,9119,1797649,17972,456,108524,3717,3288,1386,276893,160677 +2015,9,2010,4566,899404,8993,228,54334,1861,1646,694,133608,80446 +2015,9,2011,6650,1309150,13092,333,79142,2710,2397,1011,186755,117175 +2015,9,2012,11148,2192907,21933,558,132659,4542,4018,1695,298801,196410 +2015,9,2013,12907,2537241,25382,646,153595,5258,4651,1962,327622,227408 +2015,9,2014,19614,3855739,38572,982,233412,7990,7068,2982,465638,345582 +2015,9,2015,37325,7337304,73400,1868,444173,15205,13451,5675,797255,657628 +2015,10,1985,1490,3229397,43155,330,91412,2052,1815,631,1079604,89927 +2015,10,1986,245,383157,3750,54,12678,338,299,104,148268,14802 +2015,10,1987,190,296128,2898,42,9799,261,231,80,108174,11440 +2015,10,1988,161,250893,2455,36,8302,221,196,68,87822,9693 +2015,10,1989,175,273631,2678,39,9054,241,213,74,90293,10571 +2015,10,1990,173,270269,2647,38,8943,238,211,73,83805,10441 +2015,10,1991,243,278466,2727,39,9211,245,217,83,82274,10755 +2015,10,1992,316,362112,3545,51,11975,319,282,109,102280,13982 +2015,10,1993,461,529195,5179,75,17496,466,412,162,143367,20427 +2015,10,1994,535,608843,5975,87,20283,540,478,190,162750,23667 +2015,10,1995,663,755160,7409,108,25149,669,592,238,198028,29345 +2015,10,1996,835,951374,9331,107,31673,843,746,304,179841,36958 +2015,10,1997,956,1090168,10689,123,36282,966,854,352,198163,42337 +2015,10,1998,1231,1403121,13753,158,46681,1243,1099,459,211899,54471 +2015,10,1999,1740,1984274,19441,224,65990,1757,1554,660,283805,77002 +2015,10,2000,2404,2743411,26869,309,91202,2428,2148,912,385454,106421 +2015,10,2001,3163,3349142,38900,407,117164,3237,2863,1200,472868,139996 +2015,10,2002,3997,4232425,49160,514,148064,4090,3618,1517,586795,176917 +2015,10,2003,5238,5546444,64422,674,194033,5360,4742,1988,754376,231844 +2015,10,2004,5126,3955062,44233,659,155626,5246,4641,1945,614469,226905 +2015,10,2005,6683,5156108,57666,860,202886,6839,6050,2536,782229,295810 +2015,10,2006,19470,6084102,67893,1014,239314,8070,7139,2992,871968,349049 +2015,10,2007,21465,6707562,74850,1118,263838,8897,7871,3299,938350,384818 +2015,10,2008,18830,3757783,38172,981,216384,7805,6905,2894,639645,337585 +2015,10,2009,16623,3317254,33697,866,191017,6890,6095,2555,545557,298009 +2015,10,2010,8323,1660124,16866,434,95636,3449,3051,1279,263053,149203 +2015,10,2011,12122,2417053,24559,632,139301,5024,4444,1863,367368,217326 +2015,10,2012,20320,4049763,41156,1059,233498,8421,7449,3123,587155,364285 +2015,10,2013,23527,4686877,47638,1226,270349,9749,8624,3616,642940,421777 +2015,10,2014,35752,7122453,72393,1863,410838,14815,13106,5495,912083,640955 +2015,10,2015,68035,13553702,137762,3545,781806,28192,24939,10456,1556620,1219712 +2015,11,1985,635,1552732,24078,254,39392,974,861,311,1356099,42304 +2015,11,1986,105,179519,2063,42,5454,160,142,51,197218,6963 +2015,11,1987,81,138744,1594,32,4215,124,110,40,142600,5382 +2015,11,1988,68,117550,1351,27,3572,105,93,33,114959,4560 +2015,11,1989,75,128203,1473,30,3895,114,101,37,116977,4973 +2015,11,1990,74,126628,1458,30,3847,113,100,36,107307,4912 +2015,11,1991,104,130469,1502,30,3963,116,103,39,104258,5059 +2015,11,1992,135,169660,1953,40,5152,151,134,52,128362,6577 +2015,11,1993,197,247945,2853,58,7527,221,196,77,178235,9609 +2015,11,1994,228,285286,3292,67,8726,256,227,90,201486,11133 +2015,11,1995,283,353848,4082,83,10819,318,281,113,244028,13805 +2015,11,1996,356,445790,5141,83,13626,400,354,144,202665,17386 +2015,11,1997,408,510830,5889,95,15609,458,406,166,220072,19916 +2015,11,1998,524,657475,7576,122,20083,590,522,216,216500,25624 +2015,11,1999,741,929798,10710,173,28390,834,738,311,281803,36223 +2015,11,2000,1025,1285528,14802,239,39236,1152,1019,430,379314,50062 +2015,11,2001,1348,1564675,21379,314,50356,1534,1357,566,429608,65857 +2015,11,2002,1703,1977330,27017,397,63637,1938,1715,715,526846,83225 +2015,11,2003,2232,2591228,35405,520,83393,2540,2247,937,668668,109064 +2015,11,2004,2184,1850251,24370,509,66940,2486,2199,917,574599,106740 +2015,11,2005,2848,2412122,31770,664,87267,3241,2867,1195,721031,139154 +2015,11,2006,8297,2846255,37251,783,102842,3824,3383,1410,776295,164199 +2015,11,2007,9147,3137916,41068,863,113380,4216,3729,1555,821707,181026 +2015,11,2008,8025,1796675,21762,757,93301,3698,3272,1364,604876,158806 +2015,11,2009,7084,1586048,19211,669,82363,3265,2888,1204,505579,140189 +2015,11,2010,3547,792965,9610,335,41237,1634,1446,603,238131,70188 +2015,11,2011,5166,1153389,13987,488,60064,2380,2105,878,323387,102234 +2015,11,2012,8659,1930609,23427,817,100681,3988,3528,1472,499509,171367 +2015,11,2013,10026,2232142,27105,946,116570,4617,4084,1704,523530,198412 +2015,11,2014,15236,3392097,41190,1438,177147,7016,6206,2590,699041,301518 +2015,11,2015,28994,6455004,78383,2736,337103,13350,11810,4928,1064181,573776 +2015,12,1985,1779,3988496,56604,458,98413,2526,2234,824,1817106,110923 +2015,12,1986,293,477583,4948,75,13643,416,368,136,256107,18258 +2015,12,1987,226,369106,3824,58,10544,321,284,105,186493,14111 +2015,12,1988,192,312724,3240,49,8934,272,241,89,151180,11955 +2015,12,1989,209,341065,3534,54,9743,297,263,97,155094,13039 +2015,12,1990,207,336875,3491,53,9624,293,259,96,143579,12879 +2015,12,1991,290,347098,3596,55,9913,302,267,107,140840,13265 +2015,12,1992,377,451369,4674,71,12887,393,347,141,174790,17246 +2015,12,1993,551,659649,6829,104,18828,574,508,209,244609,25196 +2015,12,1994,638,756559,7868,121,21833,665,588,245,277482,29193 +2015,12,1995,792,938394,9756,149,27071,824,729,307,337414,36197 +2015,12,1996,997,1182242,12287,149,34094,1038,918,392,321732,45587 +2015,12,1997,1142,1354746,14075,171,39056,1189,1052,454,352758,52221 +2015,12,1998,1469,1743690,18109,220,50250,1530,1353,591,364761,67188 +2015,12,1999,2077,2465963,25600,311,71035,2163,1913,851,483992,94980 +2015,12,2000,2871,3409467,35380,430,98174,2989,2644,1175,655990,131267 +2015,12,2001,3776,4430681,45049,565,127857,4152,3673,1546,774803,172680 +2015,12,2002,4772,5599205,56930,714,161577,5247,4642,1954,957180,218222 +2015,12,2003,6254,7337557,74605,936,211741,6877,6083,2561,1224621,285972 +2015,12,2004,6120,5229755,51166,916,169791,6730,5953,2506,1043450,279880 +2015,12,2005,7979,6817898,66704,1195,221352,8774,7761,3267,1321953,364872 +2015,12,2006,23247,8044982,78687,1410,261162,10353,9158,3855,1477297,430541 +2015,12,2007,25629,8869382,86750,1554,287924,11414,10097,4250,1580609,474661 +2015,12,2008,22484,4963006,44171,1363,236209,10013,8858,3729,1153461,416400 +2015,12,2009,19848,4381186,38993,1204,208518,8839,7819,3292,978268,367585 +2015,12,2010,9937,2193352,19522,603,104398,4425,3915,1648,468731,184038 +2015,12,2011,14474,3194553,28433,878,152063,6446,5702,2400,649777,268065 +2015,12,2012,24262,5354376,47659,1471,254891,10804,9558,4024,1029376,449335 +2015,12,2013,28091,6198938,55178,1703,295118,12509,11066,4659,1114799,520249 +2015,12,2014,42688,9420275,83851,2588,448478,19010,16817,7080,1558159,790599 +2015,12,2015,81234,17926360,159565,4926,853434,36175,32001,13472,2590443,1504478 +2015,13,1985,332,646160,7006,44,19557,402,356,125,239927,17392 +2015,13,1986,55,76814,608,7,2712,66,59,21,33916,2863 +2015,13,1987,42,59367,470,6,2096,51,45,16,24644,2213 +2015,13,1988,36,50298,398,5,1776,43,38,14,19944,1875 +2015,13,1989,39,54857,434,5,1937,47,42,15,20410,2044 +2015,13,1990,39,54183,429,5,1913,47,41,15,18844,2019 +2015,13,1991,54,55827,442,5,1971,48,43,17,18469,2080 +2015,13,1992,70,72598,575,7,2562,62,55,23,22872,2704 +2015,13,1993,103,106098,840,10,3743,91,81,34,31943,3951 +2015,13,1994,119,121687,968,12,4340,106,94,40,36202,4577 +2015,13,1995,148,150934,1200,14,5382,131,116,50,43980,5675 +2015,13,1996,186,190155,1511,14,6778,165,146,64,40417,7148 +2015,13,1997,213,217901,1731,16,7764,189,167,74,44324,8188 +2015,13,1998,274,280460,2227,21,9989,243,215,96,46301,10535 +2015,13,1999,388,396633,3148,30,14121,344,304,139,61510,14892 +2015,13,2000,536,548390,4351,41,19516,476,421,192,83218,20582 +2015,13,2001,705,711930,5536,54,25413,660,584,252,96072,27075 +2015,13,2002,891,899689,6996,69,32116,835,738,319,118457,34216 +2015,13,2003,1168,1179010,9168,90,42086,1094,968,418,151238,44839 +2015,13,2004,1143,840578,6296,88,33754,1070,947,409,128706,43884 +2015,13,2005,1491,1095837,8208,115,44005,1396,1234,533,162634,57210 +2015,13,2006,4343,1293067,9660,136,51908,1647,1457,629,179798,67507 +2015,13,2007,4788,1425571,10650,150,57227,1815,1606,694,191842,74424 +2015,13,2008,4200,798467,5470,131,46939,1593,1409,609,139507,65289 +2015,13,2009,3708,704862,4829,116,41436,1406,1244,537,117847,57636 +2015,13,2010,1856,352797,2417,58,20746,704,623,269,56203,28856 +2015,13,2011,2704,513725,3519,85,30218,1025,907,392,77483,42031 +2015,13,2012,4532,860862,5897,142,50652,1718,1520,657,121934,70453 +2015,13,2013,5248,996429,6826,164,58645,1989,1760,760,130942,81572 +2015,13,2014,7975,1514230,10374,249,89121,3023,2674,1156,180942,123962 +2015,13,2015,15175,2881513,19740,474,169593,5753,5089,2199,294594,235894 +2015,16,1985,143,280230,3181,22,9939,180,159,40,82137,7851 +2015,16,1986,23,32797,273,4,1379,30,26,7,11304,1292 +2015,16,1987,18,25348,211,3,1066,23,20,5,8245,999 +2015,16,1988,15,21476,179,2,903,19,17,4,6693,846 +2015,16,1989,17,23422,195,3,985,21,19,5,6879,923 +2015,16,1990,17,23134,193,3,973,21,19,5,6386,912 +2015,16,1991,23,23832,199,3,1002,22,19,5,6281,939 +2015,16,1992,30,30987,259,3,1303,28,25,7,7809,1221 +2015,16,1993,44,45277,378,5,1903,41,36,11,10948,1783 +2015,16,1994,51,53195,442,6,2204,47,42,12,12463,2066 +2015,16,1995,63,65967,548,7,2732,59,52,16,15169,2562 +2015,16,1996,80,83093,690,7,3441,74,66,20,13904,3227 +2015,16,1997,92,95198,791,8,3942,85,75,23,15414,3696 +2015,16,1998,118,122503,1017,10,5072,109,97,30,17355,4756 +2015,16,1999,166,173206,1438,15,7170,154,137,43,23513,6723 +2015,16,2000,230,239420,1987,20,9909,213,189,60,31896,9291 +2015,16,2001,303,298382,2558,27,12698,274,242,79,36624,12223 +2015,16,2002,382,377075,3232,34,16047,346,306,99,45344,15446 +2015,16,2003,501,494143,4236,44,21029,453,401,130,58149,20242 +2015,16,2004,490,352776,2926,44,16873,444,393,127,48598,19811 +2015,16,2005,639,459905,3815,57,21998,578,512,166,61714,25827 +2015,16,2006,1863,542678,4447,67,25935,683,604,196,68043,30475 +2015,16,2007,2054,598289,4902,74,28593,753,666,216,73026,33598 +2015,16,2008,1802,336251,2532,65,23450,660,584,190,51776,29474 +2015,16,2009,1591,296832,2235,57,20701,583,516,167,44052,26019 +2015,16,2010,796,148421,1116,29,10364,292,258,84,21169,13027 +2015,16,2011,1160,215906,1623,42,15096,425,376,122,29450,18974 +2015,16,2012,1944,361437,2714,70,25305,712,630,205,46860,31805 +2015,16,2013,2251,417933,3137,81,29298,824,729,237,51035,36825 +2015,16,2014,3421,635115,4767,123,44523,1252,1107,360,71930,55961 +2015,16,2015,6510,1208596,9072,234,84726,2382,2107,685,121376,106492 +2015,17,1985,452,939685,12371,94,26900,602,532,132,357953,26366 +2015,17,1986,74,111413,1074,15,3730,99,88,22,49931,4340 +2015,17,1987,57,86107,830,12,2883,77,68,17,36388,3354 +2015,17,1988,49,72954,703,10,2443,65,57,14,29516,2842 +2015,17,1989,53,79566,767,11,2664,71,63,16,30308,3099 +2015,17,1990,52,78588,758,11,2631,70,62,15,28091,3061 +2015,17,1991,74,80973,781,11,2710,72,64,18,27593,3153 +2015,17,1992,96,105299,1016,15,3524,94,83,23,34275,4099 +2015,17,1993,140,153890,1484,21,5148,137,121,34,48007,5989 +2015,17,1994,162,181309,1736,25,5961,158,140,40,54632,6939 +2015,17,1995,201,224888,2152,31,7391,196,174,50,66463,8604 +2015,17,1996,253,283329,2711,30,9309,247,219,64,61592,10836 +2015,17,1997,290,324673,3105,35,10663,283,251,75,67850,12413 +2015,17,1998,373,417891,3995,45,13719,365,322,97,72672,15971 +2015,17,1999,527,590998,5648,64,19394,515,456,140,97327,22577 +2015,17,2000,729,817130,7805,88,26804,712,630,193,132025,31202 +2015,17,2001,959,1036750,9795,115,34421,1005,889,254,152518,41046 +2015,17,2002,1212,1310177,12378,146,43499,1270,1124,321,188697,51871 +2015,17,2003,1588,1716941,16221,191,57004,1665,1473,421,241806,67975 +2015,17,2004,1554,1224238,11143,187,45722,1629,1441,412,203914,66527 +2015,17,2005,2026,1596010,14526,244,59607,2124,1879,537,258772,86729 +2015,17,2006,5903,1883258,17088,288,70306,2507,2217,634,287662,102339 +2015,17,2007,6508,2076241,18839,317,77510,2763,2445,699,308442,112826 +2015,17,2008,5709,1162797,9639,278,63584,2424,2145,613,221854,98978 +2015,17,2009,5040,1026481,8509,246,56130,2140,1893,541,188614,87374 +2015,17,2010,2523,513728,4258,123,28102,1071,948,271,90614,43745 +2015,17,2011,3676,747999,6200,179,40933,1560,1380,395,126009,63719 +2015,17,2012,6161,1253328,10389,300,68613,2615,2314,662,200379,106806 +2015,17,2013,7133,1450569,12024,348,79441,3028,2679,766,218043,123662 +2015,17,2014,10840,2204370,18273,529,120723,4601,4070,1164,306753,187924 +2015,17,2015,20628,4194818,34772,1006,229731,8756,7746,2215,515952,357612 +2015,18,1985,78,156376,1837,12,4937,99,87,21,47837,4338 +2015,18,1986,13,18489,159,2,685,16,14,3,6598,714 +2015,18,1987,10,14290,123,2,529,13,11,3,4813,552 +2015,18,1988,8,12107,104,1,448,11,9,2,3907,468 +2015,18,1989,9,13204,114,1,489,12,10,2,4017,510 +2015,18,1990,9,13042,112,1,483,11,10,2,3728,504 +2015,18,1991,13,13438,116,1,498,12,10,3,3668,519 +2015,18,1992,16,17475,150,2,647,15,14,4,4562,674 +2015,18,1993,24,25539,220,3,945,22,20,6,6396,985 +2015,18,1994,28,30088,257,3,1094,26,23,7,7285,1142 +2015,18,1995,35,37320,319,4,1357,32,29,8,8867,1416 +2015,18,1996,43,47019,401,4,1709,41,36,10,8143,1783 +2015,18,1997,50,53880,460,5,1958,47,41,12,8998,2042 +2015,18,1998,64,69350,592,6,2519,60,53,16,9836,2627 +2015,18,1999,91,98077,836,8,3561,85,75,23,13247,3714 +2015,18,2000,125,135604,1156,11,4921,117,104,32,17987,5133 +2015,18,2001,165,171924,1450,15,6321,165,146,42,20654,6753 +2015,18,2002,208,217266,1832,19,7988,209,185,53,25591,8534 +2015,18,2003,273,284719,2401,25,10469,274,242,69,32845,11183 +2015,18,2004,267,203053,1651,24,8397,268,237,67,27415,10945 +2015,18,2005,348,264715,2153,32,10947,349,309,88,34849,14269 +2015,18,2006,1013,312358,2528,37,12911,412,364,104,38701,16837 +2015,18,2007,1117,344367,2787,41,14234,454,402,114,41581,18562 +2015,18,2008,980,192740,1427,36,11674,398,352,100,29464,16284 +2015,18,2009,865,170145,1260,32,10305,352,311,88,25108,14375 +2015,18,2010,433,85141,630,16,5159,176,156,44,12093,7197 +2015,18,2011,631,123950,918,23,7515,256,227,65,16866,10483 +2015,18,2012,1058,207659,1537,39,12597,430,380,108,26916,17572 +2015,18,2013,1224,240306,1779,45,14585,497,440,125,29418,20345 +2015,18,2014,1861,365182,2703,69,22164,756,669,190,41637,30918 +2015,18,2015,3541,694927,5143,131,42177,1438,1272,362,70775,58835 +2015,19,1985,171,355297,4539,32,10962,227,201,58,102322,9972 +2015,19,1986,28,42074,394,5,1521,37,33,10,13897,1641 +2015,19,1987,22,32518,304,4,1175,29,26,7,10168,1269 +2015,19,1988,18,27551,258,3,996,25,22,6,8274,1075 +2015,19,1989,20,30047,281,4,1086,27,24,7,8535,1172 +2015,19,1990,20,29678,278,4,1073,26,23,7,7952,1158 +2015,19,1991,28,30577,286,4,1105,27,24,8,7847,1193 +2015,19,1992,36,39760,372,5,1436,35,31,10,9787,1550 +2015,19,1993,53,58103,544,7,2099,52,46,15,13763,2265 +2015,19,1994,61,67660,632,8,2431,60,53,18,15675,2624 +2015,19,1995,76,83916,784,10,3014,74,66,22,19106,3254 +2015,19,1996,96,105715,987,10,3796,93,83,28,17846,4098 +2015,19,1997,110,121131,1131,12,4348,107,95,33,19790,4695 +2015,19,1998,142,155895,1455,15,5595,138,122,43,22001,6040 +2015,19,1999,200,220451,2056,22,7909,195,172,61,29800,8539 +2015,19,2000,276,304772,2842,30,10930,269,238,85,40547,11801 +2015,19,2001,364,392783,3643,39,13906,380,336,111,47426,15524 +2015,19,2002,460,496373,4604,50,17573,480,425,141,58929,19618 +2015,19,2003,602,650481,6033,65,23029,629,557,185,75864,25709 +2015,19,2004,589,463906,4149,64,18473,616,545,181,62694,25161 +2015,19,2005,768,604782,5409,83,24082,803,710,236,79978,32802 +2015,19,2006,2239,713629,6352,98,28403,947,838,278,89396,38706 +2015,19,2007,2468,786757,7003,108,31313,1044,924,306,96424,42672 +2015,19,2008,2165,440051,3575,95,25678,916,810,269,67452,37435 +2015,19,2009,1912,388463,3156,84,22668,809,715,237,57771,33046 +2015,19,2010,957,194388,1578,42,11349,405,358,119,27982,16545 +2015,19,2011,1394,282991,2297,61,16531,590,522,173,39286,24099 +2015,19,2012,2337,474104,3848,102,27709,988,874,290,63183,40395 +2015,19,2013,2706,548636,4453,118,32082,1144,1012,336,69721,46771 +2015,19,2014,4111,833740,6766,180,48754,1738,1538,510,99921,71075 +2015,19,2015,7824,1586572,12876,343,92776,3308,2926,971,173524,135253 +2015,20,1985,193,388206,4925,37,11668,247,219,64,163120,10815 +2015,20,1986,32,45890,426,6,1618,41,36,10,23002,1780 +2015,20,1987,24,35466,330,5,1251,31,28,8,16726,1376 +2015,20,1988,21,30049,279,4,1059,27,24,7,13545,1166 +2015,20,1989,23,32772,304,4,1155,29,26,7,13874,1271 +2015,20,1990,22,32369,301,4,1141,29,25,7,12823,1256 +2015,20,1991,31,33350,310,4,1176,30,26,9,12566,1293 +2015,20,1992,41,43365,403,6,1528,38,34,11,15573,1681 +2015,20,1993,60,63372,589,8,2233,56,50,17,21764,2457 +2015,20,1994,69,73795,685,10,2586,65,58,20,24707,2846 +2015,20,1995,86,91525,849,12,3207,81,71,25,30024,3529 +2015,20,1996,108,115300,1069,12,4039,102,90,31,27432,4445 +2015,20,1997,124,132114,1225,14,4627,116,103,36,30136,5091 +2015,20,1998,159,170030,1576,18,5953,150,132,47,31875,6551 +2015,20,1999,225,240440,2227,25,8415,212,187,68,42488,9260 +2015,20,2000,311,332406,3078,34,11630,292,259,94,57521,12798 +2015,20,2001,409,428319,3946,45,14794,413,365,124,66312,16836 +2015,20,2002,517,541281,4986,57,18695,521,461,157,81847,21276 +2015,20,2003,677,709329,6534,75,24499,683,604,205,104613,27882 +2015,20,2004,662,505893,4494,73,19653,669,592,201,88842,27288 +2015,20,2005,864,659519,5859,96,25621,872,771,262,112408,35574 +2015,20,2006,2516,778219,6877,113,30216,1029,910,309,124137,41977 +2015,20,2007,2774,857967,7582,124,33312,1134,1003,341,132656,46278 +2015,20,2008,2434,481470,3907,109,27333,995,880,299,96273,40598 +2015,20,2009,2148,425027,3449,96,24129,878,777,264,81494,35839 +2015,20,2010,1076,212679,1726,48,12080,440,389,132,38954,17943 +2015,20,2011,1567,309612,2512,70,17596,640,566,192,53848,26136 +2015,20,2012,2626,518691,4207,118,29495,1073,949,322,85020,43809 +2015,20,2013,3040,600217,4868,136,34149,1242,1099,373,91689,50723 +2015,20,2014,4620,912125,7398,207,51895,1888,1670,567,127455,77081 +2015,20,2015,8792,1735735,14078,395,98755,3592,3178,1080,209801,146683 +2015,21,1985,108,216001,2537,17,6612,137,122,29,68315,6042 +2015,21,1986,18,25691,221,3,917,23,20,5,9463,995 +2015,21,1987,14,19856,170,2,709,17,15,4,6902,769 +2015,21,1988,12,16823,144,2,601,15,13,3,5602,651 +2015,21,1989,13,18347,158,2,655,16,14,3,5757,710 +2015,21,1990,13,18122,156,2,647,16,14,3,5341,701 +2015,21,1991,18,18672,160,2,666,16,15,4,5256,723 +2015,21,1992,23,24282,209,3,866,21,19,5,6534,939 +2015,21,1993,33,35486,305,4,1266,31,28,8,9161,1372 +2015,21,1994,39,41810,356,4,1465,36,32,9,10431,1590 +2015,21,1995,48,51859,442,5,1817,45,40,11,12697,1972 +2015,21,1996,61,65336,557,5,2288,57,50,15,11939,2483 +2015,21,1997,69,74870,638,6,2621,65,57,17,13168,2844 +2015,21,1998,89,96366,820,8,3373,83,74,22,14193,3660 +2015,21,1999,126,136285,1160,11,4768,118,104,32,19050,5174 +2015,21,2000,174,188431,1603,16,6590,163,144,44,25857,7150 +2015,21,2001,229,239223,2012,21,8463,230,203,58,30061,9406 +2015,21,2002,290,302315,2542,26,10695,290,257,73,37218,11886 +2015,21,2003,380,396173,3332,34,14016,380,337,96,47730,15577 +2015,21,2004,372,282443,2288,33,11241,372,329,94,40054,15245 +2015,21,2005,484,368214,2983,43,14654,485,429,122,50871,19874 +2015,21,2006,1411,434485,3511,51,17287,573,507,144,56737,23451 +2015,21,2007,1556,479009,3871,56,19058,631,559,159,60889,25855 +2015,21,2008,1365,267733,1975,49,15628,554,490,139,43486,22681 +2015,21,2009,1205,236346,1743,44,13796,489,433,123,37006,20022 +2015,21,2010,603,118298,872,22,6907,245,217,62,17798,10024 +2015,21,2011,879,172263,1270,32,10061,357,315,90,24782,14601 +2015,21,2012,1473,288671,2129,53,16864,598,529,150,39470,24475 +2015,21,2013,1705,334136,2464,62,19525,692,612,174,43032,28338 +2015,21,2014,2592,507774,3745,94,29672,1052,930,265,60692,43064 +2015,21,2015,4932,966271,7126,179,56464,2001,1770,504,102540,81948 +2015,22,1985,282,572759,7224,50,15470,366,324,116,218800,16010 +2015,22,1986,46,68514,631,8,2145,60,53,19,30656,2635 +2015,22,1987,36,52952,488,6,1658,47,41,15,22320,2037 +2015,22,1988,30,44864,413,5,1405,39,35,13,18092,1726 +2015,22,1989,33,48930,451,6,1532,43,38,14,18558,1882 +2015,22,1990,33,48328,445,6,1513,43,38,13,17177,1859 +2015,22,1991,46,49789,458,6,1559,44,39,16,16861,1915 +2015,22,1992,60,64740,596,8,2026,57,50,21,20924,2489 +2015,22,1993,87,94602,871,11,2960,83,74,30,29280,3637 +2015,22,1994,101,108485,1003,13,3433,96,85,36,33213,4213 +2015,22,1995,125,134541,1244,16,4257,120,106,45,40387,5224 +2015,22,1996,158,169480,1567,16,5361,151,133,57,37714,6580 +2015,22,1997,181,194184,1795,19,6141,172,153,66,41347,7537 +2015,22,1998,233,249899,2309,24,7901,222,196,86,42598,9697 +2015,22,1999,329,353358,3264,34,11169,314,278,124,56500,13709 +2015,22,2000,455,488480,4512,47,15436,434,384,172,76615,18946 +2015,22,2001,598,647903,6180,61,20301,614,543,226,92487,24923 +2015,22,2002,756,818777,7810,78,25655,776,686,286,114424,31496 +2015,22,2003,991,1072978,10235,102,33620,1016,899,375,146624,41275 +2015,22,2004,970,764778,7020,99,26960,995,880,367,122897,40395 +2015,22,2005,1264,997022,9152,130,35147,1297,1147,478,155929,52662 +2015,22,2006,3684,1176466,10794,153,41467,1530,1354,564,174237,62140 +2015,22,2007,4061,1297022,11900,169,45716,1687,1492,622,186757,68508 +2015,22,2008,3563,725154,6072,148,37494,1480,1309,545,133104,60099 +2015,22,2009,3145,640142,5360,131,33099,1306,1156,481,113064,53054 +2015,22,2010,1575,320467,2684,65,16571,654,579,241,54270,26562 +2015,22,2011,2294,466738,3909,95,24138,953,843,351,75389,38690 +2015,22,2012,3845,782278,6551,160,40460,1597,1413,589,119731,64853 +2015,22,2013,4451,905647,7585,185,46845,1849,1636,681,130075,75088 +2015,22,2014,6765,1376274,11526,281,71189,2810,2486,1035,182581,114107 +2015,22,2015,12873,2618989,21933,535,135469,5347,4730,1970,305860,217142 +2015,23,1985,262,538056,6231,41,17451,335,296,100,142715,14641 +2015,23,1986,43,63320,537,7,2421,55,49,17,19377,2410 +2015,23,1987,33,48938,415,5,1871,43,38,13,14156,1863 +2015,23,1988,28,41462,352,4,1585,36,32,11,11505,1578 +2015,23,1989,31,45220,384,5,1729,39,35,12,11846,1721 +2015,23,1990,30,44664,380,5,1708,39,34,12,11016,1700 +2015,23,1991,43,46019,391,5,1759,40,35,14,10849,1751 +2015,23,1992,55,59843,509,6,2287,52,46,18,13509,2276 +2015,23,1993,81,87455,743,9,3341,76,67,26,18966,3326 +2015,23,1994,94,100620,857,11,3873,88,78,31,21548,3853 +2015,23,1995,116,124801,1063,13,4803,109,97,39,26242,4778 +2015,23,1996,147,157229,1339,13,6049,138,122,50,23284,6017 +2015,23,1997,168,180167,1534,15,6929,158,140,58,25801,6893 +2015,23,1998,216,231887,1973,20,8915,203,180,75,28607,8868 +2015,23,1999,306,327932,2789,28,12602,287,254,108,38701,12537 +2015,23,2000,422,453393,3855,38,17417,397,351,150,52633,17326 +2015,23,2001,556,552506,5575,50,22395,528,467,197,64003,22793 +2015,23,2002,702,698220,7045,64,28302,668,591,249,79601,28804 +2015,23,2003,920,914992,9232,83,37089,875,774,326,102578,37746 +2015,23,2004,900,652858,6354,82,29753,856,758,319,83051,36942 +2015,23,2005,1174,851114,8284,106,38789,1117,988,416,106032,48161 +2015,23,2006,3420,1004297,9713,126,45743,1318,1166,491,117837,56828 +2015,23,2007,3771,1107212,10708,138,50430,1453,1285,541,127249,62652 +2015,23,2008,3308,620828,5488,121,41353,1274,1127,475,86115,54962 +2015,23,2009,2920,548048,4845,107,36505,1125,995,419,73806,48519 +2015,23,2010,1462,274147,2423,54,18277,563,498,210,35772,24292 +2015,23,2011,2129,398966,3526,78,26622,820,725,306,50262,35383 +2015,23,2012,3569,668165,5906,131,44624,1374,1216,512,80909,59309 +2015,23,2013,4133,772932,6833,152,51667,1591,1407,593,89381,68669 +2015,23,2014,6280,1174593,10383,231,78516,2418,2139,902,128298,104353 +2015,23,2015,11951,2235200,19759,439,149412,4600,4070,1716,223397,198580 +2015,24,1985,516,1124084,14722,108,31629,702,621,225,356817,30787 +2015,24,1986,85,133633,1280,18,4387,116,102,37,48910,5068 +2015,24,1987,66,103280,989,14,3391,89,79,29,35753,3917 +2015,24,1988,56,87503,838,12,2873,76,67,24,29070,3318 +2015,24,1989,61,95433,914,13,3133,83,73,26,29953,3619 +2015,24,1990,60,94261,904,13,3094,82,72,26,27869,3575 +2015,24,1991,84,97122,931,13,3187,84,74,30,27467,3682 +2015,24,1992,109,126298,1210,17,4144,109,97,39,34225,4787 +2015,24,1993,160,184577,1768,25,6054,159,141,58,48082,6993 +2015,24,1994,185,211697,2037,29,7020,185,163,68,54633,8102 +2015,24,1995,230,262577,2525,35,8705,229,203,85,66559,10046 +2015,24,1996,289,330810,3181,35,10963,289,255,109,62681,12653 +2015,24,1997,331,379080,3643,40,12558,331,292,126,69312,14494 +2015,24,1998,426,487913,4688,52,16158,425,376,164,75660,18648 +2015,24,1999,602,690018,6627,74,22841,601,532,237,101982,26362 +2015,24,2000,833,954027,9158,102,31567,831,735,327,138654,36433 +2015,24,2001,1095,1238477,11655,134,41108,1154,1021,430,162585,47928 +2015,24,2002,1384,1565102,14729,169,51949,1458,1290,544,201755,60568 +2015,24,2003,1814,2051012,19302,222,68077,1911,1690,712,259374,79372 +2015,24,2004,1775,1462283,13252,217,54601,1870,1654,697,216173,77681 +2015,24,2005,2314,1906339,17277,283,71182,2438,2157,909,275343,101271 +2015,24,2006,6743,2249441,20341,334,83965,2877,2545,1073,308260,119498 +2015,24,2007,7434,2479950,22426,368,92569,3171,2806,1182,331890,131743 +2015,24,2008,6521,1386680,11411,323,75914,2782,2461,1037,235011,115573 +2015,24,2009,5757,1224117,10073,285,67015,2456,2173,916,200843,102024 +2015,24,2010,2882,612690,5042,143,33552,1230,1088,458,97062,51080 +2015,24,2011,4198,892161,7342,208,48871,1791,1584,668,135909,74402 +2015,24,2012,7037,1495005,12304,348,81918,3002,2655,1119,217897,124714 +2015,24,2013,8148,1730423,14242,403,94846,3475,3074,1296,239512,144396 +2015,24,2014,12382,2629650,21642,613,144134,5281,4672,1970,341469,219432 +2015,24,2015,23562,5004103,41184,1167,274281,10050,8890,3748,587772,417570 +2015,25,1985,3197,7075299,98458,799,202179,4397,3890,1387,2606235,193986 +2015,25,1986,526,830607,8498,132,28041,724,640,228,359663,31930 +2015,25,1987,407,641946,6568,102,21672,559,495,176,262115,24678 +2015,25,1988,345,543886,5565,86,18361,474,419,150,212619,20908 +2015,25,1989,376,593177,6069,94,20026,517,457,163,218326,22803 +2015,25,1990,371,585890,6004,93,19779,511,452,161,202382,22523 +2015,25,1991,521,603659,6184,96,20373,526,465,181,198380,23199 +2015,25,1992,678,784989,8040,124,26487,684,605,239,246323,30160 +2015,25,1993,990,1147197,11746,182,38697,999,884,353,344873,44064 +2015,25,1994,1147,1319899,13554,210,44860,1157,1024,415,391285,51053 +2015,25,1995,1423,1637098,16805,261,55623,1435,1269,521,475818,63302 +2015,25,1996,1792,2062472,21165,261,70053,1807,1599,664,418543,79724 +2015,25,1997,2053,2363366,24245,298,80247,2070,1831,770,461421,91326 +2015,25,1998,2641,3041819,31194,384,103247,2664,2356,1003,498029,117501 +2015,25,1999,3733,4301714,44098,543,145955,3765,3331,1443,667904,166104 +2015,25,2000,5159,5947466,60945,750,201716,5204,4603,1994,906279,229564 +2015,25,2001,6787,7248106,88150,987,259261,6934,6134,2623,1089886,301990 +2015,25,2002,8577,9159671,111398,1247,327637,8762,7751,3314,1351394,381634 +2015,25,2003,11240,12003435,145983,1634,429357,11483,10158,4343,1735849,500118 +2015,25,2004,11001,8564906,100407,1600,344480,11238,9942,4251,1417483,489464 +2015,25,2005,14341,11165841,130898,2085,449089,14651,12960,5542,1802638,638101 +2015,25,2006,41784,13175476,153664,2461,529533,17288,15293,6539,1992172,752946 +2015,25,2007,46065,14525603,169410,2713,583797,19059,16860,7209,2141791,830103 +2015,25,2008,40411,8168598,86985,2380,478995,16720,14791,6324,1464622,728216 +2015,25,2009,35674,7210987,76787,2101,422842,14760,13057,5583,1247585,642846 +2015,25,2010,17861,3607035,38416,1052,211703,7389,6536,2795,600580,321852 +2015,25,2011,26015,5249176,55919,1532,308362,10760,9519,4071,837188,468802 +2015,25,2012,43608,8790791,93670,2568,516882,18033,15952,6825,1335140,785814 +2015,25,2013,50490,10168916,108386,2973,598454,20875,18466,7902,1458095,909828 +2015,25,2014,76727,15453264,164709,4518,909447,31723,28062,12008,2061602,1382628 +2015,25,2015,146008,29406912,313434,8598,1730636,60367,53402,22850,3498183,2631082 +2015,26,1985,373,762209,9125,61,24495,481,425,103,216379,21077 +2015,26,1986,61,89822,788,10,3398,79,70,17,29530,3469 +2015,26,1987,47,69420,609,8,2626,61,54,13,21576,2681 +2015,26,1988,40,58816,516,7,2225,52,46,11,17537,2272 +2015,26,1989,44,64146,563,7,2427,57,50,12,18060,2478 +2015,26,1990,43,63358,557,7,2397,56,49,12,16798,2447 +2015,26,1991,61,65281,574,7,2469,58,51,14,16555,2521 +2015,26,1992,79,84893,746,9,3210,75,66,18,20619,3277 +2015,26,1993,116,124067,1090,14,4689,109,97,27,28956,4788 +2015,26,1994,134,146166,1275,16,5430,127,112,32,33007,5547 +2015,26,1995,166,181298,1580,20,6733,157,139,40,40207,6878 +2015,26,1996,209,228412,1990,20,8480,198,175,51,36815,8662 +2015,26,1997,240,261743,2280,23,9713,226,200,59,40805,9923 +2015,26,1998,308,336893,2933,29,12497,291,258,77,45379,12767 +2015,26,1999,436,476448,4147,41,17667,412,364,111,61425,18047 +2015,26,2000,602,658750,5731,57,24417,569,503,153,83505,24942 +2015,26,2001,792,834539,7187,75,31371,803,710,202,95709,32811 +2015,26,2002,1001,1054635,9082,95,39644,1015,898,255,118796,41465 +2015,26,2003,1312,1382063,11902,125,51953,1330,1176,334,152760,54338 +2015,26,2004,1284,985840,8192,122,41677,1301,1151,327,126549,53180 +2015,26,2005,1674,1285213,10680,159,54334,1697,1501,426,161213,69330 +2015,26,2006,4878,1516524,12523,188,64075,2002,1771,503,179166,81808 +2015,26,2007,5377,1671930,13807,207,70641,2207,1952,555,192982,90191 +2015,26,2008,4717,935958,7071,182,57930,1936,1713,486,135332,79121 +2015,26,2009,4164,826234,6242,160,51139,1709,1512,429,115689,69845 +2015,26,2010,2085,413389,3122,80,25604,856,757,215,55912,34969 +2015,26,2011,3037,601730,4543,117,37294,1246,1102,313,78300,50935 +2015,26,2012,5091,1007953,7608,196,62512,2088,1847,525,125556,85379 +2015,26,2013,5894,1166242,8802,227,72378,2417,2138,608,138048,98853 +2015,26,2014,8957,1772290,13375,345,109989,3673,3250,924,196935,150223 +2015,26,2015,17044,3372586,25453,657,209305,6990,6184,1758,339344,285867 +2015,27,1985,126,261260,3066,22,8110,164,145,34,76087,7168 +2015,27,1986,21,30766,265,4,1125,27,24,6,10440,1180 +2015,27,1987,16,23778,205,3,870,21,18,4,7624,912 +2015,27,1988,14,20145,173,2,737,18,16,4,6194,773 +2015,27,1989,15,21971,189,3,803,19,17,4,6374,843 +2015,27,1990,15,21701,187,3,794,19,17,4,5925,832 +2015,27,1991,21,22359,193,3,817,20,17,5,5834,857 +2015,27,1992,27,29075,251,3,1063,25,23,6,7262,1114 +2015,27,1993,39,42489,366,5,1553,37,33,9,10193,1628 +2015,27,1994,45,50202,429,6,1798,43,38,10,11619,1886 +2015,27,1995,56,62265,532,7,2229,53,47,13,14150,2339 +2015,27,1996,71,78442,670,7,2807,67,60,17,12832,2946 +2015,27,1997,81,89883,768,8,3216,77,68,19,14211,3375 +2015,27,1998,104,115683,988,11,4137,99,88,25,15735,4342 +2015,27,1999,148,163594,1397,15,5849,140,124,36,21271,6138 +2015,27,2000,204,226175,1930,21,8083,194,171,50,28908,8482 +2015,27,2001,268,281155,2362,27,10570,268,237,66,32649,11159 +2015,27,2002,339,355305,2985,34,13357,339,299,84,40503,14101 +2015,27,2003,444,465614,3912,45,17504,444,392,110,52055,18480 +2015,27,2004,435,332246,2694,44,14043,434,384,107,43352,18086 +2015,27,2005,567,433141,3513,57,18307,566,501,140,55196,23578 +2015,27,2006,1652,511096,4116,67,21588,668,591,165,61182,27822 +2015,27,2007,1821,563470,4538,74,23800,736,651,182,65862,30673 +2015,27,2008,1597,316051,2329,65,19520,646,571,160,46554,26908 +2015,27,2009,1410,278999,2056,58,17232,570,504,141,39774,23753 +2015,27,2010,706,139555,1028,29,8627,285,252,71,19208,11893 +2015,27,2011,1028,203083,1495,42,12567,416,368,103,26877,17322 +2015,27,2012,1724,340093,2504,70,21064,697,616,172,43056,29036 +2015,27,2013,1996,393397,2896,81,24389,806,713,200,47284,33618 +2015,27,2014,3033,597830,4400,124,37062,1225,1084,303,67358,51089 +2015,27,2015,5771,1137644,8374,235,70528,2332,2063,577,115784,97219 +2015,28,1985,108,220912,2543,17,6359,137,121,43,77619,6017 +2015,28,1986,18,26356,222,3,882,23,20,7,10880,990 +2015,28,1987,14,20369,171,2,682,17,15,5,7922,766 +2015,28,1988,12,17258,145,2,577,15,13,5,6421,649 +2015,28,1989,13,18822,158,2,630,16,14,5,6586,707 +2015,28,1990,12,18591,156,2,622,16,14,5,6096,699 +2015,28,1991,18,19155,161,2,641,16,15,6,5986,720 +2015,28,1992,23,24909,209,3,833,21,19,8,7429,936 +2015,28,1993,33,36403,306,4,1217,31,28,11,10397,1367 +2015,28,1994,39,41751,352,4,1411,36,32,13,11794,1584 +2015,28,1995,48,51786,437,5,1750,45,40,17,14342,1964 +2015,28,1996,60,65243,550,5,2204,56,50,21,13609,2473 +2015,28,1997,69,74763,630,6,2524,65,57,25,14956,2833 +2015,28,1998,89,96228,811,8,3248,83,74,32,15780,3645 +2015,28,1999,126,136087,1147,11,4592,118,104,46,21040,5153 +2015,28,2000,174,188156,1585,16,6346,163,144,64,28509,7121 +2015,28,2001,228,244380,2017,21,8262,226,200,84,33439,9368 +2015,28,2002,289,308831,2549,26,10441,285,252,107,41302,11838 +2015,28,2003,378,404712,3340,34,13683,374,331,140,52831,15514 +2015,28,2004,370,288498,2292,34,10973,366,324,137,44804,15183 +2015,28,2005,482,376107,2989,44,14305,477,422,178,56741,19794 +2015,28,2006,1406,443798,3521,52,16876,563,498,210,63225,23357 +2015,28,2007,1550,489276,3882,57,18606,621,549,232,67623,25750 +2015,28,2008,1359,273576,1981,50,15258,544,482,204,48981,22590 +2015,28,2009,1200,241504,1749,44,13469,481,425,180,41508,19941 +2015,28,2010,601,120890,875,22,6744,241,213,90,19870,9984 +2015,28,2011,875,176054,1275,32,9823,350,310,131,27514,14542 +2015,28,2012,1467,295049,2137,54,16465,587,520,220,43530,24376 +2015,28,2013,1699,341551,2474,62,19063,680,602,254,47064,28223 +2015,28,2014,2581,519039,3759,95,28969,1033,914,386,65637,42890 +2015,28,2015,4912,987710,7153,180,55128,1967,1740,735,108687,81617 +2015,29,1985,360,704844,8175,54,22007,450,398,113,249723,19661 +2015,29,1986,59,83597,709,9,3052,74,66,19,34974,3236 +2015,29,1987,46,64609,548,7,2359,57,51,14,25453,2501 +2015,29,1988,39,54740,464,6,1999,49,43,12,20624,2119 +2015,29,1989,42,59700,506,6,2180,53,47,13,21144,2311 +2015,29,1990,42,58967,500,6,2153,52,46,13,19563,2283 +2015,29,1991,59,60752,515,6,2218,54,48,15,19200,2351 +2015,29,1992,76,78998,670,8,2883,70,62,20,23817,3057 +2015,29,1993,111,115444,979,12,4212,102,90,30,33316,4466 +2015,29,1994,129,134433,1138,14,4879,119,105,35,37840,5174 +2015,29,1995,160,166731,1410,18,6049,147,130,44,46005,6416 +2015,29,1996,202,210042,1776,18,7619,185,164,56,42017,8080 +2015,29,1997,231,240672,2035,20,8728,212,188,65,46209,9256 +2015,29,1998,297,309744,2618,26,11229,273,241,85,49026,11909 +2015,29,1999,420,438008,3701,37,15874,386,341,123,65465,16835 +2015,29,2000,580,605543,5115,51,21938,533,471,170,88718,23267 +2015,29,2001,763,780959,6558,67,27907,752,665,223,102602,30608 +2015,29,2002,965,986924,8288,84,35267,951,841,282,126818,38680 +2015,29,2003,1264,1293329,10861,110,46217,1246,1102,370,162341,50689 +2015,29,2004,1237,922204,7465,108,37070,1219,1078,362,136822,49609 +2015,29,2005,1613,1202253,9732,141,48327,1589,1406,472,173404,64674 +2015,29,2006,4699,1418634,11437,166,57001,1875,1659,557,192058,76314 +2015,29,2007,5181,1564006,12609,183,62843,2068,1829,614,205640,84135 +2015,29,2008,4545,875817,6475,161,51544,1814,1605,538,147664,73808 +2015,29,2009,4012,773144,5716,142,45502,1601,1416,475,125281,65155 +2015,29,2010,2009,386933,2860,71,22781,802,709,238,60044,32621 +2015,29,2011,2926,563377,4164,103,33183,1167,1033,347,83264,47515 +2015,29,2012,4904,943968,6977,173,55621,1957,1731,581,131963,79646 +2015,29,2013,5678,1092511,8074,201,64399,2265,2004,673,142994,92215 +2015,29,2014,8629,1660245,12269,305,97865,3442,3045,1022,200052,140135 +2015,29,2015,16420,3159371,23348,581,186233,6551,5795,1945,333151,266672 +2015,30,1985,29,52386,549,4,1841,34,30,7,20143,1454 +2015,30,1986,5,6129,47,1,255,6,5,1,2857,239 +2015,30,1987,4,4737,36,0,197,4,4,1,2074,185 +2015,30,1988,3,4013,31,0,167,4,3,1,1677,157 +2015,30,1989,3,4377,34,0,182,4,4,1,1713,171 +2015,30,1990,3,4323,33,0,180,4,3,1,1580,169 +2015,30,1991,5,4454,34,0,186,4,4,1,1546,174 +2015,30,1992,6,5791,45,1,241,5,5,1,1912,226 +2015,30,1993,9,8461,65,1,352,8,7,2,2666,330 +2015,30,1994,10,9941,76,1,408,9,8,2,3026,383 +2015,30,1995,13,12328,94,1,506,11,10,3,3674,474 +2015,30,1996,16,15528,119,1,637,14,12,4,3294,598 +2015,30,1997,18,17790,136,1,730,16,14,4,3621,685 +2015,30,1998,24,22893,175,2,939,21,18,6,3891,881 +2015,30,1999,34,32368,247,2,1328,29,26,8,5198,1245 +2015,30,2000,47,44741,342,3,1835,40,35,12,7021,1721 +2015,30,2001,61,55800,440,4,2352,51,46,15,7955,2264 +2015,30,2002,77,70517,556,6,2972,65,58,19,9792,2861 +2015,30,2003,101,92410,729,7,3894,85,75,25,12479,3749 +2015,30,2004,99,65960,503,7,3125,83,74,25,10663,3669 +2015,30,2005,129,85991,656,9,4074,109,96,32,13445,4783 +2015,30,2006,377,101467,765,11,4803,128,114,38,14677,5644 +2015,30,2007,415,111865,843,12,5295,141,125,42,15623,6222 +2015,30,2008,364,63022,440,11,4344,124,110,37,11415,5458 +2015,30,2009,322,55634,388,9,3835,110,97,32,9612,4819 +2015,30,2010,161,27822,194,5,1920,55,49,16,4566,2412 +2015,30,2011,234,40478,282,7,2797,80,71,24,6264,3514 +2015,30,2012,393,67772,472,12,4688,134,118,40,9801,5890 +2015,30,2013,455,78377,545,13,5428,155,137,46,10448,6820 +2015,30,2014,692,119106,829,20,8248,235,208,70,14298,10364 +2015,30,2015,1316,226654,1577,39,15696,448,396,133,22856,19722 +2015,31,1985,172,357891,4646,34,11460,228,202,58,127997,9970 +2015,31,1986,28,42147,401,6,1590,38,33,10,17754,1641 +2015,31,1987,22,32574,310,4,1229,29,26,7,12943,1268 +2015,31,1988,19,27598,263,4,1041,25,22,6,10502,1075 +2015,31,1989,20,30099,287,4,1135,27,24,7,10788,1172 +2015,31,1990,20,29730,284,4,1121,26,23,7,10005,1158 +2015,31,1991,28,30630,292,4,1155,27,24,8,9831,1192 +2015,31,1992,36,39829,380,5,1502,35,31,10,12215,1550 +2015,31,1993,53,58204,555,8,2194,52,46,15,17115,2265 +2015,31,1994,62,67777,644,9,2541,60,53,18,19456,2624 +2015,31,1995,77,84061,799,11,3151,74,66,22,23672,3254 +2015,31,1996,96,105897,1006,11,3968,94,83,28,22421,4098 +2015,31,1997,110,121340,1153,13,4545,107,95,33,24786,4694 +2015,31,1998,142,156164,1483,16,5848,138,122,43,27427,6039 +2015,31,1999,201,220831,2097,23,8267,195,173,62,36983,8537 +2015,31,2000,278,305297,2898,32,11426,270,239,86,50125,11799 +2015,31,2001,365,393092,3714,42,14539,381,337,113,58298,15521 +2015,31,2002,462,496764,4694,53,18374,482,426,142,72055,19615 +2015,31,2003,605,650991,6151,70,24078,631,558,186,92236,25704 +2015,31,2004,592,464386,4235,68,19317,618,546,182,77810,25157 +2015,31,2005,772,605408,5521,89,25183,805,712,238,98614,32796 +2015,31,2006,2248,714369,6471,105,29696,950,841,281,109340,38699 +2015,31,2007,2479,787574,7134,116,32739,1048,927,309,117055,42665 +2015,31,2008,2175,441583,3664,102,26855,919,813,271,84138,37428 +2015,31,2009,1920,389815,3235,90,23707,811,718,240,71373,33040 +2015,31,2010,961,195028,1618,45,11869,406,359,120,34196,16542 +2015,31,2011,1400,283870,2354,66,17289,591,523,175,47404,24095 +2015,31,2012,2347,475488,3942,110,28979,991,877,293,75098,40388 +2015,31,2013,2717,550136,4560,127,33553,1147,1015,339,81337,46762 +2015,31,2014,4129,836018,6930,193,50989,1743,1542,515,113737,71063 +2015,31,2015,7857,1590907,13188,368,97030,3317,2935,981,189244,135229 +2015,32,1985,88,168795,2134,13,6216,112,99,19,48204,4924 +2015,32,1986,14,20101,186,2,862,18,16,3,6551,811 +2015,32,1987,11,15535,144,2,666,14,13,2,4793,626 +2015,32,1988,9,13162,122,1,565,12,11,2,3899,531 +2015,32,1989,10,14355,133,2,616,13,12,2,4021,579 +2015,32,1990,10,14179,131,2,608,13,11,2,3746,572 +2015,32,1991,14,14606,135,2,627,13,12,3,3699,589 +2015,32,1992,19,18991,176,2,815,17,15,3,4613,766 +2015,32,1993,27,27750,257,3,1190,25,22,5,6487,1119 +2015,32,1994,32,33213,303,3,1378,29,26,6,7420,1296 +2015,32,1995,39,41188,376,4,1709,36,32,8,9045,1607 +2015,32,1996,49,51881,474,4,2152,46,41,10,9042,2024 +2015,32,1997,57,59440,542,5,2465,53,47,11,10024,2318 +2015,32,1998,73,76489,698,6,3172,68,60,14,11189,2983 +2015,32,1999,103,108147,987,9,4483,96,85,21,15152,4217 +2015,32,2000,142,149492,1364,12,6196,132,117,29,20589,5828 +2015,32,2001,187,201950,2021,16,8036,193,170,38,26180,7666 +2015,32,2002,236,255212,2554,20,10155,244,215,48,32490,9688 +2015,32,2003,309,334445,3347,26,13308,319,282,63,41772,12696 +2015,32,2004,303,238439,2300,26,10673,312,276,62,34414,12425 +2015,32,2005,395,310846,2998,34,13914,407,360,80,43826,16199 +2015,32,2006,1150,366792,3526,40,16414,481,425,95,49356,19114 +2015,32,2007,1268,404378,3887,44,18096,530,469,104,53115,21073 +2015,32,2008,1113,225800,1984,39,14834,465,411,92,36974,18486 +2015,32,2009,982,199329,1751,34,13095,410,363,81,31559,16319 +2015,32,2010,492,99769,876,17,6556,205,182,40,15230,8170 +2015,32,2011,716,145281,1276,25,9550,299,265,59,21290,11901 +2015,32,2012,1201,243454,2138,42,16007,501,443,99,34066,19949 +2015,32,2013,1390,281796,2474,48,18533,580,513,114,37356,23097 +2015,32,2014,2112,428233,3759,73,28164,882,780,174,53097,35099 +2015,32,2015,4020,814910,7154,139,53596,1678,1485,331,90921,66792 +2015,33,1985,615,1275970,14933,100,40723,781,691,246,371627,33956 +2015,33,1986,101,149779,1285,16,5650,129,114,41,50954,5589 +2015,33,1987,78,115759,993,13,4366,99,88,31,37189,4320 +2015,33,1988,66,98076,842,11,3699,84,74,27,30201,3660 +2015,33,1989,72,106965,918,12,4035,92,81,29,31063,3991 +2015,33,1990,71,105651,909,12,3985,91,80,29,28853,3942 +2015,33,1991,100,108857,936,12,4105,93,83,33,28398,4061 +2015,33,1992,130,141558,1217,16,5336,121,107,44,35328,5279 +2015,33,1993,190,206880,1778,23,7796,177,157,65,49556,7713 +2015,33,1994,221,237293,2049,26,9041,206,182,76,56268,8936 +2015,33,1995,273,294325,2540,33,11210,255,226,96,68499,11081 +2015,33,1996,344,370809,3199,33,14118,321,284,122,61619,13955 +2015,33,1997,395,424915,3665,37,16173,368,325,142,68263,15986 +2015,33,1998,508,546908,4715,48,20808,473,419,185,76019,20568 +2015,33,1999,718,773451,6666,68,29415,669,592,266,102839,29075 +2015,33,2000,992,1069385,9213,94,40653,925,818,368,139666,40183 +2015,33,2001,1305,1383972,11704,124,52957,1282,1134,484,159358,52861 +2015,33,2002,1649,1748973,14790,156,66923,1621,1434,612,197600,66802 +2015,33,2003,2160,2291967,19382,205,87700,2124,1879,802,253823,87542 +2015,33,2004,2114,1635448,13358,200,70364,2079,1839,785,210803,85677 +2015,33,2005,2757,2132089,17415,261,91732,2710,2397,1023,268205,111695 +2015,33,2006,8031,2515822,20378,308,108162,3197,2829,1208,296452,131798 +2015,33,2007,8854,2773629,22466,340,119246,3525,3118,1331,318883,145304 +2015,33,2008,7768,1555757,11556,298,97806,3092,2736,1168,224258,127469 +2015,33,2009,6857,1373374,10202,263,86340,2730,2415,1031,191360,112525 +2015,33,2010,3433,686966,5100,132,43228,1366,1209,516,92282,56338 +2015,33,2011,5000,999692,7419,192,62964,1990,1760,752,128910,82060 +2015,33,2012,8382,1674147,12419,322,105542,3335,2950,1260,206106,137551 +2015,33,2013,9705,1936560,14363,372,122198,3860,3414,1459,225803,159259 +2015,33,2014,14748,2942909,21826,566,185699,5866,5189,2217,320668,242019 +2015,33,2015,28065,5600226,41535,1077,353378,11162,9874,4220,548282,460552 +2015,34,1985,1020,2238828,31076,256,63132,1397,1236,441,914745,61688 +2015,34,1986,168,263864,2689,42,8754,230,203,73,127587,10154 +2015,34,1987,130,203931,2078,33,6766,178,157,56,92846,7848 +2015,34,1988,110,172779,1761,28,5732,151,133,48,75227,6649 +2015,34,1989,120,188438,1920,30,6252,164,145,52,77116,7251 +2015,34,1990,118,186123,1899,30,6175,162,143,51,71342,7162 +2015,34,1991,166,191767,1956,31,6361,167,148,58,69828,7377 +2015,34,1992,216,249371,2543,40,8269,217,192,76,86573,9591 +2015,34,1993,316,364435,3715,58,12081,317,281,112,121033,14012 +2015,34,1994,366,419294,4287,67,14005,368,325,132,137235,16235 +2015,34,1995,454,520058,5315,83,17365,456,403,166,166768,20130 +2015,34,1996,571,655186,6694,83,21870,574,508,211,145069,25352 +2015,34,1997,655,750772,7668,95,25053,658,582,245,159263,29042 +2015,34,1998,842,966294,9866,123,32234,846,748,319,166663,37365 +2015,34,1999,1191,1366524,13947,174,45567,1196,1058,459,221720,52821 +2015,34,2000,1645,1889327,19276,240,62975,1653,1462,634,300614,73002 +2015,34,2001,2165,2304523,27890,316,80922,2203,1949,834,359989,96033 +2015,34,2002,2735,2912302,35245,399,102264,2784,2463,1054,445895,121360 +2015,34,2003,3585,3816471,46187,523,134013,3648,3227,1382,572100,159038 +2015,34,2004,3508,2722421,31739,511,107507,3570,3158,1352,469721,155650 +2015,34,2005,4574,3549148,41377,667,140155,4655,4118,1763,596582,202917 +2015,34,2006,13326,4187927,48650,787,165283,5492,4859,2080,658544,239438 +2015,34,2007,14691,4617076,53635,867,182220,6055,5356,2294,706976,263973 +2015,34,2008,12888,2596646,27555,761,149521,5312,4699,2012,487460,231573 +2015,34,2009,11377,2292239,24324,672,131993,4689,4148,1776,414473,204426 +2015,34,2010,5696,1146852,12172,336,66084,2347,2077,889,199136,102349 +2015,34,2011,8297,1669320,17722,490,96257,3419,3024,1295,276948,149079 +2015,34,2012,13907,2796202,29692,821,161348,5730,5069,2171,440456,249889 +2015,34,2013,16102,3235250,34364,951,186811,6633,5868,2514,479360,289326 +2015,34,2014,24470,4916470,52221,1445,283889,10081,8917,3820,674586,439677 +2015,34,2015,46565,9355822,99374,2749,540228,19183,16970,7270,1135231,836686 +2015,35,1985,110,204259,2246,15,7145,131,116,33,98169,5671 +2015,35,1986,18,24262,195,2,991,22,19,5,14105,934 +2015,35,1987,14,18751,151,2,766,17,15,4,10223,721 +2015,35,1988,12,15887,128,2,649,14,13,4,8256,611 +2015,35,1989,13,17326,139,2,708,15,14,4,8424,667 +2015,35,1990,13,17114,137,2,699,15,13,4,7751,658 +2015,35,1991,18,17632,142,2,720,16,14,5,7572,678 +2015,35,1992,23,22927,184,2,936,20,18,6,9350,882 +2015,35,1993,34,33504,269,3,1367,30,26,9,13022,1288 +2015,35,1994,39,39016,313,4,1584,35,31,10,14756,1493 +2015,35,1995,49,48389,387,5,1964,43,38,13,17902,1851 +2015,35,1996,62,60959,488,5,2473,54,48,17,17190,2331 +2015,35,1997,71,69849,559,5,2833,62,55,19,18807,2670 +2015,35,1998,91,89895,719,7,3645,79,70,25,19619,3435 +2015,35,1999,128,127120,1017,10,5153,112,99,36,25969,4856 +2015,35,2000,177,175743,1405,14,7121,155,137,50,35001,6712 +2015,35,2001,233,226752,1802,18,9063,219,194,66,40764,8829 +2015,35,2002,295,286554,2277,23,11454,277,245,84,49988,11158 +2015,35,2003,387,375518,2984,30,15009,363,321,110,63441,14622 +2015,35,2004,378,267736,2050,29,12038,355,314,108,55132,14310 +2015,35,2005,493,349041,2673,38,15694,463,410,140,69207,18656 +2015,35,2006,1437,411861,3143,45,18512,547,484,165,76227,22013 +2015,35,2007,1584,454066,3466,50,20409,603,533,182,80685,24269 +2015,35,2008,1390,254699,1793,44,16742,529,468,160,60296,21290 +2015,35,2009,1227,224840,1583,38,14779,467,413,141,50439,18795 +2015,35,2010,614,112534,792,19,7399,234,207,71,23783,9410 +2015,35,2011,895,163862,1153,28,10778,340,301,103,32339,13706 +2015,35,2012,1500,274579,1932,47,18066,570,505,173,50033,22974 +2015,35,2013,1736,317811,2236,54,20917,660,584,200,52551,26600 +2015,35,2014,2639,482966,3399,83,31787,1003,888,304,70375,40423 +2015,35,2015,5021,919061,6467,157,60488,1909,1689,578,107782,76923 +2015,36,1985,281,586610,7283,56,18027,363,321,115,265219,15672 +2015,36,1986,46,68019,621,9,2500,60,53,19,37586,2580 +2015,36,1987,36,52570,480,7,1932,46,41,15,27280,1994 +2015,36,1988,30,44539,407,6,1637,39,35,12,22058,1689 +2015,36,1989,33,48576,444,7,1785,43,38,14,22544,1842 +2015,36,1990,33,47979,440,7,1763,42,37,13,20790,1820 +2015,36,1991,46,49430,453,7,1816,43,38,16,20317,1874 +2015,36,1992,60,64274,589,9,2361,56,50,20,25126,2437 +2015,36,1993,87,93924,860,13,3450,82,73,30,35041,3560 +2015,36,1994,101,107724,991,15,4001,95,84,36,39686,4125 +2015,36,1995,125,133601,1229,18,4960,118,105,45,48174,5114 +2015,36,1996,158,168300,1548,18,6247,149,132,57,40894,6441 +2015,36,1997,180,192836,1773,21,7156,171,151,66,44913,7378 +2015,36,1998,232,248171,2281,27,9207,220,194,86,47765,9493 +2015,36,1999,328,350924,3225,38,13016,311,275,124,63665,13420 +2015,36,2000,454,485131,4457,53,17989,429,380,171,86064,18547 +2015,36,2001,597,635370,5917,70,23629,601,532,225,96661,24398 +2015,36,2002,754,802938,7478,88,29861,759,672,285,119199,30833 +2015,36,2003,988,1052222,9800,115,39132,995,880,373,152205,40405 +2015,36,2004,967,751237,6766,113,31408,974,861,365,128770,39545 +2015,36,2005,1261,979368,8820,147,40946,1270,1123,476,162711,51553 +2015,36,2006,3673,1155632,10290,174,48259,1498,1325,562,176658,60832 +2015,36,2007,4050,1274056,11345,192,53205,1652,1461,620,188561,67065 +2015,36,2008,3553,719696,5944,168,43684,1449,1282,544,135998,58834 +2015,36,2009,3136,635325,5247,148,38563,1279,1131,480,114899,51937 +2015,36,2010,1570,317663,2622,74,19307,640,566,240,54783,26003 +2015,36,2011,2287,462086,3814,108,28122,932,825,350,75509,37875 +2015,36,2012,3834,773526,6382,181,47139,1562,1382,587,118801,63487 +2015,36,2013,4439,894409,7379,210,54579,1808,1599,679,127553,73507 +2015,36,2014,6746,1359195,11213,319,82941,2747,2430,1032,176304,111705 +2015,36,2015,12836,2586490,21338,607,157833,5228,4624,1964,287179,212569 +2015,37,1985,44,89311,1014,7,2618,55,49,17,32091,2423 +2015,37,1986,7,10635,88,1,363,9,8,3,4510,399 +2015,37,1987,6,8219,68,1,281,7,6,2,3281,308 +2015,37,1988,5,6964,58,1,238,6,5,2,2658,261 +2015,37,1989,5,7595,63,1,259,7,6,2,2724,285 +2015,37,1990,5,7502,62,1,256,6,6,2,2519,281 +2015,37,1991,7,7729,64,1,264,7,6,2,2472,290 +2015,37,1992,9,10051,83,1,343,9,8,3,3065,377 +2015,37,1993,14,14689,122,2,501,13,11,5,4286,550 +2015,37,1994,16,16848,140,2,581,15,13,5,4860,638 +2015,37,1995,20,20897,174,2,720,18,16,7,5908,791 +2015,37,1996,25,26327,219,2,907,23,20,9,5450,996 +2015,37,1997,28,30168,251,2,1039,26,23,10,5984,1141 +2015,37,1998,36,38830,323,3,1337,34,30,13,6280,1467 +2015,37,1999,51,54914,456,5,1890,48,42,19,8360,2074 +2015,37,2000,71,75924,631,6,2612,66,58,26,11325,2867 +2015,37,2001,93,98592,803,8,3401,91,81,34,13141,3771 +2015,37,2002,118,124594,1014,10,4298,115,102,43,16230,4766 +2015,37,2003,155,163276,1329,14,5633,151,134,57,20759,6246 +2015,37,2004,151,116399,913,13,4518,148,131,56,17576,6113 +2015,37,2005,197,151746,1190,17,5889,193,170,72,22255,7969 +2015,37,2006,575,179057,1401,21,6947,227,201,85,24698,9403 +2015,37,2007,634,197406,1545,23,7659,251,222,94,26415,10367 +2015,37,2008,556,110486,791,20,6282,220,194,83,19086,9094 +2015,37,2009,491,97534,698,18,5546,194,172,73,16172,8028 +2015,37,2010,246,48820,349,9,2776,97,86,37,7740,4020 +2015,37,2011,358,71093,509,13,4044,142,125,53,10716,5855 +2015,37,2012,600,119140,853,21,6779,237,210,89,16949,9814 +2015,37,2013,695,137909,987,25,7849,275,243,103,18320,11363 +2015,37,2014,1056,209575,1500,38,11927,417,369,157,25540,17267 +2015,37,2015,2010,398811,2855,72,22697,794,703,299,42261,32859 +2015,38,1985,29,60205,679,5,1981,37,33,8,20074,1618 +2015,38,1986,5,7011,58,1,275,6,5,1,2799,266 +2015,38,1987,4,5419,45,1,212,5,4,1,2037,206 +2015,38,1988,3,4591,38,1,180,4,4,1,1651,174 +2015,38,1989,3,5007,42,1,196,4,4,1,1693,190 +2015,38,1990,3,4945,41,1,194,4,4,1,1567,188 +2015,38,1991,5,5095,42,1,200,4,4,1,1538,194 +2015,38,1992,6,6626,55,1,260,6,5,1,1907,252 +2015,38,1993,9,9683,81,1,379,8,7,2,2668,368 +2015,38,1994,10,11439,95,1,439,10,9,2,3036,426 +2015,38,1995,13,14188,117,2,545,12,11,3,3691,528 +2015,38,1996,16,17874,148,2,686,15,14,4,3250,665 +2015,38,1997,19,20481,169,2,786,18,15,4,3590,762 +2015,38,1998,24,26360,218,2,1011,23,20,6,3953,980 +2015,38,1999,34,37276,308,3,1429,32,28,8,5324,1386 +2015,38,2000,47,51537,425,5,1975,44,39,11,7215,1915 +2015,38,2001,61,63855,519,6,2583,61,54,15,7986,2519 +2015,38,2002,78,80696,656,8,3265,77,68,19,9873,3183 +2015,38,2003,102,105749,860,10,4278,100,89,25,12641,4172 +2015,38,2004,100,75545,595,10,3433,98,87,24,10654,4083 +2015,38,2005,130,98486,776,13,4476,128,113,32,13505,5323 +2015,38,2006,378,116211,903,15,5276,151,134,37,14767,6281 +2015,38,2007,417,128119,996,17,5817,167,148,41,15820,6924 +2015,38,2008,366,72221,519,15,4773,146,129,36,11354,6074 +2015,38,2009,323,63755,458,13,4213,129,114,32,9640,5362 +2015,38,2010,162,31863,228,6,2109,65,57,16,4620,2685 +2015,38,2011,235,46329,332,9,3073,94,83,23,6408,3910 +2015,38,2012,394,77520,555,16,5150,158,139,39,10160,6555 +2015,38,2013,457,89594,641,18,5963,182,161,45,11016,7589 +2015,38,2014,694,136152,974,28,9062,277,245,68,15438,11533 +2015,38,2015,1321,259092,1853,52,17244,528,467,130,25787,21947 +2015,39,1985,455,907597,10833,73,28314,575,509,124,279357,25107 +2015,39,1986,75,107137,937,12,3928,95,84,20,38484,4133 +2015,39,1987,58,82802,724,9,3036,73,65,16,28079,3194 +2015,39,1988,49,70154,613,8,2572,62,55,13,22797,2706 +2015,39,1989,54,76512,669,9,2805,68,60,15,23439,2951 +2015,39,1990,53,75572,662,8,2770,67,59,14,21760,2915 +2015,39,1991,74,77866,682,9,2854,69,61,17,21416,3003 +2015,39,1992,97,101258,886,11,3710,89,79,22,26635,3903 +2015,39,1993,141,147984,1294,17,5420,131,116,33,37352,5703 +2015,39,1994,163,174346,1514,19,6276,151,134,38,42542,6608 +2015,39,1995,203,216251,1878,24,7782,188,166,48,51788,8193 +2015,39,1996,255,272449,2365,24,9801,236,209,62,47356,10318 +2015,39,1997,292,312205,2709,27,11227,271,239,72,52355,11820 +2015,39,1998,376,401843,3485,35,14445,348,308,93,57383,15208 +2015,39,1999,532,568303,4927,49,20419,492,435,134,77347,21498 +2015,39,2000,735,785751,6809,68,28221,680,602,186,105037,29712 +2015,39,2001,966,996011,8540,90,36252,960,849,244,120381,39085 +2015,39,2002,1221,1258693,10793,114,45814,1213,1073,309,149197,49393 +2015,39,2003,1601,1649471,14144,149,60037,1590,1407,405,191549,64728 +2015,39,2004,1566,1176421,9728,146,48161,1556,1377,396,159707,63349 +2015,39,2005,2042,1533669,12683,190,62786,2029,1795,516,203084,82587 +2015,39,2006,5950,1809697,14888,224,74046,2394,2118,609,225411,97451 +2015,39,2007,6559,1995145,16414,247,81633,2639,2335,672,242289,107437 +2015,39,2008,5754,1117024,8410,217,66951,2315,2048,589,171433,94250 +2015,39,2009,5080,986074,7424,191,59102,2044,1808,520,146163,83201 +2015,39,2010,2543,493414,3714,96,29590,1023,905,260,70437,41656 +2015,39,2011,3704,718289,5406,139,43101,1490,1318,379,98309,60675 +2015,39,2012,6209,1203327,9055,234,72246,2497,2209,636,157013,101704 +2015,39,2013,7189,1392443,10477,271,83648,2891,2557,736,171786,117755 +2015,39,2014,10925,2116036,15921,411,127116,4393,3886,1119,243462,178948 +2015,39,2015,20791,4026728,30298,783,241896,8360,7396,2130,414815,340530 +2015,40,1985,388,796937,10136,72,23429,513,454,130,281849,22548 +2015,40,1986,64,94937,882,12,3249,85,75,21,39186,3711 +2015,40,1987,49,73373,682,9,2511,65,58,17,28578,2868 +2015,40,1988,42,62165,578,8,2128,55,49,14,23193,2430 +2015,40,1989,46,67799,630,8,2321,60,53,15,23835,2651 +2015,40,1990,45,66966,623,8,2292,60,53,15,22109,2618 +2015,40,1991,63,68994,641,9,2361,61,54,17,21741,2697 +2015,40,1992,82,89715,834,11,3069,80,71,23,27027,3506 +2015,40,1993,120,131104,1218,16,4484,117,103,34,37883,5122 +2015,40,1994,139,152670,1416,19,5194,135,120,40,43073,5934 +2015,40,1995,173,189350,1755,24,6440,168,148,50,52421,7358 +2015,40,1996,218,238537,2211,23,8111,211,187,64,49519,9267 +2015,40,1997,249,273322,2532,27,9291,242,214,74,54537,10615 +2015,40,1998,321,351765,3258,35,11954,311,275,96,58123,13658 +2015,40,1999,454,497430,4606,49,16899,440,389,139,77791,19307 +2015,40,2000,627,687693,6365,68,23355,608,537,192,105579,26684 +2015,40,2001,825,887648,8165,89,29709,858,759,252,124254,35102 +2015,40,2002,1042,1121750,10319,112,37544,1084,959,319,153829,44360 +2015,40,2003,1366,1470014,13522,147,49201,1421,1257,417,197263,58132 +2015,40,2004,1337,1047958,9283,144,39459,1391,1230,408,165945,56893 +2015,40,2005,1743,1366196,12102,188,51441,1813,1604,533,210757,74170 +2015,40,2006,5077,1612083,14251,222,60683,2139,1892,628,235438,87519 +2015,40,2007,5598,1777279,15712,245,66901,2358,2086,693,252647,96488 +2015,40,2008,4911,993678,8013,215,54866,2069,1830,608,181159,84645 +2015,40,2009,4335,877186,7074,189,48434,1826,1616,537,154171,74722 +2015,40,2010,2170,439076,3541,95,24249,914,809,269,74154,37411 +2015,40,2011,3161,639400,5156,138,35321,1332,1178,391,103262,54491 +2015,40,2012,5299,1071526,8640,232,59205,2232,1975,656,164476,91340 +2015,40,2013,6135,1240346,10002,268,68549,2584,2286,759,179338,105755 +2015,40,2014,9323,1884900,15199,407,104171,3927,3474,1154,252973,160711 +2015,40,2015,17742,3586886,28923,775,198233,7473,6611,2196,427490,305826 +2015,41,1985,520,1070762,13408,101,36534,695,615,156,332431,30425 +2015,41,1986,86,125647,1155,17,5069,114,101,26,45595,5008 +2015,41,1987,66,97108,892,13,3917,88,78,20,33300,3871 +2015,41,1988,56,82274,756,11,3319,75,66,17,27058,3279 +2015,41,1989,61,89731,825,12,3620,82,72,18,27852,3577 +2015,41,1990,60,88628,816,12,3575,81,71,18,25892,3533 +2015,41,1991,85,91302,841,12,3683,83,73,21,25490,3639 +2015,41,1992,110,118711,1093,16,4788,108,96,27,31732,4730 +2015,41,1993,161,173458,1597,23,6995,158,140,40,44539,6911 +2015,41,1994,187,203799,1865,27,8100,183,162,47,50736,8007 +2015,41,1995,232,252731,2313,33,10043,227,201,60,61786,9929 +2015,41,1996,292,318343,2913,33,12649,285,253,76,57621,12504 +2015,41,1997,334,364721,3337,38,14489,327,289,88,63907,14324 +2015,41,1998,430,469330,4293,49,18642,421,372,115,71933,18429 +2015,41,1999,608,663580,6069,69,26354,595,526,165,97514,26052 +2015,41,2000,840,917258,8388,95,36422,822,727,229,132397,36006 +2015,41,2001,1105,1144856,10805,125,46677,1056,934,301,153709,47365 +2015,41,2002,1396,1446794,13655,158,58987,1334,1180,380,190473,59857 +2015,41,2003,1830,1895973,17894,207,77301,1748,1547,498,244501,78441 +2015,41,2004,1791,1352879,12330,203,62019,1711,1514,488,204220,76769 +2015,41,2005,2334,1763713,16074,264,80853,2231,1973,636,259645,100082 +2015,41,2006,6801,2081144,18804,312,95335,2632,2328,750,288050,118095 +2015,41,2007,7498,2294408,20731,344,105105,2902,2567,827,309528,130197 +2015,41,2008,6578,1287778,10634,302,86199,2546,2252,726,219502,114216 +2015,41,2009,5807,1136809,9387,266,76094,2247,1988,640,187084,100826 +2015,41,2010,2907,568637,4694,133,38098,1125,995,321,90113,50480 +2015,41,2011,4234,827498,6830,194,55492,1638,1449,467,125701,73529 +2015,41,2012,7098,1385786,11437,326,93017,2745,2429,783,200634,123250 +2015,41,2013,8218,1603006,13229,377,107696,3178,2811,906,219340,142701 +2015,41,2014,12489,2436018,20103,573,163661,4829,4272,1378,310584,216857 +2015,41,2015,23765,4635643,38256,1090,311441,9190,8130,2621,528367,412668 +2015,42,1985,241,519215,6518,47,15612,321,284,102,167567,14046 +2015,42,1986,40,61329,564,8,2166,53,47,17,23086,2312 +2015,42,1987,31,47399,436,6,1674,41,36,13,16850,1787 +2015,42,1988,26,40159,369,5,1418,35,31,11,13684,1514 +2015,42,1989,28,43798,403,6,1546,38,33,12,14075,1651 +2015,42,1990,28,43260,398,5,1527,37,33,12,13072,1631 +2015,42,1991,39,44573,410,6,1573,38,34,14,12861,1680 +2015,42,1992,51,57963,534,7,2045,50,44,18,16000,2184 +2015,42,1993,75,84710,779,11,2988,73,65,26,22444,3191 +2015,42,1994,86,97160,898,12,3465,85,75,31,25485,3697 +2015,42,1995,107,120512,1114,15,4297,105,93,39,31025,4584 +2015,42,1996,135,151828,1402,15,5412,132,117,50,28509,5773 +2015,42,1997,154,173981,1607,18,6199,151,134,58,31517,6613 +2015,42,1998,199,223931,2067,23,7976,194,172,75,34545,8508 +2015,42,1999,281,316689,2922,32,11275,275,243,108,46559,12027 +2015,42,2000,388,437859,4038,44,15582,380,336,150,63228,16622 +2015,42,2001,511,567630,5135,58,20295,527,467,197,73033,21867 +2015,42,2002,646,717334,6489,74,25647,667,590,249,90519,27634 +2015,42,2003,846,940041,8504,96,33610,873,773,326,116219,36213 +2015,42,2004,828,670457,5848,94,26961,855,756,319,97027,35442 +2015,42,2005,1079,874057,7623,123,35149,1114,986,416,123391,46204 +2015,42,2006,3145,1031370,8953,145,41452,1315,1163,491,137109,54520 +2015,42,2007,3467,1137057,9870,160,45700,1450,1282,541,147382,60107 +2015,42,2008,3042,637055,5052,140,37483,1272,1125,474,104501,52729 +2015,42,2009,2685,562371,4460,124,33089,1123,993,419,89110,46548 +2015,42,2010,1344,281398,2231,62,16567,562,497,210,42951,23305 +2015,42,2011,1958,409640,3248,90,24131,819,724,305,59960,33945 +2015,42,2012,3282,686252,5441,152,40448,1372,1214,512,95790,56900 +2015,42,2013,3800,794096,6295,175,46832,1588,1405,593,104835,65880 +2015,42,2014,5775,1206753,9567,267,71168,2413,2135,901,148633,100115 +2015,42,2015,10990,2296400,18206,507,135430,4593,4063,1714,253408,190514 +2015,44,1985,323,722086,10270,81,20355,455,403,143,212941,20059 +2015,44,1986,53,85315,890,13,2824,75,66,24,28583,3302 +2015,44,1987,41,65937,688,10,2182,58,51,18,20928,2552 +2015,44,1988,35,55865,583,9,1849,49,43,15,17038,2162 +2015,44,1989,38,60928,636,10,2016,54,47,17,17589,2358 +2015,44,1990,38,60179,629,9,1992,53,47,17,16400,2329 +2015,44,1991,53,62004,648,10,2051,54,48,19,16155,2399 +2015,44,1992,69,80629,842,13,2667,71,63,24,20154,3119 +2015,44,1993,100,117833,1230,18,3897,103,91,36,28346,4556 +2015,44,1994,116,135569,1419,21,4517,120,106,43,32225,5279 +2015,44,1995,144,168149,1760,26,5601,149,131,53,39272,6546 +2015,44,1996,181,211839,2216,26,7054,187,166,68,35745,8244 +2015,44,1997,208,242744,2539,30,8080,214,190,79,39621,9443 +2015,44,1998,267,312428,3266,39,10396,276,244,103,43855,12150 +2015,44,1999,378,441832,4617,55,14697,390,345,148,59337,17176 +2015,44,2000,522,610866,6381,76,20312,539,477,204,80804,23737 +2015,44,2001,686,745217,9237,100,26108,718,635,269,100046,31226 +2015,44,2002,867,941756,11674,126,32994,908,803,340,124586,39462 +2015,44,2003,1137,1234138,15298,166,43238,1190,1052,445,160768,51713 +2015,44,2004,1112,880250,10511,162,34684,1164,1030,436,128835,50612 +2015,44,2005,1450,1147558,13703,211,45217,1518,1343,568,164736,65981 +2015,44,2006,4226,1354096,16113,249,53327,1791,1584,670,184369,77856 +2015,44,2007,4659,1492856,17765,275,58792,1974,1747,739,199393,85835 +2015,44,2008,4087,836203,9042,241,48215,1732,1532,648,132735,75299 +2015,44,2009,3608,738175,7982,213,42563,1529,1353,572,113957,66472 +2015,44,2010,1806,369354,3994,107,21310,765,677,286,55349,33280 +2015,44,2011,2631,537664,5816,155,31039,1115,986,417,77953,48475 +2015,44,2012,4410,900694,9744,260,52028,1868,1653,699,125830,81255 +2015,44,2013,5106,1042205,11278,301,60239,2163,1914,810,139463,94078 +2015,44,2014,7759,1583794,17138,458,91543,3287,2908,1231,200994,142967 +2015,44,2015,14766,3013893,32613,871,174203,6255,5534,2342,352328,272060 +2015,45,1985,628,1365348,18174,138,36905,858,759,276,505604,37578 +2015,45,1986,103,162808,1584,23,5118,141,125,45,70327,6185 +2015,45,1987,80,125828,1224,17,3955,109,97,35,51300,4780 +2015,45,1988,68,106607,1037,15,3351,93,82,30,41643,4050 +2015,45,1989,74,116269,1131,16,3655,101,89,32,42806,4417 +2015,45,1990,73,114840,1118,16,3610,100,88,32,39718,4363 +2015,45,1991,102,118326,1151,16,3718,103,91,36,39053,4494 +2015,45,1992,133,153871,1497,21,4834,133,118,48,48556,5842 +2015,45,1993,194,224874,2187,31,7062,195,172,71,68074,8536 +2015,45,1994,225,257913,2519,36,8190,226,200,83,77282,9890 +2015,45,1995,279,319902,3124,45,10155,280,248,105,94056,12263 +2015,45,1996,352,403031,3934,45,12789,353,312,133,89338,15444 +2015,45,1997,403,461838,4507,51,14650,404,357,155,98388,17691 +2015,45,1998,518,594430,5799,66,18849,520,460,201,104852,22762 +2015,45,1999,733,840657,8197,93,26646,735,650,290,140322,32177 +2015,45,2000,1013,1162303,11329,129,36826,1016,899,400,190447,44470 +2015,45,2001,1333,1509547,14420,170,47949,1411,1248,527,223982,58500 +2015,45,2002,1684,1907663,18223,215,60594,1783,1577,666,277252,73929 +2015,45,2003,2207,2499926,23881,281,79407,2337,2067,872,355476,96881 +2015,45,2004,2160,1782096,16388,275,63682,2287,2023,854,299788,94817 +2015,45,2005,2816,2323273,21365,359,83020,2981,2637,1113,380691,123610 +2015,45,2006,8203,2741415,25176,423,97939,3518,3112,1313,425606,145858 +2015,45,2007,9044,3022336,27756,467,107975,3878,3431,1448,456627,160804 +2015,45,2008,7934,1690459,14132,409,88559,3402,3010,1270,328585,141067 +2015,45,2009,7004,1492283,12475,361,78177,3003,2657,1121,279595,124530 +2015,45,2010,3507,746988,6245,181,39141,1504,1330,561,134464,62348 +2015,45,2011,5108,1087827,9095,264,57011,2190,1937,818,187216,90814 +2015,45,2012,8561,1823073,15242,442,95563,3671,3247,1371,298142,152224 +2015,45,2013,9913,2110367,17645,512,110645,4250,3760,1587,325004,176248 +2015,45,2014,15064,3207036,26814,777,168143,6459,5713,2412,458285,267837 +2015,45,2015,28666,6102842,51026,1479,319968,12290,10872,4590,773959,509683 +2015,46,1985,95,200842,2471,18,6136,127,112,26,57061,5548 +2015,46,1986,16,23696,214,3,851,21,18,4,7771,913 +2015,46,1987,12,18313,165,2,658,16,14,3,5685,706 +2015,46,1988,10,15516,140,2,557,14,12,3,4624,598 +2015,46,1989,11,16922,153,2,608,15,13,3,4768,652 +2015,46,1990,11,16714,151,2,600,15,13,3,4441,644 +2015,46,1991,16,17221,156,2,618,15,13,4,4381,663 +2015,46,1992,20,22393,202,3,804,20,17,5,5463,863 +2015,46,1993,29,32725,296,4,1175,29,25,7,7679,1260 +2015,46,1994,34,38666,347,5,1360,33,29,8,8762,1460 +2015,46,1995,42,47957,430,6,1686,41,37,10,10679,1810 +2015,46,1996,53,60416,541,6,2124,52,46,13,9948,2280 +2015,46,1997,61,69229,620,7,2433,60,53,15,11037,2612 +2015,46,1998,79,89100,798,9,3130,77,68,19,12336,3360 +2015,46,1999,111,126001,1128,12,4425,108,96,28,16724,4750 +2015,46,2000,154,174202,1559,17,6116,150,133,39,22748,6565 +2015,46,2001,202,216598,1908,22,7997,207,183,51,25975,8637 +2015,46,2002,255,273722,2411,28,10107,262,232,64,32251,10914 +2015,46,2003,334,358703,3160,37,13244,343,304,84,41487,14303 +2015,46,2004,327,255931,2175,36,10625,336,297,83,34508,13998 +2015,46,2005,427,333651,2836,47,13851,438,387,108,43983,18249 +2015,46,2006,1243,393701,3325,56,16335,517,457,127,49007,21533 +2015,46,2007,1371,434045,3666,62,18008,569,504,140,52812,23740 +2015,46,2008,1203,243222,1875,54,14768,500,442,123,37286,20826 +2015,46,2009,1062,214709,1655,48,13037,441,390,109,31904,18385 +2015,46,2010,532,107405,828,24,6527,221,195,54,15434,9205 +2015,46,2011,774,156310,1204,35,9507,321,284,79,21639,13407 +2015,46,2012,1298,261785,2016,58,15936,539,477,133,34746,22473 +2015,46,2013,1503,302839,2332,68,18452,624,552,154,38267,26020 +2015,46,2014,2283,460211,3544,103,28040,948,838,234,54712,39541 +2015,46,2015,4345,875761,6743,196,53359,1804,1596,444,94632,75246 +2015,47,1985,167,344604,3966,26,10390,213,189,67,101961,9350 +2015,47,1986,28,40987,345,4,1441,35,31,11,14056,1539 +2015,47,1987,21,31677,266,3,1114,27,24,8,10258,1189 +2015,47,1988,18,26839,226,3,944,23,20,7,8330,1008 +2015,47,1989,20,29271,246,3,1029,25,22,8,8568,1099 +2015,47,1990,19,28911,243,3,1017,25,22,8,7956,1086 +2015,47,1991,27,29789,251,3,1047,26,23,9,7834,1118 +2015,47,1992,35,38737,326,4,1361,33,29,12,9747,1454 +2015,47,1993,52,56613,476,6,1989,48,43,18,13673,2124 +2015,47,1994,60,64931,548,7,2306,56,50,21,15526,2461 +2015,47,1995,74,80537,680,8,2860,70,62,26,18903,3051 +2015,47,1996,94,101465,856,8,3601,88,78,33,17869,3843 +2015,47,1997,107,116270,981,10,4126,101,89,38,19731,4402 +2015,47,1998,138,149651,1262,12,5308,129,114,50,21431,5663 +2015,47,1999,195,211639,1784,17,7504,183,162,72,28823,8006 +2015,47,2000,270,292615,2466,24,10370,253,223,100,39132,11064 +2015,47,2001,355,379824,3138,32,13504,351,310,131,45788,14555 +2015,47,2002,448,479997,3965,40,17066,443,392,166,56715,18394 +2015,47,2003,588,629018,5197,52,22364,581,514,217,72768,24105 +2015,47,2004,575,448464,3569,51,17936,569,503,213,60899,23591 +2015,47,2005,750,584651,4653,67,23383,741,656,277,77386,30755 +2015,47,2006,2184,689877,5475,79,27583,875,774,327,86386,36290 +2015,47,2007,2408,760571,6036,87,30409,964,853,361,92762,40009 +2015,47,2008,2112,425136,3077,76,24934,846,748,316,65984,35098 +2015,47,2009,1865,375297,2716,67,22011,747,661,279,56189,30984 +2015,47,2010,934,187841,1359,34,11020,374,331,140,27045,15513 +2015,47,2011,1360,273522,1979,49,16052,545,482,204,37691,22595 +2015,47,2012,2279,458342,3317,82,26907,913,807,341,60092,37875 +2015,47,2013,2639,530517,3839,95,31153,1057,935,395,65601,43852 +2015,47,2014,4011,806205,5834,144,47342,1606,1421,600,92687,66640 +2015,47,2015,7632,1534171,11102,275,90090,3056,2704,1143,157076,126812 +2015,48,1985,258,517490,6196,38,14682,329,291,103,160894,14439 +2015,48,1986,42,61926,541,6,2036,54,48,17,22213,2377 +2015,48,1987,33,47860,418,5,1574,42,37,13,16206,1837 +2015,48,1988,28,40549,354,4,1333,35,31,11,13157,1556 +2015,48,1989,30,44224,387,4,1454,39,34,12,13527,1697 +2015,48,1990,30,43681,382,4,1436,38,34,12,12554,1676 +2015,48,1991,42,44999,393,5,1480,39,35,14,12355,1727 +2015,48,1992,55,58508,511,6,1924,51,45,18,15366,2245 +2015,48,1993,80,85491,747,9,2810,75,66,27,21548,3280 +2015,48,1994,93,98030,861,10,3259,87,77,32,24464,3800 +2015,48,1995,115,121568,1067,12,4041,107,95,40,29779,4712 +2015,48,1996,145,153129,1344,12,5089,135,120,51,28425,5934 +2015,48,1997,166,175438,1540,14,5830,155,137,59,31252,6798 +2015,48,1998,213,225759,1981,18,7500,199,176,77,32722,8746 +2015,48,1999,301,319199,2800,26,10603,282,249,111,43636,12364 +2015,48,2000,416,441227,3870,36,14654,390,345,154,59264,17087 +2015,48,2001,548,582906,5594,47,19432,557,492,202,74116,22478 +2015,48,2002,692,736638,7069,60,24557,703,622,256,91913,28406 +2015,48,2003,907,965336,9263,78,32182,922,815,335,118079,37225 +2015,48,2004,888,688052,6354,77,25806,902,798,328,97481,36432 +2015,48,2005,1158,896995,8284,100,33642,1176,1040,427,124026,47496 +2015,48,2006,3373,1058436,9769,118,39693,1388,1228,504,139459,56044 +2015,48,2007,3718,1166897,10770,130,43760,1530,1353,556,149938,61787 +2015,48,2008,3262,651347,5478,114,35877,1342,1187,488,104567,54203 +2015,48,2009,2880,574989,4836,101,31671,1185,1048,431,89140,47849 +2015,48,2010,1442,287850,2421,50,15857,593,525,216,42959,23956 +2015,48,2011,2100,419238,3526,73,23097,864,764,314,59959,34894 +2015,48,2012,3520,702668,5910,123,38715,1448,1281,526,95763,58490 +2015,48,2013,4076,813485,6842,142,44825,1677,1483,609,104768,67721 +2015,48,2014,6194,1236220,10397,216,68118,2548,2254,926,148433,102913 +2015,48,2015,11786,2352474,19786,412,129626,4849,4290,1763,252759,195839 +2015,49,1985,557,1088295,12987,95,37355,702,621,159,377981,30768 +2015,49,1986,92,128090,1120,16,5182,116,102,26,52690,5064 +2015,49,1987,71,98996,866,12,4005,89,79,20,38380,3914 +2015,49,1988,60,83874,734,10,3393,76,67,17,31120,3316 +2015,49,1989,65,91475,800,11,3701,83,73,19,31937,3617 +2015,49,1990,65,90351,792,11,3655,82,72,18,29587,3572 +2015,49,1991,91,93077,816,11,3765,84,74,21,29057,3680 +2015,49,1992,118,121019,1060,15,4895,109,97,28,36076,4784 +2015,49,1993,173,176830,1549,22,7151,159,141,42,50506,6989 +2015,49,1994,200,207762,1810,25,8281,185,163,49,57446,8098 +2015,49,1995,248,257646,2244,31,10268,229,203,62,69871,10040 +2015,49,1996,312,324533,2826,31,12931,289,255,79,65075,12645 +2015,49,1997,358,371813,3237,35,14813,331,292,91,71843,14485 +2015,49,1998,460,478457,4165,46,19059,425,376,119,78760,18637 +2015,49,1999,650,676485,5888,65,26942,601,532,172,105957,26346 +2015,49,2000,899,935096,8138,89,37235,831,735,237,143568,36411 +2015,49,2001,1183,1167440,10480,117,47718,1067,944,312,166261,47899 +2015,49,2002,1495,1475333,13243,148,60302,1348,1193,394,205455,60531 +2015,49,2003,1959,1933374,17355,194,79024,1767,1563,517,262941,79324 +2015,49,2004,1917,1379448,11955,190,63397,1729,1530,506,222115,77634 +2015,49,2005,2499,1798349,15585,248,82649,2254,1994,659,281436,101210 +2015,49,2006,7281,2122017,18247,293,97462,2660,2353,778,311236,119426 +2015,49,2007,8027,2339467,20117,322,107449,2932,2594,858,333134,131664 +2015,49,2008,7042,1313848,10350,283,88128,2573,2276,752,239884,115503 +2015,49,2009,6216,1159820,9136,250,77796,2271,2009,664,203450,101963 +2015,49,2010,3112,580186,4569,125,38950,1137,1006,333,97450,51049 +2015,49,2011,4533,844359,6647,182,56734,1655,1464,484,135047,74357 +2015,49,2012,7599,1414113,11130,305,95098,2774,2454,812,213869,124639 +2015,49,2013,8798,1635880,12874,353,110106,3212,2841,940,231531,144309 +2015,49,2014,13369,2485979,19564,537,167324,4880,4317,1429,323578,219300 +2015,49,2015,25442,4730706,37229,1022,318410,9287,8216,2719,537849,417319 +2015,50,1985,274,565115,6808,46,18144,352,311,111,167137,15327 +2015,50,1986,45,66328,586,8,2517,58,51,18,22855,2523 +2015,50,1987,35,51262,453,6,1945,45,40,14,16666,1950 +2015,50,1988,30,43432,384,5,1648,38,34,12,13524,1652 +2015,50,1989,32,47368,419,5,1798,41,37,13,13896,1802 +2015,50,1990,32,46786,414,5,1776,41,36,13,12892,1780 +2015,50,1991,45,48201,427,6,1829,42,37,15,12647,1833 +2015,50,1992,58,62676,555,7,2378,55,48,20,15712,2383 +2015,50,1993,85,91588,811,10,3474,80,71,29,22011,3481 +2015,50,1994,98,105039,934,12,4028,93,82,34,24971,4034 +2015,50,1995,122,130271,1158,15,4995,115,102,43,30374,5002 +2015,50,1996,154,164106,1459,15,6290,145,128,55,26578,6299 +2015,50,1997,176,188031,1671,17,7206,166,147,64,29374,7216 +2015,50,1998,227,241985,2150,22,9271,213,189,83,32273,9284 +2015,50,1999,320,342177,3040,31,13106,301,266,120,43479,13124 +2015,50,2000,443,473039,4201,43,18113,416,368,165,59022,18138 +2015,50,2001,583,620628,5583,57,23797,583,516,217,67964,23860 +2015,50,2002,736,784307,7055,72,30074,737,652,275,84277,30153 +2015,50,2003,965,1027808,9246,94,39411,965,854,360,108260,39515 +2015,50,2004,944,733418,6371,92,31620,945,836,352,88240,38673 +2015,50,2005,1231,956138,8306,120,41223,1232,1090,459,112221,50417 +2015,50,2006,3586,1128223,9723,142,48605,1453,1286,542,123454,59491 +2015,50,2007,3954,1243836,10719,157,53586,1602,1417,597,132750,65587 +2015,50,2008,3468,697928,5521,137,43954,1406,1243,524,90431,57537 +2015,50,2009,3062,616108,4873,121,38801,1241,1098,463,77040,50792 +2015,50,2010,1533,308173,2436,61,19426,621,549,232,37080,25430 +2015,50,2011,2233,448453,3544,88,28296,904,800,337,51683,37040 +2015,50,2012,3743,750996,5933,148,47430,1516,1341,566,82415,62088 +2015,50,2013,4333,868693,6862,172,54915,1754,1552,655,89999,71886 +2015,50,2014,6585,1320117,10427,261,83453,2666,2358,995,127278,109242 +2015,50,2015,12532,2512126,19843,497,158807,5073,4488,1894,216053,207883 +2015,51,1985,89,184132,2119,14,5533,114,101,36,54375,5005 +2015,51,1986,15,21929,184,2,767,19,17,6,7496,824 +2015,51,1987,11,16948,142,2,593,15,13,5,5471,637 +2015,51,1988,10,14359,121,1,503,12,11,4,4443,539 +2015,51,1989,11,15660,132,2,548,13,12,4,4570,588 +2015,51,1990,10,15468,130,2,541,13,12,4,4244,581 +2015,51,1991,15,15937,134,2,558,14,12,5,4180,599 +2015,51,1992,19,20725,174,2,725,18,16,6,5201,778 +2015,51,1993,28,30289,255,3,1059,26,23,9,7297,1137 +2015,51,1994,32,34739,293,4,1228,30,27,11,8286,1317 +2015,51,1995,40,43088,364,4,1523,37,33,14,10089,1633 +2015,51,1996,50,54285,458,4,1918,47,42,18,9450,2057 +2015,51,1997,57,62206,525,5,2197,54,48,21,10428,2356 +2015,51,1998,74,80065,675,7,2827,69,61,27,11241,3031 +2015,51,1999,104,113229,954,9,3996,98,87,39,15098,4285 +2015,51,2000,144,156552,1319,13,5522,135,120,53,20508,5923 +2015,51,2001,190,203269,1678,17,7191,188,166,70,23995,7791 +2015,51,2002,240,256878,2121,21,9088,237,210,89,29741,9846 +2015,51,2003,314,336629,2779,28,11909,311,275,116,38187,12903 +2015,51,2004,308,239985,1908,27,9551,304,269,114,31891,12628 +2015,51,2005,401,312862,2487,36,12451,397,351,148,40558,16463 +2015,51,2006,1169,369171,2929,42,14689,468,414,175,45318,19426 +2015,51,2007,1289,407002,3229,46,16194,516,457,193,48711,21416 +2015,51,2008,1131,227441,1645,41,13278,453,401,169,34560,18788 +2015,51,2009,998,200778,1452,36,11721,400,354,149,29468,16585 +2015,51,2010,500,100498,727,18,5869,200,177,75,14205,8304 +2015,51,2011,728,146346,1058,26,8548,291,258,109,19831,12095 +2015,51,2012,1220,245246,1774,44,14328,489,432,183,31682,20274 +2015,51,2013,1413,283880,2053,51,16589,566,500,211,34675,23473 +2015,51,2014,2147,431401,3120,77,25210,859,760,321,49155,35671 +2015,51,2015,4085,820937,5937,147,47974,1636,1447,612,83789,67880 +2015,53,1985,368,721148,8727,67,24266,466,412,106,289816,20438 +2015,53,1986,61,84941,753,11,3366,77,68,17,40860,3364 +2015,53,1987,47,65648,582,9,2601,59,52,13,29711,2600 +2015,53,1988,40,55620,493,7,2204,50,44,11,24058,2203 +2015,53,1989,43,60661,538,8,2403,55,48,12,24641,2402 +2015,53,1990,43,59916,532,8,2374,54,48,12,22774,2373 +2015,53,1991,60,61723,548,8,2445,56,49,14,22318,2444 +2015,53,1992,78,80252,712,10,3179,72,64,19,27657,3178 +2015,53,1993,114,117263,1041,15,4644,106,94,28,38649,4642 +2015,53,1994,132,137777,1216,18,5378,123,108,33,43913,5379 +2015,53,1995,164,170858,1507,22,6669,152,134,41,53362,6669 +2015,53,1996,206,215214,1898,22,8399,191,169,52,48485,8400 +2015,53,1997,236,246568,2175,25,9621,219,194,61,53335,9622 +2015,53,1998,304,317289,2798,32,12378,282,250,79,57081,12380 +2015,53,1999,430,448611,3955,45,17498,399,353,114,76290,17501 +2015,53,2000,594,620109,5467,63,24184,551,488,158,103260,24187 +2015,53,2001,782,774742,7041,83,30991,708,626,207,118690,31817 +2015,53,2002,988,979068,8898,104,39165,895,792,262,146477,40208 +2015,53,2003,1295,1283034,11661,137,51324,1173,1037,344,187195,52692 +2015,53,2004,1267,915254,8025,134,41173,1148,1015,336,159030,51569 +2015,53,2005,1652,1193193,10461,174,53677,1496,1323,438,201182,67229 +2015,53,2006,4813,1407944,12266,206,63299,1765,1562,517,221714,79329 +2015,53,2007,5306,1552220,13523,227,69786,1946,1722,570,236895,87458 +2015,53,2008,4655,872726,6974,199,57249,1707,1510,500,171953,76724 +2015,53,2009,4109,770414,6156,176,50538,1507,1333,442,145526,67729 +2015,53,2010,2057,385447,3080,88,25303,755,667,221,69544,33910 +2015,53,2011,2997,561034,4482,128,36855,1099,972,322,96107,49392 +2015,53,2012,5023,939747,7508,215,61777,1842,1629,540,151689,82792 +2015,53,2013,5816,1087281,8687,249,71527,2132,1886,625,163514,95858 +2015,53,2014,8838,1652297,13201,378,108696,3240,2866,950,227166,145672 +2015,53,2015,16818,3144251,25121,719,206844,6165,5454,1808,373532,277207 +2015,54,1985,95,190632,2239,15,6022,121,107,26,55528,5297 +2015,54,1986,16,22561,194,2,835,20,18,4,7619,872 +2015,54,1987,12,17436,150,2,646,15,14,3,5563,674 +2015,54,1988,10,14773,127,2,547,13,12,3,4519,571 +2015,54,1989,11,16112,138,2,597,14,13,3,4650,623 +2015,54,1990,11,15914,137,2,589,14,12,3,4321,615 +2015,54,1991,15,16397,141,2,607,14,13,3,4256,633 +2015,54,1992,20,21323,183,2,789,19,17,5,5297,824 +2015,54,1993,29,31162,268,3,1153,27,24,7,7433,1203 +2015,54,1994,34,36714,313,4,1335,32,28,8,8470,1394 +2015,54,1995,42,45539,389,5,1655,39,35,10,10314,1729 +2015,54,1996,53,57373,489,5,2085,50,44,13,9610,2177 +2015,54,1997,61,65745,561,5,2388,57,50,15,10634,2494 +2015,54,1998,78,84621,721,7,3072,73,65,19,11717,3209 +2015,54,1999,111,119674,1020,10,4343,103,91,28,15817,4536 +2015,54,2000,153,165464,1409,14,6002,143,126,39,21484,6269 +2015,54,2001,201,209875,1768,18,7711,202,178,51,24806,8246 +2015,54,2002,254,265227,2235,23,9744,255,225,64,30749,10421 +2015,54,2003,333,347568,2929,30,12769,334,295,84,39483,13657 +2015,54,2004,326,247853,2013,29,10242,327,289,82,32895,13366 +2015,54,2005,425,323118,2625,38,13353,426,377,107,41836,17425 +2015,54,2006,1237,381274,3084,45,15749,503,445,126,46581,20561 +2015,54,2007,1364,420344,3400,50,17363,554,490,139,50074,22668 +2015,54,2008,1197,235088,1737,44,14238,486,430,122,35390,19885 +2015,54,2009,1056,207528,1534,38,12569,429,380,108,30176,17554 +2015,54,2010,529,103855,767,19,6293,215,190,54,14545,8789 +2015,54,2011,770,151204,1117,28,9166,313,277,79,20303,12802 +2015,54,2012,1291,253337,1872,47,15364,524,464,132,32434,21458 +2015,54,2013,1495,293184,2166,54,17788,607,537,153,35494,24845 +2015,54,2014,2272,445540,3291,83,27032,923,816,232,50316,37755 +2015,54,2015,4324,847843,6263,157,51441,1756,1553,442,85767,71847 +2015,55,1985,234,477816,5386,37,15276,299,264,61,135181,13088 +2015,55,1986,39,56283,465,6,2119,49,43,10,18566,2154 +2015,55,1987,30,43499,359,5,1638,38,34,8,13552,1665 +2015,55,1988,25,36855,304,4,1388,32,28,7,11007,1411 +2015,55,1989,27,40195,332,4,1513,35,31,7,11323,1539 +2015,55,1990,27,39701,329,4,1495,35,31,7,10519,1520 +2015,55,1991,38,40904,339,4,1540,36,32,8,10356,1565 +2015,55,1992,50,53190,440,6,2002,46,41,11,12886,2035 +2015,55,1993,72,77731,643,8,2924,68,60,16,18080,2973 +2015,55,1994,84,91842,754,10,3386,79,70,19,20606,3445 +2015,55,1995,104,113911,934,12,4199,97,86,24,25089,4271 +2015,55,1996,131,143505,1177,12,5288,123,109,30,22706,5379 +2015,55,1997,150,164438,1348,14,6057,141,124,35,25137,6162 +2015,55,1998,193,211637,1734,18,7794,181,160,46,27783,7928 +2015,55,1999,273,299287,2452,25,11017,256,226,66,37536,11207 +2015,55,2000,377,413776,3389,35,15226,354,313,92,50998,15489 +2015,55,2001,497,514506,4148,45,19911,489,432,121,57551,20375 +2015,55,2002,628,650198,5242,57,25162,618,546,152,71372,25749 +2015,55,2003,822,852061,6869,75,32974,809,716,200,91694,33743 +2015,55,2004,805,607936,4730,74,26453,792,701,195,76370,33024 +2015,55,2005,1049,792551,6167,96,34486,1033,913,255,97191,43052 +2015,55,2006,3057,935193,7226,113,40668,1218,1078,301,107654,50801 +2015,55,2007,3370,1031026,7967,125,44836,1343,1188,331,115830,56007 +2015,55,2008,2957,578054,4089,109,36770,1178,1042,291,81851,49133 +2015,55,2009,2610,510288,3610,97,32460,1040,920,257,69882,43373 +2015,55,2010,1307,255266,1805,48,16251,521,461,128,33723,21715 +2015,55,2011,1903,371496,2626,70,23671,758,671,187,47146,31630 +2015,55,2012,3191,622176,4397,118,39678,1271,1124,314,75448,53019 +2015,55,2013,3694,719748,5086,137,45940,1471,1301,363,82751,61386 +2015,55,2014,5614,1093771,7729,208,69814,2236,1978,552,117679,93286 +2015,55,2015,10683,2081400,14708,395,132853,4254,3763,1050,201686,177518 +2015,56,1985,328,681939,8842,71,22167,443,392,100,258370,19313 +2015,56,1986,54,79783,761,12,3075,73,64,17,36025,3179 +2015,56,1987,42,61661,588,9,2377,56,50,13,26244,2457 +2015,56,1988,35,52242,498,8,2014,48,42,11,21282,2082 +2015,56,1989,39,56977,543,8,2196,52,46,12,21844,2270 +2015,56,1990,38,56277,538,8,2169,51,45,12,20241,2242 +2015,56,1991,53,57974,554,9,2234,53,47,13,19866,2310 +2015,56,1992,69,75378,720,11,2905,69,61,17,24665,3003 +2015,56,1993,101,110141,1053,16,4243,101,89,26,34532,4387 +2015,56,1994,118,129402,1229,19,4914,116,103,30,39276,5083 +2015,56,1995,146,160472,1524,23,6093,144,128,38,47770,6302 +2015,56,1996,184,202132,1920,23,7674,182,161,49,44308,7937 +2015,56,1997,210,231580,2199,27,8790,208,184,56,48969,9092 +2015,56,1998,271,298002,2830,34,11310,268,237,74,54215,11698 +2015,56,1999,383,421342,4000,48,15988,379,335,106,73083,16537 +2015,56,2000,529,582415,5528,67,22096,524,463,146,99009,22855 +2015,56,2001,696,726269,7118,88,28314,672,595,192,114196,30066 +2015,56,2002,879,917810,8995,111,35781,849,751,243,141095,37995 +2015,56,2003,1152,1202758,11787,146,46890,1113,985,319,180544,49792 +2015,56,2004,1127,858525,8129,143,37625,1089,964,312,152764,48731 +2015,56,2005,1470,1119234,10598,186,49051,1420,1256,407,193534,63529 +2015,56,2006,4282,1320674,12384,219,57829,1676,1482,480,213552,74963 +2015,56,2007,4721,1456009,13652,242,63755,1848,1634,529,228538,82645 +2015,56,2008,4142,819565,7044,212,52306,1621,1434,464,164963,72501 +2015,56,2009,3656,723485,6218,187,46174,1431,1266,410,139889,64002 +2015,56,2010,1830,361801,3108,94,23118,716,634,205,66987,32043 +2015,56,2011,2666,526373,4520,137,33673,1043,923,299,92804,46674 +2015,56,2012,4469,881280,7566,229,56443,1748,1546,501,146921,78235 +2015,56,2013,5174,1019163,8749,265,65351,2023,1789,580,158990,90582 +2015,56,2014,7863,1548779,13296,403,99312,3074,2719,881,222105,137654 +2015,56,2015,14963,2947261,25301,766,188986,5849,5174,1676,368901,261950 +2020,1,1990,325,456630,4392,70,15489,439,388,40,279467,19396 +2020,1,1991,27,28295,272,4,960,27,24,3,16224,1202 +2020,1,1992,36,37197,358,6,1262,36,32,4,20069,1580 +2020,1,1993,53,54157,521,8,1837,52,46,5,27931,2300 +2020,1,1994,64,71526,670,10,2239,63,56,7,32138,2799 +2020,1,1995,84,93771,879,13,2935,83,73,9,39441,3670 +2020,1,1996,109,121836,1141,14,3813,108,95,12,48812,4767 +2020,1,1997,128,143563,1344,16,4492,127,112,14,53421,5615 +2020,1,1998,168,188017,1760,21,5881,166,147,18,54191,7352 +2020,1,1999,235,262887,2460,29,8220,233,206,26,70880,10276 +2020,1,2000,321,359614,3364,40,11240,318,281,36,95171,14053 +2020,1,2001,419,455416,4211,52,14437,438,388,47,94127,18332 +2020,1,2002,522,567211,5244,65,17981,546,483,58,114918,22832 +2020,1,2003,676,734574,6792,85,23286,707,626,76,145348,29568 +2020,1,2004,654,518003,4610,82,18474,685,606,73,126027,28628 +2020,1,2005,835,660976,5882,104,23573,874,773,93,157139,36529 +2020,1,2006,2389,766165,6811,121,27319,1013,896,108,161624,42343 +2020,1,2007,2583,828400,7365,131,29538,1095,969,117,170084,45782 +2020,1,2008,2210,452290,3666,112,23631,937,829,100,125855,39169 +2020,1,2009,1884,385515,3125,95,20142,799,706,85,104101,33386 +2020,1,2010,907,185630,1505,46,9700,385,340,41,48420,16078 +2020,1,2011,1249,255604,2072,63,13359,530,469,57,62329,22143 +2020,1,2012,1939,396710,3216,98,20737,822,727,88,93234,34372 +2020,1,2013,2006,410353,3327,102,21454,851,752,91,92583,35560 +2020,1,2014,2586,528906,4288,131,27652,1096,970,117,114296,45833 +2020,1,2015,3042,622104,5043,154,32524,1289,1141,138,128207,53909 +2020,1,2016,3629,742192,6017,184,38802,1538,1361,165,143442,64316 +2020,1,2017,4456,911357,7388,226,47646,1889,1671,202,165770,78975 +2020,1,2018,7317,1496410,12131,371,78234,3101,2744,332,252068,129674 +2020,1,2019,9788,2001903,16229,496,104661,4149,3670,444,308155,173478 +2020,1,2020,18293,3741347,30330,927,195600,7754,6860,829,496071,324213 +2020,4,1990,1695,2257259,22443,310,94437,2200,1946,201,1320449,96865 +2020,4,1991,143,139871,1391,19,5852,136,121,14,76750,6002 +2020,4,1992,188,183878,1828,25,7693,179,159,19,95019,7891 +2020,4,1993,274,267716,2662,37,11200,261,231,27,132329,11488 +2020,4,1994,334,353589,3425,45,13651,318,281,34,152485,13980 +2020,4,1995,437,463553,4490,59,17897,416,368,45,187346,18328 +2020,4,1996,568,602192,5832,60,23246,541,478,59,234318,23806 +2020,4,1997,669,709476,6870,71,27385,637,564,71,256513,28044 +2020,4,1998,876,929010,8995,93,35854,834,738,94,259301,36716 +2020,4,1999,1225,1298709,12572,130,50114,1166,1031,133,338976,51320 +2020,4,2000,1674,1776230,17192,178,68531,1594,1410,182,455368,70179 +2020,4,2001,2184,2395488,25006,232,89088,2302,2036,237,486059,91549 +2020,4,2002,2721,2983529,31144,289,110957,2867,2536,296,594124,114022 +2020,4,2003,3523,3863860,40333,374,143696,3713,3285,383,752525,147666 +2020,4,2004,3411,2724629,27383,362,113997,3595,3180,371,644689,142969 +2020,4,2005,4353,3476652,34941,462,145461,4587,4058,473,804780,182430 +2020,4,2006,12458,4029941,40442,536,168581,5317,4704,549,843174,211462 +2020,4,2007,13470,4357286,43728,580,182274,5749,5086,593,888476,228639 +2020,4,2008,11524,2376258,21826,496,145763,4918,4351,507,647744,195611 +2020,4,2009,9823,2025431,18603,423,124243,4192,3709,433,536350,166731 +2020,4,2010,4731,975285,8958,204,59834,2019,1786,208,249783,80296 +2020,4,2011,6515,1342952,12334,280,82402,2780,2459,287,323897,110582 +2020,4,2012,10113,2084362,19143,435,127913,4316,3818,445,485148,171656 +2020,4,2013,10462,2156079,19802,450,132333,4464,3949,461,482501,177588 +2020,4,2014,13485,2778984,25522,580,170565,5754,5090,594,596674,228894 +2020,4,2015,15861,3268669,30020,683,200620,6768,5987,698,670606,269228 +2020,4,2016,18923,3899636,35815,814,239346,8075,7143,833,752693,321198 +2020,4,2017,23236,4788461,43978,1000,293900,9915,8771,1023,872263,394408 +2020,4,2018,38153,7862457,72209,1642,482571,16280,14402,1680,1331555,647600 +2020,4,2019,51041,10518413,96602,2196,645585,21780,19267,2247,1635534,866362 +2020,4,2020,95390,19657794,180539,4105,1206530,40704,36008,4200,2656279,1619138 +2020,5,1990,241,306823,2686,38,11480,297,263,27,173620,13009 +2020,5,1991,20,19012,166,2,711,18,16,2,10077,806 +2020,5,1992,27,24994,219,3,935,24,21,3,12456,1060 +2020,5,1993,39,36390,319,5,1362,35,31,4,17326,1543 +2020,5,1994,47,48055,410,5,1659,43,38,5,19916,1878 +2020,5,1995,62,63000,537,7,2176,56,50,6,24420,2461 +2020,5,1996,81,81850,698,7,2826,73,65,8,29971,3197 +2020,5,1997,95,96441,822,9,3329,86,76,10,32793,3766 +2020,5,1998,124,126295,1076,11,4358,112,100,13,33365,4931 +2020,5,1999,174,176574,1504,16,6092,157,139,18,43663,6893 +2020,5,2000,238,241525,2057,22,8331,215,190,25,58601,9425 +2020,5,2001,310,313354,2644,28,10708,301,266,33,56386,12296 +2020,5,2002,386,390275,3293,35,13336,375,332,41,68840,15314 +2020,5,2003,500,505431,4265,46,17272,486,430,52,87069,19832 +2020,5,2004,484,356481,2898,44,13704,470,416,51,75177,19202 +2020,5,2005,618,454873,3698,57,17487,600,531,65,93726,24501 +2020,5,2006,1768,527263,4274,66,20262,696,615,75,94906,28401 +2020,5,2007,1911,570092,4621,71,21908,752,665,81,99895,30708 +2020,5,2008,1635,311405,2313,61,17527,644,569,70,73390,26272 +2020,5,2009,1394,265429,1972,52,14939,549,485,59,60705,22393 +2020,5,2010,671,127790,949,25,7195,264,234,29,28235,10784 +2020,5,2011,924,175939,1307,34,9908,364,322,39,36139,14852 +2020,5,2012,1435,273029,2028,53,15380,565,499,61,54067,23054 +2020,5,2013,1485,282381,2097,55,15912,584,517,63,53701,23851 +2020,5,2014,1914,363963,2703,71,20509,753,666,81,66314,30742 +2020,5,2015,2251,428097,3180,84,24123,885,783,96,74410,36159 +2020,5,2016,2685,510734,3794,100,28779,1056,934,114,83237,43139 +2020,5,2017,3297,627144,4658,123,35339,1297,1147,140,96245,52971 +2020,5,2018,5414,1029744,7649,201,58025,2130,1884,230,146415,86976 +2020,5,2019,7243,1377593,10232,269,77626,2849,2521,308,179169,116357 +2020,5,2020,13536,2574578,19123,504,145074,5325,4711,576,288927,217459 +2020,6,1990,305,373602,3252,49,17282,393,348,11,118862,17387 +2020,6,1991,26,23150,202,3,1071,24,22,1,6933,1077 +2020,6,1992,34,30434,265,4,1408,32,28,1,8625,1416 +2020,6,1993,49,44310,386,6,2050,47,41,2,12055,2062 +2020,6,1994,60,63692,531,7,2519,57,50,2,14228,2509 +2020,6,1995,79,83500,696,9,3303,74,66,3,17607,3290 +2020,6,1996,102,108484,904,10,4290,97,85,3,21908,4273 +2020,6,1997,120,127823,1065,11,5054,114,101,4,24358,5034 +2020,6,1998,158,167393,1394,15,6617,149,132,5,27011,6590 +2020,6,1999,220,234034,1948,21,9248,208,184,8,36136,9212 +2020,6,2000,301,320123,2664,28,12647,285,252,10,48653,12597 +2020,6,2001,393,382856,3506,37,17202,368,326,14,47966,16432 +2020,6,2002,489,476839,4367,46,21425,459,406,17,58846,20466 +2020,6,2003,633,617537,5656,60,27747,594,526,22,74866,26505 +2020,6,2004,613,435702,3846,58,22016,575,509,21,61673,25662 +2020,6,2005,783,555959,4907,74,28092,734,649,27,77277,32745 +2020,6,2006,2240,644436,5664,86,32551,851,753,31,78862,37956 +2020,6,2007,2422,696783,6124,93,35195,920,814,34,83580,41039 +2020,6,2008,2072,379950,3032,79,28135,787,696,29,56999,35111 +2020,6,2009,1766,323855,2584,68,23981,671,594,25,47437,29927 +2020,6,2010,851,155878,1244,33,11549,323,286,12,22221,14413 +2020,6,2011,1171,214553,1712,45,15905,445,394,16,28618,19849 +2020,6,2012,1818,332865,2656,70,24689,691,611,25,43178,30811 +2020,6,2013,1881,344176,2747,72,25543,714,632,26,43300,31876 +2020,6,2014,2425,443610,3540,93,32922,921,814,34,54039,41085 +2020,6,2015,2852,521779,4164,109,38723,1083,958,40,61369,48325 +2020,6,2016,3402,622501,4968,130,46198,1292,1143,48,69906,57653 +2020,6,2017,4178,764385,6100,160,56728,1586,1403,58,82184,70794 +2020,6,2018,6860,1255087,10017,262,93145,2605,2304,96,127875,116240 +2020,6,2019,9177,1679060,13400,351,124610,3485,3083,128,160810,155507 +2020,6,2020,17151,3137981,25044,656,232882,6513,5761,240,272352,290626 +2020,8,1990,69,90252,761,10,3795,88,78,8,34575,3880 +2020,8,1991,6,5592,47,1,235,5,5,1,2017,240 +2020,8,1992,8,7352,62,1,309,7,6,1,2506,316 +2020,8,1993,11,10704,90,1,450,10,9,1,3498,460 +2020,8,1994,14,14136,116,1,549,13,11,1,4054,560 +2020,8,1995,18,18532,152,2,719,17,15,2,5002,734 +2020,8,1996,23,24074,198,2,934,22,19,2,6323,954 +2020,8,1997,27,28363,233,2,1100,25,23,3,6995,1123 +2020,8,1998,36,37140,305,3,1441,33,29,4,7574,1471 +2020,8,1999,50,51919,426,4,2014,47,41,5,10077,2056 +2020,8,2000,69,71009,583,6,2754,64,56,7,13550,2811 +2020,8,2001,89,88879,749,8,3555,81,72,9,13701,3667 +2020,8,2002,111,110697,933,10,4428,101,89,12,16766,4568 +2020,8,2003,144,143359,1209,12,5734,131,116,15,21264,5915 +2020,8,2004,140,101120,821,12,4550,127,112,15,18130,5727 +2020,8,2005,178,129031,1048,15,5805,162,143,19,22661,7308 +2020,8,2006,510,149565,1211,18,6727,188,166,22,23499,8471 +2020,8,2007,551,161714,1309,19,7274,203,179,24,24810,9159 +2020,8,2008,472,88162,650,17,5815,174,153,20,17923,7836 +2020,8,2009,402,75146,554,14,4957,148,131,17,14870,6679 +2020,8,2010,194,36176,267,7,2387,71,63,8,6941,3217 +2020,8,2011,267,49803,367,9,3288,98,87,11,8984,4430 +2020,8,2012,414,77282,569,15,5103,152,135,18,13495,6876 +2020,8,2013,428,79923,589,15,5280,157,139,18,13465,7114 +2020,8,2014,552,103014,759,19,6805,203,180,24,16712,9169 +2020,8,2015,649,121166,892,23,8004,239,211,28,18860,10785 +2020,8,2016,774,144555,1065,27,9549,285,252,33,21324,12867 +2020,8,2017,951,177502,1307,33,11725,350,309,41,24852,15800 +2020,8,2018,1561,291452,2147,55,19253,574,508,67,38253,25943 +2020,8,2019,2089,389905,2872,73,25756,768,680,89,47429,34706 +2020,8,2020,3904,728691,5367,137,48135,1436,1270,167,78379,64862 +2020,9,1990,842,1157338,11247,178,43942,1132,1002,105,504371,49954 +2020,9,1991,71,71714,697,11,2723,70,62,7,29327,3095 +2020,9,1992,94,94277,916,15,3580,92,82,10,36368,4069 +2020,9,1993,136,137263,1334,21,5212,134,119,14,50712,5925 +2020,9,1994,166,181226,1716,26,6352,163,145,17,58672,7210 +2020,9,1995,217,237586,2249,34,8328,214,190,23,72248,9452 +2020,9,1996,282,308679,2922,35,10817,278,246,30,88293,12277 +2020,9,1997,332,363711,3442,41,12743,328,290,36,97422,14462 +2020,9,1998,435,476311,4506,54,16683,429,380,48,103980,18935 +2020,9,1999,608,665945,6299,75,23319,600,531,68,137754,26466 +2020,9,2000,832,910926,8613,102,31889,820,726,93,185190,36192 +2020,9,2001,1085,1088767,12402,133,40654,1058,936,121,181274,47212 +2020,9,2002,1352,1356035,15446,166,50633,1318,1166,151,222132,58802 +2020,9,2003,1750,1756152,20004,215,65573,1706,1510,196,282206,76152 +2020,9,2004,1695,1239250,13601,208,52036,1652,1462,190,234341,73730 +2020,9,2005,2163,1581295,17355,266,66398,2108,1865,242,293247,94081 +2020,9,2006,6189,1832948,20039,308,76926,2444,2162,281,294615,109053 +2020,9,2007,6692,1981835,21666,333,83175,2642,2337,303,311795,117911 +2020,9,2008,5725,1083925,10792,285,66526,2260,2000,259,215128,100878 +2020,9,2009,4880,923896,9199,243,56704,1927,1704,221,178778,85985 +2020,9,2010,2350,444637,4428,117,27308,928,821,107,83605,41409 +2020,9,2011,3237,611931,6094,161,37608,1278,1130,147,106911,57028 +2020,9,2012,5024,949259,9455,250,58379,1983,1754,228,161017,88524 +2020,9,2013,5198,981397,9777,259,60396,2051,1814,236,161146,91584 +2020,9,2014,6700,1264927,12602,334,77845,2644,2339,304,200669,118043 +2020,9,2015,7880,1487820,14823,392,91562,3110,2751,357,227327,138843 +2020,9,2016,9401,1775021,17684,468,109237,3710,3282,426,257659,165645 +2020,9,2017,11544,2179594,21715,575,134135,4555,4030,523,301944,203399 +2020,9,2018,18955,3578803,35655,944,220244,7480,6617,859,467541,333973 +2020,9,2019,25358,4787734,47699,1263,294643,10006,8852,1149,585042,446790 +2020,9,2020,47392,8947770,89144,2360,550657,18701,16543,2148,982045,835003 +2020,10,1990,1535,2136291,21109,338,77386,2098,1856,194,982673,92650 +2020,10,1991,130,132375,1308,21,4795,130,115,13,57134,5741 +2020,10,1992,171,174024,1720,28,6304,171,151,18,70839,7547 +2020,10,1993,248,253368,2504,40,9178,249,220,26,98763,10988 +2020,10,1994,302,334581,3221,49,11187,303,268,32,114206,13372 +2020,10,1995,396,438633,4222,64,14666,397,351,42,140595,17530 +2020,10,1996,514,569886,5485,66,19050,516,456,56,171504,22770 +2020,10,1997,606,671484,6461,78,22441,607,537,67,188779,26823 +2020,10,1998,793,879367,8459,102,29381,795,704,88,197499,35119 +2020,10,1999,1109,1229468,11823,142,41067,1112,983,125,260430,49087 +2020,10,2000,1516,1681750,16168,194,56158,1520,1345,172,350159,67126 +2020,10,2001,1978,2012123,23298,253,71567,1961,1735,224,349938,87566 +2020,10,2002,2464,2506057,29018,316,89135,2443,2161,279,428751,109061 +2020,10,2003,3191,3245502,37580,409,115436,3163,2798,361,544609,141241 +2020,10,2004,3089,2289445,25525,396,91592,3063,2709,349,453743,136749 +2020,10,2005,3942,2921355,32571,505,116873,3908,3457,446,567735,174493 +2020,10,2006,11282,3386271,37671,585,135424,4530,4007,517,576555,202262 +2020,10,2007,12199,3661333,40731,633,146424,4898,4333,559,609922,218691 +2020,10,2008,10436,2000267,20238,541,117110,4190,3707,478,423781,187100 +2020,10,2009,8896,1704950,17250,461,99820,3572,3160,408,352061,159477 +2020,10,2010,4284,820738,8305,222,48072,1720,1522,196,164594,76802 +2020,10,2011,5900,1129827,11434,306,66204,2369,2095,270,211316,105771 +2020,10,2012,9158,1753086,17745,475,102769,3676,3252,420,318096,164188 +2020,10,2013,9475,1812901,18353,491,106320,3803,3364,434,318162,169861 +2020,10,2014,12212,2336658,23655,633,137037,4902,4336,560,395907,218936 +2020,10,2015,14364,2748400,27824,745,161184,5766,5101,658,448133,257514 +2020,10,2016,17137,3278936,33195,889,192298,6879,6085,785,507168,307223 +2020,10,2017,21043,4026293,40760,1092,236128,8447,7472,964,593681,377247 +2020,10,2018,34551,6611003,66927,1792,387712,13869,12269,1583,917805,619423 +2020,10,2019,46223,8844215,89535,2398,518681,18554,16413,2118,1146463,828667 +2020,10,2020,86386,16528909,167332,4481,969363,34675,30675,3958,1918409,1548693 +2020,11,1990,654,1001978,11642,260,33278,996,881,95,1331887,43584 +2020,11,1991,55,62087,721,16,2062,62,55,6,76738,2701 +2020,11,1992,73,81622,948,21,2711,81,72,8,94337,3550 +2020,11,1993,106,118837,1381,31,3947,118,104,12,130642,5169 +2020,11,1994,129,156782,1775,37,4811,144,127,15,148800,6290 +2020,11,1995,169,205539,2327,49,6307,188,167,20,181085,8247 +2020,11,1996,219,267044,3022,51,8193,245,216,26,217613,10711 +2020,11,1997,258,314655,3560,60,9651,288,255,31,235980,12618 +2020,11,1998,338,412069,4661,78,12636,377,334,42,232102,16521 +2020,11,1999,473,576130,6515,109,17662,527,467,59,300282,23091 +2020,11,2000,646,788072,8909,149,24152,721,638,81,401604,31577 +2020,11,2001,843,939953,12798,195,30750,929,822,105,354352,41192 +2020,11,2002,1050,1170691,15940,243,38298,1157,1023,131,430720,51304 +2020,11,2003,1360,1516119,20644,314,49598,1498,1325,170,541860,66442 +2020,11,2004,1317,1070923,14056,304,39384,1450,1283,165,475401,64329 +2020,11,2005,1680,1366508,17936,388,50255,1851,1637,210,589773,82085 +2020,11,2006,4808,1583978,20659,450,58179,2145,1898,244,564302,95148 +2020,11,2007,5198,1712642,22337,486,62905,2319,2052,263,590082,102877 +2020,11,2008,4448,956100,11514,416,50475,1984,1755,225,442327,88015 +2020,11,2009,3791,814944,9814,355,43023,1691,1496,192,363388,75021 +2020,11,2010,1826,391926,4723,171,20719,814,720,92,167622,36129 +2020,11,2011,2514,539008,6499,235,28534,1121,992,127,208444,49756 +2020,11,2012,3903,835546,10080,365,44294,1740,1539,198,308809,77237 +2020,11,2013,4038,863221,10421,378,45825,1800,1592,205,303241,79906 +2020,11,2014,5204,1112610,13432,487,59064,2320,2052,264,369785,102991 +2020,11,2015,6121,1308664,15799,573,69471,2729,2414,310,408884,121139 +2020,11,2016,7303,1561282,18849,683,82882,3255,2880,370,446838,144524 +2020,11,2017,8968,1917138,23145,839,101772,3997,3536,454,505520,177464 +2020,11,2018,14724,3147855,38003,1378,167106,6563,5806,746,745396,291389 +2020,11,2019,19698,4211222,50840,1843,223555,8781,7768,998,876501,389820 +2020,11,2020,36814,7870316,95015,3444,417801,16410,14517,1865,1305813,728534 +2020,12,1990,1833,2670722,27929,470,83435,2582,2284,242,1707333,114281 +2020,12,1991,155,165491,1731,29,5170,160,142,16,99183,7081 +2020,12,1992,204,217558,2275,38,6797,210,186,22,122794,9309 +2020,12,1993,296,316753,3312,56,9896,306,271,32,171009,13554 +2020,12,1994,361,418375,4262,68,12061,373,330,39,197010,16494 +2020,12,1995,473,548486,5588,89,15812,489,432,52,242047,21623 +2020,12,1996,614,712645,7258,92,20538,635,561,69,298325,28086 +2020,12,1997,724,839732,8550,108,24194,748,661,82,326270,33086 +2020,12,1998,947,1099753,11194,141,31677,979,866,109,326355,43318 +2020,12,1999,1324,1537684,15646,197,44276,1368,1210,155,425525,60547 +2020,12,2000,1811,2103462,21396,270,60547,1871,1655,212,571793,82798 +2020,12,2001,2362,2665025,26789,352,77797,2579,2282,276,575186,108010 +2020,12,2002,2942,3319230,33364,439,96894,3212,2842,344,702877,134523 +2020,12,2003,3810,4298621,43209,568,125484,4160,3680,445,889982,174216 +2020,12,2004,3689,3030897,29316,550,99543,4028,3563,431,769732,168675 +2020,12,2005,4707,3867451,37408,702,127018,5139,4546,550,960762,215231 +2020,12,2006,13471,4482944,43348,813,147216,5957,5270,638,996607,249484 +2020,12,2007,14565,4847080,46870,879,159174,6441,5698,690,1050136,269749 +2020,12,2008,12461,2644641,23256,752,127346,5511,4875,590,774894,230782 +2020,12,2009,10621,2254190,19822,641,108545,4697,4155,503,641848,196710 +2020,12,2010,5115,1085518,9546,309,52274,2262,2001,242,299043,94733 +2020,12,2011,7044,1494850,13146,425,71991,3115,2756,334,386611,130465 +2020,12,2012,10935,2320291,20405,660,111751,4836,4278,518,579411,202521 +2020,12,2013,11313,2400305,21110,683,115613,5003,4426,536,576623,209519 +2020,12,2014,14581,3093768,27208,880,149014,6448,5704,690,713550,270050 +2020,12,2015,17151,3638919,32003,1036,175272,7584,6709,812,802587,317636 +2020,12,2016,20461,4341358,38180,1235,209105,9048,8004,969,900660,378950 +2020,12,2017,25125,5330869,46883,1517,256766,11111,9829,1190,1044990,465323 +2020,12,2018,41254,8753052,76979,2491,421599,18243,16138,1953,1596876,764041 +2020,12,2019,55190,11709863,102983,3332,564016,24406,21590,2613,1965611,1022136 +2020,12,2020,103144,21884496,192465,6228,1054086,45612,40350,4884,3203867,1910263 +2020,13,1990,342,429651,3436,45,16586,411,363,37,226865,17919 +2020,13,1991,29,26623,213,3,1028,25,23,3,13165,1110 +2020,13,1992,38,35000,280,4,1351,33,30,4,16266,1460 +2020,13,1993,55,50958,408,5,1967,49,43,5,22618,2125 +2020,13,1994,67,67294,524,7,2398,59,52,6,25985,2586 +2020,13,1995,88,88222,687,9,3143,78,69,9,31842,3390 +2020,13,1996,115,114626,893,9,4083,101,89,11,39225,4404 +2020,13,1997,135,135068,1052,10,4810,119,105,13,42922,5188 +2020,13,1998,177,176892,1377,14,6297,156,138,18,43875,6792 +2020,13,1999,247,247331,1924,19,8802,218,193,25,57475,9494 +2020,13,2000,338,338335,2632,26,12036,298,263,35,77110,12982 +2020,13,2001,441,428207,3292,34,15463,410,363,45,73573,16935 +2020,13,2002,550,533321,4100,42,19259,511,452,56,89761,21093 +2020,13,2003,712,690686,5309,55,24942,662,585,73,113432,27316 +2020,13,2004,689,487134,3607,53,19789,641,567,70,98268,26447 +2020,13,2005,879,621587,4602,67,25251,817,723,90,122419,33747 +2020,13,2006,2517,720508,5321,78,29260,948,838,104,123739,39118 +2020,13,2007,2721,779035,5753,84,31637,1025,906,113,130104,42295 +2020,13,2008,2328,425448,2879,72,25306,877,775,96,96005,36185 +2020,13,2009,1984,362636,2454,62,21570,747,661,82,79326,30843 +2020,13,2010,956,174592,1181,30,10388,360,318,40,36848,14854 +2020,13,2011,1316,240377,1627,41,14306,495,438,54,47084,20456 +2020,13,2012,2043,373031,2524,63,22207,769,680,85,70334,31754 +2020,13,2013,2113,385813,2611,66,22975,796,704,87,69733,32851 +2020,13,2014,2724,497277,3365,85,29612,1025,907,113,85941,42342 +2020,13,2015,3204,584902,3958,99,34830,1206,1067,133,96214,49804 +2020,13,2016,3822,697808,4722,119,41553,1439,1273,158,107344,59417 +2020,13,2017,4694,856857,5798,146,51025,1767,1563,194,123706,72960 +2020,13,2018,7707,1406923,9520,239,83780,2901,2566,319,187396,119797 +2020,13,2019,10310,1882186,12736,320,112081,3881,3433,427,227982,160266 +2020,13,2020,19269,3517607,23802,598,209468,7254,6417,797,363693,299519 +2020,16,1990,147,189977,1594,22,8500,185,164,17,75317,8089 +2020,16,1991,12,11772,99,1,527,11,10,1,4386,501 +2020,16,1992,16,15476,130,2,692,15,13,2,5441,659 +2020,16,1993,24,22532,189,3,1008,22,19,2,7588,959 +2020,16,1994,29,29735,243,3,1229,27,24,3,8776,1167 +2020,16,1995,38,38982,319,4,1611,35,31,4,10809,1531 +2020,16,1996,49,50641,414,4,2092,45,40,5,13567,1988 +2020,16,1997,58,59663,488,5,2465,54,47,6,15040,2342 +2020,16,1998,76,78124,638,7,3227,70,62,8,16729,3066 +2020,16,1999,106,109213,892,9,4511,98,87,11,22376,4286 +2020,16,2000,145,149369,1220,13,6168,134,118,15,30058,5861 +2020,16,2001,189,186281,1565,17,7964,170,151,20,28101,7645 +2020,16,2002,236,232009,1950,21,9919,212,188,25,34372,9522 +2020,16,2003,305,300466,2525,27,12845,275,243,32,43573,12332 +2020,16,2004,296,212194,1726,26,10196,266,235,31,37106,11939 +2020,16,2005,377,270762,2202,33,13010,340,300,40,46353,15235 +2020,16,2006,1080,313852,2521,39,15069,394,348,46,46219,17659 +2020,16,2007,1167,339346,2726,42,16293,426,377,50,48801,19094 +2020,16,2008,999,185943,1371,36,13031,364,322,42,35049,16336 +2020,16,2009,851,158490,1169,30,11107,310,275,36,29077,13924 +2020,16,2010,410,76231,562,15,5349,149,132,17,13565,6706 +2020,16,2011,565,104852,772,20,7367,206,182,24,17309,9235 +2020,16,2012,876,162556,1196,31,11435,319,282,37,25998,14335 +2020,16,2013,907,167960,1235,32,11830,330,292,39,25940,14830 +2020,16,2014,1169,216485,1592,42,15248,426,376,50,32206,19115 +2020,16,2015,1374,254632,1872,49,17935,501,443,58,36363,22483 +2020,16,2016,1640,303784,2234,59,21397,597,528,70,41135,26823 +2020,16,2017,2014,373025,2743,72,26274,733,649,86,47972,32937 +2020,16,2018,3306,612492,4504,118,43141,1204,1065,141,73898,54081 +2020,16,2019,4423,819393,6025,158,57715,1611,1425,188,91723,72350 +2020,16,2020,8266,1531359,11260,295,107862,3011,2663,351,151870,135215 +2020,17,1990,465,646746,6250,96,23022,617,546,57,333256,27164 +2020,17,1991,39,40075,387,6,1427,38,34,4,19386,1683 +2020,17,1992,52,52684,509,8,1875,50,44,5,24025,2213 +2020,17,1993,75,76705,741,11,2730,73,65,8,33484,3222 +2020,17,1994,92,101286,953,14,3328,89,79,9,38655,3920 +2020,17,1995,120,132786,1250,18,4363,117,103,13,47555,5140 +2020,17,1996,156,172532,1624,19,5667,152,134,17,58659,6676 +2020,17,1997,184,203303,1913,22,6676,179,158,20,64544,7864 +2020,17,1998,241,266261,2504,29,8741,234,207,26,67642,10297 +2020,17,1999,336,372297,3500,40,12217,327,289,37,89240,14392 +2020,17,2000,460,509292,4786,55,16707,447,396,51,119924,19681 +2020,17,2001,600,647269,5994,72,21593,626,554,67,115547,25674 +2020,17,2002,747,806159,7466,89,26894,780,690,83,141312,31976 +2020,17,2003,967,1044028,9668,116,34829,1010,893,107,179103,41411 +2020,17,2004,937,736428,6570,112,27636,978,865,104,153462,40094 +2020,17,2005,1195,939688,8384,143,35264,1247,1103,133,191695,51160 +2020,17,2006,3421,1089235,9688,166,40859,1446,1279,154,195023,59302 +2020,17,2007,3699,1177712,10475,179,44178,1563,1383,166,205814,64119 +2020,17,2008,3164,643111,5222,154,35342,1337,1183,142,149570,54857 +2020,17,2009,2697,548164,4451,131,30124,1140,1008,121,124054,46758 +2020,17,2010,1299,263892,2143,63,14507,549,486,58,57885,22518 +2020,17,2011,1789,363292,2950,87,19979,756,669,80,74397,31011 +2020,17,2012,2777,563729,4577,135,31014,1173,1038,125,111727,48139 +2020,17,2013,2873,582993,4733,139,32086,1214,1074,129,111452,49802 +2020,17,2014,3703,751423,6101,180,41355,1565,1384,166,138284,64191 +2020,17,2015,4355,883830,7176,211,48643,1840,1628,196,156011,75501 +2020,17,2016,5196,1054440,8561,252,58032,2195,1942,233,175946,90076 +2020,17,2017,6380,1294775,10512,310,71259,2696,2385,287,205003,110606 +2020,17,2018,10476,2125966,17261,508,117005,4426,3916,471,315141,181611 +2020,17,2019,14015,2844124,23091,680,156529,5922,5238,630,390641,242960 +2020,17,2020,26192,5315368,43155,1271,292537,11067,9790,1177,644987,454066 +2020,18,1990,80,107338,926,12,4226,101,90,9,43943,4469 +2020,18,1991,7,6651,57,1,262,6,6,1,2560,277 +2020,18,1992,9,8744,75,1,344,8,7,1,3176,364 +2020,18,1993,13,12731,110,1,501,12,11,1,4430,530 +2020,18,1994,16,16809,141,2,611,15,13,2,5125,645 +2020,18,1995,21,22036,185,2,801,19,17,2,6313,846 +2020,18,1996,27,28632,240,2,1040,25,22,3,7798,1098 +2020,18,1997,32,33738,283,3,1226,29,26,3,8611,1294 +2020,18,1998,41,44186,371,4,1605,38,34,4,9242,1694 +2020,18,1999,58,61783,518,5,2243,54,48,6,12266,2368 +2020,18,2000,79,84517,709,7,3067,73,65,8,16488,3238 +2020,18,2001,103,107335,887,9,3965,103,91,11,15643,4224 +2020,18,2002,128,133684,1105,12,4939,128,113,14,19147,5261 +2020,18,2003,166,173129,1431,15,6396,166,147,18,24292,6813 +2020,18,2004,161,122142,974,15,5075,161,142,17,20638,6596 +2020,18,2005,205,155855,1242,19,6476,205,181,22,25801,8417 +2020,18,2006,587,180658,1433,22,7503,238,210,25,26063,9756 +2020,18,2007,635,195333,1550,23,8113,257,227,27,27543,10549 +2020,18,2008,543,106599,773,20,6488,220,194,23,19744,9025 +2020,18,2009,463,90861,659,17,5530,187,166,20,16396,7693 +2020,18,2010,223,43735,317,8,2663,90,80,10,7661,3705 +2020,18,2011,307,60201,437,11,3668,124,110,13,9830,5102 +2020,18,2012,477,93403,677,18,5694,193,170,20,14789,7920 +2020,18,2013,493,96582,700,18,5890,199,176,21,14782,8194 +2020,18,2014,636,124485,902,23,7592,257,227,27,18383,10561 +2020,18,2015,748,146420,1061,27,8930,302,267,32,20794,12422 +2020,18,2016,892,174684,1266,33,10654,361,319,38,23542,14819 +2020,18,2017,1095,214499,1555,40,13082,443,392,47,27530,18197 +2020,18,2018,1798,352199,2553,66,21480,727,643,77,42527,29879 +2020,18,2019,2406,471172,3415,88,28736,973,860,103,53027,39972 +2020,18,2020,4496,880571,6383,165,53705,1818,1608,192,88482,74703 +2020,19,1990,177,240487,2264,33,9350,233,206,21,91915,10274 +2020,19,1991,15,14902,140,2,579,14,13,1,5370,637 +2020,19,1992,20,19590,184,3,762,19,17,2,6680,837 +2020,19,1993,29,28522,269,4,1109,28,24,3,9338,1219 +2020,19,1994,35,37660,345,5,1352,34,30,4,10852,1483 +2020,19,1995,46,49372,453,6,1772,44,39,5,13417,1944 +2020,19,1996,59,64144,588,6,2302,57,51,6,16613,2525 +2020,19,1997,70,75579,693,8,2711,67,60,7,18425,2974 +2020,19,1998,91,98975,907,10,3550,88,78,10,20079,3894 +2020,19,1999,128,138377,1268,14,4962,123,109,14,26769,5443 +2020,19,2000,174,189278,1734,19,6785,169,149,19,36036,7444 +2020,19,2001,227,245273,2228,24,8724,236,209,25,35130,9710 +2020,19,2002,283,305482,2775,30,10865,294,261,31,43087,12094 +2020,19,2003,367,395619,3593,39,14071,381,337,40,54800,15662 +2020,19,2004,355,279111,2445,38,11166,369,327,39,46062,15164 +2020,19,2005,453,356149,3119,49,14248,471,417,50,57719,19349 +2020,19,2006,1297,412827,3598,57,16507,546,483,58,58948,22429 +2020,19,2007,1403,446361,3891,61,17848,591,522,62,62481,24251 +2020,19,2008,1200,243430,1935,52,14273,505,447,53,44130,20747 +2020,19,2009,1023,207490,1650,45,12166,431,381,45,36762,17684 +2020,19,2010,493,99874,794,21,5859,207,183,22,17240,8517 +2020,19,2011,678,137474,1092,30,8069,286,253,30,22270,11729 +2020,19,2012,1053,213292,1694,46,12525,443,392,47,33643,18207 +2020,19,2013,1090,220549,1752,48,12958,458,405,48,33787,18836 +2020,19,2014,1404,284268,2258,61,16702,591,523,62,42233,24278 +2020,19,2015,1652,334358,2656,72,19645,695,615,73,48047,28556 +2020,19,2016,1971,398900,3168,86,23437,829,733,87,54824,34068 +2020,19,2017,2420,489820,3890,105,28779,1018,901,107,64611,41833 +2020,19,2018,3973,804265,6388,173,47253,1671,1479,176,100822,68688 +2020,19,2019,5316,1075949,8545,232,63215,2236,1978,236,127288,91891 +2020,19,2020,9934,2010832,15970,433,118143,4179,3697,440,217011,171734 +2020,20,1990,198,262313,2453,38,9949,253,224,23,153924,11142 +2020,20,1991,17,16254,152,2,616,16,14,2,8934,690 +2020,20,1992,22,21368,200,3,810,21,18,2,11047,908 +2020,20,1993,32,31111,291,4,1180,30,27,3,15370,1321 +2020,20,1994,39,41074,374,5,1438,37,32,4,17678,1608 +2020,20,1995,51,53848,490,7,1885,48,42,5,21685,2108 +2020,20,1996,66,69960,637,7,2449,62,55,7,26770,2738 +2020,20,1997,78,82431,750,9,2885,73,65,8,29363,3226 +2020,20,1998,103,107949,983,11,3777,96,85,11,30479,4223 +2020,20,1999,143,150924,1373,16,5279,134,119,16,40083,5903 +2020,20,2000,196,206441,1878,22,7220,183,162,21,53794,8073 +2020,20,2001,256,267458,2413,28,9280,257,227,28,51176,10531 +2020,20,2002,318,333114,3005,35,11559,320,283,34,62483,13116 +2020,20,2003,412,431403,3891,45,14969,414,366,45,79034,16986 +2020,20,2004,399,304367,2648,44,11879,401,355,43,68232,16445 +2020,20,2005,509,388375,3379,56,15158,512,453,55,85074,20984 +2020,20,2006,1458,450183,3896,65,17561,593,525,64,85640,24324 +2020,20,2007,1576,486750,4212,70,18987,641,567,69,90157,26300 +2020,20,2008,1349,266315,2114,60,15193,549,485,59,66197,22501 +2020,20,2009,1150,226997,1802,51,12950,468,414,50,54766,19179 +2020,20,2010,554,109261,867,25,6236,225,199,24,25476,9236 +2020,20,2011,762,150391,1194,34,8589,310,274,33,32543,12720 +2020,20,2012,1184,233328,1851,53,13332,481,426,52,48699,19745 +2020,20,2013,1224,241261,1914,55,13793,498,440,54,48382,20428 +2020,20,2014,1578,310963,2467,70,17778,642,568,69,59767,26329 +2020,20,2015,1856,365758,2902,83,20910,755,668,81,67092,30969 +2020,20,2016,2215,436362,3462,99,24947,900,796,97,75149,36947 +2020,20,2017,2719,535820,4251,121,30633,1105,978,119,86940,45368 +2020,20,2018,4465,879793,6980,199,50298,1815,1606,196,132398,74492 +2020,20,2019,5974,1176991,9338,266,67289,2428,2148,262,162159,99656 +2020,20,2020,11164,2199673,17452,498,125755,4538,4014,489,261961,186246 +2020,21,1990,111,149123,1283,17,5660,141,125,13,63054,6225 +2020,21,1991,9,9240,80,1,351,9,8,1,3673,386 +2020,21,1992,12,12148,105,1,461,11,10,1,4556,507 +2020,21,1993,18,17686,152,2,671,17,15,2,6354,738 +2020,21,1994,22,23357,196,2,818,20,18,2,7348,898 +2020,21,1995,29,30621,257,3,1073,27,24,3,9050,1178 +2020,21,1996,37,39786,333,3,1393,35,31,4,11194,1530 +2020,21,1997,44,46882,393,4,1641,41,36,4,12333,1802 +2020,21,1998,58,61401,514,5,2149,53,47,6,12980,2360 +2020,21,1999,80,85852,719,7,3004,75,66,8,17149,3298 +2020,21,2000,110,117444,983,10,4107,102,90,12,23056,4510 +2020,21,2001,143,149356,1231,13,5309,143,127,15,22547,5883 +2020,21,2002,179,186019,1533,16,6613,178,158,19,27589,7327 +2020,21,2003,231,240907,1986,21,8564,231,204,24,34990,9489 +2020,21,2004,224,169905,1349,20,6794,223,198,24,29833,9188 +2020,21,2005,286,216800,1721,25,8670,285,252,30,37287,11724 +2020,21,2006,818,251303,1990,30,10047,330,292,35,38218,13589 +2020,21,2007,884,271716,2152,32,10863,357,316,38,40359,14693 +2020,21,2008,757,148086,1070,27,8687,306,270,32,29130,12571 +2020,21,2009,645,126223,912,23,7404,261,230,28,24175,10715 +2020,21,2010,311,60771,439,11,3566,125,111,13,11288,5160 +2020,21,2011,428,83671,604,15,4911,173,153,18,14554,7106 +2020,21,2012,664,129848,938,24,7623,268,237,28,21874,11031 +2020,21,2013,687,134299,970,25,7886,277,245,29,21840,11412 +2020,21,2014,885,173099,1250,32,10165,358,316,38,27124,14710 +2020,21,2015,1041,203601,1471,38,11956,421,372,45,30635,17301 +2020,21,2016,1242,242903,1755,45,14264,502,444,53,34609,20641 +2020,21,2017,1525,298266,2155,55,17515,616,545,65,40385,25346 +2020,21,2018,2505,489741,3538,90,28758,1012,895,107,62212,41617 +2020,21,2019,3351,655177,4733,121,38473,1353,1197,143,77307,55675 +2020,21,2020,6262,1224457,8845,226,71902,2529,2237,268,128212,104051 +2020,22,1990,290,390446,3510,51,13251,375,331,34,207030,16494 +2020,22,1991,25,24194,217,3,821,23,21,2,12036,1022 +2020,22,1992,32,31806,286,4,1079,31,27,3,14902,1344 +2020,22,1993,47,46308,416,6,1572,44,39,5,20754,1956 +2020,22,1994,57,61164,536,7,1916,54,48,6,23917,2381 +2020,22,1995,75,80186,702,10,2511,71,63,8,29387,3121 +2020,22,1996,97,104185,912,10,3262,92,81,10,36076,4054 +2020,22,1997,115,122764,1074,12,3843,108,96,12,39475,4775 +2020,22,1998,150,160778,1407,15,5031,142,126,16,39616,6252 +2020,22,1999,210,224801,1966,21,7032,198,176,23,51707,8739 +2020,22,2000,287,307515,2689,29,9616,271,240,31,69482,11950 +2020,22,2001,374,389563,3366,38,12352,374,331,40,69214,15589 +2020,22,2002,466,485192,4192,48,15384,466,412,50,84602,19416 +2020,22,2003,604,628355,5429,62,19924,604,534,65,107157,25145 +2020,22,2004,585,443059,3684,60,15805,584,517,63,92326,24345 +2020,22,2005,746,565347,4701,76,20168,746,660,80,115266,31064 +2020,22,2006,2135,655318,5446,88,23374,864,765,93,119093,36008 +2020,22,2007,2308,708548,5888,95,25273,934,827,101,125549,38933 +2020,22,2008,1975,386224,2923,82,20213,799,707,86,92100,33309 +2020,22,2009,1683,329202,2492,70,17229,681,603,74,76315,28391 +2020,22,2010,811,158525,1200,34,8297,328,290,35,35572,13673 +2020,22,2011,1116,218298,1652,46,11427,452,400,49,45938,18830 +2020,22,2012,1733,338831,2565,72,17738,702,621,76,68889,29230 +2020,22,2013,1793,350508,2653,74,18351,726,642,78,68604,30240 +2020,22,2014,2311,451771,3420,96,23653,935,827,101,84959,38976 +2020,22,2015,2718,531377,4022,112,27820,1100,973,119,95643,45844 +2020,22,2016,3242,633952,4799,134,33191,1313,1161,142,107435,54694 +2020,22,2017,3981,778447,5892,165,40756,1612,1426,174,124808,67160 +2020,22,2018,6537,1278177,9675,270,66919,2647,2341,286,191024,110274 +2020,22,2019,8746,1709948,12943,362,89524,3541,3132,382,235638,147525 +2020,22,2020,16345,3195713,24189,676,167312,6617,5853,714,385578,275709 +2020,23,1990,270,353168,3030,42,14776,343,303,31,128080,15084 +2020,23,1991,23,21884,188,3,916,21,19,2,7466,935 +2020,23,1992,30,28769,247,3,1204,28,25,3,9271,1229 +2020,23,1993,44,41886,359,5,1753,41,36,4,12942,1789 +2020,23,1994,53,55295,462,6,2136,49,44,5,15003,2177 +2020,23,1995,70,72491,606,8,2800,65,57,7,18506,2854 +2020,23,1996,90,94183,787,8,3637,84,75,9,22612,3707 +2020,23,1997,106,110974,927,10,4285,99,88,11,25050,4367 +2020,23,1998,139,145331,1214,13,5610,130,115,14,27361,5718 +2020,23,1999,195,203192,1697,18,7841,182,161,21,36469,7992 +2020,23,2000,266,277939,2320,24,10723,248,220,28,49049,10929 +2020,23,2001,347,331932,3338,31,13676,320,283,37,47527,14256 +2020,23,2002,433,413413,4158,39,17034,399,353,46,58301,17756 +2020,23,2003,560,535398,5384,51,22060,516,457,59,74161,22995 +2020,23,2004,543,377906,3666,49,17507,500,442,57,61480,22264 +2020,23,2005,692,482210,4678,62,22339,638,564,73,77032,28409 +2020,23,2006,1982,558952,5389,72,25879,739,654,85,77067,32930 +2020,23,2007,2143,604354,5826,78,27981,800,707,92,81726,35605 +2020,23,2008,1833,330452,2909,67,22376,684,605,78,56265,30462 +2020,23,2009,1563,281664,2479,57,19072,583,516,67,46870,25964 +2020,23,2010,753,135529,1193,27,9185,281,248,32,21978,12504 +2020,23,2011,1036,186487,1641,38,12649,387,342,44,28144,17220 +2020,23,2012,1609,289232,2546,59,19636,600,531,69,42527,26731 +2020,23,2013,1664,298967,2632,61,20314,621,549,71,42722,27655 +2020,23,2014,2145,385340,3392,78,26183,800,708,92,53421,35645 +2020,23,2015,2523,453242,3990,92,30797,941,832,108,60802,41926 +2020,23,2016,3010,540733,4760,110,36742,1122,993,129,69374,50019 +2020,23,2017,3696,663980,5845,135,45116,1378,1219,158,81812,61419 +2020,23,2018,6069,1090227,9597,222,74079,2263,2002,260,127739,100848 +2020,23,2019,8119,1458507,12839,297,99103,3027,2678,348,161447,134915 +2020,23,2020,15174,2725801,23994,554,185213,5658,5005,649,275730,252141 +2020,24,1990,532,747441,7231,111,26829,718,635,66,323401,31719 +2020,24,1991,45,46315,448,7,1662,44,39,5,18869,1965 +2020,24,1992,59,60887,589,9,2185,58,52,6,23448,2584 +2020,24,1993,86,88648,858,13,3182,85,75,9,32751,3762 +2020,24,1994,105,117070,1103,16,3878,104,92,11,37980,4578 +2020,24,1995,137,153478,1446,21,5084,136,120,15,46892,6001 +2020,24,1996,178,199414,1879,22,6604,176,156,19,57858,7795 +2020,24,1997,210,234975,2213,26,7780,208,184,23,63942,9183 +2020,24,1998,275,307736,2898,33,10186,272,241,30,68117,12023 +2020,24,1999,384,430279,4050,47,14237,380,336,43,90308,16805 +2020,24,2000,525,588597,5539,64,19469,520,460,59,121538,22981 +2020,24,2001,685,744915,6931,83,25013,717,634,77,119210,29978 +2020,24,2002,853,927776,8632,104,31153,893,790,96,146080,37337 +2020,24,2003,1105,1201529,11179,135,40345,1156,1023,124,185587,48354 +2020,24,2004,1070,847433,7593,130,32011,1119,990,120,157423,46816 +2020,24,2005,1365,1081331,9689,166,40846,1428,1263,153,197077,59738 +2020,24,2006,3907,1253420,11206,193,47331,1655,1464,177,202589,69245 +2020,24,2007,4225,1355233,12116,208,51176,1790,1583,192,214416,74869 +2020,24,2008,3614,738898,6008,178,40928,1531,1355,164,153658,64054 +2020,24,2009,3081,629807,5121,152,34885,1305,1155,140,127825,54597 +2020,24,2010,1484,303221,2466,73,16800,629,556,67,59856,26293 +2020,24,2011,2043,417469,3395,101,23137,866,766,93,77419,36211 +2020,24,2012,3172,647848,5268,156,35916,1344,1189,144,116739,56210 +2020,24,2013,3281,670042,5449,162,37157,1390,1230,149,116989,58152 +2020,24,2014,4229,863622,7023,209,47892,1791,1585,192,145876,74953 +2020,24,2015,4975,1015800,8261,245,56331,2107,1864,226,165506,88160 +2020,24,2016,5935,1211882,9855,293,67205,2514,2224,270,188103,105178 +2020,24,2017,7288,1488104,12101,359,82522,3087,2731,331,220874,129151 +2020,24,2018,11966,2443403,19870,590,135498,5068,4484,543,342996,212061 +2020,24,2019,16008,3268790,26582,789,181270,6781,5998,727,430547,283696 +2020,24,2020,29917,6109037,49679,1475,338774,12672,11210,1359,726769,530197 +2020,25,1990,3294,4632971,47901,819,171131,4497,3978,426,2389418,199859 +2020,25,1991,278,287081,2968,51,10604,279,247,29,138733,12384 +2020,25,1992,366,377404,3902,67,13940,366,324,38,171822,16281 +2020,25,1993,533,549480,5681,97,20296,533,472,57,239342,23704 +2020,25,1994,648,725343,7306,118,24739,649,574,70,276248,28844 +2020,25,1995,850,950919,9578,155,32433,851,753,93,339585,37815 +2020,25,1996,1104,1235467,12441,160,42127,1105,978,122,414017,49118 +2020,25,1997,1300,1455727,14656,188,49626,1302,1152,145,456113,57862 +2020,25,1998,1703,1906401,19188,246,64974,1705,1508,193,485302,75756 +2020,25,1999,2380,2665401,26820,344,90816,2383,2108,274,642137,105887 +2020,25,2000,3254,3645924,36676,471,124190,3258,2882,375,862602,144800 +2020,25,2001,4245,4354448,52787,614,158329,4200,3716,489,825018,188891 +2020,25,2002,5287,5423377,65745,765,197195,5232,4628,609,1009978,235259 +2020,25,2003,6848,7023622,85144,991,255381,6775,5994,789,1281602,304676 +2020,25,2004,6630,4957744,57930,959,202694,6560,5803,764,1072768,294985 +2020,25,2005,8460,6326121,73919,1224,258639,8370,7405,974,1341000,376404 +2020,25,2006,24212,7332880,85250,1419,299588,9702,8583,1130,1332707,436306 +2020,25,2007,26179,7928530,92175,1534,323924,10490,9280,1221,1408581,471746 +2020,25,2008,22397,4347832,46100,1312,259179,8975,7940,1045,983334,403600 +2020,25,2009,19090,3705923,39294,1119,220914,7650,6767,891,816145,344013 +2020,25,2010,9194,1783145,18910,539,106390,3684,3259,429,381086,165673 +2020,25,2011,12661,2453528,26025,742,146518,5072,4487,591,484883,228162 +2020,25,2012,19654,3805217,40372,1152,227440,7872,6964,917,729029,354175 +2020,25,2013,20334,3933196,41742,1191,235300,8142,7203,949,728204,366414 +2020,25,2014,26208,5069535,53801,1536,303279,10495,9284,1223,904943,472274 +2020,25,2015,30826,5962829,63281,1806,356720,12344,10920,1438,1022778,555493 +2020,25,2016,36777,7113856,75497,2155,425579,14727,13028,1716,1155477,662721 +2020,25,2017,45159,8735283,92705,2646,522580,18084,15997,2107,1349739,813772 +2020,25,2018,74149,14342980,152217,4345,858054,29693,26267,3459,2081193,1336182 +2020,25,2019,99197,19188080,203636,5812,1147907,39723,35140,4628,2590759,1787547 +2020,25,2020,185389,35860492,380575,10862,2145316,74238,65672,8649,4309269,3340736 +2020,26,1990,385,521495,4590,63,20967,493,436,44,196130,21715 +2020,26,1991,32,32314,284,4,1299,31,27,3,11444,1346 +2020,26,1992,43,42481,374,5,1708,40,36,4,14218,1769 +2020,26,1993,62,61850,544,7,2487,58,52,6,19856,2575 +2020,26,1994,76,81653,700,9,3031,71,63,8,23030,3134 +2020,26,1995,99,107047,918,12,3974,93,83,10,28427,4109 +2020,26,1996,129,139089,1192,12,5161,121,107,13,35151,5337 +2020,26,1997,152,163895,1404,14,6080,143,126,16,38959,6287 +2020,26,1998,199,214650,1839,19,7960,187,165,21,42617,8231 +2020,26,1999,278,300133,2570,26,11127,261,231,30,56836,11505 +2020,26,2000,380,410573,3515,36,15216,357,316,40,76453,15733 +2020,26,2001,496,521010,4398,47,19677,500,442,53,72096,20523 +2020,26,2002,617,648907,5478,58,24507,623,551,66,88344,25561 +2020,26,2003,799,840378,7094,76,31739,806,713,85,112231,33103 +2020,26,2004,774,593001,4830,73,25188,781,691,82,94696,32050 +2020,26,2005,988,756676,6163,93,32140,996,881,105,118531,40896 +2020,26,2006,2826,877096,7100,108,37233,1155,1022,122,119442,47405 +2020,26,2007,3056,948341,7676,117,40258,1249,1105,132,126453,51255 +2020,26,2008,2615,517638,3831,100,32196,1068,945,113,89671,43851 +2020,26,2009,2229,441216,3265,85,27442,911,805,96,74603,37377 +2020,26,2010,1073,212346,1571,41,13216,438,388,46,34931,18000 +2020,26,2011,1478,292248,2161,57,18201,604,534,64,44851,24790 +2020,26,2012,2294,453360,3352,88,28253,937,829,99,67646,38481 +2020,26,2013,2374,468721,3465,91,29229,969,857,102,67811,39811 +2020,26,2014,3059,604138,4466,117,37674,1249,1105,132,84598,51313 +2020,26,2015,3599,710593,5253,138,44312,1469,1300,155,96036,60354 +2020,26,2016,4293,847762,6267,164,52866,1753,1550,185,109274,72005 +2020,26,2017,5272,1040989,7695,202,64916,2152,1904,228,128407,88417 +2020,26,2018,8656,1709259,12635,332,106589,3534,3126,374,199633,145176 +2020,26,2019,11580,2286652,16903,444,142595,4727,4182,500,250882,194217 +2020,26,2020,21642,4273514,31589,829,266494,8835,7816,934,424388,362971 +2020,27,1990,130,179463,1550,22,6948,168,149,15,69464,7385 +2020,27,1991,11,11120,96,1,431,10,9,1,4050,458 +2020,27,1992,14,14619,126,2,566,14,12,1,5030,602 +2020,27,1993,21,21285,184,3,824,20,18,2,7021,876 +2020,27,1994,26,28096,236,3,1004,24,21,3,8135,1066 +2020,27,1995,34,36834,310,4,1317,32,28,3,10034,1397 +2020,27,1996,44,47858,402,4,1710,41,37,4,12391,1815 +2020,27,1997,51,56391,474,5,2015,49,43,5,13722,2138 +2020,27,1998,67,73851,621,7,2638,64,56,7,14959,2799 +2020,27,1999,94,103257,868,9,3687,89,79,10,19931,3913 +2020,27,2000,129,141246,1186,13,5042,122,108,14,26804,5350 +2020,27,2001,168,175493,1449,17,6630,167,148,18,24822,6980 +2020,27,2002,209,218572,1805,21,8257,208,184,22,30403,8693 +2020,27,2003,271,283065,2337,27,10694,269,238,29,38604,11258 +2020,27,2004,262,199810,1592,26,8487,260,230,28,32735,10900 +2020,27,2005,334,254960,2032,33,10830,332,294,36,40958,13908 +2020,27,2006,957,295535,2339,39,12545,385,341,42,41023,16122 +2020,27,2007,1035,319541,2529,42,13564,416,368,45,43411,17431 +2020,27,2008,885,174754,1265,36,10849,356,315,39,31006,14913 +2020,27,2009,755,148953,1078,31,9247,304,269,33,25786,12711 +2020,27,2010,363,71669,518,15,4453,146,129,16,12067,6122 +2020,27,2011,500,98612,713,20,6133,201,178,22,15457,8431 +2020,27,2012,777,152937,1106,32,9520,312,276,34,23301,13087 +2020,27,2013,804,158078,1143,33,9849,323,286,35,23344,13539 +2020,27,2014,1036,203748,1473,42,12695,417,369,45,29107,17451 +2020,27,2015,1218,239650,1732,49,14932,490,433,53,33022,20526 +2020,27,2016,1454,285911,2067,59,17814,585,517,63,37533,24488 +2020,27,2017,1785,351077,2538,72,21875,718,635,78,44068,30069 +2020,27,2018,2931,576454,4167,119,35917,1179,1043,128,68432,49372 +2020,27,2019,3921,771181,5574,159,48050,1577,1395,171,85889,66050 +2020,27,2020,7328,1441257,10418,297,89801,2947,2607,319,144955,123441 +2020,28,1990,111,147399,1251,17,5394,140,124,13,72510,6200 +2020,28,1991,9,9134,78,1,334,9,8,1,4216,384 +2020,28,1992,12,12007,102,1,439,11,10,1,5219,505 +2020,28,1993,18,17482,148,2,640,17,15,2,7268,735 +2020,28,1994,22,23089,191,2,780,20,18,2,8375,895 +2020,28,1995,29,30269,250,3,1022,27,24,3,10289,1173 +2020,28,1996,37,39329,325,3,1328,35,31,4,12747,1524 +2020,28,1997,44,46342,383,4,1564,41,36,4,13979,1795 +2020,28,1998,57,60692,501,5,2048,53,47,6,14346,2350 +2020,28,1999,80,84860,701,7,2862,74,66,8,18826,3285 +2020,28,2000,109,116083,958,10,3914,102,90,12,25288,4492 +2020,28,2001,143,146991,1199,13,5027,140,124,15,25005,5859 +2020,28,2002,178,183074,1494,16,6261,175,155,19,30547,7298 +2020,28,2003,230,237093,1935,21,8109,226,200,24,38666,9451 +2020,28,2004,223,167195,1313,20,6433,219,194,24,33337,9151 +2020,28,2005,285,213342,1676,26,8209,279,247,30,41593,11676 +2020,28,2006,815,247295,1940,30,9513,324,287,35,42800,13534 +2020,28,2007,881,267382,2098,32,10286,350,310,38,45084,14634 +2020,28,2008,753,145779,1043,27,8226,300,265,32,33085,12520 +2020,28,2009,642,124256,889,23,7012,255,226,27,27390,10671 +2020,28,2010,309,59830,428,11,3377,123,109,13,12752,5139 +2020,28,2011,426,82382,589,16,4650,169,150,18,16430,7078 +2020,28,2012,661,127859,915,24,7219,263,233,28,24607,10987 +2020,28,2013,684,132254,946,25,7468,272,241,29,24469,11366 +2020,28,2014,882,170462,1220,32,9626,351,310,38,30254,14650 +2020,28,2015,1037,200499,1435,38,11322,412,365,44,33997,17232 +2020,28,2016,1237,239203,1711,45,13508,492,435,53,38139,20558 +2020,28,2017,1519,293723,2102,55,16586,604,534,65,44188,25243 +2020,28,2018,2494,482281,3451,91,27234,992,877,107,67427,41449 +2020,28,2019,3337,645197,4616,122,36434,1327,1174,143,82790,55450 +2020,28,2020,6237,1205807,8627,228,68091,2480,2194,267,134364,103631 +2020,29,1990,370,477775,4075,55,18768,461,408,41,233631,20257 +2020,29,1991,31,29605,253,3,1163,29,25,3,13577,1255 +2020,29,1992,41,38920,332,5,1529,38,33,4,16803,1650 +2020,29,1993,60,56665,483,7,2226,55,48,6,23393,2402 +2020,29,1994,73,74825,622,8,2713,67,59,7,26949,2924 +2020,29,1995,96,98095,815,10,3557,87,77,9,33095,3833 +2020,29,1996,124,127446,1059,11,4620,113,100,12,40692,4978 +2020,29,1997,146,150165,1247,13,5442,134,118,15,44680,5865 +2020,29,1998,191,196650,1633,17,7126,175,155,20,46459,7678 +2020,29,1999,268,274937,2282,23,9960,244,216,28,61151,10732 +2020,29,2000,366,376071,3121,32,13620,334,296,38,82115,14676 +2020,29,2001,477,487672,4010,41,17508,468,414,50,78504,19145 +2020,29,2002,595,607386,4995,52,21806,583,516,62,95937,23845 +2020,29,2003,770,786603,6468,67,28240,755,668,80,121482,30880 +2020,29,2004,746,554857,4398,65,22408,731,647,78,104156,29898 +2020,29,2005,951,708001,5612,83,28592,933,825,99,129987,38150 +2020,29,2006,2723,820676,6479,96,33129,1081,957,115,131263,44222 +2020,29,2007,2944,887339,7005,103,35820,1169,1034,125,138375,47814 +2020,29,2008,2519,484483,3505,88,28652,1000,885,107,100574,40907 +2020,29,2009,2147,412954,2987,75,24422,853,754,91,83312,34867 +2020,29,2010,1034,198798,1438,36,11761,411,363,44,38815,16792 +2020,29,2011,1424,273676,1979,50,16197,565,500,60,49690,23125 +2020,29,2012,2210,424666,3071,78,25143,877,776,93,74496,35897 +2020,29,2013,2287,439172,3175,80,26012,908,803,97,74167,37138 +2020,29,2014,2947,566052,4092,104,33527,1170,1035,125,91831,47867 +2020,29,2015,3467,665795,4814,122,39435,1376,1217,147,103356,56302 +2020,29,2016,4136,794317,5743,145,47047,1642,1452,175,116152,67170 +2020,29,2017,5079,975362,7052,178,57770,2016,1783,215,134884,82480 +2020,29,2018,8339,1601504,11579,293,94856,3310,2928,353,206420,135428 +2020,29,2019,11156,2142497,15490,392,126898,4428,3917,472,254458,181176 +2020,29,2020,20849,4004104,28949,733,237160,8276,7321,882,415945,338598 +2020,30,1990,30,35500,274,4,1574,35,31,3,19204,1498 +2020,30,1991,3,2200,17,0,98,2,2,0,1113,93 +2020,30,1992,3,2892,22,0,128,3,3,0,1374,122 +2020,30,1993,5,4210,33,0,187,4,4,0,1909,178 +2020,30,1994,6,5557,42,1,228,5,4,1,2189,216 +2020,30,1995,8,7285,55,1,298,7,6,1,2679,283 +2020,30,1996,10,9464,71,1,388,9,8,1,3336,368 +2020,30,1997,12,11150,84,1,457,10,9,1,3662,434 +2020,30,1998,15,14599,110,1,598,13,12,2,3895,568 +2020,30,1999,21,20409,153,2,835,18,16,2,5147,794 +2020,30,2000,29,27913,210,2,1142,25,22,3,6898,1085 +2020,30,2001,38,34836,269,3,1475,32,28,4,6322,1416 +2020,30,2002,48,43388,335,3,1837,40,35,5,7703,1763 +2020,30,2003,62,56190,434,4,2379,52,46,6,9721,2284 +2020,30,2004,60,39675,297,4,1888,50,44,6,8454,2211 +2020,30,2005,76,50626,378,6,2409,64,56,8,10517,2821 +2020,30,2006,218,58683,434,6,2791,74,65,9,10367,3270 +2020,30,2007,236,63449,469,7,3017,80,71,10,10883,3536 +2020,30,2008,202,34849,238,6,2414,68,61,8,8061,3025 +2020,30,2009,172,29704,203,5,2058,58,52,7,6649,2579 +2020,30,2010,83,14289,98,2,991,28,25,3,3081,1242 +2020,30,2011,114,19657,134,3,1365,39,34,5,3895,1710 +2020,30,2012,177,30479,208,5,2118,60,53,7,5804,2655 +2020,30,2013,183,31496,215,5,2192,62,55,7,5737,2747 +2020,30,2014,236,40596,277,7,2825,80,71,10,7050,3540 +2020,30,2015,278,47750,325,8,3323,94,83,11,7866,4164 +2020,30,2016,331,56967,388,10,3964,112,99,14,8750,4968 +2020,30,2017,407,69951,477,12,4868,138,122,17,10032,6100 +2020,30,2018,668,114857,783,20,7992,226,200,27,15104,10016 +2020,30,2019,894,153655,1047,26,10692,303,268,36,18206,13399 +2020,30,2020,1671,287166,1957,49,19982,566,501,68,28547,25041 +2020,31,1990,177,240944,2309,35,9772,234,207,21,118247,10272 +2020,31,1991,15,14930,143,2,606,14,13,1,6880,637 +2020,31,1992,20,19627,188,3,796,19,17,2,8528,837 +2020,31,1993,29,28577,274,4,1159,28,25,3,11888,1218 +2020,31,1994,35,37725,352,5,1413,34,30,4,13731,1483 +2020,31,1995,46,49457,462,7,1852,44,39,5,16898,1944 +2020,31,1996,59,64255,600,7,2406,57,51,6,21275,2525 +2020,31,1997,70,75709,707,8,2834,68,60,7,23507,2974 +2020,31,1998,92,99145,925,11,3710,89,78,10,25559,3894 +2020,31,1999,128,138616,1293,15,5186,124,110,14,34005,5442 +2020,31,2000,175,189604,1768,20,7092,169,150,19,45674,7442 +2020,31,2001,228,245459,2271,26,9120,237,210,25,44312,9708 +2020,31,2002,285,305714,2829,33,11358,295,261,31,54158,12092 +2020,31,2003,368,395919,3663,42,14710,383,338,41,68588,15659 +2020,31,2004,357,279391,2495,41,11674,370,328,39,58819,15161 +2020,31,2005,455,356505,3183,52,14897,473,418,50,73417,19346 +2020,31,2006,1303,413241,3665,61,17256,548,485,58,74592,22425 +2020,31,2007,1409,446808,3963,66,18658,592,524,63,78631,24246 +2020,31,2008,1205,244253,1983,56,14925,507,448,54,57190,20744 +2020,31,2009,1027,208192,1690,48,12722,432,382,46,47374,17681 +2020,31,2010,495,100194,813,23,6127,208,184,22,22068,8515 +2020,31,2011,681,137889,1119,32,8438,286,253,30,28316,11727 +2020,31,2012,1058,213897,1735,49,13098,444,393,47,42441,18203 +2020,31,2013,1094,221135,1793,51,13550,460,407,49,42244,18832 +2020,31,2014,1410,285023,2312,66,17465,592,524,63,52295,24273 +2020,31,2015,1659,335247,2719,77,20542,697,616,74,58847,28551 +2020,31,2016,1979,399961,3244,92,24508,831,735,88,66276,34062 +2020,31,2017,2430,491122,3983,113,30094,1021,903,108,76927,41825 +2020,31,2018,3990,806402,6540,186,49413,1676,1483,178,117773,68675 +2020,31,2019,5338,1078807,8749,249,66104,2242,1984,238,145031,91874 +2020,31,2020,9976,2016177,16352,465,123542,4191,3707,445,236739,171703 +2020,32,1990,91,118881,1096,13,5342,115,102,10,43500,5074 +2020,32,1991,8,7366,68,1,331,7,6,1,2543,314 +2020,32,1992,10,9684,89,1,435,9,8,1,3164,413 +2020,32,1993,15,14100,130,2,634,14,12,1,4424,602 +2020,32,1994,18,18621,167,2,772,17,15,2,5144,732 +2020,32,1995,23,24412,219,3,1012,22,19,2,6361,960 +2020,32,1996,30,31713,285,3,1315,28,25,3,8064,1247 +2020,32,1997,36,37363,335,3,1549,33,29,4,8941,1469 +2020,32,1998,47,48924,439,4,2028,44,39,5,9736,1923 +2020,32,1999,66,68393,614,6,2835,61,54,7,12977,2688 +2020,32,2000,90,93540,839,8,3877,83,74,9,17466,3676 +2020,32,2001,117,126062,1221,10,5040,120,106,12,18859,4795 +2020,32,2002,146,157007,1521,12,6277,150,132,15,23120,5972 +2020,32,2003,189,203334,1969,16,8129,194,171,20,29388,7734 +2020,32,2004,183,143407,1338,16,6449,188,166,19,24609,7488 +2020,32,2005,233,182989,1708,20,8229,240,212,25,30817,9555 +2020,32,2006,667,212110,1973,23,9537,278,246,28,32383,11076 +2020,32,2007,721,229339,2133,25,10311,300,266,31,34270,11976 +2020,32,2008,617,124858,1060,21,8243,257,227,26,24155,10246 +2020,32,2009,526,106424,904,18,7026,219,194,22,20084,8733 +2020,32,2010,253,51239,435,9,3384,105,93,11,9399,4206 +2020,32,2011,349,70546,599,12,4660,145,128,15,12243,5792 +2020,32,2012,541,109479,929,19,7234,225,199,23,18442,8991 +2020,32,2013,560,113231,961,19,7484,233,206,24,18461,9302 +2020,32,2014,722,145945,1239,25,9646,300,266,31,22994,11989 +2020,32,2015,849,171662,1457,29,11345,353,313,36,26054,14102 +2020,32,2016,1012,204798,1738,35,13536,421,373,43,29620,16824 +2020,32,2017,1243,251477,2134,43,16621,518,458,53,34713,20658 +2020,32,2018,2041,412915,3504,70,27290,850,752,87,53818,33920 +2020,32,2019,2731,552398,4688,94,36509,1137,1006,117,67336,45378 +2020,32,2020,5104,1032375,8761,176,68232,2125,1880,218,113072,84807 +2020,33,1990,633,838299,7280,103,34542,799,706,72,337842,34984 +2020,33,1991,53,51945,451,6,2140,49,44,5,19683,2168 +2020,33,1992,70,68288,593,8,2814,65,58,7,24422,2850 +2020,33,1993,102,99424,863,12,4097,95,84,10,34070,4149 +2020,33,1994,125,131232,1110,15,4993,115,102,12,39425,5049 +2020,33,1995,163,172045,1455,19,6546,151,134,16,48579,6619 +2020,33,1996,212,223537,1890,20,8503,196,174,22,60056,8598 +2020,33,1997,250,263401,2227,24,10017,231,205,26,66513,10128 +2020,33,1998,327,344964,2915,31,13115,303,268,34,73052,13261 +2020,33,1999,457,482332,4075,43,18331,423,374,48,97462,18535 +2020,33,2000,626,659805,5572,59,25067,579,512,66,130990,25346 +2020,33,2001,816,832359,6958,77,32221,797,705,86,120581,33064 +2020,33,2002,1016,1036684,8666,96,40131,992,878,108,147607,41180 +2020,33,2003,1316,1342574,11223,124,51972,1285,1137,139,187292,53331 +2020,33,2004,1274,947678,7651,120,41251,1244,1101,135,158923,51635 +2020,33,2005,1626,1209246,9763,153,52636,1587,1404,172,198703,65887 +2020,33,2006,4654,1401691,11224,178,60968,1840,1628,200,197640,76372 +2020,33,2007,5032,1515548,12136,192,65921,1990,1760,216,208966,82576 +2020,33,2008,4305,828823,6082,164,52728,1702,1506,185,149242,70647 +2020,33,2009,3669,706457,5184,140,44943,1451,1283,158,123995,60217 +2020,33,2010,1767,339918,2493,67,21644,699,618,76,57958,29000 +2020,33,2011,2434,467712,3429,93,29808,962,851,104,73974,39938 +2020,33,2012,3778,725379,5315,144,46271,1493,1320,162,111365,61996 +2020,33,2013,3908,749774,5493,149,47870,1544,1366,168,111406,64138 +2020,33,2014,5038,966388,7080,192,61700,1990,1760,216,138688,82668 +2020,33,2015,5925,1136675,8327,226,72572,2340,2070,254,157060,97235 +2020,33,2016,7069,1356092,9935,270,86581,2792,2470,303,178169,116004 +2020,33,2017,8680,1665183,12199,331,106315,3428,3033,373,208672,142445 +2020,33,2018,14252,2734158,20030,544,174565,5629,4980,612,323066,233889 +2020,33,2019,19067,3657765,26797,727,233533,7531,6662,818,403848,312897 +2020,33,2020,35634,6835976,50080,1359,436449,14074,12450,1530,676901,584772 +2020,34,1990,1051,1471542,15148,262,53429,1428,1264,135,850230,63555 +2020,34,1991,89,91184,939,16,3311,89,78,9,49299,3938 +2020,34,1992,117,119873,1234,21,4352,116,103,12,60972,5177 +2020,34,1993,170,174528,1797,31,6337,169,150,18,84841,7538 +2020,34,1994,207,230419,2311,38,7724,206,182,22,97683,9173 +2020,34,1995,271,302078,3029,50,10126,270,239,30,119861,12025 +2020,34,1996,352,392469,3935,51,13152,351,311,39,144803,15620 +2020,34,1997,415,462439,4635,60,15494,414,366,46,158763,18400 +2020,34,1998,543,605604,6069,79,20285,541,479,61,163600,24091 +2020,34,1999,759,846713,8483,110,28354,757,669,87,214733,33672 +2020,34,2000,1038,1158194,11600,150,38773,1035,916,119,288328,46046 +2020,34,2001,1354,1384502,16702,196,49422,1335,1181,156,274414,60067 +2020,34,2002,1686,1724368,20802,244,61554,1662,1470,194,335696,74813 +2020,34,2003,2184,2233166,26940,317,79716,2153,1904,251,425615,96887 +2020,34,2004,2114,1575875,18313,307,63263,2084,1844,243,358102,93805 +2020,34,2005,2698,2010829,23368,391,80724,2659,2352,310,447298,119697 +2020,34,2006,7722,2330842,26991,453,93517,3083,2727,359,443872,138746 +2020,34,2007,8349,2520172,29184,490,101113,3333,2948,389,468646,150016 +2020,34,2008,7143,1382115,14603,419,80910,2851,2522,332,329867,128345 +2020,34,2009,6088,1178063,12447,358,68964,2430,2150,283,273498,109396 +2020,34,2010,2932,566955,5991,172,33213,1170,1035,136,127557,52684 +2020,34,2011,4038,780268,8248,237,45740,1612,1426,188,162068,72555 +2020,34,2012,6268,1210385,12797,368,71002,2501,2213,292,243335,112628 +2020,34,2013,6485,1251357,13234,381,73455,2588,2289,302,242673,116520 +2020,34,2014,8358,1612881,17057,491,94677,3335,2950,389,301027,150183 +2020,34,2015,9831,1897086,20063,577,111360,3923,3470,458,339528,176647 +2020,34,2016,11729,2263290,23936,689,132856,4680,4140,546,381971,210746 +2020,34,2017,14402,2779153,29391,846,163138,5747,5084,670,444970,258781 +2020,34,2018,23648,4563253,48259,1389,267865,9436,8347,1101,683230,424906 +2020,34,2019,31636,6104735,64561,1858,358350,12623,11167,1472,846786,568441 +2020,34,2020,59125,11409102,120657,3472,669718,23591,20869,2752,1397100,1062357 +2020,35,1990,113,138656,1120,15,6091,134,119,12,94953,5843 +2020,35,1991,10,8592,69,1,377,8,7,1,5495,362 +2020,35,1992,13,11295,91,1,496,11,10,1,6773,476 +2020,35,1993,18,16445,133,2,722,16,14,2,9400,693 +2020,35,1994,22,21716,171,2,880,19,17,2,10754,843 +2020,35,1995,29,28469,224,3,1154,25,23,3,13135,1106 +2020,35,1996,38,36988,291,3,1499,33,29,4,16591,1436 +2020,35,1997,45,43581,343,3,1766,39,34,4,18104,1692 +2020,35,1998,59,57072,449,4,2312,51,45,6,18467,2215 +2020,35,1999,82,79793,627,6,3232,71,63,8,24150,3096 +2020,35,2000,112,109144,857,9,4420,97,86,11,32341,4233 +2020,35,2001,146,141596,1102,11,5685,136,121,15,31850,5522 +2020,35,2002,182,176355,1372,14,7080,170,150,18,38739,6878 +2020,35,2003,235,228391,1777,18,9169,220,195,24,48773,8908 +2020,35,2004,228,161088,1208,17,7275,213,188,23,42949,8624 +2020,35,2005,291,205549,1541,22,9283,272,240,30,53329,11005 +2020,35,2006,833,238261,1781,26,10757,315,279,34,54414,12756 +2020,35,2007,900,257615,1925,28,11631,341,301,37,56928,13792 +2020,35,2008,770,140889,970,24,9304,292,258,32,43027,11800 +2020,35,2009,657,120089,827,20,7931,248,220,27,35379,10058 +2020,35,2010,316,57815,398,10,3819,120,106,13,16338,4844 +2020,35,2011,435,79597,548,14,5260,165,146,18,20854,6671 +2020,35,2012,676,123521,850,21,8165,256,226,28,30925,10355 +2020,35,2013,699,127749,879,22,8447,265,234,29,30400,10713 +2020,35,2014,901,164657,1133,28,10887,341,302,37,37114,13808 +2020,35,2015,1060,193671,1333,33,12806,401,355,44,41094,16241 +2020,35,2016,1265,231056,1590,39,15278,479,423,52,45249,19376 +2020,35,2017,1553,283720,1952,48,18760,588,520,64,51281,23792 +2020,35,2018,2550,465856,3206,79,30803,965,853,105,76002,39065 +2020,35,2019,3412,623224,4289,106,41209,1291,1142,140,89642,52262 +2020,35,2020,6376,1164739,8015,198,77015,2412,2134,262,134595,97671 +2020,36,1990,290,380821,3521,58,15283,371,328,34,251988,16147 +2020,36,1991,24,23598,218,4,947,23,20,2,14588,1001 +2020,36,1992,32,31022,287,5,1245,30,27,3,18003,1315 +2020,36,1993,47,45166,418,7,1813,44,39,5,25007,1915 +2020,36,1994,57,59592,537,8,2209,54,47,6,28670,2330 +2020,36,1995,75,78124,703,11,2896,70,62,8,35074,3055 +2020,36,1996,97,101497,914,11,3762,91,81,10,42822,3968 +2020,36,1997,114,119587,1076,13,4432,107,95,12,46981,4675 +2020,36,1998,150,156602,1409,17,5803,141,124,16,49683,6120 +2020,36,1999,209,218938,1970,24,8111,196,174,23,65568,8555 +2020,36,2000,286,299463,2693,33,11091,269,238,31,87872,11699 +2020,36,2001,373,382101,3506,43,14376,373,330,40,77164,15261 +2020,36,2002,465,475899,4367,54,17905,465,411,50,94093,19007 +2020,36,2003,602,616319,5655,70,23188,602,532,65,118834,24615 +2020,36,2004,583,435271,3862,68,18411,583,515,63,102840,23832 +2020,36,2005,744,555410,4928,86,23493,744,658,80,128033,30410 +2020,36,2006,2129,643800,5649,100,27201,862,762,93,123273,35250 +2020,36,2007,2302,696094,6108,108,29410,932,824,101,129595,38113 +2020,36,2008,1969,383290,3115,92,23548,797,705,86,95172,32607 +2020,36,2009,1678,326702,2655,79,20071,680,601,73,78612,27793 +2020,36,2010,808,157135,1276,38,9666,327,289,35,36491,13385 +2020,36,2011,1113,216126,1755,52,13312,450,398,49,45756,18434 +2020,36,2012,1728,335063,2720,81,20664,699,618,75,68330,28614 +2020,36,2013,1788,346196,2810,84,21378,723,639,78,67726,29603 +2020,36,2014,2304,446215,3622,108,27555,932,824,101,83467,38156 +2020,36,2015,2710,524842,4260,127,32410,1096,969,118,93442,44879 +2020,36,2016,3233,626155,5083,152,38667,1307,1156,141,104223,53542 +2020,36,2017,3970,768871,6241,186,47480,1605,1420,173,120108,65746 +2020,36,2018,6519,1262455,10248,306,77960,2636,2332,285,181925,107952 +2020,36,2019,8721,1688916,13709,409,104295,3526,3119,381,221324,144419 +2020,36,2020,16299,3156405,25621,765,194916,6590,5830,712,353045,269903 +2020,37,1990,45,59482,498,7,2220,57,50,5,30097,2496 +2020,37,1991,4,3686,31,0,138,4,3,0,1748,155 +2020,37,1992,5,4845,41,1,181,5,4,0,2163,203 +2020,37,1993,7,7055,59,1,263,7,6,1,3010,296 +2020,37,1994,9,9317,76,1,321,8,7,1,3465,360 +2020,37,1995,12,12214,100,1,421,11,9,1,4253,472 +2020,37,1996,15,15870,129,1,547,14,12,2,5223,613 +2020,37,1997,18,18700,152,2,644,16,15,2,5723,723 +2020,37,1998,23,24490,200,2,843,21,19,2,5864,946 +2020,37,1999,33,34243,279,3,1178,30,27,3,7690,1322 +2020,37,2000,45,46842,382,4,1611,41,36,5,10326,1808 +2020,37,2001,58,59301,477,5,2070,57,50,6,9943,2359 +2020,37,2002,73,73858,595,6,2578,71,62,8,12144,2938 +2020,37,2003,94,95651,770,8,3338,91,81,10,15367,3805 +2020,37,2004,91,67457,523,8,2648,88,78,10,13245,3684 +2020,37,2005,116,86075,667,10,3380,113,100,12,16520,4701 +2020,37,2006,333,99774,772,12,3916,131,116,14,16790,5449 +2020,37,2007,360,107878,835,13,4234,141,125,15,17683,5892 +2020,37,2008,308,58872,416,11,3387,121,107,13,12958,5040 +2020,37,2009,263,50180,355,9,2887,103,91,11,10725,4296 +2020,37,2010,127,24161,171,5,1390,50,44,5,4992,2069 +2020,37,2011,174,33266,235,6,1915,68,61,7,6402,2849 +2020,37,2012,271,51627,365,10,2972,106,94,11,9586,4423 +2020,37,2013,280,53399,378,10,3075,110,97,12,9531,4576 +2020,37,2014,361,68826,487,13,3963,142,125,15,11783,5898 +2020,37,2015,424,80954,572,15,4661,167,147,18,13238,6937 +2020,37,2016,506,96581,683,18,5561,199,176,21,14838,8277 +2020,37,2017,622,118595,839,22,6829,244,216,26,17188,10163 +2020,37,2018,1021,194727,1377,36,11213,401,354,43,26214,16687 +2020,37,2019,1366,260507,1842,49,15000,536,474,58,32178,22324 +2020,37,2020,2552,486860,3442,91,28034,1001,886,108,52189,41722 +2020,38,1990,30,40916,342,5,1697,38,34,3,18728,1667 +2020,38,1991,3,2535,21,0,105,2,2,0,1088,103 +2020,38,1992,3,3333,28,0,138,3,3,0,1347,136 +2020,38,1993,5,4853,41,1,201,5,4,0,1876,198 +2020,38,1994,6,6402,52,1,245,6,5,1,2161,241 +2020,38,1995,8,8393,68,1,322,7,6,1,2655,315 +2020,38,1996,10,10904,89,1,418,9,8,1,3292,410 +2020,38,1997,12,12849,104,1,492,11,10,1,3635,483 +2020,38,1998,15,16827,137,2,644,14,13,2,3965,632 +2020,38,1999,22,23527,191,2,901,20,18,2,5277,883 +2020,38,2000,29,32183,261,3,1232,28,24,3,7083,1208 +2020,38,2001,38,39853,318,4,1620,38,33,4,6295,1576 +2020,38,2002,48,49637,397,5,2018,47,42,5,7690,1962 +2020,38,2003,62,64283,514,6,2613,61,54,7,9734,2541 +2020,38,2004,60,45426,352,6,2075,59,52,6,8364,2461 +2020,38,2005,77,57964,449,7,2647,75,67,8,10435,3140 +2020,38,2006,219,67189,513,9,3066,87,77,9,10195,3639 +2020,38,2007,237,72646,555,9,3315,94,83,10,10748,3935 +2020,38,2008,203,39923,282,8,2652,81,71,9,7814,3367 +2020,38,2009,173,34029,240,7,2261,69,61,7,6474,2870 +2020,38,2010,83,16360,115,3,1089,33,29,4,3015,1382 +2020,38,2011,115,22492,158,5,1499,46,40,5,3813,1903 +2020,38,2012,178,34854,245,7,2327,71,63,8,5716,2954 +2020,38,2013,184,35996,253,7,2408,73,65,8,5691,3056 +2020,38,2014,237,46396,326,9,3103,94,83,10,7051,3939 +2020,38,2015,279,54571,383,11,3650,111,98,12,7942,4634 +2020,38,2016,333,65105,457,13,4355,132,117,14,8944,5528 +2020,38,2017,409,79944,561,16,5347,162,144,18,10396,6788 +2020,38,2018,671,131264,921,26,8780,267,236,29,15937,11145 +2020,38,2019,897,175606,1233,35,11746,357,316,39,19676,14910 +2020,38,2020,1677,328189,2304,66,21953,667,590,72,32259,27866 +2020,39,1990,469,621987,5453,75,24236,590,522,53,256251,25867 +2020,39,1991,40,38541,338,5,1502,37,32,4,14932,1603 +2020,39,1992,52,50667,444,6,1974,48,42,5,18526,2107 +2020,39,1993,76,73769,647,9,2874,70,62,7,25845,3068 +2020,39,1994,92,97396,832,11,3503,85,75,9,29905,3733 +2020,39,1995,121,127685,1090,14,4593,112,99,12,36847,4894 +2020,39,1996,157,165905,1416,15,5966,145,128,16,45480,6357 +2020,39,1997,185,195494,1669,17,7028,171,151,19,50255,7489 +2020,39,1998,242,256034,2185,22,9201,224,198,25,54124,9805 +2020,39,1999,339,357997,3053,31,12861,312,276,36,71895,13705 +2020,39,2000,463,489730,4176,43,17587,427,378,49,96652,18741 +2020,39,2001,605,621825,5226,56,22740,598,529,64,91261,24447 +2020,39,2002,753,774469,6509,70,28322,745,659,80,111719,30449 +2020,39,2003,975,1002988,8430,90,36679,964,853,103,141762,39433 +2020,39,2004,944,707649,5736,87,29107,934,826,100,120338,38179 +2020,39,2005,1205,902966,7319,111,37141,1191,1054,127,150468,48716 +2020,39,2006,3448,1046669,8440,129,43029,1381,1222,148,151650,56469 +2020,39,2007,3728,1131687,9126,140,46524,1493,1321,160,160308,61056 +2020,39,2008,3189,617785,4556,119,37210,1277,1130,137,114743,52236 +2020,39,2009,2718,526576,3883,102,31717,1089,963,117,95314,44524 +2020,39,2010,1309,253454,1869,49,15274,524,464,56,44550,21442 +2020,39,2011,1803,348861,2572,67,21036,722,639,77,57130,29530 +2020,39,2012,2799,541239,3989,105,32654,1120,991,120,85985,45839 +2020,39,2013,2895,559633,4124,108,33782,1159,1025,124,85989,47423 +2020,39,2014,3732,721315,5316,140,43542,1494,1321,160,106993,61124 +2020,39,2015,4389,848417,6252,164,51214,1757,1554,188,121098,71895 +2020,39,2016,5237,1012191,7459,196,61101,2096,1854,224,137212,85773 +2020,39,2017,6430,1242895,9159,241,75027,2574,2277,276,160584,105323 +2020,39,2018,10558,2040782,15039,395,123191,4226,3739,453,248332,172936 +2020,39,2019,14125,2730164,20119,529,164805,5654,5002,605,310064,231354 +2020,39,2020,26398,5102395,37601,988,308004,10567,9347,1131,518605,432377 +2020,40,1990,400,542508,5070,74,19981,526,465,48,260850,23231 +2020,40,1991,34,33616,314,5,1238,33,29,3,15188,1439 +2020,40,1992,44,44193,413,6,1628,43,38,4,18834,1892 +2020,40,1993,65,64342,601,9,2370,62,55,7,26262,2755 +2020,40,1994,79,84976,774,11,2888,76,67,8,30348,3353 +2020,40,1995,103,111402,1014,14,3787,100,88,11,37367,4395 +2020,40,1996,134,144735,1317,14,4919,129,114,14,46157,5709 +2020,40,1997,158,170536,1552,17,5794,152,135,17,50760,6726 +2020,40,1998,207,223327,2032,22,7586,199,176,22,52670,8806 +2020,40,1999,289,312235,2840,31,10603,279,247,32,69346,12308 +2020,40,2000,395,427088,3883,42,14500,381,337,43,93237,16831 +2020,40,2001,516,554307,4993,55,18639,534,472,56,92771,21956 +2020,40,2002,642,690378,6219,69,23214,665,588,70,113524,27346 +2020,40,2003,832,894084,8054,89,30064,861,762,91,143986,35414 +2020,40,2004,806,630537,5470,86,23852,834,738,88,122969,34288 +2020,40,2005,1028,804571,6979,110,30436,1064,941,112,153705,43752 +2020,40,2006,2942,932613,8073,128,35270,1233,1091,130,158345,50714 +2020,40,2007,3181,1008368,8729,138,38135,1333,1180,141,167218,54834 +2020,40,2008,2722,549720,4338,118,30499,1141,1009,120,121081,46913 +2020,40,2009,2320,468560,3698,101,25996,972,860,103,100493,39987 +2020,40,2010,1117,225603,1780,49,12519,468,414,49,46930,19257 +2020,40,2011,1539,310626,2451,67,17242,645,570,68,60625,26521 +2020,40,2012,2388,482077,3804,104,26764,1001,885,106,91122,41168 +2020,40,2013,2471,498624,3934,107,27689,1035,916,109,90984,42590 +2020,40,2014,3185,642680,5071,138,35688,1335,1181,141,113003,54895 +2020,40,2015,3746,755925,5965,163,41977,1570,1389,166,127635,64568 +2020,40,2016,4469,901845,7116,194,50080,1873,1657,197,144147,77032 +2020,40,2017,5487,1107400,8738,239,61495,2300,2034,242,168223,94589 +2020,40,2018,9010,1818303,14348,392,100972,3776,3340,398,259129,155312 +2020,40,2019,12054,2432530,19194,524,135080,5052,4469,533,322066,207777 +2020,40,2020,22527,4546148,35872,980,252451,9441,8352,995,534275,388313 +2020,41,1990,536,727644,6727,104,31242,712,630,65,303145,31347 +2020,41,1991,45,45088,417,6,1936,44,39,4,17672,1942 +2020,41,1992,60,59274,548,8,2545,58,51,6,21946,2554 +2020,41,1993,87,86300,798,12,3705,84,75,9,30637,3718 +2020,41,1994,106,113920,1026,15,4516,103,91,11,35498,4524 +2020,41,1995,138,149349,1345,20,5921,135,119,14,43789,5931 +2020,41,1996,180,194015,1747,20,7691,175,155,19,54869,7704 +2020,41,1997,212,228579,2058,24,9060,206,182,23,60872,9075 +2020,41,1998,277,299308,2694,31,11862,270,239,30,67507,11882 +2020,41,1999,387,418416,3766,44,16580,377,334,43,90271,16608 +2020,41,2000,530,572260,5150,60,22672,516,457,58,121356,22711 +2020,41,2001,691,714771,6613,78,29273,657,581,76,116214,29626 +2020,41,2002,861,890230,8237,97,36459,819,724,95,142263,36899 +2020,41,2003,1115,1152906,10667,126,47217,1060,938,123,180515,47786 +2020,41,2004,1079,813806,7270,122,37476,1026,908,119,153419,46267 +2020,41,2005,1377,1038424,9277,155,47819,1310,1159,152,191831,59037 +2020,41,2006,3941,1203682,10663,180,55390,1518,1343,176,193820,68432 +2020,41,2007,4261,1301455,11529,195,59889,1642,1452,190,204852,73991 +2020,41,2008,3646,712196,5762,166,47899,1404,1242,162,146912,63302 +2020,41,2009,3107,607049,4911,142,40827,1197,1059,138,122019,53956 +2020,41,2010,1496,292086,2362,68,19662,576,510,67,57018,25985 +2020,41,2011,2061,401894,3250,94,27078,794,702,92,73191,35786 +2020,41,2012,3199,623297,5040,146,42033,1232,1090,143,110119,55550 +2020,41,2013,3310,644255,5209,151,43486,1274,1127,147,110080,57470 +2020,41,2014,4266,830385,6713,195,56049,1642,1453,190,136922,74073 +2020,41,2015,5018,976707,7896,229,65926,1931,1709,224,154911,87126 +2020,41,2016,5986,1165244,9421,273,78652,2304,2038,267,175713,103944 +2020,41,2017,7350,1430834,11568,336,96578,2829,2503,328,205501,127635 +2020,41,2018,12069,2349370,18994,551,158578,4646,4110,538,317725,209572 +2020,41,2019,16146,3142992,25410,737,212146,6215,5498,719,396213,280366 +2020,41,2020,30175,5873930,47489,1378,396478,11615,10275,1345,661440,523974 +2020,42,1990,248,343135,3190,48,13242,328,290,30,153098,14472 +2020,42,1991,21,21262,198,3,821,20,18,2,8918,897 +2020,42,1992,28,27952,260,4,1079,27,24,3,11065,1179 +2020,42,1993,40,40697,378,6,1570,39,34,4,15436,1716 +2020,42,1994,49,53732,487,7,1914,47,42,5,17859,2089 +2020,42,1995,64,70442,638,9,2509,62,55,7,22006,2738 +2020,42,1996,83,91525,829,9,3260,81,71,9,27190,3557 +2020,42,1997,98,107847,976,11,3840,95,84,10,30041,4190 +2020,42,1998,128,141241,1278,15,5027,124,110,14,32320,5485 +2020,42,1999,179,197485,1786,20,7027,174,154,20,42920,7667 +2020,42,2000,245,270148,2442,28,9609,238,210,27,57701,10485 +2020,42,2001,320,341403,3053,36,12348,328,290,35,54681,13677 +2020,42,2002,398,425211,3803,45,15380,408,361,44,66934,17035 +2020,42,2003,515,550675,4925,58,19918,528,467,57,84925,22061 +2020,42,2004,499,388527,3350,57,15806,512,453,55,72291,21360 +2020,42,2005,637,495763,4275,72,20169,653,578,70,90388,27255 +2020,42,2006,1822,574661,4932,84,23366,757,669,81,91283,31592 +2020,42,2007,1970,621340,5332,91,25264,818,724,88,96482,34159 +2020,42,2008,1686,339420,2659,77,20208,700,619,75,69367,29224 +2020,42,2009,1437,289309,2267,66,17225,597,528,64,57619,24910 +2020,42,2010,692,139251,1091,32,8295,287,254,31,26931,11996 +2020,42,2011,953,191667,1501,44,11424,396,350,42,34563,16521 +2020,42,2012,1479,297358,2329,68,17733,614,543,66,52016,25645 +2020,42,2013,1530,307463,2408,70,18346,635,562,68,52013,26532 +2020,42,2014,1973,396291,3104,91,23646,819,724,88,64710,34197 +2020,42,2015,2320,466122,3651,107,27813,963,852,103,73229,40223 +2020,42,2016,2768,556098,4355,127,33182,1149,1016,123,82964,47987 +2020,42,2017,3399,682849,5348,156,40745,1411,1248,151,97075,58924 +2020,42,2018,5581,1121209,8781,256,66902,2316,2049,249,150081,96751 +2020,42,2019,7467,1499956,11748,343,89502,3099,2741,332,187322,129434 +2020,42,2020,13954,2803259,21955,641,167269,5791,5123,621,313110,241899 +2020,44,1990,333,475736,5014,83,17233,466,412,44,188024,20666 +2020,44,1991,28,29479,311,5,1068,29,26,3,10968,1281 +2020,44,1992,37,38754,408,7,1404,38,34,4,13645,1683 +2020,44,1993,54,56423,595,10,2044,55,49,6,19074,2451 +2020,44,1994,66,74500,765,12,2491,67,59,7,22185,2983 +2020,44,1995,86,97669,1003,16,3266,88,78,10,27431,3910 +2020,44,1996,112,126895,1303,16,4242,114,101,13,33523,5079 +2020,44,1997,132,149518,1534,19,4997,135,119,15,37169,5983 +2020,44,1998,172,195806,2009,25,6543,177,156,20,40348,7833 +2020,44,1999,241,273763,2808,35,9145,247,218,28,53721,10949 +2020,44,2000,329,374471,3840,48,12506,337,298,38,72341,14973 +2020,44,2001,429,447715,5532,62,15945,435,385,50,72715,19532 +2020,44,2002,535,557619,6890,78,19860,542,479,62,89307,24326 +2020,44,2003,692,722152,8923,101,25719,702,621,81,113769,31504 +2020,44,2004,670,509543,6065,97,20410,680,601,78,93282,30502 +2020,44,2005,856,650181,7739,124,26043,867,767,100,117034,38921 +2020,44,2006,2449,753652,8940,144,30172,1005,889,116,119019,45115 +2020,44,2007,2647,814870,9667,156,32623,1087,961,125,126383,48780 +2020,44,2008,2265,445107,4794,133,26091,930,823,107,85595,41733 +2020,44,2009,1931,379392,4087,113,22239,793,701,91,71392,35572 +2020,44,2010,930,182602,1967,55,10710,382,338,44,33531,17131 +2020,44,2011,1280,251325,2708,75,14750,526,465,61,43209,23592 +2020,44,2012,1988,389897,4202,117,22896,816,722,94,65396,36623 +2020,44,2013,2056,403129,4345,121,23687,844,746,97,65810,37888 +2020,44,2014,2650,519594,5601,156,30530,1088,962,125,82435,48834 +2020,44,2015,3117,611153,6587,183,35910,1279,1132,147,94007,57439 +2020,44,2016,3719,729125,7859,219,42842,1526,1350,176,107507,68527 +2020,44,2017,4567,895312,9650,268,52606,1874,1658,216,127114,84146 +2020,44,2018,7499,1470065,15846,441,86377,3077,2722,355,199099,138164 +2020,44,2019,10032,1966656,21198,590,115556,4117,3642,474,252653,184836 +2020,44,2020,18748,3675478,39617,1102,215962,7694,6806,887,434390,345440 +2020,45,1990,647,910549,8944,141,31299,878,776,81,467086,38716 +2020,45,1991,55,56422,554,9,1939,54,48,6,27191,2399 +2020,45,1992,72,74174,729,11,2550,71,63,7,33722,3154 +2020,45,1993,105,107993,1061,17,3712,104,92,11,47025,4592 +2020,45,1994,127,142627,1365,20,4525,127,112,13,54341,5588 +2020,45,1995,167,186983,1789,27,5932,166,147,18,66913,7325 +2020,45,1996,217,242946,2324,27,7705,216,191,23,82739,9515 +2020,45,1997,255,286271,2738,32,9076,254,225,28,90980,11209 +2020,45,1998,334,374915,3584,42,11883,333,294,37,94282,14675 +2020,45,1999,467,524210,5010,59,16610,465,411,53,124091,20512 +2020,45,2000,639,717088,6851,81,22713,636,562,72,166851,28050 +2020,45,2001,833,907967,8575,106,29175,876,775,94,165543,36591 +2020,45,2002,1038,1130853,10680,132,36337,1091,966,117,202535,45573 +2020,45,2003,1344,1464527,13831,171,47059,1414,1250,152,256820,59021 +2020,45,2004,1302,1032788,9390,165,37335,1369,1211,147,220163,57143 +2020,45,2005,1661,1317847,11981,211,47640,1746,1545,187,275148,72915 +2020,45,2006,4754,1527573,13869,244,55208,2024,1791,217,283956,84519 +2020,45,2007,5140,1651654,14996,264,59693,2189,1936,235,299777,91385 +2020,45,2008,4397,900778,7440,226,47745,1873,1656,201,218295,78184 +2020,45,2009,3748,767789,6342,193,40696,1596,1412,171,181142,66641 +2020,45,2010,1805,369688,3054,93,19599,769,680,83,84575,32094 +2020,45,2011,2486,509030,4205,128,26991,1058,936,114,109312,44199 +2020,45,2012,3859,790016,6526,198,41898,1643,1453,176,164252,68609 +2020,45,2013,3992,817159,6751,205,43346,1700,1504,182,163949,70980 +2020,45,2014,5145,1053241,8701,264,55869,2191,1938,235,203545,91487 +2020,45,2015,6052,1238833,10234,311,65714,2577,2280,277,229799,107608 +2020,45,2016,7220,1477970,12210,371,78399,3074,2720,330,259392,128380 +2020,45,2017,8866,1814840,14993,456,96268,3775,3339,405,302527,157641 +2020,45,2018,14558,2979887,24617,748,158068,6198,5483,665,465637,258839 +2020,45,2019,19475,3986504,32933,1001,211464,8292,7335,890,578127,346276 +2020,45,2020,36398,7450352,61549,1870,395203,15497,13709,1664,957271,647154 +2020,46,1990,98,138216,1251,19,5257,130,115,12,51562,5716 +2020,46,1991,8,8565,78,1,326,8,7,1,3012,354 +2020,46,1992,11,11259,102,2,428,11,9,1,3746,466 +2020,46,1993,16,16393,148,2,623,15,14,2,5236,678 +2020,46,1994,19,21640,191,3,760,19,17,2,6082,825 +2020,46,1995,25,28370,250,4,996,25,22,3,7518,1081 +2020,46,1996,33,36860,325,4,1294,32,28,3,9349,1405 +2020,46,1997,39,43433,383,4,1524,38,33,4,10375,1655 +2020,46,1998,51,56881,501,6,1996,49,44,5,11394,2167 +2020,46,1999,71,79530,701,8,2790,69,61,8,15214,3028 +2020,46,2000,97,108789,958,11,3815,94,83,11,20475,4141 +2020,46,2001,126,135199,1170,14,5016,129,114,14,19443,5402 +2020,46,2002,157,168387,1458,17,6248,161,142,17,23834,6728 +2020,46,2003,204,218072,1888,23,8091,208,184,22,30292,8713 +2020,46,2004,197,153917,1285,22,6421,201,178,22,25618,8436 +2020,46,2005,252,196400,1640,28,8194,257,227,28,32082,10765 +2020,46,2006,721,227656,1890,32,9492,298,264,32,32557,12478 +2020,46,2007,779,246148,2043,35,10263,322,285,35,34484,13491 +2020,46,2008,667,134489,1018,30,8208,276,244,30,24566,11542 +2020,46,2009,568,114633,868,25,6996,235,208,25,20452,9838 +2020,46,2010,274,55160,417,12,3369,113,100,12,9583,4738 +2020,46,2011,377,75903,574,17,4640,156,138,17,12346,6525 +2020,46,2012,585,117725,890,26,7203,242,214,26,18635,10129 +2020,46,2013,605,121692,920,27,7452,250,221,27,18697,10479 +2020,46,2014,780,156849,1186,35,9605,322,285,35,23348,13506 +2020,46,2015,917,184488,1395,41,11297,379,335,41,26533,15886 +2020,46,2016,1094,220100,1664,49,13478,452,400,49,30241,18953 +2020,46,2017,1344,270267,2044,60,16550,555,491,60,35586,23273 +2020,46,2018,2207,443766,3356,99,27174,912,806,98,55432,38213 +2020,46,2019,2952,593673,4490,132,36353,1220,1079,131,69818,51122 +2020,46,2020,5517,1109512,8391,248,67940,2279,2016,246,118559,95541 +2020,47,1990,172,229253,1947,26,8814,218,193,20,93201,9633 +2020,47,1991,15,14206,121,2,546,14,12,1,5432,597 +2020,47,1992,19,18675,159,2,718,18,16,2,6740,785 +2020,47,1993,28,27190,231,3,1045,26,23,3,9404,1142 +2020,47,1994,34,35907,297,4,1274,31,28,3,10881,1390 +2020,47,1995,44,47074,390,5,1670,41,37,4,13408,1823 +2020,47,1996,58,61163,506,5,2170,54,47,6,16638,2367 +2020,47,1997,68,72071,596,6,2556,63,56,7,18352,2789 +2020,47,1998,89,94388,780,8,3346,83,73,9,19462,3651 +2020,47,1999,124,131973,1091,11,4677,116,102,13,25762,5104 +2020,47,2000,170,180532,1491,15,6396,158,140,18,34640,6979 +2020,47,2001,222,228456,1866,20,8217,218,193,23,33900,9104 +2020,47,2002,276,284537,2324,24,10234,271,240,29,41487,11339 +2020,47,2003,358,368493,3010,32,13254,352,311,38,52626,14685 +2020,47,2004,347,259897,2045,31,10516,340,301,37,44842,14218 +2020,47,2005,442,331631,2609,39,13418,434,384,47,56055,18142 +2020,47,2006,1266,384409,3016,45,15549,503,445,54,57487,21029 +2020,47,2007,1368,415633,3261,49,16812,544,482,58,60722,22737 +2020,47,2008,1171,226536,1620,42,13443,466,412,50,43783,19453 +2020,47,2009,998,193091,1381,36,11458,397,351,43,36344,16581 +2020,47,2010,481,92963,665,17,5518,191,169,21,16975,7985 +2020,47,2011,662,127990,915,24,7600,263,233,28,21895,10997 +2020,47,2012,1027,198621,1420,37,11797,409,361,44,32918,17070 +2020,47,2013,1063,205424,1469,38,12205,423,374,45,32878,17660 +2020,47,2014,1370,264772,1893,49,15731,545,482,59,40848,22763 +2020,47,2015,1611,311429,2227,58,18502,641,567,69,46156,26774 +2020,47,2016,1922,371545,2657,69,22074,764,676,82,52190,31942 +2020,47,2017,2360,456229,3262,85,27105,939,830,101,60937,39222 +2020,47,2018,3876,749109,5356,139,44506,1541,1363,166,93955,64401 +2020,47,2019,5185,1002160,7165,186,59540,2062,1824,222,116862,86156 +2020,47,2020,9690,1872931,13391,347,111274,3854,3409,414,194147,161016 +2020,48,1990,266,346073,3047,39,12455,337,298,30,147303,14876 +2020,48,1991,22,21444,189,2,772,21,18,2,8581,922 +2020,48,1992,30,28191,248,3,1015,27,24,3,10644,1212 +2020,48,1993,43,41045,361,5,1477,40,35,4,14845,1764 +2020,48,1994,52,54215,465,6,1800,49,43,5,17169,2147 +2020,48,1995,69,71075,610,7,2360,64,56,7,21146,2815 +2020,48,1996,89,92331,792,8,3066,83,73,9,25972,3656 +2020,48,1997,105,108779,933,9,3612,97,86,11,28491,4307 +2020,48,1998,137,142438,1221,12,4729,128,113,14,28815,5639 +2020,48,1999,192,199119,1707,16,6609,178,158,20,37710,7882 +2020,48,2000,263,272329,2334,23,9038,244,216,28,50730,10778 +2020,48,2001,343,350619,3294,29,11824,346,306,36,53380,14060 +2020,48,2002,427,436688,4103,37,14727,431,381,45,65393,17511 +2020,48,2003,553,565539,5314,47,19072,558,493,58,83049,22678 +2020,48,2004,535,398765,3606,46,15130,540,478,56,69869,21957 +2020,48,2005,683,508826,4601,59,19306,689,609,72,87424,28017 +2020,48,2006,1954,589804,5330,68,22375,798,706,83,91286,32476 +2020,48,2007,2113,637712,5763,74,24193,863,764,90,96516,35113 +2020,48,2008,1808,347078,2856,63,19343,739,653,77,68409,30041 +2020,48,2009,1541,295837,2434,54,16487,630,557,66,56823,25606 +2020,48,2010,742,142459,1172,26,7940,303,268,32,26563,12332 +2020,48,2011,1022,196174,1614,36,10935,418,369,44,34484,16983 +2020,48,2012,1587,304494,2506,55,16975,648,573,68,51886,26362 +2020,48,2013,1641,314988,2592,57,17561,670,593,70,51870,27273 +2020,48,2014,2116,405990,3341,74,22635,864,764,90,64504,35153 +2020,48,2015,2488,477529,3929,87,26623,1016,899,106,72960,41347 +2020,48,2016,2969,569710,4688,103,31762,1213,1073,127,82484,49328 +2020,48,2017,3645,699562,5757,127,39002,1489,1317,156,96460,60572 +2020,48,2018,5985,1148648,9452,208,64039,2445,2163,256,148929,99456 +2020,48,2019,8007,1536667,12645,279,85672,3271,2894,342,185742,133052 +2020,48,2020,14965,2871874,23632,521,160111,6113,5408,639,309961,248661 +2020,49,1990,574,741777,6526,97,31942,720,637,66,351959,31700 +2020,49,1991,48,45964,404,6,1979,45,39,5,20469,1964 +2020,49,1992,64,60426,532,8,2602,59,52,6,25355,2582 +2020,49,1993,93,87976,774,12,3788,85,76,9,35325,3760 +2020,49,1994,113,116137,995,14,4618,104,92,11,40753,4575 +2020,49,1995,148,152255,1305,18,6054,136,121,15,50105,5998 +2020,49,1996,192,197791,1695,19,7863,177,157,20,62768,7791 +2020,49,1997,227,233027,1997,22,9263,208,184,23,69247,9178 +2020,49,1998,297,305133,2614,29,12127,273,241,31,74675,12016 +2020,49,1999,415,426557,3654,41,16951,381,337,44,99146,16795 +2020,49,2000,567,583396,4996,56,23180,522,461,60,133132,22967 +2020,49,2001,740,728867,6415,73,29927,664,588,79,127343,29960 +2020,49,2002,921,907788,7989,91,37274,827,732,98,155603,37315 +2020,49,2003,1193,1175644,10347,118,48272,1071,948,127,197009,48325 +2020,49,2004,1155,829784,7050,114,38310,1037,918,123,169220,46788 +2020,49,2005,1474,1058811,8996,145,48884,1324,1171,157,211168,59702 +2020,49,2006,4219,1227315,10347,168,56628,1534,1357,182,213082,69203 +2020,49,2007,4562,1327006,11188,182,61228,1659,1468,197,224579,74824 +2020,49,2008,3903,726597,5608,156,48973,1419,1256,168,163628,64015 +2020,49,2009,3326,619324,4780,133,41743,1210,1070,144,135520,54564 +2020,49,2010,1602,298011,2299,64,20103,583,515,69,63116,26278 +2020,49,2011,2206,410073,3163,88,27685,802,710,95,80780,36189 +2020,49,2012,3425,636025,4904,137,42976,1245,1101,148,121056,56176 +2020,49,2013,3543,657454,5069,142,44461,1288,1139,153,120468,58117 +2020,49,2014,4567,847397,6533,182,57306,1659,1468,197,149104,74908 +2020,49,2015,5371,996716,7684,215,67404,1952,1727,232,167747,88107 +2020,49,2016,6408,1189118,9167,256,80415,2329,2060,277,188763,105115 +2020,49,2017,7869,1460147,11257,314,98744,2859,2530,340,219039,129073 +2020,49,2018,12920,2397501,18483,516,162133,4695,4153,558,335148,211933 +2020,49,2019,17285,3207385,24727,690,216902,6281,5556,746,412551,283524 +2020,49,2020,32304,5994264,46212,1290,405368,11739,10384,1395,672869,529878 +2020,50,1990,283,371172,3317,47,15390,360,318,33,151651,15791 +2020,50,1991,24,23000,206,3,954,22,20,2,8811,978 +2020,50,1992,31,30236,270,4,1254,29,26,3,10918,1286 +2020,50,1993,46,44022,393,6,1825,43,38,4,15215,1873 +2020,50,1994,56,58105,506,7,2225,52,46,6,17583,2279 +2020,50,1995,73,76175,663,9,2917,68,60,7,21630,2988 +2020,50,1996,95,98964,861,9,3789,88,78,10,26497,3881 +2020,50,1997,112,116602,1014,11,4463,104,92,12,29273,4572 +2020,50,1998,146,152693,1328,14,5843,136,121,15,31783,5986 +2020,50,1999,204,213474,1856,20,8167,191,169,22,42258,8366 +2020,50,2000,279,291988,2539,27,11169,261,230,30,56770,11441 +2020,50,2001,364,373265,3309,35,14479,362,320,39,51739,14924 +2020,50,2002,454,464892,4121,44,18034,451,399,48,63324,18588 +2020,50,2003,588,602066,5337,57,23355,584,517,63,80333,24073 +2020,50,2004,569,424988,3638,55,18537,565,500,61,67264,23307 +2020,50,2005,726,542289,4642,71,23654,721,638,77,84059,29740 +2020,50,2006,2078,628591,5338,82,27398,836,740,90,82504,34473 +2020,50,2007,2247,679649,5772,89,29623,904,800,97,87193,37273 +2020,50,2008,1922,371799,2896,76,23696,774,684,83,60777,31889 +2020,50,2009,1638,316907,2468,65,20197,659,583,71,50436,27181 +2020,50,2010,789,152480,1187,31,9727,317,281,34,23541,13090 +2020,50,2011,1087,209802,1632,43,13396,437,387,47,29806,18027 +2020,50,2012,1687,325379,2531,66,20794,678,600,73,44803,27984 +2020,50,2013,1745,336317,2615,69,21513,702,621,75,44741,28951 +2020,50,2014,2249,433481,3371,89,27728,904,800,97,55597,37315 +2020,50,2015,2646,509864,3965,104,32614,1064,941,114,62832,43890 +2020,50,2016,3156,608286,4730,124,38909,1269,1122,136,71007,52362 +2020,50,2017,3876,746929,5809,153,47777,1558,1378,167,82935,64297 +2020,50,2018,6364,1226427,9537,251,78449,2558,2263,275,127883,105573 +2020,50,2019,8514,1640718,12759,335,104949,3423,3028,367,159158,141235 +2020,50,2020,15912,3066327,23846,627,196138,6396,5658,686,264655,263954 +2020,51,1990,92,122647,1041,14,4693,117,103,11,49694,5156 +2020,51,1991,8,7600,65,1,291,7,6,1,2897,320 +2020,51,1992,10,9991,85,1,382,10,8,1,3595,420 +2020,51,1993,15,14546,123,2,557,14,12,1,5016,612 +2020,51,1994,18,19211,159,2,678,17,15,2,5804,744 +2020,51,1995,24,25185,208,3,889,22,20,2,7154,976 +2020,51,1996,31,32723,271,3,1155,29,25,3,8809,1267 +2020,51,1997,36,38558,319,3,1361,34,30,4,9708,1493 +2020,51,1998,48,50498,417,4,1782,44,39,5,10206,1954 +2020,51,1999,67,70607,583,6,2491,62,55,7,13484,2732 +2020,51,2000,91,96586,798,8,3406,85,75,10,18135,3736 +2020,51,2001,119,122263,998,10,4376,117,103,13,17720,4873 +2020,51,2002,148,152276,1243,13,5450,145,128,16,21695,6070 +2020,51,2003,192,197207,1610,17,7058,188,166,20,27534,7860 +2020,51,2004,185,139079,1093,16,5600,182,161,20,23413,7610 +2020,51,2005,237,177466,1395,21,7145,232,206,25,29282,9711 +2020,51,2006,677,205709,1614,24,8280,269,238,29,30027,11256 +2020,51,2007,732,222419,1745,26,8953,291,258,31,31740,12171 +2020,51,2008,627,121196,866,22,7159,249,220,27,22818,10413 +2020,51,2009,534,103302,738,19,6102,212,188,23,18955,8875 +2020,51,2010,257,49737,355,9,2939,102,90,11,8862,4274 +2020,51,2011,354,68481,489,13,4047,141,125,15,11437,5886 +2020,51,2012,550,106278,759,20,6282,219,193,24,17214,9138 +2020,51,2013,569,109924,785,20,6499,226,200,24,17214,9453 +2020,51,2014,733,141681,1012,26,8377,292,258,31,21415,12184 +2020,51,2015,862,166647,1191,31,9853,343,303,37,24233,14331 +2020,51,2016,1029,198816,1421,37,11755,409,362,44,27439,17098 +2020,51,2017,1264,244132,1744,45,14434,502,444,54,32105,20995 +2020,51,2018,2075,400852,2864,74,23700,825,730,89,49623,34473 +2020,51,2019,2775,536262,3832,99,31706,1103,976,119,61939,46118 +2020,51,2020,5187,1002218,7161,185,59256,2062,1824,222,103528,86189 +2020,53,1990,379,491867,4384,68,20746,478,423,44,273774,21057 +2020,53,1991,32,30478,272,4,1286,30,26,3,15891,1305 +2020,53,1992,42,40068,357,6,1690,39,34,4,19650,1715 +2020,53,1993,61,58336,520,8,2461,57,50,6,27340,2497 +2020,53,1994,75,77017,669,10,2999,69,61,7,31447,3039 +2020,53,1995,98,100968,876,13,3932,90,80,10,38577,3984 +2020,53,1996,127,131165,1138,13,5107,117,104,13,47721,5175 +2020,53,1997,150,154533,1341,16,6016,138,122,16,52429,6096 +2020,53,1998,196,202349,1756,21,7877,181,160,21,55230,7982 +2020,53,1999,274,282873,2454,29,11009,253,224,29,72886,11156 +2020,53,2000,375,386880,3356,39,15055,346,306,40,97803,15256 +2020,53,2001,489,483699,4310,51,19437,441,390,52,92106,19901 +2020,53,2002,609,602436,5368,64,24208,549,486,65,112441,24787 +2020,53,2003,789,780194,6952,83,31351,711,629,85,142202,32100 +2020,53,2004,764,550564,4733,80,24881,688,609,82,122844,31079 +2020,53,2005,974,702525,6039,102,31748,879,777,104,153142,39657 +2020,53,2006,2789,814327,6956,119,36779,1018,901,121,153371,45969 +2020,53,2007,3016,880474,7521,128,39766,1101,974,131,161439,49703 +2020,53,2008,2580,482641,3778,110,31814,942,833,112,118577,42523 +2020,53,2009,2199,411384,3220,93,27117,803,710,95,98086,36245 +2020,53,2010,1059,197982,1550,45,13059,387,342,46,45619,17455 +2020,53,2011,1458,272468,2132,62,17985,532,471,63,58160,24039 +2020,53,2012,2264,422661,3308,96,27918,826,731,98,87018,37315 +2020,53,2013,2342,436965,3420,100,28882,855,756,102,86434,38605 +2020,53,2014,3019,563206,4407,128,37227,1102,975,131,106754,49758 +2020,53,2015,3551,662448,5184,151,43786,1296,1146,154,119810,58526 +2020,53,2016,4236,790324,6185,180,52239,1546,1368,184,134236,69823 +2020,53,2017,5202,970458,7594,221,64145,1898,1679,226,155241,85738 +2020,53,2018,8541,1593452,12470,363,105324,3117,2757,371,236360,140778 +2020,53,2019,11426,2131726,16682,486,140902,4170,3689,496,289293,188333 +2020,53,2020,21355,3983973,31177,908,263332,7793,6893,927,466813,351975 +2020,54,1990,98,130965,1129,15,5155,124,110,11,50669,5458 +2020,54,1991,8,8115,70,1,319,8,7,1,2955,338 +2020,54,1992,11,10669,92,1,420,10,9,1,3669,445 +2020,54,1993,16,15533,134,2,611,15,13,2,5121,647 +2020,54,1994,19,20510,172,2,745,18,16,2,5932,788 +2020,54,1995,25,26888,226,3,977,23,21,3,7316,1033 +2020,54,1996,33,34937,293,3,1269,30,27,3,9075,1341 +2020,54,1997,39,41168,345,3,1495,36,32,4,10037,1580 +2020,54,1998,50,53916,452,5,1957,47,42,5,10848,2069 +2020,54,1999,70,75388,632,6,2736,66,58,7,14425,2891 +2020,54,2000,96,103128,864,9,3741,90,79,10,19399,3954 +2020,54,2001,126,131030,1082,11,4837,126,111,13,18643,5158 +2020,54,2002,157,163195,1348,14,6024,156,138,17,22827,6424 +2020,54,2003,203,211348,1746,18,7801,202,179,21,28973,8320 +2020,54,2004,196,149093,1187,18,6190,196,173,21,24559,8055 +2020,54,2005,251,190244,1515,22,7899,250,221,26,30716,10278 +2020,54,2006,717,220520,1748,26,9152,290,256,31,31230,11914 +2020,54,2007,775,238433,1890,28,9896,313,277,33,33018,12882 +2020,54,2008,663,130024,941,24,7913,268,237,28,23600,11021 +2020,54,2009,565,110828,802,20,6745,229,202,24,19607,9394 +2020,54,2010,272,53350,386,10,3248,110,97,12,9166,4524 +2020,54,2011,375,73440,531,14,4474,152,134,16,11793,6230 +2020,54,2012,582,113951,825,21,6944,235,208,25,17752,9671 +2020,54,2013,602,117837,853,22,7184,243,215,26,17755,10006 +2020,54,2014,776,151881,1099,28,9260,314,277,33,22094,12896 +2020,54,2015,913,178643,1293,33,10892,369,326,39,25010,15169 +2020,54,2016,1089,213128,1542,39,12994,440,389,47,28354,18097 +2020,54,2017,1337,261705,1894,48,15956,540,478,57,33188,22222 +2020,54,2018,2196,429709,3109,79,26198,887,785,94,51340,36487 +2020,54,2019,2938,574865,4160,106,35048,1187,1050,126,64112,48813 +2020,54,2020,5490,1074363,7774,199,65502,2219,1963,235,107269,91225 +2020,55,1990,241,328302,2721,38,13087,307,271,28,123599,13484 +2020,55,1991,20,20343,169,2,811,19,17,2,7205,836 +2020,55,1992,27,26744,222,3,1066,25,22,3,8944,1098 +2020,55,1993,39,38937,323,4,1552,36,32,4,12482,1599 +2020,55,1994,47,51401,415,5,1892,44,39,5,14454,1946 +2020,55,1995,62,67386,544,7,2480,58,51,6,17821,2551 +2020,55,1996,81,87553,707,7,3222,75,67,8,21988,3314 +2020,55,1997,95,103165,832,9,3795,89,78,10,24337,3904 +2020,55,1998,125,135107,1090,11,4969,116,103,13,26489,5111 +2020,55,1999,174,188904,1523,16,6945,162,144,18,35276,7144 +2020,55,2000,238,258404,2083,22,9497,222,196,25,47430,9770 +2020,55,2001,311,321150,2544,28,12489,304,269,33,43851,12744 +2020,55,2002,387,399986,3169,35,15555,379,335,41,53698,15873 +2020,55,2003,501,518007,4104,46,20145,491,434,53,68163,20556 +2020,55,2004,485,365614,2795,44,15987,475,420,51,57819,19903 +2020,55,2005,619,466527,3567,56,20400,606,536,65,72322,25396 +2020,55,2006,1771,540771,4106,65,23632,703,622,76,72358,29438 +2020,55,2007,1915,584698,4440,70,25552,760,672,82,76541,31829 +2020,55,2008,1639,319632,2221,60,20436,650,575,70,54683,27231 +2020,55,2009,1397,272442,1893,51,17419,554,490,60,45458,23210 +2020,55,2010,673,131096,910,25,8389,267,236,29,21263,11178 +2020,55,2011,926,180393,1252,34,11553,367,325,40,27214,15394 +2020,55,2012,1438,279792,1942,53,17933,570,504,62,41002,23896 +2020,55,2013,1488,289219,2007,55,18553,590,522,64,41053,24722 +2020,55,2014,1918,372777,2587,71,23913,760,672,82,51151,31864 +2020,55,2015,2255,438463,3042,83,28127,894,791,97,57985,37479 +2020,55,2016,2691,523101,3630,99,33556,1066,943,115,65838,44714 +2020,55,2017,3304,642330,4457,122,41204,1310,1158,141,77218,54905 +2020,55,2018,5425,1054679,7318,200,67656,2150,1902,232,119745,90152 +2020,55,2019,7258,1410952,9791,267,90510,2877,2545,311,150032,120605 +2020,55,2020,13564,2636924,18297,499,169154,5376,4756,581,252461,225398 +2020,56,1990,338,462112,4434,73,18955,454,401,42,240635,19898 +2020,56,1991,29,28635,275,5,1175,28,25,3,13988,1233 +2020,56,1992,37,37644,361,6,1544,37,33,4,17328,1621 +2020,56,1993,55,54807,526,9,2248,54,48,6,24143,2360 +2020,56,1994,66,72334,676,11,2740,65,58,7,27852,2872 +2020,56,1995,87,94829,886,14,3592,86,76,9,34246,3765 +2020,56,1996,113,123190,1151,14,4666,112,99,12,43009,4890 +2020,56,1997,133,145137,1356,17,5497,131,116,14,47515,5761 +2020,56,1998,174,190046,1776,22,7197,172,152,19,51862,7542 +2020,56,1999,244,265674,2482,31,10059,240,213,27,69040,10542 +2020,56,2000,334,363358,3394,42,13756,329,291,37,92694,14416 +2020,56,2001,435,453414,4356,55,17758,419,370,49,87882,18806 +2020,56,2002,542,564717,5426,68,22117,521,461,61,107370,23422 +2020,56,2003,702,731345,7027,88,28643,675,597,78,135919,30333 +2020,56,2004,679,516406,4794,85,22737,654,578,76,116949,29369 +2020,56,2005,867,658939,6117,109,29012,834,738,97,145921,37475 +2020,56,2006,2481,763805,7022,126,33600,967,855,112,146544,43439 +2020,56,2007,2683,825847,7592,137,36330,1045,925,121,154429,46967 +2020,56,2008,2295,453198,3816,117,29067,894,791,104,112769,40182 +2020,56,2009,1956,386288,3252,100,24775,762,674,89,93389,34250 +2020,56,2010,942,185821,1564,48,11932,367,325,43,43485,16494 +2020,56,2011,1298,255617,2150,66,16432,505,447,59,55557,22716 +2020,56,2012,2014,396342,3333,103,25507,784,694,91,83241,35262 +2020,56,2013,2084,409570,3444,106,26389,811,717,94,82819,36480 +2020,56,2014,2686,527898,4439,137,34013,1045,925,122,102490,47019 +2020,56,2015,3159,620918,5222,161,40006,1229,1087,143,115285,55305 +2020,56,2016,3769,740777,6229,192,47728,1467,1297,171,129758,65980 +2020,56,2017,4628,909620,7649,236,58607,1801,1593,209,150527,81019 +2020,56,2018,7599,1493555,12560,387,96230,2957,2616,344,230277,133030 +2020,56,2019,10166,1998085,16803,518,128737,3956,3499,460,283310,177968 +2020,56,2020,18999,3734208,31403,968,240596,7393,6540,860,461670,332603 +2025,1,1995,456,510040,4779,72,15966,452,400,48,292035,19961 +2025,1,1996,57,63426,594,7,1986,56,50,6,34113,2482 +2025,1,1997,68,75555,708,8,2365,67,59,7,37203,2957 +2025,1,1998,88,98579,924,11,3086,87,77,10,36894,3858 +2025,1,1999,129,144715,1356,16,4530,128,113,14,48523,5663 +2025,1,2000,187,209240,1961,23,6550,185,164,21,66030,8189 +2025,1,2001,252,273704,2531,32,8677,264,233,28,84176,11017 +2025,1,2002,322,350563,3241,40,11113,338,299,36,103185,14111 +2025,1,2003,425,461993,4272,53,14645,445,394,48,130573,18596 +2025,1,2004,407,322121,2867,51,11488,426,377,46,115415,17802 +2025,1,2005,514,406700,3620,64,14505,538,476,57,142880,22476 +2025,1,2006,1458,467484,4156,74,16669,618,547,66,122881,25835 +2025,1,2007,1553,498154,4429,79,17763,659,583,70,128127,27530 +2025,1,2008,1313,268821,2179,67,14044,557,493,60,96339,23276 +2025,1,2009,1107,226674,1838,56,11842,470,415,50,79085,19627 +2025,1,2010,522,106829,866,27,5582,221,196,24,36339,9252 +2025,1,2011,706,144502,1172,36,7552,299,265,32,43055,12516 +2025,1,2012,1075,219952,1783,55,11496,456,403,49,63585,19054 +2025,1,2013,1085,221883,1799,55,11599,460,407,49,62110,19225 +2025,1,2014,1350,276136,2239,69,14435,572,506,61,75002,23925 +2025,1,2015,1527,312418,2533,78,16332,647,573,69,81947,27069 +2025,1,2016,1723,352408,2858,88,18423,730,646,78,85249,30534 +2025,1,2017,1959,400741,3250,100,20949,830,735,89,93440,34722 +2025,1,2018,2874,587948,4768,146,30736,1218,1078,130,130758,50942 +2025,1,2019,3293,673693,5463,167,35218,1396,1235,149,143588,58371 +2025,1,2020,3846,786826,6380,195,41133,1631,1442,174,159119,68173 +2025,1,2021,4561,932967,7565,232,48772,1933,1710,207,179021,80836 +2025,1,2022,5486,1122251,9100,279,58667,2326,2057,249,201765,97236 +2025,1,2023,7127,1457943,11822,362,76216,3021,2673,323,244178,126322 +2025,1,2024,9733,1990866,16143,495,104076,4126,3650,441,304978,172496 +2025,1,2025,18396,3763120,30514,935,196723,7799,6899,834,498573,326050 +2025,4,1995,2378,2521362,24423,319,97345,2264,2003,244,1380998,99684 +2025,4,1996,296,313544,3037,32,12105,282,249,31,163152,12396 +2025,4,1997,352,373501,3618,38,14420,335,297,37,177943,14767 +2025,4,1998,460,487320,4720,49,18815,438,387,49,175566,19267 +2025,4,1999,675,715394,6930,72,27620,642,568,73,230851,28284 +2025,4,2000,976,1034366,10019,104,39935,929,822,106,314566,40894 +2025,4,2001,1313,1439676,15030,140,53542,1383,1224,143,413614,55019 +2025,4,2002,1681,1843955,19250,179,68577,1772,1568,183,508211,70469 +2025,4,2003,2216,2430070,25369,236,90375,2335,2066,241,644566,92868 +2025,4,2004,2121,1694310,17030,226,70890,2236,1978,231,563204,88903 +2025,4,2005,2678,2139184,21501,285,89503,2823,2497,291,697869,112246 +2025,4,2006,7601,2458896,24678,328,102861,3244,2870,335,626183,129021 +2025,4,2007,8100,2620222,26297,349,109610,3457,3058,357,653576,137486 +2025,4,2008,6848,1412310,12976,295,86625,2923,2586,302,484579,116243 +2025,4,2009,5775,1190881,10942,249,73044,2465,2180,254,398153,98018 +2025,4,2010,2722,561263,5157,117,34431,1162,1028,120,183111,46203 +2025,4,2011,3682,759200,6975,159,46580,1572,1390,162,221085,62506 +2025,4,2012,5606,1155628,10617,242,70913,2392,2116,247,326829,95158 +2025,4,2013,5656,1165797,10710,244,71547,2414,2135,249,319593,96010 +2025,4,2014,7039,1450847,13329,304,89041,3004,2657,310,386339,119485 +2025,4,2015,7964,1641476,15080,344,100740,3399,3007,351,422648,135184 +2025,4,2016,8984,1851591,17011,388,113635,3834,3391,396,443360,152488 +2025,4,2017,10216,2105533,19344,441,129220,4359,3856,450,486609,173402 +2025,4,2018,14988,3089141,28380,647,189586,6396,5658,660,682344,254407 +2025,4,2019,17174,3539655,32519,741,217235,7329,6483,756,750547,291509 +2025,4,2020,20058,4134066,37980,865,253715,8560,7572,883,833714,340462 +2025,4,2021,23784,4901910,45034,1026,300839,10149,8978,1047,940109,403698 +2025,4,2022,28609,5896420,54171,1234,361874,12208,10800,1260,1062898,485602 +2025,4,2023,37166,7660186,70374,1603,470119,15860,14030,1637,1290730,630857 +2025,4,2024,50752,10460230,96099,2189,641963,21658,19159,2235,1619606,861456 +2025,4,2025,95931,19771822,181644,4138,1213432,40937,36214,4224,2670130,1628314 +2025,5,1995,338,342677,2923,39,11834,305,270,33,181528,13388 +2025,5,1996,42,42614,363,4,1472,38,34,4,21019,1665 +2025,5,1997,50,50762,433,5,1753,45,40,5,22920,1983 +2025,5,1998,65,66231,565,6,2287,59,52,7,22827,2588 +2025,5,1999,96,97229,829,9,3358,87,77,10,30029,3799 +2025,5,2000,138,140580,1199,13,4855,125,111,15,40815,5492 +2025,5,2001,186,188326,1589,17,6436,181,160,20,52230,7389 +2025,5,2002,239,241210,2036,22,8243,232,205,25,63978,9464 +2025,5,2003,314,317881,2683,29,10863,306,270,33,80903,12473 +2025,5,2004,301,221680,1802,28,8522,292,259,32,71435,11940 +2025,5,2005,380,279887,2276,35,10760,369,327,40,88402,15075 +2025,5,2006,1079,321717,2608,40,12363,424,376,46,73296,17328 +2025,5,2007,1149,342825,2779,43,13175,452,400,49,76417,18465 +2025,5,2008,972,185088,1376,36,10416,382,338,41,57210,15612 +2025,5,2009,819,156068,1160,31,8783,322,285,35,46952,13164 +2025,5,2010,386,73544,547,14,4140,152,134,16,21568,6205 +2025,5,2011,523,99465,739,20,5601,206,182,22,25104,8395 +2025,5,2012,796,151380,1125,30,8527,313,277,34,37073,12780 +2025,5,2013,803,152689,1135,30,8603,316,279,34,36212,12895 +2025,5,2014,999,190023,1412,37,10707,393,348,42,43730,16048 +2025,5,2015,1130,214990,1597,42,12113,445,393,48,47780,18156 +2025,5,2016,1275,242509,1802,48,13664,502,444,54,49385,20480 +2025,5,2017,1450,275769,2049,54,15538,570,505,62,54144,23289 +2025,5,2018,2127,404596,3006,79,22797,837,740,90,75762,34168 +2025,5,2019,2437,463601,3445,91,26121,959,848,104,83225,39151 +2025,5,2020,2846,541453,4023,106,30508,1120,991,121,92234,45726 +2025,5,2021,3375,642020,4770,126,36174,1328,1175,144,103821,54219 +2025,5,2022,4060,772274,5738,152,43513,1597,1413,173,117051,65219 +2025,5,2023,5274,1003282,7455,197,56529,2075,1835,224,141771,84728 +2025,5,2024,7202,1370012,10180,269,77192,2833,2506,306,177265,115698 +2025,5,2025,13613,2589583,19242,508,145908,5356,4738,579,290372,218692 +2025,6,1995,428,454191,3784,51,17965,405,358,14,125799,17893 +2025,6,1996,53,56481,471,5,2234,50,45,2,14773,2225 +2025,6,1997,63,67281,561,6,2661,60,53,2,16368,2651 +2025,6,1998,83,87784,731,8,3472,78,69,3,17761,3458 +2025,6,1999,121,128869,1074,11,5097,115,102,4,24019,5077 +2025,6,2000,175,186328,1553,17,7370,166,147,6,32938,7340 +2025,6,2001,236,230099,2108,22,10339,221,196,8,42667,9876 +2025,6,2002,302,294714,2699,29,13242,284,251,10,52641,12649 +2025,6,2003,398,388391,3557,38,17451,374,331,14,67027,16669 +2025,6,2004,381,270948,2392,36,13691,358,316,13,57159,15957 +2025,6,2005,482,342090,3020,46,17285,452,400,17,70936,20147 +2025,6,2006,1367,393217,3456,52,19861,519,459,19,59115,23159 +2025,6,2007,1456,419017,3683,56,21165,553,489,20,61906,24678 +2025,6,2008,1231,225825,1802,47,16720,468,414,17,43541,20865 +2025,6,2009,1038,190419,1520,40,14099,394,349,15,35883,17594 +2025,6,2010,489,89707,716,19,6646,186,164,7,16549,8293 +2025,6,2011,662,121293,968,25,8991,251,222,9,19235,11219 +2025,6,2012,1008,184551,1473,39,13687,383,339,14,28570,17080 +2025,6,2013,1017,186097,1485,39,13810,386,342,14,28082,17233 +2025,6,2014,1266,231600,1849,48,17186,481,425,18,34119,21447 +2025,6,2015,1432,262030,2092,55,19445,544,481,20,37550,24265 +2025,6,2016,1615,295570,2359,62,21934,613,543,23,39238,27371 +2025,6,2017,1837,336107,2683,70,24942,698,617,26,43385,31125 +2025,6,2018,2695,493122,3936,103,36593,1023,905,38,61444,45665 +2025,6,2019,3088,565037,4510,118,41930,1173,1037,43,68202,52324 +2025,6,2020,3606,659923,5268,138,48971,1369,1211,50,76648,61111 +2025,6,2021,4276,782495,6246,164,58067,1624,1437,60,87472,72461 +2025,6,2022,5144,941249,7513,197,69848,1953,1728,72,100445,87162 +2025,6,2023,6683,1222802,9761,256,90741,2538,2245,93,124140,113235 +2025,6,2024,9125,1669774,13329,350,123910,3465,3065,127,159446,154626 +2025,6,2025,17248,3156193,25194,661,234213,6550,5794,241,273813,292273 +2025,8,1995,97,100801,828,11,3912,90,80,10,36239,3993 +2025,8,1996,12,12535,103,1,486,11,10,1,4331,497 +2025,8,1997,14,14932,123,1,579,13,12,1,4774,592 +2025,8,1998,19,19483,160,2,756,17,15,2,5060,772 +2025,8,1999,28,28601,235,2,1110,26,23,3,6790,1133 +2025,8,2000,40,41353,340,3,1605,37,33,4,9278,1638 +2025,8,2001,54,53416,450,5,2137,49,43,6,11912,2204 +2025,8,2002,69,68416,577,6,2737,63,55,7,14653,2823 +2025,8,2003,91,90163,760,8,3606,82,73,10,18604,3720 +2025,8,2004,87,62882,511,8,2829,79,70,9,16221,3561 +2025,8,2005,110,79393,645,10,3572,100,88,12,20109,4497 +2025,8,2006,311,91259,739,11,4105,114,101,13,17531,5169 +2025,8,2007,331,97247,787,12,4374,122,108,14,18317,5508 +2025,8,2008,280,52399,386,10,3456,103,91,12,13483,4657 +2025,8,2009,236,44183,326,8,2914,87,77,10,11091,3927 +2025,8,2010,111,20819,153,4,1374,41,36,5,5107,1851 +2025,8,2011,151,28155,207,5,1858,55,49,6,6090,2504 +2025,8,2012,229,42847,316,8,2829,84,75,10,9020,3812 +2025,8,2013,231,43215,318,8,2854,85,75,10,8838,3846 +2025,8,2014,288,53781,396,10,3552,106,94,12,10704,4787 +2025,8,2015,326,60847,448,11,4019,120,106,14,11738,5415 +2025,8,2016,368,68636,506,13,4534,135,120,16,12328,6109 +2025,8,2017,418,78049,575,15,5155,154,136,18,13569,6946 +2025,8,2018,613,114510,844,22,7564,226,200,26,19118,10191 +2025,8,2019,703,131210,967,25,8667,258,229,30,21102,11678 +2025,8,2020,821,153244,1129,29,10122,302,267,35,23565,13639 +2025,8,2021,973,181707,1339,34,12002,358,317,42,26694,16172 +2025,8,2022,1171,218572,1610,41,14437,431,381,50,30383,19453 +2025,8,2023,1521,283953,2092,53,18756,559,495,65,37147,25272 +2025,8,2024,2077,387747,2857,73,25612,764,676,89,47037,34510 +2025,8,2025,3926,732914,5400,138,48411,1444,1277,168,78815,65230 +2025,9,1995,1182,1292351,12236,184,45298,1165,1031,125,527033,51408 +2025,9,1996,147,160710,1522,18,5633,145,128,16,60710,6393 +2025,9,1997,175,191442,1813,22,6710,173,153,19,66749,7615 +2025,9,1998,228,249781,2365,28,8755,225,199,25,69698,9936 +2025,9,1999,335,366682,3472,41,12853,331,292,38,93083,14586 +2025,9,2000,485,530174,5020,60,18583,478,423,54,127097,21090 +2025,9,2001,652,654364,7454,80,24434,636,562,73,167789,28374 +2025,9,2002,835,838117,9547,103,31295,814,720,93,206510,36341 +2025,9,2003,1101,1104518,12582,136,41242,1073,949,123,262338,47893 +2025,9,2004,1054,770659,8459,130,32360,1027,909,118,225685,45848 +2025,9,2005,1331,973011,10680,164,40856,1297,1148,149,279794,57886 +2025,9,2006,3776,1118432,12228,189,46938,1491,1319,171,225634,66538 +2025,9,2007,4024,1191810,13030,201,50018,1589,1406,182,236008,70903 +2025,9,2008,3402,644274,6416,170,39537,1343,1188,154,168073,59948 +2025,9,2009,2869,543261,5410,143,33338,1133,1002,130,138340,50549 +2025,9,2010,1352,255902,2549,68,15714,534,472,61,63725,23827 +2025,9,2011,1830,345962,3446,91,21259,722,639,83,72834,32235 +2025,9,2012,2785,526326,5244,139,32365,1099,972,126,108029,49074 +2025,9,2013,2810,530670,5288,140,32655,1109,981,127,106026,49513 +2025,9,2014,3497,660425,6581,175,40639,1380,1221,159,128632,61619 +2025,9,2015,3957,747200,7446,198,45979,1561,1381,179,141325,69716 +2025,9,2016,4463,842844,8399,223,51864,1761,1558,202,146229,78639 +2025,9,2017,5075,958439,9551,253,58977,2003,1772,230,161407,89425 +2025,9,2018,7446,1406177,14013,372,86529,2939,2600,338,227842,131200 +2025,9,2019,8532,1611250,16056,426,99148,3367,2979,387,252389,150334 +2025,9,2020,9965,1881826,18753,498,115797,3933,3479,452,282670,175579 +2025,9,2021,11816,2231348,22236,590,137305,4663,4125,536,321762,208190 +2025,9,2022,14213,2684049,26747,710,165162,5609,4962,644,367994,250429 +2025,9,2023,18465,3486917,34748,922,214566,7287,6446,837,453183,325338 +2025,9,2024,25215,4761494,47449,1259,292997,9950,8802,1143,579358,444260 +2025,9,2025,47660,9000130,89687,2379,553820,18808,16638,2160,987034,839736 +2025,10,1995,2154,2385882,22969,349,79772,2159,1910,231,1026876,95347 +2025,10,1996,268,296696,2856,34,9920,269,238,29,118057,11857 +2025,10,1997,319,353432,3402,41,11817,320,283,35,129463,14124 +2025,10,1998,416,461135,4439,53,15418,417,369,46,132239,18428 +2025,10,1999,611,676954,6517,78,22634,613,542,69,175710,27053 +2025,10,2000,884,978787,9423,113,32726,886,784,100,240011,39115 +2025,10,2001,1189,1209298,14003,153,43013,1179,1043,134,317000,52625 +2025,10,2002,1523,1548882,17936,195,55091,1510,1335,172,390272,67403 +2025,10,2003,2007,2041204,23637,258,72602,1990,1760,227,495922,88827 +2025,10,2004,1921,1423723,15875,247,56958,1905,1685,217,426852,85035 +2025,10,2005,2425,1797549,20043,311,71914,2405,2127,274,529274,107362 +2025,10,2006,6884,2066200,22987,358,82632,2764,2445,315,437281,123408 +2025,10,2007,7335,2201763,24495,381,88053,2945,2606,336,457345,131505 +2025,10,2008,6202,1188899,12031,322,69598,2490,2203,284,327051,111186 +2025,10,2009,5230,1002496,10145,272,58686,2100,1858,240,269189,93753 +2025,10,2010,2465,472344,4781,128,27663,990,876,113,124005,44193 +2025,10,2011,3335,638742,6466,173,37424,1339,1184,153,143596,59786 +2025,10,2012,5077,971995,9841,264,56974,2038,1803,233,212937,91018 +2025,10,2013,5122,980270,9926,266,57484,2056,1819,235,208933,91832 +2025,10,2014,6375,1219955,12353,331,71539,2559,2264,292,253400,114286 +2025,10,2015,7212,1380248,13976,375,80939,2895,2561,330,278302,129303 +2025,10,2016,8136,1556925,15765,423,91299,3266,2889,373,288907,145854 +2025,10,2017,9251,1770456,17927,481,103821,3714,3285,424,318708,165857 +2025,10,2018,13573,2597531,26302,706,152321,5449,4820,622,449440,243338 +2025,10,2019,15553,2976347,30138,809,174536,6243,5523,713,497514,278826 +2025,10,2020,18165,3476164,35199,944,203845,7292,6450,832,556604,325649 +2025,10,2021,21538,4121811,41736,1120,241707,8646,7648,987,633009,386134 +2025,10,2022,25908,4958047,50204,1347,290745,10400,9200,1187,723007,464474 +2025,10,2023,33658,6441136,65221,1750,377713,13511,11952,1542,889235,603409 +2025,10,2024,45961,8795566,89062,2389,515780,18450,16321,2106,1134903,823973 +2025,10,2025,86875,16625307,168344,4517,974922,34874,30850,3981,1927911,1557469 +2025,11,1995,918,1118161,12659,269,34312,1025,907,109,1386217,44853 +2025,11,1996,114,139049,1574,26,4267,127,113,14,157184,5578 +2025,11,1997,136,165639,1875,32,5083,152,134,17,170090,6644 +2025,11,1998,177,216114,2447,41,6632,198,175,22,165092,8669 +2025,11,1999,260,317258,3592,60,9736,291,257,33,214108,12726 +2025,11,2000,377,458716,5193,87,14076,420,372,47,288358,18401 +2025,11,2001,507,564972,7694,118,18483,558,494,63,371397,24756 +2025,11,2002,649,723623,9855,151,23673,715,632,81,451902,31708 +2025,11,2003,855,953632,12987,198,31198,942,834,107,567744,41786 +2025,11,2004,819,666046,8744,190,24495,902,798,102,509546,40002 +2025,11,2005,1034,840930,11039,240,30927,1139,1007,129,628750,50505 +2025,11,2006,2934,966611,12608,276,35504,1309,1158,149,470641,58053 +2025,11,2007,3126,1030027,13436,294,37833,1395,1234,158,488602,61862 +2025,11,2008,2643,568514,6850,248,30002,1179,1043,134,373846,52304 +2025,11,2009,2229,479380,5776,209,25298,995,880,113,305371,44103 +2025,11,2010,1050,225649,2720,99,11925,469,415,53,139625,20789 +2025,11,2011,1421,304844,3677,134,16133,634,561,72,153524,28125 +2025,11,2012,2164,463441,5594,203,24560,965,854,110,225274,42817 +2025,11,2013,2183,466930,5640,205,24780,973,861,111,218487,43200 +2025,11,2014,2717,581100,7019,255,30839,1211,1071,138,262050,53762 +2025,11,2015,3074,657451,7941,289,34891,1370,1212,156,283980,60826 +2025,11,2016,3467,741608,8957,326,39357,1546,1367,176,283570,68612 +2025,11,2017,3943,843317,10186,370,44755,1758,1555,200,307884,78022 +2025,11,2018,5784,1237277,14944,544,65663,2579,2281,293,424653,114471 +2025,11,2019,6628,1417719,17124,623,75239,2955,2614,336,460672,131165 +2025,11,2020,7741,1655796,19999,727,87873,3451,3053,392,501655,153191 +2025,11,2021,9179,1963336,23714,863,104195,4092,3620,465,554849,181645 +2025,11,2022,11041,2361662,28525,1038,125334,4922,4354,559,610382,218497 +2025,11,2023,14344,3068093,37058,1348,162824,6395,5657,727,718850,283855 +2025,11,2024,19587,4189581,50604,1841,222342,8732,7725,992,864056,387613 +2025,11,2025,37023,7919100,95650,3479,420268,16506,14601,1876,1311441,732663 +2025,12,1995,2572,2983309,30394,484,86006,2657,2351,285,1783985,117607 +2025,12,1996,320,370989,3780,48,10695,330,292,36,207457,14625 +2025,12,1997,381,441932,4502,57,12740,394,348,43,226020,17422 +2025,12,1998,497,576604,5874,74,16623,514,454,57,220326,22731 +2025,12,1999,730,846463,8624,109,24403,754,667,85,288938,33369 +2025,12,2000,1055,1223876,12469,158,35283,1090,964,123,394018,48247 +2025,12,2001,1419,1601665,16101,212,46756,1550,1371,166,503005,64912 +2025,12,2002,1818,2051430,20622,272,59886,1985,1756,213,617617,83139 +2025,12,2003,2396,2703490,27176,358,78921,2616,2314,280,782802,109566 +2025,12,2004,2294,1884759,18231,343,61902,2505,2216,268,689808,104888 +2025,12,2005,2896,2379635,23018,433,78156,3162,2797,339,854596,132428 +2025,12,2006,8219,2735284,26450,497,89826,3635,3216,389,748117,152220 +2025,12,2007,8758,2914745,28186,530,95720,3873,3426,415,780769,162207 +2025,12,2008,7405,1571827,13825,448,75682,3275,2897,351,585020,137144 +2025,12,2009,6244,1325386,11657,378,63816,2761,2443,296,480755,115642 +2025,12,2010,2943,624702,5495,178,30081,1302,1151,139,221137,54510 +2025,12,2011,3982,845077,7433,241,40695,1761,1558,189,264296,73745 +2025,12,2012,6062,1286443,11316,367,61954,2681,2372,287,390841,112268 +2025,12,2013,6116,1297859,11416,370,62508,2705,2393,290,382333,113272 +2025,12,2014,7612,1615201,14208,461,77792,3366,2978,360,462338,140969 +2025,12,2015,8612,1827424,16075,521,88013,3808,3369,408,505992,159491 +2025,12,2016,9714,2061341,18132,588,99279,4296,3800,460,528426,179906 +2025,12,2017,11046,2344051,20619,668,112895,4885,4321,523,580314,204580 +2025,12,2018,16207,3439085,30252,981,165635,7167,6340,767,813708,300150 +2025,12,2019,18570,3940631,34663,1124,189790,8212,7265,879,895730,343924 +2025,12,2020,21689,4602382,40484,1312,221662,9591,8485,1027,995247,401679 +2025,12,2021,25717,5457202,48004,1556,262832,11373,10061,1218,1123468,476284 +2025,12,2022,30934,6564370,57743,1872,316156,13680,12102,1465,1271186,572915 +2025,12,2023,40188,8527954,75015,2432,410727,17772,15722,1903,1546289,744287 +2025,12,2024,54878,11645158,102435,3321,560859,24269,21469,2599,1944737,1016348 +2025,12,2025,103729,22011606,193622,6277,1060133,45873,40580,4912,3219423,1921091 +2025,13,1995,480,479867,3739,47,17098,423,374,46,237274,18440 +2025,13,1996,60,59674,465,5,2126,53,47,6,27583,2293 +2025,13,1997,71,71085,554,5,2533,63,55,7,30084,2732 +2025,13,1998,93,92747,723,7,3305,82,72,9,30141,3564 +2025,13,1999,136,136154,1061,10,4851,120,106,14,39683,5232 +2025,13,2000,197,196861,1534,15,7014,173,153,20,53882,7565 +2025,13,2001,265,257353,1978,20,9294,247,218,27,68576,10178 +2025,13,2002,340,329620,2534,26,11903,316,279,35,83915,13036 +2025,13,2003,448,434392,3339,34,15687,416,368,46,106010,17179 +2025,13,2004,428,302928,2243,33,12306,398,352,44,93850,16446 +2025,13,2005,541,382467,2832,42,15537,503,445,55,116090,20764 +2025,13,2006,1535,439629,3247,48,17854,578,511,64,96056,23867 +2025,13,2007,1636,468472,3460,51,19025,616,545,68,100080,25433 +2025,13,2008,1383,252870,1712,43,15039,521,461,57,75225,21504 +2025,13,2009,1166,213223,1443,36,12681,439,389,48,61691,18132 +2025,13,2010,550,100478,680,17,5978,207,183,23,28319,8547 +2025,13,2011,744,135895,920,23,8087,280,248,31,32918,11563 +2025,13,2012,1132,206824,1400,35,12311,426,377,47,48564,17603 +2025,13,2013,1143,208615,1412,36,12422,430,381,47,47383,17761 +2025,13,2014,1422,259624,1757,44,15459,535,474,59,57157,22103 +2025,13,2015,1609,293736,1988,50,17490,606,536,67,62369,25007 +2025,13,2016,1815,331335,2243,57,19729,683,604,75,64370,28208 +2025,13,2017,2064,376778,2550,64,22435,777,687,85,70462,32077 +2025,13,2018,3028,552791,3742,94,32915,1140,1008,125,98424,47062 +2025,13,2019,3469,633407,4287,108,37715,1306,1155,144,107901,53925 +2025,13,2020,4052,739776,5007,126,44049,1525,1349,168,119310,62981 +2025,13,2021,4804,877177,5937,150,52230,1809,1600,199,133927,74679 +2025,13,2022,5779,1055144,7142,180,62827,2176,1925,239,150489,89830 +2025,13,2023,7508,1370762,9278,234,81620,2826,2500,311,181487,116700 +2025,13,2024,10252,1871819,12670,319,111454,3859,3414,424,225592,159358 +2025,13,2025,19378,3538096,23949,603,210670,7295,6453,802,365550,301217 +2025,16,1995,206,212059,1734,23,8762,190,168,20,78859,8325 +2025,16,1996,26,26371,216,2,1090,24,21,3,9351,1035 +2025,16,1997,31,31413,257,3,1298,28,25,3,10334,1233 +2025,16,1998,40,40986,335,4,1694,37,33,4,11302,1609 +2025,16,1999,58,60168,492,5,2486,54,48,6,15242,2362 +2025,16,2000,85,86995,711,7,3595,78,69,9,20768,3415 +2025,16,2001,114,111961,941,10,4786,102,91,12,26599,4595 +2025,16,2002,146,143401,1205,13,6131,131,116,15,32645,5885 +2025,16,2003,192,188981,1589,17,8079,173,153,20,41359,7755 +2025,16,2004,184,131964,1073,16,6341,166,146,19,36226,7424 +2025,16,2005,232,166614,1355,21,8006,209,185,24,44865,9374 +2025,16,2006,659,191515,1539,24,9195,240,213,28,35859,10775 +2025,16,2007,702,204080,1640,25,9798,256,226,30,37450,11482 +2025,16,2008,593,110530,816,21,7744,216,191,25,27551,9708 +2025,16,2009,500,93200,688,18,6530,183,161,21,22649,8186 +2025,16,2010,236,43876,323,8,3078,86,76,10,10418,3858 +2025,16,2011,319,59282,437,11,4164,116,103,14,11903,5220 +2025,16,2012,486,90135,663,17,6340,177,157,21,17621,7947 +2025,16,2013,490,90824,668,18,6396,179,158,21,17258,8018 +2025,16,2014,610,113032,831,22,7960,222,197,26,20901,9978 +2025,16,2015,690,127883,941,25,9006,251,222,29,22916,11289 +2025,16,2016,778,144253,1061,28,10159,284,251,33,23732,12734 +2025,16,2017,885,164037,1207,32,11553,322,285,38,26129,14481 +2025,16,2018,1299,240668,1770,47,16949,473,418,55,36828,21246 +2025,16,2019,1488,275766,2028,53,19421,542,480,63,40666,24344 +2025,16,2020,1738,322075,2369,62,22683,633,560,74,45433,28432 +2025,16,2021,2061,381896,2809,74,26896,751,664,88,51495,33713 +2025,16,2022,2479,459375,3379,89,32352,903,799,105,58650,40553 +2025,16,2023,3221,596787,4390,115,42030,1173,1038,137,71766,52683 +2025,16,2024,4398,814930,5994,158,57393,1602,1417,187,90975,71940 +2025,16,2025,8313,1540374,11331,298,108483,3028,2678,353,152735,135981 +2025,17,1995,653,722275,6800,99,23732,635,562,69,348602,27955 +2025,17,1996,81,89819,846,10,2951,79,70,9,40567,3476 +2025,17,1997,97,106994,1007,12,3516,94,83,10,44474,4141 +2025,17,1998,126,139599,1314,15,4587,123,109,14,45570,5403 +2025,17,1999,185,204933,1929,22,6734,180,159,21,60547,7932 +2025,17,2000,268,296307,2790,32,9736,261,231,30,82584,11468 +2025,17,2001,360,389011,3603,43,12978,376,333,40,105372,15429 +2025,17,2002,462,498249,4615,55,16622,482,426,51,129401,19762 +2025,17,2003,608,656621,6081,73,21905,635,562,68,164034,26044 +2025,17,2004,582,457956,4086,70,17186,608,538,65,143944,24932 +2025,17,2005,735,578201,5159,88,21699,768,679,82,178330,31478 +2025,17,2006,2087,664616,5912,102,24931,882,780,94,148687,36182 +2025,17,2007,2224,708221,6299,108,26567,940,832,100,155280,38556 +2025,17,2008,1880,382242,3105,91,21004,795,703,84,115086,32599 +2025,17,2009,1586,322312,2618,77,17711,670,593,71,94628,27488 +2025,17,2010,747,151871,1233,36,8348,316,279,34,43548,12957 +2025,17,2011,1011,205383,1668,49,11294,427,378,45,50861,17529 +2025,17,2012,1539,312555,2538,75,17194,651,575,69,75303,26686 +2025,17,2013,1553,315233,2560,76,17348,656,581,70,73761,26925 +2025,17,2014,1933,392311,3186,94,21590,817,722,87,89314,33508 +2025,17,2015,2187,443857,3605,106,24426,924,817,98,97901,37911 +2025,17,2016,2467,500672,4066,120,27553,1042,922,111,101805,42763 +2025,17,2017,2805,569339,4624,136,31332,1185,1049,126,112038,48628 +2025,17,2018,4115,835308,6784,200,45969,1739,1538,185,157608,71345 +2025,17,2019,4716,957126,7773,229,52672,1993,1763,212,173947,81750 +2025,17,2020,5508,1117857,9078,268,61518,2327,2059,247,193992,95478 +2025,17,2021,6530,1325481,10765,318,72944,2759,2441,293,219746,113212 +2025,17,2022,7855,1594399,12949,382,87743,3319,2936,353,249843,136181 +2025,17,2023,10205,2071324,16822,496,113989,4312,3815,459,305480,176916 +2025,17,2024,13935,2828457,22971,678,155655,5888,5209,626,386851,241584 +2025,17,2025,26341,5346325,43419,1281,294218,11130,9846,1184,648303,456640 +2025,18,1995,112,119864,1007,13,4357,104,92,11,46025,4599 +2025,18,1996,14,14906,125,1,542,13,11,1,5363,572 +2025,18,1997,17,17756,149,2,645,15,14,2,5901,681 +2025,18,1998,22,23167,195,2,842,20,18,2,6198,889 +2025,18,1999,32,34009,286,3,1236,30,26,3,8293,1305 +2025,18,2000,46,49173,413,4,1787,43,38,5,11321,1887 +2025,18,2001,62,64509,533,6,2383,62,55,7,14443,2538 +2025,18,2002,79,82624,683,7,3052,79,70,8,17749,3251 +2025,18,2003,104,108887,900,10,4023,104,92,11,22515,4285 +2025,18,2004,100,75956,606,9,3156,100,88,11,19658,4102 +2025,18,2005,126,95900,765,11,3985,126,112,13,24359,5179 +2025,18,2006,358,110232,875,13,4578,145,128,15,19933,5953 +2025,18,2007,382,117465,932,14,4879,154,137,16,20831,6343 +2025,18,2008,323,63358,460,12,3856,131,116,14,15276,5363 +2025,18,2009,272,53425,388,10,3251,110,97,12,12569,4522 +2025,18,2010,128,25170,183,5,1533,52,46,5,5788,2132 +2025,18,2011,174,34034,247,6,2073,70,62,7,6695,2884 +2025,18,2012,264,51786,376,10,3157,107,95,11,9923,4390 +2025,18,2013,267,52223,379,10,3185,108,95,11,9732,4430 +2025,18,2014,332,64992,471,12,3963,134,119,14,11798,5513 +2025,18,2015,375,73531,533,14,4484,152,134,16,12951,6237 +2025,18,2016,423,82943,601,16,5058,171,151,18,13459,7035 +2025,18,2017,481,94319,684,18,5752,195,172,21,14839,8000 +2025,18,2018,706,138380,1003,26,8439,286,253,30,20929,11738 +2025,18,2019,809,158561,1150,30,9670,327,290,35,23151,13450 +2025,18,2020,945,185188,1343,35,11294,382,338,40,25897,15708 +2025,18,2021,1121,219584,1592,41,13391,453,401,48,29423,18626 +2025,18,2022,1348,264134,1915,50,16108,545,482,58,33587,22405 +2025,18,2023,1752,343142,2488,65,20926,708,627,75,41247,29106 +2025,18,2024,2392,468572,3398,88,28575,967,856,102,52539,39746 +2025,18,2025,4521,885691,6422,167,54013,1828,1617,193,88949,75127 +2025,19,1995,248,268555,2463,34,9639,240,212,26,96344,10573 +2025,19,1996,31,33396,306,3,1199,30,26,3,11252,1315 +2025,19,1997,37,39782,365,4,1428,36,31,4,12433,1566 +2025,19,1998,48,51905,476,5,1863,46,41,5,13237,2044 +2025,19,1999,70,76198,699,8,2735,68,60,8,17824,3000 +2025,19,2000,102,110172,1010,11,3954,98,87,11,24431,4337 +2025,19,2001,137,147410,1339,15,5243,142,126,15,31435,5836 +2025,19,2002,175,188805,1715,19,6715,182,161,19,38761,7474 +2025,19,2003,231,248818,2260,25,8850,240,212,25,49326,9850 +2025,19,2004,221,173569,1520,24,6944,230,203,24,42656,9429 +2025,19,2005,279,219143,1920,30,8767,290,256,31,52935,11905 +2025,19,2006,792,251895,2196,35,10072,333,295,35,44150,13685 +2025,19,2007,844,268422,2340,37,10733,355,314,37,46235,14583 +2025,19,2008,713,144684,1151,31,8482,300,266,32,33415,12329 +2025,19,2009,601,122000,970,26,7153,253,224,27,27557,10396 +2025,19,2010,283,57477,457,12,3371,119,106,13,12717,4900 +2025,19,2011,384,77718,618,17,4561,161,143,17,14860,6630 +2025,19,2012,584,118256,940,26,6944,246,217,26,22092,10093 +2025,19,2013,589,119252,947,26,7006,248,219,26,21736,10183 +2025,19,2014,733,148410,1179,32,8719,308,273,32,26434,12673 +2025,19,2015,829,167910,1334,36,9865,349,309,37,29125,14338 +2025,19,2016,936,189403,1505,41,11127,394,348,41,30510,16174 +2025,19,2017,1064,215379,1711,46,12653,448,396,47,33780,18392 +2025,19,2018,1561,315995,2510,68,18564,657,581,69,47901,26984 +2025,19,2019,1789,362079,2876,78,21272,752,666,79,53256,30919 +2025,19,2020,2089,422883,3359,91,24844,879,777,93,59951,36111 +2025,19,2021,2477,501427,3983,108,29458,1042,922,110,68565,42818 +2025,19,2022,2979,603157,4792,130,35435,1253,1109,132,78921,51505 +2025,19,2023,3871,783577,6225,169,46035,1628,1440,172,97843,66912 +2025,19,2024,5285,1069999,8500,231,62862,2224,1967,234,126177,91370 +2025,19,2025,9991,2022504,16067,437,118821,4203,3718,443,218158,172707 +2025,20,1995,278,292909,2668,39,10256,260,230,28,160870,11466 +2025,20,1996,35,36425,332,4,1275,32,29,4,18743,1426 +2025,20,1997,41,43390,395,5,1519,39,34,4,20490,1699 +2025,20,1998,54,56612,516,6,1982,50,45,6,20849,2216 +2025,20,1999,79,83108,757,9,2910,74,65,9,27576,3253 +2025,20,2000,114,120163,1095,13,4207,107,95,12,37477,4704 +2025,20,2001,154,160745,1450,17,5578,154,137,17,47947,6329 +2025,20,2002,197,205884,1857,22,7144,198,175,21,58727,8106 +2025,20,2003,259,271326,2448,29,9415,260,230,28,74258,10682 +2025,20,2004,248,189277,1647,27,7387,249,221,27,65604,10226 +2025,20,2005,313,238975,2079,35,9327,315,279,34,81185,12911 +2025,20,2006,890,274691,2377,40,10715,362,320,39,66477,14841 +2025,20,2007,948,292714,2533,42,11418,386,341,42,69312,15815 +2025,20,2008,802,158295,1257,36,9029,326,288,35,51889,13371 +2025,20,2009,676,133477,1060,30,7614,275,243,30,42588,11275 +2025,20,2010,319,62883,499,14,3589,130,115,14,19563,5315 +2025,20,2011,431,85026,675,19,4855,175,155,19,22632,7190 +2025,20,2012,656,129371,1027,29,7391,267,236,29,33426,10946 +2025,20,2013,662,130458,1035,30,7458,269,238,29,32654,11044 +2025,20,2014,824,162356,1289,37,9281,335,296,36,39439,13744 +2025,20,2015,932,183688,1458,42,10500,379,335,41,43101,15550 +2025,20,2016,1051,207201,1645,47,11845,427,378,46,44509,17540 +2025,20,2017,1196,235619,1870,53,13469,486,430,52,48811,19946 +2025,20,2018,1754,345689,2744,78,19761,713,631,77,68355,29264 +2025,20,2019,2010,396103,3144,90,22643,817,723,88,75111,33532 +2025,20,2020,2347,462621,3672,105,26446,954,844,103,83307,39163 +2025,20,2021,2784,548546,4354,125,31357,1132,1001,122,93811,46437 +2025,20,2022,3348,659836,5237,150,37719,1361,1204,147,105856,55858 +2025,20,2023,4350,857210,6804,195,49002,1768,1564,191,128284,72566 +2025,20,2024,5940,1170547,9291,266,66914,2415,2136,260,160525,99091 +2025,20,2025,11227,2212557,17561,502,126480,4564,4038,492,263317,187301 +2025,21,1995,156,166556,1396,18,5834,145,128,16,66046,6406 +2025,21,1996,19,20712,174,2,726,18,16,2,7709,797 +2025,21,1997,23,24673,207,2,864,22,19,2,8461,949 +2025,21,1998,30,32191,270,3,1128,28,25,3,8699,1238 +2025,21,1999,44,47257,396,4,1655,41,36,5,11580,1818 +2025,21,2000,64,68328,573,6,2394,60,53,7,15814,2628 +2025,21,2001,86,89763,740,8,3191,86,76,9,20188,3536 +2025,21,2002,110,114969,948,10,4087,110,97,12,24815,4529 +2025,21,2003,145,151513,1249,13,5386,145,128,15,31485,5968 +2025,21,2004,139,105656,839,12,4225,139,123,15,27503,5713 +2025,21,2005,176,133398,1059,16,5335,175,155,19,34086,7213 +2025,21,2006,499,153335,1215,18,6130,202,178,21,28857,8291 +2025,21,2007,532,163395,1294,19,6532,215,190,23,30151,8835 +2025,21,2008,450,88013,636,16,5162,182,161,19,22203,7470 +2025,21,2009,379,74214,536,14,4353,153,135,16,18265,6299 +2025,21,2010,179,34973,253,6,2052,72,64,8,8409,2969 +2025,21,2011,242,47301,342,9,2776,98,86,10,9893,4017 +2025,21,2012,368,71991,520,13,4226,149,132,16,14656,6115 +2025,21,2013,371,72615,525,13,4264,150,133,16,14365,6170 +2025,21,2014,462,90370,653,17,5306,187,165,20,17404,7679 +2025,21,2015,523,102244,739,19,6004,211,187,22,19091,8687 +2025,21,2016,590,115332,833,21,6772,238,211,25,19925,9799 +2025,21,2017,671,131150,948,24,7701,271,240,29,21944,11143 +2025,21,2018,984,192416,1390,36,11298,397,352,42,30905,16349 +2025,21,2019,1127,220478,1593,41,12946,455,403,48,34141,18733 +2025,21,2020,1317,257503,1861,48,15120,532,470,56,38126,21879 +2025,21,2021,1561,305330,2206,56,17928,631,558,67,43241,25943 +2025,21,2022,1878,367275,2654,68,21566,759,671,80,49247,31206 +2025,21,2023,2440,477138,3448,88,28016,985,872,104,60324,40541 +2025,21,2024,3332,651546,4708,120,38257,1346,1190,142,76578,55360 +2025,21,2025,6298,1231547,8899,228,72313,2544,2250,269,128880,104641 +2025,22,1995,408,436143,3819,53,13659,386,341,42,216585,16974 +2025,22,1996,51,54237,475,5,1699,48,42,5,25078,2111 +2025,22,1997,60,64608,566,6,2023,57,51,6,27335,2514 +2025,22,1998,79,84296,738,8,2640,75,66,8,26736,3281 +2025,22,1999,116,123748,1084,12,3876,109,97,12,35100,4816 +2025,22,2000,167,178924,1567,17,5604,158,140,18,47868,6964 +2025,22,2001,225,234125,2023,23,7424,225,199,24,61093,9369 +2025,22,2002,288,299869,2591,29,9508,288,255,31,75017,12000 +2025,22,2003,380,395185,3415,39,12531,380,336,41,95085,15814 +2025,22,2004,363,275515,2291,37,9829,363,321,39,83601,15138 +2025,22,2005,459,347856,2893,47,12409,459,406,50,103571,19113 +2025,22,2006,1302,399845,3323,54,14262,527,466,57,89661,21970 +2025,22,2007,1388,426079,3541,58,15198,562,497,61,93593,23411 +2025,22,2008,1173,229546,1738,49,12013,475,420,51,69812,19794 +2025,22,2009,989,193557,1465,41,10129,401,354,43,57378,16691 +2025,22,2010,466,91228,691,19,4775,189,167,20,26396,7867 +2025,22,2011,631,123408,934,26,6459,255,226,28,31388,10644 +2025,22,2012,961,187856,1422,40,9834,389,344,42,46432,16204 +2025,22,2013,969,189519,1435,40,9922,392,347,42,45439,16349 +2025,22,2014,1206,235858,1786,50,12348,488,432,53,54967,20346 +2025,22,2015,1365,266848,2020,57,13970,552,489,60,60184,23019 +2025,22,2016,1539,301005,2279,64,15758,623,551,67,62775,25966 +2025,22,2017,1750,342288,2591,73,17919,709,627,77,68982,29527 +2025,22,2018,2568,502189,3802,106,26290,1040,920,112,96789,43321 +2025,22,2019,2943,575427,4357,122,30124,1191,1054,129,106628,49639 +2025,22,2020,3437,672058,5088,142,35183,1391,1231,150,118577,57974 +2025,22,2021,4075,796882,6033,169,41718,1650,1459,178,133997,68742 +2025,22,2022,4902,958556,7257,203,50182,1985,1756,214,151809,82689 +2025,22,2023,6368,1245286,9428,264,65193,2578,2281,278,184963,107423 +2025,22,2024,8696,1700476,12874,360,89022,3521,3114,380,233133,146690 +2025,22,2025,16438,3214222,24335,681,168269,6655,5887,718,387453,277272 +2025,23,1995,378,394326,3296,43,15232,353,312,38,134154,15523 +2025,23,1996,47,49036,410,4,1894,44,39,5,15445,1930 +2025,23,1997,56,58413,488,5,2256,52,46,6,17050,2300 +2025,23,1998,73,76214,637,7,2944,68,60,8,18235,3000 +2025,23,1999,107,111883,935,10,4322,100,89,11,24526,4404 +2025,23,2000,155,161769,1352,14,6249,145,128,16,33530,6368 +2025,23,2001,209,199497,2007,19,8220,192,170,22,44320,8568 +2025,23,2002,267,255518,2570,24,10528,246,218,28,54601,10974 +2025,23,2003,352,336737,3387,32,13874,325,287,37,69425,14462 +2025,23,2004,337,235013,2280,31,10887,311,275,36,59677,13844 +2025,23,2005,426,296720,2879,39,13745,393,347,45,74018,17480 +2025,23,2006,1209,341066,3288,44,15791,451,399,52,58905,20092 +2025,23,2007,1289,363443,3504,47,16827,481,425,55,61683,21410 +2025,23,2008,1089,196419,1729,40,13298,407,360,47,43815,18102 +2025,23,2009,919,165623,1458,34,11213,343,303,39,36116,15264 +2025,23,2010,433,78001,687,16,5285,162,143,19,16658,7195 +2025,23,2011,586,105432,928,21,7151,219,193,25,18946,9734 +2025,23,2012,892,160368,1412,33,10886,333,294,38,28163,14819 +2025,23,2013,900,161660,1423,33,10983,336,297,39,27707,14951 +2025,23,2014,1120,201188,1771,41,13669,418,369,48,33695,18607 +2025,23,2015,1267,227622,2004,46,15465,472,418,54,37124,21052 +2025,23,2016,1429,256758,2261,52,17444,533,471,61,38520,23746 +2025,23,2017,1625,291973,2571,60,19837,606,536,70,42663,27003 +2025,23,2018,2384,428369,3772,87,29104,889,786,102,60499,39618 +2025,23,2019,2732,490841,4322,100,33348,1019,901,117,67295,45395 +2025,23,2020,3191,573267,5048,117,38948,1190,1053,137,75769,53019 +2025,23,2021,3783,679744,5985,139,46182,1411,1248,162,86711,62866 +2025,23,2022,4551,817653,7200,167,55552,1697,1501,195,99855,75621 +2025,23,2023,5912,1062232,9353,217,72169,2205,1950,253,123913,98241 +2025,23,2024,8073,1450510,12772,296,98549,3010,2663,346,159989,134151 +2025,23,2025,15260,2741743,24141,559,186276,5690,5034,653,277180,253571 +2025,24,1995,746,834814,7868,115,27655,739,653,79,338700,32642 +2025,24,1996,93,103813,978,11,3439,92,81,10,39412,4059 +2025,24,1997,111,123665,1166,13,4097,109,97,12,43386,4835 +2025,24,1998,144,161350,1521,18,5345,143,126,16,45087,6309 +2025,24,1999,212,236864,2233,26,7847,210,185,24,60313,9262 +2025,24,2000,306,342475,3228,37,11345,303,268,34,82605,13391 +2025,24,2001,412,447693,4166,50,15033,431,381,46,105591,18016 +2025,24,2002,527,573411,5335,64,19254,552,488,59,130084,23075 +2025,24,2003,695,755673,7031,85,25374,727,643,78,165404,30410 +2025,24,2004,665,526980,4722,81,19907,696,616,75,143850,29112 +2025,24,2005,840,665349,5962,102,25133,879,777,94,178457,36756 +2025,24,2006,2384,764787,6838,118,28880,1010,894,108,151465,42249 +2025,24,2007,2540,814966,7286,126,30775,1076,952,115,158491,45021 +2025,24,2008,2148,439160,3572,106,24323,910,805,98,115882,38065 +2025,24,2009,1811,370306,3012,89,20510,767,679,82,95490,32097 +2025,24,2010,854,174500,1419,42,9668,362,320,39,44038,15129 +2025,24,2011,1155,236005,1919,57,13079,489,433,52,51913,20468 +2025,24,2012,1758,359185,2921,87,19911,745,659,80,77082,31160 +2025,24,2013,1774,362292,2947,88,20089,751,665,81,75741,31439 +2025,24,2014,2208,450876,3667,109,25002,935,827,100,91985,39126 +2025,24,2015,2498,510117,4149,123,28287,1058,936,113,101185,44267 +2025,24,2016,2818,575415,4680,139,31907,1193,1056,128,106020,49933 +2025,24,2017,3204,654331,5322,158,36283,1357,1201,146,117148,56782 +2025,24,2018,4701,960005,7808,232,53233,1991,1761,213,165666,83307 +2025,24,2019,5386,1100010,8947,266,60997,2282,2018,245,183747,95457 +2025,24,2020,6291,1284734,10450,311,71240,2665,2357,286,206199,111487 +2025,24,2021,7459,1523356,12391,369,84472,3160,2795,339,235099,132194 +2025,24,2022,8973,1832416,14904,443,101609,3801,3362,408,269523,159013 +2025,24,2023,11656,2380540,19363,576,132003,4938,4368,529,332682,206578 +2025,24,2024,15917,3250698,26440,787,180255,6742,5964,723,426590,282089 +2025,24,2025,30087,6144451,49977,1487,340716,12745,11274,1366,730518,533201 +2025,25,1995,4623,5172674,52107,845,176417,4628,4094,504,2494826,205676 +2025,25,1996,575,643248,6480,83,21938,576,509,64,286718,25577 +2025,25,1997,685,766252,7719,99,26133,686,607,77,314806,30468 +2025,25,1998,893,999757,10071,130,34097,895,791,101,328204,39752 +2025,25,1999,1312,1467658,14784,190,50055,1313,1162,151,437432,58357 +2025,25,2000,1896,2122043,21376,275,72373,1899,1680,218,596021,84377 +2025,25,2001,2551,2617131,31729,370,95160,2525,2233,294,783671,113519 +2025,25,2002,3268,3352050,40639,474,121882,3234,2860,376,962872,145397 +2025,25,2003,4306,4417521,53557,625,160623,4261,3770,496,1221173,191612 +2025,25,2004,4123,3083158,36031,598,126052,4079,3609,475,1058206,183431 +2025,25,2005,5205,3892698,45491,755,159150,5151,4556,600,1311001,231595 +2025,25,2006,14773,4474483,52022,868,182805,5920,5237,689,1036194,266207 +2025,25,2007,15742,4768052,55436,925,194798,6309,5581,734,1082811,283673 +2025,25,2008,13310,2584457,27410,782,154035,5334,4719,621,779807,239843 +2025,25,2009,11223,2179251,23112,659,129884,4498,3979,524,641232,202239 +2025,25,2010,5290,1026307,10886,311,61224,2120,1875,247,295090,95329 +2025,25,2011,7157,1387200,14718,420,82827,2867,2536,334,333826,128968 +2025,25,2012,10895,2109944,22392,640,126095,4364,3861,508,494528,196338 +2025,25,2013,10993,2126897,22578,646,127223,4402,3894,513,484698,198095 +2025,25,2014,13681,2646947,28099,804,158330,5479,4847,638,587296,246531 +2025,25,2015,15478,2994731,31791,909,179134,6199,5484,722,644282,278923 +2025,25,2016,17460,3378068,35860,1026,202063,6992,6185,815,662938,314626 +2025,25,2017,19854,3841367,40778,1166,229776,7951,7034,926,730522,357777 +2025,25,2018,29129,5635877,59828,1711,337117,11666,10320,1359,1028936,524913 +2025,25,2019,33377,6457797,68553,1961,386281,13367,11825,1557,1137458,601466 +2025,25,2020,38982,7542257,80065,2290,451149,15612,13810,1819,1270617,702470 +2025,25,2021,46223,8943121,94936,2715,534944,18511,16375,2157,1442449,832942 +2025,25,2022,55601,10757510,114197,3266,643475,22267,19698,2594,1644020,1001932 +2025,25,2023,72232,13975363,148356,4243,835954,28927,25590,3370,2016691,1301636 +2025,25,2024,98635,19083784,202584,5794,1141520,39501,34943,4602,2564943,1777423 +2025,25,2025,186440,36072008,382924,10952,2157691,74665,66050,8699,4331119,3359671 +2025,26,1995,540,582290,4993,65,21614,508,449,54,205536,22347 +2025,26,1996,67,72411,621,6,2688,63,56,7,23973,2779 +2025,26,1997,80,86258,740,8,3202,75,67,8,26475,3310 +2025,26,1998,104,112543,965,10,4177,98,87,11,28353,4319 +2025,26,1999,153,165215,1417,15,6133,144,127,16,38163,6341 +2025,26,2000,221,238879,2048,21,8867,208,184,24,52195,9168 +2025,26,2001,298,313133,2644,28,11826,300,266,32,66632,12334 +2025,26,2002,381,401064,3386,36,15147,385,340,41,81997,15797 +2025,26,2003,503,528546,4462,48,19962,507,449,54,104152,20819 +2025,26,2004,481,368771,3004,46,15664,486,430,51,90515,19930 +2025,26,2005,608,465598,3793,58,19776,613,542,65,112230,25163 +2025,26,2006,1725,535184,4332,66,22719,705,623,74,91052,28923 +2025,26,2007,1838,570297,4617,71,24209,751,664,79,95261,30821 +2025,26,2008,1554,307668,2278,60,19134,635,562,67,69224,26059 +2025,26,2009,1310,259431,1920,50,16134,535,474,57,57023,21973 +2025,26,2010,618,122207,904,24,7605,252,223,27,26285,10358 +2025,26,2011,835,165220,1222,32,10289,341,302,36,30279,14012 +2025,26,2012,1272,251362,1859,49,15663,519,459,55,44956,21332 +2025,26,2013,1283,253443,1874,49,15803,524,463,55,44171,21523 +2025,26,2014,1597,315413,2332,61,19668,652,577,69,53649,26786 +2025,26,2015,1807,356855,2639,69,22252,738,653,78,59020,30305 +2025,26,2016,2038,402534,2976,78,25100,832,736,88,61434,34184 +2025,26,2017,2318,457741,3385,89,28542,946,837,100,67910,38872 +2025,26,2018,3400,671576,4966,131,41876,1388,1228,147,96109,57032 +2025,26,2019,3896,769517,5690,150,47983,1591,1407,168,106649,65349 +2025,26,2020,4551,898742,6645,175,56041,1858,1644,196,119777,76323 +2025,26,2021,5396,1065671,7880,207,66450,2203,1949,233,136647,90499 +2025,26,2022,6491,1281876,9478,249,79931,2650,2344,280,156806,108860 +2025,26,2023,8432,1665319,12314,324,103841,3443,3045,364,193717,141423 +2025,26,2024,11514,2274042,16815,442,141798,4701,4159,497,248675,193117 +2025,26,2025,21764,4298379,31783,836,268025,8886,7861,939,426654,365028 +2025,27,1995,183,200365,1686,23,7162,173,153,19,72761,7600 +2025,27,1996,23,24916,210,2,891,22,19,2,8475,945 +2025,27,1997,27,29681,250,3,1061,26,23,3,9352,1126 +2025,27,1998,35,38726,326,4,1384,33,30,4,9984,1469 +2025,27,1999,52,56850,478,5,2032,49,43,6,13420,2156 +2025,27,2000,75,82198,692,8,2938,71,63,8,18341,3118 +2025,27,2001,101,105475,871,10,3985,100,89,11,23283,4195 +2025,27,2002,129,135093,1116,13,5104,128,114,14,28630,5372 +2025,27,2003,170,178033,1470,17,6726,169,150,18,36339,7080 +2025,27,2004,163,124259,990,16,5278,162,143,18,31717,6778 +2025,27,2005,206,156885,1251,21,6664,204,181,22,39315,8557 +2025,27,2006,584,180333,1427,24,7655,235,208,25,31515,9836 +2025,27,2007,622,192164,1521,25,8157,250,222,27,32959,10482 +2025,27,2008,526,103873,752,21,6448,212,187,23,24107,8862 +2025,27,2009,444,87587,634,18,5437,179,158,19,19852,7473 +2025,27,2010,209,41248,298,9,2563,84,74,9,9147,3522 +2025,27,2011,283,55752,403,12,3467,114,101,12,10477,4765 +2025,27,2012,431,84798,613,18,5278,173,153,19,15548,7255 +2025,27,2013,435,85478,618,18,5325,175,155,19,15270,7320 +2025,27,2014,541,106378,769,22,6627,217,192,24,18540,9109 +2025,27,2015,612,120355,870,25,7498,246,218,27,20387,10306 +2025,27,2016,690,135761,982,28,8458,278,246,30,21161,11626 +2025,27,2017,785,154380,1116,32,9618,316,279,34,23382,13220 +2025,27,2018,1151,226499,1638,47,14111,463,410,50,33067,19396 +2025,27,2019,1319,259531,1877,54,16169,531,469,57,36674,22224 +2025,27,2020,1541,303114,2192,63,18884,620,548,67,41156,25956 +2025,27,2021,1827,359414,2599,74,22392,735,650,80,46920,30777 +2025,27,2022,2198,432332,3126,89,26935,884,782,96,53790,37022 +2025,27,2023,2855,561653,4061,116,34992,1148,1016,124,66388,48096 +2025,27,2024,3899,766954,5545,159,47782,1568,1387,170,85116,65676 +2025,27,2025,7369,1449693,10482,300,90317,2964,2622,321,145723,124141 +2025,28,1995,156,164641,1362,18,5560,145,128,15,75875,6380 +2025,28,1996,19,20474,169,2,691,18,16,2,8872,793 +2025,28,1997,23,24389,202,2,824,21,19,2,9694,945 +2025,28,1998,30,31821,263,3,1075,28,25,3,9724,1233 +2025,28,1999,44,46714,386,4,1577,41,36,5,12838,1810 +2025,28,2000,64,67543,559,6,2281,59,52,7,17488,2617 +2025,28,2001,86,88341,721,8,3021,84,75,9,22298,3521 +2025,28,2002,110,113148,923,10,3870,108,95,12,27355,4510 +2025,28,2003,145,149113,1217,13,5100,142,126,15,34641,5944 +2025,28,2004,139,103970,817,13,4001,136,120,15,30492,5690 +2025,28,2005,175,131270,1031,16,5051,172,152,18,37759,7184 +2025,28,2006,497,150889,1184,18,5805,198,175,21,32435,8258 +2025,28,2007,530,160788,1261,19,6185,211,186,23,33838,8800 +2025,28,2008,448,86642,620,16,4889,178,158,19,25267,7440 +2025,28,2009,378,73058,523,14,4122,150,133,16,20752,6274 +2025,28,2010,178,34431,246,7,1943,71,63,8,9540,2957 +2025,28,2011,241,46572,333,9,2629,96,85,10,11298,4001 +2025,28,2012,367,70888,507,13,4002,146,129,16,16698,6090 +2025,28,2013,370,71509,512,14,4038,147,130,16,16325,6145 +2025,28,2014,460,88994,637,17,5025,183,162,20,19730,7647 +2025,28,2015,521,100687,721,19,5685,207,183,22,21578,8652 +2025,28,2016,587,113576,813,21,6413,234,207,25,22481,9760 +2025,28,2017,668,129153,924,24,7293,266,235,29,24672,11098 +2025,28,2018,980,189487,1356,36,10699,390,345,42,34585,16283 +2025,28,2019,1123,217121,1554,41,12260,446,395,48,38037,18658 +2025,28,2020,1311,253582,1815,48,14319,521,461,56,42238,21791 +2025,28,2021,1555,300680,2152,57,16978,618,547,66,47621,25838 +2025,28,2022,1870,361684,2588,68,20423,744,658,80,53822,31080 +2025,28,2023,2430,469872,3363,89,26531,966,855,104,65343,40377 +2025,28,2024,3318,641625,4592,121,36230,1319,1167,142,81966,55136 +2025,28,2025,6272,1212795,8680,229,68481,2494,2206,268,135054,104218 +2025,29,1995,520,533576,4433,57,19347,475,420,51,244439,20846 +2025,29,1996,65,66353,551,6,2406,59,52,6,28352,2592 +2025,29,1997,77,79041,657,7,2866,70,62,8,31023,3088 +2025,29,1998,100,103128,857,9,3739,92,81,10,31578,4029 +2025,29,1999,148,151393,1258,13,5489,135,119,15,41823,5915 +2025,29,2000,213,218895,1819,19,7937,195,172,22,56927,8552 +2025,29,2001,287,293093,2410,25,10522,281,249,30,72907,11506 +2025,29,2002,368,375396,3087,32,13477,360,319,38,89407,14737 +2025,29,2003,484,494718,4069,42,17761,475,420,51,113183,19421 +2025,29,2004,464,345043,2735,40,13935,455,402,48,99474,18592 +2025,29,2005,585,435641,3454,51,17593,574,508,61,123157,23473 +2025,29,2006,1661,500750,3954,59,20214,660,584,70,101190,26981 +2025,29,2007,1770,533604,4213,62,21541,703,622,75,105592,28752 +2025,29,2008,1497,287958,2084,53,17028,594,526,63,78366,24309 +2025,29,2009,1262,242810,1757,44,14358,501,443,53,64372,20498 +2025,29,2010,595,114409,828,21,6768,236,209,25,29595,9662 +2025,29,2011,805,154720,1119,28,9156,320,283,34,34293,13071 +2025,29,2012,1225,235452,1703,43,13939,486,430,52,50711,19900 +2025,29,2013,1236,237466,1717,44,14064,491,434,52,49606,20078 +2025,29,2014,1539,295529,2137,54,17503,611,540,65,59989,24987 +2025,29,2015,1741,334359,2418,61,19802,691,611,74,65658,28270 +2025,29,2016,1964,377159,2728,69,22337,779,689,83,67953,31889 +2025,29,2017,2233,428885,3102,79,25401,886,784,94,74659,36262 +2025,29,2018,3276,629241,4551,115,37267,1300,1150,139,104781,53202 +2025,29,2019,3754,721007,5215,132,42701,1490,1318,159,115405,60961 +2025,29,2020,4384,842086,6090,155,49872,1740,1539,185,128352,71198 +2025,29,2021,5198,998491,7221,183,59135,2063,1825,220,144992,84422 +2025,29,2022,6253,1201067,8687,220,71133,2482,2196,264,164252,101550 +2025,29,2023,8123,1560338,11285,286,92410,3225,2853,344,200010,131927 +2025,29,2024,11093,2130690,15410,391,126189,4403,3895,469,251906,180150 +2025,29,2025,20967,4027410,29128,739,238522,8323,7363,887,418081,340518 +2025,30,1995,42,39628,298,4,1623,36,32,4,20073,1542 +2025,30,1996,5,4928,37,0,202,4,4,0,2361,192 +2025,30,1997,6,5870,44,0,240,5,5,1,2585,228 +2025,30,1998,8,7659,58,1,314,7,6,1,2708,298 +2025,30,1999,12,11244,85,1,460,10,9,1,3596,437 +2025,30,2000,17,16257,122,1,666,15,13,2,4869,632 +2025,30,2001,23,20938,162,2,886,19,17,2,6209,851 +2025,30,2002,29,26817,207,2,1135,25,22,3,7580,1090 +2025,30,2003,39,35341,273,3,1496,33,29,4,9556,1436 +2025,30,2004,37,24674,185,3,1174,31,28,4,8503,1375 +2025,30,2005,47,31153,233,3,1483,39,35,5,10508,1736 +2025,30,2006,133,35809,265,4,1703,45,40,5,8285,1995 +2025,30,2007,142,38158,282,4,1815,48,43,6,8621,2126 +2025,30,2008,120,20716,142,4,1435,41,36,5,6515,1798 +2025,30,2009,101,17468,119,3,1210,34,30,4,5336,1516 +2025,30,2010,48,8225,56,1,570,16,14,2,2446,715 +2025,30,2011,65,11114,76,2,771,22,19,3,2773,967 +2025,30,2012,98,16901,115,3,1174,33,29,4,4083,1472 +2025,30,2013,99,17032,116,3,1185,34,30,4,3976,1485 +2025,30,2014,123,21197,145,4,1475,42,37,5,4788,1848 +2025,30,2015,140,23982,164,4,1669,47,42,6,5214,2091 +2025,30,2016,157,27052,184,5,1882,53,47,6,5332,2358 +2025,30,2017,179,30762,210,5,2140,61,54,7,5823,2682 +2025,30,2018,263,45133,308,8,3140,89,79,11,8118,3935 +2025,30,2019,301,51715,353,9,3598,102,90,12,8872,4508 +2025,30,2020,351,60399,412,10,4202,119,105,14,9782,5265 +2025,30,2021,417,71617,488,12,4983,141,125,17,10933,6243 +2025,30,2022,501,86147,587,15,5994,170,150,20,12227,7510 +2025,30,2023,651,111916,763,19,7786,221,195,27,14646,9757 +2025,30,2024,889,152824,1042,26,10633,301,266,36,18034,13323 +2025,30,2025,1680,288868,1969,49,20098,569,504,68,28708,25183 +2025,31,1995,249,269025,2512,36,10074,241,213,26,123698,10571 +2025,31,1996,31,33455,312,4,1253,30,26,3,14718,1315 +2025,31,1997,37,39852,372,4,1492,36,32,4,16208,1566 +2025,31,1998,48,51996,485,6,1947,47,41,5,17301,2043 +2025,31,1999,71,76331,713,8,2858,68,60,8,23193,2999 +2025,31,2000,102,110365,1030,12,4133,99,87,11,31592,4337 +2025,31,2001,137,147524,1365,16,5481,143,126,15,40470,5835 +2025,31,2002,176,188951,1748,20,7020,183,162,19,49657,7473 +2025,31,2003,232,249010,2304,27,9252,241,213,26,62896,9848 +2025,31,2004,222,173746,1552,26,7260,230,204,24,55235,9428 +2025,31,2005,280,219367,1959,32,9166,291,257,31,68403,11903 +2025,31,2006,795,252152,2237,37,10529,334,296,35,57082,13682 +2025,31,2007,847,268696,2383,40,11220,356,315,38,59572,14580 +2025,31,2008,716,145181,1179,33,8870,301,266,32,44207,12327 +2025,31,2009,604,122419,994,28,7480,254,225,27,36318,10394 +2025,31,2010,285,57664,468,13,3526,120,106,13,16698,4900 +2025,31,2011,385,77957,633,18,4770,162,143,17,19497,6629 +2025,31,2012,586,118597,962,27,7261,246,218,26,28828,10091 +2025,31,2013,592,119574,970,28,7326,249,220,26,28197,10181 +2025,31,2014,736,148811,1207,34,9118,309,274,33,34099,12671 +2025,31,2015,833,168363,1366,39,10316,350,310,37,37320,14336 +2025,31,2016,940,189914,1541,44,11636,395,349,42,38838,16171 +2025,31,2017,1068,215961,1752,50,13232,449,397,48,42659,18389 +2025,31,2018,1567,316848,2571,73,19413,659,583,70,59948,26979 +2025,31,2019,1796,363056,2945,84,22244,755,668,80,66001,30913 +2025,31,2020,2098,424024,3440,98,25980,881,780,93,73472,36105 +2025,31,2021,2487,502780,4079,116,30805,1045,924,111,82947,42811 +2025,31,2022,2992,604785,4907,140,37055,1257,1112,133,94003,51496 +2025,31,2023,3887,785691,6374,182,48139,1633,1445,173,114347,66900 +2025,31,2024,5308,1072886,8704,248,65736,2230,1973,237,143812,91354 +2025,31,2025,10033,2027960,16453,469,124253,4215,3729,447,238073,172676 +2025,32,1995,127,132782,1192,14,5507,118,105,13,45644,5221 +2025,32,1996,16,16512,148,1,685,15,13,2,5472,649 +2025,32,1997,19,19670,177,2,816,18,15,2,6044,773 +2025,32,1998,25,25664,230,2,1064,23,20,3,6432,1009 +2025,32,1999,36,37675,338,3,1562,34,30,4,8657,1481 +2025,32,2000,52,54473,489,4,2259,49,43,6,11860,2142 +2025,32,2001,70,75763,734,6,3029,72,64,7,15758,2882 +2025,32,2002,90,97038,940,8,3879,93,82,9,19447,3691 +2025,32,2003,119,127882,1239,10,5113,122,108,13,24768,4864 +2025,32,2004,113,89178,832,10,4011,117,103,12,21250,4657 +2025,32,2005,143,112593,1051,12,5064,147,130,15,26378,5879 +2025,32,2006,407,129421,1204,14,5819,169,150,17,23644,6758 +2025,32,2007,433,137912,1283,15,6201,181,160,19,24747,7201 +2025,32,2008,366,74207,630,13,4899,153,135,16,17806,6089 +2025,32,2009,309,62572,532,11,4131,129,114,13,14672,5134 +2025,32,2010,146,29487,250,5,1947,61,54,6,6766,2420 +2025,32,2011,197,39880,339,7,2634,82,73,8,8169,3274 +2025,32,2012,300,60697,515,10,4010,125,110,13,12123,4984 +2025,32,2013,303,61223,520,10,4046,126,111,13,11906,5029 +2025,32,2014,377,76192,647,13,5035,157,139,16,14452,6258 +2025,32,2015,426,86203,732,15,5697,177,157,18,15887,7081 +2025,32,2016,481,97238,825,17,6426,200,177,21,16806,7987 +2025,32,2017,547,110574,939,19,7308,228,201,23,18551,9082 +2025,32,2018,802,162229,1377,28,10721,334,295,34,26235,13325 +2025,32,2019,919,185888,1578,32,12285,383,338,39,29060,15269 +2025,32,2020,1073,217104,1843,37,14348,447,395,46,32594,17833 +2025,32,2021,1273,257428,2185,44,17013,530,469,54,37096,21145 +2025,32,2022,1531,309656,2629,53,20465,637,564,65,42473,25435 +2025,32,2023,1989,402281,3415,69,26586,828,732,85,52284,33043 +2025,32,2024,2716,549327,4663,94,36304,1131,1000,116,66804,45121 +2025,32,2025,5133,1038334,8814,178,68621,2137,1890,219,113708,85288 +2025,33,1995,889,935878,7917,106,35608,822,727,89,353790,36002 +2025,33,1996,110,116381,985,10,4428,102,90,11,41262,4477 +2025,33,1997,132,138636,1173,12,5275,122,108,14,45545,5333 +2025,33,1998,172,180883,1530,16,6882,159,141,18,49081,6958 +2025,33,1999,252,265539,2246,24,10103,233,206,27,66035,10215 +2025,33,2000,365,383935,3248,34,14608,337,298,39,90103,14770 +2025,33,2001,490,500264,4183,46,19366,479,424,52,114838,19871 +2025,33,2002,628,640744,5357,59,24804,613,542,67,141061,25451 +2025,33,2003,828,844408,7060,78,32688,808,715,88,178856,33540 +2025,33,2004,792,589346,4759,75,25653,774,684,84,156338,32108 +2025,33,2005,1000,744089,6009,95,32389,977,864,106,193693,40539 +2025,33,2006,2840,855298,6850,109,37202,1123,993,122,153295,46598 +2025,33,2007,3026,911413,7299,116,39642,1196,1058,130,160220,49655 +2025,33,2008,2558,492651,3616,98,31337,1012,895,110,117328,41983 +2025,33,2009,2157,415410,3049,83,26424,853,755,93,96541,35400 +2025,33,2010,1017,195635,1435,39,12455,402,356,44,44450,16687 +2025,33,2011,1376,264427,1939,53,16850,544,481,59,50538,22575 +2025,33,2012,2094,402195,2948,80,25653,827,732,90,74931,34368 +2025,33,2013,2113,405425,2971,81,25882,835,738,91,73512,34675 +2025,33,2014,2630,504555,3698,101,32211,1039,919,113,89163,43153 +2025,33,2015,2975,570850,4184,114,36443,1175,1040,128,97931,48823 +2025,33,2016,3356,643921,4719,128,41108,1326,1173,144,101314,55073 +2025,33,2017,3816,732234,5366,146,46746,1507,1333,164,111796,62626 +2025,33,2018,5599,1074300,7873,214,68583,2212,1956,240,157886,91882 +2025,33,2019,6416,1230974,9021,245,78585,2534,2242,275,174825,105282 +2025,33,2020,7493,1437692,10536,287,91782,2960,2618,322,195847,122962 +2025,33,2021,8885,1704721,12493,340,108829,3509,3104,381,222802,145800 +2025,33,2022,10687,2050578,15028,409,130909,4221,3734,459,254793,175381 +2025,33,2023,13884,2663959,19523,531,170067,5484,4851,596,313489,227842 +2025,33,2024,18959,3637717,26659,725,232231,7489,6625,814,400292,311125 +2025,33,2025,35836,6875977,50391,1371,438961,14155,12522,1538,680565,588085 +2025,34,1995,1474,1643164,16480,270,55079,1470,1301,160,887320,65405 +2025,34,1996,183,204335,2049,27,6849,183,162,20,101009,8133 +2025,34,1997,218,243410,2441,32,8159,218,193,24,110369,9689 +2025,34,1998,285,317585,3185,41,10645,284,251,32,111301,12641 +2025,34,1999,418,466219,4676,61,15628,417,369,48,146975,18558 +2025,34,2000,605,674093,6761,88,22596,603,534,70,200014,26832 +2025,34,2001,814,832111,10039,118,29704,802,710,94,262447,36099 +2025,34,2002,1042,1065778,12858,152,38045,1027,909,120,322137,46236 +2025,34,2003,1373,1404542,16945,200,50138,1354,1198,158,408160,60933 +2025,34,2004,1315,980004,11390,191,39342,1296,1147,151,355054,58331 +2025,34,2005,1660,1237324,14380,241,49672,1636,1448,191,439689,73647 +2025,34,2006,4711,1422247,16471,277,57063,1881,1664,219,346927,84654 +2025,34,2007,5020,1515560,17551,296,60806,2004,1773,234,362291,90208 +2025,34,2008,4245,821553,8683,250,48086,1695,1499,198,262758,76270 +2025,34,2009,3579,692747,7321,211,40547,1429,1264,167,215915,64312 +2025,34,2010,1687,326314,3449,99,19113,673,596,79,99301,30315 +2025,34,2011,2282,441153,4664,134,25857,911,806,106,112253,41012 +2025,34,2012,3475,671141,7098,205,39364,1387,1227,162,166136,62436 +2025,34,2013,3506,676677,7158,206,39716,1399,1238,163,162668,62994 +2025,34,2014,4363,842133,8908,257,49427,1741,1540,203,196896,78397 +2025,34,2015,4936,952781,10079,291,55921,1970,1743,230,215736,88698 +2025,34,2016,5568,1074741,11369,328,63079,2222,1966,259,221166,100051 +2025,34,2017,6332,1222139,12928,373,71731,2527,2235,295,243372,113773 +2025,34,2018,9290,1793066,18968,547,105240,3707,3279,432,341856,166923 +2025,34,2019,10645,2054563,21734,627,120588,4248,3758,495,377275,191266 +2025,34,2020,12432,2399585,25384,732,140838,4961,4389,579,420222,223386 +2025,34,2021,14742,2845272,30099,868,166997,5882,5204,686,476010,264877 +2025,34,2022,17732,3422528,36205,1044,200877,7076,6259,825,540653,318615 +2025,34,2023,23037,4446298,47035,1356,260965,9192,8132,1072,661134,413921 +2025,34,2024,31457,6071546,64228,1852,356355,12553,11104,1464,837381,565222 +2025,34,2025,59460,11476396,121403,3501,673579,23727,20989,2767,1403739,1068377 +2025,35,1995,159,154855,1218,15,6279,138,122,15,99171,6013 +2025,35,1996,20,19257,151,2,781,17,15,2,11840,748 +2025,35,1997,24,22939,180,2,930,20,18,2,12886,891 +2025,35,1998,31,29930,235,2,1214,27,24,3,12944,1162 +2025,35,1999,45,43937,346,3,1781,39,35,5,16989,1706 +2025,35,2000,65,63528,500,5,2576,57,50,7,22958,2467 +2025,35,2001,88,85100,662,7,3417,82,73,9,29257,3319 +2025,35,2002,112,108997,848,9,4376,105,93,11,35672,4251 +2025,35,2003,148,143642,1118,11,5767,138,122,15,44907,5602 +2025,35,2004,142,100174,751,11,4524,132,117,14,40186,5363 +2025,35,2005,179,126477,948,14,5712,167,148,18,49633,6771 +2025,35,2006,508,145379,1087,16,6564,192,170,21,42424,7783 +2025,35,2007,541,154918,1158,17,6994,205,181,22,44076,8294 +2025,35,2008,458,83741,577,14,5530,173,153,19,33784,7012 +2025,35,2009,386,70612,486,12,4663,146,129,16,27624,5913 +2025,35,2010,182,33274,229,6,2198,69,61,7,12644,2787 +2025,35,2011,246,45001,310,8,2973,93,82,10,14908,3771 +2025,35,2012,375,68487,472,12,4527,142,125,15,21894,5740 +2025,35,2013,378,69078,476,12,4567,143,127,16,21254,5792 +2025,35,2014,471,85968,592,15,5684,178,157,19,25514,7208 +2025,35,2015,532,97263,670,17,6431,201,178,22,27678,8155 +2025,35,2016,600,109714,755,19,7254,227,201,25,28565,9199 +2025,35,2017,683,124760,859,21,8249,258,229,28,31037,10460 +2025,35,2018,1002,183043,1260,31,12102,379,335,41,42997,15347 +2025,35,2019,1148,209737,1444,36,13867,434,384,47,46684,17585 +2025,35,2020,1341,244958,1686,42,16195,507,449,55,51052,20538 +2025,35,2021,1590,290456,2000,50,19203,601,532,65,56528,24352 +2025,35,2022,1912,349384,2405,60,23099,723,640,79,62455,29293 +2025,35,2023,2484,453894,3125,77,30009,940,831,102,73671,38055 +2025,35,2024,3392,619806,4267,106,40978,1283,1135,139,88758,51965 +2025,35,2025,6412,1171551,8066,200,77457,2426,2146,264,135353,98225 +2025,36,1995,406,425002,3827,60,15756,382,338,41,263034,16617 +2025,36,1996,51,52851,476,6,1959,47,42,5,30296,2066 +2025,36,1997,60,62958,567,7,2334,57,50,6,33147,2462 +2025,36,1998,79,82143,740,9,3045,74,65,8,34521,3212 +2025,36,1999,115,120587,1086,13,4470,108,96,12,45783,4715 +2025,36,2000,167,174354,1570,19,6464,157,139,18,61988,6817 +2025,36,2001,224,229658,2108,26,8641,224,198,24,79239,9171 +2025,36,2002,287,294149,2700,33,11067,287,254,31,96772,11747 +2025,36,2003,379,387646,3558,44,14585,379,335,41,122017,15481 +2025,36,2004,362,270700,2403,42,11450,362,321,39,108470,14820 +2025,36,2005,458,341777,3033,53,14457,458,405,49,134057,18711 +2025,36,2006,1299,392857,3448,61,16598,526,465,57,100559,21507 +2025,36,2007,1384,418632,3674,65,17687,560,496,60,104708,22918 +2025,36,2008,1170,227858,1853,55,13996,474,419,51,78740,19377 +2025,36,2009,987,192133,1562,46,11801,400,353,43,64526,16339 +2025,36,2010,465,90448,735,22,5563,188,167,20,29592,7702 +2025,36,2011,629,122205,993,30,7526,255,225,27,32640,10419 +2025,36,2012,958,185802,1509,45,11457,387,343,42,48127,15862 +2025,36,2013,966,187221,1521,46,11560,391,346,42,46930,16004 +2025,36,2014,1203,232998,1892,57,14386,486,430,53,56591,19918 +2025,36,2015,1361,263612,2141,64,16276,550,487,59,61726,22535 +2025,36,2016,1535,297355,2415,72,18360,621,549,67,62507,25419 +2025,36,2017,1746,338137,2746,82,20878,706,624,76,68422,28905 +2025,36,2018,2561,496099,4029,121,30631,1036,916,112,95563,42409 +2025,36,2019,2934,568449,4617,138,35098,1187,1050,128,104765,48593 +2025,36,2020,3427,663909,5392,161,40992,1386,1226,150,115826,56754 +2025,36,2021,4064,787219,6394,191,48605,1643,1454,178,130018,67295 +2025,36,2022,4888,946933,7691,230,58467,1977,1749,214,146080,80948 +2025,36,2023,6350,1230185,9991,299,75955,2568,2272,277,176174,105161 +2025,36,2024,8672,1679855,13643,409,103719,3507,3102,379,218997,143601 +2025,36,2025,16391,3175246,25788,772,196050,6628,5863,716,354888,271433 +2025,37,1995,64,66436,542,7,2289,58,52,6,31484,2569 +2025,37,1996,8,8262,67,1,285,7,6,1,3647,319 +2025,37,1997,9,9842,80,1,339,9,8,1,3983,381 +2025,37,1998,12,12841,105,1,442,11,10,1,3992,496 +2025,37,1999,18,18850,154,2,649,17,15,2,5265,729 +2025,37,2000,26,27255,222,2,939,24,21,3,7165,1054 +2025,37,2001,35,35640,287,3,1244,34,30,4,9130,1418 +2025,37,2002,45,45648,367,4,1593,44,39,5,11191,1816 +2025,37,2003,59,60157,484,5,2100,57,51,6,14160,2393 +2025,37,2004,57,41948,325,5,1647,55,49,6,12482,2291 +2025,37,2005,72,52962,411,6,2079,69,61,8,15451,2892 +2025,37,2006,203,60878,471,7,2390,80,71,9,12896,3325 +2025,37,2007,217,64872,502,8,2546,85,75,9,13451,3543 +2025,37,2008,183,34991,247,7,2013,72,64,8,10044,2995 +2025,37,2009,155,29505,209,6,1697,61,54,7,8247,2526 +2025,37,2010,73,13904,98,3,800,29,25,3,3790,1191 +2025,37,2011,99,18806,133,4,1082,39,34,4,4426,1611 +2025,37,2012,150,28624,202,5,1648,59,52,6,6541,2452 +2025,37,2013,151,28873,204,5,1662,59,53,6,6393,2474 +2025,37,2014,188,35933,254,7,2069,74,65,8,7726,3079 +2025,37,2015,213,40654,288,8,2341,84,74,9,8448,3483 +2025,37,2016,240,45859,324,9,2640,94,83,10,8752,3929 +2025,37,2017,273,52148,369,10,3003,107,95,12,9604,4468 +2025,37,2018,401,76509,541,14,4405,157,139,17,13456,6556 +2025,37,2019,460,87667,620,16,5048,180,160,19,14798,7512 +2025,37,2020,537,102389,724,19,5895,211,186,23,16424,8773 +2025,37,2021,636,121406,859,23,6990,250,221,27,18515,10402 +2025,37,2022,765,146037,1033,27,8408,300,266,32,20917,12513 +2025,37,2023,994,189720,1342,35,10924,390,345,42,25391,16256 +2025,37,2024,1358,259069,1832,48,14916,533,471,58,31845,22198 +2025,37,2025,2567,489690,3463,92,28195,1007,891,109,52452,41958 +2025,38,1995,42,45657,371,5,1750,39,35,4,19585,1716 +2025,38,1996,5,5678,46,1,218,5,4,1,2292,213 +2025,38,1997,6,6763,55,1,259,6,5,1,2523,254 +2025,38,1998,8,8825,72,1,338,8,7,1,2707,332 +2025,38,1999,12,12955,105,1,496,11,10,1,3627,487 +2025,38,2000,17,18731,152,2,718,16,14,2,4931,704 +2025,38,2001,23,23954,191,2,974,23,20,2,6246,947 +2025,38,2002,30,30680,245,3,1247,29,26,3,7649,1213 +2025,38,2003,39,40432,323,4,1644,38,34,4,9669,1598 +2025,38,2004,37,28252,219,4,1290,37,32,4,8541,1530 +2025,38,2005,47,35670,276,5,1629,46,41,5,10568,1932 +2025,38,2006,134,41001,313,5,1871,53,47,6,8118,2221 +2025,38,2007,142,43690,334,6,1993,57,50,6,8468,2366 +2025,38,2008,120,23734,167,5,1576,48,42,5,6304,2001 +2025,38,2009,102,20013,141,4,1329,40,36,4,5177,1687 +2025,38,2010,48,9417,66,2,626,19,17,2,2378,795 +2025,38,2011,65,12717,89,3,848,26,23,3,2661,1076 +2025,38,2012,99,19327,136,4,1290,39,35,4,3933,1638 +2025,38,2013,99,19466,137,4,1302,40,35,4,3846,1652 +2025,38,2014,124,24225,170,5,1620,49,44,5,4652,2056 +2025,38,2015,140,27408,192,6,1833,56,49,6,5092,2327 +2025,38,2016,158,30917,217,6,2068,63,56,7,5216,2624 +2025,38,2017,180,35157,247,7,2351,71,63,8,5734,2984 +2025,38,2018,264,51581,362,10,3450,105,93,11,8058,4378 +2025,38,2019,302,59103,415,12,3953,120,106,13,8880,5017 +2025,38,2020,353,69028,485,14,4617,140,124,15,9889,5860 +2025,38,2021,418,81849,575,17,5474,166,147,18,11179,6948 +2025,38,2022,503,98455,691,20,6585,200,177,22,12682,8357 +2025,38,2023,653,127905,898,26,8554,260,230,28,15458,10857 +2025,38,2024,892,174659,1227,35,11681,355,314,38,19496,14826 +2025,38,2025,1687,330138,2319,67,22080,671,593,72,32436,28024 +2025,39,1995,658,694547,5932,77,24983,607,537,66,268409,26620 +2025,39,1996,82,86370,738,8,3107,75,67,8,31251,3310 +2025,39,1997,98,102886,879,9,3701,90,80,10,34408,3943 +2025,39,1998,127,134240,1147,12,4829,117,104,13,36277,5145 +2025,39,1999,187,197066,1683,17,7089,172,152,20,48582,7553 +2025,39,2000,270,284931,2434,25,10249,249,220,29,66335,10921 +2025,39,2001,363,373722,3141,34,13667,359,318,38,84630,14692 +2025,39,2002,465,478667,4024,43,17505,460,407,49,104013,18818 +2025,39,2003,613,630814,5303,57,23069,606,536,65,131953,24800 +2025,39,2004,587,440064,3568,54,18101,581,514,62,115175,23741 +2025,39,2005,741,555611,4504,69,22854,733,648,78,142729,29974 +2025,39,2006,2104,638649,5151,79,26255,843,745,90,116153,34454 +2025,39,2007,2242,680551,5488,84,27978,898,794,96,121407,36715 +2025,39,2008,1895,367191,2709,71,22114,759,672,81,88938,31042 +2025,39,2009,1598,309621,2284,60,18647,640,566,69,73188,26175 +2025,39,2010,753,145865,1076,28,8790,302,267,32,33705,12338 +2025,39,2011,1019,197225,1454,38,11891,408,361,44,38882,16692 +2025,39,2012,1551,300085,2212,58,18103,621,549,67,57647,25411 +2025,39,2013,1565,302601,2231,59,18265,627,554,67,56551,25639 +2025,39,2014,1948,376590,2776,73,22731,780,690,84,68579,31907 +2025,39,2015,2204,426071,3141,83,25718,882,780,94,75309,36100 +2025,39,2016,2486,480610,3543,93,29010,995,880,107,78220,40721 +2025,39,2017,2827,546524,4029,106,32988,1132,1001,121,86279,46306 +2025,39,2018,4148,801835,5911,156,48399,1660,1469,178,121755,67937 +2025,39,2019,4753,918772,6773,178,55457,1903,1683,204,134755,77845 +2025,39,2020,5551,1073060,7910,208,64770,2222,1966,238,150837,90918 +2025,39,2021,6582,1272368,9379,247,76800,2635,2331,282,171495,107804 +2025,39,2022,7917,1530508,11282,297,92382,3169,2804,339,195934,129676 +2025,39,2023,10285,1988321,14657,386,120015,4117,3642,441,240870,168465 +2025,39,2024,14045,2715113,20015,527,163884,5622,4974,602,307226,230044 +2025,39,2025,26548,5132081,37832,997,309773,10627,9401,1138,521346,434828 +2025,40,1995,562,605947,5516,76,20597,541,479,58,273019,23907 +2025,40,1996,70,75353,686,8,2561,67,60,7,31818,2973 +2025,40,1997,83,89762,817,9,3051,80,71,9,34856,3541 +2025,40,1998,109,117115,1066,12,3981,105,93,12,35287,4621 +2025,40,1999,159,171927,1565,17,5844,154,136,17,46796,6783 +2025,40,2000,230,248584,2263,25,8450,222,196,25,63918,9808 +2025,40,2001,310,333138,3001,33,11202,321,284,34,82081,13195 +2025,40,2002,397,426686,3844,43,14348,411,364,43,100933,16900 +2025,40,2003,523,562311,5066,56,18908,542,479,57,128110,22272 +2025,40,2004,501,392101,3402,54,14833,519,459,55,111950,21321 +2025,40,2005,632,495055,4295,68,18728,655,579,69,138771,26920 +2025,40,2006,1795,569042,4926,78,21520,753,666,79,118920,30943 +2025,40,2007,1913,606377,5250,83,22932,802,709,85,124264,32973 +2025,40,2008,1617,326721,2579,70,18125,678,600,71,91690,27878 +2025,40,2009,1364,275496,2175,59,15284,572,506,60,75438,23507 +2025,40,2010,643,129831,1025,28,7204,269,238,28,34739,11081 +2025,40,2011,870,175603,1386,38,9746,365,322,38,41115,14991 +2025,40,2012,1324,267275,2110,58,14838,555,491,59,60914,22821 +2025,40,2013,1336,269606,2128,58,14970,560,495,59,59710,23026 +2025,40,2014,1662,335527,2648,72,18631,697,616,73,72349,28656 +2025,40,2015,1881,379612,2996,82,21079,788,697,83,79369,32421 +2025,40,2016,2122,428204,3380,92,23777,889,787,94,82959,36571 +2025,40,2017,2413,486931,3843,105,27038,1011,894,107,91372,41586 +2025,40,2018,3540,714404,5639,154,39669,1483,1312,156,128659,61014 +2025,40,2019,4056,818591,6461,177,45454,1700,1504,179,142142,69912 +2025,40,2020,4737,956056,7546,206,53087,1985,1756,209,158710,81652 +2025,40,2021,5617,1133630,8947,245,62947,2354,2082,248,180023,96818 +2025,40,2022,6756,1363623,10763,294,75718,2832,2505,299,205020,116460 +2025,40,2023,8777,1771518,13982,383,98367,3679,3254,388,251180,151297 +2025,40,2024,11986,2419062,19093,522,134324,5023,4444,530,318936,206600 +2025,40,2025,22655,4572489,36089,987,253898,9495,8399,1001,536998,390513 +2025,41,1995,752,812406,7317,107,32206,733,649,78,317360,32259 +2025,41,1996,94,101027,910,11,4005,91,81,10,37560,4012 +2025,41,1997,111,120346,1084,13,4771,109,96,12,41532,4779 +2025,41,1998,145,157019,1414,16,6225,142,125,16,45209,6235 +2025,41,1999,213,230506,2076,24,9138,208,184,23,61000,9153 +2025,41,2000,309,333282,3002,35,13212,301,266,34,83290,13234 +2025,41,2001,415,429592,3975,47,17594,395,349,46,106860,17805 +2025,41,2002,532,550226,5092,60,22534,506,448,59,131367,22805 +2025,41,2003,701,725120,6710,79,29697,667,590,77,166693,30053 +2025,41,2004,671,506094,4522,76,23305,638,565,74,145543,28770 +2025,41,2005,847,638978,5710,96,29425,806,713,93,180384,36324 +2025,41,2006,2405,734477,6507,110,33798,926,820,107,147956,41753 +2025,41,2007,2562,782665,6934,117,36015,987,873,114,154647,44492 +2025,41,2008,2166,423332,3426,99,28467,835,738,97,113427,37618 +2025,41,2009,1827,356960,2889,84,24004,704,623,81,93341,31720 +2025,41,2010,861,168107,1360,39,11315,332,293,38,42983,14952 +2025,41,2011,1165,227218,1838,53,15307,449,397,52,49791,20228 +2025,41,2012,1773,345598,2795,81,23303,683,604,79,73805,30794 +2025,41,2013,1789,348372,2817,82,23512,689,609,80,72386,31070 +2025,41,2014,2227,433553,3506,102,29261,857,758,99,87770,38667 +2025,41,2015,2519,490517,3967,115,33105,970,858,112,96365,43747 +2025,41,2016,2842,553306,4475,130,37343,1094,968,127,100402,49347 +2025,41,2017,3232,629190,5088,148,42464,1244,1100,144,110707,56115 +2025,41,2018,4741,923121,7465,217,62302,1825,1615,211,156320,82329 +2025,41,2019,5433,1057746,8554,249,71388,2091,1850,242,172925,94336 +2025,41,2020,6345,1235373,9991,290,83376,2443,2161,283,193618,110178 +2025,41,2021,7524,1464824,11846,344,98862,2896,2562,335,219978,130642 +2025,41,2022,9050,1762012,14250,414,118919,3484,3082,403,251291,157147 +2025,41,2023,11757,2289074,18512,538,154491,4526,4004,524,308569,204154 +2025,41,2024,16055,3125800,25279,735,210962,6180,5467,715,392985,278778 +2025,41,2025,30346,5908365,47782,1389,398758,11682,10334,1352,665143,526944 +2025,42,1995,348,383168,3470,50,13650,338,299,36,160246,14893 +2025,42,1996,43,47649,432,5,1697,42,37,5,18678,1852 +2025,42,1997,52,56760,514,6,2022,50,44,5,20563,2206 +2025,42,1998,67,74057,671,8,2638,65,58,7,21655,2878 +2025,42,1999,99,108717,985,11,3873,96,85,11,28993,4226 +2025,42,2000,143,157191,1424,16,5600,139,123,16,39590,6110 +2025,42,2001,192,205186,1835,22,7422,197,174,21,50510,8220 +2025,42,2002,246,262805,2351,28,9506,252,223,27,62082,10528 +2025,42,2003,324,346340,3098,37,12527,332,294,36,78764,13874 +2025,42,2004,310,241613,2084,35,9829,318,281,34,68861,13282 +2025,42,2005,392,305053,2631,45,12410,402,355,43,85340,16770 +2025,42,2006,1112,350645,3009,51,14257,462,408,50,69795,19276 +2025,42,2007,1185,373650,3207,55,15193,492,435,53,72950,20540 +2025,42,2008,1002,201742,1581,46,12010,416,368,45,53617,17367 +2025,42,2009,845,170112,1333,39,10127,351,310,38,44124,14644 +2025,42,2010,398,80141,628,18,4773,165,146,18,20322,6903 +2025,42,2011,539,108358,849,25,6458,224,198,24,23509,9338 +2025,42,2012,820,164870,1292,38,9831,340,301,37,34854,14217 +2025,42,2013,827,166251,1302,38,9919,343,304,37,34191,14344 +2025,42,2014,1030,206901,1621,47,12345,427,378,46,41462,17851 +2025,42,2015,1165,234086,1834,54,13967,484,428,52,45528,20197 +2025,42,2016,1314,264050,2069,61,15754,545,482,59,47329,22782 +2025,42,2017,1494,300264,2352,69,17915,620,549,67,52200,25906 +2025,42,2018,2193,440535,3451,101,26284,910,805,98,73656,38008 +2025,42,2019,2512,504781,3955,116,30117,1043,922,112,81509,43552 +2025,42,2020,2934,589547,4619,135,35175,1218,1077,131,91225,50865 +2025,42,2021,3479,699047,5477,160,41708,1444,1277,155,103699,60313 +2025,42,2022,4185,840873,6588,193,50170,1737,1536,186,118451,72549 +2025,42,2023,5437,1092398,8558,250,65177,2256,1996,242,145575,94250 +2025,42,2024,7424,1491704,11686,342,89002,3081,2726,331,185608,128701 +2025,42,2025,14033,2819607,22090,646,168230,5824,5152,625,314760,243270 +2025,44,1995,467,531267,5455,86,17765,479,424,52,196672,21267 +2025,44,1996,58,66066,678,8,2209,60,53,7,22642,2645 +2025,44,1997,69,78699,808,10,2632,71,63,8,25010,3150 +2025,44,1998,90,102682,1054,13,3434,93,82,10,26497,4110 +2025,44,1999,133,150738,1548,19,5040,136,120,15,35645,6034 +2025,44,2000,192,217947,2238,28,7288,197,174,22,48904,8725 +2025,44,2001,258,269081,3325,38,9583,262,231,30,65067,11738 +2025,44,2002,330,344642,4259,48,12274,335,296,39,80384,15034 +2025,44,2003,436,454189,5613,63,16176,442,391,51,102483,19813 +2025,44,2004,417,316869,3772,61,12692,423,374,49,87152,18967 +2025,44,2005,526,400069,4763,77,16025,534,472,61,108224,23947 +2025,44,2006,1494,459862,5455,88,18410,613,543,71,89059,27526 +2025,44,2007,1592,490032,5813,94,19618,654,578,75,93372,29332 +2025,44,2008,1346,264560,2850,79,15506,553,489,64,65269,24800 +2025,44,2009,1135,223081,2403,67,13075,466,412,54,53867,20912 +2025,44,2010,535,105090,1132,32,6163,220,194,25,24878,9857 +2025,44,2011,724,142086,1531,43,8338,297,263,34,28747,13336 +2025,44,2012,1102,216178,2330,65,12693,452,400,52,42791,20302 +2025,44,2013,1112,217979,2350,65,12807,456,404,53,42160,20483 +2025,44,2014,1384,271277,2925,81,15938,568,502,65,51336,25492 +2025,44,2015,1565,306920,3309,92,18032,642,568,74,56645,28841 +2025,44,2016,1766,346208,3732,104,20341,725,641,83,59145,32533 +2025,44,2017,2008,393689,4244,118,23130,824,729,95,65603,36995 +2025,44,2018,2946,577603,6227,173,33936,1209,1069,139,93184,54277 +2025,44,2019,3375,661839,7135,199,38885,1385,1225,160,103832,62193 +2025,44,2020,3942,772982,8333,232,45414,1618,1431,186,117138,72637 +2025,44,2021,4675,916551,9881,275,53849,1918,1697,221,134354,86128 +2025,44,2022,5623,1102504,11886,331,64775,2308,2041,266,155126,103602 +2025,44,2023,7305,1432290,15441,430,84150,2998,2652,345,193105,134592 +2025,44,2024,9975,1955835,21086,587,114910,4094,3621,472,250330,183790 +2025,44,2025,18855,3696905,39856,1110,217202,7738,6845,892,436598,347398 +2025,45,1995,908,1017046,9733,145,32264,903,799,97,488670,39843 +2025,45,1996,113,126475,1210,14,4012,112,99,12,57013,4955 +2025,45,1997,134,150660,1442,17,4779,134,118,15,62450,5902 +2025,45,1998,175,196571,1881,22,6236,175,154,19,63126,7701 +2025,45,1999,258,288569,2762,33,9154,256,227,29,83691,11305 +2025,45,2000,372,417234,3993,47,13236,370,328,42,114329,16345 +2025,45,2001,501,545686,5154,64,17535,527,466,57,146011,21991 +2025,45,2002,642,698919,6601,82,22459,675,597,72,179525,28166 +2025,45,2003,845,921076,8699,108,29597,889,786,95,227838,37118 +2025,45,2004,809,642242,5839,103,23217,851,753,91,199595,35534 +2025,45,2005,1022,810873,7373,130,29313,1075,951,115,247411,44864 +2025,45,2006,2900,932063,8463,149,33686,1235,1093,133,213065,51569 +2025,45,2007,3091,993215,9018,159,35896,1316,1164,141,222609,54952 +2025,45,2008,2613,535372,4423,135,28375,1113,984,119,164987,46461 +2025,45,2009,2203,451433,3730,113,23926,938,830,101,135734,39177 +2025,45,2010,1039,212751,1758,53,11278,442,391,47,62502,18467 +2025,45,2011,1405,287767,2378,72,15258,598,529,64,74159,24983 +2025,45,2012,2139,438007,3619,110,23228,911,806,98,109854,38034 +2025,45,2013,2158,441840,3651,111,23436,919,813,99,107662,38374 +2025,45,2014,2686,549875,4544,138,29166,1144,1012,123,130426,47757 +2025,45,2015,3039,622124,5141,156,32998,1294,1145,139,143048,54032 +2025,45,2016,3428,701759,5799,177,37222,1460,1291,157,149597,60948 +2025,45,2017,3898,798003,6594,201,42327,1660,1468,178,164715,69307 +2025,45,2018,5719,1170794,9674,295,62100,2435,2154,261,231849,101684 +2025,45,2019,6553,1341540,11085,337,71157,2790,2468,300,256042,116513 +2025,45,2020,7653,1566823,12947,394,83106,3259,2883,350,285757,136079 +2025,45,2021,9075,1857839,15351,467,98542,3864,3418,415,323957,161354 +2025,45,2022,10916,2234760,18466,562,118534,4648,4112,499,368699,194090 +2025,45,2023,14181,2903233,23989,730,153991,6038,5342,648,451349,252148 +2025,45,2024,19365,3964456,32758,997,210279,8246,7294,885,572494,344315 +2025,45,2025,36604,7493591,61919,1885,397468,15586,13787,1673,962127,650821 +2025,46,1995,138,154322,1361,19,5419,134,118,14,54034,5882 +2025,46,1996,17,19191,169,2,674,17,15,2,6341,731 +2025,46,1997,20,22860,202,2,803,20,18,2,7011,871 +2025,46,1998,27,29827,263,3,1047,26,23,3,7533,1137 +2025,46,1999,39,43786,386,4,1538,38,34,4,10158,1669 +2025,46,2000,56,63309,558,6,2223,55,49,6,13914,2413 +2025,46,2001,76,81257,703,8,3015,78,69,8,17679,3247 +2025,46,2002,97,104074,901,11,3862,99,88,11,21776,4158 +2025,46,2003,128,137155,1187,14,5089,131,116,14,27683,5480 +2025,46,2004,123,95718,800,14,3993,125,111,13,24068,5246 +2025,46,2005,155,120850,1009,17,5042,158,140,17,29856,6623 +2025,46,2006,440,138912,1153,20,5792,182,161,20,24593,7613 +2025,46,2007,468,148026,1229,21,6172,194,171,21,25742,8113 +2025,46,2008,396,79938,605,18,4878,164,145,18,18752,6859 +2025,46,2009,334,67405,510,15,4113,138,122,15,15456,5784 +2025,46,2010,157,31746,240,7,1939,65,58,7,7129,2726 +2025,46,2011,213,42912,325,10,2623,88,78,9,8282,3688 +2025,46,2012,324,65273,494,15,3993,134,119,14,12304,5615 +2025,46,2013,327,65801,498,15,4029,135,120,15,12098,5665 +2025,46,2014,407,81891,619,18,5014,168,149,18,14703,7050 +2025,46,2015,461,92650,701,21,5673,190,168,21,16188,7977 +2025,46,2016,520,104510,791,23,6399,215,190,23,16917,8998 +2025,46,2017,591,118843,899,27,7277,244,216,26,18715,10232 +2025,46,2018,867,174361,1319,39,10676,358,317,39,26516,15012 +2025,46,2019,993,199790,1511,45,12233,410,363,44,29452,17201 +2025,46,2020,1160,233340,1765,52,14287,479,424,52,33119,20090 +2025,46,2021,1376,276680,2093,62,16941,568,503,61,37829,23821 +2025,46,2022,1655,332813,2518,74,20378,684,605,74,43478,28654 +2025,46,2023,2150,432367,3271,97,26473,888,786,96,53803,37225 +2025,46,2024,2935,590409,4466,132,36150,1213,1073,131,69217,50832 +2025,46,2025,5548,1115987,8442,250,68331,2292,2028,247,119193,96082 +2025,47,1995,242,256051,2119,27,9085,225,199,24,97643,9913 +2025,47,1996,30,31841,263,3,1130,28,25,3,11434,1233 +2025,47,1997,36,37930,314,3,1346,33,29,4,12565,1468 +2025,47,1998,47,49489,410,4,1756,43,38,5,13021,1916 +2025,47,1999,69,72650,601,6,2578,64,56,7,17373,2813 +2025,47,2000,99,105043,869,9,3727,92,82,10,23734,4067 +2025,47,2001,133,137302,1121,12,4938,131,116,14,30293,5471 +2025,47,2002,171,175857,1436,15,6325,168,148,18,37246,7008 +2025,47,2003,225,231755,1893,20,8336,221,196,24,47269,9235 +2025,47,2004,215,161618,1272,19,6539,212,187,23,41266,8841 +2025,47,2005,272,204054,1606,24,8256,267,236,29,51149,11162 +2025,47,2006,772,234551,1840,28,9487,307,272,33,43348,12831 +2025,47,2007,823,249940,1961,30,10110,327,290,35,45299,13672 +2025,47,2008,696,134640,963,25,7989,277,245,30,33325,11560 +2025,47,2009,587,113530,812,21,6737,233,206,25,27418,9747 +2025,47,2010,277,53499,383,10,3175,110,97,12,12626,4595 +2025,47,2011,374,72355,517,13,4296,149,132,16,14862,6216 +2025,47,2012,570,110120,788,20,6540,227,200,24,22022,9463 +2025,47,2013,575,111072,794,21,6599,229,202,25,21589,9548 +2025,47,2014,715,138231,989,26,8212,284,252,31,26163,11882 +2025,47,2015,809,156393,1118,29,9291,322,285,35,28707,13443 +2025,47,2016,913,176412,1262,33,10480,363,321,39,29988,15164 +2025,47,2017,1038,200607,1435,37,11918,413,365,44,33037,17244 +2025,47,2018,1523,294321,2105,55,17485,606,536,65,46555,25300 +2025,47,2019,1745,337243,2412,63,20035,694,614,75,51448,28989 +2025,47,2020,2038,393877,2817,73,23399,810,717,87,57488,33858 +2025,47,2021,2416,467035,3340,87,27745,961,850,103,65231,40146 +2025,47,2022,2906,561787,4018,104,33375,1156,1022,124,74347,48291 +2025,47,2023,3776,729832,5220,136,43358,1502,1328,161,91130,62736 +2025,47,2024,5156,996607,7127,185,59206,2050,1814,220,115786,85668 +2025,47,2025,9745,1883780,13472,350,111911,3876,3428,417,195169,161929 +2025,48,1995,373,386588,3316,40,12839,346,306,37,154301,15309 +2025,48,1996,46,48074,412,4,1597,43,38,5,17871,1904 +2025,48,1997,55,57267,491,5,1902,51,45,6,19522,2268 +2025,48,1998,72,74718,641,6,2481,67,59,7,19191,2959 +2025,48,1999,106,109687,941,9,3643,98,87,11,25291,4344 +2025,48,2000,153,158594,1360,13,5267,142,126,16,34600,6280 +2025,48,2001,206,210719,1980,18,7106,208,184,22,45518,8450 +2025,48,2002,264,269890,2536,23,9102,266,235,28,56094,10822 +2025,48,2003,348,355678,3342,30,11995,351,310,37,71345,14262 +2025,48,2004,333,247970,2242,29,9408,336,297,35,61524,13653 +2025,48,2005,420,313079,2831,36,11879,424,375,44,76325,17238 +2025,48,2006,1192,359869,3252,42,13653,487,431,51,67365,19815 +2025,48,2007,1271,383480,3466,44,14548,519,459,54,70458,21115 +2025,48,2008,1074,206276,1698,37,11495,439,388,46,51003,17852 +2025,48,2009,906,173935,1431,32,9693,370,327,39,41993,15053 +2025,48,2010,427,81980,675,15,4569,174,154,18,19352,7096 +2025,48,2011,578,110898,913,20,6181,236,209,25,23189,9599 +2025,48,2012,880,168814,1389,31,9410,359,318,38,34385,14614 +2025,48,2013,887,170309,1402,31,9494,363,321,38,33735,14745 +2025,48,2014,1104,211951,1744,38,11816,451,399,47,40910,18350 +2025,48,2015,1249,239800,1974,44,13368,510,452,53,44923,20761 +2025,48,2016,1409,270496,2226,49,15080,576,509,60,47141,23419 +2025,48,2017,1603,307594,2532,56,17148,655,579,68,51977,26630 +2025,48,2018,2351,451287,3714,82,25159,961,850,100,73243,39071 +2025,48,2019,2694,517101,4256,94,28828,1101,974,115,81028,44769 +2025,48,2020,3147,603937,4971,110,33669,1285,1137,134,90577,52287 +2025,48,2021,3731,716110,5894,130,39922,1524,1348,159,102928,61998 +2025,48,2022,4488,861396,7090,156,48022,1833,1622,192,117437,74577 +2025,48,2023,5831,1119062,9211,203,62386,2382,2107,249,144269,96885 +2025,48,2024,7962,1528114,12577,278,85190,3253,2877,340,183846,132299 +2025,48,2025,15050,2888430,23774,525,161026,6148,5439,643,311483,250070 +2025,49,1995,805,828210,7099,100,32928,741,655,81,368222,32622 +2025,49,1996,100,102992,883,10,4095,92,82,10,43574,4057 +2025,49,1997,119,122687,1052,12,4878,110,97,12,47915,4833 +2025,49,1998,156,160074,1372,15,6364,143,127,16,50724,6305 +2025,49,1999,229,234990,2014,23,9343,210,186,24,67825,9256 +2025,49,2000,330,339766,2912,33,13508,304,269,35,92314,13383 +2025,49,2001,445,438064,3856,44,17987,399,353,47,118187,18005 +2025,49,2002,569,561077,4939,56,23038,511,452,61,144927,23062 +2025,49,2003,750,739419,6509,74,30361,674,596,80,183457,30392 +2025,49,2004,718,516029,4386,71,23824,645,571,77,161435,29094 +2025,49,2005,907,651522,5537,90,30080,815,721,97,199868,36733 +2025,49,2006,2574,748895,6315,103,34553,936,828,111,164315,42223 +2025,49,2007,2743,798029,6729,110,36820,998,883,118,171445,44994 +2025,49,2008,2319,431895,3334,93,29105,844,746,100,127491,38042 +2025,49,2009,1956,364180,2812,78,24542,711,629,84,104716,32077 +2025,49,2010,922,171518,1324,37,11568,335,297,40,48134,15120 +2025,49,2011,1247,231845,1789,50,15650,453,401,54,55801,20456 +2025,49,2012,1899,352658,2720,76,23826,690,610,82,82493,31141 +2025,49,2013,1916,355512,2742,77,24039,696,616,83,80671,31420 +2025,49,2014,2384,442439,3412,95,29917,866,766,103,97540,39103 +2025,49,2015,2697,500571,3860,108,33848,980,867,116,106733,44240 +2025,49,2016,3042,564647,4355,122,38180,1106,978,131,110709,49903 +2025,49,2017,3460,642087,4952,139,43417,1257,1112,149,121588,56747 +2025,49,2018,5076,942040,7265,203,63699,1845,1632,219,170773,83257 +2025,49,2019,5816,1079425,8325,233,72988,2114,1870,251,187990,95399 +2025,49,2020,6793,1260693,9722,272,85245,2469,2184,293,209164,111419 +2025,49,2021,8054,1494848,11528,323,101078,2927,2589,348,236097,132114 +2025,49,2022,9688,1798128,13867,388,121585,3521,3115,418,267438,158918 +2025,49,2023,12586,2335993,18015,504,157955,4574,4046,543,325242,206454 +2025,49,2024,17187,3189868,24600,688,215692,6246,5525,742,408927,281919 +2025,49,2025,32487,6029464,46499,1301,407699,11806,10444,1403,676594,532881 +2025,50,1995,397,414371,3607,49,15865,370,327,40,158446,16251 +2025,50,1996,49,51529,449,5,1973,46,41,5,18301,2021 +2025,50,1997,59,61383,534,6,2350,55,49,6,20152,2407 +2025,50,1998,77,80088,697,7,3066,72,63,8,21471,3141 +2025,50,1999,113,117571,1023,11,4501,105,93,12,28771,4611 +2025,50,2000,163,169992,1480,16,6509,152,134,17,39207,6667 +2025,50,2001,219,224339,1989,21,8702,218,193,23,50390,8969 +2025,50,2002,280,287337,2547,27,11146,279,247,30,61860,11488 +2025,50,2003,370,378669,3357,36,14689,367,325,39,78389,15139 +2025,50,2004,354,264294,2263,35,11528,352,311,38,68060,14493 +2025,50,2005,447,333689,2857,44,14555,444,393,48,84286,18298 +2025,50,2006,1268,383560,3258,50,16718,510,451,55,64974,21033 +2025,50,2007,1351,408725,3472,53,17814,544,481,58,67880,22413 +2025,50,2008,1142,220998,1722,45,14083,460,407,49,48907,18950 +2025,50,2009,963,186348,1452,38,11875,388,343,42,40203,15979 +2025,50,2010,454,87758,683,18,5597,183,162,20,18492,7532 +2025,50,2011,614,118615,923,24,7573,247,219,27,20632,10190 +2025,50,2012,935,180411,1404,37,11528,376,333,40,30555,15513 +2025,50,2013,944,181857,1415,37,11631,379,336,41,29938,15652 +2025,50,2014,1174,226324,1761,46,14475,472,418,51,36269,19479 +2025,50,2015,1328,256060,1992,52,16377,534,472,57,39780,22038 +2025,50,2016,1499,288837,2247,59,18474,602,533,65,40757,24859 +2025,50,2017,1704,328451,2555,67,21007,685,606,74,44909,28268 +2025,50,2018,2500,481888,3749,99,30821,1005,889,108,63266,41474 +2025,50,2019,2865,552165,4296,113,35316,1152,1019,124,69933,47522 +2025,50,2020,3346,644890,5017,132,41246,1345,1190,144,78129,55503 +2025,50,2021,3967,764670,5949,157,48907,1595,1411,171,88683,65811 +2025,50,2022,4772,919807,7156,189,58830,1919,1697,206,101080,79163 +2025,50,2023,6200,1194945,9296,245,76427,2492,2205,267,123968,102843 +2025,50,2024,8466,1631734,12694,335,104364,3403,3011,365,157626,140435 +2025,50,2025,16002,3084289,23994,632,197268,6433,5691,690,266037,265450 +2025,51,1995,129,136989,1133,14,4838,120,106,13,52068,5306 +2025,51,1996,16,17035,141,1,602,15,13,2,6046,660 +2025,51,1997,19,20293,168,2,717,18,16,2,6638,786 +2025,51,1998,25,26477,219,2,935,23,21,3,6810,1026 +2025,51,1999,37,38868,321,3,1373,34,30,4,9068,1506 +2025,51,2000,53,56198,465,5,1985,49,44,6,12397,2177 +2025,51,2001,71,73479,600,6,2630,70,62,8,15830,2929 +2025,51,2002,91,94113,768,8,3368,90,79,10,19474,3751 +2025,51,2003,120,124028,1012,11,4439,118,105,13,24728,4943 +2025,51,2004,115,86487,680,10,3482,113,100,12,21556,4732 +2025,51,2005,146,109196,858,13,4396,143,127,15,26725,5975 +2025,51,2006,413,125515,985,15,5052,164,145,18,22600,6868 +2025,51,2007,440,133750,1049,16,5384,175,155,19,23628,7319 +2025,51,2008,372,72031,515,13,4254,148,131,16,17336,6188 +2025,51,2009,314,60738,434,11,3587,125,110,13,14270,5218 +2025,51,2010,148,28623,205,5,1691,59,52,6,6575,2459 +2025,51,2011,200,38714,277,7,2288,80,70,9,7733,3327 +2025,51,2012,305,58923,421,11,3483,121,107,13,11467,5065 +2025,51,2013,308,59435,425,11,3514,122,108,13,11251,5111 +2025,51,2014,383,73968,529,14,4373,152,135,16,13644,6360 +2025,51,2015,433,83686,598,16,4948,172,152,19,14984,7196 +2025,51,2016,489,94399,675,17,5581,194,172,21,15653,8117 +2025,51,2017,556,107345,767,20,6346,221,195,24,17264,9230 +2025,51,2018,815,157492,1126,29,9311,324,287,35,24351,13542 +2025,51,2019,934,180461,1290,33,10669,371,328,40,26948,15517 +2025,51,2020,1091,210765,1506,39,12461,434,384,47,30151,18123 +2025,51,2021,1293,249912,1786,46,14775,514,455,55,34275,21489 +2025,51,2022,1556,300614,2148,56,17772,619,547,66,39143,25849 +2025,51,2023,2021,390536,2791,72,23089,804,711,86,48111,33581 +2025,51,2024,2760,533288,3811,99,31528,1097,971,118,61349,45856 +2025,51,2025,5216,1008018,7204,187,59595,2074,1835,223,104059,86678 +2025,53,1995,532,549222,4768,71,21386,492,435,54,286146,21670 +2025,53,1996,66,68298,593,7,2659,61,54,7,33411,2695 +2025,53,1997,79,81359,706,8,3168,73,64,8,36591,3210 +2025,53,1998,103,106152,922,11,4133,95,84,11,37837,4188 +2025,53,1999,151,155832,1353,16,6068,140,123,16,50229,6148 +2025,53,2000,218,225313,1956,23,8773,202,178,23,68235,8890 +2025,53,2001,294,290712,2591,31,11682,265,234,32,87258,11960 +2025,53,2002,376,372347,3318,40,14962,339,300,40,106840,15319 +2025,53,2003,496,490700,4373,52,19718,447,396,53,135049,20188 +2025,53,2004,475,342385,2944,50,15473,428,379,51,119432,19326 +2025,53,2005,600,432284,3717,63,19535,541,478,64,147773,24400 +2025,53,2006,1702,496891,4245,73,22442,621,550,74,119719,28047 +2025,53,2007,1813,529492,4523,77,23914,662,586,79,124806,29887 +2025,53,2008,1533,286888,2247,65,18907,560,495,67,93505,25269 +2025,53,2009,1293,241908,1894,55,15943,472,418,56,76732,21308 +2025,53,2010,609,113948,892,26,7515,222,197,26,35243,10044 +2025,53,2011,824,154049,1206,35,10167,301,266,36,40552,13588 +2025,53,2012,1255,234358,1835,54,15478,458,405,55,59884,20686 +2025,53,2013,1266,236289,1850,54,15616,462,409,55,58491,20871 +2025,53,2014,1576,294064,2302,67,19434,575,509,68,70635,25974 +2025,53,2015,1783,332701,2605,76,21988,651,576,77,77180,29387 +2025,53,2016,2011,375289,2938,86,24802,734,649,87,79600,33149 +2025,53,2017,2287,426759,3341,98,28204,835,738,99,87278,37695 +2025,53,2018,3355,626121,4902,143,41380,1224,1083,146,122243,55304 +2025,53,2019,3845,717432,5616,164,47414,1403,1241,167,134294,63369 +2025,53,2020,4490,837911,6560,191,55377,1639,1450,195,148953,74011 +2025,53,2021,5324,993541,7778,227,65662,1943,1719,231,167675,87758 +2025,53,2022,6405,1195112,9356,273,78984,2337,2068,278,189176,105562 +2025,53,2023,8320,1552600,12154,355,102610,3036,2686,361,229127,137138 +2025,53,2024,11362,2120122,16597,484,140117,4146,3668,493,286493,187267 +2025,53,2025,21476,4007439,31372,916,264848,7837,6933,933,469295,353970 +2025,54,1995,137,146257,1228,15,5314,127,113,14,53096,5616 +2025,54,1996,17,18188,153,2,661,16,14,2,6215,698 +2025,54,1997,20,21666,182,2,787,19,17,2,6849,832 +2025,54,1998,26,28268,237,2,1027,25,22,3,7244,1086 +2025,54,1999,39,41498,348,3,1508,36,32,4,9715,1594 +2025,54,2000,56,60001,504,5,2180,52,46,6,13277,2304 +2025,54,2001,76,78750,650,7,2907,75,67,8,16947,3100 +2025,54,2002,97,100863,833,9,3723,97,85,10,20842,3970 +2025,54,2003,128,132924,1098,11,4907,127,113,13,26458,5232 +2025,54,2004,122,92715,738,11,3850,122,108,13,23041,5009 +2025,54,2005,154,117059,932,14,4860,154,136,16,28561,6324 +2025,54,2006,437,134554,1067,16,5584,177,156,19,23692,7269 +2025,54,2007,466,143382,1137,17,5951,189,167,20,24769,7746 +2025,54,2008,394,77280,560,14,4703,159,141,17,18106,6549 +2025,54,2009,332,65164,472,12,3966,134,119,14,14903,5523 +2025,54,2010,157,30703,222,6,1869,63,56,7,6865,2603 +2025,54,2011,212,41518,301,8,2529,86,76,9,7995,3522 +2025,54,2012,323,63178,457,12,3850,130,115,14,11856,5361 +2025,54,2013,326,63715,461,12,3884,132,116,14,11633,5409 +2025,54,2014,405,79294,574,15,4834,164,145,17,14109,6732 +2025,54,2015,458,89712,649,17,5469,185,164,20,15496,7617 +2025,54,2016,517,101196,732,19,6169,209,185,22,16157,8591 +2025,54,2017,588,115074,833,21,7015,238,210,25,17823,9770 +2025,54,2018,863,168832,1222,31,10293,349,308,37,25161,14334 +2025,54,2019,988,193454,1400,36,11794,399,353,42,27849,16424 +2025,54,2020,1154,225940,1635,42,13774,467,413,49,31182,19182 +2025,54,2021,1369,267906,1939,50,16333,553,489,59,35455,22745 +2025,54,2022,1647,322259,2332,60,19646,665,589,70,40519,27360 +2025,54,2023,2139,418654,3030,78,25523,865,765,91,49814,35544 +2025,54,2024,2921,571686,4138,106,34852,1181,1044,125,63543,48536 +2025,54,2025,5521,1080596,7821,200,65877,2232,1974,236,107843,91742 +2025,55,1995,338,366557,2959,39,13491,315,279,34,129479,13877 +2025,55,1996,42,45583,368,4,1678,39,35,4,15068,1726 +2025,55,1997,50,54300,438,5,1999,47,41,5,16619,2056 +2025,55,1998,65,70847,572,6,2608,61,54,7,17717,2682 +2025,55,1999,96,104004,840,9,3828,90,79,10,23799,3937 +2025,55,2000,139,150377,1214,13,5535,129,114,15,32509,5693 +2025,55,2001,187,193017,1529,17,7506,183,162,20,41258,7659 +2025,55,2002,239,247218,1959,22,9614,234,207,25,50713,9810 +2025,55,2003,315,325799,2581,29,12670,309,273,33,64342,12928 +2025,55,2004,302,227368,1739,27,9942,295,261,32,56183,12376 +2025,55,2005,381,287067,2195,35,12553,373,330,40,69628,15626 +2025,55,2006,1081,329971,2506,40,14420,429,379,46,55717,17961 +2025,55,2007,1152,351620,2670,43,15366,457,404,49,58255,19139 +2025,55,2008,974,189986,1320,36,12145,386,342,42,42632,16182 +2025,55,2009,821,160199,1113,30,10241,326,288,35,35096,13645 +2025,55,2010,387,75450,524,14,4827,154,136,17,16167,6432 +2025,55,2011,524,101987,708,19,6531,208,184,22,18496,8701 +2025,55,2012,797,155132,1077,29,9942,316,280,34,27439,13247 +2025,55,2013,804,156388,1086,30,10031,319,282,34,26936,13365 +2025,55,2014,1001,194627,1351,37,12484,397,351,43,32690,16633 +2025,55,2015,1132,220199,1528,42,14124,449,397,48,35929,18819 +2025,55,2016,1277,248386,1724,47,15932,506,448,55,37258,21228 +2025,55,2017,1453,282450,1961,54,18117,576,509,62,41143,24139 +2025,55,2018,2131,414400,2876,79,26580,845,747,91,58143,35416 +2025,55,2019,2442,474835,3296,90,30457,968,856,105,64441,40581 +2025,55,2020,2852,554573,3849,105,35572,1131,1000,122,72254,47395 +2025,55,2021,3382,657577,4564,125,42178,1340,1186,145,82299,56198 +2025,55,2022,4068,790989,5490,150,50736,1612,1426,174,94242,67600 +2025,55,2023,5285,1027592,7133,195,65912,2095,1853,226,116161,87821 +2025,55,2024,7217,1403209,9740,266,90005,2860,2530,309,148676,119922 +2025,55,2025,13641,2652329,18410,504,170126,5407,4783,584,253800,226676 +2025,56,1995,474,515854,4823,75,19541,467,413,50,251561,20477 +2025,56,1996,59,64149,600,7,2430,58,51,6,29851,2546 +2025,56,1997,70,76416,714,9,2895,69,61,8,32875,3033 +2025,56,1998,92,99703,932,12,3777,90,80,10,35269,3958 +2025,56,1999,134,146365,1368,17,5544,133,117,15,47293,5810 +2025,56,2000,194,211625,1978,25,8016,192,170,22,64346,8401 +2025,56,2001,261,272516,2619,33,10673,252,223,29,82355,11302 +2025,56,2002,335,349042,3354,42,13670,322,285,37,100960,14476 +2025,56,2003,441,459987,4420,56,18015,425,376,49,127768,19077 +2025,56,2004,422,321152,2982,53,14140,406,360,47,112625,18262 +2025,56,2005,533,405477,3765,67,17852,513,454,60,139425,23058 +2025,56,2006,1514,466077,4285,77,20503,590,522,69,113561,26504 +2025,56,2007,1613,496657,4567,82,21848,629,556,73,118475,28242 +2025,56,2008,1364,269399,2269,70,17275,531,470,62,88295,23879 +2025,56,2009,1150,227161,1913,59,14567,448,396,52,72515,20135 +2025,56,2010,542,106953,900,28,6866,211,187,25,33327,9491 +2025,56,2011,733,144526,1216,37,9289,286,253,33,38460,12840 +2025,56,2012,1117,219770,1849,57,14142,435,385,51,56848,19547 +2025,56,2013,1127,221480,1863,58,14268,438,388,51,55583,19722 +2025,56,2014,1402,275634,2319,72,17757,546,483,63,67199,24545 +2025,56,2015,1586,311850,2623,81,20090,617,546,72,73524,27770 +2025,56,2016,1789,351768,2959,91,22661,696,616,81,76175,31324 +2025,56,2017,2035,400013,3365,104,25769,792,700,92,83649,35620 +2025,56,2018,2985,586880,4937,152,37808,1162,1028,135,117502,52260 +2025,56,2019,3421,672469,5657,175,43321,1331,1178,155,129323,59882 +2025,56,2020,3995,785397,6607,204,50596,1555,1375,181,143892,69938 +2025,56,2021,4737,931272,7834,242,59994,1843,1631,214,162376,82928 +2025,56,2022,5698,1120211,9424,291,72166,2218,1962,258,183906,99752 +2025,56,2023,7403,1455296,12242,378,93752,2881,2548,335,223556,129591 +2025,56,2024,10109,1987252,16717,516,128022,3934,3480,458,280908,176960 +2025,56,2025,19107,3756284,31599,976,241985,7436,6578,865,464275,334488 +2030,1,2000,463,517718,4851,58,16207,459,406,52,220044,20260 +2030,1,2001,131,142662,1319,16,4523,137,122,15,58337,5742 +2030,1,2002,170,184772,1709,21,5857,178,157,19,71373,7437 +2030,1,2003,223,242662,2244,28,7693,234,207,25,89868,9767 +2030,1,2004,224,177701,1582,28,6338,235,208,25,81267,9820 +2030,1,2005,300,237220,2111,38,8460,314,277,34,101701,13109 +2030,1,2006,877,281222,2500,45,10028,372,329,40,114608,15541 +2030,1,2007,961,308174,2740,49,10989,407,360,44,119862,17031 +2030,1,2008,827,169242,1372,42,8841,351,310,37,92946,14653 +2030,1,2009,689,141102,1144,35,7371,292,259,31,75820,12216 +2030,1,2010,321,65800,534,16,3438,136,121,15,34624,5698 +2030,1,2011,431,88260,716,22,4612,183,162,20,33926,7644 +2030,1,2012,647,132402,1074,33,6920,274,243,29,49698,11469 +2030,1,2013,645,131995,1070,33,6900,274,242,29,48161,11435 +2030,1,2014,794,162506,1318,40,8495,337,298,36,57712,14079 +2030,1,2015,880,179957,1459,45,9407,373,330,40,62287,15590 +2030,1,2016,975,199407,1617,50,10424,413,366,44,59315,17276 +2030,1,2017,1087,222386,1804,55,11625,461,408,49,64173,19266 +2030,1,2018,1555,318198,2581,79,16633,659,583,71,88088,27567 +2030,1,2019,1721,352044,2855,88,18403,730,645,78,94583,30499 +2030,1,2020,1933,395496,3208,98,20674,820,725,88,101773,34264 +2030,1,2021,2167,443392,3596,110,23178,919,813,98,107255,38413 +2030,1,2022,2414,493919,4006,123,25819,1024,905,109,114399,42791 +2030,1,2023,2803,573351,4650,143,29971,1188,1051,127,127531,49672 +2030,1,2024,3275,669961,5433,167,35021,1388,1228,148,142810,58042 +2030,1,2025,3865,790792,6413,197,41338,1639,1450,175,160858,68510 +2030,1,2026,4635,948128,7689,236,49562,1965,1738,210,182927,82141 +2030,1,2027,5771,1180671,9575,294,61718,2447,2164,262,214404,102287 +2030,1,2028,7526,1539674,12487,383,80485,3191,2822,341,260170,133389 +2030,1,2029,10277,2102365,17050,523,109898,4357,3854,466,324439,182138 +2030,1,2030,19487,3986535,32331,992,208391,8261,7308,884,530590,345373 +2030,4,2000,2414,2559305,24791,258,98811,2299,2033,262,1042095,101182 +2030,4,2001,684,750398,7834,73,27908,721,638,74,282909,28677 +2030,4,2002,886,971895,10147,95,36145,934,826,96,346945,37141 +2030,4,2003,1164,1276396,13326,124,47470,1227,1085,127,437641,48778 +2030,4,2004,1170,934680,9395,125,39107,1233,1091,127,392618,49043 +2030,4,2005,1562,1247740,12542,167,52206,1646,1456,170,492531,65469 +2030,4,2006,4573,1479181,14846,198,61878,1952,1727,201,556100,77613 +2030,4,2007,5011,1620948,16269,216,67808,2139,1892,221,582723,85052 +2030,4,2008,4311,889140,8171,186,54533,1840,1628,190,446654,73176 +2030,4,2009,3594,741302,6812,155,45466,1534,1357,158,364606,61009 +2030,4,2010,1676,345696,3177,72,21205,716,633,74,166615,28455 +2030,4,2011,2249,463702,4261,97,28448,960,849,99,170255,38174 +2030,4,2012,3374,695633,6392,146,42684,1440,1274,149,249595,57275 +2030,4,2013,3365,693507,6373,145,42559,1436,1270,148,242098,57109 +2030,4,2014,4142,853814,7846,179,52397,1768,1564,182,290371,70310 +2030,4,2015,4587,945498,8688,198,58024,1958,1732,202,313670,77860 +2030,4,2016,5083,1047694,9627,220,64295,2169,1919,224,304893,86276 +2030,4,2017,5669,1168424,10737,245,71704,2419,2140,250,330188,96218 +2030,4,2018,8111,1671825,15362,350,102597,3461,3062,357,454096,137671 +2030,4,2019,8974,1849656,16996,388,113511,3830,3388,395,488079,152315 +2030,4,2020,10081,2077952,19094,436,127521,4302,3806,444,526239,171115 +2030,4,2021,11302,2329599,21407,488,142964,4823,4267,498,558118,191838 +2030,4,2022,12590,2595071,23846,544,159256,5373,4753,554,596385,213699 +2030,4,2023,14615,3012407,27681,631,184867,6237,5517,644,665845,248066 +2030,4,2024,17077,3520000,32345,738,216017,7288,6447,752,746851,289865 +2030,4,2025,20157,4154855,38179,871,254977,8602,7610,888,842831,342144 +2030,4,2026,24168,4981500,45775,1044,305707,10314,9124,1064,960615,410216 +2030,4,2027,30095,6203284,57002,1300,380687,12843,11361,1325,1128977,510829 +2030,4,2028,39246,8089499,74334,1696,496441,16748,14816,1728,1374681,666154 +2030,4,2029,53589,11045911,101501,2315,677870,22869,20231,2360,1722306,909607 +2030,4,2030,101616,20945406,192467,4390,1285389,43365,38362,4475,2840852,1724813 +2030,5,2000,343,347840,2967,32,12012,310,274,36,136721,13589 +2030,5,2001,97,98161,829,9,3354,94,83,10,36343,3851 +2030,5,2002,126,127136,1073,12,4345,122,108,13,44433,4988 +2030,5,2003,165,166968,1409,15,5706,160,142,17,55915,6551 +2030,5,2004,166,122293,994,15,4701,161,143,17,50504,6587 +2030,5,2005,222,163254,1328,20,6276,215,191,23,63141,8793 +2030,5,2006,649,193535,1569,24,7438,255,226,28,71079,10424 +2030,5,2007,711,212083,1719,27,8150,280,248,30,74279,11423 +2030,5,2008,612,116527,866,23,6557,241,213,26,57535,9828 +2030,5,2009,510,97152,722,19,5467,201,178,22,46915,8194 +2030,5,2010,238,45299,337,9,2550,94,83,10,21415,3822 +2030,5,2011,319,60752,452,12,3421,126,111,14,20158,5127 +2030,5,2012,479,91125,677,18,5133,188,167,20,29522,7692 +2030,5,2013,477,90833,675,18,5118,188,166,20,28601,7670 +2030,5,2014,588,111829,831,22,6301,231,205,25,34264,9443 +2030,5,2015,651,123838,920,24,6977,256,227,28,36972,10457 +2030,5,2016,721,137223,1020,27,7731,284,251,31,34533,11587 +2030,5,2017,804,153036,1137,30,8622,316,280,34,37363,12923 +2030,5,2018,1151,218969,1627,43,12337,453,401,49,51254,18490 +2030,5,2019,1273,242260,1801,48,13649,501,443,54,55036,20457 +2030,5,2020,1431,272162,2023,54,15334,563,498,61,59184,22982 +2030,5,2021,1604,305121,2268,60,17191,631,558,68,62078,25765 +2030,5,2022,1787,339892,2526,67,19150,703,622,76,66206,28701 +2030,5,2023,2074,394553,2932,78,22230,816,722,88,73831,33317 +2030,5,2024,2423,461035,3426,91,25975,953,843,103,82709,38931 +2030,5,2025,2860,544186,4044,107,30660,1125,996,122,93203,45952 +2030,5,2026,3429,652457,4849,128,36760,1349,1194,146,106046,55094 +2030,5,2027,4271,812482,6038,160,45776,1680,1486,182,124374,68607 +2030,5,2028,5569,1059529,7875,208,59695,2191,1938,237,151044,89468 +2030,5,2029,7604,1446748,10752,284,81511,2992,2647,323,188565,122166 +2030,5,2030,14420,2743344,20389,539,154563,5673,5019,613,309009,231652 +2030,6,2000,434,461037,3842,41,18235,411,363,15,106081,18162 +2030,6,2001,123,119935,1099,12,5389,115,102,4,28510,5147 +2030,6,2002,159,155337,1423,15,6979,149,132,5,35112,6667 +2030,6,2003,209,204005,1869,20,9166,196,174,7,44436,8755 +2030,6,2004,210,149473,1320,20,7553,197,175,7,39163,8803 +2030,6,2005,281,199537,1762,27,10082,263,233,10,49338,11751 +2030,6,2006,822,236549,2079,32,11948,312,276,11,55860,13931 +2030,6,2007,901,259220,2279,35,13093,342,303,13,58729,15266 +2030,6,2008,775,142174,1135,30,10526,294,261,11,43766,13135 +2030,6,2009,646,118535,946,25,8776,246,217,9,35764,10951 +2030,6,2010,301,55254,441,12,4093,114,101,4,16359,5107 +2030,6,2011,404,74084,591,16,5491,154,136,6,15179,6852 +2030,6,2012,607,111091,887,23,8239,230,204,8,22307,10281 +2030,6,2013,605,110705,884,23,8215,230,203,8,21702,10251 +2030,6,2014,745,136295,1088,29,10114,283,250,10,26107,12620 +2030,6,2015,825,150931,1205,32,11200,313,277,12,28284,13975 +2030,6,2016,914,167244,1335,35,12410,347,307,13,26494,15486 +2030,6,2017,1019,186516,1489,39,13840,387,342,14,28832,17270 +2030,6,2018,1458,266874,2131,56,19803,554,490,20,39901,24711 +2030,6,2019,1613,295262,2357,62,21909,613,542,23,43106,27340 +2030,6,2020,1813,331705,2648,70,24614,688,609,25,46797,30714 +2030,6,2021,2032,371875,2969,78,27594,772,683,28,49411,34434 +2030,6,2022,2264,414253,3307,87,30739,860,760,32,53268,38358 +2030,6,2023,2628,480873,3839,101,35682,998,883,37,59971,44526 +2030,6,2024,3070,561900,4486,118,41695,1166,1031,43,67879,52029 +2030,6,2025,3624,663242,5295,139,49215,1376,1217,51,77392,61413 +2030,6,2026,4345,795200,6348,167,59006,1650,1460,61,89273,73631 +2030,6,2027,5411,990236,7905,208,73479,2055,1818,76,106431,91691 +2030,6,2028,7056,1291333,10309,271,95821,2680,2370,99,131916,119571 +2030,6,2029,9635,1763266,14077,370,130840,3659,3237,135,169220,163269 +2030,6,2030,18271,3343531,26692,701,248101,6938,6138,255,290928,309594 +2030,8,2000,99,102319,841,9,3971,92,81,10,30360,4053 +2030,8,2001,28,27842,235,2,1114,25,23,3,8098,1149 +2030,8,2002,36,36060,304,3,1442,33,29,4,9942,1488 +2030,8,2003,48,47358,399,4,1894,43,38,5,12552,1954 +2030,8,2004,48,34690,282,4,1561,44,38,5,11247,1965 +2030,8,2005,64,46309,376,6,2084,58,51,7,14128,2623 +2030,8,2006,187,54899,444,7,2469,69,61,8,15963,3109 +2030,8,2007,205,60160,487,7,2706,75,67,9,16744,3407 +2030,8,2008,176,32989,243,6,2176,65,57,8,12798,2931 +2030,8,2009,147,27503,203,5,1814,54,48,6,10452,2444 +2030,8,2010,69,12823,95,2,846,25,22,3,4778,1140 +2030,8,2011,92,17196,127,3,1135,34,30,4,4722,1529 +2030,8,2012,138,25792,190,5,1703,51,45,6,6930,2294 +2030,8,2013,138,25707,189,5,1698,51,45,6,6729,2288 +2030,8,2014,170,31650,233,6,2090,62,55,7,8081,2817 +2030,8,2015,188,35048,258,7,2315,69,61,8,8739,3119 +2030,8,2016,208,38836,286,7,2565,77,68,9,8413,3456 +2030,8,2017,232,43312,319,8,2861,85,75,10,9127,3854 +2030,8,2018,332,61972,457,12,4093,122,108,14,12596,5515 +2030,8,2019,367,68564,505,13,4529,135,119,16,13565,6102 +2030,8,2020,413,77027,568,15,5088,152,134,18,14679,6855 +2030,8,2021,462,86355,636,16,5704,170,150,20,15552,7685 +2030,8,2022,515,96196,709,18,6354,189,168,22,16689,8561 +2030,8,2023,598,111666,823,21,7375,220,195,26,18691,9937 +2030,8,2024,699,130481,961,25,8618,257,227,30,21036,11612 +2030,8,2025,825,154014,1135,29,10172,303,268,35,23831,13706 +2030,8,2026,989,184657,1361,35,12196,364,322,42,27285,16433 +2030,8,2027,1232,229947,1694,43,15188,453,401,53,32241,20464 +2030,8,2028,1606,299865,2210,57,19806,591,523,69,39527,26686 +2030,8,2029,2193,409456,3017,77,27044,807,714,94,49980,36439 +2030,8,2030,4158,776416,5721,146,51281,1529,1353,178,83807,69095 +2030,9,2000,1199,1311848,12422,148,45981,1183,1046,134,417278,52180 +2030,9,2001,340,341079,3886,42,12736,331,293,38,113687,14789 +2030,9,2002,440,441756,5033,54,16495,429,380,49,139657,19154 +2030,9,2003,578,580160,6609,71,21663,564,499,65,176399,25155 +2030,9,2004,581,425152,4667,72,17852,567,501,65,156420,25292 +2030,9,2005,776,567553,6230,96,23831,757,669,87,196504,33763 +2030,9,2006,2272,672826,7356,114,28237,897,793,103,222003,40026 +2030,9,2007,2489,737309,8061,124,30943,983,870,113,232888,43862 +2030,9,2008,2142,405635,4040,107,24890,846,748,97,175369,37737 +2030,9,2009,1786,338189,3369,89,20751,705,624,81,143178,31463 +2030,9,2010,833,157624,1570,42,9678,329,291,38,65435,14674 +2030,9,2011,1117,211315,2105,56,12984,441,390,51,58783,19686 +2030,9,2012,1676,316836,3157,84,19481,662,585,76,86295,29537 +2030,9,2013,1672,315695,3146,84,19425,660,584,76,83846,29452 +2030,9,2014,2058,388669,3874,103,23915,812,718,93,100740,36259 +2030,9,2015,2279,430405,4290,114,26483,899,796,103,109007,40153 +2030,9,2016,2525,476927,4753,126,29345,997,882,114,100051,44493 +2030,9,2017,2816,531885,5301,141,32727,1111,983,128,108734,49620 +2030,9,2018,4030,761040,7585,201,46827,1590,1407,183,149990,70998 +2030,9,2019,4458,841991,8392,223,51808,1759,1556,202,161818,78550 +2030,9,2020,5009,945916,9428,250,58202,1977,1749,227,175104,88245 +2030,9,2021,5615,1060469,10569,281,65251,2216,1960,255,183732,98932 +2030,9,2022,6255,1181317,11774,313,72687,2468,2184,284,197481,110206 +2030,9,2023,7261,1371296,13667,363,84376,2865,2535,329,221934,127930 +2030,9,2024,8484,1602358,15970,424,98593,3348,2962,385,250716,149486 +2030,9,2025,10014,1891354,18851,501,116375,3952,3496,454,285239,176446 +2030,9,2026,12007,2267656,22601,600,139529,4738,4192,544,328206,211552 +2030,9,2027,14952,2823834,28144,748,173751,5901,5220,678,390130,263439 +2030,9,2028,19498,3682467,36702,975,226583,7695,6807,884,481804,343541 +2030,9,2029,26624,5028273,50116,1331,309390,10507,9295,1207,615136,469093 +2030,9,2030,50485,9534681,95030,2524,586670,19924,17625,2288,1049040,889501 +2030,10,2000,2186,2421830,23316,281,80974,2192,1939,247,786615,96779 +2030,10,2001,620,630325,7299,80,22420,614,543,70,214419,27429 +2030,10,2002,803,816381,9454,103,29037,796,704,91,263483,35525 +2030,10,2003,1054,1072156,12416,136,38135,1045,924,119,332879,46656 +2030,10,2004,1060,785421,8758,136,31422,1051,929,120,295333,46909 +2030,10,2005,1415,1048488,11691,182,41946,1403,1241,160,371171,62621 +2030,10,2006,4141,1242970,13828,216,49709,1663,1471,190,419624,74236 +2030,10,2007,4538,1362096,15154,236,54473,1822,1612,208,440352,81351 +2030,10,2008,3904,748512,7576,203,43815,1568,1387,179,331792,69992 +2030,10,2009,3255,624057,6316,169,36530,1307,1156,149,270938,58355 +2030,10,2010,1518,290937,2945,79,17038,610,539,70,123851,27217 +2030,10,2011,2037,390139,3950,106,22857,818,723,93,114402,36513 +2030,10,2012,3056,585107,5925,159,34294,1227,1085,140,167953,54783 +2030,10,2013,3047,583153,5906,159,34194,1223,1082,140,163193,54624 +2030,10,2014,3751,717951,7271,195,42099,1506,1332,172,196072,67251 +2030,10,2015,4154,795047,8052,216,46619,1668,1475,190,212160,74472 +2030,10,2016,4603,880981,8922,240,51658,1848,1635,211,197261,82522 +2030,10,2017,5133,982500,9950,267,57611,2061,1823,235,214317,92031 +2030,10,2018,7345,1405797,14237,382,82432,2949,2608,337,295486,131681 +2030,10,2019,8126,1555331,15751,423,91200,3262,2886,372,318687,145688 +2030,10,2020,9129,1747299,17695,475,102457,3665,3242,418,344679,163670 +2030,10,2021,10235,1958903,19838,533,114864,4109,3635,469,362820,183491 +2030,10,2022,11401,2182132,22099,594,127954,4577,4049,522,389620,204401 +2030,10,2023,13235,2533061,25653,689,148531,5313,4700,606,437590,237273 +2030,10,2024,15465,2959883,29975,805,173559,6208,5492,709,494003,277253 +2030,10,2025,18254,3493716,35382,950,204861,7328,6482,836,561596,327258 +2030,10,2026,21886,4188823,42421,1140,245620,8786,7772,1003,645616,392368 +2030,10,2027,27254,5216192,52825,1419,305863,10941,9678,1249,766620,488603 +2030,10,2028,35541,6802261,68888,1851,398865,14268,12621,1629,945532,637170 +2030,10,2029,48530,9288239,94064,2527,544636,19482,17234,2224,1205137,870032 +2030,10,2030,92024,17612492,178365,4791,1032746,36942,32679,4217,2049170,1649768 +2030,11,2000,932,1135117,12852,217,34833,1040,920,117,1004688,45527 +2030,11,2001,264,294502,4011,61,9635,291,257,33,267897,12903 +2030,11,2002,342,381431,5195,80,12479,377,333,43,325479,16712 +2030,11,2003,449,500935,6823,105,16389,495,438,56,407581,21948 +2030,11,2004,452,367465,4825,105,13514,498,440,57,371526,22067 +2030,11,2005,603,490543,6441,140,18041,664,588,75,461095,29458 +2030,11,2006,1765,581532,7586,166,21360,788,697,89,515802,34922 +2030,11,2007,1934,637266,8313,182,23407,863,763,98,535793,38269 +2030,11,2008,1664,358028,4315,157,18890,743,657,84,421788,32926 +2030,11,2009,1387,298498,3598,131,15749,619,548,70,343065,27451 +2030,11,2010,647,139025,1676,61,7345,289,255,33,156207,12803 +2030,11,2011,868,186246,2247,82,9854,387,343,44,133252,17176 +2030,11,2012,1302,279046,3369,123,14785,581,514,66,194397,25771 +2030,11,2013,1298,277840,3357,122,14742,579,512,66,187433,25696 +2030,11,2014,1599,342064,4133,151,18150,713,631,81,223505,31636 +2030,11,2015,1770,378795,4577,167,20099,789,698,90,240067,35033 +2030,11,2016,1962,419738,5071,185,22271,875,774,99,210405,38820 +2030,11,2017,2188,468107,5656,206,24838,975,863,111,226209,43293 +2030,11,2018,3130,669784,8093,295,35539,1396,1235,159,306979,61945 +2030,11,2019,3463,741029,8953,326,39319,1544,1366,175,327399,68535 +2030,11,2020,3891,832492,10059,367,44172,1735,1535,197,347903,76994 +2030,11,2021,4362,933309,11277,411,49521,1945,1720,221,355576,86318 +2030,11,2022,4859,1039666,12562,458,55165,2166,1916,246,374426,96154 +2030,11,2023,5640,1206863,14582,532,64036,2515,2225,286,412886,111618 +2030,11,2024,6591,1410220,17039,621,74826,2939,2600,334,456806,130425 +2030,11,2025,7779,1664562,20112,733,88322,3469,3068,394,507346,153948 +2030,11,2026,9327,1995742,24113,879,105894,4159,3679,473,567241,184578 +2030,11,2027,11615,2485228,30028,1095,131866,5179,4581,589,651059,229848 +2030,11,2028,15146,3240903,39158,1427,171962,6753,5974,767,768765,299737 +2030,11,2029,20681,4425337,53469,1949,234808,9221,8157,1048,922424,409280 +2030,11,2030,39217,8391369,101388,3696,445245,17486,15468,1987,1399546,776081 +2030,12,2000,2610,3028192,30852,391,87301,2697,2386,305,1300915,119375 +2030,12,2001,740,834830,8392,111,24371,808,715,87,345392,33833 +2030,12,2002,958,1081248,10869,143,31565,1046,926,112,423274,43820 +2030,12,2003,1258,1420007,14275,188,41454,1374,1216,147,533636,57548 +2030,12,2004,1265,1039740,10058,189,34149,1382,1222,148,481796,57861 +2030,12,2005,1689,1387987,13426,253,45587,1845,1632,197,604121,77241 +2030,12,2006,4944,1645443,15912,300,54037,2187,1934,234,681962,91568 +2030,12,2007,5418,1803142,17437,328,59216,2396,2120,257,714352,100344 +2030,12,2008,4662,989567,8705,282,47644,2062,1824,221,552321,86333 +2030,12,2009,3886,825032,7257,236,39722,1719,1521,184,450866,71978 +2030,12,2010,1813,384771,3385,110,18527,802,709,86,206039,33571 +2030,12,2011,2432,516155,4541,147,24855,1075,951,115,205472,45037 +2030,12,2012,3649,774379,6812,221,37292,1614,1427,173,301267,67574 +2030,12,2013,3638,772071,6792,220,37183,1609,1423,172,292269,67377 +2030,12,2014,4479,950539,8362,271,45778,1981,1752,212,350601,82952 +2030,12,2015,4960,1052612,9260,301,50694,2194,1940,235,378788,91859 +2030,12,2016,5496,1166384,10261,333,56173,2431,2150,260,363736,101788 +2030,12,2017,6129,1300791,11444,371,62646,2711,2398,290,394054,113518 +2030,12,2018,8770,1861221,16374,531,89637,3879,3431,415,541606,162425 +2030,12,2019,9703,2059197,18116,588,99171,4291,3796,459,582369,179702 +2030,12,2020,10901,2313357,20352,661,111411,4821,4265,516,627623,201882 +2030,12,2021,12221,2593513,22817,741,124904,5405,4781,579,664028,226331 +2030,12,2022,13613,2889058,25417,825,139137,6020,5326,645,709490,252122 +2030,12,2023,15803,3353673,29504,958,161513,6989,6182,748,792728,292669 +2030,12,2024,18465,3918768,34476,1119,188728,8166,7224,874,889911,341984 +2030,12,2025,21796,4625541,40694,1321,222767,9639,8527,1032,1005233,403662 +2030,12,2026,26132,5545844,48790,1583,267088,11557,10223,1237,1147003,483975 +2030,12,2027,32541,6906040,60757,1972,332596,14391,12731,1541,1349861,602677 +2030,12,2028,42436,9005938,79231,2571,433726,18767,16602,2009,1646452,785931 +2030,12,2029,57945,12297264,108186,3511,592238,25626,22669,2744,2067578,1073159 +2030,12,2030,109876,23318276,205145,6658,1123007,48593,42986,5203,3424663,2034940 +2030,13,2000,488,487095,3795,38,17355,429,380,50,181280,18717 +2030,13,2001,138,134140,1031,11,4844,129,114,14,47982,5305 +2030,13,2002,179,173734,1336,14,6274,166,147,18,58606,6871 +2030,13,2003,235,228166,1754,18,8240,219,193,24,73694,9023 +2030,13,2004,236,167114,1238,18,6789,220,194,24,66666,9072 +2030,13,2005,316,223087,1652,24,9063,293,260,32,83253,12111 +2030,13,2006,924,264467,1953,29,10740,348,308,38,93636,14357 +2030,13,2007,1012,289813,2141,32,11770,381,337,42,97761,15733 +2030,13,2008,871,159201,1078,27,9468,328,290,36,75908,13537 +2030,13,2009,726,132731,899,23,7894,273,242,30,61872,11286 +2030,13,2010,339,61888,419,11,3682,128,113,14,28232,5264 +2030,13,2011,454,83003,562,14,4939,171,151,19,26554,7062 +2030,13,2012,682,124501,843,21,7411,257,227,28,38866,10595 +2030,13,2013,680,124102,840,21,7389,256,226,28,37626,10564 +2030,13,2014,837,152789,1034,26,9097,315,279,35,45043,13006 +2030,13,2015,927,169196,1146,29,10074,349,309,38,48568,14403 +2030,13,2016,1027,187484,1269,32,11163,387,342,42,45322,15960 +2030,13,2017,1145,209089,1416,36,12449,431,381,47,48984,17799 +2030,13,2018,1638,299172,2025,51,17813,617,546,68,67128,25467 +2030,13,2019,1813,330994,2241,57,19707,682,604,75,72001,28176 +2030,13,2020,2036,371848,2518,64,22140,767,678,84,77333,31654 +2030,13,2021,2283,416880,2822,71,24821,860,760,94,80980,35487 +2030,13,2022,2543,464386,3144,79,27649,957,847,105,86236,39531 +2030,13,2023,2952,539068,3650,92,32096,1111,983,122,95990,45889 +2030,13,2024,3450,629902,4265,108,37504,1299,1149,143,107313,53621 +2030,13,2025,4072,743507,5034,127,44268,1533,1356,168,120644,63292 +2030,13,2026,4882,891436,6035,152,53076,1838,1626,202,136883,75885 +2030,13,2027,6079,1110075,7516,190,66094,2289,2025,252,159996,94497 +2030,13,2028,7928,1447611,9801,247,86191,2985,2640,328,193465,123230 +2030,13,2029,10825,1976658,13383,338,117690,4075,3605,448,240094,168266 +2030,13,2030,20526,3748166,25376,641,223165,7728,6836,849,389153,319068 +2030,16,2000,209,215268,1760,19,8894,193,171,22,68816,8450 +2030,16,2001,59,58359,491,5,2495,53,47,6,18310,2395 +2030,16,2002,77,75585,635,7,3231,69,61,8,22429,3102 +2030,16,2003,101,99267,835,9,4244,91,80,11,28267,4073 +2030,16,2004,101,72803,592,9,3498,91,81,11,25394,4096 +2030,16,2005,135,97188,791,12,4670,122,108,14,31814,5467 +2030,16,2006,396,115215,926,14,5531,145,128,17,35820,6481 +2030,16,2007,434,126257,1015,16,6061,158,140,18,37492,7103 +2030,16,2008,374,69593,514,13,4875,136,121,16,28795,6111 +2030,16,2009,311,58021,428,11,4065,114,101,13,23494,5095 +2030,16,2010,145,27027,199,5,1896,53,47,6,10728,2376 +2030,16,2011,195,36211,267,7,2543,71,63,8,9660,3188 +2030,16,2012,292,54260,399,10,3816,107,94,12,14164,4783 +2030,16,2013,292,54032,398,10,3805,106,94,12,13742,4769 +2030,16,2014,359,66522,489,13,4685,131,116,15,16490,5872 +2030,16,2015,397,73666,542,14,5188,145,128,17,17822,6502 +2030,16,2016,440,81628,601,16,5748,160,142,19,16409,7205 +2030,16,2017,491,91034,670,18,6411,179,158,21,17801,8035 +2030,16,2018,703,130255,958,25,9173,256,226,30,24548,11497 +2030,16,2019,778,144110,1060,28,10148,283,251,33,26434,12720 +2030,16,2020,874,161897,1191,31,11401,318,281,37,28582,14290 +2030,16,2021,979,181504,1335,35,12782,357,316,42,29934,16020 +2030,16,2022,1091,202187,1488,39,14238,397,352,46,32133,17846 +2030,16,2023,1266,234703,1727,45,16528,461,408,54,36001,20716 +2030,16,2024,1480,274250,2018,53,19313,539,477,63,40534,24207 +2030,16,2025,1747,323713,2382,63,22796,636,563,74,45942,28572 +2030,16,2026,2094,388119,2856,75,27332,763,675,89,52631,34257 +2030,16,2027,2608,483312,3556,94,34035,950,840,111,62235,42659 +2030,16,2028,3401,630269,4637,122,44384,1239,1096,145,76363,55631 +2030,16,2029,4644,860609,6332,167,60605,1692,1496,197,96665,75962 +2030,16,2030,8806,1631900,12007,316,114919,3207,2837,374,162413,144039 +2030,17,2000,663,733162,6903,80,24090,645,571,74,272412,28375 +2030,17,2001,188,202765,1878,23,6764,196,173,21,72294,8042 +2030,17,2002,243,262615,2432,29,8761,254,225,27,88608,10416 +2030,17,2003,320,344894,3194,38,11506,334,295,35,111725,13679 +2030,17,2004,321,252638,2254,39,9481,335,297,36,100546,13753 +2030,17,2005,429,337256,3010,52,12657,448,396,48,126072,18360 +2030,17,2006,1256,399813,3556,61,14998,531,469,56,142253,21766 +2030,17,2007,1376,438131,3897,67,16435,582,514,62,149004,23852 +2030,17,2008,1184,240652,1955,58,13223,500,443,53,114704,20521 +2030,17,2009,987,200639,1630,48,11024,417,369,44,93624,17109 +2030,17,2010,460,93543,760,22,5142,195,172,21,42778,7980 +2030,17,2011,618,125446,1019,30,6898,261,231,28,40360,10705 +2030,17,2012,927,188146,1528,45,10350,392,346,42,59202,16062 +2030,17,2013,924,187528,1523,45,10319,390,345,42,57463,16015 +2030,17,2014,1137,230876,1875,55,12705,481,425,51,68970,19717 +2030,17,2015,1260,255668,2077,61,14069,532,471,57,74555,21835 +2030,17,2016,1396,283302,2301,68,15590,590,522,63,70003,24195 +2030,17,2017,1556,315948,2566,76,17386,658,582,70,75934,26983 +2030,17,2018,2227,452070,3672,109,24877,941,832,100,104566,38608 +2030,17,2019,2464,500157,4063,120,27523,1041,921,111,112585,42715 +2030,17,2020,2768,561889,4564,135,30920,1170,1035,124,121581,47987 +2030,17,2021,3103,629936,5117,151,34665,1311,1160,139,128048,53798 +2030,17,2022,3457,701721,5700,168,38615,1461,1292,155,137212,59929 +2030,17,2023,4013,814572,6617,196,44825,1696,1500,180,153673,69567 +2030,17,2024,4689,951826,7732,228,52378,1981,1753,211,172957,81289 +2030,17,2025,5535,1123495,9126,270,61825,2339,2069,249,195944,95950 +2030,17,2026,6636,1347024,10942,323,74125,2804,2481,298,224352,115040 +2030,17,2027,8263,1677403,13625,403,92306,3492,3089,371,265127,143255 +2030,17,2028,10776,2187444,17768,525,120373,4554,4028,484,325062,186814 +2030,17,2029,14714,2986874,24262,717,164365,6218,5500,661,411058,255088 +2030,17,2030,27902,5663752,46006,1360,311671,11790,10430,1254,689378,483701 +2030,18,2000,114,121672,1022,10,4422,106,94,12,37193,4668 +2030,18,2001,32,33624,278,3,1242,32,28,3,9871,1323 +2030,18,2002,42,43549,360,4,1609,42,37,4,12107,1714 +2030,18,2003,55,57193,473,5,2113,55,48,6,15273,2251 +2030,18,2004,55,41903,334,5,1741,55,49,6,13695,2263 +2030,18,2005,74,55937,446,7,2324,74,65,8,17182,3021 +2030,18,2006,216,66313,526,8,2754,87,77,9,19392,3581 +2030,18,2007,236,72668,577,9,3018,96,85,10,20323,3924 +2030,18,2008,203,39889,290,8,2427,82,73,9,15559,3376 +2030,18,2009,169,33257,241,6,2024,69,61,7,12701,2815 +2030,18,2010,79,15503,112,3,944,32,28,3,5804,1313 +2030,18,2011,106,20787,151,4,1266,43,38,5,5348,1761 +2030,18,2012,159,31173,226,6,1900,64,57,7,7848,2643 +2030,18,2013,159,31066,225,6,1894,64,57,7,7623,2635 +2030,18,2014,195,38247,277,7,2332,79,70,8,9155,3244 +2030,18,2015,216,42355,307,8,2583,87,77,9,9902,3592 +2030,18,2016,240,46933,340,9,2862,97,86,10,9213,3981 +2030,18,2017,267,52341,380,10,3192,108,96,11,10005,4439 +2030,18,2018,382,74891,543,14,4567,155,137,16,13800,6352 +2030,18,2019,423,82857,601,16,5053,171,151,18,14877,7028 +2030,18,2020,475,93084,675,18,5676,192,170,20,16095,7895 +2030,18,2021,533,104357,757,20,6364,215,191,23,16933,8851 +2030,18,2022,593,116249,843,22,7089,240,212,25,18187,9860 +2030,18,2023,689,134944,979,25,8229,279,246,29,20412,11445 +2030,18,2024,805,157682,1144,30,9616,325,288,34,23025,13374 +2030,18,2025,950,186121,1350,35,11350,384,340,41,26153,15786 +2030,18,2026,1139,223151,1618,42,13608,461,407,49,30034,18927 +2030,18,2027,1418,277883,2015,52,16946,574,507,61,35620,23569 +2030,18,2028,1850,362378,2628,68,22098,748,662,79,43867,30735 +2030,18,2029,2526,494813,3589,93,30174,1021,903,108,55800,41967 +2030,18,2030,4789,938271,6805,177,57217,1937,1713,205,94555,79579 +2030,19,2000,251,272605,2500,27,9784,243,215,28,78841,10732 +2030,19,2001,71,76835,698,8,2733,74,66,8,21078,3042 +2030,19,2002,92,99515,904,10,3539,96,85,10,25942,3939 +2030,19,2003,121,130693,1187,13,4648,126,111,13,32815,5174 +2030,19,2004,122,95752,839,13,3831,127,112,13,29242,5202 +2030,19,2005,163,127824,1120,18,5114,169,150,18,36834,6944 +2030,19,2006,476,151533,1321,21,6059,200,177,21,41700,8232 +2030,19,2007,522,166056,1448,23,6640,220,194,23,43838,9021 +2030,19,2008,449,91089,724,20,5340,189,167,20,33226,7761 +2030,19,2009,374,75944,604,16,4452,158,139,17,27159,6471 +2030,19,2010,175,35402,281,8,2076,73,65,8,12426,3018 +2030,19,2011,234,47469,377,10,2786,99,87,10,11629,4049 +2030,19,2012,351,71185,566,15,4180,148,131,16,17099,6075 +2030,19,2013,350,70940,564,15,4168,147,130,16,16647,6057 +2030,19,2014,431,87339,694,19,5131,181,161,19,20039,7457 +2030,19,2015,478,96717,768,21,5682,201,178,21,21724,8258 +2030,19,2016,529,107171,852,23,6296,223,197,23,20446,9151 +2030,19,2017,590,119521,950,26,7021,248,220,26,22272,10205 +2030,19,2018,845,171015,1359,37,10047,355,314,37,30845,14602 +2030,19,2019,935,189205,1503,41,11115,393,348,41,33356,16155 +2030,19,2020,1050,212559,1689,46,12487,442,391,47,36247,18149 +2030,19,2021,1177,238300,1893,52,13999,495,438,52,38378,20347 +2030,19,2022,1311,265456,2109,57,15595,552,488,58,41420,22666 +2030,19,2023,1522,308146,2448,67,18103,640,566,67,46706,26311 +2030,19,2024,1778,360070,2861,78,21153,748,662,79,52954,30744 +2030,19,2025,2099,425010,3377,92,24968,883,781,93,60492,36289 +2030,19,2026,2517,509569,4049,110,29936,1059,937,112,69932,43510 +2030,19,2027,3134,634549,5042,137,37278,1319,1166,139,83588,54181 +2030,19,2028,4087,827494,6575,179,48613,1720,1521,181,103932,70656 +2030,19,2029,5581,1129911,8978,244,66379,2348,2077,247,133868,96478 +2030,19,2030,10583,2142554,17024,463,125868,4452,3938,469,231746,182942 +2030,20,2000,283,297328,2709,31,10410,264,234,31,125585,11639 +2030,20,2001,80,83786,756,9,2907,80,71,9,33375,3299 +2030,20,2002,104,108518,979,11,3766,104,92,11,40801,4272 +2030,20,2003,136,142517,1286,15,4945,137,121,15,51343,5611 +2030,20,2004,137,104419,909,15,4075,138,122,15,46393,5641 +2030,20,2005,183,139392,1213,20,5441,184,162,20,57998,7531 +2030,20,2006,535,165248,1430,24,6446,218,193,23,65266,8928 +2030,20,2007,586,181085,1567,26,7064,239,211,26,68199,9783 +2030,20,2008,505,99662,792,23,5684,205,182,22,52860,8417 +2030,20,2009,421,83091,660,19,4739,171,151,18,43102,7018 +2030,20,2010,196,38733,308,9,2210,80,71,9,19674,3273 +2030,20,2011,263,51934,412,12,2965,107,95,12,18278,4391 +2030,20,2012,395,77879,618,18,4449,161,142,17,26769,6588 +2030,20,2013,394,77609,616,18,4436,160,142,17,25934,6569 +2030,20,2014,485,95549,759,22,5462,197,174,21,31072,8088 +2030,20,2015,537,105810,840,24,6048,218,193,24,33529,8956 +2030,20,2016,595,117246,931,27,6702,242,214,26,31154,9924 +2030,20,2017,663,130757,1038,30,7474,270,239,29,33712,11068 +2030,20,2018,949,187092,1485,43,10694,386,341,42,46274,15836 +2030,20,2019,1050,206993,1643,47,11832,427,378,46,49696,17520 +2030,20,2020,1180,232541,1846,53,13292,480,424,52,53474,19683 +2030,20,2021,1323,260702,2070,59,14902,538,476,58,56003,22067 +2030,20,2022,1473,290411,2306,66,16600,599,530,65,59771,24581 +2030,20,2023,1710,337115,2676,77,19270,695,615,75,66672,28534 +2030,20,2024,1999,393919,3127,90,22517,813,719,88,74709,33343 +2030,20,2025,2359,464964,3691,106,26578,959,848,103,84215,39356 +2030,20,2026,2828,557474,4426,127,31866,1150,1017,124,95854,47186 +2030,20,2027,3522,694203,5511,158,39681,1432,1267,154,112471,58759 +2030,20,2028,4593,905287,7187,206,51747,1867,1652,201,136667,76626 +2030,20,2029,6272,1236134,9814,281,70659,2550,2256,275,170748,104630 +2030,20,2030,11893,2343975,18609,533,133984,4835,4277,521,280209,198402 +2030,21,2000,158,169064,1417,14,5922,147,130,17,51880,6502 +2030,21,2001,45,46787,386,4,1663,45,40,5,13776,1843 +2030,21,2002,58,60597,500,5,2154,58,51,6,16901,2387 +2030,21,2003,76,79582,656,7,2829,76,67,8,21326,3135 +2030,21,2004,77,58286,463,7,2331,77,68,8,19132,3152 +2030,21,2005,103,77809,618,9,3112,102,90,11,24013,4207 +2030,21,2006,300,92241,731,11,3688,121,107,13,27119,4988 +2030,21,2007,329,101082,801,12,4041,133,118,14,28429,5466 +2030,21,2008,283,55410,400,10,3250,114,101,12,21776,4703 +2030,21,2009,236,46197,334,9,2710,95,84,10,17779,3921 +2030,21,2010,110,21541,156,4,1264,44,39,5,8126,1829 +2030,21,2011,148,28890,209,5,1695,60,53,6,7778,2453 +2030,21,2012,222,43335,313,8,2544,89,79,9,11413,3681 +2030,21,2013,221,43197,312,8,2536,89,79,9,11083,3670 +2030,21,2014,272,53182,384,10,3123,110,97,12,13309,4518 +2030,21,2015,301,58893,426,11,3458,122,108,13,14393,5004 +2030,21,2016,334,65258,472,12,3832,135,119,14,13623,5544 +2030,21,2017,372,72778,526,13,4273,150,133,16,14786,6183 +2030,21,2018,532,104134,753,19,6114,215,190,23,20381,8847 +2030,21,2019,589,115211,833,21,6765,238,210,25,21957,9788 +2030,21,2020,662,129430,935,24,7600,267,236,28,23737,10996 +2030,21,2021,742,145105,1049,27,8520,300,265,32,25068,12328 +2030,21,2022,826,161641,1168,30,9491,334,295,35,26889,13733 +2030,21,2023,959,187636,1356,35,11017,388,343,41,30141,15942 +2030,21,2024,1121,219252,1584,41,12873,453,401,48,33955,18628 +2030,21,2025,1323,258795,1870,48,15195,534,473,57,38509,21987 +2030,21,2026,1587,310285,2242,57,18218,641,567,68,44146,26362 +2030,21,2027,1976,386388,2792,72,22687,798,706,84,52247,32828 +2030,21,2028,2576,503875,3641,93,29585,1041,921,110,64176,42809 +2030,21,2029,3518,688023,4972,127,40397,1421,1257,150,81352,58454 +2030,21,2030,6671,1304638,9428,242,76602,2694,2384,285,137024,110842 +2030,22,2000,414,442705,3877,42,13865,391,346,45,157993,17229 +2030,22,2001,117,122032,1054,12,3869,117,104,13,41939,4883 +2030,22,2002,152,158052,1366,16,5012,152,134,16,51398,6325 +2030,22,2003,199,207571,1794,20,6582,199,176,22,64802,8306 +2030,22,2004,201,151990,1264,21,5422,200,177,22,58405,8351 +2030,22,2005,268,202897,1687,27,7238,268,237,29,73229,11148 +2030,22,2006,783,240532,1999,33,8580,317,281,34,82658,13216 +2030,22,2007,859,263584,2191,36,9402,348,308,38,86579,14483 +2030,22,2008,739,144513,1094,31,7562,299,265,32,66777,12460 +2030,22,2009,616,120485,912,26,6305,249,221,27,54506,10389 +2030,22,2010,287,56189,425,12,2941,116,103,13,24907,4845 +2030,22,2011,385,75374,571,16,3945,156,138,17,24511,6500 +2030,22,2012,578,113080,856,24,5919,234,207,25,35942,9753 +2030,22,2013,577,112740,854,24,5902,233,206,25,34874,9725 +2030,22,2014,710,138800,1051,29,7266,287,254,31,41840,11972 +2030,22,2015,786,153705,1164,33,8046,318,281,34,45210,13258 +2030,22,2016,871,170318,1290,36,8916,353,312,38,43173,14691 +2030,22,2017,971,189945,1438,40,9943,393,348,42,46789,16384 +2030,22,2018,1390,271780,2058,58,14227,563,498,61,64323,23443 +2030,22,2019,1538,300689,2277,64,15741,623,551,67,69192,25936 +2030,22,2020,1727,337802,2558,72,17684,699,619,75,74592,29138 +2030,22,2021,1937,378711,2868,80,19825,784,694,85,78854,32666 +2030,22,2022,2157,421868,3194,90,22084,873,773,94,84301,36389 +2030,22,2023,2504,489712,3708,104,25636,1014,897,109,94261,42241 +2030,22,2024,2926,572228,4333,121,29956,1185,1048,128,105902,49359 +2030,22,2025,3454,675433,5114,143,35358,1398,1237,151,119735,58261 +2030,22,2026,4141,809817,6132,172,42393,1677,1483,181,136770,69852 +2030,22,2027,5157,1008438,7636,214,52791,2088,1847,225,161169,86985 +2030,22,2028,6725,1315069,9958,279,68843,2723,2408,294,196904,113434 +2030,22,2029,9182,1795678,13597,381,94002,3718,3289,401,247814,154889 +2030,22,2030,17412,3404988,25783,723,178248,7049,6236,761,412103,293704 +2030,23,2000,384,400280,3346,35,15462,358,317,41,109480,15757 +2030,23,2001,109,103986,1046,10,4284,100,89,12,29866,4466 +2030,23,2002,141,134680,1355,13,5549,130,115,15,36725,5784 +2030,23,2003,185,176876,1779,17,7288,171,151,20,46422,7596 +2030,23,2004,186,129651,1258,17,6006,172,152,20,41153,7637 +2030,23,2005,248,173077,1679,23,8018,229,203,26,51763,10195 +2030,23,2006,727,205180,1978,27,9499,271,240,31,58511,12086 +2030,23,2007,797,224845,2168,29,10410,297,263,34,61439,13245 +2030,23,2008,686,123666,1089,25,8372,256,226,29,46239,11395 +2030,23,2009,572,103104,908,21,6980,213,189,24,37769,9501 +2030,23,2010,267,48045,423,10,3255,100,88,11,17268,4431 +2030,23,2011,358,64399,567,13,4367,133,118,15,15267,5945 +2030,23,2012,537,96537,850,20,6553,200,177,23,22438,8919 +2030,23,2013,535,96171,847,20,6533,200,177,23,21831,8893 +2030,23,2014,659,118401,1043,24,8044,246,217,28,26267,10949 +2030,23,2015,730,131116,1155,27,8907,272,241,31,28462,12125 +2030,23,2016,809,145288,1280,30,9870,302,267,35,26017,13435 +2030,23,2017,902,162030,1427,33,11008,336,297,39,28341,14984 +2030,23,2018,1290,231838,2042,47,15750,481,426,55,39216,21439 +2030,23,2019,1427,256498,2259,52,17425,532,471,61,42411,23719 +2030,23,2020,1604,288157,2538,59,19576,598,529,69,46050,26647 +2030,23,2021,1798,323053,2845,66,21947,670,593,77,48405,29874 +2030,23,2022,2003,359869,3169,73,24448,747,661,86,52242,33278 +2030,23,2023,2325,417741,3679,85,28380,867,767,100,58938,38630 +2030,23,2024,2717,488131,4299,100,33162,1013,896,116,66858,45139 +2030,23,2025,3207,576168,5074,118,39142,1196,1058,137,76419,53280 +2030,23,2026,3845,690803,6084,141,46930,1434,1268,165,88404,63881 +2030,23,2027,4787,860233,7576,176,58441,1785,1579,205,105750,79549 +2030,23,2028,6243,1121800,9880,229,76210,2328,2059,267,131613,103737 +2030,23,2029,8525,1531778,13490,313,104062,3179,2812,365,169731,141649 +2030,23,2030,16165,2904577,25580,593,197324,6028,5332,692,294438,268597 +2030,24,2000,757,847388,7987,93,28072,750,663,85,267537,33133 +2030,24,2001,215,233351,2171,26,7836,225,199,24,71150,9390 +2030,24,2002,278,302229,2812,34,10149,291,257,31,87491,12162 +2030,24,2003,365,396919,3693,45,13328,382,338,41,110594,15973 +2030,24,2004,367,290715,2605,45,10982,384,340,41,98964,16059 +2030,24,2005,490,388086,3478,60,14660,513,453,55,124550,21438 +2030,24,2006,1434,460071,4114,71,17373,608,538,65,140978,25415 +2030,24,2007,1572,504165,4508,78,19038,666,589,71,148105,27851 +2030,24,2008,1352,276480,2249,67,15312,573,507,61,112947,23962 +2030,24,2009,1127,230510,1875,56,12766,478,423,51,92304,19978 +2030,24,2010,526,107479,874,26,5954,223,197,24,42227,9318 +2030,24,2011,705,144146,1173,35,7988,299,264,32,40419,12500 +2030,24,2012,1058,216212,1759,52,11985,448,397,48,59397,18755 +2030,24,2013,1055,215519,1753,52,11950,447,395,48,57783,18701 +2030,24,2014,1299,265337,2158,64,14713,550,487,59,69504,23023 +2030,24,2015,1439,293829,2390,71,16292,609,539,65,75291,25496 +2030,24,2016,1594,325588,2649,79,18053,675,597,72,71447,28251 +2030,24,2017,1778,363108,2954,88,20134,753,666,81,77722,31507 +2030,24,2018,2544,519547,4226,126,28808,1078,953,116,107447,45081 +2030,24,2019,2814,574812,4676,139,31872,1192,1055,128,116032,49877 +2030,24,2020,3162,645758,5253,156,35806,1339,1185,144,125842,56033 +2030,24,2021,3545,723962,5889,175,40143,1502,1328,161,133324,62819 +2030,24,2022,3949,806462,6561,195,44717,1673,1480,179,143538,69977 +2030,24,2023,4584,936157,7616,227,51909,1942,1718,208,161496,81231 +2030,24,2024,5356,1093900,8899,265,60655,2269,2007,243,182664,94918 +2030,24,2025,6322,1291191,10504,313,71595,2678,2369,287,208105,112037 +2030,24,2026,7580,1548085,12594,375,85839,3211,2840,344,239839,134328 +2030,24,2027,9439,1927778,15682,467,106893,3998,3537,429,285632,167274 +2030,24,2028,12309,2513949,20451,609,139395,5214,4612,559,353573,218136 +2030,24,2029,16807,3432700,27925,832,190339,7120,6298,763,452797,297857 +2030,24,2030,31870,6509127,52951,1577,360923,13500,11943,1447,776237,564801 +2030,25,2000,4692,5250813,52898,682,179078,4698,4156,541,1975085,208767 +2030,25,2001,1330,1364163,16540,193,49602,1316,1164,153,536133,59168 +2030,25,2002,1722,1766824,21422,250,64243,1704,1508,198,657462,76633 +2030,25,2003,2262,2320377,28134,329,84370,2238,1980,261,829311,100643 +2030,25,2004,2274,1700921,19879,330,69541,2251,1991,262,739118,101189 +2030,25,2005,3036,2270624,26537,441,92832,3004,2658,350,926777,135082 +2030,25,2006,8887,2691797,31297,523,109972,3562,3151,415,1045276,160138 +2030,25,2007,9738,2949778,34297,573,120512,3903,3453,454,1094880,175485 +2030,25,2008,8379,1627233,17261,493,96972,3358,2971,391,831201,150982 +2030,25,2009,6985,1356674,14391,411,80849,2800,2477,326,678239,125878 +2030,25,2010,3258,632182,6707,192,37708,1306,1155,152,309789,58710 +2030,25,2011,4371,847334,8992,257,50588,1751,1549,204,273389,78763 +2030,25,2012,6558,1270177,13482,386,75901,2627,2324,306,401009,118176 +2030,25,2013,6539,1265325,13435,385,75680,2619,2317,305,389234,117832 +2030,25,2014,8050,1557810,16540,474,93174,3224,2852,376,467206,145069 +2030,25,2015,8915,1725093,18316,525,103180,3570,3158,416,505072,160647 +2030,25,2016,9878,1911552,20296,581,114332,3956,3500,461,458461,178010 +2030,25,2017,11017,2131829,22635,648,127507,4412,3903,514,497644,198524 +2030,25,2018,15763,3050298,32386,928,182442,6313,5585,736,685241,284055 +2030,25,2019,17440,3374755,35831,1026,201848,6985,6179,814,738338,314269 +2030,25,2020,19592,3791290,40254,1153,226761,7847,6941,914,797406,353059 +2030,25,2021,21965,4250425,45129,1292,254223,8797,7782,1025,832982,395815 +2030,25,2022,24468,4734789,50271,1440,283193,9799,8669,1142,893548,440921 +2030,25,2023,28403,5496241,58356,1671,328736,11375,10063,1325,1002288,511828 +2030,25,2024,33189,6422358,68189,1953,384128,13292,11758,1549,1129950,598072 +2030,25,2025,39175,7580666,80487,2305,453408,15689,13879,1828,1282567,705938 +2030,25,2026,46969,9088918,96501,2764,543617,18811,16641,2192,1471784,846391 +2030,25,2027,58489,11318099,120170,3442,676948,23425,20722,2729,1743883,1053983 +2030,25,2028,76274,14759550,156709,4488,882785,30547,27023,3559,2145165,1374463 +2030,25,2029,104149,20153616,213980,6128,1205408,41711,36899,4860,2724576,1876777 +2030,25,2030,197489,38215580,405753,11621,2285714,79093,69968,9215,4604628,3558773 +2030,26,2000,548,591081,5069,52,21939,515,456,58,170110,22683 +2030,26,2001,155,163216,1378,15,6164,157,139,17,45181,6429 +2030,26,2002,201,211393,1785,19,7984,203,179,21,55495,8326 +2030,26,2003,264,277624,2344,25,10485,266,236,28,70087,10935 +2030,26,2004,265,203440,1657,25,8641,268,237,28,62651,10994 +2030,26,2005,354,271580,2213,34,11535,358,316,38,78731,14677 +2030,26,2006,1037,321955,2607,40,13667,424,375,45,88944,17399 +2030,26,2007,1137,352811,2856,44,14977,465,411,49,93328,19066 +2030,26,2008,978,193703,1434,38,12046,400,354,42,71104,16404 +2030,26,2009,815,161496,1196,31,10043,333,295,35,58073,13677 +2030,26,2010,380,75272,557,15,4684,155,137,16,26549,6379 +2030,26,2011,510,100915,747,20,6284,208,184,22,24160,8558 +2030,26,2012,766,151311,1119,29,9428,313,277,33,35489,12840 +2030,26,2013,763,150769,1115,29,9401,312,276,33,34508,12802 +2030,26,2014,940,185620,1373,36,11574,384,339,41,41493,15762 +2030,26,2015,1041,205553,1520,40,12817,425,376,45,44932,17454 +2030,26,2016,1153,227770,1685,44,14202,471,417,50,41654,19341 +2030,26,2017,1286,254018,1879,49,15838,525,464,56,45317,21570 +2030,26,2018,1840,363457,2688,71,22662,751,665,79,62653,30863 +2030,26,2019,2036,402117,2974,78,25073,831,735,88,67666,34145 +2030,26,2020,2287,451750,3341,88,28167,934,826,99,73392,38360 +2030,26,2021,2564,506458,3746,99,31579,1047,926,111,77296,43005 +2030,26,2022,2856,564172,4172,110,35177,1166,1032,123,83275,47906 +2030,26,2023,3316,654902,4843,128,40834,1354,1198,143,93734,55610 +2030,26,2024,3874,765253,5660,149,47715,1582,1399,167,106069,64981 +2030,26,2025,4573,903273,6680,176,56321,1867,1652,197,120905,76700 +2030,26,2026,5483,1082987,8009,211,67526,2239,1980,237,139425,91961 +2030,26,2027,6828,1348606,9974,263,84088,2788,2466,295,166164,114515 +2030,26,2028,8904,1758672,13007,343,109656,3635,3216,384,205867,149336 +2030,26,2029,12158,2401400,17760,468,149731,4964,4391,525,263939,203912 +2030,26,2030,23054,4553567,33677,887,283922,9413,8327,995,453349,386661 +2030,27,2000,185,203392,1711,19,7270,176,155,20,59970,7714 +2030,27,2001,53,54978,454,5,2077,52,46,6,15858,2186 +2030,27,2002,68,71206,588,7,2690,68,60,7,19462,2832 +2030,27,2003,89,93515,772,9,3533,89,79,10,24564,3719 +2030,27,2004,90,68551,546,9,2912,89,79,10,22026,3739 +2030,27,2005,120,91511,730,12,3887,119,106,13,27657,4991 +2030,27,2006,351,108486,859,14,4605,141,125,15,31222,5917 +2030,27,2007,385,118883,941,16,5046,155,137,17,32740,6484 +2030,27,2008,331,65399,474,13,4059,133,118,14,25062,5579 +2030,27,2009,276,54525,395,11,3384,111,98,12,20465,4651 +2030,27,2010,129,25407,184,5,1578,52,46,6,9353,2169 +2030,27,2011,173,34054,246,7,2117,70,61,8,8419,2910 +2030,27,2012,259,51046,369,11,3177,104,92,11,12364,4367 +2030,27,2013,258,50850,368,11,3168,104,92,11,12017,4354 +2030,27,2014,318,62605,453,13,3900,128,113,14,14445,5360 +2030,27,2015,352,69327,501,14,4319,142,125,15,15637,5936 +2030,27,2016,390,76821,556,16,4786,157,139,17,14404,6578 +2030,27,2017,435,85673,620,18,5337,175,155,19,15666,7336 +2030,27,2018,623,122584,887,25,7637,251,222,27,21643,10496 +2030,27,2019,689,135623,981,28,8449,277,245,30,23366,11612 +2030,27,2020,774,152363,1102,32,9492,311,276,34,25325,13046 +2030,27,2021,868,170815,1235,35,10641,349,309,38,26618,14625 +2030,27,2022,967,190280,1376,39,11854,389,344,42,28658,16292 +2030,27,2023,1123,220881,1597,46,13760,452,399,49,32241,18912 +2030,27,2024,1312,258099,1867,53,16079,528,467,57,36465,22099 +2030,27,2025,1548,304649,2203,63,18979,623,551,67,41542,26085 +2030,27,2026,1857,365262,2642,76,22755,747,661,81,47873,31274 +2030,27,2027,2312,454849,3289,94,28336,930,823,101,57008,38945 +2030,27,2028,3015,593151,4290,123,36951,1213,1073,131,70561,50787 +2030,27,2029,4117,809926,5857,168,50456,1656,1465,179,90350,69347 +2030,27,2030,7806,1535794,11107,318,95675,3139,2777,340,154852,131498 +2030,28,2000,158,167119,1382,14,5644,147,130,17,58022,6476 +2030,28,2001,45,46046,376,4,1575,44,39,5,15387,1835 +2030,28,2002,58,59637,487,5,2040,57,50,6,18840,2377 +2030,28,2003,76,78322,639,7,2679,75,66,8,23736,3122 +2030,28,2004,77,57356,451,7,2207,75,66,8,21402,3139 +2030,28,2005,102,76567,602,9,2946,100,89,11,26804,4190 +2030,28,2006,299,90769,712,11,3492,119,105,13,30223,4968 +2030,28,2007,328,99468,780,12,3827,130,115,14,31628,5444 +2030,28,2008,282,54547,390,10,3078,112,99,12,24417,4684 +2030,28,2009,235,45477,326,9,2566,93,83,10,19922,3905 +2030,28,2010,110,21207,152,4,1197,44,39,5,9099,1821 +2030,28,2011,147,28445,204,5,1605,58,52,6,8886,2443 +2030,28,2012,221,42671,305,8,2409,88,78,9,13023,3666 +2030,28,2013,220,42539,304,8,2402,87,77,9,12627,3655 +2030,28,2014,271,52372,375,10,2957,108,95,12,15138,4500 +2030,28,2015,300,57996,415,11,3275,119,105,13,16347,4983 +2030,28,2016,332,64265,460,12,3629,132,117,14,15566,5522 +2030,28,2017,371,71670,513,14,4047,147,130,16,16854,6158 +2030,28,2018,530,102549,734,19,5790,211,187,23,23163,8811 +2030,28,2019,587,113457,812,22,6406,233,206,25,24892,9749 +2030,28,2020,659,127460,912,24,7197,262,232,28,26819,10952 +2030,28,2021,739,142896,1023,27,8068,294,260,32,28290,12278 +2030,28,2022,823,159180,1139,30,8988,327,290,35,30221,13677 +2030,28,2023,956,184779,1323,35,10433,380,336,41,33737,15877 +2030,28,2024,1117,215915,1545,41,12191,444,393,48,37837,18552 +2030,28,2025,1318,254857,1824,48,14390,524,464,56,42694,21898 +2030,28,2026,1580,305562,2187,58,17253,628,556,68,48653,26255 +2030,28,2027,1968,380505,2724,72,21484,782,692,84,57169,32695 +2030,28,2028,2566,496205,3552,94,28017,1020,903,110,69594,42636 +2030,28,2029,3504,677549,4850,128,38256,1393,1232,150,87165,58218 +2030,28,2030,6644,1284778,9196,243,72542,2642,2337,284,143689,110394 +2030,29,2000,528,541619,4500,46,19638,482,426,55,189495,21159 +2030,29,2001,150,152769,1257,13,5485,147,130,16,50414,5997 +2030,29,2002,194,197862,1627,17,7104,190,168,20,61704,7767 +2030,29,2003,254,259854,2137,22,9329,249,221,27,77718,10201 +2030,29,2004,256,190349,1509,22,7687,251,222,27,69980,10256 +2030,29,2005,341,254103,2015,30,10262,335,296,36,87595,13691 +2030,29,2006,999,301237,2379,35,12160,397,351,42,98686,16231 +2030,29,2007,1095,330107,2606,39,13326,435,385,46,103226,17786 +2030,29,2008,942,181292,1312,33,10720,374,331,40,79575,15303 +2030,29,2009,786,151149,1094,28,8937,312,276,33,64909,12758 +2030,29,2010,366,70469,510,13,4168,145,129,15,29639,5951 +2030,29,2011,492,94501,684,17,5592,195,173,21,27550,7983 +2030,29,2012,738,141733,1025,26,8390,293,259,31,40376,11978 +2030,29,2013,735,141265,1022,26,8366,292,258,31,39151,11943 +2030,29,2014,905,173919,1258,32,10300,359,318,38,46944,14703 +2030,29,2015,1003,192595,1393,35,11406,398,352,42,50697,16282 +2030,29,2016,1111,213412,1544,39,12639,441,390,47,47179,18042 +2030,29,2017,1239,238005,1722,44,14095,492,435,52,51115,20121 +2030,29,2018,1773,340545,2464,63,20168,704,623,75,70258,28790 +2030,29,2019,1961,376770,2726,69,22313,779,689,83,75551,31853 +2030,29,2020,2203,423274,3062,78,25067,875,774,93,81424,35784 +2030,29,2021,2470,474533,3433,87,28103,981,867,104,85451,40118 +2030,29,2022,2752,528609,3824,97,31305,1092,966,116,91376,44689 +2030,29,2023,3194,613619,4439,113,36339,1268,1122,135,102145,51876 +2030,29,2024,3733,717015,5187,132,42463,1482,1311,158,114728,60617 +2030,29,2025,4406,846333,6122,156,50121,1749,1547,186,129673,71550 +2030,29,2026,5282,1014718,7341,187,60093,2097,1855,223,148065,85786 +2030,29,2027,6578,1263593,9141,232,74832,2611,2310,278,174400,106826 +2030,29,2028,8578,1647809,11920,303,97585,3405,3012,363,212946,139308 +2030,29,2029,11713,2250021,16277,414,133249,4650,4113,495,267798,190220 +2030,29,2030,22210,4266522,30864,785,252669,8817,7799,939,444722,360698 +2030,30,2000,42,40228,303,3,1647,36,32,4,16596,1565 +2030,30,2001,12,10914,84,1,462,10,9,1,4397,444 +2030,30,2002,16,14135,109,1,598,13,12,2,5359,574 +2030,30,2003,20,18564,144,1,786,17,15,2,6727,754 +2030,30,2004,20,13612,102,1,648,17,15,2,6103,758 +2030,30,2005,27,18172,136,2,865,23,20,3,7603,1013 +2030,30,2006,80,21542,159,2,1024,27,24,3,8525,1200 +2030,30,2007,88,23607,174,3,1123,30,26,4,8882,1315 +2030,30,2008,76,13044,89,2,903,26,23,3,6932,1132 +2030,30,2009,63,10875,74,2,753,21,19,3,5645,944 +2030,30,2010,29,5066,35,1,351,10,9,1,2573,440 +2030,30,2011,39,6789,46,1,471,13,12,2,2307,590 +2030,30,2012,59,10174,69,2,707,20,18,2,3372,886 +2030,30,2013,59,10133,69,2,705,20,18,2,3259,883 +2030,30,2014,73,12475,85,2,868,25,22,3,3897,1087 +2030,30,2015,80,13815,94,2,961,27,24,3,4196,1204 +2030,30,2016,89,15308,104,3,1065,30,27,4,3823,1334 +2030,30,2017,99,17072,116,3,1188,34,30,4,4125,1488 +2030,30,2018,142,24427,167,4,1699,48,43,6,5646,2129 +2030,30,2019,157,27026,184,5,1880,53,47,6,6045,2356 +2030,30,2020,177,30362,207,5,2112,60,53,7,6481,2646 +2030,30,2021,198,34038,232,6,2368,67,59,8,6725,2967 +2030,30,2022,221,37917,259,6,2638,75,66,9,7150,3305 +2030,30,2023,256,44015,300,8,3062,87,77,10,7936,3836 +2030,30,2024,299,51432,351,9,3578,101,90,12,8844,4483 +2030,30,2025,353,60708,414,10,4223,120,106,14,9907,5291 +2030,30,2026,423,72786,496,12,5063,143,127,17,11192,6344 +2030,30,2027,527,90638,618,16,6305,179,158,21,13012,7900 +2030,30,2028,687,118198,806,20,8223,233,206,28,15627,10303 +2030,30,2029,939,161395,1101,28,11228,318,281,38,19210,14068 +2030,30,2030,1780,306039,2087,52,21290,603,534,73,30582,26675 +2030,31,2000,252,273087,2550,29,10226,244,216,28,104837,10730 +2030,31,2001,72,76895,712,8,2857,74,66,8,27898,3041 +2030,31,2002,93,99592,922,11,3700,96,85,10,34165,3939 +2030,31,2003,122,130795,1210,14,4860,126,112,13,43049,5173 +2030,31,2004,122,95851,856,14,4005,127,112,13,38750,5201 +2030,31,2005,163,127955,1143,19,5347,170,150,18,48537,6943 +2030,31,2006,478,151690,1346,22,6334,201,178,21,54690,8231 +2030,31,2007,524,166227,1475,25,6941,220,195,23,57236,9019 +2030,31,2008,451,91405,743,21,5584,190,168,20,44086,7760 +2030,31,2009,376,76207,619,18,4656,158,140,17,35969,6470 +2030,31,2010,175,35518,288,8,2171,74,65,8,16427,3018 +2030,31,2011,235,47616,387,11,2913,99,87,10,15533,4048 +2030,31,2012,353,71392,579,17,4371,148,131,16,22767,6074 +2030,31,2013,352,71134,577,16,4358,148,131,16,22077,6056 +2030,31,2014,433,87577,711,20,5366,182,161,19,26475,7456 +2030,31,2015,480,96981,787,22,5942,202,178,21,28596,8257 +2030,31,2016,532,107463,872,25,6584,223,198,24,26918,9149 +2030,31,2017,593,119847,973,28,7343,249,220,26,29161,10203 +2030,31,2018,848,171481,1392,40,10506,356,315,38,40154,14599 +2030,31,2019,938,189721,1540,44,11624,394,349,42,43174,16152 +2030,31,2020,1054,213138,1730,49,13058,443,392,47,46604,18146 +2030,31,2021,1182,238950,1939,55,14640,497,439,53,49006,20344 +2030,31,2022,1317,266179,2160,62,16308,553,489,59,52468,22662 +2030,31,2023,1528,308986,2507,72,18930,642,568,68,58624,26306 +2030,31,2024,1786,361050,2930,84,22120,750,664,80,65811,30739 +2030,31,2025,2108,426168,3458,99,26110,886,783,94,74339,36283 +2030,31,2026,2527,510958,4146,118,31305,1062,939,113,84823,43502 +2030,31,2027,3147,636278,5163,147,38982,1322,1170,140,99825,54171 +2030,31,2028,4104,829749,6733,192,50836,1724,1525,183,121759,70643 +2030,31,2029,5604,1132991,9194,262,69414,2355,2083,250,152903,96460 +2030,31,2030,10627,2148394,17434,498,131624,4465,3950,474,253266,182909 +2030,32,2000,129,134781,1210,11,5590,120,106,14,38360,5300 +2030,32,2001,37,39490,383,3,1579,38,33,4,10514,1502 +2030,32,2002,47,51146,495,4,2045,49,43,5,12952,1945 +2030,32,2003,62,67170,651,5,2685,64,57,7,16395,2555 +2030,32,2004,63,49196,459,5,2212,64,57,7,14521,2569 +2030,32,2005,84,65673,613,7,2954,86,76,9,18306,3429 +2030,32,2006,245,77855,724,8,3500,102,90,10,20741,4065 +2030,32,2007,268,85317,794,9,3836,112,99,11,21818,4455 +2030,32,2008,231,46717,397,8,3084,96,85,10,16391,3833 +2030,32,2009,192,38950,331,7,2571,80,71,8,13400,3196 +2030,32,2010,90,18161,154,3,1199,37,33,4,6132,1490 +2030,32,2011,120,24358,207,4,1609,50,44,5,6211,1999 +2030,32,2012,181,36536,310,6,2414,75,67,8,9126,3000 +2030,32,2013,180,36419,309,6,2407,75,66,8,8877,2991 +2030,32,2014,222,44838,381,8,2963,92,82,9,10678,3683 +2030,32,2015,245,49653,422,9,3281,102,90,10,11566,4078 +2030,32,2016,272,55020,467,9,3636,113,100,12,11285,4519 +2030,32,2017,303,61360,521,11,4055,126,112,13,12269,5040 +2030,32,2018,434,87796,745,15,5802,181,160,19,16981,7211 +2030,32,2019,480,97134,825,17,6419,200,177,21,18326,7978 +2030,32,2020,539,109123,927,19,7211,225,199,23,19893,8963 +2030,32,2021,605,122339,1039,21,8085,252,223,26,21197,10048 +2030,32,2022,674,136280,1157,23,9006,280,248,29,22823,11193 +2030,32,2023,782,158196,1343,27,10454,326,288,33,25644,12993 +2030,32,2024,914,184852,1570,32,12216,380,337,39,28963,15183 +2030,32,2025,1079,218192,1853,37,14419,449,397,46,32943,17921 +2030,32,2026,1293,261603,2221,45,17288,538,476,55,37894,21486 +2030,32,2027,1610,325765,2766,56,21528,670,593,69,45029,26756 +2030,32,2028,2100,424819,3607,73,28074,874,773,90,55587,34892 +2030,32,2029,2867,580074,4925,99,38334,1194,1056,122,70931,47644 +2030,32,2030,5437,1099946,9339,188,72690,2264,2002,232,120851,90342 +2030,33,2000,902,950024,8038,85,36145,834,738,96,296741,36543 +2030,33,2001,256,260758,2180,24,10094,250,221,27,78683,10357 +2030,33,2002,331,337726,2824,31,13074,323,286,35,96464,13414 +2030,33,2003,435,443538,3709,41,17170,425,376,46,121652,17617 +2030,33,2004,437,325129,2626,41,14152,427,378,46,109155,17712 +2030,33,2005,584,434028,3506,55,18892,570,504,62,136882,23645 +2030,33,2006,1708,514535,4121,65,22380,675,598,73,154332,28031 +2030,33,2007,1872,563848,4516,72,24525,740,655,80,161665,30717 +2030,33,2008,1610,310175,2277,62,19728,637,563,69,123920,26428 +2030,33,2009,1343,258602,1899,51,16448,531,470,58,101139,22034 +2030,33,2010,626,120503,884,24,7671,248,219,27,46203,10277 +2030,33,2011,840,161514,1185,32,10291,332,294,36,41058,13787 +2030,33,2012,1261,242112,1775,48,15441,498,441,54,60251,20686 +2030,33,2013,1257,241187,1768,48,15396,496,439,54,58516,20626 +2030,33,2014,1547,296938,2177,59,18955,611,541,66,70283,25393 +2030,33,2015,1714,328824,2410,66,20991,677,599,74,76026,28120 +2030,33,2016,1899,364365,2671,73,23260,750,663,82,69528,31159 +2030,33,2017,2118,406353,2979,81,25940,836,740,91,75541,34750 +2030,33,2018,3030,581425,4262,116,37116,1197,1059,130,104261,49722 +2030,33,2019,3352,643271,4715,129,41064,1324,1171,144,112447,55011 +2030,33,2020,3766,722667,5297,144,46132,1488,1316,162,121729,61800 +2030,33,2021,4222,810184,5939,162,51719,1668,1475,181,127535,69285 +2030,33,2022,4703,902510,6616,180,57612,1858,1643,202,137142,77180 +2030,33,2023,5459,1047651,7680,209,66878,2157,1908,234,154055,89592 +2030,33,2024,6379,1224181,8974,245,78146,2520,2229,274,173949,104688 +2030,33,2025,7530,1444969,10592,289,92241,2974,2631,323,197794,123569 +2030,33,2026,9028,1732460,12700,346,110593,3566,3155,388,227445,148155 +2030,33,2027,11242,2157372,15814,431,137718,4441,3928,483,270156,184492 +2030,33,2028,14661,2813356,20623,562,179593,5791,5123,629,333330,240590 +2030,33,2029,20019,3841530,28160,768,245227,7908,6995,859,425059,328516 +2030,33,2030,37960,7284365,53397,1455,465003,14995,13265,1630,723374,622936 +2030,34,2000,1496,1667959,16729,218,55910,1492,1320,172,666384,66388 +2030,34,2001,424,433730,5233,62,15483,418,370,49,180557,18816 +2030,34,2002,549,561755,6778,80,20053,541,479,63,221196,24369 +2030,34,2003,721,737755,8901,105,26336,711,629,83,278795,32004 +2030,34,2004,725,540646,6284,106,21704,715,633,83,249122,32178 +2030,34,2005,968,721728,8389,141,28974,954,844,111,312029,42956 +2030,34,2006,2834,855599,9909,167,34328,1132,1001,132,351715,50924 +2030,34,2007,3106,937601,10858,183,37618,1240,1097,145,368085,55804 +2030,34,2008,2672,517264,5468,158,30272,1067,944,124,280616,48012 +2030,34,2009,2228,431259,4559,131,25239,889,787,104,228898,40029 +2030,34,2010,1039,201001,2125,61,11772,415,367,48,104520,18670 +2030,34,2011,1394,269466,2850,82,15792,556,492,65,92288,25047 +2030,34,2012,2091,404023,4274,123,23695,835,738,97,135297,37580 +2030,34,2013,2085,402566,4259,123,23626,832,736,97,131237,37471 +2030,34,2014,2567,495622,5244,151,29087,1025,906,120,157419,46132 +2030,34,2015,2843,548842,5807,168,32210,1135,1004,132,170064,51086 +2030,34,2016,3150,608164,6435,186,35692,1257,1112,147,153901,56607 +2030,34,2017,3513,678247,7176,207,39805,1402,1240,164,166895,63131 +2030,34,2018,5027,970459,10268,297,56954,2006,1775,234,229285,90330 +2030,34,2019,5562,1073686,11360,328,63012,2220,1963,259,246810,99938 +2030,34,2020,6248,1206207,12762,369,70789,2494,2206,291,265940,112273 +2030,34,2021,7005,1352283,14308,413,79362,2795,2473,326,277381,125870 +2030,34,2022,7803,1506385,15938,460,88406,3114,2755,363,296814,140213 +2030,34,2023,9058,1748641,18501,534,102623,3615,3198,422,332441,162762 +2030,34,2024,10585,2043287,21619,624,119915,4224,3737,493,374183,190188 +2030,34,2025,12494,2411806,25518,737,141543,4986,4410,582,423946,224489 +2030,34,2026,14980,2891658,30595,884,169704,5978,5288,697,485453,269153 +2030,34,2027,18654,3600883,38099,1100,211326,7444,6585,868,573740,335167 +2030,34,2028,24325,4695789,49683,1435,275584,9707,8587,1132,703532,437080 +2030,34,2029,33215,6411929,67841,1959,376299,13255,11726,1546,889808,596817 +2030,34,2030,62984,12158378,128641,3715,713544,25134,22234,2932,1492739,1131693 +2030,35,2000,161,157188,1236,12,6373,140,124,16,78846,6104 +2030,35,2001,46,44357,345,4,1781,43,38,5,20873,1730 +2030,35,2002,59,57450,447,5,2307,55,49,6,25408,2240 +2030,35,2003,78,75449,587,6,3029,73,64,8,31865,2942 +2030,35,2004,78,55263,414,6,2496,73,65,8,29012,2958 +2030,35,2005,104,73772,553,8,3332,98,86,11,36091,3949 +2030,35,2006,306,87456,654,10,3949,116,102,13,40461,4682 +2030,35,2007,335,95838,716,10,4327,127,112,14,42111,5131 +2030,35,2008,288,52722,363,9,3481,109,96,12,33039,4414 +2030,35,2009,240,43956,303,8,2902,91,80,10,26895,3680 +2030,35,2010,112,20495,141,4,1354,42,38,5,12257,1716 +2030,35,2011,150,27486,189,5,1816,57,50,6,12013,2303 +2030,35,2012,226,41227,284,7,2725,85,75,9,17541,3455 +2030,35,2013,225,41094,283,7,2717,85,75,9,16930,3445 +2030,35,2014,277,50593,348,9,3345,105,93,11,20208,4241 +2030,35,2015,307,56026,386,10,3704,116,103,13,21727,4697 +2030,35,2016,340,62082,428,11,4104,129,114,14,20613,5204 +2030,35,2017,379,69236,477,12,4577,143,127,16,22177,5804 +2030,35,2018,542,99065,682,17,6549,205,181,22,30265,8305 +2030,35,2019,600,109602,755,19,7246,227,201,25,32301,9188 +2030,35,2020,674,123130,848,21,8140,255,226,28,34513,10322 +2030,35,2021,755,138041,951,24,9126,286,253,31,36071,11572 +2030,35,2022,841,153772,1059,26,10166,318,282,35,38142,12891 +2030,35,2023,977,178502,1229,31,11801,370,327,40,42084,14964 +2030,35,2024,1141,208579,1436,36,13789,432,382,47,46591,17485 +2030,35,2025,1347,246198,1696,42,16276,510,451,55,51786,20639 +2030,35,2026,1615,295181,2033,51,19514,611,541,66,57955,24745 +2030,35,2027,2012,367579,2531,63,24301,761,673,83,66597,30815 +2030,35,2028,2623,479347,3301,82,31690,993,878,108,78762,40184 +2030,35,2029,3582,654531,4508,112,43271,1355,1199,147,94723,54870 +2030,35,2030,6792,1241131,8547,212,82051,2570,2273,279,144402,104046 +2030,36,2000,413,431444,3886,48,15994,388,343,44,211160,16867 +2030,36,2001,117,119710,1099,14,4504,117,103,13,56043,4780 +2030,36,2002,151,155045,1423,18,5834,151,134,16,68322,6191 +2030,36,2003,199,203622,1869,23,7661,199,176,21,85786,8131 +2030,36,2004,200,149343,1326,23,6317,200,177,22,77777,8175 +2030,36,2005,267,199364,1770,31,8433,267,236,29,96911,10913 +2030,36,2006,781,236344,2074,37,9985,316,280,34,108690,12938 +2030,36,2007,856,258995,2273,40,10942,347,307,37,113267,14178 +2030,36,2008,737,143474,1167,35,8811,298,264,32,88347,12198 +2030,36,2009,614,119618,973,29,7346,249,220,27,71953,10170 +2030,36,2010,286,55717,453,14,3426,116,103,13,32802,4743 +2030,36,2011,384,74650,607,18,4597,156,138,17,27837,6363 +2030,36,2012,577,111858,909,27,6897,233,206,25,40712,9548 +2030,36,2013,575,111386,905,27,6877,232,206,25,39375,9520 +2030,36,2014,708,137133,1114,33,8466,286,253,31,47102,11720 +2030,36,2015,784,151859,1234,37,9375,317,280,34,50750,12979 +2030,36,2016,868,168273,1367,41,10389,351,311,38,44840,14382 +2030,36,2017,969,187664,1525,46,11586,392,347,42,48449,16039 +2030,36,2018,1386,268516,2182,65,16577,560,496,61,66309,22949 +2030,36,2019,1533,297078,2414,72,18341,620,549,67,71101,25390 +2030,36,2020,1722,333745,2712,81,20604,697,616,75,76265,28524 +2030,36,2021,1931,374163,3040,91,23100,781,691,84,78618,31979 +2030,36,2022,2151,416801,3386,102,25732,870,770,94,83708,35623 +2030,36,2023,2497,483831,3931,118,29870,1010,893,109,93177,41351 +2030,36,2024,2918,565356,4593,138,34903,1180,1044,127,104170,48319 +2030,36,2025,3444,667322,5422,163,41198,1393,1232,150,117113,57034 +2030,36,2026,4129,800091,6501,195,49395,1670,1477,180,132880,68381 +2030,36,2027,5142,996326,8095,243,61510,2080,1840,225,155321,85153 +2030,36,2028,6706,1299275,10556,317,80213,2712,2399,293,187819,111045 +2030,36,2029,9156,1774112,14414,433,109528,3703,3276,400,233097,151628 +2030,36,2030,17362,3364095,27332,820,207689,7022,6211,759,377847,287519 +2030,37,2000,65,67437,550,6,2323,59,52,7,23880,2607 +2030,37,2001,18,18577,150,2,648,18,16,2,6329,739 +2030,37,2002,24,24060,194,2,840,23,20,2,7743,957 +2030,37,2003,31,31598,254,3,1103,30,27,3,9749,1257 +2030,37,2004,31,23141,179,3,909,30,27,3,8796,1264 +2030,37,2005,42,30892,239,4,1213,41,36,4,11006,1687 +2030,37,2006,122,36622,283,4,1438,48,42,5,12399,2000 +2030,37,2007,134,40132,311,5,1575,53,47,6,12965,2192 +2030,37,2008,115,22029,156,4,1267,45,40,5,10024,1886 +2030,37,2009,96,18366,130,3,1056,38,33,4,8176,1572 +2030,37,2010,45,8564,61,2,493,18,16,2,3733,733 +2030,37,2011,60,11487,81,2,661,24,21,3,3535,984 +2030,37,2012,90,17230,122,3,992,35,31,4,5179,1476 +2030,37,2013,90,17176,122,3,989,35,31,4,5020,1472 +2030,37,2014,111,21147,150,4,1217,43,38,5,6017,1812 +2030,37,2015,123,23417,166,4,1348,48,43,5,6495,2006 +2030,37,2016,136,25948,184,5,1494,53,47,6,6091,2223 +2030,37,2017,152,28939,205,5,1666,60,53,6,6594,2479 +2030,37,2018,217,41406,293,8,2384,85,75,9,9055,3547 +2030,37,2019,240,45811,324,9,2638,94,83,10,9729,3925 +2030,37,2020,270,51465,364,10,2963,106,94,11,10474,4409 +2030,37,2021,302,57698,408,11,3322,119,105,13,11004,4943 +2030,37,2022,337,64273,455,12,3700,132,117,14,11750,5507 +2030,37,2023,391,74609,528,14,4296,153,136,17,13116,6392 +2030,37,2024,457,87181,617,16,5019,179,159,19,14709,7469 +2030,37,2025,539,102904,728,19,5925,212,187,23,16596,8816 +2030,37,2026,647,123378,873,23,7103,254,224,27,18911,10570 +2030,37,2027,805,153638,1087,29,8846,316,280,34,22218,13163 +2030,37,2028,1050,200355,1417,38,11535,412,365,45,27044,17165 +2030,37,2029,1434,273577,1935,51,15751,563,498,61,33865,23439 +2030,37,2030,2719,518760,3670,97,29867,1067,944,115,55808,44445 +2030,38,2000,42,46350,377,4,1776,40,35,4,16507,1741 +2030,38,2001,12,12486,100,1,508,12,10,1,4354,494 +2030,38,2002,16,16172,129,2,657,15,14,2,5322,639 +2030,38,2003,20,21238,170,2,863,20,18,2,6696,839 +2030,38,2004,21,15586,121,2,712,20,18,2,6049,844 +2030,38,2005,27,20807,161,3,950,27,24,3,7559,1127 +2030,38,2006,80,24666,188,3,1125,32,28,3,8495,1336 +2030,38,2007,88,27030,207,3,1233,35,31,4,8874,1464 +2030,38,2008,76,14944,105,3,992,30,27,3,6877,1259 +2030,38,2009,63,12459,88,3,827,25,22,3,5607,1050 +2030,38,2010,29,5801,41,1,386,12,10,1,2558,490 +2030,38,2011,40,7768,55,2,518,16,14,2,2216,657 +2030,38,2012,59,11635,82,2,777,24,21,3,3246,986 +2030,38,2013,59,11581,81,2,774,24,21,3,3146,983 +2030,38,2014,73,14258,100,3,953,29,26,3,3770,1210 +2030,38,2015,81,15789,111,3,1056,32,28,3,4070,1340 +2030,38,2016,89,17495,123,4,1170,36,31,4,3659,1485 +2030,38,2017,100,19511,137,4,1305,40,35,4,3965,1656 +2030,38,2018,143,27918,196,6,1867,57,50,6,5451,2369 +2030,38,2019,158,30887,217,6,2066,63,55,7,5863,2621 +2030,38,2020,177,34700,244,7,2320,70,62,8,6321,2945 +2030,38,2021,199,38902,273,8,2601,79,70,9,6569,3302 +2030,38,2022,221,43335,304,9,2898,88,78,9,7033,3678 +2030,38,2023,257,50304,353,10,3364,102,90,11,7865,4269 +2030,38,2024,300,58780,413,12,3931,119,106,13,8839,4989 +2030,38,2025,354,69382,487,14,4640,141,125,15,9996,5888 +2030,38,2026,425,83186,584,17,5563,169,149,18,11422,7060 +2030,38,2027,529,103589,728,21,6927,210,186,23,13464,8792 +2030,38,2028,690,135086,949,27,9034,274,243,30,16457,11465 +2030,38,2029,942,184455,1296,37,12335,375,331,40,20725,15655 +2030,38,2030,1786,349767,2457,71,23390,710,628,77,34503,29685 +2030,39,2000,668,705025,6022,62,25359,616,545,71,217795,27020 +2030,39,2001,189,194797,1638,18,7124,187,166,20,57803,7658 +2030,39,2002,245,252295,2121,23,9227,243,215,26,70905,9918 +2030,39,2003,322,331340,2785,30,12117,319,282,34,89459,13026 +2030,39,2004,324,242770,1968,30,9986,320,283,34,80198,13097 +2030,39,2005,432,324082,2628,40,13330,428,378,46,100635,17483 +2030,39,2006,1265,384195,3099,48,15794,507,448,54,113581,20726 +2030,39,2007,1387,421017,3396,52,17308,555,491,59,119042,22712 +2030,39,2008,1193,231177,1706,45,13922,478,423,51,91113,19541 +2030,39,2009,995,192739,1422,37,11607,398,352,43,74381,16292 +2030,39,2010,464,89844,663,17,5414,186,164,20,33990,7599 +2030,39,2011,622,120463,888,23,7263,249,220,27,31123,10194 +2030,39,2012,934,180640,1332,35,10897,374,331,40,45680,15295 +2030,39,2013,931,180012,1327,35,10865,373,330,40,44373,15250 +2030,39,2014,1146,221623,1634,43,13377,459,406,49,53301,18776 +2030,39,2015,1269,245422,1810,48,14813,508,450,54,57662,20792 +2030,39,2016,1407,271949,2005,53,16414,563,498,60,53498,23039 +2030,39,2017,1569,303287,2236,59,18305,628,556,67,58115,25694 +2030,39,2018,2245,433953,3200,84,26192,899,795,96,80184,36764 +2030,39,2019,2483,480113,3540,93,28978,994,879,106,86465,40675 +2030,39,2020,2790,539371,3977,105,32555,1117,988,120,93574,45695 +2030,39,2021,3128,604691,4458,118,36497,1252,1108,134,98409,51229 +2030,39,2022,3484,673600,4967,131,40656,1395,1234,149,105748,57066 +2030,39,2023,4044,781927,5765,152,47195,1619,1432,173,118740,66244 +2030,39,2024,4726,913682,6737,178,55147,1892,1674,203,134016,77406 +2030,39,2025,5578,1078472,7952,210,65093,2233,1975,239,152310,91367 +2030,39,2026,6688,1293043,9534,252,78044,2677,2368,287,175041,109545 +2030,39,2027,8329,1610181,11872,313,97186,3334,2949,357,207768,136412 +2030,39,2028,10861,2099782,15482,409,126737,4348,3846,466,256136,177891 +2030,39,2029,14830,2867170,21140,558,173054,5937,5252,636,326258,242903 +2030,39,2030,28121,5436776,40086,1058,328147,11257,9959,1205,554161,460597 +2030,40,2000,570,615070,5600,61,20907,550,486,62,209533,24266 +2030,40,2001,162,173641,1564,17,5839,167,148,18,55896,6877 +2030,40,2002,209,224894,2026,23,7562,217,192,23,68602,8908 +2030,40,2003,275,295354,2661,30,9932,285,252,30,86588,11698 +2030,40,2004,276,216307,1877,30,8183,286,253,30,77715,11762 +2030,40,2005,369,288756,2505,40,10924,382,338,40,97591,15701 +2030,40,2006,1080,342317,2964,47,12946,453,400,48,110270,18614 +2030,40,2007,1183,375124,3248,52,14187,496,439,52,115642,20398 +2030,40,2008,1018,205692,1624,44,11411,427,378,45,88631,17550 +2030,40,2009,849,171491,1354,37,9513,356,315,38,72378,14632 +2030,40,2010,396,79966,631,17,4437,166,147,17,33087,6824 +2030,40,2011,531,107254,847,23,5953,223,197,23,32106,9155 +2030,40,2012,797,160886,1270,35,8931,334,295,35,47120,13736 +2030,40,2013,795,160382,1266,35,8905,333,295,35,45766,13696 +2030,40,2014,978,197455,1559,43,10964,410,363,43,54965,16862 +2030,40,2015,1083,218658,1726,47,12141,454,402,48,59452,18673 +2030,40,2016,1200,242292,1913,52,13453,503,445,53,56595,20691 +2030,40,2017,1339,270212,2133,58,15003,561,496,59,61430,23076 +2030,40,2018,1915,386630,3052,84,21468,803,710,85,84669,33017 +2030,40,2019,2119,427755,3377,93,23751,888,786,94,91223,36529 +2030,40,2020,2381,480552,3793,104,26683,998,883,105,98612,41038 +2030,40,2021,2669,538747,4253,117,29914,1119,990,118,104314,46008 +2030,40,2022,2973,600142,4738,130,33323,1246,1102,131,111875,51251 +2030,40,2023,3451,696655,5499,151,38682,1447,1280,153,125414,59493 +2030,40,2024,4033,814042,6426,176,45200,1690,1495,178,141297,69517 +2030,40,2025,4760,960859,7585,208,53352,1995,1765,210,160263,82055 +2030,40,2026,5707,1152032,9094,249,63966,2392,2116,252,183749,98381 +2030,40,2027,7107,1434587,11325,310,79655,2979,2635,314,217499,122510 +2030,40,2028,9268,1870793,14768,405,103875,3885,3436,410,267208,159762 +2030,40,2029,12656,2554498,20165,553,141838,5304,4692,559,338812,218149 +2030,40,2030,23998,4843878,38238,1048,268955,10058,8897,1061,570923,413657 +2030,41,2000,764,824678,7428,86,32692,744,658,84,273462,32744 +2030,41,2001,216,223921,2072,25,9171,206,182,24,72886,9280 +2030,41,2002,280,290016,2684,32,11878,267,236,31,89429,12019 +2030,41,2003,368,380880,3525,42,15599,350,310,41,112852,15785 +2030,41,2004,370,279201,2495,42,12857,352,312,41,101205,15871 +2030,41,2005,494,372716,3331,56,17163,470,416,54,127038,21187 +2030,41,2006,1446,441852,3915,66,20332,557,493,64,143340,25117 +2030,41,2007,1585,484198,4290,73,22281,611,540,71,150269,27524 +2030,41,2008,1364,266534,2157,63,17921,525,465,61,115050,23681 +2030,41,2009,1137,222217,1799,52,14941,438,388,51,93933,19743 +2030,41,2010,530,103548,838,24,6969,204,181,24,42928,9208 +2030,41,2011,711,138787,1123,33,9349,274,242,32,39687,12354 +2030,41,2012,1067,208044,1683,49,14027,411,364,48,58247,18535 +2030,41,2013,1064,207247,1676,49,13986,410,362,47,56577,18481 +2030,41,2014,1310,255153,2064,60,17219,504,446,58,67961,22753 +2030,41,2015,1451,282552,2286,67,19068,559,494,65,73522,25196 +2030,41,2016,1608,313093,2533,74,21129,619,548,72,68668,27920 +2030,41,2017,1793,349172,2824,82,23564,690,611,80,74580,31137 +2030,41,2018,2566,499608,4041,118,33716,988,874,114,103008,44552 +2030,41,2019,2839,552750,4471,130,37303,1093,967,127,111051,49291 +2030,41,2020,3189,620975,5023,146,41907,1228,1086,142,120283,55375 +2030,41,2021,3575,696176,5631,164,46982,1376,1218,159,126607,62081 +2030,41,2022,3983,775510,6273,183,52336,1533,1356,177,136128,69156 +2030,41,2023,4623,900228,7282,212,60752,1780,1574,206,152769,80277 +2030,41,2024,5402,1051917,8509,248,70989,2080,1840,241,172318,93804 +2030,41,2025,6376,1241635,10043,292,83792,2455,2171,284,195710,110722 +2030,41,2026,7645,1488670,12042,351,100464,2943,2604,341,224740,132751 +2030,41,2027,9520,1853790,14995,436,125104,3665,3242,424,266511,165311 +2030,41,2028,12415,2417465,19555,569,163144,4779,4228,553,328176,215576 +2030,41,2029,16952,3300962,26701,777,222767,6526,5773,755,417385,294361 +2030,41,2030,32145,6259314,50631,1474,422413,12375,10947,1433,707073,558172 +2030,42,2000,353,388948,3523,40,13856,343,303,39,129933,15117 +2030,42,2001,100,106950,957,11,3868,103,91,11,34485,4284 +2030,42,2002,130,138519,1239,15,5010,133,118,14,42305,5549 +2030,42,2003,170,181917,1627,19,6580,175,154,19,53378,7287 +2030,42,2004,171,133290,1150,19,5423,176,155,19,47915,7327 +2030,42,2005,229,177934,1535,26,7239,234,207,25,60136,9781 +2030,42,2006,669,210939,1810,31,8577,278,246,30,67887,11595 +2030,42,2007,733,231155,1984,34,9399,304,269,33,71161,12707 +2030,42,2008,631,127015,996,29,7561,262,232,28,54564,10932 +2030,42,2009,526,105896,830,24,6304,218,193,23,44549,9115 +2030,42,2010,245,49362,387,11,2940,102,90,11,20360,4251 +2030,42,2011,329,66184,519,15,3944,137,121,15,18761,5703 +2030,42,2012,494,99246,778,23,5918,205,181,22,27538,8557 +2030,42,2013,492,98901,775,23,5901,204,181,22,26752,8532 +2030,42,2014,606,121762,954,28,7264,251,222,27,32136,10504 +2030,42,2015,671,134838,1057,31,8045,278,246,30,34767,11632 +2030,42,2016,744,149412,1171,34,8914,309,273,33,32354,12890 +2030,42,2017,829,166629,1306,38,9941,344,304,37,35145,14375 +2030,42,2018,1186,238419,1868,55,14224,492,436,53,48494,20568 +2030,42,2019,1313,263780,2067,61,15737,545,482,58,52290,22756 +2030,42,2020,1475,296337,2322,68,17680,612,541,66,56591,25565 +2030,42,2021,1653,332224,2603,76,19821,686,607,74,59553,28661 +2030,42,2022,1842,370083,2900,85,22080,764,676,82,63989,31927 +2030,42,2023,2138,429601,3366,99,25630,887,785,95,71841,37061 +2030,42,2024,2498,501988,3933,115,29949,1037,917,111,81071,43306 +2030,42,2025,2949,592524,4643,136,35351,1224,1083,131,92122,51116 +2030,42,2026,3535,710413,5567,163,42384,1467,1298,157,105849,61286 +2030,42,2027,4402,884652,6932,203,52779,1827,1616,196,125610,76318 +2030,42,2028,5741,1153646,9040,265,68828,2383,2108,256,154806,99523 +2030,42,2029,7839,1575260,12343,362,93982,3254,2878,349,197110,135896 +2030,42,2030,14865,2987029,23406,686,178210,6169,5458,662,334575,257687 +2030,44,2000,475,539278,5538,69,18033,486,430,55,157172,21587 +2030,44,2001,134,140254,1733,20,4995,136,121,16,43143,6118 +2030,44,2002,174,181654,2245,25,6470,177,156,20,53209,7924 +2030,44,2003,229,238567,2948,33,8497,232,205,27,67412,10407 +2030,44,2004,230,174807,2081,33,7002,233,206,27,59308,10463 +2030,44,2005,307,233357,2778,45,9347,311,275,36,74843,13968 +2030,44,2006,899,276642,3282,53,11075,369,326,42,84866,16559 +2030,44,2007,985,303155,3597,58,12137,404,358,47,89343,18146 +2030,44,2008,847,166564,1795,50,9761,348,308,40,66415,15612 +2030,44,2009,706,138869,1496,42,8138,290,257,33,54306,13016 +2030,44,2010,329,64730,698,19,3796,135,120,16,24855,6071 +2030,44,2011,442,86785,935,26,5092,181,161,21,22674,8144 +2030,44,2012,663,130132,1403,39,7640,272,241,31,33362,12220 +2030,44,2013,661,129673,1398,39,7618,271,240,31,32505,12184 +2030,44,2014,814,159648,1721,48,9379,334,296,39,39160,15000 +2030,44,2015,902,176791,1906,53,10386,370,327,43,42484,16611 +2030,44,2016,999,195900,2112,59,11509,410,363,47,39479,18407 +2030,44,2017,1114,218474,2356,66,12835,457,404,53,43059,20528 +2030,44,2018,1594,312601,3371,94,18365,654,579,75,59678,29372 +2030,44,2019,1764,345852,3729,104,20318,724,640,83,64620,32496 +2030,44,2020,1981,388540,4189,117,22826,813,719,94,70288,36507 +2030,44,2021,2221,435593,4697,131,25591,912,806,105,74286,40928 +2030,44,2022,2474,485231,5232,146,28507,1016,898,117,80295,45592 +2030,44,2023,2872,563267,6073,169,33091,1179,1043,136,90735,52924 +2030,44,2024,3356,658177,7097,198,38667,1377,1219,159,103108,61842 +2030,44,2025,3962,776882,8377,234,45641,1626,1438,187,118085,72996 +2030,44,2026,4750,931451,10043,280,54722,1949,1724,225,136914,87519 +2030,44,2027,5915,1159905,12506,349,68143,2428,2147,280,164208,108984 +2030,44,2028,7714,1512592,16309,455,88863,3166,2800,365,205016,142123 +2030,44,2029,10533,2065387,22269,621,121339,4323,3824,498,265474,194063 +2030,44,2030,19972,3916413,42228,1178,230085,8196,7251,944,463665,367985 +2030,45,2000,921,1032356,9880,117,32750,917,811,104,374539,40441 +2030,45,2001,261,284427,2686,33,9140,275,243,29,99496,11462 +2030,45,2002,338,368381,3479,43,11837,356,315,38,122099,14845 +2030,45,2003,444,483797,4569,57,15546,467,413,50,154098,19496 +2030,45,2004,447,354298,3221,57,12808,470,415,50,138572,19602 +2030,45,2005,596,472966,4300,76,17098,627,554,67,174009,26167 +2030,45,2006,1745,560696,5091,90,20265,743,657,80,196634,31021 +2030,45,2007,1912,614432,5579,99,22207,814,720,87,206212,33994 +2030,45,2008,1645,337052,2785,85,17863,701,620,75,158467,29248 +2030,45,2009,1371,281010,2322,71,14893,584,517,63,129414,24385 +2030,45,2010,640,131039,1083,33,6946,272,241,29,59165,11373 +2030,45,2011,858,175761,1452,44,9319,365,323,39,57783,15258 +2030,45,2012,1288,263660,2179,66,13981,548,485,59,84801,22892 +2030,45,2013,1284,262841,2172,66,13941,547,484,59,82361,22826 +2030,45,2014,1581,323598,2674,82,17163,673,595,72,98908,28102 +2030,45,2015,1750,358347,2961,90,19006,745,659,80,106976,31120 +2030,45,2016,1939,397079,3282,100,21061,826,731,89,102108,34483 +2030,45,2017,2163,442837,3660,112,23487,921,815,99,110809,38457 +2030,45,2018,3095,633628,5236,160,33607,1318,1166,141,152706,55026 +2030,45,2019,3424,701025,5793,177,37181,1458,1290,157,164494,60879 +2030,45,2020,3847,787551,6508,198,41771,1638,1449,176,177784,68393 +2030,45,2021,4312,882925,7297,222,46829,1836,1624,197,188134,76676 +2030,45,2022,4804,983539,8128,248,52166,2046,1809,220,201705,85413 +2030,45,2023,5576,1141712,9435,288,60555,2374,2100,255,226031,99150 +2030,45,2024,6516,1334091,11025,336,70758,2775,2454,298,254552,115856 +2030,45,2025,7691,1574702,13014,397,83520,3275,2897,352,288586,136752 +2030,45,2026,9222,1888004,15603,476,100137,3927,3474,422,330696,163960 +2030,45,2027,11483,2351066,19430,592,124697,4890,4325,525,391180,204173 +2030,45,2028,14975,3065945,25337,772,162614,6376,5641,685,480196,266255 +2030,45,2029,20448,4186435,34597,1055,222043,8707,7702,935,608220,363562 +2030,45,2030,38773,7938387,65604,2000,421041,16510,14605,1773,1022962,689391 +2030,46,2000,140,156653,1382,16,5501,136,120,15,45050,5970 +2030,46,2001,40,42354,367,4,1572,40,36,4,11925,1692 +2030,46,2002,51,54856,475,6,2035,52,46,6,14661,2192 +2030,46,2003,67,72042,624,7,2673,69,61,7,18529,2878 +2030,46,2004,68,52805,441,8,2203,69,61,7,16575,2894 +2030,46,2005,90,70492,589,10,2941,92,82,10,20855,3863 +2030,46,2006,264,83567,694,12,3484,109,97,12,23584,4580 +2030,46,2007,290,91576,760,13,3818,120,106,13,24771,5019 +2030,46,2008,249,50329,381,11,3071,103,91,11,18884,4318 +2030,46,2009,208,41961,318,9,2560,86,76,9,15431,3600 +2030,46,2010,97,19554,148,4,1194,40,35,4,7058,1679 +2030,46,2011,130,26210,198,6,1602,54,48,6,6534,2253 +2030,46,2012,195,39293,297,9,2404,81,71,9,9602,3380 +2030,46,2013,195,39145,296,9,2397,80,71,9,9343,3370 +2030,46,2014,240,48193,365,11,2951,99,88,11,11241,4149 +2030,46,2015,265,53368,404,12,3267,110,97,12,12180,4594 +2030,46,2016,294,59137,447,13,3621,121,107,13,11399,5091 +2030,46,2017,328,65951,499,15,4038,135,120,15,12409,5678 +2030,46,2018,469,94366,714,21,5778,194,171,21,17175,8124 +2030,46,2019,519,104403,790,23,6392,214,190,23,18561,8988 +2030,46,2020,583,117289,887,26,7181,241,213,26,20155,10097 +2030,46,2021,654,131493,995,29,8051,270,239,29,21291,11320 +2030,46,2022,728,146478,1108,33,8968,301,266,32,22961,12610 +2030,46,2023,845,170034,1286,38,10410,349,309,38,25867,14638 +2030,46,2024,988,198685,1503,44,12164,408,361,44,29298,17104 +2030,46,2025,1166,234519,1774,53,14358,482,426,52,33430,20189 +2030,46,2026,1398,281179,2127,63,17215,578,511,62,38596,24206 +2030,46,2027,1741,350142,2649,78,21437,719,636,78,46062,30143 +2030,46,2028,2270,456609,3455,102,27956,938,830,101,57164,39308 +2030,46,2029,3099,623482,4717,140,38173,1281,1133,138,73451,53673 +2030,46,2030,5877,1182256,8945,265,72384,2428,2148,262,126634,101776 +2030,47,2000,245,259907,2151,22,9222,228,202,26,77744,10062 +2030,47,2001,70,71566,585,6,2574,68,60,7,20642,2852 +2030,47,2002,90,92690,757,8,3334,88,78,10,25332,3694 +2030,47,2003,118,121730,994,11,4378,116,103,12,31971,4851 +2030,47,2004,119,89159,702,11,3607,117,103,13,28671,4877 +2030,47,2005,159,119021,937,14,4816,156,138,17,35996,6511 +2030,47,2006,465,141098,1107,17,5707,185,163,20,40661,7718 +2030,47,2007,509,154621,1213,18,6254,202,179,22,42635,8458 +2030,47,2008,438,84764,606,16,5029,174,154,19,32636,7277 +2030,47,2009,365,70671,506,13,4193,145,128,16,26648,6067 +2030,47,2010,170,32951,236,6,1956,68,60,7,12181,2830 +2030,47,2011,228,44193,316,8,2624,91,80,10,11668,3796 +2030,47,2012,343,66287,474,12,3937,136,121,15,17125,5696 +2030,47,2013,342,66074,473,12,3925,136,120,15,16633,5679 +2030,47,2014,421,81347,582,15,4832,167,148,18,19976,6992 +2030,47,2015,466,90083,644,17,5351,185,164,20,21607,7743 +2030,47,2016,516,99819,714,19,5930,205,182,22,20473,8580 +2030,47,2017,576,111322,796,21,6613,229,203,25,22225,9568 +2030,47,2018,824,159284,1139,30,9462,328,290,35,30651,13691 +2030,47,2019,912,176226,1261,33,10469,363,321,39,33028,15147 +2030,47,2020,1024,197978,1416,37,11761,407,360,44,35724,17017 +2030,47,2021,1148,221953,1588,41,13185,457,404,49,37743,19077 +2030,47,2022,1279,247246,1769,46,14688,509,450,55,40507,21251 +2030,47,2023,1485,287008,2053,53,17050,590,522,63,45419,24669 +2030,47,2024,1735,335370,2399,62,19923,690,610,74,51184,28826 +2030,47,2025,2048,395855,2832,74,23516,814,720,88,58071,34025 +2030,47,2026,2455,474614,3395,88,28195,976,864,105,66603,40794 +2030,47,2027,3057,591020,4228,110,35110,1216,1076,131,78867,50800 +2030,47,2028,3987,770729,5513,144,45785,1586,1403,170,96939,66246 +2030,47,2029,5444,1052403,7528,196,62518,2165,1915,233,122996,90457 +2030,47,2030,10323,1995582,14274,372,118548,4105,3632,441,207492,171525 +2030,48,2000,379,392401,3366,33,13032,352,311,40,112615,15539 +2030,48,2001,107,109832,1032,9,3704,108,96,11,30619,4404 +2030,48,2002,139,142251,1337,12,4797,140,124,15,37663,5704 +2030,48,2003,183,186819,1755,16,6300,184,163,19,47619,7491 +2030,48,2004,184,136794,1237,16,5190,185,164,19,42328,7532 +2030,48,2005,245,182611,1651,21,6929,247,219,26,53271,10055 +2030,48,2006,717,216483,1957,25,8213,293,259,31,60313,11920 +2030,48,2007,786,237231,2144,27,9000,321,284,34,63363,13062 +2030,48,2008,676,129861,1069,24,7237,276,244,29,47857,11238 +2030,48,2009,564,108269,891,20,6033,230,204,24,39103,9369 +2030,48,2010,263,50492,416,9,2814,107,95,11,17886,4370 +2030,48,2011,353,67732,558,12,3775,144,128,15,17827,5863 +2030,48,2012,529,101616,836,18,5664,216,191,23,26181,8796 +2030,48,2013,528,101311,834,18,5648,216,191,23,25449,8771 +2030,48,2014,650,124729,1027,23,6953,265,235,28,30586,10798 +2030,48,2015,720,138123,1137,25,7700,294,260,31,33106,11957 +2030,48,2016,797,153052,1260,28,8532,326,288,34,31886,13250 +2030,48,2017,889,170689,1405,31,9515,363,321,38,34638,14777 +2030,48,2018,1272,244228,2010,44,13615,520,460,54,47765,21143 +2030,48,2019,1408,270207,2224,49,15063,575,509,60,51507,23392 +2030,48,2020,1582,303557,2499,55,16922,646,572,68,55719,26279 +2030,48,2021,1773,340318,2801,62,18972,724,641,76,59192,29462 +2030,48,2022,1975,379100,3121,69,21133,807,714,84,63524,32819 +2030,48,2023,2293,440067,3623,80,24532,937,829,98,71304,38097 +2030,48,2024,2679,514218,4233,94,28666,1094,968,114,80448,44516 +2030,48,2025,3162,606960,4996,110,33836,1292,1143,135,91392,52545 +2030,48,2026,3791,727721,5991,132,40568,1549,1370,162,104981,63000 +2030,48,2027,4721,906206,7460,165,50518,1929,1706,202,124538,78451 +2030,48,2028,6157,1181751,9728,215,65879,2515,2225,263,153422,102305 +2030,48,2029,8407,1613638,13283,294,89955,3435,3038,359,195243,139694 +2030,48,2030,15942,3059801,25188,557,170573,6513,5761,681,331093,264890 +2030,49,2000,818,840718,7207,81,33424,752,665,87,307379,33113 +2030,49,2001,232,228337,2010,23,9375,208,184,25,81748,9385 +2030,49,2002,300,295736,2603,30,12143,270,238,32,100051,12155 +2030,49,2003,394,388391,3419,39,15947,354,313,42,126011,15963 +2030,49,2004,396,284682,2420,39,13143,356,315,42,113572,16050 +2030,49,2005,529,380033,3230,52,17545,475,420,56,142159,21425 +2030,49,2006,1548,450524,3799,62,20787,563,498,67,160072,25400 +2030,49,2007,1697,493702,4163,68,22779,617,546,73,167432,27834 +2030,49,2008,1460,271926,2100,59,18323,531,470,63,129226,23947 +2030,49,2009,1217,226712,1751,49,15276,443,392,53,105411,19966 +2030,49,2010,568,105650,815,23,7125,206,183,25,48130,9312 +2030,49,2011,762,141614,1093,31,9558,277,245,33,44820,12493 +2030,49,2012,1143,212295,1638,46,14341,415,367,49,65678,18744 +2030,49,2013,1139,211496,1631,46,14300,414,366,49,63674,18689 +2030,49,2014,1403,260385,2009,56,17605,510,451,61,76342,23010 +2030,49,2015,1553,288346,2224,62,19496,565,499,67,82439,25480 +2030,49,2016,1721,319512,2465,69,21603,626,553,74,76961,28234 +2030,49,2017,1920,356331,2749,77,24092,698,617,83,83362,31488 +2030,49,2018,2747,509851,3933,110,34472,998,883,119,114710,45054 +2030,49,2019,3039,564083,4351,122,38139,1104,977,131,123319,49847 +2030,49,2020,3414,633706,4888,137,42846,1241,1098,147,133026,55999 +2030,49,2021,3827,710450,5480,154,48035,1391,1230,165,139587,62781 +2030,49,2022,4264,791410,6105,171,53509,1550,1371,184,149375,69935 +2030,49,2023,4949,918684,7087,199,62114,1799,1591,214,166883,81182 +2030,49,2024,5783,1073483,8281,232,72581,2102,1859,250,187322,94861 +2030,49,2025,6826,1267092,9774,274,85671,2481,2195,295,211570,111970 +2030,49,2026,8184,1519192,11719,329,102716,2974,2631,353,241373,134247 +2030,49,2027,10192,1891798,14593,409,127909,3704,3277,440,284012,167173 +2030,49,2028,13291,2467030,19030,533,166801,4830,4273,574,346338,218005 +2030,49,2029,18148,3368634,25985,728,227761,6595,5834,784,434794,297678 +2030,49,2030,34412,6387652,49273,1381,431884,12506,11063,1486,719788,564460 +2030,50,2000,403,420635,3662,39,16104,376,332,43,129839,16495 +2030,50,2001,114,116935,1037,11,4536,113,100,12,34640,4675 +2030,50,2002,148,151451,1343,14,5875,147,130,16,42442,6055 +2030,50,2003,194,198901,1764,19,7716,193,171,21,53500,7952 +2030,50,2004,195,145805,1249,19,6360,194,172,21,47737,7995 +2030,50,2005,261,194641,1667,25,8490,259,229,28,59797,10673 +2030,50,2006,763,230745,1960,30,10057,307,272,33,67354,12653 +2030,50,2007,836,252859,2148,33,11021,336,298,36,70491,13865 +2030,50,2008,719,139142,1084,28,8866,289,256,31,53615,11929 +2030,50,2009,600,116006,904,24,7392,241,213,26,43732,9946 +2030,50,2010,280,54056,421,11,3447,113,100,12,19966,4639 +2030,50,2011,375,72451,564,15,4625,151,134,16,17156,6223 +2030,50,2012,563,108604,845,22,6939,226,200,24,25154,9337 +2030,50,2013,561,108187,842,22,6919,226,200,24,24404,9310 +2030,50,2014,691,133195,1036,27,8518,278,246,30,29283,11462 +2030,50,2015,765,147498,1148,30,9433,308,272,33,31646,12693 +2030,50,2016,848,163440,1272,34,10453,341,302,37,28332,14065 +2030,50,2017,946,182274,1418,37,11657,380,336,41,30749,15685 +2030,50,2018,1353,260805,2029,54,16680,544,481,58,42336,22443 +2030,50,2019,1497,288546,2245,59,18454,602,532,65,45608,24831 +2030,50,2020,1682,324161,2522,67,20732,676,598,73,49249,27895 +2030,50,2021,1885,363417,2828,75,23242,758,671,81,51241,31274 +2030,50,2022,2100,404831,3150,83,25891,844,747,91,54976,34837 +2030,50,2023,2438,469935,3657,97,30055,980,867,105,61660,40440 +2030,50,2024,2849,549120,4273,113,35119,1145,1013,123,69507,47254 +2030,50,2025,3362,648158,5044,133,41453,1352,1196,145,78885,55777 +2030,50,2026,4031,777114,6047,160,49700,1621,1434,174,90510,66874 +2030,50,2027,5020,967713,7530,199,61890,2018,1785,217,107225,83276 +2030,50,2028,6546,1261962,9820,259,80708,2632,2328,282,131871,108597 +2030,50,2029,8939,1723162,13409,354,110204,3594,3179,386,167443,148285 +2030,50,2030,16950,3267483,25426,671,208971,6815,6029,731,282848,281181 +2030,51,2000,131,139051,1150,12,4911,122,108,14,40477,5386 +2030,51,2001,37,38300,313,3,1371,37,32,4,10753,1527 +2030,51,2002,48,49604,405,4,1775,47,42,5,13203,1977 +2030,51,2003,63,65146,532,6,2332,62,55,7,16671,2597 +2030,51,2004,64,47711,375,6,1921,62,55,7,14936,2611 +2030,51,2005,85,63692,501,8,2564,83,74,9,18764,3485 +2030,51,2006,249,75506,592,9,3039,99,87,11,21210,4131 +2030,51,2007,272,82742,649,10,3331,108,96,12,22251,4527 +2030,51,2008,234,45348,324,8,2678,93,82,10,17007,3895 +2030,51,2009,195,37808,270,7,2233,78,69,8,13890,3248 +2030,51,2010,91,17629,126,3,1041,36,32,4,6350,1515 +2030,51,2011,122,23645,169,4,1397,49,43,5,6063,2032 +2030,51,2012,183,35468,254,7,2096,73,65,8,8901,3049 +2030,51,2013,183,35356,253,7,2090,73,64,8,8650,3040 +2030,51,2014,225,43529,311,8,2573,90,79,10,10394,3743 +2030,51,2015,249,48204,345,9,2850,99,88,11,11248,4145 +2030,51,2016,276,53414,382,10,3158,110,97,12,10641,4593 +2030,51,2017,308,59569,426,11,3522,123,108,13,11560,5122 +2030,51,2018,441,85233,609,16,5039,175,155,19,15949,7328 +2030,51,2019,488,94299,674,18,5575,194,172,21,17200,8108 +2030,51,2020,548,105938,757,20,6263,218,193,23,18615,9109 +2030,51,2021,615,118768,849,22,7021,244,216,26,19680,10212 +2030,51,2022,685,132302,946,25,7821,272,241,29,21139,11376 +2030,51,2023,795,153579,1098,29,9079,316,280,34,23734,13205 +2030,51,2024,929,179457,1283,33,10609,369,327,40,26785,15430 +2030,51,2025,1096,211823,1514,39,12523,436,386,47,30437,18213 +2030,51,2026,1314,253967,1815,47,15014,523,462,56,34975,21836 +2030,51,2027,1636,316257,2261,59,18696,651,576,70,41508,27192 +2030,51,2028,2134,412419,2948,77,24381,849,751,91,51160,35460 +2030,51,2029,2914,563143,4025,105,33292,1159,1025,125,65149,48420 +2030,51,2030,5526,1067839,7633,198,63129,2197,1944,236,110606,91814 +2030,53,2000,540,557511,4841,57,21709,499,442,58,229089,21995 +2030,53,2001,153,151531,1351,16,6089,138,122,16,60855,6234 +2030,53,2002,198,196258,1749,21,7887,179,158,21,74372,8074 +2030,53,2003,261,257747,2297,27,10357,235,208,28,93562,10604 +2030,53,2004,262,188885,1624,28,8536,236,209,28,84593,10661 +2030,53,2005,350,252150,2168,37,11395,315,279,38,105714,14232 +2030,53,2006,1024,298921,2554,44,13500,374,331,44,118908,16872 +2030,53,2007,1122,327570,2799,48,14794,410,362,49,124214,18489 +2030,53,2008,965,180629,1415,41,11903,352,312,42,96368,15907 +2030,53,2009,805,150595,1180,34,9924,294,260,35,78567,13262 +2030,53,2010,375,70189,550,16,4628,137,121,16,35857,6186 +2030,53,2011,503,94096,737,22,6209,184,163,22,32950,8298 +2030,53,2012,755,141081,1105,32,9316,276,244,33,48250,12451 +2030,53,2013,753,140571,1101,32,9289,275,243,33,46738,12415 +2030,53,2014,927,173065,1355,40,11437,338,299,40,55987,15284 +2030,53,2015,1027,191649,1501,44,12665,375,332,45,60405,16925 +2030,53,2016,1138,212364,1663,49,14034,415,367,49,55858,18755 +2030,53,2017,1269,236835,1854,54,15651,463,410,55,60436,20916 +2030,53,2018,1816,338873,2653,78,22394,663,586,79,82970,29928 +2030,53,2019,2009,374919,2936,86,24776,733,649,87,89091,33111 +2030,53,2020,2257,421193,3298,96,27834,824,729,98,95872,37198 +2030,53,2021,2530,472201,3697,108,31205,923,817,110,100239,41702 +2030,53,2022,2818,526011,4119,120,34760,1029,910,122,107001,46455 +2030,53,2023,3272,610604,4781,140,40351,1194,1056,142,119326,53926 +2030,53,2024,3823,713491,5587,163,47150,1395,1234,166,133674,63012 +2030,53,2025,4513,842174,6594,193,55653,1647,1457,196,150635,74377 +2030,53,2026,5410,1009733,7907,231,66726,1975,1747,235,171391,89175 +2030,53,2027,6737,1257384,9846,288,83092,2459,2175,293,201013,111046 +2030,53,2028,8786,1639715,12839,375,108357,3206,2836,382,244119,144811 +2030,53,2029,11997,2238965,17532,513,147958,4378,3873,521,304761,197734 +2030,53,2030,22748,4245560,33244,972,280560,8302,7344,988,499426,374947 +2030,54,2000,139,148462,1247,12,5394,129,114,15,43421,5701 +2030,54,2001,39,41047,339,4,1515,39,35,4,11530,1616 +2030,54,2002,51,53163,439,5,1962,51,45,5,14153,2093 +2030,54,2003,67,69819,577,6,2577,67,59,7,17867,2748 +2030,54,2004,67,51148,407,6,2124,67,59,7,15993,2763 +2030,54,2005,90,68279,544,8,2835,90,79,9,20084,3689 +2030,54,2006,263,80944,642,10,3359,106,94,11,22685,4373 +2030,54,2007,288,88702,703,10,3681,117,103,12,23790,4792 +2030,54,2008,248,48653,352,9,2961,100,89,11,18163,4123 +2030,54,2009,207,40564,294,8,2468,84,74,9,14831,3437 +2030,54,2010,96,18911,137,4,1151,39,35,4,6779,1603 +2030,54,2011,129,25358,184,5,1544,52,46,6,6333,2151 +2030,54,2012,194,38030,275,7,2317,79,69,8,9297,3227 +2030,54,2013,194,37902,274,7,2311,78,69,8,9033,3218 +2030,54,2014,238,46664,338,9,2845,96,85,10,10853,3961 +2030,54,2015,264,51675,374,10,3150,107,94,11,11744,4387 +2030,54,2016,293,57260,415,11,3491,118,105,13,11011,4861 +2030,54,2017,326,63858,462,12,3893,132,117,14,11963,5421 +2030,54,2018,467,91371,661,17,5570,189,167,20,16516,7757 +2030,54,2019,516,101090,732,19,6163,209,185,22,17812,8582 +2030,54,2020,580,113567,822,21,6923,235,207,25,19288,9641 +2030,54,2021,650,127320,922,24,7762,263,233,28,20340,10809 +2030,54,2022,725,141829,1027,26,8646,293,259,31,21864,12040 +2030,54,2023,841,164638,1192,31,10037,340,301,36,24551,13977 +2030,54,2024,983,192380,1393,36,11728,397,351,42,27710,16332 +2030,54,2025,1160,227077,1644,42,13843,469,415,50,31494,19277 +2030,54,2026,1391,272256,1971,51,16597,562,497,59,36196,23112 +2030,54,2027,1732,339030,2454,63,20668,700,619,74,42965,28781 +2030,54,2028,2259,442118,3201,82,26952,913,808,97,52971,37532 +2030,54,2029,3084,603695,4370,112,36802,1247,1103,132,67478,51249 +2030,54,2030,5848,1144737,8287,213,69784,2364,2091,250,114629,97179 +2030,55,2000,343,372092,3004,31,13694,320,283,36,106536,14085 +2030,55,2001,97,100608,797,9,3913,95,84,10,28163,3992 +2030,55,2002,126,130305,1033,12,5067,123,109,13,34551,5170 +2030,55,2003,165,171130,1356,15,6655,162,143,17,43595,6790 +2030,55,2004,166,125434,959,15,5485,163,144,18,39096,6827 +2030,55,2005,222,167446,1281,20,7322,218,192,23,49067,9114 +2030,55,2006,650,198505,1508,24,8675,258,228,28,55370,10804 +2030,55,2007,713,217530,1652,26,9506,283,250,31,58039,11840 +2030,55,2008,613,119615,831,23,7646,243,215,26,44444,10187 +2030,55,2009,511,99727,693,19,6375,203,179,22,36284,8493 +2030,55,2010,238,46474,323,9,2973,95,84,10,16581,3961 +2030,55,2011,320,62294,433,12,3989,127,112,14,14902,5314 +2030,55,2012,480,93386,648,18,5984,190,168,21,21878,7973 +2030,55,2013,478,93035,646,18,5967,190,168,20,21258,7950 +2030,55,2014,589,114540,795,22,7346,233,207,25,25545,9788 +2030,55,2015,652,126840,881,24,8135,259,229,28,27645,10839 +2030,55,2016,723,140549,976,27,9015,286,253,31,25433,12010 +2030,55,2017,806,156745,1088,30,10053,320,283,35,27648,13394 +2030,55,2018,1153,224277,1557,43,14385,457,404,49,38177,19165 +2030,55,2019,1276,248133,1723,47,15915,506,447,55,41199,21204 +2030,55,2020,1433,278759,1935,53,17879,568,503,61,44626,23821 +2030,55,2021,1607,312518,2170,59,20044,637,564,69,46867,26706 +2030,55,2022,1790,348132,2417,66,22328,710,628,77,50426,29749 +2030,55,2023,2078,404118,2806,77,25919,824,729,89,56695,34533 +2030,55,2024,2428,472213,3278,90,30287,963,851,104,64078,40352 +2030,55,2025,2866,557379,3870,106,35749,1136,1005,123,72940,47629 +2030,55,2026,3437,668273,4640,127,42862,1362,1205,147,83980,57106 +2030,55,2027,4279,832179,5778,158,53374,1696,1501,183,99898,71112 +2030,55,2028,5581,1085215,7534,206,69603,2212,1957,239,123483,92735 +2030,55,2029,7620,1481821,10288,282,95041,3020,2672,326,157842,126626 +2030,55,2030,14449,2809849,19508,534,180218,5727,5067,619,269726,240109 +2030,56,2000,481,523658,4896,61,19835,474,419,54,214577,20785 +2030,56,2001,136,142049,1365,17,5563,131,116,15,57049,5891 +2030,56,2002,177,183977,1768,22,7205,170,150,20,69804,7630 +2030,56,2003,232,241618,2322,29,9463,223,197,26,87897,10020 +2030,56,2004,233,177176,1645,29,7801,224,198,26,79317,10074 +2030,56,2005,311,236519,2197,39,10413,299,265,35,99257,13449 +2030,56,2006,911,280390,2578,47,12334,355,314,41,111714,15943 +2030,56,2007,998,307263,2825,51,13516,389,344,45,116825,17471 +2030,56,2008,859,169623,1429,44,10875,335,296,39,90337,15032 +2030,56,2009,716,141420,1191,37,9067,279,247,32,73684,12532 +2030,56,2010,334,65882,555,17,4229,130,115,15,33640,5845 +2030,56,2011,448,88281,743,23,5673,174,154,20,31045,7842 +2030,56,2012,672,132302,1113,34,8512,262,231,30,45486,11766 +2030,56,2013,670,131763,1109,34,8488,261,231,30,44092,11731 +2030,56,2014,825,162221,1365,42,10450,321,284,37,52859,14443 +2030,56,2015,914,179641,1512,47,11572,356,315,41,57075,15994 +2030,56,2016,1012,199057,1675,52,12822,394,349,46,53067,17723 +2030,56,2017,1129,221996,1868,58,14300,439,389,51,57475,19765 +2030,56,2018,1615,317639,2673,83,20461,629,556,73,79099,28280 +2030,56,2019,1787,351427,2957,91,22637,696,615,81,85025,31289 +2030,56,2020,2008,394802,3322,103,25431,781,691,91,91725,35150 +2030,56,2021,2251,442614,3724,115,28511,876,775,102,96110,39407 +2030,56,2022,2508,493052,4149,128,31760,976,863,114,102862,43898 +2030,56,2023,2911,572345,4816,149,36868,1133,1002,132,114896,50958 +2030,56,2024,3401,668784,5627,174,43080,1324,1171,154,128939,59544 +2030,56,2025,4015,789404,6642,205,50850,1562,1382,182,145593,70283 +2030,56,2026,4814,946463,7964,246,60967,1873,1657,218,166053,84267 +2030,56,2027,5994,1178599,9917,307,75920,2333,2064,271,195317,104934 +2030,56,2028,7817,1536971,12933,400,99005,3042,2691,354,238072,136841 +2030,56,2029,10674,2098675,17659,546,135187,4154,3675,483,298695,186851 +2030,56,2030,20239,3979537,33485,1036,256344,7877,6968,916,493939,354311 +2035,1,2005,455,360402,3208,57,12854,476,421,51,218940,19916 +2035,1,2006,455,146063,1299,23,5208,193,171,21,83082,8071 +2035,1,2007,505,161857,1439,26,5772,214,189,23,86695,8944 +2035,1,2008,433,88602,719,22,4628,183,162,20,68053,7669 +2035,1,2009,379,77584,629,19,4052,161,142,17,55859,6715 +2035,1,2010,187,38253,310,10,1998,79,70,8,25716,3311 +2035,1,2011,259,52918,429,13,2765,110,97,12,33710,4582 +2035,1,2012,399,81637,662,20,4266,169,150,18,49473,7069 +2035,1,2013,405,82818,672,21,4329,172,152,18,47912,7173 +2035,1,2014,493,100815,818,25,5269,209,185,22,57048,8732 +2035,1,2015,540,110465,896,28,5774,229,202,24,61186,9567 +2035,1,2016,593,121382,985,30,6344,251,222,27,47663,10513 +2035,1,2017,652,133414,1083,33,6973,276,245,30,51137,11555 +2035,1,2018,922,188649,1531,47,9860,391,346,42,69263,16339 +2035,1,2019,1009,206476,1675,52,10792,428,378,46,73777,17883 +2035,1,2020,1109,227039,1842,57,11866,470,416,50,77977,19664 +2035,1,2021,1222,250039,2029,62,13069,518,458,55,76076,21656 +2035,1,2022,1335,273165,2216,68,14277,566,501,61,79849,23659 +2035,1,2023,1511,309246,2509,77,16163,641,567,69,87494,26784 +2035,1,2024,1705,348907,2831,87,18236,723,639,77,95760,30219 +2035,1,2025,1936,396143,3214,99,20705,821,726,88,104964,34310 +2035,1,2026,2194,449070,3644,112,23471,930,823,100,111864,38894 +2035,1,2027,2531,517869,4202,129,27067,1073,949,115,124231,44853 +2035,1,2028,2949,603439,4896,151,31539,1250,1106,134,138844,52264 +2035,1,2029,3455,707025,5737,177,36953,1465,1296,157,155683,61236 +2035,1,2030,4107,840444,6819,210,43926,1741,1540,186,176317,72791 +2035,1,2031,4995,1022091,8293,255,53420,2118,1873,226,202993,88523 +2035,1,2032,6149,1258388,10211,314,65771,2607,2306,279,234694,108989 +2035,1,2033,7907,1618034,13129,404,84568,3352,2966,359,279980,140138 +2035,1,2034,10712,2191969,17786,548,114565,4541,4017,486,345003,189847 +2035,1,2035,19937,4079914,33104,1020,213240,8453,7478,904,549729,353362 +2035,4,2005,2373,1895643,19058,254,79315,2501,2213,258,1048218,99460 +2035,4,2006,2375,768264,7712,103,32139,1014,897,105,398492,40309 +2035,4,2007,2632,851333,8546,114,35614,1123,994,116,416580,44667 +2035,4,2008,2256,465467,4280,98,28544,963,852,99,324119,38298 +2035,4,2009,1976,407585,3748,86,24994,843,746,87,266440,33535 +2035,4,2010,974,200965,1848,42,12326,416,368,43,122871,16537 +2035,4,2011,1348,278016,2556,59,17054,575,509,59,161297,22881 +2035,4,2012,2080,428901,3944,90,26313,888,785,92,237050,35305 +2035,4,2013,2110,435114,4001,92,26698,901,797,93,229881,35822 +2035,4,2014,2569,529667,4870,112,32500,1096,970,113,273896,43606 +2035,4,2015,2815,580366,5336,122,35611,1201,1063,124,293954,47780 +2035,4,2016,3093,637721,5864,134,39130,1320,1168,136,239438,52502 +2035,4,2017,3400,700934,6445,148,43009,1451,1284,150,257080,57706 +2035,4,2018,4807,991136,9113,209,60815,2052,1815,212,349027,81598 +2035,4,2019,5262,1084794,9974,228,66562,2246,1987,232,372097,89308 +2035,4,2020,5786,1192826,10967,251,73191,2469,2184,255,394195,98202 +2035,4,2021,6372,1313668,12079,277,80606,2719,2406,281,391189,108151 +2035,4,2022,6961,1435166,13196,302,88061,2971,2628,307,411323,118154 +2035,4,2023,7880,1624732,14939,342,99693,3363,2975,347,451175,133760 +2035,4,2024,8891,1833107,16855,386,112478,3795,3357,392,494299,150915 +2035,4,2025,10095,2081272,19136,438,127706,4308,3811,445,542462,171346 +2035,4,2026,11443,2359342,21693,497,144768,4884,4321,504,581696,194239 +2035,4,2027,13197,2720809,25017,573,166947,5632,4983,581,646850,223998 +2035,4,2028,15377,3170378,29150,667,194533,6563,5806,677,724021,261010 +2035,4,2029,18017,3714602,34154,782,227926,7690,6802,793,813176,305814 +2035,4,2030,21417,4415559,40599,930,270936,9141,8086,943,922704,363522 +2035,4,2031,26045,5369902,49374,1130,329494,11116,9834,1147,1064712,442091 +2035,4,2032,32067,6611381,60788,1392,405670,13686,12107,1412,1234370,544299 +2035,4,2033,41232,8500906,78162,1790,521611,17598,15567,1816,1477706,699859 +2035,4,2034,55857,11516274,105886,2424,706631,23840,21089,2460,1829640,948107 +2035,4,2035,103967,21435262,197087,4512,1315254,44374,39254,4579,2941279,1764712 +2035,5,2005,337,248031,2017,31,9536,327,290,35,136556,13358 +2035,5,2006,337,100522,815,13,3863,133,117,14,51772,5414 +2035,5,2007,373,111391,903,14,4281,147,130,16,53983,5999 +2035,5,2008,320,61007,454,12,3432,126,111,14,42351,5144 +2035,5,2009,280,53420,397,11,3006,110,98,12,34731,4504 +2035,5,2010,138,26335,196,5,1482,54,48,6,15973,2221 +2035,5,2011,191,36427,271,7,2051,75,67,8,20920,3073 +2035,5,2012,295,56188,418,11,3164,116,103,13,30677,4742 +2035,5,2013,299,56992,424,11,3211,118,104,13,29685,4811 +2035,5,2014,365,69377,516,14,3908,143,127,16,35331,5857 +2035,5,2015,399,76018,565,15,4282,157,139,17,37879,6417 +2035,5,2016,439,83530,621,17,4705,173,153,19,28263,7051 +2035,5,2017,482,91810,683,18,5172,190,168,21,30317,7750 +2035,5,2018,682,129822,965,26,7313,268,237,29,40997,10959 +2035,5,2019,747,142089,1057,28,8004,294,260,32,43661,11995 +2035,5,2020,821,156240,1162,31,8801,323,286,35,46073,13189 +2035,5,2021,904,172068,1280,34,9693,356,315,38,44223,14525 +2035,5,2022,988,187982,1398,37,10589,389,344,42,46384,15869 +2035,5,2023,1118,212812,1583,42,11988,440,389,48,50830,17965 +2035,5,2024,1262,240105,1786,47,13526,496,439,54,55638,20269 +2035,5,2025,1432,272611,2027,54,15357,564,499,61,60993,23013 +2035,5,2026,1624,309033,2298,61,17409,639,565,69,64703,26087 +2035,5,2027,1873,356379,2650,70,20076,737,652,80,71879,30084 +2035,5,2028,2182,415265,3088,82,23393,859,760,93,80362,35055 +2035,5,2029,2557,486549,3618,96,27408,1006,890,109,90143,41073 +2035,5,2030,3039,578362,4301,114,32580,1196,1058,129,102137,48823 +2035,5,2031,3696,703365,5231,139,39622,1454,1286,157,117652,59375 +2035,5,2032,4550,865976,6440,171,48782,1790,1584,194,136114,73102 +2035,5,2033,5851,1113472,8281,220,62724,2302,2037,249,162513,93995 +2035,5,2034,7926,1508433,11218,298,84974,3119,2759,337,200484,127336 +2035,5,2035,14753,2807651,20880,555,158161,5805,5135,628,320130,237011 +2035,6,2005,427,303164,2677,41,15318,400,354,15,102898,17852 +2035,6,2006,427,122866,1080,16,6206,162,144,6,39228,7235 +2035,6,2007,473,136151,1197,18,6877,180,159,7,41141,8018 +2035,6,2008,406,74432,594,16,5509,154,136,6,31322,6874 +2035,6,2009,355,65176,520,14,4824,135,119,5,25809,6019 +2035,6,2010,175,32122,256,7,2379,67,59,2,11933,2968 +2035,6,2011,242,44418,355,9,3292,92,81,3,15698,4107 +2035,6,2012,374,68496,547,14,5079,142,126,5,23119,6337 +2035,6,2013,379,69458,555,15,5153,144,127,5,22465,6430 +2035,6,2014,462,84551,675,18,6273,175,155,6,26794,7827 +2035,6,2015,506,92644,740,19,6873,192,170,7,28785,8576 +2035,6,2016,556,101800,813,21,7553,211,187,8,21212,9424 +2035,6,2017,611,111891,894,24,8301,232,205,9,22833,10358 +2035,6,2018,864,158216,1264,33,11738,328,290,12,31067,14646 +2035,6,2019,946,173167,1383,36,12847,359,318,13,33221,16030 +2035,6,2020,1040,190412,1521,40,14127,395,349,15,35263,17627 +2035,6,2021,1146,209702,1675,44,15558,435,385,16,33830,19412 +2035,6,2022,1252,229097,1830,48,16997,475,420,17,35774,21208 +2035,6,2023,1417,259357,2071,55,19242,538,476,20,39449,24009 +2035,6,2024,1599,292620,2337,62,21710,607,537,22,43440,27088 +2035,6,2025,1815,332235,2653,70,24649,689,610,25,47961,30756 +2035,6,2026,2058,376625,3008,79,27942,781,691,29,51212,34865 +2035,6,2027,2373,434325,3469,91,32223,901,797,33,57370,40206 +2035,6,2028,2765,506091,4042,106,37548,1050,929,39,64755,46850 +2035,6,2029,3239,592965,4735,125,43993,1230,1088,45,73396,54892 +2035,6,2030,3851,704859,5629,148,52295,1462,1294,54,84151,65250 +2035,6,2031,4683,857202,6846,180,63597,1778,1573,65,98292,79353 +2035,6,2032,5766,1055380,8428,222,78300,2190,1937,81,115626,97698 +2035,6,2033,7413,1357007,10837,285,100678,2815,2491,104,140959,125620 +2035,6,2034,10043,1838351,14681,387,136390,3814,3374,140,178823,170179 +2035,6,2035,18693,3421739,27326,720,253863,7099,6280,261,300130,316755 +2035,8,2005,97,70357,572,8,3165,88,78,10,29881,3984 +2035,8,2006,97,28514,231,3,1283,36,32,4,11368,1615 +2035,8,2007,108,31597,256,4,1421,40,35,5,11896,1789 +2035,8,2008,92,17270,127,3,1139,34,30,4,9233,1534 +2035,8,2009,81,15122,112,3,997,30,26,3,7598,1343 +2035,8,2010,40,7455,55,1,492,15,13,2,3508,662 +2035,8,2011,55,10310,76,2,680,20,18,2,4609,917 +2035,8,2012,85,15902,117,3,1050,31,28,4,6779,1414 +2035,8,2013,86,16129,119,3,1065,32,28,4,6579,1435 +2035,8,2014,105,19634,145,4,1297,39,34,4,7842,1747 +2035,8,2015,115,21513,159,4,1421,42,37,5,8420,1914 +2035,8,2016,127,23639,174,4,1561,47,41,5,6639,2103 +2035,8,2017,139,25982,192,5,1716,51,45,6,7136,2312 +2035,8,2018,197,36740,271,7,2426,72,64,8,9708,3269 +2035,8,2019,215,40211,296,8,2656,79,70,9,10362,3578 +2035,8,2020,237,44216,326,8,2920,87,77,10,10998,3934 +2035,8,2021,261,48695,359,9,3216,96,85,11,10799,4333 +2035,8,2022,285,53199,392,10,3513,105,93,12,11392,4733 +2035,8,2023,322,60226,444,11,3977,119,105,14,12520,5358 +2035,8,2024,364,67950,501,13,4487,134,118,16,13742,6046 +2035,8,2025,413,77149,569,15,5095,152,134,18,15114,6864 +2035,8,2026,468,87457,645,17,5776,172,152,20,16192,7781 +2035,8,2027,540,100856,743,19,6660,199,176,23,18054,8973 +2035,8,2028,629,117520,866,22,7761,231,205,27,20271,10456 +2035,8,2029,737,137694,1015,26,9093,271,240,32,22844,12251 +2035,8,2030,876,163677,1207,31,10809,322,285,37,26021,14563 +2035,8,2031,1066,199053,1467,38,13145,392,347,46,30164,17710 +2035,8,2032,1312,245072,1807,46,16184,483,427,56,35164,21804 +2035,8,2033,1687,315114,2323,60,20810,621,549,72,42390,28036 +2035,8,2034,2286,426887,3147,81,28191,841,744,98,52983,37981 +2035,8,2035,4255,794568,5857,150,52472,1565,1384,182,86639,70694 +2035,9,2005,1179,862326,9468,146,36208,1150,1017,132,415406,51292 +2035,9,2006,1180,349482,3821,59,14667,466,412,53,158032,20788 +2035,9,2007,1307,387271,4235,66,16252,516,457,59,165380,23035 +2035,9,2008,1121,212383,2116,56,13028,443,392,51,126988,19750 +2035,9,2009,982,185973,1853,49,11408,388,343,44,104427,17294 +2035,9,2010,484,91645,913,24,5626,191,169,22,48175,8529 +2035,9,2011,670,126711,1263,34,7784,264,234,30,63259,11800 +2035,9,2012,1033,195371,1948,52,12010,408,361,47,92995,18207 +2035,9,2013,1048,198090,1975,53,12186,414,366,48,90206,18474 +2035,9,2014,1276,241136,2404,64,14834,504,446,58,107495,22488 +2035,9,2015,1399,264217,2635,70,16254,552,488,63,115384,24641 +2035,9,2016,1537,290328,2895,77,17860,607,537,70,81979,27076 +2035,9,2017,1689,319107,3182,85,19631,667,590,77,88153,29760 +2035,9,2018,2388,451224,4499,120,27758,943,834,108,119515,42081 +2035,9,2019,2614,493863,4924,131,30381,1032,913,119,127653,46057 +2035,9,2020,2874,543045,5415,144,33407,1134,1004,130,135036,50644 +2035,9,2021,3166,598060,5963,159,36791,1249,1105,144,127510,55774 +2035,9,2022,3458,653374,6515,174,40194,1365,1207,157,134417,60933 +2035,9,2023,3915,739676,7376,197,45503,1545,1367,177,148028,68981 +2035,9,2024,4417,834540,8321,222,51339,1743,1542,200,162794,77828 +2035,9,2025,5015,947519,9448,252,58289,1979,1751,227,179466,88365 +2035,9,2026,5685,1074115,10710,286,66077,2244,1985,258,190461,100171 +2035,9,2027,6556,1238675,12351,329,76200,2588,2289,297,213022,115518 +2035,9,2028,7640,1443346,14392,384,88791,3015,2667,346,240014,134605 +2035,9,2029,8951,1691110,16863,450,104033,3533,3125,406,271511,157711 +2035,9,2030,10640,2010225,20045,534,123664,4200,3715,482,310615,187471 +2035,9,2031,12940,2444701,24377,650,150392,5107,4518,587,361889,227990 +2035,9,2032,15931,3009893,30012,800,185162,6288,5562,722,424427,280699 +2035,9,2033,20485,3870119,38590,1029,238081,8085,7152,929,515498,360923 +2035,9,2034,27751,5242892,52278,1394,322531,10953,9689,1258,650780,488946 +2035,9,2035,51653,9758612,97306,2594,600327,20387,18035,2342,1083074,910077 +2035,10,2005,2149,1592991,17765,277,63731,2131,1885,243,783057,95132 +2035,10,2006,2151,645606,7183,112,25819,864,764,99,298072,38555 +2035,10,2007,2383,715414,7960,125,28611,957,847,109,312035,42724 +2035,10,2008,2043,391883,3968,107,22934,821,726,94,239668,36631 +2035,10,2009,1789,343151,3474,94,20082,719,636,82,197170,32076 +2035,10,2010,882,169146,1713,46,9903,354,313,40,91005,15818 +2035,10,2011,1221,233927,2369,64,13702,490,434,56,119550,21886 +2035,10,2012,1884,360780,3655,98,21142,756,669,86,175818,33769 +2035,10,2013,1911,365899,3707,100,21451,767,679,88,170615,34263 +2035,10,2014,2327,445411,4513,122,26113,934,826,107,203351,41709 +2035,10,2015,2549,488044,4945,133,28612,1023,905,117,218315,45701 +2035,10,2016,2801,536276,5433,146,31440,1125,995,128,159642,50218 +2035,10,2017,3079,589433,5972,161,34556,1236,1093,141,171663,55195 +2035,10,2018,4353,833471,8444,228,48863,1748,1546,200,232811,78048 +2035,10,2019,4765,912231,9242,249,53481,1913,1692,218,248657,85423 +2035,10,2020,5239,1003079,10162,274,58807,2103,1861,240,263134,93930 +2035,10,2021,5770,1104696,11192,302,64765,2317,2049,264,251417,103446 +2035,10,2022,6304,1206870,12227,330,70755,2531,2239,289,264918,113013 +2035,10,2023,7136,1366279,13842,373,80100,2865,2535,327,291649,127941 +2035,10,2024,8052,1541506,15617,421,90373,3233,2860,369,320642,144349 +2035,10,2025,9142,1750195,17732,478,102608,3670,3247,419,353348,163891 +2035,10,2026,10363,1984032,20101,542,116317,4161,3681,475,376166,185788 +2035,10,2027,11951,2287997,23180,625,134137,4798,4244,548,420488,214252 +2035,10,2028,13926,2666051,27010,728,156301,5591,4946,638,473466,249653 +2035,10,2029,16316,3123703,31647,853,183132,6550,5795,748,535232,292509 +2035,10,2030,19395,3713154,37619,1014,217689,7787,6888,889,611841,347706 +2035,10,2031,23587,4515684,45750,1233,264739,9469,8377,1081,712192,422856 +2035,10,2032,29040,5559676,56327,1518,325944,11659,10314,1331,834364,520618 +2035,10,2033,37339,7148624,72425,1952,419099,14991,13261,1711,1012043,669410 +2035,10,2034,50584,9684318,98115,2645,567758,20308,17965,2318,1275380,906854 +2035,10,2035,94153,18025464,182621,4923,1056768,37800,33438,4315,2116053,1687934 +2035,11,2005,916,745456,9791,215,27417,1010,893,115,1031615,44752 +2035,11,2006,916,302118,3942,87,11097,409,362,46,388952,18137 +2035,11,2007,1016,334784,4368,97,12297,453,401,51,403413,20098 +2035,11,2008,871,187591,2263,83,9891,389,344,44,320488,17232 +2035,11,2009,762,164264,1981,72,8661,340,301,39,261457,15089 +2035,11,2010,376,80888,976,36,4271,168,148,19,119526,7441 +2035,11,2011,520,111755,1350,49,5909,232,205,26,155761,10296 +2035,11,2012,803,172183,2081,76,9118,358,317,41,227276,15886 +2035,11,2013,814,174449,2110,77,9251,363,321,41,218853,16118 +2035,11,2014,991,212358,2568,94,11262,442,391,50,259855,19621 +2035,11,2015,1086,232685,2814,103,12340,485,429,55,277930,21499 +2035,11,2016,1194,255680,3092,113,13559,532,471,61,186681,23623 +2035,11,2017,1312,281024,3399,125,14903,585,518,67,199496,25965 +2035,11,2018,1855,397374,4806,176,21073,827,732,94,267223,36715 +2035,11,2019,2031,434924,5260,193,23064,906,801,103,283277,40185 +2035,11,2020,2233,478237,5784,212,25361,996,881,113,296100,44186 +2035,11,2021,2459,526686,6369,234,27931,1097,970,125,269746,48663 +2035,11,2022,2686,575399,6959,255,30514,1198,1060,136,280124,53163 +2035,11,2023,3041,651400,7878,289,34544,1356,1200,154,304864,60186 +2035,11,2024,3431,734944,8888,326,38975,1530,1354,174,331479,67905 +2035,11,2025,3896,834441,10091,370,44251,1738,1537,197,360471,77097 +2035,11,2026,4416,945928,11440,420,50164,1970,1742,224,372953,87398 +2035,11,2027,5093,1090849,13192,484,57849,2272,2009,258,410381,100788 +2035,11,2028,5934,1271093,15372,564,67407,2647,2341,301,453753,117442 +2035,11,2029,6953,1489289,18011,661,78978,3101,2743,352,502751,137602 +2035,11,2030,8265,1770322,21409,785,93882,3686,3261,419,561496,163567 +2035,11,2031,10052,2152943,26037,955,114173,4483,3966,510,635627,198920 +2035,11,2032,12376,2650691,32056,1176,140569,5520,4883,627,719664,244908 +2035,11,2033,15912,3408248,41218,1512,180743,7097,6278,807,835325,314903 +2035,11,2034,21557,4617188,55838,2048,244855,9615,8505,1093,989970,426602 +2035,11,2035,40124,8593995,103932,3813,455748,17896,15831,2034,1460804,794035 +2035,12,2005,2566,2108700,20400,385,69261,2802,2479,300,1288538,117343 +2035,12,2006,2568,854612,8265,156,28067,1136,1005,122,489745,47557 +2035,12,2007,2845,947018,9159,173,31101,1259,1113,135,511798,52699 +2035,12,2008,2440,518045,4559,148,24938,1079,955,116,400741,45184 +2035,12,2009,2136,453624,3992,130,21837,945,836,101,329433,39565 +2035,12,2010,1053,223683,1968,64,10769,466,412,50,151926,19511 +2035,12,2011,1458,309467,2723,89,14900,645,570,69,199445,26996 +2035,12,2012,2249,477460,4202,137,22990,995,880,107,293123,41653 +2035,12,2013,2282,484414,4263,139,23326,1009,893,108,284266,42263 +2035,12,2014,2778,589680,5190,169,28395,1229,1087,132,338698,51447 +2035,12,2015,3044,646123,5687,185,31113,1346,1191,144,363505,56371 +2035,12,2016,3345,709975,6248,203,34188,1479,1309,158,288166,61942 +2035,12,2017,3676,780352,6868,224,37577,1626,1438,174,309445,68082 +2035,12,2018,5198,1103433,9711,316,53134,2299,2034,246,419602,96269 +2035,12,2019,5689,1207706,10629,346,58155,2516,2226,269,447423,105366 +2035,12,2020,6256,1327976,11688,381,63947,2767,2448,296,473428,115860 +2035,12,2021,6890,1462510,12872,419,70425,3047,2696,326,465478,127597 +2035,12,2022,7527,1597777,14062,458,76939,3329,2945,356,489124,139398 +2035,12,2023,8521,1808818,15919,518,87101,3769,3334,404,536756,157811 +2035,12,2024,9614,2040802,17961,585,98272,4252,3761,455,588313,178050 +2035,12,2025,10915,2317087,20393,664,111576,4828,4271,517,645968,202155 +2035,12,2026,12374,2626661,23117,753,126483,5473,4841,586,691073,229164 +2035,12,2027,14269,3029085,26659,868,145861,6311,5583,676,768988,264273 +2035,12,2028,16627,3529591,31064,1012,169962,7354,6505,787,861383,307940 +2035,12,2029,19481,4135476,36396,1185,199138,8616,7622,923,968259,360800 +2035,12,2030,23158,4915853,43264,1409,236716,10242,9060,1097,1099724,428885 +2035,12,2031,28163,5978329,52615,1713,287877,12456,11019,1334,1270411,521580 +2035,12,2032,34674,7360463,64779,2109,354432,15335,13566,1642,1474867,642166 +2035,12,2033,44583,9464078,83293,2712,455728,19718,17443,2111,1768679,825696 +2035,12,2034,60398,12821105,112838,3674,617381,26713,23631,2860,2195089,1118578 +2035,12,2035,112418,23863934,210026,6839,1149132,49720,43984,5324,3544047,2082015 +2035,13,2005,479,338935,2511,37,13769,446,394,49,181009,18399 +2035,13,2006,480,137363,1015,15,5579,181,160,20,68569,7457 +2035,13,2007,532,152216,1124,17,6182,200,177,22,71439,8263 +2035,13,2008,456,83347,565,14,4956,172,152,19,56153,7085 +2035,13,2009,399,72983,494,13,4340,150,133,17,46012,6204 +2035,13,2010,197,35980,244,6,2140,74,66,8,21141,3059 +2035,13,2011,272,49768,337,9,2961,103,91,11,27668,4233 +2035,13,2012,420,76766,520,13,4569,158,140,17,40540,6531 +2035,13,2013,426,77867,528,13,4635,161,142,18,39199,6627 +2035,13,2014,519,94788,642,16,5643,195,173,21,46638,8067 +2035,13,2015,569,103861,704,18,6183,214,189,24,49982,8839 +2035,13,2016,625,114125,773,20,6794,235,208,26,37289,9712 +2035,13,2017,687,125437,850,22,7467,259,229,28,39975,10675 +2035,13,2018,971,177371,1202,31,10559,366,323,40,54027,15095 +2035,13,2019,1063,194132,1315,33,11557,400,354,44,57494,16521 +2035,13,2020,1169,213465,1446,37,12708,440,389,48,60637,18166 +2035,13,2021,1287,235091,1593,40,13995,485,429,53,58140,20007 +2035,13,2022,1406,256834,1740,44,15289,529,468,58,60927,21857 +2035,13,2023,1592,290758,1970,50,17309,599,530,66,66689,24744 +2035,13,2024,1796,328048,2222,56,19529,676,598,74,72915,27917 +2035,13,2025,2039,372459,2523,64,22173,768,679,84,79826,31697 +2035,13,2026,2312,422222,2860,73,25135,870,770,96,84546,35932 +2035,13,2027,2666,486909,3299,84,28986,1004,888,110,93771,41437 +2035,13,2028,3106,567363,3844,98,33775,1170,1035,129,104643,48283 +2035,13,2029,3639,664755,4504,114,39573,1370,1212,151,117141,56572 +2035,13,2030,4326,790197,5353,136,47040,1629,1441,179,132414,67247 +2035,13,2031,5261,960984,6510,165,57207,1981,1752,218,152100,81781 +2035,13,2032,6477,1183156,8016,204,70433,2439,2157,268,175365,100688 +2035,13,2033,8329,1521301,10306,262,90563,3136,2774,345,208459,129465 +2035,13,2034,11283,2060922,13962,355,122687,4248,3758,467,255609,175387 +2035,13,2035,21001,3835999,25988,660,228357,7907,6995,869,403549,326449 +2035,16,2005,206,147676,1202,18,7095,185,164,22,68143,8306 +2035,16,2006,206,59850,481,7,2873,75,66,9,25846,3366 +2035,16,2007,228,66322,533,8,3184,83,74,10,26990,3730 +2035,16,2008,196,36442,269,7,2552,71,63,8,21037,3198 +2035,16,2009,171,31910,236,6,2235,62,55,7,17274,2801 +2035,16,2010,84,15715,116,3,1102,31,27,4,7954,1381 +2035,16,2011,117,21715,160,4,1525,43,38,5,10429,1911 +2035,16,2012,180,33461,247,7,2353,66,58,8,15308,2948 +2035,16,2013,183,33906,250,7,2387,67,59,8,14827,2991 +2035,16,2014,223,41274,304,8,2906,81,72,9,17657,3642 +2035,16,2015,244,45225,333,9,3184,89,79,10,18940,3990 +2035,16,2016,268,49694,366,10,3499,98,86,11,13538,4384 +2035,16,2017,295,54620,402,11,3845,107,95,13,14542,4819 +2035,16,2018,417,77234,569,15,5438,152,134,18,19723,6814 +2035,16,2019,456,84532,622,16,5951,166,147,19,21039,7458 +2035,16,2020,501,92951,684,18,6544,183,162,21,22264,8201 +2035,16,2021,552,102367,754,20,7207,201,178,23,21035,9032 +2035,16,2022,603,111835,823,22,7874,220,194,26,22171,9867 +2035,16,2023,683,126607,932,25,8914,249,220,29,24366,11170 +2035,16,2024,770,142844,1052,28,10057,281,248,33,26744,12603 +2035,16,2025,875,162183,1194,32,11418,319,282,37,29414,14309 +2035,16,2026,992,183851,1354,36,12944,361,320,42,31158,16221 +2035,16,2027,1144,212018,1561,41,14927,417,369,49,34754,18706 +2035,16,2028,1333,247051,1819,48,17393,485,429,57,39036,21797 +2035,16,2029,1561,289459,2131,56,20379,569,503,66,44011,25539 +2035,16,2030,1856,344081,2534,67,24224,676,598,79,50158,30358 +2035,16,2031,2257,418448,3081,81,29460,822,727,96,58177,36919 +2035,16,2032,2779,515190,3793,100,36271,1012,896,118,67868,45454 +2035,16,2033,3573,662430,4878,129,46637,1302,1151,152,81886,58445 +2035,16,2034,4840,897400,6608,175,63180,1763,1560,206,102469,79177 +2035,16,2035,9009,1670336,12299,325,117597,3282,2903,383,167913,147372 +2035,17,2005,652,512397,4573,79,19230,680,602,72,268928,27892 +2035,17,2006,652,207664,1847,32,7790,276,244,29,102180,11304 +2035,17,2007,723,230118,2047,35,8633,305,270,32,106777,12526 +2035,17,2008,620,125990,1024,30,6921,262,232,28,83346,10740 +2035,17,2009,542,110323,897,27,6061,229,203,24,68498,9405 +2035,17,2010,268,54383,442,13,2989,113,100,12,31580,4638 +2035,17,2011,370,75216,611,18,4135,156,138,17,41447,6417 +2035,17,2012,571,116010,943,28,6381,241,214,26,60898,9901 +2035,17,2013,579,117662,956,28,6474,245,217,26,59043,10046 +2035,17,2014,705,143231,1164,35,7881,298,264,32,70342,12229 +2035,17,2015,773,156941,1275,38,8635,327,289,35,75485,13399 +2035,17,2016,849,172451,1402,42,9488,359,318,38,56513,14723 +2035,17,2017,933,189544,1540,46,10429,395,349,42,60715,16183 +2035,17,2018,1320,268020,2178,65,14747,558,493,59,82335,22883 +2035,17,2019,1445,293347,2384,71,16140,611,540,65,87846,25045 +2035,17,2020,1589,322561,2621,78,17748,671,594,71,92953,27540 +2035,17,2021,1750,355238,2887,86,19546,739,654,79,89522,30330 +2035,17,2022,1911,388094,3154,94,21353,808,715,86,94231,33135 +2035,17,2023,2164,439356,3571,106,24174,914,809,97,103550,37511 +2035,17,2024,2441,495703,4029,120,27274,1032,913,110,113647,42322 +2035,17,2025,2772,562812,4574,136,30967,1171,1036,125,124981,48052 +2035,17,2026,3142,638007,5185,154,35104,1328,1175,141,133117,54472 +2035,17,2027,3624,735753,5980,177,40482,1531,1355,163,148432,62817 +2035,17,2028,4222,857326,6968,207,47171,1784,1578,190,166661,73197 +2035,17,2029,4947,1004492,8164,242,55268,2091,1849,222,187825,85762 +2035,17,2030,5881,1194042,9704,288,65698,2485,2198,264,213959,101945 +2035,17,2031,7152,1452115,11801,350,79897,3022,2674,321,248034,123979 +2035,17,2032,8805,1787829,14530,431,98368,3721,3292,396,289165,152642 +2035,17,2033,11321,2298791,18682,554,126482,4785,4233,509,348612,196266 +2035,17,2034,15337,3114197,25309,751,171346,6482,5734,689,435768,265884 +2035,17,2035,28547,5796461,47108,1398,318928,12064,10672,1283,712705,494891 +2035,18,2005,112,84987,678,10,3531,112,99,12,36541,4589 +2035,18,2006,112,34443,273,4,1431,45,40,5,13887,1860 +2035,18,2007,124,38168,303,5,1585,50,44,5,14519,2061 +2035,18,2008,106,20883,152,4,1271,43,38,5,11287,1767 +2035,18,2009,93,18286,133,3,1113,38,33,4,9279,1547 +2035,18,2010,46,9013,65,2,549,19,16,2,4279,763 +2035,18,2011,64,12464,90,2,759,26,23,3,5617,1056 +2035,18,2012,98,19221,140,4,1171,40,35,4,8255,1629 +2035,18,2013,99,19492,141,4,1188,40,36,4,8006,1653 +2035,18,2014,121,23728,172,4,1447,49,43,5,9539,2012 +2035,18,2015,133,25999,189,5,1585,54,47,6,10237,2204 +2035,18,2016,146,28568,207,5,1742,59,52,6,7478,2422 +2035,18,2017,160,31400,228,6,1915,65,57,7,8039,2662 +2035,18,2018,227,44400,322,8,2707,92,81,10,10907,3765 +2035,18,2019,248,48596,353,9,2963,100,89,11,11645,4121 +2035,18,2020,273,53435,388,10,3258,110,98,12,12328,4531 +2035,18,2021,300,58849,427,11,3588,121,107,13,11771,4990 +2035,18,2022,328,64291,467,12,3920,133,117,14,12408,5451 +2035,18,2023,371,72783,528,14,4438,150,133,16,13653,6171 +2035,18,2024,419,82118,596,16,5007,169,150,18,15003,6963 +2035,18,2025,476,93235,677,18,5685,192,170,20,16524,7906 +2035,18,2026,539,105692,767,20,6444,218,193,23,17581,8962 +2035,18,2027,622,121885,885,23,7432,252,222,27,19640,10335 +2035,18,2028,725,142024,1031,27,8660,293,259,31,22099,12042 +2035,18,2029,849,166404,1208,32,10146,343,304,36,24962,14110 +2035,18,2030,1009,197804,1435,37,12061,408,361,43,28509,16772 +2035,18,2031,1228,240556,1746,46,14667,496,439,53,33151,20397 +2035,18,2032,1511,296171,2149,56,18058,611,541,65,38789,25113 +2035,18,2033,1943,380817,2764,72,23219,786,695,83,46977,32290 +2035,18,2034,2633,515896,3744,98,31455,1065,942,113,59079,43744 +2035,18,2035,4900,960239,6968,182,58548,1982,1753,210,97671,81420 +2035,19,2005,247,194206,1702,27,7769,257,227,27,76868,10549 +2035,19,2006,247,78707,686,11,3147,104,92,11,29302,4275 +2035,19,2007,274,87218,760,12,3487,115,102,12,30728,4738 +2035,19,2008,235,47688,379,10,2795,99,88,10,23688,4062 +2035,19,2009,206,41757,332,9,2448,87,77,9,19531,3557 +2035,19,2010,101,20581,164,4,1207,43,38,4,9037,1754 +2035,19,2011,140,28461,226,6,1670,59,52,6,11896,2427 +2035,19,2012,217,43890,349,10,2577,91,81,10,17529,3745 +2035,19,2013,220,44509,354,10,2614,92,82,10,17043,3799 +2035,19,2014,268,54181,431,12,3183,113,100,12,20332,4625 +2035,19,2015,293,59367,472,13,3487,123,109,13,21849,5068 +2035,19,2016,322,65234,519,14,3832,136,120,14,16226,5569 +2035,19,2017,354,71701,570,16,4212,149,132,16,17476,6121 +2035,19,2018,501,101386,806,22,5955,211,186,22,23790,8655 +2035,19,2019,548,110967,882,24,6518,231,204,24,25458,9472 +2035,19,2020,603,122018,970,26,7167,254,224,27,27037,10416 +2035,19,2021,664,134379,1068,29,7893,279,247,29,26056,11471 +2035,19,2022,725,146807,1167,32,8623,305,270,32,27572,12532 +2035,19,2023,821,166198,1321,36,9762,345,305,36,30439,14187 +2035,19,2024,926,187513,1491,41,11014,390,345,41,33553,16007 +2035,19,2025,1051,212899,1692,46,12506,442,391,47,37091,18174 +2035,19,2026,1192,241344,1919,52,14176,501,444,53,39711,20602 +2035,19,2027,1374,278319,2213,60,16348,578,512,61,44549,23758 +2035,19,2028,1601,324307,2578,70,19050,674,596,71,50365,27684 +2035,19,2029,1876,379977,3021,82,22320,789,698,83,57184,32436 +2035,19,2030,2230,451680,3591,98,26531,938,830,99,65692,38557 +2035,19,2031,2712,549303,4367,119,32266,1141,1010,120,76905,46890 +2035,19,2032,3340,676297,5376,147,39725,1405,1243,148,90707,57731 +2035,19,2033,4294,869582,6913,189,51079,1807,1598,190,110941,74231 +2035,19,2034,5817,1178031,9365,256,69197,2448,2165,258,141339,100561 +2035,19,2035,10827,2192673,17431,476,128796,4556,4030,480,238939,187174 +2035,20,2005,278,211786,1844,31,8266,279,247,30,125466,11441 +2035,20,2006,278,85832,743,13,3348,113,100,12,47554,4637 +2035,20,2007,308,95113,823,14,3710,125,111,14,49583,5138 +2035,20,2008,264,52181,415,12,2976,107,95,12,38917,4405 +2035,20,2009,231,45692,363,10,2605,94,83,10,31914,3857 +2035,20,2010,114,22520,179,5,1285,46,41,5,14676,1902 +2035,20,2011,158,31141,247,7,1778,64,57,7,19221,2632 +2035,20,2012,243,48023,382,11,2743,99,88,11,28184,4061 +2035,20,2013,247,48698,387,11,2783,100,89,11,27270,4121 +2035,20,2014,301,59281,471,14,3388,122,108,13,32457,5016 +2035,20,2015,329,64955,516,15,3712,134,118,14,34797,5496 +2035,20,2016,362,71374,567,16,4079,147,130,16,25636,6039 +2035,20,2017,398,78449,623,18,4483,162,143,17,27501,6638 +2035,20,2018,563,110929,881,25,6340,229,202,25,37199,9386 +2035,20,2019,616,121411,965,28,6939,250,221,27,39617,10273 +2035,20,2020,677,133502,1061,31,7630,275,244,30,41816,11296 +2035,20,2021,746,147027,1168,34,8403,303,268,33,39927,12440 +2035,20,2022,815,160625,1276,37,9180,331,293,36,41904,13591 +2035,20,2023,922,181841,1445,42,10392,375,332,40,45926,15386 +2035,20,2024,1041,205162,1630,47,11725,423,374,46,50277,17359 +2035,20,2025,1181,232937,1851,53,13313,480,425,52,55124,19710 +2035,20,2026,1339,264059,2098,60,15091,545,482,59,58392,22343 +2035,20,2027,1544,304515,2419,70,17403,628,556,68,64881,25766 +2035,20,2028,1800,354831,2819,81,20279,732,647,79,72556,30023 +2035,20,2029,2109,415741,3303,95,23760,857,758,92,81410,35177 +2035,20,2030,2506,494192,3926,113,28243,1019,902,110,92270,41815 +2035,20,2031,3048,601003,4775,137,34348,1239,1096,134,106327,50853 +2035,20,2032,3753,739950,5879,169,42289,1526,1350,165,123067,62609 +2035,20,2033,4826,951428,7559,218,54375,1962,1736,212,147021,80503 +2035,20,2034,6537,1288909,10240,295,73662,2658,2351,287,181516,109059 +2035,20,2035,12168,2399050,19059,549,137108,4947,4377,533,290268,202991 +2035,21,2005,156,118213,939,14,4727,155,137,16,50977,6392 +2035,21,2006,156,47909,380,6,1915,63,56,7,19385,2590 +2035,21,2007,173,53089,421,6,2122,70,62,7,20273,2870 +2035,21,2008,148,29007,210,5,1701,60,53,6,15763,2461 +2035,21,2009,130,25400,184,5,1490,52,46,6,12963,2155 +2035,21,2010,64,12522,91,2,735,26,23,3,5981,1063 +2035,21,2011,88,17321,125,3,1016,36,32,4,7854,1470 +2035,21,2012,137,26718,193,5,1568,55,49,6,11547,2269 +2035,21,2013,139,27102,196,5,1591,56,50,6,11202,2302 +2035,21,2014,169,32991,239,6,1937,68,60,7,13349,2802 +2035,21,2015,185,36149,261,7,2122,75,66,8,14329,3071 +2035,21,2016,203,39721,287,7,2332,82,73,9,10894,3374 +2035,21,2017,223,43659,316,8,2563,90,80,10,11708,3708 +2035,21,2018,316,61734,446,11,3624,127,113,13,15895,5244 +2035,21,2019,345,67568,489,13,3967,140,123,15,16966,5739 +2035,21,2020,380,74297,537,14,4362,153,136,16,17971,6311 +2035,21,2021,418,81824,592,15,4804,169,149,18,17422,6950 +2035,21,2022,457,89391,646,17,5248,185,163,20,18356,7593 +2035,21,2023,517,101199,732,19,5941,209,185,22,20183,8596 +2035,21,2024,584,114177,826,21,6703,236,209,25,22164,9698 +2035,21,2025,663,129635,937,24,7611,268,237,28,24391,11011 +2035,21,2026,751,146955,1063,27,8627,303,268,32,26048,12482 +2035,21,2027,866,169469,1225,32,9949,350,310,37,29067,14395 +2035,21,2028,1009,197472,1428,37,11593,408,361,43,32665,16773 +2035,21,2029,1183,231369,1673,43,13583,478,423,51,36847,19653 +2035,21,2030,1406,275029,1989,51,16146,568,502,60,42019,23361 +2035,21,2031,1710,334472,2418,62,19636,691,611,73,48772,28410 +2035,21,2032,2105,411799,2977,77,24176,850,752,90,56945,34978 +2035,21,2033,2707,529491,3828,99,31085,1093,967,116,68781,44975 +2035,21,2034,3667,717306,5186,134,42112,1481,1310,157,86193,60928 +2035,21,2035,6825,1335125,9653,249,78382,2757,2439,292,141604,113406 +2035,22,2005,407,308250,2564,42,10997,407,360,44,156233,16936 +2035,22,2006,407,124927,1038,17,4456,165,146,18,59376,6864 +2035,22,2007,451,138435,1151,19,4938,183,162,20,62047,7606 +2035,22,2008,387,75651,573,16,3958,157,138,17,48498,6521 +2035,22,2009,339,66244,502,14,3466,137,121,15,39861,5710 +2035,22,2010,167,32664,247,7,1709,68,60,7,18380,2816 +2035,22,2011,231,45190,342,10,2365,94,83,10,24125,3896 +2035,22,2012,356,69720,528,15,3649,144,128,16,35450,6012 +2035,22,2013,362,70733,536,15,3702,146,130,16,34374,6100 +2035,22,2014,440,86104,652,18,4507,178,158,19,40953,7425 +2035,22,2015,482,94346,715,20,4938,195,173,21,43949,8136 +2035,22,2016,530,103669,785,22,5426,215,190,23,34343,8940 +2035,22,2017,583,113946,863,24,5964,236,209,25,36883,9826 +2035,22,2018,824,161121,1221,34,8434,334,295,36,50000,13895 +2035,22,2019,902,176347,1336,38,9230,365,323,39,53323,15208 +2035,22,2020,991,193909,1469,41,10150,401,355,43,56408,16722 +2035,22,2021,1092,213553,1618,46,11178,442,391,48,55199,18416 +2035,22,2022,1193,233304,1767,50,12212,483,427,52,58014,20119 +2035,22,2023,1350,264120,2001,56,13825,547,484,59,63691,22777 +2035,22,2024,1523,297994,2257,64,15598,617,546,67,69837,25698 +2035,22,2025,1730,338337,2563,72,17709,700,620,76,76719,29177 +2035,22,2026,1961,383540,2905,82,20075,794,702,86,82010,33075 +2035,22,2027,2261,442301,3351,94,23151,916,810,99,91315,38143 +2035,22,2028,2635,515385,3904,110,26977,1067,944,115,102362,44445 +2035,22,2029,3087,603854,4574,129,31607,1250,1106,135,115156,52075 +2035,22,2030,3670,717803,5438,153,37572,1486,1314,160,130912,61901 +2035,22,2031,4463,872945,6613,186,45692,1807,1598,195,151397,75280 +2035,22,2032,5495,1074760,8142,229,56256,2225,1968,240,175994,92684 +2035,22,2033,7065,1381928,10469,295,72334,2860,2530,309,211407,119173 +2035,22,2034,9571,1872112,14182,399,97991,3875,3428,418,262971,161445 +2035,22,2035,17814,3484567,26397,743,182391,7213,6381,779,426329,300498 +2035,23,2005,378,262974,2552,34,12182,348,308,40,108783,15488 +2035,23,2006,378,106578,1028,14,4934,141,125,16,41409,6277 +2035,23,2007,419,118102,1139,15,5467,156,138,18,43375,6956 +2035,23,2008,359,64750,571,13,4382,134,119,15,33280,5964 +2035,23,2009,314,56698,500,12,3837,117,104,13,27396,5222 +2035,23,2010,155,27935,246,6,1892,58,51,7,12652,2575 +2035,23,2011,214,38616,340,8,2618,80,71,9,16630,3563 +2035,23,2012,331,59528,524,12,4040,123,109,14,24468,5498 +2035,23,2013,336,60344,532,12,4099,125,111,14,23755,5578 +2035,23,2014,409,73458,647,15,4989,152,135,17,28321,6791 +2035,23,2015,448,80489,709,17,5467,167,148,19,30413,7441 +2035,23,2016,492,88443,779,18,6007,184,162,21,21246,8176 +2035,23,2017,541,97210,857,20,6603,202,178,23,22875,8986 +2035,23,2018,765,137457,1211,28,9336,285,252,33,31064,12707 +2035,23,2019,837,150446,1326,31,10219,312,276,36,33228,13908 +2035,23,2020,920,165428,1458,34,11236,343,304,39,35205,15293 +2035,23,2021,1014,182188,1605,37,12375,378,334,43,33092,16842 +2035,23,2022,1107,199038,1754,41,13519,413,365,47,34985,18400 +2035,23,2023,1254,225328,1986,46,15305,468,414,54,38626,20830 +2035,23,2024,1414,254226,2240,52,17268,527,467,61,42583,23501 +2035,23,2025,1606,288644,2543,59,19605,599,530,69,47079,26683 +2035,23,2026,1820,327208,2883,67,22225,679,601,78,50048,30248 +2035,23,2027,2099,377339,3325,77,25630,783,693,90,56170,34882 +2035,23,2028,2446,439687,3874,90,29864,912,807,105,63536,40646 +2035,23,2029,2866,515165,4539,106,34991,1069,946,123,72176,47623 +2035,23,2030,3407,612377,5396,126,41594,1271,1124,146,82964,56610 +2035,23,2031,4143,744732,6562,153,50584,1545,1367,177,97192,68845 +2035,23,2032,5101,916907,8080,188,62278,1902,1683,218,114729,84761 +2035,23,2033,6559,1178959,10389,242,80077,2446,2164,281,140460,108986 +2035,23,2034,8886,1597148,14074,328,108481,3314,2932,380,179177,147644 +2035,23,2035,16539,2972781,26195,610,201917,6168,5456,708,303563,274811 +2035,24,2005,744,589614,5284,91,22273,779,689,83,261014,32569 +2035,24,2006,745,238958,2137,37,9024,316,279,34,99469,13199 +2035,24,2007,825,264795,2368,41,9999,350,309,37,104241,14627 +2035,24,2008,708,144740,1178,35,8015,300,265,32,80739,12541 +2035,24,2009,620,126741,1031,31,7018,263,232,28,66540,10981 +2035,24,2010,306,62482,508,15,3461,129,115,14,30774,5415 +2035,24,2011,423,86424,703,21,4789,179,158,19,40494,7493 +2035,24,2012,652,133308,1085,32,7389,276,244,30,59649,11561 +2035,24,2013,662,135218,1100,33,7497,280,248,30,57975,11730 +2035,24,2014,806,164602,1340,40,9126,341,302,37,69152,14279 +2035,24,2015,883,180357,1468,44,9999,374,331,40,74297,15646 +2035,24,2016,970,198181,1613,48,10988,411,364,44,56481,17192 +2035,24,2017,1066,217826,1773,53,12077,452,400,48,60791,18896 +2035,24,2018,1508,308010,2507,75,17077,639,565,68,82695,26720 +2035,24,2019,1650,337116,2744,82,18690,699,618,75,88421,29245 +2035,24,2020,1814,370688,3017,90,20552,769,680,82,93844,32157 +2035,24,2021,1998,408242,3322,99,22634,847,749,91,91150,35415 +2035,24,2022,2183,446000,3630,108,24727,925,818,99,96291,38690 +2035,24,2023,2472,504910,4109,123,27993,1047,926,112,106146,43801 +2035,24,2024,2788,569665,4636,139,31583,1181,1045,127,116844,49418 +2035,24,2025,3166,646787,5264,157,35859,1341,1186,144,128952,56108 +2035,24,2026,3589,733203,5967,178,40650,1520,1345,163,138147,63605 +2035,24,2027,4139,845531,6881,206,46878,1753,1551,188,154668,73349 +2035,24,2028,4823,985242,8018,240,54624,2043,1807,219,174467,85469 +2035,24,2029,5651,1154368,9394,281,64000,2394,2118,257,197608,100141 +2035,24,2030,6717,1372200,11167,334,76077,2846,2517,305,226386,119038 +2035,24,2031,8169,1668777,13581,406,92520,3461,3061,371,264188,144766 +2035,24,2032,10057,2054585,16721,500,113910,4261,3769,457,310442,178234 +2035,24,2033,12931,2641782,21499,642,146465,5478,4846,587,377956,229173 +2035,24,2034,17518,3578854,29125,870,198418,7421,6565,796,478646,310463 +2035,24,2035,32607,6661330,54211,1620,369317,13814,12220,1481,800940,577867 +2035,25,2005,4612,3450067,40332,673,141052,4565,4038,531,1976800,205213 +2035,25,2006,4615,1398239,16259,273,57123,1850,1637,215,750853,83169 +2035,25,2007,5114,1549425,18017,302,63299,2050,1814,239,784635,92161 +2035,25,2008,4385,852084,9043,259,50761,1758,1555,205,606366,79019 +2035,25,2009,3840,746123,7918,227,44449,1539,1362,179,498018,69192 +2035,25,2010,1894,367599,3902,112,21920,759,671,88,229421,34121 +2035,25,2011,2620,508138,5395,155,30328,1050,929,122,300900,47211 +2035,25,2012,4042,783302,8318,239,46795,1620,1433,189,441827,72844 +2035,25,2013,4102,794025,8435,243,47480,1643,1453,191,428095,73911 +2035,25,2014,4993,966572,10268,295,57798,2000,1769,233,509862,89972 +2035,25,2015,5471,1059089,11251,323,63330,2191,1939,255,546986,98584 +2035,25,2016,6011,1163753,12362,355,69588,2408,2130,281,381420,108326 +2035,25,2017,6607,1279110,13588,391,76487,2647,2341,308,409816,119064 +2035,25,2018,9343,1808689,19213,552,108154,3742,3311,436,554682,168359 +2035,25,2019,10226,1979603,21029,605,118374,4096,3623,477,591879,184268 +2035,25,2020,11244,2176746,23123,665,130162,4504,3984,525,625078,202619 +2035,25,2021,12383,2397267,25466,732,143348,4960,4388,578,584744,223146 +2035,25,2022,13528,2618986,27821,800,156607,5419,4794,631,615391,243785 +2035,25,2023,15315,2964916,31496,906,177292,6135,5427,715,676808,275985 +2035,25,2024,17280,3345172,35535,1022,200030,6921,6123,806,743382,311380 +2035,25,2025,19619,3798040,40346,1160,227110,7858,6952,916,818282,353535 +2035,25,2026,22240,4305486,45737,1315,257453,8908,7881,1038,864652,400769 +2035,25,2027,25647,4965105,52744,1516,296897,10273,9088,1197,965445,462170 +2035,25,2028,29885,5785519,61459,1767,345954,11971,10590,1395,1085701,538536 +2035,25,2029,35015,6778640,72009,2070,405340,14026,12407,1634,1225641,630981 +2035,25,2030,41623,8057796,85597,2461,481829,16672,14749,1942,1398869,750048 +2035,25,2031,50619,9799349,104097,2993,585968,20276,17936,2362,1625318,912157 +2035,25,2032,62321,12064876,128164,3685,721439,24963,22083,2908,1899973,1123040 +2035,25,2033,80133,15513000,164793,4738,927625,32098,28394,3740,2298325,1444005 +2035,25,2034,108557,21015628,223246,6418,1256663,43483,38466,5066,2885929,1956210 +2035,25,2035,202057,39116440,415530,11946,2339033,80935,71597,9429,4757988,3641098 +2035,26,2005,538,412627,3363,51,17527,543,481,57,166176,22296 +2035,26,2006,539,167229,1354,21,7099,220,195,23,63219,9036 +2035,26,2007,597,185311,1501,23,7866,244,216,26,66175,10013 +2035,26,2008,512,101413,751,20,6305,209,185,22,51240,8585 +2035,26,2009,448,88802,658,17,5521,183,162,19,42171,7518 +2035,26,2010,221,43762,324,9,2723,90,80,10,19472,3707 +2035,26,2011,306,60508,448,12,3767,125,111,13,25587,5129 +2035,26,2012,472,93297,691,18,5812,193,170,20,37642,7915 +2035,26,2013,479,94598,700,19,5897,196,173,21,36538,8030 +2035,26,2014,583,115154,852,23,7179,238,211,25,43556,9775 +2035,26,2015,639,126177,934,25,7866,261,231,28,46769,10711 +2035,26,2016,702,138646,1026,27,8644,287,253,30,33724,11770 +2035,26,2017,771,152389,1128,30,9500,315,279,33,36288,12936 +2035,26,2018,1091,215482,1595,42,13434,445,394,47,49300,18292 +2035,26,2019,1194,235844,1745,46,14703,487,431,52,52697,20021 +2035,26,2020,1313,259331,1919,51,16167,536,474,57,55858,22015 +2035,26,2021,1446,285603,2113,56,17805,590,522,62,53134,24245 +2035,26,2022,1579,312018,2309,61,19452,645,570,68,56133,26487 +2035,26,2023,1788,353232,2614,69,22021,730,646,77,61885,29986 +2035,26,2024,2017,398534,2949,78,24846,824,729,87,68129,33832 +2035,26,2025,2290,452488,3348,89,28209,935,827,99,75198,38412 +2035,26,2026,2596,512942,3796,100,31978,1060,938,112,80094,43544 +2035,26,2027,2994,591528,4377,116,36878,1223,1082,129,89707,50215 +2035,26,2028,3489,689268,5101,135,42971,1425,1260,151,101234,58512 +2035,26,2029,4088,807588,5976,158,50347,1669,1477,176,114716,68556 +2035,26,2030,4859,959982,7104,188,59848,1984,1755,210,131492,81493 +2035,26,2031,5909,1167464,8639,229,72783,2413,2135,255,153544,99106 +2035,26,2032,7275,1437373,10637,281,89610,2971,2628,314,180558,122019 +2035,26,2033,9354,1848173,13677,362,115221,3820,3379,404,220024,156891 +2035,26,2034,12672,2503741,18528,490,156091,5175,4578,547,278968,212543 +2035,26,2035,23587,4660219,34486,912,290531,9632,8520,1018,467757,395606 +2035,27,2005,182,139044,1109,18,5906,181,160,20,58601,7583 +2035,27,2006,182,56352,446,7,2392,73,65,8,22279,3073 +2035,27,2007,202,62445,494,8,2650,81,72,9,23306,3405 +2035,27,2008,173,34243,248,7,2125,70,62,8,18112,2920 +2035,27,2009,152,29984,217,6,1860,61,54,7,14899,2557 +2035,27,2010,75,14772,107,3,917,30,27,3,6876,1261 +2035,27,2011,104,20420,148,4,1269,42,37,5,9031,1744 +2035,27,2012,160,31477,228,7,1959,64,57,7,13279,2692 +2035,27,2013,162,31907,231,7,1987,65,58,7,12884,2731 +2035,27,2014,197,38841,281,8,2419,79,70,9,15355,3324 +2035,27,2015,216,42559,308,9,2651,87,77,9,16484,3643 +2035,27,2016,238,46765,338,10,2913,96,85,10,11748,4003 +2035,27,2017,261,51400,372,11,3201,105,93,11,12637,4399 +2035,27,2018,369,72681,526,15,4527,149,131,16,17154,6221 +2035,27,2019,404,79549,576,17,4955,163,144,18,18331,6809 +2035,27,2020,444,87471,633,18,5448,179,158,19,19414,7487 +2035,27,2021,489,96332,697,20,6000,197,174,21,18370,8245 +2035,27,2022,535,105242,762,22,6555,215,190,23,19394,9008 +2035,27,2023,605,119143,862,25,7421,243,215,26,21374,10198 +2035,27,2024,683,134423,973,28,8373,275,243,30,23522,11506 +2035,27,2025,775,152621,1104,32,9506,312,276,34,25952,13063 +2035,27,2026,879,173012,1252,36,10776,354,313,38,27586,14809 +2035,27,2027,1014,199519,1444,42,12427,408,361,44,30884,17077 +2035,27,2028,1181,232486,1682,48,14480,475,420,51,34836,19899 +2035,27,2029,1384,272395,1971,57,16966,557,492,60,39454,23315 +2035,27,2030,1645,323796,2343,67,20168,662,585,72,45197,27715 +2035,27,2031,2001,393779,2850,82,24527,805,712,87,52741,33704 +2035,27,2032,2463,484818,3508,101,30197,991,877,107,61969,41497 +2035,27,2033,3167,623378,4511,130,38827,1274,1127,138,75439,53356 +2035,27,2034,4291,844496,6111,176,52599,1726,1527,187,95523,72283 +2035,27,2035,7987,1571864,11374,327,97904,3213,2842,348,159806,134540 +2035,28,2005,155,116325,914,14,4476,152,135,16,57494,6366 +2035,28,2006,155,47144,370,6,1814,62,55,7,21829,2580 +2035,28,2007,172,52242,410,6,2010,68,61,7,22792,2859 +2035,28,2008,148,28555,204,5,1611,59,52,6,17831,2451 +2035,28,2009,129,25004,179,5,1411,51,45,6,14642,2146 +2035,28,2010,64,12328,88,2,696,25,22,3,6744,1058 +2035,28,2011,88,17054,122,3,962,35,31,4,8845,1464 +2035,28,2012,136,26309,188,5,1485,54,48,6,12985,2260 +2035,28,2013,138,26689,191,5,1507,55,49,6,12581,2293 +2035,28,2014,168,32489,233,6,1834,67,59,7,14982,2791 +2035,28,2015,184,35599,255,7,2010,73,65,8,16072,3058 +2035,28,2016,202,39117,280,7,2208,80,71,9,12478,3360 +2035,28,2017,222,42994,308,8,2427,88,78,10,13394,3693 +2035,28,2018,314,60795,435,12,3432,125,111,13,18154,5223 +2035,28,2019,344,66540,477,13,3757,137,121,15,19348,5716 +2035,28,2020,378,73167,524,14,4131,150,133,16,20463,6285 +2035,28,2021,417,80579,577,15,4549,166,147,18,19955,6922 +2035,28,2022,455,88032,630,17,4970,181,160,19,20967,7562 +2035,28,2023,515,99659,714,19,5626,205,181,22,22995,8561 +2035,28,2024,581,112441,805,21,6348,231,204,25,25188,9659 +2035,28,2025,660,127663,914,24,7207,262,232,28,27637,10967 +2035,28,2026,748,144719,1036,28,8170,298,263,32,29481,12432 +2035,28,2027,863,166891,1195,32,9422,343,304,37,32780,14337 +2035,28,2028,1005,194468,1393,37,10979,400,354,43,36686,16706 +2035,28,2029,1178,227850,1632,43,12863,468,414,50,41199,19573 +2035,28,2030,1400,270846,1940,52,15291,557,493,60,46742,23267 +2035,28,2031,1703,329384,2359,63,18595,677,599,73,53927,28295 +2035,28,2032,2097,405534,2904,77,22894,834,738,90,62508,34837 +2035,28,2033,2696,521437,3734,99,29438,1072,948,115,74812,44794 +2035,28,2034,3652,706395,5059,135,39879,1452,1285,156,92599,60682 +2035,28,2035,6797,1314815,9416,250,74228,2703,2391,291,148768,112948 +2035,29,2005,519,386062,3062,46,15592,509,450,54,188381,20799 +2035,29,2006,519,156463,1236,18,6316,206,182,22,71475,8429 +2035,29,2007,575,173381,1369,20,6999,228,202,24,74594,9341 +2035,29,2008,493,94913,687,18,5611,196,173,21,58306,8009 +2035,29,2009,432,83110,602,15,4913,172,152,18,47852,7013 +2035,29,2010,213,40968,297,8,2423,85,75,9,22026,3458 +2035,29,2011,295,56662,410,10,3352,117,104,12,28869,4785 +2035,29,2012,455,87391,633,16,5173,181,160,19,42362,7383 +2035,29,2013,461,88635,642,16,5248,183,162,20,41020,7491 +2035,29,2014,562,107896,781,20,6389,223,197,24,48839,9119 +2035,29,2015,615,118224,856,22,7000,244,216,26,52378,9992 +2035,29,2016,676,129907,940,24,7692,268,237,29,38586,10979 +2035,29,2017,743,142784,1034,26,8455,295,261,31,41422,12068 +2035,29,2018,1051,201900,1462,37,11955,417,369,44,56075,17064 +2035,29,2019,1150,220978,1600,41,13085,457,404,49,59770,18676 +2035,29,2020,1265,242985,1759,45,14388,502,444,53,63138,20536 +2035,29,2021,1393,267601,1937,49,15845,553,489,59,60365,22617 +2035,29,2022,1521,292351,2116,54,17311,604,534,64,63431,24709 +2035,29,2023,1722,330967,2396,61,19597,684,605,73,69614,27972 +2035,29,2024,1943,373414,2703,69,22111,772,682,82,76308,31560 +2035,29,2025,2206,423967,3069,78,25104,876,775,93,83796,35832 +2035,29,2026,2501,480611,3479,89,28458,993,878,106,88939,40620 +2035,29,2027,2884,554244,4012,103,32818,1145,1013,122,99008,46843 +2035,29,2028,3361,645823,4675,119,38241,1334,1180,142,110958,54583 +2035,29,2029,3938,756685,5477,140,44805,1563,1383,167,124791,63953 +2035,29,2030,4681,899473,6511,166,53260,1858,1644,198,141821,76021 +2035,29,2031,5693,1093877,7918,202,64771,2260,1999,241,163950,92451 +2035,29,2032,7009,1346774,9749,249,79746,2783,2461,296,190501,113825 +2035,29,2033,9012,1731680,12535,320,102537,3578,3165,381,228701,146356 +2035,29,2034,12208,2345926,16982,434,138908,4847,4288,516,284262,198270 +2035,29,2035,22724,4366474,31608,808,258550,9022,7981,961,460194,369041 +2035,30,2005,42,27612,207,3,1314,35,31,4,16722,1538 +2035,30,2006,42,11190,83,1,532,14,12,2,6318,623 +2035,30,2007,46,12400,92,1,590,16,14,2,6571,691 +2035,30,2008,40,6831,47,1,473,13,12,2,5186,592 +2035,30,2009,35,5981,41,1,414,12,10,1,4241,519 +2035,30,2010,17,2946,20,1,204,6,5,1,1944,256 +2035,30,2011,24,4071,28,1,282,8,7,1,2540,354 +2035,30,2012,36,6275,43,1,436,12,11,1,3715,546 +2035,30,2013,37,6359,43,1,442,13,11,2,3585,554 +2035,30,2014,45,7741,53,1,538,15,13,2,4262,674 +2035,30,2015,49,8482,58,1,590,17,15,2,4564,739 +2035,30,2016,54,9320,64,2,648,18,16,2,3245,812 +2035,30,2017,60,10244,70,2,712,20,18,2,3475,892 +2035,30,2018,84,14485,99,3,1007,29,25,3,4689,1262 +2035,30,2019,92,15854,108,3,1103,31,28,4,4983,1381 +2035,30,2020,101,17433,119,3,1212,34,30,4,5246,1519 +2035,30,2021,112,19199,131,3,1335,38,33,5,4921,1673 +2035,30,2022,122,20975,143,4,1459,41,37,5,5151,1827 +2035,30,2023,138,23745,162,4,1651,47,41,6,5628,2069 +2035,30,2024,156,26790,183,5,1863,53,47,6,6142,2334 +2035,30,2025,177,30417,208,5,2115,60,53,7,6710,2650 +2035,30,2026,200,34481,235,6,2398,68,60,8,7044,3004 +2035,30,2027,231,39764,271,7,2765,78,69,9,7794,3464 +2035,30,2028,269,46334,316,8,3222,91,81,11,8673,4037 +2035,30,2029,316,54288,371,9,3776,107,95,13,9679,4730 +2035,30,2030,375,64532,441,11,4488,127,112,15,10901,5622 +2035,30,2031,456,78479,536,14,5458,155,137,19,12468,6837 +2035,30,2032,562,96623,660,17,6720,190,168,23,14298,8418 +2035,30,2033,722,124238,848,21,8640,245,217,29,16880,10824 +2035,30,2034,978,168307,1149,29,11705,332,293,40,20499,14663 +2035,30,2035,1821,313270,2139,54,21787,617,546,74,31772,27292 +2035,31,2005,248,194412,1737,29,8124,258,228,27,104053,10547 +2035,31,2006,248,78791,699,12,3290,104,92,11,39488,4275 +2035,31,2007,275,87311,775,13,3646,116,102,12,41231,4737 +2035,31,2008,236,47858,389,11,2923,99,88,11,32204,4061 +2035,31,2009,207,41906,341,10,2560,87,77,9,26444,3556 +2035,31,2010,102,20651,168,5,1262,43,38,5,12178,1754 +2035,31,2011,141,28552,232,7,1746,59,52,6,15969,2426 +2035,31,2012,218,44022,358,10,2695,91,81,10,23443,3744 +2035,31,2013,221,44634,362,10,2734,93,82,10,22709,3799 +2035,31,2014,269,54333,441,13,3328,113,100,12,27044,4624 +2035,31,2015,294,59534,483,14,3647,124,109,13,29010,5067 +2035,31,2016,323,65417,531,15,4007,136,120,14,21837,5568 +2035,31,2017,356,71902,584,17,4404,149,132,16,23443,6120 +2035,31,2018,503,101670,826,24,6228,211,187,22,31810,8653 +2035,31,2019,550,111278,904,26,6816,231,205,25,33907,9471 +2035,31,2020,605,122360,994,28,7495,254,225,27,35896,10414 +2035,31,2021,666,134755,1094,31,8255,280,248,30,34585,11469 +2035,31,2022,728,147219,1195,34,9018,306,271,32,36407,12530 +2035,31,2023,824,166664,1353,39,10209,346,306,37,39947,14185 +2035,31,2024,930,188039,1527,44,11519,391,346,41,43778,16004 +2035,31,2025,1056,213496,1734,50,13078,444,392,47,48060,18171 +2035,31,2026,1197,242020,1965,56,14825,503,445,53,51111,20598 +2035,31,2027,1380,279099,2266,65,17097,580,513,62,56873,23754 +2035,31,2028,1608,325216,2641,76,19922,676,598,72,63707,27679 +2035,31,2029,1884,381042,3094,89,23341,792,700,84,71612,32430 +2035,31,2030,2240,452946,3678,105,27746,941,833,100,81336,38550 +2035,31,2031,2724,550842,4473,128,33743,1145,1013,121,93960,46882 +2035,31,2032,3354,678192,5507,158,41544,1409,1247,149,109083,57721 +2035,31,2033,4312,872018,7081,203,53417,1812,1603,192,130815,74217 +2035,31,2034,5842,1181334,9592,275,72364,2455,2171,260,162356,100543 +2035,31,2035,10873,2198818,17854,512,134691,4569,4042,485,262137,187141 +2035,32,2005,127,99776,932,11,4487,131,116,13,38059,5210 +2035,32,2006,127,40437,376,4,1818,53,47,5,14519,2111 +2035,32,2007,141,44809,417,5,2015,59,52,6,15235,2340 +2035,32,2008,121,24456,208,4,1614,50,44,5,11666,2006 +2035,32,2009,106,21415,182,4,1413,44,39,5,9621,1757 +2035,32,2010,52,10557,90,2,697,22,19,2,4453,866 +2035,32,2011,72,14603,124,3,964,30,27,3,5864,1198 +2035,32,2012,111,22526,191,4,1488,46,41,5,8643,1849 +2035,32,2013,113,22849,194,4,1510,47,42,5,8406,1876 +2035,32,2014,137,27814,236,5,1838,57,51,6,10030,2284 +2035,32,2015,151,30476,259,5,2014,63,55,6,10780,2503 +2035,32,2016,165,33488,284,6,2213,69,61,7,8723,2750 +2035,32,2017,182,36808,313,6,2432,76,67,8,9387,3023 +2035,32,2018,257,52047,442,9,3439,107,95,11,12805,4274 +2035,32,2019,282,56965,484,10,3764,117,104,12,13690,4678 +2035,32,2020,310,62638,532,11,4139,129,114,13,14567,5144 +2035,32,2021,341,68984,586,12,4558,142,126,15,14463,5665 +2035,32,2022,372,75364,640,13,4980,155,137,16,15298,6189 +2035,32,2023,422,85318,725,15,5638,176,155,18,16850,7006 +2035,32,2024,476,96260,818,17,6361,198,175,20,18535,7905 +2035,32,2025,540,109292,928,19,7222,225,199,23,20438,8975 +2035,32,2026,612,123894,1052,21,8187,255,226,26,22018,10174 +2035,32,2027,706,142875,1214,25,9441,294,260,30,24621,11733 +2035,32,2028,823,166483,1414,29,11001,343,303,35,27736,13671 +2035,32,2029,964,195062,1657,34,12889,401,355,41,31368,16018 +2035,32,2030,1146,231871,1970,40,15321,477,422,49,35877,19041 +2035,32,2031,1394,281986,2396,48,18633,580,513,60,41787,23156 +2035,32,2032,1716,347178,2949,60,22941,714,632,73,48991,28509 +2035,32,2033,2206,446400,3792,77,29497,919,813,94,59478,36657 +2035,32,2034,2989,604744,5137,104,39960,1244,1101,128,75044,49660 +2035,32,2035,5563,1125612,9562,194,74378,2316,2049,238,124771,92432 +2035,33,2005,887,659469,5329,84,28705,866,766,94,291841,35921 +2035,33,2006,887,267269,2141,34,11625,351,310,38,110825,14558 +2035,33,2007,983,296167,2373,38,12882,389,344,42,115817,16132 +2035,33,2008,843,162406,1193,32,10327,333,295,36,90124,13832 +2035,33,2009,738,142210,1045,28,9042,292,258,32,74058,12112 +2035,33,2010,364,70064,514,14,4459,144,127,16,34134,5973 +2035,33,2011,504,96850,711,19,6170,199,176,22,44788,8264 +2035,33,2012,777,149295,1095,30,9520,307,272,33,65792,12751 +2035,33,2013,788,151338,1110,30,9659,311,276,34,63774,12938 +2035,33,2014,960,184225,1351,37,11758,379,335,41,75971,15749 +2035,33,2015,1052,201858,1481,41,12883,415,368,45,81521,17256 +2035,33,2016,1155,221807,1627,45,14157,456,404,50,57352,18962 +2035,33,2017,1270,243793,1788,49,15560,502,444,55,61654,20841 +2035,33,2018,1796,344729,2529,69,22002,709,628,77,83614,29470 +2035,33,2019,1966,377305,2768,76,24081,777,687,84,89276,32255 +2035,33,2020,2161,414880,3043,83,26479,854,755,93,94465,35467 +2035,33,2021,2380,456910,3352,92,29162,940,832,102,88805,39060 +2035,33,2022,2600,499169,3662,100,31859,1027,909,112,93667,42673 +2035,33,2023,2944,565101,4145,114,36067,1163,1029,126,103114,48309 +2035,33,2024,3321,637577,4677,128,40693,1312,1161,143,113361,54505 +2035,33,2025,3771,723893,5310,145,46202,1490,1318,162,124918,61884 +2035,33,2026,4275,820609,6019,165,52375,1689,1494,184,132372,70152 +2035,33,2027,4930,946330,6942,190,60399,1948,1723,212,147993,80899 +2035,33,2028,5744,1102697,8089,221,70379,2269,2008,247,166670,94267 +2035,33,2029,6730,1291984,9477,260,82460,2659,2352,289,188451,110449 +2035,33,2030,8000,1535785,11265,308,98021,3161,2796,344,215473,131290 +2035,33,2031,9730,1867717,13700,375,119206,3844,3400,418,250881,159666 +2035,33,2032,11979,2299519,16868,462,146765,4733,4187,514,294011,196580 +2035,33,2033,15403,2956719,21688,594,188711,6085,5383,661,356760,252762 +2035,33,2034,20866,4005498,29381,805,255649,8244,7292,896,449824,342420 +2035,33,2035,38838,7455451,54688,1498,475839,15344,13573,1668,747002,637347 +2035,34,2005,1471,1096593,12748,215,44023,1450,1283,169,669029,65258 +2035,34,2006,1472,444426,5148,87,17831,588,520,69,253962,26448 +2035,34,2007,1631,492480,5704,97,19759,651,576,76,265171,29307 +2035,34,2008,1398,270854,2864,83,15846,558,494,65,205601,25128 +2035,34,2009,1225,237172,2508,73,13876,489,433,57,168741,22003 +2035,34,2010,604,116875,1236,36,6843,241,213,28,77671,10851 +2035,34,2011,836,161594,1710,50,9468,334,295,39,101803,15013 +2035,34,2012,1289,249154,2637,76,14608,515,455,60,149386,23165 +2035,34,2013,1308,252621,2674,78,14822,522,462,61,144653,23504 +2035,34,2014,1592,307517,3255,94,18043,636,562,74,172226,28611 +2035,34,2015,1745,336952,3567,103,19770,696,616,81,184707,31350 +2035,34,2016,1917,370251,3919,114,21724,765,677,89,128640,34448 +2035,34,2017,2107,406952,4308,125,23877,841,744,98,138140,37862 +2035,34,2018,2980,575439,6092,177,33763,1189,1052,139,186630,53538 +2035,34,2019,3261,629815,6667,193,36953,1302,1151,152,199014,58598 +2035,34,2020,3586,692537,7331,213,40633,1431,1266,167,209811,64433 +2035,34,2021,3949,762696,8074,234,44750,1576,1394,184,196042,70961 +2035,34,2022,4315,833237,8821,256,48888,1722,1523,201,205870,77524 +2035,34,2023,4884,943295,9986,290,55346,1949,1725,227,226194,87764 +2035,34,2024,5511,1064274,11266,327,62444,2199,1946,257,248211,99019 +2035,34,2025,6257,1208355,12791,371,70898,2497,2209,291,272916,112425 +2035,34,2026,7093,1369799,14501,421,80370,2831,2504,330,287949,127445 +2035,34,2027,8180,1579660,16722,485,92683,3265,2888,381,321096,146970 +2035,34,2028,9531,1840675,19485,565,107998,3804,3365,444,360554,171255 +2035,34,2029,11167,2156643,22830,662,126536,4457,3943,520,406367,200652 +2035,34,2030,13274,2563607,27138,787,150414,5298,4687,618,462947,238516 +2035,34,2031,16143,3117683,33003,957,182923,6443,5700,752,536724,290067 +2035,34,2032,19876,3838466,40634,1178,225214,7933,7017,925,625799,357128 +2035,34,2033,25556,4935494,52247,1515,289580,10200,9023,1190,754558,459195 +2035,34,2034,34621,6686171,70779,2053,392297,13818,12223,1612,943379,622077 +2035,34,2035,64441,12444998,131741,3820,730184,25719,22752,3000,1543432,1157872 +2035,35,2005,159,112083,841,12,5062,148,131,16,79887,6000 +2035,35,2006,159,45425,340,5,2051,60,53,7,30176,2432 +2035,35,2007,176,50336,376,6,2273,67,59,7,31350,2694 +2035,35,2008,151,27603,190,5,1822,57,50,6,24839,2310 +2035,35,2009,132,24171,167,4,1596,50,44,5,20299,2023 +2035,35,2010,65,11916,82,2,787,25,22,3,9298,998 +2035,35,2011,90,16481,114,3,1089,34,30,4,12138,1380 +2035,35,2012,139,25422,175,4,1680,53,47,6,17740,2130 +2035,35,2013,141,25785,178,4,1704,53,47,6,17111,2161 +2035,35,2014,172,31389,216,5,2075,65,57,7,20333,2630 +2035,35,2015,188,34393,237,6,2273,71,63,8,21765,2882 +2035,35,2016,207,37792,260,7,2498,78,69,8,17005,3167 +2035,35,2017,227,41538,286,7,2746,86,76,9,18185,3481 +2035,35,2018,321,58736,405,10,3882,122,108,13,24551,4922 +2035,35,2019,352,64286,443,11,4249,133,118,14,26048,5387 +2035,35,2020,387,70688,487,12,4672,146,129,16,27440,5924 +2035,35,2021,426,77849,537,13,5146,161,143,18,26663,6524 +2035,35,2022,465,85049,586,15,5621,176,156,19,27844,7127 +2035,35,2023,527,96283,664,17,6364,199,176,22,30321,8069 +2035,35,2024,594,108631,749,19,7180,225,199,24,32986,9104 +2035,35,2025,675,123338,850,21,8152,255,226,28,35896,10336 +2035,35,2026,765,139817,964,24,9241,289,256,31,37949,11717 +2035,35,2027,882,161237,1111,28,10657,334,295,36,41777,13512 +2035,35,2028,1028,187880,1295,32,12418,389,344,42,46218,15745 +2035,35,2029,1204,220130,1517,38,14550,456,403,50,51242,18448 +2035,35,2030,1431,261670,1804,45,17295,542,479,59,57272,21929 +2035,35,2031,1741,318225,2193,55,21034,659,583,72,64893,26668 +2035,35,2032,2143,391796,2700,68,25896,811,717,88,73558,32834 +2035,35,2033,2756,503771,3472,87,33298,1043,923,113,85512,42218 +2035,35,2034,3733,682464,4704,118,45109,1413,1250,153,101574,57193 +2035,35,2035,6949,1270274,8755,219,83961,2630,2326,286,150596,106453 +2035,36,2005,405,302941,2691,48,12814,406,359,44,212916,16579 +2035,36,2006,406,122776,1078,19,5187,164,145,18,80466,6719 +2035,36,2007,450,136051,1194,21,5748,182,161,20,83692,7446 +2035,36,2008,386,75141,612,18,4613,156,138,17,66023,6384 +2035,36,2009,338,65797,536,16,4039,137,121,15,54009,5590 +2035,36,2010,166,32404,264,8,1992,67,60,7,24766,2757 +2035,36,2011,230,44774,364,11,2756,93,82,10,32356,3814 +2035,36,2012,355,68991,561,17,4252,144,127,16,47331,5885 +2035,36,2013,361,69907,569,17,4315,146,129,16,45690,5971 +2035,36,2014,439,85098,692,21,5252,178,157,19,54318,7269 +2035,36,2015,481,93243,758,23,5755,195,172,21,58169,7965 +2035,36,2016,529,102458,833,25,6324,214,189,23,38953,8752 +2035,36,2017,581,112614,916,28,6950,235,208,25,41735,9619 +2035,36,2018,821,159239,1295,39,9828,332,294,36,56210,13602 +2035,36,2019,899,174286,1417,43,10757,364,322,39,59775,14887 +2035,36,2020,989,191643,1559,47,11828,400,354,43,62820,16370 +2035,36,2021,1089,211058,1717,52,13026,440,390,48,57433,18028 +2035,36,2022,1189,230578,1875,57,14231,481,426,52,60107,19696 +2035,36,2023,1346,261034,2123,64,16111,545,482,59,65774,22297 +2035,36,2024,1519,294512,2395,72,18177,615,544,66,71896,25157 +2035,36,2025,1725,334384,2720,82,20638,698,617,75,78685,28563 +2035,36,2026,1955,379059,3083,93,23395,791,700,85,82079,32379 +2035,36,2027,2255,437133,3555,107,26980,912,807,99,91037,37339 +2035,36,2028,2627,509363,4143,125,31438,1063,940,115,101594,43509 +2035,36,2029,3078,596800,4854,147,36834,1245,1102,135,113731,50978 +2035,36,2030,3659,709418,5770,174,43785,1480,1309,160,128563,60598 +2035,36,2031,4450,862745,7017,212,53248,1800,1592,194,147682,73695 +2035,36,2032,5479,1062204,8639,261,65559,2216,1961,239,170278,90732 +2035,36,2033,7045,1365781,11108,336,84295,2850,2521,308,202423,116663 +2035,36,2034,9544,1850239,15048,455,114195,3861,3415,417,248227,158045 +2035,36,2035,17764,3443855,28009,846,212553,7186,6357,776,391950,294170 +2035,37,2005,63,46934,364,6,1843,62,54,7,23715,2563 +2035,37,2006,64,19021,147,2,747,25,22,3,8997,1039 +2035,37,2007,70,21078,163,3,827,28,24,3,9387,1151 +2035,37,2008,60,11533,82,2,663,24,21,3,7353,987 +2035,37,2009,53,10099,71,2,581,21,18,2,6034,864 +2035,37,2010,26,4979,35,1,286,10,9,1,2777,426 +2035,37,2011,36,6887,49,1,396,14,13,2,3639,590 +2035,37,2012,56,10624,75,2,611,22,19,2,5339,910 +2035,37,2013,56,10777,76,2,620,22,20,2,5169,923 +2035,37,2014,69,13119,93,2,755,27,24,3,6153,1124 +2035,37,2015,75,14374,102,3,827,30,26,3,6599,1231 +2035,37,2016,83,15795,112,3,909,32,29,4,4956,1353 +2035,37,2017,91,17361,123,3,999,36,32,4,5319,1487 +2035,37,2018,129,24548,174,5,1413,50,45,5,7198,2103 +2035,37,2019,141,26868,190,5,1547,55,49,6,7670,2301 +2035,37,2020,155,29544,209,6,1701,61,54,7,8100,2530 +2035,37,2021,170,32537,230,6,1873,67,59,7,7799,2787 +2035,37,2022,186,35546,252,7,2046,73,65,8,8188,3045 +2035,37,2023,211,40241,285,8,2316,83,73,9,8979,3447 +2035,37,2024,238,45402,321,9,2614,93,83,10,9834,3889 +2035,37,2025,270,51549,365,10,2967,106,94,11,10788,4415 +2035,37,2026,306,58436,414,11,3364,120,106,13,11463,5005 +2035,37,2027,353,67389,477,13,3879,139,123,15,12746,5772 +2035,37,2028,411,78523,556,15,4520,161,143,17,14264,6726 +2035,37,2029,482,92003,651,17,5296,189,167,20,16017,7880 +2035,37,2030,573,109364,774,21,6296,225,199,24,18171,9367 +2035,37,2031,697,133001,941,25,7656,273,242,30,20962,11392 +2035,37,2032,858,163749,1159,31,9426,337,298,36,24296,14025 +2035,37,2033,1103,210549,1490,40,12120,433,383,47,29074,18034 +2035,37,2034,1495,285233,2019,54,16420,587,519,63,35980,24431 +2035,37,2035,2782,530904,3758,100,30562,1092,966,118,57785,45473 +2035,38,2005,42,31618,245,4,1444,41,36,4,16379,1712 +2035,38,2006,42,12814,98,2,585,17,15,2,6202,694 +2035,38,2007,46,14200,109,2,648,18,16,2,6464,769 +2035,38,2008,40,7827,55,2,519,16,14,2,5074,659 +2035,38,2009,35,6853,48,1,455,14,12,1,4159,577 +2035,38,2010,17,3374,24,1,224,7,6,1,1912,285 +2035,38,2011,24,4659,33,1,310,9,8,1,2502,394 +2035,38,2012,37,7176,50,1,479,15,13,2,3667,608 +2035,38,2013,37,7268,51,1,486,15,13,2,3547,617 +2035,38,2014,45,8847,62,2,591,18,16,2,4220,750 +2035,38,2015,49,9694,68,2,648,20,17,2,4524,822 +2035,38,2016,54,10652,75,2,712,22,19,2,3100,904 +2035,38,2017,60,11708,82,2,783,24,21,3,3327,993 +2035,38,2018,85,16555,116,3,1107,34,30,4,4498,1404 +2035,38,2019,93,18120,127,4,1211,37,33,4,4792,1537 +2035,38,2020,102,19924,140,4,1332,40,36,4,5055,1690 +2035,38,2021,112,21943,154,4,1467,45,39,5,4684,1861 +2035,38,2022,122,23972,169,5,1603,49,43,5,4924,2033 +2035,38,2023,139,27138,191,6,1814,55,49,6,5404,2302 +2035,38,2024,156,30619,215,6,2047,62,55,7,5924,2597 +2035,38,2025,177,34764,244,7,2324,71,62,8,6506,2949 +2035,38,2026,201,39409,277,8,2635,80,71,9,6841,3343 +2035,38,2027,232,45446,320,9,3038,92,82,10,7618,3855 +2035,38,2028,270,52956,372,11,3540,108,95,12,8542,4492 +2035,38,2029,317,62046,436,13,4148,126,111,14,9612,5263 +2035,38,2030,377,73754,519,15,4931,150,132,16,10930,6256 +2035,38,2031,458,89695,631,18,5996,182,161,20,12644,7609 +2035,38,2032,564,110432,777,23,7383,224,198,24,14704,9368 +2035,38,2033,725,141993,998,29,9493,288,255,31,17671,12045 +2035,38,2034,982,192360,1353,39,12860,391,346,42,21996,16317 +2035,38,2035,1828,358040,2518,73,23936,727,643,78,35703,30371 +2035,39,2005,657,492391,3993,61,20254,650,575,70,213892,26560 +2035,39,2006,657,199556,1610,25,8204,263,233,28,81294,10764 +2035,39,2007,728,221133,1784,28,9091,292,258,31,85000,11928 +2035,39,2008,624,121031,894,24,7287,250,221,27,66061,10227 +2035,39,2009,547,105981,782,21,6381,219,194,23,54313,8955 +2035,39,2010,270,52233,386,10,3147,108,96,12,25050,4416 +2035,39,2011,373,72228,533,14,4354,149,132,16,32886,6110 +2035,39,2012,576,111381,822,22,6718,230,204,25,48334,9428 +2035,39,2013,584,112946,833,22,6816,234,207,25,46875,9566 +2035,39,2014,711,137490,1014,27,8297,285,252,30,55854,11645 +2035,39,2015,779,150650,1111,29,9092,312,276,33,59948,12759 +2035,39,2016,856,165538,1221,32,9990,343,303,37,43501,14020 +2035,39,2017,941,181947,1342,36,10980,377,333,40,46768,15410 +2035,39,2018,1330,257277,1898,50,15526,533,471,57,63458,21790 +2035,39,2019,1456,281589,2077,55,16993,583,516,62,67761,23849 +2035,39,2020,1601,309632,2284,61,18686,641,567,69,71738,26224 +2035,39,2021,1763,341000,2516,67,20579,706,625,76,68324,28881 +2035,39,2022,1926,372538,2748,73,22482,771,682,83,72045,31552 +2035,39,2023,2181,421745,3111,82,25452,873,772,93,79298,35720 +2035,39,2024,2461,475834,3510,93,28716,985,871,105,87164,40301 +2035,39,2025,2794,540252,3986,106,32603,1118,989,120,96032,45757 +2035,39,2026,3167,612434,4518,120,36959,1268,1122,136,102138,51870 +2035,39,2027,3652,706263,5210,138,42622,1462,1293,157,114149,59817 +2035,39,2028,4255,822962,6071,161,49664,1704,1507,182,128502,69700 +2035,39,2029,4986,964230,7114,189,58190,1996,1766,214,145230,81665 +2035,39,2030,5927,1146182,8456,224,69170,2373,2099,254,165970,97076 +2035,39,2031,7208,1393909,10284,273,84120,2886,2553,309,193129,118057 +2035,39,2032,8874,1716171,12661,336,103568,3553,3143,380,226171,145350 +2035,39,2033,11410,2206650,16280,432,133168,4568,4041,489,274202,186891 +2035,39,2034,15458,2989371,22054,585,180404,6189,5475,663,345330,253184 +2035,39,2035,28772,5564120,41049,1088,335786,11519,10190,1234,572316,471252 +2035,40,2005,560,438698,3807,61,16596,580,513,61,206686,23853 +2035,40,2006,561,177795,1539,25,6724,235,208,25,78632,9667 +2035,40,2007,621,197019,1706,27,7451,261,230,27,82264,10712 +2035,40,2008,533,107680,850,23,5973,223,198,24,63985,9185 +2035,40,2009,467,94290,745,20,5230,196,173,21,52644,8043 +2035,40,2010,230,46487,367,10,2579,96,85,10,24301,3966 +2035,40,2011,318,64305,508,14,3568,133,118,14,31927,5488 +2035,40,2012,491,99196,783,22,5506,206,182,22,46958,8467 +2035,40,2013,498,100624,795,22,5586,209,185,22,45573,8591 +2035,40,2014,607,122491,967,27,6800,254,225,27,54319,10458 +2035,40,2015,665,134215,1060,29,7451,279,246,29,58319,11459 +2035,40,2016,730,147479,1165,32,8188,306,271,32,44957,12591 +2035,40,2017,803,162098,1280,35,8999,337,298,35,48325,13839 +2035,40,2018,1135,229210,1810,50,12725,476,421,50,65618,19569 +2035,40,2019,1243,250869,1981,54,13928,521,461,55,70052,21419 +2035,40,2020,1366,275853,2179,60,15315,573,507,60,74219,23552 +2035,40,2021,1505,303798,2399,66,16866,631,558,67,72340,25938 +2035,40,2022,1644,331897,2621,72,18426,689,610,73,76210,28336 +2035,40,2023,1861,375735,2967,82,20860,780,690,82,83807,32079 +2035,40,2024,2100,423923,3348,92,23535,880,779,93,92040,36194 +2035,40,2025,2384,481314,3801,105,26722,999,884,105,101300,41093 +2035,40,2026,2702,545621,4309,119,30292,1133,1002,119,108356,46584 +2035,40,2027,3117,629213,4969,137,34933,1306,1156,138,120923,53721 +2035,40,2028,3631,733180,5790,159,40705,1522,1347,160,135903,62597 +2035,40,2029,4255,859037,6784,187,47692,1783,1578,188,153319,73342 +2035,40,2030,5058,1021139,8065,222,56692,2120,1875,224,174858,87182 +2035,40,2031,6151,1241841,9808,270,68945,2578,2281,272,202985,106025 +2035,40,2032,7573,1528945,12075,332,84884,3174,2808,335,237039,130537 +2035,40,2033,9737,1965915,15526,427,109144,4081,3610,430,286362,167845 +2035,40,2034,13191,2663246,21034,578,147858,5529,4891,583,358949,227381 +2035,40,2035,24553,4957105,39150,1077,275209,10291,9104,1085,589974,423225 +2035,41,2005,751,566313,5063,85,26078,714,632,83,269584,32186 +2035,41,2006,751,229515,2034,35,10561,289,256,33,102446,13044 +2035,41,2007,832,254331,2254,38,11703,321,284,37,107141,14455 +2035,41,2008,714,139559,1130,33,9381,275,243,32,83281,12394 +2035,41,2009,625,122204,990,29,8214,241,213,28,68489,10852 +2035,41,2010,308,60207,487,14,4051,119,105,14,31596,5352 +2035,41,2011,426,83224,674,20,5605,164,145,19,41490,7405 +2035,41,2012,658,128290,1038,30,8648,253,224,29,60994,11425 +2035,41,2013,668,130045,1053,31,8774,257,227,30,59165,11592 +2035,41,2014,813,158304,1281,37,10681,313,277,36,70506,14112 +2035,41,2015,890,173457,1404,41,11703,343,303,40,75682,15462 +2035,41,2016,978,190598,1543,45,12860,377,333,44,55612,16990 +2035,41,2017,1075,209491,1696,50,14135,414,366,48,59786,18674 +2035,41,2018,1521,296225,2397,70,19987,585,518,68,81237,26406 +2035,41,2019,1664,324218,2624,77,21875,641,567,74,86740,28901 +2035,41,2020,1830,356506,2885,84,24054,705,623,82,91952,31780 +2035,41,2021,2016,392622,3178,93,26491,776,686,90,87957,34999 +2035,41,2022,2202,428935,3472,101,28941,848,750,98,92843,38236 +2035,41,2023,2493,485592,3930,115,32764,960,849,111,102157,43287 +2035,41,2024,2813,547869,4434,130,36966,1083,958,125,112256,48838 +2035,41,2025,3193,622040,5034,147,41970,1229,1088,142,123633,55450 +2035,41,2026,3620,705148,5707,167,47577,1394,1233,161,131608,62858 +2035,41,2027,4175,813181,6581,192,54867,1607,1422,186,147013,72489 +2035,41,2028,4864,947546,7669,224,63932,1873,1657,217,165406,84466 +2035,41,2029,5699,1110201,8985,263,74907,2194,1941,254,186825,98965 +2035,41,2030,6775,1319697,10681,312,89042,2608,2307,302,213360,117640 +2035,41,2031,8239,1604927,12989,380,108287,3172,2806,367,248074,143066 +2035,41,2032,10144,1975973,15992,467,133322,3906,3455,452,290241,176142 +2035,41,2033,13043,2540706,20563,601,171425,5022,4442,581,351463,226483 +2035,41,2034,17670,3441925,27857,814,232231,6803,6018,788,441938,306819 +2035,41,2035,32888,6406462,51850,1515,432253,12663,11202,1466,730415,571083 +2035,42,2005,347,270344,2332,40,10999,356,315,38,127709,14859 +2035,42,2006,347,109565,941,16,4455,144,128,15,48548,6022 +2035,42,2007,385,121411,1042,18,4937,160,141,17,50768,6673 +2035,42,2008,330,66499,522,15,3958,137,121,15,39506,5722 +2035,42,2009,289,58230,457,13,3465,120,106,13,32488,5010 +2035,42,2010,143,28699,225,7,1709,59,52,6,14988,2471 +2035,42,2011,197,39684,311,9,2364,82,72,9,19681,3418 +2035,42,2012,304,61196,480,14,3648,126,112,14,28933,5275 +2035,42,2013,309,62055,487,14,3702,128,113,14,28066,5352 +2035,42,2014,376,75540,592,17,4506,156,138,17,33445,6515 +2035,42,2015,412,82771,649,19,4937,171,151,18,35900,7138 +2035,42,2016,452,90951,713,21,5425,188,166,20,26232,7844 +2035,42,2017,497,99966,784,23,5963,206,183,22,28202,8621 +2035,42,2018,703,141354,1108,33,8432,292,258,31,38277,12191 +2035,42,2019,770,154712,1213,36,9229,319,283,34,40874,13343 +2035,42,2020,846,170119,1334,39,10148,351,311,38,43284,14671 +2035,42,2021,932,187353,1469,43,11176,387,342,42,41332,16158 +2035,42,2022,1018,204681,1605,47,12210,423,374,45,43586,17652 +2035,42,2023,1153,231717,1817,53,13822,478,423,51,47971,19984 +2035,42,2024,1301,261435,2050,60,15595,540,478,58,52726,22547 +2035,42,2025,1477,296828,2327,68,17706,613,542,66,58087,25599 +2035,42,2026,1674,336486,2638,78,20072,695,615,75,61819,29019 +2035,42,2027,1930,388038,3042,89,23147,801,709,86,69080,33465 +2035,42,2028,2249,452154,3545,104,26972,934,826,100,77755,38995 +2035,42,2029,2636,529770,4153,122,31602,1094,968,117,87863,45689 +2035,42,2030,3133,629740,4937,145,37565,1300,1150,140,100393,54310 +2035,42,2031,3810,765847,6004,177,45684,1581,1399,170,116797,66048 +2035,42,2032,4691,942904,7392,217,56246,1947,1722,209,136747,81318 +2035,42,2033,6032,1212386,9505,280,72321,2504,2215,269,165737,104559 +2035,42,2034,8171,1642431,12877,379,97974,3392,3000,364,208646,141647 +2035,42,2035,15209,3057064,23967,705,182359,6313,5584,677,345547,263648 +2035,44,2005,466,354552,4222,68,14202,473,418,54,154823,21220 +2035,44,2006,467,143692,1705,28,5753,192,170,22,59111,8600 +2035,44,2007,517,159229,1889,31,6375,212,188,24,62076,9530 +2035,44,2008,443,87206,940,26,5109,182,161,21,47146,8171 +2035,44,2009,388,76361,823,23,4474,159,141,18,38902,7155 +2035,44,2010,191,37633,406,11,2206,79,70,9,18015,3528 +2035,44,2011,265,52037,561,16,3053,109,96,13,23731,4882 +2035,44,2012,409,80240,865,24,4710,168,148,19,34993,7532 +2035,44,2013,415,81363,878,25,4779,170,151,20,34045,7643 +2035,44,2014,505,99044,1068,30,5818,207,183,24,40630,9303 +2035,44,2015,553,108524,1171,33,6375,227,201,26,43674,10194 +2035,44,2016,608,119249,1286,36,7005,250,221,29,31532,11201 +2035,44,2017,668,131069,1414,40,7699,274,243,32,33985,12311 +2035,44,2018,945,185335,1999,56,10886,388,343,45,46247,17409 +2035,44,2019,1034,202848,2188,61,11915,424,375,49,49530,19054 +2035,44,2020,1137,223050,2406,67,13102,467,413,54,52584,20951 +2035,44,2021,1252,245646,2650,74,14429,514,455,59,50155,23074 +2035,44,2022,1368,268366,2895,81,15764,562,497,65,53105,25208 +2035,44,2023,1549,303813,3277,92,17846,636,562,73,58711,28537 +2035,44,2024,1747,342777,3697,103,20134,717,634,83,64806,32197 +2035,44,2025,1984,389183,4198,117,22860,814,720,94,71755,36556 +2035,44,2026,2249,441180,4759,133,25914,923,817,106,76694,41441 +2035,44,2027,2594,508770,5488,153,29885,1065,942,123,86204,47789 +2035,44,2028,3022,592837,6394,179,34823,1240,1097,143,97671,55686 +2035,44,2029,3541,694603,7492,210,40800,1453,1286,167,111153,65245 +2035,44,2030,4209,825676,8906,249,48499,1728,1528,199,128022,77557 +2035,44,2031,5119,1004131,10831,303,58982,2101,1859,242,150324,94319 +2035,44,2032,6303,1236278,13335,373,72618,2587,2288,298,177927,116125 +2035,44,2033,8104,1589605,17146,480,93372,3326,2942,383,218547,149313 +2035,44,2034,10978,2153457,23227,650,126492,4506,3986,519,279968,202276 +2035,44,2035,20434,4008232,43233,1209,235440,8387,7419,966,477708,376498 +2035,45,2005,906,718563,6534,116,25977,952,842,102,368576,39753 +2035,45,2006,906,291218,2645,47,10525,386,341,41,140230,16111 +2035,45,2007,1004,322707,2930,52,11664,428,378,46,146707,17853 +2035,45,2008,861,176449,1459,45,9350,367,324,39,114329,15307 +2035,45,2009,754,154507,1277,39,8187,321,284,34,94075,13404 +2035,45,2010,372,76178,630,19,4037,158,140,17,43431,6610 +2035,45,2011,514,105379,871,27,5586,219,194,24,57067,9145 +2035,45,2012,794,162563,1344,41,8619,338,299,36,83943,14111 +2035,45,2013,805,164910,1363,42,8745,343,303,37,81475,14318 +2035,45,2014,980,200746,1660,51,10646,417,369,45,97116,17429 +2035,45,2015,1074,219961,1819,56,11665,457,405,49,104272,19097 +2035,45,2016,1180,241699,1998,61,12818,503,445,54,80949,20985 +2035,45,2017,1297,265657,2196,67,14088,552,489,59,87007,23065 +2035,45,2018,1834,375644,3106,95,19921,781,691,84,118156,32614 +2035,45,2019,2008,411141,3399,104,21804,855,756,92,126130,35696 +2035,45,2020,2208,452086,3738,114,23975,940,832,101,133648,39251 +2035,45,2021,2431,497885,4116,126,26404,1035,916,111,130568,43227 +2035,45,2022,2656,543934,4497,138,28846,1131,1001,121,137536,47225 +2035,45,2023,3007,615780,5091,156,32656,1280,1133,137,151211,53463 +2035,45,2024,3393,694755,5744,176,36844,1445,1278,155,166030,60319 +2035,45,2025,3852,788810,6521,199,41832,1640,1451,176,182688,68485 +2035,45,2026,4366,894201,7393,226,47421,1859,1645,200,195485,77635 +2035,45,2027,5035,1031197,8525,261,54686,2144,1897,230,218084,89530 +2035,45,2028,5867,1201586,9934,304,63722,2499,2210,268,245007,104323 +2035,45,2029,6875,1407849,11639,356,74661,2927,2590,314,276290,122231 +2035,45,2030,8172,1673514,13836,423,88749,3480,3078,374,314955,145296 +2035,45,2031,9938,2035215,16826,515,107931,4232,3744,454,365417,176699 +2035,45,2032,12236,2505738,20716,634,132884,5210,4609,559,426437,217551 +2035,45,2033,15733,3221875,26637,815,170862,6700,5927,719,514743,279727 +2035,45,2034,21313,4364711,36085,1104,231469,9076,8029,974,644505,378949 +2035,45,2035,39670,8124044,67166,2054,430833,16893,14944,1814,1057234,705339 +2035,46,2005,137,107105,895,15,4468,140,124,15,43760,5869 +2035,46,2006,137,43408,360,6,1810,57,50,6,16664,2379 +2035,46,2007,152,48101,399,7,2005,63,56,7,17460,2636 +2035,46,2008,130,26351,200,6,1607,54,48,6,13521,2260 +2035,46,2009,114,23074,175,5,1408,47,42,5,11140,1979 +2035,46,2010,56,11369,86,3,694,23,21,3,5150,976 +2035,46,2011,78,15716,119,4,960,32,29,3,6774,1350 +2035,46,2012,120,24228,183,5,1482,50,44,5,9975,2083 +2035,46,2013,122,24561,186,6,1504,50,45,5,9692,2114 +2035,46,2014,149,29899,226,7,1830,61,54,7,11559,2573 +2035,46,2015,163,32761,248,7,2005,67,60,7,12418,2819 +2035,46,2016,179,35998,272,8,2204,74,65,8,9122,3098 +2035,46,2017,197,39567,300,9,2422,81,72,9,9820,3405 +2035,46,2018,278,55948,424,13,3425,115,102,12,13359,4815 +2035,46,2019,304,61235,464,14,3748,126,111,14,14288,5270 +2035,46,2020,335,67333,510,15,4122,138,122,15,15165,5795 +2035,46,2021,369,74154,561,17,4539,152,135,16,14541,6382 +2035,46,2022,403,81013,613,18,4959,166,147,18,15378,6972 +2035,46,2023,456,91714,694,21,5614,188,167,20,16964,7893 +2035,46,2024,514,103476,783,23,6334,212,188,23,18688,8905 +2035,46,2025,584,117485,889,26,7192,241,213,26,20642,10111 +2035,46,2026,662,133181,1008,30,8153,273,242,29,22051,11462 +2035,46,2027,763,153585,1163,35,9402,315,279,34,24716,13217 +2035,46,2028,889,178963,1355,40,10955,368,325,40,27916,15401 +2035,46,2029,1042,209683,1587,47,12836,431,381,46,31663,18045 +2035,46,2030,1239,249251,1887,56,15258,512,453,55,36331,21450 +2035,46,2031,1506,303122,2294,68,18555,622,551,67,42476,26087 +2035,46,2032,1855,373202,2825,84,22845,766,678,83,50020,32118 +2035,46,2033,2385,479863,3632,108,29375,985,872,106,61059,41297 +2035,46,2034,3231,650075,4921,146,39794,1335,1181,144,77593,55945 +2035,46,2035,6013,1209985,9159,272,74069,2485,2198,268,130612,104131 +2035,47,2005,241,180827,1423,22,7317,237,209,25,76309,9891 +2035,47,2006,241,73285,575,9,2964,96,85,10,29024,4009 +2035,47,2007,267,81209,637,10,3285,106,94,11,30360,4442 +2035,47,2008,229,44374,318,8,2633,91,81,10,23594,3809 +2035,47,2009,201,38856,278,7,2305,80,71,9,19407,3335 +2035,47,2010,99,19156,137,4,1137,39,35,4,8956,1645 +2035,47,2011,137,26496,190,5,1573,54,48,6,11764,2275 +2035,47,2012,211,40869,292,8,2427,84,74,9,17298,3511 +2035,47,2013,214,41455,297,8,2462,85,75,9,16784,3562 +2035,47,2014,261,50463,361,9,2997,104,92,11,20003,4336 +2035,47,2015,286,55294,396,10,3284,114,101,12,21474,4752 +2035,47,2016,314,60758,435,11,3609,125,111,13,16347,5221 +2035,47,2017,345,66781,478,12,3967,137,122,15,17572,5739 +2035,47,2018,488,94429,676,18,5609,194,172,21,23865,8115 +2035,47,2019,534,103352,740,19,6139,213,188,23,25478,8881 +2035,47,2020,588,113645,813,21,6750,234,207,25,26999,9766 +2035,47,2021,647,125158,896,23,7434,257,228,28,26190,10755 +2035,47,2022,707,136734,979,26,8122,281,249,30,27607,11750 +2035,47,2023,801,154794,1108,29,9194,318,282,34,30362,13302 +2035,47,2024,903,174647,1250,33,10374,359,318,39,33348,15008 +2035,47,2025,1025,198291,1419,37,11778,408,361,44,36708,17040 +2035,47,2026,1162,224784,1609,42,13352,462,409,50,39217,19316 +2035,47,2027,1341,259222,1855,48,15397,533,472,57,43774,22276 +2035,47,2028,1562,302054,2162,56,17941,621,550,67,49209,25956 +2035,47,2029,1830,353904,2533,66,21021,728,644,78,55529,30412 +2035,47,2030,2176,420687,3011,79,24988,865,765,93,63348,36151 +2035,47,2031,2646,511611,3661,96,30389,1052,931,113,73562,43964 +2035,47,2032,3258,629891,4508,118,37414,1296,1146,139,85938,54128 +2035,47,2033,4189,809913,5796,151,48107,1666,1474,179,103871,69598 +2035,47,2034,5674,1097199,7852,205,65171,2257,1996,243,130288,94285 +2035,47,2035,10562,2042219,14615,382,121303,4201,3716,452,214395,175493 +2035,48,2005,372,277429,2509,32,10526,376,332,39,111643,15275 +2035,48,2006,373,112436,1016,13,4266,152,135,16,42554,6190 +2035,48,2007,413,124593,1126,14,4727,169,149,18,44596,6860 +2035,48,2008,354,67978,560,12,3788,145,128,15,34298,5882 +2035,48,2009,310,59524,490,11,3317,127,112,13,28254,5150 +2035,48,2010,153,29351,242,5,1636,62,55,7,13061,2540 +2035,48,2011,211,40607,334,7,2263,86,76,9,17180,3514 +2035,48,2012,326,62648,516,11,3492,133,118,14,25297,5422 +2035,48,2013,331,63559,523,12,3543,135,120,14,24578,5501 +2035,48,2014,403,77371,637,14,4313,165,146,17,29311,6697 +2035,48,2015,442,84777,698,15,4726,180,160,19,31486,7338 +2035,48,2016,485,93155,767,17,5193,198,175,21,24931,8063 +2035,48,2017,533,102389,843,19,5707,218,193,23,26815,8862 +2035,48,2018,754,144780,1192,26,8070,308,273,32,36438,12531 +2035,48,2019,825,158462,1305,29,8833,337,298,35,38930,13716 +2035,48,2020,908,174243,1435,32,9712,371,328,39,41278,15082 +2035,48,2021,1000,191895,1580,35,10696,408,361,43,40677,16609 +2035,48,2022,1092,209643,1726,38,11686,446,395,47,42872,18146 +2035,48,2023,1236,237333,1955,43,13229,505,447,53,47189,20542 +2035,48,2024,1395,267772,2205,49,14926,570,504,60,51872,23177 +2035,48,2025,1584,304023,2504,56,16946,647,572,68,57151,26315 +2035,48,2026,1795,344642,2838,63,19211,733,649,77,61387,29830 +2035,48,2027,2070,397443,3273,73,22154,846,748,88,68585,34401 +2035,48,2028,2412,463114,3814,85,25814,986,872,103,77183,40085 +2035,48,2029,2827,542612,4469,99,30246,1155,1022,121,87198,46966 +2035,48,2030,3360,645004,5312,118,35953,1373,1214,143,99608,55828 +2035,48,2031,4086,784411,6460,143,43724,1669,1477,174,115850,67895 +2035,48,2032,5031,965759,7953,176,53832,2055,1818,215,135591,83591 +2035,48,2033,6468,1241773,10226,227,69217,2643,2338,276,164267,107482 +2035,48,2034,8763,1682243,13854,307,93769,3580,3167,374,206678,145606 +2035,48,2035,16310,3131171,25786,572,174533,6664,5895,696,341949,271017 +2035,49,2005,804,577427,4910,80,26658,722,639,86,305735,32549 +2035,49,2006,804,234019,1974,32,10797,293,259,35,115955,13191 +2035,49,2007,891,259323,2187,36,11964,324,287,38,121012,14618 +2035,49,2008,764,142383,1100,31,9591,278,246,33,94671,12533 +2035,49,2009,669,124677,963,27,8398,243,215,29,77699,10975 +2035,49,2010,330,61429,474,13,4142,120,106,14,35764,5412 +2035,49,2011,457,84920,656,18,5730,166,147,20,46874,7488 +2035,49,2012,704,130913,1011,28,8842,256,227,30,68780,11554 +2035,49,2013,715,132713,1024,29,8971,260,230,31,66598,11723 +2035,49,2014,870,161552,1247,35,10920,316,280,38,79293,14271 +2035,49,2015,953,177016,1366,38,11966,346,307,41,85040,15636 +2035,49,2016,1047,194510,1501,42,13148,381,337,45,62938,17182 +2035,49,2017,1151,213790,1650,46,14452,418,370,50,67556,18885 +2035,49,2018,1628,302304,2333,66,20435,592,523,70,91573,26704 +2035,49,2019,1782,330870,2554,72,22366,648,573,77,97593,29227 +2035,49,2020,1959,363821,2808,79,24593,712,630,85,103216,32138 +2035,49,2021,2158,400679,3093,87,27085,784,694,93,98787,35393 +2035,49,2022,2357,437737,3379,95,29590,857,758,102,103920,38667 +2035,49,2023,2669,495556,3825,108,33498,970,858,115,114011,43774 +2035,49,2024,3011,559111,4316,122,37794,1094,968,130,124932,49388 +2035,49,2025,3419,634804,4900,138,42911,1243,1099,148,137135,56075 +2035,49,2026,3875,719618,5554,156,48644,1409,1246,167,145538,63566 +2035,49,2027,4469,829867,6405,180,56096,1624,1437,193,161933,73305 +2035,49,2028,5207,966990,7464,210,65366,1893,1674,225,181372,85418 +2035,49,2029,6101,1132981,8745,246,76586,2218,1962,263,203854,100081 +2035,49,2030,7253,1346780,10395,293,91038,2636,2332,313,231505,118966 +2035,49,2031,8820,1637860,12642,356,110714,3206,2836,381,267400,144678 +2035,49,2032,10859,2016521,15565,438,136311,3947,3492,469,310380,178127 +2035,49,2033,13963,2592841,20013,564,175268,5075,4490,603,372131,229035 +2035,49,2034,18916,3512549,27112,763,237437,6875,6082,817,461714,310276 +2035,49,2035,35208,6537917,50464,1421,441943,12797,11321,1520,745053,577518 +2035,50,2005,396,295742,2534,39,12899,393,348,42,128162,16214 +2035,50,2006,396,119858,1018,16,5224,159,141,17,48625,6571 +2035,50,2007,439,132818,1128,17,5789,177,156,19,50773,7282 +2035,50,2008,376,72855,568,15,4641,152,134,16,39301,6243 +2035,50,2009,330,63795,498,13,4064,133,117,14,32253,5467 +2035,50,2010,163,31430,245,6,2004,65,58,7,14843,2696 +2035,50,2011,225,43445,338,9,2773,90,80,10,19451,3730 +2035,50,2012,347,66970,522,14,4278,140,123,15,28538,5755 +2035,50,2013,352,67885,529,14,4341,142,125,15,27629,5840 +2035,50,2014,429,82637,643,17,5284,172,152,18,32895,7109 +2035,50,2015,470,90547,705,19,5790,189,167,20,35277,7789 +2035,50,2016,516,99495,775,21,6362,207,184,22,23928,8559 +2035,50,2017,567,109357,852,23,6993,228,202,24,25702,9407 +2035,50,2018,802,154634,1204,32,9888,322,285,35,34761,13302 +2035,50,2019,878,169246,1318,35,10822,353,312,38,37080,14559 +2035,50,2020,965,186101,1449,38,11900,388,343,42,39130,16009 +2035,50,2021,1063,204954,1596,42,13105,427,378,46,36150,17631 +2035,50,2022,1161,223910,1744,46,14317,467,413,50,38040,19262 +2035,50,2023,1314,253485,1974,52,16209,529,468,57,41829,21806 +2035,50,2024,1483,285995,2227,59,18287,596,528,64,45936,24602 +2035,50,2025,1684,324713,2528,67,20763,677,599,73,50554,27933 +2035,50,2026,1909,368097,2866,76,23537,768,679,82,53210,31665 +2035,50,2027,2201,424491,3305,88,27143,885,783,95,59407,36516 +2035,50,2028,2565,494631,3852,102,31628,1031,912,111,66800,42550 +2035,50,2029,3005,579540,4513,120,37057,1208,1069,130,75403,49854 +2035,50,2030,3572,688900,5364,142,44050,1437,1271,154,86049,59262 +2035,50,2031,4345,837793,6524,173,53571,1747,1545,187,99965,72070 +2035,50,2032,5349,1031485,8032,213,65956,2151,1903,231,116838,88732 +2035,50,2033,6878,1326283,10328,274,84806,2766,2447,297,141304,114092 +2035,50,2034,9317,1796728,13991,371,114888,3747,3314,402,177381,154561 +2035,50,2035,17342,3344258,26041,691,213842,6974,6169,748,292301,287685 +2035,51,2005,129,96765,761,11,3896,127,112,14,39653,5294 +2035,51,2006,129,39217,308,5,1579,51,45,6,15091,2146 +2035,51,2007,143,43457,341,5,1749,57,50,6,15794,2378 +2035,51,2008,123,23739,170,4,1402,49,43,5,12258,2039 +2035,51,2009,107,20787,149,4,1228,43,38,5,10088,1785 +2035,51,2010,53,10248,73,2,605,21,19,2,4658,880 +2035,51,2011,73,14176,101,3,838,29,26,3,6121,1218 +2035,51,2012,113,21868,156,4,1292,45,40,5,9006,1879 +2035,51,2013,115,22182,159,4,1311,46,40,5,8742,1907 +2035,51,2014,140,27003,193,5,1596,56,49,6,10421,2321 +2035,51,2015,153,29588,212,6,1749,61,54,7,11190,2543 +2035,51,2016,168,32511,233,6,1922,67,59,7,8479,2795 +2035,51,2017,185,35734,256,7,2112,74,65,8,9118,3072 +2035,51,2018,261,50529,361,9,2987,104,92,11,12384,4344 +2035,51,2019,286,55304,395,10,3269,114,101,12,13228,4754 +2035,51,2020,315,60811,435,11,3595,125,111,13,14019,5227 +2035,51,2021,346,66972,479,12,3959,138,122,15,13586,5757 +2035,51,2022,379,73166,523,14,4325,151,133,16,14327,6289 +2035,51,2023,429,82830,592,15,4896,170,151,18,15770,7120 +2035,51,2024,483,93453,668,17,5524,192,170,21,17335,8033 +2035,51,2025,549,106105,759,20,6272,218,193,23,19100,9121 +2035,51,2026,622,120281,860,22,7110,247,219,27,20420,10340 +2035,51,2027,718,138709,992,26,8199,285,252,31,22819,11924 +2035,51,2028,836,161628,1156,30,9554,332,294,36,25686,13894 +2035,51,2029,980,189373,1354,35,11194,390,345,42,29026,16279 +2035,51,2030,1165,225109,1610,42,13306,463,410,50,33167,19351 +2035,51,2031,1416,273762,1958,51,16182,563,498,61,38589,23533 +2035,51,2032,1744,337054,2410,63,19923,693,613,75,45184,28974 +2035,51,2033,2242,433383,3099,81,25618,892,789,96,54768,37254 +2035,51,2034,3037,587108,4199,109,34704,1208,1068,130,68955,50469 +2035,51,2035,5653,1092786,7815,204,64595,2248,1989,242,114222,93938 +2035,53,2005,531,383116,3295,56,17313,479,424,57,229102,21621 +2035,53,2006,532,155269,1327,23,7012,194,172,23,86802,8763 +2035,53,2007,589,172057,1470,25,7771,215,190,26,90479,9710 +2035,53,2008,505,94581,741,22,6231,184,163,22,71069,8325 +2035,53,2009,442,82819,649,19,5456,162,143,19,58264,7290 +2035,53,2010,218,40812,320,9,2690,80,70,9,26785,3595 +2035,53,2011,302,56427,442,13,3723,110,97,13,35070,4974 +2035,53,2012,466,87001,682,20,5744,170,150,20,51409,7675 +2035,53,2013,472,88211,691,20,5828,172,153,21,49730,7787 +2035,53,2014,575,107380,841,25,7094,210,186,25,59181,9479 +2035,53,2015,630,117658,922,27,7773,230,203,27,63439,10387 +2035,53,2016,692,129285,1013,30,8541,253,224,30,46239,11413 +2035,53,2017,761,142101,1113,33,9388,278,246,33,49596,12544 +2035,53,2018,1076,200933,1574,46,13275,393,347,47,67085,17738 +2035,53,2019,1178,219920,1723,51,14529,430,380,51,71435,19414 +2035,53,2020,1295,241822,1895,56,15976,473,418,56,75396,21348 +2035,53,2021,1426,266320,2087,61,17595,521,461,62,71652,23510 +2035,53,2022,1558,290952,2280,67,19222,569,503,68,75212,25685 +2035,53,2023,1764,329382,2581,76,21761,644,570,77,82417,29077 +2035,53,2024,1990,371626,2912,86,24552,726,643,86,90208,32807 +2035,53,2025,2260,421937,3306,97,27876,825,730,98,98884,37248 +2035,53,2026,2562,478310,3748,110,31600,935,827,111,104577,42224 +2035,53,2027,2954,551590,4322,127,36442,1078,954,128,116174,48694 +2035,53,2028,3442,642732,5036,148,42463,1256,1112,150,129884,56739 +2035,53,2029,4033,753062,5901,173,49752,1472,1302,175,145695,66479 +2035,53,2030,4794,895167,7014,206,59141,1750,1548,208,165079,79024 +2035,53,2031,5831,1088641,8530,251,71923,2128,1883,253,190157,96104 +2035,53,2032,7179,1340327,10502,309,88551,2620,2318,312,219997,118322 +2035,53,2033,9230,1723391,13504,397,113859,3369,2980,401,262666,152138 +2035,53,2034,12504,2334695,18294,538,154246,4564,4038,543,324040,206103 +2035,53,2035,23275,4345578,34050,1001,287098,8495,7515,1011,517428,383621 +2035,54,2005,137,103737,826,12,4307,136,121,14,42529,5604 +2035,54,2006,137,42043,333,5,1745,55,49,6,16175,2271 +2035,54,2007,151,46588,369,6,1934,61,54,6,16923,2517 +2035,54,2008,130,25471,185,5,1550,53,46,6,13126,2158 +2035,54,2009,114,22304,162,4,1357,46,41,5,10797,1889 +2035,54,2010,56,10994,80,2,669,23,20,2,4983,932 +2035,54,2011,78,15204,110,3,926,31,28,3,6545,1289 +2035,54,2012,120,23448,170,4,1429,48,43,5,9625,1989 +2035,54,2013,121,23780,172,4,1449,49,43,5,9339,2018 +2035,54,2014,148,28948,210,5,1764,60,53,6,11131,2457 +2035,54,2015,162,31719,230,6,1933,65,58,7,11950,2692 +2035,54,2016,178,34854,252,7,2124,72,64,8,8861,2958 +2035,54,2017,196,38308,277,7,2335,79,70,8,9528,3251 +2035,54,2018,277,54169,392,10,3302,112,99,12,12943,4597 +2035,54,2019,303,59288,429,11,3614,122,108,13,13823,5032 +2035,54,2020,333,65192,472,12,3974,135,119,14,14650,5533 +2035,54,2021,367,71797,520,13,4376,148,131,16,14075,6093 +2035,54,2022,401,78437,568,15,4781,162,143,17,14851,6657 +2035,54,2023,454,88797,643,17,5412,183,162,19,16347,7536 +2035,54,2024,512,100186,726,19,6107,207,183,22,17970,8503 +2035,54,2025,581,113749,824,21,6933,235,208,25,19801,9654 +2035,54,2026,659,128946,934,24,7860,266,236,28,21116,10944 +2035,54,2027,760,148702,1077,28,9064,307,272,32,23600,12620 +2035,54,2028,885,173272,1255,32,10562,358,316,38,26568,14706 +2035,54,2029,1037,203016,1470,38,12374,419,371,44,30028,17230 +2035,54,2030,1233,241326,1748,45,14710,498,441,53,34317,20482 +2035,54,2031,1499,293484,2126,55,17889,606,536,64,39934,24908 +2035,54,2032,1846,361334,2617,67,22025,746,660,79,46769,30667 +2035,54,2033,2373,464603,3365,87,28319,959,849,102,56704,39431 +2035,54,2034,3215,629404,4559,117,38364,1300,1150,138,71418,53418 +2035,54,2035,5984,1171510,8485,219,71407,2419,2140,256,118378,99427 +2035,55,2005,337,254418,1947,31,11125,331,292,36,104211,13846 +2035,55,2006,338,103110,783,13,4506,134,119,14,39604,5611 +2035,55,2007,374,114259,868,14,4993,148,131,16,41414,6218 +2035,55,2008,321,62629,436,12,4002,127,113,14,32197,5331 +2035,55,2009,281,54841,381,10,3504,111,99,12,26475,4668 +2035,55,2010,139,27020,188,5,1728,55,49,6,12212,2302 +2035,55,2011,192,37353,260,7,2391,76,67,8,16034,3185 +2035,55,2012,296,57584,400,11,3689,117,104,13,23567,4915 +2035,55,2013,300,58376,406,11,3743,119,105,13,22858,4987 +2035,55,2014,365,71061,494,14,4557,145,128,16,27238,6070 +2035,55,2015,400,77863,541,15,4993,159,140,17,29236,6651 +2035,55,2016,440,85558,594,16,5487,174,154,19,20801,7309 +2035,55,2017,483,94039,653,18,6030,192,170,21,22370,8033 +2035,55,2018,684,132973,924,25,8527,271,240,29,30354,11359 +2035,55,2019,748,145538,1011,28,9333,297,262,32,32425,12433 +2035,55,2020,823,160032,1112,31,10262,326,289,35,34327,13671 +2035,55,2021,906,176245,1224,34,11302,359,318,39,32448,15056 +2035,55,2022,990,192545,1338,37,12347,392,347,42,34239,16448 +2035,55,2023,1121,217978,1514,42,13978,444,393,48,37717,18621 +2035,55,2024,1264,245934,1708,47,15771,501,443,54,41490,21009 +2035,55,2025,1435,279229,1940,53,17906,569,503,61,45753,23853 +2035,55,2026,1627,316535,2199,61,20298,645,571,70,48596,27040 +2035,55,2027,1876,365030,2536,70,23408,744,658,80,54374,31182 +2035,55,2028,2187,425345,2955,81,27276,867,767,94,61291,36335 +2035,55,2029,2562,498359,3462,95,31958,1016,898,110,69368,42572 +2035,55,2030,3045,592402,4115,113,37988,1207,1068,130,79401,50606 +2035,55,2031,3704,720438,5005,138,46199,1468,1299,159,92566,61543 +2035,55,2032,4560,886998,6162,170,56880,1808,1599,195,108644,75771 +2035,55,2033,5863,1140501,7923,218,73136,2324,2056,251,132078,97427 +2035,55,2034,7943,1545048,10733,295,99078,3149,2785,340,166943,131985 +2035,55,2035,14784,2875806,19978,550,184414,5861,5184,633,278426,245664 +2035,56,2005,473,359387,3339,60,15823,455,402,53,213725,20431 +2035,56,2006,473,145652,1340,24,6407,184,163,21,81029,8280 +2035,56,2007,524,161401,1484,27,7099,204,181,24,84546,9176 +2035,56,2008,449,88826,749,23,5693,175,155,20,66235,7867 +2035,56,2009,394,77780,656,20,4985,153,136,18,54354,6889 +2035,56,2010,194,38311,323,10,2458,76,67,9,25014,3397 +2035,56,2011,268,52943,446,14,3401,105,93,12,32779,4700 +2035,56,2012,414,81592,687,21,5248,161,143,19,48091,7252 +2035,56,2013,420,82687,696,22,5325,164,145,19,46558,7359 +2035,56,2014,512,100655,848,26,6482,199,176,23,55429,8958 +2035,56,2015,561,110290,929,29,7103,218,193,25,59443,9815 +2035,56,2016,616,121189,1020,32,7804,240,212,28,43609,10785 +2035,56,2017,677,133202,1122,35,8578,264,233,31,46804,11854 +2035,56,2018,957,188350,1586,49,12130,373,330,43,63443,16762 +2035,56,2019,1048,206149,1736,54,13276,408,361,47,67607,18346 +2035,56,2020,1152,226679,1909,59,14598,449,397,52,71500,20173 +2035,56,2021,1269,249643,2102,65,16077,494,437,57,68166,22216 +2035,56,2022,1386,272732,2296,71,17564,540,477,63,71718,24271 +2035,56,2023,1570,308756,2600,81,19884,611,540,71,78671,27477 +2035,56,2024,1771,348355,2933,91,22434,689,610,80,86194,31001 +2035,56,2025,2011,395515,3330,103,25471,783,692,91,94599,35198 +2035,56,2026,2279,448358,3775,117,28874,887,785,103,100256,39901 +2035,56,2027,2628,517049,4353,135,33297,1023,905,119,111531,46014 +2035,56,2028,3063,602483,5073,158,38799,1192,1055,139,124895,53617 +2035,56,2029,3589,705905,5944,185,45460,1397,1236,162,140346,62820 +2035,56,2030,4266,839113,7065,219,54038,1660,1469,193,159342,74675 +2035,56,2031,5188,1020470,8592,267,65717,2019,1786,235,183993,90814 +2035,56,2032,6387,1256394,10579,329,80910,2486,2199,289,213490,111810 +2035,56,2033,8212,1615471,13602,422,104035,3197,2828,372,255848,143765 +2035,56,2034,11125,2188495,18427,572,140937,4330,3831,504,317241,194760 +2035,56,2035,20708,4073452,34298,1065,262326,8060,7130,938,511343,362507 +2040,1,2010,1155,236475,1919,59,12351,490,433,52,222716,20464 +2040,1,2011,138,28258,229,7,1476,59,52,6,24856,2446 +2040,1,2012,215,44082,358,11,2303,91,81,10,36419,3816 +2040,1,2013,218,44565,362,11,2329,92,82,10,35143,3859 +2040,1,2014,278,56977,463,14,2978,118,104,13,42103,4933 +2040,1,2015,322,66009,536,17,3450,137,121,15,45521,5715 +2040,1,2016,365,74807,607,19,3909,155,137,17,46592,6477 +2040,1,2017,413,84554,686,21,4419,175,155,19,50101,7321 +2040,1,2018,594,121666,988,31,6358,252,223,27,67209,10534 +2040,1,2019,643,131665,1069,33,6881,273,241,29,71156,11400 +2040,1,2020,700,143252,1163,36,7486,297,262,32,74020,12403 +2040,1,2021,764,156446,1270,39,8176,324,287,35,60985,13546 +2040,1,2022,823,168447,1367,42,8803,349,309,37,63175,14585 +2040,1,2023,921,188455,1530,47,9848,390,345,42,68689,16317 +2040,1,2024,1028,210342,1708,53,10992,436,385,47,74616,18212 +2040,1,2025,1142,233751,1898,59,12215,484,428,52,80810,20239 +2040,1,2026,1272,260302,2113,65,13603,539,477,58,79993,22538 +2040,1,2027,1438,294398,2390,74,15385,610,539,65,87714,25490 +2040,1,2028,1634,334551,2716,84,17483,693,613,74,96441,28967 +2040,1,2029,1849,378477,3072,95,19778,784,694,84,105800,32770 +2040,1,2030,2114,432754,3513,109,22615,896,793,96,116739,37470 +2040,1,2031,2431,497600,4039,125,26003,1031,912,110,126104,43085 +2040,1,2032,2772,567350,4606,142,29648,1175,1040,126,138393,49124 +2040,1,2033,3184,651835,5292,164,34063,1350,1194,144,152415,56439 +2040,1,2034,3701,757539,6150,190,39587,1569,1388,168,169407,65591 +2040,1,2035,4314,883155,7169,222,46152,1829,1618,196,188028,76468 +2040,1,2036,5109,1045814,8490,263,54652,2166,1916,232,210602,90552 +2040,1,2037,6225,1274225,10344,320,66588,2639,2335,282,240703,110329 +2040,1,2038,7979,1633357,13260,410,85356,3383,2993,362,285872,141424 +2040,1,2039,10746,2199575,17856,552,114945,4556,4031,487,349506,190450 +2040,1,2040,20264,4147955,33673,1041,216763,8592,7601,919,562240,359150 +2040,4,2010,6021,1242284,11430,263,76179,2571,2274,265,1056323,102201 +2040,4,2011,720,148453,1366,31,9105,307,272,32,118045,12215 +2040,4,2012,1123,231589,2131,49,14206,479,424,49,173180,19058 +2040,4,2013,1135,234131,2154,50,14364,485,429,50,167277,19271 +2040,4,2014,1451,299339,2754,63,18364,620,548,64,200705,24638 +2040,4,2015,1682,346791,3191,73,21276,718,635,74,217362,28543 +2040,4,2016,1906,393008,3616,83,24111,813,720,84,223779,32347 +2040,4,2017,2154,444219,4087,94,27253,919,813,95,240964,36562 +2040,4,2018,3099,639190,5881,135,39214,1323,1170,137,324420,52610 +2040,4,2019,3354,691722,6364,146,42437,1432,1267,148,343698,56933 +2040,4,2020,3649,752597,6924,159,46172,1558,1378,161,358618,61944 +2040,4,2021,3985,821913,7562,174,50424,1701,1505,176,307076,67649 +2040,4,2022,4291,884959,8142,187,54292,1832,1620,189,318818,72838 +2040,4,2023,4801,990074,9109,209,60741,2049,1813,211,346948,81490 +2040,4,2024,5358,1105065,10167,234,67796,2287,2023,236,377210,90954 +2040,4,2025,5955,1228045,11298,260,75341,2542,2249,262,408864,101076 +2040,4,2026,6631,1367538,12582,289,83898,2831,2504,292,411442,112557 +2040,4,2027,7500,1546663,14230,327,94888,3201,2832,330,451582,127300 +2040,4,2028,8523,1757612,16170,372,107829,3638,3218,375,497031,144663 +2040,4,2029,9642,1988388,18294,420,121988,4116,3641,425,545810,163657 +2040,4,2030,11024,2273539,20917,481,139482,4706,4163,486,602965,187127 +2040,4,2031,12676,2614216,24051,553,160382,5411,4787,558,655383,215167 +2040,4,2032,14453,2980655,27423,630,182863,6169,5458,637,720189,245327 +2040,4,2033,16606,3424511,31506,724,210094,7088,6270,731,794354,281860 +2040,4,2034,19298,3979844,36615,842,244163,8238,7287,850,884374,327567 +2040,4,2035,22498,4639794,42687,981,284651,9604,8496,991,983452,381885 +2040,4,2036,26642,5494334,50549,1162,337078,11372,10060,1173,1104023,452220 +2040,4,2037,32461,6694340,61589,1415,410697,13856,12257,1430,1265310,550988 +2040,4,2038,41610,8581096,78948,1814,526450,17762,15712,1833,1508051,706281 +2040,4,2039,56034,11555805,106316,2443,708948,23919,21159,2468,1852693,951118 +2040,4,2040,105669,21791890,200490,4608,1336932,45106,39902,4654,3007315,1793616 +2040,5,2010,854,162806,1212,32,9161,336,298,36,138938,13726 +2040,5,2011,102,19452,145,4,1095,40,36,4,15494,1641 +2040,5,2012,159,30341,226,6,1708,63,55,7,22685,2560 +2040,5,2013,161,30669,228,6,1727,63,56,7,21876,2588 +2040,5,2014,206,39210,292,8,2208,81,72,9,26186,3309 +2040,5,2015,239,45426,338,9,2559,94,83,10,28284,3834 +2040,5,2016,270,51480,383,10,2900,106,94,12,28803,4344 +2040,5,2017,306,58188,433,12,3277,120,106,13,30948,4910 +2040,5,2018,440,83727,623,17,4716,173,153,19,41395,7066 +2040,5,2019,476,90609,674,18,5103,187,166,20,43810,7646 +2040,5,2020,518,98582,734,20,5552,204,180,22,45454,8319 +2040,5,2021,566,107662,801,21,6064,223,197,24,36063,9086 +2040,5,2022,609,115921,863,23,6529,240,212,26,37296,9783 +2040,5,2023,681,129690,965,26,7305,268,237,29,40545,10945 +2040,5,2024,760,144752,1077,29,8153,299,265,32,44037,12216 +2040,5,2025,845,160861,1197,32,9060,333,294,36,47685,13575 +2040,5,2026,941,179134,1333,36,10089,370,328,40,46463,15117 +2040,5,2027,1064,202597,1508,40,11411,419,370,45,50953,17097 +2040,5,2028,1209,230229,1713,46,12967,476,421,51,56028,19429 +2040,5,2029,1368,260459,1938,52,14670,538,476,58,61471,21980 +2040,5,2030,1564,297811,2216,59,16774,616,545,67,67835,25132 +2040,5,2031,1799,342436,2548,68,19287,708,626,77,72934,28898 +2040,5,2032,2051,390436,2906,78,21991,807,714,87,80066,32949 +2040,5,2033,2356,448576,3338,89,25265,927,820,100,88210,37855 +2040,5,2034,2739,521319,3880,104,29362,1078,953,117,98083,43994 +2040,5,2035,3193,607766,4523,121,34231,1256,1111,136,108912,51289 +2040,5,2036,3781,719703,5356,143,40536,1488,1316,161,122054,60736 +2040,5,2037,4606,876890,6526,175,49389,1813,1604,196,139591,74001 +2040,5,2038,5905,1124037,8365,224,63309,2324,2055,251,165925,94857 +2040,5,2039,7951,1513693,11265,301,85256,3129,2768,338,203094,127740 +2040,5,2040,14995,2854517,21243,568,160776,5901,5220,638,327421,240892 +2040,6,2010,1083,198572,1586,42,14703,411,364,15,101409,18344 +2040,6,2011,129,23719,189,5,1757,49,43,2,11355,2192 +2040,6,2012,202,36985,295,8,2742,77,68,3,16692,3421 +2040,6,2013,204,37375,299,8,2772,78,69,3,16148,3459 +2040,6,2014,261,47784,382,10,3545,99,88,4,19419,4422 +2040,6,2015,302,55359,442,12,4106,115,102,4,21085,5123 +2040,6,2016,343,62736,501,13,4654,130,115,5,21588,5806 +2040,6,2017,387,70911,567,15,5260,147,130,5,23299,6563 +2040,6,2018,557,102035,815,22,7569,212,187,8,31323,9443 +2040,6,2019,603,110420,882,23,8191,229,203,8,33221,10219 +2040,6,2020,656,120138,960,25,8912,249,220,9,34569,11119 +2040,6,2021,717,131203,1048,28,9733,272,241,10,27083,12143 +2040,6,2022,772,141267,1129,30,10479,293,259,11,28158,13074 +2040,6,2023,863,158047,1263,33,11724,328,290,12,30740,14627 +2040,6,2024,963,176403,1409,37,13085,366,324,13,33526,16326 +2040,6,2025,1071,196034,1566,41,14542,407,360,15,36449,18143 +2040,6,2026,1192,218302,1744,46,16193,453,401,17,35502,20203 +2040,6,2027,1348,246895,1972,52,18315,512,453,19,39155,22850 +2040,6,2028,1532,280570,2241,59,20812,582,515,21,43325,25966 +2040,6,2029,1734,317409,2536,67,23545,658,582,24,47819,29376 +2040,6,2030,1982,362928,2899,77,26922,753,666,28,53145,33588 +2040,6,2031,2279,417310,3334,88,30956,866,766,32,57510,38621 +2040,6,2032,2599,475805,3801,100,35295,987,873,36,63664,44035 +2040,6,2033,2986,546659,4367,115,40551,1134,1003,42,70813,50592 +2040,6,2034,3470,635307,5075,134,47127,1318,1166,48,79562,58796 +2040,6,2035,4045,740656,5917,156,54941,1536,1359,57,89403,68546 +2040,6,2036,4790,877067,7007,185,65060,1819,1609,67,101602,81171 +2040,6,2037,5836,1068625,8537,226,79270,2217,1961,82,118167,98899 +2040,6,2038,7481,1369810,10943,289,101611,2841,2514,105,143446,126773 +2040,6,2039,10075,1844665,14737,389,136836,3827,3385,141,180620,170720 +2040,6,2040,18999,3478659,27791,734,258045,7216,6383,265,306330,321943 +2040,8,2010,246,46081,340,9,3039,91,80,11,30010,4094 +2040,8,2011,29,5505,41,1,363,11,10,1,3356,489 +2040,8,2012,46,8587,63,2,567,17,15,2,4928,763 +2040,8,2013,46,8679,64,2,573,17,15,2,4763,772 +2040,8,2014,59,11096,82,2,733,22,19,3,5720,987 +2040,8,2015,69,12855,95,2,849,25,22,3,6202,1143 +2040,8,2016,78,14568,107,3,962,29,25,3,6384,1296 +2040,8,2017,88,16466,121,3,1087,32,29,4,6881,1465 +2040,8,2018,127,23693,175,5,1564,47,41,5,9269,2108 +2040,8,2019,137,25641,189,5,1693,50,45,6,9824,2281 +2040,8,2020,149,27897,206,5,1842,55,49,6,10251,2481 +2040,8,2021,163,30467,225,6,2012,60,53,7,8522,2710 +2040,8,2022,176,32804,242,6,2166,65,57,8,8863,2918 +2040,8,2023,196,36700,271,7,2423,72,64,8,9656,3264 +2040,8,2024,219,40963,302,8,2705,81,71,9,10511,3644 +2040,8,2025,244,45521,336,9,3006,90,79,10,11405,4049 +2040,8,2026,271,50692,374,10,3347,100,88,12,11362,4509 +2040,8,2027,307,57332,423,11,3786,113,100,13,12492,5100 +2040,8,2028,349,65151,480,12,4302,128,113,15,13776,5795 +2040,8,2029,395,73705,544,14,4867,145,128,17,15156,6556 +2040,8,2030,451,84276,622,16,5565,166,147,19,16780,7496 +2040,8,2031,519,96904,715,18,6398,191,169,22,18220,8620 +2040,8,2032,591,110487,815,21,7295,218,192,25,20076,9828 +2040,8,2033,680,126940,936,24,8382,250,221,29,22212,11291 +2040,8,2034,790,147525,1088,28,9741,291,257,34,24813,13122 +2040,8,2035,921,171988,1268,33,11356,339,300,39,27700,15298 +2040,8,2036,1090,203664,1502,39,13448,401,355,47,31239,18116 +2040,8,2037,1328,248145,1830,47,16385,489,432,57,36002,22072 +2040,8,2038,1703,318084,2346,60,21003,626,554,73,43211,28293 +2040,8,2039,2293,428350,3159,81,28283,844,746,98,53595,38101 +2040,8,2040,4324,807781,5957,154,53337,1591,1407,185,88517,71852 +2040,9,2010,2991,566593,5649,151,34772,1181,1045,136,413433,52706 +2040,9,2011,358,67669,675,18,4156,141,125,16,46214,6299 +2040,9,2012,558,105504,1052,28,6484,220,195,25,67818,9829 +2040,9,2013,564,106601,1063,28,6556,223,197,26,65519,9938 +2040,9,2014,721,136290,1360,36,8383,285,252,33,78639,12706 +2040,9,2015,835,157896,1575,42,9711,330,292,38,85199,14720 +2040,9,2016,947,178938,1785,48,11006,374,331,43,86668,16682 +2040,9,2017,1070,202255,2018,54,12440,422,374,49,93366,18855 +2040,9,2018,1540,291026,2903,78,17900,608,538,70,124995,27131 +2040,9,2019,1666,314944,3142,84,19371,658,582,76,132457,29361 +2040,9,2020,1813,342661,3418,91,21075,716,633,82,137361,31945 +2040,9,2021,1980,374221,3733,100,23016,782,691,90,104268,34887 +2040,9,2022,2132,402926,4020,108,24782,842,744,97,108039,37563 +2040,9,2023,2385,450786,4497,120,27726,942,833,108,117811,42025 +2040,9,2024,2662,503142,5019,134,30946,1051,930,121,128340,46906 +2040,9,2025,2958,559135,5578,149,34390,1168,1033,134,139378,52126 +2040,9,2026,3295,622647,6211,166,38296,1300,1150,149,133671,58047 +2040,9,2027,3726,704203,7025,188,43312,1471,1301,169,147244,65650 +2040,9,2028,4234,800249,7983,214,49219,1671,1479,192,162707,74604 +2040,9,2029,4790,905324,9031,242,55682,1891,1673,217,179354,84400 +2040,9,2030,5477,1035154,10327,276,63667,2162,1913,248,199031,96503 +2040,9,2031,6298,1190266,11874,318,73207,2486,2199,286,214047,110964 +2040,9,2032,7181,1357107,13538,362,83469,2834,2507,326,236576,126517 +2040,9,2033,8250,1559196,15554,416,95898,3257,2881,374,262668,145357 +2040,9,2034,9588,1812043,18077,484,111450,3785,3348,435,294547,168929 +2040,9,2035,11178,2112521,21074,564,129930,4412,3903,507,330250,196942 +2040,9,2036,13236,2501599,24956,668,153861,5225,4622,600,374348,233214 +2040,9,2037,16127,3047964,30406,814,187465,6366,5632,731,434056,284149 +2040,9,2038,20673,3907017,38976,1043,240301,8160,7219,937,524938,364235 +2040,9,2039,27839,5261421,52488,1405,323603,10989,9721,1262,657709,490500 +2040,9,2040,52499,9921979,98981,2649,610249,20723,18332,2380,1105935,924983 +2040,10,2010,5453,1045676,10593,286,61209,2190,1937,250,779401,97754 +2040,10,2011,652,124921,1266,34,7316,262,232,30,87156,11683 +2040,10,2012,1017,194820,1974,53,11414,408,361,47,127947,18229 +2040,10,2013,1028,196899,1996,54,11541,413,365,47,123648,18432 +2040,10,2014,1314,251737,2551,69,14756,528,467,60,148470,23566 +2040,10,2015,1523,291643,2956,80,17095,611,541,70,160929,27301 +2040,10,2016,1726,330510,3350,91,19373,693,613,79,164082,30940 +2040,10,2017,1951,373578,3786,102,21897,783,693,89,176829,34971 +2040,10,2018,2807,537544,5448,147,31508,1127,997,129,237037,50321 +2040,10,2019,3038,581722,5896,159,34098,1220,1079,139,251230,54456 +2040,10,2020,3305,632916,6415,174,37099,1327,1174,151,260838,59248 +2040,10,2021,3609,691209,7006,190,40516,1449,1282,165,203205,64705 +2040,10,2022,3886,744230,7543,204,43623,1560,1380,178,210635,69669 +2040,10,2023,4348,832629,8439,228,48805,1746,1544,199,229678,77944 +2040,10,2024,4853,929334,9419,255,54474,1948,1724,222,250196,86997 +2040,10,2025,5393,1032758,10467,283,60536,2165,1915,247,271703,96678 +2040,10,2026,6005,1150068,11656,315,67412,2411,2133,275,263568,107660 +2040,10,2027,6792,1300706,13183,357,76242,2727,2412,311,290243,121762 +2040,10,2028,7718,1478111,14981,405,86640,3099,2741,354,320618,138369 +2040,10,2029,8732,1672187,16948,458,98016,3506,3101,400,353311,156537 +2040,10,2030,9984,1911994,19379,524,112073,4009,3546,458,391928,178986 +2040,10,2031,11480,2198493,22283,603,128866,4609,4077,526,422838,205805 +2040,10,2032,13089,2506661,25406,687,146929,5255,4649,600,467079,234654 +2040,10,2033,15038,2879933,29189,790,168809,6038,5341,689,518262,269596 +2040,10,2034,17477,3346956,33923,918,196184,7017,6207,801,580760,313315 +2040,10,2035,20375,3901957,39548,1070,228716,8181,7237,934,650645,365270 +2040,10,2036,24127,4620611,46832,1267,270840,9687,8570,1106,736847,432544 +2040,10,2037,29397,5629783,57060,1544,329993,11803,10441,1347,853441,527014 +2040,10,2038,37682,7216494,73143,1979,422999,15130,13384,1727,1030736,675551 +2040,10,2039,50745,9718164,98498,2664,569635,20375,18024,2326,1289119,909737 +2040,10,2040,95695,18326468,185747,5025,1074216,38422,33989,4386,2160848,1715578 +2040,11,2010,2324,500444,6045,223,26406,1038,918,118,1066491,45985 +2040,11,2011,278,59724,722,27,3156,124,110,14,118406,5496 +2040,11,2012,433,93046,1126,42,4924,193,171,22,172599,8575 +2040,11,2013,438,93941,1137,42,4979,195,173,22,165874,8671 +2040,11,2014,560,120105,1454,54,6366,250,221,28,197544,11086 +2040,11,2015,649,139144,1684,62,7375,290,256,33,212126,12843 +2040,11,2016,735,157688,1909,70,8358,328,290,37,212865,14555 +2040,11,2017,831,178236,2158,80,9447,371,328,42,227574,16451 +2040,11,2018,1196,256465,3104,115,13593,534,472,61,301296,23672 +2040,11,2019,1294,277543,3360,124,14710,578,511,66,318084,25617 +2040,11,2020,1408,301968,3655,135,16005,628,556,71,327350,27872 +2040,11,2021,1538,329779,3992,147,17479,686,607,78,236738,30439 +2040,11,2022,1656,355076,4298,159,18820,739,654,84,242680,32774 +2040,11,2023,1853,397253,4809,178,21055,827,731,94,262587,36666 +2040,11,2024,2068,443390,5367,198,23500,923,816,105,283897,40925 +2040,11,2025,2298,492734,5965,220,26116,1025,907,117,306036,45479 +2040,11,2026,2559,548703,6642,245,29082,1142,1010,130,283478,50645 +2040,11,2027,2894,620574,7512,277,32891,1291,1142,147,308961,57279 +2040,11,2028,3289,705215,8537,315,37377,1467,1298,167,337429,65091 +2040,11,2029,3721,797809,9657,357,42285,1660,1469,189,367776,73638 +2040,11,2030,4255,912222,11042,408,48349,1898,1679,216,402633,84198 +2040,11,2031,4892,1048912,12697,469,55594,2183,1931,248,422238,96815 +2040,11,2032,5578,1195941,14477,535,63387,2489,2201,283,459166,110385 +2040,11,2033,6409,1374032,16633,614,72826,2859,2529,325,500333,126823 +2040,11,2034,7448,1596850,19330,714,84635,3323,2939,378,549560,147389 +2040,11,2035,8683,1861644,22535,832,98670,3874,3427,440,601561,171830 +2040,11,2036,10282,2204516,26686,985,116842,4587,4058,521,662548,203477 +2040,11,2037,12528,2685998,32514,1200,142361,5589,4944,635,741586,247918 +2040,11,2038,16058,3443031,41678,1539,182485,7165,6338,814,856933,317792 +2040,11,2039,21625,4636586,56126,2072,245745,9648,8535,1097,1007479,427957 +2040,11,2040,40781,8743656,105841,3908,463426,18194,16095,2068,1499767,807039 +2040,12,2010,6511,1382727,12173,398,66559,2880,2548,308,1305961,120577 +2040,12,2011,778,165249,1455,48,7955,344,304,37,145945,14411 +2040,12,2012,1214,257812,2270,74,12412,537,475,58,214118,22485 +2040,12,2013,1228,260663,2295,75,12550,543,480,58,206824,22735 +2040,12,2014,1569,333259,2934,96,16045,694,614,74,248159,29067 +2040,12,2015,1818,386089,3399,111,18589,804,711,86,268760,33675 +2040,12,2016,2061,437543,3852,126,21066,911,806,98,275709,38163 +2040,12,2017,2329,494557,4354,142,23811,1030,911,110,296894,43136 +2040,12,2018,3351,711622,6265,205,34262,1482,1311,159,398991,62069 +2040,12,2019,3627,770107,6780,222,37078,1604,1419,172,422712,67170 +2040,12,2020,3946,837880,7377,241,40341,1745,1544,187,440232,73081 +2040,12,2021,4309,915050,8057,263,44057,1906,1686,204,368432,79812 +2040,12,2022,4640,985243,8675,283,47436,2052,1816,220,382020,85934 +2040,12,2023,5191,1102269,9705,317,53071,2296,2031,246,415821,96142 +2040,12,2024,5794,1230291,10832,354,59235,2563,2267,274,452190,107308 +2040,12,2025,6439,1367206,12038,393,65826,2848,2519,305,490242,119250 +2040,12,2026,7170,1522507,13405,438,73304,3172,2806,340,488918,132795 +2040,12,2027,8109,1721929,15161,495,82905,3587,3173,384,536833,150189 +2040,12,2028,9216,1956782,17228,563,94213,4076,3606,436,591124,170674 +2040,12,2029,10426,2213710,19491,637,106583,4611,4079,494,649416,193084 +2040,12,2030,11921,2531176,22286,728,121868,5273,4664,565,717785,220773 +2040,12,2031,13707,2910454,25625,837,140129,6063,5363,649,778342,253855 +2040,12,2032,15628,3318421,29217,955,159771,6913,6115,740,855868,289438 +2040,12,2033,17955,3812576,33568,1097,183563,7942,7026,850,944718,332539 +2040,12,2034,20867,4430835,39011,1275,213330,9230,8165,988,1052651,386465 +2040,12,2035,24327,5165572,45480,1486,248706,10760,9519,1152,1171696,450550 +2040,12,2036,28808,6116954,53857,1760,294511,12742,11272,1364,1316835,533530 +2040,12,2037,35100,7452927,65619,2144,358835,15525,13734,1662,1511283,650056 +2040,12,2038,44992,9553493,84114,2748,459970,19901,17605,2131,1804353,833272 +2040,12,2039,60589,12865280,113272,3701,619422,26800,23707,2870,2221992,1122132 +2040,12,2040,114259,24261330,213609,6980,1168105,50539,44707,5412,3622580,2116114 +2040,13,2010,1216,222426,1508,39,13227,458,405,50,184638,18906 +2040,13,2011,145,26576,180,5,1581,55,48,6,20576,2260 +2040,13,2012,227,41453,281,7,2467,85,76,9,30104,3526 +2040,13,2013,229,41902,284,7,2494,86,76,9,29015,3565 +2040,13,2014,293,53571,363,9,3189,110,98,12,34704,4558 +2040,13,2015,340,62064,421,11,3694,128,113,14,37449,5280 +2040,13,2016,385,70335,477,12,4186,145,128,16,38122,5984 +2040,13,2017,435,79500,539,14,4732,164,145,18,40928,6764 +2040,13,2018,626,114393,775,20,6809,236,209,26,54713,9732 +2040,13,2019,678,123795,839,21,7368,255,226,28,57882,10532 +2040,13,2020,737,134689,913,23,8017,278,246,31,60043,11459 +2040,13,2021,805,147094,997,25,8755,303,268,33,47627,12514 +2040,13,2022,867,158378,1074,27,9427,326,289,36,49235,13474 +2040,13,2023,970,177190,1201,31,10546,365,323,40,53483,15075 +2040,13,2024,1082,197769,1341,34,11771,408,361,45,58045,16825 +2040,13,2025,1203,219778,1490,38,13081,453,401,50,62807,18698 +2040,13,2026,1339,244743,1659,42,14567,504,446,55,61136,20822 +2040,13,2027,1515,276800,1876,48,16475,570,505,63,66972,23549 +2040,13,2028,1722,314553,2132,55,18722,648,573,71,73558,26761 +2040,13,2029,1948,355854,2412,62,21180,733,649,81,80614,30274 +2040,13,2030,2227,406886,2758,71,24218,839,742,92,88841,34616 +2040,13,2031,2561,467855,3172,81,27847,964,853,106,95368,39803 +2040,13,2032,2920,533435,3616,92,31750,1099,973,121,104526,45382 +2040,13,2033,3354,612870,4155,106,36478,1263,1117,139,114945,52140 +2040,13,2034,3898,712257,4829,123,42393,1468,1299,161,127550,60596 +2040,13,2035,4545,830365,5629,144,49423,1711,1514,188,141300,70644 +2040,13,2036,5382,983299,6666,170,58526,2026,1793,223,157904,83655 +2040,13,2037,6557,1198057,8122,208,71308,2469,2184,271,179971,101925 +2040,13,2038,8405,1535722,10411,266,91406,3165,2800,348,212980,130653 +2040,13,2039,11319,2068095,14020,358,123093,4262,3770,468,259100,175944 +2040,13,2040,21345,3900007,26439,676,232128,8038,7110,883,412930,331795 +2040,16,2010,522,97172,718,19,6812,190,168,22,68770,8535 +2040,16,2011,62,11598,86,2,814,23,20,3,7676,1020 +2040,16,2012,97,18071,133,4,1270,35,31,4,11249,1592 +2040,16,2013,98,18248,134,4,1284,36,32,4,10856,1609 +2040,16,2014,126,23330,172,5,1642,46,41,5,13011,2057 +2040,16,2015,146,27028,199,5,1902,53,47,6,14072,2384 +2040,16,2016,165,30630,226,6,2156,60,53,7,14333,2701 +2040,16,2017,187,34621,255,7,2437,68,60,8,15418,3053 +2040,16,2018,269,49817,367,10,3506,98,87,11,20643,4393 +2040,16,2019,291,53911,397,11,3795,106,94,12,21860,4755 +2040,16,2020,316,58656,432,11,4129,115,102,13,22686,5173 +2040,16,2021,345,64058,472,13,4509,126,111,15,17298,5649 +2040,16,2022,372,68972,508,14,4855,135,120,16,17935,6083 +2040,16,2023,416,77164,569,15,5431,152,134,18,19530,6805 +2040,16,2024,464,86126,635,17,6062,169,150,20,21246,7596 +2040,16,2025,516,95711,705,19,6737,188,166,22,23043,8441 +2040,16,2026,575,106583,785,21,7502,209,185,24,22116,9400 +2040,16,2027,650,120543,888,24,8485,237,209,28,24316,10631 +2040,16,2028,739,136984,1009,27,9642,269,238,31,26815,12081 +2040,16,2029,836,154970,1142,30,10908,304,269,36,29501,13667 +2040,16,2030,955,177194,1306,35,12472,348,308,41,32661,15627 +2040,16,2031,1098,203746,1501,40,14341,400,354,47,35061,17969 +2040,16,2032,1252,232305,1712,45,16351,456,404,53,38645,20487 +2040,16,2033,1439,266898,1967,52,18786,524,464,61,42775,23538 +2040,16,2034,1672,310180,2286,61,21832,609,539,71,47805,27355 +2040,16,2035,1950,361615,2665,71,25453,710,628,83,53394,31891 +2040,16,2036,2309,428216,3155,84,30140,841,744,98,60252,37765 +2040,16,2037,2813,521742,3845,102,36723,1025,907,120,69489,46013 +2040,16,2038,3606,668790,4928,131,47073,1314,1162,153,83477,58982 +2040,16,2039,4856,900633,6637,176,63392,1769,1565,206,103662,79428 +2040,16,2040,9157,1698410,12515,333,119544,3337,2952,389,171579,149785 +2040,17,2010,1653,336197,2734,81,18473,699,618,74,271792,28661 +2040,17,2011,198,40166,327,10,2208,84,74,9,30366,3426 +2040,17,2012,308,62644,509,15,3445,130,115,14,44541,5345 +2040,17,2013,312,63316,515,15,3483,132,117,14,43015,5404 +2040,17,2014,399,80950,658,20,4453,168,149,18,51600,6909 +2040,17,2015,462,93783,763,23,5159,195,173,21,55868,8005 +2040,17,2016,523,106281,864,26,5847,221,196,24,57066,9071 +2040,17,2017,591,120130,977,29,6609,250,221,27,61440,10253 +2040,17,2018,851,172856,1406,42,9509,360,318,38,82398,14754 +2040,17,2019,921,187062,1521,45,10291,389,344,41,87290,15966 +2040,17,2020,1002,203524,1655,49,11196,424,375,45,90716,17371 +2040,17,2021,1094,222269,1807,54,12228,463,409,49,72143,18971 +2040,17,2022,1178,239319,1946,58,13166,498,441,53,74794,20426 +2040,17,2023,1318,267745,2177,65,14729,557,493,59,81462,22853 +2040,17,2024,1471,298842,2430,72,16440,622,550,66,88641,25507 +2040,17,2025,1635,332100,2700,80,18270,691,611,73,96157,28346 +2040,17,2026,1821,369823,3007,90,20345,770,681,82,94003,31565 +2040,17,2027,2059,418263,3401,101,23010,870,770,93,103345,35700 +2040,17,2028,2340,475310,3865,115,26148,989,875,105,113954,40569 +2040,17,2029,2647,537719,4372,130,29582,1119,990,119,125356,45896 +2040,17,2030,3027,614833,5000,149,33824,1279,1132,136,138771,52477 +2040,17,2031,3481,706960,5749,171,38892,1471,1301,156,149797,60341 +2040,17,2032,3969,806057,6554,195,44344,1677,1484,178,165059,68799 +2040,17,2033,4560,926088,7530,224,50947,1927,1705,205,182627,79044 +2040,17,2034,5299,1076267,8752,261,59209,2240,1981,238,204020,91862 +2040,17,2035,6178,1254737,10203,304,69027,2611,2310,278,227769,107095 +2040,17,2036,7315,1485829,12082,360,81740,3092,2735,329,256884,126819 +2040,17,2037,8913,1810345,14721,439,99592,3767,3333,401,296069,154517 +2040,17,2038,11425,2320582,18870,562,127662,4829,4272,514,355378,198067 +2040,17,2039,15386,3125028,25411,757,171917,6503,5753,692,440819,266729 +2040,17,2040,29015,5893170,47920,1428,324201,12263,10848,1304,728189,502996 +2040,18,2010,284,55718,405,11,3391,115,102,12,36777,4715 +2040,18,2011,34,6656,48,1,405,14,12,1,4110,564 +2040,18,2012,53,10379,75,2,632,21,19,2,6030,879 +2040,18,2013,54,10489,76,2,639,22,19,2,5824,889 +2040,18,2014,68,13410,97,3,818,28,24,3,6988,1137 +2040,18,2015,79,15536,113,3,947,32,28,3,7568,1317 +2040,18,2016,90,17606,128,3,1073,36,32,4,7719,1492 +2040,18,2017,102,19900,145,4,1213,41,36,4,8314,1687 +2040,18,2018,146,28635,208,5,1746,59,52,6,11144,2427 +2040,18,2019,158,30988,225,6,1889,64,57,7,11807,2627 +2040,18,2020,172,33715,245,6,2055,70,62,7,12262,2858 +2040,18,2021,188,36820,267,7,2245,76,67,8,9538,3121 +2040,18,2022,202,39645,288,8,2417,82,72,9,9892,3361 +2040,18,2023,226,44354,322,8,2704,92,81,10,10782,3760 +2040,18,2024,253,49505,359,9,3018,102,90,11,11740,4196 +2040,18,2025,281,55014,399,10,3354,114,100,12,12745,4663 +2040,18,2026,313,61263,445,12,3735,126,112,13,12355,5193 +2040,18,2027,353,69288,503,13,4224,143,126,15,13599,5873 +2040,18,2028,402,78738,572,15,4800,162,144,17,15014,6674 +2040,18,2029,454,89077,647,17,5430,184,163,19,16537,7551 +2040,18,2030,520,101851,740,19,6209,210,186,22,18334,8634 +2040,18,2031,597,117113,850,22,7140,242,214,26,19769,9927 +2040,18,2032,681,133528,970,25,8140,275,244,29,21823,11319 +2040,18,2033,783,153413,1114,29,9353,317,280,33,24197,13004 +2040,18,2034,910,178291,1295,34,10869,368,325,39,27093,15113 +2040,18,2035,1060,207855,1509,40,12672,429,379,45,30326,17619 +2040,18,2036,1256,246137,1787,47,15005,508,449,54,34308,20864 +2040,18,2037,1530,299896,2178,57,18283,619,547,65,39687,25421 +2040,18,2038,1961,384418,2791,73,23436,793,702,84,47856,32586 +2040,18,2039,2641,517682,3759,99,31560,1068,945,113,59729,43883 +2040,18,2040,4980,976241,7089,186,59515,2014,1782,213,99755,82754 +2040,19,2010,627,127229,1013,28,7460,264,234,28,76548,10840 +2040,19,2011,75,15198,121,3,892,32,28,3,8577,1296 +2040,19,2012,117,23699,189,5,1391,49,44,5,12614,2021 +2040,19,2013,118,23950,190,5,1407,50,44,5,12208,2044 +2040,19,2014,151,30620,244,7,1798,64,56,7,14691,2613 +2040,19,2015,175,35474,282,8,2083,74,65,8,15963,3027 +2040,19,2016,198,40202,320,9,2361,84,74,9,16352,3431 +2040,19,2017,224,45441,361,10,2669,94,84,10,17659,3878 +2040,19,2018,323,65385,520,14,3840,136,120,14,23755,5580 +2040,19,2019,349,70758,563,15,4156,147,130,15,25202,6039 +2040,19,2020,380,76986,612,17,4522,160,141,17,26233,6570 +2040,19,2021,415,84076,669,18,4938,175,155,18,20696,7175 +2040,19,2022,447,90525,720,20,5317,188,166,20,21526,7726 +2040,19,2023,500,101278,806,22,5948,210,186,22,23519,8643 +2040,19,2024,558,113041,899,25,6639,235,208,25,25668,9647 +2040,19,2025,620,125621,999,27,7378,261,231,27,27926,10721 +2040,19,2026,691,139890,1113,30,8216,291,257,31,27318,11938 +2040,19,2027,781,158213,1258,34,9292,329,291,35,30159,13502 +2040,19,2028,888,179792,1430,39,10560,373,330,39,33408,15344 +2040,19,2029,1004,203399,1618,44,11946,423,374,45,36912,17358 +2040,19,2030,1148,232568,1850,51,13659,483,427,51,41074,19848 +2040,19,2031,1320,267417,2127,58,15706,556,491,59,44566,22822 +2040,19,2032,1505,304901,2425,66,17907,633,560,67,49405,26021 +2040,19,2033,1729,350305,2786,76,20574,728,644,77,55043,29895 +2040,19,2034,2010,407111,3238,89,23910,846,748,89,61952,34743 +2040,19,2035,2343,474619,3775,103,27875,986,872,104,69751,40505 +2040,19,2036,2775,562035,4470,122,33009,1168,1033,123,79449,47965 +2040,19,2037,3381,684785,5447,149,40219,1423,1258,150,92651,58440 +2040,19,2038,4333,877789,6982,191,51554,1823,1613,192,112843,74912 +2040,19,2039,5836,1182081,9402,258,69426,2456,2172,259,142700,100880 +2040,19,2040,11005,2229165,17730,486,130923,4631,4096,488,243810,190240 +2040,20,2010,705,139229,1107,32,7942,287,254,31,127682,11756 +2040,20,2011,84,16631,132,4,949,34,30,4,14238,1405 +2040,20,2012,131,25933,206,6,1481,53,47,6,20845,2192 +2040,20,2013,133,26207,208,6,1497,54,48,6,20101,2217 +2040,20,2014,170,33506,266,8,1915,69,61,7,24060,2834 +2040,20,2015,197,38817,309,9,2218,80,71,9,25987,3283 +2040,20,2016,223,43991,350,10,2514,91,80,10,26453,3721 +2040,20,2017,252,49723,395,11,2841,103,91,11,28422,4206 +2040,20,2018,363,71546,569,16,4088,148,130,16,38010,6052 +2040,20,2019,393,77426,616,18,4424,160,141,17,40227,6549 +2040,20,2020,427,84240,670,19,4814,174,154,19,41729,7125 +2040,20,2021,466,91999,731,21,5257,190,168,20,32726,7781 +2040,20,2022,502,99056,788,23,5660,204,181,22,33853,8378 +2040,20,2023,562,110822,881,25,6332,228,202,25,36804,9374 +2040,20,2024,627,123693,983,28,7068,255,226,28,39975,10462 +2040,20,2025,697,137459,1093,32,7854,283,251,31,43288,11627 +2040,20,2026,776,153073,1217,35,8747,316,279,34,41968,12947 +2040,20,2027,878,173123,1376,40,9892,357,316,38,46028,14643 +2040,20,2028,997,196735,1564,45,11242,406,359,44,50620,16640 +2040,20,2029,1128,222566,1769,51,12718,459,406,49,55544,18825 +2040,20,2030,1290,254484,2023,59,14541,525,464,57,61304,21525 +2040,20,2031,1484,292617,2326,67,16720,603,534,65,65815,24750 +2040,20,2032,1692,333633,2652,77,19064,688,609,74,72266,28219 +2040,20,2033,1943,383315,3047,88,21903,790,699,85,79636,32422 +2040,20,2034,2259,445476,3542,102,25455,918,813,99,88574,37679 +2040,20,2035,2633,519346,4129,119,29676,1071,947,115,98385,43927 +2040,20,2036,3118,614997,4889,141,35141,1268,1122,137,110297,52018 +2040,20,2037,3799,749317,5957,172,42816,1545,1367,167,126203,63379 +2040,20,2038,4870,960508,7636,221,54884,1980,1752,214,150098,81242 +2040,20,2039,6558,1293475,10283,298,73910,2667,2359,288,183871,109405 +2040,20,2040,12367,2439233,19392,561,139379,5029,4449,542,296874,206315 +2040,21,2010,395,77406,560,14,4540,160,141,17,51314,6568 +2040,21,2011,47,9249,67,2,543,19,17,2,5736,785 +2040,21,2012,74,14426,104,3,847,30,26,3,8418,1225 +2040,21,2013,75,14583,105,3,856,30,27,3,8134,1238 +2040,21,2014,95,18644,135,3,1094,38,34,4,9763,1583 +2040,21,2015,110,21600,156,4,1268,45,39,5,10578,1834 +2040,21,2016,125,24479,177,5,1437,51,45,5,10827,2079 +2040,21,2017,141,27668,200,5,1624,57,51,6,11664,2350 +2040,21,2018,203,39812,288,7,2337,82,73,9,15664,3381 +2040,21,2019,220,43084,312,8,2529,89,79,9,16599,3659 +2040,21,2020,240,46876,339,9,2752,97,86,10,17270,3981 +2040,21,2021,262,51193,370,10,3005,106,93,11,13919,4347 +2040,21,2022,282,55120,399,10,3236,114,101,12,14445,4681 +2040,21,2023,315,61667,446,12,3620,127,113,13,15740,5237 +2040,21,2024,352,68829,498,13,4040,142,126,15,17135,5845 +2040,21,2025,391,76489,553,14,4490,158,140,17,18596,6495 +2040,21,2026,435,85177,616,16,5000,176,156,19,18295,7233 +2040,21,2027,492,96334,697,18,5655,199,176,21,20124,8181 +2040,21,2028,559,109473,792,20,6426,226,200,24,22203,9297 +2040,21,2029,633,123847,896,23,7270,256,226,27,24439,10517 +2040,21,2030,724,141608,1024,26,8312,292,259,31,27073,12025 +2040,21,2031,832,162827,1178,30,9558,336,297,36,29301,13827 +2040,21,2032,949,185651,1343,35,10898,383,339,41,32311,15766 +2040,21,2033,1090,213297,1543,40,12521,440,390,47,35781,18113 +2040,21,2034,1267,247886,1793,46,14551,512,453,54,40010,21051 +2040,21,2035,1477,288991,2091,54,16964,597,528,63,44715,24541 +2040,21,2036,1749,342216,2476,64,20088,707,625,75,50495,29061 +2040,21,2037,2131,416958,3016,78,24476,861,762,91,58285,35408 +2040,21,2038,2732,534475,3866,100,31374,1103,976,117,70094,45388 +2040,21,2039,3678,719756,5207,135,42250,1486,1315,157,87168,61122 +2040,21,2040,6937,1357313,9819,254,79675,2802,2479,297,144650,115264 +2040,22,2010,1032,201913,1530,43,10564,418,370,45,158120,17403 +2040,22,2011,123,24130,183,5,1263,50,44,5,17668,2080 +2040,22,2012,192,37645,285,8,1970,78,69,8,25917,3245 +2040,22,2013,195,38060,288,8,1992,79,70,9,25031,3281 +2040,22,2014,249,48660,369,10,2547,101,89,11,30029,4195 +2040,22,2015,288,56374,427,12,2950,117,103,13,32516,4860 +2040,22,2016,327,63887,484,14,3344,132,117,14,33301,5508 +2040,22,2017,369,72212,547,15,3779,149,132,16,35855,6226 +2040,22,2018,531,103907,787,22,5438,215,190,23,48144,8958 +2040,22,2019,575,112446,852,24,5885,233,206,25,51004,9695 +2040,22,2020,625,122342,927,26,6403,253,224,27,53075,10548 +2040,22,2021,683,133610,1013,29,6993,277,245,30,43863,11519 +2040,22,2022,735,143859,1090,31,7529,298,263,32,45466,12403 +2040,22,2023,823,160946,1220,34,8423,333,295,36,49498,13876 +2040,22,2024,918,179639,1361,38,9402,372,329,40,53837,15488 +2040,22,2025,1020,199631,1513,43,10448,413,365,45,58378,17211 +2040,22,2026,1136,222307,1685,48,11635,460,407,50,57953,19166 +2040,22,2027,1285,251425,1906,54,13159,520,460,56,63658,21677 +2040,22,2028,1460,285717,2165,61,14953,591,523,64,70125,24633 +2040,22,2029,1652,323232,2450,69,16917,669,592,72,77072,27868 +2040,22,2030,1889,369586,2801,79,19343,765,677,83,85228,31864 +2040,22,2031,2172,424966,3221,91,22241,879,778,95,92340,36639 +2040,22,2032,2477,484535,3672,104,25358,1003,887,108,101603,41775 +2040,22,2033,2845,556687,4219,119,29135,1152,1019,124,112234,47995 +2040,22,2034,3307,646962,4903,139,33859,1339,1184,145,125158,55779 +2040,22,2035,3855,754244,5716,162,39474,1561,1381,169,139441,65028 +2040,22,2036,4565,893158,6769,191,46744,1848,1635,200,156887,77005 +2040,22,2037,5562,1088229,8247,233,56953,2252,1992,243,180293,93823 +2040,22,2038,7130,1394941,10572,299,73005,2887,2554,312,215619,120267 +2040,22,2039,9601,1878507,14237,402,98313,3888,3439,420,266136,161958 +2040,22,2040,18106,3542485,26848,759,185398,7331,6485,791,435710,305419 +2040,23,2010,958,172707,1522,36,11695,357,316,41,108035,15915 +2040,23,2011,114,20622,182,4,1398,43,38,5,12087,1902 +2040,23,2012,179,32146,283,7,2181,67,59,8,17752,2968 +2040,23,2013,181,32474,286,7,2205,67,60,8,17162,3001 +2040,23,2014,231,41518,366,9,2819,86,76,10,20619,3837 +2040,23,2015,268,48100,424,10,3266,100,88,11,22364,4445 +2040,23,2016,303,54510,481,11,3702,113,100,13,22746,5037 +2040,23,2017,343,61613,543,13,4184,128,113,15,24529,5694 +2040,23,2018,493,88655,782,18,6020,184,163,21,32857,8193 +2040,23,2019,534,95941,846,20,6515,199,176,23,34836,8866 +2040,23,2020,581,104385,920,22,7089,217,192,25,36128,9646 +2040,23,2021,634,113999,1005,24,7741,236,209,27,26999,10535 +2040,23,2022,683,122743,1082,25,8335,255,225,29,28013,11343 +2040,23,2023,764,137323,1211,28,9325,285,252,33,30594,12690 +2040,23,2024,852,153272,1351,32,10408,318,281,36,33378,14164 +2040,23,2025,947,170329,1502,35,11567,353,313,41,36302,15740 +2040,23,2026,1055,189676,1672,39,12880,393,348,45,34659,17528 +2040,23,2027,1193,214521,1891,44,14568,445,394,51,38268,19824 +2040,23,2028,1356,243779,2149,50,16555,506,447,58,42395,22528 +2040,23,2029,1534,275788,2432,57,18728,572,506,66,46847,25486 +2040,23,2030,1754,315338,2780,65,21414,654,579,75,52136,29140 +2040,23,2031,2017,362590,3197,75,24623,752,665,86,56160,33507 +2040,23,2032,2299,413415,3645,85,28074,858,759,98,62287,38204 +2040,23,2033,2642,474977,4188,98,32255,985,872,113,69429,43893 +2040,23,2034,3070,552001,4867,114,37485,1145,1013,131,78186,51011 +2040,23,2035,3579,643536,5674,133,43701,1335,1181,153,88083,59469 +2040,23,2036,4238,762060,6719,157,51750,1581,1398,181,100401,70422 +2040,23,2037,5164,928498,8186,192,63052,1926,1704,221,117181,85803 +2040,23,2038,6619,1190191,10494,246,80823,2469,2184,283,142863,109986 +2040,23,2039,8914,1602781,14131,331,108841,3325,2941,382,180900,148113 +2040,23,2040,16810,3022514,26649,623,205253,6270,5546,720,309767,279312 +2040,24,2010,1888,386238,3144,94,21391,800,708,86,261262,33466 +2040,24,2011,226,46148,376,11,2557,96,85,10,29261,4000 +2040,24,2012,352,71981,586,18,3989,149,132,16,43022,6241 +2040,24,2013,356,72759,592,18,4033,151,133,16,41626,6310 +2040,24,2014,455,93023,757,23,5157,193,171,21,50069,8068 +2040,24,2015,527,107770,877,26,5974,223,198,24,54378,9347 +2040,24,2016,598,122132,994,30,6770,253,224,27,55772,10592 +2040,24,2017,676,138047,1124,34,7653,286,253,31,60202,11972 +2040,24,2018,972,198637,1617,48,11011,412,364,44,81009,17227 +2040,24,2019,1052,214961,1750,52,11916,446,394,48,85926,18643 +2040,24,2020,1145,233879,1904,57,12965,485,429,52,89491,20284 +2040,24,2021,1250,255420,2080,62,14159,530,468,57,72105,22152 +2040,24,2022,1346,275012,2239,67,15245,570,504,61,74958,23851 +2040,24,2023,1506,307679,2505,75,17056,638,564,68,81825,26684 +2040,24,2024,1681,343414,2796,84,19037,712,630,76,89230,29783 +2040,24,2025,1868,381631,3107,93,21156,791,700,85,97001,33098 +2040,24,2026,2080,424980,3460,104,23559,881,779,94,95609,36858 +2040,24,2027,2352,480645,3913,117,26645,997,882,107,105412,41685 +2040,24,2028,2673,546201,4447,133,30279,1132,1002,121,116596,47371 +2040,24,2029,3024,617917,5031,151,34254,1281,1133,137,128645,53591 +2040,24,2030,3458,706533,5752,172,39167,1465,1296,157,142916,61276 +2040,24,2031,3976,812401,6614,198,45035,1684,1490,181,155169,70458 +2040,24,2032,4533,926277,7541,226,51348,1921,1699,206,171675,80334 +2040,24,2033,5208,1064211,8664,260,58994,2206,1952,237,190829,92297 +2040,24,2034,6053,1236790,10069,302,68561,2564,2268,275,214256,107264 +2040,24,2035,7056,1441876,11739,352,79930,2990,2645,321,240566,125051 +2040,24,2036,8356,1707437,13901,417,94652,3540,3132,380,273137,148082 +2040,24,2037,10181,2080354,16937,508,115324,4313,3816,462,317320,180424 +2040,24,2038,13050,2666687,21711,651,147828,5529,4891,593,384685,231276 +2040,24,2039,17574,3591116,29237,877,199073,7446,6587,798,483519,311450 +2040,24,2040,33141,6772113,55136,1653,375412,14041,12421,1506,817540,587331 +2040,25,2010,11702,2272908,24138,695,135488,4691,4149,546,1980986,210869 +2040,25,2011,1399,271395,2883,83,16193,561,496,65,221196,25203 +2040,25,2012,2182,423040,4495,130,25266,874,773,102,324249,39323 +2040,25,2013,2206,427338,4542,131,25547,884,782,103,312997,39761 +2040,25,2014,2821,546355,5807,168,32662,1130,1000,132,375215,50834 +2040,25,2015,3268,632966,6727,194,37840,1309,1158,153,405949,58893 +2040,25,2016,3704,717321,7624,220,42883,1484,1313,173,411834,66741 +2040,25,2017,4186,810792,8617,249,48470,1677,1484,195,443146,75438 +2040,25,2018,6024,1166654,12400,358,69745,2413,2135,281,592103,108548 +2040,25,2019,6519,1262537,13419,387,75477,2612,2310,304,627094,117469 +2040,25,2020,7092,1373645,14600,421,82119,2841,2514,331,649363,127807 +2040,25,2021,7746,1500159,15944,460,89682,3103,2745,362,484819,139578 +2040,25,2022,8340,1615234,17167,496,96561,3341,2956,389,501579,150285 +2040,25,2023,9330,1807091,19207,554,108031,3738,3307,435,546403,168136 +2040,25,2024,10414,2016974,21437,619,120578,4172,3691,486,594664,187664 +2040,25,2025,11573,2241438,23823,688,133997,4636,4101,540,645202,208548 +2040,25,2026,12888,2496042,26529,766,149218,5163,4567,602,613204,232237 +2040,25,2027,14576,2822978,30004,866,168763,5839,5166,680,674651,262656 +2040,25,2028,16564,3208006,34096,984,191780,6636,5870,773,744513,298480 +2040,25,2029,18739,3629221,38573,1113,216961,7507,6641,875,819651,337671 +2040,25,2030,21426,4149680,44105,1273,248075,8584,7593,1000,908214,386096 +2040,25,2031,24636,4771488,50713,1464,285248,9870,8731,1150,972493,443949 +2040,25,2032,28090,5440306,57822,1669,325231,11253,9955,1311,1073039,506179 +2040,25,2033,32273,6250444,66432,1917,373662,12929,11437,1506,1189104,581556 +2040,25,2034,37506,7264035,77205,2228,434257,15026,13292,1751,1330658,675863 +2040,25,2035,43725,8468585,90008,2598,506267,17517,15496,2041,1488433,787937 +2040,25,2036,51779,10028307,106585,3076,599510,20743,18350,2417,1682527,933057 +2040,25,2037,63087,12218549,129864,3748,730446,25274,22358,2945,1944477,1136842 +2040,25,2038,80868,15662278,166465,4805,936318,32397,28659,3775,2341997,1457255 +2040,25,2039,108902,21091718,224172,6470,1260900,43628,38594,5083,2918418,1962422 +2040,25,2040,205367,39774780,422743,12202,2377802,82273,72780,9585,4860533,3700733 +2040,26,2010,1366,270538,2005,53,16828,558,494,59,166437,22911 +2040,26,2011,163,32312,239,6,2011,67,59,7,18617,2738 +2040,26,2012,255,50379,373,10,3138,104,92,11,27339,4272 +2040,26,2013,258,50904,377,10,3173,105,93,11,26426,4320 +2040,26,2014,329,65081,482,13,4057,134,119,14,31743,5523 +2040,26,2015,382,75398,558,15,4700,156,138,16,34422,6399 +2040,26,2016,432,85446,633,17,5326,177,156,19,35115,7251 +2040,26,2017,489,96580,715,19,6020,200,177,21,37858,8196 +2040,26,2018,703,138971,1029,27,8663,287,254,30,50781,11794 +2040,26,2019,761,150392,1114,30,9374,311,275,33,53832,12763 +2040,26,2020,828,163627,1212,32,10200,338,299,36,55915,13886 +2040,26,2021,904,178697,1323,35,11139,369,327,39,42980,15165 +2040,26,2022,974,192405,1425,38,11993,398,352,42,44622,16328 +2040,26,2023,1089,215259,1594,42,13418,445,393,47,48695,18268 +2040,26,2024,1216,240260,1779,47,14976,496,439,52,53087,20390 +2040,26,2025,1351,266997,1977,53,16643,552,488,58,57695,22659 +2040,26,2026,1504,297325,2202,58,18533,614,544,65,55730,25233 +2040,26,2027,1702,336271,2490,66,20961,695,615,73,61450,28538 +2040,26,2028,1934,382134,2830,75,23820,790,699,83,67978,32430 +2040,26,2029,2187,432309,3201,85,26947,893,790,94,75010,36688 +2040,26,2030,2501,494305,3660,97,30812,1021,904,108,83342,41949 +2040,26,2031,2876,568374,4209,112,35429,1175,1039,124,89954,48235 +2040,26,2032,3279,648043,4798,128,40395,1339,1185,142,99562,54996 +2040,26,2033,3767,744545,5513,146,46410,1539,1361,163,110719,63186 +2040,26,2034,4378,865285,6407,170,53937,1788,1582,189,124371,73433 +2040,26,2035,5104,1008768,7469,198,62880,2085,1844,220,139718,85609 +2040,26,2036,6044,1194560,8845,235,74462,2469,2184,261,158735,101377 +2040,26,2037,7365,1455458,10777,286,90724,3008,2661,318,184549,123518 +2040,26,2038,9440,1865672,13814,367,116295,3855,3410,408,223934,158331 +2040,26,2039,12713,2512422,18603,494,156609,5192,4593,549,281806,213218 +2040,26,2040,23974,4737916,35082,932,295332,9791,8661,1035,477475,402086 +2040,27,2010,463,91332,662,19,5671,186,165,20,58909,7792 +2040,27,2011,55,10905,79,2,678,22,20,2,6587,931 +2040,27,2012,86,16998,123,4,1057,35,31,4,9668,1453 +2040,27,2013,87,17171,124,4,1069,35,31,4,9342,1469 +2040,27,2014,112,21953,159,5,1367,45,40,5,11216,1878 +2040,27,2015,129,25433,184,5,1584,52,46,6,12156,2176 +2040,27,2016,146,28822,209,6,1795,59,52,6,12381,2466 +2040,27,2017,165,32578,236,7,2029,67,59,7,13342,2787 +2040,27,2018,238,46877,339,10,2919,96,85,10,17878,4011 +2040,27,2019,258,50730,367,11,3159,104,92,11,18948,4341 +2040,27,2020,280,55194,400,12,3437,113,100,12,19664,4723 +2040,27,2021,306,60277,436,13,3754,123,109,13,14960,5157 +2040,27,2022,330,64901,470,14,4042,133,117,14,15519,5553 +2040,27,2023,369,72610,526,15,4522,148,131,16,16930,6213 +2040,27,2024,412,81043,587,17,5047,166,146,18,18452,6934 +2040,27,2025,457,90063,652,19,5608,184,163,20,20047,7706 +2040,27,2026,509,100293,726,21,6245,205,181,22,19266,8581 +2040,27,2027,576,113429,821,24,7064,232,205,25,21236,9705 +2040,27,2028,655,128900,933,27,8027,263,233,29,23483,11029 +2040,27,2029,741,145825,1056,30,9081,298,264,32,25904,12477 +2040,27,2030,847,166737,1207,35,10383,341,301,37,28769,14266 +2040,27,2031,974,191722,1388,40,11939,392,347,42,30989,16404 +2040,27,2032,1110,218595,1583,46,13613,447,395,48,34284,18703 +2040,27,2033,1276,251147,1818,53,15640,513,454,56,38107,21489 +2040,27,2034,1483,291874,2113,61,18176,596,528,65,42783,24973 +2040,27,2035,1728,340274,2464,71,21190,695,615,75,48034,29115 +2040,27,2036,2047,402944,2918,84,25092,823,728,89,54534,34477 +2040,27,2037,2494,490950,3555,103,30573,1003,887,109,63351,42007 +2040,27,2038,3196,629322,4557,132,39190,1286,1138,139,76792,53846 +2040,27,2039,4305,847480,6136,177,52775,1732,1532,187,96509,72512 +2040,27,2040,8118,1598176,11572,334,99523,3266,2889,353,163143,136743 +2040,28,2010,394,76208,546,15,4299,157,139,17,58286,6541 +2040,28,2011,47,9107,65,2,514,19,17,2,6507,782 +2040,28,2012,73,14206,102,3,802,29,26,3,9538,1220 +2040,28,2013,74,14361,103,3,811,30,26,3,9206,1233 +2040,28,2014,95,18361,132,4,1036,38,33,4,11035,1577 +2040,28,2015,110,21272,152,4,1201,44,39,5,11936,1827 +2040,28,2016,125,24106,173,5,1361,50,44,5,12221,2070 +2040,28,2017,141,27248,195,5,1538,56,50,6,13147,2340 +2040,28,2018,203,39207,281,8,2213,81,71,9,17644,3367 +2040,28,2019,219,42429,304,8,2395,87,77,9,18684,3644 +2040,28,2020,239,46163,331,9,2606,95,84,10,19440,3965 +2040,28,2021,261,50415,361,10,2846,104,92,11,15966,4330 +2040,28,2022,281,54282,389,10,3064,112,99,12,16549,4662 +2040,28,2023,314,60730,435,12,3428,125,110,13,18003,5216 +2040,28,2024,350,67783,486,13,3826,139,123,15,19567,5821 +2040,28,2025,389,75326,540,14,4252,155,137,17,21202,6469 +2040,28,2026,434,83883,601,16,4735,172,153,19,20978,7204 +2040,28,2027,490,94870,680,18,5355,195,173,21,23021,8148 +2040,28,2028,557,107809,772,21,6086,222,196,24,25334,9259 +2040,28,2029,630,121965,874,23,6885,251,222,27,27815,10475 +2040,28,2030,721,139455,999,27,7872,287,254,31,30722,11977 +2040,28,2031,829,160352,1149,31,9051,330,292,35,33215,13771 +2040,28,2032,945,182828,1310,35,10320,376,332,40,36496,15702 +2040,28,2033,1086,210054,1505,40,11857,432,382,46,40250,18040 +2040,28,2034,1262,244117,1749,47,13780,502,444,54,44807,20965 +2040,28,2035,1471,284597,2039,54,16065,585,518,63,49819,24442 +2040,28,2036,1742,337014,2415,65,19024,693,613,74,55918,28944 +2040,28,2037,2122,410620,2942,79,23178,844,747,91,64075,35265 +2040,28,2038,2721,526350,3771,101,29711,1082,957,116,76348,45204 +2040,28,2039,3664,708814,5079,136,40011,1457,1289,157,93764,60875 +2040,28,2040,6909,1336680,9577,256,75452,2748,2431,295,152102,114798 +2040,29,2010,1316,253266,1835,47,14976,523,462,56,190875,21372 +2040,29,2011,157,30258,219,6,1790,62,55,7,21300,2554 +2040,29,2012,245,47190,342,9,2793,97,86,10,31204,3986 +2040,29,2013,248,47696,345,9,2824,99,87,10,30107,4030 +2040,29,2014,317,60979,442,11,3610,126,111,13,36066,5152 +2040,29,2015,368,70646,512,13,4182,146,129,16,38988,5969 +2040,29,2016,417,80061,580,15,4740,165,146,18,39706,6765 +2040,29,2017,471,90494,655,17,5358,187,165,20,42695,7646 +2040,29,2018,677,130212,943,24,7709,269,238,29,57135,11002 +2040,29,2019,733,140913,1021,26,8343,291,257,31,60490,11906 +2040,29,2020,798,153314,1111,29,9077,317,280,34,62767,12954 +2040,29,2021,871,167435,1213,31,9913,346,306,37,49221,14147 +2040,29,2022,938,180278,1306,34,10673,372,329,40,50949,15232 +2040,29,2023,1049,201692,1461,38,11941,417,369,44,55437,17041 +2040,29,2024,1171,225117,1631,42,13328,465,411,50,60265,19021 +2040,29,2025,1302,250170,1812,47,14811,517,457,55,65315,21137 +2040,29,2026,1449,278586,2018,52,16493,575,509,61,63400,23538 +2040,29,2027,1639,315076,2282,59,18654,651,576,69,69619,26621 +2040,29,2028,1863,358049,2594,67,21198,740,654,79,76668,30252 +2040,29,2029,2107,405062,2934,75,23981,837,740,89,84236,34224 +2040,29,2030,2410,463152,3355,86,27420,957,846,102,93115,39132 +2040,29,2031,2771,532552,3858,99,31529,1100,973,117,100161,44996 +2040,29,2032,3159,607200,4398,113,35948,1254,1110,134,110184,51304 +2040,29,2033,3629,697620,5053,130,41301,1441,1275,154,121682,58943 +2040,29,2034,4218,810749,5873,151,47999,1675,1482,178,135656,68502 +2040,29,2035,4917,945189,6847,176,55959,1952,1727,208,151090,79861 +2040,29,2036,5823,1119272,8108,208,66265,2312,2045,246,169929,94569 +2040,29,2037,7095,1363727,9878,254,80737,2817,2492,300,195193,115224 +2040,29,2038,9095,1748084,12662,325,103493,3611,3194,385,233305,147699 +2040,29,2039,12247,2354074,17052,438,139369,4863,4302,518,287742,198900 +2040,29,2040,23096,4439314,32157,826,262822,9170,8112,977,470416,375085 +2040,30,2010,105,18217,125,3,1262,36,32,4,17137,1581 +2040,30,2011,13,2175,15,0,151,4,4,1,1907,189 +2040,30,2012,20,3389,23,1,235,7,6,1,2785,295 +2040,30,2013,20,3423,23,1,238,7,6,1,2681,298 +2040,30,2014,25,4376,30,1,304,9,8,1,3200,381 +2040,30,2015,29,5069,35,1,352,10,9,1,3446,441 +2040,30,2016,33,5745,39,1,399,11,10,1,3493,500 +2040,30,2017,38,6494,44,1,451,13,11,2,3744,565 +2040,30,2018,54,9344,64,2,650,18,16,2,4990,814 +2040,30,2019,59,10112,69,2,703,20,18,2,5274,881 +2040,30,2020,64,11002,75,2,765,22,19,3,5459,958 +2040,30,2021,70,12015,82,2,835,24,21,3,4147,1046 +2040,30,2022,75,12937,88,2,899,25,23,3,4280,1126 +2040,30,2023,84,14473,99,3,1006,29,25,3,4643,1260 +2040,30,2024,94,16154,110,3,1123,32,28,4,5032,1407 +2040,30,2025,104,17952,123,3,1248,35,31,4,5438,1563 +2040,30,2026,116,19991,137,3,1390,39,35,5,5183,1741 +2040,30,2027,131,22609,155,4,1572,45,39,5,5668,1969 +2040,30,2028,149,25693,176,4,1786,51,45,6,6214,2237 +2040,30,2029,169,29067,199,5,2021,57,51,7,6799,2531 +2040,30,2030,193,33235,227,6,2311,65,58,8,7476,2894 +2040,30,2031,222,38215,261,7,2657,75,67,9,7955,3328 +2040,30,2032,253,43572,298,8,3029,86,76,10,8698,3794 +2040,30,2033,291,50060,342,9,3480,99,87,12,9538,4359 +2040,30,2034,338,58178,398,10,4045,115,101,14,10552,5066 +2040,30,2035,394,67826,463,12,4716,134,118,16,11647,5906 +2040,30,2036,467,80317,549,14,5584,158,140,19,12960,6994 +2040,30,2037,569,97859,669,17,6804,193,171,23,14693,8521 +2040,30,2038,729,125440,857,22,8721,247,219,30,17268,10923 +2040,30,2039,982,168925,1154,29,11745,333,294,40,20804,14710 +2040,30,2040,1851,318559,2177,55,22148,627,555,75,32544,27739 +2040,31,2010,630,127670,1038,30,7802,265,234,28,105274,10838 +2040,31,2011,75,15248,124,4,932,32,28,3,11752,1295 +2040,31,2012,117,23772,193,6,1455,49,44,5,17224,2021 +2040,31,2013,119,24019,195,6,1471,50,44,5,16624,2044 +2040,31,2014,152,30709,250,7,1881,64,56,7,19924,2613 +2040,31,2015,176,35577,289,8,2179,74,65,8,21550,3027 +2040,31,2016,199,40318,328,9,2469,84,74,9,22048,3430 +2040,31,2017,225,45572,370,11,2791,95,84,10,23718,3877 +2040,31,2018,324,65573,533,15,4016,136,121,14,31822,5579 +2040,31,2019,351,70962,577,17,4346,147,130,16,33697,6038 +2040,31,2020,382,77208,627,18,4729,160,142,17,35050,6569 +2040,31,2021,417,84318,685,20,5164,175,155,19,27982,7174 +2040,31,2022,449,90786,738,21,5560,189,167,20,29032,7724 +2040,31,2023,502,101570,825,24,6221,211,187,22,31589,8642 +2040,31,2024,560,113367,921,27,6943,236,208,25,34339,9645 +2040,31,2025,623,125983,1024,29,7716,262,232,28,37216,10719 +2040,31,2026,694,140293,1140,33,8592,291,258,31,36402,11936 +2040,31,2027,784,158669,1289,37,9718,330,292,35,39964,13500 +2040,31,2028,891,180310,1465,42,11043,375,331,40,44000,15341 +2040,31,2029,1008,203985,1657,48,12493,424,375,45,48332,17355 +2040,31,2030,1153,233238,1895,55,14285,485,429,51,53413,19844 +2040,31,2031,1326,268187,2179,63,16425,557,493,59,57570,22818 +2040,31,2032,1512,305780,2485,71,18728,635,562,67,63305,26016 +2040,31,2033,1737,351314,2855,82,21517,730,646,77,69877,29890 +2040,31,2034,2018,408285,3317,95,25006,848,750,90,77862,34737 +2040,31,2035,2353,475988,3868,111,29152,989,875,105,86668,40497 +2040,31,2036,2786,563653,4580,132,34521,1171,1036,124,97405,47956 +2040,31,2037,3395,686760,5580,161,42061,1427,1262,151,111790,58430 +2040,31,2038,4352,880318,7153,206,53916,1829,1618,194,133471,74898 +2040,31,2039,5860,1185489,9632,277,72606,2463,2179,261,164369,100862 +2040,31,2040,11051,2235589,18165,523,136921,4644,4109,493,267990,190206 +2040,32,2010,322,65258,555,11,4308,134,119,14,37668,5353 +2040,32,2011,39,7797,66,1,515,16,14,2,4222,640 +2040,32,2012,60,12162,103,2,803,25,22,3,6211,998 +2040,32,2013,61,12294,104,2,812,25,22,3,6012,1009 +2040,32,2014,78,15718,134,3,1038,32,29,3,7237,1290 +2040,32,2015,90,18210,155,3,1203,37,33,4,7866,1495 +2040,32,2016,102,20637,175,4,1363,42,38,4,8136,1694 +2040,32,2017,115,23326,198,4,1541,48,42,5,8787,1915 +2040,32,2018,166,33563,285,6,2218,69,61,7,11878,2756 +2040,32,2019,179,36322,309,6,2400,75,66,8,12602,2982 +2040,32,2020,195,39518,336,7,2611,81,72,8,13181,3244 +2040,32,2021,213,43158,367,7,2851,89,79,9,11203,3543 +2040,32,2022,230,46469,395,8,3070,96,85,10,11679,3815 +2040,32,2023,257,51988,442,9,3435,107,95,11,12746,4268 +2040,32,2024,287,58026,493,10,3834,119,106,12,13896,4764 +2040,32,2025,319,64484,548,11,4260,133,117,14,15103,5294 +2040,32,2026,355,71809,610,12,4744,148,131,15,15207,5896 +2040,32,2027,401,81214,690,14,5366,167,148,17,16755,6668 +2040,32,2028,456,92291,784,16,6098,190,168,19,18518,7577 +2040,32,2029,516,104409,887,18,6898,215,190,22,20417,8572 +2040,32,2030,590,119382,1015,21,7888,246,217,25,22662,9801 +2040,32,2031,678,137271,1167,24,9069,282,250,29,24745,11270 +2040,32,2032,773,156512,1330,27,10341,322,285,33,27344,12850 +2040,32,2033,888,179819,1528,31,11881,370,327,38,30354,14763 +2040,32,2034,1033,208979,1776,36,13807,430,380,44,34030,17157 +2040,32,2035,1204,243633,2071,42,16097,501,443,51,38146,20002 +2040,32,2036,1426,288504,2452,50,19061,594,525,61,43226,23686 +2040,32,2037,1737,351515,2988,61,23225,723,640,74,50103,28860 +2040,32,2038,2226,450588,3830,78,29770,927,820,95,60567,36994 +2040,32,2039,2998,606787,5158,105,40090,1249,1104,128,75842,49818 +2040,32,2040,5654,1144279,9726,198,75602,2354,2083,242,127398,93946 +2040,33,2010,2249,433174,3183,87,27562,890,787,97,293999,36911 +2040,33,2011,269,51723,380,10,3294,106,94,12,32841,4412 +2040,33,2012,419,80623,592,16,5140,166,147,18,48160,6883 +2040,33,2013,424,81442,598,16,5197,168,148,18,46503,6960 +2040,33,2014,542,104124,764,21,6644,214,190,23,55774,8898 +2040,33,2015,628,120630,885,24,7698,248,220,27,60377,10309 +2040,33,2016,712,136707,1003,28,8724,281,249,31,61394,11683 +2040,33,2017,805,154520,1134,31,9860,318,281,35,66094,13205 +2040,33,2018,1158,222340,1632,45,14188,457,405,50,88448,19001 +2040,33,2019,1253,240613,1766,49,15354,495,438,54,93697,20562 +2040,33,2020,1363,261788,1922,53,16705,539,477,59,97155,22372 +2040,33,2021,1489,285899,2099,58,18244,588,520,64,73061,24432 +2040,33,2022,1603,307830,2260,62,19643,633,560,69,75730,26306 +2040,33,2023,1793,344394,2528,70,21977,709,627,77,82549,29431 +2040,33,2024,2002,384394,2822,78,24529,791,700,86,89894,32849 +2040,33,2025,2224,427172,3136,86,27259,879,778,96,97591,36505 +2040,33,2026,2477,475693,3492,96,30355,979,866,106,93199,40651 +2040,33,2027,2802,538002,3949,109,34331,1107,979,120,102628,45976 +2040,33,2028,3184,611379,4488,123,39014,1258,1113,137,113365,52247 +2040,33,2029,3602,691655,5077,140,44136,1423,1259,155,124920,59107 +2040,33,2030,4118,790844,5805,160,50466,1627,1440,177,138568,67583 +2040,33,2031,4735,909347,6675,184,58028,1871,1655,203,148794,77710 +2040,33,2032,5399,1036812,7611,209,66162,2133,1887,232,164390,88603 +2040,33,2033,6203,1191206,8744,241,76014,2451,2168,266,182438,101797 +2040,33,2034,7209,1384376,10162,280,88341,2849,2520,310,204480,118305 +2040,33,2035,8405,1613937,11847,326,102990,3321,2938,361,229138,137922 +2040,33,2036,9952,1911188,14029,386,121958,3933,3479,427,259567,163325 +2040,33,2037,12126,2328603,17093,470,148594,4791,4239,521,300736,198996 +2040,33,2038,15544,2984907,21910,603,190475,6142,5433,667,363357,255082 +2040,33,2039,20932,4019648,29506,812,256505,8271,7317,899,454685,343507 +2040,33,2040,39474,7580233,55642,1531,483717,15597,13798,1695,762861,647785 +2040,34,2010,3732,722642,7648,222,42295,1490,1318,174,673061,67056 +2040,34,2011,446,86306,914,27,5055,178,158,21,75108,8014 +2040,34,2012,696,134560,1425,41,7887,278,246,32,110034,12505 +2040,34,2013,704,135959,1440,42,7975,281,248,33,106166,12644 +2040,34,2014,900,173824,1841,54,10196,359,318,42,127180,16165 +2040,34,2015,1042,201379,2133,62,11812,416,368,49,137487,18728 +2040,34,2016,1181,228217,2417,70,13387,471,417,55,139202,21224 +2040,34,2017,1335,257955,2732,80,15131,533,471,62,149685,23989 +2040,34,2018,1921,371174,3931,114,21772,767,678,89,199712,34518 +2040,34,2019,2079,401678,4254,124,23562,830,734,97,211446,37355 +2040,34,2020,2262,437028,4629,135,25635,903,799,105,218713,40643 +2040,34,2021,2470,477278,5055,147,27996,986,872,115,163218,44386 +2040,34,2022,2660,513890,5443,159,30144,1062,939,124,168571,47791 +2040,34,2023,2976,574931,6089,177,33724,1188,1051,139,183515,53467 +2040,34,2024,3321,641705,6797,198,37641,1326,1173,155,199597,59677 +2040,34,2025,3691,713118,7553,220,41830,1473,1303,172,216425,66319 +2040,34,2026,4110,794121,8411,245,46581,1641,1451,191,205435,73852 +2040,34,2027,4649,898136,9513,277,52683,1856,1641,216,225820,83525 +2040,34,2028,5283,1020634,10810,315,59868,2109,1865,246,248961,94917 +2040,34,2029,5976,1154644,12229,356,67729,2385,2110,278,273831,107380 +2040,34,2030,6833,1320232,13983,407,77442,2728,2413,318,303081,122779 +2040,34,2031,7857,1518058,16079,468,89046,3136,2774,366,324050,141176 +2040,34,2032,8958,1730849,18332,534,101528,3576,3163,417,357087,160966 +2040,34,2033,10292,1988591,21062,613,116647,4108,3634,479,395120,184935 +2040,34,2034,11962,2311070,24478,713,135563,4775,4224,557,441438,214925 +2040,34,2035,13945,2694299,28537,831,158042,5566,4924,649,492864,250565 +2040,34,2036,16513,3190526,33792,984,187149,6592,5831,769,555921,296713 +2040,34,2037,20120,3887358,41173,1199,228024,8031,7105,937,640796,361517 +2040,34,2038,25791,4982990,52777,1537,292291,10295,9107,1201,769277,463408 +2040,34,2039,34731,6710382,71073,2070,393617,13864,12264,1617,954419,624053 +2040,34,2040,65496,12654412,134029,3903,742280,26144,23127,3050,1577172,1176837 +2040,35,2010,402,73665,508,13,4863,152,135,17,82271,6165 +2040,35,2011,48,8801,61,2,581,18,16,2,9147,737 +2040,35,2012,75,13728,95,2,907,28,25,3,13353,1150 +2040,35,2013,76,13876,96,2,917,29,25,3,12848,1162 +2040,35,2014,97,17741,122,3,1172,37,32,4,15327,1486 +2040,35,2015,112,20553,142,4,1358,43,38,5,16490,1722 +2040,35,2016,127,23292,161,4,1539,48,43,5,16841,1951 +2040,35,2017,144,26327,182,5,1740,54,48,6,18033,2206 +2040,35,2018,207,37882,261,7,2503,78,69,9,24113,3174 +2040,35,2019,224,40996,283,7,2709,85,75,9,25477,3434 +2040,35,2020,244,44604,308,8,2948,92,82,10,26470,3737 +2040,35,2021,266,48712,336,8,3219,101,89,11,21855,4081 +2040,35,2022,287,52448,362,9,3466,109,96,12,22583,4394 +2040,35,2023,321,58678,405,10,3878,121,107,13,24455,4916 +2040,35,2024,358,65493,452,11,4328,136,120,15,26460,5487 +2040,35,2025,398,72782,502,13,4810,151,133,16,28545,6097 +2040,35,2026,443,81049,559,14,5356,168,148,18,28150,6790 +2040,35,2027,501,91665,632,16,6057,190,168,21,30696,7679 +2040,35,2028,570,104167,719,18,6884,216,191,23,33543,8726 +2040,35,2029,644,117845,813,20,7788,244,216,26,36581,9872 +2040,35,2030,737,134745,930,23,8904,279,247,30,40074,11288 +2040,35,2031,847,154935,1069,27,10239,321,284,35,42947,12980 +2040,35,2032,966,176653,1219,31,11674,366,323,40,46725,14799 +2040,35,2033,1110,202958,1400,35,13412,420,372,46,50942,17003 +2040,35,2034,1290,235871,1627,41,15587,488,432,53,55989,19760 +2040,35,2035,1504,274984,1897,48,18172,569,503,62,61332,23036 +2040,35,2036,1781,325630,2246,57,21519,674,596,73,67610,27279 +2040,35,2037,2170,396749,2737,69,26218,821,726,89,75761,33237 +2040,35,2038,2781,508570,3508,88,33608,1053,931,114,87679,42605 +2040,35,2039,3745,684871,4724,119,45258,1417,1254,154,103314,57374 +2040,35,2040,7063,1291527,8909,225,85348,2673,2365,290,154520,108196 +2040,36,2010,1029,200389,1633,49,12313,417,369,45,218083,17036 +2040,36,2011,123,23917,195,6,1472,50,44,5,24267,2036 +2040,36,2012,192,37266,303,9,2296,78,69,8,35451,3177 +2040,36,2013,194,37628,306,9,2322,78,69,8,34129,3212 +2040,36,2014,248,48108,392,12,2968,100,89,11,40752,4107 +2040,36,2015,287,55735,454,14,3439,116,103,13,43893,4758 +2040,36,2016,326,63162,514,16,3897,132,117,14,44233,5392 +2040,36,2017,368,71393,581,18,4405,149,132,16,47415,6095 +2040,36,2018,530,102728,836,25,6338,214,190,23,63016,8770 +2040,36,2019,573,111170,905,28,6859,232,205,25,66615,9491 +2040,36,2020,624,120954,985,30,7463,252,223,27,68731,10326 +2040,36,2021,681,132094,1075,33,8150,276,244,30,49499,11277 +2040,36,2022,733,142226,1158,35,8776,297,262,32,50987,12142 +2040,36,2023,820,159120,1296,39,9818,332,294,36,55349,13584 +2040,36,2024,916,177601,1446,44,10958,370,328,40,60032,15162 +2040,36,2025,1017,197366,1607,49,12178,412,364,44,64917,16849 +2040,36,2026,1133,219784,1789,54,13561,458,406,50,60345,18763 +2040,36,2027,1281,248572,2024,62,15337,518,459,56,66090,21220 +2040,36,2028,1456,282475,2300,70,17429,589,521,64,72570,24115 +2040,36,2029,1647,319564,2602,79,19718,667,590,72,79512,27281 +2040,36,2030,1884,365393,2975,90,22545,762,674,82,87599,31193 +2040,36,2031,2166,420144,3421,104,25923,876,775,95,92601,35867 +2040,36,2032,2470,479036,3900,119,29557,999,884,108,101496,40895 +2040,36,2033,2837,550371,4481,136,33959,1148,1016,124,111616,46985 +2040,36,2034,3297,639621,5208,158,39466,1334,1180,144,123860,54604 +2040,36,2035,3844,745685,6071,185,46010,1555,1376,168,137218,63659 +2040,36,2036,4552,883024,7189,219,54484,1842,1629,199,153350,75383 +2040,36,2037,5546,1075881,8760,266,66383,2244,1985,242,174791,91847 +2040,36,2038,7110,1379113,11229,341,85093,2877,2545,311,206864,117734 +2040,36,2039,9574,1857194,15121,460,114591,3874,3427,419,251686,158547 +2040,36,2040,18055,3502288,28515,867,216096,7305,6462,789,401193,298988 +2040,37,2010,161,30778,218,6,1770,63,56,7,24086,2633 +2040,37,2011,19,3678,26,1,212,8,7,1,2687,315 +2040,37,2012,30,5737,41,1,330,12,10,1,3936,491 +2040,37,2013,30,5799,41,1,334,12,11,1,3798,497 +2040,37,2014,39,7414,53,1,427,15,13,2,4548,635 +2040,37,2015,45,8589,61,2,494,18,16,2,4916,735 +2040,37,2016,51,9734,69,2,560,20,18,2,5012,834 +2040,37,2017,58,11003,78,2,633,23,20,2,5389,942 +2040,37,2018,83,15832,112,3,911,33,29,4,7215,1356 +2040,37,2019,90,17133,121,3,986,35,31,4,7637,1467 +2040,37,2020,98,18641,132,4,1073,38,34,4,7930,1596 +2040,37,2021,107,20357,144,4,1172,42,37,5,6327,1743 +2040,37,2022,115,21919,155,4,1262,45,40,5,6549,1877 +2040,37,2023,128,24523,174,5,1411,50,45,5,7122,2100 +2040,37,2024,143,27371,194,5,1575,56,50,6,7739,2344 +2040,37,2025,159,30417,215,6,1751,63,55,7,8384,2605 +2040,37,2026,177,33872,240,6,1950,70,62,8,8194,2900 +2040,37,2027,201,38308,271,7,2205,79,70,9,8991,3280 +2040,37,2028,228,43533,308,8,2506,89,79,10,9893,3728 +2040,37,2029,258,49249,349,9,2835,101,90,11,10860,4217 +2040,37,2030,295,56312,399,11,3241,116,102,13,11994,4822 +2040,37,2031,339,64750,459,12,3727,133,118,14,12916,5544 +2040,37,2032,387,73826,523,14,4249,152,134,16,14192,6322 +2040,37,2033,444,84820,601,16,4882,174,154,19,15650,7263 +2040,37,2034,516,98574,698,19,5674,203,179,22,17421,8441 +2040,37,2035,602,114920,814,22,6614,236,209,26,19368,9840 +2040,37,2036,713,136086,964,26,7833,280,247,30,21738,11653 +2040,37,2037,869,165808,1174,31,9543,341,302,37,24906,14198 +2040,37,2038,1113,212540,1505,40,12233,437,387,47,29672,18199 +2040,37,2039,1499,286219,2027,54,16474,588,521,64,36434,24508 +2040,37,2040,2827,539750,3823,102,31066,1110,982,120,59084,46217 +2040,38,2010,106,20862,147,4,1387,42,37,5,16660,1759 +2040,38,2011,13,2489,18,1,166,5,4,1,1857,210 +2040,38,2012,20,3876,27,1,259,8,7,1,2717,328 +2040,38,2013,20,3912,28,1,261,8,7,1,2620,332 +2040,38,2014,26,5001,35,1,334,10,9,1,3134,424 +2040,38,2015,30,5794,41,1,387,12,10,1,3384,491 +2040,38,2016,34,6566,46,1,439,13,12,1,3426,557 +2040,38,2017,38,7422,52,2,496,15,13,2,3680,629 +2040,38,2018,54,10679,75,2,714,22,19,2,4908,905 +2040,38,2019,59,11557,81,2,772,23,21,3,5193,980 +2040,38,2020,64,12574,88,3,840,26,23,3,5372,1066 +2040,38,2021,70,13732,97,3,918,28,25,3,3947,1164 +2040,38,2022,75,14786,104,3,988,30,27,3,4080,1254 +2040,38,2023,84,16542,116,3,1106,34,30,4,4438,1402 +2040,38,2024,94,18463,130,4,1234,37,33,4,4823,1565 +2040,38,2025,105,20518,144,4,1371,42,37,4,5225,1740 +2040,38,2026,117,22849,161,5,1527,46,41,5,4921,1937 +2040,38,2027,132,25841,182,5,1727,52,46,6,5404,2191 +2040,38,2028,150,29366,207,6,1963,60,53,6,5952,2490 +2040,38,2029,170,33222,234,7,2220,67,60,7,6540,2817 +2040,38,2030,194,37986,267,8,2539,77,68,8,7230,3221 +2040,38,2031,223,43678,307,9,2919,89,78,10,7703,3703 +2040,38,2032,254,49800,350,10,3328,101,89,11,8478,4222 +2040,38,2033,292,57216,403,12,3824,116,103,13,9367,4851 +2040,38,2034,339,66494,468,14,4444,135,119,15,10448,5638 +2040,38,2035,396,77521,546,16,5181,157,139,17,11644,6572 +2040,38,2036,468,91798,646,19,6135,186,165,20,13105,7783 +2040,38,2037,571,111847,787,23,7475,227,201,25,15066,9483 +2040,38,2038,732,143371,1009,29,9582,291,257,31,18027,12155 +2040,38,2039,985,193072,1359,40,12904,392,347,42,22266,16369 +2040,38,2040,1858,364095,2563,75,24333,739,654,80,36500,30869 +2040,39,2010,1666,322906,2385,63,19449,668,591,71,215203,27292 +2040,39,2011,199,38570,285,8,2325,80,71,9,24051,3262 +2040,39,2012,311,60144,444,12,3627,124,110,13,35287,5089 +2040,39,2013,314,60778,449,12,3667,126,111,13,34086,5146 +2040,39,2014,402,77705,574,15,4689,161,142,17,40903,6579 +2040,39,2015,465,90023,665,18,5432,186,165,20,44304,7622 +2040,39,2016,527,102020,753,20,6156,211,187,23,45167,8638 +2040,39,2017,596,115314,851,23,6958,239,211,26,48648,9764 +2040,39,2018,858,165926,1225,33,10012,343,304,37,65198,14049 +2040,39,2019,928,179563,1326,35,10835,372,329,40,69083,15204 +2040,39,2020,1010,195365,1442,38,11788,404,358,43,71727,16542 +2040,39,2021,1103,213359,1575,42,12874,442,391,47,55462,18065 +2040,39,2022,1188,229725,1696,45,13862,476,421,51,57520,19451 +2040,39,2023,1329,257011,1897,51,15508,532,471,57,62704,21761 +2040,39,2024,1483,286862,2118,56,17309,594,525,64,68289,24289 +2040,39,2025,1648,318786,2353,63,19235,660,584,71,74141,26992 +2040,39,2026,1835,354996,2621,70,21420,735,650,79,71701,30057 +2040,39,2027,2076,401495,2964,79,24226,831,735,89,78943,33995 +2040,39,2028,2359,456254,3368,90,27530,944,835,101,87187,38631 +2040,39,2029,2668,516161,3810,101,31145,1068,945,114,96058,43703 +2040,39,2030,3051,590184,4357,116,35611,1222,1081,131,106532,49971 +2040,39,2031,3508,678618,5010,133,40948,1405,1243,150,114823,57459 +2040,39,2032,4000,773742,5712,152,46687,1602,1417,172,126811,65513 +2040,39,2033,4595,888962,6562,175,53640,1840,1628,197,140675,75268 +2040,39,2034,5341,1033120,7627,203,62338,2138,1892,229,157600,87474 +2040,39,2035,6226,1204435,8891,237,72675,2493,2205,267,176515,101979 +2040,39,2036,7373,1426263,10529,280,86060,2952,2612,316,199835,120761 +2040,39,2037,8983,1737768,12828,342,104856,3597,3182,385,231365,147137 +2040,39,2038,11515,2227547,16444,438,134409,4611,4079,494,279293,188606 +2040,39,2039,15507,2999745,22144,590,181003,6209,5493,665,349081,253988 +2040,39,2040,29243,5656912,41759,1112,341336,11709,10358,1254,584472,478970 +2040,40,2010,1422,287362,2271,63,15940,596,527,63,208023,24510 +2040,40,2011,170,34337,271,7,1905,71,63,8,23264,2929 +2040,40,2012,265,53561,423,12,2973,111,98,12,34155,4571 +2040,40,2013,268,54145,428,12,3006,112,99,12,33010,4622 +2040,40,2014,343,69224,547,15,3843,144,127,15,39641,5909 +2040,40,2015,397,80198,634,17,4452,166,147,18,42972,6845 +2040,40,2016,450,90886,718,20,5045,189,167,20,44041,7758 +2040,40,2017,509,102729,812,22,5703,213,189,22,47464,8769 +2040,40,2018,732,147817,1168,32,8205,307,271,32,63791,12617 +2040,40,2019,792,159965,1264,35,8880,332,294,35,67612,13654 +2040,40,2020,862,174043,1375,38,9661,361,320,38,70387,14856 +2040,40,2021,941,190073,1502,41,10551,395,349,42,57440,16224 +2040,40,2022,1013,204653,1617,45,11361,425,376,45,59623,17468 +2040,40,2023,1134,228962,1809,50,12710,475,420,50,64979,19543 +2040,40,2024,1265,255554,2019,56,14186,530,469,56,70749,21813 +2040,40,2025,1406,283994,2244,62,15765,590,521,62,76793,24241 +2040,40,2026,1566,316253,2499,69,17556,656,581,69,75945,26994 +2040,40,2027,1771,357677,2826,78,19855,742,657,78,83546,30530 +2040,40,2028,2013,406460,3212,89,22563,844,746,89,92187,34694 +2040,40,2029,2277,459829,3633,100,25526,954,844,101,101479,39249 +2040,40,2030,2604,525772,4154,115,29186,1091,965,115,112428,44878 +2040,40,2031,2994,604556,4777,132,33559,1255,1110,132,121885,51603 +2040,40,2032,3413,689297,5447,150,38264,1431,1266,151,134414,58836 +2040,40,2033,3922,791942,6258,173,43962,1644,1454,173,148862,67598 +2040,40,2034,4558,920368,7272,201,51091,1910,1690,201,166472,78559 +2040,40,2035,5313,1072985,8478,234,59563,2227,1970,235,186070,91586 +2040,40,2036,6292,1270605,10040,277,70533,2637,2333,278,210147,108454 +2040,40,2037,7666,1548113,12233,338,85937,3214,2843,339,242606,132141 +2040,40,2038,9827,1984439,15680,433,110158,4119,3644,434,291816,169385 +2040,40,2039,13233,2672361,21116,583,148346,5547,4907,585,362992,228104 +2040,40,2040,24955,5039534,39820,1099,279750,10461,9254,1103,602644,430157 +2040,41,2010,1905,372240,3016,88,25037,734,649,85,271084,33073 +2040,41,2011,228,44447,360,11,2992,88,78,10,30303,3953 +2040,41,2012,355,69281,561,16,4669,137,121,16,44469,6168 +2040,41,2013,359,69984,567,17,4721,138,122,16,42962,6236 +2040,41,2014,459,89475,725,21,6036,177,156,20,51568,7973 +2040,41,2015,532,103659,839,25,6993,205,181,24,55872,9237 +2040,41,2016,603,117474,951,28,7924,232,205,27,57124,10468 +2040,41,2017,681,132782,1075,32,8957,262,232,30,61538,11832 +2040,41,2018,980,191061,1547,45,12888,378,334,44,82605,17025 +2040,41,2019,1061,206763,1674,49,13948,409,361,47,87534,18424 +2040,41,2020,1154,224959,1822,53,15175,445,393,51,91020,20046 +2040,41,2021,1261,245678,1990,58,16573,485,429,56,71118,21892 +2040,41,2022,1357,264524,2142,63,17844,523,462,61,73862,23571 +2040,41,2023,1519,295944,2397,70,19963,585,517,68,80510,26371 +2040,41,2024,1695,330316,2675,78,22282,653,577,76,87671,29434 +2040,41,2025,1884,367076,2973,87,24762,725,642,84,95174,32710 +2040,41,2026,2098,408772,3310,97,27575,808,715,94,92444,36425 +2040,41,2027,2372,462313,3744,110,31186,914,808,106,101751,41196 +2040,41,2028,2696,525368,4255,125,35440,1038,918,120,112341,46815 +2040,41,2029,3050,594350,4813,141,40093,1174,1039,136,123734,52962 +2040,41,2030,3487,679585,5503,161,45843,1343,1188,155,137177,60557 +2040,41,2031,4010,781416,6328,186,52712,1544,1366,179,147987,69631 +2040,41,2032,4572,890949,7215,212,60101,1761,1557,204,163357,79391 +2040,41,2033,5253,1023623,8289,243,69051,2023,1789,234,181116,91213 +2040,41,2034,6105,1189616,9634,283,80248,2351,2080,272,202784,106005 +2040,41,2035,7117,1386883,11231,329,93555,2741,2424,317,226966,123583 +2040,41,2036,8428,1642316,13300,390,110786,3245,2871,376,256745,146344 +2040,41,2037,10269,2001007,16204,475,134982,3954,3498,458,296969,178307 +2040,41,2038,13163,2564980,20772,609,173026,5069,4484,587,358059,228561 +2040,41,2039,17726,3454156,27972,820,233007,6826,6038,790,446817,307794 +2040,41,2040,33427,6513833,52750,1547,439404,12872,11386,1490,746023,580438 +2040,42,2010,881,177419,1392,41,10563,366,324,39,128613,15269 +2040,42,2011,105,21192,166,5,1262,44,39,5,14377,1825 +2040,42,2012,164,33046,259,8,1970,68,60,7,21098,2847 +2040,42,2013,166,33393,262,8,1992,69,61,7,20383,2879 +2040,42,2014,212,42694,335,10,2546,88,78,9,24465,3681 +2040,42,2015,246,49462,388,11,2950,102,90,11,26506,4264 +2040,42,2016,279,56053,440,13,3343,116,102,12,27047,4833 +2040,42,2017,315,63358,497,15,3779,131,116,14,29137,5462 +2040,42,2018,453,91166,715,21,5437,188,167,20,39071,7860 +2040,42,2019,491,98658,774,23,5884,204,180,22,41403,8506 +2040,42,2020,534,107341,842,25,6402,222,196,24,43007,9254 +2040,42,2021,583,117227,920,27,6992,242,214,26,33459,10107 +2040,42,2022,628,126219,990,29,7528,261,231,28,34710,10882 +2040,42,2023,702,141211,1108,33,8422,292,258,31,37839,12175 +2040,42,2024,784,157612,1236,37,9400,325,288,35,41210,13589 +2040,42,2025,871,175152,1374,41,10446,362,320,39,44742,15101 +2040,42,2026,970,195048,1530,45,11633,403,356,43,43381,16816 +2040,42,2027,1097,220596,1730,51,13157,455,403,49,47760,19019 +2040,42,2028,1247,250683,1966,58,14951,518,458,56,52744,21613 +2040,42,2029,1410,283598,2225,66,16914,586,518,63,58107,24450 +2040,42,2030,1613,324268,2544,75,19340,669,592,72,64439,27957 +2040,42,2031,1854,372858,2925,86,22238,770,681,83,69499,32146 +2040,42,2032,2114,425121,3335,99,25355,878,776,94,76746,36652 +2040,42,2033,2429,488427,3831,113,29131,1008,892,108,85124,42110 +2040,42,2034,2823,567633,4453,132,33855,1172,1037,126,95351,48939 +2040,42,2035,3291,661759,5191,153,39469,1366,1209,147,106775,57054 +2040,42,2036,3897,783640,6147,182,46738,1618,1431,174,120857,67562 +2040,42,2037,4749,954792,7490,221,56946,1971,1744,212,139891,82318 +2040,42,2038,6087,1223894,9601,284,72996,2527,2235,271,168818,105518 +2040,42,2039,8197,1648168,12929,382,98300,3403,3010,365,210915,142097 +2040,42,2040,15458,3108109,24381,720,185375,6417,5677,689,352886,267966 +2040,44,2010,1183,232654,2509,70,13637,486,430,56,152045,21804 +2040,44,2011,141,27789,300,8,1630,58,51,7,17047,2606 +2040,44,2012,221,43329,467,13,2543,91,80,10,25089,4066 +2040,44,2013,223,43783,472,13,2571,92,81,11,24294,4111 +2040,44,2014,285,55977,604,17,3287,117,104,13,29255,5256 +2040,44,2015,331,64851,700,20,3809,136,120,16,31815,6090 +2040,44,2016,375,73494,793,22,4316,154,136,18,32511,6901 +2040,44,2017,423,83070,896,25,4879,174,154,20,35133,7800 +2040,44,2018,609,119531,1290,36,7020,250,221,29,47218,11224 +2040,44,2019,659,129354,1396,39,7597,271,239,31,50113,12147 +2040,44,2020,717,140738,1519,43,8265,294,260,34,52093,13216 +2040,44,2021,783,153700,1658,47,9027,322,284,37,40096,14433 +2040,44,2022,843,165490,1786,50,9719,346,306,40,41681,15540 +2040,44,2023,944,185147,1998,56,10874,387,343,45,45579,17386 +2040,44,2024,1053,206651,2230,63,12136,432,382,50,49788,19405 +2040,44,2025,1170,229648,2478,70,13487,480,425,55,54213,21564 +2040,44,2026,1303,255734,2759,77,15019,535,473,62,52502,24014 +2040,44,2027,1474,289231,3121,88,16986,605,535,70,58041,27159 +2040,44,2028,1675,328679,3546,99,19303,688,608,79,64386,30864 +2040,44,2029,1895,371836,4012,113,21838,778,688,90,71236,34916 +2040,44,2030,2167,425160,4587,129,24969,889,787,102,79397,39923 +2040,44,2031,2491,488866,5275,148,28711,1023,905,118,85997,45905 +2040,44,2032,2841,557393,6014,169,32735,1166,1032,134,95521,52340 +2040,44,2033,3264,640394,6910,194,37610,1340,1185,154,106653,60134 +2040,44,2034,3793,744244,8030,225,43709,1557,1377,179,120322,69886 +2040,44,2035,4422,867657,9362,263,50957,1815,1606,209,135827,81475 +2040,44,2036,5236,1027459,11086,311,60342,2149,1901,248,155182,96480 +2040,44,2037,6380,1251863,13508,379,73521,2619,2317,302,181611,117552 +2040,44,2038,8178,1604692,17315,486,94242,3357,2970,387,222152,150683 +2040,44,2039,11013,2160972,23317,654,126912,4521,3999,521,282510,202919 +2040,44,2040,20769,4075155,43971,1233,239330,8525,7542,982,487279,382664 +2040,45,2010,2297,470904,3894,119,24954,979,866,105,371588,40849 +2040,45,2011,275,56270,465,14,2982,117,103,13,41561,4882 +2040,45,2012,428,87778,726,22,4653,182,161,20,61023,7617 +2040,45,2013,433,88737,734,23,4705,184,163,20,58982,7702 +2040,45,2014,554,113451,938,29,6016,236,209,25,70836,9847 +2040,45,2015,642,131435,1087,33,6969,273,242,29,76798,11408 +2040,45,2016,727,148952,1232,38,7898,310,274,33,78773,12929 +2040,45,2017,822,168361,1393,43,8927,350,310,38,84903,14614 +2040,45,2018,1183,242256,2004,61,12846,504,446,54,114158,21028 +2040,45,2019,1280,262166,2168,67,13901,545,482,59,120999,22756 +2040,45,2020,1392,285238,2359,72,15125,593,525,64,126016,24758 +2040,45,2021,1521,311509,2576,79,16518,648,573,70,103473,27039 +2040,45,2022,1637,335404,2774,85,17785,697,617,75,107421,29113 +2040,45,2023,1832,375243,3104,95,19897,780,690,84,117060,32571 +2040,45,2024,2045,418825,3464,106,22208,871,770,93,127442,36353 +2040,45,2025,2272,465435,3850,118,24680,968,856,104,138318,40399 +2040,45,2026,2530,518303,4287,132,27483,1078,953,116,137101,44988 +2040,45,2027,2862,586192,4848,149,31083,1219,1078,131,150792,50881 +2040,45,2028,3252,666143,5510,169,35322,1385,1225,149,166350,57820 +2040,45,2029,3679,753608,6233,191,39960,1567,1386,168,183078,65412 +2040,45,2030,4207,861683,7127,219,45690,1791,1585,192,202780,74793 +2040,45,2031,4837,990800,8195,252,52537,2060,1822,221,219921,86000 +2040,45,2032,5515,1129682,9344,287,59901,2349,2078,252,242448,98055 +2040,45,2033,6336,1297906,10735,329,68821,2698,2387,290,268405,112656 +2040,45,2034,7364,1508379,12476,383,79981,3136,2774,337,300032,130926 +2040,45,2035,8585,1758506,14544,446,93244,3656,3234,393,335193,152636 +2040,45,2036,10166,2082380,17223,529,110418,4329,3830,465,378354,180748 +2040,45,2037,12386,2537183,20985,644,134533,5275,4666,566,436502,220224 +2040,45,2038,15877,3252275,26899,826,172451,6762,5981,726,524599,282293 +2040,45,2039,21381,4379703,36224,1112,232232,9105,8055,978,651819,380152 +2040,45,2040,40320,8259227,68312,2097,437943,17171,15190,1844,1079987,716890 +2040,46,2010,348,70286,533,16,4290,144,127,16,43782,6031 +2040,46,2011,42,8393,64,2,513,17,15,2,4902,721 +2040,46,2012,65,13083,99,3,800,27,24,3,7205,1125 +2040,46,2013,66,13217,100,3,809,27,24,3,6970,1137 +2040,46,2014,84,16898,128,4,1034,35,31,4,8381,1454 +2040,46,2015,97,19577,148,4,1198,40,36,4,9099,1684 +2040,46,2016,110,22186,168,5,1358,46,40,5,9309,1909 +2040,46,2017,125,25077,190,6,1535,51,46,6,10046,2157 +2040,46,2018,179,36084,273,8,2208,74,66,8,13501,3104 +2040,46,2019,194,39049,296,9,2390,80,71,9,14319,3359 +2040,46,2020,211,42486,322,10,2600,87,77,9,14895,3655 +2040,46,2021,231,46399,351,10,2840,95,84,10,11637,3992 +2040,46,2022,248,49958,378,11,3058,103,91,11,12097,4298 +2040,46,2023,278,55892,423,13,3421,115,102,12,13209,4808 +2040,46,2024,310,62383,472,14,3818,128,113,14,14409,5367 +2040,46,2025,344,69326,525,16,4243,142,126,15,15668,5964 +2040,46,2026,384,77201,585,17,4725,159,140,17,15252,6642 +2040,46,2027,434,87313,661,20,5344,179,159,19,16827,7512 +2040,46,2028,493,99221,751,22,6073,204,180,22,18627,8536 +2040,46,2029,558,112249,850,25,6870,230,204,25,20567,9657 +2040,46,2030,638,128347,972,29,7855,264,233,28,22869,11042 +2040,46,2031,733,147578,1118,33,9032,303,268,33,24757,12696 +2040,46,2032,836,168265,1274,38,10298,345,306,37,27422,14476 +2040,46,2033,960,193322,1464,44,11832,397,351,43,30521,16632 +2040,46,2034,1116,224671,1702,51,13751,461,408,50,34316,19329 +2040,46,2035,1301,261927,1984,59,16031,538,476,58,38591,22534 +2040,46,2036,1541,310168,2349,70,18983,637,563,69,43897,26684 +2040,46,2037,1877,377911,2862,85,23130,776,686,84,51109,32512 +2040,46,2038,2407,484422,3669,109,29648,995,880,107,62125,41676 +2040,46,2039,3241,652352,4941,147,39926,1339,1185,144,78361,56123 +2040,46,2040,6112,1230203,9317,278,75293,2526,2234,272,133299,105836 +2040,47,2010,612,118412,848,22,7026,243,215,26,76757,10163 +2040,47,2011,73,14148,101,3,840,29,26,3,8582,1215 +2040,47,2012,114,22068,158,4,1310,45,40,5,12597,1895 +2040,47,2013,115,22306,160,4,1325,46,41,5,12173,1916 +2040,47,2014,147,28519,204,5,1694,59,52,6,14614,2450 +2040,47,2015,171,33040,237,6,1962,68,60,7,15838,2839 +2040,47,2016,194,37443,268,7,2224,77,68,8,16222,3217 +2040,47,2017,219,42322,303,8,2513,87,77,9,17479,3636 +2040,47,2018,315,60897,436,11,3617,125,111,13,23484,5232 +2040,47,2019,341,65902,472,12,3914,136,120,15,24888,5662 +2040,47,2020,371,71702,513,13,4258,147,130,16,25902,6160 +2040,47,2021,405,78305,561,15,4651,161,142,17,20896,6727 +2040,47,2022,436,84312,604,16,5007,173,153,19,21695,7243 +2040,47,2023,488,94327,675,18,5602,194,172,21,23644,8104 +2040,47,2024,544,105282,754,20,6253,217,192,23,25743,9045 +2040,47,2025,605,116999,838,22,6949,241,213,26,27942,10052 +2040,47,2026,674,130288,933,24,7738,268,237,29,27506,11193 +2040,47,2027,762,147354,1055,28,8751,303,268,33,30262,12659 +2040,47,2028,866,167452,1199,31,9945,344,305,37,33396,14386 +2040,47,2029,979,189438,1356,36,11251,390,345,42,36766,16275 +2040,47,2030,1120,216605,1551,41,12864,445,394,48,40738,18609 +2040,47,2031,1288,249062,1783,47,14792,512,453,55,44110,21397 +2040,47,2032,1468,283974,2033,53,16865,584,517,63,48654,24397 +2040,47,2033,1687,326261,2336,61,19377,671,594,72,53896,28030 +2040,47,2034,1960,379169,2715,71,22519,780,690,84,60287,32575 +2040,47,2035,2286,442044,3165,83,26253,909,804,98,67404,37977 +2040,47,2036,2706,523458,3748,98,31088,1077,952,116,76151,44971 +2040,47,2037,3298,637784,4566,120,37878,1312,1160,141,87949,54793 +2040,47,2038,4227,817540,5853,154,48554,1681,1487,181,105842,70237 +2040,47,2039,5692,1100946,7882,207,65385,2264,2003,243,131747,94585 +2040,47,2040,10735,2076161,14865,390,123303,4270,3777,459,218990,178367 +2040,48,2010,945,181423,1495,33,10109,386,341,40,111125,15696 +2040,48,2011,113,21681,179,4,1208,46,41,5,12441,1876 +2040,48,2012,176,33825,279,6,1885,72,64,8,18285,2927 +2040,48,2013,178,34199,282,6,1906,73,64,8,17687,2960 +2040,48,2014,228,43723,360,8,2437,93,82,10,21266,3784 +2040,48,2015,264,50654,417,9,2823,108,95,11,23085,4384 +2040,48,2016,299,57405,473,11,3199,122,108,13,23718,4968 +2040,48,2017,338,64885,535,12,3616,138,122,14,25591,5615 +2040,48,2018,486,93364,769,17,5204,199,176,21,34454,8080 +2040,48,2019,526,101037,832,19,5631,215,190,22,36537,8744 +2040,48,2020,573,109929,906,20,6127,234,207,24,38086,9513 +2040,48,2021,625,120053,989,22,6691,255,226,27,31835,10389 +2040,48,2022,673,129262,1065,24,7204,275,243,29,33066,11186 +2040,48,2023,753,144616,1191,27,8060,308,272,32,36065,12515 +2040,48,2024,841,161412,1330,30,8996,343,304,36,39297,13968 +2040,48,2025,934,179375,1478,33,9997,382,338,40,42686,15523 +2040,48,2026,1040,199751,1646,37,11133,425,376,44,42663,17286 +2040,48,2027,1177,225914,1861,41,12591,481,425,50,46973,19550 +2040,48,2028,1337,256727,2115,47,14309,546,483,57,51880,22217 +2040,48,2029,1513,290435,2393,53,16187,618,547,65,57160,25134 +2040,48,2030,1730,332087,2736,61,18509,707,625,74,63395,28738 +2040,48,2031,1989,381847,3146,70,21282,813,719,85,69015,33045 +2040,48,2032,2267,435371,3587,80,24265,926,820,97,76198,37676 +2040,48,2033,2605,500204,4121,92,27879,1064,942,111,84499,43287 +2040,48,2034,3028,581320,4789,107,32400,1237,1094,129,94630,50306 +2040,48,2035,3530,677715,5584,124,37772,1442,1276,151,105942,58649 +2040,48,2036,4180,802535,6612,147,44729,1708,1511,178,119879,69450 +2040,48,2037,5093,977813,8056,179,54498,2081,1841,217,138710,84619 +2040,48,2038,6528,1253404,10327,230,69858,2667,2359,279,167320,108468 +2040,48,2039,8791,1687906,13907,310,94075,3592,3177,375,208923,146069 +2040,48,2040,16578,3183049,26225,584,177406,6773,5992,708,349196,275456 +2040,49,2010,2039,379805,2936,83,25598,742,656,88,309887,33446 +2040,49,2011,244,45353,350,10,3059,89,78,11,34580,3997 +2040,49,2012,380,70699,546,15,4774,138,122,16,50659,6237 +2040,49,2013,384,71422,552,16,4827,140,124,17,48877,6306 +2040,49,2014,492,91313,705,20,6171,179,158,21,58552,8063 +2040,49,2015,569,105788,817,23,7149,207,183,25,63297,9341 +2040,49,2016,645,119887,926,26,8102,235,208,28,64602,10586 +2040,49,2017,729,135509,1047,30,9158,265,235,32,69463,11965 +2040,49,2018,1050,194985,1506,43,13177,382,338,45,93065,17217 +2040,49,2019,1136,211009,1630,46,14260,413,365,49,98528,18632 +2040,49,2020,1236,229579,1773,50,15515,449,397,53,102352,20272 +2040,49,2021,1350,250724,1937,55,16944,491,434,58,80525,22139 +2040,49,2022,1453,269956,2085,59,18244,528,467,63,83462,23837 +2040,49,2023,1626,302022,2333,66,20411,591,523,70,90798,26668 +2040,49,2024,1815,337100,2604,74,22782,660,584,78,98688,29766 +2040,49,2025,2017,374615,2893,82,25317,733,648,87,106937,33078 +2040,49,2026,2246,417167,3222,91,28193,816,722,97,103924,36835 +2040,49,2027,2540,471809,3644,103,31885,923,817,110,114083,41660 +2040,49,2028,2886,536159,4141,117,36234,1049,928,125,125589,47342 +2040,49,2029,3265,606558,4685,133,40992,1187,1050,141,137941,53558 +2040,49,2030,3733,693543,5357,152,46870,1357,1201,161,152419,61239 +2040,49,2031,4293,797465,6159,174,53894,1561,1380,185,163940,70415 +2040,49,2032,4895,909248,7023,199,61448,1779,1574,211,180254,80286 +2040,49,2033,5623,1044646,8069,228,70598,2044,1808,243,198949,92241 +2040,49,2034,6535,1214051,9377,265,82047,2376,2102,282,221657,107199 +2040,49,2035,7619,1415368,10932,309,95652,2770,2450,329,246696,124975 +2040,49,2036,9022,1676044,12945,366,113269,3280,2901,390,277217,147993 +2040,49,2037,10993,2042106,15773,446,138007,3996,3535,475,318099,180316 +2040,49,2038,14091,2617660,20218,572,176904,5122,4531,609,379707,231137 +2040,49,2039,18976,3525092,27227,770,238229,6898,6102,820,467463,311262 +2040,49,2040,35785,6647612,51344,1453,449252,13009,11508,1545,761723,586977 +2040,50,2010,1004,194319,1516,40,12386,404,358,43,128676,16661 +2040,50,2011,120,23202,181,5,1480,48,43,5,14357,1991 +2040,50,2012,187,36166,282,8,2310,75,67,8,21030,3107 +2040,50,2013,189,36532,285,8,2336,76,67,8,20289,3142 +2040,50,2014,242,46707,364,10,2986,97,86,10,24302,4016 +2040,50,2015,280,54111,422,11,3459,113,100,12,26269,4653 +2040,50,2016,318,61323,478,13,3920,128,113,14,26582,5273 +2040,50,2017,359,69313,540,14,4431,145,128,16,28581,5960 +2040,50,2018,517,99735,777,21,6376,208,184,22,38127,8576 +2040,50,2019,559,107932,841,22,6900,225,199,24,40366,9281 +2040,50,2020,609,117430,915,24,7507,245,217,26,41745,10098 +2040,50,2021,665,128246,999,27,8199,267,237,29,30395,11028 +2040,50,2022,716,138083,1076,29,8828,288,255,31,31422,11874 +2040,50,2023,801,154485,1204,32,9876,322,285,35,34219,13285 +2040,50,2024,894,172427,1344,36,11023,359,318,39,37230,14827 +2040,50,2025,993,191616,1493,40,12250,399,353,43,40381,16478 +2040,50,2026,1106,213382,1663,44,13642,445,394,48,37916,18349 +2040,50,2027,1251,241331,1881,50,15429,503,445,54,41709,20753 +2040,50,2028,1422,274247,2137,57,17533,572,506,61,46020,23583 +2040,50,2029,1608,310255,2418,64,19835,647,572,69,50656,26680 +2040,50,2030,1839,354749,2764,74,22679,740,654,79,56118,30506 +2040,50,2031,2114,407906,3179,85,26078,850,752,91,59851,35077 +2040,50,2032,2411,465082,3624,97,29733,970,858,104,66033,39994 +2040,50,2033,2770,534339,4164,111,34161,1114,985,120,73169,45949 +2040,50,2034,3219,620989,4839,129,39700,1295,1145,139,81870,53400 +2040,50,2035,3753,723964,5641,150,46284,1509,1335,162,91567,62255 +2040,50,2036,4444,857302,6680,178,54808,1787,1581,192,103492,73721 +2040,50,2037,5415,1044542,8140,217,66778,2178,1926,234,119585,89823 +2040,50,2038,6941,1338940,10434,278,85600,2791,2469,300,144002,115139 +2040,50,2039,9347,1803094,14051,374,115273,3759,3325,403,179394,155052 +2040,50,2040,17626,3400269,26496,706,217382,7089,6271,761,298628,292397 +2040,51,2010,327,63351,453,12,3741,130,115,14,39823,5440 +2040,51,2011,39,7570,54,1,447,16,14,2,4455,650 +2040,51,2012,61,11808,84,2,698,24,21,3,6542,1015 +2040,51,2013,62,11936,85,2,705,25,22,3,6323,1026 +2040,51,2014,79,15260,109,3,902,31,28,3,7595,1311 +2040,51,2015,91,17679,126,3,1045,36,32,4,8236,1519 +2040,51,2016,104,20035,143,4,1184,41,36,4,8431,1722 +2040,51,2017,117,22646,162,4,1338,47,41,5,9089,1946 +2040,51,2018,169,32586,233,6,1926,67,59,7,12210,2800 +2040,51,2019,182,35264,252,7,2084,73,64,8,12943,3031 +2040,51,2020,198,38367,275,7,2268,79,70,8,13467,3297 +2040,51,2021,217,41901,300,8,2476,86,76,9,10823,3601 +2040,51,2022,233,45115,323,8,2666,93,82,10,11236,3877 +2040,51,2023,261,50473,361,9,2983,104,92,11,12252,4338 +2040,51,2024,291,56336,403,11,3330,116,103,12,13347,4842 +2040,51,2025,324,62605,448,12,3700,129,114,14,14495,5380 +2040,51,2026,361,69716,499,13,4120,143,127,15,14256,5992 +2040,51,2027,408,78848,564,15,4660,162,143,17,15697,6776 +2040,51,2028,463,89602,641,17,5296,184,163,20,17337,7701 +2040,51,2029,524,101367,725,19,5991,208,184,22,19102,8712 +2040,51,2030,599,115904,829,22,6850,238,211,26,21187,9961 +2040,51,2031,689,133271,954,25,7877,274,242,29,22955,11454 +2040,51,2032,786,151952,1087,28,8981,313,276,34,25350,13059 +2040,51,2033,903,174580,1249,33,10318,359,318,39,28118,15004 +2040,51,2034,1049,202890,1452,38,11991,417,369,45,31498,17437 +2040,51,2035,1223,236534,1692,44,13980,487,430,52,35273,20328 +2040,51,2036,1449,280099,2004,52,16555,576,510,62,39928,24072 +2040,51,2037,1765,341273,2442,64,20170,702,621,75,46219,29330 +2040,51,2038,2263,437460,3130,82,25855,900,796,97,55781,37596 +2040,51,2039,3047,589109,4215,110,34818,1212,1072,130,69699,50629 +2040,51,2040,5746,1110939,7948,208,65660,2285,2021,246,116638,95477 +2040,53,2010,1348,252337,1979,58,16630,492,435,59,233350,22217 +2040,53,2011,161,30137,236,7,1988,59,52,7,26015,2655 +2040,53,2012,251,46986,368,11,3101,92,81,11,38077,4143 +2040,53,2013,254,47474,372,11,3136,93,82,11,36711,4189 +2040,53,2014,325,60695,476,14,4009,119,105,14,43931,5356 +2040,53,2015,376,70317,551,16,4644,137,122,16,47433,6205 +2040,53,2016,427,79688,625,18,5263,156,138,19,48254,7032 +2040,53,2017,482,90072,706,21,5949,176,156,21,51832,7948 +2040,53,2018,694,129605,1016,30,8560,253,224,30,69290,11436 +2040,53,2019,751,140257,1100,32,9264,274,242,33,73321,12376 +2040,53,2020,817,152601,1197,35,10079,298,264,35,76034,13466 +2040,53,2021,892,166655,1307,39,11008,326,288,39,59050,14706 +2040,53,2022,961,179439,1407,42,11852,351,310,42,61084,15834 +2040,53,2023,1075,200753,1574,47,13260,392,347,47,66396,17715 +2040,53,2024,1200,224069,1757,52,14800,438,387,52,72105,19772 +2040,53,2025,1333,249005,1952,58,16447,487,430,58,78069,21972 +2040,53,2026,1485,277289,2174,64,18315,542,479,64,75347,24468 +2040,53,2027,1679,313609,2459,73,20714,613,542,73,82624,27673 +2040,53,2028,1908,356382,2794,83,23539,696,616,83,90850,31447 +2040,53,2029,2158,403176,3161,93,26630,788,697,94,99671,35577 +2040,53,2030,2468,460995,3615,107,30449,901,797,107,109983,40679 +2040,53,2031,2838,530072,4156,123,35011,1036,916,123,117883,46774 +2040,53,2032,3236,604373,4739,140,39919,1181,1045,141,129410,53330 +2040,53,2033,3717,694371,5445,161,45863,1357,1200,162,142574,61272 +2040,53,2034,4320,806974,6327,187,53300,1577,1395,188,158532,71208 +2040,53,2035,5037,940789,7377,218,62139,1839,1626,219,176037,83016 +2040,53,2036,5964,1114061,8735,258,73583,2177,1926,259,197278,98305 +2040,53,2037,7267,1357379,10643,314,89655,2653,2347,316,225625,119776 +2040,53,2038,9315,1739945,13643,403,114923,3400,3008,405,268192,153534 +2040,53,2039,12544,2343114,18372,543,154762,4579,4051,545,328275,206758 +2040,53,2040,23656,4418639,34646,1023,291850,8636,7639,1028,529243,389903 +2040,54,2010,347,67960,493,13,4136,140,124,15,42693,5758 +2040,54,2011,41,8119,59,2,494,17,15,2,4774,688 +2040,54,2012,65,12661,92,2,771,26,23,3,7007,1074 +2040,54,2013,65,12796,93,2,780,26,23,3,6771,1086 +2040,54,2014,84,16360,119,3,997,34,30,4,8130,1388 +2040,54,2015,97,18953,137,4,1155,39,35,4,8812,1608 +2040,54,2016,110,21479,156,4,1309,44,39,5,9008,1822 +2040,54,2017,124,24278,176,5,1480,50,44,5,9707,2060 +2040,54,2018,178,34934,253,7,2129,72,64,8,13030,2964 +2040,54,2019,193,37805,274,7,2304,78,69,8,13810,3208 +2040,54,2020,210,41132,298,8,2507,85,75,9,14359,3490 +2040,54,2021,229,44920,326,8,2738,93,82,10,11316,3811 +2040,54,2022,247,48366,351,9,2948,100,88,11,11748,4104 +2040,54,2023,276,54111,392,10,3298,112,99,12,12809,4591 +2040,54,2024,308,60396,438,11,3681,125,110,13,13953,5125 +2040,54,2025,343,67117,486,13,4090,139,123,15,15151,5695 +2040,54,2026,382,74741,542,14,4555,154,136,16,14778,6342 +2040,54,2027,432,84531,613,16,5152,174,154,18,16272,7172 +2040,54,2028,491,96060,696,18,5854,198,175,21,17972,8151 +2040,54,2029,555,108673,788,20,6623,224,198,24,19803,9221 +2040,54,2030,635,124257,901,23,7573,257,227,27,21964,10543 +2040,54,2031,730,142876,1035,27,8708,295,261,31,23738,12123 +2040,54,2032,832,162903,1181,31,9928,336,297,36,26217,13822 +2040,54,2033,956,187162,1356,35,11407,386,342,41,29084,15881 +2040,54,2034,1111,217513,1576,41,13256,449,397,48,32584,18456 +2040,54,2035,1295,253581,1838,48,15455,523,463,55,36496,21516 +2040,54,2036,1533,300286,2176,56,18301,620,548,66,41319,25479 +2040,54,2037,1868,365869,2651,69,22298,755,668,80,47841,31044 +2040,54,2038,2395,468988,3399,88,28583,968,856,102,57754,39793 +2040,54,2039,3225,631566,4577,118,38491,1304,1153,138,72191,53588 +2040,54,2040,6082,1191004,8631,223,72586,2459,2175,260,120887,101056 +2040,55,2010,856,167053,1162,32,10682,340,300,37,104841,14227 +2040,55,2011,102,19948,139,4,1277,41,36,4,11718,1700 +2040,55,2012,160,31096,216,6,1992,63,56,7,17194,2653 +2040,55,2013,161,31414,218,6,2014,64,57,7,16610,2683 +2040,55,2014,206,40163,279,8,2575,82,72,9,19934,3430 +2040,55,2015,239,46530,323,9,2983,95,84,10,21595,3973 +2040,55,2016,271,52731,367,10,3381,107,95,12,21983,4503 +2040,55,2017,306,59603,414,11,3821,121,107,13,23681,5090 +2040,55,2018,441,85763,596,16,5499,175,155,19,31717,7324 +2040,55,2019,477,92811,645,18,5950,189,167,20,33609,7926 +2040,55,2020,519,100979,702,19,6474,206,182,22,34870,8623 +2040,55,2021,567,110279,767,21,7070,225,199,24,26490,9417 +2040,55,2022,610,118738,825,23,7613,242,214,26,27470,10140 +2040,55,2023,683,132842,923,26,8517,271,239,29,29959,11344 +2040,55,2024,762,148271,1031,28,9506,302,267,33,32640,12662 +2040,55,2025,847,164772,1145,32,10564,336,297,36,35452,14071 +2040,55,2026,943,183488,1275,35,11764,374,331,40,34035,15669 +2040,55,2027,1066,207522,1443,40,13305,423,374,46,37501,17721 +2040,55,2028,1212,235826,1639,45,15120,480,425,52,41450,20138 +2040,55,2029,1371,266790,1855,51,17105,544,481,59,45703,22783 +2040,55,2030,1568,305050,2120,59,19558,622,550,67,50732,26050 +2040,55,2031,1803,350759,2438,67,22489,715,632,77,54605,29953 +2040,55,2032,2055,399926,2780,77,25641,815,721,88,60375,34152 +2040,55,2033,2361,459479,3194,88,29459,936,828,101,67064,39237 +2040,55,2034,2744,533991,3712,103,34236,1088,962,118,75240,45600 +2040,55,2035,3199,622539,4327,120,39913,1268,1122,137,84406,53162 +2040,55,2036,3788,737196,5124,142,47265,1502,1329,162,95737,62953 +2040,55,2037,4616,898204,6244,173,57587,1830,1619,198,111091,76702 +2040,55,2038,5917,1151359,8003,221,73818,2346,2075,253,134477,98321 +2040,55,2039,7968,1550486,10778,298,99407,3159,2795,341,168698,132404 +2040,55,2040,15026,2923902,20325,562,187463,5957,5270,643,284277,249688 +2040,56,2010,1199,236890,1997,62,15195,467,413,54,216886,20994 +2040,56,2011,143,28278,238,7,1816,56,49,6,24199,2509 +2040,56,2012,224,44067,371,12,2834,87,77,10,35446,3915 +2040,56,2013,226,44503,375,12,2865,88,78,10,34195,3959 +2040,56,2014,289,56897,479,15,3663,113,100,13,40958,5061 +2040,56,2015,335,65917,555,17,4244,130,115,15,44270,5863 +2040,56,2016,380,74701,629,20,4809,148,131,17,45165,6645 +2040,56,2017,429,84435,711,22,5436,167,148,19,48556,7511 +2040,56,2018,617,121495,1024,32,7822,240,213,28,65037,10807 +2040,56,2019,668,131479,1108,35,8465,260,230,30,68850,11695 +2040,56,2020,727,143050,1205,38,9210,283,250,33,71506,12724 +2040,56,2021,794,156226,1316,41,10058,309,273,36,55811,13896 +2040,56,2022,855,168209,1417,44,10830,333,294,39,57847,14962 +2040,56,2023,956,188189,1586,49,12116,372,329,43,62924,16740 +2040,56,2024,1067,210046,1770,55,13523,416,368,48,68384,18684 +2040,56,2025,1186,233422,1967,61,15028,462,408,54,74092,20763 +2040,56,2026,1321,259936,2190,68,16735,514,455,60,71737,23122 +2040,56,2027,1494,293983,2477,77,18927,582,514,68,78739,26150 +2040,56,2028,1698,334079,2815,88,21509,661,585,77,86668,29717 +2040,56,2029,1920,377944,3184,99,24333,748,661,87,95179,33618 +2040,56,2030,2196,432145,3641,114,27822,855,756,99,105153,38440 +2040,56,2031,2525,496899,4187,131,31991,983,870,114,112944,44200 +2040,56,2032,2879,566550,4774,149,36476,1121,991,130,124162,50395 +2040,56,2033,3307,650916,5484,171,41907,1288,1139,150,137012,57900 +2040,56,2034,3844,756472,6374,199,48703,1496,1324,174,152617,67289 +2040,56,2035,4481,881912,7431,232,56779,1745,1543,203,169815,78447 +2040,56,2036,5306,1044340,8799,274,67237,2066,1827,240,190767,92895 +2040,56,2037,6465,1272429,10721,334,81921,2517,2227,293,218822,113184 +2040,56,2038,8288,1631058,13743,429,105011,3226,2854,375,261083,145084 +2040,56,2039,11161,2196476,18507,577,141413,4345,3844,505,321222,195378 +2040,56,2040,21047,4142109,34900,1089,266677,8194,7248,953,522827,368444 +2045,1,2015,1216,248940,2022,63,13007,516,456,55,235558,21549 +2045,1,2016,194,39735,323,10,2076,82,73,9,33399,3440 +2045,1,2017,222,45416,369,11,2373,94,83,10,35863,3931 +2045,1,2018,318,65124,529,16,3403,135,119,14,47879,5637 +2045,1,2019,362,74019,601,19,3868,153,136,16,51031,6407 +2045,1,2020,416,85149,692,21,4449,176,156,19,53492,7371 +2045,1,2021,468,95907,779,24,5011,199,176,21,57119,8302 +2045,1,2022,519,106193,862,27,5549,220,195,24,58721,9192 +2045,1,2023,590,120898,982,30,6317,250,221,27,63864,10465 +2045,1,2024,652,133421,1084,34,6971,276,244,30,68967,11549 +2045,1,2025,717,146708,1191,37,7666,304,269,32,74261,12699 +2045,1,2026,791,162006,1316,41,8465,336,297,36,62448,14024 +2045,1,2027,882,180580,1467,46,9435,374,331,40,67955,15631 +2045,1,2028,990,202797,1647,51,10596,420,372,45,74164,17555 +2045,1,2029,1108,226963,1843,57,11859,470,416,50,80778,19646 +2045,1,2030,1241,254004,2063,64,13272,526,465,56,88099,21987 +2045,1,2031,1401,286908,2330,72,14991,594,526,64,88444,24835 +2045,1,2032,1567,320820,2606,81,16763,664,588,71,95879,27771 +2045,1,2033,1756,359470,2919,91,18783,744,659,80,103936,31116 +2045,1,2034,1970,403374,3276,102,21076,835,739,89,113092,34917 +2045,1,2035,2209,452343,3674,114,23635,937,829,100,122375,39156 +2045,1,2036,2474,506457,4113,128,26463,1049,928,112,128704,43840 +2045,1,2037,2791,571451,4641,144,29859,1183,1047,127,139768,49466 +2045,1,2038,3197,654529,5316,165,34199,1356,1199,145,153442,56657 +2045,1,2039,3687,754869,6131,190,39442,1563,1383,167,169232,65343 +2045,1,2040,4344,889471,7224,224,46475,1842,1630,197,189823,76994 +2045,1,2041,5204,1065454,8653,269,55671,2207,1952,236,215038,92228 +2045,1,2042,6374,1305034,10599,329,68189,2703,2391,289,247034,112966 +2045,1,2043,8180,1674818,13602,422,87510,3469,3068,371,293672,144975 +2045,1,2044,11067,2266019,18404,571,118401,4693,4152,502,360624,196151 +2045,1,2045,20752,4249016,34509,1071,222014,8800,7785,941,576516,367803 +2045,4,2015,6340,1307801,12039,278,80223,2707,2394,279,1117144,107616 +2045,4,2016,1012,208746,1922,44,12805,432,382,45,159296,17177 +2045,4,2017,1157,238592,2196,51,14636,494,437,51,171269,19633 +2045,4,2018,1659,342126,3149,73,20986,708,626,73,229401,28153 +2045,4,2019,1885,388857,3580,83,23853,805,712,83,244870,31998 +2045,4,2020,2169,447329,4118,95,27440,926,819,96,257724,36810 +2045,4,2021,2443,503844,4638,107,30906,1043,922,108,275593,41460 +2045,4,2022,2705,557882,5135,118,34221,1155,1021,119,284421,45907 +2045,4,2023,3079,635132,5847,135,38960,1314,1163,136,309751,52264 +2045,4,2024,3398,700925,6452,149,42996,1451,1283,150,334724,57677 +2045,4,2025,3736,770725,7095,164,47277,1595,1411,165,360652,63421 +2045,4,2026,4126,851096,7835,181,52208,1761,1558,182,314897,70035 +2045,4,2027,4599,948670,8733,201,58193,1963,1737,203,342915,78064 +2045,4,2028,5165,1065391,9807,226,65353,2205,1951,227,374575,87668 +2045,4,2029,5780,1192343,10976,253,73140,2468,2183,255,408330,98115 +2045,4,2030,6469,1334405,12284,283,81854,2762,2443,285,445708,109805 +2045,4,2031,7307,1507263,13875,320,92458,3119,2760,322,454877,124029 +2045,4,2032,8171,1685420,15515,358,103386,3488,3086,360,493585,138689 +2045,4,2033,9155,1888468,17384,401,115841,3908,3457,403,535620,155397 +2045,4,2034,10273,2119115,19507,450,129990,4386,3880,453,583387,174377 +2045,4,2035,11520,2376377,21875,504,145770,4918,4351,507,632031,195546 +2045,4,2036,12899,2660661,24492,565,163209,5506,4871,568,668854,218939 +2045,4,2037,14554,3002110,27635,637,184154,6213,5496,641,727301,247036 +2045,4,2038,16670,3438551,31653,730,210926,7116,6295,734,799659,282950 +2045,4,2039,19225,3965690,36505,842,243261,8207,7260,847,883404,326327 +2045,4,2040,22653,4672812,43015,992,286637,9671,8555,998,992781,384514 +2045,4,2041,27135,5597331,51525,1188,343349,11584,10248,1195,1127215,460591 +2045,4,2042,33237,6855961,63111,1455,420555,14189,12552,1464,1298523,564161 +2045,4,2043,42655,8798610,80994,1868,539719,18210,16109,1879,1549130,724015 +2045,4,2044,57712,11904477,109585,2527,730238,24637,21795,2542,1911568,979590 +2045,4,2045,108215,22322120,205483,4739,1369271,46198,40867,4767,3083655,1836831 +2045,5,2015,900,171317,1276,34,9648,354,313,38,146953,14453 +2045,5,2016,144,27345,204,5,1540,57,50,6,20729,2307 +2045,5,2017,164,31255,233,6,1760,65,57,7,22242,2637 +2045,5,2018,235,44817,334,9,2524,93,82,10,29611,3781 +2045,5,2019,268,50939,379,10,2869,105,93,11,31534,4298 +2045,5,2020,308,58599,436,12,3300,121,107,13,32948,4944 +2045,5,2021,347,66002,491,13,3717,136,121,15,35155,5568 +2045,5,2022,384,73080,544,15,4116,151,134,16,36027,6166 +2045,5,2023,437,83200,620,17,4685,172,152,19,39155,7019 +2045,5,2024,482,91819,684,18,5171,190,168,21,42269,7746 +2045,5,2025,530,100962,752,20,5686,209,185,23,45498,8518 +2045,5,2026,585,111490,830,22,6279,230,204,25,36874,9406 +2045,5,2027,653,124272,925,25,6998,257,227,28,40121,10484 +2045,5,2028,733,139562,1039,28,7859,288,255,31,43779,11774 +2045,5,2029,820,156192,1163,31,8796,323,286,35,47677,13177 +2045,5,2030,918,174802,1302,35,9844,361,320,39,51990,14747 +2045,5,2031,1037,197446,1470,40,11119,408,361,44,51373,16658 +2045,5,2032,1159,220784,1644,44,12433,456,404,49,55697,18627 +2045,5,2033,1299,247382,1842,49,13931,511,452,55,60384,20871 +2045,5,2034,1458,277596,2067,56,15633,574,508,62,65710,23420 +2045,5,2035,1635,311296,2318,62,17531,643,569,70,71113,26263 +2045,5,2036,1830,348537,2595,70,19628,720,637,78,74440,29405 +2045,5,2037,2065,393265,2928,79,22147,813,719,88,80864,33178 +2045,5,2038,2365,450437,3354,90,25366,931,824,101,88807,38002 +2045,5,2039,2728,519490,3868,104,29255,1074,950,116,97984,43828 +2045,5,2040,3215,612121,4558,122,34472,1265,1119,137,109956,51642 +2045,5,2041,3851,733231,5460,147,41292,1515,1341,164,124630,61860 +2045,5,2042,4716,898106,6688,180,50577,1856,1642,201,143269,75770 +2045,5,2043,6053,1152584,8583,231,64908,2382,2107,258,170461,97239 +2045,5,2044,8189,1559443,11612,312,87820,3223,2851,348,209568,131565 +2045,5,2045,15356,2924116,21774,585,164672,6044,5346,653,335760,246697 +2045,6,2015,1140,208766,1668,44,15484,433,383,16,107221,19316 +2045,6,2016,182,33322,266,7,2471,69,61,3,15191,3083 +2045,6,2017,208,38087,304,8,2825,79,70,3,16368,3524 +2045,6,2018,298,54614,436,12,4051,113,100,4,21873,5053 +2045,6,2019,339,62074,496,13,4604,129,114,5,23408,5743 +2045,6,2020,390,71408,571,15,5296,148,131,5,24605,6607 +2045,6,2021,439,80429,643,17,5965,167,148,6,26376,7442 +2045,6,2022,486,89055,712,19,6605,185,163,7,27172,8240 +2045,6,2023,554,101387,810,21,7520,210,186,8,29663,9381 +2045,6,2024,611,111890,894,24,8299,232,205,9,32092,10353 +2045,6,2025,672,123032,983,26,9125,255,226,9,34618,11384 +2045,6,2026,742,135862,1086,29,10077,282,249,10,27728,12571 +2045,6,2027,827,151437,1210,32,11232,314,278,12,30274,14012 +2045,6,2028,929,170070,1359,36,12614,353,312,13,33175,15736 +2045,6,2029,1039,190335,1521,40,14117,395,349,15,36277,17611 +2045,6,2030,1163,213013,1702,45,15799,442,391,16,39717,19709 +2045,6,2031,1314,240606,1923,51,17845,499,441,18,39231,22262 +2045,6,2032,1469,269046,2150,57,19955,558,494,21,42776,24894 +2045,6,2033,1646,301458,2409,64,22359,625,553,23,46666,27893 +2045,6,2034,1847,338277,2703,72,25089,702,621,26,51086,31299 +2045,6,2035,2071,379344,3032,80,28135,787,696,29,55679,35099 +2045,6,2036,2319,424725,3394,90,31501,881,779,32,58660,39298 +2045,6,2037,2617,479231,3830,101,35544,994,879,37,64258,44341 +2045,6,2038,2997,548901,4387,116,40711,1138,1007,42,71248,50788 +2045,6,2039,3457,633048,5059,134,46952,1313,1161,48,79433,58574 +2045,6,2040,4073,745927,5961,158,55324,1547,1369,57,90204,69018 +2045,6,2041,4879,893511,7141,189,66270,1853,1639,68,103683,82673 +2045,6,2042,5976,1094426,8746,232,81172,2270,2008,84,121208,101263 +2045,6,2043,7669,1404533,11224,297,104172,2913,2577,107,147284,129956 +2045,6,2044,10377,1900328,15187,402,140944,3941,3487,145,186280,175830 +2045,6,2045,19457,3563306,28477,755,264284,7390,6538,272,314009,329700 +2045,8,2015,259,48477,358,9,3200,95,84,11,31734,4311 +2045,8,2016,41,7738,57,1,511,15,13,2,4523,688 +2045,8,2017,47,8844,65,2,584,17,15,2,4867,786 +2045,8,2018,68,12682,94,2,837,25,22,3,6521,1128 +2045,8,2019,77,14414,106,3,952,28,25,3,6968,1282 +2045,8,2020,89,16581,122,3,1095,33,29,4,7339,1475 +2045,8,2021,100,18676,138,4,1233,37,33,4,7855,1661 +2045,8,2022,111,20679,153,4,1365,41,36,5,8111,1839 +2045,8,2023,126,23543,174,4,1554,46,41,5,8841,2094 +2045,8,2024,139,25982,192,5,1715,51,45,6,9558,2311 +2045,8,2025,153,28569,211,5,1886,56,50,7,10303,2541 +2045,8,2026,169,31548,233,6,2083,62,55,7,8744,2806 +2045,8,2027,188,35165,259,7,2322,69,61,8,9531,3127 +2045,8,2028,211,39492,291,8,2607,78,69,9,10424,3512 +2045,8,2029,237,44197,326,8,2918,87,77,10,11376,3930 +2045,8,2030,265,49463,365,9,3266,97,86,11,12431,4399 +2045,8,2031,299,55871,412,11,3689,110,97,13,12559,4969 +2045,8,2032,334,62475,461,12,4125,123,109,14,13651,5556 +2045,8,2033,375,70001,516,13,4621,138,122,16,14843,6225 +2045,8,2034,420,78551,580,15,5186,155,137,18,16196,6985 +2045,8,2035,471,88087,650,17,5815,173,153,20,17585,7834 +2045,8,2036,528,98625,728,19,6511,194,172,23,18590,8771 +2045,8,2037,596,111281,821,21,7347,219,194,25,20270,9896 +2045,8,2038,682,127459,940,24,8415,251,222,29,22355,11335 +2045,8,2039,787,146999,1085,28,9705,289,256,34,24780,13073 +2045,8,2040,927,173210,1278,33,11435,341,302,40,27956,15404 +2045,8,2041,1110,207480,1531,40,13698,409,361,47,31888,18451 +2045,8,2042,1360,254135,1875,49,16778,500,443,58,36939,22600 +2045,8,2043,1746,326143,2406,62,21532,642,568,75,44378,29004 +2045,8,2044,2362,441272,3256,84,29133,869,769,101,55286,39242 +2045,8,2045,4428,827430,6104,158,54627,1629,1441,189,90748,73583 +2045,9,2015,3150,595503,5943,160,36619,1244,1100,143,437189,55498 +2045,9,2016,503,95052,949,25,5845,198,176,23,61550,8858 +2045,9,2017,575,108642,1084,29,6681,227,201,26,66205,10125 +2045,9,2018,824,155785,1555,42,9580,325,288,37,88132,14519 +2045,9,2019,937,177065,1767,47,10888,370,327,42,94130,16502 +2045,9,2020,1077,203690,2033,55,12526,425,376,49,98472,18983 +2045,9,2021,1214,229423,2290,61,14108,479,424,55,105366,21381 +2045,9,2022,1344,254029,2535,68,15621,530,469,61,108060,23674 +2045,9,2023,1530,289205,2886,78,17784,604,534,69,117764,26953 +2045,9,2024,1688,319163,3185,86,19626,666,590,77,127302,29745 +2045,9,2025,1856,350946,3503,94,21581,733,648,84,137208,32707 +2045,9,2026,2050,387543,3868,104,23831,809,716,93,106510,36117 +2045,9,2027,2285,431973,4311,116,26563,902,798,104,116180,40258 +2045,9,2028,2566,485121,4842,130,29832,1013,896,116,127165,45211 +2045,9,2029,2872,542928,5419,146,33386,1134,1003,130,138899,50599 +2045,9,2030,3214,607617,6064,163,37364,1269,1122,146,151905,56627 +2045,9,2031,3630,686327,6850,184,42204,1433,1268,165,147735,63963 +2045,9,2032,4059,767449,7659,206,47193,1603,1418,184,160888,71523 +2045,9,2033,4548,859908,8582,230,52878,1796,1588,206,175283,80140 +2045,9,2034,5104,964930,9630,259,59337,2015,1782,231,191640,89927 +2045,9,2035,5724,1082074,10799,290,66540,2260,1999,260,208557,100845 +2045,9,2036,6408,1211521,12091,325,74500,2530,2238,291,218367,112909 +2045,9,2037,7231,1366998,13643,366,84061,2855,2525,328,238826,127399 +2045,9,2038,8282,1565730,15626,420,96282,3270,2892,376,264327,145920 +2045,9,2039,9552,1805761,18022,484,111042,3771,3336,433,294120,168289 +2045,9,2040,11255,2127746,21235,570,130842,4443,3930,510,333268,198297 +2045,9,2041,13481,2548726,25437,683,156729,5322,4708,611,382083,237531 +2045,9,2042,16513,3121837,31156,837,191972,6519,5767,749,445306,290942 +2045,9,2043,21192,4006410,39985,1074,246367,8366,7401,961,539075,373381 +2045,9,2044,28672,5420660,54099,1453,333334,11319,10013,1300,678435,505182 +2045,9,2045,53764,10164288,101441,2724,625035,21225,18776,2438,1133828,947269 +2045,10,2015,5742,1099891,11152,303,64460,2306,2040,263,824213,102934 +2045,10,2016,916,175560,1780,48,10289,368,326,42,116308,16430 +2045,10,2017,1047,200661,2035,55,11760,421,372,48,125148,18779 +2045,10,2018,1502,287735,2917,79,16863,603,534,69,166803,26928 +2045,10,2019,1707,327038,3316,90,19166,686,606,78,178225,30606 +2045,10,2020,1964,376214,3815,104,22048,789,698,90,186722,35208 +2045,10,2021,2212,423744,4296,117,24834,888,786,101,199867,39656 +2045,10,2022,2449,469192,4757,129,27497,983,870,112,205272,43909 +2045,10,2023,2788,534161,5416,147,31305,1120,990,128,223783,49990 +2045,10,2024,3077,589494,5977,162,34548,1236,1093,141,241945,55168 +2045,10,2025,3384,648195,6572,178,37988,1359,1202,155,260816,60662 +2045,10,2026,3737,715791,7258,197,41949,1500,1327,171,207658,66988 +2045,10,2027,4165,797853,8090,220,46759,1672,1479,191,226504,74667 +2045,10,2028,4677,896018,9085,247,52512,1878,1661,214,247909,83854 +2045,10,2029,5235,1002787,10167,276,58769,2102,1859,240,270774,93846 +2045,10,2030,5858,1122265,11379,309,65771,2352,2081,269,296118,105027 +2045,10,2031,6617,1267642,12853,349,74291,2657,2351,303,291299,118633 +2045,10,2032,7399,1417478,14372,390,83072,2971,2628,339,317138,132655 +2045,10,2033,8291,1588245,16104,437,93080,3329,2945,380,345399,148636 +2045,10,2034,9303,1782222,18070,490,104449,3736,3305,426,377513,166790 +2045,10,2035,10433,1998586,20264,550,117129,4189,3706,478,410686,187038 +2045,10,2036,11681,2237676,22688,616,131141,4690,4149,535,431375,209414 +2045,10,2037,13180,2524841,25600,695,147970,5292,4682,604,471524,236288 +2045,10,2038,15096,2891898,29322,796,169482,6062,5362,692,521538,270639 +2045,10,2039,17410,3335233,33817,918,195464,6991,6184,798,579918,312129 +2045,10,2040,20515,3929941,39847,1081,230317,8238,7287,940,656587,367784 +2045,10,2041,24574,4707485,47730,1295,275886,9868,8729,1126,752068,440551 +2045,10,2042,30100,5766022,58463,1586,337922,12086,10692,1380,875552,539614 +2045,10,2043,38628,7399830,75029,2036,433672,15511,13721,1771,1058480,692514 +2045,10,2044,52264,10011937,101513,2755,586757,20986,18565,2396,1329714,936969 +2045,10,2045,98000,18773402,190348,5165,1100230,39352,34811,4492,2215266,1756914 +2045,11,2015,2447,525096,6362,236,27817,1092,966,124,1128307,48422 +2045,11,2016,391,83814,1015,38,4440,174,154,20,157063,7729 +2045,11,2017,446,95797,1161,43,5075,199,176,23,167765,8834 +2045,11,2018,640,137367,1664,62,7277,286,253,32,221487,12667 +2045,11,2019,728,156130,1892,70,8271,325,287,37,234608,14398 +2045,11,2020,837,179608,2176,81,9515,374,330,42,242327,16563 +2045,11,2021,943,202298,2451,91,10717,421,372,48,257203,18655 +2045,11,2022,1044,223996,2714,101,11866,466,412,53,260697,20656 +2045,11,2023,1188,255012,3090,115,13509,530,469,60,281868,23516 +2045,11,2024,1311,281429,3410,127,14909,585,518,67,303509,25952 +2045,11,2025,1442,309454,3749,139,16393,644,569,73,325868,28536 +2045,11,2026,1592,341724,4140,154,18103,711,629,81,240993,31512 +2045,11,2027,1775,380901,4615,171,20178,792,701,90,261220,35125 +2045,11,2028,1993,427766,5182,192,22661,890,787,101,283717,39446 +2045,11,2029,2231,478739,5800,215,25361,996,881,113,307563,44147 +2045,11,2030,2497,535778,6491,241,28383,1114,986,127,333885,49407 +2045,11,2031,2820,605182,7332,272,32059,1259,1113,143,313660,55807 +2045,11,2032,3153,676714,8199,304,35849,1407,1245,160,337982,62403 +2045,11,2033,3533,758240,9186,341,40167,1577,1395,179,363939,69921 +2045,11,2034,3965,850847,10308,383,45073,1769,1565,201,393441,78461 +2045,11,2035,4446,954141,11560,429,50545,1984,1755,226,422420,87986 +2045,11,2036,4978,1068285,12943,481,56592,2222,1965,253,431308,98512 +2045,11,2037,5617,1205379,14603,542,63855,2507,2217,285,464131,111154 +2045,11,2038,6433,1380615,16727,621,73138,2871,2540,326,504155,127314 +2045,11,2039,7420,1592268,19291,716,84350,3311,2929,376,549494,146831 +2045,11,2040,8743,1876185,22730,844,99390,3902,3451,443,607877,173013 +2045,11,2041,10472,2247391,27228,1011,119055,4674,4134,531,677160,207244 +2045,11,2042,12827,2752740,33350,1238,145826,5724,5064,651,761852,253844 +2045,11,2043,16462,3532741,42800,1589,187145,7346,6499,835,881219,325772 +2045,11,2044,22273,4779780,57908,2150,253207,9940,8793,1130,1040620,440768 +2045,11,2045,41764,8962572,108584,4032,474789,18638,16488,2119,1539420,826485 +2045,12,2015,6855,1456020,12824,420,70094,3032,2683,325,1381164,126966 +2045,12,2016,1094,232404,2047,67,11188,484,428,52,196216,20266 +2045,12,2017,1251,265632,2340,77,12788,553,489,59,210972,23163 +2045,12,2018,1793,380900,3355,110,18337,793,702,85,282040,33215 +2045,12,2019,2038,432928,3813,125,20841,902,798,97,301077,37751 +2045,12,2020,2345,498027,4386,144,23975,1037,918,111,316279,43428 +2045,12,2021,2641,560946,4941,162,27004,1168,1033,125,338232,48915 +2045,12,2022,2924,621109,5471,179,29901,1294,1144,139,348382,54161 +2045,12,2023,3329,707114,6228,204,34041,1473,1303,158,379440,61661 +2045,12,2024,3674,780364,6873,225,37567,1625,1438,174,410047,68048 +2045,12,2025,4040,858074,7558,248,41308,1787,1581,191,441829,74824 +2045,12,2026,4461,947554,8346,274,45616,1973,1746,211,377226,82627 +2045,12,2027,4973,1056187,9303,305,50846,2200,1946,236,410866,92100 +2045,12,2028,5585,1186134,10447,342,57101,2470,2185,265,448901,103431 +2045,12,2029,6250,1327475,11692,383,63906,2765,2446,296,489463,115756 +2045,12,2030,6995,1485639,13085,429,71520,3094,2737,331,534381,129548 +2045,12,2031,7901,1678086,14780,484,80784,3495,3092,374,540484,146330 +2045,12,2032,8835,1876437,16527,542,90333,3908,3457,418,586714,163626 +2045,12,2033,9899,2102494,18518,607,101215,4379,3874,469,636961,183338 +2045,12,2034,11108,2359281,20780,681,113577,4914,4347,526,694062,205730 +2045,12,2035,12457,2645700,23302,764,127366,5510,4874,590,752314,230706 +2045,12,2036,13947,2962204,26090,855,142602,6169,5458,661,794260,258305 +2045,12,2037,15737,3342348,29438,965,160903,6961,6158,745,864232,291454 +2045,12,2038,18025,3828259,33718,1105,184295,7973,7053,854,950927,333825 +2045,12,2039,20788,4415136,38887,1275,212548,9196,8135,985,1051382,385001 +2045,12,2040,24495,5202396,45821,1502,250447,10835,9585,1160,1182681,453650 +2045,12,2041,29341,6231705,54887,1799,299998,12979,11481,1390,1344345,543406 +2045,12,2042,35939,7632983,67229,2204,367457,15897,14063,1702,1550771,665598 +2045,12,2043,46122,9795778,86278,2828,471575,20402,18048,2185,1853279,854196 +2045,12,2044,62403,13253641,116734,3826,638040,27604,24419,2956,2292318,1155724 +2045,12,2045,117012,24851950,218887,7174,1196391,51760,45788,5542,3714066,2167100 +2045,13,2015,1281,234062,1588,41,13929,482,427,53,195299,19908 +2045,13,2016,204,37360,253,7,2223,77,68,8,27545,3178 +2045,13,2017,234,42702,290,7,2541,88,78,10,29534,3632 +2045,13,2018,335,61231,415,11,3644,126,112,14,39308,5208 +2045,13,2019,381,69595,472,12,4142,143,127,16,41825,5919 +2045,13,2020,438,80060,543,14,4764,165,146,18,43667,6809 +2045,13,2021,493,90175,612,16,5366,186,164,20,46554,7670 +2045,13,2022,546,99846,677,17,5942,206,182,23,47680,8492 +2045,13,2023,622,113672,771,20,6765,234,207,26,51777,9668 +2045,13,2024,686,125447,851,22,7465,258,229,28,55873,10670 +2045,13,2025,755,137939,936,24,8209,284,251,31,60117,11732 +2045,13,2026,833,152324,1033,27,9065,314,278,34,48712,12955 +2045,13,2027,929,169787,1152,30,10104,350,309,38,52968,14441 +2045,13,2028,1043,190677,1293,33,11347,393,348,43,57754,16217 +2045,13,2029,1168,213398,1448,37,12699,440,389,48,62848,18150 +2045,13,2030,1307,238823,1620,42,14213,492,435,54,68482,20312 +2045,13,2031,1476,269760,1830,47,16054,556,492,61,67603,22944 +2045,13,2032,1650,301646,2046,53,17951,622,550,68,73216,25656 +2045,13,2033,1849,337986,2293,59,20114,696,616,77,79285,28746 +2045,13,2034,2075,379265,2573,66,22570,781,691,86,86182,32257 +2045,13,2035,2327,425309,2885,74,25310,876,775,96,93143,36173 +2045,13,2036,2605,476188,3230,83,28338,981,868,108,97347,40501 +2045,13,2037,2940,537298,3645,94,31975,1107,979,122,105579,45698 +2045,13,2038,3367,615409,4174,107,36624,1268,1122,139,115736,52342 +2045,13,2039,3883,709754,4814,124,42238,1462,1294,161,127436,60366 +2045,13,2040,4576,836310,5673,146,49770,1723,1524,189,142670,71130 +2045,13,2041,5481,1001775,6795,175,59617,2064,1826,227,161254,85203 +2045,13,2042,6714,1227036,8323,214,73022,2528,2237,278,184733,104362 +2045,13,2043,8616,1574717,10682,275,93713,3245,2870,357,218825,133933 +2045,13,2044,11658,2130587,14452,371,126793,4390,3884,483,267384,181211 +2045,13,2045,21859,3995069,27100,696,237750,8232,7282,905,423477,339789 +2045,16,2015,549,101942,752,20,7174,200,177,23,72710,8987 +2045,16,2016,88,16272,120,3,1145,32,28,4,10254,1434 +2045,16,2017,100,18598,137,4,1309,37,32,4,11015,1640 +2045,16,2018,144,26668,197,5,1877,52,46,6,14672,2351 +2045,16,2019,163,30311,224,6,2133,60,53,7,15645,2672 +2045,16,2020,188,34869,257,7,2454,68,61,8,16363,3074 +2045,16,2021,212,39274,290,8,2764,77,68,9,17482,3462 +2045,16,2022,234,43487,321,9,3060,85,76,10,17930,3834 +2045,16,2023,267,49508,365,10,3484,97,86,11,19511,4365 +2045,16,2024,294,54637,403,11,3845,107,95,13,21075,4817 +2045,16,2025,324,60078,443,12,4228,118,104,14,22698,5296 +2045,16,2026,358,66342,489,13,4669,130,115,15,17705,5849 +2045,16,2027,399,73948,545,15,5204,145,128,17,19290,6519 +2045,16,2028,448,83047,612,16,5844,163,144,19,21085,7321 +2045,16,2029,501,92942,685,18,6540,183,161,21,22999,8194 +2045,16,2030,561,104016,767,20,7320,204,181,24,25119,9170 +2045,16,2031,633,117490,866,23,8268,231,204,27,24449,10358 +2045,16,2032,708,131378,969,26,9245,258,228,30,26576,11582 +2045,16,2033,793,147205,1085,29,10359,289,256,34,28894,12977 +2045,16,2034,890,165184,1218,33,11624,324,287,38,31529,14562 +2045,16,2035,998,185237,1366,36,13035,364,322,42,34232,16330 +2045,16,2036,1118,207397,1529,41,14594,407,360,48,35777,18284 +2045,16,2037,1261,234013,1726,46,16467,460,407,54,39022,20630 +2045,16,2038,1445,268033,1976,53,18861,526,466,61,43055,23629 +2045,16,2039,1666,309123,2279,61,21753,607,537,71,47747,27252 +2045,16,2040,1963,364243,2686,72,25632,715,633,83,53895,32111 +2045,16,2041,2351,436309,3217,86,30703,857,758,100,61512,38464 +2045,16,2042,2880,534418,3941,105,37607,1050,929,122,71306,47113 +2045,16,2043,3696,685847,5057,135,48263,1347,1192,157,85745,60463 +2045,16,2044,5001,927947,6843,183,65299,1823,1612,213,106952,81806 +2045,16,2045,9378,1739995,12831,343,122443,3417,3023,399,175940,153394 +2045,17,2015,1741,353682,2877,86,19455,736,651,78,287431,30179 +2045,17,2016,278,56453,459,14,3105,117,104,12,40649,4817 +2045,17,2017,318,64525,525,16,3549,134,119,14,43699,5506 +2045,17,2018,455,92525,753,23,5089,193,170,20,58292,7895 +2045,17,2019,518,105163,856,26,5785,219,194,23,62217,8973 +2045,17,2020,595,120976,984,29,6654,252,223,27,65205,10323 +2045,17,2021,671,136260,1109,33,7495,283,251,30,69722,11627 +2045,17,2022,743,150874,1227,37,8299,314,278,33,71647,12874 +2045,17,2023,845,171765,1397,42,9448,357,316,38,78029,14657 +2045,17,2024,933,189558,1542,46,10427,394,349,42,84319,16175 +2045,17,2025,1026,208435,1696,51,11465,434,384,46,90851,17786 +2045,17,2026,1133,230171,1873,56,12661,479,424,51,73815,19640 +2045,17,2027,1263,256559,2087,62,14112,534,472,57,80438,21892 +2045,17,2028,1418,288125,2344,70,15848,599,530,64,87940,24585 +2045,17,2029,1587,322458,2623,78,17737,671,593,71,95944,27515 +2045,17,2030,1776,360877,2936,88,19850,751,664,80,104811,30793 +2045,17,2031,2006,407625,3316,99,22422,848,750,90,103909,34782 +2045,17,2032,2244,455806,3708,111,25072,948,839,101,112938,38894 +2045,17,2033,2514,510718,4155,124,28092,1063,940,113,122780,43579 +2045,17,2034,2821,573094,4662,139,31523,1192,1055,127,133963,48902 +2045,17,2035,3163,642669,5228,156,35350,1337,1183,142,145435,54838 +2045,17,2036,3542,719550,5854,175,39579,1497,1324,159,152845,61399 +2045,17,2037,3996,811891,6605,198,44659,1689,1494,180,166656,69278 +2045,17,2038,4577,929923,7565,226,51151,1935,1712,206,183810,79350 +2045,17,2039,5279,1072483,8725,261,58993,2231,1974,237,203756,91514 +2045,17,2040,6220,1263716,10281,307,69512,2629,2326,280,229885,107832 +2045,17,2041,7451,1513746,12315,368,83264,3149,2786,335,262229,129167 +2045,17,2042,9126,1854130,15084,451,101988,3858,3413,410,303782,158211 +2045,17,2043,11712,2379500,19358,579,130886,4951,4380,527,364992,203041 +2045,17,2044,15846,3219451,26192,783,177088,6698,5925,712,454751,274713 +2045,17,2045,29714,6036801,49112,1469,332058,12560,11111,1336,746580,515116 +2045,18,2015,299,58589,426,11,3571,121,107,13,38891,4965 +2045,18,2016,48,9352,68,2,570,19,17,2,5491,793 +2045,18,2017,55,10689,78,2,652,22,20,2,5904,906 +2045,18,2018,78,15327,111,3,934,32,28,3,7870,1299 +2045,18,2019,89,17421,127,3,1062,36,32,4,8403,1476 +2045,18,2020,102,20040,146,4,1222,41,37,4,8802,1698 +2045,18,2021,115,22572,164,4,1376,47,41,5,9415,1913 +2045,18,2022,127,24993,182,5,1523,52,46,5,9669,2118 +2045,18,2023,145,28454,207,5,1734,59,52,6,10534,2411 +2045,18,2024,160,31401,228,6,1914,65,57,7,11386,2661 +2045,18,2025,176,34528,251,7,2105,71,63,8,12270,2926 +2045,18,2026,194,38129,277,7,2324,79,70,8,9757,3231 +2045,18,2027,217,42500,309,8,2591,88,78,9,10638,3602 +2045,18,2028,243,47729,347,9,2909,98,87,10,11639,4045 +2045,18,2029,272,53416,388,10,3256,110,97,12,12707,4527 +2045,18,2030,305,59781,434,11,3644,123,109,13,13891,5066 +2045,18,2031,344,67525,491,13,4116,139,123,15,13655,5722 +2045,18,2032,385,75506,549,14,4603,156,138,16,14860,6399 +2045,18,2033,431,84602,615,16,5157,175,154,18,16175,7170 +2045,18,2034,484,94935,690,18,5787,196,173,21,17671,8045 +2045,18,2035,543,106460,773,20,6489,220,194,23,19212,9022 +2045,18,2036,608,119196,866,23,7266,246,218,26,20169,10101 +2045,18,2037,686,134493,977,26,8198,277,245,29,22032,11398 +2045,18,2038,786,154045,1119,29,9390,318,281,34,24351,13055 +2045,18,2039,906,177661,1291,34,10829,366,324,39,27055,15056 +2045,18,2040,1068,209339,1521,40,12760,432,382,46,30605,17741 +2045,18,2041,1279,250758,1822,48,15285,517,458,55,35018,21251 +2045,18,2042,1566,307143,2231,59,18722,634,561,67,40717,26029 +2045,18,2043,2010,394173,2864,75,24027,813,719,86,49147,33404 +2045,18,2044,2720,533314,3875,102,32508,1100,973,116,61613,45196 +2045,18,2045,5100,1000019,7265,191,60957,2063,1825,218,102271,84747 +2045,19,2015,660,133780,1065,29,7856,278,246,29,80931,11414 +2045,19,2016,105,21353,170,5,1254,44,39,5,11468,1822 +2045,19,2017,120,24406,194,5,1433,51,45,5,12364,2082 +2045,19,2018,173,34997,278,8,2055,73,64,8,16527,2986 +2045,19,2019,196,39778,317,9,2336,83,73,9,17700,3394 +2045,19,2020,226,45759,364,10,2687,95,84,10,18619,3904 +2045,19,2021,254,51540,410,11,3027,107,95,11,19974,4397 +2045,19,2022,282,57068,454,12,3351,119,105,12,20590,4869 +2045,19,2023,321,64970,517,14,3815,135,119,14,22494,5543 +2045,19,2024,354,71700,571,16,4211,149,132,16,24345,6118 +2045,19,2025,389,78840,627,17,4630,164,145,17,26270,6727 +2045,19,2026,430,87062,693,19,5113,181,160,19,21183,7428 +2045,19,2027,479,97043,772,21,5699,202,178,21,23143,8280 +2045,19,2028,538,108983,867,24,6400,226,200,24,25379,9299 +2045,19,2029,602,121969,971,27,7163,253,224,27,27773,10407 +2045,19,2030,674,136501,1086,30,8016,284,251,30,30428,11646 +2045,19,2031,761,154184,1227,34,9054,320,283,34,30184,13155 +2045,19,2032,851,172408,1372,38,10125,358,317,38,32945,14710 +2045,19,2033,953,193179,1537,42,11344,401,355,42,35981,16482 +2045,19,2034,1070,216772,1725,47,12730,450,398,47,39430,18495 +2045,19,2035,1200,243089,1934,53,14275,505,447,53,43029,20741 +2045,19,2036,1343,272169,2166,60,15983,565,500,60,45453,23222 +2045,19,2037,1516,307097,2444,67,18034,638,564,67,49862,26202 +2045,19,2038,1736,351743,2799,77,20656,731,646,77,55376,30011 +2045,19,2039,2002,405666,3228,89,23823,843,745,89,61846,34612 +2045,19,2040,2359,477999,3804,105,28071,993,878,105,70370,40783 +2045,19,2041,2826,572574,4556,125,33624,1189,1052,125,81070,48853 +2045,19,2042,3461,701322,5581,153,41185,1457,1289,153,95028,59838 +2045,19,2043,4442,900043,7162,197,52855,1869,1654,197,115855,76793 +2045,19,2044,6010,1217755,9690,266,71513,2529,2238,267,147164,103900 +2045,19,2045,11270,2283415,18170,499,134094,4743,4196,500,249914,194823 +2045,20,2015,742,146401,1165,34,8364,302,267,33,135040,12379 +2045,20,2016,118,23368,186,5,1335,48,43,5,19042,1976 +2045,20,2017,135,26709,212,6,1526,55,49,6,20431,2258 +2045,20,2018,194,38299,305,9,2188,79,70,9,27196,3238 +2045,20,2019,221,43530,346,10,2487,90,79,10,28962,3681 +2045,20,2020,254,50076,398,12,2861,103,91,11,30253,4234 +2045,20,2021,286,56402,449,13,3222,116,103,13,32279,4769 +2045,20,2022,317,62452,497,14,3568,129,114,14,33072,5281 +2045,20,2023,360,71099,566,16,4062,147,130,16,35942,6012 +2045,20,2024,398,78464,624,18,4483,162,143,17,38799,6635 +2045,20,2025,437,86278,686,20,4929,178,157,19,41762,7295 +2045,20,2026,483,95275,758,22,5443,196,174,21,33469,8056 +2045,20,2027,538,106198,845,25,6067,219,194,24,36417,8980 +2045,20,2028,604,119264,949,28,6814,246,217,27,39740,10084 +2045,20,2029,677,133476,1062,31,7626,275,243,30,43279,11286 +2045,20,2030,757,149379,1188,35,8534,308,272,33,47196,12631 +2045,20,2031,855,168729,1342,39,9640,348,308,38,46403,14267 +2045,20,2032,956,188673,1501,44,10779,389,344,42,50315,15953 +2045,20,2033,1071,211403,1682,49,12078,436,386,47,54556,17875 +2045,20,2034,1202,237222,1887,55,13553,489,433,53,59375,20058 +2045,20,2035,1348,266021,2116,62,15198,548,485,59,64266,22493 +2045,20,2036,1510,297845,2369,69,17016,614,543,66,67174,25184 +2045,20,2037,1703,336069,2674,78,19200,693,613,75,72987,28416 +2045,20,2038,1951,384925,3062,89,21991,793,702,86,80176,32547 +2045,20,2039,2250,443935,3532,103,25362,915,810,99,88486,37537 +2045,20,2040,2651,523093,4161,121,29885,1078,954,116,99328,44230 +2045,20,2041,3176,626589,4985,145,35798,1292,1143,139,112626,52981 +2045,20,2042,3890,767485,6106,177,43847,1582,1400,171,129529,64894 +2045,20,2043,4992,984951,7836,228,56271,2030,1796,219,154204,83282 +2045,20,2044,6754,1332635,10602,308,76135,2747,2430,296,189735,112680 +2045,20,2045,12665,2498829,19879,578,142760,5151,4557,555,304444,211287 +2045,21,2015,416,81455,590,15,4781,168,149,18,54266,6916 +2045,21,2016,66,13002,94,2,763,27,24,3,7689,1104 +2045,21,2017,76,14860,108,3,872,31,27,3,8271,1262 +2045,21,2018,109,21309,154,4,1251,44,39,5,11046,1809 +2045,21,2019,124,24220,175,5,1422,50,44,5,11798,2056 +2045,21,2020,142,27861,202,5,1635,58,51,6,12383,2366 +2045,21,2021,160,31381,227,6,1842,65,57,7,13249,2664 +2045,21,2022,178,34747,251,7,2039,72,63,8,13635,2950 +2045,21,2023,202,39559,286,7,2322,82,72,9,14859,3359 +2045,21,2024,223,43656,316,8,2562,90,80,10,16061,3707 +2045,21,2025,245,48004,347,9,2818,99,88,10,17310,4076 +2045,21,2026,271,53010,384,10,3111,109,97,12,14249,4501 +2045,21,2027,302,59087,428,11,3468,122,108,13,15534,5017 +2045,21,2028,339,66357,480,12,3895,137,121,14,16990,5634 +2045,21,2029,379,74264,537,14,4359,153,136,16,18545,6305 +2045,21,2030,425,83112,602,16,4878,172,152,18,20268,7056 +2045,21,2031,480,93879,679,18,5510,194,171,21,20222,7971 +2045,21,2032,536,104975,760,20,6161,217,192,23,21991,8913 +2045,21,2033,601,117622,851,22,6904,243,215,26,23921,9986 +2045,21,2034,674,131987,955,25,7747,272,241,29,26115,11206 +2045,21,2035,756,148010,1071,28,8687,306,270,32,28371,12566 +2045,21,2036,847,165717,1199,31,9727,342,303,36,29896,14070 +2045,21,2037,955,186984,1353,35,10975,386,341,41,32621,15875 +2045,21,2038,1094,214167,1550,40,12570,442,391,47,36010,18183 +2045,21,2039,1262,247000,1788,46,14497,510,451,54,39955,20971 +2045,21,2040,1487,291042,2106,55,17082,601,531,64,45127,24710 +2045,21,2041,1781,348624,2523,65,20462,720,637,76,51542,29599 +2045,21,2042,2182,427018,3090,80,25063,882,780,93,59799,36255 +2045,21,2043,2800,548013,3966,103,32165,1131,1001,120,71985,46528 +2045,21,2044,3789,741461,5366,139,43519,1531,1354,162,89917,62952 +2045,21,2045,7104,1390313,10062,261,81603,2870,2539,304,148295,118041 +2045,22,2015,1086,212593,1612,46,11125,440,389,47,167226,18325 +2045,22,2016,173,33933,257,7,1776,70,62,8,23714,2925 +2045,22,2017,198,38785,294,8,2030,80,71,9,25494,3343 +2045,22,2018,284,55615,422,12,2910,115,102,12,34051,4794 +2045,22,2019,323,63212,479,14,3308,131,116,14,36346,5449 +2045,22,2020,372,72717,551,16,3805,150,133,16,38144,6268 +2045,22,2021,419,81903,621,18,4286,169,150,18,40788,7060 +2045,22,2022,463,90688,688,20,4746,188,166,20,41973,7817 +2045,22,2023,528,103246,783,22,5403,214,189,23,45712,8900 +2045,22,2024,582,113941,864,25,5962,236,209,25,49398,9821 +2045,22,2025,640,125287,950,27,6556,259,229,28,53225,10799 +2045,22,2026,707,138352,1049,30,7240,286,253,31,44888,11926 +2045,22,2027,788,154213,1169,33,8070,319,282,34,48898,13293 +2045,22,2028,885,173187,1313,37,9063,358,317,39,53435,14928 +2045,22,2029,990,193824,1470,42,10143,401,355,43,58274,16707 +2045,22,2030,1108,216917,1645,47,11351,449,397,48,63634,18698 +2045,22,2031,1252,245017,1858,53,12822,507,449,55,64064,21120 +2045,22,2032,1400,273978,2077,59,14337,567,502,61,69570,23616 +2045,22,2033,1569,306985,2328,66,16064,635,562,69,75561,26461 +2045,22,2034,1760,344478,2612,74,18026,713,631,77,82368,29693 +2045,22,2035,1974,386298,2929,83,20215,799,707,86,89325,33298 +2045,22,2036,2210,432511,3279,93,22633,895,792,97,94225,37281 +2045,22,2037,2494,488015,3700,105,25538,1010,893,109,102592,42066 +2045,22,2038,2856,558961,4238,120,29250,1157,1023,125,112967,48181 +2045,22,2039,3294,644652,4888,139,33734,1334,1180,144,125002,55567 +2045,22,2040,3882,759599,5759,163,39750,1572,1390,170,140744,65476 +2045,22,2041,4650,909889,6899,196,47614,1883,1666,203,160159,78430 +2045,22,2042,5695,1114487,8450,240,58321,2306,2040,249,184998,96066 +2045,22,2043,7309,1430278,10844,308,74846,2960,2618,320,221459,123286 +2045,22,2044,9889,1935161,14672,416,101266,4004,3542,432,274552,166806 +2045,22,2045,18542,3628624,27512,780,189884,7509,6642,811,446709,312778 +2045,23,2015,1009,181406,1600,38,12317,376,333,43,114228,16759 +2045,23,2016,161,28955,255,6,1966,60,53,7,16071,2675 +2045,23,2017,184,33095,292,7,2247,69,61,8,17303,3057 +2045,23,2018,264,47457,419,10,3222,98,87,11,23036,4384 +2045,23,2019,300,53939,476,11,3662,112,99,13,24632,4983 +2045,23,2020,345,62049,547,13,4213,129,114,15,25785,5732 +2045,23,2021,389,69889,616,14,4745,145,128,17,27622,6456 +2045,23,2022,430,77384,683,16,5254,160,142,18,28344,7149 +2045,23,2023,490,88100,777,18,5982,183,162,21,30924,8139 +2045,23,2024,541,97226,858,20,6601,202,178,23,33447,8982 +2045,23,2025,594,106908,943,22,7259,222,196,25,36069,9876 +2045,23,2026,656,118056,1041,24,8015,245,217,28,27577,10906 +2045,23,2027,732,131591,1161,27,8934,273,241,31,30119,12157 +2045,23,2028,822,147781,1304,31,10034,306,271,35,33018,13652 +2045,23,2029,920,165391,1459,34,11229,343,303,39,36119,15279 +2045,23,2030,1029,185096,1633,38,12567,384,340,44,39558,17099 +2045,23,2031,1162,209074,1844,43,14195,434,384,50,38298,19314 +2045,23,2032,1300,233786,2062,48,15873,485,429,56,41806,21597 +2045,23,2033,1456,261951,2311,54,17785,543,481,62,45663,24199 +2045,23,2034,1634,293945,2593,61,19957,610,539,70,50046,27155 +2045,23,2035,1833,329629,2908,68,22380,684,605,78,54620,30452 +2045,23,2036,2052,369063,3256,76,25057,765,677,88,57281,34094 +2045,23,2037,2315,416425,3673,86,28273,864,764,99,62866,38470 +2045,23,2038,2652,476965,4207,99,32384,989,875,114,69853,44062 +2045,23,2039,3058,550084,4852,114,37348,1141,1009,131,78057,50817 +2045,23,2040,3604,648170,5718,134,44008,1344,1189,154,88870,59879 +2045,23,2041,4317,776411,6849,161,52714,1610,1424,185,102456,71726 +2045,23,2042,5287,950997,8389,197,64568,1972,1745,226,120196,87854 +2045,23,2043,6785,1220463,10766,253,82863,2531,2239,291,146687,112748 +2045,23,2044,9181,1651282,14566,342,112113,3425,3030,393,186574,152547 +2045,23,2045,17215,3096319,27313,642,210224,6422,5681,737,317554,286041 +2045,24,2015,1988,406414,3310,100,22527,843,745,90,276257,35239 +2045,24,2016,317,64870,528,16,3596,134,119,14,39207,5625 +2045,24,2017,363,74145,604,18,4110,154,136,16,42252,6429 +2045,24,2018,520,106319,866,26,5893,220,195,24,56508,9219 +2045,24,2019,591,120842,984,30,6698,251,222,27,60485,10478 +2045,24,2020,680,139013,1132,34,7705,288,255,31,63645,12054 +2045,24,2021,766,156575,1275,38,8679,325,287,35,68239,13576 +2045,24,2022,848,173368,1412,42,9610,359,318,39,70373,15032 +2045,24,2023,966,197375,1608,48,10940,409,362,44,76839,17114 +2045,24,2024,1066,217820,1774,53,12073,452,399,48,83140,18887 +2045,24,2025,1172,239511,1951,59,13276,497,439,53,89692,20768 +2045,24,2026,1294,264488,2154,65,14660,548,485,59,73819,22933 +2045,24,2027,1442,294810,2401,72,16341,611,541,66,80592,25562 +2045,24,2028,1620,331082,2697,81,18351,686,607,74,88305,28708 +2045,24,2029,1813,370534,3018,91,20538,768,680,82,96552,32128 +2045,24,2030,2029,414681,3377,102,22985,860,760,92,105699,35956 +2045,24,2031,2292,468399,3815,115,25963,971,859,104,105651,40614 +2045,24,2032,2563,523764,4266,128,29031,1086,961,116,115160,45415 +2045,24,2033,2871,586862,4780,144,32529,1217,1076,130,125586,50886 +2045,24,2034,3222,658538,5364,161,36502,1365,1208,146,137434,57101 +2045,24,2035,3613,738486,6015,181,40933,1531,1354,164,149731,64033 +2045,24,2036,4045,826831,6734,203,45830,1714,1516,184,158275,71693 +2045,24,2037,4565,932941,7598,228,51712,1934,1711,207,173280,80894 +2045,24,2038,5228,1068569,8703,262,59229,2215,1960,238,192003,92654 +2045,24,2039,6030,1232383,10037,302,68309,2555,2260,274,213910,106858 +2045,24,2040,7105,1452129,11827,356,80489,3010,2663,323,242722,125912 +2045,24,2041,8510,1739437,14167,426,96415,3606,3190,387,278732,150823 +2045,24,2042,10424,2130568,17353,522,118094,4417,3907,474,325486,184738 +2045,24,2043,13378,2734266,22270,670,151556,5668,5014,608,394975,237083 +2045,24,2044,18100,3699450,30131,906,205055,7669,6784,822,498665,320773 +2045,24,2045,33939,6936857,56498,1699,384500,14380,12721,1542,838010,601482 +2045,25,2015,12322,2387413,25386,735,142692,4937,4367,575,2094929,222042 +2045,25,2016,1967,381069,4052,117,22776,788,697,92,294225,35441 +2045,25,2017,2248,435554,4631,134,26032,901,797,105,316128,40509 +2045,25,2018,3223,624555,6641,192,37329,1292,1143,150,420164,58087 +2045,25,2019,3664,709865,7548,219,42427,1468,1299,171,448180,66021 +2045,25,2020,4215,816607,8683,252,48807,1689,1494,197,467783,75949 +2045,25,2021,4747,919774,9780,283,54973,1902,1683,222,499916,85544 +2045,25,2022,5256,1018423,10829,314,60869,2106,1863,245,511614,94718 +2045,25,2023,5984,1159444,12329,357,69298,2398,2121,279,556900,107834 +2045,25,2024,6604,1279549,13606,394,76477,2646,2341,308,601651,119005 +2045,25,2025,7262,1406971,14961,433,84092,2910,2574,339,648100,130855 +2045,25,2026,8019,1553691,16521,479,92861,3213,2842,374,494950,144501 +2045,25,2027,8938,1731812,18415,533,103507,3581,3168,417,539449,161067 +2045,25,2028,10038,1944887,20681,599,116242,4022,3558,469,589867,180884 +2045,25,2029,11234,2176641,23145,670,130094,4501,3982,524,643677,202439 +2045,25,2030,12572,2435976,25903,750,145594,5037,4456,587,703290,226558 +2045,25,2031,14201,2751533,29258,847,164454,5690,5033,663,677820,255906 +2045,25,2032,15880,3076765,32717,948,183893,6363,5628,741,737273,286155 +2045,25,2033,17793,3447428,36658,1062,206047,7129,6307,831,802176,320628 +2045,25,2034,19966,3868479,41135,1192,231212,8000,7077,932,875928,359788 +2045,25,2035,22390,4338119,46129,1336,259282,8971,7936,1045,951827,403466 +2045,25,2036,25068,4857075,51648,1496,290299,10044,8885,1170,992269,451732 +2045,25,2037,28285,5480400,58276,1688,327554,11333,10025,1320,1083411,509705 +2045,25,2038,32397,6277125,66748,1933,375173,12981,11483,1512,1196799,583805 +2045,25,2039,37364,7239430,76980,2230,432688,14971,13243,1744,1328930,673304 +2045,25,2040,44026,8530289,90707,2627,509841,17640,15605,2055,1502259,793360 +2045,25,2041,52737,10218024,108653,3147,610714,21130,18692,2462,1717550,950328 +2045,25,2042,64596,12515673,133085,3855,748041,25882,22895,3015,1995169,1164021 +2045,25,2043,82899,16062008,170795,4947,959997,33215,29383,3870,2405419,1493847 +2045,25,2044,112162,21731814,231084,6693,1298874,44940,39755,5236,3010794,2021169 +2045,25,2045,210315,40749420,433307,12551,2435520,84267,74544,9818,4983710,3789897 +2045,26,2015,1438,284347,2107,56,17722,588,520,62,175981,24125 +2045,26,2016,230,45386,336,9,2829,94,83,10,24841,3851 +2045,26,2017,262,51875,384,10,3233,107,95,11,26739,4401 +2045,26,2018,376,74386,551,15,4636,154,136,16,35655,6311 +2045,26,2019,428,84547,626,17,5269,175,155,18,38114,7173 +2045,26,2020,492,97260,721,19,6062,201,178,21,39957,8252 +2045,26,2021,554,109547,812,22,6828,226,200,24,42789,9294 +2045,26,2022,614,121296,899,24,7560,251,222,26,43974,10291 +2045,26,2023,699,138093,1023,27,8607,285,252,30,47961,11716 +2045,26,2024,771,152397,1129,30,9498,315,279,33,51865,12930 +2045,26,2025,848,167573,1241,33,10444,346,306,37,55922,14217 +2045,26,2026,936,185048,1371,37,11533,382,338,40,43958,15700 +2045,26,2027,1043,206263,1528,41,12855,426,377,45,47979,17500 +2045,26,2028,1172,231641,1716,46,14437,479,423,51,52556,19653 +2045,26,2029,1311,259243,1921,51,16158,536,474,57,57449,21995 +2045,26,2030,1468,290130,2149,57,18083,599,530,63,62874,24616 +2045,26,2031,1658,327714,2428,65,20425,677,599,72,61587,27804 +2045,26,2032,1854,366450,2715,72,22839,757,670,80,67137,31091 +2045,26,2033,2077,410597,3042,81,25591,848,750,90,73223,34836 +2045,26,2034,2331,460745,3413,91,28716,952,842,101,80140,39091 +2045,26,2035,2614,516680,3828,102,32202,1068,944,113,87321,43837 +2045,26,2036,2926,578490,4286,114,36055,1195,1057,126,91759,49081 +2045,26,2037,3302,652729,4836,129,40682,1349,1193,143,100497,55380 +2045,26,2038,3782,747621,5539,148,46596,1545,1366,163,111405,63430 +2045,26,2039,4362,862233,6388,170,53739,1782,1576,188,124176,73155 +2045,26,2040,5139,1015979,7527,201,63322,2099,1857,222,140979,86199 +2045,26,2041,6156,1216991,9016,240,75850,2514,2224,266,161997,103253 +2045,26,2042,7541,1490647,11044,295,92906,3080,2725,326,189311,126471 +2045,26,2043,9677,1913023,14173,378,119231,3953,3497,418,229940,162307 +2045,26,2044,13093,2588308,19176,511,161318,5348,4731,565,290658,219600 +2045,26,2045,24551,4853349,35956,959,302488,10028,8871,1060,489479,411773 +2045,27,2015,487,95920,695,20,5972,196,173,21,62285,8205 +2045,27,2016,78,15310,111,3,953,31,28,3,8778,1310 +2045,27,2017,89,17499,127,4,1090,36,32,4,9445,1497 +2045,27,2018,127,25093,182,5,1562,51,45,6,12583,2146 +2045,27,2019,145,28521,207,6,1776,58,52,6,13444,2439 +2045,27,2020,167,32809,238,7,2043,67,59,7,14078,2806 +2045,27,2021,188,36954,268,8,2301,75,67,8,15068,3161 +2045,27,2022,208,40918,296,9,2548,84,74,9,15468,3500 +2045,27,2023,237,46584,337,10,2900,95,84,10,16863,3985 +2045,27,2024,261,51409,372,11,3201,105,93,11,18232,4397 +2045,27,2025,287,56529,410,12,3520,115,102,12,19654,4835 +2045,27,2026,317,62423,452,13,3887,128,113,14,15293,5339 +2045,27,2027,353,69580,504,15,4332,142,126,15,16687,5951 +2045,27,2028,397,78141,566,16,4865,160,141,17,18273,6684 +2045,27,2029,444,87452,634,18,5445,179,158,19,19968,7480 +2045,27,2030,497,97872,709,21,6094,200,177,22,21848,8371 +2045,27,2031,561,110550,801,23,6883,226,200,24,21291,9456 +2045,27,2032,628,123617,896,26,7697,253,223,27,23202,10574 +2045,27,2033,703,138509,1003,29,8624,283,250,31,25296,11847 +2045,27,2034,789,155426,1126,33,9677,318,281,34,27676,13294 +2045,27,2035,885,174295,1263,37,10852,356,315,39,30144,14908 +2045,27,2036,991,195145,1414,41,12150,399,353,43,31612,16692 +2045,27,2037,1118,220189,1595,46,13709,450,398,49,34607,18834 +2045,27,2038,1281,252200,1827,53,15702,515,456,56,38345,21572 +2045,27,2039,1477,290862,2107,61,18110,594,526,64,42718,24879 +2045,27,2040,1740,342726,2483,72,21339,700,619,76,48469,29315 +2045,27,2041,2085,410536,2974,86,25561,839,742,91,55657,35115 +2045,27,2042,2553,502850,3643,106,31308,1027,909,111,64988,43011 +2045,27,2043,3277,645332,4675,136,40179,1318,1166,143,78855,55198 +2045,27,2044,4433,873130,6326,183,54363,1784,1578,193,99544,74683 +2045,27,2045,8313,1637210,11861,344,101935,3345,2959,362,167250,140038 +2045,28,2015,415,80218,575,15,4528,165,146,18,61645,6888 +2045,28,2016,66,12804,92,2,723,26,23,3,8742,1099 +2045,28,2017,76,14635,105,3,826,30,27,3,9390,1257 +2045,28,2018,108,20985,150,4,1184,43,38,5,12540,1802 +2045,28,2019,123,23852,171,5,1346,49,43,5,13371,2048 +2045,28,2020,142,27438,197,5,1549,56,50,6,14023,2356 +2045,28,2021,160,30905,222,6,1744,64,56,7,14981,2654 +2045,28,2022,177,34219,245,7,1931,70,62,8,15407,2938 +2045,28,2023,201,38958,279,7,2199,80,71,9,16765,3345 +2045,28,2024,222,42993,308,8,2427,88,78,9,18108,3692 +2045,28,2025,244,47275,339,9,2668,97,86,10,19503,4059 +2045,28,2026,270,52205,374,10,2946,107,95,12,16350,4482 +2045,28,2027,301,58190,417,11,3284,120,106,13,17800,4996 +2045,28,2028,338,65349,468,13,3688,134,119,14,19437,5611 +2045,28,2029,378,73136,524,14,4128,150,133,16,21182,6280 +2045,28,2030,423,81850,587,16,4620,168,149,18,23113,7028 +2045,28,2031,478,92452,663,18,5218,190,168,20,23193,7938 +2045,28,2032,534,103380,741,20,5835,212,188,23,25162,8877 +2045,28,2033,599,115835,830,22,6538,238,211,26,27300,9946 +2045,28,2034,672,129982,932,25,7336,267,236,29,29730,11161 +2045,28,2035,753,145762,1045,28,8227,300,265,32,32202,12516 +2045,28,2036,843,163200,1170,31,9211,335,297,36,33897,14013 +2045,28,2037,952,184143,1320,35,10393,378,335,41,36856,15811 +2045,28,2038,1090,210914,1512,41,11904,433,383,47,40518,18110 +2045,28,2039,1257,243248,1744,47,13729,500,442,54,44756,20886 +2045,28,2040,1481,286620,2055,55,16177,589,521,63,50291,24610 +2045,28,2041,1774,343329,2461,66,19378,706,624,76,57091,29479 +2045,28,2042,2173,420532,3014,81,23735,864,765,93,65754,36108 +2045,28,2043,2789,539688,3869,104,30460,1109,981,119,78425,46340 +2045,28,2044,3773,730196,5234,140,41213,1501,1328,161,96740,62697 +2045,28,2045,7075,1369193,9815,263,77278,2814,2489,303,155955,117564 +2045,29,2015,1386,266427,1931,50,15771,550,487,59,201871,22505 +2045,29,2016,221,42526,308,8,2517,88,78,9,28470,3592 +2045,29,2017,253,48606,352,9,2877,100,89,11,30569,4106 +2045,29,2018,363,69698,505,13,4126,144,127,15,40705,5887 +2045,29,2019,412,79219,574,15,4689,164,145,17,43384,6692 +2045,29,2020,474,91131,661,17,5394,188,167,20,45355,7698 +2045,29,2021,534,102644,744,19,6076,212,188,23,48432,8670 +2045,29,2022,591,113652,824,21,6728,235,208,25,49656,9600 +2045,29,2023,673,129390,938,24,7659,267,236,28,54009,10929 +2045,29,2024,743,142793,1035,27,8453,295,261,31,58327,12062 +2045,29,2025,817,157013,1138,29,9294,324,287,35,62807,13263 +2045,29,2026,902,173386,1257,32,10264,358,317,38,50329,14646 +2045,29,2027,1005,193264,1401,36,11440,399,353,43,54801,16325 +2045,29,2028,1129,217043,1573,41,12848,448,397,48,59853,18333 +2045,29,2029,1263,242905,1761,45,14379,502,444,53,65239,20518 +2045,29,2030,1414,271846,1970,51,16092,561,497,60,71203,22963 +2045,29,2031,1597,307061,2226,57,18177,634,561,68,70091,25937 +2045,29,2032,1786,343356,2489,64,20325,709,627,76,76093,29003 +2045,29,2033,2001,384721,2788,72,22774,795,703,85,82618,32497 +2045,29,2034,2245,431708,3129,81,25555,892,789,95,90033,36466 +2045,29,2035,2518,484118,3509,91,28657,1000,885,107,97600,40893 +2045,29,2036,2819,542033,3929,101,32086,1119,990,119,102214,45785 +2045,29,2037,3181,611593,4433,114,36203,1263,1117,135,111267,51661 +2045,29,2038,3643,700506,5077,131,41467,1447,1280,154,122488,59171 +2045,29,2039,4202,807895,5856,151,47823,1669,1476,178,135501,68242 +2045,29,2040,4951,951951,6900,178,56351,1966,1739,209,152517,80411 +2045,29,2041,5931,1140296,8265,213,67500,2355,2083,251,173492,96320 +2045,29,2042,7265,1396705,10123,261,82678,2885,2552,307,200309,117979 +2045,29,2043,9323,1792463,12992,335,106105,3702,3275,394,239652,151408 +2045,29,2044,12614,2425193,17578,454,143560,5009,4431,534,296879,204854 +2045,29,2045,23652,4547494,32960,851,269189,9392,8309,1001,482358,384122 +2045,30,2015,111,19122,131,3,1329,38,33,5,18125,1664 +2045,30,2016,18,3052,21,1,212,6,5,1,2547,266 +2045,30,2017,20,3489,24,1,242,7,6,1,2726,304 +2045,30,2018,29,5002,34,1,348,10,9,1,3620,435 +2045,30,2019,33,5686,39,1,395,11,10,1,3844,495 +2045,30,2020,38,6541,45,1,455,13,11,2,4000,569 +2045,30,2021,43,7367,50,1,512,15,13,2,4256,641 +2045,30,2022,47,8157,56,1,567,16,14,2,4345,710 +2045,30,2023,54,9287,64,2,645,18,16,2,4710,808 +2045,30,2024,60,10249,70,2,712,20,18,2,5078,892 +2045,30,2025,65,11269,77,2,783,22,20,3,5459,981 +2045,30,2026,72,12444,85,2,865,25,22,3,4241,1083 +2045,30,2027,81,13871,95,2,964,27,24,3,4606,1207 +2045,30,2028,90,15577,107,3,1083,31,27,4,5015,1356 +2045,30,2029,101,17434,119,3,1212,34,30,4,5450,1517 +2045,30,2030,113,19511,133,3,1356,38,34,5,5931,1698 +2045,30,2031,128,22038,151,4,1532,43,38,5,5733,1918 +2045,30,2032,143,24643,169,4,1713,49,43,6,6198,2145 +2045,30,2033,160,27612,189,5,1919,54,48,7,6700,2403 +2045,30,2034,180,30984,212,5,2154,61,54,7,7270,2697 +2045,30,2035,202,34746,238,6,2415,68,61,8,7841,3024 +2045,30,2036,226,38902,266,7,2704,77,68,9,8122,3386 +2045,30,2037,255,43895,300,8,3051,86,76,10,8788,3821 +2045,30,2038,292,50276,344,9,3495,99,88,12,9607,4376 +2045,30,2039,337,57984,397,10,4030,114,101,14,10545,5047 +2045,30,2040,397,68323,467,12,4749,135,119,16,11764,5947 +2045,30,2041,475,81841,560,14,5688,161,143,19,13239,7123 +2045,30,2042,582,100244,686,18,6968,197,175,24,15086,8725 +2045,30,2043,747,128648,880,23,8942,253,224,30,17747,11197 +2045,30,2044,1011,174060,1191,31,12098,343,303,41,21477,15150 +2045,30,2045,1896,326380,2232,57,22686,643,568,77,33386,28408 +2045,31,2015,663,134175,1091,32,8216,279,247,30,111327,11412 +2045,31,2016,106,21416,174,5,1311,44,39,5,15776,1822 +2045,31,2017,121,24479,199,6,1499,51,45,5,16946,2082 +2045,31,2018,173,35101,285,8,2149,73,64,8,22625,2985 +2045,31,2019,197,39895,324,9,2443,83,73,9,24124,3393 +2045,31,2020,227,45894,373,11,2810,95,84,10,25290,3904 +2045,31,2021,255,51692,420,12,3165,107,95,11,27016,4397 +2045,31,2022,283,57236,465,13,3505,119,105,13,27775,4868 +2045,31,2023,322,65162,530,15,3990,135,120,14,30220,5542 +2045,31,2024,355,71912,585,17,4404,149,132,16,32641,6116 +2045,31,2025,391,79073,643,19,4842,164,145,17,35153,6726 +2045,31,2026,432,87319,710,21,5347,181,160,19,28679,7427 +2045,31,2027,481,97330,791,23,5960,202,179,21,31227,8278 +2045,31,2028,540,109305,889,26,6693,227,201,24,34105,9297 +2045,31,2029,605,122330,995,29,7491,254,225,27,37174,10405 +2045,31,2030,677,136904,1113,32,8384,284,252,30,40571,11644 +2045,31,2031,764,154639,1257,36,9470,321,284,34,40244,13153 +2045,31,2032,855,172917,1406,41,10589,359,318,38,43681,14707 +2045,31,2033,957,193749,1575,46,11865,402,356,43,47416,16479 +2045,31,2034,1074,217413,1768,51,13314,452,399,48,51660,18492 +2045,31,2035,1205,243807,1982,57,14930,506,448,54,55987,20737 +2045,31,2036,1349,272973,2219,64,16716,567,502,60,58752,23218 +2045,31,2037,1522,308004,2504,72,18861,640,566,68,63929,26197 +2045,31,2038,1743,352782,2868,83,21603,733,648,78,70343,30006 +2045,31,2039,2011,406864,3308,96,24915,845,748,90,77775,34606 +2045,31,2040,2369,479411,3898,113,29357,996,881,106,87489,40776 +2045,31,2041,2838,574265,4669,135,35166,1193,1055,127,99450,48844 +2045,31,2042,3476,703395,5719,165,43073,1461,1292,155,114723,59827 +2045,31,2043,4461,902701,7339,212,55278,1875,1659,199,137106,76779 +2045,31,2044,6036,1221350,9930,287,74791,2537,2244,269,169593,103882 +2045,31,2045,11317,2290158,18619,538,140241,4757,4208,505,274799,194789 +2045,32,2015,339,68668,584,12,4536,141,125,14,39827,5637 +2045,32,2016,54,10961,93,2,724,23,20,2,5702,900 +2045,32,2017,62,12528,107,2,828,26,23,3,6148,1028 +2045,32,2018,89,17964,153,3,1187,37,33,4,8260,1475 +2045,32,2019,101,20418,174,4,1349,42,37,4,8847,1676 +2045,32,2020,116,23488,200,4,1552,48,43,5,9355,1928 +2045,32,2021,131,26455,225,5,1748,54,48,6,10036,2172 +2045,32,2022,145,29293,249,5,1935,60,53,6,10400,2405 +2045,32,2023,165,33349,284,6,2203,69,61,7,11361,2737 +2045,32,2024,182,36803,313,6,2431,76,67,8,12295,3021 +2045,32,2025,200,40468,344,7,2673,83,74,9,13267,3322 +2045,32,2026,221,44688,380,8,2952,92,81,9,11504,3668 +2045,32,2027,246,49812,424,9,3291,102,91,11,12557,4089 +2045,32,2028,276,55940,476,10,3696,115,102,12,13756,4592 +2045,32,2029,309,62606,532,11,4136,129,114,13,15038,5139 +2045,32,2030,346,70065,596,12,4629,144,128,15,16459,5751 +2045,32,2031,391,79142,673,14,5228,163,144,17,16806,6496 +2045,32,2032,437,88496,753,15,5846,182,161,19,18306,7264 +2045,32,2033,490,99157,843,17,6551,204,180,21,19948,8139 +2045,32,2034,550,111268,946,19,7351,229,203,23,21814,9134 +2045,32,2035,616,124776,1061,22,8243,257,227,26,23745,10242 +2045,32,2036,690,139703,1188,24,9229,287,254,29,25244,11468 +2045,32,2037,779,157631,1340,27,10414,324,287,33,27604,12939 +2045,32,2038,892,180547,1535,31,11927,371,329,38,30545,14820 +2045,32,2039,1029,208226,1771,36,13756,428,379,44,33980,17092 +2045,32,2040,1212,245354,2086,43,16209,505,447,52,38492,20140 +2045,32,2041,1452,293899,2499,51,19416,605,535,62,44117,24125 +2045,32,2042,1778,359985,3061,62,23782,741,655,76,51399,29550 +2045,32,2043,2282,461987,3929,80,30520,951,841,98,62195,37923 +2045,32,2044,3088,625066,5316,108,41294,1286,1138,132,78227,51309 +2045,32,2045,5790,1172062,9967,203,77430,2411,2133,247,130602,96210 +2045,33,2015,2368,454955,3342,92,29027,936,828,102,310867,38867 +2045,33,2016,378,72618,533,15,4633,149,132,16,43753,6204 +2045,33,2017,432,83001,610,17,5296,171,151,19,47032,7091 +2045,33,2018,620,119018,874,24,7594,245,217,27,62595,10168 +2045,33,2019,704,135275,994,27,8631,278,246,30,66805,11556 +2045,33,2020,810,155616,1143,32,9929,320,283,35,69843,13294 +2045,33,2021,912,175276,1287,36,11183,361,319,39,74680,14974 +2045,33,2022,1010,194075,1425,39,12382,399,353,43,76554,16580 +2045,33,2023,1150,220949,1623,45,14097,455,402,49,83373,18876 +2045,33,2024,1269,243836,1791,49,15557,502,444,55,90095,20831 +2045,33,2025,1396,268118,1969,54,17107,552,488,60,97075,22905 +2045,33,2026,1541,296078,2175,60,18890,609,539,66,74685,25294 +2045,33,2027,1718,330022,2424,67,21056,679,601,74,81441,28194 +2045,33,2028,1929,370626,2722,75,23647,762,675,83,89108,31662 +2045,33,2029,2159,414790,3047,84,26464,853,755,93,97295,35435 +2045,33,2030,2417,464210,3410,94,29618,955,845,104,106369,39657 +2045,33,2031,2730,524344,3851,106,33454,1079,954,117,103010,44795 +2045,33,2032,3052,586320,4306,119,37409,1206,1067,131,112143,50089 +2045,33,2033,3420,656956,4825,133,41915,1352,1196,147,122133,56124 +2045,33,2034,3838,737194,5415,150,47035,1517,1342,165,133484,62978 +2045,33,2035,4304,826689,6072,168,52745,1701,1504,185,145208,70624 +2045,33,2036,4818,925586,6798,188,59054,1904,1684,207,151804,79072 +2045,33,2037,5437,1044367,7671,212,66633,2149,1901,234,165961,89220 +2045,33,2038,6227,1196195,8786,243,76320,2461,2177,267,183599,102191 +2045,33,2039,7182,1379574,10133,280,88020,2838,2511,308,204193,117857 +2045,33,2040,8462,1625568,11940,330,103715,3344,2958,363,231243,138872 +2045,33,2041,10137,1947191,14302,395,124235,4006,3544,435,264943,166348 +2045,33,2042,12416,2385039,17518,484,152171,4907,4341,533,308545,203753 +2045,33,2043,15934,3060840,22482,621,195288,6297,5570,684,373161,261487 +2045,33,2044,21559,4141305,30418,841,264224,8520,7537,926,469035,353791 +2045,33,2045,40425,7765378,57036,1576,495448,15975,14132,1736,782137,663394 +2045,34,2015,3930,759559,8049,235,44544,1569,1388,183,711837,70609 +2045,34,2016,627,121238,1285,38,7110,250,222,29,99788,11270 +2045,34,2017,717,138572,1468,43,8126,286,253,33,107150,12882 +2045,34,2018,1028,198704,2106,62,11653,410,363,48,142234,18472 +2045,34,2019,1168,225845,2393,70,13245,466,413,54,151608,20995 +2045,34,2020,1344,259805,2753,80,15236,537,475,63,157987,24152 +2045,34,2021,1514,292628,3101,91,17161,604,535,71,168722,27203 +2045,34,2022,1676,324013,3433,100,19002,669,592,78,172411,30121 +2045,34,2023,1908,368880,3909,114,21633,762,674,89,187547,34291 +2045,34,2024,2106,407091,4314,126,23874,841,744,98,202551,37844 +2045,34,2025,2316,447630,4743,139,26251,925,818,108,218118,41612 +2045,34,2026,2557,494310,5238,153,28988,1021,903,119,166445,45951 +2045,34,2027,2851,550980,5839,171,32312,1138,1007,133,181312,51220 +2045,34,2028,3201,618771,6557,192,36287,1278,1131,149,198128,57521 +2045,34,2029,3583,692503,7338,215,40611,1430,1265,167,216064,64376 +2045,34,2030,4010,775012,8212,240,45450,1601,1416,187,235928,72046 +2045,34,2031,4529,875405,9276,271,51338,1808,1599,211,227102,81378 +2045,34,2032,5064,978879,10373,303,57406,2022,1789,236,246801,90997 +2045,34,2033,5675,1096807,11622,340,64322,2265,2004,264,268266,101960 +2045,34,2034,6368,1230764,13042,381,72177,2542,2249,297,292657,114413 +2045,34,2035,7141,1380180,14625,428,80940,2851,2522,333,317663,128303 +2045,34,2036,7995,1545290,16375,479,90622,3192,2823,372,330669,143651 +2045,34,2037,9021,1743601,18476,540,102252,3601,3186,420,360569,162087 +2045,34,2038,10332,1997083,21162,619,117118,4125,3649,481,397712,185650 +2045,34,2039,11916,2303240,24406,713,135072,4757,4208,555,440903,214111 +2045,34,2040,14041,2713932,28758,841,159157,5605,4959,654,497485,252289 +2045,34,2041,16819,3250888,34448,1007,190646,6714,5940,783,567540,302205 +2045,34,2042,20601,3981889,42194,1233,233515,8224,7275,959,657553,370160 +2045,34,2043,26438,5110162,54150,1583,299682,10555,9337,1231,790169,475045 +2045,34,2044,35771,6914022,73265,2142,405468,14280,12633,1666,984695,642733 +2045,34,2045,67074,12964511,137379,4016,760294,26777,23688,3123,1617215,1205190 +2045,35,2015,424,77515,535,14,5121,160,142,17,87033,6492 +2045,35,2016,68,12373,85,2,817,26,23,3,12328,1036 +2045,35,2017,77,14142,98,2,934,29,26,3,13187,1184 +2045,35,2018,111,20278,140,4,1340,42,37,5,17576,1698 +2045,35,2019,126,23048,159,4,1523,48,42,5,18648,1930 +2045,35,2020,145,26514,183,5,1752,55,49,6,19468,2220 +2045,35,2021,163,29863,206,5,1973,62,55,7,20697,2501 +2045,35,2022,181,33066,228,6,2185,68,61,7,21207,2769 +2045,35,2023,206,37645,260,7,2487,78,69,8,22964,3153 +2045,35,2024,227,41545,287,7,2745,86,76,9,24746,3479 +2045,35,2025,250,45682,315,8,3018,95,84,10,26589,3826 +2045,35,2026,276,50446,348,9,3333,104,92,11,22409,4225 +2045,35,2027,307,56229,388,10,3715,116,103,13,24305,4709 +2045,35,2028,345,63147,436,11,4172,131,116,14,26418,5288 +2045,35,2029,386,70672,488,12,4669,146,129,16,28660,5919 +2045,35,2030,432,79092,546,14,5226,164,145,18,31137,6624 +2045,35,2031,488,89338,617,16,5903,185,164,20,31142,7482 +2045,35,2032,546,99897,690,17,6600,207,183,22,33574,8366 +2045,35,2033,612,111932,773,20,7395,232,205,25,36172,9374 +2045,35,2034,687,125603,867,22,8299,260,230,28,39126,10519 +2045,35,2035,770,140851,972,25,9306,291,258,32,42036,11796 +2045,35,2036,862,157701,1089,28,10419,326,289,35,43862,13207 +2045,35,2037,973,177939,1228,31,11757,368,326,40,47222,14902 +2045,35,2038,1114,203808,1407,36,13466,422,373,46,51321,17068 +2045,35,2039,1285,235052,1623,41,15530,486,430,53,55970,19685 +2045,35,2040,1514,276964,1912,48,18299,573,507,62,61962,23195 +2045,35,2041,1814,331762,2290,58,21920,686,607,75,69085,27784 +2045,35,2042,2222,406363,2805,71,26849,841,744,91,77812,34032 +2045,35,2043,2851,521505,3600,91,34456,1079,955,117,90138,43675 +2045,35,2044,3857,705594,4871,124,46619,1460,1292,159,106678,59092 +2045,35,2045,7233,1323063,9134,232,87415,2738,2422,297,158544,110803 +2045,36,2015,1083,210245,1713,52,12969,438,388,47,230662,17939 +2045,36,2016,173,33558,273,8,2070,70,62,8,32213,2863 +2045,36,2017,198,38357,313,10,2366,80,71,9,34490,3273 +2045,36,2018,283,55001,448,14,3393,115,101,12,45656,4693 +2045,36,2019,322,62514,509,16,3856,130,115,14,48499,5334 +2045,36,2020,371,71914,586,18,4436,150,133,16,50306,6136 +2045,36,2021,417,80999,660,20,4996,169,149,18,53546,6911 +2045,36,2022,462,89686,731,22,5532,187,165,20,54489,7652 +2045,36,2023,526,102105,832,25,6298,213,188,23,59081,8712 +2045,36,2024,581,112682,918,28,6951,235,208,25,63706,9615 +2045,36,2025,638,123903,1010,31,7643,258,229,28,68494,10572 +2045,36,2026,705,136824,1115,34,8440,285,252,31,50481,11674 +2045,36,2027,786,152510,1243,38,9408,318,281,34,54862,13013 +2045,36,2028,882,171275,1396,43,10565,357,316,39,59780,14614 +2045,36,2029,988,191684,1562,48,11824,400,354,43,65011,16355 +2045,36,2030,1105,214522,1748,53,13233,447,396,48,70796,18304 +2045,36,2031,1249,242311,1975,60,14947,505,447,55,66738,20675 +2045,36,2032,1396,270952,2208,68,16714,565,500,61,72263,23119 +2045,36,2033,1564,303594,2474,76,18727,633,560,68,78233,25904 +2045,36,2034,1755,340673,2776,85,21014,710,628,77,85017,29068 +2045,36,2035,1968,382031,3113,95,23566,797,705,86,91857,32597 +2045,36,2036,2204,427734,3486,107,26385,892,789,96,94537,36496 +2045,36,2037,2487,482626,3933,120,29771,1006,890,109,102535,41180 +2045,36,2038,2848,552789,4505,138,34099,1153,1020,125,112403,47167 +2045,36,2039,3285,637533,5196,159,39326,1329,1176,144,123772,54397 +2045,36,2040,3871,751211,6122,187,46339,1566,1386,169,138574,64097 +2045,36,2041,4636,899840,7333,224,55507,1876,1660,203,156634,76779 +2045,36,2042,5679,1102180,8982,275,67988,2298,2033,248,179453,94043 +2045,36,2043,7288,1414484,11528,352,87253,2950,2609,319,212590,120690 +2045,36,2044,9861,1913790,15597,477,118052,3991,3530,431,259799,163293 +2045,36,2045,18490,3588551,29246,894,221360,7483,6620,808,411564,306192 +2045,37,2015,170,32393,230,6,1864,67,59,7,25475,2773 +2045,37,2016,27,5170,37,1,298,11,9,1,3598,443 +2045,37,2017,31,5910,42,1,340,12,11,1,3862,506 +2045,37,2018,44,8474,60,2,488,17,15,2,5146,725 +2045,37,2019,50,9632,68,2,554,20,18,2,5483,825 +2045,37,2020,58,11080,79,2,638,23,20,2,5735,949 +2045,37,2021,65,12480,88,2,718,26,23,3,6123,1068 +2045,37,2022,72,13818,98,3,795,28,25,3,6281,1183 +2045,37,2023,82,15732,111,3,905,32,29,3,6830,1347 +2045,37,2024,91,17361,123,3,999,36,32,4,7375,1486 +2045,37,2025,100,19090,135,4,1099,39,35,4,7941,1634 +2045,37,2026,110,21081,149,4,1213,43,38,5,6472,1805 +2045,37,2027,123,23498,167,4,1352,48,43,5,7044,2012 +2045,37,2028,138,26389,187,5,1519,54,48,6,7690,2259 +2045,37,2029,155,29533,209,6,1700,61,54,7,8378,2528 +2045,37,2030,173,33052,234,6,1902,68,60,7,9140,2829 +2045,37,2031,196,37333,265,7,2148,77,68,8,9059,3196 +2045,37,2032,219,41746,296,8,2402,86,76,9,9827,3574 +2045,37,2033,245,46775,331,9,2692,96,85,10,10661,4004 +2045,37,2034,275,52488,372,10,3021,108,95,12,11608,4493 +2045,37,2035,308,58860,417,11,3387,121,107,13,12572,5039 +2045,37,2036,345,65902,467,13,3793,135,120,15,13182,5642 +2045,37,2037,389,74359,527,14,4279,153,135,17,14332,6366 +2045,37,2038,446,85169,603,16,4901,175,155,19,15755,7291 +2045,37,2039,514,98226,696,19,5653,202,179,22,17402,8409 +2045,37,2040,606,115740,820,22,6661,238,210,26,19552,9908 +2045,37,2041,726,138640,982,26,7979,285,252,31,22194,11868 +2045,37,2042,889,169815,1203,32,9773,349,309,38,25560,14537 +2045,37,2043,1141,217932,1544,42,12542,448,396,48,30481,18656 +2045,37,2044,1544,294861,2089,56,16969,606,536,66,37592,25242 +2045,37,2045,2896,552894,3918,105,31818,1136,1005,123,60583,47331 +2045,38,2015,111,21856,154,5,1460,44,39,5,17615,1852 +2045,38,2016,18,3489,25,1,233,7,6,1,2470,296 +2045,38,2017,20,3987,28,1,266,8,7,1,2649,338 +2045,38,2018,29,5718,40,1,382,12,10,1,3517,485 +2045,38,2019,33,6499,46,1,434,13,12,1,3744,551 +2045,38,2020,38,7476,53,2,499,15,13,2,3899,634 +2045,38,2021,43,8420,59,2,563,17,15,2,4159,714 +2045,38,2022,48,9323,66,2,623,19,17,2,4248,790 +2045,38,2023,54,10614,75,2,709,22,19,2,4616,899 +2045,38,2024,60,11714,83,2,783,24,21,3,4982,993 +2045,38,2025,66,12880,91,3,861,26,23,3,5362,1092 +2045,38,2026,73,14223,100,3,950,29,26,3,4032,1205 +2045,38,2027,81,15854,112,3,1059,32,28,3,4389,1344 +2045,38,2028,91,17805,125,4,1190,36,32,4,4792,1509 +2045,38,2029,102,19926,140,4,1331,40,36,4,5221,1689 +2045,38,2030,114,22300,157,5,1490,45,40,5,5697,1890 +2045,38,2031,128,25189,177,5,1683,51,45,6,5441,2135 +2045,38,2032,144,28167,198,6,1882,57,51,6,5907,2387 +2045,38,2033,161,31560,222,7,2109,64,57,7,6414,2674 +2045,38,2034,181,35414,249,7,2366,72,64,8,6991,3001 +2045,38,2035,203,39714,280,8,2653,81,71,9,7579,3365 +2045,38,2036,227,44464,313,9,2971,90,80,10,7862,3768 +2045,38,2037,256,50171,353,10,3352,102,90,11,8562,4252 +2045,38,2038,293,57464,405,12,3839,117,103,13,9430,4870 +2045,38,2039,338,66274,467,14,4428,134,119,15,10437,5616 +2045,38,2040,398,78091,550,16,5218,158,140,17,11755,6618 +2045,38,2041,477,93542,659,19,6250,190,168,20,13381,7927 +2045,38,2042,584,114576,807,24,7655,233,206,25,15463,9709 +2045,38,2043,750,147041,1036,30,9824,298,264,32,18520,12461 +2045,38,2044,1015,198945,1401,41,13292,404,357,44,22977,16859 +2045,38,2045,1903,373043,2628,77,24925,757,670,82,37434,31613 +2045,39,2015,1755,339501,2508,67,20483,703,622,75,227567,28738 +2045,39,2016,280,54190,400,11,3269,112,99,12,32111,4587 +2045,39,2017,320,61938,457,12,3737,128,113,14,34533,5243 +2045,39,2018,459,88815,656,18,5358,184,163,20,46023,7518 +2045,39,2019,522,100946,746,20,6090,209,185,22,49144,8545 +2045,39,2020,600,116125,858,23,7006,240,213,26,51466,9830 +2045,39,2021,676,130796,966,26,7891,271,239,29,55057,11072 +2045,39,2022,748,144824,1070,29,8737,300,265,32,56532,12259 +2045,39,2023,852,164878,1218,33,9947,341,302,37,61595,13957 +2045,39,2024,940,181958,1344,36,10978,377,333,40,66576,15402 +2045,39,2025,1034,200077,1478,40,12071,414,366,44,71749,16936 +2045,39,2026,1142,220942,1632,44,13330,457,404,49,56721,18702 +2045,39,2027,1273,246272,1819,49,14858,510,451,55,61856,20846 +2045,39,2028,1429,276572,2043,55,16686,572,506,61,67684,23411 +2045,39,2029,1600,309528,2286,61,18674,641,567,69,73909,26201 +2045,39,2030,1790,346407,2559,68,20899,717,634,77,80807,29322 +2045,39,2031,2022,391280,2890,77,23607,810,716,87,79248,33121 +2045,39,2032,2261,437530,3232,86,26397,906,801,97,86261,37036 +2045,39,2033,2534,490240,3621,97,29577,1015,898,109,93928,41498 +2045,39,2034,2843,550114,4063,109,33189,1139,1007,122,102641,46566 +2045,39,2035,3188,616900,4556,122,37219,1277,1129,137,111634,52219 +2045,39,2036,3570,690699,5102,136,41671,1429,1265,153,117144,58466 +2045,39,2037,4028,779338,5756,154,47019,1613,1427,173,128021,65969 +2045,39,2038,4613,892636,6593,176,53854,1847,1634,198,141568,75559 +2045,39,2039,5320,1029479,7604,203,62110,2131,1885,228,157376,87143 +2045,39,2040,6269,1213046,8960,240,73185,2511,2221,269,178132,102681 +2045,39,2041,7509,1453049,10732,287,87665,3007,2660,322,203970,122997 +2045,39,2042,9198,1779784,13146,351,107377,3683,3258,394,237367,150654 +2045,39,2043,11804,2284087,16870,451,137803,4727,4182,506,286820,193342 +2045,39,2044,15971,3090361,22826,610,186447,6396,5658,685,360085,261591 +2045,39,2045,29948,5794747,42801,1144,349607,11993,10609,1284,599210,490510 +2045,40,2015,1497,302436,2391,66,16787,628,555,66,219985,25809 +2045,40,2016,239,48273,382,11,2679,100,89,11,31210,4120 +2045,40,2017,273,55176,436,12,3063,115,101,12,33584,4709 +2045,40,2018,392,79118,625,17,4391,164,145,17,44884,6752 +2045,40,2019,445,89925,711,20,4991,187,165,20,47958,7674 +2045,40,2020,512,103447,818,23,5742,215,190,23,50387,8828 +2045,40,2021,577,116516,921,26,6467,242,214,25,53934,9943 +2045,40,2022,639,129013,1020,28,7161,268,237,28,55552,11010 +2045,40,2023,727,146877,1161,32,8152,305,270,32,60560,12534 +2045,40,2024,802,162092,1281,36,8997,336,298,35,65474,13833 +2045,40,2025,882,178234,1409,39,9893,370,327,39,70580,15210 +2045,40,2026,974,196820,1556,43,10924,408,361,43,58807,16796 +2045,40,2027,1086,219385,1734,48,12177,455,403,48,64117,18722 +2045,40,2028,1220,246377,1948,54,13675,511,452,54,70140,21025 +2045,40,2029,1365,275735,2180,60,15305,572,506,60,76570,23531 +2045,40,2030,1528,308588,2439,68,17128,640,567,68,83696,26334 +2045,40,2031,1726,348561,2755,76,19347,723,640,76,83942,29745 +2045,40,2032,1930,389763,3081,85,21634,809,716,85,91294,33261 +2045,40,2033,2162,436717,3452,96,24240,906,802,96,99319,37268 +2045,40,2034,2426,490056,3874,107,27200,1017,900,107,108437,41820 +2045,40,2035,2721,549549,4344,120,30503,1141,1009,120,117817,46897 +2045,40,2036,3046,615291,4864,135,34152,1277,1130,135,124355,52507 +2045,40,2037,3437,694252,5488,152,38534,1441,1275,152,135704,59246 +2045,40,2038,3937,795182,6286,174,44136,1650,1460,174,149814,67859 +2045,40,2039,4540,917085,7250,201,50903,1903,1684,201,166243,78262 +2045,40,2040,5350,1080611,8542,237,59979,2243,1984,236,187782,92217 +2045,40,2041,6408,1294412,10232,283,71846,2687,2377,283,214501,110462 +2045,40,2042,7849,1585475,12533,347,88001,3291,2911,347,248905,135301 +2045,40,2043,10073,2034720,16085,446,112937,4223,3736,445,299684,173638 +2045,40,2044,13629,2752968,21762,603,152803,5714,5054,602,374434,234932 +2045,40,2045,25556,5162100,40807,1131,286521,10714,9478,1130,617819,440521 +2045,41,2015,2006,390958,3168,93,26368,772,683,89,286636,34826 +2045,41,2016,320,62403,506,15,4209,123,109,14,40569,5559 +2045,41,2017,366,71325,578,17,4810,141,125,16,43637,6354 +2045,41,2018,525,102276,829,24,6898,202,179,23,58254,9111 +2045,41,2019,596,116246,942,28,7840,230,203,27,62216,10355 +2045,41,2020,686,133726,1083,32,9019,264,234,31,65268,11912 +2045,41,2021,773,150621,1220,36,10158,298,263,34,69832,13417 +2045,41,2022,856,166775,1351,40,11248,329,291,38,71823,14856 +2045,41,2023,974,189868,1538,45,12805,375,332,43,78266,16913 +2045,41,2024,1075,209537,1698,50,14132,414,366,48,84600,18665 +2045,41,2025,1182,230403,1867,55,15539,455,403,53,91179,20524 +2045,41,2026,1305,254429,2061,61,17160,503,445,58,72844,22664 +2045,41,2027,1455,283598,2298,68,19127,560,496,65,79432,25262 +2045,41,2028,1634,318491,2581,76,21480,629,557,73,86906,28371 +2045,41,2029,1829,356442,2888,85,24040,704,623,82,94888,31751 +2045,41,2030,2046,398911,3232,95,26904,788,697,91,103733,35534 +2045,41,2031,2311,450585,3651,107,30389,890,787,103,102177,40137 +2045,41,2032,2585,503845,4082,120,33981,995,881,115,111187,44882 +2045,41,2033,2896,564544,4574,135,38075,1115,987,129,121032,50289 +2045,41,2034,3250,633495,5133,151,42725,1252,1107,145,132219,56431 +2045,41,2035,3644,710401,5756,169,47912,1403,1242,162,143752,63281 +2045,41,2036,4080,795386,6445,190,53644,1571,1390,182,150985,70852 +2045,41,2037,4604,897460,7272,214,60528,1773,1568,205,164924,79944 +2045,41,2038,5273,1027932,8329,245,69328,2031,1796,235,182274,91566 +2045,41,2039,6082,1185515,9605,283,79956,2342,2072,271,202505,105603 +2045,41,2040,7166,1396905,11318,333,94213,2760,2441,319,229056,124434 +2045,41,2041,8584,1673286,13558,399,112853,3306,2924,383,262068,149053 +2045,41,2042,10514,2049542,16606,489,138229,4049,3582,469,304685,182570 +2045,41,2043,13493,2630281,21312,627,177397,5196,4597,602,367724,234301 +2045,41,2044,18256,3558757,28834,849,240017,7031,6219,814,460919,317008 +2045,41,2045,34232,6673046,54068,1591,450057,13183,11662,1526,764859,594422 +2045,42,2015,927,186538,1464,43,11124,385,341,41,136002,16078 +2045,42,2016,148,29774,234,7,1776,61,54,7,19209,2566 +2045,42,2017,169,34031,267,8,2029,70,62,8,20661,2933 +2045,42,2018,243,48799,383,11,2910,101,89,11,27551,4206 +2045,42,2019,276,55464,435,13,3308,114,101,12,29425,4781 +2045,42,2020,317,63805,501,15,3805,132,117,14,30835,5499 +2045,42,2021,357,71865,564,17,4286,148,131,16,32992,6194 +2045,42,2022,396,79573,625,19,4745,164,145,18,33896,6858 +2045,42,2023,450,90592,711,21,5402,187,165,20,36938,7808 +2045,42,2024,497,99976,785,23,5962,206,183,22,39928,8617 +2045,42,2025,547,109932,863,26,6556,227,201,24,43035,9475 +2045,42,2026,604,121396,953,28,7239,251,222,27,34227,10463 +2045,42,2027,673,135313,1062,31,8069,279,247,30,37326,11663 +2045,42,2028,756,151961,1193,35,9062,314,277,34,40844,13098 +2045,42,2029,846,170069,1335,40,10142,351,311,38,44601,14658 +2045,42,2030,946,190332,1494,44,11350,393,348,42,48764,16405 +2045,42,2031,1069,214988,1687,50,12820,444,393,48,47947,18530 +2045,42,2032,1195,240399,1887,56,14336,496,439,53,52187,20720 +2045,42,2033,1339,269361,2114,63,16063,556,492,60,56822,23216 +2045,42,2034,1503,302259,2372,70,18025,624,552,67,62089,26052 +2045,42,2035,1685,338953,2660,79,20213,700,619,75,67525,29215 +2045,42,2036,1887,379502,2978,88,22631,783,693,84,70904,32710 +2045,42,2037,2129,428204,3361,100,25535,884,782,95,77478,36907 +2045,42,2038,2439,490456,3849,114,29248,1012,896,109,85664,42273 +2045,42,2039,2812,565644,4439,132,33731,1168,1033,125,95214,48753 +2045,42,2040,3314,666504,5231,155,39746,1376,1217,148,107753,57446 +2045,42,2041,3969,798373,6266,186,47610,1648,1458,177,123356,68812 +2045,42,2042,4862,977897,7675,228,58316,2019,1786,217,143518,84286 +2045,42,2043,6240,1254985,9849,292,74839,2591,2292,278,173366,108168 +2045,42,2044,8442,1697990,13326,395,101257,3505,3101,376,217561,146351 +2045,42,2045,15830,3183902,24988,741,189868,6572,5814,705,361777,274422 +2045,44,2015,1246,244576,2640,74,14361,512,453,59,160752,22960 +2045,44,2016,199,39038,421,12,2292,82,72,9,22718,3665 +2045,44,2017,227,44620,482,14,2620,93,83,11,24510,4189 +2045,44,2018,326,63982,691,19,3757,134,118,15,32723,6006 +2045,44,2019,371,72721,785,22,4270,152,135,18,35073,6827 +2045,44,2020,426,83656,903,25,4912,175,155,20,36863,7853 +2045,44,2021,480,94225,1017,29,5533,197,174,23,39575,8845 +2045,44,2022,532,104331,1126,32,6126,218,193,25,40754,9794 +2045,44,2023,605,118778,1282,36,6975,248,220,29,44555,11150 +2045,44,2024,668,131082,1415,40,7697,274,243,32,48239,12305 +2045,44,2025,734,144135,1556,44,8464,301,267,35,52072,13531 +2045,44,2026,811,159166,1718,48,9346,333,295,38,40981,14942 +2045,44,2027,904,177414,1915,54,10418,371,328,43,44806,16655 +2045,44,2028,1015,199242,2151,60,11699,417,369,48,49180,18704 +2045,44,2029,1136,222983,2407,68,13094,466,413,54,53865,20933 +2045,44,2030,1271,249551,2694,76,14654,522,462,60,59064,23427 +2045,44,2031,1436,281878,3042,86,16552,590,522,68,58003,26461 +2045,44,2032,1606,315196,3402,96,18508,659,583,76,63394,29589 +2045,44,2033,1799,353168,3812,107,20738,739,653,85,69335,33154 +2045,44,2034,2019,396302,4277,120,23271,829,733,96,76086,37203 +2045,44,2035,2264,444413,4797,135,26096,930,822,107,83165,41719 +2045,44,2036,2535,497578,5371,151,29218,1041,921,120,87698,46710 +2045,44,2037,2860,561434,6060,170,32967,1174,1039,135,96392,52705 +2045,44,2038,3276,643053,6941,195,37760,1345,1190,155,107285,60367 +2045,44,2039,3779,741635,8005,225,43549,1551,1372,179,120101,69621 +2045,44,2040,4452,873876,9432,265,51314,1828,1617,211,137016,82035 +2045,44,2041,5333,1046774,11298,318,61467,2189,1937,252,158330,98266 +2045,44,2042,6533,1282155,13839,389,75288,2682,2372,309,186252,120363 +2045,44,2043,8384,1645453,17760,499,96621,3442,3045,397,228058,154467 +2045,44,2044,11343,2226292,24029,676,130728,4657,4119,537,291324,208993 +2045,44,2045,21269,4174521,45058,1267,245127,8731,7724,1006,499453,391884 +2045,45,2015,2419,495664,4101,126,26279,1030,911,111,392959,43013 +2045,45,2016,386,79116,655,20,4195,164,145,18,55800,6866 +2045,45,2017,441,90428,748,23,4794,188,166,20,60049,7847 +2045,45,2018,633,129667,1073,33,6875,270,238,29,80290,11252 +2045,45,2019,719,147379,1219,38,7814,306,271,33,85797,12789 +2045,45,2020,827,169540,1403,43,8989,352,312,38,90185,14712 +2045,45,2021,932,190959,1580,49,10124,397,351,43,96540,16571 +2045,45,2022,1032,211440,1749,54,11210,440,389,47,99482,18348 +2045,45,2023,1175,240719,1992,61,12762,500,443,54,108455,20889 +2045,45,2024,1297,265654,2198,68,14085,552,488,59,117259,23053 +2045,45,2025,1426,292109,2417,74,15487,607,537,65,126406,25349 +2045,45,2026,1574,322570,2669,82,17102,671,593,72,105959,27992 +2045,45,2027,1755,359551,2975,92,19063,747,661,80,115517,31201 +2045,45,2028,1971,403789,3341,103,21408,839,743,90,126356,35040 +2045,45,2029,2206,451904,3739,115,23959,939,831,101,137929,39216 +2045,45,2030,2468,505747,4185,129,26814,1051,930,113,150751,43888 +2045,45,2031,2788,571261,4727,146,30287,1187,1050,127,151537,49573 +2045,45,2032,3118,638783,5285,163,33867,1328,1175,143,164776,55433 +2045,45,2033,3493,715739,5922,182,37947,1488,1316,160,179220,62111 +2045,45,2034,3920,803155,6645,205,42582,1669,1477,179,195632,69697 +2045,45,2035,4396,900660,7452,229,47751,1872,1656,201,212500,78158 +2045,45,2036,4922,1008405,8344,257,53464,2096,1854,225,224379,87508 +2045,45,2037,5553,1137816,9414,290,60325,2365,2092,254,244775,98738 +2045,45,2038,6361,1303228,10783,332,69095,2709,2396,291,270122,113092 +2045,45,2039,7336,1503017,12436,383,79687,3124,2764,335,299619,130430 +2045,45,2040,8644,1771020,14654,451,93896,3681,3257,395,338278,153686 +2045,45,2041,10354,2121422,17553,540,112474,4410,3901,473,386194,184094 +2045,45,2042,12682,2598449,21500,662,137765,5401,4778,580,447835,225489 +2045,45,2043,16276,3334719,27592,850,176801,6932,6132,744,538743,289382 +2045,45,2044,22021,4511862,37331,1149,239211,9379,8297,1007,672360,391533 +2045,45,2045,41291,8460197,70000,2155,448545,17586,15557,1888,1107164,734164 +2045,46,2015,367,73833,559,17,4518,152,134,16,46288,6350 +2045,46,2016,59,11785,89,3,721,24,21,3,6552,1014 +2045,46,2017,67,13470,102,3,824,28,24,3,7059,1158 +2045,46,2018,96,19315,146,4,1182,40,35,4,9429,1661 +2045,46,2019,109,21953,166,5,1343,45,40,5,10090,1888 +2045,46,2020,125,25254,191,6,1545,52,46,6,10602,2172 +2045,46,2021,141,28445,216,6,1741,58,52,6,11365,2446 +2045,46,2022,156,31496,239,7,1927,65,57,7,11703,2709 +2045,46,2023,178,35857,272,8,2194,74,65,8,12776,3084 +2045,46,2024,197,39571,300,9,2422,81,72,9,13823,3403 +2045,46,2025,216,43512,330,10,2663,89,79,10,14911,3742 +2045,46,2026,239,48049,364,11,2940,99,87,11,11910,4133 +2045,46,2027,266,53558,406,12,3277,110,97,12,13006,4606 +2045,46,2028,299,60147,456,14,3681,123,109,13,14255,5173 +2045,46,2029,334,67315,510,15,4119,138,122,15,15591,5789 +2045,46,2030,374,75335,571,17,4610,155,137,17,17073,6479 +2045,46,2031,423,85094,645,19,5207,175,155,19,16853,7319 +2045,46,2032,473,95152,721,22,5823,195,173,21,18383,8184 +2045,46,2033,529,106615,808,24,6524,219,194,24,20063,9170 +2045,46,2034,594,119636,906,27,7321,246,217,26,21972,10289 +2045,46,2035,666,134160,1017,30,8210,275,244,30,23958,11539 +2045,46,2036,746,150210,1138,34,9192,308,273,33,25251,12919 +2045,46,2037,842,169487,1284,38,10372,348,308,38,27677,14577 +2045,46,2038,964,194126,1471,44,11879,398,353,43,30708,16696 +2045,46,2039,1112,223886,1696,51,13700,460,407,50,34260,19256 +2045,46,2040,1310,263807,1999,60,16143,542,479,58,38936,22689 +2045,46,2041,1569,316002,2394,72,19337,649,574,70,44795,27178 +2045,46,2042,1922,387059,2933,88,23686,795,703,86,52424,33290 +2045,46,2043,2467,496733,3764,113,30397,1020,902,110,63787,42722 +2045,46,2044,3338,672077,5092,152,41127,1380,1220,149,80817,57803 +2045,46,2045,6259,1260213,9549,285,77117,2587,2288,279,136642,108386 +2045,47,2015,644,124595,892,24,7399,256,227,28,81170,10702 +2045,47,2016,103,19887,142,4,1181,41,36,4,11509,1708 +2045,47,2017,118,22731,163,4,1350,47,41,5,12381,1952 +2045,47,2018,168,32595,233,6,1936,67,59,7,16542,2800 +2045,47,2019,192,37047,265,7,2200,76,67,8,17672,3182 +2045,47,2020,220,42617,305,8,2531,88,78,9,18558,3661 +2045,47,2021,248,48002,344,9,2850,99,87,11,19860,4123 +2045,47,2022,275,53150,381,10,3156,109,97,12,20448,4565 +2045,47,2023,313,60510,433,11,3593,124,110,13,22286,5197 +2045,47,2024,345,66778,478,13,3965,137,121,15,24092,5736 +2045,47,2025,380,73427,526,14,4360,151,134,16,25968,6307 +2045,47,2026,419,81085,581,15,4815,167,147,18,21398,6965 +2045,47,2027,467,90381,647,17,5367,186,164,20,23330,7763 +2045,47,2028,525,101501,727,19,6027,209,185,22,25521,8718 +2045,47,2029,587,113595,814,21,6746,234,207,25,27861,9757 +2045,47,2030,657,127130,911,24,7549,261,231,28,30454,10920 +2045,47,2031,742,143598,1029,27,8527,295,261,32,30402,12334 +2045,47,2032,830,160571,1150,30,9535,330,292,35,33069,13792 +2045,47,2033,930,179916,1289,34,10684,370,327,40,35979,15454 +2045,47,2034,1044,201890,1446,38,11989,415,367,45,39287,17341 +2045,47,2035,1170,226399,1622,43,13444,466,412,50,42690,19446 +2045,47,2036,1310,253484,1816,48,15053,521,461,56,45003,21773 +2045,47,2037,1478,286013,2049,54,16984,588,520,63,49120,24567 +2045,47,2038,1693,327593,2346,62,19454,674,596,72,54240,28138 +2045,47,2039,1953,377815,2706,71,22436,777,687,84,60204,32452 +2045,47,2040,2301,445183,3189,84,26436,915,810,98,68023,38238 +2045,47,2041,2757,533263,3820,101,31667,1097,970,118,77729,45804 +2045,47,2042,3376,653173,4679,123,38788,1343,1188,144,90232,56103 +2045,47,2043,4333,838249,6004,158,49778,1724,1525,185,108695,72000 +2045,47,2044,5863,1134148,8124,214,67349,2332,2063,251,135898,97416 +2045,47,2045,10993,2126644,15233,401,126287,4373,3868,470,224504,182665 +2045,48,2015,995,191014,1574,35,10645,406,360,42,117510,16527 +2045,48,2016,159,30489,251,6,1699,65,57,7,16709,2638 +2045,48,2017,181,34848,287,6,1942,74,66,8,17999,3015 +2045,48,2018,260,49970,412,9,2785,106,94,11,24089,4324 +2045,48,2019,296,56795,468,10,3165,121,107,13,25772,4914 +2045,48,2020,340,65336,539,12,3641,139,123,15,27134,5653 +2045,48,2021,383,73590,607,14,4101,157,139,16,29080,6367 +2045,48,2022,424,81483,672,15,4541,173,153,18,30010,7050 +2045,48,2023,483,92766,765,17,5170,197,175,21,32753,8026 +2045,48,2024,533,102375,844,19,5705,218,193,23,35431,8858 +2045,48,2025,586,112570,928,21,6273,240,212,25,38215,9740 +2045,48,2026,647,124309,1025,23,6928,264,234,28,32590,10756 +2045,48,2027,722,138560,1142,26,7722,295,261,31,35555,11989 +2045,48,2028,810,155608,1283,29,8672,331,293,35,38926,13464 +2045,48,2029,907,174150,1435,32,9705,371,328,39,42527,15068 +2045,48,2030,1015,194899,1606,36,10862,415,367,43,46519,16863 +2045,48,2031,1146,220146,1814,41,12269,468,414,49,47150,19048 +2045,48,2032,1282,246168,2029,45,13719,524,463,55,51324,21299 +2045,48,2033,1436,275824,2273,51,15371,587,519,61,55888,23865 +2045,48,2034,1612,309512,2551,57,17249,659,583,69,61074,26780 +2045,48,2035,1807,347086,2861,64,19343,738,653,77,66427,30031 +2045,48,2036,2024,388608,3203,72,21657,827,731,86,70408,33624 +2045,48,2037,2283,438479,3614,81,24436,933,825,98,76922,37939 +2045,48,2038,2615,502225,4139,92,27989,1069,945,112,85032,43454 +2045,48,2039,3016,579217,4774,107,32279,1232,1090,129,94491,50116 +2045,48,2040,3554,682498,5625,126,38035,1452,1285,152,106907,59052 +2045,48,2041,4257,817531,6738,150,45560,1739,1539,182,122352,70736 +2045,48,2042,5214,1001362,8253,184,55805,2131,1885,223,142300,86642 +2045,48,2043,6692,1285099,10592,237,71618,2734,2419,286,171818,111191 +2045,48,2044,9054,1738733,14331,320,96898,3699,3273,387,215492,150442 +2045,48,2045,16977,3260312,26872,600,181694,6937,6137,725,357970,282093 +2045,49,2015,2147,398994,3084,88,26959,781,691,93,327708,35218 +2045,49,2016,343,63686,492,14,4303,125,110,15,46325,5621 +2045,49,2017,392,72791,563,16,4918,142,126,17,49739,6425 +2045,49,2018,562,104378,807,23,7052,204,181,24,66317,9213 +2045,49,2019,638,118636,917,26,8016,232,205,28,70679,10472 +2045,49,2020,734,136474,1055,30,9221,267,236,32,73977,12046 +2045,49,2021,827,153716,1188,34,10386,301,266,36,78992,13568 +2045,49,2022,916,170203,1315,37,11500,333,295,40,81085,15023 +2045,49,2023,1043,193771,1498,43,13092,379,335,45,88187,17104 +2045,49,2024,1151,213843,1653,47,14449,418,370,50,95234,18875 +2045,49,2025,1265,235138,1817,52,15888,460,407,55,102543,20755 +2045,49,2026,1397,259659,2007,57,17544,508,449,60,82461,22919 +2045,49,2027,1557,289428,2237,64,19556,566,501,67,89775,25547 +2045,49,2028,1749,325038,2512,71,21962,636,563,76,98034,28690 +2045,49,2029,1958,363769,2811,80,24579,712,630,85,106836,32109 +2045,49,2030,2191,407110,3146,89,27507,796,705,95,116581,35935 +2045,49,2031,2475,459847,3554,101,31070,900,796,107,114896,40590 +2045,49,2032,2767,514201,3974,113,34743,1006,890,120,124696,45387 +2045,49,2033,3100,576148,4453,127,38928,1127,997,134,135342,50855 +2045,49,2034,3479,646515,4996,142,43683,1265,1119,150,147440,57066 +2045,49,2035,3901,725003,5603,159,48986,1418,1255,169,159769,63994 +2045,49,2036,4368,811735,6273,178,54846,1588,1405,189,167309,71650 +2045,49,2037,4929,915906,7078,201,61885,1792,1585,213,182035,80845 +2045,49,2038,5645,1049060,8107,230,70881,2052,1816,244,200278,92598 +2045,49,2039,6511,1209882,9350,266,81748,2367,2094,281,221415,106793 +2045,49,2040,7671,1425618,11018,313,96324,2789,2467,331,249038,125836 +2045,49,2041,9189,1707678,13197,375,115382,3341,2955,397,283043,150732 +2045,49,2042,11256,2091670,16165,459,141327,4092,3620,486,326454,184627 +2045,49,2043,14445,2684347,20745,589,181372,5252,4646,624,390057,236941 +2045,49,2044,19544,3631910,28068,797,245396,7106,6286,844,482331,320580 +2045,49,2045,36647,6810201,52631,1495,460143,13324,11786,1583,781096,601120 +2045,50,2015,1058,204081,1591,43,13045,425,376,46,136066,17544 +2045,50,2016,169,32575,254,7,2082,68,60,7,19063,2800 +2045,50,2017,193,37232,290,8,2380,78,69,8,20467,3201 +2045,50,2018,277,53388,416,11,3413,111,98,12,27164,4589 +2045,50,2019,314,60681,473,13,3879,126,112,14,28952,5216 +2045,50,2020,362,69805,544,15,4462,146,129,16,30162,6001 +2045,50,2021,407,78624,613,16,5026,164,145,18,32209,6759 +2045,50,2022,451,87057,679,18,5565,181,161,19,32905,7484 +2045,50,2023,514,99112,773,21,6335,207,183,22,35792,8520 +2045,50,2024,567,109379,853,23,6991,228,202,24,38654,9403 +2045,50,2025,623,120271,938,25,7688,251,222,27,41624,10339 +2045,50,2026,688,132813,1036,28,8489,277,245,30,31017,11417 +2045,50,2027,767,148039,1154,31,9463,309,273,33,33796,12726 +2045,50,2028,862,166253,1296,35,10627,347,307,37,36943,14292 +2045,50,2029,964,186064,1451,39,11893,388,343,42,40301,15995 +2045,50,2030,1079,208233,1624,43,13310,434,384,47,44020,17901 +2045,50,2031,1219,235207,1834,49,15034,490,434,53,41914,20219 +2045,50,2032,1363,263008,2051,55,16811,548,485,59,45583,22609 +2045,50,2033,1527,294694,2298,61,18837,614,543,66,49587,25333 +2045,50,2034,1714,330686,2579,69,21137,689,610,74,54137,28427 +2045,50,2035,1922,370831,2892,77,23704,773,684,83,58816,31878 +2045,50,2036,2152,415194,3237,87,26539,865,766,93,61071,35692 +2045,50,2037,2428,468476,3653,98,29945,977,864,105,66675,40272 +2045,50,2038,2781,536583,4184,112,34298,1118,989,120,73646,46127 +2045,50,2039,3207,618842,4825,129,39556,1290,1141,138,81768,53198 +2045,50,2040,3779,729188,5686,152,46610,1520,1345,163,92422,62684 +2045,50,2041,4526,873459,6811,182,55832,1821,1611,195,105652,75086 +2045,50,2042,5544,1069867,8342,223,68386,2230,1973,239,122709,91970 +2045,50,2043,7115,1373014,10706,286,87763,2862,2532,307,147910,118030 +2045,50,2044,9627,1857684,14485,388,118743,3872,3425,416,185084,159694 +2045,50,2045,18051,3483344,27161,727,222656,7261,6423,779,306216,299442 +2045,51,2015,345,66669,477,13,3940,137,121,15,42112,5729 +2045,51,2016,55,10641,76,2,629,22,19,2,5966,914 +2045,51,2017,63,12163,87,2,719,25,22,3,6422,1045 +2045,51,2018,90,17441,125,3,1031,36,32,4,8577,1499 +2045,51,2019,103,19823,142,4,1171,41,36,4,9168,1703 +2045,51,2020,118,22804,163,4,1348,47,41,5,9628,1959 +2045,51,2021,133,25685,184,5,1518,53,47,6,10309,2207 +2045,51,2022,147,28440,204,5,1681,58,52,6,10613,2444 +2045,51,2023,167,32378,232,6,1913,67,59,7,11574,2782 +2045,51,2024,185,35732,256,7,2112,73,65,8,12515,3070 +2045,51,2025,203,39290,281,7,2322,81,71,9,13493,3376 +2045,51,2026,224,43387,311,8,2564,89,79,10,11076,3728 +2045,51,2027,250,48362,346,9,2858,99,88,11,12082,4155 +2045,51,2028,281,54312,389,10,3210,112,99,12,13224,4667 +2045,51,2029,314,60784,435,11,3592,125,111,13,14444,5223 +2045,51,2030,352,68026,487,13,4020,140,124,15,15797,5845 +2045,51,2031,397,76838,550,14,4541,158,140,17,15756,6602 +2045,51,2032,444,85920,615,16,5078,177,156,19,17151,7383 +2045,51,2033,498,96271,689,18,5689,198,175,21,18677,8272 +2045,51,2034,559,108029,773,20,6384,222,197,24,20410,9282 +2045,51,2035,626,121144,867,23,7159,249,220,27,22200,10409 +2045,51,2036,701,135636,971,26,8016,279,247,30,23418,11654 +2045,51,2037,791,153042,1095,29,9044,315,278,34,25590,13150 +2045,51,2038,906,175291,1255,33,10359,360,319,39,28295,15062 +2045,51,2039,1045,202164,1447,38,11947,416,368,45,31451,17371 +2045,51,2040,1232,238212,1705,45,14078,490,433,53,35595,20468 +2045,51,2041,1476,285343,2042,54,16863,587,519,63,40751,24518 +2045,51,2042,1807,349505,2502,66,20655,719,636,77,47415,30031 +2045,51,2043,2319,448538,3210,84,26507,922,816,99,57281,38540 +2045,51,2044,3138,606871,4344,114,35864,1248,1104,134,71891,52145 +2045,51,2045,5884,1137943,8145,214,67249,2340,2070,252,119569,97777 +2045,53,2015,1419,265218,2081,62,17514,518,458,62,246800,23394 +2045,53,2016,227,42333,332,10,2795,83,73,10,34782,3734 +2045,53,2017,259,48386,380,11,3195,95,84,11,37310,4268 +2045,53,2018,371,69382,544,16,4582,136,120,16,49650,6120 +2045,53,2019,422,78859,619,18,5207,154,136,18,52857,6956 +2045,53,2020,485,90717,712,21,5990,177,157,21,55186,8002 +2045,53,2021,547,102178,802,24,6747,200,177,24,58865,9013 +2045,53,2022,605,113137,888,26,7471,221,196,26,60284,9979 +2045,53,2023,689,128803,1011,30,8505,252,223,30,65497,11361 +2045,53,2024,761,142145,1115,33,9387,278,246,33,70695,12538 +2045,53,2025,836,156300,1226,36,10321,305,270,36,76083,13787 +2045,53,2026,924,172600,1354,40,11398,337,298,40,60400,15224 +2045,53,2027,1030,192387,1509,45,12704,376,333,45,65711,16970 +2045,53,2028,1156,216058,1695,50,14267,422,373,50,71695,19058 +2045,53,2029,1294,241803,1897,56,15967,472,418,56,78067,21329 +2045,53,2030,1448,270613,2123,63,17870,529,468,63,85118,23870 +2045,53,2031,1636,305668,2398,71,20185,597,528,71,83312,26962 +2045,53,2032,1829,341798,2682,80,22570,668,591,79,90321,30149 +2045,53,2033,2050,382975,3005,89,25290,748,662,89,97916,33781 +2045,53,2034,2300,429749,3372,100,28378,840,743,100,106547,37907 +2045,53,2035,2579,481921,3781,112,31823,942,833,112,115300,42509 +2045,53,2036,2888,539573,4233,126,35630,1054,933,125,120320,47594 +2045,53,2037,3258,608818,4777,142,40203,1190,1052,142,130704,53702 +2045,53,2038,3732,697327,5471,162,46048,1362,1205,162,143543,61509 +2045,53,2039,4304,804229,6310,187,53107,1571,1390,187,158377,70938 +2045,53,2040,5071,947631,7435,221,62576,1851,1638,220,177730,83587 +2045,53,2041,6075,1135122,8906,264,74957,2218,1962,264,201449,100125 +2045,53,2042,7441,1390367,10909,324,91812,2717,2403,323,231579,122639 +2045,53,2043,9549,1784328,14000,415,117827,3486,3084,415,275535,157389 +2045,53,2044,12920,2414190,18941,562,159420,4717,4173,561,338753,212947 +2045,53,2045,24226,4526853,35517,1054,298929,8845,7824,1053,542751,399298 +2045,54,2015,365,71476,518,13,4356,148,131,16,45145,6063 +2045,54,2016,58,11409,83,2,695,24,21,2,6388,968 +2045,54,2017,67,13040,95,2,795,27,24,3,6873,1106 +2045,54,2018,95,18698,136,4,1139,39,34,4,9174,1586 +2045,54,2019,108,21252,154,4,1295,44,39,5,9801,1803 +2045,54,2020,125,24448,177,5,1490,50,45,5,10283,2074 +2045,54,2021,141,27537,200,5,1678,57,50,6,11005,2336 +2045,54,2022,156,30490,221,6,1858,63,56,7,11320,2586 +2045,54,2023,177,34712,252,7,2115,72,63,8,12340,2945 +2045,54,2024,196,38308,278,7,2334,79,70,8,13341,3250 +2045,54,2025,215,42123,305,8,2567,87,77,9,14380,3573 +2045,54,2026,237,46516,337,9,2835,96,85,10,11583,3946 +2045,54,2027,265,51848,376,10,3160,107,95,11,12633,4398 +2045,54,2028,297,58228,422,11,3548,120,106,13,13826,4939 +2045,54,2029,333,65166,472,12,3971,135,119,14,15100,5528 +2045,54,2030,372,72930,529,14,4444,151,133,16,16513,6187 +2045,54,2031,421,82377,597,16,5020,170,150,18,16333,6988 +2045,54,2032,470,92114,668,17,5613,190,168,20,17780,7814 +2045,54,2033,527,103212,748,19,6290,213,188,23,19362,8755 +2045,54,2034,591,115817,840,22,7058,239,211,25,21159,9825 +2045,54,2035,663,129878,942,24,7915,268,237,28,23015,11017 +2045,54,2036,742,145415,1054,27,8861,300,266,32,24217,12335 +2045,54,2037,838,164076,1190,31,9998,339,300,36,26466,13918 +2045,54,2038,959,187929,1363,35,11452,388,343,41,29268,15942 +2045,54,2039,1107,216740,1572,41,13208,447,396,47,32537,18386 +2045,54,2040,1304,255387,1852,48,15563,527,466,56,36829,21664 +2045,54,2041,1562,305914,2218,58,18642,631,559,67,42173,25951 +2045,54,2042,1913,374703,2717,71,22834,773,684,82,49080,31786 +2045,54,2043,2455,480876,3487,91,29304,993,878,105,59309,40792 +2045,54,2044,3322,650623,4717,123,39648,1343,1188,142,74464,55192 +2045,54,2045,6228,1219985,8846,230,74343,2518,2228,266,123930,103491 +2045,55,2015,902,175486,1221,34,11249,357,316,39,110855,14981 +2045,55,2016,144,28010,195,5,1796,57,50,6,15617,2391 +2045,55,2017,164,32015,223,6,2052,65,58,7,16797,2733 +2045,55,2018,236,45908,319,9,2943,94,83,10,22370,3919 +2045,55,2019,268,52179,363,10,3345,106,94,11,23891,4454 +2045,55,2020,308,60025,417,12,3848,122,108,13,25003,5124 +2045,55,2021,347,67608,470,13,4334,138,122,15,26752,5772 +2045,55,2022,385,74859,521,14,4799,152,135,16,27448,6391 +2045,55,2023,438,85225,593,16,5463,174,154,19,29912,7276 +2045,55,2024,483,94053,654,18,6029,192,169,21,32334,8029 +2045,55,2025,531,103419,719,20,6629,211,186,23,34850,8829 +2045,55,2026,587,114204,794,22,7321,233,206,25,27078,9749 +2045,55,2027,654,127297,885,25,8160,259,229,28,29540,10867 +2045,55,2028,734,142959,994,28,9164,291,258,31,32337,12204 +2045,55,2029,822,159993,1113,31,10256,326,288,35,35325,13658 +2045,55,2030,920,179056,1245,35,11478,365,323,39,38638,15286 +2045,55,2031,1039,202251,1407,39,12965,412,364,44,37615,17266 +2045,55,2032,1162,226157,1573,44,14497,461,408,50,40974,19307 +2045,55,2033,1302,253402,1762,49,16244,516,457,56,44653,21633 +2045,55,2034,1461,284352,1978,55,18228,579,512,63,48832,24275 +2045,55,2035,1638,318872,2218,62,20441,650,575,70,53159,27222 +2045,55,2036,1834,357019,2483,69,22886,727,643,79,55705,30478 +2045,55,2037,2069,402835,2802,78,25823,821,726,89,60948,34390 +2045,55,2038,2370,461399,3209,89,29577,940,831,102,67486,39389 +2045,55,2039,2734,532133,3701,103,34111,1084,959,117,75128,45428 +2045,55,2040,3221,627017,4361,121,40194,1277,1130,138,85174,53528 +2045,55,2041,3859,751074,5224,145,48146,1530,1353,165,97713,64118 +2045,55,2042,4726,919963,6399,178,58972,1874,1658,202,113967,78536 +2045,55,2043,6065,1180635,8212,228,75682,2405,2128,260,138095,100789 +2045,55,2044,8206,1597393,11110,308,102397,3254,2879,351,174009,136368 +2045,55,2045,15388,2995275,20833,578,192005,6102,5398,659,291441,255703 +2045,56,2015,1263,248629,2096,66,16003,492,435,57,229349,22106 +2045,56,2016,202,39685,335,10,2554,78,69,9,32410,3529 +2045,56,2017,230,45359,382,12,2920,90,79,10,34794,4033 +2045,56,2018,330,65042,548,17,4187,129,114,15,46381,5783 +2045,56,2019,375,73927,623,20,4758,146,129,17,49425,6573 +2045,56,2020,432,85043,717,22,5474,168,149,20,51715,7561 +2045,56,2021,487,95787,808,25,6165,189,168,22,55212,8517 +2045,56,2022,539,106060,894,28,6827,210,186,24,56658,9430 +2045,56,2023,613,120747,1018,32,7772,239,211,28,61610,10736 +2045,56,2024,677,133254,1123,35,8577,264,233,31,66528,11848 +2045,56,2025,744,146524,1235,39,9431,290,256,34,71629,13028 +2045,56,2026,822,161804,1364,43,10415,320,283,37,57160,14386 +2045,56,2027,916,180354,1521,48,11609,357,316,41,62224,16036 +2045,56,2028,1029,202544,1708,53,13037,401,354,47,67940,18009 +2045,56,2029,1151,226679,1911,60,14591,448,397,52,74032,20155 +2045,56,2030,1288,253687,2139,67,16329,502,444,58,80776,22556 +2045,56,2031,1455,286549,2416,76,18444,567,501,66,79313,25478 +2045,56,2032,1627,320419,2701,85,20624,634,561,74,86067,28490 +2045,56,2033,1823,359021,3027,95,23109,710,628,83,93401,31922 +2045,56,2034,2046,402870,3396,106,25931,797,705,93,101737,35820 +2045,56,2035,2295,451778,3809,119,29079,893,790,104,110227,40169 +2045,56,2036,2569,505825,4264,134,32558,1000,885,116,115268,44974 +2045,56,2037,2899,570738,4812,151,36736,1129,998,131,125392,50746 +2045,56,2038,3320,653711,5511,173,42077,1293,1144,150,137932,58123 +2045,56,2039,3829,753927,6356,199,48528,1491,1319,173,152455,67034 +2045,56,2040,4512,888359,7489,235,57181,1757,1554,204,171433,78987 +2045,56,2041,5405,1064123,8971,281,68494,2104,1862,245,194783,94615 +2045,56,2042,6620,1303403,10989,344,83896,2578,2280,300,224577,115890 +2045,56,2043,8496,1672724,14102,442,107667,3308,2926,385,268209,148727 +2045,56,2044,11495,2263188,19080,597,145674,4476,3959,521,331451,201227 +2045,56,2045,21554,4243711,35778,1120,273153,8392,7424,976,536145,377322 +2050,1,2020,1273,260678,2118,66,13620,540,478,58,221958,22562 +2050,1,2021,253,51808,421,13,2707,107,95,11,41229,4484 +2050,1,2022,283,58007,471,15,3031,120,106,13,42271,5021 +2050,1,2023,321,65812,535,17,3438,136,121,15,45808,5696 +2050,1,2024,373,76280,620,19,3985,158,140,17,49820,6602 +2050,1,2025,433,88684,720,22,4633,184,162,20,54134,7676 +2050,1,2026,493,101002,820,26,5277,209,185,22,58468,8742 +2050,1,2027,565,115775,940,29,6049,240,212,26,63807,10020 +2050,1,2028,646,132308,1075,33,6913,274,242,29,69663,11451 +2050,1,2029,715,146408,1189,37,7649,303,268,32,75434,12672 +2050,1,2030,792,162127,1317,41,8471,336,297,36,81801,14032 +2050,1,2031,887,181598,1475,46,9488,376,333,40,69790,15717 +2050,1,2032,977,200129,1626,51,10456,414,367,44,75089,17321 +2050,1,2033,1082,221604,1800,56,11578,459,406,49,80805,19180 +2050,1,2034,1201,246000,1998,62,12853,509,451,54,87302,21291 +2050,1,2035,1319,270011,2193,68,14107,559,495,60,93384,23370 +2050,1,2036,1450,296974,2412,75,15516,615,544,66,91300,25703 +2050,1,2037,1605,328628,2670,83,17170,681,602,73,97952,28443 +2050,1,2038,1793,367086,2982,93,19179,760,672,81,105862,31771 +2050,1,2039,1996,408779,3321,103,21357,847,749,91,114315,35380 +2050,1,2040,2263,463315,3764,117,24207,959,849,103,125031,40100 +2050,1,2041,2562,524732,4263,133,27416,1087,961,116,133029,45416 +2050,1,2042,2907,595209,4835,150,31098,1233,1090,132,145241,51515 +2050,1,2043,3333,682541,5545,172,35661,1413,1250,151,159651,59074 +2050,1,2044,3862,790780,6424,200,41316,1638,1449,175,176902,68442 +2050,1,2045,4525,926654,7528,234,48415,1919,1698,205,197354,80202 +2050,1,2046,5394,1104645,8973,279,57714,2288,2024,245,222520,95607 +2050,1,2047,6584,1348206,10952,341,70439,2792,2470,299,254755,116687 +2050,1,2048,8379,1715924,13939,434,89651,3553,3143,380,300406,148513 +2050,1,2049,11233,2300290,18686,581,120183,4764,4214,510,365600,199090 +2050,1,2050,20853,4270127,34688,1079,223100,8843,7822,946,578912,369580 +2050,4,2020,6638,1369443,12610,291,83998,2834,2507,292,1062126,112675 +2050,4,2021,1319,272165,2506,58,16694,563,498,58,197557,22393 +2050,4,2022,1477,304735,2806,65,18692,631,558,65,203318,25073 +2050,4,2023,1676,345733,3183,74,21206,715,633,74,220562,28446 +2050,4,2024,1942,400729,3690,85,24580,829,734,86,240240,32971 +2050,4,2025,2258,465891,4290,99,28576,964,853,99,261495,38333 +2050,4,2026,2572,530603,4886,113,32546,1098,971,113,282834,43657 +2050,4,2027,2948,608212,5600,129,37306,1259,1113,130,309091,50042 +2050,4,2028,3369,695065,6400,148,42633,1438,1272,148,337913,57188 +2050,4,2029,3728,769141,7082,164,47177,1592,1408,164,366151,63283 +2050,4,2030,4129,851713,7843,181,52242,1763,1559,182,397312,70077 +2050,4,2031,4624,954001,8784,203,58516,1974,1746,204,351959,78493 +2050,4,2032,5096,1051354,9681,224,64487,2176,1925,224,378954,86503 +2050,4,2033,5643,1164168,10720,248,71407,2409,2131,249,408159,95785 +2050,4,2034,6264,1292334,11900,275,79268,2674,2366,276,441351,106330 +2050,4,2035,6876,1418471,13061,302,87005,2935,2597,303,472496,116709 +2050,4,2036,7562,1560120,14366,332,95693,3229,2856,333,469609,128363 +2050,4,2037,8368,1726410,15897,367,105893,3573,3161,369,504304,142045 +2050,4,2038,9348,1928446,17757,410,118285,3991,3530,412,545598,158668 +2050,4,2039,10410,2147474,19774,457,131720,4444,3931,459,589755,176689 +2050,4,2040,11798,2433972,22412,518,149293,5037,4456,520,645812,200262 +2050,4,2041,13362,2756616,25383,586,169083,5705,5047,589,691398,226808 +2050,4,2042,15157,3126860,28792,665,191793,6471,5724,668,755855,257271 +2050,4,2043,17381,3585646,33016,763,219933,7420,6564,766,832099,295019 +2050,4,2044,20137,4154271,38252,884,254811,8597,7605,887,923534,341804 +2050,4,2045,23597,4868070,44825,1036,298593,10074,8912,1039,1032276,400534 +2050,4,2046,28130,5803126,53435,1234,355947,12009,10624,1239,1166552,477468 +2050,4,2047,34332,7082649,65217,1507,434429,14657,12966,1512,1339242,582744 +2050,4,2048,43696,9014406,83004,1918,552917,18655,16503,1925,1584809,741685 +2050,4,2049,58577,12084299,111272,2571,741216,25008,22123,2580,1938122,994269 +2050,4,2050,108738,22432594,206559,4772,1375950,46424,41067,4790,3096713,1845704 +2050,5,2020,942,179396,1336,36,10102,371,328,40,137210,15133 +2050,5,2021,187,35654,266,7,2008,74,65,8,25469,3008 +2050,5,2022,210,39920,297,8,2248,82,73,9,26029,3367 +2050,5,2023,238,45291,337,9,2550,94,83,10,28192,3820 +2050,5,2024,276,52495,391,11,2956,108,96,12,30637,4428 +2050,5,2025,320,61032,455,12,3437,126,112,14,33261,5148 +2050,5,2026,365,69509,518,14,3914,144,127,16,35897,5863 +2050,5,2027,418,79676,593,16,4487,165,146,18,39146,6721 +2050,5,2028,478,91053,678,18,5127,188,166,20,42709,7681 +2050,5,2029,529,100757,751,20,5674,208,184,23,46231,8499 +2050,5,2030,586,111574,831,22,6283,231,204,25,50115,9412 +2050,5,2031,656,124974,931,25,7037,258,228,28,41209,10542 +2050,5,2032,723,137727,1026,28,7756,285,252,31,44333,11618 +2050,5,2033,801,152506,1136,31,8588,315,279,34,47700,12865 +2050,5,2034,889,169295,1261,34,9533,350,309,38,51527,14281 +2050,5,2035,976,185819,1384,37,10464,384,340,42,55109,15675 +2050,5,2036,1073,204375,1522,41,11509,422,374,46,53033,17240 +2050,5,2037,1188,226159,1685,45,12735,467,413,51,56903,19077 +2050,5,2038,1326,252626,1882,51,14226,522,462,56,61505,21310 +2050,5,2039,1477,281318,2095,56,15841,581,514,63,66423,23730 +2050,5,2040,1674,318849,2375,64,17955,659,583,71,72658,26896 +2050,5,2041,1896,361116,2690,72,20335,746,660,81,76945,30462 +2050,5,2042,2151,409617,3051,82,23066,847,749,92,84034,34553 +2050,5,2043,2466,469718,3499,94,26450,971,859,105,92405,39623 +2050,5,2044,2858,544208,4054,109,30645,1125,995,122,102430,45906 +2050,5,2045,3349,637715,4750,128,35910,1318,1166,142,114324,53794 +2050,5,2046,3992,760207,5663,153,42808,1571,1390,170,128973,64127 +2050,5,2047,4872,927823,6911,186,52247,1917,1696,207,147754,78266 +2050,5,2048,6201,1180883,8796,237,66497,2440,2159,264,174379,99613 +2050,5,2049,8312,1583039,11792,318,89143,3272,2894,354,212471,133536 +2050,5,2050,15430,2938660,21890,590,165479,6073,5372,657,337176,247889 +2050,6,2020,1194,218606,1747,46,16212,453,401,17,100192,20224 +2050,6,2021,237,43446,347,9,3222,90,80,3,18680,4019 +2050,6,2022,266,48645,389,10,3608,101,89,4,19181,4500 +2050,6,2023,301,55190,441,12,4093,114,101,4,20846,5106 +2050,6,2024,349,63969,511,14,4744,133,117,5,22769,5918 +2050,6,2025,406,74371,594,16,5516,154,136,6,24860,6880 +2050,6,2026,462,84701,677,18,6282,176,155,6,26958,7836 +2050,6,2027,530,97090,776,21,7200,201,178,7,29534,8982 +2050,6,2028,606,110954,887,24,8229,230,204,8,32366,10265 +2050,6,2029,670,122779,981,26,9106,255,225,9,35112,11359 +2050,6,2030,742,135960,1087,29,10083,282,249,10,38144,12578 +2050,6,2031,831,152288,1217,32,11294,316,279,12,31001,14089 +2050,6,2032,916,167829,1341,36,12447,348,308,13,33467,15527 +2050,6,2033,1015,185838,1485,39,13782,385,341,14,36161,17193 +2050,6,2034,1126,206297,1649,44,15300,428,378,16,39224,19086 +2050,6,2035,1236,226433,1810,48,16793,470,415,17,42119,20949 +2050,6,2036,1360,249044,1991,53,18470,516,457,19,40518,23040 +2050,6,2037,1505,275590,2203,58,20438,572,506,21,43723,25496 +2050,6,2038,1681,307841,2461,65,22830,638,565,23,47555,28480 +2050,6,2039,1872,342803,2740,73,25423,711,629,26,51665,31715 +2050,6,2040,2121,388537,3106,82,28815,806,713,30,56917,35946 +2050,6,2041,2403,440042,3517,93,32635,913,807,34,60665,40711 +2050,6,2042,2725,499145,3990,106,37018,1035,916,38,66811,46179 +2050,6,2043,3125,572381,4575,121,42449,1187,1050,44,74171,52954 +2050,6,2044,3621,663152,5301,141,49181,1375,1217,51,83078,61352 +2050,6,2045,4243,777097,6211,165,57632,1612,1426,59,93834,71893 +2050,6,2046,5058,926362,7404,196,68701,1921,1699,71,107347,85703 +2050,6,2047,6173,1130613,9037,240,83849,2345,2074,86,125060,104599 +2050,6,2048,7857,1438982,11502,305,106719,2984,2640,110,150734,133128 +2050,6,2049,10532,1929034,15419,409,143062,4001,3539,147,188931,178465 +2050,6,2050,19551,3580939,28622,760,265572,7426,6569,273,315409,331292 +2050,8,2020,272,50762,375,10,3351,100,88,12,30103,4514 +2050,8,2021,54,10088,74,2,666,20,18,2,5604,897 +2050,8,2022,60,11296,83,2,746,22,20,3,5770,1004 +2050,8,2023,69,12815,95,2,846,25,22,3,6264,1140 +2050,8,2024,79,14854,110,3,981,29,26,3,6830,1321 +2050,8,2025,92,17269,127,3,1140,34,30,4,7443,1536 +2050,8,2026,105,19668,145,4,1298,39,34,4,8058,1749 +2050,8,2027,121,22545,166,4,1488,44,39,5,8815,2005 +2050,8,2028,138,25764,190,5,1701,51,45,6,9646,2291 +2050,8,2029,153,28510,210,5,1882,56,50,7,10456,2535 +2050,8,2030,169,31571,233,6,2084,62,55,7,11351,2807 +2050,8,2031,189,35362,261,7,2334,70,62,8,9774,3144 +2050,8,2032,209,38971,288,7,2573,77,68,9,10534,3465 +2050,8,2033,231,43153,318,8,2849,85,75,10,11359,3837 +2050,8,2034,256,47904,353,9,3162,94,83,11,12297,4260 +2050,8,2035,281,52579,388,10,3471,104,92,12,13180,4675 +2050,8,2036,309,57830,427,11,3818,114,101,13,12967,5142 +2050,8,2037,342,63994,472,12,4225,126,111,15,13950,5690 +2050,8,2038,383,71483,527,14,4719,141,124,16,15121,6356 +2050,8,2039,426,79602,587,15,5255,157,139,18,16375,7078 +2050,8,2040,483,90221,666,17,5956,178,157,21,17971,8022 +2050,8,2041,547,102181,754,20,6745,201,178,23,19220,9086 +2050,8,2042,620,115905,855,22,7651,228,202,27,21068,10306 +2050,8,2043,711,132911,981,25,8774,262,231,30,23265,11818 +2050,8,2044,824,153988,1136,29,10166,303,268,35,25909,13693 +2050,8,2045,966,180447,1332,35,11912,355,314,41,29073,16045 +2050,8,2046,1151,215108,1587,41,14200,423,375,49,33006,19127 +2050,8,2047,1405,262536,1937,50,17331,517,457,60,38102,23345 +2050,8,2048,1788,334142,2466,64,22058,658,582,76,45406,29712 +2050,8,2049,2397,447936,3305,86,29571,882,780,102,56060,39830 +2050,8,2050,4450,831522,6136,159,54893,1637,1448,190,91138,73938 +2050,9,2020,3298,623600,6225,167,38343,1302,1152,150,404577,58107 +2050,9,2021,655,123935,1237,33,7620,259,229,30,75298,11548 +2050,9,2022,734,138766,1385,37,8532,290,256,33,76970,12930 +2050,9,2023,833,157435,1572,42,9680,329,291,38,83542,14670 +2050,9,2024,965,182479,1822,49,11220,381,337,44,91067,17003 +2050,9,2025,1122,212152,2118,57,13045,443,392,51,99212,19768 +2050,9,2026,1278,241619,2412,65,14857,504,446,58,107386,22514 +2050,9,2027,1465,276960,2765,74,17030,578,512,66,117439,25807 +2050,9,2028,1674,316510,3160,85,19461,661,585,76,128479,29493 +2050,9,2029,1852,350241,3496,94,21535,731,647,84,139262,32636 +2050,9,2030,2051,387842,3872,104,23847,810,716,93,151165,36139 +2050,9,2031,2297,434421,4337,117,26711,907,802,104,119072,40480 +2050,9,2032,2532,478752,4779,129,29437,1000,884,115,128419,44610 +2050,9,2033,2804,530124,5292,142,32596,1107,979,127,138598,49397 +2050,9,2034,3112,588487,5874,158,36184,1229,1087,141,150166,54835 +2050,9,2035,3416,645926,6448,173,39716,1349,1193,155,161073,60188 +2050,9,2036,3757,710427,7092,191,43682,1483,1312,170,152571,66198 +2050,9,2037,4158,786151,7848,211,48338,1641,1452,189,164437,73254 +2050,9,2038,4644,878149,8766,236,53995,1834,1622,211,178609,81827 +2050,9,2039,5172,977888,9762,263,60128,2042,1806,235,193797,91120 +2050,9,2040,5862,1108349,11064,298,68150,2314,2047,266,213178,103277 +2050,9,2041,6639,1255272,12531,337,77183,2621,2319,301,225814,116967 +2050,9,2042,7530,1423869,14214,382,87550,2973,2630,341,248297,132677 +2050,9,2043,8635,1632784,16299,438,100396,3409,3016,392,275155,152144 +2050,9,2044,10005,1891718,18884,508,116317,3950,3494,454,307598,176271 +2050,9,2045,11724,2216761,22128,595,136303,4628,4094,532,346656,206559 +2050,9,2046,13975,2642551,26379,710,162484,5517,4881,634,395563,246234 +2050,9,2047,17057,3225203,32195,866,198309,6734,5957,774,459435,300526 +2050,9,2048,21709,4104866,40976,1102,252397,8571,7582,984,551681,382493 +2050,9,2049,29102,5502793,54931,1478,338352,11489,10164,1320,688072,512753 +2050,9,2050,54023,10215063,101970,2743,628098,21328,18868,2450,1138888,951845 +2050,10,2020,6012,1151765,11680,317,67494,2414,2135,276,765803,107772 +2050,10,2021,1195,228903,2321,63,13414,480,424,55,142577,21419 +2050,10,2022,1338,256296,2599,71,15019,537,475,61,145956,23982 +2050,10,2023,1518,290778,2949,80,17040,609,539,70,158461,27208 +2050,10,2024,1759,337032,3418,93,19750,706,625,81,172800,31537 +2050,10,2025,2045,391837,3974,108,22962,821,727,94,188335,36665 +2050,10,2026,2329,446261,4526,123,26151,935,827,107,203926,41757 +2050,10,2027,2670,511535,5188,141,29976,1072,948,122,223093,47865 +2050,10,2028,3051,584582,5928,161,34257,1225,1084,140,244147,54700 +2050,10,2029,3376,646883,6560,178,37908,1356,1199,155,264682,60530 +2050,10,2030,3739,716330,7264,197,41977,1501,1328,171,287350,67028 +2050,10,2031,4188,802358,8137,221,47019,1682,1488,192,232146,75078 +2050,10,2032,4615,884238,8967,244,51817,1853,1639,212,250361,82739 +2050,10,2033,5110,979120,9929,270,57377,2052,1815,234,270193,91618 +2050,10,2034,5673,1086913,11023,300,63694,2278,2015,260,292734,101704 +2050,10,2035,6227,1193001,12098,329,69911,2500,2212,285,313982,111631 +2050,10,2036,6849,1312133,13307,362,76892,2750,2433,314,300822,122778 +2050,10,2037,7579,1451992,14725,400,85088,3043,2692,347,324121,135865 +2050,10,2038,8465,1621912,16448,447,95045,3399,3007,388,351938,151765 +2050,10,2039,9427,1806125,18316,498,105840,3785,3349,432,381747,169002 +2050,10,2040,10685,2047081,20760,564,119960,4291,3795,490,419767,191549 +2050,10,2041,12101,2318443,23512,639,135862,4859,4299,555,446061,216940 +2050,10,2042,13726,2629835,26670,725,154110,5512,4876,629,490197,246078 +2050,10,2043,15740,3015695,30583,831,176722,6321,5591,722,542872,282183 +2050,10,2044,18236,3493932,35433,963,204747,7323,6478,836,606460,326933 +2050,10,2045,21370,4094272,41521,1129,239927,8581,7591,980,682927,383108 +2050,10,2046,25474,4880692,49496,1345,286012,10230,9049,1168,778560,456694 +2050,10,2047,31091,5956828,60409,1642,349074,12485,11045,1425,903284,557390 +2050,10,2048,39571,7581527,76886,2090,444283,15890,14057,1814,1083172,709415 +2050,10,2049,53047,10163462,103069,2801,595586,21302,18844,2432,1348535,951010 +2050,10,2050,98474,18866842,191332,5200,1105611,39543,34981,4514,2225053,1765399 +2050,11,2020,2562,550040,6667,248,29131,1143,1012,130,1034481,50698 +2050,11,2021,509,109316,1325,49,5789,227,201,26,191099,10076 +2050,11,2022,570,122397,1484,55,6482,254,225,29,193347,11282 +2050,11,2023,647,138865,1683,63,7354,289,255,33,208620,12799 +2050,11,2024,750,160954,1951,73,8524,335,296,38,225440,14835 +2050,11,2025,872,187127,2268,84,9910,389,344,44,243180,17248 +2050,11,2026,993,213118,2583,96,11287,443,392,50,261043,19643 +2050,11,2027,1138,244290,2961,110,12938,508,449,58,283171,22517 +2050,11,2028,1300,279175,3384,126,14785,580,513,66,307340,25732 +2050,11,2029,1439,308928,3744,139,16361,642,568,73,331836,28474 +2050,11,2030,1593,342092,4146,154,18118,711,629,81,358806,31531 +2050,11,2031,1785,383178,4644,173,20293,797,705,91,269216,35318 +2050,11,2032,1967,422279,5118,191,22364,878,777,100,288520,38922 +2050,11,2033,2178,467592,5667,211,24764,972,860,110,308987,43099 +2050,11,2034,2418,519070,6291,234,27490,1079,955,123,332252,47844 +2050,11,2035,2654,569733,6905,257,30174,1184,1048,135,353754,52513 +2050,11,2036,2919,626627,7595,283,33187,1303,1152,148,323647,57757 +2050,11,2037,3230,693418,8405,313,36724,1442,1275,164,345135,63914 +2050,11,2038,3608,774565,9388,350,41022,1610,1424,183,370515,71393 +2050,11,2039,4017,862538,10454,389,45681,1793,1586,204,397514,79502 +2050,11,2040,4553,977611,11849,441,51775,2032,1798,231,431387,90108 +2050,11,2041,5157,1107202,13420,500,58638,2302,2036,262,445600,102053 +2050,11,2042,5849,1255911,15222,567,66514,2611,2310,297,482085,115760 +2050,11,2043,6708,1440183,17456,650,76273,2994,2648,340,524312,132744 +2050,11,2044,7771,1668574,20224,753,88369,3469,3069,394,574131,153795 +2050,11,2045,9107,1955274,23699,883,103553,4065,3596,462,631702,180221 +2050,11,2046,10856,2330839,28251,1052,123443,4845,4286,551,700397,214838 +2050,11,2047,13250,2844762,34480,1284,150661,5914,5232,672,785308,262207 +2050,11,2048,16863,3620664,43884,1634,191753,7527,6658,856,901042,333723 +2050,11,2049,22606,4853688,58829,2191,257056,10090,8926,1147,1054583,447373 +2050,11,2050,41965,9010118,109207,4067,477184,18731,16570,2129,1545513,830478 +2050,12,2020,7178,1524655,13431,441,73393,3175,2809,340,1302979,132934 +2050,12,2021,1427,303013,2669,88,14586,631,558,68,242373,26420 +2050,12,2022,1597,339274,2989,98,16332,707,625,76,248928,29581 +2050,12,2023,1812,384919,3391,111,18529,802,709,86,270059,33561 +2050,12,2024,2100,446149,3930,129,21476,929,822,99,294180,38899 +2050,12,2025,2442,518697,4569,150,24969,1080,956,116,320242,45225 +2050,12,2026,2781,590742,5204,171,28437,1230,1088,132,346405,51507 +2050,12,2027,3188,677148,5965,196,32596,1410,1247,151,378596,59040 +2050,12,2028,3643,773845,6817,224,37251,1612,1426,173,413934,67471 +2050,12,2029,4031,856315,7544,248,41221,1783,1578,191,448543,74662 +2050,12,2030,4464,948246,8353,274,45646,1975,1747,211,486736,82677 +2050,12,2031,5000,1062129,9357,307,51128,2212,1957,237,421626,92606 +2050,12,2032,5511,1170516,10311,339,56346,2438,2156,261,454049,102057 +2050,12,2033,6102,1296117,11418,375,62392,2699,2388,289,489151,113008 +2050,12,2034,6774,1438808,12675,416,69261,2996,2651,321,529047,125449 +2050,12,2035,7435,1579244,13912,457,76021,3289,2909,352,566501,137693 +2050,12,2036,8177,1736946,15301,502,83612,3617,3200,387,557996,151443 +2050,12,2037,9049,1922085,16932,556,92524,4003,3541,429,599462,167585 +2050,12,2038,10108,2147017,18914,621,103352,4471,3955,479,648835,187197 +2050,12,2039,11256,2390871,21062,691,115091,4979,4405,533,701644,208459 +2050,12,2040,12757,2709839,23872,784,130445,5643,4992,604,768727,236269 +2050,12,2041,14448,3069055,27036,888,147737,6391,5654,684,821041,267589 +2050,12,2042,16389,3481263,30667,1007,167579,7250,6413,776,898171,303529 +2050,12,2043,18794,3992047,35167,1154,192167,8314,7354,890,989513,348064 +2050,12,2044,21774,4625121,40744,1338,222642,9632,8521,1031,1099152,403261 +2050,12,2045,25515,5419818,47745,1567,260897,11287,9985,1209,1229736,472552 +2050,12,2046,30416,6460854,56915,1868,311010,13455,11903,1441,1391266,563318 +2050,12,2047,37123,7885401,69465,2280,379584,16422,14527,1758,1599402,687523 +2050,12,2048,47248,10036112,88411,2902,483114,20901,18489,2238,1895957,875043 +2050,12,2049,63338,13453952,118519,3891,647640,28018,24786,3000,2324139,1173042 +2050,12,2050,117577,24975132,220013,7223,1202241,52012,46011,5569,3729697,2177567 +2050,13,2020,1341,245099,1663,43,14585,505,447,56,182582,20843 +2050,13,2021,266,48711,331,9,2899,100,89,11,33864,4142 +2050,13,2022,298,54541,370,10,3246,112,99,12,34594,4638 +2050,13,2023,339,61878,420,11,3682,127,113,14,37445,5262 +2050,13,2024,392,71722,487,13,4268,148,131,16,40656,6099 +2050,13,2025,456,83384,566,15,4962,172,152,19,44092,7091 +2050,13,2026,520,94966,644,17,5651,196,173,22,47545,8076 +2050,13,2027,596,108856,739,19,6478,224,198,25,51805,9257 +2050,13,2028,681,124401,844,22,7403,256,227,28,56473,10579 +2050,13,2029,753,137659,934,24,8192,284,251,31,61106,11707 +2050,13,2030,834,152437,1034,27,9071,314,278,35,66213,12963 +2050,13,2031,934,170745,1159,30,10160,352,311,39,54436,14520 +2050,13,2032,1029,188169,1277,33,11197,388,343,43,58524,16002 +2050,13,2033,1140,208360,1414,36,12399,429,380,47,62921,17719 +2050,13,2034,1265,231299,1569,40,13764,477,422,52,67917,19670 +2050,13,2035,1389,253875,1723,44,15107,523,463,57,72585,21590 +2050,13,2036,1528,279226,1895,49,16616,575,509,63,69781,23746 +2050,13,2037,1690,308989,2097,54,18387,637,563,70,74794,26276 +2050,13,2038,1888,345148,2342,60,20538,711,629,78,80749,29352 +2050,13,2039,2103,384349,2608,67,22871,792,701,87,87109,32685 +2050,13,2040,2383,435626,2956,76,25922,898,794,99,95158,37046 +2050,13,2041,2699,493373,3348,86,29359,1017,899,112,100613,41957 +2050,13,2042,3062,559637,3797,98,33302,1153,1020,127,109707,47592 +2050,13,2043,3511,641750,4355,112,38188,1322,1170,145,120412,54575 +2050,13,2044,4068,743522,5045,130,44244,1532,1355,168,133204,63229 +2050,13,2045,4767,871275,5912,152,51846,1795,1588,197,148322,74094 +2050,13,2046,5682,1038629,7047,182,61805,2140,1893,235,166856,88325 +2050,13,2047,6935,1267634,8601,222,75432,2612,2310,287,190497,107800 +2050,13,2048,8826,1613376,10947,282,96006,3324,2941,365,223833,137202 +2050,13,2049,11832,2162818,14675,378,128701,4456,3942,490,271064,183927 +2050,13,2050,21965,4014928,27243,702,238913,8272,7318,909,425234,341431 +2050,16,2020,575,106756,787,21,7511,210,185,24,67737,9409 +2050,16,2021,114,21217,157,4,1493,42,37,5,12588,1870 +2050,16,2022,128,23756,175,5,1671,47,41,5,12873,2094 +2050,16,2023,145,26952,199,5,1896,53,47,6,13955,2376 +2050,16,2024,168,31239,230,6,2198,61,54,7,15186,2753 +2050,16,2025,196,36319,268,7,2555,71,63,8,16513,3201 +2050,16,2026,223,41363,305,8,2910,81,72,9,17844,3646 +2050,16,2027,255,47413,350,9,3336,93,82,11,19484,4179 +2050,16,2028,292,54184,400,11,3812,106,94,12,21284,4776 +2050,16,2029,323,59959,442,12,4219,118,104,14,23053,5285 +2050,16,2030,358,66396,490,13,4672,130,115,15,25005,5852 +2050,16,2031,401,74369,549,15,5233,146,129,17,19791,6555 +2050,16,2032,442,81959,605,16,5767,161,142,19,21320,7224 +2050,16,2033,489,90753,669,18,6386,178,158,21,22977,7999 +2050,16,2034,543,100744,743,20,7089,198,175,23,24861,8880 +2050,16,2035,596,110578,816,22,7780,217,192,25,26632,9746 +2050,16,2036,655,121620,897,24,8557,239,211,28,25245,10720 +2050,16,2037,725,134583,993,27,9469,264,234,31,27158,11862 +2050,16,2038,810,150333,1109,30,10578,295,261,34,29438,13250 +2050,16,2039,902,167407,1235,33,11779,329,291,38,31879,14755 +2050,16,2040,1022,189741,1400,37,13350,373,330,43,34986,16724 +2050,16,2041,1158,214893,1585,42,15120,422,373,49,36992,18941 +2050,16,2042,1313,243756,1798,48,17151,479,423,56,40564,21485 +2050,16,2043,1506,279521,2062,55,19668,549,486,64,44813,24637 +2050,16,2044,1745,323848,2389,64,22786,636,563,74,49928,28544 +2050,16,2045,2045,379492,2799,75,26702,745,659,87,56053,33449 +2050,16,2046,2438,452385,3337,89,31831,888,786,104,63674,39873 +2050,16,2047,2975,552131,4073,109,38849,1084,959,127,73560,48665 +2050,16,2048,3787,702721,5184,139,49445,1380,1221,161,87741,61938 +2050,16,2049,5076,942037,6949,186,66283,1850,1637,216,108462,83032 +2050,16,2050,9423,1748742,12900,345,123044,3434,3038,401,176718,154135 +2050,17,2020,1823,370360,3014,90,20371,770,682,82,268777,31598 +2050,17,2021,362,73606,599,18,4048,153,135,16,49991,6280 +2050,17,2022,406,82414,671,20,4533,171,152,18,51215,7031 +2050,17,2023,460,93502,761,23,5143,195,172,21,55559,7977 +2050,17,2024,533,108376,882,26,5961,225,199,24,60516,9246 +2050,17,2025,620,125999,1025,31,6930,262,232,28,65871,10750 +2050,17,2026,706,143499,1168,35,7893,299,264,32,71247,12243 +2050,17,2027,810,164489,1339,40,9047,342,303,36,77861,14034 +2050,17,2028,925,187978,1530,46,10339,391,346,42,85123,16038 +2050,17,2029,1024,208011,1693,51,11441,433,383,46,92236,17747 +2050,17,2030,1134,230342,1874,56,12669,479,424,51,100086,19652 +2050,17,2031,1270,258006,2100,63,14191,537,475,57,82509,22012 +2050,17,2032,1399,284335,2314,69,15639,592,523,63,88900,24259 +2050,17,2033,1549,314845,2562,77,17317,655,579,70,95832,26862 +2050,17,2034,1720,349507,2844,85,19224,727,643,77,103712,29819 +2050,17,2035,1888,383620,3122,94,21100,798,706,85,111120,32729 +2050,17,2036,2076,421928,3433,103,23207,878,776,93,107290,35998 +2050,17,2037,2298,466901,3799,114,25680,971,859,103,115408,39835 +2050,17,2038,2567,521540,4244,127,28686,1085,960,115,125085,44496 +2050,17,2039,2858,580775,4726,142,31944,1208,1069,128,135445,49550 +2050,17,2040,3240,658258,5357,160,36205,1369,1211,146,148628,56161 +2050,17,2041,3669,745516,6067,182,41005,1551,1372,165,158024,63605 +2050,17,2042,4162,845647,6881,206,46512,1759,1556,187,173227,72148 +2050,17,2043,4772,969725,7891,236,53337,2017,1785,215,191298,82734 +2050,17,2044,5529,1123506,9143,274,61795,2337,2068,249,213047,95854 +2050,17,2045,6479,1316551,10713,321,72413,2739,2423,291,239068,112325 +2050,17,2046,7724,1569432,12771,383,86322,3265,2888,347,271424,133900 +2050,17,2047,9427,1915474,15587,467,105355,3985,3525,424,313357,163423 +2050,17,2048,11998,2437912,19839,594,134090,5072,4487,539,373453,207996 +2050,17,2049,16084,3268153,26595,797,179754,6799,6015,723,461129,278830 +2050,17,2050,29857,6066807,49369,1479,333686,12621,11165,1342,749809,517604 +2050,18,2020,313,61351,446,12,3739,127,112,13,36222,5199 +2050,18,2021,62,12193,89,2,743,25,22,3,6739,1033 +2050,18,2022,70,13652,99,3,832,28,25,3,6899,1157 +2050,18,2023,79,15489,113,3,944,32,28,3,7486,1312 +2050,18,2024,92,17953,130,3,1094,37,33,4,8158,1521 +2050,18,2025,106,20872,152,4,1272,43,38,5,8884,1769 +2050,18,2026,121,23771,173,5,1449,49,43,5,9612,2014 +2050,18,2027,139,27248,198,5,1661,56,50,6,10508,2309 +2050,18,2028,159,31139,226,6,1898,64,57,7,11492,2639 +2050,18,2029,176,34457,250,7,2100,71,63,8,12455,2920 +2050,18,2030,195,38157,277,7,2326,79,70,8,13517,3233 +2050,18,2031,218,42739,311,8,2605,88,78,9,10907,3622 +2050,18,2032,240,47101,342,9,2871,97,86,10,11758,3991 +2050,18,2033,266,52155,379,10,3179,108,95,11,12684,4419 +2050,18,2034,295,57897,421,11,3529,119,106,13,13737,4906 +2050,18,2035,324,63548,462,12,3873,131,116,14,14728,5385 +2050,18,2036,356,69893,508,13,4260,144,128,15,14101,5922 +2050,18,2037,394,77343,562,15,4714,160,141,17,15186,6554 +2050,18,2038,441,86394,628,17,5266,178,158,19,16481,7321 +2050,18,2039,491,96207,699,18,5864,198,176,21,17868,8152 +2050,18,2040,556,109042,792,21,6646,225,199,24,19636,9240 +2050,18,2041,630,123497,897,24,7527,255,225,27,20855,10464 +2050,18,2042,714,140083,1018,27,8538,289,256,31,22903,11870 +2050,18,2043,819,160637,1167,31,9791,331,293,35,25346,13612 +2050,18,2044,949,186111,1353,36,11344,384,340,41,28293,15770 +2050,18,2045,1112,218090,1585,42,13293,450,398,48,31831,18480 +2050,18,2046,1326,259980,1889,50,15846,536,474,57,36251,22029 +2050,18,2047,1618,317302,2306,61,19340,655,579,69,42005,26887 +2050,18,2048,2059,403846,2935,77,24615,833,737,88,50292,34220 +2050,18,2049,2761,541376,3934,104,32998,1117,988,118,62483,45873 +2050,18,2050,5125,1004980,7303,193,61255,2073,1834,219,102721,85157 +2050,19,2020,691,140086,1115,31,8226,291,257,31,75548,11951 +2050,19,2021,137,27841,222,6,1635,58,51,6,14096,2375 +2050,19,2022,154,31173,248,7,1831,65,57,7,14480,2659 +2050,19,2023,175,35366,281,8,2077,73,65,8,15746,3017 +2050,19,2024,202,40992,326,9,2407,85,75,9,17213,3497 +2050,19,2025,235,47658,379,10,2799,99,88,10,18811,4066 +2050,19,2026,268,54277,432,12,3187,113,100,12,20414,4630 +2050,19,2027,307,62216,495,14,3653,129,114,14,22381,5308 +2050,19,2028,351,71101,566,16,4175,148,131,16,24545,6066 +2050,19,2029,388,78678,626,17,4620,163,145,17,26636,6712 +2050,19,2030,430,87125,693,19,5116,181,160,19,28947,7433 +2050,19,2031,482,97589,777,21,5731,203,179,21,23685,8325 +2050,19,2032,531,107547,856,24,6315,223,198,24,25585,9175 +2050,19,2033,588,119088,948,26,6993,247,219,26,27666,10159 +2050,19,2034,652,132198,1052,29,7763,275,243,29,30031,11278 +2050,19,2035,716,145101,1155,32,8521,301,267,32,32270,12379 +2050,19,2036,788,159591,1270,35,9371,331,293,35,31177,13615 +2050,19,2037,872,176602,1406,39,10370,367,324,39,33678,15066 +2050,19,2038,974,197269,1570,43,11584,410,362,43,36670,16829 +2050,19,2039,1084,219674,1748,48,12900,456,404,48,39881,18741 +2050,19,2040,1229,248981,1982,55,14621,517,457,54,43990,21241 +2050,19,2041,1392,281985,2244,62,16559,586,518,62,47011,24056 +2050,19,2042,1578,319859,2546,70,18783,664,588,70,51848,27287 +2050,19,2043,1810,366791,2919,80,21539,762,674,80,57653,31291 +2050,19,2044,2097,424957,3382,93,24954,883,781,93,64689,36253 +2050,19,2045,2457,497974,3964,109,29242,1034,915,109,73208,42483 +2050,19,2046,2930,593625,4725,130,34859,1233,1091,130,83942,50643 +2050,19,2047,3575,724513,5767,159,42545,1505,1331,159,98056,61809 +2050,19,2048,4551,922120,7339,202,54149,1915,1694,202,118577,78667 +2050,19,2049,6100,1236153,9839,271,72589,2567,2271,271,149268,105457 +2050,19,2050,11324,2294720,18264,503,134750,4766,4216,502,251040,195764 +2050,20,2020,777,153309,1220,36,8758,316,280,34,126016,12961 +2050,20,2021,154,30469,242,7,1741,63,56,7,23390,2576 +2050,20,2022,173,34115,271,8,1949,70,62,8,23900,2884 +2050,20,2023,196,38705,308,9,2211,80,71,9,25885,3272 +2050,20,2024,227,44862,357,10,2563,92,82,10,28128,3793 +2050,20,2025,264,52156,415,12,2979,108,95,12,30535,4409 +2050,20,2026,301,59401,473,14,3393,122,108,13,32954,5022 +2050,20,2027,345,68089,542,16,3890,140,124,15,35935,5756 +2050,20,2028,394,77812,619,18,4445,160,142,17,39204,6578 +2050,20,2029,436,86105,685,20,4919,177,157,19,42436,7279 +2050,20,2030,483,95349,759,22,5447,197,174,21,46001,8061 +2050,20,2031,541,106800,850,25,6101,220,195,24,37405,9029 +2050,20,2032,596,117699,937,27,6724,243,215,26,40241,9950 +2050,20,2033,660,130329,1037,30,7445,269,238,29,43299,11018 +2050,20,2034,733,144676,1151,34,8265,298,264,32,46775,12231 +2050,20,2035,805,158798,1264,37,9071,327,290,35,50028,13425 +2050,20,2036,885,174655,1390,40,9977,360,318,39,47903,14765 +2050,20,2037,979,193271,1538,45,11041,398,352,43,51405,16339 +2050,20,2038,1094,215889,1718,50,12333,445,394,48,55569,18251 +2050,20,2039,1218,240409,1913,56,13734,496,438,53,60020,20324 +2050,20,2040,1381,272482,2168,63,15566,562,497,61,65665,23036 +2050,20,2041,1564,308602,2456,72,17629,636,563,69,69436,26089 +2050,20,2042,1774,350051,2786,81,19997,722,638,78,75850,29593 +2050,20,2043,2034,401412,3194,93,22931,827,732,89,83426,33935 +2050,20,2044,2357,465070,3701,108,26568,959,848,103,92503,39317 +2050,20,2045,2762,544979,4337,126,31133,1123,994,121,103277,46073 +2050,20,2046,3292,649658,5170,151,37112,1339,1185,144,116554,54922 +2050,20,2047,4018,792900,6310,184,45295,1634,1446,176,133588,67032 +2050,20,2048,5114,1009162,8031,234,57649,2080,1840,224,157753,85314 +2050,20,2049,6856,1352835,10766,314,77282,2788,2467,301,192369,114369 +2050,20,2050,12726,2511323,19985,582,143462,5176,4579,558,305736,212307 +2050,21,2020,436,85294,617,16,5006,176,156,19,50892,7241 +2050,21,2021,87,16951,123,3,995,35,31,4,9471,1439 +2050,21,2022,97,18980,137,4,1114,39,35,4,9717,1611 +2050,21,2023,110,21533,156,4,1264,44,39,5,10546,1828 +2050,21,2024,128,24959,181,5,1465,52,46,5,11495,2119 +2050,21,2025,148,29017,210,5,1703,60,53,6,12521,2463 +2050,21,2026,169,33048,239,6,1940,68,60,7,13551,2806 +2050,21,2027,194,37882,274,7,2223,78,69,8,14819,3216 +2050,21,2028,221,43291,313,8,2541,89,79,9,16210,3675 +2050,21,2029,245,47905,347,9,2812,99,87,10,17570,4067 +2050,21,2030,271,53048,384,10,3113,110,97,12,19071,4503 +2050,21,2031,304,59419,430,11,3487,123,109,13,15928,5044 +2050,21,2032,335,65482,474,12,3843,135,120,14,17169,5559 +2050,21,2033,370,72509,525,14,4256,150,132,16,18516,6155 +2050,21,2034,411,80491,583,15,4724,166,147,18,20048,6833 +2050,21,2035,451,88347,640,17,5185,182,161,19,21489,7500 +2050,21,2036,496,97170,703,18,5703,201,177,21,20881,8249 +2050,21,2037,549,107527,778,20,6311,222,196,23,22473,9128 +2050,21,2038,614,120111,869,23,7049,248,219,26,24371,10197 +2050,21,2039,683,133752,968,25,7850,276,244,29,26405,11355 +2050,21,2040,775,151596,1097,29,8897,313,277,33,28995,12869 +2050,21,2041,877,171692,1243,32,10077,354,314,38,30910,14575 +2050,21,2042,995,194752,1410,37,11430,402,356,43,33909,16533 +2050,21,2043,1141,223327,1617,42,13107,461,408,49,37479,18959 +2050,21,2044,1322,258743,1873,49,15186,534,472,57,41779,21965 +2050,21,2045,1549,303201,2195,57,17795,626,554,66,46932,25740 +2050,21,2046,1847,361440,2616,68,21213,746,660,79,53351,30684 +2050,21,2047,2254,441132,3193,83,25890,911,806,96,61686,37449 +2050,21,2048,2868,561449,4064,106,32952,1159,1025,123,73656,47663 +2050,21,2049,3845,752654,5449,142,44174,1554,1374,164,91180,63895 +2050,21,2050,7138,1397182,10114,263,82001,2884,2551,305,148938,118611 +2050,22,2020,1137,222611,1688,48,11648,461,407,50,157210,19186 +2050,22,2021,226,44242,336,10,2315,92,81,10,29241,3813 +2050,22,2022,253,49537,376,11,2592,102,91,11,30001,4269 +2050,22,2023,287,56201,426,12,2941,116,103,13,32546,4844 +2050,22,2024,333,65141,494,14,3409,135,119,15,35451,5614 +2050,22,2025,387,75734,574,16,3963,157,139,17,38588,6527 +2050,22,2026,441,86253,654,19,4513,178,158,19,41738,7434 +2050,22,2027,505,98869,750,21,5173,205,181,22,45613,8521 +2050,22,2028,577,112987,857,24,5912,234,207,25,49868,9738 +2050,22,2029,639,125028,948,27,6542,259,229,28,54035,10776 +2050,22,2030,707,138451,1050,30,7245,286,253,31,58635,11933 +2050,22,2031,792,155079,1176,33,8115,321,284,35,50172,13366 +2050,22,2032,873,170904,1296,37,8943,354,313,38,54039,14730 +2050,22,2033,967,189243,1435,41,9902,392,346,42,58228,16310 +2050,22,2034,1073,210077,1593,45,10993,435,385,47,62988,18106 +2050,22,2035,1178,230581,1749,50,12065,477,422,52,67460,19873 +2050,22,2036,1296,253607,1923,55,13270,525,464,57,66142,21858 +2050,22,2037,1434,280639,2128,60,14685,581,514,63,71085,24188 +2050,22,2038,1602,313481,2377,68,16403,649,574,70,76972,27018 +2050,22,2039,1784,349085,2647,75,18266,722,639,78,83271,30087 +2050,22,2040,2022,395657,3000,85,20703,819,724,88,91277,34101 +2050,22,2041,2290,448105,3398,97,23448,927,820,100,97407,38621 +2050,22,2042,2597,508290,3855,110,26597,1052,930,114,106626,43809 +2050,22,2043,2978,582869,4420,126,30499,1206,1067,130,117557,50236 +2050,22,2044,3450,675303,5121,146,35336,1397,1236,151,130688,58203 +2050,22,2045,4043,791335,6001,171,41408,1637,1448,177,146350,68203 +2050,22,2046,4820,943333,7154,203,49361,1952,1727,211,165756,81304 +2050,22,2047,5883,1151327,8731,248,60245,2382,2107,257,190807,99231 +2050,22,2048,7487,1465347,11112,316,76676,3032,2682,327,226568,126295 +2050,22,2049,10037,1964378,14897,423,102789,4064,3596,439,278374,169306 +2050,22,2050,18632,3646556,27653,786,190811,7545,6674,815,448602,314289 +2050,23,2020,1056,189965,1676,39,12896,394,348,45,105359,17546 +2050,23,2021,210,37754,333,8,2563,78,69,9,19630,3487 +2050,23,2022,235,42272,373,9,2870,88,78,10,20071,3904 +2050,23,2023,267,47959,423,10,3256,99,88,11,21804,4430 +2050,23,2024,309,55588,490,12,3774,115,102,13,23798,5134 +2050,23,2025,359,64627,570,13,4387,134,119,15,25964,5969 +2050,23,2026,409,73604,649,15,4997,153,135,18,28137,6798 +2050,23,2027,469,84369,744,18,5728,175,155,20,30807,7793 +2050,23,2028,536,96417,851,20,6546,200,177,23,33741,8906 +2050,23,2029,593,106693,941,22,7243,221,196,25,36592,9855 +2050,23,2030,657,118147,1042,25,8021,245,217,28,39741,10913 +2050,23,2031,736,132336,1168,27,8984,274,243,32,30834,12223 +2050,23,2032,811,145841,1287,30,9901,302,268,35,33297,13471 +2050,23,2033,898,161490,1425,34,10963,335,296,38,35992,14916 +2050,23,2034,997,179269,1582,37,12170,372,329,43,39055,16558 +2050,23,2035,1094,196766,1736,41,13358,408,361,47,41953,18175 +2050,23,2036,1203,216415,1910,45,14692,449,397,52,39560,19989 +2050,23,2037,1331,239482,2113,50,16258,497,439,57,42737,22120 +2050,23,2038,1487,267508,2360,56,18161,555,491,64,46539,24709 +2050,23,2039,1656,297891,2628,62,20223,618,546,71,50620,27515 +2050,23,2040,1877,337633,2979,70,22921,700,619,80,55843,31186 +2050,23,2041,2126,382389,3374,79,25960,793,701,91,59248,35320 +2050,23,2042,2411,433749,3827,90,29447,899,796,103,65374,40064 +2050,23,2043,2765,497390,4389,103,33767,1031,912,118,72731,45942 +2050,23,2044,3203,576268,5085,120,39122,1195,1057,137,81652,53228 +2050,23,2045,3754,675284,5958,140,45844,1400,1239,161,92461,62373 +2050,23,2046,4475,804991,7103,167,54650,1669,1477,192,106093,74354 +2050,23,2047,5461,982483,8669,204,66699,2037,1802,234,124034,90748 +2050,23,2048,6951,1250450,11033,260,84891,2593,2294,298,150145,115499 +2050,23,2049,9318,1676297,14791,348,113801,3476,3075,399,189256,154833 +2050,23,2050,17298,3111786,27457,646,211253,6453,5709,741,319008,287423 +2050,24,2020,2082,425568,3467,104,23587,882,780,95,258905,36896 +2050,24,2021,414,84578,689,21,4688,175,155,19,48281,7333 +2050,24,2022,463,94699,771,23,5249,196,174,21,49624,8210 +2050,24,2023,526,107440,875,26,5955,223,197,24,53943,9315 +2050,24,2024,609,124531,1014,31,6902,258,228,28,58930,10797 +2050,24,2025,708,144781,1179,36,8025,300,265,32,64359,12552 +2050,24,2026,807,164890,1343,40,9139,342,302,37,69804,14296 +2050,24,2027,925,189008,1540,46,10476,392,347,42,76490,16387 +2050,24,2028,1057,215999,1760,53,11972,448,396,48,83841,18727 +2050,24,2029,1169,239018,1947,59,13248,495,438,53,90963,20722 +2050,24,2030,1295,264679,2156,65,14670,549,485,59,98828,22947 +2050,24,2031,1450,296466,2415,73,16432,615,544,66,82532,25703 +2050,24,2032,1598,326719,2662,80,18109,677,599,73,89088,28326 +2050,24,2033,1770,361778,2947,89,20052,750,663,80,96252,31365 +2050,24,2034,1965,401606,3272,99,22259,832,736,89,104393,34819 +2050,24,2035,2156,440805,3591,108,24432,914,808,98,112086,38217 +2050,24,2036,2372,484824,3949,119,26872,1005,889,108,109114,42033 +2050,24,2037,2625,536500,4370,132,29736,1112,984,119,117706,46514 +2050,24,2038,2932,599284,4882,147,33216,1242,1099,133,127974,51957 +2050,24,2039,3265,667349,5436,164,36988,1383,1224,148,138986,57858 +2050,24,2040,3700,756382,6162,186,41923,1568,1387,168,153054,65577 +2050,24,2041,4191,856648,6978,210,47480,1776,1571,190,163676,74270 +2050,24,2042,4754,971705,7916,238,53857,2014,1782,216,180154,84245 +2050,24,2043,5451,1114277,9077,273,61759,2310,2043,248,199870,96606 +2050,24,2044,6316,1290982,10517,317,71553,2676,2367,287,223714,111926 +2050,24,2045,7401,1512804,12324,371,83848,3136,2774,336,252474,131157 +2050,24,2046,8822,1803380,14691,442,99953,3738,3307,401,288567,156350 +2050,24,2047,10767,2201006,17930,540,121992,4562,4036,489,335813,190823 +2050,24,2048,13704,2801321,22820,687,155264,5807,5137,623,404207,242870 +2050,24,2049,18371,3755322,30591,921,208140,7784,6886,835,505738,325580 +2050,24,2050,34103,6971169,56788,1710,386379,14450,12783,1549,841712,604387 +2050,25,2020,12901,2500155,26592,772,149413,5169,4573,602,1933408,232479 +2050,25,2021,2564,496885,5285,153,29695,1027,909,120,359413,46203 +2050,25,2022,2871,556347,5917,172,33248,1150,1018,134,366676,51732 +2050,25,2023,3257,631196,6713,195,37721,1305,1155,152,397623,58692 +2050,25,2024,3775,731602,7781,226,43722,1513,1338,176,432856,68029 +2050,25,2025,4389,850567,9047,263,50831,1759,1556,205,470853,79091 +2050,25,2026,4999,968709,10303,299,57891,2003,1772,233,509008,90076 +2050,25,2027,5730,1110397,11810,343,66359,2296,2031,267,555976,103252 +2050,25,2028,6548,1268962,13497,392,75835,2624,2321,306,607518,117996 +2050,25,2029,7246,1404199,14935,433,83917,2903,2568,338,658125,130571 +2050,25,2030,8024,1554950,16539,480,92926,3215,2844,375,713963,144588 +2050,25,2031,8987,1741697,18525,538,104086,3601,3186,420,553275,161953 +2050,25,2032,9904,1919431,20415,592,114708,3969,3511,462,596221,178480 +2050,25,2033,10967,2125394,22606,656,127017,4395,3888,512,642840,197632 +2050,25,2034,12175,2359382,25094,728,141000,4878,4316,568,695824,219389 +2050,25,2035,13363,2589669,27544,799,154762,5355,4737,624,745662,240803 +2050,25,2036,14697,2848272,30294,879,170217,5889,5210,686,699943,264849 +2050,25,2037,16264,3151864,33523,973,188360,6517,5765,759,753469,293079 +2050,25,2038,18167,3520713,37446,1087,210403,7280,6440,848,817322,327377 +2050,25,2039,20231,3920592,41700,1210,234300,8106,7171,944,885710,364560 +2050,25,2040,22930,4443643,47263,1371,265558,9188,8128,1070,972827,413196 +2050,25,2041,25969,5032684,53528,1553,300760,10406,9205,1212,1026017,467968 +2050,25,2042,29457,5708624,60717,1762,341156,11803,10442,1375,1126276,530823 +2050,25,2043,33779,6546228,69626,2020,391211,13535,11974,1577,1245719,608707 +2050,25,2044,39136,7584351,80667,2341,453251,15682,13872,1827,1389710,705238 +2050,25,2045,45861,8887503,94528,2743,531130,18376,16256,2141,1562482,826414 +2050,25,2046,54669,10594622,112685,3270,633149,21906,19379,2552,1778011,985151 +2050,25,2047,66723,12930619,137530,3991,772751,26736,23651,3115,2058324,1202365 +2050,25,2048,84922,16457380,175041,5079,983515,34028,30102,3965,2461505,1530305 +2050,25,2049,113842,22062012,234652,6809,1318457,45617,40353,5315,3053408,2051456 +2050,25,2050,211330,40954616,435595,12640,2447503,84680,74910,9866,5005844,3808206 +2050,26,2020,1506,297754,2207,59,18556,615,544,65,163520,25259 +2050,26,2021,299,59176,439,12,3688,122,108,13,30457,5020 +2050,26,2022,335,66257,491,13,4129,137,121,14,31195,5621 +2050,26,2023,380,75172,557,15,4685,155,137,16,33879,6377 +2050,26,2024,441,87129,646,17,5430,180,159,19,36964,7391 +2050,26,2025,512,101297,751,20,6313,209,185,22,40310,8593 +2050,26,2026,584,115367,855,23,7190,238,211,25,43668,9787 +2050,26,2027,669,132242,980,26,8241,273,242,29,47794,11218 +2050,26,2028,764,151126,1120,30,9418,312,276,33,52328,12820 +2050,26,2029,846,167232,1239,33,10422,345,306,37,56741,14187 +2050,26,2030,937,185185,1372,37,11541,383,338,40,61614,15710 +2050,26,2031,1049,207426,1537,41,12927,429,379,45,49146,17596 +2050,26,2032,1156,228593,1694,45,14246,472,418,50,53038,19392 +2050,26,2033,1280,253122,1876,50,15775,523,463,55,57286,21473 +2050,26,2034,1421,280989,2082,56,17512,581,514,61,62114,23837 +2050,26,2035,1560,308414,2286,61,19221,637,564,67,66673,26163 +2050,26,2036,1716,339211,2514,67,21140,701,620,74,63608,28776 +2050,26,2037,1899,375368,2782,74,23393,776,686,82,68623,31843 +2050,26,2038,2121,419296,3107,83,26131,866,766,92,74619,35570 +2050,26,2039,2362,466918,3460,92,29099,965,853,102,81048,39609 +2050,26,2040,2677,529211,3922,105,32981,1093,967,116,89263,44894 +2050,26,2041,3032,599362,4442,119,37353,1238,1095,131,94895,50845 +2050,26,2042,3439,679864,5038,135,42370,1405,1243,148,104490,57674 +2050,26,2043,3943,779616,5777,154,48587,1611,1425,170,115978,66136 +2050,26,2044,4569,903249,6694,179,56292,1866,1651,197,129876,76624 +2050,26,2045,5354,1058450,7844,210,65964,2187,1934,231,146653,89790 +2050,26,2046,6382,1261756,9350,250,78634,2607,2306,276,167724,107037 +2050,26,2047,7789,1539956,11412,305,95973,3182,2814,336,195331,130637 +2050,26,2048,9913,1959974,14525,388,122148,4049,3582,428,235331,166268 +2050,26,2049,13289,2627457,19471,520,163747,5428,4802,574,294801,222891 +2050,26,2050,24670,4877450,36145,966,303970,10077,8914,1065,491677,413761 +2050,27,2020,510,100446,728,21,6253,205,182,22,57741,8590 +2050,27,2021,101,19963,145,4,1243,41,36,4,10750,1707 +2050,27,2022,113,22352,162,5,1392,46,40,5,10998,1912 +2050,27,2023,129,25359,184,5,1579,52,46,6,11941,2169 +2050,27,2024,149,29393,213,6,1830,60,53,6,13021,2514 +2050,27,2025,173,34172,248,7,2127,70,62,8,14192,2922 +2050,27,2026,198,38919,282,8,2423,79,70,9,15367,3328 +2050,27,2027,226,44611,323,9,2777,91,81,10,16811,3815 +2050,27,2028,259,50982,369,11,3174,104,92,11,18398,4360 +2050,27,2029,286,56415,409,12,3512,115,102,12,19945,4825 +2050,27,2030,317,62472,453,13,3889,128,113,14,21654,5343 +2050,27,2031,355,69974,507,15,4356,143,126,15,17097,5984 +2050,27,2032,391,77115,559,16,4801,158,139,17,18446,6595 +2050,27,2033,434,85390,619,18,5316,174,154,19,19917,7303 +2050,27,2034,481,94790,687,20,5901,194,171,21,21589,8107 +2050,27,2035,528,104042,754,22,6477,213,188,23,23167,8898 +2050,27,2036,581,114432,829,24,7124,234,207,25,21989,9786 +2050,27,2037,643,126629,918,27,7883,259,229,28,23715,10829 +2050,27,2038,718,141448,1025,30,8806,289,256,31,25778,12097 +2050,27,2039,800,157513,1141,33,9806,322,285,35,27989,13471 +2050,27,2040,906,178527,1294,38,11114,365,323,39,30813,15268 +2050,27,2041,1026,202193,1465,43,12588,413,365,45,32692,17292 +2050,27,2042,1164,229349,1662,48,14278,468,414,51,35982,19614 +2050,27,2043,1335,263001,1906,55,16373,537,475,58,39918,22492 +2050,27,2044,1547,304708,2208,64,18970,622,551,67,44678,26059 +2050,27,2045,1813,357064,2588,75,22229,729,645,79,50419,30536 +2050,27,2046,2161,425648,3085,90,26499,869,769,94,57623,36402 +2050,27,2047,2637,519498,3765,109,32342,1061,939,115,67053,44428 +2050,27,2048,3357,661190,4791,139,41163,1351,1195,146,80703,56545 +2050,27,2049,4500,886361,6423,187,55181,1811,1602,196,100962,75802 +2050,27,2050,8353,1645389,11924,346,102435,3361,2973,364,168000,140714 +2050,28,2020,434,83998,602,16,4741,173,153,19,58057,7212 +2050,28,2021,86,16694,120,3,942,34,30,4,10789,1433 +2050,28,2022,97,18692,134,4,1055,38,34,4,11065,1605 +2050,28,2023,110,21206,152,4,1197,44,39,5,11995,1821 +2050,28,2024,127,24580,176,5,1387,51,45,5,13052,2110 +2050,28,2025,148,28577,205,6,1613,59,52,6,14191,2453 +2050,28,2026,168,32546,233,6,1837,67,59,7,15335,2794 +2050,28,2027,193,37306,267,7,2105,77,68,8,16743,3203 +2050,28,2028,220,42634,306,8,2406,88,78,9,18288,3660 +2050,28,2029,244,47177,338,9,2663,97,86,10,19807,4050 +2050,28,2030,270,52242,375,10,2948,107,95,12,21483,4485 +2050,28,2031,302,58516,420,11,3302,120,106,13,18274,5024 +2050,28,2032,333,64488,462,12,3639,133,117,14,19670,5537 +2050,28,2033,369,71407,512,14,4030,147,130,16,21179,6131 +2050,28,2034,410,79269,568,15,4474,163,144,18,22894,6806 +2050,28,2035,450,87006,624,17,4910,179,158,19,24501,7470 +2050,28,2036,494,95694,686,18,5401,197,174,21,23943,8216 +2050,28,2037,547,105894,759,20,5976,218,193,23,25708,9091 +2050,28,2038,611,118286,848,23,6676,243,215,26,27808,10155 +2050,28,2039,681,131721,944,25,7434,271,239,29,30054,11309 +2050,28,2040,771,149294,1070,29,8426,307,271,33,32904,12817 +2050,28,2041,874,169085,1212,33,9543,347,307,37,35039,14517 +2050,28,2042,991,191794,1375,37,10824,394,349,42,38302,16466 +2050,28,2043,1136,219935,1577,42,12412,452,400,49,42161,18882 +2050,28,2044,1317,254813,1827,49,14381,524,463,56,46788,21877 +2050,28,2045,1543,298596,2141,58,16852,614,543,66,52290,25636 +2050,28,2046,1839,355950,2552,69,20089,731,647,79,59082,30560 +2050,28,2047,2245,434432,3115,84,24518,893,790,96,67815,37298 +2050,28,2048,2857,552923,3964,107,31205,1136,1005,122,80229,47471 +2050,28,2049,3830,741223,5314,143,41832,1523,1347,164,98081,63637 +2050,28,2050,7109,1375964,9865,265,77655,2828,2501,304,156611,118132 +2050,29,2020,1451,278990,2023,52,16514,576,510,61,188164,23563 +2050,29,2021,288,55447,402,10,3282,115,101,12,34953,4683 +2050,29,2022,323,62082,450,12,3675,128,113,14,35732,5243 +2050,29,2023,366,70434,511,13,4169,145,129,15,38725,5949 +2050,29,2024,425,81639,592,15,4832,169,149,18,42119,6895 +2050,29,2025,494,94914,688,18,5618,196,173,21,45771,8016 +2050,29,2026,562,108097,784,20,6398,223,197,24,49440,9130 +2050,29,2027,644,123908,898,23,7334,256,226,27,53958,10465 +2050,29,2028,736,141602,1027,27,8382,292,259,31,58915,11959 +2050,29,2029,815,156693,1136,29,9275,324,286,34,63798,13234 +2050,29,2030,902,173515,1258,33,10271,358,317,38,69185,14655 +2050,29,2031,1011,194354,1409,36,11504,401,355,43,56252,16415 +2050,29,2032,1114,214187,1553,40,12678,442,391,47,60560,18090 +2050,29,2033,1233,237171,1720,44,14038,490,433,52,65220,20031 +2050,29,2034,1369,263281,1909,49,15584,544,481,58,70515,22236 +2050,29,2035,1503,288978,2095,54,17105,597,528,64,75482,24406 +2050,29,2036,1653,317836,2304,60,18813,656,581,70,72365,26844 +2050,29,2037,1829,351713,2550,66,20818,726,643,77,77749,29705 +2050,29,2038,2043,392873,2848,74,23255,811,718,86,84162,33181 +2050,29,2039,2275,437494,3172,82,25896,904,799,96,91021,36950 +2050,29,2040,2579,495860,3595,93,29350,1024,906,109,99734,41879 +2050,29,2041,2921,561592,4072,105,33241,1160,1026,124,105668,47431 +2050,29,2042,3313,637019,4619,119,37706,1316,1164,140,115644,53801 +2050,29,2043,3799,730486,5296,137,43238,1509,1335,161,127468,61695 +2050,29,2044,4401,846329,6136,159,50095,1748,1546,186,141668,71479 +2050,29,2045,5158,991749,7190,186,58703,2048,1812,218,158597,83761 +2050,29,2046,6148,1182241,8572,222,69978,2442,2160,260,179561,99849 +2050,29,2047,7504,1442912,10461,271,85407,2980,2636,318,206607,121865 +2050,29,2048,9550,1836461,13315,344,108702,3793,3355,404,245191,155103 +2050,29,2049,12803,2461874,17849,462,145721,5084,4498,542,301026,207924 +2050,29,2050,23767,4570079,33134,857,270508,9438,8349,1006,484432,385979 +2050,30,2020,116,20025,137,4,1392,39,35,5,16871,1743 +2050,30,2021,23,3980,27,1,277,8,7,1,3124,346 +2050,30,2022,26,4456,30,1,310,9,8,1,3182,388 +2050,30,2023,29,5056,35,1,351,10,9,1,3439,440 +2050,30,2024,34,5860,40,1,407,12,10,1,3727,510 +2050,30,2025,40,6813,47,1,473,13,12,2,4033,593 +2050,30,2026,45,7759,53,1,539,15,14,2,4340,675 +2050,30,2027,52,8894,61,2,618,18,15,2,4720,774 +2050,30,2028,59,10164,70,2,706,20,18,2,5136,884 +2050,30,2029,65,11247,77,2,782,22,20,3,5553,979 +2050,30,2030,72,12455,85,2,866,25,22,3,6012,1084 +2050,30,2031,81,13950,95,2,970,27,24,3,4738,1214 +2050,30,2032,89,15374,105,3,1068,30,27,4,5089,1338 +2050,30,2033,99,17024,116,3,1183,34,30,4,5463,1481 +2050,30,2034,110,18898,129,3,1313,37,33,4,5889,1644 +2050,30,2035,120,20742,142,4,1442,41,36,5,6285,1805 +2050,30,2036,132,22814,156,4,1585,45,40,5,5917,1985 +2050,30,2037,147,25245,173,4,1754,50,44,6,6331,2197 +2050,30,2038,164,28200,193,5,1960,56,49,7,6823,2454 +2050,30,2039,182,31402,215,6,2182,62,55,7,7347,2733 +2050,30,2040,207,35592,244,6,2474,70,62,8,8009,3097 +2050,30,2041,234,40310,276,7,2801,79,70,10,8394,3508 +2050,30,2042,265,45724,313,8,3178,90,80,11,9131,3979 +2050,30,2043,304,52433,359,9,3644,103,91,12,9994,4563 +2050,30,2044,353,60748,416,11,4222,120,106,14,11022,5286 +2050,30,2045,413,71186,487,13,4947,140,124,17,12229,6195 +2050,30,2046,493,84859,581,15,5897,167,148,20,13698,7384 +2050,30,2047,601,103570,709,18,7198,204,180,25,15556,9013 +2050,30,2048,765,131818,902,23,9161,260,230,31,18152,11471 +2050,30,2049,1026,176709,1209,31,12281,348,308,42,21771,15377 +2050,30,2050,1905,328033,2245,58,22797,646,571,78,33525,28545 +2050,31,2020,694,140505,1143,33,8603,292,258,31,104741,11949 +2050,31,2021,138,27924,227,7,1710,58,51,6,19463,2375 +2050,31,2022,154,31266,254,7,1914,65,57,7,19954,2659 +2050,31,2023,175,35472,288,8,2172,74,65,8,21631,3017 +2050,31,2024,203,41115,334,10,2518,85,76,9,23535,3496 +2050,31,2025,236,47800,389,11,2927,99,88,11,25586,4065 +2050,31,2026,269,54440,443,13,3333,113,100,12,27646,4630 +2050,31,2027,308,62403,507,15,3821,130,115,14,30182,5307 +2050,31,2028,352,71314,580,17,4367,148,131,16,32965,6065 +2050,31,2029,390,78914,642,19,4832,164,145,17,35703,6711 +2050,31,2030,432,87386,711,21,5351,181,161,19,38724,7431 +2050,31,2031,484,97880,796,23,5993,203,180,22,32054,8324 +2050,31,2032,533,107869,877,25,6605,224,198,24,34509,9173 +2050,31,2033,590,119444,971,28,7314,248,219,26,37163,10158 +2050,31,2034,655,132594,1078,31,8119,275,244,29,40180,11276 +2050,31,2035,719,145535,1184,34,8911,302,267,32,43009,12376 +2050,31,2036,791,160068,1302,38,9801,332,294,35,41549,13612 +2050,31,2037,875,177130,1441,42,10846,368,325,39,44631,15063 +2050,31,2038,978,197858,1609,47,12115,411,364,44,48301,16826 +2050,31,2039,1089,220331,1792,52,13491,458,405,49,52226,18737 +2050,31,2040,1234,249725,2031,59,15291,519,459,55,57210,21237 +2050,31,2041,1397,282829,2300,67,17318,587,520,62,60736,24052 +2050,31,2042,1585,320816,2609,76,19644,666,589,71,66443,27283 +2050,31,2043,1818,367887,2992,87,22526,764,676,81,73201,31286 +2050,31,2044,2106,426228,3466,100,26099,885,783,94,81313,36247 +2050,31,2045,2468,499464,4062,118,30583,1037,918,110,90975,42475 +2050,31,2046,2942,595400,4842,140,36457,1237,1094,131,102927,50634 +2050,31,2047,3590,726679,5910,171,44496,1509,1335,160,118328,61798 +2050,31,2048,4570,924878,7522,218,56632,1921,1699,204,140273,78653 +2050,31,2049,6126,1239847,10083,292,75918,2575,2278,273,171959,105438 +2050,31,2050,11372,2301582,18718,542,140930,4780,4229,507,275977,195729 +2050,32,2020,355,71903,612,12,4750,148,131,15,37957,5902 +2050,32,2021,71,14290,122,2,944,29,26,3,7082,1173 +2050,32,2022,79,16000,136,3,1057,33,29,3,7316,1313 +2050,32,2023,90,18153,154,3,1199,37,33,4,7956,1490 +2050,32,2024,104,21040,179,4,1390,43,38,4,8696,1727 +2050,32,2025,121,24462,208,4,1616,50,45,5,9502,2008 +2050,32,2026,138,27860,237,5,1840,57,51,6,10311,2287 +2050,32,2027,158,31935,272,6,2110,66,58,7,11304,2621 +2050,32,2028,180,36495,310,6,2411,75,66,8,12396,2995 +2050,32,2029,199,40384,344,7,2668,83,73,9,13452,3315 +2050,32,2030,221,44720,380,8,2954,92,81,9,14619,3670 +2050,32,2031,247,50090,426,9,3309,103,91,11,12862,4111 +2050,32,2032,273,55202,470,10,3647,114,100,12,13881,4531 +2050,32,2033,302,61125,520,11,4038,126,111,13,14994,5017 +2050,32,2034,335,67855,577,12,4482,140,123,14,16259,5569 +2050,32,2035,368,74478,634,13,4920,153,136,16,17453,6113 +2050,32,2036,405,81915,697,14,5411,169,149,17,17356,6723 +2050,32,2037,448,90646,771,16,5988,186,165,19,18710,7440 +2050,32,2038,500,101254,861,18,6689,208,184,21,20326,8311 +2050,32,2039,557,112754,959,20,7448,232,205,24,22060,9255 +2050,32,2040,631,127797,1087,22,8442,263,233,27,24271,10489 +2050,32,2041,715,144738,1231,25,9561,298,263,31,26103,11880 +2050,32,2042,811,164177,1397,28,10845,338,299,35,28697,13475 +2050,32,2043,930,188266,1601,33,12437,387,343,40,31795,15453 +2050,32,2044,1077,218122,1855,38,14409,449,397,46,35535,17903 +2050,32,2045,1263,255600,2174,44,16885,526,465,54,40037,20979 +2050,32,2046,1505,304696,2592,53,20128,627,555,64,45672,25009 +2050,32,2047,1837,371878,3163,65,24566,765,677,78,53027,30523 +2050,32,2048,2338,473306,4026,82,31266,974,861,100,63646,38848 +2050,32,2049,3134,634493,5397,110,41914,1305,1155,134,79335,52078 +2050,32,2050,5818,1177835,10019,204,77807,2423,2144,249,131178,96674 +2050,33,2020,2480,476421,3500,97,30394,980,867,107,287939,40694 +2050,33,2021,493,94685,696,19,6041,195,172,21,53553,8088 +2050,33,2022,552,106015,779,22,6763,218,193,24,54721,9055 +2050,33,2023,626,120278,884,24,7673,247,219,27,59362,10274 +2050,33,2024,726,139411,1024,28,8894,287,254,31,64660,11908 +2050,33,2025,844,162081,1191,33,10340,333,295,36,70382,13844 +2050,33,2026,961,184594,1356,38,11776,380,336,41,76127,15767 +2050,33,2027,1101,211593,1555,43,13499,435,385,47,83195,18073 +2050,33,2028,1259,241809,1777,49,15427,497,440,54,90954,20654 +2050,33,2029,1393,267579,1966,54,17071,550,487,60,98556,22855 +2050,33,2030,1542,296306,2177,60,18903,610,539,66,106944,25309 +2050,33,2031,1727,331891,2438,68,21174,683,604,74,83490,28349 +2050,33,2032,1904,365760,2687,74,23334,752,666,82,90017,31242 +2050,33,2033,2108,405008,2976,82,25838,833,737,91,97116,34594 +2050,33,2034,2340,449595,3303,91,28683,925,818,101,105184,38402 +2050,33,2035,2569,493478,3626,100,31482,1015,898,110,112784,42151 +2050,33,2036,2825,542756,3988,110,34626,1116,988,121,106379,46360 +2050,33,2037,3126,600608,4413,122,38317,1235,1093,134,114615,51301 +2050,33,2038,3492,670895,4929,137,42801,1380,1221,150,124448,57305 +2050,33,2039,3889,747093,5489,152,47662,1537,1360,167,134984,63813 +2050,33,2040,4407,846764,6221,172,54021,1742,1541,189,148422,72327 +2050,33,2041,4992,959010,7046,195,61182,1973,1745,214,156979,81915 +2050,33,2042,5662,1087817,7992,221,69399,2238,1980,243,172540,92917 +2050,33,2043,6493,1247425,9165,254,79582,2566,2270,279,191117,106550 +2050,33,2044,7522,1445246,10619,294,92202,2973,2630,323,213547,123447 +2050,33,2045,8815,1693573,12443,345,108045,3484,3082,379,240530,144658 +2050,33,2046,10508,2018872,14833,411,128798,4153,3674,451,274288,172443 +2050,33,2047,12825,2464011,18104,501,157196,5069,4484,551,318332,210465 +2050,33,2048,16323,3136056,23041,638,200070,6451,5707,701,381883,267869 +2050,33,2049,21882,4204058,30888,855,268205,8648,7650,940,475696,359092 +2050,33,2050,40620,7804171,57339,1588,497881,16054,14201,1745,785631,666598 +2050,34,2020,4114,795430,8431,247,46642,1643,1453,192,655172,73929 +2050,34,2021,818,158085,1676,49,9270,326,289,38,121713,14693 +2050,34,2022,916,177003,1876,55,10379,366,323,43,123995,16451 +2050,34,2023,1039,200816,2128,62,11775,415,367,48,134392,18664 +2050,34,2024,1204,232761,2467,72,13648,481,425,56,146190,21633 +2050,34,2025,1400,270610,2868,84,15868,559,494,65,158888,25151 +2050,34,2026,1594,308197,3267,96,18072,636,563,74,171643,28644 +2050,34,2027,1827,353275,3744,110,20715,730,645,85,187352,32834 +2050,34,2028,2088,403723,4279,125,23673,834,738,97,204583,37523 +2050,34,2029,2311,446748,4735,139,26196,923,816,108,221553,41522 +2050,34,2030,2559,494711,5244,154,29009,1022,904,119,240272,45979 +2050,34,2031,2866,554124,5873,172,32492,1144,1012,133,186046,51501 +2050,34,2032,3159,610672,6473,190,35808,1261,1116,147,200379,56757 +2050,34,2033,3498,676199,7167,210,39651,1396,1235,163,215905,62847 +2050,34,2034,3883,750642,7956,233,44016,1550,1371,181,233552,69766 +2050,34,2035,4262,823909,8733,256,48312,1701,1505,198,250125,76575 +2050,34,2036,4687,906184,9605,281,53136,1871,1655,218,234495,84222 +2050,34,2037,5187,1002772,10629,311,58800,2071,1832,242,252202,93199 +2050,34,2038,5794,1120122,11872,348,65681,2313,2046,270,273309,104106 +2050,34,2039,6452,1247343,13221,387,73141,2576,2279,300,295901,115930 +2050,34,2040,7313,1413753,14985,439,82899,2920,2583,341,324645,131397 +2050,34,2041,8282,1601158,16971,497,93888,3307,2925,386,341887,148815 +2050,34,2042,9395,1816212,19250,564,106498,3751,3318,438,374804,168802 +2050,34,2043,10773,2082695,22075,647,122124,4301,3805,502,413933,193569 +2050,34,2044,12481,2412976,25576,749,141491,4983,4408,581,461030,224266 +2050,34,2045,14626,2827583,29970,878,165802,5839,5166,681,517386,262800 +2050,34,2046,17435,3370700,35727,1046,197649,6961,6158,812,587471,313279 +2050,34,2047,21280,4113902,43604,1277,241228,8496,7516,991,678316,382353 +2050,34,2048,27084,5235953,55497,1625,307022,10813,9565,1261,808535,486638 +2050,34,2049,36307,7019075,74397,2179,411580,14495,12823,1691,998568,652365 +2050,34,2050,67398,13029796,138105,4045,764034,26908,23804,3139,1624325,1211013 +2050,35,2020,444,81172,561,14,5363,168,149,18,82492,6797 +2050,35,2021,88,16132,111,3,1066,33,30,4,15261,1351 +2050,35,2022,99,18063,125,3,1193,37,33,4,15607,1512 +2050,35,2023,112,20493,142,4,1354,42,38,5,16859,1716 +2050,35,2024,130,23753,164,4,1569,49,43,5,18248,1989 +2050,35,2025,151,27615,191,5,1824,57,51,6,19721,2312 +2050,35,2026,172,31451,217,6,2078,65,58,7,21203,2634 +2050,35,2027,197,36051,249,6,2382,75,66,8,23037,3019 +2050,35,2028,225,41199,285,7,2722,85,75,9,25042,3450 +2050,35,2029,249,45590,315,8,3012,94,83,10,27058,3817 +2050,35,2030,276,50484,349,9,3335,104,92,11,29280,4227 +2050,35,2031,309,56547,391,10,3736,117,103,13,25034,4735 +2050,35,2032,341,62318,430,11,4117,129,114,14,26846,5218 +2050,35,2033,377,69005,477,12,4559,143,126,16,28772,5778 +2050,35,2034,419,76602,529,13,5061,158,140,17,30962,6414 +2050,35,2035,460,84078,581,15,5555,174,154,19,32991,7040 +2050,35,2036,505,92474,639,16,6109,191,169,21,32133,7743 +2050,35,2037,559,102331,707,18,6760,212,187,23,34284,8569 +2050,35,2038,625,114307,789,20,7552,236,209,26,36825,9571 +2050,35,2039,696,127289,879,22,8409,263,233,29,39530,10658 +2050,35,2040,789,144271,996,25,9531,298,264,32,42927,12080 +2050,35,2041,893,163395,1128,29,10795,338,299,37,45313,13682 +2050,35,2042,1013,185341,1280,33,12244,383,339,42,49046,15519 +2050,35,2043,1162,212535,1468,37,14041,440,389,48,53370,17796 +2050,35,2044,1346,246240,1701,43,16268,509,451,55,58477,20619 +2050,35,2045,1577,288550,1993,51,19063,597,528,65,64386,24161 +2050,35,2046,1880,343974,2376,60,22724,712,630,77,71450,28802 +2050,35,2047,2295,419817,2899,74,27735,869,768,94,80201,35153 +2050,35,2048,2921,534319,3690,94,35299,1106,978,120,92157,44741 +2050,35,2049,3915,716284,4947,126,47321,1482,1311,161,108098,59977 +2050,35,2050,7268,1329669,9183,234,87843,2751,2434,299,159147,111338 +2050,36,2020,1134,220188,1795,55,13580,459,406,50,211934,18782 +2050,36,2021,225,43760,357,11,2699,91,81,10,39251,3733 +2050,36,2022,252,48997,400,12,3022,102,90,11,39843,4180 +2050,36,2023,286,55589,453,14,3429,116,103,13,43078,4742 +2050,36,2024,332,64432,525,16,3974,134,119,15,46693,5496 +2050,36,2025,386,74909,611,19,4620,156,138,17,50543,6390 +2050,36,2026,439,85314,696,21,5262,178,157,19,54415,7277 +2050,36,2027,504,97792,797,24,6032,204,180,22,59198,8342 +2050,36,2028,576,111757,911,28,6893,233,206,25,64433,9533 +2050,36,2029,637,123667,1008,31,7627,258,228,28,69666,10549 +2050,36,2030,705,136944,1117,34,8446,286,253,31,75433,11682 +2050,36,2031,790,153390,1251,38,9461,320,283,35,56411,13084 +2050,36,2032,871,169043,1378,42,10426,352,312,38,60616,14420 +2050,36,2033,964,187182,1526,47,11545,390,345,42,65127,15967 +2050,36,2034,1070,207790,1694,52,12816,433,383,47,70254,17725 +2050,36,2035,1175,228071,1860,57,14067,476,421,51,75036,19455 +2050,36,2036,1292,250846,2045,63,15471,523,463,57,68892,21398 +2050,36,2037,1430,277583,2263,69,17120,579,512,63,73824,23678 +2050,36,2038,1597,310068,2528,78,19124,646,572,70,79681,26449 +2050,36,2039,1779,345284,2815,86,21296,720,637,78,85935,29453 +2050,36,2040,2016,391349,3191,98,24137,816,722,88,93849,33383 +2050,36,2041,2283,443226,3614,111,27337,924,817,100,97717,37808 +2050,36,2042,2590,502756,4099,126,31008,1048,927,113,106553,42886 +2050,36,2043,2970,576523,4701,144,35558,1202,1063,130,116956,49178 +2050,36,2044,3441,667950,5446,167,41197,1393,1232,150,129386,56977 +2050,36,2045,4032,782719,6382,196,48276,1632,1444,176,144079,66767 +2050,36,2046,4806,933063,7608,233,57548,1945,1721,210,162092,79592 +2050,36,2047,5866,1138792,9285,285,70237,2374,2100,257,185073,97141 +2050,36,2048,7466,1449393,11818,362,89394,3022,2673,326,217482,123636 +2050,36,2049,10009,1942990,15843,486,119837,4051,3584,438,263409,165740 +2050,36,2050,18579,3606854,29409,902,222459,7520,6652,812,413336,307671 +2050,37,2020,178,33920,240,6,1952,70,62,8,23821,2903 +2050,37,2021,35,6741,48,1,388,14,12,1,4424,577 +2050,37,2022,40,7548,53,1,434,16,14,2,4525,646 +2050,37,2023,45,8564,61,2,493,18,16,2,4903,733 +2050,37,2024,52,9926,70,2,571,20,18,2,5332,850 +2050,37,2025,60,11540,82,2,664,24,21,3,5792,988 +2050,37,2026,69,13143,93,3,756,27,24,3,6255,1125 +2050,37,2027,79,15065,107,3,867,31,27,3,6825,1289 +2050,37,2028,90,17216,122,3,991,35,31,4,7450,1474 +2050,37,2029,100,19051,135,4,1096,39,35,4,8067,1631 +2050,37,2030,110,21096,150,4,1214,43,38,5,8747,1806 +2050,37,2031,124,23630,167,5,1360,49,43,5,7233,2023 +2050,37,2032,136,26041,185,5,1499,54,47,6,7784,2229 +2050,37,2033,151,28835,204,6,1659,59,52,6,8379,2468 +2050,37,2034,168,32010,227,6,1842,66,58,7,9055,2740 +2050,37,2035,184,35134,249,7,2022,72,64,8,9689,3007 +2050,37,2036,202,38643,274,7,2224,79,70,9,9352,3308 +2050,37,2037,224,42762,303,8,2461,88,78,10,10040,3660 +2050,37,2038,250,47766,339,9,2749,98,87,11,10859,4089 +2050,37,2039,279,53191,377,10,3061,109,97,12,11735,4553 +2050,37,2040,316,60287,427,12,3469,124,110,13,12846,5160 +2050,37,2041,358,68279,484,13,3929,140,124,15,13626,5844 +2050,37,2042,406,77450,549,15,4457,159,141,17,14894,6629 +2050,37,2043,465,88813,629,17,5111,183,161,20,16394,7602 +2050,37,2044,539,102898,729,20,5921,211,187,23,18192,8808 +2050,37,2045,631,120578,855,23,6939,248,219,27,20330,10321 +2050,37,2046,753,143738,1019,27,8271,295,261,32,22969,12303 +2050,37,2047,919,175431,1243,34,10095,361,319,39,26361,15016 +2050,37,2048,1169,223279,1583,43,12849,459,406,50,31182,19112 +2050,37,2049,1567,299318,2121,57,17224,615,544,67,38114,25620 +2050,37,2050,2910,555636,3938,106,31974,1142,1010,123,60839,47560 +2050,38,2020,117,22889,161,5,1529,46,41,5,16262,1939 +2050,38,2021,23,4549,32,1,304,9,8,1,3018,385 +2050,38,2022,26,5093,36,1,340,10,9,1,3073,432 +2050,38,2023,29,5779,41,1,386,12,10,1,3328,490 +2050,38,2024,34,6698,47,1,447,14,12,1,3616,567 +2050,38,2025,40,7787,55,2,520,16,14,2,3924,660 +2050,38,2026,45,8868,62,2,592,18,16,2,4234,751 +2050,38,2027,52,10166,72,2,679,21,18,2,4616,861 +2050,38,2028,59,11617,82,2,776,24,21,3,5034,984 +2050,38,2029,66,12855,91,3,859,26,23,3,5449,1089 +2050,38,2030,73,14235,100,3,951,29,26,3,5906,1206 +2050,38,2031,81,15945,112,3,1065,32,29,3,4506,1351 +2050,38,2032,90,17572,124,4,1174,36,32,4,4850,1489 +2050,38,2033,99,19458,137,4,1300,39,35,4,5222,1649 +2050,38,2034,110,21600,152,4,1443,44,39,5,5644,1830 +2050,38,2035,121,23708,167,5,1584,48,43,5,6039,2009 +2050,38,2036,133,26076,184,5,1742,53,47,6,5618,2209 +2050,38,2037,147,28855,203,6,1928,59,52,6,6036,2445 +2050,38,2038,164,32232,227,7,2153,65,58,7,6535,2731 +2050,38,2039,183,35893,253,7,2398,73,64,8,7068,3041 +2050,38,2040,207,40681,287,8,2718,83,73,9,7745,3447 +2050,38,2041,235,46074,325,10,3078,93,83,10,8128,3903 +2050,38,2042,266,52262,368,11,3491,106,94,11,8899,4428 +2050,38,2043,306,59930,422,12,4004,122,108,13,9814,5077 +2050,38,2044,354,69434,489,14,4639,141,125,15,10913,5883 +2050,38,2045,415,81364,573,17,5436,165,146,18,12225,6893 +2050,38,2046,495,96993,684,20,6480,197,174,21,13851,8217 +2050,38,2047,604,118378,834,25,7908,240,212,26,15951,10029 +2050,38,2048,768,150666,1062,31,10065,306,270,33,18950,12765 +2050,38,2049,1030,201976,1423,42,13493,410,363,44,23300,17112 +2050,38,2050,1912,374936,2642,78,25048,761,673,82,37599,31765 +2050,39,2020,1837,355509,2627,70,21447,736,651,79,211689,30089 +2050,39,2021,365,70654,522,14,4262,146,129,16,39390,5980 +2050,39,2022,409,79109,584,16,4772,164,145,18,40315,6696 +2050,39,2023,464,89753,663,18,5415,186,164,20,43750,7596 +2050,39,2024,538,104030,769,21,6276,215,190,23,47678,8805 +2050,39,2025,625,120946,894,24,7296,250,221,27,51927,10236 +2050,39,2026,712,137745,1018,27,8310,285,252,31,56192,11658 +2050,39,2027,816,157893,1167,31,9525,327,289,35,61437,13363 +2050,39,2028,932,180440,1333,36,10886,373,330,40,67197,15272 +2050,39,2029,1032,199669,1475,40,12046,413,366,44,72829,16899 +2050,39,2030,1143,221105,1634,44,13339,458,405,49,79045,18713 +2050,39,2031,1280,247660,1830,49,14941,513,453,55,63409,20961 +2050,39,2032,1410,272933,2016,54,16465,565,500,60,68370,23100 +2050,39,2033,1562,302220,2233,60,18232,625,553,67,73767,25579 +2050,39,2034,1734,335491,2479,66,20239,694,614,74,79901,28395 +2050,39,2035,1903,368237,2721,73,22215,762,674,82,85680,31166 +2050,39,2036,2093,405009,2992,80,24433,838,741,90,81838,34278 +2050,39,2037,2316,448178,3311,89,27038,927,820,99,88159,37932 +2050,39,2038,2587,500626,3699,99,30202,1036,916,111,95706,42371 +2050,39,2039,2881,557487,4119,110,33632,1154,1021,124,103791,47183 +2050,39,2040,3265,631861,4668,125,38119,1308,1157,140,114102,53478 +2050,39,2041,3698,715621,5287,142,43172,1481,1310,159,121132,60567 +2050,39,2042,4195,811736,5997,161,48970,1680,1486,180,133091,68702 +2050,39,2043,4810,930837,6877,184,56155,1926,1704,206,147359,78782 +2050,39,2044,5573,1078454,7968,213,65061,2232,1974,239,164578,91276 +2050,39,2045,6530,1263757,9337,250,76239,2615,2313,280,185278,106959 +2050,39,2046,7785,1506497,11130,298,90883,3118,2758,334,211154,127504 +2050,39,2047,9501,1838661,13584,364,110922,3805,3366,407,244885,155617 +2050,39,2048,12092,2340151,17289,463,141176,4843,4284,519,293511,198061 +2050,39,2049,16211,3137098,23177,621,189254,6492,5743,695,365182,265511 +2050,39,2050,30092,5823526,43025,1153,351319,12051,10661,1291,601860,492880 +2050,40,2020,1568,316688,2504,69,17577,657,581,69,206651,27022 +2050,40,2021,312,62939,498,14,3493,131,116,14,38474,5370 +2050,40,2022,349,70471,557,15,3911,146,129,15,39505,6013 +2050,40,2023,396,79952,632,18,4437,166,147,17,42889,6822 +2050,40,2024,459,92670,733,20,5143,192,170,20,46769,7907 +2050,40,2025,533,107739,852,24,5980,224,198,24,50971,9193 +2050,40,2026,607,122704,970,27,6810,255,225,27,55189,10470 +2050,40,2027,696,140651,1112,31,7806,292,258,31,60374,12002 +2050,40,2028,796,160736,1271,35,8921,334,295,35,66070,13715 +2050,40,2029,880,177866,1406,39,9872,369,327,39,71626,15177 +2050,40,2030,975,196962,1557,43,10932,409,362,43,77759,16806 +2050,40,2031,1092,220616,1744,48,12245,458,405,48,65737,18825 +2050,40,2032,1204,243130,1922,53,13494,505,446,53,70865,20746 +2050,40,2033,1333,269218,2129,59,14942,559,494,59,76439,22972 +2050,40,2034,1479,298857,2363,66,16587,620,549,65,82774,25501 +2050,40,2035,1624,328027,2594,72,18206,681,602,72,88740,27990 +2050,40,2036,1786,360784,2853,79,20024,749,662,79,86677,30785 +2050,40,2037,1976,399239,3157,88,22158,829,733,87,93294,34066 +2050,40,2038,2208,445960,3526,98,24751,926,819,98,101188,38053 +2050,40,2039,2458,496610,3927,109,27563,1031,912,109,109642,42375 +2050,40,2040,2786,562865,4450,124,31240,1168,1033,123,120409,48028 +2050,40,2041,3156,637477,5040,140,35381,1323,1170,140,128573,54395 +2050,40,2042,3579,723099,5717,159,40133,1501,1328,158,141060,61700 +2050,40,2043,4105,829194,6556,182,46022,1721,1522,181,155924,70753 +2050,40,2044,4756,960690,7596,211,53320,1994,1764,210,173830,81974 +2050,40,2045,5573,1125759,8901,247,62481,2336,2067,246,195291,96059 +2050,40,2046,6643,1341994,10611,294,74483,2785,2464,294,222030,114510 +2050,40,2047,8108,1637888,12950,359,90905,3399,3007,358,256759,139758 +2050,40,2048,10319,2084615,16483,457,115699,4326,3827,456,306640,177876 +2050,40,2049,13834,2794541,22096,613,155101,5800,5130,612,379693,238452 +2050,40,2050,25680,5187622,41018,1138,287921,10766,9524,1135,620495,442650 +2050,41,2020,2100,409408,3318,98,27609,809,715,94,268245,36463 +2050,41,2021,417,81366,659,19,5487,161,142,19,49921,7247 +2050,41,2022,467,91103,738,22,6144,180,159,21,51185,8114 +2050,41,2023,530,103360,838,25,6970,204,181,24,55552,9206 +2050,41,2024,614,119802,971,29,8079,237,209,27,60548,10670 +2050,41,2025,714,139283,1129,33,9393,275,243,32,65955,12405 +2050,41,2026,814,158629,1286,38,10698,313,277,36,71382,14128 +2050,41,2027,933,181831,1474,43,12262,359,318,42,78056,16194 +2050,41,2028,1066,207797,1684,50,14013,410,363,48,85386,18507 +2050,41,2029,1179,229942,1864,55,15507,454,402,53,92548,20479 +2050,41,2030,1306,254627,2064,61,17171,503,445,58,100453,22678 +2050,41,2031,1463,285208,2311,68,19234,563,498,65,81432,25401 +2050,41,2032,1612,314312,2547,75,21196,621,549,72,87795,27994 +2050,41,2033,1785,348040,2821,83,23471,688,608,80,94715,30997 +2050,41,2034,1982,386356,3131,92,26055,763,675,88,102580,34410 +2050,41,2035,2175,424066,3437,101,28598,838,741,97,109988,37769 +2050,41,2036,2392,466413,3780,111,31454,921,815,107,105514,41540 +2050,41,2037,2647,516127,4183,123,34806,1020,902,118,113632,45968 +2050,41,2038,2957,576527,4672,138,38879,1139,1007,132,123319,51347 +2050,41,2039,3293,642008,5203,153,43295,1268,1122,147,133698,57179 +2050,41,2040,3732,727660,5897,174,49071,1437,1272,166,146926,64807 +2050,41,2041,4227,824116,6679,197,55576,1628,1440,188,156121,73398 +2050,41,2042,4795,934805,7576,223,63041,1847,1634,214,171450,83256 +2050,41,2043,5498,1071964,8688,256,72290,2118,1873,245,189724,95472 +2050,41,2044,6370,1241960,10066,297,83754,2453,2170,284,211767,110612 +2050,41,2045,7465,1455358,11795,348,98145,2875,2543,333,238238,129618 +2050,41,2046,8898,1734900,14061,415,116997,3427,3032,397,271292,154515 +2050,41,2047,10860,2117425,17161,506,142793,4183,3700,484,314328,188584 +2050,41,2048,13823,2694944,21841,644,181740,5324,4709,616,376295,240019 +2050,41,2049,18530,3612722,29280,863,243632,7136,6313,826,467437,321759 +2050,41,2050,34398,6706438,54353,1603,452265,13248,11719,1534,768237,597293 +2050,42,2020,971,195335,1533,46,11648,403,357,43,126707,16834 +2050,42,2021,193,38821,305,9,2315,80,71,9,23581,3346 +2050,42,2022,216,43467,341,10,2592,90,79,10,24149,3746 +2050,42,2023,245,49315,387,11,2941,102,90,11,26211,4250 +2050,42,2024,284,57159,449,13,3408,118,104,13,28570,4926 +2050,42,2025,330,66454,522,15,3963,137,121,15,31123,5727 +2050,42,2026,376,75684,594,18,4513,156,138,17,33686,6522 +2050,42,2027,431,86754,681,20,5173,179,158,19,36837,7476 +2050,42,2028,493,99143,778,23,5912,205,181,22,40298,8544 +2050,42,2029,545,109709,861,26,6542,226,200,24,43679,9454 +2050,42,2030,604,121487,954,28,7244,251,222,27,47412,10470 +2050,42,2031,676,136077,1068,32,8114,281,248,30,38262,11727 +2050,42,2032,746,149964,1177,35,8942,310,274,33,41256,12924 +2050,42,2033,825,166055,1304,39,9902,343,303,37,44514,14310 +2050,42,2034,916,184336,1447,43,10992,380,337,41,48216,15886 +2050,42,2035,1006,202329,1588,47,12065,418,369,45,51705,17436 +2050,42,2036,1106,222533,1747,52,13269,459,406,49,49513,19177 +2050,42,2037,1224,246252,1933,57,14684,508,450,55,53335,21222 +2050,42,2038,1367,275070,2159,64,16402,568,502,61,57896,23705 +2050,42,2039,1523,306312,2405,71,18265,632,559,68,62784,26397 +2050,42,2040,1726,347177,2725,81,20702,717,634,77,69016,29919 +2050,42,2041,1955,393199,3087,92,23446,812,718,87,73316,33885 +2050,42,2042,2217,446011,3501,104,26595,921,814,99,80544,38436 +2050,42,2043,2543,511451,4015,119,30497,1056,934,113,89166,44076 +2050,42,2044,2946,592558,4652,138,35334,1223,1082,131,99570,51065 +2050,42,2045,3452,694374,5451,162,41405,1433,1268,154,112073,59840 +2050,42,2046,4115,827749,6498,193,49358,1709,1511,183,127699,71334 +2050,42,2047,5022,1010258,7931,236,60241,2085,1845,224,148061,87062 +2050,42,2048,6392,1285800,10094,300,76671,2654,2348,285,177407,110808 +2050,42,2049,8569,1723687,13531,402,102782,3558,3147,382,220636,148544 +2050,42,2050,15907,3199750,25119,746,190798,6604,5842,709,363371,275748 +2050,44,2020,1305,256110,2765,78,15038,536,474,62,149005,24039 +2050,44,2021,259,50900,549,15,2989,106,94,12,27822,4778 +2050,44,2022,290,56991,615,17,3346,119,105,14,28546,5349 +2050,44,2023,329,64658,698,20,3796,135,120,16,31062,6069 +2050,44,2024,382,74944,809,23,4400,157,139,18,33984,7034 +2050,44,2025,444,87130,941,26,5116,182,161,21,37176,8178 +2050,44,2026,506,99232,1071,30,5826,208,184,24,40376,9314 +2050,44,2027,579,113747,1228,35,6679,238,210,27,44301,10676 +2050,44,2028,662,129990,1403,40,7632,272,240,31,48620,12201 +2050,44,2029,733,143843,1553,44,8446,301,266,35,52783,13501 +2050,44,2030,811,159285,1720,48,9352,333,295,38,57382,14951 +2050,44,2031,909,178415,1926,54,10476,373,330,43,45827,16746 +2050,44,2032,1002,196622,2123,60,11545,411,364,47,49539,18455 +2050,44,2033,1109,217721,2350,66,12784,455,403,52,53617,20436 +2050,44,2034,1231,241690,2609,73,14191,505,447,58,58250,22685 +2050,44,2035,1351,265280,2864,81,15576,555,491,64,62646,24900 +2050,44,2036,1486,291770,3150,89,17131,610,540,70,59919,27386 +2050,44,2037,1645,322870,3485,98,18957,675,597,78,64812,30305 +2050,44,2038,1837,360654,3893,110,21176,754,667,87,70672,33852 +2050,44,2039,2046,401616,4336,122,23581,840,743,97,76965,37696 +2050,44,2040,2319,455196,4914,138,26727,952,842,110,85032,42725 +2050,44,2041,2626,515537,5565,157,30270,1078,954,124,90714,48389 +2050,44,2042,2979,584779,6313,178,34335,1223,1082,141,100243,54888 +2050,44,2043,3416,670579,7239,204,39373,1402,1241,162,111711,62942 +2050,44,2044,3958,776923,8387,236,45617,1625,1437,187,125639,72923 +2050,44,2045,4638,910417,9828,277,53455,1904,1684,219,142558,85453 +2050,44,2046,5529,1085287,11716,330,63723,2270,2008,262,163957,101867 +2050,44,2047,6748,1324581,14299,403,77773,2770,2451,319,192206,124327 +2050,44,2048,8588,1685856,18199,512,98985,3526,3119,406,233440,158237 +2050,44,2049,11513,2259980,24397,687,132695,4727,4181,545,295514,212125 +2050,44,2050,21372,4195292,45290,1275,246328,8774,7762,1011,501730,393777 +2050,45,2020,2533,519027,4295,132,27516,1079,954,116,369760,45035 +2050,45,2021,503,103152,854,26,5469,214,190,23,68846,8950 +2050,45,2022,564,115496,956,29,6123,240,212,26,70727,10021 +2050,45,2023,639,131035,1084,33,6947,272,241,29,76788,11370 +2050,45,2024,741,151879,1257,39,8052,316,279,34,83738,13178 +2050,45,2025,862,176576,1461,45,9361,367,325,39,91269,15321 +2050,45,2026,981,201102,1664,51,10661,418,370,45,98826,17449 +2050,45,2027,1125,230516,1908,59,12221,479,424,51,108117,20001 +2050,45,2028,1286,263434,2180,67,13966,548,484,59,118323,22858 +2050,45,2029,1423,291508,2412,74,15454,606,536,65,128277,25294 +2050,45,2030,1575,322804,2671,82,17113,671,594,72,139264,28009 +2050,45,2031,1764,361572,2992,92,19169,752,665,81,118444,31373 +2050,45,2032,1945,398469,3298,102,21125,828,733,89,127673,34574 +2050,45,2033,2153,441227,3651,113,23392,917,811,98,137703,38284 +2050,45,2034,2390,489802,4053,125,25967,1018,901,109,149102,42499 +2050,45,2035,2624,537609,4449,137,28501,1117,988,120,159832,46647 +2050,45,2036,2886,591295,4893,151,31347,1229,1087,132,156470,51305 +2050,45,2037,3193,654319,5415,167,34689,1360,1203,146,168382,56774 +2050,45,2038,3567,730892,6049,187,38748,1519,1344,163,182588,63418 +2050,45,2039,3972,813905,6736,208,43149,1692,1497,182,197800,70621 +2050,45,2040,4502,922490,7634,235,48906,1917,1696,206,217170,80043 +2050,45,2041,5099,1044773,8646,267,55389,2172,1921,233,231983,90653 +2050,45,2042,5783,1185099,9807,302,62828,2463,2179,264,254428,102829 +2050,45,2043,6632,1358980,11246,347,72046,2825,2499,303,281129,117916 +2050,45,2044,7684,1574492,13030,402,83472,3273,2895,351,313283,136616 +2050,45,2045,9004,1845027,15269,471,97814,3835,3392,412,351794,160090 +2050,45,2046,10733,2199417,18202,561,116602,4571,4044,491,399737,190839 +2050,45,2047,13100,2684364,22215,685,142311,5579,4936,599,461951,232917 +2050,45,2048,16673,3416511,28274,872,181126,7101,6282,762,551231,296444 +2050,45,2049,22351,4580019,37903,1169,242810,9520,8421,1022,681784,397400 +2050,45,2050,41491,8502073,70360,2170,450738,17672,15633,1897,1111930,737709 +2050,46,2020,384,77315,586,18,4731,159,140,17,43171,6649 +2050,46,2021,76,15366,116,3,940,32,28,3,8049,1321 +2050,46,2022,85,17205,130,4,1053,35,31,4,8260,1479 +2050,46,2023,97,19519,148,4,1194,40,35,4,8978,1679 +2050,46,2024,112,22624,171,5,1384,46,41,5,9806,1946 +2050,46,2025,131,26303,199,6,1609,54,48,6,10707,2262 +2050,46,2026,149,29957,227,7,1833,61,54,7,11611,2576 +2050,46,2027,171,34338,260,8,2101,70,62,8,12720,2953 +2050,46,2028,195,39242,297,9,2401,81,71,9,13940,3375 +2050,46,2029,216,43424,329,10,2657,89,79,10,15123,3734 +2050,46,2030,239,48086,364,11,2942,99,87,11,16429,4135 +2050,46,2031,267,53861,408,12,3296,111,98,12,13316,4632 +2050,46,2032,295,59357,450,13,3632,122,108,13,14378,5104 +2050,46,2033,326,65726,498,15,4022,135,119,15,15539,5652 +2050,46,2034,362,72962,553,17,4464,150,132,16,16858,6274 +2050,46,2035,398,80084,607,18,4900,164,145,18,18106,6887 +2050,46,2036,437,88081,668,20,5390,181,160,19,17407,7574 +2050,46,2037,484,97469,739,22,5964,200,177,22,18791,8382 +2050,46,2038,541,108875,825,25,6662,223,198,24,20446,9363 +2050,46,2039,602,121241,919,28,7419,249,220,27,22222,10426 +2050,46,2040,682,137416,1041,31,8408,282,250,30,24492,11817 +2050,46,2041,773,155632,1180,35,9523,319,283,34,26116,13383 +2050,46,2042,877,176535,1338,40,10802,362,321,39,28778,15181 +2050,46,2043,1005,202437,1534,46,12387,416,368,45,31969,17408 +2050,46,2044,1165,234540,1778,53,14351,481,426,52,35833,20169 +2050,46,2045,1365,274840,2083,62,16817,564,499,61,40504,23634 +2050,46,2046,1627,327631,2483,74,20047,672,595,72,46380,28174 +2050,46,2047,1986,399869,3031,91,24468,821,726,88,54092,34386 +2050,46,2048,2527,508931,3857,116,31141,1045,924,113,65284,43765 +2050,46,2049,3388,682251,5171,155,41746,1400,1239,151,81970,58669 +2050,46,2050,6289,1266491,9598,287,77495,2600,2300,280,137256,108910 +2050,47,2020,674,130467,935,25,7747,268,237,29,76192,11205 +2050,47,2021,134,25929,186,5,1540,53,47,6,14182,2227 +2050,47,2022,150,29032,208,5,1724,60,53,6,14557,2493 +2050,47,2023,170,32938,236,6,1956,68,60,7,15801,2829 +2050,47,2024,197,38177,274,7,2267,78,69,8,17226,3279 +2050,47,2025,229,44386,318,8,2636,91,81,10,18769,3812 +2050,47,2026,261,50551,362,10,3002,104,92,11,20318,4341 +2050,47,2027,299,57944,415,11,3441,119,105,13,22222,4976 +2050,47,2028,342,66219,474,13,3932,136,120,15,24314,5687 +2050,47,2029,379,73276,525,14,4351,151,133,16,26356,6293 +2050,47,2030,419,81143,581,15,4818,167,148,18,28610,6969 +2050,47,2031,470,90888,651,17,5397,187,165,20,23920,7806 +2050,47,2032,518,100162,718,19,5948,206,182,22,25785,8602 +2050,47,2033,573,110910,795,21,6586,228,202,25,27814,9525 +2050,47,2034,636,123121,882,23,7311,253,224,27,30119,10574 +2050,47,2035,698,135138,968,26,8024,278,246,30,32289,11606 +2050,47,2036,768,148633,1065,28,8826,306,270,33,31393,12765 +2050,47,2037,850,164475,1178,31,9766,338,299,36,33793,14126 +2050,47,2038,950,183723,1316,35,10909,378,334,41,36657,15779 +2050,47,2039,1057,204590,1466,39,12148,421,372,45,39723,17571 +2050,47,2040,1199,231884,1661,44,13769,477,422,51,43630,19915 +2050,47,2041,1357,262623,1882,50,15594,540,478,58,46530,22555 +2050,47,2042,1540,297897,2134,56,17689,613,542,66,51060,25585 +2050,47,2043,1766,341604,2447,65,20284,702,621,76,56453,29338 +2050,47,2044,2046,395777,2836,75,23501,814,720,87,62952,33991 +2050,47,2045,2397,463781,3323,88,27539,954,844,103,70745,39831 +2050,47,2046,2858,552863,3961,105,32829,1137,1006,122,80458,47482 +2050,47,2047,3488,674763,4834,128,40067,1387,1227,149,93080,57951 +2050,47,2048,4439,858803,6153,162,50995,1766,1562,190,111219,73757 +2050,47,2049,5951,1151272,8248,218,68362,2367,2094,254,137809,98876 +2050,47,2050,11046,2137155,15311,404,126903,4394,3887,472,225478,183547 +2050,48,2020,1041,200011,1649,37,11146,426,376,44,110630,17304 +2050,48,2021,207,39750,328,7,2215,85,75,9,20621,3439 +2050,48,2022,232,44507,367,8,2480,95,84,10,21212,3851 +2050,48,2023,263,50495,416,9,2814,107,95,11,23049,4369 +2050,48,2024,305,58528,482,11,3262,125,110,13,25168,5064 +2050,48,2025,354,68045,561,13,3792,145,128,15,27470,5887 +2050,48,2026,404,77496,639,14,4319,165,146,17,29780,6705 +2050,48,2027,463,88831,732,16,4950,189,167,20,32617,7685 +2050,48,2028,529,101516,837,19,5657,216,191,23,35736,8783 +2050,48,2029,585,112335,926,21,6260,239,211,25,38763,9719 +2050,48,2030,648,124395,1025,23,6932,265,234,28,42106,10762 +2050,48,2031,725,139334,1149,26,7765,296,262,31,36433,12055 +2050,48,2032,800,153553,1266,28,8557,327,289,34,39301,13285 +2050,48,2033,885,170030,1402,31,9475,362,320,38,42425,14710 +2050,48,2034,983,188749,1556,35,10518,402,355,42,45976,16330 +2050,48,2035,1079,207172,1708,38,11545,441,390,46,49326,17924 +2050,48,2036,1186,227860,1878,42,12698,485,429,51,48690,19714 +2050,48,2037,1313,252147,2079,46,14051,536,475,56,52453,21815 +2050,48,2038,1466,281654,2322,52,15696,599,530,63,56944,24368 +2050,48,2039,1633,313644,2586,58,17478,667,590,70,61756,27135 +2050,48,2040,1851,355488,2931,66,19810,756,669,79,67893,30755 +2050,48,2041,2096,402611,3319,74,22436,857,758,90,72801,34832 +2050,48,2042,2378,456686,3765,84,25450,972,860,102,79963,39511 +2050,48,2043,2727,523693,4317,97,29184,1114,986,116,88505,45308 +2050,48,2044,3159,606742,5002,112,33812,1291,1142,135,98810,52493 +2050,48,2045,3702,710995,5861,131,39621,1513,1338,158,111190,61512 +2050,48,2046,4413,847562,6987,156,47232,1803,1595,188,126654,73328 +2050,48,2047,5386,1034439,8528,191,57646,2201,1947,230,146798,89496 +2050,48,2048,6855,1316578,10854,243,73368,2801,2478,293,175816,113905 +2050,48,2049,9190,1764945,14550,325,98354,3755,3322,392,218530,152696 +2050,48,2050,17059,3276336,27010,604,182579,6971,6166,729,359531,283456 +2050,49,2020,2248,417827,3230,92,28228,817,723,97,307001,36874 +2050,49,2021,447,83040,642,18,5610,162,144,19,57025,7328 +2050,49,2022,500,92977,719,20,6281,182,161,22,58372,8205 +2050,49,2023,568,105486,815,23,7127,206,183,25,63258,9309 +2050,49,2024,658,122265,945,27,8260,239,212,28,68796,10790 +2050,49,2025,765,142147,1099,31,9603,278,246,33,74754,12545 +2050,49,2026,871,161891,1252,36,10937,317,280,38,80738,14287 +2050,49,2027,998,185570,1435,41,12537,363,321,43,88111,16377 +2050,49,2028,1141,212070,1639,47,14327,415,367,49,96196,18715 +2050,49,2029,1263,234670,1814,52,15854,459,406,55,104165,20710 +2050,49,2030,1398,259863,2009,57,17556,508,450,60,112956,22933 +2050,49,2031,1566,291073,2250,64,19665,569,504,68,92165,25688 +2050,49,2032,1726,320776,2480,71,21671,627,555,75,99209,28309 +2050,49,2033,1911,355196,2746,78,23997,695,615,83,106821,31347 +2050,49,2034,2121,394300,3048,87,26639,771,682,92,115474,34798 +2050,49,2035,2328,432786,3346,95,29239,847,749,101,123586,38194 +2050,49,2036,2561,476004,3680,105,32159,931,824,111,118621,42008 +2050,49,2037,2834,526740,4072,116,35586,1030,912,122,127408,46486 +2050,49,2038,3166,588382,4549,130,39751,1151,1018,137,137868,51926 +2050,49,2039,3525,655209,5065,144,44266,1282,1134,152,149054,57823 +2050,49,2040,3995,742622,5741,163,50171,1453,1285,173,163259,65537 +2050,49,2041,4525,841063,6502,185,56822,1645,1455,195,172958,74225 +2050,49,2042,5133,954028,7375,210,64453,1866,1651,222,189192,84194 +2050,49,2043,5886,1094007,8457,241,73910,2140,1893,254,208415,96548 +2050,49,2044,6819,1267497,9798,279,85631,2479,2193,295,231486,111859 +2050,49,2045,7991,1485284,11482,327,100345,2905,2570,345,258960,131078 +2050,49,2046,9526,1770575,13688,390,119619,3464,3064,411,292938,156256 +2050,49,2047,11626,2160966,16706,476,145993,4227,3740,502,336711,190708 +2050,49,2048,14797,2750360,21262,605,185813,5380,4759,639,399066,242723 +2050,49,2049,19837,3687008,28503,812,249092,7212,6380,857,489062,325384 +2050,49,2050,36824,6844343,52911,1506,462399,13389,11844,1591,784449,604023 +2050,50,2020,1107,213711,1667,45,13659,445,394,48,125120,18368 +2050,50,2021,220,42473,331,9,2715,89,78,10,23243,3651 +2050,50,2022,246,47556,371,10,3040,99,88,11,23671,4087 +2050,50,2023,280,53954,421,11,3448,112,99,12,25655,4637 +2050,50,2024,324,62537,488,13,3997,130,115,14,27906,5375 +2050,50,2025,377,72706,567,15,4647,152,134,16,30328,6249 +2050,50,2026,429,82804,646,17,5292,173,153,19,32760,7117 +2050,50,2027,492,94916,740,20,6066,198,175,21,35757,8158 +2050,50,2028,562,108470,846,23,6933,226,200,24,39043,9323 +2050,50,2029,622,120030,936,25,7672,250,221,27,42281,10316 +2050,50,2030,689,132916,1037,28,8495,277,245,30,45852,11424 +2050,50,2031,771,148879,1161,31,9515,310,274,33,34671,12796 +2050,50,2032,850,164071,1280,34,10487,342,303,37,37352,14102 +2050,50,2033,941,181677,1417,38,11612,379,335,41,40260,15615 +2050,50,2034,1045,201678,1573,42,12890,420,372,45,43565,17334 +2050,50,2035,1147,221362,1727,46,14148,461,408,50,46671,19026 +2050,50,2036,1261,243467,1899,51,15561,507,449,54,43282,20926 +2050,50,2037,1396,269418,2101,56,17220,562,497,60,46584,23156 +2050,50,2038,1559,300947,2347,63,19235,627,555,67,50523,25866 +2050,50,2039,1736,335128,2614,70,21420,698,618,75,54741,28804 +2050,50,2040,1968,379838,2963,79,24277,792,700,85,60114,32647 +2050,50,2041,2229,430188,3356,90,27495,897,793,96,63149,36975 +2050,50,2042,2528,487968,3806,102,31188,1017,900,109,69314,41941 +2050,50,2043,2899,559564,4365,117,35764,1166,1032,125,76657,48094 +2050,50,2044,3359,648302,5057,136,41436,1351,1195,145,85509,55721 +2050,50,2045,3936,759696,5926,159,48556,1583,1401,170,96128,65296 +2050,50,2046,4692,905618,7064,189,57882,1888,1670,203,109373,77837 +2050,50,2047,5727,1105296,8621,231,70644,2304,2038,247,126596,95000 +2050,50,2048,7289,1406761,10973,294,89912,2932,2594,315,151362,120910 +2050,50,2049,9771,1885839,14710,394,120532,3931,3477,422,187708,162087 +2050,50,2050,18138,3500762,27306,732,223749,7296,6455,783,307585,300889 +2050,51,2020,361,69811,500,13,4125,144,127,15,39425,5998 +2050,51,2021,72,13874,99,3,820,29,25,3,7342,1192 +2050,51,2022,80,15535,111,3,918,32,28,3,7535,1335 +2050,51,2023,91,17625,126,3,1041,36,32,4,8182,1514 +2050,51,2024,106,20428,146,4,1207,42,37,5,8925,1755 +2050,51,2025,123,23750,170,4,1403,49,43,5,9732,2040 +2050,51,2026,140,27049,194,5,1598,56,49,6,10541,2324 +2050,51,2027,160,31005,222,6,1832,64,56,7,11535,2664 +2050,51,2028,183,35433,254,7,2094,73,64,8,12627,3044 +2050,51,2029,203,39209,281,7,2317,81,71,9,13691,3369 +2050,51,2030,224,43418,311,8,2566,89,79,10,14866,3730 +2050,51,2031,251,48633,348,9,2874,100,88,11,12382,4178 +2050,51,2032,277,53596,384,10,3167,110,97,12,13354,4605 +2050,51,2033,307,59347,425,11,3507,122,108,13,14412,5099 +2050,51,2034,341,65880,472,12,3893,135,120,15,15615,5660 +2050,51,2035,374,72310,518,14,4273,149,132,16,16750,6213 +2050,51,2036,411,79531,569,15,4700,164,145,18,16270,6833 +2050,51,2037,455,88008,630,17,5201,181,160,19,17528,7561 +2050,51,2038,508,98308,704,19,5809,202,179,22,19030,8446 +2050,51,2039,566,109473,784,21,6469,225,199,24,20638,9405 +2050,51,2040,642,124078,888,23,7332,255,226,27,22690,10660 +2050,51,2041,727,140526,1006,26,8304,289,256,31,24214,12073 +2050,51,2042,824,159400,1141,30,9419,328,290,35,26603,13695 +2050,51,2043,945,182788,1309,34,10802,376,333,40,29451,15704 +2050,51,2044,1095,211775,1516,40,12514,435,385,47,32889,18195 +2050,51,2045,1283,248163,1777,47,14665,510,451,55,37021,21321 +2050,51,2046,1530,295830,2118,56,17482,608,538,65,42185,25416 +2050,51,2047,1867,361057,2585,68,21336,742,657,80,48915,31020 +2050,51,2048,2376,459533,3290,87,27155,945,836,102,58614,39481 +2050,51,2049,3185,616030,4410,116,36403,1267,1121,136,72905,52926 +2050,51,2050,5913,1143562,8187,216,67577,2352,2080,253,120092,98250 +2050,53,2020,1486,277740,2180,65,18338,543,480,65,230185,24494 +2050,53,2021,295,55199,433,13,3645,108,95,13,42714,4868 +2050,53,2022,331,61804,485,14,4081,121,107,14,43626,5450 +2050,53,2023,375,70119,550,16,4630,137,121,16,47240,6184 +2050,53,2024,435,81273,638,19,5366,159,140,19,51318,7167 +2050,53,2025,506,94489,742,22,6239,185,163,22,55691,8333 +2050,53,2026,576,107613,845,25,7105,210,186,25,60084,9490 +2050,53,2027,660,123353,968,29,8145,241,213,29,65502,10878 +2050,53,2028,754,140968,1106,33,9308,275,244,33,71440,12432 +2050,53,2029,835,155992,1224,36,10300,305,270,36,77319,13757 +2050,53,2030,924,172738,1356,40,11405,337,299,40,83803,15234 +2050,53,2031,1035,193484,1519,45,12775,378,334,45,67502,17063 +2050,53,2032,1141,213228,1673,50,14079,417,368,50,72610,18804 +2050,53,2033,1263,236108,1853,55,15589,461,408,55,78114,20822 +2050,53,2034,1402,262102,2057,61,17306,512,453,61,84371,23115 +2050,53,2035,1539,287684,2258,67,18995,562,497,67,90225,25371 +2050,53,2036,1693,316412,2483,74,20892,618,547,74,86006,27904 +2050,53,2037,1873,350138,2748,82,23118,684,605,81,92277,30878 +2050,53,2038,2093,391114,3070,91,25824,764,676,91,99734,34492 +2050,53,2039,2330,435535,3418,102,28757,851,753,101,107704,38409 +2050,53,2040,2641,493641,3874,115,32593,964,853,115,117807,43534 +2050,53,2041,2991,559078,4388,131,36914,1092,966,130,124371,49305 +2050,53,2042,3393,634167,4977,148,41872,1239,1096,147,135830,55927 +2050,53,2043,3891,727215,5707,170,48016,1421,1257,169,149361,64132 +2050,53,2044,4508,842540,6613,197,55630,1646,1456,196,165566,74303 +2050,53,2045,5283,987307,7749,231,65189,1929,1706,230,184794,87070 +2050,53,2046,6297,1176948,9237,275,77710,2299,2034,274,208473,103794 +2050,53,2047,7686,1436452,11274,335,94844,2806,2482,334,238834,126679 +2050,53,2048,9782,1828238,14349,427,120713,3572,3159,425,281875,161231 +2050,53,2049,13113,2450851,19235,572,161822,4788,4235,570,343455,216138 +2050,53,2050,24343,4549619,35707,1062,300397,8888,7862,1058,545054,401227 +2050,54,2020,382,74845,543,14,4561,154,137,16,42192,6348 +2050,54,2021,76,14875,108,3,906,31,27,3,7855,1262 +2050,54,2022,85,16655,121,3,1015,34,30,4,8053,1413 +2050,54,2023,96,18896,137,4,1151,39,34,4,8743,1603 +2050,54,2024,112,21901,159,4,1335,45,40,5,9533,1858 +2050,54,2025,130,25463,185,5,1552,53,46,6,10388,2160 +2050,54,2026,148,28999,210,5,1767,60,53,6,11247,2460 +2050,54,2027,170,33241,241,6,2026,69,61,7,12303,2819 +2050,54,2028,194,37988,276,7,2315,78,69,8,13462,3222 +2050,54,2029,215,42036,305,8,2561,87,77,9,14594,3565 +2050,54,2030,238,46549,338,9,2836,96,85,10,15843,3948 +2050,54,2031,266,52140,378,10,3177,108,95,11,12948,4422 +2050,54,2032,293,57460,417,11,3501,119,105,13,13964,4874 +2050,54,2033,325,63626,461,12,3877,131,116,14,15069,5397 +2050,54,2034,361,70631,512,13,4304,146,129,15,16325,5991 +2050,54,2035,396,77525,562,15,4724,160,142,17,17509,6576 +2050,54,2036,435,85266,618,16,5196,176,156,19,16867,7232 +2050,54,2037,482,94355,684,18,5749,195,172,21,18171,8003 +2050,54,2038,538,105397,764,20,6422,218,192,23,19728,8940 +2050,54,2039,599,117367,851,22,7152,242,214,26,21396,9955 +2050,54,2040,679,133026,965,25,8106,275,243,29,23524,11283 +2050,54,2041,769,150659,1093,28,9180,311,275,33,25041,12779 +2050,54,2042,872,170895,1239,32,10413,353,312,37,27514,14495 +2050,54,2043,1000,195969,1421,37,11941,404,358,43,30465,16622 +2050,54,2044,1159,227047,1647,43,13835,469,415,50,34025,19258 +2050,54,2045,1358,266058,1930,50,16212,549,486,58,38306,22567 +2050,54,2046,1619,317163,2300,60,19326,655,579,69,43658,26902 +2050,54,2047,1976,387093,2807,73,23587,799,707,85,50634,32833 +2050,54,2048,2515,492672,3573,93,30021,1017,900,108,60692,41788 +2050,54,2049,3371,660452,4790,125,40244,1363,1206,144,75517,56019 +2050,54,2050,6258,1226025,8892,231,74707,2530,2238,268,124476,103991 +2050,55,2020,944,183765,1279,36,11779,374,331,40,102750,15685 +2050,55,2021,188,36522,254,7,2341,74,66,8,19122,3117 +2050,55,2022,210,40892,284,8,2621,83,74,9,19555,3490 +2050,55,2023,238,46394,323,9,2974,94,84,10,21225,3960 +2050,55,2024,276,53774,374,10,3447,110,97,12,23135,4590 +2050,55,2025,321,62518,435,12,4007,127,113,14,25203,5336 +2050,55,2026,366,71201,495,14,4564,145,128,16,27278,6077 +2050,55,2027,419,81616,568,16,5231,166,147,18,29831,6966 +2050,55,2028,479,93271,649,18,5978,190,168,21,32634,7961 +2050,55,2029,530,103211,718,20,6616,210,186,23,35372,8810 +2050,55,2030,587,114291,795,22,7326,233,206,25,38394,9755 +2050,55,2031,658,128017,891,25,8206,261,231,28,30272,10927 +2050,55,2032,725,141081,982,27,9043,287,254,31,32652,12042 +2050,55,2033,802,156219,1087,30,10013,318,281,34,35245,13334 +2050,55,2034,891,173418,1207,34,11116,353,312,38,38191,14802 +2050,55,2035,978,190344,1324,37,12201,388,343,42,40970,16247 +2050,55,2036,1075,209352,1457,41,13419,426,377,46,38847,17869 +2050,55,2037,1190,231666,1612,45,14849,472,417,51,41879,19774 +2050,55,2038,1329,258777,1800,50,16587,527,466,57,45501,22088 +2050,55,2039,1480,288169,2005,56,18471,587,519,63,49383,24597 +2050,55,2040,1678,326614,2272,63,20935,665,589,72,54338,27878 +2050,55,2041,1900,369910,2574,72,23710,753,667,81,57606,31574 +2050,55,2042,2155,419592,2919,81,26895,855,756,92,63366,35814 +2050,55,2043,2471,481156,3348,93,30841,980,867,106,70252,41069 +2050,55,2044,2863,557460,3878,108,35731,1135,1004,123,78573,47582 +2050,55,2045,3355,653245,4545,126,41871,1331,1177,144,88598,55758 +2050,55,2046,4000,778719,5418,151,49914,1586,1403,171,101162,66468 +2050,55,2047,4882,950417,6612,184,60919,1936,1713,209,117585,81123 +2050,55,2048,6213,1209639,8416,234,77534,2464,2180,266,141326,103249 +2050,55,2049,8329,1621587,11282,314,103939,3303,2922,357,176484,138411 +2050,55,2050,15462,3010218,20943,583,192946,6131,5424,662,292743,256938 +2050,56,2020,1322,260374,2196,69,16757,515,455,60,214774,23146 +2050,56,2021,263,51747,436,14,3330,102,91,12,39888,4600 +2050,56,2022,294,57940,489,15,3729,115,101,13,40820,5150 +2050,56,2023,334,65735,554,17,4231,130,115,15,44231,5843 +2050,56,2024,387,76191,643,20,4904,151,133,18,48095,6773 +2050,56,2025,450,88581,747,23,5701,175,155,20,52250,7874 +2050,56,2026,512,100884,851,27,6493,199,176,23,56424,8968 +2050,56,2027,587,115640,975,31,7442,229,202,27,61566,10280 +2050,56,2028,671,132153,1114,35,8505,261,231,30,67205,11748 +2050,56,2029,743,146237,1233,39,9412,289,256,34,72767,13000 +2050,56,2030,822,161937,1366,43,10422,320,283,37,78902,14395 +2050,56,2031,921,181385,1530,48,11674,359,317,42,63886,16124 +2050,56,2032,1015,199895,1686,53,12865,395,350,46,68762,17769 +2050,56,2033,1124,221345,1867,59,14245,438,387,51,74030,19676 +2050,56,2034,1248,245713,2072,65,15814,486,430,57,80017,21842 +2050,56,2035,1369,269696,2274,71,17357,533,472,62,85628,23974 +2050,56,2036,1506,296627,2502,78,19091,587,519,68,81884,26368 +2050,56,2037,1667,328244,2768,87,21125,649,574,75,87938,29179 +2050,56,2038,1862,366657,3092,97,23598,725,641,84,95144,32594 +2050,56,2039,2073,408301,3443,108,26278,807,714,94,102850,36296 +2050,56,2040,2350,462774,3903,122,29783,915,809,106,112634,41138 +2050,56,2041,2661,524119,4420,139,33732,1036,917,121,119160,46591 +2050,56,2042,3019,594513,5014,157,38262,1176,1040,137,130322,52849 +2050,56,2043,3462,681743,5749,180,43876,1348,1192,157,143535,60603 +2050,56,2044,4011,789857,6661,209,50834,1562,1382,182,159390,70213 +2050,56,2045,4700,925572,7806,245,59569,1830,1619,213,178263,82278 +2050,56,2046,5603,1103356,9305,292,71010,2182,1930,254,201593,98081 +2050,56,2047,6838,1346632,11357,356,86668,2663,2355,310,231634,119707 +2050,56,2048,8703,1713919,14454,454,110306,3389,2998,394,274405,152357 +2050,56,2049,11667,2297602,19376,608,147871,4543,4019,528,336079,204243 +2050,56,2050,21658,4265135,35969,1129,274498,8434,7460,981,538453,379144 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_source_type_pop.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_source_type_pop.csv new file mode 100644 index 0000000000..fecf2793e5 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_source_type_pop.csv @@ -0,0 +1,698 @@ +# File: MOVES_source_type_pop.csv +# Title: MOVES source type population +# Source: Table 5-1 and 5-3 in Population and Activity of On-road Vehicles in MOVES2014. U.S. Environmental Protection Agency. https://cfpub.epa.gov/si/si_public_record_report.cfm?Lab=OTAQ&dirEntryId=309336 +# Comments: Population by year/sourceTypeID. MOVES sourceType IDs correspond to MARKAL vehicle classes +# Units: Vehicles +# Column types: iin +# ---------- +yearID,sourceTypeID,sourceTypePopulation +1990,11,4281451 +1999,11,4173869 +2000,11,4367504 +2001,11,4924889 +2002,11,5025989 +2003,11,5391868 +2004,11,5812640 +2005,11,6258916 +2006,11,6770040 +2007,11,7254341 +2008,11,7868791 +2009,11,8045589 +2010,11,8125368 +2011,11,8553367 +2012,11,8571043 +2013,11,8686925 +2014,11,8706316 +2015,11,8747306 +2016,11,8844420 +2017,11,8942539 +2018,11,9018348 +2019,11,9098157 +2020,11,9178350 +2021,11,9259502 +2022,11,9336727 +2023,11,9415834 +2024,11,9498027 +2025,11,9584965 +2026,11,9679601 +2027,11,9780504 +2028,11,9888477 +2029,11,9995869 +2030,11,10103307 +2031,11,10215035 +2032,11,10328080 +2033,11,10438582 +2034,11,10538311 +2035,11,10632881 +2036,11,10724001 +2037,11,10812942 +2038,11,10900779 +2039,11,10982934 +2040,11,11054781 +2041,11,11154734 +2042,11,11255592 +2043,11,11357362 +2044,11,11460052 +2045,11,11563670 +2046,11,11668225 +2047,11,11773725 +2048,11,11880180 +2049,11,11987597 +2050,11,12095985 +1990,21,145111798 +1999,21,134480432 +2000,21,135669808 +2001,21,139708988 +2002,21,137996198 +2003,21,137745418 +2004,21,138641649 +2005,21,138779081 +2006,21,137741765 +2007,21,138353985 +2008,21,139500898 +2009,21,138742550 +2010,21,133313295 +2011,21,128077583 +2012,21,128033293 +2013,21,129764315 +2014,21,130053980 +2015,21,130666289 +2016,21,132116958 +2017,21,133582655 +2018,21,134715083 +2019,21,135907260 +2020,21,137105167 +2021,21,138317410 +2022,21,139470983 +2023,21,140652676 +2024,21,141880476 +2025,21,143179145 +2026,21,144592806 +2027,21,146100079 +2028,21,147712963 +2029,21,149317182 +2030,21,150922082 +2031,21,152591053 +2032,21,154279713 +2033,21,155930380 +2034,21,157420124 +2035,21,158832787 +2036,21,160193930 +2037,21,161522527 +2038,21,162834616 +2039,21,164061841 +2040,21,165135081 +2041,21,166628182 +2042,21,168134782 +2043,21,169655005 +2044,21,171188973 +2045,21,172736811 +2046,21,174298644 +2047,21,175874598 +2048,21,177464802 +2049,21,179069384 +2050,21,180688474 +1990,31,27700002 +1999,31,55472043 +2000,31,58930067 +2001,31,62685437 +2002,31,63789333 +2003,31,65650691 +2004,31,69860117 +2005,31,72979985 +2006,31,76320942 +2007,31,78443406 +2008,31,78596024 +2009,31,79219480 +2010,31,79640794 +2011,31,87029786 +2012,31,86859077 +2013,31,87923912 +2014,31,88013821 +2015,31,88345150 +2016,31,89258806 +2017,31,90198031 +2018,31,90933744 +2019,31,91718360 +2020,31,92512920 +2021,31,93324101 +2022,31,94098303 +2023,31,94892489 +2024,31,95724801 +2025,31,96597678 +2026,31,97557397 +2027,31,98575055 +2028,31,99663938 +2029,31,100740786 +2030,31,101823078 +2031,31,102952180 +2032,31,104097591 +2033,31,105215777 +2034,31,106224691 +2035,31,107181150 +2036,31,108102123 +2037,31,109001062 +2038,31,109887674 +2039,31,110717088 +2040,31,111441096 +2041,31,112448588 +2042,31,113466067 +2043,31,114489859 +2044,31,115523323 +2045,31,116566587 +2046,31,117619710 +2047,31,118682703 +2048,31,119755568 +2049,31,120838314 +2050,31,121930957 +1990,32,9903130 +1999,32,18532252 +2000,32,19217042 +2001,32,19947160 +2002,32,19801171 +2003,32,19873211 +2004,32,20615562 +2005,32,20987040 +2006,32,21380115 +2007,32,21397912 +2008,32,20868245 +2009,32,20464490 +2010,32,20007471 +2011,32,21252333 +2012,32,21392620 +2013,32,21791358 +2014,32,21960188 +2015,32,22167215 +2016,32,22491593 +2017,32,22803453 +2018,32,23042540 +2019,32,23279080 +2020,32,23507663 +2021,32,23730059 +2022,32,23939242 +2023,32,24150336 +2024,32,24361181 +2025,32,24591326 +2026,32,24832532 +2027,32,25091707 +2028,32,25368052 +2029,32,25649099 +2030,32,25925279 +2031,32,26208881 +2032,32,26492841 +2033,32,26771867 +2034,32,27023949 +2035,32,27263243 +2036,32,27494412 +2037,32,27720068 +2038,32,27944077 +2039,32,28153449 +2040,32,28337888 +2041,32,28594235 +2042,32,28852021 +2043,32,29115026 +2044,32,29379992 +2045,32,29646900 +2046,32,29915793 +2047,32,30186772 +2048,32,30459938 +2049,32,30735394 +2050,32,31013234 +1990,41,60305 +1999,41,81436 +2000,41,81013 +2001,41,80932 +2002,41,79199 +2003,41,80897 +2004,41,82910 +2005,41,84821 +2006,41,87713 +2007,41,91269 +2008,41,95602 +2009,41,94330 +2010,41,88619 +2011,41,17570 +2012,41,18484 +2013,41,19272 +2014,41,19857 +2015,41,20714 +2016,41,21574 +2017,41,22164 +2018,41,22565 +2019,41,22962 +2020,41,23361 +2021,41,23829 +2022,41,24325 +2023,41,24812 +2024,41,25248 +2025,41,25684 +2026,41,26124 +2027,41,26509 +2028,41,26853 +2029,41,27187 +2030,41,27535 +2031,41,27864 +2032,41,28113 +2033,41,28420 +2034,41,28803 +2035,41,29188 +2036,41,29576 +2037,41,29983 +2038,41,30373 +2039,41,30755 +2040,41,31161 +2041,41,31552 +2042,41,31935 +2043,41,32341 +2044,41,32752 +2045,41,33169 +2046,41,33590 +2047,41,34017 +2048,41,34449 +2049,41,34886 +2050,41,35328 +1990,42,58988 +1999,42,55966 +2000,42,59738 +2001,42,61422 +2002,42,65091 +2003,42,64883 +2004,42,65459 +2005,42,65175 +2006,42,65685 +2007,42,66686 +2008,42,64685 +2009,42,67299 +2010,42,67537 +2011,42,65532 +2012,42,68939 +2013,42,71863 +2014,42,73911 +2015,42,77065 +2016,42,80256 +2017,42,82468 +2018,42,84020 +2019,42,85516 +2020,42,86942 +2021,42,88472 +2022,42,90168 +2023,42,91837 +2024,42,93353 +2025,42,94904 +2026,42,96543 +2027,42,97781 +2028,42,98845 +2029,42,99939 +2030,42,101372 +2031,42,102784 +2032,42,103704 +2033,42,104913 +2034,42,106438 +2035,42,108009 +2036,42,109491 +2037,42,111202 +2038,42,112696 +2039,42,113990 +2040,42,115425 +2041,42,116879 +2042,42,118161 +2043,42,119654 +2044,42,121172 +2045,42,122710 +2046,42,124268 +2047,42,125845 +2048,42,127442 +2049,42,129059 +2050,42,130696 +1990,43,510629 +1999,43,594788 +2000,43,608787 +2001,43,610523 +2002,43,619756 +2003,43,634100 +2004,43,650213 +2005,43,660365 +2006,43,672064 +2007,43,680179 +2008,43,686719 +2009,43,684062 +2010,43,693593 +2011,43,586660 +2012,43,617163 +2013,43,643468 +2014,43,662928 +2015,43,691427 +2016,43,720065 +2017,43,739573 +2018,43,752837 +2019,43,765890 +2020,43,779705 +2021,43,794326 +2022,43,809396 +2023,43,824453 +2024,43,838071 +2025,43,853070 +2026,43,866966 +2027,43,878704 +2028,43,889119 +2029,43,899887 +2030,43,911588 +2031,43,922488 +2032,43,931457 +2033,43,942127 +2034,43,955807 +2035,43,969201 +2036,43,982678 +2037,43,995922 +2038,43,1009132 +2039,43,1021125 +2040,43,1033525 +2041,43,1046635 +2042,43,1060114 +2043,43,1073550 +2044,43,1087150 +2045,43,1100923 +2046,43,1114870 +2047,43,1128993 +2048,43,1143297 +2049,43,1157781 +2050,43,1172450 +1990,51,66686 +1999,51,105280 +2000,51,105655 +2001,51,116075 +2002,51,120019 +2003,51,125725 +2004,51,132000 +2005,51,140903 +2006,51,151880 +2007,51,163697 +2008,51,172003 +2009,51,178304 +2010,51,180148 +2011,51,175983 +2012,51,184528 +2013,51,194601 +2014,51,202865 +2015,51,212958 +2016,51,222752 +2017,51,230049 +2018,51,234788 +2019,51,238994 +2020,51,242851 +2021,51,247436 +2022,51,251658 +2023,51,256071 +2024,51,260189 +2025,51,263900 +2026,51,266945 +2027,51,269311 +2028,51,272442 +2029,51,274111 +2030,51,276842 +2031,51,280428 +2032,51,282992 +2033,51,286010 +2034,51,289563 +2035,51,292950 +2036,51,295787 +2037,51,298646 +2038,51,301047 +2039,51,303806 +2040,51,306210 +2041,51,309105 +2042,51,312094 +2043,51,315129 +2044,51,318194 +2045,51,321294 +2046,51,324425 +2047,51,327583 +2048,51,330764 +2049,51,333971 +2050,51,337200 +1990,52,3870378 +1999,52,5312057 +2000,52,5123288 +2001,52,5416413 +2002,52,5395944 +2003,52,5452370 +2004,52,5527711 +2005,52,5703421 +2006,52,5947967 +2007,52,6207961 +2008,52,6321860 +2009,52,6356419 +2010,52,6233723 +2011,52,5915083 +2012,52,6194437 +2013,52,6524696 +2014,52,6776860 +2015,52,7092936 +2016,52,7391816 +2017,52,7589263 +2018,52,7708799 +2019,52,7823737 +2020,52,7952916 +2021,52,8093487 +2022,52,8242242 +2023,52,8384894 +2024,52,8509588 +2025,52,8638116 +2026,52,8751682 +2027,52,8845611 +2028,52,8927436 +2029,52,9017159 +2030,52,9114382 +2031,52,9208553 +2032,52,9285824 +2033,52,9377883 +2034,52,9492503 +2035,52,9598823 +2036,52,9698499 +2037,52,9794786 +2038,52,9886984 +2039,52,9968005 +2040,52,10050762 +2041,52,10146554 +2042,52,10243286 +2043,52,10342086 +2044,52,10442003 +2045,52,10543173 +2046,52,10645527 +2047,52,10748887 +2048,52,10853132 +2049,52,10958333 +2050,52,11064377 +1990,53,145460 +1999,53,314193 +2000,53,295920 +2001,53,305296 +2002,53,296576 +2003,53,291991 +2004,53,288191 +2005,53,289225 +2006,53,293104 +2007,53,296974 +2008,53,293267 +2009,53,285614 +2010,53,270973 +2011,53,248414 +2012,53,260103 +2013,53,274022 +2014,53,285050 +2015,53,298822 +2016,53,312126 +2017,53,321697 +2018,53,328185 +2019,53,332953 +2020,53,334731 +2021,53,339947 +2022,53,345129 +2023,53,350724 +2024,53,351689 +2025,53,356513 +2026,53,361614 +2027,53,366256 +2028,53,371167 +2029,53,375261 +2030,53,376196 +2031,53,377381 +2032,53,380622 +2033,53,385441 +2034,53,390974 +2035,53,396040 +2036,53,400574 +2037,53,404978 +2038,53,408938 +2039,53,412527 +2040,53,415959 +2041,53,419932 +2042,53,423989 +2043,53,427979 +2044,53,432031 +2045,53,436150 +2046,53,440328 +2047,53,444556 +2048,53,448828 +2049,53,453145 +2050,53,457502 +1990,54,927365 +1999,54,1072855 +2000,54,1055185 +2001,54,1137298 +2002,54,1154775 +2003,54,1188972 +2004,54,1227948 +2005,54,1290370 +2006,54,1370222 +2007,54,1455851 +2008,54,1508911 +2009,54,1543798 +2010,54,1540265 +2011,54,1486595 +2012,54,1558571 +2013,54,1643030 +2014,54,1708359 +2015,54,1788137 +2016,54,1863416 +2017,54,1914615 +2018,54,1946088 +2019,54,1977364 +2020,54,2012439 +2021,54,2052927 +2022,54,2094930 +2023,54,2133720 +2024,54,2168366 +2025,54,2203940 +2026,54,2238631 +2027,54,2265530 +2028,54,2287818 +2029,54,2312152 +2030,54,2339762 +2031,54,2368027 +2032,54,2384675 +2033,54,2404760 +2034,54,2431600 +2035,54,2457260 +2036,54,2482258 +2037,54,2507832 +2038,54,2531956 +2039,54,2552944 +2040,54,2573018 +2041,54,2596068 +2042,54,2620328 +2043,54,2646040 +2044,54,2671969 +2045,54,2698156 +2046,54,2724589 +2047,54,2751234 +2048,54,2778067 +2049,54,2805109 +2050,54,2832335 +1990,61,1177488 +1999,61,1361077 +2000,61,1367537 +2001,61,1384228 +2002,61,1335059 +2003,61,1306728 +2004,61,1293232 +2005,61,1309344 +2006,61,1352710 +2007,61,1363926 +2008,61,1319428 +2009,61,1316909 +2010,61,1266251 +2011,61,1198360 +2012,61,1190823 +2013,61,1234130 +2014,61,1258158 +2015,61,1305846 +2016,61,1354472 +2017,61,1380034 +2018,61,1390333 +2019,61,1399805 +2020,61,1410231 +2021,61,1422307 +2022,61,1436801 +2023,61,1452800 +2024,61,1466048 +2025,61,1481774 +2026,61,1495197 +2027,61,1504600 +2028,61,1513938 +2029,61,1527109 +2030,61,1546457 +2031,61,1567256 +2032,61,1585162 +2033,61,1608532 +2034,61,1638613 +2035,61,1668890 +2036,61,1700634 +2037,61,1733093 +2038,61,1766176 +2039,61,1794385 +2040,61,1822201 +2041,61,1849126 +2042,61,1876112 +2043,61,1900609 +2044,61,1925114 +2045,61,1950013 +2046,61,1975442 +2047,61,2001429 +2048,61,2027993 +2049,61,2055141 +2050,61,2082909 +1990,62,704543 +1999,62,1008334 +2000,62,1043223 +2001,62,1087207 +2002,62,1079511 +2003,62,1087666 +2004,62,1107993 +2005,62,1154613 +2006,62,1227684 +2007,62,1273958 +2008,62,1268294 +2009,62,1302726 +2010,62,1289074 +2011,62,1255479 +2012,62,1280487 +2013,62,1332495 +2014,62,1377084 +2015,62,1438787 +2016,62,1502949 +2017,62,1554956 +2018,62,1599692 +2019,62,1644731 +2020,62,1690499 +2021,62,1736993 +2022,62,1783131 +2023,62,1828474 +2024,62,1871701 +2025,62,1918337 +2026,62,1964237 +2027,62,2004780 +2028,62,2039997 +2029,62,2072663 +2030,62,2104213 +2031,62,2130654 +2032,62,2151566 +2033,62,2174339 +2034,62,2203126 +2035,62,2231873 +2036,62,2260221 +2037,62,2288347 +2038,62,2315324 +2039,62,2341721 +2040,62,2370803 +2041,62,2402363 +2042,62,2434679 +2043,62,2470310 +2044,62,2506772 +2045,62,2543690 +2046,62,2580940 +2047,62,2618507 +2048,62,2656384 +2049,62,2694575 +2050,62,2733057 +0,0,0 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_src_type_reg_class_fractions.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_src_type_reg_class_fractions.csv new file mode 100644 index 0000000000..afcd51c4f0 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_src_type_reg_class_fractions.csv @@ -0,0 +1,5570 @@ +# File: MOVES_src_type_reg_class_fractions.csv +# Title: MOVES source type regulatory class fractions +# Source: Population and Activity of On-road Vehicles in MOVES2014. U.S. Environmental Protection Agency. https://cfpub.epa.gov/si/si_public_record_report.cfm?Lab=OTAQ&dirEntryId=309336 +# Comments: Fractions of vehicles by sourceTypeID/year/regClassID combinations. SourceTypeID is the primary vehicle classification in MOVES and are intended to be groups of vehicles with similar activity and usage patterns. RegClassID is a secondary identifier used to group vehicles subject to similar emission standards. SourceTypeID is more specific than regClassID. +# Units: Unitless +# Column types: iiin +# ---------- +sourceTypeID,modelYearID,regClassID,stmyFraction +11,1980,10,1 +11,1981,10,1 +11,1982,10,1 +11,1983,10,1 +11,1984,10,1 +11,1985,10,1 +11,1986,10,1 +11,1987,10,1 +11,1988,10,1 +11,1989,10,1 +11,1990,10,1 +11,1991,10,1 +11,1992,10,1 +11,1993,10,1 +11,1994,10,1 +11,1995,10,1 +11,1996,10,1 +11,1997,10,1 +11,1998,10,1 +11,1999,10,1 +11,2000,10,1 +11,2001,10,1 +11,2002,10,1 +11,2003,10,1 +11,2004,10,1 +11,2005,10,1 +11,2006,10,1 +11,2007,10,1 +11,2008,10,1 +11,2009,10,1 +11,2010,10,1 +11,2011,10,1 +21,1982,20,0.893278136 +21,1982,20,0.106721864 +21,1983,20,0.922683485 +21,1983,20,0.077316515 +21,1984,20,0.955646181 +21,1984,20,0.044353819 +21,1985,20,0.966250914 +21,1985,20,0.033749086 +21,1986,20,0.991117689 +21,1986,20,0.008882311 +21,1987,20,0.987233064 +21,1987,20,0.012766936 +21,1988,20,0.999740009 +21,1988,20,0.000259991 +21,1989,20,0.999089361 +21,1989,20,0.000910639 +21,1990,20,0.998935964 +21,1990,20,0.001064036 +21,1991,20,0.997176674 +21,1991,20,0.002823326 +21,1992,20,0.998834703 +21,1992,20,0.001165297 +21,1993,20,0.999308276 +21,1993,20,0.000691724 +21,1994,20,0.999849895 +21,1994,20,0.000150105 +21,1995,20,0.99905736 +21,1995,20,0.00094264 +21,1996,20,0.998756776 +21,1996,20,0.001243224 +21,1997,20,0.999092613 +21,1997,20,0.000907387 +21,1998,20,0.988774032 +21,1998,20,0.00220741 +21,1999,20,0.981177294 +21,1999,20,0.001878666 +21,2000,20,0.97554235 +21,2000,20,0.00257312 +21,2001,20,0.974027877 +21,2001,20,0.002976469 +21,2002,20,0.962321715 +21,2002,20,0.004305575 +21,2003,20,0.960066352 +21,2003,20,0.003920335 +21,2004,20,0.967151757 +21,2004,20,0.003106393 +21,2005,20,0.964805199 +21,2005,20,0.004790385 +21,2006,20,0.958769905 +21,2006,20,0.006891759 +21,2007,20,0.963121386 +21,2007,20,0.000342332 +21,2008,20,0.948716509 +21,2008,20,0.000533532 +21,2009,20,0.948159185 +21,2009,20,0.007367972 +21,2010,20,0.935790663 +21,2010,20,0.01012272 +21,2011,20,0.913843364 +21,2011,20,0.011745962 +31,1982,30,0.896993368 +62,2048,46,0.04116734 +62,2047,46,0.04116734 +31,1982,30,0.05131656 +31,1983,30,0.922451693 +62,2046,46,0.04116734 +62,2045,46,0.04116734 +31,1983,30,0.022715844 +62,2044,46,0.04116734 +31,1984,30,0.931940065 +62,2043,46,0.04116734 +31,1984,30,0.016820276 +62,2042,46,0.04116734 +31,1985,30,0.944504852 +62,2041,46,0.04116734 +31,1985,30,0.011799756 +31,1986,30,0.953581372 +62,2040,46,0.04116734 +62,2039,46,0.04116734 +31,1986,30,0.009879634 +31,1987,30,0.977889265 +62,2038,46,0.04116734 +62,2037,46,0.04116734 +31,1987,30,0.003152624 +31,1988,30,0.980165468 +62,2036,46,0.04116734 +31,1988,30,0.002602639 +31,1989,30,0.972628259 +62,2035,46,0.04116734 +31,1989,30,0.007786492 +62,2034,46,0.04116734 +31,1990,30,0.967854745 +31,1990,30,0.010777132 +62,2033,46,0.04116734 +62,2032,46,0.04116734 +31,1991,30,0.968467606 +31,1991,30,0.005845069 +62,2031,46,0.04116734 +31,1992,30,0.958984823 +62,2030,46,0.04116734 +31,1992,30,0.004171943 +31,1993,30,0.954902247 +62,2029,46,0.04116734 +62,2028,46,0.04116734 +31,1993,30,0.006411656 +31,1994,30,0.967061622 +62,2027,46,0.04116734 +62,2026,46,0.04116734 +31,1994,30,0.007618476 +31,1995,30,0.976852241 +62,2025,46,0.04116734 +62,2024,46,0.04116734 +31,1995,30,0.004058085 +31,1996,30,0.955689407 +62,2023,46,0.04116734 +62,2022,46,0.04116734 +31,1996,30,0.00756106 +62,2021,46,0.04116734 +31,1997,30,0.965999832 +62,2020,46,0.04116734 +31,1997,30,0.005478943 +62,2019,46,0.04116734 +31,1998,30,0.957560169 +62,2018,46,0.04116734 +31,1998,30,0.003788607 +62,2017,46,0.04116734 +31,1999,30,0.914058125 +62,2016,46,0.04116734 +31,1999,30,0.009012925 +62,2015,46,0.04116734 +31,2000,30,0.923480952 +62,2014,46,0.04116734 +31,2000,30,0.004551233 +62,2013,46,0.04116734 +31,2001,30,0.918915674 +62,2012,46,0.04116734 +31,2001,30,0.006603797 +31,2002,30,0.892770394 +62,2011,46,0.04116734 +31,2002,30,0.005782038 +62,2010,46,0.030604681 +31,2003,30,0.887555234 +62,2009,46,0.026518318 +62,2008,46,0.054920729 +31,2003,30,0.00666473 +31,2004,30,0.902838125 +62,2007,46,0.041273536 +31,2004,30,0.006609957 +62,2006,46,0.039625438 +31,2005,30,0.895838227 +62,2005,46,0.045517462 +62,2004,46,0.055778863 +31,2005,30,0.006251268 +31,2006,30,0.896688217 +62,2003,46,0.037208894 +31,2006,30,0.006149076 +62,2002,46,0.050479316 +31,2007,30,0.836384414 +62,2001,46,0.037599466 +62,2000,46,0.015497477 +31,2007,30,0.006708896 +31,2008,30,0.850639894 +62,1999,46,0.020630009 +31,2008,30,0.007137128 +62,1998,46,0.053053562 +31,2009,30,0.801212854 +62,1997,46,0.035852981 +62,1996,46,0.055112222 +31,2009,30,0.007208481 +31,2010,30,0.783501908 +62,1995,46,0.039149104 +31,2010,30,0.006330903 +62,1994,46,0.035563886 +31,2011,30,0.697934061 +62,1993,46,0.082894692 +62,1992,46,0.026585465 +31,2011,30,0.006598876 +53,2030,41,0.263943645 +32,1982,30,0.767325816 +53,2029,41,0.263943645 +32,1982,30,0.069842523 +32,1983,30,0.797596905 +53,2028,41,0.263943645 +53,2027,41,0.263943645 +32,1983,30,0.031249316 +32,1984,30,0.817343719 +53,2026,41,0.263943645 +53,2025,41,0.263943645 +32,1984,30,0.023470463 +53,2024,41,0.263943645 +32,1985,30,0.844280099 +53,2023,41,0.263943645 +32,1985,30,0.016781361 +53,2022,41,0.263943645 +32,1986,30,0.863676645 +32,1986,30,0.014236593 +53,2021,41,0.263943645 +32,1987,30,0.919352074 +53,2020,41,0.263943645 +53,2019,41,0.263943645 +32,1987,30,0.009870306 +53,2018,41,0.263943645 +32,1988,30,0.886970088 +53,2017,41,0.263943645 +32,1988,30,0.041486227 +53,2016,41,0.263943645 +32,1989,30,0.901275914 +53,2015,41,0.263943645 +32,1989,30,0.019129531 +53,2014,41,0.263943645 +32,1990,30,0.901797362 +53,2013,41,0.263943645 +32,1990,30,0.001282961 +53,2012,41,0.263943645 +32,1991,30,0.870832273 +53,2011,41,0.263943645 +32,1991,30,0.008805049 +53,2010,41,0.212676042 +32,1992,30,0.904101364 +32,1992,30,0.041370419 +53,2009,41,0.169392971 +53,2008,41,0.277316553 +32,1993,30,0.941708393 +32,1993,30,0.005284824 +53,2007,41,0.140454772 +53,2006,41,0.22226633 +32,1994,30,0.913776428 +53,2005,41,0.200709453 +32,1994,30,0.014229241 +53,2004,41,0.23376641 +32,1995,30,0.850449482 +32,1995,30,0.023927345 +53,2003,41,0.255482919 +32,1996,30,0.880259134 +53,2002,41,0.270549151 +53,2001,41,0.268976741 +32,1996,30,0.010416952 +32,1997,30,0.838038026 +53,2001,41,0.107709186 +32,1997,30,0.018664165 +53,2000,41,0.070484355 +53,2000,41,0.184894844 +32,1998,30,0.912282713 +32,1998,30,0.030737015 +53,1999,41,0.204603911 +32,1999,30,0.845643346 +53,1999,41,0.321336771 +32,1999,30,0.011513729 +53,1998,41,0.054386258 +53,1998,41,0.101527846 +32,2000,30,0.829704192 +53,1997,41,0.060687557 +32,2000,30,0.019523125 +53,1997,41,0.306939211 +32,2001,30,0.76437991 +53,1996,41,0.008606565 +32,2001,30,0.014300633 +32,2002,30,0.826744352 +53,1996,41,0.01540413 +53,1995,41,0.092375257 +32,2002,30,0.020705284 +53,1995,41,0.216505258 +32,2003,30,0.815670311 +53,1994,41,0.381714755 +32,2003,30,0.023684849 +32,2004,30,0.826476068 +53,1994,41,0.03161497 +53,1993,41,0.351348989 +32,2004,30,0.023398488 +53,1993,41,0.066432798 +32,2005,30,0.821952079 +53,1992,41,0.219836468 +32,2005,30,0.022179603 +32,2006,30,0.810249615 +53,1992,41,0.024434055 +53,1991,41,0.611729611 +32,2006,30,0.02148602 +32,2007,30,0.776205603 +53,1991,41,0.019216592 +32,2007,30,0.024076351 +53,1990,41,0.382920274 +32,2008,30,0.779752623 +53,1990,41,0.02584612 +53,1989,41,0.033394184 +32,2008,30,0.025298999 +32,2009,30,0.753349175 +53,1989,41,0.407349111 +32,2009,30,0.026209631 +53,1988,41,0.095285981 +32,2010,30,0.745388032 +53,1988,41,0.103429422 +53,1987,41,0.115205751 +32,2010,30,0.023290392 +32,2011,30,0.64761168 +53,1986,41,0.119198906 +32,2011,30,0.023677672 +53,1986,41,0.216121558 +41,1980,47,0.670967742 +41,1980,41,0.187096774 +41,1980,42,0.019354839 +41,1980,46,0.122580645 +41,1981,42,0.01971831 +41,1981,46,0.121126761 +41,1981,47,0.673239437 +41,1981,41,0.185915493 +41,1982,46,0.122249389 +41,1982,47,0.672371638 +41,1982,41,0.185819071 +41,1982,42,0.019559902 +41,1983,47,0.673469388 +41,1983,41,0.185714286 +41,1983,42,0.020408163 +41,1983,46,0.120408163 +41,1984,42,0.020341741 +41,1984,46,0.121236778 +41,1984,47,0.672904801 +41,1984,41,0.18551668 +41,1985,46,0.12103929 +41,1985,47,0.673003802 +41,1985,41,0.185678074 +41,1985,42,0.020278834 +41,1986,47,0.673311185 +41,1986,41,0.185492802 +41,1986,42,0.019933555 +41,1986,46,0.121262458 +41,1987,42,0.020197276 +41,1987,46,0.121183654 +41,1987,47,0.673085956 +41,1987,41,0.185533114 +41,1988,42,0.019816336 +41,1988,46,0.121314645 +41,1988,47,0.673272112 +41,1988,41,0.185596907 +41,1989,46,0.121348315 +41,1989,47,0.673258427 +41,1989,41,0.185617978 +41,1989,42,0.019775281 +41,1990,47,0.673059768 +41,1990,41,0.185548617 +41,1990,42,0.020071365 +41,1990,46,0.12132025 +41,1991,42,0.02002002 +41,1991,46,0.121121121 +41,1991,47,0.673173173 +41,1991,41,0.185685686 +41,1992,46,0.121384005 +41,1992,47,0.673284175 +41,1992,41,0.185479297 +41,1992,42,0.019852524 +41,1993,47,0.673076923 +41,1993,41,0.185618729 +41,1993,42,0.02006689 +41,1993,46,0.121237458 +41,1994,42,0.019958706 +41,1994,46,0.121472815 +41,1994,47,0.673090158 +41,1994,41,0.185478321 +41,1995,46,0.121420997 +41,1995,47,0.673117709 +41,1995,41,0.185577943 +41,1995,42,0.019883351 +41,1996,47,0.672919509 +41,1996,41,0.185538881 +41,1996,42,0.020122783 +41,1996,46,0.121418827 +41,1997,42,0.019948703 +41,1997,46,0.121402109 +41,1997,47,0.673126247 +41,1997,41,0.185522941 +41,1998,46,0.12131756 +41,1998,47,0.673161679 +41,1998,41,0.185571793 +41,1998,42,0.019948968 +41,1999,47,0.672992444 +41,1999,41,0.185556141 +41,1999,42,0.020031629 +41,1999,46,0.121419786 +41,2000,42,0.01994077 +41,2000,46,0.12142152 +41,2000,47,0.673050346 +41,2000,41,0.185587364 +41,2001,46,0.121237001 +41,2001,47,0.673234811 +41,2001,41,0.185550082 +41,2001,42,0.019978106 +41,2002,47,0.672966781 +41,2002,41,0.18556701 +41,2002,42,0.020045819 +41,2002,46,0.121420389 +41,2003,42,0.020005716 +41,2003,46,0.121463275 +41,2003,47,0.673049443 +41,2003,41,0.185481566 +41,2004,42,0.020008337 +41,2004,46,0.121300542 +41,2004,47,0.672988745 +41,2004,41,0.185702376 +41,2005,46,0.121368089 +41,2005,47,0.673086502 +41,2005,41,0.185621783 +41,2005,42,0.019923626 +41,2006,47,0.672948509 +41,2006,41,0.185635851 +41,2006,42,0.020032646 +41,2006,46,0.121382995 +41,2007,42,0.019940179 +41,2007,46,0.121385842 +41,2007,47,0.672981057 +41,2007,41,0.185692921 +41,2008,46,0.121404784 +41,2008,47,0.673024523 +41,2008,41,0.185588859 +41,2008,42,0.019981835 +41,2009,47,0.673108553 +41,2009,41,0.185444079 +41,2009,42,0.020148026 +41,2009,46,0.121299342 +41,2010,42,0.020136778 +41,2010,46,0.121200608 +41,2010,47,0.67287234 +41,2010,41,0.185790274 +41,2011,46,0.121361746 +41,2011,47,0.673076923 +41,2011,41,0.185550936 +41,2011,42,0.020010395 +42,1980,47,0.009615385 +53,2048,47,0 +53,2047,47,0 +42,1980,48,0.990384615 +42,1980,48,0 +42,1981,47,0.008695652 +53,2046,47,0 +53,2045,47,0 +42,1981,48,0.991304348 +42,1981,48,0 +42,1982,47,0.00754717 +42,1982,42,0.003773585 +53,2044,47,0 +42,1982,48,0.988679245 +42,1982,48,0 +42,1983,47,0.006060606 +42,1983,42,0.002020202 +53,2043,47,0 +42,1983,48,0.991919192 +42,1983,48,0 +42,1984,47,0.005802708 +42,1984,42,0.001934236 +42,1984,46,0.001934236 +42,1984,48,0.99032882 +42,1984,48,0 +42,1985,47,0.005970149 +42,1985,42,0.002985075 +42,1985,46,0.001492537 +42,1985,48,0.989552239 +42,1985,48,0 +42,1986,47,0.006402049 +42,1986,42,0.002560819 +42,1986,46,0.00128041 +42,1986,48,0.989756722 +42,1986,48,0 +42,1987,47,0.006550218 +42,1987,42,0.002183406 +42,1987,46,0.001091703 +42,1987,48,0.990174672 +42,1987,48,0 +42,1988,47,0.005994006 +42,1988,42,0.002997003 +42,1988,46,0.000999001 +42,1988,48,0.99000999 +42,1988,48,0 +42,1989,47,0.006294256 +42,1989,42,0.002360346 +42,1989,46,0.000786782 +42,1989,48,0.990558615 +42,1989,48,0 +42,1990,42,0.002393776 +42,1990,46,0.001196888 +42,1990,47,0.006582885 +42,1990,48,0.982645123 +42,1990,48,0.007181329 +42,1991,42,0.00262697 +42,1991,46,0.000875657 +42,1991,47,0.006129597 +42,1991,48,0.971978984 +42,1991,48,0.018388792 +42,1992,42,0.002659574 +42,1992,46,0.000886525 +42,1992,47,0.006205674 +42,1992,48,0.944148936 +42,1992,48,0.046099291 +42,1993,42,0.002309469 +42,1993,46,0.000769823 +42,1993,47,0.006158584 +42,1993,48,0.914549654 +42,1993,48,0.076212471 +42,1994,42,0.002552648 +42,1994,46,0.001276324 +42,1994,47,0.006381621 +42,1994,48,0.904913848 +42,1994,48,0.084875558 +42,1995,42,0.002783964 +42,1995,46,0.001113586 +42,1995,47,0.006124722 +42,1995,48,0.836859688 +42,1995,48,0.15311804 +42,1996,42,0.002711252 +42,1996,46,0.000903751 +42,1996,47,0.006326254 +42,1996,48,0.892001808 +42,1996,48,0.098056936 +42,1997,42,0.00252419 +42,1997,46,0.000841397 +42,1997,47,0.006310475 +42,1997,48,0.816154817 +42,1997,48,0.174169121 +42,1998,42,0.002690238 +42,1998,46,0.001152959 +42,1998,47,0.006149116 +42,1998,48,0.840891622 +42,1998,48,0.149116065 +42,1999,42,0.002707581 +42,1999,46,0.000902527 +42,1999,47,0.00631769 +42,1999,48,0.877256318 +42,1999,48,0.112815884 +42,2000,42,0.002201027 +42,2000,46,0.000733676 +42,2000,47,0.005502568 +42,2000,48,0.915627293 +42,2000,48,0.075935437 +42,2001,42,0.00248139 +42,2001,46,0.000744417 +42,2001,47,0.005707196 +42,2001,48,0.904962779 +42,2001,48,0.086104218 +42,2002,42,0.002311471 +42,2002,46,0.000866802 +42,2002,47,0.005778677 +42,2002,48,0.891071945 +42,2002,48,0.099971107 +42,2003,42,0.00263466 +42,2003,46,0.00087822 +42,2003,47,0.005854801 +42,2003,48,0.880562061 +42,2003,48,0.110070258 +42,2004,42,0.002294894 +42,2004,46,0.000860585 +42,2004,47,0.005737235 +42,2004,48,0.868330465 +42,2004,48,0.122776822 +42,2005,42,0.002852389 +42,2005,46,0.000950796 +42,2005,47,0.006655574 +42,2005,48,0.856192061 +42,2005,48,0.13334918 +42,2006,42,0.003343239 +42,2006,46,0.001114413 +42,2006,47,0.007429421 +42,2006,48,0.847325409 +42,2006,48,0.140787519 +42,2007,42,0.003517316 +42,2007,46,0.001352814 +42,2007,47,0.008116883 +42,2007,48,0.83982684 +42,2007,48,0.147186147 +42,2008,42,0.00424854 +42,2008,46,0.001593202 +42,2008,47,0.010090281 +42,2008,48,0.829261816 +42,2008,48,0.15480616 +42,2009,42,0.005243446 +42,2009,46,0.001872659 +42,2009,47,0.011985019 +42,2009,48,0.825468165 +42,2009,48,0.155430712 +42,2010,42,0.005749329 +42,2010,46,0.001916443 +42,2010,47,0.013415102 +42,2010,48,0.81985435 +42,2010,48,0.159064776 +42,2011,42,0.006565064 +42,2011,46,0.002344666 +42,2011,47,0.015709261 +42,2011,48,0.817350528 +42,2011,48,0.158030481 +43,1980,42,0.006038647 +43,1980,46,0.882850242 +43,1980,41,0.009661836 +43,1980,47,0.042270531 +53,2042,47,0 +43,1980,46,0.055555556 +43,1980,47,0.002415459 +43,1980,41,0.001207729 +43,1981,41,0.007905138 +43,1981,42,0.00513834 +43,1981,46,0.68972332 +43,1981,47,0.033201581 +43,1981,41,0.002766798 +43,1981,42,0.001976285 +43,1981,46,0.24743083 +43,1981,47,0.011857708 +43,1982,41,0.006963788 +43,1982,42,0.004642526 +43,1982,46,0.631847725 +43,1982,47,0.030640669 +43,1982,47,0.014856082 +43,1982,42,0.002321263 +43,1982,46,0.30547818 +43,1982,41,0.003249768 +43,1983,46,0.633613445 +43,1983,47,0.030588235 +43,1983,41,0.007058824 +43,1983,42,0.004705882 +43,1983,42,0.002352941 +43,1983,46,0.303529412 +43,1983,47,0.014789916 +43,1983,41,0.003361345 +43,1984,42,0.004345667 +43,1984,46,0.576732059 +43,1984,47,0.027812267 +43,1984,41,0.006580581 +43,1984,47,0.017382667 +43,1984,41,0.004097343 +43,1984,42,0.002731562 +43,1984,46,0.360317854 +43,1985,46,0.45398482 +43,1985,47,0.021916509 +43,1985,41,0.00512334 +43,1985,42,0.00341556 +43,1985,42,0.003605313 +43,1985,46,0.483111954 +43,1985,47,0.023339658 +43,1985,41,0.005502846 +43,1986,47,0.014825676 +43,1986,41,0.00350277 +43,1986,42,0.002280873 +43,1986,46,0.306125774 +43,1986,46,0.630905833 +43,1986,47,0.03046595 +43,1986,41,0.007168459 +43,1986,42,0.004724666 +43,1987,42,0.001869159 +43,1987,46,0.248813803 +43,1987,47,0.012005751 +43,1987,41,0.002803738 +43,1987,47,0.033285406 +43,1987,41,0.007836089 +43,1987,42,0.005176132 +43,1987,46,0.688209921 +43,1988,46,0.23407322 +43,1988,47,0.0113145 +43,1988,41,0.002666474 +43,1988,42,0.001729605 +43,1988,42,0.005260882 +43,1988,46,0.703012396 +43,1988,47,0.0339435 +43,1988,41,0.007999423 +43,1989,47,0.010368466 +43,1989,41,0.002399314 +43,1989,42,0.001628106 +43,1989,46,0.214652956 +43,1989,46,0.722450728 +43,1989,47,0.03487575 +43,1989,41,0.008226221 +43,1989,42,0.005398458 +43,1990,42,0.00088054 +43,1990,46,0.116231289 +43,1990,47,0.005625673 +43,1990,41,0.00132081 +43,1990,47,0.039673222 +43,1990,41,0.00929459 +43,1990,42,0.00616378 +43,1990,46,0.820810097 +43,1991,46,0.083931926 +43,1991,47,0.004033595 +43,1991,41,0.00093933 +43,1991,42,0.000607802 +43,1991,42,0.006409548 +43,1991,46,0.853188198 +43,1991,47,0.041220024 +43,1991,41,0.009669577 +43,1992,42,7.05E-05 +43,1992,46,0.009380069 +43,1992,47,0.000423161 +43,1992,41,0.000141054 +43,1992,47,0.044855067 +43,1992,41,0.010508498 +43,1992,42,0.006982157 +43,1992,46,0.927639467 +43,1993,46,0.112932605 +43,1993,47,0.005464481 +43,1993,41,0.001252277 +43,1993,42,0.000853825 +43,1993,42,0.006204463 +43,1993,46,0.824112022 +43,1993,47,0.039845173 +43,1993,41,0.009335155 +43,1994,47,0.006661682 +43,1994,41,0.001563456 +43,1994,42,0.001019645 +43,1994,46,0.138195908 +43,1994,46,0.798925974 +43,1994,47,0.038610564 +43,1994,41,0.009040854 +43,1994,42,0.005981918 +43,1995,42,0.000820479 +43,1995,46,0.10708894 +43,1995,47,0.005185428 +43,1995,41,0.001214309 +43,1995,47,0.040105021 +43,1995,41,0.009419101 +43,1995,42,0.006235642 +43,1995,46,0.82993108 +43,1996,46,0.038930854 +43,1996,47,0.001867685 +43,1996,41,0.000456545 +43,1996,42,0.000290529 +43,1996,42,0.00676517 +43,1996,46,0.898107413 +43,1996,47,0.043413298 +43,1996,41,0.010168507 +43,1997,47,0.000470248 +43,1997,41,0.000108519 +43,1997,42,7.23E-05 +43,1997,46,0.009368783 +43,1997,46,0.927654187 +43,1997,47,0.044818231 +43,1997,41,0.010526316 +43,1997,42,0.006981371 +43,1998,42,6.74E-05 +43,1998,46,0.009368155 +43,1998,47,0.000438079 +43,1998,41,0.000101095 +43,1998,47,0.044818871 +43,1998,41,0.010513901 +43,1998,42,0.006975569 +43,1998,46,0.927716933 +43,1999,46,0.009360457 +43,1999,47,0.000452068 +43,1999,41,0.000106369 +43,1999,42,7.98E-05 +43,1999,42,0.006967159 +43,1999,46,0.927669193 +43,1999,47,0.044834464 +43,1999,41,0.010530515 +43,2000,42,8.34E-05 +43,2000,46,0.009368137 +43,2000,47,0.000444778 +43,2000,41,0.000111195 +43,2000,47,0.044839185 +43,2000,41,0.010507881 +43,2000,42,0.006977455 +43,2000,46,0.927667973 +43,2001,46,0.009376323 +43,2001,47,0.000453693 +43,2001,41,0.000120985 +43,2001,42,6.05E-05 +43,2001,42,0.006986873 +43,2001,46,0.92765108 +43,2001,47,0.044824874 +43,2001,41,0.010525679 +43,2002,47,0.000446254 +43,2002,41,0.000111564 +43,2002,42,8.37E-05 +43,2002,46,0.009371339 +43,2002,46,0.92767892 +43,2002,47,0.044820662 +43,2002,41,0.010514866 +43,2002,42,0.006972723 +43,2003,42,5.86E-05 +43,2003,46,0.009373993 +43,2003,47,0.000439406 +43,2003,41,0.000117175 +43,2003,47,0.044819404 +43,2003,41,0.010516448 +43,2003,42,0.006971907 +43,2003,46,0.927703079 +43,2004,46,0.009382567 +43,2004,47,0.000453995 +43,2004,41,0.000100888 +43,2004,42,7.57E-05 +43,2004,42,0.006986481 +43,2004,46,0.927663438 +43,2004,47,0.044819411 +43,2004,41,0.010517554 +43,2005,47,0.000451864 +43,2005,41,0.000100414 +43,2005,42,7.53E-05 +43,2005,46,0.009363625 +43,2005,46,0.927676666 +43,2005,47,0.044834944 +43,2005,41,0.010518388 +43,2005,42,0.006978787 +43,2006,42,6.71E-05 +43,2006,46,0.009371296 +43,2006,47,0.000447317 +43,2006,41,0.000111829 +43,2006,47,0.044821185 +43,2006,41,0.010511955 +43,2006,42,0.006978149 +43,2006,46,0.927691172 +43,2007,46,0.009372594 +43,2007,47,0.000451371 +43,2007,41,0.000106205 +43,2007,42,7.97E-05 +43,2007,42,0.006982981 +43,2007,46,0.927674375 +43,2007,47,0.044818522 +43,2007,41,0.010514298 +43,2008,42,8.34E-05 +43,2008,46,0.009364753 +43,2008,47,0.000444617 +43,2008,41,0.000111154 +43,2008,47,0.044822987 +43,2008,41,0.010504085 +43,2008,42,0.006974935 +43,2008,46,0.927694103 +43,2009,46,0.009377298 +43,2009,47,0.000459671 +43,2009,41,9.19E-05 +43,2009,42,6.13E-05 +43,2009,42,0.006987007 +43,2009,46,0.927678353 +43,2009,47,0.044833292 +43,2009,41,0.010511155 +43,2010,47,0.000438036 +43,2010,41,0.000109509 +43,2010,42,7.30E-05 +43,2010,46,0.009381274 +43,2010,46,0.927687534 +43,2010,47,0.044825698 +43,2010,41,0.010512867 +43,2010,42,0.006972075 +43,2011,42,7.98E-05 +43,2011,46,0.009376746 +43,2011,47,0.000438911 +43,2011,41,0.000119703 +43,2011,47,0.044808874 +43,2011,41,0.010533876 +43,2011,42,0.006982683 +43,2011,46,0.927659405 +51,1982,47,0.002429509 +51,1982,41,0.017237027 +51,1982,46,0.069424213 +51,1982,42,0.001328713 +51,1982,47,0.73372131 +51,1982,46,0.175859228 +51,1983,41,0.02684957 +51,1983,46,0.070368894 +51,1983,42,0.000846248 +51,1983,47,0.001371282 +51,1983,47,0.694432709 +51,1983,46,0.206131297 +51,1984,41,0.019357668 +51,1984,46,0.033361213 +51,1984,42,0.001435996 +51,1984,47,0.000100637 +51,1984,47,0.785942227 +51,1984,46,0.15980226 +51,1985,46,0.032050362 +51,1985,42,0.00273546 +53,2041,47,0 +51,1985,41,0.016344299 +51,1985,47,0.807164976 +51,1985,46,0.141704902 +53,2040,47,0 +51,1986,41,0.019292262 +51,1986,46,0.03818768 +51,1986,42,0.004999222 +51,1986,47,0.785112731 +51,1986,46,0.152408105 +51,1987,41,0.010324322 +51,1987,46,0.096040898 +51,1987,47,0.672904891 +51,1987,46,0.220729889 +51,1988,46,0.100546937 +51,1988,41,0.005927225 +51,1988,47,0.734098809 +51,1988,46,0.159427029 +51,1989,42,0.029446749 +53,2039,47,0 +51,1989,42,0.229572059 +51,1989,46,0.138069517 +51,1989,47,0.602911675 +51,1990,42,0.18569584 +51,1990,46,0.018298083 +51,1990,47,0.654983975 +51,1990,42,0.038738217 +51,1990,46,0.102283885 +51,1991,46,0.020987141 +51,1991,42,0.080245827 +51,1991,46,0.334875705 +51,1991,47,0.563891326 +51,1992,42,0.210282541 +51,1992,47,0.593608009 +51,1992,46,0.19610945 +51,1993,46,0.031476859 +51,1993,46,0.160105509 +51,1993,47,0.808417632 +51,1994,46,0.010794054 +51,1994,42,0.094246122 +51,1994,46,0.167034934 +51,1994,47,0.72792489 +51,1995,41,0.009966465 +51,1995,42,0.152840274 +51,1995,46,0.072441254 +51,1995,47,0.764752006 +51,1996,41,0.012219806 +51,1996,47,0.88711213 +51,1996,46,0.100668064 +51,1997,46,0.019321657 +51,1997,46,0.08505755 +51,1997,47,0.895620792 +51,1998,42,0.403567192 +51,1998,47,0.535323338 +51,1998,46,0.06110947 +51,1999,42,0.168802528 +51,1999,47,0.732574141 +51,1999,46,0.098623331 +51,2000,41,0.002063316 +51,2000,47,0.773841726 +51,2000,46,0.183996287 +51,2000,42,0.040098671 +51,2001,41,0.006348075 +51,2001,46,0.060699737 +51,2001,47,0.932952187 +51,2002,41,0.005359055 +51,2002,47,0.962181331 +51,2002,46,0.032459614 +51,2003,41,0.004344695 +51,2003,47,0.971822292 +51,2003,46,0.023833013 +51,2004,41,0.004963478 +51,2004,47,0.959083951 +51,2004,46,0.035952572 +51,2005,41,0.002677852 +51,2005,47,0.96802836 +51,2005,46,0.029293787 +51,2006,41,0.002905411 +51,2006,47,0.971654268 +51,2006,46,0.025440321 +51,2007,41,0.001371805 +51,2007,47,0.972072777 +51,2007,46,0.026555418 +51,2008,41,0.005399469 +51,2008,47,0.959227909 +51,2008,46,0.035372623 +51,2009,41,0.001544435 +51,2009,47,0.981489496 +51,2009,46,0.01696607 +51,2010,41,0.00205096 +51,2010,47,0.978348948 +51,2010,46,0.019600092 +51,2011,41,0.003077777 +51,2011,47,0.970481422 +51,2011,46,0.026440801 +62,1981,47,0.94026847 +31,1978,40,0.0086304 +62,1980,47,0.952396904 +62,1979,47,1 +62,1978,47,1 +62,1977,47,1 +62,1976,47,1 +62,1965,47,1 +62,1964,47,1 +62,1963,47,1 +62,1962,47,1 +62,1961,47,1 +62,1960,47,1 +61,1981,47,0.626761178 +61,1980,47,0.647565238 +61,1976,47,0.798827452 +31,2004,40,0.026229078 +31,2004,40,0.011743264 +61,1975,47,0.884485793 +61,1974,47,0.642799346 +31,2005,40,0.02384778 +31,2005,40,0.014490853 +61,1968,47,0.914637994 +31,2007,40,0.018663712 +61,1967,47,0.914637994 +31,2007,40,0.012788538 +61,1966,47,0.914637994 +61,1965,47,0.914637994 +61,1964,47,0.914637994 +53,1981,47,0.171348342 +53,1981,46,0.153151673 +53,1981,46,0.675499986 +53,1980,47,0.123869621 +53,1980,46,0.171130392 +53,1980,46,0.704999987 +53,1979,47,0.176478118 +53,1979,46,0.089021884 +53,1976,47,0.098350985 +53,1976,46,0.078649088 +53,1976,46,0.822999927 +53,1975,47,0.126448779 +53,1975,46,0.021051196 +53,1975,46,0.852500025 +53,1974,47,0.11072082 +53,1974,46,0.007279232 +53,1971,46,0.970499994 +53,1970,47,0.010000004 +53,1970,46,0.989999996 +53,1969,47,0.010000001 +53,1969,46,0.989999999 +53,1968,47,0.01 +53,1968,46,0.99 +53,1964,47,0.01 +53,1964,46,0.99 +53,1963,47,0.01 +53,1963,46,0.99 +53,1962,47,0.01 +53,1962,46,0.99 +53,1961,47,0.01 +52,1980,47,0.123869621 +52,1980,46,0.171130392 +52,1980,46,0.704999987 +52,1979,47,0.176478118 +52,1979,46,0.089021884 +52,1979,46,0.734499997 +52,1976,47,0.098350985 +52,1976,46,0.078649088 +52,1976,46,0.822999927 +52,1975,47,0.126448792 +52,1975,46,0.021051198 +52,1975,46,0.85250001 +52,1972,47,0.059000002 +52,1972,46,0.940999998 +52,1971,47,0.029500006 +52,1971,46,0.970499994 +52,1970,47,0.010000004 +52,1967,47,0.01 +52,1967,46,0.99 +52,1966,47,0.01 +52,1966,46,0.99 +52,1965,47,0.01 +52,1962,47,0.01 +52,1962,46,0.99 +52,1961,47,0.01 +52,1961,46,0.99 +52,1960,47,0.01 +51,1978,47,0.959999999 +51,1978,46,0.040000001 +51,1977,47,0.959999999 +51,1977,46,0.040000001 +51,1976,47,0.959999999 +51,1976,46,0.040000001 +51,1972,46,0.040000001 +51,1971,46,0.959999999 +51,1971,46,0.040000001 +51,1970,46,0.959999999 +51,1970,46,0.040000001 +51,1969,46,0.959999999 +51,1969,46,0.040000001 +51,1965,46,0.959999999 +51,1965,46,0.040000001 +51,1964,46,0.959999999 +51,1964,46,0.040000001 +51,1963,46,0.959999999 +51,1963,46,0.040000001 +51,1962,46,0.959999999 +52,1982,46,0.225774648 +52,1982,42,0.006891859 +52,1982,47,0.007422538 +52,2015,41,0.209835953 +52,2015,41,0.132786701 +53,2038,47,0 +52,2014,41,0.209835953 +52,2014,41,0.132786701 +52,1982,47,0.226952821 +52,1982,46,0.210373945 +52,1983,47,0.003588537 +52,2013,41,0.209835953 +52,2013,41,0.132786701 +52,1983,46,0.19602053 +52,1983,42,0.003759756 +52,1983,47,0.183988741 +52,1983,46,0.211216262 +53,2037,47,0 +52,2012,41,0.209835953 +52,2012,41,0.132786701 +52,2011,41,0.209835953 +52,2011,41,0.132786701 +52,1984,46,0.122335331 +52,1984,42,0.008398547 +52,1984,47,0.000346687 +52,1984,47,0.274120137 +52,1984,46,0.215553744 +53,2036,47,0 +52,2010,41,0.152544436 +52,2010,41,0.187714136 +52,2009,41,0.136637886 +52,2009,41,0.134773249 +52,1985,46,0.12353132 +52,1985,42,0.016815724 +53,2035,47,0 +52,1985,47,0.295901179 +52,1985,46,0.200905395 +53,2034,47,0 +52,2008,41,0.212911936 +52,2008,41,0.116194411 +52,2007,41,0.140913101 +52,1986,46,0.125256537 +52,1986,42,0.026152943 +53,2033,47,0 +52,2007,41,0.093427706 +53,2032,47,0 +52,2006,41,0.200065365 +52,2006,41,0.093516195 +52,1986,47,0.244934178 +52,1986,46,0.183885622 +52,1987,46,0.111542219 +52,1987,42,0.075044286 +53,2031,47,0 +52,2005,41,0.187017626 +52,2005,41,0.112097138 +52,1987,46,0.199070889 +52,2004,41,0.176747475 +52,1987,47,0.238355458 +52,1987,42,0.00484283 +52,2004,41,0.130671165 +53,2030,47,0 +52,1988,42,0.104329534 +52,2003,41,0.189930418 +52,1988,46,0.097419981 +52,2003,41,0.13975411 +52,2002,41,0.190213239 +52,1988,47,0.242566355 +52,1988,46,0.188980052 +52,1988,42,0.054957443 +52,2002,41,0.151345429 +52,1989,46,0.053211143 +52,1989,42,0.094112891 +52,2001,41,0.115991744 +53,2029,47,0 +52,2001,41,0.118996623 +52,1989,46,0.170334073 +52,2000,41,0.187706494 +52,1989,47,0.251923267 +52,1989,42,0.056577823 +52,2000,41,0.152968218 +52,1990,46,0.070265843 +52,1999,41,0.12560197 +52,1999,41,0.135706167 +53,2028,47,0 +52,1990,42,0.094861582 +52,1990,46,0.212078286 +52,1998,41,0.099567366 +52,1990,47,0.228452913 +52,1990,42,0.079079224 +52,1998,41,0.121318341 +52,1991,46,0.094314961 +52,1991,42,0.108961335 +52,1997,41,0.142778956 +52,1997,41,0.147983258 +53,2027,47,0 +52,1991,46,0.25988313 +52,1996,41,0.132085694 +52,1996,41,0.157500929 +52,1991,47,0.230845793 +52,1991,42,0.080855247 +52,1992,47,0.00055468 +52,1995,41,0.140746443 +52,1995,41,0.169708547 +52,1992,46,0.085261329 +52,1992,42,0.184837672 +52,1992,47,0.206604588 +52,1992,46,0.1872483 +52,1992,42,0.107776928 +52,1994,41,0.179035378 +52,1994,41,0.173020933 +52,1993,46,0.054284238 +52,1993,41,0.093905657 +52,1993,42,0.09825017 +52,1993,41,0.213803052 +53,2026,47,0 +52,1993,42,0.119961327 +52,1993,47,0.241526435 +52,1993,46,0.17826912 +52,1992,41,0.073909406 +52,1992,41,0.153807097 +52,1991,41,0.049246095 +52,1994,46,0.026147877 +52,1991,41,0.175893439 +53,2025,47,0 +52,1994,42,0.173198257 +52,1994,47,0.204362598 +52,1990,41,0.098585793 +52,1994,46,0.15035527 +52,1994,42,0.093879687 +52,1990,41,0.216676358 +52,1989,41,0.099034926 +52,1995,46,0.027409461 +52,1995,42,0.156471755 +52,1989,41,0.274805878 +53,2024,47,0 +52,1988,41,0.071342529 +52,1995,42,0.114364378 +52,1988,41,0.240404106 +52,1995,46,0.204354847 +52,1995,47,0.186944569 +53,2023,47,0 +52,1996,42,0.16781963 +52,1987,41,0.099546436 +52,1996,46,0.030865511 +52,1987,41,0.271597882 +52,1996,47,0.206747212 +52,1996,46,0.167826036 +52,1996,42,0.137154989 +52,1986,41,0.060604352 +52,1986,41,0.359166368 +52,1985,41,0.044392813 +52,1997,46,0.030611199 +52,1997,42,0.22063003 +52,1985,41,0.318453569 +52,1997,47,9.52E-06 +52,1997,47,0.162551693 +52,1984,41,0.04907516 +52,1997,46,0.135277828 +52,1997,42,0.160157513 +52,1984,41,0.330170394 +52,1998,46,0.051758628 +52,1998,42,0.121976851 +52,1983,41,0.062806407 +53,2022,47,0 +52,1983,41,0.338619767 +52,1998,46,0.257423914 +52,1982,41,0.063179108 +52,1998,47,0.234489574 +52,1998,42,0.113465326 +52,1982,41,0.259405081 +52,1999,47,2.90E-05 +52,1999,46,0.016938517 +52,1999,42,0.210354998 +52,1999,47,0.163546387 +52,1999,46,0.155606156 +32,2050,40,0.029407414 +52,1999,42,0.192216758 +32,2050,40,0.054754016 +52,2000,47,9.98E-05 +52,2000,42,0.141250108 +52,2000,46,0.008687934 +52,2000,42,0.154599176 +52,2000,47,0.171633435 +32,2049,40,0.029407414 +32,2049,40,0.054754016 +52,2000,46,0.183054878 +52,2001,42,0.148993814 +52,2001,47,0.000204027 +52,2001,46,0.016622073 +52,2001,46,0.211143602 +32,2048,40,0.029407414 +32,2048,40,0.054754016 +52,2001,47,0.184603095 +52,2001,42,0.203445022 +52,2002,47,2.24E-05 +52,2002,46,0.086159622 +52,2002,42,0.145198838 +52,2002,47,0.092393867 +52,2002,42,0.187548382 +32,2047,40,0.029407414 +52,2002,46,0.147118194 +32,2047,40,0.054754016 +53,2021,47,0 +52,2003,46,0.054342992 +52,2003,42,0.148895637 +52,2003,46,0.13372647 +32,2046,40,0.029407414 +52,2003,47,0.115528325 +52,2003,42,0.217822048 +32,2046,40,0.054754016 +52,2004,47,8.04E-05 +52,2004,46,0.091558218 +52,2004,42,0.116356238 +52,2004,47,0.100339479 +52,2004,42,0.206712807 +32,2045,40,0.029407414 +52,2004,46,0.177534185 +32,2045,40,0.054754016 +53,2020,47,0 +52,2005,46,0.045710611 +52,2005,42,0.080763448 +52,2005,46,0.211278769 +32,2044,40,0.029407414 +52,2005,47,0.147921602 +52,2005,42,0.215210806 +32,2044,40,0.054754016 +52,2006,42,0.107207223 +53,2019,47,0 +52,2006,46,0.060384999 +52,2006,47,0.136374308 +32,2043,40,0.029407414 +52,2006,42,0.233920754 +52,2006,46,0.168531155 +32,2043,40,0.054754016 +53,2018,47,0 +52,2007,46,0.039219026 +52,2007,42,0.061660973 +52,2007,46,0.247927814 +32,2042,40,0.029407414 +52,2007,47,0.192279987 +52,2007,42,0.224571393 +32,2042,40,0.054754016 +53,2017,47,0 +52,2008,46,0.049175206 +52,2008,42,0.10969634 +52,2008,47,0.07113871 +52,2008,42,0.317064122 +32,2041,40,0.029407414 +52,2008,46,0.123819274 +32,2041,40,0.054754016 +53,2016,47,0 +52,2009,46,0.034008861 +52,2009,42,0.125663753 +52,2009,46,0.158604464 +32,2040,40,0.029407414 +52,2009,47,0.194394067 +52,2009,42,0.21591772 +32,2040,40,0.054754016 +53,2015,47,0 +52,2010,46,0.000612756 +52,2010,42,0.161361165 +52,2010,47,0.156495713 +52,2010,42,0.1932916 +32,2039,40,0.029407414 +52,2010,46,0.147980194 +32,2039,40,0.054754016 +53,2014,47,0 +52,2011,46,0.03583902 +52,2011,42,0.15388533 +52,2011,46,0.155133314 +32,2038,40,0.029407414 +52,2011,47,0.120637097 +52,2011,42,0.191882585 +32,2038,40,0.054754016 +32,1981,30,0 +53,2031,41,0.263943645 +32,1981,30,0.0083938 +53,2033,41,0.263943645 +53,2032,41,0.263943645 +32,1981,30,0.830556184 +32,1979,30,0 +32,1979,30,0 +53,2037,41,0.263943645 +32,1979,30,0.003018839 +53,2039,41,0.263943645 +53,2038,41,0.263943645 +32,1979,30,0.744414902 +32,1978,30,0.77601255 +32,1977,30,0 +32,1977,30,0 +53,2043,41,0.263943645 +32,1977,30,0.003013201 +53,2045,41,0.263943645 +53,2048,41,0.263943645 +53,2047,41,0.263943645 +32,1976,30,0.846227222 +32,1975,30,0 +32,1975,30,0 +53,2049,41,0.263943645 +61,1961,46,0.085362006 +32,1974,30,0.003013202 +61,1963,46,0.085362006 +61,1962,46,0.085362006 +32,1974,30,0.625174134 +32,1973,30,0 +32,1972,30,0 +61,1967,46,0.085362006 +32,1972,30,0.0030132 +61,1969,46,0.085362006 +61,1968,46,0.085362006 +32,1972,30,0.716389668 +32,1971,30,0 +32,1970,30,0 +32,1970,30,0 +61,1973,46,0.085361997 +32,1970,30,0.003013199 +61,1974,46,0.085362008 +61,1973,46,0.072362582 +32,1970,30,0.762231989 +32,1968,30,0 +61,1975,46,0.030152223 +32,1968,30,0.003013201 +61,1976,46,0.115810543 +61,1976,46,0.085362004 +32,1968,30,0.644040872 +32,1966,30,0 +32,1966,30,0 +61,1978,46,0.163113787 +32,1966,30,0.003013198 +61,1979,46,0.142183221 +61,1979,46,0.085362008 +32,1966,30,0.227793305 +32,1965,30,0.227793305 +32,1964,30,0 +32,1964,30,0 +61,1981,46,0.287876817 +32,1964,30,0.003013198 +61,1982,46,0.173480251 +61,1984,46,0.005176451 +61,1983,46,0.206256314 +32,1963,30,0.227793305 +32,1962,30,0 +32,1962,30,0 +61,1984,46,0.152274556 +61,1986,46,0.006093059 +32,1961,30,0.003013198 +61,1987,46,0.003703382 +61,1986,46,0.14626861 +32,1961,30,0.227793305 +32,1960,30,0 +62,2050,46,0.04116734 +62,2049,46,0.04116734 +31,1981,30,0.006760198 +31,1981,30,0.943270894 +31,1980,30,0 +31,1980,30,0 +31,1979,30,0.0052896 +31,1979,30,0.853201774 +31,1978,30,0 +31,1978,30,0 +31,1978,30,0.0052896 +31,1977,30,0.878256098 +31,1976,30,0 +31,1976,30,0 +31,1976,30,0.005289599 +31,1976,30,0.937980807 +31,1974,30,0 +31,1974,30,0 +31,1974,30,0.005289602 +53,1982,46,0.174619015 +53,1982,42,0.008789772 +53,1982,47,0.002707061 +53,1982,47,0.268257419 +53,1982,46,0.277118766 +53,2013,47,0 +32,2037,40,0.029407414 +32,2037,40,0.054754016 +53,1983,46,0.153821615 +53,1983,42,0.004865195 +53,1983,47,0.001327891 +53,2012,47,0 +32,2036,40,0.029407414 +32,2036,40,0.054754016 +53,1983,47,0.220651484 +53,1983,46,0.28229344 +53,1984,46,0.09333268 +53,1984,42,0.010566006 +53,1984,47,0.000124723 +53,2011,47,0 +32,2035,40,0.029407414 +32,2035,40,0.054754016 +53,1984,47,0.31961163 +53,1984,46,0.280088342 +53,2010,47,0 +53,1985,46,0.094318533 +53,1985,42,0.021171926 +53,1985,47,0.345276045 +53,1985,46,0.261257749 +53,2009,47,0 +32,2034,40,0.029407414 +32,2034,40,0.054754016 +53,1986,46,0.09727279 +53,1986,42,0.033491638 +53,2008,47,0 +53,1986,47,0.290696739 +53,1986,46,0.243218369 +53,2007,47,0 +32,2033,40,0.029407414 +32,2033,40,0.054754016 +53,2006,47,0 +53,1987,46,0.406902385 +53,1987,47,0.477891863 +32,2032,40,0.029407414 +53,1988,42,0.019895042 +53,1988,47,0.152832122 +53,1988,46,0.576749437 +53,1988,42,0.051807996 +32,2032,40,0.054754016 +53,1989,46,0.147638192 +53,1989,46,0.064942759 +32,2031,40,0.029407414 +53,1989,47,0.057390114 +53,1989,42,0.28928564 +32,2031,40,0.054754016 +53,1990,46,0.057005495 +53,1990,42,0.198758973 +53,1990,46,0.1302941 +53,1990,47,0.205175038 +53,1991,46,0.071500721 +32,2030,40,0.029407414 +53,1991,46,0.24089286 +32,2030,40,0.054754016 +53,1991,47,0.056660215 +53,1992,46,0.136943299 +53,1992,47,0.194893802 +53,1992,46,0.236754065 +53,1992,42,0.18713831 +53,1993,46,0.037561891 +32,2029,40,0.029407414 +53,1993,42,0.378774192 +32,2029,40,0.054754016 +53,1993,42,0.006794561 +53,1993,47,0.077759479 +53,1993,46,0.081328088 +53,2005,47,0 +53,1994,42,0.215631429 +53,1994,46,0.002794851 +32,2028,40,0.029407414 +53,1994,47,0.174551847 +32,2028,40,0.054754016 +53,1994,46,0.156191045 +53,1994,42,0.037501104 +53,2003,47,0 +53,1995,46,0.20321733 +53,1995,47,0.174496426 +32,2027,40,0.029407414 +53,1995,42,0.037405344 +53,1995,46,0.276000384 +53,1996,46,0.041108974 +53,2001,47,0 +53,1996,42,0.144123811 +32,2027,40,0.054754016 +53,1996,46,0.27885987 +53,1996,42,0.16159704 +53,1996,47,0.350299611 +53,1997,47,4.83E-05 +53,1997,46,0.0158588 +32,2026,40,0.029407414 +53,1997,47,0.320790146 +32,2026,40,0.054754016 +53,1997,46,0.295675968 +53,1998,46,0.071196636 +53,1998,46,0.329566702 +32,2025,40,0.029407414 +53,1998,47,0.24870233 +53,1998,42,0.194620228 +32,2025,40,0.054754016 +53,1999,42,0.085135928 +53,1999,47,3.65E-06 +53,1999,47,0.091507353 +53,1999,46,0.212021082 +32,2024,40,0.029407414 +53,1999,42,0.085391307 +53,2000,46,0.133946347 +53,2000,47,2.51E-05 +53,2000,42,0.238047949 +32,2024,40,0.054754016 +53,2000,46,0.137464493 +53,2000,42,0.113320284 +53,2000,47,0.121816638 +32,2023,40,0.029407414 +53,2001,42,0.027734218 +32,2023,40,0.054754016 +53,2001,47,0.16303797 +53,2001,42,0.181008493 +53,2001,46,0.251533392 +32,2022,40,0.029407414 +53,2002,47,3.95E-05 +53,2002,46,0.289936462 +32,2022,40,0.054754016 +53,2002,47,0.235393634 +53,2002,42,0.204081265 +53,2002,46,0 +53,2003,47,0.275677443 +53,2003,42,0.221999933 +53,2003,46,0.246839705 +32,2021,40,0.029407414 +53,2004,47,0.000130635 +53,2004,46,0.322768674 +32,2021,40,0.054754016 +53,2004,47,0.235828531 +53,2004,42,0.207505751 +53,2048,46,0 +53,2005,47,0.293181633 +53,2005,42,0.182182846 +53,2005,46,0.323926068 +32,2020,40,0.029407414 +53,2047,46,0 +53,2006,46,0.276531237 +32,2020,40,0.054754016 +53,2006,47,0.289275516 +53,2006,42,0.211926917 +53,2046,46,0 +53,2007,47,0.344334278 +53,2007,42,0.171766654 +53,2007,46,0.343444295 +32,2019,40,0.029407414 +53,2045,46,0 +53,2008,46,0.228942746 +32,2019,40,0.054754016 +53,2008,47,0.170043383 +53,2008,42,0.323697318 +53,2044,46,0 +53,2009,47,0.394488993 +53,2009,42,0.187145081 +53,2009,46,0.248972955 +32,2018,40,0.029407414 +53,2043,46,0 +53,2010,46,0.254933133 +32,2018,40,0.054754016 +53,2010,47,0.34853007 +53,2010,42,0.183860754 +53,2042,46,0 +53,2011,47,0.275255116 +53,2011,42,0.186994284 +53,2011,46,0.273806955 +32,2017,40,0.029407414 +54,1980,46,0.25210084 +54,1980,42,0.336134454 +54,1980,47,0.033613445 +54,1980,41,0.226890756 +54,1980,47,0.008403361 +54,1980,41,0.042016807 +54,1980,46,0.042016807 +54,1980,42,0.058823529 +54,1981,47,0.033085502 +54,1981,41,0.228996283 +54,1981,46,0.252788104 +54,1981,42,0.334944238 +54,1981,42,0.059107807 +54,1981,47,0.005947955 +54,1981,41,0.040520446 +54,1981,46,0.044609665 +54,1982,42,0.334900838 +54,1982,47,0.032917604 +54,1982,41,0.229196483 +54,1982,46,0.253117972 +54,1982,46,0.044571662 +54,1982,42,0.059088121 +54,1982,47,0.005724801 +54,1982,41,0.040482519 +54,1983,46,0.253040501 +54,1983,42,0.334868343 +54,1983,47,0.032943677 +54,1983,41,0.229188806 +54,1983,47,0.005785807 +54,1983,41,0.040500649 +54,1983,46,0.044633369 +54,1983,42,0.059038848 +54,1984,42,0.334854579 +54,1984,47,0.032951733 +54,1984,41,0.22919245 +54,1984,46,0.253016708 +54,1984,46,0.044631807 +54,1984,42,0.059096535 +54,1984,47,0.005801361 +54,1984,41,0.040454827 +54,1985,46,0.253008307 +54,1985,42,0.334834252 +54,1985,47,0.032916699 +54,1985,41,0.229252387 +54,1985,47,0.005822529 +54,1985,41,0.04044717 +54,1985,46,0.044639391 +54,1985,42,0.059079264 +54,1986,47,0.032888229 +54,1986,41,0.229228487 +54,1986,46,0.252967359 +54,1986,42,0.334899439 +54,1986,42,0.059099901 +54,1986,47,0.005769865 +54,1986,41,0.04047148 +54,1986,46,0.044675239 +54,1987,42,0.334869432 +54,1987,47,0.032933948 +54,1987,41,0.229185868 +54,1987,46,0.25296467 +54,1987,46,0.044669739 +54,1987,42,0.059109063 +54,1987,47,0.005837174 +54,1987,41,0.040430108 +54,1988,46,0.252999169 +54,1988,42,0.334837867 +54,1988,47,0.03290177 +54,1988,41,0.229243378 +54,1988,47,0.005820169 +54,1988,41,0.040444233 +54,1988,46,0.044660886 +54,1988,42,0.059092529 +54,1989,47,0.032920727 +54,1989,41,0.229233605 +54,1989,46,0.252989202 +54,1989,42,0.334843297 +54,1989,42,0.059099289 +54,1989,47,0.005794048 +54,1989,41,0.040452989 +54,1989,46,0.044666842 +54,1990,42,0.334853952 +54,1990,47,0.032886226 +54,1990,41,0.229250357 +54,1990,46,0.253012869 +54,1990,46,0.04466535 +54,1990,42,0.059099884 +54,1990,47,0.005787431 +54,1990,41,0.04044393 +54,1991,46,0.252987337 +54,1991,42,0.334849296 +54,1991,47,0.032905297 +54,1991,41,0.229177813 +54,1991,47,0.005796326 +54,1991,41,0.040485108 +54,1991,46,0.044676297 +54,1991,42,0.059122525 +54,1992,42,0.334859038 +54,1992,47,0.032902156 +54,1992,41,0.229187396 +54,1992,46,0.253001658 +54,1992,46,0.044643449 +54,1992,42,0.059104478 +54,1992,47,0.005837479 +54,1992,41,0.040464345 +54,1993,46,0.252983988 +54,1993,42,0.334847162 +54,1993,47,0.032896652 +54,1993,41,0.22922853 +54,1993,47,0.005822416 +54,1993,41,0.040465793 +54,1993,46,0.044657933 +54,1993,42,0.059097525 +54,1994,47,0.031774652 +54,1994,41,0.221140361 +54,1994,46,0.244059783 +54,1994,42,0.323035621 +54,1994,42,0.070921986 +54,1994,47,0.006971992 +54,1994,41,0.04852346 +54,1994,46,0.053572144 +54,1995,42,0.31125043 +54,1995,47,0.030582209 +54,1995,41,0.213043312 +54,1995,46,0.235138958 +54,1995,46,0.062502389 +54,1995,42,0.082724875 +54,1995,47,0.008142513 +54,1995,41,0.056615314 +54,1996,46,0.229202947 +54,1996,42,0.303371288 +54,1996,47,0.029828087 +54,1996,41,0.207635633 +54,1996,47,0.008885912 +54,1996,41,0.062022773 +54,1996,46,0.06845278 +54,1996,42,0.09060058 +54,1997,47,0.028668026 +54,1997,41,0.199558524 +54,1997,46,0.220263209 +54,1997,42,0.291514152 +54,1997,42,0.102433709 +54,1997,47,0.010058957 +54,1997,41,0.07010534 +54,1997,46,0.077398083 +54,1998,42,0.279716068 +54,1998,47,0.027489783 +54,1998,41,0.191482039 +54,1998,46,0.211314261 +54,1998,46,0.086298129 +54,1998,42,0.114261131 +54,1998,47,0.011228221 +54,1998,41,0.078210368 +54,1999,46,0.202407749 +54,1999,42,0.267887402 +54,1999,47,0.026328435 +54,1999,41,0.183388553 +54,1999,47,0.012392827 +54,1999,41,0.086294545 +54,1999,46,0.09524773 +54,1999,42,0.126052758 +54,2000,42,0.260029239 +54,2000,47,0.025546993 +54,2000,41,0.177986471 +54,2000,46,0.196446713 +54,2000,46,0.101196818 +54,2000,42,0.133954456 +54,2000,47,0.013157569 +54,2000,41,0.09168174 +54,2001,46,0.187521435 +54,2001,42,0.248199446 +54,2001,47,0.024403113 +54,2001,41,0.16989843 +54,2001,47,0.014325287 +54,2001,41,0.099775755 +54,2001,46,0.110117399 +54,2001,42,0.145759135 +54,2002,47,0.023241111 +54,2002,41,0.161814733 +54,2002,46,0.178583256 +54,2002,42,0.236354879 +54,2002,42,0.157569919 +54,2002,47,0.015504109 +54,2002,41,0.107866454 +54,2002,46,0.119065539 +54,2003,42,0.232439567 +54,2003,47,0.02285315 +54,2003,41,0.159117967 +54,2003,46,0.175604327 +54,2003,46,0.122030126 +54,2003,42,0.161524924 +54,2003,47,0.01586521 +54,2003,41,0.110564729 +54,2004,46,0.169651407 +54,2004,42,0.224558401 +54,2004,47,0.022064666 +54,2004,41,0.15371921 +54,2004,47,0.016645274 +54,2004,41,0.115966832 +54,2004,46,0.127987287 +54,2004,42,0.169406923 +54,2005,47,0.021683406 +54,2005,41,0.151010011 +54,2005,46,0.166680101 +54,2005,42,0.220622612 +54,2005,42,0.173338277 +54,2005,47,0.017040417 +54,2005,41,0.118654178 +54,2005,46,0.130970997 +54,2006,42,0.212745598 +54,2006,47,0.020907757 +54,2006,41,0.145620694 +54,2006,46,0.160723399 +54,2006,46,0.136913116 +54,2006,42,0.181216509 +54,2006,47,0.017813856 +54,2006,41,0.124059071 +54,2007,46,0.15775465 +54,2007,42,0.208804169 +54,2007,47,0.020528186 +54,2007,41,0.142932279 +54,2007,47,0.018201234 +54,2007,41,0.126739238 +54,2007,46,0.139888115 +54,2007,42,0.185152129 +54,2008,42,0.200914622 +54,2008,47,0.019742939 +54,2008,41,0.137535759 +54,2008,46,0.151799025 +54,2008,46,0.145855997 +54,2008,42,0.193037592 +54,2008,47,0.018977396 +54,2008,41,0.132136669 +54,2009,46,0.148831419 +54,2009,42,0.196989418 +54,2009,47,0.019353743 +54,2009,41,0.13482542 +54,2009,47,0.019353743 +54,2009,41,0.13482542 +54,2009,46,0.148831419 +54,2009,42,0.196989418 +54,2010,47,0.01936711 +54,2010,41,0.134834861 +54,2010,46,0.148819817 +54,2010,42,0.196978212 +54,2010,42,0.196978212 +54,2010,47,0.01936711 +54,2010,41,0.134834861 +54,2010,46,0.148819817 +54,2011,42,0.196985065 +54,2011,47,0.019359239 +54,2011,41,0.13483264 +54,2011,46,0.148823056 +54,2011,46,0.148823056 +54,2011,42,0.196985065 +54,2011,47,0.019359239 +54,2011,41,0.13483264 +31,1972,30,0 +31,1972,30,0.944458343 +31,1971,30,0 +31,1971,30,0.943002909 +31,1970,30,0 +31,1969,30,0 +31,1969,30,0 +31,1969,30,0.0052896 +31,1968,30,0.0052896 +31,1968,30,0.86699901 +31,1967,30,0.891605468 +31,1966,30,0 +31,1965,30,0 +31,1965,30,0 +31,1964,30,0 +31,1964,30,0.0052896 +31,1963,30,0.0052896 +31,1963,30,0.797131296 +31,1962,30,0.0052896 +31,1962,30,0.797131296 +31,1961,30,0 +31,1961,30,0.797131296 +31,1960,30,0 +31,1960,30,0 +21,1981,20,0 +21,1981,20,0.076401726 +21,1981,20,0.923598274 +21,1980,20,0 +21,1980,20,0 +21,1978,20,0 +21,1978,20,0 +21,1978,20,0.015057296 +21,1978,20,0.984942704 +21,1977,20,0 +21,1976,20,0.983491195 +21,1975,20,0 +21,1975,20,0 +21,1975,20,0.018020195 +21,1975,20,0.981979805 +21,1973,20,0.006876911 +21,1973,20,0.993123089 +21,1972,20,0 +21,1972,20,0 +21,1972,20,0.006876911 +21,1970,20,0 +21,1970,20,0.006876911 +21,1970,20,0.993123089 +21,1969,20,0 +21,1969,20,0 +61,1982,47,0.001193458 +31,2001,40,0.004533833 +31,2001,40,0.017643651 +61,1982,47,0.814238269 +31,2000,40,0.003775808 +61,1983,47,0.000683273 +61,1983,47,0.781679967 +31,2000,40,0.0156968 +61,1984,47,4.78E-05 +61,1984,47,0.84250124 +31,1999,40,0.009699362 +31,1999,40,0.027557148 +53,2001,46,0 +61,1985,47,0.860685939 +53,2050,46,0 +31,1998,40,0.003702211 +31,1998,40,0.013186454 +61,1986,47,0.847638331 +31,1997,40,0.002958176 +61,1987,47,0.793779627 +31,1997,40,0.025563049 +61,1988,47,0.864622868 +31,1996,40,0.01110879 +61,1989,47,0.855463688 +61,1990,46,0 +61,1990,47,0.816255621 +31,1996,40,0.025640743 +61,1991,46,0 +61,1991,47,0.878006526 +61,1992,47,0.815108001 +31,1995,40,0.001000612 +31,1995,40,0.018089063 +61,1993,47,0.890189395 +61,1994,46,0 +61,1994,47,0.837515574 +31,1994,40,0.00098027 +31,1994,40,0.024339632 +61,1995,47,0.860609629 +61,1996,46,0 +61,1996,47,0.859972706 +61,1997,47,2.05E-06 +31,1993,40,0.007196006 +61,1997,47,0.918447589 +61,1998,47,0 +61,1998,47,0.884673736 +31,1993,40,0.03149009 +61,1999,47,4.78E-06 +61,1999,47,0.872506033 +61,2000,47,1.71E-05 +61,2000,47,0.856842633 +31,1992,40,0.011254808 +61,2001,47,3.82E-05 +31,1992,40,0.025588426 +61,2001,47,0.878785468 +61,2002,47,1.92E-05 +61,2002,47,0.720304942 +61,2003,47,0 +61,2003,47,0.779875066 +31,1991,40,0.025687324 +61,2004,47,6.16E-05 +61,2004,47,0.698551752 +61,2005,47,0 +61,2005,47,0.741680842 +61,2006,47,0 +61,2006,47,0.768436166 +31,1990,40,7.74E-05 +61,2007,47,0 +61,2007,47,0.760793382 +31,1990,40,0.021290752 +61,2008,47,0 +61,2008,47,0.702039298 +61,2009,47,0 +61,2009,47,0.834061941 +61,2010,47,0 +61,2010,47,0.81262676 +31,1989,40,0.019585249 +61,2011,47,0 +61,2011,47,0.761282048 +21,1967,20,0 +21,1967,20,0 +21,1967,20,0.006876911 +21,1967,20,0.993123089 +21,1966,20,0 +21,1966,20,0 +21,1966,20,0.006876911 +21,1966,20,0.993123089 +21,1965,20,0 +21,1965,20,0 +21,1965,20,0.006876911 +21,1965,20,0.993123089 +21,1964,20,0 +21,1964,20,0 +21,1964,20,0.006876911 +21,1964,20,0.993123089 +21,1963,20,0 +21,1963,20,0 +21,1963,20,0.006876911 +21,1963,20,0.993123089 +21,1962,20,0 +21,1962,20,0 +21,1962,20,0.006876911 +21,1962,20,0.993123089 +21,1961,20,0 +21,1961,20,0 +21,1961,20,0.006876911 +21,1961,20,0.993123089 +21,1960,20,0 +21,1960,20,0 +21,1960,20,0.006876911 +21,1960,20,0.993123089 +62,1982,47,0.95667749 +31,1978,40,0.148253178 +62,1983,47,0.946895671 +62,1984,47,0.96300567 +62,1985,47,0.967895561 +31,1977,40,0.008630399 +62,1986,47,0.964620904 +31,1977,40,0.107823903 +62,1987,47,0.98038982 +62,1988,47,0.987885007 +31,1976,40,0.008630398 +62,1989,47,0.960213217 +31,1976,40,0.048099197 +62,1990,47,0.888845236 +62,1991,47,0.97019166 +62,1992,47,0.973414535 +62,1993,47,0.917105308 +31,1975,40,0.008630396 +62,1994,47,0.964436114 +31,1975,40,0.029993088 +62,1995,47,0.960850896 +62,1996,47,0.944887778 +31,1974,40,0.008630404 +62,1997,47,0.964147019 +31,1974,40,0.052883012 +62,1998,47,0.946946438 +62,1999,47,0.979369991 +62,2000,47,0.984502523 +31,1973,40,0.008630404 +31,1973,40,0.044899697 +62,2001,47,0.962400534 +62,2002,47,0.949520684 +62,2003,47,0.962791106 +62,2004,47,0.944221137 +31,1972,40,0.008630398 +31,1972,40,0.04162166 +62,2005,47,0.954482538 +62,2006,47,0.960374562 +62,2007,47,0.958726464 +62,2008,47,0.945079271 +31,1971,40,0.008630398 +31,1971,40,0.043077094 +62,2009,47,0.973481682 +62,2010,47,0.969395319 +62,2011,47,0.95883266 +21,1982,20,0 +21,1983,20,0 +21,1984,20,0 +21,1985,20,0 +21,1986,20,0 +21,1987,20,0 +21,1988,20,0 +21,1989,20,0 +21,1990,20,0 +21,1991,20,0 +21,1992,20,0 +21,1993,20,0 +21,1994,20,0 +21,1995,20,0 +21,1996,20,0 +21,1997,20,0 +21,1998,20,0.009018558 +21,1999,20,0.01694404 +21,2000,20,0.02188453 +21,2001,20,0.022995654 +21,2002,20,0.03337271 +21,2003,20,0.036013313 +21,2004,20,0.029741849 +21,2005,20,0.030404416 +21,2006,20,0.034338336 +21,2007,20,0.036536282 +21,2008,20,0.050749959 +21,2009,20,0.044472842 +21,2010,20,0.054086617 +21,2011,20,0.074410674 +31,1982,30,0 +31,1983,30,0 +31,1984,30,0 +31,1985,30,0 +31,1986,30,0 +31,1987,30,0 +31,1988,30,0 +31,1989,30,0 +31,1990,30,0 +31,1991,30,0 +31,1992,30,0 +31,1993,30,0 +31,1994,30,0 +31,1995,30,0 +31,1996,30,0 +31,1997,30,0 +31,1998,30,0.02176256 +31,1999,30,0.03967244 +31,2000,30,0.052495206 +31,2001,30,0.052303046 +31,2002,30,0.068467528 +31,2003,30,0.069837446 +31,2004,30,0.052579575 +31,2005,30,0.059571872 +31,2006,30,0.049323938 +31,2007,30,0.125454439 +31,2008,30,0.10409241 +31,2009,30,0.168878576 +31,2010,30,0.192644118 +31,2011,30,0.263551808 +32,1982,30,0 +32,1983,30,0 +32,1984,30,0 +32,1985,30,0 +32,1986,30,0 +32,1987,30,0 +32,1988,30,0 +32,1989,30,0 +32,1990,30,0 +32,1991,30,0 +32,1992,30,0 +32,1993,30,0 +32,1994,30,0 +32,1995,30,0 +32,1996,30,0 +32,1997,30,0 +32,1998,30,0.020733535 +32,1999,30,0.036703065 +32,2000,30,0.047164473 +32,2001,30,0.043507145 +32,2002,30,0.063403919 +32,2003,30,0.064181167 +32,2004,30,0.048132394 +32,2005,30,0.054658556 +32,2006,30,0.044569228 +32,2007,30,0.11642785 +32,2008,30,0.095417968 +32,2009,30,0.158789934 +32,2010,30,0.18327284 +32,2011,30,0.244549218 +62,1975,47,1 +62,1974,47,1 +62,1973,47,1 +62,1972,47,1 +62,1971,47,1 +31,2002,40,0.02217444 +31,2002,40,0.0108056 +61,1979,47,0.772454771 +61,1973,47,0.842275421 +61,1972,47,0.914637994 +31,2006,40,0.028852165 +31,2008,40,0.022354938 +61,1963,47,0.914637994 +31,2008,40,0.01577563 +61,1962,47,0.914637994 +53,1979,46,0.734499997 +53,1978,47,0.150371857 +53,1978,46,0.085628029 +53,1978,46,0.764000113 +53,1974,46,0.881999949 +53,1973,47,0.086182667 +53,1973,46,0.002317418 +53,1973,46,0.911499915 +53,1967,47,0.009999996 +53,1967,46,0.990000004 +53,1966,47,0.01 +53,1961,46,0.99 +53,1960,47,0.01 +53,1960,46,0.99 +52,1978,47,0.150371898 +52,1978,46,0.085628053 +52,1978,46,0.764000049 +52,1974,47,0.11072082 +52,1974,46,0.007279232 +52,1974,46,0.881999949 +52,1970,46,0.989999996 +52,1969,47,0.010000001 +52,1969,46,0.989999999 +52,1965,46,0.99 +52,1964,47,0.01 +52,1964,46,0.99 +52,1960,46,0.99 +51,1981,47,0.959999999 +51,1981,46,0.040000001 +51,1975,47,0.959999999 +51,1975,46,0.040000001 +51,1974,47,0.959999999 +51,1974,46,0.040000001 +51,1968,46,0.959999999 +51,1968,46,0.040000001 +51,1967,46,0.959999999 +51,1962,46,0.040000001 +51,1961,46,0.959999999 +51,1961,46,0.040000001 +32,2017,40,0.054754016 +32,2016,40,0.029407414 +32,2016,40,0.054754016 +32,2015,40,0.029407414 +32,2015,40,0.054754016 +32,2014,40,0.029407414 +32,2014,40,0.054754016 +32,2013,40,0.029407414 +32,2013,40,0.054754016 +32,2012,40,0.029407414 +32,2012,40,0.054754016 +32,2011,40,0.029407414 +32,2011,40,0.054754016 +32,2010,40,0.014640578 +32,2010,40,0.033408158 +32,1980,30,0 +32,1980,30,0 +53,2034,41,0.263943645 +32,1978,30,0 +53,2044,41,0.263943645 +32,1977,30,0.760409144 +32,1976,30,0 +32,1975,30,0.0030132 +61,1960,46,0.085362006 +53,2050,41,0.263943645 +32,1975,30,0.694492988 +32,1973,30,0 +61,1964,46,0.085362006 +32,1973,30,0.0030132 +61,1966,46,0.085362006 +61,1965,46,0.085362006 +32,1971,30,0 +61,1970,46,0.085362006 +32,1971,30,0.003013201 +32,1969,30,0 +32,1969,30,0 +61,1974,46,0.271838646 +32,1969,30,0.003013199 +32,1967,30,0 +32,1967,30,0 +61,1977,46,0.085362006 +32,1965,30,0 +61,1982,46,0.011088022 +32,1964,30,0.227793305 +32,1963,30,0 +32,1962,30,0.003013198 +61,1985,46,0.134317245 +61,1985,46,0.004996816 +32,1962,30,0.227793305 +32,1960,30,0 +61,1987,46,0.202516991 +32,1960,30,0.003013198 +61,1988,46,0.13197746 +61,1988,46,0.003399672 +31,1980,30,0.0047006 +31,1980,30,0.887395431 +31,1978,30,0.837826823 +31,1977,30,0 +31,1975,30,0 +31,1975,30,0 +31,1974,30,0.933196982 +31,1973,30,0 +31,1973,30,0 +32,2009,40,0.018366494 +32,2009,40,0.043284766 +32,2008,40,0.03415015 +32,2008,40,0.065380261 +32,2007,40,0.028027643 +32,2007,40,0.055262554 +31,1972,30,0 +31,1971,30,0 +31,1970,30,0 +31,1969,30,0.98608 +31,1968,30,0 +31,1967,30,0 +31,1967,30,0 +31,1966,30,0 +31,1965,30,0.0052896 +31,1964,30,0.797131296 +31,1962,30,0 +31,1961,30,0 +31,1960,30,0.0052896 +21,1980,20,0.046670713 +21,1980,20,0.953329287 +21,1979,20,0 +21,1977,20,0 +21,1977,20,0.012931704 +21,1977,20,0.987068296 +21,1974,20,0 +21,1974,20,0 +21,1974,20,0.006876911 +21,1972,20,0.993123089 +21,1971,20,0 +21,1971,20,0 +21,1969,20,0.006876911 +21,1969,20,0.993123089 +21,1968,20,0 +21,1982,20,0 +21,1983,20,0 +21,1984,20,0 +21,1985,20,0 +21,1986,20,0 +21,1987,20,0 +21,1988,20,0 +21,1989,20,0 +21,1990,20,0 +21,1991,20,0 +21,1992,20,0 +21,1993,20,0 +21,1994,20,0 +21,1995,20,0 +21,1996,20,0 +21,1997,20,0 +21,1998,20,0 +21,1999,20,0 +21,2000,20,0 +21,2001,20,0 +21,2002,20,0 +21,2003,20,0 +21,2004,20,0 +21,2005,20,0 +21,2006,20,0 +21,2007,20,0 +21,2008,20,0 +21,2009,20,0 +21,2010,20,0 +21,2011,20,0 +31,1982,30,0 +31,1983,30,0 +31,1984,30,0 +31,1985,30,0 +31,1986,30,0 +31,1987,30,0 +31,1988,30,0 +31,1989,30,0 +31,1990,30,0 +31,1991,30,0 +31,1992,30,0 +31,1993,30,0 +31,1994,30,0 +31,1995,30,0 +31,1996,30,0 +31,1997,30,0 +31,1998,30,0 +31,1999,30,0 +31,2000,30,0 +31,2001,30,0 +31,2002,30,0 +31,2003,30,0 +31,2004,30,0 +31,2005,30,0 +31,2006,30,0 +31,2007,30,0 +31,2008,30,0 +31,2009,30,0 +31,2010,30,0 +31,2011,30,0 +32,1982,30,0 +32,1983,30,0 +32,1984,30,0 +32,1985,30,0 +32,1986,30,0 +32,1987,30,0 +32,1988,30,0 +32,1989,30,0 +32,1990,30,0 +32,1991,30,0 +32,1992,30,0 +32,1993,30,0 +32,1994,30,0 +32,1995,30,0 +32,1996,30,0 +32,1997,30,0 +32,1998,30,0 +32,1999,30,0 +32,2000,30,0 +32,2001,30,0 +32,2002,30,0 +32,2003,30,0 +32,2004,30,0 +32,2005,30,0 +32,2006,30,0 +32,2007,30,0 +32,2008,30,0 +32,2009,30,0 +32,2010,30,0 +32,2011,30,0 +62,1970,47,1 +62,1969,47,1 +62,1968,47,1 +62,1967,47,1 +62,1966,47,1 +61,1978,47,0.751524208 +31,2003,40,0.024228647 +31,2003,40,0.011713943 +61,1977,47,0.634995648 +61,1971,47,0.914637971 +31,2006,40,0.018986605 +61,1970,47,0.914637994 +61,1969,47,0.914637994 +61,1961,47,0.914637994 +61,1960,47,0.914637994 +31,2009,40,0.014428613 +53,1977,47,0.117481029 +53,1977,46,0.089019111 +53,1977,46,0.79349986 +53,1972,47,0.058999949 +53,1972,46,0.941000051 +53,1971,47,0.029500006 +53,1966,46,0.99 +53,1965,47,0.01 +53,1965,46,0.99 +52,1981,47,0.171348342 +52,1981,46,0.153151673 +52,1981,46,0.675499986 +52,1977,47,0.117481029 +52,1977,46,0.089019111 +52,1977,46,0.79349986 +52,1973,47,0.086182667 +52,1973,46,0.002317418 +52,1973,46,0.911499915 +52,1968,47,0.01 +52,1968,46,0.99 +52,1963,47,0.01 +52,1963,46,0.99 +51,1980,47,0.959999999 +51,1980,46,0.040000001 +51,1979,47,0.959999999 +51,1979,46,0.040000001 +51,1973,46,0.959999999 +51,1973,46,0.040000001 +51,1972,46,0.959999999 +51,1967,46,0.040000001 +51,1966,46,0.959999999 +51,1966,46,0.040000001 +51,1960,46,0.959999999 +51,1960,46,0.040000001 +32,1981,30,0 +32,2006,40,0.040515342 +32,2006,40,0.083179795 +32,2005,40,0.031398267 +32,2005,40,0.069811496 +32,2004,40,0.025386571 +32,2004,40,0.076606478 +32,2003,40,0.025422437 +32,2003,40,0.071041236 +32,2002,40,0.023630623 +32,2002,40,0.065515823 +32,2001,40,0.077995005 +32,2001,40,0.099817307 +32,2000,40,0.031250848 +32,2000,40,0.072357361 +32,1999,40,0.05904138 +32,1980,30,0.04252469 +53,2036,41,0.263943645 +53,2035,41,0.263943645 +32,1980,30,0.662347075 +32,1978,30,0 +53,2040,41,0.263943645 +32,1978,30,0.0030132 +53,2042,41,0.263943645 +53,2041,41,0.263943645 +32,1976,30,0 +53,2046,41,0.263943645 +32,1976,30,0.003013199 +32,1974,30,0 +32,1974,30,0 +32,1973,30,0.569830922 +32,1972,30,0 +61,1972,46,0.085362006 +61,1971,46,0.085362029 +32,1971,30,0.898931884 +61,1975,46,0.085361983 +32,1969,30,0.871487957 +32,1968,30,0 +32,1967,30,0.003013203 +61,1978,46,0.085362004 +61,1977,46,0.279642346 +32,1967,30,0.69214811 +32,1965,30,0 +61,1980,46,0.085361971 +32,1965,30,0.003013198 +61,1981,46,0.085362004 +61,1980,46,0.267072791 +32,1963,30,0 +61,1983,46,0.011380446 +32,1963,30,0.003013198 +32,1961,30,0 +32,1961,30,0 +32,1960,30,0.227793305 +31,1981,30,0 +31,1981,30,0 +31,1979,30,0 +31,1979,30,0 +31,1977,30,0 +31,1977,30,0.0052896 +31,1975,30,0.005289597 +31,1975,30,0.956086919 +31,1973,30,0.005289602 +31,1973,30,0.941180296 +32,1999,40,0.04709848 +32,1998,40,0.019746559 +32,1998,40,0.016500179 +32,1997,40,0.054314359 +32,1997,40,0.08898345 +32,1996,40,0.018734164 +31,1972,30,0.005289599 +31,1971,30,0.005289599 +31,1970,30,0.005289601 +31,1970,30,0.971970374 +31,1968,30,0 +31,1967,30,0.005289599 +31,1966,30,0.0052896 +31,1966,30,0.797131296 +31,1965,30,0.797131296 +31,1964,30,0 +31,1963,30,0 +31,1963,30,0 +31,1962,30,0 +31,1961,30,0.0052896 +31,1960,30,0.797131296 +21,1981,20,0 +21,1979,20,0 +21,1979,20,0.031166292 +21,1979,20,0.968833708 +21,1976,20,0 +21,1976,20,0 +21,1976,20,0.016508805 +21,1974,20,0.993123089 +21,1973,20,0 +21,1973,20,0 +21,1971,20,0.006876911 +21,1971,20,0.993123089 +21,1970,20,0 +21,1968,20,0 +21,1968,20,0.006876911 +21,1968,20,0.993123089 +11,2012,10,1 +21,2012,20,0.895682295 +21,2012,20,0.011745962 +31,2012,30,0.690095957 +62,1991,46,0.02980834 +62,1990,46,0.111154764 +31,2012,30,0.006598876 +32,2012,30,0.640338718 +53,1985,41,0.083853173 +32,2012,30,0.023677672 +53,1985,41,0.194122575 +41,2012,46,0.121361746 +41,2012,47,0.673076923 +41,2012,41,0.185550936 +41,2012,42,0.020010395 +42,2012,42,0.006565064 +42,2012,46,0.002344666 +42,2012,47,0.015709261 +42,2012,48,0.817350528 +42,2012,48,0.158030481 +43,2012,42,7.98E-05 +43,2012,46,0.009376746 +43,2012,47,0.000438911 +43,2012,41,0.000119703 +43,2012,47,0.044808874 +43,2012,41,0.010533876 +43,2012,42,0.006982683 +43,2012,46,0.927659405 +51,2012,41,0.003077777 +51,2012,47,0.970481422 +51,2012,46,0.026440801 +32,1996,40,0.090589749 +53,2049,46,0 +52,2012,46,0.03583902 +52,2012,42,0.15388533 +52,2012,46,0.155133314 +52,2012,47,0.120637097 +52,2012,42,0.191882585 +32,1995,40,0.044454429 +53,2041,46,0 +53,2012,47,0.275255116 +53,2012,42,0.186994284 +32,1995,40,0.081168745 +53,2012,46,0.273806955 +54,2012,42,0.196985065 +54,2012,47,0.019359239 +54,2012,41,0.13483264 +54,2012,46,0.148823056 +54,2012,46,0.148823056 +54,2012,42,0.196985065 +54,2012,47,0.019359239 +54,2012,41,0.13483264 +61,2012,47,0 +61,2012,47,0.761282048 +31,1970,40,0.008630401 +62,2012,47,0.95883266 +21,2012,20,0.092571743 +31,2012,30,0.271389912 +32,2012,30,0.25182218 +21,2012,20,0 +31,2012,30,0 +32,2012,30,0 +32,1994,40,0.011491339 +11,2013,10,1 +21,2013,20,0.937279596 +21,2013,20,0.011745962 +31,2013,30,0.755426926 +62,1989,46,0.039786783 +62,1988,46,0.012114993 +31,2013,30,0.006598876 +32,2013,30,0.700959199 +53,1984,41,0.090460309 +32,2013,30,0.023677672 +53,1984,41,0.20581631 +41,2013,46,0.121361746 +41,2013,47,0.673076923 +41,2013,41,0.185550936 +41,2013,42,0.020010395 +42,2013,42,0.006565064 +42,2013,46,0.002344666 +42,2013,47,0.015709261 +42,2013,48,0.817350528 +42,2013,48,0.158030481 +43,2013,42,7.98E-05 +43,2013,46,0.009376746 +43,2013,47,0.000438911 +43,2013,41,0.000119703 +43,2013,47,0.044808874 +43,2013,41,0.010533876 +43,2013,42,0.006982683 +43,2013,46,0.927659405 +51,2013,41,0.003077777 +51,2013,47,0.970481422 +51,2013,46,0.026440801 +32,1994,40,0.060502992 +53,2050,42,0 +52,2013,46,0.03583902 +52,2013,42,0.15388533 +52,2013,46,0.155133314 +52,2013,47,0.120637097 +52,2013,42,0.191882585 +32,1993,40,0.021141465 +53,2040,46,0 +53,2013,47,0.275255116 +53,2013,42,0.186994284 +32,1993,40,0.031865318 +53,2013,46,0.273806955 +54,2013,42,0.196985065 +54,2013,47,0.019359239 +54,2013,41,0.13483264 +54,2013,46,0.148823056 +54,2013,46,0.148823056 +54,2013,42,0.196985065 +54,2013,47,0.019359239 +54,2013,41,0.13483264 +61,2013,47,0 +61,2013,47,0.761282048 +31,1988,40,0.017231894 +31,1970,40,0.014109624 +62,2013,47,0.95883266 +21,2013,20,0.050974443 +31,2013,30,0.206058943 +32,2013,30,0.191201699 +21,2013,20,0 +31,2013,30,0 +32,2013,30,0 +32,1992,40,0.007409561 +11,2014,10,1 +21,2014,20,0.93746439 +21,2014,20,0.011745962 +31,2014,30,0.760432866 +62,1987,46,0.01961018 +62,1986,46,0.035379096 +31,2014,30,0.006598876 +32,2014,30,0.705604201 +53,1983,41,0.11822573 +32,2014,30,0.023677672 +53,1983,41,0.218814646 +41,2014,46,0.121361746 +41,2014,47,0.673076923 +41,2014,41,0.185550936 +41,2014,42,0.020010395 +42,2014,42,0.006565064 +42,2014,46,0.002344666 +42,2014,47,0.015709261 +42,2014,48,0.817350528 +42,2014,48,0.158030481 +43,2014,42,7.98E-05 +43,2014,46,0.009376746 +43,2014,47,0.000438911 +43,2014,41,0.000119703 +43,2014,47,0.044808874 +43,2014,41,0.010533876 +43,2014,42,0.006982683 +43,2014,46,0.927659405 +51,2014,41,0.003077777 +51,2014,47,0.970481422 +51,2014,46,0.026440801 +32,1992,40,0.047118656 +53,2049,42,0 +52,2014,46,0.03583902 +52,2014,42,0.15388533 +52,2014,46,0.155133314 +52,2014,47,0.120637097 +52,2014,42,0.191882585 +32,1991,40,0.054207364 +53,2039,46,0 +53,2014,47,0.275255116 +53,2014,42,0.186994284 +32,1991,40,0.066155314 +53,2014,46,0.273806955 +54,2014,42,0.196985065 +54,2014,47,0.019359239 +54,2014,41,0.13483264 +54,2014,46,0.148823056 +54,2014,46,0.148823056 +54,2014,42,0.196985065 +54,2014,47,0.019359239 +54,2014,41,0.13483264 +61,2014,47,0 +61,2014,47,0.761282048 +31,1969,40,0.0086304 +62,2014,47,0.95883266 +21,2014,20,0.050789648 +31,2014,30,0.201053004 +32,2014,30,0.186556697 +21,2014,20,0 +31,2014,30,0 +32,2014,30,0 +32,1990,40,0.014317627 +11,2015,10,1 +21,2015,20,0.937289164 +21,2015,20,0.011745962 +31,2015,30,0.770737658 +62,1985,46,0.032104439 +62,1984,46,0.03699433 +31,2015,30,0.006598876 +32,2015,30,0.715165998 +53,1982,41,0.10433851 +32,2015,30,0.023677672 +53,1982,41,0.164169457 +41,2015,46,0.121361746 +41,2015,47,0.673076923 +41,2015,41,0.185550936 +41,2015,42,0.020010395 +42,2015,42,0.006565064 +42,2015,46,0.002344666 +42,2015,47,0.015709261 +42,2015,48,0.817350528 +42,2015,48,0.158030481 +43,2015,42,7.98E-05 +43,2015,46,0.009376746 +43,2015,47,0.000438911 +43,2015,41,0.000119703 +43,2015,47,0.044808874 +43,2015,41,0.010533876 +43,2015,42,0.006982683 +43,2015,46,0.927659405 +51,2015,41,0.003077777 +51,2015,47,0.970481422 +51,2015,46,0.026440801 +32,1990,40,0.08260205 +53,2048,42,0 +52,2015,46,0.03583902 +52,2015,42,0.15388533 +52,2015,46,0.155133314 +52,2015,47,0.120637097 +52,2015,42,0.191882585 +32,1989,40,0.004632332 +53,2038,46,0 +53,2015,47,0.275255116 +53,2015,42,0.186994284 +32,1989,40,0.074962222 +53,2015,46,0.273806955 +54,2015,42,0.196985065 +54,2015,47,0.019359239 +54,2015,41,0.13483264 +54,2015,46,0.148823056 +54,2015,46,0.148823056 +54,2015,42,0.196985065 +54,2015,47,0.019359239 +54,2015,41,0.13483264 +61,2015,47,0 +61,2015,47,0.761282048 +62,2015,47,0.95883266 +21,2015,20,0.050964874 +31,2015,30,0.190748212 +32,2015,30,0.1769949 +21,2015,20,0 +31,2015,30,0 +32,2015,30,0 +32,1988,40,0.006450634 +11,2016,10,1 +21,2016,20,0.937234529 +21,2016,20,0.011745962 +31,2016,30,0.773297245 +62,1983,46,0.053104329 +62,1982,46,0.04332251 +31,2016,30,0.006598876 +32,2016,30,0.717541034 +52,2050,41,0.209835953 +32,2016,30,0.023677672 +52,2050,41,0.132786701 +41,2016,46,0.121361746 +41,2016,47,0.673076923 +41,2016,41,0.185550936 +41,2016,42,0.020010395 +42,2016,42,0.006565064 +42,2016,46,0.002344666 +42,2016,47,0.015709261 +42,2016,48,0.817350528 +42,2016,48,0.158030481 +43,2016,42,7.98E-05 +43,2016,46,0.009376746 +43,2016,47,0.000438911 +43,2016,41,0.000119703 +43,2016,47,0.044808874 +43,2016,41,0.010533876 +43,2016,42,0.006982683 +43,2016,46,0.927659405 +51,2016,41,0.003077777 +51,2016,47,0.970481422 +51,2016,46,0.026440801 +32,1988,40,0.065093051 +53,2047,42,0 +52,2016,46,0.03583902 +52,2016,42,0.15388533 +52,2016,46,0.155133314 +52,2016,47,0.120637097 +52,2016,42,0.191882585 +32,1987,40,0.00390157 +53,2037,46,0 +53,2016,47,0.275255116 +53,2016,42,0.186994284 +32,1987,40,0.06687605 +53,2016,46,0.273806955 +54,2016,42,0.196985065 +54,2016,47,0.019359239 +54,2016,41,0.13483264 +54,2016,46,0.148823056 +54,2016,46,0.148823056 +54,2016,42,0.196985065 +54,2016,47,0.019359239 +54,2016,41,0.13483264 +61,2016,47,0 +61,2016,47,0.761282048 +31,1987,40,0.000436644 +62,2016,47,0.95883266 +21,2016,20,0.051019509 +31,2016,30,0.188188625 +32,2016,30,0.174619865 +21,2016,20,0 +31,2016,30,0 +32,2016,30,0 +32,1986,40,0.029265052 +11,2017,10,1 +21,2017,20,0.937115854 +21,2017,20,0.011745962 +31,2017,30,0.772966078 +62,1981,46,0.05973153 +62,1980,46,0.047603096 +31,2017,30,0.006598876 +32,2017,30,0.717233745 +52,2049,41,0.209835953 +32,2017,30,0.023677672 +52,2049,41,0.132786701 +41,2017,46,0.121361746 +41,2017,47,0.673076923 +41,2017,41,0.185550936 +41,2017,42,0.020010395 +42,2017,42,0.006565064 +42,2017,46,0.002344666 +42,2017,47,0.015709261 +42,2017,48,0.817350528 +42,2017,48,0.158030481 +43,2017,42,7.98E-05 +43,2017,46,0.009376746 +43,2017,47,0.000438911 +43,2017,41,0.000119703 +43,2017,47,0.044808874 +43,2017,41,0.010533876 +43,2017,42,0.006982683 +43,2017,46,0.927659405 +51,2017,41,0.003077777 +51,2017,47,0.970481422 +51,2017,46,0.026440801 +32,1986,40,0.09282171 +53,2046,42,0 +52,2017,46,0.03583902 +52,2017,42,0.15388533 +52,2017,46,0.155133314 +52,2017,47,0.120637097 +52,2017,42,0.191882585 +32,1985,40,0.025649585 +53,2036,46,0 +53,2017,47,0.275255116 +53,2017,42,0.186994284 +32,1985,40,0.113288956 +53,2017,46,0.273806955 +54,2017,42,0.196985065 +54,2017,47,0.019359239 +54,2017,41,0.13483264 +54,2017,46,0.148823056 +54,2017,46,0.148823056 +54,2017,42,0.196985065 +54,2017,47,0.019359239 +54,2017,41,0.13483264 +61,2017,47,0 +61,2017,47,0.761282048 +31,1987,40,0.018521468 +31,1968,40,0.0086304 +62,2017,47,0.95883266 +21,2017,20,0.051138185 +31,2017,30,0.188519791 +32,2017,30,0.174927153 +21,2017,20,0 +31,2017,30,0 +32,2017,30,0 +32,1984,40,0.028355525 +11,2018,10,1 +21,2018,20,0.936412528 +21,2018,20,0.011745962 +31,2018,30,0.769864654 +61,2050,46,0.238717952 +61,2049,46,0.238717952 +31,2018,30,0.006598876 +32,2018,30,0.714355939 +52,2048,41,0.209835953 +32,2018,30,0.023677672 +52,2048,41,0.132786701 +41,2018,46,0.121361746 +41,2018,47,0.673076923 +41,2018,41,0.185550936 +41,2018,42,0.020010395 +42,2018,42,0.006565064 +42,2018,46,0.002344666 +42,2018,47,0.015709261 +42,2018,48,0.817350528 +42,2018,48,0.158030481 +43,2018,42,7.98E-05 +43,2018,46,0.009376746 +43,2018,47,0.000438911 +43,2018,41,0.000119703 +43,2018,47,0.044808874 +43,2018,41,0.010533876 +43,2018,42,0.006982683 +43,2018,46,0.927659405 +51,2018,41,0.003077777 +51,2018,47,0.970481422 +51,2018,46,0.026440801 +32,1984,40,0.130830293 +53,2045,42,0 +52,2018,46,0.03583902 +52,2018,42,0.15388533 +52,2018,46,0.155133314 +52,2018,47,0.120637097 +52,2018,42,0.191882585 +32,1983,40,0.035457143 +53,2035,46,0 +53,2018,47,0.275255116 +53,2018,42,0.186994284 +32,1983,40,0.135696636 +53,2018,46,0.273806955 +54,2018,42,0.196985065 +54,2018,47,0.019359239 +54,2018,41,0.13483264 +54,2018,46,0.148823056 +54,2018,46,0.148823056 +54,2018,42,0.196985065 +54,2018,47,0.019359239 +54,2018,41,0.13483264 +61,2018,47,0 +61,2018,47,0.761282048 +31,1968,40,0.11908099 +62,2018,47,0.95883266 +21,2018,20,0.05184151 +31,2018,30,0.191621216 +32,2018,30,0.177804959 +21,2018,20,0 +31,2018,30,0 +32,2018,30,0 +32,1982,40,0.038598436 +11,2019,10,1 +21,2019,20,0.935253486 +21,2019,20,0.011745962 +31,2019,30,0.765365055 +61,2048,46,0.238717952 +61,2047,46,0.238717952 +31,2019,30,0.006598876 +32,2019,30,0.71018077 +52,2047,41,0.209835953 +32,2019,30,0.023677672 +52,2047,41,0.132786701 +41,2019,46,0.121361746 +41,2019,47,0.673076923 +41,2019,41,0.185550936 +41,2019,42,0.020010395 +42,2019,42,0.006565064 +42,2019,46,0.002344666 +42,2019,47,0.015709261 +42,2019,48,0.817350528 +42,2019,48,0.158030481 +43,2019,42,7.98E-05 +43,2019,46,0.009376746 +43,2019,47,0.000438911 +43,2019,41,0.000119703 +43,2019,47,0.044808874 +43,2019,41,0.010533876 +43,2019,42,0.006982683 +43,2019,46,0.927659405 +51,2019,41,0.003077777 +51,2019,47,0.970481422 +51,2019,46,0.026440801 +32,1982,40,0.124233224 +53,2044,42,0 +52,2019,46,0.03583902 +52,2019,42,0.15388533 +52,2019,46,0.155133314 +52,2019,47,0.120637097 +52,2019,42,0.191882585 +32,1981,40,0.062246201 +53,2034,46,0 +53,2019,47,0.275255116 +53,2019,42,0.186994284 +32,1981,40,0.098803815 +53,2019,46,0.273806955 +54,2019,42,0.196985065 +54,2019,47,0.019359239 +54,2019,41,0.13483264 +54,2019,46,0.148823056 +54,2019,46,0.148823056 +54,2019,42,0.196985065 +54,2019,47,0.019359239 +54,2019,41,0.13483264 +61,2019,47,0 +61,2019,47,0.761282048 +62,2019,47,0.95883266 +21,2019,20,0.053000552 +31,2019,30,0.196120815 +32,2019,30,0.181980129 +21,2019,20,0 +31,2019,30,0 +32,2019,30,0 +32,1980,40,0.06435537 +11,2020,10,1 +21,2020,20,0.936415019 +21,2020,20,0.011745962 +31,2020,30,0.769827823 +61,2046,46,0.238717952 +61,2045,46,0.238717952 +31,2020,30,0.006598876 +32,2020,30,0.714321764 +52,2046,41,0.209835953 +32,2020,30,0.023677672 +52,2046,41,0.132786701 +41,2020,46,0.121361746 +41,2020,47,0.673076923 +41,2020,41,0.185550936 +41,2020,42,0.020010395 +42,2020,42,0.006565064 +42,2020,46,0.002344666 +42,2020,47,0.015709261 +42,2020,48,0.817350528 +42,2020,48,0.158030481 +43,2020,42,7.98E-05 +43,2020,46,0.009376746 +43,2020,47,0.000438911 +43,2020,41,0.000119703 +43,2020,47,0.044808874 +43,2020,41,0.010533876 +43,2020,42,0.006982683 +43,2020,46,0.927659405 +51,2020,41,0.003077777 +51,2020,47,0.970481422 +51,2020,46,0.026440801 +32,1980,40,0.230772865 +53,2043,42,0 +52,2020,46,0.03583902 +52,2020,42,0.15388533 +52,2020,46,0.155133314 +52,2020,47,0.120637097 +52,2020,42,0.191882585 +32,1979,40,0.038831154 +53,2033,46,0 +53,2020,47,0.275255116 +53,2020,42,0.186994284 +32,1979,40,0.213735105 +53,2020,46,0.273806955 +54,2020,42,0.196985065 +54,2020,47,0.019359239 +54,2020,41,0.13483264 +54,2020,46,0.148823056 +54,2020,46,0.148823056 +54,2020,42,0.196985065 +54,2020,47,0.019359239 +54,2020,41,0.13483264 +61,2020,47,0 +61,2020,47,0.761282048 +31,1986,40,0.004276547 +62,2020,47,0.95883266 +21,2020,20,0.05183902 +31,2020,30,0.191658046 +32,2020,30,0.177839134 +21,2020,20,0 +31,2020,30,0 +32,2020,30,0 +32,1978,40,0.038836804 +11,2021,10,1 +21,2021,20,0.935945215 +21,2021,20,0.011745962 +31,2021,30,0.767957726 +61,2044,46,0.238717952 +61,2043,46,0.238717952 +31,2021,30,0.006598876 +32,2021,30,0.712586505 +52,2045,41,0.209835953 +32,2021,30,0.023677672 +52,2045,41,0.132786701 +41,2021,46,0.121361746 +41,2021,47,0.673076923 +41,2021,41,0.185550936 +41,2021,42,0.020010395 +42,2021,42,0.006565064 +42,2021,46,0.002344666 +42,2021,47,0.015709261 +42,2021,48,0.817350528 +42,2021,48,0.158030481 +43,2021,42,7.98E-05 +43,2021,46,0.009376746 +43,2021,47,0.000438911 +43,2021,41,0.000119703 +43,2021,47,0.044808874 +43,2021,41,0.010533876 +43,2021,42,0.006982683 +43,2021,46,0.927659405 +51,2021,41,0.003077777 +51,2021,47,0.970481422 +51,2021,46,0.026440801 +32,1978,40,0.182137446 +53,2042,42,0 +52,2021,46,0.03583902 +52,2021,42,0.15388533 +52,2021,46,0.155133314 +52,2021,47,0.120637097 +52,2021,42,0.191882585 +32,1977,40,0.038836808 +53,2032,46,0 +53,2021,47,0.275255116 +53,2021,42,0.186994284 +32,1977,40,0.197740847 +53,2021,46,0.273806955 +54,2021,42,0.196985065 +54,2021,47,0.019359239 +54,2021,41,0.13483264 +54,2021,46,0.148823056 +54,2021,46,0.148823056 +54,2021,42,0.196985065 +54,2021,47,0.019359239 +54,2021,41,0.13483264 +61,2021,47,0 +61,2021,47,0.761282048 +31,1986,40,0.032262447 +31,1967,40,0.008630398 +62,2021,47,0.95883266 +21,2021,20,0.052308823 +31,2021,30,0.193528143 +32,2021,30,0.179574394 +21,2021,20,0 +31,2021,30,0 +32,2021,30,0 +32,1976,40,0.038836783 +11,2022,10,1 +21,2022,20,0.934551941 +21,2022,20,0.011745962 +31,2022,30,0.762234069 +61,2042,46,0.238717952 +61,2041,46,0.238717952 +31,2022,30,0.006598876 +32,2022,30,0.707275534 +52,2044,41,0.209835953 +32,2022,30,0.023677672 +52,2044,41,0.132786701 +41,2022,46,0.121361746 +41,2022,47,0.673076923 +41,2022,41,0.185550936 +41,2022,42,0.020010395 +42,2022,42,0.006565064 +42,2022,46,0.002344666 +42,2022,47,0.015709261 +42,2022,48,0.817350528 +42,2022,48,0.158030481 +43,2022,42,7.98E-05 +43,2022,46,0.009376746 +43,2022,47,0.000438911 +43,2022,41,0.000119703 +43,2022,47,0.044808874 +43,2022,41,0.010533876 +43,2022,42,0.006982683 +43,2022,46,0.927659405 +51,2022,41,0.003077777 +51,2022,47,0.970481422 +51,2022,46,0.026440801 +32,1976,40,0.111922796 +53,2041,42,0 +52,2022,46,0.03583902 +52,2022,42,0.15388533 +52,2022,46,0.155133314 +52,2022,47,0.120637097 +52,2022,42,0.191882585 +32,1975,40,0.038836799 +53,2031,46,0 +53,2022,47,0.275255116 +53,2022,42,0.186994284 +32,1975,40,0.263657013 +53,2022,46,0.273806955 +54,2022,42,0.196985065 +54,2022,47,0.019359239 +54,2022,41,0.13483264 +54,2022,46,0.148823056 +54,2022,46,0.148823056 +54,2022,42,0.196985065 +54,2022,47,0.019359239 +54,2022,41,0.13483264 +61,2022,47,0 +61,2022,47,0.761282048 +31,1967,40,0.094474534 +62,2022,47,0.95883266 +21,2022,20,0.053702097 +31,2022,30,0.1992518 +32,2022,30,0.184885364 +21,2022,20,0 +31,2022,30,0 +32,2022,30,0 +32,1974,40,0.038836825 +11,2023,10,1 +21,2023,20,0.935968351 +21,2023,20,0.011745962 +31,2023,30,0.76769074 +61,2040,46,0.238717952 +61,2039,46,0.238717952 +31,2023,30,0.006598876 +32,2023,30,0.712338769 +52,2043,41,0.209835953 +32,2023,30,0.023677672 +52,2043,41,0.132786701 +41,2023,46,0.121361746 +41,2023,47,0.673076923 +41,2023,41,0.185550936 +41,2023,42,0.020010395 +42,2023,42,0.006565064 +42,2023,46,0.002344666 +42,2023,47,0.015709261 +42,2023,48,0.817350528 +42,2023,48,0.158030481 +43,2023,42,7.98E-05 +43,2023,46,0.009376746 +43,2023,47,0.000438911 +43,2023,41,0.000119703 +43,2023,47,0.044808874 +43,2023,41,0.010533876 +43,2023,42,0.006982683 +43,2023,46,0.927659405 +51,2023,41,0.003077777 +51,2023,47,0.970481422 +51,2023,46,0.026440801 +32,1974,40,0.33297584 +53,2040,42,0 +52,2023,46,0.03583902 +52,2023,42,0.15388533 +52,2023,46,0.155133314 +52,2023,47,0.120637097 +52,2023,42,0.191882585 +32,1973,40,0.038836795 +53,2030,46,0 +53,2023,47,0.275255116 +53,2023,42,0.186994284 +32,1973,40,0.388319084 +53,2023,46,0.273806955 +54,2023,42,0.196985065 +54,2023,47,0.019359239 +54,2023,41,0.13483264 +54,2023,46,0.148823056 +54,2023,46,0.148823056 +54,2023,42,0.196985065 +54,2023,47,0.019359239 +54,2023,41,0.13483264 +61,2023,47,0 +61,2023,47,0.761282048 +62,2023,47,0.95883266 +21,2023,20,0.052285687 +31,2023,30,0.193795129 +32,2023,30,0.17982213 +21,2023,20,0 +31,2023,30,0 +32,2023,30,0 +32,1972,40,0.038836802 +11,2024,10,1 +21,2024,20,0.936511482 +21,2024,20,0.011745962 +31,2024,30,0.769780057 +61,2038,46,0.238717952 +61,2037,46,0.238717952 +31,2024,30,0.006598876 +32,2024,30,0.714277442 +52,2042,41,0.209835953 +32,2024,30,0.023677672 +52,2042,41,0.132786701 +41,2024,46,0.121361746 +41,2024,47,0.673076923 +41,2024,41,0.185550936 +41,2024,42,0.020010395 +42,2024,42,0.006565064 +42,2024,46,0.002344666 +42,2024,47,0.015709261 +42,2024,48,0.817350528 +42,2024,48,0.158030481 +43,2024,42,7.98E-05 +43,2024,46,0.009376746 +43,2024,47,0.000438911 +43,2024,41,0.000119703 +43,2024,47,0.044808874 +43,2024,41,0.010533876 +43,2024,42,0.006982683 +43,2024,46,0.927659405 +51,2024,41,0.003077777 +51,2024,47,0.970481422 +51,2024,46,0.026440801 +32,1972,40,0.24176033 +53,2039,42,0 +52,2024,46,0.03583902 +52,2024,42,0.15388533 +52,2024,46,0.155133314 +52,2024,47,0.120637097 +52,2024,42,0.191882585 +32,1971,40,0.038836814 +53,2029,46,0 +53,2024,47,0.275255116 +53,2024,42,0.186994284 +32,1971,40,0.059218101 +53,2024,46,0.273806955 +54,2024,42,0.196985065 +54,2024,47,0.019359239 +54,2024,41,0.13483264 +54,2024,46,0.148823056 +54,2024,46,0.148823056 +54,2024,42,0.196985065 +54,2024,47,0.019359239 +54,2024,41,0.13483264 +61,2024,47,0 +61,2024,47,0.761282048 +31,1985,40,0.003797829 +62,2024,47,0.95883266 +21,2024,20,0.051742556 +31,2024,30,0.191705812 +32,2024,30,0.177883456 +21,2024,20,0 +31,2024,30,0 +32,2024,30,0 +32,1970,40,0.038836783 +11,2025,10,1 +21,2025,20,0.936477874 +21,2025,20,0.011745962 +31,2025,30,0.769362904 +61,2036,46,0.238717952 +61,2035,46,0.238717952 +31,2025,30,0.006598876 +32,2025,30,0.713890367 +52,2041,41,0.209835953 +32,2025,30,0.023677672 +52,2041,41,0.132786701 +41,2025,46,0.121361746 +41,2025,47,0.673076923 +41,2025,41,0.185550936 +41,2025,42,0.020010395 +42,2025,42,0.006565064 +42,2025,46,0.002344666 +42,2025,47,0.015709261 +42,2025,48,0.817350528 +42,2025,48,0.158030481 +43,2025,42,7.98E-05 +43,2025,46,0.009376746 +43,2025,47,0.000438911 +43,2025,41,0.000119703 +43,2025,47,0.044808874 +43,2025,41,0.010533876 +43,2025,42,0.006982683 +43,2025,46,0.927659405 +51,2025,41,0.003077777 +51,2025,47,0.970481422 +51,2025,46,0.026440801 +32,1970,40,0.195918029 +53,2038,42,0 +52,2025,46,0.03583902 +52,2025,42,0.15388533 +52,2025,46,0.155133314 +52,2025,47,0.120637097 +52,2025,42,0.191882585 +32,1969,40,0.038836788 +53,2028,46,0 +53,2025,47,0.275255116 +53,2025,42,0.186994284 +32,1969,40,0.086662056 +53,2025,46,0.273806955 +54,2025,42,0.196985065 +54,2025,47,0.019359239 +54,2025,41,0.13483264 +54,2025,46,0.148823056 +54,2025,46,0.148823056 +54,2025,42,0.196985065 +54,2025,47,0.019359239 +54,2025,41,0.13483264 +61,2025,47,0 +61,2025,47,0.761282048 +31,1985,40,0.039897563 +31,1966,40,0.0086304 +62,2025,47,0.95883266 +21,2025,20,0.051776164 +31,2025,30,0.192122965 +32,2025,30,0.178270532 +21,2025,20,0 +31,2025,30,0 +32,2025,30,0 +32,1968,40,0.038836813 +11,2026,10,1 +21,2026,20,0.93638114 +21,2026,20,0.011745962 +31,2026,30,0.768839007 +61,2034,46,0.238717952 +61,2033,46,0.238717952 +31,2026,30,0.006598876 +32,2026,30,0.713404243 +52,2040,41,0.209835953 +32,2026,30,0.023677672 +52,2040,41,0.132786701 +41,2026,46,0.121361746 +41,2026,47,0.673076923 +41,2026,41,0.185550936 +41,2026,42,0.020010395 +42,2026,42,0.006565064 +42,2026,46,0.002344666 +42,2026,47,0.015709261 +42,2026,48,0.817350528 +42,2026,48,0.158030481 +43,2026,42,7.98E-05 +43,2026,46,0.009376746 +43,2026,47,0.000438911 +43,2026,41,0.000119703 +43,2026,47,0.044808874 +43,2026,41,0.010533876 +43,2026,42,0.006982683 +43,2026,46,0.927659405 +51,2026,41,0.003077777 +51,2026,47,0.970481422 +51,2026,46,0.026440801 +32,1968,40,0.314109114 +53,2037,42,0 +52,2026,46,0.03583902 +52,2026,42,0.15388533 +52,2026,46,0.155133314 +52,2026,47,0.120637097 +52,2026,42,0.191882585 +32,1967,40,0.038836835 +53,2027,46,0 +53,2026,47,0.275255116 +53,2026,42,0.186994284 +32,1967,40,0.266001853 +53,2026,46,0.273806955 +54,2026,42,0.196985065 +54,2026,47,0.019359239 +54,2026,41,0.13483264 +54,2026,46,0.148823056 +54,2026,46,0.148823056 +54,2026,42,0.196985065 +54,2026,47,0.019359239 +54,2026,41,0.13483264 +61,2026,47,0 +61,2026,47,0.761282048 +31,1966,40,0.188948704 +62,2026,47,0.95883266 +21,2026,20,0.051872898 +31,2026,30,0.192646862 +32,2026,30,0.178756655 +21,2026,20,0 +31,2026,30,0 +32,2026,30,0 +32,1966,40,0.038836772 +11,2027,10,1 +21,2027,20,0.936139927 +21,2027,20,0.011745962 +31,2027,30,0.767685487 +61,2032,46,0.238717952 +61,2031,46,0.238717952 +31,2027,30,0.006598876 +32,2027,30,0.712333895 +52,2039,41,0.209835953 +32,2027,30,0.023677672 +52,2039,41,0.132786701 +41,2027,46,0.121361746 +41,2027,47,0.673076923 +41,2027,41,0.185550936 +41,2027,42,0.020010395 +42,2027,42,0.006565064 +42,2027,46,0.002344666 +42,2027,47,0.015709261 +42,2027,48,0.817350528 +42,2027,48,0.158030481 +43,2027,42,7.98E-05 +43,2027,46,0.009376746 +43,2027,47,0.000438911 +43,2027,41,0.000119703 +43,2027,47,0.044808874 +43,2027,41,0.010533876 +43,2027,42,0.006982683 +43,2027,46,0.927659405 +51,2027,41,0.003077777 +51,2027,47,0.970481422 +51,2027,46,0.026440801 +32,1966,40,0.730356724 +53,2036,42,0 +52,2027,46,0.03583902 +52,2027,42,0.15388533 +52,2027,46,0.155133314 +52,2027,47,0.120637097 +52,2027,42,0.191882585 +32,1965,40,0.038836772 +53,2026,46,0 +53,2027,47,0.275255116 +53,2027,42,0.186994284 +32,1965,40,0.730356724 +53,2027,46,0.273806955 +54,2027,42,0.196985065 +54,2027,47,0.019359239 +54,2027,41,0.13483264 +54,2027,46,0.148823056 +54,2027,46,0.148823056 +54,2027,42,0.196985065 +54,2027,47,0.019359239 +54,2027,41,0.13483264 +61,2027,47,0 +61,2027,47,0.761282048 +62,2027,47,0.95883266 +21,2027,20,0.052114111 +31,2027,30,0.193800382 +32,2027,30,0.179827004 +21,2027,20,0 +31,2027,30,0 +32,2027,30,0 +32,1964,40,0.038836772 +11,2028,10,1 +21,2028,20,0.935788012 +21,2028,20,0.011745962 +31,2028,30,0.766182378 +61,2030,46,0.238717952 +61,2029,46,0.238717952 +31,2028,30,0.006598876 +32,2028,30,0.710939163 +52,2038,41,0.209835953 +32,2028,30,0.023677672 +52,2038,41,0.132786701 +41,2028,46,0.121361746 +41,2028,47,0.673076923 +41,2028,41,0.185550936 +41,2028,42,0.020010395 +42,2028,42,0.006565064 +42,2028,46,0.002344666 +42,2028,47,0.015709261 +42,2028,48,0.817350528 +42,2028,48,0.158030481 +43,2028,42,7.98E-05 +43,2028,46,0.009376746 +43,2028,47,0.000438911 +43,2028,41,0.000119703 +43,2028,47,0.044808874 +43,2028,41,0.010533876 +43,2028,42,0.006982683 +43,2028,46,0.927659405 +51,2028,41,0.003077777 +51,2028,47,0.970481422 +51,2028,46,0.026440801 +32,1964,40,0.730356724 +53,2035,42,0 +52,2028,46,0.03583902 +52,2028,42,0.15388533 +52,2028,46,0.155133314 +52,2028,47,0.120637097 +52,2028,42,0.191882585 +32,1963,40,0.038836772 +53,2025,46,0 +53,2028,47,0.275255116 +53,2028,42,0.186994284 +32,1963,40,0.730356724 +53,2028,46,0.273806955 +54,2028,42,0.196985065 +54,2028,47,0.019359239 +54,2028,41,0.13483264 +54,2028,46,0.148823056 +54,2028,46,0.148823056 +54,2028,42,0.196985065 +54,2028,47,0.019359239 +54,2028,41,0.13483264 +61,2028,47,0 +61,2028,47,0.761282048 +31,1984,40,0.004279158 +62,2028,47,0.95883266 +21,2028,20,0.052466026 +31,2028,30,0.195303491 +32,2028,30,0.181221736 +21,2028,20,0 +31,2028,30,0 +32,2028,30,0 +32,1962,40,0.038836772 +11,2029,10,1 +21,2029,20,0.935320298 +21,2029,20,0.011745962 +31,2029,30,0.764223511 +61,2028,46,0.238717952 +61,2027,46,0.238717952 +31,2029,30,0.006598876 +32,2029,30,0.709121534 +52,2037,41,0.209835953 +32,2029,30,0.023677672 +52,2037,41,0.132786701 +41,2029,46,0.121361746 +41,2029,47,0.673076923 +41,2029,41,0.185550936 +41,2029,42,0.020010395 +42,2029,42,0.006565064 +42,2029,46,0.002344666 +42,2029,47,0.015709261 +42,2029,48,0.817350528 +42,2029,48,0.158030481 +43,2029,42,7.98E-05 +43,2029,46,0.009376746 +43,2029,47,0.000438911 +43,2029,41,0.000119703 +43,2029,47,0.044808874 +43,2029,41,0.010533876 +43,2029,42,0.006982683 +43,2029,46,0.927659405 +51,2029,41,0.003077777 +51,2029,47,0.970481422 +51,2029,46,0.026440801 +32,1962,40,0.730356724 +53,2034,42,0 +52,2029,46,0.03583902 +52,2029,42,0.15388533 +52,2029,46,0.155133314 +52,2029,47,0.120637097 +52,2029,42,0.191882585 +32,1961,40,0.038836772 +53,2024,46,0 +53,2029,47,0.275255116 +53,2029,42,0.186994284 +32,1961,40,0.730356724 +53,2029,46,0.273806955 +54,2029,42,0.196985065 +54,2029,47,0.019359239 +54,2029,41,0.13483264 +54,2029,46,0.148823056 +54,2029,46,0.148823056 +54,2029,42,0.196985065 +54,2029,47,0.019359239 +54,2029,41,0.13483264 +61,2029,47,0 +61,2029,47,0.761282048 +31,1984,40,0.046960501 +31,1965,40,0.0086304 +62,2029,47,0.95883266 +21,2029,20,0.05293374 +31,2029,30,0.197262358 +32,2029,30,0.183039365 +21,2029,20,0 +31,2029,30,0 +32,2029,30,0 +32,1960,40,0.038836772 +11,2030,10,1 +21,2030,20,0.934850769 +21,2030,20,0.011745962 +31,2030,30,0.762316425 +61,2026,46,0.238717952 +61,2025,46,0.238717952 +31,2030,30,0.006598876 +32,2030,30,0.707351952 +52,2036,41,0.209835953 +32,2030,30,0.023677672 +52,2036,41,0.132786701 +41,2030,46,0.121361746 +41,2030,47,0.673076923 +41,2030,41,0.185550936 +41,2030,42,0.020010395 +42,2030,42,0.006565064 +42,2030,46,0.002344666 +42,2030,47,0.015709261 +42,2030,48,0.817350528 +42,2030,48,0.158030481 +43,2030,42,7.98E-05 +43,2030,46,0.009376746 +43,2030,47,0.000438911 +43,2030,41,0.000119703 +43,2030,47,0.044808874 +43,2030,41,0.010533876 +43,2030,42,0.006982683 +43,2030,46,0.927659405 +51,2030,41,0.003077777 +51,2030,47,0.970481422 +51,2030,46,0.026440801 +32,1960,40,0.730356724 +53,2033,42,0 +52,2030,46,0.03583902 +52,2030,42,0.15388533 +52,2030,46,0.155133314 +52,2030,47,0.120637097 +52,2030,42,0.191882585 +31,2050,40,0.013420285 +53,2023,46,0 +53,2030,47,0.275255116 +53,2030,42,0.186994284 +31,2050,40,0.01849497 +53,2030,46,0.273806955 +54,2030,42,0.196985065 +54,2030,47,0.019359239 +54,2030,41,0.13483264 +54,2030,46,0.148823056 +54,2030,46,0.148823056 +54,2030,42,0.196985065 +54,2030,47,0.019359239 +54,2030,41,0.13483264 +61,2030,47,0 +61,2030,47,0.761282048 +31,1965,40,0.188948704 +62,2030,47,0.95883266 +21,2030,20,0.05340327 +31,2030,30,0.199169444 +32,2030,30,0.184808946 +21,2030,20,0 +31,2030,30,0 +32,2030,30,0 +31,2049,40,0.013420285 +11,2031,10,1 +21,2031,20,0.934728261 +21,2031,20,0.011745962 +31,2031,30,0.761763286 +61,2024,46,0.238717952 +61,2023,46,0.238717952 +31,2031,30,0.006598876 +32,2031,30,0.706838696 +52,2035,41,0.209835953 +32,2031,30,0.023677672 +52,2035,41,0.132786701 +41,2031,46,0.121361746 +41,2031,47,0.673076923 +41,2031,41,0.185550936 +41,2031,42,0.020010395 +42,2031,42,0.006565064 +42,2031,46,0.002344666 +42,2031,47,0.015709261 +42,2031,48,0.817350528 +42,2031,48,0.158030481 +43,2031,42,7.98E-05 +43,2031,46,0.009376746 +43,2031,47,0.000438911 +43,2031,41,0.000119703 +43,2031,47,0.044808874 +43,2031,41,0.010533876 +43,2031,42,0.006982683 +43,2031,46,0.927659405 +51,2031,41,0.003077777 +51,2031,47,0.970481422 +51,2031,46,0.026440801 +31,2049,40,0.01849497 +53,2032,42,0 +52,2031,46,0.03583902 +52,2031,42,0.15388533 +52,2031,46,0.155133314 +52,2031,47,0.120637097 +52,2031,42,0.191882585 +31,2048,40,0.013420285 +53,2022,46,0 +53,2031,47,0.275255116 +53,2031,42,0.186994284 +31,2048,40,0.01849497 +53,2031,46,0.273806955 +54,2031,42,0.196985065 +54,2031,47,0.019359239 +54,2031,41,0.13483264 +54,2031,46,0.148823056 +54,2031,46,0.148823056 +54,2031,42,0.196985065 +54,2031,47,0.019359239 +54,2031,41,0.13483264 +61,2031,47,0 +61,2031,47,0.761282048 +62,2031,47,0.95883266 +21,2031,20,0.053525778 +31,2031,30,0.199722583 +32,2031,30,0.185322203 +21,2031,20,0 +31,2031,30,0 +32,2031,30,0 +31,2047,40,0.013420285 +11,2032,10,1 +21,2032,20,0.935037266 +21,2032,20,0.011745962 +31,2032,30,0.762892592 +61,2022,46,0.238717952 +61,2021,46,0.238717952 +31,2032,30,0.006598876 +32,2032,30,0.707886576 +52,2034,41,0.209835953 +32,2032,30,0.023677672 +52,2034,41,0.132786701 +41,2032,46,0.121361746 +41,2032,47,0.673076923 +41,2032,41,0.185550936 +41,2032,42,0.020010395 +42,2032,42,0.006565064 +42,2032,46,0.002344666 +42,2032,47,0.015709261 +42,2032,48,0.817350528 +42,2032,48,0.158030481 +43,2032,42,7.98E-05 +43,2032,46,0.009376746 +43,2032,47,0.000438911 +43,2032,41,0.000119703 +43,2032,47,0.044808874 +43,2032,41,0.010533876 +43,2032,42,0.006982683 +43,2032,46,0.927659405 +51,2032,41,0.003077777 +51,2032,47,0.970481422 +51,2032,46,0.026440801 +31,2047,40,0.01849497 +53,2031,42,0 +52,2032,46,0.03583902 +52,2032,42,0.15388533 +52,2032,46,0.155133314 +52,2032,47,0.120637097 +52,2032,42,0.191882585 +31,2046,40,0.013420285 +53,2021,46,0 +53,2032,47,0.275255116 +53,2032,42,0.186994284 +31,2046,40,0.01849497 +53,2032,46,0.273806955 +54,2032,42,0.196985065 +54,2032,47,0.019359239 +54,2032,41,0.13483264 +54,2032,46,0.148823056 +54,2032,46,0.148823056 +54,2032,42,0.196985065 +54,2032,47,0.019359239 +54,2032,41,0.13483264 +61,2032,47,0 +61,2032,47,0.761282048 +31,1983,40,0.005427519 +62,2032,47,0.95883266 +21,2032,20,0.053216772 +31,2032,30,0.198593278 +32,2032,30,0.184274322 +21,2032,20,0 +31,2032,30,0 +32,2032,30,0 +31,2045,40,0.013420285 +11,2033,10,1 +21,2033,20,0.935509053 +21,2033,20,0.011745962 +31,2033,30,0.764709409 +61,2020,46,0.238717952 +61,2019,46,0.238717952 +31,2033,30,0.006598876 +32,2033,30,0.709572397 +52,2033,41,0.209835953 +32,2033,30,0.023677672 +52,2033,41,0.132786701 +41,2033,46,0.121361746 +41,2033,47,0.673076923 +41,2033,41,0.185550936 +41,2033,42,0.020010395 +42,2033,42,0.006565064 +42,2033,46,0.002344666 +42,2033,47,0.015709261 +42,2033,48,0.817350528 +42,2033,48,0.158030481 +43,2033,42,7.98E-05 +43,2033,46,0.009376746 +43,2033,47,0.000438911 +43,2033,41,0.000119703 +43,2033,47,0.044808874 +43,2033,41,0.010533876 +43,2033,42,0.006982683 +43,2033,46,0.927659405 +51,2033,41,0.003077777 +51,2033,47,0.970481422 +51,2033,46,0.026440801 +31,2045,40,0.01849497 +53,2030,42,0 +52,2033,46,0.03583902 +52,2033,42,0.15388533 +52,2033,46,0.155133314 +52,2033,47,0.120637097 +52,2033,42,0.191882585 +31,2044,40,0.013420285 +53,2020,46,0 +53,2033,47,0.275255116 +53,2033,42,0.186994284 +31,2044,40,0.01849497 +53,2033,46,0.273806955 +54,2033,42,0.196985065 +54,2033,47,0.019359239 +54,2033,41,0.13483264 +54,2033,46,0.148823056 +54,2033,46,0.148823056 +54,2033,42,0.196985065 +54,2033,47,0.019359239 +54,2033,41,0.13483264 +61,2033,47,0 +61,2033,47,0.761282048 +31,1983,40,0.049404944 +31,1964,40,0.0086304 +62,2033,47,0.95883266 +21,2033,20,0.052744985 +31,2033,30,0.196776461 +32,2033,30,0.182588501 +21,2033,20,0 +31,2033,30,0 +32,2033,30,0 +31,2043,40,0.013420285 +11,2034,10,1 +21,2034,20,0.935899838 +21,2034,20,0.011745962 +31,2034,30,0.766264649 +61,2018,46,0.238717952 +61,2017,46,0.238717952 +31,2034,30,0.006598876 +32,2034,30,0.711015501 +52,2032,41,0.209835953 +32,2034,30,0.023677672 +52,2032,41,0.132786701 +41,2034,46,0.121361746 +41,2034,47,0.673076923 +41,2034,41,0.185550936 +41,2034,42,0.020010395 +42,2034,42,0.006565064 +42,2034,46,0.002344666 +42,2034,47,0.015709261 +42,2034,48,0.817350528 +42,2034,48,0.158030481 +43,2034,42,7.98E-05 +43,2034,46,0.009376746 +43,2034,47,0.000438911 +43,2034,41,0.000119703 +43,2034,47,0.044808874 +43,2034,41,0.010533876 +43,2034,42,0.006982683 +43,2034,46,0.927659405 +51,2034,41,0.003077777 +51,2034,47,0.970481422 +51,2034,46,0.026440801 +31,2043,40,0.01849497 +53,2029,42,0 +52,2034,46,0.03583902 +52,2034,42,0.15388533 +52,2034,46,0.155133314 +52,2034,47,0.120637097 +52,2034,42,0.191882585 +31,2042,40,0.013420285 +53,2019,46,0 +53,2034,47,0.275255116 +53,2034,42,0.186994284 +31,2042,40,0.01849497 +53,2034,46,0.273806955 +54,2034,42,0.196985065 +54,2034,47,0.019359239 +54,2034,41,0.13483264 +54,2034,46,0.148823056 +54,2034,46,0.148823056 +54,2034,42,0.196985065 +54,2034,47,0.019359239 +54,2034,41,0.13483264 +61,2034,47,0 +61,2034,47,0.761282048 +31,1964,40,0.188948704 +62,2034,47,0.95883266 +21,2034,20,0.052354201 +31,2034,30,0.195221221 +32,2034,30,0.181145397 +21,2034,20,0 +31,2034,30,0 +32,2034,30,0 +31,2041,40,0.013420285 +11,2035,10,1 +21,2035,20,0.936500582 +21,2035,20,0.011745962 +31,2035,30,0.768623713 +61,2016,46,0.238717952 +61,2015,46,0.238717952 +31,2035,30,0.006598876 +32,2035,30,0.713204472 +52,2031,41,0.209835953 +32,2035,30,0.023677672 +52,2031,41,0.132786701 +41,2035,46,0.121361746 +41,2035,47,0.673076923 +41,2035,41,0.185550936 +41,2035,42,0.020010395 +42,2035,42,0.006565064 +42,2035,46,0.002344666 +42,2035,47,0.015709261 +42,2035,48,0.817350528 +42,2035,48,0.158030481 +43,2035,42,7.98E-05 +43,2035,46,0.009376746 +43,2035,47,0.000438911 +43,2035,41,0.000119703 +43,2035,47,0.044808874 +43,2035,41,0.010533876 +43,2035,42,0.006982683 +43,2035,46,0.927659405 +51,2035,41,0.003077777 +51,2035,47,0.970481422 +51,2035,46,0.026440801 +31,2041,40,0.01849497 +53,2028,42,0 +52,2035,46,0.03583902 +52,2035,42,0.15388533 +52,2035,46,0.155133314 +52,2035,47,0.120637097 +52,2035,42,0.191882585 +31,2040,40,0.013420285 +53,2018,46,0 +53,2035,47,0.275255116 +53,2035,42,0.186994284 +31,2040,40,0.01849497 +53,2035,46,0.273806955 +54,2035,42,0.196985065 +54,2035,47,0.019359239 +54,2035,41,0.13483264 +54,2035,46,0.148823056 +54,2035,46,0.148823056 +54,2035,42,0.196985065 +54,2035,47,0.019359239 +54,2035,41,0.13483264 +61,2035,47,0 +61,2035,47,0.761282048 +62,2035,47,0.95883266 +21,2035,20,0.051753457 +31,2035,30,0.192862156 +32,2035,30,0.178956426 +21,2035,20,0 +31,2035,30,0 +32,2035,30,0 +31,2039,40,0.013420285 +11,2036,10,1 +21,2036,20,0.936788299 +21,2036,20,0.011745962 +31,2036,30,0.76964069 +61,2014,46,0.238717952 +61,2013,46,0.238717952 +31,2036,30,0.006598876 +32,2036,30,0.714148124 +52,2030,41,0.209835953 +32,2036,30,0.023677672 +52,2030,41,0.132786701 +41,2036,46,0.121361746 +41,2036,47,0.673076923 +41,2036,41,0.185550936 +41,2036,42,0.020010395 +42,2036,42,0.006565064 +42,2036,46,0.002344666 +42,2036,47,0.015709261 +42,2036,48,0.817350528 +42,2036,48,0.158030481 +43,2036,42,7.98E-05 +43,2036,46,0.009376746 +43,2036,47,0.000438911 +43,2036,41,0.000119703 +43,2036,47,0.044808874 +43,2036,41,0.010533876 +43,2036,42,0.006982683 +43,2036,46,0.927659405 +51,2036,41,0.003077777 +51,2036,47,0.970481422 +51,2036,46,0.026440801 +31,2039,40,0.01849497 +53,2027,42,0 +52,2036,46,0.03583902 +52,2036,42,0.15388533 +52,2036,46,0.155133314 +52,2036,47,0.120637097 +52,2036,42,0.191882585 +31,2038,40,0.013420285 +53,2017,46,0 +53,2036,47,0.275255116 +53,2036,42,0.186994284 +31,2038,40,0.01849497 +53,2036,46,0.273806955 +54,2036,42,0.196985065 +54,2036,47,0.019359239 +54,2036,41,0.13483264 +54,2036,46,0.148823056 +54,2036,46,0.148823056 +54,2036,42,0.196985065 +54,2036,47,0.019359239 +54,2036,41,0.13483264 +61,2036,47,0 +61,2036,47,0.761282048 +31,1982,40,0.005971955 +62,2036,47,0.95883266 +21,2036,20,0.051465739 +31,2036,30,0.191845179 +32,2036,30,0.178012775 +21,2036,20,0 +31,2036,30,0 +32,2036,30,0 +31,2037,40,0.013420285 +11,2037,10,1 +21,2037,20,0.93708943 +21,2037,20,0.011745962 +31,2037,30,0.770736459 +61,2012,46,0.238717952 +61,2011,46,0.238717952 +31,2037,30,0.006598876 +32,2037,30,0.715164885 +52,2029,41,0.209835953 +32,2037,30,0.023677672 +52,2029,41,0.132786701 +41,2037,46,0.121361746 +41,2037,47,0.673076923 +41,2037,41,0.185550936 +41,2037,42,0.020010395 +42,2037,42,0.006565064 +42,2037,46,0.002344666 +42,2037,47,0.015709261 +42,2037,48,0.817350528 +42,2037,48,0.158030481 +43,2037,42,7.98E-05 +43,2037,46,0.009376746 +43,2037,47,0.000438911 +43,2037,41,0.000119703 +43,2037,47,0.044808874 +43,2037,41,0.010533876 +43,2037,42,0.006982683 +43,2037,46,0.927659405 +51,2037,41,0.003077777 +51,2037,47,0.970481422 +51,2037,46,0.026440801 +31,2037,40,0.01849497 +53,2026,42,0 +52,2037,46,0.03583902 +52,2037,42,0.15388533 +52,2037,46,0.155133314 +52,2037,47,0.120637097 +52,2037,42,0.191882585 +31,2036,40,0.013420285 +53,2016,46,0 +53,2037,47,0.275255116 +53,2037,42,0.186994284 +31,2036,40,0.01849497 +53,2037,46,0.273806955 +54,2037,42,0.196985065 +54,2037,47,0.019359239 +54,2037,41,0.13483264 +54,2037,46,0.148823056 +54,2037,46,0.148823056 +54,2037,42,0.196985065 +54,2037,47,0.019359239 +54,2037,41,0.13483264 +61,2037,47,0 +61,2037,47,0.761282048 +31,1982,40,0.045718117 +31,1963,40,0.0086304 +62,2037,47,0.95883266 +21,2037,20,0.051164609 +31,2037,30,0.19074941 +32,2037,30,0.176996013 +21,2037,20,0 +31,2037,30,0 +32,2037,30,0 +31,2035,40,0.013420285 +11,2038,10,1 +21,2038,20,0.937317008 +21,2038,20,0.011745962 +31,2038,30,0.771577063 +61,2010,46,0.18737324 +61,2009,46,0.165938059 +31,2038,30,0.006598876 +32,2038,30,0.71594488 +52,2028,41,0.209835953 +32,2038,30,0.023677672 +52,2028,41,0.132786701 +41,2038,46,0.121361746 +41,2038,47,0.673076923 +41,2038,41,0.185550936 +41,2038,42,0.020010395 +42,2038,42,0.006565064 +42,2038,46,0.002344666 +42,2038,47,0.015709261 +42,2038,48,0.817350528 +42,2038,48,0.158030481 +43,2038,42,7.98E-05 +43,2038,46,0.009376746 +43,2038,47,0.000438911 +43,2038,41,0.000119703 +43,2038,47,0.044808874 +43,2038,41,0.010533876 +43,2038,42,0.006982683 +43,2038,46,0.927659405 +51,2038,41,0.003077777 +51,2038,47,0.970481422 +51,2038,46,0.026440801 +31,2035,40,0.01849497 +53,2025,42,0 +52,2038,46,0.03583902 +52,2038,42,0.15388533 +52,2038,46,0.155133314 +52,2038,47,0.120637097 +52,2038,42,0.191882585 +31,2034,40,0.013420285 +53,2015,46,0 +53,2038,47,0.275255116 +53,2038,42,0.186994284 +31,2034,40,0.01849497 +53,2038,46,0.273806955 +54,2038,42,0.196985065 +54,2038,47,0.019359239 +54,2038,41,0.13483264 +54,2038,46,0.148823056 +54,2038,46,0.148823056 +54,2038,42,0.196985065 +54,2038,47,0.019359239 +54,2038,41,0.13483264 +61,2038,47,0 +61,2038,47,0.761282048 +31,1963,40,0.188948704 +62,2038,47,0.95883266 +21,2038,20,0.05093703 +31,2038,30,0.189908806 +32,2038,30,0.176216018 +21,2038,20,0 +31,2038,30,0 +32,2038,30,0 +31,2033,40,0.013420285 +11,2039,10,1 +21,2039,20,0.937338058 +21,2039,20,0.011745962 +31,2039,30,0.771585484 +61,2008,46,0.297960702 +61,2007,46,0.239206618 +31,2039,30,0.006598876 +32,2039,30,0.715952694 +52,2027,41,0.209835953 +32,2039,30,0.023677672 +52,2027,41,0.132786701 +41,2039,46,0.121361746 +41,2039,47,0.673076923 +41,2039,41,0.185550936 +41,2039,42,0.020010395 +42,2039,42,0.006565064 +42,2039,46,0.002344666 +42,2039,47,0.015709261 +42,2039,48,0.817350528 +42,2039,48,0.158030481 +43,2039,42,7.98E-05 +43,2039,46,0.009376746 +43,2039,47,0.000438911 +43,2039,41,0.000119703 +43,2039,47,0.044808874 +43,2039,41,0.010533876 +43,2039,42,0.006982683 +43,2039,46,0.927659405 +51,2039,41,0.003077777 +51,2039,47,0.970481422 +51,2039,46,0.026440801 +31,2033,40,0.01849497 +53,2024,42,0 +52,2039,46,0.03583902 +52,2039,42,0.15388533 +52,2039,46,0.155133314 +52,2039,47,0.120637097 +52,2039,42,0.191882585 +31,2032,40,0.013420285 +53,2014,46,0 +53,2039,47,0.275255116 +53,2039,42,0.186994284 +31,2032,40,0.01849497 +53,2039,46,0.273806955 +54,2039,42,0.196985065 +54,2039,47,0.019359239 +54,2039,41,0.13483264 +54,2039,46,0.148823056 +54,2039,46,0.148823056 +54,2039,42,0.196985065 +54,2039,47,0.019359239 +54,2039,41,0.13483264 +61,2039,47,0 +61,2039,47,0.761282048 +62,2039,47,0.95883266 +21,2039,20,0.050915981 +31,2039,30,0.189900386 +32,2039,30,0.176208205 +21,2039,20,0 +31,2039,30,0 +32,2039,30,0 +31,2031,40,0.013420285 +11,2040,10,1 +21,2040,20,0.937355697 +21,2040,20,0.011745962 +31,2040,30,0.771589906 +61,2006,46,0.231563834 +61,2005,46,0.258319158 +31,2040,30,0.006598876 +32,2040,30,0.715956797 +52,2026,41,0.209835953 +32,2040,30,0.023677672 +52,2026,41,0.132786701 +41,2040,46,0.121361746 +41,2040,47,0.673076923 +41,2040,41,0.185550936 +41,2040,42,0.020010395 +42,2040,42,0.006565064 +42,2040,46,0.002344666 +42,2040,47,0.015709261 +42,2040,48,0.817350528 +42,2040,48,0.158030481 +43,2040,42,7.98E-05 +43,2040,46,0.009376746 +43,2040,47,0.000438911 +43,2040,41,0.000119703 +43,2040,47,0.044808874 +43,2040,41,0.010533876 +43,2040,42,0.006982683 +43,2040,46,0.927659405 +51,2040,41,0.003077777 +51,2040,47,0.970481422 +51,2040,46,0.026440801 +31,2031,40,0.01849497 +53,2023,42,0 +52,2040,46,0.03583902 +52,2040,42,0.15388533 +52,2040,46,0.155133314 +52,2040,47,0.120637097 +52,2040,42,0.191882585 +31,2030,40,0.013420285 +53,2013,46,0 +53,2040,47,0.275255116 +53,2040,42,0.186994284 +31,2030,40,0.01849497 +53,2040,46,0.273806955 +54,2040,42,0.196985065 +54,2040,47,0.019359239 +54,2040,41,0.13483264 +54,2040,46,0.148823056 +54,2040,46,0.148823056 +54,2040,42,0.196985065 +54,2040,47,0.019359239 +54,2040,41,0.13483264 +61,2040,47,0 +61,2040,47,0.761282048 +31,1981,40,0.011029796 +62,2040,47,0.95883266 +21,2040,20,0.050898341 +31,2040,30,0.189895964 +32,2040,30,0.176204102 +21,2040,20,0 +31,2040,30,0 +32,2040,30,0 +31,2029,40,0.013420285 +11,2041,10,1 +21,2041,20,0.937355697 +21,2041,20,0.011745962 +31,2041,30,0.771589906 +61,2004,46,0.301386666 +61,2003,46,0.220124934 +31,2041,30,0.006598876 +32,2041,30,0.715956797 +52,2025,41,0.209835953 +32,2041,30,0.023677672 +52,2025,41,0.132786701 +41,2041,46,0.121361746 +41,2041,47,0.673076923 +41,2041,41,0.185550936 +41,2041,42,0.020010395 +42,2041,42,0.006565064 +42,2041,46,0.002344666 +42,2041,47,0.015709261 +42,2041,48,0.817350528 +42,2041,48,0.158030481 +43,2041,42,7.98E-05 +43,2041,46,0.009376746 +43,2041,47,0.000438911 +43,2041,41,0.000119703 +43,2041,47,0.044808874 +43,2041,41,0.010533876 +43,2041,42,0.006982683 +43,2041,46,0.927659405 +51,2041,41,0.003077777 +51,2041,47,0.970481422 +51,2041,46,0.026440801 +31,2029,40,0.01849497 +53,2022,42,0 +52,2041,46,0.03583902 +52,2041,42,0.15388533 +52,2041,46,0.155133314 +52,2041,47,0.120637097 +52,2041,42,0.191882585 +31,2028,40,0.013420285 +53,2012,46,0 +53,2041,47,0.275255116 +53,2041,42,0.186994284 +31,2028,40,0.01849497 +53,2041,46,0.273806955 +54,2041,42,0.196985065 +54,2041,47,0.019359239 +54,2041,41,0.13483264 +54,2041,46,0.148823056 +54,2041,46,0.148823056 +54,2041,42,0.196985065 +54,2041,47,0.019359239 +54,2041,41,0.13483264 +61,2041,47,0 +61,2041,47,0.761282048 +31,1981,40,0.038939112 +31,1962,40,0.0086304 +62,2041,47,0.95883266 +21,2041,20,0.050898341 +31,2041,30,0.189895964 +32,2041,30,0.176204102 +21,2041,20,0 +31,2041,30,0 +32,2041,30,0 +31,2027,40,0.013420285 +11,2042,10,1 +21,2042,20,0.937355697 +21,2042,20,0.011745962 +31,2042,30,0.771589906 +61,2002,46,0.279675828 +61,2001,46,0.121176343 +31,2042,30,0.006598876 +32,2042,30,0.715956797 +52,2024,41,0.209835953 +32,2042,30,0.023677672 +52,2024,41,0.132786701 +41,2042,46,0.121361746 +41,2042,47,0.673076923 +41,2042,41,0.185550936 +41,2042,42,0.020010395 +42,2042,42,0.006565064 +42,2042,46,0.002344666 +42,2042,47,0.015709261 +42,2042,48,0.817350528 +42,2042,48,0.158030481 +43,2042,42,7.98E-05 +43,2042,46,0.009376746 +43,2042,47,0.000438911 +43,2042,41,0.000119703 +43,2042,47,0.044808874 +43,2042,41,0.010533876 +43,2042,42,0.006982683 +43,2042,46,0.927659405 +51,2042,41,0.003077777 +51,2042,47,0.970481422 +51,2042,46,0.026440801 +31,2027,40,0.01849497 +53,2021,42,0 +52,2042,46,0.03583902 +52,2042,42,0.15388533 +52,2042,46,0.155133314 +52,2042,47,0.120637097 +52,2042,42,0.191882585 +31,2026,40,0.013420285 +53,2011,46,0 +53,2042,47,0.275255116 +53,2042,42,0.186994284 +31,2026,40,0.01849497 +53,2042,46,0.273806955 +54,2042,42,0.196985065 +54,2042,47,0.019359239 +54,2042,41,0.13483264 +54,2042,46,0.148823056 +54,2042,46,0.148823056 +54,2042,42,0.196985065 +54,2042,47,0.019359239 +54,2042,41,0.13483264 +61,2042,47,0 +61,2042,47,0.761282048 +31,1962,40,0.188948704 +62,2042,47,0.95883266 +21,2042,20,0.050898341 +31,2042,30,0.189895964 +32,2042,30,0.176204102 +21,2042,20,0 +31,2042,30,0 +32,2042,30,0 +31,2025,40,0.013420285 +11,2043,10,1 +21,2043,20,0.937355697 +21,2043,20,0.011745962 +31,2043,30,0.771589906 +61,2000,46,0.143140226 +61,1999,46,0.127489187 +31,2043,30,0.006598876 +32,2043,30,0.715956797 +52,2023,41,0.209835953 +32,2043,30,0.023677672 +52,2023,41,0.132786701 +41,2043,46,0.121361746 +41,2043,47,0.673076923 +41,2043,41,0.185550936 +41,2043,42,0.020010395 +42,2043,42,0.006565064 +42,2043,46,0.002344666 +42,2043,47,0.015709261 +42,2043,48,0.817350528 +42,2043,48,0.158030481 +43,2043,42,7.98E-05 +43,2043,46,0.009376746 +43,2043,47,0.000438911 +43,2043,41,0.000119703 +43,2043,47,0.044808874 +43,2043,41,0.010533876 +43,2043,42,0.006982683 +43,2043,46,0.927659405 +51,2043,41,0.003077777 +51,2043,47,0.970481422 +51,2043,46,0.026440801 +31,2025,40,0.01849497 +53,2020,42,0 +52,2043,46,0.03583902 +52,2043,42,0.15388533 +52,2043,46,0.155133314 +52,2043,47,0.120637097 +52,2043,42,0.191882585 +31,2024,40,0.013420285 +53,2010,46,0 +53,2043,47,0.275255116 +53,2043,42,0.186994284 +31,2024,40,0.01849497 +53,2043,46,0.273806955 +54,2043,42,0.196985065 +54,2043,47,0.019359239 +54,2043,41,0.13483264 +54,2043,46,0.148823056 +54,2043,46,0.148823056 +54,2043,42,0.196985065 +54,2043,47,0.019359239 +54,2043,41,0.13483264 +61,2043,47,0 +61,2043,47,0.761282048 +62,2043,47,0.95883266 +21,2043,20,0.050898341 +31,2043,30,0.189895964 +32,2043,30,0.176204102 +21,2043,20,0 +31,2043,30,0 +32,2043,30,0 +31,2023,40,0.013420285 +11,2044,10,1 +21,2044,20,0.937355697 +21,2044,20,0.011745962 +31,2044,30,0.771589906 +61,1998,46,0.115326264 +61,1997,46,0.081550363 +31,2044,30,0.006598876 +32,2044,30,0.715956797 +52,2022,41,0.209835953 +32,2044,30,0.023677672 +52,2022,41,0.132786701 +41,2044,46,0.121361746 +41,2044,47,0.673076923 +41,2044,41,0.185550936 +41,2044,42,0.020010395 +42,2044,42,0.006565064 +42,2044,46,0.002344666 +42,2044,47,0.015709261 +42,2044,48,0.817350528 +42,2044,48,0.158030481 +43,2044,42,7.98E-05 +43,2044,46,0.009376746 +43,2044,47,0.000438911 +43,2044,41,0.000119703 +43,2044,47,0.044808874 +43,2044,41,0.010533876 +43,2044,42,0.006982683 +43,2044,46,0.927659405 +51,2044,41,0.003077777 +51,2044,47,0.970481422 +51,2044,46,0.026440801 +31,2023,40,0.01849497 +53,2019,42,0 +52,2044,46,0.03583902 +52,2044,42,0.15388533 +52,2044,46,0.155133314 +52,2044,47,0.120637097 +52,2044,42,0.191882585 +31,2022,40,0.013420285 +53,2009,46,0 +53,2044,47,0.275255116 +53,2044,42,0.186994284 +31,2022,40,0.01849497 +53,2044,46,0.273806955 +54,2044,42,0.196985065 +54,2044,47,0.019359239 +54,2044,41,0.13483264 +54,2044,46,0.148823056 +54,2044,46,0.148823056 +54,2044,42,0.196985065 +54,2044,47,0.019359239 +54,2044,41,0.13483264 +61,2044,47,0 +61,2044,47,0.761282048 +31,1980,40,0.0076694 +62,2044,47,0.95883266 +21,2044,20,0.050898341 +31,2044,30,0.189895964 +32,2044,30,0.176204102 +21,2044,20,0 +31,2044,30,0 +32,2044,30,0 +31,2021,40,0.013420285 +11,2045,10,1 +21,2045,20,0.937355697 +21,2045,20,0.011745962 +31,2045,30,0.771589906 +61,1996,46,0.140027294 +61,1995,46,0.137933276 +31,2045,30,0.006598876 +32,2045,30,0.715956797 +52,2021,41,0.209835953 +32,2045,30,0.023677672 +52,2021,41,0.132786701 +41,2045,46,0.121361746 +41,2045,47,0.673076923 +41,2045,41,0.185550936 +41,2045,42,0.020010395 +42,2045,42,0.006565064 +42,2045,46,0.002344666 +42,2045,47,0.015709261 +42,2045,48,0.817350528 +42,2045,48,0.158030481 +43,2045,42,7.98E-05 +43,2045,46,0.009376746 +43,2045,47,0.000438911 +43,2045,41,0.000119703 +43,2045,47,0.044808874 +43,2045,41,0.010533876 +43,2045,42,0.006982683 +43,2045,46,0.927659405 +51,2045,41,0.003077777 +51,2045,47,0.970481422 +51,2045,46,0.026440801 +31,2021,40,0.01849497 +53,2018,42,0 +52,2045,46,0.03583902 +52,2045,42,0.15388533 +52,2045,46,0.155133314 +52,2045,47,0.120637097 +52,2045,42,0.191882585 +31,2020,40,0.013420285 +53,2008,46,0 +53,2045,47,0.275255116 +53,2045,42,0.186994284 +31,2020,40,0.01849497 +53,2045,46,0.273806955 +54,2045,42,0.196985065 +54,2045,47,0.019359239 +54,2045,41,0.13483264 +54,2045,46,0.148823056 +54,2045,46,0.148823056 +54,2045,42,0.196985065 +54,2045,47,0.019359239 +54,2045,41,0.13483264 +61,2045,47,0 +61,2045,47,0.761282048 +31,1980,40,0.100234569 +31,1961,40,0.0086304 +62,2045,47,0.95883266 +21,2045,20,0.050898341 +31,2045,30,0.189895964 +32,2045,30,0.176204102 +21,2045,20,0 +31,2045,30,0 +32,2045,30,0 +31,2019,40,0.013420285 +11,2046,10,1 +21,2046,20,0.937355697 +21,2046,20,0.011745962 +31,2046,30,0.771589906 +61,1995,46,0.001457095 +61,1994,46,0.162484426 +31,2046,30,0.006598876 +32,2046,30,0.715956797 +52,2020,41,0.209835953 +32,2046,30,0.023677672 +52,2020,41,0.132786701 +41,2046,46,0.121361746 +41,2046,47,0.673076923 +41,2046,41,0.185550936 +41,2046,42,0.020010395 +42,2046,42,0.006565064 +42,2046,46,0.002344666 +42,2046,47,0.015709261 +42,2046,48,0.817350528 +42,2046,48,0.158030481 +43,2046,42,7.98E-05 +43,2046,46,0.009376746 +43,2046,47,0.000438911 +43,2046,41,0.000119703 +43,2046,47,0.044808874 +43,2046,41,0.010533876 +43,2046,42,0.006982683 +43,2046,46,0.927659405 +51,2046,41,0.003077777 +51,2046,47,0.970481422 +51,2046,46,0.026440801 +31,2019,40,0.01849497 +53,2017,42,0 +52,2046,46,0.03583902 +52,2046,42,0.15388533 +52,2046,46,0.155133314 +52,2046,47,0.120637097 +52,2046,42,0.191882585 +31,2018,40,0.013420285 +53,2007,46,0 +53,2046,47,0.275255116 +53,2046,42,0.186994284 +31,2018,40,0.01849497 +53,2046,46,0.273806955 +54,2046,42,0.196985065 +54,2046,47,0.019359239 +54,2046,41,0.13483264 +54,2046,46,0.148823056 +54,2046,46,0.148823056 +54,2046,42,0.196985065 +54,2046,47,0.019359239 +54,2046,41,0.13483264 +61,2046,47,0 +61,2046,47,0.761282048 +31,1961,40,0.188948704 +62,2046,47,0.95883266 +21,2046,20,0.050898341 +31,2046,30,0.189895964 +32,2046,30,0.176204102 +21,2046,20,0 +31,2046,30,0 +32,2046,30,0 +31,2017,40,0.013420285 +11,2047,10,1 +21,2047,20,0.937355697 +21,2047,20,0.011745962 +31,2047,30,0.771589906 +61,1993,46,0.106918605 +61,1993,46,0.002892 +31,2047,30,0.006598876 +32,2047,30,0.715956797 +52,2019,41,0.209835953 +32,2047,30,0.023677672 +52,2019,41,0.132786701 +41,2047,46,0.121361746 +41,2047,47,0.673076923 +41,2047,41,0.185550936 +41,2047,42,0.020010395 +42,2047,42,0.006565064 +42,2047,46,0.002344666 +42,2047,47,0.015709261 +42,2047,48,0.817350528 +42,2047,48,0.158030481 +43,2047,42,7.98E-05 +43,2047,46,0.009376746 +43,2047,47,0.000438911 +43,2047,41,0.000119703 +43,2047,47,0.044808874 +43,2047,41,0.010533876 +43,2047,42,0.006982683 +43,2047,46,0.927659405 +51,2047,41,0.003077777 +51,2047,47,0.970481422 +51,2047,46,0.026440801 +31,2017,40,0.01849497 +53,2016,42,0 +52,2047,46,0.03583902 +52,2047,42,0.15388533 +52,2047,46,0.155133314 +52,2047,47,0.120637097 +52,2047,42,0.191882585 +31,2016,40,0.013420285 +53,2006,46,0 +53,2047,47,0.275255116 +53,2047,42,0.186994284 +31,2016,40,0.01849497 +53,2047,46,0.273806955 +54,2047,42,0.196985065 +54,2047,47,0.019359239 +54,2047,41,0.13483264 +54,2047,46,0.148823056 +54,2047,46,0.148823056 +54,2047,42,0.196985065 +54,2047,47,0.019359239 +54,2047,41,0.13483264 +61,2047,47,0 +61,2047,47,0.761282048 +62,2047,47,0.95883266 +21,2047,20,0.050898341 +31,2047,30,0.189895964 +32,2047,30,0.176204102 +21,2047,20,0 +31,2047,30,0 +32,2047,30,0 +31,2015,40,0.013420285 +11,2048,10,1 +21,2048,20,0.937355697 +21,2048,20,0.011745962 +31,2048,30,0.771589906 +61,1992,46,0.181133029 +61,1992,46,0.00375897 +31,2048,30,0.006598876 +32,2048,30,0.715956797 +52,2018,41,0.209835953 +32,2048,30,0.023677672 +52,2018,41,0.132786701 +41,2048,46,0.121361746 +41,2048,47,0.673076923 +41,2048,41,0.185550936 +41,2048,42,0.020010395 +42,2048,42,0.006565064 +42,2048,46,0.002344666 +42,2048,47,0.015709261 +42,2048,48,0.817350528 +42,2048,48,0.158030481 +43,2048,42,7.98E-05 +43,2048,46,0.009376746 +43,2048,47,0.000438911 +43,2048,41,0.000119703 +43,2048,47,0.044808874 +43,2048,41,0.010533876 +43,2048,42,0.006982683 +43,2048,46,0.927659405 +51,2048,41,0.003077777 +51,2048,47,0.970481422 +51,2048,46,0.026440801 +31,2015,40,0.01849497 +53,2015,42,0 +52,2048,46,0.03583902 +52,2048,42,0.15388533 +52,2048,46,0.155133314 +52,2048,47,0.120637097 +52,2048,42,0.191882585 +31,2014,40,0.013420285 +53,2005,46,0 +53,2048,47,0.275255116 +53,2048,42,0.186994284 +31,2014,40,0.01849497 +53,2048,46,0.273806955 +54,2048,42,0.196985065 +54,2048,47,0.019359239 +54,2048,41,0.13483264 +54,2048,46,0.148823056 +54,2048,46,0.148823056 +54,2048,42,0.196985065 +54,2048,47,0.019359239 +54,2048,41,0.13483264 +61,2048,47,0 +61,2048,47,0.761282048 +31,1979,40,0.0086304 +62,2048,47,0.95883266 +21,2048,20,0.050898341 +31,2048,30,0.189895964 +32,2048,30,0.176204102 +21,2048,20,0 +31,2048,30,0 +32,2048,30,0 +31,2013,40,0.013420285 +11,2049,10,1 +21,2049,20,0.937355697 +21,2049,20,0.011745962 +31,2049,30,0.771589906 +61,1991,46,0.121993474 +61,1990,46,0.183744379 +31,2049,30,0.006598876 +32,2049,30,0.715956797 +52,2017,41,0.209835953 +32,2049,30,0.023677672 +52,2017,41,0.132786701 +41,2049,46,0.121361746 +41,2049,47,0.673076923 +41,2049,41,0.185550936 +41,2049,42,0.020010395 +42,2049,42,0.006565064 +42,2049,46,0.002344666 +42,2049,47,0.015709261 +42,2049,48,0.817350528 +42,2049,48,0.158030481 +43,2049,42,7.98E-05 +43,2049,46,0.009376746 +43,2049,47,0.000438911 +43,2049,41,0.000119703 +43,2049,47,0.044808874 +43,2049,41,0.010533876 +43,2049,42,0.006982683 +43,2049,46,0.927659405 +51,2049,41,0.003077777 +51,2049,47,0.970481422 +51,2049,46,0.026440801 +31,2013,40,0.01849497 +53,2014,42,0 +52,2049,46,0.03583902 +52,2049,42,0.15388533 +52,2049,46,0.155133314 +52,2049,47,0.120637097 +52,2049,42,0.191882585 +31,2012,40,0.013420285 +53,2004,46,0 +53,2049,47,0.275255116 +53,2049,42,0.186994284 +31,2012,40,0.01849497 +53,2049,46,0.273806955 +54,2049,42,0.196985065 +54,2049,47,0.019359239 +54,2049,41,0.13483264 +54,2049,46,0.148823056 +54,2049,46,0.148823056 +54,2049,42,0.196985065 +54,2049,47,0.019359239 +54,2049,41,0.13483264 +61,2049,47,0 +61,2049,47,0.761282048 +31,1979,40,0.132878226 +31,1960,40,0.0086304 +62,2049,47,0.95883266 +21,2049,20,0.050898341 +31,2049,30,0.189895964 +32,2049,30,0.176204102 +21,2049,20,0 +31,2049,30,0 +32,2049,30,0 +31,2011,40,0.013420285 +11,2050,10,1 +21,2050,20,0.937355697 +21,2050,20,0.011745962 +31,2050,30,0.771589906 +61,1989,46,0.13851373 +61,1989,46,0.006022582 +31,2050,30,0.006598876 +32,2050,30,0.715956797 +52,2016,41,0.209835953 +32,2050,30,0.023677672 +52,2016,41,0.132786701 +41,2050,46,0.121361746 +41,2050,47,0.673076923 +41,2050,41,0.185550936 +41,2050,42,0.020010395 +42,2050,42,0.006565064 +42,2050,46,0.002344666 +42,2050,47,0.015709261 +42,2050,48,0.817350528 +42,2050,48,0.158030481 +43,2050,42,7.98E-05 +43,2050,46,0.009376746 +43,2050,47,0.000438911 +43,2050,41,0.000119703 +43,2050,47,0.044808874 +43,2050,41,0.010533876 +43,2050,42,0.006982683 +43,2050,46,0.927659405 +51,2050,41,0.003077777 +51,2050,47,0.970481422 +51,2050,46,0.026440801 +31,2011,40,0.01849497 +53,2013,42,0 +52,2050,46,0.03583902 +52,2050,42,0.15388533 +52,2050,46,0.155133314 +52,2050,47,0.120637097 +52,2050,42,0.191882585 +31,2010,40,0.0065166 +53,2003,46,0 +53,2050,47,0.275255116 +53,2050,42,0.186994284 +31,2010,40,0.011006471 +53,2050,46,0.273806955 +54,2050,42,0.196985065 +54,2050,47,0.019359239 +54,2050,41,0.13483264 +54,2050,46,0.148823056 +54,2050,46,0.148823056 +54,2050,42,0.196985065 +54,2050,47,0.019359239 +54,2050,41,0.13483264 +61,2050,47,0 +61,2050,47,0.761282048 +31,1960,40,0.188948704 +62,2050,47,0.95883266 +21,2050,20,0.050898341 +31,2050,30,0.189895964 +32,2050,30,0.176204102 +21,2050,20,0 +31,2050,30,0 +32,2050,30,0 +31,2009,40,0.008271476 +11,1960,10,1 +41,1960,47,0.670967742 +41,1960,41,0.187096774 +41,1960,42,0.019354839 +41,1960,46,0.122580645 +42,1960,47,0.009615385 +53,2012,42,0 +53,2011,42,0 +42,1960,48,0.990384615 +42,1960,48,0 +43,1960,42,0.006038647 +43,1960,46,0.882850242 +43,1960,41,0.009661836 +43,1960,47,0.042270531 +53,2010,42,0 +43,1960,46,0.055555556 +43,1960,47,0.002415459 +43,1960,41,0.001207729 +54,1960,46,0.25210084 +54,1960,42,0.336134454 +54,1960,47,0.033613445 +54,1960,41,0.226890756 +54,1960,47,0.008403361 +54,1960,41,0.042016807 +54,1960,46,0.042016807 +54,1960,42,0.058823529 +11,1961,10,1 +41,1961,47,0.670967742 +41,1961,41,0.187096774 +41,1961,42,0.019354839 +41,1961,46,0.122580645 +42,1961,47,0.009615385 +53,2009,42,0 +53,2008,42,0 +42,1961,48,0.990384615 +42,1961,48,0 +43,1961,42,0.006038647 +43,1961,46,0.882850242 +43,1961,41,0.009661836 +43,1961,47,0.042270531 +53,2007,42,0 +43,1961,46,0.055555556 +43,1961,47,0.002415459 +43,1961,41,0.001207729 +54,1961,46,0.25210084 +54,1961,42,0.336134454 +54,1961,47,0.033613445 +54,1961,41,0.226890756 +54,1961,47,0.008403361 +54,1961,41,0.042016807 +54,1961,46,0.042016807 +54,1961,42,0.058823529 +11,1962,10,1 +41,1962,47,0.670967742 +41,1962,41,0.187096774 +41,1962,42,0.019354839 +41,1962,46,0.122580645 +42,1962,47,0.009615385 +53,2006,42,0 +53,2005,42,0 +42,1962,48,0.990384615 +42,1962,48,0 +43,1962,42,0.006038647 +43,1962,46,0.882850242 +43,1962,41,0.009661836 +43,1962,47,0.042270531 +53,2004,42,0 +43,1962,46,0.055555556 +43,1962,47,0.002415459 +43,1962,41,0.001207729 +54,1962,46,0.25210084 +54,1962,42,0.336134454 +54,1962,47,0.033613445 +54,1962,41,0.226890756 +54,1962,47,0.008403361 +54,1962,41,0.042016807 +54,1962,46,0.042016807 +54,1962,42,0.058823529 +11,1963,10,1 +41,1963,47,0.670967742 +41,1963,41,0.187096774 +41,1963,42,0.019354839 +41,1963,46,0.122580645 +42,1963,47,0.009615385 +53,2003,42,0 +53,2002,42,0 +42,1963,48,0.990384615 +42,1963,48,0 +43,1963,42,0.006038647 +43,1963,46,0.882850242 +43,1963,41,0.009661836 +43,1963,47,0.042270531 +53,2050,41,0 +43,1963,46,0.055555556 +43,1963,47,0.002415459 +43,1963,41,0.001207729 +54,1963,46,0.25210084 +54,1963,42,0.336134454 +54,1963,47,0.033613445 +54,1963,41,0.226890756 +54,1963,47,0.008403361 +54,1963,41,0.042016807 +54,1963,46,0.042016807 +54,1963,42,0.058823529 +11,1964,10,1 +41,1964,47,0.670967742 +41,1964,41,0.187096774 +41,1964,42,0.019354839 +41,1964,46,0.122580645 +42,1964,47,0.009615385 +53,2049,41,0 +53,2048,41,0 +42,1964,48,0.990384615 +42,1964,48,0 +43,1964,42,0.006038647 +43,1964,46,0.882850242 +43,1964,41,0.009661836 +43,1964,47,0.042270531 +53,2047,41,0 +43,1964,46,0.055555556 +43,1964,47,0.002415459 +43,1964,41,0.001207729 +54,1964,46,0.25210084 +54,1964,42,0.336134454 +54,1964,47,0.033613445 +54,1964,41,0.226890756 +54,1964,47,0.008403361 +54,1964,41,0.042016807 +54,1964,46,0.042016807 +54,1964,42,0.058823529 +11,1965,10,1 +41,1965,47,0.670967742 +41,1965,41,0.187096774 +41,1965,42,0.019354839 +41,1965,46,0.122580645 +42,1965,47,0.009615385 +53,2046,41,0 +53,2045,41,0 +42,1965,48,0.990384615 +42,1965,48,0 +43,1965,42,0.006038647 +43,1965,46,0.882850242 +43,1965,41,0.009661836 +43,1965,47,0.042270531 +53,2044,41,0 +43,1965,46,0.055555556 +43,1965,47,0.002415459 +43,1965,41,0.001207729 +54,1965,46,0.25210084 +54,1965,42,0.336134454 +54,1965,47,0.033613445 +54,1965,41,0.226890756 +54,1965,47,0.008403361 +54,1965,41,0.042016807 +54,1965,46,0.042016807 +54,1965,42,0.058823529 +11,1966,10,1 +41,1966,47,0.670967742 +41,1966,41,0.187096774 +41,1966,42,0.019354839 +41,1966,46,0.122580645 +42,1966,47,0.009615385 +53,2043,41,0 +53,2042,41,0 +42,1966,48,0.990384615 +42,1966,48,0 +43,1966,42,0.006038647 +43,1966,46,0.882850242 +43,1966,41,0.009661836 +43,1966,47,0.042270531 +53,2041,41,0 +43,1966,46,0.055555556 +43,1966,47,0.002415459 +43,1966,41,0.001207729 +54,1966,46,0.25210084 +54,1966,42,0.336134454 +54,1966,47,0.033613445 +54,1966,41,0.226890756 +54,1966,47,0.008403361 +54,1966,41,0.042016807 +54,1966,46,0.042016807 +54,1966,42,0.058823529 +11,1967,10,1 +41,1967,47,0.670967742 +41,1967,41,0.187096774 +41,1967,42,0.019354839 +41,1967,46,0.122580645 +42,1967,47,0.009615385 +53,2040,41,0 +53,2039,41,0 +42,1967,48,0.990384615 +42,1967,48,0 +43,1967,42,0.006038647 +43,1967,46,0.882850242 +43,1967,41,0.009661836 +43,1967,47,0.042270531 +53,2038,41,0 +43,1967,46,0.055555556 +43,1967,47,0.002415459 +43,1967,41,0.001207729 +54,1967,46,0.25210084 +54,1967,42,0.336134454 +54,1967,47,0.033613445 +54,1967,41,0.226890756 +54,1967,47,0.008403361 +54,1967,41,0.042016807 +54,1967,46,0.042016807 +54,1967,42,0.058823529 +11,1968,10,1 +41,1968,47,0.670967742 +41,1968,41,0.187096774 +41,1968,42,0.019354839 +41,1968,46,0.122580645 +42,1968,47,0.009615385 +53,2037,41,0 +53,2036,41,0 +42,1968,48,0.990384615 +42,1968,48,0 +43,1968,42,0.006038647 +43,1968,46,0.882850242 +43,1968,41,0.009661836 +43,1968,47,0.042270531 +53,2035,41,0 +43,1968,46,0.055555556 +43,1968,47,0.002415459 +43,1968,41,0.001207729 +54,1968,46,0.25210084 +54,1968,42,0.336134454 +54,1968,47,0.033613445 +54,1968,41,0.226890756 +54,1968,47,0.008403361 +54,1968,41,0.042016807 +54,1968,46,0.042016807 +54,1968,42,0.058823529 +11,1969,10,1 +41,1969,47,0.670967742 +41,1969,41,0.187096774 +41,1969,42,0.019354839 +41,1969,46,0.122580645 +42,1969,47,0.009615385 +53,2034,41,0 +53,2033,41,0 +42,1969,48,0.990384615 +42,1969,48,0 +43,1969,42,0.006038647 +43,1969,46,0.882850242 +43,1969,41,0.009661836 +43,1969,47,0.042270531 +53,2032,41,0 +43,1969,46,0.055555556 +43,1969,47,0.002415459 +43,1969,41,0.001207729 +54,1969,46,0.25210084 +54,1969,42,0.336134454 +54,1969,47,0.033613445 +54,1969,41,0.226890756 +54,1969,47,0.008403361 +54,1969,41,0.042016807 +54,1969,46,0.042016807 +54,1969,42,0.058823529 +11,1970,10,1 +41,1970,47,0.670967742 +41,1970,41,0.187096774 +41,1970,42,0.019354839 +41,1970,46,0.122580645 +42,1970,47,0.009615385 +53,2031,41,0 +53,2030,41,0 +42,1970,48,0.990384615 +42,1970,48,0 +43,1970,42,0.006038647 +43,1970,46,0.882850242 +43,1970,41,0.009661836 +43,1970,47,0.042270531 +53,2029,41,0 +43,1970,46,0.055555556 +43,1970,47,0.002415459 +43,1970,41,0.001207729 +54,1970,46,0.25210084 +54,1970,42,0.336134454 +54,1970,47,0.033613445 +54,1970,41,0.226890756 +54,1970,47,0.008403361 +54,1970,41,0.042016807 +54,1970,46,0.042016807 +54,1970,42,0.058823529 +11,1971,10,1 +41,1971,47,0.670967742 +41,1971,41,0.187096774 +41,1971,42,0.019354839 +41,1971,46,0.122580645 +42,1971,47,0.009615385 +53,2028,41,0 +53,2027,41,0 +42,1971,48,0.990384615 +42,1971,48,0 +43,1971,42,0.006038647 +43,1971,46,0.882850242 +43,1971,41,0.009661836 +43,1971,47,0.042270531 +53,2026,41,0 +43,1971,46,0.055555556 +43,1971,47,0.002415459 +43,1971,41,0.001207729 +54,1971,46,0.25210084 +54,1971,42,0.336134454 +54,1971,47,0.033613445 +54,1971,41,0.226890756 +54,1971,47,0.008403361 +54,1971,41,0.042016807 +54,1971,46,0.042016807 +54,1971,42,0.058823529 +11,1972,10,1 +41,1972,47,0.670967742 +41,1972,41,0.187096774 +41,1972,42,0.019354839 +41,1972,46,0.122580645 +42,1972,47,0.009615385 +53,2025,41,0 +53,2024,41,0 +42,1972,48,0.990384615 +42,1972,48,0 +43,1972,42,0.006038647 +43,1972,46,0.882850242 +43,1972,41,0.009661836 +43,1972,47,0.042270531 +53,2023,41,0 +43,1972,46,0.055555556 +43,1972,47,0.002415459 +43,1972,41,0.001207729 +54,1972,46,0.25210084 +54,1972,42,0.336134454 +54,1972,47,0.033613445 +54,1972,41,0.226890756 +54,1972,47,0.008403361 +54,1972,41,0.042016807 +54,1972,46,0.042016807 +54,1972,42,0.058823529 +11,1973,10,1 +41,1973,47,0.670967742 +41,1973,41,0.187096774 +41,1973,42,0.019354839 +41,1973,46,0.122580645 +42,1973,47,0.009615385 +53,2022,41,0 +53,2021,41,0 +42,1973,48,0.990384615 +42,1973,48,0 +43,1973,42,0.006038647 +43,1973,46,0.882850242 +43,1973,41,0.009661836 +43,1973,47,0.042270531 +53,2020,41,0 +43,1973,46,0.055555556 +43,1973,47,0.002415459 +43,1973,41,0.001207729 +54,1973,46,0.25210084 +54,1973,42,0.336134454 +54,1973,47,0.033613445 +54,1973,41,0.226890756 +54,1973,47,0.008403361 +54,1973,41,0.042016807 +54,1973,46,0.042016807 +54,1973,42,0.058823529 +11,1974,10,1 +41,1974,47,0.670967742 +41,1974,41,0.187096774 +41,1974,42,0.019354839 +41,1974,46,0.122580645 +42,1974,47,0.009615385 +53,2019,41,0 +53,2018,41,0 +42,1974,48,0.990384615 +42,1974,48,0 +43,1974,42,0.006038647 +43,1974,46,0.882850242 +43,1974,41,0.009661836 +43,1974,47,0.042270531 +53,2017,41,0 +43,1974,46,0.055555556 +43,1974,47,0.002415459 +43,1974,41,0.001207729 +54,1974,46,0.25210084 +54,1974,42,0.336134454 +54,1974,47,0.033613445 +54,1974,41,0.226890756 +54,1974,47,0.008403361 +54,1974,41,0.042016807 +54,1974,46,0.042016807 +54,1974,42,0.058823529 +11,1975,10,1 +41,1975,47,0.670967742 +41,1975,41,0.187096774 +41,1975,42,0.019354839 +41,1975,46,0.122580645 +42,1975,47,0.009615385 +53,2016,41,0 +53,2015,41,0 +42,1975,48,0.990384615 +42,1975,48,0 +43,1975,42,0.006038647 +43,1975,46,0.882850242 +43,1975,41,0.009661836 +43,1975,47,0.042270531 +53,2014,41,0 +43,1975,46,0.055555556 +43,1975,47,0.002415459 +43,1975,41,0.001207729 +54,1975,46,0.25210084 +54,1975,42,0.336134454 +54,1975,47,0.033613445 +54,1975,41,0.226890756 +54,1975,47,0.008403361 +54,1975,41,0.042016807 +54,1975,46,0.042016807 +54,1975,42,0.058823529 +11,1976,10,1 +41,1976,47,0.670967742 +41,1976,41,0.187096774 +41,1976,42,0.019354839 +41,1976,46,0.122580645 +42,1976,47,0.009615385 +53,2013,41,0 +53,2012,41,0 +42,1976,48,0.990384615 +42,1976,48,0 +43,1976,42,0.006038647 +43,1976,46,0.882850242 +43,1976,41,0.009661836 +43,1976,47,0.042270531 +53,2011,41,0 +43,1976,46,0.055555556 +43,1976,47,0.002415459 +43,1976,41,0.001207729 +54,1976,46,0.25210084 +54,1976,42,0.336134454 +54,1976,47,0.033613445 +54,1976,41,0.226890756 +54,1976,47,0.008403361 +54,1976,41,0.042016807 +54,1976,46,0.042016807 +54,1976,42,0.058823529 +11,1977,10,1 +41,1977,47,0.670967742 +41,1977,41,0.187096774 +41,1977,42,0.019354839 +41,1977,46,0.122580645 +42,1977,47,0.009615385 +53,2010,41,0 +53,2009,41,0 +42,1977,48,0.990384615 +42,1977,48,0 +43,1977,42,0.006038647 +43,1977,46,0.882850242 +43,1977,41,0.009661836 +43,1977,47,0.042270531 +53,2008,41,0 +43,1977,46,0.055555556 +43,1977,47,0.002415459 +43,1977,41,0.001207729 +54,1977,46,0.25210084 +54,1977,42,0.336134454 +54,1977,47,0.033613445 +54,1977,41,0.226890756 +54,1977,47,0.008403361 +54,1977,41,0.042016807 +54,1977,46,0.042016807 +54,1977,42,0.058823529 +11,1978,10,1 +41,1978,47,0.670967742 +41,1978,41,0.187096774 +41,1978,42,0.019354839 +41,1978,46,0.122580645 +42,1978,47,0.009615385 +53,2007,41,0 +53,2006,41,0 +42,1978,48,0.990384615 +42,1978,48,0 +43,1978,42,0.006038647 +43,1978,46,0.882850242 +43,1978,41,0.009661836 +43,1978,47,0.042270531 +53,2005,41,0 +43,1978,46,0.055555556 +43,1978,47,0.002415459 +43,1978,41,0.001207729 +54,1978,46,0.25210084 +54,1978,42,0.336134454 +54,1978,47,0.033613445 +54,1978,41,0.226890756 +54,1978,47,0.008403361 +54,1978,41,0.042016807 +54,1978,46,0.042016807 +54,1978,42,0.058823529 +11,1979,10,1 +41,1979,47,0.670967742 +41,1979,41,0.187096774 +41,1979,42,0.019354839 +41,1979,46,0.122580645 +42,1979,47,0.009615385 +53,2004,41,0 +53,2003,41,0 +42,1979,48,0.990384615 +42,1979,48,0 +43,1979,42,0.006038647 +43,1979,46,0.882850242 +43,1979,41,0.009661836 +43,1979,47,0.042270531 +53,2002,41,0 +43,1979,46,0.055555556 +43,1979,47,0.002415459 +43,1979,41,0.001207729 +54,1979,46,0.25210084 +54,1979,42,0.336134454 +54,1979,47,0.033613445 +54,1979,41,0.226890756 +54,1979,47,0.008403361 +54,1979,41,0.042016807 +54,1979,46,0.042016807 +54,1979,42,0.058823529 +53,2049,47,0 +53,2050,47,0 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_vehicle_age_fractions.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_vehicle_age_fractions.csv new file mode 100644 index 0000000000..08e7cb29bc --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/MOVES_vehicle_age_fractions.csv @@ -0,0 +1,21367 @@ +# File: MOVES_vehicle_age_fractions.csv +# Title: MOVES vehicle age fractions +# Source: Table 7-1 in Population and Activity of On-road Vehicles in MOVES2014. U.S. Environmental Protection Agency. https://cfpub.epa.gov/si/si_public_record_report.cfm?Lab=OTAQ&dirEntryId=309336 +# Comments: Fractions of vehicles at each age class (0-30 years) of each MOVES class +# Units: ageID: years +# Column types: iiin +# ---------- +sourceTypeID,yearID,ageID,ageFraction +62,1999,30,0.001516092 +62,1999,29,0.001969386 +62,1999,28,0.003977441 +62,1999,27,0.006046625 +62,1999,26,0.009733956 +62,1999,25,0.011044016 +62,1999,24,0.010106892 +62,1999,23,0.017608655 +62,1999,22,0.027415409 +62,1999,21,0.035011034 +62,1999,20,0.025378249 +62,1999,19,0.024953947 +62,1999,18,0.029999359 +62,1999,17,0.033469887 +62,1999,16,0.041903968 +62,1999,15,0.048461351 +62,1999,14,0.035884794 +62,1999,13,0.028024589 +62,1999,12,0.034323486 +62,1999,11,0.030448683 +62,1999,10,0.031784791 +62,1999,9,0.032415184 +62,1999,8,0.033141439 +62,1999,7,0.026383275 +62,1999,6,0.030986375 +62,1999,5,0.040253387 +62,1999,4,0.051552137 +62,1999,3,0.057242803 +62,1999,2,0.052055707 +62,1999,1,0.077622037 +62,1999,0,0.109285047 +61,1999,30,0.002201893 +61,1999,29,0.004009434 +61,1999,28,0.00757825 +61,1999,27,0.011446464 +61,1999,26,0.01501978 +61,1999,25,0.014159366 +61,1999,24,0.01187627 +61,1999,23,0.013590491 +61,1999,22,0.015622635 +61,1999,21,0.01715803 +61,1999,20,0.01652982 +61,1999,19,0.013474641 +61,1999,18,0.019390604 +61,1999,17,0.019596686 +61,1999,16,0.01978871 +61,1999,15,0.026746024 +61,1999,14,0.026822431 +61,1999,13,0.027555448 +61,1999,12,0.034970113 +61,1999,11,0.039447231 +61,1999,10,0.038730182 +61,1999,9,0.044878201 +61,1999,8,0.044078701 +61,1999,7,0.048215865 +61,1999,6,0.055741729 +61,1999,5,0.070239201 +61,1999,4,0.079316839 +61,1999,3,0.074570008 +61,1999,2,0.063169521 +61,1999,1,0.061420466 +61,1999,0,0.062654968 +54,1999,30,0.003818297 +54,1999,29,0.004670854 +54,1999,28,0.007467165 +54,1999,27,0.008839683 +54,1999,26,0.010185762 +54,1999,25,0.00605585 +54,1999,24,0.005325762 +54,1999,23,0.002379855 +54,1999,22,0.004973891 +54,1999,21,0.005172137 +54,1999,20,0.00715526 +54,1999,19,0.01021709 +54,1999,18,0.017367068 +54,1999,17,0.018410795 +54,1999,16,0.024113438 +54,1999,15,0.03192122 +54,1999,14,0.031702416 +54,1999,13,0.035430409 +54,1999,12,0.037876044 +54,1999,11,0.045703751 +54,1999,10,0.049993618 +54,1999,9,0.047533037 +54,1999,8,0.042092613 +54,1999,7,0.04988586 +54,1999,6,0.054658888 +54,1999,5,0.071401797 +54,1999,4,0.073883311 +54,1999,3,0.063660387 +54,1999,2,0.086270054 +54,1999,1,0.052668306 +54,1999,0,0.089165378 +53,1999,30,0.004039326 +53,1999,29,0.002882149 +53,1999,28,0.01923559 +53,1999,27,0.007249569 +53,1999,26,0.011809767 +53,1999,25,0.004917884 +53,1999,24,0.002322608 +53,1999,23,0.001828453 +53,1999,22,0.010107635 +53,1999,21,0.010551934 +53,1999,20,0.007839684 +53,1999,19,0.005156836 +53,1999,18,0.00918836 +53,1999,17,0.009001491 +53,1999,16,0.012898345 +53,1999,15,0.016484388 +53,1999,14,0.013881872 +53,1999,13,0.016291373 +53,1999,12,0.012640546 +53,1999,11,0.032341898 +53,1999,10,0.086276344 +53,1999,9,0.027267795 +53,1999,8,0.040428231 +53,1999,7,0.029413837 +53,1999,6,0.126281289 +53,1999,5,0.054291925 +53,1999,4,0.081510653 +53,1999,3,0.06211456 +53,1999,2,0.039263522 +53,1999,1,0.041640698 +53,1999,0,0.200841438 +52,1999,30,0.003838605 +52,1999,29,0.004418871 +52,1999,28,0.007498674 +52,1999,27,0.008755227 +52,1999,26,0.01217578 +52,1999,25,0.006559907 +52,1999,24,0.005453476 +52,1999,23,0.002693794 +52,1999,22,0.00543392 +52,1999,21,0.006260811 +52,1999,20,0.006755181 +52,1999,19,0.008064585 +52,1999,18,0.018804356 +52,1999,17,0.017596774 +52,1999,16,0.017760197 +52,1999,15,0.024718807 +52,1999,14,0.02577895 +52,1999,13,0.037635827 +52,1999,12,0.033048869 +52,1999,11,0.04216003 +52,1999,10,0.04257277 +52,1999,9,0.047358416 +52,1999,8,0.040653931 +52,1999,7,0.046319237 +52,1999,6,0.055470523 +52,1999,5,0.069667076 +52,1999,4,0.085502236 +52,1999,3,0.066550251 +52,1999,2,0.088561356 +52,1999,1,0.05932279 +52,1999,0,0.102608775 +51,1999,30,0.004727413 +51,1999,29,0.003352689 +51,1999,28,0.005594928 +51,1999,27,0.009705601 +51,1999,26,0.015290824 +51,1999,25,0.008480462 +51,1999,24,0.004052742 +51,1999,23,0.005276582 +51,1999,22,0.006072388 +51,1999,21,0.005571484 +51,1999,20,0.007203542 +51,1999,19,0.007512654 +51,1999,18,0.013487468 +51,1999,17,0.012225014 +51,1999,16,0.012951363 +51,1999,15,0.016189954 +51,1999,14,0.016873609 +51,1999,13,0.01973783 +51,1999,12,0.025914599 +51,1999,11,0.031822974 +51,1999,10,0.046945752 +51,1999,9,0.035102246 +51,1999,8,0.047133734 +51,1999,7,0.034510079 +51,1999,6,0.039598967 +51,1999,5,0.074776453 +51,1999,4,0.103071139 +51,1999,3,0.08488062 +51,1999,2,0.06586603 +51,1999,1,0.114002552 +51,1999,0,0.122068308 +43,1999,30,0.001961822 +43,1999,29,0.00421152 +43,1999,28,0.006557463 +43,1999,27,0.00687844 +43,1999,26,0.009759864 +43,1999,25,0.009528161 +43,1999,24,0.012508087 +43,1999,23,0.009953885 +43,1999,22,0.012283991 +43,1999,21,0.013854217 +43,1999,20,0.013289193 +43,1999,19,0.024421992 +43,1999,18,0.026068644 +43,1999,17,0.024861751 +43,1999,16,0.023345616 +43,1999,15,0.030078079 +43,1999,14,0.031822328 +43,1999,13,0.040932871 +43,1999,12,0.038892639 +43,1999,11,0.038399941 +43,1999,10,0.033824211 +43,1999,9,0.051264539 +43,1999,8,0.053585393 +43,1999,7,0.048998294 +43,1999,6,0.054278093 +43,1999,5,0.050029695 +43,1999,4,0.065085755 +43,1999,3,0.059300474 +43,1999,2,0.072686517 +43,1999,1,0.06023836 +43,1999,0,0.071098166 +42,1999,30,0.001663108 +42,1999,29,0.003976013 +42,1999,28,0.006055212 +42,1999,27,0.00779883 +42,1999,26,0.009521493 +42,1999,25,0.011721218 +42,1999,24,0.012777593 +42,1999,23,0.010424364 +42,1999,22,0.010956794 +42,1999,21,0.01189723 +42,1999,20,0.015690636 +42,1999,19,0.024089772 +42,1999,18,0.025870357 +42,1999,17,0.024731855 +42,1999,16,0.026369534 +42,1999,15,0.023446603 +42,1999,14,0.031820418 +42,1999,13,0.036950196 +42,1999,12,0.036324239 +42,1999,11,0.038717526 +42,1999,10,0.046618241 +42,1999,9,0.049679723 +42,1999,8,0.045270361 +42,1999,7,0.046432644 +42,1999,6,0.049940877 +42,1999,5,0.055262808 +42,1999,4,0.063769229 +42,1999,3,0.074571003 +42,1999,2,0.07420907 +42,1999,1,0.061792392 +42,1999,0,0.061650661 +41,1999,30,0.001815506 +41,1999,29,0.004069656 +41,1999,28,0.006547171 +41,1999,27,0.008045359 +41,1999,26,0.009632537 +41,1999,25,0.008400633 +41,1999,24,0.010785313 +41,1999,23,0.009611525 +41,1999,22,0.012437467 +41,1999,21,0.013815369 +41,1999,20,0.014622293 +41,1999,19,0.02448812 +41,1999,18,0.027841434 +41,1999,17,0.026923247 +41,1999,16,0.024957073 +41,1999,15,0.030253931 +41,1999,14,0.034400974 +41,1999,13,0.041914177 +41,1999,12,0.042589731 +41,1999,11,0.041785996 +41,1999,10,0.040049447 +41,1999,9,0.04664297 +41,1999,8,0.049766577 +41,1999,7,0.04782419 +41,1999,6,0.054358764 +41,1999,5,0.057980036 +41,1999,4,0.065024941 +41,1999,3,0.054661684 +41,1999,2,0.061792483 +41,1999,1,0.057033858 +41,1999,0,0.069927536 +32,1999,30,0 +32,1999,29,0 +32,1999,28,0.000268736 +32,1999,27,0.000238777 +32,1999,26,0.000318708 +32,1999,25,0.000246528 +32,1999,24,0.000296516 +32,1999,23,0.000208645 +32,1999,22,0.003632753 +32,1999,21,0.00617078 +32,1999,20,0.007985552 +32,1999,19,0.007362879 +32,1999,18,0.010975581 +32,1999,17,0.011554251 +32,1999,16,0.01039042 +32,1999,15,0.015616326 +32,1999,14,0.015919171 +32,1999,13,0.022272666 +32,1999,12,0.02371036 +32,1999,11,0.030396618 +32,1999,10,0.033490319 +32,1999,9,0.031523872 +32,1999,8,0.029844227 +32,1999,7,0.031736699 +32,1999,6,0.05726427 +32,1999,5,0.058198563 +32,1999,4,0.090909819 +32,1999,3,0.084564278 +32,1999,2,0.125330861 +32,1999,1,0.112655125 +32,1999,0,0.176916698 +31,1999,30,0 +31,1999,29,0 +31,1999,28,0.000255778 +31,1999,27,0.000319138 +31,1999,26,0.000295936 +31,1999,25,0.00025607 +31,1999,24,0.000269756 +31,1999,23,0.000241369 +31,1999,22,0.003157236 +31,1999,21,0.004593075 +31,1999,20,0.005186797 +31,1999,19,0.004877431 +31,1999,18,0.009016504 +31,1999,17,0.009295362 +31,1999,16,0.009072864 +31,1999,15,0.014058887 +31,1999,14,0.015244244 +31,1999,13,0.021790813 +31,1999,12,0.021595146 +31,1999,11,0.028311863 +31,1999,10,0.033429051 +31,1999,9,0.033134267 +31,1999,8,0.037518997 +31,1999,7,0.044688344 +31,1999,6,0.054508843 +31,1999,5,0.077695634 +31,1999,4,0.084415041 +31,1999,3,0.087828429 +31,1999,2,0.114048497 +31,1999,1,0.130341621 +31,1999,0,0.154553008 +21,1999,30,0.001355825 +21,1999,29,0.00221915 +21,1999,28,0.004218676 +21,1999,27,0.005840343 +21,1999,26,0.007366597 +21,1999,25,0.007820972 +21,1999,24,0.009333149 +21,1999,23,0.010081057 +21,1999,22,0.011668246 +21,1999,21,0.012909216 +21,1999,20,0.013940676 +21,1999,19,0.015668735 +21,1999,18,0.017206421 +21,1999,17,0.016898341 +21,1999,16,0.019272847 +21,1999,15,0.022997711 +21,1999,14,0.02553345 +21,1999,13,0.029093361 +21,1999,12,0.027972898 +21,1999,11,0.029050273 +21,1999,10,0.031419051 +21,1999,9,0.038553183 +21,1999,8,0.046099419 +21,1999,7,0.052640887 +21,1999,6,0.059725043 +21,1999,5,0.066504316 +21,1999,4,0.074950272 +21,1999,3,0.07545769 +21,1999,2,0.083566152 +21,1999,1,0.084849395 +21,1999,0,0.09578665 +11,1999,30,0.001642133 +11,1999,29,0.001940378 +11,1999,28,0.005992977 +11,1999,27,0.009574327 +11,1999,26,0.009977425 +11,1999,25,0.018505225 +11,1999,24,0.01789414 +11,1999,23,0.021343095 +11,1999,22,0.020190298 +11,1999,21,0.032989968 +11,1999,20,0.038159585 +11,1999,19,0.039315064 +11,1999,18,0.043564119 +11,1999,17,0.03914694 +11,1999,16,0.043675189 +11,1999,15,0.033764589 +11,1999,14,0.036624693 +11,1999,13,0.03160281 +11,1999,12,0.02719837 +11,1999,11,0.025636565 +11,1999,10,0.032615648 +11,1999,9,0.032858976 +11,1999,8,0.033362026 +11,1999,7,0.039253861 +11,1999,6,0.040934336 +11,1999,5,0.046959658 +11,1999,4,0.040252817 +11,1999,3,0.061006629 +11,1999,2,0.059911432 +11,1999,1,0.052675772 +11,1999,0,0.061430955 +11,1990,0,0.051624 +11,1990,1,0.051229998 +11,1990,2,0.063943997 +11,1990,3,0.079722002 +11,1990,4,0.074129999 +11,1990,5,0.079697996 +11,1990,6,0.075754002 +11,1990,7,0.055452 +11,1990,8,0.042622 +11,1990,9,0.047726002 +11,1990,10,0.042668 +11,1990,11,0.034316 +11,1990,12,0.035819001 +11,1990,13,0.032800999 +11,1990,14,0.030007999 +11,1990,15,0.027407 +11,1990,16,0.024972999 +11,1990,17,0.022688 +11,1990,18,0.020532999 +11,1990,19,0.018495001 +11,1990,20,0.016561 +11,1990,21,0.014722 +11,1990,22,0.012968 +11,1990,23,0.011292 +11,1990,24,0.009687 +11,1990,25,0.008148 +11,1990,26,0.00667 +11,1990,27,0.005247 +11,1990,28,0.003876 +11,1990,29,0.002553 +11,1990,30,0.001275 +21,1990,0,0.057163998 +21,1990,1,0.078254998 +21,1990,2,0.082406998 +21,1990,3,0.081566997 +21,1990,4,0.083378002 +21,1990,5,0.080351003 +21,1990,6,0.076807998 +21,1990,7,0.055369001 +21,1990,8,0.049778 +21,1990,9,0.050863001 +21,1990,10,0.049155001 +21,1990,11,0.05328 +21,1990,12,0.046576999 +21,1990,13,0.03675 +21,1990,14,0.023980999 +21,1990,15,0.010248 +21,1990,16,0.009366 +21,1990,17,0.00856 +21,1990,18,0.007823 +21,1990,19,0.00715 +21,1990,20,0.006534 +21,1990,21,0.005972 +21,1990,22,0.005458 +21,1990,23,0.004988 +21,1990,24,0.004559 +21,1990,25,0.004167 +21,1990,26,0.003808 +21,1990,27,0.00348 +21,1990,28,0.003181 +21,1990,29,0.002907 +21,1990,30,0.002657 +31,1990,0,0.064012997 +31,1990,1,0.084985003 +31,1990,2,0.073586002 +31,1990,3,0.083650999 +31,1990,4,0.077017002 +31,1990,5,0.073059 +31,1990,6,0.084654003 +31,1990,7,0.064444996 +31,1990,8,0.05931 +31,1990,9,0.036075 +31,1990,10,0.033633001 +31,1990,11,0.036375999 +31,1990,12,0.032224 +31,1990,13,0.044709999 +31,1990,14,0.041898999 +31,1990,15,0.027927 +31,1990,16,0.021225 +31,1990,17,0.007426 +31,1990,18,0.006506 +31,1990,19,0.009565 +31,1990,20,0.009565 +31,1990,21,0.006092 +31,1990,22,0.004102 +31,1990,23,0.004321 +31,1990,24,0.002766 +31,1990,25,0.005669 +31,1990,26,0.002581 +31,1990,27,0.000742 +31,1990,28,0.000715 +31,1990,29,0.000261 +31,1990,30,6.80E-05 +32,1990,0,0.093835004 +32,1990,1,0.082181998 +32,1990,2,0.086034998 +32,1990,3,0.087975003 +32,1990,4,0.074387997 +32,1990,5,0.065824002 +32,1990,6,0.076981999 +32,1990,7,0.058081999 +32,1990,8,0.055358998 +32,1990,9,0.031851001 +32,1990,10,0.032892998 +32,1990,11,0.038899001 +32,1990,12,0.033080999 +32,1990,13,0.043443002 +32,1990,14,0.037928998 +32,1990,15,0.023933001 +32,1990,16,0.016083 +32,1990,17,0.009773 +32,1990,18,0.007029 +32,1990,19,0.010609 +32,1990,20,0.007836 +32,1990,21,0.003765 +32,1990,22,0.005801 +32,1990,23,0.00294 +32,1990,24,0.002186 +32,1990,25,0.000794 +32,1990,26,0.001761 +32,1990,27,0.005626 +32,1990,28,0.000646 +32,1990,29,0.000315 +32,1990,30,0.000385 +41,1990,0,0.042828001 +41,1990,1,0.045304999 +41,1990,2,0.054758001 +41,1990,3,0.058453999 +41,1990,4,0.060224999 +41,1990,5,0.065205 +41,1990,6,0.061023001 +41,1990,7,0.066155002 +41,1990,8,0.071399003 +41,1990,9,0.036849 +41,1990,10,0.054506 +41,1990,11,0.060539 +41,1990,12,0.074759997 +41,1990,13,0.072673999 +41,1990,14,0.047005001 +41,1990,15,0.028842 +41,1990,16,0.017904 +41,1990,17,0.009444 +41,1990,18,0.028364001 +41,1990,19,0.015495 +41,1990,20,0.009684 +41,1990,21,0.00199 +41,1990,22,0.006454 +41,1990,23,0.004366 +41,1990,24,0.002352 +41,1990,25,0.001645 +41,1990,26,0.000975 +41,1990,27,0.000217 +41,1990,28,0.000179 +41,1990,29,0.000179 +41,1990,30,0.000179 +42,1990,0,0.056203 +42,1990,1,0.056203 +42,1990,2,0.056203 +42,1990,3,0.056203 +42,1990,4,0.056203 +42,1990,5,0.056203 +42,1990,6,0.056203 +42,1990,7,0.056201998 +42,1990,8,0.056198999 +42,1990,9,0.056186002 +42,1990,10,0.056139 +42,1990,11,0.055991001 +42,1990,12,0.055574998 +42,1990,13,0.054508001 +42,1990,14,0.052011002 +42,1990,15,0.046755001 +42,1990,16,0.037179001 +42,1990,17,0.023234 +42,1990,18,0.011084 +42,1990,19,0.009075 +42,1990,20,0.00743 +42,1990,21,0.006083 +42,1990,22,0.00498 +42,1990,23,0.004077 +42,1990,24,0.003338 +42,1990,25,0.002733 +42,1990,26,0.002238 +42,1990,27,0.001832 +42,1990,28,0.0015 +42,1990,29,0.001228 +42,1990,30,0.001005 +43,1990,0,0.061537001 +43,1990,1,0.084895 +43,1990,2,0.073347002 +43,1990,3,0.055925999 +43,1990,4,0.069499999 +43,1990,5,0.078525998 +43,1990,6,0.090651996 +43,1990,7,0.047230002 +43,1990,8,0.063259996 +43,1990,9,0.036722999 +43,1990,10,0.061057001 +43,1990,11,0.061044998 +43,1990,12,0.099083997 +43,1990,13,0.074469 +43,1990,14,0.009395 +43,1990,15,0.00164 +43,1990,16,0.008815 +43,1990,17,0.004711 +43,1990,18,0.005473 +43,1990,19,0.009763 +43,1990,20,5.30E-05 +43,1990,21,0 +43,1990,22,0 +43,1990,23,0 +43,1990,24,0 +43,1990,25,0.002952 +43,1990,26,5.30E-05 +43,1990,27,0 +43,1990,28,0 +43,1990,29,0 +43,1990,30,0 +51,1990,0,0.061537001 +51,1990,1,0.084895 +51,1990,2,0.073347002 +51,1990,3,0.055925999 +51,1990,4,0.069499999 +51,1990,5,0.078525998 +51,1990,6,0.090651996 +51,1990,7,0.047230002 +51,1990,8,0.063259996 +51,1990,9,0.036722999 +51,1990,10,0.061057001 +51,1990,11,0.061044998 +51,1990,12,0.099083997 +51,1990,13,0.074469 +51,1990,14,0.009395 +51,1990,15,0.00164 +51,1990,16,0.008815 +51,1990,17,0.004711 +51,1990,18,0.005473 +51,1990,19,0.009763 +51,1990,20,5.30E-05 +51,1990,21,0 +51,1990,22,0 +51,1990,23,0 +51,1990,24,0 +51,1990,25,0.002952 +51,1990,26,5.30E-05 +51,1990,27,0 +51,1990,28,0 +51,1990,29,0 +51,1990,30,0 +52,1990,0,0.027181 +52,1990,1,0.044868998 +52,1990,2,0.045049999 +52,1990,3,0.054400999 +52,1990,4,0.065958001 +52,1990,5,0.046969999 +52,1990,6,0.060540002 +52,1990,7,0.045573998 +52,1990,8,0.044486001 +52,1990,9,0.032846 +52,1990,10,0.040479001 +52,1990,11,0.056968998 +52,1990,12,0.060842 +52,1990,13,0.060132999 +52,1990,14,0.047556002 +52,1990,15,0.036637001 +52,1990,16,0.033549 +52,1990,17,0.027399 +52,1990,18,0.035177 +52,1990,19,0.032563999 +52,1990,20,0.021947 +52,1990,21,0.014326 +52,1990,22,0.011592 +52,1990,23,0.014517 +52,1990,24,0.011835 +52,1990,25,0.006119 +52,1990,26,0.005476 +52,1990,27,0.004927 +52,1990,28,0.002465 +52,1990,29,0.000569 +52,1990,30,0.001235 +53,1990,0,0.048119001 +53,1990,1,0.129345 +53,1990,2,0.079241998 +53,1990,3,0.054207001 +53,1990,4,0.054526001 +53,1990,5,0.077293999 +53,1990,6,0.066209003 +53,1990,7,0.091059998 +53,1990,8,0.021898 +53,1990,9,0.026116 +53,1990,10,0.030758001 +53,1990,11,0.056497999 +53,1990,12,0.158850998 +53,1990,13,0.028757 +53,1990,14,0.003408 +53,1990,15,0.002028 +53,1990,16,0.029248999 +53,1990,17,0.010177 +53,1990,18,0.009154 +53,1990,19,0.003142 +53,1990,20,0.002028 +53,1990,21,0.016861999 +53,1990,22,0 +53,1990,23,0 +53,1990,24,0 +53,1990,25,0 +53,1990,26,0.001071 +53,1990,27,0 +53,1990,28,0 +53,1990,29,0 +53,1990,30,0 +54,1990,0,0.073712997 +54,1990,1,0.045616001 +54,1990,2,0.073930003 +54,1990,3,0.048698001 +54,1990,4,0.060515001 +54,1990,5,0.060803998 +54,1990,6,0.044092 +54,1990,7,0.040780999 +54,1990,8,0.031984001 +54,1990,9,0.04417 +54,1990,10,0.060194999 +54,1990,11,0.056322001 +54,1990,12,0.057429999 +54,1990,13,0.044695001 +54,1990,14,0.050087001 +54,1990,15,0.053064998 +54,1990,16,0.036308002 +54,1990,17,0.022150001 +54,1990,18,0.012724 +54,1990,19,0.001733 +54,1990,20,0.013844 +54,1990,21,0.019059001 +54,1990,22,0.026699999 +54,1990,23,0.016930999 +54,1990,24,0.004455 +54,1990,25,0 +54,1990,26,0 +54,1990,27,0 +54,1990,28,0 +54,1990,29,0 +54,1990,30,0 +61,1990,0,0.042828001 +61,1990,1,0.045304999 +61,1990,2,0.054758001 +61,1990,3,0.058453999 +61,1990,4,0.060224999 +61,1990,5,0.065205 +61,1990,6,0.061023001 +61,1990,7,0.066155002 +61,1990,8,0.071399003 +61,1990,9,0.036849 +61,1990,10,0.054506 +61,1990,11,0.060539 +61,1990,12,0.074759997 +61,1990,13,0.072673999 +61,1990,14,0.047005001 +61,1990,15,0.028842 +61,1990,16,0.017904 +61,1990,17,0.009444 +61,1990,18,0.028364001 +61,1990,19,0.015495 +61,1990,20,0.009684 +61,1990,21,0.00199 +61,1990,22,0.006454 +61,1990,23,0.004366 +61,1990,24,0.002352 +61,1990,25,0.001645 +61,1990,26,0.000975 +61,1990,27,0.000217 +61,1990,28,0.000179 +61,1990,29,0.000179 +61,1990,30,0.000179 +62,1990,0,0.138962001 +62,1990,1,0.091675997 +62,1990,2,0.111477003 +62,1990,3,0.134186998 +62,1990,4,0.109485 +62,1990,5,0.081206001 +62,1990,6,0.065945998 +62,1990,7,0.066909 +62,1990,8,0.062181 +62,1990,9,0.022699 +62,1990,10,0.024443001 +62,1990,11,0.025559001 +62,1990,12,0.017402001 +62,1990,13,0.01392 +62,1990,14,0.010311 +62,1990,15,0.006363 +62,1990,16,0.006279 +62,1990,17,0.001759 +62,1990,18,0.002635 +62,1990,19,0.002323 +62,1990,20,0.001351 +62,1990,21,0.001147 +62,1990,22,0.001053 +62,1990,23,0 +62,1990,24,0 +62,1990,25,0 +62,1990,26,0.000727 +62,1990,27,0 +62,1990,28,0 +62,1990,29,0 +62,1990,30,0 +21,2011,30,0.001585208 +21,2011,29,0.001745916 +21,2011,28,0.002511533 +21,2011,27,0.004199844 +21,2011,26,0.005296069 +21,2011,25,0.006515214 +21,2011,24,0.008015958 +21,2011,23,0.009689734 +21,2011,22,0.012400447 +21,2011,21,0.014962204 +21,2011,20,0.017768955 +21,2011,19,0.020948916 +21,2011,18,0.024946971 +21,2011,17,0.029008651 +21,2011,16,0.036715394 +21,2011,15,0.035393668 +21,2011,14,0.041973754 +21,2011,13,0.044075495 +21,2011,12,0.049975925 +21,2011,11,0.057454963 +21,2011,10,0.05337102 +21,2011,9,0.05497061 +21,2011,8,0.055071404 +21,2011,7,0.052646758 +21,2011,6,0.056223801 +21,2011,5,0.056186375 +21,2011,4,0.059718981 +21,2011,3,0.054459357 +21,2011,2,0.042986643 +21,2011,1,0.047185151 +21,2011,0,0.041995083 +31,2011,30,0.001630937 +31,2011,29,0.00191302 +31,2011,28,0.002385368 +31,2011,27,0.004007155 +31,2011,26,0.004854817 +31,2011,25,0.007052597 +31,2011,24,0.006963929 +31,2011,23,0.009182831 +31,2011,22,0.010841762 +31,2011,21,0.01062503 +31,2011,20,0.012006777 +31,2011,19,0.014202522 +31,2011,18,0.017483108 +31,2011,17,0.025039545 +31,2011,16,0.027407931 +31,2011,15,0.028408973 +31,2011,14,0.037180278 +31,2011,13,0.042421856 +31,2011,12,0.050355567 +31,2011,11,0.05447842 +31,2011,10,0.056184364 +31,2011,9,0.062375694 +31,2011,8,0.063846652 +31,2011,7,0.068593668 +31,2011,6,0.067742295 +31,2011,5,0.064437912 +31,2011,4,0.062614403 +31,2011,3,0.05871224 +31,2011,2,0.033512074 +31,2011,1,0.043974989 +31,2011,0,0.049563285 +32,2011,30,0.001166686 +32,2011,29,0.001518128 +32,2011,28,0.001872815 +32,2011,27,0.003101692 +32,2011,26,0.003686972 +32,2011,25,0.005286095 +32,2011,24,0.005687117 +32,2011,23,0.007318219 +32,2011,22,0.008047701 +32,2011,21,0.007484033 +32,2011,20,0.007015263 +32,2011,19,0.007345128 +32,2011,18,0.013645072 +32,2011,17,0.013746344 +32,2011,16,0.021899405 +32,2011,15,0.020298059 +32,2011,14,0.030457984 +32,2011,13,0.027337701 +32,2011,12,0.043273363 +32,2011,11,0.054954529 +32,2011,10,0.064650917 +32,2011,9,0.070219367 +32,2011,8,0.072425556 +32,2011,7,0.078115391 +32,2011,6,0.076969024 +32,2011,5,0.074342483 +32,2011,4,0.070335791 +32,2011,3,0.066771407 +32,2011,2,0.037155737 +32,2011,1,0.048187718 +32,2011,0,0.055684303 +51,2011,30,0.003501142 +51,2011,29,0.00291461 +51,2011,28,0.002521293 +51,2011,27,0.005584067 +51,2011,26,0.006807501 +51,2011,25,0.006774825 +51,2011,24,0.013207674 +51,2011,23,0.014728208 +51,2011,22,0.025590071 +51,2011,21,0.016556975 +51,2011,20,0.023336833 +51,2011,19,0.014909712 +51,2011,18,0.016696618 +51,2011,17,0.036669155 +51,2011,16,0.052068607 +51,2011,15,0.040574522 +51,2011,14,0.031178849 +51,2011,13,0.064510294 +51,2011,12,0.070182153 +51,2011,11,0.048848217 +51,2011,10,0.035742876 +51,2011,9,0.028967937 +51,2011,8,0.039961861 +51,2011,7,0.040683539 +51,2011,6,0.067710968 +51,2011,5,0.071820772 +51,2011,4,0.095613136 +51,2011,3,0.027282794 +51,2011,2,0.035139382 +51,2011,1,0.026487103 +51,2011,0,0.033428305 +52,2011,30,0.006567616 +52,2011,29,0.006674274 +52,2011,28,0.006740472 +52,2011,27,0.011340401 +52,2011,26,0.013153201 +52,2011,25,0.015381857 +52,2011,24,0.017108623 +52,2011,23,0.018798968 +52,2011,22,0.021148542 +52,2011,21,0.021982398 +52,2011,20,0.016178639 +52,2011,19,0.017867756 +52,2011,18,0.022457724 +52,2011,17,0.032252362 +52,2011,16,0.042266648 +52,2011,15,0.030808196 +52,2011,14,0.045942598 +52,2011,13,0.033420799 +52,2011,12,0.059120538 +52,2011,11,0.069675946 +52,2011,10,0.042663365 +52,2011,9,0.039272887 +52,2011,8,0.043762847 +52,2011,7,0.050624994 +52,2011,6,0.05768687 +52,2011,5,0.06661787 +52,2011,4,0.062927972 +52,2011,3,0.047892348 +52,2011,2,0.023097142 +52,2011,1,0.021556948 +52,2011,0,0.035009199 +53,2011,30,0.002724287 +53,2011,29,0.002777195 +53,2011,28,0.002764351 +53,2011,27,0.004783715 +53,2011,26,0.005544089 +53,2011,25,0.006374359 +53,2011,24,0.006113672 +53,2011,23,0.017041453 +53,2011,22,0.05347625 +53,2011,21,0.013151519 +53,2011,20,0.021330324 +53,2011,19,0.013714049 +53,2011,18,0.077652598 +53,2011,17,0.027926973 +53,2011,16,0.033824371 +53,2011,15,0.019753429 +53,2011,14,0.017532048 +53,2011,13,0.02134101 +53,2011,12,0.126658134 +53,2011,11,0.14566951 +53,2011,10,0.059035564 +53,2011,9,0.023845759 +53,2011,8,0.028370219 +53,2011,7,0.033320412 +53,2011,6,0.045023754 +53,2011,5,0.048582685 +53,2011,4,0.054358497 +53,2011,3,0.030994331 +53,2011,2,0.01760663 +53,2011,1,0.014973363 +53,2011,0,0.023735453 +61,2011,30,0.00888179 +61,2011,29,0.007290441 +61,2011,28,0.006217536 +61,2011,27,0.014459874 +61,2011,26,0.017721445 +61,2011,25,0.017418602 +61,2011,24,0.024961259 +61,2011,23,0.031744187 +61,2011,22,0.034330033 +61,2011,21,0.033687596 +61,2011,20,0.027157962 +61,2011,19,0.029247949 +61,2011,18,0.038030049 +61,2011,17,0.052443915 +61,2011,16,0.062782696 +61,2011,15,0.055623018 +61,2011,14,0.039757456 +61,2011,13,0.048964407 +61,2011,12,0.048221126 +61,2011,11,0.053542327 +61,2011,10,0.039091043 +61,2011,9,0.019929666 +61,2011,8,0.025647761 +61,2011,7,0.028768597 +61,2011,6,0.045516825 +61,2011,5,0.046773079 +61,2011,4,0.06292041 +61,2011,3,0.019199554 +61,2011,2,0.021297244 +61,2011,1,0.016424004 +61,2011,0,0.02194815 +62,2011,30,0.000423371 +62,2011,29,0.000352424 +62,2011,28,0.000291561 +62,2011,27,0.000717621 +62,2011,26,0.000893877 +62,2011,25,0.000868404 +62,2011,24,0.003241496 +62,2011,23,0.001913592 +62,2011,22,0.003104435 +62,2011,21,0.003078163 +62,2011,20,0.003954702 +62,2011,19,0.005155512 +62,2011,18,0.008560477 +62,2011,17,0.012664769 +62,2011,16,0.020910066 +62,2011,15,0.02344041 +62,2011,14,0.021508393 +62,2011,13,0.038069262 +62,2011,12,0.057196189 +62,2011,11,0.076646191 +62,2011,10,0.048154522 +62,2011,9,0.041510505 +62,2011,8,0.057041173 +62,2011,7,0.058437224 +62,2011,6,0.097110696 +62,2011,5,0.102756459 +62,2011,4,0.1370912 +62,2011,3,0.039158888 +62,2011,2,0.050100256 +62,2011,1,0.037802043 +62,2011,0,0.047846118 +11,2011,0,0.058536999 +11,2011,1,0.056517273 +11,2011,2,0.061423343 +11,2011,3,0.108840674 +11,2011,4,0.0968391 +11,2011,5,0.091748759 +11,2011,6,0.080345996 +11,2011,7,0.068163566 +11,2011,8,0.058349829 +11,2011,9,0.051395696 +11,2011,10,0.043556239 +11,2011,11,0.034769505 +11,2011,12,0.026280066 +11,2011,13,0.022424813 +11,2011,14,0.021454984 +11,2011,15,0.018803302 +11,2011,16,0.014163656 +11,2011,17,0.016297011 +11,2011,18,0.013281646 +11,2011,19,0.011112848 +11,2011,20,0.008798444 +11,2011,21,0.007131719 +11,2011,22,0.005286652 +11,2011,23,0.004474849 +11,2011,24,0.004422022 +11,2011,25,0.003674107 +11,2011,26,0.003092571 +11,2011,27,0.002763426 +11,2011,28,0.002020026 +11,2011,29,0.001564459 +11,2011,30,0.002466422 +41,2011,0,0.047686953 +41,2011,1,0.042102549 +41,2011,2,0.035296991 +41,2011,3,0.045827772 +41,2011,4,0.060053457 +41,2011,5,0.061687842 +41,2011,6,0.063774236 +41,2011,7,0.061962247 +41,2011,8,0.057427481 +41,2011,9,0.053787708 +41,2011,10,0.051721923 +41,2011,11,0.049186699 +41,2011,12,0.047815643 +41,2011,13,0.036235865 +41,2011,14,0.029482823 +41,2011,15,0.024375774 +41,2011,16,0.031680431 +41,2011,17,0.02439297 +41,2011,18,0.020079248 +41,2011,19,0.014790042 +41,2011,20,0.016759822 +41,2011,21,0.018808909 +41,2011,22,0.018655349 +41,2011,23,0.01735699 +41,2011,24,0.018041696 +41,2011,25,0.015134002 +41,2011,26,0.013217708 +41,2011,27,0.010400658 +41,2011,28,0.004104632 +41,2011,29,0.00345944 +41,2011,30,0.004692139 +42,2011,0,0.062818483 +42,2011,1,0.038454305 +42,2011,2,0.039334938 +42,2011,3,0.055479877 +42,2011,4,0.053890511 +42,2011,5,0.038869053 +42,2011,6,0.060743496 +42,2011,7,0.049803078 +42,2011,8,0.048802681 +42,2011,9,0.04946813 +42,2011,10,0.056977499 +42,2011,11,0.038547106 +42,2011,12,0.037370153 +42,2011,13,0.043858394 +42,2011,14,0.040074021 +42,2011,15,0.036912858 +42,2011,16,0.030250482 +42,2011,17,0.026379483 +42,2011,18,0.021880221 +42,2011,19,0.018995956 +42,2011,20,0.019214356 +42,2011,21,0.028122686 +42,2011,22,0.021394938 +42,2011,23,0.016842557 +42,2011,24,0.01558179 +42,2011,25,0.01312668 +42,2011,26,0.011264277 +42,2011,27,0.008780948 +42,2011,28,0.008327213 +42,2011,29,0.004490569 +42,2011,30,0.003943258 +43,2011,0,0.036849249 +43,2011,1,0.040281124 +43,2011,2,0.047981516 +43,2011,3,0.052913178 +43,2011,4,0.054825217 +43,2011,5,0.064427949 +43,2011,6,0.057400469 +43,2011,7,0.056547716 +43,2011,8,0.048689906 +43,2011,9,0.051137436 +43,2011,10,0.046667848 +43,2011,11,0.050778288 +43,2011,12,0.046983737 +43,2011,13,0.037077591 +43,2011,14,0.034539223 +43,2011,15,0.029786289 +43,2011,16,0.038048528 +43,2011,17,0.018361695 +43,2011,18,0.021927034 +43,2011,19,0.01768619 +43,2011,20,0.022576049 +43,2011,21,0.025499405 +43,2011,22,0.014548776 +43,2011,23,0.017299751 +43,2011,24,0.017523874 +43,2011,25,0.015294969 +43,2011,26,0.013132307 +43,2011,27,0.010140838 +43,2011,28,0.003704522 +43,2011,29,0.002712871 +43,2011,30,0.004656443 +54,2011,0,0.045952793 +54,2011,1,0.04057147 +54,2011,2,0.034013398 +54,2011,3,0.044161223 +54,2011,4,0.057869583 +54,2011,5,0.059444539 +54,2011,6,0.061455056 +54,2011,7,0.05970896 +54,2011,8,0.055339102 +54,2011,9,0.051831692 +54,2011,10,0.049841035 +54,2011,11,0.047397997 +54,2011,12,0.046076808 +54,2011,13,0.027088223 +54,2011,14,0.041706789 +54,2011,15,0.025824195 +54,2011,16,0.030469798 +54,2011,17,0.029053353 +54,2011,18,0.019993188 +54,2011,19,0.017538486 +54,2011,20,0.013046275 +54,2011,21,0.017088071 +54,2011,22,0.022074917 +54,2011,23,0.019578876 +54,2011,24,0.019123282 +54,2011,25,0.014099433 +54,2011,26,0.014968888 +54,2011,27,0.015184041 +54,2011,28,0.009836487 +54,2011,29,0.005742676 +54,2011,30,0.003919364 +62,2000,30,0.000696431 +62,2000,29,0.002266941 +62,2000,28,0.004377633 +62,2000,27,0.00739746 +62,2000,26,0.009316397 +62,2000,25,0.008657204 +62,2000,24,0.016296298 +62,2000,23,0.024931146 +62,2000,22,0.031550057 +62,2000,21,0.02217854 +62,2000,20,0.021446484 +62,2000,19,0.026232449 +62,2000,18,0.028381509 +62,2000,17,0.034812588 +62,2000,16,0.039827718 +62,2000,15,0.030072395 +62,2000,14,0.022901579 +62,2000,13,0.031765386 +62,2000,12,0.024467864 +62,2000,11,0.025902278 +62,2000,10,0.025689524 +62,2000,9,0.026445159 +62,2000,8,0.021225851 +62,2000,7,0.026651839 +62,2000,6,0.034444377 +62,2000,5,0.045546349 +62,2000,4,0.05114415 +62,2000,3,0.046358695 +62,2000,2,0.071836934 +62,2000,1,0.101140128 +62,2000,0,0.136038636 +61,2000,30,0.001582112 +61,2000,29,0.004716624 +61,2000,28,0.009021678 +61,2000,27,0.012262276 +61,2000,26,0.012815681 +61,2000,25,0.010229071 +61,2000,24,0.013516009 +61,2000,23,0.014619432 +61,2000,22,0.015308898 +61,2000,21,0.014270564 +61,2000,20,0.011134256 +61,2000,19,0.017475255 +61,2000,18,0.017337932 +61,2000,17,0.01735327 +61,2000,16,0.024162712 +61,2000,15,0.024656357 +61,2000,14,0.025829099 +61,2000,13,0.03477846 +61,2000,12,0.036758551 +61,2000,11,0.036371493 +61,2000,10,0.042483919 +61,2000,9,0.041273128 +61,2000,8,0.045335236 +61,2000,7,0.053152215 +61,2000,6,0.066778857 +61,2000,5,0.075631649 +61,2000,4,0.071588313 +61,2000,3,0.059817896 +61,2000,2,0.061083854 +61,2000,1,0.06231159 +61,2000,0,0.066343612 +54,2000,30,0 +54,2000,29,0.00224348 +54,2000,28,0.004250785 +54,2000,27,0.005476373 +54,2000,26,0.004052 +54,2000,25,0.005387141 +54,2000,24,0.002407283 +54,2000,23,0.004145513 +54,2000,22,0.003553582 +54,2000,21,0.005272257 +54,2000,20,0.008880581 +54,2000,19,0.01563378 +54,2000,18,0.017845403 +54,2000,17,0.023052304 +54,2000,16,0.031141268 +54,2000,15,0.030554016 +54,2000,14,0.033288954 +54,2000,13,0.03831256 +54,2000,12,0.04174172 +54,2000,11,0.046086497 +54,2000,10,0.042289432 +54,2000,9,0.035871779 +54,2000,8,0.0438813 +54,2000,7,0.049315134 +54,2000,6,0.065349517 +54,2000,5,0.067244269 +54,2000,4,0.057777898 +54,2000,3,0.081193244 +54,2000,2,0.053275301 +54,2000,1,0.090192997 +54,2000,0,0.090283631 +53,2000,30,0 +53,2000,29,0.005079006 +53,2000,28,0.003010193 +53,2000,27,0.00543295 +53,2000,26,0.002673588 +53,2000,25,0.001988861 +53,2000,24,0.001565714 +53,2000,23,0.006650081 +53,2000,22,0.007847281 +53,2000,21,0.004763279 +53,2000,20,0.003456275 +53,2000,19,0.007154237 +53,2000,18,0.007202281 +53,2000,17,0.008896879 +53,2000,16,0.011580919 +53,2000,15,0.010519486 +53,2000,14,0.012958019 +53,2000,13,0.010824162 +53,2000,12,0.025640407 +53,2000,11,0.072069434 +53,2000,10,0.02111439 +53,2000,9,0.032125064 +53,2000,8,0.022921953 +53,2000,7,0.105809979 +53,2000,6,0.044548051 +53,2000,5,0.065196812 +53,2000,4,0.042842733 +53,2000,3,0.030590371 +53,2000,2,0.035657135 +53,2000,1,0.171981514 +53,2000,0,0.217898947 +52,2000,30,0 +52,2000,29,0.002169777 +52,2000,28,0.004090616 +52,2000,27,0.006379432 +52,2000,26,0.004275452 +52,2000,25,0.005336557 +52,2000,24,0.002636041 +52,2000,23,0.004460815 +52,2000,22,0.004511652 +52,2000,21,0.004320781 +52,2000,20,0.006357229 +52,2000,19,0.016485915 +52,2000,18,0.016368044 +52,2000,17,0.015938545 +52,2000,16,0.022731545 +52,2000,15,0.023985685 +52,2000,14,0.035003654 +52,2000,13,0.032340321 +52,2000,12,0.03652272 +52,2000,11,0.037547901 +52,2000,10,0.042338848 +52,2000,9,0.034887334 +52,2000,8,0.040161115 +52,2000,7,0.047999875 +52,2000,6,0.062369997 +52,2000,5,0.07711513 +52,2000,4,0.059733086 +52,2000,3,0.080584499 +52,2000,2,0.058050945 +52,2000,1,0.100408904 +52,2000,0,0.114887584 +51,2000,30,0 +51,2000,29,0.001676138 +51,2000,28,0.004654914 +51,2000,27,0.008227665 +51,2000,26,0.005641701 +51,2000,25,0.004037949 +51,2000,24,0.005257323 +51,2000,23,0.005388503 +51,2000,22,0.003713438 +51,2000,21,0.004224346 +51,2000,20,0.005460431 +51,2000,19,0.011989022 +51,2000,18,0.01048223 +51,2000,17,0.011163555 +51,2000,16,0.014931386 +51,2000,15,0.015599129 +51,2000,14,0.018097992 +51,2000,13,0.025820012 +51,2000,12,0.028264541 +51,2000,11,0.044140958 +51,2000,10,0.032169511 +51,2000,9,0.04374638 +51,2000,8,0.031025009 +51,2000,7,0.036206754 +51,2000,6,0.069870129 +51,2000,5,0.097622871 +51,2000,4,0.078233944 +51,2000,3,0.061007374 +51,2000,2,0.113586447 +51,2000,1,0.121622763 +51,2000,0,0.086137584 +43,2000,30,0.002366073 +43,2000,29,0.004458028 +43,2000,28,0.005518043 +43,2000,27,0.007945349 +43,2000,26,0.008560924 +43,2000,25,0.010069143 +43,2000,24,0.009689749 +43,2000,23,0.011334173 +43,2000,22,0.012714395 +43,2000,21,0.011925768 +43,2000,20,0.022684836 +43,2000,19,0.024095922 +43,2000,18,0.023092591 +43,2000,17,0.02142841 +43,2000,16,0.027824191 +43,2000,15,0.029764164 +43,2000,14,0.037537963 +43,2000,13,0.037860585 +43,2000,12,0.034928635 +43,2000,11,0.030870216 +43,2000,10,0.047995946 +43,2000,9,0.050039629 +43,2000,8,0.045426174 +43,2000,7,0.05045004 +43,2000,6,0.046293856 +43,2000,5,0.061136885 +43,2000,4,0.056155992 +43,2000,3,0.06831535 +43,2000,2,0.058639876 +43,2000,1,0.069211507 +43,2000,0,0.071665587 +42,2000,30,0.002258749 +42,2000,29,0.004171427 +42,2000,28,0.006357243 +42,2000,27,0.007841296 +42,2000,26,0.010643485 +42,2000,25,0.010579362 +42,2000,24,0.010271987 +42,2000,23,0.010212891 +42,2000,22,0.010833701 +42,2000,21,0.014463735 +42,2000,20,0.022383613 +42,2000,19,0.024146329 +42,2000,18,0.023194249 +42,2000,17,0.024814756 +42,2000,16,0.021863471 +42,2000,15,0.029883265 +42,2000,14,0.034132025 +42,2000,13,0.035793275 +42,2000,12,0.035694124 +42,2000,11,0.043871318 +42,2000,10,0.04674374 +42,2000,9,0.042939789 +42,2000,8,0.04347293 +42,2000,7,0.04703979 +42,2000,6,0.052178259 +42,2000,5,0.060566645 +42,2000,4,0.071248504 +42,2000,3,0.070745694 +42,2000,2,0.060889152 +42,2000,1,0.060749493 +42,2000,0,0.060015702 +41,2000,30,0.002284353 +41,2000,29,0.004458674 +41,2000,28,0.006479461 +41,2000,27,0.007847976 +41,2000,26,0.007543842 +41,2000,25,0.00849175 +41,2000,24,0.00938044 +41,2000,23,0.0115145 +41,2000,22,0.012576487 +41,2000,21,0.013272343 +41,2000,20,0.022939662 +41,2000,19,0.026091764 +41,2000,18,0.025201932 +41,2000,17,0.023038691 +41,2000,16,0.028086606 +41,2000,15,0.032223119 +41,2000,14,0.03857181 +41,2000,13,0.04156577 +41,2000,12,0.03812591 +41,2000,11,0.036842284 +41,2000,10,0.043469923 +41,2000,9,0.046426214 +41,2000,8,0.044214786 +41,2000,7,0.050598355 +41,2000,6,0.053942121 +41,2000,5,0.061036454 +41,2000,4,0.051472699 +41,2000,3,0.058094798 +41,2000,2,0.055662625 +41,2000,1,0.068246307 +41,2000,0,0.070298346 +32,2000,30,0 +32,2000,29,0.000219234 +32,2000,28,0.000194793 +32,2000,27,0.000260001 +32,2000,26,0.000201116 +32,2000,25,0.000241896 +32,2000,24,0.000170212 +32,2000,23,0.002963584 +32,2000,22,0.005034095 +32,2000,21,0.006514577 +32,2000,20,0.006006604 +32,2000,19,0.00895383 +32,2000,18,0.009425906 +32,2000,17,0.008476458 +32,2000,16,0.012739728 +32,2000,15,0.012986788 +32,2000,14,0.018169941 +32,2000,13,0.019342805 +32,2000,12,0.024797424 +32,2000,11,0.027321251 +32,2000,10,0.025717032 +32,2000,9,0.024346785 +32,2000,8,0.025890655 +32,2000,7,0.046715933 +32,2000,6,0.047478125 +32,2000,5,0.07416382 +32,2000,4,0.068987156 +32,2000,3,0.10224435 +32,2000,2,0.091903542 +32,2000,1,0.144327843 +32,2000,0,0.184204517 +31,2000,30,0 +31,2000,29,0.000219103 +31,2000,28,0.000273378 +31,2000,27,0.000253503 +31,2000,26,0.000219353 +31,2000,25,0.000231077 +31,2000,24,0.00020676 +31,2000,23,0.002704533 +31,2000,22,0.003934494 +31,2000,21,0.004443084 +31,2000,20,0.004178077 +31,2000,19,0.007723666 +31,2000,18,0.007962539 +31,2000,17,0.007771944 +31,2000,16,0.012043043 +31,2000,15,0.013058436 +31,2000,14,0.01866632 +31,2000,13,0.018498709 +31,2000,12,0.024252344 +31,2000,11,0.0286358 +31,2000,10,0.028383285 +31,2000,9,0.032139307 +31,2000,8,0.038280671 +31,2000,7,0.04669305 +31,2000,6,0.066555185 +31,2000,5,0.072311124 +31,2000,4,0.075235082 +31,2000,3,0.097695564 +31,2000,2,0.111652486 +31,2000,1,0.132392305 +31,2000,0,0.14338578 +21,2000,30,0.000876391 +21,2000,29,0.002878459 +21,2000,28,0.004561619 +21,2000,27,0.006149874 +21,2000,26,0.006826134 +21,2000,25,0.008374619 +21,2000,24,0.009147169 +21,2000,23,0.010518182 +21,2000,22,0.011327567 +21,2000,21,0.011962617 +21,2000,20,0.013470371 +21,2000,19,0.014597477 +21,2000,18,0.014152558 +21,2000,17,0.016123268 +21,2000,16,0.019536296 +21,2000,15,0.021862535 +21,2000,14,0.024987966 +21,2000,13,0.026521677 +21,2000,12,0.024772773 +21,2000,11,0.027223572 +21,2000,10,0.033778178 +21,2000,9,0.04054253 +21,2000,8,0.046665387 +21,2000,7,0.05333685 +21,2000,6,0.060135357 +21,2000,5,0.069738814 +21,2000,4,0.071059452 +21,2000,3,0.078722064 +21,2000,2,0.080932193 +21,2000,1,0.091380482 +21,2000,0,0.09783757 +11,2000,30,0 +11,2000,29,0.003834337 +11,2000,28,0.006993032 +11,2000,27,0.007718352 +11,2000,26,0.014968015 +11,2000,25,0.017361526 +11,2000,24,0.017776495 +11,2000,23,0.019390716 +11,2000,22,0.031645783 +11,2000,21,0.036623954 +11,2000,20,0.037369497 +11,2000,19,0.041368093 +11,2000,18,0.037060894 +11,2000,17,0.041370743 +11,2000,16,0.031120298 +11,2000,15,0.033637394 +11,2000,14,0.028726366 +11,2000,13,0.023797331 +11,2000,12,0.022730571 +11,2000,11,0.029725043 +11,2000,10,0.029737872 +11,2000,9,0.030756937 +11,2000,8,0.036343014 +11,2000,7,0.03822787 +11,2000,6,0.04432918 +11,2000,5,0.037877227 +11,2000,4,0.057650984 +11,2000,3,0.05658772 +11,2000,2,0.050027268 +11,2000,1,0.059602482 +11,2000,0,0.075641006 +62,2001,30,0.00129315 +62,2001,29,0.003045591 +62,2001,28,0.006039537 +62,2001,27,0.00773909 +62,2001,26,0.007735176 +62,2001,25,0.014448472 +62,2001,24,0.023777386 +62,2001,23,0.029685223 +62,2001,22,0.020349498 +62,2001,21,0.01951895 +62,2001,20,0.024083903 +62,2001,19,0.02532241 +62,2001,18,0.030616033 +62,2001,17,0.034756668 +62,2001,16,0.026467947 +62,2001,15,0.019955121 +62,2001,14,0.0279675 +62,2001,13,0.023335544 +62,2001,12,0.022256015 +62,2001,11,0.021911349 +62,2001,10,0.022281826 +62,2001,9,0.018324851 +62,2001,8,0.023971863 +62,2001,7,0.031160849 +62,2001,6,0.042028862 +62,2001,5,0.047432822 +62,2001,4,0.043154382 +62,2001,3,0.067435638 +62,2001,2,0.096459579 +62,2001,1,0.129743059 +62,2001,0,0.087701703 +61,2001,30,0.002813802 +61,2001,29,0.006576562 +61,2001,28,0.010335384 +61,2001,27,0.010974214 +61,2001,26,0.009391364 +61,2001,25,0.010939113 +61,2001,24,0.014406184 +61,2001,23,0.014211555 +61,2001,22,0.012688812 +61,2001,21,0.00964594 +61,2001,20,0.016085686 +61,2001,19,0.015763367 +61,2001,18,0.015533646 +61,2001,17,0.022264925 +61,2001,16,0.022916949 +61,2001,15,0.024520002 +61,2001,14,0.032716383 +61,2001,13,0.036222368 +61,2001,12,0.034317333 +61,2001,11,0.04055048 +61,2001,10,0.03878806 +61,2001,9,0.043012653 +61,2001,8,0.0505994 +61,2001,7,0.063828382 +61,2001,6,0.072340246 +61,2001,5,0.068470972 +61,2001,4,0.056985631 +61,2001,3,0.058318297 +61,2001,2,0.061402674 +61,2001,1,0.065375882 +61,2001,0,0.058003734 +54,2001,30,0.002046543 +54,2001,29,0.003877643 +54,2001,28,0.004995647 +54,2001,27,0.003696308 +54,2001,26,0.004914247 +54,2001,25,0.002195967 +54,2001,24,0.003781612 +54,2001,23,0.003241641 +54,2001,22,0.004809448 +54,2001,21,0.008101026 +54,2001,20,0.014261416 +54,2001,19,0.016278898 +54,2001,18,0.021028727 +54,2001,17,0.028407626 +54,2001,16,0.027871924 +54,2001,15,0.030366784 +54,2001,14,0.034949408 +54,2001,13,0.03807755 +54,2001,12,0.042040934 +54,2001,11,0.038577183 +54,2001,10,0.032722884 +54,2001,9,0.040029313 +54,2001,8,0.044986154 +54,2001,7,0.059613008 +54,2001,6,0.061341435 +54,2001,5,0.052706041 +54,2001,4,0.074065941 +54,2001,3,0.04859869 +54,2001,2,0.082275678 +54,2001,1,0.082358357 +54,2001,0,0.087781966 +53,2001,30,0.004676903 +53,2001,29,0.002771876 +53,2001,28,0.005002824 +53,2001,27,0.00246192 +53,2001,26,0.001831403 +53,2001,25,0.001441756 +53,2001,24,0.006123596 +53,2001,23,0.007226014 +53,2001,22,0.004386171 +53,2001,21,0.003182643 +53,2001,20,0.006587838 +53,2001,19,0.006632078 +53,2001,18,0.008192515 +53,2001,17,0.01066406 +53,2001,16,0.009686661 +53,2001,15,0.011932136 +53,2001,14,0.009967215 +53,2001,13,0.023610461 +53,2001,12,0.066363711 +53,2001,11,0.019442768 +53,2001,10,0.029581729 +53,2001,9,0.021107226 +53,2001,8,0.097433024 +53,2001,7,0.041021191 +53,2001,6,0.060035194 +53,2001,5,0.039450883 +53,2001,4,0.028168537 +53,2001,3,0.032834167 +53,2001,2,0.158365772 +53,2001,1,0.200647931 +53,2001,0,0.079169799 +52,2001,30,0.002016139 +52,2001,29,0.003800967 +52,2001,28,0.005927716 +52,2001,27,0.003972716 +52,2001,26,0.004958685 +52,2001,25,0.002449388 +52,2001,24,0.004144953 +52,2001,23,0.004192191 +52,2001,22,0.004014834 +52,2001,21,0.005907085 +52,2001,20,0.015318578 +52,2001,19,0.015209054 +52,2001,18,0.014809966 +52,2001,17,0.021121967 +52,2001,16,0.022287304 +52,2001,15,0.032525111 +52,2001,14,0.030050364 +52,2001,13,0.033936615 +52,2001,12,0.034889204 +52,2001,11,0.039340914 +52,2001,10,0.032417028 +52,2001,9,0.037317381 +52,2001,8,0.044601094 +52,2001,7,0.057953694 +52,2001,6,0.071654752 +52,2001,5,0.055503498 +52,2001,4,0.074878462 +52,2001,3,0.053940466 +52,2001,2,0.093299138 +52,2001,1,0.10675261 +52,2001,0,0.070808127 +51,2001,30,0.001564306 +51,2001,29,0.004344337 +51,2001,28,0.007678715 +51,2001,27,0.005265286 +51,2001,26,0.003768537 +51,2001,25,0.004906554 +51,2001,24,0.005028982 +51,2001,23,0.003465677 +51,2001,22,0.003942497 +51,2001,21,0.00509611 +51,2001,20,0.011189113 +51,2001,19,0.009782854 +51,2001,18,0.010418722 +51,2001,17,0.013935162 +51,2001,16,0.014558354 +51,2001,15,0.016890492 +51,2001,14,0.024097298 +51,2001,13,0.026378728 +51,2001,12,0.041195868 +51,2001,11,0.030023158 +51,2001,10,0.040827616 +51,2001,9,0.028955017 +51,2001,8,0.033791035 +51,2001,7,0.065208387 +51,2001,6,0.091109462 +51,2001,5,0.073014166 +51,2001,4,0.056936955 +51,2001,3,0.106007947 +51,2001,2,0.113508079 +51,2001,1,0.080390475 +51,2001,0,0.066720111 +43,2001,30,0.001856833 +43,2001,29,0.003118527 +43,2001,28,0.005805654 +43,2001,27,0.006584168 +43,2001,26,0.008887304 +43,2001,25,0.007864388 +43,2001,24,0.011370987 +43,2001,23,0.012116058 +43,2001,22,0.010773721 +43,2001,21,0.021530825 +43,2001,20,0.022517047 +43,2001,19,0.021701193 +43,2001,18,0.019589786 +43,2001,17,0.025881307 +43,2001,16,0.028052846 +43,2001,15,0.034448155 +43,2001,14,0.034624711 +43,2001,13,0.035042085 +43,2001,12,0.027733338 +43,2001,11,0.045594923 +43,2001,10,0.046824056 +43,2001,9,0.042435258 +43,2001,8,0.046759954 +43,2001,7,0.043216134 +43,2001,6,0.058068462 +43,2001,5,0.053752791 +43,2001,4,0.065136564 +43,2001,3,0.055337989 +43,2001,2,0.069436309 +43,2001,1,0.07189836 +43,2001,0,0.062040266 +42,2001,30,0.001714612 +42,2001,29,0.003566916 +42,2001,28,0.005642199 +42,2001,27,0.008035886 +42,2001,26,0.009215639 +42,2001,25,0.008441218 +42,2001,24,0.010097402 +42,2001,23,0.00997959 +42,2001,22,0.01314292 +42,2001,21,0.020632113 +42,2001,20,0.022154917 +42,2001,19,0.021358003 +42,2001,18,0.02283965 +42,2001,17,0.019941509 +42,2001,16,0.027339759 +42,2001,15,0.030668382 +42,2001,14,0.032083691 +42,2001,13,0.035290489 +42,2001,12,0.040189261 +42,2001,11,0.043234056 +42,2001,10,0.039851394 +42,2001,9,0.039922646 +42,2001,8,0.043076776 +42,2001,7,0.048597034 +42,2001,6,0.056591591 +42,2001,5,0.066695942 +42,2001,4,0.066721097 +42,2001,3,0.057228308 +42,2001,2,0.060062528 +42,2001,1,0.059337034 +42,2001,0,0.076347436 +41,2001,30,0.001838081 +41,2001,29,0.003637462 +41,2001,28,0.005669861 +41,2001,27,0.00570536 +41,2001,26,0.007420002 +41,2001,25,0.007485651 +41,2001,24,0.01144489 +41,2001,23,0.011754387 +41,2001,22,0.012029176 +41,2001,21,0.021737155 +41,2001,20,0.024550486 +41,2001,19,0.023653792 +41,2001,18,0.020978787 +41,2001,17,0.025944248 +41,2001,16,0.030009641 +41,2001,15,0.035096119 +41,2001,14,0.037652318 +41,2001,13,0.037895425 +41,2001,12,0.033091146 +41,2001,11,0.040468919 +41,2001,10,0.042759232 +41,2001,9,0.040590109 +41,2001,8,0.046366028 +41,2001,7,0.05010567 +41,2001,6,0.05713445 +41,2001,5,0.048076418 +41,2001,4,0.054725237 +41,2001,3,0.052136946 +41,2001,2,0.067833734 +41,2001,1,0.069873367 +41,2001,0,0.072335901 +32,2001,30,0.000180296 +32,2001,29,0.000160197 +32,2001,28,0.000213823 +32,2001,27,0.000165397 +32,2001,26,0.000198934 +32,2001,25,0.000139981 +32,2001,24,0.002437235 +32,2001,23,0.004140012 +32,2001,22,0.005357552 +32,2001,21,0.004939798 +32,2001,20,0.00736358 +32,2001,19,0.007751813 +32,2001,18,0.006970992 +32,2001,17,0.010477082 +32,2001,16,0.010680262 +32,2001,15,0.014942858 +32,2001,14,0.015907416 +32,2001,13,0.020393264 +32,2001,12,0.022468846 +32,2001,11,0.021149545 +32,2001,10,0.020022661 +32,2001,9,0.021292332 +32,2001,8,0.038418925 +32,2001,7,0.039045747 +32,2001,6,0.060991915 +32,2001,5,0.056734655 +32,2001,4,0.084085187 +32,2001,3,0.075580964 +32,2001,2,0.118694418 +32,2001,1,0.151488775 +32,2001,0,0.177605539 +31,2001,30,0.0001907 +31,2001,29,0.00023794 +31,2001,28,0.000220641 +31,2001,27,0.000190918 +31,2001,26,0.000201122 +31,2001,25,0.000179957 +31,2001,24,0.002353941 +31,2001,23,0.00342446 +31,2001,22,0.003867121 +31,2001,21,0.003636467 +31,2001,20,0.006722437 +31,2001,19,0.006930345 +31,2001,18,0.006764457 +31,2001,17,0.010481887 +31,2001,16,0.011365654 +31,2001,15,0.01624658 +31,2001,14,0.016100697 +31,2001,13,0.021108481 +31,2001,12,0.024923704 +31,2001,11,0.024703922 +31,2001,10,0.027973046 +31,2001,9,0.033318298 +31,2001,8,0.040640169 +31,2001,7,0.057927549 +31,2001,6,0.062937338 +31,2001,5,0.065482259 +31,2001,4,0.08503116 +31,2001,3,0.097178828 +31,2001,2,0.115230116 +31,2001,1,0.124798493 +31,2001,0,0.129631312 +21,2001,30,0.001932101 +21,2001,29,0.003588262 +21,2001,28,0.005150879 +21,2001,27,0.005941862 +21,2001,26,0.007513874 +21,2001,25,0.007909483 +21,2001,24,0.009669734 +21,2001,23,0.010235375 +21,2001,22,0.01062058 +21,2001,21,0.011942813 +21,2001,20,0.012797091 +21,2001,19,0.012321772 +21,2001,18,0.013961389 +21,2001,17,0.017119277 +21,2001,16,0.019286789 +21,2001,15,0.022093883 +21,2001,14,0.023458991 +21,2001,13,0.023311463 +21,2001,12,0.024220243 +21,2001,11,0.030277396 +21,2001,10,0.03637645 +21,2001,9,0.042043429 +21,2001,8,0.048228277 +21,2001,7,0.054772695 +21,2001,6,0.06418318 +21,2001,5,0.066137876 +21,2001,4,0.073807204 +21,2001,3,0.075861933 +21,2001,2,0.086426977 +21,2001,1,0.092557835 +21,2001,0,0.086250887 +11,2001,30,0.003517111 +11,2001,29,0.006414478 +11,2001,28,0.007079791 +11,2001,27,0.013729667 +11,2001,26,0.015925157 +11,2001,25,0.016305794 +11,2001,24,0.017786466 +11,2001,23,0.029027635 +11,2001,22,0.033593948 +11,2001,21,0.03427781 +11,2001,20,0.03794559 +11,2001,19,0.033994739 +11,2001,18,0.037948021 +11,2001,17,0.028545625 +11,2001,16,0.030854475 +11,2001,15,0.02634975 +11,2001,14,0.021828509 +11,2001,13,0.020850005 +11,2001,12,0.027265804 +11,2001,11,0.027277572 +11,2001,10,0.028212326 +11,2001,9,0.033336251 +11,2001,8,0.035065167 +11,2001,7,0.040661699 +11,2001,6,0.034743534 +11,2001,5,0.052881351 +11,2001,4,0.051906054 +11,2001,3,0.045888367 +11,2001,2,0.054671395 +11,2001,1,0.069383006 +11,2001,0,0.082732904 +62,2002,30,0.001358939 +62,2002,29,0.003619999 +62,2002,28,0.005863469 +62,2002,27,0.006007561 +62,2002,26,0.012929057 +62,2002,25,0.022009284 +62,2002,24,0.029174397 +62,2002,23,0.019219272 +62,2002,22,0.017919584 +62,2002,21,0.022492619 +62,2002,20,0.022353932 +62,2002,19,0.025777698 +62,2002,18,0.029014988 +62,2002,17,0.022624036 +62,2002,16,0.016452425 +62,2002,15,0.023961295 +62,2002,14,0.01943078 +62,2002,13,0.021873031 +62,2002,12,0.017494537 +62,2002,11,0.017919692 +62,2002,10,0.014907174 +62,2002,9,0.021625592 +62,2002,8,0.027808303 +62,2002,7,0.039402436 +62,2002,6,0.044474193 +62,2002,5,0.040698238 +62,2002,4,0.064871052 +62,2002,3,0.093631599 +62,2002,2,0.127510426 +62,2002,1,0.086192522 +62,2002,0,0.08138187 +61,2002,30,0.00311368 +61,2002,29,0.006441625 +61,2002,28,0.008639939 +61,2002,27,0.007494261 +61,2002,26,0.010105465 +61,2002,25,0.011663026 +61,2002,24,0.014577072 +61,2002,23,0.0116271 +61,2002,22,0.008032266 +61,2002,21,0.015031323 +61,2002,20,0.014189194 +61,2002,19,0.013648448 +61,2002,18,0.020267566 +61,2002,17,0.021456454 +61,2002,16,0.023734523 +61,2002,15,0.0312022 +61,2002,14,0.034930332 +61,2002,13,0.035199964 +61,2002,12,0.039454506 +61,2002,11,0.037006469 +61,2002,10,0.04117669 +61,2002,9,0.049111129 +61,2002,8,0.061802632 +61,2002,7,0.07077949 +61,2002,6,0.06678429 +61,2002,5,0.05458683 +61,2002,4,0.056918484 +61,2002,3,0.059755421 +61,2002,2,0.067057329 +61,2002,1,0.059495573 +61,2002,0,0.044716717 +54,2002,30,0.001096296 +54,2002,29,0.002076996 +54,2002,28,0.002020943 +54,2002,27,0.002512083 +54,2002,26,0.001385936 +54,2002,25,0.002542519 +54,2002,24,0.003119234 +54,2002,23,0.004258039 +54,2002,22,0.007435304 +54,2002,21,0.013316289 +54,2002,20,0.015439868 +54,2002,19,0.019823135 +54,2002,18,0.026880543 +54,2002,17,0.026199174 +54,2002,16,0.028136981 +54,2002,15,0.031905393 +54,2002,14,0.034640436 +54,2002,13,0.040453438 +54,2002,12,0.034553621 +54,2002,11,0.028441623 +54,2002,10,0.035549357 +54,2002,9,0.040554892 +54,2002,8,0.054263452 +54,2002,7,0.056221685 +54,2002,6,0.047441923 +54,2002,5,0.068472731 +54,2002,4,0.044922142 +54,2002,3,0.07686728 +54,2002,2,0.079248446 +54,2002,1,0.084467256 +54,2002,0,0.085752983 +53,2002,30,0.00082111 +53,2002,29,0.002172003 +53,2002,28,0.001355486 +53,2002,27,0.000965704 +53,2002,26,0.000937951 +53,2002,25,0.005288084 +53,2002,24,0.00720902 +53,2002,23,0.003989139 +53,2002,22,0.002933819 +53,2002,21,0.006416036 +53,2002,20,0.006464664 +53,2002,19,0.007317318 +53,2002,18,0.009588814 +53,2002,17,0.009082766 +53,2002,16,0.011476693 +53,2002,15,0.009112975 +53,2002,14,0.022717839 +53,2002,13,0.066207642 +53,2002,12,0.018449538 +53,2002,11,0.028425729 +53,2002,10,0.020028492 +53,2002,9,0.096089317 +53,2002,8,0.040039704 +53,2002,7,0.058055451 +53,2002,6,0.033999916 +53,2002,5,0.02660917 +53,2002,4,0.030916553 +53,2002,3,0.156696614 +53,2002,2,0.200176063 +53,2002,1,0.078983613 +53,2002,0,0.037472776 +52,2002,30,0.001097882 +52,2002,29,0.002524427 +52,2002,28,0.00222364 +52,2002,27,0.002582159 +52,2002,26,0.001576839 +52,2002,25,0.002967144 +52,2002,24,0.004111352 +52,2002,23,0.003487951 +52,2002,22,0.005397267 +52,2002,21,0.014605239 +52,2002,20,0.014660548 +52,2002,19,0.014044121 +52,2002,18,0.020115752 +52,2002,17,0.02134943 +52,2002,16,0.031111683 +52,2002,15,0.027579694 +52,2002,14,0.031383844 +52,2002,13,0.034216431 +52,2002,12,0.036763751 +52,2002,11,0.029512769 +52,2002,10,0.03417885 +52,2002,9,0.0407196 +52,2002,8,0.054157733 +52,2002,7,0.067733126 +52,2002,6,0.051664077 +52,2002,5,0.070459276 +52,2002,4,0.050989547 +52,2002,3,0.089287158 +52,2002,2,0.104694083 +52,2002,1,0.069442723 +52,2002,0,0.065361907 +51,2002,30,0.001264929 +51,2002,29,0.003301316 +51,2002,28,0.002962703 +51,2002,27,0.001969526 +51,2002,26,0.003181539 +51,2002,25,0.003685688 +51,2002,24,0.003411673 +51,2002,23,0.003293276 +51,2002,22,0.004489202 +51,2002,21,0.01069597 +51,2002,20,0.009115447 +51,2002,19,0.009659805 +51,2002,18,0.013221024 +51,2002,17,0.013851752 +51,2002,16,0.015973334 +51,2002,15,0.022336799 +51,2002,14,0.024787337 +51,2002,13,0.040553929 +51,2002,12,0.028304489 +51,2002,11,0.038693446 +51,2002,10,0.02693439 +51,2002,9,0.031713215 +51,2002,8,0.062023007 +51,2002,7,0.087683697 +51,2002,6,0.068594382 +51,2002,5,0.053759044 +51,2002,4,0.101850894 +51,2002,3,0.109995483 +51,2002,2,0.079137781 +51,2002,1,0.065680437 +51,2002,0,0.057874488 +43,2002,30,0.001377935 +43,2002,29,0.003372074 +43,2002,28,0.005004354 +43,2002,27,0.006969917 +43,2002,26,0.006948925 +43,2002,25,0.009739645 +43,2002,24,0.011820988 +43,2002,23,0.009990488 +43,2002,22,0.020233493 +43,2002,21,0.020989966 +43,2002,20,0.020196928 +43,2002,19,0.017745072 +43,2002,18,0.023757101 +43,2002,17,0.026107089 +43,2002,16,0.031052168 +43,2002,15,0.031423562 +43,2002,14,0.031919857 +43,2002,13,0.027057929 +43,2002,12,0.042491125 +43,2002,11,0.043348556 +43,2002,10,0.038835653 +43,2002,9,0.04300499 +43,2002,8,0.039516185 +43,2002,7,0.054413205 +43,2002,6,0.05054399 +43,2002,5,0.060566969 +43,2002,4,0.051555521 +43,2002,3,0.065563974 +43,2002,2,0.070147371 +43,2002,1,0.060529358 +43,2002,0,0.073775609 +42,2002,30,0.001595168 +42,2002,29,0.003293892 +42,2002,28,0.006126758 +42,2002,27,0.007285214 +42,2002,26,0.007525978 +42,2002,25,0.008342949 +42,2002,24,0.009795256 +42,2002,23,0.012391378 +42,2002,22,0.01930467 +42,2002,21,0.020722708 +42,2002,20,0.019906706 +42,2002,19,0.021246267 +42,2002,18,0.018335271 +42,2002,17,0.025268777 +42,2002,16,0.027662236 +42,2002,15,0.029163181 +42,2002,14,0.032402411 +42,2002,13,0.039446919 +42,2002,12,0.040048771 +42,2002,11,0.03731306 +42,2002,10,0.036701479 +42,2002,9,0.039950517 +42,2002,8,0.045242353 +42,2002,7,0.053271323 +42,2002,6,0.062694443 +42,2002,5,0.062676877 +42,2002,4,0.05407545 +42,2002,3,0.056891669 +42,2002,2,0.05824101 +42,2002,1,0.074937211 +42,2002,0,0.0681401 +41,2002,30,0.001612214 +41,2002,29,0.003288645 +41,2002,28,0.004316834 +41,2002,27,0.005818908 +41,2002,26,0.006626343 +41,2002,25,0.009591947 +41,2002,24,0.011478888 +41,2002,23,0.011239269 +41,2002,22,0.020560897 +41,2002,21,0.023157987 +41,2002,20,0.02216893 +41,2002,19,0.019140195 +41,2002,18,0.023885499 +41,2002,17,0.027885889 +41,2002,16,0.031675111 +41,2002,15,0.034168367 +41,2002,14,0.034516882 +41,2002,13,0.032315555 +41,2002,12,0.037370292 +41,2002,11,0.039409257 +41,2002,10,0.036897763 +41,2002,9,0.042610629 +41,2002,8,0.046052561 +41,2002,7,0.053371919 +41,2002,6,0.044680744 +41,2002,5,0.050818837 +41,2002,4,0.048701435 +41,2002,3,0.064171387 +41,2002,2,0.068235673 +41,2002,1,0.07064049 +41,2002,0,0.073590656 +32,2002,30,0 +32,2002,29,0 +32,2002,28,0 +32,2002,27,0 +32,2002,26,0 +32,2002,25,0.002047701 +32,2002,24,0.003340935 +32,2002,23,0.004501275 +32,2002,22,0.004150288 +32,2002,21,0.006186687 +32,2002,20,0.00651287 +32,2002,19,0.005832424 +32,2002,18,0.008763148 +32,2002,17,0.008920862 +32,2002,16,0.012507359 +32,2002,15,0.013295778 +32,2002,14,0.017062918 +32,2002,13,0.018769068 +32,2002,12,0.017707383 +32,2002,11,0.016732645 +32,2002,10,0.01780115 +32,2002,9,0.032160507 +32,2002,8,0.032686289 +32,2002,7,0.051100303 +32,2002,6,0.047537733 +32,2002,5,0.070533702 +32,2002,4,0.06340348 +32,2002,3,0.099629891 +32,2002,2,0.127150931 +32,2002,1,0.149083727 +32,2002,0,0.162580948 +31,2002,30,0 +31,2002,29,0 +31,2002,28,0 +31,2002,27,0 +31,2002,26,0 +31,2002,25,0.002065311 +31,2002,24,0.002865356 +31,2002,23,0.003392951 +31,2002,22,0.003190579 +31,2002,21,0.00589816 +31,2002,20,0.006080576 +31,2002,19,0.005910397 +31,2002,18,0.009162833 +31,2002,17,0.009932537 +31,2002,16,0.014218179 +31,2002,15,0.014060511 +31,2002,14,0.018453992 +31,2002,13,0.021774169 +31,2002,12,0.021612095 +31,2002,11,0.024449141 +31,2002,10,0.029134849 +31,2002,9,0.035522829 +31,2002,8,0.050698957 +31,2002,7,0.055065027 +31,2002,6,0.057303176 +31,2002,5,0.074467734 +31,2002,4,0.085120471 +31,2002,3,0.100947167 +31,2002,2,0.109400224 +31,2002,1,0.113631536 +31,2002,0,0.125641245 +21,2002,30,0.001706997 +21,2002,29,0.003297793 +21,2002,28,0.004414776 +21,2002,27,0.006160103 +21,2002,26,0.006863504 +21,2002,25,0.008030596 +21,2002,24,0.009361645 +21,2002,23,0.009445465 +21,2002,22,0.010401596 +21,2002,21,0.010705767 +21,2002,20,0.0100252 +21,2002,19,0.011282387 +21,2002,18,0.014016976 +21,2002,17,0.01613113 +21,2002,16,0.018641615 +21,2002,15,0.019943581 +21,2002,14,0.020046023 +21,2002,13,0.023507243 +21,2002,12,0.026618612 +21,2002,11,0.031973154 +21,2002,10,0.037144894 +21,2002,9,0.042840811 +21,2002,8,0.049332322 +21,2002,7,0.059064875 +21,2002,6,0.060928784 +21,2002,5,0.069847923 +21,2002,4,0.072961801 +21,2002,3,0.083357474 +21,2002,2,0.090973902 +21,2002,1,0.084744602 +21,2002,0,0.086228448 +11,2002,30,0.002241531 +11,2002,29,0.003541497 +11,2002,28,0.00827756 +11,2002,27,0.010620809 +11,2002,26,0.011676353 +11,2002,25,0.015581595 +11,2002,24,0.023533367 +11,2002,23,0.033281245 +11,2002,22,0.033455741 +11,2002,21,0.036878366 +11,2002,20,0.032805533 +11,2002,19,0.036345791 +11,2002,18,0.026066433 +11,2002,17,0.027328752 +11,2002,16,0.022795923 +11,2002,15,0.01789624 +11,2002,14,0.017354966 +11,2002,13,0.020161251 +11,2002,12,0.023413971 +11,2002,11,0.025459261 +11,2002,10,0.030457608 +11,2002,9,0.032678944 +11,2002,8,0.038815432 +11,2002,7,0.032943445 +11,2002,6,0.050815993 +11,2002,5,0.049487886 +11,2002,4,0.043237216 +11,2002,3,0.051499285 +11,2002,2,0.066396666 +11,2002,1,0.082903424 +11,2002,0,0.092047918 +62,2003,30,0.001553567 +62,2003,29,0.00343762 +62,2003,28,0.004423356 +62,2003,27,0.010218628 +62,2003,26,0.019487484 +62,2003,25,0.026356638 +62,2003,24,0.018386458 +62,2003,23,0.01647482 +62,2003,22,0.020658068 +62,2003,21,0.019579387 +62,2003,20,0.021216744 +62,2003,19,0.023099794 +62,2003,18,0.018719255 +62,2003,17,0.013119126 +62,2003,16,0.01963726 +62,2003,15,0.015820649 +62,2003,14,0.017925581 +62,2003,13,0.01673646 +62,2003,12,0.013877321 +62,2003,11,0.011945485 +62,2003,10,0.019065562 +62,2003,9,0.024521057 +62,2003,8,0.036017487 +62,2003,7,0.040963068 +62,2003,6,0.037455807 +62,2003,5,0.060833803 +62,2003,4,0.088729903 +62,2003,3,0.120637363 +62,2003,2,0.082457611 +62,2003,1,0.077855414 +62,2003,0,0.098789221 +61,2003,30,0.002942902 +61,2003,29,0.005379885 +61,2003,28,0.005821846 +61,2003,27,0.008394046 +61,2003,26,0.010905943 +61,2003,25,0.011976919 +61,2003,24,0.011900487 +61,2003,23,0.007175284 +61,2003,22,0.014252992 +61,2003,21,0.013039375 +61,2003,20,0.012041996 +61,2003,19,0.018627479 +61,2003,18,0.020068142 +61,2003,17,0.023151335 +61,2003,16,0.029668865 +61,2003,15,0.033908126 +61,2003,14,0.034325108 +61,2003,13,0.040382195 +61,2003,12,0.035243027 +61,2003,11,0.039662276 +61,2003,10,0.047401859 +61,2003,9,0.060109829 +61,2003,8,0.068848246 +61,2003,7,0.065321507 +61,2003,6,0.052302026 +61,2003,5,0.055142617 +61,2003,4,0.058356695 +61,2003,3,0.065283178 +61,2003,2,0.060894485 +61,2003,1,0.045768136 +61,2003,0,0.041703196 +54,2003,30,0.000883569 +54,2003,29,0.001000558 +54,2003,28,0.001484858 +54,2003,27,0.000730322 +54,2003,26,0.001892606 +54,2003,25,0.002497586 +54,2003,24,0.003991832 +54,2003,23,0.006894539 +54,2003,22,0.012371104 +54,2003,21,0.014424209 +54,2003,20,0.018453266 +54,2003,19,0.025027723 +54,2003,18,0.024313416 +54,2003,17,0.025949869 +54,2003,16,0.02914269 +54,2003,15,0.031678779 +54,2003,14,0.036906021 +54,2003,13,0.032393373 +54,2003,12,0.025282367 +54,2003,11,0.032152865 +54,2003,10,0.036766443 +54,2003,9,0.049664818 +54,2003,8,0.051395663 +54,2003,7,0.043203032 +54,2003,6,0.063074661 +54,2003,5,0.041241683 +54,2003,4,0.071174477 +54,2003,3,0.073279479 +54,2003,2,0.079186471 +54,2003,1,0.080391816 +54,2003,0,0.083149907 +53,2003,30,0.000969389 +53,2003,29,0.000684486 +53,2003,28,0.000594881 +53,2003,27,0.000513913 +53,2003,26,0.004124243 +53,2003,25,0.006592539 +53,2003,24,0.003907019 +53,2003,23,0.002821486 +53,2003,22,0.006238818 +53,2003,21,0.006296134 +53,2003,20,0.006882196 +53,2003,19,0.008936668 +53,2003,18,0.008653235 +53,2003,17,0.011065273 +53,2003,16,0.00853806 +53,2003,15,0.021902728 +53,2003,14,0.064464913 +53,2003,13,0.018069738 +53,2003,12,0.027347401 +53,2003,11,0.019198359 +53,2003,10,0.093576937 +53,2003,9,0.038862079 +53,2003,8,0.055953822 +53,2003,7,0.031076613 +53,2003,6,0.025438174 +53,2003,5,0.029336901 +53,2003,4,0.152941154 +53,2003,3,0.193473296 +53,2003,2,0.077357664 +53,2003,1,0.036701365 +53,2003,0,0.037480514 +52,2003,30,0.001098187 +52,2003,29,0.001126316 +52,2003,28,0.001555683 +52,2003,27,0.000847723 +52,2003,26,0.002253383 +52,2003,25,0.003399417 +52,2003,24,0.00333383 +52,2003,23,0.005073318 +52,2003,22,0.01384184 +52,2003,21,0.013954271 +52,2003,20,0.01326812 +52,2003,19,0.018992413 +52,2003,18,0.0201991 +52,2003,17,0.029422 +52,2003,16,0.025501714 +52,2003,15,0.029227047 +52,2003,14,0.031972336 +52,2003,13,0.035139282 +52,2003,12,0.027160626 +52,2003,11,0.031693271 +52,2003,10,0.037499672 +52,2003,9,0.050709222 +52,2003,8,0.063530581 +52,2003,7,0.048278493 +52,2003,6,0.066133966 +52,2003,5,0.047799722 +52,2003,4,0.084467378 +52,2003,3,0.099033312 +52,2003,2,0.066374279 +52,2003,1,0.06247378 +52,2003,0,0.064639716 +51,2003,30,0.001436975 +51,2003,29,0.001498153 +51,2003,28,0.001183182 +51,2003,27,0.00171041 +51,2003,26,0.002794583 +51,2003,25,0.002557982 +51,2003,24,0.003138987 +51,2003,23,0.004165207 +51,2003,22,0.010105088 +51,2003,21,0.008570406 +51,2003,20,0.009014474 +51,2003,19,0.012425171 +51,2003,18,0.013007925 +51,2003,17,0.014966402 +51,2003,16,0.020662981 +51,2003,15,0.023153105 +51,2003,14,0.038156529 +51,2003,13,0.026978426 +51,2003,12,0.036194995 +51,2003,11,0.025044419 +51,2003,10,0.02950479 +51,2003,9,0.05826204 +51,2003,8,0.082617468 +51,2003,7,0.06406473 +51,2003,6,0.050309956 +51,2003,5,0.09583083 +51,2003,4,0.104151183 +51,2003,3,0.074616091 +51,2003,2,0.062603314 +51,2003,1,0.055163073 +51,2003,0,0.066111125 +43,2003,30,0.001419234 +43,2003,29,0.003136646 +43,2003,28,0.005438708 +43,2003,27,0.005633423 +43,2003,26,0.008784123 +43,2003,25,0.010373066 +43,2003,24,0.009798932 +43,2003,23,0.019421392 +43,2003,22,0.019852068 +43,2003,21,0.019117157 +43,2003,20,0.016324996 +43,2003,19,0.022026422 +43,2003,18,0.024522389 +43,2003,17,0.02830805 +43,2003,16,0.028624674 +43,2003,15,0.02942777 +43,2003,14,0.024933656 +43,2003,13,0.041676408 +43,2003,12,0.040351227 +43,2003,11,0.035980844 +43,2003,10,0.039744479 +43,2003,9,0.036647205 +43,2003,8,0.051199358 +43,2003,7,0.048042318 +43,2003,6,0.056844022 +43,2003,5,0.04808681 +43,2003,4,0.062537607 +43,2003,3,0.066848057 +43,2003,2,0.05936878 +43,2003,1,0.07236105 +43,2003,0,0.063169128 +42,2003,30,0.001379109 +42,2003,29,0.003807853 +42,2003,28,0.00566828 +42,2003,27,0.006103342 +42,2003,26,0.007484316 +42,2003,25,0.008378215 +42,2003,24,0.012100038 +42,2003,23,0.018335878 +42,2003,22,0.019469003 +42,2003,21,0.018688384 +42,2003,20,0.019826686 +42,2003,19,0.016874245 +42,2003,18,0.023335955 +42,2003,17,0.024983224 +42,2003,16,0.026323514 +42,2003,15,0.029802688 +42,2003,14,0.036569624 +42,2003,13,0.039107166 +42,2003,12,0.03477629 +42,2003,11,0.033830486 +42,2003,10,0.036861385 +42,2003,9,0.042237064 +42,2003,8,0.049820643 +42,2003,7,0.058972646 +42,2003,6,0.058799523 +42,2003,5,0.050666526 +42,2003,4,0.053890545 +42,2003,3,0.055059125 +42,2003,2,0.073175327 +42,2003,1,0.066538026 +42,2003,0,0.067134893 +41,2003,30,0.001376596 +41,2003,29,0.002676294 +41,2003,28,0.004521235 +41,2003,27,0.005360999 +41,2003,26,0.008624266 +41,2003,25,0.010034475 +41,2003,24,0.010984859 +41,2003,23,0.019733586 +41,2003,22,0.02202241 +41,2003,21,0.021008088 +41,2003,20,0.017646757 +41,2003,19,0.022111289 +41,2003,18,0.026039334 +41,2003,17,0.028774848 +41,2003,16,0.030958438 +41,2003,15,0.031669539 +41,2003,14,0.029848608 +41,2003,13,0.036524384 +41,2003,12,0.036342677 +41,2003,11,0.033821834 +41,2003,10,0.039169991 +41,2003,9,0.042726684 +41,2003,8,0.049827913 +41,2003,7,0.041834708 +41,2003,6,0.047423532 +41,2003,5,0.045365229 +41,2003,4,0.061055722 +41,2003,3,0.064765029 +41,2003,2,0.069041484 +41,2003,1,0.071924871 +41,2003,0,0.066784319 +32,2003,30,0 +32,2003,29,0 +32,2003,28,0 +32,2003,27,0 +32,2003,26,0.001754528 +32,2003,25,0.002862608 +32,2003,24,0.003856821 +32,2003,23,0.003556085 +32,2003,22,0.00530093 +32,2003,21,0.005580413 +32,2003,20,0.004997387 +32,2003,19,0.007508515 +32,2003,18,0.007643649 +32,2003,17,0.010716662 +32,2003,16,0.011392202 +32,2003,15,0.014619995 +32,2003,14,0.016081873 +32,2003,13,0.01517219 +32,2003,12,0.014337007 +32,2003,11,0.015252533 +32,2003,10,0.027556039 +32,2003,9,0.028006545 +32,2003,8,0.043784197 +32,2003,7,0.040731686 +32,2003,6,0.060435287 +32,2003,5,0.05432591 +32,2003,4,0.085365731 +32,2003,3,0.108946544 +32,2003,2,0.127739189 +32,2003,1,0.139303993 +32,2003,0,0.143171481 +31,2003,30,0 +31,2003,29,0 +31,2003,28,0 +31,2003,27,0 +31,2003,26,0.001830457 +31,2003,25,0.002539527 +31,2003,24,0.003007127 +31,2003,23,0.002827768 +31,2003,22,0.005227461 +31,2003,21,0.005389134 +31,2003,20,0.005238307 +31,2003,19,0.008120897 +31,2003,18,0.008803076 +31,2003,17,0.012601383 +31,2003,16,0.012461644 +31,2003,15,0.016355529 +31,2003,14,0.019298158 +31,2003,13,0.019154513 +31,2003,12,0.02166895 +31,2003,11,0.025821831 +31,2003,10,0.031483413 +31,2003,9,0.044933814 +31,2003,8,0.048803404 +31,2003,7,0.050787046 +31,2003,6,0.065999766 +31,2003,5,0.075441146 +31,2003,4,0.089468137 +31,2003,3,0.096959969 +31,2003,2,0.100710125 +31,2003,1,0.111354171 +31,2003,0,0.113713246 +21,2003,30,0.001535257 +21,2003,29,0.002912051 +21,2003,28,0.00476321 +21,2003,27,0.005705165 +21,2003,26,0.00702439 +21,2003,25,0.008061132 +21,2003,24,0.008633306 +21,2003,23,0.009458714 +21,2003,22,0.00927081 +21,2003,21,0.008359458 +21,2003,20,0.009255989 +21,2003,19,0.01167528 +21,2003,18,0.013629255 +21,2003,17,0.015885312 +21,2003,16,0.017239638 +21,2003,15,0.017604424 +21,2003,14,0.020816269 +21,2003,13,0.025871849 +21,2003,12,0.028600764 +21,2003,11,0.033314074 +21,2003,10,0.038525449 +21,2003,9,0.044810559 +21,2003,8,0.054573341 +21,2003,7,0.056179231 +21,2003,6,0.064665599 +21,2003,5,0.069044943 +21,2003,4,0.080300621 +21,2003,3,0.087771669 +21,2003,2,0.083026702 +21,2003,1,0.084512136 +21,2003,0,0.076973403 +11,2003,30,0.001564456 +11,2003,29,0.005068691 +11,2003,28,0.007371912 +11,2003,27,0.008744257 +11,2003,26,0.012007133 +11,2003,25,0.021282572 +11,2003,24,0.027996899 +11,2003,23,0.031491309 +11,2003,22,0.034607371 +11,2003,21,0.030655974 +11,2003,20,0.033827035 +11,2003,19,0.023510295 +11,2003,18,0.024312536 +11,2003,17,0.019798471 +11,2003,16,0.014958191 +11,2003,15,0.014677644 +11,2003,14,0.017156682 +11,2003,13,0.017695034 +11,2003,12,0.022801522 +11,2003,11,0.027503719 +11,2003,10,0.029881625 +11,2003,9,0.035999195 +11,2003,8,0.030435956 +11,2003,7,0.04727261 +11,2003,6,0.045978727 +11,2003,5,0.039736905 +11,2003,4,0.047309691 +11,2003,3,0.061325185 +11,2003,2,0.076967351 +11,2003,1,0.087468249 +11,2003,0,0.100592802 +62,2004,30,0.001595108 +62,2004,29,0.002670403 +62,2004,28,0.008048823 +62,2004,27,0.016088708 +62,2004,26,0.02343934 +62,2004,25,0.015939178 +62,2004,24,0.015711247 +62,2004,23,0.019263784 +62,2004,22,0.017355288 +62,2004,21,0.017840838 +62,2004,20,0.0185435 +62,2004,19,0.01548134 +62,2004,18,0.010408304 +62,2004,17,0.016148868 +62,2004,16,0.01276458 +62,2004,15,0.014972279 +62,2004,14,0.013754676 +62,2004,13,0.013234137 +62,2004,12,0.009550052 +62,2004,11,0.01709844 +62,2004,10,0.021703508 +62,2004,9,0.033209221 +62,2004,8,0.0377286 +62,2004,7,0.034697081 +62,2004,6,0.057030261 +62,2004,5,0.083907367 +62,2004,4,0.114028995 +62,2004,3,0.077344864 +62,2004,2,0.074246983 +62,2004,1,0.094210552 +62,2004,0,0.091983677 +61,2004,30,0.00265539 +61,2004,29,0.003696642 +61,2004,28,0.00698478 +61,2004,27,0.009460109 +61,2004,26,0.011293107 +61,2004,25,0.009511341 +61,2004,24,0.007335813 +61,2004,23,0.013967167 +61,2004,22,0.01218852 +61,2004,21,0.010904591 +61,2004,20,0.017364823 +61,2004,19,0.019102684 +61,2004,18,0.022687471 +61,2004,17,0.028463279 +61,2004,16,0.033035436 +61,2004,15,0.033795749 +61,2004,14,0.039219787 +61,2004,13,0.036031502 +61,2004,12,0.038277011 +61,2004,11,0.046100659 +61,2004,10,0.058491694 +61,2004,9,0.067440933 +61,2004,8,0.063767451 +61,2004,7,0.050555964 +61,2004,6,0.053697171 +61,2004,5,0.056816192 +61,2004,4,0.064001472 +61,2004,3,0.058777523 +61,2004,2,0.046792085 +61,2004,1,0.042636202 +61,2004,0,0.034947453 +54,2004,30,0.000246116 +54,2004,29,0.000366472 +54,2004,28,0.000238731 +54,2004,27,0.000997288 +54,2004,26,0.00193277 +54,2004,25,0.003620066 +54,2004,24,0.006426637 +54,2004,23,0.011507932 +54,2004,22,0.013429929 +54,2004,21,0.017142541 +54,2004,20,0.023216053 +54,2004,19,0.022451445 +54,2004,18,0.02385016 +54,2004,17,0.026558576 +54,2004,16,0.028821285 +54,2004,15,0.033598524 +54,2004,14,0.029107684 +54,2004,13,0.023566565 +54,2004,12,0.028919308 +54,2004,11,0.033293899 +54,2004,10,0.04520593 +54,2004,9,0.04689531 +54,2004,8,0.039090875 +54,2004,7,0.05794205 +54,2004,6,0.037752973 +54,2004,5,0.065497681 +54,2004,4,0.067526686 +54,2004,3,0.072753854 +54,2004,2,0.07493598 +54,2004,1,0.077506891 +54,2004,0,0.085599787 +53,2004,30,0.000173776 +53,2004,29,0.000153237 +53,2004,28,0.000175262 +53,2004,27,0.002280971 +53,2004,26,0.005334646 +53,2004,25,0.003737268 +53,2004,24,0.002750326 +53,2004,23,0.006071601 +53,2004,22,0.006126053 +53,2004,21,0.006575087 +53,2004,20,0.008398975 +53,2004,19,0.008216205 +53,2004,18,0.010641287 +53,2004,17,0.008002822 +53,2004,16,0.021027552 +53,2004,15,0.062531112 +53,2004,14,0.017220647 +53,2004,13,0.026657674 +53,2004,12,0.018329363 +53,2004,11,0.090780764 +53,2004,10,0.037553989 +53,2004,9,0.053804015 +53,2004,8,0.028096407 +53,2004,7,0.024292532 +53,2004,6,0.027816697 +53,2004,5,0.148547314 +53,2004,4,0.186467915 +53,2004,3,0.074527234 +53,2004,2,0.035775722 +53,2004,1,0.03653522 +53,2004,0,0.041398326 +52,2004,30,0.000281753 +52,2004,29,0.000389668 +52,2004,28,0.000281385 +52,2004,27,0.001206401 +52,2004,26,0.002672775 +52,2004,25,0.003039137 +52,2004,24,0.004800568 +52,2004,23,0.013072587 +52,2004,22,0.013185946 +52,2004,21,0.012484179 +52,2004,20,0.017814879 +52,2004,19,0.018935245 +52,2004,18,0.027587293 +52,2004,17,0.023441932 +52,2004,16,0.026961013 +52,2004,15,0.02966877 +52,2004,14,0.032415799 +52,2004,13,0.025700426 +52,2004,12,0.029102581 +52,2004,11,0.034353114 +52,2004,10,0.047022372 +52,2004,9,0.059168058 +52,2004,8,0.044640837 +52,2004,7,0.061629649 +52,2004,6,0.044477651 +52,2004,5,0.079074408 +52,2004,4,0.092904675 +52,2004,3,0.061704771 +52,2004,2,0.059115087 +52,2004,1,0.061164578 +52,2004,0,0.071702466 +51,2004,30,0.000378752 +51,2004,29,0.000299321 +51,2004,28,0.000574202 +51,2004,27,0.001513444 +51,2004,26,0.002031089 +51,2004,25,0.002844875 +51,2004,24,0.003980896 +51,2004,23,0.00963866 +51,2004,22,0.008154187 +51,2004,21,0.008526982 +51,2004,20,0.011756451 +51,2004,19,0.012265776 +51,2004,18,0.01409439 +51,2004,17,0.019240799 +51,2004,16,0.021698948 +51,2004,15,0.036068744 +51,2004,14,0.025234027 +51,2004,13,0.034593359 +51,2004,12,0.023361746 +51,2004,11,0.027621616 +51,2004,10,0.054895454 +51,2004,9,0.078199446 +51,2004,8,0.059962926 +51,2004,7,0.047345103 +51,2004,6,0.09057771 +51,2004,5,0.098858648 +51,2004,4,0.070667501 +51,2004,3,0.058547624 +51,2004,2,0.052722096 +51,2004,1,0.063185694 +51,2004,0,0.061159534 +43,2004,30,0.001746057 +43,2004,29,0.003749018 +43,2004,28,0.004607847 +43,2004,27,0.007389699 +43,2004,26,0.009451722 +43,2004,25,0.008334169 +43,2004,24,0.018828439 +43,2004,23,0.018852687 +43,2004,22,0.018050121 +43,2004,21,0.015121858 +43,2004,20,0.020452569 +43,2004,19,0.022978907 +43,2004,18,0.025827757 +43,2004,17,0.026132634 +43,2004,16,0.026980093 +43,2004,15,0.023018728 +43,2004,14,0.038843617 +43,2004,13,0.039119267 +43,2004,12,0.033129203 +43,2004,11,0.036806892 +43,2004,10,0.033783829 +43,2004,9,0.048092415 +43,2004,8,0.045258429 +43,2004,7,0.053256354 +43,2004,6,0.044753364 +43,2004,5,0.059048588 +43,2004,4,0.063403083 +43,2004,3,0.056267473 +43,2004,2,0.0701518 +43,2004,1,0.061240517 +43,2004,0,0.065322864 +42,2004,30,0.002120038 +42,2004,29,0.003930021 +42,2004,28,0.005030738 +42,2004,27,0.00631268 +42,2004,26,0.007656167 +42,2004,25,0.010362037 +42,2004,24,0.01784679 +42,2004,23,0.018537424 +42,2004,22,0.01766216 +42,2004,21,0.018695822 +42,2004,20,0.015694011 +42,2004,19,0.021725317 +42,2004,18,0.022785058 +42,2004,17,0.024030321 +42,2004,16,0.027491815 +42,2004,15,0.034167826 +42,2004,14,0.036866697 +42,2004,13,0.033848674 +42,2004,12,0.031270624 +42,2004,11,0.034357118 +42,2004,10,0.039506278 +42,2004,9,0.046918677 +42,2004,8,0.055444565 +42,2004,7,0.055473213 +42,2004,6,0.047701061 +42,2004,5,0.050962011 +42,2004,4,0.052279896 +42,2004,3,0.06971645 +42,2004,2,0.064763203 +42,2004,1,0.065344149 +42,2004,0,0.061499158 +41,2004,30,0.001476936 +41,2004,29,0.003108466 +41,2004,28,0.004382701 +41,2004,27,0.007247182 +41,2004,26,0.009126213 +41,2004,25,0.009644553 +41,2004,24,0.01909699 +41,2004,23,0.020985893 +41,2004,22,0.019870624 +41,2004,21,0.016386351 +41,2004,20,0.020527665 +41,2004,19,0.024279561 +41,2004,18,0.026207514 +41,2004,17,0.02815854 +41,2004,16,0.028942424 +41,2004,15,0.027635555 +41,2004,14,0.033780024 +41,2004,13,0.03517028 +41,2004,12,0.030878416 +41,2004,11,0.036156884 +41,2004,10,0.039468598 +41,2004,9,0.046564426 +41,2004,8,0.038903856 +41,2004,7,0.04428295 +41,2004,6,0.042224755 +41,2004,5,0.057613728 +41,2004,4,0.061296494 +41,2004,3,0.065308664 +41,2004,2,0.069604609 +41,2004,1,0.064629889 +41,2004,0,0.067039259 +32,2004,30,0 +32,2004,29,0 +32,2004,28,0 +32,2004,27,0.001519102 +32,2004,26,0.002478497 +32,2004,25,0.003339304 +32,2004,24,0.003078922 +32,2004,23,0.004589639 +32,2004,22,0.004831621 +32,2004,21,0.004326827 +32,2004,20,0.006501006 +32,2004,19,0.006618007 +32,2004,18,0.009278676 +32,2004,17,0.009863571 +32,2004,16,0.012658252 +32,2004,15,0.013923972 +32,2004,14,0.013136352 +32,2004,13,0.012413236 +32,2004,12,0.013205914 +32,2004,11,0.023858509 +32,2004,10,0.024248564 +32,2004,9,0.037909136 +32,2004,8,0.035266218 +32,2004,7,0.052325946 +32,2004,6,0.047036339 +32,2004,5,0.073911168 +32,2004,4,0.094327855 +32,2004,3,0.110598861 +32,2004,2,0.120611875 +32,2004,1,0.123960415 +32,2004,0,0.134182216 +31,2004,30,0 +31,2004,29,0 +31,2004,28,0 +31,2004,27,0.001630814 +31,2004,26,0.002262548 +31,2004,25,0.002679148 +31,2004,24,0.002519351 +31,2004,23,0.004657316 +31,2004,22,0.004801355 +31,2004,21,0.004666978 +31,2004,20,0.007235172 +31,2004,19,0.007842948 +31,2004,18,0.011226983 +31,2004,17,0.011102485 +31,2004,16,0.014571674 +31,2004,15,0.017193358 +31,2004,14,0.01706538 +31,2004,13,0.019305574 +31,2004,12,0.02300551 +31,2004,11,0.028049599 +31,2004,10,0.040032999 +31,2004,9,0.043480543 +31,2004,8,0.045247835 +31,2004,7,0.058801343 +31,2004,6,0.067212976 +31,2004,5,0.079710079 +31,2004,4,0.086384797 +31,2004,3,0.089725933 +31,2004,2,0.099209061 +31,2004,1,0.101310837 +31,2004,0,0.109067404 +21,2004,30,0.001563426 +21,2004,29,0.003456115 +21,2004,28,0.004569149 +21,2004,27,0.005963505 +21,2004,26,0.007164893 +21,2004,25,0.007529573 +21,2004,24,0.008787942 +21,2004,23,0.008353183 +21,2004,22,0.007230083 +21,2004,21,0.007822058 +21,2004,20,0.009946141 +21,2004,19,0.011784547 +21,2004,18,0.013752731 +21,2004,17,0.015167891 +21,2004,16,0.015770167 +21,2004,15,0.018817327 +21,2004,14,0.023372039 +21,2004,13,0.027758399 +21,2004,12,0.030344392 +21,2004,11,0.035149408 +21,2004,10,0.041145109 +21,2004,9,0.05074434 +21,2004,8,0.052029434 +21,2004,7,0.059985445 +21,2004,6,0.064178659 +21,2004,5,0.076338954 +21,2004,4,0.084526962 +21,2004,3,0.079850754 +21,2004,2,0.082511811 +21,2004,1,0.075149318 +21,2004,0,0.069236248 +11,2004,30,0.002462449 +11,2004,29,0.00468957 +11,2004,28,0.006289386 +11,2004,27,0.00899716 +11,2004,26,0.017012956 +11,2004,25,0.02475032 +11,2004,24,0.025833731 +11,2004,23,0.032215184 +11,2004,22,0.028424628 +11,2004,21,0.031256688 +11,2004,20,0.021158003 +11,2004,19,0.021503595 +11,2004,18,0.017212412 +11,2004,17,0.012336612 +11,2004,16,0.012272805 +11,2004,15,0.01444921 +11,2004,14,0.015485281 +11,2004,13,0.017164417 +11,2004,12,0.02466768 +11,2004,11,0.027123839 +11,2004,10,0.033118557 +11,2004,9,0.02790358 +11,2004,8,0.04358195 +11,2004,7,0.042313797 +11,2004,6,0.036370643 +11,2004,5,0.043079337 +11,2004,4,0.056096739 +11,2004,3,0.070453869 +11,2004,2,0.080308675 +11,2004,1,0.094356332 +11,2004,0,0.107110595 +62,2005,30,0.001090988 +62,2005,29,0.005076181 +62,2005,28,0.012391318 +62,2005,27,0.018273232 +62,2005,26,0.013444256 +62,2005,25,0.013149508 +62,2005,24,0.017460476 +62,2005,23,0.014919501 +62,2005,22,0.014190693 +62,2005,21,0.014153139 +62,2005,20,0.012079118 +62,2005,19,0.007523792 +62,2005,18,0.01235438 +62,2005,17,0.009619105 +62,2005,16,0.011715422 +62,2005,15,0.010822308 +62,2005,14,0.010591524 +62,2005,13,0.008656059 +62,2005,12,0.014623472 +62,2005,11,0.018415545 +62,2005,10,0.029122332 +62,2005,9,0.033175665 +62,2005,8,0.030505774 +62,2005,7,0.05092229 +62,2005,6,0.075423974 +62,2005,5,0.102292446 +62,2005,4,0.069034449 +62,2005,3,0.065604432 +62,2005,2,0.08539138 +62,2005,1,0.083372966 +62,2005,0,0.134604274 +61,2005,30,0.001654024 +61,2005,29,0.004806445 +61,2005,28,0.007980322 +61,2005,27,0.009634394 +61,2005,26,0.008804023 +61,2005,25,0.005765587 +61,2005,24,0.014126715 +61,2005,23,0.011559716 +61,2005,22,0.009753959 +61,2005,21,0.016163633 +61,2005,20,0.01804197 +61,2005,19,0.022109088 +61,2005,18,0.026941501 +61,2005,17,0.031901493 +61,2005,16,0.032906575 +61,2005,15,0.037789378 +61,2005,14,0.034346387 +61,2005,13,0.038714254 +61,2005,12,0.044057913 +61,2005,11,0.056420272 +61,2005,10,0.064967376 +61,2005,9,0.061627749 +61,2005,8,0.047839763 +61,2005,7,0.051815878 +61,2005,6,0.054653276 +61,2005,5,0.061532508 +61,2005,4,0.056170564 +61,2005,3,0.043551573 +61,2005,2,0.043123239 +61,2005,1,0.035346661 +61,2005,0,0.045893763 +54,2005,30,0 +54,2005,29,0 +54,2005,28,0.000668822 +54,2005,27,0.001529185 +54,2005,26,0.003217148 +54,2005,25,0.005964331 +54,2005,24,0.0106801 +54,2005,23,0.012463836 +54,2005,22,0.015893769 +54,2005,21,0.021513543 +54,2005,20,0.020768125 +54,2005,19,0.022007936 +54,2005,18,0.024444127 +54,2005,17,0.026510006 +54,2005,16,0.030878096 +54,2005,15,0.026648644 +54,2005,14,0.021518782 +54,2005,13,0.026838973 +54,2005,12,0.030525329 +54,2005,11,0.041590969 +54,2005,10,0.043128142 +54,2005,9,0.035885765 +54,2005,8,0.053434705 +54,2005,7,0.034808905 +54,2005,6,0.060501336 +54,2005,5,0.062345277 +54,2005,4,0.067167278 +54,2005,3,0.069179386 +54,2005,2,0.071931369 +54,2005,1,0.079442096 +54,2005,0,0.078514019 +53,2005,30,0 +53,2005,29,0 +53,2005,28,0.001575334 +53,2005,27,0.004337852 +53,2005,26,0.003414796 +53,2005,25,0.00262354 +53,2005,24,0.00579171 +53,2005,23,0.005843651 +53,2005,22,0.00623522 +53,2005,21,0.007919761 +53,2005,20,0.007765 +53,2005,19,0.010095077 +53,2005,18,0.007523312 +53,2005,17,0.019946629 +53,2005,16,0.059529461 +53,2005,15,0.016292377 +53,2005,14,0.025296998 +53,2005,13,0.017484407 +53,2005,12,0.086424561 +53,2005,11,0.035711074 +53,2005,10,0.051027491 +53,2005,9,0.026043399 +53,2005,8,0.022965282 +53,2005,7,0.026266032 +53,2005,6,0.141514026 +53,2005,5,0.176955208 +53,2005,4,0.070788574 +53,2005,3,0.033693464 +53,2005,2,0.034851002 +53,2005,1,0.039489925 +53,2005,0,0.052594837 +52,2005,30,0 +52,2005,29,0 +52,2005,28,0.000814792 +52,2005,27,0.002130066 +52,2005,26,0.002717668 +52,2005,25,0.004484728 +52,2005,24,0.012212512 +52,2005,23,0.012318413 +52,2005,22,0.011643801 +52,2005,21,0.016597605 +52,2005,20,0.017631793 +52,2005,19,0.025677112 +52,2005,18,0.021666437 +52,2005,17,0.024951968 +52,2005,16,0.027494457 +52,2005,15,0.030001375 +52,2005,14,0.023710268 +52,2005,13,0.027187856 +52,2005,12,0.031657121 +52,2005,11,0.043606882 +52,2005,10,0.054904681 +52,2005,9,0.041353812 +52,2005,8,0.057192979 +52,2005,7,0.04129984 +52,2005,6,0.073583506 +52,2005,5,0.086456437 +52,2005,4,0.057274998 +52,2005,3,0.054759815 +52,2005,2,0.057140421 +52,2005,1,0.066984998 +52,2005,0,0.072543662 +51,2005,30,0 +51,2005,29,0 +51,2005,28,0.000998416 +51,2005,27,0.001579635 +51,2005,26,0.002481561 +51,2005,25,0.003629736 +51,2005,24,0.008788421 +51,2005,23,0.007434896 +51,2005,22,0.007751504 +51,2005,21,0.010685884 +51,2005,20,0.011131146 +51,2005,19,0.012774095 +51,2005,18,0.017375728 +51,2005,17,0.019642887 +51,2005,16,0.032739058 +51,2005,15,0.022826726 +51,2005,14,0.031352901 +51,2005,13,0.021300976 +51,2005,12,0.024968259 +51,2005,11,0.049794996 +51,2005,10,0.071009641 +51,2005,9,0.054256751 +51,2005,8,0.042878145 +51,2005,7,0.082255129 +51,2005,6,0.089912228 +51,2005,5,0.064168957 +51,2005,4,0.052960469 +51,2005,3,0.047468777 +51,2005,2,0.057612 +51,2005,1,0.05576457 +51,2005,0,0.094456512 +43,2005,30,0.001710203 +43,2005,29,0.002875384 +43,2005,28,0.005796637 +43,2005,27,0.007719814 +43,2005,26,0.007508948 +43,2005,25,0.016991386 +43,2005,24,0.018615231 +43,2005,23,0.017400069 +43,2005,22,0.014079241 +43,2005,21,0.019163258 +43,2005,20,0.021685957 +43,2005,19,0.023231659 +43,2005,18,0.02356446 +43,2005,17,0.024547404 +43,2005,16,0.02103536 +43,2005,15,0.036305532 +43,2005,14,0.036307996 +43,2005,13,0.032711929 +43,2005,12,0.033859489 +43,2005,11,0.031153844 +43,2005,10,0.045190253 +43,2005,9,0.043001639 +43,2005,8,0.049674372 +43,2005,7,0.041763515 +43,2005,6,0.056118981 +43,2005,5,0.060341948 +43,2005,4,0.05389336 +43,2005,3,0.066852459 +43,2005,2,0.06046917 +43,2005,1,0.064500099 +43,2005,0,0.061930404 +42,2005,30,0.001787587 +42,2005,29,0.003147159 +42,2005,28,0.004918979 +42,2005,27,0.006205946 +42,2005,26,0.009291981 +42,2005,25,0.01586291 +42,2005,24,0.018213782 +42,2005,23,0.016891142 +42,2005,22,0.017646286 +42,2005,21,0.014590628 +42,2005,20,0.020104205 +42,2005,19,0.020267283 +42,2005,18,0.021420043 +42,2005,17,0.024980188 +42,2005,16,0.031448816 +42,2005,15,0.034663094 +42,2005,14,0.031108279 +42,2005,13,0.030724676 +42,2005,12,0.031590411 +42,2005,11,0.036812691 +42,2005,10,0.043762624 +42,2005,9,0.05195481 +42,2005,8,0.051725217 +42,2005,7,0.044789546 +42,2005,6,0.048019197 +42,2005,5,0.049256223 +42,2005,4,0.06653137 +42,2005,3,0.061293076 +42,2005,2,0.064203317 +42,2005,1,0.060425455 +42,2005,0,0.066363081 +41,2005,30,0.00140962 +41,2005,29,0.002728421 +41,2005,28,0.005660796 +41,2005,27,0.007414788 +41,2005,26,0.008643107 +41,2005,25,0.017441582 +41,2005,24,0.020615887 +41,2005,23,0.019119182 +41,2005,22,0.015265258 +41,2005,21,0.0191748 +41,2005,20,0.022696388 +41,2005,19,0.02341449 +41,2005,18,0.025182411 +41,2005,17,0.026132496 +41,2005,16,0.025312215 +41,2005,15,0.031134372 +41,2005,14,0.032123606 +41,2005,13,0.030333992 +41,2005,12,0.03301604 +41,2005,11,0.036416894 +41,2005,10,0.043298733 +41,2005,9,0.036188246 +41,2005,8,0.041005645 +41,2005,7,0.039333726 +41,2005,6,0.054570958 +41,2005,5,0.058009574 +41,2005,4,0.06221044 +41,2005,3,0.066062757 +41,2005,2,0.063490386 +41,2005,1,0.065857276 +41,2005,0,0.066735914 +32,2005,30,0 +32,2005,29,0 +32,2005,28,0.001342199 +32,2005,27,0.00218987 +32,2005,26,0.002950434 +32,2005,25,0.002720374 +32,2005,24,0.004055165 +32,2005,23,0.004268967 +32,2005,22,0.003822957 +32,2005,21,0.005743948 +32,2005,20,0.005847325 +32,2005,19,0.008198153 +32,2005,18,0.008714935 +32,2005,17,0.011184168 +32,2005,16,0.012302492 +32,2005,15,0.011606593 +32,2005,14,0.010967685 +32,2005,13,0.011668054 +32,2005,12,0.021080129 +32,2005,11,0.021424762 +32,2005,10,0.033494528 +32,2005,9,0.031159383 +32,2005,8,0.046232466 +32,2005,7,0.041558846 +32,2005,6,0.065304038 +32,2005,5,0.083343153 +32,2005,4,0.097719362 +32,2005,3,0.106566336 +32,2005,2,0.109524931 +32,2005,1,0.118556379 +32,2005,0,0.116452367 +31,2005,30,0 +31,2005,29,0 +31,2005,28,0.001472029 +31,2005,27,0.002042253 +31,2005,26,0.00241829 +31,2005,25,0.002274052 +31,2005,24,0.004203852 +31,2005,23,0.004333867 +31,2005,22,0.004212574 +31,2005,21,0.006530714 +31,2005,20,0.007079312 +31,2005,19,0.010133859 +31,2005,18,0.010021482 +31,2005,17,0.013152891 +31,2005,16,0.015519312 +31,2005,15,0.015403795 +31,2005,14,0.017425871 +31,2005,13,0.02076556 +31,2005,12,0.025318526 +31,2005,11,0.036135153 +31,2005,10,0.039247024 +31,2005,9,0.040842242 +31,2005,8,0.053076101 +31,2005,7,0.060668729 +31,2005,6,0.071949041 +31,2005,5,0.07797387 +31,2005,4,0.080989693 +31,2005,3,0.089549488 +31,2005,2,0.091446624 +31,2005,1,0.098447966 +31,2005,0,0.097365829 +21,2005,30,0.001926532 +21,2005,29,0.00321957 +21,2005,28,0.004668718 +21,2005,27,0.006032397 +21,2005,26,0.006720509 +21,2005,25,0.007453726 +21,2005,24,0.007742933 +21,2005,23,0.00641518 +21,2005,22,0.006674406 +21,2005,21,0.008470735 +21,2005,20,0.010137677 +21,2005,19,0.011919141 +21,2005,18,0.013271312 +21,2005,17,0.014159968 +21,2005,16,0.017128176 +21,2005,15,0.021261503 +21,2005,14,0.025267415 +21,2005,13,0.029742088 +21,2005,12,0.032242855 +21,2005,11,0.037969768 +21,2005,10,0.04738027 +21,2005,9,0.04825282 +21,2005,8,0.055634365 +21,2005,7,0.05952256 +21,2005,6,0.071459613 +21,2005,5,0.080892306 +21,2005,4,0.077252359 +21,2005,3,0.079734409 +21,2005,2,0.07401975 +21,2005,1,0.068188312 +21,2005,0,0.065238627 +11,2005,30,0.002155874 +11,2005,29,0.003976472 +11,2005,28,0.006158536 +11,2005,27,0.012976061 +11,2005,26,0.019459497 +11,2005,25,0.022712832 +11,2005,24,0.025894544 +11,2005,23,0.026352456 +11,2005,22,0.028875438 +11,2005,21,0.019040025 +11,2005,20,0.018990651 +11,2005,19,0.01479086 +11,2005,18,0.010048487 +11,2005,17,0.009962506 +11,2005,16,0.01185277 +11,2005,15,0.013386801 +11,2005,14,0.014959861 +11,2005,13,0.018113225 +11,2005,12,0.024514623 +11,2005,11,0.030393018 +11,2005,10,0.025521235 +11,2005,9,0.040074057 +11,2005,8,0.03880001 +11,2005,7,0.033151951 +11,2005,6,0.039244307 +11,2005,5,0.051049539 +11,2005,4,0.064137654 +11,2005,3,0.073633199 +11,2005,2,0.086221746 +11,2005,1,0.100163192 +11,2005,0,0.113388574 +62,2006,30,0.002931694 +62,2006,29,0.008735858 +62,2006,28,0.014304061 +62,2006,27,0.010670447 +62,2006,26,0.01119585 +62,2006,25,0.013304596 +62,2006,24,0.013507595 +62,2006,23,0.01167548 +62,2006,22,0.010894274 +62,2006,21,0.009634299 +62,2006,20,0.005445971 +62,2006,19,0.009562166 +62,2006,18,0.007225762 +62,2006,17,0.009324847 +62,2006,16,0.008602024 +62,2006,15,0.008648948 +62,2006,14,0.0073054 +62,2006,13,0.013239581 +62,2006,12,0.015739583 +62,2006,11,0.025749302 +62,2006,10,0.029239797 +62,2006,9,0.026989234 +62,2006,8,0.0454702 +62,2006,7,0.067840631 +62,2006,6,0.091804445 +62,2006,5,0.061541325 +62,2006,4,0.058139474 +62,2006,3,0.075883561 +62,2006,2,0.075482972 +62,2006,1,0.12186601 +62,2006,0,0.128044612 +61,2006,30,0.003021323 +61,2006,29,0.006109791 +61,2006,28,0.008263456 +61,2006,27,0.007573186 +61,2006,26,0.005313067 +61,2006,25,0.011658306 +61,2006,24,0.011651069 +61,2006,23,0.009011159 +61,2006,22,0.015182482 +61,2006,21,0.017260679 +61,2006,20,0.021635655 +61,2006,19,0.025732186 +61,2006,18,0.030874393 +61,2006,17,0.032177262 +61,2006,16,0.036421084 +61,2006,15,0.032933278 +61,2006,14,0.036908693 +61,2006,13,0.044406088 +61,2006,12,0.054354839 +61,2006,11,0.062844284 +61,2006,10,0.059367008 +61,2006,9,0.045551968 +61,2006,8,0.049814797 +61,2006,7,0.052833893 +61,2006,6,0.059310177 +61,2006,5,0.053299024 +61,2006,4,0.040829137 +61,2006,3,0.040567099 +61,2006,2,0.035625994 +61,2006,1,0.046256445 +61,2006,0,0.043212178 +54,2006,30,0 +54,2006,29,0.000620193 +54,2006,28,0.001418 +54,2006,27,0.002983234 +54,2006,26,0.005530673 +54,2006,25,0.009903565 +54,2006,24,0.011557608 +54,2006,23,0.014738156 +54,2006,22,0.019949324 +54,2006,21,0.019258104 +54,2006,20,0.02040777 +54,2006,19,0.022666829 +54,2006,18,0.024582501 +54,2006,17,0.028632993 +54,2006,16,0.024711058 +54,2006,15,0.019954181 +54,2006,14,0.024887549 +54,2006,13,0.028305875 +54,2006,12,0.038566948 +54,2006,11,0.039992355 +54,2006,10,0.033276561 +54,2006,9,0.049549542 +54,2006,8,0.032277998 +54,2006,7,0.056102368 +54,2006,6,0.057812239 +54,2006,5,0.06228364 +54,2006,4,0.064149449 +54,2006,3,0.06670134 +54,2006,2,0.073665972 +54,2006,1,0.072805375 +54,2006,0,0.072708599 +53,2006,30,0 +53,2006,29,0.001471156 +53,2006,28,0.004050986 +53,2006,27,0.003188973 +53,2006,26,0.002450043 +53,2006,25,0.005408699 +53,2006,24,0.005457205 +53,2006,23,0.005822879 +53,2006,22,0.00739602 +53,2006,21,0.007251493 +53,2006,20,0.009427481 +53,2006,19,0.007025788 +53,2006,18,0.01862754 +53,2006,17,0.055592723 +53,2006,16,0.015214947 +53,2006,15,0.023624084 +53,2006,14,0.016328147 +53,2006,13,0.080709226 +53,2006,12,0.033349468 +53,2006,11,0.047652997 +53,2006,10,0.024321126 +53,2006,9,0.021446567 +53,2006,8,0.024529035 +53,2006,7,0.132155575 +53,2006,6,0.165253 +53,2006,5,0.066107261 +53,2006,4,0.031465284 +53,2006,3,0.032546273 +53,2006,2,0.036878421 +53,2006,1,0.049116693 +53,2006,0,0.066130908 +52,2006,30,0 +52,2006,29,0.000750336 +52,2006,28,0.001961562 +52,2006,27,0.00250268 +52,2006,26,0.004129953 +52,2006,25,0.011246414 +52,2006,24,0.011343937 +52,2006,23,0.010722692 +52,2006,22,0.015284614 +52,2006,21,0.01623699 +52,2006,20,0.023645867 +52,2006,19,0.019952466 +52,2006,18,0.022978086 +52,2006,17,0.025319446 +52,2006,16,0.027628049 +52,2006,15,0.021834614 +52,2006,14,0.0250371 +52,2006,13,0.029152814 +52,2006,12,0.040157262 +52,2006,11,0.050561323 +52,2006,10,0.038082426 +52,2006,9,0.0526686 +52,2006,8,0.038032724 +52,2006,7,0.067762519 +52,2006,6,0.079617108 +52,2006,5,0.052744132 +52,2006,4,0.050427918 +52,2006,3,0.052620201 +52,2006,2,0.061686 +52,2006,1,0.066804934 +52,2006,0,0.079107232 +51,2006,30,0 +51,2006,29,0.000908815 +51,2006,28,0.001437874 +51,2006,27,0.002258859 +51,2006,26,0.003303993 +51,2006,25,0.007999723 +51,2006,24,0.006767667 +51,2006,23,0.007055862 +51,2006,22,0.009726902 +51,2006,21,0.010132205 +51,2006,20,0.011627711 +51,2006,19,0.015816381 +51,2006,18,0.017880078 +51,2006,17,0.029800961 +51,2006,16,0.02077819 +51,2006,15,0.028539202 +51,2006,14,0.019389365 +51,2006,13,0.022727536 +51,2006,12,0.045326251 +51,2006,11,0.064637033 +51,2006,10,0.049387595 +51,2006,9,0.039030138 +51,2006,8,0.074873319 +51,2006,7,0.081843248 +51,2006,6,0.058410251 +51,2006,5,0.048207645 +51,2006,4,0.043208794 +51,2006,3,0.052441735 +51,2006,2,0.050760099 +51,2006,1,0.085979715 +51,2006,0,0.089742853 +43,2006,30,0.001417206 +43,2006,29,0.00373852 +43,2006,28,0.006160775 +43,2006,27,0.006100222 +43,2006,26,0.015822543 +43,2006,25,0.016972909 +43,2006,24,0.016985209 +43,2006,23,0.013246742 +43,2006,22,0.017887647 +43,2006,21,0.020431943 +43,2006,20,0.020766237 +43,2006,19,0.020952128 +43,2006,18,0.022115349 +43,2006,17,0.019093521 +43,2006,16,0.033495013 +43,2006,15,0.033467618 +43,2006,14,0.029924981 +43,2006,13,0.033052195 +43,2006,12,0.028386079 +43,2006,11,0.042242578 +43,2006,10,0.040361692 +43,2006,9,0.046062093 +43,2006,8,0.038341836 +43,2006,7,0.052973347 +43,2006,6,0.056906729 +43,2006,5,0.050893748 +43,2006,4,0.0632172 +43,2006,3,0.057076997 +43,2006,2,0.062962258 +43,2006,1,0.06045383 +43,2006,0,0.068490857 +42,2006,30,0.001600975 +42,2006,29,0.00324252 +42,2006,28,0.005062761 +42,2006,27,0.007736724 +42,2006,26,0.015149339 +42,2006,25,0.016862896 +42,2006,24,0.016893935 +42,2006,23,0.017218302 +42,2006,22,0.013920244 +42,2006,21,0.019172855 +42,2006,20,0.018440441 +42,2006,19,0.019386377 +42,2006,18,0.023147458 +42,2006,17,0.029581887 +42,2006,16,0.033155291 +42,2006,15,0.029260404 +42,2006,14,0.028947524 +42,2006,13,0.031595634 +42,2006,12,0.034945123 +42,2006,11,0.041812348 +42,2006,10,0.049461748 +42,2006,9,0.049330474 +42,2006,8,0.042675982 +42,2006,7,0.04627856 +42,2006,6,0.047355832 +42,2006,5,0.064431509 +42,2006,4,0.059282668 +42,2006,3,0.061823741 +42,2006,2,0.060435445 +42,2006,1,0.066374053 +42,2006,0,0.045416947 +41,2006,30,0.001351304 +41,2006,29,0.003662481 +41,2006,28,0.005928007 +41,2006,27,0.007031741 +41,2006,26,0.016300903 +41,2006,25,0.019019606 +41,2006,24,0.018698584 +41,2006,23,0.014442731 +41,2006,22,0.0179652 +41,2006,21,0.021347592 +41,2006,20,0.020930088 +41,2006,19,0.022330671 +41,2006,18,0.023524536 +41,2006,17,0.023185036 +41,2006,16,0.028496118 +41,2006,15,0.029353726 +41,2006,14,0.027643832 +41,2006,13,0.03228973 +41,2006,12,0.033457554 +41,2006,11,0.040356817 +41,2006,10,0.033431462 +41,2006,9,0.038038003 +41,2006,8,0.0363407 +41,2006,7,0.05170064 +41,2006,6,0.054782976 +41,2006,5,0.058820886 +41,2006,4,0.062659257 +41,2006,3,0.060478136 +41,2006,2,0.0644085 +41,2006,1,0.065267809 +41,2006,0,0.066755374 +32,2006,30,0 +32,2006,29,0.001206629 +32,2006,28,0.001968681 +32,2006,27,0.002652424 +32,2006,26,0.002445601 +32,2006,25,0.003645571 +32,2006,24,0.003837778 +32,2006,23,0.003436818 +32,2006,22,0.005163777 +32,2006,21,0.005256713 +32,2006,20,0.007370094 +32,2006,19,0.007834678 +32,2006,18,0.010054505 +32,2006,17,0.011059872 +32,2006,16,0.010434263 +32,2006,15,0.009859888 +32,2006,14,0.010489516 +32,2006,13,0.018950919 +32,2006,12,0.019260742 +32,2006,11,0.030111394 +32,2006,10,0.028012113 +32,2006,9,0.04156273 +32,2006,8,0.037361172 +32,2006,7,0.058707968 +32,2006,6,0.074925032 +32,2006,5,0.087849164 +32,2006,4,0.095802545 +32,2006,3,0.098462305 +32,2006,2,0.106581527 +32,2006,1,0.104690032 +32,2006,0,0.101005548 +31,2006,30,0 +31,2006,29,0.001348279 +31,2006,28,0.001870566 +31,2006,27,0.002214991 +31,2006,26,0.002082878 +31,2006,25,0.003850445 +31,2006,24,0.00396953 +31,2006,23,0.003858434 +31,2006,22,0.005981694 +31,2006,21,0.006484173 +31,2006,20,0.009281932 +31,2006,19,0.009179003 +31,2006,18,0.012047162 +31,2006,17,0.014214645 +31,2006,16,0.014108839 +31,2006,15,0.015960924 +31,2006,14,0.019019854 +31,2006,13,0.023190065 +31,2006,12,0.033097366 +31,2006,11,0.03594763 +31,2006,10,0.037408742 +31,2006,9,0.048614134 +31,2006,8,0.055568469 +31,2006,7,0.065900475 +31,2006,6,0.071418812 +31,2006,5,0.074181104 +31,2006,4,0.082021299 +31,2006,3,0.083758948 +31,2006,2,0.090171706 +31,2006,1,0.089180541 +31,2006,0,0.08406736 +21,2006,30,0.00150599 +21,2006,29,0.00298367 +21,2006,28,0.004525195 +21,2006,27,0.005617301 +21,2006,26,0.006628483 +21,2006,25,0.006640257 +21,2006,24,0.005892526 +21,2006,23,0.005903321 +21,2006,22,0.00729885 +21,2006,21,0.008688061 +21,2006,20,0.010214817 +21,2006,19,0.011568482 +21,2006,18,0.012671369 +21,2006,17,0.015644351 +21,2006,16,0.019447279 +21,2006,15,0.023140117 +21,2006,14,0.02727905 +21,2006,13,0.032071952 +21,2006,12,0.035250608 +21,2006,11,0.044511054 +21,2006,10,0.044826201 +21,2006,9,0.051600323 +21,2006,8,0.055063618 +21,2006,7,0.066745575 +21,2006,6,0.07611332 +21,2006,5,0.074116156 +21,2006,4,0.077706026 +21,2006,3,0.072243513 +21,2006,2,0.068118952 +21,2006,1,0.065177713 +21,2006,0,0.060805871 +11,2006,30,0.001994113 +11,2006,29,0.003712106 +11,2006,28,0.009433209 +11,2006,27,0.014803939 +11,2006,26,0.017314096 +11,2006,25,0.022753508 +11,2006,24,0.020078214 +11,2006,23,0.026630676 +11,2006,22,0.017164609 +11,2006,21,0.016814826 +11,2006,20,0.012768946 +11,2006,19,0.008052972 +11,2006,18,0.008124425 +11,2006,17,0.009510738 +11,2006,16,0.011472282 +11,2006,15,0.012954288 +11,2006,14,0.016114373 +11,2006,13,0.017637203 +11,2006,12,0.027795704 +11,2006,11,0.02326317 +11,2006,10,0.03671208 +11,2006,9,0.035416821 +11,2006,8,0.0300829 +11,2006,7,0.035567151 +11,2006,6,0.046454356 +11,2006,5,0.058045421 +11,2006,4,0.067128317 +11,2006,3,0.078068837 +11,2006,2,0.09101785 +11,2006,1,0.105398589 +11,2006,0,0.117714282 +62,2007,30,0.003904571 +62,2007,29,0.007531049 +62,2007,28,0.007258819 +62,2007,27,0.007907092 +62,2007,26,0.010550568 +62,2007,25,0.008282679 +62,2007,24,0.010534221 +62,2007,23,0.008011437 +62,2007,22,0.006940337 +62,2007,21,0.003178442 +62,2007,20,0.006312181 +62,2007,19,0.00470184 +62,2007,18,0.00633282 +62,2007,17,0.006178908 +62,2007,16,0.006432791 +62,2007,15,0.006033308 +62,2007,14,0.010837279 +62,2007,13,0.014201064 +62,2007,12,0.022406903 +62,2007,11,0.025408849 +62,2007,10,0.023401918 +62,2007,9,0.040178566 +62,2007,8,0.060414924 +62,2007,7,0.081641603 +62,2007,6,0.053967566 +62,2007,5,0.049997864 +62,2007,4,0.066235701 +62,2007,3,0.066050436 +62,2007,2,0.109953808 +62,2007,1,0.115528461 +62,2007,0,0.149683993 +61,2007,30,0.003024774 +61,2007,29,0.004817173 +61,2007,28,0.005693277 +61,2007,27,0.003935859 +61,2007,26,0.011264396 +61,2007,25,0.009045217 +61,2007,24,0.009335161 +61,2007,23,0.014565549 +61,2007,22,0.016506984 +61,2007,21,0.021549864 +61,2007,20,0.024185458 +61,2007,19,0.02999955 +61,2007,18,0.031490496 +61,2007,17,0.03485389 +61,2007,16,0.03085724 +61,2007,15,0.034452516 +61,2007,14,0.041756785 +61,2007,13,0.056309204 +61,2007,12,0.059837228 +61,2007,11,0.056664227 +61,2007,10,0.041835796 +61,2007,9,0.047542991 +61,2007,8,0.050197255 +61,2007,7,0.056860997 +61,2007,6,0.049036961 +61,2007,5,0.035731603 +61,2007,4,0.037051779 +61,2007,3,0.033234641 +61,2007,2,0.047919627 +61,2007,1,0.0447659 +61,2007,0,0.055677604 +54,2007,30,0.000580001 +54,2007,29,0.001326107 +54,2007,28,0.002789907 +54,2007,27,0.005172261 +54,2007,26,0.00926177 +54,2007,25,0.010808624 +54,2007,24,0.013783059 +54,2007,23,0.01865652 +54,2007,22,0.018010094 +54,2007,21,0.019085257 +54,2007,20,0.021197919 +54,2007,19,0.022989447 +54,2007,18,0.02677745 +54,2007,17,0.023109673 +54,2007,16,0.018661063 +54,2007,15,0.023274727 +54,2007,14,0.02647153 +54,2007,13,0.036067641 +54,2007,12,0.037400675 +54,2007,11,0.031120094 +54,2007,10,0.046338515 +54,2007,9,0.030186242 +54,2007,8,0.052466689 +54,2007,7,0.054065752 +54,2007,6,0.058247387 +54,2007,5,0.059992284 +54,2007,4,0.0623788 +54,2007,3,0.068892094 +54,2007,2,0.068087267 +54,2007,1,0.067996763 +54,2007,0,0.064804386 +53,2007,30,0.001375366 +53,2007,29,0.003787218 +53,2007,28,0.002981332 +53,2007,27,0.002290516 +53,2007,26,0.005056527 +53,2007,25,0.005101875 +53,2007,24,0.00544374 +53,2007,23,0.00691445 +53,2007,22,0.006779334 +53,2007,21,0.008813638 +53,2007,20,0.006568325 +53,2007,19,0.017414663 +53,2007,18,0.051972967 +53,2007,17,0.014224271 +53,2007,16,0.022085872 +53,2007,15,0.015264988 +53,2007,14,0.075454082 +53,2007,13,0.031178015 +53,2007,12,0.044550212 +53,2007,11,0.022737527 +53,2007,10,0.020050137 +53,2007,9,0.022931899 +53,2007,8,0.123550653 +53,2007,7,0.154493036 +53,2007,6,0.061802881 +53,2007,5,0.029416515 +53,2007,4,0.030427118 +53,2007,3,0.034477191 +53,2007,2,0.045918604 +53,2007,1,0.061824989 +53,2007,0,0.065112063 +52,2007,30,0.000698598 +52,2007,29,0.001826307 +52,2007,28,0.002330113 +52,2007,27,0.003845181 +52,2007,26,0.01047094 +52,2007,25,0.010561739 +52,2007,24,0.00998333 +52,2007,23,0.014230695 +52,2007,22,0.015117402 +52,2007,21,0.022015414 +52,2007,20,0.018576684 +52,2007,19,0.021393679 +52,2007,18,0.023573595 +52,2007,17,0.025723013 +52,2007,16,0.020329053 +52,2007,15,0.023310717 +52,2007,14,0.027142641 +52,2007,13,0.0373883 +52,2007,12,0.04707497 +52,2007,11,0.03545653 +52,2007,10,0.049036944 +52,2007,9,0.035410255 +52,2007,8,0.063090092 +52,2007,7,0.074127272 +52,2007,6,0.049107267 +52,2007,5,0.046950764 +52,2007,4,0.048991882 +52,2007,3,0.057432568 +52,2007,2,0.062198536 +52,2007,1,0.073652554 +52,2007,0,0.068952964 +51,2007,30,0.000817913 +51,2007,29,0.001294055 +51,2007,28,0.002032922 +51,2007,27,0.00297352 +51,2007,26,0.007199573 +51,2007,25,0.00609075 +51,2007,24,0.006350119 +51,2007,23,0.008753996 +51,2007,22,0.009118759 +51,2007,21,0.010464681 +51,2007,20,0.014234391 +51,2007,19,0.016091673 +51,2007,18,0.026820203 +51,2007,17,0.018699909 +51,2007,16,0.025684648 +51,2007,15,0.017449998 +51,2007,14,0.020454277 +51,2007,13,0.040792618 +51,2007,12,0.058171893 +51,2007,11,0.044447738 +51,2007,10,0.035126257 +51,2007,9,0.067384323 +51,2007,8,0.073657104 +51,2007,7,0.052567928 +51,2007,6,0.043385809 +51,2007,5,0.038886954 +51,2007,4,0.047196396 +51,2007,3,0.045682961 +51,2007,2,0.077379833 +51,2007,1,0.080766573 +51,2007,0,0.100022223 +43,2007,30,0.0017224 +43,2007,29,0.003968492 +43,2007,28,0.004778657 +43,2007,27,0.014136686 +43,2007,26,0.016144555 +43,2007,25,0.015289419 +43,2007,24,0.013162123 +43,2007,23,0.017198681 +43,2007,22,0.019609399 +43,2007,21,0.018772474 +43,2007,20,0.01869284 +43,2007,19,0.01996121 +43,2007,18,0.017412027 +43,2007,17,0.031243249 +43,2007,16,0.030930393 +43,2007,15,0.027756691 +43,2007,14,0.030872317 +43,2007,13,0.028204752 +43,2007,12,0.039870406 +43,2007,11,0.038499248 +43,2007,10,0.042888609 +43,2007,9,0.035653701 +43,2007,8,0.050442441 +43,2007,7,0.054511028 +43,2007,6,0.048712051 +43,2007,5,0.060188885 +43,2007,4,0.054685008 +43,2007,3,0.060301529 +43,2007,2,0.060067659 +43,2007,1,0.068053346 +43,2007,0,0.056269722 +42,2007,30,0.001496193 +42,2007,29,0.003262467 +42,2007,28,0.006087036 +42,2007,27,0.013626227 +42,2007,26,0.016045238 +42,2007,25,0.015477 +42,2007,24,0.017179464 +42,2007,23,0.013416387 +42,2007,22,0.018248107 +42,2007,21,0.016604939 +42,2007,20,0.017230275 +42,2007,19,0.021057682 +42,2007,18,0.027479637 +42,2007,17,0.031490852 +42,2007,16,0.02703226 +42,2007,15,0.027133383 +42,2007,14,0.029709659 +42,2007,13,0.0348663 +42,2007,12,0.039500223 +42,2007,11,0.046817775 +42,2007,10,0.04631714 +42,2007,9,0.040444425 +42,2007,8,0.04403089 +42,2007,7,0.045293361 +42,2007,6,0.061991083 +42,2007,5,0.056548825 +42,2007,4,0.059218844 +42,2007,3,0.057860044 +42,2007,2,0.066224339 +42,2007,1,0.045314504 +42,2007,0,0.052995439 +41,2007,30,0.001683094 +41,2007,29,0.003803377 +41,2007,28,0.005484081 +41,2007,27,0.014566052 +41,2007,26,0.018057907 +41,2007,25,0.016955559 +41,2007,24,0.014294463 +41,2007,23,0.01722998 +41,2007,22,0.020334256 +41,2007,21,0.018797585 +41,2007,20,0.019724083 +41,2007,19,0.021050818 +41,2007,18,0.021253327 +41,2007,17,0.026162069 +41,2007,16,0.02664306 +41,2007,15,0.025380266 +41,2007,14,0.029880889 +41,2007,13,0.033114082 +41,2007,12,0.037725428 +41,2007,11,0.031129642 +41,2007,10,0.035236523 +41,2007,9,0.033863077 +41,2007,8,0.049165083 +41,2007,7,0.052253653 +41,2007,6,0.056037283 +41,2007,5,0.059532706 +41,2007,4,0.058217972 +41,2007,3,0.061891717 +41,2007,2,0.064597776 +41,2007,1,0.066070069 +41,2007,0,0.059864123 +32,2007,30,0.001101661 +32,2007,29,0.001797419 +32,2007,28,0.002421681 +32,2007,27,0.00223285 +32,2007,26,0.00332843 +32,2007,25,0.003503916 +32,2007,24,0.003137837 +32,2007,23,0.004714563 +32,2007,22,0.004799413 +32,2007,21,0.006728944 +32,2007,20,0.007153113 +32,2007,19,0.00917983 +32,2007,18,0.010097737 +32,2007,17,0.009526551 +32,2007,16,0.009002143 +32,2007,15,0.009576998 +32,2007,14,0.017302315 +32,2007,13,0.017585185 +32,2007,12,0.027491903 +32,2007,11,0.025575245 +32,2007,10,0.037947049 +32,2007,9,0.034110998 +32,2007,8,0.053600764 +32,2007,7,0.068407052 +32,2007,6,0.08020687 +32,2007,5,0.08746836 +32,2007,4,0.089896739 +32,2007,3,0.097309642 +32,2007,2,0.095582694 +32,2007,1,0.092218736 +32,2007,0,0.086993359 +31,2007,30,0.001247028 +31,2007,29,0.001730094 +31,2007,28,0.002048654 +31,2007,27,0.001926462 +31,2007,26,0.003561292 +31,2007,25,0.003671433 +31,2007,24,0.00356868 +31,2007,23,0.005532491 +31,2007,22,0.005997237 +31,2007,21,0.008584894 +31,2007,20,0.008489695 +31,2007,19,0.011142466 +31,2007,18,0.013147179 +31,2007,17,0.013049319 +31,2007,16,0.014762319 +31,2007,15,0.017591535 +31,2007,14,0.021448579 +31,2007,13,0.03061188 +31,2007,12,0.0332481 +31,2007,11,0.034599488 +31,2007,10,0.044963397 +31,2007,9,0.051395488 +31,2007,8,0.0609516 +31,2007,7,0.066055531 +31,2007,6,0.068610385 +31,2007,5,0.075861812 +31,2007,4,0.077468969 +31,2007,3,0.083400154 +31,2007,2,0.082483422 +31,2007,1,0.077754221 +31,2007,0,0.075096196 +21,2007,30,0.001436437 +21,2007,29,0.003069846 +21,2007,28,0.004486669 +21,2007,27,0.005698968 +21,2007,26,0.005990221 +21,2007,25,0.005006448 +21,2007,24,0.005469655 +21,2007,23,0.006603928 +21,2007,22,0.007690293 +21,2007,21,0.008959141 +21,2007,20,0.010246074 +21,2007,19,0.011541546 +21,2007,18,0.014407029 +21,2007,17,0.017949184 +21,2007,16,0.021408029 +21,2007,15,0.025284536 +21,2007,14,0.029813355 +21,2007,13,0.03476985 +21,2007,12,0.041942925 +21,2007,11,0.041796443 +21,2007,10,0.047987004 +21,2007,9,0.051011833 +21,2007,8,0.0622505 +21,2007,7,0.07129617 +21,2007,6,0.069275685 +21,2007,5,0.07396116 +21,2007,4,0.070005091 +21,2007,3,0.065909972 +21,2007,2,0.064460795 +21,2007,1,0.060125919 +21,2007,0,0.060145293 +11,2007,30,0.001278132 +11,2007,29,0.005964623 +11,2007,28,0.010284605 +11,2007,27,0.012070352 +11,2007,26,0.016538887 +11,2007,25,0.017848203 +11,2007,24,0.019346568 +11,2007,23,0.015720239 +11,2007,22,0.015097348 +11,2007,21,0.011174516 +11,2007,20,0.006439375 +11,2007,19,0.00641732 +11,2007,18,0.007617728 +11,2007,17,0.009707655 +11,2007,16,0.011142461 +11,2007,15,0.014378639 +11,2007,14,0.016131913 +11,2007,13,0.019549093 +11,2007,12,0.021419135 +11,2007,11,0.033972914 +11,2007,10,0.032613632 +11,2007,9,0.027504562 +11,2007,8,0.032436699 +11,2007,7,0.042546041 +11,2007,6,0.053203335 +11,2007,5,0.061609536 +11,2007,4,0.071033276 +11,2007,3,0.083291748 +11,2007,2,0.096387618 +11,2007,1,0.110595158 +11,2007,0,0.11667869 +62,2008,30,0.002288174 +62,2008,29,0.003847394 +62,2008,28,0.005867057 +62,2008,27,0.007824191 +62,2008,26,0.006925855 +62,2008,25,0.00830824 +62,2008,24,0.008058736 +62,2008,23,0.006058214 +62,2008,22,0.001789534 +62,2008,21,0.004642861 +62,2008,20,0.003218955 +62,2008,19,0.004558042 +62,2008,18,0.004633418 +62,2008,17,0.005281512 +62,2008,16,0.005717634 +62,2008,15,0.010091113 +62,2008,14,0.01372322 +62,2008,13,0.022539191 +62,2008,12,0.024763512 +62,2008,11,0.022832642 +62,2008,10,0.039609386 +62,2008,9,0.06002334 +62,2008,8,0.080802982 +62,2008,7,0.052789553 +62,2008,6,0.047834959 +62,2008,5,0.063926082 +62,2008,4,0.064448318 +62,2008,3,0.107147175 +62,2008,2,0.116210529 +62,2008,1,0.150567712 +62,2008,0,0.043670468 +61,2008,30,0.001528683 +61,2008,29,0.003067062 +61,2008,28,0.002863221 +61,2008,27,0.010641541 +61,2008,26,0.009025547 +61,2008,25,0.008512866 +61,2008,24,0.015667718 +61,2008,23,0.017020185 +61,2008,22,0.022493565 +61,2008,21,0.023694463 +61,2008,20,0.03030098 +61,2008,19,0.032016569 +61,2008,18,0.034415618 +61,2008,17,0.029851047 +61,2008,16,0.032643925 +61,2008,15,0.040781977 +61,2008,14,0.055282779 +61,2008,13,0.064365084 +61,2008,12,0.055365307 +61,2008,11,0.039746859 +61,2008,10,0.046582841 +61,2008,9,0.049723549 +61,2008,8,0.055826507 +61,2008,7,0.046718518 +61,2008,6,0.031415847 +61,2008,5,0.033817422 +61,2008,4,0.032281708 +61,2008,3,0.047481484 +61,2008,2,0.048153316 +61,2008,1,0.059890703 +61,2008,0,0.01882311 +54,2008,30,0.00070423 +54,2008,29,0.002073975 +54,2008,28,0.004569906 +54,2008,27,0.008502058 +54,2008,26,0.010195411 +54,2008,25,0.013130294 +54,2008,24,0.01802122 +54,2008,23,0.017311923 +54,2008,22,0.01824832 +54,2008,21,0.020159739 +54,2008,20,0.021827256 +54,2008,19,0.025377068 +54,2008,18,0.021719263 +54,2008,17,0.01744589 +54,2008,16,0.021871091 +54,2008,15,0.024970037 +54,2008,14,0.034189742 +54,2008,13,0.03612709 +54,2008,12,0.029305008 +54,2008,11,0.044194893 +54,2008,10,0.028703946 +54,2008,9,0.05019181 +54,2008,8,0.051667239 +54,2008,7,0.055627865 +54,2008,6,0.057277302 +54,2008,5,0.059709468 +54,2008,4,0.065888399 +54,2008,3,0.06534153 +54,2008,2,0.065681306 +54,2008,1,0.062597638 +54,2008,0,0.047369084 +53,2008,30,0.002042715 +53,2008,29,0.002255037 +53,2008,28,0.002039074 +53,2008,27,0.004743003 +53,2008,26,0.004882011 +53,2008,25,0.004810299 +53,2008,24,0.006785639 +53,2008,23,0.006560746 +53,2008,22,0.008565992 +53,2008,21,0.006269488 +53,2008,20,0.016908595 +53,2008,19,0.050825775 +53,2008,18,0.013732056 +53,2008,17,0.021454733 +53,2008,16,0.014693768 +53,2008,15,0.073861818 +53,2008,14,0.030093895 +53,2008,13,0.043720279 +53,2008,12,0.020801072 +53,2008,11,0.019318966 +53,2008,10,0.021945905 +53,2008,9,0.120920977 +53,2008,8,0.149966036 +53,2008,7,0.060091687 +53,2008,6,0.028055151 +53,2008,5,0.02947331 +53,2008,4,0.033547386 +53,2008,3,0.044736558 +53,2008,2,0.06067324 +53,2008,1,0.063899079 +53,2008,0,0.032325711 +52,2008,30,0.000970407 +52,2008,29,0.001727122 +52,2008,28,0.003380039 +52,2008,27,0.009758169 +52,2008,26,0.009989351 +52,2008,25,0.009382037 +52,2008,24,0.013733857 +52,2008,23,0.014518918 +52,2008,22,0.021108449 +52,2008,21,0.017565038 +52,2008,20,0.020275082 +52,2008,19,0.022401487 +52,2008,18,0.024365043 +52,2008,17,0.019133113 +52,2008,16,0.021790017 +52,2008,15,0.025672168 +52,2008,14,0.035479453 +52,2008,13,0.045431437 +52,2008,12,0.033551832 +52,2008,11,0.046690321 +52,2008,10,0.033675648 +52,2008,9,0.060400971 +52,2008,8,0.070966143 +52,2008,7,0.046732731 +52,2008,6,0.044466374 +52,2008,5,0.046657235 +52,2008,4,0.054732528 +52,2008,3,0.059525798 +52,2008,2,0.071081115 +52,2008,1,0.066545601 +52,2008,0,0.048292515 +51,2008,30,0.00070041 +51,2008,29,0.001531079 +51,2008,28,0.002647352 +51,2008,27,0.00674023 +51,2008,26,0.005824038 +51,2008,25,0.00606192 +51,2008,24,0.008608177 +51,2008,23,0.008904201 +51,2008,22,0.010182016 +51,2008,21,0.013746498 +51,2008,20,0.015606931 +51,2008,19,0.026147901 +51,2008,18,0.018100159 +51,2008,17,0.024958637 +51,2008,16,0.016818366 +51,2008,15,0.019704386 +51,2008,14,0.039648567 +51,2008,13,0.057202902 +51,2008,12,0.04292904 +51,2008,11,0.034069725 +51,2008,10,0.065611826 +51,2008,9,0.072054711 +51,2008,8,0.051252396 +51,2008,7,0.041925506 +51,2008,6,0.037175015 +51,2008,5,0.04561159 +51,2008,4,0.044414945 +51,2008,3,0.075114391 +51,2008,2,0.079421215 +51,2008,1,0.098356116 +51,2008,0,0.028929756 +43,2008,30,0.002097712 +43,2008,29,0.003089337 +43,2008,28,0.012694258 +43,2008,27,0.014815407 +43,2008,26,0.014512683 +43,2008,25,0.011349144 +43,2008,24,0.017096184 +43,2008,23,0.019091116 +43,2008,22,0.017011145 +43,2008,21,0.016831375 +43,2008,20,0.018127946 +43,2008,19,0.015967647 +43,2008,18,0.029239523 +43,2008,17,0.028716446 +43,2008,16,0.025782784 +43,2008,15,0.029097772 +43,2008,14,0.02632358 +43,2008,13,0.039632794 +43,2008,12,0.036760873 +43,2008,11,0.040215278 +43,2008,10,0.033066739 +43,2008,9,0.048314477 +43,2008,8,0.052123869 +43,2008,7,0.046867017 +43,2008,6,0.057489381 +43,2008,5,0.052187927 +43,2008,4,0.058041992 +43,2008,3,0.058147283 +43,2008,2,0.067647775 +43,2008,1,0.055934377 +43,2008,0,0.051726159 +42,2008,30,0.001711139 +42,2008,29,0.003920002 +42,2008,28,0.012222555 +42,2008,27,0.014561812 +42,2008,26,0.014670566 +42,2008,25,0.015593647 +42,2008,24,0.013282902 +42,2008,23,0.017557196 +42,2008,22,0.014851568 +42,2008,21,0.015338737 +42,2008,20,0.019115217 +42,2008,19,0.025364239 +42,2008,18,0.029765405 +42,2008,17,0.024896764 +42,2008,16,0.025284522 +42,2008,15,0.027964562 +42,2008,14,0.032713021 +42,2008,13,0.039107219 +42,2008,12,0.043955056 +42,2008,11,0.043395096 +42,2008,10,0.037983385 +42,2008,9,0.041800776 +42,2008,8,0.042860739 +42,2008,7,0.059442203 +42,2008,6,0.053676437 +42,2008,5,0.056033567 +42,2008,4,0.05523396 +42,2008,3,0.063770738 +42,2008,2,0.044863651 +42,2008,1,0.052468166 +42,2008,0,0.05659515 +41,2008,30,0.0020185 +41,2008,29,0.003556773 +41,2008,28,0.01318621 +41,2008,27,0.016690399 +41,2008,26,0.01621101 +41,2008,25,0.012597261 +41,2008,24,0.017196035 +41,2008,23,0.019832039 +41,2008,22,0.017047176 +41,2008,21,0.017713679 +41,2008,20,0.019094427 +41,2008,19,0.019723411 +41,2008,18,0.024282382 +41,2008,17,0.024482187 +41,2008,16,0.023517944 +41,2008,15,0.028148085 +41,2008,14,0.031244428 +41,2008,13,0.037651104 +41,2008,12,0.029204459 +41,2008,11,0.033159263 +41,2008,10,0.031772001 +41,2008,9,0.047401394 +41,2008,8,0.05015572 +41,2008,7,0.054081517 +41,2008,6,0.05719166 +41,2008,5,0.056378394 +41,2008,4,0.060203014 +41,2008,3,0.062969289 +41,2008,2,0.065939903 +41,2008,1,0.059746183 +41,2008,0,0.047604153 +32,2008,30,0.000536439 +32,2008,29,0.001119078 +32,2008,28,0.001050992 +32,2008,27,0.002252348 +32,2008,26,0.002551752 +32,2008,25,0.00278514 +32,2008,24,0.003886113 +32,2008,23,0.004444057 +32,2008,22,0.006259337 +32,2008,21,0.006593911 +32,2008,20,0.008480972 +32,2008,19,0.009332536 +32,2008,18,0.008740826 +32,2008,17,0.008222677 +32,2008,16,0.008676593 +32,2008,15,0.015917067 +32,2008,14,0.016100662 +32,2008,13,0.025482023 +32,2008,12,0.023571521 +32,2008,11,0.035226064 +32,2008,10,0.031662292 +32,2008,9,0.049953858 +32,2008,8,0.063586445 +32,2008,7,0.074693248 +32,2008,6,0.081333438 +32,2008,5,0.083726054 +32,2008,4,0.090438736 +32,2008,3,0.08898614 +32,2008,2,0.086261464 +32,2008,1,0.081376974 +32,2008,0,0.07675124 +31,2008,30,0.000522927 +31,2008,29,0.000956881 +31,2008,28,0.00091779 +31,2008,27,0.002630112 +31,2008,26,0.002855066 +31,2008,25,0.003239125 +31,2008,24,0.004794951 +31,2008,23,0.00565378 +31,2008,22,0.008118213 +31,2008,21,0.007936612 +31,2008,20,0.010449241 +31,2008,19,0.012338901 +31,2008,18,0.012166906 +31,2008,17,0.013756036 +31,2008,16,0.016331084 +31,2008,15,0.020016667 +31,2008,14,0.028624779 +31,2008,13,0.031356509 +31,2008,12,0.032343503 +31,2008,11,0.042231322 +31,2008,10,0.048302306 +31,2008,9,0.057313908 +31,2008,8,0.06206063 +31,2008,7,0.064220211 +31,2008,6,0.07122862 +31,2008,5,0.072803785 +31,2008,4,0.078266438 +31,2008,3,0.077356008 +31,2008,2,0.073713622 +31,2008,1,0.071205776 +31,2008,0,0.066288291 +21,2008,30,0.001682285 +21,2008,29,0.00338308 +21,2008,28,0.004761944 +21,2008,27,0.00529353 +21,2008,26,0.004523806 +21,2008,25,0.004621065 +21,2008,24,0.006260109 +21,2008,23,0.007062897 +21,2008,22,0.008088237 +21,2008,21,0.009279892 +21,2008,20,0.010701933 +21,2008,19,0.013534273 +21,2008,18,0.016788003 +21,2008,17,0.020091474 +21,2008,16,0.023786801 +21,2008,15,0.028112624 +21,2008,14,0.032832114 +21,2008,13,0.041550386 +21,2008,12,0.039404886 +21,2008,11,0.045126253 +21,2008,10,0.047743635 +21,2008,9,0.058557878 +21,2008,8,0.067228054 +21,2008,7,0.065031721 +21,2008,6,0.06932312 +21,2008,5,0.067168665 +21,2008,4,0.064050906 +21,2008,3,0.062720712 +21,2008,2,0.059628134 +21,2008,1,0.059664921 +21,2008,0,0.051996661 +11,2008,30,0.003939963 +11,2008,29,0.007524842 +11,2008,28,0.008853762 +11,2008,27,0.012640292 +11,2008,26,0.013390229 +11,2008,25,0.01594867 +11,2008,24,0.010942778 +11,2008,23,0.01358227 +11,2008,22,0.009921431 +11,2008,21,0.00541503 +11,2008,20,0.005364679 +11,2008,19,0.00636603 +11,2008,18,0.008488702 +11,2008,17,0.009702362 +11,2008,16,0.012825232 +11,2008,15,0.01461828 +11,2008,14,0.017762841 +11,2008,13,0.015680124 +11,2008,12,0.030987275 +11,2008,11,0.029652129 +11,2008,10,0.024905011 +11,2008,9,0.029315543 +11,2008,8,0.038540508 +11,2008,7,0.048215197 +11,2008,6,0.056029301 +11,2008,5,0.064081916 +11,2008,4,0.075408712 +11,2008,3,0.087642406 +11,2008,2,0.100200869 +11,2008,1,0.10730126 +11,2008,0,0.114752353 +62,2009,30,0.002301822 +62,2009,29,0.004413758 +62,2009,28,0.006456601 +62,2009,27,0.005570307 +62,2009,26,0.007111545 +62,2009,25,0.006314882 +62,2009,24,0.005898558 +62,2009,23,0.001280905 +62,2009,22,0.003845453 +62,2009,21,0.00260468 +62,2009,20,0.003761987 +62,2009,19,0.003911097 +62,2009,18,0.004637747 +62,2009,17,0.005457382 +62,2009,16,0.009496226 +62,2009,15,0.013163509 +62,2009,14,0.021659149 +62,2009,13,0.024110905 +62,2009,12,0.021933528 +62,2009,11,0.038256973 +62,2009,10,0.058078413 +62,2009,9,0.078131979 +62,2009,8,0.050647664 +62,2009,7,0.045545012 +62,2009,6,0.06109556 +62,2009,5,0.06170751 +62,2009,4,0.102868971 +62,2009,3,0.110939881 +62,2009,2,0.146599713 +62,2009,1,0.042519594 +62,2009,0,0.049678688 +61,2009,30,0.001867938 +61,2009,29,0.002104107 +61,2009,28,0.010306766 +61,2009,27,0.008662415 +61,2009,26,0.00828516 +61,2009,25,0.01482728 +61,2009,24,0.017457279 +61,2009,23,0.022851231 +61,2009,22,0.023225363 +61,2009,21,0.030255797 +61,2009,20,0.032051301 +61,2009,19,0.033890147 +61,2009,18,0.029124306 +61,2009,17,0.031527495 +61,2009,16,0.039842536 +61,2009,15,0.054401902 +61,2009,14,0.063580923 +61,2009,13,0.05678714 +61,2009,12,0.038190657 +61,2009,11,0.045841397 +61,2009,10,0.04890287 +61,2009,9,0.054988023 +61,2009,8,0.044815834 +61,2009,7,0.029201031 +61,2009,6,0.031987146 +61,2009,5,0.031295769 +61,2009,4,0.046958008 +61,2009,3,0.047530699 +61,2009,2,0.061428752 +61,2009,1,0.019306505 +61,2009,0,0.01850422 +54,2009,30,0.001297732 +54,2009,29,0.003730257 +54,2009,28,0.007832759 +54,2009,27,0.009446297 +54,2009,26,0.012629018 +54,2009,25,0.01731813 +54,2009,24,0.017038172 +54,2009,23,0.017770897 +54,2009,22,0.019444378 +54,2009,21,0.021047312 +54,2009,20,0.024394497 +54,2009,19,0.020578702 +54,2009,18,0.016464213 +54,2009,17,0.020789086 +54,2009,16,0.023769705 +54,2009,15,0.032874094 +54,2009,14,0.034657557 +54,2009,13,0.028841613 +54,2009,12,0.042738292 +54,2009,11,0.027719586 +54,2009,10,0.048728321 +54,2009,9,0.050193793 +54,2009,8,0.053840356 +54,2009,7,0.055573979 +54,2009,6,0.058101533 +54,2009,5,0.06386294 +54,2009,4,0.063797945 +54,2009,3,0.063745554 +54,2009,2,0.061607793 +54,2009,1,0.046620045 +54,2009,0,0.033545445 +53,2009,30,0.001438538 +53,2009,29,0.001667329 +53,2009,28,0.004482407 +53,2009,27,0.004583634 +53,2009,26,0.004612687 +53,2009,25,0.006331723 +53,2009,24,0.006570003 +53,2009,23,0.00849366 +53,2009,22,0.006051386 +53,2009,21,0.016721478 +53,2009,20,0.050685176 +53,2009,19,0.013459996 +53,2009,18,0.021212842 +53,2009,17,0.01436265 +53,2009,16,0.073715356 +53,2009,15,0.029520633 +53,2009,14,0.04191562 +53,2009,13,0.020830421 +53,2009,12,0.018850596 +53,2009,11,0.021293402 +53,2009,10,0.120628836 +53,2009,9,0.148141856 +53,2009,8,0.059361211 +53,2009,7,0.027130091 +53,2009,6,0.029035505 +53,2009,5,0.033160894 +53,2009,4,0.044407644 +53,2009,3,0.05853793 +53,2009,2,0.06398924 +53,2009,1,0.032371322 +53,2009,0,0.016435933 +52,2009,30,0.001090533 +52,2009,29,0.002768692 +52,2009,28,0.009297089 +52,2009,27,0.009455871 +52,2009,26,0.009073107 +52,2009,25,0.013325589 +52,2009,24,0.014458762 +52,2009,23,0.020880809 +52,2009,22,0.017021543 +52,2009,21,0.019755842 +52,2009,20,0.021891054 +52,2009,19,0.023650741 +52,2009,18,0.018454882 +52,2009,17,0.020834744 +52,2009,16,0.024860681 +52,2009,15,0.034604994 +52,2009,14,0.04443712 +52,2009,13,0.033412817 +52,2009,12,0.045625993 +52,2009,11,0.032941511 +52,2009,10,0.059479425 +52,2009,9,0.069985537 +52,2009,8,0.045583426 +52,2009,7,0.043259462 +52,2009,6,0.045694959 +52,2009,5,0.053455719 +52,2009,4,0.058672672 +52,2009,3,0.069691517 +52,2009,2,0.066269882 +52,2009,1,0.048092424 +52,2009,0,0.021972601 +51,2009,30,0.00095006 +51,2009,29,0.002114075 +51,2009,28,0.006218182 +51,2009,27,0.005326938 +51,2009,26,0.005621099 +51,2009,25,0.008150754 +51,2009,24,0.008747679 +51,2009,23,0.009895995 +51,2009,22,0.013190025 +51,2009,21,0.015087397 +51,2009,20,0.025429534 +51,2009,19,0.017406824 +51,2009,18,0.02415753 +51,2009,17,0.016112782 +51,2009,16,0.018811615 +51,2009,15,0.038396054 +51,2009,14,0.05526099 +51,2009,13,0.042174415 +51,2009,12,0.032829872 +51,2009,11,0.063680129 +51,2009,10,0.070268955 +51,2009,9,0.049831943 +51,2009,8,0.040128147 +51,2009,7,0.035249762 +51,2009,6,0.043839209 +51,2009,5,0.042878654 +51,2009,4,0.072621571 +51,2009,3,0.07673138 +51,2009,2,0.09662717 +51,2009,1,0.028421216 +51,2009,0,0.033840043 +43,2009,30,0.001224639 +43,2009,29,0.01057143 +43,2009,28,0.013662288 +43,2009,27,0.013187801 +43,2009,26,0.010745285 +43,2009,25,0.016197828 +43,2009,24,0.019431204 +43,2009,23,0.015682436 +43,2009,22,0.015022377 +43,2009,21,0.016600338 +43,2009,20,0.014744294 +43,2009,19,0.027487483 +43,2009,18,0.026774038 +43,2009,17,0.024261547 +43,2009,16,0.027718947 +43,2009,15,0.024928994 +43,2009,14,0.038683653 +43,2009,13,0.03741573 +43,2009,12,0.037845994 +43,2009,11,0.031025899 +43,2009,10,0.04679205 +43,2009,9,0.050718655 +43,2009,8,0.045603053 +43,2009,7,0.055799411 +43,2009,6,0.050492476 +43,2009,5,0.056420637 +43,2009,4,0.057441669 +43,2009,3,0.066226468 +43,2009,2,0.056930791 +43,2009,1,0.052647607 +43,2009,0,0.037714977 +42,2009,30,0.001566574 +42,2009,29,0.010333331 +42,2009,28,0.013416758 +42,2009,27,0.013543866 +42,2009,26,0.015110962 +42,2009,25,0.012090473 +42,2009,24,0.01801499 +42,2009,23,0.013643821 +42,2009,22,0.013667753 +42,2009,21,0.017713132 +42,2009,20,0.023905196 +42,2009,19,0.028844961 +42,2009,18,0.023270824 +42,2009,17,0.024220726 +42,2009,16,0.026967624 +42,2009,15,0.03157756 +42,2009,14,0.037443377 +42,2009,13,0.045101158 +42,2009,12,0.041288533 +42,2009,11,0.036687994 +42,2009,10,0.040511616 +42,2009,9,0.041707817 +42,2009,8,0.058333508 +42,2009,7,0.052448953 +42,2009,6,0.054330266 +42,2009,5,0.053777308 +42,2009,4,0.063374268 +42,2009,3,0.043759575 +42,2009,2,0.053836242 +42,2009,1,0.058070835 +42,2009,0,0.03144 +41,2009,30,0.00142265 +41,2009,29,0.011187129 +41,2009,28,0.015588273 +41,2009,27,0.014988192 +41,2009,26,0.012064042 +41,2009,25,0.016277802 +41,2009,24,0.020384662 +41,2009,23,0.015795418 +41,2009,22,0.015801158 +41,2009,21,0.017523324 +41,2009,20,0.018580156 +41,2009,19,0.022674881 +41,2009,18,0.022590013 +41,2009,17,0.022178477 +41,2009,16,0.026936913 +41,2009,15,0.030147934 +41,2009,14,0.036614496 +41,2009,13,0.030018247 +41,2009,12,0.031537825 +41,2009,11,0.030438421 +41,2009,10,0.046543754 +41,2009,9,0.049285414 +41,2009,8,0.053050257 +41,2009,7,0.056216407 +41,2009,6,0.055843278 +41,2009,5,0.059667857 +41,2009,4,0.063015468 +41,2009,3,0.065164885 +41,2009,2,0.061411022 +41,2009,1,0.048930652 +41,2009,0,0.028120992 +32,2009,30,0.000548242 +32,2009,29,0.00052057 +32,2009,28,0.001751305 +32,2009,27,0.002093463 +32,2009,26,0.002403776 +32,2009,25,0.003685491 +32,2009,24,0.004085812 +32,2009,23,0.006032551 +32,2009,22,0.006328393 +32,2009,21,0.008143582 +32,2009,20,0.008959327 +32,2009,19,0.008361303 +32,2009,18,0.007853306 +32,2009,17,0.008251987 +32,2009,16,0.015240358 +32,2009,15,0.015383326 +32,2009,14,0.024430482 +32,2009,13,0.022640631 +32,2009,12,0.033855529 +32,2009,11,0.030429036 +32,2009,10,0.048090098 +32,2009,9,0.061141895 +32,2009,8,0.071878179 +32,2009,7,0.078168032 +32,2009,6,0.08056757 +32,2009,5,0.086943134 +32,2009,4,0.085607787 +32,2009,3,0.082839242 +32,2009,2,0.078467105 +32,2009,1,0.074050954 +32,2009,0,0.041247534 +31,2009,30,0.000470602 +31,2009,29,0.00045675 +31,2009,28,0.002184355 +31,2009,27,0.002450535 +31,2009,26,0.002896448 +31,2009,25,0.004598726 +31,2009,24,0.005314008 +31,2009,23,0.007873218 +31,2009,22,0.007658607 +31,2009,21,0.010093344 +31,2009,20,0.011918886 +31,2009,19,0.011716362 +31,2009,18,0.013245394 +31,2009,17,0.015693849 +31,2009,16,0.019280944 +31,2009,15,0.027593769 +31,2009,14,0.030216001 +31,2009,13,0.031301909 +31,2009,12,0.040786192 +31,2009,11,0.046660956 +31,2009,10,0.055377447 +31,2009,9,0.059938313 +31,2009,8,0.061918872 +31,2009,7,0.068711424 +31,2009,6,0.07031045 +31,2009,5,0.075536833 +31,2009,4,0.07462882 +31,2009,3,0.07105541 +31,2009,2,0.069048589 +31,2009,1,0.064315869 +31,2009,0,0.036747116 +21,2009,30,0.002063212 +21,2009,29,0.003650051 +21,2009,28,0.004462125 +21,2009,27,0.003921026 +21,2009,26,0.004208055 +21,2009,25,0.005256244 +21,2009,24,0.006851824 +21,2009,23,0.007518014 +21,2009,22,0.008575211 +21,2009,21,0.010121742 +21,2009,20,0.012943488 +21,2009,19,0.01604919 +21,2009,18,0.019116997 +21,2009,17,0.022742811 +21,2009,16,0.026952581 +21,2009,15,0.031484693 +21,2009,14,0.039855443 +21,2009,13,0.039807571 +21,2009,12,0.042993571 +21,2009,11,0.045220884 +21,2009,10,0.05572607 +21,2009,9,0.064073783 +21,2009,8,0.061501225 +21,2009,7,0.065230692 +21,2009,6,0.063732369 +21,2009,5,0.062079613 +21,2009,4,0.062007928 +21,2009,3,0.058748365 +21,2009,2,0.060378394 +21,2009,1,0.052632852 +21,2009,0,0.040093977 +11,2009,30,0.002663349 +11,2009,29,0.003149594 +11,2009,28,0.006218476 +11,2009,27,0.005853445 +11,2009,26,0.007088109 +11,2009,25,0.008583423 +11,2009,24,0.003331256 +11,2009,23,0.009862023 +11,2009,22,0.004903991 +11,2009,21,0.00489107 +11,2009,20,0.005788905 +11,2009,19,0.007811486 +11,2009,18,0.009617545 +11,2009,17,0.012132479 +11,2009,16,0.014502733 +11,2009,15,0.017736025 +11,2009,14,0.015499945 +11,2009,13,0.020584268 +11,2009,12,0.029644951 +11,2009,11,0.024573843 +11,2009,10,0.028839382 +11,2009,9,0.03806849 +11,2009,8,0.047668014 +11,2009,7,0.055937051 +11,2009,6,0.063672542 +11,2009,5,0.074350197 +11,2009,4,0.087463169 +11,2009,3,0.099916777 +11,2009,2,0.105891179 +11,2009,1,0.117940203 +11,2009,0,0.065816086 +62,2010,30,0.002394252 +62,2010,29,0.00371133 +62,2010,28,0.003721252 +62,2010,27,0.004024247 +62,2010,26,0.004665312 +62,2010,25,0.003525224 +62,2010,24,0.001285448 +62,2010,23,0.003225618 +62,2010,22,0.001978752 +62,2010,21,0.00315089 +62,2010,20,0.003201056 +62,2010,19,0.004107188 +62,2010,18,0.005297219 +62,2010,17,0.009079437 +62,2010,16,0.012933853 +62,2010,15,0.02134482 +62,2010,14,0.023799043 +62,2010,13,0.022011308 +62,2010,12,0.037882792 +62,2010,11,0.057708994 +62,2010,10,0.077422856 +62,2010,9,0.049623111 +62,2010,8,0.043719292 +62,2010,7,0.059465779 +62,2010,6,0.0602186 +62,2010,5,0.100294646 +62,2010,4,0.107751436 +62,2010,3,0.142314132 +62,2010,2,0.042670375 +62,2010,1,0.049854856 +62,2010,0,0.037616882 +61,2010,30,0.001065077 +61,2010,29,0.009559781 +61,2010,28,0.008259321 +61,2010,27,0.007354311 +61,2010,26,0.014998605 +61,2010,25,0.017460249 +61,2010,24,0.024249283 +61,2010,23,0.023014586 +61,2010,22,0.030697116 +61,2010,21,0.032871058 +61,2010,20,0.03363625 +61,2010,19,0.028196862 +61,2010,18,0.030069907 +61,2010,17,0.039066095 +61,2010,16,0.053443333 +61,2010,15,0.063390392 +61,2010,14,0.056085974 +61,2010,13,0.040527184 +61,2010,12,0.045145783 +61,2010,11,0.048628638 +61,2010,10,0.054108936 +61,2010,9,0.04258205 +61,2010,8,0.025085841 +61,2010,7,0.029592741 +61,2010,6,0.030066185 +61,2010,5,0.046328317 +61,2010,4,0.047420394 +61,2010,3,0.06182859 +61,2010,2,0.020487688 +61,2010,1,0.019636319 +61,2010,0,0.015143133 +54,2010,30,0.002377117 +54,2010,29,0.006379942 +54,2010,28,0.00836766 +54,2010,27,0.01152122 +54,2010,26,0.016701703 +54,2010,25,0.015557968 +54,2010,24,0.017662974 +54,2010,23,0.018745649 +54,2010,22,0.020157944 +54,2010,21,0.023293117 +54,2010,20,0.019071876 +54,2010,19,0.015077004 +54,2010,18,0.019347589 +54,2010,17,0.022229487 +54,2010,16,0.031173421 +54,2010,15,0.032905318 +54,2010,14,0.027404096 +54,2010,13,0.042478743 +54,2010,12,0.026553303 +54,2010,11,0.04731186 +54,2010,10,0.048601524 +54,2010,9,0.051965864 +54,2010,8,0.053602984 +54,2010,7,0.056615015 +54,2010,6,0.061717816 +54,2010,5,0.062312029 +54,2010,4,0.061792648 +54,2010,3,0.059625189 +54,2010,2,0.046336923 +54,2010,1,0.033341724 +54,2010,0,0.039770292 +53,2010,30,0.001063234 +53,2010,29,0.003861263 +53,2010,28,0.004132404 +53,2010,27,0.003972819 +53,2010,26,0.006003097 +53,2010,25,0.006091523 +53,2010,24,0.008671164 +53,2010,23,0.005826434 +53,2010,22,0.016694836 +53,2010,21,0.051415716 +53,2010,20,0.013244609 +53,2010,19,0.021152161 +53,2010,18,0.014017122 +53,2010,17,0.074822035 +53,2010,16,0.028894413 +53,2010,15,0.039388399 +53,2010,14,0.020389087 +53,2010,13,0.019244544 +53,2010,12,0.020338345 +53,2010,11,0.122337972 +53,2010,10,0.146904394 +53,2010,9,0.059167382 +53,2010,8,0.025741737 +53,2010,7,0.028798834 +53,2010,6,0.033057784 +53,2010,5,0.044494325 +53,2010,4,0.055712519 +53,2010,3,0.06046473 +53,2010,2,0.033047831 +53,2010,1,0.016779418 +53,2010,0,0.014269869 +52,2010,30,0.001772199 +52,2010,29,0.008309279 +52,2010,28,0.008721808 +52,2010,27,0.008236613 +52,2010,26,0.012941924 +52,2010,25,0.013632818 +52,2010,24,0.021170281 +52,2010,23,0.016501278 +52,2010,22,0.019235939 +52,2010,21,0.021513057 +52,2010,20,0.022907835 +52,2010,19,0.017582783 +52,2010,18,0.019547166 +52,2010,17,0.023976584 +52,2010,16,0.033652351 +52,2010,15,0.043629212 +52,2010,14,0.032359758 +52,2010,13,0.046258509 +52,2010,12,0.032234382 +52,2010,11,0.059171898 +52,2010,10,0.069567122 +52,2010,9,0.044544771 +52,2010,8,0.041693316 +52,2010,7,0.044989753 +52,2010,6,0.05228313 +52,2010,5,0.058152564 +52,2010,4,0.068699368 +52,2010,3,0.06488627 +52,2010,2,0.048759132 +52,2010,1,0.022277209 +52,2010,0,0.02079169 +51,2010,30,0.001313245 +51,2010,29,0.005204155 +51,2010,28,0.004668539 +51,2010,27,0.004489487 +51,2010,26,0.007581438 +51,2010,25,0.008041131 +51,2010,24,0.009957119 +51,2010,23,0.01279786 +51,2010,22,0.014755699 +51,2010,21,0.025215156 +51,2010,20,0.016887074 +51,2010,19,0.023641442 +51,2010,18,0.015470864 +51,2010,17,0.017974836 +51,2010,16,0.037534453 +51,2010,15,0.053933335 +51,2010,14,0.041317162 +51,2010,13,0.033032651 +51,2010,12,0.062508639 +51,2010,11,0.069806972 +51,2010,10,0.049098708 +51,2010,9,0.038512709 +51,2010,8,0.032790113 +51,2010,7,0.042400756 +51,2010,6,0.041776987 +51,2010,5,0.070484236 +51,2010,4,0.07489507 +51,2010,3,0.095599087 +51,2010,2,0.028596764 +51,2010,1,0.034049061 +51,2010,0,0.025665249 +43,2010,30,0.009180766 +43,2010,29,0.01243952 +43,2010,28,0.012306651 +43,2010,27,0.00981226 +43,2010,26,0.015765104 +43,2010,25,0.013710664 +43,2010,24,0.015845473 +43,2010,23,0.013917514 +43,2010,22,0.015525349 +43,2010,21,0.013993302 +43,2010,20,0.02632037 +43,2010,19,0.02578884 +43,2010,18,0.023199519 +43,2010,17,0.026852771 +43,2010,16,0.023900457 +43,2010,15,0.038054141 +43,2010,14,0.035864209 +43,2010,13,0.038239446 +43,2010,12,0.029447136 +43,2010,11,0.045781897 +43,2010,10,0.04951365 +43,2010,9,0.044755582 +43,2010,8,0.054275319 +43,2010,7,0.04936482 +43,2010,6,0.055245163 +43,2010,5,0.05668195 +43,2010,4,0.065227305 +43,2010,3,0.055697424 +43,2010,2,0.053194939 +43,2010,1,0.038107067 +43,2010,0,0.031991392 +42,2010,30,0.009046603 +42,2010,29,0.012115026 +42,2010,28,0.012740753 +42,2010,27,0.014142505 +42,2010,26,0.011842685 +42,2010,25,0.012397983 +42,2010,24,0.013809678 +42,2010,23,0.012605758 +42,2010,22,0.016636882 +42,2010,21,0.022892451 +42,2010,20,0.028104211 +42,2010,19,0.022411138 +42,2010,18,0.023369757 +42,2010,17,0.026249902 +42,2010,16,0.030581529 +42,2010,15,0.036210774 +42,2010,14,0.043577401 +42,2010,13,0.041790444 +42,2010,12,0.035481693 +42,2010,11,0.039496491 +42,2010,10,0.040521434 +42,2010,9,0.057351627 +42,2010,8,0.051084272 +42,2010,7,0.052982718 +42,2010,6,0.052505379 +42,2010,5,0.062509702 +42,2010,4,0.042835562 +42,2010,3,0.05299694 +42,2010,2,0.058776756 +42,2010,1,0.031822191 +42,2010,0,0.031109754 +41,2010,30,0.009773523 +41,2010,29,0.014206532 +41,2010,28,0.014039654 +41,2010,27,0.011024812 +41,2010,26,0.015832955 +41,2010,25,0.014262027 +41,2010,24,0.01593668 +41,2010,23,0.014502305 +41,2010,22,0.01625679 +41,2010,21,0.017730301 +41,2010,20,0.021418538 +41,2010,19,0.021477685 +41,2010,18,0.021055005 +41,2010,17,0.025974967 +41,2010,16,0.029069185 +41,2010,15,0.035634761 +41,2010,14,0.0287076 +41,2010,13,0.031819875 +41,2010,12,0.029127171 +41,2010,11,0.045601738 +41,2010,10,0.048050529 +41,2010,9,0.051917328 +41,2010,8,0.054748752 +41,2010,7,0.055019884 +41,2010,6,0.058735256 +41,2010,5,0.062236882 +41,2010,4,0.064066647 +41,2010,3,0.060188943 +41,2010,2,0.04936825 +41,2010,1,0.028372484 +41,2010,0,0.033842939 +32,2010,30,0 +32,2010,29,0.001235483 +32,2010,28,0.001607649 +32,2010,27,0.001983251 +32,2010,26,0.003284593 +32,2010,25,0.003904385 +32,2010,24,0.005597805 +32,2010,23,0.006022474 +32,2010,22,0.007749759 +32,2010,21,0.008522257 +32,2010,20,0.007925351 +32,2010,19,0.007428938 +32,2010,18,0.007778255 +32,2010,17,0.014449693 +32,2010,16,0.014556937 +32,2010,15,0.023190767 +32,2010,14,0.021494993 +32,2010,13,0.032254027 +32,2010,12,0.028949748 +32,2010,11,0.045825102 +32,2010,10,0.058195081 +32,2010,9,0.068463245 +32,2010,8,0.074360055 +32,2010,7,0.076696338 +32,2010,6,0.082721691 +32,2010,5,0.081507724 +32,2010,4,0.078726302 +32,2010,3,0.074483345 +32,2010,2,0.070708776 +32,2010,1,0.039346732 +32,2010,0,0.051029246 +31,2010,30,0 +31,2010,29,0.001715987 +31,2010,28,0.00201278 +31,2010,27,0.00250976 +31,2010,26,0.00421612 +31,2010,25,0.005107985 +31,2010,24,0.007420375 +31,2010,23,0.007327084 +31,2010,22,0.009661696 +31,2010,21,0.011407138 +31,2010,20,0.011179104 +31,2010,19,0.012632905 +31,2010,18,0.014943154 +31,2010,17,0.018394816 +31,2010,16,0.026345305 +31,2010,15,0.028837198 +31,2010,14,0.029890442 +31,2010,13,0.039119152 +31,2010,12,0.044634067 +31,2010,11,0.052981505 +31,2010,10,0.057319356 +31,2010,9,0.059114261 +31,2010,8,0.065628456 +31,2010,7,0.067176121 +31,2010,6,0.072170684 +31,2010,5,0.071274914 +31,2010,4,0.067798214 +31,2010,3,0.065879613 +31,2010,2,0.06177396 +31,2010,1,0.035259659 +31,2010,0,0.046268192 +21,2010,30,0.001910496 +21,2010,29,0.003118651 +21,2010,28,0.002916472 +21,2010,27,0.003451906 +21,2010,26,0.004814911 +21,2010,25,0.005679739 +21,2010,24,0.007342936 +21,2010,23,0.008062756 +21,2010,22,0.009718825 +21,2010,21,0.012504808 +21,2010,20,0.015369991 +21,2010,19,0.018323647 +21,2010,18,0.021667445 +21,2010,17,0.025843661 +21,2010,16,0.030138796 +21,2010,15,0.03814666 +21,2010,14,0.037435128 +21,2010,13,0.044339208 +21,2010,12,0.042407518 +21,2010,11,0.052643185 +21,2010,10,0.060541031 +21,2010,9,0.057271503 +21,2010,8,0.060011314 +21,2010,7,0.059338417 +21,2010,6,0.057456891 +21,2010,5,0.060252595 +21,2010,4,0.058243058 +21,2010,3,0.059918362 +21,2010,2,0.054375381 +21,2010,1,0.041372872 +21,2010,0,0.045381836 +11,2010,30,6.86E-06 +11,2010,29,0.00262724 +11,2010,28,0.001670624 +11,2010,27,0.002156083 +11,2010,26,0.002947129 +11,2010,25,0.003297376 +11,2010,24,0.003905907 +11,2010,23,0.004710915 +11,2010,22,0.004752698 +11,2010,21,0.00561493 +11,2010,20,0.007574572 +11,2010,19,0.009344753 +11,2010,18,0.011802831 +11,2010,17,0.014106291 +11,2010,16,0.01730875 +11,2010,15,0.01504314 +11,2010,14,0.019970898 +11,2010,13,0.022787325 +11,2010,12,0.023824352 +11,2010,11,0.027912086 +11,2010,10,0.036928539 +11,2010,9,0.046260845 +11,2010,8,0.054586413 +11,2010,7,0.061972632 +11,2010,6,0.072395613 +11,2010,5,0.085334026 +11,2010,4,0.097444784 +11,2010,3,0.102852086 +11,2010,2,0.115599466 +11,2010,1,0.065236971 +11,2010,0,0.060023866 +11,2012,0,0.067607906 +11,2012,1,0.058416278 +11,2012,2,0.055008116 +11,2012,3,0.056972422 +11,2012,4,0.10095375 +11,2012,5,0.089821847 +11,2012,6,0.085100367 +11,2012,7,0.074523882 +11,2012,8,0.063224229 +11,2012,9,0.054121624 +11,2012,10,0.047671408 +11,2012,11,0.040400023 +11,2012,12,0.032250002 +11,2012,13,0.024375733 +11,2012,14,0.020799844 +11,2012,15,0.019900291 +11,2012,16,0.017440758 +11,2012,17,0.013137315 +11,2012,18,0.01511608 +11,2012,19,0.012319218 +11,2012,20,0.010307578 +11,2012,21,0.008160882 +11,2012,22,0.006614933 +11,2012,23,0.004903565 +11,2012,24,0.004150587 +11,2012,25,0.004101589 +11,2012,26,0.00340787 +11,2012,27,0.002868474 +11,2012,28,0.00256318 +11,2012,29,0.001873648 +11,2012,30,0.001886653 +21,2012,0,0.067771057 +21,2012,1,0.041895088 +21,2012,2,0.047072797 +21,2012,3,0.042880734 +21,2012,4,0.054163167 +21,2012,5,0.059236265 +21,2012,6,0.05554649 +21,2012,7,0.055369763 +21,2012,8,0.051625175 +21,2012,9,0.053752469 +21,2012,10,0.053390615 +21,2012,11,0.051585605 +21,2012,12,0.055252798 +21,2012,13,0.046338254 +21,2012,14,0.038783915 +21,2012,15,0.036150597 +21,2012,16,0.029939364 +21,2012,17,0.030617466 +21,2012,18,0.023917426 +21,2012,19,0.020395429 +21,2012,20,0.017003901 +21,2012,21,0.014350826 +21,2012,22,0.012040721 +21,2012,23,0.009943301 +21,2012,24,0.007748895 +21,2012,25,0.006409712 +21,2012,26,0.005195151 +21,2012,27,0.004222145 +21,2012,28,0.003345086 +21,2012,29,0.001998307 +21,2012,30,0.00205748 +31,2012,0,0.07477075 +31,2012,1,0.049024883 +31,2012,2,0.043490731 +31,2012,3,0.033138036 +31,2012,4,0.057584014 +31,2012,5,0.060953532 +31,2012,6,0.06221924 +31,2012,7,0.064833874 +31,2012,8,0.065024552 +31,2012,9,0.059934062 +31,2012,10,0.057985681 +31,2012,11,0.051735629 +31,2012,12,0.049701563 +31,2012,13,0.045542116 +31,2012,14,0.038018746 +31,2012,15,0.032450483 +31,2012,16,0.024561926 +31,2012,17,0.023487939 +31,2012,18,0.021290211 +31,2012,19,0.014763541 +31,2012,20,0.011914877 +31,2012,21,0.010020868 +31,2012,22,0.008820115 +31,2012,23,0.008967685 +31,2012,24,0.007558528 +31,2012,25,0.005715496 +31,2012,26,0.005774592 +31,2012,27,0.003960589 +31,2012,28,0.003265475 +31,2012,29,0.00193817 +31,2012,30,0.001552093 +32,2012,0,0.074134722 +32,2012,1,0.054610883 +32,2012,2,0.047251681 +32,2012,3,0.036428498 +32,2012,4,0.064931248 +32,2012,5,0.067887676 +32,2012,6,0.071172175 +32,2012,7,0.073037849 +32,2012,8,0.07342093 +32,2012,9,0.067408917 +32,2012,10,0.064722042 +32,2012,11,0.059025393 +32,2012,12,0.04970945 +32,2012,13,0.038803982 +32,2012,14,0.02429182 +32,2012,15,0.026357222 +32,2012,16,0.017400083 +32,2012,17,0.018607623 +32,2012,18,0.011588592 +32,2012,19,0.011424511 +32,2012,20,0.006109608 +32,2012,21,0.005805141 +32,2012,22,0.006159844 +32,2012,23,0.006599974 +32,2012,24,0.005972498 +32,2012,25,0.004627875 +32,2012,26,0.004291382 +32,2012,27,0.002982268 +32,2012,28,0.002506103 +32,2012,29,0.001508764 +32,2012,30,0.001221227 +41,2012,0,0.049423204 +41,2012,1,0.04532892 +41,2012,2,0.040020655 +41,2012,3,0.03355162 +41,2012,4,0.043561673 +41,2012,5,0.057083923 +41,2012,6,0.058637491 +41,2012,7,0.060620716 +41,2012,8,0.058898327 +41,2012,9,0.054587797 +41,2012,10,0.051128004 +41,2012,11,0.049164369 +41,2012,12,0.046754507 +41,2012,13,0.045451247 +41,2012,14,0.034444068 +41,2012,15,0.028024951 +41,2012,16,0.023170437 +41,2012,17,0.030113892 +41,2012,18,0.023186782 +41,2012,19,0.019086366 +41,2012,20,0.014058702 +41,2012,21,0.01593108 +41,2012,22,0.017878843 +41,2012,23,0.017732876 +41,2012,24,0.016498718 +41,2012,25,0.017149568 +41,2012,26,0.014385653 +41,2012,27,0.012564117 +41,2012,28,0.009886365 +41,2012,29,0.003901666 +41,2012,30,0.007748498 +42,2012,0,0.049424643 +42,2012,1,0.059713962 +42,2012,2,0.036553874 +42,2012,3,0.037390986 +42,2012,4,0.052738033 +42,2012,5,0.051227215 +42,2012,6,0.036948125 +42,2012,7,0.057741522 +42,2012,8,0.047341785 +42,2012,9,0.046390828 +42,2012,10,0.04702339 +42,2012,11,0.054161643 +42,2012,12,0.036642089 +42,2012,13,0.035523301 +42,2012,14,0.04169089 +42,2012,15,0.038093542 +42,2012,16,0.035088606 +42,2012,17,0.028755488 +42,2012,18,0.025075796 +42,2012,19,0.020798889 +42,2012,20,0.018057166 +42,2012,21,0.018264773 +42,2012,22,0.026732849 +42,2012,23,0.02033759 +42,2012,24,0.016010189 +42,2012,25,0.01481173 +42,2012,26,0.012477953 +42,2012,27,0.01070759 +42,2012,28,0.008346989 +42,2012,29,0.007915678 +42,2012,30,0.008017023 +43,2012,0,0.049424433 +43,2012,1,0.035027992 +43,2012,2,0.038290248 +43,2012,3,0.045610051 +43,2012,4,0.050297968 +43,2012,5,0.052115505 +43,2012,6,0.061243627 +43,2012,7,0.054563477 +43,2012,8,0.053752871 +43,2012,9,0.046283429 +43,2012,10,0.048609992 +43,2012,11,0.044361311 +43,2012,12,0.048268595 +43,2012,13,0.044661588 +43,2012,14,0.035245048 +43,2012,15,0.032832137 +43,2012,16,0.028314115 +43,2012,17,0.036167997 +43,2012,18,0.017454177 +43,2012,19,0.020843301 +43,2012,20,0.016812058 +43,2012,21,0.021460238 +43,2012,22,0.024239109 +43,2012,23,0.013829709 +43,2012,24,0.016444719 +43,2012,25,0.016657764 +43,2012,26,0.014539022 +43,2012,27,0.012483248 +43,2012,28,0.009639632 +43,2012,29,0.003521427 +43,2012,30,0.007005089 +51,2012,0,0.05882363 +51,2012,1,0.031880329 +51,2012,2,0.025260556 +51,2012,3,0.033512171 +51,2012,4,0.0260194 +51,2012,5,0.090901742 +51,2012,6,0.068068577 +51,2012,7,0.064173485 +51,2012,8,0.038437314 +51,2012,9,0.037755482 +51,2012,10,0.027368556 +51,2012,11,0.033663341 +51,2012,12,0.046006208 +51,2012,13,0.065890608 +51,2012,14,0.060565576 +51,2012,15,0.029272304 +51,2012,16,0.037973008 +51,2012,17,0.048730128 +51,2012,18,0.034209197 +51,2012,19,0.015576522 +51,2012,20,0.013865235 +51,2012,21,0.021702007 +51,2012,22,0.015397102 +51,2012,23,0.02372144 +51,2012,24,0.013652729 +51,2012,25,0.012243227 +51,2012,26,0.006260006 +51,2012,27,0.006290199 +51,2012,28,0.005159734 +51,2012,29,0.002322216 +51,2012,30,0.005296028 +52,2012,0,0.058898249 +52,2012,1,0.03343037 +52,2012,2,0.020584782 +52,2012,3,0.022055517 +52,2012,4,0.04573252 +52,2012,5,0.05990305 +52,2012,6,0.063217586 +52,2012,7,0.054742439 +52,2012,8,0.047890553 +52,2012,9,0.041399056 +52,2012,10,0.037151615 +52,2012,11,0.040232164 +52,2012,12,0.065705414 +52,2012,13,0.055575805 +52,2012,14,0.031416964 +52,2012,15,0.043187985 +52,2012,16,0.028869444 +52,2012,17,0.039606818 +52,2012,18,0.030126874 +52,2012,19,0.02097772 +52,2012,20,0.016637136 +52,2012,21,0.015064355 +52,2012,22,0.020468387 +52,2012,23,0.019629107 +52,2012,24,0.01744834 +52,2012,25,0.01587944 +52,2012,26,0.014231019 +52,2012,27,0.012169106 +52,2012,28,0.010491936 +52,2012,29,0.006216131 +52,2012,30,0.011060174 +53,2012,0,0.058907974 +53,2012,1,0.022668785 +53,2012,2,0.014300461 +53,2012,3,0.01681539 +53,2012,4,0.029601449 +53,2012,5,0.051754051 +53,2012,6,0.046110558 +53,2012,7,0.042732723 +53,2012,8,0.031525859 +53,2012,9,0.026842272 +53,2012,10,0.022561487 +53,2012,11,0.055680574 +53,2012,12,0.137391114 +53,2012,13,0.11908366 +53,2012,14,0.020064764 +53,2012,15,0.016483587 +53,2012,16,0.018513408 +53,2012,17,0.031701046 +53,2012,18,0.026090843 +53,2012,19,0.072547131 +53,2012,20,0.012771618 +53,2012,21,0.019864503 +53,2012,22,0.012247746 +53,2012,23,0.049642399 +53,2012,24,0.015819707 +53,2012,25,0.005675367 +53,2012,26,0.005898416 +53,2012,27,0.005130139 +53,2012,28,0.004426538 +53,2012,29,0.002549733 +53,2012,30,0.004596578 +54,2012,0,0.058831437 +54,2012,1,0.043830658 +54,2012,2,0.038697848 +54,2012,3,0.032442633 +54,2012,4,0.042121824 +54,2012,5,0.055025327 +54,2012,6,0.056346404 +54,2012,7,0.058252137 +54,2012,8,0.056419789 +54,2012,9,0.052290651 +54,2012,10,0.048976454 +54,2012,11,0.046947493 +54,2012,12,0.044646287 +54,2012,13,0.043265014 +54,2012,14,0.02543519 +54,2012,15,0.039161671 +54,2012,16,0.024171634 +54,2012,17,0.028519952 +54,2012,18,0.0271079 +54,2012,19,0.018654416 +54,2012,20,0.016312019 +54,2012,21,0.012133948 +54,2012,22,0.015893101 +54,2012,23,0.020465685 +54,2012,24,0.018151601 +54,2012,25,0.01772922 +54,2012,26,0.013029746 +54,2012,27,0.013833238 +54,2012,28,0.014032068 +54,2012,29,0.009061017 +54,2012,30,0.008213843 +61,2012,0,0.044640703 +61,2012,1,0.022087065 +61,2012,2,0.016527956 +61,2012,3,0.021432039 +61,2012,4,0.019321073 +61,2012,5,0.062753624 +61,2012,6,0.046229075 +61,2012,7,0.044987433 +61,2012,8,0.028175657 +61,2012,9,0.025119143 +61,2012,10,0.019518903 +61,2012,11,0.037934312 +61,2012,12,0.051957972 +61,2012,13,0.046361205 +61,2012,14,0.047075818 +61,2012,15,0.038223985 +61,2012,16,0.052978108 +61,2012,17,0.059797339 +61,2012,18,0.049479229 +61,2012,19,0.035880187 +61,2012,20,0.027331899 +61,2012,21,0.025378828 +61,2012,22,0.031480702 +61,2012,23,0.03177277 +61,2012,24,0.029379545 +61,2012,25,0.023101881 +61,2012,26,0.015964661 +61,2012,27,0.016242226 +61,2012,28,0.0132529 +61,2012,29,0.005642721 +61,2012,30,0.009971361 +62,2012,0,0.043493586 +62,2012,1,0.04691168 +62,2012,2,0.037063767 +62,2012,3,0.049121795 +62,2012,4,0.038394113 +62,2012,5,0.133214359 +62,2012,6,0.098951542 +62,2012,7,0.093514832 +62,2012,8,0.055762102 +62,2012,9,0.054429958 +62,2012,10,0.039610249 +62,2012,11,0.045528802 +62,2012,12,0.072466906 +62,2012,13,0.053577032 +62,2012,14,0.035660384 +62,2012,15,0.020147423 +62,2012,16,0.021752105 +62,2012,17,0.01940401 +62,2012,18,0.011641777 +62,2012,19,0.007869007 +62,2012,20,0.00469397 +62,2012,21,0.003600661 +62,2012,22,0.002802594 +62,2012,23,0.002799352 +62,2012,24,0.001725537 +62,2012,25,0.002922944 +62,2012,26,0.000775465 +62,2012,27,0.000798212 +62,2012,28,0.00064082 +62,2012,29,0.000257807 +62,2012,30,0.000467434 +11,2013,0,0.06899685 +11,2013,1,0.066706029 +11,2013,2,0.056392737 +11,2013,3,0.050926654 +11,2013,4,0.052745213 +11,2013,5,0.093463238 +11,2013,6,0.083157294 +11,2013,7,0.078786136 +11,2013,8,0.068994399 +11,2013,9,0.058533151 +11,2013,10,0.050105937 +11,2013,11,0.044134311 +11,2013,12,0.037402444 +11,2013,13,0.029857134 +11,2013,14,0.022567116 +11,2013,15,0.019256548 +11,2013,16,0.01842374 +11,2013,17,0.016146698 +11,2013,18,0.012162559 +11,2013,19,0.013994505 +11,2013,20,0.011405163 +11,2013,21,0.009542782 +11,2013,22,0.007555365 +11,2013,23,0.006124121 +11,2013,24,0.004539733 +11,2013,25,0.003842624 +11,2013,26,0.003797262 +11,2013,27,0.003155015 +11,2013,28,0.002655641 +11,2013,29,0.002372998 +11,2013,30,0.002256579 +21,2013,0,0.068996856 +21,2013,1,0.066713746 +21,2013,2,0.041241473 +21,2013,3,0.046335178 +21,2013,4,0.042103013 +21,2013,5,0.053062043 +21,2013,6,0.05786963 +21,2013,7,0.054089878 +21,2013,8,0.053724269 +21,2013,9,0.049896382 +21,2013,10,0.051738787 +21,2013,11,0.051181936 +21,2013,12,0.049243023 +21,2013,13,0.051164734 +21,2013,14,0.041093357 +21,2013,15,0.0337934 +21,2013,16,0.031038129 +21,2013,17,0.025407798 +21,2013,18,0.025744068 +21,2013,19,0.019972797 +21,2013,20,0.016932437 +21,2013,21,0.014059666 +21,2013,22,0.011831552 +21,2013,23,0.009898104 +21,2013,24,0.008156198 +21,2013,25,0.00635566 +21,2013,26,0.005245399 +21,2013,27,0.004250749 +21,2013,28,0.003452017 +21,2013,29,0.002732644 +21,2013,30,0.002675079 +31,2013,0,0.076231585 +31,2013,1,0.073060578 +31,2013,2,0.047897441 +31,2013,3,0.042485116 +31,2013,4,0.032147886 +31,2013,5,0.055510352 +31,2013,6,0.058354288 +31,2013,7,0.059122243 +31,2013,8,0.061111853 +31,2013,9,0.06078711 +31,2013,10,0.055570872 +31,2013,11,0.053336236 +31,2013,12,0.047218324 +31,2013,13,0.045032244 +31,2013,14,0.040950132 +31,2013,15,0.033438435 +31,2013,16,0.028317675 +31,2013,17,0.021277038 +31,2013,18,0.020214425 +31,2013,19,0.018219095 +31,2013,20,0.012565544 +31,2013,21,0.010097752 +31,2013,22,0.00845498 +31,2013,23,0.007419785 +31,2013,24,0.007513629 +31,2013,25,0.006317825 +31,2013,26,0.004768022 +31,2013,27,0.00480287 +31,2013,28,0.003291145 +31,2013,29,0.002706986 +31,2013,30,0.001778529 +32,2013,0,0.075754149 +32,2013,1,0.071985414 +32,2013,2,0.053020816 +32,2013,3,0.04587001 +32,2013,4,0.035118697 +32,2013,5,0.062200986 +32,2013,6,0.064585692 +32,2013,7,0.067205979 +32,2013,8,0.068413675 +32,2013,9,0.068206456 +32,2013,10,0.062110114 +32,2013,11,0.059159607 +32,2013,12,0.053534185 +32,2013,13,0.04475731 +32,2013,14,0.034672876 +32,2013,15,0.021231451 +32,2013,16,0.022856384 +32,2013,17,0.014978611 +32,2013,18,0.015913982 +32,2013,19,0.009854826 +32,2013,20,0.009662731 +32,2013,21,0.00514541 +32,2013,22,0.004867338 +32,2013,23,0.005149419 +32,2013,24,0.005495195 +32,2013,25,0.00496087 +32,2013,26,0.00383652 +32,2013,27,0.003546893 +32,2013,28,0.002462666 +32,2013,29,0.002064477 +32,2013,30,0.001377268 +41,2013,0,0.05135854 +41,2013,1,0.047402372 +41,2013,2,0.043475496 +41,2013,3,0.038384277 +41,2013,4,0.03217975 +41,2013,5,0.041679765 +41,2013,6,0.054485825 +41,2013,7,0.055968684 +41,2013,8,0.05772145 +41,2013,9,0.056081436 +41,2013,10,0.051977063 +41,2013,11,0.048564497 +41,2013,12,0.046699316 +41,2013,13,0.044302155 +41,2013,14,0.043067253 +41,2013,15,0.032637419 +41,2013,16,0.026490183 +41,2013,17,0.021901523 +41,2013,18,0.028395081 +41,2013,19,0.02186335 +41,2013,20,0.017952833 +41,2013,21,0.01322376 +41,2013,22,0.014984938 +41,2013,23,0.016775676 +41,2013,24,0.016638716 +41,2013,25,0.015480709 +41,2013,26,0.016051738 +41,2013,27,0.013464756 +41,2013,28,0.011759825 +41,2013,29,0.009230625 +41,2013,30,0.009820174 +42,2013,0,0.051369239 +42,2013,1,0.047413627 +42,2013,2,0.057284288 +42,2013,3,0.035066551 +42,2013,4,0.035869601 +42,2013,5,0.050470209 +42,2013,6,0.048905863 +42,2013,7,0.035273827 +42,2013,8,0.05499141 +42,2013,9,0.045086992 +42,2013,10,0.044181327 +42,2013,11,0.044674989 +42,2013,12,0.051456749 +42,2013,13,0.034727383 +42,2013,14,0.033667057 +42,2013,15,0.039512363 +42,2013,16,0.036014876 +42,2013,17,0.033173912 +42,2013,18,0.02711986 +42,2013,19,0.02364947 +42,2013,20,0.019567726 +42,2013,21,0.016988295 +42,2013,22,0.017183613 +42,2013,23,0.025088595 +42,2013,24,0.019086688 +42,2013,25,0.015025453 +42,2013,26,0.013866446 +42,2013,27,0.011681609 +42,2013,28,0.010024232 +42,2013,29,0.007794976 +42,2013,30,0.013784892 +43,2013,0,0.051358984 +43,2013,1,0.04740396 +43,2013,2,0.033596046 +43,2013,3,0.036724941 +43,2013,4,0.04374551 +43,2013,5,0.048125462 +43,2013,6,0.049743968 +43,2013,7,0.058456711 +43,2013,8,0.051954355 +43,2013,9,0.051182511 +43,2013,10,0.044070244 +43,2013,11,0.046173134 +43,2013,12,0.042137443 +43,2013,13,0.045737222 +43,2013,14,0.042319379 +43,2013,15,0.033396675 +43,2013,16,0.031034376 +43,2013,17,0.026763743 +43,2013,18,0.034103931 +43,2013,19,0.016458087 +43,2013,20,0.019605594 +43,2013,21,0.015813732 +43,2013,22,0.020185896 +43,2013,23,0.022743696 +43,2013,24,0.012976496 +43,2013,25,0.015430175 +43,2013,26,0.015591552 +43,2013,27,0.013608424 +43,2013,28,0.011684234 +43,2013,29,0.009000335 +43,2013,30,0.008872569 +51,2013,0,0.060746252 +51,2013,1,0.055778782 +51,2013,2,0.030230129 +51,2013,3,0.023953011 +51,2013,4,0.031777503 +51,2013,5,0.024619942 +51,2013,6,0.085828693 +51,2013,7,0.064269802 +51,2013,8,0.060462274 +51,2013,9,0.036214449 +51,2013,10,0.035572048 +51,2013,11,0.025730444 +51,2013,12,0.031648462 +51,2013,13,0.043159498 +51,2013,14,0.061813517 +51,2013,15,0.05681798 +51,2013,16,0.027401817 +51,2013,17,0.035546551 +51,2013,18,0.045517721 +51,2013,19,0.031954045 +51,2013,20,0.014518171 +51,2013,21,0.012923159 +51,2013,22,0.020227459 +51,2013,23,0.014319796 +51,2013,24,0.022061696 +51,2013,25,0.012697473 +51,2013,26,0.011361825 +51,2013,27,0.005809342 +51,2013,28,0.005837362 +51,2013,29,0.004777842 +51,2013,30,0.006422312 +52,2013,0,0.060819639 +52,2013,1,0.05591701 +52,2013,2,0.031738232 +52,2013,3,0.019542847 +52,2013,4,0.020939138 +52,2013,5,0.043325065 +52,2013,6,0.056628307 +52,2013,7,0.059761647 +52,2013,8,0.051638943 +52,2013,9,0.045175509 +52,2013,10,0.039052032 +52,2013,11,0.034970146 +52,2013,12,0.037869811 +52,2013,13,0.061714249 +52,2013,14,0.052199946 +52,2013,15,0.029508593 +52,2013,16,0.040477134 +52,2013,17,0.027057348 +52,2013,18,0.037040537 +52,2013,19,0.028174836 +52,2013,20,0.019576004 +52,2013,21,0.015525455 +52,2013,22,0.014057766 +52,2013,23,0.01905925 +52,2013,24,0.01827775 +52,2013,25,0.016247117 +52,2013,26,0.014754066 +52,2013,27,0.013222469 +52,2013,28,0.011306683 +52,2013,29,0.009727125 +52,2013,30,0.014695329 +53,2013,0,0.060808209 +53,2013,1,0.055915732 +53,2013,2,0.02151732 +53,2013,3,0.013574067 +53,2013,4,0.015961249 +53,2013,5,0.028037897 +53,2013,6,0.048915597 +53,2013,7,0.043581622 +53,2013,8,0.040302514 +53,2013,9,0.029732985 +53,2013,10,0.025315752 +53,2013,11,0.02123273 +53,2013,12,0.052401271 +53,2013,13,0.129021269 +53,2013,14,0.111829102 +53,2013,15,0.018842422 +53,2013,16,0.015446032 +53,2013,17,0.017348085 +53,2013,18,0.029641438 +53,2013,19,0.024395729 +53,2013,20,0.067686863 +53,2013,21,0.011915989 +53,2013,22,0.018533688 +53,2013,23,0.011402412 +53,2013,24,0.046216103 +53,2013,25,0.014727838 +53,2013,26,0.005272164 +53,2013,27,0.005479366 +53,2013,28,0.004765671 +53,2013,29,0.004103093 +53,2013,30,0.006074978 +54,2013,0,0.06076918 +54,2013,1,0.055807241 +54,2013,2,0.041577569 +54,2013,3,0.036708608 +54,2013,4,0.030774939 +54,2013,5,0.039871337 +54,2013,6,0.05197408 +54,2013,7,0.053221902 +54,2013,8,0.054904078 +54,2013,9,0.053177044 +54,2013,10,0.04928523 +54,2013,11,0.046062407 +54,2013,12,0.044154167 +54,2013,13,0.041899533 +54,2013,14,0.040603239 +54,2013,15,0.023870351 +54,2013,16,0.036673096 +54,2013,17,0.022635619 +54,2013,18,0.026649904 +54,2013,19,0.02533044 +54,2013,20,0.0173935 +54,2013,21,0.015209433 +54,2013,22,0.011313773 +54,2013,23,0.01478667 +54,2013,24,0.019040923 +54,2013,25,0.01688794 +54,2013,26,0.016459086 +54,2013,27,0.012096286 +54,2013,28,0.012842215 +54,2013,29,0.012998405 +54,2013,30,0.015021634 +61,2013,0,0.043622034 +61,2013,1,0.043074211 +61,2013,2,0.021312005 +61,2013,3,0.015947971 +61,2013,4,0.020679965 +61,2013,5,0.018614668 +61,2013,6,0.060367005 +61,2013,7,0.04447091 +61,2013,8,0.043210348 +61,2013,9,0.027062668 +61,2013,10,0.024126891 +61,2013,11,0.018719173 +61,2013,12,0.036380066 +61,2013,13,0.049752757 +61,2013,14,0.04439353 +61,2013,15,0.045077813 +61,2013,16,0.036545473 +61,2013,17,0.050651706 +61,2013,18,0.057083571 +61,2013,19,0.047233726 +61,2013,20,0.034199093 +61,2013,21,0.026051318 +61,2013,22,0.024189754 +61,2013,23,0.029959453 +61,2013,24,0.030237408 +61,2013,25,0.027959831 +61,2013,26,0.021951559 +61,2013,27,0.015169726 +61,2013,28,0.01543347 +61,2013,29,0.012573508 +61,2013,30,0.013948694 +62,2013,0,0.043443939 +62,2013,1,0.041796008 +62,2013,2,0.045080692 +62,2013,3,0.035617148 +62,2013,4,0.047204544 +62,2013,5,0.036839352 +62,2013,6,0.127624818 +62,2013,7,0.094799634 +62,2013,8,0.089454117 +62,2013,9,0.053340732 +62,2013,10,0.052066434 +62,2013,11,0.037832246 +62,2013,12,0.043485129 +62,2013,13,0.069107942 +62,2013,14,0.051093646 +62,2013,15,0.034007465 +62,2013,16,0.019184056 +62,2013,17,0.020712008 +62,2013,18,0.018447778 +62,2013,19,0.011068069 +62,2013,20,0.007469699 +62,2013,21,0.004455778 +62,2013,22,0.003417948 +62,2013,23,0.002656274 +62,2013,24,0.002653202 +62,2013,25,0.001635449 +62,2013,26,0.002766061 +62,2013,27,0.000733844 +62,2013,28,0.00075537 +62,2013,29,0.000605487 +62,2013,30,0.000644872 +11,2014,0,0.071822023 +11,2014,1,0.068843178 +11,2014,2,0.06477528 +11,2014,3,0.051962457 +11,2014,4,0.046925796 +11,2014,5,0.048601487 +11,2014,6,0.086120656 +11,2014,7,0.076624358 +11,2014,8,0.072596604 +11,2014,9,0.063574118 +11,2014,10,0.053934718 +11,2014,11,0.046169556 +11,2014,12,0.040667067 +11,2014,13,0.034464064 +11,2014,14,0.027511522 +11,2014,15,0.020794216 +11,2014,16,0.017743731 +11,2014,17,0.016976349 +11,2014,18,0.014878194 +11,2014,19,0.011207054 +11,2014,20,0.01289508 +11,2014,21,0.01050916 +11,2014,22,0.008793089 +11,2014,23,0.006961807 +11,2014,24,0.005643003 +11,2014,25,0.004183086 +11,2014,26,0.003540743 +11,2014,27,0.003498944 +11,2014,28,0.002907153 +11,2014,29,0.00244701 +11,2014,30,0.002428501 +21,2014,0,0.071822021 +21,2014,1,0.068647762 +21,2014,2,0.066376204 +21,2014,3,0.041029269 +21,2014,4,0.0459536 +21,2014,5,0.041640654 +21,2014,6,0.052297172 +21,2014,7,0.056806986 +21,2014,8,0.052859882 +21,2014,9,0.052248982 +21,2014,10,0.048277828 +21,2014,11,0.049807356 +21,2014,12,0.049012117 +21,2014,13,0.045393004 +21,2014,14,0.044652643 +21,2014,15,0.035066038 +21,2014,16,0.028297322 +21,2014,17,0.025603896 +21,2014,18,0.02071074 +21,2014,19,0.020799245 +21,2014,20,0.01601479 +21,2014,21,0.013505727 +21,2014,22,0.011172101 +21,2014,23,0.009366054 +21,2014,24,0.007813417 +21,2014,25,0.006437682 +21,2014,26,0.005001791 +21,2014,27,0.004127135 +21,2014,28,0.00334125 +21,2014,29,0.002710454 +21,2014,30,0.003206878 +31,2014,0,0.079451214 +31,2014,1,0.075148689 +31,2014,2,0.072011525 +31,2014,3,0.047202353 +31,2014,4,0.041516876 +31,2014,5,0.031173745 +31,2014,6,0.053377269 +31,2014,7,0.055602017 +31,2014,8,0.055780881 +31,2014,9,0.0570772 +31,2014,10,0.056205458 +31,2014,11,0.050879754 +31,2014,12,0.048367702 +31,2014,13,0.042436061 +31,2014,14,0.040091695 +31,2014,15,0.035471845 +31,2014,16,0.028683122 +31,2014,17,0.024069196 +31,2014,18,0.017938079 +31,2014,19,0.016921364 +31,2014,20,0.015147745 +31,2014,21,0.0103914 +31,2014,22,0.008304157 +31,2014,23,0.006927255 +31,2014,24,0.006048398 +31,2014,25,0.006106467 +31,2014,26,0.005122025 +31,2014,27,0.00385094 +31,2014,28,0.003874667 +31,2014,29,0.002647027 +31,2014,30,0.002173875 +32,2014,0,0.078921014 +32,2014,1,0.074179688 +32,2014,2,0.070478318 +32,2014,3,0.05190269 +32,2014,4,0.0445255 +32,2014,5,0.033827279 +32,2014,6,0.059411669 +32,2014,7,0.061128846 +32,2014,8,0.062984617 +32,2014,9,0.063470547 +32,2014,10,0.062644738 +32,2014,11,0.056487484 +32,2014,12,0.053290585 +32,2014,13,0.047791185 +32,2014,14,0.039581015 +32,2014,15,0.02983393 +32,2014,16,0.01809057 +32,2014,17,0.019297615 +32,2014,18,0.01254378 +32,2014,19,0.013232593 +32,2014,20,0.008138836 +32,2014,21,0.007937518 +32,2014,22,0.004203228 +32,2014,23,0.00396125 +32,2014,24,0.004169648 +32,2014,25,0.004436245 +32,2014,26,0.003995066 +32,2014,27,0.003077925 +32,2014,28,0.002842326 +32,2014,29,0.001967473 +32,2014,30,0.001646837 +41,2014,0,0.055549645 +41,2014,1,0.049845484 +41,2014,2,0.046005868 +41,2014,3,0.04219468 +41,2014,4,0.037253452 +41,2014,5,0.03105468 +41,2014,6,0.039993258 +41,2014,7,0.05228114 +41,2014,8,0.053396091 +41,2014,9,0.055068292 +41,2014,10,0.053503661 +41,2014,11,0.049301996 +41,2014,12,0.046065062 +41,2014,13,0.044038963 +41,2014,14,0.041778363 +41,2014,15,0.040613811 +41,2014,16,0.030598589 +41,2014,17,0.024835365 +41,2014,18,0.020412865 +41,2014,19,0.026465053 +41,2014,20,0.020257008 +41,2014,21,0.016633804 +41,2014,22,0.012252185 +41,2014,23,0.013801528 +41,2014,24,0.015450845 +41,2014,25,0.015324701 +41,2014,26,0.01417298 +41,2014,27,0.014695771 +41,2014,28,0.012327324 +41,2014,29,0.010701721 +41,2014,30,0.014149217 +42,2014,0,0.055649902 +42,2014,1,0.049945848 +42,2014,2,0.046099843 +42,2014,3,0.055696998 +42,2014,4,0.034094892 +42,2014,5,0.034678001 +42,2014,6,0.048515414 +42,2014,7,0.047011657 +42,2014,8,0.033713207 +42,2014,9,0.052558425 +42,2014,10,0.043092208 +42,2014,11,0.041983113 +42,2014,12,0.042452213 +42,2014,13,0.048612955 +42,2014,14,0.03280815 +42,2014,15,0.031806423 +42,2014,16,0.037110918 +42,2014,17,0.033825998 +42,2014,18,0.030974867 +42,2014,19,0.025322128 +42,2014,20,0.021951445 +42,2014,21,0.018162769 +42,2014,22,0.015768541 +42,2014,23,0.01585513 +42,2014,24,0.023148969 +42,2014,25,0.017611077 +42,2014,26,0.013781009 +42,2014,27,0.012717993 +42,2014,28,0.01071411 +42,2014,29,0.009138754 +42,2014,30,0.015191217 +43,2014,0,0.055555713 +43,2014,1,0.04985136 +43,2014,2,0.046012435 +43,2014,3,0.032609847 +43,2014,4,0.035646894 +43,2014,5,0.042220689 +43,2014,6,0.046183184 +43,2014,7,0.047736369 +43,2014,8,0.055775849 +43,2014,9,0.049571695 +43,2014,10,0.048835248 +43,2014,11,0.041806678 +43,2014,12,0.043801558 +43,2014,13,0.03974131 +43,2014,14,0.043136389 +43,2014,15,0.0399129 +43,2014,16,0.031313835 +43,2014,17,0.029098864 +43,2014,18,0.024947322 +43,2014,19,0.031789342 +43,2014,20,0.015250545 +43,2014,21,0.018167117 +43,2014,22,0.014653468 +43,2014,23,0.01859378 +43,2014,24,0.020949839 +43,2014,25,0.011953005 +43,2014,26,0.014128257 +43,2014,27,0.014276019 +43,2014,28,0.012460217 +43,2014,29,0.010634093 +43,2014,30,0.013386343 +51,2014,0,0.064759262 +51,2014,1,0.058271665 +51,2014,2,0.053506552 +51,2014,3,0.028998661 +51,2014,4,0.02297725 +51,2014,5,0.030316538 +51,2014,6,0.023359076 +51,2014,7,0.081433131 +51,2014,8,0.060641671 +51,2014,9,0.057049084 +51,2014,10,0.034170087 +51,2014,11,0.033377609 +51,2014,12,0.024143134 +51,2014,13,0.029530283 +51,2014,14,0.040270904 +51,2014,15,0.05767644 +51,2014,16,0.052717613 +51,2014,17,0.025424318 +51,2014,18,0.032795067 +51,2014,19,0.041994418 +51,2014,20,0.029313252 +51,2014,21,0.013318339 +51,2014,22,0.011855144 +51,2014,23,0.018449833 +51,2014,24,0.013061345 +51,2014,25,0.020122873 +51,2014,26,0.011515081 +51,2014,27,0.010303809 +51,2014,28,0.005268374 +51,2014,29,0.005263207 +51,2014,30,0.008113615 +52,2014,0,0.06499736 +52,2014,1,0.058556567 +52,2014,2,0.053836362 +52,2014,3,0.030557267 +52,2014,4,0.018815666 +52,2014,5,0.020049912 +52,2014,6,0.041257384 +52,2014,7,0.053925731 +52,2014,8,0.056595327 +52,2014,9,0.048902985 +52,2014,10,0.042781999 +52,2014,11,0.036777637 +52,2014,12,0.032933481 +52,2014,13,0.035465163 +52,2014,14,0.057795532 +52,2014,15,0.048885367 +52,2014,16,0.027479718 +52,2014,17,0.037694113 +52,2014,18,0.025054752 +52,2014,19,0.034299054 +52,2014,20,0.025941398 +52,2014,21,0.018024202 +52,2014,22,0.014294742 +52,2014,23,0.012869487 +52,2014,24,0.017448204 +52,2014,25,0.016732763 +52,2014,26,0.014788354 +52,2014,27,0.013429358 +52,2014,28,0.012035277 +52,2014,29,0.010232055 +52,2014,30,0.017542756 +53,2014,0,0.064897555 +53,2014,1,0.058455664 +53,2014,2,0.053752467 +53,2014,3,0.020684859 +53,2014,4,0.013048914 +53,2014,5,0.015259952 +53,2014,6,0.026658795 +53,2014,7,0.046509582 +53,2014,8,0.041209186 +53,2014,9,0.038108581 +53,2014,10,0.028114421 +53,2014,11,0.023804751 +53,2014,12,0.019965429 +53,2014,13,0.048998554 +53,2014,14,0.120643172 +53,2014,15,0.104567392 +53,2014,16,0.01751996 +53,2014,17,0.014361947 +53,2014,18,0.016039434 +53,2014,19,0.027405439 +53,2014,20,0.022427373 +53,2014,21,0.062225585 +53,2014,22,0.010954553 +53,2014,23,0.016941014 +53,2014,24,0.010422557 +53,2014,25,0.042244568 +53,2014,26,0.013384901 +53,2014,27,0.004791429 +53,2014,28,0.004979738 +53,2014,29,0.004306102 +53,2014,30,0.007314999 +54,2014,0,0.064927743 +54,2014,1,0.058445319 +54,2014,2,0.053673128 +54,2014,3,0.03998761 +54,2014,4,0.035304842 +54,2014,5,0.029436451 +54,2014,6,0.037927817 +54,2014,7,0.049440614 +54,2014,8,0.050348089 +54,2014,9,0.051939433 +54,2014,10,0.050305654 +54,2014,11,0.046365138 +54,2014,12,0.043333263 +54,2014,13,0.041306187 +54,2014,14,0.039196978 +54,2014,15,0.037984296 +54,2014,16,0.022205327 +54,2014,17,0.034115044 +54,2014,18,0.020937838 +54,2014,19,0.024651032 +54,2014,20,0.023297499 +54,2014,21,0.015997553 +54,2014,22,0.013988772 +54,2014,23,0.010346345 +54,2014,24,0.013522279 +54,2014,25,0.017412756 +54,2014,26,0.015355176 +54,2014,27,0.014965245 +54,2014,28,0.010998416 +54,2014,29,0.011609197 +54,2014,30,0.020675025 +61,2014,0,0.048073304 +61,2014,1,0.042788951 +61,2014,2,0.04225159 +61,2014,3,0.020904993 +61,2014,4,0.015643401 +61,2014,5,0.020187517 +61,2014,6,0.018083631 +61,2014,7,0.058644863 +61,2014,8,0.042992567 +61,2014,9,0.04177391 +61,2014,10,0.026163026 +61,2014,11,0.023211083 +61,2014,12,0.018008631 +61,2014,13,0.034827617 +61,2014,14,0.047629655 +61,2014,15,0.042499123 +61,2014,16,0.042941661 +61,2014,17,0.034813653 +61,2014,18,0.048012593 +61,2014,19,0.054109338 +61,2014,20,0.044549991 +61,2014,21,0.032255963 +61,2014,22,0.024571129 +61,2014,23,0.02270128 +61,2014,24,0.028115951 +61,2014,25,0.028376802 +61,2014,26,0.026107539 +61,2014,27,0.020497305 +61,2014,28,0.014164757 +61,2014,29,0.014338259 +61,2014,30,0.020759734 +62,2014,0,0.047422386 +62,2014,1,0.042037255 +62,2014,2,0.040442683 +62,2014,3,0.043621011 +62,2014,4,0.03446389 +62,2014,5,0.045456537 +62,2014,6,0.035303825 +62,2014,7,0.122305198 +62,2014,8,0.090407291 +62,2014,9,0.085309447 +62,2014,10,0.0508693 +62,2014,11,0.049411871 +62,2014,12,0.035903401 +62,2014,13,0.041065818 +62,2014,14,0.065263097 +62,2014,15,0.048251032 +62,2014,16,0.031957272 +62,2014,17,0.018027515 +62,2014,18,0.019367016 +62,2014,19,0.01724982 +62,2014,20,0.010297853 +62,2014,21,0.006949891 +62,2014,22,0.004145705 +62,2014,23,0.003164199 +62,2014,24,0.002459072 +62,2014,25,0.002456228 +62,2014,26,0.001506426 +62,2014,27,0.002547843 +62,2014,28,0.00067595 +62,2014,29,0.000692264 +62,2014,30,0.000968934 +11,2015,0,0.072554787 +11,2015,1,0.071485464 +11,2015,2,0.066722221 +11,2015,3,0.059637196 +11,2015,4,0.047840708 +11,2015,5,0.043203563 +11,2015,6,0.044746335 +11,2015,7,0.079289422 +11,2015,8,0.070546386 +11,2015,9,0.06683812 +11,2015,10,0.058531313 +11,2015,11,0.049656526 +11,2015,12,0.042507309 +11,2015,13,0.037441288 +11,2015,14,0.031730316 +11,2015,15,0.025329262 +11,2015,16,0.019144784 +11,2015,17,0.016336269 +11,2015,18,0.015629757 +11,2015,19,0.013698031 +11,2015,20,0.010318092 +11,2015,21,0.011872221 +11,2015,22,0.009675556 +11,2015,23,0.008095607 +11,2015,24,0.006409585 +11,2015,25,0.005195391 +11,2015,26,0.003851277 +11,2015,27,0.003259886 +11,2015,28,0.003221402 +11,2015,29,0.002676553 +11,2015,30,0.002555415 +21,2015,0,0.072554784 +21,2015,1,0.071281671 +21,2015,2,0.068131293 +21,2015,3,0.065871117 +21,2015,4,0.040590059 +21,2015,5,0.045335238 +21,2015,6,0.040937117 +21,2015,7,0.051206742 +21,2015,8,0.055373424 +21,2015,9,0.051275953 +21,2015,10,0.050422795 +21,2015,11,0.046353832 +21,2015,12,0.047569735 +21,2015,13,0.045052923 +21,2015,14,0.039493665 +21,2015,15,0.037981838 +21,2015,16,0.029266609 +21,2015,17,0.023264551 +21,2015,18,0.020799192 +21,2015,19,0.01667468 +21,2015,20,0.016618965 +21,2015,21,0.012728628 +21,2015,22,0.01069377 +21,2015,23,0.008812395 +21,2015,24,0.007366873 +21,2015,25,0.006144973 +21,2015,26,0.005048062 +21,2015,27,0.003921258 +21,2015,28,0.00323236 +21,2015,29,0.002613985 +21,2015,30,0.00338151 +31,2015,0,0.082105265 +31,2015,1,0.078092794 +31,2015,2,0.073852167 +31,2015,3,0.07075795 +31,2015,4,0.045985068 +31,2015,5,0.040130482 +31,2015,6,0.029876323 +31,2015,7,0.050683565 +31,2015,8,0.052269646 +31,2015,9,0.051901045 +31,2015,10,0.052566839 +31,2015,11,0.051249322 +31,2015,12,0.045943133 +31,2015,13,0.043276962 +31,2015,14,0.037607397 +31,2015,15,0.034552904 +31,2015,16,0.030268513 +31,2015,17,0.024248591 +31,2015,18,0.020179898 +31,2015,19,0.014930923 +31,2015,20,0.013987481 +31,2015,21,0.012453201 +31,2015,22,0.008494553 +31,2015,23,0.006762539 +31,2015,24,0.005612223 +31,2015,25,0.004885184 +31,2015,26,0.004919765 +31,2015,27,0.004110736 +31,2015,28,0.003087027 +31,2015,29,0.003096427 +31,2015,30,0.002112075 +32,2015,0,0.081644656 +32,2015,1,0.077136483 +32,2015,2,0.072490916 +32,2015,3,0.068862933 +32,2015,4,0.050280525 +32,2015,5,0.042797192 +32,2015,6,0.032237548 +32,2015,7,0.056096957 +32,2015,8,0.057142859 +32,2015,9,0.05827496 +32,2015,10,0.05812704 +32,2015,11,0.056800347 +32,2015,12,0.050720624 +32,2015,13,0.047414215 +32,2015,14,0.042115579 +32,2015,15,0.033921404 +32,2015,16,0.025314801 +32,2015,17,0.015207896 +32,2015,18,0.016088582 +32,2015,19,0.010382356 +32,2015,20,0.010876918 +32,2015,21,0.006653529 +32,2015,22,0.006452202 +32,2015,23,0.003403721 +32,2015,24,0.003191264 +32,2015,25,0.003348858 +32,2015,26,0.003554075 +32,2015,27,0.003188296 +32,2015,28,0.002453514 +32,2015,29,0.002258692 +32,2015,30,0.001561049 +41,2015,0,0.05803412 +41,2015,1,0.05325139 +41,2015,2,0.047783228 +41,2015,3,0.044102468 +41,2015,4,0.04044896 +41,2015,5,0.03558873 +41,2015,6,0.029564062 +41,2015,7,0.03807359 +41,2015,8,0.049598429 +41,2015,9,0.050656168 +41,2015,10,0.052242563 +41,2015,11,0.050580939 +41,2015,12,0.046608796 +41,2015,13,0.043396053 +41,2015,14,0.041487346 +41,2015,15,0.039357725 +41,2015,16,0.038126078 +41,2015,17,0.028724322 +41,2015,18,0.023231826 +41,2015,19,0.019094872 +41,2015,20,0.024668601 +41,2015,21,0.018881959 +41,2015,22,0.015504698 +41,2015,23,0.011379908 +41,2015,24,0.012818948 +41,2015,25,0.014350845 +41,2015,26,0.014182904 +41,2015,27,0.013116994 +41,2015,28,0.013600834 +41,2015,29,0.011368007 +41,2015,30,0.020150991 +42,2015,0,0.05806115 +42,2015,1,0.053372346 +42,2015,2,0.04790174 +42,2015,3,0.044213138 +42,2015,4,0.053417515 +42,2015,5,0.032586485 +42,2015,6,0.033028841 +42,2015,7,0.046208197 +42,2015,8,0.044620113 +42,2015,9,0.031998172 +42,2015,10,0.049884709 +42,2015,11,0.040757202 +42,2015,12,0.039708205 +42,2015,13,0.040011159 +42,2015,14,0.045817652 +42,2015,15,0.030921641 +42,2015,16,0.029872079 +42,2015,17,0.034853975 +42,2015,18,0.031656701 +42,2015,19,0.028988415 +42,2015,20,0.023614252 +42,2015,21,0.020470907 +42,2015,22,0.016937762 +42,2015,23,0.014652744 +42,2015,24,0.014733206 +42,2015,25,0.021510926 +42,2015,26,0.01630652 +42,2015,27,0.012760168 +42,2015,28,0.011775896 +42,2015,29,0.009884936 +42,2015,30,0.019475932 +43,2015,0,0.058043524 +43,2015,1,0.053265837 +43,2015,2,0.047796604 +43,2015,3,0.04411591 +43,2015,4,0.031265745 +43,2015,5,0.034059482 +43,2015,6,0.040200618 +43,2015,7,0.043973525 +43,2015,8,0.045294203 +43,2015,9,0.052922387 +43,2015,10,0.047035634 +43,2015,11,0.046175026 +43,2015,12,0.039529326 +43,2015,13,0.041270383 +43,2015,14,0.037444766 +43,2015,15,0.040643652 +43,2015,16,0.037474172 +43,2015,17,0.02940052 +43,2015,18,0.027224455 +43,2015,19,0.023340336 +43,2015,20,0.029636277 +43,2015,21,0.014217639 +43,2015,22,0.016936674 +43,2015,23,0.01361244 +43,2015,24,0.017272821 +43,2015,25,0.019461498 +43,2015,26,0.011064215 +43,2015,27,0.013077722 +43,2015,28,0.013214497 +43,2015,29,0.01149242 +43,2015,30,0.01953742 +51,2015,0,0.067112141 +51,2015,1,0.061690041 +51,2015,2,0.055509919 +51,2015,3,0.050970646 +51,2015,4,0.027624289 +51,2015,5,0.021792038 +51,2015,6,0.028625796 +51,2015,7,0.022056348 +51,2015,8,0.07655062 +51,2015,9,0.05700576 +51,2015,10,0.053628574 +51,2015,11,0.031978247 +51,2015,12,0.031236603 +51,2015,13,0.022493369 +51,2015,14,0.0275124 +51,2015,15,0.037519086 +51,2015,16,0.053493726 +51,2015,17,0.048894515 +51,2015,18,0.02347407 +51,2015,19,0.030279424 +51,2015,20,0.038597252 +51,2015,21,0.026941938 +51,2015,22,0.012240944 +51,2015,23,0.010846469 +51,2015,24,0.01688006 +51,2015,25,0.011950043 +51,2015,26,0.018326484 +51,2015,27,0.010487118 +51,2015,28,0.009383978 +51,2015,29,0.004775999 +51,2015,30,0.010121993 +52,2015,0,0.067311675 +52,2015,1,0.062100943 +52,2015,2,0.055947164 +52,2015,3,0.051437302 +52,2015,4,0.029195571 +52,2015,5,0.017898173 +52,2015,6,0.018988022 +52,2015,7,0.039072298 +52,2015,8,0.050843206 +52,2015,9,0.053360201 +52,2015,10,0.046107572 +52,2015,11,0.040156786 +52,2015,12,0.034520867 +52,2015,13,0.030774274 +52,2015,14,0.033139972 +52,2015,15,0.054006303 +52,2015,16,0.045474988 +52,2015,17,0.025562657 +52,2015,18,0.034906147 +52,2015,19,0.02320163 +52,2015,20,0.031618137 +52,2015,21,0.02391374 +52,2015,22,0.016615376 +52,2015,23,0.013117382 +52,2015,24,0.011809516 +52,2015,25,0.016011116 +52,2015,26,0.01528432 +52,2015,27,0.013508226 +52,2015,28,0.012266869 +52,2015,29,0.010942915 +52,2015,30,0.02090666 +53,2015,0,0.067204198 +53,2015,1,0.06190658 +53,2015,2,0.05576158 +53,2015,3,0.051275143 +53,2015,4,0.019731542 +53,2015,5,0.012392801 +53,2015,6,0.014428674 +53,2015,7,0.025206572 +53,2015,8,0.043780965 +53,2015,9,0.038791531 +53,2015,10,0.035872832 +53,2015,11,0.026347112 +53,2015,12,0.022308353 +53,2015,13,0.018626653 +53,2015,14,0.045712971 +53,2015,15,0.112553481 +53,2015,16,0.097117164 +53,2015,17,0.016271696 +53,2015,18,0.01327846 +53,2015,19,0.014829395 +53,2015,20,0.025223009 +53,2015,21,0.020641371 +53,2015,22,0.057270256 +53,2015,23,0.010036252 +53,2015,24,0.015520877 +53,2015,25,0.009548851 +53,2015,26,0.038526127 +53,2015,27,0.012206738 +53,2015,28,0.004369679 +53,2015,29,0.004520531 +53,2015,30,0.008739647 +54,2015,0,0.067307936 +54,2015,1,0.062030982 +54,2015,2,0.055837772 +54,2015,3,0.051278493 +54,2015,4,0.038203556 +54,2015,5,0.033581435 +54,2015,6,0.02787588 +54,2015,7,0.035917077 +54,2015,8,0.04661188 +54,2015,9,0.047467434 +54,2015,10,0.04896773 +54,2015,11,0.047216148 +54,2015,12,0.043517637 +54,2015,13,0.040489969 +54,2015,14,0.038595899 +54,2015,15,0.036625085 +54,2015,16,0.035332444 +54,2015,17,0.020655074 +54,2015,18,0.031590042 +54,2015,19,0.019388138 +54,2015,20,0.022722971 +54,2015,21,0.021475303 +54,2015,22,0.014746317 +54,2015,23,0.0128359 +54,2015,24,0.009493661 +54,2015,25,0.012407853 +54,2015,26,0.015904568 +54,2015,27,0.014025203 +54,2015,28,0.013669045 +54,2015,29,0.009999608 +54,2015,30,0.024229238 +61,2015,0,0.050590062 +61,2015,1,0.046317722 +61,2015,2,0.041226347 +61,2015,3,0.04070861 +61,2015,4,0.020141567 +61,2015,5,0.015038551 +61,2015,6,0.019363648 +61,2015,7,0.017345624 +61,2015,8,0.05612567 +61,2015,9,0.041145746 +61,2015,10,0.039979438 +61,2015,11,0.024983001 +61,2015,12,0.022164199 +61,2015,13,0.017157746 +61,2015,14,0.033182057 +61,2015,15,0.045379215 +61,2015,16,0.040399892 +61,2015,17,0.040820571 +61,2015,18,0.033019335 +61,2015,19,0.045537993 +61,2015,20,0.05120439 +61,2015,21,0.042158252 +61,2015,22,0.030524249 +61,2015,23,0.023199259 +61,2015,24,0.021433809 +61,2015,25,0.026546165 +61,2015,26,0.026731556 +61,2015,27,0.024593861 +61,2015,28,0.0193089 +61,2015,29,0.013313107 +61,2015,30,0.030359304 +62,2015,0,0.050255769 +62,2015,1,0.045388657 +62,2015,2,0.040234469 +62,2015,3,0.038708281 +62,2015,4,0.041750305 +62,2015,5,0.032912422 +62,2015,6,0.043313306 +62,2015,7,0.033639284 +62,2015,8,0.1162779 +62,2015,9,0.085951947 +62,2015,10,0.081105329 +62,2015,11,0.048253977 +62,2015,12,0.046871478 +62,2015,13,0.033980975 +62,2015,14,0.038866974 +62,2015,15,0.061768624 +62,2015,16,0.045564599 +62,2015,17,0.030178013 +62,2015,18,0.016985381 +62,2015,19,0.018247449 +62,2015,20,0.01621587 +62,2015,21,0.009680602 +62,2015,22,0.006533316 +62,2015,23,0.003888374 +62,2015,24,0.002967792 +62,2015,25,0.002306433 +62,2015,26,0.00229853 +62,2015,27,0.001409709 +62,2015,28,0.002384263 +62,2015,29,0.00063111 +62,2015,30,0.001429134 +11,2016,0,0.073441782 +11,2016,1,0.071758117 +11,2016,2,0.068979856 +11,2016,3,0.061400952 +11,2016,4,0.054880977 +11,2016,5,0.044025289 +11,2016,6,0.039757968 +11,2016,7,0.0411777 +11,2016,8,0.072965887 +11,2016,9,0.064920131 +11,2016,10,0.061507608 +11,2016,11,0.05386329 +11,2016,12,0.04569629 +11,2016,13,0.039117242 +11,2016,14,0.034455249 +11,2016,15,0.029199742 +11,2016,16,0.023309188 +11,2016,17,0.017617939 +11,2016,18,0.015033409 +11,2016,19,0.014383244 +11,2016,20,0.012605578 +11,2016,21,0.009495198 +11,2016,22,0.010925381 +11,2016,23,0.008903906 +11,2016,24,0.007449961 +11,2016,25,0.005898404 +11,2016,26,0.004781045 +11,2016,27,0.003544127 +11,2016,28,0.002999901 +11,2016,29,0.002964487 +11,2016,30,0.002940126 +21,2016,0,0.073441788 +21,2016,1,0.071562817 +21,2016,2,0.070307109 +21,2016,3,0.067194245 +21,2016,4,0.064771724 +21,2016,5,0.03980666 +21,2016,6,0.04431234 +21,2016,7,0.039859848 +21,2016,8,0.049646207 +21,2016,9,0.053437485 +21,2016,10,0.04924068 +21,2016,11,0.048186949 +21,2016,12,0.044075329 +21,2016,13,0.043613411 +21,2016,14,0.039203862 +21,2016,15,0.033638292 +21,2016,16,0.031774353 +21,2016,17,0.024137329 +21,2016,18,0.018970859 +21,2016,19,0.016817994 +21,2016,20,0.01338639 +21,2016,21,0.013275237 +21,2016,22,0.010131295 +21,2016,23,0.008481129 +21,2016,24,0.006970339 +21,2016,25,0.005826373 +21,2016,26,0.004846454 +21,2016,27,0.003980512 +21,2016,28,0.003089123 +21,2016,29,0.00254378 +21,2016,30,0.003470087 +31,2016,0,0.083603088 +31,2016,1,0.080216264 +31,2016,2,0.076284509 +31,2016,3,0.072131107 +31,2016,4,0.068541594 +31,2016,5,0.044210061 +31,2016,6,0.038265613 +31,2016,7,0.028235078 +31,2016,8,0.047440162 +31,2016,9,0.048443495 +31,2016,10,0.047631729 +31,2016,11,0.047782188 +31,2016,12,0.046150791 +31,2016,13,0.041010891 +31,2016,14,0.038277481 +31,2016,15,0.032386081 +31,2016,16,0.029473454 +31,2016,17,0.025589653 +31,2016,18,0.020338238 +31,2016,19,0.016808795 +31,2016,20,0.012354635 +31,2016,21,0.011513745 +31,2016,22,0.010195329 +31,2016,23,0.006929188 +31,2016,24,0.005489233 +31,2016,25,0.004542174 +31,2016,26,0.003944324 +31,2016,27,0.003957633 +31,2016,28,0.003303158 +31,2016,29,0.002473229 +31,2016,30,0.00247708 +32,2016,0,0.083249493 +32,2016,1,0.079428885 +32,2016,2,0.075031652 +32,2016,3,0.070502128 +32,2016,4,0.066423806 +32,2016,5,0.048135265 +32,2016,6,0.040635803 +32,2016,7,0.030337732 +32,2016,8,0.052285058 +32,2016,9,0.052735997 +32,2016,10,0.053255137 +32,2016,11,0.052612829 +32,2016,12,0.050933238 +32,2016,13,0.045084003 +32,2016,14,0.041759417 +32,2016,15,0.036114964 +32,2016,16,0.028812409 +32,2016,17,0.021311161 +32,2016,18,0.012701506 +32,2016,19,0.013344265 +32,2016,20,0.008554576 +32,2016,21,0.008915428 +32,2016,22,0.005424149 +32,2016,23,0.005240939 +32,2016,24,0.002751155 +32,2016,25,0.002571881 +32,2016,26,0.00269245 +32,2016,27,0.002846932 +32,2016,28,0.002551102 +32,2016,29,0.001957364 +32,2016,30,0.001799267 +41,2016,0,0.057935169 +41,2016,1,0.055720718 +41,2016,2,0.051128641 +41,2016,3,0.045878454 +41,2016,4,0.04234442 +41,2016,5,0.038702425 +41,2016,6,0.033934043 +41,2016,7,0.02818949 +41,2016,8,0.036177121 +41,2016,9,0.0471279 +41,2016,10,0.048132953 +41,2016,11,0.049467094 +41,2016,12,0.047893746 +41,2016,13,0.043978078 +41,2016,14,0.04094667 +41,2016,15,0.039145695 +41,2016,16,0.037005767 +41,2016,17,0.035847721 +41,2016,18,0.026912552 +41,2016,19,0.021766492 +41,2016,20,0.017827157 +41,2016,21,0.023030843 +41,2016,22,0.017628379 +41,2016,23,0.014423923 +41,2016,24,0.010586657 +41,2016,25,0.011925386 +41,2016,26,0.013302913 +41,2016,27,0.013147236 +41,2016,28,0.012159161 +41,2016,29,0.01256257 +41,2016,30,0.025170536 +42,2016,0,0.057941355 +42,2016,1,0.055752624 +42,2016,2,0.051250248 +42,2016,3,0.045997154 +42,2016,4,0.042455212 +42,2016,5,0.051116472 +42,2016,6,0.031074705 +42,2016,7,0.031496539 +42,2016,8,0.043911226 +42,2016,9,0.042402084 +42,2016,10,0.03040757 +42,2016,11,0.047239549 +42,2016,12,0.038596032 +42,2016,13,0.037470974 +42,2016,14,0.03775686 +42,2016,15,0.043236204 +42,2016,16,0.029076916 +42,2016,17,0.028089968 +42,2016,18,0.032659068 +42,2016,19,0.02966314 +42,2016,20,0.027066754 +42,2016,21,0.022048847 +42,2016,22,0.019113877 +42,2016,23,0.015758776 +42,2016,24,0.01363281 +42,2016,25,0.013707672 +42,2016,26,0.019942279 +42,2016,27,0.015117395 +42,2016,28,0.011829655 +42,2016,29,0.010878107 +42,2016,30,0.023311713 +43,2016,0,0.057940683 +43,2016,1,0.055735051 +43,2016,2,0.051147379 +43,2016,3,0.045895666 +43,2016,4,0.042361358 +43,2016,5,0.029918577 +43,2016,6,0.032478988 +43,2016,7,0.038335152 +43,2016,8,0.041787153 +43,2016,9,0.043042166 +43,2016,10,0.050291076 +43,2016,11,0.04454103 +43,2016,12,0.043726066 +43,2016,13,0.03730174 +43,2016,14,0.038944684 +43,2016,15,0.035334651 +43,2016,16,0.038218486 +43,2016,17,0.035238126 +43,2016,18,0.027548721 +43,2016,19,0.025509716 +43,2016,20,0.021792836 +43,2016,21,0.027671347 +43,2016,22,0.013274988 +43,2016,23,0.015757581 +43,2016,24,0.012664773 +43,2016,25,0.016070326 +43,2016,26,0.018042092 +43,2016,27,0.010257257 +43,2016,28,0.012123911 +43,2016,29,0.012206887 +43,2016,30,0.024841123 +51,2016,0,0.067031711 +51,2016,1,0.064161342 +51,2016,2,0.058977642 +51,2016,3,0.053069249 +51,2016,4,0.048729559 +51,2016,5,0.026276829 +51,2016,6,0.020624247 +51,2016,7,0.027091797 +51,2016,8,0.020768304 +51,2016,9,0.072080225 +51,2016,10,0.053676744 +51,2016,11,0.050238829 +51,2016,12,0.029956972 +51,2016,13,0.02911196 +51,2016,14,0.020963422 +51,2016,15,0.02564107 +51,2016,16,0.03478666 +51,2016,17,0.049597906 +51,2016,18,0.045098466 +51,2016,19,0.021651601 +51,2016,20,0.027782963 +51,2016,21,0.035415008 +51,2016,22,0.024720645 +51,2016,23,0.011172832 +51,2016,24,0.009900035 +51,2016,25,0.015407151 +51,2016,26,0.010849835 +51,2016,27,0.016639215 +51,2016,28,0.009521598 +51,2016,29,0.008474885 +51,2016,30,0.010582253 +52,2016,0,0.067279515 +52,2016,1,0.064590001 +52,2016,2,0.059589959 +52,2016,3,0.053685002 +52,2016,4,0.049357491 +52,2016,5,0.027874133 +52,2016,6,0.017001667 +52,2016,7,0.018036926 +52,2016,8,0.036926566 +52,2016,9,0.048051052 +52,2016,10,0.050429822 +52,2016,11,0.04335289 +52,2016,12,0.037757632 +52,2016,13,0.032291773 +52,2016,14,0.028787106 +52,2016,15,0.031000046 +52,2016,16,0.050258264 +52,2016,17,0.042319022 +52,2016,18,0.023665199 +52,2016,19,0.032315144 +52,2016,20,0.021367416 +52,2016,21,0.029118553 +52,2016,22,0.02202323 +52,2016,23,0.015221627 +52,2016,24,0.012017056 +52,2016,25,0.010818897 +52,2016,26,0.014590757 +52,2016,27,0.013928436 +52,2016,28,0.012309901 +52,2016,29,0.011119445 +52,2016,30,0.022915496 +53,2016,0,0.067125971 +53,2016,1,0.064339699 +53,2016,2,0.059267886 +53,2016,3,0.053384809 +53,2016,4,0.049089601 +53,2016,5,0.018795469 +53,2016,6,0.011745189 +53,2016,7,0.013674673 +53,2016,8,0.023767937 +53,2016,9,0.041282219 +53,2016,10,0.036577551 +53,2016,11,0.033652645 +53,2016,12,0.024716476 +53,2016,13,0.020820226 +53,2016,14,0.017384122 +53,2016,15,0.042663588 +53,2016,16,0.104503225 +53,2016,17,0.090170973 +53,2016,18,0.015029507 +53,2016,19,0.012264776 +53,2016,20,0.013625884 +53,2016,21,0.023175982 +53,2016,22,0.018966176 +53,2016,23,0.052346513 +53,2016,24,0.009173397 +53,2016,25,0.014186488 +53,2016,26,0.008681906 +53,2016,27,0.03502832 +53,2016,28,0.011098482 +53,2016,29,0.003951906 +53,2016,30,0.009508746 +54,2016,0,0.067282005 +54,2016,1,0.064588804 +54,2016,2,0.05952503 +54,2016,3,0.053582016 +54,2016,4,0.049206925 +54,2016,5,0.036475753 +54,2016,6,0.031900546 +54,2016,7,0.026480578 +54,2016,8,0.033945877 +54,2016,9,0.044053728 +54,2016,10,0.044862328 +54,2016,11,0.046043873 +54,2016,12,0.044396878 +54,2016,13,0.040709108 +54,2016,14,0.037876839 +54,2016,15,0.036105008 +54,2016,16,0.034084565 +54,2016,17,0.032881588 +54,2016,18,0.019122603 +54,2016,19,0.029246268 +54,2016,20,0.017856062 +54,2016,21,0.020927372 +54,2016,22,0.019778297 +54,2016,23,0.01350985 +54,2016,24,0.011759621 +54,2016,25,0.008697625 +54,2016,26,0.011307561 +54,2016,27,0.014494198 +54,2016,28,0.012781489 +54,2016,29,0.012390922 +54,2016,30,0.024126725 +61,2016,0,0.050455683 +61,2016,1,0.048773862 +61,2016,2,0.044654901 +61,2016,3,0.039746308 +61,2016,4,0.039247158 +61,2016,5,0.019377401 +61,2016,6,0.014437323 +61,2016,7,0.018589506 +61,2016,8,0.016616786 +61,2016,9,0.05376735 +61,2016,10,0.039416861 +61,2016,11,0.038218025 +61,2016,12,0.023882301 +61,2016,13,0.021142488 +61,2016,14,0.016366819 +61,2016,15,0.031652451 +61,2016,16,0.043194806 +61,2016,17,0.038455171 +61,2016,18,0.03877235 +61,2016,19,0.03136255 +61,2016,20,0.043160199 +61,2016,21,0.048530722 +61,2016,22,0.039956934 +61,2016,23,0.028868156 +61,2016,24,0.021940583 +61,2016,25,0.020270917 +61,2016,26,0.025051763 +61,2016,27,0.025226718 +61,2016,28,0.023209364 +61,2016,29,0.018182538 +61,2016,30,0.037471846 +62,2016,0,0.05010031 +62,2016,1,0.048110313 +62,2016,2,0.043450982 +62,2016,3,0.03851683 +62,2016,4,0.037055796 +62,2016,5,0.039883408 +62,2016,6,0.031374068 +62,2016,7,0.041288806 +62,2016,8,0.031998836 +62,2016,9,0.110607508 +62,2016,10,0.081760427 +62,2016,11,0.076985915 +62,2016,12,0.045803113 +62,2016,13,0.044395916 +62,2016,14,0.032186237 +62,2016,15,0.036814178 +62,2016,16,0.058381171 +62,2016,17,0.043065791 +62,2016,18,0.028461909 +62,2016,19,0.01601949 +62,2016,20,0.017172836 +62,2016,21,0.0152609 +62,2016,22,0.009110501 +62,2016,23,0.006135332 +62,2016,24,0.00365151 +62,2016,25,0.002787006 +62,2016,26,0.002161264 +62,2016,27,0.002153858 +62,2016,28,0.00132098 +62,2016,29,0.002229366 +62,2016,30,0.001755649 +11,2017,0,0.07289482 +11,2017,1,0.072635967 +11,2017,2,0.069264149 +11,2017,3,0.063535715 +11,2017,4,0.056554966 +11,2017,5,0.05054957 +11,2017,6,0.040550653 +11,2017,7,0.036620124 +11,2017,8,0.037927806 +11,2017,9,0.067207153 +11,2017,10,0.059796398 +11,2017,11,0.056653204 +11,2017,12,0.049612203 +11,2017,13,0.042089773 +11,2017,14,0.036029967 +11,2017,15,0.031735915 +11,2017,16,0.026895192 +11,2017,17,0.021469542 +11,2017,18,0.016227467 +11,2017,19,0.013846918 +11,2017,20,0.013248066 +11,2017,21,0.0116107 +11,2017,22,0.008745802 +11,2017,23,0.01006311 +11,2017,24,0.008201177 +11,2017,25,0.006861983 +11,2017,26,0.00543288 +11,2017,27,0.004403708 +11,2017,28,0.003264412 +11,2017,29,0.002763138 +11,2017,30,0.00330755 +21,2017,0,0.072894816 +21,2017,1,0.072434256 +21,2017,2,0.070581062 +21,2017,3,0.069336729 +21,2017,4,0.066065498 +21,2017,5,0.063511163 +21,2017,6,0.038899438 +21,2017,7,0.043132777 +21,2017,8,0.038629616 +21,2017,9,0.047886668 +21,2017,10,0.051285619 +21,2017,11,0.047024215 +21,2017,12,0.045781291 +21,2017,13,0.040345236 +21,2017,14,0.037846106 +21,2017,15,0.033282246 +21,2017,16,0.028036595 +21,2017,17,0.026099594 +21,2017,18,0.01959749 +21,2017,19,0.01527012 +21,2017,20,0.013437843 +21,2017,21,0.010641344 +21,2017,22,0.010514314 +21,2017,23,0.007994722 +21,2017,24,0.006674204 +21,2017,25,0.005484711 +21,2017,26,0.004571473 +21,2017,27,0.003801804 +21,2017,28,0.003119534 +21,2017,29,0.002418379 +21,2017,30,0.003401139 +31,2017,0,0.081981478 +31,2017,1,0.081672071 +31,2017,2,0.078351639 +31,2017,3,0.074500025 +31,2017,4,0.069869285 +31,2017,5,0.065896958 +31,2017,6,0.042158644 +31,2017,7,0.036168322 +31,2017,8,0.026433513 +31,2017,9,0.043979373 +31,2017,10,0.044473659 +31,2017,11,0.043313913 +31,2017,12,0.04304902 +31,2017,13,0.041218455 +31,2017,14,0.036295189 +31,2017,15,0.032989708 +31,2017,16,0.027649441 +31,2017,17,0.024941098 +31,2017,18,0.021484692 +31,2017,19,0.016958691 +31,2017,20,0.013923995 +31,2017,21,0.010181433 +31,2017,22,0.00943751 +31,2017,23,0.008326765 +31,2017,24,0.005631636 +31,2017,25,0.004448371 +31,2017,26,0.003672183 +31,2017,27,0.003177208 +31,2017,28,0.003184426 +31,2017,29,0.002650022 +31,2017,30,0.001981277 +32,2017,0,0.081711152 +32,2017,1,0.081058475 +32,2017,2,0.077326741 +32,2017,3,0.073034852 +32,2017,4,0.0680662 +32,2017,5,0.063650308 +32,2017,6,0.045750355 +32,2017,7,0.038281956 +32,2017,8,0.028308352 +32,2017,9,0.048311003 +32,2017,10,0.048254757 +32,2017,11,0.048267873 +32,2017,12,0.04724485 +32,2017,13,0.045339782 +32,2017,14,0.039768381 +32,2017,15,0.035871962 +32,2017,16,0.030731285 +32,2017,17,0.02430131 +32,2017,18,0.017833534 +32,2017,19,0.01055601 +32,2017,20,0.011017613 +32,2017,21,0.007026564 +32,2017,22,0.007283643 +32,2017,23,0.004415422 +32,2017,24,0.004245481 +32,2017,25,0.002222133 +32,2017,26,0.002072416 +32,2017,27,0.002161655 +32,2017,28,0.00228317 +32,2017,29,0.002039921 +32,2017,30,0.001562853 +41,2017,0,0.057007581 +41,2017,1,0.056392949 +41,2017,2,0.054237447 +41,2017,3,0.049767609 +41,2017,4,0.044657182 +41,2017,5,0.040994396 +41,2017,6,0.037264855 +41,2017,7,0.032673591 +41,2017,8,0.026994076 +41,2017,9,0.034642979 +41,2017,10,0.045129375 +41,2017,11,0.04583852 +41,2017,12,0.047109064 +41,2017,13,0.045358688 +41,2017,14,0.041650279 +41,2017,15,0.038779327 +41,2017,16,0.036867686 +41,2017,17,0.034852287 +41,2017,18,0.033572993 +41,2017,19,0.025204807 +41,2017,20,0.020270752 +41,2017,21,0.016602118 +41,2017,22,0.02144822 +41,2017,23,0.016324235 +41,2017,24,0.013356845 +41,2017,25,0.009803459 +41,2017,26,0.010980395 +41,2017,27,0.012248764 +41,2017,28,0.012105423 +41,2017,29,0.011131661 +41,2017,30,0.026729771 +42,2017,0,0.056995705 +42,2017,1,0.056387222 +42,2017,2,0.054257197 +42,2017,3,0.049875587 +42,2017,4,0.044763394 +42,2017,5,0.041093094 +42,2017,6,0.049207539 +42,2017,7,0.029914227 +42,2017,8,0.0301546 +42,2017,9,0.042040349 +42,2017,10,0.040595506 +42,2017,11,0.028952049 +42,2017,12,0.044978331 +42,2017,13,0.036545495 +42,2017,14,0.03548021 +42,2017,15,0.035750907 +42,2017,16,0.040711672 +42,2017,17,0.027379135 +42,2017,18,0.02630203 +42,2017,19,0.030580305 +42,2017,20,0.027619007 +42,2017,21,0.025201542 +42,2017,22,0.020529427 +42,2017,23,0.01769615 +42,2017,24,0.014589905 +42,2017,25,0.012621628 +42,2017,26,0.012618819 +42,2017,27,0.018358187 +42,2017,28,0.013916562 +42,2017,29,0.010827742 +42,2017,30,0.024058005 +43,2017,0,0.057021775 +43,2017,1,0.05641236 +43,2017,2,0.054264906 +43,2017,3,0.049798245 +43,2017,4,0.044685058 +43,2017,5,0.041021006 +43,2017,6,0.028814449 +43,2017,7,0.031280369 +43,2017,8,0.036718636 +43,2017,9,0.040025074 +43,2017,10,0.041227165 +43,2017,11,0.047905693 +43,2017,12,0.042428381 +43,2017,13,0.041421918 +43,2017,14,0.035336123 +43,2017,15,0.036892492 +43,2017,16,0.033286704 +43,2017,17,0.036003397 +43,2017,18,0.033010297 +43,2017,19,0.025807032 +43,2017,20,0.023762666 +43,2017,21,0.020300339 +43,2017,22,0.025776257 +43,2017,23,0.012295969 +43,2017,24,0.014595472 +43,2017,25,0.011730756 +43,2017,26,0.014800565 +43,2017,27,0.016616537 +43,2017,28,0.009446803 +43,2017,29,0.011102153 +43,2017,30,0.026211366 +51,2017,0,0.065776279 +51,2017,1,0.06490551 +51,2017,2,0.062126187 +51,2017,3,0.057106911 +51,2017,4,0.051385928 +51,2017,5,0.046838307 +51,2017,6,0.025070643 +51,2017,7,0.019677531 +51,2017,8,0.02565607 +51,2017,9,0.019667691 +51,2017,10,0.068260342 +51,2017,11,0.050451482 +51,2017,12,0.04722014 +51,2017,13,0.027944503 +51,2017,14,0.027156259 +51,2017,15,0.019555128 +51,2017,16,0.023736695 +51,2017,17,0.032203038 +51,2017,18,0.045562505 +51,2017,19,0.04142915 +51,2017,20,0.019736427 +51,2017,21,0.025325444 +51,2017,22,0.032282403 +51,2017,23,0.022358685 +51,2017,24,0.010105312 +51,2017,25,0.008954126 +51,2017,26,0.013825793 +51,2017,27,0.009736231 +51,2017,28,0.014931401 +51,2017,29,0.008476795 +51,2017,30,0.012538181 +52,2017,0,0.066163669 +52,2017,1,0.065529129 +52,2017,2,0.062909587 +52,2017,3,0.058039629 +52,2017,4,0.0522883 +52,2017,5,0.047721278 +52,2017,6,0.026751256 +52,2017,7,0.016316774 +52,2017,8,0.017181661 +52,2017,9,0.035175601 +52,2017,10,0.045772592 +52,2017,11,0.047678817 +52,2017,12,0.040987941 +52,2017,13,0.035428562 +52,2017,14,0.030299863 +52,2017,15,0.027011381 +52,2017,16,0.028866674 +52,2017,17,0.046799572 +52,2017,18,0.039104808 +52,2017,19,0.02186778 +52,2017,20,0.02963022 +52,2017,21,0.019592091 +52,2017,22,0.02669922 +52,2017,23,0.020036311 +52,2017,24,0.013848344 +52,2017,25,0.010932886 +52,2017,26,0.009765647 +52,2017,27,0.013170304 +52,2017,28,0.012572463 +52,2017,29,0.011023682 +52,2017,30,0.020833987 +53,2017,0,0.065909949 +53,2017,1,0.065128866 +53,2017,2,0.06242549 +53,2017,3,0.057504572 +53,2017,4,0.051796526 +53,2017,5,0.047280263 +53,2017,6,0.017969142 +53,2017,7,0.011228822 +53,2017,8,0.012976302 +53,2017,9,0.022554099 +53,2017,10,0.03917392 +53,2017,11,0.03444959 +53,2017,12,0.031694845 +53,2017,13,0.023102912 +53,2017,14,0.01946102 +53,2017,15,0.016249235 +53,2017,16,0.039575204 +53,2017,17,0.096938318 +53,2017,18,0.083002788 +53,2017,19,0.013834729 +53,2017,20,0.011202625 +53,2017,21,0.012445858 +53,2017,22,0.021168901 +53,2017,23,0.017188893 +53,2017,24,0.047441226 +53,2017,25,0.008313776 +53,2017,26,0.012756287 +53,2017,27,0.007806646 +53,2017,28,0.031496964 +53,2017,29,0.009900728 +53,2017,30,0.00802124 +54,2017,0,0.066114452 +54,2017,1,0.065482807 +54,2017,2,0.062861626 +54,2017,3,0.057933263 +54,2017,4,0.052149172 +54,2017,5,0.047540313 +54,2017,6,0.034980328 +54,2017,7,0.030592695 +54,2017,8,0.025206171 +54,2017,9,0.032312195 +54,2017,10,0.041933595 +54,2017,11,0.042383485 +54,2017,12,0.043499745 +54,2017,13,0.041627279 +54,2017,14,0.038169562 +54,2017,15,0.035513978 +54,2017,16,0.03359531 +54,2017,17,0.031715311 +54,2017,18,0.030361564 +54,2017,19,0.017657059 +54,2017,20,0.026796376 +54,2017,21,0.016360301 +54,2017,22,0.019174335 +54,2017,23,0.017980529 +54,2017,24,0.012281859 +54,2017,25,0.010690718 +54,2017,26,0.007845046 +54,2017,27,0.010199144 +54,2017,28,0.013073413 +54,2017,29,0.011437481 +54,2017,30,0.022530724 +61,2017,0,0.04987871 +61,2017,1,0.049521105 +61,2017,2,0.047870437 +61,2017,3,0.04382777 +61,2017,4,0.039010097 +61,2017,5,0.038357544 +61,2017,6,0.01885787 +61,2017,7,0.014050241 +61,2017,8,0.01801406 +61,2017,9,0.016102406 +61,2017,10,0.052102959 +61,2017,11,0.038033342 +61,2017,12,0.036876584 +61,2017,13,0.022945066 +61,2017,14,0.020312774 +61,2017,15,0.015724521 +61,2017,16,0.03027911 +61,2017,17,0.041320663 +61,2017,18,0.036627306 +61,2017,19,0.036929408 +61,2017,20,0.02974184 +61,2017,21,0.040929826 +61,2017,22,0.046022819 +61,2017,23,0.037726504 +61,2017,24,0.027256711 +61,2017,25,0.020715842 +61,2017,26,0.01905537 +61,2017,27,0.023549532 +61,2017,28,0.023713996 +61,2017,29,0.021721428 +61,2017,30,0.042924184 +62,2017,0,0.049120311 +62,2017,1,0.048424657 +62,2017,2,0.046501217 +62,2017,3,0.041997722 +62,2017,4,0.037228598 +62,2017,5,0.035665196 +62,2017,6,0.038223923 +62,2017,7,0.030068643 +62,2017,8,0.039402337 +62,2017,9,0.030536821 +62,2017,10,0.105553893 +62,2017,11,0.07769114 +62,2017,12,0.07315426 +62,2017,13,0.04333652 +62,2017,14,0.042005104 +62,2017,15,0.030452941 +62,2017,16,0.034681411 +62,2017,17,0.054998957 +62,2017,18,0.040395087 +62,2017,19,0.026696857 +62,2017,20,0.01496067 +62,2017,21,0.016037785 +62,2017,22,0.014252219 +62,2017,23,0.008471154 +62,2017,24,0.005704773 +62,2017,25,0.003395258 +62,2017,26,0.002580048 +62,2017,27,0.002000772 +62,2017,28,0.001993916 +62,2017,29,0.001217495 +62,2017,30,0.003250085 +11,2018,0,0.071114019 +11,2018,1,0.07228206 +11,2018,2,0.070283416 +11,2018,3,0.063935905 +11,2018,4,0.058648139 +11,2018,5,0.052204394 +11,2018,6,0.046660972 +11,2018,7,0.037431236 +11,2018,8,0.033803069 +11,2018,9,0.035010155 +11,2018,10,0.062037147 +11,2018,11,0.055196474 +11,2018,12,0.052295075 +11,2018,13,0.045795713 +11,2018,14,0.038851957 +11,2018,15,0.03325831 +11,2018,16,0.029294584 +11,2018,17,0.024826241 +11,2018,18,0.019817967 +11,2018,19,0.014979146 +11,2018,20,0.012781724 +11,2018,21,0.012228939 +11,2018,22,0.01071753 +11,2018,23,0.008073019 +11,2018,24,0.009288991 +11,2018,25,0.00757029 +11,2018,26,0.006334115 +11,2018,27,0.005014948 +11,2018,28,0.004064946 +11,2018,29,0.003013292 +11,2018,30,0.003186258 +21,2018,0,0.071114018 +21,2018,1,0.072072856 +21,2018,2,0.071617488 +21,2018,3,0.069779052 +21,2018,4,0.06833178 +21,2018,5,0.064924108 +21,2018,6,0.062192974 +21,2018,7,0.037936455 +21,2018,8,0.04187369 +21,2018,9,0.03731721 +21,2018,10,0.04601822 +21,2018,11,0.049030325 +21,2018,12,0.044715035 +21,2018,13,0.041872896 +21,2018,14,0.034893969 +21,2018,15,0.031988671 +21,2018,16,0.027592795 +21,2018,17,0.022890322 +21,2018,18,0.021050113 +21,2018,19,0.015662808 +21,2018,20,0.012109978 +21,2018,21,0.010599626 +21,2018,22,0.008361388 +21,2018,23,0.008229571 +21,2018,24,0.006239405 +21,2018,25,0.005208239 +21,2018,26,0.004267135 +21,2018,27,0.003555835 +21,2018,28,0.002954188 +21,2018,29,0.002421317 +21,2018,30,0.00317853 +31,2018,0,0.080201996 +31,2018,1,0.080240623 +31,2018,2,0.0799253 +31,2018,3,0.076663908 +31,2018,4,0.072280397 +31,2018,5,0.067264363 +31,2018,6,0.062906343 +31,2018,7,0.039878073 +31,2018,8,0.033874595 +31,2018,9,0.024506665 +31,2018,10,0.040363509 +31,2018,11,0.040416115 +31,2018,12,0.038984837 +31,2018,13,0.038397704 +31,2018,14,0.036418438 +31,2018,15,0.031197577 +31,2018,16,0.02807903 +31,2018,17,0.02331817 +31,2018,18,0.020862548 +31,2018,19,0.017843295 +31,2018,20,0.013988495 +31,2018,21,0.011423588 +31,2018,22,0.008306416 +31,2018,23,0.007670645 +31,2018,24,0.006733489 +31,2018,25,0.004540286 +31,2018,26,0.003577486 +31,2018,27,0.002942032 +31,2018,28,0.002542561 +31,2018,29,0.00254055 +31,2018,30,0.002110959 +32,2018,0,0.08001722 +32,2018,1,0.07979178 +32,2018,2,0.079142073 +32,2018,3,0.075486772 +32,2018,4,0.070695626 +32,2018,5,0.065377532 +32,2018,6,0.060621665 +32,2018,7,0.043175789 +32,2018,8,0.035771582 +32,2018,9,0.026184374 +32,2018,10,0.044236852 +32,2018,11,0.043751215 +32,2018,12,0.043343577 +32,2018,13,0.042043102 +32,2018,14,0.039967531 +32,2018,15,0.034104211 +32,2018,16,0.030461904 +32,2018,17,0.025857534 +32,2018,18,0.020280551 +32,2018,19,0.014776842 +32,2018,20,0.008687138 +32,2018,21,0.009018296 +32,2018,22,0.005719342 +32,2018,23,0.00590638 +32,2018,24,0.003562332 +32,2018,25,0.003414867 +32,2018,26,0.001782975 +32,2018,27,0.001656526 +32,2018,28,0.001725879 +32,2018,29,0.001817327 +32,2018,30,0.001621221 +41,2018,0,0.058200267 +41,2018,1,0.055994506 +41,2018,2,0.055390797 +41,2018,3,0.053273599 +41,2018,4,0.048883195 +41,2018,5,0.0435559 +41,2018,6,0.039700994 +41,2018,7,0.036089123 +41,2018,8,0.031417598 +41,2018,9,0.025956407 +41,2018,10,0.033311282 +41,2018,11,0.043083635 +41,2018,12,0.043760634 +41,2018,13,0.044649006 +41,2018,14,0.042990036 +41,2018,15,0.039475282 +41,2018,16,0.036487066 +41,2018,17,0.034688423 +41,2018,18,0.032552026 +41,2018,19,0.031357165 +41,2018,20,0.023367624 +41,2018,21,0.018793213 +41,2018,22,0.015391987 +41,2018,23,0.019737079 +41,2018,24,0.015021886 +41,2018,25,0.012291234 +41,2018,26,0.008953792 +41,2018,27,0.010028723 +41,2018,28,0.011187163 +41,2018,29,0.01097284 +41,2018,30,0.023453331 +42,2018,0,0.058158735 +42,2018,1,0.055942892 +42,2018,2,0.055345649 +42,2018,3,0.05325497 +42,2018,4,0.048954295 +42,2018,5,0.043628339 +42,2018,6,0.039768179 +42,2018,7,0.047621 +42,2018,8,0.02874378 +42,2018,9,0.028974748 +42,2018,10,0.040395446 +42,2018,11,0.038727633 +42,2018,12,0.027619913 +42,2018,13,0.042599121 +42,2018,14,0.034612356 +42,2018,15,0.03360342 +42,2018,16,0.033613653 +42,2018,17,0.038277856 +42,2018,18,0.025553856 +42,2018,19,0.024548558 +42,2018,20,0.028331069 +42,2018,21,0.02558758 +42,2018,22,0.023347924 +42,2018,23,0.018878106 +42,2018,24,0.016272729 +42,2018,25,0.013416341 +42,2018,26,0.011519485 +42,2018,27,0.011516921 +42,2018,28,0.016755117 +42,2018,29,0.012605528 +42,2018,30,0.021826552 +43,2018,0,0.058209285 +43,2018,1,0.056017126 +43,2018,2,0.055418448 +43,2018,3,0.05330883 +43,2018,4,0.048920866 +43,2018,5,0.043589842 +43,2018,6,0.03973292 +43,2018,7,0.027909657 +43,2018,8,0.030082593 +43,2018,9,0.03531262 +43,2018,10,0.038492449 +43,2018,11,0.039364413 +43,2018,12,0.045741187 +43,2018,13,0.040218982 +43,2018,14,0.039264929 +43,2018,15,0.033496043 +43,2018,16,0.034717141 +43,2018,17,0.031323968 +43,2018,18,0.033632372 +43,2018,19,0.030836385 +43,2018,20,0.02392966 +43,2018,21,0.022034014 +43,2018,22,0.01882356 +43,2018,23,0.0237235 +43,2018,24,0.011316748 +43,2018,25,0.013433125 +43,2018,26,0.010715711 +43,2018,27,0.013519894 +43,2018,28,0.015178732 +43,2018,29,0.008564287 +43,2018,30,0.023171006 +51,2018,0,0.066300202 +51,2018,1,0.06444864 +51,2018,2,0.063595446 +51,2018,3,0.060872222 +51,2018,4,0.055954256 +51,2018,5,0.049866647 +51,2018,6,0.045014047 +51,2018,7,0.024094191 +51,2018,8,0.018726517 +51,2018,9,0.024416113 +51,2018,10,0.018717151 +51,2018,11,0.064320903 +51,2018,12,0.047539827 +51,2018,13,0.044051956 +51,2018,14,0.026069597 +51,2018,15,0.025334239 +51,2018,16,0.018059633 +51,2018,17,0.021921411 +51,2018,18,0.029438157 +51,2018,19,0.041650609 +51,2018,20,0.037483449 +51,2018,21,0.017856735 +51,2018,22,0.022913456 +51,2018,23,0.028904964 +51,2018,24,0.020019482 +51,2018,25,0.009048077 +51,2018,26,0.007933323 +51,2018,27,0.012249602 +51,2018,28,0.008626265 +51,2018,29,0.013089081 +51,2018,30,0.011481711 +52,2018,0,0.066616725 +52,2018,1,0.065137707 +52,2018,2,0.064513006 +52,2018,3,0.061934084 +52,2018,4,0.057139641 +52,2018,5,0.050984587 +52,2018,6,0.04608158 +52,2018,7,0.025832085 +52,2018,8,0.015602317 +52,2018,9,0.016429334 +52,2018,10,0.033635381 +52,2018,11,0.043336876 +52,2018,12,0.045141665 +52,2018,13,0.038420451 +52,2018,14,0.033209312 +52,2018,15,0.028401876 +52,2018,16,0.025064755 +52,2018,17,0.026786343 +52,2018,18,0.042985707 +52,2018,19,0.035918017 +52,2018,20,0.019879554 +52,2018,21,0.026936231 +52,2018,22,0.017810772 +52,2018,23,0.024020032 +52,2018,24,0.018025726 +52,2018,25,0.012458703 +52,2018,26,0.009732741 +52,2018,27,0.008693634 +52,2018,28,0.01172455 +52,2018,29,0.011073818 +52,2018,30,0.016472823 +53,2018,0,0.066328272 +53,2018,1,0.064606953 +53,2018,2,0.063841311 +53,2018,3,0.061191379 +53,2018,4,0.056367744 +53,2018,5,0.050286385 +53,2018,6,0.045458027 +53,2018,7,0.017276591 +53,2018,8,0.010690657 +53,2018,9,0.012354386 +53,2018,10,0.021473147 +53,2018,11,0.036928744 +53,2018,12,0.032475179 +53,2018,13,0.029580833 +53,2018,14,0.021561972 +53,2018,15,0.018162991 +53,2018,16,0.015012914 +53,2018,17,0.036564131 +53,2018,18,0.088652926 +53,2018,19,0.075908476 +53,2018,20,0.012522413 +53,2018,21,0.010139981 +53,2018,22,0.011265286 +53,2018,23,0.0189622 +53,2018,24,0.015397079 +53,2018,25,0.04249583 +53,2018,26,0.007369094 +53,2018,27,0.011306809 +53,2018,28,0.006919588 +53,2018,29,0.027622382 +53,2018,30,0.011275391 +54,2018,0,0.066571659 +54,2018,1,0.06504522 +54,2018,2,0.06442379 +54,2018,3,0.061845 +54,2018,4,0.05699634 +54,2018,5,0.050814529 +54,2018,6,0.045875777 +54,2018,7,0.033755557 +54,2018,8,0.029233354 +54,2018,9,0.024086173 +54,2018,10,0.030876451 +54,2018,11,0.039675307 +54,2018,12,0.040100969 +54,2018,13,0.040747331 +54,2018,14,0.038993344 +54,2018,15,0.035754412 +54,2018,16,0.032932303 +54,2018,17,0.031153112 +54,2018,18,0.029111009 +54,2018,19,0.027868425 +54,2018,20,0.016040814 +54,2018,21,0.024343561 +54,2018,22,0.014862756 +54,2018,23,0.017238577 +54,2018,24,0.016165293 +54,2018,25,0.011041936 +54,2018,26,0.009510719 +54,2018,27,0.006979141 +54,2018,28,0.009073403 +54,2018,29,0.011507265 +54,2018,30,0.017376332 +61,2018,0,0.051848342 +61,2018,1,0.049509229 +61,2018,2,0.049154274 +61,2018,3,0.047515833 +61,2018,4,0.043503112 +61,2018,5,0.038501076 +61,2018,6,0.037640667 +61,2018,7,0.018505429 +61,2018,8,0.013708396 +61,2018,9,0.017575774 +61,2018,10,0.015710632 +61,2018,11,0.050541376 +61,2018,12,0.036893441 +61,2018,13,0.035563336 +61,2018,14,0.022127947 +61,2018,15,0.019589396 +61,2018,16,0.01507584 +61,2018,17,0.029030011 +61,2018,18,0.039382983 +61,2018,19,0.034909715 +61,2018,20,0.034989337 +61,2018,21,0.028179364 +61,2018,22,0.038779594 +61,2018,23,0.04334542 +61,2018,24,0.035531747 +61,2018,25,0.025671039 +61,2018,26,0.019393832 +61,2018,27,0.017839325 +61,2018,28,0.022046686 +61,2018,29,0.022066887 +61,2018,30,0.045869828 +62,2018,0,0.050774499 +62,2018,1,0.047746643 +62,2018,2,0.047070443 +62,2018,3,0.045200793 +62,2018,4,0.040823239 +62,2018,5,0.035981833 +62,2018,6,0.034273773 +62,2018,7,0.036732675 +62,2018,8,0.02872946 +62,2018,9,0.037647454 +62,2018,10,0.029176787 +62,2018,11,0.100269697 +62,2018,12,0.073801798 +62,2018,13,0.069087934 +62,2018,14,0.040927632 +62,2018,15,0.039670223 +62,2018,16,0.028591972 +62,2018,17,0.032562041 +62,2018,18,0.051334172 +62,2018,19,0.037703411 +62,2018,20,0.024770471 +62,2018,21,0.013881141 +62,2018,22,0.014880534 +62,2018,23,0.013145081 +62,2018,24,0.007813099 +62,2018,25,0.005261616 +62,2018,26,0.003112752 +62,2018,27,0.002365373 +62,2018,28,0.001834296 +62,2018,29,0.001816996 +62,2018,30,0.003011908 +11,2019,0,0.070678933 +11,2019,1,0.070490207 +11,2019,2,0.069938004 +11,2019,3,0.064916283 +11,2019,4,0.059053494 +11,2019,5,0.054169524 +11,2019,6,0.04821785 +11,2019,7,0.043097747 +11,2019,8,0.034572831 +11,2019,9,0.031221726 +11,2019,10,0.032336635 +11,2019,11,0.057299733 +11,2019,12,0.050981442 +11,2019,13,0.048301606 +11,2019,14,0.042298563 +11,2019,15,0.03588506 +11,2019,16,0.030718568 +11,2019,17,0.027057528 +11,2019,18,0.022930406 +11,2019,19,0.018304585 +11,2019,20,0.013835276 +11,2019,21,0.011805658 +11,2019,22,0.011295087 +11,2019,23,0.009899095 +11,2019,24,0.00745653 +11,2019,25,0.008579645 +11,2019,26,0.006992191 +11,2019,27,0.005850416 +11,2019,28,0.004631986 +11,2019,29,0.00375453 +11,2019,30,0.003428889 +21,2019,0,0.070678934 +21,2019,1,0.070282091 +21,2019,2,0.071229712 +21,2019,3,0.07077332 +21,2019,4,0.068733781 +21,2019,5,0.067114276 +21,2019,6,0.06353702 +21,2019,7,0.060610526 +21,2019,8,0.036799618 +21,2019,9,0.040414628 +21,2019,10,0.035824973 +21,2019,11,0.043945432 +21,2019,12,0.046565325 +21,2019,13,0.040813413 +21,2019,14,0.036095228 +21,2019,15,0.029379914 +21,2019,16,0.026406073 +21,2019,17,0.022422546 +21,2019,18,0.018369792 +21,2019,19,0.016736192 +21,2019,20,0.012354319 +21,2019,21,0.009499338 +21,2019,22,0.008281685 +21,2019,23,0.006506955 +21,2019,24,0.006385398 +21,2019,25,0.004840657 +21,2019,26,0.004028187 +21,2019,27,0.003299556 +21,2019,28,0.002746707 +21,2019,29,0.002279344 +21,2019,30,0.003045063 +31,2019,0,0.077798626 +31,2019,1,0.078485701 +31,2019,2,0.078511514 +31,2019,3,0.078191047 +31,2019,4,0.074382096 +31,2019,5,0.069600053 +31,2019,6,0.064237554 +31,2019,7,0.059540083 +31,2019,8,0.037380778 +31,2019,9,0.031439565 +31,2019,10,0.022521755 +31,2019,11,0.036738583 +31,2019,12,0.036442379 +31,2019,13,0.034843217 +31,2019,14,0.034003027 +31,2019,15,0.031396291 +31,2019,16,0.026639109 +31,2019,17,0.023762344 +31,2019,18,0.019576659 +31,2019,19,0.017393527 +31,2019,20,0.014777707 +31,2019,21,0.011524594 +31,2019,22,0.009360278 +31,2019,23,0.00678131 +31,2019,24,0.006231338 +31,2019,25,0.005453937 +31,2019,26,0.003668687 +31,2019,27,0.00288003 +31,2019,28,0.002365825 +31,2019,29,0.002038516 +31,2019,30,0.002033868 +32,2019,0,0.077672569 +32,2019,1,0.078178002 +32,2019,2,0.077945844 +32,2019,3,0.077299363 +32,2019,4,0.073121326 +32,2019,5,0.06796375 +32,2019,6,0.062334464 +32,2019,7,0.057284694 +32,2019,8,0.040406403 +32,2019,9,0.033146396 +32,2019,10,0.024024589 +32,2019,11,0.040198833 +32,2019,12,0.03938565 +32,2019,13,0.03867613 +32,2019,14,0.037170877 +32,2019,15,0.034400131 +32,2019,16,0.029073852 +32,2019,17,0.025737121 +32,2019,18,0.021673396 +32,2019,19,0.016880908 +32,2019,20,0.01221826 +32,2019,21,0.00714541 +32,2019,22,0.007377453 +32,2019,23,0.004661673 +32,2019,24,0.004790342 +32,2019,25,0.002880713 +32,2019,26,0.002754844 +32,2019,27,0.001433046 +32,2019,28,0.001329932 +32,2019,29,0.001381493 +32,2019,30,0.001452526 +41,2019,0,0.057741312 +41,2019,1,0.057194017 +41,2019,2,0.055026393 +41,2019,3,0.054433121 +41,2019,4,0.052352529 +41,2019,5,0.047686252 +41,2019,6,0.042175957 +41,2019,7,0.038443183 +41,2019,8,0.034686034 +41,2019,9,0.03019613 +41,2019,10,0.024947262 +41,2019,11,0.03177647 +41,2019,12,0.041098564 +41,2019,13,0.041429454 +41,2019,14,0.042270501 +41,2019,15,0.040699906 +41,2019,16,0.03708831 +41,2019,17,0.034280784 +41,2019,18,0.032341271 +41,2019,19,0.030349431 +41,2019,20,0.029009762 +41,2019,21,0.021618319 +41,2019,22,0.01738635 +41,2019,23,0.014128974 +41,2019,24,0.018117523 +41,2019,25,0.013789242 +41,2019,26,0.011194206 +41,2019,27,0.00815464 +41,2019,28,0.009133631 +41,2019,29,0.010108169 +41,2019,30,0.021147875 +42,2019,0,0.057729304 +42,2019,1,0.057141318 +42,2019,2,0.054964238 +42,2019,3,0.054377443 +42,2019,4,0.052323338 +42,2019,5,0.04774568 +42,2019,6,0.042237315 +42,2019,7,0.038500231 +42,2019,8,0.045760051 +42,2019,9,0.027620521 +42,2019,10,0.027842464 +42,2019,11,0.038526219 +42,2019,12,0.036935581 +42,2019,13,0.02614313 +42,2019,14,0.040321429 +42,2019,15,0.0327617 +42,2019,16,0.031564939 +42,2019,17,0.031574552 +42,2019,18,0.035680407 +42,2019,19,0.023819829 +42,2019,20,0.022706126 +42,2019,21,0.026204749 +42,2019,22,0.023667166 +42,2019,23,0.021427617 +42,2019,24,0.01732543 +42,2019,25,0.014934339 +42,2019,26,0.012216352 +42,2019,27,0.010489156 +42,2019,28,0.010486821 +42,2019,29,0.01513595 +42,2019,30,0.021839376 +43,2019,0,0.057755796 +43,2019,1,0.057217229 +43,2019,2,0.055062431 +43,2019,3,0.054473956 +43,2019,4,0.052400292 +43,2019,5,0.047734972 +43,2019,6,0.042219412 +43,2019,7,0.038483749 +43,2019,8,0.026831301 +43,2019,9,0.028920281 +43,2019,10,0.033948234 +43,2019,11,0.036728127 +43,2019,12,0.037560124 +43,2019,13,0.043315364 +43,2019,14,0.038086021 +43,2019,15,0.037182565 +43,2019,16,0.031478515 +43,2019,17,0.032626064 +43,2019,18,0.029211793 +43,2019,19,0.031364543 +43,2019,20,0.028535124 +43,2019,21,0.022143834 +43,2019,22,0.020389658 +43,2019,23,0.017283298 +43,2019,24,0.021782295 +43,2019,25,0.010390741 +43,2019,26,0.012237248 +43,2019,27,0.009761751 +43,2019,28,0.012316293 +43,2019,29,0.013718196 +43,2019,30,0.018841126 +51,2019,0,0.065236728 +51,2019,1,0.0651334 +51,2019,2,0.063314423 +51,2019,3,0.062476245 +51,2019,4,0.059800946 +51,2019,5,0.05440779 +51,2019,6,0.047987806 +51,2019,7,0.04331804 +51,2019,8,0.022944499 +51,2019,9,0.017832952 +51,2019,10,0.02325106 +51,2019,11,0.017636126 +51,2019,12,0.060605993 +51,2019,13,0.044316858 +51,2019,14,0.041065448 +51,2019,15,0.024302205 +51,2019,16,0.023362364 +51,2019,17,0.016653972 +51,2019,18,0.019995097 +51,2019,19,0.026851318 +51,2019,20,0.037572476 +51,2019,21,0.033813335 +51,2019,22,0.01610833 +51,2019,23,0.020439898 +51,2019,24,0.02578461 +51,2019,25,0.017858335 +51,2019,26,0.007980481 +51,2019,27,0.006997258 +51,2019,28,0.010804253 +51,2019,29,0.007521838 +51,2019,30,0.014624162 +52,2019,0,0.065429824 +52,2019,1,0.065638063 +52,2019,2,0.064180773 +52,2019,3,0.063565249 +52,2019,4,0.061024214 +52,2019,5,0.055724869 +52,2019,6,0.04920885 +52,2019,7,0.04447661 +52,2019,8,0.02467228 +52,2019,9,0.014901807 +52,2019,10,0.015691692 +52,2019,11,0.031786548 +52,2019,12,0.040954783 +52,2019,13,0.042205837 +52,2019,14,0.035921743 +52,2019,15,0.031049515 +52,2019,16,0.026268757 +52,2019,17,0.02318227 +52,2019,18,0.024504847 +52,2019,19,0.039324449 +52,2019,20,0.032497084 +52,2019,21,0.01798617 +52,2019,22,0.024370749 +52,2019,23,0.015935088 +52,2019,24,0.021490439 +52,2019,25,0.016127405 +52,2019,26,0.011021208 +52,2019,27,0.00860977 +52,2019,28,0.007690555 +52,2019,29,0.010253707 +52,2019,30,0.014304907 +53,2019,0,0.065454433 +53,2019,1,0.065378428 +53,2019,2,0.063681759 +53,2019,3,0.062927082 +53,2019,4,0.060315098 +53,2019,5,0.05499276 +53,2019,6,0.048553221 +53,2019,7,0.043891277 +53,2019,8,0.016507115 +53,2019,9,0.01021451 +53,2019,10,0.011804139 +53,2019,11,0.020300467 +53,2019,12,0.034912011 +53,2019,13,0.030374548 +53,2019,14,0.027667419 +53,2019,15,0.020167253 +53,2019,16,0.01680518 +53,2019,17,0.013890594 +53,2019,18,0.033462405 +53,2019,19,0.081132521 +53,2019,20,0.068704571 +53,2019,21,0.011334004 +53,2019,22,0.009177671 +53,2019,23,0.010082709 +53,2019,24,0.016971638 +53,2019,25,0.013780766 +53,2019,26,0.037606765 +53,2019,27,0.006521293 +53,2019,28,0.010005982 +53,2019,29,0.006053803 +53,2019,30,0.027329956 +54,2019,0,0.065355046 +54,2019,1,0.065518694 +54,2019,2,0.064016398 +54,2019,3,0.063404798 +54,2019,4,0.060866796 +54,2019,5,0.055521589 +54,2019,6,0.048988663 +54,2019,7,0.044227371 +54,2019,8,0.032203158 +54,2019,9,0.027888929 +54,2019,10,0.022978463 +54,2019,11,0.02914592 +54,2019,12,0.037451627 +54,2019,13,0.037450118 +54,2019,14,0.038053752 +54,2019,15,0.036415711 +54,2019,16,0.033031288 +54,2019,17,0.030424116 +54,2019,18,0.028467111 +54,2019,19,0.026601076 +54,2019,20,0.025185341 +54,2019,21,0.014496455 +54,2019,22,0.02199984 +54,2019,23,0.013282335 +54,2019,24,0.015405525 +54,2019,25,0.014446368 +54,2019,26,0.009756745 +54,2019,27,0.008403749 +54,2019,28,0.006166826 +54,2019,29,0.007926077 +54,2019,30,0.014920323 +61,2019,0,0.051973211 +61,2019,1,0.051497502 +61,2019,2,0.049174218 +61,2019,3,0.048821664 +61,2019,4,0.047194309 +61,2019,5,0.042961016 +61,2019,6,0.037802068 +61,2019,7,0.036957281 +61,2019,8,0.018064075 +61,2019,9,0.013381451 +61,2019,10,0.017156592 +61,2019,11,0.01524647 +61,2019,12,0.049048159 +61,2019,13,0.035593357 +61,2019,14,0.034310124 +61,2019,15,0.021348183 +61,2019,16,0.018787537 +61,2019,17,0.014458735 +61,2019,18,0.027676406 +61,2019,19,0.037546643 +61,2019,20,0.033083162 +61,2019,21,0.033158617 +61,2019,22,0.026704958 +61,2019,23,0.036529732 +61,2019,24,0.040830664 +61,2019,25,0.033470314 +61,2019,26,0.024035508 +61,2019,27,0.018158229 +61,2019,28,0.016702762 +61,2019,29,0.020516524 +61,2019,30,0.04781054 +62,2019,0,0.050894371 +62,2019,1,0.0493841 +62,2019,2,0.046439158 +62,2019,3,0.045781475 +62,2019,4,0.043963023 +62,2019,5,0.039477704 +62,2019,6,0.034595227 +62,2019,7,0.032952989 +62,2019,8,0.035112304 +62,2019,9,0.027462132 +62,2019,10,0.03598673 +62,2019,11,0.027727028 +62,2019,12,0.095287418 +62,2019,13,0.069723139 +62,2019,14,0.065269787 +62,2019,15,0.038665766 +62,2019,16,0.037256637 +62,2019,17,0.0268524 +62,2019,18,0.030399352 +62,2019,19,0.047924684 +62,2019,20,0.034989002 +62,2019,21,0.022987153 +62,2019,22,0.012881786 +62,2019,23,0.013726252 +62,2019,24,0.012125418 +62,2019,25,0.007207037 +62,2019,26,0.004824132 +62,2019,27,0.002853939 +62,2019,28,0.002168701 +62,2019,29,0.001671553 +62,2019,30,0.003409559 +11,2020,0,0.070449506 +11,2020,1,0.070061398 +11,2020,2,0.068219522 +11,2020,3,0.064635989 +11,2020,4,0.059994966 +11,2020,5,0.054576636 +11,2020,6,0.05006292 +11,2020,7,0.044562444 +11,2020,8,0.039830497 +11,2020,9,0.031951858 +11,2020,10,0.028854801 +11,2020,11,0.029885188 +11,2020,12,0.052955828 +11,2020,13,0.047116528 +11,2020,14,0.044639851 +11,2020,15,0.0390919 +11,2020,16,0.033164606 +11,2020,17,0.028389787 +11,2020,18,0.025006291 +11,2020,19,0.021192047 +11,2020,20,0.01691691 +11,2020,21,0.012786421 +11,2020,22,0.010910669 +11,2020,23,0.010438804 +11,2020,24,0.009148643 +11,2020,25,0.006891249 +11,2020,26,0.00792922 +11,2020,27,0.006462111 +11,2020,28,0.005406895 +11,2020,29,0.004280834 +11,2020,30,0.004185659 +21,2020,0,0.07044951 +21,2020,1,0.069848958 +21,2020,2,0.069456776 +21,2020,3,0.070386779 +21,2020,4,0.069703722 +21,2020,5,0.067494671 +21,2020,6,0.065659845 +21,2020,7,0.061893899 +21,2020,8,0.058761538 +21,2020,9,0.035492655 +21,2020,10,0.038765771 +21,2020,11,0.034177373 +21,2020,12,0.04168821 +21,2020,13,0.042404899 +21,2020,14,0.035040531 +21,2020,15,0.030246698 +21,2020,16,0.024121729 +21,2020,17,0.021331376 +21,2020,18,0.017880574 +21,2020,19,0.01450821 +21,2020,20,0.013109784 +21,2020,21,0.009622239 +21,2020,22,0.007368336 +21,2020,23,0.00639744 +21,2020,24,0.005011086 +21,2020,25,0.004916892 +21,2020,26,0.003715504 +21,2020,27,0.003091149 +21,2020,28,0.002529308 +21,2020,29,0.002103014 +21,2020,30,0.002821529 +31,2020,0,0.076020065 +31,2020,1,0.076141821 +31,2020,2,0.076802665 +31,2020,3,0.076816321 +31,2020,4,0.075878887 +31,2020,5,0.071644017 +31,2020,6,0.066492947 +31,2020,7,0.060828811 +31,2020,8,0.055843949 +31,2020,9,0.034717798 +31,2020,10,0.028916455 +31,2020,11,0.020517981 +31,2020,12,0.033160503 +31,2020,13,0.032607755 +31,2020,14,0.030893698 +31,2020,15,0.029359927 +31,2020,16,0.026853986 +31,2020,17,0.022584311 +31,2020,18,0.019987423 +31,2020,19,0.016353868 +31,2020,20,0.014435039 +31,2020,21,0.012200823 +31,2020,22,0.009463891 +31,2020,23,0.007658912 +31,2020,24,0.005521655 +31,2020,25,0.00505911 +31,2020,26,0.004417476 +31,2020,27,0.002960652 +31,2020,28,0.002321647 +31,2020,29,0.001901544 +31,2020,30,0.001636058 +32,2020,0,0.075933025 +32,2020,1,0.075931411 +32,2020,2,0.076413973 +32,2020,3,0.076175547 +32,2020,4,0.074927683 +32,2020,5,0.070349018 +32,2020,6,0.06485535 +32,2020,7,0.058959124 +32,2020,8,0.053667054 +32,2020,9,0.037484913 +32,2020,10,0.030451403 +32,2020,11,0.021862046 +32,2020,12,0.036242205 +32,2020,13,0.035200973 +32,2020,14,0.034252883 +32,2020,15,0.032058461 +32,2020,16,0.029389553 +32,2020,17,0.024620235 +32,2020,18,0.021623697 +32,2020,19,0.018084701 +32,2020,20,0.013993572 +32,2020,21,0.010076134 +32,2020,22,0.005861026 +32,2020,23,0.006029583 +32,2020,24,0.003791402 +32,2020,25,0.003884739 +32,2020,26,0.002330594 +32,2020,27,0.00222063 +32,2020,28,0.001153883 +32,2020,29,0.001067715 +32,2020,30,0.00110748 +41,2020,0,0.057645144 +41,2020,1,0.056755105 +41,2020,2,0.056217157 +41,2020,3,0.054086556 +41,2020,4,0.053503417 +41,2020,5,0.051068345 +41,2020,6,0.046161277 +41,2020,7,0.040827197 +41,2020,8,0.036927401 +41,2020,9,0.033318393 +41,2020,10,0.029005522 +41,2020,11,0.023777759 +41,2020,12,0.030286821 +41,2020,13,0.038865728 +41,2020,14,0.039178641 +41,2020,15,0.039973995 +41,2020,16,0.038185522 +41,2020,17,0.034797046 +41,2020,18,0.03190758 +41,2020,19,0.030102336 +41,2020,20,0.02802229 +41,2020,21,0.026785345 +41,2020,22,0.019960665 +41,2020,23,0.01592367 +41,2020,24,0.012940331 +41,2020,25,0.016593332 +41,2020,26,0.012526453 +41,2020,27,0.010169064 +41,2020,28,0.007407856 +41,2020,29,0.008229148 +41,2020,30,0.018865519 +42,2020,0,0.057684907 +42,2020,1,0.056782443 +42,2020,2,0.056204101 +42,2020,3,0.054062729 +42,2020,4,0.053485558 +42,2020,5,0.051075077 +42,2020,6,0.046250685 +42,2020,7,0.040914796 +42,2020,8,0.037007709 +42,2020,9,0.043986091 +42,2020,10,0.026549768 +42,2020,11,0.026555542 +42,2020,12,0.036745477 +42,2020,13,0.034953009 +42,2020,14,0.024739858 +42,2020,15,0.038157116 +42,2020,16,0.03075893 +42,2020,17,0.029635329 +42,2020,18,0.029408968 +42,2020,19,0.033233217 +42,2020,20,0.022008538 +42,2020,21,0.020979522 +42,2020,22,0.024212105 +42,2020,23,0.021691046 +42,2020,24,0.019638491 +42,2020,25,0.015878822 +42,2020,26,0.013576042 +42,2020,27,0.01110526 +42,2020,28,0.009535154 +42,2020,29,0.009454853 +42,2020,30,0.023730851 +43,2020,0,0.057607699 +43,2020,1,0.056732465 +43,2020,2,0.05620344 +43,2020,3,0.054086822 +43,2020,4,0.053508773 +43,2020,5,0.051081733 +43,2020,6,0.046178422 +43,2020,7,0.040842715 +43,2020,8,0.036942354 +43,2020,9,0.025756624 +43,2020,10,0.027761933 +43,2020,11,0.032335756 +43,2020,12,0.034983609 +43,2020,13,0.035496455 +43,2020,14,0.040935483 +43,2020,15,0.035993457 +43,2020,16,0.034862817 +43,2020,17,0.029514632 +43,2020,18,0.030347687 +43,2020,19,0.027171845 +43,2020,20,0.028940754 +43,2020,21,0.026329986 +43,2020,22,0.020432603 +43,2020,23,0.018662185 +43,2020,24,0.015819006 +43,2020,25,0.019936834 +43,2020,26,0.009433048 +43,2020,27,0.011109366 +43,2020,28,0.00886203 +43,2020,29,0.011089431 +43,2020,30,0.021039965 +51,2020,0,0.064701525 +51,2020,1,0.064200627 +51,2020,2,0.06409894 +51,2020,3,0.062308853 +51,2020,4,0.061483987 +51,2020,5,0.058249663 +51,2020,6,0.052449144 +51,2020,7,0.046260275 +51,2020,8,0.041322898 +51,2020,9,0.021887722 +51,2020,10,0.017011602 +51,2020,11,0.021946289 +51,2020,12,0.016646446 +51,2020,13,0.056595376 +51,2020,14,0.041384179 +51,2020,15,0.038347931 +51,2020,16,0.022449554 +51,2020,17,0.021581361 +51,2020,18,0.01521686 +51,2020,19,0.01826967 +51,2020,20,0.024264165 +51,2020,21,0.033952328 +51,2020,22,0.030555384 +51,2020,23,0.014394248 +51,2020,24,0.018264895 +51,2020,25,0.023040878 +51,2020,26,0.015778405 +51,2020,27,0.007051008 +51,2020,28,0.006182299 +51,2020,29,0.009437224 +51,2020,30,0.010665104 +52,2020,0,0.064677804 +52,2020,1,0.064367049 +52,2020,2,0.064571906 +52,2020,3,0.063138286 +52,2020,4,0.062532761 +52,2020,5,0.059419406 +52,2020,6,0.053699113 +52,2020,7,0.04741997 +52,2020,8,0.042412551 +52,2020,9,0.023527295 +52,2020,10,0.014210248 +52,2020,11,0.014805696 +52,2020,12,0.029991794 +52,2020,13,0.038230568 +52,2020,14,0.039398405 +52,2020,15,0.033532314 +52,2020,16,0.028671975 +52,2020,17,0.024257291 +52,2020,18,0.021174049 +52,2020,19,0.022382055 +52,2020,20,0.035522468 +52,2020,21,0.029355188 +52,2020,22,0.016247224 +52,2020,23,0.021769481 +52,2020,24,0.01423422 +52,2020,25,0.019196608 +52,2020,26,0.014243849 +52,2020,27,0.009734016 +52,2020,28,0.007604215 +52,2020,29,0.00671503 +52,2020,30,0.01295717 +53,2020,0,0.065396486 +53,2020,1,0.065106757 +53,2020,2,0.065031156 +53,2020,3,0.063343499 +53,2020,4,0.06259283 +53,2020,5,0.059381518 +53,2020,6,0.05358247 +53,2020,7,0.047308073 +53,2020,8,0.042319457 +53,2020,9,0.015915968 +53,2020,10,0.009848711 +53,2020,11,0.011261404 +53,2020,12,0.019367085 +53,2020,13,0.032951876 +53,2020,14,0.028669168 +53,2020,15,0.026114032 +53,2020,16,0.018829929 +53,2020,17,0.015690801 +53,2020,18,0.012828265 +53,2020,19,0.030903257 +53,2020,20,0.074102797 +53,2020,21,0.062751667 +53,2020,22,0.01035197 +53,2020,23,0.008289166 +53,2020,24,0.009106586 +53,2020,25,0.015328587 +53,2020,26,0.012306523 +53,2020,27,0.033583657 +53,2020,28,0.005823657 +53,2020,29,0.008833831 +53,2020,30,0.013079621 +54,2020,0,0.064599821 +54,2020,1,0.064215966 +54,2020,2,0.064376762 +54,2020,3,0.06290065 +54,2020,4,0.062299709 +54,2020,5,0.05919467 +54,2020,6,0.053438714 +54,2020,7,0.047150869 +54,2020,8,0.042124028 +54,2020,9,0.030671657 +54,2020,10,0.026562602 +54,2020,11,0.021654896 +54,2020,12,0.027467105 +54,2020,13,0.034918282 +54,2020,14,0.034916874 +54,2020,15,0.035479677 +54,2020,16,0.033586723 +54,2020,17,0.030465222 +54,2020,18,0.027755048 +54,2020,19,0.025969728 +54,2020,20,0.024000249 +54,2020,21,0.022722932 +54,2020,22,0.013079115 +54,2020,23,0.019627942 +54,2020,24,0.011850309 +54,2020,25,0.013744589 +54,2020,26,0.01274376 +54,2020,27,0.008606842 +54,2020,28,0.007413307 +54,2020,29,0.005378089 +54,2020,30,0.011083676 +61,2020,0,0.052247372 +61,2020,1,0.051588967 +61,2020,2,0.051116775 +61,2020,3,0.048810667 +61,2020,4,0.04846072 +61,2020,5,0.046579249 +61,2020,6,0.042158852 +61,2020,7,0.037096232 +61,2020,8,0.036058802 +61,2020,9,0.017624914 +61,2020,10,0.013056131 +61,2020,11,0.01664274 +61,2020,12,0.014789827 +61,2020,13,0.04730253 +61,2020,14,0.034326585 +61,2020,15,0.033089023 +61,2020,16,0.020468008 +61,2020,17,0.018012936 +61,2020,18,0.013781071 +61,2020,19,0.026379244 +61,2020,20,0.035575133 +61,2020,21,0.031346022 +61,2020,22,0.031417515 +61,2020,23,0.025152127 +61,2020,24,0.034405613 +61,2020,25,0.038456456 +61,2020,26,0.03133534 +61,2020,27,0.022502353 +61,2020,28,0.016999968 +61,2020,29,0.015543148 +61,2020,30,0.047675622 +62,2020,0,0.051211457 +62,2020,1,0.049516474 +62,2020,2,0.048047092 +62,2020,3,0.045181879 +62,2020,4,0.044542003 +62,2020,5,0.042529774 +62,2020,6,0.037972465 +62,2020,7,0.033276152 +62,2020,8,0.031514381 +62,2020,9,0.033579428 +62,2020,10,0.026263234 +62,2020,11,0.034216759 +62,2020,12,0.026363301 +62,2020,13,0.090074092 +62,2020,14,0.065908476 +62,2020,15,0.061698773 +62,2020,16,0.036336572 +62,2020,17,0.035012328 +62,2020,18,0.025086405 +62,2020,19,0.028400085 +62,2020,20,0.044507926 +62,2020,21,0.032494485 +62,2020,22,0.021348299 +62,2020,23,0.011892183 +62,2020,24,0.012671775 +62,2020,25,0.01119392 +62,2020,26,0.006613541 +62,2020,27,0.004426867 +62,2020,28,0.002618918 +62,2020,29,0.001978122 +62,2020,30,0.003522648 +11,2021,0,0.070153149 +11,2021,1,0.069832073 +11,2021,2,0.067826371 +11,2021,3,0.06311198 +11,2021,4,0.059796744 +11,2021,5,0.05550319 +11,2021,6,0.050490526 +11,2021,7,0.046314749 +11,2021,8,0.041226089 +11,2021,9,0.036848419 +11,2021,10,0.029559647 +11,2021,11,0.026694464 +11,2021,12,0.027647707 +11,2021,13,0.048991067 +11,2021,14,0.043588951 +11,2021,15,0.041297701 +11,2021,16,0.03616512 +11,2021,17,0.030681598 +11,2021,18,0.026264266 +11,2021,19,0.02313409 +11,2021,20,0.019605415 +11,2021,21,0.015650355 +11,2021,22,0.011829111 +11,2021,23,0.010093796 +11,2021,24,0.009657259 +11,2021,25,0.008463691 +11,2021,26,0.006375306 +11,2021,27,0.007335566 +11,2021,28,0.005978298 +11,2021,29,0.005002085 +11,2021,30,0.004881221 +21,2021,0,0.070153147 +21,2021,1,0.069614852 +21,2021,2,0.069021415 +21,2021,3,0.068627388 +21,2021,4,0.069309527 +21,2021,5,0.068428514 +21,2021,6,0.066007623 +21,2021,7,0.06393101 +21,2021,8,0.059969286 +21,2021,9,0.056632352 +21,2021,10,0.034014256 +21,2021,11,0.036944575 +21,2021,12,0.032383326 +21,2021,13,0.037875615 +21,2021,14,0.036260417 +21,2021,15,0.029223215 +21,2021,16,0.024699578 +21,2021,17,0.019371097 +21,2021,18,0.016903072 +21,2021,19,0.014028305 +21,2021,20,0.011286251 +21,2021,21,0.010138363 +21,2021,22,0.007409827 +21,2021,23,0.005650061 +21,2021,24,0.004890033 +21,2021,25,0.003829873 +21,2021,26,0.003745478 +21,2021,27,0.002829618 +21,2021,28,0.002351528 +21,2021,29,0.001921756 +21,2021,30,0.002548646 +31,2021,0,0.075071648 +31,2021,1,0.074392961 +31,2021,2,0.074500854 +31,2021,3,0.075136102 +31,2021,4,0.074536347 +31,2021,5,0.07307717 +31,2021,6,0.06843742 +31,2021,7,0.06295669 +31,2021,8,0.057045334 +31,2021,9,0.051858762 +31,2021,10,0.031927208 +31,2021,11,0.02634 +31,2021,12,0.018516963 +31,2021,13,0.029666749 +31,2021,14,0.028907154 +31,2021,15,0.026670705 +31,2021,16,0.02510791 +31,2021,17,0.02276246 +31,2021,18,0.018993103 +31,2021,19,0.016693937 +31,2021,20,0.013569673 +31,2021,21,0.011915644 +31,2021,22,0.010017272 +31,2021,23,0.007742184 +31,2021,24,0.006235009 +31,2021,25,0.004482041 +31,2021,26,0.004096862 +31,2021,27,0.003564208 +31,2021,28,0.002386155 +31,2021,29,0.001865655 +31,2021,30,0.001525815 +32,2021,0,0.075020165 +32,2021,1,0.074256825 +32,2021,2,0.074244028 +32,2021,3,0.074704578 +32,2021,4,0.073863901 +32,2021,5,0.072111601 +32,2021,6,0.067154296 +32,2021,7,0.061364072 +32,2021,8,0.055254021 +32,2021,9,0.049803039 +32,2021,10,0.034448263 +32,2021,11,0.027719161 +32,2021,12,0.019716419 +32,2021,13,0.032401531 +32,2021,14,0.031184671 +32,2021,15,0.029550429 +32,2021,16,0.027396831 +32,2021,17,0.024894618 +32,2021,18,0.020691088 +32,2021,19,0.018048203 +32,2021,20,0.014995547 +32,2021,21,0.011543305 +32,2021,22,0.00826716 +32,2021,23,0.004791478 +32,2021,24,0.004905229 +32,2021,25,0.003075448 +32,2021,26,0.0031437 +32,2021,27,0.001879133 +32,2021,28,0.001788502 +32,2021,29,0.000926614 +32,2021,30,0.000856156 +41,2021,0,0.05696328 +41,2021,1,0.056512997 +41,2021,2,0.055640438 +41,2021,3,0.055113056 +41,2021,4,0.053024299 +41,2021,5,0.052073946 +41,2021,6,0.049342499 +41,2021,7,0.044601265 +41,2021,8,0.039158498 +41,2021,9,0.035418094 +41,2021,10,0.031956595 +41,2021,11,0.027614715 +41,2021,12,0.022637622 +41,2021,13,0.028620222 +41,2021,14,0.036727056 +41,2021,15,0.03702275 +41,2021,16,0.037491425 +41,2021,17,0.035814025 +41,2021,18,0.032389714 +41,2021,19,0.029700147 +41,2021,20,0.027806747 +41,2021,21,0.025885324 +41,2021,22,0.024742708 +41,2021,23,0.018297204 +41,2021,24,0.01459664 +41,2021,25,0.011861923 +41,2021,26,0.015093055 +41,2021,27,0.011393881 +41,2021,28,0.009249634 +41,2021,29,0.00668565 +41,2021,30,0.016575493 +42,2021,0,0.057099612 +42,2021,1,0.056687327 +42,2021,2,0.055800469 +42,2021,3,0.055232129 +42,2021,4,0.053127789 +42,2021,5,0.052181153 +42,2021,6,0.049467112 +42,2021,7,0.044794604 +42,2021,8,0.039336436 +42,2021,9,0.035580072 +42,2021,10,0.042289251 +42,2021,11,0.025337209 +42,2021,12,0.025342719 +42,2021,13,0.034806582 +42,2021,14,0.033108694 +42,2021,15,0.023434446 +42,2021,16,0.035873034 +42,2021,17,0.028917703 +42,2021,18,0.027651116 +42,2021,19,0.02743991 +42,2021,20,0.030772341 +42,2021,21,0.020378835 +42,2021,22,0.019426016 +42,2021,23,0.022247461 +42,2021,24,0.019930968 +42,2021,25,0.018044964 +42,2021,26,0.014477714 +42,2021,27,0.012378126 +42,2021,28,0.010125359 +42,2021,29,0.00862615 +42,2021,30,0.020089054 +43,2021,0,0.057034931 +43,2021,1,0.056547325 +43,2021,2,0.055688202 +43,2021,3,0.055168915 +43,2021,4,0.053091257 +43,2021,5,0.052144666 +43,2021,6,0.049417516 +43,2021,7,0.044673953 +43,2021,8,0.039222654 +43,2021,9,0.035477005 +43,2021,10,0.024734966 +43,2021,11,0.026464001 +43,2021,12,0.030823988 +43,2021,13,0.033100142 +43,2021,14,0.033585376 +43,2021,15,0.038731576 +43,2021,16,0.033800559 +43,2021,17,0.032738803 +43,2021,18,0.027507305 +43,2021,19,0.028283703 +43,2021,20,0.025131305 +43,2021,21,0.026767373 +43,2021,22,0.024352668 +43,2021,23,0.018753371 +43,2021,24,0.017128453 +43,2021,25,0.014518938 +43,2021,26,0.018157066 +43,2021,27,0.008590956 +43,2021,28,0.010117629 +43,2021,29,0.008008114 +43,2021,30,0.020236817 +51,2021,0,0.063689696 +51,2021,1,0.063502603 +51,2021,2,0.063010987 +51,2021,3,0.062911184 +51,2021,4,0.061154267 +51,2021,5,0.059730466 +51,2021,6,0.056006477 +51,2021,7,0.050429334 +51,2021,8,0.044016662 +51,2021,9,0.039318747 +51,2021,10,0.020826172 +51,2021,11,0.016016598 +51,2021,12,0.020662656 +51,2021,13,0.015506503 +51,2021,14,0.052719745 +51,2021,15,0.038550204 +51,2021,16,0.035338786 +51,2021,17,0.020687948 +51,2021,18,0.019672285 +51,2021,19,0.013870784 +51,2021,20,0.016471033 +51,2021,21,0.021875373 +51,2021,22,0.030609742 +51,2021,23,0.02724198 +51,2021,24,0.012833346 +51,2021,25,0.016284263 +51,2021,26,0.020312164 +51,2021,27,0.01390978 +51,2021,28,0.006215962 +51,2021,29,0.005388374 +51,2021,30,0.011234736 +52,2021,0,0.063765077 +52,2021,1,0.063554453 +52,2021,2,0.063249095 +52,2021,3,0.063450395 +52,2021,4,0.062041675 +52,2021,5,0.06082123 +52,2021,6,0.057198792 +52,2021,7,0.051692277 +52,2021,8,0.045173515 +52,2021,9,0.040403316 +52,2021,10,0.022412722 +52,2021,11,0.013394929 +52,2021,12,0.013956214 +52,2021,13,0.027971032 +52,2021,14,0.035654702 +52,2021,15,0.036743854 +52,2021,16,0.030937621 +52,2021,17,0.02645337 +52,2021,18,0.022137675 +52,2021,19,0.019323848 +52,2021,20,0.020202438 +52,2021,21,0.032063207 +52,2021,22,0.026496512 +52,2021,23,0.014502531 +52,2021,24,0.019431786 +52,2021,25,0.012705691 +52,2021,26,0.016943198 +52,2021,27,0.012571822 +52,2021,28,0.00859138 +52,2021,29,0.006635532 +52,2021,30,0.009520144 +53,2021,0,0.063896473 +53,2021,1,0.064393071 +53,2021,2,0.064107787 +53,2021,3,0.064033346 +53,2021,4,0.062371584 +53,2021,5,0.061005106 +53,2021,6,0.05728011 +53,2021,7,0.05168628 +53,2021,8,0.045159785 +53,2021,9,0.040397705 +53,2021,10,0.015193214 +53,2021,11,0.009302768 +53,2021,12,0.01063715 +53,2021,13,0.018099406 +53,2021,14,0.030794999 +53,2021,15,0.026792618 +53,2021,16,0.024143005 +53,2021,17,0.017408689 +53,2021,18,0.014349237 +53,2021,19,0.011731448 +53,2021,20,0.027951304 +53,2021,21,0.067024322 +53,2021,22,0.056757479 +53,2021,23,0.009259374 +53,2021,24,0.007414289 +53,2021,25,0.008145434 +53,2021,26,0.013557106 +53,2021,27,0.010884294 +53,2021,28,0.029702491 +53,2021,29,0.005092267 +53,2021,30,0.011427129 +54,2021,0,0.063612342 +54,2021,1,0.063325778 +54,2021,2,0.062949493 +54,2021,3,0.063107118 +54,2021,4,0.061660118 +54,2021,5,0.060449417 +54,2021,6,0.056845965 +54,2021,7,0.051318392 +54,2021,8,0.044809573 +54,2021,9,0.040032342 +54,2021,10,0.029148643 +54,2021,11,0.024978588 +54,2021,12,0.020363544 +54,2021,13,0.025555092 +54,2021,14,0.032487584 +54,2021,15,0.032486275 +54,2021,16,0.032655892 +54,2021,17,0.030913596 +54,2021,18,0.027736556 +54,2021,19,0.025269123 +54,2021,20,0.023384588 +54,2021,21,0.02161116 +54,2021,22,0.020460993 +54,2021,23,0.011646663 +54,2021,24,0.017478248 +54,2021,25,0.010552438 +54,2021,26,0.012102111 +54,2021,27,0.011220881 +54,2021,28,0.007578325 +54,2021,29,0.006453449 +54,2021,30,0.007805491 +61,2021,0,0.051879981 +61,2021,1,0.05180377 +61,2021,2,0.051150954 +61,2021,3,0.050682772 +61,2021,4,0.048396243 +61,2021,5,0.047780605 +61,2021,6,0.045667308 +61,2021,7,0.041333454 +61,2021,8,0.036164293 +61,2021,9,0.035152925 +61,2021,10,0.017182137 +61,2021,11,0.012655749 +61,2021,12,0.016132371 +61,2021,13,0.014254286 +61,2021,14,0.045589701 +61,2021,15,0.033083617 +61,2021,16,0.031707424 +61,2021,17,0.019613386 +61,2021,18,0.017160961 +61,2021,19,0.013129254 +61,2021,20,0.024985316 +61,2021,21,0.033695277 +61,2021,22,0.02968964 +61,2021,23,0.029583179 +61,2021,24,0.0236836 +61,2021,25,0.032396815 +61,2021,26,0.035997945 +61,2021,27,0.02933208 +61,2021,28,0.021063784 +61,2021,29,0.015818918 +61,2021,30,0.043232426 +62,2021,0,0.050923676 +62,2021,1,0.049840683 +62,2021,2,0.048191069 +62,2021,3,0.046761018 +62,2021,4,0.043972498 +62,2021,5,0.043107364 +62,2021,6,0.04092851 +62,2021,7,0.036542786 +62,2021,8,0.031842211 +62,2021,9,0.030156358 +62,2021,10,0.032132418 +62,2021,11,0.024988576 +62,2021,12,0.032556086 +62,2021,13,0.024940325 +62,2021,14,0.085212285 +62,2021,15,0.062351023 +62,2021,16,0.058032794 +62,2021,17,0.034177548 +62,2021,18,0.03274146 +62,2021,19,0.023459323 +62,2021,20,0.026403535 +62,2021,21,0.041378982 +62,2021,22,0.030210095 +62,2021,23,0.019731324 +62,2021,24,0.010991438 +62,2021,25,0.011711982 +62,2021,26,0.010285149 +62,2021,27,0.006076625 +62,2021,28,0.004067475 +62,2021,29,0.002392052 +62,2021,30,0.003893269 +11,2022,0,0.070154668 +11,2022,1,0.069572905 +11,2022,2,0.067639454 +11,2022,3,0.062783536 +11,2022,4,0.058419655 +11,2022,5,0.055350904 +11,2022,6,0.051376573 +11,2022,7,0.046736596 +11,2022,8,0.042871285 +11,2022,9,0.038160963 +11,2022,10,0.034108769 +11,2022,11,0.027361912 +11,2022,12,0.024709753 +11,2022,13,0.025592123 +11,2022,14,0.045348621 +11,2022,15,0.040348148 +11,2022,16,0.03822725 +11,2022,17,0.033476273 +11,2022,18,0.028400446 +11,2022,19,0.024311539 +11,2022,20,0.021414089 +11,2022,21,0.018147769 +11,2022,22,0.014486763 +11,2022,23,0.010949627 +11,2022,24,0.00934333 +11,2022,25,0.00893925 +11,2022,26,0.007834422 +11,2022,27,0.005901307 +11,2022,28,0.006790173 +11,2022,29,0.005533817 +11,2022,30,0.005708045 +21,2022,0,0.070154671 +21,2022,1,0.069346442 +21,2022,2,0.068814336 +21,2022,3,0.068220971 +21,2022,4,0.067589835 +21,2022,5,0.068044701 +21,2022,6,0.066912016 +21,2022,7,0.064247751 +21,2022,8,0.061907559 +21,2022,9,0.057748577 +21,2022,10,0.054213897 +21,2022,11,0.032372037 +21,2022,12,0.034947652 +21,2022,13,0.029311972 +21,2022,14,0.03216405 +21,2022,15,0.029990782 +21,2022,16,0.023638637 +21,2022,17,0.019629127 +21,2022,18,0.015178481 +21,2022,19,0.013105734 +21,2022,20,0.010779362 +21,2022,21,0.008618267 +21,2022,22,0.00770702 +21,2022,23,0.005607461 +21,2022,24,0.00426137 +21,2022,25,0.003687666 +21,2022,26,0.002878064 +21,2022,27,0.00281391 +21,2022,28,0.00212335 +21,2022,29,0.00176229 +21,2022,30,0.002222012 +31,2022,0,0.074050592 +31,2022,1,0.07349908 +31,2022,2,0.072823604 +31,2022,3,0.0729182 +31,2022,4,0.072939849 +31,2022,5,0.071817424 +31,2022,6,0.06983862 +31,2022,7,0.064827514 +31,2022,8,0.059067864 +31,2022,9,0.052998532 +31,2022,10,0.04771201 +31,2022,11,0.029095617 +31,2022,12,0.023781868 +31,2022,13,0.016573447 +31,2022,14,0.02631163 +31,2022,15,0.024966677 +31,2022,16,0.022818126 +31,2022,17,0.021291683 +31,2022,18,0.019151221 +31,2022,19,0.015870309 +31,2022,20,0.013857807 +31,2022,21,0.011206119 +31,2022,22,0.009787316 +31,2022,23,0.008198391 +31,2022,24,0.006305483 +31,2022,25,0.005063236 +31,2022,26,0.003631093 +31,2022,27,0.003306924 +31,2022,28,0.002873811 +31,2022,29,0.001918303 +31,2022,30,0.00149765 +32,2022,0,0.074012476 +32,2022,1,0.073410869 +32,2022,2,0.072652924 +32,2022,3,0.072629426 +32,2022,4,0.07248361 +32,2022,5,0.071132875 +32,2022,6,0.068880369 +32,2022,7,0.06357933 +32,2022,8,0.057543988 +32,2022,9,0.051307872 +32,2022,10,0.045797082 +32,2022,11,0.031376924 +32,2022,12,0.025014204 +32,2022,13,0.017637926 +32,2022,14,0.028722334 +32,2022,15,0.02691987 +32,2022,16,0.025268861 +32,2022,17,0.023220745 +32,2022,18,0.020934334 +32,2022,19,0.017280217 +32,2022,20,0.014974286 +32,2022,21,0.012377261 +32,2022,22,0.009476603 +32,2022,23,0.006762572 +32,2022,24,0.003900325 +32,2022,25,0.003981317 +32,2022,26,0.00249027 +32,2022,27,0.00253624 +32,2022,28,0.00151436 +32,2022,29,0.001437092 +32,2022,30,0.000743454 +41,2022,0,0.056596853 +41,2022,1,0.055801768 +41,2022,2,0.055360667 +41,2022,3,0.054505899 +41,2022,4,0.053989271 +41,2022,5,0.051568187 +41,2022,6,0.050275733 +41,2022,7,0.047638608 +41,2022,8,0.042745736 +41,2022,9,0.037529402 +41,2022,10,0.03394461 +41,2022,11,0.030401161 +41,2022,12,0.026270615 +41,2022,13,0.02137571 +41,2022,14,0.027024816 +41,2022,15,0.034679743 +41,2022,16,0.034697177 +41,2022,17,0.035136413 +41,2022,18,0.033311148 +41,2022,19,0.030126146 +41,2022,20,0.027414541 +41,2022,21,0.025666849 +41,2022,22,0.023893291 +41,2022,23,0.022663658 +41,2022,24,0.016759749 +41,2022,25,0.013370132 +41,2022,26,0.010781332 +41,2022,27,0.013718115 +41,2022,28,0.010355927 +41,2022,29,0.008341614 +41,2022,30,0.014062827 +42,2022,0,0.056688207 +42,2022,1,0.056025607 +42,2022,2,0.055621076 +42,2022,3,0.0547509 +42,2022,4,0.05419325 +42,2022,5,0.051752235 +42,2022,6,0.050460556 +42,2022,7,0.047836007 +42,2022,8,0.043000328 +42,2022,9,0.037760791 +42,2022,10,0.03415489 +42,2022,11,0.04029583 +42,2022,12,0.02414287 +42,2022,13,0.02396864 +42,2022,14,0.032919374 +42,2022,15,0.031313545 +42,2022,16,0.021997869 +42,2022,17,0.033673946 +42,2022,18,0.026940193 +42,2022,19,0.02576022 +42,2022,20,0.025369126 +42,2022,21,0.02845007 +42,2022,22,0.018840922 +42,2022,23,0.017822432 +42,2022,24,0.020410971 +42,2022,25,0.018285701 +42,2022,26,0.016427586 +42,2022,27,0.013180071 +42,2022,28,0.01126867 +42,2022,29,0.00914611 +42,2022,30,0.01754399 +43,2022,0,0.056699214 +43,2022,1,0.055973008 +43,2022,2,0.055494481 +43,2022,3,0.054651353 +43,2022,4,0.054141734 +43,2022,5,0.051726689 +43,2022,6,0.050435063 +43,2022,7,0.047797325 +43,2022,8,0.042892836 +43,2022,9,0.037658877 +43,2022,10,0.034062563 +43,2022,11,0.023573591 +43,2022,12,0.025221444 +43,2022,13,0.029158375 +43,2022,14,0.031311535 +43,2022,15,0.031770549 +43,2022,16,0.036364313 +43,2022,17,0.031734679 +43,2022,18,0.030505913 +43,2022,19,0.025631219 +43,2022,20,0.026154318 +43,2022,21,0.023239253 +43,2022,22,0.024752147 +43,2022,23,0.022346735 +43,2022,24,0.017208654 +43,2022,25,0.015717581 +43,2022,26,0.013220166 +43,2022,27,0.016532851 +43,2022,28,0.007822464 +43,2022,29,0.009140903 +43,2022,30,0.017060768 +51,2022,0,0.063256052 +51,2022,1,0.062621191 +51,2022,2,0.062437237 +51,2022,3,0.061953868 +51,2022,4,0.06185574 +51,2022,5,0.059494521 +51,2022,6,0.057490342 +51,2022,7,0.053906016 +51,2022,8,0.048015411 +51,2022,9,0.041909697 +51,2022,10,0.037436659 +51,2022,11,0.019613441 +51,2022,12,0.015083934 +51,2022,13,0.019245308 +51,2022,14,0.01444284 +51,2022,15,0.049103452 +51,2022,16,0.035506349 +51,2022,17,0.032548498 +51,2022,18,0.018840063 +51,2022,19,0.017915121 +51,2022,20,0.01248807 +51,2022,21,0.014829112 +51,2022,22,0.019694718 +51,2022,23,0.027241172 +51,2022,24,0.024244029 +51,2022,25,0.01142105 +51,2022,26,0.014323433 +51,2022,27,0.017866324 +51,2022,28,0.012234867 +51,2022,29,0.005403063 +51,2022,30,0.007579709 +52,2022,0,0.063174272 +52,2022,1,0.062614253 +52,2022,2,0.06240743 +52,2022,3,0.062107583 +52,2022,4,0.062305249 +52,2022,5,0.060279812 +52,2022,6,0.058464515 +52,2022,7,0.05498244 +52,2022,8,0.049154269 +52,2022,9,0.042955568 +52,2022,10,0.038419578 +52,2022,11,0.021080317 +52,2022,12,0.012598619 +52,2022,13,0.012982086 +52,2022,14,0.026018688 +52,2022,15,0.033166046 +52,2022,16,0.033798871 +52,2022,17,0.028458002 +52,2022,18,0.024059362 +52,2022,19,0.020134234 +52,2022,20,0.017375051 +52,2022,21,0.018165036 +52,2022,22,0.028829654 +52,2022,23,0.023550113 +52,2022,24,0.012889857 +52,2022,25,0.017270981 +52,2022,26,0.011161318 +52,2022,27,0.014883757 +52,2022,28,0.011043721 +52,2022,29,0.007458178 +52,2022,30,0.008211165 +53,2022,0,0.063369415 +53,2022,1,0.062937089 +53,2022,2,0.06342623 +53,2022,3,0.063145229 +53,2022,4,0.063071906 +53,2022,5,0.060787544 +53,2022,6,0.058822407 +53,2022,7,0.055230687 +53,2022,8,0.049300384 +53,2022,9,0.043075159 +53,2022,10,0.038532902 +53,2022,11,0.014334139 +53,2022,12,0.008776758 +53,2022,13,0.009925254 +53,2022,14,0.016888095 +53,2022,15,0.02873403 +53,2022,16,0.024721345 +53,2022,17,0.022276567 +53,2022,18,0.015882126 +53,2022,19,0.013090956 +53,2022,20,0.010580923 +53,2022,21,0.025210067 +53,2022,22,0.06045112 +53,2022,23,0.050601901 +53,2022,24,0.008255158 +53,2022,25,0.006610179 +53,2022,26,0.007177461 +53,2022,27,0.01194603 +53,2022,28,0.009590845 +53,2022,29,0.025864383 +53,2022,30,0.007385131 +54,2022,0,0.063045476 +54,2022,1,0.062336925 +54,2022,2,0.062056107 +54,2022,3,0.061687366 +54,2022,4,0.061841831 +54,2022,5,0.059786951 +54,2022,6,0.057988643 +54,2022,7,0.054531881 +54,2022,8,0.048699253 +54,2022,9,0.042522624 +54,2022,10,0.03798921 +54,2022,11,0.027359902 +54,2022,12,0.023445747 +54,2022,13,0.018903575 +54,2022,14,0.023722913 +54,2022,15,0.030158379 +54,2022,16,0.02982161 +54,2022,17,0.029977315 +54,2022,18,0.02805862 +54,2022,19,0.025174991 +54,2022,20,0.022674427 +54,2022,21,0.020983401 +54,2022,22,0.019392072 +54,2022,23,0.018148664 +54,2022,24,0.010330455 +54,2022,25,0.015503005 +54,2022,26,0.009250893 +54,2022,27,0.010609429 +54,2022,28,0.00983689 +54,2022,29,0.006565332 +54,2022,30,0.007596161 +61,2022,0,0.05163085 +61,2022,1,0.051356632 +61,2022,2,0.051281189 +61,2022,3,0.050634959 +61,2022,4,0.0501715 +61,2022,5,0.04763813 +61,2022,6,0.046765663 +61,2022,7,0.044697256 +61,2022,8,0.040224943 +61,2022,9,0.035194412 +61,2022,10,0.034210168 +61,2022,11,0.016625508 +61,2022,12,0.012245756 +61,2022,13,0.01551978 +61,2022,14,0.013713011 +61,2022,15,0.043858532 +61,2022,16,0.031642831 +61,2022,17,0.030326571 +61,2022,18,0.018649843 +61,2022,19,0.016317898 +61,2022,20,0.012411034 +61,2022,21,0.023618523 +61,2022,22,0.031852016 +61,2022,23,0.027899922 +61,2022,24,0.02779988 +61,2022,25,0.022255932 +61,2022,26,0.030263228 +61,2022,27,0.033627195 +61,2022,28,0.02740033 +61,2022,29,0.019559094 +61,2022,30,0.040607634 +62,2022,0,0.050807446 +62,2022,1,0.049606041 +62,2022,2,0.048551069 +62,2022,3,0.046944139 +62,2022,4,0.04555109 +62,2022,5,0.042593398 +62,2022,6,0.04151882 +62,2022,7,0.039420259 +62,2022,8,0.034995604 +62,2022,9,0.030494046 +62,2022,10,0.02887957 +62,2022,11,0.03059562 +62,2022,12,0.023793447 +62,2022,13,0.030820354 +62,2022,14,0.023610629 +62,2022,15,0.080669182 +62,2022,16,0.058684584 +62,2022,17,0.054620281 +62,2022,18,0.031980231 +62,2022,19,0.03063647 +62,2022,20,0.021822347 +62,2022,21,0.024561114 +62,2022,22,0.038491584 +62,2022,23,0.027936259 +62,2022,24,0.018246198 +62,2022,25,0.010164141 +62,2022,26,0.010766175 +62,2022,27,0.009454566 +62,2022,28,0.005585904 +62,2022,29,0.003716681 +62,2022,30,0.004482625 +11,2023,0,0.070134203 +11,2023,1,0.069565265 +11,2023,2,0.06739853 +11,2023,3,0.06265497 +11,2023,4,0.058156894 +11,2023,5,0.054114597 +11,2023,6,0.051271988 +11,2023,7,0.047590533 +11,2023,8,0.043292485 +11,2023,9,0.039712016 +11,2023,10,0.035348807 +11,2023,11,0.031595227 +11,2023,12,0.025345559 +11,2023,13,0.022888843 +11,2023,14,0.023706189 +11,2023,15,0.042006792 +11,2023,16,0.037374814 +11,2023,17,0.035410209 +11,2023,18,0.031009341 +11,2023,19,0.026307562 +11,2023,20,0.022519974 +11,2023,21,0.019836043 +11,2023,22,0.016810424 +11,2023,23,0.013419206 +11,2023,24,0.010142727 +11,2023,25,0.008654802 +11,2023,26,0.008280499 +11,2023,27,0.007257089 +11,2023,28,0.005466428 +11,2023,29,0.006289791 +11,2023,30,0.006438164 +21,2023,0,0.070134202 +21,2023,1,0.06932905 +21,2023,2,0.068530332 +21,2023,3,0.067997466 +21,2023,4,0.067160557 +21,2023,5,0.066318549 +21,2023,6,0.066487151 +21,2023,7,0.065066338 +21,2023,8,0.062141243 +21,2023,9,0.059530367 +21,2023,10,0.055189335 +21,2023,11,0.051496002 +21,2023,12,0.030554258 +21,2023,13,0.031498306 +21,2023,14,0.024708146 +21,2023,15,0.026370586 +21,2023,16,0.024019604 +21,2023,17,0.018582448 +21,2023,18,0.015202231 +21,2023,19,0.011625235 +21,2023,20,0.009942771 +21,2023,21,0.008123958 +21,2023,22,0.006464453 +21,2023,23,0.005753415 +21,2023,24,0.004171185 +21,2023,25,0.003169442 +21,2023,26,0.002732584 +21,2023,27,0.002132077 +21,2023,28,0.002081967 +21,2023,29,0.001568866 +21,2023,30,0.001917873 +31,2023,0,0.073134075 +31,2023,1,0.072499216 +31,2023,2,0.071948504 +31,2023,3,0.071276624 +31,2023,4,0.07079319 +31,2023,5,0.070291358 +31,2023,6,0.068652864 +31,2023,7,0.066178906 +31,2023,8,0.060851896 +31,2023,9,0.054909719 +31,2023,10,0.048794703 +31,2023,11,0.043515699 +31,2023,12,0.02629402 +31,2023,13,0.02130754 +31,2023,14,0.014715753 +31,2023,15,0.022758086 +31,2023,16,0.021393896 +31,2023,17,0.019382568 +31,2023,18,0.017945786 +31,2023,19,0.016032426 +31,2023,20,0.013199912 +31,2023,21,0.01146725 +31,2023,22,0.009223815 +31,2023,23,0.008027355 +31,2023,24,0.00669177 +31,2023,25,0.005131963 +31,2023,26,0.004111283 +31,2023,27,0.002937777 +31,2023,28,0.002672602 +31,2023,29,0.002315841 +31,2023,30,0.001543606 +32,2023,0,0.073106676 +32,2023,1,0.072434751 +32,2023,2,0.071835232 +32,2023,3,0.071082929 +32,2023,4,0.070486414 +32,2023,5,0.069825515 +32,2023,6,0.067973004 +32,2023,7,0.065246416 +32,2023,8,0.059657899 +32,2023,9,0.053473077 +32,2023,10,0.047220448 +32,2023,11,0.041753542 +32,2023,12,0.028345038 +32,2023,13,0.022403263 +32,2023,14,0.015655048 +32,2023,15,0.024833902 +32,2023,16,0.023058942 +32,2023,17,0.021456273 +32,2023,18,0.019564372 +32,2023,19,0.017518591 +32,2023,20,0.014367199 +32,2023,21,0.012386487 +32,2023,22,0.010183972 +32,2023,23,0.007769602 +32,2023,24,0.005517743 +32,2023,25,0.003173242 +32,2023,26,0.003231568 +32,2023,27,0.002014026 +32,2023,28,0.00204898 +32,2023,29,0.001219879 +32,2023,30,0.001155955 +41,2023,0,0.05620484 +41,2023,1,0.055485992 +41,2023,2,0.054706513 +41,2023,3,0.05427407 +41,2023,4,0.053436079 +41,2023,5,0.052532449 +41,2023,6,0.049797361 +41,2023,7,0.04854929 +41,2023,8,0.045652295 +41,2023,9,0.040963434 +41,2023,10,0.035964597 +41,2023,11,0.032279578 +41,2023,12,0.02890994 +41,2023,13,0.024788758 +41,2023,14,0.020169962 +41,2023,15,0.025500417 +41,2023,16,0.032468447 +41,2023,17,0.03248477 +41,2023,18,0.032637536 +41,2023,19,0.030942083 +41,2023,20,0.02776199 +41,2023,21,0.025263178 +41,2023,22,0.023652637 +41,2023,23,0.021842502 +41,2023,24,0.02071841 +41,2023,25,0.01532124 +41,2023,26,0.012124207 +41,2023,27,0.00977665 +41,2023,28,0.012439763 +41,2023,29,0.00931471 +41,2023,30,0.014048544 +42,2023,0,0.056288203 +42,2023,1,0.055657984 +42,2023,2,0.055007425 +42,2023,3,0.054610247 +42,2023,4,0.053755884 +42,2023,5,0.052809135 +42,2023,6,0.050049213 +42,2023,7,0.04880004 +42,2023,8,0.045909456 +42,2023,9,0.041268529 +42,2023,10,0.03624001 +42,2023,11,0.032527718 +42,2023,12,0.038376097 +42,2023,13,0.022814823 +42,2023,14,0.022650177 +42,2023,15,0.03110855 +42,2023,16,0.029360372 +42,2023,17,0.020625758 +42,2023,18,0.031325473 +42,2023,19,0.025061342 +42,2023,20,0.023773891 +42,2023,21,0.023412953 +42,2023,22,0.02625633 +42,2023,23,0.01724933 +42,2023,24,0.016316877 +42,2023,25,0.018686749 +42,2023,26,0.016606303 +42,2023,27,0.014918841 +42,2023,28,0.011969585 +42,2023,29,0.010150716 +42,2023,30,0.016416794 +43,2023,0,0.056283071 +43,2023,1,0.055663715 +43,2023,2,0.054950772 +43,2023,3,0.054480984 +43,2023,4,0.053653255 +43,2023,5,0.052754125 +43,2023,6,0.050019947 +43,2023,7,0.048770939 +43,2023,8,0.045868149 +43,2023,9,0.041161613 +43,2023,10,0.036138905 +43,2023,11,0.032436832 +43,2023,12,0.022448475 +43,2023,13,0.023831894 +43,2023,14,0.027551924 +43,2023,15,0.029586457 +43,2023,16,0.029786155 +43,2023,17,0.034092992 +43,2023,18,0.029518762 +43,2023,19,0.028375796 +43,2023,20,0.02365268 +43,2023,21,0.024135399 +43,2023,22,0.021445356 +43,2023,23,0.022659136 +43,2023,24,0.020457124 +43,2023,25,0.015753512 +43,2023,26,0.014272743 +43,2023,27,0.012004903 +43,2023,28,0.015013069 +43,2023,29,0.007045763 +43,2023,30,0.016185375 +51,2023,0,0.062524396 +51,2023,1,0.062165929 +51,2023,2,0.061542009 +51,2023,3,0.061361225 +51,2023,4,0.060886186 +51,2023,5,0.060127427 +51,2023,6,0.057195144 +51,2023,7,0.055268423 +51,2023,8,0.051245426 +51,2023,9,0.045645558 +51,2023,10,0.039841198 +51,2023,11,0.035188075 +51,2023,12,0.018435386 +51,2023,13,0.014016426 +51,2023,14,0.017883294 +51,2023,15,0.013420702 +51,2023,16,0.045102564 +51,2023,17,0.032613336 +51,2023,18,0.029547973 +51,2023,19,0.017103268 +51,2023,20,0.016071766 +51,2023,21,0.011203125 +51,2023,22,0.013303288 +51,2023,23,0.017457372 +51,2023,24,0.024146539 +51,2023,25,0.021489875 +51,2023,26,0.010001311 +51,2023,27,0.012542902 +51,2023,28,0.015645381 +51,2023,29,0.010582959 +51,2023,30,0.006441442 +52,2023,0,0.062538426 +52,2023,1,0.06209949 +52,2023,2,0.061548998 +52,2023,3,0.061345694 +52,2023,4,0.061050948 +52,2023,5,0.060577967 +52,2023,6,0.057963088 +52,2023,7,0.056217558 +52,2023,8,0.05228045 +52,2023,9,0.046738692 +52,2023,10,0.040844612 +52,2023,11,0.03612006 +52,2023,12,0.019818601 +52,2023,13,0.011709626 +52,2023,14,0.012066035 +52,2023,15,0.024182739 +52,2023,16,0.030470554 +52,2023,17,0.031051948 +52,2023,18,0.025840362 +52,2023,19,0.021846321 +52,2023,20,0.018066599 +52,2023,21,0.015590764 +52,2023,22,0.016299623 +52,2023,23,0.025560301 +52,2023,24,0.020879473 +52,2023,25,0.011428116 +52,2023,26,0.015127437 +52,2023,27,0.00977606 +52,2023,28,0.013036497 +52,2023,29,0.00955478 +52,2023,30,0.00836824 +53,2023,0,0.062605881 +53,2023,1,0.062358501 +53,2023,2,0.061933071 +53,2023,3,0.062414409 +53,2023,4,0.062137891 +53,2023,5,0.061389513 +53,2023,6,0.058514352 +53,2023,7,0.056622702 +53,2023,8,0.052573143 +53,2023,9,0.046928189 +53,2023,10,0.041002505 +53,2023,11,0.036265676 +53,2023,12,0.013490737 +53,2023,13,0.008166245 +53,2023,14,0.009234851 +53,2023,15,0.015713355 +53,2023,16,0.026427214 +53,2023,17,0.022736674 +53,2023,18,0.020249329 +53,2023,19,0.014436802 +53,2023,20,0.011759283 +53,2023,21,0.009504582 +53,2023,22,0.022645582 +53,2023,23,0.053653625 +53,2023,24,0.044911913 +53,2023,25,0.007326897 +53,2023,26,0.005796019 +53,2023,27,0.00629343 +53,2023,28,0.010474666 +53,2023,29,0.008306735 +53,2023,30,0.024126165 +54,2023,0,0.06246421 +54,2023,1,0.06189934 +54,2023,2,0.06120367 +54,2023,3,0.060927957 +54,2023,4,0.06056592 +54,2023,5,0.06005604 +54,2023,6,0.057420945 +54,2023,7,0.055693803 +54,2023,8,0.051790499 +54,2023,9,0.046251084 +54,2023,10,0.040384962 +54,2023,11,0.035673065 +54,2023,12,0.025691811 +54,2023,13,0.021765491 +54,2023,14,0.017548837 +54,2023,15,0.022022794 +54,2023,16,0.027674447 +54,2023,17,0.027365415 +54,2023,18,0.027187621 +54,2023,19,0.025447481 +54,2023,20,0.0225629 +54,2023,21,0.020321788 +54,2023,22,0.018806218 +54,2023,23,0.017172561 +54,2023,24,0.016071467 +54,2023,25,0.009148087 +54,2023,26,0.013562775 +54,2023,27,0.008093127 +54,2023,28,0.009281639 +54,2023,29,0.008500557 +54,2023,30,0.007443451 +61,2023,0,0.051345718 +61,2023,1,0.051062263 +61,2023,2,0.050791065 +61,2023,3,0.050716454 +61,2023,4,0.05007734 +61,2023,5,0.049339222 +61,2023,6,0.046582241 +61,2023,7,0.045729111 +61,2023,8,0.043457312 +61,2023,9,0.039109066 +61,2023,10,0.034218086 +61,2023,11,0.033070384 +61,2023,12,0.016071595 +61,2023,13,0.011769479 +61,2023,14,0.014916165 +61,2023,15,0.013179667 +61,2023,16,0.041908171 +61,2023,17,0.030235694 +61,2023,18,0.028808862 +61,2023,19,0.017716502 +61,2023,20,0.015410269 +61,2023,21,0.011720711 +61,2023,22,0.022304821 +61,2023,23,0.029902743 +61,2023,24,0.026192509 +61,2023,25,0.026098588 +61,2023,26,0.020769815 +61,2023,27,0.028242433 +61,2023,28,0.031381774 +61,2023,29,0.025417914 +61,2023,30,0.042454057 +62,2023,0,0.050629997 +62,2023,1,0.049547509 +62,2023,2,0.048375896 +62,2023,3,0.047347087 +62,2023,4,0.045780005 +62,2023,5,0.044171043 +62,2023,6,0.041068764 +62,2023,7,0.04003265 +62,2023,8,0.037792459 +62,2023,9,0.033550513 +62,2023,10,0.02923484 +62,2023,11,0.027528239 +62,2023,12,0.029163991 +62,2023,13,0.022549279 +62,2023,14,0.029208747 +62,2023,15,0.022376021 +62,2023,16,0.076007409 +62,2023,17,0.055293275 +62,2023,18,0.051163518 +62,2023,19,0.029956292 +62,2023,20,0.028529122 +62,2023,21,0.020321284 +62,2023,22,0.022871664 +62,2023,23,0.035632275 +62,2023,24,0.025861043 +62,2023,25,0.016890798 +62,2023,26,0.009353221 +62,2023,27,0.009907223 +62,2023,28,0.008700258 +62,2023,29,0.005109534 +62,2023,30,0.00604587 +11,2024,0,0.070024324 +11,2024,1,0.069527283 +11,2024,2,0.067395862 +11,2024,3,0.062476472 +11,2024,4,0.05807933 +11,2024,5,0.053909745 +11,2024,6,0.050162653 +11,2024,7,0.047527638 +11,2024,8,0.044115036 +11,2024,9,0.040130871 +11,2024,10,0.036811881 +11,2024,11,0.032767313 +11,2024,12,0.029287854 +11,2024,13,0.023494594 +11,2024,14,0.02121729 +11,2024,15,0.021974946 +11,2024,16,0.038939071 +11,2024,17,0.034645363 +11,2024,18,0.032824231 +11,2024,19,0.028744754 +11,2024,20,0.024386343 +11,2024,21,0.020875359 +11,2024,22,0.018387433 +11,2024,23,0.015582773 +11,2024,24,0.012439212 +11,2024,25,0.009402012 +11,2024,26,0.008022749 +11,2024,27,0.007675781 +11,2024,28,0.006727109 +11,2024,29,0.00506722 +11,2024,30,0.007377539 +21,2024,0,0.070024319 +21,2024,1,0.069281569 +21,2024,2,0.068486205 +21,2024,3,0.067689921 +21,2024,4,0.066903711 +21,2024,5,0.065852104 +21,2024,6,0.064744879 +21,2024,7,0.064584787 +21,2024,8,0.062852339 +21,2024,9,0.059663932 +21,2024,10,0.056790582 +21,2024,11,0.052315371 +21,2024,12,0.048491813 +21,2024,13,0.027419132 +21,2024,14,0.026353564 +21,2024,15,0.020079646 +21,2024,16,0.020909941 +21,2024,17,0.018676035 +21,2024,18,0.014223569 +21,2024,19,0.01150068 +21,2024,20,0.008707011 +21,2024,21,0.007395165 +21,2024,22,0.006012194 +21,2024,23,0.004760046 +21,2024,24,0.004220598 +21,2024,25,0.00305946 +21,2024,26,0.002315622 +21,2024,27,0.00199587 +21,2024,28,0.001555224 +21,2024,29,0.001516462 +21,2024,30,0.00161825 +31,2024,0,0.072590092 +31,2024,1,0.071587083 +31,2024,2,0.070955149 +31,2024,3,0.070405742 +31,2024,4,0.069190716 +31,2024,5,0.068218925 +31,2024,6,0.067195674 +31,2024,7,0.065062473 +31,2024,8,0.062133108 +31,2024,9,0.056585229 +31,2024,10,0.050574482 +31,2024,11,0.044525221 +31,2024,12,0.039348814 +31,2024,13,0.023574338 +31,2024,14,0.018933862 +31,2024,15,0.012741725 +31,2024,16,0.019523907 +31,2024,17,0.01819553 +31,2024,18,0.016358543 +31,2024,19,0.015044539 +31,2024,20,0.013354575 +31,2024,21,0.010939716 +31,2024,22,0.009453901 +31,2024,23,0.007577631 +31,2024,24,0.006563307 +31,2024,25,0.005455799 +31,2024,26,0.004174425 +31,2024,27,0.003332275 +31,2024,28,0.002378572 +31,2024,29,0.002157679 +31,2024,30,0.00186697 +32,2024,0,0.072593013 +32,2024,1,0.071563142 +32,2024,2,0.07089491 +32,2024,3,0.070297727 +32,2024,4,0.069005466 +32,2024,5,0.067926038 +32,2024,6,0.066753033 +32,2024,7,0.06442076 +32,2024,8,0.06126009 +32,2024,9,0.055477181 +32,2024,10,0.049253248 +32,2024,11,0.043090446 +32,2024,12,0.037756913 +32,2024,13,0.025414234 +32,2024,14,0.019908323 +32,2024,15,0.013555565 +32,2024,16,0.021305584 +32,2024,17,0.019612442 +32,2024,18,0.018109442 +32,2024,19,0.016402113 +32,2024,20,0.014593098 +32,2024,21,0.011907609 +32,2024,22,0.010212155 +32,2024,23,0.008366763 +32,2024,24,0.00635282 +32,2024,25,0.004498797 +32,2024,26,0.002581272 +32,2024,27,0.002619354 +32,2024,28,0.001630723 +32,2024,29,0.001654275 +32,2024,30,0.000983474 +41,2024,0,0.057148276 +41,2024,1,0.055234255 +41,2024,2,0.054527822 +41,2024,3,0.053761803 +41,2024,4,0.053336827 +41,2024,5,0.052084435 +41,2024,6,0.05078204 +41,2024,7,0.048138087 +41,2024,8,0.04654195 +41,2024,9,0.043764736 +41,2024,10,0.039269742 +41,2024,11,0.034188939 +41,2024,12,0.030685858 +41,2024,13,0.027250558 +41,2024,14,0.023365925 +41,2024,15,0.01901224 +41,2024,16,0.023832072 +41,2024,17,0.030344224 +41,2024,18,0.030098759 +41,2024,19,0.030240305 +41,2024,20,0.028421044 +41,2024,21,0.025500053 +41,2024,22,0.023204834 +41,2024,23,0.021535679 +41,2024,24,0.019887555 +41,2024,25,0.018864071 +41,2024,26,0.013826991 +41,2024,27,0.010941758 +41,2024,28,0.008823154 +41,2024,29,0.011126698 +41,2024,30,0.014244774 +42,2024,0,0.05720813 +42,2024,1,0.055374115 +42,2024,2,0.054754129 +42,2024,3,0.054114136 +42,2024,4,0.053723407 +42,2024,5,0.052451027 +42,2024,6,0.051102973 +42,2024,7,0.048432219 +42,2024,8,0.046831329 +42,2024,9,0.044057358 +42,2024,10,0.039603658 +42,2024,11,0.034486835 +42,2024,12,0.030954132 +42,2024,13,0.03621126 +42,2024,14,0.021527814 +42,2024,15,0.021372456 +42,2024,16,0.029103747 +42,2024,17,0.027468231 +42,2024,18,0.019130809 +42,2024,19,0.029055011 +42,2024,20,0.023043552 +42,2024,21,0.021859759 +42,2024,22,0.021527881 +42,2024,23,0.023931375 +42,2024,24,0.01572193 +42,2024,25,0.014872044 +42,2024,26,0.016881932 +42,2024,27,0.01500242 +42,2024,28,0.013477939 +42,2024,29,0.010717362 +42,2024,30,0.016006119 +43,2024,0,0.057207561 +43,2024,1,0.055368515 +43,2024,2,0.054759223 +43,2024,3,0.054057864 +43,2024,4,0.053595711 +43,2024,5,0.052350368 +43,2024,6,0.051049233 +43,2024,7,0.048403417 +43,2024,8,0.046802937 +43,2024,9,0.04401728 +43,2024,10,0.039500662 +43,2024,11,0.03439028 +43,2024,12,0.030867336 +43,2024,13,0.021181922 +43,2024,14,0.022487287 +43,2024,15,0.025997432 +43,2024,16,0.027679471 +43,2024,17,0.027866297 +43,2024,18,0.031621626 +43,2024,19,0.027378977 +43,2024,20,0.026090886 +43,2024,21,0.02174809 +43,2024,22,0.02219194 +43,2024,23,0.01954621 +43,2024,24,0.020652501 +43,2024,25,0.018645493 +43,2024,26,0.014231853 +43,2024,27,0.012894114 +43,2024,28,0.010845329 +43,2024,29,0.013442312 +43,2024,30,0.013128356 +51,2024,0,0.063458569 +51,2024,1,0.061534825 +51,2024,2,0.061182031 +51,2024,3,0.060567986 +51,2024,4,0.060390063 +51,2024,5,0.059218482 +51,2024,6,0.057785219 +51,2024,7,0.05496716 +51,2024,8,0.052476394 +51,2024,9,0.048656629 +51,2024,10,0.043339653 +51,2024,11,0.037367807 +51,2024,12,0.033003556 +51,2024,13,0.017077716 +51,2024,14,0.012984189 +51,2024,15,0.016566283 +51,2024,16,0.012277146 +51,2024,17,0.041259449 +51,2024,18,0.029457281 +51,2024,19,0.026688559 +51,2024,20,0.015250377 +51,2024,21,0.014330624 +51,2024,22,0.009989429 +51,2024,23,0.011708237 +51,2024,24,0.01536425 +51,2024,25,0.021251393 +51,2024,26,0.018664759 +51,2024,27,0.008686512 +51,2024,28,0.010893979 +51,2024,29,0.013407681 +51,2024,30,0.01019479 +52,2024,0,0.063534241 +52,2024,1,0.061622028 +52,2024,2,0.061189524 +52,2024,3,0.060647099 +52,2024,4,0.060446774 +52,2024,5,0.05944954 +52,2024,6,0.058287632 +52,2024,7,0.055771617 +52,2024,8,0.053441232 +52,2024,9,0.04969856 +52,2024,10,0.044430483 +52,2024,11,0.03835461 +52,2024,12,0.03391808 +52,2024,13,0.018380957 +52,2024,14,0.010860208 +52,2024,15,0.011190763 +52,2024,16,0.022148548 +52,2024,17,0.027907448 +52,2024,18,0.028080437 +52,2024,19,0.023367573 +52,2024,20,0.019502818 +52,2024,21,0.016128556 +52,2024,22,0.013918308 +52,2024,23,0.01436242 +52,2024,24,0.022522472 +52,2024,25,0.018397957 +52,2024,26,0.009937582 +52,2024,27,0.013154412 +52,2024,28,0.008500998 +52,2024,29,0.011185259 +52,2024,30,0.009661832 +53,2024,0,0.064302152 +53,2024,1,0.062434096 +53,2024,2,0.062187395 +53,2024,3,0.061763133 +53,2024,4,0.06224315 +53,2024,5,0.061239304 +53,2024,6,0.059782431 +53,2024,7,0.056982537 +53,2024,8,0.054476944 +53,2024,9,0.050580846 +53,2024,10,0.045149811 +53,2024,11,0.038968245 +53,2024,12,0.034466424 +53,2024,13,0.012663346 +53,2024,14,0.007665407 +53,2024,15,0.008668475 +53,2024,16,0.014565532 +53,2024,17,0.024496769 +53,2024,18,0.020809402 +53,2024,19,0.018532897 +53,2024,20,0.013043908 +53,2024,21,0.010624722 +53,2024,22,0.008587559 +53,2024,23,0.020195342 +53,2024,24,0.047848333 +53,2024,25,0.040052469 +53,2024,26,0.006448279 +53,2024,27,0.005100979 +53,2024,28,0.005538742 +53,2024,29,0.009095843 +53,2024,30,0.01148473 +54,2024,0,0.063448834 +54,2024,1,0.061466161 +54,2024,2,0.060910316 +54,2024,3,0.060225762 +54,2024,4,0.059954454 +54,2024,5,0.058897952 +54,2024,6,0.05770776 +54,2024,7,0.0551757 +54,2024,8,0.052872172 +54,2024,9,0.049166623 +54,2024,10,0.043907852 +54,2024,11,0.037872003 +54,2024,12,0.033453305 +54,2024,13,0.023796092 +54,2024,14,0.020159483 +54,2024,15,0.016253963 +54,2024,16,0.020143178 +54,2024,17,0.025312469 +54,2024,18,0.02471342 +54,2024,19,0.024552856 +54,2024,20,0.022687136 +54,2024,21,0.020115452 +54,2024,22,0.018117438 +54,2024,23,0.016548832 +54,2024,24,0.015111269 +54,2024,25,0.014142344 +54,2024,26,0.007944237 +54,2024,27,0.011777969 +54,2024,28,0.007028105 +54,2024,29,0.007952901 +54,2024,30,0.008583983 +61,2024,0,0.052211558 +61,2024,1,0.05088173 +61,2024,2,0.050600837 +61,2024,3,0.05033209 +61,2024,4,0.050258153 +61,2024,5,0.049327239 +61,2024,6,0.048306987 +61,2024,7,0.045607686 +61,2024,8,0.044500668 +61,2024,9,0.042289897 +61,2024,10,0.03805846 +61,2024,11,0.033095534 +61,2024,12,0.031985483 +61,2024,13,0.01544885 +61,2024,14,0.011313434 +61,2024,15,0.014338192 +61,2024,16,0.012590662 +61,2024,17,0.040035275 +61,2024,18,0.028704777 +61,2024,19,0.02735019 +61,2024,20,0.016714189 +61,2024,21,0.014538432 +61,2024,22,0.011057611 +61,2024,23,0.020910382 +61,2024,24,0.028033301 +61,2024,25,0.024555021 +61,2024,26,0.024311886 +61,2024,27,0.019347919 +61,2024,28,0.026308963 +61,2024,29,0.029046905 +61,2024,30,0.047937898 +62,2024,0,0.051470849 +62,2024,1,0.049460695 +62,2024,2,0.048403207 +62,2024,3,0.047258653 +62,2024,4,0.046253604 +62,2024,5,0.044454535 +62,2024,6,0.042633402 +62,2024,7,0.039639117 +62,2024,8,0.038404559 +62,2024,9,0.036255475 +62,2024,10,0.032186044 +62,2024,11,0.027874627 +62,2024,12,0.026247429 +62,2024,13,0.027636232 +62,2024,14,0.021368032 +62,2024,15,0.027678643 +62,2024,16,0.021072771 +62,2024,17,0.071580499 +62,2024,18,0.051748912 +62,2024,19,0.047883877 +62,2024,20,0.027860575 +62,2024,21,0.026533249 +62,2024,22,0.018899624 +62,2024,23,0.021137599 +62,2024,24,0.032930737 +62,2024,25,0.023900331 +62,2024,26,0.015511238 +62,2024,27,0.008589295 +62,2024,28,0.009098049 +62,2024,29,0.007938696 +62,2024,30,0.008089343 +11,2025,0,0.071128246 +11,2025,1,0.069389186 +11,2025,2,0.067329251 +11,2025,3,0.062443565 +11,2025,4,0.057885655 +11,2025,5,0.053811618 +11,2025,6,0.049948417 +11,2025,7,0.046476665 +11,2025,8,0.044035272 +11,2025,9,0.040873431 +11,2025,10,0.037182026 +11,2025,11,0.034106917 +11,2025,12,0.030359547 +11,2025,13,0.027135761 +11,2025,14,0.021768194 +11,2025,15,0.019658228 +11,2025,16,0.020360211 +11,2025,17,0.0360778 +11,2025,18,0.032099596 +11,2025,19,0.030412283 +11,2025,20,0.026632569 +11,2025,21,0.022594416 +11,2025,22,0.019341422 +11,2025,23,0.017036311 +11,2025,24,0.014437739 +11,2025,25,0.01152517 +11,2025,26,0.008711146 +11,2025,27,0.007433231 +11,2025,28,0.007111759 +11,2025,29,0.006232796 +11,2025,30,0.006461606 +21,2025,0,0.071128247 +21,2025,1,0.069132226 +21,2025,2,0.068398938 +21,2025,3,0.06760609 +21,2025,4,0.066549069 +21,2025,5,0.065538046 +21,2025,6,0.064215006 +21,2025,7,0.062804128 +21,2025,8,0.062282573 +21,2025,9,0.060227484 +21,2025,10,0.056787432 +21,2025,11,0.053692659 +21,2025,12,0.049118347 +21,2025,13,0.043279917 +21,2025,14,0.022728137 +21,2025,15,0.02118259 +21,2025,16,0.015724409 +21,2025,17,0.016037472 +21,2025,18,0.014087367 +21,2025,19,0.010596008 +21,2025,20,0.008476763 +21,2025,21,0.006370202 +21,2025,22,0.005381651 +21,2025,23,0.004351829 +21,2025,24,0.00343172 +21,2025,25,0.00304234 +21,2025,26,0.00219617 +21,2025,27,0.001661706 +21,2025,28,0.001430252 +21,2025,29,0.001112753 +21,2025,30,0.00142847 +31,2025,0,0.072883335 +31,2025,1,0.07103363 +31,2025,2,0.070041799 +31,2025,3,0.069413269 +31,2025,4,0.068327377 +31,2025,5,0.066659154 +31,2025,6,0.065201366 +31,2025,7,0.063670874 +31,2025,8,0.061077067 +31,2025,9,0.057771448 +31,2025,10,0.052115111 +31,2025,11,0.04614877 +31,2025,12,0.040262773 +31,2025,13,0.035281076 +31,2025,14,0.020950273 +31,2025,15,0.016397527 +31,2025,16,0.010933783 +31,2025,17,0.016609999 +31,2025,18,0.015361767 +31,2025,19,0.013718842 +31,2025,20,0.012536575 +31,2025,21,0.011072466 +31,2025,22,0.009022931 +31,2025,23,0.007770176 +31,2025,24,0.006198554 +31,2025,25,0.005353682 +31,2025,26,0.004440058 +31,2025,27,0.003385202 +31,2025,28,0.002699386 +31,2025,29,0.001921327 +31,2025,30,0.001740407 +32,2025,0,0.07285961 +32,2025,1,0.071013365 +32,2025,2,0.069995583 +32,2025,3,0.069331763 +32,2025,4,0.068200343 +32,2025,5,0.066459041 +32,2025,6,0.064900301 +32,2025,7,0.063230863 +32,2025,8,0.060454976 +32,2025,9,0.056941173 +32,2025,10,0.051077965 +32,2025,11,0.044928525 +32,2025,12,0.038952666 +32,2025,13,0.033842719 +32,2025,14,0.022578018 +32,2025,15,0.017235839 +32,2025,16,0.01162836 +32,2025,17,0.018119864 +32,2025,18,0.01655262 +32,2025,19,0.015182263 +32,2025,20,0.013663388 +32,2025,21,0.012095404 +32,2025,22,0.00981804 +32,2025,23,0.008390654 +32,2025,24,0.006841842 +32,2025,25,0.005180301 +32,2025,26,0.003660035 +32,2025,27,0.002092572 +32,2025,28,0.002121177 +32,2025,29,0.001316812 +32,2025,30,0.001333922 +41,2025,0,0.058227502 +41,2025,1,0.056178152 +41,2025,2,0.054296624 +41,2025,3,0.053602182 +41,2025,4,0.052849167 +41,2025,5,0.051988363 +41,2025,6,0.050334993 +41,2025,7,0.049076344 +41,2025,8,0.046121338 +41,2025,9,0.044592071 +41,2025,10,0.041931209 +41,2025,11,0.037298336 +41,2025,12,0.032472598 +41,2025,13,0.028890485 +41,2025,14,0.025656179 +41,2025,15,0.021998828 +41,2025,16,0.017741944 +41,2025,17,0.02223974 +41,2025,18,0.02806473 +41,2025,19,0.027837705 +41,2025,20,0.027717427 +41,2025,21,0.026049943 +41,2025,22,0.023372643 +41,2025,23,0.021076158 +41,2025,24,0.019560121 +41,2025,25,0.018063187 +41,2025,26,0.016976896 +41,2025,27,0.012443729 +41,2025,28,0.009847137 +41,2025,29,0.007867189 +41,2025,30,0.015641401 +42,2025,0,0.05826498 +42,2025,1,0.056273187 +42,2025,2,0.054469145 +42,2025,3,0.053859292 +42,2025,4,0.053229757 +42,2025,5,0.052398873 +42,2025,6,0.050721898 +42,2025,7,0.049418285 +42,2025,8,0.046433015 +42,2025,9,0.044898207 +42,2025,10,0.042238741 +42,2025,11,0.037639701 +42,2025,12,0.032776623 +42,2025,13,0.029161821 +42,2025,14,0.03411455 +42,2025,15,0.020281307 +42,2025,16,0.0199573 +42,2025,17,0.027176671 +42,2025,18,0.025421137 +42,2025,19,0.017705069 +42,2025,20,0.02664816 +42,2025,21,0.021134677 +42,2025,22,0.020048946 +42,2025,23,0.019565624 +42,2025,24,0.021750041 +42,2025,25,0.014288883 +42,2025,26,0.013392849 +42,2025,27,0.01520283 +42,2025,28,0.013510258 +42,2025,29,0.012025376 +42,2025,30,0.015994003 +43,2025,0,0.058191557 +43,2025,1,0.056201716 +43,2025,2,0.054395005 +43,2025,3,0.053796426 +43,2025,4,0.053107399 +43,2025,5,0.052208452 +43,2025,6,0.050560763 +43,2025,7,0.049304108 +43,2025,8,0.046346925 +43,2025,9,0.044814443 +43,2025,10,0.042147139 +43,2025,11,0.037494505 +43,2025,12,0.032643668 +43,2025,13,0.029043406 +43,2025,14,0.019930296 +43,2025,15,0.021158528 +43,2025,16,0.024245446 +43,2025,17,0.025814132 +43,2025,18,0.025757039 +43,2025,19,0.029228119 +43,2025,20,0.025079322 +43,2025,21,0.023899422 +43,2025,22,0.019921393 +43,2025,23,0.020143738 +43,2025,24,0.017742196 +43,2025,25,0.018746382 +43,2025,26,0.016769826 +43,2025,27,0.012800181 +43,2025,28,0.011597014 +43,2025,29,0.009664298 +43,2025,30,0.017247153 +51,2025,0,0.064537172 +51,2025,1,0.062566205 +51,2025,2,0.060669513 +51,2025,3,0.060321681 +51,2025,4,0.05971627 +51,2025,5,0.058835172 +51,2025,6,0.05700177 +51,2025,7,0.055622158 +51,2025,8,0.052267278 +51,2025,9,0.049898853 +51,2025,10,0.046266708 +51,2025,11,0.040704451 +51,2025,12,0.035095714 +51,2025,13,0.030611167 +51,2025,14,0.015839772 +51,2025,15,0.01204298 +51,2025,16,0.01517183 +51,2025,17,0.011243728 +51,2025,18,0.037304341 +51,2025,19,0.026633523 +51,2025,20,0.023818345 +51,2025,21,0.013610279 +51,2025,22,0.01278944 +51,2025,23,0.008798389 +51,2025,24,0.010312263 +51,2025,25,0.01353237 +51,2025,26,0.018469257 +51,2025,27,0.016221254 +51,2025,28,0.007549314 +51,2025,29,0.009340489 +51,2025,30,0.013208102 +52,2025,0,0.064483692 +52,2025,1,0.062588905 +52,2025,2,0.060705144 +52,2025,3,0.060279075 +52,2025,4,0.05974472 +52,2025,5,0.058841622 +52,2025,6,0.057176758 +52,2025,7,0.056059271 +52,2025,8,0.052988274 +52,2025,9,0.05077419 +52,2025,10,0.0472183 +52,2025,11,0.041694375 +52,2025,12,0.035992665 +52,2025,13,0.031433329 +52,2025,14,0.017034416 +52,2025,15,0.010064618 +52,2025,16,0.010240298 +52,2025,17,0.020267404 +52,2025,18,0.025211346 +52,2025,19,0.025367623 +52,2025,20,0.020837232 +52,2025,21,0.017390969 +52,2025,22,0.014382086 +52,2025,23,0.012248669 +52,2025,24,0.012639505 +52,2025,25,0.019820677 +52,2025,26,0.01597613 +52,2025,27,0.008629442 +52,2025,28,0.011422823 +52,2025,29,0.007282709 +52,2025,30,0.011203789 +53,2025,0,0.064571936 +53,2025,1,0.063432075 +53,2025,2,0.061589296 +53,2025,3,0.061345933 +53,2025,4,0.060927412 +53,2025,5,0.060673212 +53,2025,6,0.058978699 +53,2025,7,0.057575605 +53,2025,8,0.05421285 +53,2025,9,0.051829043 +53,2025,10,0.048122318 +53,2025,11,0.042427387 +53,2025,12,0.036618554 +53,2025,13,0.031985214 +53,2025,14,0.011751722 +53,2025,15,0.00711358 +53,2025,16,0.00794309 +53,2025,17,0.013346677 +53,2025,18,0.022160453 +53,2025,19,0.018824759 +53,2025,20,0.01654869 +53,2025,21,0.011647375 +53,2025,22,0.009487196 +53,2025,23,0.007567738 +53,2025,24,0.017797032 +53,2025,25,0.042166074 +53,2025,26,0.034827732 +53,2025,27,0.005607118 +53,2025,28,0.00443557 +53,2025,29,0.004751471 +53,2025,30,0.00973304 +54,2025,0,0.064401089 +54,2025,1,0.0624247 +54,2025,2,0.06047403 +54,2025,3,0.059927157 +54,2025,4,0.059253652 +54,2025,5,0.058287614 +54,2025,6,0.056573694 +54,2025,7,0.05543047 +54,2025,8,0.052354946 +54,2025,9,0.050169182 +54,2025,10,0.046653071 +54,2025,11,0.041151147 +54,2025,12,0.035494252 +54,2025,13,0.030962888 +54,2025,14,0.022024602 +54,2025,15,0.018658719 +54,2025,16,0.014854412 +54,2025,17,0.018408745 +54,2025,18,0.022837773 +54,2025,19,0.02229729 +54,2025,20,0.021866121 +54,2025,21,0.02020456 +54,2025,22,0.017914286 +54,2025,23,0.015923647 +54,2025,24,0.014544979 +54,2025,25,0.013281487 +54,2025,26,0.012264976 +54,2025,27,0.006889655 +54,2025,28,0.010214467 +54,2025,29,0.006013185 +54,2025,30,0.008243201 +61,2025,0,0.053264165 +61,2025,1,0.051657439 +61,2025,2,0.050341725 +61,2025,3,0.050063813 +61,2025,4,0.049797918 +61,2025,5,0.04943969 +61,2025,6,0.048244141 +61,2025,7,0.047246291 +61,2025,8,0.044347562 +61,2025,9,0.04327113 +61,2025,10,0.041121442 +61,2025,11,0.036791041 +61,2025,12,0.031993389 +61,2025,13,0.030738876 +61,2025,14,0.014846745 +61,2025,15,0.010872502 +61,2025,16,0.013698043 +61,2025,17,0.012028535 +61,2025,18,0.038020756 +61,2025,19,0.027260393 +61,2025,20,0.02581883 +61,2025,21,0.015778348 +61,2025,22,0.013724413 +61,2025,23,0.010375765 +61,2025,24,0.019620984 +61,2025,25,0.026304682 +61,2025,26,0.022901601 +61,2025,27,0.022674837 +61,2025,28,0.018045121 +61,2025,29,0.02438821 +61,2025,30,0.055321347 +62,2025,0,0.052526743 +62,2025,1,0.05021956 +62,2025,2,0.048258274 +62,2025,3,0.047226495 +62,2025,4,0.046109765 +62,2025,5,0.04487042 +62,2025,6,0.042876486 +62,2025,7,0.04112 +62,2025,8,0.038010276 +62,2025,9,0.036826449 +62,2025,10,0.034765674 +62,2025,11,0.030683424 +62,2025,12,0.026573287 +62,2025,13,0.024875236 +62,2025,14,0.026191432 +62,2025,15,0.020250929 +62,2025,16,0.0260768 +62,2025,17,0.019853229 +62,2025,18,0.06703753 +62,2025,19,0.048464586 +62,2025,20,0.044577004 +62,2025,21,0.025936516 +62,2025,22,0.024700855 +62,2025,23,0.017488692 +62,2025,24,0.019559593 +62,2025,25,0.030472326 +62,2025,26,0.021982385 +62,2025,27,0.014266497 +62,2025,28,0.007900023 +62,2025,29,0.008317059 +62,2025,30,0.011982456 +11,2026,0,0.071411429 +11,2026,1,0.070432836 +11,2026,2,0.067139577 +11,2026,3,0.062315108 +11,2026,4,0.057793268 +11,2026,5,0.053574795 +11,2026,6,0.04980416 +11,2026,7,0.046228659 +11,2026,8,0.043015455 +11,2026,9,0.040755878 +11,2026,10,0.037829505 +11,2026,11,0.034413006 +11,2026,12,0.031566907 +11,2026,13,0.028098611 +11,2026,14,0.025114907 +11,2026,15,0.020147073 +11,2026,16,0.01819424 +11,2026,17,0.018843945 +11,2026,18,0.033391014 +11,2026,19,0.029709075 +11,2026,20,0.02814742 +11,2026,21,0.024649188 +11,2026,22,0.020911765 +11,2026,23,0.017901028 +11,2026,24,0.015767583 +11,2026,25,0.013362532 +11,2026,26,0.010666867 +11,2026,27,0.008062409 +11,2026,28,0.006879664 +11,2026,29,0.006582132 +11,2026,30,0.007289991 +21,2026,0,0.071411429 +21,2026,1,0.070168932 +21,2026,2,0.068199832 +21,2026,3,0.067468742 +21,2026,4,0.066413037 +21,2026,5,0.065135238 +21,2026,6,0.063850955 +21,2026,7,0.062229857 +21,2026,8,0.060502477 +21,2026,9,0.059614894 +21,2026,10,0.057255081 +21,2026,11,0.053620876 +21,2026,12,0.050342501 +21,2026,13,0.04375073 +21,2026,14,0.03576694 +21,2026,15,0.018205237 +21,2026,16,0.016524275 +21,2026,17,0.012010067 +21,2026,18,0.012043622 +21,2026,19,0.010446112 +21,2026,20,0.007772603 +21,2026,21,0.006171351 +21,2026,22,0.00461264 +21,2026,23,0.003875657 +21,2026,24,0.003121297 +21,2026,25,0.002460974 +21,2026,26,0.002172504 +21,2026,27,0.001567769 +21,2026,28,0.001184552 +21,2026,29,0.001017952 +21,2026,30,0.001081866 +31,2026,0,0.073750828 +31,2026,1,0.071260405 +31,2026,2,0.06944162 +31,2026,3,0.068461892 +31,2026,4,0.067305782 +31,2026,5,0.065768946 +31,2026,6,0.063652555 +31,2026,7,0.061723358 +31,2026,8,0.059713143 +31,2026,9,0.05673324 +31,2026,10,0.053153368 +31,2026,11,0.047504764 +31,2026,12,0.041686037 +31,2026,13,0.036060808 +31,2026,14,0.031318553 +31,2026,15,0.018121882 +31,2026,16,0.014053428 +31,2026,17,0.009290155 +31,2026,18,0.014005056 +31,2026,19,0.012865992 +31,2026,20,0.011416621 +31,2026,21,0.010380209 +31,2026,22,0.009119925 +31,2026,23,0.007405726 +31,2026,24,0.006347183 +31,2026,25,0.005049046 +31,2026,26,0.004350794 +31,2026,27,0.003595481 +31,2026,28,0.002738342 +31,2026,29,0.002177332 +31,2026,30,0.001547526 +32,2026,0,0.073760077 +32,2026,1,0.071246142 +32,2026,2,0.069430515 +32,2026,3,0.068425299 +32,2026,4,0.067235181 +32,2026,5,0.065654901 +32,2026,6,0.063469427 +32,2026,7,0.061446057 +32,2026,8,0.059307919 +32,2026,9,0.056162435 +32,2026,10,0.052396033 +32,2026,11,0.046565208 +32,2026,12,0.040588883 +32,2026,13,0.034891804 +32,2026,14,0.03004551 +32,2026,15,0.019532322 +32,2026,16,0.014773751 +32,2026,17,0.009881558 +32,2026,18,0.015280045 +32,2026,19,0.013865109 +32,2026,20,0.012636043 +32,2026,21,0.011314622 +32,2026,22,0.009963726 +32,2026,23,0.008059336 +32,2026,24,0.006854889 +32,2026,25,0.005573736 +32,2026,26,0.00421042 +32,2026,27,0.002964204 +32,2026,28,0.001692925 +32,2026,29,0.001711162 +32,2026,30,0.001060755 +41,2026,0,0.059107072 +41,2026,1,0.057246791 +41,2026,2,0.055231958 +41,2026,3,0.053382119 +41,2026,4,0.052699374 +41,2026,5,0.051513408 +41,2026,6,0.050235985 +41,2026,7,0.048638346 +41,2026,8,0.047008301 +41,2026,9,0.044177817 +41,2026,10,0.042712992 +41,2026,11,0.039810683 +41,2026,12,0.035412102 +41,2026,13,0.030556594 +41,2026,14,0.027185839 +41,2026,15,0.024142369 +41,2026,16,0.020515318 +41,2026,17,0.0165455 +41,2026,18,0.020552454 +41,2026,19,0.025935513 +41,2026,20,0.025490979 +41,2026,21,0.02538084 +41,2026,22,0.023853925 +41,2026,23,0.02120524 +41,2026,24,0.019121714 +41,2026,25,0.017746263 +41,2026,26,0.01623583 +41,2026,27,0.015259434 +41,2026,28,0.011184863 +41,2026,29,0.008767921 +41,2026,30,0.013150536 +42,2026,0,0.059099008 +42,2026,1,0.057275821 +42,2026,2,0.055317843 +42,2026,3,0.053544428 +42,2026,4,0.052944929 +42,2026,5,0.0518773 +42,2026,6,0.05062575 +42,2026,7,0.049005522 +42,2026,8,0.047329374 +42,2026,9,0.044470292 +42,2026,10,0.04300036 +42,2026,11,0.040097192 +42,2026,12,0.035731327 +42,2026,13,0.030838472 +42,2026,14,0.027437421 +42,2026,15,0.032097285 +42,2026,16,0.018911038 +42,2026,17,0.018608922 +42,2026,18,0.025111402 +42,2026,19,0.023489279 +42,2026,20,0.016210315 +42,2026,21,0.024398384 +42,2026,22,0.019350377 +42,2026,23,0.018187276 +42,2026,24,0.017748834 +42,2026,25,0.019730414 +42,2026,26,0.0128416 +42,2026,27,0.012036323 +42,2026,28,0.013662976 +42,2026,29,0.012027934 +42,2026,30,0.016989219 +43,2026,0,0.059156036 +43,2026,1,0.057258845 +43,2026,2,0.055300897 +43,2026,3,0.053523145 +43,2026,4,0.05293416 +43,2026,5,0.051807994 +43,2026,6,0.050490447 +43,2026,7,0.048896978 +43,2026,8,0.047265589 +43,2026,9,0.044430673 +43,2026,10,0.042961553 +43,2026,11,0.040048842 +43,2026,12,0.035627839 +43,2026,13,0.030743016 +43,2026,14,0.027352377 +43,2026,15,0.01876987 +43,2026,16,0.019748029 +43,2026,17,0.022629163 +43,2026,18,0.023875425 +43,2026,19,0.023822619 +43,2026,20,0.026786352 +43,2026,21,0.022984152 +43,2026,22,0.021902823 +43,2026,23,0.018089006 +43,2026,24,0.018290899 +43,2026,25,0.016110253 +43,2026,26,0.016863868 +43,2026,27,0.015085798 +43,2026,28,0.011514786 +43,2026,29,0.010334571 +43,2026,30,0.015394335 +51,2026,0,0.065488553 +51,2026,1,0.063801007 +51,2026,2,0.061852522 +51,2026,3,0.059977466 +51,2026,4,0.059633601 +51,2026,5,0.058303717 +51,2026,6,0.056722873 +51,2026,7,0.054955293 +51,2026,8,0.052943975 +51,2026,9,0.049750632 +51,2026,10,0.047496246 +51,2026,11,0.043472329 +51,2026,12,0.038246016 +51,2026,13,0.032546194 +51,2026,14,0.028387426 +51,2026,15,0.014689096 +51,2026,16,0.011020624 +51,2026,17,0.013883858 +51,2026,18,0.010151514 +51,2026,19,0.033680601 +51,2026,20,0.023720149 +51,2026,21,0.021212916 +51,2026,22,0.012121485 +51,2026,23,0.011233796 +51,2026,24,0.007728196 +51,2026,25,0.00905793 +51,2026,26,0.011720619 +51,2026,27,0.015996543 +51,2026,28,0.014049508 +51,2026,29,0.00644613 +51,2026,30,0.009709288 +52,2026,0,0.065384573 +52,2026,1,0.06364692 +52,2026,2,0.061776721 +52,2026,3,0.059917405 +52,2026,4,0.059496865 +52,2026,5,0.058238878 +52,2026,6,0.056639019 +52,2026,7,0.055036476 +52,2026,8,0.05327532 +52,2026,9,0.050356832 +52,2026,10,0.048252701 +52,2026,11,0.044296004 +52,2026,12,0.03911395 +52,2026,13,0.033324991 +52,2026,14,0.029103579 +52,2026,15,0.015771873 +52,2026,16,0.009195585 +52,2026,17,0.009356096 +52,2026,18,0.018269577 +52,2026,19,0.022726177 +52,2026,20,0.022556851 +52,2026,21,0.018528434 +52,2026,22,0.015464023 +52,2026,23,0.012612663 +52,2026,24,0.010741719 +52,2026,25,0.011084471 +52,2026,26,0.017139775 +52,2026,27,0.013815233 +52,2026,28,0.007462242 +52,2026,29,0.009738116 +52,2026,30,0.007676913 +53,2026,0,0.065309736 +53,2026,1,0.063661071 +53,2026,2,0.06253729 +53,2026,3,0.060720505 +53,2026,4,0.060480575 +53,2026,5,0.059323782 +53,2026,6,0.058335202 +53,2026,7,0.056705987 +53,2026,8,0.054653725 +53,2026,9,0.051461624 +53,2026,10,0.049198793 +53,2026,11,0.045092403 +53,2026,12,0.03975604 +53,2026,13,0.033865684 +53,2026,14,0.029580664 +53,2026,15,0.010868263 +53,2026,16,0.006491917 +53,2026,17,0.007248935 +53,2026,18,0.012017279 +53,2026,19,0.019953157 +53,2026,20,0.016719788 +53,2026,21,0.014698227 +53,2026,22,0.010344973 +53,2026,23,0.008310467 +53,2026,24,0.006629086 +53,2026,25,0.015589605 +53,2026,26,0.036421046 +53,2026,27,0.030082536 +53,2026,28,0.004843162 +53,2026,29,0.003777057 +53,2026,30,0.005320153 +54,2026,0,0.065217635 +54,2026,1,0.063403096 +54,2026,2,0.061457335 +54,2026,3,0.059536892 +54,2026,4,0.058998495 +54,2026,5,0.057612716 +54,2026,6,0.055962502 +54,2026,7,0.054316951 +54,2026,8,0.05254325 +54,2026,9,0.049627921 +54,2026,10,0.047556008 +54,2026,11,0.043654015 +54,2026,12,0.038505778 +54,2026,13,0.032779612 +54,2026,14,0.028594812 +54,2026,15,0.020340136 +54,2026,16,0.017004101 +54,2026,17,0.013537152 +54,2026,18,0.016551764 +54,2026,19,0.020534014 +54,2026,20,0.019776095 +54,2026,21,0.019393679 +54,2026,22,0.017919993 +54,2026,23,0.015670187 +54,2026,24,0.013928912 +54,2026,25,0.012722948 +54,2026,26,0.011455738 +54,2026,27,0.010578962 +54,2026,28,0.005942564 +54,2026,29,0.008685743 +54,2026,30,0.006190782 +61,2026,0,0.054301033 +61,2026,1,0.052785991 +61,2026,2,0.051193689 +61,2026,3,0.049889786 +61,2026,4,0.049614369 +61,2026,5,0.049063325 +61,2026,6,0.048424913 +61,2026,7,0.047253903 +61,2026,8,0.046003732 +61,2026,9,0.043181238 +61,2026,10,0.042133116 +61,2026,11,0.039802525 +61,2026,12,0.035611015 +61,2026,13,0.03078251 +61,2026,14,0.029575478 +61,2026,15,0.014284828 +61,2026,16,0.010398224 +61,2026,17,0.013100509 +61,2026,18,0.011434374 +61,2026,19,0.036142686 +61,2026,20,0.025756437 +61,2026,21,0.024394405 +61,2026,22,0.014907857 +61,2026,23,0.012887992 +61,2026,24,0.009743424 +61,2026,25,0.018425201 +61,2026,26,0.024549682 +61,2026,27,0.021373648 +61,2026,28,0.021162014 +61,2026,29,0.01673699 +61,2026,30,0.055084891 +62,2026,0,0.053512538 +62,2026,1,0.051299306 +62,2026,2,0.049046036 +62,2026,3,0.047130582 +62,2026,4,0.046122913 +62,2026,5,0.044769904 +62,2026,6,0.04331125 +62,2026,7,0.041386601 +62,2026,8,0.039457168 +62,2026,9,0.036473197 +62,2026,10,0.035337242 +62,2026,11,0.033161976 +62,2026,12,0.029268035 +62,2026,13,0.025196286 +62,2026,14,0.023586226 +62,2026,15,0.024834218 +62,2026,16,0.019086314 +62,2026,17,0.024577144 +62,2026,18,0.018598516 +62,2026,19,0.062800795 +62,2026,20,0.045125876 +62,2026,21,0.041506108 +62,2026,22,0.024149758 +62,2026,23,0.022858668 +62,2026,24,0.016184387 +62,2026,25,0.01810084 +62,2026,26,0.028026308 +62,2026,27,0.020217855 +62,2026,28,0.013121323 +62,2026,29,0.007220934 +62,2026,30,0.014531769 +11,2027,0,0.072171594 +11,2027,1,0.070674695 +11,2027,2,0.068118785 +11,2027,3,0.06212352 +11,2027,4,0.057659492 +11,2027,5,0.053475483 +11,2027,6,0.049572176 +11,2027,7,0.046083248 +11,2027,8,0.042774876 +11,2027,9,0.039801733 +11,2027,10,0.037710971 +11,2027,11,0.03500323 +11,2027,12,0.03184198 +11,2027,13,0.029208516 +11,2027,14,0.02599934 +11,2027,15,0.023238551 +11,2027,16,0.018641868 +11,2027,17,0.016834933 +11,2027,18,0.017436098 +11,2027,19,0.030896343 +11,2027,20,0.027489484 +11,2027,21,0.026044501 +11,2027,22,0.022807626 +11,2027,23,0.019349429 +11,2027,24,0.016563627 +11,2027,25,0.014589574 +11,2027,26,0.012364206 +11,2027,27,0.009869937 +11,2027,28,0.00746006 +11,2027,29,0.006365678 +11,2027,30,0.007828444 +21,2027,0,0.072171597 +21,2027,1,0.070406168 +21,2027,2,0.069181162 +21,2027,3,0.067232008 +21,2027,4,0.066234527 +21,2027,5,0.064955969 +21,2027,6,0.063409325 +21,2027,7,0.061824385 +21,2027,8,0.059893102 +21,2027,9,0.057851406 +21,2027,10,0.056608718 +21,2027,11,0.053996027 +21,2027,12,0.050208195 +21,2027,13,0.04474637 +21,2027,14,0.03603574 +21,2027,15,0.028538726 +21,2027,16,0.014140253 +21,2027,17,0.012561605 +21,2027,18,0.008973932 +21,2027,19,0.008883727 +21,2027,20,0.007620844 +21,2027,21,0.005627017 +21,2027,22,0.00444317 +21,2027,23,0.003302553 +21,2027,24,0.002763406 +21,2027,25,0.00222518 +21,2027,26,0.001746863 +21,2027,27,0.001541604 +21,2027,28,0.001110878 +21,2027,29,0.000837991 +21,2027,30,0.00092755 +31,2027,0,0.073298072 +31,2027,1,0.072087621 +31,2027,2,0.069643227 +31,2027,3,0.067855842 +31,2027,4,0.066372839 +31,2027,5,0.064783075 +31,2027,6,0.062808216 +31,2027,7,0.06027122 +31,2027,8,0.057909155 +31,2027,9,0.055496756 +31,2027,10,0.052235198 +31,2027,11,0.048493248 +31,2027,12,0.042954867 +31,2027,13,0.037379304 +31,2027,14,0.032053232 +31,2027,15,0.027138871 +31,2027,16,0.01556167 +31,2027,17,0.011966089 +31,2027,18,0.007850857 +31,2027,19,0.01175763 +31,2027,20,0.010733667 +31,2027,21,0.009477431 +31,2027,22,0.008572783 +31,2027,23,0.007506008 +31,2027,24,0.006066733 +31,2027,25,0.00518514 +31,2027,26,0.004115333 +31,2027,27,0.003533835 +31,2027,28,0.002917282 +31,2027,29,0.002215591 +31,2027,30,0.001759202 +32,2027,0,0.07329767 +32,2027,1,0.072096266 +32,2027,2,0.069628906 +32,2027,3,0.067844619 +32,2027,4,0.066336999 +32,2027,5,0.064714765 +32,2027,6,0.062698961 +32,2027,7,0.06009749 +32,2027,8,0.057648675 +32,2027,9,0.055119844 +32,2027,10,0.051709366 +32,2027,11,0.047802049 +32,2027,12,0.042105068 +32,2027,13,0.036395302 +32,2027,14,0.031013974 +32,2027,15,0.026035582 +32,2027,16,0.016772756 +32,2027,17,0.012579355 +32,2027,18,0.00835059 +32,2027,19,0.012827948 +32,2027,20,0.011567135 +32,2027,21,0.010489668 +32,2027,22,0.009344443 +32,2027,23,0.008200439 +32,2027,24,0.006602131 +32,2027,25,0.005599865 +32,2027,26,0.004542969 +32,2027,27,0.003419801 +32,2027,28,0.002405067 +32,2027,29,0.001369738 +32,2027,30,0.001382547 +41,2027,0,0.059855238 +41,2027,1,0.058248638 +41,2027,2,0.056415374 +41,2027,3,0.054429804 +41,2027,4,0.052606831 +41,2027,5,0.051438657 +41,2027,6,0.049796865 +41,2027,7,0.048562009 +41,2027,8,0.046560433 +41,2027,9,0.045000027 +41,2027,10,0.042290466 +41,2027,11,0.040486741 +41,2027,12,0.037735703 +41,2027,13,0.033233528 +41,2027,14,0.028676733 +41,2027,15,0.025513349 +41,2027,16,0.02243019 +41,2027,17,0.01906037 +41,2027,18,0.015216574 +41,2027,19,0.018901691 +41,2027,20,0.023608606 +41,2027,21,0.023203955 +41,2027,22,0.023103698 +41,2027,23,0.021489563 +41,2027,24,0.019103411 +41,2027,25,0.017226401 +41,2027,26,0.015820476 +41,2027,27,0.014473952 +41,2027,28,0.013603512 +41,2027,29,0.009865974 +41,2027,30,0.012041032 +42,2027,0,0.059968357 +42,2027,1,0.058350758 +42,2027,2,0.056550655 +42,2027,3,0.054617467 +42,2027,4,0.052866505 +42,2027,5,0.051776003 +42,2027,6,0.050243406 +42,2027,7,0.049031274 +42,2027,8,0.047000581 +42,2027,9,0.045393009 +42,2027,10,0.042650898 +42,2027,11,0.04083616 +42,2027,12,0.038079107 +42,2027,13,0.033596487 +42,2027,14,0.028995965 +42,2027,15,0.025798117 +42,2027,16,0.029877301 +42,2027,17,0.017603071 +42,2027,18,0.017146606 +42,2027,19,0.023138113 +42,2027,20,0.021422254 +42,2027,21,0.014783829 +42,2027,22,0.022251359 +42,2027,23,0.017465344 +42,2027,24,0.016415548 +42,2027,25,0.016019816 +42,2027,26,0.017622552 +42,2027,27,0.011469692 +42,2027,28,0.010750445 +42,2027,29,0.012074651 +42,2027,30,0.016204427 +43,2027,0,0.059926001 +43,2027,1,0.058365811 +43,2027,2,0.056493964 +43,2027,3,0.054562171 +43,2027,4,0.052808166 +43,2027,5,0.051728909 +43,2027,6,0.050140843 +43,2027,7,0.048865694 +43,2027,8,0.046863354 +43,2027,9,0.045299815 +43,2027,10,0.042582803 +43,2027,11,0.040770489 +43,2027,12,0.038006328 +43,2027,13,0.033475522 +43,2027,14,0.028885796 +43,2027,15,0.025699989 +43,2027,16,0.017459327 +43,2027,17,0.018369189 +43,2027,18,0.020836204 +43,2027,19,0.021983721 +43,2027,20,0.021710916 +43,2027,21,0.024411935 +43,2027,22,0.020946773 +43,2027,23,0.019755178 +43,2027,24,0.016315318 +43,2027,25,0.016497415 +43,2027,26,0.014378982 +43,2027,27,0.01505161 +43,2027,28,0.013464619 +43,2027,29,0.010169001 +43,2027,30,0.014174563 +51,2027,0,0.066155695 +51,2027,1,0.064913211 +51,2027,2,0.06324049 +51,2027,3,0.061309124 +51,2027,4,0.059450541 +51,2027,5,0.058280611 +51,2027,6,0.056170304 +51,2027,7,0.054647306 +51,2027,8,0.052180361 +51,2027,9,0.050270604 +51,2027,10,0.047238506 +51,2027,11,0.04443761 +51,2027,12,0.040672822 +51,2027,13,0.035251337 +51,2027,14,0.029997813 +51,2027,15,0.026164679 +51,2027,16,0.013334711 +51,2027,17,0.010004485 +51,2027,18,0.012410692 +51,2027,19,0.009074373 +51,2027,20,0.029638613 +51,2027,21,0.020873508 +51,2027,22,0.018667167 +51,2027,23,0.010498268 +51,2027,24,0.009729452 +51,2027,25,0.006693295 +51,2027,26,0.007719028 +51,2027,27,0.009988131 +51,2027,28,0.013632007 +51,2027,29,0.011777444 +51,2027,30,0.005578482 +52,2027,0,0.066033335 +52,2027,1,0.064690273 +52,2027,2,0.062971072 +52,2027,3,0.061120732 +52,2027,4,0.059281159 +52,2027,5,0.05803943 +52,2027,6,0.056004062 +52,2027,7,0.054465595 +52,2027,8,0.05216079 +52,2027,9,0.050491655 +52,2027,10,0.04772566 +52,2027,11,0.045061851 +52,2027,12,0.041366803 +52,2027,13,0.035984632 +52,2027,14,0.030658819 +52,2027,15,0.026775142 +52,2027,16,0.014291171 +52,2027,17,0.008332281 +52,2027,18,0.008347886 +52,2027,19,0.016300852 +52,2027,20,0.019961833 +52,2027,21,0.019813103 +52,2027,22,0.016274691 +52,2027,23,0.013368427 +52,2027,24,0.010903467 +52,2027,25,0.009286063 +52,2027,26,0.009428544 +52,2027,27,0.014579236 +52,2027,28,0.011751353 +52,2027,29,0.00624389 +52,2027,30,0.008286147 +53,2027,0,0.065896148 +53,2027,1,0.064481987 +53,2027,2,0.062854218 +53,2027,3,0.06174468 +53,2027,4,0.059950922 +53,2027,5,0.058876471 +53,2027,6,0.056928817 +53,2027,7,0.055980147 +53,2027,8,0.053631415 +53,2027,9,0.051690425 +53,2027,10,0.048671399 +53,2027,11,0.045849926 +53,2027,12,0.04202305 +53,2027,13,0.036499364 +53,2027,14,0.031091525 +53,2027,15,0.02715752 +53,2027,16,0.009827465 +53,2027,17,0.005870219 +53,2027,18,0.006454355 +53,2027,19,0.010700024 +53,2027,20,0.017489703 +53,2027,21,0.014655532 +53,2027,22,0.012883557 +53,2027,23,0.008924502 +53,2027,24,0.007169354 +53,2027,25,0.005718844 +53,2027,26,0.013233098 +53,2027,27,0.030915684 +53,2027,28,0.025535295 +53,2027,29,0.004044005 +53,2027,30,0.003249225 +54,2027,0,0.065949611 +54,2027,1,0.064443296 +54,2027,2,0.062650301 +54,2027,3,0.060727642 +54,2027,4,0.058830001 +54,2027,5,0.057480296 +54,2027,6,0.055331683 +54,2027,7,0.053746805 +54,2027,8,0.05141359 +54,2027,9,0.049734698 +54,2027,10,0.0469752 +54,2027,11,0.044354919 +54,2027,12,0.040715578 +54,2027,13,0.035380201 +54,2027,14,0.030118836 +54,2027,15,0.026273724 +54,2027,16,0.018407186 +54,2027,17,0.015388179 +54,2027,18,0.012063078 +54,2027,19,0.014749426 +54,2027,20,0.01801345 +54,2027,21,0.017348566 +54,2027,22,0.017013091 +54,2027,23,0.015471937 +54,2027,24,0.013529477 +54,2027,25,0.012026078 +54,2027,26,0.010808525 +54,2027,27,0.009731991 +54,2027,28,0.008987144 +54,2027,29,0.004966023 +54,2027,30,0.007369531 +61,2027,0,0.055157435 +61,2027,1,0.053961678 +61,2027,2,0.052456105 +61,2027,3,0.050873754 +61,2027,4,0.049578 +61,2027,5,0.048990224 +61,2027,6,0.04813552 +61,2027,7,0.04750918 +61,2027,8,0.046061177 +61,2027,9,0.044842561 +61,2027,10,0.042091309 +61,2027,11,0.040802921 +61,2027,12,0.038545909 +61,2027,13,0.034261298 +61,2027,14,0.029615801 +61,2027,15,0.028454517 +61,2027,16,0.01365298 +61,2027,17,0.009938288 +61,2027,18,0.012438114 +61,2027,19,0.010856223 +61,2027,20,0.034086421 +61,2027,21,0.024291077 +61,2027,22,0.023006535 +61,2027,23,0.013965331 +61,2027,24,0.012073169 +61,2027,25,0.009127411 +61,2027,26,0.017143657 +61,2027,27,0.022842156 +61,2027,28,0.019887028 +61,2027,29,0.019556149 +61,2027,30,0.045797757 +62,2027,0,0.054381837 +62,2027,1,0.052430345 +62,2027,2,0.050261871 +62,2027,3,0.04805417 +62,2027,4,0.046177452 +62,2027,5,0.044902289 +62,2027,6,0.04330566 +62,2027,7,0.041894712 +62,2027,8,0.0397747 +62,2027,9,0.037920413 +62,2027,10,0.03505266 +62,2027,11,0.033740392 +62,2027,12,0.031663424 +62,2027,13,0.027762772 +62,2027,14,0.023900434 +62,2027,15,0.022373179 +62,2027,16,0.023401987 +62,2027,17,0.017985574 +62,2027,18,0.023006342 +62,2027,19,0.017409827 +62,2027,20,0.058395035 +62,2027,21,0.041960092 +62,2027,22,0.038594267 +62,2027,23,0.022304814 +62,2027,24,0.021112359 +62,2027,25,0.014947966 +62,2027,26,0.016605034 +62,2027,27,0.025710287 +62,2027,28,0.018547104 +62,2027,29,0.011955115 +62,2027,30,0.014468115 +11,2028,0,0.072226392 +11,2028,1,0.071383548 +11,2028,2,0.068332121 +11,2028,3,0.063049104 +11,2028,4,0.057500032 +11,2028,5,0.053368235 +11,2028,6,0.049495617 +11,2028,7,0.04588281 +11,2028,8,0.042653543 +11,2028,9,0.039591393 +11,2028,10,0.036839524 +11,2028,11,0.034904365 +11,2028,12,0.032398145 +11,2028,13,0.029472169 +11,2028,14,0.027034698 +11,2028,15,0.024064361 +11,2028,16,0.021509042 +11,2028,17,0.017254463 +11,2028,18,0.015582008 +11,2028,19,0.016138431 +11,2028,20,0.028596909 +11,2028,21,0.025443603 +11,2028,22,0.024106162 +11,2028,23,0.021110189 +11,2028,24,0.017909365 +11,2028,25,0.015330893 +11,2028,26,0.013503757 +11,2028,27,0.011444011 +11,2028,28,0.009135375 +11,2028,29,0.006904851 +11,2028,30,0.00783485 +21,2028,0,0.072226394 +21,2028,1,0.071113742 +21,2028,2,0.06937419 +21,2028,3,0.068159301 +21,2028,4,0.065964745 +21,2028,5,0.064745955 +21,2028,6,0.063201791 +21,2028,7,0.061366476 +21,2028,8,0.059475406 +21,2028,9,0.057244321 +21,2028,10,0.0549128 +21,2028,11,0.053367697 +21,2028,12,0.050543685 +21,2028,13,0.044626185 +21,2028,14,0.036872044 +21,2028,15,0.028771673 +21,2028,16,0.022184556 +21,2028,17,0.010759641 +21,2028,18,0.009396183 +21,2028,19,0.006627178 +21,2028,20,0.006489108 +21,2028,21,0.005524333 +21,2028,22,0.004056701 +21,2028,23,0.003185609 +21,2028,24,0.002358097 +21,2028,25,0.001972821 +21,2028,26,0.00158177 +21,2028,27,0.001241362 +21,2028,28,0.001093929 +21,2028,29,0.000787025 +21,2028,30,0.00077528 +31,2028,0,0.073018791 +31,2028,1,0.071620678 +31,2028,2,0.070427901 +31,2028,3,0.0680301 +31,2028,4,0.065774581 +31,2028,5,0.063884805 +31,2028,6,0.061877178 +31,2028,7,0.059493065 +31,2028,8,0.056578723 +31,2028,9,0.053862098 +31,2028,10,0.051147538 +31,2028,11,0.047713022 +31,2028,12,0.043910651 +31,2028,13,0.038579065 +31,2028,14,0.033285598 +31,2028,15,0.027843036 +31,2028,16,0.023366612 +31,2028,17,0.013288261 +31,2028,18,0.01014308 +31,2028,19,0.006612218 +31,2028,20,0.009842119 +31,2028,21,0.008941691 +31,2028,22,0.007855645 +31,2028,23,0.007081958 +31,2028,24,0.006172516 +31,2028,25,0.00497544 +31,2028,26,0.004243056 +31,2028,27,0.003356176 +31,2028,28,0.002878999 +31,2028,29,0.002370205 +31,2028,30,0.001825196 +32,2028,0,0.073021163 +32,2028,1,0.071622611 +32,2028,2,0.070438635 +32,2028,3,0.06801832 +32,2028,4,0.065765838 +32,2028,5,0.063852382 +32,2028,6,0.06181394 +32,2028,7,0.059391506 +32,2028,8,0.056417469 +32,2028,9,0.053621563 +32,2028,10,0.050801813 +32,2028,11,0.047234246 +32,2028,12,0.043286176 +32,2028,13,0.037817063 +32,2028,14,0.032410414 +32,2028,15,0.026941159 +32,2028,16,0.022417406 +32,2028,17,0.014322884 +32,2028,18,0.010663262 +32,2028,19,0.007033335 +32,2028,20,0.010738414 +32,2028,21,0.009636325 +32,2028,22,0.00869495 +32,2028,23,0.007719676 +32,2028,24,0.006743796 +32,2028,25,0.005414705 +32,2028,26,0.004582578 +32,2028,27,0.003705045 +32,2028,28,0.002786186 +32,2028,29,0.001954109 +32,2028,30,0.001133043 +41,2028,0,0.060416702 +41,2028,1,0.059088463 +41,2028,2,0.057502445 +41,2028,3,0.055692666 +41,2028,4,0.053732531 +41,2028,5,0.051400959 +41,2028,6,0.049739422 +41,2028,7,0.048151866 +41,2028,8,0.04646675 +41,2028,9,0.044551535 +41,2028,10,0.043058454 +41,2028,11,0.040038162 +41,2028,12,0.0383305 +41,2028,13,0.035344399 +41,2028,14,0.031127525 +41,2028,15,0.026859494 +41,2028,16,0.023638586 +41,2028,17,0.020781983 +41,2028,18,0.017467047 +41,2028,19,0.013944567 +41,2028,20,0.017130501 +41,2028,21,0.021396353 +41,2028,22,0.02102962 +41,2028,23,0.020705136 +41,2028,24,0.019258576 +41,2028,25,0.017120148 +41,2028,26,0.015263812 +41,2028,27,0.014018063 +41,2028,28,0.012824947 +41,2028,29,0.011916119 +41,2028,30,0.012005961 +42,2028,0,0.060541928 +42,2028,1,0.059322838 +42,2028,2,0.057722652 +42,2028,3,0.055941925 +42,2028,4,0.054029546 +42,2028,5,0.051761746 +42,2028,6,0.050169396 +42,2028,7,0.048684355 +42,2028,8,0.047013011 +42,2028,9,0.045065907 +42,2028,10,0.043524507 +42,2028,11,0.040463093 +42,2028,12,0.038741443 +42,2028,13,0.035739967 +42,2028,14,0.031532707 +42,2028,15,0.027214788 +42,2028,16,0.023951971 +42,2028,17,0.027739243 +42,2028,18,0.016165004 +42,2028,19,0.01574583 +42,2028,20,0.021013412 +42,2028,21,0.019455116 +42,2028,22,0.013426276 +42,2028,23,0.019982618 +42,2028,24,0.015684583 +42,2028,25,0.014741823 +42,2028,26,0.014224114 +42,2028,27,0.015647195 +42,2028,28,0.010184025 +42,2028,29,0.009436468 +42,2028,30,0.01513506 +43,2028,0,0.060483817 +43,2028,1,0.059224037 +43,2028,2,0.057682123 +43,2028,3,0.055832202 +43,2028,4,0.053923038 +43,2028,5,0.051654998 +43,2028,6,0.050075653 +43,2028,7,0.048538341 +43,2028,8,0.046809274 +43,2028,9,0.044891199 +43,2028,10,0.043393458 +43,2028,11,0.040359715 +43,2028,12,0.038642015 +43,2028,13,0.035637419 +43,2028,14,0.031389015 +43,2028,15,0.027085364 +43,2028,16,0.023837962 +43,2028,17,0.016194356 +43,2028,18,0.016852344 +43,2028,19,0.019115644 +43,2028,20,0.019945861 +43,2028,21,0.019698345 +43,2028,22,0.022148983 +43,2028,23,0.018792991 +43,2028,24,0.017723918 +43,2028,25,0.01463775 +43,2028,26,0.014634118 +43,2028,27,0.01275495 +43,2028,28,0.013351609 +43,2028,29,0.011807556 +43,2028,30,0.012881716 +51,2028,0,0.06626424 +51,2028,1,0.06539541 +51,2028,2,0.064167205 +51,2028,3,0.062513708 +51,2028,4,0.060604538 +51,2028,5,0.057906065 +51,2028,6,0.055922229 +51,2028,7,0.053897317 +51,2028,8,0.051644283 +51,2028,9,0.049312904 +51,2028,10,0.047508093 +51,2028,11,0.043958278 +51,2028,12,0.041351875 +51,2028,13,0.037259294 +51,2028,14,0.032292815 +51,2028,15,0.027480201 +51,2028,16,0.023589725 +51,2028,17,0.012022398 +51,2028,18,0.008874977 +51,2028,19,0.011009523 +51,2028,20,0.007918416 +51,2028,21,0.025863039 +51,2028,22,0.018214495 +51,2028,23,0.016018785 +51,2028,24,0.009008839 +51,2028,25,0.008349098 +51,2028,26,0.005646727 +51,2028,27,0.006512076 +51,2028,28,0.00842638 +51,2028,29,0.011303012 +51,2028,30,0.009765297 +52,2028,0,0.066420215 +52,2028,1,0.065428102 +52,2028,2,0.064097351 +52,2028,3,0.062393907 +52,2028,4,0.060560526 +52,2028,5,0.057876997 +52,2028,6,0.055821895 +52,2028,7,0.053864293 +52,2028,8,0.051593716 +52,2028,9,0.049410439 +52,2028,10,0.047829315 +52,2028,11,0.044516142 +52,2028,12,0.042031472 +52,2028,13,0.037984229 +52,2028,14,0.03304216 +52,2028,15,0.02815184 +52,2028,16,0.024196933 +52,2028,17,0.012915058 +52,2028,18,0.007408964 +52,2028,19,0.007422839 +52,2028,20,0.014257818 +52,2028,21,0.017459957 +52,2028,22,0.017329868 +52,2028,23,0.013998612 +52,2028,24,0.0114988 +52,2028,25,0.009378574 +52,2028,26,0.007852528 +52,2028,27,0.007973013 +52,2028,28,0.012328567 +52,2028,29,0.009766598 +52,2028,30,0.005189323 +53,2028,0,0.066147674 +53,2028,1,0.06502426 +53,2028,2,0.063628811 +53,2028,3,0.062022579 +53,2028,4,0.060927721 +53,2028,5,0.058290726 +53,2028,6,0.056394597 +53,2028,7,0.054529045 +53,2028,8,0.052810817 +53,2028,9,0.050595059 +53,2028,10,0.048763959 +53,2028,11,0.045211999 +53,2028,12,0.042591067 +53,2028,13,0.038428483 +53,2028,14,0.033377282 +53,2028,15,0.028432019 +53,2028,16,0.024441786 +53,2028,17,0.008844725 +53,2028,18,0.00519831 +53,2028,19,0.005715585 +53,2028,20,0.009320556 +53,2028,21,0.015234896 +53,2028,22,0.012766111 +53,2028,23,0.01103627 +53,2028,24,0.007644877 +53,2028,25,0.006141388 +53,2028,26,0.004816154 +53,2028,27,0.011144323 +53,2028,28,0.026035805 +53,2028,29,0.021135409 +53,2028,30,0.003347198 +54,2028,0,0.066381572 +54,2028,1,0.065307127 +54,2028,2,0.063815487 +54,2028,3,0.06203996 +54,2028,4,0.060136031 +54,2028,5,0.057403109 +54,2028,6,0.055251959 +54,2028,7,0.053186641 +54,2028,8,0.050883205 +54,2028,9,0.048674303 +54,2028,10,0.047084861 +54,2028,11,0.043790657 +54,2028,12,0.041348011 +54,2028,13,0.037364504 +54,2028,14,0.032468252 +54,2028,15,0.027639922 +54,2028,16,0.023729983 +54,2028,17,0.016625059 +54,2028,18,0.013675022 +54,2028,19,0.010720102 +54,2028,20,0.01289333 +54,2028,21,0.015746603 +54,2028,22,0.01516539 +54,2028,23,0.01462523 +54,2028,24,0.013300383 +54,2028,25,0.011630556 +54,2028,26,0.010163637 +54,2028,27,0.009134642 +54,2028,28,0.008224828 +54,2028,29,0.007464908 +54,2028,30,0.004124881 +61,2028,0,0.055760545 +61,2028,1,0.054817223 +61,2028,2,0.053628841 +61,2028,3,0.052132554 +61,2028,4,0.050559964 +61,2028,5,0.048922867 +61,2028,6,0.047997664 +61,2028,7,0.047160276 +61,2028,8,0.046211869 +61,2028,9,0.044803406 +61,2028,10,0.043618066 +61,2028,11,0.040645357 +61,2028,12,0.039401228 +61,2028,13,0.036950149 +61,2028,14,0.032842916 +61,2028,15,0.028389739 +61,2028,16,0.027076035 +61,2028,17,0.01299156 +61,2028,18,0.0093868 +61,2028,19,0.011747907 +61,2028,20,0.010177303 +61,2028,21,0.031954743 +61,2028,22,0.022771975 +61,2028,23,0.021405657 +61,2028,24,0.012993573 +61,2028,25,0.011233074 +61,2028,26,0.008427979 +61,2028,27,0.015829941 +61,2028,28,0.021091766 +61,2028,29,0.018222961 +61,2028,30,0.040846094 +62,2028,0,0.055138028 +62,2028,1,0.053443029 +62,2028,2,0.051525226 +62,2028,3,0.049394188 +62,2028,4,0.047224598 +62,2028,5,0.045058537 +62,2028,6,0.043501415 +62,2028,7,0.041954598 +62,2028,8,0.040295767 +62,2028,9,0.038256667 +62,2028,10,0.036473151 +62,2028,11,0.033470617 +62,2028,12,0.032217576 +62,2028,13,0.030013733 +62,2028,14,0.026316308 +62,2028,15,0.022655201 +62,2028,16,0.021051632 +62,2028,17,0.02201967 +62,2028,18,0.016797881 +62,2028,19,0.021487098 +62,2028,20,0.016138851 +62,2028,21,0.054132 +62,2028,22,0.038896863 +62,2028,23,0.035507849 +62,2028,24,0.020521079 +62,2028,25,0.019423985 +62,2028,26,0.013648413 +62,2028,27,0.015161418 +62,2028,28,0.023475075 +62,2028,29,0.016805421 +62,2028,30,0.017994329 +11,2029,0,0.071895336 +11,2029,1,0.071450417 +11,2029,2,0.069033297 +11,2029,3,0.063267566 +11,2029,4,0.058376109 +11,2029,5,0.053238316 +11,2029,6,0.049412754 +11,2029,7,0.045827162 +11,2029,8,0.042482125 +11,2029,9,0.0394922 +11,2029,10,0.036657008 +11,2029,11,0.034109098 +11,2029,12,0.032317366 +11,2029,13,0.0299969 +11,2029,14,0.027287787 +11,2029,15,0.025030974 +11,2029,16,0.022280789 +11,2029,17,0.019914861 +11,2029,18,0.015975618 +11,2029,19,0.01442712 +11,2029,20,0.014942303 +11,2029,21,0.026477399 +11,2029,22,0.023557806 +11,2029,23,0.022319492 +11,2029,24,0.01954557 +11,2029,25,0.016581981 +11,2029,26,0.014194617 +11,2029,27,0.012502903 +11,2029,28,0.010595818 +11,2029,29,0.008458291 +11,2029,30,0.008351041 +21,2029,0,0.071895332 +21,2029,1,0.071181385 +21,2029,2,0.070084831 +21,2029,3,0.068362616 +21,2029,4,0.066888481 +21,2029,5,0.064496582 +21,2029,6,0.0630126 +21,2029,7,0.061181618 +21,2029,8,0.059051713 +21,2029,9,0.056862748 +21,2029,10,0.054354913 +21,2029,11,0.05178778 +21,2029,12,0.049975202 +21,2029,13,0.044951715 +21,2029,14,0.03680769 +21,2029,15,0.029471492 +21,2029,16,0.022392893 +21,2029,17,0.016903079 +21,2029,18,0.008059642 +21,2029,19,0.006949239 +21,2029,20,0.004848226 +21,2029,21,0.004711328 +21,2029,22,0.003989042 +21,2029,23,0.00291326 +21,2029,24,0.002278349 +21,2029,25,0.001686246 +21,2029,26,0.001404727 +21,2029,27,0.001125927 +21,2029,28,0.000882358 +21,2029,29,0.000776328 +21,2029,30,0.000712654 +31,2029,0,0.072539519 +31,2029,1,0.07137443 +31,2029,2,0.069997947 +31,2029,3,0.068822506 +31,2029,4,0.065974013 +31,2029,5,0.0633433 +31,2029,6,0.061057605 +31,2029,7,0.058653641 +31,2029,8,0.055894504 +31,2029,9,0.052673886 +31,2029,10,0.049692776 +31,2029,11,0.046773216 +31,2029,12,0.043258311 +31,2029,13,0.039490803 +31,2029,14,0.034403982 +31,2029,15,0.0289645 +31,2029,16,0.024017825 +31,2029,17,0.019992462 +31,2029,18,0.011287171 +31,2029,19,0.008561208 +31,2029,20,0.005547349 +31,2029,21,0.008217825 +31,2029,22,0.007429098 +31,2029,23,0.006505157 +31,2029,24,0.005838173 +31,2029,25,0.005074868 +31,2029,26,0.004081768 +31,2029,27,0.003469258 +31,2029,28,0.002741347 +31,2029,29,0.002345249 +31,2029,30,0.001976305 +32,2029,0,0.072519862 +32,2029,1,0.071357405 +32,2029,2,0.069980868 +32,2029,3,0.068814342 +32,2029,4,0.065944714 +32,2029,5,0.063317717 +32,2029,6,0.06101008 +32,2029,7,0.05857782 +32,2029,8,0.055783967 +32,2029,9,0.052509528 +32,2029,10,0.049457454 +32,2029,11,0.04644447 +32,2029,12,0.042812632 +32,2029,13,0.038918636 +32,2029,14,0.033715306 +32,2029,15,0.028195289 +32,2029,16,0.023233555 +32,2029,17,0.019175124 +32,2029,18,0.012162692 +32,2029,19,0.008997826 +32,2029,20,0.005899048 +32,2029,21,0.00896377 +32,2029,22,0.008004057 +32,2029,23,0.007198223 +32,2029,24,0.006362165 +32,2029,25,0.005543056 +32,2029,26,0.00444093 +32,2029,27,0.003745848 +32,2029,28,0.003025486 +32,2029,29,0.002269028 +32,2029,30,0.001619117 +41,2029,0,0.060884668 +41,2029,1,0.059674466 +41,2029,2,0.058362545 +41,2029,3,0.056796011 +41,2029,4,0.055008466 +41,2029,5,0.05251013 +41,2029,6,0.049693717 +41,2029,7,0.048087367 +41,2029,8,0.046048657 +41,2029,9,0.044437145 +41,2029,10,0.042605583 +41,2029,11,0.040727132 +41,2029,12,0.037870369 +41,2029,13,0.035854056 +41,2029,14,0.03306088 +41,2029,15,0.029116449 +41,2029,16,0.024843095 +41,2029,17,0.021863987 +41,2029,18,0.019004363 +41,2029,19,0.015972975 +41,2029,20,0.012605874 +41,2029,21,0.015485955 +41,2029,22,0.019342281 +41,2029,23,0.018790691 +41,2029,24,0.018500754 +41,2029,25,0.017208203 +41,2029,26,0.015118289 +41,2029,27,0.013479014 +41,2029,28,0.012378931 +41,2029,29,0.01119112 +41,2029,30,0.013462015 +42,2029,0,0.060967182 +42,2029,1,0.059879195 +42,2029,2,0.05867345 +42,2029,3,0.05709078 +42,2029,4,0.055329547 +42,2029,5,0.052871946 +42,2029,6,0.050110341 +42,2029,7,0.048568793 +42,2029,8,0.046620986 +42,2029,9,0.045020478 +42,2029,10,0.043155896 +42,2029,11,0.041223745 +42,2029,12,0.038324161 +42,2029,13,0.036287562 +42,2029,14,0.033476199 +42,2029,15,0.029535427 +42,2029,16,0.025205831 +42,2029,17,0.02218387 +42,2029,18,0.025400902 +42,2029,19,0.014802339 +42,2029,20,0.014253505 +42,2029,21,0.019021847 +42,2029,22,0.01761124 +42,2029,23,0.0120131 +42,2029,24,0.017879357 +42,2029,25,0.01403371 +42,2029,26,0.013035705 +42,2029,27,0.012577911 +42,2029,28,0.013836295 +42,2029,29,0.00889868 +42,2029,30,0.012113203 +43,2029,0,0.060904352 +43,2029,1,0.059760071 +43,2029,2,0.058515365 +43,2029,3,0.056991902 +43,2029,4,0.055164117 +43,2029,5,0.05271334 +43,2029,6,0.049955464 +43,2029,7,0.048428082 +43,2029,8,0.046433259 +43,2029,9,0.04477918 +43,2029,10,0.042944291 +43,2029,11,0.041057268 +43,2029,12,0.038186853 +43,2029,13,0.036157131 +43,2029,14,0.033345747 +43,2029,15,0.029370537 +43,2029,16,0.025060108 +43,2029,17,0.022055525 +43,2029,18,0.014813934 +43,2029,19,0.015415835 +43,2029,20,0.017286109 +43,2029,21,0.018036868 +43,2029,22,0.017813041 +43,2029,23,0.01979728 +43,2029,24,0.016797615 +43,2029,25,0.015842052 +43,2029,26,0.012930337 +43,2029,27,0.012927128 +43,2029,28,0.011267155 +43,2029,29,0.011654455 +43,2029,30,0.013595171 +51,2029,0,0.066810192 +51,2029,1,0.065860772 +51,2029,2,0.064997233 +51,2029,3,0.063776505 +51,2029,4,0.062133077 +51,2029,5,0.059297323 +51,2029,6,0.055760622 +51,2029,7,0.053850288 +51,2029,8,0.051066026 +51,2029,9,0.048931346 +51,2029,10,0.046722437 +51,2029,11,0.044276967 +51,2029,12,0.040968582 +51,2029,13,0.037899285 +51,2029,14,0.034148406 +51,2029,15,0.029596593 +51,2029,16,0.024760383 +51,2029,17,0.021254962 +51,2029,18,0.010646379 +51,2029,19,0.007859195 +51,2029,20,0.009578996 +51,2029,21,0.006889534 +51,2029,22,0.022502515 +51,2029,23,0.015565813 +51,2029,24,0.013689394 +51,2029,25,0.007698808 +51,2029,26,0.007005752 +51,2029,27,0.004738185 +51,2029,28,0.005464301 +51,2029,29,0.006940152 +51,2029,30,0.00930941 +52,2029,0,0.066550626 +52,2029,1,0.065759318 +52,2029,2,0.064777076 +52,2029,3,0.063459566 +52,2029,4,0.061773072 +52,2029,5,0.05902405 +52,2029,6,0.055516102 +52,2029,7,0.053544831 +52,2029,8,0.050836459 +52,2029,9,0.048693517 +52,2029,10,0.046632967 +52,2029,11,0.044403157 +52,2029,12,0.041327316 +52,2029,13,0.038372477 +52,2029,14,0.034677562 +52,2029,15,0.030165718 +52,2029,16,0.025266998 +52,2029,17,0.021717368 +52,2029,18,0.011392437 +52,2029,19,0.006535484 +52,2029,20,0.006433258 +52,2029,21,0.012357027 +52,2029,22,0.015132271 +52,2029,23,0.014752286 +52,2029,24,0.011916509 +52,2029,25,0.00978851 +52,2029,26,0.007839015 +52,2029,27,0.006563479 +52,2029,28,0.006664186 +52,2029,29,0.010114631 +52,2029,30,0.008012734 +53,2029,0,0.066486129 +53,2029,1,0.06542602 +53,2029,2,0.064314862 +53,2029,3,0.062934637 +53,2029,4,0.061345928 +53,2029,5,0.05932438 +53,2029,6,0.055858768 +53,2029,7,0.054041748 +53,2029,8,0.051413969 +53,2029,9,0.049793898 +53,2029,10,0.04770472 +53,2029,11,0.045226976 +53,2029,12,0.041932649 +53,2029,13,0.038845674 +53,2029,14,0.035049142 +53,2029,15,0.030442135 +53,2029,16,0.025493735 +53,2029,17,0.02191587 +53,2029,18,0.007794415 +53,2029,19,0.004581011 +53,2029,20,0.004948807 +53,2029,21,0.008070151 +53,2029,22,0.013191049 +53,2029,23,0.010856795 +53,2029,24,0.00938567 +53,2029,25,0.006501499 +53,2029,26,0.005128261 +53,2029,27,0.004021647 +53,2029,28,0.009305876 +53,2029,29,0.021339652 +53,2029,30,0.017323154 +54,2029,0,0.066512032 +54,2029,1,0.065682946 +54,2029,2,0.064619809 +54,2029,3,0.063143867 +54,2029,4,0.061387027 +54,2029,5,0.058576336 +54,2029,6,0.055029614 +54,2029,7,0.052967409 +54,2029,8,0.05016779 +54,2029,9,0.047995096 +54,2029,10,0.04591157 +54,2029,11,0.043686681 +54,2029,12,0.040630224 +54,2029,13,0.037726623 +54,2029,14,0.034092004 +54,2029,15,0.029624581 +54,2029,16,0.024793152 +54,2029,17,0.021285917 +54,2029,18,0.014656543 +54,2029,19,0.01205581 +54,2029,20,0.009285557 +54,2029,21,0.011167967 +54,2029,22,0.01363942 +54,2029,23,0.012902258 +54,2029,24,0.012442707 +54,2029,25,0.011315567 +54,2029,26,0.00971568 +54,2029,27,0.008490277 +54,2029,28,0.007630698 +54,2029,29,0.006743919 +54,2029,30,0.006120824 +61,2029,0,0.056273965 +61,2029,1,0.055279622 +61,2029,2,0.054344436 +61,2029,3,0.053166304 +61,2029,4,0.051682922 +61,2029,5,0.049760171 +61,2029,6,0.047797025 +61,2029,7,0.046893114 +61,2029,8,0.04573573 +61,2029,9,0.044815971 +61,2029,10,0.043450053 +61,2029,11,0.041986732 +61,2029,12,0.039125203 +61,2029,13,0.037644157 +61,2029,14,0.035302383 +61,2029,15,0.031378309 +61,2029,16,0.026919485 +61,2029,17,0.025673816 +61,2029,18,0.01222529 +61,2029,19,0.008833147 +61,2029,20,0.010970478 +61,2029,21,0.009503809 +61,2029,22,0.029840106 +61,2029,23,0.021101197 +61,2029,24,0.019835126 +61,2029,25,0.012040235 +61,2029,26,0.010328094 +61,2029,27,0.007748989 +61,2029,28,0.014554621 +61,2029,29,0.0192408 +61,2029,30,0.036548562 +62,2029,0,0.055868923 +62,2029,1,0.054269031 +62,2029,2,0.052600745 +62,2029,3,0.050713168 +62,2029,4,0.048615716 +62,2029,5,0.046143036 +62,2029,6,0.04370477 +62,2029,7,0.042194431 +62,2029,8,0.040394443 +62,2029,9,0.038797299 +62,2029,10,0.036834026 +62,2029,11,0.034856336 +62,2029,12,0.031986901 +62,2029,13,0.030559304 +62,2029,14,0.028468895 +62,2029,15,0.02496178 +62,2029,16,0.021327308 +62,2029,17,0.01981773 +62,2029,18,0.020571761 +62,2029,19,0.015693332 +62,2029,20,0.019920745 +62,2029,21,0.014962371 +62,2029,22,0.050185919 +62,2029,23,0.035783578 +62,2029,24,0.032665819 +62,2029,25,0.018878582 +62,2029,26,0.017730569 +62,2029,27,0.012458522 +62,2029,28,0.013839621 +62,2029,29,0.021260817 +62,2029,30,0.023934761 +11,2030,0,0.071560639 +11,2030,1,0.071130805 +11,2030,2,0.069121057 +11,2030,3,0.063966454 +11,2030,4,0.058623911 +11,2030,5,0.054091473 +11,2030,6,0.049330779 +11,2030,7,0.045786002 +11,2030,8,0.042463582 +11,2030,9,0.039364061 +11,2030,10,0.036593588 +11,2030,11,0.03396649 +11,2030,12,0.031605589 +11,2030,13,0.029945366 +11,2030,14,0.027795215 +11,2030,15,0.025284943 +11,2030,16,0.023193773 +11,2030,17,0.020645444 +11,2030,18,0.018453169 +11,2030,19,0.014803054 +11,2030,20,0.013368211 +11,2030,21,0.013845582 +11,2030,22,0.024534035 +11,2030,23,0.021828732 +11,2030,24,0.020681306 +11,2030,25,0.018110982 +11,2030,26,0.015364912 +11,2030,27,0.013152774 +11,2030,28,0.011585226 +11,2030,29,0.009818116 +11,2030,30,0.009984776 +21,2030,0,0.071560637 +21,2030,1,0.07086499 +21,2030,2,0.070161274 +21,2030,3,0.069072582 +21,2030,4,0.067099517 +21,2030,5,0.065412815 +21,2030,6,0.062784654 +21,2030,7,0.061015314 +21,2030,8,0.058892793 +21,2030,9,0.056478693 +21,2030,10,0.05401561 +21,2030,11,0.051286232 +21,2030,12,0.048521708 +21,2030,13,0.044488667 +21,2030,14,0.037135994 +21,2030,15,0.029475996 +21,2030,16,0.022986944 +21,2030,17,0.01710206 +21,2030,18,0.012693453 +21,2030,19,0.005976581 +21,2030,20,0.00509789 +21,2030,21,0.003529993 +21,2030,22,0.003411843 +21,2030,23,0.002873138 +21,2030,24,0.002089811 +21,2030,25,0.001634106 +21,2030,26,0.00120433 +21,2030,27,0.001002952 +21,2030,28,0.000802758 +21,2030,29,0.000628111 +21,2030,30,0.000698551 +31,2030,0,0.07220508 +31,2030,1,0.070921315 +31,2030,2,0.069772522 +31,2030,3,0.068417426 +31,2030,4,0.066763843 +31,2030,5,0.06356155 +31,2030,6,0.060571131 +31,2030,7,0.057912847 +31,2030,8,0.055146826 +31,2030,9,0.052082045 +31,2030,10,0.048644761 +31,2030,11,0.045493533 +31,2030,12,0.042458637 +31,2030,13,0.038956618 +31,2030,14,0.035268802 +31,2030,15,0.029992308 +31,2030,16,0.025034003 +31,2030,17,0.020592254 +31,2030,18,0.017018838 +31,2030,19,0.00954857 +31,2030,20,0.007199479 +31,2030,21,0.004643152 +31,2030,22,0.006844872 +31,2030,23,0.00616774 +31,2030,24,0.00537682 +31,2030,25,0.004812841 +31,2030,26,0.004174633 +31,2030,27,0.003346613 +31,2030,28,0.002841594 +31,2030,29,0.002239421 +31,2030,30,0.001989929 +32,2030,0,0.072203344 +32,2030,1,0.070900392 +32,2030,2,0.069754204 +32,2030,3,0.068399088 +32,2030,4,0.066754319 +32,2030,5,0.063531796 +32,2030,6,0.060545212 +32,2030,7,0.057866379 +32,2030,8,0.055074214 +32,2030,9,0.051977798 +32,2030,10,0.048491809 +32,2030,11,0.045277008 +32,2030,12,0.042159203 +32,2030,13,0.038554331 +32,2030,14,0.03475697 +32,2030,15,0.029391235 +32,2030,16,0.024368589 +32,2030,17,0.019919362 +32,2030,18,0.016322677 +32,2030,19,0.010288984 +32,2030,20,0.007566468 +32,2030,21,0.004937407 +32,2030,22,0.007466012 +32,2030,23,0.006644919 +32,2030,24,0.005949528 +32,2030,25,0.005244681 +32,2030,26,0.004559658 +32,2030,27,0.003641001 +32,2030,28,0.003068069 +32,2030,29,0.002471477 +32,2030,30,0.001913851 +41,2030,0,0.061118767 +41,2030,1,0.060115179 +41,2030,2,0.058920272 +41,2030,3,0.057624932 +41,2030,4,0.056078197 +41,2030,5,0.053742702 +41,2030,6,0.050757225 +41,2030,7,0.048034831 +41,2030,8,0.045983348 +41,2030,9,0.044033839 +41,2030,10,0.042492837 +41,2030,11,0.040299512 +41,2030,12,0.038522734 +41,2030,13,0.035427809 +41,2030,14,0.033541544 +41,2030,15,0.030928522 +41,2030,16,0.026936507 +41,2030,17,0.022983098 +41,2030,18,0.020000265 +41,2030,19,0.0173844 +41,2030,20,0.014445742 +41,2030,21,0.011400582 +41,2030,22,0.014005288 +41,2030,23,0.017292281 +41,2030,24,0.016799152 +41,2030,25,0.016539943 +41,2030,26,0.015205901 +41,2030,27,0.013359165 +41,2030,28,0.011910631 +41,2030,29,0.010810158 +41,2030,30,0.013290897 +42,2030,0,0.061026065 +42,2030,1,0.060105347 +42,2030,2,0.05903274 +42,2030,3,0.057844039 +42,2030,4,0.056283742 +42,2030,5,0.053974405 +42,2030,6,0.051029446 +42,2030,7,0.048364079 +42,2030,8,0.046373265 +42,2030,9,0.044513508 +42,2030,10,0.04298535 +42,2030,11,0.040758124 +42,2030,12,0.038933324 +42,2030,13,0.035797953 +42,2030,14,0.0338956 +42,2030,15,0.031269554 +42,2030,16,0.027282671 +42,2030,17,0.023283306 +42,2030,18,0.020262101 +42,2030,19,0.023200444 +42,2030,20,0.01336673 +42,2030,21,0.012871125 +42,2030,22,0.017177008 +42,2030,23,0.015720824 +42,2030,24,0.010723597 +42,2030,25,0.015960161 +42,2030,26,0.012381975 +42,2030,27,0.011501433 +42,2030,28,0.011097521 +42,2030,29,0.012064505 +42,2030,30,0.010919904 +43,2030,0,0.061106549 +43,2030,1,0.060122593 +43,2030,2,0.058993 +43,2030,3,0.057764271 +43,2030,4,0.056260363 +43,2030,5,0.053883998 +43,2030,6,0.050943465 +43,2030,7,0.048278187 +43,2030,8,0.046299897 +43,2030,9,0.044392737 +43,2030,10,0.042811348 +43,2030,11,0.040611767 +43,2030,12,0.038827237 +43,2030,13,0.035716739 +43,2030,14,0.03381831 +43,2030,15,0.03118878 +43,2030,16,0.027166139 +43,2030,17,0.023179228 +43,2030,18,0.020171442 +43,2030,19,0.013548461 +43,2030,20,0.013939085 +43,2030,21,0.015630198 +43,2030,22,0.016309038 +43,2030,23,0.015921934 +43,2030,24,0.017695518 +43,2030,25,0.01501431 +43,2030,26,0.013995914 +43,2030,27,0.011423513 +43,2030,28,0.011420678 +43,2030,29,0.00983731 +43,2030,30,0.013727566 +51,2030,0,0.066591296 +51,2030,1,0.066151121 +51,2030,2,0.065211066 +51,2030,3,0.064356046 +51,2030,4,0.063147361 +51,2030,5,0.060604458 +51,2030,6,0.056964575 +51,2030,7,0.053567008 +51,2030,8,0.050938207 +51,2030,9,0.04830451 +51,2030,10,0.046285268 +51,2030,11,0.043507235 +51,2030,12,0.04123005 +51,2030,13,0.037545556 +51,2030,14,0.034732707 +51,2030,15,0.031295223 +51,2030,16,0.026687545 +51,2030,17,0.022326686 +51,2030,18,0.018852567 +51,2030,19,0.009443046 +51,2030,20,0.006855065 +51,2030,21,0.008355136 +51,2030,22,0.006009293 +51,2030,23,0.019295851 +51,2030,24,0.013347646 +51,2030,25,0.011738622 +51,2030,26,0.006488247 +51,2030,27,0.005904167 +51,2030,28,0.003993152 +51,2030,29,0.004524564 +51,2030,30,0.005746602 +52,2030,0,0.066537347 +52,2030,1,0.065840731 +52,2030,2,0.065057864 +52,2030,3,0.0640861 +52,2030,4,0.062782643 +52,2030,5,0.060204495 +52,2030,6,0.056656116 +52,2030,7,0.0532889 +52,2030,8,0.050608235 +52,2030,9,0.0480484 +52,2030,10,0.046022985 +52,2030,11,0.043388742 +52,2030,12,0.041314059 +52,2030,13,0.037843634 +52,2030,14,0.035137873 +52,2030,15,0.03175442 +52,2030,16,0.027178694 +52,2030,17,0.022765048 +52,2030,18,0.019247103 +52,2030,19,0.010096592 +52,2030,20,0.00569586 +52,2030,21,0.005606767 +52,2030,22,0.0107695 +52,2030,23,0.012965372 +52,2030,24,0.012639801 +52,2030,25,0.010210099 +52,2030,26,0.008242681 +52,2030,27,0.006601055 +52,2030,28,0.005526956 +52,2030,29,0.005513625 +52,2030,30,0.008368356 +53,2030,0,0.067087597 +53,2030,1,0.066320884 +53,2030,2,0.06526341 +53,2030,3,0.064155014 +53,2030,4,0.062778219 +53,2030,5,0.060282635 +53,2030,6,0.057415316 +53,2030,7,0.054061228 +53,2030,8,0.051500303 +53,2030,9,0.048996102 +53,2030,10,0.047452219 +53,2030,11,0.044752996 +53,2030,12,0.042428563 +53,2030,13,0.038715483 +53,2030,14,0.035865348 +53,2030,15,0.032360094 +53,2030,16,0.027654562 +53,2030,17,0.023159285 +53,2030,18,0.019583651 +53,2030,19,0.006964957 +53,2030,20,0.004025498 +53,2030,21,0.004348694 +53,2030,22,0.00709153 +53,2030,23,0.011395594 +53,2030,24,0.009379059 +53,2030,25,0.008108172 +53,2030,26,0.005520039 +53,2030,27,0.004354104 +53,2030,28,0.003414543 +53,2030,29,0.007762902 +53,2030,30,0.017801402 +54,2030,0,0.066461123 +54,2030,1,0.065727167 +54,2030,2,0.064907865 +54,2030,3,0.063857273 +54,2030,4,0.062398748 +54,2030,5,0.059759715 +54,2030,6,0.056161951 +54,2030,7,0.052761418 +54,2030,8,0.050005131 +54,2030,9,0.047362084 +54,2030,10,0.045310902 +54,2030,11,0.042668596 +54,2030,12,0.040600862 +54,2030,13,0.037162682 +54,2030,14,0.034506885 +54,2030,15,0.031182459 +54,2030,16,0.026660565 +54,2030,17,0.022312533 +54,2030,18,0.018843117 +54,2030,19,0.012974538 +54,2030,20,0.010494944 +54,2030,21,0.008083355 +54,2030,22,0.00972205 +54,2030,23,0.011672906 +54,2030,24,0.011042027 +54,2030,25,0.010648733 +54,2030,26,0.009517665 +54,2030,27,0.00817198 +54,2030,28,0.007141278 +54,2030,29,0.006306038 +54,2030,30,0.0055732 +61,2030,0,0.056492481 +61,2030,1,0.055569911 +61,2030,2,0.054588008 +61,2030,3,0.053664523 +61,2030,4,0.052501131 +61,2030,5,0.0506743 +61,2030,6,0.048440534 +61,2030,7,0.04652945 +61,2030,8,0.045321053 +61,2030,9,0.044202471 +61,2030,10,0.043313545 +61,2030,11,0.041689076 +61,2030,12,0.040285062 +61,2030,13,0.03726546 +61,2030,14,0.035854812 +61,2030,15,0.03362435 +61,2030,16,0.029667014 +61,2030,17,0.025451363 +61,2030,18,0.0240938 +61,2030,19,0.011472923 +61,2030,20,0.008227667 +61,2030,21,0.010218492 +61,2030,22,0.008852358 +61,2030,23,0.027585666 +61,2030,24,0.019506988 +61,2030,25,0.018336569 +61,2030,26,0.011046253 +61,2030,27,0.009475458 +61,2030,28,0.00710927 +61,2030,29,0.013251116 +61,2030,30,0.035688874 +62,2030,0,0.056350459 +62,2030,1,0.055031239 +62,2030,2,0.053455336 +62,2030,3,0.051812064 +62,2030,4,0.049952789 +62,2030,5,0.047547118 +62,2030,6,0.044806398 +62,2030,7,0.042438761 +62,2030,8,0.04067737 +62,2030,9,0.038942099 +62,2030,10,0.037402378 +62,2030,11,0.035252341 +62,2030,12,0.033359574 +62,2030,13,0.03038987 +62,2030,14,0.02903355 +62,2030,15,0.02704751 +62,2030,16,0.023541095 +62,2030,17,0.020113477 +62,2030,18,0.018551353 +62,2030,19,0.019257201 +62,2030,20,0.014580863 +62,2030,21,0.018508604 +62,2030,22,0.013901719 +62,2030,23,0.046277704 +62,2030,24,0.032996941 +62,2030,25,0.030121977 +62,2030,26,0.017276516 +62,2030,27,0.016225926 +62,2030,28,0.011401272 +62,2030,29,0.012568475 +62,2030,30,0.031178051 +11,2031,0,0.071177874 +11,2031,1,0.070777937 +11,2031,2,0.068835945 +11,2031,3,0.06415361 +11,2031,4,0.059369448 +11,2031,5,0.054410851 +11,2031,6,0.05020414 +11,2031,7,0.045785578 +11,2031,8,0.04249555 +11,2031,9,0.039411899 +11,2031,10,0.036535127 +11,2031,11,0.033963757 +11,2031,12,0.031525458 +11,2031,13,0.029334225 +11,2031,14,0.027793315 +11,2031,15,0.025797687 +11,2031,16,0.023467818 +11,2031,17,0.021526932 +11,2031,18,0.019161741 +11,2031,19,0.017127015 +11,2031,20,0.01373922 +11,2031,21,0.012407493 +11,2031,22,0.012850557 +11,2031,23,0.022770875 +11,2031,24,0.02025999 +11,2031,25,0.019195025 +11,2031,26,0.01680942 +11,2031,27,0.014260698 +11,2031,28,0.012207538 +11,2031,29,0.010752643 +11,2031,30,0.011890615 +21,2031,0,0.071177878 +21,2031,1,0.070517331 +21,2031,2,0.069831825 +21,2031,3,0.069130625 +21,2031,4,0.067783511 +21,2031,5,0.065610311 +21,2031,6,0.063672297 +21,2031,7,0.060795342 +21,2031,8,0.058738659 +21,2031,9,0.056337876 +21,2031,10,0.053667002 +21,2031,11,0.050986762 +21,2031,12,0.048076501 +21,2031,13,0.043252078 +21,2031,14,0.036848728 +21,2031,15,0.029832516 +21,2031,16,0.023073959 +21,2031,17,0.017626466 +21,2031,18,0.01289876 +21,2031,19,0.009456021 +21,2031,20,0.004405441 +21,2031,21,0.003730176 +21,2031,22,0.002569296 +21,2031,23,0.002470123 +21,2031,24,0.002071864 +21,2031,25,0.001506765 +21,2031,26,0.00117333 +21,2031,27,0.000864474 +21,2031,28,0.000718928 +21,2031,29,0.00057454 +21,2031,30,0.000600616 +31,2031,0,0.07188589 +31,2031,1,0.070584477 +31,2031,2,0.069320059 +31,2031,3,0.068187891 +31,2031,4,0.066370517 +31,2031,5,0.064329812 +31,2031,6,0.060794686 +31,2031,7,0.057473679 +31,2031,8,0.054479876 +31,2031,9,0.051421519 +31,2031,10,0.048139781 +31,2031,11,0.044579651 +31,2031,12,0.041345695 +31,2031,13,0.038287188 +31,2031,14,0.034843287 +31,2031,15,0.030805887 +31,2031,16,0.025976934 +31,2031,17,0.021512062 +31,2031,18,0.017571538 +31,2031,19,0.014433735 +31,2031,20,0.008051025 +31,2031,21,0.006042489 +31,2031,22,0.003878386 +31,2031,23,0.005699195 +31,2031,24,0.005113175 +31,2031,25,0.004446005 +31,2031,26,0.003971311 +31,2031,27,0.003433551 +31,2031,28,0.002749842 +31,2031,29,0.002328811 +31,2031,30,0.001942045 +32,2031,0,0.071896532 +32,2031,1,0.070593229 +32,2031,2,0.069309868 +32,2031,3,0.068180079 +32,2031,4,0.066362551 +32,2031,5,0.064330157 +32,2031,6,0.060775222 +32,2031,7,0.057457589 +32,2031,8,0.05444422 +32,2031,9,0.051361414 +32,2031,10,0.048050537 +32,2031,11,0.04444606 +32,2031,12,0.041155004 +32,2031,13,0.0380228 +32,2031,14,0.034488582 +32,2031,15,0.030363317 +32,2031,16,0.025460102 +32,2031,17,0.020943362 +32,2031,18,0.01699987 +32,2031,19,0.013845367 +32,2031,20,0.008676601 +32,2031,21,0.006351441 +32,2031,22,0.004124786 +32,2031,23,0.00621729 +32,2031,24,0.005509581 +32,2031,25,0.004920298 +32,2031,26,0.004328284 +32,2031,27,0.003750782 +32,2031,28,0.002992177 +32,2031,29,0.002514789 +32,2031,30,0.002128119 +41,2031,0,0.061352118 +41,2031,1,0.060397117 +41,2031,2,0.059405378 +41,2031,3,0.05822458 +41,2031,4,0.056944534 +41,2031,5,0.054812874 +41,2031,6,0.05195201 +41,2031,7,0.049066008 +41,2031,8,0.045917652 +41,2031,9,0.043956589 +41,2031,10,0.042093007 +41,2031,11,0.040162863 +41,2031,12,0.038089802 +41,2031,13,0.035996091 +41,2031,14,0.033104157 +41,2031,15,0.031341609 +41,2031,16,0.028567298 +41,2031,17,0.024880051 +41,2031,18,0.020981253 +41,2031,19,0.018258227 +41,2031,20,0.015683216 +41,2031,21,0.013032126 +41,2031,22,0.010284956 +41,2031,23,0.01248413 +41,2031,24,0.015414113 +41,2031,25,0.014974544 +41,2031,26,0.014565581 +41,2031,27,0.013390782 +41,2031,28,0.01176449 +41,2031,29,0.010360754 +41,2031,30,0.012530279 +42,2031,0,0.061232282 +42,2031,1,0.060187716 +42,2031,2,0.059279647 +42,2031,3,0.058221775 +42,2031,4,0.057049404 +42,2031,5,0.054906325 +42,2031,6,0.052074079 +42,2031,7,0.049232806 +42,2031,8,0.046142084 +42,2031,9,0.044242734 +42,2031,10,0.04246842 +42,2031,11,0.040549012 +42,2031,12,0.038448022 +42,2031,13,0.036308692 +42,2031,14,0.033384688 +42,2031,15,0.031610579 +42,2031,16,0.028825879 +42,2031,17,0.025150566 +42,2031,18,0.021213796 +42,2031,19,0.018461127 +42,2031,20,0.020889237 +42,2031,21,0.012035149 +42,2031,22,0.011588916 +42,2031,23,0.015281452 +42,2031,24,0.013985965 +42,2031,25,0.009540202 +42,2031,26,0.014027553 +42,2031,27,0.010882648 +42,2031,28,0.01010873 +42,2031,29,0.009634594 +42,2031,30,0.01303809 +43,2031,0,0.061351589 +43,2031,1,0.060384522 +43,2031,2,0.059412193 +43,2031,3,0.058295946 +43,2031,4,0.057081736 +43,2031,5,0.054990456 +43,2031,6,0.052088149 +43,2031,7,0.049245618 +43,2031,8,0.046149884 +43,2031,9,0.044258805 +43,2031,10,0.042435721 +43,2031,11,0.04046356 +43,2031,12,0.038384604 +43,2031,13,0.036280309 +43,2031,14,0.033373849 +43,2031,15,0.03159995 +43,2031,16,0.028807438 +43,2031,17,0.025091936 +43,2031,18,0.021160118 +43,2031,19,0.018414335 +43,2031,20,0.012222545 +43,2031,21,0.01257494 +43,2031,22,0.014100553 +43,2031,23,0.014537537 +43,2031,24,0.014192481 +43,2031,25,0.015773417 +43,2031,26,0.013221948 +43,2031,27,0.012325125 +43,2031,28,0.010059808 +43,2031,29,0.00993447 +43,2031,30,0.011786652 +51,2031,0,0.066382739 +51,2031,1,0.065739753 +51,2031,2,0.065305207 +51,2031,3,0.064377174 +51,2031,4,0.063533087 +51,2031,5,0.061394109 +51,2031,6,0.058014144 +51,2031,7,0.054529835 +51,2031,8,0.050475218 +51,2031,9,0.047998147 +51,2031,10,0.045516463 +51,2031,11,0.042920556 +51,2031,12,0.040344472 +51,2031,13,0.03761533 +51,2031,14,0.034253864 +51,2031,15,0.031687623 +51,2031,16,0.028082805 +51,2031,17,0.0239481 +51,2031,18,0.019700494 +51,2031,19,0.016635021 +51,2031,20,0.008190874 +51,2031,21,0.005946066 +51,2031,22,0.007247224 +51,2031,23,0.005122445 +51,2031,24,0.016448181 +51,2031,25,0.011377808 +51,2031,26,0.009830435 +51,2031,27,0.005433541 +51,2031,28,0.004944407 +51,2031,29,0.003284235 +51,2031,30,0.003721304 +52,2031,0,0.066554955 +52,2031,1,0.065856905 +52,2031,2,0.065167413 +52,2031,3,0.064392551 +52,2031,4,0.063430725 +52,2031,5,0.061197873 +52,2031,6,0.05778079 +52,2031,7,0.05437526 +52,2031,8,0.050343431 +52,2031,9,0.047810936 +52,2031,10,0.045392592 +52,2031,11,0.042788057 +52,2031,12,0.040338974 +52,2031,13,0.037789758 +52,2031,14,0.034615378 +52,2031,15,0.032140433 +52,2031,16,0.028568791 +52,2031,17,0.024452105 +52,2031,18,0.020139407 +52,2031,19,0.017027209 +52,2031,20,0.008780479 +52,2031,21,0.004953392 +52,2031,22,0.004875913 +52,2031,23,0.00920396 +52,2031,24,0.011080623 +52,2031,25,0.010802379 +52,2031,26,0.008572565 +52,2031,27,0.006920689 +52,2031,28,0.005542353 +52,2031,29,0.004557531 +52,2031,30,0.004546538 +53,2031,0,0.067031464 +53,2031,1,0.066876938 +53,2031,2,0.066112633 +53,2031,3,0.065058479 +53,2031,4,0.063953563 +53,2031,5,0.061631683 +53,2031,6,0.058270009 +53,2031,7,0.05549842 +53,2031,8,0.051438733 +53,2031,9,0.049002038 +53,2031,10,0.046619315 +53,2031,11,0.044432691 +53,2031,12,0.041905228 +53,2031,13,0.039087049 +53,2031,14,0.035666397 +53,2031,15,0.033040728 +53,2031,16,0.029322146 +53,2031,17,0.025058367 +53,2031,18,0.020634861 +53,2031,19,0.017448981 +53,2031,20,0.006100426 +53,2031,21,0.00352583 +53,2031,22,0.003808908 +53,2031,23,0.006104041 +53,2031,24,0.009808768 +53,2031,25,0.008073033 +53,2031,26,0.006856494 +53,2031,27,0.004667897 +53,2031,28,0.00368195 +53,2031,29,0.002835793 +53,2031,30,0.006447124 +54,2031,0,0.066439996 +54,2031,1,0.065667837 +54,2031,2,0.064942641 +54,2031,3,0.064133118 +54,2031,4,0.063095067 +54,2031,5,0.060718607 +54,2031,6,0.057254848 +54,2031,7,0.053807887 +54,2031,8,0.049759007 +54,2031,9,0.047159568 +54,2031,10,0.044666925 +54,2031,11,0.042053262 +54,2031,12,0.039600926 +54,2031,13,0.037073254 +54,2031,14,0.0339338 +54,2031,15,0.031508753 +54,2031,16,0.028005751 +54,2031,17,0.023944524 +54,2031,18,0.019704987 +54,2031,19,0.016641024 +54,2031,20,0.011263789 +54,2031,21,0.00911114 +54,2031,22,0.00701753 +54,2031,23,0.008294424 +54,2031,24,0.009958808 +54,2031,25,0.00942057 +54,2031,26,0.008925406 +54,2031,27,0.007977383 +54,2031,28,0.006849475 +54,2031,29,0.00587853 +54,2031,30,0.00519098 +61,2031,0,0.056795169 +61,2031,1,0.055742772 +61,2031,2,0.054832445 +61,2031,3,0.053863573 +61,2031,4,0.052952343 +61,2031,5,0.0514326 +61,2031,6,0.049284098 +61,2031,7,0.047111613 +61,2031,8,0.044923457 +61,2031,9,0.043756769 +61,2031,10,0.042676794 +61,2031,11,0.041511822 +61,2031,12,0.039954926 +61,2031,13,0.038324034 +61,2031,14,0.035451422 +61,2031,15,0.034109443 +61,2031,16,0.031749444 +61,2031,17,0.028012771 +61,2031,18,0.023851951 +61,2031,19,0.0225797 +61,2031,20,0.010670696 +61,2031,21,0.00765236 +61,2031,22,0.00950398 +61,2031,23,0.008170682 +61,2031,24,0.025461431 +61,2031,25,0.018004852 +61,2031,26,0.016794709 +61,2031,27,0.010117411 +61,2031,28,0.008678699 +61,2031,29,0.006461131 +61,2031,30,0.029566974 +62,2031,0,0.056844736 +62,2031,1,0.055651161 +62,2031,2,0.054348312 +62,2031,3,0.052791966 +62,2031,4,0.051169086 +62,2031,5,0.048978832 +62,2031,6,0.046283064 +62,2031,7,0.043615208 +62,2031,8,0.04100972 +62,2031,9,0.03930764 +62,2031,10,0.037630801 +62,2031,11,0.035877828 +62,2031,12,0.033815427 +62,2031,13,0.031763368 +62,2031,14,0.02893576 +62,2031,15,0.027644337 +62,2031,16,0.025561621 +62,2031,17,0.022247835 +62,2031,18,0.018865959 +62,2031,19,0.017400724 +62,2031,20,0.017926302 +62,2031,21,0.013573154 +62,2031,22,0.017229442 +62,2031,23,0.012842415 +62,2031,24,0.042751367 +62,2031,25,0.030482592 +62,2031,26,0.0276132 +62,2031,27,0.015837602 +62,2031,28,0.014874513 +62,2031,29,0.010370882 +62,2031,30,0.026754996 +11,2032,0,0.07082285 +11,2032,1,0.070398803 +11,2032,2,0.068534119 +11,2032,3,0.064000184 +11,2032,4,0.059646786 +11,2032,5,0.055198713 +11,2032,6,0.05058846 +11,2032,7,0.046677273 +11,2032,8,0.042569117 +11,2032,9,0.039510215 +11,2032,10,0.036643192 +11,2032,11,0.033968515 +11,2032,12,0.031577785 +11,2032,13,0.029310778 +11,2032,14,0.027273481 +11,2032,15,0.02584082 +11,2032,16,0.023985386 +11,2032,17,0.021819192 +11,2032,18,0.020014653 +11,2032,19,0.017815618 +11,2032,20,0.015923833 +11,2032,21,0.012774032 +11,2032,22,0.01153586 +11,2032,23,0.011947798 +11,2032,24,0.021171209 +11,2032,25,0.018836715 +11,2032,26,0.017846565 +11,2032,27,0.015628549 +11,2032,28,0.013258877 +11,2032,29,0.011349952 +11,2032,30,0.013530698 +21,2032,0,0.070822847 +21,2032,1,0.070141874 +21,2032,2,0.069490941 +21,2032,3,0.068807773 +21,2032,4,0.067844631 +21,2032,5,0.066285313 +21,2032,6,0.063873081 +21,2032,7,0.061666 +21,2032,8,0.058540546 +21,2032,9,0.056206761 +21,2032,10,0.053552037 +21,2032,11,0.050678626 +21,2032,12,0.047818578 +21,2032,13,0.042896225 +21,2032,14,0.035885447 +21,2032,15,0.029661774 +21,2032,16,0.023407041 +21,2032,17,0.017738206 +21,2032,18,0.013330622 +21,2032,19,0.009636615 +21,2032,20,0.00699112 +21,2032,21,0.003233462 +21,2032,22,0.002723557 +21,2032,23,0.001866113 +21,2032,24,0.001787058 +21,2032,25,0.001498703 +21,2032,26,0.001085483 +21,2032,27,0.000845018 +21,2032,28,0.000621732 +21,2032,29,0.000516269 +21,2032,30,0.00054655 +31,2032,0,0.071597073 +31,2032,1,0.070279077 +31,2032,2,0.068997437 +31,2032,3,0.0677523 +31,2032,4,0.066159826 +31,2032,5,0.06396733 +31,2032,6,0.061550583 +31,2032,7,0.057710886 +31,2032,8,0.054095679 +31,2032,9,0.050832088 +31,2032,10,0.04756457 +31,2032,11,0.044154168 +31,2032,12,0.040553462 +31,2032,13,0.0373224 +31,2032,14,0.034283619 +31,2032,15,0.030477934 +31,2032,16,0.026722768 +31,2032,17,0.022359032 +31,2032,18,0.018388249 +31,2032,19,0.014929503 +31,2032,20,0.012193019 +31,2032,21,0.00677036 +31,2032,22,0.005057397 +31,2032,23,0.003235866 +31,2032,24,0.004734721 +31,2032,25,0.004237077 +31,2032,26,0.003676594 +31,2032,27,0.003273567 +31,2032,28,0.002827571 +31,2032,29,0.002258722 +31,2032,30,0.002037124 +32,2032,0,0.071617696 +32,2032,1,0.070309728 +32,2032,2,0.069025869 +32,2032,3,0.067761851 +32,2032,4,0.066171302 +32,2032,5,0.063978075 +32,2032,6,0.061568643 +32,2032,7,0.057709027 +32,2032,8,0.054096113 +32,2032,9,0.050813452 +32,2032,10,0.047522658 +32,2032,11,0.044085008 +32,2032,12,0.040443582 +32,2032,13,0.037160966 +32,2032,14,0.034056684 +32,2032,15,0.030176357 +32,2032,16,0.026346444 +32,2032,17,0.021920493 +32,2032,18,0.017907288 +32,2032,19,0.014447951 +32,2032,20,0.01169936 +32,2032,21,0.007298528 +32,2032,22,0.005317513 +32,2032,23,0.003442437 +32,2032,24,0.005166627 +32,2032,25,0.004566877 +32,2032,26,0.004069978 +32,2032,27,0.003568848 +32,2032,28,0.003089704 +32,2032,29,0.002458484 +32,2032,30,0.002202464 +41,2032,0,0.061855407 +41,2032,1,0.060808716 +41,2032,2,0.059862173 +41,2032,3,0.058879218 +41,2032,4,0.057708878 +41,2032,5,0.055770082 +41,2032,6,0.053037382 +41,2032,7,0.050269186 +41,2032,8,0.046899289 +41,2032,9,0.043889961 +41,2032,10,0.042015498 +41,2032,11,0.039738883 +41,2032,12,0.037916685 +41,2032,13,0.035511346 +41,2032,14,0.033559367 +41,2032,15,0.0308632 +41,2032,16,0.028851157 +41,2032,17,0.026297297 +41,2032,18,0.022610271 +41,2032,19,0.019067156 +41,2032,20,0.016377697 +41,2032,21,0.014067902 +41,2032,22,0.011689866 +41,2032,23,0.009104616 +41,2032,24,0.011051405 +41,2032,25,0.013645132 +41,2032,26,0.013079797 +41,2032,27,0.012722581 +41,2032,28,0.011696431 +41,2032,29,0.010137478 +41,2032,30,0.011025756 +42,2032,0,0.061854515 +42,2032,1,0.060689065 +42,2032,2,0.059653767 +42,2032,3,0.058753753 +42,2032,4,0.057705266 +42,2032,5,0.055871982 +42,2032,6,0.05312704 +42,2032,7,0.050386575 +42,2032,8,0.047058042 +42,2032,9,0.044103846 +42,2032,10,0.042288397 +42,2032,11,0.040092721 +42,2032,12,0.038280686 +42,2032,13,0.0358448 +42,2032,14,0.033850319 +42,2032,15,0.031124291 +42,2032,16,0.029098335 +42,2032,17,0.026534948 +42,2032,18,0.022855778 +42,2032,19,0.019278206 +42,2032,20,0.01655946 +42,2032,21,0.018737453 +42,2032,22,0.010795417 +42,2032,23,0.010258781 +42,2032,24,0.013527501 +42,2032,25,0.012380705 +42,2032,26,0.008332949 +42,2032,27,0.012252454 +42,2032,28,0.009505517 +42,2032,29,0.008710582 +42,2032,30,0.010484892 +43,2032,0,0.061807235 +43,2032,1,0.060760835 +43,2032,2,0.059803079 +43,2032,3,0.058840113 +43,2032,4,0.057734615 +43,2032,5,0.055860916 +43,2032,6,0.053167773 +43,2032,7,0.050361663 +43,2032,8,0.047034309 +43,2032,9,0.044077584 +43,2032,10,0.042271422 +43,2032,11,0.040031229 +43,2032,12,0.038170814 +43,2032,13,0.035758322 +43,2032,14,0.033798003 +43,2032,15,0.031090404 +43,2032,16,0.029066316 +43,2032,17,0.026497703 +43,2032,18,0.022785067 +43,2032,19,0.019214727 +43,2032,20,0.016504863 +43,2032,21,0.010955129 +43,2032,22,0.011270983 +43,2032,23,0.0124726 +43,2032,24,0.012859133 +43,2032,25,0.012553915 +43,2032,26,0.013766858 +43,2032,27,0.011539965 +43,2032,28,0.010757228 +43,2032,29,0.008661801 +43,2032,30,0.010525722 +51,2032,0,0.066644529 +51,2032,1,0.065781289 +51,2032,2,0.06514413 +51,2032,3,0.064713521 +51,2032,4,0.063793895 +51,2032,5,0.061888298 +51,2032,6,0.058771533 +51,2032,7,0.05553595 +51,2032,8,0.051282833 +51,2032,9,0.04746965 +51,2032,10,0.045140077 +51,2032,11,0.042040194 +51,2032,12,0.039642546 +51,2032,13,0.036584276 +51,2032,14,0.034109497 +51,2032,15,0.031061327 +51,2032,16,0.028201014 +51,2032,17,0.024992837 +51,2032,18,0.020910068 +51,2032,19,0.01720131 +51,2032,20,0.014244779 +51,2032,21,0.007013949 +51,2032,22,0.005091692 +51,2032,23,0.006083931 +51,2032,24,0.004300212 +51,2032,25,0.01380799 +51,2032,26,0.00936002 +51,2032,27,0.008087064 +51,2032,28,0.004469934 +51,2032,29,0.003984339 +51,2032,30,0.002646527 +52,2032,0,0.066694225 +52,2032,1,0.066001125 +52,2032,2,0.065308884 +52,2032,3,0.064625129 +52,2032,4,0.063856716 +52,2032,5,0.061834662 +52,2032,6,0.058627365 +52,2032,7,0.05535381 +52,2032,8,0.051175595 +52,2032,9,0.047381015 +52,2032,10,0.044997542 +52,2032,11,0.041957047 +52,2032,12,0.039549636 +52,2032,13,0.036606567 +52,2032,14,0.034293221 +52,2032,15,0.031412554 +52,2032,16,0.028625331 +52,2032,17,0.025444309 +52,2032,18,0.021366057 +52,2032,19,0.017597655 +52,2032,20,0.014591487 +52,2032,21,0.007524442 +52,2032,22,0.004244815 +52,2032,23,0.004096304 +52,2032,24,0.007732341 +52,2032,25,0.009308945 +52,2032,26,0.008893267 +52,2032,27,0.007057529 +52,2032,28,0.005697591 +52,2032,29,0.004469511 +52,2032,30,0.003675322 +53,2032,0,0.066681204 +53,2032,1,0.06646069 +53,2032,2,0.06630748 +53,2032,3,0.065549683 +53,2032,4,0.064504505 +53,2032,5,0.062332172 +53,2032,6,0.059031426 +53,2032,7,0.055811582 +53,2032,8,0.052222465 +53,2032,9,0.048402413 +53,2032,10,0.046109551 +53,2032,11,0.043082512 +53,2032,12,0.041061778 +53,2032,13,0.038020478 +53,2032,14,0.035463553 +53,2032,15,0.032360007 +53,2032,16,0.029421418 +53,2032,17,0.026110173 +53,2032,18,0.021891529 +53,2032,19,0.018027059 +53,2032,20,0.014950005 +53,2032,21,0.005226746 +53,2032,22,0.003020874 +53,2032,23,0.003199278 +53,2032,24,0.005127066 +53,2032,25,0.008238838 +53,2032,26,0.006644983 +53,2032,27,0.005643639 +53,2032,28,0.003842186 +53,2032,29,0.002968649 +53,2032,30,0.002286417 +54,2032,0,0.066784355 +54,2032,1,0.065976162 +54,2032,2,0.065209394 +54,2032,3,0.064489261 +54,2032,4,0.063685389 +54,2032,5,0.06159057 +54,2032,6,0.058246839 +54,2032,7,0.054924084 +54,2032,8,0.050710045 +54,2032,9,0.046894269 +54,2032,10,0.044444485 +54,2032,11,0.041342096 +54,2032,12,0.038922984 +54,2032,13,0.035985373 +54,2032,14,0.033688477 +54,2032,15,0.030835654 +54,2032,16,0.02810066 +54,2032,17,0.024976555 +54,2032,18,0.020950811 +54,2032,19,0.017241331 +54,2032,20,0.014279817 +54,2032,21,0.009665562 +54,2032,22,0.007818353 +54,2032,23,0.005903466 +54,2032,24,0.006977648 +54,2032,25,0.008377803 +54,2032,26,0.007766147 +54,2032,27,0.007357943 +54,2032,28,0.006576409 +54,2032,29,0.005531076 +54,2032,30,0.00474702 +61,2032,0,0.057483363 +61,2032,1,0.05615361 +61,2032,2,0.055113101 +61,2032,3,0.054213057 +61,2032,4,0.05325513 +61,2032,5,0.051927084 +61,2032,6,0.050021917 +61,2032,7,0.047932343 +61,2032,8,0.045439447 +61,2032,9,0.043328957 +61,2032,10,0.042203678 +61,2032,11,0.040817807 +61,2032,12,0.039703581 +61,2032,13,0.03789223 +61,2032,14,0.036345534 +61,2032,15,0.033621222 +61,2032,16,0.0320734 +61,2032,17,0.029854274 +61,2032,18,0.026114699 +61,2032,19,0.022235805 +61,2032,20,0.020867633 +61,2032,21,0.009861609 +61,2032,22,0.007072133 +61,2032,23,0.008706699 +61,2032,24,0.007485251 +61,2032,25,0.023325493 +61,2032,26,0.016349213 +61,2032,27,0.015250349 +61,2032,28,0.009187063 +61,2032,29,0.007810646 +61,2032,30,0.018353949 +62,2032,0,0.057575025 +62,2032,1,0.056292238 +62,2032,2,0.055110263 +62,2032,3,0.053820077 +62,2032,4,0.052278858 +62,2032,5,0.050258369 +62,2032,6,0.047711409 +62,2032,7,0.045085399 +62,2032,8,0.042134222 +62,2032,9,0.039617206 +62,2032,10,0.037972921 +62,2032,11,0.036049008 +62,2032,12,0.03436972 +62,2032,13,0.032120825 +62,2032,14,0.030171601 +62,2032,15,0.027485693 +62,2032,16,0.026035656 +62,2032,17,0.024074137 +62,2032,18,0.020773453 +62,2032,19,0.017615696 +62,2032,20,0.016106987 +62,2032,21,0.016593489 +62,2032,22,0.012563996 +62,2032,23,0.015809248 +62,2032,24,0.011783836 +62,2032,25,0.039227442 +62,2032,26,0.027723699 +62,2032,27,0.025114007 +62,2032,28,0.014404186 +62,2032,29,0.013408095 +62,2032,30,0.020713086 +11,2033,0,0.070370792 +11,2033,1,0.070073124 +11,2033,2,0.068220259 +11,2033,3,0.063821931 +11,2033,4,0.059599735 +11,2033,5,0.055545663 +11,2033,6,0.051403425 +11,2033,7,0.047110159 +11,2033,8,0.043467893 +11,2033,9,0.0396422 +11,2033,10,0.036793619 +11,2033,11,0.034123723 +11,2033,12,0.031632948 +11,2033,13,0.029406597 +11,2033,14,0.027295462 +11,2033,15,0.025398243 +11,2033,16,0.024064088 +11,2033,17,0.022336227 +11,2033,18,0.020318974 +11,2033,19,0.01863851 +11,2033,20,0.016590673 +11,2033,21,0.014828961 +11,2033,22,0.01189573 +11,2033,23,0.010742691 +11,2033,24,0.011126306 +11,2033,25,0.019715544 +11,2033,26,0.017541563 +11,2033,27,0.016619492 +11,2033,28,0.01455398 +11,2033,29,0.012347239 +11,2033,30,0.01477428 +21,2033,0,0.070370791 +21,2033,1,0.069818612 +21,2033,2,0.069147296 +21,2033,3,0.068498023 +21,2033,4,0.067554872 +21,2033,5,0.066372849 +21,2033,6,0.064558632 +21,2033,7,0.061889277 +21,2033,8,0.059408271 +21,2033,9,0.056046628 +21,2033,10,0.053457263 +21,2033,11,0.050599999 +21,2033,12,0.047559377 +21,2033,13,0.042703925 +21,2033,14,0.035636107 +21,2033,15,0.028928728 +21,2033,16,0.023310776 +21,2033,17,0.018025671 +21,2033,18,0.013439917 +21,2033,19,0.009978432 +21,2033,20,0.007138832 +21,2033,21,0.005141737 +21,2033,22,0.00236578 +21,2033,23,0.001982325 +21,2033,24,0.001352956 +21,2033,25,0.001295445 +21,2033,26,0.001082009 +21,2033,27,0.000783443 +21,2033,28,0.00060906 +21,2033,29,0.000447446 +21,2033,30,0.00049552 +31,2033,0,0.071263668 +31,2033,1,0.070028904 +31,2033,2,0.068730561 +31,2033,3,0.067468113 +31,2033,4,0.06577091 +31,2033,5,0.063799979 +31,2033,6,0.061241202 +31,2033,7,0.058467481 +31,2033,8,0.054358574 +31,2033,9,0.050513644 +31,2033,10,0.047059628 +31,2033,11,0.04366668 +31,2033,12,0.040205792 +31,2033,13,0.036645279 +31,2033,14,0.033456472 +31,2033,15,0.03002677 +31,2033,16,0.026473848 +31,2033,17,0.023033345 +31,2033,18,0.019140164 +31,2033,19,0.015647005 +31,2033,20,0.012631452 +31,2033,21,0.010269828 +31,2033,22,0.005675849 +31,2033,23,0.004226547 +31,2033,24,0.00269281 +31,2033,25,0.003930189 +31,2033,26,0.003509884 +31,2033,27,0.003035953 +31,2033,28,0.002700578 +31,2033,29,0.002326716 +31,2033,30,0.002002175 +32,2033,0,0.071278448 +32,2033,1,0.070063604 +32,2033,2,0.068774796 +32,2033,3,0.067509913 +32,2033,4,0.065793824 +32,2033,5,0.063824279 +32,2033,6,0.061264193 +32,2033,7,0.058496765 +32,2033,8,0.054368096 +32,2033,9,0.050524526 +32,2033,10,0.047052132 +32,2033,11,0.043637251 +32,2033,12,0.040151142 +32,2033,13,0.036553568 +32,2033,14,0.033318667 +32,2033,15,0.0298342 +32,2033,16,0.026217328 +32,2033,17,0.022713687 +32,2033,18,0.01876865 +32,2033,19,0.015240904 +32,2033,20,0.012226559 +32,2033,21,0.009856076 +32,2033,22,0.006119902 +32,2033,23,0.004444851 +32,2033,24,0.002865307 +32,2033,25,0.004289594 +32,2033,26,0.003783866 +32,2033,27,0.003361488 +32,2033,28,0.002944786 +32,2033,29,0.002542944 +32,2033,30,0.002178637 +41,2033,0,0.061982676 +41,2033,1,0.061187229 +41,2033,2,0.060151845 +41,2033,3,0.059215526 +41,2033,4,0.05824319 +41,2033,5,0.056406628 +41,2033,6,0.053855524 +41,2033,7,0.051216636 +41,2033,8,0.047952124 +41,2033,9,0.044737556 +41,2033,10,0.041866937 +41,2033,11,0.039584617 +41,2033,12,0.037439719 +41,2033,13,0.035276911 +41,2033,14,0.033039032 +41,2033,15,0.031222951 +41,2033,16,0.028351429 +41,2033,17,0.026503135 +41,2033,18,0.023847767 +41,2033,19,0.020504178 +41,2033,20,0.017066797 +41,2033,21,0.014659493 +41,2033,22,0.012592022 +41,2033,23,0.010325952 +41,2033,24,0.008042337 +41,2033,25,0.009761984 +41,2033,26,0.011892571 +41,2033,27,0.011399848 +41,2033,28,0.011088511 +41,2033,29,0.010056567 +41,2033,30,0.010543636 +42,2033,0,0.061937462 +42,2033,1,0.061141714 +42,2033,2,0.059989695 +42,2033,3,0.058966327 +42,2033,4,0.058076684 +42,2033,5,0.056361953 +42,2033,6,0.053914569 +42,2033,7,0.051265792 +42,2033,8,0.048029041 +42,2033,9,0.044856247 +42,2033,10,0.042040275 +42,2033,11,0.039812664 +42,2033,12,0.037745532 +42,2033,13,0.035589589 +42,2033,14,0.033324944 +42,2033,15,0.031470673 +42,2033,16,0.028570416 +42,2033,17,0.026710697 +42,2033,18,0.024045728 +42,2033,19,0.020711697 +42,2033,20,0.017243119 +42,2033,21,0.014811375 +42,2033,22,0.01675945 +42,2033,23,0.009528908 +42,2033,24,0.009055229 +42,2033,25,0.011940466 +42,2033,26,0.010782674 +42,2033,27,0.00725738 +42,2033,28,0.010670977 +42,2033,29,0.008166862 +42,2033,30,0.009220418 +43,2033,0,0.061949894 +43,2033,1,0.061107241 +43,2033,2,0.060072692 +43,2033,3,0.059125783 +43,2033,4,0.058173723 +43,2033,5,0.056401937 +43,2033,6,0.05391471 +43,2033,7,0.051315396 +43,2033,8,0.04801493 +43,2033,9,0.044842623 +43,2033,10,0.042023674 +43,2033,11,0.03980467 +43,2033,12,0.037695204 +43,2033,13,0.035494565 +43,2033,14,0.033251218 +43,2033,15,0.031428342 +43,2033,16,0.028545037 +43,2033,17,0.026686661 +43,2033,18,0.024016796 +43,2033,19,0.020651764 +43,2033,20,0.01718979 +43,2033,21,0.014765504 +43,2033,22,0.009800627 +43,2033,23,0.009950678 +43,2033,24,0.011011535 +43,2033,25,0.011352788 +43,2033,26,0.010935722 +43,2033,27,0.011992317 +43,2033,28,0.01005247 +43,2033,29,0.00924415 +43,2033,30,0.009187112 +51,2033,0,0.066508223 +51,2033,1,0.065941291 +51,2033,2,0.06508716 +51,2033,3,0.064456724 +51,2033,4,0.064030658 +51,2033,5,0.062056685 +51,2033,6,0.059170712 +51,2033,7,0.056190807 +51,2033,8,0.052170989 +51,2033,9,0.048175571 +51,2033,10,0.044593431 +51,2033,11,0.041652089 +51,2033,12,0.038791734 +51,2033,13,0.035918134 +51,2033,14,0.033147188 +51,2033,15,0.030904914 +51,2033,16,0.027625031 +51,2033,17,0.025081153 +51,2033,18,0.021811025 +51,2033,19,0.01824803 +51,2033,20,0.014724519 +51,2033,21,0.012193695 +51,2033,22,0.006004021 +51,2033,23,0.00427362 +51,2033,24,0.005106438 +51,2033,25,0.003609306 +51,2033,26,0.011359175 +51,2033,27,0.007700043 +51,2033,28,0.006652842 +51,2033,29,0.003602646 +51,2033,30,0.003211269 +52,2033,0,0.066557659 +52,2033,1,0.066039514 +52,2033,2,0.065353218 +52,2033,3,0.064667772 +52,2033,4,0.063990729 +52,2033,5,0.062163967 +52,2033,6,0.059163375 +52,2033,7,0.056094635 +52,2033,8,0.052038537 +52,2033,9,0.048110565 +52,2033,10,0.044543252 +52,2033,11,0.04155143 +52,2033,12,0.03874379 +52,2033,13,0.035860589 +52,2033,14,0.033192039 +52,2033,15,0.031094473 +52,2033,16,0.027958168 +52,2033,17,0.025477451 +52,2033,18,0.022221526 +52,2033,19,0.018659826 +52,2033,20,0.015074992 +52,2033,21,0.012499766 +52,2033,22,0.006445796 +52,2033,23,0.003565457 +52,2033,24,0.003440715 +52,2033,25,0.006494825 +52,2033,26,0.007663718 +52,2033,27,0.007321505 +52,2033,28,0.005810209 +52,2033,29,0.004595516 +52,2033,30,0.003604982 +53,2033,0,0.066377116 +53,2033,1,0.065847518 +53,2033,2,0.065629761 +53,2033,3,0.065478467 +53,2033,4,0.064730144 +53,2033,5,0.062624249 +53,2033,6,0.059477615 +53,2033,7,0.05632803 +53,2033,8,0.052326565 +53,2033,9,0.048961562 +53,2033,10,0.045380044 +53,2033,11,0.042462779 +53,2033,12,0.039675147 +53,2033,13,0.037130689 +53,2033,14,0.034380551 +53,2033,15,0.032068416 +53,2033,16,0.028723305 +53,2033,17,0.026114963 +53,2033,18,0.022741196 +53,2033,19,0.019066881 +53,2033,20,0.01540095 +53,2033,21,0.01277215 +53,2033,22,0.004465335 +53,2033,23,0.002530518 +53,2033,24,0.002679963 +53,2033,25,0.004294828 +53,2033,26,0.006764339 +53,2033,27,0.005455735 +53,2033,28,0.0046336 +53,2033,29,0.003090593 +53,2033,30,0.002387934 +54,2033,0,0.066656094 +54,2033,1,0.06622656 +54,2033,2,0.065425117 +54,2033,3,0.064664753 +54,2033,4,0.063950635 +54,2033,5,0.062088872 +54,2033,6,0.059016981 +54,2033,7,0.055812969 +54,2033,8,0.051710913 +54,2033,9,0.047743404 +54,2033,10,0.044150858 +54,2033,11,0.041101425 +54,2033,12,0.038232395 +54,2033,13,0.035344584 +54,2033,14,0.032677043 +54,2033,15,0.030591314 +54,2033,16,0.027485298 +54,2033,17,0.025047466 +54,2033,18,0.021845278 +54,2033,19,0.018324236 +54,2033,20,0.014791592 +54,2033,21,0.012250865 +54,2033,22,0.008292228 +54,2033,23,0.006576784 +54,2033,24,0.004965984 +54,2033,25,0.005869584 +54,2033,26,0.006907343 +54,2033,27,0.006403044 +54,2033,28,0.006066487 +54,2033,29,0.005312192 +54,2033,30,0.004467808 +61,2033,0,0.057784112 +61,2033,1,0.0566482 +61,2033,2,0.055337767 +61,2033,3,0.054312375 +61,2033,4,0.053425408 +61,2033,5,0.052021521 +61,2033,6,0.05027583 +61,2033,7,0.048431245 +61,2033,8,0.045994206 +61,2033,9,0.04360211 +61,2033,10,0.041576957 +61,2033,11,0.040132733 +61,2033,12,0.038814867 +61,2033,13,0.037412461 +61,2033,14,0.035705636 +61,2033,15,0.034248193 +61,2033,16,0.031390758 +61,2033,17,0.02994562 +61,2033,18,0.02761591 +61,2033,19,0.024156715 +61,2033,20,0.020376632 +61,2033,21,0.019122855 +61,2033,22,0.009037063 +61,2033,23,0.00641975 +61,2033,24,0.007903532 +61,2033,25,0.006794758 +61,2033,26,0.02097236 +61,2033,27,0.014699865 +61,2033,28,0.013711857 +61,2033,29,0.008180916 +61,2033,30,0.013948016 +62,2033,0,0.058021895 +62,2033,1,0.056972011 +62,2033,2,0.055702659 +62,2033,3,0.054533064 +62,2033,4,0.053256391 +62,2033,5,0.051278009 +62,2033,6,0.048860417 +62,2033,7,0.046384301 +62,2033,8,0.043440404 +62,2033,9,0.040596904 +62,2033,10,0.038171724 +62,2033,11,0.036258172 +62,2033,12,0.034421137 +62,2033,13,0.032519665 +62,2033,14,0.030391824 +62,2033,15,0.028547523 +62,2033,16,0.025767867 +62,2033,17,0.024408456 +62,2033,18,0.022360785 +62,2033,19,0.01929501 +62,2033,20,0.016209246 +62,2033,21,0.014820994 +62,2033,22,0.015268653 +62,2033,23,0.011451936 +62,2033,24,0.014409946 +62,2033,25,0.01074083 +62,2033,26,0.035415219 +62,2033,27,0.025029439 +62,2033,28,0.022673364 +62,2033,29,0.012879453 +62,2033,30,0.019912872 +11,2034,0,0.070420198 +11,2034,1,0.06970484 +11,2034,2,0.067974798 +11,2034,3,0.063582544 +11,2034,4,0.059483221 +11,2034,5,0.055548056 +11,2034,6,0.051769585 +11,2034,7,0.047908943 +11,2034,8,0.043907539 +11,2034,9,0.04051288 +11,2034,10,0.036947264 +11,2034,11,0.034292333 +11,2034,12,0.031803941 +11,2034,13,0.029482493 +11,2034,14,0.027407493 +11,2034,15,0.025439876 +11,2034,16,0.023671632 +11,2034,17,0.022428175 +11,2034,18,0.020817777 +11,2034,19,0.018937659 +11,2034,20,0.017371436 +11,2034,21,0.015462814 +11,2034,22,0.013820866 +11,2034,23,0.011087041 +11,2034,24,0.010012387 +11,2034,25,0.010369923 +11,2034,26,0.018375252 +11,2034,27,0.016349061 +11,2034,28,0.015489674 +11,2034,29,0.013564579 +11,2034,30,0.016055766 +21,2034,0,0.070420196 +21,2034,1,0.069447643 +21,2034,2,0.068902708 +21,2034,3,0.068232538 +21,2034,4,0.067318747 +21,2034,5,0.066152413 +21,2034,6,0.064700895 +21,2034,7,0.062603473 +21,2034,8,0.059665389 +21,2034,9,0.056911653 +21,2034,10,0.053331258 +21,2034,11,0.050529873 +21,2034,12,0.047498435 +21,2034,13,0.042447714 +21,2034,14,0.035408812 +21,2034,15,0.028656414 +21,2034,16,0.02266681 +21,2034,17,0.017890571 +21,2034,18,0.013606766 +21,2034,19,0.010020153 +21,2034,20,0.007360972 +21,2034,21,0.005227491 +21,2034,22,0.003745164 +21,2034,23,0.001714028 +21,2034,24,0.001430503 +21,2034,25,0.000976183 +21,2034,26,0.000930814 +21,2034,27,0.000777214 +21,2034,28,0.000561971 +21,2034,29,0.00043621 +21,2034,30,0.000426983 +31,2034,0,0.070987853 +31,2034,1,0.06977598 +31,2034,2,0.068557727 +31,2034,3,0.067277565 +31,2034,4,0.0655598 +31,2034,5,0.063484222 +31,2034,6,0.061134453 +31,2034,7,0.058220751 +31,2034,8,0.055111977 +31,2034,9,0.050792997 +31,2034,10,0.046792606 +31,2034,11,0.043225689 +31,2034,12,0.039779866 +31,2034,13,0.036345115 +31,2034,14,0.03285984 +31,2034,15,0.029305501 +31,2034,16,0.026082833 +31,2034,17,0.022817951 +31,2034,18,0.019715432 +31,2034,19,0.016284299 +31,2034,20,0.013235752 +31,2034,21,0.010636441 +31,2034,22,0.008607051 +31,2034,23,0.00474186 +31,2034,24,0.00351595 +31,2034,25,0.002234376 +31,2034,26,0.003254338 +31,2034,27,0.002897023 +31,2034,28,0.002503436 +31,2034,29,0.00222117 +31,2034,30,0.002040141 +32,2034,0,0.071000024 +32,2034,1,0.069802417 +32,2034,2,0.068603458 +32,2034,3,0.067332407 +32,2034,4,0.065611666 +32,2034,5,0.063517228 +32,2034,6,0.061168224 +32,2034,7,0.058252594 +32,2034,8,0.055149035 +32,2034,9,0.050810605 +32,2034,10,0.046810711 +32,2034,11,0.043226213 +32,2034,12,0.039759873 +32,2034,13,0.036301935 +32,2034,14,0.032783222 +32,2034,15,0.029189799 +32,2034,16,0.025919999 +32,2034,17,0.022600729 +32,2034,18,0.019445153 +32,2034,19,0.015970956 +32,2034,20,0.012894443 +32,2034,21,0.010297263 +32,2034,22,0.008261706 +32,2034,23,0.005113718 +32,2034,24,0.003698185 +32,2034,25,0.002377914 +32,2034,26,0.003552548 +32,2034,27,0.003123701 +32,2034,28,0.002772346 +32,2034,29,0.002422441 +32,2034,30,0.002229501 +41,2034,0,0.062200909 +41,2034,1,0.061158478 +41,2034,2,0.060373609 +41,2034,3,0.059351992 +41,2034,4,0.058428124 +41,2034,5,0.056801899 +41,2034,6,0.054364992 +41,2034,7,0.051906225 +41,2034,8,0.048776479 +41,2034,9,0.045667501 +41,2034,10,0.042606087 +41,2034,11,0.039392904 +41,2034,12,0.037245452 +41,2034,13,0.03479866 +41,2034,14,0.03278842 +41,2034,15,0.030708405 +41,2034,16,0.028662965 +41,2034,17,0.026026881 +41,2034,18,0.024026699 +41,2034,19,0.021619447 +41,2034,20,0.018353531 +41,2034,21,0.015276691 +41,2034,22,0.013121884 +41,2034,23,0.011127102 +41,2034,24,0.009124661 +41,2034,25,0.007106714 +41,2034,26,0.008514539 +41,2034,27,0.010372867 +41,2034,28,0.009943106 +41,2034,29,0.009544604 +41,2034,30,0.01060988 +42,2034,0,0.062135956 +42,2034,1,0.061050048 +42,2034,2,0.060265701 +42,2034,3,0.059130187 +42,2034,4,0.058121481 +42,2034,5,0.056580368 +42,2034,6,0.054265208 +42,2034,7,0.051908871 +42,2034,8,0.04877231 +42,2034,9,0.045692989 +42,2034,10,0.042674514 +42,2034,11,0.039514692 +42,2034,12,0.037420906 +42,2034,13,0.035046265 +42,2034,14,0.033044499 +42,2034,15,0.030941803 +42,2034,16,0.028860208 +42,2034,17,0.026200525 +42,2034,18,0.02418958 +42,2034,19,0.021776147 +42,2034,20,0.018519924 +42,2034,21,0.015418401 +42,2034,22,0.013243991 +42,2034,23,0.014794239 +42,2034,24,0.008411549 +42,2034,25,0.007993414 +42,2034,26,0.010403766 +42,2034,27,0.009394978 +42,2034,28,0.006323378 +42,2034,29,0.009175613 +42,2034,30,0.008728996 +43,2034,0,0.062136906 +43,2034,1,0.061063235 +43,2034,2,0.060232643 +43,2034,3,0.059212901 +43,2034,4,0.058279545 +43,2034,5,0.056675773 +43,2034,6,0.054304535 +43,2034,7,0.0519098 +43,2034,8,0.048820247 +43,2034,9,0.045680263 +43,2034,10,0.042662205 +43,2034,11,0.039499693 +43,2034,12,0.037413965 +43,2034,13,0.035000072 +43,2034,14,0.032956774 +43,2034,15,0.030873822 +43,2034,16,0.028821829 +43,2034,17,0.026177651 +43,2034,18,0.024168182 +43,2034,19,0.021750278 +43,2034,20,0.018466616 +43,2034,21,0.015370951 +43,2034,22,0.013203177 +43,2034,23,0.008651539 +43,2034,24,0.008783997 +43,2034,25,0.009720472 +43,2034,26,0.009891872 +43,2034,27,0.009528475 +43,2034,28,0.010449104 +43,2034,29,0.008643911 +43,2034,30,0.009649303 +51,2034,0,0.066496307 +51,2034,1,0.065692153 +51,2034,2,0.065132177 +51,2034,3,0.064288527 +51,2034,4,0.063665826 +51,2034,5,0.062216683 +51,2034,6,0.059302028 +51,2034,7,0.056544161 +51,2034,8,0.052794133 +51,2034,9,0.049017308 +51,2034,10,0.045263409 +51,2034,11,0.04118165 +51,2034,12,0.038465345 +51,2034,13,0.035200854 +51,2034,14,0.032593258 +51,2034,15,0.030078814 +51,2034,16,0.027547783 +51,2034,17,0.024624186 +51,2034,18,0.021953851 +51,2034,19,0.019091467 +51,2034,20,0.015679676 +51,2034,21,0.012652089 +51,2034,22,0.01047747 +51,2034,23,0.005062552 +51,2034,24,0.003603489 +51,2034,25,0.004305715 +51,2034,26,0.002985379 +51,2034,27,0.009395558 +51,2034,28,0.006368966 +51,2034,29,0.005395949 +51,2034,30,0.002922013 +52,2034,0,0.066509464 +52,2034,1,0.06575399 +52,2034,2,0.065242101 +52,2034,3,0.064564092 +52,2034,4,0.063886922 +52,2034,5,0.062190188 +52,2034,6,0.059416301 +52,2034,7,0.056548336 +52,2034,8,0.052714201 +52,2034,9,0.048902536 +52,2034,10,0.045211276 +52,2034,11,0.041143448 +52,2034,12,0.03837998 +52,2034,13,0.035164304 +52,2034,14,0.032547478 +52,2034,15,0.030125471 +52,2034,16,0.027722234 +52,2034,17,0.024926066 +52,2034,18,0.022305148 +52,2034,19,0.019454632 +52,2034,20,0.016036686 +52,2034,21,0.012955797 +52,2034,22,0.010742587 +52,2034,23,0.005436129 +52,2034,24,0.003006965 +52,2034,25,0.002901763 +52,2034,26,0.005373153 +52,2034,27,0.006340175 +52,2034,28,0.006057063 +52,2034,29,0.004713443 +52,2034,30,0.003728043 +53,2034,0,0.066369632 +53,2034,1,0.065437758 +53,2034,2,0.064915655 +53,2034,3,0.06470098 +53,2034,4,0.064551826 +53,2034,5,0.062776535 +53,2034,6,0.059730396 +53,2034,7,0.056729167 +53,2034,8,0.052822242 +53,2034,9,0.049069824 +53,2034,10,0.045914254 +53,2034,11,0.041828245 +53,2034,12,0.039139309 +53,2034,13,0.035933906 +53,2034,14,0.033629383 +53,2034,15,0.031138574 +53,2034,16,0.028530442 +53,2034,17,0.025554383 +53,2034,18,0.022815212 +53,2034,19,0.019867737 +53,2034,20,0.016352066 +53,2034,21,0.013208105 +53,2034,22,0.010953603 +53,2034,23,0.003757969 +53,2034,24,0.002129652 +53,2034,25,0.002255423 +53,2034,26,0.00354563 +53,2034,27,0.005584355 +53,2034,28,0.004504026 +53,2034,29,0.003751035 +53,2034,30,0.002501925 +54,2034,0,0.066579263 +54,2034,1,0.065920344 +54,2034,2,0.065495551 +54,2034,3,0.064702954 +54,2034,4,0.063950983 +54,2034,5,0.062216446 +54,2034,6,0.059406806 +54,2034,7,0.056467612 +54,2034,8,0.052504554 +54,2034,9,0.048645654 +54,2034,10,0.044913326 +54,2034,11,0.040823802 +54,2034,12,0.038004164 +54,2034,13,0.034736572 +54,2034,14,0.032112812 +54,2034,15,0.029689181 +54,2034,16,0.027302266 +54,2034,17,0.024530196 +54,2034,18,0.021951716 +54,2034,19,0.019145303 +54,2034,20,0.015764799 +54,2034,21,0.012725577 +54,2034,22,0.010539726 +54,2034,23,0.007000675 +54,2034,24,0.00555242 +54,2034,25,0.00419251 +54,2034,26,0.004860988 +54,2034,27,0.005720425 +54,2034,28,0.005302781 +54,2034,29,0.00492651 +54,2034,30,0.004313957 +61,2034,0,0.058158492 +61,2034,1,0.056723334 +61,2034,2,0.055608275 +61,2034,3,0.054321898 +61,2034,4,0.05331533 +61,2034,5,0.051993826 +61,2034,6,0.050188584 +61,2034,7,0.048504401 +61,2034,8,0.046316132 +61,2034,9,0.043985524 +61,2034,10,0.041697897 +61,2034,11,0.039410347 +61,2034,12,0.038041382 +61,2034,13,0.03646466 +61,2034,14,0.035147169 +61,2034,15,0.03354369 +61,2034,16,0.031885497 +61,2034,17,0.02922519 +61,2034,18,0.027627058 +61,2034,19,0.025477727 +61,2034,20,0.022082522 +61,2034,21,0.018627012 +61,2034,22,0.01748089 +61,2034,23,0.008184847 +61,2034,24,0.005814352 +61,2034,25,0.00715821 +61,2034,26,0.00609666 +61,2034,27,0.018817645 +61,2034,28,0.013189591 +61,2034,29,0.012187386 +61,2034,30,0.012724499 +62,2034,0,0.058471973 +62,2034,1,0.057263756 +62,2034,2,0.05622759 +62,2034,3,0.054974824 +62,2034,4,0.053820512 +62,2034,5,0.052108705 +62,2034,6,0.049737926 +62,2034,7,0.047392943 +62,2034,8,0.044597681 +62,2034,9,0.041767176 +62,2034,10,0.039033201 +62,2034,11,0.036377592 +62,2034,12,0.03455398 +62,2034,13,0.032511267 +62,2034,14,0.030715299 +62,2034,15,0.028705521 +62,2034,16,0.026721361 +62,2034,17,0.024119517 +62,2034,18,0.022639991 +62,2034,19,0.02074068 +62,2034,20,0.017733334 +62,2034,21,0.014897322 +62,2034,22,0.013621431 +62,2034,23,0.013903322 +62,2034,24,0.010427898 +62,2034,25,0.013121401 +62,2034,26,0.009689256 +62,2034,27,0.031947915 +62,2034,28,0.022578948 +62,2034,29,0.020261187 +62,2034,30,0.01933635 +11,2035,0,0.070326359 +11,2035,1,0.069793873 +11,2035,2,0.067664981 +11,2035,3,0.063414071 +11,2035,4,0.059316512 +11,2035,5,0.05549223 +11,2035,6,0.051821093 +11,2035,7,0.048296136 +11,2035,8,0.044694522 +11,2035,9,0.04096159 +11,2035,10,0.037794693 +11,2035,11,0.03446831 +11,2035,12,0.03199151 +11,2035,13,0.029670075 +11,2035,14,0.027504383 +11,2035,15,0.025568604 +11,2035,16,0.023733003 +11,2035,17,0.022083399 +11,2035,18,0.02092337 +11,2035,19,0.019421021 +11,2035,20,0.017667049 +11,2035,21,0.01620591 +11,2035,22,0.014425346 +11,2035,23,0.012893564 +11,2035,24,0.010343163 +11,2035,25,0.009340612 +11,2035,26,0.009674159 +11,2035,27,0.017142375 +11,2035,28,0.015252131 +11,2035,29,0.014450404 +11,2035,30,0.017665519 +21,2035,0,0.070326365 +21,2035,1,0.06953437 +21,2035,2,0.068574051 +21,2035,3,0.068028274 +21,2035,4,0.067092307 +21,2035,5,0.065953227 +21,2035,6,0.064515065 +21,2035,7,0.062767113 +21,2035,8,0.060375845 +21,2035,9,0.057175849 +21,2035,10,0.054168403 +21,2035,11,0.050421126 +21,2035,12,0.047439686 +21,2035,13,0.042381804 +21,2035,14,0.035163799 +21,2035,15,0.028439126 +21,2035,16,0.022420621 +21,2035,17,0.017367364 +21,2035,18,0.013480044 +21,2035,19,0.010124682 +21,2035,20,0.007376467 +21,2035,21,0.005378598 +21,2035,22,0.003799251 +21,2035,23,0.002707283 +21,2035,24,0.001234051 +21,2035,25,0.001029761 +21,2035,26,0.000699771 +21,2035,27,0.00066704 +21,2035,28,0.000556187 +21,2035,29,0.000401528 +21,2035,30,0.000400942 +31,2035,0,0.071083194 +31,2035,1,0.06954175 +31,2035,2,0.068345275 +31,2035,3,0.067142874 +31,2035,4,0.065405552 +31,2035,5,0.063307978 +31,2035,6,0.060855825 +31,2035,7,0.058139503 +31,2035,8,0.05489581 +31,2035,9,0.051509748 +31,2035,10,0.047060644 +31,2035,11,0.042986724 +31,2035,12,0.03938196 +31,2035,13,0.035961911 +31,2035,14,0.032590733 +31,2035,15,0.028778773 +31,2035,16,0.025451323 +31,2035,17,0.022475428 +31,2035,18,0.019525419 +31,2035,19,0.016768233 +31,2035,20,0.013769808 +31,2035,21,0.011140901 +31,2035,22,0.008910516 +31,2035,23,0.007187511 +31,2035,24,0.003942755 +31,2035,25,0.002915949 +31,2035,26,0.00184921 +31,2035,27,0.002684686 +31,2035,28,0.002387604 +31,2035,29,0.002057894 +31,2035,30,0.001944505 +32,2035,0,0.071093709 +32,2035,1,0.069563961 +32,2035,2,0.068381283 +32,2035,3,0.067197599 +32,2035,4,0.065468552 +32,2035,5,0.063367434 +32,2035,6,0.060896471 +32,2035,7,0.058180224 +32,2035,8,0.054933958 +32,2035,9,0.051552008 +32,2035,10,0.047083922 +32,2035,11,0.043009717 +32,2035,12,0.039388263 +32,2035,13,0.035949153 +32,2035,14,0.032556829 +32,2035,15,0.028715917 +32,2035,16,0.025354587 +32,2035,17,0.022338419 +32,2035,18,0.019342402 +32,2035,19,0.016540804 +32,2035,20,0.013506847 +32,2035,21,0.010855217 +32,2035,22,0.00862765 +32,2035,23,0.006900144 +32,2035,24,0.004252576 +32,2035,25,0.003067539 +32,2035,26,0.001968296 +32,2035,27,0.00293113 +32,2035,28,0.002574803 +32,2035,29,0.002279283 +32,2035,30,0.002121287 +41,2035,0,0.062601879 +41,2035,1,0.061380457 +41,2035,2,0.060351777 +41,2035,3,0.05957726 +41,2035,4,0.058569118 +41,2035,5,0.056976156 +41,2035,6,0.054728025 +41,2035,7,0.052380091 +41,2035,8,0.049405861 +41,2035,9,0.046426878 +41,2035,10,0.043467661 +41,2035,11,0.040056922 +41,2035,12,0.037035987 +41,2035,13,0.034582732 +41,2035,14,0.032310864 +41,2035,15,0.030444338 +41,2035,16,0.028154961 +41,2035,17,0.026279603 +41,2035,18,0.023559235 +41,2035,19,0.021748693 +41,2035,20,0.01931759 +41,2035,21,0.016399402 +41,2035,22,0.013650158 +41,2035,23,0.011571773 +41,2035,24,0.009812638 +41,2035,25,0.008046749 +41,2035,26,0.00618432 +41,2035,27,0.00740942 +41,2035,28,0.009026552 +41,2035,29,0.008536633 +41,2035,30,0.01000453 +42,2035,0,0.062515936 +42,2035,1,0.061232183 +42,2035,2,0.060162069 +42,2035,3,0.059389131 +42,2035,4,0.058270133 +42,2035,5,0.056599325 +42,2035,6,0.054439742 +42,2035,7,0.052212173 +42,2035,8,0.04934055 +42,2035,9,0.046359178 +42,2035,10,0.043432214 +42,2035,11,0.040066175 +42,2035,12,0.037099487 +42,2035,13,0.034697942 +42,2035,14,0.032496094 +42,2035,15,0.030639988 +42,2035,16,0.028330006 +42,2035,17,0.026424118 +42,2035,18,0.023683856 +42,2035,19,0.021866071 +42,2035,20,0.019430894 +42,2035,21,0.016525361 +42,2035,22,0.013757866 +42,2035,23,0.011663421 +42,2035,24,0.013028659 +42,2035,25,0.007407695 +42,2035,26,0.006946384 +42,2035,27,0.009041012 +42,2035,28,0.008164362 +42,2035,29,0.00542147 +42,2035,30,0.009353999 +43,2035,0,0.062561958 +43,2035,1,0.061278197 +43,2035,2,0.060219364 +43,2035,3,0.05940025 +43,2035,4,0.0583946 +43,2035,5,0.056795028 +43,2035,6,0.054571681 +43,2035,7,0.052288477 +43,2035,8,0.049377756 +43,2035,9,0.046438905 +43,2035,10,0.043452082 +43,2035,11,0.040084105 +43,2035,12,0.037112705 +43,2035,13,0.034717044 +43,2035,14,0.032477152 +43,2035,15,0.030581142 +43,2035,16,0.028288573 +43,2035,17,0.026408406 +43,2035,18,0.0236806 +43,2035,19,0.021862811 +43,2035,20,0.019422098 +43,2035,21,0.016489924 +43,2035,22,0.013725623 +43,2035,23,0.011636038 +43,2035,24,0.007624653 +43,2035,25,0.007741388 +43,2035,26,0.008453439 +43,2035,27,0.008602497 +43,2035,28,0.008286468 +43,2035,29,0.008965335 +43,2035,30,0.009061588 +51,2035,0,0.066738135 +51,2035,1,0.065727497 +51,2035,2,0.06493264 +51,2035,3,0.064379138 +51,2035,4,0.063545242 +51,2035,5,0.061882452 +51,2035,6,0.059450451 +51,2035,7,0.056665385 +51,2035,8,0.053099997 +51,2035,9,0.049578387 +51,2035,10,0.046031612 +51,2035,11,0.041761789 +51,2035,12,0.037995799 +51,2035,13,0.034856884 +51,2035,14,0.031898637 +51,2035,15,0.029535661 +51,2035,16,0.026762309 +51,2035,17,0.02451035 +51,2035,18,0.021504048 +51,2035,19,0.019172072 +51,2035,20,0.016358331 +51,2035,21,0.013434973 +51,2035,22,0.010840815 +51,2035,23,0.008805163 +51,2035,24,0.004254519 +51,2035,25,0.003028336 +51,2035,26,0.003547652 +51,2035,27,0.002459774 +51,2035,28,0.007741379 +51,2035,29,0.005142879 +51,2035,30,0.004357178 +52,2035,0,0.066770905 +52,2035,1,0.065772781 +52,2035,2,0.065025675 +52,2035,3,0.064519456 +52,2035,4,0.063848957 +52,2035,5,0.062127846 +52,2035,6,0.059454312 +52,2035,7,0.056802455 +52,2035,8,0.053129993 +52,2035,9,0.049527631 +52,2035,10,0.045946381 +52,2035,11,0.041734171 +52,2035,12,0.037979192 +52,2035,13,0.034796604 +52,2035,14,0.031881162 +52,2035,15,0.029508658 +52,2035,16,0.026816983 +52,2035,17,0.024677678 +52,2035,18,0.021778365 +52,2035,19,0.019488421 +52,2035,20,0.01667769 +52,2035,21,0.01374762 +52,2035,22,0.011106495 +52,2035,23,0.009032398 +52,2035,24,0.004570713 +52,2035,25,0.002528265 +52,2035,26,0.002392053 +52,2035,27,0.004429331 +52,2035,28,0.00522649 +52,2035,29,0.004893422 +52,2035,30,0.003807929 +53,2035,0,0.066655091 +53,2035,1,0.065520656 +53,2035,2,0.064600702 +53,2035,3,0.064085277 +53,2035,4,0.063873348 +53,2035,5,0.062665561 +53,2035,6,0.05991077 +53,2035,7,0.057003687 +53,2035,8,0.053207444 +53,2035,9,0.04954306 +53,2035,10,0.04602359 +53,2035,11,0.042309572 +53,2035,12,0.038544352 +53,2035,13,0.035423489 +53,2035,14,0.032522402 +53,2035,15,0.030436666 +53,2035,16,0.027670745 +53,2035,17,0.025353075 +53,2035,18,0.022288611 +53,2035,19,0.019899498 +53,2035,20,0.017002288 +53,2035,21,0.013993669 +53,2035,22,0.011303149 +53,2035,23,0.009193845 +53,2035,24,0.003154231 +53,2035,25,0.001787511 +53,2035,26,0.001856021 +53,2035,27,0.002917752 +53,2035,28,0.00459545 +53,2035,29,0.003632433 +53,2035,30,0.003025156 +54,2035,0,0.0668137 +54,2035,1,0.065884007 +54,2035,2,0.065231969 +54,2035,3,0.064811612 +54,2035,4,0.064027292 +54,2035,5,0.062230003 +54,2035,6,0.059517538 +54,2035,7,0.056829778 +54,2035,8,0.053088153 +54,2035,9,0.049362274 +54,2035,10,0.045734321 +54,2035,11,0.041485709 +54,2035,12,0.037708282 +54,2035,13,0.034477961 +54,2035,14,0.031513551 +54,2035,15,0.029133235 +54,2035,16,0.026445546 +54,2035,17,0.024319409 +54,2035,18,0.021446223 +54,2035,19,0.019191913 +54,2035,20,0.016423034 +54,2035,21,0.013523204 +54,2035,22,0.010916128 +54,2035,23,0.008867511 +54,2035,24,0.00588996 +54,2035,25,0.004671482 +54,2035,26,0.003458289 +54,2035,27,0.004009699 +54,2035,28,0.004718625 +54,2035,29,0.004286794 +54,2035,30,0.003982614 +61,2035,0,0.058735239 +61,2035,1,0.057103381 +61,2035,2,0.05569426 +61,2035,3,0.05459943 +61,2035,4,0.05333639 +61,2035,5,0.051881727 +61,2035,6,0.05014096 +61,2035,7,0.04840005 +61,2035,8,0.046351611 +61,2035,9,0.044260465 +61,2035,10,0.042033297 +61,2035,11,0.039482463 +61,2035,12,0.037316452 +61,2035,13,0.035687469 +61,2035,14,0.03420831 +61,2035,15,0.032972342 +61,2035,16,0.031174672 +61,2035,17,0.029633589 +61,2035,18,0.026905529 +61,2035,19,0.025434244 +61,2035,20,0.023232653 +61,2035,21,0.02013663 +61,2035,22,0.016985616 +61,2035,23,0.015787581 +61,2035,24,0.007392012 +61,2035,25,0.005251138 +61,2035,26,0.006402207 +61,2035,27,0.005452771 +61,2035,28,0.016830249 +61,2035,29,0.011681222 +61,2035,30,0.015496072 +62,2035,0,0.059050002 +62,2035,1,0.057718842 +62,2035,2,0.056526187 +62,2035,3,0.055503367 +62,2035,4,0.054266737 +62,2035,5,0.052653994 +62,2035,6,0.050521045 +62,2035,7,0.048222499 +62,2035,8,0.04553219 +62,2035,9,0.042846676 +62,2035,10,0.040127303 +62,2035,11,0.03715741 +62,2035,12,0.034629419 +62,2035,13,0.032589575 +62,2035,14,0.030662991 +62,2035,15,0.028969125 +62,2035,16,0.026821167 +62,2035,17,0.024967255 +62,2035,18,0.022324101 +62,2035,19,0.020954708 +62,2035,20,0.019014385 +62,2035,21,0.016257348 +62,2035,22,0.013657384 +62,2035,23,0.012367901 +62,2035,24,0.01262385 +62,2035,25,0.009468257 +62,2035,26,0.011798496 +62,2035,27,0.008712381 +62,2035,28,0.028726913 +62,2035,29,0.02010397 +62,2035,30,0.025224469 +11,2036,0,0.070295036 +11,2036,1,0.069728808 +11,2036,2,0.067793609 +11,2036,3,0.063192012 +11,2036,4,0.059222107 +11,2036,5,0.055395415 +11,2036,6,0.051823937 +11,2036,7,0.048395478 +11,2036,8,0.045103538 +11,2036,9,0.041740007 +11,2036,10,0.038253839 +11,2036,11,0.035296289 +11,2036,12,0.032189795 +11,2036,13,0.029876723 +11,2036,14,0.027708746 +11,2036,15,0.025686216 +11,2036,16,0.0238784 +11,2036,17,0.022164141 +11,2036,18,0.020623584 +11,2036,19,0.019540239 +11,2036,20,0.018137201 +11,2036,21,0.016499175 +11,2036,22,0.015134624 +11,2036,23,0.013471764 +11,2036,24,0.012041239 +11,2036,25,0.009659432 +11,2036,26,0.008723154 +11,2036,27,0.009034652 +11,2036,28,0.016009185 +11,2036,29,0.014243894 +11,2036,30,0.019137746 +21,2036,0,0.070295035 +21,2036,1,0.069467809 +21,2036,2,0.068685483 +21,2036,3,0.067729174 +21,2036,4,0.066914696 +21,2036,5,0.065752595 +21,2036,6,0.06433957 +21,2036,7,0.062602834 +21,2036,8,0.060546684 +21,2036,9,0.057866552 +21,2036,10,0.054426599 +21,2036,11,0.051216521 +21,2036,12,0.047338886 +21,2036,13,0.042314902 +21,2036,14,0.035077019 +21,2036,15,0.028209333 +21,2036,16,0.022219723 +21,2036,17,0.017151798 +21,2036,18,0.013063386 +21,2036,19,0.010012076 +21,2036,20,0.007439092 +21,2036,21,0.005379196 +21,2036,22,0.003901104 +21,2036,23,0.002740647 +21,2036,24,0.001945023 +21,2036,25,0.000886454 +21,2036,26,0.00073658 +21,2036,27,0.000500383 +21,2036,28,0.000476304 +21,2036,29,0.000396522 +21,2036,30,0.000368021 +31,2036,0,0.071121814 +31,2036,1,0.069659696 +31,2036,2,0.068139814 +31,2036,3,0.066958314 +31,2036,4,0.065295217 +31,2036,5,0.063176906 +31,2036,6,0.060701882 +31,2036,7,0.057886568 +31,2036,8,0.054828276 +31,2036,9,0.051313945 +31,2036,10,0.047728423 +31,2036,11,0.043234434 +31,2036,12,0.03916391 +31,2036,13,0.035600457 +31,2036,14,0.032244171 +31,2036,15,0.028536913 +31,2036,16,0.02498733 +31,2036,17,0.021924587 +31,2036,18,0.019225736 +31,2036,19,0.016600382 +31,2036,20,0.01417323 +31,2036,21,0.011585405 +31,2036,22,0.009328823 +31,2036,23,0.007437368 +31,2036,24,0.005973258 +31,2036,25,0.003268228 +31,2036,26,0.002412016 +31,2036,27,0.001524683 +31,2036,28,0.002211382 +31,2036,29,0.001961563 +31,2036,30,0.001795271 +32,2036,0,0.071129821 +32,2036,1,0.069677843 +32,2036,2,0.068169251 +32,2036,3,0.067001134 +32,2036,4,0.065355793 +32,2036,5,0.063244878 +32,2036,6,0.06076573 +32,2036,7,0.057931753 +32,2036,8,0.054872855 +32,2036,9,0.051355385 +32,2036,10,0.047772958 +32,2036,11,0.043260689 +32,2036,12,0.03918927 +32,2036,13,0.035610163 +32,2036,14,0.032236361 +32,2036,15,0.028510435 +32,2036,16,0.024935563 +32,2036,17,0.021843715 +32,2036,18,0.019110688 +32,2036,19,0.016446633 +32,2036,20,0.013982571 +32,2036,21,0.011365438 +32,2036,22,0.009090629 +32,2036,23,0.007202078 +32,2036,24,0.005735084 +32,2036,25,0.003525442 +32,2036,26,0.002537695 +32,2036,27,0.001623052 +32,2036,28,0.002414649 +32,2036,29,0.002115596 +32,2036,30,0.001986851 +41,2036,0,0.062843062 +41,2036,1,0.061780621 +41,2036,2,0.060575223 +41,2036,3,0.059560037 +41,2036,4,0.058795681 +41,2036,5,0.057101822 +41,2036,6,0.054868834 +41,2036,7,0.052703852 +41,2036,8,0.049817674 +41,2036,9,0.046988943 +41,2036,10,0.04415569 +41,2036,11,0.040822507 +41,2036,12,0.037619322 +41,2036,13,0.034340247 +41,2036,14,0.032065557 +41,2036,15,0.029959052 +41,2036,16,0.027865073 +41,2036,17,0.025769654 +41,2036,18,0.023739565 +41,2036,19,0.021282133 +41,2036,20,0.019387046 +41,2036,21,0.017219932 +41,2036,22,0.014618624 +41,2036,23,0.012005019 +41,2036,24,0.010177125 +41,2036,25,0.008630003 +41,2036,26,0.006980914 +41,2036,27,0.005365174 +41,2036,28,0.006428003 +41,2036,29,0.007723218 +41,2036,30,0.008819978 +42,2036,0,0.062816532 +42,2036,1,0.061669761 +42,2036,2,0.060403384 +42,2036,3,0.059347754 +42,2036,4,0.058585278 +42,2036,5,0.056786345 +42,2036,6,0.054482931 +42,2036,7,0.0524041 +42,2036,8,0.049637007 +42,2036,9,0.046907016 +42,2036,10,0.044072689 +42,2036,11,0.040771997 +42,2036,12,0.037612128 +42,2036,13,0.034384604 +42,2036,14,0.0321588 +42,2036,15,0.03011808 +42,2036,16,0.028032308 +42,2036,17,0.025918922 +42,2036,18,0.023860036 +42,2036,19,0.021385677 +42,2036,20,0.019483451 +42,2036,21,0.01731362 +42,2036,22,0.014724687 +42,2036,23,0.012094638 +42,2036,24,0.010253397 +42,2036,25,0.011453587 +42,2036,26,0.006423793 +42,2036,27,0.006023754 +42,2036,28,0.00784017 +42,2036,29,0.006982569 +42,2036,30,0.006053481 +43,2036,0,0.062805121 +43,2036,1,0.061703948 +43,2036,2,0.060437794 +43,2036,3,0.059393481 +43,2036,4,0.058585601 +43,2036,5,0.056897304 +43,2036,6,0.054661384 +43,2036,7,0.052521563 +43,2036,8,0.049700517 +43,2036,9,0.046933859 +43,2036,10,0.044140463 +43,2036,11,0.040783238 +43,2036,12,0.037622123 +43,2036,13,0.034390606 +43,2036,14,0.032170659 +43,2036,15,0.030095056 +43,2036,16,0.027973388 +43,2036,17,0.025876314 +43,2036,18,0.023841516 +43,2036,19,0.021378852 +43,2036,20,0.019477007 +43,2036,21,0.01730264 +43,2036,22,0.014690442 +43,2036,23,0.012064101 +43,2036,24,0.010227465 +43,2036,25,0.006701669 +43,2036,26,0.006711945 +43,2036,27,0.007329308 +43,2036,28,0.007458545 +43,2036,29,0.007085713 +43,2036,30,0.00903844 +51,2036,0,0.066965801 +51,2036,1,0.066098025 +51,2036,2,0.065097081 +51,2036,3,0.064309847 +51,2036,4,0.063761655 +51,2036,5,0.061868083 +51,2036,6,0.059209443 +51,2036,7,0.056882492 +51,2036,8,0.053265647 +51,2036,9,0.049914171 +51,2036,10,0.046603846 +51,2036,11,0.042496448 +51,2036,12,0.038554541 +51,2036,13,0.034439377 +51,2036,14,0.031594265 +51,2036,15,0.028912911 +51,2036,16,0.026274859 +51,2036,17,0.023807691 +51,2036,18,0.021392536 +51,2036,19,0.018768647 +51,2036,20,0.016411183 +51,2036,21,0.014002637 +51,2036,22,0.011500259 +51,2036,23,0.00909753 +51,2036,24,0.007389226 +51,2036,25,0.00357036 +51,2036,26,0.002490475 +51,2036,27,0.002917556 +51,2036,28,0.002022895 +51,2036,29,0.006236368 +51,2036,30,0.004143046 +52,2036,0,0.06691941 +52,2036,1,0.066084669 +52,2036,2,0.065096803 +52,2036,3,0.064357376 +52,2036,4,0.063856359 +52,2036,5,0.062120718 +52,2036,6,0.059403057 +52,2036,7,0.056846778 +52,2036,8,0.053357504 +52,2036,9,0.049907769 +52,2036,10,0.046523883 +52,2036,11,0.042388377 +52,2036,12,0.038502354 +52,2036,13,0.034400477 +52,2036,14,0.031517779 +52,2036,15,0.028877053 +52,2036,16,0.026232652 +52,2036,17,0.023839803 +52,2036,18,0.021523658 +52,2036,19,0.018994902 +52,2036,20,0.016670419 +52,2036,21,0.014266117 +52,2036,22,0.011759731 +52,2036,23,0.009314029 +52,2036,24,0.007574669 +52,2036,25,0.00383305 +52,2036,26,0.002077781 +52,2036,27,0.001965839 +52,2036,28,0.003640116 +52,2036,29,0.004207485 +52,2036,30,0.003939355 +53,2036,0,0.066849004 +53,2036,1,0.065900638 +53,2036,2,0.064779043 +53,2036,3,0.063869502 +53,2036,4,0.063359911 +53,2036,5,0.062079067 +53,2036,6,0.05985415 +53,2036,7,0.057222949 +53,2036,8,0.053490196 +53,2036,9,0.049927938 +53,2036,10,0.046489413 +53,2036,11,0.042414935 +53,2036,12,0.03899213 +53,2036,13,0.034875651 +53,2036,14,0.032051836 +53,2036,15,0.029426878 +53,2036,16,0.027029167 +53,2036,17,0.024572901 +53,2036,18,0.022089468 +53,2036,19,0.019419482 +53,2036,20,0.017004146 +53,2036,21,0.014528476 +53,2036,22,0.011957608 +53,2036,23,0.009468973 +53,2036,24,0.007701949 +53,2036,25,0.00264239 +53,2036,26,0.001467468 +53,2036,27,0.001523712 +53,2036,28,0.002395347 +53,2036,29,0.003695586 +53,2036,30,0.002921143 +54,2036,0,0.066933393 +54,2036,1,0.066140841 +54,2036,2,0.065220511 +54,2036,3,0.06457504 +54,2036,4,0.064158916 +54,2036,5,0.062307242 +54,2036,6,0.059513166 +54,2036,7,0.056919122 +54,2036,8,0.053394324 +54,2036,9,0.049878886 +54,2036,10,0.046378244 +54,2036,11,0.042201555 +54,2036,12,0.038281129 +54,2036,13,0.034162231 +54,2036,14,0.031235686 +54,2036,15,0.028550046 +54,2036,16,0.025904319 +54,2036,17,0.023514514 +54,2036,18,0.021215611 +54,2036,19,0.018709119 +54,2036,20,0.016420216 +54,2036,21,0.014051219 +54,2036,22,0.011570182 +54,2036,23,0.009156299 +54,2036,24,0.007437947 +54,2036,25,0.004940418 +54,2036,26,0.003839924 +54,2036,27,0.002842688 +54,2036,28,0.003295943 +54,2036,29,0.003799432 +54,2036,30,0.003451722 +61,2036,0,0.05906893 +61,2036,1,0.057638888 +61,2036,2,0.05603749 +61,2036,3,0.054654672 +61,2036,4,0.053580278 +61,2036,5,0.05189173 +61,2036,6,0.050039631 +61,2036,7,0.048360671 +61,2036,8,0.046274052 +61,2036,9,0.044315591 +61,2036,10,0.042316299 +61,2036,11,0.039833045 +61,2036,12,0.037415736 +61,2036,13,0.035048906 +61,2036,14,0.033518908 +61,2036,15,0.032129632 +61,2036,16,0.030691145 +61,2036,17,0.029017847 +61,2036,18,0.027333874 +61,2036,19,0.024817524 +61,2036,20,0.023246266 +61,2036,21,0.021234066 +61,2036,22,0.018404378 +61,2036,23,0.015381414 +61,2036,24,0.014296527 +61,2036,25,0.006693875 +61,2036,26,0.004710981 +61,2036,27,0.005743646 +61,2036,28,0.004891874 +61,2036,29,0.014957303 +61,2036,30,0.016454867 +62,2036,0,0.059437539 +62,2036,1,0.058309389 +62,2036,2,0.056994924 +62,2036,3,0.055817227 +62,2036,4,0.054807236 +62,2036,5,0.053126346 +62,2036,6,0.051101389 +62,2036,7,0.049031334 +62,2036,8,0.046392005 +62,2036,9,0.043803818 +62,2036,10,0.041220245 +62,2036,11,0.038264121 +62,2036,12,0.035432125 +62,2036,13,0.032728119 +62,2036,14,0.030800271 +62,2036,15,0.028979465 +62,2036,16,0.02713316 +62,2036,17,0.025121333 +62,2036,18,0.023173384 +62,2036,19,0.020720137 +62,2036,20,0.019271597 +62,2036,21,0.017487123 +62,2036,22,0.014951535 +62,2036,23,0.012444693 +62,2036,24,0.011269708 +62,2036,25,0.011502931 +62,2036,26,0.008547315 +62,2036,27,0.010650901 +62,2036,28,0.007864961 +62,2036,29,0.025689369 +62,2036,30,0.027926466 +11,2037,0,0.07039889 +11,2037,1,0.069716829 +11,2037,2,0.067761299 +11,2037,3,0.063363774 +11,2037,4,0.059062858 +11,2037,5,0.055352358 +11,2037,6,0.051775714 +11,2037,7,0.048437607 +11,2037,8,0.045233174 +11,2037,9,0.042156339 +11,2037,10,0.039012591 +11,2037,11,0.03575422 +11,2037,12,0.032989924 +11,2037,13,0.030086418 +11,2037,14,0.027924489 +11,2037,15,0.025898174 +11,2037,16,0.024007802 +11,2037,17,0.022318115 +11,2037,18,0.020715871 +11,2037,19,0.019275977 +11,2037,20,0.018263421 +11,2037,21,0.016952063 +11,2037,22,0.01542107 +11,2037,23,0.014145683 +11,2037,24,0.012591479 +11,2037,25,0.011254429 +11,2037,26,0.009028256 +11,2037,27,0.008153157 +11,2037,28,0.008444301 +11,2037,29,0.014963097 +11,2037,30,0.019540641 +21,2037,0,0.070398888 +21,2037,1,0.069453835 +21,2037,2,0.068636509 +21,2037,3,0.067855756 +21,2037,4,0.066634573 +21,2037,5,0.065590501 +21,2037,6,0.064153225 +21,2037,7,0.062439033 +21,2037,8,0.060391638 +21,2037,9,0.05803058 +21,2037,10,0.055081322 +21,2037,11,0.05145523 +21,2037,12,0.04807782 +21,2037,13,0.042199845 +21,2037,14,0.034977221 +21,2037,15,0.028095699 +21,2037,16,0.022000027 +21,2037,17,0.016963558 +21,2037,18,0.012872796 +21,2037,19,0.00967995 +21,2037,20,0.007338344 +21,2037,21,0.005411151 +21,2037,22,0.003891451 +21,2037,23,0.002806681 +21,2037,24,0.001963702 +21,2037,25,0.001393409 +21,2037,26,0.00063234 +21,2037,27,0.000525262 +21,2037,28,0.000356317 +21,2037,29,0.000338631 +21,2037,30,0.000354709 +31,2037,0,0.0712588 +31,2037,1,0.069711995 +31,2037,2,0.068269481 +31,2037,3,0.066770759 +31,2037,4,0.065126325 +31,2037,5,0.063078082 +31,2037,6,0.060581011 +31,2037,7,0.05774197 +31,2037,8,0.054588654 +31,2037,9,0.051247047 +31,2037,10,0.047540945 +31,2037,11,0.043840028 +31,2037,12,0.03938046 +31,2037,13,0.035393403 +31,2037,14,0.031909471 +31,2037,15,0.028219772 +31,2037,16,0.024763959 +31,2037,17,0.021512152 +31,2037,18,0.018742571 +31,2037,19,0.016334493 +31,2037,20,0.014021277 +31,2037,21,0.011915894 +31,2037,22,0.009693445 +31,2037,23,0.007780262 +31,2037,24,0.006175755 +31,2037,25,0.00494714 +31,2037,26,0.002701076 +31,2037,27,0.001986954 +31,2037,28,0.001254761 +31,2037,29,0.001815128 +31,2037,30,0.001696931 +32,2037,0,0.071266455 +32,2037,1,0.069727332 +32,2037,2,0.068294602 +32,2037,3,0.06680678 +32,2037,4,0.065174974 +32,2037,5,0.063143383 +32,2037,6,0.060652704 +32,2037,7,0.057808914 +32,2037,8,0.054637133 +32,2037,9,0.051294223 +32,2037,10,0.04758445 +32,2037,11,0.043885649 +32,2037,12,0.039408607 +32,2037,13,0.035420125 +32,2037,14,0.0319216 +32,2037,15,0.028215967 +32,2037,16,0.024743639 +32,2037,17,0.02146989 +32,2037,18,0.018675441 +32,2037,19,0.01623849 +32,2037,20,0.013892907 +32,2037,21,0.011756864 +32,2037,22,0.009510421 +32,2037,23,0.007582422 +32,2037,24,0.00598102 +32,2037,25,0.004750391 +32,2037,26,0.002913967 +32,2037,27,0.002090709 +32,2037,28,0.001335859 +32,2037,29,0.001982185 +32,2037,30,0.001832888 +41,2037,0,0.063089959 +41,2037,1,0.061990007 +41,2037,2,0.060941988 +41,2037,3,0.059752953 +41,2037,4,0.058751548 +41,2037,5,0.057280751 +41,2037,6,0.054934371 +41,2037,7,0.052786142 +41,2037,8,0.050060791 +41,2037,9,0.047319352 +41,2037,10,0.04463248 +41,2037,11,0.041402979 +41,2037,12,0.03827759 +41,2037,13,0.034815454 +41,2037,14,0.031780777 +41,2037,15,0.029675626 +41,2037,16,0.027360874 +41,2037,17,0.025448493 +41,2037,18,0.023220624 +41,2037,19,0.021391343 +41,2037,20,0.018917526 +41,2037,21,0.017232998 +41,2037,22,0.015306666 +41,2037,23,0.012816158 +41,2037,24,0.010524809 +41,2037,25,0.008922293 +41,2037,26,0.007460716 +41,2037,27,0.006035063 +41,2037,28,0.004638241 +41,2037,29,0.005478699 +41,2037,30,0.007755774 +42,2037,0,0.062974064 +42,2037,1,0.061850011 +42,2037,2,0.060720884 +42,2037,3,0.059473992 +42,2037,4,0.058434605 +42,2037,5,0.056970921 +42,2037,6,0.054530512 +42,2037,7,0.052318601 +42,2037,8,0.049684633 +42,2037,9,0.047061136 +42,2037,10,0.044472815 +42,2037,11,0.041249238 +42,2037,12,0.03816 +42,2037,13,0.034744852 +42,2037,14,0.031763371 +42,2037,15,0.029707247 +42,2037,16,0.027455581 +42,2037,17,0.025554196 +42,2037,18,0.023312224 +42,2037,19,0.021460403 +42,2037,20,0.018974645 +42,2037,21,0.017286877 +42,2037,22,0.015361674 +42,2037,23,0.01288543 +42,2037,24,0.0105839 +42,2037,25,0.008972648 +42,2037,26,0.00988354 +42,2037,27,0.005543226 +42,2037,28,0.005198024 +42,2037,29,0.006670038 +42,2037,30,0.006744124 +43,2037,0,0.06310762 +43,2037,1,0.061969924 +43,2037,2,0.060883395 +43,2037,3,0.059634078 +43,2037,4,0.058603653 +43,2037,5,0.057092062 +43,2037,6,0.054752938 +43,2037,7,0.052601287 +43,2037,8,0.049901608 +43,2037,9,0.047221286 +43,2037,10,0.044592638 +43,2037,11,0.041400288 +43,2037,12,0.038251474 +43,2037,13,0.034827793 +43,2037,14,0.031836292 +43,2037,15,0.029781228 +43,2037,16,0.027492777 +43,2037,17,0.025554567 +43,2037,18,0.02332326 +43,2037,19,0.021489224 +43,2037,20,0.019008819 +43,2037,21,0.017317809 +43,2037,22,0.01538449 +43,2037,23,0.012882727 +43,2037,24,0.010579567 +43,2037,25,0.008968936 +43,2037,26,0.005795275 +43,2037,27,0.005804162 +43,2037,28,0.006338027 +43,2037,29,0.006358827 +43,2037,30,0.007243502 +51,2037,0,0.067165873 +51,2037,1,0.066324723 +51,2037,2,0.065465255 +51,2037,3,0.064473893 +51,2037,4,0.063694196 +51,2037,5,0.062064731 +51,2037,6,0.059167301 +51,2037,7,0.056624721 +51,2037,8,0.053430054 +51,2037,9,0.05003273 +51,2037,10,0.04688467 +51,2037,11,0.042981112 +51,2037,12,0.039193001 +51,2037,13,0.034900535 +51,2037,14,0.031175385 +51,2037,15,0.028599919 +51,2037,16,0.025680005 +51,2037,17,0.023336927 +51,2037,18,0.020739935 +51,2037,19,0.018635987 +51,2037,20,0.016030377 +51,2037,21,0.014016857 +51,2037,22,0.011959708 +51,2037,23,0.009626449 +51,2037,24,0.007615212 +51,2037,25,0.006185253 +51,2037,26,0.002927778 +51,2037,27,0.002042247 +51,2037,28,0.002392463 +51,2037,29,0.00162435 +51,2037,30,0.005007697 +52,2037,0,0.067148429 +52,2037,1,0.066261563 +52,2037,2,0.065435028 +52,2037,3,0.064456874 +52,2037,4,0.063724715 +52,2037,5,0.062140772 +52,2037,6,0.059393478 +52,2037,7,0.056795129 +52,2037,8,0.05338264 +52,2037,9,0.050105996 +52,2037,10,0.046866481 +52,2037,11,0.042896222 +52,2037,12,0.039083178 +52,2037,13,0.034844242 +52,2037,14,0.031132085 +52,2037,15,0.028523272 +52,2037,16,0.025641495 +52,2037,17,0.023293388 +52,2037,18,0.020762515 +52,2037,19,0.018745343 +52,2037,20,0.016219409 +52,2037,21,0.014234574 +52,2037,22,0.012181583 +52,2037,23,0.009841087 +52,2037,24,0.007794411 +52,2037,25,0.006338833 +52,2037,26,0.003142374 +52,2037,27,0.001703386 +52,2037,28,0.001611615 +52,2037,29,0.002922192 +52,2037,30,0.003377661 +53,2037,0,0.067077614 +53,2037,1,0.066122043 +53,2037,2,0.065183991 +53,2037,3,0.064074593 +53,2037,4,0.063174943 +53,2037,5,0.061592638 +53,2037,6,0.059291061 +53,2037,7,0.057166067 +53,2037,8,0.053679218 +53,2037,9,0.050177628 +53,2037,10,0.046835976 +53,2037,11,0.042819235 +53,2037,12,0.039066423 +53,2037,13,0.03525027 +53,2037,14,0.031528827 +53,2037,15,0.028975998 +53,2037,16,0.026102158 +53,2037,17,0.023975346 +53,2037,18,0.021378415 +53,2037,19,0.019217829 +53,2037,20,0.016564462 +53,2037,21,0.014504225 +53,2037,22,0.012392524 +53,2037,23,0.009996127 +53,2037,24,0.007915718 +53,2037,25,0.00643855 +53,2037,26,0.002163974 +53,2037,27,0.001201777 +53,2037,28,0.001247837 +53,2037,29,0.001920895 +53,2037,30,0.002963593 +54,2037,0,0.067123526 +54,2037,1,0.066250829 +54,2037,2,0.06546636 +54,2037,3,0.064555415 +54,2037,4,0.063916526 +54,2037,5,0.062412046 +54,2037,6,0.05954972 +54,2037,7,0.056879302 +54,2037,8,0.053430752 +54,2037,9,0.050121977 +54,2037,10,0.046821987 +54,2037,11,0.042746079 +54,2037,12,0.038896493 +54,2037,13,0.034631187 +54,2037,14,0.030905009 +54,2037,15,0.028257497 +54,2037,16,0.025341726 +54,2037,17,0.022993313 +54,2037,18,0.020471621 +54,2037,19,0.018470207 +54,2037,20,0.015969459 +54,2037,21,0.01401573 +54,2037,22,0.011993636 +54,2037,23,0.009678873 +54,2037,24,0.007659573 +54,2037,25,0.00622211 +54,2037,26,0.004048703 +54,2037,27,0.003146841 +54,2037,28,0.0023296 +54,2037,29,0.002644917 +54,2037,30,0.003048955 +61,2037,0,0.059418368 +61,2037,1,0.057962631 +61,2037,2,0.056559373 +61,2037,3,0.054987967 +61,2037,4,0.053631047 +61,2037,5,0.052125679 +61,2037,6,0.05004609 +61,2037,7,0.048259865 +61,2037,8,0.046233468 +61,2037,9,0.044238631 +61,2037,10,0.042366316 +61,2037,11,0.040098698 +61,2037,12,0.03774558 +61,2037,13,0.035139944 +61,2037,14,0.032917076 +61,2037,15,0.031480139 +61,2037,16,0.029904862 +61,2037,17,0.028565982 +61,2037,18,0.026764245 +61,2037,19,0.025211053 +61,2037,20,0.022681189 +61,2037,21,0.021245187 +61,2037,22,0.019406201 +61,2037,23,0.016665149 +61,2037,24,0.013927858 +61,2037,25,0.012945494 +61,2037,26,0.006004942 +61,2037,27,0.004226127 +61,2037,28,0.00515251 +61,2037,29,0.004347217 +61,2037,30,0.019741194 +62,2037,0,0.059808203 +62,2037,1,0.058706994 +62,2037,2,0.05759271 +62,2037,3,0.056294401 +62,2037,4,0.05513118 +62,2037,5,0.053669148 +62,2037,6,0.051572952 +62,2037,7,0.049607204 +62,2037,8,0.047182168 +62,2037,9,0.044642379 +62,2037,10,0.042151803 +62,2037,11,0.03931635 +62,2037,12,0.036496765 +62,2037,13,0.033495311 +62,2037,14,0.030939113 +62,2037,15,0.029116646 +62,2037,16,0.027149789 +62,2037,17,0.025420054 +62,2037,18,0.023322361 +62,2037,19,0.021513907 +62,2037,20,0.019060751 +62,2037,21,0.017728218 +62,2037,22,0.016086656 +62,2037,23,0.013627427 +62,2037,24,0.011342591 +62,2037,25,0.010271663 +62,2037,26,0.010386751 +62,2037,27,0.007717932 +62,2037,28,0.009617397 +62,2037,29,0.007035139 +62,2037,30,0.033996062 +11,2038,0,0.070457421 +11,2038,1,0.069831626 +11,2038,2,0.067761648 +11,2038,3,0.063345784 +11,2038,4,0.059234813 +11,2038,5,0.055214158 +11,2038,6,0.051745444 +11,2038,7,0.048401865 +11,2038,8,0.045281277 +11,2038,9,0.042285655 +11,2038,10,0.039409314 +11,2038,11,0.036470422 +11,2038,12,0.033424375 +11,2038,13,0.030840209 +11,2038,14,0.028125903 +11,2038,15,0.026104852 +11,2038,16,0.024210577 +11,2038,17,0.022443387 +11,2038,18,0.020863804 +11,2038,19,0.019365967 +11,2038,20,0.018019901 +11,2038,21,0.017073326 +11,2038,22,0.015847419 +11,2038,23,0.01441619 +11,2038,24,0.013223911 +11,2038,25,0.011770983 +11,2038,26,0.010521059 +11,2038,27,0.008439949 +11,2038,28,0.007621875 +11,2038,29,0.007894047 +11,2038,30,0.0203528 +21,2038,0,0.070457426 +21,2038,1,0.069566758 +21,2038,2,0.068632875 +21,2038,3,0.067817384 +21,2038,4,0.066767439 +21,2038,5,0.065322734 +21,2038,6,0.064000096 +21,2038,7,0.062261211 +21,2038,8,0.060234518 +21,2038,9,0.057880713 +21,2038,10,0.055234082 +21,2038,11,0.052068994 +21,2038,12,0.048295081 +21,2038,13,0.04283933 +21,2038,14,0.034849753 +21,2038,15,0.027983869 +21,2038,16,0.021882434 +21,2038,17,0.0167711 +21,2038,18,0.012711207 +21,2038,19,0.009522617 +21,2038,20,0.00708236 +21,2038,21,0.005328121 +21,2038,22,0.00390726 +21,2038,23,0.002794393 +21,2038,24,0.002007116 +21,2038,25,0.00140406 +21,2038,26,0.000992008 +21,2038,27,0.000450036 +21,2038,28,0.00037329 +21,2038,29,0.000252819 +21,2038,30,0.000308917 +31,2038,0,0.071441977 +31,2038,1,0.069854557 +31,2038,2,0.068328798 +31,2038,3,0.066905666 +31,2038,4,0.06494896 +31,2038,5,0.062917544 +31,2038,6,0.060486361 +31,2038,7,0.057624597 +31,2038,8,0.054447456 +31,2038,9,0.051016049 +31,2038,10,0.047470103 +31,2038,11,0.043657569 +31,2038,12,0.039920801 +31,2038,13,0.035577467 +31,2038,14,0.031712014 +31,2038,15,0.027912512 +31,2038,16,0.024474946 +31,2038,17,0.021306819 +31,2038,18,0.018377975 +31,2038,19,0.015912987 +31,2038,20,0.013786671 +31,2038,21,0.011779241 +31,2038,22,0.009962139 +31,2038,23,0.008077852 +31,2038,24,0.006455109 +31,2038,25,0.005110514 +31,2038,26,0.004085117 +31,2038,27,0.002223112 +31,2038,28,0.001633742 +31,2038,29,0.001028991 +31,2038,30,0.001562352 +32,2038,0,0.071445723 +32,2038,1,0.069865724 +32,2038,2,0.068347415 +32,2038,3,0.066933794 +32,2038,4,0.064987406 +32,2038,5,0.062967845 +32,2038,6,0.060552154 +32,2038,7,0.057695818 +32,2038,8,0.05451344 +32,2038,9,0.051064033 +32,2038,10,0.047516294 +32,2038,11,0.043699811 +32,2038,12,0.039964439 +32,2038,13,0.035604764 +32,2038,14,0.031737621 +32,2038,15,0.027924586 +32,2038,16,0.02447293 +32,2038,17,0.021290453 +32,2038,18,0.018342832 +32,2038,19,0.015856823 +32,2038,20,0.013706362 +32,2038,21,0.01167201 +32,2038,22,0.009829699 +32,2038,23,0.007925748 +32,2038,24,0.006291296 +32,2038,25,0.004949628 +32,2038,26,0.003922856 +32,2038,27,0.002398457 +32,2038,28,0.001719143 +32,2038,29,0.001095555 +32,2038,30,0.001705331 +41,2038,0,0.063523986 +41,2038,1,0.062279862 +41,2038,2,0.061194034 +41,2038,3,0.060159472 +41,2038,4,0.058985704 +41,2038,5,0.057247144 +41,2038,6,0.055082772 +41,2038,7,0.052826427 +41,2038,8,0.050086771 +41,2038,9,0.047500789 +41,2038,10,0.044899541 +41,2038,11,0.041780296 +41,2038,12,0.038757172 +41,2038,13,0.035342862 +41,2038,14,0.032146166 +41,2038,15,0.029344157 +41,2038,16,0.027021573 +41,2038,17,0.024913841 +41,2038,18,0.022847624 +41,2038,19,0.020847446 +41,2038,20,0.018932042 +41,2038,21,0.016742632 +41,2038,22,0.015251769 +41,2038,23,0.0133515 +41,2038,24,0.011179112 +41,2038,25,0.009180444 +41,2038,26,0.00766872 +41,2038,27,0.006412493 +41,2038,28,0.005187144 +41,2038,29,0.003927362 +41,2038,30,0.005364561 +42,2038,0,0.063497181 +42,2038,1,0.062139223 +42,2038,2,0.061030071 +42,2038,3,0.059915913 +42,2038,4,0.058685551 +42,2038,5,0.056914291 +42,2038,6,0.054761714 +42,2038,7,0.052415938 +42,2038,8,0.049622191 +42,2038,9,0.047123973 +42,2038,10,0.044635687 +42,2038,11,0.041613267 +42,2038,12,0.038596962 +42,2038,13,0.03521942 +42,2038,14,0.03206744 +42,2038,15,0.02931571 +42,2038,16,0.027038951 +42,2038,17,0.024989529 +42,2038,18,0.022932843 +42,2038,19,0.020920853 +42,2038,20,0.018985147 +42,2038,21,0.016786098 +42,2038,22,0.015292998 +42,2038,23,0.013393828 +42,2038,24,0.011234793 +42,2038,25,0.009228091 +42,2038,26,0.007708746 +42,2038,27,0.008491329 +42,2038,28,0.004762398 +42,2038,29,0.004399493 +42,2038,30,0.00627602 +43,2038,0,0.063507892 +43,2038,1,0.062281512 +43,2038,2,0.061158709 +43,2038,3,0.060086403 +43,2038,4,0.058853441 +43,2038,5,0.057088569 +43,2038,6,0.054887414 +43,2038,7,0.052638617 +43,2038,8,0.049898724 +43,2038,9,0.04733775 +43,2038,10,0.044795138 +43,2038,11,0.041732424 +43,2038,12,0.038744834 +43,2038,13,0.0353098 +43,2038,14,0.032149412 +43,2038,15,0.029387968 +43,2038,16,0.02711086 +43,2038,17,0.025027605 +43,2038,18,0.022937044 +43,2038,19,0.020934287 +43,2038,20,0.01901385 +43,2038,21,0.016819167 +43,2038,22,0.015322947 +43,2038,23,0.013415983 +43,2038,24,0.011234331 +43,2038,25,0.009225869 +43,2038,26,0.007706858 +43,2038,27,0.004979783 +43,2038,28,0.004987419 +43,2038,29,0.005365271 +43,2038,30,0.006060337 +51,2038,0,0.067579293 +51,2038,1,0.066630192 +51,2038,2,0.06579575 +51,2038,3,0.064943137 +51,2038,4,0.063959681 +51,2038,5,0.062068858 +51,2038,6,0.059392214 +51,2038,7,0.056619547 +51,2038,8,0.053193122 +51,2038,9,0.050192059 +51,2038,10,0.047000622 +51,2038,11,0.04322087 +51,2038,12,0.039622356 +51,2038,13,0.03544273 +51,2038,14,0.031560999 +51,2038,15,0.028192298 +51,2038,16,0.025361562 +51,2038,17,0.022772268 +51,2038,18,0.020285112 +51,2038,19,0.018027734 +51,2038,20,0.015872004 +51,2038,21,0.013652843 +51,2038,22,0.011937957 +51,2038,23,0.009976112 +51,2038,24,0.008029839 +51,2038,25,0.006352179 +51,2038,26,0.005050883 +51,2038,27,0.002390826 +51,2038,28,0.001667701 +51,2038,29,0.001911718 +51,2038,30,0.001297951 +52,2038,0,0.067487349 +52,2038,1,0.066522257 +52,2038,2,0.065643662 +52,2038,3,0.064824834 +52,2038,4,0.063855801 +52,2038,5,0.06201411 +52,2038,6,0.059384076 +52,2038,7,0.056758657 +52,2038,8,0.053280613 +52,2038,9,0.050079291 +52,2038,10,0.047005407 +52,2038,11,0.043145322 +52,2038,12,0.039490298 +52,2038,13,0.03529533 +52,2038,14,0.031467221 +52,2038,15,0.028114837 +52,2038,16,0.02525918 +52,2038,17,0.022707183 +52,2038,18,0.02021972 +52,2038,19,0.018022807 +52,2038,20,0.01594342 +52,2038,21,0.013795045 +52,2038,22,0.012106889 +52,2038,23,0.010147362 +52,2038,24,0.008197709 +52,2038,25,0.006492811 +52,2038,26,0.005169255 +52,2038,27,0.002562574 +52,2038,28,0.001389094 +52,2038,29,0.001286023 +52,2038,30,0.002331826 +53,2038,0,0.067462932 +53,2038,1,0.06642806 +53,2038,2,0.065481743 +53,2038,3,0.064552774 +53,2038,4,0.063454119 +53,2038,5,0.061456853 +53,2038,6,0.058838962 +53,2038,7,0.056640284 +53,2038,8,0.053609194 +53,2038,9,0.050339297 +53,2038,10,0.047055576 +53,2038,11,0.043101639 +53,2038,12,0.039405161 +53,2038,13,0.035267434 +53,2038,14,0.03182238 +53,2038,15,0.028462826 +53,2038,16,0.025650814 +53,2038,17,0.023106766 +53,2038,18,0.02080416 +53,2038,19,0.018550721 +53,2038,20,0.016339368 +53,2038,21,0.014083425 +53,2038,22,0.012331771 +53,2038,23,0.010319343 +53,2038,24,0.008323846 +53,2038,25,0.006591475 +53,2038,26,0.005248673 +53,2038,27,0.00176406 +53,2038,28,0.000979682 +53,2038,29,0.000995378 +53,2038,30,0.001532265 +54,2038,0,0.067473546 +54,2038,1,0.066483986 +54,2038,2,0.065619604 +54,2038,3,0.064842609 +54,2038,4,0.063940343 +54,2038,5,0.062188051 +54,2038,6,0.059631116 +54,2038,7,0.056896329 +54,2038,8,0.053348663 +54,2038,9,0.050114174 +54,2038,10,0.047010782 +54,2038,11,0.043095545 +54,2038,12,0.039344028 +54,2038,13,0.035119553 +54,2038,14,0.031268418 +54,2038,15,0.02790406 +54,2038,16,0.025018701 +54,2038,17,0.022437128 +54,2038,18,0.019955159 +54,2038,19,0.017766663 +54,2038,20,0.015706196 +54,2038,21,0.013579678 +54,2038,22,0.011918319 +54,2038,23,0.009988758 +54,2038,24,0.008060935 +54,2038,25,0.006379185 +54,2038,26,0.00507303 +54,2038,27,0.003301001 +54,2038,28,0.002565693 +54,2038,29,0.001858574 +54,2038,30,0.002110137 +61,2038,0,0.059888525 +61,2038,1,0.058305377 +61,2038,2,0.056876908 +61,2038,3,0.055499935 +61,2038,4,0.053957964 +61,2038,5,0.052185873 +61,2038,6,0.050292847 +61,2038,7,0.048286381 +61,2038,8,0.046166499 +61,2038,9,0.044228001 +61,2038,10,0.042319694 +61,2038,11,0.040180546 +61,2038,12,0.038029919 +61,2038,13,0.035488117 +61,2038,14,0.033038317 +61,2038,15,0.030948393 +61,2038,16,0.029338781 +61,2038,17,0.027870658 +61,2038,18,0.026388177 +61,2038,19,0.0247238 +61,2038,20,0.023081907 +61,2038,21,0.020765698 +61,2038,22,0.01945097 +61,2038,23,0.017607867 +61,2038,24,0.015120823 +61,2038,25,0.012637191 +61,2038,26,0.01163951 +61,2038,27,0.005399144 +61,2038,28,0.003799782 +61,2038,29,0.00459038 +61,2038,30,0.011891931 +62,2038,0,0.060320625 +62,2038,1,0.059111348 +62,2038,2,0.058022969 +62,2038,3,0.056921668 +62,2038,4,0.055638487 +62,2038,5,0.054032639 +62,2038,6,0.052155656 +62,2038,7,0.050118574 +62,2038,8,0.047797789 +62,2038,9,0.045461206 +62,2038,10,0.043014055 +62,2038,11,0.040265538 +62,2038,12,0.03755697 +62,2038,13,0.034561568 +62,2038,14,0.031719263 +62,2038,15,0.029298604 +62,2038,16,0.027331847 +62,2038,17,0.025485555 +62,2038,18,0.023651513 +62,2038,19,0.021699762 +62,2038,20,0.019839111 +62,2038,21,0.017576927 +62,2038,22,0.016348127 +62,2038,23,0.014701248 +62,2038,24,0.012453812 +62,2038,25,0.010365749 +62,2038,26,0.009302058 +62,2038,27,0.009406283 +62,2038,28,0.00698939 +62,2038,29,0.008629974 +62,2038,30,0.020221873 +11,2039,0,0.070540378 +11,2039,1,0.069930383 +11,2039,2,0.067909712 +11,2039,3,0.063374581 +11,2039,4,0.059244611 +11,2039,5,0.055399796 +11,2039,6,0.051639448 +11,2039,7,0.048395308 +11,2039,8,0.0452682 +11,2039,9,0.042349648 +11,2039,10,0.03954797 +11,2039,11,0.036857852 +11,2039,12,0.034109231 +11,2039,13,0.031260393 +11,2039,14,0.028843533 +11,2039,15,0.026304958 +11,2039,16,0.024414755 +11,2039,17,0.02264312 +11,2039,18,0.020990343 +11,2039,19,0.019513027 +11,2039,20,0.018112163 +11,2039,21,0.016853245 +11,2039,22,0.015967954 +11,2039,23,0.014821415 +11,2039,24,0.013482848 +11,2039,25,0.01236776 +11,2039,26,0.011008899 +11,2039,27,0.009839898 +11,2039,28,0.007893525 +11,2039,29,0.007128415 +11,2039,30,0.013986607 +21,2039,0,0.070540376 +21,2039,1,0.069662024 +21,2039,2,0.06878141 +21,2039,3,0.067850148 +21,2039,4,0.066762168 +21,2039,5,0.06548196 +21,2039,6,0.063763493 +21,2039,7,0.062132627 +21,2039,8,0.060077991 +21,2039,9,0.05773999 +21,2039,10,0.055096191 +21,2039,11,0.052213504 +21,2039,12,0.048866926 +21,2039,13,0.043000657 +21,2039,14,0.035314752 +21,2039,15,0.027819466 +21,2039,16,0.021737886 +21,2039,17,0.016632068 +21,2039,18,0.012526451 +21,2039,19,0.009370851 +21,2039,20,0.006942149 +21,2039,21,0.005123106 +21,2039,22,0.003832633 +21,2039,23,0.002794793 +21,2039,24,0.001990393 +21,2039,25,0.001429399 +21,2039,26,0.000995548 +21,2039,27,0.000703153 +21,2039,28,0.000318527 +21,2039,29,0.000263776 +21,2039,30,0.000235582 +31,2039,0,0.07138187 +31,2039,1,0.070067908 +31,2039,2,0.06850148 +31,2039,3,0.066995944 +31,2039,4,0.065107288 +31,2039,5,0.062768649 +31,2039,6,0.060350133 +31,2039,7,0.057547419 +31,2039,8,0.054344769 +31,2039,9,0.050887551 +31,2039,10,0.047255602 +31,2039,11,0.043588629 +31,2039,12,0.039748067 +31,2039,13,0.036057043 +31,2039,14,0.031866913 +31,2039,15,0.027724827 +31,2039,16,0.024193432 +31,2039,17,0.021043464 +31,2039,18,0.018188608 +31,2039,19,0.015590534 +31,2039,20,0.013419028 +31,2039,21,0.01157137 +31,2039,22,0.009838254 +31,2039,23,0.008293371 +31,2039,24,0.006694944 +31,2039,25,0.005335909 +31,2039,26,0.004215371 +31,2039,27,0.003358425 +31,2039,28,0.001825826 +31,2039,29,0.001338212 +31,2039,30,0.000899163 +32,2039,0,0.071385788 +32,2039,1,0.070075428 +32,2039,2,0.068516192 +32,2039,3,0.067017876 +32,2039,4,0.065138235 +32,2039,5,0.062809252 +32,2039,6,0.060401696 +32,2039,7,0.057613178 +32,2039,8,0.054414922 +32,2039,9,0.050952017 +32,2039,10,0.047302645 +32,2039,11,0.043633439 +32,2039,12,0.039788711 +32,2039,13,0.036098439 +32,2039,14,0.031893113 +32,2039,15,0.027748737 +32,2039,16,0.024205225 +32,2039,17,0.021042885 +32,2039,18,0.018175635 +32,2039,19,0.015561576 +32,2039,20,0.013372401 +32,2039,21,0.011504597 +32,2039,22,0.009749228 +32,2039,23,0.008183565 +32,2039,24,0.006569241 +32,2039,25,0.005200783 +32,2039,26,0.00408289 +32,2039,27,0.003225205 +32,2039,28,0.001969944 +32,2039,29,0.001408242 +32,2039,30,0.000958921 +41,2039,0,0.063563931 +41,2039,1,0.062734971 +41,2039,2,0.0615063 +41,2039,3,0.060433958 +41,2039,4,0.059412246 +41,2039,5,0.05746013 +41,2039,6,0.054996978 +41,2039,7,0.052917679 +41,2039,8,0.050039892 +41,2039,9,0.047444749 +41,2039,10,0.044995174 +41,2039,11,0.041927565 +41,2039,12,0.039014787 +41,2039,13,0.035670767 +41,2039,14,0.032528354 +41,2039,15,0.029586225 +41,2039,16,0.026612887 +41,2039,17,0.024506482 +41,2039,18,0.022260023 +41,2039,19,0.020413899 +41,2039,20,0.018346533 +41,2039,21,0.016660905 +41,2039,22,0.014734143 +41,2039,23,0.013217103 +41,2039,24,0.01157034 +41,2039,25,0.00968776 +41,2039,26,0.007832313 +41,2039,27,0.006542583 +41,2039,28,0.005470831 +41,2039,29,0.004355692 +41,2039,30,0.003547767 +42,2039,0,0.063632727 +42,2039,1,0.062776369 +42,2039,2,0.061433826 +42,2039,3,0.060337266 +42,2039,4,0.059235755 +42,2039,5,0.057229613 +42,2039,6,0.054736386 +42,2039,7,0.05266618 +42,2039,8,0.049704793 +42,2039,9,0.047055549 +42,2039,10,0.044686548 +42,2039,11,0.041726287 +42,2039,12,0.038900872 +42,2039,13,0.035561763 +42,2039,14,0.032449825 +42,2039,15,0.029545711 +42,2039,16,0.026615863 +42,2039,17,0.024548784 +42,2039,18,0.022351814 +42,2039,19,0.020512217 +42,2039,20,0.01843106 +42,2039,21,0.016725723 +42,2039,22,0.014788383 +42,2039,23,0.013267175 +42,2039,24,0.011619583 +42,2039,25,0.009746549 +42,2039,26,0.007881485 +42,2039,27,0.00658385 +42,2039,28,0.007252234 +42,2039,29,0.004003358 +42,2039,30,0.003990997 +43,2039,0,0.063607432 +43,2039,1,0.062761999 +43,2039,2,0.061550023 +43,2039,3,0.060440407 +43,2039,4,0.059380695 +43,2039,5,0.057370522 +43,2039,6,0.054882169 +43,2039,7,0.052766085 +43,2039,8,0.049896111 +43,2039,9,0.047298968 +43,2039,10,0.044871423 +43,2039,11,0.041858698 +43,2039,12,0.038996754 +43,2039,13,0.035683815 +43,2039,14,0.032520165 +43,2039,15,0.029609462 +43,2039,16,0.02667086 +43,2039,17,0.024604285 +43,2039,18,0.022376972 +43,2039,19,0.020507819 +43,2039,20,0.018435564 +43,2039,21,0.016744351 +43,2039,22,0.014811626 +43,2039,23,0.013287872 +43,2039,24,0.011634177 +43,2039,25,0.009742274 +43,2039,26,0.007876455 +43,2039,27,0.00657962 +43,2039,28,0.004251419 +43,2039,29,0.004190848 +43,2039,30,0.004790884 +51,2039,0,0.06747126 +51,2039,1,0.066965575 +51,2039,2,0.066025093 +51,2039,3,0.065198229 +51,2039,4,0.064353359 +51,2039,5,0.062212296 +51,2039,6,0.059241078 +51,2039,7,0.056686378 +51,2039,8,0.053007367 +51,2039,9,0.049799538 +51,2039,10,0.046989936 +51,2039,11,0.043144871 +51,2039,12,0.039675196 +51,2039,13,0.035649231 +51,2039,14,0.031888717 +51,2039,15,0.028396225 +51,2039,16,0.024851131 +51,2039,17,0.022355875 +51,2039,18,0.019658112 +51,2039,19,0.01751108 +51,2039,20,0.015233601 +51,2039,21,0.01341199 +51,2039,22,0.011536779 +51,2039,23,0.009869952 +51,2039,24,0.008247956 +51,2039,25,0.006638835 +51,2039,26,0.005135938 +51,2039,27,0.0040838 +51,2039,28,0.001933059 +51,2039,29,0.001317973 +51,2039,30,0.001510818 +52,2039,0,0.067536173 +52,2039,1,0.066938805 +52,2039,2,0.065981557 +52,2039,3,0.065110103 +52,2039,4,0.064297931 +52,2039,5,0.06217101 +52,2039,6,0.059245769 +52,2039,7,0.056733141 +52,2039,8,0.053188725 +52,2039,9,0.049929438 +52,2039,10,0.046929469 +52,2039,11,0.043190777 +52,2039,12,0.03964395 +52,2039,13,0.035564599 +52,2039,14,0.031786649 +52,2039,15,0.028339089 +52,2039,16,0.024806693 +52,2039,17,0.022287049 +52,2039,18,0.019620786 +52,2039,19,0.017471423 +52,2039,20,0.01524409 +52,2039,21,0.013485299 +52,2039,22,0.011668155 +52,2039,23,0.01001925 +52,2039,24,0.008397612 +52,2039,25,0.006784146 +52,2039,26,0.005254695 +52,2039,27,0.004183528 +52,2039,28,0.002073916 +52,2039,29,0.001098848 +52,2039,30,0.001017313 +53,2039,0,0.067497231 +53,2039,1,0.066876002 +53,2039,2,0.065850134 +53,2039,3,0.064912049 +53,2039,4,0.063991162 +53,2039,5,0.061744303 +53,2039,6,0.058679533 +53,2039,7,0.056179948 +53,2039,8,0.053047191 +53,2039,9,0.050208385 +53,2039,10,0.04714592 +53,2039,11,0.043211943 +53,2039,12,0.039580975 +53,2039,13,0.035467463 +53,2039,14,0.031743212 +53,2039,15,0.028642417 +53,2039,16,0.025099255 +53,2039,17,0.02261955 +53,2039,18,0.019954544 +53,2039,19,0.01796606 +53,2039,20,0.015681564 +53,2039,21,0.013812231 +53,2039,22,0.011905205 +53,2039,23,0.01019947 +53,2039,24,0.008535013 +53,2039,25,0.00688456 +53,2039,26,0.005331469 +53,2039,27,0.004245353 +53,2039,28,0.001426848 +53,2039,29,0.000774534 +53,2039,30,0.000786944 +54,2039,0,0.067529842 +54,2039,1,0.066918839 +54,2039,2,0.065937414 +54,2039,3,0.065080139 +54,2039,4,0.064309532 +54,2039,5,0.062247485 +54,2039,6,0.059406375 +54,2039,7,0.056963812 +54,2039,8,0.053312739 +54,2039,9,0.049988521 +54,2039,10,0.046957755 +54,2039,11,0.043191666 +54,2039,12,0.0395945 +54,2039,13,0.035429547 +54,2039,14,0.031625381 +54,2039,15,0.02815741 +54,2039,16,0.024618409 +54,2039,17,0.022072796 +54,2039,18,0.01938562 +54,2039,19,0.017241205 +54,2039,20,0.015026029 +54,2039,21,0.013283404 +54,2039,22,0.011484916 +54,2039,23,0.009862271 +54,2039,24,0.008265581 +54,2039,25,0.00667033 +54,2039,26,0.005162252 +54,2039,27,0.004105267 +54,2039,28,0.002671282 +54,2039,29,0.00202941 +54,2039,30,0.001470094 +61,2039,0,0.060135807 +61,2039,1,0.058947035 +61,2039,2,0.057388775 +61,2039,3,0.055982763 +61,2039,4,0.054627437 +61,2039,5,0.052579376 +61,2039,6,0.050339647 +61,2039,7,0.048513592 +61,2039,8,0.046103523 +61,2039,9,0.044079474 +61,2039,10,0.042228608 +61,2039,11,0.039990624 +61,2039,12,0.037969204 +61,2039,13,0.035563157 +61,2039,14,0.033186225 +61,2039,15,0.030895329 +61,2039,16,0.028636785 +61,2039,17,0.027147399 +61,2039,18,0.025515004 +61,2039,19,0.024157824 +61,2039,20,0.022391122 +61,2039,21,0.02090414 +61,2039,22,0.018806464 +61,2039,23,0.017424605 +61,2039,24,0.015773512 +61,2039,25,0.013545564 +61,2039,26,0.011196466 +61,2039,27,0.010312527 +61,2039,28,0.004783605 +61,2039,29,0.003329235 +61,2039,30,0.007545235 +62,2039,0,0.060407577 +62,2039,1,0.059640662 +62,2039,2,0.058445016 +62,2039,3,0.057368907 +62,2039,4,0.05628002 +62,2039,5,0.054461984 +62,2039,6,0.052356627 +62,2039,7,0.050537866 +62,2039,8,0.04806915 +62,2039,9,0.045843265 +62,2039,10,0.043602229 +62,2039,11,0.040830465 +62,2039,12,0.038221475 +62,2039,13,0.035279605 +62,2039,14,0.032465838 +62,2039,15,0.029795883 +62,2039,16,0.027232742 +62,2039,17,0.025404662 +62,2039,18,0.023436934 +62,2039,19,0.021750319 +62,2039,20,0.019741215 +62,2039,21,0.0180485 +62,2039,22,0.015990493 +62,2039,23,0.014711195 +62,2039,24,0.013229217 +62,2039,25,0.011206816 +62,2039,26,0.009225489 +62,2039,27,0.008278807 +62,2039,28,0.008371566 +62,2039,29,0.006151531 +62,2039,30,0.013613804 +11,2040,0,0.070587327 +11,2040,1,0.070081923 +11,2040,2,0.06795769 +11,2040,3,0.063255978 +11,2040,4,0.059031631 +11,2040,5,0.055184681 +11,2040,6,0.051603344 +11,2040,7,0.048100686 +11,2040,8,0.045078862 +11,2040,9,0.042166049 +11,2040,10,0.0394475 +11,2040,11,0.036837816 +11,2040,12,0.034332047 +11,2040,13,0.031771784 +11,2040,14,0.029118172 +11,2040,15,0.026866936 +11,2040,16,0.024502325 +11,2040,17,0.022741654 +11,2040,18,0.021091427 +11,2040,19,0.019551911 +11,2040,20,0.018175833 +11,2040,21,0.016870968 +11,2040,22,0.015698322 +11,2040,23,0.014873698 +11,2040,24,0.01380573 +11,2040,25,0.012558892 +11,2040,26,0.011520219 +11,2040,27,0.010254478 +11,2040,28,0.009165587 +11,2040,29,0.007352595 +11,2040,30,0.010413898 +21,2040,0,0.070587328 +21,2040,1,0.06980826 +21,2040,2,0.068939023 +21,2040,3,0.068059462 +21,2040,4,0.066850819 +21,2040,5,0.065527708 +21,2040,6,0.06396325 +21,2040,7,0.061939816 +21,2040,8,0.059983074 +21,2040,9,0.057611063 +21,2040,10,0.054975363 +21,2040,11,0.052088953 +21,2040,12,0.049001448 +21,2040,13,0.043465143 +21,2040,14,0.035355763 +21,2040,15,0.02809803 +21,2040,16,0.021526127 +21,2040,17,0.016449776 +21,2040,18,0.012363132 +21,2040,19,0.009187599 +21,2040,20,0.006794889 +21,2040,21,0.004993825 +21,2040,22,0.003664219 +21,2040,23,0.002725459 +21,2040,24,0.001978889 +21,2040,25,0.001409089 +21,2040,26,0.001007399 +21,2040,27,0.000701399 +21,2040,28,0.000494653 +21,2040,29,0.000223702 +21,2040,30,0.000225342 +31,2040,0,0.071190193 +31,2040,1,0.070062853 +31,2040,2,0.068763407 +31,2040,3,0.067216597 +31,2040,4,0.065235275 +31,2040,5,0.062951782 +31,2040,6,0.060227087 +31,2040,7,0.057427244 +31,2040,8,0.054271203 +31,2040,9,0.050781457 +31,2040,10,0.047118455 +31,2040,11,0.043367076 +31,2040,12,0.0396557 +31,2040,13,0.035868167 +31,2040,14,0.03226114 +31,2040,15,0.027815092 +31,2040,16,0.023987219 +31,2040,17,0.020759994 +31,2040,18,0.017925126 +31,2040,19,0.015394491 +31,2040,20,0.013115163 +31,2040,21,0.011234219 +31,2040,22,0.009639023 +31,2040,23,0.008167913 +31,2040,24,0.006854123 +31,2040,25,0.005518167 +31,2040,26,0.004388347 +31,2040,27,0.003455051 +31,2040,28,0.002749863 +31,2040,29,0.001490908 +31,2040,30,0.001107667 +32,2040,0,0.071189348 +32,2040,1,0.070065867 +32,2040,2,0.068769972 +32,2040,3,0.067230235 +32,2040,4,0.065255857 +32,2040,5,0.062980958 +32,2040,6,0.060265331 +32,2040,7,0.057475627 +32,2040,8,0.054332573 +32,2040,9,0.050846408 +32,2040,10,0.047177586 +32,2040,11,0.043409733 +32,2040,12,0.039695995 +32,2040,13,0.035904417 +32,2040,14,0.032297794 +32,2040,15,0.02783763 +32,2040,16,0.024007621 +32,2040,17,0.020769867 +32,2040,18,0.01792442 +32,2040,19,0.015383328 +32,2040,20,0.013090648 +32,2040,21,0.011195051 +32,2040,22,0.009583286 +32,2040,23,0.008093905 +32,2040,24,0.006763294 +32,2040,25,0.005414494 +32,2040,26,0.004277166 +32,2040,27,0.003346425 +32,2040,28,0.002640752 +32,2040,29,0.001608571 +32,2040,30,0.001165851 +41,2040,0,0.06354489 +41,2040,1,0.06273575 +41,2040,2,0.061917591 +41,2040,3,0.060704928 +41,2040,4,0.059646558 +41,2040,5,0.057822722 +41,2040,6,0.055134189 +41,2040,7,0.052770744 +41,2040,8,0.050049316 +41,2040,9,0.047327517 +41,2040,10,0.044873042 +41,2040,11,0.04193868 +41,2040,12,0.039079451 +41,2040,13,0.035829057 +41,2040,14,0.032758092 +41,2040,15,0.02987227 +41,2040,16,0.026764307 +41,2040,17,0.024074564 +41,2040,18,0.021832714 +41,2040,19,0.019831354 +41,2040,20,0.017906469 +41,2040,21,0.016093036 +41,2040,22,0.014614454 +41,2040,23,0.012722128 +41,2040,24,0.011412247 +41,2040,25,0.009990356 +41,2040,26,0.008231886 +41,2040,27,0.006655275 +41,2040,28,0.005559366 +41,2040,29,0.004573589 +41,2040,30,0.003734349 +42,2040,0,0.063583314 +42,2040,1,0.062841625 +42,2040,2,0.061995914 +42,2040,3,0.060670061 +42,2040,4,0.059587134 +42,2040,5,0.057685813 +42,2040,6,0.054946208 +42,2040,7,0.052552458 +42,2040,8,0.049841569 +42,2040,9,0.047039008 +42,2040,10,0.044531849 +42,2040,11,0.041676204 +42,2040,12,0.038915363 +42,2040,13,0.035746045 +42,2040,14,0.032677735 +42,2040,15,0.029818172 +42,2040,16,0.026743819 +42,2040,17,0.024091815 +42,2040,18,0.021883625 +42,2040,19,0.019925171 +42,2040,20,0.01800359 +42,2040,21,0.016176957 +42,2040,22,0.014680181 +42,2040,23,0.012776682 +42,2040,24,0.011462408 +42,2040,25,0.010038942 +42,2040,26,0.008286848 +42,2040,27,0.006701107 +42,2040,28,0.005597813 +42,2040,29,0.006066499 +42,2040,30,0.003453506 +43,2040,0,0.063611291 +43,2040,1,0.062844284 +43,2040,2,0.062008995 +43,2040,3,0.06081156 +43,2040,4,0.059715256 +43,2040,5,0.057852404 +43,2040,6,0.055105731 +43,2040,7,0.05271561 +43,2040,8,0.049958088 +43,2040,9,0.047240843 +43,2040,10,0.044781909 +43,2040,11,0.041867038 +43,2040,12,0.039056032 +43,2040,13,0.035849918 +43,2040,14,0.032804317 +43,2040,15,0.029895957 +43,2040,16,0.026813316 +43,2040,17,0.024152219 +43,2040,18,0.021942752 +43,2040,19,0.019956375 +43,2040,20,0.01800765 +43,2040,21,0.01618803 +43,2040,22,0.014702998 +43,2040,23,0.012802394 +43,2040,24,0.011485341 +43,2040,25,0.010055973 +43,2040,26,0.008286858 +43,2040,27,0.006699777 +43,2040,28,0.005596679 +43,2040,29,0.00355788 +43,2040,30,0.003632923 +51,2040,0,0.067473534 +51,2040,1,0.066941555 +51,2040,2,0.06643984 +51,2040,3,0.065506741 +51,2040,4,0.06468637 +51,2040,5,0.062651688 +51,2040,6,0.059410603 +51,2040,7,0.056573192 +51,2040,8,0.05307964 +51,2040,9,0.04963471 +51,2040,10,0.046630983 +51,2040,11,0.043126513 +51,2040,12,0.039597582 +51,2040,13,0.035675544 +51,2040,14,0.032055437 +51,2040,15,0.028674019 +51,2040,16,0.025005668 +51,2040,17,0.021883864 +51,2040,18,0.019270911 +51,2040,19,0.016945421 +51,2040,20,0.014769103 +51,2040,21,0.012848244 +51,2040,22,0.01131187 +51,2040,23,0.0095158 +51,2040,24,0.008140963 +51,2040,25,0.006803103 +51,2040,26,0.005352435 +51,2040,27,0.004140753 +51,2040,28,0.003292486 +51,2040,29,0.001522553 +51,2040,30,0.001038087 +52,2040,0,0.067447481 +52,2040,1,0.066980087 +52,2040,2,0.066387637 +52,2040,3,0.065438272 +52,2040,4,0.064573993 +52,2040,5,0.062573556 +52,2040,6,0.059348252 +52,2040,7,0.056555826 +52,2040,8,0.053102916 +52,2040,9,0.049785299 +52,2040,10,0.046734567 +52,2040,11,0.043054387 +52,2040,12,0.039624409 +52,2040,13,0.035633684 +52,2040,14,0.031966988 +52,2040,15,0.028571205 +52,2040,16,0.024945719 +52,2040,17,0.021836298 +52,2040,18,0.019204164 +52,2040,19,0.016906716 +52,2040,20,0.014729966 +52,2040,21,0.012852126 +52,2040,22,0.011369308 +52,2040,23,0.009620446 +52,2040,24,0.008260917 +52,2040,25,0.006923869 +52,2040,26,0.005467477 +52,2040,27,0.004234862 +52,2040,28,0.003371588 +52,2040,29,0.001632867 +52,2040,30,0.000865161 +53,2040,0,0.067446331 +53,2040,1,0.066940324 +53,2040,2,0.06632422 +53,2040,3,0.065306817 +53,2040,4,0.064376472 +53,2040,5,0.062273953 +53,2040,6,0.058939914 +53,2040,7,0.056014344 +53,2040,8,0.052584224 +53,2040,9,0.049651975 +53,2040,10,0.046994863 +53,2040,11,0.043252229 +53,2040,12,0.039643151 +53,2040,13,0.035576473 +53,2040,14,0.031879135 +53,2040,15,0.028531675 +53,2040,16,0.025212296 +53,2040,17,0.022093452 +53,2040,18,0.01949034 +53,2040,19,0.017194013 +53,2040,20,0.015146731 +53,2040,21,0.013220731 +53,2040,22,0.011644743 +53,2040,23,0.009815727 +53,2040,24,0.008409365 +53,2040,25,0.007037037 +53,2040,26,0.005548308 +53,2040,27,0.004296663 +53,2040,28,0.003421355 +53,2040,29,0.001123388 +53,2040,30,0.000609808 +54,2040,0,0.067476872 +54,2040,1,0.067002992 +54,2040,2,0.066396756 +54,2040,3,0.065422988 +54,2040,4,0.064572401 +54,2040,5,0.062612117 +54,2040,6,0.059447148 +54,2040,7,0.056733851 +54,2040,8,0.053342061 +54,2040,9,0.049923123 +54,2040,10,0.046810258 +54,2040,11,0.04309911 +54,2040,12,0.039642491 +54,2040,13,0.035604744 +54,2040,14,0.031859475 +54,2040,15,0.028438637 +54,2040,16,0.024796595 +54,2040,17,0.021680003 +54,2040,18,0.019027836 +54,2040,19,0.016711358 +54,2040,20,0.014542206 +54,2040,21,0.012673802 +54,2040,22,0.011203973 +54,2040,23,0.009473491 +54,2040,24,0.00813503 +54,2040,25,0.006817978 +54,2040,26,0.005378093 +54,2040,27,0.004162174 +54,2040,28,0.003309958 +54,2040,29,0.002104111 +54,2040,30,0.001598522 +61,2040,0,0.060278719 +61,2040,1,0.05921783 +61,2040,2,0.058047205 +61,2040,3,0.056512732 +61,2040,4,0.055128183 +61,2040,5,0.053213664 +61,2040,6,0.050660466 +61,2040,7,0.048502476 +61,2040,8,0.046228082 +61,2040,9,0.043931553 +61,2040,10,0.042002858 +61,2040,11,0.03979092 +61,2040,12,0.037682125 +61,2040,13,0.035374342 +61,2040,14,0.033132727 +61,2040,15,0.030918238 +61,2040,16,0.028455943 +61,2040,17,0.026375726 +61,2040,18,0.024715761 +61,2040,19,0.023229583 +61,2040,20,0.021737527 +61,2040,21,0.020147825 +61,2040,22,0.01880982 +61,2040,23,0.016722668 +61,2040,24,0.015493922 +61,2040,25,0.014025774 +61,2040,26,0.011900897 +61,2040,27,0.00983702 +61,2040,28,0.009060407 +61,2040,29,0.004152013 +61,2040,30,0.004713115 +62,2040,0,0.060462256 +62,2040,1,0.059666574 +62,2040,2,0.058909066 +62,2040,3,0.057728087 +62,2040,4,0.056665178 +62,2040,5,0.054990404 +62,2040,6,0.052634141 +62,2040,7,0.050599444 +62,2040,8,0.04830362 +62,2040,9,0.045944044 +62,2040,10,0.043816564 +62,2040,11,0.041210343 +62,2040,12,0.038590629 +62,2040,13,0.035717796 +62,2040,14,0.032968632 +62,2040,15,0.030339179 +62,2040,16,0.027526865 +62,2040,17,0.025158913 +62,2040,18,0.023199548 +62,2040,19,0.021402617 +62,2040,20,0.019630813 +62,2040,21,0.01781749 +62,2040,22,0.016289725 +62,2040,23,0.014262005 +62,2040,24,0.013120993 +62,2040,25,0.011799209 +62,2040,26,0.009876093 +62,2040,27,0.008130033 +62,2040,28,0.007295762 +62,2040,29,0.007288371 +62,2040,30,0.008655635 +11,2041,0,0.070643687 +11,2041,1,0.069954823 +11,2041,2,0.06793325 +11,2041,3,0.063135599 +11,2041,4,0.058767508 +11,2041,5,0.054842909 +11,2041,6,0.051268928 +11,2041,7,0.047941713 +11,2041,8,0.044687594 +11,2041,9,0.04188019 +11,2041,10,0.039174063 +11,2041,11,0.036648414 +11,2041,12,0.034223906 +11,2041,13,0.03189594 +11,2041,14,0.029517346 +11,2041,15,0.027052027 +11,2041,16,0.024960532 +11,2041,17,0.022763708 +11,2041,18,0.021127969 +11,2041,19,0.019594837 +11,2041,20,0.018164562 +11,2041,21,0.016886126 +11,2041,22,0.01567385 +11,2041,23,0.014584412 +11,2041,24,0.013818301 +11,2041,25,0.012826113 +11,2041,26,0.011667747 +11,2041,27,0.010702776 +11,2041,28,0.009526848 +11,2041,29,0.008515222 +11,2041,30,0.009619146 +21,2041,0,0.070643681 +21,2041,1,0.069690588 +21,2041,2,0.068921416 +21,2041,3,0.068055401 +21,2041,4,0.066909186 +21,2041,5,0.065478311 +21,2041,6,0.063885048 +21,2041,7,0.062026048 +21,2041,8,0.059705571 +21,2041,9,0.057445186 +21,2041,10,0.054794503 +21,2041,11,0.051932206 +21,2041,12,0.048856963 +21,2041,13,0.043643177 +21,2041,14,0.035892078 +21,2041,15,0.028289241 +21,2041,16,0.021889274 +21,2041,17,0.016415492 +21,2041,18,0.012331625 +21,2041,19,0.009150259 +21,2041,20,0.006725975 +21,2041,21,0.004936573 +21,2041,22,0.003608251 +21,2041,23,0.002633007 +21,2041,24,0.001950402 +21,2041,25,0.001415914 +21,2041,26,0.001003901 +21,2041,27,0.00071749 +21,2041,28,0.000498835 +21,2041,29,0.000351236 +21,2041,30,0.00020316 +31,2041,0,0.071414569 +31,2041,1,0.069731473 +31,2041,2,0.068617838 +31,2041,3,0.067335971 +31,2041,4,0.065334606 +31,2041,5,0.062980165 +31,2041,6,0.06032826 +31,2041,7,0.057256829 +31,2041,8,0.054125376 +31,2041,9,0.050699642 +31,2041,10,0.047024219 +31,2041,11,0.043259494 +31,2041,12,0.039483914 +31,2041,13,0.035823059 +31,2041,14,0.032137076 +31,2041,15,0.028226146 +31,2041,16,0.024131058 +31,2041,17,0.020646151 +31,2041,18,0.017743173 +31,2041,19,0.015226533 +31,2041,20,0.013000508 +31,2041,21,0.011024641 +31,2041,22,0.009398326 +31,2041,23,0.008037968 +31,2041,24,0.006781642 +31,2041,25,0.005676127 +31,2041,26,0.004560159 +31,2041,27,0.003614719 +31,2041,28,0.002843175 +31,2041,29,0.002256974 +31,2041,30,0.001280208 +32,2041,0,0.071414179 +32,2041,1,0.069730265 +32,2041,2,0.068620415 +32,2041,3,0.067342031 +32,2041,4,0.065347506 +32,2041,5,0.062999691 +32,2041,6,0.060355891 +32,2041,7,0.057292874 +32,2041,8,0.054170683 +32,2041,9,0.050756696 +32,2041,10,0.047084107 +32,2041,11,0.043313546 +32,2041,12,0.039522536 +32,2041,13,0.035859264 +32,2041,14,0.03216938 +32,2041,15,0.028258062 +32,2041,16,0.024150479 +32,2041,17,0.020663599 +32,2041,18,0.017751514 +32,2041,19,0.01522585 +32,2041,20,0.01299101 +32,2041,21,0.011003973 +32,2041,22,0.009365507 +32,2041,23,0.007991446 +32,2041,24,0.006720159 +32,2041,25,0.005600877 +32,2041,26,0.00447446 +32,2041,27,0.003523119 +32,2041,28,0.002753772 +32,2041,29,0.002167409 +32,2041,30,0.0013797 +41,2041,0,0.062512499 +41,2041,1,0.062757427 +41,2041,2,0.061958313 +41,2041,3,0.061150293 +41,2041,4,0.059952658 +41,2041,5,0.058095683 +41,2041,6,0.055532369 +41,2041,7,0.052950329 +41,2041,8,0.049962351 +41,2041,9,0.047385754 +41,2041,10,0.044808806 +41,2041,11,0.041874282 +41,2041,12,0.039136016 +41,2041,13,0.035936037 +41,2041,14,0.032947093 +41,2041,15,0.030123145 +41,2041,16,0.027062922 +41,2041,17,0.024247248 +41,2041,18,0.021482837 +41,2041,19,0.019482332 +41,2041,20,0.017426544 +41,2041,21,0.015735076 +41,2041,22,0.014141546 +41,2041,23,0.012643375 +41,2041,24,0.011006271 +41,2041,25,0.009873056 +41,2041,26,0.008506981 +41,2041,27,0.007009609 +41,2041,28,0.005667095 +41,2041,29,0.00465825 +41,2041,30,0.003962916 +42,2041,0,0.062509462 +42,2041,1,0.062792324 +42,2041,2,0.062059862 +42,2041,3,0.061224671 +42,2041,4,0.059915313 +42,2041,5,0.058034985 +42,2041,6,0.055398192 +42,2041,7,0.052767231 +42,2041,8,0.049753265 +42,2041,9,0.047186771 +42,2041,10,0.044533488 +42,2041,11,0.041553871 +42,2041,12,0.038889192 +42,2041,13,0.035783409 +42,2041,14,0.032869162 +42,2041,15,0.030047793 +42,2041,16,0.0270126 +42,2041,17,0.02422751 +42,2041,18,0.021497186 +42,2041,19,0.019526813 +42,2041,20,0.017508134 +42,2041,21,0.015819652 +42,2041,22,0.0142146 +42,2041,23,0.012699621 +42,2041,24,0.011052931 +42,2041,25,0.00991597 +42,2041,26,0.008547937 +42,2041,27,0.007056068 +42,2041,28,0.005705844 +42,2041,29,0.004690238 +42,2041,30,0.005203762 +43,2041,0,0.062504041 +43,2041,1,0.062814505 +43,2041,2,0.062057105 +43,2041,3,0.061232279 +43,2041,4,0.060049843 +43,2041,5,0.058154727 +43,2041,6,0.055553359 +43,2041,7,0.052915838 +43,2041,8,0.049903399 +43,2041,9,0.047292982 +43,2041,10,0.044720693 +43,2041,11,0.041783585 +43,2041,12,0.039063876 +43,2041,13,0.035909642 +43,2041,14,0.032961816 +43,2041,15,0.030161571 +43,2041,16,0.027080717 +43,2041,17,0.024288362 +43,2041,18,0.021549216 +43,2041,19,0.019577874 +43,2041,20,0.017534032 +43,2041,21,0.015821847 +43,2041,22,0.014223096 +43,2041,23,0.012718257 +43,2041,24,0.011074213 +43,2041,25,0.009934948 +43,2041,26,0.008561696 +43,2041,27,0.007055464 +43,2041,28,0.005704217 +43,2041,29,0.004688881 +43,2041,30,0.003107874 +51,2041,0,0.066954171 +51,2041,1,0.066841593 +51,2041,2,0.066314598 +51,2041,3,0.065817582 +51,2041,4,0.064893222 +51,2041,5,0.062909992 +51,2041,6,0.059797463 +51,2041,7,0.056704032 +51,2041,8,0.052972157 +51,2041,9,0.049700979 +51,2041,10,0.046475328 +51,2041,11,0.042818974 +51,2041,12,0.039600989 +51,2041,13,0.035643998 +51,2041,14,0.032113552 +51,2041,15,0.028854891 +51,2041,16,0.025292214 +51,2041,17,0.022056507 +51,2041,18,0.018906885 +51,2041,19,0.016649385 +51,2041,20,0.014333606 +51,2041,21,0.012492727 +51,2041,22,0.010867931 +51,2041,23,0.009363665 +51,2041,24,0.007876926 +51,2041,25,0.006738872 +51,2041,26,0.00550832 +51,2041,27,0.004333746 +51,2041,28,0.003352675 +51,2041,29,0.002606273 +51,2041,30,0.001205226 +52,2041,0,0.066949096 +52,2041,1,0.06681072 +52,2041,2,0.066347739 +52,2041,3,0.065760882 +52,2041,4,0.064820479 +52,2041,5,0.062795941 +52,2041,6,0.059718363 +52,2041,7,0.056640228 +52,2041,8,0.052951882 +52,2041,9,0.049719004 +52,2041,10,0.046612798 +52,2041,11,0.042910836 +52,2041,12,0.039531762 +52,2041,13,0.035665443 +52,2041,14,0.03207344 +52,2041,15,0.028773093 +52,2041,16,0.025199615 +52,2041,17,0.02200196 +52,2041,18,0.01886436 +52,2041,19,0.016590461 +52,2041,20,0.014299783 +52,2041,21,0.012458677 +52,2041,22,0.010870391 +52,2041,23,0.009410497 +52,2041,24,0.007962945 +52,2041,25,0.006837648 +52,2041,26,0.005605677 +52,2041,27,0.004426558 +52,2041,28,0.003428613 +52,2041,29,0.002668686 +52,2041,30,0.00129245 +53,2041,0,0.06694773 +53,2041,1,0.066808218 +53,2041,2,0.066306998 +53,2041,3,0.065696723 +53,2041,4,0.064688945 +53,2041,5,0.062602581 +53,2041,6,0.059431218 +53,2041,7,0.056249374 +53,2041,8,0.052443835 +53,2041,9,0.049232361 +53,2041,10,0.046487021 +53,2041,11,0.043148955 +53,2041,12,0.039712606 +53,2041,13,0.035681584 +53,2041,14,0.032021292 +53,2041,15,0.028693431 +53,2041,16,0.025164236 +53,2041,17,0.022236626 +53,2041,18,0.019086125 +53,2041,19,0.016837344 +53,2041,20,0.014542483 +53,2041,21,0.012810917 +53,2041,22,0.01118193 +53,2041,23,0.009638281 +53,2041,24,0.008124416 +53,2041,25,0.006960379 +53,2041,26,0.005697183 +53,2041,27,0.004491909 +53,2041,28,0.003478577 +53,2041,29,0.002708023 +53,2041,30,0.000889168 +54,2041,0,0.066987082 +54,2041,1,0.066877757 +54,2041,2,0.066408085 +54,2041,3,0.065807232 +54,2041,4,0.06484211 +54,2041,5,0.062830021 +54,2041,6,0.059789069 +54,2041,7,0.056766802 +54,2041,8,0.053148702 +54,2041,9,0.049971247 +54,2041,10,0.046768359 +54,2041,11,0.043004721 +54,2041,12,0.039595279 +54,2041,13,0.035701964 +54,2041,14,0.032065576 +54,2041,15,0.028692592 +54,2041,16,0.025096922 +54,2041,17,0.021882843 +54,2041,18,0.018739963 +54,2041,19,0.016447458 +54,2041,20,0.014142568 +54,2041,21,0.012306848 +54,2041,22,0.010725645 +54,2041,23,0.009278909 +54,2041,24,0.007845758 +54,2041,25,0.006737271 +54,2041,26,0.005523078 +54,2041,27,0.004356662 +54,2041,28,0.003371675 +54,2041,29,0.002621391 +54,2041,30,0.001666395 +61,2041,0,0.058651192 +61,2041,1,0.059401004 +61,2041,2,0.058355564 +61,2041,3,0.057201984 +61,2041,4,0.055689854 +61,2041,5,0.053727368 +61,2041,6,0.051284172 +61,2041,7,0.048823551 +61,2041,8,0.046217595 +61,2041,9,0.044050344 +61,2041,10,0.041862001 +61,2041,11,0.039568465 +61,2041,12,0.037484725 +61,2041,13,0.035089331 +61,2041,14,0.032940339 +61,2041,15,0.030852963 +61,2041,16,0.028455408 +61,2041,17,0.026189251 +61,2041,18,0.02398858 +61,2041,19,0.022478851 +61,2041,20,0.020875157 +61,2041,21,0.019534328 +61,2041,22,0.01810575 +61,2041,23,0.016699286 +61,2041,24,0.014846321 +61,2041,25,0.013755445 +61,2041,26,0.012299859 +61,2041,27,0.010436455 +61,2041,28,0.008626544 +61,2041,29,0.007847198 +61,2041,30,0.004661185 +62,2041,0,0.058735937 +62,2041,1,0.059667959 +62,2041,2,0.05888273 +62,2041,3,0.058135174 +62,2041,4,0.056969709 +62,2041,5,0.055305103 +62,2041,6,0.053073064 +62,2041,7,0.050798956 +62,2041,8,0.048285445 +62,2041,9,0.046094613 +62,2041,10,0.043842945 +62,2041,11,0.041336693 +62,2041,12,0.038877976 +62,2041,13,0.035987247 +62,2041,14,0.033308219 +62,2041,15,0.030744518 +62,2041,16,0.027962821 +62,2041,17,0.025370785 +62,2041,18,0.022914957 +62,2041,19,0.021130351 +62,2041,20,0.019261154 +62,2041,21,0.017666629 +62,2041,22,0.01603474 +62,2041,23,0.014482852 +62,2041,24,0.012680049 +62,2041,25,0.011665599 +62,2041,26,0.010362231 +62,2041,27,0.008673324 +62,2041,28,0.007139909 +62,2041,29,0.006327973 +62,2041,30,0.008280512 +11,2042,0,0.070643679 +11,2042,1,0.07001067 +11,2042,2,0.067797036 +11,2042,3,0.063076807 +11,2042,4,0.058622132 +11,2042,5,0.054566309 +11,2042,6,0.050922273 +11,2042,7,0.047603791 +11,2042,8,0.044514433 +11,2042,9,0.041492947 +11,2042,10,0.03888624 +11,2042,11,0.036373569 +11,2042,12,0.034028476 +11,2042,13,0.031777292 +11,2042,14,0.029615748 +11,2042,15,0.027407196 +11,2042,16,0.025118119 +11,2042,17,0.023176142 +11,2042,18,0.021136365 +11,2042,19,0.019617563 +11,2042,20,0.018194032 +11,2042,21,0.016866005 +11,2042,22,0.015678963 +11,2042,23,0.014553351 +11,2042,24,0.013541795 +11,2042,25,0.012830452 +11,2042,26,0.011909194 +11,2042,27,0.010833638 +11,2042,28,0.009937651 +11,2042,29,0.008845789 +11,2042,30,0.010422358 +21,2042,0,0.070643681 +21,2042,1,0.069746761 +21,2042,2,0.068805769 +21,2042,3,0.068038559 +21,2042,4,0.06690629 +21,2042,5,0.06553705 +21,2042,6,0.063839028 +21,2042,7,0.061952976 +21,2042,8,0.059792102 +21,2042,9,0.05718346 +21,2042,10,0.054641385 +21,2042,11,0.051766512 +21,2042,12,0.048715531 +21,2042,13,0.043524434 +21,2042,14,0.036053714 +21,2042,15,0.028732254 +21,2042,16,0.022050392 +21,2042,17,0.016702559 +21,2042,18,0.012313956 +21,2042,19,0.009133213 +21,2042,20,0.006703443 +21,2042,21,0.004890113 +21,2042,22,0.003569571 +21,2042,23,0.002594783 +21,2042,24,0.00188571 +21,2042,25,0.001396621 +21,2042,26,0.001009563 +21,2042,27,0.000715566 +21,2042,28,0.000510685 +21,2042,29,0.000354489 +21,2042,30,0.000289832 +31,2042,0,0.071414016 +31,2042,1,0.069953569 +31,2042,2,0.068295588 +31,2042,3,0.067195714 +31,2042,4,0.065454582 +31,2042,5,0.063081383 +31,2042,6,0.060362147 +31,2042,7,0.057361021 +31,2042,8,0.053973991 +31,2042,9,0.050573703 +31,2042,10,0.04695954 +31,2042,11,0.04318455 +31,2042,12,0.039397763 +31,2042,13,0.035679621 +31,2042,14,0.032108235 +31,2042,15,0.028130337 +31,2042,16,0.024499581 +31,2042,17,0.020780713 +31,2042,18,0.017655511 +31,2042,19,0.015080578 +31,2042,20,0.012866316 +31,2042,21,0.010934967 +31,2042,22,0.009228837 +31,2042,23,0.007842318 +31,2042,24,0.006678187 +31,2042,25,0.005619895 +31,2042,26,0.004693904 +31,2042,27,0.003758862 +31,2042,28,0.002976654 +31,2042,29,0.002335224 +31,2042,30,0.001922696 +32,2042,0,0.071416357 +32,2042,1,0.06995548 +32,2042,2,0.068296643 +32,2042,3,0.067200441 +32,2042,4,0.065462619 +32,2042,5,0.063095906 +32,2042,6,0.060382841 +32,2042,7,0.057389174 +32,2042,8,0.05400974 +32,2042,9,0.050617696 +32,2042,10,0.047013927 +32,2042,11,0.043240965 +32,2042,12,0.039448283 +32,2042,13,0.035715692 +32,2042,14,0.032141739 +32,2042,15,0.028159536 +32,2042,16,0.024528087 +32,2042,17,0.02079812 +32,2042,18,0.017671011 +32,2042,19,0.015088162 +32,2042,20,0.012866161 +32,2042,21,0.010927336 +32,2042,22,0.009211838 +32,2042,23,0.007815189 +32,2042,24,0.006639752 +32,2042,25,0.005569127 +32,2042,26,0.004631828 +32,2042,27,0.003688343 +32,2042,28,0.002901318 +32,2042,29,0.002261867 +32,2042,30,0.001854834 +41,2042,0,0.062537763 +41,2042,1,0.06176278 +41,2042,2,0.06200477 +41,2042,3,0.06121524 +41,2042,4,0.060416911 +41,2042,5,0.058413363 +41,2042,6,0.055809197 +41,2042,7,0.053346768 +41,2042,8,0.05014188 +41,2042,9,0.047312383 +41,2042,10,0.044872447 +41,2042,11,0.041819097 +41,2042,12,0.039080369 +41,2042,13,0.035989343 +41,2042,14,0.033046653 +41,2042,15,0.030298031 +41,2042,16,0.027288992 +41,2042,17,0.024516691 +41,2042,18,0.02163418 +41,2042,19,0.019167682 +41,2042,20,0.017116208 +41,2042,21,0.015310095 +41,2042,22,0.013824056 +41,2042,23,0.012230574 +41,2042,24,0.010934854 +41,2042,25,0.009518974 +41,2042,26,0.008403808 +41,2042,27,0.007241024 +41,2042,28,0.005966482 +41,2042,29,0.004746215 +41,2042,30,0.004021227 +42,2042,0,0.062610143 +42,2042,1,0.061831259 +42,2042,2,0.062111052 +42,2042,3,0.061386537 +42,2042,4,0.060560408 +42,2042,5,0.058444541 +42,2042,6,0.055815414 +42,2042,7,0.053279465 +42,2042,8,0.050026326 +42,2042,9,0.047168916 +42,2042,10,0.044735734 +42,2042,11,0.041610252 +42,2042,12,0.038826222 +42,2042,13,0.035803755 +42,2042,14,0.032944383 +42,2042,15,0.030261349 +42,2042,16,0.027252234 +42,2042,17,0.024499427 +42,2042,18,0.021641587 +42,2042,19,0.019202684 +42,2042,20,0.017175142 +42,2042,21,0.015399579 +42,2042,22,0.013914446 +42,2042,23,0.012307984 +42,2042,24,0.010996211 +42,2042,25,0.009570393 +42,2042,26,0.008450104 +42,2042,27,0.007284306 +42,2042,28,0.006012978 +42,2042,29,0.004784198 +42,2042,30,0.004090295 +43,2042,0,0.06249209 +43,2042,1,0.061709323 +43,2042,2,0.06201584 +43,2042,3,0.06126807 +43,2042,4,0.060453731 +43,2042,5,0.058465323 +43,2042,6,0.055825117 +43,2042,7,0.053327957 +43,2042,8,0.050072623 +43,2042,9,0.047222045 +43,2042,10,0.044751888 +43,2042,11,0.041706383 +43,2042,12,0.038967244 +43,2042,13,0.035896768 +43,2042,14,0.032998264 +43,2042,15,0.030289433 +43,2042,16,0.027303847 +43,2042,17,0.024514895 +43,2042,18,0.021655036 +43,2042,19,0.019212866 +43,2042,20,0.017187585 +43,2042,21,0.015393279 +43,2042,22,0.013890137 +43,2042,23,0.01229212 +43,2042,24,0.010991583 +43,2042,25,0.00957074 +43,2042,26,0.008450313 +43,2042,27,0.007282274 +43,2042,28,0.006001127 +43,2042,29,0.004773816 +43,2042,30,0.004018069 +51,2042,0,0.066939877 +51,2042,1,0.066312935 +51,2042,2,0.066201435 +51,2042,3,0.065679487 +51,2042,4,0.065187231 +51,2042,5,0.063105768 +51,2042,6,0.060046844 +51,2042,7,0.057075972 +51,2042,8,0.053104511 +51,2042,9,0.049609531 +51,2042,10,0.046546005 +51,2042,11,0.042690075 +51,2042,12,0.039331518 +51,2042,13,0.035664104 +51,2042,14,0.032100493 +51,2042,15,0.028921022 +51,2042,16,0.025467873 +51,2042,17,0.022323386 +51,2042,18,0.019071195 +51,2042,19,0.016347869 +51,2042,20,0.014096774 +51,2042,21,0.01213604 +51,2042,22,0.010577396 +51,2042,23,0.00900644 +51,2042,24,0.007759829 +51,2042,25,0.006527743 +51,2042,26,0.005463538 +51,2042,27,0.004465869 +51,2042,28,0.003513583 +51,2042,29,0.002657942 +51,2042,30,0.002066207 +52,2042,0,0.06694892 +52,2042,1,0.066316865 +52,2042,2,0.066179796 +52,2042,3,0.065721187 +52,2042,4,0.065139872 +52,2042,5,0.063043544 +52,2042,6,0.05994608 +52,2042,7,0.057008171 +52,2042,8,0.053051922 +52,2042,9,0.049597243 +52,2042,10,0.046569176 +52,2042,11,0.042822132 +52,2042,12,0.039421223 +52,2042,13,0.035606569 +52,2042,14,0.032124144 +52,2042,15,0.0288888 +52,2042,16,0.025399106 +52,2042,17,0.022244661 +52,2042,18,0.019026601 +52,2042,19,0.016313303 +52,2042,20,0.014048781 +52,2042,21,0.012109037 +52,2042,22,0.010549992 +52,2042,23,0.009009695 +52,2042,24,0.007799693 +52,2042,25,0.00659992 +52,2042,26,0.00554437 +52,2042,27,0.004545414 +52,2042,28,0.003589315 +52,2042,29,0.002718511 +52,2042,30,0.002115973 +53,2042,0,0.066940458 +53,2042,1,0.066307131 +53,2042,2,0.066168954 +53,2042,3,0.06567253 +53,2042,4,0.065068095 +53,2042,5,0.062907665 +53,2042,6,0.059753942 +53,2042,7,0.056726887 +53,2042,8,0.052679171 +53,2042,9,0.049115174 +53,2042,10,0.046107534 +53,2042,11,0.042701187 +53,2042,12,0.039634968 +53,2042,13,0.035764935 +53,2042,14,0.032134622 +53,2042,15,0.028838185 +53,2042,16,0.025325585 +53,2042,17,0.022210624 +53,2042,18,0.019227102 +53,2042,19,0.016502992 +53,2042,20,0.01425604 +53,2042,21,0.012313 +53,2042,22,0.010846897 +53,2042,23,0.009266737 +53,2042,24,0.007987477 +53,2042,25,0.0067329 +53,2042,26,0.005643174 +53,2042,27,0.004619029 +53,2042,28,0.003641845 +53,2042,29,0.002757778 +53,2042,30,0.002146891 +54,2042,0,0.066961428 +54,2042,1,0.06636689 +54,2042,2,0.066258578 +54,2042,3,0.065793253 +54,2042,4,0.065197963 +54,2042,5,0.063076365 +54,2042,6,0.059989819 +54,2042,7,0.057086333 +54,2042,8,0.053180411 +54,2042,9,0.049790894 +54,2042,10,0.046814183 +54,2042,11,0.04297307 +54,2042,12,0.039514855 +54,2042,13,0.035670442 +54,2042,14,0.032163048 +54,2042,15,0.028887112 +54,2042,16,0.025332778 +54,2042,17,0.02215815 +54,2042,18,0.018927127 +54,2042,19,0.016208756 +54,2042,20,0.013930289 +54,2042,21,0.011978146 +54,2042,22,0.01042337 +54,2042,23,0.008891387 +54,2042,24,0.007692066 +54,2042,25,0.006504007 +54,2042,26,0.005463999 +54,2042,27,0.004479275 +54,2042,28,0.0035333 +54,2042,29,0.002673865 +54,2042,30,0.002078862 +61,2042,0,0.058661722 +61,2042,1,0.057807553 +61,2042,2,0.05854658 +61,2042,3,0.057516177 +61,2042,4,0.05637919 +61,2042,5,0.054282324 +61,2042,6,0.051784324 +61,2042,7,0.049429486 +61,2042,8,0.046526143 +61,2042,9,0.044042811 +61,2042,10,0.041977541 +61,2042,11,0.039436273 +61,2042,12,0.037275637 +61,2042,13,0.034904417 +61,2042,14,0.032673912 +61,2042,15,0.030672849 +61,2042,16,0.028393158 +61,2042,17,0.026186752 +61,2042,18,0.023816056 +61,2042,19,0.021814804 +61,2042,20,0.020197077 +61,2042,21,0.018756171 +61,2042,22,0.017551446 +61,2042,23,0.016070699 +61,2042,24,0.014822319 +61,2042,25,0.013177624 +61,2042,26,0.012059556 +61,2042,27,0.010783428 +61,2042,28,0.00914976 +61,2042,29,0.007469043 +61,2042,30,0.00783504 +62,2042,0,0.058727834 +62,2042,1,0.057956323 +62,2042,2,0.058875974 +62,2042,3,0.058101167 +62,2042,4,0.057363534 +62,2042,5,0.055592414 +62,2042,6,0.053365076 +62,2042,7,0.051211333 +62,2042,8,0.048463151 +62,2042,9,0.046065215 +62,2042,10,0.04397512 +62,2042,11,0.041348977 +62,2042,12,0.038985292 +62,2042,13,0.036242561 +62,2042,14,0.033547785 +62,2042,15,0.03105036 +62,2042,16,0.028325246 +62,2042,17,0.025762439 +62,2042,18,0.023097759 +62,2042,19,0.020861954 +62,2042,20,0.019006857 +62,2042,21,0.017325504 +62,2042,22,0.015891222 +62,2042,23,0.014248507 +62,2042,24,0.012869496 +62,2042,25,0.011267521 +62,2042,26,0.010238891 +62,2042,27,0.009094925 +62,2042,28,0.007612572 +62,2042,29,0.006188851 +62,2042,30,0.007336061 +11,2043,0,0.070643678 +11,2043,1,0.070010661 +11,2043,2,0.067864296 +11,2043,3,0.062986676 +11,2043,4,0.058601359 +11,2043,5,0.054462754 +11,2043,6,0.050694701 +11,2043,7,0.047309218 +11,2043,8,0.04422619 +11,2043,9,0.04135603 +11,2043,10,0.038548924 +11,2043,11,0.036127169 +11,2043,12,0.033792779 +11,2043,13,0.031614075 +11,2043,14,0.029522618 +11,2043,15,0.027514441 +11,2043,16,0.025462591 +11,2043,17,0.02333593 +11,2043,18,0.02153174 +11,2043,19,0.01963669 +11,2043,20,0.018225651 +11,2043,21,0.016903123 +11,2043,22,0.015669322 +11,2043,23,0.014566503 +11,2043,24,0.013520756 +11,2043,25,0.012580972 +11,2043,26,0.011920101 +11,2043,27,0.011064209 +11,2043,28,0.010064966 +11,2043,29,0.009232551 +11,2043,30,0.011009302 +21,2043,0,0.070643681 +21,2043,1,0.069747501 +21,2043,2,0.068861958 +21,2043,3,0.067925135 +21,2043,4,0.066891243 +21,2043,5,0.065536378 +21,2043,6,0.063899248 +21,2043,7,0.061912156 +21,2043,8,0.05972636 +21,2043,9,0.057271914 +21,2043,10,0.054398821 +21,2043,11,0.051628946 +21,2043,12,0.048567786 +21,2043,13,0.043412119 +21,2043,14,0.035975742 +21,2043,15,0.0288809 +21,2043,16,0.022412742 +21,2043,17,0.016839591 +21,2043,18,0.012540576 +21,2043,19,0.00912877 +21,2043,20,0.006697571 +21,2043,21,0.004878691 +21,2043,22,0.003539649 +21,2043,23,0.002569687 +21,2043,24,0.001860334 +21,2043,25,0.001351751 +21,2043,26,0.000996895 +21,2043,27,0.000720389 +21,2043,28,0.000509876 +21,2043,29,0.000363312 +21,2043,30,0.000310279 +31,2043,0,0.071415821 +31,2043,1,0.069961543 +31,2043,2,0.068521528 +31,2043,3,0.066888436 +31,2043,4,0.065330377 +31,2043,5,0.063212553 +31,2043,6,0.060477595 +31,2043,7,0.057414653 +31,2043,8,0.054096389 +31,2043,9,0.050458669 +31,2043,10,0.046871024 +31,2043,11,0.043154308 +31,2043,12,0.039359017 +31,2043,13,0.035630978 +31,2043,14,0.032008272 +31,2043,15,0.028136351 +31,2043,16,0.024445502 +31,2043,17,0.021124767 +31,2043,18,0.01779425 +31,2043,19,0.015026934 +31,2043,20,0.012761417 +31,2043,21,0.010838229 +31,2043,22,0.009167842 +31,2043,23,0.007712968 +31,2043,24,0.00652613 +31,2043,25,0.005543216 +31,2043,26,0.004655102 +31,2043,27,0.003875639 +31,2043,28,0.00310061 +31,2043,29,0.002449071 +31,2043,30,0.00204081 +32,2043,0,0.071409256 +32,2043,1,0.069957405 +32,2043,2,0.068517101 +32,2043,3,0.066883321 +32,2043,4,0.065328967 +32,2043,5,0.063214503 +32,2043,6,0.060485958 +32,2043,7,0.057429057 +32,2043,8,0.054117964 +32,2043,9,0.050487448 +32,2043,10,0.046907483 +32,2043,11,0.043200316 +32,2043,12,0.039406812 +32,2043,13,0.035673388 +32,2043,14,0.032037686 +32,2043,15,0.028163121 +32,2043,16,0.024468627 +32,2043,17,0.021147402 +32,2043,18,0.017807518 +32,2043,19,0.015038743 +32,2043,20,0.012766661 +32,2043,21,0.010837102 +32,2043,22,0.009160602 +32,2043,23,0.007698053 +32,2043,24,0.006502956 +32,2043,25,0.005510807 +32,2043,26,0.004612626 +32,2043,27,0.003824033 +32,2043,28,0.00304216 +32,2043,29,0.002386868 +32,2043,30,0.001976046 +41,2043,0,0.062502278 +41,2043,1,0.061752681 +41,2043,2,0.060987427 +41,2043,3,0.061226379 +41,2043,4,0.060446761 +41,2043,5,0.058841456 +41,2043,6,0.056100249 +41,2043,7,0.053599206 +41,2043,8,0.050512897 +41,2043,9,0.047478258 +41,2043,10,0.044799068 +41,2043,11,0.041881947 +41,2043,12,0.039032087 +41,2043,13,0.035947409 +41,2043,14,0.033104181 +41,2043,15,0.030397399 +41,2043,16,0.027459416 +41,2043,17,0.024732292 +41,2043,18,0.021888197 +41,2043,19,0.019314727 +41,2043,20,0.01685347 +41,2043,21,0.015049681 +41,2043,22,0.01346163 +41,2043,23,0.011968069 +41,2043,24,0.010588525 +41,2043,25,0.009466765 +41,2043,26,0.008112255 +41,2043,27,0.007161889 +41,2043,28,0.006170942 +41,2043,29,0.005004069 +41,2043,30,0.004144939 +42,2043,0,0.062507093 +42,2043,1,0.061828916 +42,2043,2,0.061059751 +42,2043,3,0.061336052 +42,2043,4,0.060620578 +42,2043,5,0.058985755 +42,2043,6,0.056134518 +42,2043,7,0.053609307 +42,2043,8,0.050453056 +42,2043,9,0.047372492 +42,2043,10,0.044666664 +42,2043,11,0.041757563 +42,2043,12,0.038840152 +42,2043,13,0.035716387 +42,2043,14,0.032936009 +42,2043,15,0.030305662 +42,2043,16,0.027428283 +42,2043,17,0.024700881 +42,2043,18,0.021874469 +42,2043,19,0.019322829 +42,2043,20,0.016885547 +42,2043,21,0.015102664 +42,2043,22,0.013541353 +42,2043,23,0.012047252 +42,2043,24,0.010656363 +42,2043,25,0.009520618 +42,2043,26,0.008156704 +42,2043,27,0.007201899 +42,2043,28,0.006208306 +42,2043,29,0.005043454 +42,2043,30,0.00417994 +43,2043,0,0.062504698 +43,2043,1,0.061709971 +43,2043,2,0.060937001 +43,2043,3,0.061239681 +43,2043,4,0.06050127 +43,2043,5,0.058879596 +43,2043,6,0.056152326 +43,2043,7,0.053616572 +43,2043,8,0.05049704 +43,2043,9,0.047414516 +43,2043,10,0.044715261 +43,2043,11,0.041771041 +43,2043,12,0.038928391 +43,2043,13,0.035844741 +43,2043,14,0.033020306 +43,2043,15,0.030354064 +43,2043,16,0.027452686 +43,2043,17,0.024746714 +43,2043,18,0.021887441 +43,2043,19,0.019334096 +43,2043,20,0.016893853 +43,2043,21,0.015113026 +43,2043,22,0.013535294 +43,2043,23,0.012025744 +43,2043,24,0.01064222 +43,2043,25,0.009516246 +43,2043,26,0.008156687 +43,2043,27,0.007201801 +43,2043,28,0.006206337 +43,2043,29,0.005033321 +43,2043,30,0.00416812 +51,2043,0,0.066936245 +51,2043,1,0.066295181 +51,2043,2,0.065674277 +51,2043,3,0.065563851 +51,2043,4,0.065046929 +51,2043,5,0.063404381 +51,2043,6,0.060261694 +51,2043,7,0.05734063 +51,2043,8,0.053492338 +51,2043,9,0.049770234 +51,2043,10,0.046494694 +51,2043,11,0.042798778 +51,2043,12,0.039253273 +51,2043,13,0.035468196 +51,2043,14,0.032161012 +51,2043,15,0.028947436 +51,2043,16,0.025567824 +51,2043,17,0.022515044 +51,2043,18,0.019339598 +51,2043,19,0.016522101 +51,2043,20,0.013873117 +51,2043,21,0.011962795 +51,2043,22,0.010298878 +51,2043,23,0.008788765 +51,2043,24,0.007483457 +51,2043,25,0.006447646 +51,2043,26,0.005308242 +51,2043,27,0.00444285 +51,2043,28,0.003631563 +51,2043,29,0.002794926 +51,2043,30,0.002114295 +52,2043,0,0.066941502 +52,2043,1,0.066309343 +52,2043,2,0.065683327 +52,2043,3,0.065547568 +52,2043,4,0.065093339 +52,2043,5,0.063363293 +52,2043,6,0.060207002 +52,2043,7,0.057248903 +52,2043,8,0.053432991 +52,2043,9,0.049724852 +52,2043,10,0.046486828 +52,2043,11,0.042823446 +52,2043,12,0.039377791 +52,2043,13,0.035551882 +52,2043,14,0.03211165 +52,2043,15,0.028971039 +52,2043,16,0.025541343 +52,2043,17,0.022456014 +52,2043,18,0.019272909 +52,2043,19,0.016484762 +52,2043,20,0.013844871 +52,2043,21,0.011923003 +52,2043,22,0.01027677 +52,2043,23,0.008766683 +52,2043,24,0.007486749 +52,2043,25,0.006481279 +52,2043,26,0.005367356 +52,2043,27,0.004508935 +52,2043,28,0.003696539 +52,2043,29,0.002855392 +52,2043,30,0.002162645 +53,2043,0,0.066957068 +53,2043,1,0.06631638 +53,2043,2,0.065688957 +53,2043,3,0.065552068 +53,2043,4,0.065060272 +53,2043,5,0.063308191 +53,2043,6,0.060091206 +53,2043,7,0.05707868 +53,2043,8,0.053181711 +53,2043,9,0.049386959 +53,2043,10,0.046045695 +53,2043,11,0.042408795 +53,2043,12,0.039275704 +53,2043,13,0.035752958 +53,2043,14,0.032261973 +53,2043,15,0.028987227 +53,2043,16,0.025502522 +53,2043,17,0.022396219 +53,2043,18,0.019247894 +53,2043,19,0.016662351 +53,2043,20,0.014009115 +53,2043,21,0.012101714 +53,2043,22,0.0104523 +53,2043,23,0.009015497 +53,2043,24,0.007702133 +53,2043,25,0.006638864 +53,2043,26,0.005476775 +53,2043,27,0.004590354 +53,2043,28,0.003757279 +53,2043,29,0.002897855 +53,2043,30,0.002194393 +54,2043,0,0.06693042 +54,2043,1,0.066310753 +54,2043,2,0.065721992 +54,2043,3,0.065614732 +54,2043,4,0.06515393 +54,2043,5,0.063409302 +54,2043,6,0.060228374 +54,2043,7,0.05728119 +54,2043,8,0.053497393 +54,2043,9,0.049837032 +54,2043,10,0.046660609 +54,2043,11,0.04304162 +54,2043,12,0.039510047 +54,2043,13,0.035630424 +54,2043,14,0.032163929 +54,2043,15,0.029001322 +54,2043,16,0.025535623 +54,2043,17,0.022393663 +54,2043,18,0.019194777 +54,2043,19,0.016395863 +54,2043,20,0.013753867 +54,2043,21,0.011820483 +54,2043,22,0.010164001 +54,2043,23,0.008660031 +54,2043,24,0.007387216 +54,2043,25,0.006390786 +54,2043,26,0.00528848 +54,2043,27,0.004442838 +54,2043,28,0.003642148 +54,2043,29,0.002810365 +54,2043,30,0.002126776 +61,2043,0,0.0587507 +61,2043,1,0.05790563 +61,2043,2,0.05706247 +61,2043,3,0.057791972 +61,2043,4,0.056774849 +61,2043,5,0.055045055 +61,2043,6,0.052412938 +61,2043,7,0.050000965 +61,2043,8,0.04719464 +61,2043,9,0.044422565 +61,2043,10,0.042051512 +61,2043,11,0.039627325 +61,2043,12,0.037228336 +61,2043,13,0.034787039 +61,2043,14,0.032574126 +61,2043,15,0.030492535 +61,2043,16,0.028294579 +61,2043,17,0.026191648 +61,2043,18,0.023874168 +61,2043,19,0.02171283 +61,2043,20,0.019653266 +61,2043,21,0.018195833 +61,2043,22,0.0168977 +61,2043,23,0.015623236 +61,2043,24,0.014305166 +61,2043,25,0.013193933 +61,2043,26,0.01158794 +61,2043,27,0.010604751 +61,2043,28,0.009482568 +61,2043,29,0.007947393 +61,2043,30,0.008312232 +62,2043,0,0.05865936 +62,2043,1,0.057880762 +62,2043,2,0.057120379 +62,2043,3,0.058026765 +62,2043,4,0.057263134 +62,2043,5,0.055919032 +62,2043,6,0.053594457 +62,2043,7,0.051447168 +62,2043,8,0.048819906 +62,2043,9,0.046200057 +62,2043,10,0.043914098 +62,2043,11,0.041448524 +62,2043,12,0.038973266 +62,2043,13,0.036325989 +62,2043,14,0.033770348 +62,2043,15,0.031259391 +62,2043,16,0.028598288 +62,2043,17,0.026088378 +62,2043,18,0.02345081 +62,2043,19,0.021025228 +62,2043,20,0.01876561 +62,2043,21,0.017096924 +62,2043,22,0.015584525 +62,2043,23,0.014123413 +62,2043,24,0.012663442 +62,2043,25,0.011437837 +62,2043,26,0.009892858 +62,2043,27,0.008989723 +62,2043,28,0.007985324 +62,2043,29,0.006601926 +62,2043,30,0.007073048 +11,2044,0,0.070643679 +11,2044,1,0.070010662 +11,2044,2,0.067873787 +11,2044,3,0.06307547 +11,2044,4,0.058542039 +11,2044,5,0.05446617 +11,2044,6,0.050619604 +11,2044,7,0.047117443 +11,2044,8,0.043970856 +11,2044,9,0.041105381 +11,2044,10,0.038437753 +11,2044,11,0.03582873 +11,2044,12,0.033577865 +11,2044,13,0.0314082 +11,2044,14,0.029383237 +11,2044,15,0.027439363 +11,2044,16,0.025572892 +11,2044,17,0.02366583 +11,2044,18,0.021689236 +11,2044,19,0.020012359 +11,2044,20,0.018251033 +11,2044,21,0.016939563 +11,2044,22,0.015710359 +11,2044,23,0.014563621 +11,2044,24,0.013538622 +11,2044,25,0.012566668 +11,2044,26,0.0116932 +11,2044,27,0.011078963 +11,2044,28,0.010283466 +11,2044,29,0.009354734 +11,2044,30,0.011579174 +21,2044,0,0.070643681 +21,2044,1,0.069747984 +21,2044,2,0.068863166 +21,2044,3,0.067981091 +21,2044,4,0.066780717 +21,2044,5,0.065523054 +21,2044,6,0.063900522 +21,2044,7,0.061973049 +21,2044,8,0.059690074 +21,2044,9,0.057212583 +21,2044,10,0.054487146 +21,2044,11,0.051404367 +21,2044,12,0.04844373 +21,2044,13,0.043289368 +21,2044,14,0.035896018 +21,2044,15,0.028830992 +21,2044,16,0.022539884 +21,2044,17,0.01712567 +21,2044,18,0.01265089 +21,2044,19,0.009302521 +21,2044,20,0.006698633 +21,2044,21,0.004877655 +21,2044,22,0.003533775 +21,2044,23,0.002549909 +21,2044,24,0.001843635 +21,2044,25,0.001334497 +21,2044,26,0.000965556 +21,2044,27,0.000711858 +21,2044,28,0.000513681 +21,2044,29,0.000362998 +21,2044,30,0.000321297 +31,2044,0,0.071415552 +31,2044,1,0.069964315 +31,2044,2,0.068530337 +31,2044,3,0.067110713 +31,2044,4,0.065033345 +31,2044,5,0.063094941 +31,2044,6,0.060606306 +31,2044,7,0.057528004 +31,2044,8,0.054151054 +31,2044,9,0.050577638 +31,2044,10,0.046769285 +31,2044,11,0.043078064 +31,2044,12,0.039336658 +31,2044,13,0.035601115 +31,2044,14,0.031969727 +31,2044,15,0.028054368 +31,2044,16,0.024455983 +31,2044,17,0.021082962 +31,2044,18,0.018093224 +31,2044,19,0.015148837 +31,2044,20,0.012719364 +31,2044,21,0.010752779 +31,2044,22,0.009089279 +31,2044,23,0.007664179 +31,2044,24,0.006420373 +31,2044,25,0.005418618 +31,2044,26,0.004592975 +31,2044,27,0.003844786 +31,2044,28,0.003197928 +31,2044,29,0.00255186 +31,2044,30,0.002145435 +32,2044,0,0.071410317 +32,2044,1,0.069952755 +32,2044,2,0.06852126 +32,2044,3,0.067101458 +32,2044,4,0.065023605 +32,2044,5,0.063088954 +32,2044,6,0.060603733 +32,2044,7,0.057531741 +32,2044,8,0.054160668 +32,2044,9,0.050594101 +32,2044,10,0.04679253 +32,2044,11,0.043108412 +32,2044,12,0.03937571 +32,2044,13,0.035641733 +32,2044,14,0.032005433 +32,2044,15,0.02807809 +32,2044,16,0.024477458 +32,2044,17,0.021101358 +32,2044,18,0.018111283 +32,2044,19,0.015159021 +32,2044,20,0.012728427 +32,2044,21,0.010756409 +32,2044,22,0.009087668 +32,2044,23,0.007657566 +32,2044,24,0.006407488 +32,2044,25,0.005398981 +32,2044,26,0.004565787 +32,2044,27,0.003809424 +32,2044,28,0.003155114 +32,2044,29,0.002503571 +32,2044,30,0.002089953 +41,2044,0,0.062502586 +41,2044,1,0.061717946 +41,2044,2,0.060977756 +41,2044,3,0.060222104 +41,2044,4,0.060458058 +41,2044,5,0.058872383 +41,2044,6,0.056514715 +41,2044,7,0.053881903 +41,2044,8,0.050756337 +41,2044,9,0.047833724 +41,2044,10,0.04496004 +41,2044,11,0.041818303 +41,2044,12,0.039095277 +41,2044,13,0.035908225 +41,2044,14,0.033070424 +41,2044,15,0.030454749 +41,2044,16,0.02755433 +41,2044,17,0.024891136 +41,2044,18,0.022085273 +41,2044,19,0.019545572 +41,2044,20,0.016986844 +41,2044,21,0.014822228 +41,2044,22,0.013235838 +41,2044,23,0.011657495 +41,2044,24,0.010364102 +41,2044,25,0.009169445 +41,2044,26,0.008070252 +41,2044,27,0.006915556 +41,2044,28,0.006105385 +41,2044,29,0.005177332 +41,2044,30,0.004375212 +42,2044,0,0.062503928 +42,2044,1,0.061724026 +42,2044,2,0.061054345 +42,2044,3,0.060294816 +42,2044,4,0.060567656 +42,2044,5,0.05904294 +42,2044,6,0.056654525 +42,2044,7,0.053915974 +42,2044,8,0.050766992 +42,2044,9,0.047778083 +42,2044,10,0.044860847 +42,2044,11,0.041695604 +42,2044,12,0.038980005 +42,2044,13,0.03573242 +42,2044,14,0.032858598 +42,2044,15,0.030300687 +42,2044,16,0.027471763 +42,2044,17,0.02486345 +42,2044,18,0.022057698 +42,2044,19,0.019533733 +42,2044,20,0.016994335 +42,2044,21,0.014850758 +42,2044,22,0.01328272 +42,2044,23,0.011726785 +42,2044,24,0.010432896 +42,2044,25,0.00922839 +42,2044,26,0.008116335 +42,2044,27,0.006953597 +42,2044,28,0.006139625 +42,2044,29,0.005208792 +42,2044,30,0.004409843 +43,2044,0,0.06250506 +43,2044,1,0.061722778 +43,2044,2,0.060937994 +43,2044,3,0.060174693 +43,2044,4,0.060473587 +43,2044,5,0.058927804 +43,2044,6,0.056553585 +43,2044,7,0.053934055 +43,2044,8,0.050774791 +43,2044,9,0.047820601 +43,2044,10,0.044901456 +43,2044,11,0.041741724 +43,2044,12,0.038993293 +43,2044,13,0.035814246 +43,2044,14,0.032977278 +43,2044,15,0.030378789 +43,2044,16,0.027516137 +43,2044,17,0.024886021 +43,2044,18,0.022099026 +43,2044,19,0.019545671 +43,2044,20,0.017004552 +43,2044,21,0.014858331 +43,2044,22,0.013292074 +43,2044,23,0.01172175 +43,2044,24,0.010414459 +43,2044,25,0.009216309 +43,2044,26,0.008112755 +43,2044,27,0.006953709 +43,2044,28,0.006139652 +43,2044,29,0.005207234 +43,2044,30,0.004400917 +51,2044,0,0.066936143 +51,2044,1,0.066291483 +51,2044,2,0.065656593 +51,2044,3,0.06504167 +51,2044,4,0.064932308 +51,2044,5,0.063268074 +51,2044,6,0.060547251 +51,2044,7,0.057546179 +51,2044,8,0.053740968 +51,2044,9,0.05013426 +51,2044,10,0.046645817 +51,2044,11,0.042752258 +51,2044,12,0.039353832 +51,2044,13,0.035398348 +51,2044,14,0.03198499 +51,2044,15,0.029002593 +51,2044,16,0.025591813 +51,2044,17,0.022603971 +51,2044,18,0.019506224 +51,2044,19,0.016755132 +51,2044,20,0.014021468 +51,2044,21,0.01177341 +51,2044,22,0.010152216 +51,2044,23,0.008557693 +51,2044,24,0.007302888 +51,2044,25,0.006218262 +51,2044,26,0.005243352 +51,2044,27,0.004316766 +51,2044,28,0.003613013 +51,2044,29,0.002888926 +51,2044,30,0.002223377 +52,2044,0,0.066940451 +52,2044,1,0.066300955 +52,2044,2,0.065674845 +52,2044,3,0.065054819 +52,2044,4,0.064920359 +52,2044,5,0.063317289 +52,2044,6,0.060511908 +52,2044,7,0.057497652 +52,2044,8,0.053658452 +52,2044,9,0.050081861 +52,2044,10,0.046606283 +52,2044,11,0.042747775 +52,2044,12,0.039379049 +52,2044,13,0.035512923 +52,2044,14,0.032062521 +52,2044,15,0.028959942 +52,2044,16,0.025614329 +52,2044,17,0.022582012 +52,2044,18,0.019456334 +52,2044,19,0.016698429 +52,2044,20,0.013990681 +52,2044,21,0.011750195 +52,2044,22,0.010119099 +52,2044,23,0.008539872 +52,2044,24,0.007285008 +52,2044,25,0.006221398 +52,2044,26,0.005271042 +52,2044,27,0.00436512 +52,2044,28,0.00366699 +52,2044,29,0.002940803 +52,2044,30,0.002271624 +53,2044,0,0.066953279 +53,2044,1,0.066329081 +53,2044,2,0.065694402 +53,2044,3,0.065072863 +53,2044,4,0.064937258 +53,2044,5,0.063297252 +53,2044,6,0.060470872 +53,2044,7,0.057398064 +53,2044,8,0.053509158 +53,2044,9,0.049855893 +53,2044,10,0.046298452 +53,2044,11,0.042350238 +53,2044,12,0.039005223 +53,2044,13,0.035427644 +53,2044,14,0.032250041 +53,2044,15,0.029101087 +53,2044,16,0.025633552 +53,2044,17,0.02255201 +53,2044,18,0.019408245 +53,2044,19,0.016679951 +53,2044,20,0.014144111 +53,2044,21,0.011891868 +53,2044,22,0.010272739 +53,2044,23,0.0086874 +53,2044,24,0.007493205 +53,2044,25,0.006401606 +53,2044,26,0.005400236 +53,2044,27,0.004454961 +53,2044,28,0.003733921 +53,2044,29,0.002989699 +53,2044,30,0.002305847 +54,2044,0,0.066931305 +54,2044,1,0.066280922 +54,2044,2,0.065667268 +54,2044,3,0.065084221 +54,2044,4,0.064978002 +54,2044,5,0.063367567 +54,2044,6,0.060547572 +54,2044,7,0.057510203 +54,2044,8,0.05368138 +54,2044,9,0.050135373 +54,2044,10,0.046705045 +54,2044,11,0.042901716 +54,2044,12,0.039574267 +54,2044,13,0.03562733 +54,2044,14,0.032128963 +54,2044,15,0.029003127 +54,2044,16,0.025637599 +54,2044,17,0.02257387 +54,2044,18,0.019399661 +54,2044,19,0.016628462 +54,2044,20,0.01391333 +54,2044,21,0.011671364 +54,2044,22,0.010030719 +54,2044,23,0.008445008 +54,2044,24,0.007195398 +54,2044,25,0.006137848 +54,2044,26,0.005196737 +54,2044,27,0.004300384 +54,2044,28,0.003612741 +54,2044,29,0.002897137 +54,2044,30,0.002235497 +61,2044,0,0.058760218 +61,2044,1,0.058002856 +61,2044,2,0.057168542 +61,2044,3,0.056336115 +61,2044,4,0.057056331 +61,2044,5,0.055440802 +61,2044,6,0.053158924 +61,2044,7,0.050616998 +61,2044,8,0.047749259 +61,2044,9,0.045069312 +61,2044,10,0.042422073 +61,2044,11,0.039704981 +61,2044,12,0.037416066 +61,2044,13,0.034750068 +61,2044,14,0.032471286 +61,2044,15,0.030405686 +61,2044,16,0.02813432 +61,2044,17,0.026106348 +61,2044,18,0.02388402 +61,2044,19,0.021770722 +61,2044,20,0.019566006 +61,2044,21,0.017710078 +61,2044,22,0.016396746 +61,2044,23,0.015045009 +61,2044,24,0.01391028 +61,2044,25,0.012736724 +61,2044,26,0.011605255 +61,2044,27,0.01019264 +61,2044,28,0.009327836 +61,2044,29,0.008238666 +61,2044,30,0.008845835 +62,2044,0,0.058652116 +62,2044,1,0.057806136 +62,2044,2,0.057038863 +62,2044,3,0.05628954 +62,2044,4,0.057182742 +62,2044,5,0.055814741 +62,2044,6,0.053903605 +62,2044,7,0.051662813 +62,2044,8,0.04903995 +62,2044,9,0.046535618 +62,2044,10,0.044038351 +62,2044,11,0.041387351 +62,2044,12,0.039063642 +62,2044,13,0.036311913 +62,2044,14,0.033845409 +62,2044,15,0.031464284 +62,2044,16,0.028788809 +62,2044,17,0.026338026 +62,2044,18,0.023746082 +62,2044,19,0.021345323 +62,2044,20,0.018911534 +62,2044,21,0.016879078 +62,2044,22,0.015378147 +62,2044,23,0.013850286 +62,2044,24,0.012551766 +62,2044,25,0.011254259 +62,2044,26,0.010042102 +62,2044,27,0.008685653 +62,2044,28,0.007892726 +62,2044,29,0.006925064 +62,2044,30,0.007373915 +11,2045,0,0.070643683 +11,2045,1,0.070010666 +11,2045,2,0.067882899 +11,2045,3,0.063109525 +11,2045,4,0.058648016 +11,2045,5,0.0544328 +11,2045,6,0.050643028 +11,2045,7,0.047066465 +11,2045,8,0.04381013 +11,2045,9,0.040884412 +11,2045,10,0.038220073 +11,2045,11,0.035739693 +11,2045,12,0.033313806 +11,2045,13,0.031220936 +11,2045,14,0.029203566 +11,2045,15,0.02732074 +11,2045,16,0.025513313 +11,2045,17,0.023777855 +11,2045,18,0.022004656 +11,2045,19,0.020166804 +11,2045,20,0.018607632 +11,2045,21,0.016969939 +11,2045,22,0.015750525 +11,2045,23,0.014607602 +11,2045,24,0.013541357 +11,2045,25,0.012588306 +11,2045,26,0.011684576 +11,2045,27,0.010872419 +11,2045,28,0.010301297 +11,2045,29,0.009561639 +11,2045,30,0.011901621 +21,2045,0,0.070643681 +21,2045,1,0.069748337 +21,2045,2,0.068863992 +21,2045,3,0.067982638 +21,2045,4,0.066836452 +21,2045,5,0.065415821 +21,2045,6,0.063888941 +21,2045,7,0.061976105 +21,2045,8,0.059751026 +21,2045,9,0.057180483 +21,2045,10,0.054433751 +21,2045,11,0.051491207 +21,2045,12,0.048236651 +21,2045,13,0.043185291 +21,2045,14,0.035804077 +21,2045,15,0.028776255 +21,2045,16,0.022509098 +21,2045,17,0.017229698 +21,2045,18,0.012871332 +21,2045,19,0.009388592 +21,2045,20,0.006829348 +21,2045,21,0.004880796 +21,2045,22,0.003534774 +21,2045,23,0.002546964 +21,2045,24,0.001830384 +21,2045,25,0.001323196 +21,2045,26,0.000953728 +21,2045,27,0.000689839 +21,2045,28,0.000507864 +21,2045,29,0.0003659 +21,2045,30,0.000323779 +31,2045,0,0.071415263 +31,2045,1,0.069964805 +31,2045,2,0.068533802 +31,2045,3,0.067120086 +31,2045,4,0.0652508 +31,2045,5,0.062809912 +31,2045,6,0.060495894 +31,2045,7,0.05765328 +31,2045,8,0.054261254 +31,2045,9,0.050632414 +31,2045,10,0.046883503 +31,2045,11,0.042988675 +31,2045,12,0.039271366 +31,2045,13,0.035585084 +31,2045,14,0.031947059 +31,2045,15,0.02802514 +31,2045,16,0.024388983 +31,2045,17,0.021095924 +31,2045,18,0.01806096 +31,2045,19,0.015406523 +31,2045,20,0.012825288 +31,2045,21,0.010719708 +31,2045,22,0.00901967 +31,2045,23,0.007600268 +31,2045,24,0.006381285 +31,2045,25,0.005332102 +31,2045,26,0.004490839 +31,2045,27,0.003794424 +31,2045,28,0.00317327 +31,2045,29,0.002632629 +31,2045,30,0.002239785 +32,2045,0,0.071411447 +32,2045,1,0.069955938 +32,2045,2,0.068518817 +32,2045,3,0.06710761 +32,2045,4,0.065238316 +32,2045,5,0.06279715 +32,2045,6,0.060486921 +32,2045,7,0.057647752 +32,2045,8,0.054261879 +32,2045,9,0.050638697 +32,2045,10,0.046896257 +32,2045,11,0.043007742 +32,2045,12,0.039296933 +32,2045,13,0.035618508 +32,2045,14,0.0319818 +32,2045,15,0.028054941 +32,2045,16,0.024408301 +32,2045,17,0.02111332 +32,2045,18,0.018075754 +32,2045,19,0.015421077 +32,2045,20,0.012833224 +32,2045,21,0.010726773 +32,2045,22,0.009022233 +32,2045,23,0.007598515 +32,2045,24,0.006375437 +32,2045,25,0.005321117 +32,2045,26,0.004474325 +32,2045,27,0.003771762 +32,2045,28,0.003143916 +32,2045,29,0.002597245 +32,2045,30,0.002196301 +41,2045,0,0.062501122 +41,2045,1,0.061716805 +41,2045,2,0.060942029 +41,2045,3,0.060211144 +41,2045,4,0.059464993 +41,2045,5,0.058884765 +41,2045,6,0.056548468 +41,2045,7,0.054283866 +41,2045,8,0.05103022 +41,2045,9,0.048070074 +41,2045,10,0.045302139 +41,2045,11,0.041975788 +41,2045,12,0.039042586 +41,2045,13,0.035974435 +41,2045,14,0.033041795 +41,2045,15,0.030430525 +41,2045,16,0.027614007 +41,2045,17,0.024984132 +41,2045,18,0.022234546 +41,2045,19,0.019728148 +41,2045,20,0.0171966 +41,2045,21,0.014945378 +41,2045,22,0.013040903 +41,2045,23,0.011467131 +41,2045,24,0.010099702 +41,2045,25,0.008979145 +41,2045,26,0.007820792 +41,2045,27,0.00688327 +41,2045,28,0.005898408 +41,2045,29,0.005125275 +41,2045,30,0.004546869 +42,2045,0,0.06250355 +42,2045,1,0.061720528 +42,2045,2,0.060950401 +42,2045,3,0.060289114 +42,2045,4,0.059539104 +42,2045,5,0.058993803 +42,2045,6,0.056714496 +42,2045,7,0.054420271 +42,2045,8,0.051064472 +42,2045,9,0.048082033 +42,2045,10,0.045251201 +42,2045,11,0.041884806 +42,2045,12,0.038929543 +42,2045,13,0.035869759 +42,2045,14,0.032881301 +42,2045,15,0.030236783 +42,2045,16,0.027475383 +42,2045,17,0.024910234 +42,2045,18,0.022210677 +42,2045,19,0.019704281 +42,2045,20,0.017186851 +42,2045,21,0.014952549 +42,2045,22,0.013066512 +42,2045,23,0.011508195 +42,2045,24,0.010160128 +42,2045,25,0.009039098 +42,2045,26,0.007871373 +42,2045,27,0.006922844 +42,2045,28,0.005931084 +42,2045,29,0.005154218 +42,2045,30,0.004575045 +43,2045,0,0.062505019 +43,2045,1,0.061723096 +43,2045,2,0.060950601 +43,2045,3,0.060175634 +43,2045,4,0.059421883 +43,2045,5,0.058903562 +43,2045,6,0.05660523 +43,2045,7,0.054324588 +43,2045,8,0.051082797 +43,2045,9,0.04809055 +43,2045,10,0.045292534 +43,2045,11,0.041923706 +43,2045,12,0.038973519 +43,2045,13,0.035882829 +43,2045,14,0.032957373 +43,2045,15,0.030346707 +43,2045,16,0.02754685 +43,2045,17,0.024951057 +43,2045,18,0.022231363 +43,2045,19,0.019741664 +43,2045,20,0.017197759 +43,2045,21,0.01496189 +43,2045,22,0.013073483 +43,2045,23,0.01151657 +43,2045,24,0.010156004 +43,2045,25,0.009023336 +43,2045,26,0.007861253 +43,2045,27,0.006919953 +43,2045,28,0.005931319 +43,2045,29,0.005154363 +43,2045,30,0.004573435 +51,2045,0,0.066935062 +51,2045,1,0.066290311 +51,2045,2,0.065651871 +51,2045,3,0.065023107 +51,2045,4,0.064414117 +51,2045,5,0.063157258 +51,2045,6,0.060419406 +51,2045,7,0.057821089 +51,2045,8,0.05393724 +51,2045,9,0.050370668 +51,2045,10,0.04699015 +51,2045,11,0.042895384 +51,2045,12,0.039314876 +51,2045,13,0.035493584 +51,2045,14,0.031926097 +51,2045,15,0.028847558 +51,2045,16,0.025644696 +51,2045,17,0.022628813 +51,2045,18,0.019587072 +51,2045,19,0.016902774 +51,2045,20,0.014222491 +51,2045,21,0.011902038 +51,2045,22,0.009993788 +51,2045,23,0.00843807 +51,2045,24,0.007112773 +51,2045,25,0.006069835 +51,2045,26,0.00505835 +51,2045,27,0.004265294 +51,2045,28,0.003511546 +51,2045,29,0.002875158 +51,2045,30,0.002298945 +52,2045,0,0.066938624 +52,2045,1,0.066298105 +52,2045,2,0.065664746 +52,2045,3,0.065044644 +52,2045,4,0.064430568 +52,2045,5,0.063148996 +52,2045,6,0.060469623 +52,2045,7,0.057790413 +52,2045,8,0.053894624 +52,2045,9,0.050296003 +52,2045,10,0.046943535 +52,2045,11,0.04286131 +52,2045,12,0.039312846 +52,2045,13,0.035518217 +52,2045,14,0.032031137 +52,2045,15,0.028919022 +52,2045,16,0.025608346 +52,2045,17,0.022649927 +52,2045,18,0.019569086 +52,2045,19,0.01686044 +52,2045,20,0.014175114 +52,2045,21,0.011876536 +52,2045,22,0.009974612 +52,2045,23,0.008410992 +52,2045,24,0.007098339 +52,2045,25,0.006055296 +52,2045,26,0.005061171 +52,2045,27,0.004288046 +52,2045,28,0.00355107 +52,2045,29,0.002918267 +52,2045,30,0.002340353 +53,2045,0,0.066948883 +53,2045,1,0.066320972 +53,2045,2,0.065702669 +53,2045,3,0.065073984 +53,2045,4,0.064458315 +53,2045,5,0.063175115 +53,2045,6,0.060459751 +53,2045,7,0.057760073 +53,2045,8,0.053809522 +53,2045,9,0.050163751 +53,2045,10,0.046738889 +53,2045,11,0.042584739 +53,2045,12,0.038953221 +53,2045,13,0.035186434 +53,2045,14,0.031959116 +53,2045,15,0.029092615 +53,2045,16,0.025737099 +53,2045,17,0.0226704 +53,2045,18,0.019546081 +53,2045,19,0.016821344 +53,2045,20,0.014161598 +53,2045,21,0.012008622 +53,2045,22,0.010096424 +53,2045,23,0.008540007 +53,2045,24,0.007222071 +53,2045,25,0.006229304 +53,2045,26,0.00520857 +53,2045,27,0.004393821 +53,2045,28,0.003624712 +53,2045,29,0.002971988 +53,2045,30,0.002379629 +54,2045,0,0.066931207 +54,2045,1,0.066281702 +54,2045,2,0.065637632 +54,2045,3,0.065029933 +54,2045,4,0.064452545 +54,2045,5,0.063198063 +54,2045,6,0.060510935 +54,2045,7,0.057818066 +54,2045,8,0.053900416 +54,2045,9,0.050311919 +54,2045,10,0.046988487 +54,2045,11,0.042947377 +54,2045,12,0.039450046 +54,2045,13,0.035690341 +54,2045,14,0.032130767 +54,2045,15,0.02897574 +54,2045,16,0.02564369 +54,2045,17,0.022667993 +54,2045,18,0.019559862 +54,2045,19,0.016809466 +54,2045,20,0.014114155 +54,2045,21,0.011809566 +54,2045,22,0.009906596 +54,2045,23,0.008336607 +54,2045,24,0.007018711 +54,2045,25,0.00598015 +54,2045,26,0.004992649 +54,2045,27,0.00422713 +54,2045,28,0.003498019 +54,2045,29,0.002874776 +54,2045,30,0.002305346 +61,2045,0,0.058757866 +61,2045,1,0.05800993 +61,2045,2,0.057262238 +61,2045,3,0.056438578 +61,2045,4,0.05561678 +61,2045,5,0.05571697 +61,2045,6,0.053545829 +61,2045,7,0.051341947 +61,2045,8,0.048345011 +61,2045,9,0.045605993 +61,2045,10,0.043046338 +61,2045,11,0.04006376 +61,2045,12,0.037497716 +61,2045,13,0.034935479 +61,2045,14,0.03244623 +61,2045,15,0.030318525 +61,2045,16,0.028064353 +61,2045,17,0.025967889 +61,2045,18,0.023816591 +61,2045,19,0.02178918 +61,2045,20,0.019628166 +61,2045,21,0.017640425 +61,2045,22,0.015967148 +61,2045,23,0.014607528 +61,2045,24,0.013403293 +61,2045,25,0.012392386 +61,2045,26,0.011210532 +61,2045,27,0.010214643 +61,2045,28,0.008971295 +61,2045,29,0.008110256 +61,2045,30,0.009267055 +62,2045,0,0.058654011 +62,2045,1,0.057800865 +62,2045,2,0.056967163 +62,2045,3,0.056211026 +62,2045,4,0.055472578 +62,2045,5,0.055741716 +62,2045,6,0.053811707 +62,2045,7,0.051969156 +62,2045,8,0.049256669 +62,2045,9,0.046755963 +62,2045,10,0.044368268 +62,2045,11,0.041516677 +62,2045,12,0.039017475 +62,2045,13,0.036409358 +62,2045,14,0.033844602 +62,2045,15,0.031545692 +62,2045,16,0.028990106 +62,2045,17,0.026525015 +62,2045,18,0.023985479 +62,2045,19,0.021625051 +62,2045,20,0.019210617 +62,2045,21,0.017020226 +62,2045,22,0.015191033 +62,2045,23,0.013675864 +62,2045,24,0.012317129 +62,2045,25,0.011162349 +62,2045,26,0.009888197 +62,2045,27,0.008823174 +62,2045,28,0.007631373 +62,2045,29,0.006850345 +62,2045,30,0.007761112 +11,2046,0,0.070643682 +11,2046,1,0.070010668 +11,2046,2,0.067888008 +11,2046,3,0.063132141 +11,2046,4,0.058692829 +11,2046,5,0.054543558 +11,2046,6,0.050623341 +11,2046,7,0.047098795 +11,2046,8,0.043772536 +11,2046,9,0.040744095 +11,2046,10,0.038023132 +11,2046,11,0.035545256 +11,2046,12,0.033238465 +11,2046,13,0.030982352 +11,2046,14,0.029035951 +11,2046,15,0.027159766 +11,2046,16,0.025408709 +11,2046,17,0.023727773 +11,2046,18,0.022113771 +11,2046,19,0.020464669 +11,2046,20,0.018755438 +11,2046,21,0.017305384 +11,2046,22,0.015782304 +11,2046,23,0.01464823 +11,2046,24,0.013585295 +11,2046,25,0.012593671 +11,2046,26,0.011707318 +11,2046,27,0.010866836 +11,2046,28,0.010111517 +11,2046,29,0.009580365 +11,2046,30,0.012214134 +21,2046,0,0.070643681 +21,2046,1,0.069748547 +21,2046,2,0.068864549 +21,2046,3,0.067983665 +21,2046,4,0.066838403 +21,2046,5,0.065471032 +21,2046,6,0.063785221 +21,2046,7,0.061965957 +21,2046,8,0.059755311 +21,2046,9,0.05724046 +21,2046,10,0.054405029 +21,2046,11,0.051442759 +21,2046,12,0.048320317 +21,2046,13,0.043004547 +21,2046,14,0.035723681 +21,2046,15,0.028707994 +21,2046,16,0.022471223 +21,2046,17,0.017210261 +21,2046,18,0.01295283 +21,2046,19,0.00955476 +21,2046,20,0.006894473 +21,2046,21,0.004977477 +21,2046,22,0.003538094 +21,2046,23,0.002548451 +21,2046,24,0.001828828 +21,2046,25,0.001314087 +21,2046,26,0.000945945 +21,2046,27,0.0006816 +21,2046,28,0.000492308 +21,2046,29,0.00036187 +21,2046,30,0.000326637 +31,2046,0,0.071414998 +31,2046,1,0.069965122 +31,2046,2,0.068534879 +31,2046,3,0.067124074 +31,2046,4,0.065261005 +31,2046,5,0.063021443 +31,2046,6,0.060224528 +31,2046,7,0.057550583 +31,2046,8,0.054382135 +31,2046,9,0.050738485 +31,2046,10,0.046937541 +31,2046,11,0.043097069 +31,2046,12,0.039193347 +31,2046,13,0.035529483 +31,2046,14,0.031936088 +31,2046,15,0.028009037 +31,2046,16,0.024367096 +31,2046,17,0.021041369 +31,2046,18,0.018075001 +31,2046,19,0.015381663 +31,2046,20,0.013045758 +31,2046,21,0.010810954 +31,2046,22,0.008993625 +31,2046,23,0.007543514 +31,2046,24,0.006329323 +31,2046,25,0.005300705 +31,2046,26,0.004420037 +31,2046,27,0.003710817 +31,2046,28,0.003132359 +31,2046,29,0.002612884 +31,2046,30,0.00231508 +32,2046,0,0.071412497 +32,2046,1,0.069958933 +32,2046,2,0.068523793 +32,2046,3,0.067107047 +32,2046,4,0.06524659 +32,2046,5,0.063007179 +32,2046,6,0.060210182 +32,2046,7,0.057540033 +32,2046,8,0.054375017 +32,2046,9,0.050737293 +32,2046,10,0.046941722 +32,2046,11,0.043107284 +32,2046,12,0.039209358 +32,2046,13,0.035551368 +32,2046,14,0.031964965 +32,2046,15,0.028038514 +32,2046,16,0.024392153 +32,2046,17,0.021057298 +32,2046,18,0.018089272 +32,2046,19,0.015393723 +32,2046,20,0.013057624 +32,2046,21,0.010817265 +32,2046,22,0.008999237 +32,2046,23,0.007545394 +32,2046,24,0.006327642 +32,2046,25,0.005295662 +32,2046,26,0.004410776 +32,2046,27,0.003697042 +32,2046,28,0.003113541 +32,2046,29,0.002588623 +32,2046,30,0.002282987 +41,2046,0,0.062503558 +41,2046,1,0.061717765 +41,2046,2,0.060943278 +41,2046,3,0.060178213 +41,2046,4,0.059456489 +41,2046,5,0.057921501 +41,2046,6,0.056565933 +41,2046,7,0.054321637 +41,2046,8,0.05141757 +41,2046,9,0.048335723 +41,2046,10,0.045531879 +41,2046,11,0.04230201 +41,2046,12,0.039195946 +41,2046,13,0.035932933 +41,2046,14,0.033109153 +41,2046,15,0.030410091 +41,2046,16,0.02759834 +41,2046,17,0.025043956 +41,2046,18,0.022323487 +41,2046,19,0.019866714 +41,2046,20,0.017362423 +41,2046,21,0.015134449 +41,2046,22,0.013153185 +41,2046,23,0.011302042 +41,2046,24,0.009938114 +41,2046,25,0.008753017 +41,2046,26,0.007661348 +41,2046,27,0.006672998 +41,2046,28,0.005873068 +41,2046,29,0.004953573 +41,2046,30,0.004521932 +42,2046,0,0.06250331 +42,2046,1,0.061719917 +42,2046,2,0.060946712 +42,2046,3,0.06018624 +42,2046,4,0.059533244 +42,2046,5,0.057993457 +42,2046,6,0.056670452 +42,2046,7,0.05448091 +42,2046,8,0.051546568 +42,2046,9,0.048367975 +42,2046,10,0.045543025 +42,2046,11,0.042254277 +42,2046,12,0.039110834 +42,2046,13,0.035828752 +42,2046,14,0.033012683 +42,2046,15,0.03026226 +42,2046,16,0.02742252 +42,2046,17,0.024918135 +42,2046,18,0.022257371 +42,2046,19,0.019845308 +42,2046,20,0.017341349 +42,2046,21,0.015125809 +42,2046,22,0.013159444 +42,2046,23,0.011324191 +42,2046,24,0.009973664 +42,2046,25,0.008805351 +42,2046,26,0.007712472 +42,2046,27,0.006716129 +42,2046,28,0.00590681 +42,2046,29,0.004980995 +42,2046,30,0.004547569 +43,2046,0,0.062505047 +43,2046,1,0.061723083 +43,2046,2,0.060950941 +43,2046,3,0.06018811 +43,2046,4,0.059422838 +43,2046,5,0.057880888 +43,2046,6,0.056585337 +43,2046,7,0.054377459 +43,2046,8,0.051457367 +43,2046,9,0.048386676 +43,2046,10,0.045552358 +43,2046,11,0.042294048 +43,2046,12,0.039148245 +43,2046,13,0.035870221 +43,2046,14,0.03302563 +43,2046,15,0.030333115 +43,2046,16,0.027522978 +43,2046,17,0.024983645 +43,2046,18,0.022294466 +43,2046,19,0.019864343 +43,2046,20,0.017374732 +43,2046,21,0.015135829 +43,2046,22,0.013168031 +43,2046,23,0.011330547 +43,2046,24,0.009981199 +43,2046,25,0.008802022 +43,2046,26,0.007699237 +43,2046,27,0.00670768 +43,2046,28,0.005904508 +43,2046,29,0.004981331 +43,2046,30,0.00454774 +51,2046,0,0.066934897 +51,2046,1,0.066289077 +51,2046,2,0.065650548 +51,2046,3,0.06501827 +51,2046,4,0.064395574 +51,2046,5,0.06265387 +51,2046,6,0.060314983 +51,2046,7,0.057700343 +51,2046,8,0.054196906 +51,2046,9,0.050556494 +51,2046,10,0.047213472 +51,2046,11,0.043214235 +51,2046,12,0.039448506 +51,2046,13,0.035460777 +51,2046,14,0.032014092 +51,2046,15,0.028796331 +51,2046,16,0.025509673 +51,2046,17,0.022677407 +51,2046,18,0.019610496 +51,2046,19,0.016974473 +51,2046,20,0.014349442 +51,2046,21,0.012074043 +51,2046,22,0.010104117 +51,2046,23,0.008307476 +51,2046,24,0.007014264 +51,2046,25,0.005912592 +51,2046,26,0.004938343 +51,2046,27,0.004115412 +51,2046,28,0.003470191 +51,2046,29,0.002794881 +51,2046,30,0.002288371 +52,2046,0,0.066937343 +52,2046,1,0.066295026 +52,2046,2,0.065660665 +52,2046,3,0.065033396 +52,2046,4,0.064419256 +52,2046,5,0.062672161 +52,2046,6,0.060309296 +52,2046,7,0.057750409 +52,2046,8,0.054170132 +52,2046,9,0.050518394 +52,2046,10,0.047145209 +52,2046,11,0.043172942 +52,2046,12,0.039418609 +52,2046,13,0.035460241 +52,2046,14,0.03203748 +52,2046,15,0.028892129 +52,2046,16,0.025573803 +52,2046,17,0.02264609 +52,2046,18,0.019629511 +52,2046,19,0.016959506 +52,2046,20,0.014314026 +52,2046,21,0.012034262 +52,2046,22,0.010082836 +52,2046,23,0.008291839 +52,2046,24,0.00699201 +52,2046,25,0.005900809 +52,2046,26,0.004926695 +52,2046,27,0.004117857 +52,2046,28,0.003488829 +52,2046,29,0.002826441 +52,2046,30,0.002322768 +53,2046,0,0.066945883 +53,2046,1,0.066313646 +53,2046,2,0.065691693 +53,2046,3,0.065079257 +53,2046,4,0.064456537 +53,2046,5,0.062707151 +53,2046,6,0.060341938 +53,2046,7,0.057748348 +53,2046,8,0.0541486 +53,2046,9,0.050445059 +53,2046,10,0.047027241 +53,2046,11,0.042990218 +53,2046,12,0.03916925 +53,2046,13,0.035140342 +53,2046,14,0.031742261 +53,2046,15,0.028830844 +53,2046,16,0.025730598 +53,2046,17,0.022762854 +53,2046,18,0.01964976 +53,2046,19,0.01694173 +53,2046,20,0.014282657 +53,2046,21,0.012024322 +53,2046,22,0.010196273 +53,2046,23,0.008394171 +53,2046,24,0.007100165 +53,2046,25,0.006004432 +53,2046,26,0.005068918 +53,2046,27,0.004238324 +53,2046,28,0.003575345 +53,2046,29,0.002885424 +53,2046,30,0.002365828 +54,2046,0,0.066931469 +54,2046,1,0.066281865 +54,2046,2,0.06563866 +54,2046,3,0.065000839 +54,2046,4,0.064399036 +54,2046,5,0.062688037 +54,2046,6,0.06035086 +54,2046,7,0.057784792 +54,2046,8,0.054191297 +54,2046,9,0.05051939 +54,2046,10,0.04715599 +54,2046,11,0.043210492 +54,2046,12,0.039494297 +54,2046,13,0.035580873 +54,2046,14,0.032189911 +54,2046,15,0.028979452 +54,2046,16,0.025621711 +54,2046,17,0.022675357 +54,2046,18,0.019643443 +54,2046,19,0.016950025 +54,2046,20,0.014269498 +54,2046,21,0.011981459 +54,2046,22,0.0100251 +54,2046,23,0.008234575 +54,2046,24,0.006929566 +54,2046,25,0.005834102 +54,2046,26,0.004865127 +54,2046,27,0.00406175 +54,2046,28,0.003438965 +54,2046,29,0.002783971 +54,2046,30,0.002287951 +61,2046,0,0.05875168 +61,2046,1,0.058001501 +61,2046,2,0.057263193 +61,2046,3,0.056525127 +61,2046,4,0.055712069 +61,2046,5,0.054308641 +61,2046,6,0.053813199 +61,2046,7,0.051716243 +61,2046,8,0.049040975 +61,2046,9,0.046178352 +61,2046,10,0.043562087 +61,2046,11,0.040658786 +61,2046,12,0.037841636 +61,2046,13,0.03501864 +61,2046,14,0.0326258 +61,2046,15,0.030301122 +61,2046,16,0.027991253 +61,2046,17,0.025910113 +61,2046,18,0.023698069 +61,2046,19,0.021734813 +61,2046,20,0.019652603 +61,2046,21,0.017703491 +61,2046,22,0.015910662 +61,2046,23,0.014231442 +61,2046,24,0.01301962 +61,2046,25,0.011946291 +61,2046,26,0.010913319 +61,2046,27,0.009872523 +61,2046,28,0.008995496 +61,2046,29,0.007805019 +61,2046,30,0.009296371 +62,2046,0,0.058658822 +62,2046,1,0.057807474 +62,2046,2,0.056966641 +62,2046,3,0.056144972 +62,2046,4,0.055399748 +62,2046,5,0.054082218 +62,2046,6,0.05375201 +62,2046,7,0.051890892 +62,2046,8,0.049561618 +62,2046,9,0.04697479 +62,2046,10,0.044589933 +62,2046,11,0.04184116 +62,2046,12,0.039151989 +62,2046,13,0.036380333 +62,2046,14,0.033948496 +62,2046,15,0.031557089 +62,2046,16,0.029078191 +62,2046,17,0.026722502 +62,2046,18,0.024168238 +62,2046,19,0.021854342 +62,2046,20,0.019473741 +62,2046,21,0.017299501 +62,2046,22,0.015327015 +62,2046,23,0.013518295 +62,2046,24,0.012169967 +62,2046,25,0.010960847 +62,2046,26,0.009814554 +62,2046,27,0.008694249 +62,2046,28,0.007757822 +62,2046,29,0.006628794 +62,2046,30,0.007823779 +11,2047,0,0.070643684 +11,2047,1,0.07001067 +11,2047,2,0.067892927 +11,2047,3,0.063150511 +11,2047,4,0.058726528 +11,2047,5,0.054597009 +11,2047,6,0.05073729 +11,2047,7,0.047090642 +11,2047,8,0.043812053 +11,2047,9,0.040717914 +11,2047,10,0.03790081 +11,2047,11,0.035369726 +11,2047,12,0.033064766 +11,2047,13,0.030918952 +11,2047,14,0.028820279 +11,2047,15,0.027009706 +11,2047,16,0.025264449 +11,2047,17,0.023635588 +11,2047,18,0.022071955 +11,2047,19,0.020570584 +11,2047,20,0.019036562 +11,2047,21,0.017446609 +11,2047,22,0.016097745 +11,2047,23,0.014680952 +11,2047,24,0.013626018 +11,2047,25,0.012637259 +11,2047,26,0.011714834 +11,2047,27,0.010890335 +11,2047,28,0.010108505 +11,2047,29,0.009405895 +11,2047,30,0.012349275 +21,2047,0,0.070643681 +21,2047,1,0.069748673 +21,2047,2,0.06886488 +21,2047,3,0.06798434 +21,2047,4,0.066839668 +21,2047,5,0.065473309 +21,2047,6,0.063839555 +21,2047,7,0.061866004 +21,2047,8,0.059746322 +21,2047,9,0.057245508 +21,2047,10,0.054463177 +21,2047,11,0.051416811 +21,2047,12,0.048276146 +21,2047,13,0.043081435 +21,2047,14,0.035577531 +21,2047,15,0.028646761 +21,2047,16,0.0224208 +21,2047,17,0.017183733 +21,2047,18,0.012940184 +21,2047,19,0.009616797 +21,2047,20,0.007017669 +21,2047,21,0.005025806 +21,2047,22,0.003608811 +21,2047,23,0.002551301 +21,2047,24,0.001830228 +21,2047,25,0.001313209 +21,2047,26,0.000939607 +21,2047,27,0.000676163 +21,2047,28,0.000486519 +21,2047,29,0.000350851 +21,2047,30,0.000324521 +31,2047,0,0.071414784 +31,2047,1,0.069965268 +31,2047,2,0.068535595 +31,2047,3,0.067125533 +31,2047,4,0.065265644 +31,2047,5,0.063032362 +31,2047,6,0.060428715 +31,2047,7,0.057294078 +31,2047,8,0.054287195 +31,2047,9,0.050853682 +31,2047,10,0.047038202 +31,2047,11,0.043149178 +31,2047,12,0.039294655 +31,2047,13,0.035461365 +31,2047,14,0.031888621 +31,2047,15,0.028002112 +31,2047,16,0.024355613 +31,2047,17,0.021024802 +31,2047,18,0.018030353 +31,2047,19,0.015395491 +31,2047,20,0.013026357 +31,2047,21,0.010998234 +31,2047,22,0.009071402 +31,2047,23,0.007522768 +31,2047,24,0.00628295 +31,2047,25,0.005258299 +31,2047,26,0.004394651 +31,2047,27,0.003652856 +31,2047,28,0.003063798 +31,2047,29,0.002579589 +31,2047,30,0.002305846 +32,2047,0,0.071413332 +32,2047,1,0.069961396 +32,2047,2,0.068528139 +32,2047,3,0.067113311 +32,2047,4,0.065247762 +32,2047,5,0.063017158 +32,2047,6,0.060413809 +32,2047,7,0.057279266 +32,2047,8,0.054276139 +32,2047,9,0.050845992 +32,2047,10,0.047036141 +32,2047,11,0.043152145 +32,2047,12,0.03930317 +32,2047,13,0.03547513 +32,2047,14,0.031907616 +32,2047,15,0.028026861 +32,2047,16,0.024380748 +32,2047,17,0.021045994 +32,2047,18,0.018043636 +32,2047,19,0.015407334 +32,2047,20,0.013036305 +32,2047,21,0.011008014 +32,2047,22,0.009076513 +32,2047,23,0.007527309 +32,2047,24,0.006284387 +32,2047,25,0.005256795 +32,2047,26,0.004390381 +32,2047,27,0.003645128 +32,2047,28,0.003052363 +32,2047,29,0.00256404 +32,2047,30,0.002283672 +41,2047,0,0.062502352 +41,2047,1,0.061718979 +41,2047,2,0.06094305 +41,2047,3,0.060178284 +41,2047,4,0.059422823 +41,2047,5,0.057911171 +41,2047,6,0.055637719 +41,2047,7,0.0543356 +41,2047,8,0.051449809 +41,2047,9,0.048699272 +41,2047,10,0.045780354 +41,2047,11,0.042512871 +41,2047,12,0.03949716 +41,2047,13,0.036070322 +41,2047,14,0.033067513 +41,2047,15,0.030468912 +41,2047,16,0.027576426 +41,2047,17,0.025026679 +41,2047,18,0.022373772 +41,2047,19,0.019943359 +41,2047,20,0.017481554 +41,2047,21,0.015277924 +41,2047,22,0.013317436 +41,2047,23,0.011397283 +41,2047,24,0.009793261 +41,2047,25,0.008611413 +41,2047,26,0.007466897 +41,2047,27,0.006535632 +41,2047,28,0.005692504 +41,2047,29,0.004931188 +41,2047,30,0.004370662 +42,2047,0,0.062503698 +42,2047,1,0.061720063 +42,2047,2,0.060946487 +42,2047,3,0.060182971 +42,2047,4,0.059432029 +42,2047,5,0.057987179 +42,2047,6,0.055708037 +42,2047,7,0.054437169 +42,2047,8,0.051601773 +42,2047,9,0.048822502 +42,2047,10,0.045811886 +42,2047,11,0.042524194 +42,2047,12,0.039453441 +42,2047,13,0.035992772 +42,2047,14,0.03297235 +42,2047,15,0.030380789 +42,2047,16,0.027442961 +42,2047,17,0.024867778 +42,2047,18,0.022261844 +42,2047,19,0.01988472 +42,2047,20,0.017463094 +42,2047,21,0.015259708 +42,2047,22,0.013310119 +42,2047,23,0.011402952 +42,2047,24,0.009812665 +42,2047,25,0.008642403 +42,2047,26,0.007511702 +42,2047,27,0.006579385 +42,2047,28,0.005729421 +42,2047,29,0.004959626 +42,2047,30,0.00439498 +43,2047,0,0.062505085 +43,2047,1,0.061723147 +43,2047,2,0.060950965 +43,2047,3,0.060188483 +43,2047,4,0.059435194 +43,2047,5,0.057880926 +43,2047,6,0.055601138 +43,2047,7,0.054356615 +43,2047,8,0.051504932 +43,2047,9,0.048739096 +43,2047,10,0.045830617 +43,2047,11,0.042533852 +43,2047,12,0.039491452 +43,2047,13,0.036028 +43,2047,14,0.033011246 +43,2047,15,0.030393378 +43,2047,16,0.027507826 +43,2047,17,0.02495943 +43,2047,18,0.022320866 +43,2047,19,0.019918302 +43,2047,20,0.017480232 +43,2047,21,0.015289423 +43,2047,22,0.013319232 +43,2047,23,0.011410646 +43,2047,24,0.00981839 +43,2047,25,0.008649124 +43,2047,26,0.007509029 +43,2047,27,0.00656824 +43,2047,28,0.00572234 +43,2047,29,0.004957802 +43,2047,30,0.004395368 +51,2047,0,0.066935615 +51,2047,1,0.066289625 +51,2047,2,0.06565003 +51,2047,3,0.065017657 +51,2047,4,0.064391474 +51,2047,5,0.062635534 +51,2047,6,0.059833001 +51,2047,7,0.057599418 +51,2047,8,0.054081698 +51,2047,9,0.050797977 +51,2047,10,0.047385872 +51,2047,11,0.043417229 +51,2047,12,0.039739554 +51,2047,13,0.035578714 +51,2047,14,0.03198217 +51,2047,15,0.028873596 +51,2047,16,0.025462042 +51,2047,17,0.022555942 +51,2047,18,0.019650426 +51,2047,19,0.016992886 +51,2047,20,0.014408418 +51,2047,21,0.012180216 +51,2047,22,0.010248793 +51,2047,23,0.008397907 +51,2047,24,0.006904652 +51,2047,25,0.005829815 +51,2047,26,0.004809573 +51,2047,27,0.004017074 +51,2047,28,0.003347664 +51,2047,29,0.002761419 +51,2047,30,0.002224038 +52,2047,0,0.066937266 +52,2047,1,0.066293681 +52,2047,2,0.065657541 +52,2047,3,0.06502928 +52,2047,4,0.064408043 +52,2047,5,0.062660115 +52,2047,6,0.059851944 +52,2047,7,0.057595407 +52,2047,8,0.05412996 +52,2047,9,0.050774134 +52,2047,10,0.047351329 +52,2047,11,0.043355525 +52,2047,12,0.039702561 +52,2047,13,0.035552627 +52,2047,14,0.031982476 +52,2047,15,0.028895403 +52,2047,16,0.025547378 +52,2047,17,0.022613203 +52,2047,18,0.019623773 +52,2047,19,0.017009782 +52,2047,20,0.014396068 +52,2047,21,0.012150454 +52,2047,22,0.010215277 +52,2047,23,0.008380426 +52,2047,24,0.006891825 +52,2047,25,0.005811463 +52,2047,26,0.004800106 +52,2047,27,0.004007698 +52,2047,28,0.003349736 +52,2047,29,0.00277632 +52,2047,30,0.002249208 +53,2047,0,0.066944381 +53,2047,1,0.066309187 +53,2047,2,0.065682963 +53,2047,3,0.065066925 +53,2047,4,0.064460314 +53,2047,5,0.062703041 +53,2047,6,0.059891725 +53,2047,7,0.057632705 +53,2047,8,0.054133781 +53,2047,9,0.050759347 +53,2047,10,0.047287617 +53,2047,11,0.043251636 +53,2047,12,0.039538727 +53,2047,13,0.035331479 +53,2047,14,0.031697319 +53,2047,15,0.02863218 +53,2047,16,0.025495897 +53,2047,17,0.022754265 +53,2047,18,0.01972705 +53,2047,19,0.017029138 +53,2047,20,0.014382508 +53,2047,21,0.012125115 +53,2047,22,0.010207924 +53,2047,23,0.008475612 +53,2047,24,0.006977621 +53,2047,25,0.005901984 +53,2047,26,0.004884919 +53,2047,27,0.004123829 +53,2047,28,0.003448098 +53,2047,29,0.002845469 +53,2047,30,0.002296389 +54,2047,0,0.066932611 +54,2047,1,0.066283255 +54,2047,2,0.065639942 +54,2047,3,0.065002966 +54,2047,4,0.064371322 +54,2047,5,0.062636091 +54,2047,6,0.059862943 +54,2047,7,0.057631094 +54,2047,8,0.054158421 +54,2047,9,0.050790441 +54,2047,10,0.04734897 +54,2047,11,0.043362423 +54,2047,12,0.039734329 +54,2047,13,0.035618415 +54,2047,14,0.032089045 +54,2047,15,0.029030865 +54,2047,16,0.02562281 +54,2047,17,0.02265399 +54,2047,18,0.019647767 +54,2047,19,0.017020672 +54,2047,20,0.01438702 +54,2047,21,0.012111814 +54,2047,22,0.010169748 +54,2047,23,0.00833186 +54,2047,24,0.006843754 +54,2047,25,0.005759161 +54,2047,26,0.004745513 +54,2047,27,0.003957339 +54,2047,28,0.003303865 +54,2047,29,0.002736449 +54,2047,30,0.002215258 +61,2047,0,0.058745034 +61,2047,1,0.057988835 +61,2047,2,0.057248397 +61,2047,3,0.056519675 +61,2047,4,0.055791192 +61,2047,5,0.054395544 +61,2047,6,0.052447074 +61,2047,7,0.051968615 +61,2047,8,0.049392932 +61,2047,9,0.046837848 +61,2047,10,0.044103826 +61,2047,11,0.041141301 +61,2047,12,0.038399339 +61,2047,13,0.035335854 +61,2047,14,0.03269979 +61,2047,15,0.030465398 +61,2047,16,0.027972048 +61,2047,17,0.025839727 +61,2047,18,0.023642696 +61,2047,19,0.021624229 +61,2047,20,0.019601376 +61,2047,21,0.017723552 +61,2047,22,0.01596576 +61,2047,23,0.014179515 +61,2047,24,0.012683001 +61,2047,25,0.01160303 +61,2047,26,0.010519295 +61,2047,27,0.009609713 +61,2047,28,0.008693241 +61,2047,29,0.007825203 +61,2047,30,0.009036991 +62,2047,0,0.058663941 +62,2047,1,0.05781726 +62,2047,2,0.056978126 +62,2047,3,0.056149356 +62,2047,4,0.055339475 +62,2047,5,0.054015935 +62,2047,6,0.052156315 +62,2047,7,0.051837865 +62,2047,8,0.049491322 +62,2047,9,0.047269759 +62,2047,10,0.044802553 +62,2047,11,0.042053896 +62,2047,12,0.039461459 +62,2047,13,0.036508971 +62,2047,14,0.03392442 +62,2047,15,0.031656748 +62,2047,16,0.029091263 +62,2047,17,0.026806062 +62,2047,18,0.024350331 +62,2047,19,0.022022811 +62,2047,20,0.019681966 +62,2047,21,0.017538003 +62,2047,22,0.015579887 +62,2047,23,0.013640515 +62,2047,24,0.012030817 +62,2047,25,0.010830851 +62,2047,26,0.00963824 +62,2047,27,0.008630266 +62,2047,28,0.007645144 +62,2047,29,0.006739232 +62,2047,30,0.007647222 +11,2048,0,0.070643677 +11,2048,1,0.070010665 +11,2048,2,0.067895038 +11,2048,3,0.063160943 +11,2048,4,0.058749063 +11,2048,5,0.054633421 +11,2048,6,0.050791721 +11,2048,7,0.047201016 +11,2048,8,0.043808531 +11,2048,9,0.040758452 +11,2048,10,0.037879967 +11,2048,11,0.035259209 +11,2048,12,0.032904536 +11,2048,13,0.030760226 +11,2048,14,0.02876397 +11,2048,15,0.026811571 +11,2048,16,0.02512719 +11,2048,17,0.023503574 +11,2048,18,0.02198824 +11,2048,19,0.020533589 +11,2048,20,0.01913686 +11,2048,21,0.017709757 +11,2048,22,0.01623062 +11,2048,23,0.014975769 +11,2048,24,0.013657723 +11,2048,25,0.012676315 +11,2048,26,0.01175647 +11,2048,27,0.010898336 +11,2048,28,0.010131303 +11,2048,29,0.009403965 +11,2048,30,0.012238263 +21,2048,0,0.070643681 +21,2048,1,0.069748749 +21,2048,2,0.068865079 +21,2048,3,0.067984744 +21,2048,4,0.066840488 +21,2048,5,0.065474772 +21,2048,6,0.06384208 +21,2048,7,0.061919096 +21,2048,8,0.059650433 +21,2048,9,0.057237472 +21,2048,10,0.05446864 +21,2048,11,0.051472494 +21,2048,12,0.048252583 +21,2048,13,0.043043452 +21,2048,14,0.035643196 +21,2048,15,0.028531525 +21,2048,16,0.022374731 +21,2048,17,0.017146653 +21,2048,18,0.012921436 +21,2048,19,0.009608346 +21,2048,20,0.007063953 +21,2048,21,0.005116147 +21,2048,22,0.00364424 +21,2048,23,0.002602579 +21,2048,24,0.001832478 +21,2048,25,0.00131436 +21,2048,26,0.000939084 +21,2048,27,0.000671708 +21,2048,28,0.000482693 +21,2048,29,0.000346765 +21,2048,30,0.000316342 +31,2048,0,0.071414626 +31,2048,1,0.069964655 +31,2048,2,0.06853534 +31,2048,3,0.067125842 +31,2048,4,0.065266532 +31,2048,5,0.063036199 +31,2048,6,0.060438428 +31,2048,7,0.057487465 +31,2048,8,0.054044274 +31,2048,9,0.050763856 +31,2048,10,0.047143894 +31,2048,11,0.043240582 +31,2048,12,0.039341029 +31,2048,13,0.035551907 +31,2048,14,0.031826395 +31,2048,15,0.027959312 +31,2048,16,0.024348491 +31,2048,17,0.021013888 +31,2048,18,0.01801525 +31,2048,19,0.015356657 +31,2048,20,0.013037357 +31,2048,21,0.010981261 +31,2048,22,0.009228014 +31,2048,23,0.007587377 +31,2048,24,0.00626529 +31,2048,25,0.005219452 +31,2048,26,0.004359222 +31,2048,27,0.003631646 +31,2048,28,0.00301575 +31,2048,29,0.002522964 +31,2048,30,0.002277044 +32,2048,0,0.071413959 +32,2048,1,0.069962579 +32,2048,2,0.068530907 +32,2048,3,0.067117913 +32,2048,4,0.065254039 +32,2048,5,0.063018339 +32,2048,6,0.060423286 +32,2048,7,0.057472748 +32,2048,8,0.054029798 +32,2048,9,0.050753044 +32,2048,10,0.047136324 +32,2048,11,0.043238284 +32,2048,12,0.039343366 +32,2048,13,0.035559278 +32,2048,14,0.031838452 +32,2048,15,0.027975704 +32,2048,16,0.024369784 +32,2048,17,0.021035378 +32,2048,18,0.01803324 +32,2048,19,0.015367827 +32,2048,20,0.013047263 +32,2048,21,0.010989545 +32,2048,22,0.009236133 +32,2048,23,0.007591581 +32,2048,24,0.006269014 +32,2048,25,0.005220597 +32,2048,26,0.004357935 +32,2048,27,0.003628083 +32,2048,28,0.003009343 +32,2048,29,0.002513524 +32,2048,30,0.00226274 +41,2048,0,0.062503129 +41,2048,1,0.061718555 +41,2048,2,0.060945006 +41,2048,3,0.060178807 +41,2048,4,0.059423632 +41,2048,5,0.057876809 +41,2048,6,0.055624024 +41,2048,7,0.05344036 +41,2048,8,0.051457392 +41,2048,9,0.048724465 +41,2048,10,0.046119626 +41,2048,11,0.042738345 +41,2048,12,0.03968798 +41,2048,13,0.036340358 +41,2048,14,0.033187409 +41,2048,15,0.030424599 +41,2048,16,0.027623065 +41,2048,17,0.025000742 +41,2048,18,0.022351863 +41,2048,19,0.019982495 +41,2048,20,0.017543067 +41,2048,21,0.015377554 +41,2048,22,0.013439142 +41,2048,23,0.011535132 +41,2048,24,0.009871959 +41,2048,25,0.008482606 +41,2048,26,0.007342872 +41,2048,27,0.006366953 +41,2048,28,0.005572872 +41,2048,29,0.004777228 +41,2048,30,0.004330966 +42,2048,0,0.062503704 +42,2048,1,0.061720452 +42,2048,2,0.060946637 +42,2048,3,0.060182755 +42,2048,4,0.059428807 +42,2048,5,0.057886309 +42,2048,6,0.055697544 +42,2048,7,0.053508394 +42,2048,8,0.051554056 +42,2048,9,0.048868829 +42,2048,10,0.046236754 +42,2048,11,0.042768176 +42,2048,12,0.039698916 +42,2048,13,0.036300468 +42,2048,14,0.033116362 +42,2048,15,0.030337321 +42,2048,16,0.027543426 +42,2048,17,0.024879971 +42,2048,18,0.02221015 +42,2048,19,0.019882714 +42,2048,20,0.017491647 +42,2048,21,0.015361457 +42,2048,22,0.013423243 +42,2048,23,0.011528901 +42,2048,24,0.00987696 +42,2048,25,0.008499491 +42,2048,26,0.007369364 +42,2048,27,0.006405218 +42,2048,28,0.005610232 +42,2048,29,0.004808253 +42,2048,30,0.004355944 +43,2048,0,0.06250497 +43,2048,1,0.061723072 +43,2048,2,0.060950918 +43,2048,3,0.060188397 +43,2048,4,0.059435453 +43,2048,5,0.057890565 +43,2048,6,0.055596611 +43,2048,7,0.053406797 +43,2048,8,0.051478811 +43,2048,9,0.048778105 +43,2048,10,0.046158701 +43,2048,11,0.042786529 +43,2048,12,0.039708737 +43,2048,13,0.036336177 +43,2048,14,0.033149447 +43,2048,15,0.030373724 +43,2048,16,0.027555398 +43,2048,17,0.024939284 +43,2048,18,0.022292459 +43,2048,19,0.019935832 +43,2048,20,0.017521543 +43,2048,21,0.015376844 +43,2048,22,0.013449654 +43,2048,23,0.011537028 +43,2048,24,0.009883824 +43,2048,25,0.008504623 +43,2048,26,0.007375245 +43,2048,27,0.006403068 +43,2048,28,0.005600842 +43,2048,29,0.004802409 +43,2048,30,0.004354519 +51,2048,0,0.066937181 +51,2048,1,0.066291887 +51,2048,2,0.065652109 +51,2048,3,0.065018665 +51,2048,4,0.064392374 +51,2048,5,0.062631173 +51,2048,6,0.059813313 +51,2048,7,0.057137056 +51,2048,8,0.053983432 +51,2048,9,0.050686548 +51,2048,10,0.047608973 +51,2048,11,0.043571374 +51,2048,12,0.039922202 +51,2048,13,0.035836376 +51,2048,14,0.032084209 +51,2048,15,0.028840914 +51,2048,16,0.025526011 +51,2048,17,0.02250999 +51,2048,18,0.019541122 +51,2048,19,0.017023956 +51,2048,20,0.014420502 +51,2048,21,0.012227271 +51,2048,22,0.010336375 +51,2048,23,0.008515718 +51,2048,24,0.006977818 +51,2048,25,0.005737073 +51,2048,26,0.004740685 +51,2048,27,0.003911044 +51,2048,28,0.003266601 +51,2048,29,0.002662929 +51,2048,30,0.002196595 +52,2048,0,0.066937997 +52,2048,1,0.066294329 +52,2048,2,0.065656926 +52,2048,3,0.065026897 +52,2048,4,0.06440467 +52,2048,5,0.062648053 +52,2048,6,0.059837515 +52,2048,7,0.057155842 +52,2048,8,0.05398033 +52,2048,9,0.050732398 +52,2048,10,0.047587207 +52,2048,11,0.043540143 +52,2048,12,0.03986595 +52,2048,13,0.035803453 +52,2048,14,0.032061075 +52,2048,15,0.028841541 +52,2048,16,0.0255456 +52,2048,17,0.022585707 +52,2048,18,0.019590969 +52,2048,19,0.017001073 +52,2048,20,0.014435017 +52,2048,21,0.01221694 +52,2048,22,0.010311244 +52,2048,23,0.008487974 +52,2048,24,0.006963378 +52,2048,25,0.005726485 +52,2048,26,0.004725818 +52,2048,27,0.003903394 +52,2048,28,0.003259016 +52,2048,29,0.002664609 +52,2048,30,0.002208475 +53,2048,0,0.066943873 +53,2048,1,0.066307196 +53,2048,2,0.065678048 +53,2048,3,0.065057784 +53,2048,4,0.06444761 +53,2048,5,0.062704399 +53,2048,6,0.059883765 +53,2048,7,0.057198851 +53,2048,8,0.054020029 +53,2048,9,0.050740433 +53,2048,10,0.047577524 +53,2048,11,0.043485375 +53,2048,12,0.039773914 +53,2048,13,0.035658838 +53,2048,14,0.031864442 +53,2048,15,0.028586899 +53,2048,16,0.025315114 +53,2048,17,0.022542173 +53,2048,18,0.019714908 +53,2048,19,0.017092047 +53,2048,20,0.014452712 +53,2048,21,0.012206504 +53,2048,22,0.010290643 +53,2048,23,0.008482608 +53,2048,24,0.007043087 +53,2048,25,0.005798282 +53,2048,26,0.00479985 +53,2048,27,0.003972712 +53,2048,28,0.003353747 +53,2048,29,0.002743094 +53,2048,30,0.00226368 +54,2048,0,0.06693436 +54,2048,1,0.066286118 +54,2048,2,0.065643033 +54,2048,3,0.065005934 +54,2048,4,0.064375111 +54,2048,5,0.062608933 +54,2048,6,0.059811324 +54,2048,7,0.05716324 +54,2048,8,0.054010842 +54,2048,9,0.050756315 +54,2048,10,0.047599903 +54,2048,11,0.043535608 +54,2048,12,0.039870127 +54,2048,13,0.035830154 +54,2048,14,0.032118657 +54,2048,15,0.028936072 +54,2048,16,0.025663964 +54,2048,17,0.022651164 +54,2048,18,0.019625238 +54,2048,19,0.017020935 +54,2048,20,0.014443473 +54,2048,21,0.012208598 +54,2048,22,0.010277894 +54,2048,23,0.008449684 +54,2048,24,0.006922647 +54,2048,25,0.005686233 +54,2048,26,0.004683033 +54,2048,27,0.003858789 +54,2048,28,0.00321789 +54,2048,29,0.002627978 +54,2048,30,0.00217664 +61,2048,0,0.058738223 +61,2048,1,0.057975553 +61,2048,2,0.057229259 +61,2048,3,0.056498519 +61,2048,4,0.055779343 +61,2048,5,0.054464483 +61,2048,6,0.052521012 +61,2048,7,0.050639689 +61,2048,8,0.04962263 +61,2048,9,0.047163219 +61,2048,10,0.044723477 +61,2048,11,0.04164179 +61,2048,12,0.038844644 +61,2048,13,0.035845597 +61,2048,14,0.032985848 +61,2048,15,0.030525095 +61,2048,16,0.028113893 +61,2048,17,0.025812995 +61,2048,18,0.023569259 +61,2048,19,0.021565275 +61,2048,20,0.019493193 +61,2048,21,0.017669689 +61,2048,22,0.015976921 +61,2048,23,0.014221823 +61,2048,24,0.01263069 +61,2048,25,0.01129764 +61,2048,26,0.010211699 +61,2048,27,0.009257915 +61,2048,28,0.008457402 +61,2048,29,0.007557971 +61,2048,30,0.008965074 +62,2048,0,0.058669171 +62,2048,1,0.05782746 +62,2048,2,0.056992852 +62,2048,3,0.056165683 +62,2048,4,0.055348731 +62,2048,5,0.053959999 +62,2048,6,0.052093173 +62,2048,7,0.050299749 +62,2048,8,0.049439593 +62,2048,9,0.047201612 +62,2048,10,0.04508283 +62,2048,11,0.042251782 +62,2048,12,0.039659617 +62,2048,13,0.036793775 +62,2048,14,0.034040882 +62,2048,15,0.031631052 +62,2048,16,0.029178945 +62,2048,17,0.026814262 +62,2048,18,0.024421941 +62,2048,19,0.022184622 +62,2048,20,0.019829157 +62,2048,21,0.017721479 +62,2048,22,0.015791073 +62,2048,23,0.013861785 +62,2048,24,0.012136281 +62,2048,25,0.010704095 +62,2048,26,0.009520907 +62,2048,27,0.008472537 +62,2048,28,0.007586473 +62,2048,29,0.006638934 +62,2048,30,0.00767943 +11,2049,0,0.07064368 +11,2049,1,0.070010662 +11,2049,2,0.067893299 +11,2049,3,0.063158095 +11,2049,4,0.058754292 +11,2049,5,0.054650223 +11,2049,6,0.050821723 +11,2049,7,0.047248053 +11,2049,8,0.043907866 +11,2049,9,0.04075207 +11,2049,10,0.037914791 +11,2049,11,0.035237134 +11,2049,12,0.032799223 +11,2049,13,0.030608832 +11,2049,14,0.028614128 +11,2049,15,0.026757148 +11,2049,16,0.024940965 +11,2049,17,0.023374101 +11,2049,18,0.021863762 +11,2049,19,0.020454151 +11,2049,20,0.019100989 +11,2049,21,0.017801708 +11,2049,22,0.016474172 +11,2049,23,0.015098232 +11,2049,24,0.01393093 +11,2049,25,0.012704842 +11,2049,26,0.011791907 +11,2049,27,0.010936238 +11,2049,28,0.010137975 +11,2049,29,0.009424456 +11,2049,30,0.012194323 +21,2049,0,0.070643681 +21,2049,1,0.069748772 +21,2049,2,0.068865177 +21,2049,3,0.067984964 +21,2049,4,0.066840931 +21,2049,5,0.065475641 +21,2049,6,0.063843597 +21,2049,7,0.061921663 +21,2049,8,0.059701769 +21,2049,9,0.057145781 +21,2049,10,0.054461191 +21,2049,11,0.051477875 +21,2049,12,0.048305075 +21,2049,13,0.04302286 +21,2049,14,0.035612384 +21,2049,15,0.028584771 +21,2049,16,0.022285246 +21,2049,17,0.017111862 +21,2049,18,0.01289391 +21,2049,19,0.009594705 +21,2049,20,0.00705796 +21,2049,21,0.005150051 +21,2049,22,0.003709866 +21,2049,23,0.002628215 +21,2049,24,0.00186937 +21,2049,25,0.001316019 +21,2049,26,0.000939939 +21,2049,27,0.000671357 +21,2049,28,0.000479529 +21,2049,29,0.00034405 +21,2049,30,0.000311788 +31,2049,0,0.071414518 +31,2049,1,0.069963975 +31,2049,2,0.06853422 +31,2049,3,0.067125079 +31,2049,4,0.065266082 +31,2049,5,0.063036109 +31,2049,6,0.060440964 +31,2049,7,0.057495375 +31,2049,8,0.054225188 +31,2049,9,0.050535059 +31,2049,10,0.047058867 +31,2049,11,0.043335923 +31,2049,12,0.03942253 +31,2049,13,0.035592051 +31,2049,14,0.031905885 +31,2049,15,0.027902827 +31,2049,16,0.024309479 +31,2049,17,0.021006094 +31,2049,18,0.018004411 +31,2049,19,0.01534247 +31,2049,20,0.013003304 +31,2049,21,0.010989518 +31,2049,22,0.009212894 +31,2049,23,0.007717617 +31,2049,24,0.006318468 +31,2049,25,0.005204254 +31,2049,26,0.004326572 +31,2049,27,0.003601991 +31,2049,28,0.002997924 +31,2049,29,0.002483133 +31,2049,30,0.002227218 +32,2049,0,0.071414382 +32,2049,1,0.069963188 +32,2049,2,0.068532056 +32,2049,3,0.067120609 +32,2049,4,0.065258249 +32,2049,5,0.063023923 +32,2049,6,0.060423725 +32,2049,7,0.05748086 +32,2049,8,0.054211203 +32,2049,9,0.050521427 +32,2049,10,0.047048754 +32,2049,11,0.043328882 +32,2049,12,0.03942036 +32,2049,13,0.035594098 +32,2049,14,0.031912439 +32,2049,15,0.027913344 +32,2049,16,0.024323685 +32,2049,17,0.021024424 +32,2049,18,0.018022789 +32,2049,19,0.015357762 +32,2049,20,0.013012737 +32,2049,21,0.010997847 +32,2049,22,0.009219827 +32,2049,23,0.007724393 +32,2049,24,0.006321957 +32,2049,25,0.005207337 +32,2049,26,0.004327514 +32,2049,27,0.00360092 +32,2049,28,0.002994977 +32,2049,29,0.002477852 +32,2049,30,0.002218493 +41,2049,0,0.062504 +41,2049,1,0.061720182 +41,2049,2,0.060945437 +41,2049,3,0.060181578 +41,2049,4,0.059424976 +41,2049,5,0.057877634 +41,2049,6,0.055590294 +41,2049,7,0.053426509 +41,2049,8,0.050608201 +41,2049,9,0.048730324 +41,2049,10,0.046142233 +41,2049,11,0.043053282 +41,2049,12,0.039896812 +41,2049,13,0.036513863 +41,2049,14,0.033433973 +41,2049,15,0.030533187 +41,2049,16,0.027580909 +41,2049,17,0.025041225 +41,2049,18,0.022326741 +41,2049,19,0.019961178 +41,2049,20,0.017575666 +41,2049,21,0.015430059 +41,2049,22,0.013525375 +41,2049,23,0.011639145 +41,2049,24,0.009990152 +41,2049,25,0.008549739 +41,2049,26,0.00723204 +41,2049,27,0.006260334 +41,2049,28,0.005428292 +41,2049,29,0.004676102 +41,2049,30,0.004195458 +42,2049,0,0.062503833 +42,2049,1,0.061720585 +42,2049,2,0.060947147 +42,2049,3,0.060183027 +42,2049,4,0.059428716 +42,2049,5,0.057882519 +42,2049,6,0.05559927 +42,2049,7,0.053496981 +42,2049,8,0.050672494 +42,2049,9,0.048821734 +42,2049,10,0.046278822 +42,2049,11,0.043162507 +42,2049,12,0.039924553 +42,2049,13,0.036523827 +42,2049,14,0.033397184 +42,2049,15,0.030467741 +42,2049,16,0.027501714 +42,2049,17,0.024968963 +42,2049,18,0.022218828 +42,2049,19,0.019834569 +42,2049,20,0.017487856 +42,2049,21,0.015384791 +42,2049,22,0.013511181 +42,2049,23,0.011625344 +42,2049,24,0.009984729 +42,2049,25,0.008554047 +42,2049,26,0.007246417 +42,2049,27,0.006282904 +42,2049,28,0.005460901 +42,2049,29,0.004707437 +42,2049,30,0.004222558 +43,2049,0,0.062505036 +43,2049,1,0.061723024 +43,2049,2,0.060950908 +43,2049,3,0.060188413 +43,2049,4,0.059435431 +43,2049,5,0.057890108 +43,2049,6,0.055604428 +43,2049,7,0.053401064 +43,2049,8,0.050577256 +43,2049,9,0.048751416 +43,2049,10,0.046193796 +43,2049,11,0.043090473 +43,2049,12,0.039942454 +43,2049,13,0.036533565 +43,2049,14,0.033430681 +43,2049,15,0.030498766 +43,2049,16,0.027535245 +43,2049,17,0.024980296 +43,2049,18,0.022272225 +43,2049,19,0.019908458 +43,2049,20,0.017534913 +43,2049,21,0.015411383 +43,2049,22,0.013524975 +43,2049,23,0.011648442 +43,2049,24,0.00999196 +43,2049,25,0.008560157 +43,2049,26,0.007250932 +43,2049,27,0.006288039 +43,2049,28,0.005459173 +43,2049,29,0.004699649 +43,2049,30,0.004217673 +51,2049,0,0.066938161 +51,2049,1,0.066294408 +51,2049,2,0.06565531 +51,2049,3,0.065021676 +51,2049,4,0.064394315 +51,2049,5,0.062631963 +51,2049,6,0.059808073 +51,2049,7,0.057117229 +51,2049,8,0.05354821 +51,2049,9,0.050592669 +51,2049,10,0.047502866 +51,2049,11,0.043774191 +51,2049,12,0.04006181 +51,2049,13,0.035998503 +51,2049,14,0.032314246 +51,2049,15,0.028930856 +51,2049,16,0.025494796 +51,2049,17,0.022564487 +51,2049,18,0.019499143 +51,2049,19,0.01692738 +51,2049,20,0.01444496 +51,2049,21,0.012235909 +51,2049,22,0.010374935 +51,2049,23,0.008587167 +51,2049,24,0.007074617 +51,2049,25,0.005796973 +51,2049,26,0.004664443 +51,2049,27,0.003854344 +51,2049,28,0.003179817 +51,2049,29,0.002597925 +51,2049,30,0.002117825 +52,2049,0,0.066938333 +52,2049,1,0.066295386 +52,2049,2,0.065657898 +52,2049,3,0.065026614 +52,2049,4,0.064402633 +52,2049,5,0.062644084 +52,2049,6,0.059824345 +52,2049,7,0.057140486 +52,2049,8,0.053565954 +52,2049,9,0.050589892 +52,2049,10,0.047545958 +52,2049,11,0.04375429 +52,2049,12,0.040033197 +52,2049,13,0.035947871 +52,2049,14,0.032284642 +52,2049,15,0.02891007 +52,2049,16,0.025495416 +52,2049,17,0.022581862 +52,2049,18,0.019564783 +52,2049,19,0.016970603 +52,2049,20,0.01442558 +52,2049,21,0.012248256 +52,2049,22,0.010366196 +52,2049,23,0.008566311 +52,2049,24,0.007051586 +52,2049,25,0.005784992 +52,2049,26,0.004655847 +52,2049,27,0.003842267 +52,2049,28,0.003173605 +52,2049,29,0.002591899 +52,2049,30,0.002119167 +53,2049,0,0.06694329 +53,2049,1,0.066306115 +53,2049,2,0.065675503 +53,2049,3,0.065052349 +53,2049,4,0.064437995 +53,2049,5,0.062690492 +53,2049,6,0.059882586 +53,2049,7,0.057188885 +53,2049,8,0.053610231 +53,2049,9,0.050630846 +53,2049,10,0.04755701 +53,2049,11,0.043748627 +53,2049,12,0.039985802 +53,2049,13,0.035867537 +53,2049,14,0.032156621 +53,2049,15,0.02873489 +53,2049,16,0.025272188 +53,2049,17,0.022379774 +53,2049,18,0.019528518 +53,2049,19,0.017079229 +53,2049,20,0.014503847 +53,2049,21,0.012264178 +53,2049,22,0.010358107 +53,2049,23,0.00854983 +53,2049,24,0.00704765 +53,2049,25,0.005851645 +53,2049,26,0.00471457 +53,2049,27,0.003902747 +53,2049,28,0.003230203 +53,2049,29,0.002667437 +53,2049,30,0.002181748 +54,2049,0,0.066935618 +54,2049,1,0.066289095 +54,2049,2,0.065647102 +54,2049,3,0.065010217 +54,2049,4,0.064379259 +54,2049,5,0.062612792 +54,2049,6,0.059784564 +54,2049,7,0.057113158 +54,2049,8,0.053570714 +54,2049,9,0.050616434 +54,2049,10,0.047566443 +54,2049,11,0.043764189 +54,2049,12,0.040027404 +54,2049,13,0.035950179 +54,2049,14,0.032307408 +54,2049,15,0.028960818 +54,2049,16,0.025577942 +54,2049,17,0.022685573 +54,2049,18,0.019620689 +54,2049,19,0.016999599 +54,2049,20,0.014441848 +54,2049,21,0.012254934 +54,2049,22,0.010358697 +54,2049,23,0.008538259 +54,2049,24,0.007019491 +54,2049,25,0.00575092 +54,2049,26,0.004622933 +54,2049,27,0.003807326 +54,2049,28,0.003137213 +54,2049,29,0.002559088 +54,2049,30,0.002089949 +61,2049,0,0.058731608 +61,2049,1,0.057962303 +61,2049,2,0.057209707 +61,2049,3,0.056473272 +61,2049,4,0.055752185 +61,2049,5,0.054446468 +61,2049,6,0.052581036 +61,2049,7,0.050704773 +61,2049,8,0.048347388 +61,2049,9,0.047376367 +61,2049,10,0.045028287 +61,2049,11,0.04222108 +61,2049,12,0.039311821 +61,2049,13,0.036256101 +61,2049,14,0.033456905 +61,2049,15,0.030787725 +61,2049,16,0.028164771 +61,2049,17,0.025940013 +61,2049,18,0.0235412 +61,2049,19,0.021494935 +61,2049,20,0.019436881 +61,2049,21,0.017569304 +61,2049,22,0.015925771 +61,2049,23,0.014229347 +61,2049,24,0.012666224 +61,2049,25,0.01124913 +61,2049,26,0.009941167 +61,2049,27,0.008985612 +61,2049,28,0.008146346 +61,2049,29,0.007351574 +61,2049,30,0.008710522 +62,2049,0,0.058674263 +62,2049,1,0.057837635 +62,2049,2,0.057007855 +62,2049,3,0.056185076 +62,2049,4,0.05536963 +62,2049,5,0.053973395 +62,2049,6,0.052043134 +62,2049,7,0.050242624 +62,2049,8,0.047975946 +62,2049,9,0.047155529 +62,2049,10,0.045020941 +62,2049,11,0.042518771 +62,2049,12,0.039848737 +62,2049,13,0.036980622 +62,2049,14,0.034308367 +62,2049,15,0.031741431 +62,2049,16,0.029156715 +62,2049,17,0.026896423 +62,2049,18,0.024430469 +62,2049,19,0.022250826 +62,2049,20,0.019975578 +62,2049,21,0.017854659 +62,2049,22,0.015956855 +62,2049,23,0.014050095 +62,2049,24,0.012333513 +62,2049,25,0.010798247 +62,2049,26,0.009409691 +62,2049,27,0.008369581 +62,2049,28,0.007447986 +62,2049,29,0.006588083 +62,2049,30,0.007597227 +11,2050,0,0.070643682 +11,2050,1,0.070010667 +11,2050,2,0.067892608 +11,2050,3,0.063154571 +11,2050,4,0.058749869 +11,2050,5,0.054653436 +11,2050,6,0.050835817 +11,2050,7,0.047274535 +11,2050,8,0.043950295 +11,2050,9,0.040843242 +11,2050,10,0.03790771 +11,2050,11,0.035268464 +11,2050,12,0.032777699 +11,2050,13,0.030509945 +11,2050,14,0.028472436 +11,2050,15,0.026616956 +11,2050,16,0.024889587 +11,2050,17,0.023200168 +11,2050,18,0.021742666 +11,2050,19,0.020337744 +11,2050,20,0.019026519 +11,2050,21,0.017767803 +11,2050,22,0.016559208 +11,2050,23,0.015324329 +11,2050,24,0.014044425 +11,2050,25,0.012958597 +11,2050,26,0.011818086 +11,2050,27,0.01096887 +11,2050,28,0.010172924 +11,2050,29,0.009430377 +11,2050,30,0.012196747 +21,2050,0,0.070643681 +21,2050,1,0.069748789 +21,2050,2,0.068865216 +21,2050,3,0.067985078 +21,2050,4,0.066841182 +21,2050,5,0.065476126 +21,2050,6,0.063844514 +21,2050,7,0.061923222 +21,2050,8,0.059704352 +21,2050,9,0.05719509 +21,2050,10,0.054374095 +21,2050,11,0.051470999 +21,2050,12,0.048310302 +21,2050,13,0.043069977 +21,2050,14,0.035595807 +21,2050,15,0.028560501 +21,2050,16,0.022327228 +21,2050,17,0.017043754 +21,2050,18,0.012868015 +21,2050,19,0.009574475 +21,2050,20,0.007048099 +21,2050,21,0.005145802 +21,2050,22,0.00373454 +21,2050,23,0.002675609 +21,2050,24,0.001887831 +21,2050,25,0.001342547 +21,2050,26,0.000941149 +21,2050,27,0.000671985 +21,2050,28,0.00047929 +21,2050,29,0.000341803 +21,2050,30,0.000308944 +31,2050,0,0.071414455 +31,2050,1,0.069963238 +31,2050,2,0.068532929 +31,2050,3,0.067123363 +31,2050,4,0.065264399 +31,2050,5,0.063034463 +31,2050,6,0.060439399 +31,2050,7,0.05749605 +31,2050,8,0.054230671 +31,2050,9,0.05070205 +31,2050,10,0.046844455 +31,2050,11,0.043255352 +31,2050,12,0.039507003 +31,2050,13,0.035663364 +31,2050,14,0.031939544 +31,2050,15,0.02796993 +31,2050,16,0.024257964 +31,2050,17,0.020970228 +31,2050,18,0.017995737 +31,2050,19,0.015331463 +31,2050,20,0.012989725 +31,2050,21,0.010959451 +31,2050,22,0.009218639 +31,2050,23,0.007703964 +31,2050,24,0.006426064 +31,2050,25,0.005247709 +31,2050,26,0.004313378 +31,2050,27,0.003574509 +31,2050,28,0.002973022 +31,2050,29,0.002468099 +31,2050,30,0.002189385 +32,2050,0,0.071414628 +32,2050,1,0.069963274 +32,2050,2,0.068532325 +32,2050,3,0.067121407 +32,2050,4,0.065260212 +32,2050,5,0.063027051 +32,2050,6,0.060427861 +32,2050,7,0.05747979 +32,2050,8,0.054217112 +32,2050,9,0.050689096 +32,2050,10,0.046831932 +32,2050,11,0.043246162 +32,2050,12,0.03950068 +32,2050,13,0.035661487 +32,2050,14,0.031941458 +32,2050,15,0.027975744 +32,2050,16,0.024267166 +32,2050,17,0.020982534 +32,2050,18,0.018011484 +32,2050,19,0.01534715 +32,2050,20,0.013002703 +32,2050,21,0.010967428 +32,2050,22,0.009225649 +32,2050,23,0.00770978 +32,2050,24,0.006431721 +32,2050,25,0.00525062 +32,2050,26,0.004315944 +32,2050,27,0.003575295 +32,2050,28,0.002972146 +32,2050,29,0.002465679 +32,2050,30,0.00218447 +41,2050,0,0.062504961 +41,2050,1,0.061721992 +41,2050,2,0.060947981 +41,2050,3,0.060182929 +41,2050,4,0.059428627 +41,2050,5,0.057878026 +41,2050,6,0.05558842 +41,2050,7,0.053391551 +41,2050,8,0.050590987 +41,2050,9,0.047922257 +41,2050,10,0.046144045 +41,2050,11,0.043069435 +41,2050,12,0.04018619 +41,2050,13,0.03670049 +41,2050,14,0.033588566 +41,2050,15,0.03075542 +41,2050,16,0.027674201 +41,2050,17,0.02499836 +41,2050,18,0.022357907 +41,2050,19,0.019934296 +41,2050,20,0.017552329 +41,2050,21,0.015454693 +41,2050,22,0.013568011 +41,2050,23,0.011710306 +41,2050,24,0.010077202 +41,2050,25,0.0086495 +41,2050,26,0.007286788 +41,2050,27,0.006163737 +41,2050,28,0.005335569 +41,2050,29,0.004553041 +41,2050,30,0.004094321 +42,2050,0,0.06250408 +42,2050,1,0.061720957 +42,2050,2,0.06094752 +42,2050,3,0.060183769 +42,2050,4,0.05942922 +42,2050,5,0.057880852 +42,2050,6,0.055592329 +42,2050,7,0.053399419 +42,2050,8,0.050657005 +42,2050,9,0.047982461 +42,2050,10,0.046229952 +42,2050,11,0.043196319 +42,2050,12,0.040287573 +42,2050,13,0.036725491 +42,2050,14,0.033597257 +42,2050,15,0.030721145 +42,2050,16,0.027614493 +42,2050,17,0.02492623 +42,2050,18,0.022293073 +42,2050,19,0.019837667 +42,2050,20,0.017440753 +42,2050,21,0.015377262 +42,2050,22,0.013528014 +42,2050,23,0.011697851 +42,2050,24,0.010065112 +42,2050,25,0.008644683 +42,2050,26,0.007290357 +42,2050,27,0.006175903 +42,2050,28,0.00535473 +42,2050,29,0.004580327 +42,2050,30,0.004121658 +43,2050,0,0.062504956 +43,2050,1,0.06172301 +43,2050,2,0.060950782 +43,2050,3,0.060188326 +43,2050,4,0.059435371 +43,2050,5,0.057888204 +43,2050,6,0.055600396 +43,2050,7,0.053405121 +43,2050,8,0.050566889 +43,2050,9,0.047892949 +43,2050,10,0.046164013 +43,2050,11,0.04311756 +43,2050,12,0.040220901 +43,2050,13,0.036742473 +43,2050,14,0.033606687 +43,2050,15,0.030752389 +43,2050,16,0.027643001 +43,2050,17,0.02495697 +43,2050,18,0.022303505 +43,2050,19,0.019885621 +43,2050,20,0.01750597 +43,2050,21,0.015418857 +43,2050,22,0.013551587 +43,2050,23,0.011709958 +43,2050,24,0.010085251 +43,2050,25,0.008651065 +43,2050,26,0.007295666 +43,2050,27,0.006179837 +43,2050,28,0.005359181 +43,2050,29,0.004578942 +43,2050,30,0.004114983 +51,2050,0,0.066939967 +51,2050,1,0.066297167 +51,2050,2,0.065659578 +51,2050,3,0.0650266 +51,2050,4,0.064399034 +51,2050,5,0.062633736 +51,2050,6,0.059806931 +51,2050,7,0.057110414 +51,2050,8,0.053526271 +51,2050,9,0.050181637 +51,2050,10,0.04741191 +51,2050,11,0.043672485 +51,2050,12,0.040244471 +51,2050,13,0.036119752 +51,2050,14,0.032456271 +51,2050,15,0.029134543 +51,2050,16,0.025570129 +51,2050,17,0.022533216 +51,2050,18,0.019542453 +51,2050,19,0.016887647 +51,2050,20,0.014359607 +51,2050,21,0.012253754 +51,2050,22,0.010379802 +51,2050,23,0.008616818 +51,2050,24,0.007132002 +51,2050,25,0.005875766 +51,2050,26,0.004711647 +51,2050,27,0.003791152 +51,2050,28,0.003132723 +51,2050,29,0.002527994 +51,2050,30,0.002065383 +52,2050,0,0.066939402 +52,2050,1,0.066296778 +52,2050,2,0.065659993 +52,2050,3,0.065028615 +52,2050,4,0.064403381 +52,2050,5,0.062641298 +52,2050,6,0.059818 +52,2050,7,0.05712547 +52,2050,8,0.053547615 +52,2050,9,0.050197842 +52,2050,10,0.047408908 +52,2050,11,0.043711734 +52,2050,12,0.040225835 +52,2050,13,0.03609365 +52,2050,14,0.032410349 +52,2050,15,0.029107606 +52,2050,16,0.025551542 +52,2050,17,0.022533574 +52,2050,18,0.019557336 +52,2050,19,0.016944353 +52,2050,20,0.014396152 +52,2050,21,0.012237211 +52,2050,22,0.010390188 +52,2050,23,0.008609487 +52,2050,24,0.00711462 +52,2050,25,0.005856588 +52,2050,26,0.004701869 +52,2050,27,0.003784134 +52,2050,28,0.00312288 +52,2050,29,0.002523034 +52,2050,30,0.002060575 +53,2050,0,0.066943512 +53,2050,1,0.066305758 +53,2050,2,0.065674652 +53,2050,3,0.065050046 +53,2050,4,0.064432826 +53,2050,5,0.062679542 +53,2050,6,0.059865991 +53,2050,7,0.057184595 +53,2050,8,0.053596262 +53,2050,9,0.05024242 +53,2050,10,0.047450201 +53,2050,11,0.043724579 +53,2050,12,0.040223098 +53,2050,13,0.036053132 +53,2050,14,0.032339905 +53,2050,15,0.028993964 +53,2050,16,0.025398273 +53,2050,17,0.02233765 +53,2050,18,0.019383505 +53,2050,19,0.016913984 +53,2050,20,0.01448919 +53,2050,21,0.01230436 +53,2050,22,0.010404334 +53,2050,23,0.008603298 +53,2050,24,0.007101368 +53,2050,25,0.005853679 +53,2050,26,0.004756335 +53,2050,27,0.003832097 +53,2050,28,0.003172231 +53,2050,29,0.002568187 +53,2050,30,0.002120758 +54,2050,0,0.06693749 +54,2050,1,0.066292195 +54,2050,2,0.065651887 +54,2050,3,0.065016065 +54,2050,4,0.064385302 +54,2050,5,0.062616775 +54,2050,6,0.059786413 +54,2050,7,0.057085853 +54,2050,8,0.053520476 +54,2050,9,0.050200868 +54,2050,10,0.047432426 +54,2050,11,0.043729318 +54,2050,12,0.040233786 +54,2050,13,0.036087396 +54,2050,14,0.032411503 +54,2050,15,0.0291273 +54,2050,16,0.025595663 +54,2050,17,0.022605867 +54,2050,18,0.019646596 +54,2050,19,0.016992286 +54,2050,20,0.014420337 +54,2050,21,0.012250661 +54,2050,22,0.010395556 +54,2050,23,0.008603013 +54,2050,24,0.007091119 +54,2050,25,0.005829765 +54,2050,26,0.004674043 +54,2050,27,0.003757275 +54,2050,28,0.003094393 +54,2050,29,0.002494031 +54,2050,30,0.002034432 +61,2050,0,0.058724374 +61,2050,1,0.057948636 +61,2050,2,0.057189587 +61,2050,3,0.056447024 +61,2050,4,0.055720406 +61,2050,5,0.05441187 +61,2050,6,0.052554463 +61,2050,7,0.050753854 +61,2050,8,0.048399781 +61,2050,9,0.046149561 +61,2050,10,0.045222682 +61,2050,11,0.042499122 +61,2050,12,0.039849591 +61,2050,13,0.036682741 +61,2050,14,0.03383138 +61,2050,15,0.031219387 +61,2050,16,0.028399003 +61,2050,17,0.025979555 +61,2050,18,0.023649612 +61,2050,19,0.021462605 +61,2050,20,0.019366822 +61,2050,21,0.017512526 +61,2050,22,0.015829849 +61,2050,23,0.014178482 +61,2050,24,0.012668181 +61,2050,25,0.011276555 +61,2050,26,0.009894467 +61,2050,27,0.008744014 +61,2050,28,0.00790353 +61,2050,29,0.00707809 +61,2050,30,0.00845212 +62,2050,0,0.058679804 +62,2050,1,0.057848118 +62,2050,2,0.05702327 +62,2050,3,0.056205172 +62,2050,4,0.055393979 +62,2050,5,0.053997498 +62,2050,6,0.052058288 +62,2050,7,0.050196517 +62,2050,8,0.047922243 +62,2050,9,0.045760248 +62,2050,10,0.044977721 +62,2050,11,0.042459938 +62,2050,12,0.040100103 +62,2050,13,0.037155528 +62,2050,14,0.034481257 +62,2050,15,0.031989608 +62,2050,16,0.029256492 +62,2050,17,0.026874126 +62,2050,18,0.024502964 +62,2050,19,0.022256449 +62,2050,20,0.02003266 +62,2050,21,0.01798423 +62,2050,22,0.016074743 +62,2050,23,0.014195374 +62,2050,24,0.012499102 +62,2050,25,0.010972013 +62,2050,26,0.009490672 +62,2050,27,0.008270258 +62,2050,28,0.007356096 +62,2050,29,0.006466397 +62,2050,30,0.007519161 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2008.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2008.csv new file mode 100644 index 0000000000..3aafc3ff72 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2008.csv @@ -0,0 +1,35255 @@ +# File: NEI_emissions_to_CEDS_adj_2008.csv +# Title: NEI emissions aggregated to states / pollutants / and extended CEDS sectors for 2008 +# Units: TON +# Source: NEI 2008 version 3 accessible from: https://www.epa.gov/air-emissions-inventories/2008-national-emissions-inventory-nei-data#datas +# Comments: This data is pre-processed exogenously in a script available here: https://stash.pnnl.gov/projects/JGCRI/repos/gcam-core-data-proc_usnei_to_gcam/browse +# Column types: cccccn +# ---------- +state,pollutant,CEDS_Sector,CEDS_Fuel,unit,emissions +AK,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.01 +AK,Ammonia,1A1a_Public-Electricity,hard_coal,TON,164.23 +AK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,5.4 +AK,Ammonia,1A1b_Pet-refining,natural_gas,TON,1.18 +AK,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.72 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.243298338 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.0622877 +AK,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +AK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.01 +AK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.03 +AK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.12 +AK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.429721723 +AK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.042315001 +AK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.612773088 +AK,Ammonia,1A3bii_Road-LDV,light_oil,TON,207.8707663 +AK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.339295495 +AK,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7.228079288 +AK,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,8.548252633 +AK,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,1.562157991 +AK,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.249717773 +AK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.328106697 +AK,Ammonia,1A3c_Rail,diesel_oil,TON,0.157049097 +AK,Ammonia,1A3c_Rail,light_oil,TON,0.000378923 +AK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10.70821093 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.105024751 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.219708789 +AK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.01760379 +AK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.400630417 +AK,Ammonia,1A4bi_Residential-stationary,biomass,TON,51.23086408 +AK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,40.56928 +AK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,44.6461245 +AK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,5.57575565 +AK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,206.3840786 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.169200519 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.022031137 +AK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002738586 +AK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.639654933 +AK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.099509376 +AK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.672618948 +AK,Ammonia,2B_Chemicals-other,Other_Fuel,TON,6.51 +AK,Ammonia,5D1_Wastewater-domestic,,TON,2.58043265 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29941.35501 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12730.74527 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3250.606228 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,175836.1623 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3477.058604 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.23925831 +AK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,19627.44017 +AK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2117712.216 +AK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,21628.50336 +AK,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,112211.463 +AK,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,671394.2555 +AK,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,45855.94376 +AK,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,133712.7198 +AK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11336.33079 +AK,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,587.87292 +AK,Carbon Dioxide,1A3c_Rail,light_oil,TON,29.26131875 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12895.02495 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18049.33508 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,875.4357975 +AK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2163.397227 +AK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,29194.53495 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20826.31046 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1539.769721 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.3354017 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,334.76617 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,235979.6383 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12254.62244 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,45119.1637 +AK,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0 +AK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1923.58 +AK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1583.32 +AK,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,1.36 +AK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2541.58 +AK,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,3.964528302 +AK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,247.3554717 +AK,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,2.52 +AK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1446.42 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1719.74443 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2338.576994 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,158.5305032 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1.23034542 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,860.8452361 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,625.9509424 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.884628525 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,8989.218848 +AK,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,840.8061668 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1041.395983 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849269 +AK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10725.7643 +AK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,71.53248945 +AK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,106182.7111 +AK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,84.0280396 +AK,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7661.625002 +AK,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1353.265117 +AK,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,191.9521545 +AK,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,294.048419 +AK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1905.171711 +AK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,207.7639767 +AK,Carbon Monoxide,1A3c_Rail,light_oil,TON,9.402211683 +AK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3942.659539 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,83.78826348 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,187.0906657 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,303.7400501 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.25102069 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,78.01053688 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5670.968467 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.53629079 +AK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,10.28318478 +AK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,10731.08549 +AK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,6186.401252 +AK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,202.846415 +AK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,6138.8477 +AK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,27.8787405 +AK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,430.7094163 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,69.30985918 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,689.8409908 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.037176837 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.8297749 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,37822.01739 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.66799013 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7989.08756 +AK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1015.51 +AK,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.06 +AK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,213.77 +AK,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,16.14 +AK,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,0.54 +AK,Carbon Monoxide,2H2_Food-and-beverage,,TON,68.59786572 +AK,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,7 +AK,Carbon Monoxide,5C_Incineration,,TON,15.55331253 +AK,Carbon Monoxide,5C_Incineration,biomass,TON,12.13258398 +AK,Carbon Monoxide,5C_Open-burning-residential,,TON,940.92275 +AK,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,124.893214 +AK,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.596533689 +AK,Methane,1A3bii_Road-LDV,light_oil,TON,397.2558956 +AK,Methane,1A3biii_Road-bus,diesel_oil,TON,0.364354565 +AK,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,27.28626399 +AK,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,24.10955088 +AK,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.268270818 +AK,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.6778777 +AK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.3664209 +AK,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +AK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,14107.4 +AK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1436.96 +AK,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,351.86 +AK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,9995.91 +AK,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,22.86648731 +AK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,659.6635127 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,10.38 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1037.52 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,479.4899022 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,155.3891525 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19.88944653 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1.345850239 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3572.007964 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,684.4609785 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.818525468 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,37399.35668 +AK,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1619.958127 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,19.34177307 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785098 +AK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3060.965739 +AK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,125.1080395 +AK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7456.062297 +AK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,254.5632134 +AK,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,542.1512341 +AK,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,5855.005334 +AK,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,320.2683688 +AK,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1086.05597 +AK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,56.89980216 +AK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1737.03579 +AK,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.142041743 +AK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,24370.07152 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,331.397697 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,533.5069763 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.49576719 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.39955949 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,132.7338006 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,97.03968391 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.918166902 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,22.05209535 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,113.6049859 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,94.46600269 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,730.24732 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,203.139776 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,100.363487 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1033.798534 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,172.297939 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.04245041 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008309082 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.7055774 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,229.7979235 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,146.4299605 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,231.3116028 +AK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,185.63 +AK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.62 +AK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,265.23 +AK,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,22.88 +AK,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,34.15 +AK,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +AK,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,2.1 +AK,Nitrogen Oxides,5C_Incineration,,TON,77.52630845 +AK,Nitrogen Oxides,5C_Incineration,biomass,TON,5.158266496 +AK,Nitrogen Oxides,5C_Open-burning-residential,,TON,66.418067 +AK,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,5.55080825 +AK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.07067968 +AK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,126.7829859 +AK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.051592002 +AK,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,8.183292715 +AK,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.697439631 +AK,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.187486679 +AK,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.23137332 +AK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.150688273 +AK,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0 +AK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,152.2741476 +AK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,108.37574 +AK,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.00342541 +AK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,144.8648 +AK,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,46.75089569 +AK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,11.81025509 +AK,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.57834274 +AK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,71.6761972 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.577257419 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.948482735 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.735902914 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.29963879 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,582.5233828 +AK,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +AK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,86433.36808 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.222099065 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.391220288 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.217041018 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.470495458 +AK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,43.8148625 +AK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,138.403114 +AK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,6.02180925 +AK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.153399321 +AK,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2582604 +AK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.65590766 +AK,PM10 Filterable,2A2_Lime-production,,TON,0.023089 +AK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,7954.171917 +AK,PM10 Filterable,2A6_Other-minerals,,TON,5267.228585 +AK,PM10 Filterable,2C5_Lead-production,,TON,2.79564998 +AK,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,1.365225 +AK,PM10 Filterable,2D3d_Coating-application,,TON,0 +AK,PM10 Filterable,2H2_Food-and-beverage,,TON,540.9858882 +AK,PM10 Filterable,3Dc_Other-farm,,TON,0 +AK,PM10 Filterable,5C_Incineration,,TON,10.280199 +AK,PM10 Filterable,5C_Incineration,biomass,TON,9.642543 +AK,PM10 Filterable,5C_Open-burning-residential,,TON,420.64839 +AK,PM10 Filterable,5C_Open-burning-yard-waste,,TON,20.6817108 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,290.03 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,115.53 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,17.73 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,278.19 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,62.50870168 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,27.85129832 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.77 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,120.92 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.51300753 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.891137492 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.517730179 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.868266347 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,200.1858737 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,14.03360724 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.33317197 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1069.172748 +AK,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,149.7823122 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,5.381649264 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014352 +AK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,181.021234 +AK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,86433.36808 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,16.49136582 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,605.641604 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,27.17903408 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,34.44831216 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,517.3299491 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,42.23279992 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,108.6043606 +AK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.08590172 +AK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,43.064343 +AK,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003947482 +AK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1178.57567 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.02317922 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.409594015 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.546225322 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.641502145 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14.76676859 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.847810973 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.109769061 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.052614802 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,24.02654793 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,899.2983974 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,96.5548985 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,139.295968 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,13.2702897 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.598840481 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.70999295 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.291323465 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.23875E-05 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.58183495 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,407.9587829 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.299651273 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,40.6388193 +AK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,59.87 +AK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.76 +AK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.03 +AK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7954.171917 +AK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5270.63594 +AK,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,12.86 +AK,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,1.46 +AK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +AK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,794.8906601 +AK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +AK,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,138.7 +AK,PM10 Primary (Filt + Cond),5C_Incineration,,TON,10.79293592 +AK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.989740691 +AK,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,420.64839 +AK,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,20.6817108 +AK,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0 +AK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,134.9618956 +AK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,94.099161 +AK,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.00321133 +AK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,144.8648 +AK,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,28.32371922 +AK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,10.16889156 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.13880219 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,62.8497642 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.345831087 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.982719437 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1.608160731 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.19418881 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,574.0918871 +AK,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +AK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,8888.845208 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.180956517 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.228336698 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.222570154 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.608486991 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,33.672538 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,84.827713 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.6278726 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.184370754 +AK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2582604 +AK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.65590766 +AK,PM2.5 Filterable,2A2_Lime-production,,TON,0.023089 +AK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,795.4171917 +AK,PM2.5 Filterable,2A6_Other-minerals,,TON,671.3183421 +AK,PM2.5 Filterable,2C5_Lead-production,,TON,2.79564998 +AK,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.750447 +AK,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +AK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,195.4640552 +AK,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +AK,PM2.5 Filterable,5C_Incineration,,TON,7.72916775 +AK,PM2.5 Filterable,5C_Incineration,biomass,TON,6.1583774 +AK,PM2.5 Filterable,5C_Open-burning-residential,,TON,385.22493 +AK,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,15.9436088 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,272.7178363 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,101.25346 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,17.72978591 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,278.19 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,43.79568272 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,26.49577728 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.33045973 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,112.093467 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.66763633 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.782943766 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.513805384 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.638926341 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,196.8014545 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,8.863524824 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.229005471 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1061.198908 +AK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,145.288861 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.954232564 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014352 +AK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,78.96107622 +AK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8888.845208 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,15.46902917 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,494.2913924 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,25.46960138 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,28.09469978 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,484.9348705 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,39.73796645 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,100.8404585 +AK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.533749834 +AK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,42.0641265 +AK,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003638804 +AK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1114.146302 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.09683927 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.162298263 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.549547418 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.751320948 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14.32375281 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.472661469 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.109769061 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.991036846 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,22.10507748 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,898.3162633 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,86.4125775 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,85.720614 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,11.87635175 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.629811237 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.26869761 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.788017025 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.23875E-05 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.56437895 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,375.3223501 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.170660608 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,37.38769948 +AK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,59.87 +AK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.76 +AK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.03 +AK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,795.4171917 +AK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,674.7256916 +AK,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,12.86 +AK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.845221 +AK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +AK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,449.3687276 +AK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +AK,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,138.7 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,8.245196566 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.502286198 +AK,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,385.22493 +AK,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,15.9436088 +AK,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.03 +AK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1493.78 +AK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,990.44 +AK,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,4.85 +AK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,133.7 +AK,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,42.39959037 +AK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,48.00040963 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,8.04 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,118.37 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,46.82922276 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.58585201 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.158825009 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1.20088872 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,371.5590067 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,739.3034257 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.417253861 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,929.6594251 +AK,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,243.7485646 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.139039925 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +AK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,303.4266428 +AK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.68701354 +AK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,263.690505 +AK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.169997844 +AK,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,13.95167904 +AK,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,158.8692694 +AK,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,10.96551181 +AK,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,31.60984162 +AK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.411934118 +AK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,16.25108043 +AK,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001226558 +AK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5180.386226 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,119.2999514 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,258.8929824 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.307315692 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.249750479 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.8747262 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.729147433 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.019354966 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.998901133 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.256152535 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,17.38004121 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1728.25265 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,214.524889 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,237.527125 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,6.46020889 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28.87056571 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.065637145 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.37615E-06 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.46399586 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,9.88359481 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.2562962 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.956480134 +AK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,22.72 +AK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.13 +AK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.89 +AK,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,7.51 +AK,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +AK,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.7 +AK,Sulfur Dioxide,5C_Incineration,,TON,4.465076445 +AK,Sulfur Dioxide,5C_Incineration,biomass,TON,11.19812823 +AK,Sulfur Dioxide,5C_Open-burning-residential,,TON,11.069683 +AK,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.19937082 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,403.43 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,91.14 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.62 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,400.92 +AK,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,1.847257369 +AK,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,10.73718346 +AK,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,5.945859655 +AK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1894.9397 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.96 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,493.2 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,79.52846841 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,86.4654758 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.20135329 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.07778964 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.696467 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,15.00228767 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.055564028 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,569.0978917 +AK,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,166.5651934 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,70.15867984 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +AK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,955.641293 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,19.17077487 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5820.042933 +AK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,13.85100953 +AK,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,324.7086922 +AK,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,319.4216313 +AK,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,50.27032197 +AK,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,69.20489965 +AK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,122.8301979 +AK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,74.45093351 +AK,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.352082808 +AK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,609.2771145 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.03138391 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.961503337 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.91589392 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.441218827 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,19.49818166 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,273.8054727 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.069428898 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.59812015 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,722.5346203 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1111.570441 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,28.3985165 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,223.230815 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,3.90302545 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,59.21854042 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.99011208 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,59.11435736 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000144456 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.0067266 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,15157.71427 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.072260532 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2301.179957 +AK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,218.03 +AK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,497.2965176 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,91.86567632 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3483.429702 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,111.66 +AK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.69 +AK,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,6.35 +AK,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,0.26 +AK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2883.561595 +AK,Volatile Organic Compounds,2D3d_Coating-application,,TON,1036.54939 +AK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,139.90192 +AK,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +AK,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,29.1012685 +AK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,24.88750264 +AK,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,91.1 +AK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2.24251498 +AK,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,47.89 +AK,Volatile Organic Compounds,5C_Incineration,,TON,8.143581448 +AK,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.840809566 +AK,Volatile Organic Compounds,5C_Open-burning-residential,,TON,94.756515 +AK,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,23.29357 +AK,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,12.9784941 +AK,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,1.3 +AK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,2.7 +AL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.42 +AL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,357.81095 +AL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,180.967382 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.985852117 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.230900546 +AL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,3.32275 +AL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.03 +AL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.7945195 +AL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.909 +AL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.349442689 +AL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,46.1035 +AL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.528934965 +AL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.249206387 +AL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,6.403062361 +AL,Ammonia,1A3bii_Road-LDV,light_oil,TON,2482.451707 +AL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.331502256 +AL,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,71.70550221 +AL,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,77.5876767 +AL,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,15.60953593 +AL,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,21.59366704 +AL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.510368169 +AL,Ammonia,1A3c_Rail,diesel_oil,TON,7.727022793 +AL,Ammonia,1A3c_Rail,light_oil,TON,0.003136751 +AL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.594542808 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.21979781 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.010228508 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.076921547 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.452911591 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.813659056 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.701510499 +AL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.34942887 +AL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.658547026 +AL,Ammonia,1A4bi_Residential-stationary,biomass,TON,75.060526 +AL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.195267253 +AL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,2.0638002 +AL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.01412065 +AL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,383.0876326 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.471270709 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.243257263 +AL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018922344 +AL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.390204831 +AL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.728071777 +AL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.92340244 +AL,Ammonia,2A1_Cement-production,,TON,4.2733 +AL,Ammonia,2A2_Lime-production,Other_Fuel,TON,28.9923 +AL,Ammonia,2A6_Other-minerals,Other_Fuel,TON,323.863 +AL,Ammonia,2B_Chemicals-other,,TON,30.83 +AL,Ammonia,2C_Iron-steel-alloy,,TON,0.0954 +AL,Ammonia,2C3_Aluminum-production,,TON,6.039 +AL,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.865 +AL,Ammonia,2D3d_Coating-application,,TON,0.083 +AL,Ammonia,2H1_Pulp-and-paper,,TON,776.76915 +AL,Ammonia,2H2_Food-and-beverage,,TON,0 +AL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,254.06 +AL,Ammonia,3B1a_Cattle-dairy,,TON,521.7148279 +AL,Ammonia,3B1b_Cattle-non-dairy,,TON,5601.352443 +AL,Ammonia,3B2_Manure-sheep,,TON,59.195796 +AL,Ammonia,3B3_Manure-swine,,TON,1440.336348 +AL,Ammonia,3B4_Manure-other,,TON,1170.7476 +AL,Ammonia,3B4_Manure-poultry,,TON,46088.59547 +AL,Ammonia,3B4d_Manure-goats,,TON,560.802 +AL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,6517.205298 +AL,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,127.56 +AL,Ammonia,5C_Open-burning-industrial,,TON,0.00214 +AL,Ammonia,5D1_Wastewater-domestic,,TON,17.5842317 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,244372.7604 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,284569.8152 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15973.30497 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1048884.068 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,20486.22015 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.95702884 +AL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,228692.5637 +AL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,25312062.57 +AL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,236813.1424 +AL,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1228243.112 +AL,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6436156.373 +AL,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,506322.9845 +AL,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1255972.112 +AL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,85286.54016 +AL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4948.595394 +AL,Carbon Dioxide,1A3c_Rail,light_oil,TON,242.2879267 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,99901.74794 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,139750.1236 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6199.214028 +AL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,42942.19331 +AL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,341099.0714 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,426974.1313 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,17282.50753 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,33.16581339 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2313.0163 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,149860.4495 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,89662.21388 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,330260.9706 +AL,Carbon Monoxide,11C_Other-natural,,TON,164039.44 +AL,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,23.52 +AL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,78.7 +AL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,23.951 +AL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,10395.78 +AL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.197 +AL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,917.4283 +AL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,460.1538 +AL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,444.002 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1391.668683 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20259.23289 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1212.647563 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12484.22603 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,162.6430365 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2920.895408 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,872.4904258 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,147.2004279 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4920.654806 +AL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,45.18 +AL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.4552 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5087.329802 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6030.121027 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.427396691 +AL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10488.93995 +AL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,894.1822359 +AL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,572488.5028 +AL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,769.0934353 +AL,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,40522.7308 +AL,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,10174.20555 +AL,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2344.407321 +AL,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2397.821693 +AL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4309.433199 +AL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2506.662035 +AL,Carbon Monoxide,1A3c_Rail,light_oil,TON,77.13273537 +AL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1660.595319 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,88.03400402 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,63.40545334 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,120.6434012 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.057385368 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.196935325 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1323.553551 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,604.3950041 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,43626.48563 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,159.2687864 +AL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,204.6023907 +AL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,119189.0312 +AL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,8837.536431 +AL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.976336325 +AL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,283.7725965 +AL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,5.07060004 +AL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,923.397672 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1973.081238 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6661.619495 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.649633231 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,26.517782 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35758.88921 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,180.4883616 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,53003.2136 +AL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,7.229 +AL,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,18.09177 +AL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1328.83437 +AL,Carbon Monoxide,2A1_Cement-production,,TON,3096.39752 +AL,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1145.465 +AL,Carbon Monoxide,2A6_Other-minerals,,TON,17846.14532 +AL,Carbon Monoxide,2B_Chemicals-other,,TON,1085.080089 +AL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,16966.82523 +AL,Carbon Monoxide,2C3_Aluminum-production,,TON,107.307968 +AL,Carbon Monoxide,2C5_Lead-production,,TON,3792.201 +AL,Carbon Monoxide,2C6_Zinc-production,,TON,0.01 +AL,Carbon Monoxide,2C7_Other-metal,,TON,15.4063 +AL,Carbon Monoxide,2C7a_Copper-production,,TON,0.89662 +AL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,119.362 +AL,Carbon Monoxide,2D3d_Coating-application,,TON,166.75591 +AL,Carbon Monoxide,2D3h_Printing,,TON,0.8 +AL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,9447.06375 +AL,Carbon Monoxide,2H2_Food-and-beverage,,TON,18658.73291 +AL,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,310.79 +AL,Carbon Monoxide,3Dc_Other-farm,,TON,3.44 +AL,Carbon Monoxide,3F_Ag-res-on-field,,TON,2980.8 +AL,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,802.058 +AL,Carbon Monoxide,5C_Incineration,,TON,6.748004805 +AL,Carbon Monoxide,5C_Incineration,biomass,TON,33.16911878 +AL,Carbon Monoxide,5C_Open-burning-industrial,,TON,61.8 +AL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,44961.08361 +AL,Carbon Monoxide,5C_Open-burning-residential,,TON,1279.40019 +AL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1068.14298 +AL,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.975614454 +AL,Methane,1A3bii_Road-LDV,light_oil,TON,2108.705626 +AL,Methane,1A3biii_Road-bus,diesel_oil,TON,5.26366761 +AL,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,142.564302 +AL,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,355.151058 +AL,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,6.548103326 +AL,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,28.63134262 +AL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.31224958 +AL,Nitrogen Oxides,11C_Other-natural,,TON,12300.5147 +AL,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,15.42 +AL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,71.22 +AL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,50.763 +AL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,111063.63 +AL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.87 +AL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1831.0894 +AL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,550.6789 +AL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,166.2039 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2062.095872 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3036.314689 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,209.5540619 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,9047.507027 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,341.4799624 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3805.991332 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,624.4073827 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,102.5362095 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,15513.51659 +AL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,257.1 +AL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.8681 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,9703.553677 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,100.618908 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.091140223 +AL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,609.9406987 +AL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1387.831186 +AL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,74696.80507 +AL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2163.260394 +AL,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4412.623189 +AL,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,40175.83427 +AL,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,3410.763945 +AL,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,7410.697336 +AL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,169.9068 +AL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,17203.58359 +AL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.987590156 +AL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7684.105753 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,104.1662702 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,162.2262745 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,248.7822488 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.086201323 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.987529823 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1239.556984 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1028.432224 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,651.5490824 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,44.23783764 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,437.5982065 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1146.416921 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,142.1212511 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,3.514810085 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,9.3902907 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,18.25416745 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2359.56477 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4156.420896 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,67.56807985 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.813042634 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.566408 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,311.2397203 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1071.340856 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1814.327777 +AL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,4.829 +AL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,45.64726 +AL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,409.71995 +AL,Nitrogen Oxides,2A1_Cement-production,,TON,4544.04693 +AL,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,4138.776 +AL,Nitrogen Oxides,2A6_Other-minerals,,TON,8299.34234 +AL,Nitrogen Oxides,2B_Chemicals-other,,TON,1191.422088 +AL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,6455.70961 +AL,Nitrogen Oxides,2C3_Aluminum-production,,TON,241.534222 +AL,Nitrogen Oxides,2C5_Lead-production,,TON,121.90101 +AL,Nitrogen Oxides,2C6_Zinc-production,,TON,0.03 +AL,Nitrogen Oxides,2C7_Other-metal,,TON,31.39906 +AL,Nitrogen Oxides,2C7a_Copper-production,,TON,3.71527 +AL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,63.98324 +AL,Nitrogen Oxides,2D3d_Coating-application,,TON,112.30522 +AL,Nitrogen Oxides,2D3h_Printing,,TON,0.9 +AL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,9165.7067 +AL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,98.22809 +AL,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,155.5546 +AL,Nitrogen Oxides,3Dc_Other-farm,,TON,28.28 +AL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,129.6 +AL,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,97.674 +AL,Nitrogen Oxides,5C_Incineration,,TON,3.133439642 +AL,Nitrogen Oxides,5C_Incineration,biomass,TON,192.1130537 +AL,Nitrogen Oxides,5C_Open-burning-industrial,,TON,2.95 +AL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1330.210275 +AL,Nitrogen Oxides,5C_Open-burning-residential,,TON,90.310641 +AL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,47.4730145 +AL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.795184229 +AL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1536.818704 +AL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.584969047 +AL,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,86.64868535 +AL,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7.151424451 +AL,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.002934625 +AL,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.388640678 +AL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.247405711 +AL,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.855 +AL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,71 +AL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.55738 +AL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4403.29401 +AL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,124.3335882 +AL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,45.8314 +AL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,16.04808 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1290.453306 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.85316078 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,248.4700538 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,128.0185691 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,6.805461165 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,590.6506873 +AL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,30.3004 +AL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,11.6054 +AL,PM10 Filterable,1A3aii_Domestic-aviation,Other_Fuel,TON,5.58 +AL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,232174.535 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.193142892 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.98415786 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.425250559 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.502620074 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.557933483 +AL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.210888707 +AL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,6.397777 +AL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.095249385 +AL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.61573776 +AL,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,4.86957 +AL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.687771 +AL,PM10 Filterable,2A1_Cement-production,,TON,936.1075572 +AL,PM10 Filterable,2A2_Lime-production,,TON,436.11687 +AL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,30095.03039 +AL,PM10 Filterable,2A6_Other-minerals,,TON,17422.62597 +AL,PM10 Filterable,2B_Chemicals-other,,TON,498.7073672 +AL,PM10 Filterable,2C_Iron-steel-alloy,,TON,2804.978427 +AL,PM10 Filterable,2C3_Aluminum-production,,TON,179.3425244 +AL,PM10 Filterable,2C5_Lead-production,,TON,23.31875 +AL,PM10 Filterable,2C6_Zinc-production,,TON,10.44 +AL,PM10 Filterable,2C7_Other-metal,,TON,199.79805 +AL,PM10 Filterable,2C7a_Copper-production,,TON,25.81108 +AL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,49.4094501 +AL,PM10 Filterable,2D3d_Coating-application,,TON,106.8319072 +AL,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.94 +AL,PM10 Filterable,2D3h_Printing,,TON,0.094 +AL,PM10 Filterable,2H1_Pulp-and-paper,,TON,3826.00065 +AL,PM10 Filterable,2H2_Food-and-beverage,,TON,461.7825828 +AL,PM10 Filterable,2H3_Other-industrial-processes,,TON,317.1078247 +AL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,83.91208714 +AL,PM10 Filterable,2I_Wood-processing,,TON,0 +AL,PM10 Filterable,3Dc_Other-farm,,TON,24399.264 +AL,PM10 Filterable,5A_Solid-waste-disposal,,TON,962.9464 +AL,PM10 Filterable,5C_Incineration,,TON,4.54111 +AL,PM10 Filterable,5C_Incineration,biomass,TON,9.083 +AL,PM10 Filterable,5C_Open-burning-industrial,,TON,543 +AL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4522.713149 +AL,PM10 Filterable,5C_Open-burning-residential,,TON,571.9672 +AL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,176.879386 +AL,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.04 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,3.98909 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,73.414 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.902098158 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4822.566056 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,233.2199623 +AL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,116.0377509 +AL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,36.3576027 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,158.1840134 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.18418086 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.953787112 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1434.833636 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,35.00703619 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,269.4339466 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,164.5822624 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,7.37193292 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1237.19574 +AL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,78.7811 +AL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,13.9149 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,804.1324072 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,31.68035702 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574081 +AL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,225.0573202 +AL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,232174.535 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,93.98010886 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2272.937325 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,133.6423548 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,104.0442812 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2087.934604 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,233.4439786 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,435.5479191 +AL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.074124808 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,584.3287837 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.032664082 +AL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,323.0675314 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.46144306 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,102.9071129 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,21.94238992 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.537658417 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.50403557 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,104.9584722 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,37.60386439 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.773985017 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,36.79228748 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,322.3425692 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1287.379978 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.464735885 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,6.4390525 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.413605315 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.00092546 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,362.3036364 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,54.17419691 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004190294 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.8105679 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,401.2807439 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.88707732 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,297.4681526 +AL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,6.242 +AL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.80935 +AL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1011.087987 +AL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,587.6063724 +AL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,30095.03039 +AL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,18587.87311 +AL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,660.041563 +AL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,6273.033399 +AL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,796.207611 +AL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,50.193049 +AL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,48.024 +AL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,331.6703301 +AL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,118.73099 +AL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,74.7358431 +AL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,106.8319172 +AL,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.94 +AL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.094 +AL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,6898.030552 +AL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1783.206778 +AL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,375.6091218 +AL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,99.39246584 +AL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0 +AL,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,12189 +AL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,24407.99627 +AL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,432 +AL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1056.7596 +AL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,5.377708112 +AL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.7563481 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,543 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4522.713149 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,571.9672 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,176.879386 +AL,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0536027 +AL,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.79 +AL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,45.67 +AL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.26052 +AL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2083.08801 +AL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,90.7556588 +AL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,45.2906979 +AL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,15.17896 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1056.812184 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.25382304 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,149.0743105 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,115.1750971 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,6.108870638 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,468.4496759 +AL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,28.591 +AL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,10.4448 +AL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,28638.6151 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.173425623 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.92677852 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.257828092 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.490963027 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.469343553 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.162071771 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,3.92122065 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.84171979 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.53865579 +AL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,4.03991 +AL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.71964 +AL,PM2.5 Filterable,2A1_Cement-production,,TON,619.8567958 +AL,PM2.5 Filterable,2A2_Lime-production,,TON,129.2665772 +AL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3009.503039 +AL,PM2.5 Filterable,2A6_Other-minerals,,TON,4667.763781 +AL,PM2.5 Filterable,2B_Chemicals-other,,TON,323.5086776 +AL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1914.444352 +AL,PM2.5 Filterable,2C3_Aluminum-production,,TON,166.0668582 +AL,PM2.5 Filterable,2C5_Lead-production,,TON,19.855029 +AL,PM2.5 Filterable,2C6_Zinc-production,,TON,10.44 +AL,PM2.5 Filterable,2C7_Other-metal,,TON,122.3348792 +AL,PM2.5 Filterable,2C7a_Copper-production,,TON,7.13316 +AL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,29.442698 +AL,PM2.5 Filterable,2D3d_Coating-application,,TON,61.34217148 +AL,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.78 +AL,PM2.5 Filterable,2D3h_Printing,,TON,0.078 +AL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2977.791327 +AL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,336.7202938 +AL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,95.56734026 +AL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,60.27170604 +AL,PM2.5 Filterable,2I_Wood-processing,,TON,0 +AL,PM2.5 Filterable,3Dc_Other-farm,,TON,4922.065 +AL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,307.08913 +AL,PM2.5 Filterable,5C_Incineration,,TON,4.1444 +AL,PM2.5 Filterable,5C_Incineration,biomass,TON,7.2333 +AL,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +AL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3486.560775 +AL,PM2.5 Filterable,5C_Open-burning-residential,,TON,523.80159 +AL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,136.356907 +AL,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.04 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1.92409 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,48.084 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.605238158 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2502.358826 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,199.6419953 +AL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,115.4970485 +AL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,35.4884827 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,153.4252306 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27.97072989 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.953020372 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1201.242283 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,30.40877232 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,170.0460666 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,151.7441648 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,6.675618452 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1117.160657 +AL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,77.0717 +AL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,12.7543 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,780.0085099 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.16431793 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574081 +AL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,43.89113207 +AL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,28638.6151 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,84.06134759 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1197.036216 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,118.033715 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,50.09603143 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1837.402314 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,210.806794 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,375.8978832 +AL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.739141328 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,539.8764677 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.03011032 +AL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,308.6433766 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.409842444 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,99.03104633 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.10518393 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.496844892 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,51.21818622 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,101.8097312 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.69352091 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.773985017 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,35.68850239 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,296.5684948 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1285.465987 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.415919229 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,3.96249605 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.16007609 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.92384182 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,351.4345439 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,49.84029568 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004190294 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.6962488 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,369.1790816 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.2304626 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,273.6707768 +AL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,5.41234 +AL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.84122 +AL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,694.83725 +AL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,280.7661964 +AL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3009.503039 +AL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,5861.637389 +AL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,484.0231474 +AL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5382.648513 +AL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,782.932308 +AL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,46.729329 +AL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,48.024 +AL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,256.6771617 +AL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,100.05304 +AL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,64.8400951 +AL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,94.21718148 +AL,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.78 +AL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.078 +AL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,6115.790876 +AL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1672.785067 +AL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,243.7510814 +AL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,100.8696735 +AL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0 +AL,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1828.35 +AL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4930.797279 +AL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,432 +AL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,392.15233 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,5.012257576 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.875389234 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,543 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3486.560775 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,523.80159 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,136.356907 +AL,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0536027 +AL,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.18 +AL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,8.01 +AL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,26.827 +AL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,361085.95 +AL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.061 +AL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,87.4239011 +AL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,596.6982 +AL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1329.6492 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,54.31983335 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.937590221 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.371223996 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,5146.426421 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.30164082 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,11416.24915 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,222.0023864 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,25.4878788 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3020.180991 +AL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,13.37 +AL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.3307 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,228.1899818 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.546494928 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000109225 +AL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,71.27610575 +AL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.516450877 +AL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,560.0100411 +AL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.496177693 +AL,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,27.17323076 +AL,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,67.61371065 +AL,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,5.576278984 +AL,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,13.36449356 +AL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.886604908 +AL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,174.5571419 +AL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.006640867 +AL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1025.993467 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.011081867 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,281.3328585 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,435.234679 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.357843572 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.559831528 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.14426516 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.73332279 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.755047438 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.13704839 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,9.342139123 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.422683822 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,19.3965333 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,8.3183838 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,66.5368655 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,43.20150865 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,13.84721792 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,92.89078726 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.477680349 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000729431 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.50313775 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.122871254 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.08974082 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.11134807 +AL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,111.098 +AL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,6.14558 +AL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,16738.68901 +AL,Sulfur Dioxide,2A1_Cement-production,,TON,258.74799 +AL,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,4674.538 +AL,Sulfur Dioxide,2A6_Other-minerals,,TON,2785.78511 +AL,Sulfur Dioxide,2B_Chemicals-other,,TON,8068.6822 +AL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,5620.77379 +AL,Sulfur Dioxide,2C3_Aluminum-production,,TON,40.90394002 +AL,Sulfur Dioxide,2C5_Lead-production,,TON,7710.85 +AL,Sulfur Dioxide,2C7_Other-metal,,TON,19.89858 +AL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.01764 +AL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,66.3264 +AL,Sulfur Dioxide,2D3d_Coating-application,,TON,0.47001 +AL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,5281.9229 +AL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,169.3246186 +AL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,90.9412 +AL,Sulfur Dioxide,3Dc_Other-farm,,TON,2.35 +AL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,17.28 +AL,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,36.461 +AL,Sulfur Dioxide,5C_Incineration,,TON,3.096628938 +AL,Sulfur Dioxide,5C_Incineration,biomass,TON,9.019183362 +AL,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.37 +AL,Sulfur Dioxide,5C_Open-burning-residential,,TON,15.0517679 +AL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.2575621 +AL,Volatile Organic Compounds,11C_Other-natural,,TON,1552280.1 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,461.1201 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,44.22 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.7226667 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,822.91334 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,239.084353 +AL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,773.1798838 +AL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,148.4603362 +AL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,273.0373329 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,198.0488118 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,982.1159996 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.702696322 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,518.6842013 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,28.42086294 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,19.62089705 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.459640431 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,11.02759914 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,841.2234089 +AL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,13.19 +AL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1013.22063 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,419.9192521 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001481055 +AL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,588.0828624 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,182.5397332 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,51689.96476 +AL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,99.22376627 +AL,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2547.183671 +AL,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2235.131377 +AL,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,474.0609318 +AL,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,542.7587609 +AL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1360.253675 +AL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,902.8945802 +AL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.125063627 +AL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,179.5987788 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.014693064 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.03436517 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.838458713 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002099009 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.174078358 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,133.0209969 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,151.049129 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2245.227317 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.520769951 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,51.71726123 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8619.799877 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1621.620664 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.13668708 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,10.31900075 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.70988396 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,126.932904 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,385.7463381 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,572.1120355 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014127925 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.9758929 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13066.60764 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,44.42994607 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,19523.76182 +AL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,228.94658 +AL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1128.511916 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,969.4954523 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,17092.72168 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,16.74587799 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,138.7 +AL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,386.50676 +AL,Volatile Organic Compounds,2A1_Cement-production,,TON,274.53978 +AL,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,67.966 +AL,Volatile Organic Compounds,2A6_Other-minerals,,TON,256.670152 +AL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2211.573488 +AL,Volatile Organic Compounds,2B_Chemicals-other,,TON,1540.358401 +AL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1186.07968 +AL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,789.41907 +AL,Volatile Organic Compounds,2C5_Lead-production,,TON,33.69 +AL,Volatile Organic Compounds,2C7_Other-metal,,TON,1120.75841 +AL,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.1694 +AL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,19649.91593 +AL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,132.61505 +AL,Volatile Organic Compounds,2D3d_Coating-application,,TON,15698.70941 +AL,Volatile Organic Compounds,2D3e_Degreasing,,TON,3715.934645 +AL,Volatile Organic Compounds,2D3h_Printing,,TON,6048.53671 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,434.7913846 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,499.4839554 +AL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,13175.24016 +AL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,946.5967652 +AL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,837.0354609 +AL,Volatile Organic Compounds,3Dc_Other-farm,,TON,683.05 +AL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3077.860882 +AL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,259.2 +AL,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,323.7632 +AL,Volatile Organic Compounds,5C_Incineration,,TON,2.75474643 +AL,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.596344102 +AL,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,24.97 +AL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3086.087662 +AL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,128.843177 +AL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,199.217083 +AL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,88.441425 +AL,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,20.65 +AR,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.1 +AR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,157.9034 +AR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,66.4875715 +AR,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,15 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.415890218 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.182850482 +AR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,50.3968 +AR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,48.15 +AR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.420281863 +AR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.130656619 +AR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.806649578 +AR,Ammonia,1A3bii_Road-LDV,light_oil,TON,1332.148054 +AR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.783832796 +AR,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,52.12130393 +AR,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,39.74406913 +AR,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,12.31333807 +AR,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.21323674 +AR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.24082868 +AR,Ammonia,1A3c_Rail,diesel_oil,TON,8.665956007 +AR,Ammonia,1A3c_Rail,light_oil,TON,0.004019054 +AR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.82802726 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.4881 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.496518508 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.038386688 +AR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.145769949 +AR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.279068314 +AR,Ammonia,1A4bi_Residential-stationary,biomass,TON,85.63859032 +AR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.054488504 +AR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.00176 +AR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.185406211 +AR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,316.3989104 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.521064388 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.356507255 +AR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011437761 +AR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.37939895 +AR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.396484917 +AR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.681517751 +AR,Ammonia,2A6_Other-minerals,,TON,0 +AR,Ammonia,2B_Chemicals-other,,TON,121.6708 +AR,Ammonia,2C7_Other-metal,Other_Fuel,TON,467.9 +AR,Ammonia,2D3d_Coating-application,,TON,0 +AR,Ammonia,2D3h_Printing,,TON,1.56 +AR,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,13.3 +AR,Ammonia,2H1_Pulp-and-paper,,TON,194.16 +AR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.77 +AR,Ammonia,2I_Wood-processing,,TON,12.74 +AR,Ammonia,3B1a_Cattle-dairy,,TON,705.073314 +AR,Ammonia,3B1b_Cattle-non-dairy,,TON,8693.540983 +AR,Ammonia,3B2_Manure-sheep,,TON,53.341068 +AR,Ammonia,3B3_Manure-swine,,TON,2673.884717 +AR,Ammonia,3B4_Manure-other,,TON,1061.15592 +AR,Ammonia,3B4_Manure-poultry,,TON,64092.17872 +AR,Ammonia,3B4d_Manure-goats,,TON,352.60236 +AR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,42569.65314 +AR,Ammonia,5D1_Wastewater-domestic,,TON,10.7702498 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,174236.7495 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,211774.3353 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12423.30836 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,543634.312 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,10735.48213 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.47851513 +AR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,158222.2697 +AR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,14109484.69 +AR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,125362.7137 +AR,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,906704.8388 +AR,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3332118.471 +AR,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,381908.3657 +AR,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,654434.2801 +AR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,99027.8079 +AR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6319.33151 +AR,Carbon Dioxide,1A3c_Rail,light_oil,TON,310.4281734 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,60962.92998 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,85283.3244 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3725.965247 +AR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,17914.03836 +AR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,166800.5513 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1170678.483 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,26084.24435 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,123.9071813 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1398.1209 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,148556.2513 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,48827.26283 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,179875.6909 +AR,Carbon Monoxide,11C_Other-natural,,TON,138885.6 +AR,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,169.86 +AR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,17.853157 +AR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2760.48 +AR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,5.64 +AR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,874.9746 +AR,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,283.152 +AR,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.37 +AR,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,27.574 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,977.3284389 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15597.32079 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,918.2222092 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9430.339894 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.253657796 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,885.8698817 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.501247157 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,67.83135054 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4409.193676 +AR,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,15.154 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2599.122043 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3411.10504 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.213698309 +AR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6089.1723 +AR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,673.4592372 +AR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,416661.072 +AR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,468.3947633 +AR,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,37107.70077 +AR,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6830.882844 +AR,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1795.346091 +AR,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1448.50973 +AR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5710.343673 +AR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2822.20525 +AR,Carbon Monoxide,1A3c_Rail,light_oil,TON,107.937665 +AR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,358.665872 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,190.4916 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.41977 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,202.494 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,368.8491864 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,28703.87665 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,96.52392735 +AR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,85.35092361 +AR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,63350.56494 +AR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10235.70674 +AR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.272442396 +AR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0.242000075 +AR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.927030385 +AR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,748.6550802 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6226.310295 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,9817.9694 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,13.63330214 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.028047 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,38524.50832 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,98.28851393 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,32011.5615 +AR,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,98.059 +AR,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,5.6 +AR,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,8.194 +AR,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.438 +AR,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4491.272 +AR,Carbon Monoxide,2A1_Cement-production,,TON,620.52 +AR,Carbon Monoxide,2A2_Lime-production,,TON,67.525 +AR,Carbon Monoxide,2A6_Other-minerals,,TON,443.9711 +AR,Carbon Monoxide,2B_Chemicals-other,,TON,441.5572 +AR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4160.422 +AR,Carbon Monoxide,2C3_Aluminum-production,,TON,47.13 +AR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,440.181 +AR,Carbon Monoxide,2C7a_Copper-production,,TON,169.89 +AR,Carbon Monoxide,2D3d_Coating-application,,TON,7.75902 +AR,Carbon Monoxide,2D3e_Degreasing,,TON,0 +AR,Carbon Monoxide,2D3h_Printing,,TON,1.366 +AR,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.74 +AR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,11064.2026 +AR,Carbon Monoxide,2H2_Food-and-beverage,,TON,280.8563419 +AR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,16.07 +AR,Carbon Monoxide,2I_Wood-processing,,TON,156.67 +AR,Carbon Monoxide,3Dc_Other-farm,,TON,0 +AR,Carbon Monoxide,3F_Ag-res-on-field,,TON,55864.7 +AR,Carbon Monoxide,5A_Solid-waste-disposal,,TON,249.088 +AR,Carbon Monoxide,5C_Incineration,,TON,0.358094727 +AR,Carbon Monoxide,5C_Incineration,biomass,TON,187.2195253 +AR,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.98 +AR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,24497.22835 +AR,Carbon Monoxide,5C_Open-burning-residential,,TON,5535.8143 +AR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,696.63571 +AR,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.061735359 +AR,Methane,1A3bii_Road-LDV,light_oil,TON,1531.016719 +AR,Methane,1A3biii_Road-bus,diesel_oil,TON,1.207962428 +AR,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,132.5952129 +AR,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,98.06120696 +AR,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,4.987349132 +AR,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10.69822884 +AR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.6657726 +AR,Nitrogen Oxides,11C_Other-natural,,TON,19751.7807 +AR,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,358.87 +AR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,68.75613 +AR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,29359.94 +AR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,247.7 +AR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,993.6736 +AR,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,202.61 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.67 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,4.243 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1472.877266 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2241.2229 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,157.3839606 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3873.076927 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,85.76631644 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,7517.244413 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,21.08368482 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,661.2990833 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,11995.26268 +AR,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,34.141 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5010.366656 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,48.94841253 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.04557006 +AR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,324.5162926 +AR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1002.161981 +AR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,49173.27788 +AR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1239.987237 +AR,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3761.433191 +AR,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,25892.44027 +AR,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,2583.757916 +AR,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4510.928506 +AR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,252.0018838 +AR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19727.50977 +AR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.138733174 +AR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1861.56817 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,65.9119 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.9319 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,615.69 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,627.5724476 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,371.3678171 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,26.86024762 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,182.5723522 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,509.9213868 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,164.1616299 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.980792935 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.007009552 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,3.33731035 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1899.04081 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12319.70538 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,112.0203284 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.036880327 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.453391 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,263.4233726 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,583.4130617 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,824.207235 +AR,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1335.56 +AR,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,3 +AR,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,11.1456 +AR,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,2.163 +AR,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5007.198 +AR,Nitrogen Oxides,2A1_Cement-production,,TON,5058.58 +AR,Nitrogen Oxides,2A2_Lime-production,,TON,719.201 +AR,Nitrogen Oxides,2A6_Other-minerals,,TON,668.2223 +AR,Nitrogen Oxides,2B_Chemicals-other,,TON,1485.2002 +AR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,952.215 +AR,Nitrogen Oxides,2C3_Aluminum-production,,TON,109.82 +AR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,152.977 +AR,Nitrogen Oxides,2C7a_Copper-production,,TON,2.45 +AR,Nitrogen Oxides,2D3d_Coating-application,,TON,10.87416 +AR,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +AR,Nitrogen Oxides,2D3h_Printing,,TON,1.84 +AR,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,2.9 +AR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,6078.3726 +AR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,16.92 +AR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,19.17 +AR,Nitrogen Oxides,2I_Wood-processing,,TON,100.48 +AR,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +AR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3654.7 +AR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,101.4 +AR,Nitrogen Oxides,5C_Incineration,,TON,0.050451344 +AR,Nitrogen Oxides,5C_Incineration,biomass,TON,366.9460088 +AR,Nitrogen Oxides,5C_Open-burning-industrial,,TON,5.78 +AR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,724.7698578 +AR,Nitrogen Oxides,5C_Open-burning-residential,,TON,390.7633 +AR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,30.9615789 +AR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.570235081 +AR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,979.0246347 +AR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.3070325 +AR,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,65.25107228 +AR,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.74642333 +AR,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.492253535 +AR,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.268325779 +AR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.413496277 +AR,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,166.7411 +AR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.184478726 +AR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1499.277 +AR,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,23.525791 +AR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,50.656076 +AR,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,25.64316 +AR,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.03196335 +AR,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.34070297 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2002.175436 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.889435393 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,395.8948366 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.636236293 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,126.0526135 +AR,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,22.65135 +AR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,199342.9722 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,115.48426 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.001184848 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.429116 +AR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.058847574 +AR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.006077985 +AR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.200238674 +AR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.742355767 +AR,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1976 +AR,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +AR,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.7736272 +AR,PM10 Filterable,2A1_Cement-production,,TON,164.9935 +AR,PM10 Filterable,2A2_Lime-production,,TON,31.0851645 +AR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,19877.97506 +AR,PM10 Filterable,2A6_Other-minerals,,TON,5715.032431 +AR,PM10 Filterable,2B_Chemicals-other,,TON,918.7075287 +AR,PM10 Filterable,2C_Iron-steel-alloy,,TON,92.34187892 +AR,PM10 Filterable,2C3_Aluminum-production,,TON,11.52592 +AR,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,93.64607074 +AR,PM10 Filterable,2C7a_Copper-production,,TON,3.3292 +AR,PM10 Filterable,2D3d_Coating-application,,TON,0.0300438 +AR,PM10 Filterable,2D3e_Degreasing,,TON,0.0008778 +AR,PM10 Filterable,2H1_Pulp-and-paper,,TON,1486.83683 +AR,PM10 Filterable,2H2_Food-and-beverage,,TON,186.4995862 +AR,PM10 Filterable,2H3_Other-industrial-processes,,TON,93.41233466 +AR,PM10 Filterable,2I_Wood-processing,,TON,17.9124 +AR,PM10 Filterable,3Dc_Other-farm,,TON,144857.3691 +AR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,37.1165 +AR,PM10 Filterable,5C_Incineration,,TON,0.74630391 +AR,PM10 Filterable,5C_Incineration,biomass,TON,65.51116 +AR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2464.218967 +AR,PM10 Filterable,5C_Open-burning-residential,,TON,2474.83526 +AR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,115.359531 +AR,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.09691 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,171.44 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.061126 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1599.81 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,27.54 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,96.34222 +AR,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,55.748 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0722 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.785 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,111.7255694 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.97647537 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.520734102 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2091.209734 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.642779168 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,408.5547906 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.784908218 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,9.178394693 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,288.0577194 +AR,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,38.147 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,411.7207606 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.61816491 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +AR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,134.5440073 +AR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,199342.9722 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,74.13410109 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1419.269194 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,79.44684318 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,93.4441004 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1505.08465 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,185.4804622 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,278.6893862 +AR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.36238189 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,639.888586 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041851453 +AR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,66.2424206 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,121.4335 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.140955 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.8782 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,64.05355512 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,22.94065305 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.464806601 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,15.34729446 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,148.8553671 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1490.549787 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.129682587 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.006281775 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.441266815 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.730124201 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1142.757664 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,37.91412864 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015655131 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.3029793 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,407.0044199 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.91907048 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,162.0151665 +AR,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,490.293 +AR,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.52 +AR,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +AR,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,291.333 +AR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,177.155 +AR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,50.485 +AR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,19877.97506 +AR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5845.873509 +AR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1128.974634 +AR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,182.8192 +AR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,56.413 +AR,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.4 +AR,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,155.7427 +AR,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,11.89 +AR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,41.4040303 +AR,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0011 +AR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.112 +AR,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.97 +AR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2612.2969 +AR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,946.1150027 +AR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,124.759059 +AR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,25.885 +AR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,144860.7125 +AR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,7309.4 +AR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,56.3 +AR,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.777870647 +AR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,68.86796611 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,69.72 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2464.218967 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2474.83526 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,115.359531 +AR,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,7.5 +AR,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,97.0201 +AR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.676234646 +AR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,958.107 +AR,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,23.525791 +AR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,49.46797442 +AR,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,21.753788 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0249992 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.11249614 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1446.815196 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.81481454 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,112.7280713 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.434896367 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,111.2078056 +AR,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,21.235665 +AR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,22568.5026 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,97.52005 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000296213 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.4167075 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.045225437 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.004036368 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.153887138 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.058295632 +AR,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1976 +AR,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +AR,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.6419447 +AR,PM2.5 Filterable,2A1_Cement-production,,TON,54.4010363 +AR,PM2.5 Filterable,2A2_Lime-production,,TON,8.8137113 +AR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1987.797506 +AR,PM2.5 Filterable,2A6_Other-minerals,,TON,875.913951 +AR,PM2.5 Filterable,2B_Chemicals-other,,TON,729.0549654 +AR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,81.82451767 +AR,PM2.5 Filterable,2C3_Aluminum-production,,TON,9.50230041 +AR,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,47.25103854 +AR,PM2.5 Filterable,2C7a_Copper-production,,TON,2.96732522 +AR,PM2.5 Filterable,2D3d_Coating-application,,TON,0.0088364 +AR,PM2.5 Filterable,2D3e_Degreasing,,TON,0.000822938 +AR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,831.1215368 +AR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,60.9710923 +AR,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,63.8133438 +AR,PM2.5 Filterable,2I_Wood-processing,,TON,13.60349502 +AR,PM2.5 Filterable,3Dc_Other-farm,,TON,28966.42101 +AR,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,9.79464 +AR,PM2.5 Filterable,5C_Incineration,,TON,0.600590307 +AR,PM2.5 Filterable,5C_Incineration,biomass,TON,37.316463 +AR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1899.665971 +AR,PM2.5 Filterable,5C_Open-burning-residential,,TON,2266.42743 +AR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,88.931063 +AR,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.0552019 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,101.719 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.552881825 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1058.64 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,27.54 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,95.1541182 +AR,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,51.858641 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.06523586 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.55679307 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,108.364489 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.80956241 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.52024901 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1536.286547 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.569510312 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,124.3471054 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.583870524 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,9.202992948 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,273.7891386 +AR,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,36.731305 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,399.3693425 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,15.29829986 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +AR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,23.33974219 +AR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,22568.5026 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,67.25270072 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,845.7612019 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,70.81425201 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,54.33367631 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1356.716755 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,168.5940287 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,244.5409831 +AR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.709679458 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,592.7687799 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038579337 +AR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,64.25530346 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,103.46928 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.140066363 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.8657915 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,62.13195031 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.16516828 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.464806601 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,14.88686817 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,136.9524707 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1488.989903 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.116060495 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.004240156 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.394915105 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.046058637 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1108.475387 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,34.88118382 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015655131 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2338898 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,374.444454 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.5614998 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,149.0539553 +AR,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.52 +AR,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +AR,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.8983186 +AR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,66.5625365 +AR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,28.2135339 +AR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1987.797506 +AR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1006.755078 +AR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,939.3223729 +AR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,172.3018343 +AR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,54.38940466 +AR,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.4 +AR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,109.3476509 +AR,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,11.5281252 +AR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,41.3828229 +AR,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.00104514 +AR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.112 +AR,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.97 +AR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1956.580951 +AR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,820.5868023 +AR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,95.16006481 +AR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,21.57609802 +AR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,28969.76436 +AR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,7309.4 +AR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,28.9781 +AR,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.635083537 +AR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,40.67043861 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,69.72 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1899.665971 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2266.42743 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,88.931063 +AR,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,7.4582919 +AR,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,85.8 +AR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,14.785134 +AR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,60198.4 +AR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,375.88 +AR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,22.5251158 +AR,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,52.02 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.17 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,324.305 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,38.65771578 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.400513978 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.286353181 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,543.8973038 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.275210099 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,15591.96804 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,60.81271687 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,56.8202864 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1000.105547 +AR,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,4.138 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,118.2705339 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.286417931 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.46123E-05 +AR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,45.10321065 +AR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.742118292 +AR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,716.8685265 +AR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.38147102 +AR,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,46.05927972 +AR,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,36.51770201 +AR,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.206552343 +AR,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,7.145283404 +AR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.029073724 +AR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,195.7936958 +AR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008508605 +AR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,110.0259672 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7.5309 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.126469 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.98696 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.26230295 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.291562123 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.082370212 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3.897226758 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.608832915 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,23.91753634 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.32120954 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0.032328448 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,7.8983027 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.22706736 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,254.6858539 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.721527796 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002725151 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.30412588 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.08680456 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.02937745 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.962469452 +AR,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,17.994 +AR,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.058 +AR,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.02 +AR,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,362.381 +AR,Sulfur Dioxide,2A1_Cement-production,,TON,2098.602 +AR,Sulfur Dioxide,2A2_Lime-production,,TON,11.874 +AR,Sulfur Dioxide,2A6_Other-minerals,,TON,710.5787 +AR,Sulfur Dioxide,2B_Chemicals-other,,TON,1220.7369 +AR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,484.271 +AR,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.3427 +AR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,238.7183 +AR,Sulfur Dioxide,2C7a_Copper-production,,TON,0.02 +AR,Sulfur Dioxide,2D3d_Coating-application,,TON,0.9686 +AR,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +AR,Sulfur Dioxide,2D3h_Printing,,TON,0.016 +AR,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.11 +AR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2933.60384 +AR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.2401 +AR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1145.191 +AR,Sulfur Dioxide,2I_Wood-processing,,TON,4.11 +AR,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +AR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,678.73 +AR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,9.5 +AR,Sulfur Dioxide,5C_Incineration,,TON,0.00531081 +AR,Sulfur Dioxide,5C_Incineration,biomass,TON,27.77553848 +AR,Sulfur Dioxide,5C_Open-burning-residential,,TON,65.127229 +AR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.68991181 +AR,Volatile Organic Compounds,11C_Other-natural,,TON,1124476.16 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,10.54 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.449176645 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,376.44 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.18 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,41.537879 +AR,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2970.23904 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.56907 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,5.9024 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,140.2150507 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,741.6890255 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.76243421 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,370.9692912 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.35624674 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,99.18375198 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.263086875 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,3.841068379 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,594.2482283 +AR,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,11.518 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,514.8715595 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,222.2641706 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000740527 +AR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,214.5548547 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,142.3474962 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,34707.49576 +AR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,67.89320195 +AR,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2288.001624 +AR,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1540.740489 +AR,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,376.3046804 +AR,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,333.6210827 +AR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1496.04291 +AR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1012.56321 +AR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.044104812 +AR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,40.31490135 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,5.21301 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.154492 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.5838 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,92.18155204 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1378.07804 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.316402151 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,21.57348645 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4258.569675 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1884.897964 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.038141944 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.008799997 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.129784339 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,102.9147353 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1204.077719 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,581.1240725 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.052770895 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.2161091 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13142.58806 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.19538799 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10229.38187 +AR,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,110.3985 +AR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1239.998264 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,81.49483002 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,21653.0993 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,176.227 +AR,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1186.657 +AR,Volatile Organic Compounds,2A1_Cement-production,,TON,95.664 +AR,Volatile Organic Compounds,2A2_Lime-production,,TON,4.034 +AR,Volatile Organic Compounds,2A6_Other-minerals,,TON,221.15964 +AR,Volatile Organic Compounds,2B_Chemicals-other,,TON,1408.941033 +AR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,219.052 +AR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1665.442 +AR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,104.1227 +AR,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.26 +AR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12035.47 +AR,Volatile Organic Compounds,2D3d_Coating-application,,TON,15309.39584 +AR,Volatile Organic Compounds,2D3e_Degreasing,,TON,2522.8495 +AR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,786.89469 +AR,Volatile Organic Compounds,2D3h_Printing,,TON,6212.1215 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,415.7411248 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,277.3306642 +AR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,13298.11184 +AR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1469.670937 +AR,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1396.39465 +AR,Volatile Organic Compounds,2I_Wood-processing,,TON,239.8 +AR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0 +AR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,11036.03201 +AR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,4698.9 +AR,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,25.56 +AR,Volatile Organic Compounds,5C_Incineration,,TON,0.244325796 +AR,Volatile Organic Compounds,5C_Incineration,biomass,TON,27.46662532 +AR,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,3.92 +AR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1681.466844 +AR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,557.489 +AR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,129.928094 +AR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,54.169897 +AR,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,34.775 +AR,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,4.74 +AZ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,627.54205 +AZ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,441.708642 +AZ,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,1.4184 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.227138787 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,51.1348391 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.46113286 +AZ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,45.8302461 +AZ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.541968286 +AZ,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.124922559 +AZ,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.006264751 +AZ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,46.59090372 +AZ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,28.81825803 +AZ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,5.471114975 +AZ,Ammonia,1A2g_Construction_and_Mining,natural_gas,TON,0.00504572 +AZ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.402861798 +AZ,Ammonia,1A3bii_Road-LDV,light_oil,TON,2260.727515 +AZ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.110047462 +AZ,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,94.12966574 +AZ,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,104.8270428 +AZ,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,21.36455306 +AZ,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,28.58209756 +AZ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.69163363 +AZ,Ammonia,1A3c_Rail,diesel_oil,TON,11.74634103 +AZ,Ammonia,1A3c_Rail,light_oil,TON,0.008629342 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.11737651 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.004174472 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01627484 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.210202965 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.579597189 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,19.03540073 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.3148462 +AZ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.59107811 +AZ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,21.57051878 +AZ,Ammonia,1A4bi_Residential-stationary,biomass,TON,154.4568269 +AZ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.073472273 +AZ,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.064570032 +AZ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.030885515 +AZ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,361.258695 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.349902639 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.126521801 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003360879 +AZ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027712786 +AZ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.702790792 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.39500252 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.031411516 +AZ,Ammonia,2A6_Other-minerals,,TON,37.1782 +AZ,Ammonia,2B_Chemicals-other,,TON,0.7304473 +AZ,Ammonia,2C7_Other-metal,Other_Fuel,TON,4.54 +AZ,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.06951 +AZ,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,3356.86 +AZ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1483.92 +AZ,Ammonia,3B1a_Cattle-dairy,,TON,13405.7909 +AZ,Ammonia,3B1b_Cattle-non-dairy,,TON,6763.496652 +AZ,Ammonia,3B2_Manure-sheep,,TON,342.419748 +AZ,Ammonia,3B3_Manure-swine,,TON,1093.966104 +AZ,Ammonia,3B4_Manure-other,,TON,489.7068 +AZ,Ammonia,3B4_Manure-poultry,,TON,1.7183496 +AZ,Ammonia,3B4d_Manure-goats,,TON,230.30568 +AZ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,6355.71284 +AZ,Ammonia,5D1_Wastewater-domestic,,TON,2411.0824 +AZ,Ammonia,6A_Other-commertial,Other_Fuel,TON,1176.93 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,199833.8452 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,187589.7758 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10175.37072 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2329781.862 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,46052.2088 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,11.15332763 +AZ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,312830.0654 +AZ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,28492090.17 +AZ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,295905.3914 +AZ,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1823851.889 +AZ,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,9570796.767 +AZ,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,748054.1882 +AZ,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1895420.46 +AZ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,126515.217 +AZ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6033.58748 +AZ,Carbon Dioxide,1A3c_Rail,light_oil,TON,295.3672661 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,114450.8973 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,160115.7074 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7131.34953 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,94997.13994 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,610902.6191 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,130245.6352 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2275.489171 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,14.52175502 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2808.4375 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,128006.8845 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,45298.42789 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,166888.3579 +AZ,Carbon Monoxide,11C_Other-natural,,TON,390474.28 +AZ,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.08 +AZ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,113.378 +AZ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,12.150618 +AZ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6129.475 +AZ,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,4997.463855 +AZ,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,18.6164 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3291.403697 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13608.91495 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,813.9416326 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.011790427 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1521.502757 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,354.9232293 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.783314325 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.049470938 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1870.589173 +AZ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.924418 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,11138.21307 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,13842.39384 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.961643579 +AZ,Carbon Monoxide,1A2g_Industry-other,Other_Fuel,TON,0.18 +AZ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,15067.84242 +AZ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1313.960882 +AZ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,549430.8593 +AZ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,992.8418827 +AZ,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,56311.53246 +AZ,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,16063.10713 +AZ,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,3510.350732 +AZ,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3380.583963 +AZ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6085.884244 +AZ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3697.719619 +AZ,Carbon Monoxide,1A3c_Rail,light_oil,TON,94.73823685 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,831.7943267 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.787040515 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.963027338 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1404.815821 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,692.4305705 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,50973.53087 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,182.8611862 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,229.1572237 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,127697.0866 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,18145.40837 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.29986447 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,8.87837485 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.149515021 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,786.802135 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,716.6477532 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,736.9836358 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.59799934 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.193183 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,28835.68617 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,91.18530778 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,27050.21831 +AZ,Carbon Monoxide,2A1_Cement-production,,TON,222.989187 +AZ,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,638.0806 +AZ,Carbon Monoxide,2A6_Other-minerals,,TON,5818.755528 +AZ,Carbon Monoxide,2B_Chemicals-other,,TON,14.8464 +AZ,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,107.72 +AZ,Carbon Monoxide,2C7a_Copper-production,,TON,88.8627 +AZ,Carbon Monoxide,2D3d_Coating-application,Other_Fuel,TON,1.6255 +AZ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,18.0356 +AZ,Carbon Monoxide,2H2_Food-and-beverage,,TON,2655.113903 +AZ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,187.43 +AZ,Carbon Monoxide,3Dc_Other-farm,Other_Fuel,TON,1.13274 +AZ,Carbon Monoxide,3F_Ag-res-on-field,,TON,550.8 +AZ,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,40.21 +AZ,Carbon Monoxide,5C_Incineration,,TON,80.42414413 +AZ,Carbon Monoxide,5C_Incineration,biomass,TON,0.696094574 +AZ,Carbon Monoxide,5C_Open-burning-dump,,TON,0 +AZ,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,24197.228 +AZ,Carbon Monoxide,5C_Open-burning-residential,,TON,3231.631 +AZ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,131.73098 +AZ,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,52.86 +AZ,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.677019189 +AZ,Methane,1A3bii_Road-LDV,light_oil,TON,1771.394475 +AZ,Methane,1A3biii_Road-bus,diesel_oil,TON,3.588284422 +AZ,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,171.5917047 +AZ,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,476.6774597 +AZ,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,11.38916533 +AZ,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,42.68745247 +AZ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.23756577 +AZ,Nitrogen Oxides,11C_Other-natural,,TON,19795.993 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.09 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,115.116 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,49.826202 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,75221.55 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1848.601589 +AZ,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,18.2389 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1900.073307 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2053.248473 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,139.8076037 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.009579107 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,6996.754211 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2949.437629 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.598211508 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.157054872 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,8296.350022 +AZ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,8.92156 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,21472.0177 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,216.8778414 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.205065317 +AZ,Nitrogen Oxides,1A2g_Industry-other,Other_Fuel,TON,0.06 +AZ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3206.644676 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2085.083393 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,66724.85529 +AZ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2751.759244 +AZ,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,5660.127508 +AZ,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,65316.23281 +AZ,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,5374.058993 +AZ,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11617.0721 +AZ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,258.7670375 +AZ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,25257.92323 +AZ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.195831641 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3416.057781 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.535609062 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.427035772 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1000.819217 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1178.19685 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,718.7401927 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,50.7637064 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,488.6160536 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1084.240291 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,309.9204543 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.0775148 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.257162791 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.53825415 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1858.707175 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1397.704636 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.68009628 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.355995769 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,31.042036 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,229.0005783 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,541.2483713 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,897.515775 +AZ,Nitrogen Oxides,2A1_Cement-production,,TON,1364.974918 +AZ,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,915.854 +AZ,Nitrogen Oxides,2A6_Other-minerals,,TON,2681.60247 +AZ,Nitrogen Oxides,2B_Chemicals-other,,TON,133.0268 +AZ,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,49.73 +AZ,Nitrogen Oxides,2C7a_Copper-production,,TON,347.032 +AZ,Nitrogen Oxides,2D3d_Coating-application,Other_Fuel,TON,1.964 +AZ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,21.466 +AZ,Nitrogen Oxides,2H2_Food-and-beverage,,TON,19.1615 +AZ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,377.1 +AZ,Nitrogen Oxides,3Dc_Other-farm,Other_Fuel,TON,1.3485 +AZ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,21.6 +AZ,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,24.27 +AZ,Nitrogen Oxides,5C_Incineration,,TON,43.74943189 +AZ,Nitrogen Oxides,5C_Incineration,biomass,TON,7.884340063 +AZ,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,727.00777 +AZ,Nitrogen Oxides,5C_Open-burning-residential,,TON,228.1143 +AZ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,4.2109349 +AZ,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,18.39 +AZ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.160639809 +AZ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1689.154271 +AZ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.731699187 +AZ,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,123.2989147 +AZ,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,10.86260144 +AZ,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,3.019743916 +AZ,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.588017875 +AZ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.929962769 +AZ,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,42.8753 +AZ,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.513127 +AZ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4652.2321 +AZ,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,24.8165091 +AZ,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.431357 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,33.00131931 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,643.1345992 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.236453796 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.007846704 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,135.8699433 +AZ,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.578235 +AZ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,100526.217 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.67838129 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.407825109 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.047353963 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.36306022 +AZ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.07109668 +AZ,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.222985844 +AZ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.03229537 +AZ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,23.2396501 +AZ,PM10 Filterable,2A1_Cement-production,,TON,234.219857 +AZ,PM10 Filterable,2A2_Lime-production,,TON,24.5521597 +AZ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,41863.09295 +AZ,PM10 Filterable,2A6_Other-minerals,,TON,78256.78379 +AZ,PM10 Filterable,2B_Chemicals-other,,TON,80.005614 +AZ,PM10 Filterable,2C_Iron-steel-alloy,,TON,10.72489 +AZ,PM10 Filterable,2C7_Other-metal,,TON,370.5559829 +AZ,PM10 Filterable,2C7a_Copper-production,,TON,409.8256 +AZ,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,2.3144 +AZ,PM10 Filterable,2D3d_Coating-application,,TON,2.17094 +AZ,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,13.8445236 +AZ,PM10 Filterable,2H2_Food-and-beverage,,TON,69.74467622 +AZ,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1551.654596 +AZ,PM10 Filterable,2I_Wood-processing,,TON,0.108426162 +AZ,PM10 Filterable,3Dc_Other-farm,,TON,19040.08634 +AZ,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,32.17290623 +AZ,PM10 Filterable,5C_Incineration,,TON,22.03 +AZ,PM10 Filterable,5C_Open-burning-dump,,TON,0 +AZ,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2369.9568 +AZ,PM10 Filterable,5C_Open-burning-residential,,TON,1444.717 +AZ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,28.75055 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,45.3887 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.245889217 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6946.9182 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,68.1250886 +AZ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.504687 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,139.1560119 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.96151369 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.306116897 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.007823899 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,526.2870419 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,701.1692946 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.480550292 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.018081088 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,265.5945222 +AZ,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.663373 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1772.991387 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,71.22430443 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001291685 +AZ,PM10 Primary (Filt + Cond),1A2g_Industry-other,Other_Fuel,TON,0.01 +AZ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,369.3668776 +AZ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,116878.217 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,133.9550117 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2604.888768 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,171.0390803 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,168.6974585 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3448.921198 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,340.6963801 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,671.8094016 +AZ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.39225044 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,837.1187334 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039830927 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,286.4416317 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.193331546 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.06012193 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,148.7977972 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,120.2784562 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,43.07091335 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.890542895 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,40.68873913 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,324.3663813 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2644.734499 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.11941582 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.230462547 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.071169415 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,148.0182665 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,131.4854416 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.970473916 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00183472 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.6238988 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,277.2190624 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.06193587 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,150.3173209 +AZ,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,252.0088198 +AZ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,30.00647171 +AZ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,53892.79295 +AZ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,71180.11717 +AZ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,294.75887 +AZ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,18.59478 +AZ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,588.9649242 +AZ,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,762.3199232 +AZ,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,2.63 +AZ,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.28444 +AZ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,232.545205 +AZ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,6987.375151 +AZ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3236.388113 +AZ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.2025856 +AZ,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,455.8 +AZ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,21887.36676 +AZ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,59.4 +AZ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,126.9528065 +AZ,PM10 Primary (Filt + Cond),5C_Incineration,,TON,25.62064646 +AZ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.063339052 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2481.4168 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1444.717 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,28.75055 +AZ,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,32.78 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,24.4226 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.231831622 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2030.64275 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,16.2926963 +AZ,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.431357 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.27062824 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,78.85953585 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.109277056 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.0019733 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,130.5498833 +AZ,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.3306108 +AZ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,15538.778 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.278786441 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.405533095 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.037553213 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.86181512 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.054639135 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.148084224 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.024819635 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,22.4748686 +AZ,PM2.5 Filterable,2A1_Cement-production,,TON,95.09596622 +AZ,PM2.5 Filterable,2A2_Lime-production,,TON,6.994488384 +AZ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,8372.70157 +AZ,PM2.5 Filterable,2A6_Other-minerals,,TON,10378.90079 +AZ,PM2.5 Filterable,2B_Chemicals-other,,TON,56.632475 +AZ,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2.145887 +AZ,PM2.5 Filterable,2C7_Other-metal,,TON,146.6715745 +AZ,PM2.5 Filterable,2C7a_Copper-production,,TON,323.3121816 +AZ,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.92046 +AZ,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +AZ,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.94589747 +AZ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,34.66560287 +AZ,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1194.311364 +AZ,PM2.5 Filterable,2I_Wood-processing,,TON,0.067775872 +AZ,PM2.5 Filterable,3Dc_Other-farm,,TON,3754.09762 +AZ,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,2.605737187 +AZ,PM2.5 Filterable,5C_Incineration,,TON,15.09 +AZ,PM2.5 Filterable,5C_Open-burning-dump,,TON,0 +AZ,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2369.9568 +AZ,PM2.5 Filterable,5C_Open-burning-residential,,TON,1323.066 +AZ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,28.75055 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,26.936 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.965951769 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4325.334 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,52.5831271 +AZ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.504687 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,134.9027979 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.7715947 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.30134475 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.007839519 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,507.503557 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,135.5210316 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.353581053 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.01221413 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,261.0495924 +AZ,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.4157486 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1719.803475 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,65.56761695 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001291685 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Industry-other,Other_Fuel,TON,0.01 +AZ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,110.0884879 +AZ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,14872.816 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,119.2177486 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1304.662358 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,150.389945 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,80.66857791 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3024.24518 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,304.626303 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,571.1564294 +AZ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.34238899 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,772.9212805 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036715685 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,283.7229647 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.408691969 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.053656274 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,147.3848227 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,116.6700791 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,39.73755014 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.890542895 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,39.46803238 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,298.4238028 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2640.983143 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.10792153 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.155560884 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.063693133 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,147.9996413 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,127.5409297 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.892847373 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00183472 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.4851825 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,255.0426876 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.73008357 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,138.2917857 +AZ,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,112.8847747 +AZ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,14.05609242 +AZ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,9533.37157 +AZ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,10132.09172 +AZ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,235.41034 +AZ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,10.015769 +AZ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,347.8210622 +AZ,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,675.8059018 +AZ,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,2.23606 +AZ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.28444 +AZ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,218.3045789 +AZ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,6427.63546 +AZ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,2447.68358 +AZ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.16193536 +AZ,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,50.14 +AZ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3764.668028 +AZ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,59.4 +AZ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,107.3546163 +AZ,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,18.3715814 +AZ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.042404112 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2481.4168 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1323.066 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,28.75055 +AZ,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,16.93 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,36.1421 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.349659984 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,47477.604 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,45.52088634 +AZ,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.926282 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.35007677 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.307044559 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.335815897 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1681.975442 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3476.688579 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,55.22279819 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.333987708 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,35.48604676 +AZ,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.679905 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,167.1106128 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.880192506 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000245756 +AZ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,337.3603356 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.423506332 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,733.0775153 +AZ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.238863421 +AZ,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,41.19132065 +AZ,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,103.3042776 +AZ,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,8.190617055 +AZ,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,20.43702533 +AZ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.581108204 +AZ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,257.821507 +AZ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.006850941 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,490.8266677 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.497912696 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.872091849 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.870042368 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.331109281 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.083269897 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.157656149 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4.881801776 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.327326667 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,48.28954634 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.0584544 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0.591333875 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.27387315 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.80632265 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.14056149 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.048745898 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000319384 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.49864398 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.964213825 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.21245626 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.152522019 +AZ,Sulfur Dioxide,2A1_Cement-production,,TON,9.699591 +AZ,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,2964.095 +AZ,Sulfur Dioxide,2A6_Other-minerals,,TON,83.9760176 +AZ,Sulfur Dioxide,2B_Chemicals-other,,TON,1.209609 +AZ,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,18.65 +AZ,Sulfur Dioxide,2C7a_Copper-production,,TON,28826.69 +AZ,Sulfur Dioxide,2D3d_Coating-application,Other_Fuel,TON,0.009 +AZ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.12793136 +AZ,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +AZ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,110.6 +AZ,Sulfur Dioxide,3F_Ag-res-on-field,,TON,3.78 +AZ,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,7.5806 +AZ,Sulfur Dioxide,5C_Incineration,,TON,20.32935361 +AZ,Sulfur Dioxide,5C_Incineration,biomass,TON,0.011446708 +AZ,Sulfur Dioxide,5C_Open-burning-residential,,TON,38.01911 +AZ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.9098632 +AZ,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,50.62 +AZ,Volatile Organic Compounds,11C_Other-natural,,TON,1920418.1 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.02 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.725448 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.8068859 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,609.8341 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,164.8231305 +AZ,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,18.64455198 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,235.3073103 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,656.8584647 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,84.75547803 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,473.7028837 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,16.18249616 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.043897086 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.002074416 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,405.640843 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2205.024388 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,955.0001096 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.134089243 +AZ,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,0.13 +AZ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,771.0069687 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,246.4384879 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,49931.18062 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,137.3744129 +AZ,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3601.591675 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,3635.967359 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,656.0750818 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,760.2484601 +AZ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3195.738657 +AZ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1287.941271 +AZ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.891688292 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,289.6433699 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.007977284 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.050944143 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,106.8646845 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,172.9304524 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2634.107768 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.75846065 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,55.22288965 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9339.864322 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3247.244376 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.042181193 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.322850084 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.020932191 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,108.180832 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,138.2123847 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,39.05171336 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.105997407 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.4670208 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9721.363333 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.44570053 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10124.31012 +AZ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,12.16 +AZ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,553.5015908 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,237.6694311 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,20063.33827 +AZ,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.6284 +AZ,Volatile Organic Compounds,2A1_Cement-production,,TON,19.349672 +AZ,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,20.41491 +AZ,Volatile Organic Compounds,2A6_Other-minerals,,TON,97.6960253 +AZ,Volatile Organic Compounds,2B_Chemicals-other,,TON,569.516257 +AZ,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,33.024 +AZ,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.5041 +AZ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,31799.16677 +AZ,Volatile Organic Compounds,2D3d_Coating-application,,TON,23018.78554 +AZ,Volatile Organic Compounds,2D3e_Degreasing,,TON,1077.273613 +AZ,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,454.33213 +AZ,Volatile Organic Compounds,2D3h_Printing,,TON,2031.626733 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,35.97095863 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2808.140141 +AZ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,220.52078 +AZ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1394.384436 +AZ,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1849.210358 +AZ,Volatile Organic Compounds,3Dc_Other-farm,Other_Fuel,TON,0.0741675 +AZ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,711.5767 +AZ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,43.2 +AZ,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,1091.112493 +AZ,Volatile Organic Compounds,5C_Incineration,,TON,6.426814489 +AZ,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.115703698 +AZ,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0 +AZ,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1684.51595 +AZ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1140.576 +AZ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,24.56854 +AZ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,1177.9829 +AZ,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.45 +AZ,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,14.22 +CA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.487154026 +CA,Ammonia,1A1a_Public-Electricity,biomass,TON,1792.313754 +CA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,361.6005922 +CA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,6.439174109 +CA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,7.80233724 +CA,Ammonia,1A1a_Public-Electricity,light_oil,TON,422.0690425 +CA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2335.655301 +CA,Ammonia,1A1b_Pet-refining,heavy_oil,TON,1.27544E-05 +CA,Ammonia,1A1b_Pet-refining,natural_gas,TON,406.984402 +CA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.862245 +CA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.953836576 +CA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,323.5024412 +CA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,218.9636262 +CA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.611985747 +CA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000605482 +CA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.016678747 +CA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,742.9641276 +CA,Ammonia,1A2c_Chemicals,diesel_oil,TON,0.0045 +CA,Ammonia,1A2c_Chemicals,heavy_oil,TON,0.004015 +CA,Ammonia,1A2c_Chemicals,natural_gas,TON,9.7386916 +CA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.77026 +CA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.8695 +CA,Ammonia,1A3bii_Road-LDV,light_oil,TON,19353.7945 +CA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.066 +CA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,963.563 +CA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,45.406 +CA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,24.8565 +CA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,81.687 +CA,Ammonia,1A3c_Rail,diesel_oil,TON,16.47579822 +CA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14.99755621 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.21440517 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.251824618 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,392.938897 +CA,Ammonia,1A4bi_Residential-stationary,biomass,TON,2370.737814 +CA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.219782717 +CA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.112739996 +CA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,5.802822989 +CA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,4924.713183 +CA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,19.25676487 +CA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.008729874 +CA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,203.5610969 +CA,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.250419594 +CA,Ammonia,2A1_Cement-production,,TON,19.787632 +CA,Ammonia,2A6_Other-minerals,,TON,158.8836521 +CA,Ammonia,2B_Chemicals-other,,TON,4001.294533 +CA,Ammonia,2C_Iron-steel-alloy,,TON,0.1535827 +CA,Ammonia,2C7_Other-metal,Other_Fuel,TON,94.72689487 +CA,Ammonia,2D3d_Coating-application,,TON,113.8944367 +CA,Ammonia,2D3e_Degreasing,,TON,10.23758 +CA,Ammonia,2D3f_Dry-cleaning,Other_Fuel,TON,0.000005 +CA,Ammonia,2D3h_Printing,,TON,16.70304129 +CA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,9.373305452 +CA,Ammonia,2H1_Pulp-and-paper,,TON,15.5304171 +CA,Ammonia,2H2_Food-and-beverage,,TON,25.46165128 +CA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,2119.292293 +CA,Ammonia,3B1a_Cattle-dairy,,TON,145533.4342 +CA,Ammonia,3B1b_Cattle-non-dairy,,TON,10744.50133 +CA,Ammonia,3B2_Manure-sheep,,TON,2078.58024 +CA,Ammonia,3B3_Manure-swine,,TON,1300.62475 +CA,Ammonia,3B4_Manure-other,,TON,2430.19656 +CA,Ammonia,3B4_Manure-poultry,,TON,29464.79537 +CA,Ammonia,3B4d_Manure-goats,,TON,912.826596 +CA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,65913.74645 +CA,Ammonia,3Dc_Other-farm,,TON,0.24446 +CA,Ammonia,3F_Ag-res-on-field,,TON,1083.71 +CA,Ammonia,5A_Solid-waste-disposal,,TON,5677.98491 +CA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,49208.937 +CA,Ammonia,5C_Incineration,biomass,TON,34.650905 +CA,Ammonia,5C_Open-burning-industrial,,TON,0.006625 +CA,Ammonia,5C_Open-burning-yard-waste,,TON,77.4038 +CA,Ammonia,5D1_Wastewater-domestic,,TON,852.6422297 +CA,Ammonia,5D2_Wastewater-industrial,biomass,TON,36.48426 +CA,Ammonia,5E_Other-waste,Other_Fuel,TON,0.000675 +CA,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.29367 +CA,Carbon Monoxide,11C_Other-natural,,TON,481748.0723 +CA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,59.14752499 +CA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,3439.440096 +CA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,621.1517221 +CA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,213.9312082 +CA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,139.0464636 +CA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,163.8349051 +CA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,7195.438107 +CA,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0.163699315 +CA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,4539.835069 +CA,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.027 +CA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.018 +CA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,360.1986661 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,28477.27039 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,74885.37052 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,29765.61124 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,39.0281654 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12398.42839 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.378869226 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1885.566825 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,411.2182093 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3208.032784 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,92.59309912 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16509.21387 +CA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0.04 +CA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,35.9824665 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,7.948419613 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,122.4285679 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,50479.8025 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,29371.362 +CA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,40620.25336 +CA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1775.1775 +CA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1740826.056 +CA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,3850.787 +CA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,233429.8645 +CA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,81589.251 +CA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,13726.8485 +CA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,150819.679 +CA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,6125.827318 +CA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4620.651988 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.385278847 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,883.3975172 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,124.4936988 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,18.53110928 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,139.5349076 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16969.24867 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4907.5715 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,134351.662 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2871.9665 +CA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1114.053 +CA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,204637.0495 +CA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,322887.1587 +CA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,86.33030349 +CA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,15.5017508 +CA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,29.01407919 +CA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,9770.297433 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20557.194 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,25956.2365 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8121.981 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,61850.168 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,397.3025 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,269253.826 +CA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,88.4124932 +CA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.132 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,20.86339849 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,162.9773564 +CA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,371.5762955 +CA,Carbon Monoxide,2A1_Cement-production,,TON,7315.39567 +CA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1.21 +CA,Carbon Monoxide,2A5b_Construction-and-demolition,Other_Fuel,TON,144.71675 +CA,Carbon Monoxide,2A6_Other-minerals,,TON,7130.340643 +CA,Carbon Monoxide,2B_Chemicals-other,,TON,715.8832045 +CA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,120.5842298 +CA,Carbon Monoxide,2C3_Aluminum-production,,TON,1.039469 +CA,Carbon Monoxide,2C5_Lead-production,,TON,0.003045 +CA,Carbon Monoxide,2C6_Zinc-production,,TON,0.21 +CA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,181.7621429 +CA,Carbon Monoxide,2C7a_Copper-production,,TON,0.008 +CA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,2.929 +CA,Carbon Monoxide,2D3d_Coating-application,,TON,1167.540485 +CA,Carbon Monoxide,2D3e_Degreasing,,TON,504.6195999 +CA,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.000255 +CA,Carbon Monoxide,2D3h_Printing,,TON,3.55955944 +CA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,277.7559052 +CA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,554.1819099 +CA,Carbon Monoxide,2H2_Food-and-beverage,,TON,3701.297532 +CA,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,2679.766846 +CA,Carbon Monoxide,3B1b_Cattle-non-dairy,Other_Fuel,TON,224.29403 +CA,Carbon Monoxide,3Dc_Other-farm,,TON,9524.080173 +CA,Carbon Monoxide,3F_Ag-res-on-field,,TON,70714.151 +CA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,449.2607977 +CA,Carbon Monoxide,5C_Incineration,,TON,4.987616101 +CA,Carbon Monoxide,5C_Incineration,biomass,TON,112.2057437 +CA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.84003958 +CA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,17572.68663 +CA,Carbon Monoxide,5C_Open-burning-residential,,TON,3031.757 +CA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,26586.24762 +CA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,354.3775532 +CA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,245.71591 +CA,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.37222 +CA,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,1.36 +CA,Nitrogen Oxides,11C_Other-natural,,TON,40241.5403 +CA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,75.39150528 +CA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1448.531537 +CA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,1354.288717 +CA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,589.7422254 +CA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,189.8467189 +CA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,97.053389 +CA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,5410.935922 +CA,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0.004690856 +CA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,6128.857523 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.108 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.198 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,956.6603671 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,30169.02718 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13520.54463 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5812.178679 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,77.09906083 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2814.704619 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,6.850958207 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4139.614265 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1473.70807 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1345.330134 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,311.7365286 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,26784.11097 +CA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.05 +CA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0.01 +CA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,60.94522199 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,12.74284845 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,62.07395008 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,111033.0115 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,760.295 +CA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,14409.74816 +CA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,4272.361 +CA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,174260.3735 +CA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,18874.5615 +CA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,32273.599 +CA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,276331.7015 +CA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,68069.946 +CA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4193.815 +CA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,43668.09855 +CA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,29107.89883 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,5.038148864 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1809.223927 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,23.27231825 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,170.9170546 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,17.12071497 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17566.98754 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,9480.4375 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3032.8935 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,273.896 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2105.3575 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2517.0405 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,4392.837348 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,315.171821 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.512967155 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,104.4507281 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,21602.30348 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,40092.442 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,762.777 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,95.776 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,692.9525 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,902.6815 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,12715.9085 +CA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,809.410278 +CA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.632 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,4.498955747 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,145.1805278 +CA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1436.393402 +CA,Nitrogen Oxides,2A1_Cement-production,,TON,11346.72044 +CA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,0.0855 +CA,Nitrogen Oxides,2A5b_Construction-and-demolition,Other_Fuel,TON,18.6139475 +CA,Nitrogen Oxides,2A6_Other-minerals,,TON,19878.52515 +CA,Nitrogen Oxides,2B_Chemicals-other,,TON,685.0947694 +CA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,208.5498107 +CA,Nitrogen Oxides,2C3_Aluminum-production,,TON,4.254595 +CA,Nitrogen Oxides,2C5_Lead-production,,TON,0.01131 +CA,Nitrogen Oxides,2C6_Zinc-production,,TON,1.334 +CA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,477.8000927 +CA,Nitrogen Oxides,2C7a_Copper-production,,TON,0.032 +CA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,3.422 +CA,Nitrogen Oxides,2D3d_Coating-application,,TON,856.5816701 +CA,Nitrogen Oxides,2D3e_Degreasing,,TON,44.75381235 +CA,Nitrogen Oxides,2D3f_Dry-cleaning,Other_Fuel,TON,0.0012048 +CA,Nitrogen Oxides,2D3h_Printing,,TON,7.67655368 +CA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,312.9366063 +CA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,707.4747966 +CA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,46.01259675 +CA,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,3135.434332 +CA,Nitrogen Oxides,3B1b_Cattle-non-dairy,Other_Fuel,TON,194.101269 +CA,Nitrogen Oxides,3Dc_Other-farm,,TON,3.53 +CA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,4318.403125 +CA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,348.5374696 +CA,Nitrogen Oxides,5C_Incineration,,TON,87.71323863 +CA,Nitrogen Oxides,5C_Incineration,biomass,TON,449.4846733 +CA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.05592977 +CA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,519.901937 +CA,Nitrogen Oxides,5C_Open-burning-residential,,TON,214.00645 +CA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,895.932712 +CA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,60.95314288 +CA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,34.07286625 +CA,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,13.626 +CA,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,1.63 +CA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,4.3724653 +CA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,241.6159054 +CA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,206.9922131 +CA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,61.9366 +CA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,12.767462 +CA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,20.23960442 +CA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,685.3784063 +CA,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.013611201 +CA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1435.542424 +CA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00697304 +CA,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0278922 +CA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,291.2684795 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,992.346636 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,351.1621627 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,38.50840614 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.297353669 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,608.3363353 +CA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0.00339791 +CA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,8.062943497 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.907459789 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.586194553 +CA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,322922.3477 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.364609678 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,873.0394813 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.780714977 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.814700978 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.496772441 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,211.3979834 +CA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.477368472 +CA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.34949385 +CA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,6.26704846 +CA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,52.012235 +CA,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.057197174 +CA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0489404 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,1.953787236 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,64.96013502 +CA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.512445729 +CA,PM10 Filterable,2A1_Cement-production,,TON,1840.185794 +CA,PM10 Filterable,2A2_Lime-production,,TON,34.97867348 +CA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,306640.2258 +CA,PM10 Filterable,2A6_Other-minerals,,TON,32156.39369 +CA,PM10 Filterable,2B_Chemicals-other,,TON,1425.574197 +CA,PM10 Filterable,2C_Iron-steel-alloy,,TON,25.73389552 +CA,PM10 Filterable,2C3_Aluminum-production,,TON,0.550474746 +CA,PM10 Filterable,2C5_Lead-production,,TON,0.006376474 +CA,PM10 Filterable,2C6_Zinc-production,,TON,0.504592282 +CA,PM10 Filterable,2C7_Other-metal,,TON,344.1042767 +CA,PM10 Filterable,2C7a_Copper-production,,TON,5.229300435 +CA,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.044832 +CA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,19.24823287 +CA,PM10 Filterable,2D3d_Coating-application,,TON,237.0440801 +CA,PM10 Filterable,2D3e_Degreasing,,TON,24.20423849 +CA,PM10 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,7.98846E-05 +CA,PM10 Filterable,2D3h_Printing,,TON,2.180632649 +CA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,54.23176041 +CA,PM10 Filterable,2H1_Pulp-and-paper,,TON,580.7228038 +CA,PM10 Filterable,2H2_Food-and-beverage,,TON,1165.154377 +CA,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,666.4151825 +CA,PM10 Filterable,2I_Wood-processing,,TON,30.26961273 +CA,PM10 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,71.36444533 +CA,PM10 Filterable,3Dc_Other-farm,,TON,32868.28647 +CA,PM10 Filterable,5A_Solid-waste-disposal,,TON,587.7327661 +CA,PM10 Filterable,5C_Incineration,,TON,1.680335855 +CA,PM10 Filterable,5C_Incineration,biomass,TON,17.1664319 +CA,PM10 Filterable,5C_Open-burning-industrial,,TON,0.66390489 +CA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1767.66641 +CA,PM10 Filterable,5C_Open-burning-residential,,TON,1355.37282 +CA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,64.0714299 +CA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,8.166275538 +CA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,26.63453317 +CA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,383.3024791 +CA,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.04791195 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,5.121021271 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,281.7964485 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,277.0140257 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,70.18516327 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,15.24301779 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,30.77202636 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1509.58312 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.022213586 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,2342.41956 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0108 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.0432 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,762.8035056 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3977.289588 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4069.943391 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,64.59426194 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,5.657733599 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1073.966342 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,433.0311247 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,41.97833639 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,40.94817377 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,95.59526596 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2136.472856 +CA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.00894188 +CA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,14.80742004 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.147695835 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.612434345 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,6367.499 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,293.0549 +CA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,1036.261113 +CA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,322922.3477 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,243.528 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,12753.6455 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,467.9665 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,362.3355 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,12468.9455 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,1710.9745 +CA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,169.6885 +CA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1348.327879 +CA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1494.355015 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.596556702 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1565.266138 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.564715449 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,42.1112491 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.638696957 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2214.908 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,638.9325 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,493.6699 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.405872 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,116.9095 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,452.31175 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,46264.86012 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,43.15066449 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.35174871 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,13.81071186 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1843.28924 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2376.40335 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,78.6429 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.4676 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,284.3824 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.338 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,3378.1289 +CA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.112283797 +CA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0758 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,2.424625095 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,89.4078994 +CA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.02017456 +CA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1981.561854 +CA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,45.44847999 +CA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,306656.3831 +CA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,42382.21562 +CA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,2166.299282 +CA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,87.49795073 +CA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.5208755 +CA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.020946883 +CA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.31611 +CA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,676.8142475 +CA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,9.72714 +CA,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.165077 +CA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,36.77324279 +CA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,659.0294927 +CA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,56.10779212 +CA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,0.00008174 +CA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,90.55373088 +CA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,89.17752506 +CA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4762.100698 +CA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,16193.53902 +CA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,2270.761859 +CA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,56.55638885 +CA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,12228.7716 +CA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,33078.76089 +CA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,8553.295751 +CA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,711.7853954 +CA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.473915245 +CA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,30.53415681 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.003 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.85895533 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1767.66641 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1355.37282 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3838.80741 +CA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,16.61455466 +CA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,67.94598793 +CA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,516.4860324 +CA,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.1235808 +CA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.43332529 +CA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,224.5969057 +CA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,204.5217569 +CA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,21.60286 +CA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,5.382674 +CA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,5.751771874 +CA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,670.1988103 +CA,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.009268466 +CA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,919.0312798 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00687345 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0224301 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,291.0900597 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,908.9216339 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,332.8260502 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,21.71878769 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.504376466 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,549.2016259 +CA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0.00320965 +CA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,4.588617539 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.89685954 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.568913449 +CA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,39381.2343 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.364058094 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,382.1007329 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.277698227 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.525851343 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.496772857 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,209.2775331 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.672420818 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.214206105 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.816343745 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,28.6067245 +CA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.039695675 +CA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0489404 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.579463685 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,42.97775529 +CA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.083689899 +CA,PM2.5 Filterable,2A1_Cement-production,,TON,1136.337763 +CA,PM2.5 Filterable,2A2_Lime-production,,TON,7.255061016 +CA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,30661.13864 +CA,PM2.5 Filterable,2A6_Other-minerals,,TON,5673.396572 +CA,PM2.5 Filterable,2B_Chemicals-other,,TON,943.1440905 +CA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,9.565322893 +CA,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.42394866 +CA,PM2.5 Filterable,2C5_Lead-production,,TON,0.00145358 +CA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.109043 +CA,PM2.5 Filterable,2C7_Other-metal,,TON,233.1670217 +CA,PM2.5 Filterable,2C7a_Copper-production,,TON,1.33847 +CA,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.00336705 +CA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,12.31352243 +CA,PM2.5 Filterable,2D3d_Coating-application,,TON,186.4739872 +CA,PM2.5 Filterable,2D3e_Degreasing,,TON,12.51782566 +CA,PM2.5 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,7.91308E-05 +CA,PM2.5 Filterable,2D3h_Printing,,TON,1.469683431 +CA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,24.89806184 +CA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,322.1145352 +CA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,157.1340941 +CA,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,466.3242382 +CA,PM2.5 Filterable,2I_Wood-processing,,TON,18.84368549 +CA,PM2.5 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,44.95022415 +CA,PM2.5 Filterable,3Dc_Other-farm,,TON,4940.373123 +CA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,403.1268925 +CA,PM2.5 Filterable,5C_Incineration,,TON,1.019782005 +CA,PM2.5 Filterable,5C_Incineration,biomass,TON,11.19585084 +CA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.63114222 +CA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1362.693152 +CA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1241.23637 +CA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,49.3928934 +CA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,8.03538874 +CA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,25.58353802 +CA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,375.4175677 +CA,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.0477814 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1.867807688 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,255.5305682 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,257.7104857 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,25.54410729 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.999105664 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,14.56529996 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1448.544006 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.0170428 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1756.289548 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.01070041 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.0377379 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,762.6215859 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1633.539477 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2735.997866 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,64.44466812 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.120751478 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,991.2577065 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,413.3495587 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,25.26673293 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,33.68141168 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,45.36514945 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2046.644208 +CA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.00875362 +CA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,11.33309906 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.136997439 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.595251388 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,5858.0987 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,221.41924 +CA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,459.6276449 +CA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,39381.2343 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,190.4205 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,7896.41 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,414.0925 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,189.3985 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,10917.013 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,1460.328 +CA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,115.6685 +CA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1247.139725 +CA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1397.937042 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.592802397 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1023.037734 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.40609513 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,37.23829345 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.64278483 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2237.852089 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,587.81798 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,372.99494 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.394996 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,107.55674 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,341.74668 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,44770.04979 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,42.75220354 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.216460895 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,12.36001015 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1843.273619 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2186.0143 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,59.41908 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.37552 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,214.86668 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.55096 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,2552.36592 +CA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.094782288 +CA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0758 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,1.39990214 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,67.04101489 +CA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9.59141872 +CA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,1277.713407 +CA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,17.72488684 +CA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,30672.35722 +CA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,9773.175334 +CA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1679.216745 +CA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,66.97133124 +CA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.39434941 +CA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.016023992 +CA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.92056072 +CA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,528.1737113 +CA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,5.836309565 +CA,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.123612 +CA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,29.33995904 +CA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,588.9846515 +CA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,43.65609777 +CA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,8.09862E-05 +CA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,86.64094027 +CA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,58.31590093 +CA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3044.388983 +CA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,11838.38124 +CA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,1914.19314 +CA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,45.1304558 +CA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,7355.900412 +CA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5149.527762 +CA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,8093.209479 +CA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,518.8575637 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.685639076 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.50873805 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0018 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.82619266 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1362.693152 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1241.23637 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3628.878499 +CA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,16.3411752 +CA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,66.88857346 +CA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,506.9088108 +CA,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.12345025 +CA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,27.29210346 +CA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,311.1025955 +CA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,110.9699301 +CA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,432.1740957 +CA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,108.6470368 +CA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,3.35105662 +CA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,421.3612396 +CA,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,0.010526588 +CA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,11660.04895 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.77544 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.57096 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,809.2895075 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,54.20251022 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.66698926 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.484139045 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,27.36832047 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,312.6772774 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.019088943 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1806.139116 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,180.9814886 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,498.0395317 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,24.14074666 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2481.940482 +CA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.000753 +CA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,4.512094717 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,20.42208312 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,31.21889805 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,90.885 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.2555 +CA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1368.780773 +CA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,8.8695 +CA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1510.0775 +CA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,23.579 +CA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,77.6355 +CA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,263.7125 +CA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,84.7165 +CA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.0225 +CA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,374.5632409 +CA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8726.528983 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.469050217 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,54.70519455 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,23.49951977 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,443.1606451 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.337842492 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,717.6344816 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.548 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.577 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.2265 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.2125 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,629.4428518 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,642.2051318 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0.821311285 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,247.2002364 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,210.9996396 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37.7775 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.5475 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.1095 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,224.3655 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.3285 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,18.8705 +CA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.017059485 +CA,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00379 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.853427387 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,16.98993903 +CA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.08487149 +CA,Sulfur Dioxide,2A1_Cement-production,,TON,1509.10558 +CA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.0142 +CA,Sulfur Dioxide,2A6_Other-minerals,,TON,5360.308552 +CA,Sulfur Dioxide,2B_Chemicals-other,,TON,939.3265166 +CA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,118.2816598 +CA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.0793755 +CA,Sulfur Dioxide,2C5_Lead-production,,TON,0.00007221 +CA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.01 +CA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,105.9544089 +CA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.042 +CA,Sulfur Dioxide,2D3d_Coating-application,,TON,377.725574 +CA,Sulfur Dioxide,2D3e_Degreasing,,TON,5.959447549 +CA,Sulfur Dioxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.00174777 +CA,Sulfur Dioxide,2D3h_Printing,,TON,0.152432907 +CA,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,511.0655317 +CA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,22.1095482 +CA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,172.36349 +CA,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,690.8948835 +CA,Sulfur Dioxide,3B1b_Cattle-non-dairy,Other_Fuel,TON,13.80191517 +CA,Sulfur Dioxide,3Dc_Other-farm,Other_Fuel,TON,105.8811723 +CA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,193.2192975 +CA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,192.6597848 +CA,Sulfur Dioxide,5C_Incineration,,TON,7.284354722 +CA,Sulfur Dioxide,5C_Incineration,biomass,TON,67.53706808 +CA,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.0032135 +CA,Sulfur Dioxide,5C_Open-burning-residential,,TON,35.6677463 +CA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,140.7486668 +CA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,64.28443276 +CA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,4.611964 +CA,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,1.44059 +CA,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.009789 +CA,Volatile Organic Compounds,11C_Other-natural,,TON,3284154.299 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.748299316 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,88.13256055 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,177.7899403 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1.548651709 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.951596859 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,151.1145169 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,921.142329 +CA,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0.097155196 +CA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,363.9631045 +CA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1029.474201 +CA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,6155.318056 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.00108 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.001008 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,304.5765674 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3663.910681 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5560.853225 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,155.0140976 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.608535622 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,398.2027798 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.048716559 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,530.1105756 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,6.940744631 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.48453072 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,27.06705914 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3438.862573 +CA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.008785 +CA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,26.58982597 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.543139199 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,8.480310461 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,14923.57985 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1588.109949 +CA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2567.143731 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,297.11 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,181397.325 +CA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,590.3515 +CA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,24963.785 +CA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,21736.9495 +CA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1795.3615 +CA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16586.6255 +CA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2337.396156 +CA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,741.9982934 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.387811928 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,160.1525883 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,46.47905568 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.80719224 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.52572776 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1798.654082 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1605.005911 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,8061.066426 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.385297 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,293.179682 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,32414.56729 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,28073.78616 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,32.52460137 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.56369968 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,4.061974768 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1178.215944 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6687.139926 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1980.25573 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,261.814207 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,24895.22406 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,264.3197719 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,49511.9978 +CA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,12723.93544 +CA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,5107.770951 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,657.4095792 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,37882.42176 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,356.3756183 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,3.92555208 +CA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3634.589273 +CA,Volatile Organic Compounds,2A1_Cement-production,,TON,114.1593795 +CA,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.00712 +CA,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,9.02343195 +CA,Volatile Organic Compounds,2A6_Other-minerals,,TON,1671.61556 +CA,Volatile Organic Compounds,2B_Chemicals-other,,TON,3956.006851 +CA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,39.27669658 +CA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,46.08022664 +CA,Volatile Organic Compounds,2C5_Lead-production,,TON,0.00044331 +CA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.04 +CA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,475.8690568 +CA,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.0008444 +CA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,Other_Fuel,TON,16878.28592 +CA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,3023.059518 +CA,Volatile Organic Compounds,2D3d_Coating-application,,TON,74180.9754 +CA,Volatile Organic Compounds,2D3e_Degreasing,,TON,12300.29572 +CA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,232.3256188 +CA,Volatile Organic Compounds,2D3h_Printing,,TON,6871.529476 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,17558.47931 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2880.820495 +CA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1213.770536 +CA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,7306.486175 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,442.6947409 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,3709.493932 +CA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,41491.34401 +CA,Volatile Organic Compounds,3Dc_Other-farm,,TON,390.0602208 +CA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,16322.44569 +CA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,6664.252661 +CA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,5556.117896 +CA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,13876.4684 +CA,Volatile Organic Compounds,5C_Incineration,,TON,11.8683792 +CA,Volatile Organic Compounds,5C_Incineration,biomass,TON,10.99494134 +CA,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.021 +CA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.05556514 +CA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1206.17266 +CA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,305.315731 +CA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,2650.565361 +CA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,1045.607093 +CA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,119.9635228 +CA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,138.7651135 +CA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.927816579 +CO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,295.96289 +CO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,172.278389 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.663302962 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.261026451 +CO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,12.5825467 +CO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.367002522 +CO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.01090889 +CO,Ammonia,1A3bii_Road-LDV,light_oil,TON,1961.29229 +CO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.111363849 +CO,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,52.47250859 +CO,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,45.22440726 +CO,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,12.14014586 +CO,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,12.68893237 +CO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.336679029 +CO,Ammonia,1A3c_Rail,diesel_oil,TON,7.445462925 +CO,Ammonia,1A3c_Rail,light_oil,TON,0.002480674 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.047691911 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.190900683 +CO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.585305473 +CO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.665824992 +CO,Ammonia,1A4bi_Residential-stationary,biomass,TON,745.9288352 +CO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.199176953 +CO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,5.280727598 +CO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.32630857 +CO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1195.272008 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.165685258 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.146492212 +CO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.019000288 +CO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.686645616 +CO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.164246736 +CO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.111099877 +CO,Ammonia,3B1a_Cattle-dairy,,TON,13537.3418 +CO,Ammonia,3B1b_Cattle-non-dairy,,TON,26707.25192 +CO,Ammonia,3B2_Manure-sheep,,TON,1445.798376 +CO,Ammonia,3B3_Manure-swine,,TON,7105.762646 +CO,Ammonia,3B4_Manure-other,,TON,1599.28428 +CO,Ammonia,3B4_Manure-poultry,,TON,3203.148961 +CO,Ammonia,3B4d_Manure-goats,,TON,341.575212 +CO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14537.47452 +CO,Ammonia,5D1_Wastewater-domestic,,TON,18.63112874 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,204683.6185 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,172506.0624 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15628.43348 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1547382.072 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,30172.25971 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.435552588 +CO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,183819.194 +CO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21110642.77 +CO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,147415.8529 +CO,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,955942.6159 +CO,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3818791.745 +CO,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,402884.4111 +CO,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,761955.3762 +CO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,79102.50375 +CO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3894.45596 +CO,Carbon Dioxide,1A3c_Rail,light_oil,TON,191.68906 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,128636.5629 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,179947.7804 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7869.237084 +CO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,71930.50928 +CO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,486445.8724 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,635089.7829 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10933.38987 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,71.97561699 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2322.54557 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,173458.6592 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20227.07036 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,74532.3412 +CO,Carbon Monoxide,11C_Other-natural,,TON,155454.006 +CO,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.8 +CO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,339.434624 +CO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,5119.37 +CO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2157.390391 +CO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1236.745287 +CO,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,465.590479 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3829.822541 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15285.60422 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,965.0880131 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,20.65460333 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,742.2622371 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,321.5699731 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.23209664 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,104.3105999 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,20957.04709 +CO,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2.12 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,57.52763789 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.010078926 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,15.12330719 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7521.3128 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8322.525697 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.641095625 +CO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9457.688052 +CO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,689.5820724 +CO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,467778.6693 +CO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,558.6527699 +CO,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,36571.17302 +CO,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7937.218619 +CO,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1791.413629 +CO,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1743.139786 +CO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4666.796452 +CO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2411.201659 +CO,Carbon Monoxide,1A3c_Rail,light_oil,TON,59.0362664 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.549299643 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,85.33756718 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,29.21908736 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.260977915 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,950.2037469 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,778.210175 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,51494.30219 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,203.909157 +CO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,341.7589346 +CO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,158246.8804 +CO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,92080.67616 +CO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.99588492 +CO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,726.1004527 +CO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.63154324 +CO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2595.795237 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3501.546604 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3360.901339 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.918541167 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,26.624455 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,31754.78234 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.71598829 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11996.03066 +CO,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,30.7 +CO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,162.92181 +CO,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2670.45343 +CO,Carbon Monoxide,2A1_Cement-production,,TON,2021.17999 +CO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1.675 +CO,Carbon Monoxide,2A6_Other-minerals,,TON,5518.453606 +CO,Carbon Monoxide,2B_Chemicals-other,,TON,7.68 +CO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,729.839 +CO,Carbon Monoxide,2C3_Aluminum-production,,TON,8.11621 +CO,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,76.850375 +CO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,89.5228 +CO,Carbon Monoxide,2D3d_Coating-application,,TON,22.006 +CO,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.04 +CO,Carbon Monoxide,2D3h_Printing,,TON,0.550726 +CO,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.1594 +CO,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,99.9168 +CO,Carbon Monoxide,2H2_Food-and-beverage,,TON,589.9923847 +CO,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,61.57779 +CO,Carbon Monoxide,3Dc_Other-farm,,TON,2.09 +CO,Carbon Monoxide,3F_Ag-res-on-field,,TON,1564.5 +CO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,339.85179 +CO,Carbon Monoxide,5C_Incineration,,TON,1.828302895 +CO,Carbon Monoxide,5C_Incineration,biomass,TON,46.0908346 +CO,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.021115 +CO,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.491 +CO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,69.495336 +CO,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,15.664 +CO,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,2.86 +CO,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.888178444 +CO,Methane,1A3bii_Road-LDV,light_oil,TON,1931.946914 +CO,Methane,1A3biii_Road-bus,diesel_oil,TON,1.83657386 +CO,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,143.7691894 +CO,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,140.4925866 +CO,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,7.987341687 +CO,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,13.68162722 +CO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.11727625 +CO,Nitrogen Oxides,11C_Other-natural,,TON,27563.60465 +CO,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.94 +CO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,1319.185605 +CO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,62151.895 +CO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2688.53153 +CO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1114.388542 +CO,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,307.05568 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2088.93687 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1854.611229 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,149.0421111 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1.361886169 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2088.173711 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1730.158111 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.009384953 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,37.40177063 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,34401.50724 +CO,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,0.91 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,21.22920924 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.930508174 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,103.9208726 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,14323.22022 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,167.9513903 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.136710287 +CO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2911.747655 +CO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1161.732637 +CO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,53304.60585 +CO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1644.819363 +CO,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3669.446015 +CO,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,31721.76509 +CO,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,2839.972216 +CO,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5803.143039 +CO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,192.5313639 +CO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16591.5542 +CO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.884025818 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.013924959 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,216.5609126 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,50.4472599 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.023894051 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1357.457974 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1324.232183 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,978.333567 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,56.74371521 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,734.0154042 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1874.066444 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1415.736979 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,3.5851849 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,23.96290458 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,5.873557 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6347.616881 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6823.38791 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,66.16134794 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.763776197 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.671576 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,266.2847855 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,241.6799137 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,419.5624905 +CO,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,17.2 +CO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,62.38736 +CO,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5315.36049 +CO,Nitrogen Oxides,2A1_Cement-production,,TON,3752.01 +CO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,0.425 +CO,Nitrogen Oxides,2A6_Other-minerals,,TON,2694.104244 +CO,Nitrogen Oxides,2B_Chemicals-other,,TON,5.2835 +CO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,194.603 +CO,Nitrogen Oxides,2C3_Aluminum-production,,TON,9.948157 +CO,Nitrogen Oxides,2C6_Zinc-production,,TON,0.8075 +CO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,16.5335 +CO,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,17.48 +CO,Nitrogen Oxides,2D3d_Coating-application,,TON,19.625 +CO,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.251185 +CO,Nitrogen Oxides,2D3h_Printing,,TON,1.415873 +CO,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.27 +CO,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,93.9126 +CO,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +CO,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,125.565282 +CO,Nitrogen Oxides,3Dc_Other-farm,,TON,2.48 +CO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,74.5 +CO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,48.476 +CO,Nitrogen Oxides,5C_Incineration,,TON,2.180255436 +CO,Nitrogen Oxides,5C_Incineration,biomass,TON,76.25958891 +CO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.004295 +CO,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.012 +CO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,13.513401 +CO,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,2.92869 +CO,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,4.66 +CO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.663950684 +CO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1226.35923 +CO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.346739588 +CO,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,67.10532212 +CO,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4.156590414 +CO,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.663223215 +CO,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.432243452 +CO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.179198947 +CO,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0193277 +CO,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.0082935 +CO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,58.26402361 +CO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1402.443957 +CO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,238.1116699 +CO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,317.6638659 +CO,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.5237966 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5.489832805 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,113.5425827 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,82.54769503 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.950731058 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,434.5113955 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.574832733 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.037596113 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.242133391 +CO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,115415.4411 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.727566048 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.87005688 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.787581067 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002878053 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.55684661 +CO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.215111231 +CO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,16.41039556 +CO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.352413311 +CO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.97735341 +CO,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,34.19851901 +CO,PM10 Filterable,2A1_Cement-production,,TON,278.9865646 +CO,PM10 Filterable,2A2_Lime-production,,TON,70.40521036 +CO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,62663.38996 +CO,PM10 Filterable,2A6_Other-minerals,,TON,22542.81304 +CO,PM10 Filterable,2B_Chemicals-other,,TON,31.57543912 +CO,PM10 Filterable,2C_Iron-steel-alloy,,TON,33.37314929 +CO,PM10 Filterable,2C3_Aluminum-production,,TON,6.69767287 +CO,PM10 Filterable,2C5_Lead-production,,TON,0.235407541 +CO,PM10 Filterable,2C6_Zinc-production,,TON,0.943084739 +CO,PM10 Filterable,2C7_Other-metal,,TON,163.0798864 +CO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,15.433455 +CO,PM10 Filterable,2D3e_Degreasing,,TON,0.0179491 +CO,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,95.63326582 +CO,PM10 Filterable,2H2_Food-and-beverage,,TON,395.2983342 +CO,PM10 Filterable,2H3_Other-industrial-processes,,TON,254.7142436 +CO,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,3.381655801 +CO,PM10 Filterable,2I_Wood-processing,,TON,18.121456 +CO,PM10 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,169.7718 +CO,PM10 Filterable,3Dc_Other-farm,,TON,97575.8057 +CO,PM10 Filterable,5A_Solid-waste-disposal,,TON,404.4220135 +CO,PM10 Filterable,5C_Incineration,,TON,0.77461982 +CO,PM10 Filterable,5C_Incineration,biomass,TON,47.68948275 +CO,PM10 Filterable,5C_Open-burning-industrial,,TON,0.0077197 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.02 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.009 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,62.686444 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1534.7 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,434.643303 +CO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,18.04378163 +CO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,488.6202774 +CO,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,36.117202 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,136.181813 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.29833495 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.079522496 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9.247858755 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,115.9417858 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,87.7567382 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.357854036 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,5.288070426 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,866.2634418 +CO,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.02 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.258067048 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.051428998 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.726966953 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1188.470533 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,46.65222241 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +CO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,216.3206264 +CO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,115415.4411 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,78.86635116 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2534.864453 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,98.8929634 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,114.8331122 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1642.565344 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,192.0641675 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,333.2504316 +CO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.65920756 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,548.0525283 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02582927 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.699725503 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,25.84143636 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.839520663 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.003123775 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,110.2374547 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,135.1449313 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,48.41460012 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.981650686 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,61.42021844 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,501.3904646 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,13197.13869 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.474041476 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,16.52688753 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.77661444 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,33.74112199 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,642.591691 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.804107962 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009093881 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.8256823 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,336.8151908 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.937418298 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,67.13216171 +CO,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.83 +CO,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.99 +CO,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,51.390086 +CO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,300.645447 +CO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,108.643763 +CO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,62663.38996 +CO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,23834.06871 +CO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,40.049858 +CO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,56.737984 +CO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,30.8093 +CO,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.8668 +CO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.33819 +CO,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,281.945819 +CO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,26.554548 +CO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,99.326727 +CO,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.6578 +CO,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.083523 +CO,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,35.051664 +CO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,233.919523 +CO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1781.449836 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,404.2603236 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,5.367071425 +CO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,33.8584 +CO,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,228.0589 +CO,PM10 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,97585.30852 +CO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,268.2 +CO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1610.262381 +CO,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.889333352 +CO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,85.41754074 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.042372 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.9285 +CO,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.592877 +CO,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.298099 +CO,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.33 +CO,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.00454513 +CO,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.0044201 +CO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,58.1834886 +CO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,266.2455459 +CO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,237.8950699 +CO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,165.6063367 +CO,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.4650732 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2.214273531 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.4813402 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,75.17675482 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.74637685 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,424.3490153 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.444710712 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.022893387 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.254543858 +CO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,18840.2446 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.593914999 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.442728596 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.197713605 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000700174 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.48619612 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.165316841 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,10.07805973 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.270836192 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.137543684 +CO,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,28.10016954 +CO,PM2.5 Filterable,2A1_Cement-production,,TON,83.88606406 +CO,PM2.5 Filterable,2A2_Lime-production,,TON,4.190100329 +CO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,6266.338996 +CO,PM2.5 Filterable,2A6_Other-minerals,,TON,4123.720981 +CO,PM2.5 Filterable,2B_Chemicals-other,,TON,12.73092396 +CO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,16.81379041 +CO,PM2.5 Filterable,2C3_Aluminum-production,,TON,1.512699266 +CO,PM2.5 Filterable,2C5_Lead-production,,TON,0.140702441 +CO,PM2.5 Filterable,2C6_Zinc-production,,TON,0.471543839 +CO,PM2.5 Filterable,2C7_Other-metal,,TON,0 +CO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,7.4819742 +CO,PM2.5 Filterable,2D3e_Degreasing,,TON,0.00598453 +CO,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3.92670215 +CO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,78.87649758 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,0 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,114.1767093 +CO,PM2.5 Filterable,2I_Wood-processing,,TON,0 +CO,PM2.5 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,50.31244 +CO,PM2.5 Filterable,3Dc_Other-farm,,TON,19503.97898 +CO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,264.3518468 +CO,PM2.5 Filterable,5C_Incineration,,TON,0.58088208 +CO,PM2.5 Filterable,5C_Incineration,biomass,TON,39.61528483 +CO,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.0040615 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0052174 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0051266 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,62.605909 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,398.5015809 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,434.3976 +CO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,12.63888874 +CO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,341.9676371 +CO,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,36.0584786 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,131.9998688 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.99280614 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.073792489 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6.05779961 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,111.9310653 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,80.54383583 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.18560583 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,5.281651557 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,855.6286347 +CO,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.02 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.997009718 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.037381221 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.869654061 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1152.816295 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,42.94716213 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +CO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,77.44987746 +CO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,18840.2446 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,70.21232064 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1522.221578 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,89.26365061 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,67.7877908 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1481.864711 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,172.5830474 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,294.3385695 +CO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.97052353 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,506.5402686 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.023810426 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.579831887 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.47823225 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.302068909 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.001138356 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,108.0409602 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,131.090687 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,44.66758113 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.981650686 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,59.57758812 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,461.3011063 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,13188.78033 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.424247149 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,10.19455558 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.695037545 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,27.9013126 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,623.3138327 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.499888052 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009093881 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.7109128 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,309.8709386 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.789297734 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,61.76156291 +CO,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.83 +CO,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.937234 +CO,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,45.29174688 +CO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,105.5449148 +CO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,42.4286553 +CO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6266.338996 +CO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,5414.97715 +CO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,21.1423801 +CO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,40.17860188 +CO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,25.6243292 +CO,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.7720949 +CO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.8666491 +CO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,155.5694135 +CO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,18.6030677 +CO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,82.702654 +CO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.0279648 +CO,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.0784166 +CO,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,29.1131784 +CO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,142.2129542 +CO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1465.028727 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,257.0417853 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,8.617933254 +CO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,15.736944 +CO,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,108.5995 +CO,PM2.5 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,19513.48179 +CO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,268.2 +CO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1435.9599 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.561116897 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,77.3093952 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0241359 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.8048418 +CO,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.592877 +CO,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.298099 +CO,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.33 +CO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,83.804009 +CO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,58930.98023 +CO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,63.084947 +CO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,527.84028 +CO,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2.394798 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,53.20014924 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.58952069 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.486744061 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.770871408 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,137.7393671 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2455.414912 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.75539068 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,458.113307 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,29.89842032 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.90212085 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.14836283 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,336.6406463 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.871652598 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000163837 +CO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,311.6005121 +CO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.017923522 +CO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,655.0969787 +CO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.620289353 +CO,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,29.66455559 +CO,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,41.54773908 +CO,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.429824565 +CO,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8.283598526 +CO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.453567893 +CO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,168.1673283 +CO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.006058949 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.003304359 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,68.10614411 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,101.0142623 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.391015845 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,200.1097724 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27.98447898 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.130946698 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.173965647 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,15.64859341 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,14.30863462 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,225.286588 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,8.4849392 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,50.09620269 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,13.9007523 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,38.93206602 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,138.1659613 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.357281833 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001582995 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.50521087 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.654088503 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.983262298 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2.431987224 +CO,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.38 +CO,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,49.468293 +CO,Sulfur Dioxide,2A1_Cement-production,,TON,245.589995 +CO,Sulfur Dioxide,2A6_Other-minerals,,TON,1421.898587 +CO,Sulfur Dioxide,2B_Chemicals-other,,TON,61.0595 +CO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,167.204386 +CO,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.313926 +CO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.995666 +CO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,69.457 +CO,Sulfur Dioxide,2D3d_Coating-application,,TON,0.037 +CO,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.001 +CO,Sulfur Dioxide,2D3h_Printing,,TON,0.001185 +CO,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.51484 +CO,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,3.8268 +CO,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +CO,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,6.211425 +CO,Sulfur Dioxide,3Dc_Other-farm,,TON,0.015 +CO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,8.94 +CO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,19.781714 +CO,Sulfur Dioxide,5C_Incineration,,TON,1.433394627 +CO,Sulfur Dioxide,5C_Incineration,biomass,TON,27.86796595 +CO,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.053681 +CO,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,57.114936 +CO,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,6.03998 +CO,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.007 +CO,Volatile Organic Compounds,11C_Other-natural,,TON,865174.01 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.22 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,92.324793 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,422.6821 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,320.062548 +CO,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,23804.14975 +CO,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,647.3851524 +CO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,7324.358393 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,13.5999 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,184.0864 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,256.1517167 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,676.1183559 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.036722886 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,14.99788808 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,132.7745417 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,15.48101285 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.099313389 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,13.35298214 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,6935.416192 +CO,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,6.55 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.131121715 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.009520341 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.837570943 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1499.168316 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,592.3444533 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002221584 +CO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,636.6570897 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,160.6913764 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,40921.38426 +CO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,84.280003 +CO,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2163.723255 +CO,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1845.689203 +CO,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,409.7843933 +CO,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,409.8978253 +CO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1561.434964 +CO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,849.3288524 +CO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.303524349 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.032084986 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.7853083 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.320849855 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.011458923 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,135.9871039 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,194.4915409 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2666.951734 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.668432636 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,86.35756043 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11614.85655 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,16575.87593 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.139423949 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,26.40367146 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.228416021 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,356.8771974 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,675.4058224 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,155.7492908 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.030648588 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.003403 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11808.64419 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.0229517 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4041.420845 +CO,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1635.70208 +CO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,378.5243228 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,4261.690395 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,18937.11242 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,460.1769611 +CO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7469.922688 +CO,Volatile Organic Compounds,2A1_Cement-production,,TON,224.98002 +CO,Volatile Organic Compounds,2A6_Other-minerals,,TON,880.235733 +CO,Volatile Organic Compounds,2B_Chemicals-other,,TON,565.537006 +CO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,685.631784 +CO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,74.254428 +CO,Volatile Organic Compounds,2C5_Lead-production,,TON,0.19 +CO,Volatile Organic Compounds,2C6_Zinc-production,,TON,1.0236 +CO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,61.426345 +CO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,20819.80516 +CO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,31.279351 +CO,Volatile Organic Compounds,2D3d_Coating-application,,TON,11111.43894 +CO,Volatile Organic Compounds,2D3e_Degreasing,,TON,150.190631 +CO,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,55.07755 +CO,Volatile Organic Compounds,2D3h_Printing,,TON,547.953908 +CO,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1231.364203 +CO,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,325.5286248 +CO,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,191.787578 +CO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1366.935822 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1200.265784 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,6.035233755 +CO,Volatile Organic Compounds,3Dc_Other-farm,,TON,62.6406 +CO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7351.472546 +CO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,163.9 +CO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,319.1594 +CO,Volatile Organic Compounds,5C_Incineration,,TON,0.652708156 +CO,Volatile Organic Compounds,5C_Incineration,biomass,TON,19.39130528 +CO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.073007 +CO,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.3195 +CO,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,318.5607271 +CO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,53.482399 +CO,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,349.435464 +CO,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,6.897484 +CT,Ammonia,1A1a_Public-Electricity,biomass,TON,43.0535 +CT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,35.35864 +CT,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,20.322258 +CT,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.135264 +CT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,171.533 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.581473431 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.172217976 +CT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,12.3256 +CT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.082783609 +CT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.150334041 +CT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.756054825 +CT,Ammonia,1A3bii_Road-LDV,light_oil,TON,1127.271297 +CT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.980351116 +CT,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,45.282492 +CT,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,19.87698153 +CT,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,12.22848847 +CT,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.614368545 +CT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.868239768 +CT,Ammonia,1A3c_Rail,diesel_oil,TON,0.5775458 +CT,Ammonia,1A3c_Rail,light_oil,TON,0.0020281 +CT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.31011821 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.673741751 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.40889272 +CT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.349546123 +CT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.223200281 +CT,Ammonia,1A4bi_Residential-stationary,biomass,TON,292.5244591 +CT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,270.7901 +CT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.32004 +CT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,4.704387 +CT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,391.9922091 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.180532275 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.008373818 +CT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.014638233 +CT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.764478283 +CT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.424504077 +CT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.8707965 +CT,Ammonia,3B1a_Cattle-dairy,,TON,1153.739981 +CT,Ammonia,3B1b_Cattle-non-dairy,,TON,60.47693652 +CT,Ammonia,3B2_Manure-sheep,,TON,20.12472 +CT,Ammonia,3B3_Manure-swine,,TON,25.9188732 +CT,Ammonia,3B4_Manure-other,,TON,154.704 +CT,Ammonia,3B4_Manure-poultry,,TON,612.561048 +CT,Ammonia,3B4d_Manure-goats,,TON,31.9704 +CT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,427.9189585 +CT,Ammonia,5D1_Wastewater-domestic,,TON,13.20638 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,194610.546 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,237111.9721 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12316.25636 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,625113.1315 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,12357.19991 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.4785178 +CT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,155326.8848 +CT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,13483853.11 +CT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,61644.2015 +CT,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,790868.253 +CT,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1519894.371 +CT,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,376996.2657 +CT,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,300032.96 +CT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,23931.05825 +CT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3186.546 +CT,Carbon Dioxide,1A3c_Rail,light_oil,TON,156.598182 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82722.6231 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,115715.9217 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5111.44714 +CT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,42957.09575 +CT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,308141.3448 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22199.90512 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,604.9434089 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.24802833 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1789.3475 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,50100.31776 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,52277.96266 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,192572.34 +CT,Carbon Monoxide,11C_Other-natural,,TON,7511.972 +CT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,79.9 +CT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.02 +CT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6391.339 +CT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,127.16613 +CT,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.46739904 +CT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2288.1 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1154.253308 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16120.09306 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,979.636088 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.02146012 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.26142882 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.251994236 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.073769163 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,650.5313477 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2988.759158 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3150.805797 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.21369849 +CT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2282.69968 +CT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,539.3275851 +CT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,269034.6279 +CT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,245.3932305 +CT,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,21259.2326 +CT,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3036.274967 +CT,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1423.712863 +CT,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,674.157855 +CT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1492.058166 +CT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,208.4055858 +CT,Carbon Monoxide,1A3c_Rail,light_oil,TON,42.941434 +CT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1177.876253 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.12430301 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.397416234 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.829479012 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.19180174 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,500.4441534 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,31118.83034 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,131.7786683 +CT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,204.1024929 +CT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,93510.47306 +CT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,37406.5799 +CT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1353.95 +CT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,44.005495 +CT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,23.522015 +CT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,887.62851 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,113.8727575 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,186.8881556 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.247407037 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.507623 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10958.87507 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,105.2346988 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,26871.167 +CT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,4.5 +CT,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,2.2 +CT,Carbon Monoxide,2C7a_Copper-production,,TON,13.4 +CT,Carbon Monoxide,2H2_Food-and-beverage,,TON,332.952315 +CT,Carbon Monoxide,5A_Solid-waste-disposal,,TON,21.408 +CT,Carbon Monoxide,5C_Incineration,,TON,0.300016859 +CT,Carbon Monoxide,5C_Incineration,biomass,TON,867.2487348 +CT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,9481.81 +CT,Carbon Monoxide,5C_Open-burning-residential,,TON,1358.719 +CT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,180.3493 +CT,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.154098815 +CT,Methane,1A3bii_Road-LDV,light_oil,TON,1147.537932 +CT,Methane,1A3biii_Road-bus,diesel_oil,TON,0.73690906 +CT,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,76.93336497 +CT,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,46.65432941 +CT,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,6.974199198 +CT,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.982414606 +CT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.78471228 +CT,Nitrogen Oxides,11C_Other-natural,,TON,463.2922 +CT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,96.6 +CT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,12.839 +CT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,2534.493 +CT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,696.366 +CT,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,25.739 +CT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,356.078 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1635.341446 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2572.09833 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,171.7501896 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.066476678 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,50.25636851 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,79.92934164 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.30136094 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,899.4294522 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5760.967066 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,73.20632205 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.04557018 +CT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,455.3529952 +CT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,905.9980408 +CT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,30774.63644 +CT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,525.836693 +CT,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2658.324212 +CT,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,12189.17943 +CT,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,2308.485618 +CT,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2206.237981 +CT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,50.3298122 +CT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1863.279857 +CT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.80687883 +CT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7048.870642 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.28869789 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.808408438 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022402403 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,54.08449127 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,851.574823 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,658.6502069 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.626087 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,438.3503944 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1301.365751 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,604.874149 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4874.22 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.48005995 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,84.679025 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2210.9083 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,228.8486779 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.541300074 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0551487 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.779964 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,146.4019158 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,624.6470011 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1323.30082 +CT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,1.8 +CT,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,6.6 +CT,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.2 +CT,Nitrogen Oxides,2C7a_Copper-production,,TON,9.9 +CT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +CT,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,19.316 +CT,Nitrogen Oxides,5C_Incineration,,TON,0.300968082 +CT,Nitrogen Oxides,5C_Incineration,biomass,TON,3224.471708 +CT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,280.5275 +CT,Nitrogen Oxides,5C_Open-burning-residential,,TON,95.9095 +CT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,8.015517 +CT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.498307744 +CT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,759.9692639 +CT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.158604771 +CT,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,39.3404508 +CT,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.547168119 +CT,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.286925263 +CT,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.527487636 +CT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.663064654 +CT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,10.2 +CT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.814550216 +CT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,60.9444 +CT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,19.25436333 +CT,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0122596 +CT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,68.4773 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.205554203 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.949458025 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,20.9805603 +CT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,15452.874 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.269759239 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.3559734 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000373913 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.03492 +CT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,292.45355 +CT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.6001995 +CT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,5.0807465 +CT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.4373344 +CT,PM10 Filterable,2A2_Lime-production,Other_Fuel,TON,1.28 +CT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,7392.82335 +CT,PM10 Filterable,2A6_Other-minerals,,TON,1993.45556 +CT,PM10 Filterable,2C_Iron-steel-alloy,,TON,2.023215 +CT,PM10 Filterable,2C7a_Copper-production,,TON,0.028 +CT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,6.92 +CT,PM10 Filterable,2H2_Food-and-beverage,,TON,13.83357892 +CT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,8.2620324 +CT,PM10 Filterable,3Dc_Other-farm,,TON,724.015816 +CT,PM10 Filterable,5A_Solid-waste-disposal,,TON,3.0032409 +CT,PM10 Filterable,5C_Incineration,biomass,TON,72.10096 +CT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,953.7913 +CT,PM10 Filterable,5C_Open-burning-residential,,TON,607.4272 +CT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,29.86497 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,13.7 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.054 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,296.3044 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,57.629069 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,2.0115596 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,41.874263 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,126.8795622 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23.46516462 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.50322882 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.717821851 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,12.70125962 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.009741297 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,48.48862624 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,473.4634758 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.11701644 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +CT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,52.83972235 +CT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,15452.874 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,62.33640256 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1453.302923 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,29.7445149 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,79.01864817 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,586.9563698 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,150.8023627 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,123.6652816 +CT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.81428444 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,49.81674723 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021120894 +CT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,330.0420481 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.342 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.399 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.682 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.9086536 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.12794746 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.637959452 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,36.68146852 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,310.2758666 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5375.61073 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,644.48065 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.771422 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,11.1964535 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.5370542 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.90370794 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.291566477 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000283926 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.946635 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,98.54139691 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.76143282 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,173.4510542 +CT,PM10 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,1.5 +CT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7392.82335 +CT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1997.3026 +CT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5.7 +CT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.1 +CT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.2 +CT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,10 +CT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,910.286418 +CT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,11 +CT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,724.051 +CT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,3.099 +CT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,75.08355955 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,953.7913 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,607.4272 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,29.86497 +CT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,3.4 +CT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.680766032 +CT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,10.92595 +CT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,14.85729893 +CT,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0122596 +CT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,68.4249658 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.408125603 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.871369557 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,20.57840653 +CT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,2813.7815 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.023355059 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.13219074 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000350543 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.986933 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,224.7559 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.28496 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.904648 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.4405297 +CT,PM2.5 Filterable,2A2_Lime-production,Other_Fuel,TON,0.213333 +CT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,739.282335 +CT,PM2.5 Filterable,2A6_Other-minerals,,TON,249.4331071 +CT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1.249134 +CT,PM2.5 Filterable,2C7a_Copper-production,,TON,0.0263908 +CT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3.37926 +CT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,7.169858351 +CT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,5.2726774 +CT,PM2.5 Filterable,3Dc_Other-farm,,TON,144.7309925 +CT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,1.5545799 +CT,PM2.5 Filterable,5C_Incineration,biomass,TON,65.9689013 +CT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,735.2781 +CT,PM2.5 Filterable,5C_Open-burning-residential,,TON,556.2755 +CT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,23.02302 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,6.9 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.92021637 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,246.2864 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,53.23196693 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,2.0115596 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,38.646467 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,123.0614825 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23.30260366 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.502475662 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.747700457 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.972951935 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.00998843 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,48.68095545 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,459.2597697 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.59874121 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +CT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,13.98026012 +CT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,2813.7815 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,56.13178877 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,911.6644543 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,26.7943178 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,46.74578032 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,533.6624475 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,135.6813499 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,110.4540223 +CT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.320149401 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,45.52769003 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019469227 +CT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,314.1763595 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.09559641 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.1752173 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00097663 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.634013 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,84.3013836 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,28.71883785 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.637959452 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,35.58103018 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,285.4669881 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5371.74471 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,576.7828 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.4561825 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,10.020353 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.5402646 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.27660904 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.18824127 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000283926 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.858235 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,90.65876801 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.37858424 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,159.5749815 +CT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,0.433334 +CT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,739.282335 +CT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,253.2801491 +CT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4.92593 +CT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.0983908 +CT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.2 +CT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,6.459265 +CT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,903.6229396 +CT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,8.010645 +CT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,144.766177 +CT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1.650339 +CT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,68.95140085 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,735.2781 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,556.2755 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,23.02302 +CT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,52 +CT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.985 +CT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,3977.631 +CT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,976.14 +CT,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,2.990683 +CT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,26.245 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,43.43132461 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.926966241 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.289475547 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,46.10810545 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,123.3540475 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.002304714 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,13.52770237 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,135.996672 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.295637716 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.46123E-05 +CT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,50.74934795 +CT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.703318114 +CT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,290.5632929 +CT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.679979673 +CT,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,17.04201224 +CT,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,16.52793464 +CT,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.135538769 +CT,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.260151996 +CT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.515629847 +CT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,16.38538659 +CT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003850019 +CT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1416.603772 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.646546095 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.868422329 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001082323 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.839949253 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.9960391 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.804538114 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.113000059 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,9.345384909 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.365920899 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,104.3243427 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,11535.655 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,5.5542925 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,200.40715 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,13.3119748 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.829691868 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.014649263 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.94418E-05 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.3892269 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.21384653 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.87951419 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.4556038 +CT,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,22.4 +CT,Sulfur Dioxide,2C7a_Copper-production,,TON,0.3 +CT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +CT,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,5.503 +CT,Sulfur Dioxide,5C_Incineration,,TON,0.100673437 +CT,Sulfur Dioxide,5C_Incineration,biomass,TON,238.6967186 +CT,Sulfur Dioxide,5C_Open-burning-residential,,TON,15.98493 +CT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.7319266 +CT,Volatile Organic Compounds,11C_Other-natural,,TON,48727.5 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,4.6 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.311 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,67.40183 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,19.45815 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.11016466 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,82.65344 +CT,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,16.9 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,159.452609 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,795.6811355 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.059638951 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.004745038 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.692792144 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.652442662 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.007117556 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,37.0916026 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,592.0884083 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,233.6164226 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000740527 +CT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,108.8364942 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,122.9850071 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,23495.00817 +CT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,34.61633996 +CT,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1153.399409 +CT,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,659.7264213 +CT,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,316.0507555 +CT,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,154.7606352 +CT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,514.2769272 +CT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,76.86821886 +CT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.677733879 +CT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,172.3590551 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.542335579 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.125213533 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.02904954 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.858401348 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,125.0720838 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1622.475737 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.431284589 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,51.57469345 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7185.569571 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7024.617531 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,189.553 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,1.6001995 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,3.293077 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,122.026484 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.0788537 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.82992877 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000958083 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.393609 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3168.57349 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.9052576 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10283.37805 +CT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,130.980381 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,524.8789779 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4014.315906 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,436.748395 +CT,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,0.1 +CT,Volatile Organic Compounds,2B_Chemicals-other,,TON,15.4 +CT,Volatile Organic Compounds,2C7a_Copper-production,,TON,1.3 +CT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,14757.77263 +CT,Volatile Organic Compounds,2D3d_Coating-application,,TON,4691.80945 +CT,Volatile Organic Compounds,2D3e_Degreasing,,TON,46.4 +CT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1253.4284 +CT,Volatile Organic Compounds,2D3h_Printing,,TON,23.9 +CT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +CT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +CT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,27.6 +CT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,126.6111546 +CT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,100.6 +CT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,94.83403 +CT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,6.36 +CT,Volatile Organic Compounds,5C_Incineration,,TON,0.50066736 +CT,Volatile Organic Compounds,5C_Incineration,biomass,TON,26.73563701 +CT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,650.8217 +CT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,136.8309 +CT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,33.63657 +CT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,80.12266 +CT,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,63.6 +CT,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.2 +DC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.112960157 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.006050398 +DC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0316 +DC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +DC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.953823474 +DC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.05779155 +DC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.59284682 +DC,Ammonia,1A3bii_Road-LDV,light_oil,TON,157.98308 +DC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.5324617 +DC,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,5.944159 +DC,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,3.237973 +DC,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,1.5123495 +DC,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.9406146 +DC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.7727513 +DC,Ammonia,1A3c_Rail,diesel_oil,TON,0.093024258 +DC,Ammonia,1A3c_Rail,light_oil,TON,7.06921E-05 +DC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.002124438 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.92566 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.42 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.047513069 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.099278217 +DC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.002280892 +DC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.282163009 +DC,Ammonia,1A4bi_Residential-stationary,biomass,TON,37.9959365 +DC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.0595 +DC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,132.48 +DC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00243007 +DC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.021435075 +DC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.013200653 +DC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.0892548 +DC,Ammonia,3B1a_Cattle-dairy,,TON,0 +DC,Ammonia,3B1b_Cattle-non-dairy,,TON,0 +DC,Ammonia,3B2_Manure-sheep,,TON,0 +DC,Ammonia,3B3_Manure-swine,,TON,0 +DC,Ammonia,3B4_Manure-other,,TON,0 +DC,Ammonia,3B4_Manure-poultry,,TON,0 +DC,Ammonia,3B4d_Manure-goats,,TON,0 +DC,Ammonia,5D1_Wastewater-domestic,,TON,2.23234 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13899.7016 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8066.233467 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,424.98253 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,240293.6286 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4751.910823 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.23926 +DC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,22818.9344 +DC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2052299.9 +DC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,32667.36 +DC,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,119204.21 +DC,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,298320 +DC,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,54608.609 +DC,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,62550.231 +DC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9045.421 +DC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,98.0192 +DC,Carbon Dioxide,1A3c_Rail,light_oil,TON,5.607118 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5833.7199 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8150.15238 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,295.77809 +DC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,280.3027 +DC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,20535.64147 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,297.058 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1506.6681 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1625.67082 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5987.24 +DC,Carbon Monoxide,11C_Other-natural,,TON,146.237 +DC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,3.071617 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,56.6751834 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,560.4713042 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,33.36559 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.876790149 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,198.2326754 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1148.823602 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1385.458062 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849 +DC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11.978995 +DC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,101.445887 +DC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,28740.401 +DC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,154.1726 +DC,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3461.7913 +DC,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,886.0414 +DC,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,271.11874 +DC,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,183.62863 +DC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,417.498 +DC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,70.35960524 +DC,Carbon Monoxide,1A3c_Rail,light_oil,TON,1.7004296 +DC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.7701248 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.76226319 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.56576472 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,633.2913569 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.280001 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2512.938471 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8.3768202 +DC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1.338048 +DC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,7666.226755 +DC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4502.3341 +DC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,15.2975 +DC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,265.12 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.39535 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,465.83405 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.2725696 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,957.733 +DC,Carbon Monoxide,2H2_Food-and-beverage,,TON,56.26 +DC,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.0087 +DC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +DC,Carbon Monoxide,5C_Open-burning-residential,,TON,0 +DC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,0 +DC,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.379829569 +DC,Methane,1A3bii_Road-LDV,light_oil,TON,109.107229 +DC,Methane,1A3biii_Road-bus,diesel_oil,TON,0.09173263 +DC,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,11.388086 +DC,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,6.6494553 +DC,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,0.91416374 +DC,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.64614 +DC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.1959281 +DC,Nitrogen Oxides,11C_Other-natural,,TON,16.4432 +DC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,113.2457 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,115.996772 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,86.26173631 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.8552587 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.94484145 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,218.1301766 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2214.577786 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,24.16288067 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.0227851 +DC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,0.26594235 +DC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,167.780731 +DC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,3483.0337 +DC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,354.43262 +DC,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,347.5823 +DC,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,2825.377 +DC,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,431.29315 +DC,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,547.8353 +DC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.165936 +DC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,450.91547 +DC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.02647201 +DC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.961645 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,60.82502239 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,58.63765976 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.0200435 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,654.6132591 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,60.052893 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,39.70634369 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.3785632 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2.852875 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,71.57458252 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,70.307434 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,55.071 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,623.22 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.29029 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,4.8358342 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.423544 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,33.44119 +DC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +DC,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,1.85107 +DC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +DC,Nitrogen Oxides,5C_Open-burning-residential,,TON,0 +DC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0 +DC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.099441794 +DC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,110.872378 +DC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.10732948 +DC,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7.984018 +DC,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.4686575 +DC,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.25820042 +DC,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.15103161 +DC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.16212954 +DC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.732238 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.135271818 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,4.323151482 +DC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1840.06 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.67535224 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.985568699 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.01328838 +DC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.30426 +DC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.32 +DC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1725.1626 +DC,PM10 Filterable,2A6_Other-minerals,,TON,0 +DC,PM10 Filterable,2H2_Food-and-beverage,,TON,0.45 +DC,PM10 Filterable,3Dc_Other-farm,,TON,0 +DC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +DC,PM10 Filterable,5C_Open-burning-residential,,TON,0 +DC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,0 +DC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.270881 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.2867679 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.789841454 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.051259602 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.997749977 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,13.89395882 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,181.9936694 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.347361427 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +DC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.27152316 +DC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1840.06 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,10.4181485 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,232.859913 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,25.0170832 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,14.3823251 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,188.175806 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,26.87185274 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,39.0543606 +DC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.31993257 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,12.76140282 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000734306 +DC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.2569482 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.917574738 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.62912 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.16356027 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.127022 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,2.190078942 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.036546043 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.24045505 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,13.4104902 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,652.70444 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.1346 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.96919584 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.487547 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1.66181404 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.39685909 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,5.392407 +DC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1725.1626 +DC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,151.71 +DC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.1219855 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +DC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.2593945 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.284085334 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,4.327222046 +DC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,62.4 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.990123003 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.750968558 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.9680596 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.53938 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.73 +DC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,172.51626 +DC,PM2.5 Filterable,2A6_Other-minerals,,TON,0 +DC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.41 +DC,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-residential,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.798038 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.0081578 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.784515627 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.051259602 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.331640685 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,13.74257662 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,176.5339107 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.76385001 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +DC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.035298079 +DC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,62.4 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,9.158534297 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,116.4228133 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,21.50227785 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6.4937148 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,165.9510645 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,23.786647 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,33.66186281 +DC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.121879197 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,12.08315923 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000677936 +DC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.2422064 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.594686759 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.31872 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.16356027 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.943224 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,2.020559982 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.036546043 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.23324191 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,12.33774462 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,651.88004 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,8.1751 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.45528906 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.472921 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1.52898507 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.3849536 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,4.961014 +DC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,172.51626 +DC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,140.27 +DC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.1219855 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +DC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,68.70162 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.02398591 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.159910936 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.009373136 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.83365866 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1.040195538 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,52.27719154 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.121899859 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +DC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,0.058495503 +DC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.251064128 +DC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,44.226789 +DC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.36279026 +DC,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2.568692 +DC,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.27505 +DC,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.60106208 +DC,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.68739512 +DC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.19495501 +DC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,19.58275153 +DC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000146428 +DC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.23678 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,365.288188 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,239.0852 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.14 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.237094041 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.2691066 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.210499976 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.006537764 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.06098039 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.544033909 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,9.7729156 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,434.449 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,3.97 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0646174 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.039745614 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.40050982 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.158164 +DC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +DC,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.2850645 +DC,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +DC,Sulfur Dioxide,5C_Open-burning-residential,,TON,0 +DC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0 +DC,Volatile Organic Compounds,11C_Other-natural,,TON,1347.71 +DC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.4577822 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.7447523 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27.32429594 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.097570502 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.187489926 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,10.34506971 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,227.58495 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,93.65722996 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +DC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,0.46527092 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,21.3694679 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,2450.79922 +DC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,26.86561 +DC,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,209.770036 +DC,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,212.17716 +DC,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,56.813987 +DC,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,49.30233 +DC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,115.644282 +DC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,31.7154122 +DC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.06268405 +DC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.1304399 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.416682967 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.516634078 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,51.48357952 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,8.8169363 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,121.7606102 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.028194297 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,0.338001 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,578.3045977 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,830.4807446 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.18142 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,36.45 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.891878 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,61.8246417 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.8056479 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,327.494252 +DC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2.0664 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,474.138346 +DC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2495 +DC,Volatile Organic Compounds,2D3d_Coating-application,,TON,807.11 +DC,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,51.499 +DC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,286.5 +DC,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,623.20076 +DC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +DC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3.932 +DC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,21.4 +DC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,88.39 +DC,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.00647875 +DC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +DC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,0 +DC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,0 +DC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,45.511 +DE,Ammonia,11C_Other-natural,Other_Fuel,TON,0.3693658 +DE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.2739327 +DE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,41.818625 +DE,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,1.307212 +DE,Ammonia,1A1a_Public-Electricity,light_oil,TON,93.3551 +DE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,7.673512 +DE,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.29475 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.035111024 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +DE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.602065272 +DE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.040440002 +DE,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.165883321 +DE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,53.90680974 +DE,Ammonia,1A2c_Chemicals,diesel_oil,TON,0.00443 +DE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.68305799 +DE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.051268933 +DE,Ammonia,1A2g_Construction_and_Mining,natural_gas,TON,0 +DE,Ammonia,1A2g_Industry-other,Other_Fuel,TON,0.235 +DE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.395903681 +DE,Ammonia,1A3bii_Road-LDV,light_oil,TON,344.218715 +DE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.27413061 +DE,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,13.4173027 +DE,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,5.74101558 +DE,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,3.57095123 +DE,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.674293734 +DE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.41877943 +DE,Ammonia,1A3c_Rail,diesel_oil,TON,0.219797835 +DE,Ammonia,1A3c_Rail,light_oil,TON,0.000044925 +DE,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.66642502 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.90353595 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.402079025 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.92177766 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.0972314 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.205668966 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0 +DE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.093377497 +DE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.091579626 +DE,Ammonia,1A4bi_Residential-stationary,biomass,TON,43.8656464 +DE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,12.117 +DE,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.609 +DE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,98.76205845 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.512602464 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.015528782 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +DE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0033605 +DE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.190841 +DE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.11480813 +DE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.13119 +DE,Ammonia,2B_Chemicals-other,,TON,11.50731 +DE,Ammonia,2D3d_Coating-application,,TON,0 +DE,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,49 +DE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,28.1665 +DE,Ammonia,3B1a_Cattle-dairy,,TON,282.1176299 +DE,Ammonia,3B1b_Cattle-non-dairy,,TON,406.4386354 +DE,Ammonia,3B2_Manure-sheep,,TON,3.378683 +DE,Ammonia,3B3_Manure-swine,,TON,61.81508642 +DE,Ammonia,3B4_Manure-other,,TON,110.9714532 +DE,Ammonia,3B4_Manure-poultry,,TON,10246.34669 +DE,Ammonia,3B4d_Manure-goats,,TON,24.81767 +DE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1929.380099 +DE,Ammonia,5A_Solid-waste-disposal,,TON,0 +DE,Ammonia,5C_Open-burning-yard-waste,,TON,0.666064399 +DE,Ammonia,5D1_Wastewater-domestic,,TON,7.193213 +DE,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,2.17613 +DE,Ammonia,6A_Other-commertial,Other_Fuel,TON,19.61172 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,37069.8613 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39884.93305 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2233.724934 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,210844.9529 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4165.121859 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.239259 +DE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,41423.64626 +DE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3639251.05 +DE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,81814.815 +DE,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,210861.592 +DE,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,438909.282 +DE,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,100216.7099 +DE,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,87407.345 +DE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,52144.6572 +DE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,70.12507 +DE,Carbon Dioxide,1A3c_Rail,light_oil,TON,3.34453 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16440.1644 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,22989.5955 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1087.38647 +DE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,11899.99076 +DE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,80536.09433 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,64014.28399 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1153.368493 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.5013343 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,418.9548 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,12825.52822 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10806.18417 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,64201.11 +DE,Carbon Monoxide,11C_Other-natural,,TON,3580.677 +DE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.436808 +DE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,574.1162 +DE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,8.170075 +DE,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,30.3 +DE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,415.071252 +DE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1297.038971 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,157.351534 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3149.576584 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,191.8522393 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.91227715 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,38.82421719 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,44.85429671 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1337.567866 +DE,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.027963 +DE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,12.123 +DE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +DE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1037.14856 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1243.051725 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.11187 +DE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,838.7586671 +DE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,149.7970348 +DE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,72863.3079 +DE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,241.047435 +DE,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6069.01785 +DE,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,942.465335 +DE,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,394.80596 +DE,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,218.80178 +DE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2633.45328 +DE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,73.9279958 +DE,Carbon Monoxide,1A3c_Rail,light_oil,TON,1.128 +DE,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,495.261898 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.408117494 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.952000085 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,462.7077444 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,75.46092 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5380.07851 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.65267 +DE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,57.571947 +DE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,27591.30364 +DE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5260.59323 +DE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,60.585 +DE,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.923197 +DE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,226.94634 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,366.336903 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,357.405319 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.348417 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.9561 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,3053.0332 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.49186 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11995.7 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,1 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.78 +DE,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,115.85363 +DE,Carbon Monoxide,2B_Chemicals-other,,TON,2735.357824 +DE,Carbon Monoxide,2C_Iron-steel-alloy,,TON,294.6 +DE,Carbon Monoxide,2C5_Lead-production,,TON,0 +DE,Carbon Monoxide,2D3d_Coating-application,,TON,0 +DE,Carbon Monoxide,2D3e_Degreasing,,TON,0 +DE,Carbon Monoxide,2H2_Food-and-beverage,,TON,91.45306 +DE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.2813 +DE,Carbon Monoxide,3F_Ag-res-on-field,,TON,114.50674 +DE,Carbon Monoxide,5A_Solid-waste-disposal,,TON,167.83 +DE,Carbon Monoxide,5C_Incineration,,TON,0.10046119 +DE,Carbon Monoxide,5C_Incineration,biomass,TON,7.942744105 +DE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,60.1091 +DE,Carbon Monoxide,5C_Open-burning-residential,,TON,55.06294 +DE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,71.5244321 +DE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.59598 +DE,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.609688052 +DE,Methane,1A3bii_Road-LDV,light_oil,TON,305.9950417 +DE,Methane,1A3biii_Road-bus,diesel_oil,TON,0.677531268 +DE,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,23.12174754 +DE,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,10.39633243 +DE,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.383647718 +DE,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.109125178 +DE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.24993711 +DE,Nitrogen Oxides,11C_Other-natural,,TON,812.956 +DE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,41.548062 +DE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,8395 +DE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,163.0000063 +DE,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,202.2 +DE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,732.37 +DE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,164.015958 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,331.390389 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,493.5317343 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,34.20917082 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.55818912 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1200.152508 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,448.2806995 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2864.761894 +DE,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.111178 +DE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,22.0611 +DE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +DE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,5.2591 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1989.80734 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,24.11506677 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.024217 +DE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,43.77259869 +DE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,233.0149929 +DE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,9981.28079 +DE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,729.369926 +DE,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,788.86068 +DE,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,3656.88545 +DE,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,594.352529 +DE,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,655.205702 +DE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,125.549704 +DE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,377.2734132 +DE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.013808 +DE,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4608.85074 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.29834445 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,24.42099234 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,458.340254 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,127.0888 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,91.79556708 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.76755 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,121.509288 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,313.856995 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,88.27187 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,218.1057 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,10.5966 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,681.0965 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,697.759742 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.4730604 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.300688 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.5688 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,32.66509 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,172.37281 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,536.272 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.19 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.94 +DE,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,39.79257 +DE,Nitrogen Oxides,2B_Chemicals-other,,TON,20.176843 +DE,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,106.6 +DE,Nitrogen Oxides,2C5_Lead-production,,TON,0 +DE,Nitrogen Oxides,2D3d_Coating-application,,TON,0.605078 +DE,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +DE,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +DE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.5894 +DE,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3.387776 +DE,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,15.09 +DE,Nitrogen Oxides,5C_Incineration,,TON,0.036885587 +DE,Nitrogen Oxides,5C_Incineration,biomass,TON,14.86701241 +DE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1.77838 +DE,Nitrogen Oxides,5C_Open-burning-residential,,TON,3.886793 +DE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.74951047 +DE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.7095 +DE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.127775069 +DE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,223.2732657 +DE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.146783694 +DE,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,12.93315597 +DE,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.443439762 +DE,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.331502247 +DE,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.162225926 +DE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.420632351 +DE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.541855 +DE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,580.94 +DE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,11.00013187 +DE,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.663196 +DE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,41.25146968 +DE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.791212195 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,31.08715645 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,90.88613604 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,201.7382297 +DE,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.00554182 +DE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.197492 +DE,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +DE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,10246.5991 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.749953657 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.542061419 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.42891656 +DE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,13.08636 +DE,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.65772 +DE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.580454 +DE,PM10 Filterable,2A2_Lime-production,,TON,2.731041 +DE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,3233.5893 +DE,PM10 Filterable,2A6_Other-minerals,,TON,440.8992439 +DE,PM10 Filterable,2B_Chemicals-other,,TON,34.2959585 +DE,PM10 Filterable,2C_Iron-steel-alloy,,TON,52.105 +DE,PM10 Filterable,2C5_Lead-production,,TON,0.15925 +DE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.591347551 +DE,PM10 Filterable,2D3d_Coating-application,,TON,0.448039 +DE,PM10 Filterable,2D3e_Degreasing,,TON,0 +DE,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0202 +DE,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.038 +DE,PM10 Filterable,2H2_Food-and-beverage,,TON,29.83786044 +DE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,23.38981 +DE,PM10 Filterable,3Dc_Other-farm,,TON,1182.342974 +DE,PM10 Filterable,5A_Solid-waste-disposal,,TON,4.98 +DE,PM10 Filterable,5C_Incineration,,TON,0.047141 +DE,PM10 Filterable,5C_Incineration,biomass,TON,7.68 +DE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,6.04649 +DE,PM10 Filterable,5C_Open-burning-residential,,TON,23.9483 +DE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,7.33934 +DE,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0237776 +DE,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00532 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.41720252 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1999.12 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,13.50015437 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,1.8278 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,91.275186 +DE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,198.5657957 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,27.18013507 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.850793399 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.267322424 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,6.951183259 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,281.8026983 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,104.5250597 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,281.0228678 +DE,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.0127574 +DE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.1983 +DE,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,172.718903 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.45227078 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014184 +DE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,19.07214128 +DE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10246.5991 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,16.59197834 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,287.555317 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,42.20952731 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,15.83217286 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,189.347061 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,40.27559817 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,38.74195923 +DE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.258540038 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,15.15315495 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00045238 +DE,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,323.2299295 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.22800326 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.84610835 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.59179339 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.7072 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.40892881 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.0992869 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.9462863 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,79.80584 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,753.69017 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,28.83847 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.44942 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.626448 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,70.3735603 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.647977632 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0015451 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.7272 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,28.3225011 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.13461 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,54.7078 +DE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.01946 +DE,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,2.731041 +DE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3233.5893 +DE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,458.2086107 +DE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,69.168184 +DE,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,63.425 +DE,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,22.95697 +DE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.5913731 +DE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,7.018759 +DE,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +DE,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0202 +DE,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.038 +DE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,265.5317722 +DE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,23.413172 +DE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1783.966848 +DE,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,11.518437 +DE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,4.98 +DE,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.048068774 +DE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.327020526 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6.04649 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,24.616358 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,10.6309959 +DE,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.026181 +DE,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.00532 +DE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.748619 +DE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,320.4645 +DE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.000096116 +DE,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.613796 +DE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,41.12213608 +DE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.924527366 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,13.80344307 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,59.19909076 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,200.3983106 +DE,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.00133582 +DE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.196255 +DE,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +DE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,769.1273 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.330038864 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.530142781 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.13462053 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.05711 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.5054697 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.580454 +DE,PM2.5 Filterable,2A2_Lime-production,,TON,1.780422 +DE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,323.35893 +DE,PM2.5 Filterable,2A6_Other-minerals,,TON,61.07421251 +DE,PM2.5 Filterable,2B_Chemicals-other,,TON,18.8087162 +DE,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,40.746 +DE,PM2.5 Filterable,2C5_Lead-production,,TON,0.159251 +DE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.380347551 +DE,PM2.5 Filterable,2D3d_Coating-application,,TON,0.420768 +DE,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +DE,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0202 +DE,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.038 +DE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,18.96824703 +DE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,21.055777 +DE,PM2.5 Filterable,3Dc_Other-farm,,TON,294.8526924 +DE,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,4.85 +DE,PM2.5 Filterable,5C_Incineration,,TON,0.038114 +DE,PM2.5 Filterable,5C_Incineration,biomass,TON,7.68 +DE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,6.04649 +DE,PM2.5 Filterable,5C_Open-burning-residential,,TON,21.93166 +DE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.657912 +DE,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0237776 +DE,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00532 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,13.62758852 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1738.61 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,10.50011862 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,1.778402 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,91.139591 +DE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,198.5657426 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.38949144 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.821562546 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.267305699 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,5.088452518 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,264.5208215 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,72.83734347 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,277.037668 +DE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.0085494 +DE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.197063 +DE,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,167.540236 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,5.94069609 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014184 +DE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,2.804724727 +DE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,769.1273 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,15.27453091 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,183.6523855 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,38.07007643 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9.31122851 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,174.4064519 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,37.07454751 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,35.08919886 +DE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.44930613 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,14.70371471 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00041616 +DE,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,301.094788 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.94710656 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.289928342 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.9158074 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.29607 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.06725159 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.0992869 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.6193635 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,73.428744 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,753.09321 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,25.80917 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.29717 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.787275 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,68.258345 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.596152692 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0015451 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.7054 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,26.0560421 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.0104 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,50.3347 +DE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.01946 +DE,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.780422 +DE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,323.35893 +DE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,78.46918832 +DE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,60.5525102 +DE,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,52.146 +DE,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,22.956971 +DE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.3803731 +DE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,6.991488 +DE,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +DE,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0202 +DE,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.038 +DE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,237.6706064 +DE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,21.079139 +DE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,430.8598934 +DE,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,11.518437 +DE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,4.85 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.038864852 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.327197448 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6.04649 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,22.54346 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,8.6424029 +DE,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.026181 +DE,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.00532 +DE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,34.6936394 +DE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,31577 +DE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,176 +DE,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,9.8 +DE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,160.041768 +DE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1781.919795 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,27.88838328 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.827408469 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.049078904 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,99.0352513 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4914.115393 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1407.508959 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,683.3130682 +DE,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.078580704 +DE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.087185 +DE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +DE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.022539 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,154.473534 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.149296346 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000027097 +DE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4.339401752 +DE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.45652694 +DE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,78.4337741 +DE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.897083821 +DE,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4.54454399 +DE,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4.84593798 +DE,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.104964809 +DE,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.96373826 +DE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.1237931 +DE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,5.173856932 +DE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00011516 +DE,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2147.034441 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,44.36121298 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,46.40457257 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.715748251 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,8.90809 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.549018147 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.01748397 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,8.5646152 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.868201902 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,14.9165707 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,516.1847 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,25.02992 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,3.799395 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,47.0327258 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.045035165 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000269133 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.30645 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.46504581 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.035395 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2.95865 +DE,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.001537 +DE,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,36.176235 +DE,Sulfur Dioxide,2B_Chemicals-other,,TON,78.0301 +DE,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,41.8 +DE,Sulfur Dioxide,2C5_Lead-production,,TON,0 +DE,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +DE,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +DE,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +DE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.00186 +DE,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,85.9 +DE,Sulfur Dioxide,5C_Incineration,,TON,0.025508325 +DE,Sulfur Dioxide,5C_Incineration,biomass,TON,24.86642018 +DE,Sulfur Dioxide,5C_Open-burning-residential,,TON,0.6477995 +DE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.797712664 +DE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.159638 +DE,Volatile Organic Compounds,11C_Other-natural,,TON,27056.32 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.6491822 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,56.20906 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.2418514 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.60531 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,42.105172 +DE,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0 +DE,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,8.290424707 +DE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,460.3991844 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31.2874709 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,162.698832 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.572181098 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.341943516 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,4.593122275 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.508128601 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,76.83281984 +DE,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.0011383 +DE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.503612 +DE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +DE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.105182 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,210.559171 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,98.3911755 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.0003923 +DE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,26.34186815 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,33.90219962 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,6520.845395 +DE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,39.6911448 +DE,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,354.4387593 +DE,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,227.60855 +DE,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,87.8069311 +DE,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,49.7793768 +DE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,353.2634713 +DE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,27.98423955 +DE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.054430034 +DE,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,148.1030932 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.963097494 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.943129559 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,46.71141845 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,19.31532 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,377.4766802 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.0693631 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,14.9854793 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2454.427737 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,947.6286571 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,8.4819 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.4262996 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,34.90522 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,71.8627183 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,22.1552916 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00522454 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.3079 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1033.267172 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.92419 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3843.27774 +DE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,106.50217 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,16.4629036 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1514.233503 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,14.60078266 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1781.962503 +DE,Volatile Organic Compounds,2A6_Other-minerals,,TON,0 +DE,Volatile Organic Compounds,2B_Chemicals-other,,TON,227.008272 +DE,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,62.642 +DE,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +DE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2344.5374 +DE,Volatile Organic Compounds,2D3d_Coating-application,,TON,2354.13963 +DE,Volatile Organic Compounds,2D3e_Degreasing,,TON,317.094768 +DE,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,236.2178 +DE,Volatile Organic Compounds,2D3h_Printing,,TON,629.449732 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,36.15467106 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,5.621610838 +DE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,32.5265498 +DE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,85.614072 +DE,Volatile Organic Compounds,3Dc_Other-farm,,TON,0 +DE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,852.91946 +DE,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,7.859637 +DE,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,104.380554 +DE,Volatile Organic Compounds,5C_Incineration,,TON,0.030802096 +DE,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.384898244 +DE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,4.12584 +DE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,5.542569 +DE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,10.8418365 +DE,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,6.3109013 +DE,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,4.12295 +DE,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.415118 +DE,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.03 +DM,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,446.6063569 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1831.757229 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.288 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,78463.8569 +DM,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,127923.6545 +DM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1849.374921 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,7547.480823 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.03347 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,64423.94591 +DM,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1085809.674 +DM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2314.113202 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,316.0068846 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.002053 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,327.1493168 +DM,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,39.09748539 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,336.6594627 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.002211 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,382.7571258 +DM,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,73596.16768 +DM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,60.55754918 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,305.93629 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.002053 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,327.1493168 +DM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,38.45742905 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,326.58947 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.002211 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,382.7571258 +DM,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,68356.15864 +DM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,59.91480284 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,715.2265878 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.001725 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,40.27517355 +DM,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,477339.9826 +DM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,262.2785649 +DM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.326 +DM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,908.6937344 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,351.5737189 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.06222 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1416.393487 +DM,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,33432.00194 +DM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,48830.02631 +DM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9316.972461 +FL,Ammonia,1A1a_Public-Electricity,biomass,TON,112.0898 +FL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,40.513789 +FL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,966.491456 +FL,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,714.120702 +FL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,1908.886345 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.142210903 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.304632179 +FL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,309.2084437 +FL,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.230006281 +FL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,6.20302639 +FL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.659197309 +FL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,29.59956829 +FL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,54.83273808 +FL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.621637633 +FL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,22.18996468 +FL,Ammonia,1A3bii_Road-LDV,light_oil,TON,8121.661699 +FL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,9.042695093 +FL,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,249.220315 +FL,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,231.3699019 +FL,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,54.77155488 +FL,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,66.24832301 +FL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.56455757 +FL,Ammonia,1A3c_Rail,diesel_oil,TON,4.113292719 +FL,Ammonia,1A3c_Rail,light_oil,TON,0.00202941 +FL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,23.20716053 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000305 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.022588 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.121589 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.320863447 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,9.035864842 +FL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,2.253928355 +FL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,25.04848453 +FL,Ammonia,1A4bi_Residential-stationary,biomass,TON,246.2356987 +FL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.765474031 +FL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.037360018 +FL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.091591137 +FL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,160.3265541 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.232450845 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.155201574 +FL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07033529 +FL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.231239436 +FL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.521349749 +FL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,23.81282368 +FL,Ammonia,2A2_Lime-production,,TON,31.3775 +FL,Ammonia,2B_Chemicals-other,,TON,673.394648 +FL,Ammonia,2C_Iron-steel-alloy,,TON,0.278864 +FL,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.302 +FL,Ammonia,2D3d_Coating-application,,TON,0.54 +FL,Ammonia,2D3h_Printing,,TON,0.022 +FL,Ammonia,2H1_Pulp-and-paper,,TON,216.4475 +FL,Ammonia,3B1a_Cattle-dairy,,TON,7274.384605 +FL,Ammonia,3B1b_Cattle-non-dairy,,TON,7187.534244 +FL,Ammonia,3B2_Manure-sheep,,TON,45.574584 +FL,Ammonia,3B3_Manure-swine,,TON,170.3936784 +FL,Ammonia,3B4_Manure-other,,TON,1621.371048 +FL,Ammonia,3B4_Manure-poultry,,TON,9477.575817 +FL,Ammonia,3B4d_Manure-goats,,TON,402.450576 +FL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7156.88364 +FL,Ammonia,5D1_Wastewater-domestic,,TON,394.238095 +FL,Ammonia,5D2_Wastewater-industrial,biomass,TON,37.0045 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,509707.2367 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,405788.2766 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21518.1178 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,6743679.144 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,133295.8767 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,33.45996831 +FL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,882936.1078 +FL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,92268681.72 +FL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,651038.5983 +FL,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4626178.36 +FL,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,21228173.63 +FL,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1996943.534 +FL,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4388865.673 +FL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,384488.4823 +FL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3188.900478 +FL,Carbon Dioxide,1A3c_Rail,light_oil,TON,156.6966356 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,530519.4076 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,742139.098 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32784.90995 +FL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,276990.9052 +FL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1835173.684 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,397499.4087 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11199.76418 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,38.05456699 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8597.5734 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,209762.1049 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,433655.6465 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1597360.218 +FL,Carbon Monoxide,11C_Other-natural,,TON,226203.814 +FL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,5013.454996 +FL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,298.360298 +FL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,22658.89 +FL,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1808.339745 +FL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.342138 +FL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,9750.587165 +FL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2.529628 +FL,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.5425 +FL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,98.8469 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9282.631346 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30060.47696 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1799.876934 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,43652.27339 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,116.2015111 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,836.6296027 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,109.4679611 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,108.7427273 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2733.343428 +FL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +FL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,61.883664 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.060604 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.875648 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.064012 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,32240.53484 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,40432.61493 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,2.884929985 +FL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29644.16623 +FL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3836.940457 +FL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1842658.849 +FL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2145.088945 +FL,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,143677.1268 +FL,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,37758.00354 +FL,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,10134.60663 +FL,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8759.49109 +FL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18071.5613 +FL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1340.212962 +FL,Carbon Monoxide,1A3c_Rail,light_oil,TON,51.40205525 +FL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3863.432158 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,170.8397618 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.70476313 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.102881707 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,10.66402353 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,502.0887878 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3209.564258 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,239913.7601 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,844.9372442 +FL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1319.680748 +FL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,650981.5143 +FL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,28587.66091 +FL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,8.82737065 +FL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,5.13699665 +FL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,5.45795459 +FL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,633.1102769 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2024.262022 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4153.943646 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.186710342 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,98.588133 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,55991.97313 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,872.9390021 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,261752.6428 +FL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,157.299669 +FL,Carbon Monoxide,2A1_Cement-production,,TON,987.988 +FL,Carbon Monoxide,2A2_Lime-production,,TON,27.9115 +FL,Carbon Monoxide,2A6_Other-minerals,,TON,4450.528136 +FL,Carbon Monoxide,2B_Chemicals-other,,TON,185.200093 +FL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,428.686914 +FL,Carbon Monoxide,2C5_Lead-production,,TON,742.9075 +FL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,157.36539 +FL,Carbon Monoxide,2D3d_Coating-application,,TON,7.05314 +FL,Carbon Monoxide,2D3h_Printing,,TON,0.36 +FL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,8665.248076 +FL,Carbon Monoxide,2H2_Food-and-beverage,,TON,5590.527018 +FL,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.034081 +FL,Carbon Monoxide,3F_Ag-res-on-field,,TON,32658.5 +FL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2699.069027 +FL,Carbon Monoxide,5C_Incineration,,TON,1.939548958 +FL,Carbon Monoxide,5C_Incineration,biomass,TON,12.94914865 +FL,Carbon Monoxide,5C_Open-burning-commercial,,TON,129 +FL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,40303.905 +FL,Carbon Monoxide,5C_Open-burning-residential,,TON,6101.0636 +FL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,665.47087 +FL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.004257 +FL,Methane,1A3bii_Road-LDV,diesel_oil,TON,9.07210767 +FL,Methane,1A3bii_Road-LDV,light_oil,TON,6392.037251 +FL,Methane,1A3biii_Road-bus,diesel_oil,TON,10.60515149 +FL,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,481.353555 +FL,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,984.0356099 +FL,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,21.51306706 +FL,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,86.25541191 +FL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,61.22881969 +FL,Nitrogen Oxides,11C_Other-natural,,TON,35563.5874 +FL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,11376.36438 +FL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,1345.812546 +FL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,116553.476 +FL,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,13697.88538 +FL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,1.307778 +FL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,25941.07127 +FL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2.837182 +FL,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,2.17 +FL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,118.0876 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5011.960153 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4491.544532 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,307.2599443 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4492.206954 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,556.9271797 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5091.453523 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1073.228594 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,227.8690188 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,7738.965892 +FL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +FL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,82.631653 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,16.187937 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,2.31032 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.032005 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,62151.58292 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,608.2766218 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.615196497 +FL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,9743.28395 +FL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,5629.003778 +FL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,249706.9005 +FL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5736.649705 +FL,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,14821.17663 +FL,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,133435.3172 +FL,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,14074.94531 +FL,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,25778.96249 +FL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,639.7684908 +FL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,9889.710922 +FL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.589474289 +FL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,32183.32676 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,73.06101611 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,92.29112277 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.27615475 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.302816571 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,553.1671778 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5461.377879 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3177.695851 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,234.8337543 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2822.88455 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,5659.287407 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,452.0302579 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,31.7785547 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.148793724 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,19.64864068 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1864.573394 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4081.400229 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,46.33922715 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.932552205 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,95.001725 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,459.7604216 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5181.572854 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,8299.994513 +FL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,42.895642 +FL,Nitrogen Oxides,2A1_Cement-production,,TON,2123.2 +FL,Nitrogen Oxides,2A2_Lime-production,,TON,271.4877 +FL,Nitrogen Oxides,2A6_Other-minerals,,TON,4496.821727 +FL,Nitrogen Oxides,2B_Chemicals-other,,TON,1370.288836 +FL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,92.284476 +FL,Nitrogen Oxides,2C5_Lead-production,,TON,18.0223 +FL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.000617 +FL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,7.6068 +FL,Nitrogen Oxides,2D3h_Printing,,TON,1.433174 +FL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,4945.76484 +FL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +FL,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,6.2993 +FL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1685.6 +FL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,262.571232 +FL,Nitrogen Oxides,5C_Incineration,,TON,68.72594084 +FL,Nitrogen Oxides,5C_Incineration,biomass,TON,82.42896826 +FL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,5.2 +FL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1192.424203 +FL,Nitrogen Oxides,5C_Open-burning-residential,,TON,430.66345 +FL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,29.5764902 +FL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.11352 +FL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.29581593 +FL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,5441.893693 +FL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.682606825 +FL,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,319.4812515 +FL,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,25.74124898 +FL,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,8.378536167 +FL,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8.88227902 +FL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.250647421 +FL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,297.4438286 +FL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,34.3473022 +FL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4395.4983 +FL,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,3132.190323 +FL,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.032316 +FL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,2163.648671 +FL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,24.115611 +FL,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.1085 +FL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.9426 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1762.817171 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.95748384 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,394.4365982 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,131.7810748 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,14.11396508 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,196.2500744 +FL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.722545 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.876368 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.078871 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.004534 +FL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,178091.1337 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,26.23613091 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.13325525 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.156928852 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017176292 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,58.3537927 +FL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.906711797 +FL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.129019085 +FL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.178918294 +FL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.163070738 +FL,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,42.194 +FL,PM10 Filterable,2A1_Cement-production,,TON,471.546991 +FL,PM10 Filterable,2A2_Lime-production,,TON,255.506181 +FL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,46518.82502 +FL,PM10 Filterable,2A6_Other-minerals,,TON,25584.55134 +FL,PM10 Filterable,2B_Chemicals-other,,TON,362.68309 +FL,PM10 Filterable,2C_Iron-steel-alloy,,TON,75.579873 +FL,PM10 Filterable,2C3_Aluminum-production,,TON,7.402179 +FL,PM10 Filterable,2C5_Lead-production,,TON,6.739749 +FL,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,195.995299 +FL,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.01666 +FL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,43.733299 +FL,PM10 Filterable,2D3d_Coating-application,,TON,42.682408 +FL,PM10 Filterable,2D3h_Printing,,TON,0.14 +FL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,6.149 +FL,PM10 Filterable,2H1_Pulp-and-paper,,TON,1739.529478 +FL,PM10 Filterable,2H2_Food-and-beverage,,TON,389.4368237 +FL,PM10 Filterable,2H3_Other-industrial-processes,,TON,1036.483964 +FL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,21.26381112 +FL,PM10 Filterable,2I_Wood-processing,,TON,0.207413 +FL,PM10 Filterable,3Dc_Other-farm,,TON,9641.334714 +FL,PM10 Filterable,5A_Solid-waste-disposal,,TON,83.345475 +FL,PM10 Filterable,5C_Incineration,,TON,2.315709 +FL,PM10 Filterable,5C_Incineration,biomass,TON,27.740889 +FL,PM10 Filterable,5C_Open-burning-commercial,,TON,16.6 +FL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4054.23897 +FL,PM10 Filterable,5C_Open-burning-residential,,TON,2727.535 +FL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,110.1988 +FL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,31.231659 +FL,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.0001 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,316.9571857 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,42.80199656 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8432.38008 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3650.9955 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0335652 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4632.54512 +FL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,24.2636124 +FL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.168047 +FL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,18.59404 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,359.2138429 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.00418803 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.969807565 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8070.890946 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,31.1785457 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,430.3234707 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,164.313805 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,13.99620051 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,440.5539461 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7.71086695 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.05076982 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0945667 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0117884 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,5107.309966 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,206.1716545 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003875052 +FL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,689.6271763 +FL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,178091.1337 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,373.4318423 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,8337.398267 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,392.1872773 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,414.9701173 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,8276.603844 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,946.3519489 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1715.294802 +FL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.2026307 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,312.2152803 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021131864 +FL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2418.03004 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,27.79873259 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.522684498 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.197639465 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.018813612 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,106.0361583 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,557.3748244 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,199.6689291 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.092006251 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,237.3022609 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1864.232454 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4164.63079 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.201829905 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.133344978 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.597985205 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.223986767 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,371.5791348 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,25.04876405 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004808076 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,14.1683524 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,452.9339964 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,105.8577288 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,1438.752098 +FL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,42.194 +FL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,504.5197391 +FL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,361.8890317 +FL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,46518.82502 +FL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,25832.09602 +FL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,469.537422 +FL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,178.8816821 +FL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,33.218421 +FL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,24.81657283 +FL,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,309.1422016 +FL,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0613442 +FL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,49.4807707 +FL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,42.711602 +FL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.14 +FL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,6.149 +FL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3138.216127 +FL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5175.330096 +FL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1604.56433 +FL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,32.91814563 +FL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.38753463 +FL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,9646.613279 +FL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3371.2 +FL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,173.6266863 +FL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.861948661 +FL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,34.2844005 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,18.2176 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4054.23897 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2727.535 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,110.1988 +FL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,31.231659 +FL,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0001 +FL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,238.843168 +FL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,27.54538888 +FL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1837.08322 +FL,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2270.156981 +FL,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01875 +FL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2022.413647 +FL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.091038 +FL,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.02604 +FL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.18856 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1375.762763 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.02838954 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,137.9396441 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,84.89509644 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,186.5718008 +FL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.703150228 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.49919701 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.04492656 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.004250628 +FL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,25828.5099 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,22.52062617 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.694314442 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.059257906 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016952541 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,32.26790614 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.465343146 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.085681012 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.906020442 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.739689769 +FL,PM2.5 Filterable,2A1_Cement-production,,TON,220.8312242 +FL,PM2.5 Filterable,2A2_Lime-production,,TON,139.9812703 +FL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4651.846433 +FL,PM2.5 Filterable,2A6_Other-minerals,,TON,3655.795221 +FL,PM2.5 Filterable,2B_Chemicals-other,,TON,247.5942121 +FL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,64.07720581 +FL,PM2.5 Filterable,2C3_Aluminum-production,,TON,6.27627 +FL,PM2.5 Filterable,2C5_Lead-production,,TON,4.8042657 +FL,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,64.60789969 +FL,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.00588 +FL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,24.4855881 +FL,PM2.5 Filterable,2D3d_Coating-application,,TON,0.753813 +FL,PM2.5 Filterable,2D3h_Printing,,TON,0 +FL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1153.612267 +FL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,180.3094696 +FL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,813.1530246 +FL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,42.12838783 +FL,PM2.5 Filterable,2I_Wood-processing,,TON,0.06794563 +FL,PM2.5 Filterable,3Dc_Other-farm,,TON,1923.966907 +FL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,66.53627596 +FL,PM2.5 Filterable,5C_Incineration,,TON,1.863610651 +FL,PM2.5 Filterable,5C_Incineration,biomass,TON,18.08953969 +FL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,9.11392 +FL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3125.4141 +FL,PM2.5 Filterable,5C_Open-burning-residential,,TON,2497.8487 +FL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,84.952669 +FL,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.000259 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,258.3564471 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,36.34808754 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5957.74593 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2788.963116 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0323152 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4554.708721 +FL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,24.2390393 +FL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0855872 +FL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,17.84 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,348.2133222 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44.52628488 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.954959425 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7689.385668 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,27.6855014 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,176.2088512 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,117.9678605 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,13.99598604 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,432.4394512 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7.691473678 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.67359856 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0606223 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.011505028 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,4954.091485 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,189.7975228 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003875052 +FL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,248.4991906 +FL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25828.5099 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,328.6886485 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3691.915606 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,342.8272573 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,168.4455602 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,7241.107482 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,841.8191969 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1459.252798 +FL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,29.04917864 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,289.1866642 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019479318 +FL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2237.629534 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,23.66249073 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.073408575 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.097010346 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.018330067 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,106.2229199 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,540.6534405 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,184.2157228 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.092006251 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,230.1833072 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1715.179723 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4159.333085 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.760456525 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.090006968 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.325089568 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.800606455 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,360.4318524 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,23.04491204 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004808076 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,13.743298 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,416.7028465 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,102.6818678 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,1323.652241 +FL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,42.194 +FL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,291.2128649 +FL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,248.4503093 +FL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4652.207122 +FL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3966.868013 +FL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,374.6831553 +FL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,167.3791689 +FL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,32.323501 +FL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,22.88108536 +FL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,177.754747 +FL,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0505642 +FL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,45.0852498 +FL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,42.711602 +FL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.14 +FL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,6.149 +FL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2662.240688 +FL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4979.723884 +FL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1390.867526 +FL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,45.56930605 +FL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.24806732 +FL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1929.328814 +FL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3371.2 +FL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,160.9059792 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.467333226 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.57669898 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,11.3315 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3125.4141 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2497.8487 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,84.952669 +FL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,31.231659 +FL,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0001 +FL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1360.142613 +FL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,335.567911 +FL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,204744.86 +FL,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,57964.65061 +FL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.129144 +FL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2553.33767 +FL,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,1.686772191 +FL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.044329809 +FL,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,4.4995 +FL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,8.1175 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,132.281922 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13.03123243 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.824091224 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,948.1416443 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,83.71284602 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7189.217824 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3460.516845 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,34.88114477 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1276.159436 +FL,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +FL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,9.067356 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,23.791163 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,3.09632 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000457 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1467.12331 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3.690065712 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000737267 +FL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,979.7313104 +FL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,9.702898919 +FL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,2041.398246 +FL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,6.891299706 +FL,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,102.3485168 +FL,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,225.276624 +FL,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,21.96637566 +FL,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,47.01119217 +FL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.505403252 +FL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,92.93993192 +FL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004518679 +FL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,17626.93167 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.661759318 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.47637835 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.806245445 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.018036023 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,144.4998599 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,115.4128288 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20.27236695 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.724785245 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,60.25980037 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,52.41449816 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,62.13610593 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,75.2091667 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0.72395367 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,46.5017902 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.489216968 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,86.47784623 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.327454802 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000836953 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.87018398 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,6.073349558 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,106.8379675 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46.66319222 +FL,Sulfur Dioxide,2A1_Cement-production,,TON,38 +FL,Sulfur Dioxide,2A2_Lime-production,,TON,23.788 +FL,Sulfur Dioxide,2A6_Other-minerals,,TON,1301.704624 +FL,Sulfur Dioxide,2B_Chemicals-other,,TON,21239.05374 +FL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,41.656321 +FL,Sulfur Dioxide,2C5_Lead-production,,TON,1108.171775 +FL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,78.0952 +FL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,4303.55907 +FL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +FL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,23.85575 +FL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,231.77 +FL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,3051.177174 +FL,Sulfur Dioxide,5C_Incineration,,TON,3.648358969 +FL,Sulfur Dioxide,5C_Incineration,biomass,TON,15.27892558 +FL,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.03 +FL,Sulfur Dioxide,5C_Open-burning-residential,,TON,71.777248 +FL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.39063694 +FL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,92.516885 +FL,Volatile Organic Compounds,11C_Other-natural,,TON,1631172.13 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,107.316746 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,29.569796 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,790.83173 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,262.28946 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.03172 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1050.138882 +FL,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0.001006216 +FL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,332.2827584 +FL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,4.628453408 +FL,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.0001 +FL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,6.7748 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,637.7786123 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1441.07912 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.945955942 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1988.559144 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,28.92991094 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,68.54754933 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,39.35828635 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,12.42322686 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,480.573695 +FL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +FL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,8.778619 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.229704 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.019901 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.004192 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,6386.960648 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,2773.453016 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.009997126 +FL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1825.037869 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,698.9583006 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,174219.1787 +FL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,280.1491377 +FL,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9478.787946 +FL,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,8117.254709 +FL,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1849.924671 +FL,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2049.764861 +FL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7379.699861 +FL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,493.6040819 +FL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.074794139 +FL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,925.703638 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.483268012 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.304019475 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.007585342 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.545329806 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.52017137 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,802.1353316 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,12208.84395 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.765163889 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,333.5713103 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,45629.77645 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5201.380023 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.235831631 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.18679995 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.764113483 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,86.98447652 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,392.721613 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,311.2901967 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.016204711 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.9375328 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,15428.00936 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,214.8876106 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,97653.54573 +FL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,128.74997 +FL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1451.054156 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,4247.215604 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,98690.93265 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1232.452582 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,16.470198 +FL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,4.5 +FL,Volatile Organic Compounds,2A1_Cement-production,,TON,87.3584 +FL,Volatile Organic Compounds,2A2_Lime-production,,TON,4.58026 +FL,Volatile Organic Compounds,2A6_Other-minerals,,TON,438.81565 +FL,Volatile Organic Compounds,2B_Chemicals-other,,TON,1714.902256 +FL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,36.116565 +FL,Volatile Organic Compounds,2C5_Lead-production,,TON,7.973633 +FL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,138.594576 +FL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,77253.95185 +FL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,68.829507 +FL,Volatile Organic Compounds,2D3d_Coating-application,,TON,32458.30895 +FL,Volatile Organic Compounds,2D3e_Degreasing,,TON,368.124265 +FL,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,0.6125 +FL,Volatile Organic Compounds,2D3h_Printing,,TON,772.641002 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,317.43279 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,798.2315097 +FL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,6854.4417 +FL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,6367.138879 +FL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3090.735272 +FL,Volatile Organic Compounds,2I_Wood-processing,,TON,0.11 +FL,Volatile Organic Compounds,3Dc_Other-farm,,TON,271.58756 +FL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,28995.19855 +FL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,3581.9 +FL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,513.810348 +FL,Volatile Organic Compounds,5C_Incineration,,TON,11.26844222 +FL,Volatile Organic Compounds,5C_Incineration,biomass,TON,5.894892918 +FL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,18 +FL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2766.42238 +FL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,614.413 +FL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,124.11563 +FL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,406.39052 +FL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +FL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,13.468345 +FL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,3.73068 +GA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.262563 +GA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,637.69758 +GA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.5245754 +GA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,419.0943 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.185678956 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.316945361 +GA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.283 +GA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,20.65 +GA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,51.656 +GA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,21.73386084 +GA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.642662523 +GA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,6.515232399 +GA,Ammonia,1A3bii_Road-LDV,light_oil,TON,4637.103703 +GA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,7.30964184 +GA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,203.1732816 +GA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,167.1944313 +GA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,48.23602406 +GA,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,39.22605199 +GA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.58328737 +GA,Ammonia,1A3c_Rail,diesel_oil,TON,10.37267527 +GA,Ammonia,1A3c_Rail,light_oil,TON,0.004852574 +GA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.563498153 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.91286411 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.000162133 +GA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.943810639 +GA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.76430531 +GA,Ammonia,1A4bi_Residential-stationary,biomass,TON,109.3040885 +GA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.644556129 +GA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.270688354 +GA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1105.330031 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.060645093 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.301986197 +GA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0360255 +GA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.050079255 +GA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.689286387 +GA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.661135656 +GA,Ammonia,2A1_Cement-production,,TON,4 +GA,Ammonia,2A6_Other-minerals,,TON,2691.65 +GA,Ammonia,2B_Chemicals-other,,TON,1855.51 +GA,Ammonia,2H1_Pulp-and-paper,,TON,848.81 +GA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,77.57 +GA,Ammonia,3B1a_Cattle-dairy,,TON,2863.331779 +GA,Ammonia,3B1b_Cattle-non-dairy,,TON,4322.394949 +GA,Ammonia,3B2_Manure-sheep,,TON,39.543966 +GA,Ammonia,3B3_Manure-swine,,TON,2256.877065 +GA,Ammonia,3B4_Manure-other,,TON,1031.998968 +GA,Ammonia,3B4_Manure-poultry,,TON,62988.17637 +GA,Ammonia,3B4d_Manure-goats,,TON,585.548832 +GA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,10568.82049 +GA,Ammonia,5D1_Wastewater-domestic,,TON,36.53366865 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,392014.9032 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,433023.4624 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22618.5882 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2672968.856 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,52823.99364 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,13.63184682 +GA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,222129.5014 +GA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,48248944.53 +GA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,517568.4523 +GA,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3120700.641 +GA,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,15030208.36 +GA,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1545962.982 +GA,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2604196.151 +GA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,208979.9288 +GA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7671.44581 +GA,Carbon Dioxide,1A3c_Rail,light_oil,TON,374.5955567 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,234863.1039 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,328543.3048 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14465.75857 +GA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,115987.3439 +GA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,788564.1198 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,622397.2062 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,21582.20058 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,53.993528 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4403.65 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,192551.3835 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,84885.89147 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,312668.1727 +GA,Carbon Monoxide,11C_Other-natural,,TON,196815.746 +GA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1314.275 +GA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,42.59 +GA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,10492.38 +GA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,2.384 +GA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1399.742 +GA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,36.11 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1805.755987 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35809.72773 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1785.852309 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12431.50005 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.80965831 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1880.796407 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,121.1352588 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2832.768627 +GA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,66.539 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,12778.87158 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,16059.57721 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.175341899 +GA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,14857.57119 +GA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1015.552724 +GA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1309274.921 +GA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1994.592158 +GA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,125397.9864 +GA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,32701.50387 +GA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,7708.123519 +GA,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6213.642289 +GA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11898.87896 +GA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3371.340066 +GA,Carbon Monoxide,1A3c_Rail,light_oil,TON,127.0983877 +GA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,272.4531741 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1590.74148 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.926141366 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,96.36152938 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,61.71152944 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,120.0584355 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1420.882203 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,105978.9553 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,373.4303152 +GA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,552.6130393 +GA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,281295.881 +GA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,12721.68017 +GA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,3.222780235 +GA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,6.353438195 +GA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2440.039447 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3014.72422 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8906.591106 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.940278349 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,50.49512 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,49588.59198 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,170.8727383 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,54716.73699 +GA,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,41.98 +GA,Carbon Monoxide,2A1_Cement-production,,TON,2982.7 +GA,Carbon Monoxide,2A6_Other-minerals,,TON,5932.723 +GA,Carbon Monoxide,2B_Chemicals-other,,TON,0 +GA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,315.409 +GA,Carbon Monoxide,2C3_Aluminum-production,,TON,7.754 +GA,Carbon Monoxide,2C7_Other-metal,,TON,20.876 +GA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,63.07 +GA,Carbon Monoxide,2D3d_Coating-application,,TON,7.09 +GA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,21451.706 +GA,Carbon Monoxide,2H2_Food-and-beverage,,TON,921.8406071 +GA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,566.79342 +GA,Carbon Monoxide,3F_Ag-res-on-field,,TON,20930.422 +GA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,483.27 +GA,Carbon Monoxide,5C_Incineration,,TON,736.2384698 +GA,Carbon Monoxide,5C_Incineration,biomass,TON,995.1757479 +GA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,103928.1804 +GA,Carbon Monoxide,5C_Open-burning-residential,,TON,11023.69414 +GA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1448.58834 +GA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,29.251 +GA,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.530274384 +GA,Methane,1A3bii_Road-LDV,light_oil,TON,4592.188209 +GA,Methane,1A3biii_Road-bus,diesel_oil,TON,3.411639105 +GA,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,514.4230615 +GA,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,497.0191549 +GA,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,16.83070902 +GA,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,35.8591822 +GA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,41.98176769 +GA,Nitrogen Oxides,11C_Other-natural,,TON,19515.2571 +GA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,375.93 +GA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,109.811 +GA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,107504.13 +GA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,28.94 +GA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,638.585 +GA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,43.05 +GA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,15.9 +GA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,13.98 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3384.386758 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4957.915475 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,313.3173072 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5107.066428 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,77.67506108 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6208.296884 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,719.9077491 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,7763.993878 +GA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,164.944 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,24635.39815 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,252.1598879 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.25063555 +GA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,8540.917557 +GA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1511.827556 +GA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,168062.8663 +GA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5534.673085 +GA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,13169.55704 +GA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,117889.5896 +GA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,11186.83115 +GA,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,19057.48506 +GA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,432.9480873 +GA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,23159.46084 +GA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.400765707 +GA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2385.172114 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,606.0808927 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.363325447 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1455.591343 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,36.14852534 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,225.408573 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2417.779637 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1491.157353 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,103.8315627 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1182.004237 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2551.017298 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,210.0060065 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,11.60200938 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,22.87239245 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6010.682091 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6215.459224 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,76.22335236 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.32312771 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,48.66432 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,379.2140165 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1014.268097 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1466.746845 +GA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,25.52 +GA,Nitrogen Oxides,2A1_Cement-production,,TON,1434.8 +GA,Nitrogen Oxides,2A6_Other-minerals,,TON,5978.991 +GA,Nitrogen Oxides,2B_Chemicals-other,,TON,2423.35 +GA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,96.727 +GA,Nitrogen Oxides,2C3_Aluminum-production,,TON,8.046 +GA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.107 +GA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,4.56 +GA,Nitrogen Oxides,2D3d_Coating-application,,TON,10.309 +GA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,10622.564 +GA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +GA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,278.09278 +GA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,89.37 +GA,Nitrogen Oxides,5C_Incineration,,TON,239.7080379 +GA,Nitrogen Oxides,5C_Incineration,biomass,TON,264.8093118 +GA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,3074.79927 +GA,Nitrogen Oxides,5C_Open-burning-residential,,TON,778.143097 +GA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,64.3817099 +GA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,5.376 +GA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.847229826 +GA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,3912.663918 +GA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.264106412 +GA,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,270.2004651 +GA,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,17.75228837 +GA,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.387790662 +GA,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.058138588 +GA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.153525051 +GA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,2.91161 +GA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.58726772 +GA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,11279.64 +GA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.907834 +GA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,154.6020245 +GA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1.235 +GA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0 +GA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,926.3745866 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.093280221 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,729.7258231 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.7531776 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,153.7994123 +GA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,395137.3668 +GA,PM10 Filterable,1A3eii_Other-unspecified-transp,Other_Fuel,TON,11.22871 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.039280209 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,87.68316032 +GA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.696120358 +GA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.372343572 +GA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.19837824 +GA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,49259.8683 +GA,PM10 Filterable,2A6_Other-minerals,,TON,34062.63891 +GA,PM10 Filterable,2B_Chemicals-other,,TON,328.4152507 +GA,PM10 Filterable,2C_Iron-steel-alloy,,TON,14.52894608 +GA,PM10 Filterable,2C3_Aluminum-production,,TON,0.246352572 +GA,PM10 Filterable,2C7_Other-metal,,TON,36.51666466 +GA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,44.67848 +GA,PM10 Filterable,2D3d_Coating-application,,TON,0 +GA,PM10 Filterable,2H1_Pulp-and-paper,,TON,1252.01697 +GA,PM10 Filterable,2H2_Food-and-beverage,,TON,19.81115314 +GA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,908.0798532 +GA,PM10 Filterable,2I_Wood-processing,,TON,15.50187 +GA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,11750.5801 +GA,PM10 Filterable,3Dc_Other-farm,,TON,75755.12904 +GA,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,6.70617 +GA,PM10 Filterable,5C_Incineration,,TON,152.82806 +GA,PM10 Filterable,5C_Incineration,biomass,TON,441.9315 +GA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4279.918181 +GA,PM10 Filterable,5C_Open-burning-residential,,TON,4928.23971 +GA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,239.8793241 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,14 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.293 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,12510.86 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3.404 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,292.492476 +GA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3.25 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,262.7092336 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,46.35666373 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.73533233 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2154.260713 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.313925951 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1144.426499 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,43.65860474 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,336.2447272 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2024.30834 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,81.7097611 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001578725 +GA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,307.0239206 +GA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,395137.3668 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,125.2987295 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5079.330604 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,364.4977927 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,349.1085887 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,7213.013554 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,836.7839322 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1254.813403 +GA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.73013939 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,787.2480323 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.050528614 +GA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,178.5450996 +GA,PM10 Primary (Filt + Cond),1A3eii_Other-unspecified-transp,Other_Fuel,TON,11.22871 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.479854306 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,91.88260179 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,246.7509844 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,88.39588111 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.80521982 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,99.37011786 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,792.5419523 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1869.057753 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.534042851 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.024238173 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,31.71578956 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,553.4901651 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,60.21058828 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006821962 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.25674 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,495.9129625 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.72095069 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,281.6220952 +GA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,49259.8683 +GA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,34833.504 +GA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,440.973 +GA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,26.847 +GA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.903 +GA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,68.50386497 +GA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,114.963 +GA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,36.72 +GA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2537.956 +GA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2497.17481 +GA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,972.7226 +GA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,22.9 +GA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,11750.5801 +GA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,75757.21064 +GA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3756.742 +GA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,6.92 +GA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,168.5188845 +GA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,487.8634512 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,10454.31389 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4928.23971 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,239.8793241 +GA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,2.71001 +GA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.84005663 +GA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4535.19583 +GA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.133834 +GA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,154.4770407 +GA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1.127061 +GA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0 +GA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,747.1486327 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.970755908 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,519.4594178 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.45882296 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,132.5639284 +GA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,45052.73252 +GA,PM2.5 Filterable,1A3eii_Other-unspecified-transp,Other_Fuel,TON,1.13048 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.017632475 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,80.70371227 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.534981292 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.054671241 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.709108588 +GA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4925.98683 +GA,PM2.5 Filterable,2A6_Other-minerals,,TON,7629.70246 +GA,PM2.5 Filterable,2B_Chemicals-other,,TON,230.5646232 +GA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,3.280460634 +GA,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.246352572 +GA,PM2.5 Filterable,2C7_Other-metal,,TON,0 +GA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,23.81520212 +GA,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +GA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,860.588012 +GA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,7.40195003 +GA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,638.3026816 +GA,PM2.5 Filterable,2I_Wood-processing,,TON,7.871974 +GA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1762.60118 +GA,PM2.5 Filterable,3Dc_Other-farm,,TON,14982.11555 +GA,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,3.81997 +GA,PM2.5 Filterable,5C_Incineration,,TON,104.72772 +GA,PM2.5 Filterable,5C_Incineration,biomass,TON,302.40328 +GA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3465.507919 +GA,PM2.5 Filterable,5C_Open-burning-residential,,TON,4513.23003 +GA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,184.9237792 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,12.4584 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.54578957 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5766.42 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.63 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,291.8939527 +GA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3.142061 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,254.8281064 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.76745924 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.734992986 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1842.752657 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.191721046 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,648.0300232 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,32.49813532 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,315.2447122 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1963.579113 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,75.22035988 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001578725 +GA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,183.1691361 +GA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,45052.73252 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,114.2486117 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2896.806876 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,326.7238484 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,195.6630933 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,6469.479518 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,760.0527979 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1103.341252 +GA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.23243042 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,727.4797594 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.046576583 +GA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,167.0612301 +GA,PM2.5 Primary (Filt + Cond),1A3eii_Other-unspecified-transp,Other_Fuel,TON,1.13048 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.966257515 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,84.39510266 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,239.3484079 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,81.55452527 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.80521982 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,96.38896686 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,729.1745337 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1865.737666 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.372904744 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.706565786 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,26.22652057 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,536.8854466 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,55.39381482 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006821962 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.0390445 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,456.2421405 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.09931554 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,259.0922659 +GA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4925.98683 +GA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,8400.567745 +GA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,343.122307 +GA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,15.5985122 +GA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.903 +GA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,32.02944708 +GA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,94.09981212 +GA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,36.72 +GA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2145.937056 +GA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2484.764579 +GA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,702.9454554 +GA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,15.2701 +GA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1762.60118 +GA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,14984.19718 +GA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3756.742 +GA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,4.0338 +GA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,120.6131987 +GA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,348.258527 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,10082.77128 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4513.23003 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,184.9237792 +GA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,43.45 +GA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,11.571 +GA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,517143.38 +GA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,103.18 +GA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,26.121 +GA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.26 +GA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.34 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,90.90699048 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.68900137 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.506956383 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2226.059885 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,317.0586989 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,16980.2023 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3882.536417 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4098.690702 +GA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.47 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,581.518549 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.114319397 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000300368 +GA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1010.753669 +GA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.456111849 +GA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1067.223242 +GA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.714696331 +GA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,68.99777149 +GA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,164.7417422 +GA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,17.09525523 +GA,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,28.53829358 +GA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.621455694 +GA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,234.3581464 +GA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.009158681 +GA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1552.479538 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,264.98 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.047 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9420 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,41 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.459 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,51.09374488 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.805325347 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.31979764 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,25.23319802 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,16.29316503 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,27.7544492 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,27.45808944 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,54.13131655 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,36.59513226 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,135.4058747 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.594248657 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001187507 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.957903 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.676184136 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.91299979 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.522192366 +GA,Sulfur Dioxide,2A1_Cement-production,,TON,656.8 +GA,Sulfur Dioxide,2A6_Other-minerals,,TON,2154.239 +GA,Sulfur Dioxide,2B_Chemicals-other,,TON,1939.688 +GA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.888 +GA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.067 +GA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,85.73 +GA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.124 +GA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1802.93 +GA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +GA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,23.67663 +GA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,37.16 +GA,Sulfur Dioxide,5C_Incineration,,TON,52.64626697 +GA,Sulfur Dioxide,5C_Incineration,biomass,TON,36.01835162 +GA,Sulfur Dioxide,5C_Open-burning-residential,,TON,129.6905284 +GA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,13.91104773 +GA,Volatile Organic Compounds,11C_Other-natural,,TON,1817227.31 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,86.66 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.26 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1464.07 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.531 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,113.41972 +GA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,54.03 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,318.4374124 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1645.464455 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.315697257 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,647.8713954 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.497454877 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,37.13948872 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.53032737 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,756.4233337 +GA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,4.351 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2531.502619 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1080.303488 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.004072903 +GA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1344.321969 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,215.0857022 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,117543.7113 +GA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,291.4158449 +GA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,8468.116157 +GA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,7979.366792 +GA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1602.947702 +GA,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1482.905885 +GA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3383.346518 +GA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1217.278249 +GA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.904883841 +GA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,81.92807721 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,111.1555097 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.08608855 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.790462511 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.405122587 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,103.5172609 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,355.1066784 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,5207.892217 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.22276592 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,139.6799944 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,18953.0105 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2317.17711 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.451189183 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.889481887 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,335.4552507 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,587.1583868 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,673.708636 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.022991726 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.2848 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,16194.36524 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,42.0628721 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,18305.65915 +GA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.6156 +GA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,585.8253622 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1072.898028 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,49520.8657 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,119.5932885 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,29.73 +GA,Volatile Organic Compounds,2A1_Cement-production,,TON,106.2 +GA,Volatile Organic Compounds,2A6_Other-minerals,,TON,41.13251171 +GA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1814.720008 +GA,Volatile Organic Compounds,2B_Chemicals-other,,TON,3425.77961 +GA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,13.892 +GA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1.862 +GA,Volatile Organic Compounds,2C7_Other-metal,,TON,211.825 +GA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,40825.41731 +GA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,50.106 +GA,Volatile Organic Compounds,2D3d_Coating-application,,TON,32768.64562 +GA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4900.003767 +GA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2687.58627 +GA,Volatile Organic Compounds,2D3h_Printing,,TON,19587.57381 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,385.7987505 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,278.6422291 +GA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,14765.209 +GA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4679.463728 +GA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2595.58797 +GA,Volatile Organic Compounds,2I_Wood-processing,,TON,119.67 +GA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,16109.44051 +GA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,3220.065 +GA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,280.44735 +GA,Volatile Organic Compounds,5C_Incineration,,TON,195.611216 +GA,Volatile Organic Compounds,5C_Incineration,biomass,TON,229.8916799 +GA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,7133.53282 +GA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1110.150577 +GA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,270.173228 +GA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,198.8632833 +GA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,585.98 +GA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,12.11369 +HI,Ammonia,1A1a_Public-Electricity,biomass,TON,297.0645074 +HI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,57.78725078 +HI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,6.172653 +HI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,183.986964 +HI,Ammonia,1A1a_Public-Electricity,light_oil,TON,2.28015 +HI,Ammonia,1A1b_Pet-refining,natural_gas,TON,18.59166986 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.221204437 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.009014095 +HI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.000264242 +HI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.507952932 +HI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.382292471 +HI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,1.880889785 +HI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.95805112 +HI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.942594491 +HI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.057487284 +HI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.494104281 +HI,Ammonia,1A3bii_Road-LDV,light_oil,TON,447.8623252 +HI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.216282951 +HI,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,15.4448422 +HI,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,4.36197232 +HI,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,3.882960407 +HI,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.365245001 +HI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.80079495 +HI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.010701769 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.519331992 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.11076682 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.005154946 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.712025365 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.256807635 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.537023937 +HI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.125658118 +HI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.438584753 +HI,Ammonia,1A4bi_Residential-stationary,biomass,TON,26.42308675 +HI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.005223349 +HI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.00519889 +HI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,24.49354112 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.128866568 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.003603139 +HI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00518374 +HI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.06955416 +HI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.089897348 +HI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.6078428 +HI,Ammonia,3B1a_Cattle-dairy,,TON,2019.911975 +HI,Ammonia,3B1b_Cattle-non-dairy,,TON,802.871511 +HI,Ammonia,3B2_Manure-sheep,,TON,28.09543996 +HI,Ammonia,3B3_Manure-swine,,TON,139.020733 +HI,Ammonia,3B4_Manure-other,,TON,240.5548715 +HI,Ammonia,3B4_Manure-poultry,,TON,57.1760515 +HI,Ammonia,3B4d_Manure-goats,,TON,2.87500586 +HI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,3804.100106 +HI,Ammonia,3F_Ag-res-on-field,,TON,147.662152 +HI,Ammonia,5D1_Wastewater-domestic,Other_Fuel,TON,4.345875003 +HI,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.0065 +HI,Ammonia,6A_Other-commertial,Other_Fuel,TON,375.962509 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,27218.83274 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12242.73453 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,636.7578184 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,238912.5362 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4725.483693 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.239259 +HI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,50776.73008 +HI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4882780.693 +HI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,13990.1086 +HI,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,220913.548 +HI,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,369991.981 +HI,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,122561.6519 +HI,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,83810.2441 +HI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,41070.6462 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,31531.026 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,44108.11145 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2005.134826 +HI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,15442.46024 +HI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,105386.5656 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15843.14881 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,269.597187 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.815518 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,633.635 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5236.58484 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11070.89325 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,40773.962 +HI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,5173.436277 +HI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1162.525236 +HI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,752.216 +HI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,959.9448 +HI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,24.9256 +HI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,0.021461555 +HI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,438.0948952 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1749.688703 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1216.87382 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,77.16800335 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.415378296 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,64.08770484 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,59.25864091 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,11.94882362 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,35.3873579 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1142.391406 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1278.552442 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.1068493 +HI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3778.265326 +HI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,222.7749869 +HI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,122594.0052 +HI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,52.9642262 +HI,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7524.31189 +HI,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,806.315475 +HI,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,611.9396297 +HI,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,189.890885 +HI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2337.97761 +HI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,0.176087545 +HI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,881.1511934 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,58.89129086 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.765694247 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.035631215 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,134.9701472 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,190.7683818 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12706.10296 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,50.7093607 +HI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,73.57205453 +HI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,33221.93948 +HI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,3179.048956 +HI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.026116742 +HI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.02599215 +HI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,79.34451211 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,87.74895338 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,73.6077373 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.19972 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.27371 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,1630.543614 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.2854071 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5921.125 +HI,Carbon Monoxide,2H2_Food-and-beverage,,TON,269.1626173 +HI,Carbon Monoxide,3F_Ag-res-on-field,,TON,7377.454 +HI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.016040602 +HI,Carbon Monoxide,5C_Open-burning-residential,,TON,316.035732 +HI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,41.9488955 +HI,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.47105687 +HI,Methane,1A3bii_Road-LDV,light_oil,TON,353.18038 +HI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.093853166 +HI,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,22.19308285 +HI,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,15.81511321 +HI,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.194497332 +HI,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.548409861 +HI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.50557583 +HI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1426.205736 +HI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,5457.82025 +HI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1236.068 +HI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,10426.04 +HI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,51.4492 +HI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,0.1275429 +HI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1324.030193 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,416.323504 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,174.2996984 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.939793 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3.425444799 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,243.2750552 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,591.3476531 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,38.65585707 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,91.76293744 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2201.733143 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,23.84903959 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.02278503 +HI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2618.902144 +HI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,333.2283125 +HI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,14461.67011 +HI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,134.073274 +HI,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,768.50431 +HI,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,2688.31239 +HI,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,878.5158155 +HI,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,555.749611 +HI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,69.9184378 +HI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1.788389475 +HI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6614.700508 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,173.03303 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.186796948 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.104701601 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,122.8375991 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,324.597161 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,208.8124173 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.0339444 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,157.3723223 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,378.1614987 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,50.11160189 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.094020298 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.093579252 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,150.627873 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,170.6608934 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.699024706 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.04444755 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.9961 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,19.737017 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,132.2858407 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,252.78852 +HI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +HI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,405.54522 +HI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,3.412892975 +HI,Nitrogen Oxides,5C_Open-burning-residential,,TON,22.3084282 +HI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.86439758 +HI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.193840474 +HI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,299.8860807 +HI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.037030133 +HI,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,16.86537952 +HI,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.457536783 +HI,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.514867789 +HI,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.167606217 +HI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.595315497 +HI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,140.032963 +HI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,171.0461694 +HI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,150.492 +HI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1586.608 +HI,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,1.35385 +HI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.004022508 +HI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,114.9809854 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.235956906 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.12222196 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,189.9084927 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.077816929 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.261865106 +HI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,10021.40305 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.303095572 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.510848429 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.005626862 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.268437017 +HI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.00564121 +HI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.005612493 +HI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.558332746 +HI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21858.44487 +HI,PM10 Filterable,2A6_Other-minerals,,TON,1078.119364 +HI,PM10 Filterable,2H2_Food-and-beverage,,TON,0.969455296 +HI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,212.4706 +HI,PM10 Filterable,3Dc_Other-farm,,TON,0 +HI,PM10 Filterable,5C_Incineration,biomass,TON,3.564904 +HI,PM10 Filterable,5C_Open-burning-residential,,TON,141.286645 +HI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,6.94654414 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,155.2377522 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,367.7800622 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,221.702 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2091.323 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,3.71522 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.007480884 +HI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,169.868327 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.20139136 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.570980425 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.173859305 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.378338919 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,23.63850117 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,205.4745457 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.955573015 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4.593987413 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,180.4675422 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.308645032 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +HI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,132.7352952 +HI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10021.40305 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,43.62284586 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,489.6390905 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,18.36712881 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,23.31858684 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,313.0299637 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,114.7874333 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,71.99734575 +HI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.314683902 +HI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,0.044021898 +HI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,420.7407572 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,31.20841794 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.55626734 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.018883799 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.63355333 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,33.0613533 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.86493863 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.250736905 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,13.19666429 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,105.7344471 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,458.0709972 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.012431565 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.012373358 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.458593174 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.06845804 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.041399171 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000229505 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.044456 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.674078836 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.65763329 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,36.725428 +HI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21858.44487 +HI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1081.590392 +HI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,705.7493213 +HI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,287.3759 +HI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,645.422407 +HI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1567.19642 +HI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.789813627 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,141.286645 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.94654414 +HI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,67.07077519 +HI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,158.8534296 +HI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,82.8546 +HI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1259.321 +HI,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,1.26924 +HI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.004022508 +HI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,79.84271939 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.127686595 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.176658438 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,124.1197814 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.010038494 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.222670874 +HI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,624.400979 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.149595523 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.561106561 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.004324197 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.268437017 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.004335376 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.004313154 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.558332746 +HI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2185.844487 +HI,PM2.5 Filterable,2A6_Other-minerals,,TON,153.5062118 +HI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.899862874 +HI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,176.3059 +HI,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +HI,PM2.5 Filterable,5C_Incineration,biomass,TON,3.564904 +HI,PM2.5 Filterable,5C_Open-burning-residential,,TON,129.388643 +HI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.35511251 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,82.27545642 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,356.0278247 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,154.0695 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1764.736 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,3.63061 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.007480884 +HI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,134.730161 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.42467809 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.510169099 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.170117542 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.27034274 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,17.71483718 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,139.6011474 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.891918085 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4.562483185 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,175.0537137 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.728192668 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +HI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,83.83995832 +HI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,624.400979 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,40.76598521 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,281.5298722 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,17.02451475 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,13.36201073 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,289.4021762 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,107.588566 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,65.90296698 +HI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.522305381 +HI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,383.7298461 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,28.99107509 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.152257724 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017542136 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.15140708 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32.0695002 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.94666237 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.250736905 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.80076108 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,97.28039591 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,457.5120395 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.011125724 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.011073628 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.458593174 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.58639909 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.038087242 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000229505 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.013124 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.620411236 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.57789875 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,33.7873705 +HI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2185.844487 +HI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,156.9772352 +HI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,654.8634701 +HI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,251.2111 +HI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,129.084431 +HI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1440.56038 +HI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.789813627 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,129.388643 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.35511251 +HI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,163.0721731 +HI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,903.4672086 +HI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,2135.12 +HI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,20229.64 +HI,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,13.8293 +HI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.000570264 +HI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1461.397612 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.38893999 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.439677148 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.098749666 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1.303614111 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,341.9327934 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3182.853224 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.483614474 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.392583297 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,45.68090181 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.118281238 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +HI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,268.5233461 +HI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,12.12866605 +HI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,95.3191123 +HI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.34437938 +HI,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4.31011221 +HI,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,87.5520292 +HI,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,29.30890363 +HI,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,19.8151186 +HI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.801799151 +HI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2543.044323 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,366.9551676 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,35.16712943 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.222039487 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.66556317 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.02860972 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.110760095 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.044329421 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.952601832 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.714600177 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,6.841155276 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.222514678 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.222075894 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,0.473533476 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.029240369 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.006960637 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.99298E-05 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.121136 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.134960821 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.171133592 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.0488592 +HI,Sulfur Dioxide,2B_Chemicals-other,,TON,331.998 +HI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +HI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,178.054295 +HI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.525585886 +HI,Sulfur Dioxide,5C_Open-burning-residential,,TON,3.71806803 +HI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.40284337 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,182.8205814 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,168.8977618 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,23.113992 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,143.650264 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.134467 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.003348003 +HI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,196.5823012 +HI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1133.486672 +HI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,152.5958453 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,78.33113434 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,54.75701881 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.082024562 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.022942935 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.937276167 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.315434456 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.126567839 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3.305522157 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,226.3175819 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,97.42538196 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +HI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,634.7457625 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,41.25633848 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,9656.876352 +HI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,7.68620478 +HI,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,503.1282442 +HI,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,197.8588433 +HI,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,113.6120684 +HI,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,44.9243507 +HI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,784.3074509 +HI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,0.066032812 +HI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,188.4345543 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.007879215 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.25961166 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003636868 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.00383847 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47.6769073 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,730.339947 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.165002309 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,18.59588573 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2668.61253 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,593.7148614 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.003724243 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.003709314 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,9.118276447 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.91908714 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.927050038 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000772615 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.9146 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,72.3649408 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.48566634 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2597.00137 +HI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,103.8768561 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,112.1702045 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,5060.641924 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,396.3822861 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,328.704578 +HI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,58.7171524 +HI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4142.996727 +HI,Volatile Organic Compounds,2D3d_Coating-application,,TON,6331.929598 +HI,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,604.3884082 +HI,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,846.178388 +HI,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,845.337761 +HI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +HI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +HI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,331.9102947 +HI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,206.2881937 +HI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,535.25363 +HI,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,94.8298289 +HI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.01194513 +HI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,31.8266295 +HI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,7.8238052 +HI,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,228.8657022 +HI,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,22.2323 +IA,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +IA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,5.2976 +IA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,6.977295 +IA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.12 +IA,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +IA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,18.8416 +IA,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +IA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.468496254 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.165507264 +IA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.010048238 +IA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.04260632 +IA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,130.4246619 +IA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.683280151 +IA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +IA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,69.98077635 +IA,Ammonia,1A2c_Chemicals,heavy_oil,TON,0 +IA,Ammonia,1A2c_Chemicals,natural_gas,TON,8.56 +IA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,6.964105918 +IA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.206009359 +IA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.686851849 +IA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1332.036434 +IA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.084465613 +IA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,42.44113415 +IA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,51.4413464 +IA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,9.098868881 +IA,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,13.87810615 +IA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.460591611 +IA,Ammonia,1A3c_Rail,diesel_oil,TON,11.84997218 +IA,Ammonia,1A3c_Rail,light_oil,TON,0.003969224 +IA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.34994553 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.111184064 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.040430569 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,30.21174253 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.272906339 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.984880496 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.702740035 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.469712051 +IA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.158781146 +IA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.516221901 +IA,Ammonia,1A4bi_Residential-stationary,biomass,TON,216.0997965 +IA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,5.06281646 +IA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,24.283984 +IA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.308559615 +IA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,622.4726112 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28.31006193 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.775305097 +IA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01238472 +IA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.844538873 +IA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.292814792 +IA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.022736082 +IA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +IA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,Ammonia,2A1_Cement-production,,TON,33.75 +IA,Ammonia,2A2_Lime-production,,TON,0 +IA,Ammonia,2A6_Other-minerals,,TON,1901.825 +IA,Ammonia,2B_Chemicals-other,,TON,0 +IA,Ammonia,2C_Iron-steel-alloy,,TON,7.8751 +IA,Ammonia,2C3_Aluminum-production,,TON,1.83 +IA,Ammonia,2C6_Zinc-production,,TON,0 +IA,Ammonia,2C7_Other-metal,,TON,0 +IA,Ammonia,2C7a_Copper-production,,TON,0 +IA,Ammonia,2D3d_Coating-application,,TON,0.165 +IA,Ammonia,2D3e_Degreasing,,TON,0 +IA,Ammonia,2D3f_Dry-cleaning,,TON,0 +IA,Ammonia,2D3h_Printing,,TON,0.03 +IA,Ammonia,2D3i_Other-solvent-use,biomass,TON,0 +IA,Ammonia,2H1_Pulp-and-paper,,TON,0 +IA,Ammonia,2H2_Ethanol Production,,TON,4.335 +IA,Ammonia,2H2_Food-and-beverage,,TON,4.781952 +IA,Ammonia,2H3_Other-industrial-processes,,TON,0 +IA,Ammonia,2I_Wood-processing,,TON,0 +IA,Ammonia,3B1a_Cattle-dairy,,TON,16404.779 +IA,Ammonia,3B1b_Cattle-non-dairy,,TON,36334.66191 +IA,Ammonia,3B2_Manure-sheep,,TON,730.71504 +IA,Ammonia,3B3_Manure-swine,,TON,119501.3066 +IA,Ammonia,3B4_Manure-other,,TON,967.4148 +IA,Ammonia,3B4_Manure-poultry,,TON,31757.86296 +IA,Ammonia,3B4d_Manure-goats,,TON,390.529392 +IA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,89461.35637 +IA,Ammonia,3Dc_Other-farm,,TON,0 +IA,Ammonia,5A_Solid-waste-disposal,,TON,0 +IA,Ammonia,5C_Incineration,,TON,0 +IA,Ammonia,5C_Incineration,biomass,TON,0 +IA,Ammonia,5C_Open-burning-dump,,TON,0 +IA,Ammonia,5C_Open-burning-industrial,,TON,0 +IA,Ammonia,5D1_Wastewater-domestic,,TON,46.7153426 +IA,Ammonia,5D2_Wastewater-industrial,biomass,TON,0 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,180708.7849 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,227893.2081 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11836.96024 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,856490.0292 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,16939.03304 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.717775411 +IA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,110016.3199 +IA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,11823410.71 +IA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,124536.0608 +IA,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,656788.788 +IA,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3763974.964 +IA,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,252383.406 +IA,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,697292.4278 +IA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,70762.43699 +IA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6246.20767 +IA,Carbon Dioxide,1A3c_Rail,light_oil,TON,306.3800924 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86283.04957 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,120708.0923 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5239.499353 +IA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,19513.24868 +IA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,183465.0862 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3480513.464 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,58024.22948 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,398.7171198 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1513.8729 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,186836.0286 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,36060.27082 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,425689.537 +IA,Carbon Monoxide,11C_Other-natural,,TON,69349.824 +IA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,4.6 +IA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,67.9657 +IA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,25703.2304 +IA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,971.444 +IA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0 +IA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,353.9079 +IA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1.74 +IA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.2 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1011.357073 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15488.61831 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,940.3134114 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,106.2853072 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,91.93841441 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,11781.23868 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.55689892 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.522523318 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3924.320315 +IA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +IA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,373.752 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4094.700609 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4339.566686 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.320547713 +IA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2695.224274 +IA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,405.7139605 +IA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,395724.4397 +IA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,484.3317819 +IA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,30376.2949 +IA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7195.585182 +IA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1071.095022 +IA,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1608.72707 +IA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4218.393615 +IA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3836.73934 +IA,Carbon Monoxide,1A3c_Rail,light_oil,TON,84.23779713 +IA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,151.580628 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.566683183 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.640064988 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1124.033093 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.687974784 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,194.0199658 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,522.0062295 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,32503.99871 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,136.2933505 +IA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,92.71167391 +IA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,57226.28793 +IA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,27991.57188 +IA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,25.3140772 +IA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,3339.048051 +IA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.542797758 +IA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1566.698826 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19260.13902 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,15448.75113 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,43.86914691 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.355197 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,30538.67256 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,72.58926608 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,49243.7429 +IA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +IA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,62.5314 +IA,Carbon Monoxide,2A1_Cement-production,,TON,1309.33 +IA,Carbon Monoxide,2A2_Lime-production,,TON,0 +IA,Carbon Monoxide,2A6_Other-minerals,,TON,480.7408 +IA,Carbon Monoxide,2B_Chemicals-other,,TON,402.51 +IA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2603.65 +IA,Carbon Monoxide,2C3_Aluminum-production,,TON,29.42 +IA,Carbon Monoxide,2C5_Lead-production,,TON,0 +IA,Carbon Monoxide,2C6_Zinc-production,,TON,0 +IA,Carbon Monoxide,2C7_Other-metal,,TON,0 +IA,Carbon Monoxide,2C7a_Copper-production,,TON,0.55 +IA,Carbon Monoxide,2D3d_Coating-application,,TON,7.25 +IA,Carbon Monoxide,2D3e_Degreasing,,TON,0 +IA,Carbon Monoxide,2D3f_Dry-cleaning,,TON,0 +IA,Carbon Monoxide,2D3h_Printing,,TON,1.43 +IA,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,0 +IA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +IA,Carbon Monoxide,2H2_Ethanol Production,,TON,238.8098 +IA,Carbon Monoxide,2H2_Food-and-beverage,,TON,2848.899205 +IA,Carbon Monoxide,2H3_Other-industrial-processes,,TON,10.667 +IA,Carbon Monoxide,2I_Wood-processing,,TON,0 +IA,Carbon Monoxide,3Dc_Other-farm,,TON,2.51 +IA,Carbon Monoxide,3F_Ag-res-on-field,,TON,9709.7 +IA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,316.0659 +IA,Carbon Monoxide,5C_Incineration,,TON,0.460421029 +IA,Carbon Monoxide,5C_Incineration,biomass,TON,52.36366361 +IA,Carbon Monoxide,5C_Open-burning-dump,,TON,0 +IA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0 +IA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4696.42994 +IA,Carbon Monoxide,5C_Open-burning-residential,,TON,4362.828 +IA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,301.672546 +IA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.52 +IA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0 +IA,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.885661782 +IA,Methane,1A3bii_Road-LDV,light_oil,TON,1715.566861 +IA,Methane,1A3biii_Road-bus,diesel_oil,TON,1.46214273 +IA,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,129.3941975 +IA,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,98.18988466 +IA,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,4.314620045 +IA,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10.62108494 +IA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.47387069 +IA,Nitrogen Oxides,11C_Other-natural,,TON,35619.797 +IA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.81 +IA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,204.9615 +IA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,50751.686 +IA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1.66 +IA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0 +IA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,344.8298 +IA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.52 +IA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.24 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1507.75189 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2471.943486 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,164.8971288 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,167.4594235 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,307.5676968 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,7952.473625 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,54.16156756 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.32150242 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,16595.27422 +IA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0 +IA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,374.63 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,7893.690492 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,102.1937985 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.068355158 +IA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,280.6683499 +IA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,652.7249822 +IA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,45419.33048 +IA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1297.628579 +IA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3111.905004 +IA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,30411.90865 +IA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1633.836536 +IA,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5163.875828 +IA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,207.2686974 +IA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,26379.38417 +IA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.633017685 +IA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,786.74376 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,3.66031544 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.53036416 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,833.2756019 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,18.78078284 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,185.0284357 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,888.2253834 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,711.2366947 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,37.96588217 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,199.0919696 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,773.0186637 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,403.1599136 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,91.13065305 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,110.418186 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,5.554072645 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4069.71737 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37474.51015 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,424.9353363 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.7719118 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.728627 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,349.6499299 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,430.8647673 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3601.467802 +IA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +IA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,27.59826 +IA,Nitrogen Oxides,2A1_Cement-production,,TON,4583.02 +IA,Nitrogen Oxides,2A2_Lime-production,,TON,0 +IA,Nitrogen Oxides,2A6_Other-minerals,,TON,2005.0858 +IA,Nitrogen Oxides,2B_Chemicals-other,,TON,673.535 +IA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,691.197 +IA,Nitrogen Oxides,2C3_Aluminum-production,,TON,32.15 +IA,Nitrogen Oxides,2C5_Lead-production,,TON,0 +IA,Nitrogen Oxides,2C6_Zinc-production,,TON,0 +IA,Nitrogen Oxides,2C7_Other-metal,,TON,0 +IA,Nitrogen Oxides,2C7a_Copper-production,,TON,2.78 +IA,Nitrogen Oxides,2D3d_Coating-application,,TON,19.105 +IA,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +IA,Nitrogen Oxides,2D3f_Dry-cleaning,,TON,0 +IA,Nitrogen Oxides,2D3h_Printing,,TON,1.71 +IA,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,0 +IA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,0 +IA,Nitrogen Oxides,2H2_Ethanol Production,,TON,323.6758 +IA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,597.407 +IA,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,12.24015 +IA,Nitrogen Oxides,2I_Wood-processing,,TON,0 +IA,Nitrogen Oxides,3Dc_Other-farm,,TON,2.99 +IA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,475.3 +IA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +IA,Nitrogen Oxides,5C_Incineration,,TON,0.158829928 +IA,Nitrogen Oxides,5C_Incineration,biomass,TON,86.53236002 +IA,Nitrogen Oxides,5C_Open-burning-dump,,TON,0 +IA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0 +IA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,138.947723 +IA,Nitrogen Oxides,5C_Open-burning-residential,,TON,307.96429 +IA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,13.407674 +IA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3 +IA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +IA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.351080363 +IA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,822.7365027 +IA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.262277433 +IA,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,49.68306052 +IA,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.589650311 +IA,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.915307318 +IA,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.212022818 +IA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.840687617 +IA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,5.2737559 +IA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.609694794 +IA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,6177.300998 +IA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,18.1148 +IA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +IA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,10.47388 +IA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +IA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,62.03528762 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.412062557 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,911.8483709 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.70755138 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000585487 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,24.58380718 +IA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0 +IA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,147590.7538 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.881472834 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.026195859 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,35.51708698 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.361353256 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.624321453 +IA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.46784135 +IA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,75.32650498 +IA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.333244326 +IA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.83094264 +IA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.43884 +IA,PM10 Filterable,2A1_Cement-production,,TON,553.4831584 +IA,PM10 Filterable,2A2_Lime-production,,TON,15.14875335 +IA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,25230.31355 +IA,PM10 Filterable,2A6_Other-minerals,,TON,6847.188464 +IA,PM10 Filterable,2B_Chemicals-other,,TON,27.64206082 +IA,PM10 Filterable,2C_Iron-steel-alloy,,TON,212.0554746 +IA,PM10 Filterable,2C3_Aluminum-production,,TON,10.343476 +IA,PM10 Filterable,2C5_Lead-production,,TON,0.232825112 +IA,PM10 Filterable,2C6_Zinc-production,,TON,0 +IA,PM10 Filterable,2C7_Other-metal,,TON,13.93570833 +IA,PM10 Filterable,2C7a_Copper-production,,TON,1.42913 +IA,PM10 Filterable,2D3d_Coating-application,,TON,22.9321464 +IA,PM10 Filterable,2D3e_Degreasing,,TON,0 +IA,PM10 Filterable,2D3f_Dry-cleaning,,TON,0 +IA,PM10 Filterable,2D3h_Printing,,TON,0 +IA,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Filterable,2H1_Pulp-and-paper,,TON,11.6726574 +IA,PM10 Filterable,2H2_Ethanol Production,,TON,2.1306 +IA,PM10 Filterable,2H2_Food-and-beverage,,TON,1122.637818 +IA,PM10 Filterable,2H3_Other-industrial-processes,,TON,126.3089381 +IA,PM10 Filterable,2I_Wood-processing,,TON,6.314085 +IA,PM10 Filterable,3Dc_Other-farm,,TON,335047.7763 +IA,PM10 Filterable,5A_Solid-waste-disposal,,TON,0 +IA,PM10 Filterable,5C_Incineration,,TON,0.199804 +IA,PM10 Filterable,5C_Incineration,biomass,TON,0.18164 +IA,PM10 Filterable,5C_Open-burning-dump,,TON,0 +IA,PM10 Filterable,5C_Open-burning-industrial,,TON,0 +IA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,472.421851 +IA,PM10 Filterable,5C_Open-burning-residential,,TON,1950.44062 +IA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,49.9555481 +IA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,9.5826 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,18.015906 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8456.557672 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,19.908 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,79.2127 +IA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,20.7 +IA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.08 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,117.1940609 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22.46412426 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.438455291 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,76.58355157 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.273805432 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1236.795384 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,16.25349457 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000594814 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,351.6124859 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,21.17 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,648.6494 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.18561002 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430561 +IA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,61.03571407 +IA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,147590.7538 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,51.39639364 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1714.928161 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,66.99421533 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,101.236113 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1413.746403 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,117.3962225 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,282.6350242 +IA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.58741887 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,882.016694 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041318981 +IA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.995664 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.927457461 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.775308737 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,86.40538184 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.398411839 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.86579682 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,90.6530551 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.47305635 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.653340323 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,16.66227288 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,167.6268366 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4124.264031 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,12.04950161 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,75.82469698 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.73437174 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,20.3604504 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3534.50623 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.26079569 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.050376238 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.4942552 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,308.6931183 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.802668477 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,219.8602958 +IA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.83084 +IA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,612.5808 +IA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,107.5308074 +IA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,25230.31355 +IA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7801.769865 +IA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,127.3475 +IA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,656.3859002 +IA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,136.441 +IA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.85729 +IA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +IA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,86.95646 +IA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,93.452 +IA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,107.0927 +IA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,14.65 +IA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.12 +IA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,104.58874 +IA,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,71.2969 +IA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2564.020064 +IA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,230.88476 +IA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,11.5 +IA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,335096.0334 +IA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1561.7 +IA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,141.469 +IA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.229935615 +IA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,15.44435717 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,472.421851 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1950.44062 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,49.9555481 +IA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.28 +IA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0 +IA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.201855899 +IA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.216133238 +IA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3631.332129 +IA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.30884 +IA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +IA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.0152 +IA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +IA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,27.96496935 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.268755553 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,234.8338973 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.971151722 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,20.53125861 +IA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0 +IA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,17353.73449 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.926119531 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.016301005 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.624473085 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.39026993 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.67112983 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.202137935 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,46.19092517 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.256104511 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.30701743 +IA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM2.5 Filterable,2A1_Cement-production,,TON,317.9688231 +IA,PM2.5 Filterable,2A2_Lime-production,,TON,12.3191524 +IA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2523.031355 +IA,PM2.5 Filterable,2A6_Other-minerals,,TON,1188.662945 +IA,PM2.5 Filterable,2B_Chemicals-other,,TON,11.85360824 +IA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,66.02868264 +IA,PM2.5 Filterable,2C3_Aluminum-production,,TON,3.26173954 +IA,PM2.5 Filterable,2C5_Lead-production,,TON,0.232825112 +IA,PM2.5 Filterable,2C6_Zinc-production,,TON,0 +IA,PM2.5 Filterable,2C7_Other-metal,,TON,7.413397369 +IA,PM2.5 Filterable,2C7a_Copper-production,,TON,1.42913 +IA,PM2.5 Filterable,2D3d_Coating-application,,TON,8.1397464 +IA,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +IA,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0 +IA,PM2.5 Filterable,2D3h_Printing,,TON,0 +IA,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1.53982412 +IA,PM2.5 Filterable,2H2_Ethanol Production,,TON,0 +IA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,197.4280576 +IA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,52.04132844 +IA,PM2.5 Filterable,2I_Wood-processing,,TON,0.373242 +IA,PM2.5 Filterable,3Dc_Other-farm,,TON,67004.75964 +IA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +IA,PM2.5 Filterable,5C_Incineration,,TON,0.199804 +IA,PM2.5 Filterable,5C_Incineration,biomass,TON,0.05964 +IA,PM2.5 Filterable,5C_Open-burning-dump,,TON,0 +IA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +IA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,364.1901882 +IA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1786.19243 +IA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,38.5108989 +IA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,9.5107 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,12.4114036 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5913.108983 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3.102 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,68.75402 +IA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,20.67 +IA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.08 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,113.6689787 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22.31099789 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.437950949 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,42.45598052 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.216811062 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,555.5080942 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.54627802 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,351.7750723 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,21.17 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,629.1898065 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.10600354 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430561 +IA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,14.28638909 +IA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,17353.73449 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,47.70023735 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1325.361295 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,61.55555366 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,78.62189085 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1302.908425 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,108.6747738 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,255.7674431 +IA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.22005821 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,814.878075 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038087104 +IA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.155904 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.958982591 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.775157065 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,57.46054332 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.417650723 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.977863 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,87.93346458 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,29.95981637 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.653340323 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,16.16241493 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,154.2226509 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4121.167234 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,10.7837982 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,46.68909706 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.657232135 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.8365245 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3428.471227 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.36051426 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.050376238 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.4194318 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,283.9983384 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.538589746 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,202.2715694 +IA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,379.7369 +IA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,104.7012034 +IA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2523.031355 +IA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2143.854434 +IA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,111.5590538 +IA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,512.5968025 +IA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,129.389268 +IA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.85729 +IA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,80.4341486 +IA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,93.512 +IA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,85.1783 +IA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,14.65 +IA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.06 +IA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,94.4559061 +IA,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,56.0254 +IA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1641.819948 +IA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,159.4671502 +IA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.559155 +IA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,67053.01667 +IA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1561.7 +IA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,45.406 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.230017103 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,15.32227568 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,364.1901882 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1786.19243 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,38.5108989 +IA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.24 +IA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,15.10502 +IA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,117323.9 +IA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.05 +IA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,54.3731 +IA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0 +IA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,40.08695146 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.734304284 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.2736781 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,74.62183317 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.71991364 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,30816.90096 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,102.6496629 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.050489109 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21.31534605 +IA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,149.48 +IA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.94 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,186.3339609 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.483457528 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.19185E-05 +IA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,38.62008569 +IA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.211972027 +IA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,600.21574 +IA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.375491643 +IA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,33.33296432 +IA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,41.24354235 +IA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.781268956 +IA,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,7.638280862 +IA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.593260324 +IA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,267.651579 +IA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.009027918 +IA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,46.499713 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.590158522 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.802119118 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4125.8959 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,95.23270055 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.531343425 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.77061065 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.474373371 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.115829264 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4.245137206 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.456226617 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,87.93343137 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,215.6759485 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1745.180348 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,13.1446381 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,23.4928298 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,757.1979757 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.728954349 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008769178 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.32930482 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.544370103 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.884024077 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,12.6671739 +IA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +IA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,Sulfur Dioxide,2A1_Cement-production,,TON,4922.72 +IA,Sulfur Dioxide,2A2_Lime-production,,TON,0 +IA,Sulfur Dioxide,2A6_Other-minerals,,TON,620.03 +IA,Sulfur Dioxide,2B_Chemicals-other,,TON,171.2211816 +IA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,490.32303 +IA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.4 +IA,Sulfur Dioxide,2C5_Lead-production,,TON,0 +IA,Sulfur Dioxide,2C6_Zinc-production,,TON,0 +IA,Sulfur Dioxide,2C7_Other-metal,,TON,0 +IA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.08 +IA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.06 +IA,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +IA,Sulfur Dioxide,2D3f_Dry-cleaning,,TON,0 +IA,Sulfur Dioxide,2D3h_Printing,,TON,0.01 +IA,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0 +IA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0 +IA,Sulfur Dioxide,2H2_Ethanol Production,,TON,166.4309 +IA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1340.556377 +IA,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0.13 +IA,Sulfur Dioxide,2I_Wood-processing,,TON,0 +IA,Sulfur Dioxide,3Dc_Other-farm,,TON,13.37 +IA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,54.32 +IA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +IA,Sulfur Dioxide,5C_Incineration,,TON,0.247595542 +IA,Sulfur Dioxide,5C_Incineration,biomass,TON,2.823682723 +IA,Sulfur Dioxide,5C_Open-burning-dump,,TON,0 +IA,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0 +IA,Sulfur Dioxide,5C_Open-burning-residential,,TON,51.327386 +IA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.89701369 +IA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.01 +IA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0 +IA,Volatile Organic Compounds,11C_Other-natural,,TON,304415.81 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.02 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.596426 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,659.194775 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.24 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,17.5517 +IA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,23.327702 +IA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.07 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,145.6004919 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,768.048078 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.897403969 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,30.03920167 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.6084587 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,93.31663386 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.879781183 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.033269143 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1063.56851 +IA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +IA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,340.81 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,811.1713928 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,327.9890187 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001110792 +IA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,120.8618337 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,101.4032755 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,34398.30352 +IA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,73.44736869 +IA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1851.162976 +IA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1643.205266 +IA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,259.0194129 +IA,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,370.1934063 +IA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,727.203049 +IA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1361.600405 +IA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.502699454 +IA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,17.0380638 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.081700304 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.798236111 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,27.40620362 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.020425076 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.03395057 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,130.4614654 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1763.249174 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.447360951 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,23.42546939 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4554.485984 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5142.251809 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,3.543972085 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,121.41971 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.215991654 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,215.350927 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3714.095679 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,730.2572991 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.169803322 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.5658392 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11205.47015 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.86913188 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,13104.98572 +IA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,269.4554079 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1417.526965 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,13184.32802 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3797.986151 +IA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.98 +IA,Volatile Organic Compounds,2A1_Cement-production,,TON,182.48 +IA,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +IA,Volatile Organic Compounds,2A6_Other-minerals,,TON,287.78745 +IA,Volatile Organic Compounds,2B_Chemicals-other,,TON,2325.697771 +IA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,534.63859 +IA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,190.515 +IA,Volatile Organic Compounds,2C5_Lead-production,,TON,4.73 +IA,Volatile Organic Compounds,2C6_Zinc-production,,TON,3.56 +IA,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +IA,Volatile Organic Compounds,2C7a_Copper-production,,TON,101.87 +IA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12655.76923 +IA,Volatile Organic Compounds,2D3d_Coating-application,,TON,9423.30636 +IA,Volatile Organic Compounds,2D3e_Degreasing,,TON,55.452 +IA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,82.3523375 +IA,Volatile Organic Compounds,2D3h_Printing,,TON,153.506 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1529.731231 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,445.261062 +IA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,0 +IA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,195.0664 +IA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,8320.33763 +IA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1684.6039 +IA,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +IA,Volatile Organic Compounds,3Dc_Other-farm,,TON,70.24 +IA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,25049.8329 +IA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,950.6 +IA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,68.78102 +IA,Volatile Organic Compounds,5C_Incineration,,TON,0.144978795 +IA,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.90248523 +IA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0 +IA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0 +IA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,322.3585289 +IA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,439.36248 +IA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,56.2643283 +IA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,62.6917823 +IA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +IA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.1 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.465596794 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.045470697 +ID,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,38.759947 +ID,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,28.9398597 +ID,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.256870032 +ID,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.09638697 +ID,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.542868569 +ID,Ammonia,1A3bii_Road-LDV,light_oil,TON,624.1276545 +ID,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.095335554 +ID,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,24.47739689 +ID,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,0.372184496 +ID,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,6.582692626 +ID,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.963153101 +ID,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.463682287 +ID,Ammonia,1A3c_Rail,diesel_oil,TON,4.647701769 +ID,Ammonia,1A3c_Rail,light_oil,TON,0.00188256 +ID,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.002265078 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.001343803 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.0571423 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.159035316 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.944742 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.277752817 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.580777284 +ID,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.111653158 +ID,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.449642188 +ID,Ammonia,1A4bi_Residential-stationary,biomass,TON,121.0651743 +ID,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,5.2081654 +ID,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.99399695 +ID,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.062737933 +ID,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,455.5111119 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.346093703 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.180461034 +ID,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005621966 +ID,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.801132096 +ID,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.183240199 +ID,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.239721814 +ID,Ammonia,2A1_Cement-production,,TON,7.062 +ID,Ammonia,2B_Chemicals-other,,TON,187.2865 +ID,Ammonia,2C7_Other-metal,Other_Fuel,TON,6.04546 +ID,Ammonia,2D3d_Coating-application,,TON,18.2781223 +ID,Ammonia,2D3h_Printing,,TON,7.030757 +ID,Ammonia,2H1_Pulp-and-paper,,TON,90.68 +ID,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,2027.491255 +ID,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.405512988 +ID,Ammonia,3B1a_Cattle-dairy,,TON,31035.89378 +ID,Ammonia,3B1b_Cattle-non-dairy,,TON,39240.676 +ID,Ammonia,3B2_Manure-sheep,,TON,508.484 +ID,Ammonia,3B3_Manure-swine,,TON,393.00784 +ID,Ammonia,3B4_Manure-other,,TON,995.69712 +ID,Ammonia,3B4_Manure-poultry,,TON,4613.0224 +ID,Ammonia,3B4d_Manure-goats,,TON,16.58349 +ID,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,25721.44376 +ID,Ammonia,3F_Ag-res-on-field,,TON,46.999 +ID,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,2.49689E-05 +ID,Ammonia,5C_Open-burning-residential,,TON,342.28085 +ID,Ammonia,5C_Open-burning-yard-waste,,TON,72.630039 +ID,Ammonia,5D1_Wastewater-domestic,,TON,4.5707027 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,58252.35459 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,61008.71434 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3258.501924 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,403524.2565 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,7984.355304 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.496918525 +ID,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,90616.66355 +ID,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,7473392.704 +ID,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,6627.4135 +ID,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,643448.1252 +ID,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,34755.25987 +ID,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,222803.6641 +ID,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,70302.44197 +ID,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24354.10479 +ID,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2996.59941 +ID,Carbon Dioxide,1A3c_Rail,light_oil,TON,146.8201864 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34521.99449 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,48288.18764 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2123.480312 +ID,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13793.17248 +ID,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,106836.3051 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,694696.0662 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13912.29039 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,75.48327779 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,704.22736 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,186659.8235 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23397.50785 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,86223.5402 +ID,Carbon Monoxide,11C_Other-natural,,TON,185219.625 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,529.2859544 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4318.671151 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,258.0817068 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4086.135 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,250.8022995 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,350.5908293 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.714188885 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1325.876567 +ID,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2.9409 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1929.309998 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2339.483637 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.215284727 +ID,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3989.264987 +ID,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,372.5990807 +ID,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,206160.636 +ID,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,34.06165373 +ID,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,26693.74797 +ID,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,95.50195455 +ID,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1001.052771 +ID,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,161.5671685 +ID,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1435.211758 +ID,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1513.885599 +ID,Carbon Monoxide,1A3c_Rail,light_oil,TON,46.10395281 +ID,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.63933146 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.155012444 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,52.06633403 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1506.458652 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,706.3059277 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,208.8481489 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14906.42847 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,54.62712473 +ID,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,65.54229851 +ID,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,37714.09003 +ID,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,17062.47966 +ID,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,26.041337 +ID,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,139.4630519 +ID,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.313689746 +ID,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,954.4612459 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3754.770229 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4537.694818 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.305475033 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.086269 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,31615.93799 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,47.09901807 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,13910.56033 +ID,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,128.19 +ID,Carbon Monoxide,2A1_Cement-production,,TON,1191.8 +ID,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,348.45 +ID,Carbon Monoxide,2A6_Other-minerals,,TON,144.1291 +ID,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,8987.0562 +ID,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1731.97 +ID,Carbon Monoxide,2H2_Food-and-beverage,,TON,3766.896225 +ID,Carbon Monoxide,3F_Ag-res-on-field,,TON,62967.27728 +ID,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,21.797007 +ID,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,1.63640747 +ID,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,7778.100848 +ID,Carbon Monoxide,5C_Open-burning-residential,,TON,12122.1036 +ID,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,3192.82876 +ID,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.906247459 +ID,Methane,1A3bii_Road-LDV,light_oil,TON,883.3665804 +ID,Methane,1A3biii_Road-bus,diesel_oil,TON,0.147638995 +ID,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,76.13637836 +ID,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,2.875879033 +ID,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,4.52853153 +ID,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.165085498 +ID,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.122754648 +ID,Nitrogen Oxides,11C_Other-natural,,TON,12599.6349 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,511.9223723 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,660.2381582 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,44.81265873 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,623.8165769 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2357.288797 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3621.807161 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,40.86685094 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6802.859004 +ID,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,7.178 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3718.479145 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,41.9396244 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045908386 +ID,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,263.2436199 +ID,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,611.0657505 +ID,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,22213.12924 +ID,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,75.50391381 +ID,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2639.72949 +ID,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,329.138407 +ID,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1597.834534 +ID,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,575.51595 +ID,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,57.1722596 +ID,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10614.64668 +ID,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.671131147 +ID,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.3291526 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.055043496 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,201.6992779 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,175.0419818 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2309.18964 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,355.3775855 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,245.1225737 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,15.17787711 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,140.7469587 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,379.2993362 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,291.0731358 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,93.74594 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,4.5221737 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.12928271 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2461.28687 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7373.4764 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,79.16580366 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.850082572 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.7698362 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,242.2258169 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,279.5612482 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,495.9989866 +ID,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1043.01 +ID,Nitrogen Oxides,2A1_Cement-production,,TON,768.8 +ID,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,9.111 +ID,Nitrogen Oxides,2A6_Other-minerals,,TON,2.0406 +ID,Nitrogen Oxides,2B_Chemicals-other,,TON,115.6379 +ID,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,746.11 +ID,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +ID,Nitrogen Oxides,3F_Ag-res-on-field,,TON,224.226 +ID,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,1.97575892 +ID,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,230.121281 +ID,Nitrogen Oxides,5C_Open-burning-residential,,TON,855.67969 +ID,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,8.58444118 +ID,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.35174093 +ID,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,489.7841759 +ID,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.023158692 +ID,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,33.5231695 +ID,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.045688723 +ID,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.927293884 +ID,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.124034063 +ID,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.377960745 +ID,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +ID,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0 +ID,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,70.64657117 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,293.8766226 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,566.7156703 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.883811905 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,60.31227734 +ID,PM10 Filterable,1A2g_Construction_and_Mining,diesel_oil,TON,0 +ID,PM10 Filterable,1A2g_Construction_and_Mining,light_oil,TON,0 +ID,PM10 Filterable,1A2g_Construction_and_Mining,natural_gas,TON,0 +ID,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,317031.395 +ID,PM10 Filterable,1A3c_Rail,diesel_oil,TON,3.995138 +ID,PM10 Filterable,1A3c_Rail,light_oil,TON,0 +ID,PM10 Filterable,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0605 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.231914363 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.19710241 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.2178119 +ID,PM10 Filterable,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0 +ID,PM10 Filterable,1A4aii_Commercial-institutional-mobile,light_oil,TON,0 +ID,PM10 Filterable,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0 +ID,PM10 Filterable,1A4bi_Residential-mobile,diesel_oil,TON,0 +ID,PM10 Filterable,1A4bi_Residential-mobile,light_oil,TON,0 +ID,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.6244546 +ID,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,3.182365979 +ID,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.067756969 +ID,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.08092311 +ID,PM10 Filterable,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0 +ID,PM10 Filterable,1A4c_Agriculture-forestry-fishing,light_oil,TON,0 +ID,PM10 Filterable,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +ID,PM10 Filterable,1A5_Recreational-Equipment-Land,diesel_oil,TON,0 +ID,PM10 Filterable,1A5_Recreational-Equipment-Land,light_oil,TON,0 +ID,PM10 Filterable,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0 +ID,PM10 Filterable,1A5_Recreational-Equipment-Marine,light_oil,TON,0 +ID,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9.01313 +ID,PM10 Filterable,2A1_Cement-production,,TON,17.76517 +ID,PM10 Filterable,2A2_Lime-production,Other_Fuel,TON,2.2199 +ID,PM10 Filterable,2A5b_Construction-and-demolition,,TON,19813.63731 +ID,PM10 Filterable,2A6_Other-minerals,,TON,5381.138208 +ID,PM10 Filterable,2B_Chemicals-other,,TON,674.1776676 +ID,PM10 Filterable,2H1_Pulp-and-paper,,TON,246.013973 +ID,PM10 Filterable,2H2_Food-and-beverage,,TON,242.23944 +ID,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,48.500294 +ID,PM10 Filterable,2I_Wood-processing,,TON,15.9 +ID,PM10 Filterable,3Dc_Other-farm,,TON,17441.16629 +ID,PM10 Filterable,3F_Ag-res-on-field,,TON,8642.492974 +ID,PM10 Filterable,5C_Open-burning-land-clearing,,TON,782.4121702 +ID,PM10 Filterable,5C_Open-burning-residential,,TON,3387.1372 +ID,PM10 Filterable,5C_Open-burning-yard-waste,,TON,643.102417 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.40400769 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.981740376 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.395324219 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,75.84306906 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,370.7318034 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,620.1888335 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,11.57060155 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,162.2939982 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,310.0204863 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,12.15599363 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000284955 +ID,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,93.17051184 +ID,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,314401.625 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,40.90908661 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,950.4940088 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,4.559178466 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,57.93536188 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,15.78567586 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,107.4629563 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,31.97080859 +ID,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.468069587 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,341.1305298 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.01940959 +ID,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000966204 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00910671 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,75.482759 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.186737 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.97577334 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.67102844 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.258646912 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.92709415 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,102.7518782 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2376.872531 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,12.395546 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,3.061546304 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.149316309 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,94.3300198 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,622.6138753 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,14.17153707 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008459621 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.1149229 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,331.5567587 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.341307531 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,72.14740055 +ID,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12 +ID,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,19.1144144 +ID,PM10 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,2.884363 +ID,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,19962.75191 +ID,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5414.667052 +ID,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,891.5134589 +ID,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,497.5521713 +ID,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,784.7653734 +ID,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,75.118326 +ID,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,29.7079 +ID,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,11211.4431 +ID,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,34595.9544 +ID,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1016.203 +ID,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,1.68555218 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,782.4121702 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3344.45716 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,31.9847122 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,68.17484183 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,192.0782649 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,267.0561321 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.883982009 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,50.79521857 +ID,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,50776.18555 +ID,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,3.875944 +ID,PM2.5 Filterable,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.05566 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.10749699 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.3681754 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.82591296 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.3229447 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.9698273 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.0520725 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.07066231 +ID,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.47899 +ID,PM2.5 Filterable,2A1_Cement-production,,TON,8.971198 +ID,PM2.5 Filterable,2A2_Lime-production,Other_Fuel,TON,1.1404 +ID,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3982.821283 +ID,PM2.5 Filterable,2A6_Other-minerals,,TON,775.3213182 +ID,PM2.5 Filterable,2B_Chemicals-other,,TON,611.4462083 +ID,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,212.4426737 +ID,PM2.5 Filterable,2H2_Food-and-beverage,,TON,133.4346179 +ID,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,45.811161 +ID,PM2.5 Filterable,2I_Wood-processing,,TON,15.9 +ID,PM2.5 Filterable,3Dc_Other-farm,,TON,3403.31171 +ID,PM2.5 Filterable,3F_Ag-res-on-field,,TON,8209.031641 +ID,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,603.1615501 +ID,PM2.5 Filterable,5C_Open-burning-residential,,TON,3101.7656 +ID,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,24.6571241 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,36.97349328 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.03133163 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.400912947 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,73.37200502 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,268.9641412 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,320.5247622 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,11.57090222 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,152.7797733 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,294.2599555 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,11.27394196 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +ID,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,16.07303081 +ID,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,50776.18555 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,36.54235967 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,582.6080527 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,4.086224885 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,31.82876239 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,14.14030852 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,96.42552729 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,28.32046098 +ID,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.916069074 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,316.8414418 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.018067253 +ID,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000937222 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00910671 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,29.8970978 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.186737 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34.75312977 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.83547565 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.261865971 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.36651244 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,95.32964261 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2361.741039 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,11.0922642 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.907221605 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.133631828 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.729784414 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,631.5719465 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.12620336 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008998368 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.1004892 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,314.8107583 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.343420759 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,68.91075684 +ID,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.46585 +ID,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,10.32044574 +ID,PM2.5 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,1.804863 +ID,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4030.086893 +ID,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,808.8500811 +ID,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,828.7819502 +ID,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,463.9808748 +ID,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,675.9599834 +ID,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,72.429193 +ID,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,29.7079 +ID,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,6918.76718 +ID,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,871.559 +ID,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,1.12316959 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,603.1615501 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3062.6769 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,24.6571241 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.52329613 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.439122181 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.085796782 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,59.08292397 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,6903.427187 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3643.399644 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,147.9033143 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,23.26082124 +ID,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.022457 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,87.78154142 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.260593439 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.50179E-05 +ID,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,36.7086749 +ID,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.995568311 +ID,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,231.9028336 +ID,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.072844989 +ID,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,19.97211005 +ID,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.378147966 +ID,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.449744297 +ID,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.765277899 +ID,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.755377866 +ID,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,105.4103862 +ID,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005040619 +ID,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.31140483 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.006250435 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,715.08075 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1007.12093 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.841737451 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.509137834 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.628587482 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.046944473 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3.000549328 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.722540084 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,43.18143398 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,369.76814 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,15.4062703 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.672636315 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,13.70031268 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,151.0420194 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.568096425 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001660125 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.15314505 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,7.19459149 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.781201653 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.379429804 +ID,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.86 +ID,Sulfur Dioxide,2A1_Cement-production,,TON,4.8182 +ID,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,8.77 +ID,Sulfur Dioxide,2A6_Other-minerals,,TON,528.2122 +ID,Sulfur Dioxide,2B_Chemicals-other,,TON,2884.9271 +ID,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,13.333 +ID,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +ID,Sulfur Dioxide,3F_Ag-res-on-field,,TON,61.482 +ID,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,1.20509614 +ID,Sulfur Dioxide,5C_Open-burning-residential,,TON,142.612303 +ID,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.85485219 +ID,Volatile Organic Compounds,11C_Other-natural,,TON,977553.02 +ID,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,2.3662 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,54.21236172 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,210.0339461 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.901990462 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,88.79622908 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.90232349 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,11.970864 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.951138794 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,112.0963385 +ID,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.35258 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,382.1680653 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,159.7346932 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000746023 +ID,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,148.6475784 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,85.87608365 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,15945.15744 +ID,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,4.656668212 +ID,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1231.070515 +ID,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,27.41566612 +ID,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,229.5264211 +ID,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,33.89513572 +ID,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,360.156254 +ID,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,561.9920212 +ID,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.763028306 +ID,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.11100803 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.005192625 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.854120211 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.453339531 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.18563786 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,52.19491134 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,737.9418219 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.178690949 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,16.56160984 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2652.282067 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3195.67127 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,3.713335 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,5.070633079 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.043916582 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,136.5334127 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,725.2596565 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,256.3524518 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.032148363 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.1291767 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12661.90567 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.59453463 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4622.1935 +ID,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,206.1590523 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,158.399023 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3104.74758 +ID,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,24.73 +ID,Volatile Organic Compounds,2A1_Cement-production,,TON,8.187 +ID,Volatile Organic Compounds,2A6_Other-minerals,,TON,0.1957 +ID,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,1.801148 +ID,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,5973.480832 +ID,Volatile Organic Compounds,2D3d_Coating-application,,TON,7727.86985 +ID,Volatile Organic Compounds,2D3e_Degreasing,,TON,7808.507014 +ID,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,728.093 +ID,Volatile Organic Compounds,2D3h_Printing,,TON,329.3792 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,723.99394 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1097.82568 +ID,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,325.0231 +ID,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,195.9361709 +ID,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1302.789221 +ID,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,39240.676 +ID,Volatile Organic Compounds,3B3_Manure-swine,,TON,16.1727248 +ID,Volatile Organic Compounds,3B4_Manure-poultry,,TON,365.54041 +ID,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,15298.64595 +ID,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,6110.20847 +ID,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.013794576 +ID,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,533.8807818 +ID,Volatile Organic Compounds,5C_Open-burning-residential,,TON,595.09609 +ID,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,491.766319 +ID,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,240.677796 +IL,Ammonia,1A1a_Public-Electricity,biomass,TON,3.88 +IL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.9159 +IL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,151.463849 +IL,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.14 +IL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,30.92005 +IL,Ammonia,1A1b_Pet-refining,natural_gas,TON,62.5 +IL,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.65163 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.468360273 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.605236876 +IL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,31.64160258 +IL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,60.62124108 +IL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.142596715 +IL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,518.7102596 +IL,Ammonia,1A2c_Chemicals,diesel_oil,TON,0 +IL,Ammonia,1A2c_Chemicals,natural_gas,TON,3.58148 +IL,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +IL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,30.25434435 +IL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.972974207 +IL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.36575466 +IL,Ammonia,1A3bii_Road-LDV,light_oil,TON,3843.948972 +IL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.285190196 +IL,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,171.4659402 +IL,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,130.3973397 +IL,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,42.24080438 +IL,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,37.12118445 +IL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,23.70118647 +IL,Ammonia,1A3c_Rail,diesel_oil,TON,20.06426928 +IL,Ammonia,1A3c_Rail,light_oil,TON,0.009105773 +IL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.11616757 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.7316943 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.006402369 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.123985878 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,64.78082046 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.893376665 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.050637138 +IL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.858799776 +IL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.44591838 +IL,Ammonia,1A4bi_Residential-stationary,biomass,TON,847.40289 +IL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,4.26207 +IL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,17.37102 +IL,Ammonia,1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.52655 +IL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,4648.60388 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.88786427 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.736672933 +IL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.053073629 +IL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.450606149 +IL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.085299443 +IL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.285779772 +IL,Ammonia,1B2av_Fugitive-petr-distr,,TON,0.03 +IL,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.88 +IL,Ammonia,2A1_Cement-production,,TON,78.66 +IL,Ammonia,2A6_Other-minerals,,TON,2.87 +IL,Ammonia,2B_Chemicals-other,,TON,619.06 +IL,Ammonia,2C_Iron-steel-alloy,,TON,3.633 +IL,Ammonia,2C6_Zinc-production,,TON,0.12 +IL,Ammonia,2C7_Other-metal,Other_Fuel,TON,5.8966 +IL,Ammonia,2C7a_Copper-production,,TON,0.01 +IL,Ammonia,2D3d_Coating-application,,TON,8.0073 +IL,Ammonia,2D3h_Printing,,TON,0.99 +IL,Ammonia,2H2_Ethanol Production,,TON,5.45 +IL,Ammonia,2H2_Food-and-beverage,,TON,85.6297 +IL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,62.1376 +IL,Ammonia,3B1a_Cattle-dairy,,TON,3596.0262 +IL,Ammonia,3B1b_Cattle-non-dairy,,TON,8150.4387 +IL,Ammonia,3B2_Manure-sheep,,TON,185.82035 +IL,Ammonia,3B3_Manure-swine,,TON,27953.8824 +IL,Ammonia,3B4_Manure-other,,TON,1069.42305 +IL,Ammonia,3B4_Manure-poultry,,TON,5911.99639 +IL,Ammonia,3B4d_Manure-goats,,TON,46.18407 +IL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,69612.96652 +IL,Ammonia,3Dc_Other-farm,,TON,0.23 +IL,Ammonia,5C_Incineration,,TON,0.0001 +IL,Ammonia,5C_Incineration,biomass,TON,0.14 +IL,Ammonia,5D1_Wastewater-domestic,,TON,74.33305 +IL,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.39 +IL,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,0.11 +IL,Ammonia,5E_Other-waste,Other_Fuel,TON,0.0338 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,672916.9975 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,790400.9418 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,42572.08321 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3723157.144 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,161810.3494 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.78097199 +IL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,597788.9895 +IL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,49208930.36 +IL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,439919.6508 +IL,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3325901.213 +IL,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,11855664.19 +IL,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1467681.729 +IL,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2384447.594 +IL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,238284.1246 +IL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,14305.30164 +IL,Carbon Dioxide,1A3c_Rail,light_oil,TON,704.3247363 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,355251.353 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,496953.3313 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21918.10021 +IL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,105541.3527 +IL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,834900.2837 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3305723.547 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,55093.40383 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,374.8785243 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6487.564 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,356260.7724 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,133655.8608 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,361830.0238 +IL,Carbon Monoxide,11C_Other-natural,,TON,82690.447 +IL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,43.25 +IL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,51.3231 +IL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,15120.9 +IL,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.91 +IL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3007.04604 +IL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,4664.3683 +IL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,24.3835 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2952.454508 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,54562.5007 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3373.183291 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,43.00693038 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,548.5407666 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3169.493587 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.59599322 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,24.80553589 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,22575.01726 +IL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,307.71374 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.5648 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.9 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,12784.14967 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,13828.47153 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.068416227 +IL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12857.9296 +IL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2295.742644 +IL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,949505.5622 +IL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1715.070855 +IL,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,107911.8295 +IL,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,25961.8478 +IL,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,6144.330977 +IL,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5608.255892 +IL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11144.95018 +IL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,6525.370423 +IL,Carbon Monoxide,1A3c_Rail,light_oil,TON,197.2803875 +IL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,905.789244 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.127625782 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,198.6094052 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,349.9727306 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.545790289 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10314.17687 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2149.16509 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,139611.8647 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,565.3097788 +IL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,501.4589896 +IL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,277909.2796 +IL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,93938.15795 +IL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,21.31004 +IL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2388.51695 +IL,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.63278 +IL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,9699.19817 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18116.28037 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,14757.06371 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,41.22240024 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,74.381169 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,60480.93658 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,189.9289472 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,49090.07517 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,5.22 +IL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,249.733 +IL,Carbon Monoxide,2A1_Cement-production,,TON,1952.06 +IL,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,408.67 +IL,Carbon Monoxide,2A6_Other-minerals,,TON,1628.9731 +IL,Carbon Monoxide,2B_Chemicals-other,,TON,2096.0584 +IL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,21338.6236 +IL,Carbon Monoxide,2C3_Aluminum-production,,TON,39.11032 +IL,Carbon Monoxide,2C5_Lead-production,,TON,0.3556 +IL,Carbon Monoxide,2C6_Zinc-production,,TON,71.3146 +IL,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,48.73846 +IL,Carbon Monoxide,2C7a_Copper-production,,TON,3.3719 +IL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,35.3919 +IL,Carbon Monoxide,2D3d_Coating-application,,TON,22.1428 +IL,Carbon Monoxide,2D3h_Printing,,TON,5.1567 +IL,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.2111 +IL,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.6642 +IL,Carbon Monoxide,2H2_Ethanol Production,,TON,86.9 +IL,Carbon Monoxide,2H2_Food-and-beverage,,TON,3418.06286 +IL,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,154.37178 +IL,Carbon Monoxide,3Dc_Other-farm,,TON,12.2829 +IL,Carbon Monoxide,3F_Ag-res-on-field,,TON,9633.6 +IL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2042.98561 +IL,Carbon Monoxide,5C_Incineration,,TON,5581.6182 +IL,Carbon Monoxide,5C_Incineration,biomass,TON,30.50903 +IL,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.75 +IL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,6189.802556 +IL,Carbon Monoxide,5C_Open-burning-residential,,TON,11473.99556 +IL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,753.10317 +IL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,38.2868 +IL,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,43.681 +IL,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,2.0201 +IL,Methane,1A3bii_Road-LDV,diesel_oil,TON,14.19008033 +IL,Methane,1A3bii_Road-LDV,light_oil,TON,4557.042185 +IL,Methane,1A3biii_Road-bus,diesel_oil,TON,5.114227035 +IL,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,466.7781819 +IL,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,457.0743347 +IL,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,34.23820501 +IL,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,43.30411203 +IL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,72.05576801 +IL,Nitrogen Oxides,11C_Other-natural,,TON,36039.9139 +IL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,41.45 +IL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,219.28067 +IL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,121407.8 +IL,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,4.9 +IL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2703.33901 +IL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,8214.9775 +IL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,23.7781 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6072.697325 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8516.348604 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,583.3066341 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,205.0727445 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1271.796654 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,7152.426989 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,133.7812356 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.570435692 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,41506.72136 +IL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +IL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,635.4442 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.6208 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.07 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,24116.09952 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,293.2707827 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.227834239 +IL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,6469.491097 +IL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3808.452984 +IL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,107802.5212 +IL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4636.284199 +IL,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,10931.57629 +IL,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,95583.9189 +IL,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,9903.780556 +IL,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,17643.26702 +IL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,442.3270657 +IL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,45312.75781 +IL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,3.441975576 +IL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4755.48861 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,3.226745011 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,717.6759605 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,480.1937707 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.851240422 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11463.49579 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3645.252264 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2715.289354 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,157.1505612 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1076.950799 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3403.705675 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1272.55899 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,76.71606 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,79.03811 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,9.54391 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,23277.70721 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,34823.44766 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,381.0185541 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.182400964 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,70.007925 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,666.5989085 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1127.375355 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2290.116243 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,8.44 +IL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,881.98 +IL,Nitrogen Oxides,2A1_Cement-production,,TON,6623.7 +IL,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,719.61 +IL,Nitrogen Oxides,2A6_Other-minerals,,TON,5663.80474 +IL,Nitrogen Oxides,2B_Chemicals-other,,TON,946.0071 +IL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1259.4118 +IL,Nitrogen Oxides,2C3_Aluminum-production,,TON,36.36958 +IL,Nitrogen Oxides,2C5_Lead-production,,TON,0.3459 +IL,Nitrogen Oxides,2C6_Zinc-production,,TON,74.8015 +IL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,71.35216 +IL,Nitrogen Oxides,2C7a_Copper-production,,TON,4.6294 +IL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,3.41 +IL,Nitrogen Oxides,2D3d_Coating-application,,TON,43.5573 +IL,Nitrogen Oxides,2D3h_Printing,,TON,7.3707 +IL,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.0935 +IL,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.4854 +IL,Nitrogen Oxides,2H2_Ethanol Production,,TON,69.81 +IL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,494.912 +IL,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,10.70184 +IL,Nitrogen Oxides,3Dc_Other-farm,,TON,24.6905 +IL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,468.3 +IL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,587.11149 +IL,Nitrogen Oxides,5C_Incineration,,TON,1642.95072 +IL,Nitrogen Oxides,5C_Incineration,biomass,TON,67.3224 +IL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.16 +IL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,183.1302298 +IL,Nitrogen Oxides,5C_Open-burning-residential,,TON,809.92914 +IL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,27.5372037 +IL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,24.0538 +IL,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,17.5529 +IL,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,2.459 +IL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.306115667 +IL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2835.046455 +IL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.160767254 +IL,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,215.5324531 +IL,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,14.87708712 +IL,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.061062873 +IL,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.954538391 +IL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.663485856 +IL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,24.5375 +IL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.1888 +IL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2130.7302 +IL,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.208 +IL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,119.3398 +IL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1518.0383 +IL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.3691 +IL,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +IL,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0 +IL,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,16.59448884 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,63.48937281 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,703.5725538 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.5609825 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,707.483332 +IL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,11.8904 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.131 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.07 +IL,PM10 Filterable,1A2g_Construction_and_Mining,diesel_oil,TON,0 +IL,PM10 Filterable,1A2g_Construction_and_Mining,light_oil,TON,0 +IL,PM10 Filterable,1A2g_Construction_and_Mining,natural_gas,TON,0 +IL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,169586.2184 +IL,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0 +IL,PM10 Filterable,1A3c_Rail,light_oil,TON,0 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.31675147 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,90.94544191 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.409812027 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,224.1897346 +IL,PM10 Filterable,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0 +IL,PM10 Filterable,1A4aii_Commercial-institutional-mobile,light_oil,TON,0 +IL,PM10 Filterable,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0 +IL,PM10 Filterable,1A4bi_Residential-mobile,diesel_oil,TON,0 +IL,PM10 Filterable,1A4bi_Residential-mobile,light_oil,TON,0 +IL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.60297 +IL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,53.85012 +IL,PM10 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.57044 +IL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,48.4959 +IL,PM10 Filterable,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0 +IL,PM10 Filterable,1A4c_Agriculture-forestry-fishing,light_oil,TON,0 +IL,PM10 Filterable,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +IL,PM10 Filterable,1A5_Recreational-Equipment-Land,diesel_oil,TON,0 +IL,PM10 Filterable,1A5_Recreational-Equipment-Land,light_oil,TON,0 +IL,PM10 Filterable,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0 +IL,PM10 Filterable,1A5_Recreational-Equipment-Marine,light_oil,TON,0 +IL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.424 +IL,PM10 Filterable,2A1_Cement-production,,TON,463.836 +IL,PM10 Filterable,2A2_Lime-production,,TON,89.4733 +IL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,149423.5513 +IL,PM10 Filterable,2A6_Other-minerals,,TON,15813.7146 +IL,PM10 Filterable,2B_Chemicals-other,,TON,670.3786 +IL,PM10 Filterable,2C_Iron-steel-alloy,,TON,2004.8486 +IL,PM10 Filterable,2C3_Aluminum-production,,TON,90.3632 +IL,PM10 Filterable,2C5_Lead-production,,TON,4.3314 +IL,PM10 Filterable,2C6_Zinc-production,,TON,26.8515 +IL,PM10 Filterable,2C7_Other-metal,,TON,353.0004 +IL,PM10 Filterable,2C7a_Copper-production,,TON,72.6384 +IL,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,1.87 +IL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,51.912 +IL,PM10 Filterable,2D3d_Coating-application,,TON,146.2175 +IL,PM10 Filterable,2D3h_Printing,,TON,1.9876 +IL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.4012 +IL,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,121.3831 +IL,PM10 Filterable,2H2_Ethanol Production,,TON,11.5302 +IL,PM10 Filterable,2H2_Food-and-beverage,,TON,4355.33767 +IL,PM10 Filterable,2H3_Other-industrial-processes,,TON,443.6716081 +IL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,2.430091918 +IL,PM10 Filterable,2I_Wood-processing,,TON,2.6868 +IL,PM10 Filterable,3Dc_Other-farm,,TON,385797.9598 +IL,PM10 Filterable,5A_Solid-waste-disposal,,TON,343.6691 +IL,PM10 Filterable,5C_Incineration,,TON,4.4169 +IL,PM10 Filterable,5C_Incineration,biomass,TON,9.4078 +IL,PM10 Filterable,5C_Open-burning-commercial,,TON,0.02 +IL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,622.6429219 +IL,PM10 Filterable,5C_Open-burning-residential,,TON,5129.55 +IL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,124.7103 +IL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,2.1 +IL,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.9553 +IL,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,89.2266 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,27.05 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.0948 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8512.3248 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.244 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,215.6651 +IL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1631.4039 +IL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.3717 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,473.1197169 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,77.70630713 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.388755446 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,17.54936754 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,124.4908644 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1235.956897 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,20.71701966 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1973.161521 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,41.097 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.131 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.07 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2313.450778 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,173.3664973 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001727756 +IL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,314.7676687 +IL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,169586.2184 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,243.3170864 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5711.469389 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,305.0380459 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,396.2943676 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,5771.862668 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,638.0063916 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1126.96598 +IL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,41.35265314 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1500.978449 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.094837223 +IL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,173.3617958 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,84.61586259 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,170.4854098 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.67448884 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,972.3624688 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,373.2323426 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,133.7072938 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.735457676 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,90.12174292 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,799.8683709 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,13880.08223 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,10.14358 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,54.19756 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.25608 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,126.04616 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3337.847344 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.8350071 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.047364255 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,10.6906754 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,626.4492845 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.49302401 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,271.3021621 +IL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.424 +IL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,592.7276 +IL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,175.3164 +IL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,149423.5513 +IL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,15991.2615 +IL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,685.3486 +IL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2004.8486 +IL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,90.3632 +IL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,4.3314 +IL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,26.8515 +IL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,353.177 +IL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,72.6384 +IL,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.87 +IL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,51.912 +IL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,146.2175 +IL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,1.9876 +IL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.4012 +IL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,121.3831 +IL,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,46.1202 +IL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,7662.66044 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,443.6716081 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,2.430091918 +IL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.6868 +IL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,385797.9598 +IL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1471.8 +IL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,343.6691 +IL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2635.3504 +IL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.4078 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.02 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,622.6429219 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5129.55 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,124.7103 +IL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.1 +IL,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.9553 +IL,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,89.2266 +IL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,24.18 +IL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.4672 +IL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,573.9047 +IL,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.1478 +IL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,115.694314 +IL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1396.135454 +IL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.3691 +IL,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0 +IL,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,13.35616162 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,28.11008198 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,187.4024668 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.17844142 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,653.4326933 +IL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,11.29745 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.07462022 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0675 +IL,PM2.5 Filterable,1A2g_Construction_and_Mining,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A2g_Construction_and_Mining,light_oil,TON,0 +IL,PM2.5 Filterable,1A2g_Construction_and_Mining,natural_gas,TON,0 +IL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,21563.44386 +IL,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A3c_Rail,light_oil,TON,0 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,28.62881171 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,32.47097074 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.150426654 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,221.1975535 +IL,PM2.5 Filterable,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A4aii_Commercial-institutional-mobile,light_oil,TON,0 +IL,PM2.5 Filterable,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0 +IL,PM2.5 Filterable,1A4bi_Residential-mobile,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A4bi_Residential-mobile,light_oil,TON,0 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.53744 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,33.00494 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.4388 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,26.62402 +IL,PM2.5 Filterable,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A4c_Agriculture-forestry-fishing,light_oil,TON,0 +IL,PM2.5 Filterable,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +IL,PM2.5 Filterable,1A5_Recreational-Equipment-Land,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A5_Recreational-Equipment-Land,light_oil,TON,0 +IL,PM2.5 Filterable,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A5_Recreational-Equipment-Marine,light_oil,TON,0 +IL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.11353106 +IL,PM2.5 Filterable,2A1_Cement-production,,TON,207.3792362 +IL,PM2.5 Filterable,2A2_Lime-production,,TON,24.62465669 +IL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,14942.353 +IL,PM2.5 Filterable,2A6_Other-minerals,,TON,3632.320767 +IL,PM2.5 Filterable,2B_Chemicals-other,,TON,490.5383829 +IL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1200.3473 +IL,PM2.5 Filterable,2C3_Aluminum-production,,TON,69.1687439 +IL,PM2.5 Filterable,2C5_Lead-production,,TON,2.553285015 +IL,PM2.5 Filterable,2C6_Zinc-production,,TON,24.38177981 +IL,PM2.5 Filterable,2C7_Other-metal,,TON,198.7046892 +IL,PM2.5 Filterable,2C7a_Copper-production,,TON,45.61895118 +IL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,24.71112296 +IL,PM2.5 Filterable,2D3d_Coating-application,,TON,112.9961773 +IL,PM2.5 Filterable,2D3h_Printing,,TON,1.61515185 +IL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.383974445 +IL,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,69.20601369 +IL,PM2.5 Filterable,2H2_Ethanol Production,,TON,11.53 +IL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1641.744739 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,332.4258185 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,3.246219087 +IL,PM2.5 Filterable,2I_Wood-processing,,TON,0.884320109 +IL,PM2.5 Filterable,3Dc_Other-farm,,TON,77031.52193 +IL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,164.5259873 +IL,PM2.5 Filterable,5C_Incineration,,TON,3.463300679 +IL,PM2.5 Filterable,5C_Incineration,biomass,TON,8.425817881 +IL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.0113924 +IL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,479.9954106 +IL,PM2.5 Filterable,5C_Open-burning-residential,,TON,5129.55 +IL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,111.77009 +IL,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +IL,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,27.06513666 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,26.6925 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.3732 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6955.498 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.1838 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,212.180515 +IL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1509.891054 +IL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.3717 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,458.9258837 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,77.16007779 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.378908552 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,14.32092667 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,80.41065388 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,724.8304387 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,14.43143521 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1920.956121 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,40.50405 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.07462022 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0675 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2244.046835 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,159.6308693 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001727756 +IL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,147.9829441 +IL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,21563.44386 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,214.9648949 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3257.316655 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,270.0417075 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,218.5914093 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,5134.77444 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,566.8249279 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,978.0381605 +IL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,36.13417743 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1388.947084 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.087429224 +IL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,167.9849632 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,75.64454845 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,103.3862585 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.391928522 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,967.7139674 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,362.0352717 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,123.3591419 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.735457676 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,87.41809967 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,735.9112643 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,13867.35435 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.07809 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,33.35229 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.12444 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,104.17425 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3237.711494 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.8087487 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.047364255 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,10.3699544 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,576.3357923 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.5182666 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,249.5979673 +IL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.11353106 +IL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,336.2713362 +IL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,112.0477567 +IL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,14942.3743 +IL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3941.170667 +IL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,581.1342829 +IL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1218.9666 +IL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,70.6613439 +IL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,2.554285015 +IL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,24.39377981 +IL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,205.4408892 +IL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,45.62425118 +IL,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.87 +IL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,33.37112296 +IL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,128.6361773 +IL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,1.73645185 +IL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.383974445 +IL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,69.85461369 +IL,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,46.1202 +IL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4959.539028 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,376.5452812 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,3.677056386 +IL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.884320109 +IL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,77036.25793 +IL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1471.8 +IL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,172.5567873 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1804.959101 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.427817881 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0113924 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,479.9954106 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5129.55 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,111.77009 +IL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.1 +IL,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.95461915 +IL,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,27.44323666 +IL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,79.75 +IL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,62.58438 +IL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,271525 +IL,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,12.28 +IL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,163.61169 +IL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,29044.004 +IL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,24.955805 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.77223363 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.712935557 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.235241218 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,7.110138677 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1658.153064 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,34793.29225 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,344.0556404 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5108.109455 +IL,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,56.00124 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.908 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.006 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,24.33041963 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.693067843 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0 +IL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,666.2229913 +IL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.557231392 +IL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1060.882085 +IL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.848366909 +IL,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,71.796177 +IL,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,129.4956816 +IL,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,16.10706315 +IL,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,26.03591862 +IL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.15055195 +IL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,450.3297245 +IL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.010303168 +IL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,334.3791372 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.120032813 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1136.16524 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5592.918918 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.18599135 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,113.0634488 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.26545357 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.804813972 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.970163955 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.05719191 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,612.22975 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,181.56118 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,936.99232 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,22.54336 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,145.48785 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,30.12158576 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.835227082 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.059622861 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.413256401 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.15335752 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.258065676 +IL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,372.03512 +IL,Sulfur Dioxide,2A1_Cement-production,,TON,3175.02 +IL,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,6526.36 +IL,Sulfur Dioxide,2A6_Other-minerals,,TON,7901.5469 +IL,Sulfur Dioxide,2B_Chemicals-other,,TON,7798.47 +IL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1508.49843 +IL,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.21208 +IL,Sulfur Dioxide,2C5_Lead-production,,TON,1.5008 +IL,Sulfur Dioxide,2C6_Zinc-production,,TON,7.4466 +IL,Sulfur Dioxide,2C7_Other-metal,,TON,23.31892 +IL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.099 +IL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,33.38 +IL,Sulfur Dioxide,2D3d_Coating-application,,TON,0.2077 +IL,Sulfur Dioxide,2D3h_Printing,,TON,0.013 +IL,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,21.8901 +IL,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.003 +IL,Sulfur Dioxide,2H2_Ethanol Production,,TON,1.06002 +IL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1206.12577 +IL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,23.1533 +IL,Sulfur Dioxide,3Dc_Other-farm,,TON,1.0802 +IL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,53.52 +IL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,471.54249 +IL,Sulfur Dioxide,5C_Incineration,,TON,1415.73192 +IL,Sulfur Dioxide,5C_Incineration,biomass,TON,352.17722 +IL,Sulfur Dioxide,5C_Open-burning-residential,,TON,134.98819 +IL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.23223 +IL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,141.525 +IL,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,234.5401 +IL,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,1.469 +IL,Volatile Organic Compounds,11C_Other-natural,,TON,425333.05 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.35 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.80343 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1551 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.14 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,702.87406 +IL,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,800.2924855 +IL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,998.3213896 +IL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,3026.972895 +IL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,5.55843 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,549.3705005 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2705.744661 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,493.3245934 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,4.078193567 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,52.43428193 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,55.58314251 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.876823052 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.490657385 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2991.173632 +IL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +IL,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +IL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,195.17784 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.244 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2539.740193 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1066.126893 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.216630953 +IL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,961.8398273 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,516.1346789 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,80453.61995 +IL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,265.6482159 +IL,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6582.957167 +IL,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,6264.41708 +IL,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1374.339704 +IL,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1384.217569 +IL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2840.18285 +IL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2349.345642 +IL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,8.269604404 +IL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,103.0963469 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.210854471 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,18.3047107 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.576782332 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.057042336 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,792.1563202 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,536.5950708 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,7683.997484 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,93.34562485 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,126.5878856 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,23582.25788 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,11894.94545 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.98342 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,86.85497 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,heavy_oil,TON,0 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.37029 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1333.36833 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3490.30902 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,767.7982262 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.993700509 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.55012131 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,22855.68264 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,46.71664377 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,19504.98573 +IL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,161.0775 +IL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,2654.14355 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1533.185424 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,23407.53329 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,213.2402392 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1157.47251 +IL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,153.72 +IL,Volatile Organic Compounds,2A1_Cement-production,,TON,205.516 +IL,Volatile Organic Compounds,2A6_Other-minerals,,TON,1020.98072 +IL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +IL,Volatile Organic Compounds,2B_Chemicals-other,,TON,6814.039308 +IL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1252.46158 +IL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,79.11475 +IL,Volatile Organic Compounds,2C5_Lead-production,,TON,0.6633 +IL,Volatile Organic Compounds,2C6_Zinc-production,,TON,12.45 +IL,Volatile Organic Compounds,2C7_Other-metal,,TON,833.26205 +IL,Volatile Organic Compounds,2C7a_Copper-production,,TON,7.39717 +IL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,50519.10634 +IL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,48.9823 +IL,Volatile Organic Compounds,2D3d_Coating-application,,TON,29874.30789 +IL,Volatile Organic Compounds,2D3e_Degreasing,,TON,4199.47618 +IL,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,1228.48403 +IL,Volatile Organic Compounds,2D3h_Printing,,TON,57582.82548 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,6809.258856 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,690.6581839 +IL,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,115.6305 +IL,Volatile Organic Compounds,2H2_Ethanol Production,,TON,37.7 +IL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,11204.10655 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2761.962617 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,0.28354302 +IL,Volatile Organic Compounds,2I_Wood-processing,,TON,0.0058 +IL,Volatile Organic Compounds,3Dc_Other-farm,,TON,10.4874 +IL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,22045.5 +IL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,869.7 +IL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,269.98261 +IL,Volatile Organic Compounds,5C_Incineration,,TON,1089.80562 +IL,Volatile Organic Compounds,5C_Incineration,biomass,TON,6.8257 +IL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.05 +IL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,424.8622526 +IL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1155.49831 +IL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,140.45971 +IL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,419.63955 +IL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,3004.31852 +IL,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.54416 +IL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,186.66037 +IL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,12.12218 +IN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,12.7084709 +IN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,267.919483 +IN,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.0685848 +IN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,99.67652068 +IN,Ammonia,1A1b_Pet-refining,natural_gas,TON,33.4019527 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.707621399 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.446677626 +IN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.717048 +IN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.26636224 +IN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.6030978 +IN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.21121876 +IN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.181839 +IN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,340.673402 +IN,Ammonia,1A2c_Chemicals,natural_gas,TON,2.280515 +IN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,15.70129208 +IN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.678771658 +IN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.132051891 +IN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2801.862051 +IN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.058706647 +IN,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,91.40225478 +IN,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,99.83491546 +IN,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,20.09781032 +IN,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,27.73258256 +IN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.36729707 +IN,Ammonia,1A3c_Rail,diesel_oil,TON,10.01201927 +IN,Ammonia,1A3c_Rail,light_oil,TON,0.004100354 +IN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.952795346 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.226094104 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.118096726 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000413224 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.10479774 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.185400198 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.479062262 +IN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.505676352 +IN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.419953103 +IN,Ammonia,1A4bi_Residential-stationary,biomass,TON,725.8529708 +IN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,12.8771861 +IN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.247894243 +IN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.517188765 +IN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1279.767451 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.30434332 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.402286606 +IN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.025940244 +IN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.998850955 +IN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.968971703 +IN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.114461861 +IN,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Ammonia,2A6_Other-minerals,,TON,308.3052678 +IN,Ammonia,2B_Chemicals-other,,TON,7.8172904 +IN,Ammonia,2C_Iron-steel-alloy,,TON,77.22411465 +IN,Ammonia,2C3_Aluminum-production,,TON,4.49912 +IN,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.6288 +IN,Ammonia,2D3d_Coating-application,,TON,0.263179225 +IN,Ammonia,2H2_Food-and-beverage,,TON,0.312071 +IN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,54.708595 +IN,Ammonia,3B1a_Cattle-dairy,,TON,8852.529127 +IN,Ammonia,3B1b_Cattle-non-dairy,,TON,3950.22703 +IN,Ammonia,3B2_Manure-sheep,,TON,171.303528 +IN,Ammonia,3B3_Manure-swine,,TON,23075.86491 +IN,Ammonia,3B4_Manure-other,,TON,1091.03676 +IN,Ammonia,3B4_Manure-poultry,,TON,21655.18333 +IN,Ammonia,3B4d_Manure-goats,,TON,328.58496 +IN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,42502.8613 +IN,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.1924 +IN,Ammonia,5D1_Wastewater-domestic,,TON,134.3330375 +IN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.56410682 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,456252.2739 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,608099.0446 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,31837.63236 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1932509.62 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,57306.89614 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.78097842 +IN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,290200.0349 +IN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,30450445.14 +IN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,284081.309 +IN,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1638558.023 +IN,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,8440869.865 +IN,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,658646.2274 +IN,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1616559.143 +IN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,149858.3092 +IN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6472.03805 +IN,Carbon Dioxide,1A3c_Rail,light_oil,TON,316.4915049 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,145544.4344 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,203609.0642 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8983.38136 +IN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,62144.53679 +IN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,468472.9651 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1758659.473 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,30022.26273 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,198.0410062 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3170.8521 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,193884.9111 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,119330.254 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,284845.4758 +IN,Carbon Monoxide,11C_Other-natural,,TON,54734.254 +IN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,258.1436881 +IN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,15410.22278 +IN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.428655 +IN,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.158061 +IN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1511.838328 +IN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1105.1439 +IN,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,522.6881 +IN,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,8.41451 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2695.97043 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41542.71039 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2518.592823 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,19.90845433 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,161.5509142 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,209.0423031 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1161.853033 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,207.5514572 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,73.89336646 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,41053.03486 +IN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,3157.02 +IN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.004697 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7263.52382 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,12275.48596 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.258786167 +IN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6106.927353 +IN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1118.208884 +IN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,727718.8439 +IN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1091.183072 +IN,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,62593.03005 +IN,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,17760.72472 +IN,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2932.184794 +IN,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3769.668009 +IN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7531.742361 +IN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3246.76434 +IN,Carbon Monoxide,1A3c_Rail,light_oil,TON,88.45906068 +IN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,405.526943 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,22.28762336 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,121.7522684 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,544.1023404 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.386703871 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3950.509017 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,880.5568671 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,55843.96095 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,231.7199205 +IN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,295.3274868 +IN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,146706.7677 +IN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,79553.71732 +IN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,57.7575 +IN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,105.4059835 +IN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,17.58594245 +IN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3219.24655 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9659.030042 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8218.180889 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,21.78929941 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,36.365447 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,36701.94493 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,239.3391637 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,40069.97425 +IN,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +IN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,8.834499 +IN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +IN,Carbon Monoxide,2A1_Cement-production,,TON,3165.2059 +IN,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,792.81 +IN,Carbon Monoxide,2A6_Other-minerals,,TON,18515.20454 +IN,Carbon Monoxide,2B_Chemicals-other,,TON,214.461097 +IN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,232710.5328 +IN,Carbon Monoxide,2C3_Aluminum-production,,TON,23025.9964 +IN,Carbon Monoxide,2C5_Lead-production,,TON,224.723872 +IN,Carbon Monoxide,2C7_Other-metal,,TON,1244.41925 +IN,Carbon Monoxide,2C7a_Copper-production,,TON,0.89 +IN,Carbon Monoxide,2C7b_Nickel-production,Other_Fuel,TON,58.71 +IN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.006804 +IN,Carbon Monoxide,2D3d_Coating-application,,TON,589.634 +IN,Carbon Monoxide,2D3e_Degreasing,,TON,0 +IN,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.98993 +IN,Carbon Monoxide,2H2_Food-and-beverage,,TON,753.4257578 +IN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,102.61701 +IN,Carbon Monoxide,3F_Ag-res-on-field,,TON,4392 +IN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,818.7268 +IN,Carbon Monoxide,5C_Incineration,,TON,1350.350262 +IN,Carbon Monoxide,5C_Incineration,biomass,TON,2483.153135 +IN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,15332.62748 +IN,Carbon Monoxide,5C_Open-burning-residential,,TON,4221.5245 +IN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,803.76136 +IN,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,2.775 +IN,Methane,1A3bii_Road-LDV,diesel_oil,TON,5.833534391 +IN,Methane,1A3bii_Road-LDV,light_oil,TON,3061.374478 +IN,Methane,1A3biii_Road-bus,diesel_oil,TON,3.468922166 +IN,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,254.1594248 +IN,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,345.8788154 +IN,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,12.54944876 +IN,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,30.82919747 +IN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,41.4949161 +IN,Nitrogen Oxides,11C_Other-natural,,TON,19984.8313 +IN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,2462.264225 +IN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,193964.2202 +IN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,3.925338 +IN,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.676165 +IN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2582.815879 +IN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2441.708 +IN,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,4551.085 +IN,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.545035 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3825.163545 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6580.853984 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,441.0111367 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,522.7791142 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,325.4040117 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,932.8083434 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6890.532679 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2150.056677 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,44.24043912 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,29281.82092 +IN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,340.7 +IN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.073892 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,16471.47559 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,341.0669425 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.259441551 +IN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1276.027358 +IN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1812.551544 +IN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,83564.40826 +IN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3070.750689 +IN,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6227.461777 +IN,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,68463.29984 +IN,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,4515.871332 +IN,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11919.51719 +IN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,295.9550316 +IN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,22314.87396 +IN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.61524632 +IN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2133.830411 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,14.23624588 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,512.8855972 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2555.371717 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.241008038 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4560.059434 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1498.290638 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1146.985634 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,64.41826746 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,634.057207 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1904.118485 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1006.189428 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,207.927 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,118.9475822 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,63.309389 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,8383.565 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18822.37772 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,210.7631009 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.853580409 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,35.032053 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,423.8709246 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1426.333287 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2218.470413 +IN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +IN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,2.320317 +IN,Nitrogen Oxides,2A1_Cement-production,,TON,5916.256 +IN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2226.23 +IN,Nitrogen Oxides,2A6_Other-minerals,,TON,2152.661284 +IN,Nitrogen Oxides,2B_Chemicals-other,,TON,133.373135 +IN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,4697.382649 +IN,Nitrogen Oxides,2C3_Aluminum-production,,TON,214.968703 +IN,Nitrogen Oxides,2C5_Lead-production,,TON,328.6977873 +IN,Nitrogen Oxides,2C7_Other-metal,,TON,1441.91551 +IN,Nitrogen Oxides,2C7b_Nickel-production,Other_Fuel,TON,22.89 +IN,Nitrogen Oxides,2D3d_Coating-application,,TON,13.44 +IN,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +IN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,42.484073 +IN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,26.813248 +IN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,213.5 +IN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,131.50638 +IN,Nitrogen Oxides,5C_Incineration,,TON,409.3136019 +IN,Nitrogen Oxides,5C_Incineration,biomass,TON,1627.673636 +IN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,453.628014 +IN,Nitrogen Oxides,5C_Open-burning-residential,,TON,297.99 +IN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,30.2627893 +IN,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.3468 +IN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.051481236 +IN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1828.84465 +IN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.702475098 +IN,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,116.0454649 +IN,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,9.112504953 +IN,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.676022105 +IN,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.150302882 +IN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.155514167 +IN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,32.91110195 +IN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,9438.697576 +IN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.756026 +IN,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01053556 +IN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,69.84468448 +IN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,359.8868278 +IN,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,127.66432 +IN,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.84192 +IN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.392107438 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,56.79268802 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.710774864 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,830.3605857 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,41.9413962 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,8.64967217 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1512.17924 +IN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,31.911625 +IN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00100275 +IN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,232217.282 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,14.23437613 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.82131343 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,347.2768891 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000194508 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.31244674 +IN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,13.9073606 +IN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,13.37422529 +IN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.79856445 +IN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,14.10459809 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.027873 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM10 Filterable,2A1_Cement-production,,TON,1395.993248 +IN,PM10 Filterable,2A2_Lime-production,,TON,68.74071269 +IN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,48088.77561 +IN,PM10 Filterable,2A6_Other-minerals,,TON,18406.54905 +IN,PM10 Filterable,2B_Chemicals-other,,TON,158.3939994 +IN,PM10 Filterable,2C_Iron-steel-alloy,,TON,7571.353323 +IN,PM10 Filterable,2C3_Aluminum-production,,TON,940.4363851 +IN,PM10 Filterable,2C5_Lead-production,,TON,34.6370459 +IN,PM10 Filterable,2C7_Other-metal,,TON,855.597653 +IN,PM10 Filterable,2C7a_Copper-production,,TON,4.77 +IN,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,47.99 +IN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.63 +IN,PM10 Filterable,2D3d_Coating-application,,TON,336.071097 +IN,PM10 Filterable,2D3e_Degreasing,,TON,0 +IN,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,9.86450207 +IN,PM10 Filterable,2H1_Pulp-and-paper,,TON,159.6073819 +IN,PM10 Filterable,2H2_Food-and-beverage,,TON,1340.129279 +IN,PM10 Filterable,2H3_Other-industrial-processes,,TON,583.3575478 +IN,PM10 Filterable,2I_Wood-processing,,TON,11.98828982 +IN,PM10 Filterable,3Dc_Other-farm,,TON,198648.6399 +IN,PM10 Filterable,5A_Solid-waste-disposal,,TON,484.752995 +IN,PM10 Filterable,5C_Incineration,,TON,0.291197 +IN,PM10 Filterable,5C_Incineration,biomass,TON,36.35318 +IN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1542.335035 +IN,PM10 Filterable,5C_Open-burning-residential,,TON,1497.8212 +IN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,93.654615 +IN,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.0002 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1087.801111 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,35064.62035 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.885026 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.01119364 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,246.2788242 +IN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,626.4532826 +IN,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,209.02441 +IN,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.852804 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,295.5602131 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,60.18527715 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.886916184 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,53.3020939 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,175.4779596 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,65.67066968 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1720.912102 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,304.3517113 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.640630576 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5141.002793 +IN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,69.8751268 +IN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00401121 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1135.684716 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,64.76079802 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001727756 +IN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,140.2513502 +IN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,232217.282 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,123.6136935 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3456.238626 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,194.3713914 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,187.5679156 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3582.391709 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,308.217553 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,706.3910061 +IN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,23.68596519 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,756.0586049 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.042694434 +IN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,76.61713379 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,15.37098699 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,54.99347692 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,760.9274872 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.659795239 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,357.0505553 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,152.9179839 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,54.78468372 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.1211482 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,53.07828645 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,455.7677035 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,11728.7821 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,17.55828 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,50.6774539 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,8.37090665 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,658.431217 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1770.851907 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.53913763 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.025021586 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.2264473 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,394.2754582 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.9523272 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,190.3458647 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.027873 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1502.018152 +IN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,86.24292953 +IN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,48093.60433 +IN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,19383.90895 +IN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,223.5833779 +IN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,13724.93188 +IN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2430.532965 +IN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,127.5377449 +IN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1805.42583 +IN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,21.942 +IN,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,176.705462 +IN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.755374 +IN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,336.514215 +IN,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,9.86450207 +IN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,297.7871405 +IN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3385.96891 +IN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,902.2148851 +IN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,22.3991622 +IN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,198657.8324 +IN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,671 +IN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,544.1770432 +IN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,635.5012789 +IN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,580.7465625 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1542.335035 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1887.27 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,173.280615 +IN,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0002 +IN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.598400185 +IN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3406.874512 +IN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.551002 +IN,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.00987778 +IN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,69.85183548 +IN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,358.0923621 +IN,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,125.36758 +IN,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.528406 +IN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.316961873 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,49.7619294 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.72595773 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,309.6246828 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,26.97078456 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,8.123459465 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1401.27823 +IN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,31.90552 +IN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00100275 +IN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,20524.4823 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,11.53876337 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.628677516 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,132.956154 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.21813E-05 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.1092797 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.68806225 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,8.428441925 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.919266385 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.75752681 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.027873 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM2.5 Filterable,2A1_Cement-production,,TON,610.680512 +IN,PM2.5 Filterable,2A2_Lime-production,,TON,36.28866871 +IN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4809.149996 +IN,PM2.5 Filterable,2A6_Other-minerals,,TON,3827.459058 +IN,PM2.5 Filterable,2B_Chemicals-other,,TON,97.81929104 +IN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,3579.614261 +IN,PM2.5 Filterable,2C3_Aluminum-production,,TON,491.429298 +IN,PM2.5 Filterable,2C5_Lead-production,,TON,29.2410544 +IN,PM2.5 Filterable,2C7_Other-metal,,TON,568.895663 +IN,PM2.5 Filterable,2C7a_Copper-production,,TON,4.33 +IN,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,47.99 +IN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.5292 +IN,PM2.5 Filterable,2D3d_Coating-application,,TON,305.3716963 +IN,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +IN,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,8.20955611 +IN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,100.0221643 +IN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,466.5871458 +IN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,459.444062 +IN,PM2.5 Filterable,2I_Wood-processing,,TON,2.42963976 +IN,PM2.5 Filterable,3Dc_Other-farm,,TON,39727.92977 +IN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,99.38041836 +IN,PM2.5 Filterable,5C_Incineration,,TON,0.239751 +IN,PM2.5 Filterable,5C_Incineration,biomass,TON,27.835092 +IN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1188.986467 +IN,PM2.5 Filterable,5C_Open-burning-residential,,TON,1371.689 +IN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,74.831328 +IN,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.00004 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1064.488559 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,29032.80857 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.680002 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.01053586 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,246.2788242 +IN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,624.6587373 +IN,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,206.72767 +IN,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.53929 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,286.6664411 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,59.76512349 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.885053074 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,53.22473337 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,168.4339122 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,46.88618466 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1200.739988 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,200.0902943 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.109744085 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5029.637853 +IN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,69.8690218 +IN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00401121 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1101.614266 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,59.63901336 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001727756 +IN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,40.80877121 +IN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,20524.4823 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,110.4088598 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2060.571967 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,174.7352096 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,108.5285317 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3234.39005 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,277.4107347 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,622.3134558 +IN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.72852307 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,698.131793 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039354906 +IN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,74.37858627 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,12.68217562 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,49.67112919 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,546.8065596 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.429615233 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,356.6709167 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,148.3303936 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,50.54463068 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.1211482 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,51.48593295 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,419.3252686 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,11723.15489 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,16.957602 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,31.46451615 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.4916091 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,658.431217 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1717.726178 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.696300228 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.025021586 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.0696522 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,362.7346528 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.08375614 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,175.1181788 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.027873 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,716.705391 +IN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,53.79086666 +IN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4813.978725 +IN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4804.820736 +IN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,163.0086996 +IN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,9733.192363 +IN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1981.525952 +IN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,122.1418644 +IN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,1518.724048 +IN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,21.502 +IN,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,176.705462 +IN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.654574 +IN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,305.8148138 +IN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,8.20955611 +IN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,238.2018672 +IN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2389.647619 +IN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,778.3013721 +IN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,12.84055177 +IN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,39737.12232 +IN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,671 +IN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,158.8048936 +IN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,361.3955341 +IN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,338.0834984 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1188.986467 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1728.342 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,171.736362 +IN,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.00004 +IN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,19091.37133 +IN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,569160.5112 +IN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,13.45972 +IN,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.02140208 +IN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,451.4626846 +IN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,713.9454084 +IN,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,4673.7137 +IN,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.018505 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,101.826607 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.74504782 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.744095901 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1260.212216 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,390.8994909 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3477.620053 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,25758.03803 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,6330.654108 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,46.3012427 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,13310.50123 +IN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,44.07738 +IN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000317 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,420.435094 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.614762888 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000325741 +IN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,128.7589974 +IN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.186558185 +IN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,687.6562816 +IN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.122435964 +IN,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,37.01727583 +IN,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,91.83384057 +IN,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,7.24210683 +IN,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,17.57495731 +IN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.385275025 +IN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,226.1783315 +IN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.009214877 +IN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,154.2725122 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.17207034 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2908.339801 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10524.27053 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.06235072 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,29.9155992 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,31.66274973 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.807748043 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.198597772 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13.51963027 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.76696432 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,589.5257194 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1640.313 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,249.294501 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,149.8322085 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,54.42515 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,382.6027853 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.892043154 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004355614 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.689738 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.722057999 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.39890513 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.977531824 +IN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +IN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,80.99504 +IN,Sulfur Dioxide,2A1_Cement-production,,TON,4636.719 +IN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,202.49 +IN,Sulfur Dioxide,2A6_Other-minerals,,TON,2905.549559 +IN,Sulfur Dioxide,2B_Chemicals-other,,TON,701.7556384 +IN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,12746.56413 +IN,Sulfur Dioxide,2C3_Aluminum-production,,TON,3420.861115 +IN,Sulfur Dioxide,2C5_Lead-production,,TON,74.811163 +IN,Sulfur Dioxide,2C7_Other-metal,,TON,568.11507 +IN,Sulfur Dioxide,2C7b_Nickel-production,Other_Fuel,TON,3.54 +IN,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0426 +IN,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +IN,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,5.481 +IN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,528.6036782 +IN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0984212 +IN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,24.4 +IN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,40.567 +IN,Sulfur Dioxide,5C_Incineration,,TON,339.3122845 +IN,Sulfur Dioxide,5C_Incineration,biomass,TON,416.8164556 +IN,Sulfur Dioxide,5C_Open-burning-residential,,TON,49.665 +IN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.53892362 +IN,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,6.55 +IN,Volatile Organic Compounds,11C_Other-natural,,TON,297967.86 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,41.20883849 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1914.699983 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.02400464 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.01931977 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,90.07403108 +IN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1096.355711 +IN,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,283.00456 +IN,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,2.23133 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,372.307285 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2053.5483 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.813454175 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.534049709 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,24.89484994 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,38.83464609 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,29.34888919 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.29667524 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.770380604 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1365.697324 +IN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,164.098652 +IN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.001478 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1335.604739 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,803.5067623 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.004243353 +IN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,385.2222944 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,254.3426258 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,62642.2517 +IN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,163.714335 +IN,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3786.210436 +IN,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,4297.469402 +IN,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,658.2050594 +IN,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,908.6981626 +IN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1865.356933 +IN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1161.49079 +IN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.623185302 +IN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,46.3558581 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.107219415 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.9574374 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.76956824 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.09381855 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,288.4495097 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,220.0683962 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2993.258371 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.758572101 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,74.62634926 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11411.21337 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,9202.239338 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,8.236219 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,80.27194109 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.46203147 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,463.13685 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1861.203575 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,415.3055649 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.08433888 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.567738 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13279.86067 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,58.7981105 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,12093.2288 +IN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2.48 +IN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,2519.311702 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1233.5333 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,20797.66963 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,33.77609759 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,90.28907633 +IN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.06508 +IN,Volatile Organic Compounds,2A1_Cement-production,,TON,146.09235 +IN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,5.262933 +IN,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,2.44 +IN,Volatile Organic Compounds,2A6_Other-minerals,,TON,720.8360949 +IN,Volatile Organic Compounds,2B_Chemicals-other,,TON,848.8947971 +IN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,4239.028884 +IN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1680.319109 +IN,Volatile Organic Compounds,2C5_Lead-production,,TON,7.561898 +IN,Volatile Organic Compounds,2C7_Other-metal,,TON,184.1273125 +IN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0 +IN,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,1.68 +IN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,26878.17693 +IN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.486872 +IN,Volatile Organic Compounds,2D3d_Coating-application,,TON,49338.38616 +IN,Volatile Organic Compounds,2D3e_Degreasing,,TON,14020.84791 +IN,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,2026.997 +IN,Volatile Organic Compounds,2D3h_Printing,,TON,19764.37485 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,86.93607864 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,7672.149704 +IN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,207.964794 +IN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,3663.291957 +IN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3992.516776 +IN,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +IN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,12934 +IN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,396.5 +IN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,565.4328686 +IN,Volatile Organic Compounds,5C_Incineration,,TON,406.8901208 +IN,Volatile Organic Compounds,5C_Incineration,biomass,TON,433.8550151 +IN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1052.416774 +IN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,331.2656 +IN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,149.907875 +IN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,140.156 +IN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,10.64352285 +IN,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +IN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.43 +KS,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.518598 +KS,Ammonia,1A1a_Public-Electricity,hard_coal,TON,325.3698 +KS,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,32.571001 +KS,Ammonia,1A1b_Pet-refining,natural_gas,TON,27.310142 +KS,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.381745 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.438569249 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.225389871 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,84.4033673 +KS,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.8069172 +KS,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.189192 +KS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,200.5009416 +KS,Ammonia,1A2c_Chemicals,natural_gas,TON,0.15928 +KS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.86771055 +KS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.143895068 +KS,Ammonia,1A2g_Construction_and_Mining,natural_gas,TON,0 +KS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.289388914 +KS,Ammonia,1A3bii_Road-LDV,light_oil,TON,1234.669005 +KS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.482129146 +KS,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,37.34395452 +KS,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,39.80901087 +KS,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,8.105703096 +KS,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.03676424 +KS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.101320578 +KS,Ammonia,1A3c_Rail,diesel_oil,TON,16.60864289 +KS,Ammonia,1A3c_Rail,light_oil,TON,0.005636328 +KS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00446829 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.677853414 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.039282206 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.452039779 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.662841515 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.386289206 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0 +KS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.195483394 +KS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.717686113 +KS,Ammonia,1A4bi_Residential-stationary,biomass,TON,138.681373 +KS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.0766017 +KS,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.330422 +KS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,705.6219942 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.37445068 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.610784947 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +KS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011455432 +KS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.850285258 +KS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.140653875 +KS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.950906832 +KS,Ammonia,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.02817 +KS,Ammonia,2A6_Other-minerals,Other_Fuel,TON,174.877286 +KS,Ammonia,2B_Chemicals-other,,TON,1142.52368 +KS,Ammonia,2C_Iron-steel-alloy,,TON,2.473631 +KS,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.000615 +KS,Ammonia,2D3d_Coating-application,,TON,0.36096 +KS,Ammonia,2D3h_Printing,,TON,5.6097 +KS,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,564.83307 +KS,Ammonia,3B1a_Cattle-dairy,,TON,62485.37 +KS,Ammonia,3B1b_Cattle-non-dairy,,TON,14832.81234 +KS,Ammonia,3B2_Manure-sheep,,TON,315.44781 +KS,Ammonia,3B3_Manure-swine,,TON,12909.841 +KS,Ammonia,3B4_Manure-other,,TON,3425.2425 +KS,Ammonia,3B4_Manure-poultry,,TON,374.547796 +KS,Ammonia,3B4d_Manure-goats,,TON,33.417 +KS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,59049.88903 +KS,Ammonia,3Dc_Other-farm,,TON,2.0352 +KS,Ammonia,5C_Open-burning-land-clearing,,TON,0.6377 +KS,Ammonia,5C_Open-burning-residential,,TON,0.002852064 +KS,Ammonia,5D1_Wastewater-domestic,,TON,10.6420003 +KS,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,6.7928271 +KS,Ammonia,6A_Other-commertial,Other_Fuel,TON,1359.576 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,177029.8925 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,194900.2997 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14256.7341 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,598662.1027 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,11823.10593 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.478517927 +KS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,114808.2831 +KS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12487487.26 +KS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,104088.0789 +KS,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,655396.1574 +KS,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3260950.835 +KS,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,259276.566 +KS,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,648209.3995 +KS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,50169.88209 +KS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,8875.51086 +KS,Carbon Dioxide,1A3c_Rail,light_oil,TON,435.3835702 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,81384.23823 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,113858.0869 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5049.321547 +KS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,24023.72384 +KS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,198255.1413 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2750771.048 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,45724.78133 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,315.2685405 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1400.2838 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,55119.62991 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17321.5769 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,63786.639 +KS,Carbon Monoxide,11C_Other-natural,,TON,133414.375 +KS,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.0322 +KS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,12.844395 +KS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7388.3424 +KS,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,15.5181 +KS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1008.938124 +KS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1806.157151 +KS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,96.088939 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,888.6071994 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15110.74523 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,931.9363547 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.041343832 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,549.8542462 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,29.33689082 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,112.4194585 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,17.70222079 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16012.30191 +KS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,13.725218 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2862.380448 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3370.377256 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.213698508 +KS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4288.206793 +KS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,472.4146356 +KS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,353933.0463 +KS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,396.4086736 +KS,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,27410.10406 +KS,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6586.244623 +KS,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1230.226883 +KS,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1471.416575 +KS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2961.222999 +KS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5377.212995 +KS,Carbon Monoxide,1A3c_Rail,light_oil,TON,133.652286 +KS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.93547 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,34.70180411 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.273920695 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1625.684918 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,492.3694034 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,34253.14031 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,129.7976607 +KS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,114.1517736 +KS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,68233.38066 +KS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,16887.90439 +KS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.38476575 +KS,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,0.001275 +KS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.73012 +KS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1625.959289 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15227.40595 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13539.80209 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,34.68877909 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.053936 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,13828.36204 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,34.8680624 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9954.31141 +KS,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,493.31123 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,3.797440003 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,39.278123 +KS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.145088 +KS,Carbon Monoxide,2A1_Cement-production,,TON,552.625 +KS,Carbon Monoxide,2A6_Other-minerals,,TON,2327.173375 +KS,Carbon Monoxide,2B_Chemicals-other,,TON,3116.773422 +KS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,733.66959 +KS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,12.356468 +KS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,1.38125 +KS,Carbon Monoxide,2D3d_Coating-application,,TON,12.766765 +KS,Carbon Monoxide,2D3e_Degreasing,,TON,0.004429 +KS,Carbon Monoxide,2H2_Food-and-beverage,,TON,467.795277 +KS,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,110.214465 +KS,Carbon Monoxide,3Dc_Other-farm,,TON,3.1584 +KS,Carbon Monoxide,3F_Ag-res-on-field,,TON,49560 +KS,Carbon Monoxide,5A_Solid-waste-disposal,,TON,447.61828 +KS,Carbon Monoxide,5C_Incineration,,TON,0.043835841 +KS,Carbon Monoxide,5C_Incineration,biomass,TON,0.015233183 +KS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2114.329916 +KS,Carbon Monoxide,5C_Open-burning-residential,,TON,2566.289119 +KS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,92.441285 +KS,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.738967418 +KS,Methane,1A3bii_Road-LDV,light_oil,TON,1404.361834 +KS,Methane,1A3biii_Road-bus,diesel_oil,TON,1.111311609 +KS,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,105.6997829 +KS,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,86.35021174 +KS,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,3.890505291 +KS,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9.345655976 +KS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.70960117 +KS,Nitrogen Oxides,11C_Other-natural,,TON,60081.3125 +KS,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +KS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,37.505652 +KS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,50225.827 +KS,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2541.766146 +KS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2730.803964 +KS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,111.731098 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1516.497476 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2049.97071 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,152.9546158 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1.692220589 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2206.423282 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,51.52391142 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1232.732191 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,5.19971986 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,44654.04887 +KS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,11.739474 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5440.424585 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,62.22558461 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045570101 +KS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,200.3835553 +KS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,732.5248061 +KS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,41947.52904 +KS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1066.654058 +KS,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2759.540317 +KS,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,26343.18928 +KS,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1813.615395 +KS,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4779.565551 +KS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,131.0140631 +KS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,37430.31292 +KS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.950894094 +KS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10.0456 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,126.4264098 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.989066626 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1720.653064 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,835.1018908 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,576.1202949 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.05697212 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,245.1604081 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,713.0739208 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,269.370278 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.3854357 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,0.00825 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,23.956 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4082.184914 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29254.8037 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,286.2436015 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.727126782 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.115634 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,137.7600265 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,206.96962 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,376.7408311 +KS,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,157.6665 +KS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,19.681466 +KS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.3632 +KS,Nitrogen Oxides,2A1_Cement-production,,TON,2269.828 +KS,Nitrogen Oxides,2A6_Other-minerals,,TON,4730.954631 +KS,Nitrogen Oxides,2B_Chemicals-other,,TON,3112.072199 +KS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,43.082282 +KS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,26.551476 +KS,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.584375 +KS,Nitrogen Oxides,2D3d_Coating-application,,TON,12.085374 +KS,Nitrogen Oxides,2D3e_Degreasing,,TON,0.028661 +KS,Nitrogen Oxides,2H2_Food-and-beverage,,TON,141.055957 +KS,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,274.71466 +KS,Nitrogen Oxides,3Dc_Other-farm,,TON,3.76 +KS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2065 +KS,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,31.98597 +KS,Nitrogen Oxides,5C_Incineration,,TON,20.0880247 +KS,Nitrogen Oxides,5C_Incineration,biomass,TON,0.001140676 +KS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,62.47381 +KS,Nitrogen Oxides,5C_Open-burning-residential,,TON,310.119099 +KS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,6.8157 +KS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.412802345 +KS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,802.7897311 +KS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.253013837 +KS,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,47.52658508 +KS,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.319154617 +KS,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.047065306 +KS,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.174941472 +KS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.715433648 +KS,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.010741 +KS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.845701238 +KS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2692.98069 +KS,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,3.13 +KS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,38.58050554 +KS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,476.8449679 +KS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.76810893 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.637783179 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.338942886 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3.645192819 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.722998791 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,268.4043901 +KS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.40660942 +KS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,312717.3 +KS,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.370002473 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.610356138 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.171480831 +KS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.067905601 +KS,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.099714288 +KS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.333933724 +KS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.42074014 +KS,PM10 Filterable,2A1_Cement-production,,TON,320.6633563 +KS,PM10 Filterable,2A2_Lime-production,,TON,2.566572707 +KS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,41618.54892 +KS,PM10 Filterable,2A6_Other-minerals,,TON,2994.105832 +KS,PM10 Filterable,2B_Chemicals-other,,TON,138.9169134 +KS,PM10 Filterable,2C_Iron-steel-alloy,,TON,148.5160068 +KS,PM10 Filterable,2C5_Lead-production,,TON,0.00285096 +KS,PM10 Filterable,2C6_Zinc-production,,TON,0.00006636 +KS,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,244.6500429 +KS,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0414375 +KS,PM10 Filterable,2D3d_Coating-application,,TON,0 +KS,PM10 Filterable,2D3e_Degreasing,,TON,0.0763111 +KS,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.664493 +KS,PM10 Filterable,2H2_Food-and-beverage,,TON,199.2293941 +KS,PM10 Filterable,2H3_Other-industrial-processes,,TON,247.2619223 +KS,PM10 Filterable,2I_Wood-processing,,TON,2.1402362 +KS,PM10 Filterable,3Dc_Other-farm,,TON,414020.56 +KS,PM10 Filterable,5A_Solid-waste-disposal,,TON,83.7226553 +KS,PM10 Filterable,5C_Incineration,,TON,0.747227 +KS,PM10 Filterable,5C_Incineration,biomass,TON,0.061418243 +KS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,205.6427079 +KS,PM10 Filterable,5C_Open-burning-residential,,TON,1147.14195 +KS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,15.307843 +KS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.1959196 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.011656 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.363101 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3100.00858 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,4.21 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,95.22064725 +KS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,795.221573 +KS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,4.509848 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,111.061379 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.45743052 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.761182059 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.639503376 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,249.6765751 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.85545758 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,427.8442223 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.571587144 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,943.3265154 +KS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.921239 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,453.4402319 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,18.3062852 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +KS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,93.49696734 +KS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,315150.823 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,54.77355978 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1488.47105 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,66.18311642 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,78.94926341 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1411.238918 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,128.5540444 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,283.22524 +KS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.401710682 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1230.213293 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.058703571 +KS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.357463 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,2.281862592 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,31.62660572 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.190256011 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,46.92044178 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,85.50580755 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,30.63088841 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.630384004 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,20.51436832 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,189.1415222 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2421.512161 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.18241 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,58.1467 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,21.1674954 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2794.440652 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.168080107 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.039832776 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.306766 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,119.613798 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.228286302 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,57.45313669 +KS,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,90.4687 +KS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,24 +KS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.906104 +KS,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,346.6821336 +KS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,3.059133 +KS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,41622.407 +KS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3871.607308 +KS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1331.810163 +KS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,379.481079 +KS,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.008032 +KS,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.000237 +KS,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,984.6448881 +KS,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.244375 +KS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,103.306003 +KS,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.077219 +KS,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0000088 +KS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.96025 +KS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1460.825691 +KS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,487.6032103 +KS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,3.09282 +KS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,416662.7906 +KS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6195 +KS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,100.550411 +KS,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.37291927 +KS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.10613327 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,205.6413 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1963.47996 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,25.3916 +KS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.23405 +KS,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.009312 +KS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.100620573 +KS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1259.3188 +KS,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.78 +KS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,38.56467694 +KS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,476.7162948 +KS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.76810893 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.49432643 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.178074606 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3.642183081 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.101995424 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,267.7523026 +KS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.40660942 +KS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,30749.51981 +KS,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.155787998 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.609245982 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.170265762 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.052186709 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.076632295 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.558979257 +KS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.19029714 +KS,PM2.5 Filterable,2A1_Cement-production,,TON,127.2544256 +KS,PM2.5 Filterable,2A2_Lime-production,,TON,1.317930258 +KS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4162.37141 +KS,PM2.5 Filterable,2A6_Other-minerals,,TON,907.2093542 +KS,PM2.5 Filterable,2B_Chemicals-other,,TON,99.17362009 +KS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,38.49720362 +KS,PM2.5 Filterable,2C5_Lead-production,,TON,0.00250314 +KS,PM2.5 Filterable,2C6_Zinc-production,,TON,0.000059147 +KS,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,75.39816514 +KS,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0308125 +KS,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +KS,PM2.5 Filterable,2D3e_Degreasing,,TON,0.0598241 +KS,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.234655 +KS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,142.1531988 +KS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,206.0562271 +KS,PM2.5 Filterable,2I_Wood-processing,,TON,0.924905003 +KS,PM2.5 Filterable,3Dc_Other-farm,,TON,82831.92701 +KS,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,13.03854199 +KS,PM2.5 Filterable,5C_Incineration,,TON,0.747227 +KS,PM2.5 Filterable,5C_Incineration,biomass,TON,0.052774943 +KS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,158.5299017 +KS,PM2.5 Filterable,5C_Open-burning-residential,,TON,1050.54042 +KS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,11.8008643 +KS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.9215125 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.010227 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.618020226 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1666.34605 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.86 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,95.20481865 +KS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,795.0928999 +KS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,4.509848 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,107.7230905 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.25758817 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.760860743 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.49963153 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,170.0807081 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.858375833 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,290.0334247 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.394208884 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,923.1098473 +KS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.921239 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,439.8368952 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.85236455 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +KS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,16.81850295 +KS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,30384.7 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,49.38179478 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,918.7147587 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,59.16187652 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,48.27785873 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1286.377799 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,116.2656148 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,252.0333461 +KS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.439530177 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1129.596111 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.054114186 +KS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.346741 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.993981508 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.96002093 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.175558073 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,46.47490729 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.9406414 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,28.26021101 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.630384004 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,19.89892762 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,174.0175464 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2416.9523 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.1632572 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,57.7628 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.4268209 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2710.607383 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.515098246 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.039832776 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2375618 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,110.0452438 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.101440408 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,52.85689679 +KS,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0152 +KS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,24 +KS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.675662 +KS,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,153.2732359 +KS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.810490399 +KS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4162.073837 +KS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1040.997854 +KS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,207.0368898 +KS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,269.4624511 +KS,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.00768418 +KS,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.000229787 +KS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,160.5501353 +KS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,102.609773 +KS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.060732 +KS,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0000088 +KS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.530412 +KS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,915.8340815 +KS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,342.8797821 +KS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,1.877495003 +KS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,82874.13796 +KS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6195 +KS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,24.59629625 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.378337 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.09207224 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,158.5299017 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1050.668594 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.8008643 +KS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.9596438 +KS,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +KS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,6.7926882 +KS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,95894.534 +KS,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,7.900912291 +KS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,2329.459256 +KS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,8.2678781 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.00963847 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.075713066 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.322780703 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1.035000415 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,196.7807491 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,105.9653471 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,6550.332173 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,10.51767319 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,297.9822699 +KS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.065366 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,130.2421289 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.337516594 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.46124E-05 +KS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29.02320157 +KS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.264130961 +KS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,634.3721955 +KS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.149477995 +KS,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,33.28791831 +KS,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,35.76456892 +KS,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.856447418 +KS,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,7.0988588 +KS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.547715559 +KS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,386.7349051 +KS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.01282596 +KS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.593733 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.944317948 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.072770223 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.37828613 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.70489571 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.277192415 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.111627213 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,5.226395051 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.894823218 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,49.2080197 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3.27858679 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.65175 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,24.56707185 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,598.4399528 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.362471736 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006933851 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.304596 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.634261631 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.267447166 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.894648 +KS,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,57.93706 +KS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0712 +KS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.798179 +KS,Sulfur Dioxide,2A1_Cement-production,,TON,790.911 +KS,Sulfur Dioxide,2A6_Other-minerals,,TON,379.31411 +KS,Sulfur Dioxide,2B_Chemicals-other,,TON,3456.990278 +KS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,32.456708 +KS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.17424 +KS,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.116875 +KS,Sulfur Dioxide,2D3d_Coating-application,,TON,0.426948 +KS,Sulfur Dioxide,2D3e_Degreasing,,TON,0.807705 +KS,Sulfur Dioxide,2H2_Food-and-beverage,,TON,27.941588 +KS,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.004541 +KS,Sulfur Dioxide,3Dc_Other-farm,,TON,0.02256 +KS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,330.4 +KS,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,27.245772 +KS,Sulfur Dioxide,5C_Incineration,,TON,2.566885867 +KS,Sulfur Dioxide,5C_Incineration,biomass,TON,0.004519203 +KS,Sulfur Dioxide,5C_Open-burning-residential,,TON,30.19162746 +KS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.88772962 +KS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,2.04 +KS,Volatile Organic Compounds,11C_Other-natural,,TON,495008.85 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.00644 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.424508 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,685.89421 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.810445 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,71.48887935 +KS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1731.330648 +KS,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,828.9077806 +KS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2002.486172 +KS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,13.625405 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,138.6733764 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,703.6630048 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.626683494 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.019786522 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.45095611 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.296065505 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.351389134 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.152092308 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3061.512934 +KS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,2.324738 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,567.0472884 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,235.8744685 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000740528 +KS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,181.633075 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,105.6913899 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,30536.07069 +KS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,59.13810128 +KS,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1701.635131 +KS,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1497.772283 +KS,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,270.1561768 +KS,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,341.8955623 +KS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,666.9902032 +KS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1870.432106 +KS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,5.312488583 +KS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.217551 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,150.6297899 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.887100277 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024967103 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,141.6916019 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,123.0539974 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1741.433767 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.424483371 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,28.84387902 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5058.771923 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3044.127265 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.053860409 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.931914 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,223.4688603 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2936.357443 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,620.4611071 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.134271781 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.223134 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3886.012223 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.583350511 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3595.598119 +KS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,55.99 +KS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,976.236776 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,643.8234573 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,19024.8954 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,833.3960868 +KS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,553.771649 +KS,Volatile Organic Compounds,2A1_Cement-production,,TON,19.288976 +KS,Volatile Organic Compounds,2A6_Other-minerals,,TON,20.65038614 +KS,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1004.176916 +KS,Volatile Organic Compounds,2B_Chemicals-other,,TON,4016.17991 +KS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,458.818142 +KS,Volatile Organic Compounds,2C5_Lead-production,Other_Fuel,TON,132.146 +KS,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.11388 +KS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,1511.453839 +KS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,0 +KS,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.34 +KS,Volatile Organic Compounds,2D3d_Coating-application,,TON,13947.34752 +KS,Volatile Organic Compounds,2D3e_Degreasing,,TON,2696.134224 +KS,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,687.88 +KS,Volatile Organic Compounds,2D3h_Printing,,TON,9516.063649 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1575.982085 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,281.8099149 +KS,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,594.8934 +KS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1139.994888 +KS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3208.872305 +KS,Volatile Organic Compounds,2I_Wood-processing,,TON,4.75 +KS,Volatile Organic Compounds,3Dc_Other-farm,,TON,24.014199 +KS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1716.930826 +KS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,3717 +KS,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,135.747766 +KS,Volatile Organic Compounds,5C_Incineration,,TON,0.467743022 +KS,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.000675387 +KS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,149.7732 +KS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,442.3315278 +KS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,28.5898 +KS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,53.1354503 +KS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,123.9115595 +KS,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.032864 +KY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.18224 +KY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,786.9283153 +KY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,5.6094 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.898644904 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.224815348 +KY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.028 +KY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,9.5552 +KY,Ammonia,1A2c_Chemicals,natural_gas,TON,0.74 +KY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.303679576 +KY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.23013858 +KY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.502414489 +KY,Ammonia,1A3bii_Road-LDV,light_oil,TON,1852.582022 +KY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.870459794 +KY,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,61.91407272 +KY,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,75.84064292 +KY,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,13.60256997 +KY,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,20.41793538 +KY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.58245127 +KY,Ammonia,1A3c_Rail,diesel_oil,TON,6.962156228 +KY,Ammonia,1A3c_Rail,light_oil,TON,0.00377332 +KY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.54332397 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.0096 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.409 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.662070591 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.384571882 +KY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.206511384 +KY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.379258748 +KY,Ammonia,1A4bi_Residential-stationary,biomass,TON,237.182341 +KY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,5.34944558 +KY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,10.4616075 +KY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.235415149 +KY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,475.7017315 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.167714045 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.207832041 +KY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017237507 +KY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.150901694 +KY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.449663928 +KY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.040826837 +KY,Ammonia,2A1_Cement-production,,TON,29.68 +KY,Ammonia,2A5b_Construction-and-demolition,,TON,0 +KY,Ammonia,2B_Chemicals-other,,TON,101.558 +KY,Ammonia,2D3a_Domestic-solvent-use,,TON,0 +KY,Ammonia,2D3d_Coating-application,,TON,0 +KY,Ammonia,2D3f_Dry-cleaning,,TON,0 +KY,Ammonia,2D3h_Printing,,TON,1.408 +KY,Ammonia,2D3i_Other-solvent-use,heavy_oil,TON,0 +KY,Ammonia,2H2_Food-and-beverage,,TON,0 +KY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.63 +KY,Ammonia,3B1a_Cattle-dairy,,TON,3142.003352 +KY,Ammonia,3B1b_Cattle-non-dairy,,TON,11150.57923 +KY,Ammonia,3B2_Manure-sheep,,TON,129.333402 +KY,Ammonia,3B3_Manure-swine,,TON,3039.810888 +KY,Ammonia,3B4_Manure-other,,TON,2357.6388 +KY,Ammonia,3B4_Manure-poultry,,TON,13499.47781 +KY,Ammonia,3B4d_Manure-goats,,TON,684.409176 +KY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,17645.05528 +KY,Ammonia,5A_Solid-waste-disposal,,TON,0 +KY,Ammonia,5C_Incineration,,TON,0 +KY,Ammonia,5C_Open-burning-yard-waste,,TON,0 +KY,Ammonia,5D1_Wastewater-domestic,,TON,16.10317173 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,233641.833 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,277217.938 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15554.39677 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1020942.015 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,18920.22605 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.957029082 +KY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,188924.3841 +KY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,19681980.04 +KY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,202049.9223 +KY,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1088592.877 +KY,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6239368.168 +KY,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,429337.2729 +KY,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1150166.845 +KY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,104964.3978 +KY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5936.950515 +KY,Carbon Dioxide,1A3c_Rail,light_oil,TON,291.4325457 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,81289.5907 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,113717.7278 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5047.656084 +KY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,25378.8618 +KY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,246764.2921 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,758329.828 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,15311.65042 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,82.3958486 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2107.0589 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,135447.071 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,55376.29497 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,203978.1243 +KY,Carbon Monoxide,11C_Other-natural,,TON,77344.801 +KY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,10.438455 +KY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,30.99864108 +KY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,15480.678 +KY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.92 +KY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,438.4989306 +KY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,900.5828252 +KY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,44.747281 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2521.766087 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19907.28728 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1200.350822 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1510.37877 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.33847057 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,709.8503917 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.466221918 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6314.621659 +KY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,230.4402765 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.41875 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.45 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.4066463 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5249.789959 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5309.208167 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.42739691 +KY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4221.37976 +KY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,707.1733747 +KY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,451326.6292 +KY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,757.2040779 +KY,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,40107.6323 +KY,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,12801.79823 +KY,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1854.064358 +KY,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2637.515213 +KY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5219.550006 +KY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2330.283843 +KY,Carbon Monoxide,1A3c_Rail,light_oil,TON,91.04878109 +KY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1847.003462 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,290.0737569 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.81137122 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,299.5985581 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,482.2336963 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,491.781389 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,33646.03053 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,129.7021396 +KY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,120.7168081 +KY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,84287.15439 +KY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,35801.7076 +KY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,26.7472306 +KY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1438.470589 +KY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,16.17708122 +KY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1103.823141 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4094.086658 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5062.337112 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.065204311 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.161962 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,32374.65077 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,111.4721198 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,32867.77422 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,4.782551 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.4634 +KY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,35.2774761 +KY,Carbon Monoxide,2A1_Cement-production,,TON,475.51 +KY,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1926.57245 +KY,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,0 +KY,Carbon Monoxide,2A6_Other-minerals,,TON,2026.987197 +KY,Carbon Monoxide,2B_Chemicals-other,,TON,109.912844 +KY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2980.384196 +KY,Carbon Monoxide,2C3_Aluminum-production,,TON,38408.05843 +KY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,132.788943 +KY,Carbon Monoxide,2C7a_Copper-production,,TON,0.3675 +KY,Carbon Monoxide,2D3a_Domestic-solvent-use,,TON,0 +KY,Carbon Monoxide,2D3d_Coating-application,,TON,0 +KY,Carbon Monoxide,2D3f_Dry-cleaning,,TON,0 +KY,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,4.007 +KY,Carbon Monoxide,2D3i_Other-solvent-use,heavy_oil,TON,0 +KY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1334.101084 +KY,Carbon Monoxide,2H2_Food-and-beverage,,TON,477.181211 +KY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1185.995695 +KY,Carbon Monoxide,3F_Ag-res-on-field,,TON,3367 +KY,Carbon Monoxide,5A_Solid-waste-disposal,,TON,489.1245568 +KY,Carbon Monoxide,5C_Incineration,,TON,0.045408902 +KY,Carbon Monoxide,5C_Incineration,biomass,TON,46.34799764 +KY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,20980.81878 +KY,Carbon Monoxide,5C_Open-burning-residential,,TON,7859.78652 +KY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,3774.411135 +KY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.00010905 +KY,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.376006411 +KY,Methane,1A3bii_Road-LDV,light_oil,TON,1796.382431 +KY,Methane,1A3biii_Road-bus,diesel_oil,TON,2.161538438 +KY,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,151.5035061 +KY,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,245.3450782 +KY,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,7.430200107 +KY,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,20.38434699 +KY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.12410329 +KY,Nitrogen Oxides,11C_Other-natural,,TON,15153.7429 +KY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,34.66326444 +KY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,181.6546054 +KY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,158705.6154 +KY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,19.28 +KY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,394.7441448 +KY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1862.203014 +KY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,45.2984851 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2097.382279 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2999.085436 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,206.1664189 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,819.2955299 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,102.9619759 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1846.243421 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,63.10418707 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,15938.68425 +KY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,162.0024874 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.675 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,1.8 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.626583 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,9594.796342 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,100.9346079 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.091140197 +KY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2014.190093 +KY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1140.869256 +KY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,53918.32858 +KY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2105.110182 +KY,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4128.911961 +KY,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,49644.3318 +KY,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,2835.209147 +KY,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8241.193084 +KY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,214.0493122 +KY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16388.80704 +KY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.275717467 +KY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11370.77366 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,134.4763655 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,53.63869155 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,473.709848 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,651.8078415 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,836.8270531 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,582.2306569 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.02656082 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,258.8640614 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,914.1231236 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,564.1622521 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,96.29005135 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,47.53645976 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,58.23749 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2777.774431 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8049.1965 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,82.62072977 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.019233764 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.279719 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,300.8556306 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,661.6667693 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1141.441301 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,1.9380877 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.1853 +KY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,369.6110921 +KY,Nitrogen Oxides,2A1_Cement-production,,TON,2453.2 +KY,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1506.4976 +KY,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,0 +KY,Nitrogen Oxides,2A6_Other-minerals,,TON,1653.848952 +KY,Nitrogen Oxides,2B_Chemicals-other,,TON,598.230792 +KY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1370.199432 +KY,Nitrogen Oxides,2C3_Aluminum-production,,TON,85.80234537 +KY,Nitrogen Oxides,2C6_Zinc-production,,TON,0.3572 +KY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,129.6636449 +KY,Nitrogen Oxides,2C7a_Copper-production,,TON,1.8375 +KY,Nitrogen Oxides,2D3a_Domestic-solvent-use,,TON,0 +KY,Nitrogen Oxides,2D3d_Coating-application,,TON,2.308 +KY,Nitrogen Oxides,2D3f_Dry-cleaning,,TON,0 +KY,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,4.826 +KY,Nitrogen Oxides,2D3i_Other-solvent-use,heavy_oil,TON,0 +KY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,766.1526 +KY,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +KY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2634.264166 +KY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,155.4 +KY,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,73.0574873 +KY,Nitrogen Oxides,5C_Incineration,,TON,0.021253155 +KY,Nitrogen Oxides,5C_Incineration,biomass,TON,42.80401435 +KY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,620.7342974 +KY,Nitrogen Oxides,5C_Open-burning-residential,,TON,554.80842 +KY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,239.968615 +KY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.658522032 +KY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1175.729027 +KY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.479775213 +KY,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,76.94134748 +KY,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6.280695139 +KY,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.677692496 +KY,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.134077049 +KY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.446845075 +KY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,5.55225319 +KY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.97400984 +KY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,6114.738286 +KY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.22589 +KY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,52.04757323 +KY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,93.00716898 +KY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.44749108 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,288.0991484 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.056627836 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,34.24352263 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.14963108 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,501.4004941 +KY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,4.82015298 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2537386 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,6.39 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05161373 +KY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,77536.8111 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,95.34019817 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.491594026 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,65.21421921 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.32313996 +KY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.777403075 +KY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,32.4707196 +KY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.49424835 +KY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.517906379 +KY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.16155375 +KY,PM10 Filterable,2A1_Cement-production,,TON,412.1623085 +KY,PM10 Filterable,2A2_Lime-production,,TON,453.6030538 +KY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,20556.61277 +KY,PM10 Filterable,2A6_Other-minerals,,TON,23253.62757 +KY,PM10 Filterable,2B_Chemicals-other,,TON,993.3916525 +KY,PM10 Filterable,2C_Iron-steel-alloy,,TON,883.9371725 +KY,PM10 Filterable,2C3_Aluminum-production,,TON,1290.861723 +KY,PM10 Filterable,2C5_Lead-production,,TON,1.99737883 +KY,PM10 Filterable,2C6_Zinc-production,,TON,4.597319 +KY,PM10 Filterable,2C7_Other-metal,,TON,271.5530218 +KY,PM10 Filterable,2C7a_Copper-production,,TON,9.361748 +KY,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,12.46066836 +KY,PM10 Filterable,2D3d_Coating-application,,TON,62.0402806 +KY,PM10 Filterable,2D3e_Degreasing,,TON,0 +KY,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.00007497 +KY,PM10 Filterable,2H1_Pulp-and-paper,,TON,876.0087927 +KY,PM10 Filterable,2H2_Food-and-beverage,,TON,382.637479 +KY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,2534.692487 +KY,PM10 Filterable,2I_Wood-processing,,TON,3.69738388 +KY,PM10 Filterable,3Dc_Other-farm,,TON,51070.3964 +KY,PM10 Filterable,5A_Solid-waste-disposal,,TON,70.64561741 +KY,PM10 Filterable,5C_Incineration,,TON,0.0600108 +KY,PM10 Filterable,5C_Incineration,biomass,TON,88.11505767 +KY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2110.495116 +KY,PM10 Filterable,5C_Open-burning-residential,,TON,3513.78554 +KY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,167.6040677 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.7620408 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.28864189 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8350.740034 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.24 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,94.46172786 +KY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,226.806521 +KY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.32999859 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,155.1542899 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.40534048 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.969658433 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,340.4507385 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,10.39026394 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,39.04491823 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,14.21767416 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1152.853016 +KY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7.270168368 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.304234232 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,7.66164 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.134195648 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,822.6442622 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.25333965 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574082 +KY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,103.9685059 +KY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,77536.8111 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,77.90611434 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1930.597013 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,131.6947437 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,106.7720669 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2508.465577 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,193.5425786 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,482.1112047 +KY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.21739857 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,541.1808786 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039294851 +KY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,441.236863 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,115.8857619 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.18401665 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,85.53429895 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,87.79142247 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,85.40352142 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,30.59181392 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.630202761 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.69915024 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,220.4539874 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4588.734185 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,12.73167997 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,32.69071115 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.7002879 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,14.34655785 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,751.3824461 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.31001361 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010410365 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.4727602 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,353.4488838 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.5178302 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,183.7244165 +KY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,41.7 +KY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.323145347 +KY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,443.5323783 +KY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,584.8928347 +KY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,20556.61277 +KY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,23844.22283 +KY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1820.559779 +KY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1604.290297 +KY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3713.233983 +KY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,7.28956927 +KY,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,21.1476674 +KY,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,501.3742073 +KY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,37.630155 +KY,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,35.05988329 +KY,PM10 Primary (Filt + Cond),2D3a_Domestic-solvent-use,,TON,0 +KY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,104.5227836 +KY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KY,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0 +KY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,1.502 +KY,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1617.937064 +KY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1611.095938 +KY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3810.918783 +KY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,6.90826894 +KY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,51088.39155 +KY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,518 +KY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,77.80813475 +KY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.066744788 +KY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,98.00256119 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2110.495116 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3513.78554 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,167.6040677 +KY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.23178164 +KY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.247163268 +KY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4181.068358 +KY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.22589 +KY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,47.74360699 +KY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,88.813493 +KY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.427117 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,245.6866998 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.379607566 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,14.71873564 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.914795081 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,405.4386322 +KY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,4.606510723 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.145946507 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,3.63987 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.048387856 +KY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11237.72343 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,84.9351983 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.746772746 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,40.26847304 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.24475185 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.4400416 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,19.92129443 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.685393697 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.034848908 +KY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.146309754 +KY,PM2.5 Filterable,2A1_Cement-production,,TON,278.2534456 +KY,PM2.5 Filterable,2A2_Lime-production,,TON,127.1214759 +KY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2055.661277 +KY,PM2.5 Filterable,2A6_Other-minerals,,TON,4496.184553 +KY,PM2.5 Filterable,2B_Chemicals-other,,TON,764.4241837 +KY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,554.8564921 +KY,PM2.5 Filterable,2C3_Aluminum-production,,TON,919.4198926 +KY,PM2.5 Filterable,2C5_Lead-production,,TON,1.847029166 +KY,PM2.5 Filterable,2C6_Zinc-production,,TON,4.5463343 +KY,PM2.5 Filterable,2C7_Other-metal,,TON,151.6054645 +KY,PM2.5 Filterable,2C7a_Copper-production,,TON,7.5470481 +KY,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,4.132458384 +KY,PM2.5 Filterable,2D3d_Coating-application,,TON,0.322062 +KY,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +KY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,530.5363292 +KY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,120.6748903 +KY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1531.205693 +KY,PM2.5 Filterable,2I_Wood-processing,,TON,2.601960136 +KY,PM2.5 Filterable,3Dc_Other-farm,,TON,10213.01357 +KY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,20.33362704 +KY,PM2.5 Filterable,5C_Incineration,,TON,0.05076418 +KY,PM2.5 Filterable,5C_Incineration,biomass,TON,57.87369516 +KY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1626.981638 +KY,PM2.5 Filterable,5C_Open-burning-residential,,TON,3217.88867 +KY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,129.2065754 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.44156825 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,10.56179619 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6417.071136 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.24 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,93.24447505 +KY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,222.620837 +KY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.32999859 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,150.4492111 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.16032638 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.966283628 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,299.9325547 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,8.71324437 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,19.52567139 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,9.983602366 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1071.697695 +KY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7.056529051 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.196441179 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,4.91152 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.130969774 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,797.9646481 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.93006424 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574082 +KY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,46.34516144 +KY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11237.72343 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,70.08857813 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1132.345968 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,118.8771547 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,60.3810776 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2283.194422 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,175.2920947 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,428.7192874 +KY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.39914964 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,498.9214986 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036222514 +KY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,416.111017 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,106.191155 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.64101323 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,57.95269447 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,89.61100122 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.84137904 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,28.22418861 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.630202761 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.0481762 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,202.825444 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4501.559 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,11.39432454 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,20.14130225 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,6.89143336 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.86349969 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,728.8409607 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,15.005331 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010410365 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3685754 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,325.1738075 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.11229511 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,169.0264065 +KY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,41.7 +KY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.307901407 +KY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,309.6226005 +KY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,273.3889767 +KY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2055.661277 +KY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,5306.633843 +KY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1618.708759 +KY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1331.39576 +KY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3353.889294 +KY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,7.143876786 +KY,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,21.0966857 +KY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,416.8879961 +KY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,35.815428 +KY,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,30.76649521 +KY,PM2.5 Primary (Filt + Cond),2D3a_Domestic-solvent-use,,TON,0 +KY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,103.2676476 +KY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KY,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0 +KY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,1.502 +KY,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1297.063502 +KY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1357.1545 +KY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3016.57753 +KY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.812842621 +KY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10236.1924 +KY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,518 +KY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,27.49616786 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.05766442 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,67.76250211 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1626.981638 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3217.88867 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,129.2065754 +KY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,4.17949576 +KY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,96.08112291 +KY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,348446.8987 +KY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.05 +KY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,102.9346755 +KY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1332.279814 +KY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1.08000246 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,56.0869953 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.57626173 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.417545244 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,34.61508379 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,72.24403142 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4700.024333 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,166.6540434 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6385.699126 +KY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,4.46251245 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,8.795993 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.18 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00697107 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,225.9115247 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.476884289 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000113163 +KY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,213.6503504 +KY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.075840443 +KY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,437.7926536 +KY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.221269732 +KY,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,24.25509768 +KY,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,67.93164185 +KY,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.722268314 +KY,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,12.5147324 +KY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.340707453 +KY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,191.9395758 +KY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008081909 +KY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,594.116359 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.09092671 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.20772469 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1401.603355 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.065186197 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.06727182 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.878505313 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.111234013 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,5.613574679 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.427957631 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,77.0656658 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,227.8864384 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,312.6959006 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,137.8286727 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,16.5537165 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,165.0128474 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.452671621 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001807473 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.45897284 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.850020474 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.70844598 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.906463386 +KY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,38.28 +KY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,27.23699364 +KY,Sulfur Dioxide,2A1_Cement-production,,TON,303.69 +KY,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,816.5533 +KY,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,0 +KY,Sulfur Dioxide,2A6_Other-minerals,,TON,902.7669919 +KY,Sulfur Dioxide,2B_Chemicals-other,,TON,1569.401849 +KY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,169.4467201 +KY,Sulfur Dioxide,2C3_Aluminum-production,,TON,6900.194308 +KY,Sulfur Dioxide,2C6_Zinc-production,,TON,0.000376 +KY,Sulfur Dioxide,2C7_Other-metal,,TON,19.112307 +KY,Sulfur Dioxide,2C7a_Copper-production,,TON,0.105 +KY,Sulfur Dioxide,2D3a_Domestic-solvent-use,,TON,0 +KY,Sulfur Dioxide,2D3d_Coating-application,,TON,0.106 +KY,Sulfur Dioxide,2D3f_Dry-cleaning,,TON,0 +KY,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.0493 +KY,Sulfur Dioxide,2D3i_Other-solvent-use,heavy_oil,TON,0 +KY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,650.105679 +KY,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +KY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,4839.208204 +KY,Sulfur Dioxide,3Dc_Other-farm,,TON,0.00529452 +KY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,20.72 +KY,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,49.76022539 +KY,Sulfur Dioxide,5C_Incineration,,TON,0.010006297 +KY,Sulfur Dioxide,5C_Incineration,biomass,TON,4.775651328 +KY,Sulfur Dioxide,5C_Open-burning-residential,,TON,92.46807 +KY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.71967288 +KY,Volatile Organic Compounds,11C_Other-natural,,TON,540300.96 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.322701 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,9.316622895 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1578.11097 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,52.18881683 +KY,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,4.069972103 +KY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,824.4193149 +KY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,5.719091 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,230.6048463 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,961.6536057 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.279087966 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,47.91074459 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.82898938 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,7.443014514 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.853125125 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,851.6747887 +KY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,3.6131754 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.024071 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.02268 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.042538 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1067.297738 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,373.4565778 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001481055 +KY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,351.0878285 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,156.8651303 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,38590.54129 +KY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,110.2733489 +KY,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2391.079685 +KY,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,3128.263446 +KY,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,406.1773826 +KY,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,625.9212678 +KY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1389.130842 +KY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,826.0506285 +KY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.519461413 +KY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,300.6091204 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,41.30420419 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,39.02135931 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,16.76482468 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,149.3460587 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,122.9070548 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1709.17766 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.424112365 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,30.50767498 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6228.819235 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5213.805426 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,3.74461295 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,52.3079964 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.264791114 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,151.7425445 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,790.8837889 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,293.158717 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.035087499 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.357306 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11269.97636 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.44073379 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,11437.39974 +KY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,92.38139065 +KY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,554.898974 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,707.377339 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,17794.93783 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1113.352759 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,42.5301957 +KY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,169.7794442 +KY,Volatile Organic Compounds,2A1_Cement-production,,TON,67.679 +KY,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.142455 +KY,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,0 +KY,Volatile Organic Compounds,2A6_Other-minerals,,TON,951.7348663 +KY,Volatile Organic Compounds,2B_Chemicals-other,,TON,2221.516568 +KY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,312.022968 +KY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1200.866577 +KY,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.4512 +KY,Volatile Organic Compounds,2C7_Other-metal,,TON,293.1505494 +KY,Volatile Organic Compounds,2C7a_Copper-production,,TON,1.28975 +KY,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.010862 +KY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,20121.3023 +KY,Volatile Organic Compounds,2D3d_Coating-application,,TON,11067.64226 +KY,Volatile Organic Compounds,2D3e_Degreasing,,TON,243.9552415 +KY,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,89.8018 +KY,Volatile Organic Compounds,2D3h_Printing,,TON,947.6861283 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,264.7164702 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1440.819718 +KY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1126.896734 +KY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,18769.64822 +KY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,9896.043897 +KY,Volatile Organic Compounds,2I_Wood-processing,Other_Fuel,TON,4.6822 +KY,Volatile Organic Compounds,3Dc_Other-farm,,TON,9.43809 +KY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3813.452106 +KY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,310.8 +KY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,113.2060047 +KY,Volatile Organic Compounds,5C_Incineration,,TON,0.305985826 +KY,Volatile Organic Compounds,5C_Incineration,biomass,TON,3.724570737 +KY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1440.102507 +KY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,791.526747 +KY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,1163.693451 +KY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,81.3254387 +KY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,4.06475742 +KY,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.8528 +KY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,212.7425 +LA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.993 +LA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,6.20817 +LA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,175.3834 +LA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,33.7846191 +LA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,501.7620602 +LA,Ammonia,1A1b_Pet-refining,natural_gas,TON,372.2711879 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.279305606 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.559291354 +LA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,10.4415 +LA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +LA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,4.519765001 +LA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,20.30605756 +LA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1416.728541 +LA,Ammonia,1A2c_Chemicals,natural_gas,TON,70.72302158 +LA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,7.114758683 +LA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.210419913 +LA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.151872324 +LA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1838.706078 +LA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.407450292 +LA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,58.72032924 +LA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,61.75344689 +LA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,12.6873976 +LA,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,17.06146636 +LA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.948067184 +LA,Ammonia,1A3c_Rail,diesel_oil,TON,5.120423892 +LA,Ammonia,1A3c_Rail,light_oil,TON,0.00287304 +LA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,62.51104379 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.315858872 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.487589725 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.83796328 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.752285726 +LA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.20179822 +LA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.355937535 +LA,Ammonia,1A4bi_Residential-stationary,biomass,TON,58.95851743 +LA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.119792771 +LA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.167343822 +LA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,334.88893 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.772657297 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.242237141 +LA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018904642 +LA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.389180769 +LA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.988793102 +LA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.686754482 +LA,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.166475 +LA,Ammonia,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.11515 +LA,Ammonia,2A6_Other-minerals,,TON,0.1285 +LA,Ammonia,2B_Chemicals-other,,TON,4640.68663 +LA,Ammonia,2C3_Aluminum-production,,TON,0 +LA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.24005 +LA,Ammonia,2D3d_Coating-application,,TON,6.654855 +LA,Ammonia,2D3h_Printing,,TON,4.171 +LA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.001125 +LA,Ammonia,2H1_Pulp-and-paper,,TON,909.14884 +LA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,324.28756 +LA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,23562.01436 +LA,Ammonia,3B1a_Cattle-dairy,,TON,1549.667062 +LA,Ammonia,3B1b_Cattle-non-dairy,,TON,4250.353763 +LA,Ammonia,3B2_Manure-sheep,,TON,24.3016408 +LA,Ammonia,3B3_Manure-swine,,TON,161.579014 +LA,Ammonia,3B4_Manure-other,,TON,675.05787 +LA,Ammonia,3B4_Manure-poultry,,TON,11279.78533 +LA,Ammonia,3B4d_Manure-goats,,TON,107.4327902 +LA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,18924.53917 +LA,Ammonia,3Dc_Other-farm,,TON,0.00444 +LA,Ammonia,3F_Ag-res-on-field,,TON,2574.135435 +LA,Ammonia,5A_Solid-waste-disposal,,TON,12.7272 +LA,Ammonia,5C_Incineration,biomass,TON,0 +LA,Ammonia,5D1_Wastewater-domestic,,TON,17.9991566 +LA,Ammonia,5D2_Wastewater-industrial,biomass,TON,44.2723295 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,280501.9771 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,192137.4536 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,30569.65517 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,875018.4101 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,17295.69558 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.71777666 +LA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,184695.9403 +LA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,19801282.05 +LA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,169574.4067 +LA,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1003345.076 +LA,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5130758.91 +LA,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,415412.5267 +LA,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1012937.039 +LA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,78855.29479 +LA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4514.92943 +LA,Carbon Dioxide,1A3c_Rail,light_oil,TON,221.9529125 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,102885.8367 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,143917.049 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6310.283032 +LA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,24799.50275 +LA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,245576.0389 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,586919.1579 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,17432.83491 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,55.60567954 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2310.8559 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,149034.2525 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,121770.1798 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,448546.0578 +LA,Carbon Monoxide,11C_Other-natural,,TON,146158.556 +LA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,1046.038807 +LA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,400.7148661 +LA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,365.372888 +LA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,25893.96064 +LA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,952.532338 +LA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.640023744 +LA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,6382.086181 +LA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,12383.14607 +LA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,1.71 +LA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,441.54579 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1674.239297 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22502.78987 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1436.919182 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,13987.75612 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.769408321 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,327.0274926 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,237.0079638 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,128.6507609 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,150.4895953 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,49657.60439 +LA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,2.13314 +LA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,10.04 +LA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2798.22288 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4183.289649 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5212.352289 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.320547727 +LA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6496.641992 +LA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,775.2943667 +LA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,437113.6254 +LA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,596.1582341 +LA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,33780.67718 +LA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,9781.765082 +LA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2039.987158 +LA,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2036.246315 +LA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3983.089618 +LA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1670.9978 +LA,Carbon Monoxide,1A3c_Rail,light_oil,TON,72.43536296 +LA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,23719.81259 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,64.11305534 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,25.97414571 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,25.03516628 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1584.728008 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,622.4457439 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,46073.16108 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,163.277999 +LA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,118.1449871 +LA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,89219.22452 +LA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,16563.11362 +LA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.266083361 +LA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.196618 +LA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1101.410124 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2954.41682 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6506.185636 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.118719332 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,26.491876 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35913.56378 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,245.1207783 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,73414.8883 +LA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,99.99026 +LA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,4.997 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0.782066951 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,21.84052305 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,26.25 +LA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,950.91845 +LA,Carbon Monoxide,2A1_Cement-production,,TON,1.525 +LA,Carbon Monoxide,2A6_Other-minerals,,TON,299.8258 +LA,Carbon Monoxide,2B_Chemicals-other,,TON,14242.22593 +LA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,760.75 +LA,Carbon Monoxide,2C3_Aluminum-production,,TON,133.16277 +LA,Carbon Monoxide,2C5_Lead-production,,TON,12.75 +LA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1376.29989 +LA,Carbon Monoxide,2D3d_Coating-application,,TON,5.443 +LA,Carbon Monoxide,2D3h_Printing,,TON,5.8181 +LA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,11409.91893 +LA,Carbon Monoxide,2H2_Food-and-beverage,,TON,713.3306803 +LA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,808.113658 +LA,Carbon Monoxide,3Dc_Other-farm,,TON,2.882 +LA,Carbon Monoxide,3F_Ag-res-on-field,,TON,70285.8555 +LA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,371.17205 +LA,Carbon Monoxide,5C_Incineration,,TON,718.2037063 +LA,Carbon Monoxide,5C_Incineration,biomass,TON,5.931571568 +LA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,26320.78252 +LA,Carbon Monoxide,5C_Open-burning-residential,,TON,8274.489 +LA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,688.472576 +LA,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.187478688 +LA,Methane,1A3bii_Road-LDV,light_oil,TON,1555.223913 +LA,Methane,1A3biii_Road-bus,diesel_oil,TON,2.001033985 +LA,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,112.8918916 +LA,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,185.5187877 +LA,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,4.963067696 +LA,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,17.96862868 +LA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.59289476 +LA,Nitrogen Oxides,11C_Other-natural,,TON,19802.4627 +LA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,5271.158679 +LA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,519.3156331 +LA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,1007.282061 +LA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,22107.66551 +LA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1965.759176 +LA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,2.910087603 +LA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,20615.46251 +LA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,20310.59639 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,2.03 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,281.85801 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2681.804937 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1818.008434 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,199.4376444 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,9295.978075 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,29.4597362 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1076.814298 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,382.1654733 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1041.442354 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,531.524683 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,93073.93125 +LA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,9.9042 +LA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,48.88 +LA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,3541.94199 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8064.160362 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,81.26932996 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.068355173 +LA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,800.2072753 +LA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1134.141848 +LA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,54898.65075 +LA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1586.817566 +LA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3519.387168 +LA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,38018.60398 +LA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,2823.360988 +LA,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6512.340458 +LA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,153.1409499 +LA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,12025.91943 +LA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.856008282 +LA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,132292.3499 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,42.86860905 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,96.61141478 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,78.83679617 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2336.127421 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1059.150394 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,639.756631 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,45.42487718 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,252.7706244 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,781.4758166 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,234.2253503 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.958002795 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,15.1077823 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2588.315025 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5987.435072 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,72.87528263 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.363052825 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.542332 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,287.8319507 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1454.979591 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2355.37275 +LA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,73.82544 +LA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,11.936 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,5.035248042 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,17.00475196 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,19.57 +LA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2930.40761 +LA,Nitrogen Oxides,2A1_Cement-production,,TON,1.815 +LA,Nitrogen Oxides,2A6_Other-minerals,,TON,1956.807 +LA,Nitrogen Oxides,2B_Chemicals-other,,TON,12168.41369 +LA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,97.965 +LA,Nitrogen Oxides,2C3_Aluminum-production,,TON,473.867407 +LA,Nitrogen Oxides,2C5_Lead-production,,TON,15.18 +LA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,348.50842 +LA,Nitrogen Oxides,2D3d_Coating-application,,TON,8.209 +LA,Nitrogen Oxides,2D3h_Printing,,TON,6.926 +LA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,6143.69562 +LA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,182.2427 +LA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,650.97268 +LA,Nitrogen Oxides,3Dc_Other-farm,,TON,1.0716 +LA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3825.907114 +LA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,114.8523 +LA,Nitrogen Oxides,5C_Incineration,,TON,217.6856703 +LA,Nitrogen Oxides,5C_Incineration,biomass,TON,137.3054431 +LA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,778.720823 +LA,Nitrogen Oxides,5C_Open-burning-residential,,TON,584.08141 +LA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,23.9472575 +LA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.660120869 +LA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1200.270159 +LA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.4117216 +LA,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,71.60763803 +LA,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5.196707348 +LA,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.675297411 +LA,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.850261152 +LA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.157159628 +LA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,985.6225583 +LA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,138.4031677 +LA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,79.65690014 +LA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2958.167705 +LA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,98.71125924 +LA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.210004806 +LA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,982.2923631 +LA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,4080.354859 +LA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,23.05916 +LA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.396 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3999.08973 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,2.799764181 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,55.43774832 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,205.5938476 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,423.4517519 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,28.02031721 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2785.065715 +LA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.696209 +LA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,3.95 +LA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,339.987258 +LA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,106100.4737 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,18.9353655 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.8549068 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,12.64188655 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,63.37191763 +LA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.060242744 +LA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.899294105 +LA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.53091964 +LA,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,5.509753 +LA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.111 +LA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,18.39515 +LA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.004 +LA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,153.489172 +LA,PM10 Filterable,2A1_Cement-production,,TON,9.773 +LA,PM10 Filterable,2A2_Lime-production,,TON,0.8071 +LA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18753.17595 +LA,PM10 Filterable,2A6_Other-minerals,,TON,21893.89764 +LA,PM10 Filterable,2B_Chemicals-other,,TON,3340.546031 +LA,PM10 Filterable,2C_Iron-steel-alloy,,TON,125.504973 +LA,PM10 Filterable,2C3_Aluminum-production,,TON,106.916891 +LA,PM10 Filterable,2C5_Lead-production,,TON,15.241201 +LA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,386.794354 +LA,PM10 Filterable,2C7a_Copper-production,,TON,0.8345 +LA,PM10 Filterable,2D3d_Coating-application,,TON,48.2236 +LA,PM10 Filterable,2D3h_Printing,,TON,0.5267 +LA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.000187 +LA,PM10 Filterable,2H1_Pulp-and-paper,,TON,2880.963592 +LA,PM10 Filterable,2H2_Food-and-beverage,,TON,352.8744375 +LA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,3812.410027 +LA,PM10 Filterable,2I_Wood-processing,,TON,6.71061 +LA,PM10 Filterable,3Dc_Other-farm,,TON,45001.48136 +LA,PM10 Filterable,5A_Solid-waste-disposal,,TON,363.00425 +LA,PM10 Filterable,5C_Incineration,biomass,TON,4.591 +LA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2573.544929 +LA,PM10 Filterable,5C_Open-burning-residential,,TON,3654.6456 +LA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,100.3776004 +LA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.685 +LA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.85 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1061.558487 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,138.4024103 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,100.3731816 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3230.846266 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,115.5537124 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.223120886 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,2243.528235 +LA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,8022.337934 +LA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,49.92607746 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,168.4155619 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.67073247 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.893169823 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,15953.07833 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,4.330032876 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,60.61581658 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,222.9642917 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,475.6593725 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,61.00872343 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5764.914461 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.9329669 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,5.29326 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,613.0533632 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,662.6881535 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.75413703 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430562 +LA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,160.718085 +LA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,106100.4737 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,80.88750977 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1725.903871 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,103.2656154 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,87.7738786 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2016.961815 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,200.2609795 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,381.4365428 +LA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.477278134 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,382.3627866 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029916284 +LA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5677.869395 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,14.54144918 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.42731319 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,10.62679251 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,118.5460393 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,108.0941062 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,38.72044747 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.787290101 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.24347928 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,214.6558298 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2312.615915 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.132757158 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.98177821 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,15.45788534 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,542.3420375 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,41.64753053 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00702546 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.8067786 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,411.0248825 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.72478585 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,404.0084874 +LA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,8.46521037 +LA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1444781 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,18.39515 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.0226599 +LA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,237.7076768 +LA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,10.51525621 +LA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.0486812 +LA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18753.17595 +LA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,22080.79929 +LA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,5718.728609 +LA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,272.3077793 +LA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,192.9120038 +LA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,56.11990823 +LA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,826.9041044 +LA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,1.55226 +LA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,48.2716 +LA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,1.12814 +LA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.000187 +LA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,5235.590574 +LA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2067.586402 +LA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,5657.911749 +LA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,12.5382451 +LA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,45005.05603 +LA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,8797.804566 +LA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,421.980362 +LA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.03352513 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2573.544929 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3654.6456 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,100.3776004 +LA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.9111446 +LA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.85 +LA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,403.1198954 +LA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,67.21331721 +LA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,57.30287464 +LA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1011.149904 +LA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,42.50209762 +LA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.210010365 +LA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,849.9434754 +LA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,3273.878384 +LA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,22.9153515 +LA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.0538 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2603.142207 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.98912657 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.94239216 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,47.06833125 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,243.0597041 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,7.190129995 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2307.088882 +LA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.232037 +LA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,1.39 +LA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,274.4314044 +LA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9217.872184 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,10.12851497 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.88154417 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,12.09795676 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,60.76138396 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.046297652 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.691124304 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.972813779 +LA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.83788061 +LA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.111 +LA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,8.35515 +LA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.9802 +LA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,151.0625399 +LA,PM2.5 Filterable,2A1_Cement-production,,TON,3.434 +LA,PM2.5 Filterable,2A2_Lime-production,,TON,0.5413 +LA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1883.933796 +LA,PM2.5 Filterable,2A6_Other-minerals,,TON,4670.784726 +LA,PM2.5 Filterable,2B_Chemicals-other,,TON,2518.710251 +LA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,69.910555 +LA,PM2.5 Filterable,2C3_Aluminum-production,,TON,16.690499 +LA,PM2.5 Filterable,2C5_Lead-production,,TON,15.16511456 +LA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,192.1762342 +LA,PM2.5 Filterable,2C7a_Copper-production,,TON,0.255 +LA,PM2.5 Filterable,2D3d_Coating-application,,TON,24.4383 +LA,PM2.5 Filterable,2D3h_Printing,,TON,0.2851201 +LA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2139.847091 +LA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,123.8894139 +LA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,3027.618496 +LA,PM2.5 Filterable,2I_Wood-processing,,TON,3.4230328 +LA,PM2.5 Filterable,3Dc_Other-farm,,TON,6750.441055 +LA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,194.509511 +LA,PM2.5 Filterable,5C_Incineration,biomass,TON,4.459649 +LA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2573.544929 +LA,PM2.5 Filterable,5C_Open-burning-residential,,TON,3346.84074 +LA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,89.6008958 +LA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.655 +LA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.75 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,479.0550783 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,71.21209276 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,78.53417674 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1283.827529 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,59.344424 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.223123557 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,2111.145907 +LA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,7216.049807 +LA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,49.78226926 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,161.0719307 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.17705257 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.891895997 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,14557.73579 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,2.521246331 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,47.18259076 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,64.62798767 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,295.3137598 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,40.20491835 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5583.88301 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.46879487 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,2.733262 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,565.3574051 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,642.8075815 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.62930691 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430562 +LA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,34.3428989 +LA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9217.872184 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,72.45972318 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,864.0478159 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,92.10394073 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,42.42746388 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1829.290181 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,180.7548652 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,334.6401351 +LA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.318933139 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,353.9456339 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.027577605 +LA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5428.874284 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,7.873128333 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.06122223 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,9.904070162 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,114.2943598 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,104.851296 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,35.72367548 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.787290101 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,20.60615667 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,197.4910587 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2311.052894 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.118812055 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.77360825 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.70287744 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,526.0717081 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,38.31579346 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00702546 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.6925734 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,378.143894 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.83305851 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,371.6876567 +LA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,7.0923348 +LA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1444781 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,8.84515 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.9988599 +LA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,235.3170491 +LA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,4.176252383 +LA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.7828812 +LA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1883.933796 +LA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4862.736498 +LA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,4929.488762 +LA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,216.7133526 +LA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,102.6856118 +LA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,56.04382218 +LA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,667.8921327 +LA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.97276 +LA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,45.7816 +LA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.95236 +LA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.000187 +LA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4516.995581 +LA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1748.078318 +LA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,4936.285524 +LA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,9.2506647 +LA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,6754.015726 +LA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,8277.802406 +LA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,314.159804 +LA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.90217413 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2573.544929 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3346.84074 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,89.6008958 +LA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.8811446 +LA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.75 +LA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,13980.00158 +LA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,62.08300702 +LA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,116.1502661 +LA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,66272.00749 +LA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1888.750213 +LA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.190000021 +LA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,6175.751839 +LA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,19819.66051 +LA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,91.54623 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65.17408183 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.547455383 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.706617779 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3136.709835 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,18.16442943 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,105.2980775 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1297.795661 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,10852.0066 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1082.817916 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2690.100396 +LA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.651301 +LA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.41 +LA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,3899.769931 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,190.3648879 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.470063236 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.19186E-05 +LA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,96.59840937 +LA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.030733462 +LA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,437.8503248 +LA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.843759554 +LA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,22.18208781 +LA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,55.73684141 +LA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.571890135 +LA,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10.96110116 +LA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.743516882 +LA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,115.7143439 +LA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.006215061 +LA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,19179.07165 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.240281295 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.295390464 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,21.59855222 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.50743981 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,22.38250784 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.970489306 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.139502208 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,5.395165093 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.684456539 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,30.20171855 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.0865531 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,35.4721519 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,17.88693702 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,127.687068 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.482374446 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001222961 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.50266758 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.1053075 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.0000196 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,12.14572649 +LA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.371537 +LA,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.005 +LA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.9975 +LA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.278 +LA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,180.898656 +LA,Sulfur Dioxide,2A1_Cement-production,,TON,0.011 +LA,Sulfur Dioxide,2A6_Other-minerals,,TON,4737.198811 +LA,Sulfur Dioxide,2B_Chemicals-other,,TON,84866.62414 +LA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,52.7534 +LA,Sulfur Dioxide,2C3_Aluminum-production,,TON,1.976545 +LA,Sulfur Dioxide,2C5_Lead-production,,TON,2008.588 +LA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,583.290319 +LA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0916 +LA,Sulfur Dioxide,2D3h_Printing,,TON,0.0407 +LA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,3711.818292 +LA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +LA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,181.28166 +LA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0009 +LA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,639.4938111 +LA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,20.357388 +LA,Sulfur Dioxide,5C_Incineration,biomass,TON,3.577340995 +LA,Sulfur Dioxide,5C_Open-burning-residential,,TON,95.89594 +LA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.17432023 +LA,Volatile Organic Compounds,11C_Other-natural,,TON,1204935.6 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,78.49427294 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,15.49533972 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,50.68796036 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,387.6857429 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,66.47379841 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.201499866 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,666.7619969 +LA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,637.3728073 +LA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,13377.44475 +LA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,157.3392 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,230.380297 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,877.5104656 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.5341974 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,884.0688428 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.112110776 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,100.1883528 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,46.73081887 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.01469812 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,29.74389324 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,5778.61266 +LA,Volatile Organic Compounds,1A2a_Ind-Comb,Other_Fuel,TON,6.01 +LA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.78604 +LA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,1.75 +LA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,756.466803 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,828.7189502 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,358.800335 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001110793 +LA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,290.4738499 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,152.3111292 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,39245.27831 +LA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,81.49274592 +LA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2181.739189 +LA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2176.003471 +LA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,398.3357459 +LA,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,442.9984084 +LA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1335.668055 +LA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,599.9430611 +LA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.926259131 +LA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3110.913643 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.728639615 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.24871103 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,9.985384653 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,183.5771166 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,155.5608019 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2356.47987 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.535039129 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,29.86226193 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6635.566187 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5503.614108 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.037266475 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.587543986 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,151.4438702 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,573.6915415 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,498.6136264 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.02368527 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.968864 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13465.17126 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,60.34038335 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,26872.50005 +LA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3341.111187 +LA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1260.784516 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,778.4846525 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,39452.32178 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,40.28470085 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,385.19052 +LA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2218.057704 +LA,Volatile Organic Compounds,2A1_Cement-production,,TON,0.1 +LA,Volatile Organic Compounds,2A6_Other-minerals,,TON,32.47111602 +LA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1570.030994 +LA,Volatile Organic Compounds,2B_Chemicals-other,,TON,15662.00481 +LA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,61.1524 +LA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,12.629014 +LA,Volatile Organic Compounds,2C5_Lead-production,,TON,1.03 +LA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,618.879382 +LA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,23915.10663 +LA,Volatile Organic Compounds,2D3d_Coating-application,,TON,24755.20942 +LA,Volatile Organic Compounds,2D3e_Degreasing,,TON,3708.964055 +LA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1646.30955 +LA,Volatile Organic Compounds,2D3h_Printing,,TON,2885.34499 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,21744.79998 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,42.55766068 +LA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,13370.18415 +LA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,588.0234318 +LA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,7806.590446 +LA,Volatile Organic Compounds,2I_Wood-processing,,TON,13.4861 +LA,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.009 +LA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1058.17949 +LA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,7097.447148 +LA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,211.3185036 +LA,Volatile Organic Compounds,5C_Incineration,,TON,209.8595651 +LA,Volatile Organic Compounds,5C_Incineration,biomass,TON,95.89537717 +LA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1806.631986 +LA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,2920.4082 +LA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,120.8038928 +LA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,995.20089 +LA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,930.975743 +LA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.2244 +LA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.3735 +MA,Ammonia,1A1a_Public-Electricity,biomass,TON,1.3831 +MA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,13.7172 +MA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,84.641 +MA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,12.6467 +MA,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.5884 +MA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,111.3611 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.560837261 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.262689328 +MA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,23.93165372 +MA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.931200005 +MA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.025114003 +MA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.24660669 +MA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.741867645 +MA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,90.69234374 +MA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.0136 +MA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0229 +MA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0416 +MA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,9.004928277 +MA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.266405572 +MA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.62086265 +MA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1968.506245 +MA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.346354315 +MA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,56.56617471 +MA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,56.50607845 +MA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,13.6047204 +MA,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,16.32651266 +MA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.245106192 +MA,Ammonia,1A3c_Rail,diesel_oil,TON,2.315588868 +MA,Ammonia,1A3c_Rail,light_oil,TON,0.000387608 +MA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.416199565 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,7.566304301 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,67.21844855 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000281844 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.19027573 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.060646075 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.22978303 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.326009682 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.772777328 +MA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.482142658 +MA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.512673751 +MA,Ammonia,1A4bi_Residential-stationary,biomass,TON,434.8627948 +MA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,332.964341 +MA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,2.640089845 +MA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.70479914 +MA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1144.428698 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.278814507 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.01967665 +MA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027064159 +MA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.829529628 +MA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.665834967 +MA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.5027661 +MA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +MA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Ammonia,2A6_Other-minerals,,TON,0 +MA,Ammonia,2B_Chemicals-other,,TON,15.196 +MA,Ammonia,2C_Iron-steel-alloy,,TON,0 +MA,Ammonia,2C6_Zinc-production,,TON,0.0066 +MA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.3322 +MA,Ammonia,2D3d_Coating-application,,TON,7.9817 +MA,Ammonia,2D3e_Degreasing,,TON,0 +MA,Ammonia,2D3h_Printing,,TON,6.603 +MA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,16 +MA,Ammonia,2H3_Other-industrial-processes,,TON,0 +MA,Ammonia,3B1a_Cattle-dairy,,TON,701.3087506 +MA,Ammonia,3B1b_Cattle-non-dairy,,TON,86.54416238 +MA,Ammonia,3B2_Manure-sheep,,TON,41.163012 +MA,Ammonia,3B3_Manure-swine,,TON,69.550206 +MA,Ammonia,3B4_Manure-other,,TON,276.758328 +MA,Ammonia,3B4_Manure-poultry,,TON,190.3768759 +MA,Ammonia,3B4d_Manure-goats,,TON,57.360996 +MA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,729.9542707 +MA,Ammonia,5A_Solid-waste-disposal,,TON,0.9243 +MA,Ammonia,5C_Incineration,biomass,TON,145.36 +MA,Ammonia,5D1_Wastewater-domestic,,TON,21.2029 +MA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.25 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,315125.7525 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,361490.6774 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18781.02079 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1107483.406 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,21904.96302 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.9570318 +MA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,217414.28 +MA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,24353736.93 +MA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,162875.485 +MA,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1130536.388 +MA,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4941343.263 +MA,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,479764.1395 +MA,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1048788.329 +MA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,70130.06904 +MA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,612.94082 +MA,Carbon Dioxide,1A3c_Rail,light_oil,TON,29.91016262 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,162808.7611 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,227729.1242 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10008.72739 +MA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,59252.39512 +MA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,475044.8217 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,34294.98961 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1397.057639 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.58342968 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3308.2466 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,121057.2231 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,81997.80691 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,302044.675 +MA,Carbon Monoxide,11C_Other-natural,,TON,11371.6077 +MA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,159.6934 +MA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,68.003 +MA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2832.14 +MA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,486.8243 +MA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,1.0542 +MA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,769.7154 +MA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,7.368 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2605.696118 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24958.70935 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1506.846624 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1244.092222 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,95.0737247 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,148.0232114 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,161.1032119 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.875671206 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2500.149556 +MA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +MA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,34.6316 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,7.1318 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,3.4505 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.1858 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5294.707178 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5919.97692 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.42739698 +MA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9508.6288 +MA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,737.2247739 +MA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,336521.22 +MA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,555.8020234 +MA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,29792.12401 +MA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,8695.825093 +MA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1906.404541 +MA,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2035.085878 +MA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3576.241147 +MA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,591.8161146 +MA,Carbon Monoxide,1A3c_Rail,light_oil,TON,8.647709183 +MA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1675.035801 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,35.94760403 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,445.105048 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,56.80820915 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,87.94454349 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.42598129 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3171.254295 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,984.9528534 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,64910.03897 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,258.6961083 +MA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,281.5209835 +MA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,154643.5063 +MA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,54672.44998 +MA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1664.8209 +MA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,363.01248 +MA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,16.228797 +MA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2450.084604 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,158.0703648 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,490.5149649 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.284584104 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,37.931893 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,24547.21178 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,165.0593711 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,44902.478 +MA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +MA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Carbon Monoxide,2A2_Lime-production,,TON,0 +MA,Carbon Monoxide,2A6_Other-minerals,,TON,204.7863 +MA,Carbon Monoxide,2B_Chemicals-other,,TON,0 +MA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,30.1182 +MA,Carbon Monoxide,2C3_Aluminum-production,,TON,0 +MA,Carbon Monoxide,2C6_Zinc-production,,TON,0.1743 +MA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.0178 +MA,Carbon Monoxide,2D3c_Asphalt-roofing,heavy_oil,TON,34.6272046 +MA,Carbon Monoxide,2D3d_Coating-application,,TON,6.6176 +MA,Carbon Monoxide,2D3e_Degreasing,,TON,0.2177 +MA,Carbon Monoxide,2D3h_Printing,,TON,0.0348 +MA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +MA,Carbon Monoxide,2H2_Food-and-beverage,,TON,624.8014023 +MA,Carbon Monoxide,2H3_Other-industrial-processes,,TON,0 +MA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,376.7024 +MA,Carbon Monoxide,5C_Incineration,,TON,448.6363576 +MA,Carbon Monoxide,5C_Incineration,biomass,TON,299.1879502 +MA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3921.334 +MA,Carbon Monoxide,5C_Open-burning-residential,,TON,574.0544 +MA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,72.09201 +MA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.0221 +MA,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.0001 +MA,Methane,1A3bii_Road-LDV,diesel_oil,TON,5.754811221 +MA,Methane,1A3bii_Road-LDV,light_oil,TON,1558.388575 +MA,Methane,1A3biii_Road-bus,diesel_oil,TON,3.168941367 +MA,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,123.5961889 +MA,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,244.4393014 +MA,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,12.46442538 +MA,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,25.17775247 +MA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,23.58435121 +MA,Nitrogen Oxides,11C_Other-natural,,TON,955.4294 +MA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,148.0263 +MA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,279.556 +MA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,7270.07 +MA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1066.21 +MA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,12.8686 +MA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1530.4189 +MA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1.885 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2735.272291 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3927.284239 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,263.3623872 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,464.9992475 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,327.4035467 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,551.9683365 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1257.534359 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,4.475678017 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3532.495892 +MA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +MA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,30.9375 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,13.5713 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,37.959 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.6722 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10207.01277 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,123.7001008 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.091140232 +MA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1915.084509 +MA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1292.327004 +MA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,34489.70479 +MA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1495.442558 +MA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3073.342593 +MA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,34418.70344 +MA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,3146.890902 +MA,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6686.147887 +MA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,145.5825875 +MA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4597.463388 +MA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.147949142 +MA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10649.97683 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,20.1416911 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1515.026001 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,105.6571641 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,760.7069562 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,10.76780369 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3051.095561 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1676.022044 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1239.880432 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,71.94774845 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,604.6660712 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1863.659303 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,858.2524635 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,5993.3537 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,10.06013043 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,65.253323 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,5952.47684 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,333.4592079 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.680919309 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.063457757 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,36.563597 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,276.821914 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,979.756209 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1905.24352 +MA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +MA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Nitrogen Oxides,2A2_Lime-production,,TON,0 +MA,Nitrogen Oxides,2A6_Other-minerals,,TON,441.1846 +MA,Nitrogen Oxides,2B_Chemicals-other,,TON,0 +MA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.4345 +MA,Nitrogen Oxides,2C3_Aluminum-production,,TON,0 +MA,Nitrogen Oxides,2C6_Zinc-production,,TON,0.2058 +MA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,33.1175 +MA,Nitrogen Oxides,2D3c_Asphalt-roofing,heavy_oil,TON,10.3881608 +MA,Nitrogen Oxides,2D3d_Coating-application,,TON,10.2019 +MA,Nitrogen Oxides,2D3e_Degreasing,,TON,0.1893 +MA,Nitrogen Oxides,2D3h_Printing,,TON,0.4057 +MA,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.0006 +MA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,2.8856 +MA,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,0 +MA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,84.2179 +MA,Nitrogen Oxides,5C_Incineration,,TON,1383.300172 +MA,Nitrogen Oxides,5C_Incineration,biomass,TON,3379.480493 +MA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,116.0159 +MA,Nitrogen Oxides,5C_Open-burning-residential,,TON,40.521513 +MA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.2040928 +MA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.702 +MA,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.0001 +MA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.796941934 +MA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1171.513779 +MA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.424215877 +MA,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,67.90828666 +MA,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5.785004746 +MA,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.994691806 +MA,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.071039468 +MA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.155679193 +MA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,8.2385 +MA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,10.5781 +MA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,283.0815 +MA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,214.1365 +MA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,3.8007 +MA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,223.6368 +MA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,24.166 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,897.8958527 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.53197211 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,14.65806965 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,175.1403978 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.681434696 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,152.4462516 +MA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.2703 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.6009 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.099 +MA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,117566.544 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.474632771 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,88.44613034 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,114.6322827 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,95.87232403 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.038948836 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,83.13592175 +MA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,359.601515 +MA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,9.44045285 +MA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.52976452 +MA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.29399931 +MA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +MA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM10 Filterable,2A2_Lime-production,,TON,4.3631 +MA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,20405.3994 +MA,PM10 Filterable,2A6_Other-minerals,,TON,2834.6789 +MA,PM10 Filterable,2B_Chemicals-other,,TON,11.05575641 +MA,PM10 Filterable,2C_Iron-steel-alloy,,TON,6.1612 +MA,PM10 Filterable,2C3_Aluminum-production,,TON,0.8213 +MA,PM10 Filterable,2C6_Zinc-production,,TON,0.0152 +MA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,9.67292 +MA,PM10 Filterable,2C7a_Copper-production,,TON,0 +MA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.883 +MA,PM10 Filterable,2D3d_Coating-application,,TON,20.331 +MA,PM10 Filterable,2D3e_Degreasing,,TON,0.2004 +MA,PM10 Filterable,2D3h_Printing,,TON,0.589 +MA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.7421 +MA,PM10 Filterable,2H1_Pulp-and-paper,,TON,0 +MA,PM10 Filterable,2H2_Food-and-beverage,,TON,31.41065667 +MA,PM10 Filterable,2H3_Other-industrial-processes,,TON,39.8175 +MA,PM10 Filterable,2I_Wood-processing,,TON,0.2 +MA,PM10 Filterable,3Dc_Other-farm,,TON,1230.28855 +MA,PM10 Filterable,5A_Solid-waste-disposal,,TON,77.0036 +MA,PM10 Filterable,5C_Incineration,,TON,22.892 +MA,PM10 Filterable,5C_Incineration,biomass,TON,30.6497 +MA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,394.4542 +MA,PM10 Filterable,5C_Open-burning-residential,,TON,256.63601 +MA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,11.938114 +MA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.298 +MA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,4.2401 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,8.24007595 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.42821294 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,311.080607 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,250.67449 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,3.80115959 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,356.754286 +MA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,37.4708 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,208.6853376 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,36.36224199 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.333863164 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,935.5998917 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,29.96894937 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,15.82756057 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,211.6810625 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.681444531 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,374.0146548 +MA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.692700537 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.64577597 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2574 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,838.7345175 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,33.85855577 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574082 +MA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,170.5411584 +MA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,117566.544 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,83.64915651 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2714.871364 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,99.74789307 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,123.8102703 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1918.830643 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,202.4272533 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,402.0276259 +MA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.61642949 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,145.2450266 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004033698 +MA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,564.6689223 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.813058004 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,240.2773078 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,153.1549756 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,144.6834431 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.569153323 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,212.6805938 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,171.0476793 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,61.267148 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.248862465 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,50.59418983 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,458.6184304 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8034.641405 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,792.45499 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,9.82289705 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.9115368 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,31.8685071 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29.02812399 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.400204378 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000326314 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.4507887 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,202.4386125 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.01603944 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,272.0535917 +MA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +MA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,8.361476172 +MA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,20405.3994 +MA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2864.740986 +MA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,14.12974108 +MA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,11.4513119 +MA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1.47834 +MA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.06992 +MA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,14.98162303 +MA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0 +MA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,11.4468808 +MA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,22.955 +MA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.2004 +MA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.589 +MA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.7421 +MA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +MA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1701.269766 +MA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,61.55944466 +MA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.373684 +MA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1230.28855 +MA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,88.4304462 +MA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,25.74954232 +MA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,34.47567456 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,394.4542 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,256.63601 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.938114 +MA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.3281278 +MA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5.298183794 +MA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,3.0985 +MA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.3947 +MA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,169.4864126 +MA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,206.3015 +MA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,3.7261 +MA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,169.0406 +MA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,9.51 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,772.9637021 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.23246494 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.722915168 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,105.3516183 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.079520669 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,81.51766788 +MA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.2680625 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.57101013 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.099 +MA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13376.58166 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.39617897 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,69.78758101 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.47056461 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,37.87290361 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.081220439 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.93974873 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,276.360384 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,6.40995875 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.70479914 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.718121099 +MA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +MA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM2.5 Filterable,2A2_Lime-production,,TON,2.7685588 +MA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2040.53994 +MA,PM2.5 Filterable,2A6_Other-minerals,,TON,445.0315941 +MA,PM2.5 Filterable,2B_Chemicals-other,,TON,8.635471096 +MA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.44852386 +MA,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.13694135 +MA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.0039 +MA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,4.184149436 +MA,PM2.5 Filterable,2C7a_Copper-production,,TON,0 +MA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.883 +MA,PM2.5 Filterable,2D3d_Coating-application,,TON,9.9923 +MA,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +MA,PM2.5 Filterable,2D3h_Printing,,TON,0.58 +MA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.436 +MA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,0 +MA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,13.24819377 +MA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,28.18372083 +MA,PM2.5 Filterable,2I_Wood-processing,,TON,0.0655172 +MA,PM2.5 Filterable,3Dc_Other-farm,,TON,246.057709 +MA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,68.4003086 +MA,PM2.5 Filterable,5C_Incineration,,TON,19.489149 +MA,PM2.5 Filterable,5C_Incineration,biomass,TON,23.5027 +MA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,304.0848 +MA,PM2.5 Filterable,5C_Open-burning-residential,,TON,235.02459 +MA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,9.203134 +MA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.068 +MA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.1114 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.10007595 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,10.24481388 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,197.4855156 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,242.839492 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,3.72655959 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,302.158086 +MA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,22.81483 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,202.3833497 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,36.09120364 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.331076674 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,812.8730286 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,26.66872306 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1.892699784 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,141.8934921 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.07950757 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,302.3087788 +MA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.690463035 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.61588615 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2574 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,813.572656 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,31.16957214 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574082 +MA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,51.1338934 +MA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13376.58166 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,73.23159842 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1489.936659 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,87.4444251 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,64.03337909 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1692.802089 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,179.0161224 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,343.4969146 +MA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.05474125 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,133.692982 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003718127 +MA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,532.5162094 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.871185829 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,237.94661 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,31.46469672 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,80.19237743 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.551842125 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,172.749893 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,165.9162092 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,56.52537926 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.248862465 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,49.0763534 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,421.947005 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8027.145351 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,709.21468 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,6.79240841 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.1001029 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,26.3083807 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28.15727838 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.048187559 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000326314 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.287266 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,186.2448699 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.41556163 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,250.2893017 +MA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +MA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,6.766930062 +MA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2040.53994 +MA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,477.6980891 +MA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,11.70945147 +MA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,10.7386448 +MA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.79398136 +MA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.05862 +MA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,9.492846421 +MA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0 +MA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.05872 +MA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,22.042 +MA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.2004 +MA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.58 +MA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.7421 +MA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +MA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1683.1064 +MA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,50.12747776 +MA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.239201 +MA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,246.057709 +MA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,79.8271598 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,22.37576737 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,27.29958851 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,304.0848 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,235.02459 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.203134 +MA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0981278 +MA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5.298183794 +MA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,6.6602 +MA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,108.3478 +MA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,40384.21 +MA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,5948.268 +MA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.6918 +MA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,74.4405 +MA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,20.088 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,72.60609124 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.998910444 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.480345248 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,122.5917744 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,126.5906689 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,829.0762867 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2209.863828 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.525336706 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,25.79215162 +MA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +MA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0333 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,18.821 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,52.726 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0259 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,240.9388945 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.464876234 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000109225 +MA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,203.6384944 +MA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.377226964 +MA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,524.8199031 +MA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.771058584 +MA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,24.36255417 +MA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,53.20111058 +MA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,5.248680812 +MA,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.28705423 +MA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.511373167 +MA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,244.7882202 +MA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000656774 +MA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3399.652268 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.433163543 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2892.619547 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,361.4997468 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1717.572478 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,74.6722977 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,74.56112117 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.41854219 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.850118574 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.221264818 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,12.89044789 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,10.17046888 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,171.8074581 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,14184.2738 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,42.1087602 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,144.030695 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,36.88199113 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.461082918 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.030845765 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.68179E-05 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.71962473 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.704491807 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.20148012 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.4269694 +MA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +MA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Sulfur Dioxide,2A2_Lime-production,,TON,0 +MA,Sulfur Dioxide,2A6_Other-minerals,,TON,457.8857 +MA,Sulfur Dioxide,2B_Chemicals-other,,TON,0 +MA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.0471 +MA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +MA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.0013 +MA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.5885 +MA,Sulfur Dioxide,2D3c_Asphalt-roofing,heavy_oil,TON,7.6179799 +MA,Sulfur Dioxide,2D3d_Coating-application,,TON,6.1783 +MA,Sulfur Dioxide,2D3e_Degreasing,,TON,0.0013 +MA,Sulfur Dioxide,2D3h_Printing,,TON,0 +MA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1.3205 +MA,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0 +MA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,363.0984 +MA,Sulfur Dioxide,5C_Incineration,,TON,519.9528357 +MA,Sulfur Dioxide,5C_Incineration,biomass,TON,350.2879184 +MA,Sulfur Dioxide,5C_Open-burning-residential,,TON,6.753575 +MA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.6923134 +MA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0465 +MA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,6.5501 +MA,Volatile Organic Compounds,11C_Other-natural,,TON,76410.081 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,17.4637 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,19.6678 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,131.54 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,55.0013 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.1261 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,232.726 +MA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,30.8875 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,284.2491537 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1224.097679 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.100916478 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,35.98496273 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.40554937 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.506328271 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.47760691 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.816394895 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,404.6475555 +MA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +MA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.2835 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.6584 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.183 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1048.882654 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,420.6750889 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001481055 +MA,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,327.3 +MA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,413.1630614 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,170.8897239 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,28740.71539 +MA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,84.17895492 +MA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1698.935858 +MA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2059.55765 +MA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,432.3693907 +MA,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,476.3425381 +MA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,818.4261827 +MA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,217.7105035 +MA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.329676523 +MA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,275.3812797 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,52.34836304 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.705204822 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,23.42182635 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.450168133 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,285.1160903 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,246.1592963 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3267.464355 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.847372306 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,71.13747432 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11351.32616 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,10279.4819 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,237.403569 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,13.20044905 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.11572959 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,336.7777391 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,30.91550205 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,43.74182169 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001102539 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.9788118 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,7044.120547 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.6320252 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,16032.63929 +MA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,60.2405995 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,697.981847 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8386.409095 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,753.6969287 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,366.654 +MA,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +MA,Volatile Organic Compounds,2A6_Other-minerals,,TON,124.9695 +MA,Volatile Organic Compounds,2B_Chemicals-other,,TON,273.0921 +MA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,13.4996 +MA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +MA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0113 +MA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,44.5938 +MA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,23848.46525 +MA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,536.72195 +MA,Volatile Organic Compounds,2D3d_Coating-application,,TON,28043.28693 +MA,Volatile Organic Compounds,2D3e_Degreasing,,TON,5692.621625 +MA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,15.0859814 +MA,Volatile Organic Compounds,2D3h_Printing,,TON,4257.30925 +MA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,469.061943 +MA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,29.86168315 +MA,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,70.7386 +MA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,975.4038056 +MA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,316.3183 +MA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,21.1430831 +MA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,1475.29211 +MA,Volatile Organic Compounds,5C_Incineration,,TON,23.5227337 +MA,Volatile Organic Compounds,5C_Incineration,biomass,TON,46.2931403 +MA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,269.1572 +MA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,57.81065 +MA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,13.445741 +MA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,137.0057 +MA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,18.6518 +MA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,6.132 +MA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.8988 +MD,Ammonia,11C_Other-natural,Other_Fuel,TON,1.49994414 +MD,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,17.824751 +MD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,166.057135 +MD,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,1.34233 +MD,Ammonia,1A1a_Public-Electricity,natural_gas,TON,16.688444 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.472614528 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.116756424 +MD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,10.15958431 +MD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.299806323 +MD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.236997246 +MD,Ammonia,1A3bii_Road-LDV,light_oil,TON,2098.756612 +MD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.822563104 +MD,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,72.03301181 +MD,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,54.56123049 +MD,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,18.06897972 +MD,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,15.30568718 +MD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.46571302 +MD,Ammonia,1A3c_Rail,diesel_oil,TON,2.082139105 +MD,Ammonia,1A3c_Rail,light_oil,TON,0.001244682 +MD,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.636091865 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.277601 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.20159999 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.25200013 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.05357652 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.84600247 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.769016536 +MD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.70564695 +MD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,7.892652929 +MD,Ammonia,1A4bi_Residential-stationary,biomass,TON,310.6504292 +MD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,63.776995 +MD,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,3.38182931 +MD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.1842 +MD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,756.8810285 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.604567532 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.056125452 +MD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.022978768 +MD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.023143734 +MD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.600496634 +MD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.061301272 +MD,Ammonia,2D3h_Printing,,TON,0 +MD,Ammonia,3B1a_Cattle-dairy,,TON,3855.420966 +MD,Ammonia,3B1b_Cattle-non-dairy,,TON,529.254219 +MD,Ammonia,3B2_Manure-sheep,,TON,77.556803 +MD,Ammonia,3B3_Manure-swine,,TON,233.3282553 +MD,Ammonia,3B4_Manure-other,,TON,5245.25465 +MD,Ammonia,3B4_Manure-poultry,,TON,15898.64677 +MD,Ammonia,3B4d_Manure-goats,,TON,117.958298 +MD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,5895.144836 +MD,Ammonia,5D1_Wastewater-domestic,,TON,94.74913 +MD,Ammonia,6A_Other-commertial,Other_Fuel,TON,2646.00984 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,181209.4906 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,158567.2934 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8303.656252 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1249476.998 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,24647.56806 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.1962957 +MD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,235108.304 +MD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,23416140.16 +MD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,244026.7119 +MD,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1226480.954 +MD,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4286491.716 +MD,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,547068.4793 +MD,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,844230.2647 +MD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,132654.139 +MD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1965.41265 +MD,Carbon Dioxide,1A3c_Rail,light_oil,TON,96.16873029 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,103872.9658 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,145295.0601 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6332.872987 +MD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,86719.62816 +MD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,576170.0464 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,197286.869 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4125.785308 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,21.4739534 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2808.859 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,65845.1625 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,73951.37363 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,272431.3724 +MD,Carbon Monoxide,11C_Other-natural,,TON,18108.305 +MD,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,96.160007 +MD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3662.6463 +MD,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,18.4365 +MD,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,98.468055 +MD,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,4.25772 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1917.146999 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11048.30589 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,673.179174 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.864776253 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,29.55141943 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,93.16790519 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,23.84741943 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,289.7287744 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5989.579569 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6344.898959 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.53424558 +MD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5158.313793 +MD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,841.3396524 +MD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,401700.1647 +MD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,882.2800195 +MD,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,33690.77894 +MD,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7854.954926 +MD,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2201.596268 +MD,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1787.280213 +MD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6752.593645 +MD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,831.2236089 +MD,Carbon Monoxide,1A3c_Rail,light_oil,TON,26.69014036 +MD,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1735.919726 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,271.8805783 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,173.9518168 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4422.5642 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.968085151 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.30724751 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3338.055933 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,628.4096732 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,39415.87982 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,164.5667344 +MD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,412.1083652 +MD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,174837.6359 +MD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,37335.65924 +MD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,318.88505 +MD,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,412.49985 +MD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,10.92 +MD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1658.169797 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1059.681274 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1263.890169 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.36202162 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.199544 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14908.04345 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,148.8626297 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,40530.15681 +MD,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,36.4340175 +MD,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.033775 +MD,Carbon Monoxide,2A1_Cement-production,,TON,993.67214 +MD,Carbon Monoxide,2A2_Lime-production,,TON,0 +MD,Carbon Monoxide,2A6_Other-minerals,,TON,674.64608 +MD,Carbon Monoxide,2B_Chemicals-other,,TON,284.696645 +MD,Carbon Monoxide,2C_Iron-steel-alloy,,TON,63767.4685 +MD,Carbon Monoxide,2C3_Aluminum-production,,TON,0 +MD,Carbon Monoxide,2C5_Lead-production,,TON,0 +MD,Carbon Monoxide,2C7_Other-metal,,TON,0 +MD,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,26.73778 +MD,Carbon Monoxide,2D3d_Coating-application,,TON,10.077095 +MD,Carbon Monoxide,2D3e_Degreasing,,TON,0 +MD,Carbon Monoxide,2D3h_Printing,,TON,5.2253201 +MD,Carbon Monoxide,2H1_Pulp-and-paper,,TON,191.029135 +MD,Carbon Monoxide,2H2_Food-and-beverage,,TON,632.446353 +MD,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1.582165 +MD,Carbon Monoxide,3Dc_Other-farm,,TON,2.0042 +MD,Carbon Monoxide,3F_Ag-res-on-field,,TON,421.6 +MD,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,162.84952 +MD,Carbon Monoxide,5C_Incineration,,TON,0.989534695 +MD,Carbon Monoxide,5C_Incineration,biomass,TON,319.0744349 +MD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,17523.72 +MD,Carbon Monoxide,5C_Open-burning-residential,,TON,1701.108451 +MD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,4940.17667 +MD,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.08881 +MD,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.1353 +MD,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,3.18748 +MD,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.061509986 +MD,Methane,1A3bii_Road-LDV,light_oil,TON,1608.12431 +MD,Methane,1A3biii_Road-bus,diesel_oil,TON,2.420063672 +MD,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,118.7137379 +MD,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,108.9297603 +MD,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,9.215598373 +MD,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.59466089 +MD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.25663403 +MD,Nitrogen Oxides,11C_Other-natural,,TON,2879.8671 +MD,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,617.032467 +MD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,35403.824 +MD,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,140.1105 +MD,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,251.973335 +MD,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,1.70272 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1626.347371 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1738.010705 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,116.7997801 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,9.314567428 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,96.03268862 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3483.755107 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,348.0671842 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,343.9311233 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,11524.00742 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,141.6714675 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113925282 +MD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1322.681779 +MD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1385.191077 +MD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,47510.19464 +MD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2377.419174 +MD,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3972.045825 +MD,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,31202.80666 +MD,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,3473.797477 +MD,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5559.109061 +MD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,303.9658723 +MD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,5959.967221 +MD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.47915991 +MD,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11527.57887 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,39.4896475 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,651.0387544 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,145.3024539 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,56.00315086 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.549784842 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4723.824524 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1069.318933 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,802.1250176 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,45.82474537 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,884.8732109 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2351.265626 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,553.9314772 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1147.98621 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,13.6500137 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,39.3121 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4070.832637 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2087.984072 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,24.5471297 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.526081406 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,31.046532 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,179.5682616 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,883.6098425 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1689.809856 +MD,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,17.1040875 +MD,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MD,Nitrogen Oxides,2A1_Cement-production,,TON,6469.25862 +MD,Nitrogen Oxides,2A2_Lime-production,,TON,0 +MD,Nitrogen Oxides,2A6_Other-minerals,,TON,656.288395 +MD,Nitrogen Oxides,2B_Chemicals-other,,TON,39.7974962 +MD,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,2226.8966 +MD,Nitrogen Oxides,2C3_Aluminum-production,,TON,0 +MD,Nitrogen Oxides,2C5_Lead-production,,TON,0 +MD,Nitrogen Oxides,2C7_Other-metal,,TON,0 +MD,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,7.33935 +MD,Nitrogen Oxides,2D3d_Coating-application,,TON,13.097029 +MD,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +MD,Nitrogen Oxides,2D3h_Printing,,TON,6.8204148 +MD,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,471.52454 +MD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,43.61506 +MD,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1.916065 +MD,Nitrogen Oxides,3Dc_Other-farm,,TON,2.38579 +MD,Nitrogen Oxides,3F_Ag-res-on-field,,TON,18.6 +MD,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,30.672802 +MD,Nitrogen Oxides,5C_Incineration,,TON,2.24569724 +MD,Nitrogen Oxides,5C_Incineration,biomass,TON,2468.555798 +MD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,518.45 +MD,Nitrogen Oxides,5C_Open-burning-residential,,TON,120.1105919 +MD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,184.920674 +MD,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.83869 +MD,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.08052 +MD,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,2.42213 +MD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.785160401 +MD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1293.983625 +MD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.55001679 +MD,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,80.58832866 +MD,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4.388653967 +MD,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.019225806 +MD,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.498199927 +MD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.745797268 +MD,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.242507 +MD,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3008.7442 +MD,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,30.54242 +MD,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,10.368175 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1.792263981 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.891309143 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,94.8598895 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,151.1892373 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,69.15994787 +MD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,8205.505 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,19.01542848 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,49.73138157 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,134.8243514 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.04924117 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.378389717 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,81.03688195 +MD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,68.879126 +MD,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,9.3000153 +MD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.3585 +MD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,72.4706437 +MD,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.04015 +MD,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.000965 +MD,PM10 Filterable,2A1_Cement-production,,TON,407.18651 +MD,PM10 Filterable,2A2_Lime-production,,TON,0 +MD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,34293.14 +MD,PM10 Filterable,2A6_Other-minerals,,TON,5228.547074 +MD,PM10 Filterable,2B_Chemicals-other,,TON,55.4907823 +MD,PM10 Filterable,2C_Iron-steel-alloy,,TON,755.16235 +MD,PM10 Filterable,2C3_Aluminum-production,,TON,10.81795 +MD,PM10 Filterable,2C5_Lead-production,,TON,5.48998 +MD,PM10 Filterable,2C7_Other-metal,,TON,9.509485 +MD,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,64.775455 +MD,PM10 Filterable,2D3d_Coating-application,,TON,3.7187872 +MD,PM10 Filterable,2D3e_Degreasing,,TON,0 +MD,PM10 Filterable,2D3h_Printing,,TON,0.0666704 +MD,PM10 Filterable,2H1_Pulp-and-paper,,TON,90.60166 +MD,PM10 Filterable,2H2_Food-and-beverage,,TON,311.324157 +MD,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,3.9644295 +MD,PM10 Filterable,3Dc_Other-farm,,TON,14150.1441 +MD,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,7.1264475 +MD,PM10 Filterable,5C_Incineration,,TON,0.06947 +MD,PM10 Filterable,5C_Incineration,biomass,TON,69.167355 +MD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1762.75 +MD,PM10 Filterable,5C_Open-burning-residential,,TON,760.915702 +MD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,720.32158 +MD,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0702625 +MD,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00297 +MD,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,3.5214685 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.794667654 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,7612.0286 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,35.75382 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,21.6676769 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,122.6431645 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.31562397 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.057670113 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1.809045337 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,5.868144954 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,277.9286265 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,177.743826 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,176.3192393 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,948.422599 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,38.10707438 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717603 +MD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,119.209331 +MD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8205.5158 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,94.38357286 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2186.740629 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,140.0336504 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,104.1517514 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1636.180378 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,222.5470268 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,327.2058145 +MD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.47679021 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,188.0568562 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.012957844 +MD,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,639.2351807 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,18.89735582 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,128.4791404 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.11795316 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,11.72745634 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.698481533 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,151.4513826 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,109.1288419 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,39.08867773 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.789769205 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,74.065659 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,597.1179184 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5363.361754 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,151.78918 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,9.3599906 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.1982 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,85.73430676 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,194.483333 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.97743548 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0027131 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.6270764 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,150.536207 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.05198087 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,245.3801985 +MD,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.04015 +MD,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.000965 +MD,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,455.808766 +MD,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +MD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,34293.14 +MD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5288.67604 +MD,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,73.28841656 +MD,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1396.1175 +MD,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,19.47231 +MD,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,8.69454 +MD,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,15.07887267 +MD,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,77.6660528 +MD,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.7187872 +MD,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.0823564 +MD,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,282.76164 +MD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1992.818789 +MD,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,6.14018669 +MD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,14150.14995 +MD,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,58.9 +MD,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,7.4731208 +MD,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.073760956 +MD,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,84.63127291 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1762.75 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,760.915702 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,720.32158 +MD,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0702625 +MD,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.00297 +MD,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.8774921 +MD,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.51998 +MD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1313.9223 +MD,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.99998 +MD,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,7.62074566 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1.391053507 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.699796462 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,54.70883672 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,98.59272204 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,68.78091074 +MD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,512.6697 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,14.44427067 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,34.47976579 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,73.97707519 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.026646632 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.261687972 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,68.922017 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,52.934897 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,5.7000025 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.813 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.559340955 +MD,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +MD,PM2.5 Filterable,2A1_Cement-production,,TON,144.112417 +MD,PM2.5 Filterable,2A2_Lime-production,,TON,0 +MD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3429.28 +MD,PM2.5 Filterable,2A6_Other-minerals,,TON,741.5173808 +MD,PM2.5 Filterable,2B_Chemicals-other,,TON,19.97565667 +MD,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,233.7216888 +MD,PM2.5 Filterable,2C3_Aluminum-production,,TON,3.8181 +MD,PM2.5 Filterable,2C5_Lead-production,,TON,1.93764 +MD,PM2.5 Filterable,2C7_Other-metal,,TON,3.84035763 +MD,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,22.879603 +MD,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +MD,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +MD,PM2.5 Filterable,2D3h_Printing,,TON,0 +MD,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,70.47286 +MD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,35.54963978 +MD,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1.535353925 +MD,PM2.5 Filterable,3Dc_Other-farm,,TON,2829.952007 +MD,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,1.95322646 +MD,PM2.5 Filterable,5C_Incineration,,TON,0.02719442 +MD,PM2.5 Filterable,5C_Incineration,biomass,TON,35.89931575 +MD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1762.75 +MD,PM2.5 Filterable,5C_Open-burning-residential,,TON,696.262185 +MD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,575.236433 +MD,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,1.03572481 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.072151444 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5917.2007 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,14.21141 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,20.8585916 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,118.9266888 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.18030688 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.055371236 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1.407748325 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.678121982 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,237.8937294 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,125.2098929 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,175.9213119 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,919.9699331 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,35.08065077 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717603 +MD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,42.69784532 +MD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,512.6757 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,85.71755167 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1353.191123 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,126.9842801 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,59.32407919 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1484.628192 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,202.3200805 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,290.4842786 +MD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.15905078 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,176.1919086 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.011944973 +MD,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,602.0645267 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,14.10139621 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,102.1602881 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.314441098 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.624121335 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.537027752 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,127.2928173 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.8549847 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,36.06345875 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.789769205 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,71.84368897 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,549.3747568 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5358.20718 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,135.84512 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,5.80890035 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.652 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.82287686 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,188.648852 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.579281097 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0027131 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.4882556 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,138.4944778 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.51043488 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,225.7497485 +MD,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.04015 +MD,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.000965 +MD,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,225.324766 +MD,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3429.28 +MD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,803.6838412 +MD,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,37.83300662 +MD,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,874.6738421 +MD,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,12.47246 +MD,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,5.1422 +MD,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,9.40972518 +MD,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,35.7702988 +MD,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.7187872 +MD,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.0823564 +MD,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,262.63264 +MD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1607.628234 +MD,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3.71111507 +MD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2829.957861 +MD,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,58.9 +MD,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,5.99734775 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.068314811 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,40.90939362 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1762.75 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,696.262185 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,575.236433 +MD,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0702625 +MD,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.00297 +MD,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.39174848 +MD,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,111.9373865 +MD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,227055.582 +MD,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,771.924 +MD,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,26.5577284 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,42.90462561 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.996561813 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.240012084 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,26.53143366 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.30530689 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,20417.32545 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,861.8754984 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,13.92791183 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,271.8303071 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.724764211 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000136531 +MD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,147.0940704 +MD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.584404317 +MD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,532.5919702 +MD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.69179356 +MD,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,27.89328345 +MD,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,46.9257051 +MD,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.01880414 +MD,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9.237951604 +MD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.016153546 +MD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,59.93773094 +MD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003022828 +MD,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3369.276285 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.097304578 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1166.296203 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,497.6448287 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,202.6193585 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,10.91329712 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.97980262 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,22.59723948 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.375910758 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.140000676 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,18.86599696 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,16.58294066 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,106.2766456 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2755.1672 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,46.500022 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,94.3485 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,24.86912585 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,42.92055488 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.139542277 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000472288 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6109976 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.044604306 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.2191063 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.16106768 +MD,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,5.037 +MD,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MD,Sulfur Dioxide,2A1_Cement-production,,TON,2157.651895 +MD,Sulfur Dioxide,2A2_Lime-production,,TON,0 +MD,Sulfur Dioxide,2A6_Other-minerals,,TON,165.5599596 +MD,Sulfur Dioxide,2B_Chemicals-other,,TON,3.7030894 +MD,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,2080.959 +MD,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +MD,Sulfur Dioxide,2C5_Lead-production,,TON,0 +MD,Sulfur Dioxide,2C7_Other-metal,,TON,0 +MD,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,9.224922 +MD,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0583051 +MD,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +MD,Sulfur Dioxide,2D3h_Printing,,TON,0.2915391 +MD,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,669.768415 +MD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.2166063 +MD,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0082315 +MD,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0143 +MD,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.48 +MD,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,9.8310975 +MD,Sulfur Dioxide,5C_Incineration,,TON,0.441277024 +MD,Sulfur Dioxide,5C_Incineration,biomass,TON,389.895428 +MD,Sulfur Dioxide,5C_Open-burning-residential,,TON,20.00699431 +MD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,56.1980909 +MD,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0219 +MD,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.0228867 +MD,Volatile Organic Compounds,11C_Other-natural,,TON,146428.41 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,11.289666 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,321.08555 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,2.2005 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,15.5566905 +MD,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,80.8793 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,178.6509072 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,541.2987353 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.56869338 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.050512068 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.339283608 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,15.94423863 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.909159563 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,53.51493843 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1187.755618 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,471.9531698 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.00185132 +MD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,318.7009196 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,189.6598636 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,34328.05278 +MD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,129.3187676 +MD,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1909.23639 +MD,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1816.432585 +MD,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,488.0091144 +MD,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,406.3866059 +MD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1554.197097 +MD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,324.9505808 +MD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.062488244 +MD,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,309.6772748 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,9.32737138 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.52350917 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,171.3214008 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.631658033 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.197293901 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,448.8142559 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,157.0505275 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2087.39286 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.539928407 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,104.1361816 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,13501.9486 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6669.571682 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,45.473007 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,14.9999971 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.5573 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,227.9670382 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,204.7822113 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,79.80165588 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009141331 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.470403 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4784.417731 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,36.64499238 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,15229.6595 +MD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,71.93294174 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1558.243533 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11682.30848 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,69.55736351 +MD,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.00193 +MD,Volatile Organic Compounds,2A1_Cement-production,,TON,45.51698 +MD,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +MD,Volatile Organic Compounds,2A6_Other-minerals,,TON,91.7387646 +MD,Volatile Organic Compounds,2B_Chemicals-other,,TON,102.3124513 +MD,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,227.9686 +MD,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +MD,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +MD,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +MD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,16021.27274 +MD,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,6.82907 +MD,Volatile Organic Compounds,2D3d_Coating-application,,TON,13980.97784 +MD,Volatile Organic Compounds,2D3e_Degreasing,,TON,3355.89952 +MD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1761.5247 +MD,Volatile Organic Compounds,2D3h_Printing,,TON,1728.1315 +MD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,394.854821 +MD,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,212.136865 +MD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,899.2375409 +MD,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,168.354424 +MD,Volatile Organic Compounds,3Dc_Other-farm,,TON,14.1306 +MD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1625.17385 +MD,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,37.2 +MD,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,129.813772 +MD,Volatile Organic Compounds,5C_Incineration,,TON,0.044369856 +MD,Volatile Organic Compounds,5C_Incineration,biomass,TON,27.27495509 +MD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1202.8 +MD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,171.2440755 +MD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,721.60334 +MD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,248.702738 +MD,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,7.22131 +MD,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,100.117208 +ME,Ammonia,1A1a_Public-Electricity,biomass,TON,96.846919 +ME,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.49683522 +ME,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,5.51848 +ME,Ammonia,1A1a_Public-Electricity,natural_gas,TON,50.803568 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.493684223 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.049635964 +ME,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,98.065734 +ME,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.10772302 +ME,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.068497 +ME,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,39.4012292 +ME,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ME,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,3.562171 +ME,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.167048832 +ME,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.064177493 +ME,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.372804463 +ME,Ammonia,1A3bii_Road-LDV,light_oil,TON,564.9896399 +ME,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.810175896 +ME,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,25.38656513 +ME,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,19.30440301 +ME,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,6.130661223 +ME,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.434328003 +ME,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.834388134 +ME,Ammonia,1A3c_Rail,diesel_oil,TON,0.462006395 +ME,Ammonia,1A3c_Rail,light_oil,TON,0.000759496 +ME,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.818375138 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,49.68389795 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,45.49799997 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.191122591 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.923738495 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.954533412 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.239601733 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.501134679 +ME,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.085380564 +ME,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.342059468 +ME,Ammonia,1A4bi_Residential-stationary,biomass,TON,253.7746251 +ME,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,156.056835 +ME,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.240029905 +ME,Ammonia,1A4bi_Residential-stationary,light_oil,TON,28.16951 +ME,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,11.30049981 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.056756531 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.107441244 +ME,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005438617 +ME,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,4.815017239 +ME,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.25367327 +ME,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.71528483 +ME,Ammonia,2A6_Other-minerals,Other_Fuel,TON,15.45 +ME,Ammonia,2B_Chemicals-other,Other_Fuel,TON,1.0075 +ME,Ammonia,2D3d_Coating-application,,TON,0.4005 +ME,Ammonia,2H1_Pulp-and-paper,,TON,268.15781 +ME,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,193.747 +ME,Ammonia,3B1a_Cattle-dairy,,TON,1476.299901 +ME,Ammonia,3B1b_Cattle-non-dairy,,TON,135.7995321 +ME,Ammonia,3B2_Manure-sheep,,TON,38.15988 +ME,Ammonia,3B3_Manure-swine,,TON,31.2610584 +ME,Ammonia,3B4_Manure-other,,TON,855.93536 +ME,Ammonia,3B4_Manure-poultry,,TON,1146.362187 +ME,Ammonia,3B4d_Manure-goats,,TON,41.22624 +ME,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1704.811865 +ME,Ammonia,5A_Solid-waste-disposal,,TON,0 +ME,Ammonia,5B_Compost-biogas,Other_Fuel,TON,155.8595295 +ME,Ammonia,5C_Incineration,biomass,TON,1.463114 +ME,Ammonia,5D1_Wastewater-domestic,,TON,3.6838236 +ME,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,266.54533 +ME,Ammonia,6A_Other-commertial,Other_Fuel,TON,364.32928 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,60750.50849 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,67869.96189 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3538.78402 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,266517.5416 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5279.426454 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.23925859 +ME,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,75410.59955 +ME,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,6231886.5 +ME,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,56213.36673 +ME,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,420485.3015 +ME,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1572136.102 +ME,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,185176.0061 +ME,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,304309.2151 +ME,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,33463.74971 +ME,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1182.4274 +ME,Carbon Dioxide,1A3c_Rail,light_oil,TON,58.6467122 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29418.50325 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,41162.79241 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1818.060799 +ME,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,10492.74449 +ME,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,97855.18645 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,130030.0778 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7551.371668 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.74378044 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,664.7905 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,315126.6859 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,31239.93249 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,115060.989 +ME,Carbon Monoxide,11C_Other-natural,,TON,68389.186 +ME,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,3819.321662 +ME,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,16.894075 +ME,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,34.49049 +ME,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.64 +ME,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,615.669997 +ME,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,0.001991 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,405.0535517 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4724.167957 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,281.6215879 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,5946.438339 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,130.7436626 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,74.74643845 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,304.6439184 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.080033067 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,155.7221493 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1274.197569 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1538.287553 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849295 +ME,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2318.69001 +ME,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,280.2685485 +ME,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,158608.3068 +ME,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,219.1358387 +ME,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,15967.48029 +ME,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3257.737511 +ME,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,750.5916763 +ME,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,718.0483413 +ME,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1628.684965 +ME,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,154.8243028 +ME,Carbon Monoxide,1A3c_Rail,light_oil,TON,18.36152864 +ME,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,533.1920007 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,867.8224531 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,306.7114557 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,41.66681266 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.889144497 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,517.8878201 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,177.9917139 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12633.49713 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,46.9093752 +ME,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,49.85297759 +ME,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,34749.61969 +ME,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,30445.10523 +ME,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,640.18515 +ME,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,33.00415 +ME,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,50.52169 +ME,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,115.63883 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,513.1698942 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3009.197066 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.742440485 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.6305521 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,46646.95056 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,62.88515646 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,18615.917 +ME,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,26.38456 +ME,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,540.483095 +ME,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,3.55 +ME,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.75 +ME,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2149.09627 +ME,Carbon Monoxide,2H2_Food-and-beverage,,TON,125.151241 +ME,Carbon Monoxide,5A_Solid-waste-disposal,,TON,145.5798557 +ME,Carbon Monoxide,5C_Incineration,biomass,TON,507.0005446 +ME,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,14955.731 +ME,Carbon Monoxide,5C_Open-burning-residential,,TON,5787.862 +ME,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,732.4481 +ME,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.804148 +ME,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.702949484 +ME,Methane,1A3bii_Road-LDV,light_oil,TON,759.979069 +ME,Methane,1A3biii_Road-bus,diesel_oil,TON,0.761020993 +ME,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,72.28210724 +ME,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,53.69317186 +ME,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,4.01180599 +ME,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.533482515 +ME,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.38400733 +ME,Nitrogen Oxides,11C_Other-natural,,TON,1961.3178 +ME,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,2016.55155 +ME,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,73.394139 +ME,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,173.7 +ME,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.16 +ME,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,546.218517 +ME,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,0.011613 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,514.318087 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,732.1133855 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,49.25374878 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3341.326147 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,569.7712411 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,807.8211908 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,3024.396739 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.697358079 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,196.361629 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2455.84604 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,28.28448333 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785067 +ME,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,183.3677953 +ME,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,468.2201675 +ME,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,17512.08114 +ME,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,627.7385822 +ME,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1600.103087 +ME,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,12862.74244 +ME,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1218.825563 +ME,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2305.131777 +ME,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,71.1419823 +ME,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1482.084023 +ME,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.271518912 +ME,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3359.979264 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,363.6540034 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1239.685058 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,186.912321 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,23.11965645 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,610.9958478 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,302.8437038 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,213.5947365 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.03791452 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,107.0685206 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,357.2046474 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,454.5667655 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,2304.6658 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.36004498 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,181.8781 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,271.75116 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1166.530481 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,30.33133778 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.165452104 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.3398168 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,315.959658 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,373.275514 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,652.755006 +ME,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,10.92611 +ME,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,1529.743867 +ME,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,31.6 +ME,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2509.53624 +ME,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +ME,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.45 +ME,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,22.533595 +ME,Nitrogen Oxides,5C_Incineration,biomass,TON,1217.317398 +ME,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,442.47692 +ME,Nitrogen Oxides,5C_Open-burning-residential,,TON,408.55491 +ME,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,32.553248 +ME,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.269675458 +ME,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,417.9511811 +ME,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.140559905 +ME,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,30.63551561 +ME,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.730168491 +ME,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.710616418 +ME,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.586185733 +ME,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.450549214 +ME,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,83.860583 +ME,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.30023218 +ME,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,5.11907 +ME,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.063164 +ME,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,59.468091 +ME,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.000332 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1048.33421 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,40.24563019 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7.023095506 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,434.9520218 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.042874898 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,17.04614099 +ME,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,26848.997 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,672.5729897 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,73.02463319 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,36.72556978 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.263291434 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.50158801 +ME,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,138.28 +ME,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.2001497 +ME,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,10.912696 +ME,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.492843 +ME,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.72729 +ME,PM10 Filterable,2A1_Cement-production,,TON,7.08545 +ME,PM10 Filterable,2A2_Lime-production,Other_Fuel,TON,0.105185 +ME,PM10 Filterable,2A5b_Construction-and-demolition,,TON,2274.07967 +ME,PM10 Filterable,2A6_Other-minerals,,TON,3197.150357 +ME,PM10 Filterable,2B_Chemicals-other,Other_Fuel,TON,6.7 +ME,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,23.8641227 +ME,PM10 Filterable,2D3d_Coating-application,,TON,0.3 +ME,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.031901 +ME,PM10 Filterable,2H1_Pulp-and-paper,,TON,730.996226 +ME,PM10 Filterable,2H2_Food-and-beverage,,TON,56.97549685 +ME,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,16.768006 +ME,PM10 Filterable,3Dc_Other-farm,,TON,3608.031 +ME,PM10 Filterable,5A_Solid-waste-disposal,,TON,13.378226 +ME,PM10 Filterable,5C_Incineration,biomass,TON,28.5407775 +ME,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1504.4212 +ME,PM10 Filterable,5C_Open-burning-residential,,TON,2587.516 +ME,PM10 Filterable,5C_Open-burning-yard-waste,,TON,121.289903 +ME,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,5.247173 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,87.62444347 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.291271597 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,5.992533 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.063164 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,108.9934156 +ME,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.0008632 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.79403305 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.720784903 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.432209613 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1104.717932 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,52.2261113 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,7.790225528 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,534.142558 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.042875844 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,40.78691917 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,201.8539361 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.150692948 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +ME,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,56.38711784 +ME,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,26848.997 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,31.60881601 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,725.3889453 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,38.68170019 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,50.05573353 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,675.8061747 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,82.73055242 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,133.8001555 +ME,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.755366181 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,37.84211672 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007910588 +ME,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,174.912094 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,91.92536977 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,201.2250129 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,43.50401336 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.764059919 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,77.86419844 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30.91022747 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.06925027 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.22689655 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.960637216 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,89.65396462 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4364.492687 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,371.41503 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.32856625 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,67.04342 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1.794192279 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,94.28634457 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,28.38267194 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000851979 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.0969974 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,488.6685164 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.62580547 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,103.6360095 +ME,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.72729 +ME,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,7.6235859 +ME,PM10 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,0.136669 +ME,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2274.07967 +ME,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3207.532867 +ME,PM10 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,8.97845 +ME,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,36.86300446 +ME,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.3 +ME,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.031901 +ME,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1334.458851 +ME,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,410.5789055 +ME,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,25.97064833 +ME,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,3608.031 +ME,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,14.730764 +ME,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,29.85695361 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1504.4212 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2587.516 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,95.900591 +ME,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5.247173 +ME,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,78.554486 +ME,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.026224349 +ME,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.231425 +ME,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.063164 +ME,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,33.648802 +ME,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.000332 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,741.0588459 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.46029089 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.412420772 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,137.3878867 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.042887552 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,15.2351119 +ME,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4054.3397 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,573.6160535 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,50.28618793 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.232822962 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.959977928 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.87788765 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,106.2707 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.96372055 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,8.386608 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.492843 +ME,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.72729 +ME,PM2.5 Filterable,2A1_Cement-production,,TON,3.542498 +ME,PM2.5 Filterable,2A2_Lime-production,Other_Fuel,TON,0.0371241 +ME,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,227.407967 +ME,PM2.5 Filterable,2A6_Other-minerals,,TON,653.6724706 +ME,PM2.5 Filterable,2B_Chemicals-other,Other_Fuel,TON,6.7 +ME,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,6.96469717 +ME,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.031601 +ME,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,553.9816162 +ME,PM2.5 Filterable,2H2_Food-and-beverage,,TON,18.40683152 +ME,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,11.18856446 +ME,PM2.5 Filterable,3Dc_Other-farm,,TON,721.571 +ME,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,7.202353 +ME,PM2.5 Filterable,5C_Incineration,biomass,TON,26.513855 +ME,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1159.75968 +ME,PM2.5 Filterable,5C_Open-burning-residential,,TON,2369.6188 +ME,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,108.152362 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,82.31834647 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.017263441 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.104887 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.063164 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,82.4141556 +ME,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.0008632 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,38.5949577 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.673415636 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.431956184 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,797.4222023 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,42.44244873 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.179550251 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,236.5918908 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.042886851 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,38.98135502 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,195.7983595 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.503391739 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +ME,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,11.70924752 +ME,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4054.3397 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,28.66221208 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,481.5213087 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,34.79011218 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,32.20029813 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,610.4838023 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,75.30309652 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,118.5355387 +ME,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.081683287 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,34.8995825 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007291988 +ME,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,165.0017926 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,82.07273645 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,179.3750715 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.34909793 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.474558789 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,75.56450421 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29.98289481 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.21258254 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.22689655 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.691807777 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,82.48480735 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4360.246817 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,332.40107 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.0921359 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,60.00109 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1.483659153 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,91.45784407 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,26.11206086 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000851979 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.06408808 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,449.5754298 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.39703418 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,95.345241 +ME,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.72729 +ME,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,4.08063172 +ME,PM2.5 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,0.0686081 +ME,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,227.407967 +ME,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,664.0549684 +ME,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,8.97845 +ME,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,20.14255804 +ME,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.3 +ME,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.031601 +ME,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1158.905623 +ME,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,353.2368961 +ME,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,20.39122078 +ME,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,721.571 +ME,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,8.554898 +ME,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,29.52539161 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1159.75968 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2369.6188 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,73.930204 +ME,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5.247173 +ME,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,131.452154 +ME,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,11.0826091 +ME,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1022.6 +ME,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.75 +ME,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,30.176462 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.62043462 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.449378356 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.084642894 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2037.099342 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,153.851312 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,869.6278161 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7519.799388 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.105884387 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,128.070287 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,57.98231009 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.149481316 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +ME,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,25.01521541 +ME,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.828558714 +ME,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,137.8455797 +ME,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.617870637 +ME,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9.300105096 +ME,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,17.10456486 +ME,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.03617928 +ME,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.308310006 +ME,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.740234999 +ME,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,10.46657289 +ME,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001713487 +ME,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,937.7959756 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,32.49445331 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2419.879615 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,437.0042537 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,49.17789069 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.750091244 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.399903092 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.175337779 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.040192296 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.282713473 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.885438398 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,114.3437399 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,5454.3711 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,4.1657207 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,430.44513 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,1.7345826 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28.28906264 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.222739717 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000148318 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.14460836 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,9.271754989 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.696453959 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.38853026 +ME,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00517 +ME,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,120.920083 +ME,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.053 +ME,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,563.243345 +ME,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +ME,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,383.3105852 +ME,Sulfur Dioxide,5C_Incineration,biomass,TON,43.926869 +ME,Sulfur Dioxide,5C_Open-burning-residential,,TON,68.09247 +ME,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.0338262 +ME,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,42.08 +ME,Volatile Organic Compounds,11C_Other-natural,,TON,329435.78 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,211.19647 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.99110033 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,4.701525 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.01 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,33.42497 +ME,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,125.201732 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,51.30662419 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,230.9269148 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.903763236 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,238.4868144 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.89837016 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,16.41617427 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,125.2086376 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.028314661 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,27.42142455 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,252.4123183 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,103.8414012 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +ME,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,145.610051 +ME,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,111.7783833 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,68.89212094 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,13448.23592 +ME,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,33.4275051 +ME,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,968.2609521 +ME,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,742.263696 +ME,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,183.1503641 +ME,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,169.0647858 +ME,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,337.7069314 +ME,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,56.63717222 +ME,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.678440964 +ME,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,84.08921582 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,28.11297284 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.01452664 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.313025927 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.421504786 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.43892089 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,44.4844681 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,609.3991319 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.153536725 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,12.59882132 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2397.754249 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5300.972928 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,89.62591 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,1.2001497 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,7.0730455 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,15.9003295 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,101.7404362 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,269.509131 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00287493 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.0086571 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,18953.94472 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.48012128 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6034.648614 +ME,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,33.632 +ME,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,185.1049345 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,369.1852204 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1882.931316 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +ME,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,25.733297 +ME,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,8.435961 +ME,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,1.031 +ME,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,5548.861665 +ME,Volatile Organic Compounds,2D3d_Coating-application,,TON,3224.628357 +ME,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,564.96556 +ME,Volatile Organic Compounds,2D3h_Printing,,TON,0 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +ME,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,2125.873401 +ME,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,259.5740997 +ME,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,289.90937 +ME,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1029.467975 +ME,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,76.80910089 +ME,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,158.850837 +ME,Volatile Organic Compounds,5C_Incineration,biomass,TON,16.743007 +ME,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1026.54592 +ME,Volatile Organic Compounds,5C_Open-burning-residential,,TON,582.8718 +ME,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,136.60741 +ME,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,18.528112 +ME,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,3495.160069 +ME,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,3.9227643 +MI,Ammonia,11C_Other-natural,Other_Fuel,TON,0.0011 +MI,Ammonia,1A1a_Public-Electricity,biomass,TON,46.45155 +MI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.20065 +MI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,63.647115 +MI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,3.317 +MI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,31.514285 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.023705467 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.584020479 +MI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,99.26 +MI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.765015 +MI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,5.971895 +MI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.33026 +MI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.091 +MI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,157.9033 +MI,Ammonia,1A2c_Chemicals,natural_gas,TON,0.083 +MI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,22.82434023 +MI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.432411419 +MI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,13.39327885 +MI,Ammonia,1A3bii_Road-LDV,light_oil,TON,3728.525424 +MI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.300032212 +MI,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,148.6416698 +MI,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,130.3629626 +MI,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,34.05915188 +MI,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,37.38587647 +MI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31.69036319 +MI,Ammonia,1A3c_Rail,diesel_oil,TON,3.008166084 +MI,Ammonia,1A3c_Rail,light_oil,TON,0.001481509 +MI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,30.55290663 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.102471629 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.223836268 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.071172127 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.726432542 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.124792182 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.7118284 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.83394053 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.835117966 +MI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.635321792 +MI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.691007332 +MI,Ammonia,1A4bi_Residential-stationary,biomass,TON,1702.450984 +MI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,27.68 +MI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,15.996 +MI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.1 +MI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3428.279 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.470568025 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.276372327 +MI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.042396188 +MI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,18.31613132 +MI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.310730281 +MI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,12.52364803 +MI,Ammonia,2A1_Cement-production,,TON,72.633 +MI,Ammonia,2A6_Other-minerals,Other_Fuel,TON,118.22579 +MI,Ammonia,2B_Chemicals-other,,TON,204.98535 +MI,Ammonia,2C_Iron-steel-alloy,,TON,18.608 +MI,Ammonia,2C7_Other-metal,Other_Fuel,TON,9.39055 +MI,Ammonia,2C7b_Nickel-production,Other_Fuel,TON,0.195 +MI,Ammonia,2D3d_Coating-application,,TON,4.3664 +MI,Ammonia,2D3h_Printing,,TON,0.27649 +MI,Ammonia,2H1_Pulp-and-paper,,TON,17.3145 +MI,Ammonia,2H2_Food-and-beverage,,TON,5.173 +MI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,54.7085 +MI,Ammonia,3B1a_Cattle-dairy,,TON,19477.65706 +MI,Ammonia,3B1b_Cattle-non-dairy,,TON,2149.447499 +MI,Ammonia,3B2_Manure-sheep,,TON,285.36684 +MI,Ammonia,3B3_Manure-swine,,TON,6163.471783 +MI,Ammonia,3B4_Manure-other,,TON,1359.240126 +MI,Ammonia,3B4_Manure-poultry,,TON,6892.630246 +MI,Ammonia,3B4d_Manure-goats,,TON,194.266644 +MI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,24270.72056 +MI,Ammonia,5D1_Wastewater-domestic,,TON,67.266 +MI,Ammonia,5D2_Wastewater-industrial,biomass,TON,0 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,618203.0914 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,769731.9785 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41218.89828 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2808997.528 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,111209.825 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,11.82478664 +MI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,479451.2916 +MI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,44421761.66 +MI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,438378.6106 +MI,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2732151.997 +MI,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,11693087.38 +MI,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1141457.514 +MI,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2397474.94 +MI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,329382.4712 +MI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2317.49711 +MI,Carbon Dioxide,1A3c_Rail,light_oil,TON,114.4989208 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,225172.9172 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,314988.7791 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13798.46122 +MI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,78077.18937 +MI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,633879.0241 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1041473.031 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,20396.63242 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,113.3972656 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5182.2344 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1196119.044 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,38263.94286 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,870540.448 +MI,Carbon Monoxide,11C_Other-natural,,TON,84910.181 +MI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1605.7018 +MI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,41.03017 +MI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,11475.94655 +MI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,20.733 +MI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.001495 +MI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2491.00275 +MI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,52.10546 +MI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,128.933465 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4732.111831 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,53397.1401 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3236.140512 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1996.154293 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,242.064033 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2573.535267 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,125.9963203 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.074042335 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,24679.52473 +MI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,174.70975 +MI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.75525 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,10867.23023 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,25311.41007 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.007028637 +MI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9930.969579 +MI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1910.500411 +MI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1226866.863 +MI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1735.740555 +MI,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,114333.0288 +MI,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,25487.88732 +MI,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,5085.06448 +MI,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5646.842215 +MI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,17500.71909 +MI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,980.225127 +MI,Carbon Monoxide,1A3c_Rail,light_oil,TON,33.14953297 +MI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12335.65454 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,249.1039843 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,42.09513616 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,161.3642584 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.513635806 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1078.521973 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8123.150487 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1362.257528 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,87910.0024 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,357.2185594 +MI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,370.9596246 +MI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,204784.004 +MI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,186723.3278 +MI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,138.41 +MI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2199.95 +MI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,5.52 +MI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,7650.4 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5620.869695 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6232.908979 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,12.47669611 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,59.416976 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,175911.2116 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,79.3488787 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,130477.5486 +MI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,27.21497 +MI,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.92069 +MI,Carbon Monoxide,2A1_Cement-production,,TON,3376.612 +MI,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,349.025 +MI,Carbon Monoxide,2A6_Other-minerals,,TON,3449.888695 +MI,Carbon Monoxide,2B_Chemicals-other,,TON,229.9509 +MI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,19750.0596 +MI,Carbon Monoxide,2C3_Aluminum-production,,TON,43.416 +MI,Carbon Monoxide,2C6_Zinc-production,,TON,14.15 +MI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,27.4125 +MI,Carbon Monoxide,2D3d_Coating-application,,TON,7.565 +MI,Carbon Monoxide,2D3e_Degreasing,,TON,0 +MI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2484.4721 +MI,Carbon Monoxide,2H2_Food-and-beverage,,TON,1278.462757 +MI,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0675 +MI,Carbon Monoxide,3Dc_Other-farm,,TON,74.6 +MI,Carbon Monoxide,3F_Ag-res-on-field,,TON,322.4 +MI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1514.43473 +MI,Carbon Monoxide,5C_Incineration,,TON,10.11295226 +MI,Carbon Monoxide,5C_Incineration,biomass,TON,448.2910441 +MI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,17314.37601 +MI,Carbon Monoxide,5C_Open-burning-residential,,TON,9277.45392 +MI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,846.189087 +MI,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.5785 +MI,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,128.10083 +MI,Methane,1A3bii_Road-LDV,diesel_oil,TON,11.10974348 +MI,Methane,1A3bii_Road-LDV,light_oil,TON,5520.088147 +MI,Methane,1A3biii_Road-bus,diesel_oil,TON,5.173110339 +MI,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,486.7610396 +MI,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,421.691133 +MI,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,25.77059585 +MI,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,41.64227508 +MI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,107.5691062 +MI,Nitrogen Oxides,11C_Other-natural,,TON,14234.7577 +MI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1199.619 +MI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,206.89843 +MI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,107450.6851 +MI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,227.715 +MI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.3986 +MI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2290.714235 +MI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,157.477535 +MI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,516.08029 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5314.589557 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8343.296816 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,562.9120336 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1946.349228 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,824.2901253 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6134.208478 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1026.408965 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.501806211 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,28549.86266 +MI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,114.54655 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.682706371 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,42.79453363 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,23904.86073 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,664.2916324 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.207553178 +MI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2536.837432 +MI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3094.918364 +MI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,126152.9946 +MI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4569.450422 +MI,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,10417.46563 +MI,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,95119.90091 +MI,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,7922.645619 +MI,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,17914.09719 +MI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,633.5325195 +MI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7508.70031 +MI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.572526323 +MI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,70144.79899 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,221.0889396 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,165.2238765 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1072.16542 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,55.24377759 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,40.92282268 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9256.090498 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2318.019428 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1776.538032 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,99.38965665 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,796.7501734 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2567.682338 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2507.688831 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,498.41 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,56.54 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,19.87 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,18937.34 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11035.89277 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,128.7168082 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.779200921 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,57.278546 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1511.891607 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,455.8600321 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,6136.227753 +MI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,22.791295 +MI,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,30.168845 +MI,Nitrogen Oxides,2A1_Cement-production,,TON,9924.865 +MI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1162.6285 +MI,Nitrogen Oxides,2A6_Other-minerals,,TON,4945.97511 +MI,Nitrogen Oxides,2B_Chemicals-other,,TON,63.595525 +MI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,10186.98685 +MI,Nitrogen Oxides,2C3_Aluminum-production,,TON,80.389619 +MI,Nitrogen Oxides,2C5_Lead-production,,TON,0.062 +MI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,41.321175 +MI,Nitrogen Oxides,2D3d_Coating-application,,TON,23.105 +MI,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.09745 +MI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1871.53012 +MI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,100.1972 +MI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,10.82695 +MI,Nitrogen Oxides,3Dc_Other-farm,,TON,64.25 +MI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,15.6 +MI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,446.859985 +MI,Nitrogen Oxides,5C_Incineration,,TON,88.3944468 +MI,Nitrogen Oxides,5C_Incineration,biomass,TON,2418.058104 +MI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,512.259418 +MI,Nitrogen Oxides,5C_Open-burning-residential,,TON,654.87909 +MI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,37.6084038 +MI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MI,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,332.9689 +MI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.845049913 +MI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2804.270239 +MI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.150949711 +MI,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,197.1554932 +MI,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,14.59682767 +MI,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.797232643 +MI,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.904973515 +MI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.115960325 +MI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,860.858579 +MI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.965293571 +MI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4425.247619 +MI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,21.20694 +MI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,108.9970443 +MI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,64.990392 +MI,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.03571 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,292.9761214 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.15651623 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2697.037651 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,191.7017638 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.12008251 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,513.1847116 +MI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,4.260174 +MI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.126502 +MI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,209277.863 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,196.6690159 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,18.31500125 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,17.19449249 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14.86573911 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.14341539 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,86.84734255 +MI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,29.94 +MI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,59.87 +MI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.183 +MI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,38.468 +MI,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.15795862 +MI,PM10 Filterable,2A1_Cement-production,,TON,7877.502471 +MI,PM10 Filterable,2A2_Lime-production,,TON,170.5119801 +MI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,25614.95157 +MI,PM10 Filterable,2A6_Other-minerals,,TON,15129.09162 +MI,PM10 Filterable,2B_Chemicals-other,,TON,113.757289 +MI,PM10 Filterable,2C_Iron-steel-alloy,,TON,1248.721427 +MI,PM10 Filterable,2C3_Aluminum-production,,TON,166.3947598 +MI,PM10 Filterable,2C5_Lead-production,,TON,0.001505 +MI,PM10 Filterable,2C6_Zinc-production,,TON,3.615635 +MI,PM10 Filterable,2C7_Other-metal,,TON,148.8243133 +MI,PM10 Filterable,2C7a_Copper-production,,TON,7.76376972 +MI,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.513968 +MI,PM10 Filterable,2D3d_Coating-application,,TON,5.896455 +MI,PM10 Filterable,2H1_Pulp-and-paper,,TON,453.7555657 +MI,PM10 Filterable,2H2_Food-and-beverage,,TON,371.6486566 +MI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,109.70721 +MI,PM10 Filterable,2I_Wood-processing,,TON,188.2381604 +MI,PM10 Filterable,3Dc_Other-farm,,TON,98287.73523 +MI,PM10 Filterable,5A_Solid-waste-disposal,,TON,78.6008602 +MI,PM10 Filterable,5C_Incineration,,TON,3.068045 +MI,PM10 Filterable,5C_Incineration,biomass,TON,35.52951589 +MI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1741.68194 +MI,PM10 Filterable,5C_Open-burning-residential,,TON,4147.56791 +MI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,140.1248777 +MI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,125.2317829 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,10.03247546 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4851.053775 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,24.8255 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,162.82281 +MI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,98.044312 +MI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,23.492846 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,403.9452985 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,76.8877218 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.084085384 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,348.9786862 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,45.40223389 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,361.837731 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,50.21519649 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.00031105 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1129.869064 +MI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,8.6112 +MI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.3329 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1707.812307 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,126.6760362 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001382206 +MI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,246.7587529 +MI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,209278.903 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,220.348378 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5723.194159 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,295.9387523 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,373.0532376 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,5778.665207 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,565.9952888 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1145.233221 +MI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,58.69048379 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,230.5185147 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015426375 +MI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2959.1991 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,117.402604 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.243319393 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.71207663 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.908853119 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.937185021 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,80.96950069 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,236.5699045 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,84.75095787 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.721449375 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,66.66739686 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,592.7697125 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,27534.90219 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,75.1465825 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,60.09 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.3620254 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,91.4207226 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1030.623897 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,19.7971659 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014327305 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.538498 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1945.391502 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.81244219 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,557.0703593 +MI,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.2444761 +MI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,8499.71152 +MI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,229.072314 +MI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,25614.97157 +MI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,15720.4201 +MI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,137.7280908 +MI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2307.141123 +MI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,663.645528 +MI,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.005541592 +MI,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,18.680421 +MI,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,233.0847439 +MI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,35.59672 +MI,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.5535 +MI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,57.32454 +MI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.0595 +MI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,775.0653199 +MI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2995.665707 +MI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,180.5352261 +MI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,351.6791831 +MI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,98296.9352 +MI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,49.4 +MI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,85.82468 +MI,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.544681271 +MI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,41.14886042 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1741.68194 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4147.56791 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,140.1248777 +MI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.237805 +MI,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.832 +MI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,743.923304 +MI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.021229451 +MI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2041.17519 +MI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,14.47244 +MI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,40.42268925 +MI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,55.8986434 +MI,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.03571 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,279.0100747 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,42.00067076 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,426.8264511 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,129.827578 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.024999504 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,492.2917092 +MI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.9939087 +MI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.118887923 +MI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,26136.78424 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,80.06004036 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.708027117 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.376389795 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.139718482 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.864415582 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.69231106 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,22.97 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,33.28 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.918 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,20.943 +MI,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.149311864 +MI,PM2.5 Filterable,2A1_Cement-production,,TON,4027.352526 +MI,PM2.5 Filterable,2A2_Lime-production,,TON,55.22628598 +MI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2561.495157 +MI,PM2.5 Filterable,2A6_Other-minerals,,TON,2742.304707 +MI,PM2.5 Filterable,2B_Chemicals-other,,TON,71.12228087 +MI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,732.9363345 +MI,PM2.5 Filterable,2C3_Aluminum-production,,TON,105.6846434 +MI,PM2.5 Filterable,2C5_Lead-production,,TON,0.00131183 +MI,PM2.5 Filterable,2C6_Zinc-production,,TON,3.222629496 +MI,PM2.5 Filterable,2C7_Other-metal,,TON,82.48496314 +MI,PM2.5 Filterable,2C7a_Copper-production,,TON,6.940604182 +MI,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.227163 +MI,PM2.5 Filterable,2D3d_Coating-application,,TON,2.362 +MI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,299.847547 +MI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,147.6311137 +MI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,74.58188315 +MI,PM2.5 Filterable,2I_Wood-processing,,TON,95.08363661 +MI,PM2.5 Filterable,3Dc_Other-farm,,TON,19651.60744 +MI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,50.65240981 +MI,PM2.5 Filterable,5C_Incineration,,TON,2.45875966 +MI,PM2.5 Filterable,5C_Incineration,biomass,TON,25.41276908 +MI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1342.663001 +MI,PM2.5 Filterable,5C_Open-burning-residential,,TON,3798.29917 +MI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,108.0227476 +MI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,116.1400049 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.088410429 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2466.980537 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,18.091 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,159.873805 +MI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,88.952562 +MI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,23.492846 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,391.7553068 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,76.31237266 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.079751561 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,338.9356968 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,41.55264941 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,174.5818944 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,36.99377337 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000312605 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1101.876051 +MI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,8.3449454 +MI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.32528586 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1656.57758 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,116.5856388 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001382206 +MI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,89.25120211 +MI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,26136.88424 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,196.6989702 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3500.91625 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,261.4977427 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,226.6293015 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,5154.351381 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,508.2109132 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,997.4623415 +MI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,51.27194676 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,213.5621322 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014220779 +MI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2829.379269 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,86.70527077 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.19383487 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.373929381 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.469036364 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.956504095 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,81.46058022 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,229.4727528 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,78.19170495 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.721449375 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,64.66738527 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,545.3720564 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,27530.03594 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,67.2530445 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,33.5 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,6.5887043 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,75.59789587 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,999.7051412 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,18.21355981 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014327305 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.2823096 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1789.761685 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.51806812 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,512.5047461 +MI,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.235829244 +MI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,4649.660121 +MI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,114.6695859 +MI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2561.497893 +MI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3335.740541 +MI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,95.10288501 +MI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1976.049824 +MI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,608.1934869 +MI,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.005348422 +MI,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,18.2874452 +MI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,168.0842204 +MI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,34.77355092 +MI,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.2666963 +MI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,57.32454 +MI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.0595 +MI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,627.4945298 +MI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2853.415327 +MI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,145.4098139 +MI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,258.5254051 +MI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,19660.83389 +MI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,49.4 +MI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,57.87619321 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.951294307 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,31.01620723 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1342.663001 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3798.29917 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,108.0227476 +MI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.237805 +MI,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.832 +MI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,837.248 +MI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,26.391035 +MI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,337950.0351 +MI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,679.74 +MI,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.023185 +MI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,225.64464 +MI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,690.48917 +MI,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1.52036 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,141.0102371 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.68168036 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.015592589 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,985.4123344 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,6.305481859 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,537.0394814 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,17397.73869 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3115.133592 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.97292032 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5408.271695 +MI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,95.95358 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.24715 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.180475 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,611.1220595 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.605430484 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000260593 +MI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,291.241946 +MI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.259146331 +MI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1010.947276 +MI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.842164875 +MI,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,62.17308773 +MI,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,128.127359 +MI,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,12.5279689 +MI,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,26.26289444 +MI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.494525821 +MI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,67.96920894 +MI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002715933 +MI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9746.95132 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,19.82237791 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,254.8014362 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3427.311144 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,337.1354431 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,9.43206648 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,109.0316806 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,48.98563854 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.194535665 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.30504416 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,16.98581279 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,15.14321334 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,1099.005824 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1100.94 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,282.76 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.52 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,115.38 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,226.5766215 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.572337255 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002494 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.1274926 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,34.71762772 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.426908243 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,22.65485451 +MI,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.51092 +MI,Sulfur Dioxide,2A1_Cement-production,,TON,17116.222 +MI,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1232.17 +MI,Sulfur Dioxide,2A6_Other-minerals,,TON,3336.65389 +MI,Sulfur Dioxide,2B_Chemicals-other,,TON,23.183105 +MI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,5704.04202 +MI,Sulfur Dioxide,2C3_Aluminum-production,,TON,15.837268 +MI,Sulfur Dioxide,2C5_Lead-production,,TON,0.00037 +MI,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.70526 +MI,Sulfur Dioxide,2C7a_Copper-production,,TON,0.38928 +MI,Sulfur Dioxide,2D3d_Coating-application,,TON,0.192 +MI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,44.16433 +MI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,86.2476 +MI,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,0 +MI,Sulfur Dioxide,3Dc_Other-farm,,TON,33.565 +MI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.82 +MI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,312.72885 +MI,Sulfur Dioxide,5C_Incineration,,TON,18.76560297 +MI,Sulfur Dioxide,5C_Incineration,biomass,TON,313.2768178 +MI,Sulfur Dioxide,5C_Open-burning-residential,,TON,109.14652 +MI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.12610311 +MI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.68751 +MI,Volatile Organic Compounds,11C_Other-natural,,TON,513420.23 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,30.63327 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.272783 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1103.0173 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.151 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.00181 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,316.29774 +MI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,81.05542679 +MI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,389.3511768 +MI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,110.6536764 +MI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,93.33378 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,541.5636523 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2621.561889 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.56109829 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.259638709 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,43.06111778 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.110266316 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,53.55511411 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,33.93820615 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.045959308 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.030678747 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2384.530034 +MI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,13.684015 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.027956051 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.018843949 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2013.698688 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1614.915916 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.003394683 +MI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,692.4820456 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,446.8114228 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,100808.6959 +MI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,271.4894903 +MI,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7067.942234 +MI,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,6181.044621 +MI,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1177.341913 +MI,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1389.877019 +MI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3950.337106 +MI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,365.3190733 +MI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.321508956 +MI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1645.482208 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.895253367 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.906110939 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.165298967 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.338628723 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,59.85848718 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,622.1822183 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,340.4544879 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4604.053061 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.17071214 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,93.73567073 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,15587.03 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,24724.33327 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,19.36 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,79.97 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.773 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1051.37 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1084.577173 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,363.4415734 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.048293345 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.631137 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,73424.43483 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.85083336 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,35183.14396 +MI,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,341.346655 +MI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,108.01105 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,658.7777786 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,30977.04219 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,541.8341048 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +MI,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10670.25156 +MI,Volatile Organic Compounds,2A1_Cement-production,,TON,2934.99265 +MI,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.9665 +MI,Volatile Organic Compounds,2A6_Other-minerals,,TON,49.77442428 +MI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,4043.379391 +MI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1247.218385 +MI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,907.76362 +MI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,214.426161 +MI,Volatile Organic Compounds,2C5_Lead-production,,TON,0.001735 +MI,Volatile Organic Compounds,2C6_Zinc-production,,TON,1.43225 +MI,Volatile Organic Compounds,2C7_Other-metal,,TON,353.31799 +MI,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,1.301 +MI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,42164.4375 +MI,Volatile Organic Compounds,2D3d_Coating-application,,TON,47297.78876 +MI,Volatile Organic Compounds,2D3e_Degreasing,,TON,6208.93532 +MI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,74.336355 +MI,Volatile Organic Compounds,2D3h_Printing,,TON,12495.52759 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,718.026804 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1762.323711 +MI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,792.08323 +MI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1072.695025 +MI,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2048.14157 +MI,Volatile Organic Compounds,3Dc_Other-farm,,TON,32.2485 +MI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,12814.27222 +MI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,31.2 +MI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,648.65264 +MI,Volatile Organic Compounds,5C_Incineration,,TON,0.70171539 +MI,Volatile Organic Compounds,5C_Incineration,biomass,TON,69.11255318 +MI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1188.441325 +MI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,934.294407 +MI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,157.8209491 +MI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,367.76 +MI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,60.979235 +MI,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1218.60952 +MI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.064435 +MN,Ammonia,1A1a_Public-Electricity,biomass,TON,367.4415 +MN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,7.7412571 +MN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,5.374872891 +MN,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,2.010052 +MN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,212.58971 +MN,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,232.15 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.203175968 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.265944696 +MN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,331.0796676 +MN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.58898458 +MN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,3.526040905 +MN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.158369088 +MN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.010928631 +MN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,271.80497 +MN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.05500476 +MN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.33873164 +MN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.802474791 +MN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2521.82191 +MN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.325250132 +MN,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,95.68534716 +MN,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,71.25119815 +MN,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,19.89245892 +MN,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,20.47086122 +MN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.92886499 +MN,Ammonia,1A3c_Rail,diesel_oil,TON,8.497336491 +MN,Ammonia,1A3c_Rail,light_oil,TON,0.00350721 +MN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.479899286 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,13.3252305 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.4778048 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.017120257 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.503191 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.104323 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.90222155 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.239803291 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.611039526 +MN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.275855098 +MN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.503583484 +MN,Ammonia,1A4bi_Residential-stationary,biomass,TON,1095.801258 +MN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,32.37043885 +MN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,7.271481166 +MN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.369278955 +MN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1176.234344 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.23133046 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.677358947 +MN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021177737 +MN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,9.874321469 +MN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.08304732 +MN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,7.333277297 +MN,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.4 +MN,Ammonia,2B_Chemicals-other,,TON,0.4105 +MN,Ammonia,2C_Iron-steel-alloy,,TON,0.152353 +MN,Ammonia,2C5_Lead-production,Other_Fuel,TON,0.00036 +MN,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.935357 +MN,Ammonia,2D3d_Coating-application,,TON,0.94121001 +MN,Ammonia,2D3h_Printing,,TON,0.15403 +MN,Ammonia,2H1_Pulp-and-paper,,TON,225.40075 +MN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,20.25787 +MN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,14.397955 +MN,Ammonia,3B1a_Cattle-dairy,,TON,26027.90219 +MN,Ammonia,3B1b_Cattle-non-dairy,,TON,12047.2346 +MN,Ammonia,3B2_Manure-sheep,,TON,505.15212 +MN,Ammonia,3B3_Manure-swine,,TON,44525.33239 +MN,Ammonia,3B4_Manure-other,,TON,1211.62932 +MN,Ammonia,3B4_Manure-poultry,,TON,26479.2771 +MN,Ammonia,3B4d_Manure-goats,,TON,256.726404 +MN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,72560.5749 +MN,Ammonia,3Dc_Other-farm,,TON,1.3215 +MN,Ammonia,5C_Open-burning-residential,,TON,0.953225 +MN,Ammonia,5D1_Wastewater-domestic,,TON,26.472783 +MN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,373.6735 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,271101.8247 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,339429.7239 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18974.3003 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1359554.527 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,27845.45257 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.43554769 +MN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,264151.1814 +MN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,25505086.89 +MN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,231526.3121 +MN,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1519088.542 +MN,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6159514.647 +MN,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,630737.6992 +MN,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1257482.593 +MN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,147870.1675 +MN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5542.916037 +MN,Carbon Dioxide,1A3c_Rail,light_oil,TON,270.917557 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,152208.3665 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,215081.5475 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9452.264731 +MN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,33895.74575 +MN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,328408.6863 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2856185.2 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,50431.5357 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,322.0699676 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2588.6983 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,639930.1752 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,133377.7229 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,491973.465 +MN,Carbon Monoxide,11C_Other-natural,,TON,109990.692 +MN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1861.5338 +MN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,19.44199734 +MN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6209.45392 +MN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,30.156 +MN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1621.00054 +MN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1038.2074 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2891.995014 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24321.84901 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1523.815276 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.165917059 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,3115.704516 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,314.1095425 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2128.747385 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,63.67269017 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,273.8687092 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5070.69245 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6563.618385 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7140.329796 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.641095127 +MN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7027.067164 +MN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1214.255125 +MN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,888774.5131 +MN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,922.4619486 +MN,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,68219.9473 +MN,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,13095.19186 +MN,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,3205.201472 +MN,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2975.965268 +MN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8702.631618 +MN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2753.806694 +MN,Carbon Monoxide,1A3c_Rail,light_oil,TON,73.57523176 +MN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1017.393884 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,33.72377993 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,252.4744286 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,49.26143081 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.65163755 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.599853438 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4213.451985 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,935.1408603 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,57509.11103 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,246.8328832 +MN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,165.9240537 +MN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,101397.0181 +MN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,122238.6082 +MN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,162.201781 +MN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,999.8286671 +MN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.84639507 +MN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2728.612745 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15685.36486 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13582.53184 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,35.43610124 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.685888 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,90442.14123 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,268.4876227 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,69078.14585 +MN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,82.16302 +MN,Carbon Monoxide,2A6_Other-minerals,,TON,316.7550203 +MN,Carbon Monoxide,2B_Chemicals-other,,TON,4.04 +MN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1340.967403 +MN,Carbon Monoxide,2C3_Aluminum-production,,TON,24.22 +MN,Carbon Monoxide,2C5_Lead-production,,TON,348.50798 +MN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,17.65 +MN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,17.37075 +MN,Carbon Monoxide,2D3d_Coating-application,,TON,124.347317 +MN,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,4.52 +MN,Carbon Monoxide,2D3h_Printing,,TON,33 +MN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1998.24216 +MN,Carbon Monoxide,2H2_Ethanol Production,,TON,30.44 +MN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1587.89776 +MN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,23.7 +MN,Carbon Monoxide,3Dc_Other-farm,,TON,148.284 +MN,Carbon Monoxide,3F_Ag-res-on-field,,TON,12395 +MN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,295.5252435 +MN,Carbon Monoxide,5C_Incineration,,TON,22.745 +MN,Carbon Monoxide,5C_Incineration,biomass,TON,471.6791062 +MN,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,0.1397 +MN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,11936.40816 +MN,Carbon Monoxide,5C_Open-burning-residential,,TON,6526.1108 +MN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,455.113475 +MN,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,10.94 +MN,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,3.43 +MN,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,3.69 +MN,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.832396022 +MN,Methane,1A3bii_Road-LDV,light_oil,TON,3697.21828 +MN,Methane,1A3biii_Road-bus,diesel_oil,TON,3.015343249 +MN,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,286.3087949 +MN,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,202.0223643 +MN,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,8.940438527 +MN,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,21.64387523 +MN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60.11104778 +MN,Nitrogen Oxides,11C_Other-natural,,TON,26919.4593 +MN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1463.85132 +MN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,171.547633 +MN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,61184.05665 +MN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,156.26 +MN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,823.57241 +MN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1761.74585 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2448.90356 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3906.311876 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,265.4314838 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.112760391 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2454.854846 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1331.573007 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5144.024226 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,563.5785157 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,11.35666852 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10366.66135 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,12677.29643 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,165.5978283 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.136710412 +MN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2172.070935 +MN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1834.648047 +MN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,91859.74968 +MN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2451.350781 +MN,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6540.10507 +MN,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,50296.98567 +MN,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,4703.789584 +MN,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9488.453495 +MN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,300.3552243 +MN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19368.65989 +MN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.524804333 +MN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5549.797588 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,263.0811534 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1164.99871 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,126.1468627 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,168.0846033 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.548912328 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4994.817445 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1587.220261 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1312.806585 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,69.2588311 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,355.0805872 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1426.91833 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1709.639053 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,583.92659 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,33.01867416 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.64702395 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6865.0427 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,30616.79141 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,381.0198517 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.893477475 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,28.602698 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,830.0144893 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1593.673085 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3378.362182 +MN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,35.120525 +MN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,196.3 +MN,Nitrogen Oxides,2A6_Other-minerals,,TON,1076.653 +MN,Nitrogen Oxides,2B_Chemicals-other,,TON,34.4775 +MN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,27137.12044 +MN,Nitrogen Oxides,2C3_Aluminum-production,,TON,63.3145685 +MN,Nitrogen Oxides,2C5_Lead-production,,TON,39.8863 +MN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,83.116534 +MN,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,4.98 +MN,Nitrogen Oxides,2D3d_Coating-application,,TON,220.107 +MN,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,6.24 +MN,Nitrogen Oxides,2D3h_Printing,,TON,69.07 +MN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1274.39135 +MN,Nitrogen Oxides,2H2_Ethanol Production,,TON,10.3767 +MN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,214.178 +MN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,60.84 +MN,Nitrogen Oxides,3Dc_Other-farm,,TON,106.313 +MN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,555 +MN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,97.873993 +MN,Nitrogen Oxides,5C_Incineration,,TON,6.825 +MN,Nitrogen Oxides,5C_Incineration,biomass,TON,2412.425206 +MN,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.37425 +MN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,353.1481405 +MN,Nitrogen Oxides,5C_Open-burning-residential,,TON,460.67082 +MN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,20.2272645 +MN,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,10.41 +MN,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,2.51 +MN,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,4.71 +MN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.010260305 +MN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1879.440369 +MN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.597919519 +MN,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,119.6481704 +MN,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7.428211436 +MN,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.629524216 +MN,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.520438698 +MN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.167379753 +MN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,533.2053388 +MN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.732108542 +MN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,7945.173223 +MN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,29.5164758 +MN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,88.31993126 +MN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,363.2053067 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.168795575 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2461.770554 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,91.90367452 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,531.8502969 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,211.8164682 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.67844E-05 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,444.1301445 +MN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,325495.0691 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,577.9078866 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,78.35949199 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,27.3905284 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.25126587 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00314753 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.4347786 +MN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,35.03564965 +MN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,22.58305314 +MN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.398821152 +MN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.66672471 +MN,PM10 Filterable,2A1_Cement-production,,TON,9.393024749 +MN,PM10 Filterable,2A2_Lime-production,,TON,221.0952146 +MN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,29441.20137 +MN,PM10 Filterable,2A6_Other-minerals,,TON,24446.98723 +MN,PM10 Filterable,2B_Chemicals-other,,TON,17.14873347 +MN,PM10 Filterable,2C_Iron-steel-alloy,,TON,4604.724607 +MN,PM10 Filterable,2C3_Aluminum-production,,TON,68.46726135 +MN,PM10 Filterable,2C5_Lead-production,,TON,80.71256664 +MN,PM10 Filterable,2C7_Other-metal,,TON,2250.032505 +MN,PM10 Filterable,2C7a_Copper-production,,TON,0.40236534 +MN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,25.5258281 +MN,PM10 Filterable,2D3d_Coating-application,,TON,0.791174 +MN,PM10 Filterable,2H1_Pulp-and-paper,,TON,676.1481554 +MN,PM10 Filterable,2H2_Ethanol Production,,TON,11.4373198 +MN,PM10 Filterable,2H2_Food-and-beverage,,TON,1157.629138 +MN,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,197.6393188 +MN,PM10 Filterable,2I_Wood-processing,,TON,41.61386128 +MN,PM10 Filterable,3Dc_Other-farm,,TON,271414.054 +MN,PM10 Filterable,5A_Solid-waste-disposal,,TON,17.1743254 +MN,PM10 Filterable,5C_Incineration,,TON,0.970866 +MN,PM10 Filterable,5C_Incineration,biomass,TON,49.37284151 +MN,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.00075873 +MN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1200.704281 +MN,PM10 Filterable,5C_Open-burning-residential,,TON,2870.8124 +MN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,75.3646514 +MN,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.149546 +MN,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.161381 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,553.0565447 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.356814665 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8201.2595 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,33.45953 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,124.4975145 +MN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,651.818115 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,184.247207 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,34.46568597 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.373785458 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.186176332 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,151.3276432 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,73.64452494 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2033.700411 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,251.6760896 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.298079071 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,597.794471 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1044.609459 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.05932849 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +MN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,170.8666114 +MN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,327137.5721 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,147.7274929 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4721.187285 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,153.5619584 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,248.437006 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2951.720498 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,349.1849775 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,588.8315845 +MN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,33.11043704 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,622.0239811 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036526962 +MN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,219.7569219 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,10.4057505 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,49.34629542 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,28.92596074 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,43.32598849 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,5.552937864 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,68.93100376 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,163.5877912 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,57.79622726 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.179890064 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,30.25009626 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,304.8382599 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,18108.66708 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,77.04162205 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,22.73968694 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.87888427 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,35.45606497 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2878.544343 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,24.09009178 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.040692105 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.2665911 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1048.33823 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.55849319 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,442.5852887 +MN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.040002 +MN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,10.114052 +MN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,287.2734937 +MN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,29441.20137 +MN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,24861.77436 +MN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,21.75570002 +MN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,6197.263561 +MN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,138.4947757 +MN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,133.8601904 +MN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,2517.082161 +MN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.802988726 +MN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,30.6016871 +MN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,499.3869622 +MN,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.31064 +MN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,10.5286551 +MN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1217.439816 +MN,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,12.85371 +MN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2865.146591 +MN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,298.3036128 +MN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,77.1225095 +MN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,271526.0255 +MN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1850 +MN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,25.1988655 +MN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.069 +MN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,96.83863422 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.001 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1200.704281 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3283.8118 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,75.3646514 +MN,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.1862 +MN,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.25415 +MN,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.24995 +MN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,458.6337314 +MN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.477824918 +MN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2945.191372 +MN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,21.5024944 +MN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,22.82193207 +MN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,418.6556369 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.044067019 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2113.584979 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,78.50032486 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,354.3141918 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,140.3728627 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.2205729 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,98.25153513 +MN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,35295.95455 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,496.9406701 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,74.38024051 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,12.1838929 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14.02502975 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.08379503 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.801039939 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,26.9254753 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,13.86193298 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.306501677 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.530093418 +MN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.03319316 +MN,PM2.5 Filterable,2A1_Cement-production,,TON,2.968226271 +MN,PM2.5 Filterable,2A2_Lime-production,,TON,96.62917811 +MN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2944.120137 +MN,PM2.5 Filterable,2A6_Other-minerals,,TON,3768.921147 +MN,PM2.5 Filterable,2B_Chemicals-other,,TON,13.55718328 +MN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2940.177744 +MN,PM2.5 Filterable,2C3_Aluminum-production,,TON,68.46726185 +MN,PM2.5 Filterable,2C5_Lead-production,,TON,80.7122042 +MN,PM2.5 Filterable,2C7_Other-metal,,TON,768.3994278 +MN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.402365341 +MN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,19.67837855 +MN,PM2.5 Filterable,2D3d_Coating-application,,TON,378.0697602 +MN,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.2561256 +MN,PM2.5 Filterable,2D3h_Printing,,TON,8.704629383 +MN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,536.5974759 +MN,PM2.5 Filterable,2H2_Ethanol Production,,TON,2.740514045 +MN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,432.6286163 +MN,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,157.214633 +MN,PM2.5 Filterable,2I_Wood-processing,,TON,16.65356454 +MN,PM2.5 Filterable,3Dc_Other-farm,,TON,54738.24692 +MN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,17.0535251 +MN,PM2.5 Filterable,5C_Incineration,,TON,0.860255 +MN,PM2.5 Filterable,5C_Incineration,biomass,TON,57.41179265 +MN,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.00056962 +MN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,925.6222073 +MN,PM2.5 Filterable,5C_Open-burning-residential,,TON,2629.1196 +MN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,58.0988609 +MN,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.953878 +MN,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.0882125 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,478.4849321 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.102534176 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3201.277425 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,25.4455436 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,43.5094498 +MN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,615.3484807 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,178.6630507 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,34.18168119 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.370282 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.06332446 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,136.338476 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,76.34769003 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,256.2642278 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,162.0586048 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.759028102 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,258.3714697 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1013.270914 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.63959097 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +MN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,60.30735635 +MN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,35456.25045 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,134.5342809 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3436.243406 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,136.1727307 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,168.8892065 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2645.016699 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,317.6903215 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,515.9551384 +MN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,29.36850654 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,573.8405907 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.033671319 +MN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,210.7659681 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,9.003632032 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,48.86640657 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.72114376 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.804766517 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003155125 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.432888473 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,158.6801287 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,53.32757569 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.179890064 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.3425898 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,280.4623833 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,18108.02353 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,68.94907425 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,14.0186272 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.786564143 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,29.31944812 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2792.187992 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,22.16335848 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.040692105 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.1385932 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,964.4719334 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.58172336 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,407.1784413 +MN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.03319316 +MN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,3.689259317 +MN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,162.807471 +MN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2944.120137 +MN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4183.709181 +MN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,18.15664334 +MN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4532.779296 +MN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,138.4947757 +MN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,133.8598227 +MN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,1035.348669 +MN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.802988726 +MN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,24.7542415 +MN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,385.5449051 +MN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.2561256 +MN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,8.743063383 +MN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1077.883295 +MN,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,4.15690472 +MN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2122.817575 +MN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,256.3690046 +MN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,52.16223835 +MN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,54850.21844 +MN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1850 +MN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,25.0780591 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.958389 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,75.42757141 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.00081089 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,925.6222073 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3007.32213 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,58.0988609 +MN,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.990532 +MN,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.25415 +MN,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.176782 +MN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,401.573637 +MN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,34.35450215 +MN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,77143.46 +MN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,588.34 +MN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,84.5872015 +MN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,963.203567 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,64.2329521 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.934142211 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.504297644 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.576924098 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,471.6184559 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,742.7974348 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,8493.776102 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2076.14559 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.159869684 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,713.7530225 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,295.7779563 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.708360619 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000163837 +MN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,232.1009276 +MN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.923370091 +MN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,537.68082 +MN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.557356845 +MN,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,32.0381946 +MN,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,67.49301307 +MN,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.983004204 +MN,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,13.77490925 +MN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.117567546 +MN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,191.9621964 +MN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.006880827 +MN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,587.3695752 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,29.977738 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,311.168781 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,116.07725 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,989.2973525 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.3223 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.2134109 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,33.11236857 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.372036189 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.208957044 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,7.374042625 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.631905586 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,565.0111691 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1380.68151 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,109.3773195 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,15.7312882 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,40.92027899 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,621.3734516 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.338130929 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007083444 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.56310537 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,15.10795162 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.85971717 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,13.19009655 +MN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.000001 +MN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,343.9 +MN,Sulfur Dioxide,2A6_Other-minerals,,TON,1645.51455 +MN,Sulfur Dioxide,2B_Chemicals-other,,TON,8.173 +MN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,7255.041932 +MN,Sulfur Dioxide,2C3_Aluminum-production,,TON,6.7826805 +MN,Sulfur Dioxide,2C5_Lead-production,,TON,1635.800012 +MN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,9.111107 +MN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0279165 +MN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,66.221 +MN,Sulfur Dioxide,2D3d_Coating-application,,TON,30.76 +MN,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.05 +MN,Sulfur Dioxide,2D3h_Printing,,TON,2.79 +MN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,130.90985 +MN,Sulfur Dioxide,2H2_Ethanol Production,,TON,46.64 +MN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,265.705 +MN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,8.59 +MN,Sulfur Dioxide,3Dc_Other-farm,,TON,87.17 +MN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,74 +MN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,42.14925184 +MN,Sulfur Dioxide,5C_Incineration,,TON,3.98 +MN,Sulfur Dioxide,5C_Incineration,biomass,TON,306.2072964 +MN,Sulfur Dioxide,5C_Open-burning-residential,,TON,75.54574 +MN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.37053523 +MN,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.79 +MN,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.07 +MN,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.06 +MN,Volatile Organic Compounds,11C_Other-natural,,TON,713439.21 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,109.348416 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.90458425 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,582.6685364 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.96246 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,50.7674129 +MN,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,182.9688516 +MN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1251.697974 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,269.9769499 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1218.938337 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.368652552 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.406084946 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,226.2134498 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,102.2116271 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,29.59614153 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.046066126 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,15.25644101 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,840.9933288 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1308.026402 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,532.8073592 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002221583 +MN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,442.7126118 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,294.0764104 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,78920.64334 +MN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,145.551618 +MN,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4365.211697 +MN,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,3098.997323 +MN,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,760.7751562 +MN,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,725.1141648 +MN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1752.893403 +MN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,945.2570097 +MN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.034219423 +MN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,126.0856265 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,20.26758023 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,80.18748825 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.971845949 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.529710489 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.138014726 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,267.0244207 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,235.4548111 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3107.927634 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.817611586 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,42.44707699 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7955.538964 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,17988.3092 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,22.67624435 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,36.35735264 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.258495359 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,375.1024001 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3026.356636 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,715.3777369 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.137162248 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.8106897 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,41422.87434 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,66.09251444 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,26169.00537 +MN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,767.3573381 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,87.74928024 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,16878.18025 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2290.295027 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.21 +MN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.5949 +MN,Volatile Organic Compounds,2A6_Other-minerals,,TON,236.985196 +MN,Volatile Organic Compounds,2B_Chemicals-other,,TON,1033.999653 +MN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,561.1602247 +MN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,53.509805 +MN,Volatile Organic Compounds,2C5_Lead-production,,TON,4.96232 +MN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,149.326762 +MN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.016584 +MN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,20392.13132 +MN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,63.724 +MN,Volatile Organic Compounds,2D3d_Coating-application,,TON,24052.6765 +MN,Volatile Organic Compounds,2D3e_Degreasing,,TON,4424.1125 +MN,Volatile Organic Compounds,2D3h_Printing,,TON,4461.7974 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,402.969186 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1761.88888 +MN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1347.78314 +MN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,115.51718 +MN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2570.387174 +MN,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1096.9889 +MN,Volatile Organic Compounds,2I_Wood-processing,,TON,7.74 +MN,Volatile Organic Compounds,3Dc_Other-farm,,TON,340.696 +MN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,27164.1426 +MN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1110 +MN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,133.3489723 +MN,Volatile Organic Compounds,5C_Incineration,,TON,6.825 +MN,Volatile Organic Compounds,5C_Incineration,biomass,TON,11.99118811 +MN,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,0.0027445 +MN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,819.3039756 +MN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,652.44353 +MN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,84.882292 +MN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,181.6543255 +MN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.03 +MN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,34.027 +MN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,58.48913 +MO,Ammonia,1A1a_Public-Electricity,biomass,TON,0.0008 +MO,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.148 +MO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,28.547 +MO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,126.1734937 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.322848014 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.243551277 +MO,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,184.441211 +MO,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.923471646 +MO,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,14.83989305 +MO,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.92948414 +MO,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.078642177 +MO,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,40.92608643 +MO,Ammonia,1A2c_Chemicals,natural_gas,TON,0.0824 +MO,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MO,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1421 +MO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,10.28227732 +MO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.304066399 +MO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,9.821900606 +MO,Ammonia,1A3bii_Road-LDV,light_oil,TON,2888.375752 +MO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.111987111 +MO,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,111.7412042 +MO,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,88.11805869 +MO,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,25.12260616 +MO,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,25.03037801 +MO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.94565955 +MO,Ammonia,1A3c_Rail,diesel_oil,TON,15.96593139 +MO,Ammonia,1A3c_Rail,light_oil,TON,0.007184045 +MO,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.318907442 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,80.65648453 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.611095141 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,43.28160368 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.155966201 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.190415878 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.73664885 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.222109299 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.55573385 +MO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.452448092 +MO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.108433835 +MO,Ammonia,1A4bi_Residential-stationary,biomass,TON,333.9854966 +MO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.168374622 +MO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,17.3283735 +MO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.345099301 +MO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,958.2523795 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.7262138 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.460623065 +MO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0239743 +MO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.37533981 +MO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.765936303 +MO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.17995338 +MO,Ammonia,2A1_Cement-production,,TON,9.8784 +MO,Ammonia,2A2_Lime-production,Other_Fuel,TON,0.0055 +MO,Ammonia,2A6_Other-minerals,,TON,22.1671 +MO,Ammonia,2B_Chemicals-other,,TON,46.8142 +MO,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.0031 +MO,Ammonia,2D3h_Printing,,TON,1.1433 +MO,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,2.7242 +MO,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,19.6377 +MO,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,28.1049 +MO,Ammonia,3B1a_Cattle-dairy,,TON,5377.417063 +MO,Ammonia,3B1b_Cattle-non-dairy,,TON,22379.01561 +MO,Ammonia,3B2_Manure-sheep,,TON,269.28132 +MO,Ammonia,3B3_Manure-swine,,TON,25632.67732 +MO,Ammonia,3B4_Manure-other,,TON,2004.66948 +MO,Ammonia,3B4_Manure-poultry,,TON,23146.79214 +MO,Ammonia,3B4d_Manure-goats,,TON,672.276264 +MO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,44847.89221 +MO,Ammonia,5D1_Wastewater-domestic,,TON,1283.928995 +MO,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.0389 +MO,Ammonia,5E_Other-waste,Other_Fuel,TON,14.083 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,285840.3201 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,330245.7205 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,17322.05173 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1264580.077 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,24994.64285 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.196296602 +MO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,334356.7141 +MO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,30128091.15 +MO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,288381.0494 +MO,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1930231.836 +MO,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7636750.47 +MO,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,803478.3264 +MO,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1539361.291 +MO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,206066.1683 +MO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,11305.10117 +MO,Carbon Dioxide,1A3c_Rail,light_oil,TON,554.825743 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,150051.671 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,209911.9744 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9301.588266 +MO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,55603.07413 +MO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,445711.1621 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1933464.495 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,34285.36866 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,218.111177 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2930.5526 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,150444.1334 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,94325.38607 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,347470.181 +MO,Carbon Monoxide,11C_Other-natural,,TON,123861.938 +MO,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,10.947 +MO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,23.3788 +MO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,20296.5873 +MO,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.1485 +MO,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,20.1658 +MO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1117.5666 +MO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,13.083 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2894.500494 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23128.8376 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1390.007695 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1745.62499 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,20.19448867 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3100.640756 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,27.82035562 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.545510184 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3242.940383 +MO,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,12.0791 +MO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0013 +MO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.9219 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6045.71969 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7022.23455 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.534246026 +MO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5314.912309 +MO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1466.461988 +MO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,798907.9114 +MO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1189.644954 +MO,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,72984.74524 +MO,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,16665.54467 +MO,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,3910.043526 +MO,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3685.263121 +MO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11677.35722 +MO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5181.23059 +MO,Carbon Monoxide,1A3c_Rail,light_oil,TON,173.8825504 +MO,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,571.292961 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,643.1249073 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.56978432 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,895.7457562 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.977662411 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.536814195 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2598.206166 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,907.7827637 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,61648.04179 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,239.4056446 +MO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,264.2244781 +MO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,148484.4056 +MO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,42375.02179 +MO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,15.8418762 +MO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2382.6498 +MO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,6.725497105 +MO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2260.79453 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10620.37511 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10810.65719 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,23.99749323 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,33.598281 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,36408.51795 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,189.8758148 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,55947.31203 +MO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,60.4517 +MO,Carbon Monoxide,2A1_Cement-production,,TON,2075.7281 +MO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,11810.2426 +MO,Carbon Monoxide,2A6_Other-minerals,,TON,9358.2269 +MO,Carbon Monoxide,2B_Chemicals-other,,TON,1028.7234 +MO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2.334 +MO,Carbon Monoxide,2C3_Aluminum-production,,TON,24743.311 +MO,Carbon Monoxide,2C5_Lead-production,,TON,13381.8 +MO,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.0001 +MO,Carbon Monoxide,2C7a_Copper-production,,TON,140.5813 +MO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,4.5102 +MO,Carbon Monoxide,2D3d_Coating-application,,TON,0 +MO,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,4.5084 +MO,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,184.8608 +MO,Carbon Monoxide,2H2_Ethanol Production,,TON,44.3323 +MO,Carbon Monoxide,2H2_Food-and-beverage,,TON,912.051036 +MO,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,37.7848 +MO,Carbon Monoxide,3Dc_Other-farm,,TON,3.8238 +MO,Carbon Monoxide,3F_Ag-res-on-field,,TON,25762.1 +MO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1450.139 +MO,Carbon Monoxide,5C_Incineration,,TON,0 +MO,Carbon Monoxide,5C_Incineration,biomass,TON,873.4947629 +MO,Carbon Monoxide,5C_Open-burning-commercial,,TON,3.577 +MO,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,1.1438 +MO,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,16205.48918 +MO,Carbon Monoxide,5C_Open-burning-residential,,TON,7123.95275 +MO,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,769.447542 +MO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,25.4025 +MO,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.456451418 +MO,Methane,1A3bii_Road-LDV,light_oil,TON,3201.768909 +MO,Methane,1A3biii_Road-bus,diesel_oil,TON,2.724702157 +MO,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,271.5629435 +MO,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,167.7812525 +MO,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,10.51692509 +MO,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,18.36643921 +MO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,59.34723834 +MO,Nitrogen Oxides,11C_Other-natural,,TON,29967.3426 +MO,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,4.0028 +MO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,106.6964 +MO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,92366.6722 +MO,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.7128 +MO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,853.2173 +MO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,16.6859 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2527.678439 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3583.688129 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,241.7475447 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,696.8070109 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,78.43894324 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,8684.796485 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,76.95003568 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,5.174727234 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10428.79229 +MO,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,16.3915 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.0959 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0016 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.9856 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,11654.86159 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,133.5941276 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113925211 +MO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1761.863584 +MO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2209.187813 +MO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,98319.26604 +MO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3367.573424 +MO,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7680.863564 +MO,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,60583.38846 +MO,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,5690.272902 +MO,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11157.60022 +MO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,496.7414067 +MO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,35322.75769 +MO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.451611184 +MO,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2965.15892 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,291.3927921 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,45.54913029 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1871.970124 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.76213785 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.935724403 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3141.112324 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1544.680258 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1092.61882 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,66.51599867 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,567.3598478 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1656.451123 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,629.0156764 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,57.030775 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,78.844118 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,24.21179923 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,5728.016414 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20728.35678 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,196.3168273 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.345428009 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.386415 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,338.3181752 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1127.053313 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1905.731782 +MO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,23.4795 +MO,Nitrogen Oxides,2A1_Cement-production,,TON,9772.82 +MO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,5197.3923 +MO,Nitrogen Oxides,2A6_Other-minerals,,TON,4173.1808 +MO,Nitrogen Oxides,2B_Chemicals-other,,TON,1501.2102 +MO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3.1381 +MO,Nitrogen Oxides,2C3_Aluminum-production,,TON,22.1933 +MO,Nitrogen Oxides,2C5_Lead-production,,TON,21.1939 +MO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,12.8366 +MO,Nitrogen Oxides,2C7a_Copper-production,,TON,3.1217 +MO,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +MO,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,7.6065 +MO,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,122.8844 +MO,Nitrogen Oxides,2H2_Ethanol Production,,TON,20.1033 +MO,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +MO,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,29.1781 +MO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1162.2 +MO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,130.5634 +MO,Nitrogen Oxides,5C_Incineration,,TON,0 +MO,Nitrogen Oxides,5C_Incineration,biomass,TON,170.2198717 +MO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.1022 +MO,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.0493 +MO,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,479.4525432 +MO,Nitrogen Oxides,5C_Open-burning-residential,,TON,502.867324 +MO,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,34.1976806 +MO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.3548 +MO,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,5.479 +MO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.246460273 +MO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2130.04807 +MO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.724840101 +MO,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,143.9275529 +MO,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,9.019319227 +MO,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,3.257552893 +MO,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.033683175 +MO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.057634206 +MO,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.31857511 +MO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.575926172 +MO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,8126.95445 +MO,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.0837157 +MO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,62.566264 +MO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,16.00559281 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1146.417328 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.156847845 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,6386.479015 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,23.05467392 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,115.6684197 +MO,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.4000224 +MO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.040832 +MO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.180728 +MO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,545853.9311 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,448.8577925 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.184380769 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1254.549287 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.908003715 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.304442137 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.570151743 +MO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.4218443 +MO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,53.717976 +MO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.452708324 +MO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,11.30123353 +MO,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +MO,PM10 Filterable,2A1_Cement-production,,TON,717.4755207 +MO,PM10 Filterable,2A2_Lime-production,,TON,305.7961337 +MO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,42840.09079 +MO,PM10 Filterable,2A6_Other-minerals,,TON,11785.7453 +MO,PM10 Filterable,2B_Chemicals-other,,TON,310.4326268 +MO,PM10 Filterable,2C_Iron-steel-alloy,,TON,76.1597357 +MO,PM10 Filterable,2C3_Aluminum-production,,TON,290.0170521 +MO,PM10 Filterable,2C5_Lead-production,,TON,43.21192237 +MO,PM10 Filterable,2C6_Zinc-production,,TON,0.777108 +MO,PM10 Filterable,2C7_Other-metal,,TON,39.16713827 +MO,PM10 Filterable,2C7a_Copper-production,,TON,13.7513236 +MO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.747453545 +MO,PM10 Filterable,2D3d_Coating-application,,TON,0 +MO,PM10 Filterable,2D3e_Degreasing,,TON,0 +MO,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,66.75172829 +MO,PM10 Filterable,2H2_Ethanol Production,,TON,39.6546722 +MO,PM10 Filterable,2H2_Food-and-beverage,,TON,337.5188846 +MO,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,144.4293984 +MO,PM10 Filterable,2I_Wood-processing,,TON,11.0329998 +MO,PM10 Filterable,3Dc_Other-farm,,TON,184156.2441 +MO,PM10 Filterable,5A_Solid-waste-disposal,,TON,92.66406561 +MO,PM10 Filterable,5C_Incineration,,TON,0 +MO,PM10 Filterable,5C_Incineration,biomass,TON,12.1072989 +MO,PM10 Filterable,5C_Open-burning-commercial,,TON,0.394522 +MO,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,5.689037 +MO,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1630.138175 +MO,PM10 Filterable,5C_Open-burning-residential,,TON,3184.82675 +MO,PM10 Filterable,5C_Open-burning-yard-waste,,TON,127.4168683 +MO,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.522942 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.3375 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.4342 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,9470.6535 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.098 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,118.8663 +MO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,21.8626 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,189.9223503 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,33.43397722 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.16772706 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,89.6265803 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.500912234 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,892.3904763 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.45156898 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.392778945 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,256.2532409 +MO,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.0019 +MO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0464 +MO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.4756 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,957.717704 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,38.66026688 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717602 +MO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,128.1385395 +MO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,545853.9311 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,161.8991901 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3541.423132 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,224.7453528 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,220.5976757 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3698.820748 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,409.6122677 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,720.29481 +MO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.83997337 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1180.138944 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.074792603 +MO,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,105.5125804 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,13.45753941 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.521913384 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,89.19928994 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.004686057 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.83537121 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,157.6468176 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,56.47936585 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.161123538 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,47.48678344 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,429.2870474 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6231.062964 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.540735375 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,54.064593 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.201334892 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,29.38321763 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1949.028307 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.93092447 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.02755746 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.8281691 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,379.5005626 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.02554221 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,312.9688737 +MO,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +MO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,790.6834 +MO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,973.5121 +MO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,42840.09079 +MO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12050.0211 +MO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,455.3984 +MO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,136.0004 +MO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,567.8491 +MO,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,139.3756 +MO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.06173 +MO,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,65.1419 +MO,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,52.9206 +MO,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.9003 +MO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.8962 +MO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,117.0453 +MO,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MO,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.408 +MO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,97.7821 +MO,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,58.3677 +MO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2052.936202 +MO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,209.175 +MO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,15.9965 +MO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,184191.6003 +MO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3680.3 +MO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,129.7125 +MO,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0 +MO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.59201692 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.4344 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,7.0235 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1630.138175 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3184.82675 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,127.4168683 +MO,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.5758 +MO,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.31057501 +MO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.077512488 +MO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4765.75363 +MO,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.0837157 +MO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,57.81050113 +MO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,13.35376381 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,985.5133357 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.075393633 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,732.9736185 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.73468656 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,97.02334197 +MO,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.299866175 +MO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0232587 +MO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1774481 +MO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,59357.58686 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,387.5439235 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.977855206 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,203.482362 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.080948485 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.20448023 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.383553981 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.629749654 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,32.9239215 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.116433064 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.21568107 +MO,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +MO,PM2.5 Filterable,2A1_Cement-production,,TON,412.1697268 +MO,PM2.5 Filterable,2A2_Lime-production,,TON,122.844399 +MO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4284.009079 +MO,PM2.5 Filterable,2A6_Other-minerals,,TON,2001.877413 +MO,PM2.5 Filterable,2B_Chemicals-other,,TON,243.4282711 +MO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,23.41363421 +MO,PM2.5 Filterable,2C3_Aluminum-production,,TON,56.49750576 +MO,PM2.5 Filterable,2C5_Lead-production,,TON,13.88301983 +MO,PM2.5 Filterable,2C6_Zinc-production,,TON,0.7104916 +MO,PM2.5 Filterable,2C7_Other-metal,,TON,16.70437653 +MO,PM2.5 Filterable,2C7a_Copper-production,,TON,12.6761193 +MO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.747453545 +MO,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +MO,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +MO,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,37.07988176 +MO,PM2.5 Filterable,2H2_Ethanol Production,,TON,3.5887131 +MO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,162.326404 +MO,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,103.4195899 +MO,PM2.5 Filterable,2I_Wood-processing,,TON,3.8934918 +MO,PM2.5 Filterable,3Dc_Other-farm,,TON,36800.24864 +MO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,14.59680606 +MO,PM2.5 Filterable,5C_Incineration,,TON,0 +MO,PM2.5 Filterable,5C_Incineration,biomass,TON,5.69901014 +MO,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.394522 +MO,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,3.2405869 +MO,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1256.673765 +MO,PM2.5 Filterable,5C_Open-burning-residential,,TON,2916.63115 +MO,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,98.2261103 +MO,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.522942 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.3294999 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.935787257 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6109.4521 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.098 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,114.1105371 +MO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,19.210783 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,184.1699783 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,33.17342145 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.164477257 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,76.06468588 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.033816733 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,437.1209095 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.013005908 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.320925622 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,237.8500037 +MO,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.901743775 +MO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0288267 +MO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.47232 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,928.9862101 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,35.58985947 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717602 +MO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,55.13303869 +MO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,59357.58686 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,146.2660817 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2180.516452 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,202.4110637 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,128.71083 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3322.455402 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,371.2052925 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,632.4011774 +MO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.75580308 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1089.094435 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.068944591 +MO,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,102.3479271 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,12.93521164 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.492503236 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,75.75098547 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.004595791 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.30002727 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,152.9174121 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,52.10816909 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.161123538 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,46.0622252 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,394.9610861 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6225.339388 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.74863544 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,33.2704805 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.865064549 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,24.29766421 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1890.557231 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,15.57676389 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.02755746 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.6833288 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,349.1416495 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.33477585 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,287.9315145 +MO,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +MO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,485.377627 +MO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,430.3316561 +MO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4284.009079 +MO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2265.317504 +MO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,388.3940433 +MO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,83.2542662 +MO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,334.3294235 +MO,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,110.0467095 +MO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.9951106 +MO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,42.67913263 +MO,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,51.8453557 +MO,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.9003 +MO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.8962 +MO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,95.2068 +MO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MO,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.408 +MO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,68.11024292 +MO,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,16.2669063 +MO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1833.910849 +MO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,168.1640686 +MO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,8.856991 +MO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,36835.6049 +MO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3680.3 +MO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,51.64528559 +MO,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0 +MO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.183726138 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.4344 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,4.5750499 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1256.673765 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2916.63115 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,98.2261103 +MO,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.5758 +MO,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.4625 +MO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,30.8436 +MO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,277076.289 +MO,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.0861 +MO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,17.965 +MO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,5.4048 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,67.0924792 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.766472435 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.462191142 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,102.9690372 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,115.1823964 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,55676.94843 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,336.1095647 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.787420807 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,223.3620619 +MO,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0734 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.1681 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0032 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0375 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,275.1160313 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.766110754 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000136531 +MO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,210.3915181 +MO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.691472373 +MO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1234.751348 +MO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.187793413 +MO,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,79.25458833 +MO,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,84.02120951 +MO,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,8.874813588 +MO,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,16.92506308 +MO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.486431515 +MO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,360.7139851 +MO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.01718775 +MO,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,175.2526512 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1071.633893 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,74.38744481 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,15271.15064 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,68.71959682 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.14413969 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.40560995 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32.64328045 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.340021529 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.205633309 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,12.09653192 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.81437179 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,128.6055343 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,134.9727806 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,910.52 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,57.3012481 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,33.90371983 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,420.6321691 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.027478284 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004797029 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.63746699 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.56226771 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.23856527 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10.41346419 +MO,Sulfur Dioxide,2A1_Cement-production,,TON,10638.1489 +MO,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,4452.509 +MO,Sulfur Dioxide,2A6_Other-minerals,,TON,1347.7426 +MO,Sulfur Dioxide,2B_Chemicals-other,,TON,140.1018 +MO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.2483 +MO,Sulfur Dioxide,2C3_Aluminum-production,,TON,4690.9077 +MO,Sulfur Dioxide,2C5_Lead-production,,TON,38629.7665 +MO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.4117 +MO,Sulfur Dioxide,2C7a_Copper-production,,TON,7.639 +MO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,1.5765 +MO,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +MO,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.0347 +MO,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.6411 +MO,Sulfur Dioxide,2H2_Ethanol Production,,TON,22.0791 +MO,Sulfur Dioxide,2H2_Food-and-beverage,,TON,99.1467 +MO,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,46.5731 +MO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,154.96 +MO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,30.0234 +MO,Sulfur Dioxide,5C_Incineration,,TON,0 +MO,Sulfur Dioxide,5C_Incineration,biomass,TON,16.99076223 +MO,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.0064 +MO,Sulfur Dioxide,5C_Open-burning-residential,,TON,83.811221 +MO,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.38913874 +MO,Volatile Organic Compounds,11C_Other-natural,,TON,993543.53 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.3109 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.5579 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1511.6653 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.0059 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,104.1137 +MO,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,135.0037221 +MO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,32.07607791 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,274.8259536 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1129.097061 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.941451871 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,88.49573509 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.432666348 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,39.01824996 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.500131317 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.274807747 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,446.8151299 +MO,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.555 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0056 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.173 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2952 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1197.683392 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,491.5027881 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001851319 +MO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,434.2263938 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,323.8482508 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,68930.14387 +MO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,175.2206299 +MO,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4526.660922 +MO,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,3879.857664 +MO,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,856.0241592 +MO,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,886.902534 +MO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2635.192215 +MO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1798.231691 +MO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,6.666912719 +MO,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,64.214719 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,17.22168333 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.906682558 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.848579834 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.221522578 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.211423834 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,173.6741478 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,226.8740321 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3125.661686 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.783147665 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,66.76554704 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,10953.63635 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7742.839957 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.217862112 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,86.64192 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.941569551 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,310.7839342 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2049.079817 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,523.0346656 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.092885801 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.8386454 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12084.82562 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,46.74102347 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,19230.55094 +MO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,622.3478001 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,608.5043447 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,29314.77034 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,559.2614813 +MO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21.5817 +MO,Volatile Organic Compounds,2A1_Cement-production,,TON,785.1062 +MO,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,30.9705 +MO,Volatile Organic Compounds,2A6_Other-minerals,,TON,48.76952025 +MO,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1076.115321 +MO,Volatile Organic Compounds,2B_Chemicals-other,,TON,1285.5362 +MO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,69.3907 +MO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,784.2058 +MO,Volatile Organic Compounds,2C5_Lead-production,,TON,158.7163 +MO,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0079 +MO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,182.6991 +MO,Volatile Organic Compounds,2C7a_Copper-production,,TON,7.8716 +MO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,24917.41345 +MO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,60.0317 +MO,Volatile Organic Compounds,2D3d_Coating-application,,TON,27592.56098 +MO,Volatile Organic Compounds,2D3e_Degreasing,,TON,4186.488034 +MO,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1763.85884 +MO,Volatile Organic Compounds,2D3h_Printing,,TON,12385.47005 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2116.04618 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1106.354242 +MO,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,178.7998 +MO,Volatile Organic Compounds,2H2_Ethanol Production,,TON,45.9493 +MO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1491.059434 +MO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1074.2097 +MO,Volatile Organic Compounds,3Dc_Other-farm,,TON,299.6433 +MO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,10278.29414 +MO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2324.4 +MO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,93.3356 +MO,Volatile Organic Compounds,5C_Incineration,,TON,0 +MO,Volatile Organic Compounds,5C_Incineration,biomass,TON,48.05201274 +MO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.4855 +MO,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,0.0732 +MO,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1112.330347 +MO,Volatile Organic Compounds,5C_Open-burning-residential,,TON,717.424154 +MO,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,143.5080697 +MO,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,140.4849545 +MO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,54.1039 +MO,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.0007 +MO,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.048 +MS,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,34.1696 +MS,Ammonia,1A1a_Public-Electricity,hard_coal,TON,67.42953 +MS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,379.4847308 +MS,Ammonia,1A1b_Pet-refining,natural_gas,TON,3.69 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.37612295 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.190779049 +MS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.08 +MS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.055780703 +MS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.11987235 +MS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.577355178 +MS,Ammonia,1A3bii_Road-LDV,light_oil,TON,1857.794845 +MS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.798092996 +MS,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,42.26338035 +MS,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,67.25120506 +MS,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,8.195926568 +MS,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,18.35942546 +MS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.577997229 +MS,Ammonia,1A3c_Rail,diesel_oil,TON,3.722901563 +MS,Ammonia,1A3c_Rail,light_oil,TON,0.002325849 +MS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.363308685 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.416858134 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.871617878 +MS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.11042344 +MS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.991256731 +MS,Ammonia,1A4bi_Residential-stationary,biomass,TON,65.43999233 +MS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.00382893 +MS,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.287816547 +MS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,216.3113923 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.898762477 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.296164091 +MS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012091386 +MS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.94937433 +MS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.499583121 +MS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.3783951 +MS,Ammonia,2A1_Cement-production,,TON,8.79 +MS,Ammonia,2A6_Other-minerals,Other_Fuel,TON,63.41 +MS,Ammonia,2B_Chemicals-other,,TON,495.905 +MS,Ammonia,2D3d_Coating-application,,TON,0.01 +MS,Ammonia,2D3e_Degreasing,,TON,0 +MS,Ammonia,2H1_Pulp-and-paper,,TON,191.221 +MS,Ammonia,3B1a_Cattle-dairy,,TON,743.4002004 +MS,Ammonia,3B1b_Cattle-non-dairy,,TON,4395.2172 +MS,Ammonia,3B2_Manure-sheep,,TON,29.430588 +MS,Ammonia,3B3_Manure-swine,,TON,2930.586265 +MS,Ammonia,3B4_Manure-other,,TON,877.74984 +MS,Ammonia,3B4_Manure-poultry,,TON,36889.35513 +MS,Ammonia,3B4d_Manure-goats,,TON,213.847656 +MS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,12376.85801 +MS,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.08 +MS,Ammonia,5D1_Wastewater-domestic,,TON,11.08417431 +MS,Ammonia,5D2_Wastewater-industrial,biomass,TON,718.9413 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,169343.4563 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,189624.9319 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12442.38196 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,498805.6399 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,9847.986357 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.478517062 +MS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,126764.1061 +MS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,17378231.09 +MS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,200194.0779 +MS,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,697828.1078 +MS,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5409671.632 +MS,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,252501.6759 +MS,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1062584.569 +MS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,45423.69104 +MS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3659.43651 +MS,Carbon Dioxide,1A3c_Rail,light_oil,TON,179.4723514 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,51182.2256 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,71585.16199 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3221.250396 +MS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13570.22401 +MS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,145685.2749 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,725397.3038 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,21327.33756 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,68.63692182 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1478.014 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,121846.0582 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,61523.88003 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,226622.0609 +MS,Carbon Monoxide,11C_Other-natural,,TON,152037.38 +MS,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,586.56 +MS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,124.2 +MS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1049.71 +MS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,6711.84 +MS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2003.888 +MS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,64.05 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,860.3465529 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14312.40153 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,861.8564034 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7931.478067 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.55362043 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,25.92354062 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.084700376 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6030.135071 +MS,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +MS,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +MS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,103.94 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2384.805927 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2955.168365 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.213698566 +MS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5126.562159 +MS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,446.5535893 +MS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,382697.3176 +MS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,611.0977985 +MS,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,22940.45498 +MS,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7735.382507 +MS,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1135.037723 +MS,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1836.284092 +MS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2358.416446 +MS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1214.793717 +MS,Carbon Monoxide,1A3c_Rail,light_oil,TON,58.26694333 +MS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1193.032195 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.671632252 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,29.23836775 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,309.6084285 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,22759.53541 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,82.30526644 +MS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,64.65574454 +MS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,52876.24507 +MS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,7700.106589 +MS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.019144647 +MS,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.43908231 +MS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,581.6726345 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3660.166786 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7911.321443 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.551761286 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.948956 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,29397.10836 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,123.8456603 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,37026.39564 +MS,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,19.81 +MS,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,12.95 +MS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.74 +MS,Carbon Monoxide,2A1_Cement-production,,TON,333.5 +MS,Carbon Monoxide,2A6_Other-minerals,,TON,596.37 +MS,Carbon Monoxide,2B_Chemicals-other,,TON,6901.73 +MS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1894.1 +MS,Carbon Monoxide,2C3_Aluminum-production,,TON,2.83 +MS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,8.36 +MS,Carbon Monoxide,2C7a_Copper-production,,TON,59.67 +MS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,4.8 +MS,Carbon Monoxide,2D3d_Coating-application,,TON,27.47 +MS,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.59 +MS,Carbon Monoxide,2D3h_Printing,,TON,6.88 +MS,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3024.64 +MS,Carbon Monoxide,2H2_Food-and-beverage,,TON,285.5886845 +MS,Carbon Monoxide,2H3_Other-industrial-processes,,TON,77.99 +MS,Carbon Monoxide,3F_Ag-res-on-field,,TON,22545.1 +MS,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,254.34 +MS,Carbon Monoxide,5C_Incineration,biomass,TON,0.099061408 +MS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,60104.92128 +MS,Carbon Monoxide,5C_Open-burning-residential,,TON,6294.94553 +MS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,778.096889 +MS,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0 +MS,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,9.13 +MS,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.587912982 +MS,Methane,1A3bii_Road-LDV,light_oil,TON,1390.741875 +MS,Methane,1A3biii_Road-bus,diesel_oil,TON,4.556378651 +MS,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,78.15245348 +MS,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,311.9379879 +MS,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,3.148771707 +MS,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,23.70002387 +MS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.505278946 +MS,Nitrogen Oxides,11C_Other-natural,,TON,15521.8727 +MS,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,12383.86 +MS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,24.32 +MS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,18676.87 +MS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,12223.58 +MS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3730.08 +MS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,77.46 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1442.633165 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1997.639978 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,144.6425381 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3912.028281 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,157.1605617 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1130.266027 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,3.472199648 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,33928.70693 +MS,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +MS,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0.01 +MS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,257.77 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4596.751883 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,47.13375924 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045570126 +MS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,236.3215531 +MS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,714.4585666 +MS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,51556.42901 +MS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1783.207012 +MS,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2572.036326 +MS,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,32411.84428 +MS,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1637.529555 +MS,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5980.186088 +MS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,93.78369959 +MS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8839.388654 +MS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.709579888 +MS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6734.706869 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.934481506 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.89551849 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,526.8888797 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,326.2271703 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.82496867 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,138.2978136 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,475.0007192 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,119.9630944 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.068920742 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,5.1806969 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1546.655958 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7409.894081 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,91.43465033 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.682137229 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.333266 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,240.4817542 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,735.1228313 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1206.043911 +MS,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,11.0872 +MS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.67 +MS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.87 +MS,Nitrogen Oxides,2A1_Cement-production,,TON,1403.65 +MS,Nitrogen Oxides,2A6_Other-minerals,,TON,170.86 +MS,Nitrogen Oxides,2B_Chemicals-other,,TON,2313.08 +MS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,389.34 +MS,Nitrogen Oxides,2C3_Aluminum-production,,TON,3.38 +MS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,14.36 +MS,Nitrogen Oxides,2C7a_Copper-production,,TON,13.36 +MS,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,5.71 +MS,Nitrogen Oxides,2D3d_Coating-application,,TON,33.56 +MS,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.71 +MS,Nitrogen Oxides,2D3h_Printing,,TON,8.22 +MS,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3243.13 +MS,Nitrogen Oxides,2H2_Food-and-beverage,,TON,7.39 +MS,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,97.42 +MS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1032.6 +MS,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,46.48 +MS,Nitrogen Oxides,5C_Incineration,biomass,TON,19.67859905 +MS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1778.251023 +MS,Nitrogen Oxides,5C_Open-burning-residential,,TON,444.348995 +MS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,34.5820803 +MS,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MS,Nitrogen Oxides,5D3_Wastewater-commertial,Other_Fuel,TON,2.56 +MS,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,10.9 +MS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.398104723 +MS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1006.638568 +MS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.442618903 +MS,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,49.1218572 +MS,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5.284503517 +MS,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.954031725 +MS,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.769338492 +MS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.644570773 +MS,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,846.043 +MS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.7278358 +MS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,111.9174 +MS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,460.4363 +MS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,213.5562923 +MS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.167513 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1930.732425 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.532663125 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,18.42341083 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,332.4380794 +MS,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MS,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,25.95671 +MS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,166628.9137 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.282000359 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.464445641 +MS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.004135245 +MS,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.310841977 +MS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.907180073 +MS,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2582604 +MS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.04645652 +MS,PM10 Filterable,2A1_Cement-production,,TON,79.79919686 +MS,PM10 Filterable,2A2_Lime-production,,TON,0.269372 +MS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,33219.88027 +MS,PM10 Filterable,2A6_Other-minerals,,TON,3148.127649 +MS,PM10 Filterable,2B_Chemicals-other,,TON,485.838583 +MS,PM10 Filterable,2C_Iron-steel-alloy,,TON,85.86632833 +MS,PM10 Filterable,2C3_Aluminum-production,,TON,1.25000031 +MS,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,219.3218201 +MS,PM10 Filterable,2C7a_Copper-production,,TON,5.42609 +MS,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,4.979128 +MS,PM10 Filterable,2D3d_Coating-application,,TON,0.04 +MS,PM10 Filterable,2D3h_Printing,,TON,0.58 +MS,PM10 Filterable,2H1_Pulp-and-paper,,TON,1213.353729 +MS,PM10 Filterable,2H2_Food-and-beverage,,TON,111.6036359 +MS,PM10 Filterable,2H3_Other-industrial-processes,,TON,359.43822 +MS,PM10 Filterable,2I_Wood-processing,,TON,10.7095716 +MS,PM10 Filterable,3Dc_Other-farm,,TON,79059.41383 +MS,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,62.475068 +MS,PM10 Filterable,5C_Incineration,biomass,TON,0.009082 +MS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,6046.053458 +MS,PM10 Filterable,5C_Open-burning-residential,,TON,2814.21146 +MS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,128.8491324 +MS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.983347 +MS,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.529435 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,875.47 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.77 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,164.45 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1022.92 +MS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,414.84 +MS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,5.69 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,107.6785522 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.85104678 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.530299547 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2040.830652 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.62831898 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,22.08152184 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.250017231 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,689.0624896 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,42.51 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,377.783916 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,15.25096408 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +MS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,112.3128356 +MS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,166628.9137 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,48.19112629 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1457.536163 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,101.9920913 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,52.36500688 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1498.39608 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,112.0194308 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,321.413982 +MS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.659534137 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,281.1611933 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.024221148 +MS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,290.1501502 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.283414634 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.036585366 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,53.76768086 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,19.26346129 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.402410321 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.62607341 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,124.1394557 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1114.60818 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.009112854 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.685003275 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.558668901 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,671.8876092 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,50.30147016 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008672054 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.4357016 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,331.8791307 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.01820589 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,204.1198181 +MS,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.4 +MS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11 +MS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.05 +MS,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,85.86 +MS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.35 +MS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,33219.88027 +MS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3267.233 +MS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,568.65 +MS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,316.17 +MS,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,5.75 +MS,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,380.1558 +MS,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,24.96 +MS,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,5.97 +MS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,290.4968 +MS,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,3.69 +MS,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.05 +MS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2275.97 +MS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,904.8076649 +MS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,476.21 +MS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,20.01 +MS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,79089.474 +MS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3269.9 +MS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,107.83 +MS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.697903338 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6046.053458 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2814.21146 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,128.8491324 +MS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.27 +MS,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.1 +MS,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.82 +MS,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,338.5328 +MS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.4183768 +MS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,0 +MS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,293.3738 +MS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,183.4354147 +MS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.167513 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1469.626966 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.372550812 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,4.172263365 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,315.9128096 +MS,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MS,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,22.66211 +MS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,20473.0577 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.019806329 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.136639671 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.003178011 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.23888763 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.598949537 +MS,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2582604 +MS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.00645652 +MS,PM2.5 Filterable,2A1_Cement-production,,TON,40.44927486 +MS,PM2.5 Filterable,2A2_Lime-production,,TON,0.0393716 +MS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3321.988027 +MS,PM2.5 Filterable,2A6_Other-minerals,,TON,544.4255473 +MS,PM2.5 Filterable,2B_Chemicals-other,,TON,206.0986143 +MS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,61.31542703 +MS,PM2.5 Filterable,2C3_Aluminum-production,,TON,1.25000031 +MS,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,195.6603836 +MS,PM2.5 Filterable,2C7a_Copper-production,,TON,5.42609 +MS,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,2.2691287 +MS,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +MS,PM2.5 Filterable,2D3h_Printing,,TON,0 +MS,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,779.7163247 +MS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,92.33478885 +MS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,148.1398608 +MS,PM2.5 Filterable,2I_Wood-processing,,TON,1.72760445 +MS,PM2.5 Filterable,3Dc_Other-farm,,TON,15877.58921 +MS,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,13.798708 +MS,PM2.5 Filterable,5C_Incineration,biomass,TON,0.009082 +MS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4660.906771 +MS,PM2.5 Filterable,5C_Open-burning-residential,,TON,2577.2249 +MS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,99.3302516 +MS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.803347 +MS,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.529435 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,367.96 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.4605409 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,52.5326 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,855.8575 +MS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,384.7190844 +MS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,5.69 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,104.4420001 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.68007412 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.529949397 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1579.727495 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.468214484 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,7.830484258 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.250015462 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,672.5339913 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,39.2154 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,366.4503712 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.03968227 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +MS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,19.40758285 +MS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,20473.0577 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,43.29550836 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,796.4180068 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,91.30095623 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,26.45247395 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1334.199452 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,102.0113837 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,281.9006862 +MS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.982721839 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,259.6811306 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.022326205 +MS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,275.5066125 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.020297398 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.709702602 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,52.15464121 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,17.77255198 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.402410321 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.27728743 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,114.2125153 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1113.341537 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.008155623 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.61304911 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.250438769 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,651.7311488 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,46.27747185 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008672054 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.36263 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,305.3291729 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.56765763 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,187.7902611 +MS,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.4 +MS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11 +MS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.01 +MS,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,46.51 +MS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.12 +MS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3321.988027 +MS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,663.530865 +MS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,288.91 +MS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,291.6190867 +MS,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,5.75 +MS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,356.4943627 +MS,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,24.96 +MS,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,3.26 +MS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,279.8536 +MS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,3.69 +MS,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,1.47 +MS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1842.332602 +MS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,885.5388059 +MS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,264.9093107 +MS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,11.025912 +MS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,15907.6494 +MS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3269.9 +MS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,27.218422 +MS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.697903338 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4660.906771 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2577.2249 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,99.3302516 +MS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.09 +MS,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.08 +MS,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.82 +MS,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,28180.39 +MS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.33 +MS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,35175.8 +MS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2520.89 +MS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1696.647 +MS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,30.06 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,37.38088165 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.926064028 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.283379671 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,372.449852 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.494171783 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4810.777254 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.230006084 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,102.6735159 +MS,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +MS,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.04 +MS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,4.42 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,108.5178184 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.262748872 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.46124E-05 +MS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,33.02611318 +MS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.395192357 +MS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,384.4839849 +MS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.09423499 +MS,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,15.43881732 +MS,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,56.46528648 +MS,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.781940159 +MS,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.23918994 +MS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.004805796 +MS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,84.14494032 +MS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004920552 +MS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1046.418587 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.46 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.6 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.13453324 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.923498963 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.071214105 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.952222272 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.02612663 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,16.63083243 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.163112414 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,12.2609855 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.721541208 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,157.8136584 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.589687061 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001509566 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.32150422 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.351974114 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.15739386 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.252123202 +MS,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,40.35 +MS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.01 +MS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5844 +MS,Sulfur Dioxide,2A1_Cement-production,,TON,2667.12 +MS,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +MS,Sulfur Dioxide,2B_Chemicals-other,,TON,1321.95 +MS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,175.55 +MS,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.01 +MS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0305 +MS,Sulfur Dioxide,2C7a_Copper-production,,TON,4.08 +MS,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.03 +MS,Sulfur Dioxide,2D3d_Coating-application,,TON,0.27 +MS,Sulfur Dioxide,2D3h_Printing,,TON,0.04 +MS,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1000.493 +MS,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.05 +MS,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,4.65 +MS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,154.89 +MS,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,7.69 +MS,Sulfur Dioxide,5C_Incineration,biomass,TON,1.76754371 +MS,Sulfur Dioxide,5C_Open-burning-residential,,TON,74.0581774 +MS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.47220079 +MS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0 +MS,Sulfur Dioxide,5D3_Wastewater-commertial,Other_Fuel,TON,0.09 +MS,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.06 +MS,Volatile Organic Compounds,11C_Other-natural,,TON,1401783.52 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,69.66 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.37 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,127.08 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,376.4 +MS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.954461084 +MS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,7137.364539 +MS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,9.42 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,133.389984 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,674.2597955 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.495281467 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1187.090632 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.733825174 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.133202632 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.170730425 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2325.04781 +MS,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +MS,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,24.27 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,472.4285574 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,203.8934299 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000740528 +MS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,190.596343 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,92.0143477 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,35567.4339 +MS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,74.68802345 +MS,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1409.760048 +MS,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1674.456266 +MS,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,229.4003992 +MS,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,391.9238149 +MS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,733.2665423 +MS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,431.4862345 +MS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.348396025 +MS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,157.7608337 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.343258786 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.816741214 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,77.37817807 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1167.383365 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.268587512 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,16.34269787 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3936.693865 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1415.25487 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.002680251 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.201471559 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,79.94746185 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,710.5987859 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,600.721201 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.029230092 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.4592836 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10839.7137 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.48651189 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,13378.60528 +MS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1765.67 +MS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,912.3116088 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,2732.667722 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,21449.71665 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,218.68 +MS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,36.18 +MS,Volatile Organic Compounds,2A1_Cement-production,,TON,6.91 +MS,Volatile Organic Compounds,2A6_Other-minerals,,TON,206.2 +MS,Volatile Organic Compounds,2B_Chemicals-other,,TON,1398.0931 +MS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,131.75 +MS,Volatile Organic Compounds,2C3_Aluminum-production,,TON,22.31 +MS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,168.1143 +MS,Volatile Organic Compounds,2C7a_Copper-production,,TON,3.79 +MS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12386.27375 +MS,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,75.27 +MS,Volatile Organic Compounds,2D3d_Coating-application,,TON,9729.242235 +MS,Volatile Organic Compounds,2D3e_Degreasing,,TON,248.55 +MS,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,717.257795 +MS,Volatile Organic Compounds,2D3h_Printing,,TON,878.94 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,66.21299418 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1203.645841 +MS,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,8728.31 +MS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,428.7294438 +MS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1819.18 +MS,Volatile Organic Compounds,2I_Wood-processing,,TON,11.75 +MS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6952.36184 +MS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1893.1 +MS,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,80.22 +MS,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +MS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,4125.542385 +MS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,633.937972 +MS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,145.12126 +MS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,55.7488201 +MS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,60.53 +MS,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,2.17 +MS,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.6 +MT,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.089 +MT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.0145 +MT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,5.47747 +MT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.125012 +MT,Ammonia,1A1b_Pet-refining,natural_gas,TON,24.2782 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.266324744 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.037811958 +MT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.015271481 +MT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.164495667 +MT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,4.610532852 +MT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.046045528 +MT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.030997436 +MT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.265369541 +MT,Ammonia,1A3bii_Road-LDV,light_oil,TON,423.9961918 +MT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.789840104 +MT,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,13.93009459 +MT,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,20.56756945 +MT,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,3.128862376 +MT,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.798902136 +MT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.955595606 +MT,Ammonia,1A3c_Rail,diesel_oil,TON,11.28849223 +MT,Ammonia,1A3c_Rail,light_oil,TON,0.007841165 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.219915846 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.460035242 +MT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.032348313 +MT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.66876999 +MT,Ammonia,1A4bi_Residential-stationary,biomass,TON,82.14914381 +MT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,4.12264729 +MT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,11.20154555 +MT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.016112928 +MT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,196.2372005 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.47092531 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.307554601 +MT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003839575 +MT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.444864345 +MT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.080950584 +MT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.5473715 +MT,Ammonia,2A1_Cement-production,,TON,1.6022 +MT,Ammonia,2B_Chemicals-other,,TON,18.0478 +MT,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.01 +MT,Ammonia,3B1a_Cattle-dairy,,TON,836.7871723 +MT,Ammonia,3B1b_Cattle-non-dairy,,TON,16531.99786 +MT,Ammonia,3B2_Manure-sheep,,TON,950.20992 +MT,Ammonia,3B3_Manure-swine,,TON,1117.508388 +MT,Ammonia,3B4_Manure-other,,TON,1413.918 +MT,Ammonia,3B4_Manure-poultry,,TON,293.9000434 +MT,Ammonia,3B4d_Manure-goats,,TON,85.51818 +MT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,33715.13854 +MT,Ammonia,5C_Incineration,biomass,TON,0.0076 +MT,Ammonia,5D1_Wastewater-domestic,,TON,3.64908932 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,32773.06158 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22490.25968 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2223.761323 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,128649.2998 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2550.099422 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.239258819 +MT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,41472.04126 +MT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4349247.124 +MT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,57311.15153 +MT,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,479796.0976 +MT,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1676068.607 +MT,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,94266.60721 +MT,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,443390.7733 +MT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25243.65858 +MT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,12348.66976 +MT,Carbon Dioxide,1A3c_Rail,light_oil,TON,605.5002021 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27001.42892 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,37782.5583 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1629.904724 +MT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3975.404136 +MT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,48737.91595 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1287352.477 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,22886.53539 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,145.4107602 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,469.33735 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,92982.34391 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9969.097794 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,36717.565 +MT,Carbon Monoxide,11C_Other-natural,,TON,239590.07 +MT,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,95.3271 +MT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.0001 +MT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,3.6445 +MT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2761.5518 +MT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,35.6694 +MT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,24.2435 +MT,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,1.005354596 +MT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,875.2809454 +MT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,22.9624 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,362.7878971 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2116.397216 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,128.9540985 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,140.676476 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2445.452026 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.07254282 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,167.0745213 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.500297864 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.908607737 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2723.233029 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,615.1362643 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,799.7841784 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849384 +MT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2790.063009 +MT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,146.9684605 +MT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,126776.3598 +MT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,208.2996116 +MT,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,21024.3932 +MT,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3168.679495 +MT,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,383.7421543 +MT,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,864.6083227 +MT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1558.167868 +MT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3688.674933 +MT,Carbon Monoxide,1A3c_Rail,light_oil,TON,206.4264926 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.122665832 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.734576086 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.226777168 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,116.0535248 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.18765615 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,163.3895474 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12529.9504 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,42.65380194 +MT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,18.90154238 +MT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,19088.15794 +MT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,9907.056498 +MT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,20.64173325 +MT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1546.883495 +MT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.080564587 +MT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,532.7096911 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7069.362206 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7817.78016 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,15.99861311 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.382115 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,18923.48276 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.06748738 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6530.498914 +MT,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,19.8813 +MT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,5.8404 +MT,Carbon Monoxide,2A1_Cement-production,,TON,48.3295 +MT,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,152.552 +MT,Carbon Monoxide,2A6_Other-minerals,,TON,2153.9191 +MT,Carbon Monoxide,2B_Chemicals-other,,TON,388.0615 +MT,Carbon Monoxide,2C3_Aluminum-production,,TON,14653.11 +MT,Carbon Monoxide,2H1_Pulp-and-paper,,TON,539.2434 +MT,Carbon Monoxide,2H2_Food-and-beverage,,TON,91.97263946 +MT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.2715 +MT,Carbon Monoxide,3F_Ag-res-on-field,,TON,1175.2 +MT,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,30.4325 +MT,Carbon Monoxide,5C_Incineration,,TON,0.010247086 +MT,Carbon Monoxide,5C_Incineration,biomass,TON,0.61482516 +MT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,5895.304816 +MT,Carbon Monoxide,5C_Open-burning-residential,,TON,1738.90489 +MT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,184.001623 +MT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.0372 +MT,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,5.415 +MT,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.002324235 +MT,Methane,1A3bii_Road-LDV,light_oil,TON,562.3008836 +MT,Methane,1A3biii_Road-bus,diesel_oil,TON,0.690974489 +MT,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,46.93771988 +MT,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,50.57976919 +MT,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,2.122575182 +MT,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.733175935 +MT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.392365819 +MT,Nitrogen Oxides,11C_Other-natural,,TON,44990.2932 +MT,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,866.094 +MT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.0013 +MT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,15.2459 +MT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,27014.029 +MT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,345.044 +MT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,22.4476 +MT,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,3.269264921 +MT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1415.654535 +MT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,8.8529 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,309.151926 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,233.5918722 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19.68788315 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,201.4893078 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1748.754686 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,74.30662329 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,294.9377498 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.96466337 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.061217187 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5242.165753 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1185.395335 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,12.57255252 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785085 +MT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,222.6597834 +MT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,254.0576538 +MT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,13697.27319 +MT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,671.8940164 +MT,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2145.165519 +MT,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,13887.70532 +MT,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,631.7099589 +MT,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3819.306552 +MT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,68.79720693 +MT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,25133.50959 +MT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.490949704 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.001565857 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,28.05286945 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.526301891 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,23.59409202 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.02251078 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,277.9547666 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,179.2205917 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.89627135 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,40.53795618 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,155.9283238 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,162.9607092 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,74.3106675 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,51.187994 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.290032665 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1420.934243 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13799.22617 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,120.8715009 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.563697154 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.1871395 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,120.3701328 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,119.1177898 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,176.296716 +MT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,7.9004 +MT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,7.5615 +MT,Nitrogen Oxides,2A1_Cement-production,,TON,2277.8644 +MT,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,360.326 +MT,Nitrogen Oxides,2A6_Other-minerals,,TON,607.9685 +MT,Nitrogen Oxides,2B_Chemicals-other,,TON,71.2554 +MT,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.2244 +MT,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,410.3624 +MT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +MT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.3275 +MT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,45.2 +MT,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,10.4092 +MT,Nitrogen Oxides,5C_Incineration,,TON,0.005626837 +MT,Nitrogen Oxides,5C_Incineration,biomass,TON,3.894333928 +MT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,174.4171424 +MT,Nitrogen Oxides,5C_Open-burning-residential,,TON,122.748846 +MT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,7.79740679 +MT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.1072 +MT,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.2886 +MT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.140108124 +MT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,262.2795395 +MT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.112445475 +MT,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,19.00707661 +MT,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.485299853 +MT,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.357311748 +MT,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.498250944 +MT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.326325498 +MT,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.49943 +MT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.00009215 +MT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.508832133 +MT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,682.1183 +MT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,7.7092 +MT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,3.16631 +MT,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,5.710920871 +MT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,206.2606071 +MT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.557017605 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,6.163242837 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,195.6642784 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.521822846 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,14.52555536 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.381965205 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,60.48432761 +MT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,196743.0788 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.825328401 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.59908369 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.496242829 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.30207797 +MT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.45861871 +MT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,34.87475565 +MT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.017401952 +MT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.662431008 +MT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.967362126 +MT,PM10 Filterable,2A1_Cement-production,,TON,171.9472867 +MT,PM10 Filterable,2A2_Lime-production,,TON,45.1004129 +MT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,9507.78306 +MT,PM10 Filterable,2A6_Other-minerals,,TON,19507.98133 +MT,PM10 Filterable,2B_Chemicals-other,,TON,11.56740652 +MT,PM10 Filterable,2C_Iron-steel-alloy,,TON,16.17527131 +MT,PM10 Filterable,2C3_Aluminum-production,,TON,8.27168512 +MT,PM10 Filterable,2C5_Lead-production,,TON,0.008398 +MT,PM10 Filterable,2C6_Zinc-production,,TON,2.3493678 +MT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,179.8009642 +MT,PM10 Filterable,2C7a_Copper-production,,TON,0.00580612 +MT,PM10 Filterable,2H1_Pulp-and-paper,,TON,456.2535582 +MT,PM10 Filterable,2H2_Food-and-beverage,,TON,57.39258725 +MT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,25.15155908 +MT,PM10 Filterable,2I_Wood-processing,,TON,3.6544514 +MT,PM10 Filterable,3Dc_Other-farm,,TON,107079.0541 +MT,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,31.344368 +MT,PM10 Filterable,5C_Incineration,,TON,0.00281039 +MT,PM10 Filterable,5C_Incineration,biomass,TON,1.09423776 +MT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,593.0192804 +MT,PM10 Filterable,5C_Open-burning-residential,,TON,759.992895 +MT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,29.0523062 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,3.5748 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0001 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.9624 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,708.7638 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,7.9113 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4.3326 +MT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,4.32003116 +MT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,308.3953688 +MT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.8993 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,21.30515625 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.425210031 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.287845238 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,6.182020534 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,195.5540687 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.301955155 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,15.11158927 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.969705438 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.003412366 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,137.1354286 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,97.44975095 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.937096354 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +MT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,67.6402317 +MT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,197556.1988 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,16.95604721 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,540.1740921 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,37.18385373 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,31.58022434 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,626.6291062 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,41.95669678 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,182.2161497 +MT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.234568841 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,822.6167509 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.08164942 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.016633142 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.902746725 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.363599839 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.246320294 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.37467459 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.16494547 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.203119001 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.397870108 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,41.16388789 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1445.233607 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.81190805 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,34.9488258 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.038348779 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.911859603 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1297.352866 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.54594683 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018371974 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.77362038 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,185.7641717 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.433489215 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,33.07176972 +MT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,1.3225 +MT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,183.9713 +MT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,52.8521 +MT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,9507.78306 +MT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,19693.732 +MT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,45.8642 +MT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,17.151 +MT,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,14.8973 +MT,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0133 +MT,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,10.8071 +MT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,193.8601 +MT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.0108 +MT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.1088 +MT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,679.6599 +MT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,317.201874 +MT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,38.2508 +MT,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,5.281 +MT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,107080.8387 +MT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,113 +MT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,36.6194 +MT,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.003426651 +MT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.371605518 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,593.0192804 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,770.372895 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,30.5123062 +MT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0447 +MT,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,2.49959 +MT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.00009215 +MT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.491725315 +MT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,197.8442 +MT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.39132 +MT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.608061 +MT,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,2.106619956 +MT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,133.5556508 +MT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.532023922 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.507692509 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,153.2313907 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.797072487 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,6.143532849 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.405526458 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,53.09784133 +MT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,21021.05629 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.830100018 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.209245468 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.467368046 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.299050588 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.426527525 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,21.3751246 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.013373731 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.464337709 +MT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.829761826 +MT,PM2.5 Filterable,2A1_Cement-production,,TON,87.62476185 +MT,PM2.5 Filterable,2A2_Lime-production,,TON,16.32439736 +MT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,950.778306 +MT,PM2.5 Filterable,2A6_Other-minerals,,TON,2549.607177 +MT,PM2.5 Filterable,2B_Chemicals-other,,TON,10.24555152 +MT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.77175033 +MT,PM2.5 Filterable,2C3_Aluminum-production,,TON,6.30678512 +MT,PM2.5 Filterable,2C5_Lead-production,,TON,0 +MT,PM2.5 Filterable,2C6_Zinc-production,,TON,2.3493678 +MT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,54.87440385 +MT,PM2.5 Filterable,2C7a_Copper-production,,TON,0.00580612 +MT,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,195.1680409 +MT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,16.99608927 +MT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,2.91791798 +MT,PM2.5 Filterable,2I_Wood-processing,,TON,1.1971486 +MT,PM2.5 Filterable,3Dc_Other-farm,,TON,21410.22775 +MT,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,6.011411 +MT,PM2.5 Filterable,5C_Incineration,,TON,0.0019229 +MT,PM2.5 Filterable,5C_Incineration,biomass,TON,0.99474936 +MT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,457.1580051 +MT,PM2.5 Filterable,5C_Open-burning-residential,,TON,695.993495 +MT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,22.3965172 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,2.57496 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0001 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.945293259 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,224.48997 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,4.59342 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3.774351 +MT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,2.220153023 +MT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,234.1858798 +MT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.874306117 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.65837328 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.386460248 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.287399226 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.543255139 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,151.1347371 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.626039839 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,6.914527697 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.003605361 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.003531659 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,131.4743222 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,94.52626565 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.624431638 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +MT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,14.09524092 +MT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,21107.79629 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,15.41510203 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,376.3730112 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,34.20550206 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,19.3743403 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,575.5945039 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,38.34994397 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,167.4077754 +MT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.6900927 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,759.2674086 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.075264729 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.016640233 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.903557871 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.332300483 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.242332243 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27.52344381 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.378226764 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.203119001 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.295932171 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,37.8719974 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1443.651884 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,8.781240025 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,21.50695155 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.034320509 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.715574487 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1258.432489 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.62246846 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018371974 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.75041234 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,170.9031614 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.360483167 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,30.42603266 +MT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,1.18489978 +MT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,99.64874215 +MT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,24.07606055 +MT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,950.778306 +MT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2735.356831 +MT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,44.542345 +MT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,6.747518618 +MT,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,12.9324 +MT,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.004902 +MT,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,10.8071 +MT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,68.9336066 +MT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.0108 +MT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.1088 +MT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,418.5742723 +MT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,276.8052574 +MT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,16.0171589 +MT,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.8236934 +MT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,21412.01231 +MT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,113 +MT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,11.097 +MT,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.00241249 +MT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.272243889 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,457.1580051 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,705.493495 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,23.7665172 +MT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0447 +MT,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,1183.8 +MT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.0036 +MT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.8178 +MT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,18765.362 +MT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1588.88 +MT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1.6745 +MT,Sulfur Dioxide,1A1b_Pet-refining,heavy_oil,TON,189.7956118 +MT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1061.548588 +MT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,131.1703 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.789718502 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.62934969 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.059888643 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,82.71402818 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,71.81432914 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.746078119 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,230.8048847 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.259060924 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,57.98201889 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,27.98833971 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.08137382 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +MT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,31.90866332 +MT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.455414721 +MT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,134.9144929 +MT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.629942105 +MT,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,14.89036702 +MT,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,18.23770256 +MT,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.036556319 +MT,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.831418403 +MT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.782949272 +MT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,255.1835181 +MT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.019960067 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.000208604 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.913132176 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.104188554 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.306167549 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.27450812 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.874077491 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.224012605 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.036031847 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.864854954 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.634771117 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,28.92318442 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,176.1107945 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,106.430313 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.686410783 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,7.98729142 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,280.0682314 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.760686194 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003198089 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.102092383 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.08035994 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.456044622 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.216125117 +MT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.0779 +MT,Sulfur Dioxide,2A1_Cement-production,,TON,1179.0708 +MT,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,338.951 +MT,Sulfur Dioxide,2A6_Other-minerals,,TON,63.278 +MT,Sulfur Dioxide,2B_Chemicals-other,,TON,1545.7252 +MT,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,5.6197 +MT,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,107.8384 +MT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.6632 +MT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.1997 +MT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,6.78 +MT,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,3.2743 +MT,Sulfur Dioxide,5C_Incineration,,TON,0.002204117 +MT,Sulfur Dioxide,5C_Incineration,biomass,TON,1.201752395 +MT,Sulfur Dioxide,5C_Open-burning-residential,,TON,20.4598136 +MT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.684796822 +MT,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.6083 +MT,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,11.3674 +MT,Volatile Organic Compounds,11C_Other-natural,,TON,1197711.32 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,6.3551 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.0424 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,394.874 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,8.0028 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,14.2586 +MT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,48.91344983 +MT,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,483.2730652 +MT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1244.875885 +MT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,11.8354 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,32.69407782 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,90.80555442 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.44542015 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.828836007 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,99.02910068 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.969560846 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.590828436 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.577617142 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.08560457 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,837.2494523 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,121.863827 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,51.75721415 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +MT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,141.3853454 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,36.6122942 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,9671.380847 +MT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,29.35981938 +MT,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,786.315369 +MT,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,697.5877382 +MT,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,93.89604923 +MT,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,152.9559313 +MT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,301.0071245 +MT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1249.42464 +MT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,7.479389919 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.030660875 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.273109347 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.002479924 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065605255 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.7122746 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,40.83538549 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,588.015709 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.140242507 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,4.776355841 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1259.05615 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1773.012653 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.88991467 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,56.25066685 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.011279046 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,73.2168314 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1363.974426 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,348.1320263 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.061924977 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4162113 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6521.650483 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.939910465 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1944.66404 +MT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.2133 +MT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,142.0847722 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,274.2177865 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3543.564559 +MT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,214.425 +MT,Volatile Organic Compounds,2A1_Cement-production,,TON,7.3201 +MT,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,7.8481 +MT,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,11.7125 +MT,Volatile Organic Compounds,2B_Chemicals-other,,TON,74.6179 +MT,Volatile Organic Compounds,2C3_Aluminum-production,,TON,41.986 +MT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.0179 +MT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4098.66907 +MT,Volatile Organic Compounds,2D3d_Coating-application,,TON,2293.00226 +MT,Volatile Organic Compounds,2D3e_Degreasing,,TON,9.68 +MT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,179.01726 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,407.9788093 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,472.5052997 +MT,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,411.546 +MT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,100.6452795 +MT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,32.4761 +MT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3091.120427 +MT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,90.4 +MT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,9.2838 +MT,Volatile Organic Compounds,5C_Incineration,,TON,0.007597804 +MT,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.864326208 +MT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,404.647559 +MT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,173.538447 +MT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,34.051269 +MT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,28.383599 +MT,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1.0267 +NC,Ammonia,1A1a_Public-Electricity,biomass,TON,16.91601 +NC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.86591 +NC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,83.5426424 +NC,Ammonia,1A1a_Public-Electricity,natural_gas,TON,54.18804 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.921898512 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.433114179 +NC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,16.87225977 +NC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.41356404 +NC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.042031948 +NC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.69454474 +NC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,27.68680429 +NC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,20.64581794 +NC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.61054152 +NC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.75152868 +NC,Ammonia,1A3bii_Road-LDV,light_oil,TON,4190.273774 +NC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,21.61362974 +NC,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,187.4907151 +NC,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,117.1122994 +NC,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,43.15148114 +NC,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,33.62498318 +NC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.44356232 +NC,Ammonia,1A3c_Rail,diesel_oil,TON,4.953538385 +NC,Ammonia,1A3c_Rail,light_oil,TON,0.001994666 +NC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.493659771 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,7.17118821 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.98898138 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.162306603 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.17352867 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.695505238 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.545724582 +NC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.897445981 +NC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.62481271 +NC,Ammonia,1A4bi_Residential-stationary,biomass,TON,254.8768255 +NC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,42.6334785 +NC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,9.3223176 +NC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,24.18810355 +NC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,570.8388698 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.921984227 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.273384073 +NC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.035079898 +NC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.15710431 +NC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.932260377 +NC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.304329393 +NC,Ammonia,2A6_Other-minerals,Other_Fuel,TON,4.1176025 +NC,Ammonia,2B_Chemicals-other,,TON,776.8779123 +NC,Ammonia,2C_Iron-steel-alloy,,TON,35.0364 +NC,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.00568 +NC,Ammonia,2D3d_Coating-application,,TON,7.592688 +NC,Ammonia,2D3e_Degreasing,Other_Fuel,TON,1.89105 +NC,Ammonia,2D3h_Printing,,TON,5.02231 +NC,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,8.53027755 +NC,Ammonia,2H1_Pulp-and-paper,,TON,389.0076512 +NC,Ammonia,2H2_Food-and-beverage,,TON,39.22127523 +NC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,44.35966093 +NC,Ammonia,3B1a_Cattle-dairy,,TON,1692.882193 +NC,Ammonia,3B1b_Cattle-non-dairy,,TON,3303.778688 +NC,Ammonia,3B2_Manure-sheep,,TON,96.885756 +NC,Ammonia,3B3_Manure-swine,,TON,87870.92549 +NC,Ammonia,3B4_Manure-other,,TON,1052.93232 +NC,Ammonia,3B4_Manure-poultry,,TON,59485.46238 +NC,Ammonia,3B4d_Manure-goats,,TON,685.523256 +NC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14341.32219 +NC,Ammonia,5C_Incineration,biomass,TON,2.92607 +NC,Ammonia,5D1_Wastewater-domestic,,TON,34.7860403 +NC,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,23.60341 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,482615.9349 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,595058.0689 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,30962.99788 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2539154.009 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,50185.04386 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,12.3925857 +NC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,510496.4433 +NC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,43785611.94 +NC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1413817.344 +NC,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2973152.742 +NC,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,8855683.556 +NC,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1251869.838 +NC,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1780747.215 +NC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,280184.3755 +NC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3137.181116 +NC,Carbon Dioxide,1A3c_Rail,light_oil,TON,154.1079632 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,208175.6499 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,291213.8364 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12723.32331 +NC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,110289.5399 +NC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,778020.7017 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,728219.7134 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,19767.35039 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,71.22039767 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4288.0712 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,201711.6018 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,114808.3747 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,422893.2231 +NC,Carbon Monoxide,11C_Other-natural,,TON,125141.97 +NC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,278.32 +NC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,93.7531907 +NC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,16525.918 +NC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,613.55398 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4531.772747 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,42417.00016 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2487.675478 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7846.321933 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,168.9537524 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4857.506376 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,389.5811518 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,175.2366394 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6196.951646 +NC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,3.52 +NC,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.37 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,12140.04878 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,16411.63601 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.068492268 +NC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10220.05058 +NC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2089.279112 +NC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1256405.238 +NC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,4921.781619 +NC,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,121266.5724 +NC,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,15726.64668 +NC,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,5695.553194 +NC,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3679.994173 +NC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15171.76289 +NC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1608.023741 +NC,Carbon Monoxide,1A3c_Rail,light_oil,TON,54.48013298 +NC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,407.5649833 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,727.8378989 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,126.1030888 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,666.7233873 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.264421484 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,26.82304366 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2760.127386 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1259.425884 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,100885.5252 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,329.987512 +NC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,525.474952 +NC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,300253.29 +NC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,32864.47226 +NC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,213.2743751 +NC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1281.81926 +NC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,120.9682115 +NC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1604.112867 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3737.197983 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7893.631243 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.836344991 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,49.164286 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,55984.81544 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,231.1077278 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,76120.04947 +NC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,12.85 +NC,Carbon Monoxide,2A6_Other-minerals,,TON,2120.9332 +NC,Carbon Monoxide,2B_Chemicals-other,,TON,18602.1 +NC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2222.0867 +NC,Carbon Monoxide,2C3_Aluminum-production,,TON,12.39 +NC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,501.6979 +NC,Carbon Monoxide,2C7a_Copper-production,,TON,184.31 +NC,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,30.14 +NC,Carbon Monoxide,2D3d_Coating-application,,TON,35.7951 +NC,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.11 +NC,Carbon Monoxide,2D3h_Printing,,TON,13.689 +NC,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.793 +NC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,4067.13 +NC,Carbon Monoxide,2H2_Food-and-beverage,,TON,947.3376772 +NC,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,72.025145 +NC,Carbon Monoxide,3Dc_Other-farm,,TON,40.02 +NC,Carbon Monoxide,3F_Ag-res-on-field,,TON,7315.8 +NC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,845.978974 +NC,Carbon Monoxide,5C_Incineration,,TON,606.9784662 +NC,Carbon Monoxide,5C_Incineration,biomass,TON,19.14940114 +NC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,82215.94695 +NC,Carbon Monoxide,5C_Open-burning-residential,,TON,14088.9415 +NC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,2362.365999 +NC,Carbon Monoxide,5C_Other-open-burning,Other_Fuel,TON,37.3 +NC,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,86.050977 +NC,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,25.09 +NC,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.488903409 +NC,Methane,1A3bii_Road-LDV,light_oil,TON,4699.677313 +NC,Methane,1A3biii_Road-bus,diesel_oil,TON,19.09962334 +NC,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,441.9723538 +NC,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,307.8776792 +NC,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,17.93362285 +NC,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,30.233344 +NC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,59.78585572 +NC,Nitrogen Oxides,11C_Other-natural,,TON,13273.0029 +NC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,598.92 +NC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,452.1035434 +NC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,53363.21 +NC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,745.24888 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4250.13237 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6384.083048 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,433.9250482 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,6306.429503 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,470.7013557 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,12251.48117 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1949.498423 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,49.1229569 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,8501.83609 +NC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,4.2 +NC,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.07 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,23402.90639 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,220.7041462 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.227850467 +NC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3378.748746 +NC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3083.137952 +NC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,143165.6799 +NC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,12498.60475 +NC,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,12250.13502 +NC,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,62767.04005 +NC,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,8114.064305 +NC,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11347.86042 +NC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,622.5186473 +NC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,11292.79266 +NC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.550662804 +NC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2875.131158 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,253.682137 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,445.7628563 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1381.75137 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,47.31454853 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.601711088 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2662.403847 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2143.037379 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1219.963577 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,91.85551058 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1124.257821 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2243.55051 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,485.083546 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,767.789286 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,42.41652 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,435.485572 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4324.612282 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7509.762318 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,76.49584535 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.745594752 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,47.39209 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,386.1457435 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1371.797997 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1884.534166 +NC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.72 +NC,Nitrogen Oxides,2A6_Other-minerals,,TON,4678.1945 +NC,Nitrogen Oxides,2B_Chemicals-other,,TON,1557.73 +NC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,240.4316 +NC,Nitrogen Oxides,2C3_Aluminum-production,,TON,11.47 +NC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,57.8211 +NC,Nitrogen Oxides,2C7a_Copper-production,,TON,4.1 +NC,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,8.71 +NC,Nitrogen Oxides,2D3d_Coating-application,,TON,266.8914 +NC,Nitrogen Oxides,2D3h_Printing,,TON,16.473 +NC,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,2.29 +NC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3518.68 +NC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,57.281771 +NC,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,131.87583 +NC,Nitrogen Oxides,3Dc_Other-farm,,TON,33.69 +NC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,320.4 +NC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,109.5586 +NC,Nitrogen Oxides,5C_Incineration,,TON,142.907265 +NC,Nitrogen Oxides,5C_Incineration,biomass,TON,157.3155157 +NC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,2432.425862 +NC,Nitrogen Oxides,5C_Open-burning-residential,,TON,994.51344 +NC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,110.8309608 +NC,Nitrogen Oxides,5C_Other-open-burning,Other_Fuel,TON,0.384 +NC,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,14.015925 +NC,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,4.61 +NC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.782188619 +NC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,3354.662451 +NC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,3.37169444 +NC,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,236.4462924 +NC,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,8.759264801 +NC,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.767959452 +NC,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.094314983 +NC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.846301611 +NC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,1123.453095 +NC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,28.92257538 +NC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,18324.70951 +NC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,62.822276 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1008.441308 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.308910655 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3006.675688 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,425.6417269 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,166.3604096 +NC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.1216 +NC,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.5335817 +NC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,105454.2568 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,35.41884193 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.526712659 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,19.17840793 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.30736044 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.037328515 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.75061165 +NC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,46.0488653 +NC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,28.8991975 +NC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,26.12435895 +NC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.007667242 +NC,PM10 Filterable,2A1_Cement-production,,TON,0.9693762 +NC,PM10 Filterable,2A2_Lime-production,,TON,0.100121567 +NC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,48845.68848 +NC,PM10 Filterable,2A6_Other-minerals,,TON,10348.36603 +NC,PM10 Filterable,2B_Chemicals-other,,TON,605.0832933 +NC,PM10 Filterable,2C_Iron-steel-alloy,,TON,79.9110386 +NC,PM10 Filterable,2C3_Aluminum-production,,TON,0.66034792 +NC,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,58.958161 +NC,PM10 Filterable,2C7a_Copper-production,,TON,2.07187834 +NC,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,48.0095869 +NC,PM10 Filterable,2D3d_Coating-application,,TON,0.00608 +NC,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.01 +NC,PM10 Filterable,2H1_Pulp-and-paper,,TON,948.7513009 +NC,PM10 Filterable,2H2_Food-and-beverage,,TON,549.4456774 +NC,PM10 Filterable,2H3_Other-industrial-processes,,TON,315.5516729 +NC,PM10 Filterable,2I_Wood-processing,,TON,22.57090294 +NC,PM10 Filterable,3Dc_Other-farm,,TON,61919.27805 +NC,PM10 Filterable,5A_Solid-waste-disposal,,TON,19.640906 +NC,PM10 Filterable,5C_Incineration,,TON,1.36255931 +NC,PM10 Filterable,5C_Incineration,biomass,TON,0.219848 +NC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,8270.245582 +NC,PM10 Filterable,5C_Open-burning-residential,,TON,6259.37727 +NC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,302.6244568 +NC,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.02981 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,10.49 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,36.37673578 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,20688.323 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,133.31966 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,320.3284804 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,59.85351946 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.84747988 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2491.35577 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,43.73792487 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3297.523734 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,498.836667 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.420193092 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,413.6883632 +NC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.32 +NC,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.61 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1923.186196 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,77.62644262 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001435204 +NC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,348.8497632 +NC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,110943.2568 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,239.2185232 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4251.170815 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,775.127755 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,316.9203515 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3090.898596 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,627.7054706 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,645.8292782 +NC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,32.39017017 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,372.1966261 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.020761814 +NC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,172.3572172 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,519.7538837 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,45.89731115 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1384.369474 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.86101561 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.040002561 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,64.31959402 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,218.7131739 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,78.35315785 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.587021294 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,94.48783237 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,772.9223108 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4742.543309 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,101.4676602 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,29.085623 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,57.567672 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,21.10303998 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,685.987558 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,41.9902569 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008998369 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.065067 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,481.852768 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.02553564 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,380.9026762 +NC,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.04 +NC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1.043 +NC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.13009 +NC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,48845.68848 +NC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,11050.78337 +NC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,839.399054 +NC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,180.2754 +NC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.836 +NC,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,186.5892607 +NC,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,8.01 +NC,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,60.065 +NC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,119.2371917 +NC,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,4.86 +NC,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,5.222 +NC,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,8.936 +NC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1901.674 +NC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3000.589339 +NC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,478.6590215 +NC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,35.973 +NC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,61937.447 +NC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1014.6 +NC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,95.1339 +NC,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.647769852 +NC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,16.72986851 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8270.245582 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,6298.58631 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,407.6885178 +NC,PM10 Primary (Filt + Cond),5C_Other-open-burning,Other_Fuel,TON,5.11 +NC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.31693 +NC,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.13 +NC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,965.0470949 +NC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.67733894 +NC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,13883.96672 +NC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,60.242276 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,879.3781002 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.843498304 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2785.266859 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,253.4307879 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,126.7542905 +NC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.1216 +NC,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2890653 +NC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,7410.922 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,20.27689833 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.023399296 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.151607775 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.36357645 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.037322021 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.84729849 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,35.3894021 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,17.7124135 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,20.0770584 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.404217679 +NC,PM2.5 Filterable,2A1_Cement-production,,TON,0.9693762 +NC,PM2.5 Filterable,2A2_Lime-production,,TON,0.070121591 +NC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4884.568848 +NC,PM2.5 Filterable,2A6_Other-minerals,,TON,2119.92307 +NC,PM2.5 Filterable,2B_Chemicals-other,,TON,304.3997448 +NC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,58.5958655 +NC,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.62715692 +NC,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,55.45428394 +NC,PM2.5 Filterable,2C7a_Copper-production,,TON,1.97604522 +NC,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,46.2943281 +NC,PM2.5 Filterable,2D3d_Coating-application,,TON,0.00608 +NC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,719.7364335 +NC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,199.4189682 +NC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,230.1276847 +NC,PM2.5 Filterable,2I_Wood-processing,,TON,8.31703964 +NC,PM2.5 Filterable,3Dc_Other-farm,,TON,12435.18854 +NC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,19.55585488 +NC,PM2.5 Filterable,5C_Incineration,,TON,0.9046346 +NC,PM2.5 Filterable,5C_Incineration,biomass,TON,0.155336 +NC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,6375.532621 +NC,PM2.5 Filterable,5C_Open-burning-residential,,TON,5732.27198 +NC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,233.2941949 +NC,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.02981 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,7.38 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,29.13150137 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,16735.8 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,130.73966 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,310.6396329 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,59.40352913 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.842671156 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2233.5144 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,32.28479328 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3076.134939 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,326.7465155 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.420647718 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,371.7068234 +NC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.32 +NC,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.3654836 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1865.490554 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,71.46136371 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001435204 +NC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,220.351603 +NC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,7957.922 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,219.9506769 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2771.448507 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,691.7139189 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,213.0899133 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2816.490144 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,577.9613922 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,576.7016948 +NC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.07034668 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,344.8585106 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019138872 +NC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,160.5880687 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,492.7376472 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,46.49814117 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,296.5656146 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.969481448 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.044705476 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.41617419 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,212.1516932 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,72.28901718 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.587021294 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,91.65318005 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,711.1224863 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4736.685399 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,90.80931085 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,17.8988526 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,51.52063935 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.43448999 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,665.4078078 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,38.63114953 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008998369 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.8531114 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,443.3066326 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.18477076 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,350.4305297 +NC,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.04 +NC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,1.043 +NC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.10009 +NC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4884.568848 +NC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2822.340644 +NC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,526.6712318 +NC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,158.9600978 +NC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.802809 +NC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,183.0853527 +NC,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,7.91416688 +NC,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,58.34974114 +NC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,110.8171917 +NC,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,4.86 +NC,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,4.732 +NC,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,8.786 +NC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1672.658938 +NC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2499.966968 +NC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,393.2350578 +NC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,21.7191317 +NC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,12453.3574 +NC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1014.6 +NC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,73.34885388 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,446.5897286 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,15.05531001 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6375.532621 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5768.1786 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,374.9095995 +NC,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,Other_Fuel,TON,5.11 +NC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.27693 +NC,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.13 +NC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1271.96 +NC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,319.4386404 +NC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,232834.89 +NC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,34.651147 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,112.907387 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13.57640673 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.802269399 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,4277.100345 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2515.225758 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,13888.2037 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,8040.383078 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.184734523 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,372.0693597 +NC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.03 +NC,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,12.36 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,552.5019503 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.421262809 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000273062 +NC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,391.0878249 +NC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.613218111 +NC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,968.2558548 +NC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,15.46027485 +NC,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,65.71448475 +NC,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,95.95556982 +NC,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,13.77557663 +NC,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,19.32856512 +NC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.197335984 +NC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,112.6617228 +NC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004501818 +NC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1796.695804 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,27.5860765 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2670.280547 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3976.816103 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,251.8868885 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.040001094 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.99592557 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,45.28795612 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8.315386788 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.281275098 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,24.01431798 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,23.15969462 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,76.89298752 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1817.101226 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,234.08324 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1030.649026 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,24.0452304 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,158.4275242 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.583482327 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001566383 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.93276018 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.927054227 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.28486822 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,12.45415205 +NC,Sulfur Dioxide,2A6_Other-minerals,,TON,2983.01 +NC,Sulfur Dioxide,2B_Chemicals-other,,TON,6491.7497 +NC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,179.172 +NC,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.0896 +NC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,252.27915 +NC,Sulfur Dioxide,2C7a_Copper-production,,TON,3.44 +NC,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,6.32 +NC,Sulfur Dioxide,2D3d_Coating-application,,TON,5.4222 +NC,Sulfur Dioxide,2D3h_Printing,,TON,0.7125 +NC,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.057 +NC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2014.4 +NC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,125.9934894 +NC,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,10.70118155 +NC,Sulfur Dioxide,3Dc_Other-farm,,TON,4.42 +NC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,42.72 +NC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,26.99327 +NC,Sulfur Dioxide,5C_Incineration,,TON,107.2780003 +NC,Sulfur Dioxide,5C_Incineration,biomass,TON,26.43752715 +NC,Sulfur Dioxide,5C_Open-burning-residential,,TON,165.752273 +NC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,21.17923727 +NC,Sulfur Dioxide,5C_Other-open-burning,Other_Fuel,TON,0.059 +NC,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.77093555 +NC,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,1.07 +NC,Volatile Organic Compounds,11C_Other-natural,,TON,1041978.93 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,31.4 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,13.24380306 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,869.4471 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,95.016087 +NC,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,37.61 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,453.5299912 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2062.066625 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.586777699 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,315.3782617 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,17.87107601 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,137.6049866 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.35252445 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,12.24882842 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,885.2135223 +NC,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.43 +NC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.24 +NC,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.06 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2404.932251 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1064.605999 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.003702639 +NC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1272.297708 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,452.1279013 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,104138.6373 +NC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,699.2206062 +NC,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7534.906212 +NC,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,3565.279671 +NC,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1226.140279 +NC,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,814.3410053 +NC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4072.225447 +NC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,586.3128365 +NC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.10894843 +NC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,80.98199281 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,28.08578884 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.05868197 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.080753333 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14.68208749 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.475661586 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,231.8794439 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,314.7565793 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4871.596525 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.082116795 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,132.8184891 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,19677.59093 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6355.997646 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,29.8587376 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,46.611574 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,16.9356183 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,220.4619336 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,724.6216559 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,537.8493451 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.030332629 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.9335776 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,15974.17888 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,56.8908558 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,24678.77484 +NC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,579.9947533 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,2137.585016 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,21300.96536 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,13.46 +NC,Volatile Organic Compounds,2A6_Other-minerals,,TON,502.086 +NC,Volatile Organic Compounds,2B_Chemicals-other,,TON,4257.283918 +NC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,99.9696 +NC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1047.304 +NC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,140.526716 +NC,Volatile Organic Compounds,2C7a_Copper-production,,TON,63.11 +NC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,40666.89279 +NC,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,75.6453224 +NC,Volatile Organic Compounds,2D3d_Coating-application,,TON,45516.61154 +NC,Volatile Organic Compounds,2D3e_Degreasing,,TON,12047.40956 +NC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2703.93065 +NC,Volatile Organic Compounds,2D3h_Printing,,TON,22704.53818 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1943.684522 +NC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,9722.003 +NC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,3326.011456 +NC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2269.222942 +NC,Volatile Organic Compounds,3Dc_Other-farm,,TON,125.37 +NC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,18274.34831 +NC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,587.4 +NC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,237.34371 +NC,Volatile Organic Compounds,5C_Incineration,,TON,347.1732893 +NC,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.88752681 +NC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,5643.224773 +NC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1418.83977 +NC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,474.5601922 +NC,Volatile Organic Compounds,5C_Other-open-burning,Other_Fuel,TON,33.8 +NC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,174.9594532 +NC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,400.3085759 +NC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,3.02770704 +NC,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,45.04 +ND,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,369.39766 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.276670576 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.057001111 +ND,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,70 +ND,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.196516941 +ND,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.035372557 +ND,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.916533125 +ND,Ammonia,1A3bii_Road-LDV,light_oil,TON,305.8183615 +ND,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.493329323 +ND,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,10.38485967 +ND,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,13.71745712 +ND,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,2.267670197 +ND,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.647729576 +ND,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.080008179 +ND,Ammonia,1A3c_Rail,diesel_oil,TON,7.271214529 +ND,Ammonia,1A3c_Rail,light_oil,TON,0.003114846 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.213001785 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.445572004 +ND,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.017471056 +ND,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.427356402 +ND,Ammonia,1A4bi_Residential-stationary,biomass,TON,40.8585874 +ND,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,9.693740465 +ND,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,8.32114085 +ND,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.061354249 +ND,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,97.89241704 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.45219568 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.637253805 +ND,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00270615 +ND,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.168018409 +ND,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.074157095 +ND,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.500976557 +ND,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,5932 +ND,Ammonia,3B1a_Cattle-dairy,,TON,1266.012858 +ND,Ammonia,3B1b_Cattle-non-dairy,,TON,10840.91262 +ND,Ammonia,3B2_Manure-sheep,,TON,309.949068 +ND,Ammonia,3B3_Manure-swine,,TON,1130.382436 +ND,Ammonia,3B4_Manure-other,,TON,601.3194 +ND,Ammonia,3B4_Manure-poultry,,TON,563.3922386 +ND,Ammonia,3B4d_Manure-goats,,TON,29.975484 +ND,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,63947.98995 +ND,Ammonia,5D1_Wastewater-domestic,,TON,2.41960364 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,34047.62084 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,25581.70656 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3224.881206 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,147155.3353 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2905.240487 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.239259333 +ND,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,30399.28293 +ND,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3182683.545 +ND,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,34465.59605 +ND,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,179183.3585 +ND,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1089953.213 +ND,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,69206.54565 +ND,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,199758.3413 +ND,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18052.79766 +ND,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4922.51025 +ND,Carbon Dioxide,1A3c_Rail,light_oil,TON,240.6535398 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26152.51033 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,36594.65738 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1566.361451 +ND,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2147.088481 +ND,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,31136.88066 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2883268.524 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,47722.96779 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,330.6292975 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,330.8005 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,76294.88519 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9132.477824 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,33605.41679 +ND,Carbon Monoxide,11C_Other-natural,,TON,69896.412 +ND,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,7508.08 +ND,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,7.45 +ND,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,279 +ND,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,338.6 +ND,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,118.69 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,248.0077959 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2416.519227 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,165.9461499 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,168.5 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.5 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1017.79 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1418.234 +ND,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,198 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,703.3627839 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,738.787245 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849346 +ND,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1989.005532 +ND,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,110.785276 +ND,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,93673.85661 +ND,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,133.2302486 +ND,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7774.335609 +ND,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2174.744229 +ND,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,288.4661102 +ND,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,459.7101497 +ND,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1052.852356 +ND,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2357.470784 +ND,Carbon Monoxide,1A3c_Rail,light_oil,TON,65.36365944 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.5 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,158.2462658 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9750.246998 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,41.06252861 +ND,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,10.19901969 +ND,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,9824.170083 +ND,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5066.795439 +ND,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,48.4687314 +ND,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1144.156835 +ND,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.306771319 +ND,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,311.3853276 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15968.21112 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12560.87806 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,36.3782517 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.78443 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,11192.95811 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.38357719 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4727.969193 +ND,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1 +ND,Carbon Monoxide,2A6_Other-minerals,,TON,1246 +ND,Carbon Monoxide,2B_Chemicals-other,,TON,41.9 +ND,Carbon Monoxide,2D3d_Coating-application,,TON,2.04 +ND,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.09 +ND,Carbon Monoxide,2H2_Food-and-beverage,,TON,2955.863359 +ND,Carbon Monoxide,3F_Ag-res-on-field,,TON,16898 +ND,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.52 +ND,Carbon Monoxide,5C_Incineration,,TON,0.309937549 +ND,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,320.85751 +ND,Carbon Monoxide,5C_Open-burning-residential,,TON,960.23179 +ND,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,28.95379 +ND,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.803481957 +ND,Methane,1A3bii_Road-LDV,light_oil,TON,464.3008694 +ND,Methane,1A3biii_Road-bus,diesel_oil,TON,0.525083802 +ND,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,35.54581063 +ND,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,39.26905976 +ND,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.689554077 +ND,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.73380885 +ND,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.771874483 +ND,Nitrogen Oxides,11C_Other-natural,,TON,33582.168 +ND,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,67756.1 +ND,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,17.42 +ND,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,280 +ND,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,0.113793103 +ND,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,422.2862069 +ND,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,163.51 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,318.5716348 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,262.5535402 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24.17569792 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,144.3 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.2 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2442.18 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6168.786 +ND,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,38 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1356.053829 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,18.34026812 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785061 +ND,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,127.022076 +ND,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,188.3948858 +ND,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,9695.66899 +ND,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,390.8224108 +ND,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,750.555443 +ND,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,9119.08463 +ND,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,467.7436702 +ND,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1533.251878 +ND,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,38.77322437 +ND,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16291.94945 +ND,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.367184486 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.88 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,269.2247406 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,227.1248765 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.46135384 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,21.88857671 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,138.3911402 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,80.22832812 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,174.487436 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,37.8611714 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.104376555 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,871.147314 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,31058.81152 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,367.7550793 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.10337931 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.662597 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,122.4026313 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,109.1263714 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,230.8145102 +ND,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,15 +ND,Nitrogen Oxides,2B_Chemicals-other,,TON,2.53 +ND,Nitrogen Oxides,2D3d_Coating-application,,TON,3.49 +ND,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.42 +ND,Nitrogen Oxides,2H2_Food-and-beverage,,TON,365.097 +ND,Nitrogen Oxides,3F_Ag-res-on-field,,TON,568 +ND,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,0.11 +ND,Nitrogen Oxides,5C_Incineration,,TON,6.01437352 +ND,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,9.49281634 +ND,Nitrogen Oxides,5C_Open-burning-residential,,TON,67.781048 +ND,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.2868359 +ND,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.104128797 +ND,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,192.118446 +ND,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.081118135 +ND,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,12.67658429 +ND,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.050898967 +ND,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.265423508 +ND,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.357143487 +ND,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.237704372 +ND,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1488.1 +ND,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,22.32 +ND,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,19 +ND,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,99.8 +ND,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.72 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,82.4 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,30.9 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.2 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,237.09 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,295.124 +ND,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1 +ND,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,100160.1728 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.88 +ND,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.46923982 +ND,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,25.7955299 +ND,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.066262604 +ND,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.55600894 +ND,PM10 Filterable,2A5b_Construction-and-demolition,,TON,7626.48804 +ND,PM10 Filterable,2A6_Other-minerals,,TON,9075.1718 +ND,PM10 Filterable,2B_Chemicals-other,,TON,60.764 +ND,PM10 Filterable,2D3d_Coating-application,,TON,1.92 +ND,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.16 +ND,PM10 Filterable,2H2_Food-and-beverage,,TON,602.9097574 +ND,PM10 Filterable,3Dc_Other-farm,,TON,290681.354 +ND,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,0.1 +ND,PM10 Filterable,5C_Incineration,,TON,0.1 +ND,PM10 Filterable,5C_Open-burning-land-clearing,,TON,32.275602 +ND,PM10 Filterable,5C_Open-burning-residential,,TON,429.28007 +ND,PM10 Filterable,5C_Open-burning-yard-waste,,TON,4.7946098 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1585.808272 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,24.0063308 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,34.58 +ND,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,221.742669 +ND,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,19.272 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.86384719 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.718710899 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.411049135 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,127.622913 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,232.0156 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.46 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,260.363931 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,737.13288 +ND,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.34007 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,111.4267889 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.498498272 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +ND,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,52.9545347 +ND,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,100160.1728 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,12.41179987 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,479.9488564 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,22.71205024 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,27.59147165 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,423.7969166 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,30.87403227 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,82.27573886 +ND,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.211984877 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,527.2653442 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.032439968 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.056 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27.48101171 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.847620376 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.195159581 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.833071915 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,25.17117988 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,727.3013911 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,23.0711023 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,25.9619572 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.146023127 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.045622473 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2930.382369 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.554503904 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.041773594 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.5434175 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,127.4397092 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.229288002 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,30.26851081 +ND,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7626.48804 +ND,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9129.411266 +ND,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,69.7295 +ND,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.92 +ND,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.298947 +ND,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1127.913932 +ND,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,290681.354 +ND,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1704 +ND,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,0.1 +ND,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.239337264 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,32.275602 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,429.28007 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,4.7946098 +ND,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,238.630769 +ND,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,20.915625 +ND,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0 +ND,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,93.5 +ND,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.22 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,29.082345 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,18.54 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.2 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,89.87865 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,276.224 +ND,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1 +ND,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11044.80287 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.11 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,8.045805495 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,15.81016485 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.050924054 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.855804889 +ND,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,762.648804 +ND,PM2.5 Filterable,2A6_Other-minerals,,TON,1176.258786 +ND,PM2.5 Filterable,2B_Chemicals-other,,TON,55.505702 +ND,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.0470588 +ND,PM2.5 Filterable,2H2_Food-and-beverage,,TON,281.1571521 +ND,PM2.5 Filterable,3Dc_Other-farm,,TON,58132.676 +ND,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,24.88126418 +ND,PM2.5 Filterable,5C_Open-burning-residential,,TON,393.1302 +ND,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,3.6961817 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,336.338631 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,22.6119558 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,15.58 +ND,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,215.442669 +ND,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,19.272 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.23403508 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.666607375 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.410805478 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,74.305297 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,219.6556 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.46 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,113.1523184 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,718.23288 +ND,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.34007 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,108.0840208 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.141211233 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +ND,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,9.487360701 +ND,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11044.80287 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,11.21445461 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,345.3167738 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,20.58608832 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,19.65177646 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,387.6525509 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,28.07334733 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,73.68749966 +ND,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.765406818 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,486.41863 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029904158 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.056 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26.6565864 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.085457058 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.195159581 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.7780795 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,23.15813973 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,726.6038654 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,20.64767165 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,15.97658535 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.130684593 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.345419912 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2842.470624 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.95062117 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.041773594 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.527115 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,117.2447689 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.162408931 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,27.84701823 +ND,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,762.648804 +ND,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1230.498266 +ND,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,64.4712 +ND,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.92 +ND,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.186006 +ND,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,810.0609531 +ND,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,58132.676 +ND,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1704 +ND,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,0.1 +ND,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.239337264 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,24.88126418 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,393.1302 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3.6961817 +ND,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,133794.6 +ND,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.71 +ND,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,16 +ND,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,411.5 +ND,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1582.7 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.76972573 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.624889337 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.077163778 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,40.2 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.7 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2367.87 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2609.372 +ND,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,811 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,32.01442101 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.082947253 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +ND,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,19.29724763 +ND,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.333829073 +ND,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,67.0903574 +ND,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.378825332 +ND,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3.777629773 +ND,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,11.85846471 +ND,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.76100602 +ND,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.171700847 +ND,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.380503527 +ND,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,164.2689829 +ND,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007088983 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.87 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.689396519 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.0533147 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.034626966 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.467102463 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.926498134 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,14.24190808 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,412.9531775 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,125.108301 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.613691425 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.668026692 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,627.2654558 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.422033603 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007271691 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07195745 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.263788299 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.249932081 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.998178999 +ND,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,37 +ND,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,98 +ND,Sulfur Dioxide,2B_Chemicals-other,,TON,0.005 +ND,Sulfur Dioxide,2D3d_Coating-application,,TON,0.01 +ND,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.03 +ND,Sulfur Dioxide,2H2_Food-and-beverage,,TON,290.229 +ND,Sulfur Dioxide,3F_Ag-res-on-field,,TON,99.4 +ND,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.34 +ND,Sulfur Dioxide,5C_Incineration,,TON,0.425613689 +ND,Sulfur Dioxide,5C_Open-burning-residential,,TON,11.2968416 +ND,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.27804861 +ND,Volatile Organic Compounds,11C_Other-natural,,TON,251549.1 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,745.98 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.34 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,38 +ND,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,36.50947368 +ND,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,476.2105263 +ND,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,25.75 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29.33914217 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,105.2216066 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.454942575 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,91.8 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,33.5 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,166.314 +ND,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,12 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,139.344922 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,56.09978497 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +ND,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,81.50267999 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,27.77481382 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,8082.207595 +ND,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,20.58998071 +ND,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,462.2046978 +ND,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,512.762439 +ND,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,71.02341647 +ND,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,108.4846323 +ND,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,201.610145 +ND,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,800.6586358 +ND,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.729134579 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.26 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,39.55010706 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,530.184764 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.135129995 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.576422396 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,785.9716787 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,930.1784084 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,6.785620285 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,41.6057177 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.042947997 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,42.79025258 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3079.109429 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,580.4502798 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.140809779 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.9947828 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4690.529517 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.52527274 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1794.367006 +ND,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,6 +ND,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,309.6014833 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,46.9631588 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2726.097901 +ND,Volatile Organic Compounds,2A6_Other-minerals,,TON,75 +ND,Volatile Organic Compounds,2B_Chemicals-other,,TON,261.369 +ND,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2703.84135 +ND,Volatile Organic Compounds,2D3d_Coating-application,,TON,2189.68181 +ND,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,191.23672 +ND,Volatile Organic Compounds,2D3h_Printing,,TON,125.32 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1839.7389 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,596.23501 +ND,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,0.03 +ND,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,904.1937297 +ND,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,226 +ND,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8643.6361 +ND,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1278 +ND,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,71.51 +ND,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.007400311 +ND,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,22.02333729 +ND,Volatile Organic Compounds,5C_Open-burning-residential,,TON,96.700963 +ND,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.4001136 +ND,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,12.1696094 +ND,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,9.65 +NE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +NE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,191.70376 +NE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,1.41 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.705268542 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.076208463 +NE,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +NE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.21 +NE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,11.434 +NE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,93.211625 +NE,Ammonia,1A2c_Chemicals,natural_gas,TON,0.17 +NE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.764763685 +NE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.111439863 +NE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.293269343 +NE,Ammonia,1A3bii_Road-LDV,light_oil,TON,768.6112511 +NE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.323667515 +NE,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,28.48763269 +NE,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,35.91445465 +NE,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,5.72937619 +NE,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9.647058443 +NE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.049614782 +NE,Ammonia,1A3c_Rail,diesel_oil,TON,34.0463565 +NE,Ammonia,1A3c_Rail,light_oil,TON,0.009314854 +NE,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00405086 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.15 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.417472528 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.873094749 +NE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.104465311 +NE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.571024207 +NE,Ammonia,1A4bi_Residential-stationary,biomass,TON,108.2443536 +NE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.134557375 +NE,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.4312602 +NE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.050237616 +NE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,360.345867 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.43706608 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.557324188 +NE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.007291612 +NE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.865959821 +NE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.116957046 +NE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.791160546 +NE,Ammonia,2A1_Cement-production,,TON,1.63 +NE,Ammonia,2A6_Other-minerals,Other_Fuel,TON,2.78 +NE,Ammonia,2B_Chemicals-other,Other_Fuel,TON,347.65 +NE,Ammonia,2C_Iron-steel-alloy,,TON,0.94 +NE,Ammonia,2C7_Other-metal,Other_Fuel,TON,85.49 +NE,Ammonia,2D3d_Coating-application,,TON,0.120185 +NE,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.25 +NE,Ammonia,2H2_Food-and-beverage,,TON,0.721295 +NE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,226.04 +NE,Ammonia,3B1a_Cattle-dairy,,TON,4123.920905 +NE,Ammonia,3B1b_Cattle-non-dairy,,TON,79912.42381 +NE,Ammonia,3B2_Manure-sheep,,TON,266.895684 +NE,Ammonia,3B3_Manure-swine,,TON,20322.57505 +NE,Ammonia,3B4_Manure-other,,TON,882.552 +NE,Ammonia,3B4_Manure-poultry,,TON,6259.651042 +NE,Ammonia,3B4d_Manure-goats,,TON,241.693188 +NE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,64737.10685 +NE,Ammonia,5C_Open-burning-residential,,TON,0.009227836 +NE,Ammonia,5D1_Wastewater-domestic,,TON,254.1169301 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,86787.62144 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,99098.454 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5353.150274 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,463014.4527 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,9163.602587 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.478514197 +NE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,77520.97874 +NE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,8019540.905 +NE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,91198.73733 +NE,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,465514.7365 +NE,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2932954.225 +NE,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,178783.4156 +NE,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,544435.7155 +NE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,42698.34921 +NE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,14646.42507 +NE,Carbon Dioxide,1A3c_Rail,light_oil,TON,720.5849061 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,51257.66196 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,71707.15475 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3221.997679 +NE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,12838.14063 +NE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,114562.3737 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2517494.353 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,41724.83227 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,287.9031779 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,891.3065 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,55979.02949 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14403.31283 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,53070.91958 +NE,Carbon Monoxide,11C_Other-natural,,TON,102403.728 +NE,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.82 +NE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,6.5235 +NE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3815.4477 +NE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +NE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,205.06 +NE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,29.9 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,699.370933 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6859.248749 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,419.284317 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.052654164 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.164165 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,123.4634841 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1402.877809 +NE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,6.14 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2213.843325 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2350.757715 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.21369821 +NE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2418.084201 +NE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,332.9680159 +NE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,243011.2039 +NE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,339.6054065 +NE,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,19205.91563 +NE,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6210.263333 +NE,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,874.4001063 +NE,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1160.211422 +NE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2781.215424 +NE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,10996.64056 +NE,Carbon Monoxide,1A3c_Rail,light_oil,TON,198.1501917 +NE,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.754656 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,45.44 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.49482851 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,310.0950854 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,19386.32298 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,82.34823674 +NE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,61.00204258 +NE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,35612.45996 +NE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,13445.20887 +NE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,10.67850814 +NE,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,59.29826 +NE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.251188104 +NE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,831.1608613 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13938.6914 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11087.37002 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,31.67703306 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.218348 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,11992.87819 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.99426029 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7463.22183 +NE,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,10.46 +NE,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,103.52 +NE,Carbon Monoxide,2A1_Cement-production,,TON,95.46 +NE,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,2767.26 +NE,Carbon Monoxide,2B_Chemicals-other,,TON,390 +NE,Carbon Monoxide,2C_Iron-steel-alloy,,TON,821.53 +NE,Carbon Monoxide,2C5_Lead-production,,TON,0.17 +NE,Carbon Monoxide,2C6_Zinc-production,,TON,0 +NE,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,16.1 +NE,Carbon Monoxide,2C7a_Copper-production,,TON,0 +NE,Carbon Monoxide,2D3d_Coating-application,,TON,1.43589 +NE,Carbon Monoxide,2D3e_Degreasing,,TON,0 +NE,Carbon Monoxide,2D3h_Printing,,TON,0 +NE,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,4.74 +NE,Carbon Monoxide,2H2_Food-and-beverage,,TON,234.4439118 +NE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,639.47 +NE,Carbon Monoxide,3Dc_Other-farm,,TON,0.1 +NE,Carbon Monoxide,3F_Ag-res-on-field,,TON,8710 +NE,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,17.42 +NE,Carbon Monoxide,5C_Incineration,biomass,TON,10.83616437 +NE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,652.2525345 +NE,Carbon Monoxide,5C_Open-burning-residential,,TON,1907.960191 +NE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,59.6972867 +NE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,18.69 +NE,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.254791452 +NE,Methane,1A3bii_Road-LDV,light_oil,TON,1041.526024 +NE,Methane,1A3biii_Road-bus,diesel_oil,TON,1.350951169 +NE,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,77.56683346 +NE,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,93.16121748 +NE,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,2.758277118 +NE,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.31009883 +NE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.86877012 +NE,Nitrogen Oxides,11C_Other-natural,,TON,47877.084 +NE,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.61 +NE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,46.9355 +NE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,43167.845 +NE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +NE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,231.2 +NE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,17.12 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,749.992092 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1078.294263 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,72.70807806 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.062206671 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,29.56631229 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,354.7522028 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5287.379317 +NE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,5.22 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4267.176588 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,55.04373541 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.04557003 +NE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,350.8738345 +NE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,514.0474864 +NE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,27859.60564 +NE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,961.829208 +NE,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1978.312759 +NE,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,25360.23788 +NE,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1292.188041 +NE,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3953.512285 +NE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,120.2687432 +NE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,74687.80923 +NE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,3.810046983 +NE,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9.10712 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,6.31 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,88.5015884 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,527.6661816 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,415.5280869 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.83866155 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,130.9872061 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,485.2206225 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,212.6011086 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,38.44264105 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,1.9622319 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.904276933 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2086.621385 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27132.44592 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,307.4897849 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.056162981 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.853025 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,153.1526233 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,172.0971858 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,369.0996179 +NE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.18 +NE,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,172.56 +NE,Nitrogen Oxides,2A1_Cement-production,,TON,1925.6 +NE,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,1363.61 +NE,Nitrogen Oxides,2B_Chemicals-other,,TON,251.1 +NE,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,101.74 +NE,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.11 +NE,Nitrogen Oxides,2C5_Lead-production,,TON,1.3 +NE,Nitrogen Oxides,2C6_Zinc-production,,TON,0 +NE,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,3.78 +NE,Nitrogen Oxides,2C7a_Copper-production,,TON,0 +NE,Nitrogen Oxides,2D3d_Coating-application,,TON,2.62981 +NE,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +NE,Nitrogen Oxides,2D3h_Printing,,TON,0 +NE,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,2.12 +NE,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.86 +NE,Nitrogen Oxides,2H2_Food-and-beverage,,TON,19.943 +NE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,702.230005 +NE,Nitrogen Oxides,3Dc_Other-farm,,TON,0.21 +NE,Nitrogen Oxides,3F_Ag-res-on-field,,TON,390 +NE,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,4.34 +NE,Nitrogen Oxides,5C_Incineration,biomass,TON,58.59688805 +NE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,19.29741648 +NE,Nitrogen Oxides,5C_Open-burning-residential,,TON,134.679488 +NE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.65321214 +NE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,2.33 +NE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.282963335 +NE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,533.2250548 +NE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.231439203 +NE,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,34.80372673 +NE,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.191696561 +NE,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.726817905 +NE,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.068017625 +NE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.616770524 +NE,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.13 +NE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.9235 +NE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1343.03717 +NE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +NE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,15.02 +NE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,7.17 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.671131553 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,46.31838735 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,171.1025325 +NE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.4 +NE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,236924.7974 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,27.35 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.28 +NE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.306559318 +NE,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.33690555 +NE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.054256628 +NE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.165102881 +NE,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.15 +NE,PM10 Filterable,2A1_Cement-production,,TON,51.91 +NE,PM10 Filterable,2A2_Lime-production,,TON,5.67 +NE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,14218.50676 +NE,PM10 Filterable,2A6_Other-minerals,,TON,2203.765524 +NE,PM10 Filterable,2B_Chemicals-other,,TON,44.9584 +NE,PM10 Filterable,2C_Iron-steel-alloy,,TON,38.67 +NE,PM10 Filterable,2C3_Aluminum-production,,TON,0.11 +NE,PM10 Filterable,2C5_Lead-production,,TON,0 +NE,PM10 Filterable,2C6_Zinc-production,,TON,1.5 +NE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,28.05198 +NE,PM10 Filterable,2C7a_Copper-production,,TON,3.43283 +NE,PM10 Filterable,2D3d_Coating-application,,TON,9.971 +NE,PM10 Filterable,2D3e_Degreasing,,TON,0.03 +NE,PM10 Filterable,2D3h_Printing,,TON,0 +NE,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,4.4665 +NE,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,8.51 +NE,PM10 Filterable,2H2_Food-and-beverage,,TON,234.103654 +NE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,866.8069031 +NE,PM10 Filterable,3Dc_Other-farm,,TON,234885.4088 +NE,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,1.32 +NE,PM10 Filterable,5C_Incineration,biomass,TON,3.12 +NE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,65.6111564 +NE,PM10 Filterable,5C_Open-burning-residential,,TON,852.517424 +NE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,9.8855817 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.137621 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.99330179 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2438.3386 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,37.9234 +NE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,11.27324 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,56.98255997 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.9163207 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.661545985 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.392428278 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,62.6096966 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,398.2154707 +NE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.9896027 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,350.6918528 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.15821834 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +NE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,55.07672596 +NE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,237924.1284 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,38.51660851 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1042.193759 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,59.10782952 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,64.50904946 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1300.26543 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,94.23990936 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,215.9358712 +NE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.826973191 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,2508.200127 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.097019261 +NE,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.324068 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,28.2799 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.528 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,53.85135836 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,19.29647052 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.402491762 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.96345141 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,106.5475742 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1927.08509 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.080244105 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.3455315 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.11956551 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.80216859 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2552.697254 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.284356281 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.03637525 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4683518 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,121.0797217 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.516086619 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,47.80114119 +NE,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.0741 +NE,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,55.852491 +NE,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,7.3671482 +NE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,14218.50676 +NE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2353.17119 +NE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,85.768444 +NE,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,61.0402473 +NE,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.506 +NE,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +NE,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,6.9 +NE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,61.55627141 +NE,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,9.297468 +NE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.971 +NE,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.03 +NE,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0 +NE,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,4.4665 +NE,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,15.9002568 +NE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,751.4731393 +NE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1324.89012 +NE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,235706.5703 +NE,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1300 +NE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,1.544 +NE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.802289143 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,65.6111564 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,852.9702639 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.8855817 +NE,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.0740506 +NE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.90075 +NE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,786.12459 +NE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +NE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,11.41 +NE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,5.2044858 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.286618157 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,19.81339766 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,147.7689027 +NE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.4 +NE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,25758.91876 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,23.0864 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.31 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.772633715 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.819394 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.04169722 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.295493258 +NE,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.15 +NE,PM2.5 Filterable,2A1_Cement-production,,TON,31.39 +NE,PM2.5 Filterable,2A2_Lime-production,,TON,0 +NE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1421.850676 +NE,PM2.5 Filterable,2A6_Other-minerals,,TON,323.9143594 +NE,PM2.5 Filterable,2B_Chemicals-other,,TON,35.129492 +NE,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,36.5118119 +NE,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.0980435 +NE,PM2.5 Filterable,2C5_Lead-production,,TON,0 +NE,PM2.5 Filterable,2C6_Zinc-production,,TON,0 +NE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,9.50966006 +NE,PM2.5 Filterable,2C7a_Copper-production,,TON,1.0527793 +NE,PM2.5 Filterable,2D3d_Coating-application,,TON,6.91 +NE,PM2.5 Filterable,2D3h_Printing,,TON,0 +NE,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,2.2965 +NE,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,6.4832414 +NE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,84.85144054 +NE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,369.9322487 +NE,PM2.5 Filterable,3Dc_Other-farm,,TON,46977.409 +NE,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,0.14 +NE,PM2.5 Filterable,5C_Incineration,biomass,TON,2.9420266 +NE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,50.57967294 +NE,PM2.5 Filterable,5C_Open-burning-residential,,TON,780.726374 +NE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,7.6208302 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0816713 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.97055179 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1881.426033 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,34.3134 +NE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,9.3077228 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,55.26188452 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.840544169 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.660925567 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.01043057 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,31.79123512 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,374.5577875 +NE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.9896027 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,340.170927 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,13.03380066 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +NE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,15.72324706 +NE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25603.42613 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,34.92128649 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,686.2705591 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,52.76040877 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,42.42684142 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1179.406031 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,85.74700779 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,188.8533932 +NE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.990085895 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,2312.404015 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.089441481 +NE,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.314348 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,24.0164 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.558 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,52.23580787 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,17.80301116 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.402491762 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.63454419 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,98.02770512 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1918.977083 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.54660509 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.8280193 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.107006141 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.932564103 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2476.116865 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.702025862 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.03637525 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4243012 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,111.3937146 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.41060364 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,43.97707866 +NE,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.0741 +NE,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,35.3325109 +NE,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,3.79185494 +NE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1421.850676 +NE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,473.3200372 +NE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,76.05945 +NE,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,58.8820623 +NE,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.494043 +NE,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +NE,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,5.4 +NE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,44.18549129 +NE,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,6.917426 +NE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.931 +NE,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.03 +NE,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0 +NE,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.6565 +NE,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,13.8734982 +NE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,604.6609118 +NE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,828.0147991 +NE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,47144.33434 +NE,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1300 +NE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,1.544 +NE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.624316143 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,50.57967294 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,781.14108 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.6208302 +NE,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.03 +NE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.727 +NE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,75841.5 +NE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +NE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,8.05 +NE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,2.17 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.83014887 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.203564274 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.133576341 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.010055399 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.544016066 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,629.9024001 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,136.9250624 +NE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.02 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,100.731226 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.261535838 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.46123E-05 +NE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,43.55758141 +NE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.85451864 +NE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,407.2716558 +NE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.000899853 +NE,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,23.63395436 +NE,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,32.15928627 +NE,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.971972551 +NE,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.913257154 +NE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.167908593 +NE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,775.6008934 +NE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.021217402 +NE,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.538266 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.31 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.32 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.15094447 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.063968571 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.071230574 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.792958801 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.406776067 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,37.64732877 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,90.98094976 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,16.243419 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.140121955 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,12.46544248 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,553.4948148 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.243293926 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006331993 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.193881 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.659921793 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.548484932 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.576361005 +NE,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.17 +NE,Sulfur Dioxide,2A1_Cement-production,,TON,603.27 +NE,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,635.59 +NE,Sulfur Dioxide,2B_Chemicals-other,,TON,1.55 +NE,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,248.2 +NE,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.17 +NE,Sulfur Dioxide,2C5_Lead-production,,TON,0 +NE,Sulfur Dioxide,2C6_Zinc-production,,TON,0 +NE,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,3.79 +NE,Sulfur Dioxide,2C7a_Copper-production,,TON,0.01 +NE,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +NE,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +NE,Sulfur Dioxide,2D3h_Printing,,TON,0 +NE,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.46 +NE,Sulfur Dioxide,2H2_Food-and-beverage,,TON,7.45212 +NE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,69.12 +NE,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +NE,Sulfur Dioxide,3F_Ag-res-on-field,,TON,52 +NE,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.49 +NE,Sulfur Dioxide,5C_Incineration,biomass,TON,1.397301572 +NE,Sulfur Dioxide,5C_Open-burning-residential,,TON,22.44658534 +NE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.573283504 +NE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.3 +NE,Volatile Organic Compounds,11C_Other-natural,,TON,432785.79 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.378 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,439.33509 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,12.55 +NE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,130.55183 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,77.31596182 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,337.8498306 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.393668948 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.01564119 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.004260368 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,312.4063674 +NE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.19 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,438.5510364 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,177.8142657 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000740527 +NE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,141.109984 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,77.21542807 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,20985.6956 +NE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,51.81330748 +NE,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1253.900358 +NE,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1379.227253 +NE,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,199.5737876 +NE,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,259.3583985 +NE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,560.3572095 +NE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,3794.659719 +NE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,8.314594477 +NE,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.1972276 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,5.89 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.57084982 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,77.4988967 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1053.771524 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.268754534 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,15.41411662 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2856.106905 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2472.218796 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.495006397 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,2.156299 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.035166325 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,114.2615354 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2688.777808 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,529.1020726 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.122612519 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.687952 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3894.958625 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.137491822 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2918.664665 +NE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,301.2930759 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,0 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,9284.673832 +NE,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,44.26 +NE,Volatile Organic Compounds,2A1_Cement-production,,TON,19.9 +NE,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,52.36 +NE,Volatile Organic Compounds,2B_Chemicals-other,,TON,49.060505 +NE,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,94.88 +NE,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.17 +NE,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +NE,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +NE,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,20.76 +NE,Volatile Organic Compounds,2C7a_Copper-production,,TON,0 +NE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,7517.166155 +NE,Volatile Organic Compounds,2D3d_Coating-application,,TON,3884.528335 +NE,Volatile Organic Compounds,2D3e_Degreasing,,TON,45.01 +NE,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,431.74161 +NE,Volatile Organic Compounds,2D3h_Printing,,TON,6.87 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1004.99759 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1240.201093 +NE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,329.6364253 +NE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1349.26034 +NE,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.04 +NE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,14598.50025 +NE,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,780 +NE,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,10.69 +NE,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.719484133 +NE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,44.76997573 +NE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,192.1427272 +NE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,11.1340167 +NE,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,151.0836799 +NE,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.02 +NH,Ammonia,1A1a_Public-Electricity,biomass,TON,18.996285 +NH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.078139 +NH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,15.418248 +NH,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,3.365619 +NH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,131.491943 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.626372618 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.070471837 +NH,Ammonia,1A2_Industrial_fuel_combustion,Other_Fuel,TON,0.040845 +NH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.33814587 +NH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.069204008 +NH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.473089359 +NH,Ammonia,1A3bii_Road-LDV,light_oil,TON,516.8652363 +NH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.66917328 +NH,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,16.30856525 +NH,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,16.99206209 +NH,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,3.626078514 +NH,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.817237447 +NH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.486572504 +NH,Ammonia,1A3c_Rail,diesel_oil,TON,0.140338381 +NH,Ammonia,1A3c_Rail,light_oil,TON,0.000746275 +NH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.09487002 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.686965 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.00110824 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.287352095 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.600711678 +NH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.106977246 +NH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.418905772 +NH,Ammonia,1A4bi_Residential-stationary,biomass,TON,204.5593352 +NH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,88.984565 +NH,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.32003995 +NH,Ammonia,1A4bi_Residential-stationary,light_oil,TON,8.796706 +NH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,69.1935417 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.304040009 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.03363838 +NH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005375883 +NH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.283706118 +NH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.252233026 +NH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.7061303 +NH,Ammonia,2C_Iron-steel-alloy,Other_Fuel,TON,8.30045 +NH,Ammonia,2D3d_Coating-application,,TON,1.797073 +NH,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,9.926165 +NH,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,8.051137 +NH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.252309 +NH,Ammonia,2I_Wood-processing,,TON,0.327263 +NH,Ammonia,3B1a_Cattle-dairy,,TON,667.324218 +NH,Ammonia,3B1b_Cattle-non-dairy,,TON,35.91386806 +NH,Ammonia,3B2_Manure-sheep,,TON,26.80656 +NH,Ammonia,3B3_Manure-swine,,TON,19.828446 +NH,Ammonia,3B4_Manure-other,,TON,132.9504 +NH,Ammonia,3B4_Manure-poultry,,TON,125.111914 +NH,Ammonia,3B4d_Manure-goats,,TON,27.15504 +NH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,113.0725433 +NH,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.11990707 +NH,Ammonia,5C_Incineration,,TON,0.10623 +NH,Ammonia,5C_Open-burning-yard-waste,,TON,11.98 +NH,Ammonia,5D1_Wastewater-domestic,,TON,3.07 +NH,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,1.032475 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,77079.44549 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,96495.91906 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5034.18476 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,287560.0953 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5686.979772 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.2392573 +NH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,51423.48408 +NH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5505831.12 +NH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,46434.2886 +NH,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,283259.1327 +NH,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1377389.894 +NH,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,115923.7686 +NH,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,273764.0567 +NH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22357.58626 +NH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1161.2629 +NH,Carbon Dioxide,1A3c_Rail,light_oil,TON,57.660609 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35281.37687 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,49332.54681 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2158.996986 +NH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13146.86871 +NH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,103501.7617 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37414.84391 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2359.284538 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.6017873 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,657.13249 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,149187.9205 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,31062.59717 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,114446.94 +NH,Carbon Monoxide,11C_Other-natural,,TON,15824.177 +NH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1337.606746 +NH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,4.633785 +NH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,328.8597 +NH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,23.19369 +NH,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.484813 +NH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,685.88853 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,549.0094115 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6705.034216 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,401.0808807 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,426.6944143 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,42.6584131 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.33997146 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,256.9851021 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1374.918567 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1642.724519 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.10684923 +NH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1835.074537 +NH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,190.8680379 +NH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,110477.2364 +NH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,181.000806 +NH,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9721.200324 +NH,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2781.951331 +NH,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,499.0584737 +NH,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,634.8133903 +NH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1007.428413 +NH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,95.762923 +NH,Carbon Monoxide,1A3c_Rail,light_oil,TON,17.88057981 +NH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,127.4884 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,67.53931919 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,135.9641665 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.945392903 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,24.12049793 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,612.2789834 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,213.4214148 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14990.97945 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,55.9062593 +NH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,62.45896222 +NH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,35979.24685 +NH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,28166.48507 +NH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,456.9 +NH,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,44.005495 +NH,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,43.9835 +NH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,249.04 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,140.4599957 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,947.3405466 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.17602915 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.534779 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,23593.01 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,62.5287342 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,18431.142 +NH,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.80041 +NH,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,0.734985 +NH,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0.013314 +NH,Carbon Monoxide,2D3d_Coating-application,,TON,0.6573 +NH,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.306056 +NH,Carbon Monoxide,2H2_Food-and-beverage,,TON,125.128366 +NH,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,200.400042 +NH,Carbon Monoxide,5C_Incineration,,TON,24.88738309 +NH,Carbon Monoxide,5C_Incineration,biomass,TON,0 +NH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,17588.753 +NH,Carbon Monoxide,5C_Open-burning-residential,,TON,2312.1483 +NH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1758.73137 +NH,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.141896475 +NH,Methane,1A3bii_Road-LDV,light_oil,TON,519.2209892 +NH,Methane,1A3biii_Road-bus,diesel_oil,TON,0.610680155 +NH,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,43.27703795 +NH,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,46.02702189 +NH,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,2.412014777 +NH,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.844354258 +NH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.628843212 +NH,Nitrogen Oxides,11C_Other-natural,,TON,459.5596 +NH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,667.2948 +NH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,4.248526 +NH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,4113.94 +NH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,105.65 +NH,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,9.25474 +NH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,253.80989 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,656.193098 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1041.674585 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,70.13905917 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,85.62262498 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,172.2118159 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,399.9188202 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,419.6709726 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2649.796482 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,30.48392556 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785044 +NH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,272.007909 +NH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,318.2753874 +NH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,13263.66506 +NH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,515.455735 +NH,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1043.94891 +NH,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,11263.24178 +NH,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,788.9531632 +NH,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2068.318517 +NH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,45.87823076 +NH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,881.743032 +NH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.266885967 +NH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,469.903 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,49.24329247 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,459.523338 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,12.73031046 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,196.9171515 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,688.7405636 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,363.2079345 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,255.7221664 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,15.55886409 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,134.1876238 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,378.2675307 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,320.0468601 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1644.85 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.4800597 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,158.3407 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1085.1 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,327.4913439 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,9.153513697 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.03915261 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.2560086 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,173.0979946 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,371.1492289 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,649.80053 +NH,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.530139 +NH,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,1.734594 +NH,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.01585 +NH,Nitrogen Oxides,2D3d_Coating-application,,TON,0.7825 +NH,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,1.881024 +NH,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NH,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,36.485475 +NH,Nitrogen Oxides,5C_Incineration,,TON,545.477332 +NH,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +NH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,520.3764 +NH,Nitrogen Oxides,5C_Open-burning-residential,,TON,163.21034 +NH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,83.729331 +NH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.184709793 +NH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,331.9468909 +NH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.115763607 +NH,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,20.41328073 +NH,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.436994137 +NH,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.468718152 +NH,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.517589391 +NH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.313402587 +NH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,58.617484 +NH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.359584 +NH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,472.115 +NH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,24.035466 +NH,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.05165 +NH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,16.88788 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,70.36468155 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.563885161 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,90.16684978 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,7.001817313 +NH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,12917.173 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,36.036446 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.80829954 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,37.26700759 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,43.23400876 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.08349646 +NH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,98.69 +NH,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.60019985 +NH,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,9.500437 +NH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,16.01012314 +NH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,3204.87264 +NH,PM10 Filterable,2A6_Other-minerals,,TON,3982.578357 +NH,PM10 Filterable,2C_Iron-steel-alloy,,TON,0.256554 +NH,PM10 Filterable,2D3d_Coating-application,,TON,0.014868 +NH,PM10 Filterable,2H1_Pulp-and-paper,,TON,0 +NH,PM10 Filterable,2H2_Food-and-beverage,,TON,2.362235174 +NH,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,114.92017 +NH,PM10 Filterable,3Dc_Other-farm,,TON,1355.97 +NH,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,15.084634 +NH,PM10 Filterable,5C_Incineration,,TON,2.12663 +NH,PM10 Filterable,5C_Incineration,biomass,TON,0 +NH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1769.2817 +NH,PM10 Filterable,5C_Open-burning-residential,,TON,1033.6651 +NH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,50.821568 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,60.402786 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.45813206 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,779.1138 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,28.1365989 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.05165 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,26.684606 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,50.38606485 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.601016031 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.618143756 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,81.59280843 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,19.55479143 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,105.1509948 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,21.83115233 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,217.8021034 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.795217841 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014352 +NH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,41.87871022 +NH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,12917.173 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,21.81791807 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,652.0755543 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,32.09632542 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,33.87084789 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,567.9118438 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,54.08220761 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,117.9317878 +NH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.873336329 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,23.0579564 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007772904 +NH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,20.29147 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,41.72357014 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,62.4538987 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,42.65297345 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,57.12410245 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,73.39831306 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,37.06255763 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.2742079 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.269338504 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.22415083 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,100.5699329 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4405.195026 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,217.49 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.77142155 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,20.936155 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,64.05 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.817011 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.14794239 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000202494 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.08311846 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,242.6732941 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.58263474 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,103.082795 +NH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3204.87264 +NH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4168.456496 +NH,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.9443371 +NH,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.014868 +NH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +NH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,338.817297 +NH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,177.99045 +NH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1355.97 +NH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,16.60968897 +NH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.5853663 +NH,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1769.2817 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1033.6651 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,307.008508 +NH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,37.009371 +NH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.095712 +NH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,238.3553 +NH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,15.641401 +NH,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.05165 +NH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,16.88788 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,52.00673973 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.346656904 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,61.87597424 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,7.021913923 +NH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,2031.518 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,31.0220183 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.13887846 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.73377098 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,28.69714262 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.08156698 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,75.86 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.2849611 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,7.30126 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,16.01006773 +NH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,320.485264 +NH,PM2.5 Filterable,2A6_Other-minerals,,TON,2639.297867 +NH,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0.256554 +NH,PM2.5 Filterable,2D3d_Coating-application,,TON,0.014868 +NH,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,0 +NH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.291150488 +NH,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,114.92017 +NH,PM2.5 Filterable,3Dc_Other-farm,,TON,271.19 +NH,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,15.084634 +NH,PM2.5 Filterable,5C_Incineration,,TON,2.12663 +NH,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +NH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1363.939 +NH,PM2.5 Filterable,5C_Open-burning-residential,,TON,946.6207 +NH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,39.178529 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,38.794673 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.19426057 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,545.3542 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,19.7425339 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.05165 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,26.684606 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,48.86690439 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.532382458 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.617682715 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,63.21046565 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,13.34171457 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,76.84054536 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,21.87114241 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,211.2680222 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.09668795 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014352 +NH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,9.937901538 +NH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,2031.518 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,19.53727064 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,404.3224838 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,28.85706507 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,20.62750355 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,515.3290985 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,48.80324647 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,104.5707589 +NH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.410683494 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,21.9309754 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00716533 +NH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18.99296 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,32.7295399 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,50.80562152 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.00320718 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,37.11165188 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,66.35695531 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.95069283 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.24682094 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.269338504 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.88742268 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,92.52833595 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4403.897856 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,194.64 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.4561818 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,18.73697 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,64.05 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.04250163 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.416106594 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000202494 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.05062531 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,223.2596356 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.35515621 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,94.836088 +NH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,320.485264 +NH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2825.176006 +NH,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.9443371 +NH,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.014868 +NH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +NH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,338.746075 +NH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,177.99045 +NH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,271.19 +NH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,16.60968897 +NH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.5853663 +NH,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1363.939 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,946.6207 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,284.623749 +NH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,63.603701 +NH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.963818 +NH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,36292.9 +NH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,586.2 +NH,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,2.353638 +NH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,28.971611 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,17.44905201 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.05068284 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.122134887 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,13.35054802 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,363.3478889 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1053.876939 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,25.118178 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,62.56021086 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.129725098 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +NH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,31.1087248 +NH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.56463496 +NH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,119.5000493 +NH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.510381183 +NH,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6.148162407 +NH,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,14.98569778 +NH,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.274644394 +NH,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.976252448 +NH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.485694762 +NH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,10.27761992 +NH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001325119 +NH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,523.5361 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.514842776 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,970.7264428 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.44460896 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,663.2376868 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,84.41932189 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.67535352 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.091668096 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.047729114 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.860120757 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.37726558 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,130.2890995 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3892.83 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,5.5542935 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,374.73955 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.070369418 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.139909654 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.06540034 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.52294E-05 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.142942548 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.186288867 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.65276353 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.0887527 +NH,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,0.0110709 +NH,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.0000951 +NH,Sulfur Dioxide,2D3d_Coating-application,,TON,0.004695 +NH,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0 +NH,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NH,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,97.719426 +NH,Sulfur Dioxide,5C_Incineration,,TON,87.5818745 +NH,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +NH,Sulfur Dioxide,5C_Open-burning-residential,,TON,27.20176 +NH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,15.4416573 +NH,Volatile Organic Compounds,11C_Other-natural,,TON,90918.11 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,56.954344 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.068685 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,64.03181 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.546585 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.00453 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,36.741621 +NH,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,0.558648 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,66.17164085 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,327.8065238 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.29511546 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,4.197081968 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.858603808 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.953799246 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,17.91257958 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,272.3498364 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,111.5880642 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +NH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,84.45245884 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,45.79373407 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,10011.57211 +NH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,27.4763557 +NH,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,597.6494516 +NH,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,634.7038696 +NH,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,117.7215638 +NH,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,149.3470284 +NH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,226.9019658 +NH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,36.8062831 +NH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.661734446 +NH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.10065 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.31389205 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.23225983 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.571667448 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.893671559 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,51.33937914 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,53.33707068 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,726.5340641 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.183269179 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,15.78241412 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2496.712204 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4829.781195 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,65.16 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,1.60019985 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,6.157691 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,36.27338634 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27.98669517 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,86.1511214 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000680561 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.9822366 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9176.910769 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.3925644 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6041.706106 +NH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,105.32395 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,0 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1458.745412 +NH,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,18.355911 +NH,Volatile Organic Compounds,2B_Chemicals-other,,TON,20.970604 +NH,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,26.20125 +NH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,Other_Fuel,TON,4516.64 +NH,Volatile Organic Compounds,2D3d_Coating-application,,TON,4874.810872 +NH,Volatile Organic Compounds,2D3e_Degreasing,,TON,2760.43585 +NH,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,23.8003 +NH,Volatile Organic Compounds,2D3h_Printing,,TON,726.3314 +NH,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +NH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1692.84 +NH,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,21.847815 +NH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,115.3841973 +NH,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,53.562739 +NH,Volatile Organic Compounds,2I_Wood-processing,,TON,0.791501 +NH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,236.46 +NH,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,116.174936 +NH,Volatile Organic Compounds,5C_Incineration,,TON,1.493371865 +NH,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +NH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1207.2751 +NH,Volatile Organic Compounds,5C_Open-burning-residential,,TON,232.84684 +NH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,360.499468 +NH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,155.08 +NH,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.023004 +NH,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,41.25 +NH,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.083998 +NJ,Ammonia,11C_Other-natural,Other_Fuel,TON,1.37481407 +NJ,Ammonia,1A1a_Public-Electricity,biomass,TON,0.173 +NJ,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,7.2156 +NJ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,6.916 +NJ,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,2.8141 +NJ,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.08 +NJ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,226.8029 +NJ,Ammonia,1A1b_Pet-refining,natural_gas,TON,36.4365 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.953004153 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.278253709 +NJ,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.351204598 +NJ,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.185814063 +NJ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.46773452 +NJ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.131303295 +NJ,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.246739539 +NJ,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,4.972229855 +NJ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,62.73627404 +NJ,Ammonia,1A2c_Chemicals,heavy_oil,TON,0.06 +NJ,Ammonia,1A2c_Chemicals,natural_gas,TON,0.8656 +NJ,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NJ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,12.54181449 +NJ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.371053688 +NJ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,9.48088322 +NJ,Ammonia,1A3bii_Road-LDV,light_oil,TON,2965.381685 +NJ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.947187962 +NJ,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,87.34521708 +NJ,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,48.44626346 +NJ,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,23.47548065 +NJ,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,13.24188163 +NJ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.8617154 +NJ,Ammonia,1A3c_Rail,diesel_oil,TON,0.818112788 +NJ,Ammonia,1A3c_Rail,light_oil,TON,0.000273487 +NJ,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.279988735 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,50.35065883 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.206731567 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.947549737 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,48.43686279 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.324472245 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.860889001 +NJ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.818541681 +NJ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,9.955184734 +NJ,Ammonia,1A4bi_Residential-stationary,biomass,TON,323.6970963 +NJ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,142.79999 +NJ,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.79233 +NJ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,55.5505779 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.590493373 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.02491377 +NJ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.036171844 +NJ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.479554731 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.037747289 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,7.017453253 +NJ,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.004 +NJ,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.2742 +NJ,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0016 +NJ,Ammonia,2A6_Other-minerals,,TON,7.8651 +NJ,Ammonia,2B_Chemicals-other,,TON,0 +NJ,Ammonia,2C_Iron-steel-alloy,,TON,1.8934 +NJ,Ammonia,2C3_Aluminum-production,,TON,0.1218 +NJ,Ammonia,2C5_Lead-production,,TON,0.0025 +NJ,Ammonia,2C6_Zinc-production,,TON,0.007 +NJ,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.0323 +NJ,Ammonia,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0638 +NJ,Ammonia,2D3d_Coating-application,,TON,6.2457 +NJ,Ammonia,2D3h_Printing,,TON,0.2314 +NJ,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.7115 +NJ,Ammonia,2H2_Food-and-beverage,,TON,17.791 +NJ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1636.4542 +NJ,Ammonia,3B1a_Cattle-dairy,,TON,462.2964044 +NJ,Ammonia,3B1b_Cattle-non-dairy,,TON,117.796843 +NJ,Ammonia,3B2_Manure-sheep,,TON,51.9261856 +NJ,Ammonia,3B3_Manure-swine,,TON,60.84107482 +NJ,Ammonia,3B4_Manure-other,,TON,5290.524319 +NJ,Ammonia,3B4_Manure-poultry,,TON,799.3428098 +NJ,Ammonia,3B4d_Manure-goats,,TON,74.2472898 +NJ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1362.053763 +NJ,Ammonia,3F_Ag-res-on-field,,TON,29.18126675 +NJ,Ammonia,5A_Solid-waste-disposal,,TON,58.7239 +NJ,Ammonia,5B_Compost-biogas,Other_Fuel,TON,1336.79796 +NJ,Ammonia,5C_Incineration,,TON,4.4175 +NJ,Ammonia,5C_Incineration,biomass,TON,14.3664 +NJ,Ammonia,5D1_Wastewater-domestic,,TON,52.868443 +NJ,Ammonia,5D2_Wastewater-industrial,biomass,TON,0 +NJ,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,0.3091 +NJ,Ammonia,6A_Other-commertial,Other_Fuel,TON,4146.3461 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,362150.4337 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,381438.9134 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19863.41257 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1542471.927 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,30505.79064 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.4355475 +NJ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,335052.4368 +NJ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,34694966.38 +NJ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,256436.5612 +NJ,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1639534.003 +NJ,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4221552.715 +NJ,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,766800.5589 +NJ,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,820874.723 +NJ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,143183.1466 +NJ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,414.03806 +NJ,Carbon Dioxide,1A3c_Rail,light_oil,TON,21.0655518 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,285400.7643 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,399237.2493 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17528.10326 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,100593.7272 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,726489.2781 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,72609.02508 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1809.318912 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.501354427 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4421.535 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,95716.57078 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,127799.0375 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,470729.19 +NJ,Carbon Monoxide,11C_Other-natural,,TON,13847.9802 +NJ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,13.91 +NJ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,180.7689 +NJ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1075.49 +NJ,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,4.365 +NJ,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.141 +NJ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2380.1954 +NJ,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,830.9544 +NJ,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.275 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3431.407143 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,26444.76853 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1600.772986 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,17.26958102 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2.771430392 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,222.1527078 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,5.505883998 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.9676643 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,32.76102868 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1339.207643 +NJ,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0.096 +NJ,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,7.9385 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.09 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.06 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.76 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7374.515557 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8188.485136 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.64109566 +NJ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6178.785676 +NJ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1191.696955 +NJ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,517722.0182 +NJ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,914.7642862 +NJ,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,47100.14997 +NJ,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,10127.92235 +NJ,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,3145.701867 +NJ,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2079.563278 +NJ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7530.857716 +NJ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,263.9812678 +NJ,Carbon Monoxide,1A3c_Rail,light_oil,TON,5.975388447 +NJ,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1711.080312 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.05926685 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,797.5982719 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.014977182 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,54.53576908 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.222580636 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7791.235772 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1726.621765 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,112296.5107 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,453.1791636 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,477.9867599 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,232178.013 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,40893.99244 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,714.00009 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,5.1449989 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4662.44632 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,378.8133422 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,592.4141987 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.824895043 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,50.701598 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,23213.20016 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,257.2570001 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,70887.83578 +NJ,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.06 +NJ,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.2689 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,29.808 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.6845 +NJ,Carbon Monoxide,2A6_Other-minerals,,TON,405.6614 +NJ,Carbon Monoxide,2B_Chemicals-other,,TON,350.513 +NJ,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1087.64 +NJ,Carbon Monoxide,2C3_Aluminum-production,,TON,7.464 +NJ,Carbon Monoxide,2C5_Lead-production,,TON,0.076 +NJ,Carbon Monoxide,2C6_Zinc-production,,TON,1.186 +NJ,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,5.2046 +NJ,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,11.51 +NJ,Carbon Monoxide,2D3d_Coating-application,,TON,24.6906 +NJ,Carbon Monoxide,2D3h_Printing,,TON,6.8829 +NJ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,57.0655 +NJ,Carbon Monoxide,2H2_Food-and-beverage,,TON,857.776643 +NJ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,486.9513 +NJ,Carbon Monoxide,3F_Ag-res-on-field,,TON,1715.197301 +NJ,Carbon Monoxide,5A_Solid-waste-disposal,,TON,200.4547 +NJ,Carbon Monoxide,5C_Incineration,,TON,139.8947442 +NJ,Carbon Monoxide,5C_Incineration,biomass,TON,231.5362247 +NJ,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3098.767 +NJ,Carbon Monoxide,5C_Open-burning-residential,,TON,90.28285 +NJ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,79.7502145 +NJ,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,5.8967 +NJ,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0 +NJ,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.4277 +NJ,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.649876465 +NJ,Methane,1A3bii_Road-LDV,light_oil,TON,2217.189815 +NJ,Methane,1A3biii_Road-bus,diesel_oil,TON,2.429829891 +NJ,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,182.68358 +NJ,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,130.7364665 +NJ,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,17.59603206 +NJ,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10.11577111 +NJ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,40.74535644 +NJ,Nitrogen Oxides,11C_Other-natural,,TON,1565.929 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,177.09 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,387.1064 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,6755.852 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,65.335 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.404 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3939.6497 +NJ,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1719.9911 +NJ,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.107 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3196.920996 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4156.906082 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,279.0203863 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,19.53227757 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3.372561946 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1302.218325 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5.764548142 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,379.9524151 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,259.1032327 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5735.058267 +NJ,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,3.831 +NJ,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,25.8839 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.37 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.25 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.59 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,14215.43765 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,170.3551204 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.136710315 +NJ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2938.848721 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2056.768191 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,59574.01084 +NJ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2304.285495 +NJ,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4975.565801 +NJ,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,36301.52066 +NJ,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,5150.492199 +NJ,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6545.778009 +NJ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,299.252959 +NJ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,2003.429094 +NJ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.10295743 +NJ,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11160.49684 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.045277026 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2698.627066 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.014825221 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1039.96367 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,47.73110925 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16732.04826 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2938.024626 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2156.344221 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,126.0544931 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1026.474623 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2851.538165 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1287.809824 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,5140.7991 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,37.044019 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,21604.3345 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,755.7112644 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,9.753274232 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.183690374 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,48.861764 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,254.2053513 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1527.022703 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2890.450301 +NJ,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.3 +NJ,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.3201 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,23.6293 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,14.9048 +NJ,Nitrogen Oxides,2A6_Other-minerals,,TON,1236.5437 +NJ,Nitrogen Oxides,2B_Chemicals-other,,TON,80.1588 +NJ,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,153.964 +NJ,Nitrogen Oxides,2C3_Aluminum-production,,TON,17.294 +NJ,Nitrogen Oxides,2C5_Lead-production,,TON,0.091 +NJ,Nitrogen Oxides,2C6_Zinc-production,,TON,0.706 +NJ,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,22.9164 +NJ,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,6.3 +NJ,Nitrogen Oxides,2D3d_Coating-application,,TON,18.2034 +NJ,Nitrogen Oxides,2D3h_Printing,,TON,10.2182 +NJ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,5.1123 +NJ,Nitrogen Oxides,2H2_Food-and-beverage,,TON,17.9934 +NJ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,552.8323 +NJ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0 +NJ,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,49.6374 +NJ,Nitrogen Oxides,5C_Incineration,,TON,1151.517843 +NJ,Nitrogen Oxides,5C_Incineration,biomass,TON,1773.409442 +NJ,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,91.67947 +NJ,Nitrogen Oxides,5C_Open-burning-residential,,TON,12.7335291 +NJ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,8.06440924 +NJ,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.7363 +NJ,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +NJ,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.121 +NJ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.272453003 +NJ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1844.032269 +NJ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.669749269 +NJ,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,106.2051482 +NJ,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5.38715885 +NJ,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,3.254634775 +NJ,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.702931411 +NJ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.281825587 +NJ,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,4.48742855 +NJ,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,23.61560553 +NJ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1731.556773 +NJ,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,15.26372451 +NJ,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01 +NJ,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,386.333494 +NJ,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,314.1283426 +NJ,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.737544276 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.356405525 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,17.48143084 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1.754635953 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.592245463 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2137.322994 +NJ,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0.458186 +NJ,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,2.212706898 +NJ,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.34195 +NJ,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0038 +NJ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,38475.24097 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.043662249 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.76779365 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.066481386 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.70970017 +NJ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,160.55529 +NJ,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.800100075 +NJ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.53740955 +NJ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,20.19058603 +NJ,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0645652 +NJ,PM10 Filterable,2A2_Lime-production,,TON,0.0173937 +NJ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,281.8712684 +NJ,PM10 Filterable,2A6_Other-minerals,,TON,3447.269561 +NJ,PM10 Filterable,2B_Chemicals-other,,TON,22.68310019 +NJ,PM10 Filterable,2C_Iron-steel-alloy,,TON,21.97239023 +NJ,PM10 Filterable,2C3_Aluminum-production,,TON,2.4409349 +NJ,PM10 Filterable,2C5_Lead-production,,TON,0.005101 +NJ,PM10 Filterable,2C6_Zinc-production,,TON,0.389596 +NJ,PM10 Filterable,2C7_Other-metal,,TON,7.877206578 +NJ,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,8.286979602 +NJ,PM10 Filterable,2D3d_Coating-application,,TON,0.010603304 +NJ,PM10 Filterable,2D3h_Printing,,TON,0.01215 +NJ,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,18.13283093 +NJ,PM10 Filterable,2H2_Food-and-beverage,,TON,26.59054671 +NJ,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,552.9359029 +NJ,PM10 Filterable,2I_Wood-processing,,TON,0.17421099 +NJ,PM10 Filterable,3Dc_Other-farm,,TON,248.986214 +NJ,PM10 Filterable,5A_Solid-waste-disposal,,TON,37.971991 +NJ,PM10 Filterable,5C_Incineration,,TON,12.23853528 +NJ,PM10 Filterable,5C_Incineration,biomass,TON,9.35784259 +NJ,PM10 Filterable,5C_Open-burning-land-clearing,,TON,311.7099 +NJ,PM10 Filterable,5C_Open-burning-residential,,TON,4.252188 +NJ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,10.024741 +NJ,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,2.2616885 +NJ,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +NJ,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.0645652 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,4.8697 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,31.7836 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1938.153 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,17.8682 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.13 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,761.7438 +NJ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,520.0553 +NJ,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,242.3232699 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38.77566402 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.497119928 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.389929323 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2.67672679 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,105.3929599 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.190985634 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,31.34729458 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,14.83957666 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2360.904538 +NJ,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.614 +NJ,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,3.5703 +NJ,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.41 +NJ,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1168.228028 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,47.16624482 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +NJ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,152.5366011 +NJ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,38475.24097 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,131.6554802 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3472.346929 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,147.3439054 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,171.0068371 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2125.441166 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,319.9527668 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,425.2318838 +NJ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.20402554 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,62.25749043 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.002843125 +NJ,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,618.4874917 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.083082965 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,330.6307714 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.016724493 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,116.4865229 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,5.046982776 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,162.7809965 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,299.8473334 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,107.4132055 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.187033126 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,85.90472307 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,728.5979647 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5765.976759 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,217.05602 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.5640803 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,58.8505929 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,69.5307367 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.352002413 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000947782 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.2864268 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,212.0373378 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.19649089 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,423.9889296 +NJ,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.1 +NJ,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.024 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.8413 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.4915 +NJ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.0226 +NJ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,281.8712684 +NJ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3509.79387 +NJ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,32.06979506 +NJ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,74.5735 +NJ,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,11.2283 +NJ,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0159 +NJ,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.754 +NJ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,13.4065 +NJ,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,9.936 +NJ,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.4803 +NJ,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.2949 +NJ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,33.3996 +NJ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2306.692358 +NJ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,893.4499542 +NJ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.3255 +NJ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,248.986214 +NJ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,209.461891 +NJ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,86.0953 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,,TON,80.08194984 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,211.9659273 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,311.7099 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,19.8309241 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.584382 +NJ,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,3.8677 +NJ,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0 +NJ,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.1 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,4.48742855 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,20.21218162 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1704.886773 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,11.89076451 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,380.633654 +NJ,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,271.7624857 +NJ,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.736486602 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.353071436 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.29671398 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1.754614529 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.103153508 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2125.451177 +NJ,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0.079186 +NJ,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,2.169706978 +NJ,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.34195 +NJ,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0038 +NJ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1286.346858 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.026055138 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.18722932 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.770971471 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.03947557 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,123.389815 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.64248017 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.9500466 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,11.10482229 +NJ,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0645652 +NJ,PM2.5 Filterable,2A2_Lime-production,,TON,0.0173937 +NJ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,56.3742511 +NJ,PM2.5 Filterable,2A6_Other-minerals,,TON,659.0887513 +NJ,PM2.5 Filterable,2B_Chemicals-other,,TON,19.62986236 +NJ,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,19.90752728 +NJ,PM2.5 Filterable,2C3_Aluminum-production,,TON,2.4409349 +NJ,PM2.5 Filterable,2C5_Lead-production,,TON,0.004923871 +NJ,PM2.5 Filterable,2C6_Zinc-production,,TON,0.389596 +NJ,PM2.5 Filterable,2C7_Other-metal,,TON,3.99893337 +NJ,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,8.237252634 +NJ,PM2.5 Filterable,2D3d_Coating-application,,TON,0.001481304 +NJ,PM2.5 Filterable,2D3h_Printing,,TON,0.00665 +NJ,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,10.81513366 +NJ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,24.54284855 +NJ,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,277.1306759 +NJ,PM2.5 Filterable,2I_Wood-processing,,TON,0.164410993 +NJ,PM2.5 Filterable,3Dc_Other-farm,,TON,49.7972868 +NJ,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,12.74748833 +NJ,PM2.5 Filterable,5C_Incineration,,TON,11.01673568 +NJ,PM2.5 Filterable,5C_Incineration,biomass,TON,9.00739125 +NJ,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,240.2974 +NJ,PM2.5 Filterable,5C_Open-burning-residential,,TON,3.894114 +NJ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,7.7280737 +NJ,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,2.2616885 +NJ,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +NJ,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.0645652 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,4.8697 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,26.77017628 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1911.483 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,14.4952 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.12 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,756.04096 +NJ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,477.6891444 +NJ,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,234.9913485 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38.47260782 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.493033915 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.388859619 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2.673356264 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,85.27778325 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.190937894 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,22.42263916 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,10.00043877 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2348.640789 +NJ,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.235 +NJ,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,3.5273 +NJ,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.41 +NJ,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1133.181492 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.42033555 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +NJ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,59.60533595 +NJ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1286.346858 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,117.1795313 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1955.109055 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,129.7068549 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,88.07860338 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1895.985482 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,286.104319 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,372.505878 +NJ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.56551434 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,57.30663751 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.002620426 +NJ,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,572.299405 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.055881356 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,335.428325 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.00293084 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,67.58839314 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,4.90813945 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,151.2866439 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,290.8519266 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,99.09999814 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.187033126 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,83.32756034 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,670.3408104 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5760.960499 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,209.91588 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.5126307 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,48.6204745 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,67.4448075 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.083845399 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000947782 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.0678318 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,195.0759885 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.26061483 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,390.0697674 +NJ,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.1 +NJ,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.024 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.8044 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.4157 +NJ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.0226 +NJ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,56.3742511 +NJ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,721.6130612 +NJ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,28.97055833 +NJ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,72.50863705 +NJ,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,11.2283 +NJ,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.01572287 +NJ,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.754 +NJ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,9.528224397 +NJ,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,9.886273028 +NJ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.440278 +NJ,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.286 +NJ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,26.08190479 +NJ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2133.065747 +NJ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,617.2156939 +NJ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.3157 +NJ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,49.7972868 +NJ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,209.461891 +NJ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,54.35079763 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,74.20463078 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,211.6032946 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,240.2974 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,18.1609369 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.95562701 +NJ,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,3.5977 +NJ,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0 +NJ,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.1 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,15.449 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,92.5976 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,20653.8 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,210.37 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.09 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1774.1462 +NJ,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,785.6399 +NJ,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,84.65613425 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.872481049 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.533945563 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.111823765 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,7.932385841 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,934.7483587 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.07001488 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,306.8502138 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,195.5579712 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2441.306031 +NJ,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,3.405 +NJ,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.7643 +NJ,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.08 +NJ,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.24 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,335.572918 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.723534401 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000163837 +NJ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,278.7848277 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.683726971 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,747.6836644 +NJ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.831062172 +NJ,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,35.33174649 +NJ,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,46.45587023 +NJ,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,8.433448836 +NJ,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9.034027063 +NJ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.085614884 +NJ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,18.47786617 +NJ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000515616 +NJ,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6433.994152 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.002300032 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1459.102899 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.009300129 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,822.6227067 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,35.76262359 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,104.8122767 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,62.08803084 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9.62028907 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.387496484 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,21.88432035 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,17.49455988 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,106.3257152 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,4627.4741 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,33.345042 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,73.70233 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.79641499 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.043870043 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000164982 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.96179342 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.252060637 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.48533057 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10.8736206 +NJ,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,18.25 +NJ,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.002 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.9403 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.1482 +NJ,Sulfur Dioxide,2A6_Other-minerals,,TON,519.1722 +NJ,Sulfur Dioxide,2B_Chemicals-other,,TON,0 +NJ,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,59.6241 +NJ,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.1087 +NJ,Sulfur Dioxide,2C5_Lead-production,,TON,0.0005 +NJ,Sulfur Dioxide,2C6_Zinc-production,,TON,0.008 +NJ,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.4225 +NJ,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.4563 +NJ,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0635 +NJ,Sulfur Dioxide,2D3h_Printing,,TON,0.0123 +NJ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.8493 +NJ,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.0288 +NJ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,433.9485 +NJ,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,54.1132 +NJ,Sulfur Dioxide,5C_Incineration,,TON,105.0373213 +NJ,Sulfur Dioxide,5C_Incineration,biomass,TON,286.2336858 +NJ,Sulfur Dioxide,5C_Open-burning-residential,,TON,1.06460699 +NJ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.63992612 +NJ,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.3366 +NJ,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.41 +NJ,Volatile Organic Compounds,11C_Other-natural,,TON,125143.9 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.017 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,12.2239 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,50.719 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.388 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.01 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,272.2684 +NJ,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1618.5001 +NJ,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.2444 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,342.4510025 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1296.725291 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.696868618 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.104695786 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.513410942 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.46464417 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.283618944 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.610206107 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.306672991 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,271.3591097 +NJ,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.007 +NJ,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,3.6099 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0413 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1460.926026 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,589.249313 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002221584 +NJ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,461.1419282 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,266.9594161 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,45041.87514 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,148.1078797 +NJ,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2748.934232 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2856.734057 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,693.6094573 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,550.4762145 +NJ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1762.441585 +NJ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,92.9711629 +NJ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.234147208 +NJ,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,663.7703817 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.708587865 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,76.56019457 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.011338381 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.83927245 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.596471904 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,626.9436891 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,431.5181639 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,5777.993765 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.484646556 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,120.7833529 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,17387.84902 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7851.512858 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,101.81642 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.73367712 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,606.6504909 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,73.35694428 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,42.2322448 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003191888 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.339463 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6777.576357 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,63.32775015 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,25732.48032 +NJ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.27 +NJ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,100.1411903 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,2674.323042 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,15969.08864 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,40.95812788 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4909.26633 +NJ,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +NJ,Volatile Organic Compounds,2A6_Other-minerals,,TON,122.7534 +NJ,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +NJ,Volatile Organic Compounds,2B_Chemicals-other,,TON,541.2587 +NJ,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,206.7621 +NJ,Volatile Organic Compounds,2C3_Aluminum-production,,TON,12.5588 +NJ,Volatile Organic Compounds,2C5_Lead-production,,TON,1.2975 +NJ,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.078 +NJ,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +NJ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,26608.7385 +NJ,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,68.195903 +NJ,Volatile Organic Compounds,2D3d_Coating-application,,TON,28417.65586 +NJ,Volatile Organic Compounds,2D3e_Degreasing,,TON,4099.3987 +NJ,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,1308.26452 +NJ,Volatile Organic Compounds,2D3h_Printing,,TON,3562.6964 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,150.3803989 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2325.749191 +NJ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,90.0045 +NJ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1382.802956 +NJ,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2569.8689 +NJ,Volatile Organic Compounds,2I_Wood-processing,,TON,0.5755 +NJ,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.72 +NJ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1175.681419 +NJ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,245.5015498 +NJ,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,518.39162 +NJ,Volatile Organic Compounds,5C_Incineration,,TON,14.68184383 +NJ,Volatile Organic Compounds,5C_Incineration,biomass,TON,25.58069318 +NJ,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,212.6964 +NJ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,4.465086 +NJ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,17.7118793 +NJ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,146.210611 +NJ,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,100.9770335 +NJ,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,2.9502 +NJ,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,17.390203 +NJ,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.714 +NM,Ammonia,1A1a_Public-Electricity,hard_coal,TON,206.7908 +NM,Ammonia,1A1a_Public-Electricity,natural_gas,TON,121.972184 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.723063728 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.170401737 +NM,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,8 +NM,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,73.29479931 +NM,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.451763863 +NM,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.101729002 +NM,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.033321757 +NM,Ammonia,1A3bii_Road-LDV,light_oil,TON,1025.915562 +NM,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.56966372 +NM,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,34.15586658 +NM,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,43.36787712 +NM,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,7.461447379 +NM,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.45239818 +NM,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.646708817 +NM,Ammonia,1A3c_Rail,diesel_oil,TON,11.57361176 +NM,Ammonia,1A3c_Rail,light_oil,TON,0.004985057 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.00011 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.293535 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.613605466 +NM,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.121811953 +NM,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.766263746 +NM,Ammonia,1A4bi_Residential-stationary,biomass,TON,120.2314863 +NM,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.065277011 +NM,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.32004004 +NM,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.083041331 +NM,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,306.5375045 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.02702621 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.030311394 +NM,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.007831481 +NM,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.661024151 +NM,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.101455593 +NM,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.686115402 +NM,Ammonia,3B1a_Cattle-dairy,,TON,22952.80382 +NM,Ammonia,3B1b_Cattle-non-dairy,,TON,6538.717715 +NM,Ammonia,3B2_Manure-sheep,,TON,442.843764 +NM,Ammonia,3B3_Manure-swine,,TON,14.00604216 +NM,Ammonia,3B4_Manure-other,,TON,720.60912 +NM,Ammonia,3B4_Manure-poultry,,TON,977.3683874 +NM,Ammonia,3B4d_Manure-goats,,TON,248.324604 +NM,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7049.970408 +NM,Ammonia,5D1_Wastewater-domestic,,TON,7.4935949 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,88982.5265 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47850.92961 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9137.994115 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,424512.9353 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,8361.523078 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.4785161 +NM,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,101911.0805 +NM,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10626358.27 +NM,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,110757.4707 +NM,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,577624.0328 +NM,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3516738.883 +NM,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,232099.455 +NM,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,653744.0619 +NM,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,57479.82536 +NM,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7872.1989 +NM,Carbon Dioxide,1A3c_Rail,light_oil,TON,384.8113024 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36040.52273 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,50392.29808 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2267.265987 +NM,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,14969.91358 +NM,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,128890.7974 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,126268.4227 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2252.997133 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,14.09432279 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,957.298 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,41746.41737 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12494.30166 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46024.5196 +NM,Carbon Monoxide,11C_Other-natural,,TON,260150.802 +NM,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,2.103683935 +NM,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,17105.711 +NM,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1011.670214 +NM,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,912.423 +NM,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,2055.1825 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,805.8613152 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6240.096499 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,410.4169278 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,276.7895358 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.331664109 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.025112266 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,14593.34178 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0343 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0219 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2038.127828 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2398.850173 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.213698278 +NM,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3456.296998 +NM,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,373.5024012 +NM,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,266297.1814 +NM,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,416.023546 +NM,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,22970.35948 +NM,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6809.360084 +NM,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,992.913944 +NM,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1452.046212 +NM,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3483.625205 +NM,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3748.667502 +NM,Carbon Monoxide,1A3c_Rail,light_oil,TON,121.5727496 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,91.73639067 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.69198318 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.525706885 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.32004517 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,218.0059691 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,15268.43166 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,57.93287795 +NM,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,71.14146264 +NM,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,44545.719 +NM,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,14303.19039 +NM,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.32638537 +NM,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,44.0055 +NM,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.41520719 +NM,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,789.2891234 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,692.8168089 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,715.0147866 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.550618624 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.976796 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,9602.705348 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.15079564 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7461.04832 +NM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,5.6 +NM,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,10.32229 +NM,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,847.963 +NM,Carbon Monoxide,2A1_Cement-production,,TON,192.821 +NM,Carbon Monoxide,2A6_Other-minerals,,TON,106.729534 +NM,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.1759503 +NM,Carbon Monoxide,2C7a_Copper-production,,TON,0 +NM,Carbon Monoxide,2D3d_Coating-application,,TON,0 +NM,Carbon Monoxide,2H2_Food-and-beverage,,TON,214.2489449 +NM,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.9731748 +NM,Carbon Monoxide,3F_Ag-res-on-field,,TON,180.5 +NM,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,2.98 +NM,Carbon Monoxide,5C_Incineration,biomass,TON,5.427080247 +NM,Carbon Monoxide,5C_Open-burning-industrial,,TON,2.198466 +NM,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,15016.01621 +NM,Carbon Monoxide,5C_Open-burning-residential,,TON,1843.33504 +NM,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,80.870108 +NM,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.797367008 +NM,Methane,1A3bii_Road-LDV,light_oil,TON,1072.402429 +NM,Methane,1A3biii_Road-bus,diesel_oil,TON,1.196940728 +NM,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,90.151412 +NM,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,108.3636361 +NM,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,3.926742057 +NM,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10.39779837 +NM,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.47590639 +NM,Nitrogen Oxides,11C_Other-natural,,TON,29605.2592 +NM,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,9.524844655 +NM,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,62841.8 +NM,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,6469.27115 +NM,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,535.585 +NM,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,448.2364 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,874.3974547 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,448.8081563 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,54.66556072 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,251.371973 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.59595191 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.000652759 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,27632.00653 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1372 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.025842 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3916.895735 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,43.47840081 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045570119 +NM,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,492.9377513 +NM,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,620.7213128 +NM,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,33661.40147 +NM,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1221.955717 +NM,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2524.250244 +NM,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,28544.91571 +NM,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1558.716074 +NM,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4896.016981 +NM,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,180.6443991 +NM,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,25290.8754 +NM,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.634753074 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,33.79387492 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.883333592 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065971168 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,99.33167267 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,371.0146322 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,250.3379231 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16.0653536 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,152.7476421 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,461.9717585 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,243.1461476 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.174986685 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,1.45618152 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.49474487 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2065.065255 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1352.822761 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,12.77498468 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.345406438 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.579603 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,85.2043479 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,149.2872812 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,255.4399283 +NM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.4 +NM,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.669621 +NM,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,379.469 +NM,Nitrogen Oxides,2A1_Cement-production,,TON,684.0835 +NM,Nitrogen Oxides,2A6_Other-minerals,,TON,88.5606705 +NM,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,0.57351 +NM,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,10.29011015 +NM,Nitrogen Oxides,2C7a_Copper-production,,TON,0 +NM,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +NM,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NM,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1.172524751 +NM,Nitrogen Oxides,3F_Ag-res-on-field,,TON,7.6 +NM,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,1.3 +NM,Nitrogen Oxides,5C_Incineration,biomass,TON,6.461762405 +NM,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.313041 +NM,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,444.261201 +NM,Nitrogen Oxides,5C_Open-burning-residential,,TON,130.117794 +NM,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.594229 +NM,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.004991115 +NM,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.349271686 +NM,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,647.2603713 +NM,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.258151866 +NM,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,41.61295926 +NM,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.44753044 +NM,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.900614496 +NM,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.161102393 +NM,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.772503097 +NM,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.384753959 +NM,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2010.2031 +NM,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,63.89190399 +NM,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,38.36020602 +NM,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.28360068 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,46.45486704 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.080749731 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.0295158 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,220.1251971 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0245203 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0149796 +NM,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,725450.5916 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,75.69222099 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.369054769 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.007442455 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.144134553 +NM,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.070499176 +NM,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.99212517 +NM,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.089684712 +NM,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.945066401 +NM,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,61.2142 +NM,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.833021 +NM,PM10 Filterable,2A1_Cement-production,,TON,809.6508565 +NM,PM10 Filterable,2A5b_Construction-and-demolition,,TON,39581.7643 +NM,PM10 Filterable,2A6_Other-minerals,,TON,12298.51749 +NM,PM10 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,0.000179417 +NM,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,22.49800765 +NM,PM10 Filterable,2C7a_Copper-production,,TON,0.0875735 +NM,PM10 Filterable,2D3d_Coating-application,,TON,0 +NM,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,5.4692265 +NM,PM10 Filterable,2H2_Food-and-beverage,,TON,8.342033522 +NM,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,109.4085374 +NM,PM10 Filterable,3Dc_Other-farm,,TON,23587.27 +NM,PM10 Filterable,5A_Solid-waste-disposal,,TON,121.753633 +NM,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,7.027965 +NM,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1510.486683 +NM,PM10 Filterable,5C_Open-burning-residential,,TON,824.07907 +NM,PM10 Filterable,5C_Open-burning-yard-waste,,TON,13.39171 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.614501843 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3519.968 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,209.627885 +NM,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,91.5003 +NM,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,18.881 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,53.85463101 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.48332767 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.182727202 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,106.9934105 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.090613396 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.031627612 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.017E-05 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,399.1562051 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0294 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03942 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,322.6511789 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,12.93015749 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +NM,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,78.27197906 +NM,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,726429.7364 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,41.62338557 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1012.451464 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,72.79938963 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,55.96713008 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1378.332674 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,104.1682601 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,269.261048 +NM,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.502799426 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,843.0225548 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.051902108 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,78.34107941 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.73609763 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.007986162 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.782728246 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,37.85929506 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.55819437 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.283235245 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.78726959 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,120.7756363 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2068.827802 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.155359394 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.998527115 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.197638489 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.23295058 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,127.1478692 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.213788502 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0017807 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.5772686 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,105.0957681 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.049944223 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,41.45435888 +NM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,81.5 +NM,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,17.9 +NM,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,871.138208 +NM,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,39581.7643 +NM,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12317.63356 +NM,PM10 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.4 +NM,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,0.00050547 +NM,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,26.35025675 +NM,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.131 +NM,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.269103557 +NM,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,10.85646 +NM,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,517.8511103 +NM,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,167.6012402 +NM,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,23587.27 +NM,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,24.7 +NM,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,152.665 +NM,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.579699579 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,15.2972 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1510.486683 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,824.07907 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.39171 +NM,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.00374 +NM,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.249324842 +NM,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,886.1637 +NM,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,54.44129399 +NM,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,21.46380909 +NM,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.44598318 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,39.94848902 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.047407083 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.01920889 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,205.7886503 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0147 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0140434 +NM,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,74135.63681 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,65.10211943 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.1635699 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003453677 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.132029071 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.054179897 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.608076425 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.068924346 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.169785002 +NM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,50.7947 +NM,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.1563132 +NM,PM2.5 Filterable,2A1_Cement-production,,TON,64.40539648 +NM,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3958.17643 +NM,PM2.5 Filterable,2A6_Other-minerals,,TON,1681.402308 +NM,PM2.5 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,0.000159915 +NM,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,6.47735197 +NM,PM2.5 Filterable,2C7a_Copper-production,,TON,0.054395937 +NM,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +NM,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.7979502 +NM,PM2.5 Filterable,2H2_Food-and-beverage,,TON,8.23483276 +NM,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,105.5293462 +NM,PM2.5 Filterable,3Dc_Other-farm,,TON,4717.3386 +NM,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +NM,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,2.3965649 +NM,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1164.433753 +NM,PM2.5 Filterable,5C_Open-burning-residential,,TON,754.68301 +NM,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,10.3237146 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.479072723 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2395.923 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,167.522505 +NM,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,74.60390377 +NM,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,18.0433815 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,52.22382326 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.325069503 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.181759695 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,75.2437693 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.057246262 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.021312397 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.00733E-05 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,384.7175038 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0195797 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0384838 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,312.9715844 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,11.9032427 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287041 +NM,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,18.39164858 +NM,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,73992.16781 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,37.55042958 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,599.9708998 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,65.87492393 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,32.65432985 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1255.337256 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,94.43174318 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,240.02055 +NM,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.535597399 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,776.6393641 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.047842564 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,67.75024298 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.34000227 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003994078 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.771812299 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36.72352405 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.5088312 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.283235245 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.40365387 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,111.1181867 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2066.428053 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.139040146 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.614476755 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.176878158 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.461861284 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,123.3334172 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.116695321 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0017807 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.5299498 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,96.68850213 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.958446361 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,38.1380233 +NM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,71.0806 +NM,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,17.2232922 +NM,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,125.8933482 +NM,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3958.17643 +NM,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1700.518379 +NM,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.4 +NM,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,0.000485968 +NM,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,10.32963402 +NM,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.097822437 +NM,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.921356324 +NM,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,6.18518217 +NM,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,517.7439741 +NM,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,163.7220522 +NM,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4717.3386 +NM,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,24.7 +NM,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,24.031565 +NM,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.579699579 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,7.6486 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1164.433753 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,754.68301 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,10.3237146 +NM,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.00187 +NM,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.646570682 +NM,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,21026.736 +NM,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1215.862946 +NM,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1060.5501 +NM,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,5877.2441 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.77395685 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.374619092 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.225074033 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,42.87512389 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.352987871 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.506010965 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.38011E-05 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,113.0394632 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00392 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00003942 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,92.35499211 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.249329608 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.46124E-05 +NM,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,56.22677728 +NM,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.119068262 +NM,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,539.8824702 +NM,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.217362996 +NM,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,29.34587635 +NM,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,38.26112245 +NM,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.552084356 +NM,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,7.107088744 +NM,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.919232476 +NM,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,261.4684879 +NM,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.011119992 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.783276271 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.615359944 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.018516035 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.004101552 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.97620519 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.84049748 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.524538724 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.050123759 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3.256727404 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.104698485 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,39.11384277 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.7808019 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,3.7204627 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,3.5375621 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.83519224 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27.47018478 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.063095252 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000309983 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.20823595 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.189876939 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.078168339 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.283753768 +NM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,20.2 +NM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3789.974 +NM,Sulfur Dioxide,2A1_Cement-production,,TON,23.2179 +NM,Sulfur Dioxide,2A6_Other-minerals,,TON,18.5243078 +NM,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.01191395 +NM,Sulfur Dioxide,2C7a_Copper-production,,TON,0 +NM,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +NM,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NM,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.23394414 +NM,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.14 +NM,Sulfur Dioxide,5C_Incineration,biomass,TON,0.977311663 +NM,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.1054286 +NM,Sulfur Dioxide,5C_Open-burning-residential,,TON,21.6862984 +NM,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.77661022 +NM,Volatile Organic Compounds,11C_Other-natural,,TON,1209491.04 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.356151455 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,413.5854 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,116.4530385 +NM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1961.526562 +NM,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1016.151523 +NM,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,242.1291 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.0410397 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,237.3530045 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.123698444 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,49.89744136 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.387340993 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.000841144 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3437.160816 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00392 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0438 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,404.3915847 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,169.5079817 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000740527 +NM,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,167.341705 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,83.44067079 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,23873.45631 +NM,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,60.09565019 +NM,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1448.924824 +NM,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1527.497161 +NM,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,218.4483929 +NM,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,333.1407788 +NM,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1270.32144 +NM,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1261.998758 +NM,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.93009413 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.604065751 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.423942107 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.084811888 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.372280154 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,54.48377058 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,795.3400812 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.189047317 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,17.97947074 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3365.813388 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2570.994468 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.045693931 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,1.60020105 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.058129008 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,108.4892623 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,133.6835826 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,37.00929321 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006001867 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.88747 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3431.278921 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.191351902 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2622.803599 +NM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,889.0307 +NM,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,660.5805202 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,362.7772759 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,12603.02687 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,12.75004275 +NM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,647.978 +NM,Volatile Organic Compounds,2A1_Cement-production,,TON,37.06366 +NM,Volatile Organic Compounds,2A6_Other-minerals,,TON,18.66507576 +NM,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,107.7957922 +NM,Volatile Organic Compounds,2B_Chemicals-other,,TON,35.57930055 +NM,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,1.801046864 +NM,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.09 +NM,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,8377.528345 +NM,Volatile Organic Compounds,2D3d_Coating-application,,TON,5571.259397 +NM,Volatile Organic Compounds,2D3e_Degreasing,,TON,359.3178 +NM,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,518.66198 +NM,Volatile Organic Compounds,2D3h_Printing,,TON,2.78655 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,82.02326589 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1555.533937 +NM,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,117.675888 +NM,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,17.65790094 +NM,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,849.062762 +NM,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,15.2 +NM,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,6.8628 +NM,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.040166162 +NM,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.0738609 +NM,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1030.684995 +NM,Volatile Organic Compounds,5C_Open-burning-residential,,TON,185.634747 +NM,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,15.0829272 +NM,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,37.6894411 +NM,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,22.58448329 +NM,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,17.7 +NV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,22.953743 +NV,Ammonia,1A1a_Public-Electricity,hard_coal,TON,47.04521 +NV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,204.36568 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.496408033 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.035424192 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.25 +NV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,7.70364 +NV,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.0043 +NV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.553 +NV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,10.39613157 +NV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.307386582 +NV,Ammonia,1A2g_Construction_and_Mining,natural_gas,TON,0 +NV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.851297118 +NV,Ammonia,1A3bii_Road-LDV,light_oil,TON,884.0189674 +NV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.183651287 +NV,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,18.49839222 +NV,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,12.0110307 +NV,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,4.336392887 +NV,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.459779389 +NV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.9156614 +NV,Ammonia,1A3c_Rail,diesel_oil,TON,3.468187787 +NV,Ammonia,1A3c_Rail,light_oil,TON,0.001369403 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.77191 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.05 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.5 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.359625784 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.75204855 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0 +NV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.392659421 +NV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.991406872 +NV,Ammonia,1A4bi_Residential-stationary,biomass,TON,92.92666044 +NV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.302640965 +NV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.12954 +NV,Ammonia,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.397455639 +NV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,133.1457619 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.656472985 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.018253557 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +NV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012712642 +NV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.896497824 +NV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.145830677 +NV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.986375277 +NV,Ammonia,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Ammonia,2A1_Cement-production,,TON,0 +NV,Ammonia,2A5b_Construction-and-demolition,,TON,0 +NV,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.12 +NV,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.3013 +NV,Ammonia,2D3a_Domestic-solvent-use,,TON,0 +NV,Ammonia,2D3d_Coating-application,,TON,0 +NV,Ammonia,2D3i_Other-solvent-use,,TON,0 +NV,Ammonia,2H2_Food-and-beverage,,TON,0 +NV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1.51083 +NV,Ammonia,3B1a_Cattle-dairy,,TON,1815.096708 +NV,Ammonia,3B1b_Cattle-non-dairy,,TON,2174.866734 +NV,Ammonia,3B2_Manure-sheep,,TON,239.23152 +NV,Ammonia,3B3_Manure-swine,,TON,20.9465916 +NV,Ammonia,3B4_Manure-other,,TON,247.50396 +NV,Ammonia,3B4_Manure-poultry,,TON,3.88975224 +NV,Ammonia,3B4d_Manure-goats,,TON,83.03856 +NV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,786.1223965 +NV,Ammonia,3Df_Use-of-pesticides,,TON,0 +NV,Ammonia,3F_Ag-res-on-field,,TON,0.00832 +NV,Ammonia,5A_Solid-waste-disposal,,TON,1.16 +NV,Ammonia,5C_Incineration,biomass,TON,0 +NV,Ammonia,5C_Open-burning-land-clearing,,TON,0 +NV,Ammonia,5C_Open-burning-yard-waste,,TON,0 +NV,Ammonia,5D1_Wastewater-domestic,,TON,75.41016364 +NV,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.00016 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,61083.70166 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,43196.34653 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2434.622355 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1278583.703 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25265.16847 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.196291952 +NV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,70628.54051 +NV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,9319795.107 +NV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,12755.02875 +NV,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,344866.9042 +NV,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1021771.348 +NV,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,145732.5456 +NV,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,210982.4161 +NV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,69423.66819 +NV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2156.7121 +NV,Carbon Dioxide,1A3c_Rail,light_oil,TON,105.802681 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,44155.19858 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,61769.49702 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2688.438932 +NV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,48254.99226 +NV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,292320.452 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,80708.91992 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1363.31618 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.201433571 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1553.95604 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,56552.28956 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17959.10799 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,66165.87002 +NV,Carbon Monoxide,11C_Other-natural,,TON,232964.179 +NV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,44.76902306 +NV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,851.988455 +NV,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,5.7550706 +NV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,814.6176587 +NV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,5.262366 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2655.28987 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3612.109274 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,222.9472691 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,217.8405154 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,291.7743396 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.101253906 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.031646905 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,106.9574502 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,13.45573 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,4.42 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6112.561797 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7233.541322 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.534245752 +NV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4785.152528 +NV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,282.4450153 +NV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,201269.5429 +NV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,52.58518424 +NV,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,13651.55297 +NV,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2182.384051 +NV,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,722.9408739 +NV,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,499.8559227 +NV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3701.085654 +NV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1134.16505 +NV,Carbon Monoxide,1A3c_Rail,light_oil,TON,33.23353403 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.257031342 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,76.7886948 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.334707376 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1414.66849 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,267.1184203 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18739.97673 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,69.7936105 +NV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,229.8086379 +NV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,98572.73183 +NV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,12140.76575 +NV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,11.60111186 +NV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,17.81175 +NV,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.087278215 +NV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,717.9793238 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,445.9007238 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,419.8707808 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.013269778 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.819874 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,13636.65922 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,36.15076201 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10595.18419 +NV,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.337584 +NV,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Carbon Monoxide,2A1_Cement-production,,TON,114.9586418 +NV,Carbon Monoxide,2A2_Lime-production,,TON,294.91539 +NV,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,0 +NV,Carbon Monoxide,2A6_Other-minerals,,TON,924.2866659 +NV,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,79.57869 +NV,Carbon Monoxide,2C_Iron-steel-alloy,Other_Fuel,TON,3.02296 +NV,Carbon Monoxide,2C3_Aluminum-production,,TON,0.138936 +NV,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,431.3226831 +NV,Carbon Monoxide,2D3a_Domestic-solvent-use,,TON,0 +NV,Carbon Monoxide,2D3d_Coating-application,,TON,11.5175 +NV,Carbon Monoxide,2D3i_Other-solvent-use,,TON,0 +NV,Carbon Monoxide,2H2_Food-and-beverage,,TON,458.8828673 +NV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,21.17902485 +NV,Carbon Monoxide,3Df_Use-of-pesticides,,TON,0 +NV,Carbon Monoxide,3F_Ag-res-on-field,,TON,48.11584 +NV,Carbon Monoxide,5A_Solid-waste-disposal,,TON,33.073883 +NV,Carbon Monoxide,5C_Incineration,,TON,1.450979148 +NV,Carbon Monoxide,5C_Incineration,biomass,TON,3.449261264 +NV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1671.37189 +NV,Carbon Monoxide,5C_Open-burning-residential,,TON,561.93933 +NV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,292.41028 +NV,Carbon Monoxide,5C_Other-open-burning,Other_Fuel,TON,4.34 +NV,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,288.08 +NV,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.000945 +NV,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.935920888 +NV,Methane,1A3bii_Road-LDV,light_oil,TON,722.9660601 +NV,Methane,1A3biii_Road-bus,diesel_oil,TON,0.15744986 +NV,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,51.03577069 +NV,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,29.77200403 +NV,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.919152465 +NV,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.152909106 +NV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.56616105 +NV,Nitrogen Oxides,11C_Other-natural,,TON,10548.7059 +NV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,1218.233207 +NV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,12139.241 +NV,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,14.8128296 +NV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3760.599498 +NV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,21.8665318 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,767.0599523 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,519.861118 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.99710173 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1025.855298 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,561.7185511 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,41.21916196 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.144049718 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,158.6767661 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.40504 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,1.87 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,11784.20248 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,127.4078894 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113925193 +NV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3018.243876 +NV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,476.3481146 +NV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,26820.85948 +NV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,142.0112888 +NV,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1438.121595 +NV,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,8805.393072 +NV,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1128.438496 +NV,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1660.605268 +NV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,170.9682731 +NV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8040.170602 +NV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.464068845 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.431548844 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,239.3581452 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.253538554 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1666.14027 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,454.5457937 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,301.0391538 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,19.435336 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,491.8452442 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,986.3636071 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,233.2476313 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,41.7639782 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.58940725 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,7.51420227 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1721.071009 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,868.1762036 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.276205042 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.225785752 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.1654228 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,121.9705856 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,214.5827468 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,373.6591858 +NV,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2.94173 +NV,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Nitrogen Oxides,2A1_Cement-production,,TON,1497.08425 +NV,Nitrogen Oxides,2A2_Lime-production,,TON,2001.144 +NV,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,0 +NV,Nitrogen Oxides,2A6_Other-minerals,,TON,2737.642532 +NV,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,162.9979 +NV,Nitrogen Oxides,2C_Iron-steel-alloy,Other_Fuel,TON,5.0068715 +NV,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.1655 +NV,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,157.6618908 +NV,Nitrogen Oxides,2D3a_Domestic-solvent-use,,TON,0 +NV,Nitrogen Oxides,2D3d_Coating-application,,TON,13.5055 +NV,Nitrogen Oxides,2D3i_Other-solvent-use,,TON,0 +NV,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,173.0031565 +NV,Nitrogen Oxides,3Df_Use-of-pesticides,,TON,0 +NV,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1.816064 +NV,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,20.7227625 +NV,Nitrogen Oxides,5C_Incineration,,TON,1.616147389 +NV,Nitrogen Oxides,5C_Incineration,biomass,TON,29.23095873 +NV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,49.4489381 +NV,Nitrogen Oxides,5C_Open-burning-residential,,TON,39.666298 +NV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.2045456 +NV,Nitrogen Oxides,5C_Other-open-burning,Other_Fuel,TON,2.68 +NV,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,14.528965 +NV,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,0.0072 +NV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.247947096 +NV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,545.6729863 +NV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.035749858 +NV,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,25.02829258 +NV,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.146120104 +NV,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.604394651 +NV,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.409215886 +NV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.089655374 +NV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,78.32130574 +NV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,583.3207452 +NV,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.110955342 +NV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,247.4734011 +NV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,4.421564931 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.37484596 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,84.44564162 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.829850654 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,40.10064587 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.1038699 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.68 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01473588 +NV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,35096.7865 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.975317454 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.773744758 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,58.03634406 +NV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.56685174 +NV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.401574 +NV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.341531586 +NV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.045872638 +NV,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,21.3619443 +NV,PM10 Filterable,2A1_Cement-production,,TON,84.7278663 +NV,PM10 Filterable,2A2_Lime-production,,TON,253.2108424 +NV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,125291.2786 +NV,PM10 Filterable,2A6_Other-minerals,,TON,58831.95435 +NV,PM10 Filterable,2B_Chemicals-other,,TON,42.59553123 +NV,PM10 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,2.46941889 +NV,PM10 Filterable,2C3_Aluminum-production,,TON,1.255525 +NV,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,452.1755717 +NV,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.128313673 +NV,PM10 Filterable,2D3d_Coating-application,,TON,2.37538998 +NV,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,0.00013 +NV,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.59007 +NV,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,19.402321 +NV,PM10 Filterable,2H2_Food-and-beverage,,TON,29.90514252 +NV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,669.9049556 +NV,PM10 Filterable,3Dc_Other-farm,,TON,602.593 +NV,PM10 Filterable,5A_Solid-waste-disposal,,TON,71.24677068 +NV,PM10 Filterable,5C_Incineration,,TON,0.090554 +NV,PM10 Filterable,5C_Incineration,biomass,TON,2.439474885 +NV,PM10 Filterable,5C_Open-burning-industrial,,TON,0.1037352 +NV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,168.12631 +NV,PM10 Filterable,5C_Open-burning-residential,,TON,250.17476 +NV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1.954401 +NV,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,62.9073 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,84.22076196 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,627.5237463 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.29240631 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,481.1372515 +NV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,6.854620457 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,47.32065373 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.884018251 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.411339056 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,112.6257834 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,402.7082499 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,6.535295685 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.010099596 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,76.20155122 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.522552 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.815323 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03831329 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,967.0789873 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.08313364 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717603 +NV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,135.6945476 +NV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,37039.23866 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,33.70747823 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1014.413124 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,9.086697057 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,39.24172883 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,472.452327 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,76.80752643 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,97.62273731 +NV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.143195542 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,260.5455148 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014264152 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.164275013 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,95.26189354 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.139268734 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,193.7181104 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,46.316428 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,16.61884934 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.335299543 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.28552801 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,309.9986213 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1714.386505 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.88210227 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.4041653 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.771742983 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,108.3468864 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,80.91928441 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.358132505 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001162632 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.5539729 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,146.3410031 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.383814596 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,59.59578817 +NV,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,21.3619443 +NV,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,91.1631098 +NV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,327.3101072 +NV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,127079.661 +NV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,59116.16481 +NV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,52.26220399 +NV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,9.0907777 +NV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.2994458 +NV,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,596.2765124 +NV,PM10 Primary (Filt + Cond),2D3a_Domestic-solvent-use,,TON,0 +NV,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,126.9927765 +NV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,12.61654398 +NV,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.00013 +NV,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0 +NV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,23.98089317 +NV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1019.06176 +NV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1161.661747 +NV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,602.593 +NV,PM10 Primary (Filt + Cond),3Df_Use-of-pesticides,,TON,0 +NV,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,9.979264 +NV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,78.5970881 +NV,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.139420936 +NV,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.779558689 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.1037352 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,168.12631 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,251.21976 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,46.252301 +NV,PM10 Primary (Filt + Cond),5C_Other-open-burning,Other_Fuel,TON,5.79 +NV,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,65.7773 +NV,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.011865 +NV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,32.88803602 +NV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,148.2642428 +NV,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.788953272 +NV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,117.4447163 +NV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,2.88850401 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.58812804 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,22.59123113 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.379572992 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,40.04051242 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.17504592 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.387342 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.013814932 +NV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4344.77358 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.825974496 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.074204516 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,30.50931295 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.74119215 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.246126 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.262473263 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.225232837 +NV,PM2.5 Filterable,2A1_Cement-production,,TON,34.97070579 +NV,PM2.5 Filterable,2A2_Lime-production,,TON,58.19865565 +NV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,12602.94148 +NV,PM2.5 Filterable,2A6_Other-minerals,,TON,7506.375411 +NV,PM2.5 Filterable,2B_Chemicals-other,,TON,18.59782734 +NV,PM2.5 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,2.201002861 +NV,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.25845832 +NV,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,174.711158 +NV,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.347681371 +NV,PM2.5 Filterable,2D3d_Coating-application,,TON,0.119618 +NV,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.728403433 +NV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,5.417872814 +NV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,511.4770211 +NV,PM2.5 Filterable,3Dc_Other-farm,,TON,120.511 +NV,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,19.51788105 +NV,PM2.5 Filterable,5C_Incineration,biomass,TON,1.671010819 +NV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,129.608457 +NV,PM2.5 Filterable,5C_Open-burning-residential,,TON,229.10761 +NV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,1.506654 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,40.7216831 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,202.9979139 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.012711781 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,361.8192457 +NV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,5.322613981 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,45.82576005 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.786283319 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.406620797 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,48.4704627 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,224.4265863 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.835820983 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.002739716 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,75.52387934 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.593727 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.522665 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.037392342 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,938.0667492 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,35.97919581 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717603 +NV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,68.02631421 +NV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4397.87109 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,30.18920757 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,572.0461128 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,8.086757665 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,22.31150333 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,426.7215043 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,69.37425421 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,86.10059426 +NV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.920256314 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,242.307706 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.013149151 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.973678276 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,76.09649894 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.10286022 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,188.4583966 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,44.92689418 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,15.33266736 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.335299543 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,40.04690191 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,285.2136566 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1697.431874 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.602316405 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.2487172 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.684881076 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,108.0537386 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,78.49182004 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.329487383 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001162632 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.4773543 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,134.6342475 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.252309706 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,54.82820376 +NV,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,21.3619443 +NV,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,20.63 +NV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,41.40573049 +NV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,137.1089175 +NV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,12989.21039 +NV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,7903.877172 +NV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,31.84908541 +NV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,8.82237366 +NV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.26792572 +NV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,315.0709978 +NV,PM2.5 Primary (Filt + Cond),2D3a_Domestic-solvent-use,,TON,0 +NV,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,6.724033226 +NV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,7.22264598 +NV,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.00013 +NV,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0 +NV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,20.43698956 +NV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,924.7712173 +NV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,955.9394299 +NV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,120.511 +NV,PM2.5 Primary (Filt + Cond),3Df_Use-of-pesticides,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,9.975696 +NV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,27.08243257 +NV,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.1397396 +NV,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.26225596 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.1037352 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,129.608457 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,230.06461 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,35.096654 +NV,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,Other_Fuel,TON,5.79 +NV,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,65.5773 +NV,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.0052 +NV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.079802832 +NV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,9113.3929 +NV,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.000350238 +NV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,70.69420793 +NV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,46.8467 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.6223281 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.483695426 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.170096118 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3255.900598 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,980.035248 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,39.19284014 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.501743366 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,10.70128577 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.508896 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.374 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,263.1338164 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.503326024 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000136531 +NV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,296.3241359 +NV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.776701439 +NV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,473.6590819 +NV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.140281455 +NV,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,17.52375191 +NV,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,11.22474303 +NV,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.605689973 +NV,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.31430474 +NV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.525874397 +NV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,78.14546561 +NV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001801983 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.048510871 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,642.1385443 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.300095206 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.79294059 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,8.713074987 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.240508179 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.059433165 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,10.05409165 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.861498534 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,316.8881997 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,140.6924616 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,4.6181 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,22.47762561 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,10.09748409 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.28183501 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.020198449 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00020237 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.250406468 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.011269666 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.424522236 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.323275029 +NV,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.01585602 +NV,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,21 +NV,Sulfur Dioxide,2A1_Cement-production,,TON,134.7426777 +NV,Sulfur Dioxide,2A2_Lime-production,,TON,207.93994 +NV,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,0 +NV,Sulfur Dioxide,2A6_Other-minerals,,TON,296.9167822 +NV,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.14236782 +NV,Sulfur Dioxide,2C_Iron-steel-alloy,Other_Fuel,TON,4.96791 +NV,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.000993 +NV,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,127.1126465 +NV,Sulfur Dioxide,2D3a_Domestic-solvent-use,,TON,0 +NV,Sulfur Dioxide,2D3d_Coating-application,,TON,0.012 +NV,Sulfur Dioxide,2D3i_Other-solvent-use,,TON,0 +NV,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,26.37925935 +NV,Sulfur Dioxide,3Df_Use-of-pesticides,,TON,0 +NV,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.272144 +NV,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,221.3137826 +NV,Sulfur Dioxide,5C_Incineration,,TON,0.008526353 +NV,Sulfur Dioxide,5C_Incineration,biomass,TON,12.79070988 +NV,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +NV,Sulfur Dioxide,5C_Open-burning-residential,,TON,6.5835494 +NV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.1733392 +NV,Sulfur Dioxide,5C_Other-open-burning,Other_Fuel,TON,0.06 +NV,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,8.849449 +NV,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.005355 +NV,Volatile Organic Compounds,11C_Other-natural,,TON,1078753.74 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.731797195 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,199.9926475 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.26139715 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,302.3373135 +NV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,77.33772148 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,128.6980974 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,167.4597162 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.865527912 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.60314893 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.235105723 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.188267064 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.001496982 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,13.43987718 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.71761 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,1.088 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1210.90835 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,521.6250511 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001851324 +NV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,421.4004666 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,59.35254746 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,22704.71547 +NV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,7.71570008 +NV,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,972.655797 +NV,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,507.1402532 +NV,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,149.2902366 +NV,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,118.9893261 +NV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2564.101983 +NV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,412.6070386 +NV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.326136758 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.03818281 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.02409505 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.023150357 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,135.3087923 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.75850926 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,998.5086172 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.228973984 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,58.08585817 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7050.28343 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3334.630051 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.64148765 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.6477 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.295218836 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,94.77921714 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,85.99656226 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,19.10389227 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003923711 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.6874846 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4750.959635 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.899076455 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3781.096405 +NV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,7.79452 +NV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,164.6433053 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,142.6030718 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3356.135649 +NV,Volatile Organic Compounds,2A1_Cement-production,,TON,56.3073988 +NV,Volatile Organic Compounds,2A2_Lime-production,,TON,86.12605 +NV,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,0 +NV,Volatile Organic Compounds,2A6_Other-minerals,,TON,179.1204444 +NV,Volatile Organic Compounds,2B_Chemicals-other,,TON,540.1507547 +NV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.0091025 +NV,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,40.02784125 +NV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13040.47468 +NV,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,3.804246 +NV,Volatile Organic Compounds,2D3d_Coating-application,,TON,8010.482348 +NV,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,3388.921 +NV,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1308.76755 +NV,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,1352.927456 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,269.5027365 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,396.6734678 +NV,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,5.1613901 +NV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,554.7025206 +NV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,404.593069 +NV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,136.8133269 +NV,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,8.15784 +NV,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,17.4097782 +NV,Volatile Organic Compounds,5C_Incineration,,TON,0.099597542 +NV,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.406627588 +NV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,114.721373 +NV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,56.590531 +NV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,31.510018 +NV,Volatile Organic Compounds,5C_Other-open-burning,Other_Fuel,TON,0.04 +NV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,3939.642327 +NV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,1.152414285 +NV,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,16.575709 +NV,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,5.264085 +NY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,32.9635666 +NY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,1140.88824 +NY,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,111.1119835 +NY,Ammonia,1A1a_Public-Electricity,light_oil,TON,1.61548 +NY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,373.277712 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.795075679 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.506426717 +NY,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,17.70231843 +NY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,64.25288802 +NY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,45.7502655 +NY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.85378534 +NY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,349.879205 +NY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,22.30458534 +NY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.659684796 +NY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,17.3299118 +NY,Ammonia,1A3bii_Road-LDV,light_oil,TON,5179.476346 +NY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,20.73727542 +NY,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,163.1549288 +NY,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,55.04865789 +NY,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,43.37757597 +NY,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,17.45535332 +NY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.64433652 +NY,Ammonia,1A3c_Rail,diesel_oil,TON,6.714695519 +NY,Ammonia,1A3c_Rail,light_oil,TON,0.002561854 +NY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8.269445099 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,240.3735211 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,84.17287235 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,79.34896889 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,97.67165142 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.004979645 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,10.46619333 +NY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.805966191 +NY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,14.10279529 +NY,Ammonia,1A4bi_Residential-stationary,biomass,TON,936.0446687 +NY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,535.2483785 +NY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,2.82499992 +NY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,20.8656026 +NY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,101.7407329 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.766215563 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.160706726 +NY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.080795039 +NY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,9.024062909 +NY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.735626729 +NY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,11.73695065 +NY,Ammonia,2A1_Cement-production,,TON,321.0802 +NY,Ammonia,2A6_Other-minerals,,TON,56.3113 +NY,Ammonia,2B_Chemicals-other,,TON,6.9996 +NY,Ammonia,2C_Iron-steel-alloy,,TON,330.21 +NY,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.36 +NY,Ammonia,2D3d_Coating-application,,TON,16.69485 +NY,Ammonia,2D3h_Printing,,TON,0.249 +NY,Ammonia,2H1_Pulp-and-paper,,TON,23.227 +NY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,3.0875 +NY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.556035 +NY,Ammonia,3B1a_Cattle-dairy,,TON,29749.19843 +NY,Ammonia,3B1b_Cattle-non-dairy,,TON,1140.716843 +NY,Ammonia,3B2_Manure-sheep,,TON,220.625064 +NY,Ammonia,3B3_Manure-swine,,TON,511.2854604 +NY,Ammonia,3B4_Manure-other,,TON,1141.18092 +NY,Ammonia,3B4_Manure-poultry,,TON,2615.961693 +NY,Ammonia,3B4d_Manure-goats,,TON,278.434332 +NY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,4223.181559 +NY,Ammonia,5C_Incineration,biomass,TON,34.8759 +NY,Ammonia,5D1_Wastewater-domestic,,TON,81.7881866 +NY,Ammonia,5D2_Wastewater-industrial,biomass,TON,27.0155 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,668435.349 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,675214.7485 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,34588.59887 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2622714.815 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,54614.48762 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,13.26527369 +NY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,631773.574 +NY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,62165884.03 +NY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1452702.264 +NY,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3169977.415 +NY,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4803982.595 +NY,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1472109.324 +NY,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1102007.802 +NY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,174193.587 +NY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3503.542326 +NY,Carbon Dioxide,1A3c_Rail,light_oil,TON,202.0284608 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,591873.2496 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,830697.9922 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36796.76094 +NY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,92664.05415 +NY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1001167.124 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,512690.5905 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,16285.08047 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,631.6244681 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8683.300698 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,455505.6674 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,187527.3712 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,735233.6782 +NY,Carbon Monoxide,11C_Other-natural,,TON,66942.1525 +NY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,441.1868525 +NY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,64.48249524 +NY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2083.0995 +NY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1189.91076 +NY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,4.695585259 +NY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,9862.018288 +NY,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.00475 +NY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.76151 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7647.788216 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,56397.97061 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3045.339528 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4707.372043 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,477.526972 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,415.214086 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,223.4861748 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,91.18724753 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4432.899467 +NY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,4.644358 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,13878.60489 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,24871.71225 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.176083745 +NY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13371.3515 +NY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2211.584697 +NY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,913965.948 +NY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,5821.975027 +NY,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,100319.9488 +NY,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,9949.743263 +NY,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,5784.859984 +NY,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2518.958323 +NY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9308.44233 +NY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2180.467467 +NY,Carbon Monoxide,1A3c_Rail,light_oil,TON,104.7366066 +NY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2982.104142 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7555.90602 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4492.218016 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2423.936924 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,543.865069 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,19.25312272 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2039.520427 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3705.644676 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,401171.9001 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1289.601801 +NY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,476.2979975 +NY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,520663.1166 +NY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,110987.0147 +NY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,3345.299815 +NY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2.49999964 +NY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,130.4100945 +NY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,8148.595016 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3788.010279 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6797.861972 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,60.70886079 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,120.2037753 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,112598.0899 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,379.4055573 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,132471.8418 +NY,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +NY,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,14.02984 +NY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.027 +NY,Carbon Monoxide,2A1_Cement-production,,TON,965.1535 +NY,Carbon Monoxide,2A6_Other-minerals,,TON,159.1171 +NY,Carbon Monoxide,2B_Chemicals-other,,TON,200.07076 +NY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,400.78725 +NY,Carbon Monoxide,2C3_Aluminum-production,,TON,36417.627 +NY,Carbon Monoxide,2D3d_Coating-application,,TON,14.51064 +NY,Carbon Monoxide,2D3e_Degreasing,,TON,0 +NY,Carbon Monoxide,2D3h_Printing,,TON,0 +NY,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.0965 +NY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,395.09 +NY,Carbon Monoxide,2H2_Food-and-beverage,,TON,1852.904108 +NY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1.54028 +NY,Carbon Monoxide,3F_Ag-res-on-field,,TON,42 +NY,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,2080.866862 +NY,Carbon Monoxide,5C_Incineration,,TON,0.106290119 +NY,Carbon Monoxide,5C_Incineration,biomass,TON,666.661472 +NY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,31569.3012 +NY,Carbon Monoxide,5C_Open-burning-residential,,TON,8898.5045 +NY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1141.523221 +NY,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.6625 +NY,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,8.082 +NY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.673 +NY,Methane,1A3bii_Road-LDV,diesel_oil,TON,16.7789237 +NY,Methane,1A3bii_Road-LDV,light_oil,TON,4075.160893 +NY,Methane,1A3biii_Road-bus,diesel_oil,TON,13.91626461 +NY,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,449.3375021 +NY,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,184.3969699 +NY,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,39.76272311 +NY,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,19.20218127 +NY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,59.54248305 +NY,Nitrogen Oxides,11C_Other-natural,,TON,7612.61646 +NY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,381.752015 +NY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,818.0772088 +NY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,19388.9045 +NY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,4978.5773 +NY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,398.85114 +NY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,10252.49231 +NY,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.019 +NY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,3.04605 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6558.071554 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9156.687335 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,622.9848488 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,929.3423663 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2408.212943 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5576.891595 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1288.973408 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,62.45982775 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6312.765299 +NY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,4.55428 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,25868.91902 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,312.7972187 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.263468445 +NY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,7368.493134 +NY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3796.335291 +NY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,96543.29859 +NY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,18714.7586 +NY,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9962.086918 +NY,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,39635.62816 +NY,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,9573.389053 +NY,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8460.691353 +NY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,356.7615879 +NY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15869.9167 +NY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.047492279 +NY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18149.7651 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,272.4556156 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19269.25825 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1748.992623 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4682.148969 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.456984929 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5057.308207 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6206.657036 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,4304.926155 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,346.1475793 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,991.0461844 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3819.488686 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1720.998894 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,16057.4377 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,60.0000278 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,625.968025 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,20196.03095 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6708.069833 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,101.6171638 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,15.24004778 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,104.1860857 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,671.81031 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2326.245503 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3609.060691 +NY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +NY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,10.904535 +NY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.146 +NY,Nitrogen Oxides,2A1_Cement-production,,TON,7083.436 +NY,Nitrogen Oxides,2A6_Other-minerals,,TON,1887.4867 +NY,Nitrogen Oxides,2B_Chemicals-other,,TON,0 +NY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,339.8715 +NY,Nitrogen Oxides,2C3_Aluminum-production,,TON,255.16019 +NY,Nitrogen Oxides,2C5_Lead-production,,TON,260.248 +NY,Nitrogen Oxides,2D3d_Coating-application,,TON,32.3785 +NY,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +NY,Nitrogen Oxides,2D3h_Printing,,TON,1.432 +NY,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.568 +NY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1126.5145 +NY,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NY,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,0 +NY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2 +NY,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,557.987545 +NY,Nitrogen Oxides,5C_Incineration,,TON,0.018052087 +NY,Nitrogen Oxides,5C_Incineration,biomass,TON,5458.532648 +NY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,934.00305 +NY,Nitrogen Oxides,5C_Open-burning-residential,,TON,628.12925 +NY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,50.7343517 +NY,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,15.1375 +NY,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,64.048 +NY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.801 +NY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.360565939 +NY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,3452.138748 +NY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,3.526669979 +NY,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,204.8823996 +NY,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5.596732504 +NY,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.042276507 +NY,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.138740547 +NY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.894193715 +NY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,65.34213861 +NY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,20.18764478 +NY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2916.21879 +NY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,672.315519 +NY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,611.5828945 +NY,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.482496 +NY,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000713539 +NY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0248036 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,210.3262601 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.6431446 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,683.3925039 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,197.731306 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,174.9241146 +NY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,8.556209516 +NY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,172800.0699 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,29.03961735 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.314322115 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,45.72519691 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,35.85796146 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024932511 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.19699255 +NY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,607.7562435 +NY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,43.1783511 +NY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,39.4384388 +NY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.82688927 +NY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.000751094 +NY,PM10 Filterable,2A1_Cement-production,,TON,789.9518402 +NY,PM10 Filterable,2A2_Lime-production,,TON,0.111215413 +NY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,33322.29277 +NY,PM10 Filterable,2A6_Other-minerals,,TON,9720.962119 +NY,PM10 Filterable,2B_Chemicals-other,,TON,56.02131705 +NY,PM10 Filterable,2C_Iron-steel-alloy,,TON,21.24826576 +NY,PM10 Filterable,2C3_Aluminum-production,,TON,57.56118279 +NY,PM10 Filterable,2C5_Lead-production,,TON,1.7719396 +NY,PM10 Filterable,2C7_Other-metal,,TON,14.62311599 +NY,PM10 Filterable,2C7a_Copper-production,,TON,0.347835 +NY,PM10 Filterable,2D3d_Coating-application,,TON,0 +NY,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0104273 +NY,PM10 Filterable,2H1_Pulp-and-paper,,TON,112.0013544 +NY,PM10 Filterable,2H2_Food-and-beverage,,TON,51.34933614 +NY,PM10 Filterable,2H3_Other-industrial-processes,,TON,359.6371989 +NY,PM10 Filterable,2I_Wood-processing,,TON,5.63842 +NY,PM10 Filterable,3Dc_Other-farm,,TON,38892.295 +NY,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,23.08916535 +NY,PM10 Filterable,5C_Incineration,,TON,0.0358445 +NY,PM10 Filterable,5C_Incineration,biomass,TON,11.76452617 +NY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3175.6109 +NY,PM10 Filterable,5C_Open-burning-residential,,TON,3978.15595 +NY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,189.030761 +NY,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.000247567 +NY,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00210437 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,69.79115474 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,22.20092541 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3056.36707 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,780.224105 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,15.81694899 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1431.617199 +NY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.7473 +NY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00095 +NY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0652725 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,551.802258 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,66.78534276 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.377581246 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1806.651334 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,198.0493684 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3208.646233 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,316.9783064 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.561172654 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,369.5895531 +NY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,10.7840042 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2286.210148 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,83.00840798 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001528794 +NY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,340.6489837 +NY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,172800.0699 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,260.1140559 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6936.159336 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,1388.762847 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,362.2973456 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2273.837125 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,629.4822035 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,520.7179135 +NY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.5602966 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,507.5150346 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.026341827 +NY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,898.3842655 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,239.4979981 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1693.440482 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,714.4417677 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,515.7366076 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.028794628 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,354.1059588 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,661.8032546 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,206.1227767 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.588259343 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,89.3517897 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,918.167137 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,15968.64302 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1592.36255 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,138.000023 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,62.075144 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1552.515515 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,808.881713 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.34445882 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.07591712 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,18.1631651 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,788.85865 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,56.904513 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,926.1196207 +NY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.42 +NY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.001 +NY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,834.8642116 +NY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.144504 +NY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,33322.29277 +NY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9822.951892 +NY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,73.56344952 +NY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,39.58963725 +NY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,145.9332389 +NY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,6.524493 +NY,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,24.63234094 +NY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.64701 +NY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,44.48821785 +NY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.735691 +NY,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.01615 +NY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,208.364811 +NY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5046.655321 +NY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,523.6746058 +NY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,8.148 +NY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,38892.295 +NY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6.8 +NY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,103.244668 +NY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.041667063 +NY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,31.37866901 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3175.6109 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3978.15595 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,189.030761 +NY,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,5.755772591 +NY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.00282 +NY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.061 +NY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,51.84862809 +NY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,11.62418121 +NY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,796.7623546 +NY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,550.999649 +NY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,502.3836671 +NY,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.355296 +NY,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000171249 +NY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0248036 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,132.5913249 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.13852548 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,468.733284 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,177.8223525 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,123.8633175 +NY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,8.045533359 +NY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,22339.2245 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,24.04183297 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.469213187 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,32.65745816 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,21.88618163 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.023377195 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.28436313 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,467.072338 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,30.71702887 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,30.3091878 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.00478983 +NY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.000623248 +NY,PM2.5 Filterable,2A1_Cement-production,,TON,391.9249008 +NY,PM2.5 Filterable,2A2_Lime-production,,TON,0.017713205 +NY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3332.229277 +NY,PM2.5 Filterable,2A6_Other-minerals,,TON,1597.29429 +NY,PM2.5 Filterable,2B_Chemicals-other,,TON,35.17649686 +NY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,12.49465625 +NY,PM2.5 Filterable,2C3_Aluminum-production,,TON,28.03583928 +NY,PM2.5 Filterable,2C5_Lead-production,,TON,0.8398146 +NY,PM2.5 Filterable,2C7_Other-metal,,TON,0 +NY,PM2.5 Filterable,2C7a_Copper-production,,TON,0.0693748 +NY,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +NY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,72.98473797 +NY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,17.92419528 +NY,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,158.1864181 +NY,PM2.5 Filterable,2I_Wood-processing,,TON,1.698552 +NY,PM2.5 Filterable,3Dc_Other-farm,,TON,7778.399 +NY,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,18.60831971 +NY,PM2.5 Filterable,5C_Incineration,,TON,0.0265158 +NY,PM2.5 Filterable,5C_Incineration,biomass,TON,9.520397683 +NY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2448.07834 +NY,PM2.5 Filterable,5C_Open-burning-residential,,TON,3643.1534 +NY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,145.7244425 +NY,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.000201168 +NY,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00162437 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,56.29759932 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,13.62703126 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,936.9101315 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,658.909035 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,15.16762294 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1321.83905 +NY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.6201 +NY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00040771 +NY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0652725 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,535.0935039 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,66.20773484 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.367355675 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1483.929687 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,58.95932242 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1339.049139 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,263.9095169 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.269787346 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,319.7800025 +NY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,10.27332604 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2217.613923 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,76.414852 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001528794 +NY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,159.1705998 +NY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,22339.2245 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,230.46728 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3897.521592 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,1271.970829 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,202.5078766 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2043.499247 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,560.1208381 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,458.8490642 +NY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.70657036 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,469.1909498 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.024277994 +NY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,850.1956394 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,203.8328895 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1537.841175 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,422.4157767 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,207.8162422 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.027517247 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,345.9027154 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,641.9417892 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,190.207059 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.588259343 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,86.67124722 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,844.7432318 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,15957.77211 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1226.386865 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,35.88000015 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,47.8082979 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1552.515515 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,784.6067655 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.44033424 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.07591712 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,17.6181289 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,725.7538689 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,55.19738361 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,852.0301453 +NY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.42 +NY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.000872154 +NY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,436.8373348 +NY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.051001791 +NY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3332.229277 +NY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1699.283798 +NY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,52.71832635 +NY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,30.8360287 +NY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,116.4079434 +NY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,5.592369 +NY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,13.19982126 +NY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.36855 +NY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,36.11765333 +NY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.6481465 +NY,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0057 +NY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,169.3481962 +NY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5013.230285 +NY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,321.9312162 +NY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,4.208136 +NY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,7778.399 +NY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6.8 +NY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,96.71565729 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.03184938 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,26.78697239 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2448.07834 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3643.1534 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,145.7244425 +NY,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,5.755726192 +NY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.00234 +NY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.061 +NY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,78.021656 +NY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,375.6636008 +NY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,54964.129 +NY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,12402.00935 +NY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,37.9183817 +NY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,714.3262799 +NY,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.027284 +NY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0130545 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,440.8338989 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.158181 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.997100475 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,200.2105534 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4833.563759 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,25190.36693 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3179.394952 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.345262881 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,381.7496756 +NY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.004974 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1527.548017 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3.231968044 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000292201 +NY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,708.7484703 +NY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.902871056 +NY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1355.780926 +NY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,16.04644379 +NY,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,69.24156813 +NY,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,52.34828197 +NY,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,16.0873488 +NY,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,12.0225912 +NY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.80875938 +NY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,154.7318142 +NY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.026308107 +NY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3935.258034 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,29.6336434 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15722.24177 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4110.990058 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9679.851979 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.02101721 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,120.7312652 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,261.6171173 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,31.63720657 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.812993163 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,51.00898439 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,62.74387636 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,487.2342247 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,32086.05625 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,299.4169065 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,585.638512 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,593.9331824 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,648.741748 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.59370155 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.013900627 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.16810092 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,62.89684298 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,173.8041781 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,101.4816882 +NY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +NY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.002 +NY,Sulfur Dioxide,2A1_Cement-production,,TON,12027.5625 +NY,Sulfur Dioxide,2A6_Other-minerals,,TON,854.54015 +NY,Sulfur Dioxide,2B_Chemicals-other,,TON,174.837255 +NY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,218.268 +NY,Sulfur Dioxide,2C3_Aluminum-production,,TON,2335.34075 +NY,Sulfur Dioxide,2C5_Lead-production,,TON,94.661 +NY,Sulfur Dioxide,2D3d_Coating-application,,TON,0.014075 +NY,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +NY,Sulfur Dioxide,2D3h_Printing,,TON,0 +NY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,337.2375 +NY,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.07835 +NY,Sulfur Dioxide,2I_Wood-processing,,TON,0 +NY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.24 +NY,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,1096.61859 +NY,Sulfur Dioxide,5C_Incineration,,TON,0.018058541 +NY,Sulfur Dioxide,5C_Incineration,biomass,TON,605.2298799 +NY,Sulfur Dioxide,5C_Open-burning-residential,,TON,104.688263 +NY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.96224235 +NY,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,11.2745 +NY,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.627 +NY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.005 +NY,Volatile Organic Compounds,11C_Other-natural,,TON,333832.171 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,25.35138 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,16.37062606 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,256.19946 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,105.096464 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.524857587 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,556.8287578 +NY,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,46.57069315 +NY,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.00019 +NY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.0609205 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,768.6076175 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3005.150699 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12.86306325 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,55.42094205 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.48127811 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,37.02586375 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.51058342 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.464025344 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,383.6392251 +NY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.30379985 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2802.597309 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1457.220175 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.004275764 +NY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1072.615806 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,510.0765683 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,76661.43489 +NY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,874.7386063 +NY,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,5588.403241 +NY,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2387.426075 +NY,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1317.897467 +NY,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,606.7647102 +NY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2183.455851 +NY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,787.9900996 +NY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.478904563 +NY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,483.5411229 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,8.974326557 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1283.930507 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.997171078 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,132.1421634 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.90784683 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,328.9810108 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,944.949155 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,16491.11565 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.616863501 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,124.927077 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,39834.31149 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,17858.77164 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,227.4804005 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,22.72220337 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,8.8678784 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1124.686981 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,806.7663073 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,451.6169755 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.24784104 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.7136346 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,33646.79844 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,90.12101228 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,58991.7355 +NY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2.332 +NY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,670.839528 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,912.7113264 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,40556.99504 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,49.11017067 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,11.251 +NY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.4273 +NY,Volatile Organic Compounds,2A1_Cement-production,,TON,200.77485 +NY,Volatile Organic Compounds,2A6_Other-minerals,,TON,43.23140518 +NY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2431.662581 +NY,Volatile Organic Compounds,2B_Chemicals-other,,TON,368.3072608 +NY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,24.1494 +NY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,173.23475 +NY,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,55.015885 +NY,Volatile Organic Compounds,2C7a_Copper-production,,TON,10.70285 +NY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,65347.77602 +NY,Volatile Organic Compounds,2D3d_Coating-application,,TON,53771.9268 +NY,Volatile Organic Compounds,2D3e_Degreasing,,TON,41820.51542 +NY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,5561.50567 +NY,Volatile Organic Compounds,2D3h_Printing,,TON,5099.297575 +NY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3387.133681 +NY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,375.13385 +NY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4228.258692 +NY,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,542.8791918 +NY,Volatile Organic Compounds,2I_Wood-processing,,TON,37.69 +NY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4105.638 +NY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,4.4 +NY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,7135.333619 +NY,Volatile Organic Compounds,5C_Incineration,,TON,0.063622517 +NY,Volatile Organic Compounds,5C_Incineration,biomass,TON,48.11018908 +NY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2166.88769 +NY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,896.13166 +NY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,212.903144 +NY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,4777.244582 +NY,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,53.249325 +NY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.011 +OH,Ammonia,1A1a_Public-Electricity,biomass,TON,4.68 +OH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,6.4956727 +OH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,29.72991852 +OH,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.1 +OH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,55.08493558 +OH,Ammonia,1A1b_Pet-refining,natural_gas,TON,45.94 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.50071901 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.715100381 +OH,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.500579218 +OH,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,126.7586327 +OH,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.346596 +OH,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,6.653970979 +OH,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.09171628 +OH,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,9.284743858 +OH,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,120.168195 +OH,Ammonia,1A2c_Chemicals,natural_gas,TON,1.619472 +OH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,24.02335757 +OH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.447271251 +OH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.10162143 +OH,Ammonia,1A3bii_Road-LDV,light_oil,TON,4909.661629 +OH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.45575213 +OH,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,147.2695562 +OH,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,134.7912111 +OH,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,29.82395976 +OH,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,37.96397998 +OH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.48023323 +OH,Ammonia,1A3c_Rail,diesel_oil,TON,16.33574508 +OH,Ammonia,1A3c_Rail,light_oil,TON,0.005726578 +OH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.813726842 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,14.68377302 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,40.57409423 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.054557866 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.598597114 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,16.05001175 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.72774213 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.186988074 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.605605118 +OH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.071732392 +OH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,14.20975872 +OH,Ammonia,1A4bi_Residential-stationary,biomass,TON,1445.566055 +OH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,46.136754 +OH,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,8.762094926 +OH,Ammonia,1A4bi_Residential-stationary,light_oil,TON,7.3734015 +OH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2727.09219 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.96377131 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.341514993 +OH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0481344 +OH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,4.451530303 +OH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.314546491 +OH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.408327737 +OH,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.2005 +OH,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.132815 +OH,Ammonia,2A1_Cement-production,,TON,2.51 +OH,Ammonia,2A2_Lime-production,Other_Fuel,TON,2.89 +OH,Ammonia,2A6_Other-minerals,,TON,340.035 +OH,Ammonia,2B_Chemicals-other,,TON,1621.44577 +OH,Ammonia,2C_Iron-steel-alloy,,TON,553.07999 +OH,Ammonia,2C3_Aluminum-production,,TON,6.131 +OH,Ammonia,2C6_Zinc-production,,TON,55.74 +OH,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.048 +OH,Ammonia,2D3d_Coating-application,,TON,7.281136 +OH,Ammonia,2D3h_Printing,,TON,0.02203 +OH,Ammonia,2H1_Pulp-and-paper,,TON,41.74404 +OH,Ammonia,2H2_Food-and-beverage,,TON,0.16 +OH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,51.193 +OH,Ammonia,3B1a_Cattle-dairy,,TON,15055.27408 +OH,Ammonia,3B1b_Cattle-non-dairy,,TON,4989.722652 +OH,Ammonia,3B2_Manure-sheep,,TON,430.691046 +OH,Ammonia,3B3_Manure-swine,,TON,11045.08605 +OH,Ammonia,3B4_Manure-other,,TON,1604.9746 +OH,Ammonia,3B4_Manure-poultry,,TON,18601.64876 +OH,Ammonia,3B4d_Manure-goats,,TON,485.906275 +OH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,31317.87039 +OH,Ammonia,5A_Solid-waste-disposal,,TON,24.75 +OH,Ammonia,5C_Incineration,biomass,TON,0.03 +OH,Ammonia,5D1_Wastewater-domestic,,TON,46.0034376 +OH,Ammonia,5D2_Wastewater-industrial,biomass,TON,13.67 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,676870.7925 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,860900.8517 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,50107.35008 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2956429.764 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,121722.2948 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.78097165 +OH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,425045.6072 +OH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,47430639.04 +OH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,381603.349 +OH,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2409532.246 +OH,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,11329432.99 +OH,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,960821.7382 +OH,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2317808.075 +OH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,188138.0871 +OH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,9022.992667 +OH,Carbon Dioxide,1A3c_Rail,light_oil,TON,442.1181909 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,268490.9799 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,379445.856 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16605.34945 +OH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,131689.1657 +OH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1036745.242 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1470880.024 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,25470.98864 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,166.8469748 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5883.8158 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,286915.0663 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,161888.3608 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,441114.8317 +OH,Carbon Monoxide,11C_Other-natural,,TON,59176.646 +OH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,183.87 +OH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,72.32566165 +OH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,14515.01 +OH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,98.9 +OH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1351.803064 +OH,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,3404.665756 +OH,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,52.4 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4489.294916 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,62591.78515 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3879.590469 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,456.3630868 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4912.762282 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,160.2210218 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2047.726559 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,90.19067502 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,66.36356486 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,37456.8683 +OH,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,73.1979 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,11580.65128 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,27156.87765 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.258786245 +OH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12278.13783 +OH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1881.053467 +OH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1364429.957 +OH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1481.653763 +OH,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,97042.70295 +OH,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,22828.91139 +OH,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,4875.175692 +OH,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5228.781408 +OH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10019.46704 +OH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5293.858304 +OH,Carbon Monoxide,1A3c_Rail,light_oil,TON,133.1693425 +OH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1442.945542 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1407.532132 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,218.0826583 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,464.2599568 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.190663281 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,82.40769317 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7952.377234 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1650.951501 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,109748.0115 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,434.8284779 +OH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,644.6145532 +OH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,341904.4045 +OH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,159136.4359 +OH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,230.68366 +OH,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1204.788202 +OH,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,36.8669985 +OH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,5811.981545 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8098.906023 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7593.894012 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,18.35821917 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,67.461238 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,63419.77098 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,324.5729613 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,66101.13761 +OH,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,1.4 +OH,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.53 +OH,Carbon Monoxide,2A1_Cement-production,,TON,309.12 +OH,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,4261.57 +OH,Carbon Monoxide,2A6_Other-minerals,,TON,2787.318315 +OH,Carbon Monoxide,2B_Chemicals-other,,TON,84189.29727 +OH,Carbon Monoxide,2C_Iron-steel-alloy,,TON,75707.7991 +OH,Carbon Monoxide,2C3_Aluminum-production,,TON,18742.38 +OH,Carbon Monoxide,2C7_Other-metal,,TON,2211.25801 +OH,Carbon Monoxide,2C7a_Copper-production,,TON,12.68 +OH,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,26.9884577 +OH,Carbon Monoxide,2D3d_Coating-application,,TON,433.9278 +OH,Carbon Monoxide,2D3h_Printing,,TON,0.2192 +OH,Carbon Monoxide,2H1_Pulp-and-paper,,TON,518.9368 +OH,Carbon Monoxide,2H2_Food-and-beverage,,TON,1106.44222 +OH,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,184.4052 +OH,Carbon Monoxide,3F_Ag-res-on-field,,TON,1579.5 +OH,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1549.6 +OH,Carbon Monoxide,5C_Incineration,,TON,1.310333595 +OH,Carbon Monoxide,5C_Incineration,biomass,TON,728.4904648 +OH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,26314.65784 +OH,Carbon Monoxide,5C_Open-burning-residential,,TON,16916.0179 +OH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1832.08473 +OH,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,6.735 +OH,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,2.45 +OH,Methane,1A3bii_Road-LDV,diesel_oil,TON,5.667528415 +OH,Methane,1A3bii_Road-LDV,light_oil,TON,5086.733271 +OH,Methane,1A3biii_Road-bus,diesel_oil,TON,4.16924848 +OH,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,372.8362551 +OH,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,358.4748294 +OH,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,12.62313423 +OH,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,36.32140311 +OH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,53.41263598 +OH,Nitrogen Oxides,11C_Other-natural,,TON,16924.0059 +OH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,54.6 +OH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,203.4213149 +OH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,235389.548 +OH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,985.5 +OH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,834.86556 +OH,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,4532.4725 +OH,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,653.9 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5843.192644 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9738.138469 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,673.8328298 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,5395.591358 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2330.964644 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,848.8828946 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,9797.223456 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,934.33434 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,230.3465752 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,22148.52911 +OH,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,147.53249 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,25681.89918 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,688.7156682 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.259441428 +OH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2098.945984 +OH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2850.046816 +OH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,150184.1207 +OH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3950.4066 +OH,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9743.180417 +OH,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,90950.96695 +OH,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,7087.113429 +OH,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,17111.79229 +OH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,381.7324242 +OH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,36324.55554 +OH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.081756769 +OH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8773.557888 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,483.1581169 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,804.4896912 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,697.722145 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,27.71420882 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,306.0032485 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10346.36217 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2801.805736 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2051.584186 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,122.087072 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1379.528517 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3940.664044 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2012.753609 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,830.46098 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,36.47350526 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,132.721176 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,14089.58422 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15791.08934 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,161.16059 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.089385262 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,65.022684 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,633.7224287 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1935.092617 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3015.477369 +OH,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.26 +OH,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.89 +OH,Nitrogen Oxides,2A1_Cement-production,,TON,3401.5 +OH,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,4426.65 +OH,Nitrogen Oxides,2A6_Other-minerals,,TON,3729.12527 +OH,Nitrogen Oxides,2B_Chemicals-other,,TON,2535.05016 +OH,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3447.835148 +OH,Nitrogen Oxides,2C3_Aluminum-production,,TON,43.5523 +OH,Nitrogen Oxides,2C7_Other-metal,,TON,280.509 +OH,Nitrogen Oxides,2C7a_Copper-production,,TON,7.524 +OH,Nitrogen Oxides,2D3d_Coating-application,,TON,78.2119 +OH,Nitrogen Oxides,2D3h_Printing,,TON,1.0964 +OH,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,496.138 +OH,Nitrogen Oxides,2H2_Food-and-beverage,,TON,28.578 +OH,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,200.3168 +OH,Nitrogen Oxides,3Dc_Other-farm,,TON,6.103 +OH,Nitrogen Oxides,3F_Ag-res-on-field,,TON,70.2 +OH,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,315.793 +OH,Nitrogen Oxides,5C_Incineration,,TON,12.88194183 +OH,Nitrogen Oxides,5C_Incineration,biomass,TON,647.1420128 +OH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,778.5407028 +OH,Nitrogen Oxides,5C_Open-burning-residential,,TON,1194.0721 +OH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,81.425971 +OH,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.36 +OH,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,2.07 +OH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.597707545 +OH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,3367.459869 +OH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.941432395 +OH,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,187.849754 +OH,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,12.09853046 +OH,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.045823468 +OH,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.304634172 +OH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.713387561 +OH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,20.98 +OH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.777861723 +OH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,9228.020183 +OH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,95.4 +OH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,61.32882402 +OH,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,786.07302 +OH,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,110.79 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,235.6459193 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3329.693687 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,36.17064801 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,613.0791097 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,266.2787595 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,12.11713155 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,692.7179661 +OH,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,10.371913 +OH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,186848.9482 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1122.653648 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,50.74864772 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,110.8885938 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.367393725 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,19.21218759 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,48.56801612 +OH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,49.8277075 +OH,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,29.27675561 +OH,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,7.9632718 +OH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,29.05705043 +OH,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.35 +OH,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,12.72 +OH,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.114935 +OH,PM10 Filterable,2A1_Cement-production,,TON,110.250065 +OH,PM10 Filterable,2A2_Lime-production,,TON,479.8558 +OH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,73930.87333 +OH,PM10 Filterable,2A6_Other-minerals,,TON,14132.03551 +OH,PM10 Filterable,2B_Chemicals-other,,TON,523.969572 +OH,PM10 Filterable,2C_Iron-steel-alloy,,TON,4112.163575 +OH,PM10 Filterable,2C3_Aluminum-production,,TON,450.84 +OH,PM10 Filterable,2C7_Other-metal,,TON,407.7538725 +OH,PM10 Filterable,2C7a_Copper-production,,TON,47.792 +OH,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,75.2105253 +OH,PM10 Filterable,2D3d_Coating-application,,TON,77.0830184 +OH,PM10 Filterable,2D3h_Printing,,TON,0.05138 +OH,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,8.09758 +OH,PM10 Filterable,2H1_Pulp-and-paper,,TON,420.531643 +OH,PM10 Filterable,2H2_Food-and-beverage,,TON,174.5198176 +OH,PM10 Filterable,2H3_Other-industrial-processes,,TON,422.09655 +OH,PM10 Filterable,2I_Wood-processing,,TON,32.8373 +OH,PM10 Filterable,3Dc_Other-farm,,TON,162372.3299 +OH,PM10 Filterable,5A_Solid-waste-disposal,,TON,321.262256 +OH,PM10 Filterable,5C_Incineration,,TON,0.381388294 +OH,PM10 Filterable,5C_Incineration,biomass,TON,24.93687286 +OH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2647.037793 +OH,PM10 Filterable,5C_Open-burning-residential,,TON,7562.4563 +OH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,303.384469 +OH,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.1527 +OH,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,67.71 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,27.872 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,18.09421422 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,45763.16258 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,239.1 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,138.3381153 +OH,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1426.381361 +OH,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,236.12 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,449.0608299 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,85.64506741 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.141830884 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3573.189738 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,251.2936275 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,10.04564015 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1171.169718 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,106.7464265 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.013861572 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1711.234708 +OH,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,24.1847337 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1843.062925 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,131.4643562 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001727755 +OH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,303.2816415 +OH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,186848.9482 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,239.8310018 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6657.414073 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,244.7826191 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,295.2982891 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,4963.407644 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,534.5209914 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1023.233325 +OH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,31.35929572 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1237.110407 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.059621718 +OH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,412.1125602 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.76670436 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.156864406 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,172.6479872 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.637502695 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,95.39075961 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,288.9216534 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,101.9728997 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.072474956 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,117.5249161 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1037.565348 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,23407.47453 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,109.8054285 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,30.02510655 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,17.5486937 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,75.5482796 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1486.2816 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.748692284 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.021080481 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.6945137 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,603.1749927 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,39.25273791 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,314.0605466 +OH,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.542088 +OH,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,12.72 +OH,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.34984 +OH,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,118.6234514 +OH,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1040.224224 +OH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,73946.6563 +OH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,15118.58561 +OH,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,813.7770686 +OH,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,8955.709173 +OH,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,849.366 +OH,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,734.0071628 +OH,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,88.89828 +OH,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,117.5111421 +OH,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,101.4314824 +OH,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.05138 +OH,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,21.62028 +OH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,779.118163 +OH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3177.188513 +OH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,685.2627336 +OH,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,61.353885 +OH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,162376.4265 +OH,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,234 +OH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,419.1527746 +OH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.812637167 +OH,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,39.40660723 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2647.037793 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,7562.4563 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,303.384469 +OH,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.168138 +OH,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,74.979388 +OH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.094 +OH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.287150723 +OH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4450.751025 +OH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,42.5 +OH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,61.25435067 +OH,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,730.90426 +OH,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,110.79 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,102.0667818 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3169.728407 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.30921799 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,384.5805243 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,177.4433458 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,9.328954613 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,645.4963811 +OH,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,10.3112118 +OH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,15388.5941 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1096.640539 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,39.68954895 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,47.17089925 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.661091098 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.00788953 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.04648836 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,38.29349 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,19.00151364 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,6.11992555 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.98137731 +OH,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.25 +OH,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.18 +OH,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.114935 +OH,PM2.5 Filterable,2A1_Cement-production,,TON,55.54471741 +OH,PM2.5 Filterable,2A2_Lime-production,,TON,252.066688 +OH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,7413.520633 +OH,PM2.5 Filterable,2A6_Other-minerals,,TON,2952.462879 +OH,PM2.5 Filterable,2B_Chemicals-other,,TON,356.3273838 +OH,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,3000.44421 +OH,PM2.5 Filterable,2C3_Aluminum-production,,TON,240.16225 +OH,PM2.5 Filterable,2C7_Other-metal,,TON,244.0002321 +OH,PM2.5 Filterable,2C7a_Copper-production,,TON,17.62229 +OH,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,29.42141379 +OH,PM2.5 Filterable,2D3d_Coating-application,,TON,58.7053239 +OH,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,8.09758 +OH,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,313.339102 +OH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,93.16610282 +OH,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,362.664963 +OH,PM2.5 Filterable,2I_Wood-processing,,TON,14.58026 +OH,PM2.5 Filterable,3Dc_Other-farm,,TON,32481.79707 +OH,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,105.7486396 +OH,PM2.5 Filterable,5C_Incineration,,TON,0.381396303 +OH,PM2.5 Filterable,5C_Incineration,biomass,TON,22.52652728 +OH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2647.037793 +OH,PM2.5 Filterable,5C_Open-burning-residential,,TON,6925.6171 +OH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,270.523274 +OH,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.1527 +OH,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,63.37 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,6.986 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.60350322 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,40985.89344 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,186.2 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,138.2736423 +OH,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1371.21274 +OH,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,236.12 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,435.5329574 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,84.96827377 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.138436773 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3440.403115 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,210.2881688 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,8.02771143 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,942.8420334 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,79.06014349 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.013864566 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1670.319897 +OH,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,24.1240318 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1787.770743 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,121.068981 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001727755 +OH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,81.56144535 +OH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,15388.5941 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,217.8782142 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4347.031261 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,218.3528661 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,175.9477678 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,4496.539594 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,485.2504336 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,905.0340388 +OH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.50770007 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1143.802616 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.054958858 +OH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,390.2852926 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.67695704 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.154157819 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,117.394724 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.139524873 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,95.43785953 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,280.2539766 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,94.08908527 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.072474956 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,113.9991933 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,954.6038328 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,23397.41297 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,98.2712565 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,19.74984129 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,15.7053433 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,62.47267448 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1441.693446 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.969038034 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.021080481 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.4036842 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,554.9231859 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,38.0751228 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,288.9357681 +OH,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.442088 +OH,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.18 +OH,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.34984 +OH,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,63.91816317 +OH,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,812.4351589 +OH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7429.303704 +OH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3948.137779 +OH,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,646.1352931 +OH,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,7884.701243 +OH,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,638.68826 +OH,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,570.2535504 +OH,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,58.72858 +OH,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,71.72207889 +OH,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,88.9013879 +OH,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.05138 +OH,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,21.62028 +OH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,671.925627 +OH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2890.297353 +OH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,626.241202 +OH,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,43.096845 +OH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,32485.89366 +OH,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,234 +OH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,226.2639023 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.816227889 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,37.00097351 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2647.037793 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,6925.6171 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,270.523274 +OH,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.168138 +OH,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,74.979388 +OH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,10.137 +OH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,247.6364435 +OH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,713715.51 +OH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,2710 +OH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,20.10992498 +OH,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,8528.515663 +OH,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,1458.9 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,152.3013236 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.55441842 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.187635825 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,35388.57147 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,333.7968235 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2399.525088 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,60438.95493 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4707.726117 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,57.64027055 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3680.491504 +OH,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,8.888138 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,643.1964671 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3.672938586 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000325741 +OH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,249.2439009 +OH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.691986787 +OH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1079.31017 +OH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.214990644 +OH,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,54.84468412 +OH,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,124.1426379 +OH,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,10.61505719 +OH,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,25.38961016 +OH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.280892793 +OH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,368.9842214 +OH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.01364603 +OH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1718.451 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,53.97896821 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3410.050303 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4921.986084 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,42.60102204 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,78.62483809 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.20219925 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,58.40925148 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,11.88788848 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.367085241 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,28.64909835 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,33.48057376 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,1167.541131 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1965.4258 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,428.3590166 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,314.106855 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,87.1712256 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,319.9951608 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.76547529 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003669546 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.27987353 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,8.820556059 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,39.88373976 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,15.37051415 +OH,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.025446 +OH,Sulfur Dioxide,2A1_Cement-production,,TON,1881.8 +OH,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,7100.33 +OH,Sulfur Dioxide,2A6_Other-minerals,,TON,2864.528748 +OH,Sulfur Dioxide,2B_Chemicals-other,,TON,6332.964123 +OH,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,4253.20102 +OH,Sulfur Dioxide,2C3_Aluminum-production,,TON,2485.2347 +OH,Sulfur Dioxide,2C7_Other-metal,,TON,105.892 +OH,Sulfur Dioxide,2C7a_Copper-production,,TON,133.3 +OH,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,3.7978 +OH,Sulfur Dioxide,2D3d_Coating-application,,TON,0.2272 +OH,Sulfur Dioxide,2D3h_Printing,,TON,0.006805 +OH,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,233.839993 +OH,Sulfur Dioxide,2H2_Food-and-beverage,,TON,7.25184 +OH,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,14.894992 +OH,Sulfur Dioxide,3Dc_Other-farm,,TON,0.034 +OH,Sulfur Dioxide,3F_Ag-res-on-field,,TON,9.36 +OH,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,95.591 +OH,Sulfur Dioxide,5C_Incineration,,TON,0.084825755 +OH,Sulfur Dioxide,5C_Incineration,biomass,TON,106.9259387 +OH,Sulfur Dioxide,5C_Open-burning-residential,,TON,199.012021 +OH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,17.5938162 +OH,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.755 +OH,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,2.62 +OH,Volatile Organic Compounds,11C_Other-natural,,TON,304404.85 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,37.2 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,21.83903191 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1309.397151 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.1 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,72.93715347 +OH,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,30.88120118 +OH,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,91.96675528 +OH,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1479.718019 +OH,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,13.24 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,580.0354589 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3103.067088 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12.14517514 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.421733493 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,166.1447725 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,17.11740103 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,593.4022194 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.14368067 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,4.475145625 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1096.017336 +OH,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,5.791676 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2164.107307 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1684.857855 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.004243352 +OH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,673.2341713 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,436.7038618 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,122381.8343 +OH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,224.117775 +OH,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,5990.226735 +OH,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,5416.006868 +OH,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1103.876849 +OH,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1242.718346 +OH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2356.032628 +OH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1926.385827 +OH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,5.207997508 +OH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,215.7844148 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,43.49902693 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.33477915 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.468032776 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.530926444 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.18675531 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,751.3801096 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,415.8547275 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,5646.464403 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.44159184 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,164.9111967 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,25184.00854 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,18641.10029 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,32.2957038 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,43.81043626 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,5.1613796 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,799.068883 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1562.325097 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,361.2744805 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.071060196 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.7473038 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,20228.95439 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,79.72039747 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,19245.40832 +OH,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,51.17 +OH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1205.128856 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,447.7389721 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,21154.66798 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,57.4813815 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,22.99 +OH,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,17.334 +OH,Volatile Organic Compounds,2A1_Cement-production,,TON,10.52 +OH,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,41.847 +OH,Volatile Organic Compounds,2A6_Other-minerals,,TON,156.2074571 +OH,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2038.650455 +OH,Volatile Organic Compounds,2B_Chemicals-other,,TON,6231.454342 +OH,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,4148.45324 +OH,Volatile Organic Compounds,2C3_Aluminum-production,,TON,102.391 +OH,Volatile Organic Compounds,2C7_Other-metal,,TON,184.4139 +OH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,44975.77661 +OH,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,128.58 +OH,Volatile Organic Compounds,2D3d_Coating-application,,TON,40669.07692 +OH,Volatile Organic Compounds,2D3e_Degreasing,,TON,10475.67415 +OH,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,54.1305 +OH,Volatile Organic Compounds,2D3h_Printing,,TON,24238.85719 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,853.3975228 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,3.054470873 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,632.2766154 +OH,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,309.18596 +OH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,3365.610397 +OH,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1616.048397 +OH,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.181 +OH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,9210.40108 +OH,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,140.4 +OH,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,708.633 +OH,Volatile Organic Compounds,5C_Incineration,,TON,0.411546164 +OH,Volatile Organic Compounds,5C_Incineration,biomass,TON,36.41621436 +OH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1806.21456 +OH,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1703.54242 +OH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,341.698229 +OH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,230.3770027 +OH,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,123.86916 +OK,Ammonia,1A1a_Public-Electricity,hard_coal,TON,266.7246 +OK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,451.6045303 +OK,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +OK,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.05 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.925568049 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.455330946 +OK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.90155882 +OK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.57346818 +OK,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.56303233 +OK,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.23548761 +OK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,225.1314139 +OK,Ammonia,1A2c_Chemicals,natural_gas,TON,19.523 +OK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.635135696 +OK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.166542451 +OK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.59802141 +OK,Ammonia,1A3bii_Road-LDV,light_oil,TON,1967.075427 +OK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.763627754 +OK,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,65.94039106 +OK,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,70.21005727 +OK,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,13.86863099 +OK,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,19.46748996 +OK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.961948896 +OK,Ammonia,1A3c_Rail,diesel_oil,TON,8.707457212 +OK,Ammonia,1A3c_Rail,light_oil,TON,0.003481854 +OK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.054445615 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.03796909 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.13975 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.78223948 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.679205426 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.420303279 +OK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.323290247 +OK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.009989879 +OK,Ammonia,1A4bi_Residential-stationary,biomass,TON,79.67488059 +OK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.019940133 +OK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.220109985 +OK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.175074055 +OK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,529.318273 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.217553488 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.269054996 +OK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.014721645 +OK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.256816555 +OK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.4389282 +OK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.968275906 +OK,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.003 +OK,Ammonia,2A1_Cement-production,,TON,24.878 +OK,Ammonia,2A6_Other-minerals,Other_Fuel,TON,4.203 +OK,Ammonia,2B_Chemicals-other,,TON,2122.368 +OK,Ammonia,2D3h_Printing,,TON,0 +OK,Ammonia,2H1_Pulp-and-paper,,TON,100.327 +OK,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,20.03 +OK,Ammonia,3B1a_Cattle-dairy,,TON,4273.281176 +OK,Ammonia,3B1b_Cattle-non-dairy,,TON,31087.66677 +OK,Ammonia,3B2_Manure-sheep,,TON,266.159916 +OK,Ammonia,3B3_Manure-swine,,TON,20569.72282 +OK,Ammonia,3B4_Manure-other,,TON,2226.6816 +OK,Ammonia,3B4_Manure-poultry,,TON,12836.27307 +OK,Ammonia,3B4d_Manure-goats,,TON,873.22092 +OK,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,25036.55191 +OK,Ammonia,5C_Open-burning-dump,,TON,0 +OK,Ammonia,5D1_Wastewater-domestic,,TON,9.787304495 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,236968.7372 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,183067.3277 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,25332.06069 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,693043.1346 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,13691.48469 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.717775057 +OK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,196097.8495 +OK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,20863583.41 +OK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,192947.1767 +OK,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1111156.916 +OK,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5844751.035 +OK,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,445360.0596 +OK,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1127206.399 +OK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,102053.0535 +OK,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5491.3081 +OK,Carbon Dioxide,1A3c_Rail,light_oil,TON,269.0275435 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,83393.4725 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,116649.3829 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5123.233482 +OK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,39729.95901 +OK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,293675.5867 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1133253.637 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,20031.50721 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,127.7973177 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1799.5308 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,79397.15644 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,54054.19346 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,199111.3476 +OK,Carbon Monoxide,11C_Other-natural,,TON,140416.717 +OK,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.003 +OK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.186 +OK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7083.177 +OK,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,5982.188 +OK,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0.001491439 +OK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1375.306509 +OK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,390.309 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1336.615145 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19581.29718 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1249.256249 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9251.544151 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,79.76638841 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,152.2648667 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.53470949 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,197.8764316 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,25027.30281 +OK,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,26.25 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3315.445323 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4081.582643 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.320547692 +OK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6472.788838 +OK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,850.4541816 +OK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,567552.2178 +OK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,708.8839597 +OK,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,43654.5036 +OK,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,12179.5452 +OK,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2230.40712 +OK,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2403.398835 +OK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6133.787185 +OK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2818.063758 +OK,Carbon Monoxide,1A3c_Rail,light_oil,TON,86.46320843 +OK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,23.5834769 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,145.5760047 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.32817843 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.87343769 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1531.185134 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,504.5143376 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,36790.15119 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,132.455943 +OK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,189.2923185 +OK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,103364.3902 +OK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,9403.68133 +OK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.0997006 +OK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,30.2651435 +OK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.87536985 +OK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1216.543825 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6227.273977 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6369.550452 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,14.06120484 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.635029 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,19581.9809 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,108.8103125 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,32457.26974 +OK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,22671.657 +OK,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,38.069 +OK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,34122.445 +OK,Carbon Monoxide,2A1_Cement-production,,TON,3209.996 +OK,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,111.21 +OK,Carbon Monoxide,2A6_Other-minerals,,TON,663.836 +OK,Carbon Monoxide,2B_Chemicals-other,,TON,1686.257 +OK,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1120.33 +OK,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,4.636 +OK,Carbon Monoxide,2C7a_Copper-production,,TON,480.49 +OK,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1050.083 +OK,Carbon Monoxide,2H2_Food-and-beverage,,TON,346.2722595 +OK,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,16.765 +OK,Carbon Monoxide,3F_Ag-res-on-field,,TON,18171.6 +OK,Carbon Monoxide,5C_Incineration,biomass,TON,3.207742078 +OK,Carbon Monoxide,5C_Open-burning-dump,,TON,38.86 +OK,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.001 +OK,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,9412.349508 +OK,Carbon Monoxide,5C_Open-burning-residential,,TON,5073.2392 +OK,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,439.909023 +OK,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,5.412 +OK,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.594302861 +OK,Methane,1A3bii_Road-LDV,light_oil,TON,2110.94896 +OK,Methane,1A3biii_Road-bus,diesel_oil,TON,2.167059361 +OK,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,157.6723885 +OK,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,193.8093658 +OK,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,5.765520707 +OK,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,20.93409924 +OK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.11156283 +OK,Nitrogen Oxides,11C_Other-natural,,TON,43491.097 +OK,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.02 +OK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,45.836 +OK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,60751.58 +OK,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,21711.553 +OK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,4096.756 +OK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,316.155 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2203.745594 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1785.201801 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,178.7435823 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2496.301879 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,326.7699797 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1841.251241 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2187.246816 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,122.7985956 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,41940.76977 +OK,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,302.901 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6388.56571 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,67.22910626 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.06835514 +OK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,513.7209518 +OK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1263.226725 +OK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,68498.6329 +OK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1943.441569 +OK,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4523.068802 +OK,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,47818.3799 +OK,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,3153.152378 +OK,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,7871.761733 +OK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,265.8432558 +OK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19533.48947 +OK,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.111457688 +OK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,122.404191 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,53.3778518 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.9219853 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.49374904 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1793.441782 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,858.4823452 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,548.702853 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.84150802 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,404.8785104 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,983.9467477 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,150.8433389 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.358922458 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.945779205 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,3.151331795 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3049.284005 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12152.11899 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,111.831849 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.132180232 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.892071 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,169.7603296 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,645.8713316 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1078.771326 +OK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,18876.645 +OK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,16.114 +OK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,49894.071 +OK,Nitrogen Oxides,2A1_Cement-production,,TON,5615.07 +OK,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,227.75 +OK,Nitrogen Oxides,2A6_Other-minerals,,TON,4131.796 +OK,Nitrogen Oxides,2B_Chemicals-other,,TON,4104.44 +OK,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,79.435 +OK,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.691 +OK,Nitrogen Oxides,2C7a_Copper-production,,TON,13.62 +OK,Nitrogen Oxides,2D3h_Printing,,TON,0 +OK,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1034.948 +OK,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +OK,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,19.358 +OK,Nitrogen Oxides,3F_Ag-res-on-field,,TON,637.6 +OK,Nitrogen Oxides,5C_Incineration,biomass,TON,32.59137795 +OK,Nitrogen Oxides,5C_Open-burning-dump,,TON,33 +OK,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.001 +OK,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,278.4719179 +OK,Nitrogen Oxides,5C_Open-burning-residential,,TON,358.111189 +OK,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,19.5515123 +OK,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.083 +OK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.710057857 +OK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1333.438861 +OK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.475767371 +OK,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,81.6719458 +OK,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6.18959022 +OK,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.809949265 +OK,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.149245992 +OK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.507573724 +OK,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.000974455 +OK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.61379395 +OK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4522.919 +OK,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,409.03769 +OK,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0 +OK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,999.8319473 +OK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.76881868 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4315.533809 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,17.66632824 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,450.5036926 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,73.90942687 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.294851321 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,308.9833977 +OK,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,142.05658 +OK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,505128.7402 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,121.987109 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,15.2719562 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.189710246 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.417195573 +OK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.021535351 +OK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.7170527 +OK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.189079928 +OK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.081465697 +OK,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2195218 +OK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.89679599 +OK,PM10 Filterable,2A1_Cement-production,,TON,635.2714146 +OK,PM10 Filterable,2A2_Lime-production,,TON,87.719282 +OK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,32216.10561 +OK,PM10 Filterable,2A6_Other-minerals,,TON,8544.318936 +OK,PM10 Filterable,2B_Chemicals-other,,TON,230.4693688 +OK,PM10 Filterable,2C_Iron-steel-alloy,,TON,4.46839 +OK,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,6.754309152 +OK,PM10 Filterable,2C7a_Copper-production,,TON,1.266433 +OK,PM10 Filterable,2D3d_Coating-application,,TON,0 +OK,PM10 Filterable,2H1_Pulp-and-paper,,TON,185.0468854 +OK,PM10 Filterable,2H2_Food-and-beverage,,TON,165.6008396 +OK,PM10 Filterable,2H3_Other-industrial-processes,,TON,259.8789245 +OK,PM10 Filterable,3Dc_Other-farm,,TON,166958.7839 +OK,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,25.216 +OK,PM10 Filterable,5C_Incineration,biomass,TON,0.3227102 +OK,PM10 Filterable,5C_Open-burning-dump,,TON,1556.64494 +OK,PM10 Filterable,5C_Open-burning-industrial,,TON,1.25983 +OK,PM10 Filterable,5C_Open-burning-land-clearing,,TON,946.8049943 +OK,PM10 Filterable,5C_Open-burning-residential,,TON,2268.037 +OK,PM10 Filterable,5C_Open-burning-yard-waste,,TON,72.846826 +OK,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00373116 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.001 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.881 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5293.805 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,852.86 +OK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1505.919 +OK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,23.102 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,140.9611768 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.31825955 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.211377694 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4481.339934 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,32.81337706 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,473.0836597 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,79.98458562 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.335828412 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,634.6420267 +OK,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,373.834 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,525.1569302 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,21.17330049 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430562 +OK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,140.7061172 +OK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,505128.7402 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,93.5107141 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2097.543128 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,124.3210067 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,116.8183296 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2523.498582 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,227.7339618 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,452.2000868 +OK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.77016452 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,641.8970818 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036260522 +OK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.3556504 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,126.5248259 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,15.37027779 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.419359193 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.487520138 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,87.61409249 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.38003414 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.639243071 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,34.03773967 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,285.3384727 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1362.190559 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.047457509 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.73086311 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.416676371 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,15.81180283 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1142.814384 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.600628934 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01614664 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9651135 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,203.624554 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.19500669 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,179.340762 +OK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1801.73 +OK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.04 +OK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,811.091 +OK,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,682.788 +OK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,104.826 +OK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,32216.10561 +OK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,8842.184153 +OK,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,502.312 +OK,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,7.533 +OK,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,14.779 +OK,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.498 +OK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,10.953 +OK,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.001 +OK,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,276.729 +OK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1130.3732 +OK,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,376.68 +OK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,166961.115 +OK,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1753.4 +OK,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,26.02 +OK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.542723375 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,1606.7 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.3 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,946.8049943 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2268.037 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,72.846826 +OK,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.115 +OK,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.000745122 +OK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.31663283 +OK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2173.892 +OK,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,406.87571 +OK,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0 +OK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,672.6679982 +OK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.21881868 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3539.191691 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.257952496 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,166.9470039 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,43.27568214 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.073651842 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,298.4776238 +OK,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.49058 +OK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,53077.46322 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,105.0274142 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.783743629 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.145960499 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.017648571 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.01655031 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.45684852 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.145311489 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.344804972 +OK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2195218 +OK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.87679599 +OK,PM2.5 Filterable,2A1_Cement-production,,TON,170.9496864 +OK,PM2.5 Filterable,2A2_Lime-production,,TON,20.57063372 +OK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3221.610561 +OK,PM2.5 Filterable,2A6_Other-minerals,,TON,1426.192361 +OK,PM2.5 Filterable,2B_Chemicals-other,,TON,87.22398605 +OK,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0 +OK,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,1.495019125 +OK,PM2.5 Filterable,2C7a_Copper-production,,TON,1.23463694 +OK,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +OK,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,74.86221755 +OK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,44.02736743 +OK,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,211.8985725 +OK,PM2.5 Filterable,3Dc_Other-farm,,TON,33391.26395 +OK,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,12.0076 +OK,PM2.5 Filterable,5C_Incineration,biomass,TON,0.2869742 +OK,PM2.5 Filterable,5C_Open-burning-dump,,TON,886.69494 +OK,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.717625 +OK,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,729.8915313 +OK,PM2.5 Filterable,5C_Open-burning-residential,,TON,2077.04437 +OK,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,56.157901 +OK,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00373116 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.000770668 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.58383926 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2883.24 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,850.69802 +OK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1178.7298 +OK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,22.552 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,136.7172433 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.91747897 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.21048038 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3705.218433 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,24.39494834 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,189.5365489 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,49.35127753 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.113130827 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,619.1065175 +OK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,232.268 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,509.4021983 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.49173314 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430562 +OK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,27.85372853 +OK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,53077.46322 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,84.3818658 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1187.551389 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,111.3721745 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,65.90644492 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2289.738471 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,206.5100397 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,397.1401335 +OK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.10050161 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,591.3945738 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.033426185 +OK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.22499982 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,109.6040338 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.841837195 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.376029361 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.875298725 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,84.9856881 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,28.95138413 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.639243071 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,33.01660916 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,262.5234543 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1360.625785 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.042472462 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.4706587 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.372907642 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.07514932 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1108.529845 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.832758922 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01614664 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.8761554 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,187.3354509 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.79915341 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,164.9935247 +OK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.34 +OK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.04 +OK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,398.484 +OK,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,218.4657031 +OK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,37.67737856 +OK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3221.610561 +OK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1720.347792 +OK,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,359.0667601 +OK,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3.56813 +OK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,9.519710332 +OK,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.4662039 +OK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,10.883 +OK,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.001 +OK,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,166.5444184 +OK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1008.800295 +OK,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,328.6996121 +OK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,33393.595 +OK,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1753.4 +OK,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,12.8116 +OK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.816987375 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,936.75 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.757795 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,729.8915313 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2077.04437 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,56.157901 +OK,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.115 +OK,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.05 +OK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.321 +OK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,107658.61 +OK,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,71.42 +OK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,14100.438 +OK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,615.091 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,52.90157671 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.220703241 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.581695585 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,242.3563247 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,482.1926103 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,5020.682082 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1298.623396 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,12.82442914 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1070.936041 +OK,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,301.395 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,150.7752005 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.390789453 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.19185E-05 +OK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,65.36129994 +OK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.159437152 +OK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1060.217934 +OK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.118160104 +OK,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,56.45077826 +OK,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,63.9937829 +OK,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,4.908450261 +OK,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,12.24791411 +OK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.182353404 +OK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,196.702608 +OK,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007924628 +OK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7.23457939 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,6.06566067 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,148.1298973 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.44168789 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.76110322 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.14199049 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.357561022 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.113260113 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,8.643310566 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.731033486 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,20.85434044 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.84944952 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,9.9529426 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,7.45815405 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,18.2443959 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,246.5434897 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.596813073 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002810708 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.39144261 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.351944371 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.31711573 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.914187034 +OK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.066 +OK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.016 +OK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.963 +OK,Sulfur Dioxide,2A1_Cement-production,,TON,4183.002 +OK,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,37.02 +OK,Sulfur Dioxide,2A6_Other-minerals,,TON,1268.791 +OK,Sulfur Dioxide,2B_Chemicals-other,,TON,4754.47 +OK,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,9.799 +OK,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,5.342 +OK,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +OK,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.307 +OK,Sulfur Dioxide,3F_Ag-res-on-field,,TON,127.52 +OK,Sulfur Dioxide,5C_Incineration,biomass,TON,2.72180369 +OK,Sulfur Dioxide,5C_Open-burning-dump,,TON,1.08 +OK,Sulfur Dioxide,5C_Open-burning-residential,,TON,59.685205 +OK,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.224524 +OK,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,4.701 +OK,Volatile Organic Compounds,11C_Other-natural,,TON,861135.16 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.889 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,634.743 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,446.146 +OK,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0.02481917 +OK,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,4759.212312 +OK,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,505.0328764 +OK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1871.352992 +OK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,165.293 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,189.7740453 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,795.5817643 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.124391479 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,255.9383665 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.22234093 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,101.5136945 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.076313722 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,13.45814866 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,4424.358487 +OK,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.258 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,656.9779246 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,280.5326463 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001110792 +OK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,249.8061651 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,178.5890437 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,48496.81956 +OK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,102.4623412 +OK,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2798.750463 +OK,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2745.598917 +OK,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,463.2460321 +OK,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,533.6930128 +OK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1640.567768 +OK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,962.6408957 +OK,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.44497559 +OK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.65083663 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.12465508 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.06328172 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.05939377 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,98.64096979 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,126.0889749 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1864.670682 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.433912917 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,47.84440276 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7215.30281 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1729.215275 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.0139581 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,1.1005493 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.122551779 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,167.2403093 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1201.447732 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,322.4233067 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.054426891 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.428674 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6615.50028 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.78536473 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,11519.69988 +OK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,105134.557 +OK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2734.922425 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,238.1406356 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,20137.7576 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,348.3458838 +OK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,88319.38 +OK,Volatile Organic Compounds,2A1_Cement-production,,TON,827.611 +OK,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.16 +OK,Volatile Organic Compounds,2A6_Other-minerals,,TON,238.199 +OK,Volatile Organic Compounds,2B_Chemicals-other,,TON,997.66 +OK,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,112.707 +OK,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,24.413 +OK,Volatile Organic Compounds,2C7a_Copper-production,,TON,146.55 +OK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,15352.55499 +OK,Volatile Organic Compounds,2D3d_Coating-application,,TON,6843.64854 +OK,Volatile Organic Compounds,2D3e_Degreasing,,TON,426.546 +OK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1123.16921 +OK,Volatile Organic Compounds,2D3h_Printing,,TON,4540.3647 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2204.229829 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,241.8797682 +OK,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,2927.697 +OK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,340.2484821 +OK,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1543.285 +OK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1856.04123 +OK,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1275.2 +OK,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.116722776 +OK,Volatile Organic Compounds,5C_Open-burning-dump,,TON,2.552 +OK,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,646.0550633 +OK,Volatile Organic Compounds,5C_Open-burning-residential,,TON,510.90511 +OK,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,82.046525 +OK,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,49.22606555 +OK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.96 +OR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,35.8309 +OR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,216.4873 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.381678289 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.141632023 +OR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,7.64406252 +OR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.225977727 +OR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.540369607 +OR,Ammonia,1A3bii_Road-LDV,light_oil,TON,1426.347488 +OR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.248641804 +OR,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,52.13248364 +OR,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,36.46257534 +OR,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,11.50973447 +OR,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10.38582784 +OR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.873877952 +OR,Ammonia,1A3c_Rail,diesel_oil,TON,4.885153809 +OR,Ammonia,1A3c_Rail,light_oil,TON,0.001511839 +OR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.526619219 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.816864197 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.708278947 +OR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.320524423 +OR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.072920551 +OR,Ammonia,1A4bi_Residential-stationary,biomass,TON,725.7336474 +OR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,13.63274025 +OR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.04265344 +OR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,410.9890736 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.422657994 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.219620954 +OR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.014882081 +OR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.288748984 +OR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.402945542 +OR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.72477475 +OR,Ammonia,2C_Iron-steel-alloy,Other_Fuel,TON,2.02 +OR,Ammonia,3B1a_Cattle-dairy,,TON,5733.289503 +OR,Ammonia,3B1b_Cattle-non-dairy,,TON,7534.416633 +OR,Ammonia,3B2_Manure-sheep,,TON,759.99924 +OR,Ammonia,3B3_Manure-swine,,TON,131.2979791 +OR,Ammonia,3B4_Manure-other,,TON,1202.124 +OR,Ammonia,3B4_Manure-poultry,,TON,2325.737877 +OR,Ammonia,3B4d_Manure-goats,,TON,265.514832 +OR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,24687.08344 +OR,Ammonia,5D1_Wastewater-domestic,,TON,14.29573743 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,170023.4386 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,192572.0522 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10086.39219 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,940115.8851 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,18573.39766 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.957032205 +OR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,147925.2216 +OR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,14690554.67 +OR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,156632.1173 +OR,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,857694.9683 +OR,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3103309.625 +OR,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,353558.7305 +OR,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,633850.4848 +OR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60490.6219 +OR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2393.814114 +OR,Carbon Dioxide,1A3c_Rail,light_oil,TON,116.7594413 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,100295.2647 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,140307.5139 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6206.565048 +OR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,39390.51507 +OR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,297132.1885 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,543870.3966 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,15821.85048 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,52.0859322 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1819.14582 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,146016.9464 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,49622.91294 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,182777.3866 +OR,Carbon Monoxide,11C_Other-natural,,TON,238127.14 +OR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1.312 +OR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,596 +OR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,914.87 +OR,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,12.200327 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1645.356496 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13475.07699 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,809.2195184 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,3661.298 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.216067 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.692604 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.894 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,951.31618 +OR,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.07 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4494.151775 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5247.807038 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.427396847 +OR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5911.04887 +OR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,618.0158898 +OR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,467398.2569 +OR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,518.5300437 +OR,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,41733.23194 +OR,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6752.121967 +OR,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1626.388926 +OR,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1517.709415 +OR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3755.793889 +OR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1818.536054 +OR,Carbon Monoxide,1A3c_Rail,light_oil,TON,35.78985163 +OR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,858.9681344 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,182.9145813 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.352886616 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.499515335 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,87.61901674 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,606.7952406 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,41661.81186 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,159.6913019 +OR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,187.1483262 +OR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,100856.8263 +OR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,87244.85001 +OR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,68.16380175 +OR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,5.21326483 +OR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,864.9130927 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2750.694153 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5584.898154 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.730352967 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.854666 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,29580.80728 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,99.88942415 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,28761.14673 +OR,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,8.58 +OR,Carbon Monoxide,2A6_Other-minerals,,TON,192.486 +OR,Carbon Monoxide,2B_Chemicals-other,,TON,56.23 +OR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3923.716 +OR,Carbon Monoxide,2C3_Aluminum-production,,TON,3.899 +OR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,2 +OR,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,42.109687 +OR,Carbon Monoxide,2D3d_Coating-application,,TON,11.38211 +OR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,18167.3095 +OR,Carbon Monoxide,2H2_Food-and-beverage,,TON,361.3137838 +OR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,6.0015 +OR,Carbon Monoxide,3F_Ag-res-on-field,,TON,2077.6 +OR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,100.3415 +OR,Carbon Monoxide,5C_Incineration,biomass,TON,19.57407083 +OR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,18800.93811 +OR,Carbon Monoxide,5C_Open-burning-residential,,TON,2662.60332 +OR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,331.447654 +OR,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.665114442 +OR,Methane,1A3bii_Road-LDV,light_oil,TON,1720.676604 +OR,Methane,1A3biii_Road-bus,diesel_oil,TON,2.309004289 +OR,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,190.0147787 +OR,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,104.8963472 +OR,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,6.512741874 +OR,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.08017652 +OR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.52884277 +OR,Nitrogen Oxides,11C_Other-natural,,TON,11987.476 +OR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,123 +OR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,8695 +OR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1468.927 +OR,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,14.60131 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1503.33777 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2091.382616 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,140.9742194 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1498.103 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.917276 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,215.561424 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.022 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1867.60056 +OR,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,7.23 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8664.075478 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,100.2511379 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.091140192 +OR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1044.984051 +OR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,980.1560903 +OR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,48388.46199 +OR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1414.570115 +OR,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3893.708549 +OR,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,27755.73652 +OR,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,2522.439537 +OR,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5275.829438 +OR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,147.8008324 +OR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,13452.83045 +OR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.538352592 +OR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5427.035477 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,45.34205754 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.535195607 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.3573232 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,498.7234237 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1032.485228 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,729.2072221 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,44.37220695 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,401.9841804 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1105.94201 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1546.449733 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,245.389607 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,18.7677632 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2084.319633 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5562.918639 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,77.93144476 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.276399274 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.108721 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,275.3975468 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,592.9236202 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1093.616177 +OR,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.4 +OR,Nitrogen Oxides,2A6_Other-minerals,,TON,699.576 +OR,Nitrogen Oxides,2B_Chemicals-other,,TON,349.04 +OR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,579.01 +OR,Nitrogen Oxides,2C3_Aluminum-production,,TON,4.589 +OR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,1.162 +OR,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,8.45 +OR,Nitrogen Oxides,2D3d_Coating-application,,TON,34.05 +OR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3374.62848 +OR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +OR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,6.0015 +OR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,78.4 +OR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,54.0585 +OR,Nitrogen Oxides,5C_Incineration,biomass,TON,350.5044287 +OR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,556.240706 +OR,Nitrogen Oxides,5C_Open-burning-residential,,TON,187.948429 +OR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,14.73100707 +OR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.566618583 +OR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1136.452491 +OR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.401613887 +OR,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,69.48206475 +OR,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.655419733 +OR,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.468342437 +OR,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.236009957 +OR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.874419562 +OR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.173 +OR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,788 +OR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,177.4137945 +OR,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.273455 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1026.25641 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.088499565 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.10826748 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,45.41904536 +OR,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.06878 +OR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,157000.6046 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,58.64746356 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.316178548 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.376114501 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.38067759 +OR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,14.7233854 +OR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.12606594 +OR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.324227155 +OR,PM10 Filterable,2A1_Cement-production,,TON,62.53068 +OR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21734.92673 +OR,PM10 Filterable,2A6_Other-minerals,,TON,4805.132169 +OR,PM10 Filterable,2B_Chemicals-other,,TON,281.9262 +OR,PM10 Filterable,2C_Iron-steel-alloy,,TON,367.9714332 +OR,PM10 Filterable,2C3_Aluminum-production,,TON,2.5136 +OR,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,26.6817716 +OR,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,2.9172616 +OR,PM10 Filterable,2D3d_Coating-application,,TON,0.162 +OR,PM10 Filterable,2H1_Pulp-and-paper,,TON,3314.785477 +OR,PM10 Filterable,2H2_Food-and-beverage,,TON,5.501113893 +OR,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,76.42863174 +OR,PM10 Filterable,2I_Wood-processing,,TON,163.9708 +OR,PM10 Filterable,3Dc_Other-farm,,TON,26161.851 +OR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,98.01315555 +OR,PM10 Filterable,5C_Incineration,biomass,TON,5.53356 +OR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1891.218793 +OR,PM10 Filterable,5C_Open-burning-residential,,TON,1190.34026 +OR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,54.8861705 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.871621 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,865.943 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,326.29827 +OR,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.36415 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,113.2691047 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.54137873 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.265426069 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1094.98719 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.192195 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,19.29836333 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,112.2813649 +OR,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.181 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,711.9310583 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,28.73915685 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574082 +OR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,132.5105808 +OR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,157000.6046 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,87.72970811 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1911.589421 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,87.59365722 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,125.3203774 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1641.021868 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,209.3771042 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,325.8008734 +OR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.761176623 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,411.7716849 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015747752 +OR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,309.4294767 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,61.34239636 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.53150577 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.117128787 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.025909079 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.3748131 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,37.75216892 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.77478577 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,33.63281825 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,293.3997119 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12994.07428 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,32.4459767 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.481516915 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.24299321 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,504.9411637 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,36.84305451 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006580822 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9968649 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,327.8032151 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.11313481 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,164.6289669 +OR,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.518 +OR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,67.842 +OR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21734.92673 +OR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4838.07261 +OR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,751.51 +OR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,984.12781 +OR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,5.093 +OR,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,44.33 +OR,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,3.31507 +OR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,39.827451 +OR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.245 +OR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,6108.345386 +OR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,974.7577148 +OR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,101.874739 +OR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,300.5369 +OR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,26161.851 +OR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,235.2 +OR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,112.7275 +OR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,19.26814197 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1891.218793 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1190.34026 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,54.8861705 +OR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.086405 +OR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,381.292 +OR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,177.3948545 +OR,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.101479 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,871.4857869 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.023674499 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.14592286 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,35.07182078 +OR,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0644812 +OR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,18406.36102 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,54.45015862 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.240238262 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.973823367 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.342071547 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,11.31519445 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.865402294 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.37832513 +OR,PM2.5 Filterable,2A1_Cement-production,,TON,22.3385656 +OR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2173.492673 +OR,PM2.5 Filterable,2A6_Other-minerals,,TON,711.7709374 +OR,PM2.5 Filterable,2B_Chemicals-other,,TON,103.122482 +OR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,315.5049721 +OR,PM2.5 Filterable,2C3_Aluminum-production,,TON,1.2107686 +OR,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,18.0425963 +OR,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,2.288497018 +OR,PM2.5 Filterable,2D3d_Coating-application,,TON,0.117664 +OR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2142.104215 +OR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,3.617817894 +OR,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,43.00181236 +OR,PM2.5 Filterable,2I_Wood-processing,,TON,63.2539 +OR,PM2.5 Filterable,3Dc_Other-farm,,TON,5232.184 +OR,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,64.35381162 +OR,PM2.5 Filterable,5C_Incineration,biomass,TON,4.711 +OR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1457.940727 +OR,PM2.5 Filterable,5C_Open-burning-residential,,TON,1090.10177 +OR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,42.3119472 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.785026 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,459.235 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,326.27933 +OR,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.192174 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,109.840425 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.38864552 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.263454032 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,940.2171174 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.127369924 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,13.3360387 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,101.9341161 +OR,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.176701 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,690.5731599 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.45668877 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000574082 +OR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,32.9916265 +OR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,18406.36102 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,80.22070528 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1251.449599 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,76.6252281 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,83.00844553 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1486.674265 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,191.4757663 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,289.4983875 +OR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.624850936 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,384.6420568 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014516455 +OR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,278.6550513 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,57.23486316 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.453408892 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.663964878 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.950565371 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,102.213578 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.83036291 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.77478577 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.62383953 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,269.9399971 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12983.45057 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,29.03777505 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.22085246 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.297087275 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,489.7930471 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,33.89566816 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006580822 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9069597 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,301.579545 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.74973621 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,151.4586752 +OR,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.518 +OR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,27.649886 +OR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2173.492673 +OR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,744.7115779 +OR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,587.116282 +OR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,931.662173 +OR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3.790169 +OR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,35.6909347 +OR,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,2.686305418 +OR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,39.783115 +OR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.245 +OR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4886.408432 +OR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,972.8750652 +OR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,68.44789482 +OR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,199.8202 +OR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5232.184 +OR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,235.2 +OR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,79.06812517 +OR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,18.44558197 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1457.940727 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1090.10177 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,42.3119472 +OR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.9 +OR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,11300 +OR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,108.2916 +OR,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.25165 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.88306206 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.476874474 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.269724975 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,347.011983 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.685342 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,262.55977 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,193.36164 +OR,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.188 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,204.5271466 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.464911119 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000109225 +OR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,116.6199014 +OR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.62049602 +OR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,455.8328344 +OR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.710311407 +OR,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,26.60295469 +OR,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,33.68194924 +OR,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,3.874347165 +OR,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6.875757237 +OR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.876493097 +OR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,128.4542928 +OR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00298924 +OR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1382.230914 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,11.03801424 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.390700453 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.32409447 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.086935831 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.81891426 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.5333159 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.137210645 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,8.569464744 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.654001476 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,245.8790371 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,580.755911 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,44.41704585 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,12.97269376 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,118.3215831 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.407929733 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001145552 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.39570897 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.748455934 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.22539139 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.701720939 +OR,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.518 +OR,Sulfur Dioxide,2A6_Other-minerals,,TON,166.204 +OR,Sulfur Dioxide,2B_Chemicals-other,,TON,38.78 +OR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,68.105 +OR,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.406 +OR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,2 +OR,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,25.133 +OR,Sulfur Dioxide,2D3d_Coating-application,,TON,0.041261 +OR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,3171.683792 +OR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +OR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,6.0015 +OR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,11.76 +OR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,27.0705 +OR,Sulfur Dioxide,5C_Incineration,biomass,TON,20.1416819 +OR,Sulfur Dioxide,5C_Open-burning-residential,,TON,31.3247462 +OR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.18295162 +OR,Volatile Organic Compounds,11C_Other-natural,,TON,1296968.45 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.237 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,71.5 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,283.68744 +OR,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,44.800013 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,161.5698509 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,658.2828032 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.859451553 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,262.11581 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.013322 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.815126 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.031 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,81.479508 +OR,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.398 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,890.2966652 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,364.9791971 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001481056 +OR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,268.1703125 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,146.6286862 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,36831.65326 +OR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,80.764885 +OR,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2509.705369 +OR,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1580.778566 +OR,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,382.0920111 +OR,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,365.6779498 +OR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,921.6619281 +OR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,720.3554283 +OR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.379794005 +OR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,181.8120223 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,28.75969366 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.047914735 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.090077531 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.284074075 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,151.6485088 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2072.327937 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.522410019 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,47.28860937 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7212.604321 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,15172.69598 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,9.54293313 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.729857299 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,118.9162818 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,533.9447064 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,422.1094992 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.022179455 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.4865287 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10884.9331 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.58939276 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,9848.239733 +OR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,409.031769 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,89.4055877 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11068.57566 +OR,Volatile Organic Compounds,2A6_Other-minerals,,TON,64.376 +OR,Volatile Organic Compounds,2B_Chemicals-other,,TON,59.71 +OR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,281.352 +OR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.536 +OR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,356.2 +OR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,15975.10124 +OR,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,6.679 +OR,Volatile Organic Compounds,2D3d_Coating-application,,TON,6702.488246 +OR,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,3.77 +OR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,855.77793 +OR,Volatile Organic Compounds,2D3h_Printing,,TON,1.27 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,217.8060639 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,919.1967911 +OR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,5707.162177 +OR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,139.5372254 +OR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,123.5395 +OR,Volatile Organic Compounds,2I_Wood-processing,,TON,209.2 +OR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7150.6656 +OR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,176.4 +OR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,60.6925 +OR,Volatile Organic Compounds,5C_Incineration,biomass,TON,5.277265529 +OR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1290.479218 +OR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,268.140017 +OR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,61.8176254 +OR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,71.9016001 +PA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,4.1609 +PA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,26.3361993 +PA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,175.245524 +PA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,17.524424 +PA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,175.77407 +PA,Ammonia,1A1b_Pet-refining,natural_gas,TON,109.6627641 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.321825388 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.604751409 +PA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,6.7281 +PA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.135 +PA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,2.2067 +PA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,46.0800376 +PA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,19.10497 +PA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,41.9389487 +PA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.65519985 +PA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,519.5114659 +PA,Ammonia,1A2c_Chemicals,natural_gas,TON,1.36 +PA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.005 +PA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1102 +PA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,16.63985642 +PA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.480703449 +PA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,10.27457327 +PA,Ammonia,1A3bii_Road-LDV,light_oil,TON,4429.366891 +PA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.736826973 +PA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,125.2876827 +PA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,124.0543877 +PA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,24.42200531 +PA,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,34.3686167 +PA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,141.2729456 +PA,Ammonia,1A3c_Rail,diesel_oil,TON,9.256914918 +PA,Ammonia,1A3c_Rail,light_oil,TON,0.003362977 +PA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12.61590402 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.028851919 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.87906853 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.53800287 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.968302036 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.998037706 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.43255199 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.285810783 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.780067701 +PA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.960597099 +PA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,13.02518088 +PA,Ammonia,1A4bi_Residential-stationary,biomass,TON,859.2517304 +PA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,282.7825325 +PA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,19.39134602 +PA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,15.28527995 +PA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,61.28782819 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.093920069 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.176857958 +PA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.052001968 +PA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,6.287148759 +PA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.667546047 +PA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.514209438 +PA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0435 +PA,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.173 +PA,Ammonia,2A1_Cement-production,,TON,3.0266 +PA,Ammonia,2A2_Lime-production,Other_Fuel,TON,22.9966 +PA,Ammonia,2A6_Other-minerals,,TON,174.4119 +PA,Ammonia,2B_Chemicals-other,,TON,190.8113 +PA,Ammonia,2C_Iron-steel-alloy,,TON,12.241884 +PA,Ammonia,2C3_Aluminum-production,,TON,0.4137 +PA,Ammonia,2C6_Zinc-production,,TON,27.6 +PA,Ammonia,2C7_Other-metal,Other_Fuel,TON,236.666482 +PA,Ammonia,2D3d_Coating-application,,TON,20.6797 +PA,Ammonia,2D3e_Degreasing,,TON,0.974 +PA,Ammonia,2D3h_Printing,,TON,13.2314 +PA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,1.7437 +PA,Ammonia,2H1_Pulp-and-paper,,TON,138.5652 +PA,Ammonia,2H2_Food-and-beverage,,TON,46.0022 +PA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,13.5782 +PA,Ammonia,3B1a_Cattle-dairy,,TON,27269.88524 +PA,Ammonia,3B1b_Cattle-non-dairy,,TON,2390.806805 +PA,Ammonia,3B2_Manure-sheep,,TON,338.309664 +PA,Ammonia,3B3_Manure-swine,,TON,7466.561018 +PA,Ammonia,3B4_Manure-other,,TON,1563.71556 +PA,Ammonia,3B4_Manure-poultry,,TON,21709.55703 +PA,Ammonia,3B4d_Manure-goats,,TON,412.73694 +PA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,9547.954813 +PA,Ammonia,5A_Solid-waste-disposal,,TON,102.5 +PA,Ammonia,5C_Incineration,,TON,1.57 +PA,Ammonia,5C_Incineration,biomass,TON,0.274854 +PA,Ammonia,5D1_Wastewater-domestic,,TON,280.28814 +PA,Ammonia,5D2_Wastewater-industrial,biomass,TON,21.6 +PA,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.000375 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,654885.8792 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,757578.9612 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,42013.70781 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2046256.154 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,39514.99066 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,9.91406798 +PA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,309593.7751 +PA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,39517075.78 +PA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,382675.081 +PA,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1698160.549 +PA,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,9387740.61 +PA,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,646276.351 +PA,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1838510.411 +PA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1392372.173 +PA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5296.363517 +PA,Carbon Dioxide,1A3c_Rail,light_oil,TON,259.8291732 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,280653.8143 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,392597.8331 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17339.64543 +PA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,118051.5324 +PA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,950065.3756 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,626311.9984 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13005.11223 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,67.84136963 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6356.5677 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,406030.268 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,82208.52278 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,302812.3236 +PA,Carbon Monoxide,11C_Other-natural,,TON,63897.753 +PA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,1704.5056 +PA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,399.2404 +PA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,104.478734 +PA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,15766.88932 +PA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,88.51238 +PA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.012 +PA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2583.428997 +PA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2484.99758 +PA,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.004043 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5112.57879 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,53682.52004 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3234.079966 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2308.780402 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,10357.04783 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,2684.686624 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2746.08151 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2254.955484 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,411.1807939 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,93.93073192 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,24356.73893 +PA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,18.075886 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.175 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,25.65 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,13.1908 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,10055.17781 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,11253.4662 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.85479408 +PA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10867.34835 +PA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1155.90281 +PA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,981744.1545 +PA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1407.514738 +PA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,76253.48503 +PA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,17479.75365 +PA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,3006.538091 +PA,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4043.306338 +PA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,84441.77589 +PA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3000.562287 +PA,Carbon Monoxide,1A3c_Rail,light_oil,TON,79.55445767 +PA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1298.294773 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,870.9818408 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4677.373387 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,951.089435 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,34.26433845 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,67.21345313 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6235.474959 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1697.897637 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,117929.567 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,446.7768606 +PA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,560.8956133 +PA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,325446.1277 +PA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,112455.223 +PA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1767.391575 +PA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,9429.483669 +PA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,95.28488445 +PA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,5003.686102 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3367.818199 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4170.300621 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.465097819 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,72.887629 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,82531.31142 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,165.4836618 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,47595.71772 +PA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1 +PA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,10.35433851 +PA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,68.50232149 +PA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.2262 +PA,Carbon Monoxide,2A1_Cement-production,,TON,1154.9356 +PA,Carbon Monoxide,2A2_Lime-production,,TON,972.8867 +PA,Carbon Monoxide,2A6_Other-minerals,,TON,2118.28935 +PA,Carbon Monoxide,2B_Chemicals-other,,TON,691.4783 +PA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,10339.12229 +PA,Carbon Monoxide,2C3_Aluminum-production,,TON,15.15069 +PA,Carbon Monoxide,2C5_Lead-production,,TON,21.1486 +PA,Carbon Monoxide,2C6_Zinc-production,,TON,27323.9333 +PA,Carbon Monoxide,2C7_Other-metal,,TON,363.466443 +PA,Carbon Monoxide,2C7a_Copper-production,,TON,0.05 +PA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,4.0807 +PA,Carbon Monoxide,2D3d_Coating-application,,TON,60.1013 +PA,Carbon Monoxide,2D3h_Printing,,TON,18.8649 +PA,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,12.7319 +PA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,524.4738 +PA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1218.478817 +PA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,2211.4859 +PA,Carbon Monoxide,3Dc_Other-farm,,TON,0.1 +PA,Carbon Monoxide,3F_Ag-res-on-field,,TON,128.7 +PA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1252.11684 +PA,Carbon Monoxide,5C_Incineration,,TON,100.1169729 +PA,Carbon Monoxide,5C_Incineration,biomass,TON,702.7355569 +PA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,67040.8322 +PA,Carbon Monoxide,5C_Open-burning-residential,,TON,1807.809925 +PA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,804.514789 +PA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.4 +PA,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.06431 +PA,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.589030126 +PA,Methane,1A3bii_Road-LDV,light_oil,TON,3911.988032 +PA,Methane,1A3biii_Road-bus,diesel_oil,TON,3.869293881 +PA,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,300.5129372 +PA,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,229.095441 +PA,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,7.699221842 +PA,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,25.74905569 +PA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,429.5743911 +PA,Nitrogen Oxides,11C_Other-natural,,TON,8305.3409 +PA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,2387.0683 +PA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,254.86732 +PA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,404.382517 +PA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,176498.9976 +PA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,939.4037 +PA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.054 +PA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2470.645753 +PA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3816.0248 +PA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.01617 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5709.720481 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8176.459263 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,558.7817302 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2635.991202 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4281.23774 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,21.28287958 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1369.839392 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6026.817402 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2891.264735 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,19.18914009 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,27591.4061 +PA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,60.30965 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,12.7989 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,18.282 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,18725.6606 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,214.0037216 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.182280458 +PA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2832.920163 +PA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1844.91633 +PA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,113626.1564 +PA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4009.420332 +PA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,8000.17271 +PA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,74806.49804 +PA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,4411.675973 +PA,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,13526.01563 +PA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3445.709173 +PA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,20411.55266 +PA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.207562896 +PA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11377.67494 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,361.80399 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2096.507074 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3559.45561 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,379.3488269 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,187.7037228 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8286.538094 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2879.858688 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2041.755679 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,124.1703649 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1204.646251 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3570.3135 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1679.166558 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,6362.60592 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,153.3033331 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,343.4224965 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,12203.93867 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6549.945108 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,76.55054594 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.662957618 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,68.604701 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,784.1963994 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,982.2794884 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1809.411125 +PA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.15 +PA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,5.487865745 +PA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,40.45713426 +PA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.8454 +PA,Nitrogen Oxides,2A1_Cement-production,,TON,11250.876 +PA,Nitrogen Oxides,2A2_Lime-production,,TON,4390.6677 +PA,Nitrogen Oxides,2A6_Other-minerals,,TON,7300.472505 +PA,Nitrogen Oxides,2B_Chemicals-other,,TON,272.1872 +PA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,5503.827029 +PA,Nitrogen Oxides,2C3_Aluminum-production,,TON,37.836715 +PA,Nitrogen Oxides,2C5_Lead-production,,TON,100.5714 +PA,Nitrogen Oxides,2C6_Zinc-production,,TON,290.1 +PA,Nitrogen Oxides,2C7_Other-metal,,TON,118.530581 +PA,Nitrogen Oxides,2C7a_Copper-production,,TON,0.107576 +PA,Nitrogen Oxides,2D3d_Coating-application,,TON,68.251 +PA,Nitrogen Oxides,2D3h_Printing,,TON,34.713 +PA,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,10.1708 +PA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,805.4057 +PA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,105.2399 +PA,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,131.60035 +PA,Nitrogen Oxides,3Dc_Other-farm,,TON,1.526 +PA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,5.5 +PA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,470.00334 +PA,Nitrogen Oxides,5C_Incineration,,TON,1350.991587 +PA,Nitrogen Oxides,5C_Incineration,biomass,TON,2794.425936 +PA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1983.456214 +PA,Nitrogen Oxides,5C_Open-burning-residential,,TON,127.610051 +PA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,32.364152 +PA,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,0.07656 +PA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.959518138 +PA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2674.977474 +PA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.773090305 +PA,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,149.6284702 +PA,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,8.782504624 +PA,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.390303834 +PA,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.052958735 +PA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.11159052 +PA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,437.74791 +PA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,33.036148 +PA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.84319032 +PA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,8897.32786 +PA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,159.1780525 +PA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.004 +PA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,147.0854505 +PA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,593.020321 +PA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000809 +PA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.535113 +PA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.00031 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3313.542118 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8255.947654 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,3.949249003 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,142.2134997 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1661.025692 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,895.8867306 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,11.25160263 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1365.915109 +PA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.740621 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0857193 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.3652 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.526793 +PA,PM10 Filterable,1A3aii_Domestic-aviation,Other_Fuel,TON,3.14996 +PA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,74969.7289 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,565.09866 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,130.6876106 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4309.430537 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,95.01382282 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.13322349 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,71.74571675 +PA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,381.756389 +PA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,311.4710414 +PA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,20.4465393 +PA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,62.01678008 +PA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.807065 +PA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,2.076844 +PA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0366085 +PA,PM10 Filterable,2A1_Cement-production,,TON,1638.263246 +PA,PM10 Filterable,2A2_Lime-production,,TON,194.4126041 +PA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,85348.61632 +PA,PM10 Filterable,2A6_Other-minerals,,TON,18489.0434 +PA,PM10 Filterable,2B_Chemicals-other,,TON,158.7172428 +PA,PM10 Filterable,2C_Iron-steel-alloy,,TON,1922.629705 +PA,PM10 Filterable,2C3_Aluminum-production,,TON,15.53014198 +PA,PM10 Filterable,2C5_Lead-production,,TON,23.10716525 +PA,PM10 Filterable,2C6_Zinc-production,,TON,67.430119 +PA,PM10 Filterable,2C7_Other-metal,,TON,217.0641433 +PA,PM10 Filterable,2C7a_Copper-production,,TON,54.552472 +PA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.24254065 +PA,PM10 Filterable,2D3d_Coating-application,,TON,6.536165 +PA,PM10 Filterable,2H1_Pulp-and-paper,,TON,299.6910463 +PA,PM10 Filterable,2H2_Food-and-beverage,,TON,193.8923165 +PA,PM10 Filterable,2H3_Other-industrial-processes,,TON,533.9005679 +PA,PM10 Filterable,2I_Wood-processing,,TON,29.077246 +PA,PM10 Filterable,3Dc_Other-farm,,TON,53048.83235 +PA,PM10 Filterable,5A_Solid-waste-disposal,,TON,248.7403763 +PA,PM10 Filterable,5C_Incineration,,TON,7.81052999 +PA,PM10 Filterable,5C_Incineration,biomass,TON,30.37254102 +PA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,6743.75151 +PA,PM10 Filterable,5C_Open-burning-residential,,TON,4743.21267 +PA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,236.109037 +PA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.7378264 +PA,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.00375705 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,796.7983 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,46.197838 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,32.02603209 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,58086.13123 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,186.300365 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.004 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,294.6731618 +PA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1012.08807 +PA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.001253 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,455.7969198 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,76.01104904 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.207083146 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,94.92907774 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,253.855707 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,5.51387396 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,122.2772631 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,389.2537802 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,184.3726367 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,11.51795245 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3073.983673 +PA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.152326 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0965076 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.415 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.019891 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1632.457606 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,61.1136244 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001148164 +PA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,253.5408011 +PA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,74969.7289 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,143.5111722 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3950.947416 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,207.343902 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,207.9548085 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3604.578603 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,353.8987653 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,735.7928213 +PA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,209.0613909 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,703.3414393 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.035016619 +PA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,523.7586044 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,593.8986952 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,60.70398694 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,367.8696203 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.756305943 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,3.44295935 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,145.6574421 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,299.7547808 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,105.6292974 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.164271518 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,103.1390164 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,915.9842392 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,16528.25555 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,844.7640855 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,318.1113189 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,68.42219865 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,58.42464252 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,628.6936853 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,15.30780708 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008571448 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,10.5560479 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,826.6698979 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.20144816 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,272.744831 +PA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.25 +PA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.291337279 +PA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,3.600837721 +PA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0567 +PA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1760.068346 +PA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,251.365982 +PA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,85356.64232 +PA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,19178.31012 +PA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,200.9313319 +PA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3367.210557 +PA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,71.535147 +PA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,73.4749693 +PA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,303.8333 +PA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,393.6976954 +PA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,204.551776 +PA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.422182965 +PA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,95.164665 +PA,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.6 +PA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,28.2696 +PA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,61.5977 +PA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,506.8886 +PA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3427.280576 +PA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,803.956012 +PA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,52.2036 +PA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,53051.62909 +PA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,19.8 +PA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,318.0502409 +PA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,8.690085285 +PA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,283.1817293 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6743.75151 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,808.19694 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,123.639718 +PA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.7944241 +PA,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.005819 +PA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,69.05056 +PA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,25.923323 +PA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.905322746 +PA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3919.19081 +PA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,114.1980279 +PA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.004 +PA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,116.9537544 +PA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,526.2172954 +PA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000671 +PA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.535113 +PA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.00031 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1427.438252 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7092.552184 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.441533976 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,51.81004835 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,275.0549432 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,594.6051823 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,10.64089064 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,913.8276369 +PA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.579274 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0542116 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.208025 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.007173 +PA,PM2.5 Filterable,1A3aii_Domestic-aviation,Other_Fuel,TON,3.14996 +PA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11506.5922 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,478.1834937 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,107.0635988 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1585.240507 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,35.59191883 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.588305167 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,59.94124172 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,293.3869345 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,240.3259634 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,15.88080435 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,50.75982867 +PA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.385244 +PA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0366085 +PA,PM2.5 Filterable,2A1_Cement-production,,TON,783.0972498 +PA,PM2.5 Filterable,2A2_Lime-production,,TON,81.84291911 +PA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,8533.296232 +PA,PM2.5 Filterable,2A6_Other-minerals,,TON,3507.058257 +PA,PM2.5 Filterable,2B_Chemicals-other,,TON,115.630404 +PA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1308.885519 +PA,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.75692612 +PA,PM2.5 Filterable,2C5_Lead-production,,TON,20.49068544 +PA,PM2.5 Filterable,2C6_Zinc-production,,TON,5.8635275 +PA,PM2.5 Filterable,2C7_Other-metal,,TON,120.3628103 +PA,PM2.5 Filterable,2C7a_Copper-production,,TON,20.73656551 +PA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.05876865 +PA,PM2.5 Filterable,2D3d_Coating-application,,TON,6.52986 +PA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,149.4422417 +PA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,151.6946519 +PA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,409.230037 +PA,PM2.5 Filterable,2I_Wood-processing,,TON,1.6769961 +PA,PM2.5 Filterable,3Dc_Other-farm,,TON,10626.73435 +PA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,160.4984792 +PA,PM2.5 Filterable,5C_Incineration,,TON,5.16052804 +PA,PM2.5 Filterable,5C_Incineration,biomass,TON,10.88882078 +PA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,5198.757918 +PA,PM2.5 Filterable,5C_Open-burning-residential,,TON,740.138365 +PA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,103.6342155 +PA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.904829377 +PA,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.00375705 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,428.10077 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,39.085038 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,20.08816071 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,53108.00217 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,141.3203 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.004 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,264.5414611 +PA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,945.2840844 +PA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.001115 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,420.0146829 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,69.99720761 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.795258391 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,25.84587963 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,222.0199583 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,3.001287262 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,71.51395642 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,165.8799607 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,141.3125877 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,11.52736922 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2624.665364 +PA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,3.990979 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.065 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.257825 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.500271 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1501.860373 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,56.22452721 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001056311 +PA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,84.0085563 +PA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11506.5922 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,133.1045718 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2780.510145 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,190.4321317 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,153.6663568 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3319.258849 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,330.4375989 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,666.6489019 +PA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,184.9090668 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,649.8131014 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.032215294 +PA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,483.8735264 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,580.3497819 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,58.73355958 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,234.7921834 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.945252083 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,3.006615469 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,137.570244 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,275.7743589 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,97.1789842 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.991129187 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,94.88787261 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,842.7053678 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,16517.72752 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,756.0284895 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,246.9662119 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,61.2349984 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,48.31264449 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,578.3982443 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,14.08318654 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007885734 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.7115658 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,760.5361429 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.58533246 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,250.9252974 +PA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.442935 +PA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.158729386 +PA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.961845614 +PA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0567 +PA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,904.9023159 +PA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,138.7962863 +PA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,8542.352212 +PA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4196.562367 +PA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,157.8444633 +PA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2753.466444 +PA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,56.76149142 +PA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,70.85849589 +PA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,242.2670248 +PA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,296.9964663 +PA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,170.7358677 +PA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.238412965 +PA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,86.79136 +PA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.6 +PA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,26.2688 +PA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,32.9177 +PA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,356.6398383 +PA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3145.699437 +PA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,679.2853557 +PA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,24.80334 +PA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10629.53109 +PA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,19.8 +PA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,212.2183437 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,6.044642995 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,187.1934093 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,5198.757918 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4343.78504 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,182.0173222 +PA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.961427077 +PA,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.005819 +PA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,8560.431 +PA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,31.82082 +PA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,8005.705823 +PA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,837041.263 +PA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1901.1914 +PA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.003 +PA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,519.0489089 +PA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,4736.867502 +PA,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.034927 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,156.8941865 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.86689398 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.044875288 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8417.034419 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,549.4442925 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1.680237589 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2611.897016 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,29577.10316 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,16187.2745 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,35.087889 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3691.71255 +PA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,26.83221 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,12.356 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.944352 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,440.1567468 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,7.251084048 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.00021845 +PA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,316.7962802 +PA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.41314494 +PA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,875.3479454 +PA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.226678267 +PA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,37.68421 +PA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,102.865428 +PA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,7.139601728 +PA,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,20.13916902 +PA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.90722945 +PA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,209.0838964 +PA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.051868377 +PA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3066.918666 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,30.62351768 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4007.868922 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,19267.60495 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2201.776146 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,404.2987682 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,78.31896205 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,60.36744859 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,73.64756829 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.383332498 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,25.39291981 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,194.6287736 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,364.0485298 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,15058.16259 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1523.465157 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,8.45653085 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,75.04654283 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,134.72141 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.674455888 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001492067 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.36713074 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,83.14066087 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.91597497 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,62.14418115 +PA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.047894151 +PA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,2.454924849 +PA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0045 +PA,Sulfur Dioxide,2A1_Cement-production,,TON,6523.1508 +PA,Sulfur Dioxide,2A2_Lime-production,,TON,1918.5792 +PA,Sulfur Dioxide,2A6_Other-minerals,,TON,2978.135102 +PA,Sulfur Dioxide,2B_Chemicals-other,,TON,155.165823 +PA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1669.587765 +PA,Sulfur Dioxide,2C3_Aluminum-production,,TON,3.51332 +PA,Sulfur Dioxide,2C5_Lead-production,,TON,138.7185 +PA,Sulfur Dioxide,2C6_Zinc-production,,TON,1554.9467 +PA,Sulfur Dioxide,2C7_Other-metal,,TON,294.569498 +PA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.123773 +PA,Sulfur Dioxide,2D3d_Coating-application,,TON,1.2247 +PA,Sulfur Dioxide,2D3e_Degreasing,,TON,0.0017 +PA,Sulfur Dioxide,2D3h_Printing,,TON,0.4019 +PA,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,1.4276 +PA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,326.4947 +PA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.266 +PA,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,306.587317 +PA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.32 +PA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.66 +PA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,200.03285 +PA,Sulfur Dioxide,5C_Incineration,,TON,171.8067357 +PA,Sulfur Dioxide,5C_Incineration,biomass,TON,500.4729985 +PA,Sulfur Dioxide,5C_Open-burning-residential,,TON,21.2683485 +PA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.60166235 +PA,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.000459 +PA,Volatile Organic Compounds,11C_Other-natural,,TON,420164.208 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,95.6489 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,20.291 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,29.67278427 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,413.934271 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,12.5786 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.006 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,176.0444674 +PA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,837.3216743 +PA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,856.1016558 +PA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2269.132415 +PA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.125162 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,605.2986514 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2666.868758 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.60442746 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,102.7334803 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,376.5683681 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,53.74859587 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,104.4860239 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,135.0597978 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,30.45785875 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,5.032106808 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3128.808269 +PA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,30.559343 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2334 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,5.9429 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.109769 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2012.091705 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,873.1790658 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002962112 +PA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,627.1408366 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,284.1027394 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,83032.66361 +PA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,204.3776969 +PA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4649.309754 +PA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,3911.328833 +PA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,719.1031114 +PA,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,911.1811934 +PA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16462.11848 +PA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1093.317666 +PA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.824819066 +PA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,538.0757912 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,16.30407573 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,68.18881412 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,95.17146465 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.771719105 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.484833118 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,537.8295488 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,424.3406778 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,7635.760706 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.462074026 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,141.7311446 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,30090.78165 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,20732.39658 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,247.434795 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,342.8902383 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,13.33987535 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,687.926918 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,650.7732928 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,298.4230761 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.028896765 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.1758532 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,31037.28806 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.73623733 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,18368.87788 +PA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,117.8817 +PA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,649.8477582 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,725.3871192 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,25500.79883 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,610.6747762 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,114.118642 +PA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,224.0768 +PA,Volatile Organic Compounds,2A1_Cement-production,,TON,64.0909 +PA,Volatile Organic Compounds,2A2_Lime-production,,TON,24.9447 +PA,Volatile Organic Compounds,2A6_Other-minerals,,TON,570.6190555 +PA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2604.864375 +PA,Volatile Organic Compounds,2B_Chemicals-other,,TON,1437.400361 +PA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1544.531361 +PA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,246.52551 +PA,Volatile Organic Compounds,2C5_Lead-production,,TON,4.9715 +PA,Volatile Organic Compounds,2C6_Zinc-production,,TON,80.8728 +PA,Volatile Organic Compounds,2C7_Other-metal,,TON,355.6581248 +PA,Volatile Organic Compounds,2C7a_Copper-production,,TON,13.546241 +PA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,51261.3733 +PA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,17.1114 +PA,Volatile Organic Compounds,2D3d_Coating-application,,TON,42819.23727 +PA,Volatile Organic Compounds,2D3e_Degreasing,,TON,9392.933085 +PA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,3036.433785 +PA,Volatile Organic Compounds,2D3h_Printing,,TON,27531.80001 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,8666.73637 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0.745364825 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2351.609802 +PA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1265.512925 +PA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1712.308806 +PA,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,1749.315512 +PA,Volatile Organic Compounds,2I_Wood-processing,,TON,0.4 +PA,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.774 +PA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3641.654442 +PA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,13.2 +PA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,196.413831 +PA,Volatile Organic Compounds,5C_Incineration,,TON,3.529800206 +PA,Volatile Organic Compounds,5C_Incineration,biomass,TON,54.341933 +PA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,4601.618833 +PA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,182.0570355 +PA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,130.312808 +PA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,295.2034894 +PA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,2.519341 +PA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,7.8729 +PA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,2.263082 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.947689218 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.067447785 +PR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.269414119 +PR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.126338092 +PR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.363755725 +PR,Ammonia,1A3bii_Road-LDV,light_oil,TON,828.8602429 +PR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.935901092 +PR,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,26.98225138 +PR,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,24.5926431 +PR,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,6.002628318 +PR,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6.843389067 +PR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.5696208 +PR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.012349168 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.394635906 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.825211969 +PR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.392800976 +PR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.448715311 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.227896306 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.006125193 +PR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016281217 +PR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.62310637 +PR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.225351033 +PR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.524180495 +PR,Ammonia,5D1_Wastewater-domestic,,TON,14.91424053 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,116614.8678 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,92433.81833 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4807.984296 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,525079.7057 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,10384.62719 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.479392946 +PR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,84241.74693 +PR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,9035711.047 +PR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,61818.38592 +PR,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,439517.72 +PR,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2130565.323 +PR,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,195265.2249 +PR,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,449963.1427 +PR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,39990.41956 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,48453.75923 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,67775.43456 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2973.500152 +PR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,48272.32963 +PR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,325911.6493 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28018.10977 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,458.7761709 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.951556471 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1990.170671 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,39219.90766 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27752.05594 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,102241.1972 +PR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1532.367552 +PR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1116.3 +PR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,2224.4275 +PR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2.602495 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,473.478745 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6535.183203 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,380.3280794 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,76.5238691 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,541.8735915 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2510.483389 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3491.310492 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.213773853 +PR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1634.549196 +PR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,385.305282 +PR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,205076.8605 +PR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,225.56442 +PR,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,14869.54856 +PR,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4526.267561 +PR,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1048.548049 +PR,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,962.5425805 +PR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1948.811451 +PR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,0.0527468 +PR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.3491297 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.842168 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.6028425 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.090283 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,293.1248091 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,24277.87274 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,77.08124419 +PR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,229.98933 +PR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,128186.9907 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,155.1745444 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,160.3785197 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.323870953 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.8179258 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10836.60838 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,55.8653819 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,18535.14213 +PR,Carbon Monoxide,2A1_Cement-production,,TON,434.226155 +PR,Carbon Monoxide,2A2_Lime-production,,TON,0 +PR,Carbon Monoxide,2A6_Other-minerals,,TON,0 +PR,Carbon Monoxide,2C5_Lead-production,,TON,0 +PR,Carbon Monoxide,2D3d_Coating-application,,TON,0 +PR,Carbon Monoxide,2D3e_Degreasing,,TON,0 +PR,Carbon Monoxide,2H2_Food-and-beverage,,TON,375.902601 +PR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.54756 +PR,Carbon Monoxide,3Dc_Other-farm,,TON,0 +PR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,107.2367 +PR,Carbon Monoxide,5C_Incineration,biomass,TON,0 +PR,Carbon Monoxide,5C_Open-burning-residential,,TON,322.17553 +PR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,42.763896 +PR,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.734090982 +PR,Methane,1A3bii_Road-LDV,light_oil,TON,605.9023857 +PR,Methane,1A3biii_Road-bus,diesel_oil,TON,0.385792928 +PR,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,45.60073319 +PR,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,89.64828857 +PR,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.841678761 +PR,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8.208868372 +PR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.442021859 +PR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,11617.87885 +PR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1663 +PR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,21753.522 +PR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,9.991356 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,967.54968 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,977.1621519 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,66.81375105 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,298.6578293 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,4734.073725 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4838.904478 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,41.30109726 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045586233 +PR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,563.4555417 +PR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,565.7703142 +PR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,24440.4222 +PR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,546.954049 +PR,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1431.406394 +PR,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,14372.92821 +PR,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1461.24461 +PR,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2776.708966 +PR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60.43803367 +PR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,0.5357105 +PR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.763297 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.996288 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,136.032255 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.572058 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,498.8050023 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,254.4617374 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.45046965 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,491.951678 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,838.5512216 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,301.8299423 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.036908835 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.072048249 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,21.9924395 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,63.82705642 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,331.598669 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,431.4091839 +PR,Nitrogen Oxides,2A1_Cement-production,,TON,2886.028823 +PR,Nitrogen Oxides,2A2_Lime-production,,TON,0 +PR,Nitrogen Oxides,2A6_Other-minerals,,TON,0 +PR,Nitrogen Oxides,2C5_Lead-production,,TON,0 +PR,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +PR,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +PR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +PR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.949104 +PR,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +PR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,100.5976 +PR,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +PR,Nitrogen Oxides,5C_Open-burning-residential,,TON,22.741811 +PR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.9006192 +PR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.3134291 +PR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,518.1140511 +PR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.1556924 +PR,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,31.02077326 +PR,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2.562661024 +PR,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.817754381 +PR,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.841079738 +PR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.602414509 +PR,PM10 Filterable,2H2_Food-and-beverage,,TON,2.975677445 +PR,PM10 Filterable,5C_Open-burning-residential,,TON,144.03132 +PR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,7.0814975 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,594.678272 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,391.1 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2784.9044 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,2.3679005 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,77.08192094 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.043830659 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.579486348 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,15.46949686 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,382.8572695 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,180.7363673 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,397.6915225 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.05885983 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287142 +PR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,67.09051993 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,71.37681282 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,900.6687311 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,79.17026096 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,46.01630746 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1764.800266 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,182.8661686 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,377.8822265 +PR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.248538038 +PR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,0.013186715 +PR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.98793397 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.927528 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,24.2903574 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.115787 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,50.90417271 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,18.23632933 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.370917603 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.35540195 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,328.470485 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28.47689846 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.07151108 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000372899 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.27909556 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,103.5763841 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.77464919 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,92.09319913 +PR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,334.0452499 +PR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.4436597 +PR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,114.7705034 +PR,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +PR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +PR,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1049.54651 +PR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,14.88098735 +PR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0.21579367 +PR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,60.99476 +PR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,144.03132 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.0814975 +PR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.762068334 +PR,PM2.5 Filterable,5C_Open-burning-residential,,TON,131.90255 +PR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.4591523 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,263.4295525 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1698.0489 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.8251055 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,74.76944693 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.98443984 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.579486348 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.697114447 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,272.9037494 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,180.7429136 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,385.7608486 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.78347091 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000287142 +PR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,34.84008782 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,66.63089039 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,513.3272394 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,73.43564165 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,25.31831895 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1631.214015 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,171.3324011 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,346.0595442 +PR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.451977011 +PR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.95830068 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.81967088 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.67915253 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.115787 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,49.37703127 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,16.8249141 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.370917603 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,40.11474276 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,302.2078521 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27.62258801 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.065795502 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000372899 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.18072214 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,95.29107679 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.571411997 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,84.72574516 +PR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,77.37734222 +PR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1013.355717 +PR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.06614525 +PR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0.02776538 +PR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,131.90255 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.4591523 +PR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3170.117276 +PR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,297 +PR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,32364.141 +PR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.1088443 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.3704897 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.846849984 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.106038494 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.95980649 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3621.313294 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,114.2338931 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.29409927 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.46317E-05 +PR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,57.29881123 +PR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,23.31155062 +PR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,176.3913559 +PR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,17.12534415 +PR,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,8.570328977 +PR,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,584.25051 +PR,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,54.11071022 +PR,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,123.2857914 +PR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.780709852 +PR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.6409229 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,51.82671233 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,44.17797253 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.84425026 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.54095618 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.935275638 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.065735433 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,10.5017164 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.605396319 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.095436085 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.013552771 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.49166E-05 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.432910813 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.151034174 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.837164317 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.010987802 +PR,Sulfur Dioxide,2A1_Cement-production,,TON,267.6093494 +PR,Sulfur Dioxide,2A2_Lime-production,,TON,0 +PR,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +PR,Sulfur Dioxide,2C5_Lead-production,,TON,0 +PR,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +PR,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +PR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +PR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0036504 +PR,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +PR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,15.66238 +PR,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +PR,Sulfur Dioxide,5C_Open-burning-residential,,TON,3.790301 +PR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.41066941 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,137.201025 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,7.31 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,338.11294 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.4012115 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,89.42427536 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,317.9804934 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.113870714 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.1316099 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,80.851379 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,497.3239802 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,226.2252024 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000740789 +PR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,217.9954815 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,66.96688982 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,16634.0649 +PR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,32.89775685 +PR,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,938.4886403 +PR,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1115.399081 +PR,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,182.7231763 +PR,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,227.381407 +PR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,746.3947636 +PR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,0.019780065 +PR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.60125362 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.04573875 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.88799735 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.950628 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,73.25744095 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1198.521404 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.252693554 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,58.13204841 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8611.668577 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29.92235706 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.418320161 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001251768 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.00271861 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3574.168271 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.75219383 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6482.374514 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1758.613502 +PR,Volatile Organic Compounds,2A1_Cement-production,,TON,56.66131584 +PR,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +PR,Volatile Organic Compounds,2A6_Other-minerals,,TON,0 +PR,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +PR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,16666.2652 +PR,Volatile Organic Compounds,2D3d_Coating-application,,TON,6024.59748 +PR,Volatile Organic Compounds,2D3e_Degreasing,,TON,0 +PR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,441.08125 +PR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +PR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +PR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,142.9765879 +PR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,0.073008 +PR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0 +PR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,187.779524 +PR,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +PR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,32.444983 +PR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,7.975808 +PR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,75.0124482 +RI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.864 +RI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,62.2795 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.448374183 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.047003184 +RI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.986085 +RI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.5093 +RI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,2.33431 +RI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.239916283 +RI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.036726909 +RI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.73117407 +RI,Ammonia,1A3bii_Road-LDV,light_oil,TON,358.7167192 +RI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.159712324 +RI,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7.79036513 +RI,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,3.214728037 +RI,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,1.727585366 +RI,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.913648117 +RI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.10689047 +RI,Ammonia,1A3c_Rail,diesel_oil,TON,0.026883819 +RI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.580587446 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.730179271 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.818016779 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.366818951 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.208013916 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.435057484 +RI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.060020882 +RI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.920647114 +RI,Ammonia,1A4bi_Residential-stationary,biomass,TON,90.4511074 +RI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,60.27101 +RI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.16001985 +RI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.8009993 +RI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,168.9030317 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.028266963 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001715827 +RI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004509011 +RI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.1690996 +RI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.108040475 +RI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.8933201 +RI,Ammonia,2B_Chemicals-other,,TON,0.8783 +RI,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.38475 +RI,Ammonia,2D3d_Coating-application,,TON,16.0485 +RI,Ammonia,2D3e_Degreasing,,TON,0.881 +RI,Ammonia,2D3h_Printing,,TON,1.281 +RI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,6.1335 +RI,Ammonia,3B1a_Cattle-dairy,,TON,54.067464 +RI,Ammonia,3B1b_Cattle-non-dairy,,TON,17.38179625 +RI,Ammonia,3B2_Manure-sheep,,TON,5.10312 +RI,Ammonia,3B3_Manure-swine,,TON,16.461192 +RI,Ammonia,3B4_Manure-other,,TON,46.8204 +RI,Ammonia,3B4_Manure-poultry,,TON,25.02109236 +RI,Ammonia,3B4d_Manure-goats,,TON,4.891524 +RI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,92.72268493 +RI,Ammonia,5D1_Wastewater-domestic,,TON,3.963472 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,55175.1572 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,64741.89579 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3363.403124 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,152492.7917 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3018.343219 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.2392599 +RI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,26785.88561 +RI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3446486.618 +RI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,10858.6921 +RI,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,122424.4149 +RI,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,291348.5922 +RI,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,55886.91735 +RI,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,59174.96336 +RI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,79839.90032 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25540.1123 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,35727.56295 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1557.186204 +RI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,7376.199597 +RI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,67133.83222 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3476.566061 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,122.3455094 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.2137308 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,551.1721 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,11466.98548 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13305.42133 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,60144.75 +RI,Carbon Monoxide,11C_Other-natural,,TON,1697.1377 +RI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,37.169 +RI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,878.5455 +RI,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,12.9755 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,503.8336181 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4482.666885 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,270.5294616 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.919547979 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.467668458 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1357.367089 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,729.0553623 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,819.2417848 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.10684935 +RI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,983.6859643 +RI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,103.8197749 +RI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,51704.1291 +RI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,38.5540043 +RI,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3227.258153 +RI,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,496.602603 +RI,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,268.9671824 +RI,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,114.3084829 +RI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4180.047872 +RI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,8.59249316 +RI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,196.47225 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.19295 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.34875 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,200.1594 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,154.5253602 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,10235.3117 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,40.5366517 +RI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,35.04906947 +RI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,22057.66948 +RI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,11637.81421 +RI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,301.35515 +RI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,22.00272 +RI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.0049965 +RI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,354.910538 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.70989448 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,42.94853237 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.02369049 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.316591 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,2994.374504 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.61017603 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8950.849 +RI,Carbon Monoxide,2A6_Other-minerals,,TON,0 +RI,Carbon Monoxide,2H2_Food-and-beverage,,TON,99.978908 +RI,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,77.1125 +RI,Carbon Monoxide,5C_Incineration,biomass,TON,27.10898923 +RI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2231.27 +RI,Carbon Monoxide,5C_Open-burning-residential,,TON,162.987 +RI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,10.81699 +RI,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.413228766 +RI,Methane,1A3bii_Road-LDV,light_oil,TON,193.0222809 +RI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.108716073 +RI,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,11.31855734 +RI,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,5.619744896 +RI,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,0.774194398 +RI,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.598575114 +RI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.91808532 +RI,Nitrogen Oxides,11C_Other-natural,,TON,147.686 +RI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,16.443 +RI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,499.1015 +RI,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,2.3845 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,481.1303423 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,703.8096578 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,47.20802648 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.37289392 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,139.2222187 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,228.0167074 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1405.236719 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,16.88450934 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.02278504 +RI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,255.640609 +RI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,167.9118064 +RI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,6207.41965 +RI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,100.2749474 +RI,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,377.1213799 +RI,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,2021.502452 +RI,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,402.1279842 +RI,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,384.2796346 +RI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,178.1773276 +RI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,87.2674548 +RI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1137.992959 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.47285 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,76.86165 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,175.95385 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,262.915553 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,192.0560121 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.2954409 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,75.276616 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,264.9060197 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,194.8424403 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1084.877 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.2400297 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,14.417975 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,854.66282 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,34.56323139 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.591396915 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005294861 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.089525 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,36.6354008 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,159.0858399 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,374.89914 +RI,Nitrogen Oxides,2A6_Other-minerals,,TON,32.62625 +RI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +RI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,13.2065 +RI,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,18.7445 +RI,Nitrogen Oxides,5C_Incineration,biomass,TON,49.9768485 +RI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,66.0139 +RI,Nitrogen Oxides,5C_Open-burning-residential,,TON,11.5049 +RI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.480755 +RI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.094521184 +RI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,223.1503741 +RI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.02726996 +RI,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9.657296329 +RI,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.347298493 +RI,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.233086967 +RI,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.115420181 +RI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.192718057 +RI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.22632 +RI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,7.51795 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.281045269 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.88887523 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,33.31271873 +RI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1685.8721 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.46770974 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.52123 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.152303 +RI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,65.092735 +RI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.80010005 +RI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.8650794 +RI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.77441248 +RI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,4530.92152 +RI,PM10 Filterable,2A6_Other-minerals,,TON,404.8939 +RI,PM10 Filterable,2H2_Food-and-beverage,,TON,0.790788878 +RI,PM10 Filterable,3Dc_Other-farm,,TON,43.858 +RI,PM10 Filterable,5C_Incineration,biomass,TON,5.553915 +RI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,224.447 +RI,PM10 Filterable,5C_Open-burning-residential,,TON,72.8646 +RI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1.791243 +RI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.651 +RI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,20.5465 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,36.43443639 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.49748649 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.416867741 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.629274737 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,34.07181006 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,64.3968802 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,115.4985126 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.663750815 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +RI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,14.08805236 +RI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1685.8721 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,13.48032632 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,418.5232778 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,6.745605258 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,13.70023081 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,133.0121014 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,31.29131142 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,25.52620912 +RI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.03677218 +RI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,2.148121999 +RI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,52.23647765 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.316 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.1805 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.27585 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26.83521622 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.615001767 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.194157313 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.298485007 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,62.00042116 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1648.565733 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,143.4451 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.88571085 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.9063805 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.61347611 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.066275091 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.353201587 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.70109E-05 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.9079169 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,17.40605627 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.212696911 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,52.6731559 +RI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4530.92152 +RI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,408.2548 +RI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,269.348699 +RI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.0595 +RI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,43.858 +RI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.9622002 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,224.447 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,72.8646 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.791243 +RI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.22632 +RI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,7.51795 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.138964525 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.20647104 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,33.30290967 +RI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,376.3328 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.065258035 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.1246812 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.1507905 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,50.024945 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.64248025 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.6648293 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.97592867 +RI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,453.092152 +RI,PM2.5 Filterable,2A6_Other-minerals,,TON,50.6326212 +RI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.734021008 +RI,PM2.5 Filterable,3Dc_Other-farm,,TON,8.767 +RI,PM2.5 Filterable,5C_Incineration,biomass,TON,1.545102 +RI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,173.026 +RI,PM2.5 Filterable,5C_Open-burning-residential,,TON,66.7287 +RI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,1.380876 +RI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.651 +RI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,20.5465 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,35.33230257 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.449001971 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.416373638 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.482876555 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,16.2840459 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,64.49678775 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,112.0336321 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.293359188 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +RI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,6.285270376 +RI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,376.3328 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,12.14545868 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,255.5943013 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,5.967869122 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7.694160484 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,118.2873255 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,28.39149305 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,22.1219729 +RI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.26781096 +RI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1.976272882 +RI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,49.68130849 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.913499 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.78395 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.2743375 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26.03014679 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,8.870821482 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.194157313 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.109530205 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,57.0426611 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1647.499843 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,128.3772 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.7280911 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.7061275 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.8149914 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.974286358 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.324945066 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.70109E-05 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.8806789 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,16.01380394 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.116313857 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,48.4593051 +RI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,453.092152 +RI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,53.9935212 +RI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,269.292731 +RI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.0595 +RI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,8.767 +RI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.9533972 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,173.026 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,66.7287 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.380876 +RI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.677 +RI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,111.48 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,12.78468627 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.447042836 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.086936976 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,81.57989666 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,261.6310762 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,12.14281213 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,33.17562054 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.06540379 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +RI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29.40522928 +RI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.296044527 +RI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,74.27452992 +RI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.119930441 +RI,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2.638586259 +RI,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.216350931 +RI,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.618202139 +RI,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.6532211 +RI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.720778974 +RI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.606741421 +RI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,532.0415069 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,67.86584 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,170.6506 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.36301 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.55617486 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.776991857 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.034424542 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.60470374 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.472356749 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,32.92322537 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2567.548 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,2.777146 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,34.122585 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.3232468 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.756345671 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.002686139 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.70036E-06 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.1198934 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.250933907 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.278005374 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.3141518 +RI,Sulfur Dioxide,2A6_Other-minerals,,TON,3.23665 +RI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +RI,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,266.469 +RI,Sulfur Dioxide,5C_Incineration,biomass,TON,11.9247853 +RI,Sulfur Dioxide,5C_Open-burning-residential,,TON,1.91749 +RI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.1038775 +RI,Volatile Organic Compounds,11C_Other-natural,,TON,12466.377 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.341655 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,42.93926 +RI,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,7.5085 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,51.15334372 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,219.7650469 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.934061576 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.812598506 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.679554146 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,36.22780235 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,144.4350006 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,58.1527249 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +RI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,53.75729621 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,24.48816513 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,4842.526223 +RI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,5.828024321 +RI,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,189.9940838 +RI,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,130.5267101 +RI,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,61.55945435 +RI,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,27.46427352 +RI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,948.1678445 +RI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,3.222184234 +RI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.71053453 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.583699306 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.22358252 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.20321817 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,38.6194763 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,515.1375481 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.133104563 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,8.856265645 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1641.206299 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2196.569516 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,42.189715 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.80010005 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.5606994 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,48.7964294 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.253672849 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.650534496 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.20529E-05 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.6616537 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,579.5597452 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.52675663 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3067.922693 +RI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,27.16097 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,431.0670144 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1323.813059 +RI,Volatile Organic Compounds,2A6_Other-minerals,,TON,14.05419 +RI,Volatile Organic Compounds,2B_Chemicals-other,,TON,154.643975 +RI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0.4105 +RI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,2.317175 +RI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4429.07005 +RI,Volatile Organic Compounds,2D3d_Coating-application,,TON,1640.79028 +RI,Volatile Organic Compounds,2D3e_Degreasing,,TON,25.3164 +RI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,15.1675 +RI,Volatile Organic Compounds,2D3h_Printing,,TON,41.55486 +RI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +RI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +RI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,105.3410903 +RI,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,124.55797 +RI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,19.575142 +RI,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,117.35577 +RI,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.471944205 +RI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,153.152 +RI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,16.4137 +RI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,2.017457 +RI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,23.424662 +RI,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,16.7615 +RI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,15.19021 +SC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,21.855334 +SC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,260.6026 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.916391906 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.211555894 +SC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,150.685496 +SC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0136 +SC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.0648 +SC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1 +SC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.0650592 +SC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,40.59413 +SC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,10.64853945 +SC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.314910973 +SC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,6.687050947 +SC,Ammonia,1A3bii_Road-LDV,light_oil,TON,2031.287415 +SC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.006202144 +SC,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,74.75882608 +SC,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,64.30520422 +SC,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,16.93450892 +SC,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,18.29336538 +SC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.86959947 +SC,Ammonia,1A3c_Rail,diesel_oil,TON,3.85890675 +SC,Ammonia,1A3c_Rail,light_oil,TON,0.001666326 +SC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.10117534 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,9.779006 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.19103006 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.3078 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.59454072 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.693772128 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.450837975 +SC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.444794479 +SC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.241631169 +SC,Ammonia,1A4bi_Residential-stationary,biomass,TON,55.504286 +SC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.10799969 +SC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,1.0000001 +SC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,7.32297664 +SC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,271.7359654 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.239259832 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.143284909 +SC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017315462 +SC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.434774806 +SC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.649437702 +SC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.39177283 +SC,Ammonia,2A6_Other-minerals,,TON,80.615497 +SC,Ammonia,2B_Chemicals-other,,TON,145.996935 +SC,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.067416 +SC,Ammonia,2D3h_Printing,,TON,0.15515 +SC,Ammonia,2H1_Pulp-and-paper,,TON,456.32038 +SC,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,537.59 +SC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,14.06388 +SC,Ammonia,3B1a_Cattle-dairy,,TON,575.7763704 +SC,Ammonia,3B1b_Cattle-non-dairy,,TON,1815.875753 +SC,Ammonia,3B2_Manure-sheep,,TON,27.4626 +SC,Ammonia,3B3_Manure-swine,,TON,2856.225623 +SC,Ammonia,3B4_Manure-other,,TON,581.71344 +SC,Ammonia,3B4_Manure-poultry,,TON,18461.41403 +SC,Ammonia,3B4d_Manure-goats,,TON,303.97884 +SC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,5181.153281 +SC,Ammonia,5A_Solid-waste-disposal,,TON,12.023 +SC,Ammonia,5D1_Wastewater-domestic,,TON,16.8973798 +SC,Ammonia,5D2_Wastewater-industrial,biomass,TON,587.134 +SC,Ammonia,5E_Other-waste,Other_Fuel,TON,0.000072 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,235824.8755 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,289086.5593 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15097.241 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1309625.309 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25886.54466 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.19629039 +SC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,232778.2994 +SC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21530820.06 +SC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,213397.3563 +SC,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1276117.748 +SC,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,5568653.824 +SC,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,550384.645 +SC,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1128240.585 +SC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,123301.5419 +SC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2645.96611 +SC,Carbon Dioxide,1A3c_Rail,light_oil,TON,128.6179681 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,85181.95999 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,119158.5063 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5200.661809 +SC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,54661.93188 +SC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,383950.7347 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,275414.8741 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10214.82395 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,22.86731983 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2116.5913 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,92878.57445 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,79978.58605 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,294599.3374 +SC,Carbon Monoxide,11C_Other-natural,,TON,94704.01 +SC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1398.489151 +SC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,25.93022671 +SC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7605.798949 +SC,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.516745 +SC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2226.213458 +SC,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,0.1008 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1446.901681 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20476.34561 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1198.103637 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,19084.97549 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,32.43348064 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1253.494965 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,58.55335014 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,575.445768 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3286.275808 +SC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0.649475 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6260.964014 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8508.233788 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.534245941 +SC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5101.274254 +SC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,952.9859965 +SC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,512550.8948 +SC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,671.0452987 +SC,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,41343.92244 +SC,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,8414.490559 +SC,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2541.408898 +SC,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2070.894855 +SC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6299.975339 +SC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1252.222459 +SC,Carbon Monoxide,1A3c_Rail,light_oil,TON,45.82230811 +SC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,233.1116719 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,722.7673843 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.84323554 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,36.03670164 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.15905147 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1521.378708 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,515.3505953 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,41497.71088 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,134.8438033 +SC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,260.423461 +SC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,148624.4912 +SC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,6575.774436 +SC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,15.54000913 +SC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,137.50011 +SC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,36.61485325 +SC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,681.9424516 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1308.73415 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4347.359425 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.51646685 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.268682 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,26724.12308 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,160.9946743 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,53121.428 +SC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,15.513 +SC,Carbon Monoxide,2A1_Cement-production,,TON,215.6243 +SC,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,0.305 +SC,Carbon Monoxide,2A6_Other-minerals,,TON,8764.681744 +SC,Carbon Monoxide,2B_Chemicals-other,,TON,1223.95 +SC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3562.282 +SC,Carbon Monoxide,2C3_Aluminum-production,,TON,42871.6 +SC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,3301.010762 +SC,Carbon Monoxide,2D3d_Coating-application,,TON,4.137 +SC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,10277.92217 +SC,Carbon Monoxide,2H2_Food-and-beverage,,TON,425.8860061 +SC,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.5312 +SC,Carbon Monoxide,3F_Ag-res-on-field,,TON,2821.7 +SC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,472.611226 +SC,Carbon Monoxide,5C_Incineration,,TON,0.011414561 +SC,Carbon Monoxide,5C_Incineration,biomass,TON,53.47868937 +SC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,43858.45745 +SC,Carbon Monoxide,5C_Open-burning-residential,,TON,6725.5099 +SC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,880.54016 +SC,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,11.8 +SC,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.994809582 +SC,Methane,1A3bii_Road-LDV,light_oil,TON,1880.296193 +SC,Methane,1A3biii_Road-bus,diesel_oil,TON,5.400668553 +SC,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,142.6679436 +SC,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,316.8570777 +SC,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,7.042599233 +SC,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,26.8699085 +SC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,23.82851771 +SC,Nitrogen Oxides,11C_Other-natural,,TON,9541.1625 +SC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.21897769 +SC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,280.9124847 +SC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,45153.30306 +SC,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,15.2 +SC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,642.247664 +SC,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.12 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1984.2364 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3080.271974 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,209.7387047 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,7908.9244 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,145.2193334 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5145.43789 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,578.2420248 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,16.63890472 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5509.136048 +SC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,0.773185 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,12069.95895 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,111.7683029 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113925195 +SC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,493.7256938 +SC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1457.233384 +SC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,65962.05917 +SC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1914.10693 +SC,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4522.353124 +SC,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,33417.39005 +SC,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,3724.619624 +SC,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6489.717867 +SC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,242.1863579 +SC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8684.093615 +SC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.446020729 +SC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2100.096228 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,267.1595163 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.9357074 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,79.49756417 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.983087967 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1382.081147 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,876.898765 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,490.8092151 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,37.52855134 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,557.0596951 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1079.775628 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,106.4588435 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,55.9440166 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,4.549997 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,131.8135185 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1769.5333 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2721.743201 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,34.31422261 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.560600022 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.38489 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,180.5308796 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,955.6332018 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1297.729224 +SC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,6.205 +SC,Nitrogen Oxides,2A1_Cement-production,,TON,52.602 +SC,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,31.8 +SC,Nitrogen Oxides,2A6_Other-minerals,,TON,5932.812286 +SC,Nitrogen Oxides,2B_Chemicals-other,,TON,188.029967 +SC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,575.84608 +SC,Nitrogen Oxides,2C3_Aluminum-production,,TON,19.36952 +SC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,1.587158 +SC,Nitrogen Oxides,2D3d_Coating-application,,TON,0.376 +SC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5356.393875 +SC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +SC,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1.565 +SC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,121.8 +SC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,89.76512 +SC,Nitrogen Oxides,5C_Incineration,,TON,0.003567341 +SC,Nitrogen Oxides,5C_Incineration,biomass,TON,351.4946842 +SC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1297.587884 +SC,Nitrogen Oxides,5C_Open-burning-residential,,TON,474.74197 +SC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,39.1350963 +SC,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,14.54 +SC,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,45.44909 +SC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.83958257 +SC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1395.941725 +SC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.537898223 +SC,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,89.75461113 +SC,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6.669628738 +SC,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.179683766 +SC,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.234655781 +SC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.837166426 +SC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,129.3088499 +SC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.528582787 +SC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,16469.1337 +SC,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,3.257683 +SC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,122.8275577 +SC,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.0034656 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9167.1873 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.102383143 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,819.1501895 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,177.9856989 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.084353185 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,105.2525422 +SC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.02232956 +SC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,172201.6021 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,561.2568619 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.031050388 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.37557367 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.423522331 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.276462987 +SC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.35664006 +SC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,3.0999975 +SC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,7.908813295 +SC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.408612413 +SC,PM10 Filterable,2A1_Cement-production,,TON,449.4359135 +SC,PM10 Filterable,2A2_Lime-production,,TON,8.212034012 +SC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,13055.72968 +SC,PM10 Filterable,2A6_Other-minerals,,TON,4822.730251 +SC,PM10 Filterable,2B_Chemicals-other,,TON,86.84143736 +SC,PM10 Filterable,2C_Iron-steel-alloy,,TON,116.65349 +SC,PM10 Filterable,2C3_Aluminum-production,,TON,61.17255047 +SC,PM10 Filterable,2C7_Other-metal,,TON,22.91304179 +SC,PM10 Filterable,2D3d_Coating-application,,TON,4.64702 +SC,PM10 Filterable,2H1_Pulp-and-paper,,TON,915.8553597 +SC,PM10 Filterable,2H2_Food-and-beverage,,TON,19.68887804 +SC,PM10 Filterable,2H3_Other-industrial-processes,,TON,244.2951888 +SC,PM10 Filterable,2I_Wood-processing,,TON,10.55894978 +SC,PM10 Filterable,3Dc_Other-farm,,TON,20216.38529 +SC,PM10 Filterable,5A_Solid-waste-disposal,,TON,33.22427849 +SC,PM10 Filterable,5C_Incineration,,TON,0.00519244 +SC,PM10 Filterable,5C_Incineration,biomass,TON,22.89917188 +SC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4411.797554 +SC,PM10 Filterable,5C_Open-burning-residential,,TON,3006.69808 +SC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,145.813158 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,133.6971399 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.168102708 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,18098.14318 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3.813549 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,228.5916994 +SC,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.1245697 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,153.5831298 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.60727832 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.842710236 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,923.973013 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,11.88815679 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,897.9439279 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,209.9882512 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.915470249 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,257.1342932 +SC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.058762 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,991.819445 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.03628111 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717602 +SC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,119.5178918 +SC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,172201.6021 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,98.57992078 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1942.803819 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,118.0748935 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,109.4284802 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1805.717575 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,255.5932496 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,386.2104361 +SC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.49523968 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,290.8568737 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.017343998 +SC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,150.814608 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,11.37714571 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.920473161 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,14.70467626 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.014961393 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.00341155 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,89.49601627 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.05890507 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.648718925 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,46.82921163 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,380.7144492 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,958.1441007 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,10.55304299 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,22.02437453 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,17.42868475 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.32356677 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,240.2924382 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,30.07425402 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00288919 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.4878786 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,203.3661474 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.52314057 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,265.347512 +SC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,483.5703624 +SC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,10.00349151 +SC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,13055.72968 +SC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5245.647067 +SC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,114.3097824 +SC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,322.136021 +SC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,113.519542 +SC,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.719175 +SC,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,52.85174242 +SC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,53.125243 +SC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1829.946269 +SC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1167.06024 +SC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,357.6367722 +SC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,15.2585921 +SC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,20216.42803 +SC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,406 +SC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,37.24071 +SC,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.005574776 +SC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.59837322 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4411.797554 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3006.69808 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,145.813158 +SC,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.01884 +SC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.494 +SC,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.602043451 +SC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,117.2484162 +SC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.738622224 +SC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,12792.32696 +SC,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.359536 +SC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,122.8273934 +SC,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.0034656 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7792.942526 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.624616211 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,455.6082494 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,111.715792 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.02108855 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,104.3185189 +SC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.02232956 +SC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,20567.9204 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,484.2390563 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.957268052 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.765446263 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.32703279 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.94748673 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.57963964 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.9000003 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,6.078071075 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.874736803 +SC,PM2.5 Filterable,2A1_Cement-production,,TON,179.2467798 +SC,PM2.5 Filterable,2A2_Lime-production,,TON,3.149907276 +SC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1305.572968 +SC,PM2.5 Filterable,2A6_Other-minerals,,TON,1183.712698 +SC,PM2.5 Filterable,2B_Chemicals-other,,TON,46.93231856 +SC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,58.15416643 +SC,PM2.5 Filterable,2C3_Aluminum-production,,TON,10.71203918 +SC,PM2.5 Filterable,2C7_Other-metal,,TON,15.77767261 +SC,PM2.5 Filterable,2D3d_Coating-application,,TON,1.36677 +SC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,517.5994186 +SC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,8.109598535 +SC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,186.9471334 +SC,PM2.5 Filterable,2I_Wood-processing,,TON,3.507058709 +SC,PM2.5 Filterable,3Dc_Other-farm,,TON,4043.098659 +SC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,10.15573091 +SC,PM2.5 Filterable,5C_Incineration,,TON,0.00417871 +SC,PM2.5 Filterable,5C_Incineration,biomass,TON,15.39617876 +SC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3401.055467 +SC,PM2.5 Filterable,5C_Open-burning-residential,,TON,2753.50283 +SC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,112.407864 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,121.6367071 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.378142117 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,14421.33412 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.915398 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,228.5915351 +SC,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.1245697 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,148.9596664 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.40754295 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.841775828 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,710.2759864 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,10.41341042 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,534.1158393 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,143.689737 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.91594328 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,256.5795377 +SC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.058762 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,962.0650358 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,36.85661203 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000717602 +SC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,25.00462424 +SC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,20567.9204 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,88.42571517 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1031.797254 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,103.228117 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,52.17557748 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1559.174121 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,230.7819385 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,326.9737038 +SC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.51246355 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,268.5573033 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015987352 +SC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,134.1797499 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,11.39125554 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.907199484 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.03843175 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01472179 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.02283569 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.8111082 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,29.57770756 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.648718925 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,45.4243581 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,350.2742725 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,956.6202777 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.44453478 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,13.57762028 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,15.597934 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.882949891 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,233.0835529 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,27.66836609 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00288919 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3832454 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,187.0977628 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.9374556 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,244.11961 +SC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,213.3811074 +SC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,4.941352135 +SC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1305.572968 +SC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1606.206316 +SC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,74.40067433 +SC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,263.6366219 +SC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,63.05907933 +SC,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.719175 +SC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,45.71637444 +SC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,49.844993 +SC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1421.392365 +SC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1155.481256 +SC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,300.2886085 +SC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,8.2067019 +SC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4043.1414 +SC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,406 +SC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,14.17216342 +SC,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.004601743 +SC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,17.09537942 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3401.055467 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2753.50283 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,112.407864 +SC,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.01884 +SC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.212 +SC,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.602043451 +SC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.92345897 +SC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,92.06980137 +SC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,163256.7506 +SC,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,51.7 +SC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,61.4806693 +SC,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.00072 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,52.69814047 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.098122986 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.355720677 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3777.834712 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,87.22592481 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,9073.43704 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2314.914277 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.365233854 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1347.491601 +SC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0046391 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,284.9159415 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.733105118 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000136531 +SC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,66.99565041 +SC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.563221472 +SC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,476.3567712 +SC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.232696861 +SC,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,28.23306205 +SC,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,58.15725533 +SC,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.063693225 +SC,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,11.96647538 +SC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.727532993 +SC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,87.18037251 +SC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003758371 +SC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1415.074875 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,28.67434107 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.93121627 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,178.2772359 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,16.87189793 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.28888401 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.53106667 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.402481657 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.114971321 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,11.8917845 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,11.31684314 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,14.5735068 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,132.400809 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,19.839993 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,311.9585115 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,10.22583426 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,59.91804157 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.3013894 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000502931 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.46041056 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.730367139 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.70399132 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.67591005 +SC,Sulfur Dioxide,2A1_Cement-production,,TON,26.9645 +SC,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.58 +SC,Sulfur Dioxide,2A6_Other-minerals,,TON,1172.030162 +SC,Sulfur Dioxide,2B_Chemicals-other,,TON,18.9389561 +SC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,371.24433 +SC,Sulfur Dioxide,2C3_Aluminum-production,,TON,3788.37988 +SC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,842.30474 +SC,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +SC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,5226.726909 +SC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +SC,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,4.26408 +SC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,16.24 +SC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,47.69633 +SC,Sulfur Dioxide,5C_Incineration,,TON,0.002958288 +SC,Sulfur Dioxide,5C_Incineration,biomass,TON,61.07462336 +SC,Sulfur Dioxide,5C_Open-burning-residential,,TON,79.123615 +SC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.45597392 +SC,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,31.2 +SC,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.0726 +SC,Volatile Organic Compounds,11C_Other-natural,,TON,862671.6 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,39.96543051 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.592757089 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,443.1886902 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.230544 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,97.68764215 +SC,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,69.8112325 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,194.5932455 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,994.7091998 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.757519724 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,643.9250383 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.84396835 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,21.94087675 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.597459624 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,30.00254849 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,311.696334 +SC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.0425256 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1240.325937 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,547.4126027 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001851318 +SC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,217.0692323 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,194.3662744 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,45168.18614 +SC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,86.57137948 +SC,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2601.019362 +SC,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1805.754644 +SC,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,516.5312646 +SC,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,476.3925136 +SC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2006.214482 +SC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,446.4120822 +SC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.752189352 +SC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,120.0098976 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,20.51183546 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.501916534 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.360955196 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.372309443 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,78.48849487 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,128.7965716 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1985.135818 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.442102575 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,65.8266123 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9621.449913 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1210.072007 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.175599227 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,4.999999 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,5.126081515 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,93.7369113 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,255.2821748 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,329.5917117 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009741446 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.3848294 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6855.457085 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,39.6312448 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,17243.598 +SC,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.004795 +SC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,302.3872855 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,158.8400549 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,31379.09574 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,0.309575865 +SC,Volatile Organic Compounds,2A1_Cement-production,,TON,13.18273 +SC,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.58 +SC,Volatile Organic Compounds,2A6_Other-minerals,,TON,49.14186145 +SC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1292.192717 +SC,Volatile Organic Compounds,2B_Chemicals-other,,TON,3444.737776 +SC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,260.677006 +SC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,127.800205 +SC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,273.019636 +SC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,18882.35582 +SC,Volatile Organic Compounds,2D3d_Coating-application,,TON,19971.15232 +SC,Volatile Organic Compounds,2D3e_Degreasing,,TON,3046.310347 +SC,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,1453.54721 +SC,Volatile Organic Compounds,2D3h_Printing,,TON,10452.11974 +SC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +SC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +SC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,8308.699451 +SC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,991.18614 +SC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4096.304655 +SC,Volatile Organic Compounds,2I_Wood-processing,,TON,19.381 +SC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3816.62059 +SC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,243.6 +SC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,199.49527 +SC,Volatile Organic Compounds,5C_Incineration,,TON,0.017832176 +SC,Volatile Organic Compounds,5C_Incineration,biomass,TON,5.569284337 +SC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3010.401916 +SC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,677.2983 +SC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,164.227623 +SC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,84.986742 +SC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,609.083308 +SC,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,6.206 +SC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,18.8572466 +SD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,34.3475 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.280650835 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.028567831 +SD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.307716815 +SD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.038726562 +SD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.050594428 +SD,Ammonia,1A3bii_Road-LDV,light_oil,TON,351.2840393 +SD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.567775247 +SD,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,11.90337627 +SD,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,16.83044308 +SD,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,2.598341081 +SD,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.338046595 +SD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.439366834 +SD,Ammonia,1A3c_Rail,diesel_oil,TON,1.764026269 +SD,Ammonia,1A3c_Rail,light_oil,TON,0.000576473 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,9.10958453 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.767982253 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.012835806 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.016436478 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024622084 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.272815873 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.18855 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.39420475 +SD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.027364576 +SD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.545639256 +SD,Ammonia,1A4bi_Residential-stationary,biomass,TON,45.9942935 +SD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,4.606852575 +SD,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.080010064 +SD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.046139624 +SD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,116.2678145 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.91672329 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.435557263 +SD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003218432 +SD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.043913678 +SD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.085146221 +SD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.575804558 +SD,Ammonia,3B1a_Cattle-dairy,,TON,4799.83491 +SD,Ammonia,3B1b_Cattle-non-dairy,,TON,26886.83145 +SD,Ammonia,3B2_Manure-sheep,,TON,1172.46888 +SD,Ammonia,3B3_Manure-swine,,TON,8913.751485 +SD,Ammonia,3B4_Manure-other,,TON,943.668 +SD,Ammonia,3B4_Manure-poultry,,TON,3737.536804 +SD,Ammonia,3B4d_Manure-goats,,TON,74.986032 +SD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,84902.20051 +SD,Ammonia,5D1_Wastewater-domestic,,TON,3.03334108 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,34535.59549 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,37447.21816 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2005.526065 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,160831.3776 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3184.822836 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.23925557 +SD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,34614.8218 +SD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3620874.37 +SD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,39845.48995 +SD,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,205471.9246 +SD,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1342701.884 +SD,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,78736.20279 +SD,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,241233.4436 +SD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20900.6207 +SD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,894.80339 +SD,Carbon Dioxide,1A3c_Rail,light_oil,TON,44.66566239 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23150.32973 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,32379.4411 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1420.724984 +SD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3362.932206 +SD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,39767.11646 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1956843.447 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,32597.97673 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,224.2245047 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,393.41474 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,67919.22945 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10485.79094 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,38624.82202 +SD,Carbon Monoxide,11C_Other-natural,,TON,92888.735 +SD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,572.458 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,265.3865386 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2585.410363 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,157.5437779 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,768.9125126 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,813.7196772 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849118 +SD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2126.887088 +SD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,124.4974864 +SD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,103270.2767 +SD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,150.5099804 +SD,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,8779.90217 +SD,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2632.997515 +SD,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,324.80144 +SD,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,539.0965344 +SD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1179.7178 +SD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,569.2333231 +SD,Carbon Monoxide,1A3c_Rail,light_oil,TON,12.1642131 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,63.4077417 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.799887974 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.139301832 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.102728012 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.147732441 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,389.3148116 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,140.0521352 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8692.842831 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.80464393 +SD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,15.98394178 +SD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,12517.9743 +SD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5675.911288 +SD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,23.03426385 +SD,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,11.0013771 +SD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.230698106 +SD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,322.8176152 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10829.51505 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8660.367589 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,24.6700522 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.5080676 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10574.43738 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.10768078 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5444.856918 +SD,Carbon Monoxide,2H2_Food-and-beverage,,TON,76.45311164 +SD,Carbon Monoxide,3F_Ag-res-on-field,,TON,2398.5 +SD,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.011986018 +SD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1874.611865 +SD,Carbon Monoxide,5C_Open-burning-residential,,TON,1485.12671 +SD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,28.046942 +SD,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.821271467 +SD,Methane,1A3bii_Road-LDV,light_oil,TON,462.3670421 +SD,Methane,1A3biii_Road-bus,diesel_oil,TON,0.540305493 +SD,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,36.99285737 +SD,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,47.54430592 +SD,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.73720521 +SD,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.249535008 +SD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.254522434 +SD,Nitrogen Oxides,11C_Other-natural,,TON,38550.783 +SD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,13850.9 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,298.6181037 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,408.1058022 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,27.39958098 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1481.732491 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,19.50447736 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785013 +SD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,148.5072537 +SD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,211.0734952 +SD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,11034.74456 +SD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,444.7838771 +SD,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,857.2330944 +SD,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,11078.07537 +SD,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,524.4024865 +SD,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1824.01704 +SD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,44.19903496 +SD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4194.696869 +SD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.246794572 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,23.24951302 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.1995552 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.706461488 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.130007821 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.594008099 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,465.9202955 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,238.3232981 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,193.6797978 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.24461786 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,34.30560876 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,170.8591685 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,91.1124941 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,82.923336 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.36404557 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.8305132 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,867.4844938 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21070.28798 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,242.2085811 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.495260832 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.3516264 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,117.6944379 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,125.2879976 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,261.4497985 +SD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +SD,Nitrogen Oxides,3F_Ag-res-on-field,,TON,102.5 +SD,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,2.55021499 +SD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,55.46193894 +SD,Nitrogen Oxides,5C_Open-burning-residential,,TON,104.832481 +SD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.2465307 +SD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.116971055 +SD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,218.2412571 +SD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.090650116 +SD,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,14.44042999 +SD,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.253106269 +SD,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.298272211 +SD,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.415410825 +SD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.272466455 +SD,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,47.5808 +SD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,65358.617 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,52.8397915 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.036776098 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.134326572 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.306978079 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.032008704 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.927468549 +SD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.97540031 +SD,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.248030965 +SD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.049830791 +SD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.613372678 +SD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,5972.465211 +SD,PM10 Filterable,2A6_Other-minerals,,TON,2725.237 +SD,PM10 Filterable,2H2_Food-and-beverage,,TON,0.605209858 +SD,PM10 Filterable,3Dc_Other-farm,,TON,174348.452 +SD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,188.5702836 +SD,PM10 Filterable,5C_Open-burning-residential,,TON,663.93894 +SD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,4.6444387 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,242.216 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.79667256 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.759724964 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.248703441 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,121.8019629 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.921632781 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014352 +SD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,49.8626102 +SD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,65358.617 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,14.05327499 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,461.9350336 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,25.72361661 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,26.49543434 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,511.0428359 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,34.88346393 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,97.42455651 +SD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.085727619 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,129.7566015 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.005994492 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,54.6364104 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.284747592 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.57930168 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.337796694 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.072019578 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.410385433 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,24.32110683 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,8.710258655 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.177229521 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.873227964 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,33.90660822 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,812.1873128 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,10.964306 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.249631095 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.10981232 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.194766823 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1987.365622 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.206479592 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.02832976 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6477587 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,120.8607144 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.559639366 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,34.7898828 +SD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5972.465211 +SD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2725.237 +SD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,206.1395774 +SD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,174348.452 +SD,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,328 +SD,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.168059262 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,188.5702836 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,663.93894 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,4.6444387 +SD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,34.004 +SD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,7612.83188 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,45.44227877 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.796781692 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.599004524 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.114003442 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024622084 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.509590897 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.82368622 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.152019 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.038295893 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.887354255 +SD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,597.2465211 +SD,PM2.5 Filterable,2A6_Other-minerals,,TON,340.65485 +SD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.561764603 +SD,PM2.5 Filterable,3Dc_Other-farm,,TON,34868.687 +SD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,145.3688511 +SD,PM2.5 Filterable,5C_Open-burning-residential,,TON,608.02844 +SD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,3.5804156 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,228.64 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.10874366 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.730922173 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.248443926 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,118.147914 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.530767039 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00014352 +SD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,9.853601771 +SD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,7612.83188 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,12.72231969 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,318.6961441 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,23.38288407 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,18.01259411 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,468.5125833 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,31.77198984 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,87.50058663 +SD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.634688351 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,119.4402498 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.005526817 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,47.23877702 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.044751798 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.043980125 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.144821897 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.064632959 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.992508818 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23.59145705 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,8.036152593 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.177229521 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.787028374 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,31.19511899 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,811.3756569 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.8125934 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.153619247 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.098277402 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.468748768 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1927.744844 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.710276646 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.02832976 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6283254 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,111.1919926 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.482849759 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,32.00668408 +SD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,597.2465211 +SD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,340.65485 +SD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,206.0960847 +SD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,34868.687 +SD,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,328 +SD,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.168059262 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,145.3688511 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,608.02844 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3.5804156 +SD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,13536.6 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.881765998 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.834751594 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.050251953 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,34.98972809 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.090893262 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73061E-05 +SD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,20.5536379 +SD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.380118643 +SD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,76.35443208 +SD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.437953767 +SD,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4.333321016 +SD,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,14.60845674 +SD,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.865793046 +SD,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.622555798 +SD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.440589251 +SD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,39.84231165 +SD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001314508 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.641989103 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,40.89501856 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.9912342 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.25773779 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.311125529 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.7824074 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.036283822 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.931955289 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.031408071 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.731611331 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.18303357 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,15.69382665 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,196.251892 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1.20295008 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.96554871 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.840113757 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,425.7181989 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.971343367 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004931483 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.08557744 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.014908968 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.583339784 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.147269204 +SD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +SD,Sulfur Dioxide,3F_Ag-res-on-field,,TON,14.35 +SD,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.392732975 +SD,Sulfur Dioxide,5C_Open-burning-residential,,TON,17.4720856 +SD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.26933969 +SD,Volatile Organic Compounds,11C_Other-natural,,TON,414288.59 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,125.941 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,30.4929706 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,127.4027796 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.523573721 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,152.3068513 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,61.38673916 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +SD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,92.77057528 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,30.33599309 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,8654.652479 +SD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,22.68677092 +SD,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,509.5348559 +SD,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,619.0002199 +SD,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,77.81696853 +SD,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,125.3607554 +SD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,260.3559883 +SD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,193.3698935 +SD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.502450596 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.796552727 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.326392378 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.021393018 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.023216544 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010156611 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.48988765 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.00156535 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,469.6119688 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.120676394 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,4.039316929 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1000.39797 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1042.451371 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,3.22479786 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.40004987 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.03229774 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,44.36774066 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2088.333297 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,405.731166 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.095489084 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.185901 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4330.097183 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.196115054 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2083.903478 +SD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,221.8242124 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4407.533533 +SD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3389.67822 +SD,Volatile Organic Compounds,2D3d_Coating-application,,TON,2139.704085 +SD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,158.31313 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,4781.86823 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1173.79661 +SD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,29.07937113 +SD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8677.32755 +SD,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,205 +SD,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.008925758 +SD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,128.6714723 +SD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,149.56103 +SD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.2309773 +SD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,15.2564453 +TN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,205.865979 +TN,Ammonia,1A1b_Pet-refining,natural_gas,TON,487.4185889 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.813994918 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.315680677 +TN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.176583295 +TN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +TN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.06544003 +TN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,30.2782538 +TN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.87961311 +TN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.149893286 +TN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,95.9448638 +TN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.48915791 +TN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.339517413 +TN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,10.05407816 +TN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2681.104195 +TN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.560686643 +TN,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,116.9142877 +TN,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,125.9940074 +TN,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,25.81417382 +TN,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,32.81699829 +TN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.91890318 +TN,Ammonia,1A3c_Rail,diesel_oil,TON,8.718087334 +TN,Ammonia,1A3c_Rail,light_oil,TON,0.003894113 +TN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.131066129 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.10712394 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.405004497 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.049009965 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.212834142 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.37029013 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.06941955 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.236345842 +TN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.446168636 +TN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.926931173 +TN,Ammonia,1A4bi_Residential-stationary,biomass,TON,172.6599222 +TN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.99934398 +TN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,8.121581233 +TN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.271676752 +TN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,654.6100117 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.493455216 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.195951872 +TN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02443388 +TN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.692189552 +TN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.672045022 +TN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.544416896 +TN,Ammonia,2A6_Other-minerals,,TON,11.4517 +TN,Ammonia,2B_Chemicals-other,,TON,76.899 +TN,Ammonia,2C_Iron-steel-alloy,,TON,0.1513 +TN,Ammonia,2C6_Zinc-production,,TON,0.049 +TN,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.02 +TN,Ammonia,2D3h_Printing,,TON,0.3293 +TN,Ammonia,2H1_Pulp-and-paper,,TON,344.66592 +TN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,7.818 +TN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,39.66317 +TN,Ammonia,3B1a_Cattle-dairy,,TON,2016.869078 +TN,Ammonia,3B1b_Cattle-non-dairy,,TON,9318.526643 +TN,Ammonia,3B2_Manure-sheep,,TON,104.002404 +TN,Ammonia,3B3_Manure-swine,,TON,1163.598124 +TN,Ammonia,3B4_Manure-other,,TON,1908.74904 +TN,Ammonia,3B4_Manure-poultry,,TON,10058.69436 +TN,Ammonia,3B4d_Manure-goats,,TON,913.231836 +TN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,8395.346209 +TN,Ammonia,5A_Solid-waste-disposal,,TON,2.91 +TN,Ammonia,5D1_Wastewater-domestic,,TON,24.222171 +TN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,9.941 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,346281.5522 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,430780.2728 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22519.55751 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1413005.676 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,27909.19683 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.43555038 +TN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,346726.131 +TN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,30137379.13 +TN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,323175.3371 +TN,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1996767.611 +TN,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,10468909.33 +TN,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,838981.8122 +TN,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2023268.826 +TN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,156788.834 +TN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6129.414886 +TN,Carbon Dioxide,1A3c_Rail,light_oil,TON,300.777609 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,131304.2098 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,183673.6492 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8120.390611 +TN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,54830.87516 +TN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,433742.6465 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,675443.416 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,14382.51183 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,72.39468904 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2986.729 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,169181.5929 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,82762.59216 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,304838.6213 +TN,Carbon Monoxide,11C_Other-natural,,TON,92605.501 +TN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,12.8 +TN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,60.14446 +TN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6720.48 +TN,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.18729 +TN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,299.08822 +TN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,572.8203829 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3766.1601 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30375.69364 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1812.364773 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.549474689 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9853.194286 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,382.4063571 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,6601.933223 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,129.5746468 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,11.61520577 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,8524.339787 +TN,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,3.08738 +TN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,79.229 +TN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,8.69 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6760.364989 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8221.232042 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.636844448 +TN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7962.956114 +TN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1447.525993 +TN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,756957.0709 +TN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1142.01296 +TN,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,72305.85683 +TN,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,18418.32089 +TN,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,3878.321143 +TN,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4061.919127 +TN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7914.365071 +TN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2838.244682 +TN,Carbon Monoxide,1A3c_Rail,light_oil,TON,96.07150441 +TN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,489.9282987 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,267.5526815 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,102.4238894 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,762.7443645 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.373971872 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,36.57341231 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2660.307324 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,794.373566 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,57131.14613 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,209.3214675 +TN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,261.1497718 +TN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,151436.3215 +TN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,20585.06753 +TN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,15.87518274 +TN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1165.59379 +TN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,11.35838778 +TN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1534.233901 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3618.061905 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4866.1063 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.967044092 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.24655 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,40797.7834 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,166.603566 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,49496.06258 +TN,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.805 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,34.898978 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.9845 +TN,Carbon Monoxide,2A1_Cement-production,,TON,543 +TN,Carbon Monoxide,2A6_Other-minerals,,TON,1814.26835 +TN,Carbon Monoxide,2B_Chemicals-other,,TON,15105.01681 +TN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3130.100936 +TN,Carbon Monoxide,2C3_Aluminum-production,,TON,1723.837676 +TN,Carbon Monoxide,2C5_Lead-production,,TON,35.998 +TN,Carbon Monoxide,2C6_Zinc-production,,TON,71.718 +TN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,35.24954 +TN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,32.8219 +TN,Carbon Monoxide,2D3d_Coating-application,,TON,50.062525 +TN,Carbon Monoxide,2D3h_Printing,,TON,3066.3733 +TN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2719.219 +TN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1245.663501 +TN,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,44.08391 +TN,Carbon Monoxide,3F_Ag-res-on-field,,TON,4795.5 +TN,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,362.3266 +TN,Carbon Monoxide,5C_Incineration,,TON,249.0601643 +TN,Carbon Monoxide,5C_Incineration,biomass,TON,0.386234347 +TN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,37677.60657 +TN,Carbon Monoxide,5C_Open-burning-residential,,TON,9107.7127 +TN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1113.78604 +TN,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.23 +TN,Methane,1A3bii_Road-LDV,diesel_oil,TON,5.110011492 +TN,Methane,1A3bii_Road-LDV,light_oil,TON,2873.374788 +TN,Methane,1A3biii_Road-bus,diesel_oil,TON,4.27734809 +TN,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,266.3439959 +TN,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,365.2220769 +TN,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,12.11938843 +TN,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,32.10552112 +TN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,32.55885052 +TN,Nitrogen Oxides,11C_Other-natural,,TON,13681.7547 +TN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,8.96 +TN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,353.3467 +TN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,85285.3 +TN,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.25568 +TN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,309.5603 +TN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,747.5948638 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3102.06451 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4667.637155 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,315.6546811 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,53.07843378 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5162.89837 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1054.336603 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,21874.12702 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,325.7651788 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,18.24328433 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,12344.62756 +TN,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,9.5796 +TN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,91.7065 +TN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,11.17 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,13001.64345 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,139.6970695 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.138744093 +TN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3708.154909 +TN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2224.362943 +TN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,91618.45708 +TN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3171.775186 +TN,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7521.050849 +TN,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,76619.04167 +TN,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,5759.846956 +TN,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,13683.59358 +TN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,306.3767694 +TN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19617.90595 +TN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.256402152 +TN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2542.853771 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,91.93201194 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,282.5353983 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2316.419959 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.393379563 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.182735059 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2916.481778 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1351.00626 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,881.0184145 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,58.1863826 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,558.857966 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1500.324877 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,319.8006942 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,57.1446747 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,38.41520762 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,40.8902105 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3791.011469 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7136.882074 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,74.11337211 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.770160216 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.955226 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,362.2763054 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,988.8917349 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1676.947928 +TN,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.39 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,12.077946 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.978199 +TN,Nitrogen Oxides,2A1_Cement-production,,TON,1568 +TN,Nitrogen Oxides,2A6_Other-minerals,,TON,5393.3279 +TN,Nitrogen Oxides,2B_Chemicals-other,,TON,583.128 +TN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,444.5915 +TN,Nitrogen Oxides,2C3_Aluminum-production,,TON,169.91794 +TN,Nitrogen Oxides,2C5_Lead-production,,TON,42.896 +TN,Nitrogen Oxides,2C6_Zinc-production,,TON,72.1129 +TN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,237.18221 +TN,Nitrogen Oxides,2C7a_Copper-production,,TON,0.02 +TN,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,4.5779 +TN,Nitrogen Oxides,2D3d_Coating-application,,TON,144.374 +TN,Nitrogen Oxides,2D3h_Printing,,TON,3641.0002 +TN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1605.996 +TN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,338.8988 +TN,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,34.07107 +TN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,207 +TN,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,54.291 +TN,Nitrogen Oxides,5C_Incineration,,TON,184.6113007 +TN,Nitrogen Oxides,5C_Incineration,biomass,TON,11.35549402 +TN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1114.722029 +TN,Nitrogen Oxides,5C_Open-burning-residential,,TON,642.89766 +TN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,48.711367 +TN,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.01 +TN,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,4.35 +TN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.270736281 +TN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1987.715304 +TN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.759386181 +TN,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,139.9855248 +TN,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,10.03060131 +TN,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,3.324225644 +TN,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3.426988531 +TN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.2318774 +TN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,27.26 +TN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,27.10221719 +TN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3106.954 +TN,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0026096 +TN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,19.014089 +TN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,106.7188451 +TN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,87.16304881 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6967.88167 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,52.61221575 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,12177.80396 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,58.08904826 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.16598157 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,440.5209934 +TN,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +TN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.273174 +TN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.4598 +TN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,60478.6817 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,243.5766397 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.04310652 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,270.5336848 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.167223284 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.302343458 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.15511801 +TN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.239292148 +TN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,26.40629031 +TN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.453411857 +TN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.35833583 +TN,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.17296 +TN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM10 Filterable,2A1_Cement-production,,TON,318.2010233 +TN,PM10 Filterable,2A2_Lime-production,,TON,0.22237633 +TN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,37291.50028 +TN,PM10 Filterable,2A6_Other-minerals,,TON,7760.99977 +TN,PM10 Filterable,2B_Chemicals-other,,TON,510.7592413 +TN,PM10 Filterable,2C_Iron-steel-alloy,,TON,456.8162359 +TN,PM10 Filterable,2C3_Aluminum-production,,TON,551.8143461 +TN,PM10 Filterable,2C5_Lead-production,,TON,35.36549878 +TN,PM10 Filterable,2C6_Zinc-production,,TON,87.878244 +TN,PM10 Filterable,2C7_Other-metal,,TON,546.786445 +TN,PM10 Filterable,2C7a_Copper-production,,TON,0.103652 +TN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,6.87218 +TN,PM10 Filterable,2D3d_Coating-application,,TON,111.1338172 +TN,PM10 Filterable,2D3e_Degreasing,,TON,0 +TN,PM10 Filterable,2D3h_Printing,,TON,64.16814 +TN,PM10 Filterable,2H1_Pulp-and-paper,,TON,1067.884729 +TN,PM10 Filterable,2H2_Food-and-beverage,,TON,752.6817316 +TN,PM10 Filterable,2H3_Other-industrial-processes,,TON,287.4025414 +TN,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,3.095851912 +TN,PM10 Filterable,2I_Wood-processing,,TON,0.17992 +TN,PM10 Filterable,3Dc_Other-farm,,TON,56113.12966 +TN,PM10 Filterable,5A_Solid-waste-disposal,,TON,109.690014 +TN,PM10 Filterable,5C_Incineration,,TON,6.662656 +TN,PM10 Filterable,5C_Incineration,biomass,TON,1.59339808 +TN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3790.05649 +TN,PM10 Filterable,5C_Open-burning-residential,,TON,4071.68436 +TN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,181.493345 +TN,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.963388 +TN,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,5.869 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,38.395 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,40.588889 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,7041.24 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0026096 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,34.45946 +TN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,179.6498615 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,232.4825684 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44.16513575 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.857075897 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,87.16351379 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7333.063554 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,113.65759 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,13836.80275 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,65.27885267 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.152247294 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1234.129613 +TN,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +TN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,6.05871 +TN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.21 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1072.353191 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.14250679 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000747957 +TN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,195.3333805 +TN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,60478.6817 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,157.9436793 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3033.122258 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,195.7557241 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,194.678933 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3888.478153 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,407.4716362 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,779.6760818 +TN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.418528 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,660.7625329 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038461342 +TN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,90.48531925 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,266.1965628 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.67825728 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,408.3683672 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.353187452 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.732748198 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,241.3491881 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,138.0286894 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,49.41016397 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.012828419 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,47.02556065 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,412.0207544 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2978.500573 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.79231062 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,26.39955216 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,13.66301309 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,69.56378933 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,664.0333923 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,18.39868914 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009126234 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.925323 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,447.2071913 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.20063153 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,274.5640366 +TN,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.2678865 +TN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +TN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,338.913 +TN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.260663 +TN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,37293.46785 +TN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7986.322276 +TN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,671.5618634 +TN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1205.549806 +TN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,918.947013 +TN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,129.03462 +TN,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,245.2507 +TN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1127.874853 +TN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.4768 +TN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,8.2673 +TN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,202.9502242 +TN,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.01 +TN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,101.20174 +TN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1560.078335 +TN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2784.099461 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,413.289396 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,3.840808002 +TN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.26 +TN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,56121.00901 +TN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,690 +TN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,117.0067 +TN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,9.565714054 +TN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.897930426 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3790.05649 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4071.68436 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,184.313345 +TN,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.631 +TN,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,6.6937 +TN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,15.068 +TN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.878237717 +TN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1376.053 +TN,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +TN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,17.53434 +TN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,98.30568208 +TN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,37.8663668 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6017.885669 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.09882257 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1632.160516 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,39.06597568 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.039457727 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,434.7267551 +TN,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +TN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,2.3475562 +TN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.4498 +TN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9560.06466 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,207.4971623 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.659925014 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,72.64184281 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.434818406 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.245803151 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.86608888 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.489456021 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,16.1082839 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.88549102 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.047082669 +TN,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.04512 +TN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM2.5 Filterable,2A1_Cement-production,,TON,128.3449286 +TN,PM2.5 Filterable,2A2_Lime-production,,TON,0.07845586 +TN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3732.380113 +TN,PM2.5 Filterable,2A6_Other-minerals,,TON,1381.918537 +TN,PM2.5 Filterable,2B_Chemicals-other,,TON,278.2151165 +TN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,333.0179321 +TN,PM2.5 Filterable,2C3_Aluminum-production,,TON,439.9140858 +TN,PM2.5 Filterable,2C5_Lead-production,,TON,31.30367382 +TN,PM2.5 Filterable,2C6_Zinc-production,,TON,73.2582866 +TN,PM2.5 Filterable,2C7_Other-metal,,TON,216.0612782 +TN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.0986322 +TN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,5.70245 +TN,PM2.5 Filterable,2D3d_Coating-application,,TON,63.100305 +TN,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +TN,PM2.5 Filterable,2D3h_Printing,,TON,53.22112 +TN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,731.6181867 +TN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,298.3340494 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,180.1072633 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,4.580261591 +TN,PM2.5 Filterable,2I_Wood-processing,,TON,0.05893929 +TN,PM2.5 Filterable,3Dc_Other-farm,,TON,11216.35929 +TN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,45.810167 +TN,PM2.5 Filterable,5C_Incineration,,TON,6.642656 +TN,PM2.5 Filterable,5C_Incineration,biomass,TON,1.41656648 +TN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2921.753508 +TN,PM2.5 Filterable,5C_Open-burning-residential,,TON,3728.80629 +TN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,139.913808 +TN,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.962871647 +TN,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.29 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,26.203 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,22.3618978 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5231.3 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0026096 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,32.97855 +TN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,171.1014985 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,225.4304108 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,43.809226 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.851613947 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,38.32944215 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6378.541228 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,79.26753768 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3134.543672 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,46.25511521 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.002421997 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1228.663936 +TN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +TN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,5.1330915 +TN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.2 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1040.205592 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.7448608 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000747957 +TN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,89.25635947 +TN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9560.06466 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,142.0338306 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1694.253482 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,174.3966361 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,103.7190144 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3533.683297 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,367.9658164 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,691.549073 +TN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.69087583 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,612.4078759 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.0354543 +TN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,87.77127813 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,216.7298592 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.97622103 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,190.1253709 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.553232867 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.630127007 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,177.4941177 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,133.886328 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,45.60208054 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.012828419 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,45.62098353 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,379.0714725 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2945.457013 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.788138605 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,16.28766683 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,12.22782813 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,15.29548053 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,644.1064351 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.92850595 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009126234 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.7771625 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,411.4376776 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.6002135 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,252.6060885 +TN,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1400465 +TN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +TN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,149.0572153 +TN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.11674243 +TN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3734.347684 +TN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1598.495377 +TN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,438.235253 +TN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1089.126604 +TN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,804.5335777 +TN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,124.9872241 +TN,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,230.634692 +TN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,776.4405723 +TN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.47178 +TN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,7.09757 +TN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,169.633292 +TN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.01 +TN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,90.24462 +TN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1261.024463 +TN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2376.607615 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,315.7204025 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,4.5198096 +TN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.1390198 +TN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,11224.23867 +TN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,690 +TN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,53.130703 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,9.56256816 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.70424552 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2921.753508 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3728.80629 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,139.913808 +TN,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.630483647 +TN,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5.5647 +TN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,34.8822981 +TN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,152.10792 +TN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,207927 +TN,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.69472 +TN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,14.110176 +TN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,169.0024573 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,77.91622323 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.25230485 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.610087296 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,204.3127606 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2401.034552 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1741.732777 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,92648.14083 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,953.0352231 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.083847654 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,226.4642412 +TN,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.788052 +TN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.3204 +TN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,31.20001 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,275.0944809 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.711932024 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000142306 +TN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,348.7001845 +TN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.811631759 +TN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,677.5078844 +TN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.520794012 +TN,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,44.89155691 +TN,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,113.2632644 +TN,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,9.228264764 +TN,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,21.9443841 +TN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.522906294 +TN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,196.9056774 +TN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008405898 +TN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,150.2926599 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.30968306 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,430.4764108 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6826.568581 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,21.89360113 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.37646441 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.51118505 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,24.93602608 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.918530912 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.181057849 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,10.01355508 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,11.92047543 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,47.6172627 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,150.6773516 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,80.64695135 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,96.7734209 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,22.89684237 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,146.6754573 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.427510064 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001588625 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.61796415 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.863923594 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.3929261 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.940587305 +TN,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1826 +TN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0183154 +TN,Sulfur Dioxide,2A1_Cement-production,,TON,82 +TN,Sulfur Dioxide,2A6_Other-minerals,,TON,1177.384187 +TN,Sulfur Dioxide,2B_Chemicals-other,,TON,637.13677 +TN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,173.1622924 +TN,Sulfur Dioxide,2C3_Aluminum-production,,TON,3831.247002 +TN,Sulfur Dioxide,2C5_Lead-production,,TON,0.6663 +TN,Sulfur Dioxide,2C6_Zinc-production,,TON,230.256388 +TN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,2.32446 +TN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.05 +TN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,49.2706 +TN,Sulfur Dioxide,2D3d_Coating-application,,TON,1.795785 +TN,Sulfur Dioxide,2D3h_Printing,,TON,22.146701 +TN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1020.50362 +TN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,799.9371668 +TN,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,0.49851 +TN,Sulfur Dioxide,3Dc_Other-farm,,TON,8.55 +TN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,27.6 +TN,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,7.771902 +TN,Sulfur Dioxide,5C_Incineration,,TON,45.17497057 +TN,Sulfur Dioxide,5C_Incineration,biomass,TON,0.66326108 +TN,Sulfur Dioxide,5C_Open-burning-residential,,TON,107.149599 +TN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.52513287 +TN,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.03 +TN,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.312 +TN,Volatile Organic Compounds,11C_Other-natural,,TON,786086.6 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.36 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,2.8 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.763172 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,879.962 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.037504 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,16.62225 +TN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,469.9031996 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,343.3764562 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1465.870554 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.46598112 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.796898996 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,448.4571801 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,20.88401408 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,133.935739 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.92042907 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,7.276560873 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,652.5364492 +TN,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.55669 +TN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,6.9825 +TN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.44 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1336.190774 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,568.2794027 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001929629 +TN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,836.1349423 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,305.4968374 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,64569.90266 +TN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,164.4051728 +TN,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4447.326304 +TN,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,4173.645256 +TN,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,813.9678774 +TN,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,923.6267185 +TN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2285.108012 +TN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1051.019078 +TN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.840921701 +TN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,55.06911375 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,8.914503141 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.44223105 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,17.16043395 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.085121602 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.957885313 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,233.2931715 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,197.9229928 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2907.147954 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.656472557 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,65.75389355 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,10786.56324 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4456.13387 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.223124934 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,42.38521181 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.590174176 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,209.8693149 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,699.2894633 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,302.7412777 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.030759631 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.0008515 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,14396.0383 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,41.00108211 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,17486.10319 +TN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,535.5110054 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,451.0579411 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,17682.37393 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4.832675982 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,15.655517 +TN,Volatile Organic Compounds,2A1_Cement-production,,TON,1 +TN,Volatile Organic Compounds,2A6_Other-minerals,,TON,762.184281 +TN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +TN,Volatile Organic Compounds,2B_Chemicals-other,,TON,4733.353146 +TN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,369.9715131 +TN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,2326.304364 +TN,Volatile Organic Compounds,2C5_Lead-production,,TON,166.1549 +TN,Volatile Organic Compounds,2C6_Zinc-production,,TON,68.9054 +TN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,584.1232175 +TN,Volatile Organic Compounds,2C7a_Copper-production,,TON,5.82 +TN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,27742.7029 +TN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,9.9494 +TN,Volatile Organic Compounds,2D3d_Coating-application,,TON,26765.58762 +TN,Volatile Organic Compounds,2D3e_Degreasing,,TON,4108.087399 +TN,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,856.68022 +TN,Volatile Organic Compounds,2D3h_Printing,,TON,11827.16609 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,5618.344199 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,952.2638852 +TN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,4296.63333 +TN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,9473.400765 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2142.04665 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,0.554150374 +TN,Volatile Organic Compounds,2I_Wood-processing,,TON,11 +TN,Volatile Organic Compounds,3Dc_Other-farm,,TON,97.83 +TN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4581.000978 +TN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,414 +TN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,325.8724184 +TN,Volatile Organic Compounds,5C_Incineration,,TON,36.60023445 +TN,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.172448119 +TN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2586.156563 +TN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,917.20092 +TN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,207.053764 +TN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,133.2271693 +TN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,163.59099 +TN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.00333 +TN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,1880.61 +TX,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,834.1044 +TX,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,115.0257 +TX,Ammonia,1A1a_Public-Electricity,hard_coal,TON,537.5822 +TX,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2225.217788 +TX,Ammonia,1A1b_Pet-refining,heavy_oil,TON,3.650062233 +TX,Ammonia,1A1b_Pet-refining,light_oil,TON,15.23608225 +TX,Ammonia,1A1b_Pet-refining,natural_gas,TON,253.1082555 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.725460505 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,112.0069129 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,536.302915 +TX,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,75.63621037 +TX,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.070022506 +TX,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1355.479573 +TX,Ammonia,1A2c_Chemicals,natural_gas,TON,75.5518 +TX,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,14.15352768 +TX,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,3.723843947 +TX,Ammonia,1A2g_Construction_and_Mining,natural_gas,TON,0.514603562 +TX,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,25.75684422 +TX,Ammonia,1A3bii_Road-LDV,light_oil,TON,9515.422293 +TX,Ammonia,1A3biii_Road-bus,diesel_oil,TON,19.65973695 +TX,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,272.5674183 +TX,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,399.0646884 +TX,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,62.26030309 +TX,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,84.66381689 +TX,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.855520213 +TX,Ammonia,1A3c_Rail,diesel_oil,TON,0.312032407 +TX,Ammonia,1A3c_Rail,light_oil,TON,0.001091738 +TX,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10.12324135 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,114.0007148 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.457953781 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,17.6996309 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,194.2089523 +TX,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.213319362 +TX,Ammonia,1A4bi_Residential-mobile,light_oil,TON,13.18744533 +TX,Ammonia,1A4bi_Residential-stationary,biomass,TON,419.3034923 +TX,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.006687658 +TX,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.00864 +TX,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.144237691 +TX,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1669.314224 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.36429035 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,68.64048757 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,natural_gas,TON,115.8384571 +TX,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.026936216 +TX,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.585328354 +TX,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.283533715 +TX,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.290443869 +TX,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0313 +TX,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +TX,Ammonia,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.3461 +TX,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.1362 +TX,Ammonia,2A1_Cement-production,,TON,75.5686 +TX,Ammonia,2A2_Lime-production,Other_Fuel,TON,24.6409 +TX,Ammonia,2A6_Other-minerals,,TON,413.9326 +TX,Ammonia,2B_Chemicals-other,,TON,484.3738 +TX,Ammonia,2C_Iron-steel-alloy,,TON,0.2203 +TX,Ammonia,2C7_Other-metal,Other_Fuel,TON,22.3854 +TX,Ammonia,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0034 +TX,Ammonia,2D3d_Coating-application,,TON,11.7915 +TX,Ammonia,2D3e_Degreasing,,TON,0.4059 +TX,Ammonia,2D3f_Dry-cleaning,Other_Fuel,TON,0.0967 +TX,Ammonia,2D3h_Printing,,TON,11.5814 +TX,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.646 +TX,Ammonia,2H1_Pulp-and-paper,,TON,203.3623 +TX,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,46.5607 +TX,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,34.3357 +TX,Ammonia,3B1a_Cattle-dairy,,TON,43616.22723 +TX,Ammonia,3B1b_Cattle-non-dairy,,TON,93405.45892 +TX,Ammonia,3B2_Manure-sheep,,TON,3302.8215 +TX,Ammonia,3B3_Manure-swine,,TON,9481.484852 +TX,Ammonia,3B4_Manure-other,,TON,5898.9612 +TX,Ammonia,3B4_Manure-poultry,,TON,38377.29952 +TX,Ammonia,3B4d_Manure-goats,,TON,7948.160088 +TX,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,86217.94862 +TX,Ammonia,5A_Solid-waste-disposal,,TON,0.2467 +TX,Ammonia,5C_Incineration,biomass,TON,2.6542 +TX,Ammonia,5C_Open-burning-dump,,TON,0.0872 +TX,Ammonia,5D1_Wastewater-domestic,,TON,93.33699584 +TX,Ammonia,5D2_Wastewater-industrial,biomass,TON,37.9775 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1047051.887 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1191682.394 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,47001.30089 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5491005.526 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,120248.3979 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,29.74186632 +TX,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,941272.1227 +TX,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,109258230 +TX,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1380366.009 +TX,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4691750.169 +TX,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,34143915.33 +TX,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2049963.005 +TX,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5105420.703 +TX,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,103220.1055 +TX,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,22465.12131 +TX,Carbon Dioxide,1A3c_Rail,light_oil,TON,47.95918852 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,553457.9698 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,769382.7498 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,33955.47949 +TX,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,77715.18731 +TX,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,701485.2079 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9061430.346 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,574876.5559 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,301792.3291 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,11288.8686 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,316706.808 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19408.07447 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,513471.7413 +TX,Carbon Monoxide,11C_Other-natural,,TON,805352.187 +TX,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,189262.6795 +TX,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1293.063284 +TX,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,18354.5677 +TX,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +TX,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.468205426 +TX,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,12392.42881 +TX,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,2.763721981 +TX,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,12297.16718 +TX,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,2.6511 +TX,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,5.7889 +TX,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,2540.2436 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11955.18789 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,84639.90043 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3847.513269 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9803.452277 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,373.8866746 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,136.0208651 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1065.943574 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,259.7499052 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,76036.96891 +TX,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,4.4872 +TX,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,4.4322 +TX,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,12758.4217 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.6749 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,18.7532 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,26200.55954 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,38035.07699 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,2.565972726 +TX,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,54533.05349 +TX,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4011.607702 +TX,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,2122337 +TX,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,4974.967144 +TX,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,145528.4284 +TX,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,68351.29919 +TX,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,10438.06538 +TX,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9705.439277 +TX,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5188.579727 +TX,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3274.530021 +TX,Carbon Monoxide,1A3c_Rail,light_oil,TON,6.230031573 +TX,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2298.340055 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1196.106095 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.46706389 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.066047778 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8584.820352 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3352.422634 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,258412.8758 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,876.0766546 +TX,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,358.4971339 +TX,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,274542.4161 +TX,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,46739.08366 +TX,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.033438303 +TX,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1.1880005 +TX,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.721188526 +TX,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4417.554816 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,34555.39461 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,38478.15439 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10672.73843 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,129.361715 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,87372.79747 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,39.98930788 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,89967.78925 +TX,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,49192.97112 +TX,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,0.5363 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,123.5043 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +TX,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,81358.01705 +TX,Carbon Monoxide,2A1_Cement-production,,TON,8021.4666 +TX,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,860.1631 +TX,Carbon Monoxide,2A6_Other-minerals,,TON,11267.2521 +TX,Carbon Monoxide,2B_Chemicals-other,,TON,11610.2028 +TX,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4283.5543 +TX,Carbon Monoxide,2C3_Aluminum-production,,TON,18180.2762 +TX,Carbon Monoxide,2C5_Lead-production,,TON,678.4006 +TX,Carbon Monoxide,2C6_Zinc-production,,TON,0 +TX,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,202.8462 +TX,Carbon Monoxide,2C7a_Copper-production,,TON,1212.2717 +TX,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,152.3445 +TX,Carbon Monoxide,2D3d_Coating-application,,TON,110.282 +TX,Carbon Monoxide,2D3e_Degreasing,,TON,3.3911 +TX,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.88 +TX,Carbon Monoxide,2D3h_Printing,,TON,17.8981 +TX,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,10.4399 +TX,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3700.7629 +TX,Carbon Monoxide,2H2_Food-and-beverage,,TON,2394.121052 +TX,Carbon Monoxide,2H3_Other-industrial-processes,,TON,0 +TX,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,31.5953 +TX,Carbon Monoxide,3F_Ag-res-on-field,,TON,10962.6 +TX,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1297.2121 +TX,Carbon Monoxide,5C_Incineration,,TON,2.986801347 +TX,Carbon Monoxide,5C_Incineration,biomass,TON,593.0927673 +TX,Carbon Monoxide,5C_Open-burning-commercial,,TON,0 +TX,Carbon Monoxide,5C_Open-burning-dump,,TON,18.9511 +TX,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,39713.71603 +TX,Carbon Monoxide,5C_Open-burning-residential,,TON,13357.95316 +TX,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1001.175015 +TX,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0701 +TX,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,3.2917 +TX,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,22.6701 +TX,Methane,1A3bii_Road-LDV,diesel_oil,TON,11.39379736 +TX,Methane,1A3bii_Road-LDV,light_oil,TON,7695.244534 +TX,Methane,1A3biii_Road-bus,diesel_oil,TON,13.91935206 +TX,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,476.5554982 +TX,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,953.9538322 +TX,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,24.50969428 +TX,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,90.40282648 +TX,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.98565136 +TX,Nitrogen Oxides,11C_Other-natural,,TON,213669.5972 +TX,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,64876.38371 +TX,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,988.7290148 +TX,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,56853.67336 +TX,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +TX,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,1.621806257 +TX,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,30974.50761 +TX,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,5.810761453 +TX,Nitrogen Oxides,1A1b_Pet-refining,light_oil,TON,0.201667952 +TX,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,17945.13677 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,3.3044 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,6.8925 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,2026.2605 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8971.071955 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14273.01509 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,667.5651439 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2685.132118 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1000.56864 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2604.911367 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,226.6786033 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,149.2835227 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,134824.2116 +TX,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,6.4989 +TX,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,9.7337 +TX,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,13796.3426 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.0976 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,21.7368 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,45069.28171 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,534.7183158 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.547623739 +TX,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,17302.55688 +TX,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,5748.399515 +TX,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,266594.9572 +TX,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,12979.33 +TX,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,15629.6301 +TX,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,254177.1442 +TX,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,14059.37557 +TX,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,31092.48226 +TX,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,211.8386079 +TX,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,22921.22255 +TX,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.533954974 +TX,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,22278.27615 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,1161.083233 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,106.4977892 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.243767319 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10061.57201 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5349.098875 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3260.9129 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,243.9242105 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,754.0875247 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2062.983904 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,789.5886689 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.120377862 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.034410524 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.596279635 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,11060.38293 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,70127.11335 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1971.596828 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1128.41003 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,112.120863 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,596.7773718 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,231.7048762 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2185.441678 +TX,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,112655.1639 +TX,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,0.9196 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,57.7648 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +TX,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,180401.2161 +TX,Nitrogen Oxides,2A1_Cement-production,,TON,13937.9153 +TX,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2940.532 +TX,Nitrogen Oxides,2A6_Other-minerals,,TON,18838.462 +TX,Nitrogen Oxides,2B_Chemicals-other,,TON,5412.896 +TX,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1396.7656 +TX,Nitrogen Oxides,2C3_Aluminum-production,,TON,276.2316 +TX,Nitrogen Oxides,2C5_Lead-production,,TON,119.9665 +TX,Nitrogen Oxides,2C6_Zinc-production,,TON,0 +TX,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,43.1933 +TX,Nitrogen Oxides,2C7a_Copper-production,,TON,28.7615 +TX,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,10.3672 +TX,Nitrogen Oxides,2D3d_Coating-application,,TON,69.2189 +TX,Nitrogen Oxides,2D3e_Degreasing,,TON,2.9335 +TX,Nitrogen Oxides,2D3h_Printing,,TON,23.0212 +TX,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,14.2307 +TX,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2924.0412 +TX,Nitrogen Oxides,2H2_Food-and-beverage,,TON,94.6829 +TX,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,0 +TX,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,41.9206 +TX,Nitrogen Oxides,3F_Ag-res-on-field,,TON,453 +TX,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,299.564 +TX,Nitrogen Oxides,5C_Incineration,,TON,128.9766245 +TX,Nitrogen Oxides,5C_Incineration,biomass,TON,344.352861 +TX,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0 +TX,Nitrogen Oxides,5C_Open-burning-dump,,TON,26.2694 +TX,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1174.962335 +TX,Nitrogen Oxides,5C_Open-burning-residential,,TON,942.9142871 +TX,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,44.4966657 +TX,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.0824 +TX,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,3.657 +TX,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,346.52 +TX,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.312486358 +TX,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,6067.481547 +TX,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,3.57736021 +TX,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,328.1388304 +TX,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,39.02459771 +TX,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,8.282481449 +TX,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9.81297405 +TX,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.583012902 +TX,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,8560.375428 +TX,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,256.7165397 +TX,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,7455.555522 +TX,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0632493 +TX,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,1610.792851 +TX,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,2415.439604 +TX,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.16154265 +TX,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.34916897 +TX,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,59.15814089 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.040206911 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,919.3764278 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,78.97729309 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,178.6275453 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,30.47437753 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.398630169 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2901.222346 +TX,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,1.1747167 +TX,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,1.695377 +TX,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,598.5982023 +TX,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.20433637 +TX,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.644746 +TX,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1550750.129 +TX,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,233.08738 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.719761557 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002066802 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,78.93411948 +TX,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.007222669 +TX,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.029837377 +TX,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.15577672 +TX,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,19.50568934 +TX,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2.294000346 +TX,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,33.04934618 +TX,PM10 Filterable,2A1_Cement-production,,TON,1350.204311 +TX,PM10 Filterable,2A2_Lime-production,,TON,492.2897769 +TX,PM10 Filterable,2A5b_Construction-and-demolition,,TON,277294.3772 +TX,PM10 Filterable,2A6_Other-minerals,,TON,41891.99801 +TX,PM10 Filterable,2B_Chemicals-other,,TON,1470.633524 +TX,PM10 Filterable,2C_Iron-steel-alloy,,TON,424.8303768 +TX,PM10 Filterable,2C3_Aluminum-production,,TON,654.7565168 +TX,PM10 Filterable,2C5_Lead-production,,TON,12.1346062 +TX,PM10 Filterable,2C6_Zinc-production,,TON,0.14991349 +TX,PM10 Filterable,2C7_Other-metal,,TON,221.0835772 +TX,PM10 Filterable,2C7a_Copper-production,,TON,15.21855991 +TX,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,110.8595412 +TX,PM10 Filterable,2D3d_Coating-application,,TON,0 +TX,PM10 Filterable,2D3e_Degreasing,,TON,0 +TX,PM10 Filterable,2D3h_Printing,,TON,0 +TX,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +TX,PM10 Filterable,2H1_Pulp-and-paper,,TON,915.8961663 +TX,PM10 Filterable,2H2_Food-and-beverage,,TON,846.1224138 +TX,PM10 Filterable,2H3_Other-industrial-processes,,TON,1216.824287 +TX,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,4326.469451 +TX,PM10 Filterable,2I_Wood-processing,,TON,15.6506673 +TX,PM10 Filterable,3Dc_Other-farm,,TON,434236.4359 +TX,PM10 Filterable,5A_Solid-waste-disposal,,TON,434.0327532 +TX,PM10 Filterable,5C_Incineration,,TON,0.873234 +TX,PM10 Filterable,5C_Incineration,biomass,TON,38.0417115 +TX,PM10 Filterable,5C_Open-burning-commercial,,TON,0 +TX,PM10 Filterable,5C_Open-burning-dump,,TON,1.16615986 +TX,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3994.870542 +TX,PM10 Filterable,5C_Open-burning-residential,,TON,5971.792148 +TX,PM10 Filterable,5C_Open-burning-yard-waste,,TON,165.789836 +TX,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.530985 +TX,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.395704101 +TX,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.04150476 +TX,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.007425 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,9132.5432 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,278.5274 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8115.91 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0672 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3389.077841 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,light_oil,TON,0.027117825 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4394.937182 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.2502 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.5408 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,154.8559 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,748.9795147 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,118.940502 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.065817136 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.062201421 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1213.818192 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,87.15492551 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,199.6518135 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,34.39537929 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,7.800459486 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,6166.480977 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.5742 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,2.2027 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1171.387 +TX,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.245 +TX,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.6967 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,4375.892243 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,185.9688308 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003444811 +TX,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,1196.323901 +TX,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1550750.129 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,407.6288709 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,9298.766489 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,910.2718299 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,419.9620713 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,14911.99165 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,985.5569347 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1892.048094 +TX,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.396827354 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,736.9832492 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004828146 +TX,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1925.06136 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,314.9268454 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.765721635 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002892461 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,939.92149 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,591.6460539 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,206.9533981 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.237826762 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,63.71248493 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,870.3755357 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6939.10392 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.015916631 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.030837813 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.343285663 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,189.8923402 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6156.114901 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,94.73857275 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,39.8674885 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,18.7228403 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,777.1387035 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.923654729 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,463.969452 +TX,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3538.877467 +TX,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1238 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.4575 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,7.0303 +TX,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1418.656077 +TX,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1452.7513 +TX,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,639.3806 +TX,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,277294.3772 +TX,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,43389.26218 +TX,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,2198.6066 +TX,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1095.099 +TX,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1065.9833 +TX,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,44.7622 +TX,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.552 +TX,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1507.8445 +TX,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,57.2089 +TX,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,206.9684 +TX,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,164.5387 +TX,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,6.1076 +TX,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,1.1614 +TX,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.6346 +TX,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,7.3611 +TX,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2282.8405 +TX,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,8698.632841 +TX,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1760.29151 +TX,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,6104.23669 +TX,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,24.0548 +TX,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,434252.783 +TX,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1540.2 +TX,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,635.6325 +TX,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.649083157 +TX,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,44.67862801 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,1.2038 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3994.870542 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5971.792148 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,165.789836 +TX,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.5862 +TX,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.2065 +TX,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.9276 +TX,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.0115 +TX,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,4072.304168 +TX,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,255.5628104 +TX,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2175.352331 +TX,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0632493 +TX,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1606.455443 +TX,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1961.692876 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.154957 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.34916897 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,55.5943481 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.009075494 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,756.4486295 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,78.38986298 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3.682393023 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,30.49199868 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.400595354 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2758.400148 +TX,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,1.1747167 +TX,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,1.35269 +TX,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,553.6077652 +TX,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.20433637 +TX,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.644746 +TX,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,170315.7801 +TX,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,50.02210038 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.654054495 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002087696 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,77.92056049 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.005550757 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.019814881 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.119717312 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,10.72813172 +TX,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2.080935346 +TX,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,32.45168144 +TX,PM2.5 Filterable,2A1_Cement-production,,TON,791.7386194 +TX,PM2.5 Filterable,2A2_Lime-production,,TON,275.3742164 +TX,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,27729.43772 +TX,PM2.5 Filterable,2A6_Other-minerals,,TON,6919.524623 +TX,PM2.5 Filterable,2B_Chemicals-other,,TON,1076.558243 +TX,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,276.6072975 +TX,PM2.5 Filterable,2C3_Aluminum-production,,TON,251.1533678 +TX,PM2.5 Filterable,2C5_Lead-production,,TON,0.774548827 +TX,PM2.5 Filterable,2C6_Zinc-production,,TON,0.14991349 +TX,PM2.5 Filterable,2C7_Other-metal,,TON,90.79738349 +TX,PM2.5 Filterable,2C7a_Copper-production,,TON,12.01421913 +TX,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,102.384426 +TX,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +TX,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +TX,PM2.5 Filterable,2D3h_Printing,,TON,0 +TX,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +TX,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,412.2198592 +TX,PM2.5 Filterable,2H2_Food-and-beverage,,TON,348.4402563 +TX,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,1031.615412 +TX,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,3905.334813 +TX,PM2.5 Filterable,2I_Wood-processing,,TON,5.430961725 +TX,PM2.5 Filterable,3Dc_Other-farm,,TON,86829.71555 +TX,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,90.17632757 +TX,PM2.5 Filterable,5C_Incineration,,TON,0.873234 +TX,PM2.5 Filterable,5C_Incineration,biomass,TON,20.4294755 +TX,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0 +TX,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.66712086 +TX,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3079.645542 +TX,PM2.5 Filterable,5C_Open-burning-residential,,TON,5468.902726 +TX,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,127.8078875 +TX,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.388567 +TX,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.538713101 +TX,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.04150476 +TX,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.007425 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,4644.47524 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,277.3736709 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2835.708609 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0672 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3384.689888 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,light_oil,TON,0.024668356 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3941.19302 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.24361435 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.5408 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,151.2921072 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,726.2640397 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,118.133533 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.049751495 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.031107627 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1050.875981 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,86.54216997 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,24.9122771 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,34.40302896 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,7.80219434 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,6004.037499 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.5742 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,1.860013 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1126.396596 +TX,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.245 +TX,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.6967 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,4244.615644 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,171.1993219 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003444811 +TX,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,746.226528 +TX,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,170315.7801 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,364.5665284 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4545.370015 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,805.1823837 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,203.5972996 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,13377.6054 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,889.1464671 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1626.269862 +TX,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.86016256 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,663.5241741 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004713462 +TX,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1640.9826 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,66.88401828 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.238554074 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002569742 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,832.7389447 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,573.8969463 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,190.9377962 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.237826762 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,61.80110245 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,800.7456806 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6927.450014 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.014244726 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.020815319 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.307226232 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,188.5949063 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5971.431202 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,89.33077554 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,39.8674885 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,18.1611548 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,714.9723819 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.775946729 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,426.8519299 +TX,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3462.36554 +TX,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1238 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.2675 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.9428 +TX,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1418.058413 +TX,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,894.2856471 +TX,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,422.4648925 +TX,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,27729.43772 +TX,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,7637.457533 +TX,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1793.586764 +TX,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,946.875881 +TX,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,662.3800584 +TX,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,33.40213756 +TX,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.552 +TX,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,249.5388466 +TX,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,54.00451532 +TX,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,123.6849763 +TX,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,144.3962 +TX,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,6.0815 +TX,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,1.1614 +TX,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.6346 +TX,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,7.1929 +TX,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1206.015278 +TX,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,6842.075389 +TX,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1584.895561 +TX,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,5673.289675 +TX,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,13.83508643 +TX,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,86846.06262 +TX,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1540.2 +TX,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,222.8160498 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.748234354 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,26.96724281 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.704763 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3079.645542 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5468.902726 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,127.8078875 +TX,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.443783 +TX,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,2.349509 +TX,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.5376 +TX,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.0115 +TX,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,282311.3777 +TX,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,50.74353582 +TX,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,197831.1373 +TX,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +TX,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.026112317 +TX,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,534.1714696 +TX,Sulfur Dioxide,1A1b_Pet-refining,heavy_oil,TON,0 +TX,Sulfur Dioxide,1A1b_Pet-refining,light_oil,TON,0.020420654 +TX,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,25815.32018 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0229 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.1391 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,3360.3369 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,244.5142365 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.57637775 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.421585088 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,326.3489051 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,113.7268902 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4510.202064 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1948.845168 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.588009125 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16899.02151 +TX,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.2064 +TX,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,2.5322 +TX,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,5687.0434 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.7468 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1418 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1151.483525 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.306750323 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000655346 +TX,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1912.779285 +TX,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,10.34763889 +TX,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,2743.400592 +TX,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,15.12229244 +TX,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,122.7509484 +TX,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,374.0816196 +TX,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,22.57528928 +TX,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,55.36640249 +TX,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.794575035 +TX,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,1741.691554 +TX,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.0009284 +TX,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,23870.75692 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.08424539 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.5682015 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.005568488 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,100.4532248 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,115.5276599 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14.74307148 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.750648211 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,16.304235 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.5438608 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,104.509082 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.28489436 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0.152162565 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.14452797 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,66.25355617 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1762.346243 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.22162321 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.673418163 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.31317279 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,6.091916802 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.852537002 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.993564841 +TX,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1482.016321 +TX,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0364 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +TX,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9755.816047 +TX,Sulfur Dioxide,2A1_Cement-production,,TON,9376.594 +TX,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1075.5994 +TX,Sulfur Dioxide,2A6_Other-minerals,,TON,9582.697 +TX,Sulfur Dioxide,2B_Chemicals-other,,TON,25999.5057 +TX,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,636.1069 +TX,Sulfur Dioxide,2C3_Aluminum-production,,TON,2161.7066 +TX,Sulfur Dioxide,2C5_Lead-production,,TON,641.0101 +TX,Sulfur Dioxide,2C6_Zinc-production,,TON,0 +TX,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,46.169 +TX,Sulfur Dioxide,2C7a_Copper-production,,TON,6.5644 +TX,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,200.6618 +TX,Sulfur Dioxide,2D3d_Coating-application,,TON,1.3957 +TX,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +TX,Sulfur Dioxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.0005 +TX,Sulfur Dioxide,2D3h_Printing,,TON,0.122 +TX,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0 +TX,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2158.8257 +TX,Sulfur Dioxide,2H2_Food-and-beverage,,TON,3.532 +TX,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0 +TX,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,3.8649 +TX,Sulfur Dioxide,3F_Ag-res-on-field,,TON,81.54 +TX,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,83.802 +TX,Sulfur Dioxide,5C_Incineration,,TON,0.572303098 +TX,Sulfur Dioxide,5C_Incineration,biomass,TON,42.27270591 +TX,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0 +TX,Sulfur Dioxide,5C_Open-burning-dump,,TON,0.3392 +TX,Sulfur Dioxide,5C_Open-burning-residential,,TON,157.1524034 +TX,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.6144554 +TX,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0 +TX,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,14.5623 +TX,Volatile Organic Compounds,11C_Other-natural,,TON,3668130.17 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,1302.477701 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,49.17799029 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,885.481041 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.049302797 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1640.241765 +TX,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,2645.086522 +TX,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,3016.973527 +TX,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,20751.12605 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.172 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.3807 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,440.0258 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1028.895327 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4371.199858 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15.32565694 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,364.4826089 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,99.81664624 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.29791977 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,112.6850444 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,21.80628554 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,11952.27245 +TX,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.555 +TX,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.4015 +TX,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1828.8924 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0302 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.9696 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,5046.807067 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,2524.808873 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.008900272 +TX,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,6181.930395 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,775.2249451 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,194488.09 +TX,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,716.5606106 +TX,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9807.554397 +TX,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,14543.53063 +TX,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,2003.333149 +TX,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2128.146758 +TX,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1820.320459 +TX,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2379.188381 +TX,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.28668294 +TX,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,676.5132357 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,73.39948578 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.949067643 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.042126485 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,702.6586591 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,838.2471033 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,12758.47015 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.872837411 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,89.1050247 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,22733.46159 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,8236.809393 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.004681361 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.043200012 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.100966396 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,607.2998981 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6208.453004 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1781.453407 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,17.13745228 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.0328311 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,26247.83916 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.924270375 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,30240.98797 +TX,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,480442.0437 +TX,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,16409.89757 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,24699.21713 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,66869.99546 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3090.29414 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,6557.6052 +TX,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,855293.7606 +TX,Volatile Organic Compounds,2A1_Cement-production,,TON,806.1974 +TX,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,29.5512 +TX,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,2.7541 +TX,Volatile Organic Compounds,2A6_Other-minerals,,TON,1697.7319 +TX,Volatile Organic Compounds,2B_Chemicals-other,,TON,24820.3022 +TX,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1133.9603 +TX,Volatile Organic Compounds,2C3_Aluminum-production,,TON,452.17 +TX,Volatile Organic Compounds,2C5_Lead-production,,TON,55.4886 +TX,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +TX,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,1526.0187 +TX,Volatile Organic Compounds,2C7a_Copper-production,,TON,44.8992 +TX,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,102538.1882 +TX,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,407.9779 +TX,Volatile Organic Compounds,2D3d_Coating-application,,TON,103068.9242 +TX,Volatile Organic Compounds,2D3e_Degreasing,,TON,11189.2801 +TX,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,8240.4925 +TX,Volatile Organic Compounds,2D3h_Printing,,TON,25469.8217 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3777.187013 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,10.87753491 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4176.683491 +TX,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,7131.7424 +TX,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2114.370122 +TX,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,5277.410283 +TX,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,1.990017282 +TX,Volatile Organic Compounds,2I_Wood-processing,,TON,52.0758 +TX,Volatile Organic Compounds,3Dc_Other-farm,,TON,2.0197 +TX,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,15463.58423 +TX,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,815.4 +TX,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,455.7557 +TX,Volatile Organic Compounds,5C_Incineration,,TON,0.441912492 +TX,Volatile Organic Compounds,5C_Incineration,biomass,TON,69.67995137 +TX,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0 +TX,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.395 +TX,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,2.4729 +TX,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2725.912628 +TX,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1345.224316 +TX,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,186.7270616 +TX,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,648.6383741 +TX,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1489.5099 +TX,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,5.9155 +TX,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,281.4257 +TX,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.4402 +UT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.552087 +UT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,32.4493 +UT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,193.696032 +UT,Ammonia,1A1b_Pet-refining,natural_gas,TON,13.540828 +UT,Ammonia,1A1g_Other-energy-transf,diesel_oil,TON,0 +UT,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.033234 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.958658552 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.131957314 +UT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +UT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.100339538 +UT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.145691306 +UT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +UT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,164.2673762 +UT,Ammonia,1A2c_Chemicals,natural_gas,TON,0.394338 +UT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.657599924 +UT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.162250576 +UT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.764713421 +UT,Ammonia,1A3bii_Road-LDV,light_oil,TON,1034.042334 +UT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.162826345 +UT,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,42.72760651 +UT,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,40.73759471 +UT,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,9.661781372 +UT,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,9.845839629 +UT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.366632037 +UT,Ammonia,1A3c_Rail,diesel_oil,TON,6.359993387 +UT,Ammonia,1A3c_Rail,light_oil,TON,0.001554221 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.694065884 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.102858383 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.49619985 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.038797037 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.212495675 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.470006192 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.982943653 +UT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.138813659 +UT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.919505631 +UT,Ammonia,1A4bi_Residential-stationary,biomass,TON,128.1811873 +UT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.60757203 +UT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.353799973 +UT,Ammonia,1A4bi_Residential-stationary,heavy_oil,TON,3.24915027 +UT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.428944364 +UT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,925.4329655 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.146514813 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.033148868 +UT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.009769198 +UT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.627427694 +UT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.196264466 +UT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.3269147 +UT,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.068234 +UT,Ammonia,2A1_Cement-production,,TON,4.194 +UT,Ammonia,2A2_Lime-production,,TON,0 +UT,Ammonia,2A6_Other-minerals,,TON,108.174 +UT,Ammonia,2B_Chemicals-other,,TON,34.414797 +UT,Ammonia,2C_Iron-steel-alloy,,TON,2.281 +UT,Ammonia,2C7_Other-metal,,TON,0 +UT,Ammonia,2C7a_Copper-production,,TON,1.206 +UT,Ammonia,2D3a_Domestic-solvent-use,,TON,68.944495 +UT,Ammonia,2D3d_Coating-application,,TON,0 +UT,Ammonia,2D3e_Degreasing,,TON,0 +UT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.006 +UT,Ammonia,3B1b_Cattle-non-dairy,,TON,21462.5 +UT,Ammonia,3B2_Manure-sheep,,TON,928.749995 +UT,Ammonia,3B3_Manure-swine,,TON,8191.04004 +UT,Ammonia,3B4_Manure-other,Other_Fuel,TON,3038.281827 +UT,Ammonia,3B4_Manure-poultry,,TON,3522.40736 +UT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1702.295762 +UT,Ammonia,5A_Solid-waste-disposal,,TON,0.736901228 +UT,Ammonia,5C_Incineration,,TON,0 +UT,Ammonia,5C_Incineration,biomass,TON,11.41352 +UT,Ammonia,5C_Open-burning-commercial,,TON,0 +UT,Ammonia,5C_Open-burning-industrial,,TON,0.088922 +UT,Ammonia,5D1_Wastewater-domestic,Other_Fuel,TON,684.622388 +UT,Ammonia,6A_Other-commertial,Other_Fuel,TON,793.550866 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,117970.4818 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,120145.3037 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8442.532262 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,695708.7882 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,13338.81095 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.717781659 +UT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,117225.0084 +UT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10504467.47 +UT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,78692.77912 +UT,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,663261.7243 +UT,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3140073.621 +UT,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,283093.1881 +UT,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,536924.9306 +UT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,64378.52757 +UT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2454.4208 +UT,Carbon Dioxide,1A3c_Rail,light_oil,TON,119.9214184 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,57707.69401 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,80731.02913 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3566.438093 +UT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,17059.34114 +UT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,139999.9744 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,140957.8562 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2469.599914 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,15.78814249 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1194.1565 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,167603.4241 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24170.05021 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,89009.16833 +UT,Carbon Monoxide,11C_Other-natural,,TON,166727.498 +UT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,12.485 +UT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,4203.195 +UT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,669.755674 +UT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1029.56552 +UT,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,1.172 +UT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,8.498175 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1637.874471 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9504.065576 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,581.1964665 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,32.1570771 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,132.4901436 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,172.4966718 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.902583228 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,63.06098785 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1471.827618 +UT,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,1.638595 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3448.15441 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3837.700121 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.320548102 +UT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3650.369012 +UT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,466.5175385 +UT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,317857.2422 +UT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,280.1226709 +UT,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,29325.01983 +UT,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6231.864596 +UT,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,1246.951019 +UT,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1242.012405 +UT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4414.52525 +UT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1602.252171 +UT,Carbon Monoxide,1A3c_Rail,light_oil,TON,39.57961334 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2625.330717 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,19.11265628 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,39.73999874 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,302.8363218 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,997.7984791 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,349.1544355 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,23983.58526 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,91.94062882 +UT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,81.05517463 +UT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,47599.79029 +UT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,14635.58588 +UT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,20.1677233 +UT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,48.6475036 +UT,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,20.3071824 +UT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.17011262 +UT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1894.253029 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,775.5951421 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,812.5316677 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.736849621 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.694137 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,33044.91812 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,48.65376706 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,15241.50028 +UT,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,58.3588783 +UT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,154.651269 +UT,Carbon Monoxide,2A1_Cement-production,,TON,2894.32 +UT,Carbon Monoxide,2A2_Lime-production,,TON,0 +UT,Carbon Monoxide,2A6_Other-minerals,,TON,2727.601 +UT,Carbon Monoxide,2B_Chemicals-other,,TON,35.755873 +UT,Carbon Monoxide,2C_Iron-steel-alloy,,TON,718.094 +UT,Carbon Monoxide,2C7_Other-metal,,TON,0 +UT,Carbon Monoxide,2C7a_Copper-production,,TON,79.763 +UT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +UT,Carbon Monoxide,2D3e_Degreasing,,TON,0 +UT,Carbon Monoxide,2H2_Food-and-beverage,,TON,512.612563 +UT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,11.776 +UT,Carbon Monoxide,3F_Ag-res-on-field,,TON,12664.92589 +UT,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +UT,Carbon Monoxide,5C_Incineration,,TON,0 +UT,Carbon Monoxide,5C_Incineration,biomass,TON,46.50775391 +UT,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.088 +UT,Carbon Monoxide,5C_Open-burning-industrial,,TON,36.026 +UT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,6926.55934 +UT,Carbon Monoxide,5C_Open-burning-residential,,TON,878.21506 +UT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,752.926698 +UT,Carbon Monoxide,5C_Other-open-burning,Other_Fuel,TON,7258.9596 +UT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.003 +UT,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.375623767 +UT,Methane,1A3bii_Road-LDV,light_oil,TON,1265.868095 +UT,Methane,1A3biii_Road-bus,diesel_oil,TON,0.780602345 +UT,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,109.8448135 +UT,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,57.50418105 +UT,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,5.524197837 +UT,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.504268961 +UT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.64841294 +UT,Nitrogen Oxides,11C_Other-natural,,TON,9353.2328 +UT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,46.29 +UT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,67435.455 +UT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1677.827536 +UT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,791.374909 +UT,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,5.441 +UT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,4.750772 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1124.617827 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1294.036962 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,95.15255334 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,28.52836907 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,413.2907048 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2913.796901 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.459662539 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,46.77446064 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3717.960262 +UT,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,57.902836 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6380.491607 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,71.32067815 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.068355247 +UT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1147.924639 +UT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,739.5780132 +UT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,36385.0159 +UT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,763.4408838 +UT,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2999.561858 +UT,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,27561.55521 +UT,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1913.461983 +UT,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4330.516155 +UT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,187.297969 +UT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,11218.6849 +UT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.501086203 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5578.061794 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,37.09895252 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,309.6220815 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,22.08003218 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1160.838186 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,592.1513463 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,421.3190452 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,25.5514718 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,174.0798821 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,550.7942666 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,270.8184796 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,72.603877 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,1.60978975 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,73.1058404 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.61240577 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4504.39964 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1493.847913 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.53971337 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.386838744 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.880344 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,225.9317948 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,288.8014576 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,479.8616744 +UT,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,7.4911501 +UT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2201.209932 +UT,Nitrogen Oxides,2A1_Cement-production,,TON,1943.09 +UT,Nitrogen Oxides,2A2_Lime-production,,TON,0 +UT,Nitrogen Oxides,2A6_Other-minerals,,TON,2522.80878 +UT,Nitrogen Oxides,2B_Chemicals-other,,TON,151.979131 +UT,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,181.967 +UT,Nitrogen Oxides,2C7_Other-metal,,TON,0 +UT,Nitrogen Oxides,2C7a_Copper-production,,TON,119.376 +UT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +UT,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +UT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +UT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,130.322 +UT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,374.7017043 +UT,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +UT,Nitrogen Oxides,5C_Incineration,,TON,0 +UT,Nitrogen Oxides,5C_Incineration,biomass,TON,254.2199369 +UT,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0 +UT,Nitrogen Oxides,5C_Open-burning-industrial,,TON,93.698 +UT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,204.9279058 +UT,Nitrogen Oxides,5C_Open-burning-residential,,TON,61.991655 +UT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,51.91915683 +UT,Nitrogen Oxides,5C_Other-open-burning,Other_Fuel,TON,206.6608 +UT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.028 +UT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.410839416 +UT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,760.3700981 +UT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.17371047 +UT,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,52.14507273 +UT,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2.906588975 +UT,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,1.078400453 +UT,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.892260299 +UT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.84847233 +UT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.427314727 +UT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2008.18983 +UT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,97.79520028 +UT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,325.2542271 +UT,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.2466396 +UT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.34549283 +UT,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,15.01795738 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.34041099 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,61.54671593 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.119842115 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,101.9173824 +UT,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,5.125474631 +UT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,154577.6524 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,434.6754467 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,40.34304548 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,20.45700335 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.224481556 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.25512044 +UT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.35622874 +UT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.09677963 +UT,PM10 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,1.299659266 +UT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.03674433 +UT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.470921714 +UT,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,6.4 +UT,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.688485986 +UT,PM10 Filterable,2A1_Cement-production,,TON,157.2073997 +UT,PM10 Filterable,2A2_Lime-production,,TON,147.3933968 +UT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18609.40073 +UT,PM10 Filterable,2A6_Other-minerals,,TON,26332.55944 +UT,PM10 Filterable,2B_Chemicals-other,,TON,47.57577956 +UT,PM10 Filterable,2C_Iron-steel-alloy,,TON,49.69606839 +UT,PM10 Filterable,2C7_Other-metal,,TON,179.8067275 +UT,PM10 Filterable,2C7a_Copper-production,,TON,994.8922554 +UT,PM10 Filterable,2D3d_Coating-application,,TON,0 +UT,PM10 Filterable,2D3e_Degreasing,,TON,0 +UT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,4.416780412 +UT,PM10 Filterable,2H2_Food-and-beverage,,TON,2.192592566 +UT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,429.6620554 +UT,PM10 Filterable,3Dc_Other-farm,,TON,8072.379 +UT,PM10 Filterable,5A_Solid-waste-disposal,,TON,10.3865404 +UT,PM10 Filterable,5C_Incineration,,TON,0 +UT,PM10 Filterable,5C_Incineration,biomass,TON,0.36075747 +UT,PM10 Filterable,5C_Open-burning-commercial,,TON,0 +UT,PM10 Filterable,5C_Open-burning-industrial,,TON,9.714 +UT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,696.754314 +UT,PM10 Filterable,5C_Open-burning-residential,,TON,392.61388 +UT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,10.5012897 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.702848 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2596.237 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,181.833954 +UT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,403.9073188 +UT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.382 +UT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,3.747539 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.70470485 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.69688638 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.092090738 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,35.94493045 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,37.48733626 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,110.7637136 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.288256393 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.790101763 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,381.113662 +UT,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,13.487119 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,559.0273865 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,20.62619232 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430562 +UT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,86.46375393 +UT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,154577.6524 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,52.43191878 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1235.61841 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,40.77741966 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,81.19176547 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1306.181286 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,132.6736182 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,233.6424774 +UT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.24770993 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,356.4672351 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.016182005 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,513.9341905 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,49.80071221 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,32.6450958 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.554803376 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,99.25456302 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,61.64014185 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.72005822 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.445130891 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,14.90384273 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,134.0356125 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2153.692291 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.446021215 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,8.86176375 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,6.579523 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.078795942 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.44497308 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,144.6416272 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.053875868 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001994825 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.9837698 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,360.1238301 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.939423311 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,80.17157321 +UT,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,9.91246 +UT,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.261635 +UT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,169.147 +UT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,191.511135 +UT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18609.86847 +UT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,26519.21611 +UT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,59.447582 +UT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,96.348561 +UT,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,319.550968 +UT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,1850.606 +UT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.750894 +UT,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +UT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,8.2524 +UT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1330.375955 +UT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,456.985644 +UT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,414.37496 +UT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,13778.8384 +UT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1273.986489 +UT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,252.04713 +UT,PM10 Primary (Filt + Cond),5C_Incineration,,TON,8.23216492 +UT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.443188922 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,309.532 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,696.754314 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,392.61388 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,79.4371797 +UT,PM10 Primary (Filt + Cond),5C_Other-open-burning,Other_Fuel,TON,878.3084 +UT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.003 +UT,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.915 +UT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.051315061 +UT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,818.5157329 +UT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,97.79520028 +UT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,32.32863106 +UT,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.2466396 +UT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.34549283 +UT,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,14.53773054 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.33894134 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,23.70629022 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.07736835 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,99.68445961 +UT,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.000746991 +UT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,16485.69631 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,428.2359552 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.706764488 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.965202966 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.179028115 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.25181262 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.34784299 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.672219789 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.028238699 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.209008897 +UT,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,5.31064 +UT,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.668747986 +UT,PM2.5 Filterable,2A1_Cement-production,,TON,89.62038806 +UT,PM2.5 Filterable,2A2_Lime-production,,TON,75.98811485 +UT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3721.712797 +UT,PM2.5 Filterable,2A6_Other-minerals,,TON,3465.321694 +UT,PM2.5 Filterable,2B_Chemicals-other,,TON,18.63451023 +UT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,10.94295488 +UT,PM2.5 Filterable,2C7_Other-metal,,TON,72.83185783 +UT,PM2.5 Filterable,2C7a_Copper-production,,TON,40.52764859 +UT,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +UT,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +UT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.721325412 +UT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.955762561 +UT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,37.77540479 +UT,PM2.5 Filterable,3Dc_Other-farm,,TON,1614.408 +UT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,3.053865448 +UT,PM2.5 Filterable,5C_Incineration,,TON,0 +UT,PM2.5 Filterable,5C_Incineration,biomass,TON,0.16721147 +UT,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0 +UT,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +UT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,537.128163 +UT,PM2.5 Filterable,5C_Open-burning-residential,,TON,359.55152 +UT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,8.09548 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.326848 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1406.562 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,181.833954 +UT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,110.9817228 +UT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.382 +UT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,3.747539 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,80.21061326 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.55022284 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.089814761 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,24.08801801 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,25.62356739 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,35.29919634 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.151891415 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.513152733 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,258.6939227 +UT,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,8.36239218 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,542.2566039 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,18.98807587 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000430562 +UT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,33.69564673 +UT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,16485.69631 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,47.92981348 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,848.7763687 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,36.79701275 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,55.6439324 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1207.662388 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,121.5464981 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,212.0928305 +UT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.033982781 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,325.1934801 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014915944 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,446.614342 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.214901233 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.26887228 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.325124147 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,87.49572863 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,59.79099465 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,20.03904405 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.445130891 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,14.45672809 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,123.3179795 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2150.513547 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.29412765 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,5.45339205 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,5.27987133 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.070519087 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.59872547 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,140.3023819 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.969581409 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001994825 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.9242583 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,331.3142816 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.761239715 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,73.75787937 +UT,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,8.8231 +UT,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.241897 +UT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,101.56 +UT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,120.1058648 +UT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3722.180536 +UT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3651.567586 +UT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,30.50633231 +UT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,57.59545879 +UT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,212.5717289 +UT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,896.2413892 +UT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.210894 +UT,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +UT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,4.556946 +UT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1232.854565 +UT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,65.09899048 +UT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,62.156262 +UT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2698.716317 +UT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1273.986489 +UT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,64.2186295 +UT,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.307448596 +UT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.194562246 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,24.255 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,537.128163 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,359.55152 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,72.028371 +UT,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,Other_Fuel,TON,790.47746 +UT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.003 +UT,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.29 +UT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,5.563427 +UT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,21705.494 +UT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,21.745292 +UT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1829.244876 +UT,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.358 +UT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.08598 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29.53326984 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.165973487 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.241355186 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.33326856 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3411.848793 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.704433273 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.505693977 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,622.4134926 +UT,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,6.608116 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,149.6492859 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.782143089 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.19186E-05 +UT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,130.0729146 +UT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.285243975 +UT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,325.4373815 +UT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.861941282 +UT,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,20.54848167 +UT,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,34.73755062 +UT,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,3.106404236 +UT,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.938304941 +UT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.994010704 +UT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,717.4933414 +UT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008941261 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,311.863517 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,102.3855643 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,260.2137007 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.2761358 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.077416525 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.41266655 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12.8412942 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.078844092 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3.669469377 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,22.82801539 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,46.5450131 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,171.8289664 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,4.38712068 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,heavy_oil,TON,175.4540726 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.449359926 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,28.4127312 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,30.32036038 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.106476549 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000347237 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.25683149 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,7.706886375 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.443499077 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.424177282 +UT,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.7990101 +UT,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.678944 +UT,Sulfur Dioxide,2A1_Cement-production,,TON,0.333 +UT,Sulfur Dioxide,2A2_Lime-production,,TON,0 +UT,Sulfur Dioxide,2A6_Other-minerals,,TON,495.45503 +UT,Sulfur Dioxide,2B_Chemicals-other,,TON,3.743818 +UT,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,41.41 +UT,Sulfur Dioxide,2C7_Other-metal,,TON,0 +UT,Sulfur Dioxide,2C7a_Copper-production,,TON,969.519 +UT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +UT,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +UT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +UT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,29.676 +UT,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,2.660001 +UT,Sulfur Dioxide,5C_Incineration,,TON,0 +UT,Sulfur Dioxide,5C_Incineration,biomass,TON,85.87799188 +UT,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0 +UT,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.015 +UT,Sulfur Dioxide,5C_Open-burning-residential,,TON,10.331941 +UT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.86122534 +UT,Volatile Organic Compounds,11C_Other-natural,,TON,819842 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.95023 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,329.6405 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,70.51628 +UT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,586.3585075 +UT,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1130.106677 +UT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1860.994678 +UT,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.432 +UT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,7.981678 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,129.3751477 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,440.6692495 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.188751178 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.166754429 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,34.40411284 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,13.10835874 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.004130894 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.415337964 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,191.3484441 +UT,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.685028 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,692.1701308 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,262.8300041 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001110792 +UT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,226.1587424 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,108.870441 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,27637.74056 +UT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,41.83666782 +UT,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1809.834065 +UT,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,1411.781979 +UT,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,287.880204 +UT,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,286.7151704 +UT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1291.42108 +UT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,610.0627689 +UT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.470698626 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,639.8926702 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.216216055 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.564179764 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.69125001 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,156.6025289 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,87.26024504 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1170.359587 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.300876488 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,20.48089147 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3284.229193 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2496.962504 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.82348129 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,1.7689982 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,heavy_oil,TON,2.89580367 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.02381576 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,260.4504153 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,149.6240438 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,36.69560597 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006722064 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.602964282 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12280.69591 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.97680842 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4589.896507 +UT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,107.8057218 +UT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,21.61444886 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,43.21511113 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7832.855402 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,100.02558 +UT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,191.681843 +UT,Volatile Organic Compounds,2A1_Cement-production,,TON,50.333 +UT,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +UT,Volatile Organic Compounds,2A6_Other-minerals,,TON,293.88149 +UT,Volatile Organic Compounds,2B_Chemicals-other,,TON,68.29193 +UT,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,101.642 +UT,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +UT,Volatile Organic Compounds,2C7a_Copper-production,,TON,5.237 +UT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,22594.7866 +UT,Volatile Organic Compounds,2D3d_Coating-application,,TON,10715.96533 +UT,Volatile Organic Compounds,2D3e_Degreasing,,TON,1881.954055 +UT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,754.41621 +UT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,7451.95212 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,138.6515573 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,185.8525446 +UT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,812.1224138 +UT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,247.869579 +UT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,5440 +UT,Volatile Organic Compounds,3B2_Manure-sheep,,TON,120 +UT,Volatile Organic Compounds,3B3_Manure-swine,,TON,3712.20496 +UT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,846.64025 +UT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4486.01094 +UT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,869.3077596 +UT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0 +UT,Volatile Organic Compounds,5C_Incineration,,TON,2.973889669 +UT,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.330106769 +UT,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,1.15 +UT,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,11.636045 +UT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,475.432717 +UT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,88.441417 +UT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,21.549295 +UT,Volatile Organic Compounds,5C_Other-open-burning,Other_Fuel,TON,1239.9648 +UT,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,221.548751 +UT,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,296.422 +VA,Ammonia,1A1a_Public-Electricity,biomass,TON,8.337996 +VA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,23.92567 +VA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,34.93801 +VA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,36.576 +VA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,179.3801105 +VA,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,2.056 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.519232532 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.244794881 +VA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,169.5647439 +VA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.1481373 +VA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.400010047 +VA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,15.7227036 +VA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.002360304 +VA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,37.54598385 +VA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.237004 +VA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,16.58082665 +VA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.486233962 +VA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.01712408 +VA,Ammonia,1A3bii_Road-LDV,light_oil,TON,3309.474886 +VA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.781938889 +VA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,126.73087 +VA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,79.89452954 +VA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,30.53680129 +VA,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,22.4361777 +VA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.89475796 +VA,Ammonia,1A3c_Rail,diesel_oil,TON,8.220339642 +VA,Ammonia,1A3c_Rail,light_oil,TON,0.005267182 +VA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.815473413 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.339215105 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.53969938 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.229662483 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.394286546 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.487403147 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.08756984 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.072420443 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.242843518 +VA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.899449138 +VA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.16726249 +VA,Ammonia,1A4bi_Residential-stationary,biomass,TON,405.1998815 +VA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,89.8873 +VA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,7.079023739 +VA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,7.0154 +VA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,802.8031 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.662561809 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.17541849 +VA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.030712051 +VA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.766078343 +VA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.693430473 +VA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.689054903 +VA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0047745 +VA,Ammonia,2A2_Lime-production,,TON,27.281 +VA,Ammonia,2A6_Other-minerals,Other_Fuel,TON,5.663 +VA,Ammonia,2B_Chemicals-other,,TON,911.4725405 +VA,Ammonia,2D3d_Coating-application,,TON,0.399507 +VA,Ammonia,2H1_Pulp-and-paper,,TON,104.913 +VA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,19.1358175 +VA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,18.8866395 +VA,Ammonia,3B1a_Cattle-dairy,,TON,3584.527064 +VA,Ammonia,3B1b_Cattle-non-dairy,,TON,7383.223034 +VA,Ammonia,3B2_Manure-sheep,,TON,271.284816 +VA,Ammonia,3B3_Manure-swine,,TON,2387.939598 +VA,Ammonia,3B4_Manure-other,,TON,1214.85936 +VA,Ammonia,3B4_Manure-poultry,,TON,17897.13772 +VA,Ammonia,3B4d_Manure-goats,,TON,440.065032 +VA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,8414.086556 +VA,Ammonia,5A_Solid-waste-disposal,,TON,2.8491 +VA,Ammonia,5D1_Wastewater-domestic,,TON,51.4047 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,310003.9163 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,325520.7784 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,17299.02399 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2039135.075 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,39971.20177 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,9.91406733 +VA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,389813.809 +VA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,34710877.62 +VA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,189482.7921 +VA,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2099982.614 +VA,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6521936.515 +VA,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,938967.365 +VA,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1298692.671 +VA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,191017.8591 +VA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,8292.270101 +VA,Carbon Dioxide,1A3c_Rail,light_oil,TON,406.8521435 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,131672.6973 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,184206.9779 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8126.069447 +VA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,110536.4012 +VA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,742972.6372 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,450389.968 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12659.47127 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,43.88108212 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3754.1604 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,113172.3222 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,85396.32394 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,314540.7606 +VA,Carbon Monoxide,11C_Other-natural,,TON,84285.5472 +VA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.1525 +VA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,589.009318 +VA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,192.9241655 +VA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,5785.67 +VA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,228.604 +VA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.0590425 +VA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1240.162673 +VA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,24548.794 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4126.247157 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23537.61389 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1396.320792 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,5273.512733 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12292.67323 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,844.4009073 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,846.3154618 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,141.5462025 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.229784349 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3813.176059 +VA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,15.016 +VA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,17.31575 +VA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.50155 +VA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,13.1724945 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,9848.917032 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,12196.61244 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.854793917 +VA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7702.056628 +VA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1555.312863 +VA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,819200.817 +VA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,696.9353666 +VA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,72575.70478 +VA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,12581.34799 +VA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,4193.11632 +VA,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2839.900701 +VA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9737.132751 +VA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2683.555927 +VA,Carbon Monoxide,1A3c_Rail,light_oil,TON,138.6381624 +VA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2616.682098 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,316.9022475 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,193.1999479 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,165.2863459 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,38.9649048 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.144827241 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3060.34202 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,796.6128817 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,59297.14902 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,209.6557215 +VA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,525.6437203 +VA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,266683.1668 +VA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,49855.60719 +VA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,449.4375 +VA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,973.3379586 +VA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,35.0785 +VA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1846.3211 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2294.587207 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5023.843231 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.82899709 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,43.038807 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,30759.78519 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,171.9014187 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,55109.18829 +VA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,66.159406 +VA,Carbon Monoxide,2A1_Cement-production,,TON,3.817 +VA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,293.325 +VA,Carbon Monoxide,2A6_Other-minerals,,TON,2224.85683 +VA,Carbon Monoxide,2B_Chemicals-other,,TON,20.591425 +VA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4857.098 +VA,Carbon Monoxide,2C7_Other-metal,,TON,7.749 +VA,Carbon Monoxide,2D3d_Coating-application,,TON,1.2054 +VA,Carbon Monoxide,2D3h_Printing,,TON,2.156 +VA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.063972 +VA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,6386.444296 +VA,Carbon Monoxide,2H2_Food-and-beverage,,TON,739.8235061 +VA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1375.516428 +VA,Carbon Monoxide,3F_Ag-res-on-field,,TON,815.2 +VA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,863.452752 +VA,Carbon Monoxide,5C_Incineration,,TON,2606.329897 +VA,Carbon Monoxide,5C_Incineration,biomass,TON,2001.850798 +VA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,36540.1069 +VA,Carbon Monoxide,5C_Open-burning-residential,,TON,8268.9246 +VA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1068.459655 +VA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,13.046 +VA,Carbon Monoxide,5D3_Wastewater-commertial,Other_Fuel,TON,25.281 +VA,Methane,1A3bii_Road-LDV,diesel_oil,TON,5.840785253 +VA,Methane,1A3bii_Road-LDV,light_oil,TON,3302.176368 +VA,Methane,1A3biii_Road-bus,diesel_oil,TON,2.792848347 +VA,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,268.3303551 +VA,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,251.273485 +VA,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,13.67413749 +VA,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,22.73986003 +VA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,43.41208474 +VA,Nitrogen Oxides,11C_Other-natural,,TON,8049.10118 +VA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.3365 +VA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1428.334 +VA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,10330.78966 +VA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,42648.518 +VA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,2078.947 +VA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.274041 +VA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2516.896776 +VA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,288.84 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2858.490885 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3535.998844 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,241.0487078 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,141.9958619 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4921.133598 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3255.034257 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,8454.532403 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1757.293097 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.061672837 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,7643.433869 +VA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,9.9044 +VA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,16.077593 +VA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,31.731 +VA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,19.016667 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,18843.5306 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,193.2758792 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.182280294 +VA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3765.862209 +VA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2381.457274 +VA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,103948.3049 +VA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1989.699381 +VA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,8124.014519 +VA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,48324.43806 +VA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,6170.289683 +VA,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8822.07719 +VA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,419.4827822 +VA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,17651.43881 +VA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.561842566 +VA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,15354.58572 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,49.33710773 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,789.319958 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,218.3020327 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,86.96402386 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,12.3142212 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3898.63178 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1355.486559 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,852.8185943 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,58.28447393 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1127.52422 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2436.67007 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,718.7913885 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1617.9746 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,31.9683355 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,126.4286 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4629.6608 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4625.651194 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,50.4155288 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.075809944 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,41.493322 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,232.3072912 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1020.368334 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1481.566458 +VA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,27.9818935 +VA,Nitrogen Oxides,2A1_Cement-production,,TON,76.355 +VA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,576.039 +VA,Nitrogen Oxides,2A6_Other-minerals,,TON,3091.911954 +VA,Nitrogen Oxides,2B_Chemicals-other,,TON,7553.64525 +VA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1029.651655 +VA,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.17085 +VA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,67.584333 +VA,Nitrogen Oxides,2D3d_Coating-application,,TON,1.265 +VA,Nitrogen Oxides,2D3h_Printing,,TON,2.681 +VA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.256754 +VA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1632.556 +VA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,3.97012 +VA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2332.208674 +VA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,32.07 +VA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,210.006 +VA,Nitrogen Oxides,5C_Incineration,,TON,628.2280551 +VA,Nitrogen Oxides,5C_Incineration,biomass,TON,615.8988546 +VA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1081.067875 +VA,Nitrogen Oxides,5C_Open-burning-residential,,TON,583.688861 +VA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,47.4870926 +VA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.601728 +VA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.371498132 +VA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2354.811682 +VA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.421019359 +VA,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,154.5022496 +VA,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,7.17342642 +VA,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,3.621965802 +VA,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.420566852 +VA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.663669094 +VA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.122556 +VA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,16.43168231 +VA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,51.52520056 +VA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2232.987472 +VA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,352.1845 +VA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01830513 +VA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,253.6806809 +VA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,27.438389 +VA,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,21.7855 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,197.513635 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,525.4390697 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,172.3464993 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,612.3982088 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,316.2498728 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.45446E-05 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,121.3625868 +VA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.4992185 +VA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.554695492 +VA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1608501 +VA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,84302.72234 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,34.39076542 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,39.322652 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,149.4088922 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.953880561 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.634807951 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.03831454 +VA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,97.0779 +VA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,22.23431843 +VA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,7.5277 +VA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.2971 +VA,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,4.60996 +VA,PM10 Filterable,2A1_Cement-production,,TON,138.8289586 +VA,PM10 Filterable,2A2_Lime-production,,TON,61.23398366 +VA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,25952.38424 +VA,PM10 Filterable,2A6_Other-minerals,,TON,11167.97109 +VA,PM10 Filterable,2B_Chemicals-other,,TON,236.5379127 +VA,PM10 Filterable,2C_Iron-steel-alloy,,TON,629.1189232 +VA,PM10 Filterable,2C3_Aluminum-production,,TON,3.0166213 +VA,PM10 Filterable,2C5_Lead-production,,TON,3.19454E-06 +VA,PM10 Filterable,2C7_Other-metal,,TON,179.7459379 +VA,PM10 Filterable,2C7a_Copper-production,,TON,2.111232 +VA,PM10 Filterable,2H1_Pulp-and-paper,,TON,838.1319288 +VA,PM10 Filterable,2H2_Food-and-beverage,,TON,197.422199 +VA,PM10 Filterable,2H3_Other-industrial-processes,,TON,372.0002144 +VA,PM10 Filterable,2I_Wood-processing,,TON,46.30193198 +VA,PM10 Filterable,3Dc_Other-farm,,TON,13828.43493 +VA,PM10 Filterable,5A_Solid-waste-disposal,,TON,84.62592664 +VA,PM10 Filterable,5C_Incineration,,TON,2.315055624 +VA,PM10 Filterable,5C_Incineration,biomass,TON,13.00019391 +VA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3675.63168 +VA,PM10 Filterable,5C_Open-burning-residential,,TON,3696.69561 +VA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,176.931783 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.126819 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,16.959163 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,68.7474585 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2450.725844 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,412.277 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0194485 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,573.3116805 +VA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,55.320375 +VA,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,29.005 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,210.1127819 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,33.82471787 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.226064305 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,303.032096 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3395.511118 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,358.078312 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,665.0580452 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,359.3945563 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.003042044 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,264.2447853 +VA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.633522 +VA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.766835 +VA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.42329 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1557.774883 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,61.81624779 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001148164 +VA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,190.8655919 +VA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,84302.72234 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,167.0325201 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3279.699161 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,116.5213646 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,190.0768185 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2600.212814 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,434.8494815 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,523.5327929 +VA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.62434832 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,624.8863596 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.054851639 +VA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,701.1397062 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,118.9081412 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,86.76176528 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,164.5560394 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.067709184 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.447164098 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.42052645 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,138.3408808 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,49.55677021 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.014133667 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,94.48410665 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,761.5066098 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7353.500714 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,213.9317 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,22.41648902 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,16.6624 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,24.0419 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,421.2011054 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,28.24920283 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005544067 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.1847457 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,266.1129499 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.84579101 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,283.3090542 +VA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,7.14 +VA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.041085 +VA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.3034515 +VA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,148.7581475 +VA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,121.4716565 +VA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,25952.38424 +VA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,11322.61361 +VA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,313.1336325 +VA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1076.948528 +VA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,10.81185 +VA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.000009 +VA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,243.1623125 +VA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,9.71167 +VA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,103.1071165 +VA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.093805 +VA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,24.34769 +VA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,19.528894 +VA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1540.067519 +VA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2239.151774 +VA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,546.583173 +VA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,84.0816375 +VA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,13845.87077 +VA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,115.2 +VA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,138.365679 +VA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.611881295 +VA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,15.20491404 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,8.441 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3675.63168 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3696.69561 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,176.931783 +VA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,40.28 +VA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,17.969 +VA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0399317 +VA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,11.54691857 +VA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,47.03398813 +VA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,914.471073 +VA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,240.3475 +VA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01830513 +VA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,142.7164172 +VA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,27.006873 +VA,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,16.7868 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,198.465846 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,404.3347408 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,65.1679447 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,516.9043854 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,210.7117138 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.48076E-05 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,119.3253043 +VA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.4737225 +VA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.886517392 +VA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1507972 +VA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,12266.39015 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,31.30449759 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.76810408 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,44.4194713 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.682727425 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.490025017 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.992072343 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,74.6065 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,13.75647726 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,5.8463 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.5533 +VA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,4.60996 +VA,PM2.5 Filterable,2A1_Cement-production,,TON,112.4294727 +VA,PM2.5 Filterable,2A2_Lime-production,,TON,39.23028056 +VA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2595.238424 +VA,PM2.5 Filterable,2A6_Other-minerals,,TON,1895.77704 +VA,PM2.5 Filterable,2B_Chemicals-other,,TON,101.1767171 +VA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,480.2914571 +VA,PM2.5 Filterable,2C3_Aluminum-production,,TON,1.9965931 +VA,PM2.5 Filterable,2C5_Lead-production,,TON,2.31055E-06 +VA,PM2.5 Filterable,2C7_Other-metal,,TON,61.89614247 +VA,PM2.5 Filterable,2C7a_Copper-production,,TON,2.111232 +VA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,662.645886 +VA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,122.788784 +VA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,290.6032819 +VA,PM2.5 Filterable,2I_Wood-processing,,TON,42.54636311 +VA,PM2.5 Filterable,3Dc_Other-farm,,TON,2789.083031 +VA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,37.61016184 +VA,PM2.5 Filterable,5C_Incineration,,TON,2.108664624 +VA,PM2.5 Filterable,5C_Incineration,biomass,TON,11.03278031 +VA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2833.54562 +VA,PM2.5 Filterable,5C_Open-burning-residential,,TON,3385.39486 +VA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,136.3973276 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0441945 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,12.0743985 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,63.02708626 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1132.210238 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,300.44 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0194485 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,462.3474168 +VA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,54.888825 +VA,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,24.0063 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,203.7186517 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,33.5298414 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.220447496 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,303.545437 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2880.311412 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,252.0351802 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,568.97894 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,254.289348 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.003047197 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,260.4366354 +VA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.608026 +VA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.0986579 +VA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.4132371 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1511.04176 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,56.90684931 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001148164 +VA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,90.44347064 +VA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,12266.39015 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,151.6267182 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1975.387874 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,105.9816033 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,107.6815576 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2334.30196 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,395.8832332 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,460.6200572 +VA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.3975436 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,577.1432431 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.050563256 +VA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,667.8754427 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,106.159295 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,78.39495791 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,58.39413125 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.753666553 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.305031359 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.58557374 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,134.1906192 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,45.72135442 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.014133667 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,91.64956279 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,700.6199819 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7346.108827 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,191.4604 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,13.93824779 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,14.9818 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.9483 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,408.5651256 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,25.98932234 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005544067 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.9991944 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,244.8251817 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.22041399 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,260.6442211 +VA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,7.14 +VA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.041085 +VA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0811515 +VA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,122.3585616 +VA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,99.4679724 +VA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2595.238424 +VA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2050.41949 +VA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,177.7723884 +VA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,927.8306675 +VA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,9.791827 +VA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,8.11599E-06 +VA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,125.312555 +VA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,9.71167 +VA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,102.59057 +VA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.093805 +VA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,24.34769 +VA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,18.599894 +VA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1364.581369 +VA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2164.518828 +VA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,465.1861777 +VA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,80.32606762 +VA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2806.518832 +VA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,115.2 +VA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,84.831884 +VA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.416549448 +VA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.22642299 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,8.432 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2833.54562 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3385.39486 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,136.3973276 +VA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,12.627 +VA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,2.306 +VA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.932335 +VA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,212.035 +VA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,420.698954 +VA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,135344.103 +VA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,6530.28 +VA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.018122 +VA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,146.062671 +VA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,290.808 +VA,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,3.068 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,75.76332342 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.413224407 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.517473614 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,10.94879875 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1186.2655 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5795.112798 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,13038.7989 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7166.349121 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.211117434 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,36.73088131 +VA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,13.51024 +VA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,50.075355 +VA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,60.671 +VA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.403205 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,443.6241767 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.074164278 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000218449 +VA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,385.7432324 +VA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.290269194 +VA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,782.234488 +VA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.053046976 +VA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,47.29384235 +VA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,70.7091039 +VA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,10.34046207 +VA,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,14.1262339 +VA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.290445345 +VA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,185.8026261 +VA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.011577837 +VA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3180.99789 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.2423942 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1548.606733 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,989.9935447 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,203.4538611 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,25.97094374 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.63633858 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.64497873 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.988310875 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.17964488 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,24.0473682 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,20.51498988 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,138.2139027 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3829.2066 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,217.6608369 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,311.3202 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,19.7352 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,97.98445906 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.370504726 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000965096 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.81662264 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.247802837 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.03874513 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.084353873 +VA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0762615 +VA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,439.575 +VA,Sulfur Dioxide,2A6_Other-minerals,,TON,3331.21382 +VA,Sulfur Dioxide,2B_Chemicals-other,,TON,999.392648 +VA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,5280.20956 +VA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.25225 +VA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0010395 +VA,Sulfur Dioxide,2D3d_Coating-application,,TON,1.220572 +VA,Sulfur Dioxide,2D3h_Printing,,TON,0.01536 +VA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,3029.140814 +VA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,2.442406 +VA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2577.848248 +VA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,4.41 +VA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,116.270284 +VA,Sulfur Dioxide,5C_Incineration,,TON,529.6093289 +VA,Sulfur Dioxide,5C_Incineration,biomass,TON,1101.102433 +VA,Sulfur Dioxide,5C_Open-burning-residential,,TON,97.28146 +VA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.26060236 +VA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.396732 +VA,Volatile Organic Compounds,11C_Other-natural,,TON,731087.819 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.001525 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,3.780949 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,54.803327 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,458.879709 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,34.747 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.021679 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,304.189723 +VA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,642.4929585 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,332.9049261 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1132.897224 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.531495134 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1163.288223 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1035.854843 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,61.97757053 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,152.8693333 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.82631813 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.00237469 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,694.1273238 +VA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,3.7290225 +VA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.89062 +VA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.198478 +VA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.34614 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1958.536698 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,802.8115002 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002962111 +VA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,613.4199117 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,339.5129437 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,70727.55097 +VA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,97.26507425 +VA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4448.194318 +VA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2928.25405 +VA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,907.0406908 +VA,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,664.8183568 +VA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2495.167377 +VA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,958.4454586 +VA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,5.057510714 +VA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,375.6494238 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,24.36805914 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,18.43726111 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.77910617 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.482817863 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.252840973 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,179.4841637 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,199.0905818 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2829.698938 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.686356935 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,132.8370843 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,17900.26363 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,9051.102716 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,62.9213 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,35.39451843 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,4.9105 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,178.9485 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,445.1587553 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,339.6718061 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0186939 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.3219764 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8648.859719 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,42.31619896 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,17473.55663 +VA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,10.168 +VA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1365.146929 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,3211.275051 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,23438.23753 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4420.484879 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1578.155887 +VA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.754 +VA,Volatile Organic Compounds,2A1_Cement-production,,TON,0.3636 +VA,Volatile Organic Compounds,2A2_Lime-production,,TON,10.889499 +VA,Volatile Organic Compounds,2A6_Other-minerals,,TON,650.354685 +VA,Volatile Organic Compounds,2B_Chemicals-other,,TON,1309.539205 +VA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,374.7301535 +VA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,8.14225 +VA,Volatile Organic Compounds,2C7_Other-metal,,TON,62.894 +VA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,38595.9524 +VA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,0 +VA,Volatile Organic Compounds,2D3d_Coating-application,,TON,25277.60341 +VA,Volatile Organic Compounds,2D3e_Degreasing,,TON,3703.011819 +VA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,21.757 +VA,Volatile Organic Compounds,2D3h_Printing,,TON,11679.73006 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,875.8783938 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,5636.800787 +VA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3821.770717 +VA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2796.519054 +VA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2174.139951 +VA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,12736.1489 +VA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,70.4 +VA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,442.211745 +VA,Volatile Organic Compounds,5C_Incineration,,TON,1254.176364 +VA,Volatile Organic Compounds,5C_Incineration,biomass,TON,711.8678125 +VA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2508.0782 +VA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,832.72967 +VA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,199.276205 +VA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,188.30765 +VA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,122.911 +VA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,21.0454145 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.01750712 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.000467422 +VI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.306991163 +VI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.009065203 +VI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.022129238 +VI,Ammonia,1A3bii_Road-LDV,light_oil,TON,17.46570207 +VI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.006782529 +VI,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,0.190766541 +VI,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,0.141793631 +VI,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,0.044250585 +VI,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.040464018 +VI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.282808474 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.010381329 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.02171482 +VI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.011104616 +VI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.134730646 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.000715755 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.53149E-06 +VI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.000453651 +VI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.02288404 +VI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.015807349 +VI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.10715697 +VI,Ammonia,5D1_Wastewater-domestic,,TON,0.4224191 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2154.198269 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,666.7717048 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,34.505163 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,37755.72552 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,744.2291826 +VI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,858.822161 +VI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,163519.6415 +VI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,450.7023 +VI,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2869.067505 +VI,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,11832.84441 +VI,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,1365.019113 +VI,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2468.778722 +VI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2340.88332 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1274.631699 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1780.026339 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.9195877 +VI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1364.68278 +VI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,9865.908765 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,87.9971634 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.63057658 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,55.45167 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1481.600787 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1946.68248 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7188.032 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.84836238 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.3775734 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.7327073 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,180.4900384 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,251.6557401 +VI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,412.734628 +VI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2.857950473 +VI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,3275.543695 +VI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1.650060481 +VI,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,98.14369 +VI,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,23.59242962 +VI,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.928137264 +VI,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.27878129 +VI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,115.5376305 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.70581548 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,642.2123795 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.31566378 +VI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,6.493054779 +VI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,3928.720371 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.49035088 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.32173396 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.636844 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,437.3108821 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.9180088 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1305.2404 +VI,Carbon Monoxide,2H2_Food-and-beverage,,TON,10.646769 +VI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.001183368 +VI,Carbon Monoxide,5C_Open-burning-residential,,TON,6.67241 +VI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,0.885661 +VI,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.005597696 +VI,Methane,1A3bii_Road-LDV,light_oil,TON,9.635428412 +VI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.002543589 +VI,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,0.305819311 +VI,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,0.42939005 +VI,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,0.011510017 +VI,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.040599886 +VI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.298484316 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.0906802 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.065681477 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.4810426 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,347.878302 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,2.915720521 +VI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,95.67668247 +VI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,4.390011209 +VI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,413.0977418 +VI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3.864056733 +VI,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,9.59489131 +VI,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,76.275866 +VI,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,8.936357313 +VI,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,14.65561982 +VI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.75263625 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.11896407 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.592143091 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.41725085 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,13.91209271 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,25.01894982 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.95377726 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001440146 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6108682 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,2.61110219 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.258615 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,30.129008 +VI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +VI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,0.25178 +VI,Nitrogen Oxides,5C_Open-burning-residential,,TON,0.470994 +VI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.0393627 +VI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.002334154 +VI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,8.021253653 +VI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.00109462 +VI,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,0.211378428 +VI,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.012409616 +VI,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.00506407 +VI,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.00428815 +VI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.032112232 +VI,PM10 Filterable,2H2_Food-and-beverage,,TON,0.084280778 +VI,PM10 Filterable,5C_Open-burning-residential,,TON,2.98296 +VI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,0.1466612 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.460300106 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.065129654 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.004157405 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,28.59200017 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.15655898 +VI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,17.94136273 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.596858125 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,13.69147993 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,0.557145691 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,0.257777135 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,9.06893804 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,1.169565861 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.964487111 +VI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.304009779 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.338472164 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.477603053 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.00250027 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.167463342 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,9.654285166 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.089496504 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.21023E-05 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.09169499 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,3.257201179 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.47508634 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,6.4745776 +VI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,28.7067139 +VI,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.016592295 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2.98296 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.1466612 +VI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.078230625 +VI,PM2.5 Filterable,5C_Open-burning-residential,,TON,2.73176 +VI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0.1130616 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.416491452 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.064719221 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.004157405 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,27.7342447 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.064698073 +VI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,6.436372448 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.557434959 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,8.06863867 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,0.519612809 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,0.150451257 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,8.471882993 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,1.101597235 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.818055377 +VI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.264416782 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.29831806 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.440619991 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.00250027 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.132439348 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,8.882352066 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.086811583 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.63342E-05 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.08894419 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,2.996649443 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.46083413 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,5.9566141 +VI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,28.7006743 +VI,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.016592295 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2.73176 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.1130616 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.468662291 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.013307317 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.00076099 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.213960127 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.021083953 +VI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10.45164481 +VI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.237138372 +VI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,3.192206042 +VI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.124854927 +VI,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,0.055938602 +VI,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,3.244782668 +VI,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.378270025 +VI,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.676402988 +VI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.045699715 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.277292109 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.050859647 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.000505648 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.296888902 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.29083435 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.019144123 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.86315E-05 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012062105 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.043539699 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.479596108 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.21168653 +VI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +VI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.03877409 +VI,Sulfur Dioxide,5C_Open-burning-residential,,TON,0.0784989 +VI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.00850515 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.679918041 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.296966999 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.008019119 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,35.75506674 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,16.11278374 +VI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,43.69651234 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,0.480784186 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,277.6183168 +VI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,0.227046838 +VI,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6.132785747 +VI,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,5.570028414 +VI,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,1.160151625 +VI,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.185430286 +VI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,37.09037822 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.926238622 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,30.96355411 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.005091835 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,1.640859728 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,263.5880908 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.093833462 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.013063541 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.16770227 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,113.7224175 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.96438351 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,446.760168 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Other_Fuel,TON,28.99681 +VI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,472.041635 +VI,Volatile Organic Compounds,2D3d_Coating-application,,TON,169.1068 +VI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +VI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +VI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4.049561233 +VI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.000881229 +VI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,0.671951 +VI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,0.1651827 +VI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,2.1245945 +VT,Ammonia,1A1a_Public-Electricity,biomass,TON,15.1003 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.307267927 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.034479642 +VT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,9.15 +VT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.181 +VT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.624 +VT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.2517 +VT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,4.6122 +VT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.951377152 +VT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.028110219 +VT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.548342732 +VT,Ammonia,1A3bii_Road-LDV,light_oil,TON,303.4901611 +VT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.218422521 +VT,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,5.497734628 +VT,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,5.099484542 +VT,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,1.219224539 +VT,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.500740435 +VT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.075193044 +VT,Ammonia,1A3c_Rail,diesel_oil,TON,0.23141585 +VT,Ammonia,1A3c_Rail,light_oil,TON,0.000363081 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.009 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.895 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.509 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.471 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.3616 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.122056685 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.255232679 +VT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.036746996 +VT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.590881971 +VT,Ammonia,1A4bi_Residential-stationary,biomass,TON,330.280042 +VT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,44.50934 +VT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.080010006 +VT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,7.18855 +VT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,30.3238387 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.646787586 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.032271136 +VT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002619025 +VT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.636069789 +VT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.068508079 +VT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.462980254 +VT,Ammonia,3B1a_Cattle-dairy,,TON,6309.047448 +VT,Ammonia,3B1b_Cattle-non-dairy,,TON,70.67953121 +VT,Ammonia,3B2_Manure-sheep,,TON,48.6486 +VT,Ammonia,3B3_Manure-swine,,TON,19.1774352 +VT,Ammonia,3B4_Manure-other,,TON,178.59336 +VT,Ammonia,3B4_Manure-poultry,,TON,125.8721508 +VT,Ammonia,3B4d_Manure-goats,,TON,46.01388 +VT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,756.4414826 +VT,Ammonia,5D1_Wastewater-domestic,,TON,1.506 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,37811.46304 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47653.36328 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2470.869107 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,117006.4184 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2310.535506 +VT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,19175.76663 +VT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2873486.981 +VT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,85680.00625 +VT,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,92326.00455 +VT,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,406103.4282 +VT,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,36591.35418 +VT,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,82802.30972 +VT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,35305.33447 +VT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,570.27022 +VT,Carbon Dioxide,1A3c_Rail,light_oil,TON,28.0790545 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14986.23532 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20966.59617 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,915.3223821 +VT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4515.976408 +VT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,43082.40459 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,79538.25435 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2323.312081 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.71506882 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,320.14528 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,106966.6799 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8436.802426 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,31056.6317 +VT,Carbon Monoxide,11C_Other-natural,,TON,15949.534 +VT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1193.98 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,244.815288 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3304.884295 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,197.0931874 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,760.3827 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,44.957 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.5625 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.0634 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,171.435 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,559.4515321 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,674.1523161 +VT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,947.040402 +VT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,60.06514397 +VT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,59918.89265 +VT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,312.3146683 +VT,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3513.313682 +VT,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,802.1904264 +VT,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,147.4015331 +VT,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,187.5754794 +VT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1768.376197 +VT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,77.42275736 +VT,Carbon Monoxide,1A3c_Rail,light_oil,TON,8.772587226 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,219.4142277 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,101.2849738 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.96000848 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.444707049 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,192.9722329 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,90.66074269 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6434.798035 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23.81903889 +VT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,21.46019026 +VT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,15326.13009 +VT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,43114.61976 +VT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,222.54688 +VT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,11.00137685 +VT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,35.942775 +VT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,186.632087 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,401.6694287 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,839.3539358 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.848583482 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.667392 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,16393.21474 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,16.98312461 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5028.09554 +VT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +VT,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.0015 +VT,Carbon Monoxide,2H2_Food-and-beverage,,TON,59.062996 +VT,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.008825299 +VT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,8749.2679 +VT,Carbon Monoxide,5C_Open-burning-residential,,TON,443 +VT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,217.376272 +VT,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.477638278 +VT,Methane,1A3bii_Road-LDV,light_oil,TON,277.5638003 +VT,Methane,1A3biii_Road-bus,diesel_oil,TON,1.074004231 +VT,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,15.82517003 +VT,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,14.67316389 +VT,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,0.796819629 +VT,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.499891639 +VT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.36711754 +VT,Nitrogen Oxides,11C_Other-natural,,TON,1000.7753 +VT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,295.505 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,318.7621575 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,513.8691127 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,34.54338619 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,284.9793 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,180.152 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,208.5828 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,6.294 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,181.841 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1078.154385 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,12.36525942 +VT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,96.57017203 +VT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,108.5974465 +VT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,6457.477368 +VT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,965.7159349 +VT,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,348.4865051 +VT,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,3382.289248 +VT,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,240.9650133 +VT,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,631.1830961 +VT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,77.5387778 +VT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,742.7012134 +VT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.130779907 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,69.32956551 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,349.1130347 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,103.9126425 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.44581953 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,171.8837877 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,154.273991 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,108.926047 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.634306456 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,46.08475949 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,156.9153609 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,516.0866229 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,801.16875 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.120014981 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,129.39387 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,590.49872 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,812.8788719 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.45058812 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.188984949 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.544454 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,115.3430314 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,100.8117948 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,175.0331394 +VT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +VT,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.006 +VT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +VT,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,1.87772265 +VT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,258.85414 +VT,Nitrogen Oxides,5C_Open-burning-residential,,TON,31.25 +VT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,9.6611653 +VT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.059247143 +VT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,155.4336294 +VT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.180933356 +VT,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6.734855132 +VT,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,0.381708044 +VT,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.139094337 +VT,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.144888881 +VT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.474089707 +VT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,7.80651 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,54.39379 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0764587 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.0491 +VT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,37078.3 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.78470974 +VT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,48.070105 +VT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.400050005 +VT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,7.7636385 +VT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.37541748 +VT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,2069.130622 +VT,PM10 Filterable,2A6_Other-minerals,,TON,1124.6069 +VT,PM10 Filterable,2D3d_Coating-application,,TON,0 +VT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,35.91318986 +VT,PM10 Filterable,2H2_Food-and-beverage,,TON,0.467547335 +VT,PM10 Filterable,3Dc_Other-farm,,TON,2243.2 +VT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,880.10345 +VT,PM10 Filterable,5C_Open-burning-residential,,TON,157.97 +VT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,35.996487 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,43.6259 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.60490671 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.714887019 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.301474901 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,628.11554 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,20.7526 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,84.68976 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.725 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,0.9453 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,88.61987754 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.577070112 +VT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,21.15046212 +VT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,37078.3 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,7.417366163 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,334.0510236 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,52.58614497 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,11.02164141 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,155.2467451 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,16.23619422 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,33.42489758 +VT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.053076214 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,18.9361519 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003787656 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,162.513 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.51791 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,30.984 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.36 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.8857 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.74471279 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.64683119 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.114133483 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.857109203 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,39.19064605 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6462.474516 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,105.932245 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.442855645 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,17.1087625 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.423619188 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,73.72834274 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.463867943 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000974791 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.5267145 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,170.0747767 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.059459247 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,27.97281941 +VT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2069.130622 +VT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1124.6069 +VT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,67.10099 +VT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,159.2504606 +VT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,2243.2 +VT,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.1237419 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,880.10345 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,739.5895 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,35.996487 +VT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,6.7969 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,37.878901 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0395323 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.38512 +VT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3546.929 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0547279 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,36.942785 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.32124026 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,5.966498 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.08529477 +VT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,206.9130622 +VT,PM2.5 Filterable,2A6_Other-minerals,,TON,140.57588 +VT,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +VT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,9.955108859 +VT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.433984138 +VT,PM2.5 Filterable,3Dc_Other-farm,,TON,448.7 +VT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,678.47117 +VT,PM2.5 Filterable,5C_Open-burning-residential,,TON,144.69 +VT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,27.749801 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,42.6162 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.8637449 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.682177463 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.301313866 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,534.322661 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,13.9796736 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,56.31478 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.4883 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,0.782 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,85.96130327 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.292976831 +VT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,4.737257297 +VT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3546.929 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,6.683653847 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,222.4130253 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,48.16096125 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,7.352015398 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,142.298614 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,14.79614225 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,30.04223001 +VT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.34537661 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,17.46210508 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00349177 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,140.509 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,37.1121282 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.284 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.214 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.7414 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.27236458 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.209813944 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.114133483 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.741396465 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,36.05677423 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6460.220914 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,94.80497 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.364045545 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,15.3116195 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.004145819 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,71.51647161 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.026761789 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000974791 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.5109132 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,156.469083 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.997675307 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,25.73499258 +VT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,206.9130622 +VT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,140.57588 +VT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,41.142909 +VT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,159.2169656 +VT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,448.7 +VT,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.1237419 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,678.47117 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,677.3083 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,27.749801 +VT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1.897 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.480620025 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.010670889 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.058650724 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,31.213495 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,256.8814 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,915.4026 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.938 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1.0905 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,25.45536428 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.065435023 +VT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12.47514443 +VT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.210340589 +VT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,63.56148154 +VT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.941726023 +VT,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2.042017372 +VT,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4.418366103 +VT,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.402364736 +VT,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.900200223 +VT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.780966847 +VT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,5.241900541 +VT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000819966 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7.859 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,497.172 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,443.812 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,16.81 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.052 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.260207387 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.598641878 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.020234968 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.982456845 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.270397307 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,226.5456462 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1264.06525 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1.38857413 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,204.17275 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,2.7964533 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.30392561 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.0685793 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000169682 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.06963939 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.147030083 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.078538837 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.914613151 +VT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +VT,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.0216 +VT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +VT,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.28916917 +VT,Sulfur Dioxide,5C_Open-burning-residential,,TON,5.209 +VT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.08750239 +VT,Volatile Organic Compounds,11C_Other-natural,,TON,74542.5 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,33.3612 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31.57936547 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,161.9374579 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.624151391 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,25.11475 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.7994 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.12816 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.0604 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,10.0007 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,110.8174822 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,45.8022682 +VT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,40.26956497 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,15.32194412 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5370.667834 +VT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,46.46187493 +VT,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,203.7757818 +VT,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,189.3822457 +VT,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,36.01150647 +VT,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,43.49027839 +VT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,368.4899651 +VT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,28.3438478 +VT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.329088622 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,8.831492786 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.784133882 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.872572641 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.322256941 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.60219375 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,22.65946154 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,313.8283451 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.078176674 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,5.424035883 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1067.879341 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6989.484643 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,31.1565555 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.400050005 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,5.0319855 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,25.634373 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,77.97199009 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,61.89170504 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003283938 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.9646993 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6516.239547 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.180618145 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1641.575841 +VT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,11.248 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,613.6286068 +VT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2618.65342 +VT,Volatile Organic Compounds,2D3d_Coating-application,,TON,1307.74991 +VT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,114.90055 +VT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +VT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +VT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,5.640102 +VT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,22.46490097 +VT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,188.21354 +VT,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.00657203 +VT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,600.54119 +VT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,35.57 +VT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,40.542414 +VT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,7.574 +WA,Ammonia,1A1a_Public-Electricity,biomass,TON,6 +WA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +WA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,90.1422 +WA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,9.656 +WA,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.18253961 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.21539351 +WA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,19.3725 +WA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0625 +WA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +WA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,19.0815 +WA,Ammonia,1A2c_Chemicals,natural_gas,TON,0 +WA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.06247654 +WA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.386305501 +WA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.04765837 +WA,Ammonia,1A3bii_Road-LDV,light_oil,TON,2351.633867 +WA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.077662315 +WA,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,84.10973855 +WA,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,75.61680283 +WA,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,17.78727254 +WA,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,20.12338662 +WA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.385064929 +WA,Ammonia,1A3c_Rail,diesel_oil,TON,7.9734578 +WA,Ammonia,1A3c_Rail,light_oil,TON,0.002807103 +WA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18.65276106 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.35857829 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.840995363 +WA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.523388594 +WA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.729188672 +WA,Ammonia,1A4bi_Residential-stationary,biomass,TON,821.667437 +WA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,25.8134989 +WA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.635778394 +WA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,756.2596027 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.515805319 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.276665044 +WA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.025568586 +WA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.229831174 +WA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.723120304 +WA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.890209928 +WA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Ammonia,2A1_Cement-production,,TON,1.9835 +WA,Ammonia,2A6_Other-minerals,,TON,0 +WA,Ammonia,2B_Chemicals-other,,TON,0 +WA,Ammonia,2C3_Aluminum-production,,TON,0 +WA,Ammonia,2D3d_Coating-application,,TON,0.2215 +WA,Ammonia,2D3e_Degreasing,,TON,0 +WA,Ammonia,2H1_Pulp-and-paper,,TON,179 +WA,Ammonia,2H2_Food-and-beverage,,TON,0 +WA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,7.05 +WA,Ammonia,2I_Wood-processing,,TON,0 +WA,Ammonia,3B1a_Cattle-dairy,,TON,13563.31029 +WA,Ammonia,3B1b_Cattle-non-dairy,,TON,5436.769655 +WA,Ammonia,3B2_Manure-sheep,,TON,185.80056 +WA,Ammonia,3B3_Manure-swine,,TON,164.4010315 +WA,Ammonia,3B4_Manure-other,,TON,1206.348 +WA,Ammonia,3B4_Manure-poultry,,TON,4014.326867 +WA,Ammonia,3B4d_Manure-goats,,TON,228.921 +WA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,17919.66239 +WA,Ammonia,3Dc_Other-farm,,TON,0 +WA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,5 +WA,Ammonia,5C_Incineration,biomass,TON,19 +WA,Ammonia,5C_Open-burning-residential,,TON,0.00493261 +WA,Ammonia,5D1_Wastewater-domestic,,TON,24.70302052 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,268572.8339 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,289304.9489 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15281.28347 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1606506.01 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,31750.03949 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.43555837 +WA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,236167.0929 +WA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,24454946.34 +WA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,281196.0847 +WA,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1408947.078 +WA,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,6713207.548 +WA,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,558472.3636 +WA,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1283526.077 +WA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,110597.1629 +WA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4405.24154 +WA,Carbon Dioxide,1A3c_Rail,light_oil,TON,216.6995633 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,166807.3038 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,233342.8802 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10246.40778 +WA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,64321.32552 +WA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,490957.0436 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,801207.4941 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,20093.42051 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,81.38651295 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3125.4238 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,208264.8851 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,89052.63116 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,328034.3476 +WA,Carbon Monoxide,11C_Other-natural,,TON,170444.659 +WA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1045.236 +WA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.579 +WA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2633 +WA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,252.279 +WA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1764 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2975.253763 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20442.39385 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1227.478682 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,6954.058559 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.979116148 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,244.2442864 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,99.09911622 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1695.065858 +WA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,5 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7680.406209 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,9139.720474 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.641095957 +WA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11656.45075 +WA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1052.919119 +WA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,896063.4139 +WA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,912.0522551 +WA,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,75343.27655 +WA,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,15594.97548 +WA,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2759.985154 +WA,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3251.0473 +WA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6711.356585 +WA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2585.809364 +WA,Carbon Monoxide,1A3c_Rail,light_oil,TON,67.75298912 +WA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5747.834186 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.043 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,230.168 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1009.13661 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,70565.52916 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,264.910992 +WA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,305.6162392 +WA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,168870.6096 +WA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,102965.7366 +WA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,129.0674778 +WA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.178893785 +WA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1620.007164 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4175.279574 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7017.558995 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.954845989 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,35.840922 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,40705.59094 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,179.5131477 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,52453.60014 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Carbon Monoxide,2A1_Cement-production,,TON,1152.5925 +WA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,72.3435 +WA,Carbon Monoxide,2A6_Other-minerals,,TON,560.43013 +WA,Carbon Monoxide,2B_Chemicals-other,,TON,46 +WA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,583.66 +WA,Carbon Monoxide,2C3_Aluminum-production,,TON,33434 +WA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,8 +WA,Carbon Monoxide,2D3d_Coating-application,,TON,0 +WA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3547.290483 +WA,Carbon Monoxide,2H2_Food-and-beverage,,TON,622.6225381 +WA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.0935 +WA,Carbon Monoxide,3Dc_Other-farm,,TON,0 +WA,Carbon Monoxide,3F_Ag-res-on-field,,TON,17388.9436 +WA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,88.1215 +WA,Carbon Monoxide,5C_Incineration,,TON,0 +WA,Carbon Monoxide,5C_Incineration,biomass,TON,131.082282 +WA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,18716.26632 +WA,Carbon Monoxide,5C_Open-burning-residential,,TON,3257.26982 +WA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,389.407025 +WA,Carbon Monoxide,5C_Other-open-burning,,TON,6233.81873 +WA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,8.214 +WA,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.272125129 +WA,Methane,1A3bii_Road-LDV,light_oil,TON,3112.503078 +WA,Methane,1A3biii_Road-bus,diesel_oil,TON,3.955002808 +WA,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,305.4173279 +WA,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,177.573599 +WA,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,7.946593536 +WA,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,16.31727434 +WA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.11230426 +WA,Nitrogen Oxides,11C_Other-natural,,TON,13109.853 +WA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,453.085 +WA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,22.979 +WA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,10824 +WA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,302.892 +WA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3989 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2423.49072 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3151.374118 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,213.0822173 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4268.700793 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.54273009 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1388.52918 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.580509727 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4099.244143 +WA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,7 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,14806.14171 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,168.9628535 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.136710379 +WA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2639.668291 +WA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1645.498291 +WA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,80323.44232 +WA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2363.521583 +WA,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,6423.462315 +WA,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,59812.99539 +WA,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,4219.283073 +WA,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10984.5637 +WA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,257.7097444 +WA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,18177.33108 +WA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.97598102 +WA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,40763.07861 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,9.022511847 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.91422196 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,779.6422662 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1717.180913 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1199.41666 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,73.6854097 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,656.3517659 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1819.596679 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1592.377508 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,464.6424995 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,11.44403932 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3936.768388 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8334.256891 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,101.8275999 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.994758696 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.532353 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,348.9540953 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1065.765921 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1933.409544 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Nitrogen Oxides,2A1_Cement-production,,TON,2626.2755 +WA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,57.158 +WA,Nitrogen Oxides,2A6_Other-minerals,,TON,1153.442055 +WA,Nitrogen Oxides,2B_Chemicals-other,,TON,0 +WA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,72.089 +WA,Nitrogen Oxides,2C3_Aluminum-production,,TON,191 +WA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,11.645 +WA,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +WA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2796.766 +WA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,6.198 +WA,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +WA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,755.08517 +WA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,86.664 +WA,Nitrogen Oxides,5C_Incineration,,TON,0 +WA,Nitrogen Oxides,5C_Incineration,biomass,TON,418.5067807 +WA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,553.735451 +WA,Nitrogen Oxides,5C_Open-burning-residential,,TON,229.924716 +WA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,17.3069726 +WA,Nitrogen Oxides,5C_Other-open-burning,,TON,147.784 +WA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,9.7785 +WA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.929337235 +WA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1997.784908 +WA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.737624703 +WA,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,121.6188133 +WA,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,8.271739771 +WA,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.397379906 +WA,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2.569381001 +WA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.65468756 +WA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,40.1166 +WA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.601 +WA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,420.584 +WA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,43.4015 +WA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,161.193672 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,623.59618 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.28916623 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,200.9887987 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,133.7607739 +WA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,5.22362 +WA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,75694.062 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,28.3388 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00565369 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.6115 +WA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,27.87855165 +WA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.686640688 +WA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.106987434 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Filterable,2A1_Cement-production,,TON,119.928 +WA,PM10 Filterable,2A2_Lime-production,,TON,135.6445 +WA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,36590.48467 +WA,PM10 Filterable,2A6_Other-minerals,,TON,6703.531603 +WA,PM10 Filterable,2B_Chemicals-other,,TON,9.208541 +WA,PM10 Filterable,2C_Iron-steel-alloy,,TON,13.23812 +WA,PM10 Filterable,2C3_Aluminum-production,,TON,406.338116 +WA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,10.279493 +WA,PM10 Filterable,2D3d_Coating-application,,TON,9.2695 +WA,PM10 Filterable,2H1_Pulp-and-paper,,TON,736.3412486 +WA,PM10 Filterable,2H2_Food-and-beverage,,TON,4.928731721 +WA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,47.095398 +WA,PM10 Filterable,2I_Wood-processing,,TON,8.42254 +WA,PM10 Filterable,3Dc_Other-farm,,TON,75792.719 +WA,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,59.772 +WA,PM10 Filterable,5C_Incineration,,TON,0 +WA,PM10 Filterable,5C_Incineration,biomass,TON,23.6132 +WA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1882.700185 +WA,PM10 Filterable,5C_Open-burning-residential,,TON,1455.94796 +WA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,64.4839306 +WA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.743 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,41.47226 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.768572292 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,453 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,81.3039 +WA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,294.56229 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,180.6892795 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.73558143 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.943760522 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,675.7025766 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.294398239 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,236.7301856 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,343.7149774 +WA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1216.683473 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,49.11585221 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +WA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,272.9550647 +WA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,75745.16251 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,161.3942121 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3564.354111 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,152.9222935 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,205.6687774 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3640.700713 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,383.5898749 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,702.3718078 +WA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.5202281 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,583.8703231 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029235278 +WA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2555.649001 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,30 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0351 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.2415 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,175.2477978 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,62.77505334 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.278477427 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,54.92457148 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,482.2853136 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,14593.52588 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,61.4360703 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.51315025 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,21.0573813 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,766.3650757 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,37.59899018 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010282747 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.1513007 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,418.7377134 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.73844368 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,295.4627598 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,129.036518 +WA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,176.2456084 +WA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,36604.66517 +WA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6781.474303 +WA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,12 +WA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,34.8208 +WA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,758 +WA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,19.0085898 +WA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.2695 +WA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1339.690554 +WA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1678.765695 +WA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,72.94233 +WA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,14 +WA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,75792.719 +WA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2119.88709 +WA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,124 +WA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0 +WA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,27.15369823 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1882.700185 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1455.94796 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,64.4839306 +WA,PM10 Primary (Filt + Cond),5C_Other-open-burning,,TON,575.542317 +WA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.743 +WA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,34.27106 +WA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.601 +WA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,390.584 +WA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,43.4015 +WA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,139.832422 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,544.3214428 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.278435225 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,196.0796248 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,127.8060455 +WA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,5.22362 +WA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,6325.280413 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,23.3388 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.37 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,21.42520285 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.527696305 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.462449318 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Filterable,2A1_Cement-production,,TON,91.24 +WA,PM2.5 Filterable,2A2_Lime-production,,TON,24.132 +WA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3682.302667 +WA,PM2.5 Filterable,2A6_Other-minerals,,TON,953.6345565 +WA,PM2.5 Filterable,2B_Chemicals-other,,TON,8.208541 +WA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0 +WA,PM2.5 Filterable,2C3_Aluminum-production,,TON,355.227007 +WA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,4.306971 +WA,PM2.5 Filterable,2D3d_Coating-application,,TON,2.365 +WA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,481.0063145 +WA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,4.574918372 +WA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,34.738738 +WA,PM2.5 Filterable,2I_Wood-processing,,TON,1.07042 +WA,PM2.5 Filterable,3Dc_Other-farm,,TON,15158.095 +WA,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,4.7818 +WA,PM2.5 Filterable,5C_Incineration,,TON,0 +WA,PM2.5 Filterable,5C_Incineration,biomass,TON,18.6132 +WA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1451.373636 +WA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1333.3414 +WA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,49.7108854 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,35.62672 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.768572292 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,423 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,81.3039 +WA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,273.20103 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,175.2091237 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.48977786 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.939793339 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,596.4004657 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.284655009 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,231.7928915 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,337.814757 +WA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1180.183125 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,45.21503867 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000861123 +WA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,73.81112562 +WA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,6317.858 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,147.9311844 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2372.332945 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,132.4211197 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,131.9465879 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,3277.891769 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,351.664082 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,622.3392213 +WA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.27474464 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,540.3121908 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.026948712 +WA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2340.005436 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,25 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0294463 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.2415 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,169.990336 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,57.91664908 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.278477427 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,53.27686612 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,443.722155 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,14563.59058 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,54.9826953 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.35420698 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.41282542 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,743.3739965 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,34.59118735 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010282747 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.9967621 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,385.2399464 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.08627436 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,271.8255422 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,100.348524 +WA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,64.73317144 +WA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3696.483167 +WA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1031.577263 +WA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,11 +WA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,21.58273 +WA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,706.88889 +WA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,13.03606355 +WA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.365 +WA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1092.404821 +WA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1678.412641 +WA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,60.58573 +WA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,6.64788 +WA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,15158.095 +WA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1776.52302 +WA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,32 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,22.15369823 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1451.373636 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1333.3414 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,49.7108854 +WA,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,,TON,502.048498 +WA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.743 +WA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,49.9705 +WA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.5075 +WA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,2314 +WA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,37.2435 +WA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1552 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,64.22418012 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.07783848 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.431702338 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1137.493584 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.048291326 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1481.489856 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.100033076 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,398.2026662 +WA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,349.5039918 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.819172327 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000163837 +WA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,265.6651578 +WA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.605300935 +WA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,758.2873309 +WA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.070816686 +WA,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,43.69038992 +WA,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,73.75688711 +WA,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,6.163148224 +WA,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,14.10487026 +WA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.428779819 +WA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,180.1009446 +WA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005605771 +WA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,13684.25854 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.3845 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,26.224 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36.28843391 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.082191025 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.226518876 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13.99320182 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.134972 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,239.3699912 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1099.653952 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,27.08418615 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,24.29805864 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,174.3061706 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.520362059 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001789973 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.67985628 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.383555757 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.93952777 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.666862237 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Sulfur Dioxide,2A1_Cement-production,,TON,262.26 +WA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,9.574 +WA,Sulfur Dioxide,2A6_Other-minerals,,TON,226.857058 +WA,Sulfur Dioxide,2B_Chemicals-other,,TON,120 +WA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,75.093 +WA,Sulfur Dioxide,2C3_Aluminum-production,,TON,6333 +WA,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +WA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1320.593 +WA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,8.9555 +WA,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +WA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,26.74 +WA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,33.084 +WA,Sulfur Dioxide,5C_Incineration,,TON,0 +WA,Sulfur Dioxide,5C_Incineration,biomass,TON,89.69604836 +WA,Sulfur Dioxide,5C_Open-burning-residential,,TON,38.3208082 +WA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.73954297 +WA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,9.925 +WA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,2 +WA,Volatile Organic Compounds,11C_Other-natural,,TON,748535.49 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,28.651 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.3305 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,15 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,19.4445 +WA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2039.1025 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,268.6785912 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,994.4691048 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.557606821 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,253.6831393 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.263163468 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,3.021532312 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.12919387 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,8.662733138 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,136.2167197 +WA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,8 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1521.541361 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,624.4677717 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002221585 +WA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,592.2929672 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,253.8475438 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,64916.94488 +WA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,147.9524954 +WA,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,4280.446954 +WA,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,3670.945113 +WA,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,657.084428 +WA,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,805.7403852 +WA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1628.078812 +WA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,915.5319742 +WA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.56496247 +WA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1279.280931 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.018 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.13805 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,40.6195 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,252.2042063 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3442.412306 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.867852846 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,77.22374109 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11833.30317 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,18488.74079 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,18.0694367 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.44504494 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,222.7283479 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,808.6396175 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,477.8791069 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.034662105 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.4301511 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,14433.81558 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,44.12842169 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,17414.44867 +WA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,638.9671714 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,8.261913772 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,13335.14263 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,156.9763617 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,842.959 +WA,Volatile Organic Compounds,2A1_Cement-production,,TON,7.7385 +WA,Volatile Organic Compounds,2A6_Other-minerals,,TON,60.027532 +WA,Volatile Organic Compounds,2B_Chemicals-other,,TON,36.48961 +WA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0 +WA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,528 +WA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,50.317 +WA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,27604.98048 +WA,Volatile Organic Compounds,2D3d_Coating-application,,TON,12405.46567 +WA,Volatile Organic Compounds,2D3e_Degreasing,,TON,148.5925 +WA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1277.9454 +WA,Volatile Organic Compounds,2D3h_Printing,,TON,32.292 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1584.316355 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,696.0087585 +WA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,5011.814218 +WA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,432.1637079 +WA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,428.713 +WA,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +WA,Volatile Organic Compounds,3Dc_Other-farm,,TON,0 +WA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,19995.91589 +WA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1857.05464 +WA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,234.387 +WA,Volatile Organic Compounds,5C_Incineration,,TON,0 +WA,Volatile Organic Compounds,5C_Incineration,biomass,TON,3.061273812 +WA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1284.666237 +WA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,328.162475 +WA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,72.6274916 +WA,Volatile Organic Compounds,5C_Other-open-burning,,TON,425.074423 +WA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,126.3829988 +WA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,2 +WI,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0446215 +WI,Ammonia,1A1a_Public-Electricity,biomass,TON,0.1225565 +WI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,19.8443241 +WI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,417.7456969 +WI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.445334 +WI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,102.8448595 +WI,Ammonia,1A1b_Pet-refining,natural_gas,TON,1.250358785 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.981854621 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.384745372 +WI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,46.42497142 +WI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,29.59603451 +WI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,7.494864396 +WI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.522908109 +WI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.109289543 +WI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,126.5069054 +WI,Ammonia,1A2c_Chemicals,diesel_oil,TON,0.0596923 +WI,Ammonia,1A2c_Chemicals,natural_gas,TON,9.9581774 +WI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.82330258 +WI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.559107059 +WI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,6.656969831 +WI,Ammonia,1A3bii_Road-LDV,light_oil,TON,2091.215333 +WI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.857129743 +WI,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,79.58306666 +WI,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,58.39368093 +WI,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,20.01406247 +WI,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,16.06580702 +WI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.99188818 +WI,Ammonia,1A3c_Rail,diesel_oil,TON,5.620135484 +WI,Ammonia,1A3c_Rail,light_oil,TON,0.002019633 +WI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.26832475 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.445139556 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,42.69151608 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.247133162 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.005570202 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.169800122 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,26.11355282 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.056368546 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.225038913 +WI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.320208329 +WI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.142283749 +WI,Ammonia,1A4bi_Residential-stationary,biomass,TON,1089.742925 +WI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,48.440005 +WI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,2.320721522 +WI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.308089429 +WI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1401.804272 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.95743561 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.351121909 +WI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.022977263 +WI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,11.20551304 +WI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.161205844 +WI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,8.97643852 +WI,Ammonia,2A6_Other-minerals,,TON,9.4819 +WI,Ammonia,2B_Chemicals-other,,TON,18.9193475 +WI,Ammonia,2C_Iron-steel-alloy,,TON,2.291865 +WI,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.8665 +WI,Ammonia,2C7a_Copper-production,,TON,0.00135 +WI,Ammonia,2D3c_Asphalt-roofing,Other_Fuel,TON,0.226 +WI,Ammonia,2D3d_Coating-application,,TON,4.40929 +WI,Ammonia,2D3e_Degreasing,,TON,0.9522 +WI,Ammonia,2D3f_Dry-cleaning,,TON,0.028432 +WI,Ammonia,2D3h_Printing,,TON,22.766899 +WI,Ammonia,2H1_Pulp-and-paper,,TON,144.72311 +WI,Ammonia,2H2_Food-and-beverage,,TON,18.214539 +WI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,33.9135 +WI,Ammonia,2I_Wood-processing,,TON,1.8455 +WI,Ammonia,3B1a_Cattle-dairy,,TON,65117.60344 +WI,Ammonia,3B1b_Cattle-non-dairy,,TON,4047.476008 +WI,Ammonia,3B2_Manure-sheep,,TON,312.979392 +WI,Ammonia,3B3_Manure-swine,,TON,2636.110157 +WI,Ammonia,3B4_Manure-other,,TON,1613.430984 +WI,Ammonia,3B4_Manure-poultry,,TON,8335.070811 +WI,Ammonia,3B4d_Manure-goats,,TON,390.19596 +WI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,32876.50638 +WI,Ammonia,5C_Open-burning-dump,,TON,0.125 +WI,Ammonia,5D1_Wastewater-domestic,,TON,14.25905789 +WI,Ammonia,5D2_Wastewater-industrial,biomass,TON,19.8125 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,366921.2985 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,496278.642 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,27542.75685 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1455202.166 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,46651.51822 +WI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,237003.7656 +WI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,24731204.19 +WI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,198534.8374 +WI,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1420967.819 +WI,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4724527.87 +WI,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,645915.8647 +WI,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,918989.6359 +WI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,186541.5029 +WI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3177.386298 +WI,Carbon Dioxide,1A3c_Rail,light_oil,TON,155.966377 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,129688.8081 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,183256.9897 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8052.244512 +WI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,39345.66058 +WI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,374996.5933 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1347214.48 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,25954.81243 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,148.3000122 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2808.6812 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,729507.1344 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,143002.0712 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,596753.717 +WI,Carbon Monoxide,11C_Other-natural,,TON,74278.151 +WI,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,4.83624 +WI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,430.166155 +WI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,23.19486468 +WI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,11781.54096 +WI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,53.9061875 +WI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1415.38566 +WI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,322.7981871 +WI,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.035609 +WI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1.79840941 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2340.380126 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35247.82364 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2192.414951 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,5.851609263 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8634.148424 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1006.543441 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2948.51364 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,121.2350243 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,62.4087738 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4534.023207 +WI,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,21.645514 +WI,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0.3325 +WI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,257.6354154 +WI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.043082 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5477.839822 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,10280.01575 +WI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,30991.62879 +WI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,901.1535691 +WI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,559423.2301 +WI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,769.5088011 +WI,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,51882.78527 +WI,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,9466.161528 +WI,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,2659.550304 +WI,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2102.211416 +WI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10481.13905 +WI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1822.075635 +WI,Carbon Monoxide,1A3c_Rail,light_oil,TON,44.28134627 +WI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2211.914764 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,134.0856682 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1223.928359 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,502.6378069 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.03514087 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,20.05511901 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5626.719464 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,796.4813876 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,50527.16368 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,210.0621551 +WI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,192.6019039 +WI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,119285.2893 +WI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,149849.1836 +WI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,242.199993 +WI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,319.0989959 +WI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.540446476 +WI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3213.619647 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7307.431449 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7572.215711 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.31708542 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.196671 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,104916.958 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,288.6379164 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,88051.48196 +WI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,10.4060695 +WI,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.585065 +WI,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,629.2370275 +WI,Carbon Monoxide,2A6_Other-minerals,,TON,230.5396934 +WI,Carbon Monoxide,2B_Chemicals-other,,TON,61.23268297 +WI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4904.291101 +WI,Carbon Monoxide,2C3_Aluminum-production,,TON,12.2622595 +WI,Carbon Monoxide,2C5_Lead-production,,TON,0.45657 +WI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,3.644959 +WI,Carbon Monoxide,2C7a_Copper-production,,TON,7.0818 +WI,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.993171675 +WI,Carbon Monoxide,2D3d_Coating-application,,TON,1.60241 +WI,Carbon Monoxide,2D3e_Degreasing,,TON,0.903045 +WI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,4264.008095 +WI,Carbon Monoxide,2H2_Food-and-beverage,,TON,694.8493254 +WI,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,0.007548 +WI,Carbon Monoxide,2I_Wood-processing,,TON,28.9683 +WI,Carbon Monoxide,3Dc_Other-farm,,TON,106.2443 +WI,Carbon Monoxide,3F_Ag-res-on-field,,TON,1415.7 +WI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1226.314323 +WI,Carbon Monoxide,5C_Incineration,,TON,111.2953954 +WI,Carbon Monoxide,5C_Incineration,biomass,TON,47.88190943 +WI,Carbon Monoxide,5C_Open-burning-commercial,,TON,3.421465 +WI,Carbon Monoxide,5C_Open-burning-industrial,,TON,18.2869 +WI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,22524.9796 +WI,Carbon Monoxide,5C_Open-burning-residential,,TON,11230.5216 +WI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1192.28809 +WI,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0205995 +WI,Methane,1A3bii_Road-LDV,diesel_oil,TON,6.69137462 +WI,Methane,1A3bii_Road-LDV,light_oil,TON,2713.732406 +WI,Methane,1A3biii_Road-bus,diesel_oil,TON,2.407881093 +WI,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,228.8774599 +WI,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,141.9789429 +WI,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,15.99443147 +WI,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,14.71321376 +WI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,68.42217688 +WI,Nitrogen Oxides,11C_Other-natural,,TON,18697.4698 +WI,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.36535 +WI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,126.7619104 +WI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,134.4942796 +WI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,48770.34125 +WI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,292.1633725 +WI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1368.495914 +WI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,310.968893 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.2055795 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.3026662 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3138.258509 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5654.786046 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,384.343657 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,24.07482231 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2782.51878 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4316.671831 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,15591.94538 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1236.713504 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,10.67541654 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6627.578617 +WI,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,97.220168 +WI,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,1.33 +WI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,652.9208214 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.3977775 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.6786875 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.908527 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,12467.87291 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,280.739111 +WI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1198.444763 +WI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1496.127964 +WI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,59423.93048 +WI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2105.758724 +WI,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,5109.424459 +WI,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,38546.60701 +WI,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,4264.287789 +WI,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,6902.581624 +WI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,383.5496828 +WI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,12973.11455 +WI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.821130124 +WI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11920.79354 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,63.51767463 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5505.523539 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,958.9672735 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.379374448 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.697446534 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6524.471807 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1351.990845 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1073.927379 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,58.90731523 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,412.179591 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1560.426784 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1626.936719 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,871.9203 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,10.49556994 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,5.54560574 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,8046.387995 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14338.38556 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,179.8191652 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.634729111 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,31.044461 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,893.3074556 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1708.229624 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3741.240609 +WI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,7.90149 +WI,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,2.7183 +WI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1223.90006 +WI,Nitrogen Oxides,2A6_Other-minerals,,TON,3110.937766 +WI,Nitrogen Oxides,2B_Chemicals-other,,TON,108.872404 +WI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,328.9322541 +WI,Nitrogen Oxides,2C3_Aluminum-production,,TON,33.98432486 +WI,Nitrogen Oxides,2C6_Zinc-production,,TON,0.0489225 +WI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,12.836882 +WI,Nitrogen Oxides,2C7a_Copper-production,,TON,0.9458565 +WI,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.569 +WI,Nitrogen Oxides,2D3d_Coating-application,,TON,0.5542895 +WI,Nitrogen Oxides,2D3e_Degreasing,,TON,7.439045 +WI,Nitrogen Oxides,2D3h_Printing,,TON,0 +WI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1576.122246 +WI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,74.441703 +WI,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,0.0153 +WI,Nitrogen Oxides,2I_Wood-processing,,TON,54.09116 +WI,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +WI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,60.5 +WI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,341.0970151 +WI,Nitrogen Oxides,5C_Incineration,,TON,11.6732782 +WI,Nitrogen Oxides,5C_Incineration,biomass,TON,346.5723261 +WI,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.05418 +WI,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.000001475 +WI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,666.419426 +WI,Nitrogen Oxides,5C_Open-burning-residential,,TON,792.74247 +WI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,52.9905861 +WI,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.1462565 +WI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.08353835 +WI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.911890416 +WI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1357.68754 +WI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.477588322 +WI,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,92.12106761 +WI,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4.977023508 +WI,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.553461503 +WI,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,1.668395711 +WI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.717112987 +WI,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.806464 +WI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,65.85139384 +WI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.096742639 +WI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2704.778675 +WI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,40.51127849 +WI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,208.517011 +WI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,82.91198984 +WI,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00744166 +WI,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.072343794 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.788377937 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,990.0621656 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,272.8755881 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,899.0377612 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,222.0735691 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.119925203 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,115.0348367 +WI,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,2.463172069 +WI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,9.991434091 +WI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.000239365 +WI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.00202191 +WI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.49199718 +WI,PM10 Filterable,1A3aii_Domestic-aviation,Other_Fuel,TON,5.04173678 +WI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,55168.5347 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,91.17239979 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,383.8845054 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,526.2023731 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.109401846 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.21312834 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.75294309 +WI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,52.3152076 +WI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,7.233919959 +WI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.332736332 +WI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,16.06483992 +WI,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.240767 +WI,PM10 Filterable,2A1_Cement-production,,TON,38.06060977 +WI,PM10 Filterable,2A2_Lime-production,,TON,98.2972105 +WI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,46572.52755 +WI,PM10 Filterable,2A6_Other-minerals,,TON,9524.516526 +WI,PM10 Filterable,2B_Chemicals-other,,TON,116.7667769 +WI,PM10 Filterable,2C_Iron-steel-alloy,,TON,540.5956032 +WI,PM10 Filterable,2C3_Aluminum-production,,TON,16.68342476 +WI,PM10 Filterable,2C5_Lead-production,,TON,0.71404668 +WI,PM10 Filterable,2C6_Zinc-production,,TON,0.69363586 +WI,PM10 Filterable,2C7_Other-metal,,TON,80.56027908 +WI,PM10 Filterable,2C7a_Copper-production,,TON,13.89019182 +WI,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.500498 +WI,PM10 Filterable,2D3d_Coating-application,,TON,0 +WI,PM10 Filterable,2D3e_Degreasing,,TON,0 +WI,PM10 Filterable,2H1_Pulp-and-paper,,TON,652.4255521 +WI,PM10 Filterable,2H2_Food-and-beverage,,TON,453.6441535 +WI,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,25.31594128 +WI,PM10 Filterable,2I_Wood-processing,,TON,84.36007147 +WI,PM10 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,0.0415856 +WI,PM10 Filterable,3Dc_Other-farm,,TON,128412.08 +WI,PM10 Filterable,5A_Solid-waste-disposal,,TON,21.69831818 +WI,PM10 Filterable,5C_Incineration,,TON,2.424944378 +WI,PM10 Filterable,5C_Incineration,biomass,TON,38.18678596 +WI,PM10 Filterable,5C_Open-burning-commercial,,TON,0.209127 +WI,PM10 Filterable,5C_Open-burning-dump,,TON,4.346217 +WI,PM10 Filterable,5C_Open-burning-industrial,,TON,0.408949 +WI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2265.8265 +WI,PM10 Filterable,5C_Open-burning-residential,,TON,5020.7039 +WI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,197.437243 +WI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,7.44179 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.834515 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,68.85458473 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.97052995 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3177.664255 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,44.06378687 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,387.1029057 +WI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,142.6369062 +WI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0076145 +WI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.17347755 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,243.5437839 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,49.18113529 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.360312994 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.772250602 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,625.9218274 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,92.86047654 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1237.465301 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,218.2889078 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.128405718 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,287.1631019 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,3.30081599 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,22.84114524 +WI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.000287 +WI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0027095 +WI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.596606785 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,862.0149931 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,55.45905087 +WI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,297.6152883 +WI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,55168.5347 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,93.67573747 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2879.174354 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,124.4547207 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,174.2250786 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,2038.057276 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,271.2217832 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,398.9401395 +WI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.78304955 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,416.22197 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02103632 +WI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,458.5706889 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,30.44041012 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.399172564 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,42.12158444 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002541018 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,142.7681968 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,139.2849592 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,49.25150612 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.005141363 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,35.11399986 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,350.0458374 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,23775.57333 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,118.199992 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,7.291087176 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.297526205 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,37.26454675 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1341.097735 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,22.7622435 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018736933 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.6266685 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1163.218622 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,35.06534605 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,576.3731479 +WI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.660306 +WI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.766119 +WI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,41.546639 +WI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,125.7430292 +WI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,46572.52755 +WI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9767.739629 +WI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,136.818253 +WI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1102.52198 +WI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,76.2586884 +WI,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,2.0345704 +WI,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.19072375 +WI,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,132.4644961 +WI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,63.89490705 +WI,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.6001 +WI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,48.37459249 +WI,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,4.10446095 +WI,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,6.285864515 +WI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,8.09263635 +WI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1270.389221 +WI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1994.934925 +WI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,39.22696491 +WI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,157.619992 +WI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,0.055863 +WI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,128434.5169 +WI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,229.9 +WI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,55.21383185 +WI,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.732971093 +WI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,45.29645356 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.230265 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,4.7855265 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.4502855 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2265.8265 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5020.7039 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,197.437243 +WI,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0603565 +WI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.194 +WI,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0554006 +WI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,4.039059128 +WI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.173139351 +WI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,31.80758626 +WI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.917489 +WI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0 +WI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +WI,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000588611 +WI,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,408.4626041 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,176.9834128 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7.46571241 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.29416216 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.029845235 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.035282064 +WI,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +WI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0 +WI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +WI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +WI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +WI,PM2.5 Filterable,1A3aii_Domestic-aviation,Other_Fuel,TON,3.47757479 +WI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,8797.97322 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,56.55932756 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,372.1911154 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,58.51723853 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.046920925 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.054339918 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.105818937 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,40.2052043 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,4.453544323 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.25571402 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.83566422 +WI,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00687904 +WI,PM2.5 Filterable,2A1_Cement-production,,TON,1.180672278 +WI,PM2.5 Filterable,2A2_Lime-production,,TON,0 +WI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4657.252755 +WI,PM2.5 Filterable,2A6_Other-minerals,,TON,973.7249555 +WI,PM2.5 Filterable,2B_Chemicals-other,,TON,2.426551852 +WI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0 +WI,PM2.5 Filterable,2C3_Aluminum-production,,TON,0 +WI,PM2.5 Filterable,2C5_Lead-production,,TON,0 +WI,PM2.5 Filterable,2C6_Zinc-production,,TON,0 +WI,PM2.5 Filterable,2C7_Other-metal,,TON,0 +WI,PM2.5 Filterable,2C7a_Copper-production,,TON,0 +WI,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +WI,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +WI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,0 +WI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,4.339585758 +WI,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,0 +WI,PM2.5 Filterable,2I_Wood-processing,,TON,0 +WI,PM2.5 Filterable,3Dc_Other-farm,,TON,25647.693 +WI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0.121150676 +WI,PM2.5 Filterable,5C_Incineration,,TON,0.022163222 +WI,PM2.5 Filterable,5C_Incineration,biomass,TON,0.349014477 +WI,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.001888175 +WI,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.0392413 +WI,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.00369234 +WI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2265.8265 +WI,PM2.5 Filterable,5C_Open-burning-residential,,TON,4597.9067 +WI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,176.051778 +WI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.0671908 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0834515 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,7.042204873 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.046927883 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,504.696513 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,4.469942971 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,178.5859452 +WI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,58.00853096 +WI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00076145 +WI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.101133796 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,236.2100941 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,48.81807934 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.358641294 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.978994521 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,106.7294508 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,11.33296727 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,343.9875789 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,26.90613985 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.810071197 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,173.3297465 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.837644193 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,12.84970894 +WI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.76348E-05 +WI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.000687587 +WI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.104609905 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,836.1544324 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,51.06708967 +WI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,211.5923813 +WI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8797.97322 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,83.3543317 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1800.106317 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,111.4592008 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,109.7971964 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,1853.609093 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,243.6718639 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,355.8971283 +WI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,31.55914247 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,384.9270093 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.01939142 +WI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,441.3488177 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,3.041963507 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.563339258 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.861900021 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000413866 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,57.81164043 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,135.1063471 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,45.44332572 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.005141363 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,34.06057993 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,322.0551901 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,23774.15452 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,105.7840125 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,4.510712716 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.16123168 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,30.8149222 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1300.865171 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,20.94149572 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018736933 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.4878643 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1070.162676 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,34.01340611 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,530.2634292 +WI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0660306 +WI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0766119 +WI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,4.6667579 +WI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,27.85573492 +WI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4657.252755 +WI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1216.888118 +WI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,22.47800756 +WI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,561.9263481 +WI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,59.57528631 +WI,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,1.32052402 +WI,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.49709136 +WI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,51.90488071 +WI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,50.00473315 +WI,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.0996017 +WI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,4.837459249 +WI,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.410446095 +WI,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.628586452 +WI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.809263635 +WI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,570.2303619 +WI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1545.630787 +WI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,13.9110395 +WI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,73.25997328 +WI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,0.0142774 +WI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,25670.12982 +WI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,229.9 +WI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,16.85208511 +WI,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.330187093 +WI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.472543912 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0230265 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.47855265 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.04502855 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2265.8265 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4597.9067 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,176.051778 +WI,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.00603565 +WI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.8194 +WI,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.3524 +WI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,162.8003585 +WI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,82.01419838 +WI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,132526.7515 +WI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,617.9515092 +WI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,31.0006986 +WI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,379.3951387 +WI,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.12726306 +WI,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.011787 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.26986277 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.16926642 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.647363597 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,4.123332924 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1923.131049 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,901.4094672 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,49101.00838 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3241.368517 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.742663427 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,613.0716751 +WI,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,19.99975177 +WI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,10.86457092 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.1597615 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,1.9370825 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.1520063 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,316.5924569 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.856625656 +WI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,177.5696087 +WI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.600183511 +WI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,520.145724 +WI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.192916534 +WI,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,29.89172833 +WI,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,51.76896534 +WI,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,7.090485635 +WI,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,10.06689421 +WI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.925264882 +WI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,126.9474034 +WI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002849042 +WI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1118.595268 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.827295175 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,718.888647 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2225.716722 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.036334905 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.017549113 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,136.9399703 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.21333831 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.361589287 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.178007857 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,8.559678285 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.830945694 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,653.4418107 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2063.54441 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,36.00988256 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,13.12460175 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,48.19454071 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,293.0917168 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.472948714 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003261633 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6109575 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,13.23459992 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,35.23083416 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10.83437695 +WI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.211266 +WI,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.7690575 +WI,Sulfur Dioxide,2A2_Lime-production,,TON,1043.031412 +WI,Sulfur Dioxide,2A6_Other-minerals,,TON,970.3226595 +WI,Sulfur Dioxide,2B_Chemicals-other,,TON,73.596025 +WI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,603.3960481 +WI,Sulfur Dioxide,2C3_Aluminum-production,,TON,33.69773724 +WI,Sulfur Dioxide,2C6_Zinc-production,,TON,0 +WI,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.29125 +WI,Sulfur Dioxide,2C7a_Copper-production,,TON,3.171363 +WI,Sulfur Dioxide,2D3d_Coating-application,,TON,0.366638 +WI,Sulfur Dioxide,2D3e_Degreasing,,TON,0.000045 +WI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,710.0767334 +WI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,81.9876122 +WI,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,4.498493435 +WI,Sulfur Dioxide,3Dc_Other-farm,,TON,87.510795 +WI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,8.47 +WI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,209.6154109 +WI,Sulfur Dioxide,5C_Incineration,,TON,14.36939946 +WI,Sulfur Dioxide,5C_Incineration,biomass,TON,65.95512295 +WI,Sulfur Dioxide,5C_Open-burning-industrial,,TON,1.106065 +WI,Sulfur Dioxide,5C_Open-burning-residential,,TON,132.123766 +WI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,11.449756 +WI,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.078278 +WI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.436 +WI,Volatile Organic Compounds,11C_Other-natural,,TON,469397.78 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.377434 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,163.1807825 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.73615567 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,854.03043 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,7.1411407 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,46.57708095 +WI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,782.742627 +WI,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.0033069 +WI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.87506549 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,311.0479657 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1766.741783 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.858335847 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.057720207 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,482.4805328 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,157.7505379 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,96.14432468 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.75896185 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,8.32080934 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,507.1211922 +WI,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,3.40989383 +WI,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.016758 +WI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,20.53591261 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.50829436 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.004771 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1994285 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1007.680486 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,673.8777516 +WI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,3832.330296 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,218.3292741 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,46810.50716 +WI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,118.2331011 +WI,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,3024.970049 +WI,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,2214.635551 +WI,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,628.9363946 +WI,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,495.7292425 +WI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2178.310983 +WI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,648.7586478 +WI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.763329133 +WI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,266.7246516 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,18.71568765 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.14242479 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.2240865 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.008281846 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.001256933 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,384.1126322 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,200.5082831 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2634.615329 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.695303081 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,49.27271885 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9035.858239 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,25946.90259 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,33.9080035 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,11.60360386 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.21566245 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,441.7833855 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1411.150248 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,439.0134256 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.063159224 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.4696053 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,45240.76746 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,71.15912053 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,34118.37019 +WI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1458.26138 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,5.419920549 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,14599.6872 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,215.7395352 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.95860638 +WI,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.92084 +WI,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,26.03231 +WI,Volatile Organic Compounds,2A6_Other-minerals,,TON,79.26450533 +WI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,603.8694633 +WI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1866.938132 +WI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1465.81319 +WI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,132.7411715 +WI,Volatile Organic Compounds,2C5_Lead-production,,TON,40.3838375 +WI,Volatile Organic Compounds,2C6_Zinc-production,,TON,5.60902 +WI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,144.5753858 +WI,Volatile Organic Compounds,2C7a_Copper-production,,TON,6.3998423 +WI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,23721.88103 +WI,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,12.0224905 +WI,Volatile Organic Compounds,2D3d_Coating-application,,TON,34516.14886 +WI,Volatile Organic Compounds,2D3e_Degreasing,,TON,5825.915383 +WI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,157.8493096 +WI,Volatile Organic Compounds,2D3h_Printing,,TON,24503.95558 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2123.594901 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,513.1385711 +WI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,4566.029223 +WI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,877.6537987 +WI,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,1183.074696 +WI,Volatile Organic Compounds,2I_Wood-processing,,TON,158.0643635 +WI,Volatile Organic Compounds,3Dc_Other-farm,,TON,32.05835294 +WI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,11139.59729 +WI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,145.2 +WI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,129.1868287 +WI,Volatile Organic Compounds,5C_Incineration,,TON,0.00834844 +WI,Volatile Organic Compounds,5C_Incineration,biomass,TON,125.0173921 +WI,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,3.101805 +WI,Volatile Organic Compounds,5C_Open-burning-dump,,TON,83.709845 +WI,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,5.751525 +WI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1546.09204 +WI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1130.97933 +WI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,222.371201 +WI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,85.4099554 +WI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1036.343669 +WI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0883705 +WV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.12688 +WV,Ammonia,1A1a_Public-Electricity,hard_coal,TON,26.8682984 +WV,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.000001 +WV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.04796 +WV,Ammonia,1A1b_Pet-refining,natural_gas,TON,2.07 +WV,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.00244 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.732468015 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.118761278 +WV,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,20.6801 +WV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.060312 +WV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,5.161977 +WV,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.65 +WV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,11.763499 +WV,Ammonia,1A2c_Chemicals,natural_gas,TON,0.29 +WV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.182609041 +WV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.055855912 +WV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.920590557 +WV,Ammonia,1A3bii_Road-LDV,light_oil,TON,836.1790553 +WV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.191502398 +WV,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,31.47459754 +WV,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,27.38562501 +WV,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,7.397801836 +WV,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,7.582019062 +WV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.708079597 +WV,Ammonia,1A3c_Rail,diesel_oil,TON,5.094430603 +WV,Ammonia,1A3c_Rail,light_oil,TON,0.002032854 +WV,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.675215 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.254355504 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.450094496 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.239722312 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.501421362 +WV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.092379353 +WV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.579559556 +WV,Ammonia,1A4bi_Residential-stationary,biomass,TON,123.9037033 +WV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,7.987897635 +WV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,1.977070039 +WV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.80739923 +WV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,261.7384083 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.978153152 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.055170373 +WV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.007614289 +WV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.634491061 +WV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.125507537 +WV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.848828962 +WV,Ammonia,2A1_Cement-production,,TON,3.04 +WV,Ammonia,2A2_Lime-production,Other_Fuel,TON,0.002 +WV,Ammonia,2A6_Other-minerals,,TON,53.9872 +WV,Ammonia,2B_Chemicals-other,,TON,66.92285 +WV,Ammonia,2C_Iron-steel-alloy,,TON,79.57777 +WV,Ammonia,2C3_Aluminum-production,,TON,0.49 +WV,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.4 +WV,Ammonia,2D3d_Coating-application,,TON,0.159 +WV,Ammonia,2H1_Pulp-and-paper,,TON,27.878 +WV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.01002 +WV,Ammonia,3B1a_Cattle-dairy,,TON,548.1019236 +WV,Ammonia,3B1b_Cattle-non-dairy,,TON,2114.297384 +WV,Ammonia,3B2_Manure-sheep,,TON,133.96746 +WV,Ammonia,3B3_Manure-swine,,TON,56.9162088 +WV,Ammonia,3B4_Manure-other,,TON,507.183864 +WV,Ammonia,3B4_Manure-poultry,,TON,5240.051447 +WV,Ammonia,3B4d_Manure-goats,,TON,194.874504 +WV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,3630.935767 +WV,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,1.04 +WV,Ammonia,5D1_Wastewater-domestic,,TON,6.843995 +WV,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.654458 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,90136.97218 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,80571.82557 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7154.73218 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,268262.7224 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4595.250349 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.239258843 +WV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,93330.00751 +WV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,8665753.06 +WV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,84091.1278 +WV,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,526625.4124 +WV,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2189478.325 +WV,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,220843.9736 +WV,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,429499.5961 +WV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,51570.17431 +WV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3197.938722 +WV,Carbon Dioxide,1A3c_Rail,light_oil,TON,156.9520487 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29433.29987 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,41185.49671 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1818.433318 +WV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,11352.86633 +WV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,115155.2311 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,120296.2167 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3952.116365 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.92901868 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,930.7493 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,101796.6392 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15456.29821 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,56939.2565 +WV,Carbon Monoxide,11C_Other-natural,,TON,39035.57 +WV,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.05793 +WV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,31.99189 +WV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9665.23 +WV,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.00333 +WV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,27.26596 +WV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,215.01 +WV,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,13.06298 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,413.636547 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6829.659172 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,424.109213 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,295.0465159 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.81648317 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1183.640403 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.79836507 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.501827406 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4089.320144 +WV,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,4.027 +WV,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,395.6457 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1491.549888 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1350.701051 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849361 +WV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2014.274441 +WV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,339.1404126 +WV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,225236.4499 +WV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,287.7850015 +WV,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,20103.91757 +WV,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,4010.967327 +WV,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,898.0518275 +WV,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,873.6778991 +WV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2679.26481 +WV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1650.668778 +WV,Carbon Monoxide,1A3c_Rail,light_oil,TON,49.84894605 +WV,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,725.62967 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.653707737 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.078206462 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1994.311501 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,178.1037058 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12800.44154 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,46.93086636 +WV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,53.92835865 +WV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,41438.2089 +WV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,16279.54897 +WV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,39.93953045 +WV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,271.8473259 +WV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,19.03697803 +WV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,594.5508311 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,591.3643314 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1469.47965 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.203056172 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.672321 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,23910.2367 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.11362569 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9236.85191 +WV,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,39.4059 +WV,Carbon Monoxide,2A1_Cement-production,,TON,36.49 +WV,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,52.03 +WV,Carbon Monoxide,2A6_Other-minerals,,TON,1458.43735 +WV,Carbon Monoxide,2B_Chemicals-other,,TON,1418.976774 +WV,Carbon Monoxide,2C_Iron-steel-alloy,,TON,24008.8546 +WV,Carbon Monoxide,2C3_Aluminum-production,,TON,68.272 +WV,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,18376.7 +WV,Carbon Monoxide,2D3d_Coating-application,,TON,0 +WV,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.23 +WV,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.083 +WV,Carbon Monoxide,2H1_Pulp-and-paper,,TON,170.3801 +WV,Carbon Monoxide,2H2_Food-and-beverage,,TON,172.4979203 +WV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,917.3375126 +WV,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,183.812 +WV,Carbon Monoxide,5C_Incineration,biomass,TON,0.225481157 +WV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,27546.9426 +WV,Carbon Monoxide,5C_Open-burning-residential,,TON,4222.1679 +WV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,560.42827 +WV,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.709720155 +WV,Methane,1A3bii_Road-LDV,light_oil,TON,916.6154142 +WV,Methane,1A3biii_Road-bus,diesel_oil,TON,1.454545321 +WV,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,76.93123118 +WV,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,105.2966584 +WV,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,3.886765922 +WV,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,8.605316913 +WV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.82683449 +WV,Nitrogen Oxides,11C_Other-natural,,TON,2776.8768 +WV,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +WV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,47.10846 +WV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,99273.5 +WV,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.8871 +WV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,51.02181 +WV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,713.86 +WV,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,2.46391 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,788.9327541 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,831.8606721 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,66.92312387 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,642.8372814 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,100.0866719 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5415.302629 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,226.1245365 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.636264026 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,12660.38986 +WV,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,17.19 +WV,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,151.1198 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2577.285338 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,23.62652293 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785054 +WV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,75.7486594 +WV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,561.3595466 +WV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,27068.13288 +WV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,879.175338 +WV,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,2122.963631 +WV,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,16702.00605 +WV,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,1429.232766 +WV,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,2972.897352 +WV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,110.0722082 +WV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,11319.26361 +WV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.677266226 +WV,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3766.2046 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.99284396 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.180729345 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6775.639323 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,302.996683 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,202.5890924 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.0447473 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,115.8768049 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,402.0858433 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,209.2322526 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,143.7821863 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,8.422815478 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,68.5331512 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1482.896508 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1211.098937 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,17.76481594 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.268062862 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.287887 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,214.781641 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,184.6794956 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,315.7946217 +WV,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,22.7662 +WV,Nitrogen Oxides,2A1_Cement-production,,TON,5189 +WV,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,220.67 +WV,Nitrogen Oxides,2A6_Other-minerals,,TON,2077.9164 +WV,Nitrogen Oxides,2B_Chemicals-other,,TON,837.897368 +WV,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1295.212 +WV,Nitrogen Oxides,2C3_Aluminum-production,,TON,126.638 +WV,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,9.77 +WV,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +WV,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.099 +WV,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,236.376 +WV,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,14.6838183 +WV,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,23.238 +WV,Nitrogen Oxides,5C_Incineration,biomass,TON,8.78195155 +WV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,814.998527 +WV,Nitrogen Oxides,5C_Open-burning-residential,,TON,298.03524 +WV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,24.9079234 +WV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.318589401 +WV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,557.8072804 +WV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.174497125 +WV,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,37.12972213 +WV,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2.043062665 +WV,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.826315667 +WV,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.705436963 +WV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.699722642 +WV,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.039727 +WV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.729753 +WV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3666.6856 +WV,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0121 +WV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,6.3795697 +WV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,199.892457 +WV,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.06676 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,38.85793538 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.756292473 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,166.1227292 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,42.12171226 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.02002361 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,135.7941425 +WV,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,8.287 +WV,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,4.9637901 +WV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,48794.9299 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.072255722 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.41576428 +WV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,8.626929485 +WV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,6.485779997 +WV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.11198976 +WV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.972188883 +WV,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.18762 +WV,PM10 Filterable,2A1_Cement-production,,TON,517.235158 +WV,PM10 Filterable,2A2_Lime-production,,TON,99.144065 +WV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16018.17672 +WV,PM10 Filterable,2A6_Other-minerals,,TON,20990.05471 +WV,PM10 Filterable,2B_Chemicals-other,,TON,269.7050854 +WV,PM10 Filterable,2C_Iron-steel-alloy,,TON,440.2469709 +WV,PM10 Filterable,2C3_Aluminum-production,,TON,40.276996 +WV,PM10 Filterable,2C7_Other-metal,,TON,460.6152549 +WV,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,36.6531967 +WV,PM10 Filterable,2D3d_Coating-application,,TON,2.82631081 +WV,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.000376 +WV,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,0.23 +WV,PM10 Filterable,2H1_Pulp-and-paper,,TON,189.2913791 +WV,PM10 Filterable,2H2_Food-and-beverage,,TON,5.59050925 +WV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,352.2677119 +WV,PM10 Filterable,2I_Wood-processing,,TON,0.762 +WV,PM10 Filterable,3Dc_Other-farm,,TON,1993.481 +WV,PM10 Filterable,5A_Solid-waste-disposal,,TON,0 +WV,PM10 Filterable,5C_Incineration,biomass,TON,0.057984 +WV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2770.996011 +WV,PM10 Filterable,5C_Open-burning-residential,,TON,1887.55635 +WV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,92.804237 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.039874 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.3472977 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,28058.684 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0121 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,9.302142 +WV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,311.714 +WV,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.173562 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,56.27820399 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.144370277 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.891817932 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,46.71619114 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,8.985785054 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1175.280708 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,53.18104394 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.045395237 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,326.078728 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,8.287 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,10.15073 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,231.194132 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.094678413 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +WV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,45.76907139 +WV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,48794.9299 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,37.98607605 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,849.0013639 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,48.39508638 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,49.79124258 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,755.6603668 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,97.28472141 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,154.8942122 +WV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.174983318 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,384.3085038 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02117422 +WV,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,134.01718 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.778009049 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01669042 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,80.78779224 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30.92895436 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.07594931 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.226937231 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.691663437 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,102.6560601 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2485.811038 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,19.01120231 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,6.622045149 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,9.06159984 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.727700281 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,108.5726403 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.47045239 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001380788 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.5337711 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,282.8427854 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.773062033 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,51.28561348 +WV,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.340539 +WV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,556.49878 +WV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,116.181 +WV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16018.17672 +WV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,21180.36319 +WV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,495.7639515 +WV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,925.2721092 +WV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,99.7958 +WV,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,753.422909 +WV,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,134.9564192 +WV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.17471081 +WV,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.000376 +WV,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.23 +WV,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.008000002 +WV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,346.0686871 +WV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,470.7795577 +WV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,545.8937292 +WV,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,1.4238 +WV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1993.481 +WV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +WV,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.57536151 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2770.996011 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1887.55635 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,92.804237 +WV,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.004976 +WV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.3075819 +WV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1564.61876 +WV,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0121 +WV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,6.1772683 +WV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,68.232457 +WV,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.06676 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,37.81755622 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.653853652 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,65.46790524 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,24.89982236 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.020031194 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,131.4551181 +WV,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,8.287 +WV,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,4.6248601 +WV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,6267.27867 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.265492583 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.007023417 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,6.62995751 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,4.153679264 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.16013821 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.634704099 +WV,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.1066 +WV,PM2.5 Filterable,2A1_Cement-production,,TON,197.88373 +WV,PM2.5 Filterable,2A2_Lime-production,,TON,51.6632812 +WV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1601.817672 +WV,PM2.5 Filterable,2A6_Other-minerals,,TON,3028.566055 +WV,PM2.5 Filterable,2B_Chemicals-other,,TON,153.8112038 +WV,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,217.0987413 +WV,PM2.5 Filterable,2C3_Aluminum-production,,TON,33.117451 +WV,PM2.5 Filterable,2C7_Other-metal,,TON,126.041633 +WV,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,12.9359506 +WV,PM2.5 Filterable,2D3d_Coating-application,,TON,2.626106584 +WV,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.000312 +WV,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,0.23 +WV,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,143.6617064 +WV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.829485227 +WV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,151.5500661 +WV,PM2.5 Filterable,2I_Wood-processing,,TON,0.068 +WV,PM2.5 Filterable,3Dc_Other-farm,,TON,398.646 +WV,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +WV,PM2.5 Filterable,5C_Incineration,biomass,TON,0.004404 +WV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2136.160641 +WV,PM2.5 Filterable,5C_Open-burning-residential,,TON,1728.60464 +WV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,71.543125 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.005123 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.9258517 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,25955.7763 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0121 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,9.0999396 +WV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,180.094 +WV,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.173562 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,54.58767762 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.039947729 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.891665535 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,45.68170031 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,6.801101513 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,253.0461937 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,33.3465716 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.036656417 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,322.1726797 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,8.287 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,9.812 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,224.2583418 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.531253041 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +WV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,6.87085733 +WV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,6267.27867 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,34.52458131 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,532.5655582 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,44.23396192 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,30.04256009 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,689.6647601 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,88.88143654 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,139.1119997 +WV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.279100415 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,354.6375556 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019518276 +WV,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,129.99731 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.922640991 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.011051644 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,60.38999008 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30.00110878 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.21876167 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.226937231 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.400914052 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,94.44712568 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2483.816617 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,17.01423229 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,4.289943467 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,8.1097502 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.390210332 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,105.3154806 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.632822852 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001380788 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4877581 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,260.215808 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.65987031 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,47.18277015 +WV,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.259519 +WV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,237.135852 +WV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,68.707 +WV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1601.817672 +WV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3218.860611 +WV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,380.3220401 +WV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,702.1056272 +WV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,92.629155 +WV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,418.8612653 +WV,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,111.2371631 +WV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.974506584 +WV,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.000312 +WV,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.23 +WV,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.008000002 +WV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,301.7890111 +WV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,467.018605 +WV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,345.1340013 +WV,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.7298 +WV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,398.646 +WV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +WV,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.52177751 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2136.160641 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1728.60464 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,71.543125 +WV,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +WV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,26.212226 +WV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,304791.8 +WV,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.3055 +WV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2.3713162 +WV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,7625.701 +WV,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.04717 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.82589063 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.705025937 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.161508871 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,139.612953 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,220.5560045 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,18916.93451 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,782.1793146 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.907796531 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,412.4148341 +WV,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.011 +WV,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,10.20676 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,58.36112489 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.130106173 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +WV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11.00770152 +WV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.026030952 +WV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,195.4238225 +WV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.909418341 +WV,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,11.87628292 +WV,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,23.49484254 +WV,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,2.430007324 +WV,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.622304801 +WV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.162363915 +WV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,115.0834355 +WV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004585871 +WV,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,222.59761 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.9945914 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.536585807 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.564268179 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.403120165 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.175993301 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.040200544 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.469832533 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.395951738 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,53.93455126 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,340.284654 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,37.9263173 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,162.1950923 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.916572714 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.17106046 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.116636232 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000240366 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.20246072 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.989065117 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.807903004 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.676853889 +WV,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.4054 +WV,Sulfur Dioxide,2A1_Cement-production,,TON,6102 +WV,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.27 +WV,Sulfur Dioxide,2A6_Other-minerals,,TON,1292.12745 +WV,Sulfur Dioxide,2B_Chemicals-other,,TON,3208.766199 +WV,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1611.145 +WV,Sulfur Dioxide,2C3_Aluminum-production,,TON,679.4276 +WV,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,1986.88 +WV,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +WV,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.001 +WV,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,12.60066 +WV,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,96.585262 +WV,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,3.845 +WV,Sulfur Dioxide,5C_Incineration,biomass,TON,1.196740545 +WV,Sulfur Dioxide,5C_Open-burning-residential,,TON,49.672532 +WV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.38189051 +WV,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.6 +WV,Volatile Organic Compounds,11C_Other-natural,,TON,325951.08 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.004387 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.15557 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1179.951 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.000414 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,2.013618 +WV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,81.60009 +WV,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.49598 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,69.67291178 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,305.1623544 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.13238631 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,12.79216033 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.541486416 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,32.52744208 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.752703093 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.613829588 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,760.8102179 +WV,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.104 +WV,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,25.50094 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,310.9530241 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,91.95572253 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +WV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,83.69147556 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,78.6145715 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,18871.68064 +WV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,39.8939338 +WV,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1175.783593 +WV,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,962.2469838 +WV,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,206.4873911 +WV,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,196.374004 +WV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,661.692362 +WV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,586.8543264 +WV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.909978681 +WV,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,81.562617 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.383540109 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.004184344 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1200.73203 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,44.51186104 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,631.7481483 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.153620086 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,13.62824081 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2989.034848 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2958.173696 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,5.5915306 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,9.885345227 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.665178083 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,81.73520535 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,115.0468459 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,114.465609 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004658039 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.8080003 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8878.324256 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.659193539 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3122.661914 +WV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,761.46 +WV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,91.83160251 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,159.1385196 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8527.399882 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,651.4519888 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,19.15 +WV,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,273.82776 +WV,Volatile Organic Compounds,2A1_Cement-production,,TON,8.514 +WV,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,8.41 +WV,Volatile Organic Compounds,2A6_Other-minerals,,TON,813.48235 +WV,Volatile Organic Compounds,2B_Chemicals-other,,TON,2477.514921 +WV,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,221.0345 +WV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,197.2851 +WV,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +WV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,7647.98198 +WV,Volatile Organic Compounds,2D3d_Coating-application,,TON,4639.39886 +WV,Volatile Organic Compounds,2D3e_Degreasing,,TON,32.6193 +WV,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,250.54561 +WV,Volatile Organic Compounds,2D3h_Printing,,TON,187.6493 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,131.259134 +WV,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,348.6760076 +WV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,193.5005422 +WV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,573.9188494 +WV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,233.5052379 +WV,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,109.588 +WV,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.044166821 +WV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1890.797424 +WV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,425.19683 +WV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,104.524334 +WV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,34.422463 +WV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,115.34133 +WV,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.022 +WV,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0041 +WY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,247.27833 +WY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,1.422264 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.392713839 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.137723115 +WY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,50.8457 +WY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,144.9692 +WY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.111521531 +WY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.032944658 +WY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.102319275 +WY,Ammonia,1A3bii_Road-LDV,light_oil,TON,371.5787164 +WY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.692092803 +WY,Ammonia,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,12.08462802 +WY,Ammonia,1A3biii_Road-truck-heavy,diesel_oil,TON,18.74204924 +WY,Ammonia,1A3biii_Road-truck-medium,diesel_oil,TON,2.724438179 +WY,Ammonia,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,5.161522191 +WY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.562558124 +WY,Ammonia,1A3c_Rail,diesel_oil,TON,17.61934209 +WY,Ammonia,1A3c_Rail,light_oil,TON,0.004089533 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.117042622 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.244695449 +WY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.022191855 +WY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.40145605 +WY,Ammonia,1A4bi_Residential-stationary,biomass,TON,45.30291889 +WY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.794476095 +WY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,4.10008115 +WY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.025697268 +WY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,117.3781231 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.552427129 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.045110583 +WY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002149859 +WY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.387507085 +WY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.059449999 +WY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.401872718 +WY,Ammonia,2A1_Cement-production,,TON,31.06 +WY,Ammonia,2B_Chemicals-other,,TON,181.54 +WY,Ammonia,2D3d_Coating-application,,TON,0.081 +WY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,30.2 +WY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,33.5 +WY,Ammonia,3B1a_Cattle-dairy,,TON,367.8580963 +WY,Ammonia,3B1b_Cattle-non-dairy,,TON,8768.403016 +WY,Ammonia,3B2_Manure-sheep,,TON,1439.98668 +WY,Ammonia,3B3_Manure-swine,,TON,653.9466912 +WY,Ammonia,3B4_Manure-other,,TON,1081.872 +WY,Ammonia,3B4_Manure-poultry,,TON,10.95477108 +WY,Ammonia,3B4d_Manure-goats,,TON,58.53672 +WY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,6877.16505 +WY,Ammonia,5D1_Wastewater-domestic,,TON,2.00917018 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,48331.91194 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,21138.54575 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7094.38324 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,136701.9816 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2712.491524 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.23926116 +WY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,36250.02264 +WY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3815158.746 +WY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,50400.64477 +WY,Carbon Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,409257.7166 +WY,Carbon Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1532725.759 +WY,Carbon Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,82325.22651 +WY,Carbon Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,394224.1988 +WY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21871.77464 +WY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6433.5394 +WY,Carbon Dioxide,1A3c_Rail,light_oil,TON,315.6855906 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14370.60607 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20094.41584 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,900.7319882 +WY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2727.247987 +WY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,29265.14641 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,190863.1018 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3360.576315 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,21.595621 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,262.80404 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,89891.48808 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7321.290666 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,26957.5251 +WY,Carbon Monoxide,11C_Other-natural,,TON,125484.49 +WY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1.51 +WY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,4876.23 +WY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1 +WY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,132.839 +WY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1579.294 +WY,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,2.5 +WY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,397.145 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,293.7007779 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3993.111219 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,274.2479718 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,366.4992174 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1304.107276 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.003236983 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.733111628 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,18468.71398 +WY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.67 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,653.5724226 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,788.1482768 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106849429 +WY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1244.631357 +WY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,128.1793426 +WY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,111927.7772 +WY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,181.2540217 +WY,Carbon Monoxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,17872.05634 +WY,Carbon Monoxide,1A3biii_Road-truck-heavy,diesel_oil,TON,2865.061676 +WY,Carbon Monoxide,1A3biii_Road-truck-medium,diesel_oil,TON,334.6272902 +WY,Carbon Monoxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,759.169122 +WY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1344.594297 +WY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5679.281403 +WY,Carbon Monoxide,1A3c_Rail,light_oil,TON,98.90018692 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,121.43 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.92269568 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6166.141947 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.98196017 +WY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,12.95009834 +WY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,10480.73333 +WY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5398.17075 +WY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,3.97237875 +WY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,563.76117 +WY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.128486305 +WY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,286.437107 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1049.182541 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1045.373464 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.37550831 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0023034 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14830.51744 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.73759327 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4362.45684 +WY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,8298.09708 +WY,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,3.191 +WY,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,10.95 +WY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,790.9194394 +WY,Carbon Monoxide,2A1_Cement-production,,TON,749.1 +WY,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,75.9 +WY,Carbon Monoxide,2A6_Other-minerals,,TON,3426.01 +WY,Carbon Monoxide,2B_Chemicals-other,,TON,12392.15 +WY,Carbon Monoxide,2D3d_Coating-application,,TON,0.00322 +WY,Carbon Monoxide,2H2_Food-and-beverage,,TON,68.2397208 +WY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,44.4993 +WY,Carbon Monoxide,3F_Ag-res-on-field,,TON,99.4 +WY,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,2.24 +WY,Carbon Monoxide,5C_Incineration,biomass,TON,0.257147598 +WY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3037.81339 +WY,Carbon Monoxide,5C_Open-burning-residential,,TON,667.60225 +WY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,45.065317 +WY,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,5.09 +WY,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,6.05 +WY,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.875087034 +WY,Methane,1A3bii_Road-LDV,light_oil,TON,498.9695383 +WY,Methane,1A3biii_Road-bus,diesel_oil,TON,0.599701812 +WY,Methane,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,41.08081959 +WY,Methane,1A3biii_Road-truck-heavy,diesel_oil,TON,45.78049044 +WY,Methane,1A3biii_Road-truck-medium,diesel_oil,TON,1.84828121 +WY,Methane,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.17998612 +WY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.300165846 +WY,Nitrogen Oxides,11C_Other-natural,,TON,11311.367 +WY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,7.64 +WY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,39139.1 +WY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,3.8 +WY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,166.154 +WY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,941.306 +WY,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,3 +WY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,570.416 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,490.7319406 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,164.7487168 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,32.81011765 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1011.011405 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,18428.24824 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.401178975 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.219107581 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,42167.26796 +WY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.56 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1259.555193 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,14.7306684 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022785082 +WY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,82.05237688 +WY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,222.7033032 +WY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,12005.52226 +WY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,589.3573765 +WY,Nitrogen Oxides,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,1817.632402 +WY,Nitrogen Oxides,1A3biii_Road-truck-heavy,diesel_oil,TON,12670.38106 +WY,Nitrogen Oxides,1A3biii_Road-truck-medium,diesel_oil,TON,553.5195551 +WY,Nitrogen Oxides,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,3377.919274 +WY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,58.83297015 +WY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,38469.03276 +WY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.467310879 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,150.42 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,147.9423019 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,104.9528531 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.369299556 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,27.84032097 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,107.3790996 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,90.38252252 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,14.300576 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,18.6553515 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.462550465 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,735.44433 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2047.106444 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,20.68293854 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.529095482 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9134663 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,111.5189535 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,87.48026096 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,153.1995759 +WY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,16288.5053 +WY,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2.202 +WY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,7.54 +WY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,400.43414 +WY,Nitrogen Oxides,2A1_Cement-production,,TON,2074.4 +WY,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,493.7 +WY,Nitrogen Oxides,2A6_Other-minerals,,TON,3638.72 +WY,Nitrogen Oxides,2B_Chemicals-other,,TON,3572.7 +WY,Nitrogen Oxides,2D3d_Coating-application,,TON,0.01 +WY,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,9.77 +WY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,4.2 +WY,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,0.34 +WY,Nitrogen Oxides,5C_Incineration,biomass,TON,2.0207648 +WY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,89.876228 +WY,Nitrogen Oxides,5C_Open-burning-residential,,TON,47.124835 +WY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.0029046 +WY,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,2.86 +WY,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,4.84 +WY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.121846267 +WY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,228.1545794 +WY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.097290203 +WY,Nitrous Oxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,16.38951364 +WY,Nitrous Oxide,1A3biii_Road-truck-heavy,diesel_oil,TON,1.332249589 +WY,Nitrous Oxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.310651741 +WY,Nitrous Oxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,0.439415342 +WY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.281066889 +WY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.0974455 +WY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.3 +WY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4829.026 +WY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,4.3416 +WY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,385.8432 +WY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.979 +WY,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.05 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,108.1506174 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7288.724964 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.014004083 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,3133.355042 +WY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.42 +WY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,331274.8877 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,Other_Fuel,TON,26.44 +WY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.85803399 +WY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,12.7102495 +WY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.027753038 +WY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.43177608 +WY,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,736.06255 +WY,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.041 +WY,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.24 +WY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.6147 +WY,PM10 Filterable,2A1_Cement-production,,TON,312.1 +WY,PM10 Filterable,2A2_Lime-production,,TON,139.3919993 +WY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,10962.94378 +WY,PM10 Filterable,2A6_Other-minerals,,TON,139359.5926 +WY,PM10 Filterable,2B_Chemicals-other,,TON,4125.72 +WY,PM10 Filterable,2D3d_Coating-application,,TON,0.2 +WY,PM10 Filterable,2H1_Pulp-and-paper,,TON,16.4696 +WY,PM10 Filterable,2H2_Food-and-beverage,,TON,200.2008683 +WY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,753.9770309 +WY,PM10 Filterable,3Dc_Other-farm,,TON,11658.189 +WY,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,0.01 +WY,PM10 Filterable,5C_Incineration,biomass,TON,0.06 +WY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,305.578863 +WY,PM10 Filterable,5C_Open-burning-residential,,TON,298.45734 +WY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,7.4626049 +WY,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.25 +WY,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.4 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.1 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.322675 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5645.875681 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,7.899852 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,679.619388 +WY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,20.7454 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.42169964 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.563310452 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.91227064 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,147.4725126 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,8005.300024 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.014003604 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3777.305963 +WY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.503582 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,103.5371454 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.182869149 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +WY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,27.84787789 +WY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,331274.8877 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,14.81639659 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,481.8448271 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,32.13818163 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,27.70274455 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,564.9400091 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,36.61380571 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,159.1108234 +WY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.62060892 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1299.860931 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.042576873 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,Other_Fuel,TON,29.4 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.09589203 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.413763462 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.112541075 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.327017472 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,25.62461923 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,783.3083986 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.89085415 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,12.7922525 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.061159447 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.72261508 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,192.5453608 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.566017787 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002728476 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.43102519 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,161.4196393 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.787157724 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,24.28093044 +WY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.4816831 +WY,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.041 +WY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.24 +WY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.79380761 +WY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,148.9892899 +WY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,253.679452 +WY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,10962.94378 +WY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,142300.0167 +WY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,4848.441144 +WY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.2 +WY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,35.1 +WY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,434.3069184 +WY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1167.734633 +WY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,11658.7679 +WY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,16.8 +WY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,0.01 +WY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.166284439 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,305.578863 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,298.45734 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.4626049 +WY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.65 +WY,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.4 +WY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.0707265 +WY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.28125 +WY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2298.374272 +WY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,4.3416 +WY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,272.3891698 +WY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.979 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,83.4283295 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3588.3784 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1033.093925 +WY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.239241 +WY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,33834.66369 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,Other_Fuel,TON,1.85 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.6594154 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,7.7901546 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.021328695 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.78747585 +WY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.25806357 +WY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.3185822 +WY,PM2.5 Filterable,2A1_Cement-production,,TON,47.1176898 +WY,PM2.5 Filterable,2A2_Lime-production,,TON,44.616335 +WY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1096.294378 +WY,PM2.5 Filterable,2A6_Other-minerals,,TON,20636.92281 +WY,PM2.5 Filterable,2B_Chemicals-other,,TON,1905.44323 +WY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,9.360009 +WY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,81.65448201 +WY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,625.3192714 +WY,PM2.5 Filterable,3Dc_Other-farm,,TON,2331.2325 +WY,PM2.5 Filterable,5C_Incineration,biomass,TON,0.0510811 +WY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,235.570812 +WY,PM2.5 Filterable,5C_Open-burning-residential,,TON,273.324 +WY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.7529474 +WY,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.25 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0732811 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.303925 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3115.231653 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,7.899852 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,584.1352622 +WY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,20.7454 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.62618457 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.443621092 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.912035018 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,122.8055743 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,4307.1839 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.014007031 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1686.401781 +WY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.322823 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,100.4310358 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.850702699 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000143521 +WY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,5.372813806 +WY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,33834.66369 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,13.46350493 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,336.8471818 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,29.5968578 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,17.26892462 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-heavy,diesel_oil,TON,519.4754905 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium,diesel_oil,TON,33.45117185 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-medium-heavy,diesel_oil,TON,146.2269972 +WY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.141806225 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1198.651582 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039246701 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,Other_Fuel,TON,29.4 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14.64301952 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.994733499 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.112541075 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.257205084 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,23.57547348 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,782.4236656 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.6922342 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,7.8721512 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.054735134 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.0783172 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,186.7689125 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.44077795 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002728476 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.41809453 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,148.5061849 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.733542728 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,22.33846706 +WY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.428747 +WY,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.041 +WY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.24 +WY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.49769078 +WY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,62.6068592 +WY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,164.7040365 +WY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1096.294378 +WY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,24238.45599 +WY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,3867.865988 +WY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.2 +WY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,27.99041 +WY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,368.8606144 +WY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1039.077172 +WY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2331.8114 +WY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,16.8 +WY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,0.01 +WY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.157365539 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,235.570812 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,273.324 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.7529474 +WY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.65 +WY,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.4 +WY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.4 +WY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,43004.75 +WY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1.4 +WY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.122 +WY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,3720.502 +WY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,4762.275 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.88235158 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.634757145 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.162680695 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,264.7591367 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,30633.19266 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.012001094 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,19669.9042 +WY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.03 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,29.74023924 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.085451515 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.73062E-05 +WY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11.97847255 +WY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.398066741 +WY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,118.3475391 +WY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.553979549 +WY,Sulfur Dioxide,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,12.70143811 +WY,Sulfur Dioxide,1A3biii_Road-truck-heavy,diesel_oil,TON,16.67792349 +WY,Sulfur Dioxide,1A3biii_Road-truck-medium,diesel_oil,TON,0.905246671 +WY,Sulfur Dioxide,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,4.295355819 +WY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.678357611 +WY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,397.8669004 +WY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.010335196 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,Other_Fuel,TON,78.241 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.126280153 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.639735586 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.019913062 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.593317358 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.969108219 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,15.35176409 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,33.844711 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,55.289583 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.0947028 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.29532702 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,41.52296094 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.111467931 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000474964 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.057166306 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.969285984 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.803717001 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.891649834 +WY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1571.40621 +WY,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.007 +WY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11 +WY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1795.2 +WY,Sulfur Dioxide,2A1_Cement-production,,TON,198.06 +WY,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,17.3 +WY,Sulfur Dioxide,2A6_Other-minerals,,TON,1030.35 +WY,Sulfur Dioxide,2B_Chemicals-other,,TON,1764.56 +WY,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.09 +WY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.56 +WY,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.234197725 +WY,Sulfur Dioxide,5C_Open-burning-residential,,TON,7.8541372 +WY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.43277038 +WY,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.09 +WY,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.04 +WY,Volatile Organic Compounds,11C_Other-natural,,TON,659403.3 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.6 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,438.13 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,35.436 +WY,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,300.3654508 +WY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1813.062549 +WY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,206 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.14553496 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,137.1415 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.577520714 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.7719033 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,115.4254076 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.300326299 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,4374.084663 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,129.4684032 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,53.79211774 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000370264 +WY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,72.90440116 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,31.8010966 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,8616.583762 +WY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,25.58537645 +WY,Volatile Organic Compounds,1A3biii_Road-heavy-duty-trucks-buses,light_oil,TON,679.5226118 +WY,Volatile Organic Compounds,1A3biii_Road-truck-heavy,diesel_oil,TON,631.3744732 +WY,Volatile Organic Compounds,1A3biii_Road-truck-medium,diesel_oil,TON,81.50858493 +WY,Volatile Organic Compounds,1A3biii_Road-truck-medium-heavy,diesel_oil,TON,135.5163848 +WY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,284.0703644 +WY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1971.356522 +WY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.758910993 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.38 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.72405083 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,304.1002508 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.07494223 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,3.271731524 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,739.9688579 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,965.0305966 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.55613335 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,20.5004005 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.017988055 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,39.3738316 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,202.4188345 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,49.20659764 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009193736 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.78889503 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5901.13378 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.627881011 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1422.538338 +WY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,105977.4753 +WY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,484.7243798 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,18.8053906 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3983.735695 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,32.97211819 +WY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,927.66962 +WY,Volatile Organic Compounds,2A1_Cement-production,,TON,97.88 +WY,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,5269.3 +WY,Volatile Organic Compounds,2A6_Other-minerals,,TON,165.84 +WY,Volatile Organic Compounds,2B_Chemicals-other,,TON,2669.82 +WY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2245.19605 +WY,Volatile Organic Compounds,2D3d_Coating-application,,TON,1124.005762 +WY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,113.16158 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,57.028655 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,138.992837 +WY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,19.46108902 +WY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,35.7809 +WY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,607.2203 +WY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,12.6 +WY,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,33.31 +WY,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.255322673 +WY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,208.512566 +WY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,67.231417 +WY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,8.4050439 +WY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,10.1053032 +WY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,70.24 +WY,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.24 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2011.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2011.csv new file mode 100644 index 0000000000..f2173b79cc --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2011.csv @@ -0,0 +1,39018 @@ +# File: NEI_emissions_to_CEDS_adj_2011.csv +# Title: NEI emissions aggregated to states / pollutants / and extended CEDS sectors for 2011 +# Units: TON +# Source: NEI 2011 version 2 accessible from: https://www.epa.gov/air-emissions-inventories/2011-national-emissions-inventory-nei-data#datas +# Comments: This data is pre-processed exogenously in a script available here: https://stash.pnnl.gov/projects/JGCRI/repos/gcam-core-data-proc_usnei_to_gcam/browse +# Column types: cccccn +# ---------- +state,pollutant,CEDS_Sector,CEDS_Fuel,unit,emissions +AK,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,12.97 +AK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.89 +AK,Ammonia,1A1b_Pet-refining,natural_gas,TON,5.96 +AK,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.43 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.249924254 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.060313854 +AK,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.09799999 +AK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.71 +AK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.08 +AK,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.057393471 +AK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1.05 +AK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.473084479 +AK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.040461144 +AK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.756984769 +AK,Ammonia,1A3bii_Road-LDV,light_oil,TON,171.9665555 +AK,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.990531397 +AK,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.6585584 +AK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.3933365 +AK,Ammonia,1A3biii_Road-bus,light_oil,TON,1.970034611 +AK,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.002592696 +AK,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.576746885 +AK,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.055325135 +AK,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.455298289 +AK,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.349135178 +AK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.360813504 +AK,Ammonia,1A3c_Rail,diesel_oil,TON,0.133438817 +AK,Ammonia,1A3c_Rail,light_oil,TON,0.000378022 +AK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14.73102731 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.377499786 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.12 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.197739154 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.111733295 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.22866572 +AK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.019432052 +AK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.406358063 +AK,Ammonia,1A4bi_Residential-stationary,biomass,TON,43.55476799 +AK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,32.303718 +AK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,61.00930005 +AK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.273003255 +AK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,199.9589606 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.045593058 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001965753 +AK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002678771 +AK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.780856708 +AK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.0965679 +AK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.595921456 +AK,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.05 +AK,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.42 +AK,Ammonia,5C_Incineration,,TON,0.52 +AK,Ammonia,5D1_Wastewater-domestic,,TON,2.58043265 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,30771.77135 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12527.91148 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3318.490965 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,181266.0984 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3354.504836 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.24585524 +AK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,175415.1732 +AK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2028782.505 +AK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,35228.1315 +AK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,153039.8 +AK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,23000.77135 +AK,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,54495.32448 +AK,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,100.005686 +AK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,330643.1816 +AK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1577.797512 +AK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,258315.2215 +AK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9163.329875 +AK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13250.47886 +AK,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,623.015215 +AK,Carbon Dioxide,1A3c_Rail,light_oil,TON,29.32678733 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13730.59156 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18970.4511 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,924.6406664 +AK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2389.907539 +AK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,29916.05503 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5609.849093 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,142.1344934 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.067719328 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,327.93717 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,250726.5457 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11891.74848 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,41257.8182 +AK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1576.78 +AK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1281.74 +AK,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,1.76 +AK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2134.78 +AK,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0.056244654 +AK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,328.6937553 +AK,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,1.1 +AK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1361.96 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1115.549993 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1802.660942 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,72.38066033 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9.664211876 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1292.707347 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,764.0293771 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.111849399 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.172033105 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,7417.76389 +AK,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,31.02 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,755.6847903 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,840.3162781 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.089810848 +AK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,15992.5184 +AK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3925.866759 +AK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,76616.61321 +AK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,329.515869 +AK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4418.9606 +AK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,112.8826927 +AK,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3447.768829 +AK,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,1.04496385 +AK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,890.8994974 +AK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,70.453395 +AK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,654.123225 +AK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,442.7403032 +AK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,769.356936 +AK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,267.6068945 +AK,Carbon Monoxide,1A3c_Rail,light_oil,TON,8.137193181 +AK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4700.116999 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,45.94473059 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,79.9215482 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,176.2229569 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,380.8509588 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.02622237 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,72.76110135 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4830.875454 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,20.76359412 +AK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,9.765879689 +AK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,8891.550204 +AK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5580.541846 +AK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,161.518471 +AK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,8388.787695 +AK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.365016455 +AK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,430.2161284 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.16594016 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,49.76041874 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007506194 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.16275 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35026.33893 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.77635007 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6670.83972 +AK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,595.58775 +AK,Carbon Monoxide,2A6_Other-minerals,,TON,32.82 +AK,Carbon Monoxide,2C7_Other-metal,,TON,0.1 +AK,Carbon Monoxide,2H2_Food-and-beverage,,TON,95.12520427 +AK,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,2.12055 +AK,Carbon Monoxide,5C_Incineration,,TON,12.83321575 +AK,Carbon Monoxide,5C_Incineration,biomass,TON,12.89323079 +AK,Carbon Monoxide,5C_Open-burning-residential,,TON,967.90232 +AK,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,131.284333 +AK,Carbon Monoxide,5D1_Wastewater-domestic,,TON,78 +AK,Methane,1A3bii_Road-LDV,diesel_oil,TON,8.82081535 +AK,Methane,1A3bii_Road-LDV,light_oil,TON,270.8537843 +AK,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.11564839 +AK,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.2405877 +AK,Methane,1A3biii_Road-bus,diesel_oil,TON,0.631815156 +AK,Methane,1A3biii_Road-bus,light_oil,TON,9.411173985 +AK,Methane,1A3biii_Road-bus,natural_gas,TON,1.07800144 +AK,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24.589843 +AK,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.158968547 +AK,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.759211581 +AK,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.500504592 +AK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.795934893 +AK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,10965.67 +AK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,2102.38 +AK,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,367.42 +AK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,9438.44 +AK,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0.013094741 +AK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,501.4369053 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,4.51 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1055.04 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,367.9880457 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,92.44770107 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.59780053 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3.215055731 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4578.290996 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,786.015361 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.105378435 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.750517893 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,35899.95849 +AK,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,2.57 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1364.860945 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,14.72009637 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.018258157 +AK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4783.659488 +AK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,889.8212023 +AK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7521.151277 +AK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,153.4305052 +AK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,406.250852 +AK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,275.0222423 +AK,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,333.8588692 +AK,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.575980797 +AK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3328.959116 +AK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,7.15041907 +AK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1980.204856 +AK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,43.15871869 +AK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31.2238786 +AK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1125.819088 +AK,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.12783466 +AK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,29925.01129 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,17.57682009 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,355.0493694 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,323.5994789 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.021164126 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,18.20162927 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,74.21200608 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,125.5701616 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,89.13438359 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.450429895 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,21.720723 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,107.9053396 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,85.95075526 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,581.46628 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,277.5923435 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.9140601 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,993.7179973 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,48.91058202 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.647531743 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001677649 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.213704 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,304.2441588 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,133.5501425 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,220.7174898 +AK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,458.6091208 +AK,Nitrogen Oxides,2A6_Other-minerals,,TON,70.43 +AK,Nitrogen Oxides,2C7_Other-metal,,TON,0.12 +AK,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,17.83 +AK,Nitrogen Oxides,5C_Incineration,,TON,12.54521601 +AK,Nitrogen Oxides,5C_Incineration,biomass,TON,8.306388756 +AK,Nitrogen Oxides,5C_Open-burning-residential,,TON,68.322545 +AK,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,5.83486314 +AK,Nitrogen Oxides,5D1_Wastewater-domestic,,TON,13 +AK,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,4 +AK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.636703382 +AK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,197.1009043 +AK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.137474341 +AK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.2428613 +AK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.067957979 +AK,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.398888787 +AK,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.020249252 +AK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.413702063 +AK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.062859896 +AK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.517453343 +AK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.576689094 +AK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.248716448 +AK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,347.0485959 +AK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,108.0326203 +AK,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,15.78602541 +AK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,131.9622 +AK,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.035621985 +AK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,21.66714761 +AK,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.14204342 +AK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,66.385883 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8.766292585 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,119.108 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,17.03276082 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.899783124 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.014260415 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,431.4093794 +AK,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,20.11706231 +AK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,73000.9375 +AK,PM10 Filterable,1A3c_Rail,diesel_oil,TON,21 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,40.13944713 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.99283501 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,24.7253818 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.627178596 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.991981004 +AK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,34.887989 +AK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,189.128972 +AK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.294843685 +AK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.070800389 +AK,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,5.7655428 +AK,PM10 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.7561728 +AK,PM10 Filterable,2A2_Lime-production,,TON,0 +AK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,4797.979469 +AK,PM10 Filterable,2A6_Other-minerals,,TON,4776.78407 +AK,PM10 Filterable,2C7_Other-metal,,TON,2.02 +AK,PM10 Filterable,2D3d_Coating-application,,TON,0.14 +AK,PM10 Filterable,2H2_Food-and-beverage,,TON,579.891486 +AK,PM10 Filterable,3Dc_Other-farm,,TON,0 +AK,PM10 Filterable,5C_Incineration,,TON,9.962078 +AK,PM10 Filterable,5C_Incineration,biomass,TON,8.656114 +AK,PM10 Filterable,5C_Open-burning-residential,,TON,432.70968 +AK,PM10 Filterable,5C_Open-burning-yard-waste,,TON,21.7400827 +AK,PM10 Filterable,5D1_Wastewater-domestic,,TON,1 +AK,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.106601 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,516.3457651 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,118.4 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,16.8 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,240.16 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.040281553 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,41.44971845 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.22 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,116.68 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.52317709 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.539761895 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.493686677 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8.69394294 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,252.3033505 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,18.09465474 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.973591581 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.031931744 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,769.3847195 +AK,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,25.21 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,121.4025127 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,5.244422015 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000145981 +AK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,244.4571785 +AK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,73000.9375 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,45.05407621 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,299.2136161 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.50969536 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.94726 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,16.96614073 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,14.71173319 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.006419564 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,154.1454106 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.208171318 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,112.3147931 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.775210239 +AK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.617058538 +AK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,32.01256899 +AK,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004075236 +AK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1541.410992 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,41.24518885 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.44746416 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,24.95832798 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.551586366 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.209337719 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.25549603 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.24546614 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.11648651 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.688636928 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,24.97151501 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,810.0143687 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,76.882817 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,220.853749 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.64974771 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.384081885 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.384893663 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.318804244 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.55824E-06 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.45851467 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,385.3046869 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.850418181 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,27.48654685 +AK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9.51381945 +AK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +AK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4797.979469 +AK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4776.78407 +AK,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,13 +AK,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,2.02 +AK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.14 +AK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,804.636377 +AK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +AK,PM10 Primary (Filt + Cond),5C_Incineration,,TON,10.60899929 +AK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.961389556 +AK,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,432.70968 +AK,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,21.7400827 +AK,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,1 +AK,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.11 +AK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,330.0942973 +AK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,29.6010173 +AK,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,15.78581133 +AK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,127.5922 +AK,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.032909856 +AK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,19.65068174 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0862174 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,59.454953 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7.691620943 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,115.7594051 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,11.51846537 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.238791146 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.014276524 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,430.9113661 +AK,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,11.46226231 +AK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,7514.403316 +AK,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,17 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,34.9374531 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.347422967 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.47474092 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.548542422 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.016073561 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,26.812075 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,115.917737 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.226592465 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.138939977 +AK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,4.7455428 +AK,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.7561728 +AK,PM2.5 Filterable,2A2_Lime-production,,TON,0 +AK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,479.7979469 +AK,PM2.5 Filterable,2A6_Other-minerals,,TON,644.5399506 +AK,PM2.5 Filterable,2C7_Other-metal,,TON,1.1772801 +AK,PM2.5 Filterable,2D3d_Coating-application,,TON,0.1161702 +AK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,212.2095931 +AK,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +AK,PM2.5 Filterable,5C_Incineration,,TON,7.738654 +AK,PM2.5 Filterable,5C_Incineration,biomass,TON,5.9374075 +AK,PM2.5 Filterable,5C_Open-burning-residential,,TON,396.27092 +AK,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,16.7595085 +AK,PM2.5 Filterable,5D1_Wastewater-domestic,,TON,1 +AK,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.0607221 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,499.3914507 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,39.968386 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,16.79978591 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,235.79 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.03859081 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,39.43223119 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.1641739 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,109.74907 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.89333081 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.445386547 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.490646441 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7.652345804 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,249.0022432 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,12.77520395 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.336071114 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.03193801 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,768.5878407 +AK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,16.5552 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,117.7604176 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.828034307 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000145981 +AK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,227.3213441 +AK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,7514.403316 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,41.44961183 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,264.6899269 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.74889126 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.338 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,15.60879431 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,13.01426653 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.005678871 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,141.81339 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.184152183 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,103.3292887 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.570384511 +AK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.430481619 +AK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,27.16936179 +AK,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003756568 +AK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1448.295957 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,35.97559728 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.81032242 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.73804837 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.47987959 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.255337189 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.88782597 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.839881436 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.11648651 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.637978991 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,22.97447322 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,808.6711783 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,68.8068705 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,147.64246 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.58149721 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.452219664 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.253334866 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.293299504 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.55824E-06 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.44475914 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,354.4810708 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.764902462 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,25.2876308 +AK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9.51381945 +AK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +AK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,479.7979469 +AK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,644.5399506 +AK,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,13 +AK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,1.1772801 +AK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.1161702 +AK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,436.9546914 +AK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,8.388402454 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.239846897 +AK,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,396.27092 +AK,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,16.7595085 +AK,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,1 +AK,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0641211 +AK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,914.746 +AK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1785.29 +AK,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.88 +AK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,358.63 +AK,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,0.01630061 +AK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,29.37369939 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.69 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,132.59 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.839180351 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.756260147 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.110078317 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.441512595 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,162.5369397 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,716.4549632 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.69141265 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,991.6679923 +AK,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,3.75 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,32.73254367 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.061585225 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.74761E-05 +AK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,435.4668185 +AK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.521873826 +AK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,39.69378111 +AK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.302813493 +AK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.99427301 +AK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.200601119 +AK,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.066217596 +AK,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000529479 +AK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.845418637 +AK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.030870073 +AK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.214980597 +AK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.179283463 +AK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.259249518 +AK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.01077838 +AK,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00053578 +AK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7148.353501 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.908407209 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,49.97753714 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,196.7555882 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.080886162 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.47531508 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.069360877 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.516894704 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.348047201 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.020445959 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.437509372 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.545088936 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,15.83821942 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1376.13679 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,293.149619 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,11.62993295 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,6.212400982 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.019182388 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.002588006 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.48928E-06 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.059909619 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.551668172 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.470585492 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.75012958 +AK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,154.968675 +AK,Sulfur Dioxide,2A6_Other-minerals,,TON,8.29 +AK,Sulfur Dioxide,2C7_Other-metal,,TON,0.01 +AK,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,14.21 +AK,Sulfur Dioxide,5C_Incineration,,TON,5.6994802 +AK,Sulfur Dioxide,5C_Incineration,biomass,TON,2.931747009 +AK,Sulfur Dioxide,5C_Open-burning-residential,,TON,11.3871015 +AK,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.26074776 +AK,Sulfur Dioxide,5D1_Wastewater-domestic,,TON,1 +AK,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,2.27 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,432.24 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,9.64 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.59 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,391.76 +AK,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0.208639519 +AK,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,38.18103193 +AK,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,21.48987043 +AK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,841.8604581 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.13 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,89.96 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,53.88632467 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,54.58787192 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.711192302 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.304419013 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,267.950073 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,17.36618849 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.040951227 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,459.8464559 +AK,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,1.7 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,138.893866 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,57.99016885 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.00029852 +AK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1760.326494 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,479.1904732 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7880.859807 +AK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,57.5953627 +AK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,410.199 +AK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,27.42953419 +AK,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,171.5683808 +AK,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.148073668 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,227.3424658 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,3.09389653 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,165.3743936 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,21.84415185 +AK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,118.3844169 +AK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,53.26033446 +AK,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.294294225 +AK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,811.0844178 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.333076217 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,42.30327342 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.796824528 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,19.34086063 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.061031159 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.73151609 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,230.5274165 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.063834102 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.247500186 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,622.8294775 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1037.865795 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,22.612599 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,305.046228 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.19110244 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,56.946987 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.452780321 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.591263746 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.91664E-05 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.82174105 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13877.06479 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.080929211 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1627.511967 +AK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,498.7365176 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,57.62585808 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,57.6148253 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2754.685082 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,929.9530033 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,97.52 +AK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,16958.84598 +AK,Volatile Organic Compounds,2A6_Other-minerals,,TON,8.72 +AK,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,5.59 +AK,Volatile Organic Compounds,2C7_Other-metal,,TON,0.01 +AK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2993.62432 +AK,Volatile Organic Compounds,2D3d_Coating-application,,TON,1342.547847 +AK,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,246.287509 +AK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.53000025 +AK,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,25.4265 +AK,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,29.1012685 +AK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,31.85869573 +AK,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,116.4 +AK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2.24251498 +AK,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,125.17 +AK,Volatile Organic Compounds,5C_Incineration,,TON,7.933822181 +AK,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.03097844 +AK,Volatile Organic Compounds,5C_Open-burning-residential,,TON,97.473584 +AK,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,24.4855781 +AK,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,16.9784941 +AK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.8 +AL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.45 +AL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,228.703456 +AL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,260.165762 +AL,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,2.9 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.138073232 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.177998122 +AL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,469.8222739 +AL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.205466044 +AL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,18.74101536 +AL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.16687672 +AL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.266325092 +AL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,316.7326805 +AL,Ammonia,1A2c_Chemicals,natural_gas,TON,2.72 +AL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,9.121166934 +AL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.247368027 +AL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,9.82852156 +AL,Ammonia,1A3bii_Road-LDV,light_oil,TON,2175.94937 +AL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.5142334 +AL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,338.052976 +AL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.2067354 +AL,Ammonia,1A3biii_Road-bus,light_oil,TON,1.404793706 +AL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.142006646 +AL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,72.01503228 +AL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.36439839 +AL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,77.3813299 +AL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,15.89334389 +AL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.1780609 +AL,Ammonia,1A3c_Rail,diesel_oil,TON,7.485260983 +AL,Ammonia,1A3c_Rail,light_oil,TON,0.003206994 +AL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.567051822 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.88 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.182584556 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.004237303 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024992685 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.85292757 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.88576337 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.812036461 +AL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.389740107 +AL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.853666943 +AL,Ammonia,1A4bi_Residential-stationary,biomass,TON,78.85395377 +AL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.09880702 +AL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.230608092 +AL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,361.9716083 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.590041613 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.25598082 +AL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.020300216 +AL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.683020653 +AL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.781087749 +AL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.822175148 +AL,Ammonia,2A1_Cement-production,,TON,2.674755 +AL,Ammonia,2A2_Lime-production,Other_Fuel,TON,56.074404 +AL,Ammonia,2A6_Other-minerals,Other_Fuel,TON,311.9574 +AL,Ammonia,2B_Chemicals-other,,TON,182.675 +AL,Ammonia,2C_Iron-steel-alloy,,TON,69.1295 +AL,Ammonia,2C3_Aluminum-production,,TON,6.426 +AL,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.16 +AL,Ammonia,2C7a_Copper-production,,TON,0.00198 +AL,Ammonia,2D3d_Coating-application,,TON,1.278 +AL,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.5905 +AL,Ammonia,2H1_Pulp-and-paper,,TON,808.33349 +AL,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.4 +AL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,347.895495 +AL,Ammonia,3B1a_Cattle-dairy,,TON,521.7148279 +AL,Ammonia,3B1b_Cattle-non-dairy,,TON,5601.352443 +AL,Ammonia,3B2_Manure-sheep,,TON,59.195796 +AL,Ammonia,3B3_Manure-swine,,TON,1440.336348 +AL,Ammonia,3B4_Manure-other,,TON,1170.7476 +AL,Ammonia,3B4_Manure-poultry,,TON,46088.59547 +AL,Ammonia,3B4d_Manure-goats,,TON,560.802 +AL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,4492.741552 +AL,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,87.272 +AL,Ammonia,5C_Open-burning-industrial,,TON,0.00274 +AL,Ammonia,5D1_Wastewater-domestic,,TON,17.5842317 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,263243.5552 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,284766.1765 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16733.21946 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1122325.113 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,20517.11083 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.17339721 +AL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,382531.788 +AL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,24737132.5 +AL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,343606.049 +AL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4455640.11 +AL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,205705.8775 +AL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,41759.27533 +AL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,6177.095 +AL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4177273.855 +AL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,63812.3957 +AL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5267890.23 +AL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,448218.8316 +AL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,172762.899 +AL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5374.325156 +AL,Carbon Dioxide,1A3c_Rail,light_oil,TON,248.8545022 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,108848.9919 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,150297.0082 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6697.535504 +AL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,47933.03608 +AL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,359046.5653 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,441819.5007 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,18206.23833 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.60476468 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2485.117 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,174012.9679 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,96186.32052 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,333856.8586 +AL,Carbon Monoxide,11C_Other-natural,,TON,190520.83 +AL,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,17.418 +AL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,49.32 +AL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,17.034 +AL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8621.54 +AL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.06 +AL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1252.2726 +AL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,398.40749 +AL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,377.6613798 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1260.308148 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13556.3011 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,805.2573289 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,52105.16341 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,743.6775778 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,5622.043094 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,837.1909212 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,143.7827318 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,11571.40614 +AL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,44.44 +AL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.60895 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4743.683518 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4814.885661 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.37293912 +AL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11345.6179 +AL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7457.93535 +AL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,539845.127 +AL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3398.56208 +AL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,106085.063 +AL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,574.211249 +AL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2166.045331 +AL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,40.987994 +AL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9693.922887 +AL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2136.257097 +AL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9817.69655 +AL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13607.23173 +AL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6954.6512 +AL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2424.68715 +AL,Carbon Monoxide,1A3c_Rail,light_oil,TON,65.02362047 +AL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1778.278147 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,277.7847696 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,63.94678188 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,55.66939747 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.048186935 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.561654265 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,999.8280741 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,576.8184624 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,36295.54943 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,156.5818015 +AL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,196.4328358 +AL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,96896.86902 +AL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,9656.607295 +AL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,10.4940346 +AL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.153040215 +AL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1059.652454 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1737.714432 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5830.769252 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.836568361 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.025116 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35121.64488 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,192.3166245 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,43963.64034 +AL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,260.5215262 +AL,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,6.10245 +AL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14472.62632 +AL,Carbon Monoxide,2A1_Cement-production,,TON,1950.222 +AL,Carbon Monoxide,2A2_Lime-production,,TON,939.684 +AL,Carbon Monoxide,2A6_Other-minerals,,TON,6542.11433 +AL,Carbon Monoxide,2B_Chemicals-other,,TON,3179.205881 +AL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,7030.94266 +AL,Carbon Monoxide,2C3_Aluminum-production,,TON,88.605042 +AL,Carbon Monoxide,2C5_Lead-production,,TON,3792.23 +AL,Carbon Monoxide,2C6_Zinc-production,,TON,66.95 +AL,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,13.334 +AL,Carbon Monoxide,2C7a_Copper-production,,TON,1.4127 +AL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,74.214 +AL,Carbon Monoxide,2D3d_Coating-application,,TON,123.17385 +AL,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.45 +AL,Carbon Monoxide,2D3h_Printing,,TON,0.7 +AL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,9439.7028 +AL,Carbon Monoxide,2H2_Food-and-beverage,,TON,592.1882273 +AL,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,309.1036 +AL,Carbon Monoxide,3Dc_Other-farm,,TON,3.5 +AL,Carbon Monoxide,3F_Ag-res-on-field,,TON,4485.81171 +AL,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,1142.112437 +AL,Carbon Monoxide,5C_Incineration,,TON,0.369364485 +AL,Carbon Monoxide,5C_Incineration,biomass,TON,24.75756108 +AL,Carbon Monoxide,5C_Open-burning-industrial,,TON,23.1 +AL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,35839.95723 +AL,Carbon Monoxide,5C_Open-burning-residential,,TON,7656.6373 +AL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1024.87987 +AL,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.06392 +AL,Methane,1A3bii_Road-LDV,diesel_oil,TON,10.6518078 +AL,Methane,1A3bii_Road-LDV,light_oil,TON,1272.06987 +AL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.902368 +AL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,303.436475 +AL,Methane,1A3biii_Road-bus,diesel_oil,TON,4.14262397 +AL,Methane,1A3biii_Road-bus,light_oil,TON,4.984501473 +AL,Methane,1A3biii_Road-bus,natural_gas,TON,41.48174 +AL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,347.6650621 +AL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.095569522 +AL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,82.7299027 +AL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,27.63001367 +AL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.7678027 +AL,Nitrogen Oxides,11C_Other-natural,,TON,13988.8433 +AL,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,5.632 +AL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,33.94 +AL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,47.3825 +AL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,59344.2 +AL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.3 +AL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2255.694 +AL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,389.42705 +AL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,145.563699 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1802.683298 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1734.220243 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,118.5268732 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,10803.80707 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,709.8665134 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4275.484687 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,584.5109327 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,95.61218845 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,18112.37818 +AL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,239.78 +AL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.38625 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8493.789446 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,82.56581549 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075816875 +AL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,539.3393234 +AL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1493.498192 +AL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,69399.9643 +AL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1555.2441 +AL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14001.4424 +AL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1483.301801 +AL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,185.0804701 +AL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,25.8070326 +AL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32151.19607 +AL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,276.622409 +AL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30472.9991 +AL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1381.189094 +AL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,319.13984 +AL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16596.84677 +AL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.958002907 +AL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7815.265648 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,142.2656108 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,240.4053007 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,125.6856577 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.123274456 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.144054359 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1317.136771 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,995.5363926 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,634.9547363 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,41.53972704 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,435.6602217 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1134.218653 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,155.7063652 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,37.778517 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.15094545 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2298.61422 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3584.648626 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,70.71139941 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.18663233 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.319417 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,363.8519191 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1080.189043 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2250.570315 +AL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,350.056262 +AL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,14.33555 +AL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10823.43122 +AL,Nitrogen Oxides,2A1_Cement-production,,TON,3491.025 +AL,Nitrogen Oxides,2A2_Lime-production,,TON,3733.205 +AL,Nitrogen Oxides,2A6_Other-minerals,,TON,5365.57686 +AL,Nitrogen Oxides,2B_Chemicals-other,,TON,2442.183319 +AL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,5549.65059 +AL,Nitrogen Oxides,2C3_Aluminum-production,,TON,220.498572 +AL,Nitrogen Oxides,2C5_Lead-production,,TON,121.71 +AL,Nitrogen Oxides,2C6_Zinc-production,,TON,34.75 +AL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,22.31 +AL,Nitrogen Oxides,2C7a_Copper-production,,TON,5.67626 +AL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,16.345 +AL,Nitrogen Oxides,2D3d_Coating-application,,TON,133.3443 +AL,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.55 +AL,Nitrogen Oxides,2D3h_Printing,,TON,0.8 +AL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,8836.4875 +AL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,78.88051 +AL,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,30.9619 +AL,Nitrogen Oxides,3Dc_Other-farm,,TON,28.72 +AL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,167.5955357 +AL,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,138.208 +AL,Nitrogen Oxides,5C_Incineration,,TON,3.16574337 +AL,Nitrogen Oxides,5C_Incineration,biomass,TON,103.2309829 +AL,Nitrogen Oxides,5C_Open-burning-industrial,,TON,1.28 +AL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1060.353359 +AL,Nitrogen Oxides,5C_Open-burning-residential,,TON,540.4684 +AL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,45.5502278 +AL,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.0761 +AL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.089956295 +AL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1242.212741 +AL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.10418758 +AL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,266.952128 +AL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.491737103 +AL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.811857162 +AL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.344216764 +AL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.846373474 +AL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.935918621 +AL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.95400596 +AL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,24.19421336 +AL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.29248512 +AL,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.186326125 +AL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,34.9 +AL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.4378924 +AL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4240.49597 +AL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,363.412982 +AL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,38.69157 +AL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,6.12244 +AL,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.06 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,33956.95507 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,203.7226782 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7747.569898 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,151.82003 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,6.412356587 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,615.2778719 +AL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,23.48 +AL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.48998 +AL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,238876.809 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,200.5578795 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.83270145 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.61471867 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.080830137 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.37023853 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.554018692 +AL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.2667106 +AL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.249056563 +AL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.40874468 +AL,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,4.01667 +AL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.80191 +AL,PM10 Filterable,2A1_Cement-production,,TON,604.3563334 +AL,PM10 Filterable,2A2_Lime-production,,TON,493.8083305 +AL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,26004.93286 +AL,PM10 Filterable,2A6_Other-minerals,,TON,8746.237383 +AL,PM10 Filterable,2B_Chemicals-other,,TON,526.703789 +AL,PM10 Filterable,2C_Iron-steel-alloy,,TON,2183.716247 +AL,PM10 Filterable,2C3_Aluminum-production,,TON,147.2834795 +AL,PM10 Filterable,2C5_Lead-production,,TON,19.405 +AL,PM10 Filterable,2C6_Zinc-production,,TON,31.53998 +AL,PM10 Filterable,2C7_Other-metal,,TON,81.86370824 +AL,PM10 Filterable,2C7a_Copper-production,,TON,12.1644 +AL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,44.772999 +AL,PM10 Filterable,2D3d_Coating-application,,TON,73.88826895 +AL,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,2.1996 +AL,PM10 Filterable,2D3h_Printing,,TON,0 +AL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.42 +AL,PM10 Filterable,2H1_Pulp-and-paper,,TON,3214.706513 +AL,PM10 Filterable,2H2_Food-and-beverage,,TON,290.4282987 +AL,PM10 Filterable,2H3_Other-industrial-processes,,TON,228.3288895 +AL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,0.002044733 +AL,PM10 Filterable,2I_Wood-processing,,TON,0 +AL,PM10 Filterable,3Dc_Other-farm,,TON,28277.54477 +AL,PM10 Filterable,5A_Solid-waste-disposal,,TON,412.9976 +AL,PM10 Filterable,5C_Incineration,,TON,3.94872 +AL,PM10 Filterable,5C_Incineration,biomass,TON,5.71977 +AL,PM10 Filterable,5C_Open-burning-industrial,,TON,205 +AL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3605.202719 +AL,PM10 Filterable,5C_Open-burning-residential,,TON,3422.9676 +AL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,169.715234 +AL,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.04913 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1.22759178 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,37.52 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.69920979 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6451.022196 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,829.852744 +AL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,81.284804 +AL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,12.82100744 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,148.037256 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.53445734 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.061512222 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,35397.08032 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,220.7760278 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,8806.547137 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,193.3907182 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,11.83055164 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1498.348459 +AL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,59.026 +AL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.587488 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,733.1488205 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,32.04953191 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606184 +AL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,246.4261471 +AL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,238876.809 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,105.2377126 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3530.82042 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,127.004411 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,616.92676 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,117.4353333 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.189210779 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.78593612 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1680.70194 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.25917884 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2257.48494 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,44.47370091 +AL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.1704722 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,564.9839671 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.034557905 +AL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,314.723286 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,213.0963821 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.38797909 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.811142646 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.088616867 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.434379608 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.16206219 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,95.51269309 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,41.63337374 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.840473401 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,33.21663934 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,343.1367731 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1402.933649 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.99515999 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.548846906 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.46273892 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,308.4589636 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,59.04739594 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000961327 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.4435136 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,383.9814778 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.61991888 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,222.4216473 +AL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,14.11087561 +AL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,4.01667 +AL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,284.3517162 +AL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,635.3596352 +AL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,775.0011369 +AL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,26004.93286 +AL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9221.683549 +AL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,727.1071947 +AL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4613.625605 +AL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,556.4840943 +AL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,54.510728 +AL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,63.75998 +AL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,110.1786843 +AL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,55.95624 +AL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,46.2490222 +AL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,77.02061895 +AL,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,2.1996 +AL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0 +AL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.42 +AL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,5185.611714 +AL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1620.450236 +AL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,320.7437823 +AL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,0.0030774 +AL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0 +AL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,28278.9525 +AL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,713.930497 +AL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,450.66011 +AL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,4.800182616 +AL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.482885116 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,225.726 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3605.202719 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3422.9676 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,169.715234 +AL,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.08913 +AL,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.722595 +AL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,23.37 +AL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.2819124 +AL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1948.13398 +AL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,210.6945949 +AL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,36.98285 +AL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,4.88293957 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,29134.97421 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,187.0585401 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1087.979987 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,131.0414449 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.813416345 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,527.6812259 +AL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,22.23 +AL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2764 +AL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,29746.8831 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,173.9784018 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.16955548 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.623304529 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.030116701 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.322781929 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.476035143 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.74201019 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.191404696 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.42480937 +AL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,3.78409 +AL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.67040787 +AL,PM2.5 Filterable,2A1_Cement-production,,TON,424.2856538 +AL,PM2.5 Filterable,2A2_Lime-production,,TON,170.6980627 +AL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2600.493286 +AL,PM2.5 Filterable,2A6_Other-minerals,,TON,1849.724533 +AL,PM2.5 Filterable,2B_Chemicals-other,,TON,471.5171889 +AL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1494.106232 +AL,PM2.5 Filterable,2C3_Aluminum-production,,TON,140.5678942 +AL,PM2.5 Filterable,2C5_Lead-production,,TON,14.523133 +AL,PM2.5 Filterable,2C6_Zinc-production,,TON,30.76998 +AL,PM2.5 Filterable,2C7_Other-metal,,TON,54.66789256 +AL,PM2.5 Filterable,2C7a_Copper-production,,TON,5.42145 +AL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,29.4212568 +AL,PM2.5 Filterable,2D3d_Coating-application,,TON,53.09702312 +AL,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,1.8252 +AL,PM2.5 Filterable,2D3h_Printing,,TON,0 +AL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.42 +AL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2433.639568 +AL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,113.1593969 +AL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,138.4148484 +AL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,0.001277673 +AL,PM2.5 Filterable,2I_Wood-processing,,TON,0 +AL,PM2.5 Filterable,3Dc_Other-farm,,TON,5653.00467 +AL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,228.09821 +AL,PM2.5 Filterable,5C_Incineration,,TON,3.78645763 +AL,PM2.5 Filterable,5C_Incineration,biomass,TON,2.3468703 +AL,PM2.5 Filterable,5C_Open-burning-industrial,,TON,192.188 +AL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2779.250421 +AL,PM2.5 Filterable,5C_Open-burning-residential,,TON,3134.71611 +AL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,130.834037 +AL,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.04913 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.76385869 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,25.99 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.54322979 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4158.659406 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,677.1343565 +AL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,79.576084 +AL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,11.58150701 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,143.5855024 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.36443581 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.060927347 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,30575.08072 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,204.11182 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2146.970784 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,172.6125212 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,11.23168229 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1410.764035 +AL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,57.776 +AL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.373908 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,711.1542724 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.50497055 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606184 +AL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,215.3069525 +AL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,29746.8831 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,72.100104 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1161.822483 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,95.14125 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,181.665642 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,91.1475033 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.727003847 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.266127983 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1347.482976 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.76754907 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1701.45686 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,14.72458304 +AL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.7594076 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,521.9977941 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.031856062 +AL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,300.6702278 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,186.4525061 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.76131593 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.817260545 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.038074955 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.386885566 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.11431251 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,92.64730117 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,38.41381838 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.840473401 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.22014332 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,315.6998542 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1400.359049 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.470458395 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.49119506 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.47880284 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,299.2052022 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,54.32361879 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000961327 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3402035 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,353.2636698 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.97131477 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,204.6279953 +AL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,13.85697081 +AL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,3.78409 +AL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,283.2202141 +AL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,455.2889035 +AL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,451.890931 +AL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2600.493286 +AL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2325.170693 +AL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,671.9205946 +AL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3924.015542 +AL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,549.7684982 +AL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,49.628778 +AL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,62.98998 +AL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,82.98285973 +AL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,49.21329 +AL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,30.8972796 +AL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,56.22937312 +AL,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,1.8252 +AL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0 +AL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.42 +AL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4404.544979 +AL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1443.181204 +AL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,230.8300443 +AL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,0.002261412 +AL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0 +AL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5654.412403 +AL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,465.510208 +AL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,266.07071 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,4.851279517 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.896625145 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,212.914 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2779.250421 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3134.71611 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,130.834037 +AL,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.08913 +AL,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.032 +AL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,3.85 +AL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,27.003175 +AL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,179208.6 +AL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.02 +AL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,83.097 +AL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,471.25448 +AL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1130.47556 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.565556197 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.654766598 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.379542263 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,5693.344568 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,66.6250845 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,30579.21405 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,628.0515111 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,22.190299 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2738.164629 +AL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,12.75 +AL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.34664 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,20.94642092 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.376681777 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000114094 +AL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,77.75160164 +AL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.2931576 +AL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,491.164592 +AL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.96806829 +AL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,88.468287 +AL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.764126077 +AL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.829143956 +AL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.032704656 +AL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,35.88372973 +AL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.267016484 +AL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,45.0673369 +AL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.899535314 +AL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.4302638 +AL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,168.0481081 +AL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004546468 +AL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,762.4718651 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,19.4999679 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.097645189 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,230.3293281 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.902247383 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.353061938 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,26.85190995 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.0617598 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.757435794 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.148089695 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.906849581 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.543502704 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,20.52490374 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,89.40918 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,9.823902 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,13.22622667 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.267643172 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.331324458 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000167254 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.046917835 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.156529775 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.063171292 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.070022726 +AL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,202.9483067 +AL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.86759 +AL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,18905.58936 +AL,Sulfur Dioxide,2A1_Cement-production,,TON,389.142 +AL,Sulfur Dioxide,2A2_Lime-production,,TON,3137.032 +AL,Sulfur Dioxide,2A6_Other-minerals,,TON,1018.23234 +AL,Sulfur Dioxide,2B_Chemicals-other,,TON,6559.2676 +AL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,5294.12708 +AL,Sulfur Dioxide,2C3_Aluminum-production,,TON,35.18103998 +AL,Sulfur Dioxide,2C5_Lead-production,,TON,7951.059 +AL,Sulfur Dioxide,2C6_Zinc-production,,TON,4.6 +AL,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,31.1 +AL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.07758 +AL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,65.054 +AL,Sulfur Dioxide,2D3d_Coating-application,,TON,0.9303 +AL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,4936.8422 +AL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,3.912918 +AL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,68.415888 +AL,Sulfur Dioxide,3Dc_Other-farm,,TON,2.37 +AL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,66.36189141 +AL,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,55.70205 +AL,Sulfur Dioxide,5C_Incineration,,TON,2.249796278 +AL,Sulfur Dioxide,5C_Incineration,biomass,TON,19.02930372 +AL,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.3 +AL,Sulfur Dioxide,5C_Open-burning-residential,,TON,90.078076 +AL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.84210045 +AL,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.00046 +AL,Volatile Organic Compounds,11C_Other-natural,,TON,1718212.36 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,118.084 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,6.01 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.24891 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,740.30916 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,285.14697 +AL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,476.1685454 +AL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,134.1044446 +AL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,141.4490239 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,160.4049312 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,555.2107705 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.055063745 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1490.858101 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,36.06067988 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,46.55374562 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.636767596 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,10.60456574 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1511.873912 +AL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,14.77 +AL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.15263 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,877.9787106 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,361.9445917 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001239604 +AL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,503.5586362 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,660.300864 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,50309.4558 +AL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,434.656514 +AL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8633.2785 +AL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,150.7005593 +AL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,127.2030571 +AL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.889183 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3040.57383 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,72.487499 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2189.86532 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,660.1858268 +AL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1248.78743 +AL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,879.8208491 +AL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.754256015 +AL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,192.3042677 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,14.01137793 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.254945124 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.795612164 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.006434994 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.011084256 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.8576826 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,132.6331161 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1981.399943 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.488435643 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,45.1902247 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7667.328068 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1823.367565 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.46916511 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.161425654 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,121.240533 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,319.1483106 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,590.7224962 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003242923 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.245652 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12626.79559 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,49.18631589 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,16441.07613 +AL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,5301.919968 +AL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1129.807916 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,301.2066478 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1709.377005 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11187.85662 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,11368.98245 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,142.665 +AL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,16485.91946 +AL,Volatile Organic Compounds,2A1_Cement-production,,TON,168.8734 +AL,Volatile Organic Compounds,2A2_Lime-production,,TON,59.787 +AL,Volatile Organic Compounds,2A6_Other-minerals,,TON,120.1044063 +AL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2180.847761 +AL,Volatile Organic Compounds,2B_Chemicals-other,,TON,1774.029398 +AL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1041.488817 +AL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,754.31673 +AL,Volatile Organic Compounds,2C5_Lead-production,,TON,35.7 +AL,Volatile Organic Compounds,2C6_Zinc-production,,TON,10.5 +AL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,806.08433 +AL,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.40835 +AL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,20146.5893 +AL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,84.859 +AL,Volatile Organic Compounds,2D3d_Coating-application,,TON,18230.52373 +AL,Volatile Organic Compounds,2D3e_Degreasing,,TON,3756.82867 +AL,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,13.4850023 +AL,Volatile Organic Compounds,2D3h_Printing,,TON,289.33826 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,434.3446215 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,498.9707185 +AL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,11056.43352 +AL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,576.2298503 +AL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,542.709439 +AL,Volatile Organic Compounds,3Dc_Other-farm,,TON,62.95 +AL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3419.66115 +AL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,313.853264 +AL,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,70.13676 +AL,Volatile Organic Compounds,5C_Incineration,,TON,2.401809265 +AL,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.631849132 +AL,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,9.8 +AL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2460.019913 +AL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,771.06831 +AL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,191.148262 +AL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,88.441425 +AL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,25.83647 +AL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.21 +AR,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.63791 +AR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,190.6769 +AR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,37.6444939 +AR,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,15.07 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.522337377 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.143634308 +AR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,49.5204 +AR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,3.011724 +AR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.727974137 +AR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.129694277 +AR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.179431428 +AR,Ammonia,1A3bii_Road-LDV,light_oil,TON,989.459414 +AR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.1182634 +AR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,170.784808 +AR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.498896098 +AR,Ammonia,1A3biii_Road-bus,light_oil,TON,0.630334941 +AR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.067919976 +AR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,69.53806469 +AR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.239436778 +AR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,47.2503677 +AR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.82554377 +AR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.4742145 +AR,Ammonia,1A3c_Rail,diesel_oil,TON,8.406928743 +AR,Ammonia,1A3c_Rail,light_oil,TON,0.004109097 +AR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.173061415 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,44.1263734 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.540519052 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.105842223 +AR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.162586577 +AR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.37198829 +AR,Ammonia,1A4bi_Residential-stationary,biomass,TON,62.700729 +AR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.084502726 +AR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.095305789 +AR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,334.2471006 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.05797228 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.367309531 +AR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012270629 +AR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.676327705 +AR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.425356403 +AR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.62638385 +AR,Ammonia,2A6_Other-minerals,Other_Fuel,TON,8.306 +AR,Ammonia,2B_Chemicals-other,,TON,85.75 +AR,Ammonia,2C7_Other-metal,Other_Fuel,TON,205.44 +AR,Ammonia,2D3d_Coating-application,,TON,0 +AR,Ammonia,2D3h_Printing,,TON,1.104 +AR,Ammonia,2H1_Pulp-and-paper,,TON,430.53011 +AR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,178.43182 +AR,Ammonia,2I_Wood-processing,,TON,8.69 +AR,Ammonia,3B1a_Cattle-dairy,,TON,705.073314 +AR,Ammonia,3B1b_Cattle-non-dairy,,TON,8693.540983 +AR,Ammonia,3B2_Manure-sheep,,TON,53.341068 +AR,Ammonia,3B3_Manure-swine,,TON,2673.884717 +AR,Ammonia,3B4_Manure-other,,TON,1061.15592 +AR,Ammonia,3B4_Manure-poultry,,TON,64092.17872 +AR,Ammonia,3B4d_Manure-goats,,TON,352.60236 +AR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,40077.75317 +AR,Ammonia,5C_Incineration,biomass,TON,0.069 +AR,Ammonia,5D1_Wastewater-domestic,,TON,10.7702498 +AR,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.003155 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,187434.1667 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,211926.7785 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12997.9292 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,581787.2031 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,10751.69928 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.58669844 +AR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,198549.8767 +AR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12166690.84 +AR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,185924.769 +AR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2399418.53 +AR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,96858.0172 +AR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,19216.18203 +AR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2925.53188 +AR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3797159.361 +AR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,33834.97392 +AR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3374821.34 +AR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,195399.525 +AR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,84651.607 +AR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6862.98558 +AR,Carbon Dioxide,1A3c_Rail,light_oil,TON,318.844599 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66422.85151 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,91719.70356 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4025.186445 +AR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,19996.05702 +AR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,175414.6075 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1237472.694 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,26934.83012 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,28.34512729 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1502.1489 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,173032.5122 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,52380.03593 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,181834.1426 +AR,Carbon Monoxide,11C_Other-natural,,TON,172130.96 +AR,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,142.407 +AR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,67.80497989 +AR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3531.946 +AR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.29675 +AR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1210.252797 +AR,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,181.0386019 +AR,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.45686375 +AR,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,15.465 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,880.6530981 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10343.43476 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,603.168458 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9004.716065 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.47057865 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,884.8079524 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,93.29461183 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3740.871751 +AR,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,32.9286 +AR,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.05 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2424.89044 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2597.388245 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.186469465 +AR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6574.124837 +AR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2711.25757 +AR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,243453.343 +AR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1696.6944 +AR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,55207.149 +AR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,263.8576898 +AR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1040.653767 +AR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,19.4659756 +AR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9262.169937 +AR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1133.077565 +AR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5996.19557 +AR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6300.505536 +AR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3386.26131 +AR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2733.390201 +AR,Carbon Monoxide,1A3c_Rail,light_oil,TON,85.69756171 +AR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,365.3578254 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,170.9719 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.4572136 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.55183499 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,352.0232559 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,22750.35483 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,94.82552904 +AR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,81.94275071 +AR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,49301.9678 +AR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,7848.544226 +AR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.42251377 +AR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.476529175 +AR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,961.0923404 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5473.606288 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7763.327257 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.117664499 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.521167 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35587.83772 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,104.729761 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,24700.15905 +AR,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1524.033484 +AR,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,21.21 +AR,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6910.297761 +AR,Carbon Monoxide,2A1_Cement-production,,TON,647.43 +AR,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,50.067 +AR,Carbon Monoxide,2A6_Other-minerals,,TON,214.6539 +AR,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,412.080164 +AR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4021.33761 +AR,Carbon Monoxide,2C3_Aluminum-production,,TON,48.99715 +AR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,424.7684314 +AR,Carbon Monoxide,2C7a_Copper-production,,TON,36.6272 +AR,Carbon Monoxide,2D3d_Coating-application,,TON,7.853 +AR,Carbon Monoxide,2D3h_Printing,,TON,1.63215 +AR,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,2.2 +AR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,12779.59306 +AR,Carbon Monoxide,2H2_Food-and-beverage,,TON,8.3183566 +AR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,78.7969 +AR,Carbon Monoxide,2I_Wood-processing,,TON,179.93 +AR,Carbon Monoxide,3Dc_Other-farm,,TON,0.222 +AR,Carbon Monoxide,3F_Ag-res-on-field,,TON,74423.67112 +AR,Carbon Monoxide,5A_Solid-waste-disposal,,TON,171.22499 +AR,Carbon Monoxide,5C_Incineration,,TON,0.034418404 +AR,Carbon Monoxide,5C_Incineration,biomass,TON,101.4206503 +AR,Carbon Monoxide,5C_Open-burning-industrial,,TON,1.67 +AR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,17605.33019 +AR,Carbon Monoxide,5C_Open-burning-residential,,TON,5197.1129 +AR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,665.665652 +AR,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.09933707 +AR,Methane,1A3bii_Road-LDV,light_oil,TON,614.480219 +AR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.62537554 +AR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,162.28042 +AR,Methane,1A3biii_Road-bus,diesel_oil,TON,1.956251778 +AR,Methane,1A3biii_Road-bus,light_oil,TON,2.243720595 +AR,Methane,1A3biii_Road-bus,natural_gas,TON,18.6157673 +AR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,401.7568305 +AR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.018179777 +AR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,46.9793818 +AR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.54385278 +AR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.3405252 +AR,Nitrogen Oxides,11C_Other-natural,,TON,25331.468 +AR,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,367.06 +AR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,77.20423819 +AR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,29840.3 +AR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,10.74 +AR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2167.569966 +AR,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,184.615309 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,1.7218623 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,2.6325 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1282.049738 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1286.033742 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,89.06294093 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4738.372853 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,57.65782587 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6751.853897 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,313.9866656 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,13850.98688 +AR,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,46.5972 +AR,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.18 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4382.542462 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,42.61719174 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.037908387 +AR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,332.4134155 +AR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,702.414053 +AR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,30099.2892 +AR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,794.85151 +AR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6911.2239 +AR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,703.236743 +AR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,85.66704774 +AR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,12.4408998 +AR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,31059.01703 +AR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,145.6128689 +AR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19925.46928 +AR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,611.936235 +AR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,164.178147 +AR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19068.74786 +AR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.209564997 +AR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1797.396286 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,62.673 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.21873 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,449.6172438 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,607.5043093 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,384.5057971 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,25.20213286 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,181.764725 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,546.3960392 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,129.9364877 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.52104924 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.71550435 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2091.598605 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11017.75149 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,124.4139518 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.695485525 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.699443 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,350.3842976 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,588.2314865 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1184.656781 +AR,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,3605.325268 +AR,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.242 +AR,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7962.843809 +AR,Nitrogen Oxides,2A1_Cement-production,,TON,1080.45 +AR,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,503.42 +AR,Nitrogen Oxides,2A6_Other-minerals,,TON,341.5949 +AR,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,1450.967738 +AR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,740.598298 +AR,Nitrogen Oxides,2C3_Aluminum-production,,TON,95.6642 +AR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,74.15290256 +AR,Nitrogen Oxides,2C7a_Copper-production,,TON,1.4587 +AR,Nitrogen Oxides,2D3d_Coating-application,,TON,9.9672 +AR,Nitrogen Oxides,2D3h_Printing,,TON,1.93905 +AR,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,3.66 +AR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,4681.621185 +AR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,12.7262001 +AR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,26.3107 +AR,Nitrogen Oxides,2I_Wood-processing,,TON,115.4 +AR,Nitrogen Oxides,3Dc_Other-farm,,TON,0.262 +AR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3673.416026 +AR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,56.57 +AR,Nitrogen Oxides,5C_Incineration,,TON,3.190394871 +AR,Nitrogen Oxides,5C_Incineration,biomass,TON,250.4303869 +AR,Nitrogen Oxides,5C_Open-burning-industrial,,TON,9.82 +AR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,520.8676125 +AR,Nitrogen Oxides,5C_Open-burning-residential,,TON,366.85503 +AR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,29.5851327 +AR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.576665243 +AR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,582.175095 +AR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.60129179 +AR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,141.279086 +AR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.216947202 +AR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.820303233 +AR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.153476597 +AR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.031442683 +AR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.957143062 +AR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.56572396 +AR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10.92997636 +AR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.11343735 +AR,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,113.89 +AR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.123500643 +AR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1778.836 +AR,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,5.39691 +AR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,124.5582416 +AR,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,33.7017551 +AR,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.02924746 +AR,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.14646347 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1988.713661 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.727842701 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,368.0891579 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,286.827958 +AR,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,27.0628 +AR,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,10.0548 +AR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,202253.1126 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,100.5423 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.004767301 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.804146961 +AR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.091262953 +AR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.102930271 +AR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.03017349 +AR,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.4987263 +AR,PM10 Filterable,2A1_Cement-production,,TON,34.911304 +AR,PM10 Filterable,2A2_Lime-production,,TON,34.13784957 +AR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,15189.81038 +AR,PM10 Filterable,2A6_Other-minerals,,TON,4863.851137 +AR,PM10 Filterable,2B_Chemicals-other,,TON,1015.558661 +AR,PM10 Filterable,2C_Iron-steel-alloy,,TON,171.1268479 +AR,PM10 Filterable,2C3_Aluminum-production,,TON,5.56642501 +AR,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,124.7263461 +AR,PM10 Filterable,2C7a_Copper-production,,TON,2.49234 +AR,PM10 Filterable,2D3d_Coating-application,,TON,3.5653 +AR,PM10 Filterable,2D3h_Printing,,TON,0.146475 +AR,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.2 +AR,PM10 Filterable,2H1_Pulp-and-paper,,TON,1669.437506 +AR,PM10 Filterable,2H2_Food-and-beverage,,TON,93.46465099 +AR,PM10 Filterable,2H3_Other-industrial-processes,,TON,270.100938 +AR,PM10 Filterable,2I_Wood-processing,,TON,25.7735663 +AR,PM10 Filterable,3Dc_Other-farm,,TON,135696.8003 +AR,PM10 Filterable,5A_Solid-waste-disposal,,TON,61 +AR,PM10 Filterable,5C_Incineration,,TON,0.0108035 +AR,PM10 Filterable,5C_Incineration,biomass,TON,29.358554 +AR,PM10 Filterable,5C_Open-burning-industrial,,TON,97.162 +AR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1770.950074 +AR,PM10 Filterable,5C_Open-burning-residential,,TON,2323.4156 +AR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,110.231021 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,115.8872 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.047433557 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1849.678 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.31777 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,233.343882 +AR,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,72.7205654 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.03893975 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.6 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,104.9402734 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,21.98911707 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.601372678 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2062.159165 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.356853602 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,377.4340496 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.486321478 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,402.871564 +AR,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,40.03236 +AR,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,26.46 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,375.799548 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.81177994 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +AR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,143.6774654 +AR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,202253.1126 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,49.7230394 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1629.15833 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,62.57706 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,322.993085 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,52.6824859 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.018778353 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.354318247 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1441.628592 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.88581946 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1376.152984 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,20.08681799 +AR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.8653241 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,619.3721112 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.044278821 +AR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,59.40428605 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,105.7217 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.13435724 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.767062505 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,58.28942403 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,25.39905853 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.504738487 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,13.8557257 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,158.308225 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1148.346715 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.201116596 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.226827852 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.47845298 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,966.5179256 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,41.25090843 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003583238 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.0810736 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,389.4351505 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.773595 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,121.141302 +AR,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,148.6245357 +AR,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,354.3164572 +AR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,35.159314 +AR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,51.0891 +AR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,15189.81038 +AR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4879.68824 +AR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1050.008077 +AR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,253.7525925 +AR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,30.89899549 +AR,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.03 +AR,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,133.2342793 +AR,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,8.90122 +AR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,8.15 +AR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.146475 +AR,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.2 +AR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2309.745391 +AR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,929.3020552 +AR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,272.016149 +AR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,25.7735663 +AR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,135697.9956 +AR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,9774.641109 +AR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,65.28 +AR,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.011421307 +AR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,31.77506282 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,100.26 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1770.950074 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2323.4156 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,110.231021 +AR,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.5545425 +AR,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,66.5708 +AR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.09344573 +AR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,596.9867 +AR,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,5.39691 +AR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,124.3835815 +AR,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,32.0358691 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.007019383 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.12153324 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1438.61666 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.644343219 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,96.80918866 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,206.4481225 +AR,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,25.37137 +AR,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,9.4263725 +AR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,22821.6337 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,84.90234 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.004165634 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.707952281 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.070137227 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.079103805 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.216595475 +AR,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.4138369 +AR,PM2.5 Filterable,2A1_Cement-production,,TON,12.32163389 +AR,PM2.5 Filterable,2A2_Lime-production,,TON,10.08369766 +AR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1518.981038 +AR,PM2.5 Filterable,2A6_Other-minerals,,TON,679.5310407 +AR,PM2.5 Filterable,2B_Chemicals-other,,TON,752.4901988 +AR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,144.3932268 +AR,PM2.5 Filterable,2C3_Aluminum-production,,TON,4.60605638 +AR,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,96.12800257 +AR,PM2.5 Filterable,2C7a_Copper-production,,TON,2.221434 +AR,PM2.5 Filterable,2D3d_Coating-application,,TON,2.95843984 +AR,PM2.5 Filterable,2D3h_Printing,,TON,0.121543 +AR,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.1659574 +AR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1083.926305 +AR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,27.79204939 +AR,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,179.5593965 +AR,PM2.5 Filterable,2I_Wood-processing,,TON,7.58723363 +AR,PM2.5 Filterable,3Dc_Other-farm,,TON,27135.86763 +AR,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,16.1184123 +AR,PM2.5 Filterable,5C_Incineration,,TON,0.00869434 +AR,PM2.5 Filterable,5C_Incineration,biomass,TON,16.7728665 +AR,PM2.5 Filterable,5C_Open-burning-industrial,,TON,91.0893 +AR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1365.225999 +AR,PM2.5 Filterable,5C_Open-burning-residential,,TON,2127.75932 +AR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,84.977496 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,68.568 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.017378692 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,667.8299 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.31777 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,233.1692217 +AR,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,71.0546794 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.01671171 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.57506977 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,101.7835083 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,21.85403752 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.601000104 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1512.186331 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.278037075 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,105.7021216 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.509178681 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,322.79093 +AR,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,38.34091 +AR,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,25.8315695 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,364.5255796 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,15.47698397 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +AR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,116.1902287 +AR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,22821.6337 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,33.78489725 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,514.136701 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,46.3250525 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,97.619249 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,41.23361367 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.479746269 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.130881821 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1181.350523 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.082149991 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1048.772046 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.43486389 +AR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.7488066 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,573.7905757 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.040816826 +AR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,57.62215869 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,90.08184 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.133755573 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.670867822 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,56.54075088 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,23.43494072 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.504738487 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,13.44006023 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,145.6493834 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1146.471018 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.179990817 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.20300138 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.664871985 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,937.5222092 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,37.95103714 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003583238 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.0186407 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,358.2807954 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.42038628 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,111.4499842 +AR,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,145.4022626 +AR,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,354.2315676 +AR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,12.56964371 +AR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,27.03495323 +AR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1518.981038 +AR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,695.3681381 +AR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,786.9396223 +AR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,227.0190707 +AR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,29.93862006 +AR,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.03 +AR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,104.6359202 +AR,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,8.63031 +AR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,7.54313984 +AR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.121543 +AR,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.1659574 +AR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1724.233489 +AR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,805.6719722 +AR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,181.4746075 +AR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,7.58723363 +AR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,27137.06297 +AR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,7291.514108 +AR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,20.3984123 +AR,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.009411705 +AR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,19.18923575 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,94.1874 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1365.225999 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2127.75932 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,84.977496 +AR,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.5545425 +AR,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,90.27424 +AR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,5.627041247 +AR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,58439.4 +AR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,60.4 +AR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,31.84673968 +AR,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,42.37450647 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.03209525 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,247.352 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.938830877 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.198705279 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.293907108 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1892.134467 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.08374286 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,18501.75793 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,34.70163401 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,230.4763622 +AR,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,8.409126 +AR,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,10.85579111 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.197389134 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.70471E-05 +AR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,51.56105849 +AR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.702351137 +AR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,240.454797 +AR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.60083881 +AR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.4206165 +AR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.8306637 +AR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.379776717 +AR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.015489202 +AR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.62645607 +AR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.668693578 +AR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.8913394 +AR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.861752105 +AR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.67300256 +AR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,188.6036036 +AR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005825145 +AR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,22.08727085 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7.11717 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.148524737 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.90626899 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.258150385 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.682740014 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.089000073 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.378305689 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.196767333 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,18.54236302 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3.5998173 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,4.0600275 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,12.09051632 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.25467584 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.490674293 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000623404 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.028359621 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.138349812 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.123538702 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.306019296 +AR,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,5.119770821 +AR,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,20.82716834 +AR,Sulfur Dioxide,2A1_Cement-production,,TON,440 +AR,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,26.151 +AR,Sulfur Dioxide,2A6_Other-minerals,,TON,91.1698 +AR,Sulfur Dioxide,2B_Chemicals-other,,TON,266.1379169 +AR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,827.4443962 +AR,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.3904925 +AR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,204.2348671 +AR,Sulfur Dioxide,2D3d_Coating-application,,TON,0.3084 +AR,Sulfur Dioxide,2D3h_Printing,,TON,0.0116204 +AR,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.04 +AR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2102.068671 +AR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.08474667 +AR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1254.62 +AR,Sulfur Dioxide,2I_Wood-processing,,TON,4.72 +AR,Sulfur Dioxide,3Dc_Other-farm,,TON,0.003 +AR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1721.087302 +AR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,2.13 +AR,Sulfur Dioxide,5C_Incineration,,TON,0.034926308 +AR,Sulfur Dioxide,5C_Incineration,biomass,TON,19.82296744 +AR,Sulfur Dioxide,5C_Open-burning-residential,,TON,61.142515 +AR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.39250319 +AR,Volatile Organic Compounds,11C_Other-natural,,TON,1461600.19 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,9.06472 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.322661892 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,363.176 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.269724 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,65.76343134 +AR,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,7.336875653 +AR,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,944.7235252 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.06753 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,9.3586 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,113.1634964 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,418.0633089 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.525093372 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,528.383036 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.192423706 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,99.59561104 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,12.29453722 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,735.0703254 +AR,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,14.29889 +AR,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.232 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,445.7098643 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,189.7671897 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000619801 +AR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,238.7691045 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,262.765462 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,21069.8626 +AR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,221.276824 +AR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4320.7554 +AR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,68.3321161 +AR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,56.3128542 +AR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.21384465 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3194.353248 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,35.17270165 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1283.022405 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,288.0102663 +AR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,586.85582 +AR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,991.2896337 +AR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.50957215 +AR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,41.11815176 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.83287 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.15881447 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.74459201 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,80.94257245 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1205.227504 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.296546243 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,18.85151546 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3835.211308 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1485.046131 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.059151918 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.066714084 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,110.8297272 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1009.541573 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,570.607183 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.012084787 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.7747046 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12660.34675 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.78544011 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8777.977328 +AR,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,2877.53318 +AR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1237.965774 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,146.0391906 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,2270.373639 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,14585.48332 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8273.928672 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,141.73 +AR,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9756.756588 +AR,Volatile Organic Compounds,2A1_Cement-production,,TON,71.427 +AR,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,3.772 +AR,Volatile Organic Compounds,2A6_Other-minerals,,TON,67.55691601 +AR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1121.570024 +AR,Volatile Organic Compounds,2B_Chemicals-other,,TON,735.9999604 +AR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,245.7039646 +AR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,772.700975 +AR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,98.8733473 +AR,Volatile Organic Compounds,2C7a_Copper-production,,TON,3.77862 +AR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12290.59229 +AR,Volatile Organic Compounds,2D3d_Coating-application,,TON,10283.66503 +AR,Volatile Organic Compounds,2D3e_Degreasing,,TON,158.022 +AR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,7.7700002 +AR,Volatile Organic Compounds,2D3h_Printing,,TON,263.4047 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,432.8129384 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,288.7188506 +AR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,12869.69481 +AR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,895.9086779 +AR,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1445.864286 +AR,Volatile Organic Compounds,2I_Wood-processing,,TON,207.21631 +AR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.015 +AR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,11036.03201 +AR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,5987.199333 +AR,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,39.116 +AR,Volatile Organic Compounds,5C_Incineration,,TON,0.007769282 +AR,Volatile Organic Compounds,5C_Incineration,biomass,TON,20.00680228 +AR,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,6.65 +AR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1208.413181 +AR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,523.37976 +AR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,124.151893 +AR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,54.169897 +AR,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,17.4064452 +AR,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,4.44 +AZ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,397.89569 +AZ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,157.230091 +AZ,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,0.48 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.750326229 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.110460701 +AZ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.49284464 +AZ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,40.9742712 +AZ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,20.26206649 +AZ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.556118667 +AZ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.03667218 +AZ,Ammonia,1A3bii_Road-LDV,light_oil,TON,1796.372084 +AZ,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.2998675 +AZ,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,280.156039 +AZ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.559968851 +AZ,Ammonia,1A3biii_Road-bus,light_oil,TON,1.571099139 +AZ,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.154224269 +AZ,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,89.97876081 +AZ,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.613747 +AZ,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,67.7112694 +AZ,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,18.33142674 +AZ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.8083599 +AZ,Ammonia,1A3c_Rail,diesel_oil,TON,11.36865613 +AZ,Ammonia,1A3c_Rail,light_oil,TON,0.003911855 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.415001765 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00492544 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00624571 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.60350405 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.014761319 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.07605754 +AZ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.862186337 +AZ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.703287132 +AZ,Ammonia,1A4bi_Residential-stationary,biomass,TON,141.3763096 +AZ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.071311015 +AZ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.006941695 +AZ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,348.5655673 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.125307723 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.031046674 +AZ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02464827 +AZ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.194048498 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.394614193 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.436755005 +AZ,Ammonia,2A1_Cement-production,,TON,2.271636 +AZ,Ammonia,2A6_Other-minerals,,TON,16.77892 +AZ,Ammonia,2B_Chemicals-other,,TON,1062.012 +AZ,Ammonia,2C7_Other-metal,Other_Fuel,TON,7.247431 +AZ,Ammonia,2C7a_Copper-production,,TON,1 +AZ,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,7.54 +AZ,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,1911.36 +AZ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,59.818015 +AZ,Ammonia,3B1a_Cattle-dairy,,TON,18185.40414 +AZ,Ammonia,3B1b_Cattle-non-dairy,,TON,4484.956727 +AZ,Ammonia,3B2_Manure-sheep,,TON,537.67824 +AZ,Ammonia,3B3_Manure-swine,,TON,1367.451743 +AZ,Ammonia,3B4_Manure-other,,TON,922.0464 +AZ,Ammonia,3B4_Manure-poultry,,TON,1195.416864 +AZ,Ammonia,3B4d_Manure-goats,,TON,293.27232 +AZ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,6261.120049 +AZ,Ammonia,5D1_Wastewater-domestic,,TON,24.5180852 +AZ,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,4.06432 +AZ,Ammonia,6A_Other-commertial,Other_Fuel,TON,1135.65 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,215499.4866 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,187710.5084 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10669.76859 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2493288.404 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,46121.36751 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,11.64016282 +AZ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,329176.1895 +AZ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22475990.11 +AZ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,309503.994 +AZ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3928746.46 +AZ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,307539.0083 +AZ,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,50074.48085 +AZ,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,6610.93135 +AZ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4927555.839 +AZ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,74163.53678 +AZ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4721604.28 +AZ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,565638.8534 +AZ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,308743.436 +AZ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6552.66313 +AZ,Carbon Dioxide,1A3c_Rail,light_oil,TON,303.3847186 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,124701.1503 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,172199.4828 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7704.725568 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,106037.8479 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,644001.5127 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,138441.3955 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2320.801996 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.335914231 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3017.4028 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,144859.8874 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,48594.38747 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,168705.4488 +AZ,Carbon Monoxide,11C_Other-natural,,TON,389618.14 +AZ,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.03 +AZ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,207.777 +AZ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,15.79040599 +AZ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,10421.3284 +AZ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1289.496883 +AZ,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,11.571915 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2497.7331 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9197.828871 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,552.5622857 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.00903054 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,437.106674 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,91.15407474 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.515270231 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1224.834969 +AZ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.773 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,10391.60328 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,11168.36479 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.839112967 +AZ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13396.69209 +AZ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6066.18236 +AZ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,420431.499 +AZ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3016.84325 +AZ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,85667.822 +AZ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,764.9293481 +AZ,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1857.319474 +AZ,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,46.8135289 +AZ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11224.19486 +AZ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1711.214722 +AZ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7824.12926 +AZ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12702.1248 +AZ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12079.48707 +AZ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3590.020492 +AZ,Carbon Monoxide,1A3c_Rail,light_oil,TON,86.12663149 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,479.186003 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.576203398 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.2909827 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.964731415 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,779.5656604 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,660.8439418 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,42812.55966 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,179.7940235 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,434.4742964 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,176448.3791 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,17125.77472 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.356554575 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.034708524 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,934.407652 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,629.7532433 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,645.3505844 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.366973459 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.166401 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,29045.08606 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,97.16085136 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,24379.49232 +AZ,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.8914846 +AZ,Carbon Monoxide,2A1_Cement-production,,TON,56.5969552 +AZ,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,233.9191 +AZ,Carbon Monoxide,2A6_Other-minerals,,TON,3192.783277 +AZ,Carbon Monoxide,2B_Chemicals-other,,TON,2.636 +AZ,Carbon Monoxide,2C_Iron-steel-alloy,,TON,454.1535 +AZ,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,98.3633 +AZ,Carbon Monoxide,2C7a_Copper-production,,TON,74.9346 +AZ,Carbon Monoxide,2D3d_Coating-application,Other_Fuel,TON,1.06422 +AZ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.36787 +AZ,Carbon Monoxide,2H2_Food-and-beverage,,TON,688.5096244 +AZ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,94.82862 +AZ,Carbon Monoxide,3Dc_Other-farm,Other_Fuel,TON,1.6552 +AZ,Carbon Monoxide,3F_Ag-res-on-field,,TON,5930.981035 +AZ,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,12.94993015 +AZ,Carbon Monoxide,5C_Incineration,biomass,TON,3.09962642 +AZ,Carbon Monoxide,5C_Open-burning-dump,,TON,0.205 +AZ,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,10285.02866 +AZ,Carbon Monoxide,5C_Open-burning-residential,,TON,1970.9092 +AZ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,86.293581 +AZ,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,77.9263 +AZ,Methane,1A3bii_Road-LDV,diesel_oil,TON,10.02560699 +AZ,Methane,1A3bii_Road-LDV,light_oil,TON,862.010907 +AZ,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.4132712 +AZ,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,204.893357 +AZ,Methane,1A3biii_Road-bus,diesel_oil,TON,6.065951925 +AZ,Methane,1A3biii_Road-bus,light_oil,TON,3.150781154 +AZ,Methane,1A3biii_Road-bus,natural_gas,TON,47.305931 +AZ,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,623.10535 +AZ,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.351575935 +AZ,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,88.7059685 +AZ,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,19.00179312 +AZ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.8758559 +AZ,Nitrogen Oxides,11C_Other-natural,,TON,14234.169 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.04 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,210.961 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,65.43994248 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,52592.26 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2402.701733 +AZ,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,10.31292 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1645.908989 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1177.045174 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,80.08107665 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.007006201 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2003.140408 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2164.045307 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.94353626 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4146.854613 +AZ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,8.242 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,18781.41329 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,174.797 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.170587699 +AZ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2995.46599 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1306.641787 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,50661.0404 +AZ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1483.60861 +AZ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10620.0251 +AZ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2116.536852 +AZ,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,167.2261021 +AZ,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,33.5289588 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,39956.45374 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,237.2249764 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,25523.87564 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1284.538465 +AZ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,625.114243 +AZ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,24189.17577 +AZ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.070179811 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,176.0343075 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.7684942 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.034188683 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.385842075 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1269.087783 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1140.51568 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,688.102928 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,47.67147011 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,963.8791905 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1858.374397 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,287.0961686 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.28359632 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.124950659 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2110.872709 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1260.636248 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.54345784 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.081870252 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.527381 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,249.4983191 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,545.7189985 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,994.623957 +AZ,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.5171147 +AZ,Nitrogen Oxides,2A1_Cement-production,,TON,88.5110626 +AZ,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1091.193 +AZ,Nitrogen Oxides,2A6_Other-minerals,,TON,2512.65395 +AZ,Nitrogen Oxides,2B_Chemicals-other,,TON,137.75894 +AZ,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,31.9145 +AZ,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,15.0192 +AZ,Nitrogen Oxides,2C7a_Copper-production,,TON,277.4889 +AZ,Nitrogen Oxides,2D3d_Coating-application,Other_Fuel,TON,1.26692 +AZ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.437925 +AZ,Nitrogen Oxides,2H2_Food-and-beverage,,TON,15.1347 +AZ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,248.3922 +AZ,Nitrogen Oxides,3Dc_Other-farm,Other_Fuel,TON,2.493965 +AZ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,265.8575814 +AZ,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,35.499025 +AZ,Nitrogen Oxides,5C_Incineration,biomass,TON,21.54006205 +AZ,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,304.4006 +AZ,Nitrogen Oxides,5C_Open-burning-residential,,TON,139.12296 +AZ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.835269 +AZ,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,22.1935 +AZ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.901925933 +AZ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1051.009863 +AZ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.94975245 +AZ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,206.102241 +AZ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.627616984 +AZ,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.512117093 +AZ,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.390276647 +AZ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.172858101 +AZ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.424514273 +AZ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.2356547 +AZ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.63134683 +AZ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.14291163 +AZ,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,78.5731 +AZ,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.717031796 +AZ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2798.00955 +AZ,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,19.70257306 +AZ,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.49 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.00576 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,135.0550844 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,87.4635 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.980609 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,73.24450175 +AZ,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.51216 +AZ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,93838.2912 +AZ,PM10 Filterable,1A3c_Rail,diesel_oil,TON,37.52970233 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,418.1431398 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.548511641 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.042244716 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.028680552 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.00547252 +AZ,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,25.166 +AZ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.077015854 +AZ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.007497041 +AZ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,28.85702133 +AZ,PM10 Filterable,2A1_Cement-production,,TON,138.5918579 +AZ,PM10 Filterable,2A2_Lime-production,,TON,10.37222902 +AZ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,52761.69267 +AZ,PM10 Filterable,2A6_Other-minerals,,TON,63741.39988 +AZ,PM10 Filterable,2B_Chemicals-other,,TON,234.7275816 +AZ,PM10 Filterable,2C_Iron-steel-alloy,,TON,20.6175 +AZ,PM10 Filterable,2C7_Other-metal,,TON,395.4666543 +AZ,PM10 Filterable,2C7a_Copper-production,,TON,379.1798 +AZ,PM10 Filterable,2D3d_Coating-application,,TON,0 +AZ,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,59.69883 +AZ,PM10 Filterable,2H2_Food-and-beverage,,TON,198.3638133 +AZ,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1735.31695 +AZ,PM10 Filterable,3Dc_Other-farm,,TON,21895.51097 +AZ,PM10 Filterable,3F_Ag-res-on-field,,TON,43.5625 +AZ,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,208.6942251 +AZ,PM10 Filterable,5C_Incineration,biomass,TON,3.7032188 +AZ,PM10 Filterable,5C_Open-burning-dump,,TON,0.067837 +AZ,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1035.06784 +AZ,PM10 Filterable,5C_Open-burning-residential,,TON,881.11343 +AZ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.2897958 +AZ,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,26.7064 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,78.5731 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.624911585 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5961.5742 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,283.5412685 +AZ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,1.173465 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,124.8257896 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.48089301 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.386459235 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.006019632 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,141.4776592 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,96.42928821 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.489858929 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,365.6086166 +AZ,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.582 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1610.488669 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,72.05427553 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001363915 +AZ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,303.8047637 +AZ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,93838.2912 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,87.35351936 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3083.49691 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,111.30736 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,543.138277 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,149.1853449 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.904372116 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.840366817 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1786.382418 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,9.27227204 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1856.735848 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,56.30673428 +AZ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.4527292 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,795.4897652 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.042140723 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,426.635171 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.338885523 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.103619734 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.041054601 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,70.1852002 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,109.4266721 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,47.68657565 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.96704504 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,73.466846 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,670.7172553 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2473.718497 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.169720083 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.016521237 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,75.02829289 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,111.0683269 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.047415972 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000421693 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.1804817 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,267.6597273 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.92275671 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,112.3947028 +AZ,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.21230712 +AZ,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,140.2522334 +AZ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,15.56870901 +AZ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,52761.69267 +AZ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,63766.55 +AZ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,239.3345816 +AZ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,40.45500991 +AZ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,404.1906464 +AZ,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,466.4486 +AZ,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +AZ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,72.22042 +AZ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2021.083216 +AZ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1805.044365 +AZ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.002165 +AZ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,21895.54951 +AZ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,842.393431 +AZ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,228.1795603 +AZ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.168725355 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.07 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1035.06784 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,881.11343 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.2897958 +AZ,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,26.7064 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.076749359 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1413.90166 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,15.53202156 +AZ,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.49 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.00486208 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,124.8891325 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,82.1945 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.831386 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,71.70823996 +AZ,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.291737 +AZ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,12344.0785 +AZ,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,36.40379631 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,359.0166384 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.582628348 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.618360138 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.026737826 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.2802494 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,25.166 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.059188087 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.005761608 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,27.78415675 +AZ,PM2.5 Filterable,2A1_Cement-production,,TON,89.50183342 +AZ,PM2.5 Filterable,2A2_Lime-production,,TON,3.681436191 +AZ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,5276.169267 +AZ,PM2.5 Filterable,2A6_Other-minerals,,TON,8660.653941 +AZ,PM2.5 Filterable,2B_Chemicals-other,,TON,155.5180754 +AZ,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.0555 +AZ,PM2.5 Filterable,2C7_Other-metal,,TON,146.9097418 +AZ,PM2.5 Filterable,2C7a_Copper-production,,TON,373.7257 +AZ,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +AZ,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,52.77756352 +AZ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,66.21228464 +AZ,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1307.670253 +AZ,PM2.5 Filterable,3Dc_Other-farm,,TON,3983.920508 +AZ,PM2.5 Filterable,3F_Ag-res-on-field,,TON,43.5625 +AZ,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,73.86051023 +AZ,PM2.5 Filterable,5C_Incineration,biomass,TON,3.23593573 +AZ,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.0386413 +AZ,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,798.18822 +AZ,PM2.5 Filterable,5C_Open-burning-residential,,TON,806.91442 +AZ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,11.0160536 +AZ,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,14.4383 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,78.5731 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.984579758 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4577.4652 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,278.613831 +AZ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,1.15182 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,121.0050291 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.32799893 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.382773735 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.005128291 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,130.9777239 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,91.31251198 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.342642447 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,161.7126226 +AZ,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.361577 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1562.175249 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,66.33351368 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001363915 +AZ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,255.5412405 +AZ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,12344.0785 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,58.86338459 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,906.063544 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,82.699398 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,154.816621 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,115.0926533 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.206081464 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.358725257 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1430.429117 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.526384389 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1354.846592 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,20.74395692 +AZ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.8527867 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,736.3144676 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038844805 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,367.4036648 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.308883103 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.69577232 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.039120577 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,70.49022028 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,106.1439216 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,43.99893504 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.96704504 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,71.26284618 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,617.0911387 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2470.653971 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.151892427 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.014785834 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,73.95542884 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,107.7363008 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.963632318 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000421693 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.055064 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,246.2481845 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.59506884 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,103.4030336 +AZ,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.21230712 +AZ,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,91.16220892 +AZ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,8.877933355 +AZ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5276.169267 +AZ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,8677.372587 +AZ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,160.1648854 +AZ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,19.53699991 +AZ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,155.6337414 +AZ,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,460.9945 +AZ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +AZ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,65.29498142 +AZ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1810.746331 +AZ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1352.560569 +AZ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.001725 +AZ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3983.959044 +AZ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,557.323682 +AZ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,81.88342043 +AZ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.701442285 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0408043 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,798.18822 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,806.91442 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.0160536 +AZ,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,14.4383 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,66.2339 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,12.88594802 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,30881.49 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,64.03774419 +AZ,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.50075 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.779081121 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.418704287 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.29638005 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.000400258 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.736755503 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2897.318824 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.385893927 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,18.79287613 +AZ,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.541 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,46.52327788 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.493859995 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000256712 +AZ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,361.9781797 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.827915767 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,277.85637 +AZ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.67351439 +AZ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,50.9437994 +AZ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.635803401 +AZ,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.567946772 +AZ,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.035001471 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,42.14444848 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.938608236 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,40.2091786 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.017444405 +AZ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.8079023 +AZ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,375.5938714 +AZ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005056263 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,27.01830384 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.978673381 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.480553692 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.65447876 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.362028243 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.738542994 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.17035984 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.00612375 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.870749033 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,46.21812619 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3.0378467 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.295716622 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,12.58619753 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.604418605 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.035091174 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.33679E-05 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.056966854 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.272039065 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.042338734 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2.944363846 +AZ,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.008706392 +AZ,Sulfur Dioxide,2A1_Cement-production,,TON,0.155136798 +AZ,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1993.364 +AZ,Sulfur Dioxide,2A6_Other-minerals,,TON,87.334453 +AZ,Sulfur Dioxide,2B_Chemicals-other,,TON,0.5218 +AZ,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,27.8145 +AZ,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,8.03211 +AZ,Sulfur Dioxide,2C7a_Copper-production,,TON,31864.525 +AZ,Sulfur Dioxide,2D3d_Coating-application,Other_Fuel,TON,0.007515 +AZ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.002626092 +AZ,Sulfur Dioxide,2H2_Food-and-beverage,,TON,547.924394 +AZ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,40.763192 +AZ,Sulfur Dioxide,3Dc_Other-farm,Other_Fuel,TON,0.0263 +AZ,Sulfur Dioxide,3F_Ag-res-on-field,,TON,142.7601632 +AZ,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,9.32647 +AZ,Sulfur Dioxide,5C_Incineration,biomass,TON,3.9061134 +AZ,Sulfur Dioxide,5C_Open-burning-residential,,TON,23.187164 +AZ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.82869261 +AZ,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,63.5267 +AZ,Volatile Organic Compounds,11C_Other-natural,,TON,2102964.5 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.01 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.32945 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.94002063 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,375.73522 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,124.8533904 +AZ,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,21.24938637 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,180.7038871 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,377.3927583 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.167601333 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.030458037 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,12.78102994 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.703346785 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,295.4491959 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1910.108909 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,849.4060523 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002789112 +AZ,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,0.45479 +AZ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,725.1466318 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,531.871652 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,36718.2998 +AZ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,361.651428 +AZ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5977.8937 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,178.3490122 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,87.41405877 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,5.76375832 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3874.603517 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,47.35106132 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1850.901586 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,498.8294547 +AZ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1760.2543 +AZ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1239.435907 +AZ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.649886299 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,20.81919593 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.395970518 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.285298057 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.486933452 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,79.1610245 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,151.9531046 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2465.866212 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.560433807 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,99.95941497 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,13833.70168 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3107.176281 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.049917646 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.004859188 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,115.3734671 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,116.2561709 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,38.76381771 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001422569 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.5820319 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9497.750353 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.84947361 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8644.605877 +AZ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,685.6066361 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,91.98922564 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1660.909071 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7094.904512 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8344.34505 +AZ,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,30.2429024 +AZ,Volatile Organic Compounds,2A1_Cement-production,,TON,5.0605 +AZ,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,3.37569 +AZ,Volatile Organic Compounds,2A6_Other-minerals,,TON,9.082083471 +AZ,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,144.5588865 +AZ,Volatile Organic Compounds,2B_Chemicals-other,,TON,135.738515 +AZ,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,23.5145 +AZ,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,41.0129 +AZ,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.3998 +AZ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,28259.65288 +AZ,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,3.03951 +AZ,Volatile Organic Compounds,2D3d_Coating-application,,TON,12724.36235 +AZ,Volatile Organic Compounds,2D3e_Degreasing,,TON,1381.193203 +AZ,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,26.4213 +AZ,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,291.649 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2195.656379 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2023.398451 +AZ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,169.3348918 +AZ,Volatile Organic Compounds,2H2_Ethanol Production,,TON,4.162 +AZ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,395.7826887 +AZ,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,2270.511731 +AZ,Volatile Organic Compounds,3Dc_Other-farm,Other_Fuel,TON,0.11572 +AZ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2106.85213 +AZ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,478.869369 +AZ,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,153.9729 +AZ,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.383488742 +AZ,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.073 +AZ,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,706.189864 +AZ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,198.48216 +AZ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,16.0944401 +AZ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,123.409135 +AZ,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,3.16865 +AZ,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,8.56601 +CA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,5.453914841 +CA,Ammonia,1A1a_Public-Electricity,biomass,TON,568.9497719 +CA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,11.27606602 +CA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,63.54864211 +CA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,8.380482587 +CA,Ammonia,1A1a_Public-Electricity,light_oil,TON,705.9493706 +CA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2608.196283 +CA,Ammonia,1A1b_Pet-refining,heavy_oil,TON,4.98604E-06 +CA,Ammonia,1A1b_Pet-refining,natural_gas,TON,197.082417 +CA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.549086675 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.07015205 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13.69103285 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.125863 +CA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.278213257 +CA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,304.2067716 +CA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.667175369 +CA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,2.40684E-06 +CA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,425.3820969 +CA,Ammonia,1A2c_Chemicals,diesel_oil,TON,0.0045 +CA,Ammonia,1A2c_Chemicals,heavy_oil,TON,0.00003 +CA,Ammonia,1A2c_Chemicals,natural_gas,TON,7.575336686 +CA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.74461349 +CA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.4605917 +CA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.68546755 +CA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,45.12653916 +CA,Ammonia,1A3bii_Road-LDV,light_oil,TON,14014.22031 +CA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,47.03596226 +CA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2371.423244 +CA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,13.40726748 +CA,Ammonia,1A3biii_Road-bus,light_oil,TON,7.368691173 +CA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.878385318 +CA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,150.9959172 +CA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,9.697353212 +CA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,202.6593294 +CA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,82.18064696 +CA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.98216025 +CA,Ammonia,1A3c_Rail,diesel_oil,TON,1.76479126 +CA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.037618479 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,10.96838604 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.581259235 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,565.7274502 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.5145094 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.1184421 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.01331885 +CA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,2.05766125 +CA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.3402322 +CA,Ammonia,1A4bi_Residential-stationary,biomass,TON,1108.611299 +CA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,8.36438338 +CA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.489303834 +CA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,4813.887354 +CA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29.08598135 +CA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.50231075 +CA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.32700365 +CA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,4.90615765 +CA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,18.97614626 +CA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.008729874 +CA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,213.0333558 +CA,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.000919594 +CA,Ammonia,2A1_Cement-production,,TON,4.642406 +CA,Ammonia,2A2_Lime-production,Other_Fuel,TON,30.55 +CA,Ammonia,2A6_Other-minerals,,TON,423.1124691 +CA,Ammonia,2B_Chemicals-other,,TON,3694.159869 +CA,Ammonia,2C_Iron-steel-alloy,,TON,0.067997755 +CA,Ammonia,2C7_Other-metal,Other_Fuel,TON,14.17327499 +CA,Ammonia,2D3d_Coating-application,,TON,16.18377415 +CA,Ammonia,2D3e_Degreasing,,TON,1.915327185 +CA,Ammonia,2D3h_Printing,,TON,17.11228997 +CA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,28.4692896 +CA,Ammonia,2H1_Pulp-and-paper,,TON,7.502679315 +CA,Ammonia,2H2_Food-and-beverage,,TON,72.62169239 +CA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,319.8913208 +CA,Ammonia,2I_Wood-processing,,TON,9.6256 +CA,Ammonia,3B1b_Cattle-non-dairy,,TON,116988.5047 +CA,Ammonia,3B2_Manure-sheep,,TON,2506.160235 +CA,Ammonia,3B3_Manure-swine,,TON,3464.10257 +CA,Ammonia,3B4_Manure-other,,TON,2472.1961 +CA,Ammonia,3B4_Manure-poultry,,TON,9690.656467 +CA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,68274.882 +CA,Ammonia,3Dc_Other-farm,,TON,0.24454359 +CA,Ammonia,3F_Ag-res-on-field,,TON,538.932259 +CA,Ammonia,5A_Solid-waste-disposal,,TON,5349.188267 +CA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,22798.09814 +CA,Ammonia,5C_Incineration,biomass,TON,38.86062 +CA,Ammonia,5C_Open-burning-industrial,,TON,0.006625 +CA,Ammonia,5C_Open-burning-yard-waste,,TON,94.286621 +CA,Ammonia,5D1_Wastewater-domestic,Other_Fuel,TON,394.5792496 +CA,Ammonia,5D2_Wastewater-industrial,biomass,TON,1.503569695 +CA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1897103.628 +CA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,131124386.9 +CA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1669453.733 +CA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,21398111.33 +CA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,771162.1623 +CA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,152698.2655 +CA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,23399.13623 +CA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11723717.09 +CA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,187054.1947 +CA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12802458.05 +CA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1651982.419 +CA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,792146.821 +CA,Carbon Monoxide,11C_Other-natural,,TON,402340.8409 +CA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,78.98461965 +CA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,3795.768757 +CA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,531.7713866 +CA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,283.4697096 +CA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,132.3811127 +CA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,187.0871723 +CA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,7567.83076 +CA,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0.064984745 +CA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,3161.325023 +CA,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.012 +CA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.018 +CA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,345.5391189 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10487.79166 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,62754.34101 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,30676.90628 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,122.8959485 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,10767.34021 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,997.057186 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,875.9173105 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,57.26653181 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3200.109668 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,58.74948667 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,17491.99665 +CA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0.00018 +CA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,72.343782 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.927827259 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,66.68991424 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,11998.8665 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,29337.8955 +CA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,41866.63375 +CA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,9266.13401 +CA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1174590.717 +CA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9493.69636 +CA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,219600.7823 +CA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1396.428244 +CA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5115.974352 +CA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,100.8173232 +CA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20316.51421 +CA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4104.893194 +CA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16825.46574 +CA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,32145.5593 +CA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,93386.7285 +CA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,11382.31681 +CA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4991.570782 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1616.11958 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.007337956 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,258.6126877 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.16513338 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.53038441 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,180.4233056 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15767.21421 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4539.7965 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,127881.726 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2935.949 +CA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1106.9715 +CA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,204977.162 +CA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,125515.4347 +CA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,86.51054732 +CA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,17.44652132 +CA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,9457.979198 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19403.6575 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,25117.9475 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1894.09933 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,30158.88783 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,434.788 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,265144.8055 +CA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,80.944532 +CA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.103 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,203.9129036 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.000668892 +CA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,410.6014111 +CA,Carbon Monoxide,2A1_Cement-production,,TON,1897.58687 +CA,Carbon Monoxide,2A6_Other-minerals,,TON,6511.31913 +CA,Carbon Monoxide,2B_Chemicals-other,,TON,3134.72044 +CA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,27.4161341 +CA,Carbon Monoxide,2C3_Aluminum-production,,TON,0.163028 +CA,Carbon Monoxide,2C5_Lead-production,,TON,0.003045 +CA,Carbon Monoxide,2C6_Zinc-production,,TON,0.21 +CA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,375.1580032 +CA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,25.2138 +CA,Carbon Monoxide,2D3d_Coating-application,,TON,1.291 +CA,Carbon Monoxide,2D3e_Degreasing,,TON,400.27897 +CA,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,1.37 +CA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,166.4698591 +CA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,158.0555064 +CA,Carbon Monoxide,2H2_Food-and-beverage,,TON,220.1188805 +CA,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,936.2102335 +CA,Carbon Monoxide,3B1b_Cattle-non-dairy,Other_Fuel,TON,134.2037659 +CA,Carbon Monoxide,3Dc_Other-farm,,TON,6280.020423 +CA,Carbon Monoxide,3F_Ag-res-on-field,,TON,36611.77306 +CA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,553.0796105 +CA,Carbon Monoxide,5C_Incineration,,TON,21.92549832 +CA,Carbon Monoxide,5C_Incineration,biomass,TON,146.8972089 +CA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.098086 +CA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,6137.9835 +CA,Carbon Monoxide,5C_Open-burning-residential,,TON,2582.28122 +CA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,6458.218834 +CA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,52.7218445 +CA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.06115 +CA,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.77149 +CA,Methane,1A3bii_Road-LDV,diesel_oil,TON,27.09585584 +CA,Methane,1A3bii_Road-LDV,light_oil,TON,2716.799492 +CA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.41929975 +CA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,666.8275966 +CA,Methane,1A3biii_Road-bus,diesel_oil,TON,10.18100259 +CA,Methane,1A3biii_Road-bus,light_oil,TON,13.17217674 +CA,Methane,1A3biii_Road-bus,natural_gas,TON,121.9357014 +CA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,754.1468522 +CA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.866016626 +CA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,157.1965488 +CA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,72.12232602 +CA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,186.6253015 +CA,Nitrogen Oxides,11C_Other-natural,,TON,45729.4796 +CA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,125.7594262 +CA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1423.675347 +CA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,965.3588293 +CA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,876.4705611 +CA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,269.381052 +CA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,219.6737607 +CA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,4070.507842 +CA,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0.008557356 +CA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,4800.677762 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.048 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.198 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,870.184147 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9948.899084 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9902.588814 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4425.305147 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,137.5050535 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2434.519258 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,1756.713321 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3648.433975 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1343.638639 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1379.155132 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,252.8383775 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,26765.94401 +CA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.11 +CA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0.00008 +CA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,87.671981 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.962944425 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,56.45220057 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,24411.1335 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,743.067 +CA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,13975.57398 +CA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,8578.290844 +CA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,129503.6451 +CA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10095.71399 +CA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28281.39484 +CA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,7398.015627 +CA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,421.879081 +CA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,69.6563877 +CA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,124568.5712 +CA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,551.3256048 +CA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,98061.80397 +CA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2582.936184 +CA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3328.983 +CA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,41923.71756 +CA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,20270.36369 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,483.6088539 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.001902283 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,855.3065486 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.141024118 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,100.071207 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,56.89838706 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14103.06871 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,8069.3475 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3022.82 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,266.1945 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1982.4605 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2517.624 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2311.45133 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,315.520428 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,62.80748415 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,19592.28643 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,34568.496 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,734.2705 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,44.1566333 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,441.8577161 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,989.332 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,12517.8605 +CA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,745.965811 +CA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.492 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,50.72818319 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,5.37456E-05 +CA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1561.968767 +CA,Nitrogen Oxides,2A1_Cement-production,,TON,3255.86937 +CA,Nitrogen Oxides,2A5b_Construction-and-demolition,Other_Fuel,TON,17.5384781 +CA,Nitrogen Oxides,2A6_Other-minerals,,TON,12138.43959 +CA,Nitrogen Oxides,2B_Chemicals-other,,TON,7455.027425 +CA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,11.368131 +CA,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.234316 +CA,Nitrogen Oxides,2C5_Lead-production,,TON,0.01131 +CA,Nitrogen Oxides,2C6_Zinc-production,,TON,1.334 +CA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,397.6087139 +CA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,5.351 +CA,Nitrogen Oxides,2D3d_Coating-application,,TON,1.06000055 +CA,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,1.57 +CA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,44.43846329 +CA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,377.6588 +CA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,42.652009 +CA,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,527.4408694 +CA,Nitrogen Oxides,3B1b_Cattle-non-dairy,Other_Fuel,TON,133.2320485 +CA,Nitrogen Oxides,3Dc_Other-farm,,TON,0.936 +CA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2498.909526 +CA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,364.4423382 +CA,Nitrogen Oxides,5C_Incineration,,TON,70.389691 +CA,Nitrogen Oxides,5C_Incineration,biomass,TON,447.8723061 +CA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.033214 +CA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,181.59721 +CA,Nitrogen Oxides,5C_Open-burning-residential,,TON,182.278567 +CA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,230.0055921 +CA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,33.161723 +CA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.06035 +CA,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,13.01 +CA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,5.856313767 +CA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,6425.386927 +CA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.95466771 +CA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1370.587379 +CA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.93593868 +CA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,6.662655855 +CA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.33664891 +CA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.1202697 +CA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.188834707 +CA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,23.57389605 +CA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,87.23859368 +CA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.46259278 +CA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,506.4674196 +CA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,439.7421614 +CA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,94.22295842 +CA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,53.92569052 +CA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,12.00951993 +CA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,55.95225981 +CA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,755.8499813 +CA,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.00822606 +CA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1477.364773 +CA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00309913 +CA,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0278922 +CA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,288.6588668 +CA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,91.428282 +CA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.5212082 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,7.963123568 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,737.7761899 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,152.2350541 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,32.76905298 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.06519409 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,16.28667516 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1058.850224 +CA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,5.09825E-05 +CA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,7.64750323 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.186693257 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.856391813 +CA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,153848.2097 +CA,PM10 Filterable,1A3c_Rail,diesel_oil,TON,188.98 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1341.261958 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000380882 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.74896939 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.973516382 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,24.63095008 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,12.25032991 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,948.763908 +CA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,18.66308014 +CA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.768449213 +CA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,677.76814 +CA,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2213359 +CA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.059 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,299.5622445 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,2.74 +CA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.412252284 +CA,PM10 Filterable,2A1_Cement-production,,TON,1268.870005 +CA,PM10 Filterable,2A2_Lime-production,,TON,28.49589292 +CA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,57337.75377 +CA,PM10 Filterable,2A6_Other-minerals,,TON,38534.25314 +CA,PM10 Filterable,2B_Chemicals-other,,TON,1687.270922 +CA,PM10 Filterable,2C_Iron-steel-alloy,,TON,102.0921467 +CA,PM10 Filterable,2C3_Aluminum-production,,TON,1.570868905 +CA,PM10 Filterable,2C5_Lead-production,,TON,0.002418259 +CA,PM10 Filterable,2C6_Zinc-production,,TON,0.732366838 +CA,PM10 Filterable,2C7_Other-metal,,TON,386.2690918 +CA,PM10 Filterable,2C7a_Copper-production,,TON,7.95614 +CA,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.132913 +CA,PM10 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,34.72149843 +CA,PM10 Filterable,2D3d_Coating-application,,TON,598.3522836 +CA,PM10 Filterable,2D3e_Degreasing,,TON,28.9718371 +CA,PM10 Filterable,2D3h_Printing,,TON,68.47536645 +CA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,255.6097548 +CA,PM10 Filterable,2H1_Pulp-and-paper,,TON,3868.475934 +CA,PM10 Filterable,2H2_Food-and-beverage,,TON,12677.26812 +CA,PM10 Filterable,2H3_Other-industrial-processes,,TON,1315.429945 +CA,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,45.96383249 +CA,PM10 Filterable,2I_Wood-processing,,TON,65.9461439 +CA,PM10 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,93.35293871 +CA,PM10 Filterable,3Dc_Other-farm,,TON,27534.78919 +CA,PM10 Filterable,3F_Ag-res-on-field,,TON,3998.83 +CA,PM10 Filterable,5A_Solid-waste-disposal,,TON,437.7083158 +CA,PM10 Filterable,5B_Compost-biogas,Other_Fuel,TON,3.48 +CA,PM10 Filterable,5C_Incineration,,TON,3.901242188 +CA,PM10 Filterable,5C_Incineration,biomass,TON,16.95559025 +CA,PM10 Filterable,5C_Open-burning-commercial,,TON,0.001605 +CA,PM10 Filterable,5C_Open-burning-industrial,,TON,0.77173975 +CA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,617.43031 +CA,PM10 Filterable,5C_Open-burning-residential,,TON,1154.98148 +CA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,908.9804194 +CA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,7.909093096 +CA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,181.3251986 +CA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,15.0719192 +CA,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.004224 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,516.0973308 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,472.5098796 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,102.8825747 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,57.14708334 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,13.25523485 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,72.95689772 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1462.054537 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.013469987 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,2368.102951 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0048 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.0432 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,755.322371 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,405.7652925 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,554.5762594 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,54.22574783 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.384674363 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,752.4363934 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,164.7642767 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,35.59988326 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,31.26399918 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,19.78003328 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2318.087303 +CA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.00006832 +CA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,15.7902599 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.225251039 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.915896761 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1171.441725 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,212.197862 +CA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,974.532444 +CA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,153848.5586 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,480.161808 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,15378.18736 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,563.4859164 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,1963.010164 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,396.8254191 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,17.16058436 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.980054832 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,4787.698486 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,19.74184468 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,5367.118865 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,112.3890463 +CA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,107.7115 +CA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1260.334671 +CA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,778.5664079 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1302.800533 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000436898 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,86.49282474 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.946315015 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,26.94859075 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,11.56896215 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1901.893579 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,410.498477 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,356.1008905 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.24488 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,73.317771 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,320.6413685 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,18735.12494 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,43.13887116 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,8.30454597 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1784.264234 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,365.241984 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.6723365 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.0045817 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,121.5486286 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.671085 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,4247.2026 +CA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2733662 +CA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.059 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,307.2754445 +CA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9.5443578 +CA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1294.23549 +CA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,35.46794371 +CA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,57300.2085 +CA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,38657.48526 +CA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1707.849994 +CA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,191.7789283 +CA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3.493433 +CA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.00514509 +CA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.452427453 +CA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,400.831948 +CA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,7.95614 +CA,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.132913 +CA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,38.82503384 +CA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,598.6355503 +CA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,28.9718371 +CA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,68.47536645 +CA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,255.6224018 +CA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3953.456427 +CA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,12724.91079 +CA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1293.733431 +CA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,70.01562118 +CA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,65.9461439 +CA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,93.35293871 +CA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,27544.23098 +CA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,4196.432034 +CA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,470.8123318 +CA,PM10 Primary (Filt + Cond),5B_Compost-biogas,Other_Fuel,TON,3.512569 +CA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,4.45514166 +CA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,19.48824821 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.003 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.015729 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,617.43031 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1154.98808 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,909.0769414 +CA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,8.66700154 +CA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,181.5613796 +CA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,17.0193392 +CA,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.004224 +CA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,181.0976795 +CA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,391.0867002 +CA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,80.19767558 +CA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,17.99146566 +CA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,5.085852194 +CA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,16.47869546 +CA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,710.4690958 +CA,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.006359688 +CA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1202.685806 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00305487 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0224301 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,288.5338775 +CA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.052948 +CA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.3539602 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.704872928 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,650.161411 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,146.2746962 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,20.37518847 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.97654666 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,15.93605519 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,996.4650295 +CA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,5.03525E-05 +CA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,7.36236641 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.184651029 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.856616916 +CA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,18234.10033 +CA,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,173.86 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1161.141764 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000196139 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,80.86122362 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.346186491 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,21.12918286 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.908177101 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,888.0373341 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,18.29159771 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.896123882 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,677.752597 +CA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2099278 +CA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.059 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,287.8804332 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,2.178 +CA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.581907344 +CA,PM2.5 Filterable,2A1_Cement-production,,TON,810.3412371 +CA,PM2.5 Filterable,2A2_Lime-production,,TON,6.922752854 +CA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,13481.35742 +CA,PM2.5 Filterable,2A6_Other-minerals,,TON,8935.307079 +CA,PM2.5 Filterable,2B_Chemicals-other,,TON,1020.938798 +CA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,63.3335699 +CA,PM2.5 Filterable,2C3_Aluminum-production,,TON,1.397810095 +CA,PM2.5 Filterable,2C5_Lead-production,,TON,0.002059709 +CA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.319761838 +CA,PM2.5 Filterable,2C7_Other-metal,,TON,279.3110773 +CA,PM2.5 Filterable,2C7a_Copper-production,,TON,4.773684 +CA,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0995273 +CA,PM2.5 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,31.77739823 +CA,PM2.5 Filterable,2D3d_Coating-application,,TON,576.9730325 +CA,PM2.5 Filterable,2D3e_Degreasing,,TON,27.89775298 +CA,PM2.5 Filterable,2D3h_Printing,,TON,65.97882597 +CA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,246.2370751 +CA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2392.235665 +CA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,10227.59726 +CA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,1038.499121 +CA,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,47.99404624 +CA,PM2.5 Filterable,2I_Wood-processing,,TON,52.6377479 +CA,PM2.5 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,66.75140313 +CA,PM2.5 Filterable,3Dc_Other-farm,,TON,4943.592204 +CA,PM2.5 Filterable,3F_Ag-res-on-field,,TON,3791.33 +CA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,138.340752 +CA,PM2.5 Filterable,5B_Compost-biogas,Other_Fuel,TON,0.48754401 +CA,PM2.5 Filterable,5C_Incineration,,TON,2.101282803 +CA,PM2.5 Filterable,5C_Incineration,biomass,TON,11.09211842 +CA,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.000405 +CA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.73452091 +CA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,475.97712 +CA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1057.71638 +CA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,858.731678 +CA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,7.71762133 +CA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,164.9502435 +CA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,4.593134525 +CA,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.00407 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,188.6930338 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,430.0544196 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,90.01270928 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,20.89384988 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.28689481 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,32.73021721 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1412.469101 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.011697391 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,2096.499845 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00475574 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.0377379 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,755.1973818 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,296.0875395 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,507.6899392 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,54.10237919 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.238762524 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,668.4449201 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,159.3279105 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,23.50909389 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,24.37111928 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,19.47803457 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2288.795547 +CA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.00006769 +CA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,15.505123 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.223184776 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.916145899 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1077.736271 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,177.455196 +CA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,832.6965432 +CA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,18234.64895 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,335.6744058 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6726.025821 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,419.0748294 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,856.011218 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,310.1652947 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.60236771 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.025592104 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3812.141003 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,14.37359104 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3982.905266 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,56.16528604 +CA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,44.6395 +CA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1166.186971 +CA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,727.5136872 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1122.454622 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000261218 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,84.84784906 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.353621833 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,23.45862319 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,11.52600556 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1876.898133 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,382.8718805 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,297.5540745 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.23634 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,68.184125 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,264.2402485 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,18706.19869 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,42.75990601 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.432220885 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1784.248691 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,343.658127 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.7794005 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.53676625 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,91.8367079 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.6038215 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,4052.741858 +CA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.2619581 +CA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.059 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,295.5935832 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.018 +CA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.70842088 +CA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,836.130818 +CA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,13.89481365 +CA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,13446.80691 +CA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,9073.638778 +CA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1041.519679 +CA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,153.0682547 +CA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3.32037417 +CA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.00478654 +CA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.039822453 +CA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,293.9142578 +CA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.773684 +CA,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0995273 +CA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,35.87695364 +CA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,577.2551715 +CA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,27.89775298 +CA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,65.97882597 +CA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,246.2529571 +CA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2477.217909 +CA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,10274.08473 +CA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1014.529259 +CA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,74.324934 +CA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,52.6377479 +CA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,66.75140313 +CA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4953.111926 +CA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3932.814342 +CA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,171.4355897 +CA,PM2.5 Primary (Filt + Cond),5B_Compost-biogas,Other_Fuel,TON,0.52692121 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,3.37592052 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.60903641 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0018 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.97851016 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,475.97712 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1057.72568 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,858.85193 +CA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,8.475529774 +CA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,165.1864245 +CA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,6.540554525 +CA,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.00407 +CA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,39.89502192 +CA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,323.6874577 +CA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,40.57149311 +CA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,626.0060465 +CA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,310.8124009 +CA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,65.79643484 +CA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,425.4798549 +CA,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,0.003663735 +CA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,6945.701853 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.000509 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.57096 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1129.028132 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29.23595575 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,67.21506891 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.224663298 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,43.09515762 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,308.7515957 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,492.2573542 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,556.4687013 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,123.0650978 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,475.8329808 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.53015026 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2226.724878 +CA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.00026 +CA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,57.43484 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.942730127 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,26.41175897 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,11.9355 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.2555 +CA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1531.592666 +CA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,20.32730302 +CA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1394.245329 +CA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.42406149 +CA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,221.3440626 +CA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,8.840040994 +CA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.576108738 +CA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.213884093 +CA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,137.9393674 +CA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.920006408 +CA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,149.0472512 +CA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,17.06829845 +CA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.964 +CA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,70.46175258 +CA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1663.255428 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,55.52677733 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,brown_coal,TON,5.46446E-05 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.00033274 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,18.73528323 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,209.2260517 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.445949183 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,921.6791088 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.3655 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.65 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.263 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.687 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,311.269941 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,638.576435 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,148.6443676 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,240.8849266 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37.595 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.511 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.1624689 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,8.2149999 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.4745 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,21.316 +CA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.082961 +CA,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00295 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,17.05122809 +CA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.20415325 +CA,Sulfur Dioxide,2A1_Cement-production,,TON,929.75364 +CA,Sulfur Dioxide,2A6_Other-minerals,,TON,3923.313794 +CA,Sulfur Dioxide,2B_Chemicals-other,,TON,1347.612411 +CA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,12.46166947 +CA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.0422 +CA,Sulfur Dioxide,2C5_Lead-production,,TON,0.00007221 +CA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.01 +CA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,42.45203116 +CA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,1.93696 +CA,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.01 +CA,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,38.16471546 +CA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0.824775784 +CA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,204.0257367 +CA,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,297.3636722 +CA,Sulfur Dioxide,3B1b_Cattle-non-dairy,Other_Fuel,TON,8.319539685 +CA,Sulfur Dioxide,3Dc_Other-farm,Other_Fuel,TON,69.62314283 +CA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,204.2870159 +CA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,176.7808954 +CA,Sulfur Dioxide,5C_Incineration,,TON,5.871934788 +CA,Sulfur Dioxide,5C_Incineration,biomass,TON,51.94720237 +CA,Sulfur Dioxide,5C_Open-burning-residential,,TON,30.3797879 +CA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,29.97491629 +CA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,38.30469459 +CA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.01896 +CA,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,1.45 +CA,Volatile Organic Compounds,11C_Other-natural,,TON,2349232.648 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.101541422 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,58.95129608 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,249.5448921 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,4.576933068 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,26.75482231 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,175.5908999 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1069.715034 +CA,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0.05520699 +CA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,142.6006538 +CA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,634.4195551 +CA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,5630.100194 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.00048 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.00101 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,280.9473957 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1244.959153 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4324.286881 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,140.3033454 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.22629911 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,325.1645329 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,2.26427865 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,223.4450771 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.857550991 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,15.30589695 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,24.78429636 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,4263.093592 +CA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.00004 +CA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,15.77702752 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.6995296 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,7.265774062 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2785.583837 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1528.176009 +CA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,3056.447018 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1146.918243 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,118194.7053 +CA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1345.972374 +CA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20126.36817 +CA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,365.9059209 +CA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,327.8837862 +CA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,14.29850108 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6284.300274 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,171.7508914 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3855.273485 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1721.931456 +CA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14041.9485 +CA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,3242.24272 +CA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1369.334423 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,42.33784119 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000985534 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,79.67854534 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.416616678 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.52843633 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1694.886717 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1509.356501 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,7691.117003 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.3594074 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,289.759253 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,31891.9378 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,21308.8241 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,32.44107553 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.442512627 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1141.544365 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6581.933071 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1986.450443 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,264.498804 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12280.00596 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,289.423383 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,45799.33077 +CA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,11650.42285 +CA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,5104.726388 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,342.1748709 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1131.836472 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,18637.03665 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7930.395919 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,16.6000046 +CA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3851.362685 +CA,Volatile Organic Compounds,2A1_Cement-production,,TON,24.66196 +CA,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,12.96128889 +CA,Volatile Organic Compounds,2A6_Other-minerals,,TON,1403.127516 +CA,Volatile Organic Compounds,2B_Chemicals-other,,TON,3548.592519 +CA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,40.00586323 +CA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.20680958 +CA,Volatile Organic Compounds,2C5_Lead-production,,TON,0.03595961 +CA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.04 +CA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,431.4277818 +CA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,75804.11052 +CA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,2642.237233 +CA,Volatile Organic Compounds,2D3d_Coating-application,,TON,70169.77599 +CA,Volatile Organic Compounds,2D3e_Degreasing,,TON,12091.17384 +CA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,304.7122496 +CA,Volatile Organic Compounds,2D3h_Printing,,TON,6262.95492 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,16615.04432 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2421.651976 +CA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1085.635292 +CA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,8205.228638 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,507.8849959 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,3328.668659 +CA,Volatile Organic Compounds,2I_Wood-processing,,TON,623.8104324 +CA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,Other_Fuel,TON,134.1714027 +CA,Volatile Organic Compounds,3Dc_Other-farm,,TON,284.319476 +CA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,12807.73976 +CA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,3287.628923 +CA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,5558.781584 +CA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,8241.08291 +CA,Volatile Organic Compounds,5C_Incineration,,TON,16.50203076 +CA,Volatile Organic Compounds,5C_Incineration,biomass,TON,12.48097369 +CA,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.021 +CA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.00238547 +CA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,421.305398 +CA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,260.050913 +CA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,635.6889287 +CA,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,271.9847982 +CA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,119.7459329 +CA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,70.13943059 +CA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.616496 +CO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,254.32593 +CO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,129.435934 +CO,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,2.16 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.770812165 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.230148508 +CO,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,12.65 +CO,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1.1285 +CO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.45592175 +CO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.364291843 +CO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.520315219 +CO,Ammonia,1A3bii_Road-LDV,light_oil,TON,1627.137035 +CO,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.52327774 +CO,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,270.0043573 +CO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.818716155 +CO,Ammonia,1A3biii_Road-bus,light_oil,TON,0.728699987 +CO,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.083115621 +CO,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38.08019616 +CO,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.050484473 +CO,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.9382793 +CO,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,8.13674512 +CO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.60543991 +CO,Ammonia,1A3c_Rail,diesel_oil,TON,7.240001691 +CO,Ammonia,1A3c_Rail,light_oil,TON,0.002536201 +CO,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,16.59549926 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.140535835 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.333215744 +CO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.652828384 +CO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.958621717 +CO,Ammonia,1A4bi_Residential-stationary,biomass,TON,417.340045 +CO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.245861727 +CO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,28.84163264 +CO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.143908164 +CO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1293.072833 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.488978423 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.148700476 +CO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.020383848 +CO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.931799532 +CO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.17620714 +CO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.088254767 +CO,Ammonia,2A1_Cement-production,,TON,20.1245 +CO,Ammonia,2A6_Other-minerals,,TON,1.64225 +CO,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.016 +CO,Ammonia,2D3d_Coating-application,,TON,0.037295 +CO,Ammonia,2D3e_Degreasing,Other_Fuel,TON,14.4215 +CO,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,12.3855 +CO,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,1.26 +CO,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,11.29 +CO,Ammonia,3B1a_Cattle-dairy,,TON,13537.3418 +CO,Ammonia,3B1b_Cattle-non-dairy,,TON,26580.00392 +CO,Ammonia,3B2_Manure-sheep,,TON,1445.798376 +CO,Ammonia,3B3_Manure-swine,,TON,7105.762646 +CO,Ammonia,3B4_Manure-other,,TON,1599.28428 +CO,Ammonia,3B4_Manure-poultry,,TON,3197.604961 +CO,Ammonia,3B4d_Manure-goats,,TON,341.575212 +CO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,15087.38674 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,218025.9936 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,172656.4846 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16198.08129 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1655688.745 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,30217.40741 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.760105455 +CO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,300523.4739 +CO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18953539.86 +CO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,278898.2317 +CO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3629825.114 +CO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,112393.0048 +CO,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,22490.15801 +CO,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3391.095247 +CO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2095019.244 +CO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,29279.46416 +CO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2088900.745 +CO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,240453.8323 +CO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,120048.8575 +CO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4229.50205 +CO,Carbon Dioxide,1A3c_Rail,light_oil,TON,196.8806148 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,140157.3005 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,193528.3533 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8501.158208 +CO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,80290.05405 +CO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,512725.3375 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,675280.0674 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11139.76666 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.44695194 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2495.3557 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,193936.1901 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21698.84209 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,75343.8206 +CO,Carbon Monoxide,11C_Other-natural,,TON,161626.34 +CO,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.07 +CO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,248.588776 +CO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,14745.96 +CO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1332.394086 +CO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1432.889881 +CO,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,3.2 +CO,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,862.474201 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2864.851024 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10904.5823 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,568.1238909 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,23.33178931 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,939.9361733 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,278.3608084 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,106.0346385 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,23032.21535 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,64.976063 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0388 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.22366 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7012.753403 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7120.680538 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.559408899 +CO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10214.07156 +CO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4507.023332 +CO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,452534.8751 +CO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2652.417512 +CO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,97347.1603 +CO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,322.9793417 +CO,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1276.177352 +CO,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,22.53547345 +CO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5253.14533 +CO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1085.859538 +CO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4152.882558 +CO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8033.971857 +CO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4871.36518 +CO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2341.768211 +CO,Carbon Monoxide,1A3c_Rail,light_oil,TON,51.35587342 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,358.7727896 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,111.3143808 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,28.5520751 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.255020321 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1022.930419 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,742.7054561 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,46657.09946 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,200.3110477 +CO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,327.9358334 +CO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,140814.3782 +CO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,51180.30585 +CO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.22930829 +CO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,3965.729153 +CO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.719540835 +CO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3118.433504 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3076.929944 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2835.570847 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.808779597 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.121326 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,30287.05814 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,43.38439627 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10125.01855 +CO,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,13127.23359 +CO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,185.46081 +CO,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,19803.76622 +CO,Carbon Monoxide,2A1_Cement-production,,TON,1094.99 +CO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,46.675 +CO,Carbon Monoxide,2A6_Other-minerals,,TON,5351.434543 +CO,Carbon Monoxide,2B_Chemicals-other,,TON,5.93 +CO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1010.009 +CO,Carbon Monoxide,2C3_Aluminum-production,,TON,8.91621 +CO,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,62.020375 +CO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,85.2105 +CO,Carbon Monoxide,2D3d_Coating-application,,TON,4.796 +CO,Carbon Monoxide,2D3h_Printing,,TON,0.550726 +CO,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.0694 +CO,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,121.6068 +CO,Carbon Monoxide,2H2_Food-and-beverage,,TON,827.1498461 +CO,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,36.76717 +CO,Carbon Monoxide,3Dc_Other-farm,,TON,1.39381 +CO,Carbon Monoxide,3F_Ag-res-on-field,,TON,33958.13774 +CO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,620.460044 +CO,Carbon Monoxide,5C_Incineration,,TON,4.092596129 +CO,Carbon Monoxide,5C_Incineration,biomass,TON,52.87146659 +CO,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.021115 +CO,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.491 +CO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,73.575583 +CO,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,15.6186 +CO,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,17.65 +CO,Methane,1A3bii_Road-LDV,diesel_oil,TON,13.35044918 +CO,Methane,1A3bii_Road-LDV,light_oil,TON,1248.969571 +CO,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.07934605 +CO,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,317.519349 +CO,Methane,1A3biii_Road-bus,diesel_oil,TON,2.834366745 +CO,Methane,1A3biii_Road-bus,light_oil,TON,2.903210413 +CO,Methane,1A3biii_Road-bus,natural_gas,TON,23.07765228 +CO,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,211.6533245 +CO,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.046385478 +CO,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,42.90414098 +CO,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,16.73422587 +CO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.48250539 +CO,Nitrogen Oxides,11C_Other-natural,,TON,32909.5336 +CO,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.2 +CO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,948.499109 +CO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,49476.53 +CO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2170.59635 +CO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1140.777317 +CO,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,1.6 +CO,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,381.712929 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1757.464038 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1065.10868 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,85.08331607 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,6.642260386 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2539.475315 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1465.439962 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,38.16679504 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,35288.21988 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,18.850096 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.16 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,12.239 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,12538.8328 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,129.9556081 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113725215 +CO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3266.630562 +CO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1188.464703 +CO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,56794.52048 +CO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1356.676252 +CO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12412.63375 +CO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,904.0461179 +CO,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,109.8775555 +CO,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,14.61515683 +CO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18552.67257 +CO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,142.1677265 +CO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13257.52998 +CO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,810.1271253 +CO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,246.9865647 +CO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16098.83898 +CO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.835878763 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,134.9073587 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,244.0467449 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,50.05862616 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.016006214 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1344.213931 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1281.871351 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,886.205223 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,53.23717147 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,730.5598505 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1685.787436 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,839.6166567 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4.425514025 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,130.8777755 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.590349035 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,7024.572952 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6157.363521 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,62.00344471 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.403482376 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.419115 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,335.7574874 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,243.6760572 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,509.137696 +CO,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,20912.65507 +CO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,58.37936 +CO,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21030.43175 +CO,Nitrogen Oxides,2A1_Cement-production,,TON,1701.3 +CO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,24.425 +CO,Nitrogen Oxides,2A6_Other-minerals,,TON,2876.095307 +CO,Nitrogen Oxides,2B_Chemicals-other,,TON,2.9135 +CO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,141.603 +CO,Nitrogen Oxides,2C3_Aluminum-production,,TON,8.178157 +CO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,16.9635 +CO,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,12.3775 +CO,Nitrogen Oxides,2D3d_Coating-application,,TON,15.725 +CO,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.071185 +CO,Nitrogen Oxides,2D3h_Printing,,TON,1.415873 +CO,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.27 +CO,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,93.1826 +CO,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,3.273181 +CO,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,122.052639 +CO,Nitrogen Oxides,3Dc_Other-farm,,TON,1.65922 +CO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1427.790863 +CO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,120.73354 +CO,Nitrogen Oxides,5C_Incineration,,TON,1.967469984 +CO,Nitrogen Oxides,5C_Incineration,biomass,TON,53.50240881 +CO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.004295 +CO,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.012 +CO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,13.602529 +CO,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,2.87479 +CO,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,6.5 +CO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.952725397 +CO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1097.614271 +CO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.001224759 +CO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,255.3624852 +CO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.278639491 +CO,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.985908612 +CO,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.19348685 +CO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.983512681 +CO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.923611321 +CO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.660220121 +CO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.01210039 +CO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.671331223 +CO,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0193277 +CO,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.009 +CO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,38.89246072 +CO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,719.2621 +CO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,105.7405069 +CO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,245.1947276 +CO,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.79680032 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7.082860581 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.5682457 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,80.71085728 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.18524708 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,433.6812002 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.205861084 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.015554606 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1052691 +CO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,113921.18 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,301.5302236 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.355669729 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.547909578 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002237615 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.99391697 +CO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.265530639 +CO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,89.6282899 +CO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.155420934 +CO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,14.18178834 +CO,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1277.067814 +CO,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,109.8871671 +CO,PM10 Filterable,2A1_Cement-production,,TON,145.1184117 +CO,PM10 Filterable,2A2_Lime-production,,TON,86.86684534 +CO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,56790.72733 +CO,PM10 Filterable,2A6_Other-minerals,,TON,12013.51959 +CO,PM10 Filterable,2B_Chemicals-other,,TON,38.3956266 +CO,PM10 Filterable,2C_Iron-steel-alloy,,TON,62.12850857 +CO,PM10 Filterable,2C3_Aluminum-production,,TON,10.69493687 +CO,PM10 Filterable,2C6_Zinc-production,,TON,0.943084739 +CO,PM10 Filterable,2C7_Other-metal,,TON,204.7489073 +CO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,18.336594 +CO,PM10 Filterable,2D3d_Coating-application,,TON,116.779179 +CO,PM10 Filterable,2D3e_Degreasing,,TON,3.593925 +CO,PM10 Filterable,2D3h_Printing,,TON,0.040123 +CO,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,33.019158 +CO,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,112.1516613 +CO,PM10 Filterable,2H2_Food-and-beverage,,TON,615.1812481 +CO,PM10 Filterable,2H3_Other-industrial-processes,,TON,341.2151263 +CO,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,23.55884758 +CO,PM10 Filterable,2I_Wood-processing,,TON,7.728 +CO,PM10 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,228.0589 +CO,PM10 Filterable,3Dc_Other-farm,,TON,103848.1941 +CO,PM10 Filterable,5A_Solid-waste-disposal,,TON,540.7242148 +CO,PM10 Filterable,5C_Incineration,,TON,1.8142345 +CO,PM10 Filterable,5C_Incineration,biomass,TON,65.41094728 +CO,PM10 Filterable,5C_Open-burning-commercial,,TON,0.022669 +CO,PM10 Filterable,5C_Open-burning-industrial,,TON,1.7514597 +CO,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.00554002 +CO,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,7.4939 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.02 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.009 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,42.106577 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,993.9378 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,195.527142 +CO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,12.05646823 +CO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,331.1974348 +CO,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,36.116596 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,120.193159 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.4626262 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.098911048 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6.892765931 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,111.5694872 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,84.08479358 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,5.511527529 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,852.9920377 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.042675 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.01865 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.277024 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1083.387706 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,47.19588496 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909276 +CO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,216.5314769 +CO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,84085.7584 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,84.94500468 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3358.578866 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,108.3233962 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,638.506699 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,66.77452857 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.717383852 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.457861736 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,897.1274406 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.020964453 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,979.0490192 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,31.06633815 +CO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.90120764 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,532.1308009 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.027326014 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,321.3844586 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.49409295 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.662581281 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002755245 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,110.8102819 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,122.9827578 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,53.60262118 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.06598497 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,55.42772699 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,534.102102 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7384.612713 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.585151092 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,104.6277546 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.342501462 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,36.87261681 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,542.6453996 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.09508116 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002079172 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.4570706 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,329.1355494 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.877178118 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,50.19580452 +CO,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1503.567135 +CO,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.68 +CO,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,229.445594 +CO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,154.108232 +CO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,105.441543 +CO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,56790.72733 +CO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12263.17188 +CO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,41.421211 +CO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,97.791984 +CO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,17.12894 +CO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.33819 +CO,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,205.566616 +CO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,29.287298 +CO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,118.874179 +CO,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.593925 +CO,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.058523 +CO,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,33.019158 +CO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,211.921523 +CO,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,2.2 +CO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2551.676877 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,341.0661804 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,36.47253761 +CO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,7.728 +CO,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,228.0589 +CO,PM10 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,103852.1832 +CO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,5940.61553 +CO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1677.07356 +CO,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.046397545 +CO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,67.50066315 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.042372 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.9285 +CO,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.332036 +CO,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.296099 +CO,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,7.8239 +CO,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0193277 +CO,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.005127 +CO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,38.67136221 +CO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,404.819513 +CO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,103.6036684 +CO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,239.4362716 +CO,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.75680032 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5.920476252 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,106.0185737 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,78.99220191 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.177839506 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,423.9971698 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.106326694 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.013536606 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.08795412 +CO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,39642.32 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,259.4481896 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.545928639 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.140759359 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000556656 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.44754621 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.204065227 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,54.84532521 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.119443865 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.799981292 +CO,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,301.5431012 +CO,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,102.6554244 +CO,PM2.5 Filterable,2A1_Cement-production,,TON,78.13535129 +CO,PM2.5 Filterable,2A2_Lime-production,,TON,20.05339283 +CO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,5679.072733 +CO,PM2.5 Filterable,2A6_Other-minerals,,TON,3497.912675 +CO,PM2.5 Filterable,2B_Chemicals-other,,TON,20.7172656 +CO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,37.53358681 +CO,PM2.5 Filterable,2C3_Aluminum-production,,TON,7.904424366 +CO,PM2.5 Filterable,2C6_Zinc-production,,TON,0.471543739 +CO,PM2.5 Filterable,2C7_Other-metal,,TON,100.789735 +CO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,9.6561629 +CO,PM2.5 Filterable,2D3d_Coating-application,,TON,98.58365733 +CO,PM2.5 Filterable,2D3e_Degreasing,,TON,2.982865 +CO,PM2.5 Filterable,2D3h_Printing,,TON,0.0341446 +CO,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,27.600462 +CO,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,31.16112177 +CO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,166.4691091 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,186.9371669 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,34.40599334 +CO,PM2.5 Filterable,2I_Wood-processing,,TON,2.531583 +CO,PM2.5 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,108.5995 +CO,PM2.5 Filterable,3Dc_Other-farm,,TON,20770.14632 +CO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,326.0500628 +CO,PM2.5 Filterable,5C_Incineration,,TON,1.39865145 +CO,PM2.5 Filterable,5C_Incineration,biomass,TON,55.81314328 +CO,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.00443302 +CO,PM2.5 Filterable,5C_Open-burning-industrial,,TON,1.6278017 +CO,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.00554002 +CO,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,6.564515 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.02 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.005127 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,41.885478 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,679.495677 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,193.3903036 +CO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,11.86319859 +CO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,325.6322484 +CO,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,36.076596 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,116.491811 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.2002908 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.09458652 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,5.787770582 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,108.2038659 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,82.45473935 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,5.500209485 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,842.9818684 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.94313661 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.016632 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.259709 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1050.886709 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.4488396 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909276 +CO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,185.3748997 +CO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13991.52519 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,56.81526894 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1291.32115 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,79.7442202 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,231.837245 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,51.51461168 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.52507573 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.156290131 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,713.3180946 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.081745005 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,719.4795906 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.69487907 +CO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.47696518 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,491.8151186 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.025190129 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,278.9878388 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.67128407 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.243811596 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.001026389 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,109.60302 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119.2932652 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,49.45756503 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.06598497 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,53.76493441 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,491.3975509 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7374.326792 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.523685456 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,69.84472343 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.306524508 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,30.49082364 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,526.3662904 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.767584458 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002079172 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3533604 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,302.8055422 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.730860579 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,46.18014994 +CO,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,527.7860574 +CO,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.68 +CO,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,222.1082425 +CO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,87.125183 +CO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,38.628091 +CO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5679.072733 +CO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3747.565042 +CO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,23.74285 +CO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,73.197059 +CO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,14.338427 +CO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.866649 +CO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,101.6074434 +CO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,20.606867 +CO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,100.6795083 +CO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.982865 +CO,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.0525446 +CO,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,27.600462 +CO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,130.9309822 +CO,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,2.2 +CO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2102.96554 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,181.2750425 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,52.82611351 +CO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.531583 +CO,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,108.5995 +CO,PM2.5 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,20774.13543 +CO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3165.805179 +CO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1462.399418 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.630827305 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,57.90284639 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.024136 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.804842 +CO,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.332036 +CO,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.296099 +CO,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,6.894515 +CO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,63.764249 +CO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,44645.63 +CO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,37.661314 +CO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,136.172581 +CO,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,22.725159 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.731714438 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.401779856 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.433689365 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.411834734 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,228.0483213 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2253.172517 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.806726847 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,472.1151981 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,11.292777 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.01712 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.049644 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,30.90180237 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.554775859 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000171141 +CO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,389.1369408 +CO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.582761329 +CO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,374.8313962 +CO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.407453458 +CO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,71.7846689 +CO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.963923196 +CO,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.444773242 +CO,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.01795414 +CO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17.99848368 +CO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.579041328 +CO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.85764985 +CO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.755296308 +CO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.374124505 +CO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,162.7018033 +CO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003597014 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,15.81433254 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,69.32022464 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,99.30382675 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.384394924 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,215.1458466 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.654787113 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.550586255 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.187967485 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.518762056 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.343289193 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,130.8495434 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,10.4737083 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,273.6094429 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.13049059 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,42.54534081 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.70448562 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.203076216 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000361724 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.047110908 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.520463666 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.465434636 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.369863686 +CO,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,90.37294913 +CO,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.09 +CO,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,340.88734 +CO,Sulfur Dioxide,2A1_Cement-production,,TON,255.93 +CO,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.12 +CO,Sulfur Dioxide,2A6_Other-minerals,,TON,1455.992088 +CO,Sulfur Dioxide,2B_Chemicals-other,,TON,100.5125 +CO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,75.924633 +CO,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.313926 +CO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.995666 +CO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,69.4295 +CO,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0266 +CO,Sulfur Dioxide,2D3h_Printing,,TON,0.001185 +CO,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,3.28484 +CO,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,8.28 +CO,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.483599 +CO,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,5.52106 +CO,Sulfur Dioxide,3Dc_Other-farm,,TON,0.009717 +CO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,614.9973635 +CO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,41.727454 +CO,Sulfur Dioxide,5C_Incineration,,TON,1.12909564 +CO,Sulfur Dioxide,5C_Incineration,biomass,TON,27.63963116 +CO,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.053681 +CO,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,62.581861 +CO,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,6.06028 +CO,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.007 +CO,Volatile Organic Compounds,11C_Other-natural,,TON,865318.571 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.1 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,52.387966 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,475.56 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,225.463134 +CO,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,6541.199183 +CO,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,243.6823655 +CO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,21424.17132 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,2.18629 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1083.140697 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,193.7629476 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,397.0733795 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.357214899 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,8.749416166 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,155.8451301 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,15.60844183 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,13.49029105 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,7422.231878 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.031935 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.00265 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.255795 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1299.258263 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,515.9675497 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001859407 +CO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,799.7778177 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,486.8345451 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,43305.66304 +CO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,396.061422 +CO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8302.60111 +CO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,88.45895849 +CO,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,67.83145631 +CO,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.714549509 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1751.772671 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,35.1636331 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,989.011034 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,355.8412283 +CO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,847.181282 +CO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,830.6933739 +CO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.017022948 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,10.3770855 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,56.12586352 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.292718503 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.010454232 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,136.6859305 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,170.7789295 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2372.4439 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.62644213 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,75.50425475 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,10501.52054 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,9458.972655 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.172103153 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,144.2083004 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.100735712 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,389.9991546 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,568.0613131 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,142.4357225 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007010926 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.2702001 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11274.62766 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.09588777 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3281.615034 +CO,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,35398.87105 +CO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,57.280968 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,3626.955367 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,3201.05965 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,13434.93703 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,701.8756189 +CO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,224695.0737 +CO,Volatile Organic Compounds,2A1_Cement-production,,TON,136.25 +CO,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.54 +CO,Volatile Organic Compounds,2A6_Other-minerals,,TON,745.211182 +CO,Volatile Organic Compounds,2B_Chemicals-other,,TON,596.484876 +CO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,65.731784 +CO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,45.834428 +CO,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0036 +CO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,70.028095 +CO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,21198.06006 +CO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,29.022351 +CO,Volatile Organic Compounds,2D3d_Coating-application,,TON,9695.580587 +CO,Volatile Organic Compounds,2D3e_Degreasing,,TON,127.798841 +CO,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,41.378575 +CO,Volatile Organic Compounds,2D3h_Printing,,TON,403.588255 +CO,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,981.1771408 +CO,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,259.3881198 +CO,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,213.380628 +CO,Volatile Organic Compounds,2H2_Ethanol Production,,TON,19.64 +CO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1180.125814 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1173.590474 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,25.38359337 +CO,Volatile Organic Compounds,3Dc_Other-farm,,TON,62.594699 +CO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7351.472546 +CO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2337.613755 +CO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,461.224888 +CO,Volatile Organic Compounds,5C_Incineration,,TON,1.475092814 +CO,Volatile Organic Compounds,5C_Incineration,biomass,TON,17.16983532 +CO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.073007 +CO,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.3195 +CO,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,262.246559 +CO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1823.233777 +CO,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,359.413274 +CO,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,2.579388 +CT,Ammonia,1A1a_Public-Electricity,biomass,TON,13.06544 +CT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.72628 +CT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.4819879 +CT,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,3.7983976 +CT,Ammonia,1A1a_Public-Electricity,light_oil,TON,1.0035884 +CT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,138.117707 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.705999316 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.127982229 +CT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,10.98159984 +CT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.890986169 +CT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.43091273 +CT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,2.040409148 +CT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,28.05635873 +CT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.436592846 +CT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.14922475 +CT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.3719536 +CT,Ammonia,1A3bii_Road-LDV,light_oil,TON,968.3912 +CT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.789013 +CT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,117.49732 +CT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.85123754 +CT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.238017389 +CT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.0590329 +CT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14.78623589 +CT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.213992362 +CT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.4006294 +CT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.046446119 +CT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.832235 +CT,Ammonia,1A3c_Rail,diesel_oil,TON,0.428841743 +CT,Ammonia,1A3c_Rail,light_oil,TON,0.002073525 +CT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.57886917 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.0149995 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,18.55081975 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.8143968 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.13440005 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.86646475 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.733446937 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.500413267 +CT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.38987096 +CT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.406574443 +CT,Ammonia,1A4bi_Residential-stationary,biomass,TON,344.7585229 +CT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,267.5331 +CT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.9398563 +CT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,441.5471446 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.189627565 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.0087024 +CT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.015704152 +CT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.83737749 +CT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.807890926 +CT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.32508539 +CT,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.091518 +CT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,8.8425 +CT,Ammonia,3B1a_Cattle-dairy,,TON,1153.739981 +CT,Ammonia,3B1b_Cattle-non-dairy,,TON,60.47693652 +CT,Ammonia,3B2_Manure-sheep,,TON,20.12472 +CT,Ammonia,3B3_Manure-swine,,TON,25.9188732 +CT,Ammonia,3B4_Manure-other,,TON,154.704 +CT,Ammonia,3B4_Manure-poultry,,TON,612.561048 +CT,Ammonia,3B4d_Manure-goats,,TON,31.9704 +CT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,398.3589371 +CT,Ammonia,5C_Incineration,biomass,TON,16.197359 +CT,Ammonia,5D1_Wastewater-domestic,,TON,267.829038 +CT,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.587243 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,210046.0439 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,237273.8764 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12930.36414 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,668983.9439 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,12375.75444 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.5867011 +CT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,167447.86 +CT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,11545121 +CT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,133822.02 +CT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1717038.8 +CT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,48907.8442 +CT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,6303.25859 +CT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2169.9882 +CT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,709903.02 +CT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4934.50156 +CT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,666109.65 +CT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,52583.64015 +CT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60078.77 +CT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3460.687 +CT,Carbon Dioxide,1A3c_Rail,light_oil,TON,160.844513 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,90131.3284 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,124448.9872 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5522.1517 +CT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,47949.45987 +CT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,324652.5593 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23332.36559 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,629.7324106 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.55590303 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1922.4855 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,56181.53219 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,99512.69647 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,90162.351 +CT,Carbon Monoxide,11C_Other-natural,,TON,7415.344 +CT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,73.5 +CT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,4.95818991 +CT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,102.6859 +CT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,24.3002375 +CT,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,3.27019863 +CT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,350.3238673 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1029.61131 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10859.63854 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,662.827286 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,970.324148 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,50.64445061 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.245134496 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,13.2694533 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,949.450456 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2788.428575 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2781.587933 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.18646978 +CT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2139.826617 +CT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2567.4925 +CT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,173585.03 +CT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1013.7911 +CT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,30294.93 +CT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,210.187438 +CT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,311.229226 +CT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,14.432736 +CT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1872.883052 +CT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,180.117142 +CT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1193.2149 +CT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1996.582218 +CT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2858.576 +CT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,156.3437773 +CT,Carbon Monoxide,1A3c_Rail,light_oil,TON,40.04362392 +CT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,400.9539379 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,121.8294138 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,270.1800162 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,11.34274039 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.770627331 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1634.624531 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,477.6133371 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,28620.34871 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,129.5018756 +CT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,195.8471067 +CT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,84988.23422 +CT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,45804.22916 +CT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1337.6665 +CT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.699278 +CT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1153.63753 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,100.1583987 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,178.3974906 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.06119337 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.579701 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,11410.00222 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,182.0642167 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11848.6686 +CT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,11.4625 +CT,Carbon Monoxide,2H2_Food-and-beverage,,TON,455.6146 +CT,Carbon Monoxide,3F_Ag-res-on-field,,TON,50.42648 +CT,Carbon Monoxide,5A_Solid-waste-disposal,,TON,9.9868224 +CT,Carbon Monoxide,5C_Incineration,,TON,0.006273648 +CT,Carbon Monoxide,5C_Incineration,biomass,TON,746.1737688 +CT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +CT,Carbon Monoxide,5C_Open-burning-residential,,TON,1297.354 +CT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,97.7613 +CT,Methane,1A3bii_Road-LDV,diesel_oil,TON,8.4551716 +CT,Methane,1A3bii_Road-LDV,light_oil,TON,478.87705 +CT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.430888 +CT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,102.99591 +CT,Methane,1A3biii_Road-bus,diesel_oil,TON,2.580526 +CT,Methane,1A3biii_Road-bus,light_oil,TON,0.609889066 +CT,Methane,1A3biii_Road-bus,natural_gas,TON,10.532822 +CT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,117.209199 +CT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.22463808 +CT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.005135 +CT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,4.65182395 +CT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.343763 +CT,Nitrogen Oxides,11C_Other-natural,,TON,530.5261 +CT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,69.8 +CT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,17.8672714 +CT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,387.64594 +CT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,158.773268 +CT,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,21.805084 +CT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,616.6322273 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1427.629056 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1460.176426 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,97.07645883 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,390.116708 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,232.248489 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,41.22633237 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,58.00895495 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1799.421557 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5039.064764 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,54.83077236 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.03790838 +CT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,416.9749616 +CT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,551.81893 +CT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,21068.6 +CT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,534.4975 +CT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3929.901 +CT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,297.233561 +CT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,30.7069697 +CT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,9.668643 +CT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6036.65534 +CT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,25.7897659 +CT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3852.5857 +CT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,203.6342811 +CT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,118.0995 +CT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1357.721206 +CT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.70257455 +CT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2895.280634 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,44.6754159 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1182.775384 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,124.7829444 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.26853416 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2007.167098 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,824.337827 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,586.5819327 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,34.3755784 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,436.2870454 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1137.947647 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,711.830892 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4815.5985 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,16.917415 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2556.662 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,202.7917201 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.123172935 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.013659944 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.814865 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,134.8046508 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1022.918927 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,560.72059 +CT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,4.58568 +CT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1.850971 +CT,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,3.3956159 +CT,Nitrogen Oxides,5C_Incineration,,TON,0.288442992 +CT,Nitrogen Oxides,5C_Incineration,biomass,TON,3094.358603 +CT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +CT,Nitrogen Oxides,5C_Open-burning-residential,,TON,91.5779 +CT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.491477 +CT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.47903469 +CT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,525.60456 +CT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.4372304 +CT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,97.69297 +CT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.15822329 +CT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.26675442 +CT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.31416443 +CT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.661673267 +CT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.24534669 +CT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.0239498 +CT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.822312598 +CT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.0661051 +CT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,17.10985 +CT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.998784707 +CT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,6.266874 +CT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,7.8909148 +CT,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.7671695 +CT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,134.3389354 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,792.1719271 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.36977668 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.00975884 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.604503339 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,37.20931143 +CT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,15810.811 +CT,PM10 Filterable,1A3c_Rail,diesel_oil,TON,17.00272942 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,101.5158742 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,75.11254105 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,33.89221148 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.176181644 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.12475188 +CT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,288.93575 +CT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.0150451 +CT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.0513368 +CT,PM10 Filterable,2A2_Lime-production,,TON,0.105684173 +CT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,6521.61528 +CT,PM10 Filterable,2A6_Other-minerals,,TON,1519.430177 +CT,PM10 Filterable,2B_Chemicals-other,,TON,0.008595724 +CT,PM10 Filterable,2C_Iron-steel-alloy,,TON,3.175803 +CT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.015151945 +CT,PM10 Filterable,2D3d_Coating-application,,TON,0.113335506 +CT,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.3689 +CT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,10.02190147 +CT,PM10 Filterable,2H2_Food-and-beverage,,TON,102.5921672 +CT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,11.53014984 +CT,PM10 Filterable,3Dc_Other-farm,,TON,703.130932 +CT,PM10 Filterable,5A_Solid-waste-disposal,,TON,1.338309853 +CT,PM10 Filterable,5C_Incineration,,TON,0.014961823 +CT,PM10 Filterable,5C_Incineration,biomass,TON,17.33618915 +CT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +CT,PM10 Filterable,5C_Open-burning-residential,,TON,579.9947 +CT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,13.77737 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,18.59766 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.21546854 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6.990249 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,9.6838275 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.8161377 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,224.3485775 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,119.4126991 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.57299779 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.591588821 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,823.9345853 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,27.29589452 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.93872021 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,5.985584546 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,74.82920043 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,432.1650568 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.33978353 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +CT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,45.98331863 +CT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,15810.811 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,38.794886 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1595.212 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,41.94347 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,232.95702 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,19.4496835 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.062977635 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.21838334 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,249.1341795 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.89279999 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,253.78636 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.60937897 +CT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.517913 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,36.90467871 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.022345858 +CT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,181.3819782 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,104.9796217 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,167.3406414 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,37.29900566 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.394764691 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,33.53271957 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,79.087446 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.46367597 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.692764684 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,33.10264819 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,330.4007003 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6474.17068 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,636.7286 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.2368555 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.1334724 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.70982201 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.406732825 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.02446E-05 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.662606 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,94.70388289 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.38535889 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,70.933474 +CT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.13731765 +CT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6521.61528 +CT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1519.430177 +CT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,0.008595724 +CT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5.65389 +CT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.020971426 +CT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.113335506 +CT,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.3689 +CT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,10.02190147 +CT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1209.193733 +CT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,11.53014984 +CT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,703.130932 +CT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,9.560455 +CT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,2.710993204 +CT,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.016202429 +CT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,29.37826672 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,579.9947 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.77737 +CT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,17.10985 +CT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.827447238 +CT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1.5112293 +CT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.9372856 +CT,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.7668408 +CT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,107.0353954 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,682.5238916 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.420998009 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.598937154 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.678932002 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,36.8579195 +CT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,2844.4263 +CT,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,15.30245644 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,87.30699348 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,69.00260144 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.58711681 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.135860353 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.41462446 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,222.0529 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.7800811 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.7782343 +CT,PM2.5 Filterable,2A2_Lime-production,,TON,0.060154473 +CT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,652.161528 +CT,PM2.5 Filterable,2A6_Other-minerals,,TON,189.9292271 +CT,PM2.5 Filterable,2B_Chemicals-other,,TON,0.008595724 +CT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2.453223 +CT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.011149945 +CT,PM2.5 Filterable,2D3d_Coating-application,,TON,0.112324536 +CT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,9.373322468 +CT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,6.861286671 +CT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,11.24778872 +CT,PM2.5 Filterable,3Dc_Other-farm,,TON,140.609727 +CT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,1.338309853 +CT,PM2.5 Filterable,5C_Incineration,,TON,0.015251959 +CT,PM2.5 Filterable,5C_Incineration,biomass,TON,12.03913591 +CT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +CT,PM2.5 Filterable,5C_Open-burning-residential,,TON,531.1524 +CT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,10.62107 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,18.59766 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.04413107 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2.2346039 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.7301954 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.815809 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,197.0450375 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,115.8198316 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.4476913 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.5910471 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,714.1725175 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,22.38174301 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.514475458 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.057606706 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,74.52054362 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,419.1999943 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.80431227 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +CT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,37.98624022 +CT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,2844.4263 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,25.929364 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,588.009 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,30.96853 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.80351 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,15.4168995 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.636503772 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.1073599 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,201.9815399 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.62380746 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,191.13475 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.56852832 +CT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.689866 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,33.81819979 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.020598357 +CT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,169.191427 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,90.76928844 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,161.2337483 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.99167224 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.354447712 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.8231186 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,76.7147741 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.79857846 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.692764684 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.10957446 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,303.9826716 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6469.94326 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,569.8456 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.001894 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.8603633 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.17851827 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.294193612 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.02446E-05 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.5827265 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,87.12830715 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.74381147 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,65.2586828 +CT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.09178795 +CT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,652.161528 +CT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,189.9292271 +CT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,0.008595724 +CT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4.93131 +CT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.016969426 +CT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.112324536 +CT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,9.373322468 +CT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1113.463317 +CT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,11.24778872 +CT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,140.609727 +CT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,5.307176 +CT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,2.710993204 +CT,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.016295871 +CT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.08141008 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,531.1524 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,10.62107 +CT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,64.9 +CT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,13.57213115 +CT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,585.1583 +CT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,222.851057 +CT,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.19419516 +CT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,33.73367455 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.472148064 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.716696577 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.294068159 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,41.51368824 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.13496374 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,164.4434535 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,118.6504433 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,20.28713194 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,12.48289636 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.227210139 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.70471E-05 +CT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,53.82571757 +CT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.43458107 +CT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,230.08527 +CT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.1516444 +CT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.21917 +CT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.418692604 +CT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.125618756 +CT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.011488945 +CT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.05778884 +CT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.09834056 +CT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.6669727 +CT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.047948473 +CT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.1973186 +CT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,11.18624518 +CT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.0029385 +CT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1009.941493 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.075045545 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.92876318 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,801.1781032 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.158153324 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.39975546 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.707223215 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.283214497 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.122099758 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.907009725 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.915998058 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,116.279117 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,11396.9115 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,40.03787 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,15.1540114 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.437969313 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.011466572 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.22261E-05 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.03629495 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.020403989 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.134538904 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.63829791 +CT,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,6.69616 +CT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.8159275 +CT,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,4.969137525 +CT,Sulfur Dioxide,5C_Incineration,,TON,0.068660695 +CT,Sulfur Dioxide,5C_Incineration,biomass,TON,216.4929388 +CT,Sulfur Dioxide,5C_Open-burning-residential,,TON,15.26298 +CT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.15917 +CT,Volatile Organic Compounds,11C_Other-natural,,TON,61106.55 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,4.88483 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.746500397 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,10.983759 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,5.23969804 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.11440572 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,60.16269533 +CT,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,12.8887426 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,128.3620145 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,449.3167081 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.705606975 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,27.94188829 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.278272272 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.295459768 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.535866784 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,135.8916909 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,512.5522113 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,203.6962499 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000619802 +CT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,106.589008 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,266.73225 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,16717.903 +CT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,154.62195 +CT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2422.1613 +CT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,33.4852705 +CT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,14.15513637 +CT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.2376996 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,647.838968 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,6.5819919 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,259.63207 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,94.8422945 +CT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,568.3827 +CT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,57.87785632 +CT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.470762043 +CT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,85.11744738 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.452762505 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.18819903 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.56414903 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.089902084 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,115.4850964 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,109.8229809 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1424.162549 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.404317031 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,45.0926017 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6438.626549 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,8913.691741 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,187.2732 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.6578995 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,138.91173 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.4520427 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,15.025426 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000237313 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.828916 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3023.286469 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,42.28650837 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4411.493013 +CT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,130.980381 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,285.4987561 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,235.8749865 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1550.640523 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2469.533084 +CT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.55781 +CT,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.0598762 +CT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +CT,Volatile Organic Compounds,2B_Chemicals-other,,TON,57.22873491 +CT,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0 +CT,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +CT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.03835 +CT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,15064.82648 +CT,Volatile Organic Compounds,2D3d_Coating-application,,TON,7401.155952 +CT,Volatile Organic Compounds,2D3e_Degreasing,,TON,3160.751335 +CT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,12.495 +CT,Volatile Organic Compounds,2D3h_Printing,,TON,795.4771498 +CT,Volatile Organic Compounds,2D3i_Other-solvent-use,Other_Fuel,TON,74.34635374 +CT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,13.375414 +CT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,159.7107294 +CT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,78.1811346 +CT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,94.83403 +CT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,3.133465 +CT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,1.41219997 +CT,Volatile Organic Compounds,5C_Incineration,,TON,0.022204338 +CT,Volatile Organic Compounds,5C_Incineration,biomass,TON,30.30710974 +CT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +CT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,130.6512 +CT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,13.26762 +CT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,73.506765 +CT,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,68.2747 +CT,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0179 +DC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.121842699 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.004537122 +DC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.006 +DC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +DC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.08982943 +DC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.057364331 +DC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.530045 +DC,Ammonia,1A3bii_Road-LDV,light_oil,TON,134.359 +DC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.445985 +DC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.7818 +DC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.7956719 +DC,Ammonia,1A3biii_Road-bus,light_oil,TON,0.0744771 +DC,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.106728 +DC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.7393371 +DC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0613485 +DC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.893775 +DC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.759061103 +DC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.15685 +DC,Ammonia,1A3c_Rail,diesel_oil,TON,0.090806197 +DC,Ammonia,1A3c_Rail,light_oil,TON,7.21805E-05 +DC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.014102748 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.08 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.79 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.051723578 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.105727336 +DC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.002544017 +DC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.29230514 +DC,Ammonia,1A4bi_Residential-stationary,biomass,TON,22.711919 +DC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.18 +DC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,140 +DC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00260703 +DC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.022648109 +DC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.014161923 +DC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.0874198 +DC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.09 +DC,Ammonia,5D1_Wastewater-domestic,,TON,2.23234 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15000.8284 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8071.074987 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,445.97707 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,257157.9221 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4759.018535 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.29335 +DC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,23885.42 +DC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,1853547 +DC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18604.5 +DC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,238888 +DC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,46903.63 +DC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,2155.832 +DC,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3018.37 +DC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,48646.65 +DC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1719.495 +DC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,129037.4 +DC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,23372.5158 +DC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11779 +DC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,106.454 +DC,Carbon Dioxide,1A3c_Rail,light_oil,TON,5.748879 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6356.1885 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8765.137848 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,319.28117 +DC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,312.881 +DC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,21501.88773 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,319.159 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1610.5459 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1743.9624 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6052.42 +DC,Carbon Monoxide,11C_Other-natural,,TON,129.525 +DC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.1535259 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,58.9463168 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,371.6233695 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22.5438118 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.787754781 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,206.0636672 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1071.853693 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1080.760096 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.0932348 +DC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4.812239 +DC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,207.9046 +DC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,20151.05 +DC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,132.332 +DC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3034.17 +DC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,157.30833 +DC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,110.99771 +DC,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,13.5936 +DC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,118.8716 +DC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,74.49619 +DC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,301.329 +DC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,651.1037 +DC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,432.501 +DC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,29.60640476 +DC,Carbon Monoxide,1A3c_Rail,light_oil,TON,1.397604 +DC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.27540072 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.02300386 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,7.076211173 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,685.9242801 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,33.670021 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2042.222662 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8.1749846 +DC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1.283762 +DC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,6116.328354 +DC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,2852.6637 +DC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,21.25 +DC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,280.16 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.07568 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,404.17039 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.4870207 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,775.165 +DC,Carbon Monoxide,2H2_Food-and-beverage,,TON,58.76 +DC,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.881198 +DC,Methane,1A3bii_Road-LDV,light_oil,TON,47.9219 +DC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.555796 +DC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8.75574 +DC,Methane,1A3biii_Road-bus,diesel_oil,TON,1.0493453 +DC,Methane,1A3biii_Road-bus,light_oil,TON,0.3779837 +DC,Methane,1A3biii_Road-bus,natural_gas,TON,24.5368 +DC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.1707993 +DC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.1214496 +DC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.011424 +DC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.02772576 +DC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.13363 +DC,Nitrogen Oxides,11C_Other-natural,,TON,14.6203 +DC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,245.2822 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,105.07364 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,49.30200845 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.3115955 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.46312511 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,209.7943701 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1937.084517 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,20.2269338 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.0189542 +DC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,0.10639951 +DC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,70.91048 +DC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,2486.05 +DC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,75.9565 +DC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,395.13 +DC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,395.49243 +DC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,9.960074 +DC,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,10.4978 +DC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,367.6635 +DC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,8.383346 +DC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,825.306 +DC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,74.815808 +DC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.3025 +DC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,202.2650573 +DC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.0256453 +DC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,21.9340935 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,57.51959566 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.44229276 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,766.4801899 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,58.130927 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,39.52976268 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.21716632 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2.838669 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,75.45988139 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,42.746352 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,76.51 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,658.56 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.12973 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,4.883842 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.5839971 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,42.58897 +DC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.07423744 +DC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,58.0527 +DC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.0661877 +DC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.12245 +DC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.16208714 +DC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.0984741 +DC,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.37408 +DC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.0753415 +DC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.05674357 +DC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.27226 +DC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.677168287 +DC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.133773 +DC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.2000492 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.553820531 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,4.620756919 +DC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,766.083 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.845733948 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.183427659 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.3038046 +DC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.59 +DC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.4 +DC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1276.6515 +DC,PM10 Filterable,2A6_Other-minerals,,TON,0 +DC,PM10 Filterable,2H2_Food-and-beverage,,TON,0.46 +DC,PM10 Filterable,3Dc_Other-farm,,TON,0 +DC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.535015 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.23740179 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.830458147 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.054489559 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.923689721 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,13.40300878 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,166.1196434 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.432971298 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +DC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.10900041 +DC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,766.083 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,6.207379 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,313.466 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.66281 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.8049 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,34.755977 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.6098118 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.619878 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,29.88422 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.384612 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,79.9529 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.47213879 +DC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.33514 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,6.818198387 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000774858 +DC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.80517321 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.78371808 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.932413202 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.92751864 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.5754243 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,2.42482358 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.039688344 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.2170717 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,14.16039826 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,404.27889 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,10.22 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.64 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.440295 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1.59579682 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.39201131 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,4.032005 +DC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1276.6515 +DC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,158.41 +DC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.0500123 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.134374595 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,4.484576685 +DC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,191.521 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.800079003 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.087095008 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.00505831 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.53 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.77 +DC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,127.66515 +DC,PM2.5 Filterable,2A6_Other-minerals,,TON,0 +DC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.43 +DC,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.384977 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.990281 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.826304664 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.054489559 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.611194444 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,13.15987776 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,161.1362099 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.842848359 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +DC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.09521639 +DC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,191.521 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,3.659225 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,81.3271 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.52061 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.2236 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,25.177097 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.2706764 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.126637 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,21.97713 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.2220951 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,57.3509 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.06229662 +DC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.944298 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,6.303334984 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00071538 +DC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.77459729 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.904074236 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.873111093 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.42573089 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.4081864 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,2.23728916 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.039688344 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.21055978 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,13.02765843 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,403.89419 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.16 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.01 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.427086 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1.46825122 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.38025136 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,3.709442 +DC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,127.66515 +DC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,158.38 +DC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,729.61822 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.283824736 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.156376031 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.00985233 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.115448644 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1.016494176 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4.798432793 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.087373818 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85235E-05 +DC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,0.02339391 +DC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.2039232 +DC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,36.9398 +DC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.159508 +DC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.76086 +DC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.40315268 +DC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.04296393 +DC,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.0159807 +DC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.4195908 +DC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.03426814 +DC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.110304 +DC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.465796134 +DC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.234746 +DC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,2.031841522 +DC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000105199 +DC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.130465437 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,375.0271737 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,42.64106 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.79523625 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.12039455 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.160805706 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.007058648 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.005919598 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.391738609 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,5.9746254 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,603.57 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.2 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00602482 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.029318984 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.03740743 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.1100422 +DC,Volatile Organic Compounds,11C_Other-natural,,TON,1033.35 +DC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.01907444 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.8102244 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.32860011 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.053961505 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.084740101 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,10.2454049 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,197.0151971 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,79.42315922 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +DC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,0.22858816 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,21.36228 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,1592.882 +DC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.334 +DC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,198.14 +DC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,39.183013 +DC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,6.905577 +DC,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.55287 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34.41263 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,3.188906 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,88.0474 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,31.1016117 +DC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,59.0275 +DC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,10.61095525 +DC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.052748313 +DC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.52212458 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.091532222 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.075913047 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,48.13667441 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.7418328 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,103.6366028 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.026278035 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,0.29511017 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,509.5490139 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,548.989796 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,3.03 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,38.52 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.798458 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,57.2818697 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.891882 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,269.119467 +DC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.8022 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,12.26182868 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,151.0080903 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,103.2327 +DC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +DC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2605 +DC,Volatile Organic Compounds,2D3d_Coating-application,,TON,707.8955466 +DC,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,49.5171 +DC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.7 +DC,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,134.607975 +DC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3.93194 +DC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,22.36 +DC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,92.3 +DC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,57.396 +DE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.858731188 +DE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,12.923 +DE,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.2031072 +DE,Ammonia,1A1a_Public-Electricity,light_oil,TON,52.352868 +DE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,13.5326368 +DE,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.317195798 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.021338659 +DE,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.091000344 +DE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.49947151 +DE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.012640748 +DE,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.391400402 +DE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,33.90640721 +DE,Ammonia,1A2c_Chemicals,diesel_oil,TON,0.0005676 +DE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.834517301 +DE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.050336099 +DE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.503329 +DE,Ammonia,1A3bii_Road-LDV,light_oil,TON,267.6296 +DE,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.343796 +DE,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.37657 +DE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.86464676 +DE,Ammonia,1A3biii_Road-bus,light_oil,TON,0.08257338 +DE,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.0751992 +DE,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.1008699 +DE,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.078148956 +DE,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.866208 +DE,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.887092697 +DE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.679381 +DE,Ammonia,1A3c_Rail,diesel_oil,TON,0.188409448 +DE,Ammonia,1A3c_Rail,light_oil,TON,4.59407E-05 +DE,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.206600457 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.242679672 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.690244415 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002718811 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.327998144 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.145764214 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.298115709 +DE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.108003436 +DE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.146824844 +DE,Ammonia,1A4bi_Residential-stationary,biomass,TON,56.7351855 +DE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,7.436 +DE,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.4172002 +DE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3.224904 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.552724463 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.015810648 +DE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003676909 +DE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.218994958 +DE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.127134714 +DE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.0149549 +DE,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00817 +DE,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00117 +DE,Ammonia,2B_Chemicals-other,Other_Fuel,TON,10.30532 +DE,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,24.8500044 +DE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,21.3845 +DE,Ammonia,3B1a_Cattle-dairy,,TON,217.1138345 +DE,Ammonia,3B1b_Cattle-non-dairy,,TON,328.9460233 +DE,Ammonia,3B2_Manure-sheep,,TON,3.378683 +DE,Ammonia,3B3_Manure-swine,,TON,31.8938495 +DE,Ammonia,3B4_Manure-other,,TON,110.7965 +DE,Ammonia,3B4_Manure-poultry,,TON,3918.765789 +DE,Ammonia,3B4d_Manure-goats,,TON,24.81767 +DE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,549.6623 +DE,Ammonia,5A_Solid-waste-disposal,,TON,0 +DE,Ammonia,5C_Open-burning-yard-waste,,TON,0.51351209 +DE,Ammonia,5D1_Wastewater-domestic,,TON,5.195463 +DE,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.00716107 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39053.3447 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39645.48069 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2159.78859 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,225741.2779 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4173.435528 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.293918 +DE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,51981.84 +DE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3288093 +DE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,44698.45 +DE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,577023 +DE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,128484.871 +DE,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,2352.0345 +DE,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3181.088 +DE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,193231.867 +DE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1883.4101 +DE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,378768.1 +DE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,22590.3366 +DE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31626.38 +DE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,76.15787 +DE,Carbon Dioxide,1A3c_Rail,light_oil,TON,3.443579 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17912.5534 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,24724.81787 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1175.23015 +DE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13283.03242 +DE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,84865.95983 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,67999.46754 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1178.498884 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.7158408 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,450.127 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,14553.30339 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15655.8909 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,72046.07 +DE,Carbon Monoxide,11C_Other-natural,,TON,3800.409 +DE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.45383684 +DE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,168.04925 +DE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.26942 +DE,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0 +DE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,616.778346 +DE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,246.39364 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,151.8057402 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1807.750962 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,110.3182995 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7.812839491 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.297608478 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,13.44589676 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,23.08640732 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1292.469742 +DE,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.00355486 +DE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,16.003424 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,940.8693422 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,946.7492121 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.0932757 +DE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,685.287475 +DE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,479.8044 +DE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,49183.99 +DE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,333.9257 +DE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10039.33 +DE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,296.90226 +DE,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,124.11588 +DE,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,19.73777 +DE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,422.28571 +DE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,69.83144 +DE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,742.2442 +DE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,895.28774 +DE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1359.625 +DE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,60.57252135 +DE,Carbon Monoxide,1A3c_Rail,light_oil,TON,0.9069926 +DE,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,347.9262211 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,31.98178256 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.96277502 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.018661525 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,478.9878464 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94.9093409 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5741.345716 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,26.4023535 +DE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,54.43708581 +DE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,21808.42142 +DE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,6685.43195 +DE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,46.47498 +DE,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.503199 +DE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,334.4753 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,308.3128511 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,294.2016521 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.18861244 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.346323 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,3043.508729 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.3021919 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9120.045 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.528 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,2.445 +DE,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,12.9505 +DE,Carbon Monoxide,2B_Chemicals-other,,TON,2018.089481 +DE,Carbon Monoxide,2C_Iron-steel-alloy,,TON,295 +DE,Carbon Monoxide,2D3d_Coating-application,,TON,0.00652 +DE,Carbon Monoxide,2H2_Food-and-beverage,,TON,86.550988 +DE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0673042 +DE,Carbon Monoxide,3F_Ag-res-on-field,,TON,258.7209 +DE,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +DE,Carbon Monoxide,5C_Incineration,biomass,TON,1.938109095 +DE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,97.1721 +DE,Carbon Monoxide,5C_Open-burning-residential,,TON,37.02518 +DE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,55.351525 +DE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.12201 +DE,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.7748948 +DE,Methane,1A3bii_Road-LDV,light_oil,TON,153.22064 +DE,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.850227 +DE,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.87262 +DE,Methane,1A3biii_Road-bus,diesel_oil,TON,2.05436316 +DE,Methane,1A3biii_Road-bus,light_oil,TON,0.28825916 +DE,Methane,1A3biii_Road-bus,natural_gas,TON,17.56564 +DE,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.5844942 +DE,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.09370385 +DE,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.690842 +DE,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.72858039 +DE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.588021 +DE,Nitrogen Oxides,11C_Other-natural,,TON,919.883 +DE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,155.4401952 +DE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,2352.3 +DE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +DE,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0 +DE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1136.3191 +DE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,25.27351 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,263.7586447 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,242.5826665 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16.18190626 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2.869714623 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.98278019 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,264.4950983 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,247.7815602 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1812.642457 +DE,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.01420275 +DE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,25.56865 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1700.253099 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,17.87602884 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.01896253 +DE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,27.99873524 +DE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,164.21839 +DE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,6881.317 +DE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,168.7891 +DE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1439.84 +DE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,876.69995 +DE,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,10.984496 +DE,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,12.46508 +DE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1426.34461 +DE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,9.443338 +DE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2287.8227 +DE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,92.0695688 +DE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,71.4113 +DE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,406.838033 +DE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.013003484 +DE,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3442.589471 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,10.69133853 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.31723689 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.187153446 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,516.8869626 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,163.833506 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,112.6622411 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.9360248 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,120.7417364 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,285.6209453 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,108.3742885 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,167.3098 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,9.0741 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,703.4606 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,617.5879252 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.514429244 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.042067146 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.406496 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,34.0992404 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,175.843139 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,577.5304 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.187 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.8102 +DE,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,2.59009 +DE,Nitrogen Oxides,2B_Chemicals-other,,TON,17.42470884 +DE,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,106.7 +DE,Nitrogen Oxides,2D3d_Coating-application,,TON,0.25585 +DE,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,15.34796 +DE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.111523 +DE,Nitrogen Oxides,3F_Ag-res-on-field,,TON,7.65445 +DE,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +DE,Nitrogen Oxides,5C_Incineration,,TON,0.027366238 +DE,Nitrogen Oxides,5C_Incineration,biomass,TON,14.87884376 +DE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,2.874915 +DE,Nitrogen Oxides,5C_Open-burning-residential,,TON,2.6135377 +DE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.1108343 +DE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,2.5262 +DE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.14638795 +DE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,178.1185 +DE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.140243 +DE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.43284 +DE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.202025142 +DE,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.11541584 +DE,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.2498412 +DE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.20717217 +DE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.092271 +DE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.5440578 +DE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.763458165 +DE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.3619693 +DE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.953447738 +DE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,121.25 +DE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.1913171 +DE,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.12888 +DE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,29.96298722 +DE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,14.30349679 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6.500822727 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.443308769 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.2157123 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.64937856 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,165.757948 +DE,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.0007097 +DE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.488982625 +DE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,3990.47 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,34.56202497 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.373459265 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.022694048 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.956896292 +DE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.03865 +DE,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.563219 +DE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.342147 +DE,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.00696 +DE,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.000695 +DE,PM10 Filterable,2A2_Lime-production,,TON,2.188285 +DE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,5225.417 +DE,PM10 Filterable,2A6_Other-minerals,,TON,42.3370561 +DE,PM10 Filterable,2B_Chemicals-other,,TON,37.68997258 +DE,PM10 Filterable,2C_Iron-steel-alloy,,TON,47.91765 +DE,PM10 Filterable,2C5_Lead-production,,TON,0.00511128 +DE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,5.07 +DE,PM10 Filterable,2D3d_Coating-application,,TON,0.71197655 +DE,PM10 Filterable,2H2_Food-and-beverage,,TON,16.7207281 +DE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,17.40662918 +DE,PM10 Filterable,3Dc_Other-farm,,TON,1802.095647 +DE,PM10 Filterable,3F_Ag-res-on-field,,TON,26.0516 +DE,PM10 Filterable,5A_Solid-waste-disposal,,TON,4.66 +DE,PM10 Filterable,5C_Incineration,,TON,0.0342395 +DE,PM10 Filterable,5C_Incineration,biomass,TON,6.255 +DE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,9.7747 +DE,PM10 Filterable,5C_Open-burning-residential,,TON,16.54 +DE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,8.14 +DE,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0846595 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.191070265 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,626.87 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.5574535 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.3552 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,50.99375314 +DE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,53.21009679 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,21.96569202 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.080064013 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.264016846 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6.721716619 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.599498801 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,75.32403048 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,38.6728157 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,215.0361134 +DE,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.00163254 +DE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.618951264 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,145.8131429 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.52332008 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151612 +DE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,14.82512664 +DE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3990.47 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,10.703113 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,345.7139 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.26181 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,60.5583 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,55.4529735 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.35011805 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.3314232 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,83.581132 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.26953192 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,159.19892 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.25164314 +DE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.856054 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,14.29294394 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00049944 +DE,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,263.1665038 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,34.64928302 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.635065505 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.029318784 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.799149583 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.7159572 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.852380212 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.148046995 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.204430976 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,86.42351431 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,962.908565 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,22.12215 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.24117 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.48245 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,54.3849062 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.716621474 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000216922 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6226175 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,27.03070597 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.5190649 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,35.522615 +DE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.02151 +DE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00278 +DE,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,2.188285 +DE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5225.4288 +DE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,44.3194661 +DE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,53.18178438 +DE,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,53.847 +DE,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0884 +DE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,5.07 +DE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.71197655 +DE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,250.4944401 +DE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,17.41021088 +DE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1803.660247 +DE,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,26.02516 +DE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,4.66 +DE,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.035316501 +DE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.451750599 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,9.7747 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,16.552419 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,8.1792115 +DE,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0656812 +DE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.679199215 +DE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,121.25 +DE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.1804408 +DE,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.11928 +DE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,27.56492654 +DE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,14.30343532 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5.590710059 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.566098765 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.163039707 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.60867294 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,168.8264885 +DE,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.00017048 +DE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.475160225 +DE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1001.322 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,30.8021564 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.182399696 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.009351417 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.117214888 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,7.71486 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.432844 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.730148 +DE,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.00696 +DE,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.000695 +DE,PM2.5 Filterable,2A2_Lime-production,,TON,2.042631 +DE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,522.5307 +DE,PM2.5 Filterable,2A6_Other-minerals,,TON,11.72210154 +DE,PM2.5 Filterable,2B_Chemicals-other,,TON,31.26978819 +DE,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,37.76 +DE,PM2.5 Filterable,2C5_Lead-production,,TON,0.00455571 +DE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,1.27 +DE,PM2.5 Filterable,2D3d_Coating-application,,TON,0.589816877 +DE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,6.603030589 +DE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,15.48865824 +DE,PM2.5 Filterable,3Dc_Other-farm,,TON,430.5977176 +DE,PM2.5 Filterable,3F_Ag-res-on-field,,TON,26.0516 +DE,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,4.53 +DE,PM2.5 Filterable,5C_Incineration,,TON,0.027683 +DE,PM2.5 Filterable,5C_Incineration,biomass,TON,4.956 +DE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,9.7747 +DE,PM2.5 Filterable,5C_Open-burning-residential,,TON,15.15 +DE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,6.58 +DE,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0846595 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.485918315 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,626.87 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.5535668 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.3456 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,48.71208621 +DE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,53.21003532 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,21.30661639 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.060317489 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.264007793 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,5.811626887 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.72231888 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,70.22077455 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,28.17673636 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,217.7814403 +DE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.00109332 +DE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.617589557 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,141.4386779 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.00540826 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151612 +DE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,11.74919744 +DE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1001.322 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,7.6219423 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,131.29123 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.34634 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,21.62686 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,43.7095697 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.17121919 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.1172655 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,66.805762 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.16464593 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,123.61626 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.98191416 +DE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.171001 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,13.15405995 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000459485 +DE,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,243.5295481 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,30.74565019 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.464479116 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.01648647 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.220132531 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.2444978 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.322458481 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.148046995 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.928303159 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,79.51352776 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,962.387985 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,19.79836 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.110795 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.870451 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,52.75337657 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.659297775 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000216922 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6039388 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,24.86841597 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.4134948 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,32.680854 +DE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.02151 +DE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00278 +DE,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,2.042631 +DE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,522.54288 +DE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,13.73938654 +DE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,46.76160024 +DE,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,48.79 +DE,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0138444 +DE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,1.27 +DE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.592416877 +DE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,240.3767426 +DE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,15.48889424 +DE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,432.7267476 +DE,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,26.02516 +DE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,4.53 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.028781878 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.152728722 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,9.7747 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,15.158535 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.6123785 +DE,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0543133 +DE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.73832451 +DE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,9194.4 +DE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +DE,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0 +DE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,153.0114 +DE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,105.5920745 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.741906406 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.769503568 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.047803464 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.325049396 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.08358498 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1274.113621 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,383.2703282 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,217.0214157 +DE,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.02014982 +DE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.1146959 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4.212182008 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.076620177 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85361E-05 +DE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3.166054052 +DE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.44480194 +DE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,65.52877 +DE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.3842531 +DE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11.49959 +DE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.10091287 +DE,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.046874053 +DE,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.01684231 +DE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.66371045 +DE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.037534908 +DE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.251614 +DE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.450206729 +DE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.630287 +DE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.239651361 +DE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,6.27744E-05 +DE,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1825.000819 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.215299329 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.74930928 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.07582074 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.524429823 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.233777298 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.339289666 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.453613639 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.025986952 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.251301864 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.546715681 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,17.83448322 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,395.9673 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,21.43362 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,3.972902 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.27907381 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.021479957 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.77372E-05 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00849777 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.264234183 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.335814979 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.31102 +DE,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.001697 +DE,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00022 +DE,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,0.338705 +DE,Sulfur Dioxide,2B_Chemicals-other,,TON,83.55864 +DE,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,41.84 +DE,Sulfur Dioxide,2D3d_Coating-application,,TON,0.00554 +DE,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.0000508 +DE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.000452003 +DE,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +DE,Sulfur Dioxide,5C_Incineration,,TON,0.020661485 +DE,Sulfur Dioxide,5C_Incineration,biomass,TON,3.879632915 +DE,Sulfur Dioxide,5C_Open-burning-residential,,TON,0.4355903 +DE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.62171618 +DE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.568395 +DE,Volatile Organic Compounds,11C_Other-natural,,TON,22783.95 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.408417659 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,16.84 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.19295184 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.3435883 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,71.6083505 +DE,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,16.82513973 +DE,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,116.6327247 +DE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,213.6298902 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.61295842 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,74.87671358 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.265565515 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.223036516 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.613402303 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.580543141 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.302608166 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,66.98634431 +DE,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.00014268 +DE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.08167 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,172.9275072 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,69.48453949 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000310037 +DE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,20.85603136 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,57.17725 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5144.918 +DE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,49.99469 +DE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,852.663 +DE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,61.126331 +DE,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,5.9946692 +DE,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.008381 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,109.710681 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,2.7357903 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,163.7987 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,40.9767271 +DE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,188.619 +DE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,21.45265983 +DE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.03401895 +DE,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,114.4110848 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.047711883 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.171613606 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.004876372 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.76750312 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.8237665 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,289.6022202 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.081235315 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,12.5233963 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1581.127721 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1200.575594 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,6.5065 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.3650501 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,36.50747 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,56.91139391 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,16.10243915 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00073095 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.128992 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,858.4698442 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.0048746 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2460.2502 +DE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,40.45984 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,43.91662258 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,71.76280958 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,803.1741077 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,435.3372326 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1013.646712 +DE,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,3.18781 +DE,Volatile Organic Compounds,2B_Chemicals-other,,TON,198.6983643 +DE,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,61.0588 +DE,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +DE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2082.6541 +DE,Volatile Organic Compounds,2D3d_Coating-application,,TON,1736.07199 +DE,Volatile Organic Compounds,2D3e_Degreasing,,TON,330.834478 +DE,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,3.552437 +DE,Volatile Organic Compounds,2D3h_Printing,,TON,704.462832 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0.127924843 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,8.107622627 +DE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,32.9204405 +DE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,34.88834734 +DE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,878.40731 +DE,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,17.7583 +DE,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,25.1113289 +DE,Volatile Organic Compounds,5C_Incineration,,TON,0.023603132 +DE,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.118258658 +DE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,6.6698 +DE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,3.726914 +DE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,8.2916047 +DE,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,7.344127 +DE,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.006351 +DE,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.208313 +DM,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,459.307189 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4061.03526 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.0358812 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,64629.14758 +DM,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,117205.8911 +DM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1648.581126 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,28447.0392 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.0590771 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,53762.9274 +DM,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,929858.749 +DM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1918.025584 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,452.5482711 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.00362436 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,284.1237719 +DM,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,22.01431563 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,475.7479686 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.00360729 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,327.9380586 +DM,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,61823.04122 +DM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,34.0962555 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,450.6685883 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.00335083 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,284.1237719 +DM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,21.54788715 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,473.8683093 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.00360729 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,327.9380586 +DM,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,57384.66387 +DM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,33.62980122 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3132.551494 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.00304446 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,33.21083151 +DM,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,368923.089 +DM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,26.59900563 +DM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.38334 +DM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,928.2586202 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,458.6140614 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.109818 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1400.987324 +DM,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,29051.36832 +DM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,45276.00004 +DM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6660.372325 +FL,Ammonia,1A1a_Public-Electricity,biomass,TON,244.75607 +FL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,25.395476 +FL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,459.858663 +FL,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,193.7383586 +FL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2177.724419 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.467025623 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.228572278 +FL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,540.1145637 +FL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.373964541 +FL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,81.8939835 +FL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.82706578 +FL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.06468317 +FL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,69.24012227 +FL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,58.64961463 +FL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.60967339 +FL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,28.14169416 +FL,Ammonia,1A3bii_Road-LDV,light_oil,TON,6211.89998 +FL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.6500098 +FL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,867.789227 +FL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,7.968624978 +FL,Ammonia,1A3biii_Road-bus,light_oil,TON,3.192133861 +FL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.362418234 +FL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,101.3657847 +FL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,4.485738016 +FL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,131.6507314 +FL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,35.69180051 +FL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,47.589837 +FL,Ammonia,1A3c_Rail,diesel_oil,TON,3.954711115 +FL,Ammonia,1A3c_Rail,light_oil,TON,0.002074869 +FL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,25.68325342 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.905000005 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.175162904 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.058458222 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.268800036 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.854341459 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.703770071 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,9.622817436 +FL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,2.513948498 +FL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,26.13521669 +FL,Ammonia,1A4bi_Residential-stationary,biomass,TON,182.7592161 +FL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.819652683 +FL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.357811508 +FL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,154.4818127 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.39151124 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.161521021 +FL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07545697 +FL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.564801892 +FL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.777767767 +FL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,23.32320991 +FL,Ammonia,2A1_Cement-production,,TON,6.779 +FL,Ammonia,2A2_Lime-production,,TON,30.6397 +FL,Ammonia,2A6_Other-minerals,Other_Fuel,TON,100.1125 +FL,Ammonia,2B_Chemicals-other,,TON,1668.414185 +FL,Ammonia,2C_Iron-steel-alloy,,TON,0.247448 +FL,Ammonia,2D3d_Coating-application,,TON,0 +FL,Ammonia,2D3h_Printing,,TON,0 +FL,Ammonia,2H1_Pulp-and-paper,,TON,230.59477 +FL,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,32.276 +FL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,2.14645 +FL,Ammonia,3B1a_Cattle-dairy,,TON,7274.384605 +FL,Ammonia,3B1b_Cattle-non-dairy,,TON,7187.534244 +FL,Ammonia,3B2_Manure-sheep,,TON,45.574584 +FL,Ammonia,3B3_Manure-swine,,TON,170.3936784 +FL,Ammonia,3B4_Manure-other,,TON,1621.371048 +FL,Ammonia,3B4_Manure-poultry,,TON,9477.575817 +FL,Ammonia,3B4d_Manure-goats,,TON,402.450576 +FL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,11693.28403 +FL,Ammonia,5D1_Wastewater-domestic,,TON,338.93355 +FL,Ammonia,5D2_Wastewater-industrial,biomass,TON,55.507 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,549972.7866 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,406032.6238 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22579.95328 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7216958.258 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,133496.4133 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,34.92046201 +FL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1255812.061 +FL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,82735762.2 +FL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1058098.937 +FL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13379994.6 +FL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,503113.5854 +FL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,102456.061 +FL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,14938.0906 +FL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6094799.104 +FL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,132125.9601 +FL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9652215.92 +FL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1128166.478 +FL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,479991.268 +FL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3463.24601 +FL,Carbon Dioxide,1A3c_Rail,light_oil,TON,160.9456928 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,578032.6224 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,798147.8961 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35419.28756 +FL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,309183.4586 +FL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1934136.069 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,417308.1763 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11673.76622 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.691064671 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9237.2908 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,237475.8321 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,465209.1796 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1614751.232 +FL,Carbon Monoxide,11C_Other-natural,,TON,229766.055 +FL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,4357.359258 +FL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,239.446685 +FL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,20403.90999 +FL,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,2222.409545 +FL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.55254 +FL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,9120.502569 +FL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,7.212165 +FL,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.24771 +FL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,93.0599 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6855.00613 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19914.69687 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1210.339846 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,66960.18311 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,7.692031843 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,478.6355565 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,891.543647 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,122.4528584 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,57.83461836 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3541.825468 +FL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +FL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,59.45185 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.775381 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.3363 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.814104 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,30079.49233 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,31756.76663 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,2.517339264 +FL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29624.44075 +FL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,17374.03237 +FL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1396396.397 +FL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9268.24467 +FL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,266587.591 +FL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1421.396744 +FL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5107.793091 +FL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,92.1722586 +FL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14599.9512 +FL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4507.942389 +FL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18631.0625 +FL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,33020.50724 +FL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18389.4002 +FL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1286.450859 +FL,Carbon Monoxide,1A3c_Rail,light_oil,TON,42.64229428 +FL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5415.364916 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,244.3051125 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,40.93949466 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.25521866 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.632154151 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2107.459145 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3063.132475 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,196371.3317 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,830.4030756 +FL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1266.976653 +FL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,520853.8847 +FL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,21897.66877 +FL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,4.09826882 +FL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.789058498 +FL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,705.685655 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1780.510157 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3522.536759 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.955826158 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,89.321704 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,52241.32617 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,930.1472234 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,213351.723 +FL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,99.97368 +FL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,62.5079338 +FL,Carbon Monoxide,2A1_Cement-production,,TON,6.75514 +FL,Carbon Monoxide,2A2_Lime-production,,TON,3.53823 +FL,Carbon Monoxide,2A6_Other-minerals,,TON,3545.010066 +FL,Carbon Monoxide,2B_Chemicals-other,,TON,117.141929 +FL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,479.460578 +FL,Carbon Monoxide,2C5_Lead-production,,TON,262.431648 +FL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,72.44025 +FL,Carbon Monoxide,2D3d_Coating-application,,TON,3.0058 +FL,Carbon Monoxide,2D3h_Printing,,TON,0.4 +FL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,4591.842376 +FL,Carbon Monoxide,2H2_Food-and-beverage,,TON,5843.13478 +FL,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,15.449522 +FL,Carbon Monoxide,3F_Ag-res-on-field,,TON,32324.53587 +FL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2615.281638 +FL,Carbon Monoxide,5C_Incineration,,TON,5.342175007 +FL,Carbon Monoxide,5C_Incineration,biomass,TON,1.057821557 +FL,Carbon Monoxide,5C_Open-burning-commercial,,TON,17.5 +FL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,20891.3152 +FL,Carbon Monoxide,5C_Open-burning-residential,,TON,3921.3837 +FL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,486.098599 +FL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,6.583157 +FL,Methane,1A3bii_Road-LDV,diesel_oil,TON,32.56501191 +FL,Methane,1A3bii_Road-LDV,light_oil,TON,3265.237442 +FL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21.7687716 +FL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,762.650729 +FL,Methane,1A3biii_Road-bus,diesel_oil,TON,9.58829241 +FL,Methane,1A3biii_Road-bus,light_oil,TON,12.15613912 +FL,Methane,1A3biii_Road-bus,natural_gas,TON,103.2233713 +FL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,513.1439077 +FL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.869481956 +FL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,167.3645919 +FL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,64.80003419 +FL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,46.6252868 +FL,Nitrogen Oxides,11C_Other-natural,,TON,22533.7837 +FL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,11157.20854 +FL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,878.759606 +FL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,34694.305 +FL,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1428.742913 +FL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.880424 +FL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,20888.06666 +FL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,8.229199 +FL,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.99084 +FL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,111.4497 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4295.941122 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2578.048008 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,174.6148975 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,15270.67164 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,13.20006403 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2127.196331 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3056.066398 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1331.146546 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,142.2515522 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9043.072096 +FL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +FL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,99.515974 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,10.403889 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,2.5058 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.541028 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,54363.53894 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,506.285979 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.511763436 +FL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,10079.46099 +FL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,4172.070618 +FL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,164737.641 +FL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4533.94923 +FL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,32224.7289 +FL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3390.244036 +FL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,393.1031569 +FL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,60.4266684 +FL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43894.54355 +FL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,500.1475054 +FL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,51102.4399 +FL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2952.199042 +FL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,738.87708 +FL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,9449.621263 +FL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.582812184 +FL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,41093.7982 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,90.75482549 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,193.5460233 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,147.7025445 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.600208221 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2448.017265 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5286.697768 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3140.35451 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,220.4261546 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2810.390884 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,5685.872471 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,358.6304915 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,14.75375267 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.44060881 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1431.973771 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3610.095173 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,47.87694812 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.213215166 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,90.366256 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,504.4040837 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5224.370921 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,10632.38937 +FL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,32.3323 +FL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,40.234669 +FL,Nitrogen Oxides,2A1_Cement-production,,TON,23.89 +FL,Nitrogen Oxides,2A2_Lime-production,,TON,145.3491 +FL,Nitrogen Oxides,2A6_Other-minerals,,TON,4092.312355 +FL,Nitrogen Oxides,2B_Chemicals-other,,TON,1392.76853 +FL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,80.203073 +FL,Nitrogen Oxides,2C5_Lead-production,,TON,0.294083 +FL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.901057 +FL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,5.92 +FL,Nitrogen Oxides,2D3d_Coating-application,,TON,0.01 +FL,Nitrogen Oxides,2D3h_Printing,,TON,1.61 +FL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5053.003643 +FL,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,13.1941 +FL,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,4.627033 +FL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1497.733496 +FL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,280.116623 +FL,Nitrogen Oxides,5C_Incineration,,TON,90.21782066 +FL,Nitrogen Oxides,5C_Incineration,biomass,TON,17.76538059 +FL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.82 +FL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,618.086525 +FL,Nitrogen Oxides,5C_Open-burning-residential,,TON,276.80349 +FL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,21.6043824 +FL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.54434 +FL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.81422606 +FL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,3359.08216 +FL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.64555214 +FL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,686.419389 +FL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.336357603 +FL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.504545095 +FL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.911249488 +FL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.553128528 +FL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.354208326 +FL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.18486907 +FL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,58.48175846 +FL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.28844653 +FL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,175.815947 +FL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,37.463385 +FL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3293.605724 +FL,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,344.258097 +FL,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.30738 +FL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,2544.12438 +FL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.724342 +FL,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.049542 +FL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.4197 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,26152.77825 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,133.2888924 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,394.6638237 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,401.4484522 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,4.059632705 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,227.6214519 +FL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,5.022841 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.490602 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.079915 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.971839 +FL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,182678.1516 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,120.3903421 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.86929006 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,40.02581549 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.359655168 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,45.24184595 +FL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.885225553 +FL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.386436436 +FL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.477246127 +FL,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.554 +FL,PM10 Filterable,2A1_Cement-production,,TON,244.930834 +FL,PM10 Filterable,2A2_Lime-production,,TON,142.097013 +FL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,35030.56928 +FL,PM10 Filterable,2A6_Other-minerals,,TON,18739.72578 +FL,PM10 Filterable,2B_Chemicals-other,,TON,361.481524 +FL,PM10 Filterable,2C_Iron-steel-alloy,,TON,41.86456 +FL,PM10 Filterable,2C3_Aluminum-production,,TON,11.679 +FL,PM10 Filterable,2C5_Lead-production,,TON,7.427824 +FL,PM10 Filterable,2C6_Zinc-production,,TON,0.0011 +FL,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,222.947153 +FL,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.00528 +FL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,43.144748 +FL,PM10 Filterable,2D3d_Coating-application,,TON,32.954773 +FL,PM10 Filterable,2D3h_Printing,,TON,0.16 +FL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.59 +FL,PM10 Filterable,2H1_Pulp-and-paper,,TON,1466.900787 +FL,PM10 Filterable,2H2_Food-and-beverage,,TON,829.8705168 +FL,PM10 Filterable,2H3_Other-industrial-processes,,TON,1272.191814 +FL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,155.8466937 +FL,PM10 Filterable,2I_Wood-processing,,TON,8.79077 +FL,PM10 Filterable,3Dc_Other-farm,,TON,10041.74717 +FL,PM10 Filterable,5A_Solid-waste-disposal,,TON,67.416105 +FL,PM10 Filterable,5C_Incineration,,TON,2.015657 +FL,PM10 Filterable,5C_Incineration,biomass,TON,1.611334 +FL,PM10 Filterable,5C_Open-burning-commercial,,TON,2.285 +FL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2101.491189 +FL,PM10 Filterable,5C_Open-burning-residential,,TON,1753.0886 +FL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,80.495608 +FL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,44.12878 +FL,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.0001 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,198.4821478 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,44.71504498 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5761.08622 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,405.5665764 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.3258228 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,5210.364014 +FL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.531188589 +FL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0767317 +FL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,17.90725 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,319.955502 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.32272131 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.010251853 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,31530.05462 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,141.9698301 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,428.7947275 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,434.57808 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.172937759 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,472.322781 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,10.7012122 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.588234002 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0958185 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,5.1267814 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,4661.745978 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,208.5740755 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.004091741 +FL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,622.5481532 +FL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,182678.1516 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,341.7042486 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,12669.35744 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,390.494458 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,2124.5364 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,305.5056279 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.79434144 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.13777296 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2777.343835 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,16.17637984 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,4623.87634 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,122.3888372 +FL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,47.8650961 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,299.4056584 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.022357057 +FL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2945.624518 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,127.3615163 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.01701261 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,45.04602876 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.826466613 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,98.57113509 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,507.2139121 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,221.0653065 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.443540356 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,214.237972 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1986.711784 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3203.425727 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.950774739 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.85159212 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.440838953 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,314.886903 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,27.28507934 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001098698 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,12.8044487 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,433.7227293 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,104.565621 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,1075.777994 +FL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.554 +FL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.93415046 +FL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,247.7674891 +FL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,184.422138 +FL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,35030.56928 +FL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,18794.93431 +FL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,423.4825551 +FL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,92.6064817 +FL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,13.20792 +FL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,9.577957114 +FL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.00506 +FL,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,259.3516465 +FL,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.00528 +FL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,44.1970491 +FL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,32.954773 +FL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.16 +FL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.59 +FL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2034.45587 +FL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,6841.315247 +FL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1212.636183 +FL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,230.0792825 +FL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,8.79077 +FL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,10045.93076 +FL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3512.589172 +FL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,163.966721 +FL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,4.431586851 +FL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.441158073 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,3.59013 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2101.491189 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1753.0886 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,80.495608 +FL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,44.12878 +FL,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0001 +FL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,146.8134035 +FL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,32.20417927 +FL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1453.567133 +FL,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,279.9125244 +FL,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.2881688 +FL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2427.390516 +FL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.477824871 +FL,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0118901 +FL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.77459 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,22424.57641 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,120.4432643 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,192.6054163 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,268.5166062 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.37061401 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,214.8565753 +FL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,5.000491375 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.307621214 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.05117118 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.85458965 +FL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,26650.67261 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,105.1080039 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.558165 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14.9691159 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.278783792 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.27552346 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.680312131 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.296983539 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.362484638 +FL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0207447 +FL,PM2.5 Filterable,2A1_Cement-production,,TON,123.348048 +FL,PM2.5 Filterable,2A2_Lime-production,,TON,90.57410163 +FL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3502.858456 +FL,PM2.5 Filterable,2A6_Other-minerals,,TON,2835.466926 +FL,PM2.5 Filterable,2B_Chemicals-other,,TON,291.6352342 +FL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,37.499094 +FL,PM2.5 Filterable,2C3_Aluminum-production,,TON,11.459 +FL,PM2.5 Filterable,2C5_Lead-production,,TON,5.163237266 +FL,PM2.5 Filterable,2C6_Zinc-production,,TON,0.00103678 +FL,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,83.2756697 +FL,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.00277894 +FL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,7.14942102 +FL,PM2.5 Filterable,2D3d_Coating-application,,TON,28.73590594 +FL,PM2.5 Filterable,2D3h_Printing,,TON,0.132766 +FL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.555946 +FL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1056.080589 +FL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,186.6144926 +FL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,957.7704556 +FL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,198.6945673 +FL,PM2.5 Filterable,2I_Wood-processing,,TON,2.5926595 +FL,PM2.5 Filterable,3Dc_Other-farm,,TON,2005.167489 +FL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,53.65974261 +FL,PM2.5 Filterable,5C_Incineration,,TON,1.62895423 +FL,PM2.5 Filterable,5C_Incineration,biomass,TON,1.113760185 +FL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,1.3015792 +FL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1620.040487 +FL,PM2.5 Filterable,5C_Open-burning-residential,,TON,1605.4601 +FL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,62.054369 +FL,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.1286 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,169.4795944 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,40.21732613 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3952.94032 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,341.2210038 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.3066116 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,5102.781336 +FL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.50466946 +FL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0390798 +FL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,17.26215 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,310.145776 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44.95846936 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.999281509 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,27807.65686 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,130.1180497 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,226.7949235 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,301.7277919 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.086945072 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,460.6050118 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,10.67886278 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.405253404 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0670748 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,5.00953155 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,4521.892948 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,192.0143922 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.004091741 +FL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,524.0948269 +FL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,26650.67261 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,214.3562826 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2933.503226 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,275.128291 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,465.552228 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,231.8601553 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.576153736 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.666108603 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2139.635611 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.941977976 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3327.007512 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,32.06264348 +FL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,33.3591641 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,277.3376679 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.020608663 +FL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2738.632784 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,111.8840311 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,28.96246853 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.48739814 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.744621437 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,97.24859134 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,491.9979173 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,203.9702225 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.443540356 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,207.8109187 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1827.866035 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3197.125753 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.745861444 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.762138576 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.32607784 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,305.440545 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,25.10233221 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001098698 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,12.42032 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,399.0284706 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,101.4286416 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,989.716038 +FL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.5497447 +FL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.93415046 +FL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,132.6956778 +FL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,132.899218 +FL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3504.843176 +FL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2982.545319 +FL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,353.8484434 +FL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,88.2410887 +FL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,13.20792 +FL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,9.059100289 +FL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.00499678 +FL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,119.6801615 +FL,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.00277894 +FL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,41.2185381 +FL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,29.59638094 +FL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.132766 +FL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.555946 +FL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1757.870862 +FL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,6208.713741 +FL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,880.6489904 +FL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,295.1905264 +FL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.5926595 +FL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2009.416857 +FL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2799.772256 +FL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,154.0316386 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,4.11327835 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.875185579 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,2.606709 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1620.040487 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1605.4601 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,62.054369 +FL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,44.12878 +FL,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0001 +FL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1128.212209 +FL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,481.426203 +FL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,84252.206 +FL,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,7497.041 +FL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,15.69051 +FL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1712.202272 +FL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.022702 +FL,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,1.84197 +FL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,6.4769 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.77146569 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.26474177 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.668449129 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3070.175649 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,6.159898609 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,33.62381813 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3526.911849 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7534.730185 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,38.25065885 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1512.108384 +FL,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +FL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,7.148281 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,9.369619 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,3.073125 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.027223 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,134.6641457 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.450899836 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000770135 +FL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1150.088981 +FL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,10.77009499 +FL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1642.746143 +FL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.12076764 +FL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,265.664212 +FL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.314485602 +FL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.034299317 +FL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.079089647 +FL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,52.34481357 +FL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.623405575 +FL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,82.5009365 +FL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,22.40012585 +FL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.53038521 +FL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,88.6824184 +FL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002940345 +FL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18523.98285 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,8.222288973 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.093375548 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,933.7146423 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,14.62259779 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,111.3080061 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.94881113 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14.64328631 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.78315443 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,5.849445981 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,35.25056587 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,46.55932426 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,34.91719933 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,15.24277909 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,7.431735336 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.831512825 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.212559312 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000191146 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.174397632 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.312123443 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.978615249 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,29.35860613 +FL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.038308142 +FL,Sulfur Dioxide,2A1_Cement-production,,TON,0.24 +FL,Sulfur Dioxide,2A2_Lime-production,,TON,4.11722 +FL,Sulfur Dioxide,2A6_Other-minerals,,TON,522.650795 +FL,Sulfur Dioxide,2B_Chemicals-other,,TON,21949.67151 +FL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,31.024003 +FL,Sulfur Dioxide,2C5_Lead-production,,TON,306.460654 +FL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,58.98 +FL,Sulfur Dioxide,2D3d_Coating-application,,TON,0.00007 +FL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,3913.41171 +FL,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,3.87048 +FL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,141.257624 +FL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,746.8296966 +FL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,956.602761 +FL,Sulfur Dioxide,5C_Incineration,,TON,22.19070842 +FL,Sulfur Dioxide,5C_Incineration,biomass,TON,0.651817792 +FL,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.008 +FL,Sulfur Dioxide,5C_Open-burning-residential,,TON,46.133892 +FL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.66809177 +FL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,204.09544 +FL,Volatile Organic Compounds,11C_Other-natural,,TON,1545252.82 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,153.034338 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,26.635272 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,648.19325 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,48.168272 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.042934 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1054.490892 +FL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,160.978503 +FL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,48.92941599 +FL,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0 +FL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,7.8504 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,479.9332057 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,818.3663132 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.316125586 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,3893.037803 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.755658678 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.79106024 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,53.26867739 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.446752353 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,16.04690169 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,557.9715993 +FL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +FL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,17.662324 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.263532 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.018357 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,10.18359 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,5529.013697 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,2414.781816 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.008367326 +FL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1805.178513 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1601.000103 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,121353.2178 +FL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1185.74938 +FL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20652.9503 +FL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,389.6312387 +FL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,329.5530199 +FL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,11.98505988 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4553.470448 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,173.4948391 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4382.42718 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1707.856033 +FL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3915.69382 +FL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,480.0737562 +FL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.901497804 +FL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1196.397311 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.584435482 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.263826974 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.057914284 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.14032223 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,165.0267327 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,704.3382838 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,10980.99963 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.592530884 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,291.4803439 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,40980.57298 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4076.213435 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.573756919 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.250468138 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,68.12424575 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,327.9830224 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,319.7522214 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003704843 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.2223504 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,14925.25045 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,237.8918424 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,85056.85268 +FL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1459.576656 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,2243.035536 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,4807.168363 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,58765.64128 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,56742.39686 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,20.57622 +FL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1337.632272 +FL,Volatile Organic Compounds,2A1_Cement-production,,TON,0.82716 +FL,Volatile Organic Compounds,2A2_Lime-production,,TON,1.51822 +FL,Volatile Organic Compounds,2A6_Other-minerals,,TON,38.28552471 +FL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2560.52506 +FL,Volatile Organic Compounds,2B_Chemicals-other,,TON,1516.05319 +FL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,39.655503 +FL,Volatile Organic Compounds,2C5_Lead-production,,TON,12.891925 +FL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,43.373645 +FL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,79247.48949 +FL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,72.761208 +FL,Volatile Organic Compounds,2D3d_Coating-application,,TON,41291.1007 +FL,Volatile Organic Compounds,2D3e_Degreasing,,TON,230.768238 +FL,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,1.845 +FL,Volatile Organic Compounds,2D3h_Printing,,TON,637.24281 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,305.3887115 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,767.9449002 +FL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,7056.397392 +FL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4975.819212 +FL,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1994.675196 +FL,Volatile Organic Compounds,2I_Wood-processing,,TON,0.29 +FL,Volatile Organic Compounds,3Dc_Other-farm,,TON,259.634737 +FL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,28995.19855 +FL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2434.21545 +FL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,423.308173 +FL,Volatile Organic Compounds,5C_Incineration,,TON,22.26236686 +FL,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.226081841 +FL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,2.375 +FL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1433.958781 +FL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,394.90636 +FL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,90.661277 +FL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,318.352225 +FL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +FL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,12.134 +FL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,2.97776 +GA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.134228 +GA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,362.639709 +GA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.2177786 +GA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,375.7861 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.436142219 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.236074232 +GA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,7.941 +GA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.822079779 +GA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.53 +GA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.60440761 +GA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,1.316537762 +GA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,223.6910888 +GA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.014 +GA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,23.2467409 +GA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.637922788 +GA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.69951196 +GA,Ammonia,1A3bii_Road-LDV,light_oil,TON,3779.31577 +GA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.39180004 +GA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,404.32249 +GA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,11.17964328 +GA,Ammonia,1A3biii_Road-bus,light_oil,TON,2.619967427 +GA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.177675369 +GA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,110.6649393 +GA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,4.089587942 +GA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,113.8729458 +GA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,28.68744388 +GA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.29628066 +GA,Ammonia,1A3c_Rail,diesel_oil,TON,9.918440715 +GA,Ammonia,1A3c_Rail,light_oil,TON,0.004961421 +GA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.239371401 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.178266307 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.25582426 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.62134306 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.082379009 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.260002932 +GA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.052691457 +GA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.22885974 +GA,Ammonia,1A4bi_Residential-stationary,biomass,TON,110.0784661 +GA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.59447745 +GA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.7389097 +GA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.685454018 +GA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1188.638214 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.269649461 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.316448574 +GA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.038648824 +GA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.412297846 +GA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.739478986 +GA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.565300451 +GA,Ammonia,2A1_Cement-production,,TON,2.38 +GA,Ammonia,2A6_Other-minerals,,TON,2110.945 +GA,Ammonia,2B_Chemicals-other,,TON,2377.0837 +GA,Ammonia,2D3d_Coating-application,,TON,36.135 +GA,Ammonia,2H1_Pulp-and-paper,,TON,903.6933 +GA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,10.072 +GA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,278.55117 +GA,Ammonia,3B1a_Cattle-dairy,,TON,2863.331779 +GA,Ammonia,3B1b_Cattle-non-dairy,,TON,4314.258836 +GA,Ammonia,3B2_Manure-sheep,,TON,39.543966 +GA,Ammonia,3B3_Manure-swine,,TON,2249.333844 +GA,Ammonia,3B4_Manure-other,,TON,1031.998968 +GA,Ammonia,3B4_Manure-poultry,,TON,62956.89867 +GA,Ammonia,3B4d_Manure-goats,,TON,585.548832 +GA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,16848.9602 +GA,Ammonia,5D1_Wastewater-domestic,,TON,36.49711328 +GA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,15.4985 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,423060.6596 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,433311.2736 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,23743.94332 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2860560.418 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,52903.64565 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.22685879 +GA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,535293.7642 +GA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,41352574.98 +GA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,430250.728 +GA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5559135.46 +GA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,706485.4731 +GA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,78237.9198 +GA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,7419.84169 +GA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6786067.881 +GA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,108694.4819 +GA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7668179.728 +GA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,837473.1508 +GA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,136046.1893 +GA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,8331.425562 +GA,Carbon Dioxide,1A3c_Rail,light_oil,TON,384.7654217 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,255897.5585 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,353338.0094 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,15627.93178 +GA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,129467.6593 +GA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,830930.2776 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,648467.2822 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,22643.51672 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,12.31173255 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4731.3127 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,222463.0614 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,91062.4014 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,316072.3306 +GA,Carbon Monoxide,11C_Other-natural,,TON,224764.765 +GA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1603.0775 +GA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,104.7513 +GA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9342.512 +GA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.466 +GA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2491.3665 +GA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,8.733 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4653.143255 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20595.27916 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1254.880671 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12705.1448 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.73387718 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2658.864524 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,125.1203081 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.242960253 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6243.480912 +GA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.001 +GA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,103.0779 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,11922.25243 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,12392.79344 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.02558265 +GA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12107.45903 +GA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,10929.16991 +GA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,792662.053 +GA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4465.83776 +GA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,141438.1588 +GA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2150.680639 +GA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3915.884011 +GA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,55.2282709 +GA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13774.49363 +GA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4801.567942 +GA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13288.46684 +GA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,27145.75186 +GA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5835.20999 +GA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3218.896005 +GA,Carbon Monoxide,1A3c_Rail,light_oil,TON,100.6897852 +GA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,445.8482276 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1593.928775 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.501877486 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,56.70695865 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.283418279 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.806979317 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2482.465693 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1356.05691 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,85054.16774 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,366.9675424 +GA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,530.5450671 +GA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,220834.4483 +GA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,13375.99483 +GA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.972387092 +GA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,101.60019 +GA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.427270771 +GA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2842.746964 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2653.424929 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7080.464674 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.353998083 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,45.749313 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,45515.45823 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,182.0707749 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,41646.56059 +GA,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,45.91 +GA,Carbon Monoxide,2A1_Cement-production,,TON,1015 +GA,Carbon Monoxide,2A6_Other-minerals,,TON,5382.5407 +GA,Carbon Monoxide,2B_Chemicals-other,,TON,502.232 +GA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,289.1274 +GA,Carbon Monoxide,2C3_Aluminum-production,,TON,51.9706 +GA,Carbon Monoxide,2C5_Lead-production,Other_Fuel,TON,1.38 +GA,Carbon Monoxide,2C7_Other-metal,,TON,4.8318 +GA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,4.55 +GA,Carbon Monoxide,2D3d_Coating-application,,TON,24.724 +GA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,16189.749 +GA,Carbon Monoxide,2H2_Ethanol Production,,TON,6.7301 +GA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1237.036013 +GA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,718.34744 +GA,Carbon Monoxide,3F_Ag-res-on-field,,TON,38391.07816 +GA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,433.7575775 +GA,Carbon Monoxide,5C_Incineration,,TON,746.340872 +GA,Carbon Monoxide,5C_Incineration,biomass,TON,1031.910988 +GA,Carbon Monoxide,5C_Open-burning-commercial,,TON,1078.6 +GA,Carbon Monoxide,5C_Open-burning-dump,,TON,0.01 +GA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,214099.771 +GA,Carbon Monoxide,5C_Open-burning-residential,,TON,9065.91486 +GA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1214.859741 +GA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,31.18 +GA,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.3 +GA,Methane,1A3bii_Road-LDV,diesel_oil,TON,17.76387506 +GA,Methane,1A3bii_Road-LDV,light_oil,TON,1990.759353 +GA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.31253457 +GA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,452.235828 +GA,Methane,1A3biii_Road-bus,diesel_oil,TON,13.33585977 +GA,Methane,1A3biii_Road-bus,light_oil,TON,9.355056714 +GA,Methane,1A3biii_Road-bus,natural_gas,TON,56.347601 +GA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,555.4807342 +GA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,7.712566493 +GA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,141.6026181 +GA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,53.41103128 +GA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.64103374 +GA,Nitrogen Oxides,11C_Other-natural,,TON,22147.2194 +GA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,610.176 +GA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,150.3291 +GA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,53491.841 +GA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,14.22 +GA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1770.5253 +GA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,10.403 +GA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,15.6752 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3208.956952 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2722.500408 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,182.6911884 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5094.312463 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,66.66566355 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5121.489981 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1042.711918 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,33.07964927 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10745.07394 +GA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.001 +GA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,220.0226 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,21548.44811 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,214.1981649 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.208496384 +GA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4134.893651 +GA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1963.108553 +GA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,102135.364 +GA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1986.563014 +GA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17599.74931 +GA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5283.633349 +GA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,370.239394 +GA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,34.67197558 +GA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,48674.09097 +GA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,562.8809476 +GA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,42042.04622 +GA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2706.982759 +GA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,262.339394 +GA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,21918.7654 +GA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.473789573 +GA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3351.689458 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,749.1953012 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.20106327 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1131.685856 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.08384164 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.422062219 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2598.049805 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2340.445652 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1507.342852 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,97.45151062 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1176.767279 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2624.211706 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,221.6426068 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,10.70059418 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,3.36204085 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,12.33817116 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6414.837253 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5427.125481 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,90.85297831 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.30203122 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,46.290378 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,477.2342543 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1022.645943 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2122.047304 +GA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,21.37 +GA,Nitrogen Oxides,2A1_Cement-production,,TON,1118.3 +GA,Nitrogen Oxides,2A6_Other-minerals,,TON,4642.0324 +GA,Nitrogen Oxides,2B_Chemicals-other,,TON,958.554 +GA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,80.731 +GA,Nitrogen Oxides,2C3_Aluminum-production,,TON,66.0336 +GA,Nitrogen Oxides,2C5_Lead-production,Other_Fuel,TON,0.06 +GA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,2.058 +GA,Nitrogen Oxides,2D3d_Coating-application,,TON,29.997 +GA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,9687.5806 +GA,Nitrogen Oxides,2H2_Ethanol Production,,TON,7.99 +GA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +GA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,429.21506 +GA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1642.894577 +GA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,44.406 +GA,Nitrogen Oxides,5C_Incineration,,TON,243.1254017 +GA,Nitrogen Oxides,5C_Incineration,biomass,TON,302.9351455 +GA,Nitrogen Oxides,5C_Open-burning-commercial,,TON,35.52 +GA,Nitrogen Oxides,5C_Open-burning-dump,,TON,0.02 +GA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,6334.3135 +GA,Nitrogen Oxides,5C_Open-burning-residential,,TON,639.947169 +GA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,53.9937744 +GA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,5.77 +GA,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,3.61 +GA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.591174463 +GA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2068.309162 +GA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.555272705 +GA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,427.91349 +GA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.755847787 +GA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.71939736 +GA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.575146966 +GA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.634771702 +GA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.479808022 +GA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.86934921 +GA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,37.84475075 +GA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.129074397 +GA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,162.87902 +GA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,23.51590865 +GA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,6514.1433 +GA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.6019787 +GA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,403.010654 +GA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.301871304 +GA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.1876 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1332.293351 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.2411883 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,373.9248544 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,32.58197468 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.495197558 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,301.1739838 +GA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.000798 +GA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,10.641175 +GA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,406845.7653 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,198.2277919 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.130428042 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,58.71988206 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.816599521 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.447347943 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.738453794 +GA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.642035846 +GA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,2.29062175 +GA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.740290356 +GA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.98039557 +GA,PM10 Filterable,2A1_Cement-production,,TON,233.6389 +GA,PM10 Filterable,2A2_Lime-production,,TON,4.15 +GA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,63366.05644 +GA,PM10 Filterable,2A6_Other-minerals,,TON,37185.69336 +GA,PM10 Filterable,2B_Chemicals-other,,TON,359.5242259 +GA,PM10 Filterable,2C_Iron-steel-alloy,,TON,68.39343993 +GA,PM10 Filterable,2C3_Aluminum-production,,TON,16.498233 +GA,PM10 Filterable,2C5_Lead-production,Other_Fuel,TON,0.08 +GA,PM10 Filterable,2C6_Zinc-production,,TON,10.2075 +GA,PM10 Filterable,2C7_Other-metal,,TON,642.0908863 +GA,PM10 Filterable,2D3d_Coating-application,,TON,29.3671 +GA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.126 +GA,PM10 Filterable,2H1_Pulp-and-paper,,TON,3161.414603 +GA,PM10 Filterable,2H2_Ethanol Production,,TON,0.41 +GA,PM10 Filterable,2H2_Food-and-beverage,,TON,421.9775824 +GA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1138.635123 +GA,PM10 Filterable,2I_Wood-processing,,TON,46.902 +GA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,11710.58 +GA,PM10 Filterable,3Dc_Other-farm,,TON,73130.98903 +GA,PM10 Filterable,3F_Ag-res-on-field,,TON,5888.49 +GA,PM10 Filterable,5A_Solid-waste-disposal,,TON,7.523846 +GA,PM10 Filterable,5C_Incineration,,TON,170 +GA,PM10 Filterable,5C_Incineration,biomass,TON,508.540109 +GA,PM10 Filterable,5C_Open-burning-commercial,,TON,197.31 +GA,PM10 Filterable,5C_Open-burning-dump,,TON,0.001 +GA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,21536.08 +GA,PM10 Filterable,5C_Open-burning-residential,,TON,4052.99834 +GA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,201.1749732 +GA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.03 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,182.414 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,29.52324689 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8108.635147 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.959054 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,737.959428 +GA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.793 +GA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,2.3752 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,250.0433677 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.41275682 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.10196015 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1659.215202 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,24.06766861 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,672.1561802 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,118.2403577 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.780956256 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,695.3953326 +GA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.001 +GA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,27.875375 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1847.69058 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,82.66188121 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001667005 +GA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,205.9034959 +GA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,406845.7653 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,140.8074186 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6103.694773 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,161.2501333 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,845.502359 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,415.8241161 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,13.36544557 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.066438344 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2548.700136 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,16.16318416 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3021.305702 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,92.35407589 +GA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.36616185 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,750.6693288 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.053461025 +GA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,229.2703723 +GA,PM10 Primary (Filt + Cond),1A3eii_Other-unspecified-transp,Other_Fuel,TON,11.24626 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,201.8846799 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.786753507 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,62.0484898 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.759852021 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.093132154 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.32849606 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,224.5447207 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,97.86825258 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.960302374 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,89.71203973 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,844.4751784 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1956.172969 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.414855892 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,2.67485475 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.631380025 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,33.74899882 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,470.1471878 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,65.6142481 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001556426 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.5580895 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,474.5869142 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.46802867 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,210.5734032 +GA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,226.3268 +GA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,5.37123 +GA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,63367.45707 +GA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,37528.12693 +GA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,478.6251 +GA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,95.8858 +GA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,46.35904 +GA,PM10 Primary (Filt + Cond),2C5_Lead-production,Other_Fuel,TON,0.29457 +GA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,13.7355 +GA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,642.8161488 +GA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,4.285 +GA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,30.8993 +GA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.126 +GA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4346.702254 +GA,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,1.104 +GA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3566.3485 +GA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1171.522574 +GA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,46.902 +GA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,11711.30618 +GA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,73134.56621 +GA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,5889.291962 +GA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,11.96 +GA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,170.8537843 +GA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,510.2055104 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,368.575 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.001 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,21536.656 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4052.99834 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,201.1749732 +GA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.98 +GA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.03 +GA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,135.54702 +GA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.06801354 +GA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3783.948 +GA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.1769437 +GA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,400.2812864 +GA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.301871304 +GA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.1876 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1154.895476 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.144109576 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,195.8027364 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.17098662 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.37127791 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,235.5336945 +GA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.000454557 +GA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,9.976099738 +GA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,46008.08395 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,176.5123574 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.136766869 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,35.24093659 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.603053855 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.37987858 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.620162572 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.49341631 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.40392805 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.568927 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.139215393 +GA,PM2.5 Filterable,2A1_Cement-production,,TON,36.11255717 +GA,PM2.5 Filterable,2A2_Lime-production,,TON,1.44994118 +GA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,6335.315803 +GA,PM2.5 Filterable,2A6_Other-minerals,,TON,8911.929938 +GA,PM2.5 Filterable,2B_Chemicals-other,,TON,288.157645 +GA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,3.38711332 +GA,PM2.5 Filterable,2C3_Aluminum-production,,TON,6.835119177 +GA,PM2.5 Filterable,2C5_Lead-production,Other_Fuel,TON,0.07 +GA,PM2.5 Filterable,2C6_Zinc-production,,TON,1.22287 +GA,PM2.5 Filterable,2C7_Other-metal,,TON,183.5333573 +GA,PM2.5 Filterable,2D3d_Coating-application,,TON,28.20424229 +GA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.126 +GA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2284.158739 +GA,PM2.5 Filterable,2H2_Ethanol Production,,TON,0.41 +GA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,163.9968405 +GA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,687.2128286 +GA,PM2.5 Filterable,2I_Wood-processing,,TON,34.16064152 +GA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1755.87 +GA,PM2.5 Filterable,3Dc_Other-farm,,TON,14474.69375 +GA,PM2.5 Filterable,3F_Ag-res-on-field,,TON,3581.76 +GA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,7.523846 +GA,PM2.5 Filterable,5C_Incineration,,TON,121.53 +GA,PM2.5 Filterable,5C_Incineration,biomass,TON,360.89881 +GA,PM2.5 Filterable,5C_Open-burning-commercial,,TON,151.27 +GA,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.001 +GA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,21536.08 +GA,PM2.5 Filterable,5C_Open-burning-residential,,TON,3711.69369 +GA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,155.086492 +GA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.03 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,155.082 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,27.08135227 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5378.443147 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.534014 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,735.2300607 +GA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.793 +GA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,2.3752 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,242.4064697 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.07917931 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.093699704 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1481.799655 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,13.50163487 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,493.6551802 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,104.8678164 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.479816046 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,630.4586479 +GA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.000656557 +GA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,27.21030924 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1792.259931 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,76.09897407 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001667005 +GA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,179.5191859 +GA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,46008.08395 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,91.85738069 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1909.891187 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,118.6822175 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,252.1184351 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,319.1749431 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.172945834 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.386310487 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2010.581313 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.922785013 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2229.359516 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,30.37423681 +GA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.79311748 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,693.709557 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.049279548 +GA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,213.2288975 +GA,PM2.5 Primary (Filt + Cond),1A3eii_Other-unspecified-transp,Other_Fuel,TON,1.132247 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,179.3199175 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.819805141 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,39.0771874 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.609231178 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.020579733 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.37356905 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,217.808306 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,90.30009145 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.960302374 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,87.02068247 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,776.9552547 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1952.013862 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.266236941 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.788162 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.460016535 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,27.90784748 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,456.0427245 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,60.36519545 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001556426 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.361344 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,436.6220743 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.85399035 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,193.7275207 +GA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,170.6305363 +GA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,2.67117218 +GA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6336.745707 +GA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,10528.74125 +GA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,410.3085168 +GA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,31.19047216 +GA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,36.69592711 +GA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,Other_Fuel,TON,0.28457 +GA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,13.58637 +GA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,184.2586198 +GA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,4.285 +GA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,29.93844229 +GA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.126 +GA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3516.006774 +GA,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,1.104 +GA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3230.279432 +GA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,720.0827733 +GA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,34.16064152 +GA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1756.70995 +GA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,14478.21336 +GA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3582.540262 +GA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,11.96 +GA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,122.2927096 +GA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,362.5869071 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,322.535 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.001 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,21536.656 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3711.69369 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,155.086492 +GA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.98 +GA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.03 +GA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,82.1886 +GA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,13.5331 +GA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,187739.331 +GA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,122.34 +GA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,51.1633 +GA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.065 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.75289766 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.96148206 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.63526735 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1241.612688 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,521.4886001 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,9860.779723 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7019.509075 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,72.78167838 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2652.693275 +GA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.001 +GA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.923 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,53.37628027 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.971272209 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000313759 +GA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,568.8693502 +GA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.60291453 +GA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,821.0689135 +GA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.71506846 +GA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,110.3785949 +GA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,6.084149592 +GA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.553439711 +GA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.039284292 +GA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,57.90600703 +GA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.158165776 +GA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,65.23837301 +GA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,16.62830518 +GA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.70124474 +GA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,222.4745756 +GA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007029245 +GA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1636.933971 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,286.9325439 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.764451108 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4094.3363 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,95.43084609 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,14.13516248 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.0205349 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.847077971 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.482546054 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.345547995 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.449403889 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,15.14400451 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,28.38810164 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,25.32473624 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,14.6599685 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,29.20034015 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,38.94115243 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.15126652 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.412160053 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000270777 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.089325705 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.036224262 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.953264761 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.74667125 +GA,Sulfur Dioxide,2A1_Cement-production,,TON,404.1 +GA,Sulfur Dioxide,2A6_Other-minerals,,TON,1878.2048 +GA,Sulfur Dioxide,2B_Chemicals-other,,TON,1580.016 +GA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,92.124 +GA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.2694 +GA,Sulfur Dioxide,2C5_Lead-production,Other_Fuel,TON,0.002 +GA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0152 +GA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.289 +GA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1405.2721 +GA,Sulfur Dioxide,2H2_Ethanol Production,,TON,0.0527 +GA,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.0424 +GA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,16.9772 +GA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,735.7014741 +GA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,6.348 +GA,Sulfur Dioxide,5C_Incineration,,TON,53.50801993 +GA,Sulfur Dioxide,5C_Incineration,biomass,TON,38.20065944 +GA,Sulfur Dioxide,5C_Open-burning-commercial,,TON,10.52 +GA,Sulfur Dioxide,5C_Open-burning-residential,,TON,106.6578628 +GA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,11.6665099 +GA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.08 +GA,Volatile Organic Compounds,11C_Other-natural,,TON,1832715.39 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,107.7482 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,19.8262 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,870.463 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.308 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,196.2389 +GA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,67.0634 +GA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.8598 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,348.8788951 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,851.7358349 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.601621193 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,698.8197216 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,53.96811346 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,30.57865062 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,48.79985964 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.326463519 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,867.0877445 +GA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.001 +GA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,46.463 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2191.452868 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,924.5277315 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.003408913 +GA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,862.2352974 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,975.574281 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,76178.0336 +GA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,597.192599 +GA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12691.21309 +GA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,575.6731546 +GA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,199.9833997 +GA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,6.92223496 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3947.473323 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,192.1961836 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3131.172602 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1265.144717 +GA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1129.986297 +GA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1170.041355 +GA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.274986576 +GA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,112.328648 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,94.21916274 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.043283619 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.12289456 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.169264758 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,167.7927416 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,311.8114746 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4540.625662 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.146340164 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,122.0534291 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,16757.43431 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2513.360192 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.416134192 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,3.6945523 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.479817818 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,356.9607518 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,488.0530465 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,689.6292231 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005248138 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.894188 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,15580.13103 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,46.56593184 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,15823.50888 +GA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0022 +GA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,590.3394612 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,531.9707627 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,4067.752083 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,16142.53379 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,20996.5702 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,31.97 +GA,Volatile Organic Compounds,2A1_Cement-production,,TON,81.2 +GA,Volatile Organic Compounds,2A6_Other-minerals,,TON,64.85985512 +GA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,972.8687449 +GA,Volatile Organic Compounds,2B_Chemicals-other,,TON,3089.35568 +GA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,14.1608 +GA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,43.216 +GA,Volatile Organic Compounds,2C7_Other-metal,,TON,62.7558 +GA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,40833.46332 +GA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.39 +GA,Volatile Organic Compounds,2D3d_Coating-application,,TON,25192.24517 +GA,Volatile Organic Compounds,2D3e_Degreasing,,TON,5330.772542 +GA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2657.44356 +GA,Volatile Organic Compounds,2D3h_Printing,,TON,862.623 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,390.8090637 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,282.2609159 +GA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,13713.3515 +GA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,0.432 +GA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4950.835029 +GA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3353.06351 +GA,Volatile Organic Compounds,2I_Wood-processing,,TON,48.74 +GA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8802.674908 +GA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2827.53747 +GA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,299.6988821 +GA,Volatile Organic Compounds,5C_Incineration,,TON,198.2960203 +GA,Volatile Organic Compounds,5C_Incineration,biomass,TON,250.3689658 +GA,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,89.45 +GA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.01 +GA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,14695.601 +GA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,912.991354 +GA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,226.5809538 +GA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,196.9750593 +GA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,483.55 +GA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,9.2228917 +HI,Ammonia,1A1a_Public-Electricity,biomass,TON,304.7047417 +HI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,38.58610536 +HI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,5.526099 +HI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,172.7661709 +HI,Ammonia,1A1a_Public-Electricity,light_oil,TON,20.91749 +HI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.008499204 +HI,Ammonia,1A1b_Pet-refining,natural_gas,TON,27.53343178 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.238632317 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.006697667 +HI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.103915962 +HI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.471081751 +HI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.326284211 +HI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,2.096126012 +HI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.95200239 +HI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.077816793 +HI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.057062603 +HI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.73737015 +HI,Ammonia,1A3bii_Road-LDV,light_oil,TON,342.4137038 +HI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.6274813 +HI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,54.47364443 +HI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.27187476 +HI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.116903062 +HI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.012035824 +HI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.19723729 +HI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0257021 +HI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.0990651 +HI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.467333194 +HI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.071018 +HI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.793940662 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.416776058 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,419.8769586 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.458393073 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.254026648 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.78829451 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.279565144 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.571907944 +HI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.140154544 +HI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.500615789 +HI,Ammonia,1A4bi_Residential-stationary,biomass,TON,22.15568186 +HI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.005223349 +HI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.00519889 +HI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,24.49354112 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.137034542 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.003644333 +HI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0055612 +HI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.07046735 +HI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.096443583 +HI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.5953442 +HI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.003 +HI,Ammonia,3B1a_Cattle-dairy,,TON,2019.911975 +HI,Ammonia,3B1b_Cattle-non-dairy,,TON,802.871511 +HI,Ammonia,3B2_Manure-sheep,,TON,28.09543996 +HI,Ammonia,3B3_Manure-swine,,TON,139.020733 +HI,Ammonia,3B4_Manure-other,,TON,240.5548715 +HI,Ammonia,3B4_Manure-poultry,,TON,57.1760515 +HI,Ammonia,3B4d_Manure-goats,,TON,2.87500586 +HI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,3804.100106 +HI,Ammonia,3F_Ag-res-on-field,,TON,147.662152 +HI,Ammonia,5D1_Wastewater-domestic,,TON,9.204832316 +HI,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.06391 +HI,Ammonia,6A_Other-commertial,Other_Fuel,TON,375.962509 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29379.19748 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12248.47759 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,668.5301189 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,255679.6435 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4732.50682 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.293351 +HI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,66651.651 +HI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4163190.861 +HI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,58514.73 +HI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,761928.39 +HI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,15272.808 +HI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,3225.6324 +HI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,458.0346 +HI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,236497.801 +HI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,766.2741 +HI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,176456.98 +HI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,39615.16496 +HI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26496.13 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34355.0002 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,47436.79948 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2166.61258 +HI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,17237.22658 +HI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,111045.1521 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16858.4752 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,273.825038 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.3651748 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,680.784 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5336.85816 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11876.44396 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,41217.898 +HI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,5481.246755 +HI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1330.307248 +HI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,349.6888 +HI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,584.590677 +HI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,153.8436 +HI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,0.07800329 +HI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,304.5023935 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1236.199001 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,821.5477011 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,52.44304711 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7.032406193 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,64.15745277 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,44.62908289 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,6.574496583 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,29.19127783 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1065.844827 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1099.170062 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.09323481 +HI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4005.507038 +HI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,995.1993 +HI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,85837.90032 +HI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,570.3594 +HI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18701.22351 +HI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,44.755382 +HI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,167.4393308 +HI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.85793 +HI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,460.73112 +HI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,36.91849 +HI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,377.2031 +HI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1167.619635 +HI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1065.675 +HI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,0.161349177 +HI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,634.1481398 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,11.67292927 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,57.79552982 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.751341159 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.034963301 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,135.0865195 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,182.0636824 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,11393.39217 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,49.9235025 +HI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,70.63354 +HI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,29110.4088 +HI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,2774.702006 +HI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.026116742 +HI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.02599215 +HI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,79.34451211 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,77.10176238 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,64.7475534 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.04011348 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.59106 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,1507.496316 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.7457879 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5321.839 +HI,Carbon Monoxide,2H2_Food-and-beverage,,TON,269.1626173 +HI,Carbon Monoxide,3F_Ag-res-on-field,,TON,7377.454 +HI,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.790795 +HI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.017536908 +HI,Carbon Monoxide,5C_Open-burning-residential,,TON,297.149863 +HI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,40.3047238 +HI,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.8611477 +HI,Methane,1A3bii_Road-LDV,light_oil,TON,208.6716649 +HI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.3134514 +HI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,53.62920073 +HI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.30277581 +HI,Methane,1A3biii_Road-bus,light_oil,TON,0.367543812 +HI,Methane,1A3biii_Road-bus,natural_gas,TON,2.985068 +HI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.2903164 +HI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0561924 +HI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.9999684 +HI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.131838245 +HI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.268272 +HI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1466.158498 +HI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,5353.455729 +HI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,697.8228 +HI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,17133.86935 +HI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,221.554 +HI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,0.13507888 +HI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1027.898403 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,330.545611 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,102.7452998 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.016707219 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4.353553536 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,268.7366478 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,513.9239617 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,34.90028491 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,89.06854944 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1925.861618 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,18.39460792 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.0189542 +HI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2662.959022 +HI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,240.579805 +HI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,10051.20933 +HI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,263.455 +HI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2195.020208 +HI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,108.362364 +HI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,13.39769211 +HI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.919139 +HI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1512.33283 +HI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,3.2296565 +HI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,952.2244 +HI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,113.9385149 +HI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,47.69925 +HI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1.63870204 +HI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4894.966567 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,3.203771957 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,173.0476797 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.186446355 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.104695668 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,123.5852784 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,314.2161 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,190.4616617 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.1978114 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,156.673744 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,342.8224621 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,44.82720715 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.094020298 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.093579252 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,150.627873 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,154.174168 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.491673809 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008938232 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.65496 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,14.923781 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,133.3784476 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,282.23695 +HI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,405.54522 +HI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,3.73125439 +HI,Nitrogen Oxides,5C_Open-burning-residential,,TON,20.9753138 +HI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.79132395 +HI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.222212528 +HI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,243.5470529 +HI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.2203924 +HI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,55.16143953 +HI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.041285353 +HI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.150110412 +HI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.02812928 +HI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.32520139 +HI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.048851533 +HI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.39324298 +HI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.054941607 +HI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.3633585 +HI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,101.2360791 +HI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,143.9991946 +HI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,48.410265 +HI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1193.39768 +HI,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,19.0419 +HI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.00148251 +HI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,98.31933928 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5.9540064 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.01422371 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,160.9024422 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.202754439 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.197172472 +HI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,10021.37 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,13.02415269 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.7124086 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.714141338 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010108292 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.155246686 +HI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.00564121 +HI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.005612493 +HI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.558332746 +HI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21858.4 +HI,PM10 Filterable,2A6_Other-minerals,,TON,824.3023857 +HI,PM10 Filterable,2H2_Food-and-beverage,,TON,705.4172147 +HI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,195.244396 +HI,PM10 Filterable,3Dc_Other-farm,,TON,645.39 +HI,PM10 Filterable,3F_Ag-res-on-field,,TON,1567.18 +HI,PM10 Filterable,5C_Incineration,biomass,TON,3.956585 +HI,PM10 Filterable,5C_Open-burning-residential,,TON,132.843821 +HI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,6.6742821 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,116.731458 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,351.6939029 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,109.4298 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1553.84175 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,68.10068 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.005178625 +HI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,145.5380914 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.12448834 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.209557096 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.14884916 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6.223252291 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,25.2635143 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,178.0586676 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.298467999 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4.362077508 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,164.7466714 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.393795709 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +HI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,118.5060631 +HI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10021.40305 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,12.419559 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,99.27299915 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.354256 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.98942553 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,7.4796174 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.132969148 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01761804 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,88.544118 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.032811865 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,61.42606 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.73170767 +HI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.8205255 +HI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,0.040337266 +HI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,337.5420534 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,10.63761332 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.09333847 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.38286931 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017602863 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.96198645 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30.1087725 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.13641934 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.272274015 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.92355206 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,112.6600921 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,399.7796173 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.012431565 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.012373358 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.458593174 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.5718382 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.043780482 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.6198E-05 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.9446 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.684449586 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.6554858 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,27.460197 +HI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21858.44487 +HI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,827.7734138 +HI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,705.6490323 +HI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,263.796296 +HI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,645.422407 +HI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1567.19642 +HI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.202474933 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,132.843821 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.6742821 +HI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,85.97992614 +HI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,132.3219608 +HI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,43.996365 +HI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,972.17308 +HI,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,18.1193 +HI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.00148251 +HI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,64.16358828 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5.0883297 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.044527147 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,104.8199136 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.123989065 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.157914372 +HI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,624.35 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,12.45862906 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.28616244 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.121190626 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008640514 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.621887393 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.004335376 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.004313154 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.558332746 +HI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2185.79 +HI,PM2.5 Filterable,2A6_Other-minerals,,TON,121.9659428 +HI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,654.5259867 +HI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,161.761043 +HI,PM2.5 Filterable,3Dc_Other-farm,,TON,129.05 +HI,PM2.5 Filterable,3F_Ag-res-on-field,,TON,1440.55 +HI,PM2.5 Filterable,5C_Incineration,biomass,TON,3.956585 +HI,PM2.5 Filterable,5C_Open-burning-residential,,TON,121.65652 +HI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.14522742 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,101.4750903 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,340.022647 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,105.016 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1332.61806 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,67.17809 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.005178625 +HI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,111.3823974 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.47120016 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.163485327 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.146023357 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,5.357609689 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,19.29333344 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,121.933763 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.219750586 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4.322885592 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,159.8042132 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.806767127 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +HI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,110.4249533 +HI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,624.400979 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,11.4259396 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,87.81881197 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.045886 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.0291849 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,6.8812311 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.11762721 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01558525 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,81.460406 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.029026001 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,56.51182 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.647282724 +HI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.6104781 +HI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,313.1772184 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,9.519686013 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.95015709 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.071064156 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016306033 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.41633923 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29.2054942 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.1205874 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.272274015 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.56584444 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,103.6523238 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,399.0593796 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.011125724 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.011073628 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.458593174 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.1646804 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.04027801 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.6198E-05 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.916261 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.629957186 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.57582067 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,25.2633719 +HI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2185.844487 +HI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,125.4369663 +HI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,654.7631811 +HI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,230.313543 +HI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,129.084431 +HI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1440.56038 +HI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.202474933 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,121.65652 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.14522742 +HI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,57.2288127 +HI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,888.9403068 +HI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1723.455 +HI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,17315.7386 +HI,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,53.611593 +HI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.000880828 +HI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1163.943723 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.651130637 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.804090324 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.054857492 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.864842473 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,343.4866656 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2827.098624 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.372256605 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3.670999477 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.692888409 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.086885562 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85235E-05 +HI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,303.661931 +HI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.57261139 +HI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,81.4608261 +HI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.5049927 +HI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.90895717 +HI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.130973913 +HI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.063110459 +HI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.002425065 +HI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.03132355 +HI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.014992403 +HI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.5050207 +HI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.775082968 +HI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.5184051 +HI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2036.663282 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.3624999 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,366.9554269 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,35.16712943 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.222039487 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.67965185 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.230905874 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.870302859 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.04790706 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.11571682 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.02383694 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,5.824164042 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.222514678 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.222075894 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,0.473533476 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.112560756 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.004992047 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.03154E-06 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004561032 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.097342289 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.080063156 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.7494032 +HI,Sulfur Dioxide,2B_Chemicals-other,,TON,278.021 +HI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,178.054295 +HI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.574612789 +HI,Sulfur Dioxide,5C_Open-burning-residential,,TON,3.49587897 +HI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.387053792 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,174.3199706 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,147.1730362 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,60.4615708 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,86.4402344 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,6.573478 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.008314011 +HI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,197.5642435 +HI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1307.652538 +HI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,117.3178831 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,55.80253722 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,32.29238378 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.710226923 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.204383223 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.454003478 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.456007296 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.120059591 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2.728004839 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,195.9204368 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,82.82395787 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +HI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,446.1627591 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,97.4539 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7957.030898 +HI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,74.25341 +HI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1520.126586 +HI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,12.2256317 +HI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,9.20229955 +HI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.3518504 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,92.846232 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,1.5470339 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,96.31302 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,53.59563208 +HI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,182.48854 +HI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,0.060505895 +HI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,153.9836235 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.496156844 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.895851058 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.25473471 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003568547 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.00071505 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,41.8642295 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,624.3091116 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.154964926 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,16.24942145 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2282.128982 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,532.5216324 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.003724243 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.003709314 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,9.118276447 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.23565353 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.235277876 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000155363 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.714282 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,52.977958 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.07295239 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2065.324033 +HI,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0213 +HI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,103.8768561 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,65.0785942 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,24.99264613 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3045.062237 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2119.462677 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,255.687778 +HI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,58.7171524 +HI,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,3.672545 +HI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4142.996727 +HI,Volatile Organic Compounds,2D3d_Coating-application,,TON,6339.835483 +HI,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,604.3884082 +HI,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,846.178388 +HI,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,845.337761 +HI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +HI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,331.9102947 +HI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,206.2881937 +HI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,535.25363 +HI,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,94.8298289 +HI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.013059411 +HI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,29.9247544 +HI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,7.5171696 +HI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,253.3042518 +HI,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,18.5092 +IA,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +IA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.5 +IA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,74.92207 +IA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.06 +IA,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +IA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,12.24179871 +IA,Ammonia,1A1b_Pet-refining,natural_gas,TON,0.01 +IA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.584123493 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.122996912 +IA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,1.937030483 +IA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.96270965 +IA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,166.3534739 +IA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.177669883 +IA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.048726891 +IA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,226.9050048 +IA,Ammonia,1A2c_Chemicals,diesel_oil,TON,0 +IA,Ammonia,1A2c_Chemicals,heavy_oil,TON,0 +IA,Ammonia,1A2c_Chemicals,natural_gas,TON,15.28 +IA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,7.448871886 +IA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.204486004 +IA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.843513703 +IA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1052.098282 +IA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.766237 +IA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,166.856867 +IA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.254479613 +IA,Ammonia,1A3biii_Road-bus,light_oil,TON,0.54513778 +IA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.05615564 +IA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,55.3868324 +IA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.452154113 +IA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,27.9131379 +IA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.569747038 +IA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.401851 +IA,Ammonia,1A3c_Rail,diesel_oil,TON,11.50803618 +IA,Ammonia,1A3c_Rail,light_oil,TON,0.004058249 +IA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.454865875 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.467601838 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.409811533 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.252434786 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.048840511 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033698543 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.30634897 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.765015655 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.565181462 +IA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.177098699 +IA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.620511369 +IA,Ammonia,1A4bi_Residential-stationary,biomass,TON,302.6263577 +IA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.057999117 +IA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,28 +IA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.303750112 +IA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,688.4260226 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,30.10005308 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.785330105 +IA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.013286538 +IA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.07153025 +IA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.314137159 +IA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.9633213 +IA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +IA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,Ammonia,2A1_Cement-production,,TON,4.88 +IA,Ammonia,2A2_Lime-production,,TON,0 +IA,Ammonia,2A6_Other-minerals,,TON,2450.15 +IA,Ammonia,2B_Chemicals-other,,TON,247.8659 +IA,Ammonia,2C_Iron-steel-alloy,,TON,6.511 +IA,Ammonia,2C3_Aluminum-production,,TON,1.44 +IA,Ammonia,2C7_Other-metal,,TON,0 +IA,Ammonia,2C7a_Copper-production,,TON,0 +IA,Ammonia,2D3d_Coating-application,,TON,0.29 +IA,Ammonia,2D3e_Degreasing,,TON,0 +IA,Ammonia,2D3f_Dry-cleaning,,TON,0 +IA,Ammonia,2D3h_Printing,,TON,0.032 +IA,Ammonia,2D3i_Other-solvent-use,biomass,TON,0 +IA,Ammonia,2H1_Pulp-and-paper,,TON,0 +IA,Ammonia,2H2_Biodiesel Production,,TON,0 +IA,Ammonia,2H2_Ethanol Production,,TON,57.85 +IA,Ammonia,2H2_Food-and-beverage,,TON,7.765098 +IA,Ammonia,2H3_Other-industrial-processes,,TON,0 +IA,Ammonia,2I_Wood-processing,,TON,0 +IA,Ammonia,3B1a_Cattle-dairy,,TON,16404.779 +IA,Ammonia,3B1b_Cattle-non-dairy,,TON,36334.66191 +IA,Ammonia,3B2_Manure-sheep,,TON,730.71504 +IA,Ammonia,3B3_Manure-swine,,TON,119501.3066 +IA,Ammonia,3B4_Manure-other,,TON,967.4148 +IA,Ammonia,3B4_Manure-poultry,,TON,31757.86296 +IA,Ammonia,3B4d_Manure-goats,,TON,390.529392 +IA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,74678.57972 +IA,Ammonia,3Dc_Other-farm,,TON,0 +IA,Ammonia,5A_Solid-waste-disposal,,TON,0 +IA,Ammonia,5C_Incineration,,TON,0 +IA,Ammonia,5C_Incineration,biomass,TON,0 +IA,Ammonia,5C_Open-burning-dump,,TON,0 +IA,Ammonia,5C_Open-burning-industrial,,TON,0 +IA,Ammonia,5D1_Wastewater-domestic,,TON,46.0955966 +IA,Ammonia,5D2_Wastewater-industrial,biomass,TON,0 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,195040.7719 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,228049.2816 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12427.07101 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,916599.5669 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,16964.21713 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.880050669 +IA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,184067.0837 +IA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,11977278.2 +IA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,169921.116 +IA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2240702.62 +IA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,79475.6388 +IA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,16206.75771 +IA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2382.54743 +IA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3040277.02 +IA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,37445.36915 +IA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1894417.902 +IA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,155845.3626 +IA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,84584.349 +IA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6783.57788 +IA,Carbon Dioxide,1A3c_Rail,light_oil,TON,314.6966516 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94010.58101 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,129817.755 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5660.079017 +IA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,21781.02946 +IA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,192980.7094 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3703022.181 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,59010.1046 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,91.1902969 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1626.514 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,205948.3186 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,38684.09633 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,435750.7037 +IA,Carbon Monoxide,11C_Other-natural,,TON,75170.388 +IA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,2.98 +IA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,9.699167 +IA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,21501.62 +IA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,534.653 +IA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0 +IA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,291.1698 +IA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,3.2693 +IA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,893.6004707 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10492.89002 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,635.9148165 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,231.0012844 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,180.1166498 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4929.59082 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.033692518 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.830035562 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5509.059674 +IA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +IA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +IA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,291.424 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3820.21005 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4017.948408 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.27970433 +IA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3367.824808 +IA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2871.07104 +IA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,285334.754 +IA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1607.79656 +IA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,59190.148 +IA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,221.8406524 +IA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,897.1315231 +IA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,16.0829358 +IA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7235.621964 +IA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1237.810359 +IA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3687.18465 +IA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5356.881302 +IA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3482.61135 +IA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3721.443036 +IA,Carbon Monoxide,1A3c_Rail,light_oil,TON,82.48260816 +IA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,156.5994081 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,170.1831289 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,37.3112208 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,724.2004523 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.334647475 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.20177279 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1980.293894 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,498.1937654 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,31375.595 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,133.8577879 +IA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,88.96210256 +IA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,54535.05549 +IA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,39815.91757 +IA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,10.28999923 +IA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,3850.005 +IA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.518749884 +IA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1735.41842 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16923.79637 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,14813.98154 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.02970927 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.723473 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,32564.2727 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,77.34623664 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,48033.53727 +IA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +IA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,66.7657 +IA,Carbon Monoxide,2A1_Cement-production,,TON,1614.68 +IA,Carbon Monoxide,2A2_Lime-production,,TON,0 +IA,Carbon Monoxide,2A6_Other-minerals,,TON,408.224 +IA,Carbon Monoxide,2B_Chemicals-other,,TON,926.185855 +IA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2612.952 +IA,Carbon Monoxide,2C3_Aluminum-production,,TON,27.66 +IA,Carbon Monoxide,2C5_Lead-production,,TON,0 +IA,Carbon Monoxide,2C7_Other-metal,,TON,0 +IA,Carbon Monoxide,2C7a_Copper-production,,TON,0.44 +IA,Carbon Monoxide,2D3d_Coating-application,,TON,5.03 +IA,Carbon Monoxide,2D3e_Degreasing,,TON,0 +IA,Carbon Monoxide,2D3f_Dry-cleaning,,TON,0 +IA,Carbon Monoxide,2D3h_Printing,,TON,1.348 +IA,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,0 +IA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +IA,Carbon Monoxide,2H2_Biodiesel Production,,TON,0 +IA,Carbon Monoxide,2H2_Ethanol Production,,TON,1077.7 +IA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1546.47829 +IA,Carbon Monoxide,2H3_Other-industrial-processes,,TON,16.9 +IA,Carbon Monoxide,2I_Wood-processing,,TON,0 +IA,Carbon Monoxide,3Dc_Other-farm,,TON,157.85 +IA,Carbon Monoxide,3F_Ag-res-on-field,,TON,25.95159286 +IA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,350.617988 +IA,Carbon Monoxide,5C_Incineration,,TON,0.601214837 +IA,Carbon Monoxide,5C_Incineration,biomass,TON,25.53439576 +IA,Carbon Monoxide,5C_Open-burning-dump,,TON,0 +IA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0 +IA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2885.72662 +IA,Carbon Monoxide,5C_Open-burning-residential,,TON,4012.9419 +IA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,284.707726 +IA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,5.3 +IA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0 +IA,Methane,1A3bii_Road-LDV,diesel_oil,TON,9.03980041 +IA,Methane,1A3bii_Road-LDV,light_oil,TON,838.637784 +IA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.9564047 +IA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,205.313283 +IA,Methane,1A3biii_Road-bus,diesel_oil,TON,1.94816846 +IA,Methane,1A3biii_Road-bus,light_oil,TON,2.068464102 +IA,Methane,1A3biii_Road-bus,natural_gas,TON,15.7908653 +IA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,295.9106427 +IA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.092774973 +IA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.8812849 +IA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.02695496 +IA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.9652842 +IA,Nitrogen Oxides,11C_Other-natural,,TON,34353.71 +IA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +IA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,116.516688 +IA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,39785.33 +IA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.88 +IA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0 +IA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,665.2891 +IA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.8831 +IA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.83 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1314.318796 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1398.261617 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,93.16926178 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,145.8184515 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,766.1467034 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4659.492111 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.52578887 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.489282258 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,14758.0419 +IA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +IA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0 +IA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,377.912 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6904.548873 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,72.54465324 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.056862583 +IA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,299.0598779 +IA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,692.882854 +IA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,35011.7252 +IA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,763.74395 +IA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7390.5342 +IA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,612.1417462 +IA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,76.61633985 +IA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,10.2179051 +IA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25655.37097 +IA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,174.6897547 +IA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11699.01235 +IA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,522.8948502 +IA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,174.369885 +IA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,25547.24831 +IA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.334412278 +IA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,770.3987246 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,64.32039232 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,172.4362577 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1988.085249 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.722872611 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.811669478 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2307.097624 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,859.8178274 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,598.9456099 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.61254015 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,198.1488374 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,642.3861707 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,562.8713367 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,37.0439814 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,127.31468 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,5.46750037 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4510.59981 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,33847.37045 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,335.2382759 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.2373948 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.912089 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,342.4265224 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,434.4233285 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3109.377812 +IA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +IA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,30.1325 +IA,Nitrogen Oxides,2A1_Cement-production,,TON,1604.45 +IA,Nitrogen Oxides,2A2_Lime-production,,TON,0 +IA,Nitrogen Oxides,2A6_Other-minerals,,TON,1978.332 +IA,Nitrogen Oxides,2B_Chemicals-other,,TON,862.56795 +IA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,799.753 +IA,Nitrogen Oxides,2C3_Aluminum-production,,TON,28.85 +IA,Nitrogen Oxides,2C5_Lead-production,,TON,0 +IA,Nitrogen Oxides,2C7_Other-metal,,TON,0 +IA,Nitrogen Oxides,2C7a_Copper-production,,TON,2.22 +IA,Nitrogen Oxides,2D3d_Coating-application,,TON,6.04 +IA,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +IA,Nitrogen Oxides,2D3f_Dry-cleaning,,TON,0 +IA,Nitrogen Oxides,2D3h_Printing,,TON,1.602 +IA,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,0 +IA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,0 +IA,Nitrogen Oxides,2H2_Biodiesel Production,,TON,0 +IA,Nitrogen Oxides,2H2_Ethanol Production,,TON,1502.46 +IA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,501.09932 +IA,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,7.35 +IA,Nitrogen Oxides,2I_Wood-processing,,TON,0 +IA,Nitrogen Oxides,3Dc_Other-farm,,TON,84.58 +IA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1.191026427 +IA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +IA,Nitrogen Oxides,5C_Incineration,,TON,0.21306441 +IA,Nitrogen Oxides,5C_Incineration,biomass,TON,72.19273254 +IA,Nitrogen Oxides,5C_Open-burning-dump,,TON,0 +IA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0 +IA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,85.3765202 +IA,Nitrogen Oxides,5C_Open-burning-residential,,TON,283.26649 +IA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,12.6536797 +IA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,6.02 +IA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +IA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.561063134 +IA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,717.778954 +IA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.582859785 +IA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,160.356698 +IA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.187804774 +IA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.713187624 +IA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.132186924 +IA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.47551427 +IA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.070185665 +IA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.04910812 +IA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9.380464719 +IA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.10102658 +IA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,5.5820845 +IA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,10.73606884 +IA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,5819.052804 +IA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,7.092785 +IA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +IA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,31.2494312 +IA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,17.9127956 +IA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.2736 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,171.3656014 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,52.51138267 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1048.100116 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.22700827 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.060906584 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,149.1130057 +IA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,8.91326231 +IA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,165337.7416 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,137.9384696 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.87976186 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,178.1940396 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.977012837 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043704249 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.22907578 +IA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.222640043 +IA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,86.85318 +IA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.328050133 +IA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.67425491 +IA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM10 Filterable,2A1_Cement-production,,TON,169.6286316 +IA,PM10 Filterable,2A2_Lime-production,,TON,85.26913491 +IA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,19971.29977 +IA,PM10 Filterable,2A6_Other-minerals,,TON,5918.264231 +IA,PM10 Filterable,2B_Chemicals-other,,TON,95.70755431 +IA,PM10 Filterable,2C_Iron-steel-alloy,,TON,301.1317819 +IA,PM10 Filterable,2C3_Aluminum-production,,TON,118.9433391 +IA,PM10 Filterable,2C5_Lead-production,,TON,0 +IA,PM10 Filterable,2C7_Other-metal,,TON,84.51890149 +IA,PM10 Filterable,2C7a_Copper-production,,TON,50.3121747 +IA,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0135791 +IA,PM10 Filterable,2D3d_Coating-application,,TON,159.0822 +IA,PM10 Filterable,2D3e_Degreasing,,TON,0.535322 +IA,PM10 Filterable,2D3f_Dry-cleaning,,TON,0 +IA,PM10 Filterable,2D3h_Printing,,TON,0.119 +IA,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Filterable,2H1_Pulp-and-paper,,TON,44.26657832 +IA,PM10 Filterable,2H2_Biodiesel Production,,TON,0.84 +IA,PM10 Filterable,2H2_Ethanol Production,,TON,336.787476 +IA,PM10 Filterable,2H2_Food-and-beverage,,TON,1651.718252 +IA,PM10 Filterable,2H3_Other-industrial-processes,,TON,305.3621444 +IA,PM10 Filterable,2I_Wood-processing,,TON,11.86 +IA,PM10 Filterable,3Dc_Other-farm,,TON,340910.9918 +IA,PM10 Filterable,5A_Solid-waste-disposal,,TON,107.1934 +IA,PM10 Filterable,5C_Incineration,,TON,0.254296 +IA,PM10 Filterable,5C_Incineration,biomass,TON,8.738605 +IA,PM10 Filterable,5C_Open-burning-dump,,TON,0 +IA,PM10 Filterable,5C_Open-burning-industrial,,TON,0 +IA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,290.28015 +IA,PM10 Filterable,5C_Open-burning-residential,,TON,1794.02059 +IA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,47.1462594 +IA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.43869 +IA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.603 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,12.056839 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6657.9622 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,7.697 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,68.41324 +IA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,17.95 +IA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.72 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,110.8495938 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23.55898809 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.525492254 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,177.1196438 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,55.09740257 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1165.165454 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.869028755 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.140112071 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,318.7774191 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,23.058 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,592.057532 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.49074982 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +IA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,77.38126601 +IA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,165337.7416 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,47.82841019 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1941.164771 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,60.029513 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,355.696993 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,44.70769292 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.176290361 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.300479509 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1151.069735 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.753595334 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,852.115807 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,19.17523127 +IA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.4891997 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,855.2328764 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.043714452 +IA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,25.46179632 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,144.1903035 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.20272971 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,194.3802113 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.044643537 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.098406693 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.31289265 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.49535773 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,35.95290439 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.709470998 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,15.03672093 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,178.2167225 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5789.039307 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.89558791 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,101.4056157 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.722709553 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,22.5499044 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2984.292487 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.98681084 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.011527829 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.25408 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,303.5907153 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.695226825 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,121.8429189 +IA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,176.8818 +IA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,107.746 +IA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,19971.29977 +IA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5953.902399 +IA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,114.240111 +IA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,458.3494859 +IA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,120.7398 +IA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +IA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,93.431464 +IA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,52.3 +IA,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.05 +IA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,159.0822 +IA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.535322 +IA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0 +IA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.119 +IA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,45.548 +IA,PM10 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0.84 +IA,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,447.66 +IA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2699.711358 +IA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,307.37576 +IA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,11.86 +IA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,340916.2629 +IA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,4.541529 +IA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,117.69 +IA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.300795606 +IA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.40967649 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,290.28015 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1794.02059 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,47.1462594 +IA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.48 +IA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0 +IA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.3759845 +IA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.5421665 +IA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4105.802934 +IA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,6.235785 +IA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +IA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,31.2394312 +IA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,4.0327956 +IA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.2736 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,137.4225384 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,48.76277662 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,213.1501951 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.839548851 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.015395698 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,145.8766708 +IA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,8.85526231 +IA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,19193.19859 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,118.5617297 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.82104491 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,119.9834835 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.405023025 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033624445 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.10939191 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.708140168 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,53.259192 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.25211254 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.77083862 +IA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM2.5 Filterable,2A1_Cement-production,,TON,75.93735199 +IA,PM2.5 Filterable,2A2_Lime-production,,TON,83.22067161 +IA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1997.129977 +IA,PM2.5 Filterable,2A6_Other-minerals,,TON,1681.446196 +IA,PM2.5 Filterable,2B_Chemicals-other,,TON,67.61855431 +IA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,254.4976684 +IA,PM2.5 Filterable,2C3_Aluminum-production,,TON,115.8333391 +IA,PM2.5 Filterable,2C5_Lead-production,,TON,0 +IA,PM2.5 Filterable,2C7_Other-metal,,TON,77.99870179 +IA,PM2.5 Filterable,2C7a_Copper-production,,TON,46.0521744 +IA,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0135791 +IA,PM2.5 Filterable,2D3d_Coating-application,,TON,146.1638 +IA,PM2.5 Filterable,2D3e_Degreasing,,TON,0.525322 +IA,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0 +IA,PM2.5 Filterable,2D3h_Printing,,TON,0.082 +IA,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,38.38857752 +IA,PM2.5 Filterable,2H2_Biodiesel Production,,TON,0.12 +IA,PM2.5 Filterable,2H2_Ethanol Production,,TON,269.5674762 +IA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,755.0155787 +IA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,250.6141444 +IA,PM2.5 Filterable,2I_Wood-processing,,TON,6.939 +IA,PM2.5 Filterable,3Dc_Other-farm,,TON,68297.06039 +IA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,42.8914 +IA,PM2.5 Filterable,5C_Incineration,,TON,0.254296 +IA,PM2.5 Filterable,5C_Incineration,biomass,TON,8.4146052 +IA,PM2.5 Filterable,5C_Open-burning-dump,,TON,0 +IA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +IA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,223.7769444 +IA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1642.94525 +IA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,36.3452107 +IA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.40869 +IA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.3969 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,10.862939 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4944.712842 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.84 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,68.40324 +IA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.07 +IA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.72 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,107.5167906 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23.44097908 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.525142816 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,142.6331577 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,51.10571784 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,330.58911 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,5.544474142 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.095073443 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,315.3453451 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,23 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,574.2959233 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.3875828 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +IA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,63.62325908 +IA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19193.19859 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,32.83631637 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,815.270314 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,44.894541 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,140.874884 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,34.851198 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.761401296 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.107359347 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,945.1636109 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.554575442 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,637.041952 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.163208102 +IA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.31377619 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,790.1210344 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.040295132 +IA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,24.69794922 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,124.8249629 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.14392731 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,136.1526935 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.50313283 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.087077661 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.15914008 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,80.02044618 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,33.17263909 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.709470998 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,14.58561422 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,163.9657634 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5784.764707 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.37715215 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,67.81836848 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.645503101 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,18.6112618 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2894.763314 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.02844779 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.011527829 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.1864583 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,279.3042829 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.434371407 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,112.0954162 +IA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,83.1905 +IA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,105.6975367 +IA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1997.129977 +IA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1717.084364 +IA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,86.151111 +IA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,409.2253795 +IA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,117.6298 +IA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,86.9112653 +IA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,48.04 +IA,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.05 +IA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,146.1638 +IA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.525322 +IA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.082 +IA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,39.6699991 +IA,PM2.5 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0.12 +IA,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,380.44 +IA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1712.297719 +IA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,252.62776 +IA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,6.939 +IA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,68302.33151 +IA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2.469239429 +IA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,53.388 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.30149411 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.08497799 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,223.7769444 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1642.94525 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,36.3452107 +IA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.45 +IA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,14.067145 +IA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,99843.66 +IA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.02 +IA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,8.769148 +IA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0 +IA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.024114343 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.500012759 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.280266474 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,63.56176291 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,104.3677802 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,17775.94965 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,68.26574118 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.734578123 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,37.4846644 +IA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +IA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,1.052 +IA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1.018 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,17.10318097 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.31145676 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.55706E-05 +IA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,44.32471743 +IA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.580696628 +IA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,236.711417 +IA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.46477567 +IA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,44.2838189 +IA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.681597147 +IA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.320300107 +IA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.012614367 +IA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,26.11943666 +IA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.740047591 +IA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.20850231 +IA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.080029523 +IA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.67167069 +IA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,258.605657 +IA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005749137 +IA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9.467023108 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.11668858 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.383741 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5115.1634 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,22.56326981 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.789213841 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.16935059 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.780703497 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.381707108 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.125148163 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.412009832 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.51640404 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,114.4612107 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,87.6707792 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,2012.22964 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,12.93974904 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,26.0227528 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,69.67562486 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.075849652 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002005582 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.030708 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.740298245 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.829764215 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.936957239 +IA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +IA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,Sulfur Dioxide,2A1_Cement-production,,TON,1527.3 +IA,Sulfur Dioxide,2A2_Lime-production,,TON,0 +IA,Sulfur Dioxide,2A6_Other-minerals,,TON,527.498 +IA,Sulfur Dioxide,2B_Chemicals-other,,TON,143.4695766 +IA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,249.34603 +IA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.39 +IA,Sulfur Dioxide,2C5_Lead-production,,TON,0 +IA,Sulfur Dioxide,2C7_Other-metal,,TON,0 +IA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.013 +IA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.09 +IA,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +IA,Sulfur Dioxide,2D3f_Dry-cleaning,,TON,0 +IA,Sulfur Dioxide,2D3h_Printing,,TON,0.004 +IA,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0 +IA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0 +IA,Sulfur Dioxide,2H2_Biodiesel Production,,TON,0 +IA,Sulfur Dioxide,2H2_Ethanol Production,,TON,239.72 +IA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1204.864573 +IA,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0.11 +IA,Sulfur Dioxide,2I_Wood-processing,,TON,0 +IA,Sulfur Dioxide,3Dc_Other-farm,,TON,17.70586 +IA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.602948701 +IA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +IA,Sulfur Dioxide,5C_Incineration,,TON,0.423478586 +IA,Sulfur Dioxide,5C_Incineration,biomass,TON,2.256011589 +IA,Sulfur Dioxide,5C_Open-burning-dump,,TON,0 +IA,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0 +IA,Sulfur Dioxide,5C_Open-burning-residential,,TON,47.211096 +IA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.73409924 +IA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.76 +IA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0 +IA,Volatile Organic Compounds,11C_Other-natural,,TON,290962.15 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.57175 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.310085 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,567.615 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.06 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,22.2453 +IA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,29.8760906 +IA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.52 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,116.9087293 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,434.5956864 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.600695115 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,20.9085429 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,76.19808953 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,49.89002066 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.072992007 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.028590579 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,720.0099909 +IA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +IA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +IA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,163.48 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,702.2089462 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,287.8657631 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000929703 +IA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,161.5258369 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,305.029694 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,28245.509 +IA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,234.01754 +IA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5179.4419 +IA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,59.2634678 +IA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,45.61981016 +IA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.86977327 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2426.99335 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,37.87096441 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,835.259867 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,244.6593697 +IA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,518.107089 +IA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1329.800721 +IA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.108716514 +IA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,17.62401791 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.813693762 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.728190124 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,45.52981232 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.06890632 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.013884344 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,137.8512325 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,114.5555548 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1566.609862 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.419196824 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,20.48080212 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4093.585825 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7499.407906 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.440600094 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,140 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.212625022 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,238.541841 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3124.780242 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,656.2370702 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.038877064 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.087847 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10716.65328 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.78186067 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8344.47235 +IA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,271.7679229 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,504.6672252 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1405.623911 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11276.74992 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7598.476357 +IA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.079029 +IA,Volatile Organic Compounds,2A1_Cement-production,,TON,129.96 +IA,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +IA,Volatile Organic Compounds,2A6_Other-minerals,,TON,75.94856997 +IA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,771.3984 +IA,Volatile Organic Compounds,2B_Chemicals-other,,TON,2902.05551 +IA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1050.491 +IA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,184.43 +IA,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +IA,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +IA,Volatile Organic Compounds,2C7a_Copper-production,,TON,88.21 +IA,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.55 +IA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12840.38639 +IA,Volatile Organic Compounds,2D3d_Coating-application,,TON,12193.42345 +IA,Volatile Organic Compounds,2D3e_Degreasing,,TON,3125.74795 +IA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,0 +IA,Volatile Organic Compounds,2D3h_Printing,,TON,1199.35238 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1472.507441 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,428.6048515 +IA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,0 +IA,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,0.95 +IA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,1157.506 +IA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,7001.900194 +IA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1264.1367 +IA,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +IA,Volatile Organic Compounds,3Dc_Other-farm,,TON,228.4714 +IA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,26088.85207 +IA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1.957019119 +IA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,67.30107 +IA,Volatile Organic Compounds,5C_Incineration,,TON,0.185739779 +IA,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.086887271 +IA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0 +IA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0 +IA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,198.0735978 +IA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,404.12681 +IA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,53.1002617 +IA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,61.4927023 +IA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +IA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,3.07 +IA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.06 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.501937456 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.034292895 +ID,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,49.15519273 +ID,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.126971641 +ID,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.005550366 +ID,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.333019755 +ID,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.001229872 +ID,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,19.2130325 +ID,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.483578791 +ID,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.095674823 +ID,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.4214689 +ID,Ammonia,1A3bii_Road-LDV,light_oil,TON,579.258266 +ID,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.236793796 +ID,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.69647312 +ID,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.349731951 +ID,Ammonia,1A3biii_Road-bus,light_oil,TON,1.555274771 +ID,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.07106239 +ID,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.32756717 +ID,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.738719681 +ID,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.6185896 +ID,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.432200204 +ID,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.18990295 +ID,Ammonia,1A3c_Rail,diesel_oil,TON,4.444748592 +ID,Ammonia,1A3c_Rail,light_oil,TON,0.001924718 +ID,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00221933 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.663754339 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.80353625 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.122821994 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.046700245 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008374294 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.050352184 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.302366702 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.618505355 +ID,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.124533984 +ID,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.511753979 +ID,Ammonia,1A4bi_Residential-stationary,biomass,TON,260.6910913 +ID,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.793154894 +ID,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.94992797 +ID,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.034139778 +ID,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,242.8753225 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.660951773 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.184997803 +ID,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006031346 +ID,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.049869863 +ID,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.196583532 +ID,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.214233731 +ID,Ammonia,2A1_Cement-production,,TON,0 +ID,Ammonia,2B_Chemicals-other,,TON,126.8097 +ID,Ammonia,2D3d_Coating-application,,TON,23.30231315 +ID,Ammonia,2D3h_Printing,Other_Fuel,TON,4.61508191 +ID,Ammonia,2H1_Pulp-and-paper,,TON,67.182 +ID,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,1009.57 +ID,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,40.381 +ID,Ammonia,3B1a_Cattle-dairy,,TON,36574.79138 +ID,Ammonia,3B1b_Cattle-non-dairy,,TON,7423.827519 +ID,Ammonia,3B2_Manure-sheep,,TON,829.9960326 +ID,Ammonia,3B3_Manure-swine,,TON,193.1048429 +ID,Ammonia,3B4_Manure-other,,TON,1025.734331 +ID,Ammonia,3B4_Manure-poultry,,TON,340.5611512 +ID,Ammonia,3B4d_Manure-goats,,TON,126.9336554 +ID,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14381.668 +ID,Ammonia,3F_Ag-res-on-field,,TON,184.0259433 +ID,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,2.77539E-05 +ID,Ammonia,5C_Open-burning-residential,,TON,30.1923288 +ID,Ammonia,5C_Open-burning-yard-waste,,TON,4.921060883 +ID,Ammonia,5D1_Wastewater-domestic,,TON,4.395605447 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,61798.8273 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,60054.94232 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3363.858288 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,428661.5621 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,7937.387463 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.586699755 +ID,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,96615.8867 +ID,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,6174997.67 +ID,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8608.44318 +ID,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,110021.9647 +ID,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,75963.234 +ID,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,42514.14515 +ID,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2659.06497 +ID,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1919664.156 +ID,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,17022.36112 +ID,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1744616.316 +ID,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,198635.5265 +ID,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,51213.0772 +ID,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3223.17846 +ID,Carbon Dioxide,1A3c_Rail,light_oil,TON,149.3523708 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,37156.97604 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,51301.79643 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2266.289536 +ID,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,15316.19124 +ID,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,111364.8611 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,696468.0159 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13664.6182 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.29583483 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,738.33346 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,201475.1864 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24208.07298 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,84065.73595 +ID,Carbon Monoxide,11C_Other-natural,,TON,142280.147 +ID,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,94.2 +ID,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.0002458 +ID,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,135.6410457 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,403.728634 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2825.773886 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,170.3998717 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8187.994784 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,125.5434174 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,490.5218528 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.084812424 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.846706645 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1433.950419 +ID,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,5.55061 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1786.740524 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1866.096756 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.186469577 +ID,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4303.639285 +ID,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3363.065854 +ID,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,186348.0468 +ID,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,71.1544281 +ID,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4704.24925 +ID,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,231.7113322 +ID,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2527.314307 +ID,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,8.4074014 +ID,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4555.139031 +ID,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,365.3194726 +ID,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3243.83162 +ID,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7235.899909 +ID,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2481.83391 +ID,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1446.512334 +ID,Carbon Monoxide,1A3c_Rail,light_oil,TON,38.72821568 +ID,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.682484 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,615.7892854 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,70.76211462 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,20.25733311 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.288839459 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.049722931 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,688.8156305 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,196.8983144 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12323.81318 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,53.04763641 +ID,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,62.56519679 +ID,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,30749.29512 +ID,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,32570.02192 +ID,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,18.96576102 +ID,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,130.615111 +ID,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.170699014 +ID,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,567.8352112 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3118.277675 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3695.334507 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.792393247 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.1494076 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,28817.4893 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,48.40265036 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11237.54792 +ID,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,10.96 +ID,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,85.99 +ID,Carbon Monoxide,2A1_Cement-production,,TON,0 +ID,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,824.8 +ID,Carbon Monoxide,2A6_Other-minerals,,TON,149.06894 +ID,Carbon Monoxide,2B_Chemicals-other,,TON,11807.86847 +ID,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1431.231 +ID,Carbon Monoxide,2H2_Food-and-beverage,,TON,4508.803218 +ID,Carbon Monoxide,3F_Ag-res-on-field,,TON,11233.16425 +ID,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,25.21070689 +ID,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.088391544 +ID,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.5304 +ID,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3457.328583 +ID,Carbon Monoxide,5C_Open-burning-residential,,TON,1463.82958 +ID,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,260.9654204 +ID,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.57209982 +ID,Methane,1A3bii_Road-LDV,light_oil,TON,511.205325 +ID,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.605331582 +ID,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.78122154 +ID,Methane,1A3biii_Road-bus,diesel_oil,TON,1.706536945 +ID,Methane,1A3biii_Road-bus,light_oil,TON,6.559051431 +ID,Methane,1A3biii_Road-bus,natural_gas,TON,4.25888345 +ID,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,263.7563048 +ID,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.43216105 +ID,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,38.6088245 +ID,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,16.53317104 +ID,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.91486279 +ID,Nitrogen Oxides,11C_Other-natural,,TON,16668.7944 +ID,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,80.02 +ID,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0.001141 +ID,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,76.95515437 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,436.5899836 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,370.9363399 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24.92860075 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2605.089058 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,570.0300718 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3256.126416 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.95520979 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.239682801 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4623.923598 +ID,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,11.5765 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3228.893536 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,34.42819106 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.037908448 +ID,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,275.6135062 +ID,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,451.7420285 +ID,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,21320.7201 +ID,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.6825229 +ID,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,419.335043 +ID,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,560.4205528 +ID,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,279.4941088 +ID,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.06483095 +ID,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16390.88616 +ID,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,57.58638997 +ID,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10604.18438 +ID,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,753.1402617 +ID,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,115.115731 +ID,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10106.40677 +ID,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.649926256 +ID,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.35752 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,216.8239166 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,307.4215673 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,42.24457873 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.0117255 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.189512942 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,796.2467738 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,339.8456624 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,238.0312978 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.07765953 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,139.3592839 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,378.1369921 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,509.5129435 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,68.27676666 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,4.32217232 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.614516031 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1433.391718 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6261.665819 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,73.77961531 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.399847454 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.2162266 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,322.147254 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,271.8549357 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,590.1169012 +ID,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.385 +ID,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,672.14 +ID,Nitrogen Oxides,2A1_Cement-production,,TON,0 +ID,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,5.976 +ID,Nitrogen Oxides,2A6_Other-minerals,,TON,2.4017 +ID,Nitrogen Oxides,2B_Chemicals-other,,TON,204.5797 +ID,Nitrogen Oxides,2D3d_Coating-application,,TON,0.00003293 +ID,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,643.968 +ID,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,362.709 +ID,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,6.984 +ID,Nitrogen Oxides,3F_Ag-res-on-field,,TON,377.8003671 +ID,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +ID,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.01785 +ID,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,102.2880186 +ID,Nitrogen Oxides,5C_Open-burning-residential,,TON,103.32918 +ID,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,11.3706316 +ID,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.476024 +ID,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.312204975 +ID,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,476.550883 +ID,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.034160573 +ID,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11.90697862 +ID,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.204254769 +ID,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.598117251 +ID,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.179112059 +ID,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.663985468 +ID,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.520260249 +ID,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.92985011 +ID,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12.28690322 +ID,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.729171613 +ID,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,12.27048 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3547.583944 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,17.49418101 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,852.9508123 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.980306269 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.017194756 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,25.66670482 +ID,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,241879.235 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,362.0584892 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.626975316 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,48.08491975 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.753207729 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010376587 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.692936097 +ID,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,70.87835717 +ID,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.844522457 +ID,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,3.09257089 +ID,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.03540178 +ID,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.681851391 +ID,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.513032 +ID,PM10 Filterable,2A1_Cement-production,,TON,19.030512 +ID,PM10 Filterable,2A2_Lime-production,Other_Fuel,TON,3.8808 +ID,PM10 Filterable,2A5b_Construction-and-demolition,,TON,5221.8815 +ID,PM10 Filterable,2A6_Other-minerals,,TON,3212.480446 +ID,PM10 Filterable,2B_Chemicals-other,,TON,624.3954526 +ID,PM10 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,2.402 +ID,PM10 Filterable,2D3d_Coating-application,,TON,0.07137863 +ID,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0004251 +ID,PM10 Filterable,2H1_Pulp-and-paper,,TON,511.6884384 +ID,PM10 Filterable,2H2_Food-and-beverage,,TON,731.9548701 +ID,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,41.6613 +ID,PM10 Filterable,2I_Wood-processing,,TON,14.92 +ID,PM10 Filterable,3Dc_Other-farm,,TON,99500.3139 +ID,PM10 Filterable,3F_Ag-res-on-field,,TON,1266.815688 +ID,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,249.465 +ID,PM10 Filterable,5C_Incineration,Other_Fuel,TON,0.908329566 +ID,PM10 Filterable,5C_Open-burning-industrial,,TON,0.35 +ID,PM10 Filterable,5C_Open-burning-land-clearing,,TON,347.7788695 +ID,PM10 Filterable,5C_Open-burning-residential,,TON,477.84 +ID,PM10 Filterable,5C_Open-burning-yard-waste,,TON,41.03081062 +ID,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,1.9881 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,28.95 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.0000801 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,17.13608376 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,35.12564402 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.31151522 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.420456868 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3864.556751 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,39.60154896 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,883.7760896 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,9.252364822 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.019112063 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,59.5567452 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,276.8985597 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,12.38923889 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303091 +ID,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,97.70011446 +ID,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,239000.5359 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,27.29749402 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1087.817359 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.64284249 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.196576 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,44.05523996 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.595756813 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.259044929 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,619.107169 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.556585943 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,682.679369 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,24.73906286 +ID,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.2373586 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,330.0422799 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.020735261 +ID,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.110966 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,418.2377581 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.51191832 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,51.70530746 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.929539248 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.023723365 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.361342151 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32.6035252 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,14.20306565 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.284361795 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.5748102 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,110.2877874 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4582.451506 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.027704765 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,3.43873944 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.081252677 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.349863155 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,550.3353167 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,15.5048259 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002060026 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.0255914 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,335.9446406 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.441446457 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,56.00613256 +ID,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.34 +ID,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,19.030512 +ID,PM10 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,4.7346 +ID,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5222.578722 +ID,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3216.029951 +ID,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,671.0912426 +ID,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,2.402 +ID,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.000452646 +ID,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.07237863 +ID,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0004251 +ID,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,606.8833564 +ID,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,986.0995739 +ID,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,112.959716 +ID,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,14.92 +ID,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,99500.76377 +ID,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1267.576475 +ID,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,249.465 +ID,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.35 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,347.7788695 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,478.04526 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,41.68921412 +ID,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.082902679 +ID,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.9881 +ID,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,12.27048 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3042.934602 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.63985259 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,274.6202908 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.964148266 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.001945081 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,23.13262563 +ID,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,22746.3283 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,310.2494245 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.191743012 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.074638491 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.27042325 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008028896 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.044226318 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,56.65668574 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.863074616 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.95301722 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.02686687 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.462529139 +ID,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.57464 +ID,PM2.5 Filterable,2A1_Cement-production,,TON,3.4017604 +ID,PM2.5 Filterable,2A2_Lime-production,Other_Fuel,TON,1.9408 +ID,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,535.6459543 +ID,PM2.5 Filterable,2A6_Other-minerals,,TON,439.1924657 +ID,PM2.5 Filterable,2B_Chemicals-other,,TON,558.6658274 +ID,PM2.5 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,0.5885 +ID,PM2.5 Filterable,2D3d_Coating-application,,TON,0.07137663 +ID,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0004251 +ID,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,248.0028316 +ID,PM2.5 Filterable,2H2_Food-and-beverage,,TON,544.1468741 +ID,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,39.0793 +ID,PM2.5 Filterable,2I_Wood-processing,,TON,14.92 +ID,PM2.5 Filterable,3Dc_Other-farm,,TON,17998.4318 +ID,PM2.5 Filterable,3F_Ag-res-on-field,,TON,1203.735478 +ID,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,57.867 +ID,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,0.905622612 +ID,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.35 +ID,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,268.1027517 +ID,PM2.5 Filterable,5C_Open-burning-residential,,TON,437.56 +ID,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,36.80081062 +ID,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.1503 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,24.91 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.0000801 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,17.13608376 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,34.06408399 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.274424663 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.420052861 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3352.217353 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,36.51162384 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,305.4185773 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,6.24450127 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.003862823 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,52.85570981 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,268.5917236 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,11.40561762 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303091 +ID,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,78.22698271 +ID,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,22746.54137 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,19.27006801 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,522.01806 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.9383534 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.85253935 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,34.17305513 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.615641317 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.036264739 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,508.7349597 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.593260001 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,511.980034 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,10.29175113 +ID,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.858271 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,306.5499599 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019114083 +ID,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.107637 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,355.7196756 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.92589236 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.772566454 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.402539284 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021505091 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.651879978 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,31.62542047 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.10475206 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.284361795 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.25756401 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,101.4692592 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4568.164555 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,8.079415724 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,2.29882647 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.072717762 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.063121317 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,533.8249065 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,14.26455405 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002060026 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.9948243 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,309.0692056 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.278198886 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,51.52564429 +ID,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.40161 +ID,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,3.4017604 +ID,PM2.5 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,2.3677 +ID,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,536.2722222 +ID,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,439.8615675 +ID,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,605.3616174 +ID,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,0.5885 +ID,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.07137663 +ID,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0004251 +ID,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,337.8161165 +ID,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,694.725283 +ID,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,108.865686 +ID,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,14.92 +ID,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,17999.08076 +ID,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1204.533404 +ID,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,57.867 +ID,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.958522612 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.35 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,268.1027517 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,437.788601 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,37.47649252 +ID,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.082902679 +ID,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.1503 +ID,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,9.093 +ID,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.918E-07 +ID,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2.101880154 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.54465981 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.251123699 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.080512288 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,304.7010771 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,58.50598041 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4313.741942 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,147.0668826 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.097962564 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,51.79133804 +ID,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.036632 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7.998577523 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.145727612 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.70471E-05 +ID,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,40.03181211 +ID,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.835921445 +ID,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,122.1188903 +ID,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.073934684 +ID,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.17583221 +ID,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.653284713 +ID,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.84077578 +ID,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.014078453 +ID,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16.3783708 +ID,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.336640264 +ID,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14.84228672 +ID,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.928287615 +ID,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.01280832 +ID,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,99.78173039 +ID,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00272861 +ID,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0412587 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,22.43257493 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.05223744 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,66.83565533 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.12632051 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.413606879 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.738721883 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.703806358 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.941213836 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.050110011 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.289720815 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.029319318 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,79.54962538 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,161.5883783 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,16.37119133 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.454354742 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.515574533 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.09416706 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.248989299 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0003584 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.013940322 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.657077557 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.519257019 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.52844164 +ID,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.2 +ID,Sulfur Dioxide,2A1_Cement-production,,TON,0 +ID,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.5352 +ID,Sulfur Dioxide,2A6_Other-minerals,,TON,382.39109 +ID,Sulfur Dioxide,2B_Chemicals-other,,TON,2757.676697 +ID,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,12.0833 +ID,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,193.190968 +ID,Sulfur Dioxide,3F_Ag-res-on-field,,TON,57.98883429 +ID,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,53.6 +ID,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +ID,Sulfur Dioxide,5C_Open-burning-residential,,TON,17.2215301 +ID,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.564917519 +ID,Volatile Organic Compounds,11C_Other-natural,,TON,748939.62 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,6.183 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.00009315 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,9.154000924 +ID,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,41.31740056 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,116.3686969 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.493288076 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,293.7848992 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.22351708 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,11.4372328 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.11734604 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.01083496 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,103.8919015 +ID,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.58924 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,328.3992398 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,135.4466744 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000619802 +ID,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,167.7061271 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,330.8627401 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,18380.43261 +ID,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.11564835 +ID,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,378.3682543 +ID,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,70.43032588 +ID,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,147.603751 +ID,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.244114145 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1512.309918 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,11.81639489 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,781.243164 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,325.7236228 +ID,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,395.836778 +ID,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,544.2579528 +ID,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.484348538 +ID,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0768082 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,20.73824207 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.52147555 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.226011324 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.072830393 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003813975 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,50.36176787 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,45.27501622 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,626.0380215 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.165545214 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,14.40449978 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2314.925727 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5549.258607 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.655207605 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,4.74964005 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.023897847 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,78.05832443 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,575.3629422 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,235.7704288 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006947764 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.860238 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11679.37112 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.37940803 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3552.626734 +ID,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,0 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,23.83351041 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,949.9621618 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4692.792566 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2845.625743 +ID,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,15.54 +ID,Volatile Organic Compounds,2A1_Cement-production,,TON,0 +ID,Volatile Organic Compounds,2A6_Other-minerals,,TON,0.1738 +ID,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,355.62785 +ID,Volatile Organic Compounds,2B_Chemicals-other,,TON,129.798227 +ID,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,6739.313406 +ID,Volatile Organic Compounds,2D3d_Coating-application,,TON,4765.229516 +ID,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,957.2044181 +ID,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.393913016 +ID,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,160.550229 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,738.4597913 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1119.844082 +ID,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,788.84299 +ID,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,232.503269 +ID,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,91.2976 +ID,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,15298.64595 +ID,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,992.5609719 +ID,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,23.64 +ID,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +ID,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,1.041 +ID,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,237.308086 +ID,Volatile Organic Compounds,5C_Open-burning-residential,,TON,107.685956 +ID,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,45.48252416 +ID,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,22.10805869 +ID,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.00509779 +IL,Ammonia,1A1a_Public-Electricity,biomass,TON,0.59 +IL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,23.671397 +IL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,188.2623 +IL,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.00004 +IL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,43.48316 +IL,Ammonia,1A1b_Pet-refining,natural_gas,TON,444.3402 +IL,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.293 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.893581548 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.457976986 +IL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.82890856 +IL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,53.4818629 +IL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.291937611 +IL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.203389569 +IL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,470.363247 +IL,Ammonia,1A2c_Chemicals,natural_gas,TON,12.049031 +IL,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02 +IL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,32.6018952 +IL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.949978097 +IL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.05728228 +IL,Ammonia,1A3bii_Road-LDV,light_oil,TON,2585.946181 +IL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.4204648 +IL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,427.146258 +IL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,8.840265245 +IL,Ammonia,1A3biii_Road-bus,light_oil,TON,1.430248152 +IL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.237725855 +IL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,120.787541 +IL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.137847182 +IL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,94.77381366 +IL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,12.64431068 +IL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.86831885 +IL,Ammonia,1A3c_Rail,diesel_oil,TON,21.01820523 +IL,Ammonia,1A3c_Rail,light_oil,TON,0.009309529 +IL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.243353355 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.93575975 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.026556403 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.463856079 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.178682641 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.81235917 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.149782209 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.443672644 +IL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.957873869 +IL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.80975976 +IL,Ammonia,1A4bi_Residential-stationary,biomass,TON,526.9376465 +IL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.418499776 +IL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,19.4370021 +IL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.70319979 +IL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,4267.749793 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28.35433627 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.746599836 +IL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.056938433 +IL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.891099064 +IL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.164328935 +IL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.188789263 +IL,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.48 +IL,Ammonia,2A1_Cement-production,,TON,78.71 +IL,Ammonia,2A6_Other-minerals,,TON,5.666 +IL,Ammonia,2B_Chemicals-other,,TON,451.0993 +IL,Ammonia,2C_Iron-steel-alloy,,TON,3.79849 +IL,Ammonia,2C6_Zinc-production,,TON,0.008 +IL,Ammonia,2C7_Other-metal,Other_Fuel,TON,2.780919 +IL,Ammonia,2C7a_Copper-production,,TON,0.0502 +IL,Ammonia,2D3d_Coating-application,,TON,20.634 +IL,Ammonia,2D3e_Degreasing,,TON,0.023 +IL,Ammonia,2D3h_Printing,,TON,0.79 +IL,Ammonia,2H2_Ethanol Production,,TON,3.830015 +IL,Ammonia,2H2_Food-and-beverage,,TON,95.8 +IL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,8.8715 +IL,Ammonia,3B1a_Cattle-dairy,,TON,3420.0616 +IL,Ammonia,3B1b_Cattle-non-dairy,,TON,7307.62546 +IL,Ammonia,3B2_Manure-sheep,,TON,195.5465579 +IL,Ammonia,3B3_Manure-swine,,TON,28136.76852 +IL,Ammonia,3B4_Manure-other,,TON,1086.267983 +IL,Ammonia,3B4_Manure-poultry,,TON,4964.14638 +IL,Ammonia,3B4d_Manure-goats,,TON,171.410812 +IL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,61591.97932 +IL,Ammonia,3Dc_Other-farm,,TON,0.93 +IL,Ammonia,5C_Incineration,,TON,0.0002 +IL,Ammonia,5C_Incineration,biomass,TON,0.11 +IL,Ammonia,5D1_Wastewater-domestic,,TON,66.91671774 +IL,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,2.79 +IL,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,0.08 +IL,Ammonia,5E_Other-waste,Other_Fuel,TON,0.03 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,725627.1286 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,790940.3348 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,44648.2339 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4013776.553 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,161230.1683 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,15.41016828 +IL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,666706.3816 +IL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,38475767.83 +IL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,584865.828 +IL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7529971.71 +IL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,647620.8238 +IL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,48011.10997 +IL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,10612.95792 +IL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7113219.352 +IL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,70793.9129 +IL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7626928.132 +IL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,419104.6775 +IL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,205957.7192 +IL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,15535.98501 +IL,Carbon Dioxide,1A3c_Rail,light_oil,TON,723.4038972 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,387067.8798 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,534457.9951 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23679.13539 +IL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,117807.0593 +IL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,870019.7843 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3488259.464 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,56055.96637 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,85.77342278 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6970.2842 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,393462.1815 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,143380.6812 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,364269.9719 +IL,Carbon Monoxide,11C_Other-natural,,TON,90076.044 +IL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,20.303065 +IL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,48.3125 +IL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,17965.78 +IL,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.0003 +IL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3068.7492 +IL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,3943.23 +IL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,17.713 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5918.170597 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,37368.69562 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2261.302353 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,27.41990333 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,311.6321883 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1471.207023 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.47919974 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,28.43884369 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21150.87234 +IL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,353.954692 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.5708 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.92 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,13874.02305 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,30464.06624 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.055967065 +IL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,14753.06731 +IL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4629.459429 +IL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,507132.2626 +IL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3657.653 +IL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,110350.9887 +IL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1494.955653 +IL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1896.679843 +IL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,53.8115081 +IL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18225.05091 +IL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2535.01581 +IL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12802.37264 +IL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11006.37956 +IL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6841.1857 +IL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,6817.062847 +IL,Carbon Monoxide,1A3c_Rail,light_oil,TON,183.3563803 +IL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1306.382203 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,183.756449 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,235.3539555 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.512744463 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.150600994 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9903.37721 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2051.150926 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,123624.9627 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,555.5742855 +IL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,481.1784986 +IL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,232861.8051 +IL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,69514.88082 +IL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,12.09250277 +IL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2672.58575 +IL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.516003249 +IL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,9063.13743 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15935.15009 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13731.12916 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.434014824 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,67.395808 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,61772.78485 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,286.1156899 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46281.2239 +IL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,24.063092 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,38.13 +IL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,226.4523 +IL,Carbon Monoxide,2A1_Cement-production,,TON,903.01 +IL,Carbon Monoxide,2A6_Other-minerals,,TON,1598.799041 +IL,Carbon Monoxide,2B_Chemicals-other,,TON,1620.010395 +IL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,21695.30471 +IL,Carbon Monoxide,2C3_Aluminum-production,,TON,53.8572 +IL,Carbon Monoxide,2C5_Lead-production,,TON,2.766 +IL,Carbon Monoxide,2C6_Zinc-production,,TON,61.7086 +IL,Carbon Monoxide,2C7_Other-metal,,TON,50.401292 +IL,Carbon Monoxide,2C7a_Copper-production,,TON,5.86 +IL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,36.46 +IL,Carbon Monoxide,2D3d_Coating-application,,TON,23.03544 +IL,Carbon Monoxide,2D3h_Printing,,TON,3.3526 +IL,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.23 +IL,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.54 +IL,Carbon Monoxide,2H2_Ethanol Production,,TON,77.82378 +IL,Carbon Monoxide,2H2_Food-and-beverage,,TON,3171.93958 +IL,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,158.735467 +IL,Carbon Monoxide,3Dc_Other-farm,,TON,13.9926 +IL,Carbon Monoxide,3F_Ag-res-on-field,,TON,3.05031197 +IL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2080.921507 +IL,Carbon Monoxide,5C_Incineration,,TON,5567.37566 +IL,Carbon Monoxide,5C_Incineration,biomass,TON,26.40894 +IL,Carbon Monoxide,5C_Open-burning-commercial,,TON,1.24 +IL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4687.23796 +IL,Carbon Monoxide,5C_Open-burning-residential,,TON,10855.11709 +IL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,748.2656 +IL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,25.11 +IL,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,38.635 +IL,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,2 +IL,Methane,1A3bii_Road-LDV,diesel_oil,TON,34.23163667 +IL,Methane,1A3bii_Road-LDV,light_oil,TON,1569.951314 +IL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.88917547 +IL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,403.454297 +IL,Methane,1A3biii_Road-bus,diesel_oil,TON,20.34914929 +IL,Methane,1A3biii_Road-bus,light_oil,TON,3.545676143 +IL,Methane,1A3biii_Road-bus,natural_gas,TON,62.3310223 +IL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1227.186979 +IL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.7415478 +IL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,203.7126064 +IL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.98636863 +IL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.34138519 +IL,Nitrogen Oxides,11C_Other-natural,,TON,36677.8805 +IL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,63.265573 +IL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,218.696405 +IL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,69818.16 +IL,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2538.80016 +IL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,5347.01 +IL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,23.861 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5199.073826 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4909.509077 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,330.1622689 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,191.3782097 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1112.980604 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5684.765331 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.12248922 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,6.901859086 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,36607.16514 +IL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +IL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,654.6908 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.6008 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.01 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.57 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,27522.0967 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,599.2517016 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.204274083 +IL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,6409.15716 +IL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2036.535877 +IL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,62797.92121 +IL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2122.874676 +IL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13913.13483 +IL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3833.753493 +IL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,161.3428966 +IL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,32.2666734 +IL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,53656.04738 +IL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,280.1764839 +IL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,37852.37362 +IL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1081.767124 +IL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,367.919669 +IL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,47382.1699 +IL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,3.116231186 +IL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7158.967505 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,648.9783039 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,304.3753121 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,25.7989102 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.469170963 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11379.96924 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3540.125151 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2526.16383 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,147.50733 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1071.881558 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3004.759776 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,871.578095 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,43.53301256 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,88.438395 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,12.74550122 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,21934.55548 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,31879.44786 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,321.3802479 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.10452106 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,68.192465 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,703.5351801 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1610.607749 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2829.215648 +IL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,12.123092 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,15.15 +IL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,774.211 +IL,Nitrogen Oxides,2A1_Cement-production,,TON,3787.6 +IL,Nitrogen Oxides,2A6_Other-minerals,,TON,4496.683305 +IL,Nitrogen Oxides,2B_Chemicals-other,,TON,814.044255 +IL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1479.27849 +IL,Nitrogen Oxides,2C3_Aluminum-production,,TON,42.01236 +IL,Nitrogen Oxides,2C5_Lead-production,,TON,1.558 +IL,Nitrogen Oxides,2C6_Zinc-production,,TON,67.1849 +IL,Nitrogen Oxides,2C7_Other-metal,,TON,70.958388 +IL,Nitrogen Oxides,2C7a_Copper-production,,TON,5.53405 +IL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,3.01 +IL,Nitrogen Oxides,2D3d_Coating-application,,TON,43.81764 +IL,Nitrogen Oxides,2D3h_Printing,,TON,7.5738 +IL,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.1603 +IL,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.982 +IL,Nitrogen Oxides,2H2_Ethanol Production,,TON,72.4218 +IL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,567.4705 +IL,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,8.880434 +IL,Nitrogen Oxides,3Dc_Other-farm,,TON,28.6885 +IL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.140068575 +IL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,622.140485 +IL,Nitrogen Oxides,5C_Incineration,,TON,1642.77907 +IL,Nitrogen Oxides,5C_Incineration,biomass,TON,67.725 +IL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.37 +IL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,138.67569 +IL,Nitrogen Oxides,5C_Open-burning-residential,,TON,766.243434 +IL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,33.2562391 +IL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,18.651 +IL,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,15.895 +IL,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,2.85 +IL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.116966351 +IL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1372.472605 +IL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.005872206 +IL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,326.668471 +IL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.509361393 +IL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.792220366 +IL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.840039564 +IL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.762634648 +IL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.669372409 +IL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.76358687 +IL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,20.57492443 +IL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.879057181 +IL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,25.937711 +IL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.569036494 +IL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4608.964256 +IL,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,151.0547171 +IL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,894.668 +IL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.777 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2.058088423 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,44.10025092 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,656.0740585 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.356677666 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.258462473 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,591.8069178 +IL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,12.98236775 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.118 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.095 +IL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,170857.1323 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.76569082 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,62.58727545 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.592045995 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.241149855 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,220.4087414 +IL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.611979588 +IL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,60.2546975 +IL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.761799478 +IL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,45.31563504 +IL,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.26468 +IL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.6332 +IL,PM10 Filterable,2A1_Cement-production,,TON,209.2664 +IL,PM10 Filterable,2A2_Lime-production,,TON,57.21189 +IL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,140165.7781 +IL,PM10 Filterable,2A6_Other-minerals,,TON,3881.305923 +IL,PM10 Filterable,2B_Chemicals-other,,TON,786.252578 +IL,PM10 Filterable,2C_Iron-steel-alloy,,TON,1729.125305 +IL,PM10 Filterable,2C3_Aluminum-production,,TON,63.060595 +IL,PM10 Filterable,2C5_Lead-production,,TON,4.545066 +IL,PM10 Filterable,2C6_Zinc-production,,TON,23.953929 +IL,PM10 Filterable,2C7_Other-metal,,TON,674.919987 +IL,PM10 Filterable,2C7a_Copper-production,,TON,55.822294 +IL,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,1.4 +IL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,66.2207 +IL,PM10 Filterable,2D3d_Coating-application,,TON,136.7847 +IL,PM10 Filterable,2D3h_Printing,,TON,25.8806 +IL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.57 +IL,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,99.542566 +IL,PM10 Filterable,2H2_Ethanol Production,,TON,58.98374 +IL,PM10 Filterable,2H2_Food-and-beverage,,TON,4373.383341 +IL,PM10 Filterable,2H3_Other-industrial-processes,,TON,594.0124902 +IL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,1.480408787 +IL,PM10 Filterable,2I_Wood-processing,,TON,2.71215 +IL,PM10 Filterable,3Dc_Other-farm,,TON,383791.4705 +IL,PM10 Filterable,5A_Solid-waste-disposal,,TON,366.460472 +IL,PM10 Filterable,5C_Incineration,,TON,3.659021 +IL,PM10 Filterable,5C_Incineration,biomass,TON,7.34761 +IL,PM10 Filterable,5C_Open-burning-commercial,,TON,0.01 +IL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +IL,PM10 Filterable,5C_Open-burning-residential,,TON,0 +IL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,0 +IL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.3 +IL,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.972 +IL,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,41.0376 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,27.632081 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.448755 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,10106.73517 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,270.50733 +IL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,954.203 +IL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.777 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,417.4175124 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,83.68467245 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.619455633 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2.096871367 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,81.15983717 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1056.583801 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.551431333 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.588746362 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1776.926281 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,41.182199 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.118 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.095 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2147.749917 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,175.1174142 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001824417 +IL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,332.7399656 +IL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,170857.1323 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,159.0470306 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6022.637598 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,175.7324543 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,1209.280583 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,316.4369367 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.208613023 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.481682989 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3215.240839 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.40478027 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2981.869443 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,44.50925742 +IL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.21115299 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1568.807271 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.100333579 +IL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,184.1365406 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,57.6567915 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,106.9393094 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.248249271 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.530365086 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,853.0794947 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,339.6435297 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,148.0352686 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.970453137 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,81.32878584 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,842.3521597 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10988.94019 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.75448087 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,60.6434065 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.746827509 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,117.8092321 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2809.766216 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.72072937 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010843022 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.6614437 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,612.6316389 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.11011191 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,207.3918707 +IL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.26468 +IL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.6332 +IL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,316.0564 +IL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,57.21189 +IL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,140165.7781 +IL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4074.348395 +IL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,786.252578 +IL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1729.125305 +IL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,63.060595 +IL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,4.545066 +IL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,23.953929 +IL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,674.919987 +IL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,55.822294 +IL,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.4 +IL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,66.2207 +IL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,136.7847 +IL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,25.8806 +IL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.57 +IL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,99.542566 +IL,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,58.98374 +IL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,7671.524369 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,594.0124902 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,1.480408787 +IL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.71215 +IL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,383791.4705 +IL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.532477612 +IL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,366.460472 +IL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.659021 +IL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.34761 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.01 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +IL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.3 +IL,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.972 +IL,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,41.0376 +IL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,25.93563 +IL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.520642894 +IL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1636.998236 +IL,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,146.8639297 +IL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,674.9250004 +IL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.777 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1.434429703 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,33.57561664 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,250.3555451 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.166879544 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.065008438 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,556.5907077 +IL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,11.36199088 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.06721516 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0946875 +IL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,22066.67863 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.44952342 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,21.95568103 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.487017478 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.185336948 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,219.9591144 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.007354953 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,36.9303197 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.586000373 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,24.91646428 +IL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02047917 +IL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.161166057 +IL,PM2.5 Filterable,2A1_Cement-production,,TON,53.46214996 +IL,PM2.5 Filterable,2A2_Lime-production,,TON,11.65386097 +IL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,17595.55762 +IL,PM2.5 Filterable,2A6_Other-minerals,,TON,2049.068815 +IL,PM2.5 Filterable,2B_Chemicals-other,,TON,576.8408899 +IL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1209.664701 +IL,PM2.5 Filterable,2C3_Aluminum-production,,TON,56.09909885 +IL,PM2.5 Filterable,2C5_Lead-production,,TON,2.528064576 +IL,PM2.5 Filterable,2C6_Zinc-production,,TON,21.84223942 +IL,PM2.5 Filterable,2C7_Other-metal,,TON,494.6672255 +IL,PM2.5 Filterable,2C7a_Copper-production,,TON,36.44504736 +IL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,48.21638042 +IL,PM2.5 Filterable,2D3d_Coating-application,,TON,111.2340648 +IL,PM2.5 Filterable,2D3h_Printing,,TON,21.11769346 +IL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.49680877 +IL,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,65.37521108 +IL,PM2.5 Filterable,2H2_Ethanol Production,,TON,58.60237 +IL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1739.547502 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,453.5114256 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,2.02293303 +IL,PM2.5 Filterable,2I_Wood-processing,,TON,0.892654473 +IL,PM2.5 Filterable,3Dc_Other-farm,,TON,76655.04257 +IL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,173.9665639 +IL,PM2.5 Filterable,5C_Incineration,,TON,2.82885588 +IL,PM2.5 Filterable,5C_Incineration,biomass,TON,6.872221341 +IL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.0056962 +IL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +IL,PM2.5 Filterable,5C_Open-burning-residential,,TON,0 +IL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0 +IL,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +IL,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,14.1071025 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,27.632081 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.4003614 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,7134.76368 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,266.3165412 +IL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,734.9200004 +IL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.777 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,404.7504583 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,83.16492986 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.612301216 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1.470724631 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,59.94823708 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,653.0383564 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.374124195 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.393211448 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1740.458394 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,39.56282213 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.06721516 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0946875 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2083.318201 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,161.2491792 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001824417 +IL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,293.3224842 +IL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,22066.67863 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,96.07774577 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1608.080093 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,116.4942099 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,299.910001 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,223.5738087 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.482397782 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.32847717 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2276.007215 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.671418634 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1990.16024 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.08665234 +IL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.14016064 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1451.167136 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.092496105 +IL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,169.3965431 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,52.43868853 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,66.30838288 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.192629799 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.474550392 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,852.6295097 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,329.4541743 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,136.5875487 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.970453137 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,78.88894068 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,774.9982627 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10976.77783 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.14556267 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,37.3190494 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.568588826 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,97.3911689 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2725.474044 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.62361299 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010843022 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.3715962 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,563.6244524 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.14671374 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,190.800608 +IL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.26047917 +IL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.161166057 +IL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,160.26215 +IL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,45.91396097 +IL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17597.10102 +IL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2322.80477 +IL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,674.0470349 +IL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1215.382701 +IL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,57.56209885 +IL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,3.229564576 +IL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,21.88223942 +IL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,518.4549805 +IL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,37.19104736 +IL,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.4 +IL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,60.34638042 +IL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,122.7540648 +IL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,23.59969346 +IL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.49680877 +IL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,65.74721108 +IL,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,58.98374 +IL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5145.478068 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,519.6590605 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,2.317991165 +IL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.892654473 +IL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,76661.26257 +IL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.289685943 +IL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,179.7465639 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.82885588 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.872421341 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0056962 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +IL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.3 +IL,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.972 +IL,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,14.1931025 +IL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,17.759775 +IL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,14.717535 +IL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,217839.93 +IL,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,606.920083 +IL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,3330.15805 +IL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.131 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.71115315 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.94948591 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.101428862 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3.683486825 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,884.6904834 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,28786.96974 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,25.95356201 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,10.82476635 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1287.555034 +IL,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,375.766545 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.478 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.06 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.4544 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,74.56118468 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.9583233 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000339961 +IL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,759.1867325 +IL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.678905436 +IL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,765.628939 +IL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.99732677 +IL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,149.8389042 +IL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.502942387 +IL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.955371125 +IL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.05619014 +IL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,60.36880028 +IL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.40864442 +IL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,64.47968169 +IL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.339999743 +IL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.09837183 +IL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,471.7964033 +IL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.013217441 +IL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,734.8443944 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,912.2575989 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4187.308377 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,152.0755811 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,9.509779719 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,97.39132116 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.331636857 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9.805477067 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.52356811 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.228432263 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,15.85371977 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,347.6514365 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,103.0281566 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1048.43085 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,30.10574891 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,135.9328026 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,65.63105274 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.02196466 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001886447 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.131596871 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,7.144928471 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.075479704 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.626130851 +IL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.26268 +IL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,337.27734 +IL,Sulfur Dioxide,2A1_Cement-production,,TON,824.925 +IL,Sulfur Dioxide,2A6_Other-minerals,,TON,14590.84699 +IL,Sulfur Dioxide,2B_Chemicals-other,,TON,1096.162236 +IL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,2141.738324 +IL,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.264 +IL,Sulfur Dioxide,2C5_Lead-production,,TON,1.6706 +IL,Sulfur Dioxide,2C6_Zinc-production,,TON,7.244 +IL,Sulfur Dioxide,2C7_Other-metal,,TON,349.787719 +IL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.2152 +IL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,32.36 +IL,Sulfur Dioxide,2D3d_Coating-application,,TON,0.4971 +IL,Sulfur Dioxide,2D3h_Printing,,TON,0.01 +IL,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,21.693 +IL,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.0432 +IL,Sulfur Dioxide,2H2_Ethanol Production,,TON,2.948555 +IL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1126.7473 +IL,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0.5553 +IL,Sulfur Dioxide,3Dc_Other-farm,,TON,1.0754 +IL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.070664533 +IL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,1030.828223 +IL,Sulfur Dioxide,5C_Incineration,,TON,1411.17838 +IL,Sulfur Dioxide,5C_Incineration,biomass,TON,352.041 +IL,Sulfur Dioxide,5C_Open-burning-residential,,TON,127.7072519 +IL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.18572282 +IL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,123.01 +IL,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,216.6825 +IL,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.01 +IL,Volatile Organic Compounds,11C_Other-natural,,TON,416419.92 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,2.419525 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.344166 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1429.85 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,640.89714 +IL,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,802.9333426 +IL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,814.6429679 +IL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2633.008126 +IL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,6.16408 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,522.7926263 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1531.992511 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.013277723 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.691424903 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.47378623 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,47.80069285 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.723193382 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.680134032 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2466.157513 +IL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +IL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,140.760574 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2338 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.046 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2384.656015 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1910.862172 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.003358528 +IL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1309.781327 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,581.640386 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,43768.38344 +IL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,562.142843 +IL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8654.31678 +IL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,347.0093453 +IL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,86.28879391 +IL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,6.12770203 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5575.221456 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,110.2463143 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2617.059198 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,460.0448951 +IL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,815.056222 +IL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2466.073085 +IL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,7.099710261 +IL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,158.5960252 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.3222763 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.989220731 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.533988745 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.082486701 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,686.346886 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,471.6427307 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,6240.634206 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.735023884 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,110.7845035 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,17862.62332 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,11316.51841 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.69295067 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,97.185066 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.494437778 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1245.825496 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2943.060835 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,660.8648573 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.036568203 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.522476 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,21366.18197 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,73.11092431 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,13708.39023 +IL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,4932.418568 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,835.2043464 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1814.812877 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8599.005878 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6905.208251 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1251.17401 +IL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,118.88825 +IL,Volatile Organic Compounds,2A1_Cement-production,,TON,115.3 +IL,Volatile Organic Compounds,2A6_Other-minerals,,TON,1025.164865 +IL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +IL,Volatile Organic Compounds,2B_Chemicals-other,,TON,6845.241739 +IL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,907.345702 +IL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,82.576118 +IL,Volatile Organic Compounds,2C5_Lead-production,,TON,1.519 +IL,Volatile Organic Compounds,2C6_Zinc-production,,TON,9.213 +IL,Volatile Organic Compounds,2C7_Other-metal,,TON,630.334548 +IL,Volatile Organic Compounds,2C7a_Copper-production,,TON,10.7936 +IL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,54201.76024 +IL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,58.758 +IL,Volatile Organic Compounds,2D3d_Coating-application,,TON,26424.92479 +IL,Volatile Organic Compounds,2D3e_Degreasing,,TON,10648.95368 +IL,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,464.029116 +IL,Volatile Organic Compounds,2D3h_Printing,,TON,5541.412568 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,630.0500799 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,475.0845631 +IL,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,173.9508 +IL,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,1.132 +IL,Volatile Organic Compounds,2H2_Ethanol Production,,TON,99.226344 +IL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,9324.464615 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2451.859082 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,0.467749916 +IL,Volatile Organic Compounds,2I_Wood-processing,,TON,0.01 +IL,Volatile Organic Compounds,3Dc_Other-farm,,TON,20.561203 +IL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,22252.49395 +IL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,0.230257171 +IL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,251.548194 +IL,Volatile Organic Compounds,5C_Incineration,,TON,1089.50025 +IL,Volatile Organic Compounds,5C_Incineration,biomass,TON,3.5363 +IL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.07 +IL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,321.727678 +IL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1093.174287 +IL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,139.557434 +IL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,386.2953967 +IL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,570.0165 +IL,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.53416 +IL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,115.48841 +IL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,8.859433 +IN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,4.5163702 +IN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,60.9295046 +IN,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.0084 +IN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,145.1957667 +IN,Ammonia,1A1b_Pet-refining,natural_gas,TON,17.2665486 +IN,Ammonia,1A1c_Coke-ovens,natural_gas,TON,0 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.998619854 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.333315695 +IN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.635617191 +IN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,2.689124379 +IN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.019667869 +IN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.104571735 +IN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.197672036 +IN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.355806242 +IN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,217.51279 +IN,Ammonia,1A2c_Chemicals,heavy_oil,TON,0 +IN,Ammonia,1A2c_Chemicals,natural_gas,TON,10.018392 +IN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,16.85319838 +IN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.671007214 +IN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,11.17726497 +IN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2711.49609 +IN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.095034 +IN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,407.131497 +IN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.45270707 +IN,Ammonia,1A3biii_Road-bus,light_oil,TON,1.434949934 +IN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.155823926 +IN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,86.07139296 +IN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.26545394 +IN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,63.8454707 +IN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,14.98283497 +IN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.8064352 +IN,Ammonia,1A3c_Rail,diesel_oil,TON,9.693915246 +IN,Ammonia,1A3c_Rail,light_oil,TON,0.004192343 +IN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.069876367 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,5.313635351 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.130357232 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.101609864 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.444635444 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.2687486 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.290448679 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.640099836 +IN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.56401299 +IN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.616192834 +IN,Ammonia,1A4bi_Residential-stationary,biomass,TON,533.9405889 +IN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,6.54484355 +IN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,37.12860091 +IN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.615747215 +IN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1402.312171 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.07810059 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.408377679 +IN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027829215 +IN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.275471741 +IN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.039529964 +IN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.028114665 +IN,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Ammonia,2A6_Other-minerals,,TON,69.83892 +IN,Ammonia,2B_Chemicals-other,,TON,10.24691703 +IN,Ammonia,2C_Iron-steel-alloy,,TON,117.3012956 +IN,Ammonia,2C3_Aluminum-production,,TON,6.2392 +IN,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.5376 +IN,Ammonia,2D3d_Coating-application,,TON,0.05751842 +IN,Ammonia,2H2_Food-and-beverage,,TON,1.601796 +IN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,164.5727612 +IN,Ammonia,3B1a_Cattle-dairy,,TON,8852.529127 +IN,Ammonia,3B1b_Cattle-non-dairy,,TON,3950.22703 +IN,Ammonia,3B2_Manure-sheep,,TON,171.303528 +IN,Ammonia,3B3_Manure-swine,,TON,23075.86491 +IN,Ammonia,3B4_Manure-other,,TON,1091.03676 +IN,Ammonia,3B4_Manure-poultry,,TON,21655.18333 +IN,Ammonia,3B4d_Manure-goats,,TON,328.58496 +IN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,49046.33311 +IN,Ammonia,3Dc_Other-farm,,TON,0.3536 +IN,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,1.57 +IN,Ammonia,5C_Incineration,biomass,TON,0 +IN,Ammonia,5D1_Wastewater-domestic,,TON,392.8939317 +IN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.39209488 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,492321.3662 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,608517.9085 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,33417.36137 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2075100.051 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,57125.03016 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,15.41016805 +IN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,453409.1444 +IN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,30534294.9 +IN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,415043.779 +IN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5388924.16 +IN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,214515.9052 +IN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,43765.3831 +IN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,6406.22872 +IN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4869267.793 +IN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,87316.03851 +IN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4461558.42 +IN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,440485.0413 +IN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,199017.958 +IN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7028.82919 +IN,Carbon Dioxide,1A3c_Rail,light_oil,TON,325.0855885 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,158579.481 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,218975.5069 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9705.169003 +IN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,69366.81382 +IN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,487590.2656 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1854977.457 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,30590.85104 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,45.32983516 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3406.785 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,217091.3206 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,128012.6327 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,285225.4471 +IN,Carbon Monoxide,11C_Other-natural,,TON,57663.194 +IN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,36.95512945 +IN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,12998.67005 +IN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.0525 +IN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1722.765098 +IN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,804.7973 +IN,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,546.4726 +IN,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,7.33352 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2348.441603 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28020.30368 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1700.053009 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,19.9241574 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,410.8830736 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,118.6863961 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,867.9046775 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.512028485 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,9.814358876 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,58038.09585 +IN,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +IN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,334.779698 +IN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00801 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6832.100296 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,10828.1016 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.055968058 +IN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5799.921784 +IN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6550.50604 +IN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,631977.322 +IN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3793.22803 +IN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,127893.012 +IN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,614.6085724 +IN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2460.700158 +IN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,42.0394337 +IN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11660.71847 +IN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3036.654495 +IN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8906.14845 +IN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15059.92507 +IN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7872.82694 +IN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3138.97903 +IN,Carbon Monoxide,1A3c_Rail,light_oil,TON,82.9633961 +IN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,26.16368618 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,641.1925214 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,336.9890316 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,576.8453659 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.627458029 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3711.836713 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,840.3857785 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,51660.93173 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,227.7276903 +IN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,283.3947877 +IN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,132429.6661 +IN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,75154.58802 +IN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,32.72421035 +IN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,5105.187292 +IN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,13.07874225 +IN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3631.853502 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8454.075683 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7584.042703 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.98562708 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.94815 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,38511.70415 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,255.2045635 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,36660.71712 +IN,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,9.143606 +IN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4157.518393 +IN,Carbon Monoxide,2A1_Cement-production,,TON,5205.2152 +IN,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,2060.634 +IN,Carbon Monoxide,2A6_Other-minerals,,TON,6889.383681 +IN,Carbon Monoxide,2B_Chemicals-other,,TON,1577.602516 +IN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,199944.3193 +IN,Carbon Monoxide,2C3_Aluminum-production,,TON,22723.97863 +IN,Carbon Monoxide,2C5_Lead-production,,TON,222.8819156 +IN,Carbon Monoxide,2C7_Other-metal,,TON,24.528728 +IN,Carbon Monoxide,2C7a_Copper-production,,TON,9.21051 +IN,Carbon Monoxide,2C7b_Nickel-production,Other_Fuel,TON,58.47 +IN,Carbon Monoxide,2D3d_Coating-application,,TON,409.536452 +IN,Carbon Monoxide,2D3e_Degreasing,,TON,0 +IN,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.21338 +IN,Carbon Monoxide,2H2_Food-and-beverage,,TON,850.9836355 +IN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,170.099473 +IN,Carbon Monoxide,3Dc_Other-farm,,TON,9.282 +IN,Carbon Monoxide,3F_Ag-res-on-field,,TON,324.1325355 +IN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +IN,Carbon Monoxide,5C_Incineration,,TON,0.206033014 +IN,Carbon Monoxide,5C_Incineration,biomass,TON,655.2230904 +IN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,13393.50921 +IN,Carbon Monoxide,5C_Open-burning-residential,,TON,6723.5312 +IN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,669.751979 +IN,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,1.5 +IN,Methane,1A3bii_Road-LDV,diesel_oil,TON,15.57469493 +IN,Methane,1A3bii_Road-LDV,light_oil,TON,1595.871382 +IN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.564086 +IN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,386.544259 +IN,Methane,1A3biii_Road-bus,diesel_oil,TON,5.246710061 +IN,Methane,1A3biii_Road-bus,light_oil,TON,5.608122665 +IN,Methane,1A3biii_Road-bus,natural_gas,TON,44.2734789 +IN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,438.7185556 +IN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.814163485 +IN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,87.212538 +IN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,31.23937866 +IN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.3496458 +IN,Nitrogen Oxides,11C_Other-natural,,TON,22565.8042 +IN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,132.1958078 +IN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,116613.8694 +IN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.370125 +IN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2885.125174 +IN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2310.4785 +IN,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,4460.623 +IN,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.34518 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3316.641573 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3733.114765 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,249.2179228 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,470.8307694 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,353.7496587 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,500.0875469 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5086.117738 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,43.6877462 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,24.50107479 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,26218.13514 +IN,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0 +IN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,382.4729 +IN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.09 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,14111.86654 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,211.886927 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.204274065 +IN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1222.839156 +IN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1711.265362 +IN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,80525.7262 +IN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1945.41481 +IN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16617.6822 +IN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1632.567413 +IN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,198.832461 +IN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,27.1087562 +IN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,39694.31249 +IN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,395.7900809 +IN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26921.0716 +IN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1392.785238 +IN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,376.477852 +IN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,21512.17193 +IN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.388652314 +IN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,149.7130999 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,235.5735129 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1560.453819 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2229.184149 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,10.55806825 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4239.734964 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1450.372859 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1009.445426 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,60.46520831 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,631.0793699 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1633.498543 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,776.5232148 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,117.807121 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,162.9331235 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,47.0834549 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,8062.80119 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16919.44867 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,174.4609703 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.112179072 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,33.322519 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,425.0469685 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1438.157238 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2260.781477 +IN,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,3.32883 +IN,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3524.63094 +IN,Nitrogen Oxides,2A1_Cement-production,,TON,5391.27 +IN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1856.443 +IN,Nitrogen Oxides,2A6_Other-minerals,,TON,1895.943494 +IN,Nitrogen Oxides,2B_Chemicals-other,,TON,750.1410264 +IN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,5036.78734 +IN,Nitrogen Oxides,2C3_Aluminum-production,,TON,306.9632712 +IN,Nitrogen Oxides,2C5_Lead-production,,TON,329.092253 +IN,Nitrogen Oxides,2C7_Other-metal,,TON,50.934012 +IN,Nitrogen Oxides,2C7a_Copper-production,,TON,0.05553 +IN,Nitrogen Oxides,2C7b_Nickel-production,Other_Fuel,TON,21.48 +IN,Nitrogen Oxides,2D3d_Coating-application,,TON,7.23008 +IN,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +IN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,60.92916 +IN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,4.99918 +IN,Nitrogen Oxides,3Dc_Other-farm,,TON,11.05 +IN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,14.8133545 +IN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +IN,Nitrogen Oxides,5C_Incineration,,TON,1.794681918 +IN,Nitrogen Oxides,5C_Incineration,biomass,TON,1212.637311 +IN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,396.2577048 +IN,Nitrogen Oxides,5C_Open-burning-residential,,TON,474.60236 +IN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,29.7667553 +IN,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.51 +IN,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.00147 +IN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.368422249 +IN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1474.114064 +IN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.41978647 +IN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,325.445972 +IN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.550288623 +IN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.95104248 +IN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.3810891 +IN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.610751652 +IN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.631332147 +IN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.86915716 +IN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,25.30762142 +IN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.79736778 +IN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.3 +IN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.375138197 +IN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,9754.68443 +IN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.0957946 +IN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,167.7370214 +IN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,193.6683338 +IN,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,152.69131 +IN,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.036304 +IN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.0019723 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,24.20687814 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,260.0085937 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,46.46401033 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,379.854957 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.41257968 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.582149436 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1040.854394 +IN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,17.36433717 +IN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0025992 +IN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,210655.1958 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,528.8466912 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,108.1984805 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,471.0981742 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.568714413 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.23682798 +IN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,7.068429 +IN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,118.8374833 +IN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.82500683 +IN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.96737997 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0205 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM10 Filterable,2A1_Cement-production,,TON,1113.020806 +IN,PM10 Filterable,2A2_Lime-production,,TON,46.93478942 +IN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,50584.9377 +IN,PM10 Filterable,2A6_Other-minerals,,TON,14824.93175 +IN,PM10 Filterable,2B_Chemicals-other,,TON,168.0704941 +IN,PM10 Filterable,2C_Iron-steel-alloy,,TON,5734.237815 +IN,PM10 Filterable,2C3_Aluminum-production,,TON,437.7290294 +IN,PM10 Filterable,2C5_Lead-production,,TON,7.9097435 +IN,PM10 Filterable,2C7_Other-metal,,TON,656.6801322 +IN,PM10 Filterable,2C7a_Copper-production,,TON,12.743324 +IN,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,6.2471039 +IN,PM10 Filterable,2D3d_Coating-application,,TON,320.3450043 +IN,PM10 Filterable,2D3e_Degreasing,,TON,0.01 +IN,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.8248372 +IN,PM10 Filterable,2H1_Pulp-and-paper,,TON,93.31703986 +IN,PM10 Filterable,2H2_Food-and-beverage,,TON,1353.306844 +IN,PM10 Filterable,2H3_Other-industrial-processes,,TON,614.4712251 +IN,PM10 Filterable,2I_Wood-processing,,TON,0.17586481 +IN,PM10 Filterable,3Dc_Other-farm,,TON,200368.3905 +IN,PM10 Filterable,3F_Ag-res-on-field,,TON,55.44605389 +IN,PM10 Filterable,5A_Solid-waste-disposal,,TON,135.889736 +IN,PM10 Filterable,5C_Incineration,,TON,0.2409907 +IN,PM10 Filterable,5C_Incineration,biomass,TON,17.010986 +IN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1347.276027 +IN,PM10 Filterable,5C_Open-burning-residential,,TON,3005.8145 +IN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,110.907721 +IN,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,22.0056 +IN,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.00907 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.3 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.9228762 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,14401.86319 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.11214 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,351.4773532 +IN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,307.2288065 +IN,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,250.0012 +IN,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.60505 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,281.1440857 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,63.02844228 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.113643694 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,24.86760283 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,266.9377202 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,48.2154552 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,408.2955382 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.599101783 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.214159442 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2417.456428 +IN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,41.762666 +IN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00684 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1050.414843 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,65.41317882 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001824417 +IN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,133.0684595 +IN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,210655.1958 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,130.3200763 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5051.78906 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,164.189039 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,891.487436 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,128.2063447 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.280259048 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.880797445 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2031.587899 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,14.50660337 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2170.130158 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,53.67468423 +IN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.3815997 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,730.6221244 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.045172149 +IN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.25084771 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,547.0005012 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,238.6496952 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,535.6646735 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.278746845 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,82.79450819 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,139.1566648 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,60.6552537 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.217462733 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,47.90124923 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,479.463222 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12152.97813 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,15.5767236 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,138.1742927 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,6.2254809 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,41.5152095 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1490.895178 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.34663057 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005730359 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.7235507 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,381.3612685 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.61711465 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,145.4551076 +IN,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0205 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,104.2255987 +IN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1152.61828 +IN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,56.33868043 +IN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,50584.9377 +IN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,15038.88319 +IN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,261.0502673 +IN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,7073.47223 +IN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,789.1090172 +IN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,23.5923426 +IN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,662.219038 +IN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,15.41929 +IN,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,8.09 +IN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,320.6361302 +IN,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.01 +IN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.8248372 +IN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,98.19237529 +IN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3427.689903 +IN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,615.3419331 +IN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.17586481 +IN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,200373.7429 +IN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,55.82780199 +IN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,161.6955 +IN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.282447445 +IN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.04406389 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1347.276027 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3005.8145 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,110.907721 +IN,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,22.476 +IN,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.00907 +IN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.06 +IN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.804848547 +IN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4968.676435 +IN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.0567346 +IN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,166.8052224 +IN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,193.6479632 +IN,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,147.89241 +IN,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.763106 +IN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.0019723 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.290802352 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,228.0964112 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.61099965 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,159.882797 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.414276732 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.056163146 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,977.2753772 +IN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,17.36281717 +IN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0025992 +IN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,25231.0025 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,454.9665519 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,107.0962019 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,185.7135388 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.437768469 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,32.06218601 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.43222105 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,71.33148426 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.17107013 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.7820579 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0205 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM2.5 Filterable,2A1_Cement-production,,TON,347.4720523 +IN,PM2.5 Filterable,2A2_Lime-production,,TON,40.79316391 +IN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,5058.030414 +IN,PM2.5 Filterable,2A6_Other-minerals,,TON,2684.124832 +IN,PM2.5 Filterable,2B_Chemicals-other,,TON,120.2450894 +IN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2816.351752 +IN,PM2.5 Filterable,2C3_Aluminum-production,,TON,356.7779394 +IN,PM2.5 Filterable,2C5_Lead-production,,TON,3.4508001 +IN,PM2.5 Filterable,2C7_Other-metal,,TON,177.3990479 +IN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.743324 +IN,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,6.2471039 +IN,PM2.5 Filterable,2D3d_Coating-application,,TON,297.1000854 +IN,PM2.5 Filterable,2D3e_Degreasing,,TON,0.0083 +IN,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.699108298 +IN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,65.5481628 +IN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,493.4459665 +IN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,377.1546849 +IN,PM2.5 Filterable,2I_Wood-processing,,TON,0.15417018 +IN,PM2.5 Filterable,3Dc_Other-farm,,TON,40070.08424 +IN,PM2.5 Filterable,3F_Ag-res-on-field,,TON,30.62679143 +IN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,34.1605355 +IN,PM2.5 Filterable,5C_Incineration,,TON,0.1993307 +IN,PM2.5 Filterable,5C_Incineration,biomass,TON,15.49289 +IN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1038.615353 +IN,PM2.5 Filterable,5C_Open-burning-residential,,TON,2752.6935 +IN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,85.49914 +IN,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.2256 +IN,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.009002 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.06 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.352586162 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,9615.853511 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.07308 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,350.5455972 +IN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,307.2084359 +IN,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,245.2023 +IN,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.331852 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,272.6876478 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,62.70410756 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.112349355 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.042077242 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,234.5588401 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,21.49855458 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,189.4576632 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,5.610324846 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.65956356 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2352.623148 +IN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,41.761146 +IN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00684 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1018.902063 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,60.2425108 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001824417 +IN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,111.327562 +IN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25231.0025 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,86.66345048 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1683.243977 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,120.677113 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,277.936031 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,98.49102176 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.058361341 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.29134485 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1617.254041 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,9.137900763 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1580.55569 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,19.38488716 +IN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.878671 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,674.6345373 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041638738 +IN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.72278003 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,473.0579737 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,237.5976762 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,250.2721573 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.141688519 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,78.62928229 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,134.9819938 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,55.96471128 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.217462733 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,46.46422284 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,441.1263056 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12145.58365 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,13.9405118 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,90.66823745 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.57154135 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,34.32988659 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1446.167579 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.43919213 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005730359 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.5818438 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,350.8540207 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.75861274 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,133.818725 +IN,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0205 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,104.2255987 +IN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,387.0690503 +IN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,50.19705489 +IN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5058.030414 +IN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2898.076208 +IN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,148.2459616 +IN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4155.526515 +IN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,708.3440011 +IN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,20.3640606 +IN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,182.9379551 +IN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.41929 +IN,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,8.09 +IN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,297.3503113 +IN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0083 +IN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.699108298 +IN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,70.42349816 +IN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2282.801181 +IN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,378.0253929 +IN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.15417018 +IN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,40075.43665 +IN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,30.96943673 +IN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,59.9662995 +IN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.239158879 +IN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,22.52759245 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1038.615353 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2752.6935 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,85.49914 +IN,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,1.696 +IN,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.009002 +IN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,30.60240594 +IN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,351814.7298 +IN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1.6485 +IN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,489.7256755 +IN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1009.738843 +IN,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,4547.7903 +IN,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.015905 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.36022067 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.04302176 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.756083429 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1161.207443 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,91.12844903 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,71.52290565 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,15532.40681 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,142.1562853 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,36.81524603 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,13269.85532 +IN,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0 +IN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,3.320392 +IN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00054 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,38.48559523 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.049977768 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000339961 +IN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,137.1279203 +IN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.903255054 +IN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,606.32691 +IN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.58736932 +IN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,107.007047 +IN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.839711795 +IN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.869035846 +IN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.033917804 +IN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,41.82398257 +IN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.733756608 +IN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,38.1553914 +IN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.7466341 +IN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.95180987 +IN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,217.6222554 +IN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005938914 +IN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,19.43681091 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,26.77611132 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.57820365 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9127.419089 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,23.25982394 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,29.65423637 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.003733843 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.017448824 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.214590342 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.312155629 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.885167546 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,423.0584035 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,278.8103045 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1391.182034 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,111.430821 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,47.90218 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,34.89795475 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.557665195 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000996956 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.06431971 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.941086616 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.745839881 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.189807825 +IN,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,79.22902187 +IN,Sulfur Dioxide,2A1_Cement-production,,TON,3288.7755 +IN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,718.025 +IN,Sulfur Dioxide,2A6_Other-minerals,,TON,2520.012545 +IN,Sulfur Dioxide,2B_Chemicals-other,,TON,922.8552759 +IN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,11121.48906 +IN,Sulfur Dioxide,2C3_Aluminum-production,,TON,3989.090878 +IN,Sulfur Dioxide,2C5_Lead-production,,TON,143.400198 +IN,Sulfur Dioxide,2C7_Other-metal,,TON,440.0900767 +IN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.11106 +IN,Sulfur Dioxide,2C7b_Nickel-production,Other_Fuel,TON,3.36 +IN,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0156818 +IN,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +IN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,505.8112368 +IN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.309391 +IN,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0663 +IN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,7.392218112 +IN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +IN,Sulfur Dioxide,5C_Incineration,,TON,0.03987502 +IN,Sulfur Dioxide,5C_Incineration,biomass,TON,106.6595056 +IN,Sulfur Dioxide,5C_Open-burning-residential,,TON,79.100382 +IN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.43174493 +IN,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,1.14538 +IN,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.01179 +IN,Volatile Organic Compounds,11C_Other-natural,,TON,267097.67 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.58538209 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1668.497431 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.00294 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,166.2106432 +IN,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0 +IN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1746.32554 +IN,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,294.01 +IN,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.94444 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,298.2434657 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1161.546921 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.326328382 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.526952441 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,26.54399404 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.51840186 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,17.83831873 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.993092337 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.758811869 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1278.212392 +IN,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +IN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,519.2064395 +IN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00495 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1158.154356 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,700.6803428 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.003358519 +IN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,405.8493438 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,686.727678 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,55968.1545 +IN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,553.929283 +IN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10283.8434 +IN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,168.7626797 +IN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,128.519422 +IN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,5.18591649 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3760.200581 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,99.00552362 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2084.310168 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,683.579504 +IN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1296.90173 +IN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1130.826521 +IN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.217672445 +IN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.44176131 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,19.67047153 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.38288279 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.236581168 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.191103968 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,247.2281666 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,193.2375725 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2661.045904 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.7112163 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,65.24359681 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,10182.0895 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,12127.61304 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,4.58138985 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,185.6427758 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.83102325 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,439.103127 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1561.128654 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,384.1508079 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.019325213 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.566198 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12749.39459 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,65.18327356 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10001.00661 +IN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,925.085447 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1103.488918 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,2107.998373 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,14116.53792 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,15174.39455 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,12.33012234 +IN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3227.510613 +IN,Volatile Organic Compounds,2A1_Cement-production,,TON,128.2527 +IN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,13.195378 +IN,Volatile Organic Compounds,2A6_Other-minerals,,TON,108.4061984 +IN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1473.701985 +IN,Volatile Organic Compounds,2B_Chemicals-other,,TON,2725.218954 +IN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,3599.920647 +IN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1394.414554 +IN,Volatile Organic Compounds,2C5_Lead-production,,TON,8.02143 +IN,Volatile Organic Compounds,2C7_Other-metal,,TON,100.2856308 +IN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.90968 +IN,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,1.54 +IN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,27329.22393 +IN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.44 +IN,Volatile Organic Compounds,2D3d_Coating-application,,TON,31586.04663 +IN,Volatile Organic Compounds,2D3e_Degreasing,,TON,367.3278 +IN,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,65.920003 +IN,Volatile Organic Compounds,2D3h_Printing,,TON,2876.673105 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,181.8827676 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1142.671511 +IN,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,225.40703 +IN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4530.124338 +IN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3074.547947 +IN,Volatile Organic Compounds,3Dc_Other-farm,,TON,2.22775 +IN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,14542.42962 +IN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,24.68586762 +IN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,230.520659 +IN,Volatile Organic Compounds,5C_Incineration,,TON,0.099657434 +IN,Volatile Organic Compounds,5C_Incineration,biomass,TON,49.40740743 +IN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,919.317761 +IN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,677.09934 +IN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,124.914036 +IN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,104.482992 +IN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,9.06285843 +IN,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +IN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.33872 +KS,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.341257 +KS,Ammonia,1A1a_Public-Electricity,hard_coal,TON,302.788665 +KS,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,31.446087 +KS,Ammonia,1A1b_Pet-refining,natural_gas,TON,49.779567 +KS,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.381745 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.537307266 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.189870435 +KS,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.132874055 +KS,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.728824048 +KS,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.60014E-05 +KS,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,160.5958318 +KS,Ammonia,1A2c_Chemicals,natural_gas,TON,0.252128 +KS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.206550473 +KS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.142836717 +KS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.55473948 +KS,Ammonia,1A3bii_Road-LDV,light_oil,TON,1048.989795 +KS,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.55582936 +KS,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,167.387585 +KS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.064887167 +KS,Ammonia,1A3biii_Road-bus,light_oil,TON,0.464623705 +KS,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.04744364 +KS,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,44.30131665 +KS,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.158635914 +KS,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.58054089 +KS,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.817741917 +KS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.62174067 +KS,Ammonia,1A3c_Rail,diesel_oil,TON,16.57451161 +KS,Ammonia,1A3c_Rail,light_oil,TON,0.005762574 +KS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.008389027 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.614574948 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.031523092 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.03367303 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.610830391 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.721581122 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.476340973 +KS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.218035116 +KS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.832616562 +KS,Ammonia,1A4bi_Residential-stationary,biomass,TON,266.4128336 +KS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.02803486 +KS,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Ammonia,1A4bi_Residential-stationary,heavy_oil,TON,0 +KS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.04718273 +KS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,746.1425249 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.79054234 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.6185482 +KS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012289604 +KS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.938720352 +KS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.150896093 +KS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.931355706 +KS,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.5615 +KS,Ammonia,2A6_Other-minerals,,TON,133.177965 +KS,Ammonia,2B_Chemicals-other,,TON,1184.289763 +KS,Ammonia,2C_Iron-steel-alloy,,TON,1.71 +KS,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.001079 +KS,Ammonia,2D3d_Coating-application,,TON,1.821216 +KS,Ammonia,2D3h_Printing,,TON,7.987075 +KS,Ammonia,2H2_Ethanol Production,,TON,2.696213 +KS,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,248.536138 +KS,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,7.25 +KS,Ammonia,3B1a_Cattle-dairy,,TON,9936.693037 +KS,Ammonia,3B1b_Cattle-non-dairy,,TON,72444.68838 +KS,Ammonia,3B2_Manure-sheep,,TON,294.8095 +KS,Ammonia,3B3_Manure-swine,,TON,15343.12617 +KS,Ammonia,3B4_Manure-other,,TON,1211.313452 +KS,Ammonia,3B4_Manure-poultry,,TON,2247.723043 +KS,Ammonia,3B4d_Manure-goats,,TON,345.94496 +KS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,69255.51254 +KS,Ammonia,3Dc_Other-farm,,TON,2.011788 +KS,Ammonia,5C_Open-burning-land-clearing,,TON,0.17993063 +KS,Ammonia,5C_Open-burning-yard-waste,,TON,0.292518456 +KS,Ammonia,5D1_Wastewater-domestic,,TON,10.568 +KS,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,6.631 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,189278.3039 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,195056.1316 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14837.69774 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,640676.7472 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,11841.17686 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.586702497 +KS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,179035.392 +KS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,11675447.17 +KS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,164689.9454 +KS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2156676.24 +KS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,67626.58904 +KS,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,13915.47784 +KS,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2032.32242 +KS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2515049.905 +KS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,30557.18418 +KS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1828479.098 +KS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,137387.7079 +KS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,78797.8897 +KS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,9639.07809 +KS,Carbon Dioxide,1A3c_Rail,light_oil,TON,447.1860715 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,88673.10581 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,122450.6479 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5455.192391 +KS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,26815.69875 +KS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,208686.974 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2926800.157 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,46492.79199 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,72.12502237 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1504.4716 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,62468.77023 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,18581.92881 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,64481.1141 +KS,Carbon Monoxide,11C_Other-natural,,TON,168845.818 +KS,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.06095 +KS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,17.529048 +KS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,20354.3232 +KS,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,3.9435 +KS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1306.838918 +KS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1426.401012 +KS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,101.419292 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,800.8173207 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10571.45325 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,577.2578438 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,53.85605631 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,126.4520351 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000544018 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.311533377 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16388.21469 +KS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,18.969391 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2670.534182 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2838.367798 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.186469678 +KS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5552.482741 +KS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3082.090677 +KS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,278281.479 +KS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1760.0193 +KS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,59769.9407 +KS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,190.5588914 +KS,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,754.8723279 +KS,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,13.57743372 +KS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5874.589616 +KS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1006.730121 +KS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3513.049119 +KS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4589.051393 +KS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3184.11543 +KS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5357.708593 +KS,Carbon Monoxide,1A3c_Rail,light_oil,TON,118.8230129 +KS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.579775 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,196.1401179 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.121155361 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.201643959 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1341.769433 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,469.9076774 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,30043.10277 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,127.6033234 +KS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,109.5362756 +KS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,59091.86623 +KS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,31552.77464 +KS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.1401787 +KS,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,0.001275 +KS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.2359168 +KS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1659.659402 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13380.20121 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11818.55151 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.933071079 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.54486 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,13912.51786 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,37.15306153 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8728.66036 +KS,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,10.93166152 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,58.64356048 +KS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,46395.0821 +KS,Carbon Monoxide,2A1_Cement-production,,TON,89.86 +KS,Carbon Monoxide,2A6_Other-minerals,,TON,2413.600558 +KS,Carbon Monoxide,2B_Chemicals-other,,TON,1864.313733 +KS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,766.46879 +KS,Carbon Monoxide,2C5_Lead-production,,TON,11.79 +KS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,15.440959 +KS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,4.728365 +KS,Carbon Monoxide,2D3d_Coating-application,,TON,0 +KS,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.10626 +KS,Carbon Monoxide,2H2_Ethanol Production,,TON,51.891194 +KS,Carbon Monoxide,2H2_Food-and-beverage,,TON,340.600648 +KS,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,109.94955 +KS,Carbon Monoxide,3Dc_Other-farm,,TON,3.500322 +KS,Carbon Monoxide,3F_Ag-res-on-field,,TON,146377.46 +KS,Carbon Monoxide,5A_Solid-waste-disposal,,TON,154.1583175 +KS,Carbon Monoxide,5C_Incineration,,TON,0.028856679 +KS,Carbon Monoxide,5C_Incineration,biomass,TON,6.616498434 +KS,Carbon Monoxide,5C_Open-burning-commercial,,TON,6.65 +KS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2034.920846 +KS,Carbon Monoxide,5C_Open-burning-residential,,TON,2480.825489 +KS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,120.4066 +KS,Methane,1A3bii_Road-LDV,diesel_oil,TON,6.706238388 +KS,Methane,1A3bii_Road-LDV,light_oil,TON,730.9107856 +KS,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.02201961 +KS,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,184.290705 +KS,Methane,1A3biii_Road-bus,diesel_oil,TON,1.570174928 +KS,Methane,1A3biii_Road-bus,light_oil,TON,1.715891909 +KS,Methane,1A3biii_Road-bus,natural_gas,TON,13.62108358 +KS,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,220.5662643 +KS,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.931200301 +KS,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,31.17667579 +KS,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,9.849978222 +KS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.29621964 +KS,Nitrogen Oxides,11C_Other-natural,,TON,57223.8697 +KS,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +KS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,233.183507 +KS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,40323.344 +KS,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2698.4031 +KS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2242.615358 +KS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,115.2506086 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1321.188028 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1168.989441 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,86.69783353 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,69.18487252 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,578.8436793 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000124162 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.439404721 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,41362.6708 +KS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,58.54414 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4825.952721 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,48.81532312 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.037908457 +KS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,235.5364946 +KS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,715.2600434 +KS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,35487.38576 +KS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,801.784158 +KS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7673.79095 +KS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,516.6418247 +KS,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,65.3071974 +KS,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,8.60377818 +KS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20764.20811 +KS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,140.3110223 +KS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11282.90647 +KS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,455.2052564 +KS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,160.8742251 +KS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,37316.32859 +KS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.796080811 +KS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12.69135 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,73.18442869 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.09682533 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.810899475 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1623.006291 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,811.0050276 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,537.6585096 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,33.85652257 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,244.0086173 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,665.4845182 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,469.7987944 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.5046178 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,0.00825 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.8493 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4101.882506 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26758.67479 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,253.3256235 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.769707958 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.722526 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,135.356328 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,208.6792728 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,430.8436345 +KS,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,6.053675396 +KS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,26.0261846 +KS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,35063.60956 +KS,Nitrogen Oxides,2A1_Cement-production,,TON,2968.58 +KS,Nitrogen Oxides,2A6_Other-minerals,,TON,3589.30586 +KS,Nitrogen Oxides,2B_Chemicals-other,,TON,1173.656944 +KS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,47.741179 +KS,Nitrogen Oxides,2C5_Lead-production,,TON,14.26 +KS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,16.705444 +KS,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0036575 +KS,Nitrogen Oxides,2D3d_Coating-application,,TON,8.30886 +KS,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.1265 +KS,Nitrogen Oxides,2H2_Ethanol Production,,TON,120.63773 +KS,Nitrogen Oxides,2H2_Food-and-beverage,,TON,11.414688 +KS,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,273.655 +KS,Nitrogen Oxides,3Dc_Other-farm,,TON,4.16705 +KS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,5884.82 +KS,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,13.049676 +KS,Nitrogen Oxides,5C_Incineration,,TON,16.82886157 +KS,Nitrogen Oxides,5C_Incineration,biomass,TON,13.29106221 +KS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,60.2005805 +KS,Nitrogen Oxides,5C_Open-burning-residential,,TON,175.1193875 +KS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.92434 +KS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.538104151 +KS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,680.0887676 +KS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.564303469 +KS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,156.560688 +KS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.161464734 +KS,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.609321421 +KS,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.113112429 +KS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.196619165 +KS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.910595977 +KS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.857764474 +KS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.033445795 +KS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.056899562 +KS,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.022064 +KS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.0144 +KS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1568.49773 +KS,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.45 +KS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,28.8448339 +KS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,307.3094105 +KS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,5.7007225 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,16.73037008 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,40.12563499 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.75633E-05 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.027641861 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,346.1435048 +KS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.288181 +KS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,302522.9009 +KS,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0.018888 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,162.4683199 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.67254967 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043687776 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.41268287 +KS,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1.43896 +KS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.03027836 +KS,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +KS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.05095815 +KS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.296964352 +KS,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.043411 +KS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,514.055276 +KS,PM10 Filterable,2A1_Cement-production,,TON,243.1761196 +KS,PM10 Filterable,2A2_Lime-production,,TON,3.088596976 +KS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,32562.32598 +KS,PM10 Filterable,2A6_Other-minerals,,TON,3231.995393 +KS,PM10 Filterable,2B_Chemicals-other,,TON,557.4786903 +KS,PM10 Filterable,2C_Iron-steel-alloy,,TON,455.703168 +KS,PM10 Filterable,2C3_Aluminum-production,,TON,11.49845 +KS,PM10 Filterable,2C5_Lead-production,,TON,12.037323 +KS,PM10 Filterable,2C6_Zinc-production,,TON,0.00095 +KS,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,336.3064863 +KS,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.00025935 +KS,PM10 Filterable,2D3d_Coating-application,,TON,185.660079 +KS,PM10 Filterable,2D3e_Degreasing,,TON,3.41 +KS,PM10 Filterable,2D3h_Printing,,TON,0.024779 +KS,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0016 +KS,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.055 +KS,PM10 Filterable,2H2_Ethanol Production,,TON,27.577254 +KS,PM10 Filterable,2H2_Food-and-beverage,,TON,474.712117 +KS,PM10 Filterable,2H3_Other-industrial-processes,,TON,749.7351093 +KS,PM10 Filterable,2I_Wood-processing,,TON,1.86555 +KS,PM10 Filterable,3Dc_Other-farm,,TON,417694.9249 +KS,PM10 Filterable,3F_Ag-res-on-field,,TON,23904.24 +KS,PM10 Filterable,5A_Solid-waste-disposal,,TON,53.422373 +KS,PM10 Filterable,5C_Incineration,,TON,0.633616 +KS,PM10 Filterable,5C_Incineration,biomass,TON,6.593854 +KS,PM10 Filterable,5C_Open-burning-commercial,,TON,0.81 +KS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,204.6879215 +KS,PM10 Filterable,5C_Open-burning-residential,,TON,1109.059454 +KS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.62124 +KS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.10739 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0239436 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.557952381 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2225.62447 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.85 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,112.9299004 +KS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,551.2031846 +KS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,13.7777609 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,102.5650401 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.37108251 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.834250952 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,17.33909413 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,40.55583974 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.41093E-05 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.028884315 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,637.5685267 +KS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.160059 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,413.890415 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,18.51957794 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +KS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,121.4714005 +KS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,302522.9807 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,49.28009672 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1851.654828 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,62.7822964 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,340.864578 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,38.74361814 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.477469595 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.259675715 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,987.7972554 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.759796361 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,818.369521 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,15.78477562 +KS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.84329698 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1225.659173 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.062110069 +KS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.419451 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,167.9753575 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.788099566 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.09830747 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.63970987 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,77.81098157 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,33.91328818 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.684536127 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,18.51292299 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,201.2434087 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4535.246492 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.06672436 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.1122974 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,21.55297225 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2359.396541 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.675532869 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009117643 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.084569 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,114.5449199 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.176658038 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,42.95863044 +KS,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.043411 +KS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1040.030784 +KS,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,276.3744812 +KS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,3.312664233 +KS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,32562.32598 +KS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3370.806067 +KS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,607.8380943 +KS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1198.404027 +KS,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,52.8929 +KS,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,12.36095333 +KS,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.00437 +KS,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,339.4802574 +KS,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.0015295 +KS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,186.253457 +KS,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.41 +KS,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.03199 +KS,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0016 +KS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.102763 +KS,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,41.17272 +KS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1253.378427 +KS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,749.9854794 +KS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,1.86555 +KS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,417733.4435 +KS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,23904.247 +KS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,77.225916 +KS,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.739245582 +KS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.78373735 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,1.25455 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,204.6879215 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1109.059454 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.62124 +KS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.10739 +KS,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.019358 +KS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.477700463 +KS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1018.21378 +KS,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.83 +KS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,28.8333449 +KS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,292.9349082 +KS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,5.6950285 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,14.32825191 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,37.69758648 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.44523E-05 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.001997373 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,341.2516582 +KS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.288181 +KS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,32851.65031 +KS,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0.016527 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,139.7157367 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.662722343 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033604211 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.18721146 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1.43896 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.02326924 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.03916311 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.563166558 +KS,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,511.825276 +KS,PM2.5 Filterable,2A1_Cement-production,,TON,102.9305635 +KS,PM2.5 Filterable,2A2_Lime-production,,TON,1.239358394 +KS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3256.212303 +KS,PM2.5 Filterable,2A6_Other-minerals,,TON,709.9910261 +KS,PM2.5 Filterable,2B_Chemicals-other,,TON,217.2188602 +KS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,235.4195348 +KS,PM2.5 Filterable,2C3_Aluminum-production,,TON,11.49845 +KS,PM2.5 Filterable,2C5_Lead-production,,TON,0.11702928 +KS,PM2.5 Filterable,2C6_Zinc-production,,TON,0.00084674 +KS,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,188.7162797 +KS,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.00019285 +KS,PM2.5 Filterable,2D3d_Coating-application,,TON,157.3182991 +KS,PM2.5 Filterable,2D3e_Degreasing,,TON,3.41 +KS,PM2.5 Filterable,2D3h_Printing,,TON,0.020970517 +KS,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.055 +KS,PM2.5 Filterable,2H2_Ethanol Production,,TON,13.005358 +KS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,220.5746781 +KS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,480.2248883 +KS,PM2.5 Filterable,2I_Wood-processing,,TON,1.7133121 +KS,PM2.5 Filterable,3Dc_Other-farm,,TON,83437.40984 +KS,PM2.5 Filterable,3F_Ag-res-on-field,,TON,14252.87 +KS,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,9.105829 +KS,PM2.5 Filterable,5C_Incineration,,TON,0.633616 +KS,PM2.5 Filterable,5C_Incineration,biomass,TON,4.29282492 +KS,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.461392 +KS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,204.6879215 +KS,PM2.5 Filterable,5C_Open-burning-residential,,TON,1015.715647 +KS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,11.27209 +KS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.85329705 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0212376 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.021248844 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1675.34192 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.23 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,112.9184114 +KS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,536.8286832 +KS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,13.7720669 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,99.48290029 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.19985498 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.834033605 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,14.9768654 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,38.23044671 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,6.11578E-05 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.028868335 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,632.3057301 +KS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.160059 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,401.4735749 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.04917659 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +KS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,98.28490846 +KS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,32852.13977 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,33.74903282 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,698.150938 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,47.1383769 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,123.80568 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,30.09327089 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.272227064 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.089274884 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,800.0709169 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.944558851 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,612.5288524 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.191621641 +KS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.76103897 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1131.94364 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.057254242 +KS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.4068672 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,145.2400834 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.778290336 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.088232528 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,26.38023097 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,75.47664344 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.29075242 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.684536127 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,17.95752905 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,185.151572 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4533.741135 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.05971178 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.1004956 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.75481015 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2288.614877 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.981954419 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009117643 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.0220362 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,105.3818129 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.051358749 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,39.52195476 +KS,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.043411 +KS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1037.803784 +KS,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,137.4536034 +KS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.463425229 +KS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3256.212303 +KS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,886.3252949 +KS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,313.0310732 +KS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,985.0878468 +KS,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,52.8929 +KS,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,12.35165951 +KS,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.00426674 +KS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,197.5383929 +KS,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.001463 +KS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,157.9987511 +KS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.41 +KS,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.028181517 +KS,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0016 +KS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.102763 +KS,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,41.17272 +KS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1031.313153 +KS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,484.1875594 +KS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,1.7133121 +KS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,83475.66192 +KS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,14252.888 +KS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,34.589377 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.750402089 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.471542759 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.905938 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,204.6879215 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1015.715647 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.27209 +KS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.85329705 +KS,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +KS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,8.6081133 +KS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,39375.355 +KS,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,25.85840437 +KS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1919.634138 +KS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,35.9415897 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.810823671 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.829731885 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.332036598 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,6.379189432 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,36.63635017 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.023161717 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,390.555641 +KS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.27712 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,11.95471691 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.217390756 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.70471E-05 +KS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,35.19028081 +KS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.540815449 +KS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,230.7462396 +KS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.423079842 +KS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.6231812 +KS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.579966051 +KS,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.275016796 +KS,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.010760087 +KS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,21.60665046 +KS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.603913433 +KS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.64686219 +KS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.715241932 +KS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.557311357 +KS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,372.5272773 +KS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008169937 +KS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.1559572 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,8.175853203 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.30923149 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.790220625 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.60758694 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.679599893 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.246547881 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.120619745 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.50724445 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.802716986 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,81.52507969 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.005971178 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.009919 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,24.88990578 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,55.07095619 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.847647751 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001586272 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02840374 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.134243251 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.398577495 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.172363979 +KS,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.07225 +KS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,44.57085098 +KS,Sulfur Dioxide,2A1_Cement-production,,TON,1096.59 +KS,Sulfur Dioxide,2A6_Other-minerals,,TON,874.24351 +KS,Sulfur Dioxide,2B_Chemicals-other,,TON,3042.982361 +KS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,44.346202 +KS,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.14613 +KS,Sulfur Dioxide,2C5_Lead-production,,TON,1.92 +KS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.137418 +KS,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0007315 +KS,Sulfur Dioxide,2D3d_Coating-application,Other_Fuel,TON,0.062461 +KS,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.000759 +KS,Sulfur Dioxide,2H2_Ethanol Production,,TON,20.77817 +KS,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.756796 +KS,Sulfur Dioxide,3Dc_Other-farm,,TON,0.025003 +KS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2287.4825 +KS,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,2.31123 +KS,Sulfur Dioxide,5C_Incineration,,TON,2.334350253 +KS,Sulfur Dioxide,5C_Incineration,biomass,TON,0.809278207 +KS,Sulfur Dioxide,5C_Open-burning-residential,,TON,29.18206458 +KS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.847907 +KS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,1.56 +KS,Volatile Organic Compounds,11C_Other-natural,,TON,590648.26 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.01219 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.7864513 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,622.5968 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.460075 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,87.410727 +KS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,643.7406348 +KS,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,563.0241213 +KS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1366.207805 +KS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,81.931212 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,111.6381196 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,406.3385877 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.410221695 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,11.12294896 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.23933286 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.009002046 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.594100922 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2426.138215 +KS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,4.570556601 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,490.8789985 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,205.8442686 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000619803 +KS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,224.2661774 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,301.4346366 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,26365.56079 +KS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,235.700388 +KS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5059.50769 +KS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,50.76405177 +KS,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,41.37202259 +KS,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.607320229 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1887.463092 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,32.97689342 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,784.346788 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,212.5744242 +KS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,537.847653 +KS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1898.530653 +KS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.752299166 +KS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.2903332 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,5.589770106 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.993989211 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.013945221 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,88.45929216 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,108.0510584 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1557.638068 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.398116017 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,25.21877541 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4609.438821 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5688.930941 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.01962497 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,heavy_oil,TON,0 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.03302778 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,228.164149 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2470.5198 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,573.0612054 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.030750514 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.781026 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3745.979134 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.50228735 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2984.757377 +KS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,669.479906 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,697.8539601 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,998.5583039 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,14458.15104 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6337.353351 +KS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,34573.34833 +KS,Volatile Organic Compounds,2A1_Cement-production,,TON,10.73 +KS,Volatile Organic Compounds,2A6_Other-minerals,,TON,24.41785156 +KS,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,974.2976936 +KS,Volatile Organic Compounds,2B_Chemicals-other,,TON,1915.589018 +KS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,487.923989 +KS,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1.4613 +KS,Volatile Organic Compounds,2C5_Lead-production,,TON,7.52 +KS,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.11112 +KS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,17.496028 +KS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12036.81251 +KS,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.002128 +KS,Volatile Organic Compounds,2D3d_Coating-application,,TON,11312.29387 +KS,Volatile Organic Compounds,2D3e_Degreasing,,TON,2836.48775 +KS,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,566.676 +KS,Volatile Organic Compounds,2D3h_Printing,,TON,1491.960611 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,916.3140727 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,580.5234273 +KS,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,718.0945 +KS,Volatile Organic Compounds,2H2_Ethanol Production,,TON,308.035814 +KS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,968.1814016 +KS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3338.597781 +KS,Volatile Organic Compounds,3Dc_Other-farm,,TON,195.842108 +KS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,18375.92016 +KS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,10433.144 +KS,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,85.120538 +KS,Volatile Organic Compounds,5C_Incineration,,TON,0.446703813 +KS,Volatile Organic Compounds,5C_Incineration,biomass,TON,15.84171097 +KS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,139.6710262 +KS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,249.8292328 +KS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,19.86797 +KS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,53.15944 +KS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,26.97234712 +KS,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,4.652636 +KY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.95351 +KY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,747.955309 +KY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,5.62399 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.044086965 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.173298284 +KY,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,10.1365 +KY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.985701 +KY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,57.3657799 +KY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.0946331 +KY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.0678371 +KY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,27.9467796 +KY,Ammonia,1A2c_Chemicals,natural_gas,TON,0.6296 +KY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.874288017 +KY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.228438812 +KY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.353089177 +KY,Ammonia,1A3bii_Road-LDV,light_oil,TON,1701.63967 +KY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.72569676 +KY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,238.949191 +KY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.148734834 +KY,Ammonia,1A3biii_Road-bus,light_oil,TON,0.950700916 +KY,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.127054304 +KY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,67.35578496 +KY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.005766444 +KY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,52.87074398 +KY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,10.7327863 +KY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.16091753 +KY,Ammonia,1A3c_Rail,diesel_oil,TON,7.055390151 +KY,Ammonia,1A3c_Rail,light_oil,TON,0.003857844 +KY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9.20013061 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.15549 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.1055 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.00957 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.0326255 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.897463418 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.720741806 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.474510437 +KY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.230335173 +KY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.517545135 +KY,Ammonia,1A4bi_Residential-stationary,biomass,TON,370.7241254 +KY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,6.911021865 +KY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,4.779517648 +KY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.307106746 +KY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,518.6249781 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.531261257 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.213032063 +KY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018492717 +KY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.409266117 +KY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.482407652 +KY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.978305299 +KY,Ammonia,2A6_Other-minerals,,TON,77.19661 +KY,Ammonia,2B_Chemicals-other,,TON,31.3343 +KY,Ammonia,2C_Iron-steel-alloy,,TON,1.216 +KY,Ammonia,2D3d_Coating-application,,TON,0.02 +KY,Ammonia,2D3h_Printing,Other_Fuel,TON,0.12 +KY,Ammonia,2H1_Pulp-and-paper,,TON,60.808 +KY,Ammonia,2H2_Food-and-beverage,,TON,50.65075 +KY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,214.114 +KY,Ammonia,3B1a_Cattle-dairy,,TON,3142.003352 +KY,Ammonia,3B1b_Cattle-non-dairy,,TON,11150.57923 +KY,Ammonia,3B2_Manure-sheep,,TON,129.333402 +KY,Ammonia,3B3_Manure-swine,,TON,3039.810888 +KY,Ammonia,3B4_Manure-other,,TON,2357.6388 +KY,Ammonia,3B4_Manure-poultry,,TON,13499.47781 +KY,Ammonia,3B4d_Manure-goats,,TON,684.409176 +KY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,16789.7468 +KY,Ammonia,5D1_Wastewater-domestic,,TON,16.10317173 +KY,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.001 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,251672.1008 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,277410.9783 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16294.35668 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1091727.836 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,18948.54552 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.173399562 +KY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,271446.3065 +KY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18443777.25 +KY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,230892.2531 +KY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3015748.77 +KY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,139084.1592 +KY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,27972.5804 +KY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5362.35672 +KY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3632107.644 +KY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,52544.2717 +KY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3521740.036 +KY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,291794.6377 +KY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,124238.1855 +KY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6447.711461 +KY,Carbon Dioxide,1A3c_Rail,light_oil,TON,299.3337627 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,88569.95328 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,122299.6028 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5453.411658 +KY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,28328.37836 +KY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,259488.4023 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,803542.4893 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,15737.12029 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,18.85409748 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2263.8387 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,156776.3056 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,59405.59394 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,206199.0151 +KY,Carbon Monoxide,11C_Other-natural,,TON,79418.035 +KY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,13.191173 +KY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,40.07536559 +KY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,14456.31705 +KY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.21875 +KY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.2627 +KY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1037.039209 +KY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,839.2141272 +KY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,40.2541472 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1860.871809 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13315.19392 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,795.0394114 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2065.833269 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,213.0532387 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,879.5697114 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.945709144 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.42582362 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6676.066964 +KY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,177.7070802 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.497375 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.874194 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4884.598417 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4359.707061 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.372939053 +KY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4661.963476 +KY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3862.811622 +KY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,384178.7082 +KY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2155.03043 +KY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,74906.5283 +KY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,384.2518769 +KY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1556.135043 +KY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,32.6032854 +KY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8784.610023 +KY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1722.701855 +KY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6454.76945 +KY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9975.916689 +KY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4966.37945 +KY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2290.277654 +KY,Carbon Monoxide,1A3c_Rail,light_oil,TON,76.83394873 +KY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2871.224936 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,435.068857 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.84389164 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,212.5965243 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.870179195 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,966.2371446 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,469.3445193 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,28849.99722 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,127.5124301 +KY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,115.8569317 +KY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,70405.49237 +KY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,44368.659 +KY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,34.55511624 +KY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,657.1841881 +KY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,11.53553256 +KY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1456.574313 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3598.500646 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4209.501285 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.073594796 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,21.890948 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,31568.76428 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,118.7771991 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,27021.25941 +KY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,3120.941813 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,12.54953028 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.67 +KY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,27424.152 +KY,Carbon Monoxide,2A1_Cement-production,,TON,0.32 +KY,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1812.85904 +KY,Carbon Monoxide,2A6_Other-minerals,,TON,1301.685862 +KY,Carbon Monoxide,2B_Chemicals-other,,TON,61.988128 +KY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2721.295848 +KY,Carbon Monoxide,2C3_Aluminum-production,,TON,58638.64839 +KY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,101.53288 +KY,Carbon Monoxide,2C7a_Copper-production,,TON,0.3675 +KY,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,3.1 +KY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1392.270601 +KY,Carbon Monoxide,2H2_Food-and-beverage,,TON,517.5750289 +KY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,933.1589105 +KY,Carbon Monoxide,3F_Ag-res-on-field,,TON,10077.87326 +KY,Carbon Monoxide,5A_Solid-waste-disposal,,TON,900.094541 +KY,Carbon Monoxide,5C_Incineration,,TON,0.040277157 +KY,Carbon Monoxide,5C_Incineration,biomass,TON,44.14249087 +KY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,16002.99374 +KY,Carbon Monoxide,5C_Open-burning-residential,,TON,7369.53443 +KY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,970.77453 +KY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.3445791 +KY,Methane,1A3bii_Road-LDV,diesel_oil,TON,9.559130151 +KY,Methane,1A3bii_Road-LDV,light_oil,TON,976.452135 +KY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.3660725 +KY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,219.3660527 +KY,Methane,1A3biii_Road-bus,diesel_oil,TON,3.057402606 +KY,Methane,1A3biii_Road-bus,light_oil,TON,3.204096444 +KY,Methane,1A3biii_Road-bus,natural_gas,TON,28.3566052 +KY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,376.1242931 +KY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.473999141 +KY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,56.09038716 +KY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,19.90092177 +KY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.25964336 +KY,Nitrogen Oxides,11C_Other-natural,,TON,17390.0911 +KY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,18.9178267 +KY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,189.4905976 +KY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,91870.59728 +KY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,14.2374 +KY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,3.0932 +KY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,663.9591431 +KY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,770.6535 +KY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,20.199289 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1797.18791 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1712.405452 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,116.6927841 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,992.0168852 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,935.2319903 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2703.938334 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,45.96143694 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.702518844 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,14471.00781 +KY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,144.70466 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.1548 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.74252 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8423.602613 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,80.30118612 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075816838 +KY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2153.620548 +KY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,993.6610548 +KY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,50053.16237 +KY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1036.925847 +KY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9770.36012 +KY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1022.934286 +KY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,130.6762917 +KY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,21.01214714 +KY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30106.45644 +KY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,232.2769793 +KY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,21034.50663 +KY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,987.1594286 +KY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,251.716189 +KY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15929.01518 +KY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.233553798 +KY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14125.13496 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,212.1823564 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,108.5611089 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,383.6953583 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.900525287 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1122.559119 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,810.0593718 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,549.0244463 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,33.82869694 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,257.6776897 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,882.8940054 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,624.375437 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,124.3984236 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,21.71766152 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,41.52792355 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3183.665286 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7225.643373 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,81.44677882 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.462564397 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.143561 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,345.70696 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,667.1314504 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1430.61427 +KY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,2504.11883 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,3.2726222 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.12 +KY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21928.44639 +KY,Nitrogen Oxides,2A1_Cement-production,,TON,0.16 +KY,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,3150.0903 +KY,Nitrogen Oxides,2A6_Other-minerals,,TON,762.060421 +KY,Nitrogen Oxides,2B_Chemicals-other,,TON,240.7955274 +KY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1218.989765 +KY,Nitrogen Oxides,2C3_Aluminum-production,,TON,261.2075226 +KY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,138.479659 +KY,Nitrogen Oxides,2C7a_Copper-production,,TON,1.8375 +KY,Nitrogen Oxides,2D3d_Coating-application,,TON,1.378 +KY,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,3.69 +KY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,792.28888 +KY,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,3.9839158 +KY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1201.858837 +KY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,452.1162306 +KY,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,92.0489865 +KY,Nitrogen Oxides,5C_Incineration,,TON,0.016266076 +KY,Nitrogen Oxides,5C_Incineration,biomass,TON,43.08065792 +KY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,473.4610802 +KY,Nitrogen Oxides,5C_Open-burning-residential,,TON,520.20246 +KY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,43.1455292 +KY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.20505 +KY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.747643314 +KY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,918.2900175 +KY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.728372478 +KY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,189.1430667 +KY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.304689586 +KY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.174316237 +KY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.399406084 +KY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.908182948 +KY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.380562643 +KY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.063943677 +KY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,17.2368733 +KY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.579340164 +KY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,6.99925773 +KY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,10.43341179 +KY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,9065.877912 +KY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.63882 +KY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0605 +KY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,89.01019847 +KY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,82.1975645 +KY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.01385293 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,999.9735322 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,69.20843405 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,22.42069498 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.05870637 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.084633202 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,437.3629295 +KY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.769813 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.05868695 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.15297838 +KY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,73634.6353 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,222.0903083 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.194048308 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,46.91405124 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.11030185 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.95202071 +KY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,7.463903655 +KY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,14.83467301 +KY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.491675572 +KY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.171800758 +KY,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0070099 +KY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.13614275 +KY,PM10 Filterable,2A1_Cement-production,,TON,84.748595 +KY,PM10 Filterable,2A2_Lime-production,,TON,519.7689146 +KY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,30988.93468 +KY,PM10 Filterable,2A6_Other-minerals,,TON,20270.5201 +KY,PM10 Filterable,2B_Chemicals-other,,TON,612.5616866 +KY,PM10 Filterable,2C_Iron-steel-alloy,,TON,733.5558654 +KY,PM10 Filterable,2C3_Aluminum-production,,TON,1549.207253 +KY,PM10 Filterable,2C5_Lead-production,,TON,1.18370261 +KY,PM10 Filterable,2C6_Zinc-production,,TON,0.009905 +KY,PM10 Filterable,2C7_Other-metal,,TON,255.6472712 +KY,PM10 Filterable,2C7a_Copper-production,,TON,9.727356 +KY,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,15.95322784 +KY,PM10 Filterable,2D3d_Coating-application,,TON,71.94153616 +KY,PM10 Filterable,2D3e_Degreasing,,TON,1.164 +KY,PM10 Filterable,2D3h_Printing,,TON,7.93636 +KY,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.608 +KY,PM10 Filterable,2H1_Pulp-and-paper,,TON,822.1725844 +KY,PM10 Filterable,2H2_Food-and-beverage,,TON,487.9340567 +KY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,4274.482093 +KY,PM10 Filterable,2I_Wood-processing,,TON,13.5040362 +KY,PM10 Filterable,3Dc_Other-farm,,TON,54836.66312 +KY,PM10 Filterable,5A_Solid-waste-disposal,,TON,90.4511722 +KY,PM10 Filterable,5C_Incineration,,TON,0.04575016 +KY,PM10 Filterable,5C_Incineration,biomass,TON,87.78409222 +KY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1609.767416 +KY,PM10 Filterable,5C_Open-burning-residential,,TON,3294.61543 +KY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,160.755623 +KY,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.9504376 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,7.224414411 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.32657675 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,13690.78374 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.69324 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.242053 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,163.859513 +KY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,206.3691734 +KY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,5.185312262 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,144.871485 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.52920354 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.061023488 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1038.387246 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,74.7514244 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,51.35465589 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.9112036 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.194813216 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,849.9597504 +KY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,6.35228804 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.070365956 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.397743788 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,746.6858197 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.59420805 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606183 +KY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,110.9547917 +KY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,73634.6353 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,68.2140278 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2353.626452 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,81.6022488 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,395.478079 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,71.97029705 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.483848956 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.559009824 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1349.918675 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.111956707 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1410.940653 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,30.1890993 +KY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.16719558 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,530.9629376 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041574123 +KY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,466.8381681 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,232.2063961 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.59745678 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,69.4164358 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.168659692 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,141.7735974 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,77.71758183 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,33.87002064 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.684339427 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,19.58487144 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,234.3609724 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6388.509997 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,16.44823093 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,17.32016748 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.4909146 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.04668428 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,635.0862168 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,17.72387187 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00238345 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.1385743 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,338.2418187 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.35282056 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,137.3736624 +KY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,63.33723165 +KY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0070099 +KY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,540.0378423 +KY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,87.9664656 +KY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,553.2709078 +KY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,30988.93468 +KY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,20359.05473 +KY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,879.7028916 +KY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,990.9223331 +KY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3048.704432 +KY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,3.171727417 +KY,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.009905 +KY,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,261.3883057 +KY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,23.059956 +KY,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,15.95322784 +KY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,71.94153616 +KY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,1.164 +KY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,8.14636 +KY,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.608 +KY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1043.2639 +KY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1662.031422 +KY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,4277.636781 +KY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,13.5040362 +KY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,54842.17755 +KY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1647.960223 +KY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,133.8498394 +KY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.050769799 +KY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,135.9132614 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1609.767416 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3294.61543 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,160.755623 +KY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.9504376 +KY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.14006728 +KY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.38723039 +KY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4741.694117 +KY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.63882 +KY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0605 +KY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,40.80156349 +KY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,79.94670582 +KY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.97306583 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,851.6852109 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,63.82704674 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,9.660629464 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.06744795 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.021159686 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,337.6007905 +KY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.54289176 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.03845621 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.13563671 +KY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,10669.67017 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,186.1357955 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.064281209 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,18.21263403 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.10041478 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.77962538 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.736148125 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,9.084913291 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.914898132 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.394490135 +KY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0070099 +KY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.11659456 +KY,PM2.5 Filterable,2A1_Cement-production,,TON,60.98042703 +KY,PM2.5 Filterable,2A2_Lime-production,,TON,103.4556232 +KY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3098.400504 +KY,PM2.5 Filterable,2A6_Other-minerals,,TON,3621.736608 +KY,PM2.5 Filterable,2B_Chemicals-other,,TON,450.2651513 +KY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,465.721268 +KY,PM2.5 Filterable,2C3_Aluminum-production,,TON,1051.242017 +KY,PM2.5 Filterable,2C5_Lead-production,,TON,1.02433899 +KY,PM2.5 Filterable,2C6_Zinc-production,,TON,0.0081221 +KY,PM2.5 Filterable,2C7_Other-metal,,TON,112.0772605 +KY,PM2.5 Filterable,2C7a_Copper-production,,TON,8.399226 +KY,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,2.81964158 +KY,PM2.5 Filterable,2D3d_Coating-application,,TON,51.23192362 +KY,PM2.5 Filterable,2D3e_Degreasing,,TON,0.90792 +KY,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,0.07 +KY,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.254235 +KY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,408.1420552 +KY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,79.32521022 +KY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,3230.288907 +KY,PM2.5 Filterable,2I_Wood-processing,,TON,5.9714741 +KY,PM2.5 Filterable,3Dc_Other-farm,,TON,10954.92943 +KY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,35.93920267 +KY,PM2.5 Filterable,5C_Incineration,,TON,0.02576436 +KY,PM2.5 Filterable,5C_Incineration,biomass,TON,22.68463245 +KY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1240.970341 +KY,PM2.5 Filterable,5C_Open-burning-residential,,TON,3017.17439 +KY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,123.9270696 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.365223981 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.289744037 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,9366.593367 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.69324 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.242053 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,116.0307418 +KY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,204.118336 +KY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,5.175247562 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,140.4844964 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.33428849 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.058377499 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,891.2803173 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,69.37537728 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,38.59643429 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.920011989 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.131348844 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,752.3907448 +KY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,6.125368 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.050135226 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.380402118 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,724.2850252 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,27.24462092 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606183 +KY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,98.08006735 +KY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10669.67017 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,48.14154783 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,858.98595 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,62.2995025 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,136.4634893 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,57.01601909 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.418784905 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.206330383 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1114.46687 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.433557036 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1083.867936 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.76245381 +KY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.26519584 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,490.1812195 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038323502 +KY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,452.8330476 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,196.5904461 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.47319353 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,40.67395493 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.158833302 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,109.5604314 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,75.38603682 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.25086387 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.684339427 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,18.99732077 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,215.6204144 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6386.86331 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,14.72047687 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,11.5704026 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.914137585 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.26937504 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,616.0335595 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.30608196 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00238345 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0444135 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,311.1834729 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.95224104 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,126.3838277 +KY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,62.96469317 +KY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0070099 +KY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,540.0295421 +KY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,64.19828741 +KY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,159.0509869 +KY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3103.330144 +KY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3902.735468 +KY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,736.0568669 +KY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,760.8113271 +KY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2563.274271 +KY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,3.012358797 +KY,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.0081221 +KY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,154.0185072 +KY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,21.731826 +KY,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,5.07225308 +KY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,63.09323821 +KY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.90792 +KY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,8.14636 +KY,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.254235 +KY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,643.6850941 +KY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1275.551891 +KY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3401.355265 +KY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.9714741 +KY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10961.30619 +KY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,977.330795 +KY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,79.33781792 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.030849522 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,70.81363606 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1240.970341 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3017.17439 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,123.9270696 +KY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.9504376 +KY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,7.3476955 +KY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,68.72746499 +KY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,247341.2635 +KY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.2861 +KY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,139.2184191 +KY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,208.4983831 +KY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1.1104346 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.755119945 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.83876534 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.392936499 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,63.15054911 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,131.90051 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4219.842539 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,104.7992775 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.75374972 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1129.767686 +KY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.63039273 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.600494 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0294444 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,20.39375495 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.347885385 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000114094 +KY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,242.8991086 +KY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.335114509 +KY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,366.5096924 +KY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.995296456 +KY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,59.9012669 +KY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.192274393 +KY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.555772812 +KY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.028390903 +KY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,31.19888067 +KY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.043843079 +KY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.12968152 +KY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.798408738 +KY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.46790938 +KY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,158.1691237 +KY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005468678 +KY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,173.5763862 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.41898303 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.790435374 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1161.955407 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.794010841 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.15828418 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.67764445 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.243781213 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.120580713 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.535890988 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.728518692 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,114.3527457 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,294.4095798 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,142.8593061 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,98.2827256 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,18.51540862 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.10739384 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.286753996 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000414665 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.042740917 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.844215764 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.274234989 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.749008078 +KY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2.837646095 +KY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,320.1264134 +KY,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1017.718 +KY,Sulfur Dioxide,2A6_Other-minerals,,TON,528.6617717 +KY,Sulfur Dioxide,2B_Chemicals-other,,TON,1662.685253 +KY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,947.0443125 +KY,Sulfur Dioxide,2C3_Aluminum-production,,TON,4626.777929 +KY,Sulfur Dioxide,2C7_Other-metal,,TON,450.257257 +KY,Sulfur Dioxide,2C7a_Copper-production,,TON,0.105 +KY,Sulfur Dioxide,2D3d_Coating-application,,TON,0.106 +KY,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.02 +KY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,586.268507 +KY,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,1.18413474 +KY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,4471.147417 +KY,Sulfur Dioxide,3Dc_Other-farm,,TON,0.00588637 +KY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,213.8503032 +KY,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,63.39866228 +KY,Sulfur Dioxide,5C_Incineration,,TON,0.016190391 +KY,Sulfur Dioxide,5C_Incineration,biomass,TON,3.654051544 +KY,Sulfur Dioxide,5C_Open-burning-residential,,TON,86.700424 +KY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.32251801 +KY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.05905876 +KY,Volatile Organic Compounds,11C_Other-natural,,TON,569713.39 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.387609 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,8.60087635 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1522.20324 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.170625 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0658 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,218.0593797 +KY,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.223999951 +KY,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,4.092424948 +KY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,707.596657 +KY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,3.1913163 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,176.2010005 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,543.6586633 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.3815323 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,62.1907496 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.61396903 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,57.80913402 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.257225829 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.016970834 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1215.223392 +KY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,26.7742079 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0307953 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1649964 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,928.3122383 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,323.0715099 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001239603 +KY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,359.4429219 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,392.1849483 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,33789.91014 +KY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,296.503322 +KY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5916.22127 +KY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,93.26455348 +KY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,76.5735416 +KY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,3.26515121 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3002.401592 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,49.65776814 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1419.728725 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,436.0090754 +KY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,795.639403 +KY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,817.3434377 +KY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.056679363 +KY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,323.1336146 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,24.50384219 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.583717345 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.669514357 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.485445596 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,103.6968589 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,107.9221307 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1502.068777 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.397773726 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,26.66754906 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5563.134853 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,8035.331147 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,4.837714885 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,23.89759575 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.614975305 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,169.7245111 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,663.978592 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,282.9389987 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008037515 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.691839 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10836.61273 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.37821276 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,9502.779992 +KY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,9705.589518 +KY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,377.0827593 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,188.504723 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1752.487994 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,13567.12549 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9206.583115 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,35.0159574 +KY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,20785.20379 +KY,Volatile Organic Compounds,2A1_Cement-production,,TON,1.09 +KY,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.141485 +KY,Volatile Organic Compounds,2A6_Other-minerals,,TON,55.77027611 +KY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2334.992027 +KY,Volatile Organic Compounds,2B_Chemicals-other,,TON,2343.50019 +KY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,155.530905 +KY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1839.408258 +KY,Volatile Organic Compounds,2C5_Lead-production,,TON,0.0000054 +KY,Volatile Organic Compounds,2C7_Other-metal,,TON,383.4024441 +KY,Volatile Organic Compounds,2C7a_Copper-production,,TON,1.28975 +KY,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.0060734 +KY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,18290.42636 +KY,Volatile Organic Compounds,2D3d_Coating-application,,TON,16991.02959 +KY,Volatile Organic Compounds,2D3e_Degreasing,,TON,3257.132885 +KY,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,30.9340026 +KY,Volatile Organic Compounds,2D3h_Printing,,TON,720.2190268 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,216.0338805 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,799.2541064 +KY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1196.100069 +KY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,19389.07171 +KY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,10493.17628 +KY,Volatile Organic Compounds,3Dc_Other-farm,,TON,14.99614 +KY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3813.452106 +KY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,788.8430883 +KY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,58.69601185 +KY,Volatile Organic Compounds,5C_Incineration,,TON,0.183944857 +KY,Volatile Organic Compounds,5C_Incineration,biomass,TON,4.027158067 +KY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1098.429522 +KY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,742.155472 +KY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,181.0571226 +KY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,81.5925887 +KY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,3.41248283 +KY,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,1.466816 +KY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,180.5770811 +LA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.987 +LA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,4.57553 +LA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,229.3611 +LA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,50.2723 +LA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,484.131552 +LA,Ammonia,1A1b_Pet-refining,heavy_oil,TON,0.016819511 +LA,Ammonia,1A1b_Pet-refining,natural_gas,TON,308.1840573 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.386205971 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.52761974 +LA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,157.0117016 +LA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.72517588 +LA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.305249825 +LA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,44.59728244 +LA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,1.002539763 +LA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,925.5644591 +LA,Ammonia,1A2c_Chemicals,natural_gas,TON,23.2042495 +LA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,7.6100137 +LA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.20886723 +LA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.767220885 +LA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1429.382496 +LA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.3188298 +LA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,237.446443 +LA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.022943181 +LA,Ammonia,1A3biii_Road-bus,light_oil,TON,1.201336612 +LA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.138331504 +LA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43.73435725 +LA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.221870291 +LA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,48.2618668 +LA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,12.9407979 +LA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.9685668 +LA,Ammonia,1A3c_Rail,diesel_oil,TON,4.96789777 +LA,Ammonia,1A3c_Rail,light_oil,TON,0.002937376 +LA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,92.80533421 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.607500237 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033599996 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.839385393 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.912221401 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.866110809 +LA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.225078279 +LA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.491461125 +LA,Ammonia,1A4bi_Residential-stationary,biomass,TON,41.89017556 +LA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.041999992 +LA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.040499998 +LA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,455.361591 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.998597473 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.252582351 +LA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02028127 +LA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.688506811 +LA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.060794089 +LA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.549269831 +LA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.00000142 +LA,Ammonia,1B2av_Fugitive-petr-distr,,TON,16.4164 +LA,Ammonia,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0653 +LA,Ammonia,2A6_Other-minerals,,TON,0 +LA,Ammonia,2B_Chemicals-other,,TON,4175.109917 +LA,Ammonia,2C3_Aluminum-production,,TON,0.0208 +LA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.21825 +LA,Ammonia,2D3d_Coating-application,,TON,7.460755 +LA,Ammonia,2D3h_Printing,,TON,2.6461 +LA,Ammonia,2H1_Pulp-and-paper,,TON,492.772775 +LA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,324.46276 +LA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,4629.432853 +LA,Ammonia,3B1a_Cattle-dairy,,TON,973.3412436 +LA,Ammonia,3B1b_Cattle-non-dairy,,TON,4193.47764 +LA,Ammonia,3B2_Manure-sheep,,TON,30.480912 +LA,Ammonia,3B3_Manure-swine,,TON,75.3837084 +LA,Ammonia,3B4_Manure-other,,TON,813.491712 +LA,Ammonia,3B4_Manure-poultry,,TON,9075.763669 +LA,Ammonia,3B4d_Manure-goats,,TON,150.582828 +LA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,22875.73308 +LA,Ammonia,3Dc_Other-farm,,TON,0.001955 +LA,Ammonia,3F_Ag-res-on-field,,TON,2574.135435 +LA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,22.93918 +LA,Ammonia,5C_Incineration,biomass,TON,0.000015 +LA,Ammonia,5D1_Wastewater-domestic,,TON,16.6796762 +LA,Ammonia,5D2_Wastewater-industrial,biomass,TON,46.851033 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,293802.1654 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,192380.7893 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,31444.45436 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,936427.9934 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,17321.67152 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.88005331 +LA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,311212.503 +LA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18441017.79 +LA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,279503.581 +LA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3564448.68 +LA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,195583.6114 +LA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,37477.94107 +LA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5918.8757 +LA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2512581.225 +LA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,62257.10372 +LA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3317788.61 +LA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,384611.0973 +LA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,119655.115 +LA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4903.35416 +LA,Carbon Dioxide,1A3c_Rail,light_oil,TON,227.9675431 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,112100.3171 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,154778.3058 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6817.111864 +LA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,27681.74423 +LA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,258175.1876 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,615066.0303 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,18203.6478 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,12.74063853 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2482.7944 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,173699.2805 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,130630.3634 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,453429.9594 +LA,Carbon Monoxide,11C_Other-natural,,TON,175110.783 +LA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,1896 +LA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,190.17 +LA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,72.571751 +LA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,39011.5 +LA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1066.5754 +LA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0 +LA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,22849.06417 +LA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,12066.40252 +LA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,4.86 +LA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,730.55493 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1408.49062 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16770.69095 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,708.9009663 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,25289.87632 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.431847183 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4939.74997 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,50.97498762 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,393.5695753 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,16.03339298 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,24872.88301 +LA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,2.136 +LA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,13.86 +LA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2724.439516 +LA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.004 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3902.925748 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4095.815792 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.279704791 +LA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6910.403045 +LA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4434.77663 +LA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,348228.7914 +LA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2521.59754 +LA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,75962.868 +LA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,534.0101096 +LA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1943.004668 +LA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,38.3976722 +LA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5963.180496 +LA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2069.772746 +LA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6306.56298 +LA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11713.52296 +LA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4726.79387 +LA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1617.812556 +LA,Carbon Monoxide,1A3c_Rail,light_oil,TON,60.13250697 +LA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,26781.88361 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,199.92308 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.82380917 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.930121805 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1064.894939 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,594.0481561 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,37718.99132 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,160.4254314 +LA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,113.4264658 +LA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,71389.85942 +LA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4769.689842 +LA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.738708 +LA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.206811161 +LA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,867.020763 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2599.02774 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5539.396843 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.401477398 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.001441 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,34895.28605 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,261.1847485 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,59864.58777 +LA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,9118.177118 +LA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,19.35 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0.081880039 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,53.02187396 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.8 +LA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,48249.72841 +LA,Carbon Monoxide,2A6_Other-minerals,,TON,265.10405 +LA,Carbon Monoxide,2B_Chemicals-other,,TON,18135.42738 +LA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,606.614407 +LA,Carbon Monoxide,2C3_Aluminum-production,,TON,116.363 +LA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1305.12503 +LA,Carbon Monoxide,2D3d_Coating-application,,TON,5.7438 +LA,Carbon Monoxide,2D3h_Printing,,TON,1.009 +LA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,6556.75179 +LA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1221.486732 +LA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,542.961002 +LA,Carbon Monoxide,3Dc_Other-farm,,TON,0.104 +LA,Carbon Monoxide,3F_Ag-res-on-field,,TON,70285.8555 +LA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,339.0512845 +LA,Carbon Monoxide,5C_Incineration,,TON,718.2101781 +LA,Carbon Monoxide,5C_Incineration,biomass,TON,5.777608789 +LA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,21435.01382 +LA,Carbon Monoxide,5C_Open-burning-residential,,TON,4573.2216 +LA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,513.756862 +LA,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,10.7 +LA,Methane,1A3bii_Road-LDV,diesel_oil,TON,10.08877432 +LA,Methane,1A3bii_Road-LDV,light_oil,TON,847.581951 +LA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.7950081 +LA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,219.949692 +LA,Methane,1A3biii_Road-bus,diesel_oil,TON,3.666567111 +LA,Methane,1A3biii_Road-bus,light_oil,TON,4.43537841 +LA,Methane,1A3biii_Road-bus,natural_gas,TON,38.0713613 +LA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,222.7789749 +LA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.989337008 +LA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,56.7172919 +LA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,23.66022185 +LA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.8759138 +LA,Nitrogen Oxides,11C_Other-natural,,TON,16831.0627 +LA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,4812 +LA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,189.34 +LA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,134.265136 +LA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,19274.1 +LA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,2789.08 +LA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0 +LA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,21145.15502 +LA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,18420.26924 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,5.8 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,517.46546 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2278.062623 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1055.405913 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,114.2493341 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,12766.88168 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,16.4711127 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,22083.48537 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,112.1367908 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,3842.903844 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,36.29925818 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,54126.49329 +LA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,9.911 +LA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,45.13 +LA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,3376.47878 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,7053.608706 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,67.82957822 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.056862651 +LA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,814.5812454 +LA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1075.940352 +LA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,42278.9101 +LA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1152.93145 +LA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9294.625 +LA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1364.996814 +LA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,159.0970492 +LA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,24.7417965 +LA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18880.98071 +LA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,256.9786963 +LA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18252.16877 +LA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1123.885947 +LA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,213.109997 +LA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,11633.48392 +LA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.847069763 +LA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,142122.6571 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,54.78979404 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,33.56568427 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.113678389 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2173.669805 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1025.272213 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,634.4272589 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,42.62649799 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,251.6518945 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,795.8961169 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,92.10086829 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,9.8593484 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.74452058 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1960.366787 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5280.315071 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,75.50874687 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.312653573 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,24.29637 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,351.9329694 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1466.997649 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3010.706639 +LA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,10465.06468 +LA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,12.05 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0.2278728 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,18.7311442 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.69 +LA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,39481.58893 +LA,Nitrogen Oxides,2A6_Other-minerals,,TON,2155.6498 +LA,Nitrogen Oxides,2B_Chemicals-other,,TON,13832.54927 +LA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,92.381514 +LA,Nitrogen Oxides,2C3_Aluminum-production,,TON,789.775 +LA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,414.98118 +LA,Nitrogen Oxides,2D3d_Coating-application,,TON,8.8688 +LA,Nitrogen Oxides,2D3h_Printing,,TON,1.199 +LA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5311.67757 +LA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,561.5745 +LA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,446.388158 +LA,Nitrogen Oxides,3Dc_Other-farm,,TON,0.218 +LA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3825.907114 +LA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,69.5615 +LA,Nitrogen Oxides,5C_Incineration,,TON,219.3961638 +LA,Nitrogen Oxides,5C_Incineration,biomass,TON,109.890833 +LA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,634.1722524 +LA,Nitrogen Oxides,5C_Open-burning-residential,,TON,322.815696 +LA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,22.8336315 +LA,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,8.93 +LA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.931308932 +LA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,859.614548 +LA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.92060439 +LA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,199.43489 +LA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.453526447 +LA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.599398192 +LA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.319096229 +LA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.426867662 +LA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.795932111 +LA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.50344657 +LA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,20.94175375 +LA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.64563215 +LA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,960.2 +LA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,15.87 +LA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.645272 +LA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2830.1 +LA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,205.595 +LA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +LA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,1251.718591 +LA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,3577.660066 +LA,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.503 +LA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,48.873807 +LA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.015 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,13637.75549 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.566732035 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1509.408254 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,122.1570653 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1526.414991 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.917715888 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2376.153887 +LA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.7153 +LA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,4.49 +LA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,273.597516 +LA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,105935.4409 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,93.87075868 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.08543323 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.276175976 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,112.3724072 +LA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.591561088 +LA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.044671206 +LA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.976961169 +LA,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,273.3039674 +LA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.51 +LA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,15.071714 +LA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,584.0023378 +LA,PM10 Filterable,2A2_Lime-production,,TON,2.2189 +LA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21681.43885 +LA,PM10 Filterable,2A6_Other-minerals,,TON,22374.2394 +LA,PM10 Filterable,2B_Chemicals-other,,TON,3689.731947 +LA,PM10 Filterable,2C_Iron-steel-alloy,,TON,91.63162 +LA,PM10 Filterable,2C3_Aluminum-production,,TON,88.4944 +LA,PM10 Filterable,2C5_Lead-production,,TON,0.002 +LA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,439.389242 +LA,PM10 Filterable,2C7a_Copper-production,,TON,0.4474 +LA,PM10 Filterable,2D3d_Coating-application,,TON,41.370039 +LA,PM10 Filterable,2D3e_Degreasing,,TON,0.099 +LA,PM10 Filterable,2D3h_Printing,,TON,0.092 +LA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.002 +LA,PM10 Filterable,2H1_Pulp-and-paper,,TON,2280.885861 +LA,PM10 Filterable,2H2_Food-and-beverage,,TON,700.3966592 +LA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,3515.42493 +LA,PM10 Filterable,2I_Wood-processing,,TON,0.004 +LA,PM10 Filterable,3Dc_Other-farm,,TON,64731.54854 +LA,PM10 Filterable,3F_Ag-res-on-field,,TON,8797.03 +LA,PM10 Filterable,5A_Solid-waste-disposal,,TON,175.311196 +LA,PM10 Filterable,5C_Incineration,biomass,TON,5.05972 +LA,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,1.72 +LA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2156.186791 +LA,PM10 Filterable,5C_Open-burning-residential,,TON,2044.4994 +LA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,85.0756557 +LA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.833 +LA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,2.591295 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1034.18 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,17.21895 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.170942318 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3096.459 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,228.424 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,2931.749279 +LA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,6520.860613 +LA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,1.2598 +LA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,121.5743934 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,144.1260459 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,21.35790227 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.951012617 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,24634.35255 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,1.566491202 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1604.514519 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,132.703082 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1656.419702 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.088635921 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5113.706493 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.9585501 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,6.0169 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,450.6579178 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,604.8785255 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,27.06588234 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +LA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,161.2500616 +LA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,105935.4409 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,78.58297017 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2557.232927 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,93.157769 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,498.56356 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,108.7404546 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.620657365 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.743187288 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1044.268764 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.085730687 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1461.002329 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,39.02647982 +LA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.5683912 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,370.1103608 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.031650635 +LA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5855.162988 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,87.04694057 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.779398425 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.330251955 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,201.9510632 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,98.3662812 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,42.86969901 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.854925995 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,19.17848789 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,228.2057151 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,726.0871145 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.30362492 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.09844214 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.34009498 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,459.8393911 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,45.3720876 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001610573 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.4400134 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,393.2657482 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.36196771 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,302.0836899 +LA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,476.2957615 +LA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.51 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,15.071714 +LA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1082.875903 +LA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,2.43740438 +LA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21681.43885 +LA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,22418.1797 +LA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,4894.742014 +LA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,134.886826 +LA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,90.62102 +LA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.002 +LA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,751.9432853 +LA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.4474 +LA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,41.370039 +LA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.099 +LA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.092 +LA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.002 +LA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3461.460189 +LA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2081.715752 +LA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3515.42493 +LA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.004 +LA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,64731.80775 +LA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,8797.804566 +LA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,203.1653254 +LA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.6408972 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,2.26695 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2156.186791 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2044.4994 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,85.0756557 +LA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,1.11287534 +LA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,2.591295 +LA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,392.7 +LA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,6.19 +LA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.660112675 +LA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1445.2 +LA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,203.8033 +LA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +LA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1248.034077 +LA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,3044.378851 +LA,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.49589357 +LA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,48.6936942 +LA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.1289 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,10869.9293 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.553026056 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1384.881514 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,14.25324719 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,961.9656765 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.976044963 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2165.194182 +LA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.18223 +LA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +LA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,223.4227684 +LA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13894.8798 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,75.76460385 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.907094729 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.252949607 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,110.8747572 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.454625693 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.034330673 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.187329409 +LA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,268.9051398 +LA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.49 +LA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,6.173459 +LA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,577.0105798 +LA,PM2.5 Filterable,2A2_Lime-production,,TON,0.66271 +LA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2168.143885 +LA,PM2.5 Filterable,2A6_Other-minerals,,TON,4966.182341 +LA,PM2.5 Filterable,2B_Chemicals-other,,TON,3016.692543 +LA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,57.089294 +LA,PM2.5 Filterable,2C3_Aluminum-production,,TON,33.3932 +LA,PM2.5 Filterable,2C5_Lead-production,,TON,0.002 +LA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,163.5092254 +LA,PM2.5 Filterable,2C7a_Copper-production,,TON,0.1367 +LA,PM2.5 Filterable,2D3d_Coating-application,,TON,15.8845306 +LA,PM2.5 Filterable,2D3e_Degreasing,,TON,0.0897907 +LA,PM2.5 Filterable,2D3h_Printing,,TON,0.0772872 +LA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1620.592832 +LA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,240.0080052 +LA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1863.95012 +LA,PM2.5 Filterable,2I_Wood-processing,,TON,0.004 +LA,PM2.5 Filterable,3Dc_Other-farm,,TON,12928.40655 +LA,PM2.5 Filterable,3F_Ag-res-on-field,,TON,8277.03 +LA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,46.91725116 +LA,PM2.5 Filterable,5C_Incineration,biomass,TON,3.60172 +LA,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.979747 +LA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1662.202897 +LA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1872.3309 +LA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,65.5851309 +LA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.683 +LA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.76 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,466.683 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,7.53895 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.207999093 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1711.559 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,226.632301 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,2928.064763 +LA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,5988.958038 +LA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,1.25269357 +LA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,121.3942806 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,138.9286436 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.89064691 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.950004125 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,21866.57564 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0.552900458 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1480.668712 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,24.835703 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1091.987955 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.099865 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4948.296996 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.4254801 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,1.526903 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,416.2001696 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,586.7320854 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.91697485 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +LA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,134.5950654 +LA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13894.8798 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,51.69319627 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,712.392358 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,67.157821 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,130.470246 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,84.42275931 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.457073017 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.263728826 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,827.0208735 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.744296309 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1082.032325 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.71829832 +LA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.3666946 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,342.565669 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02917632 +LA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5584.30174 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,70.23442409 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.591616194 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.307041442 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,199.1535953 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,95.41530389 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,39.55455417 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.854925995 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,18.60313253 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,209.9573877 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,724.11095 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.16669035 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.088101555 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.55046343 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,446.0443522 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,41.74235869 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001610573 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3368122 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,361.8054907 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.48112822 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,277.9168762 +LA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,471.9823896 +LA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.51 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,6.183459 +LA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1076.068243 +LA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.88121438 +LA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2168.143885 +LA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,5015.642648 +LA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,4254.266333 +LA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,100.3445 +LA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,35.51982 +LA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.002 +LA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,518.6535557 +LA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.1367 +LA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,35.2265306 +LA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0897907 +LA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.0772872 +LA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.002 +LA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2815.327437 +LA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1621.555613 +LA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1865.40912 +LA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.004 +LA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,12928.66576 +LA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,8277.802406 +LA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,74.77137556 +LA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.1828972 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,1.52669 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1662.202897 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1872.3309 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,65.5851309 +LA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.96287544 +LA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,2.491295 +LA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,20750 +LA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,55.284 +LA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,13.087138 +LA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,65536 +LA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,6517.16 +LA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0 +LA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,192.791604 +LA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,16428.05891 +LA,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.0363 +LA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,536.427721 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.459961007 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.918429845 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.711670631 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2313.405643 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,10.18268163 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1489.313783 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,340.3416719 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,30589.20343 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,56.00114835 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,528.3179324 +LA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.6546 +LA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,4.65 +LA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,3386.079556 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,17.47317782 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.318013187 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.55707E-05 +LA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,111.9476553 +LA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.664312255 +LA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,366.152467 +LA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.40172831 +LA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,70.773335 +LA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.677356502 +LA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.744137307 +LA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.031337592 +LA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,21.57684696 +LA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.236135524 +LA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.3616972 +LA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.636583477 +LA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.37579062 +LA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,111.3113712 +LA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004164912 +LA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,15460.41438 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.463506564 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.436519812 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.919769811 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,68.32348112 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.123346023 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.839649893 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.150732196 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.52370754 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.704945301 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,11.31928596 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,23.33380135 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.762032425 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.93088752 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.53869353 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.331424981 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000280209 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.046873776 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.150396131 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.801989063 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.244037401 +LA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,234.302866 +LA,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.06 +LA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.500107 +LA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,453.4802747 +LA,Sulfur Dioxide,2A6_Other-minerals,,TON,5908.60918 +LA,Sulfur Dioxide,2B_Chemicals-other,,TON,53459.36871 +LA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,48.205753 +LA,Sulfur Dioxide,2C3_Aluminum-production,,TON,1.4058 +LA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,570.720866 +LA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.18285 +LA,Sulfur Dioxide,2D3h_Printing,,TON,0.007 +LA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2265.130464 +LA,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,1.925949 +LA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,185.381222 +LA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0004 +LA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,639.4938111 +LA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,18.708513 +LA,Sulfur Dioxide,5C_Incineration,biomass,TON,23.37710431 +LA,Sulfur Dioxide,5C_Open-burning-residential,,TON,53.802629 +LA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.93369511 +LA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.02 +LA,Volatile Organic Compounds,11C_Other-natural,,TON,1285547.52 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,79.42702592 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.621789041 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,18.17114772 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,333.9013655 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,61.32753594 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,792.1720208 +LA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,987.8443148 +LA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,9174.863391 +LA,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,19.381012 +LA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,146.917224 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,181.9366494 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,531.3140497 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.779510384 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,930.9453531 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.06314275 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,76.65444903 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.509902626 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,29.27630364 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,19.19236884 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3919.127142 +LA,Volatile Organic Compounds,1A2a_Ind-Comb,Other_Fuel,TON,7.6401 +LA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.61729 +LA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,3.42 +LA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,535.981487 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,717.3999985 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,309.5751473 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000929704 +LA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,327.2620975 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,404.404353 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,31284.51977 +LA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,309.661345 +LA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6038.53382 +LA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,139.404058 +LA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,117.694364 +LA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.50169911 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1914.575094 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,69.88563876 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1449.54431 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,582.0436777 +LA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,919.68086 +LA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,585.5284514 +LA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.615493386 +LA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3516.084178 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,19.48050695 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.334092419 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.812893468 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,207.5178759 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,136.594785 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2083.618282 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.501528604 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,26.09515991 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5970.836578 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,799.1805062 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.38341928 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.028953571 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,109.3663516 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,478.6040039 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,510.9599604 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00543267 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.239312 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13071.10826 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,66.79996924 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,22960.65402 +LA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,50875.93585 +LA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,1736.890973 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,478.9128368 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1204.098371 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,35049.7495 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8585.748985 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,409.75491 +LA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,64939.06368 +LA,Volatile Organic Compounds,2A6_Other-minerals,,TON,46.33030152 +LA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2114.930078 +LA,Volatile Organic Compounds,2B_Chemicals-other,,TON,14938.7223 +LA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,45.355227 +LA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,11.3624 +LA,Volatile Organic Compounds,2C5_Lead-production,,TON,0.2 +LA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,674.673065 +LA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,33037.86595 +LA,Volatile Organic Compounds,2D3d_Coating-application,,TON,14468.69128 +LA,Volatile Organic Compounds,2D3e_Degreasing,,TON,2620.156462 +LA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,12.97499995 +LA,Volatile Organic Compounds,2D3h_Printing,,TON,522.94134 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,17086.20803 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4796.578197 +LA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,10895.14053 +LA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,746.0862953 +LA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,6705.161668 +LA,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.003 +LA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,7097.447148 +LA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,233.3013166 +LA,Volatile Organic Compounds,5C_Incineration,,TON,209.8632666 +LA,Volatile Organic Compounds,5C_Incineration,biomass,TON,92.98732277 +LA,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,1.03 +LA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1471.278953 +LA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,460.55066 +LA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,95.8197255 +LA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,85.953858 +LA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,803.884449 +LA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.2166 +LA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,11.8201 +MA,Ammonia,1A1a_Public-Electricity,biomass,TON,1.7198 +MA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,7.4241 +MA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,36.55 +MA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,1.0196 +MA,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.0332 +MA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,185.536 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.762522126 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.195150637 +MA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,32.7839822 +MA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.04974721 +MA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.01912979 +MA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.382614871 +MA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.420244846 +MA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,95.79588109 +MA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.052 +MA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0131 +MA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +MA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,9.631753878 +MA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.264436275 +MA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,6.9919431 +MA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1613.943562 +MA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.07336193 +MA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,195.318584 +MA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.27255884 +MA,Ammonia,1A3biii_Road-bus,light_oil,TON,0.500339652 +MA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.109322223 +MA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25.25133858 +MA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.379822284 +MA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.29645096 +MA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.588295743 +MA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.357341 +MA,Ammonia,1A3c_Rail,diesel_oil,TON,2.169895305 +MA,Ammonia,1A3c_Rail,light_oil,TON,0.000396298 +MA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.454220758 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,8.570142416 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,116.7031777 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.78199967 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.050716846 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.70156312 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.443518574 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.952894781 +MA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.537764517 +MA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.78973223 +MA,Ammonia,1A4bi_Residential-stationary,biomass,TON,576.9922721 +MA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,314.84 +MA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.03 +MA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1256.22 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.288251382 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.020710252 +MA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.029034933 +MA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.9792974 +MA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.714320586 +MA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.4101882 +MA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Ammonia,2A6_Other-minerals,,TON,0 +MA,Ammonia,2B_Chemicals-other,,TON,17.449 +MA,Ammonia,2C_Iron-steel-alloy,,TON,0.0315 +MA,Ammonia,2C3_Aluminum-production,,TON,0 +MA,Ammonia,2C6_Zinc-production,,TON,0.017 +MA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.1957 +MA,Ammonia,2D3d_Coating-application,,TON,13.7071 +MA,Ammonia,2D3e_Degreasing,,TON,0 +MA,Ammonia,2D3h_Printing,,TON,3.45 +MA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,11.0901 +MA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,13.0666 +MA,Ammonia,3B1a_Cattle-dairy,,TON,701.3087506 +MA,Ammonia,3B1b_Cattle-non-dairy,,TON,86.54416238 +MA,Ammonia,3B2_Manure-sheep,,TON,41.163012 +MA,Ammonia,3B3_Manure-swine,,TON,69.550206 +MA,Ammonia,3B4_Manure-other,,TON,276.758328 +MA,Ammonia,3B4_Manure-poultry,,TON,190.3768759 +MA,Ammonia,3B4d_Manure-goats,,TON,57.360996 +MA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,792.2667873 +MA,Ammonia,5A_Solid-waste-disposal,,TON,0 +MA,Ammonia,5C_Incineration,biomass,TON,262.346 +MA,Ammonia,5D1_Wastewater-domestic,,TON,17.9258062 +MA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.44 +MA,Ammonia,5E_Other-waste,Other_Fuel,TON,0.0019 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,340125.179 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,361730.0064 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19718.25404 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1185207.822 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,21937.59531 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.1734052 +MA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,299470.7372 +MA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21473048.4 +MA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,242096.009 +MA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3120581.52 +MA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,93946.81815 +MA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,17049.30177 +MA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4902.57107 +MA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1434783.311 +MA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12071.2205 +MA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1316694.94 +MA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,120631.5619 +MA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,103172.065 +MA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,665.67311 +MA,Carbon Dioxide,1A3c_Rail,light_oil,TON,30.72185866 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,177389.9126 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,244915.6227 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10812.71064 +MA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,66138.55692 +MA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,500136.4267 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,35474.71481 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1472.082586 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.623621867 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3554.3957 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,133650.3411 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,87964.2226 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,305333.431 +MA,Carbon Monoxide,11C_Other-natural,,TON,13313.0126 +MA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,127.3776 +MA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,77.598 +MA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1081.55 +MA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,135.0834 +MA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.1872 +MA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,733.9556 +MA,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,19.51 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2198.561531 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16683.34662 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1019.869092 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1374.29987 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,231.6925844 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,159.0251161 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,29.34244279 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.064414276 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1879.148273 +MA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +MA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,1.1754 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,26.2389 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,3.23 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,7.2357 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4939.748477 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4923.349643 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.37293939 +MA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8513.898408 +MA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3123.6844 +MA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,257178.128 +MA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1789.12334 +MA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,43808.362 +MA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,452.9772283 +MA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1062.985569 +MA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,40.2379033 +MA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4317.914476 +MA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,528.9619201 +MA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3178.21014 +MA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7605.336836 +MA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4529.34573 +MA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,554.5698119 +MA,Carbon Monoxide,1A3c_Rail,light_oil,TON,7.629336762 +MA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1536.102776 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,246.758059 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,781.6602283 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,80.90092258 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.03201116 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3876.490813 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,940.0160956 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,56218.82568 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,254.1841763 +MA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,270.1315743 +MA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,132132.5259 +MA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,70644.29765 +MA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1574.23 +MA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,10.13 +MA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2643.48 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,139.209699 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,450.9152676 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.068699596 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.366836 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,23625.66342 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,175.8765398 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,38886.301 +MA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +MA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,16.55 +MA,Carbon Monoxide,2A6_Other-minerals,,TON,200.9864 +MA,Carbon Monoxide,2B_Chemicals-other,,TON,0 +MA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0.0787 +MA,Carbon Monoxide,2C3_Aluminum-production,,TON,0 +MA,Carbon Monoxide,2C6_Zinc-production,,TON,0.461 +MA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.049 +MA,Carbon Monoxide,2D3c_Asphalt-roofing,heavy_oil,TON,34.64 +MA,Carbon Monoxide,2D3d_Coating-application,,TON,4.986 +MA,Carbon Monoxide,2D3e_Degreasing,,TON,0.1168 +MA,Carbon Monoxide,2D3h_Printing,,TON,0.29 +MA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.61 +MA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +MA,Carbon Monoxide,2H2_Food-and-beverage,,TON,896.195675 +MA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.762 +MA,Carbon Monoxide,3F_Ag-res-on-field,,TON,81.33129 +MA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,266.9479405 +MA,Carbon Monoxide,5C_Incineration,,TON,308.3950332 +MA,Carbon Monoxide,5C_Incineration,biomass,TON,282.0732554 +MA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2333.255 +MA,Carbon Monoxide,5C_Open-burning-residential,,TON,549.2902 +MA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,72.657516 +MA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.1398 +MA,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.3255 +MA,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.0002 +MA,Methane,1A3bii_Road-LDV,diesel_oil,TON,13.45574005 +MA,Methane,1A3bii_Road-LDV,light_oil,TON,774.777513 +MA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.2280357 +MA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,163.511581 +MA,Methane,1A3biii_Road-bus,diesel_oil,TON,4.649149227 +MA,Methane,1A3biii_Road-bus,light_oil,TON,1.744566109 +MA,Methane,1A3biii_Road-bus,natural_gas,TON,37.6876999 +MA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,111.3453205 +MA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.894911647 +MA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,22.587595 +MA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.34746681 +MA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.7588177 +MA,Nitrogen Oxides,11C_Other-natural,,TON,835.75503 +MA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,146.7467 +MA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,282.0105 +MA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,3191.38 +MA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,92.0494 +MA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,11.618 +MA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1555.3587 +MA,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,5.13 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2380.11903 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2238.644678 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,149.0044714 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,553.0033354 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,908.0282766 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,427.4469883 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,226.2189295 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,3.329909603 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2937.025961 +MA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +MA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,4.6156 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,17.3011 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,2.42 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.3172 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8928.002701 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,97.48737605 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075816802 +MA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2110.141984 +MA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,979.971284 +MA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,30044.1961 +MA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1000.87895 +MA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5537.2197 +MA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,662.6612403 +MA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,74.01901191 +MA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,22.25308643 +MA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13237.20031 +MA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,55.63743283 +MA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8465.09671 +MA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,541.8164733 +MA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,197.913233 +MA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4290.497317 +MA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.136332669 +MA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9862.926198 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,95.05763607 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2931.625038 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,815.179344 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,13.28030501 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4157.001276 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1622.412686 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1162.780866 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,67.5162998 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,601.8197695 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1752.34072 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1080.313256 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,5667.17 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,36.55 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6370.45 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,287.4022948 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.560088273 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01533762 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.780243 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,283.0091511 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,987.8491897 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2200.42756 +MA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +MA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,23.36 +MA,Nitrogen Oxides,2A6_Other-minerals,,TON,318.646 +MA,Nitrogen Oxides,2B_Chemicals-other,,TON,0 +MA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.2864 +MA,Nitrogen Oxides,2C3_Aluminum-production,,TON,0 +MA,Nitrogen Oxides,2C6_Zinc-production,,TON,0.544 +MA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,43.7896 +MA,Nitrogen Oxides,2D3c_Asphalt-roofing,heavy_oil,TON,10.41 +MA,Nitrogen Oxides,2D3d_Coating-application,,TON,5.0061 +MA,Nitrogen Oxides,2D3e_Degreasing,,TON,0.0371 +MA,Nitrogen Oxides,2D3h_Printing,,TON,1.45 +MA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,2.14 +MA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0.83 +MA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2.0511 +MA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2.4776132 +MA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,71.9382 +MA,Nitrogen Oxides,5C_Incineration,,TON,1258.702573 +MA,Nitrogen Oxides,5C_Incineration,biomass,TON,3614.277804 +MA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,69.03114 +MA,Nitrogen Oxides,5C_Open-burning-residential,,TON,38.77335 +MA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.2292216 +MA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.6077 +MA,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.3875 +MA,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,0.0003 +MA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.925885063 +MA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,883.234891 +MA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.85090442 +MA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,158.67338 +MA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.338424328 +MA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.13705385 +MA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.191680862 +MA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.755967792 +MA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.722392207 +MA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.65954387 +MA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,17.05079072 +MA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.71376127 +MA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,8.1799 +MA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,25.3316 +MA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,96.2331832 +MA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.4751 +MA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.264 +MA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,189.6897 +MA,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,10.8301 +MA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.0001 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1053.397734 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.44602349 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,13.0598085 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,41.87524281 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.175635366 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,80.32875561 +MA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.0625 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2525 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,2.11 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.8089 +MA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,122946.6358 +MA,PM10 Filterable,1A3c_Rail,diesel_oil,TON,85.98 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,217.9267316 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,210.628643 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,88.85549807 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.559239991 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,114.7660668 +MA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,340.03 +MA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.18 +MA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.27 +MA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +MA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM10 Filterable,2A1_Cement-production,,TON,12.287 +MA,PM10 Filterable,2A2_Lime-production,,TON,4.5334 +MA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,10311.80182 +MA,PM10 Filterable,2A6_Other-minerals,,TON,2249.7919 +MA,PM10 Filterable,2B_Chemicals-other,,TON,14.28 +MA,PM10 Filterable,2C_Iron-steel-alloy,,TON,7.2705 +MA,PM10 Filterable,2C3_Aluminum-production,,TON,0.8713 +MA,PM10 Filterable,2C6_Zinc-production,,TON,0.0165 +MA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,14.3313 +MA,PM10 Filterable,2C7a_Copper-production,,TON,0 +MA,PM10 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,10.86 +MA,PM10 Filterable,2D3d_Coating-application,,TON,15.9563 +MA,PM10 Filterable,2D3e_Degreasing,,TON,0.0834 +MA,PM10 Filterable,2D3h_Printing,,TON,0.0107 +MA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.1801 +MA,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,18.9512 +MA,PM10 Filterable,2H2_Food-and-beverage,,TON,192.6589515 +MA,PM10 Filterable,2H3_Other-industrial-processes,,TON,53.9327 +MA,PM10 Filterable,2I_Wood-processing,,TON,0.08 +MA,PM10 Filterable,3Dc_Other-farm,,TON,1008.27012 +MA,PM10 Filterable,5A_Solid-waste-disposal,,TON,61.5052 +MA,PM10 Filterable,5C_Incineration,,TON,12.1065 +MA,PM10 Filterable,5C_Incineration,biomass,TON,31.8172 +MA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,234.7064 +MA,PM10 Filterable,5C_Open-burning-residential,,TON,245.565 +MA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,12.031735 +MA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.068 +MA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,5.1478 +MA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.0074 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,8.569647 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,27.48490114 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,376.02986 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,12.2624507 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.279932917 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,349.95364 +MA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,10.8301 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,194.4344905 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,37.86160254 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.45534679 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1066.639732 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,120.0630269 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,14.13671929 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,49.16348805 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.193709725 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,190.2932833 +MA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.10058 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.30274814 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,2.11 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.10314 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,765.5565132 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,34.25309971 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606184 +MA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,167.731052 +MA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,122946.6358 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,78.1049833 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3458.1593 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,83.135112 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,517.541979 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,54.61683457 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.787955748 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.648063009 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,908.5266819 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.142943219 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,726.955845 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,17.02896489 +MA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.7337634 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,136.0166974 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00426719 +MA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,557.7225116 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,196.8960492 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,397.0052101 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,102.6936087 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.062420015 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,217.8410865 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,155.654224 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,67.83252025 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.356150854 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,45.65766693 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,488.0394533 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10306.3991 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,749.33 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.92 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,34.43 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.71592595 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.796059 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.88028E-05 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.9258626 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,197.1424108 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.77173952 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,203.4188535 +MA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +MA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,13.205223 +MA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,7.92206665 +MA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,10311.80182 +MA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2266.154347 +MA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,14.49179014 +MA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,11.28612758 +MA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.9481 +MA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.0759 +MA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,18.62431541 +MA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0 +MA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,10.86 +MA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,15.9563 +MA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0834 +MA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.0107 +MA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.1801 +MA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,22.5871 +MA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2372.283226 +MA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,55.30036594 +MA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.08 +MA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1008.27012 +MA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,14.470791 +MA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,99.767098 +MA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,13.60708026 +MA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,35.56286522 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,234.7064 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,245.565 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,12.031735 +MA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0748748 +MA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,6.1884 +MA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.01924 +MA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,3.1887 +MA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,24.384 +MA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,75.8357333 +MA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,9.5882 +MA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.263 +MA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,189.2181 +MA,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,10.83008298 +MA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.0001 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,906.9159988 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.74462864 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,13.06527167 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,24.84549058 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.052381504 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,71.95338307 +MA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.04791875 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2182468 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.504565 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.77801525 +MA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13899.34092 +MA,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,78.95 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,201.3920079 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,178.9428937 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,34.76582823 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.084643822 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,93.21832033 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,261.33 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.68 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.28 +MA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +MA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM2.5 Filterable,2A1_Cement-production,,TON,4.333059 +MA,PM2.5 Filterable,2A2_Lime-production,,TON,2.977021047 +MA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1031.180182 +MA,PM2.5 Filterable,2A6_Other-minerals,,TON,412.8580304 +MA,PM2.5 Filterable,2B_Chemicals-other,,TON,10.1100253 +MA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,7.140975847 +MA,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.47056426 +MA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.01 +MA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,6.716669027 +MA,PM2.5 Filterable,2C7a_Copper-production,,TON,0 +MA,PM2.5 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,2.0115 +MA,PM2.5 Filterable,2D3d_Coating-application,,TON,14.60682844 +MA,PM2.5 Filterable,2D3e_Degreasing,,TON,0.0605745 +MA,PM2.5 Filterable,2D3h_Printing,,TON,0.00887873 +MA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.052947 +MA,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,8.896170514 +MA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,15.61472829 +MA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,44.22474896 +MA,PM2.5 Filterable,2I_Wood-processing,,TON,0.04 +MA,PM2.5 Filterable,3Dc_Other-farm,,TON,201.107784 +MA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,29.1650372 +MA,PM2.5 Filterable,5C_Incineration,,TON,10.35244 +MA,PM2.5 Filterable,5C_Incineration,biomass,TON,29.3501 +MA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,180.9348 +MA,PM2.5 Filterable,5C_Open-burning-residential,,TON,224.8858 +MA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,9.27531 +MA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.068 +MA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.06 +MA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.0074 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.57844702 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,26.53730136 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,355.63236 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,11.3755527 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.279932917 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,349.48204 +MA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,10.83008298 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,188.5602638 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,37.65279515 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.453262861 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,922.7447756 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,100.3859577 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,14.14671542 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,32.09581484 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.07012093 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,181.1862936 +MA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.08599875 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.26849495 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.504565 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.07225125 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,742.5897338 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,31.53366669 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606184 +MA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,146.5058388 +MA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13899.34092 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,49.24475662 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1054.341433 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,58.1002344 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,147.100373 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,42.3378619 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.244715911 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.213616782 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,703.7522524 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.138185869 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,542.121107 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.667027362 +MA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.4966768 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,125.2060723 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003933347 +MA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,523.2086282 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,173.599974 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,365.4101327 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,54.39991908 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.977536758 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,197.0923832 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,150.9845851 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,62.58695953 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.356150854 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,44.28794638 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,449.0153629 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10300.30728 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,670.61 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.42 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,28.43 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.97445336 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.412377299 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.88028E-05 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.7780829 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,181.3724902 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.17858316 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,187.1453496 +MA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +MA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,5.251282 +MA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,6.3656879 +MA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1031.180182 +MA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,429.7357461 +MA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,10.32181543 +MA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,11.15660343 +MA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.54736466 +MA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.0694 +MA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,11.01026553 +MA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0 +MA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,2.0115 +MA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,14.63682844 +MA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0709745 +MA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.00887873 +MA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.052947 +MA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,12.53206051 +MA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2195.239715 +MA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,45.9009146 +MA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.04 +MA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,201.107784 +MA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,9.44529 +MA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,67.426932 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,11.83969454 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,33.10909104 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,180.9348 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,224.8858 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.27531 +MA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0748748 +MA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,6.1884 +MA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.01924 +MA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,6.7237 +MA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,83.9764 +MA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,22210.88 +MA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,431.4462 +MA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.1053 +MA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,134.6372 +MA,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,23.88 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.428404416 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.475359692 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.468572047 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,77.85737649 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1139.850811 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,806.6173654 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,627.4315177 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.349133958 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21.4406953 +MA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +MA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0219 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,14.51807 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,1.94 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0647 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,22.11525278 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.402765981 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000114094 +MA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,251.3728117 +MA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.574003722 +MA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,427.940122 +MA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.0902003 +MA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.1906616 +MA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.809114316 +MA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.339779017 +MA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.025956532 +MA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.42060865 +MA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.24056946 +MA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.35876303 +MA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.404089416 +MA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.05613492 +MA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,229.8667867 +MA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000561242 +MA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3218.935353 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,8.440099078 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4932.310559 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1466.222636 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,82.83021907 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,62.2982884 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.360026349 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.493357133 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.23907824 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.251071237 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.113536803 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,208.6967712 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,13412.34 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,89.47 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,39.77 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.663780069 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.026788665 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.37154E-05 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.067105427 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.427960027 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.886810816 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.5514224 +MA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +MA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +MA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1.38 +MA,Sulfur Dioxide,2A6_Other-minerals,,TON,202.899 +MA,Sulfur Dioxide,2B_Chemicals-other,,TON,0 +MA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.0196 +MA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +MA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.0033 +MA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.8914 +MA,Sulfur Dioxide,2D3c_Asphalt-roofing,heavy_oil,TON,7.7 +MA,Sulfur Dioxide,2D3d_Coating-application,,TON,4.986 +MA,Sulfur Dioxide,2D3e_Degreasing,,TON,0.0008 +MA,Sulfur Dioxide,2D3h_Printing,,TON,0 +MA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.22 +MA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.83508224 +MA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,86.0286 +MA,Sulfur Dioxide,5C_Incineration,,TON,448.3760949 +MA,Sulfur Dioxide,5C_Incineration,biomass,TON,397.8896437 +MA,Sulfur Dioxide,5C_Open-burning-residential,,TON,6.462235 +MA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.69774231 +MA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0214 +MA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,2.02 +MA,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.0023 +MA,Volatile Organic Compounds,11C_Other-natural,,TON,94910.978 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,15.6968 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,73.8658 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,50.88 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.4399 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0729 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,175.2726 +MA,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,41.6356 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,226.1888503 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,688.889203 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.904371846 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,38.69394437 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,31.3350957 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.798605724 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.745989479 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.742092917 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,357.2148718 +MA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +MA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.1187 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2725 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,2.82 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.3874 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,907.9852537 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,360.1866718 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001239605 +MA,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,161.58 +MA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,480.4861534 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,371.544325 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,25614.6751 +MA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,286.952903 +MA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3715.7913 +MA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,73.93832869 +MA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,51.26196761 +MA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.18260968 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1481.668135 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,25.98077824 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,736.536428 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,376.0131769 +MA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,828.75059 +MA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,205.752924 +MA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.27957294 +MA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,275.4698353 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,8.084673172 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,101.0982405 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,24.48889694 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.058750338 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,360.2351361 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,216.1468905 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2794.281847 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.794290933 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,62.19732637 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9987.762558 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,13094.78061 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,224.49 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.42 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,363.41 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.57104874 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,44.96344857 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00026648 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.9342344 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6641.878505 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,44.9817846 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,12778.92968 +MA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,43.3609 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,884.7836065 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,474.6746827 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3471.513289 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4122.361961 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.444 +MA,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.26 +MA,Volatile Organic Compounds,2A6_Other-minerals,,TON,29.76899447 +MA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1226.435246 +MA,Volatile Organic Compounds,2B_Chemicals-other,,TON,235.2299 +MA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,15.6751 +MA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +MA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.03 +MA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,86.5376 +MA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,Other_Fuel,TON,19499.1 +MA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,536.75 +MA,Volatile Organic Compounds,2D3d_Coating-application,,TON,21162.98273 +MA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4665.301 +MA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,14.67 +MA,Volatile Organic Compounds,2D3h_Printing,,TON,1468.154985 +MA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,436.6734 +MA,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,37.4422 +MA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1350.630935 +MA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,281.053 +MA,Volatile Organic Compounds,3Dc_Other-farm,,TON,5.4 +MA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,5.0731166 +MA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,1139.2227 +MA,Volatile Organic Compounds,5C_Incineration,,TON,5.706144433 +MA,Volatile Organic Compounds,5C_Incineration,biomass,TON,43.59434282 +MA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,160.1523 +MA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,55.31674 +MA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,13.551205 +MA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,94.077465 +MA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,21.0993 +MA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,10.5713 +MA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.4916 +MD,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,9.972742 +MD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,76.077941 +MD,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,1.155028 +MD,Ammonia,1A1a_Public-Electricity,natural_gas,TON,17.065613 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.588395259 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.08704567 +MD,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,31.1640095 +MD,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.352966265 +MD,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.96024386 +MD,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.059040891 +MD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,10.86645888 +MD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.297592115 +MD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.77116327 +MD,Ammonia,1A3bii_Road-LDV,light_oil,TON,1739.07042 +MD,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.5749813 +MD,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,203.851037 +MD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.90842272 +MD,Ammonia,1A3biii_Road-bus,light_oil,TON,0.573745188 +MD,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.22862789 +MD,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.2968314 +MD,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.055954049 +MD,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,39.2234811 +MD,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.540147047 +MD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.71306 +MD,Ammonia,1A3c_Rail,diesel_oil,TON,2.030201683 +MD,Ammonia,1A3c_Rail,light_oil,TON,0.001272522 +MD,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.593323405 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.766413 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.103599943 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.59899985 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.04019586 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.920973172 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.883931079 +MD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.787053166 +MD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.24015003 +MD,Ammonia,1A4bi_Residential-stationary,biomass,TON,192.0216926 +MD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,68.812998 +MD,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,1.986059153 +MD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.0716 +MD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,776.0910544 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.697737838 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.05763878 +MD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02465204 +MD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.133427832 +MD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.698188029 +MD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.2293001 +MD,Ammonia,2A1_Cement-production,,TON,40.9999 +MD,Ammonia,2A6_Other-minerals,Other_Fuel,TON,143.6397 +MD,Ammonia,2B_Chemicals-other,,TON,2.2409525 +MD,Ammonia,2D3h_Printing,,TON,0.2686 +MD,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.273705 +MD,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,129.148701 +MD,Ammonia,3B1a_Cattle-dairy,,TON,2652.084547 +MD,Ammonia,3B1b_Cattle-non-dairy,,TON,528.1447218 +MD,Ammonia,3B2_Manure-sheep,,TON,77.39424 +MD,Ammonia,3B3_Manure-swine,,TON,232.83909 +MD,Ammonia,3B4_Manure-other,,TON,413.2788 +MD,Ammonia,3B4_Manure-poultry,,TON,15865.31319 +MD,Ammonia,3B4d_Manure-goats,,TON,117.711 +MD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,2827.139751 +MD,Ammonia,5C_Incineration,biomass,TON,1.82089 +MD,Ammonia,5D1_Wastewater-domestic,,TON,18.0136159 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,195561.3915 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,158664.6804 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8716.518335 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1337128.425 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,24684.43114 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.4667508 +MD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,305069.783 +MD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21636493.3 +MD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,239386.21 +MD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3041908.3 +MD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,228921.0756 +MD,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,16351.5917 +MD,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,9239.4775 +MD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2009594.105 +MD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,26748.74073 +MD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2708099.65 +MD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,180874.3173 +MD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,118326.534 +MD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2134.49716 +MD,Carbon Dioxide,1A3c_Rail,light_oil,TON,98.77178847 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,113175.808 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,156260.5317 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6841.254083 +MD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,96798.06363 +MD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,607364.0187 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,208875.3269 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4247.602133 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.94085142 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3017.861 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,74987.28987 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,85965.01957 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,227809.8678 +MD,Carbon Monoxide,11C_Other-natural,,TON,19782.517 +MD,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,111.3901206 +MD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3158.14 +MD,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,13.258 +MD,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,471.308315 +MD,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,5.54618 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1181.698981 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7361.741644 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,448.7228271 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2684.403178 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,249.9780821 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,93.69759355 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,46.02202096 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.371248275 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,236.9268173 +MD,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5587.482743 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5613.26656 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.46617377 +MD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6288.080021 +MD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5138.01145 +MD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,292025.931 +MD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1743.93256 +MD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46926.794 +MD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,625.195613 +MD,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,683.238702 +MD,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,73.737793 +MD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4970.805318 +MD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,558.547231 +MD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4980.82445 +MD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5984.950928 +MD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5357.4289 +MD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,563.926277 +MD,Carbon Monoxide,1A3c_Rail,light_oil,TON,24.88019247 +MD,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,866.0556527 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,247.4905209 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,281.4885052 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,72.25503801 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.10470264 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.182409901 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4145.10629 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,599.7366424 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,36411.75331 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,161.6228296 +MD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,395.4545431 +MD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,159829.101 +MD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,20857.42233 +MD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,344.06509 +MD,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,305.264771 +MD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,15.3574 +MD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1709.669182 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,931.455432 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1136.359428 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.543293002 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.172236 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,15542.60159 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,187.4507337 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,29490.2599 +MD,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MD,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,30.6096625 +MD,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,15.12638229 +MD,Carbon Monoxide,2A1_Cement-production,,TON,967.638335 +MD,Carbon Monoxide,2A2_Lime-production,,TON,0 +MD,Carbon Monoxide,2A6_Other-minerals,,TON,978.0721823 +MD,Carbon Monoxide,2B_Chemicals-other,,TON,285.9514432 +MD,Carbon Monoxide,2C_Iron-steel-alloy,,TON,20871.1416 +MD,Carbon Monoxide,2C3_Aluminum-production,,TON,0 +MD,Carbon Monoxide,2C5_Lead-production,,TON,0 +MD,Carbon Monoxide,2C7_Other-metal,,TON,0 +MD,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,7.49594 +MD,Carbon Monoxide,2D3d_Coating-application,,TON,8.554195 +MD,Carbon Monoxide,2D3e_Degreasing,,TON,0 +MD,Carbon Monoxide,2D3h_Printing,,TON,3.5865709 +MD,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.021472 +MD,Carbon Monoxide,2H1_Pulp-and-paper,,TON,182.91276 +MD,Carbon Monoxide,2H2_Food-and-beverage,,TON,650.55491 +MD,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.721225 +MD,Carbon Monoxide,3Dc_Other-farm,,TON,1.6126 +MD,Carbon Monoxide,3F_Ag-res-on-field,,TON,1604.96734 +MD,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,150.1890675 +MD,Carbon Monoxide,5C_Incineration,,TON,6.426350408 +MD,Carbon Monoxide,5C_Incineration,biomass,TON,240.5841643 +MD,Carbon Monoxide,5C_Open-burning-industrial,,TON,0 +MD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,11577.21 +MD,Carbon Monoxide,5C_Open-burning-residential,,TON,1867.334538 +MD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,4873.7509 +MD,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.82692 +MD,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.05435 +MD,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,3.26967 +MD,Methane,1A3bii_Road-LDV,diesel_oil,TON,14.1415894 +MD,Methane,1A3bii_Road-LDV,light_oil,TON,783.09488 +MD,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.1785419 +MD,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,158.975458 +MD,Methane,1A3biii_Road-bus,diesel_oil,TON,4.652361011 +MD,Methane,1A3biii_Road-bus,light_oil,TON,1.258683609 +MD,Methane,1A3biii_Road-bus,natural_gas,TON,70.514535 +MD,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,219.5480923 +MD,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.616034612 +MD,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,47.3066441 +MD,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,10.67405338 +MD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.3876825 +MD,Nitrogen Oxides,11C_Other-natural,,TON,3451.1341 +MD,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,519.89792 +MD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,16823.24 +MD,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,98.9125 +MD,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1048.746989 +MD,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,2.2192 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1389.955531 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,981.2907816 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,65.63174513 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,998.6174992 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1138.061763 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3143.767975 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,723.5216322 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.492302385 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,346.0904598 +MD,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10081.34643 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,105.4706602 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.094770971 +MD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,876.4498295 +MD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,998.997754 +MD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,38527.5164 +MD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,937.7256 +MD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6703.3182 +MD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1496.369876 +MD,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,72.77668917 +MD,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,49.583815 +MD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16310.39007 +MD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,95.8072586 +MD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15460.7225 +MD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,670.1152891 +MD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,248.550677 +MD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,3347.263485 +MD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.415381141 +MD,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10952.64678 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,35.05293108 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1066.616818 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,68.20611707 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,62.10544424 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,10.81468242 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5371.114854 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1035.115272 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,708.3788658 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,42.98155853 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,880.7246347 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2026.071704 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,335.4535255 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1238.6346 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,9.67139531 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,55.2871 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4207.622231 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1871.952004 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,21.91094176 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.121189781 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.531756 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,175.6592536 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,956.3042501 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1716.681954 +MD,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MD,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,14.8816025 +MD,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.90086658 +MD,Nitrogen Oxides,2A1_Cement-production,,TON,4244.842649 +MD,Nitrogen Oxides,2A2_Lime-production,,TON,0 +MD,Nitrogen Oxides,2A6_Other-minerals,,TON,636.2302325 +MD,Nitrogen Oxides,2B_Chemicals-other,,TON,35.727237 +MD,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,829.3129 +MD,Nitrogen Oxides,2C3_Aluminum-production,,TON,0 +MD,Nitrogen Oxides,2C5_Lead-production,,TON,0 +MD,Nitrogen Oxides,2C7_Other-metal,,TON,0 +MD,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,3.8399 +MD,Nitrogen Oxides,2D3d_Coating-application,,TON,11.046965 +MD,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +MD,Nitrogen Oxides,2D3h_Printing,,TON,4.7385368 +MD,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.037149 +MD,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,467.7486 +MD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,38.689845 +MD,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,3.89774 +MD,Nitrogen Oxides,3Dc_Other-farm,,TON,1.91983 +MD,Nitrogen Oxides,3F_Ag-res-on-field,,TON,67.5364272 +MD,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,35.580245 +MD,Nitrogen Oxides,5C_Incineration,,TON,9.849918296 +MD,Nitrogen Oxides,5C_Incineration,biomass,TON,1961.918279 +MD,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0 +MD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,342.5 +MD,Nitrogen Oxides,5C_Open-burning-residential,,TON,131.8481909 +MD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,182.955165 +MD,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.68265 +MD,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.0627 +MD,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,2.531025 +MD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.828657894 +MD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,832.96838 +MD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.74169488 +MD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,150.475584 +MD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.509227819 +MD,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.567961625 +MD,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.5899679 +MD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.975537 +MD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.556046737 +MD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.0939024 +MD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10.8631072 +MD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.48205176 +MD,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,11.6062861 +MD,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,986.61439 +MD,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.08158 +MD,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,65.086398 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2229.65119 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,75.80688404 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,91.48104552 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,181.6148776 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.073670136 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,14.81706571 +MD,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,14124.7378 +MD,PM10 Filterable,1A3c_Rail,diesel_oil,TON,17.12 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,59.46853443 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,72.21800548 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,64.04752798 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,33.90933275 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.849049755 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,92.45993286 +MD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,74.318015 +MD,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,7.150238665 +MD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.3173 +MD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.547093833 +MD,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.0050918 +MD,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0000517 +MD,PM10 Filterable,2A1_Cement-production,,TON,133.466008 +MD,PM10 Filterable,2A2_Lime-production,,TON,0.91625 +MD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,17366.88 +MD,PM10 Filterable,2A6_Other-minerals,,TON,4109.943019 +MD,PM10 Filterable,2B_Chemicals-other,,TON,58.3806775 +MD,PM10 Filterable,2C_Iron-steel-alloy,,TON,237.3807675 +MD,PM10 Filterable,2C3_Aluminum-production,,TON,12.90141 +MD,PM10 Filterable,2C5_Lead-production,,TON,0 +MD,PM10 Filterable,2C7_Other-metal,,TON,1.064062 +MD,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,33.78365 +MD,PM10 Filterable,2D3d_Coating-application,,TON,2.9125556 +MD,PM10 Filterable,2D3e_Degreasing,,TON,0 +MD,PM10 Filterable,2D3h_Printing,,TON,0.1382905 +MD,PM10 Filterable,2H1_Pulp-and-paper,,TON,94.852875 +MD,PM10 Filterable,2H2_Food-and-beverage,,TON,1978.458985 +MD,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,8.8285385 +MD,PM10 Filterable,3Dc_Other-farm,,TON,13957.3274 +MD,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,6.901332 +MD,PM10 Filterable,5C_Incineration,,TON,0.724606308 +MD,PM10 Filterable,5C_Incineration,biomass,TON,24.19559869 +MD,PM10 Filterable,5C_Open-burning-industrial,,TON,0.29865 +MD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1164.57 +MD,PM10 Filterable,5C_Open-burning-residential,,TON,835.088696 +MD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,712.250159 +MD,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.063875 +MD,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.023925 +MD,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,3.3775875 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,17.86690552 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2695.2631 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,16.14877 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,117.1845435 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,110.4952138 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.71431513 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.092799718 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2306.038318 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.608865117 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,263.7774899 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,557.7186187 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.169617316 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,32.65294996 +MD,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,865.4877121 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,38.55115411 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00075773 +MD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,87.79144518 +MD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,14125.5393 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,69.5250918 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2885.6432 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,72.768561 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,393.48801 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,112.4425093 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.611587734 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.26142859 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,824.6104214 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.1524005 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1134.22598 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,21.05604239 +MD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.095885 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,96.59907212 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.013707859 +MD,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,717.2635774 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,59.1155363 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,151.7219542 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,58.55930001 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,34.87324046 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.70367227 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,168.5346964 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,99.30745753 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,43.277438 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.857620813 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,66.84144108 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,636.1578393 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3118.898539 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,163.775 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,7.23172495 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.31 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,22.05098538 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,164.4169209 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.411792787 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000624599 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.1813058 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,144.1707395 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.35911808 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,122.0102615 +MD,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MD,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.0248365 +MD,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.297281666 +MD,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,237.710108 +MD,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.1905 +MD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17366.88 +MD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4197.640352 +MD,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,60.345248 +MD,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,589.021973 +MD,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,12.90141 +MD,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +MD,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1.714062 +MD,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,33.9865 +MD,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.7828356 +MD,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.381264 +MD,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,252.79304 +MD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2013.31637 +MD,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,9.0706275 +MD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,13957.4385 +MD,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,280.613908 +MD,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,10.9795575 +MD,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.710022571 +MD,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,63.85181017 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.328844 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1164.57 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,835.088696 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,712.250159 +MD,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.063875 +MD,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.095535 +MD,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.7828625 +MD,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.28750482 +MD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,589.81251 +MD,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.86773 +MD,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,64.29595338 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1917.345142 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,69.35972929 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,52.7078544 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,115.5265981 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.018420122 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,12.18193116 +MD,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3352.273 +MD,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,16.66 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,63.55670982 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,36.59315731 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.9925457 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.758042597 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,96.62052362 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,57.114808 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,4.314598375 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.5497 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.700904861 +MD,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.0050918 +MD,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0000517 +MD,PM2.5 Filterable,2A1_Cement-production,,TON,106.4890164 +MD,PM2.5 Filterable,2A2_Lime-production,,TON,0.323382 +MD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1736.69 +MD,PM2.5 Filterable,2A6_Other-minerals,,TON,638.0410633 +MD,PM2.5 Filterable,2B_Chemicals-other,,TON,34.54763055 +MD,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,32.2908225 +MD,PM2.5 Filterable,2C3_Aluminum-production,,TON,4.55344 +MD,PM2.5 Filterable,2C5_Lead-production,,TON,0 +MD,PM2.5 Filterable,2C7_Other-metal,,TON,0.36899216 +MD,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0752 +MD,PM2.5 Filterable,2D3d_Coating-application,,TON,2.524000571 +MD,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +MD,PM2.5 Filterable,2D3h_Printing,,TON,0.108037987 +MD,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,75.716415 +MD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1567.556638 +MD,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,3.371289745 +MD,PM2.5 Filterable,3Dc_Other-farm,,TON,2791.47 +MD,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,5.934082 +MD,PM2.5 Filterable,5C_Incineration,,TON,0.63660292 +MD,PM2.5 Filterable,5C_Incineration,biomass,TON,19.24385538 +MD,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.1419 +MD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1164.57 +MD,PM2.5 Filterable,5C_Open-burning-residential,,TON,764.749079 +MD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,569.5422 +MD,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,3.0518125 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.54812565 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2298.4613 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,14.93492 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,116.3940991 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,107.1620631 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.6183957 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.09166135 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1993.680716 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,5.722479943 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,225.0215448 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,491.668911 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.114372299 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,30.01966042 +MD,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,839.5231792 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,35.49041085 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00075773 +MD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,73.60979292 +MD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3353.0385 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,45.6858149 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,976.58541 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,53.29143 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,120.998919 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,87.4154549 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.35373114 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.59214331 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,660.0580415 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.79657211 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,843.33648 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,9.689455242 +MD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.9740502 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,93.57523877 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.012636332 +MD,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,629.1890024 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,5.223445281 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,142.8491223 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,30.4158895 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,20.69476668 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.603454067 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,168.3645922 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,96.32822595 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,39.93080178 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.857620813 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,64.83617441 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,585.2928643 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3115.294853 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,146.57169 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,4.416089435 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,6.5421 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,18.22551045 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,159.484413 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.978892431 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000624599 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.0558664 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,132.6383499 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.68832401 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,112.2493672 +MD,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MD,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.0248365 +MD,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.297281666 +MD,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,210.7331164 +MD,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.597635 +MD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1736.69 +MD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,726.8675516 +MD,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,36.51220105 +MD,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,383.932083 +MD,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,4.55344 +MD,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,1.01899186 +MD,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.278012 +MD,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.394280531 +MD,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.351011487 +MD,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,233.65708 +MD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1602.564093 +MD,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3.613378745 +MD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2791.5811 +MD,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,156.418497 +MD,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,10.0123075 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.678369226 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,58.90168681 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.172094 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1164.57 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,764.749079 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,569.5422 +MD,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.063875 +MD,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.095535 +MD,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.4570875 +MD,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,89.4945759 +MD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,31465.177 +MD,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,349.486 +MD,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,30.330751 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.608849334 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.285932925 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.207529866 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,139.3739713 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.02559883 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,22003.67092 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2399.970311 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.611553438 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4.394568524 +MD,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,24.95097411 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.453193018 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000142618 +MD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,100.0852218 +MD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.60738061 +MD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,430.998096 +MD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.06600878 +MD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,60.589361 +MD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.964349713 +MD,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.325592345 +MD,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.048918177 +MD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17.23867908 +MD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.53272089 +MD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,23.1574539 +MD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.602746637 +MD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.3567232 +MD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,2.311429102 +MD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001804551 +MD,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6020.103602 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.54519427 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2043.664583 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,331.6491123 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,226.9121857 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,25.91184706 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,45.74772842 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.143715378 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.866846936 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.1512649 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.831045088 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,11.06803939 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,55.88965527 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2972.7234 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,41.6946096 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,132.6889 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,25.64129148 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.926423576 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.077392286 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000108666 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.056975624 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.361295249 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.843923747 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.14457594 +MD,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MD,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.0043618 +MD,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.012188955 +MD,Sulfur Dioxide,2A1_Cement-production,,TON,555.4531516 +MD,Sulfur Dioxide,2A2_Lime-production,,TON,0 +MD,Sulfur Dioxide,2A6_Other-minerals,,TON,196.917349 +MD,Sulfur Dioxide,2B_Chemicals-other,,TON,1.0812483 +MD,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,674.3202015 +MD,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +MD,Sulfur Dioxide,2C5_Lead-production,,TON,0 +MD,Sulfur Dioxide,2C7_Other-metal,,TON,0 +MD,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,1.50104 +MD,Sulfur Dioxide,2D3d_Coating-application,,TON,0.060419 +MD,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +MD,Sulfur Dioxide,2D3h_Printing,,TON,0.0274458 +MD,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.00488 +MD,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,656.374855 +MD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.980074 +MD,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0215683 +MD,Sulfur Dioxide,3Dc_Other-farm,,TON,0.01155 +MD,Sulfur Dioxide,3F_Ag-res-on-field,,TON,30.62850808 +MD,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,15.8560775 +MD,Sulfur Dioxide,5C_Incineration,,TON,2.745423433 +MD,Sulfur Dioxide,5C_Incineration,biomass,TON,393.7710714 +MD,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0 +MD,Sulfur Dioxide,5C_Open-burning-residential,,TON,21.97240515 +MD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,55.4239211 +MD,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.020075 +MD,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.0791 +MD,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.021725 +MD,Volatile Organic Compounds,11C_Other-natural,,TON,137890.17 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,12.7381399 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,254.8846 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.9885 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,48.119014 +MD,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,47.58688 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,128.3804585 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,303.8871184 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.29801505 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,77.58070184 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.539042691 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,14.49599589 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.8219046 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.014841771 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,19.95048256 +MD,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1028.3994 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,411.8812079 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001549505 +MD,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,5.0293 +MD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,355.1095254 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,493.45513 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,26524.384 +MD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,253.15456 +MD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3678.3065 +MD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,159.5051445 +MD,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,31.5573504 +MD,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,8.8239944 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1643.289691 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,18.49882852 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1122.91047 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,265.873454 +MD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,816.72837 +MD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,187.5159466 +MD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.935872306 +MD,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,365.2216618 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,8.347654402 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.3972165 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.002089981 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.588376689 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.474706149 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,494.9288752 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,137.9027663 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1842.464179 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.505890448 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,91.04538836 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,12161.61584 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3446.359371 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,49.063663 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,11.10052302 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.1901 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,235.0452544 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,171.8453841 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,77.55677793 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002105752 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.583675 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4598.249552 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,48.20238058 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8454.495266 +MD,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,34.866235 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,654.9091125 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,629.0650175 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2086.433085 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3637.682785 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,43.55835586 +MD,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.42074302 +MD,Volatile Organic Compounds,2A1_Cement-production,,TON,43.9273442 +MD,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +MD,Volatile Organic Compounds,2A6_Other-minerals,,TON,136.5270173 +MD,Volatile Organic Compounds,2B_Chemicals-other,,TON,67.6014666 +MD,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,84.4493735 +MD,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +MD,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +MD,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +MD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,17295.913 +MD,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,469.15871 +MD,Volatile Organic Compounds,2D3d_Coating-application,,TON,11404.14159 +MD,Volatile Organic Compounds,2D3e_Degreasing,,TON,2833.32765 +MD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1288.9202 +MD,Volatile Organic Compounds,2D3h_Printing,,TON,1930.87075 +MD,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,126.3546486 +MD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,542.3416569 +MD,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,235.49365 +MD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1021.896642 +MD,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,143.188458 +MD,Volatile Organic Compounds,3Dc_Other-farm,,TON,7.5031 +MD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1376.51762 +MD,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,113.2737596 +MD,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,136.4653143 +MD,Volatile Organic Compounds,5C_Incineration,,TON,0.716010131 +MD,Volatile Organic Compounds,5C_Incineration,biomass,TON,19.34475392 +MD,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.0143 +MD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,794.65 +MD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,188.0500841 +MD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,713.760447 +MD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,24.893252 +MD,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,7.06088 +MD,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,29.8633655 +ME,Ammonia,1A1a_Public-Electricity,biomass,TON,104.0744521 +ME,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.285737304 +ME,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,3.820896 +ME,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +ME,Ammonia,1A1a_Public-Electricity,natural_gas,TON,23.94211172 +ME,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.532512636 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.036977524 +ME,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,139.0830569 +ME,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.400879724 +ME,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.018169576 +ME,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,21.05328595 +ME,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.130610809 +ME,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,4.633036871 +ME,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0287988 +ME,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.317896308 +ME,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.063701264 +ME,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.17008241 +ME,Ammonia,1A3bii_Road-LDV,light_oil,TON,507.94528 +ME,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.8597441 +ME,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.33774 +ME,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.35314815 +ME,Ammonia,1A3biii_Road-bus,light_oil,TON,0.632648646 +ME,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.048968094 +ME,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.93375417 +ME,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.450652253 +ME,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.8581628 +ME,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.733804787 +ME,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.502856 +ME,Ammonia,1A3c_Rail,diesel_oil,TON,0.405817313 +ME,Ammonia,1A3c_Rail,light_oil,TON,0.000776538 +ME,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.839392809 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,13.50186688 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.92887316 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.412733006 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.900058296 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.088200673 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.26083465 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.533689681 +ME,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.095230418 +ME,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.397755454 +ME,Ammonia,1A4bi_Residential-stationary,biomass,TON,314.6070419 +ME,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,96.95725 +ME,Ammonia,1A4bi_Residential-stationary,light_oil,TON,26.183241 +ME,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,15.6173005 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.070233543 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.113903093 +ME,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005834644 +ME,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.169984505 +ME,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.272145284 +ME,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.68001746 +ME,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.941099 +ME,Ammonia,2D3d_Coating-application,,TON,0.21 +ME,Ammonia,2H1_Pulp-and-paper,,TON,257.79081 +ME,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,15.992 +ME,Ammonia,3B1a_Cattle-dairy,,TON,1476.299901 +ME,Ammonia,3B1b_Cattle-non-dairy,,TON,135.7995321 +ME,Ammonia,3B2_Manure-sheep,,TON,38.15988 +ME,Ammonia,3B3_Manure-swine,,TON,31.2610584 +ME,Ammonia,3B4_Manure-other,,TON,878.40783 +ME,Ammonia,3B4_Manure-poultry,,TON,1146.362187 +ME,Ammonia,3B4d_Manure-goats,,TON,41.22624 +ME,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,2064.585169 +ME,Ammonia,5A_Solid-waste-disposal,,TON,0 +ME,Ammonia,5B_Compost-biogas,Other_Fuel,TON,151.291545 +ME,Ammonia,5C_Incineration,,TON,0 +ME,Ammonia,5C_Incineration,biomass,TON,2.66287 +ME,Ammonia,5D1_Wastewater-domestic,,TON,6.3713314 +ME,Ammonia,6A_Other-commertial,Other_Fuel,TON,367.57609 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65563.48431 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,67916.25093 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3714.589892 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,285221.9562 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5287.123477 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.29335228 +ME,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,47144.256 +ME,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4976293.9 +ME,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,30157.652 +ME,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,403972.14 +ME,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,150204.424 +ME,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,17046.28927 +ME,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2047.3991 +ME,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,759037.833 +ME,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,10514.14625 +ME,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1054315.42 +ME,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,146858.3089 +ME,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,62932.546 +ME,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1284.1544 +ME,Carbon Dioxide,1A3c_Rail,light_oil,TON,60.2392886 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32053.23439 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,44269.40806 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1964.118976 +ME,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,11712.19073 +ME,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,102935.1399 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,131748.4184 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8013.419632 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.56424498 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,714.25692 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,345130.6933 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,33513.0317 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,116313.751 +ME,Carbon Monoxide,11C_Other-natural,,TON,63181.245 +ME,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,3205.453765 +ME,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.29794891 +ME,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,23.88068 +ME,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.278 +ME,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,519.8795681 +ME,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,27.74249 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,335.2441543 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3126.259096 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,190.1623235 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4834.906887 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.74816444 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,20.84447007 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,297.9550023 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.823416639 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,369.763965 +ME,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2194375 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1188.868726 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1207.50086 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.093234871 +ME,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2263.079304 +ME,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,961.78587 +ME,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,91003.475 +ME,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,316.84525 +ME,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13492.55 +ME,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,346.6592 +ME,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,721.850445 +ME,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,13.949888 +ME,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1741.832056 +ME,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,380.581948 +ME,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2131.415 +ME,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4093.028175 +ME,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2617.226 +ME,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,135.7817249 +ME,Carbon Monoxide,1A3c_Rail,light_oil,TON,15.208682 +ME,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,902.4899656 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,524.4199437 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,181.5986019 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,45.84809923 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.72163241 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,487.7855681 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,169.8719809 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,10328.34656 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,46.0890018 +ME,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,47.83887864 +ME,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,27960.97497 +ME,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,41649.92785 +ME,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,484.78628 +ME,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,130.91637 +ME,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,153.303424 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,453.031297 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2614.313466 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.172172812 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.9137136 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,41024.87376 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,67.00633229 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,15159.956 +ME,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,281.368622 +ME,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,4.7 +ME,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,2.95 +ME,Carbon Monoxide,2D3d_Coating-application,,TON,0 +ME,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,1.55736 +ME,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2893.190815 +ME,Carbon Monoxide,2H2_Food-and-beverage,,TON,192.25383 +ME,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.109895 +ME,Carbon Monoxide,3F_Ag-res-on-field,,TON,22.84095 +ME,Carbon Monoxide,5A_Solid-waste-disposal,,TON,81.464725 +ME,Carbon Monoxide,5C_Incineration,,TON,0.048659788 +ME,Carbon Monoxide,5C_Incineration,biomass,TON,204.2719845 +ME,Carbon Monoxide,5C_Open-burning-residential,,TON,3439.1038 +ME,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,458.40078 +ME,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.23801304 +ME,Methane,1A3bii_Road-LDV,light_oil,TON,310.16316 +ME,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.3660713 +ME,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,66.51195 +ME,Methane,1A3biii_Road-bus,diesel_oil,TON,2.42722953 +ME,Methane,1A3biii_Road-bus,light_oil,TON,1.499319127 +ME,Methane,1A3biii_Road-bus,natural_gas,TON,13.203278 +ME,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,51.5419535 +ME,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.459983783 +ME,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,22.5077882 +ME,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,8.418046199 +ME,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.7728797 +ME,Nitrogen Oxides,11C_Other-natural,,TON,2847.7287 +ME,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1178.443085 +ME,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,32.87506274 +ME,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,85.83 +ME,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,1.83 +ME,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,526.730273 +ME,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,11.32938 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,450.1245949 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,418.4162344 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,27.84332166 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4072.824067 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,62.66619823 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,212.8524565 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1447.507127 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,3.438834164 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,286.7556301 +ME,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.522635 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2148.059077 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,23.71639069 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.018954215 +ME,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,199.7266753 +ME,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,160.962837 +ME,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,11938.5385 +ME,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,138.86392 +ME,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1502.373 +ME,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1203.835887 +ME,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,83.04605699 +ME,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,9.000935 +ME,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6068.53246 +ME,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,54.7339103 +ME,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6410.7447 +ME,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,501.1245739 +ME,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,134.96406 +ME,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1296.003173 +ME,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.270142993 +ME,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5140.985831 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,231.0499727 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,749.2604078 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,489.9716479 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,45.83356531 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,537.3560199 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,293.1597275 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,213.093919 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.23341494 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,106.5663286 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,366.6262788 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,485.0138165 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1745.2304 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,471.29841 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,507.451504 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,963.864237 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,33.44385123 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.038419999 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.981662 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,487.4980583 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,376.3589244 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,828.91838 +ME,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,892.246139 +ME,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,25.1 +ME,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +ME,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,1.854 +ME,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2800.251722 +ME,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1.5962 +ME,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.6888445 +ME,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,14.68 +ME,Nitrogen Oxides,5C_Incineration,,TON,0.014728024 +ME,Nitrogen Oxides,5C_Incineration,biomass,TON,997.8087267 +ME,Nitrogen Oxides,5C_Open-burning-residential,,TON,242.76048 +ME,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,20.3734 +ME,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.144992864 +ME,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,251.54623 +ME,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.13550507 +ME,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.420663 +ME,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.253284937 +ME,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.492165769 +ME,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.08769038 +ME,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.776600872 +ME,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.474785274 +ME,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.81931816 +ME,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.524383272 +ME,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.65994621 +ME,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,81.5744045 +ME,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.414881739 +ME,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.426195 +ME,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.08822787 +ME,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,77.05974959 +ME,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.185773 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,922.3479829 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.42760184 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.616450753 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,253.2043307 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.162425365 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,30.64246235 +ME,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.5541529 +ME,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,27549.235 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,316.565159 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,47.34250112 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,117.4084673 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.52101817 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.59058502 +ME,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,104.71397 +ME,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,28.277917 +ME,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.76557615 +ME,PM10 Filterable,2A1_Cement-production,,TON,24.693 +ME,PM10 Filterable,2A2_Lime-production,,TON,0.058428901 +ME,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1642.707548 +ME,PM10 Filterable,2A6_Other-minerals,,TON,1432.498698 +ME,PM10 Filterable,2B_Chemicals-other,,TON,8.38 +ME,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,2.897359 +ME,PM10 Filterable,2D3d_Coating-application,,TON,0.99371543 +ME,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.002 +ME,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0.0403322 +ME,PM10 Filterable,2H1_Pulp-and-paper,,TON,789.7942287 +ME,PM10 Filterable,2H2_Food-and-beverage,,TON,139.2855666 +ME,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,12.96272641 +ME,PM10 Filterable,2I_Wood-processing,,TON,1 +ME,PM10 Filterable,3Dc_Other-farm,,TON,3348.693845 +ME,PM10 Filterable,5A_Solid-waste-disposal,,TON,3.7012 +ME,PM10 Filterable,5C_Incineration,,TON,0.025037375 +ME,PM10 Filterable,5C_Incineration,biomass,TON,15.44249213 +ME,PM10 Filterable,5C_Open-burning-residential,,TON,1537.4822 +ME,PM10 Filterable,5C_Open-burning-yard-waste,,TON,75.909087 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,84.36390933 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.541823814 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,5.181435 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0935215 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,140.8967737 +ME,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.48301 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,37.12177072 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.04402693 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.457927557 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,957.0460768 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,26.45659575 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2.904826873 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,320.8347643 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.374390628 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,76.4419244 +ME,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.66443252 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,184.2555612 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.245689838 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +ME,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,52.79693963 +ME,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,27549.235 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,9.6974474 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,675.36098 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.352993 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.056057 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,80.7173688 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.898995778 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.2408261 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,311.5908216 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.53874642 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,474.35376 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,15.57999853 +ME,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.9188335 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,33.12766912 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00837029 +ME,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,238.8967287 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,327.2727458 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,130.5650363 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,130.1152066 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,5.656678703 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.35471585 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.12857053 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.25550504 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.246388744 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.086812558 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,95.32234021 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6315.960329 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,230.75822 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,62.316182 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1.99074802 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,80.9622934 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,30.94372022 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000197716 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.99164292 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,487.8278106 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.53272369 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,77.490347 +ME,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,25.02092 +ME,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.075917873 +ME,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1642.707548 +ME,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1447.797893 +ME,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,8.38 +ME,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,3.23745511 +ME,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.99371543 +ME,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.002 +ME,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0.0403322 +ME,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1298.894781 +ME,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,637.4116775 +ME,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,13.19395041 +ME,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,1 +ME,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,3348.693845 +ME,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,4.094416 +ME,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,9.5907165 +ME,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.027368945 +ME,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,16.88051565 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1537.4822 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,75.909087 +ME,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,80.51507325 +ME,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.993970398 +ME,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.000786 +ME,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.08822787 +ME,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,68.55699759 +ME,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.185773 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,625.9850271 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.07406876 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.626645616 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,92.26015966 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.040764581 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,27.24599388 +ME,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.18244099 +ME,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4200.9162 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,268.8762815 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.2827921 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,42.67894061 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.949055562 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.143528716 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,80.47453 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,21.732103 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.42103544 +ME,PM2.5 Filterable,2A1_Cement-production,,TON,13.2285 +ME,PM2.5 Filterable,2A2_Lime-production,,TON,0.029593 +ME,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,164.2707548 +ME,PM2.5 Filterable,2A6_Other-minerals,,TON,195.5921313 +ME,PM2.5 Filterable,2B_Chemicals-other,,TON,3.0061913 +ME,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.674548981 +ME,PM2.5 Filterable,2D3d_Coating-application,,TON,0.90127702 +ME,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.002 +ME,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0.0403322 +ME,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,655.4097725 +ME,PM2.5 Filterable,2H2_Food-and-beverage,,TON,71.13895045 +ME,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,4.44896499 +ME,PM2.5 Filterable,2I_Wood-processing,,TON,0.431818 +ME,PM2.5 Filterable,3Dc_Other-farm,,TON,669.707071 +ME,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,3.69682353 +ME,PM2.5 Filterable,5C_Incineration,,TON,0.010917124 +ME,PM2.5 Filterable,5C_Incineration,biomass,TON,12.94425456 +ME,PM2.5 Filterable,5C_Open-burning-residential,,TON,1408.0095 +ME,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,58.518578 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,83.30457808 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.120912618 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.756027 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0935215 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,132.3940437 +ME,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.48301 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,36.00415148 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.007364651 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.457737667 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,660.480915 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,19.14772842 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2.918423474 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,159.7925949 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.244480728 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,73.27110745 +ME,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.29272037 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,178.7278556 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.591059155 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +ME,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,43.69785942 +ME,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4200.9162 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,6.5598222 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,305.53383 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.2255315 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,32.260518 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,64.1317544 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.571223468 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.09066448 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,249.3078901 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.972529894 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,357.52387 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.571511546 +ME,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.4940925 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,30.55432692 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007715743 +ME,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,226.3964537 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,279.1920799 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,119.7103271 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,55.54248559 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,5.091671456 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.99812719 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27.28469873 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.30782579 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.246388744 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.844220594 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,87.69990216 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6315.960329 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,206.51901 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,55.770347 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1.639354615 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,78.53339803 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,28.46824647 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000197716 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.96189212 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,448.801728 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.30674182 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,71.2911642 +ME,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,13.55642 +ME,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.047081972 +ME,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,164.2707548 +ME,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,210.8913341 +ME,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,3.0061913 +ME,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,1.279645091 +ME,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.90127702 +ME,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.002 +ME,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0.0403322 +ME,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1164.510364 +ME,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,573.7432884 +ME,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,4.68018899 +ME,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.431818 +ME,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,669.707071 +ME,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2.662571 +ME,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,9.58634003 +ME,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.013371098 +ME,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.40637417 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1408.0095 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,58.518578 +ME,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,71.2149815 +ME,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.07832362 +ME,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,452.3 +ME,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.04 +ME,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,25.74155899 +ME,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.1078885 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.427893619 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.360324102 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.085196938 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1337.500598 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,50.43660137 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,132.47586 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2722.6008 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,7.2006068 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,261.7441852 +ME,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.13457511 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.322078476 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.097072149 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85235E-05 +ME,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,28.7192004 +ME,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.40544069 +ME,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,98.805994 +ME,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.26038377 +ME,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8.021 +ME,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.289043814 +ME,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.338460041 +ME,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.010839902 +ME,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.52029278 +ME,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.208761843 +ME,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9.0068225 +ME,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.915917887 +ME,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.2495463 +ME,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,8.94696036 +ME,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001100526 +ME,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,891.1562686 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,22.94207235 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,42.65576416 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2541.989765 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,101.0914244 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.29795771 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.607138051 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.812196238 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.043428481 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.221549462 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.875637218 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,187.8042882 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,4130.3792 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1115.407 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,2.2964145 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.454822771 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.145776421 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.44028E-05 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0134856 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,6.266982569 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.718846641 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2.11475916 +ME,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,113.4266317 +ME,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.15 +ME,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +ME,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0.011124 +ME,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,720.5352723 +ME,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.580035 +ME,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.2307969 +ME,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,254.09 +ME,Sulfur Dioxide,5C_Incineration,,TON,0.012583049 +ME,Sulfur Dioxide,5C_Incineration,biomass,TON,45.48081585 +ME,Sulfur Dioxide,5C_Open-burning-residential,,TON,40.460055 +ME,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.402096 +ME,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,45.06731 +ME,Volatile Organic Compounds,11C_Other-natural,,TON,315190.36 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,75.31786531 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.527632102 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.276419 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0082 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,42.93421232 +ME,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,109.09342 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,40.60291826 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,129.2346196 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.498295706 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,206.2924504 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.103763983 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,4.169873337 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.321806273 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.033300985 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,35.0001365 +ME,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.011535356 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,218.5116605 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,87.3674012 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +ME,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,103.7059655 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,100.483801 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,9828.5164 +ME,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,58.044896 +ME,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1570.1748 +ME,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,91.3286797 +ME,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,32.9647713 +ME,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.5783919 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,497.7525399 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,13.7753366 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,516.23498 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,179.0027201 +ME,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,313.33772 +ME,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,52.0825619 +ME,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.556558396 +ME,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,131.2596253 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,17.46437193 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.947176325 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.400423954 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.863088085 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.55573543 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,39.06076873 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,508.6959516 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.143893801 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,11.01550261 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2078.463145 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7047.59056 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,67.87002 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,18.328281 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,21.05177135 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,82.74214511 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,277.3313193 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000667574 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.7984312 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,17887.94952 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.13738517 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4791.512192 +ME,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,16.39 +ME,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,193.252841 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,84.38198815 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,227.2339484 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1814.407351 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,824.4674895 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +ME,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,546.1787479 +ME,Volatile Organic Compounds,2B_Chemicals-other,,TON,18.326245 +ME,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,5598.311705 +ME,Volatile Organic Compounds,2D3d_Coating-application,,TON,2790.933489 +ME,Volatile Organic Compounds,2D3e_Degreasing,,TON,876.61209 +ME,Volatile Organic Compounds,2D3h_Printing,,TON,253.893045 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,20.10197 +ME,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1793.085153 +ME,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,321.8720209 +ME,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,121.4178999 +ME,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +ME,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1.405199 +ME,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,66.642231 +ME,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,166.30146 +ME,Volatile Organic Compounds,5C_Incineration,,TON,0.014629034 +ME,Volatile Organic Compounds,5C_Incineration,biomass,TON,13.29683664 +ME,Volatile Organic Compounds,5C_Open-burning-residential,,TON,346.33807 +ME,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,85.49559 +ME,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,32.0452115 +MI,Ammonia,1A1a_Public-Electricity,biomass,TON,19.52459 +MI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,4.35149 +MI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,212.851455 +MI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.5022 +MI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,13.81533515 +MI,Ammonia,1A1b_Pet-refining,natural_gas,TON,0.3137 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.414912191 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.440636329 +MI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,95.6 +MI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.71199 +MI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.071065 +MI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.806 +MI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.288 +MI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,150.835165 +MI,Ammonia,1A2c_Chemicals,natural_gas,TON,0.14035 +MI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,24.43736301 +MI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.413250651 +MI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.01908861 +MI,Ammonia,1A3bii_Road-LDV,light_oil,TON,3678.084126 +MI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.092359527 +MI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,104.6623328 +MI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,20.48764813 +MI,Ammonia,1A3biii_Road-bus,light_oil,TON,23.17236647 +MI,Ammonia,1A3biii_Road-bus,natural_gas,TON,1.135490674 +MI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,75.45471237 +MI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,6.981459254 +MI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,60.64807777 +MI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,22.85035936 +MI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,96.8040249 +MI,Ammonia,1A3c_Rail,diesel_oil,TON,2.867056748 +MI,Ammonia,1A3c_Rail,light_oil,TON,0.001514634 +MI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.467074706 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,11.60201442 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.202955242 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.15048787 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.581191011 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.226901928 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.16991252 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.996459639 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.084236367 +MI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.708614711 +MI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.834384985 +MI,Ammonia,1A4bi_Residential-stationary,biomass,TON,1840.028117 +MI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,20.68 +MI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,20.992 +MI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.287 +MI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3165.996 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.905366344 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.282931472 +MI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.045482042 +MI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,19.55336502 +MI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.333357154 +MI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,12.27888073 +MI,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0008 +MI,Ammonia,2A1_Cement-production,,TON,9.97 +MI,Ammonia,2A6_Other-minerals,Other_Fuel,TON,77.2615 +MI,Ammonia,2B_Chemicals-other,,TON,104.377565 +MI,Ammonia,2C_Iron-steel-alloy,,TON,8.271 +MI,Ammonia,2C7_Other-metal,Other_Fuel,TON,12.92375 +MI,Ammonia,2C7b_Nickel-production,Other_Fuel,TON,0.111 +MI,Ammonia,2D3d_Coating-application,,TON,139.12 +MI,Ammonia,2D3e_Degreasing,,TON,9.9105 +MI,Ammonia,2D3h_Printing,,TON,0.403075 +MI,Ammonia,2H1_Pulp-and-paper,,TON,19.33965 +MI,Ammonia,2H2_Food-and-beverage,,TON,6.39275 +MI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,161.8635 +MI,Ammonia,3B1a_Cattle-dairy,,TON,19477.65706 +MI,Ammonia,3B1b_Cattle-non-dairy,,TON,2149.447499 +MI,Ammonia,3B2_Manure-sheep,,TON,285.36684 +MI,Ammonia,3B3_Manure-swine,,TON,6163.471783 +MI,Ammonia,3B4_Manure-other,,TON,1359.01128 +MI,Ammonia,3B4_Manure-poultry,,TON,6892.630246 +MI,Ammonia,3B4d_Manure-goats,,TON,194.266644 +MI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,18432.68867 +MI,Ammonia,5A_Solid-waste-disposal,,TON,0.0025 +MI,Ammonia,5D1_Wastewater-domestic,,TON,70.6265 +MI,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.03285 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,666696.3323 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,770261.7718 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43236.38581 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3008761.754 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,110359.4587 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,12.32813772 +MI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,600522.7235 +MI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,40159351.61 +MI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,105318.7656 +MI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1413491.318 +MI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1177033.678 +MI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,615721.3802 +MI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,40816.8967 +MI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3786850.843 +MI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,166968.3705 +MI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3807722.701 +MI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,625109.5936 +MI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1016265.289 +MI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2516.87238 +MI,Carbon Dioxide,1A3c_Rail,light_oil,TON,117.5968866 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,245339.3971 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,338760.6191 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14906.67029 +MI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,87151.121 +MI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,650841.6444 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1095619.779 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,20939.54881 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,25.9198474 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5567.8168 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1303104.085 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,41048.72381 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,868816.46 +MI,Carbon Monoxide,11C_Other-natural,,TON,84096.243 +MI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1653.921975 +MI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,62.850365 +MI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9814.25 +MI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,3.1385 +MI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3671.049755 +MI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,76.754065 +MI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,117.8438 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3909.182889 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35950.50385 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2172.302598 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1724.554931 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,136.676687 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,811.70211 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.39942916 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.393578798 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,22136.04514 +MI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,131.575645 +MI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.94551 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,10207.47399 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,21690.23538 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.844773836 +MI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9313.9739 +MI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8725.07105 +MI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,872985.9421 +MI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,873.392321 +MI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,31612.20273 +MI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,3251.279384 +MI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,28415.63045 +MI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,203.6145104 +MI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10525.17005 +MI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6407.554686 +MI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8848.229749 +MI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,23503.26991 +MI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,52374.9357 +MI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,932.8798724 +MI,Carbon Monoxide,1A3c_Rail,light_oil,TON,29.87233893 +MI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,365.6116526 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1653.525703 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,48.00940531 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,122.5036044 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.765245991 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,31.68621393 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6895.45727 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1300.107558 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,79523.35259 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,350.9544101 +MI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,355.954947 +MI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,177799.8752 +MI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,250118.7233 +MI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,103.62 +MI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2887.55 +MI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,6.41 +MI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,7003.78 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4921.020238 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5471.422102 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.850842703 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,53.829626 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,167330.5511 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,84.0673169 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,118205.2524 +MI,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,15.366155 +MI,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14507.63441 +MI,Carbon Monoxide,2A1_Cement-production,,TON,603.814 +MI,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,378.375 +MI,Carbon Monoxide,2A6_Other-minerals,,TON,4648.634515 +MI,Carbon Monoxide,2B_Chemicals-other,,TON,225.531825 +MI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,20918.69726 +MI,Carbon Monoxide,2C3_Aluminum-production,,TON,49.1415 +MI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,37.8018 +MI,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.0005 +MI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3045.7825 +MI,Carbon Monoxide,2H2_Food-and-beverage,,TON,1142.785951 +MI,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.023685 +MI,Carbon Monoxide,3Dc_Other-farm,,TON,3.6 +MI,Carbon Monoxide,3F_Ag-res-on-field,,TON,0.246679029 +MI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1174.745894 +MI,Carbon Monoxide,5C_Incineration,,TON,11.07609454 +MI,Carbon Monoxide,5C_Incineration,biomass,TON,539.0423977 +MI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,9915.49408 +MI,Carbon Monoxide,5C_Open-burning-residential,,TON,8932.43372 +MI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,834.48281 +MI,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.39875 +MI,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,14.0015 +MI,Methane,1A3bii_Road-LDV,diesel_oil,TON,29.38639967 +MI,Methane,1A3bii_Road-LDV,light_oil,TON,2475.230225 +MI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.584792792 +MI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,107.1189813 +MI,Methane,1A3biii_Road-bus,diesel_oil,TON,19.15017398 +MI,Methane,1A3biii_Road-bus,light_oil,TON,61.35949727 +MI,Methane,1A3biii_Road-bus,natural_gas,TON,203.0976184 +MI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,372.4501868 +MI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,13.16591052 +MI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,55.92772219 +MI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,47.54241875 +MI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,77.2482959 +MI,Nitrogen Oxides,11C_Other-natural,,TON,16767.4784 +MI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1322.638295 +MI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,265.786385 +MI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,70327.625 +MI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,138.3 +MI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2697.402045 +MI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,149.32992 +MI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,443.18165 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4594.638769 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4743.713817 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,318.2289806 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1888.565263 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,547.5500362 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2349.964143 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,255.163956 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,7.649708741 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,28059.38545 +MI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,74.0525 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.826501923 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,33.07965808 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,20504.91833 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,426.6876314 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.163419365 +MI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2677.827999 +MI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2146.877909 +MI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,108976.7108 +MI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,473.7339931 +MI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3772.298129 +MI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,9347.488048 +MI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,3548.173489 +MI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,151.6321748 +MI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34535.52008 +MI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,895.1284378 +MI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,25779.24658 +MI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2614.800139 +MI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2488.77629 +MI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7098.449262 +MI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.515949605 +MI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4696.043875 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,739.3500306 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,129.7382329 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,775.910009 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,107.4336936 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,9.047830959 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8577.956968 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2243.877683 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1603.782929 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,93.25995602 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,792.9968033 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2263.519203 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2754.163927 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,372.89 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,74.22 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,23.18 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,17270.57 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9877.556588 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,117.0094103 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.635955171 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,54.482754 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1940.511463 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,459.5208557 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,6370.165193 +MI,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,5.049785 +MI,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8894.674881 +MI,Nitrogen Oxides,2A1_Cement-production,,TON,6911.365 +MI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1080.1655 +MI,Nitrogen Oxides,2A6_Other-minerals,,TON,4208.59235 +MI,Nitrogen Oxides,2B_Chemicals-other,,TON,62.912865 +MI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,9355.463037 +MI,Nitrogen Oxides,2C3_Aluminum-production,,TON,125.84828 +MI,Nitrogen Oxides,2C5_Lead-production,,TON,0.086 +MI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,64.06882 +MI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1784.6972 +MI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,84.95235 +MI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,68.85537 +MI,Nitrogen Oxides,3Dc_Other-farm,,TON,69.79 +MI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.010721836 +MI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,706.84661 +MI,Nitrogen Oxides,5C_Incineration,,TON,84.78693943 +MI,Nitrogen Oxides,5C_Incineration,biomass,TON,2452.170266 +MI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,293.35796 +MI,Nitrogen Oxides,5C_Open-burning-residential,,TON,630.525 +MI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,37.0881209 +MI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MI,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,3.427 +MI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.711514227 +MI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2029.39723 +MI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.410541674 +MI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,85.6362199 +MI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,2.566255162 +MI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,17.94865255 +MI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,2.337248984 +MI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.943564177 +MI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.865147732 +MI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.707947506 +MI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,27.05049845 +MI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.52578113 +MI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,122.79321 +MI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,14.03480956 +MI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2713.384782 +MI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.939062 +MI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,191.9119467 +MI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,46.8529233 +MI,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.05921 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,359.5195969 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.7125296 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,114.9080956 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,41.57449816 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.348312822 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,486.1231537 +MI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.248902 +MI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1757234 +MI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,216448.0731 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1230.719513 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.481408176 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,36.63396978 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.22999846 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.599946228 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.78229348 +MI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,22.34 +MI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,78.7 +MI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.379 +MI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,35.199 +MI,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,166.2164179 +MI,PM10 Filterable,2A1_Cement-production,,TON,685.607515 +MI,PM10 Filterable,2A2_Lime-production,,TON,185.018496 +MI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,12167.12781 +MI,PM10 Filterable,2A6_Other-minerals,,TON,11332.56975 +MI,PM10 Filterable,2B_Chemicals-other,,TON,101.6988165 +MI,PM10 Filterable,2C_Iron-steel-alloy,,TON,1520.758434 +MI,PM10 Filterable,2C3_Aluminum-production,,TON,207.04437 +MI,PM10 Filterable,2C6_Zinc-production,,TON,6.685045 +MI,PM10 Filterable,2C7_Other-metal,,TON,248.9646518 +MI,PM10 Filterable,2C7a_Copper-production,,TON,13.3161 +MI,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,1.911 +MI,PM10 Filterable,2D3d_Coating-application,,TON,58.210575 +MI,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.5395 +MI,PM10 Filterable,2H1_Pulp-and-paper,,TON,468.6810146 +MI,PM10 Filterable,2H2_Food-and-beverage,,TON,616.2706869 +MI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,162.8185518 +MI,PM10 Filterable,2I_Wood-processing,,TON,39.729905 +MI,PM10 Filterable,3Dc_Other-farm,,TON,98705.75984 +MI,PM10 Filterable,5A_Solid-waste-disposal,,TON,70.40916165 +MI,PM10 Filterable,5C_Incineration,,TON,0.7634 +MI,PM10 Filterable,5C_Incineration,biomass,TON,35.82329688 +MI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,997.416714 +MI,PM10 Filterable,5C_Open-burning-residential,,TON,3993.3249 +MI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,138.1864064 +MI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.30512 +MI,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,8.048 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,127.7403665 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,181.9116086 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3012.464102 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3.44055 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,359.5603309 +MI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,58.175237 +MI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,20.953946 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,379.8930654 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,80.21432757 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.352044834 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,370.9236723 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,44.21079006 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,122.8135727 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,59.19163786 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.703775053 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1017.089692 +MI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,6.23468117 +MI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.46243 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1580.349479 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,127.9134667 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001459534 +MI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,228.948307 +MI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,216448.0731 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,147.74006 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5763.365276 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,38.60161276 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,214.0810883 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,666.065673 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,141.8050676 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,4.24583128 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1776.57269 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,36.37155454 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1963.3752 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,98.65163652 +MI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,121.3618619 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,219.0902452 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.016319644 +MI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,307.5630812 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1277.339622 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.25262948 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,39.44001188 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.14908752 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.995527117 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,133.6810397 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,215.2799733 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,93.83266471 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.869339294 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,60.16270304 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,615.0493376 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,39697.08772 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,49.26 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,99.828 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.63 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,89.791 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,868.4007442 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,21.50376145 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003276667 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.715745 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1918.520648 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.6445814 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,448.3620281 +MI,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,339.4563443 +MI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,716.2114518 +MI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,207.2715712 +MI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,12167.12781 +MI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12092.53536 +MI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,121.6876432 +MI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2341.254294 +MI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,707.45442 +MI,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,23.146207 +MI,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,300.092068 +MI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,54.43926 +MI,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,2.019815 +MI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,58.210575 +MI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.5395 +MI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,763.8039213 +MI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3305.714793 +MI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,172.6413049 +MI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,39.729905 +MI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,98709.4343 +MI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.041830359 +MI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,76.8605015 +MI,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.888142622 +MI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,41.30295375 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,997.416714 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3993.3249 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,138.1864064 +MI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.72912 +MI,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,8.048 +MI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,94.23029 +MI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,13.65637948 +MI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1090.137944 +MI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.006212 +MI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,185.4951109 +MI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,39.4217342 +MI,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.05921 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,328.7138483 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.34109158 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,86.81773314 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,26.01886993 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.088890681 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,463.4747076 +MI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.04807175 +MI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.16578908 +MI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,26743.25458 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1043.617178 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.499740663 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,14.88304507 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.518874605 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.537349196 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,45.76966576 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,17.21 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,42.63 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.07 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,19.179 +MI,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,166.2164179 +MI,PM2.5 Filterable,2A1_Cement-production,,TON,309.142258 +MI,PM2.5 Filterable,2A2_Lime-production,,TON,62.63637048 +MI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1216.944631 +MI,PM2.5 Filterable,2A6_Other-minerals,,TON,2158.83806 +MI,PM2.5 Filterable,2B_Chemicals-other,,TON,70.30495475 +MI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,642.5852913 +MI,PM2.5 Filterable,2C3_Aluminum-production,,TON,172.9010857 +MI,PM2.5 Filterable,2C6_Zinc-production,,TON,4.075530109 +MI,PM2.5 Filterable,2C7_Other-metal,,TON,142.0731736 +MI,PM2.5 Filterable,2C7a_Copper-production,,TON,11.01186068 +MI,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.9335876 +MI,PM2.5 Filterable,2D3d_Coating-application,,TON,52.24394542 +MI,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.5395 +MI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,301.8445633 +MI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,154.7146656 +MI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,110.6271855 +MI,PM2.5 Filterable,2I_Wood-processing,,TON,13.96751332 +MI,PM2.5 Filterable,3Dc_Other-farm,,TON,19735.91007 +MI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,60.61240768 +MI,PM2.5 Filterable,5C_Incineration,,TON,0.6054273 +MI,PM2.5 Filterable,5C_Incineration,biomass,TON,24.00326899 +MI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,768.908767 +MI,PM2.5 Filterable,5C_Open-burning-residential,,TON,3657.04345 +MI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,106.5283609 +MI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +MI,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,5.442009 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,100.7559845 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,181.5331786 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1389.217341 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.5077 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,353.1435772 +MI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,50.744018 +MI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,20.953946 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,368.4314848 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,79.76821294 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.349005191 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,339.528753 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,39.04362156 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,94.90820274 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,43.85130208 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.486354074 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,994.7178924 +MI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,6.03385122 +MI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.4524951 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1532.938882 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,117.7263776 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001459534 +MI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,197.5392687 +MI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,26743.25458 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,102.4414569 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2345.960031 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,28.73056431 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,72.3447142 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,537.9986078 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,92.29880345 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.520286294 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1437.349192 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,24.226574 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1502.991743 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,52.40015348 +MI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,94.9851929 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,202.9997583 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015044193 +MI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,126.1007421 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1090.230166 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.36890883 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,17.64706425 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.424132394 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.943679814 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,126.8181705 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,208.8215291 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,86.57660038 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.869339294 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,58.35783138 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,565.8708442 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,39691.34503 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,44.13 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,63.758 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.334 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,73.845 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,842.3486859 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,19.78362721 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003276667 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.4842824 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1765.040797 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.35524339 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,412.4932495 +MI,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,339.4563443 +MI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,339.8452148 +MI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,112.7379339 +MI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1216.944631 +MI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2457.897601 +MI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,91.58081249 +MI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2017.408816 +MI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,682.7371778 +MI,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,22.64920211 +MI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,194.225261 +MI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,52.13504848 +MI,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.0460026 +MI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,52.24394542 +MI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.5395 +MI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,633.6444361 +MI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2947.338737 +MI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,121.6799386 +MI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,13.96751332 +MI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,19739.76036 +MI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.023625738 +MI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,67.06374753 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.737781777 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,29.47531589 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,768.908767 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3657.04345 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,106.5283609 +MI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.72912 +MI,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.442009 +MI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,691.76225 +MI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,17.4495785 +MI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,229014.8 +MI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,124.295 +MI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,184.2988242 +MI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,474.451245 +MI,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,5.61206 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.69300599 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.64806084 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.006477564 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1932.094295 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,5.462989338 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,138.9462232 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,6467.262518 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,521.7405875 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,18.28520275 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5374.206181 +MI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,56.194285 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.66653 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.145745 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,55.91958604 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.017893147 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000271969 +MI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,341.5792534 +MI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.155290996 +MI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,797.1808875 +MI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.906444703 +MI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.05839237 +MI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,10.14853826 +MI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,12.22233197 +MI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.216104573 +MI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.62269215 +MI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.314397873 +MI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,32.75644222 +MI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12.408679 +MI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.1732955 +MI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,64.29130379 +MI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002148522 +MI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2363.693258 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,77.6744948 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,66.75355009 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2230.091386 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,684.8987031 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,13.16267192 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,73.51673575 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.647092498 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.215101518 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.32959864 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.648543417 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,11.85977648 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,1117.598628 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,323.6 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,296.46 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,7.58 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,105.62 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.60034515 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.381573857 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000570065 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.105118036 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,23.66081423 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.880483335 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,15.80812807 +MI,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.05025 +MI,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,29.01452716 +MI,Sulfur Dioxide,2A1_Cement-production,,TON,10904.7105 +MI,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1238.4903 +MI,Sulfur Dioxide,2A6_Other-minerals,,TON,2693.937555 +MI,Sulfur Dioxide,2B_Chemicals-other,,TON,35.81828 +MI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,3907.53145 +MI,Sulfur Dioxide,2C3_Aluminum-production,,TON,16.324765 +MI,Sulfur Dioxide,2C5_Lead-production,,TON,0.000515 +MI,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,1.4319 +MI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,40.09849 +MI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,12.3667 +MI,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,0 +MI,Sulfur Dioxide,3Dc_Other-farm,,TON,0.01 +MI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.004907611 +MI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,151.741045 +MI,Sulfur Dioxide,5C_Incineration,,TON,18.63784828 +MI,Sulfur Dioxide,5C_Incineration,biomass,TON,283.1114234 +MI,Sulfur Dioxide,5C_Open-burning-residential,,TON,105.087475 +MI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.01368437 +MI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.47381 +MI,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.019735 +MI,Volatile Organic Compounds,11C_Other-natural,,TON,487941.78 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,37.988285 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,15.84114 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,971.74455 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.61595 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,532.78774 +MI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,99.92067671 +MI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,471.0434407 +MI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,180.7171462 +MI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,94.648865 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,428.2872198 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1479.960738 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.895768709 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,45.70251246 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,4.62589E-05 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,71.91452082 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,12.82807208 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.816019806 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.083574483 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2022.387159 +MI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,20.085425 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.018017012 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.827942988 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1733.836947 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1386.019023 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002686818 +MI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,637.2273317 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,947.877957 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,79395.93014 +MI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,139.7128136 +MI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2627.066566 +MI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,1000.403159 +MI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,1402.189605 +MI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,21.7881821 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3639.213912 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,330.2441673 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2382.318251 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1053.128258 +MI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4747.64362 +MI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,353.6120834 +MI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.128315967 +MI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,159.4276657 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,43.2042542 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.97272607 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.735921887 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.176285136 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,28.8709714 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,455.9179004 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,298.9458716 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3989.270458 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.097305292 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,81.95539298 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,13450.65247 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,42720.42524 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,14.51 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,105 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.903 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,962.57 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,908.3872008 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,341.5226478 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.011050397 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.9942428 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,69367.67013 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.73337959 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,29793.7953 +MI,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,88.90723 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,475.2405473 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1794.536055 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,20587.34707 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,14337.93805 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +MI,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,17275.39655 +MI,Volatile Organic Compounds,2A1_Cement-production,,TON,42.0765 +MI,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +MI,Volatile Organic Compounds,2A6_Other-minerals,,TON,63.76199923 +MI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1582.894531 +MI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1200.911919 +MI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,910.68264 +MI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,339.3584105 +MI,Volatile Organic Compounds,2C5_Lead-production,,TON,0.00241 +MI,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.021625 +MI,Volatile Organic Compounds,2C7_Other-metal,,TON,415.921945 +MI,Volatile Organic Compounds,2C7a_Copper-production,,TON,0 +MI,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,16.44715 +MI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,41628.14323 +MI,Volatile Organic Compounds,2D3d_Coating-application,,TON,31967.46131 +MI,Volatile Organic Compounds,2D3e_Degreasing,,TON,4828.571579 +MI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,87.8432508 +MI,Volatile Organic Compounds,2D3h_Printing,,TON,1188.773788 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1777.905206 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1052.632412 +MI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,887.045955 +MI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1068.897233 +MI,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2101.786365 +MI,Volatile Organic Compounds,3Dc_Other-farm,,TON,18.365 +MI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8098.678915 +MI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,0.018217678 +MI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,644.574515 +MI,Volatile Organic Compounds,5C_Incineration,,TON,0.440646317 +MI,Volatile Organic Compounds,5C_Incineration,biomass,TON,66.38340196 +MI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,680.590327 +MI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,899.548916 +MI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,155.6377079 +MI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,397.9453766 +MI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,96.60122 +MI,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1062.244303 +MI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.1169015 +MN,Ammonia,1A1a_Public-Electricity,biomass,TON,411.644051 +MN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.1863185 +MN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,93.41904805 +MN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,113.3058673 +MN,Ammonia,1A1b_Pet-refining,natural_gas,TON,32.0825381 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.204329222 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.198217313 +MN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.000144281 +MN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,421.4086158 +MN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.2375736 +MN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,5.178706749 +MN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.13299133 +MN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.084234418 +MN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,240.3650552 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.179240286 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.002592 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.007270942 +MN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.4527854 +MN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.336231988 +MN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.760053742 +MN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2029.736752 +MN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.47219122 +MN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,268.67912 +MN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.800816875 +MN,Ammonia,1A3biii_Road-bus,light_oil,TON,2.913810041 +MN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.364855662 +MN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,48.8803836 +MN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.348890461 +MN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,51.2725643 +MN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.014010342 +MN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.789748 +MN,Ammonia,1A3c_Rail,diesel_oil,TON,8.483058113 +MN,Ammonia,1A3c_Rail,light_oil,TON,0.003585763 +MN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.198377563 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,5.077496525 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,33.53149592 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.008960329 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.925159856 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.101161692 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,125.7212863 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.282469222 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.658421455 +MN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.288068701 +MN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.69162777 +MN,Ammonia,1A4bi_Residential-stationary,biomass,TON,1542.696151 +MN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,21.92318 +MN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,4.8249869 +MN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.3635229 +MN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1338.73242 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.66919814 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.684628842 +MN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.022719855 +MN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,10.07683451 +MN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.161912726 +MN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,7.182716314 +MN,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.0745 +MN,Ammonia,2B_Chemicals-other,,TON,0.76685 +MN,Ammonia,2C_Iron-steel-alloy,,TON,0.084 +MN,Ammonia,2C6_Zinc-production,,TON,0.03 +MN,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.914923 +MN,Ammonia,2D3d_Coating-application,,TON,0.577 +MN,Ammonia,2D3h_Printing,,TON,0.74886 +MN,Ammonia,2H1_Pulp-and-paper,,TON,53.5354 +MN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,80.46966494 +MN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,21.103685 +MN,Ammonia,3B1a_Cattle-dairy,,TON,26027.90219 +MN,Ammonia,3B1b_Cattle-non-dairy,,TON,12047.2346 +MN,Ammonia,3B2_Manure-sheep,,TON,505.15212 +MN,Ammonia,3B3_Manure-swine,,TON,44525.33239 +MN,Ammonia,3B4_Manure-other,,TON,1211.62932 +MN,Ammonia,3B4_Manure-poultry,,TON,26479.2771 +MN,Ammonia,3B4d_Manure-goats,,TON,256.726404 +MN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,77712.31243 +MN,Ammonia,3Dc_Other-farm,,TON,0.02 +MN,Ammonia,5C_Incineration,biomass,TON,10.527 +MN,Ammonia,5D1_Wastewater-domestic,Other_Fuel,TON,125.8880198 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,271384.0776 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,316127.9412 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19917.22334 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1409200.755 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,27887.33878 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.7601082 +MN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,310340.305 +MN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22154118.16 +MN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,274016.475 +MN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3578557.5 +MN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,258525.1679 +MN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,86871.42068 +MN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,15442.91426 +MN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3073365.868 +MN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,36402.98598 +MN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3731230.15 +MN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,203959.1258 +MN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,147974.007 +MN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6019.777433 +MN,Carbon Dioxide,1A3c_Rail,light_oil,TON,278.261518 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,157567.2696 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,222190.0516 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9744.797215 +MN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,35422.1137 +MN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,345529.7925 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3034947.472 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,51173.56065 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,73.69953449 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2781.3142 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,661716.5826 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,143082.5787 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,497327.5725 +MN,Carbon Monoxide,11C_Other-natural,,TON,105347.479 +MN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1976.2569 +MN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.73889606 +MN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7670.380763 +MN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.059658 +MN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1230.87298 +MN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,834.0959765 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2137.211744 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15946.30749 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1027.978335 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,6.571620955 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12068.39838 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,35.95719407 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,262.4936051 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2302.891909 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.431824247 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,291.5200877 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5580.143996 +MN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,6.108 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.000297908 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.017416939 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.086319599 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5965.740504 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6271.207741 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.559408576 +MN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8161.976667 +MN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4813.56362 +MN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,511235.796 +MN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2502.72415 +MN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,95675.659 +MN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,826.7083102 +MN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4531.882222 +MN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,114.2076417 +MN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7303.004001 +MN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1872.06071 +MN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6160.61341 +MN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8346.658141 +MN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5643.35195 +MN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2751.450757 +MN,Carbon Monoxide,1A3c_Rail,light_oil,TON,68.31698913 +MN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,448.9700197 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,550.1759096 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,695.1060382 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.66098617 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.21650502 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.198707551 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3784.12817 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,863.0208619 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,50395.94721 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,237.3392305 +MN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,150.9333225 +MN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,91515.68093 +MN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,189812.8156 +MN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,109.61778 +MN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,663.460561 +MN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.8176106 +MN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3096.07338 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13783.87096 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12354.0843 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.106018484 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,26.895805 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,88216.36315 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,286.0826959 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,63333.0901 +MN,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,85.62254963 +MN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MN,Carbon Monoxide,2A6_Other-minerals,,TON,649.718978 +MN,Carbon Monoxide,2B_Chemicals-other,,TON,90.655617 +MN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1625.860721 +MN,Carbon Monoxide,2C3_Aluminum-production,,TON,1.4032 +MN,Carbon Monoxide,2C5_Lead-production,,TON,20.3953 +MN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,9.98995 +MN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,22.1986 +MN,Carbon Monoxide,2D3d_Coating-application,,TON,12.375318 +MN,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,2.0213 +MN,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,17.57 +MN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1432.046977 +MN,Carbon Monoxide,2H2_Ethanol Production,,TON,40.727 +MN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1438.036897 +MN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,12.848 +MN,Carbon Monoxide,3Dc_Other-farm,,TON,85.96291 +MN,Carbon Monoxide,3F_Ag-res-on-field,,TON,23525.3809 +MN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,452.20985 +MN,Carbon Monoxide,5C_Incineration,,TON,21.15113209 +MN,Carbon Monoxide,5C_Incineration,biomass,TON,380.0631007 +MN,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,0.3084 +MN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,6903.95155 +MN,Carbon Monoxide,5C_Open-burning-residential,,TON,5798.29 +MN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,420.524254 +MN,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0175 +MN,Methane,1A3bii_Road-LDV,diesel_oil,TON,14.4292777 +MN,Methane,1A3bii_Road-LDV,light_oil,TON,1442.042525 +MN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.65166094 +MN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,331.98989 +MN,Methane,1A3biii_Road-bus,diesel_oil,TON,6.645776348 +MN,Methane,1A3biii_Road-bus,light_oil,TON,10.4748 +MN,Methane,1A3biii_Road-bus,natural_gas,TON,120.288214 +MN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,286.7146662 +MN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.270825985 +MN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,80.5323161 +MN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,20.44984185 +MN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.3091021 +MN,Nitrogen Oxides,11C_Other-natural,,TON,27597.2908 +MN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1579.410967 +MN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,72.7561939 +MN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,31231.2048 +MN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,37.26117 +MN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1094.102292 +MN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1763.324013 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1967.237928 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2148.601919 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,150.0601646 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.609857135 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4581.901697 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,17.45379319 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1180.99519 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5434.632896 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,56.46584465 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,158.1923938 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9358.993032 +MN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,6.022 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.832621013 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.183986477 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.234510046 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10821.51154 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,123.8270913 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113725334 +MN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2298.07712 +MN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1170.926031 +MN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,61883.491 +MN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1276.27113 +MN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11753.5273 +MN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2009.91871 +MN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,411.2551337 +MN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,71.4390614 +MN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22851.7121 +MN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,197.813959 +MN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20824.37944 +MN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,715.0800336 +MN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,286.193775 +MN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19436.55222 +MN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.315463561 +MN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2567.123258 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,192.6079937 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3122.969847 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,76.31441201 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,204.0807481 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.447759505 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4502.993123 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1487.37862 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1126.247884 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,63.94342123 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,337.3513729 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1262.198675 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2233.806759 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,394.6119 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,21.91122419 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.543081 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,7780.76985 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27601.23071 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,317.7588678 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.808273952 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,27.206986 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,898.4484795 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1606.836972 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3622.785143 +MN,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,34.8214041 +MN,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,170.805 +MN,Nitrogen Oxides,2A6_Other-minerals,,TON,1008.74747 +MN,Nitrogen Oxides,2B_Chemicals-other,,TON,133.3542 +MN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,22944.82577 +MN,Nitrogen Oxides,2C3_Aluminum-production,,TON,16.7300548 +MN,Nitrogen Oxides,2C5_Lead-production,,TON,44.32248 +MN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,15.06597772 +MN,Nitrogen Oxides,2D3d_Coating-application,,TON,16.699256 +MN,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,2.84709 +MN,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,5.971 +MN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1250.401 +MN,Nitrogen Oxides,2H2_Ethanol Production,,TON,13.5039 +MN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,285.82096 +MN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,14.244 +MN,Nitrogen Oxides,3Dc_Other-farm,,TON,69.62244 +MN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1073.686417 +MN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,154.49623 +MN,Nitrogen Oxides,5C_Incineration,,TON,6.355876349 +MN,Nitrogen Oxides,5C_Incineration,biomass,TON,2438.858447 +MN,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.2313 +MN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,204.2587712 +MN,Nitrogen Oxides,5C_Open-burning-residential,,TON,409.288 +MN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,18.6899729 +MN,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.08 +MN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.946877981 +MN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1157.721994 +MN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.965405441 +MN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,246.19949 +MN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.619415741 +MN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.299700786 +MN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.421640396 +MN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.359764747 +MN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.900626195 +MN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.15623194 +MN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15.25330962 +MN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.47831637 +MN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,129.476365 +MN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.08609878 +MN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3399.546767 +MN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,11.0996487 +MN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,34.97610292 +MN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,417.1454434 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.192074742 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6918.084768 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,2.801460664 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,76.92083122 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2418.588527 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,29.22375063 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,10.24467271 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,276.4141164 +MN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.170528 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.219314839 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.039980075 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000455103 +MN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,31029.03167 +MN,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0.3563 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,453.7276891 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,227.5990003 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.79312623 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,57.53561915 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.137582963 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.916685868 +MN,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1126.20144 +MN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,23.67734 +MN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,14.9474333 +MN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.3926078 +MN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.4767909 +MN,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0047434 +MN,PM10 Filterable,2A1_Cement-production,,TON,11.40464375 +MN,PM10 Filterable,2A2_Lime-production,,TON,71.4394405 +MN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,15900.07104 +MN,PM10 Filterable,2A6_Other-minerals,,TON,14566.62728 +MN,PM10 Filterable,2B_Chemicals-other,,TON,120.4147252 +MN,PM10 Filterable,2C_Iron-steel-alloy,,TON,4930.007841 +MN,PM10 Filterable,2C3_Aluminum-production,,TON,47.8694432 +MN,PM10 Filterable,2C5_Lead-production,,TON,44.13266255 +MN,PM10 Filterable,2C6_Zinc-production,,TON,0.9296 +MN,PM10 Filterable,2C7_Other-metal,,TON,2233.494416 +MN,PM10 Filterable,2C7a_Copper-production,,TON,0.4536704 +MN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,16.37 +MN,PM10 Filterable,2D3d_Coating-application,,TON,498.3905864 +MN,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.265059 +MN,PM10 Filterable,2D3h_Printing,,TON,18.38421 +MN,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,1.813 +MN,PM10 Filterable,2H1_Pulp-and-paper,,TON,705.8041559 +MN,PM10 Filterable,2H2_Ethanol Production,,TON,7.12903 +MN,PM10 Filterable,2H2_Food-and-beverage,,TON,1762.415696 +MN,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,312.7980776 +MN,PM10 Filterable,2I_Wood-processing,,TON,108.8836958 +MN,PM10 Filterable,3Dc_Other-farm,,TON,272149.1596 +MN,PM10 Filterable,5A_Solid-waste-disposal,,TON,29.40180708 +MN,PM10 Filterable,5C_Incineration,,TON,0.9938 +MN,PM10 Filterable,5C_Incineration,biomass,TON,103.2997572 +MN,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.5474 +MN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,694.479461 +MN,PM10 Filterable,5C_Open-burning-residential,,TON,2592.134 +MN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,69.6368067 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,208.5933953 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.8952974 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5271.122753 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,11.540941 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,56.26492049 +MN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,597.3508935 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,160.4052234 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,33.39791279 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.486975179 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.255347586 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7511.446207 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,4.340635908 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,98.69904226 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3106.144815 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,32.14689887 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,10.631657 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,326.5537168 +MN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.448653 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.474926728 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.044851703 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.022273132 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,929.931144 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.56108132 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909277 +MN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,187.1934797 +MN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,31029.03167 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,84.71325501 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4041.77058 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,104.1507418 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,655.930615 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,152.8900344 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,18.8484936 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.12583561 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1357.035287 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.997133327 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1634.440718 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,30.05897041 +MN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.4306269 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,621.4478325 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038646325 +MN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,72.68885556 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,467.1987353 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,234.5678847 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.16428976 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,62.4229885 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.283858764 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.36631845 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,145.2478977 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,61.31640359 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.223086858 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,26.17314436 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,324.1837451 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,30012.61445 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,52.17775 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,17.44797044 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.8649284 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,40.2341901 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2431.227267 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,24.76493349 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009316704 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.855985 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1013.925247 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.16109546 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,330.9431568 +MN,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0047434 +MN,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,11.77002029 +MN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,91.7247267 +MN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,15900.07104 +MN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,15340.90489 +MN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,148.1433059 +MN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,6478.728655 +MN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,166.308956 +MN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,162.4844968 +MN,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.32 +MN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,2421.491758 +MN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.0203113 +MN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,48.949665 +MN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,497.2177154 +MN,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.265059 +MN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,18.38421 +MN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,4.768 +MN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1163.894854 +MN,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,9.81903 +MN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3691.921277 +MN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,417.3109006 +MN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,202.9264449 +MN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,272230.6334 +MN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3760.098783 +MN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,76.94091 +MN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.096512172 +MN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,148.1500259 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.7215 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,694.479461 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2592.134 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,69.6368067 +MN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,109.3740965 +MN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.055147932 +MN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,914.762117 +MN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.0896223 +MN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,20.70198109 +MN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,292.6179789 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.098477306 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5908.984537 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,2.784697043 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,72.9580389 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,413.0046576 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.04407651 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,10.10739185 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,160.8344738 +MN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.160078 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.17995739 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.021309353 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000450351 +MN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5990.81569 +MN,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0.3563 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,392.617047 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,228.5418492 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,7.964547994 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,21.51159236 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.106755443 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.930048013 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1126.20144 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,18.196647 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,9.149434782 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.3017221 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.51243575 +MN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.00401149 +MN,PM2.5 Filterable,2A1_Cement-production,,TON,4.025232768 +MN,PM2.5 Filterable,2A2_Lime-production,,TON,27.7310888 +MN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1590.007104 +MN,PM2.5 Filterable,2A6_Other-minerals,,TON,2776.178564 +MN,PM2.5 Filterable,2B_Chemicals-other,,TON,86.01750381 +MN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,3754.753747 +MN,PM2.5 Filterable,2C3_Aluminum-production,,TON,26.78434485 +MN,PM2.5 Filterable,2C5_Lead-production,,TON,30.55422326 +MN,PM2.5 Filterable,2C6_Zinc-production,,TON,0.8285563 +MN,PM2.5 Filterable,2C7_Other-metal,,TON,733.0164806 +MN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.39126423 +MN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,16.37 +MN,PM2.5 Filterable,2D3d_Coating-application,,TON,414.4016178 +MN,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.2199426 +MN,PM2.5 Filterable,2D3h_Printing,,TON,18.34967387 +MN,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,1.813 +MN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,377.3017099 +MN,PM2.5 Filterable,2H2_Ethanol Production,,TON,4.76239282 +MN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1092.602473 +MN,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,151.4381591 +MN,PM2.5 Filterable,2I_Wood-processing,,TON,35.21282394 +MN,PM2.5 Filterable,3Dc_Other-farm,,TON,54442.50662 +MN,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,29.3357 +MN,PM2.5 Filterable,5C_Incineration,,TON,0.7998 +MN,PM2.5 Filterable,5C_Incineration,biomass,TON,60.6034804 +MN,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.31181 +MN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,535.37463 +MN,PM2.5 Filterable,5C_Open-burning-residential,,TON,2373.881 +MN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,53.6832729 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,188.49116 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.866011418 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2786.338103 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,8.5308746 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,41.97522867 +MN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,472.823429 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,155.5429083 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,33.18145665 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.484540235 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.161523079 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6506.872957 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,4.31968813 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,94.74836742 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1096.800168 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,19.96888046 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,10.50792952 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,210.860762 +MN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.438203 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.404402692 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.026179942 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.001180319 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,902.0331523 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.10259563 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909277 +MN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,158.4229842 +MN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5990.81569 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,56.66456289 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1737.466234 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,77.0484553 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,266.672023 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,118.2266516 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.3236891 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.720592423 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1018.361073 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.302780181 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1137.20855 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,13.81761926 +MN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.39536472 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,574.3150608 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.035624909 +MN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,29.45803064 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,405.9987767 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,233.1438331 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.35158752 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,26.53103756 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.258634895 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.61053271 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,140.8904263 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,56.58700267 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.223086858 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,25.38796343 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,298.2609905 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,30011.86654 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,46.69585 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,11.65331191 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.7718807 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,33.2417387 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2358.291061 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,22.78419336 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009316704 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.7403032 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,932.8123603 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,31.19624882 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,304.4675443 +MN,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.00401149 +MN,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,4.390609305 +MN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,48.750775 +MN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1590.007104 +MN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3353.015134 +MN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,113.1370185 +MN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5309.534043 +MN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,145.223861 +MN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,148.9060575 +MN,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.218958 +MN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,921.6078431 +MN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,1.95790513 +MN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,48.949665 +MN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,409.6230138 +MN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.2199426 +MN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,18.32237387 +MN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,4.768 +MN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,834.5986841 +MN,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,7.45239282 +MN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3100.162544 +MN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,255.6096547 +MN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,129.255573 +MN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,54581.94603 +MN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2189.024402 +MN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,76.68071 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.902856026 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,105.4534053 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.48591 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,535.37463 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2373.86 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,53.6832729 +MN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,336.7020365 +MN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,9.307961908 +MN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,40791.7976 +MN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,20.47648 +MN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,168.98419 +MN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,811.5847074 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.559480938 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.687748799 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.479945635 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,20.28677741 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,872.8096766 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.273529814 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,478.0557632 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,6604.27865 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,240.8407177 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,20.40902319 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,397.1002952 +MN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0352628 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.425445113 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.613241494 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.001364976 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,26.3205023 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.51199427 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000171141 +MN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,279.3864786 +MN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.668779314 +MN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,441.039847 +MN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.36541865 +MN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,71.2411011 +MN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.221146278 +MN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.729417316 +MN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.081762375 +MN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,26.18392919 +MN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.724703746 +MN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,31.66309267 +MN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.06037773 +MN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.94583954 +MN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,190.4683756 +MN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005083743 +MN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,331.6599576 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,23.43111415 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,275.2597053 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,47.25530366 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,697.6744925 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.096421992 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.91699618 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.986945412 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.078272591 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.215452744 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.67089655 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.296137888 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,764.6640933 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,933.9481 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,72.58421765 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,15.486064 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,46.433466 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,57.09117933 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.932817938 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001620901 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.052510731 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,12.00854996 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.069085541 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.042188557 +MN,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.32188 +MN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,316.4556 +MN,Sulfur Dioxide,2A6_Other-minerals,,TON,1640.490212 +MN,Sulfur Dioxide,2B_Chemicals-other,,TON,41.6227 +MN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,4807.695882 +MN,Sulfur Dioxide,2C3_Aluminum-production,,TON,9.063809 +MN,Sulfur Dioxide,2C5_Lead-production,,TON,1743.769 +MN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,3.10761 +MN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0081285 +MN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,31.76 +MN,Sulfur Dioxide,2D3d_Coating-application,,TON,1.629175141 +MN,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.06646 +MN,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0.07497 +MN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,27.853059 +MN,Sulfur Dioxide,2H2_Ethanol Production,,TON,0.2124 +MN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,250.904316 +MN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.90754 +MN,Sulfur Dioxide,3Dc_Other-farm,,TON,27.91039 +MN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,490.9575525 +MN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,117.4792564 +MN,Sulfur Dioxide,5C_Incineration,,TON,3.706523226 +MN,Sulfur Dioxide,5C_Incineration,biomass,TON,396.0996407 +MN,Sulfur Dioxide,5C_Open-burning-residential,,TON,68.221 +MN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.03836809 +MN,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.005 +MN,Volatile Organic Compounds,11C_Other-natural,,TON,594812.22 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,121.1703744 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.752820057 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,498.905972 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.0071891 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,46.94365749 +MN,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,269.5633533 +MN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,935.216037 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,198.2229941 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,675.9051549 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.017450828 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.448381209 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,430.4074439 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,92.75766741 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,40.22378746 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.539904128 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,28.08798748 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,818.9075548 +MN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.322409 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.074259048 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.001018419 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.018947016 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1109.530586 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,465.1120947 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001859407 +MN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,485.3074991 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,520.148046 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,48282.3414 +MN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,389.53742 +MN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8330.4507 +MN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,185.8522574 +MN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,230.1367198 +MN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,14.2742646 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1908.530809 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,77.53568474 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1439.897131 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,396.5761122 +MN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1026.293328 +MN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,970.5167129 +MN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.658751491 +MN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,58.9804993 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,15.74854383 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,265.2975687 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.538317676 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.457546101 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.072584924 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,255.7969073 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,202.7339854 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2621.646848 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.756527657 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,35.6503681 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7118.417726 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,32145.85656 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,15.346508 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,24.1272839 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.254465 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,425.625008 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2544.505147 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,652.2347644 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.031420603 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.9931013 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,39438.79503 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,73.1676886 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,20935.46514 +MN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,769.0473381 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,22.77810621 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1554.69045 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11987.98025 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,10414.18518 +MN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.0653 +MN,Volatile Organic Compounds,2A6_Other-minerals,,TON,56.58247561 +MN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1170.669935 +MN,Volatile Organic Compounds,2B_Chemicals-other,,TON,1080.139037 +MN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,562.0189293 +MN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,38.923478 +MN,Volatile Organic Compounds,2C5_Lead-production,,TON,4.77348 +MN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,66.730984 +MN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.078155 +MN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,22475.7038 +MN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,29.96412 +MN,Volatile Organic Compounds,2D3d_Coating-application,,TON,21444.75198 +MN,Volatile Organic Compounds,2D3e_Degreasing,,TON,4933.95695 +MN,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,7.84093 +MN,Volatile Organic Compounds,2D3h_Printing,,TON,3230.565028 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,402.969186 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,8.135 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1761.88888 +MN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1198.981188 +MN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,159.17631 +MN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2349.470432 +MN,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,679.3873656 +MN,Volatile Organic Compounds,2I_Wood-processing,,TON,6.891 +MN,Volatile Organic Compounds,3Dc_Other-farm,,TON,203.3023831 +MN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,18334.07881 +MN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1858.670095 +MN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,220.02969 +MN,Volatile Organic Compounds,5C_Incineration,,TON,6.347992981 +MN,Volatile Organic Compounds,5C_Incineration,biomass,TON,19.07528063 +MN,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,0.004241 +MN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,473.8802329 +MN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,2046.585 +MN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,78.4311276 +MN,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,190.7326281 +MN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.006735 +MN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,12.9209 +MN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,198.936944 +MO,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.65 +MO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,168.4507 +MO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,119.4698994 +MO,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,0.005 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.505169117 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.181871624 +MO,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,9.865410472 +MO,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.437812054 +MO,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.060532012 +MO,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.366554876 +MO,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.174725675 +MO,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,73.42959008 +MO,Ammonia,1A2c_Chemicals,natural_gas,TON,0.03 +MO,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.14 +MO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,10.99801829 +MO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.301821792 +MO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.972983389 +MO,Ammonia,1A3bii_Road-LDV,light_oil,TON,2000.417959 +MO,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.11219606 +MO,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,144.8346698 +MO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.45611702 +MO,Ammonia,1A3biii_Road-bus,light_oil,TON,1.217135159 +MO,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.175065093 +MO,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,139.8315399 +MO,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,4.88881636 +MO,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,119.3713795 +MO,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,21.13269192 +MO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.18086597 +MO,Ammonia,1A3c_Rail,diesel_oil,TON,15.53903727 +MO,Ammonia,1A3c_Rail,light_oil,TON,0.007344988 +MO,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.990905989 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,10.10634613 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.390755926 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.262299443 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.065261443 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.082046022 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.68355907 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.330410302 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.721750035 +MO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.504644071 +MO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.367882444 +MO,Ammonia,1A4bi_Residential-stationary,biomass,TON,539.6557706 +MO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.682499887 +MO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Ammonia,1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.647999551 +MO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1078.642534 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.70016604 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.468517272 +MO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.025720094 +MO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.653158768 +MO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.821710735 +MO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.073448207 +MO,Ammonia,2A1_Cement-production,,TON,54.27 +MO,Ammonia,2A2_Lime-production,Other_Fuel,TON,0.01 +MO,Ammonia,2A6_Other-minerals,Other_Fuel,TON,36.47 +MO,Ammonia,2B_Chemicals-other,,TON,25.62 +MO,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,2.96 +MO,Ammonia,2H2_Ethanol Production,,TON,3.0185 +MO,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,18.47 +MO,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,65.486 +MO,Ammonia,3B1a_Cattle-dairy,,TON,5377.417063 +MO,Ammonia,3B1b_Cattle-non-dairy,,TON,22379.01561 +MO,Ammonia,3B2_Manure-sheep,,TON,269.28132 +MO,Ammonia,3B3_Manure-swine,,TON,25632.67732 +MO,Ammonia,3B4_Manure-other,,TON,2004.66948 +MO,Ammonia,3B4_Manure-poultry,,TON,23146.79214 +MO,Ammonia,3B4d_Manure-goats,,TON,672.276264 +MO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,43071.08171 +MO,Ammonia,5D1_Wastewater-domestic,,TON,1169.350295 +MO,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.01 +MO,Ammonia,5E_Other-waste,Other_Fuel,TON,7.73 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,308439.7224 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,330464.2676 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18181.28484 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1353329.206 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25032.09138 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.466750607 +MO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,210513.2979 +MO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21393015.58 +MO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,152199.3921 +MO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2042734.788 +MO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,358043.7475 +MO,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,37355.30083 +MO,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,7667.75473 +MO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8280178.292 +MO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,132158.5884 +MO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8546514.163 +MO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,612827.6561 +MO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,214518.0618 +MO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,12277.68953 +MO,Carbon Dioxide,1A3c_Rail,light_oil,TON,569.8673866 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,163490.4232 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,225753.998 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10049.11598 +MO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,62065.08597 +MO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,469241.6828 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2054549.928 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,34995.52419 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,49.88525392 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3148.6039 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,173404.5259 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,101188.7039 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,351253.5663 +MO,Carbon Monoxide,11C_Other-natural,,TON,140153.142 +MO,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,33.04 +MO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,21.8 +MO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,29382.96 +MO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1063.888504 +MO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,10.62 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2086.696699 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15420.25456 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,934.321769 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1114.876867 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,225.1515932 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,290.2551629 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.72071741 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,7.61454181 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4012.719997 +MO,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,5.15 +MO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.47 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5640.45135 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5884.094258 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.466174251 +MO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5790.98681 +MO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2200.381081 +MO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,390826.9457 +MO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1652.68071 +MO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,66511.7127 +MO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1314.623712 +MO,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1719.352222 +MO,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,71.6683261 +MO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18785.1125 +MO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4439.724191 +MO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15461.29261 +MO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,14884.00442 +MO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9416.65863 +MO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5034.123298 +MO,Carbon Monoxide,1A3c_Rail,light_oil,TON,150.2924811 +MO,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,662.3251022 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,928.5418012 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,40.82116374 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,119.2213961 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.436660656 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.387310667 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2373.584598 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,866.3681756 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,54122.95028 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,235.3089786 +MO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,253.5429747 +MO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,129427.0714 +MO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,65408.69838 +MO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,3.412500981 +MO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.239998861 +MO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2536.405205 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9332.872151 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,9177.712029 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.486620118 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,30.439546 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,36498.12876 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,202.3191896 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,47519.13077 +MO,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,498.9733 +MO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,54.01 +MO,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MO,Carbon Monoxide,2A1_Cement-production,,TON,826.63 +MO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,12375 +MO,Carbon Monoxide,2A6_Other-minerals,,TON,9689.67 +MO,Carbon Monoxide,2B_Chemicals-other,,TON,2463.19 +MO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2.33 +MO,Carbon Monoxide,2C3_Aluminum-production,,TON,24537.67 +MO,Carbon Monoxide,2C5_Lead-production,,TON,25628.2 +MO,Carbon Monoxide,2C7a_Copper-production,,TON,112.82 +MO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,3.46 +MO,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.54 +MO,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,202.54 +MO,Carbon Monoxide,2H2_Ethanol Production,,TON,40.28 +MO,Carbon Monoxide,2H2_Food-and-beverage,,TON,906.995329 +MO,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,28.73 +MO,Carbon Monoxide,3F_Ag-res-on-field,,TON,14.09712354 +MO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1544.410821 +MO,Carbon Monoxide,5C_Incineration,biomass,TON,839.3854 +MO,Carbon Monoxide,5C_Open-burning-commercial,,TON,4.66 +MO,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,1.4 +MO,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,13555.45 +MO,Carbon Monoxide,5C_Open-burning-residential,,TON,6733.68823 +MO,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,735.849022 +MO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,62.5 +MO,Methane,1A3bii_Road-LDV,diesel_oil,TON,12.00935739 +MO,Methane,1A3bii_Road-LDV,light_oil,TON,1168.358138 +MO,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.62869192 +MO,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,265.530813 +MO,Methane,1A3biii_Road-bus,diesel_oil,TON,6.092830955 +MO,Methane,1A3biii_Road-bus,light_oil,TON,4.020906133 +MO,Methane,1A3biii_Road-bus,natural_gas,TON,69.0132734 +MO,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,743.7474153 +MO,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.756095693 +MO,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,153.1921832 +MO,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,19.53259964 +MO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.12841914 +MO,Nitrogen Oxides,11C_Other-natural,,TON,35050.4936 +MO,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,12.12 +MO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,144.53 +MO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,65630.89 +MO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,857.053 +MO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,13.03 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2165.273767 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2037.486422 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,136.4793886 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,482.7552542 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,986.8831726 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2081.161458 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,25.88129426 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,5.721260538 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10154.35088 +MO,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,8.3 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.77 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.82 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10194.43302 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,104.0893576 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.09477088 +MO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1600.783787 +MO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,641.8330248 +MO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,51194.20934 +MO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,708.91135 +MO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7982.21661 +MO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3765.503241 +MO,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,174.3402032 +MO,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,43.9093955 +MO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,62529.56147 +MO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,601.879018 +MO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,47670.10989 +MO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1909.099351 +MO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,442.758964 +MO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,34309.28126 +MO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.309588887 +MO,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3258.341502 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,343.0519366 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,190.2155726 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,559.4952385 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.772511138 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.05729751 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2943.033037 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1495.271775 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1006.266805 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,62.44059134 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,564.6960154 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1509.811697 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,927.4316687 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,12.28499463 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,11.66400225 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6417.700525 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18687.76442 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,182.5088216 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.223931636 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,30.806034 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,365.4254255 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1136.361943 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2282.370458 +MO,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,214.0631 +MO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,22.73 +MO,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MO,Nitrogen Oxides,2A1_Cement-production,,TON,1733.91 +MO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,4916.95 +MO,Nitrogen Oxides,2A6_Other-minerals,,TON,5580.87 +MO,Nitrogen Oxides,2B_Chemicals-other,,TON,1007.23 +MO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3.05 +MO,Nitrogen Oxides,2C3_Aluminum-production,,TON,19.61 +MO,Nitrogen Oxides,2C5_Lead-production,,TON,61.34 +MO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,8.3 +MO,Nitrogen Oxides,2C7a_Copper-production,,TON,2.8 +MO,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,1.9 +MO,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,83.61 +MO,Nitrogen Oxides,2H2_Ethanol Production,,TON,29.49 +MO,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,86.42 +MO,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,5.41 +MO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.61774632 +MO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,125.18 +MO,Nitrogen Oxides,5C_Incineration,biomass,TON,140.1474 +MO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.13 +MO,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.09 +MO,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,401.11 +MO,Nitrogen Oxides,5C_Open-burning-residential,,TON,475.319099 +MO,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,32.704398 +MO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.41 +MO,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,1.85 +MO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.654072876 +MO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1112.671338 +MO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.645481085 +MO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,246.742624 +MO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.83921331 +MO,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.132685098 +MO,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.474945356 +MO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.506250986 +MO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.706604134 +MO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.94285567 +MO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,17.8594743 +MO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.263698829 +MO,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.04 +MO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.09880955 +MO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3775.3249 +MO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,50.7654 +MO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,12.561 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,671.8300091 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,66.80361584 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,108.350566 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.522154873 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.265785501 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,115.9570576 +MO,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.1628492 +MO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.133 +MO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,577332.7208 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,703.5399718 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.21239589 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,7.989481062 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.24992839 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.106160779 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.8994829 +MO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.737099807 +MO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM10 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.699839765 +MO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.67901604 +MO,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,266.1 +MO,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MO,PM10 Filterable,2A1_Cement-production,,TON,468.5562973 +MO,PM10 Filterable,2A2_Lime-production,,TON,830.471386 +MO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,45214.61498 +MO,PM10 Filterable,2A6_Other-minerals,,TON,3116.432251 +MO,PM10 Filterable,2B_Chemicals-other,,TON,389.9779221 +MO,PM10 Filterable,2C_Iron-steel-alloy,,TON,97.3481215 +MO,PM10 Filterable,2C3_Aluminum-production,,TON,398.2345587 +MO,PM10 Filterable,2C5_Lead-production,,TON,29.69094437 +MO,PM10 Filterable,2C6_Zinc-production,,TON,0.51 +MO,PM10 Filterable,2C7_Other-metal,,TON,24.31779226 +MO,PM10 Filterable,2C7a_Copper-production,,TON,4.43641565 +MO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.78834025 +MO,PM10 Filterable,2D3d_Coating-application,,TON,93.81 +MO,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,5.39 +MO,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,0.05 +MO,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,85.74956 +MO,PM10 Filterable,2H2_Ethanol Production,,TON,0.33 +MO,PM10 Filterable,2H2_Food-and-beverage,,TON,391.1454619 +MO,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,278.033369 +MO,PM10 Filterable,2I_Wood-processing,,TON,18.14 +MO,PM10 Filterable,3Dc_Other-farm,,TON,187594.6311 +MO,PM10 Filterable,5A_Solid-waste-disposal,,TON,99.069372 +MO,PM10 Filterable,5C_Incineration,biomass,TON,13.548432 +MO,PM10 Filterable,5C_Open-burning-commercial,,TON,0.368022 +MO,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,6.8931 +MO,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1363.69 +MO,PM10 Filterable,5C_Open-burning-residential,,TON,3010.35427 +MO,PM10 Filterable,5C_Open-burning-yard-waste,,TON,121.8530661 +MO,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.280562 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.98 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.3541033 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,9007.4042 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,129.5369333 +MO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,10.19 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,176.3302778 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,34.62282919 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.26592102 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,697.909675 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,70.58835903 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,563.6720976 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.1511843 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.631006984 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,227.0709146 +MO,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.39 +MO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.35 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,874.1617684 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.11075084 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000757729 +MO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,119.7655138 +MO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,577332.7208 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,44.25598004 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2959.294169 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,50.8433766 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,317.260054 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,275.9826583 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.48843252 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.174040335 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3625.569606 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,21.51478872 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3883.719626 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,66.6662508 +MO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,23.05053792 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1146.488777 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.079127029 +MO,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,107.6886591 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,728.9804341 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.68749882 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,70.39434942 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.365385133 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.239056775 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,29.22725792 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,143.4596812 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,62.53152906 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.260871476 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,42.85432935 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,456.8368945 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9598.581166 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.622199671 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.540705061 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,32.94649021 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1646.139345 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,18.30165842 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006306256 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.3631682 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,363.2120979 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.7444924 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,234.0118759 +MO,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,266.3005 +MO,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,646.9 +MO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1068.48 +MO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,45214.61498 +MO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3287.5986 +MO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,442.3 +MO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,109.59 +MO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,488.72 +MO,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,61.51 +MO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.23 +MO,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,41.32 +MO,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,16.4 +MO,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.28 +MO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.79 +MO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,95.48 +MO,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,5.39 +MO,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.05 +MO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,98.57 +MO,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,24.03 +MO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2254.737507 +MO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,278.37 +MO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,18.14 +MO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,187603.007 +MO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2.288974253 +MO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,121.2 +MO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.6532 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.57 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,8.51 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1363.69 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3010.35427 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,121.8530661 +MO,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.41 +MO,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.03 +MO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.88836293 +MO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1128.418242 +MO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,47.17985856 +MO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,10.4644056 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,569.774687 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,61.23508462 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,37.06936867 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.18361157 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.153166908 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,90.1325472 +MO,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.1134492 +MO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1327625 +MO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,63288.45993 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,605.1268196 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.13561784 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.016465377 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.467338158 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.08167076 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.107390588 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.566475053 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.537840033 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.973467876 +MO,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,80.0217 +MO,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MO,PM2.5 Filterable,2A1_Cement-production,,TON,105.5811274 +MO,PM2.5 Filterable,2A2_Lime-production,,TON,386.1846665 +MO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4521.461498 +MO,PM2.5 Filterable,2A6_Other-minerals,,TON,756.5663756 +MO,PM2.5 Filterable,2B_Chemicals-other,,TON,268.235379 +MO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,49.59889932 +MO,PM2.5 Filterable,2C3_Aluminum-production,,TON,199.9584461 +MO,PM2.5 Filterable,2C5_Lead-production,,TON,21.91499086 +MO,PM2.5 Filterable,2C6_Zinc-production,,TON,0.48069 +MO,PM2.5 Filterable,2C7_Other-metal,,TON,11.15355491 +MO,PM2.5 Filterable,2C7a_Copper-production,,TON,4.30965165 +MO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.74834025 +MO,PM2.5 Filterable,2D3d_Coating-application,,TON,89.64836336 +MO,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,5.16 +MO,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,0.05 +MO,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,43.52630419 +MO,PM2.5 Filterable,2H2_Ethanol Production,,TON,0.03 +MO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,146.5473203 +MO,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,214.5094539 +MO,PM2.5 Filterable,2I_Wood-processing,,TON,6.3190883 +MO,PM2.5 Filterable,3Dc_Other-farm,,TON,37490.97966 +MO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,24.8799255 +MO,PM2.5 Filterable,5C_Incineration,biomass,TON,6.753704 +MO,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.368022 +MO,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,3.9264457 +MO,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1051.29 +MO,PM2.5 Filterable,5C_Open-burning-residential,,TON,2756.85069 +MO,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,93.9369662 +MO,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.280562 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.97 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.54803302 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6360.497442 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,125.9693052 +MO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,11.0534056 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,170.9990867 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,34.42749348 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.263907404 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,596.3271106 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,65.01635279 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,491.8452414 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,6.819006326 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.513573332 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,202.0030207 +MO,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.3406 +MO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.3497625 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,847.9372385 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,36.00556093 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000757729 +MO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,103.2946533 +MO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,63288.45993 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,27.98439755 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1066.531928 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,37.9203946 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,130.4086241 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,224.1809555 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.964811995 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.524123812 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2802.18117 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,13.02344457 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2802.922184 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,22.42239875 +MO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.33537715 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1057.978486 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.072939926 +MO,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,104.4580692 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,630.5598994 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.61213134 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,64.42981402 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.596781348 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.214583399 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,26.39909816 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,139.1558626 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,57.69599511 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.260871476 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.56870145 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,420.3080378 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9595.996192 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.449096178 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.37870402 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,27.16646055 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1596.755275 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.83783762 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006306256 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.2322754 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,334.1564832 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.06215233 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,215.2910417 +MO,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,80.1295 +MO,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,283.9249425 +MO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,624.6490195 +MO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4521.461498 +MO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1193.180951 +MO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,320.5574541 +MO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,61.84077915 +MO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,290.4439138 +MO,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,53.73404506 +MO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.20069 +MO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,28.15575795 +MO,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,16.273232 +MO,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.28 +MO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.75 +MO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,91.31836336 +MO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,5.16 +MO,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.05 +MO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,56.34674419 +MO,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,23.73 +MO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2010.13986 +MO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,214.8460844 +MO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,6.3190883 +MO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,37499.35553 +MO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1.402494864 +MO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,50.860554 +MO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.83597 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.57 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,5.5433457 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1051.29 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2756.85069 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,93.9369662 +MO,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.41 +MO,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1.4 +MO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,22.5 +MO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,206552.76 +MO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,21.179 +MO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,4.25 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.830257337 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.869133042 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.434620582 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,67.23764431 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,127.4507347 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,12329.51369 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,163.0855737 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,10.33318965 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,215.9360726 +MO,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1.02 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.27 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,25.25231086 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.459572506 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000142617 +MO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,212.1783254 +MO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.80185486 +MO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,423.8459631 +MO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.311535912 +MO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.4660038 +MO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.103066885 +MO,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.740706526 +MO,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.040596833 +MO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,71.0173483 +MO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.617683004 +MO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,73.05171537 +MO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12.1429203 +MO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.24952029 +MO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,348.674643 +MO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.01041115 +MO,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,40.04002985 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,35.8473353 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.91482895 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6795.658978 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,30.19060763 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.345237807 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.45680825 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.096750183 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.141818328 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.222196138 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.174030535 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.550673289 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,190.2348789 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,29.07449589 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,27.60479911 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,38.03706461 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,38.64894488 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.637901265 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001097145 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.059444286 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.146407507 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.170470134 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.38631648 +MO,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,139.2126 +MO,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MO,Sulfur Dioxide,2A1_Cement-production,,TON,147.85 +MO,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,3546.58 +MO,Sulfur Dioxide,2A6_Other-minerals,,TON,1739.51 +MO,Sulfur Dioxide,2B_Chemicals-other,,TON,167.54 +MO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.23 +MO,Sulfur Dioxide,2C3_Aluminum-production,,TON,5877.41 +MO,Sulfur Dioxide,2C5_Lead-production,,TON,17520.37 +MO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.12 +MO,Sulfur Dioxide,2C7a_Copper-production,,TON,7.39 +MO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,1.26 +MO,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.51 +MO,Sulfur Dioxide,2H2_Ethanol Production,,TON,40.3 +MO,Sulfur Dioxide,2H2_Food-and-beverage,,TON,80.86 +MO,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,36.76 +MO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.289382392 +MO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,29.03 +MO,Sulfur Dioxide,5C_Incineration,biomass,TON,25.0298 +MO,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.01 +MO,Sulfur Dioxide,5C_Open-burning-residential,,TON,79.219828 +MO,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.06648569 +MO,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.13 +MO,Volatile Organic Compounds,11C_Other-natural,,TON,1148698.025 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.92 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.29 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1467.03 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,108.97693 +MO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,171.19 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,207.8804373 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,635.999592 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.698473232 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,62.15110413 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.609159165 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,6.753563619 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.460956826 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.959529641 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,463.3368857 +MO,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.06 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.25 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1036.800141 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,426.0591363 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001549505 +MO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,359.3354483 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,254.0295341 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,38139.71131 +MO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,257.121017 +MO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6957.31443 +MO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,311.4296806 +MO,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,79.75090047 +MO,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,9.23482818 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5802.968617 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,157.60218 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3669.870676 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,597.4739819 +MO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1218.362346 +MO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1754.357488 +MO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,5.784147619 +MO,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,74.53939862 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,26.6860717 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.631199653 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.143107544 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.092064548 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.174387242 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,162.5061297 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,199.2132529 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2758.632578 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.734306766 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,58.37275507 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9915.392209 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,11698.37049 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.477749982 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,heavy_oil,TON,0 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.45359997 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,348.6730633 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1722.861205 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,484.0851825 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.021267075 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.9133182 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11658.61071 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,51.74459575 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,15927.35424 +MO,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,744.6014001 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,305.4477693 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,5041.827238 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,16002.37148 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,10185.93124 +MO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,17.25 +MO,Volatile Organic Compounds,2A1_Cement-production,,TON,225.04 +MO,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,31.54 +MO,Volatile Organic Compounds,2A6_Other-minerals,,TON,252.5423805 +MO,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1448.51914 +MO,Volatile Organic Compounds,2B_Chemicals-other,,TON,1652.47 +MO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,27.75 +MO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,595.04 +MO,Volatile Organic Compounds,2C5_Lead-production,,TON,150.42 +MO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,160.68 +MO,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.01 +MO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,25243.32895 +MO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,45.09 +MO,Volatile Organic Compounds,2D3d_Coating-application,,TON,17520.45508 +MO,Volatile Organic Compounds,2D3e_Degreasing,,TON,3797.893185 +MO,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,12.195 +MO,Volatile Organic Compounds,2D3h_Printing,,TON,2122.744395 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1998.279269 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1044.780953 +MO,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,223.49 +MO,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,3.28 +MO,Volatile Organic Compounds,2H2_Ethanol Production,,TON,33.49 +MO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1124.365539 +MO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1023.16 +MO,Volatile Organic Compounds,3Dc_Other-farm,,TON,188.9 +MO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,11258.6099 +MO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1.088250776 +MO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,85.91 +MO,Volatile Organic Compounds,5C_Incineration,biomass,TON,51.6772 +MO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.63 +MO,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,0.09 +MO,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,930.52 +MO,Volatile Organic Compounds,5C_Open-burning-residential,,TON,678.122131 +MO,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,137.2416666 +MO,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,113.8209345 +MO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,23.66 +MO,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.9 +MO,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.07 +MS,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,62.99799 +MS,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +MS,Ammonia,1A1a_Public-Electricity,hard_coal,TON,33.13032 +MS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,306.3248142 +MS,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.475302732 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.155901141 +MS,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.85 +MS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +MS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.338100364 +MS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.118991184 +MS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.795301151 +MS,Ammonia,1A3bii_Road-LDV,light_oil,TON,1452.066815 +MS,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.90589884 +MS,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,227.418757 +MS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.752165331 +MS,Ammonia,1A3biii_Road-bus,light_oil,TON,0.781083816 +MS,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.077179808 +MS,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.20591436 +MS,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.286055775 +MS,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,42.39006671 +MS,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,8.794466951 +MS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.66307131 +MS,Ammonia,1A3c_Rail,diesel_oil,TON,3.506468967 +MS,Ammonia,1A3c_Rail,light_oil,TON,0.002378055 +MS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.823186026 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.979999956 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.073599998 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.009127443 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.205080181 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.453798814 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.928233776 +MS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.123162316 +MS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.070745747 +MS,Ammonia,1A4bi_Residential-stationary,biomass,TON,45.41499831 +MS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.002578589 +MS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.266540983 +MS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,235.9184495 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.180249456 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.30869393 +MS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012971866 +MS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.191445264 +MS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.53596185 +MS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.308931315 +MS,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.66 +MS,Ammonia,2A6_Other-minerals,Other_Fuel,TON,56.25 +MS,Ammonia,2B_Chemicals-other,,TON,521.01196 +MS,Ammonia,2D3d_Coating-application,,TON,0 +MS,Ammonia,2D3e_Degreasing,,TON,0 +MS,Ammonia,2H1_Pulp-and-paper,,TON,219.78 +MS,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,284.2715 +MS,Ammonia,3B1a_Cattle-dairy,,TON,743.4002004 +MS,Ammonia,3B1b_Cattle-non-dairy,,TON,4395.2172 +MS,Ammonia,3B2_Manure-sheep,,TON,29.430588 +MS,Ammonia,3B3_Manure-swine,,TON,2930.586265 +MS,Ammonia,3B4_Manure-other,,TON,877.74984 +MS,Ammonia,3B4_Manure-poultry,,TON,36889.35513 +MS,Ammonia,3B4d_Manure-goats,,TON,213.847656 +MS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,9701.695911 +MS,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.7 +MS,Ammonia,5D1_Wastewater-domestic,,TON,11.08417431 +MS,Ammonia,5D2_Wastewater-industrial,biomass,TON,793.323 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,181643.1136 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,189766.3077 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12981.05026 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,533812.3634 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,9863.088825 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.586702049 +MS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,226000.49 +MS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,14847717.07 +MS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,209419.782 +MS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2719130.72 +MS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,112762.8541 +MS,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,23196.20972 +MS,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3376.51575 +MS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2199185.864 +MS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,34672.77042 +MS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2868202.511 +MS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,247552.1594 +MS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,104613.0187 +MS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3974.25846 +MS,Carbon Dioxide,1A3c_Rail,light_oil,TON,184.3490239 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,55766.09394 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,76987.49803 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3480.328925 +MS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,15147.3817 +MS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,153100.5223 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,760462.3902 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,22262.00364 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,15.67220963 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1587.988 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,141803.0724 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,66000.45266 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,229089.5537 +MS,Carbon Monoxide,11C_Other-natural,,TON,171278.55 +MS,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,518.52 +MS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,9.55 +MS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,423.52 +MS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,5202.84 +MS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1210.69 +MS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,78.47 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,778.9294873 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9704.560671 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,549.8682973 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8868.689509 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.0723664 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,29.69119505 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.056805248 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4913.480124 +MS,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +MS,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +MS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,96.04 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2224.981985 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2321.858937 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.18646973 +MS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5213.018405 +MS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3985.87473 +MS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,331495.646 +MS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2286.30335 +MS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,70993.7837 +MS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,315.3339525 +MS,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1209.631142 +MS,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,22.3562337 +MS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5007.996946 +MS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1158.349366 +MS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5358.78685 +MS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7606.058258 +MS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4216.39254 +MS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1142.447531 +MS,Carbon Monoxide,1A3c_Rail,light_oil,TON,48.32687449 +MS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1394.414998 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,237.6956077 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.73592836 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.05478668 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,741.9397744 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,295.4822447 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18628.33406 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,80.93654642 +MS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,62.07294373 +MS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,42243.77715 +MS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5567.232252 +MS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.012892949 +MS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.33270498 +MS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,810.4050301 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3219.788048 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6724.805503 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.723692977 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.355746 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,28497.24226 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,131.9619278 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,30192.45813 +MS,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MS,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,368.11 +MS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3516.3269 +MS,Carbon Monoxide,2A6_Other-minerals,,TON,502.12 +MS,Carbon Monoxide,2B_Chemicals-other,,TON,7477.12 +MS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1297.55 +MS,Carbon Monoxide,2C3_Aluminum-production,,TON,6.14 +MS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,16.34 +MS,Carbon Monoxide,2C7a_Copper-production,,TON,9.06 +MS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,5.3 +MS,Carbon Monoxide,2D3d_Coating-application,,TON,30.49 +MS,Carbon Monoxide,2D3h_Printing,,TON,0.58 +MS,Carbon Monoxide,2H1_Pulp-and-paper,,TON,4191.02 +MS,Carbon Monoxide,2H2_Food-and-beverage,,TON,349.2847671 +MS,Carbon Monoxide,2H3_Other-industrial-processes,,TON,73.41 +MS,Carbon Monoxide,3F_Ag-res-on-field,,TON,47915.49628 +MS,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,351.500649 +MS,Carbon Monoxide,5C_Incineration,biomass,TON,0.063637919 +MS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,35507.50608 +MS,Carbon Monoxide,5C_Open-burning-residential,,TON,6123.9219 +MS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,777.49546 +MS,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.84 +MS,Methane,1A3bii_Road-LDV,diesel_oil,TON,5.22902656 +MS,Methane,1A3bii_Road-LDV,light_oil,TON,777.754046 +MS,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.9340229 +MS,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,196.765225 +MS,Methane,1A3biii_Road-bus,diesel_oil,TON,2.259447153 +MS,Methane,1A3biii_Road-bus,light_oil,TON,2.783318631 +MS,Methane,1A3biii_Road-bus,natural_gas,TON,22.7312595 +MS,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,168.8431662 +MS,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.136969928 +MS,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,45.1050256 +MS,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.51269589 +MS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.29215616 +MS,Nitrogen Oxides,11C_Other-natural,,TON,17971.4712 +MS,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,7407.9 +MS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,32.65 +MS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,8082.4 +MS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,11078.57 +MS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2267.77 +MS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,88.74 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1255.572194 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1142.980978 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,81.91266426 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3439.929717 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,174.1816428 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1029.827807 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.934239139 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,25386.73659 +MS,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +MS,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0.01 +MS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,197.8 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4020.706701 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,39.35007934 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.037908412 +MS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,225.7679064 +MS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,900.0929463 +MS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,44730.6308 +MS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1024.476537 +MS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9525.89052 +MS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,800.9447196 +MS,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,101.3371071 +MS,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,14.03082156 +MS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16466.46214 +MS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,147.8946409 +MS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16385.82076 +MS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,757.0626272 +MS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,199.310134 +MS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8195.108981 +MS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.703725181 +MS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7471.040794 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,87.15825283 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,68.28791353 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.220296037 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,939.4718903 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,510.0308409 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,323.502542 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.4365291 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,137.6864277 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,486.3619652 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,88.88737014 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.0464146 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.79773809 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1711.25006 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6538.752002 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,94.72106502 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.384509681 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.536566 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,290.746171 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,741.1956873 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1538.320442 +MS,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,71.09 +MS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2736.89167 +MS,Nitrogen Oxides,2A6_Other-minerals,,TON,144.65 +MS,Nitrogen Oxides,2B_Chemicals-other,,TON,1863.82 +MS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,369.23 +MS,Nitrogen Oxides,2C3_Aluminum-production,,TON,7.32 +MS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,20.44 +MS,Nitrogen Oxides,2C7a_Copper-production,,TON,4.29 +MS,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,6.31 +MS,Nitrogen Oxides,2D3d_Coating-application,,TON,38.16 +MS,Nitrogen Oxides,2D3h_Printing,,TON,0.69 +MS,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2936.65 +MS,Nitrogen Oxides,2H2_Food-and-beverage,,TON,14.91 +MS,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,92.64 +MS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2276.708432 +MS,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,62.6 +MS,Nitrogen Oxides,5C_Incineration,biomass,TON,21.0023245 +MS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1050.518245 +MS,Nitrogen Oxides,5C_Open-burning-residential,,TON,432.276852 +MS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,34.5553469 +MS,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MS,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,1.03 +MS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.631214577 +MS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,766.148483 +MS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.673667991 +MS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,175.718177 +MS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.271190469 +MS,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.021682712 +MS,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.190056829 +MS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.066051513 +MS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.057147028 +MS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.34431008 +MS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.68627746 +MS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.399694266 +MS,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,535.07 +MS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.2678918 +MS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,135.24 +MS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,368.1975 +MS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,188.9001 +MS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.7198 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1742.874086 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.682141524 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,28.20888699 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.200276088 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,385.7470665 +MS,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MS,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,32.16 +MS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,634772.0709 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,198.014671 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.389685431 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.011866552 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.676557426 +MS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.002784877 +MS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.287864375 +MS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.15493177 +MS,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.36 +MS,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11 +MS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MS,PM10 Filterable,2A2_Lime-production,,TON,0.35 +MS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,23809.11419 +MS,PM10 Filterable,2A6_Other-minerals,,TON,2822.245 +MS,PM10 Filterable,2B_Chemicals-other,,TON,409.19 +MS,PM10 Filterable,2C_Iron-steel-alloy,,TON,188.89 +MS,PM10 Filterable,2C3_Aluminum-production,,TON,0.14 +MS,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,435.13 +MS,PM10 Filterable,2C7a_Copper-production,,TON,18.11 +MS,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,12.16 +MS,PM10 Filterable,2D3d_Coating-application,,TON,109.94 +MS,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,2.52 +MS,PM10 Filterable,2D3h_Printing,,TON,2.23 +MS,PM10 Filterable,2H1_Pulp-and-paper,,TON,2111.24 +MS,PM10 Filterable,2H2_Food-and-beverage,,TON,177.734531 +MS,PM10 Filterable,2H3_Other-industrial-processes,,TON,441.28 +MS,PM10 Filterable,2I_Wood-processing,,TON,14.06 +MS,PM10 Filterable,3Dc_Other-farm,,TON,90138.45251 +MS,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,209.73 +MS,PM10 Filterable,5C_Incineration,biomass,TON,1.09 +MS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3571.760277 +MS,PM10 Filterable,5C_Open-burning-residential,,TON,2737.75396 +MS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,128.7495514 +MS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.18 +MS,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,3.3 +MS,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.02 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,962.12 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.4140716 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,263.1668 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,857.3494 +MS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,328.1237 +MS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.4369293 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,99.90656161 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.74285147 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.601547373 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1870.236582 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,5.283818422 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,534.182042 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.364349248 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,794.5530215 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,58.78059 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,344.8340868 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,15.42865232 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +MS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,114.3159675 +MS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,634772.0709 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,64.59609827 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2059.813847 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,84.498986 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,379.744131 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,64.36604263 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.378001046 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.429783528 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,885.8548569 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.353720148 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1221.835874 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,24.23770077 +MS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.79752758 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,263.553145 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.025627893 +MS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,308.9662813 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,204.769905 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.620410957 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.026702712 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.1910853 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,48.92876998 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.32765053 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.436977634 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.49597493 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,131.9165013 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,805.498783 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.006137046 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.634367645 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.202822829 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,569.6162827 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,54.79844711 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001981222 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2011944 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,317.5559732 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.83491053 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,152.6237159 +MS,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11 +MS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,68.3464479 +MS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.454762 +MS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,23809.11419 +MS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2855.607693 +MS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,518.9632308 +MS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,482.5672664 +MS,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.56 +MS,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,436.7270717 +MS,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,59.042 +MS,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,14.498121 +MS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,110.3 +MS,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,2.52 +MS,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.23 +MS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3322.164218 +MS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,998.9122188 +MS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,446.9312808 +MS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,14.06 +MS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,90139.90751 +MS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6975.754383 +MS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,214.231407 +MS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.952272102 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3571.760277 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2737.75396 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,128.7495514 +MS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.18 +MS,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.3 +MS,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.07 +MS,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,159.11 +MS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.2278918 +MS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,78.57 +MS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,343.4075 +MS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,134.00008 +MS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.7198 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1281.846751 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.972831785 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,15.49787147 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.200360329 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,349.9446425 +MS,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MS,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,30.94 +MS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,66597.42828 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,170.29469 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.118315263 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00912823 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.894161008 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.002140229 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.221229018 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.735212615 +MS,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.36 +MS,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11 +MS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MS,PM2.5 Filterable,2A2_Lime-production,,TON,0.12 +MS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2380.911419 +MS,PM2.5 Filterable,2A6_Other-minerals,,TON,523.4455 +MS,PM2.5 Filterable,2B_Chemicals-other,,TON,344.3 +MS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,185.77 +MS,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.14 +MS,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,406.66 +MS,PM2.5 Filterable,2C7a_Copper-production,,TON,18.11 +MS,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,5.49 +MS,PM2.5 Filterable,2D3d_Coating-application,,TON,99.78 +MS,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,2.52 +MS,PM2.5 Filterable,2D3h_Printing,,TON,2.23 +MS,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1789.45 +MS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,110.4937196 +MS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,380.68 +MS,PM2.5 Filterable,2I_Wood-processing,,TON,8.1 +MS,PM2.5 Filterable,3Dc_Other-farm,,TON,18131.41774 +MS,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,25.96 +MS,PM2.5 Filterable,5C_Incineration,biomass,TON,1.09 +MS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2753.470126 +MS,PM2.5 Filterable,5C_Open-burning-residential,,TON,2507.20604 +MS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,99.2534668 +MS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.16 +MS,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.35 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,586.16 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.374071732 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,206.4968 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,832.5594 +MS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,273.2237 +MS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.4369293 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,96.90425034 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.60029987 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.601313752 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1409.114075 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.57395127 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,521.5626881 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.364414109 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,758.7536247 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,57.56059 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,334.4891084 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.20365056 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +MS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,96.44198588 +MS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,66597.42828 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,45.10495809 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,657.650811 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,64.5012518 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,115.3525043 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,49.93024569 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.465645983 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.144249431 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,708.7076347 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.485492281 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,922.758339 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.981582538 +MS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.14228212 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,243.5035156 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.023622866 +MS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,294.6275217 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,177.0499565 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.349084636 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.023964653 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.408729365 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47.46091327 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,19.67834498 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.436977634 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.18109185 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,121.3676321 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,804.1119632 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.005492397 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.567732255 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.78310434 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,552.5275647 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,50.41467563 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001981222 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.1351598 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,292.1522321 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.38986053 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,140.4137811 +MS,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11 +MS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,68.3464479 +MS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.224762 +MS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2380.911419 +MS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,556.8081883 +MS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,454.073231 +MS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,479.4472624 +MS,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.56 +MS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,408.2570717 +MS,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,59.042 +MS,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,7.828111 +MS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,100.14 +MS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,2.52 +MS,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.23 +MS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3000.374226 +MS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,931.67187 +MS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,386.3312808 +MS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,8.1 +MS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,18132.87274 +MS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,4567.688639 +MS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,30.461407 +MS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.952272102 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2753.470126 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2507.20604 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,99.2534668 +MS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.16 +MS,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.35 +MS,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.05 +MS,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,29587.3 +MS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.41 +MS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,13414.1 +MS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,256.44 +MS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1500.99 +MS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,206.32 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.666646148 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.729424849 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.290915406 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,446.796527 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.8502164 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,5054.976984 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.190007028 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,169.3862656 +MS,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +MS,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.1 +MS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,5.44 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,9.960652726 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.181073895 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.70471E-05 +MS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,34.2270775 +MS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.951568875 +MS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,294.8063423 +MS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.814752992 +MS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,53.9892454 +MS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.96703481 +MS,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.460568544 +MS,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.01787697 +MS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18.89088748 +MS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.688439192 +MS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.53708123 +MS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.915228478 +MS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.07712682 +MS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,78.4816912 +MS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003367777 +MS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,869.8672593 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,9.90000108 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.739192002 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.486036046 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.2090816 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.056290869 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.412454226 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.076954373 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.286572911 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.790040122 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,11.71664783 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.10984792 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,11.3546456 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.46479389 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.26736287 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.405323787 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000344685 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.029980848 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.572021863 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.415694284 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.165192158 +MS,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,41.66 +MS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5064.354292 +MS,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +MS,Sulfur Dioxide,2B_Chemicals-other,,TON,1377.72 +MS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,120.8 +MS,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.04 +MS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.13 +MS,Sulfur Dioxide,2C7a_Copper-production,,TON,2.68 +MS,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.04 +MS,Sulfur Dioxide,2D3d_Coating-application,,TON,0.21 +MS,Sulfur Dioxide,2D3h_Printing,,TON,0 +MS,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,593.27 +MS,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.09 +MS,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,3.22 +MS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1082.994422 +MS,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,11.75 +MS,Sulfur Dioxide,5C_Incineration,biomass,TON,1.8774976 +MS,Sulfur Dioxide,5C_Open-burning-residential,,TON,72.0461383 +MS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.46642586 +MS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0 +MS,Volatile Organic Compounds,11C_Other-natural,,TON,1491272.62 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,83.56 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.33 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,66.5 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,333.84 +MS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1.165068391 +MS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,4683.574932 +MS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,11.33 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,107.476045 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,384.0472843 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.353264706 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,955.8601617 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.98542486 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.907602897 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.971249968 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2141.125561 +MS,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +MS,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,23.78 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,408.9676006 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,175.6976461 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000619802 +MS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,210.269425 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,365.404633 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,30163.605 +MS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,291.540661 +MS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5845.97677 +MS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,82.51829663 +MS,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,72.28014421 +MS,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.67704752 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1524.068495 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,39.21437041 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1193.215734 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,370.2014025 +MS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,770.07768 +MS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,408.7924327 +MS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.073545815 +MS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,183.3968526 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,6.735633203 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.531566522 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003767101 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,48.3859541 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,67.94419835 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1033.457909 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.251929901 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,14.28046194 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3538.733235 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1053.372031 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.001805013 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.186578707 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,86.76061669 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,592.9506676 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,611.0277151 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006681282 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.9924854 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10493.21059 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,33.75021263 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,11390.74271 +MS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,911.5216088 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,974.6469474 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1419.783475 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,18051.17478 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,11624.4651 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,72.16 +MS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8568.959631 +MS,Volatile Organic Compounds,2A6_Other-minerals,,TON,27.34786139 +MS,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1054.032029 +MS,Volatile Organic Compounds,2B_Chemicals-other,,TON,1466.94 +MS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,68.32 +MS,Volatile Organic Compounds,2C3_Aluminum-production,,TON,55.03 +MS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,131.78 +MS,Volatile Organic Compounds,2C7a_Copper-production,,TON,3.22 +MS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12507.15907 +MS,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,67.08 +MS,Volatile Organic Compounds,2D3d_Coating-application,,TON,17170.34029 +MS,Volatile Organic Compounds,2D3e_Degreasing,,TON,143.48 +MS,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,9.3149997 +MS,Volatile Organic Compounds,2D3h_Printing,,TON,315.57 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,65.78125832 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1195.797577 +MS,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,8367.6 +MS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,388.0572116 +MS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1843.4783 +MS,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +MS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6952.36184 +MS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,3926.217465 +MS,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,105.4331 +MS,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.099943132 +MS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2437.199964 +MS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,616.715059 +MS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,145.0090264 +MS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,55.7488201 +MS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,419.39 +MS,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.01 +MS,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.06 +MT,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0834 +MT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.0725 +MT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,5.43168 +MT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.376674 +MT,Ammonia,1A1b_Pet-refining,natural_gas,TON,27.7575 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.283603212 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.03382248 +MT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0056 +MT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,11.2559 +MT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,3.8384 +MT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.118860276 +MT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.03076873 +MT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.956777854 +MT,Ammonia,1A3bii_Road-LDV,light_oil,TON,418.7545 +MT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.00804502 +MT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,76.426152 +MT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.490203428 +MT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.216326651 +MT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.021942363 +MT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,19.39782512 +MT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.391565158 +MT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.44929167 +MT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.408912245 +MT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.77196316 +MT,Ammonia,1A3c_Rail,diesel_oil,TON,10.97150856 +MT,Ammonia,1A3c_Rail,light_oil,TON,0.008016916 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.469999285 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.133032455 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.560822898 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.71424388 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.239404305 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.489918178 +MT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.036080147 +MT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.695511002 +MT,Ammonia,1A4bi_Residential-stationary,biomass,TON,76.11847837 +MT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.480296675 +MT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.810099675 +MT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.005328181 +MT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,219.9552057 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.11889425 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.312868111 +MT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004119167 +MT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.580331032 +MT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.086845235 +MT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.536116952 +MT,Ammonia,2A1_Cement-production,,TON,1.0132 +MT,Ammonia,2A6_Other-minerals,,TON,1.5245 +MT,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.1176 +MT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,23.5905 +MT,Ammonia,3B1a_Cattle-dairy,,TON,836.7871723 +MT,Ammonia,3B1b_Cattle-non-dairy,,TON,16531.99786 +MT,Ammonia,3B2_Manure-sheep,,TON,950.20992 +MT,Ammonia,3B3_Manure-swine,,TON,1117.508388 +MT,Ammonia,3B4_Manure-other,,TON,1413.918 +MT,Ammonia,3B4_Manure-poultry,,TON,293.9000434 +MT,Ammonia,3B4d_Manure-goats,,TON,85.51818 +MT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,33113.32343 +MT,Ammonia,5C_Incineration,biomass,TON,0.0098 +MT,Ammonia,5D1_Wastewater-domestic,,TON,3.64908932 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,34917.44045 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22510.7337 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2301.434464 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,137678.0183 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2553.984409 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.293352028 +MT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,70913.23067 +MT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4361374.4 +MT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,67309.9107 +MT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,911413.8 +MT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,31222.3889 +MT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,6304.797379 +MT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,939.720645 +MT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1046845.59 +MT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,10222.43326 +MT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,737924.075 +MT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,64462.89329 +MT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,32887.6551 +MT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,13411.05001 +MT,Carbon Dioxide,1A3c_Rail,light_oil,TON,621.925261 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29419.69195 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,40633.90383 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1760.638828 +MT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4437.420878 +MT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,51203.66784 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1367910.425 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,23363.46934 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,33.29195733 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,504.25882 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,104285.89 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10694.47718 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,37117.35155 +MT,Carbon Monoxide,11C_Other-natural,,TON,207543.02 +MT,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,89.3601 +MT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.0001 +MT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,17.4498 +MT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2317.2735 +MT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,17.6751 +MT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,48.2337 +MT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,755.1977 +MT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,10.4251 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,306.1051324 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1464.290311 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,74.04184398 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,111.2967619 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,421.5813122 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.491604858 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,136.7435441 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1400.235477 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,573.9362914 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,597.3209679 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.093234906 +MT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2958.115769 +MT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1417.371168 +MT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,137667.7163 +MT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,790.49965 +MT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,31867.2711 +MT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,85.88351045 +MT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,372.3017542 +MT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,6.51194941 +MT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2498.813511 +MT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,368.6418667 +MT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1403.133297 +MT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2259.677905 +MT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1387.58339 +MT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3575.908814 +MT,Carbon Monoxide,1A3c_Rail,light_oil,TON,160.8163935 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,297.5560901 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.72211994 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.265927088 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.51740866 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.792763771 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1003.917623 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,155.9370428 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9709.794962 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,41.86635916 +MT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,18.13760585 +MT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,14456.67743 +MT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,9716.166737 +MT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,12.41158529 +MT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,121.259752 +MT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.026640899 +MT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,831.5862023 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6212.374518 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5965.227669 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.661621128 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.8764485 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,16346.32438 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.38260369 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4961.658082 +MT,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2932.907431 +MT,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,18.5757 +MT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1097.141343 +MT,Carbon Monoxide,2A1_Cement-production,,TON,37.3224 +MT,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,35.9668 +MT,Carbon Monoxide,2A6_Other-minerals,,TON,2372.0618 +MT,Carbon Monoxide,2B_Chemicals-other,,TON,356.5263 +MT,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.7307 +MT,Carbon Monoxide,2H2_Food-and-beverage,,TON,149.6774553 +MT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.3711 +MT,Carbon Monoxide,3F_Ag-res-on-field,,TON,23296.35198 +MT,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,55.7440015 +MT,Carbon Monoxide,5C_Incineration,biomass,TON,0.768001193 +MT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4483.660859 +MT,Carbon Monoxide,5C_Open-burning-residential,,TON,1667.56504 +MT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,175.749825 +MT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.917 +MT,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,5.415 +MT,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.618044537 +MT,Methane,1A3bii_Road-LDV,light_oil,TON,373.0211054 +MT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.8361543 +MT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,100.3524618 +MT,Methane,1A3biii_Road-bus,diesel_oil,TON,0.804498491 +MT,Methane,1A3biii_Road-bus,light_oil,TON,0.825539868 +MT,Methane,1A3biii_Road-bus,natural_gas,TON,6.05075293 +MT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,106.2324845 +MT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.309831674 +MT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.74736114 +MT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,4.967603467 +MT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.99105792 +MT,Nitrogen Oxides,11C_Other-natural,,TON,47324.7853 +MT,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,707.434 +MT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.0005 +MT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,42.5898 +MT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,16710.812 +MT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,516.117 +MT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,72.2425 +MT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1044.731 +MT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,5.3723 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,268.5556692 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,136.1715776 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.25118076 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,129.8412901 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,553.1803848 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.42016469 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,149.0674841 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2073.937176 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1036.838897 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,11.32354909 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.018954242 +MT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,240.951155 +MT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,302.8911047 +MT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,16685.09465 +MT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,335.435815 +MT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3882.55713 +MT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,252.6455186 +MT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,32.48733367 +MT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,4.11153125 +MT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9355.183711 +MT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,52.10438673 +MT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4778.09004 +MT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,234.9052601 +MT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,74.2534209 +MT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,24346.81552 +MT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.747403147 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,109.2289834 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,109.7970456 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.585937085 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,38.75086842 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.206032766 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1204.076822 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,269.0694967 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,192.8890679 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.15132429 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,40.34614802 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,181.2673897 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,164.3620427 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,44.6815305 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,4.012954795 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.095907228 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1732.670865 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12439.90089 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,135.7865638 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.81682352 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.9341934 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,182.5844438 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,120.1018738 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,261.1826711 +MT,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,3492.197273 +MT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,7.2776 +MT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,936.086377 +MT,Nitrogen Oxides,2A1_Cement-production,,TON,1435.3133 +MT,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,400.393 +MT,Nitrogen Oxides,2A6_Other-minerals,,TON,663.2989 +MT,Nitrogen Oxides,2B_Chemicals-other,,TON,59.2982 +MT,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,6.1282 +MT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.45 +MT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,967.7891915 +MT,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,20.7774 +MT,Nitrogen Oxides,5C_Incineration,biomass,TON,1.706764245 +MT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,132.6525907 +MT,Nitrogen Oxides,5C_Open-burning-residential,,TON,117.707873 +MT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,7.60576659 +MT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.2062 +MT,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.2886 +MT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.209515027 +MT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,319.0679321 +MT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.22724407 +MT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.5656347 +MT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.069542359 +MT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.274829506 +MT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.049728551 +MT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.7908822 +MT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.280156959 +MT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.111508623 +MT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.724678063 +MT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.406528621 +MT,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,70.6838 +MT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.5914 +MT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,580.53823 +MT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,33.1897 +MT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.50288827 +MT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,223.8562 +MT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.6309 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.965303595 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,111.3006803 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.060672098 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,14.188888 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,35.7493414 +MT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,191020.433 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,247.0756458 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.398628088 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.700187653 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.47708871 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.012603378 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.361604516 +MT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.68088934 +MT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,2.734310615 +MT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.005754436 +MT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.123130559 +MT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.926 +MT,PM10 Filterable,2A1_Cement-production,,TON,132.7328 +MT,PM10 Filterable,2A2_Lime-production,,TON,27.235 +MT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,9335.479398 +MT,PM10 Filterable,2A6_Other-minerals,,TON,20589.6083 +MT,PM10 Filterable,2B_Chemicals-other,,TON,26.2975 +MT,PM10 Filterable,2C_Iron-steel-alloy,,TON,30.1937 +MT,PM10 Filterable,2C6_Zinc-production,,TON,0.0598 +MT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,129.2918 +MT,PM10 Filterable,2C7a_Copper-production,,TON,0.0014 +MT,PM10 Filterable,2D3d_Coating-application,,TON,0.139 +MT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,412.3579 +MT,PM10 Filterable,2H2_Food-and-beverage,,TON,131.7290371 +MT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,43.6476 +MT,PM10 Filterable,2I_Wood-processing,,TON,5.448 +MT,PM10 Filterable,3Dc_Other-farm,,TON,101728.6822 +MT,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,32.7735 +MT,PM10 Filterable,5C_Incineration,biomass,TON,1.4561 +MT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,451.0190068 +MT,PM10 Filterable,5C_Open-burning-residential,,TON,745.496289 +MT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,29.1282889 +MT,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0893 +MT,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,87.9601 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.396840738 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2330.113 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,58.8298 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,5.68118627 +MT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,433.8038 +MT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.0237 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.71747122 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.49139432 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.293543419 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.31989617 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,114.3808981 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.25965141 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,19.52417206 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,97.50551469 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,88.95479564 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.98298275 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +MT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,67.10269051 +MT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,191020.433 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,19.12677934 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,798.076111 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.630703 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,161.20564 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,16.82942051 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.314558737 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.111696246 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,378.5316481 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.341550109 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,305.7880645 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.967173752 +MT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.27595251 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,797.1437161 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.086385914 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,255.6668135 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.095023326 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.756048326 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,11.53724497 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.025224967 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.223429919 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.82165135 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.25421462 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.220570332 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.066680191 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,43.703202 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1422.151794 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.908096475 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,3.169941615 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.012681063 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.120137278 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1095.751789 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.48332504 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004208589 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.69914193 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,181.2631671 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.403782506 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,24.72827918 +MT,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,106.1644568 +MT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,31.69256017 +MT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,157.336482 +MT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,30.28150951 +MT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,9335.479398 +MT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,20676.86358 +MT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,50.6835 +MT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,30.1937 +MT,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.1196 +MT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,136.8923549 +MT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.0028 +MT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.139 +MT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,659.6322713 +MT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,506.3786672 +MT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,46.48 +MT,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,5.448 +MT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,101729.8823 +MT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3208.3295 +MT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,40.4318 +MT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.96759757 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,451.0190068 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,745.496289 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,29.1282889 +MT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.3573 +MT,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.2532 +MT,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,55.3437 +MT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.4479 +MT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,156.83323 +MT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,24.0893 +MT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.27907394 +MT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,177.2236 +MT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.5973 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.687166021 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,101.557883 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.680193307 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7.333274085 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,34.04976983 +MT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,20476.78217 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,212.4966734 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.886662604 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.244077097 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.891098983 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.0019006 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.205065871 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.06031576 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.675189925 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.004422388 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.717721803 +MT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.3365 +MT,PM2.5 Filterable,2A1_Cement-production,,TON,57.34350588 +MT,PM2.5 Filterable,2A2_Lime-production,,TON,11.51679588 +MT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,933.5479398 +MT,PM2.5 Filterable,2A6_Other-minerals,,TON,2950.156057 +MT,PM2.5 Filterable,2B_Chemicals-other,,TON,9.8735 +MT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,10.7834429 +MT,PM2.5 Filterable,2C6_Zinc-production,,TON,0.0598 +MT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,29.13627647 +MT,PM2.5 Filterable,2C7a_Copper-production,,TON,0.0014 +MT,PM2.5 Filterable,2D3d_Coating-application,,TON,0.0138 +MT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,173.8330998 +MT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,20.94652952 +MT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,10.24318 +MT,PM2.5 Filterable,2I_Wood-processing,,TON,1.799983 +MT,PM2.5 Filterable,3Dc_Other-farm,,TON,20347.07234 +MT,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,11.4818 +MT,PM2.5 Filterable,5C_Incineration,biomass,TON,0.8508 +MT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,347.6908658 +MT,PM2.5 Filterable,5C_Open-burning-residential,,TON,682.713814 +MT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,22.5360832 +MT,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0893 +MT,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,72.62 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.253340738 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1906.4087 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,49.7294 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,5.45737194 +MT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,387.1714 +MT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.9901 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.14776491 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.456685801 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.293171306 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,7.045774287 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,104.6202051 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.88028967 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,12.68541528 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,95.80184902 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,86.28611544 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.666774588 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +MT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,55.33622825 +MT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,20476.78217 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,13.72574608 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,415.986975 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.894977 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,80.526622 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,13.27711144 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.802584816 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.042828733 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,316.2441187 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.750572301 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,234.7353588 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.853549252 +MT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.47786645 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,735.7096669 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.079630717 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,221.0911526 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.58969508 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.295644215 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.947175364 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.014516902 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.06718653 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.04702571 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.38391763 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.220570332 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.974679953 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,40.20820835 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1419.993074 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.287522755 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,2.1078221 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.011349028 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.714728217 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1062.879293 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.48484764 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004208589 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.678167 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,166.7622341 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.331668325 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,22.75001272 +MT,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,104.0622562 +MT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,31.10306017 +MT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,81.94718788 +MT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,14.56330553 +MT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,933.5479398 +MT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3037.41164 +MT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,34.25951 +MT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,10.7834429 +MT,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.1196 +MT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,36.73683135 +MT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.0028 +MT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.0138 +MT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,421.107375 +MT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,395.5962441 +MT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,13.07558 +MT,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,1.799983 +MT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,20348.27249 +MT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2083.518369 +MT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,19.3768 +MT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.36229757 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,347.6908658 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,682.713814 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,22.5360832 +MT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.3573 +MT,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.2532 +MT,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,856.368 +MT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.0015 +MT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.3738 +MT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,14854.328 +MT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,2103.9 +MT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2.5164 +MT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,971.1599 +MT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,111.0223 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.051998719 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.525175145 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.057316754 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,49.49112039 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,26.9193614 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.201162792 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,88.14784462 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,40.9834108 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.569006756 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.046891652 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85236E-05 +MT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,36.60771526 +MT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.60974887 +MT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,86.2520735 +MT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.581117708 +MT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.0244355 +MT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.26777624 +MT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.124685925 +MT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.004975353 +MT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.994728564 +MT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.202162915 +MT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.31313437 +MT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.27484299 +MT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.650397937 +MT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,245.4029024 +MT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.011362134 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,12.36856929 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.24967997 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.050983969 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,248.0068097 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010615761 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.1703058 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.557257614 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.745491305 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.038928647 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.083941497 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.932970756 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,28.9338366 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,105.8316242 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,10.87193265 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.22698043 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.369363304 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.73208858 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.425866934 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000732202 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.009520196 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.892876394 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.229393669 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.674848997 +MT,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,151.0055422 +MT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.419611791 +MT,Sulfur Dioxide,2A1_Cement-production,,TON,397.9166 +MT,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,92.9498 +MT,Sulfur Dioxide,2A6_Other-minerals,,TON,69.79 +MT,Sulfur Dioxide,2B_Chemicals-other,,TON,1987.8125 +MT,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,10.0747 +MT,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,20.8359 +MT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.6746 +MT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.2745 +MT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,297.6895045 +MT,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,4.1585 +MT,Sulfur Dioxide,5C_Incineration,biomass,TON,1.013149728 +MT,Sulfur Dioxide,5C_Open-burning-residential,,TON,19.6146495 +MT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.643389534 +MT,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.0924 +MT,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,11.3674 +MT,Volatile Organic Compounds,11C_Other-natural,,TON,1023648.03 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,5.9573 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.4024 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,316.0179 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,9.2402 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,21.0809 +MT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,114.4865257 +MT,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,581.8989611 +MT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1673.205813 +MT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,11.9726 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.04518592 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,52.52278275 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.259635672 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.560934067 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,31.18462132 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.262932415 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.544657592 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,625.9757546 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,105.4963275 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,43.23149934 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +MT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,181.108324 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,141.3840903 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,12870.83991 +MT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,108.388992 +MT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2681.91684 +MT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,22.61164361 +MT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,17.33637086 +MT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.722904436 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,853.3406847 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,9.97206548 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,318.548532 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,94.89224373 +MT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,190.587698 +MT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1216.579933 +MT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,6.110244851 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,8.475173711 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.660911623 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.002665718 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.796861266 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,65.84117393 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.85647002 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,488.7957046 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.13133102 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,4.175206113 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1094.247133 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1762.907287 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.737647465 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,4.40950037 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.003729728 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,85.88653818 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1146.799843 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,308.3606155 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014193116 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.2680084 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6158.358483 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.468783366 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1562.851179 +MT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,37777.16315 +MT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,160.8921722 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,87.34853832 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,352.6683245 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4692.095614 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1798.099841 +MT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8385.38758 +MT,Volatile Organic Compounds,2A1_Cement-production,,TON,6.6658 +MT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,506.01148 +MT,Volatile Organic Compounds,2B_Chemicals-other,,TON,56.2166 +MT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.0289 +MT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4190.704455 +MT,Volatile Organic Compounds,2D3d_Coating-application,,TON,2153.776077 +MT,Volatile Organic Compounds,2D3e_Degreasing,,TON,478.290614 +MT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.0549992 +MT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,64.18325 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,408.7247683 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,473.3692407 +MT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,267.1071 +MT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,92.39745528 +MT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,99.1136 +MT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3091.120427 +MT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1828.115465 +MT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,63.9223 +MT,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.403930674 +MT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,307.7542673 +MT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,167.930175 +MT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,32.6370741 +MT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,28.383599 +MT,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1.0267 +NC,Ammonia,1A1a_Public-Electricity,biomass,TON,16.2914 +NC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,6.52322 +NC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,40.694639 +NC,Ammonia,1A1a_Public-Electricity,natural_gas,TON,141.28323 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.230537126 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.322073673 +NC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,14.21234798 +NC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,17.13601629 +NC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.076209112 +NC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.568287323 +NC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.242550959 +NC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,31.34688024 +NC,Ammonia,1A2c_Chemicals,natural_gas,TON,11.3687 +NC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,22.08295957 +NC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.606036999 +NC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.96682465 +NC,Ammonia,1A3bii_Road-LDV,light_oil,TON,3612.350438 +NC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.7185289 +NC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,661.037998 +NC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,14.07991053 +NC,Ammonia,1A3biii_Road-bus,light_oil,TON,2.258180693 +NC,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.327745389 +NC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,57.19537228 +NC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.587979707 +NC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,68.14080716 +NC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,10.60274369 +NC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.3157532 +NC,Ammonia,1A3c_Rail,diesel_oil,TON,4.613312382 +NC,Ammonia,1A3c_Rail,light_oil,TON,0.00203931 +NC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.864526467 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.70890994 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.94410413 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.644198172 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.09199909 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.01551304 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.845757467 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.776047955 +NC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.000978389 +NC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.08052007 +NC,Ammonia,1A4bi_Residential-stationary,biomass,TON,195.8170682 +NC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,27.5903506 +NC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,4.1781314 +NC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,7.75811043 +NC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,592.5292191 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.220804105 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.284111817 +NC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.037634368 +NC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.511103014 +NC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.000146498 +NC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.174706203 +NC,Ammonia,2A6_Other-minerals,Other_Fuel,TON,4.700215 +NC,Ammonia,2B_Chemicals-other,,TON,714.3324473 +NC,Ammonia,2C_Iron-steel-alloy,,TON,27.3865 +NC,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.41586144 +NC,Ammonia,2D3d_Coating-application,,TON,34.830526 +NC,Ammonia,2D3e_Degreasing,Other_Fuel,TON,3.862095 +NC,Ammonia,2D3h_Printing,,TON,7.330095 +NC,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,28.264847 +NC,Ammonia,2H1_Pulp-and-paper,,TON,365.3383202 +NC,Ammonia,2H2_Food-and-beverage,,TON,31.44116038 +NC,Ammonia,2H3_Other-industrial-processes,,TON,202.9492312 +NC,Ammonia,3B1a_Cattle-dairy,,TON,1692.882193 +NC,Ammonia,3B1b_Cattle-non-dairy,,TON,3303.778688 +NC,Ammonia,3B2_Manure-sheep,,TON,96.885756 +NC,Ammonia,3B3_Manure-swine,,TON,87870.92549 +NC,Ammonia,3B4_Manure-other,,TON,1052.93232 +NC,Ammonia,3B4_Manure-poultry,,TON,59485.46238 +NC,Ammonia,3B4d_Manure-goats,,TON,685.523256 +NC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,13381.53489 +NC,Ammonia,5C_Incineration,biomass,TON,0.66485 +NC,Ammonia,5D1_Wastewater-domestic,,TON,34.83230405 +NC,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,31.28784905 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,520871.8973 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,595461.7357 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,32506.16908 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2717354.346 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,50260.52429 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,12.93349903 +NC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,656134.4297 +NC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,41316048.02 +NC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,622744.064 +NC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8146248.52 +NC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,957232.2002 +NC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,68099.9543 +NC,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,13802.88184 +NC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3288257.526 +NC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,41646.94117 +NC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4770851.989 +NC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,304892.4536 +NC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,270699.87 +NC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3407.074319 +NC,Carbon Dioxide,1A3c_Rail,light_oil,TON,158.281035 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,226819.9493 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,313191.4726 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13744.98079 +NC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,123107.5316 +NC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,819618.2202 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,765426.7846 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,20576.37235 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.29583127 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4607.1326 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,231024.1816 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,123161.9935 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,427497.7921 +NC,Carbon Monoxide,11C_Other-natural,,TON,135825.615 +NC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1266.02 +NC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,124.6641711 +NC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,29829.02 +NC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1608.103341 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3818.812188 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27698.26353 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1684.71366 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,6995.517463 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,216.0328434 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2426.498144 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,517.3478656 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.96540223 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6078.958344 +NC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,6.33 +NC,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.555806452 +NC,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.224193548 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,11325.78287 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,11726.02143 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.932348546 +NC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11374.15035 +NC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,10730.9852 +NC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,864104.193 +NC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7041.69025 +NC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,209465.05 +NC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2617.245085 +NC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4678.342354 +NC,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,89.2288488 +NC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7807.855027 +NC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2108.532942 +NC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8944.28901 +NC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,17426.51778 +NC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12356.6064 +NC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1567.735394 +NC,Carbon Monoxide,1A3c_Rail,light_oil,TON,41.05276557 +NC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1264.652361 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,725.5181643 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,196.8999597 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,201.5958609 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.191676867 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.604641726 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2589.75293 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1201.968794 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,75074.47575 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,324.1627287 +NC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,504.3655211 +NC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,217816.0491 +NC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,23241.38274 +NC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,138.0587352 +NC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,574.49319 +NC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,38.8182447 +NC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1517.716023 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3286.843023 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6061.711544 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.792393614 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,44.543276 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,48118.29666 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,246.2530318 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,56152.68129 +NC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,42.627 +NC,Carbon Monoxide,2A6_Other-minerals,,TON,1334.33981 +NC,Carbon Monoxide,2B_Chemicals-other,,TON,9319.79033 +NC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2183.12 +NC,Carbon Monoxide,2C3_Aluminum-production,,TON,13.506 +NC,Carbon Monoxide,2C5_Lead-production,,TON,0.794 +NC,Carbon Monoxide,2C6_Zinc-production,,TON,0.59 +NC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,345.3963 +NC,Carbon Monoxide,2C7a_Copper-production,,TON,133.11 +NC,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,36.04 +NC,Carbon Monoxide,2D3d_Coating-application,,TON,36.3171 +NC,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,5.32 +NC,Carbon Monoxide,2D3h_Printing,,TON,9.8343 +NC,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.09 +NC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3764.08 +NC,Carbon Monoxide,2H2_Food-and-beverage,,TON,1220.694094 +NC,Carbon Monoxide,2H3_Other-industrial-processes,,TON,104.9588665 +NC,Carbon Monoxide,3Dc_Other-farm,,TON,36.97 +NC,Carbon Monoxide,3F_Ag-res-on-field,,TON,15803.205 +NC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,876.7846745 +NC,Carbon Monoxide,5C_Incineration,,TON,0.327878339 +NC,Carbon Monoxide,5C_Incineration,biomass,TON,15.39958186 +NC,Carbon Monoxide,5C_Open-burning-industrial,,TON,19.43 +NC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,51845.9752 +NC,Carbon Monoxide,5C_Open-burning-residential,,TON,12426.4872 +NC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1655.503609 +NC,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.632 +NC,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,86.177225 +NC,Methane,1A3bii_Road-LDV,diesel_oil,TON,18.47661505 +NC,Methane,1A3bii_Road-LDV,light_oil,TON,1931.38611 +NC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,13.28841331 +NC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,532.835683 +NC,Methane,1A3biii_Road-bus,diesel_oil,TON,15.68439741 +NC,Methane,1A3biii_Road-bus,light_oil,TON,13.95355753 +NC,Methane,1A3biii_Road-bus,natural_gas,TON,99.3084965 +NC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,314.7561471 +NC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.143412006 +NC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,88.0534956 +NC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,42.04102289 +NC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.3916341 +NC,Nitrogen Oxides,11C_Other-natural,,TON,16627.8806 +NC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,947.69 +NC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,748.4988389 +NC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,41072.49 +NC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1142.618032 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3660.169809 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3675.083742 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,245.7457066 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4968.23441 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,492.4197729 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,9375.758829 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,679.2797918 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,6.919333688 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9031.561025 +NC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,7.53 +NC,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,8.85798133 +NC,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.91201867 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,20469.47203 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,206.517292 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.189542102 +NC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3288.420955 +NC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2504.890443 +NC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,110545.7769 +NC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2948.4323 +NC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26954.4071 +NC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,7089.165045 +NC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,369.5944441 +NC,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,60.9045206 +NC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25111.03301 +NC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,223.6833968 +NC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26447.24574 +NC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1311.224163 +NC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,542.308891 +NC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10875.22759 +NC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.626398177 +NC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7124.823623 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,329.4418611 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,811.0579906 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,443.4118703 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,44.27094116 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,26.37102019 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2836.811795 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2074.490286 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1354.700341 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,86.180828 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1119.082821 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2645.228635 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,374.4885297 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,497.013149 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,19.0105014 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,139.7457045 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3966.360981 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6655.652345 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,92.33137706 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.399847335 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,45.080208 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,514.5551689 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1383.127264 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2916.029814 +NC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,17.841 +NC,Nitrogen Oxides,2A6_Other-minerals,,TON,6214.39996 +NC,Nitrogen Oxides,2B_Chemicals-other,,TON,1392.91 +NC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,248.669 +NC,Nitrogen Oxides,2C3_Aluminum-production,,TON,12.431 +NC,Nitrogen Oxides,2C5_Lead-production,,TON,3.782 +NC,Nitrogen Oxides,2C6_Zinc-production,,TON,0.71 +NC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,58.6946 +NC,Nitrogen Oxides,2C7a_Copper-production,,TON,4.19 +NC,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,11.3 +NC,Nitrogen Oxides,2D3d_Coating-application,,TON,208.5682 +NC,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,8.92 +NC,Nitrogen Oxides,2D3h_Printing,,TON,12.5035 +NC,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.49 +NC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3660.58 +NC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,46.943606 +NC,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,390.8074582 +NC,Nitrogen Oxides,3Dc_Other-farm,,TON,34.01 +NC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,551.00327 +NC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,143.338056 +NC,Nitrogen Oxides,5C_Incineration,,TON,37.12291471 +NC,Nitrogen Oxides,5C_Incineration,biomass,TON,58.11952264 +NC,Nitrogen Oxides,5C_Open-burning-industrial,,TON,11.89 +NC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1533.905512 +NC,Nitrogen Oxides,5C_Open-burning-residential,,TON,877.16376 +NC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,73.5779644 +NC,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.752 +NC,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,14.16622 +NC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.786534517 +NC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1988.728283 +NC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.924747499 +NC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,473.422575 +NC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.986232573 +NC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.857575226 +NC,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.91158547 +NC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.560772923 +NC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.008880673 +NC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.93872078 +NC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,38.6919944 +NC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.54460456 +NC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,20.142945 +NC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.80230839 +NC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,7071.61555 +NC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,165.4055273 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1927.661452 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,66.91903742 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,823.7129873 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,140.8413908 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.27968693 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,164.1660439 +NC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.9824 +NC,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.088 +NC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,73176.3568 +NC,PM10 Filterable,1A3c_Rail,diesel_oil,TON,11.95 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,484.199092 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,78.15416416 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,268.2706988 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.048792336 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.272655294 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.34887463 +NC,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,3023.64413 +NC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.11371511 +NC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,12.1232732 +NC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,8.38473964 +NC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,93.66868909 +NC,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.078 +NC,PM10 Filterable,2A1_Cement-production,,TON,2.8 +NC,PM10 Filterable,2A2_Lime-production,,TON,9.16078533 +NC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,34830.52006 +NC,PM10 Filterable,2A6_Other-minerals,,TON,7208.489687 +NC,PM10 Filterable,2B_Chemicals-other,,TON,736.4486916 +NC,PM10 Filterable,2C_Iron-steel-alloy,,TON,132.5749638 +NC,PM10 Filterable,2C3_Aluminum-production,,TON,0.37000039 +NC,PM10 Filterable,2C5_Lead-production,,TON,20.04543982 +NC,PM10 Filterable,2C6_Zinc-production,,TON,0.915217 +NC,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,138.7040333 +NC,PM10 Filterable,2C7a_Copper-production,,TON,0.75478331 +NC,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,100.75898 +NC,PM10 Filterable,2D3d_Coating-application,,TON,83.49725336 +NC,PM10 Filterable,2D3e_Degreasing,,TON,1.07 +NC,PM10 Filterable,2D3h_Printing,,TON,2.59297 +NC,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,7.155 +NC,PM10 Filterable,2H1_Pulp-and-paper,,TON,1139.076729 +NC,PM10 Filterable,2H2_Food-and-beverage,,TON,831.971563 +NC,PM10 Filterable,2H3_Other-industrial-processes,,TON,484.5929172 +NC,PM10 Filterable,2I_Wood-processing,,TON,40.24 +NC,PM10 Filterable,3Dc_Other-farm,,TON,64812.09266 +NC,PM10 Filterable,3F_Ag-res-on-field,,TON,1357.8288 +NC,PM10 Filterable,5A_Solid-waste-disposal,,TON,68.261723 +NC,PM10 Filterable,5C_Incineration,,TON,1.673169996 +NC,PM10 Filterable,5C_Incineration,biomass,TON,1.053332 +NC,PM10 Filterable,5C_Open-burning-industrial,,TON,18.04596 +NC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,5215.28092 +NC,PM10 Filterable,5C_Open-burning-residential,,TON,5555.37317 +NC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,274.1435365 +NC,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.051949 +NC,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.53545 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,21.71 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,30.61505719 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,8419.1993 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,318.5116934 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,299.7260865 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,62.4663425 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.057544505 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2185.356371 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,44.04853483 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,904.5439789 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,171.4609981 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.72091402 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,522.1418728 +NC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,10.48 +NC,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.394732824 +NC,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.115267176 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1755.267479 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,78.53099033 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001515459 +NC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,257.3167329 +NC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,73176.3568 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,184.6703968 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5823.620655 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,253.097901 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,1201.570455 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,557.6430992 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,14.24458807 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.833352584 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1379.364028 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.250213817 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1988.86321 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,36.90735542 +NC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.5265236 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,360.748945 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021963333 +NC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,322.2459754 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,557.3760888 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,80.09521718 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,303.4886374 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.621342 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,3.194440097 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,77.75685826 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,199.030347 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,86.74936692 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.723364668 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,85.2817469 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,821.9025549 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3404.43289 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,11.72353429 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,13.0357736 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,18.4774843 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,246.4962259 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,581.1176752 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,45.73386539 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002060026 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.3846914 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,461.2626025 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.68345345 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,284.8070461 +NC,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.078 +NC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,2.8 +NC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,9.19009 +NC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,34830.52006 +NC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7828.652264 +NC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,858.781403 +NC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,153.121 +NC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.2616 +NC,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,20.12856725 +NC,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.21 +NC,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,175.6770731 +NC,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,8.74 +NC,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,117.68 +NC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,134.9103534 +NC,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.578 +NC,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.74297 +NC,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,10.864 +NC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1899.971193 +NC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3817.002754 +NC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,669.4602237 +NC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,79.952 +NC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,65091.6539 +NC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1357.8288 +NC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,51.94446 +NC,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.786181737 +NC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.955043258 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,20.11 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,5215.28092 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5555.37317 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,274.1435365 +NC,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.4172 +NC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.85405 +NC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,2.412945 +NC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,17.48266153 +NC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,5230.66839 +NC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,159.7785273 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1375.767236 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,52.14162198 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,646.5192661 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,107.97548 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.098010475 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,151.20013 +NC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.898325 +NC,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0501266 +NC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,14790.4876 +NC,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,11.6 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,406.4503818 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,65.46676375 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,31.77121773 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.573704711 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.004451906 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.25542934 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,3023.64413 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.34675403 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,7.1095155 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,6.443831675 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,72.95302159 +NC,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.078 +NC,PM2.5 Filterable,2A1_Cement-production,,TON,2.8 +NC,PM2.5 Filterable,2A2_Lime-production,,TON,1.87090463 +NC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3483.052006 +NC,PM2.5 Filterable,2A6_Other-minerals,,TON,1663.051467 +NC,PM2.5 Filterable,2B_Chemicals-other,,TON,441.8758 +NC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,99.4103838 +NC,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.37000039 +NC,PM2.5 Filterable,2C5_Lead-production,,TON,17.85892206 +NC,PM2.5 Filterable,2C6_Zinc-production,,TON,0.915217 +NC,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,132.1525416 +NC,PM2.5 Filterable,2C7a_Copper-production,,TON,0.737392 +NC,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,99.13898 +NC,PM2.5 Filterable,2D3d_Coating-application,,TON,71.32129407 +NC,PM2.5 Filterable,2D3e_Degreasing,,TON,0.98093 +NC,PM2.5 Filterable,2D3h_Printing,,TON,2.21211861 +NC,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,7.01329787 +NC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,910.3826303 +NC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,273.9928577 +NC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,325.5711405 +NC,PM2.5 Filterable,2I_Wood-processing,,TON,23.955148 +NC,PM2.5 Filterable,3Dc_Other-farm,,TON,12931.66945 +NC,PM2.5 Filterable,3F_Ag-res-on-field,,TON,1290.1835 +NC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,45.610813 +NC,PM2.5 Filterable,5C_Incineration,,TON,1.07857884 +NC,PM2.5 Filterable,5C_Incineration,biomass,TON,1.033332 +NC,PM2.5 Filterable,5C_Open-burning-industrial,,TON,2.46593 +NC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4020.457846 +NC,PM2.5 Filterable,5C_Open-burning-residential,,TON,5087.55151 +NC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,211.3382133 +NC,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.051949 +NC,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.53545 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.79 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,25.90241414 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6578.2529 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,312.8846934 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,290.6486256 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,62.11358526 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.053530203 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1582.114827 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,32.72068366 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,727.0359497 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,136.1806402 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.474091686 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,421.431395 +NC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,10.395925 +NC,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.3921266 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1702.609005 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,72.29603708 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001515459 +NC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,224.2055303 +NC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,14790.4876 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,128.2386086 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1913.266864 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,192.942851 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,397.439912 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,430.3319914 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.823619206 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.615333337 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1088.640508 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.811995376 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1470.697217 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,16.82972789 +NC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.2554574 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,334.2634353 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02024643 +NC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,305.7886655 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,468.4068585 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,71.70567389 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,66.64197025 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.505994986 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.844975773 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.75523824 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,193.059435 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,80.04095675 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.723364668 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,82.72334432 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,756.1864302 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3398.382427 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,8.95197278 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,8.0220167 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,16.53657595 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,225.7805594 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,563.6840681 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,42.07524609 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002060026 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.1931432 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,424.3635122 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.85294312 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,262.0224649 +NC,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.078 +NC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,2.8 +NC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.9002093 +NC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3483.052006 +NC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2014.094729 +NC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,552.1700334 +NC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,119.346375 +NC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1.5616 +NC,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,17.95091323 +NC,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.21 +NC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,166.3652444 +NC,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.4126087 +NC,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,116.06 +NC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,114.6621941 +NC,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.42293 +NC,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.33211861 +NC,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,8.39329787 +NC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1513.050984 +NC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3133.854686 +NC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,365.247597 +NC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,42.061848 +NC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,13013.9185 +NC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1290.1835 +NC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,49.91031 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.054949807 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.891684031 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,4.53 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4020.457846 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5087.55151 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,211.3382133 +NC,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.2772 +NC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,1.81105 +NC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,988.2 +NC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,277.3949063 +NC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,82603.79 +NC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,55.70973016 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.96172424 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.4969311 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.785921031 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1336.609089 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1891.696172 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7150.969217 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1135.199991 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,13.56504351 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,812.6060365 +NC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.04 +NC,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,29.34858407 +NC,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.101415929 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,50.70424853 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.922747428 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000285235 +NC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,423.5831983 +NC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.645121931 +NC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,820.344274 +NC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.38061841 +NC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,161.746686 +NC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,8.251014918 +NC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.352146911 +NC,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.073079313 +NC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,28.17655868 +NC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.826913219 +NC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,40.74893385 +NC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.053745323 +NC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.374834 +NC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,107.8035773 +NC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00289177 +NC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1805.107906 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,40.65942537 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4306.155752 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1383.503982 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,218.3018592 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,58.14954343 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,40.34991829 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.296305691 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.74598663 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.303912059 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.329047886 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,14.93752923 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,65.16237597 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1176.263859 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,104.912946 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,330.7314925 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,22.75780475 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.36795254 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.374686692 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.0003584 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.086980676 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.192951875 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.641794817 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.772549723 +NC,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.01 +NC,Sulfur Dioxide,2A6_Other-minerals,,TON,2042.52083 +NC,Sulfur Dioxide,2B_Chemicals-other,,TON,5514.1827 +NC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,271.899 +NC,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.09669 +NC,Sulfur Dioxide,2C5_Lead-production,,TON,0.023 +NC,Sulfur Dioxide,2C6_Zinc-production,,TON,0.01 +NC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,278.67572 +NC,Sulfur Dioxide,2C7a_Copper-production,,TON,4.84 +NC,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,6.62 +NC,Sulfur Dioxide,2D3d_Coating-application,,TON,5.4008 +NC,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,29.77 +NC,Sulfur Dioxide,2D3h_Printing,,TON,0.484705 +NC,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.18 +NC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1494.28 +NC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,116.5372561 +NC,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,33.21457777 +NC,Sulfur Dioxide,3Dc_Other-farm,,TON,6.24 +NC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,113.15239 +NC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,57.47004 +NC,Sulfur Dioxide,5C_Incineration,,TON,3.146957751 +NC,Sulfur Dioxide,5C_Incineration,biomass,TON,25.64757128 +NC,Sulfur Dioxide,5C_Open-burning-industrial,,TON,1.78 +NC,Sulfur Dioxide,5C_Open-burning-residential,,TON,146.194045 +NC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,15.89809326 +NC,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.22 +NC,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.77183732 +NC,Volatile Organic Compounds,11C_Other-natural,,TON,1061087.97 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,27.99 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,14.34953773 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,701.22 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,190.0402359 +NC,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,26.67 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,360.1075708 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1148.829373 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.963279373 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,387.6643602 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,38.71501739 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,101.888496 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.85049452 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.375579276 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,912.7842743 +NC,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.19 +NC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,52.92 +NC,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.06 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2081.818639 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,872.9628373 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.003099009 +NC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,702.4749655 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,959.989968 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,73538.5348 +NC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,837.204954 +NC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16115.62054 +NC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,645.4556229 +NC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,284.5211635 +NC,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,11.28567175 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2381.917806 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,101.2993405 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1958.894845 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,917.0255456 +NC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2027.8043 +NC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,573.2161236 +NC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.683094482 +NC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,183.855716 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,22.07070667 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.56374426 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.041272686 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.06843942 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.457651696 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,195.8110613 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,276.3808214 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3989.953908 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.014178521 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,116.0383266 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,16529.55885 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4193.079695 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,19.32855 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,20.890678 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,5.434628055 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,208.6135084 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,605.5980877 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,522.7883956 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006947762 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.5796938 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,14937.21592 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,62.98106701 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,20300.10527 +NC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,587.8203852 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,819.8888913 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1553.027656 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,16350.84488 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,16725.36375 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,8.41 +NC,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.08 +NC,Volatile Organic Compounds,2A6_Other-minerals,,TON,105.4322217 +NC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1943.151304 +NC,Volatile Organic Compounds,2B_Chemicals-other,,TON,3249.375083 +NC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,76.098 +NC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1183.29 +NC,Volatile Organic Compounds,2C5_Lead-production,,TON,0.219 +NC,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.04 +NC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,216.100801 +NC,Volatile Organic Compounds,2C7a_Copper-production,,TON,59.27 +NC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,40253.56432 +NC,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,67.77 +NC,Volatile Organic Compounds,2D3d_Coating-application,,TON,39498.39331 +NC,Volatile Organic Compounds,2D3e_Degreasing,,TON,722.06412 +NC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,29.6710047 +NC,Volatile Organic Compounds,2D3h_Printing,,TON,1910.042657 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2546.929086 +NC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,10175.848 +NC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2499.798608 +NC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1988.721752 +NC,Volatile Organic Compounds,2I_Wood-processing,,TON,14 +NC,Volatile Organic Compounds,3Dc_Other-farm,,TON,136.08 +NC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,10549.66393 +NC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1133.9836 +NC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,211.8148181 +NC,Volatile Organic Compounds,5C_Incineration,,TON,1.010980197 +NC,Volatile Organic Compounds,5C_Incineration,biomass,TON,3.831581635 +NC,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.99 +NC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3558.660639 +NC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1251.42102 +NC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,308.7645822 +NC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,175.2335407 +NC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,134.8468421 +NC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,4.35267185 +NC,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,45.04009733 +ND,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,182.05139 +ND,Ammonia,1A1b_Pet-refining,natural_gas,TON,103.4 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.2917763 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.052607679 +ND,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.311500081 +ND,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.366477875 +ND,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,139.5895 +ND,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.465773413 +ND,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.014680258 +ND,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,5.2 +ND,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.279805403 +ND,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.035113154 +ND,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.492246033 +ND,Ammonia,1A3bii_Road-LDV,light_oil,TON,302.042964 +ND,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.47406139 +ND,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.419136 +ND,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.451746282 +ND,Ammonia,1A3biii_Road-bus,light_oil,TON,0.202351879 +ND,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.02003719 +ND,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17.74846775 +ND,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.59173595 +ND,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.94994456 +ND,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.032915167 +ND,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.8629969 +ND,Ammonia,1A3c_Rail,diesel_oil,TON,7.031165218 +ND,Ammonia,1A3c_Rail,light_oil,TON,0.003184595 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.147499977 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.588148495 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.01737841 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022378941 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.591874397 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.231877345 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.474517418 +ND,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.01948657 +ND,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.444117842 +ND,Ammonia,1A4bi_Residential-stationary,biomass,TON,31.83719149 +ND,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,6.877753505 +ND,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,9.52944265 +ND,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.053543417 +ND,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,116.7251286 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.9384075 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.645172901 +ND,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002903205 +ND,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.261086482 +ND,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.079557106 +ND,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.490675883 +ND,Ammonia,2A6_Other-minerals,,TON,65 +ND,Ammonia,2B_Chemicals-other,,TON,0 +ND,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,98.1025 +ND,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,5496.7 +ND,Ammonia,3B1a_Cattle-dairy,,TON,1266.012858 +ND,Ammonia,3B1b_Cattle-non-dairy,,TON,10840.91262 +ND,Ammonia,3B2_Manure-sheep,,TON,309.949068 +ND,Ammonia,3B3_Manure-swine,,TON,1130.382436 +ND,Ammonia,3B4_Manure-other,,TON,601.3194 +ND,Ammonia,3B4_Manure-poultry,,TON,563.3922386 +ND,Ammonia,3B4d_Manure-goats,,TON,29.975484 +ND,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,78421.39277 +ND,Ammonia,5D1_Wastewater-domestic,,TON,2.41960364 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,35924.56472 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,25609.24453 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3326.028951 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,157482.8184 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2909.74606 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.293352112 +ND,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,53757.817 +ND,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3293589.04 +ND,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,50035.631 +ND,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,668349.66 +ND,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,28773.11679 +ND,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,5849.962039 +ND,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,866.24971 +ND,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1011486.212 +ND,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,14846.69787 +ND,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,709989.89 +ND,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,54340.16882 +ND,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25072.1622 +ND,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5345.99753 +ND,Carbon Dioxide,1A3c_Rail,light_oil,TON,247.1747338 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28494.74002 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,39356.61128 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1691.990486 +ND,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2396.617284 +ND,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,32691.34793 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3068013.444 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,48512.76254 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,75.6289908 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,355.4142 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,84128.29011 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9796.97567 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,33971.29933 +ND,Carbon Monoxide,11C_Other-natural,,TON,71154.004 +ND,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,6700.6 +ND,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,11.03 +ND,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,372 +ND,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,437.2 +ND,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,124.35 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,211.5053596 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1849.996394 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,87.94292531 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,299.3999817 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,399.6426949 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,894.8 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.91108581 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.091894615 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1183.5 +ND,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,216 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,656.235767 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,651.7442308 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.093234854 +ND,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2831.133564 +ND,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,780.731875 +ND,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,83827.9034 +ND,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,458.38804 +ND,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18437.5486 +ND,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,79.9828581 +ND,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,346.763384 +ND,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,6.0153786 +ND,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2288.433638 +ND,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,525.4394029 +ND,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1378.737957 +ND,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1998.339254 +ND,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1086.06962 +ND,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2275.915125 +ND,Carbon Monoxide,1A3c_Rail,light_oil,TON,60.83986017 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.70002216 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,99.25007338 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.108615042 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.134273615 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,464.461697 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,151.0270666 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8963.119837 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,40.31105709 +ND,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,9.78664013 +ND,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,8882.778963 +ND,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4075.004286 +ND,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,34.38875865 +ND,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1310.29818 +ND,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.267717115 +ND,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,495.2204493 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14031.05143 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11432.35129 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.31830239 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.427855 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,11325.63823 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.58832235 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4349.036914 +ND,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,11643.18209 +ND,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2669.727031 +ND,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,36 +ND,Carbon Monoxide,2B_Chemicals-other,,TON,152.4912 +ND,Carbon Monoxide,2D3d_Coating-application,,TON,0.6 +ND,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.52 +ND,Carbon Monoxide,2H2_Food-and-beverage,,TON,1983.24118 +ND,Carbon Monoxide,3F_Ag-res-on-field,,TON,110207.087 +ND,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.99064 +ND,Carbon Monoxide,5C_Incineration,,TON,0.11086455 +ND,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,333.0912252 +ND,Carbon Monoxide,5C_Open-burning-residential,,TON,961.46225 +ND,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,29.674883 +ND,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.557250739 +ND,Methane,1A3bii_Road-LDV,light_oil,TON,240.22895 +ND,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.07015461 +ND,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,61.8841897 +ND,Methane,1A3biii_Road-bus,diesel_oil,TON,0.772410176 +ND,Methane,1A3biii_Road-bus,light_oil,TON,0.807213586 +ND,Methane,1A3biii_Road-bus,natural_gas,TON,5.6736167 +ND,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,79.64365592 +ND,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.436403334 +ND,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.4545287 +ND,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,4.852305943 +ND,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.45228497 +ND,Nitrogen Oxides,11C_Other-natural,,TON,32261.357 +ND,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,51014.1 +ND,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,27.56 +ND,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,384 +ND,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,385.3 +ND,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,177.37 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,273.8286062 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,149.977567 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13.81121689 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,102.9899982 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1847.252217 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1969.4 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,32.0218721 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.367769192 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2261 +ND,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,50 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1186.072277 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.6880408 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.01895423 +ND,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,198.0237211 +ND,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,205.0230102 +ND,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,10154.44746 +ND,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,225.073508 +ND,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2297.78443 +ND,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,228.2897093 +ND,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,29.69918715 +ND,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.76867957 +ND,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8405.460699 +ND,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,74.32359368 +ND,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4544.18329 +ND,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,196.9491926 +ND,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,55.104516 +ND,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15681.91869 +ND,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.186648448 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,6.49000191 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,458.7560629 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.194765983 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.539892183 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,543.383925 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,260.6150068 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,200.6727827 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.74669455 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,21.78297983 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,124.0339586 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,67.63963417 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,123.7996242 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,43.3589693 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.963782031 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1014.389697 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28058.29816 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,309.5398467 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.855632036 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.483925 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,139.68572 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,110.0277378 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,247.9047584 +ND,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,18406.35784 +ND,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,280.3400961 +ND,Nitrogen Oxides,2A6_Other-minerals,,TON,3320 +ND,Nitrogen Oxides,2B_Chemicals-other,,TON,181.1 +ND,Nitrogen Oxides,2D3d_Coating-application,,TON,2.8 +ND,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,2.43 +ND,Nitrogen Oxides,2H2_Food-and-beverage,,TON,323.3 +ND,Nitrogen Oxides,3F_Ag-res-on-field,,TON,4902.15185 +ND,Nitrogen Oxides,5C_Incineration,,TON,7.871050241 +ND,Nitrogen Oxides,5C_Incineration,biomass,TON,0.140554469 +ND,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,9.85477335 +ND,Nitrogen Oxides,5C_Open-burning-residential,,TON,67.867922 +ND,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.3188827 +ND,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.152470027 +ND,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,176.7219051 +ND,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.158638111 +ND,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.6171078 +ND,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.064973377 +ND,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.25687803 +ND,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.046423959 +ND,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.875757403 +ND,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.418222303 +ND,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.09054259 +ND,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.405956313 +ND,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.310767119 +ND,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1100 +ND,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.61 +ND,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,26 +ND,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,120.1 +ND,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.19 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,98.4 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,45.75000425 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,128.7771881 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,242.1 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.06427843 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.018302668 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,71.8375 +ND,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.3 +ND,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,81684.4932 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,14.74999769 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,32.03941727 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.324570104 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.029092629 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.762908746 +ND,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,7.427971115 +ND,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,29.5412683 +ND,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.057826933 +ND,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.782497654 +ND,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3 +ND,PM10 Filterable,2A5b_Construction-and-demolition,,TON,6063.229077 +ND,PM10 Filterable,2A6_Other-minerals,,TON,9476.3228 +ND,PM10 Filterable,2B_Chemicals-other,,TON,88.6 +ND,PM10 Filterable,2D3d_Coating-application,,TON,1.5 +ND,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.75 +ND,PM10 Filterable,2H2_Food-and-beverage,,TON,625.2771286 +ND,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,0.6 +ND,PM10 Filterable,3Dc_Other-farm,,TON,223458.069 +ND,PM10 Filterable,5C_Incineration,,TON,0.5 +ND,PM10 Filterable,5C_Open-burning-land-clearing,,TON,33.5062148 +ND,PM10 Filterable,5C_Open-burning-residential,,TON,429.8302 +ND,PM10 Filterable,5C_Open-burning-yard-waste,,TON,4.9140183 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,3393.735089 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,23.2433478 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,47.32 +ND,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,212.56 +ND,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,21.134 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.277423 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.812573153 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.418849775 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,98.4 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,47.70651415 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.03362515 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,431.107879 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,12.93760464 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.042134291 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,138.8795 +ND,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.3 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,101.7082905 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.550907483 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +ND,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,73.18712695 +ND,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,81684.4932 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,13.72460678 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,582.147309 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.4886565 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,114.689198 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,15.74162316 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.360205709 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.103860989 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,385.5598332 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.316160125 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,306.277541 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.563101409 +ND,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.74407873 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,508.5675045 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.0343217 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,15.25149604 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,33.73031738 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.357154755 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065458421 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.951162376 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.00825234 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.9028732 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.211927417 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.654238407 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,26.70180583 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,589.9520246 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,16.3690433 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,34.49661 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.127433398 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.634493945 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2474.124795 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.995188013 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009560618 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.490813 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,125.9188168 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.202056833 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,22.63224302 +ND,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,624.9297657 +ND,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.042483683 +ND,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6063.229077 +ND,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9520.5728 +ND,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,88.6 +ND,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.5 +ND,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.75 +ND,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1090.750572 +ND,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.6 +ND,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,223458.069 +ND,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,16048.003 +ND,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.702884823 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,33.5062148 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,429.8302 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,4.9140183 +ND,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,190.6923072 +ND,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,20.271825 +ND,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,26 +ND,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,77.1 +ND,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.09 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,56.600002 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,42.63498225 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,118.5718021 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,188.835 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.85777082 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.004575668 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,68.12484 +ND,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.3 +ND,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9215.85536 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,12.68499799 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.87063698 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.120536732 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022378941 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.286849727 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.70853388 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,18.1059321 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.044441044 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.980373822 +ND,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2 +ND,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,606.3229077 +ND,PM2.5 Filterable,2A6_Other-minerals,,TON,1222.526 +ND,PM2.5 Filterable,2B_Chemicals-other,,TON,83.513925 +ND,PM2.5 Filterable,2D3d_Coating-application,,TON,1.4829787 +ND,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.75 +ND,PM2.5 Filterable,2H2_Food-and-beverage,,TON,353.6846607 +ND,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,0.6 +ND,PM2.5 Filterable,3Dc_Other-farm,,TON,44688.9699 +ND,PM2.5 Filterable,5C_Incineration,,TON,0.5 +ND,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,25.8299385 +ND,PM2.5 Filterable,5C_Open-burning-residential,,TON,393.63414 +ND,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,3.7882304 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,2484.427397 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,21.9052728 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,47.32 +ND,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,169.56 +ND,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,21.134 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,17.72499105 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.764268083 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.418646146 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,56.600002 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,44.5914832 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.81505009 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,367.8428788 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.73109373 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.028407268 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,135.16684 +ND,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.3 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,98.6570276 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.189570733 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +ND,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,60.29068057 +ND,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9215.85536 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,9.696620302 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,292.284394 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,13.3461675 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,55.201076 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,12.39717937 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.866781803 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.038692619 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,315.5111498 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.393573605 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,233.685178 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.965998425 +ND,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.10510798 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,469.092392 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.031638716 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,13.18649599 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,31.56151932 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.153121166 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.058744761 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.475103298 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,24.25801075 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.05974209 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.211927417 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.60461101 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,24.56636393 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,588.9675094 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,14.64960865 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,23.0612463 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.114047506 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.832369981 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2399.901171 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.356051997 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009560618 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.4760892 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,115.8455642 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.135995067 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,20.82167015 +ND,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,609.5617727 +ND,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.042483683 +ND,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,606.3229077 +ND,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1266.77602 +ND,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,83.513925 +ND,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.4829787 +ND,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.75 +ND,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,693.2198654 +ND,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.6 +ND,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,44688.9699 +ND,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,10001.7197 +ND,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.702884823 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,25.8299385 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,393.63414 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3.7882304 +ND,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,92612.6 +ND,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.21 +ND,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,22 +ND,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,305.4 +ND,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,469.73 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.875826302 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.539024444 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.076827411 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,47.81250035 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.260148192 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2091.8 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,205.6681967 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.897974515 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1061.9 +ND,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,353 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.938510273 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.053418443 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85235E-05 +ND,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29.46421499 +ND,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.461893903 +ND,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,65.5681308 +ND,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.43140611 +ND,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.3053889 +ND,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.24676989 +ND,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.116459924 +ND,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.004586343 +ND,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.688748215 +ND,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.295565448 +ND,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.07576774 +ND,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.081793721 +ND,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.49913148 +ND,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,157.8042839 +ND,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004515847 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.737500237 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.313189416 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.6736611 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.191678644 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.9637289 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.539734546 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.72205761 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.037410626 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.045334933 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.595650041 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,12.1256278 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,292.9921975 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,143.2751805 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.28095125 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.347494107 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,57.72888462 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.884485939 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001663335 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00670942 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.527596052 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.210142737 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.617649789 +ND,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1065.59619 +ND,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1126.40388 +ND,Sulfur Dioxide,2A6_Other-minerals,,TON,3801 +ND,Sulfur Dioxide,2B_Chemicals-other,,TON,1 +ND,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.16 +ND,Sulfur Dioxide,2H2_Food-and-beverage,,TON,258.1 +ND,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1902.03391 +ND,Sulfur Dioxide,5C_Incineration,,TON,0.277993687 +ND,Sulfur Dioxide,5C_Incineration,biomass,TON,0.277993687 +ND,Sulfur Dioxide,5C_Open-burning-residential,,TON,11.3113187 +ND,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.28497266 +ND,Volatile Organic Compounds,11C_Other-natural,,TON,226612.24 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,702.8 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.42 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,50 +ND,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,31.8427673 +ND,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,474.4572327 +ND,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,25.88 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.39585795 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,63.75494979 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.242420462 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,62.55649946 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.591619221 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,30.4 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.163020696 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.003622403 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,212.3 +ND,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,13 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,120.6268222 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,48.78433769 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +ND,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,121.1329865 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,83.7683644 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7672.40176 +ND,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,67.599767 +ND,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1536.00721 +ND,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,21.19993671 +ND,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,16.63623768 +ND,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.67611523 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,709.2282775 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,15.02023741 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,311.701948 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,88.71758489 +ND,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,146.691975 +ND,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,775.4338526 +ND,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.359603783 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.50150001 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.249963436 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.024547023 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.009231318 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,29.75246915 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34.72837058 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,463.3931654 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.126588658 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.25223129 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,692.5019222 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,755.0059343 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,4.814422735 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,47.6472055 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.037480399 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,49.01868716 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2590.727696 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,508.7046308 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.032243547 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.890583 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4469.272469 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.009862095 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1415.589342 +ND,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,183016.271 +ND,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,309.6014833 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,12.41125517 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,399.1811042 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2088.657892 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1461.780612 +ND,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3675.667461 +ND,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,320.46228 +ND,Volatile Organic Compounds,2B_Chemicals-other,,TON,714.9 +ND,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2834.97028 +ND,Volatile Organic Compounds,2D3d_Coating-application,,TON,2094.856718 +ND,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.1800001 +ND,Volatile Organic Compounds,2D3h_Printing,,TON,75.3 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1839.7389 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,596.23501 +ND,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,0.2 +ND,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,627.1004757 +ND,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,220 +ND,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8643.6361 +ND,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,8810.1013 +ND,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,35.35 +ND,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.208090624 +ND,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,22.8630638 +ND,Volatile Organic Compounds,5C_Open-burning-residential,,TON,96.82487 +ND,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.5345979 +ND,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,12.1696094 +ND,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,12.7 +NE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.2108393 +NE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,126.09208 +NE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,1.9030039 +NE,Ammonia,1A1b_Pet-refining,natural_gas,TON,0.002404 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.760109927 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.057725221 +NE,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.3092275 +NE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.208930281 +NE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.147313101 +NE,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.00044E-11 +NE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,123.0357588 +NE,Ammonia,1A2c_Chemicals,natural_gas,TON,9.2932001 +NE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.026824938 +NE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.110615457 +NE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.949287149 +NE,Ammonia,1A3bii_Road-LDV,light_oil,TON,658.8377934 +NE,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.92580572 +NE,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,105.3320048 +NE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.713460629 +NE,Ammonia,1A3biii_Road-bus,light_oil,TON,0.308990123 +NE,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.032171168 +NE,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43.90966849 +NE,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.899720949 +NE,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.93971438 +NE,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.079950232 +NE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.71340337 +NE,Ammonia,1A3c_Rail,diesel_oil,TON,33.17467996 +NE,Ammonia,1A3c_Rail,light_oil,TON,0.009523253 +NE,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.007415211 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.025555708 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.55831861 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.454468102 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.92980693 +NE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.116516833 +NE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.63668283 +NE,Ammonia,1A4bi_Residential-stationary,biomass,TON,83.33592207 +NE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.764610167 +NE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.054381568 +NE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,403.5429534 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.73086529 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.564378056 +NE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00782257 +NE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.955385538 +NE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.125473592 +NE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.774893637 +NE,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0.0000002 +NE,Ammonia,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.0000001 +NE,Ammonia,2A1_Cement-production,,TON,1.44 +NE,Ammonia,2A6_Other-minerals,Other_Fuel,TON,2.81 +NE,Ammonia,2B_Chemicals-other,Other_Fuel,TON,92.5040004 +NE,Ammonia,2C_Iron-steel-alloy,,TON,0.0005 +NE,Ammonia,2C7_Other-metal,Other_Fuel,TON,43.5000001 +NE,Ammonia,2D3d_Coating-application,,TON,0.0745853 +NE,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.0535353 +NE,Ammonia,2H2_Food-and-beverage,,TON,7.6116001 +NE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,270.482498 +NE,Ammonia,3B1a_Cattle-dairy,,TON,4123.920905 +NE,Ammonia,3B1b_Cattle-non-dairy,,TON,79407.37649 +NE,Ammonia,3B2_Manure-sheep,,TON,266.895684 +NE,Ammonia,3B3_Manure-swine,,TON,20322.57505 +NE,Ammonia,3B4_Manure-other,,TON,882.5930978 +NE,Ammonia,3B4_Manure-poultry,,TON,6259.651042 +NE,Ammonia,3B4d_Manure-goats,,TON,241.693188 +NE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,69476.86669 +NE,Ammonia,3Dc_Other-farm,,TON,0.03 +NE,Ammonia,5C_Incineration,biomass,TON,0.002984 +NE,Ammonia,5C_Open-burning-land-clearing,,TON,0.582164371 +NE,Ammonia,5C_Open-burning-yard-waste,,TON,0.946441544 +NE,Ammonia,5D1_Wastewater-domestic,,TON,246.1869301 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,93585.79745 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,99164.31371 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5614.245788 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,495509.4711 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,9177.169187 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.58669747 +NE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,112179.9704 +NE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,7285672.665 +NE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,103271.5036 +NE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1369429.323 +NE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,45457.34122 +NE,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,9250.925407 +NE,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1367.711382 +NE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2338768.259 +NE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,23383.70834 +NE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1079167.332 +NE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,86360.71162 +NE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,51253.894 +NE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,15906.47115 +NE,Carbon Dioxide,1A3c_Rail,light_oil,TON,740.099621 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,55848.2672 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,77118.71439 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3481.129246 +NE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,14330.17578 +NE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,120538.7855 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2673410.801 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,42423.77775 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,65.89405978 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,957.6245 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,63413.1623 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15451.31894 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,53648.73108 +NE,Carbon Monoxide,11C_Other-natural,,TON,107907.093 +NE,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.0000001 +NE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,9.4274727 +NE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8489.0559 +NE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.6400003 +NE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,335.8848921 +NE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,36.1216261 +NE,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.23 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,568.3413446 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4671.320075 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,280.7038011 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,10.02665356 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.51391694 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,74.22816353 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.15547E-07 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.03446188 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1709.905351 +NE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,26.4209001 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2065.420524 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2173.153753 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.18646947 +NE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3084.395077 +NE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2165.219302 +NE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,193813.8878 +NE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1078.335555 +NE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,39252.6614 +NE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,124.9137259 +NE,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,514.8615105 +NE,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,9.25593198 +NE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5650.657654 +NE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,773.6482396 +NE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2068.773132 +NE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3010.994833 +NE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2095.165704 +NE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,10693.33875 +NE,Carbon Monoxide,1A3c_Rail,light_oil,TON,193.4874017 +NE,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.28031364 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,52.02271477 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.476349402 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00262596 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1355.396239 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,295.9488857 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18672.67449 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,80.97737378 +NE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,58.53480627 +NE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,33863.08914 +NE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10638.51067 +NE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,3.823051385 +NE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.27190792 +NE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1164.639216 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12222.69171 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10607.9529 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.247563442 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.258165 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,13269.33564 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.89423589 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7220.47733 +NE,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,54.448 +NE,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,850.9431947 +NE,Carbon Monoxide,2A1_Cement-production,,TON,51 +NE,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,0.0300001 +NE,Carbon Monoxide,2A6_Other-minerals,,TON,4488.580001 +NE,Carbon Monoxide,2B_Chemicals-other,,TON,515.2380004 +NE,Carbon Monoxide,2C_Iron-steel-alloy,,TON,6.6300001 +NE,Carbon Monoxide,2C5_Lead-production,,TON,0.0000001 +NE,Carbon Monoxide,2C6_Zinc-production,,TON,0.000619 +NE,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,18.7000008 +NE,Carbon Monoxide,2C7a_Copper-production,,TON,0.000001 +NE,Carbon Monoxide,2D3d_Coating-application,,TON,0.2115014 +NE,Carbon Monoxide,2D3e_Degreasing,,TON,5E-11 +NE,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,42.5100002 +NE,Carbon Monoxide,2H2_Food-and-beverage,,TON,327.0540673 +NE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1275.85024 +NE,Carbon Monoxide,3Dc_Other-farm,,TON,86.44003 +NE,Carbon Monoxide,3F_Ag-res-on-field,,TON,15.35486447 +NE,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,26.371925 +NE,Carbon Monoxide,5C_Incineration,biomass,TON,12.79489209 +NE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,720.9908107 +NE,Carbon Monoxide,5C_Open-burning-residential,,TON,1853.424611 +NE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,161.3420555 +NE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,14.89 +NE,Methane,1A3bii_Road-LDV,diesel_oil,TON,5.079865892 +NE,Methane,1A3bii_Road-LDV,light_oil,TON,528.8241835 +NE,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.950991355 +NE,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,127.9693512 +NE,Methane,1A3biii_Road-bus,diesel_oil,TON,1.081331263 +NE,Methane,1A3biii_Road-bus,light_oil,TON,1.161603047 +NE,Methane,1A3biii_Road-bus,natural_gas,TON,8.79540337 +NE,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,252.3010948 +NE,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.66582006 +NE,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.34746769 +NE,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,6.771675736 +NE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.76421471 +NE,Nitrogen Oxides,11C_Other-natural,,TON,52774.865 +NE,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.0000001 +NE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,38.4758115 +NE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,36230.185 +NE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,5.7000004 +NE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,538.8196033 +NE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,21.1431001 +NE,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.92 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,650.8284686 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,610.4028871 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41.09778583 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5.878683983 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,42.38666769 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,319.3268764 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.05634E-07 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.134589255 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4651.813607 +NE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,13.4646001 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3732.480801 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,39.32832 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.037908335 +NE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,399.8762284 +NE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,452.2194421 +NE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,23526.26896 +NE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,481.86183 +NE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4870.99858 +NE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,350.7996295 +NE,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,44.44302412 +NE,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,5.9084359 +NE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20391.52316 +NE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,110.1829931 +NE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6704.572714 +NE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,295.0433309 +NE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,105.8672996 +NE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,72587.41131 +NE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,3.157023872 +NE,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11.21812705 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,43.0462858 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.670884108 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.020008044 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.012198904 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1639.7314 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,510.7861221 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,353.1362923 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.44904819 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,130.3690757 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,405.6793067 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,176.5006288 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,13.76298171 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.978868351 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2533.526304 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24443.49478 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,244.2683006 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.616777001 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.372614 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,136.4577129 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,173.518619 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,369.7996564 +NE,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,21.7732 +NE,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,610.0443011 +NE,Nitrogen Oxides,2A1_Cement-production,,TON,1972 +NE,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,0.1600001 +NE,Nitrogen Oxides,2A6_Other-minerals,,TON,1156.000001 +NE,Nitrogen Oxides,2B_Chemicals-other,,TON,313.7589005 +NE,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1.5116153 +NE,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.11799 +NE,Nitrogen Oxides,2C5_Lead-production,,TON,1.0035E-07 +NE,Nitrogen Oxides,2C6_Zinc-production,,TON,0.0014601 +NE,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,6.4000012 +NE,Nitrogen Oxides,2C7a_Copper-production,,TON,0 +NE,Nitrogen Oxides,2D3d_Coating-application,,TON,0.3350005 +NE,Nitrogen Oxides,2D3e_Degreasing,,TON,5E-11 +NE,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,2.8300011 +NE,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.55 +NE,Nitrogen Oxides,2H2_Food-and-beverage,,TON,174.1004007 +NE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1358.467974 +NE,Nitrogen Oxides,3Dc_Other-farm,,TON,72.02006 +NE,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.680078646 +NE,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,3.6 +NE,Nitrogen Oxides,5C_Incineration,biomass,TON,58.40982831 +NE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,21.3311012 +NE,Nitrogen Oxides,5C_Open-burning-residential,,TON,130.8299975 +NE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.5534078 +NE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.85 +NE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.33819913 +NE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,467.2216809 +NE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.351205688 +NE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,102.4996494 +NE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.102896548 +NE,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.399809014 +NE,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.072748052 +NE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.70927648 +NE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.644590325 +NE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.67764275 +NE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.272761005 +NE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.663393446 +NE,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.0000001 +NE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,13.32001413 +NE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,801.53113 +NE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.4700004 +NE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,52.08186945 +NE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,14.5150504 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5.378102837 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.78388667 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,54.12814916 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.41988E-07 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.010882726 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,181.7558061 +NE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.6910002 +NE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,239554.4981 +NE,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0.061112 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,42.07062773 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.182259719 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000311218 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.462444101 +NE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.825778628 +NE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.058732101 +NE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.876779423 +NE,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.1860001 +NE,PM10 Filterable,2A1_Cement-production,,TON,52.9962802 +NE,PM10 Filterable,2A2_Lime-production,,TON,1.365902338 +NE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,13504.05316 +NE,PM10 Filterable,2A6_Other-minerals,,TON,2306.612332 +NE,PM10 Filterable,2B_Chemicals-other,,TON,65.43675104 +NE,PM10 Filterable,2C_Iron-steel-alloy,,TON,48.1191436 +NE,PM10 Filterable,2C3_Aluminum-production,,TON,4.952844 +NE,PM10 Filterable,2C5_Lead-production,,TON,0.000001 +NE,PM10 Filterable,2C6_Zinc-production,,TON,7.3126201 +NE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,67.9059582 +NE,PM10 Filterable,2C7a_Copper-production,,TON,7.5072713 +NE,PM10 Filterable,2D3d_Coating-application,,TON,24.085503 +NE,PM10 Filterable,2D3e_Degreasing,,TON,0.04 +NE,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,9.1355455 +NE,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,14.0490001 +NE,PM10 Filterable,2H2_Food-and-beverage,,TON,1178.119766 +NE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1451.431341 +NE,PM10 Filterable,2I_Wood-processing,,TON,0.31 +NE,PM10 Filterable,3Dc_Other-farm,,TON,242727.8989 +NE,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,33.0800001 +NE,PM10 Filterable,5C_Incineration,biomass,TON,3.215112 +NE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,72.52576202 +NE,PM10 Filterable,5C_Open-burning-residential,,TON,828.589898 +NE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,9.5137161 +NE,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,5E-11 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.05862E-07 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.84696267 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2056.1232 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.550196468 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,123.9132227 +NE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,17.915131 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,53.07516428 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.34265875 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.695992703 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9.534131208 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,13.95678104 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,57.2380554 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.62423E-07 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.018348272 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,396.2581646 +NE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.73004036 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,320.1000889 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.32319868 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303091 +NE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,69.28323872 +NE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,239554.4866 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,30.10709662 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1253.934994 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,37.5608905 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,221.5597141 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,24.84142774 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.805959308 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.166676987 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,837.3792616 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.355651846 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,463.3426435 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,10.61493209 +NE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.20051595 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,2438.625187 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.102642488 +NE,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.370760686 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,43.51234773 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.23026871 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000832604 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.87437415 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,49.00511487 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.3641942 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.437065721 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.893723029 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,113.3128962 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1537.99429 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.819771756 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.129428149 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.67962699 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2155.280273 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.731900505 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008329965 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.32692 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,116.2713247 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.47316978 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,35.74169633 +NE,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.02834207 +NE,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,56.9040402 +NE,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.45869166 +NE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,13504.05316 +NE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2399.039258 +NE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,87.86686125 +NE,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,89.86192684 +NE,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,22.7493 +NE,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,3.68212E-06 +NE,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,33.63805046 +NE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,71.96382404 +NE,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,10.54189598 +NE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,24.085504 +NE,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.04 +NE,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,9.1355455 +NE,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,18.5040001 +NE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1731.395237 +NE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1474.74136 +NE,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.31 +NE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,242790.4665 +NE,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2.779163522 +NE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,33.08000026 +NE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.759170528 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,72.52576202 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,828.589898 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.5137161 +NE,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5E-11 +NE,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.6962E-08 +NE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.779345895 +NE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,313.5180791 +NE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.400000292 +NE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,27.98132665 +NE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,6.0409096 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3.98841885 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.194727498 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7.217370371 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.34904E-07 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.009312442 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,144.9801053 +NE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.5210001 +NE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,25730.64436 +NE,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0.053473 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,35.53883746 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.180272065 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000291787 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.830763084 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.634626341 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.045136698 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.682228803 +NE,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.1860001 +NE,PM2.5 Filterable,2A1_Cement-production,,TON,30.46373752 +NE,PM2.5 Filterable,2A2_Lime-production,,TON,0.960106471 +NE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1350.405316 +NE,PM2.5 Filterable,2A6_Other-minerals,,TON,382.6252626 +NE,PM2.5 Filterable,2B_Chemicals-other,,TON,61.97954786 +NE,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,37.6569956 +NE,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.0292741 +NE,PM2.5 Filterable,2C5_Lead-production,,TON,8.33333E-07 +NE,PM2.5 Filterable,2C6_Zinc-production,,TON,5.448217089 +NE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,23.65747075 +NE,PM2.5 Filterable,2C7a_Copper-production,,TON,0.925627864 +NE,PM2.5 Filterable,2D3d_Coating-application,,TON,21.6938632 +NE,PM2.5 Filterable,2D3e_Degreasing,,TON,0.0331915 +NE,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,4.934528419 +NE,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,7.151641461 +NE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,309.6554305 +NE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,695.7486774 +NE,PM2.5 Filterable,2I_Wood-processing,,TON,0.101552 +NE,PM2.5 Filterable,3Dc_Other-farm,,TON,48550.97556 +NE,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,8.6100001 +NE,PM2.5 Filterable,5C_Incineration,biomass,TON,3.1717566 +NE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,57.38281076 +NE,PM2.5 Filterable,5C_Open-burning-residential,,TON,758.8140367 +NE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,7.3341598 +NE,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.33333E-12 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,6.28241E-08 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.306323405 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1568.109339 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.48019636 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,99.81267987 +NE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,9.4409902 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,51.47320495 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.28369484 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.695550679 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8.181157142 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.429467858 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,13.75051257 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.69985E-07 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.016924056 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,354.9605232 +NE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.56004036 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,310.497053 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,13.18604793 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303091 +NE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,57.21912945 +NE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25730.63055 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,20.85230681 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,564.4273643 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,28.3488215 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,91.5911338 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,19.47586135 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.033174799 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.062327086 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,700.9444425 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.001366816 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,350.3303711 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.72988084 +NE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.88236422 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,2248.254652 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.094625314 +NE,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.359638446 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,36.97966189 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.228291151 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000813231 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.18356699 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47.53496575 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,19.71207394 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.437065721 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.596895712 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,104.2520391 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1535.471563 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.628619691 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.115832804 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.48507124 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2090.621928 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.113766078 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008329965 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.2871124 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,106.9698759 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.368974669 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,32.88236232 +NE,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.02834207 +NE,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,34.37145752 +NE,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.052895803 +NE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1350.405316 +NE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,476.3178267 +NE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,84.91965808 +NE,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,79.39975944 +NE,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,17.82573 +NE,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,3.51545E-06 +NE,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,31.77366045 +NE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,29.82533628 +NE,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.960252344 +NE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,21.6938642 +NE,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0331915 +NE,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,4.934528419 +NE,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,11.60664146 +NE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,891.0069046 +NE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,719.0486959 +NE,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.101552 +NE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,48616.76178 +NE,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1.43731492 +NE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,9.66000026 +NE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.715815128 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,57.38281076 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,758.8140367 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.3341598 +NE,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,3.33333E-12 +NE,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.0000001 +NE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.0561548 +NE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,71426.6 +NE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,7.0000004 +NE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,63.9731749 +NE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,13.9780459 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.233269233 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.029627637 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.13170886 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.731074909 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.79264606 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,358.397 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.01512E-07 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.06422E-05 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,98.39127365 +NE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,16.8745002 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,9.245953533 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.168489864 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.7047E-05 +NE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,53.2834292 +NE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.964239238 +NE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,143.9894545 +NE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.890832785 +NE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,27.06454404 +NE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.389850297 +NE,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.18282948 +NE,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.007241315 +NE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20.09471344 +NE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.462141564 +NE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9.233923179 +NE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.70678033 +NE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.012950258 +NE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,746.2489182 +NE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.013522605 +NE,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.137853516 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.11276055 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.060218529 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.100027955 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000812227 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.713568816 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.057849427 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.414861053 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.076971977 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.271070076 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.196420429 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,31.74936823 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,32.5723954 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.316655955 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,14.63034011 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,50.30330866 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.773463389 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001449232 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01807945 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.151264222 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.331427071 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.975414458 +NE,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.08 +NE,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.343744722 +NE,Sulfur Dioxide,2A1_Cement-production,,TON,270 +NE,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.0000001 +NE,Sulfur Dioxide,2A6_Other-minerals,,TON,830.3900008 +NE,Sulfur Dioxide,2B_Chemicals-other,,TON,2.5325703 +NE,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1.5643801 +NE,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.1739 +NE,Sulfur Dioxide,2C5_Lead-production,,TON,8.5E-10 +NE,Sulfur Dioxide,2C6_Zinc-production,,TON,0.0000929 +NE,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,6.610012 +NE,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0101001 +NE,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0108014 +NE,Sulfur Dioxide,2D3e_Degreasing,,TON,5E-11 +NE,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,2.6700001 +NE,Sulfur Dioxide,2H2_Food-and-beverage,,TON,55.5769007 +NE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,636.5653806 +NE,Sulfur Dioxide,3Dc_Other-farm,,TON,43.5983013 +NE,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.330195887 +NE,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.43 +NE,Sulfur Dioxide,5C_Incineration,biomass,TON,1.226288606 +NE,Sulfur Dioxide,5C_Open-burning-residential,,TON,21.80499712 +NE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.551718138 +NE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.57 +NE,Volatile Organic Compounds,11C_Other-natural,,TON,372699.32 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.0000001 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.6143762 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,503.21204 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.1400013 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,29.6052341 +NE,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,122.9722983 +NE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,19.55759938 +NE,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.02 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,60.8442128 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,191.908253 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.777266495 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.234265386 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.450622825 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,3.589877997 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.05751E-07 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.011282781 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,356.8608031 +NE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,47.6007001 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,379.6397227 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,156.4224337 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000619801 +NE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,169.3258609 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,212.3153607 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,19043.03807 +NE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,147.8178465 +NE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3358.91481 +NE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,32.9690581 +NE,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,26.13905435 +NE,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.04699776 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1982.950078 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,23.15769876 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,461.6925305 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,136.5425957 +NE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,322.65141 +NE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,3700.468979 +NE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,7.423915495 +NE,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.256631234 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.542112506 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.27296453 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000834905 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,91.21800837 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,68.04990433 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,940.366051 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.252083864 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,13.47618276 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2570.666108 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1968.663258 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.535227327 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.038067093 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,134.1115103 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2256.804382 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,477.4537505 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.028093141 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.406615 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3753.743752 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.901419572 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2335.763852 +NE,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,301.3139759 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,40.29310798 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1009.938382 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6812.129276 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4173.992778 +NE,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,374.899795 +NE,Volatile Organic Compounds,2A1_Cement-production,,TON,36.82 +NE,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.01 +NE,Volatile Organic Compounds,2A6_Other-minerals,,TON,0.182497389 +NE,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,448.8468232 +NE,Volatile Organic Compounds,2B_Chemicals-other,,TON,442.4955014 +NE,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,67.2044205 +NE,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.5735 +NE,Volatile Organic Compounds,2C5_Lead-production,,TON,4E-10 +NE,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0000852 +NE,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,34.6935012 +NE,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.0000001 +NE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,7698.025215 +NE,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.28 +NE,Volatile Organic Compounds,2D3d_Coating-application,,TON,5043.305824 +NE,Volatile Organic Compounds,2D3e_Degreasing,,TON,1675.85538 +NE,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,3.275 +NE,Volatile Organic Compounds,2D3h_Printing,,TON,700.851165 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1334.748902 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1647.12539 +NE,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,4.9665001 +NE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,702.5368587 +NE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1138.145419 +NE,Volatile Organic Compounds,3Dc_Other-farm,,TON,54.474012 +NE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,14562.42325 +NE,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1.079380169 +NE,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,30.6000002 +NE,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.157246132 +NE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,49.48815721 +NE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,186.6508262 +NE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,21.7153453 +NE,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,199.6736799 +NE,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.0000001 +NH,Ammonia,1A1a_Public-Electricity,biomass,TON,20.85879 +NH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.0000501 +NH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,3.113414 +NH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,138.9668 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.675654652 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.052443501 +NH,Ammonia,1A2_Industrial_fuel_combustion,Other_Fuel,TON,0.01539 +NH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.500902282 +NH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.068693116 +NH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.4733455 +NH,Ammonia,1A3bii_Road-LDV,light_oil,TON,411.91504 +NH,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.17133146 +NH,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.8011173 +NH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.67201771 +NH,Ammonia,1A3biii_Road-bus,light_oil,TON,1.48893371 +NH,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.14604795 +NH,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.5782127 +NH,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.026074113 +NH,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.6810426 +NH,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.340699061 +NH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.162343 +NH,Ammonia,1A3c_Rail,diesel_oil,TON,0.128437582 +NH,Ammonia,1A3c_Rail,light_oil,TON,0.000762979 +NH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.129219823 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.003019 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.23166326 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.312816653 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.639734337 +NH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.119318645 +NH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.47945615 +NH,Ammonia,1A4bi_Residential-stationary,biomass,TON,326.5613634 +NH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,73.02426 +NH,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.730133 +NH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,74.6218906 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.306062337 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.03571131 +NH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00576735 +NH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.460329999 +NH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.4110361 +NH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.3080318 +NH,Ammonia,2A6_Other-minerals,Other_Fuel,TON,39.958 +NH,Ammonia,2C_Iron-steel-alloy,Other_Fuel,TON,11.1001 +NH,Ammonia,2D3d_Coating-application,,TON,0.861721 +NH,Ammonia,2H1_Pulp-and-paper,,TON,8.833514 +NH,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,4.282158 +NH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.285484 +NH,Ammonia,3B1a_Cattle-dairy,,TON,667.324218 +NH,Ammonia,3B1b_Cattle-non-dairy,,TON,35.91386806 +NH,Ammonia,3B2_Manure-sheep,,TON,26.80656 +NH,Ammonia,3B3_Manure-swine,,TON,19.828446 +NH,Ammonia,3B4_Manure-other,,TON,132.9504 +NH,Ammonia,3B4_Manure-poultry,,TON,125.111914 +NH,Ammonia,3B4d_Manure-goats,,TON,27.15504 +NH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,383.617604 +NH,Ammonia,5C_Incineration,,TON,0.317041 +NH,Ammonia,5D1_Wastewater-domestic,,TON,4.963105 +NH,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,87.80776 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,83187.99576 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,96559.45972 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5285.148572 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,307741.2072 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5695.448169 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.2933503 +NH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,62020.095 +NH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5346734.9 +NH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6354.2007 +NH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,79272.92 +NH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,108577.6 +NH,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,42278.86566 +NH,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,6309.251 +NH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,330235.38 +NH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1098.9367 +NH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,589229.47 +NH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,176260.7518 +NH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,84477.5 +NH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1261.1675 +NH,Carbon Dioxide,1A3c_Rail,light_oil,TON,59.2227516 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,38441.17129 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,53055.6853 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2332.398168 +NH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,14674.76899 +NH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,108980.5291 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37680.11103 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2507.147959 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.3220218 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,706.02661 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,164075.9644 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,50614.33 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,93102.599 +NH,Carbon Monoxide,11C_Other-natural,,TON,15972.881 +NH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1570.65914 +NH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,2.906935 +NH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,220.6143 +NH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,11.358995 +NH,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.307099 +NH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,674.1027 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,467.0302287 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4439.372049 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,270.9907326 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,377.7717112 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.83380433 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.5830346 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,207.4412929 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1282.836024 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1283.532471 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.0932348 +NH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1629.581459 +NH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1140.0139 +NH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,80282.071 +NH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,41.403885 +NH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1234.5901 +NH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,325.853714 +NH,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1806.388277 +NH,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,45.23074 +NH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,798.82905 +NH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,35.809357 +NH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1642.05234 +NH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6235.510655 +NH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4050.436 +NH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,47.02071053 +NH,Carbon Monoxide,1A3c_Rail,light_oil,TON,14.73274516 +NH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,41.46729852 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,127.2018617 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,111.6159038 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,30.34895244 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.530672167 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,559.8548931 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,203.68208 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12188.05897 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,54.9336411 +NH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,59.93120165 +NH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,28830.82636 +NH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,42380.99297 +NH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,343.09 +NH,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,18.65068 +NH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,309.79 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,124.1087333 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,822.7514344 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.03533023 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.826398 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,20954.38342 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,98.87735 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,12178.224 +NH,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,0.7694 +NH,Carbon Monoxide,2D3d_Coating-application,,TON,0.6321 +NH,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.002494 +NH,Carbon Monoxide,2H2_Food-and-beverage,,TON,165.989654 +NH,Carbon Monoxide,2I_Wood-processing,,TON,2.22768 +NH,Carbon Monoxide,3F_Ag-res-on-field,,TON,167.29011 +NH,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,129.005701 +NH,Carbon Monoxide,5C_Incineration,,TON,21.02868462 +NH,Carbon Monoxide,5C_Incineration,biomass,TON,0 +NH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,11518.721 +NH,Carbon Monoxide,5C_Open-burning-residential,,TON,2205.7264 +NH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,299.1804 +NH,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.3997808 +NH,Methane,1A3bii_Road-LDV,light_oil,TON,229.96457 +NH,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.28636976 +NH,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.631852 +NH,Methane,1A3biii_Road-bus,diesel_oil,TON,1.577454878 +NH,Methane,1A3biii_Road-bus,light_oil,TON,3.853646055 +NH,Methane,1A3biii_Road-bus,natural_gas,TON,52.24711 +NH,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25.51613326 +NH,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.037750541 +NH,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.00792793 +NH,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,13.58153862 +NH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.764961 +NH,Nitrogen Oxides,11C_Other-natural,,TON,716.9123 +NH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,602.6166 +NH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,3.23077 +NH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,3414.192 +NH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,117.9 +NH,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,4.669321 +NH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,241.41181 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,570.5070585 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,595.715789 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,39.65712176 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,130.6737077 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,203.0857188 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,206.6778633 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,294.6183381 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2317.728283 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,25.58276575 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.018954207 +NH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,220.4025093 +NH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,198.39906 +NH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,8827.216 +NH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.180593 +NH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,152.9346 +NH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,886.0418 +NH,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,232.3412157 +NH,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,30.69023 +NH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2738.80664 +NH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,4.273495 +NH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4358.1696 +NH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,746.8608664 +NH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,188.54188 +NH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,395.9846099 +NH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.265827716 +NH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,492.9701705 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,94.74653426 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,399.9258893 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,284.0649669 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.612367544 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,699.8795026 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,351.5885325 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,255.4651935 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.6023078 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,133.5562076 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,385.5640994 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,502.64933 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1235.12 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,67.142415 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,932.94 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,266.8433326 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.22690078 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007869184 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.90122 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,250.2164178 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,572.6333 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,742.66962 +NH,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,1.80809 +NH,Nitrogen Oxides,2D3d_Coating-application,,TON,0.7525 +NH,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.660012 +NH,Nitrogen Oxides,2I_Wood-processing,,TON,2.652 +NH,Nitrogen Oxides,3F_Ag-res-on-field,,TON,6.0855727 +NH,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,20.441247 +NH,Nitrogen Oxides,5C_Incineration,,TON,544.8624415 +NH,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +NH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,340.79049 +NH,Nitrogen Oxides,5C_Open-burning-residential,,TON,155.69856 +NH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,13.296916 +NH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.17378747 +NH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,215.49426 +NH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.021809082 +NH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.7466648 +NH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.224954032 +NH,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.114534497 +NH,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.3230514 +NH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.33866086 +NH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.031205459 +NH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.20363774 +NH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.394194244 +NH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.0225491 +NH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,77.22073 +NH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.25363 +NH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,200.34215 +NH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.06889 +NH,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.026334 +NH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,16.244007 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,107.6320245 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.931772155 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,43.98750811 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,4.555887179 +NH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,15707.434 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,76.75821879 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.55545517 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,59.06637976 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.333573962 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.57663189 +NH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,74.1 +NH,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.028547 +NH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.567732217 +NH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,2306.35332 +NH,PM10 Filterable,2A6_Other-minerals,,TON,1253.755296 +NH,PM10 Filterable,2C_Iron-steel-alloy,,TON,0.071912 +NH,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.229572 +NH,PM10 Filterable,2D3d_Coating-application,,TON,0.014298 +NH,PM10 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,0.000755 +NH,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1 +NH,PM10 Filterable,2H2_Food-and-beverage,,TON,33.9325235 +NH,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,94.6399 +NH,PM10 Filterable,2I_Wood-processing,,TON,0.050388 +NH,PM10 Filterable,3Dc_Other-farm,,TON,1355.97 +NH,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,10.216469 +NH,PM10 Filterable,5C_Incineration,,TON,4.685 +NH,PM10 Filterable,5C_Incineration,biomass,TON,0 +NH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1158.6881 +NH,PM10 Filterable,5C_Open-burning-residential,,TON,986.0904 +NH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,49.542875 +NH,PM10 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,0.344955 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,79.8883189 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.322702874 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,365.31553 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,11.786919 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02791404 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,30.337943 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,47.56812491 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.04924785 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.654009219 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,112.224225 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,22.64439051 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,51.03035141 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,14.82312058 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,198.8122348 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.897701875 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +NH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,33.59851032 +NH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,15707.434 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,15.1112629 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,816.75532 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.9890486 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.122255 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,68.77754 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.74180505 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.8231577 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,148.706741 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.16171969 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,358.84553 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,25.57023517 +NH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.389295 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,10.95097478 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.008223788 +NH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,47.03321613 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,77.87929744 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,51.24347061 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,67.42368858 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.72689007 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,85.72423509 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,33.72672647 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,14.69666223 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.292477575 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.12889732 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,107.0327573 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6493.03982 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,163.31 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,8.8777255 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.070343763 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.23624547 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.97377976 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.07445E-05 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.97895375 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,240.8273544 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.601513 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,44.736313 +NH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2306.35332 +NH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1255.818748 +NH,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.206034 +NH,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.229572 +NH,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.014298 +NH,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,0.000755 +NH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.86842 +NH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,436.151813 +NH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,94.6399 +NH,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.050388 +NH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1355.97 +NH,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,32.043664 +NH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,26.5627854 +NH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,5.42511725 +NH,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1158.6881 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,986.0904 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,49.542875 +NH,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.344955 +NH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,67.83981 +NH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.069159 +NH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,104.797916 +NH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,6.556089 +NH,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0228996 +NH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,16.244007 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,81.44764093 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.612128284 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.40976792 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,4.562330028 +NH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,2618.9432 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,67.18046617 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.41577927 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,39.44771369 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.260690884 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.06415911 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,56.95 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.096014 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.867672719 +NH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,230.621332 +NH,PM2.5 Filterable,2A6_Other-minerals,,TON,188.199506 +NH,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0.021931003 +NH,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.229572 +NH,PM2.5 Filterable,2D3d_Coating-application,,TON,0.014298 +NH,PM2.5 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,0.000755 +NH,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1 +NH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.30794619 +NH,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,94.6399 +NH,PM2.5 Filterable,2I_Wood-processing,,TON,0.050388 +NH,PM2.5 Filterable,3Dc_Other-farm,,TON,271.19 +NH,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,10.216469 +NH,PM2.5 Filterable,5C_Incineration,,TON,4.685 +NH,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +NH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,893.2335 +NH,PM2.5 Filterable,5C_Open-burning-residential,,TON,903.0508 +NH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,38.192758 +NH,PM2.5 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,0.344955 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,70.5073989 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.138232434 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,269.77081 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,8.274138 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02447964 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,30.337943 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,46.13415821 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.995918207 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.653643671 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,85.99837493 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,15.33782294 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,35.49140289 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,14.83916165 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,192.8479993 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.191255552 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +NH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,27.76750042 +NH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,2618.9432 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,9.6878388 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,292.02436 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.4046872 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.7464463 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,54.876281 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.86505933 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.27959912 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,117.819681 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.10952843 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,279.3747 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.29533784 +NH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.978878 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,10.15037715 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007580945 +NH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,43.17161966 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,67.93126172 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,46.23047608 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,48.12601084 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.656027848 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,86.13232561 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32.71494316 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.56012152 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.292477575 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.825026898 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,98.47440029 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6493.03982 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,146.15 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.945187 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.380284266 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.56914619 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.175886861 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.07445E-05 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.94958576 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,221.5614894 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.283471 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,41.157446 +NH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,230.621332 +NH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,190.262958 +NH,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.156053 +NH,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.229572 +NH,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.014298 +NH,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,0.000755 +NH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.86842 +NH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,404.5271647 +NH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,94.6399 +NH,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.050388 +NH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,271.19 +NH,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,17.681161 +NH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,26.5627854 +NH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,5.42511725 +NH,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,893.2335 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,903.0508 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,38.192758 +NH,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.344955 +NH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,10.025586 +NH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.038758 +NH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,24097.618 +NH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,304.1 +NH,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.136782 +NH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,25.35102 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.903890243 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.948886984 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.122265846 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,7.709966588 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,421.3474153 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,673.2554422 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,20.10032859 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.742283737 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.10456276 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85235E-05 +NH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,26.07233987 +NH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.53212092 +NH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,106.453415 +NH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.054559635 +NH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1.578526 +NH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.93516936 +NH,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.841659134 +NH,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.03340413 +NH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.8411106 +NH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.02186651 +NH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.0895952 +NH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.508985287 +NH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.6815584 +NH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,2.690560629 +NH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001081993 +NH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,379.8797864 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,4.840902989 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,834.8242496 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,778.663832 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,12.41532601 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.10844812 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.728130501 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.9733837 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.051571233 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.277583235 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.985860114 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,169.7543276 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2923.16 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,158.90385 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.65039665 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.701198622 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.045605498 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.0825E-06 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01332987 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.979244075 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.0856616 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.6943383 +NH,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,0.011541 +NH,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.003304 +NH,Sulfur Dioxide,2D3d_Coating-application,,TON,0.004515 +NH,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.02798 +NH,Sulfur Dioxide,2I_Wood-processing,,TON,0.015912 +NH,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.68304395 +NH,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,91.795568 +NH,Sulfur Dioxide,5C_Incineration,,TON,92.5952049 +NH,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +NH,Sulfur Dioxide,5C_Open-burning-residential,,TON,25.94974 +NH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.8730845 +NH,Volatile Organic Compounds,11C_Other-natural,,TON,94138.3 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,44.4108 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.0710382 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,45.47381 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.726568 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.002464 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,32.222221 +NH,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,0.646577 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,52.82523015 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,183.5443548 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.726682725 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,5.070879399 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.217054755 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.202299114 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,14.81022963 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,235.7735444 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,93.96336809 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +NH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,92.23673782 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,114.63236 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7759.0044 +NH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.694047 +NH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,99.24202 +NH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,83.138206 +NH,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,90.9748604 +NH,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,6.024217 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,243.473646 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,1.2166488 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,469.45324 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,297.1134036 +NH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,567.4874 +NH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,17.05897045 +NH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.544210281 +NH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14.72683479 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.039183868 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.41166018 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.264231139 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.11767943 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,60.64249881 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,46.83413756 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,607.2114772 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.171818569 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,13.79985028 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2174.065151 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7310.823658 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,48.91 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.6110915 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,42.55 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.62529719 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,88.99550072 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000136777 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.7746824 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8676.678427 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.62862 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2871.690506 +NH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,105.388541 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,92.30180832 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,330.4237252 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,524.3329992 +NH,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,280.2210505 +NH,Volatile Organic Compounds,2B_Chemicals-other,,TON,24.182 +NH,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,3.212226 +NH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,Other_Fuel,TON,4520.94 +NH,Volatile Organic Compounds,2D3d_Coating-application,,TON,3662.242567 +NH,Volatile Organic Compounds,2D3e_Degreasing,,TON,1084.547865 +NH,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,14.1319998 +NH,Volatile Organic Compounds,2D3h_Printing,,TON,259.0692 +NH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,587.81 +NH,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,21.466601 +NH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,122.7424293 +NH,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,8.169851 +NH,Volatile Organic Compounds,2I_Wood-processing,,TON,0.14586 +NH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,337.61 +NH,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,10.2018315 +NH,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,107.827984 +NH,Volatile Organic Compounds,5C_Incineration,,TON,1.504374388 +NH,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +NH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,790.6343 +NH,Volatile Organic Compounds,5C_Open-burning-residential,,TON,222.12977 +NH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,55.799572 +NH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,24.962355 +NH,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.87903 +NH,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,100.462942 +NH,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.010901 +NJ,Ammonia,1A1a_Public-Electricity,biomass,TON,0.25 +NJ,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,9.0024 +NJ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,9.0095 +NJ,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.5286 +NJ,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.02 +NJ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,264.1127 +NJ,Ammonia,1A1b_Pet-refining,natural_gas,TON,12.269 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.198926616 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.206938355 +NJ,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.183758641 +NJ,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,12.63780375 +NJ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.05616077 +NJ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.604985345 +NJ,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,36.13831937 +NJ,Ammonia,1A2c_Chemicals,heavy_oil,TON,0.0498 +NJ,Ammonia,1A2c_Chemicals,natural_gas,TON,0.7926 +NJ,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0226 +NJ,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0886 +NJ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.41483974 +NJ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.36831224 +NJ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,9.8106324 +NJ,Ammonia,1A3bii_Road-LDV,light_oil,TON,2142.39285 +NJ,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.848163 +NJ,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,236.49043 +NJ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,12.75136268 +NJ,Ammonia,1A3biii_Road-bus,light_oil,TON,1.942401299 +NJ,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.70775571 +NJ,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22.7314144 +NJ,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.215753034 +NJ,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,27.0983502 +NJ,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,12.53314296 +NJ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.8810894 +NJ,Ammonia,1A3c_Rail,diesel_oil,TON,0.766703448 +NJ,Ammonia,1A3c_Rail,light_oil,TON,0.000279646 +NJ,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.268907806 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.580089887 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.89897115 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.042469752 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00220034 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,59.2212633 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.530461415 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.17664632 +NJ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.912971455 +NJ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.38648987 +NJ,Ammonia,1A4bi_Residential-stationary,biomass,TON,354.707038 +NJ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,117.72598 +NJ,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.58211987 +NJ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,55.2215916 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.621888379 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.025801501 +NJ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.038805806 +NJ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.635185442 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.523798247 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.636343456 +NJ,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0103 +NJ,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.202 +NJ,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0045 +NJ,Ammonia,2A6_Other-minerals,,TON,4.4675 +NJ,Ammonia,2B_Chemicals-other,,TON,0 +NJ,Ammonia,2C_Iron-steel-alloy,,TON,0.7092 +NJ,Ammonia,2C3_Aluminum-production,,TON,0.092 +NJ,Ammonia,2C5_Lead-production,,TON,0.0001 +NJ,Ammonia,2C6_Zinc-production,,TON,0.0036 +NJ,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.0096 +NJ,Ammonia,2D3d_Coating-application,,TON,6.1003 +NJ,Ammonia,2D3h_Printing,,TON,1.0908 +NJ,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.6217 +NJ,Ammonia,2H2_Food-and-beverage,,TON,21.0737 +NJ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,627.7094 +NJ,Ammonia,3B1a_Cattle-dairy,,TON,461.4575882 +NJ,Ammonia,3B1b_Cattle-non-dairy,,TON,117.5830306 +NJ,Ammonia,3B2_Manure-sheep,,TON,51.831912 +NJ,Ammonia,3B3_Manure-swine,,TON,60.7306524 +NJ,Ammonia,3B4_Manure-other,,TON,405.3588 +NJ,Ammonia,3B4_Manure-poultry,,TON,797.8918477 +NJ,Ammonia,3B4d_Manure-goats,,TON,74.112588 +NJ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1717.383919 +NJ,Ammonia,3F_Ag-res-on-field,,TON,24.47071544 +NJ,Ammonia,5A_Solid-waste-disposal,,TON,0 +NJ,Ammonia,5C_Incineration,,TON,3.177 +NJ,Ammonia,5C_Incineration,biomass,TON,20.6171 +NJ,Ammonia,5D1_Wastewater-domestic,,TON,48.370353 +NJ,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,20.3625 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,390861.2442 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,381686.472 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,20853.46962 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1650724.327 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,30551.33977 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.7601074 +NJ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,423719.408 +NJ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,30348919 +NJ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,317406.45 +NJ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4103748 +NJ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,838264.9301 +NJ,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,61524.9465 +NJ,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,27432.292 +NJ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1365397.092 +NJ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,39197.8699 +NJ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1817587.69 +NJ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,410109.4483 +NJ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,100619.826 +NJ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,449.66011 +NJ,Carbon Dioxide,1A3c_Rail,light_oil,TON,21.63966201 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,310961.4719 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,429367.4701 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18936.06984 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,112284.5287 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,765370.5199 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,76516.4434 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1877.320969 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.715814659 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4750.5307 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,108632.4541 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,187695.6495 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,180174.0149 +NJ,Carbon Monoxide,11C_Other-natural,,TON,14066.0347 +NJ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,8.852 +NJ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,112.5715 +NJ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,684.4353 +NJ,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,7.71 +NJ,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.08 +NJ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2196.483 +NJ,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,407.1134 +NJ,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.2433 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2707.029762 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17692.49346 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1080.891266 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,12.05855189 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1096.444079 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,209.7190102 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.556461479 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,807.4748293 +NJ,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0.1009 +NJ,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,4.3779 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.4152 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0895 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.7567 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6880.250785 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6903.871448 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.55940924 +NJ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6556.135364 +NJ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3677.3038 +NJ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,361274.74 +NJ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2138.8624 +NJ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,58015.048 +NJ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2307.650407 +NJ,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2671.191529 +NJ,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,163.456698 +NJ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3321.546148 +NJ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1642.24311 +NJ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3945.0519 +NJ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12189.27927 +NJ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4336.7476 +NJ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,637.8905626 +NJ,Carbon Monoxide,1A3c_Rail,light_oil,TON,5.440458799 +NJ,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1850.281221 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,75.99289603 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,263.2185236 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000436741 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,20.36412575 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.970355443 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8161.539333 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1647.850165 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,99350.14314 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,445.2914387 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,458.6606085 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,201539.8565 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,44060.11973 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,588.62986 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.7799981 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4629.09115 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,333.1035144 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,522.7220379 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.188609603 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,45.93633 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,22673.82779 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,343.2953305 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,23855.30905 +NJ,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.04 +NJ,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.2708 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.7827 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.6618 +NJ,Carbon Monoxide,2A6_Other-minerals,,TON,160.7517 +NJ,Carbon Monoxide,2B_Chemicals-other,,TON,295.8186 +NJ,Carbon Monoxide,2C_Iron-steel-alloy,,TON,602.4777 +NJ,Carbon Monoxide,2C3_Aluminum-production,,TON,7.0498 +NJ,Carbon Monoxide,2C5_Lead-production,,TON,0.0169 +NJ,Carbon Monoxide,2C6_Zinc-production,,TON,1.138 +NJ,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.4068 +NJ,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,7.0239 +NJ,Carbon Monoxide,2D3d_Coating-application,,TON,29.891 +NJ,Carbon Monoxide,2D3h_Printing,,TON,6.5266 +NJ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,53.083 +NJ,Carbon Monoxide,2H2_Food-and-beverage,,TON,870.696427 +NJ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,553.6036 +NJ,Carbon Monoxide,3Dc_Other-farm,,TON,0 +NJ,Carbon Monoxide,3F_Ag-res-on-field,,TON,1510.312197 +NJ,Carbon Monoxide,5A_Solid-waste-disposal,,TON,267.4941315 +NJ,Carbon Monoxide,5C_Incineration,,TON,120.4198594 +NJ,Carbon Monoxide,5C_Incineration,biomass,TON,257.8152629 +NJ,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +NJ,Carbon Monoxide,5C_Open-burning-residential,,TON,90.28285 +NJ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,79.7502145 +NJ,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,6.8037 +NJ,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.42 +NJ,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.2239 +NJ,Methane,1A3bii_Road-LDV,diesel_oil,TON,24.5098196 +NJ,Methane,1A3bii_Road-LDV,light_oil,TON,1042.42182 +NJ,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.257993 +NJ,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,206.90366 +NJ,Methane,1A3biii_Road-bus,diesel_oil,TON,16.57680449 +NJ,Methane,1A3biii_Road-bus,light_oil,TON,4.648945368 +NJ,Methane,1A3biii_Road-bus,natural_gas,TON,187.22778 +NJ,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,131.6844533 +NJ,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.1123032 +NJ,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,43.098767 +NJ,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,19.04425168 +NJ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.2289848 +NJ,Nitrogen Oxides,11C_Other-natural,,TON,1482.16377 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,132.267 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,565.8311 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,3096.424 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,28.12 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.05 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3139.8961 +NJ,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1186.1979 +NJ,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.0837 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2781.442024 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2367.75617 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,157.8934361 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,13.89986743 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,404.9731881 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,788.9222427 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,59.08339883 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1926.344016 +NJ,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,2.9162 +NJ,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,13.2342 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.8222 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.1065 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.8562 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,12434.11917 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,132.4387361 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.11372534 +NJ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2986.499495 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1171.183515 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,42741.588 +NJ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1178.1506 +NJ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7219.5588 +NJ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5946.574141 +NJ,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,268.9247803 +NJ,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,110.719178 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10301.32874 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,181.504352 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10122.7362 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1266.366834 +NJ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,190.23664 +NJ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4619.468536 +NJ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.091632294 +NJ,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10903.33276 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,25.57668555 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,963.2133682 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000400888 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,201.2424037 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.23000973 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8462.366684 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2844.051024 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1980.465233 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,118.2978479 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1021.652946 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2615.527584 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,710.2602757 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,2119.0665 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,13.60801 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,10731.6437 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,672.5711377 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,9.334197983 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.042066496 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,46.478276 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,263.0200449 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1929.2744 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1093.407069 +NJ,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.27 +NJ,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.3224 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,6.3916 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,10.9106 +NJ,Nitrogen Oxides,2A6_Other-minerals,,TON,1005.9875 +NJ,Nitrogen Oxides,2B_Chemicals-other,,TON,80.0211 +NJ,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,57.0741 +NJ,Nitrogen Oxides,2C3_Aluminum-production,,TON,13.5377 +NJ,Nitrogen Oxides,2C5_Lead-production,,TON,0.0201 +NJ,Nitrogen Oxides,2C6_Zinc-production,,TON,0.677 +NJ,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,1.6772 +NJ,Nitrogen Oxides,2D3d_Coating-application,,TON,19.2545 +NJ,Nitrogen Oxides,2D3h_Printing,,TON,8.2507 +NJ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,5.26 +NJ,Nitrogen Oxides,2H2_Food-and-beverage,,TON,22.795 +NJ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,512.5302 +NJ,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +NJ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0 +NJ,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,76.0248 +NJ,Nitrogen Oxides,5C_Incineration,,TON,883.9287456 +NJ,Nitrogen Oxides,5C_Incineration,biomass,TON,1218.486785 +NJ,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,82.27711 +NJ,Nitrogen Oxides,5C_Open-burning-residential,,TON,6.3667661 +NJ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,4.03220453 +NJ,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,2.8183 +NJ,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,10.437 +NJ,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.0505 +NJ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.28786522 +NJ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1092.69823 +NJ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.11973878 +NJ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,200.84153 +NJ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.956963518 +NJ,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.795950743 +NJ,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.864119 +NJ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.70476357 +NJ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.38560945 +NJ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.84923878 +NJ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,18.03801909 +NJ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.6890314 +NJ,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,3.684 +NJ,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,63.88130031 +NJ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,155.75236 +NJ,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.81577762 +NJ,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0282 +NJ,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,319.490832 +NJ,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,268.1495333 +NJ,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.02693509 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.929164973 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,899.3835788 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,44.35242804 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.146459461 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,116.9919498 +NJ,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0.39804 +NJ,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,2.34632 +NJ,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.02552115 +NJ,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.5104 +NJ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,21466.66 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,150.8652199 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,151.6194644 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000780337 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,61.42567571 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006294719 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,89.14191225 +NJ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,77.933664 +NJ,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.45303156 +NJ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,22.1388 +NJ,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.09 +NJ,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.9555 +NJ,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.5723 +NJ,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.1028 +NJ,PM10 Filterable,2A2_Lime-production,,TON,2.522514684 +NJ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,218.36 +NJ,PM10 Filterable,2A6_Other-minerals,,TON,2552.938981 +NJ,PM10 Filterable,2B_Chemicals-other,,TON,49.84420135 +NJ,PM10 Filterable,2C_Iron-steel-alloy,,TON,6.271588783 +NJ,PM10 Filterable,2C3_Aluminum-production,,TON,5.02750395 +NJ,PM10 Filterable,2C5_Lead-production,,TON,0.000968478 +NJ,PM10 Filterable,2C6_Zinc-production,,TON,0.4487393 +NJ,PM10 Filterable,2C7_Other-metal,,TON,5.284832561 +NJ,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,9.4581 +NJ,PM10 Filterable,2D3d_Coating-application,,TON,9.9104 +NJ,PM10 Filterable,2D3h_Printing,,TON,0.21359 +NJ,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,14.55302525 +NJ,PM10 Filterable,2H2_Food-and-beverage,,TON,2331.194162 +NJ,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,651.0798663 +NJ,PM10 Filterable,2I_Wood-processing,,TON,0.1206 +NJ,PM10 Filterable,3Dc_Other-farm,,TON,248.88 +NJ,PM10 Filterable,3F_Ag-res-on-field,,TON,185.01 +NJ,PM10 Filterable,5A_Solid-waste-disposal,,TON,33.431423 +NJ,PM10 Filterable,5C_Incineration,,TON,70.38098066 +NJ,PM10 Filterable,5C_Incineration,biomass,TON,82.3982377 +NJ,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +NJ,PM10 Filterable,5C_Open-burning-residential,,TON,19.75 +NJ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.36 +NJ,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,4.18055584 +NJ,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,4.4203907 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.684 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,66.5022 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,239.8178 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,10.32 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.03 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,572.6416 +NJ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,391.8433 +NJ,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,223.7934331 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,40.30754162 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.621834144 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.92889734 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,929.7045327 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,92.61030076 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,6.98666139 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,284.9207583 +NJ,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.5334 +NJ,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.8262 +NJ,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0306 +NJ,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.5136 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1066.323225 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,47.71587576 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909276 +NJ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,133.152494 +NJ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,21466.81241 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,94.0743594 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4602.8266 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,96.699009 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,656.03334 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,490.7614778 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,12.26639496 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,4.0272832 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,632.102766 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,9.51625509 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,873.32444 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,55.29829717 +NJ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.9469363 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,124.6024823 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003007608 +NJ,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,507.7502906 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,118.9282496 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,226.094684 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000594919 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,53.37707429 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008725479 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,164.8065073 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,272.8628193 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,118.9235417 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.37491722 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,77.52445783 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,775.833047 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6301.922322 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,178.94346 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.14912036 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,58.5065926 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,58.85878076 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.64963227 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000216919 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.5849534 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,203.0180575 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.31471527 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,136.0347513 +NJ,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.09 +NJ,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.9555 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.5723 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.1028 +NJ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,3.2748 +NJ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,218.599571 +NJ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2572.94108 +NJ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,54.6947 +NJ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,20.0362 +NJ,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,6.0816 +NJ,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0059 +NJ,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.697 +NJ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,5.6342 +NJ,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,9.4581 +NJ,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.9104 +NJ,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.2232 +NJ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,15.4822 +NJ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2332.062493 +NJ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,654.1764 +NJ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.1206 +NJ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,248.986214 +NJ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,185.2443979 +NJ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,44.1046 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,,TON,74.78267949 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,158.6898778 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,19.8309241 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.584382 +NJ,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,524.7482 +NJ,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5.421 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,3.67797468 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,62.13735353 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,151.6523607 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.48577762 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0282 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,310.476082 +NJ,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,234.7300343 +NJ,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.02293509 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.770858908 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,772.8371802 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.04116183 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.24110471 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,92.76123836 +NJ,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0.0581397 +NJ,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,2.34632 +NJ,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.02552115 +NJ,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.193602 +NJ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5021.492919 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,154.0763217 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,148.6186862 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,42.85610696 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00227037 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,66.83132561 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,72.013664 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.4327099 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,11.9688 +NJ,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0865 +NJ,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.9555 +NJ,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.5522 +NJ,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0846 +NJ,PM2.5 Filterable,2A2_Lime-production,,TON,2.522514684 +NJ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,43.49 +NJ,PM2.5 Filterable,2A6_Other-minerals,,TON,474.5183378 +NJ,PM2.5 Filterable,2B_Chemicals-other,,TON,49.08974714 +NJ,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.857388783 +NJ,PM2.5 Filterable,2C3_Aluminum-production,,TON,5.00470395 +NJ,PM2.5 Filterable,2C5_Lead-production,,TON,0.000968478 +NJ,PM2.5 Filterable,2C6_Zinc-production,,TON,0.4487393 +NJ,PM2.5 Filterable,2C7_Other-metal,,TON,3.562273107 +NJ,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,9.4581 +NJ,PM2.5 Filterable,2D3d_Coating-application,,TON,9.38488281 +NJ,PM2.5 Filterable,2D3h_Printing,,TON,0.20939 +NJ,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,13.80823445 +NJ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2328.747258 +NJ,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,445.1487024 +NJ,PM2.5 Filterable,2I_Wood-processing,,TON,0.1206 +NJ,PM2.5 Filterable,3Dc_Other-farm,,TON,49.7 +NJ,PM2.5 Filterable,3F_Ag-res-on-field,,TON,185.01 +NJ,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,25.73018063 +NJ,PM2.5 Filterable,5C_Incineration,,TON,65.34058036 +NJ,PM2.5 Filterable,5C_Incineration,biomass,TON,82.3120377 +NJ,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +NJ,PM2.5 Filterable,5C_Open-burning-residential,,TON,18.08 +NJ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,13.75999911 +NJ,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,3.93525584 +NJ,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.5333907 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.67797468 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,64.7582541 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,235.7178 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,5.99 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.03 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,563.62685 +NJ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,358.4239 +NJ,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,217.0222076 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,40.07324128 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.61870582 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.770750516 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,803.2876067 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,69.27241994 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.094910299 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,260.5615576 +NJ,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.1935 +NJ,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.8262 +NJ,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0306 +NJ,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1968 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1034.333291 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.92752367 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909276 +NJ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,116.1201624 +NJ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5021.693675 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,56.0188986 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1403.63318 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,65.613121 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,180.6067 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,367.3686537 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.77915557 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.30758242 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,476.460876 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.67519067 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,623.07894 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,22.82259506 +NJ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.7658497 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,114.6612179 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.002772019 +NJ,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,476.2107445 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,111.3460641 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,223.0496036 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,36.82848184 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00583014 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,151.3120709 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,264.6769368 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,109.7271495 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.37491722 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,75.19871058 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,713.7990203 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6294.931741 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,173.05722 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.1113197 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,48.3382814 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,57.09303694 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.357665199 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000216919 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.3874061 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,186.7784826 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,39.10532315 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,125.1520266 +NJ,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0865 +NJ,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.9555 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.5522 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0846 +NJ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,3.2748 +NJ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,43.7198958 +NJ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,494.5223308 +NJ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,53.9402458 +NJ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,19.622 +NJ,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,6.0588 +NJ,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0059 +NJ,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.697 +NJ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,3.911640446 +NJ,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,9.4581 +NJ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.38488281 +NJ,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.219 +NJ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,14.7374092 +NJ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2329.592719 +NJ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,448.2452335 +NJ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.1206 +NJ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,49.7972868 +NJ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,185.2443979 +NJ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,36.40335763 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,69.69813663 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,158.6310206 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,18.1609369 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.95562701 +NJ,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,524.5029 +NJ,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,4.534 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,8.143 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,42.9823 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,4441.258 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,128.06 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.21 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,258.9227 +NJ,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,199.1733 +NJ,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.15304938 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.016419156 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.504576724 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.075368435 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,46.74227722 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1035.06771 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,56.45348005 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,194.4736563 +NJ,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,2.7974 +NJ,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1.9747 +NJ,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.375 +NJ,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,30.80161294 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.560907005 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000171141 +NJ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,318.0344193 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.60062375 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,604.8296 +NJ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.713402 +NJ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,81.784336 +NJ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,7.197126287 +NJ,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.226144572 +NJ,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.145240159 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11.67113663 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.781181839 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.4994243 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.173153518 +NJ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.005272 +NJ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,16.91303298 +NJ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000395279 +NJ,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3670.005612 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.900041665 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1252.349507 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000300004 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,285.3309137 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.009100132 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,63.83572934 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.890069977 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.877423121 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.418692905 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.123978457 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.94707093 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,104.9537388 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3830.1617 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,24.596111 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,73.010387 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.437034332 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.034190058 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.77367E-05 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.089688642 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.972387355 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.026050222 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.274361396 +NJ,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,18.35 +NJ,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.002 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.6132 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.0423 +NJ,Sulfur Dioxide,2A6_Other-minerals,,TON,351.8216 +NJ,Sulfur Dioxide,2B_Chemicals-other,,TON,0 +NJ,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,38.0158 +NJ,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.098 +NJ,Sulfur Dioxide,2C5_Lead-production,,TON,0.0001 +NJ,Sulfur Dioxide,2C6_Zinc-production,,TON,0.008 +NJ,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.2124 +NJ,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.39 +NJ,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0968 +NJ,Sulfur Dioxide,2D3h_Printing,,TON,0.0146 +NJ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.669 +NJ,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1.6744 +NJ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,57.2735 +NJ,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,120.8624 +NJ,Sulfur Dioxide,5C_Incineration,,TON,113.4469543 +NJ,Sulfur Dioxide,5C_Incineration,biomass,TON,298.5541252 +NJ,Sulfur Dioxide,5C_Open-burning-residential,,TON,1.06460699 +NJ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.63992612 +NJ,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.5765 +NJ,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.25 +NJ,Volatile Organic Compounds,11C_Other-natural,,TON,107054.34 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.006 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,8.351 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,56.5648 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.64 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0013 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,236.8373 +NJ,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1515.3999 +NJ,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.0439 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,267.2833779 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,730.3239037 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.21927368 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.20134135 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,32.95397137 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.61020082 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.259895373 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,148.6718444 +NJ,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.0055 +NJ,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.7829 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0292 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.006 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.796 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1264.681352 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,505.9321318 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001859406 +NJ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,540.6968427 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,391.053416 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,30621.469 +NJ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,314.38744 +NJ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4478.5552 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,577.0711461 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,115.998747 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,21.21052 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,974.519749 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,62.5400923 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1040.97331 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,541.0438301 +NJ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,872.23425 +NJ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,217.7058483 +NJ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.201214855 +NJ,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,743.413534 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.532988342 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.24553704 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000385343 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.348149384 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.112391701 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,656.4818609 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,378.9070441 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4978.706566 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.391749389 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,105.6014484 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,15358.37891 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,8309.690097 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,83.938642 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.53902777 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,603.8165206 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,61.40002711 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,41.68404744 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000730939 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.94315 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6421.654863 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,79.71956852 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8538.521238 +NJ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.27 +NJ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,57.998403 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1809.982562 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,417.1447045 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8202.832752 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3251.229569 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4074.677504 +NJ,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +NJ,Volatile Organic Compounds,2A6_Other-minerals,,TON,59.6669 +NJ,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +NJ,Volatile Organic Compounds,2B_Chemicals-other,,TON,349.2062 +NJ,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,50.8099 +NJ,Volatile Organic Compounds,2C3_Aluminum-production,,TON,11.9075 +NJ,Volatile Organic Compounds,2C5_Lead-production,,TON,1.9431 +NJ,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.074 +NJ,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +NJ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,26168.28843 +NJ,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,66.94641 +NJ,Volatile Organic Compounds,2D3d_Coating-application,,TON,23505.36133 +NJ,Volatile Organic Compounds,2D3e_Degreasing,,TON,3798.0948 +NJ,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1291.70803 +NJ,Volatile Organic Compounds,2D3h_Printing,,TON,3979.3635 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,66.49293105 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1870.083978 +NJ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,39.8179 +NJ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1446.930944 +NJ,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2096.5237 +NJ,Volatile Organic Compounds,2I_Wood-processing,,TON,0.0004 +NJ,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.76 +NJ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1365.403523 +NJ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,214.8025994 +NJ,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,494.00166 +NJ,Volatile Organic Compounds,5C_Incineration,,TON,16.32236895 +NJ,Volatile Organic Compounds,5C_Incineration,biomass,TON,20.90129922 +NJ,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +NJ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,4.465086 +NJ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,17.7118793 +NJ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,142.12942 +NJ,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,70.50936359 +NJ,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.2716 +NJ,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,16.416505 +NM,Ammonia,1A1a_Public-Electricity,hard_coal,TON,254.2723 +NM,Ammonia,1A1a_Public-Electricity,natural_gas,TON,87.790369 +NM,Ammonia,1A1b_Pet-refining,natural_gas,TON,33.6875 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.756530539 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.162791916 +NM,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,1.347501045 +NM,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.003871415 +NM,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.826752862 +NM,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.167638988 +NM,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.00248581 +NM,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,52.673524 +NM,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.691864522 +NM,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.100978364 +NM,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.92167621 +NM,Ammonia,1A3bii_Road-LDV,light_oil,TON,861.03048 +NM,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.95430186 +NM,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,148.893226 +NM,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.209430211 +NM,Ammonia,1A3biii_Road-bus,light_oil,TON,0.88672828 +NM,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.101725572 +NM,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,49.26600593 +NM,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.711750558 +NM,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.04349442 +NM,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,9.567762011 +NM,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.35440378 +NM,Ammonia,1A3c_Rail,diesel_oil,TON,11.27516745 +NM,Ammonia,1A3c_Rail,light_oil,TON,0.005096837 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.68750075 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00537146 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.319547602 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.653467199 +NM,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.135864571 +NM,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.840276467 +NM,Ammonia,1A4bi_Residential-stationary,biomass,TON,111.1181397 +NM,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.029155998 +NM,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.017877106 +NM,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,325.3003765 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.090437939 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.03085167 +NM,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.008401754 +NM,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.737590261 +NM,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.108843439 +NM,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.672008452 +NM,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,5.5025 +NM,Ammonia,3B1a_Cattle-dairy,,TON,22952.80382 +NM,Ammonia,3B1b_Cattle-non-dairy,,TON,6538.717715 +NM,Ammonia,3B2_Manure-sheep,,TON,442.843764 +NM,Ammonia,3B3_Manure-swine,,TON,14.00604216 +NM,Ammonia,3B4_Manure-other,,TON,720.60912 +NM,Ammonia,3B4_Manure-poultry,,TON,977.3683874 +NM,Ammonia,3B4d_Manure-goats,,TON,248.324604 +NM,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,3432.114794 +NM,Ammonia,5D1_Wastewater-domestic,,TON,7.4847949 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,93147.19084 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47917.46324 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9383.822203 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,454285.5227 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,8374.072788 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.58669811 +NM,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,150135.0674 +NM,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,9430228.386 +NM,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,139121.4446 +NM,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1824084.18 +NM,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,142603.1378 +NM,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,26785.86798 +NM,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4329.80535 +NM,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2671722.01 +NM,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,45945.08466 +NM,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2110885.849 +NM,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,267044.1675 +NM,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,66251.5209 +NM,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,8549.4521 +NM,Carbon Dioxide,1A3c_Rail,light_oil,TON,395.2553863 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,39268.30102 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,54195.63292 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2449.613626 +NM,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,16709.70437 +NM,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,135634.7661 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,134152.2651 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2301.14184 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.24961207 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1028.5278 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,48074.09103 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13403.41235 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46525.6092 +NM,Carbon Monoxide,11C_Other-natural,,TON,311924 +NM,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,12.6090535 +NM,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,18941.94 +NM,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,940.9309935 +NM,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,534.925 +NM,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.2 +NM,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,872.688 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,594.0700979 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4837.297039 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,191.8915655 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,115.5172895 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,346.8549111 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,137.8128115 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.047901156 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.178607377 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,12162.36397 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0267705 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.690616 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1901.166777 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2005.760202 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.186469528 +NM,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2958.865999 +NM,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2527.325326 +NM,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,212678.9514 +NM,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1496.275616 +NM,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,48714.4798 +NM,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,382.0784437 +NM,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1492.566813 +NM,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,29.34601368 +NM,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6377.730177 +NM,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1563.289004 +NM,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4103.913931 +NM,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8779.120382 +NM,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2667.12607 +NM,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3646.03099 +NM,Carbon Monoxide,1A3c_Rail,light_oil,TON,105.4235842 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,446.1316796 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.015666223 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.182999477 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,151.7664561 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,208.0575371 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,13331.09928 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,56.96717762 +NM,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,68.26693687 +NM,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,38300.41103 +NM,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,13573.28668 +NM,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.145779877 +NM,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.089385497 +NM,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,950.4627254 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,608.8396128 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,607.7766056 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.357407473 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.945228 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,9569.149067 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.7990135 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6296.31084 +NM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NM,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,10.712246 +NM,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,47682.233 +NM,Carbon Monoxide,2A1_Cement-production,,TON,684.05556 +NM,Carbon Monoxide,2A6_Other-minerals,,TON,178.629909 +NM,Carbon Monoxide,2C7a_Copper-production,,TON,0 +NM,Carbon Monoxide,2D3d_Coating-application,,TON,0.00416 +NM,Carbon Monoxide,2D3h_Printing,,TON,0.1628 +NM,Carbon Monoxide,2H2_Food-and-beverage,,TON,276.407636 +NM,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.613887 +NM,Carbon Monoxide,3F_Ag-res-on-field,,TON,6555.32096 +NM,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,8.27 +NM,Carbon Monoxide,5C_Incineration,biomass,TON,0.179606362 +NM,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4779.02752 +NM,Carbon Monoxide,5C_Open-burning-residential,,TON,1488.13809 +NM,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,71.555992 +NM,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,5.8772 +NM,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.62300951 +NM,Methane,1A3bii_Road-LDV,light_oil,TON,521.7155442 +NM,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.43833441 +NM,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,138.137978 +NM,Methane,1A3biii_Road-bus,diesel_oil,TON,2.987923008 +NM,Methane,1A3biii_Road-bus,light_oil,TON,3.228301418 +NM,Methane,1A3biii_Road-bus,natural_gas,TON,26.76963835 +NM,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,270.1736723 +NM,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.328261335 +NM,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,40.96089271 +NM,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,18.15746391 +NM,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.94262745 +NM,Nitrogen Oxides,11C_Other-natural,,TON,30995.2736 +NM,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,26.929936 +NM,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,55812.72 +NM,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,6158.020834 +NM,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,388.401 +NM,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.25 +NM,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,485.064 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,741.0626187 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,259.9447846 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,31.35940405 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,42.35451006 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1631.738485 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,303.1748901 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.52640238 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.066519406 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,23045.62896 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.107082 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.811214 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3426.814497 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,34.23689603 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.037908423 +NM,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,446.8696082 +NM,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,633.9910682 +NM,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,29731.18603 +NM,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,716.130892 +NM,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6861.3443 +NM,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1142.614425 +NM,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,136.120602 +NM,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,18.84256699 +NM,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,23588.7492 +NM,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,229.0057638 +NM,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13243.42193 +NM,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,943.7827766 +NM,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,143.3693566 +NM,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,24599.05349 +NM,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.551058973 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,165.9069817 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.68166788 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.162840634 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,135.3316175 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,359.1434951 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,234.091619 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,15.08719365 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,152.033617 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,434.39731 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,228.0572378 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.524807455 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.321788065 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2062.471798 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1219.315281 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.94515831 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.079732143 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.063552 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,98.0814181 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,150.5202969 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,309.5500278 +NM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NM,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.669342 +NM,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,34592.2369 +NM,Nitrogen Oxides,2A1_Cement-production,,TON,715.18206 +NM,Nitrogen Oxides,2A6_Other-minerals,,TON,120.67269 +NM,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,16.74375 +NM,Nitrogen Oxides,2C7a_Copper-production,,TON,0 +NM,Nitrogen Oxides,2D3d_Coating-application,,TON,0.0104 +NM,Nitrogen Oxides,2D3h_Printing,,TON,0.1924 +NM,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,7.27 +NM,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.646679 +NM,Nitrogen Oxides,3F_Ag-res-on-field,,TON,283.6957856 +NM,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,5.1 +NM,Nitrogen Oxides,5C_Incineration,biomass,TON,6.31922007 +NM,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,141.3913117 +NM,Nitrogen Oxides,5C_Open-burning-residential,,TON,105.045027 +NM,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.1802664 +NM,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.08396 +NM,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.430149815 +NM,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,504.0767904 +NM,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.453745914 +NM,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,122.5048959 +NM,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.307031583 +NM,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.139500699 +NM,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.220533406 +NM,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.108584071 +NM,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.2154871 +NM,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.526675403 +NM,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15.15504379 +NM,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.868973902 +NM,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.447976323 +NM,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1942.7284 +NM,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,102.1431712 +NM,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,36.02228094 +NM,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0258261 +NM,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.4792831 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,96.2866954 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.0763834 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,330.8271673 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.343771842 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.003243434 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,237.783583 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0100963 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03830962 +NM,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,750334.4837 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,368.7576077 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.313042053 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008680837 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.97107319 +NM,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.031488497 +NM,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.019307275 +NM,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.957779386 +NM,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,84.1 +NM,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.12031104 +NM,PM10 Filterable,2A1_Cement-production,,TON,91.3490575 +NM,PM10 Filterable,2A2_Lime-production,,TON,0.104 +NM,PM10 Filterable,2A5b_Construction-and-demolition,,TON,23339.44132 +NM,PM10 Filterable,2A6_Other-minerals,,TON,11926.30544 +NM,PM10 Filterable,2B_Chemicals-other,Other_Fuel,TON,0.39 +NM,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.33 +NM,PM10 Filterable,2C7a_Copper-production,,TON,0 +NM,PM10 Filterable,2D3d_Coating-application,,TON,2.037522514 +NM,PM10 Filterable,2D3h_Printing,,TON,0.0148 +NM,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.193 +NM,PM10 Filterable,2H2_Food-and-beverage,,TON,84.30407484 +NM,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,64.0709573 +NM,PM10 Filterable,3Dc_Other-farm,,TON,17908.01515 +NM,PM10 Filterable,5A_Solid-waste-disposal,,TON,56.5076 +NM,PM10 Filterable,5C_Incineration,biomass,TON,0.25 +NM,PM10 Filterable,5C_Open-burning-land-clearing,,TON,480.731092 +NM,PM10 Filterable,5C_Open-burning-residential,,TON,665.28496 +NM,PM10 Filterable,5C_Open-burning-yard-waste,,TON,11.8493301 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.547274 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3380.552 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,222.0037236 +NM,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,93.1776479 +NM,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.04 +NM,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,35.134 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,45.34699309 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.543608105 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.189397139 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,99.55835995 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,5.83971493 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,359.492047 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.658125828 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.007397275 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,427.6081383 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0114731 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1008148 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,294.4001804 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,13.08083111 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +NM,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,63.42767441 +NM,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,750334.4837 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,42.40239193 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1427.399647 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,54.9439699 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,277.940329 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,74.8053511 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.590729504 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.505832315 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,985.4854518 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.896449802 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,895.073906 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,28.85899643 +NM,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.32522794 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,819.8556879 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.054912244 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,381.8232699 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.412761029 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017556178 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.756682403 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34.45156938 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,15.01111653 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.307565223 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.54020919 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,128.4750982 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1947.15979 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.069391186 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.042547518 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.29022072 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,107.3945864 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.313133867 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000410786 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4253799 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,100.8700001 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.012721404 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,30.99608208 +NM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NM,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,522.2141375 +NM,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,97.49310436 +NM,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.104 +NM,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,23339.44132 +NM,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,11934.98813 +NM,PM10 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.39 +NM,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.33 +NM,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0 +NM,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.037522514 +NM,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.0148 +NM,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.193 +NM,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,724.2360174 +NM,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,61.7817905 +NM,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,17908.01515 +NM,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1072.786231 +NM,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,58.535 +NM,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.665119012 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,480.731092 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,665.28496 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.8493301 +NM,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.436804443 +NM,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,701.6471 +NM,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,94.38597124 +NM,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,33.91652041 +NM,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0258261 +NM,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.27115 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,82.8282992 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,100.4579392 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,38.60662798 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.829953378 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.00091839 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,235.333407 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00575107 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03638512 +NM,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,76421.55684 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,317.1322855 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.312990976 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.007069388 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.970331951 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.02419947 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.014837988 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.17677654 +NM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,84.1 +NM,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.02058869 +NM,PM2.5 Filterable,2A1_Cement-production,,TON,45.1009916 +NM,PM2.5 Filterable,2A2_Lime-production,,TON,0.063354 +NM,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2333.944132 +NM,PM2.5 Filterable,2A6_Other-minerals,,TON,1848.720578 +NM,PM2.5 Filterable,2B_Chemicals-other,Other_Fuel,TON,0.39 +NM,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.33 +NM,PM2.5 Filterable,2C7a_Copper-production,,TON,0 +NM,PM2.5 Filterable,2D3d_Coating-application,,TON,2.035522514 +NM,PM2.5 Filterable,2D3h_Printing,,TON,0.0148 +NM,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.173 +NM,PM2.5 Filterable,2H2_Food-and-beverage,,TON,31.73591752 +NM,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,15.90259554 +NM,PM2.5 Filterable,3Dc_Other-farm,,TON,3581.516575 +NM,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,22.0018 +NM,PM2.5 Filterable,5C_Incineration,biomass,TON,0.25 +NM,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,370.595386 +NM,PM2.5 Filterable,5C_Open-burning-residential,,TON,609.26107 +NM,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,9.13469 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.48364612 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2139.474 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,214.2447896 +NM,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,79.04188737 +NM,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.04 +NM,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,34.925867 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,43.9736307 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.395016153 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.188739048 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,86.09504589 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.961158668 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,67.27977999 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.144187434 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.005073016 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,425.1822295 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00712784 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0988903 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,285.5680149 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,12.04228279 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000303092 +NM,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,53.84272649 +NM,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,76421.55684 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,29.56685725 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,523.8527974 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,41.803679 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,99.5138728 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,59.05583385 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.501701729 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.201000547 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,814.7780151 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.554410006 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,675.7138497 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.88991321 +NM,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.64277044 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,755.2602505 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.050617175 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,330.0980054 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.412673986 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.015941122 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.668395908 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,33.41801782 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.85027016 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.307565223 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.19399485 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,118.2019546 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1944.970969 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.062102228 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.038078249 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.509216068 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,104.1728098 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.208093338 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000410786 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.3826169 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,92.80078016 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.922338374 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,28.5163839 +NM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NM,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,522.1144151 +NM,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,51.24503848 +NM,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.063354 +NM,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2333.944132 +NM,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1857.403275 +NM,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.39 +NM,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.33 +NM,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0 +NM,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.035522514 +NM,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.0148 +NM,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.173 +NM,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,671.6678429 +NM,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,13.58090774 +NM,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3581.516575 +NM,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,585.244418 +NM,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,24.0292 +NM,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.665119012 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,370.595386 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,609.26107 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.13469 +NM,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.3082 +NM,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,16542.681 +NM,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1286.377812 +NM,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,734.798 +NM,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.04 +NM,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,6946.481 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.383543453 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.062314928 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.217908574 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,4.813820157 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.091802177 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,722.7803693 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,74.04343015 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.152314629 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,87.52987855 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00305948 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0049572 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.477226213 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.153741573 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.7047E-05 +NM,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,57.89134759 +NM,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.294527045 +NM,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,186.3731436 +NM,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.204243876 +NM,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,36.0500899 +NM,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.223055373 +NM,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.529379847 +NM,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.022924129 +NM,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22.95027515 +NM,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.908030216 +NM,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.04141351 +NM,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.277690544 +NM,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.309355702 +NM,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,253.0586794 +NM,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007220872 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,18.45646737 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.091044625 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.287853458 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.64874377 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.743795411 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.994297679 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.054163915 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.316086315 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.471571473 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,37.53121338 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.242044985 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.76156457 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.87333125 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.523502358 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.04194272 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.14699E-05 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.019418134 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.872216247 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.287499656 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.845906402 +NM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5426.692434 +NM,Sulfur Dioxide,2A1_Cement-production,,TON,666.70254 +NM,Sulfur Dioxide,2A6_Other-minerals,,TON,31.3688284 +NM,Sulfur Dioxide,2C7a_Copper-production,,TON,0 +NM,Sulfur Dioxide,2D3d_Coating-application,,TON,0.000052 +NM,Sulfur Dioxide,2D3h_Printing,,TON,0.00148 +NM,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,1.65 +NM,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.297824 +NM,Sulfur Dioxide,3F_Ag-res-on-field,,TON,115.2100863 +NM,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.531 +NM,Sulfur Dioxide,5C_Incineration,biomass,TON,0.972080263 +NM,Sulfur Dioxide,5C_Open-burning-residential,,TON,17.5074984 +NM,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.68716493 +NM,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.010495 +NM,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.14 +NM,Volatile Organic Compounds,11C_Other-natural,,TON,1612436.74 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.5594019 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,202.1 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,111.0292204 +NM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,68.00685419 +NM,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1227.331246 +NM,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.1 +NM,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,240.118 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,62.53575823 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,147.3899331 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.559702752 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,3.272901815 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.047756219 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.37809001 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.058680832 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.006074127 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2896.106338 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00305948 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0464928 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,350.1680596 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,147.7986623 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000619802 +NM,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,170.0468114 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,242.6522786 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,19278.4794 +NM,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,196.221595 +NM,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3975.69086 +NM,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,98.09024105 +NM,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,81.41661191 +NM,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,3.208840484 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2177.127518 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,44.19543141 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,953.494463 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,393.2656063 +NM,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,477.900795 +NM,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1229.269205 +NM,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.420932313 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,12.66680284 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.433569294 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.040852725 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.49920732 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47.84088339 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,714.3821949 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.177311555 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,15.71919369 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3068.877613 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2482.374634 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.020409188 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.012513973 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,108.8388434 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,112.3906563 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,35.62116316 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001385398 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.5851932 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3332.894805 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.854110681 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2206.796443 +NM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NM,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,660.3385202 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,123.4919855 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1643.850619 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,5592.098961 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7484.430127 +NM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,60537.80811 +NM,Volatile Organic Compounds,2A1_Cement-production,,TON,36.07905 +NM,Volatile Organic Compounds,2A6_Other-minerals,,TON,8.068789305 +NM,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,531.8489635 +NM,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,3.670523819 +NM,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,1.343 +NM,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.071 +NM,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,8679.44449 +NM,Volatile Organic Compounds,2D3d_Coating-application,,TON,4015.366478 +NM,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,811.277027 +NM,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,3.98 +NM,Volatile Organic Compounds,2D3h_Printing,,TON,39.7 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,80.3928531 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1524.6139 +NM,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,138.4490101 +NM,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,9.1044525 +NM,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,849.062762 +NM,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,476.427288 +NM,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,33.9376 +NM,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.023047297 +NM,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,328.028208 +NM,Volatile Organic Compounds,5C_Open-burning-residential,,TON,149.864139 +NM,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,13.3457624 +NM,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,38.2751411 +NM,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,3.915708 +NM,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,55.96 +NV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.009305 +NV,Ammonia,1A1a_Public-Electricity,hard_coal,TON,39.25498 +NV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,198.231031 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.535341312 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.026518815 +NV,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,1.284497498 +NV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,29.8517252 +NV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.68646 +NV,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.004179738 +NV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,8.4163159 +NV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.1198056 +NV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.305119135 +NV,Ammonia,1A3b_Road-noncomb,Dust,TON,0 +NV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.738972562 +NV,Ammonia,1A3bii_Road-LDV,light_oil,TON,860.5214 +NV,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.7840307 +NV,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,139.729321 +NV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.033363167 +NV,Ammonia,1A3biii_Road-bus,light_oil,TON,0.285275783 +NV,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.130610327 +NV,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,23.77375959 +NV,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.463718003 +NV,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.0668007 +NV,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.342891444 +NV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.8668847 +NV,Ammonia,1A3c_Rail,diesel_oil,TON,3.377166102 +NV,Ammonia,1A3c_Rail,light_oil,TON,0.001400046 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.797498986 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.92724 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.33506 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.482525 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.386464935 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.790610499 +NV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.431024662 +NV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.1141215 +NV,Ammonia,1A4bi_Residential-stationary,biomass,TON,70.55109769 +NV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.520004475 +NV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Ammonia,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.607104386 +NV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,159.8941136 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.690773529 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.018325905 +NV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00981002 +NV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.734939725 +NV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.156449871 +NV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.966095522 +NV,Ammonia,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Ammonia,2A5b_Construction-and-demolition,,TON,2.93422 +NV,Ammonia,2A6_Other-minerals,,TON,2.99419 +NV,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.18688 +NV,Ammonia,2C7_Other-metal,Other_Fuel,TON,48.746145 +NV,Ammonia,2D3a_Domestic-solvent-use,,TON,0 +NV,Ammonia,2D3d_Coating-application,,TON,0.34 +NV,Ammonia,2D3i_Other-solvent-use,,TON,0 +NV,Ammonia,2H2_Food-and-beverage,,TON,0 +NV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1.959455 +NV,Ammonia,3B1a_Cattle-dairy,,TON,2061.596708 +NV,Ammonia,3B1b_Cattle-non-dairy,,TON,2168.834734 +NV,Ammonia,3B2_Manure-sheep,,TON,239.10652 +NV,Ammonia,3B3_Manure-swine,,TON,26.4321516 +NV,Ammonia,3B4_Manure-other,,TON,873.62796 +NV,Ammonia,3B4_Manure-poultry,,TON,3.83927224 +NV,Ammonia,3B4d_Manure-goats,,TON,83.34016 +NV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,727.2163666 +NV,Ammonia,3Df_Use-of-pesticides,,TON,0 +NV,Ammonia,5A_Solid-waste-disposal,,TON,1.42 +NV,Ammonia,5C_Incineration,biomass,TON,0.0001495 +NV,Ammonia,5C_Open-burning-land-clearing,,TON,0 +NV,Ammonia,5C_Open-burning-yard-waste,,TON,0 +NV,Ammonia,5D1_Wastewater-domestic,,TON,64.98016364 +NV,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.00019 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65910.04346 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,43159.80214 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2508.477151 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1368315.111 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25303.15939 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.466746221 +NV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,157992.3691 +NV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10549067.96 +NV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,144653.031 +NV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1866202.69 +NV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,141743.9818 +NV,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,8900.169743 +NV,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5210.0835 +NV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1333854.958 +NV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12880.17592 +NV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1239744.01 +NV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,100148.8596 +NV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,52520.556 +NV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2342.2582 +NV,Carbon Dioxide,1A3c_Rail,light_oil,TON,108.6683633 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47491.65695 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,65577.53781 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2866.976768 +NV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,53010.58323 +NV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,304311.7463 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,84981.99256 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1374.083278 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.040293668 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1200.92283 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,48007.15519 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19265.84432 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,66886.24752 +NV,Carbon Monoxide,11C_Other-natural,,TON,214236.428 +NV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,42.50779874 +NV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,27021.952 +NV,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,8.1260325 +NV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,566.938813 +NV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,4.3383489 +NV,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.330202 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1952.956245 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2458.017974 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,149.1919195 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,119.8239796 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,270.790649 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,378.0935654 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.028474933 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,282.924995 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.32 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.17 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5702.789333 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6535.694865 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.466173806 +NV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6056.919395 +NV,Carbon Monoxide,1A3b_Road-noncomb,Dust,TON,0 +NV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2469.43488 +NV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,199733.139 +NV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1452.13855 +NV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,41611.922 +NV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,383.0898641 +NV,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,483.3158262 +NV,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,32.3168958 +NV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3215.88674 +NV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,485.575576 +NV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2318.33778 +NV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3768.743195 +NV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2158.29744 +NV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1082.555109 +NV,Carbon Monoxide,1A3c_Rail,light_oil,TON,30.56281608 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,104.1970822 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,48.85356263 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.043685272 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,9.17333406 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1292.085477 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,251.656419 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,17318.21525 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,67.68393873 +NV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,217.130442 +NV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,89056.31919 +NV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10752.31957 +NV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,8.90002327 +NV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.13551718 +NV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,846.9686899 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,387.8660116 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,369.6685495 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.224575783 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.613397 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10802.27846 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,38.51995782 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9645.04188 +NV,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Carbon Monoxide,2A1_Cement-production,,TON,212.229 +NV,Carbon Monoxide,2A2_Lime-production,,TON,394.04681 +NV,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,81.068 +NV,Carbon Monoxide,2A6_Other-minerals,,TON,716.6195505 +NV,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,54.5446 +NV,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3.359134 +NV,Carbon Monoxide,2C3_Aluminum-production,,TON,0.226690344 +NV,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,206.2363814 +NV,Carbon Monoxide,2D3a_Domestic-solvent-use,,TON,0 +NV,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.1380453 +NV,Carbon Monoxide,2D3d_Coating-application,,TON,9.29544 +NV,Carbon Monoxide,2D3i_Other-solvent-use,,TON,0 +NV,Carbon Monoxide,2H2_Food-and-beverage,,TON,475.9946181 +NV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,24.048186 +NV,Carbon Monoxide,3B1a_Cattle-dairy,,TON,0 +NV,Carbon Monoxide,3B1b_Cattle-non-dairy,,TON,0 +NV,Carbon Monoxide,3B2_Manure-sheep,,TON,0 +NV,Carbon Monoxide,3B3_Manure-swine,,TON,0 +NV,Carbon Monoxide,3B4_Manure-other,,TON,0 +NV,Carbon Monoxide,3B4_Manure-poultry,,TON,0 +NV,Carbon Monoxide,3B4d_Manure-goats,,TON,0 +NV,Carbon Monoxide,3Dc_Other-farm,,TON,18.05905 +NV,Carbon Monoxide,3Df_Use-of-pesticides,,TON,0 +NV,Carbon Monoxide,3F_Ag-res-on-field,,TON,6625.1288 +NV,Carbon Monoxide,5A_Solid-waste-disposal,,TON,110.9130685 +NV,Carbon Monoxide,5C_Incineration,biomass,TON,0.850249988 +NV,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,0.003800028 +NV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1052.850895 +NV,Carbon Monoxide,5C_Open-burning-residential,,TON,473.96143 +NV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,58.32058 +NV,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,141.4712 +NV,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.181350099 +NV,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.001445 +NV,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.328854526 +NV,Methane,1A3bii_Road-LDV,light_oil,TON,437.189237 +NV,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.70215432 +NV,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,104.224252 +NV,Methane,1A3biii_Road-bus,diesel_oil,TON,2.90396801 +NV,Methane,1A3biii_Road-bus,light_oil,TON,1.132365914 +NV,Methane,1A3biii_Road-bus,natural_gas,TON,36.3287108 +NV,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,144.2593486 +NV,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.501054291 +NV,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.4622036 +NV,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.764623868 +NV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.3620838 +NV,Nitrogen Oxides,11C_Other-natural,,TON,7588.0821 +NV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,153.6544106 +NV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,6280.898 +NV,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,78.17576 +NV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1062.503637 +NV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,8.9856203 +NV,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.572351 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,640.0758911 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,303.2136596 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,20.85604286 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,45.21840965 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1273.703557 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,297.2764984 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.117286439 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,525.2207849 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.294 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10307.57706 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,93.11763342 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.094770919 +NV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2816.799303 +NV,Nitrogen Oxides,1A3b_Road-noncomb,Dust,TON,0 +NV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,661.98871 +NV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,27550.7788 +NV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,766.84789 +NV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5982.2887 +NV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1165.365863 +NV,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,40.86686624 +NV,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,21.1278726 +NV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11653.42912 +NV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,63.1083472 +NV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7675.75131 +NV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,342.139802 +NV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,98.382273 +NV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7294.34635 +NV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.412034539 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,37.15430531 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,183.5124655 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,41.52618851 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,33.24852729 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1269.945273 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,434.352385 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,259.5706994 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.00220565 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,481.8875314 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,835.3978094 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,242.2858886 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,31.86009125 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,9.927869045 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1921.429381 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,775.9312976 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.2439092 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.050104959 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.7440711 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,93.400136 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,216.3549527 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,409.5195038 +NV,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Nitrogen Oxides,2A1_Cement-production,,TON,1033.539 +NV,Nitrogen Oxides,2A2_Lime-production,,TON,2386.1149 +NV,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,59.263586 +NV,Nitrogen Oxides,2A6_Other-minerals,,TON,447.1067095 +NV,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,79.920751 +NV,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,4.3129096 +NV,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.5324157 +NV,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,221.8138807 +NV,Nitrogen Oxides,2D3a_Domestic-solvent-use,,TON,0 +NV,Nitrogen Oxides,2D3d_Coating-application,,TON,11.09015 +NV,Nitrogen Oxides,2D3i_Other-solvent-use,,TON,0 +NV,Nitrogen Oxides,2H2_Food-and-beverage,,TON,95.2279156 +NV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,16.2583519 +NV,Nitrogen Oxides,3B1a_Cattle-dairy,,TON,0 +NV,Nitrogen Oxides,3B1b_Cattle-non-dairy,,TON,0 +NV,Nitrogen Oxides,3B2_Manure-sheep,,TON,0 +NV,Nitrogen Oxides,3B3_Manure-swine,,TON,0 +NV,Nitrogen Oxides,3B4_Manure-other,,TON,0 +NV,Nitrogen Oxides,3B4_Manure-poultry,,TON,0 +NV,Nitrogen Oxides,3B4d_Manure-goats,,TON,0 +NV,Nitrogen Oxides,3Dc_Other-farm,,TON,7.1268 +NV,Nitrogen Oxides,3Df_Use-of-pesticides,,TON,0 +NV,Nitrogen Oxides,3F_Ag-res-on-field,,TON,174.6138324 +NV,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,36.392967 +NV,Nitrogen Oxides,5C_Incineration,biomass,TON,23.63815706 +NV,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.002200144 +NV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,31.1494556 +NV,Nitrogen Oxides,5C_Open-burning-residential,,TON,33.456116 +NV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.4329143 +NV,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,14.064008 +NV,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.27883955 +NV,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,0.011 +NV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.455410189 +NV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,483.513543 +NV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.46954889 +NV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,92.989437 +NV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.32011169 +NV,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.410237306 +NV,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.366639559 +NV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.225997338 +NV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.47663543 +NV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.14956772 +NV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.080945102 +NV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.85124781 +NV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.521328773 +NV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,451.2019448 +NV,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.456509387 +NV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,278.4473101 +NV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1.82693341 +NV,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0117112 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,92.66622519 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,46.78677429 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,524.9220363 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.005263529 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,8.783212454 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.102585 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0076 +NV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,56595.2201 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,113.5147266 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.328874559 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.714909314 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.023564947 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,71.79370451 +NV,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,491.6896 +NV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.950400545 +NV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM10 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.471503668 +NV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,32.60211309 +NV,PM10 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,PM10 Filterable,2A1_Cement-production,,TON,187.0607454 +NV,PM10 Filterable,2A2_Lime-production,,TON,333.1045303 +NV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,28610.85195 +NV,PM10 Filterable,2A6_Other-minerals,,TON,70363.57023 +NV,PM10 Filterable,2B_Chemicals-other,,TON,31.73846636 +NV,PM10 Filterable,2C_Iron-steel-alloy,,TON,1.76789684 +NV,PM10 Filterable,2C3_Aluminum-production,,TON,0.095576202 +NV,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,531.4154989 +NV,PM10 Filterable,2D3a_Domestic-solvent-use,,TON,0 +NV,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.06371232 +NV,PM10 Filterable,2D3d_Coating-application,,TON,18.69255945 +NV,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,8.43768 +NV,PM10 Filterable,2D3i_Other-solvent-use,,TON,0 +NV,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3.3244435 +NV,PM10 Filterable,2H2_Food-and-beverage,,TON,962.7625727 +NV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,793.4966046 +NV,PM10 Filterable,3B1a_Cattle-dairy,,TON,0 +NV,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,0 +NV,PM10 Filterable,3B2_Manure-sheep,,TON,0 +NV,PM10 Filterable,3B3_Manure-swine,,TON,0 +NV,PM10 Filterable,3B4_Manure-other,,TON,0 +NV,PM10 Filterable,3B4_Manure-poultry,,TON,0 +NV,PM10 Filterable,3B4d_Manure-goats,,TON,0 +NV,PM10 Filterable,3Dc_Other-farm,,TON,617.763905 +NV,PM10 Filterable,3Df_Use-of-pesticides,,TON,0 +NV,PM10 Filterable,5A_Solid-waste-disposal,,TON,14.72827629 +NV,PM10 Filterable,5C_Incineration,biomass,TON,2.13270647 +NV,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.2987284 +NV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,105.908102 +NV,PM10 Filterable,5C_Open-burning-residential,,TON,211.88855 +NV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,9.988153 +NV,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,40.311098 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.234377764 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,623.8105064 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.832635271 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,526.2790757 +NV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.89519456 +NV,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0308189 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,41.65828461 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.695208099 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.395274043 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,95.70822446 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,106.5619862 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,566.9495359 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.012102462 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,98.56516096 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.123 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,883.8058694 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.53854541 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000757729 +NV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,117.5670983 +NV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,56603.908 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,48.90616882 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1773.99411 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,63.003777 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,324.754264 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,85.7158077 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.678156447 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.769702584 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,537.3150097 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.246593466 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,566.042721 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.83828978 +NV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.2116301 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,241.7112955 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015091584 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,110.5430137 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.80811208 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.475119314 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,4.39955841 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,164.6201772 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,41.67141458 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,18.16328255 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.359428913 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,36.71416319 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,325.705857 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1482.347368 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.11361224 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.06890687 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,85.77379782 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,68.39921485 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.38156089 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000257926 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.6649529 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,100.9881265 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.33033594 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,44.56075326 +NV,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,196.2151576 +NV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,364.9587405 +NV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,28627.99955 +NV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,70410.073 +NV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,36.41512219 +NV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1.77449816 +NV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.354797253 +NV,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,531.4268482 +NV,PM10 Primary (Filt + Cond),2D3a_Domestic-solvent-use,,TON,0 +NV,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.66616672 +NV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,19.12527945 +NV,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,8.43768 +NV,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0 +NV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,8.7388455 +NV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1081.504775 +NV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,800.468181 +NV,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,0 +NV,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,0 +NV,PM10 Primary (Filt + Cond),3B2_Manure-sheep,,TON,0 +NV,PM10 Primary (Filt + Cond),3B3_Manure-swine,,TON,0 +NV,PM10 Primary (Filt + Cond),3B4_Manure-other,,TON,0 +NV,PM10 Primary (Filt + Cond),3B4_Manure-poultry,,TON,0 +NV,PM10 Primary (Filt + Cond),3B4d_Manure-goats,,TON,0 +NV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,617.8902908 +NV,PM10 Primary (Filt + Cond),3Df_Use-of-pesticides,,TON,0 +NV,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1120.118539 +NV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,22.1751228 +NV,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.796215399 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.3688004 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,105.908102 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,211.88855 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.988153 +NV,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,41.63561 +NV,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.01129 +NV,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.03784 +NV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.619091086 +NV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,95.32553336 +NV,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.959504083 +NV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,212.4121368 +NV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1.70632296 +NV,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0117112 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,80.67104842 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.500338713 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,173.4806431 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.001332331 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,5.366703847 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.02258502 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,8199.837355 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,105.0106294 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.306727076 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.459230429 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.571472026 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.50453875 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,491.6896 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.67039894 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.369728357 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,31.81048733 +NV,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,PM2.5 Filterable,2A1_Cement-production,,TON,103.3765356 +NV,PM2.5 Filterable,2A2_Lime-production,,TON,92.02238294 +NV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3084.855495 +NV,PM2.5 Filterable,2A6_Other-minerals,,TON,9008.914067 +NV,PM2.5 Filterable,2B_Chemicals-other,,TON,13.82641194 +NV,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1.65891375 +NV,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.084446438 +NV,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,239.598347 +NV,PM2.5 Filterable,2D3a_Domestic-solvent-use,,TON,0 +NV,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.048319421 +NV,PM2.5 Filterable,2D3d_Coating-application,,TON,13.30954879 +NV,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,7.65278 +NV,PM2.5 Filterable,2D3i_Other-solvent-use,,TON,0 +NV,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.658093855 +NV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,857.2722917 +NV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,626.0955705 +NV,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,0 +NV,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,0 +NV,PM2.5 Filterable,3B2_Manure-sheep,,TON,0 +NV,PM2.5 Filterable,3B3_Manure-swine,,TON,0 +NV,PM2.5 Filterable,3B4_Manure-other,,TON,0 +NV,PM2.5 Filterable,3B4_Manure-poultry,,TON,0 +NV,PM2.5 Filterable,3B4d_Manure-goats,,TON,0 +NV,PM2.5 Filterable,3Dc_Other-farm,,TON,123.4022824 +NV,PM2.5 Filterable,3Df_Use-of-pesticides,,TON,0 +NV,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,3.818836038 +NV,PM2.5 Filterable,5C_Incineration,biomass,TON,2.050106705 +NV,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.1701616 +NV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,81.6445011 +NV,PM2.5 Filterable,5C_Open-burning-residential,,TON,194.04537 +NV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,9.184102 +NV,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,22.612098 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.402292132 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,284.5948833 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.342486838 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,465.0148418 +NV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.77458411 +NV,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0308189 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,40.33176874 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.615951942 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.391372405 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,83.47504094 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,67.81854584 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,215.6799275 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.008231106 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,24.05216734 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.043 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0124 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,857.2912673 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,36.39935298 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000757729 +NV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,105.6088869 +NV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8200.533255 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,32.6087249 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,543.184037 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,46.579731 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,96.765366 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,64.67714758 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.766827441 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.236553372 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,425.486913 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.489117825 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,405.795246 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.257307614 +NV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.5947525 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,224.324706 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.013911864 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,98.26298926 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.95608743 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.391997216 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,3.96344958 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,118.2782111 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,40.42132316 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,16.75872074 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.359428913 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,35.61270378 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,299.6649933 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1479.681804 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.83361039 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.967131603 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,84.98217477 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,66.34724945 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.351041945 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000257926 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.61500664 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,92.90951861 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.200424868 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,40.99589745 +NV,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,110.1310118 +NV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,123.8766607 +NV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3089.152145 +NV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,9055.41684 +NV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,18.49533294 +NV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1.66551507 +NV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.343667455 +NV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,239.6096963 +NV,PM2.5 Primary (Filt + Cond),2D3a_Domestic-solvent-use,,TON,0 +NV,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.650773821 +NV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.74226879 +NV,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,7.65278 +NV,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0 +NV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,7.072495855 +NV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,976.0144427 +NV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,633.0671469 +NV,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3B2_Manure-sheep,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3B3_Manure-swine,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3B4_Manure-other,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3B4_Manure-poultry,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3B4d_Manure-goats,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,123.5286679 +NV,PM2.5 Primary (Filt + Cond),3Df_Use-of-pesticides,,TON,0 +NV,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,811.170344 +NV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,11.26568255 +NV,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.519615623 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.2402336 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,81.6445011 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,194.04537 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.184102 +NV,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,23.93661 +NV,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.004995 +NV,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.018475 +NV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.06527666 +NV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,5223.949 +NV,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.15335585 +NV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,85.79247301 +NV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,20.02729555 +NV,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.000660405 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.018095187 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.707355478 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.117054506 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,4.596015683 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3582.75819 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1031.640736 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.256144579 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,42.30393684 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.46 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,25.53190851 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.464546259 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000142618 +NV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,331.46073 +NV,Sulfur Dioxide,1A3b_Road-noncomb,Dust,TON,0 +NV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.363585496 +NV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,206.395907 +NV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.25363079 +NV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,36.512923 +NV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.214690669 +NV,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.174134314 +NV,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.027584679 +NV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11.43681419 +NV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.252005069 +NV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.5763163 +NV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.959444209 +NV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.02758395 +NV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,75.8327973 +NV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001985357 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.38295778 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,520.7206461 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,85.20188 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,76.3132571 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.57535822 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.899558944 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.203127361 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.063391024 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.002887826 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.546228948 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,28.56183614 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,120.3722333 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,35.94263325 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.57744996 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.598925417 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.025049434 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.48727E-05 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.022673376 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.871079226 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.413248003 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.216094102 +NV,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Sulfur Dioxide,2A1_Cement-production,,TON,118.3140627 +NV,Sulfur Dioxide,2A2_Lime-production,,TON,258.57188 +NV,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,22.00827 +NV,Sulfur Dioxide,2A6_Other-minerals,,TON,185.9972029 +NV,Sulfur Dioxide,2B_Chemicals-other,,TON,0.1814376 +NV,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,5.356509508 +NV,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.003398278 +NV,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,88.0540897 +NV,Sulfur Dioxide,2D3a_Domestic-solvent-use,,TON,0 +NV,Sulfur Dioxide,2D3d_Coating-application,,TON,0.087346 +NV,Sulfur Dioxide,2D3i_Other-solvent-use,,TON,0 +NV,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.199128114 +NV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1.33464588 +NV,Sulfur Dioxide,3B1a_Cattle-dairy,,TON,0 +NV,Sulfur Dioxide,3B1b_Cattle-non-dairy,,TON,0 +NV,Sulfur Dioxide,3B2_Manure-sheep,,TON,0 +NV,Sulfur Dioxide,3B3_Manure-swine,,TON,0 +NV,Sulfur Dioxide,3B4_Manure-other,,TON,0 +NV,Sulfur Dioxide,3B4_Manure-poultry,,TON,0 +NV,Sulfur Dioxide,3B4d_Manure-goats,,TON,0 +NV,Sulfur Dioxide,3Dc_Other-farm,,TON,0.044175 +NV,Sulfur Dioxide,3Df_Use-of-pesticides,,TON,0 +NV,Sulfur Dioxide,3F_Ag-res-on-field,,TON,39.43135905 +NV,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,323.4853892 +NV,Sulfur Dioxide,5C_Incineration,biomass,TON,11.738058 +NV,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.000200006 +NV,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +NV,Sulfur Dioxide,5C_Open-burning-residential,,TON,5.5760181 +NV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.0935405 +NV,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,5.298595 +NV,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.00109652 +NV,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.00702 +NV,Volatile Organic Compounds,11C_Other-natural,,TON,1083275.87 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,37.90525696 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,166.618742 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,2.842020034 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,515.660128 +NV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,25.67480241 +NV,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.044027 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,95.76559707 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,97.43201345 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.225571758 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,3.298054679 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,28.19160555 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.372547254 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.190955499 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,44.35925907 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.022 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1048.248288 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,458.9943879 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001549503 +NV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,524.1511865 +NV,Volatile Organic Compounds,1A3b_Road-noncomb,Dust,TON,0 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,237.455481 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,17434.03941 +NV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,188.741041 +NV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3000.8659 +NV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,89.4063276 +NV,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,25.35920593 +NV,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.18369569 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1069.16688 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,16.01562371 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,523.095596 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,173.1447864 +NV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,457.35867 +NV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,387.3705901 +NV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.171082743 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.255060048 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.403435728 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.99011855 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.972705284 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,127.0504227 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,57.86605593 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,886.8528264 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.211869611 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,49.95808347 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6227.82396 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1689.728226 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.304003498 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,heavy_oil,TON,0 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.484972596 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,106.7766465 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,71.61239891 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,17.09445 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00087069 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0187153 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3309.181231 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.851726715 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3059.345164 +NV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,197.2785178 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,81.14424802 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,342.155511 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2096.974824 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2107.382831 +NV,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Volatile Organic Compounds,2A1_Cement-production,,TON,39.5330748 +NV,Volatile Organic Compounds,2A2_Lime-production,,TON,10.526836 +NV,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,17.92038 +NV,Volatile Organic Compounds,2A6_Other-minerals,,TON,39.39600349 +NV,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,332.8072103 +NV,Volatile Organic Compounds,2B_Chemicals-other,,TON,96.97217891 +NV,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,65.40383716 +NV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1.265720886 +NV,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,41.36464656 +NV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,6261.79104 +NV,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,5.0565816 +NV,Volatile Organic Compounds,2D3d_Coating-application,,TON,7173.122814 +NV,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,2406.750895 +NV,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,115.1229 +NV,Volatile Organic Compounds,2D3h_Printing,,TON,1361.34328 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,207.0617922 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,580.3522418 +NV,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,1.90129 +NV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,539.5277948 +NV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,177.4761783 +NV,Volatile Organic Compounds,2I_Wood-processing,Other_Fuel,TON,2.936668 +NV,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,0 +NV,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,0 +NV,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0 +NV,Volatile Organic Compounds,3B3_Manure-swine,,TON,0 +NV,Volatile Organic Compounds,3B4_Manure-other,,TON,0 +NV,Volatile Organic Compounds,3B4_Manure-poultry,,TON,0 +NV,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0 +NV,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.4049375 +NV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,589.6992869 +NV,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,411.3016845 +NV,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,29.9543828 +NV,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.217527295 +NV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,72.2666304 +NV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,47.573407 +NV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,6.928696 +NV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,361.6105982 +NV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,1.010712325 +NV,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.04018 +NV,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.555185 +NY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,28.2078244 +NY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,540.16519 +NY,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,30.7391714 +NY,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.41766 +NY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,341.3301227 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.250306238 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.378078764 +NY,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,18.26540277 +NY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.60594445 +NY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.119462763 +NY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.3583784 +NY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,365.5066123 +NY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,23.85719021 +NY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.654816126 +NY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,22.57642151 +NY,Ammonia,1A3bii_Road-LDV,light_oil,TON,3891.7251 +NY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.5990905 +NY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,283.427516 +NY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,36.1386809 +NY,Ammonia,1A3biii_Road-bus,light_oil,TON,8.567249922 +NY,Ammonia,1A3biii_Road-bus,natural_gas,TON,1.95711545 +NY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,50.74663144 +NY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,5.36882727 +NY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,119.6576881 +NY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,62.62988643 +NY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,33.0803389 +NY,Ammonia,1A3c_Rail,diesel_oil,TON,6.485988338 +NY,Ammonia,1A3c_Rail,light_oil,TON,0.002619327 +NY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12.23381391 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,160.3896941 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,49.64377892 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,110.3690871 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.369268653 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,80.80995879 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.448509157 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,11.14605952 +NY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.898945562 +NY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,14.67886949 +NY,Ammonia,1A4bi_Residential-stationary,biomass,TON,1065.192115 +NY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,309.170381 +NY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,12.1968042 +NY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,5.7973465 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.047025098 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.164740274 +NY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.086678345 +NY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,9.754107797 +NY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.862012088 +NY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,11.49563147 +NY,Ammonia,2A1_Cement-production,,TON,289.0905 +NY,Ammonia,2A6_Other-minerals,,TON,4.54985 +NY,Ammonia,2B_Chemicals-other,,TON,3.833305 +NY,Ammonia,2C_Iron-steel-alloy,,TON,213.295 +NY,Ammonia,2D3d_Coating-application,,TON,13.627645 +NY,Ammonia,2H1_Pulp-and-paper,,TON,32.992 +NY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,6.898 +NY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,142.056965 +NY,Ammonia,3B1a_Cattle-dairy,,TON,29749.19843 +NY,Ammonia,3B1b_Cattle-non-dairy,,TON,1140.716843 +NY,Ammonia,3B2_Manure-sheep,,TON,220.625064 +NY,Ammonia,3B3_Manure-swine,,TON,511.2854604 +NY,Ammonia,3B4_Manure-other,,TON,1141.18092 +NY,Ammonia,3B4_Manure-poultry,,TON,2615.961693 +NY,Ammonia,3B4d_Manure-goats,,TON,278.434332 +NY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7157.570874 +NY,Ammonia,5C_Incineration,biomass,TON,43.651 +NY,Ammonia,5D1_Wastewater-domestic,,TON,43.7495089 +NY,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.3095 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,769535.6182 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,686541.6056 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,37796.71925 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2935677.872 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,54308.67611 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.22685188 +NY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,898420.937 +NY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,58210236.8 +NY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,353958.87 +NY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4437058.45 +NY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,2255981.957 +NY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,226042.6527 +NY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,66162.6225 +NY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2619171.358 +NY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,119504.2126 +NY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6528568.21 +NY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1679199.025 +NY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,350968.469 +NY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4374.443539 +NY,Carbon Dioxide,1A3c_Rail,light_oil,TON,203.112782 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,669552.4274 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,924486.3014 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,40941.50553 +NY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,110559.5796 +NY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1080862.334 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,620936.2482 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12169.91458 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,14.61568681 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,10610.9913 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,652096.396 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,229295.5112 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,795884.5047 +NY,Carbon Monoxide,11C_Other-natural,,TON,70424.9172 +NY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,198.111595 +NY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,40.69490296 +NY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1284.87005 +NY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,307.52488 +NY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,3.28593005 +NY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,9085.691803 +NY,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.013825 +NY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1.4615 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5941.443873 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,32150.61307 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1960.423547 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,10496.70596 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,199.7146223 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,162.2151195 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,144.7331936 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,93.9672853 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3239.361815 +NY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,5.9285 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,12235.70918 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,12336.10878 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.025582767 +NY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,14868.22215 +NY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,19430.63491 +NY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,645199.357 +NY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2503.52647 +NY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,63388.1164 +NY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,5261.391212 +NY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,13859.28143 +NY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,186.296717 +NY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6382.313504 +NY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3643.16287 +NY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16214.20539 +NY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,54652.32381 +NY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,17191.3462 +NY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2100.35068 +NY,Carbon Monoxide,1A3c_Rail,light_oil,TON,51.47422396 +NY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3899.196713 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,30.05163882 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2752.151116 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1454.099231 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,700.7247558 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,40.6604573 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3578.749297 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3548.115323 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,214377.3439 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,961.0153675 +NY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,451.5618678 +NY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,294002.1412 +NY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,150462.1614 +NY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1932.31498 +NY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,76.2299595 +NY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,8091.312197 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2780.40319 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3210.004488 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.607374155 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,102.592731 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,96374.8265 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,458.4568875 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,103120.7099 +NY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,73.42486492 +NY,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,6.558098 +NY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,673.6230485 +NY,Carbon Monoxide,2A1_Cement-production,,TON,674.189 +NY,Carbon Monoxide,2A6_Other-minerals,,TON,418.4105 +NY,Carbon Monoxide,2B_Chemicals-other,,TON,339.76435 +NY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1761.33129 +NY,Carbon Monoxide,2C3_Aluminum-production,,TON,27667.4285 +NY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.309 +NY,Carbon Monoxide,2D3d_Coating-application,,TON,3.440565 +NY,Carbon Monoxide,2D3h_Printing,,TON,33.174 +NY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,250.1565 +NY,Carbon Monoxide,2H2_Food-and-beverage,,TON,1850.518174 +NY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,9.67274029 +NY,Carbon Monoxide,3F_Ag-res-on-field,,TON,3949.55748 +NY,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,998.0949788 +NY,Carbon Monoxide,5C_Incineration,,TON,0.052523834 +NY,Carbon Monoxide,5C_Incineration,biomass,TON,854.6622253 +NY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,21147.844 +NY,Carbon Monoxide,5C_Open-burning-residential,,TON,8609.6278 +NY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1128.58095 +NY,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,77.91 +NY,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,8.425 +NY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.1615 +NY,Methane,1A3bii_Road-LDV,diesel_oil,TON,39.48025673 +NY,Methane,1A3bii_Road-LDV,light_oil,TON,1965.618494 +NY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.8340983 +NY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,241.245818 +NY,Methane,1A3biii_Road-bus,diesel_oil,TON,56.10238524 +NY,Methane,1A3biii_Road-bus,light_oil,TON,54.63058476 +NY,Methane,1A3biii_Road-bus,natural_gas,TON,317.0366207 +NY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,353.2409029 +NY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,8.642412 +NY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,172.8559331 +NY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,131.3253533 +NY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.4608388 +NY,Nitrogen Oxides,11C_Other-natural,,TON,9936.06211 +NY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,133.465525 +NY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,406.7494014 +NY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,11642.495 +NY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1134.87761 +NY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,239.254895 +NY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,9523.11218 +NY,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.0553 +NY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.731 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5566.513245 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4275.819456 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,285.8736065 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1591.195193 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1098.217127 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3053.537791 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,646.0377958 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,18.45220301 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5596.603382 +NY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,3.3335 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,22113.67645 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,236.7908857 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.208496402 +NY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,7145.072219 +NY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3667.969138 +NY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,66403.6929 +NY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1426.14516 +NY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7488.2815 +NY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,13977.95225 +NY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,1503.265903 +NY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,197.016161 +NY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,19479.43915 +NY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,501.909848 +NY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,39273.7145 +NY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,5966.084789 +NY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,722.14634 +NY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15265.45296 +NY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.893257575 +NY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,22343.66716 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,15.76400816 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12923.84347 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,704.4696187 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6673.219683 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,41.93050616 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13440.26496 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6123.60941 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,4287.525695 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,255.1741574 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1006.003932 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3752.325385 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1898.905592 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,9275.1197 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,365.9039405 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,20075.01828 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5583.097076 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,66.68734981 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.358556224 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,103.813803 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1134.980149 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2575.026839 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,5611.183871 +NY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,101.2873865 +NY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.459972 +NY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,503.9517618 +NY,Nitrogen Oxides,2A1_Cement-production,,TON,5792.156 +NY,Nitrogen Oxides,2A6_Other-minerals,,TON,1966.1911 +NY,Nitrogen Oxides,2B_Chemicals-other,,TON,865.42467 +NY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,574.240335 +NY,Nitrogen Oxides,2C3_Aluminum-production,,TON,211.287828 +NY,Nitrogen Oxides,2C5_Lead-production,,TON,155.115 +NY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.727256 +NY,Nitrogen Oxides,2D3d_Coating-application,,TON,8.42009 +NY,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.2165 +NY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1592.9045 +NY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,3.403458 +NY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,149.0422022 +NY,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,427.5788881 +NY,Nitrogen Oxides,5C_Incineration,,TON,0.005343872 +NY,Nitrogen Oxides,5C_Incineration,biomass,TON,4697.661435 +NY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,625.67614 +NY,Nitrogen Oxides,5C_Open-burning-residential,,TON,607.738355 +NY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,50.15915225 +NY,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,15.4715 +NY,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,65.70805 +NY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.2335 +NY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.111427402 +NY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2149.599829 +NY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.23955822 +NY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,221.247797 +NY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,5.344915194 +NY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,8.84876516 +NY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,5.45407423 +NY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.609086201 +NY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.85136592 +NY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.36725392 +NY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,87.35362982 +NY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.96622054 +NY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,71.20920372 +NY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,23.99904533 +NY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,624.147396 +NY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,211.6034545 +NY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,7.4709103 +NY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,578.1088703 +NY,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.1148 +NY,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00178523 +NY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.00798 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8689.829817 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.89824534 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,130.1232371 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,117.6123864 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.088634868 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,171.9242055 +NY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,6.2093665 +NY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,138047.678 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,15.80965133 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1195.291582 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.864386 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,860.765445 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.190386779 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,683.8471877 +NY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,710.201915 +NY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,28.0175162 +NY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1172.135721 +NY,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,3.32821436 +NY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.297345722 +NY,PM10 Filterable,2A1_Cement-production,,TON,1150.388255 +NY,PM10 Filterable,2A2_Lime-production,,TON,1.492375233 +NY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21634.89023 +NY,PM10 Filterable,2A6_Other-minerals,,TON,8282.168765 +NY,PM10 Filterable,2B_Chemicals-other,,TON,40.25370395 +NY,PM10 Filterable,2C_Iron-steel-alloy,,TON,192.6013172 +NY,PM10 Filterable,2C3_Aluminum-production,,TON,449.3943348 +NY,PM10 Filterable,2C5_Lead-production,,TON,2.584247 +NY,PM10 Filterable,2C7_Other-metal,,TON,11.45378004 +NY,PM10 Filterable,2C7a_Copper-production,,TON,0.489219 +NY,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0122212 +NY,PM10 Filterable,2D3d_Coating-application,,TON,26.95978995 +NY,PM10 Filterable,2D3e_Degreasing,,TON,0.0524725 +NY,PM10 Filterable,2D3h_Printing,,TON,0.5936037 +NY,PM10 Filterable,2H1_Pulp-and-paper,,TON,95.68550973 +NY,PM10 Filterable,2H2_Food-and-beverage,,TON,64.06458074 +NY,PM10 Filterable,2H3_Other-industrial-processes,,TON,195.7149632 +NY,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,1.089506386 +NY,PM10 Filterable,2I_Wood-processing,,TON,3.47115296 +NY,PM10 Filterable,3Dc_Other-farm,,TON,37270.55088 +NY,PM10 Filterable,5A_Solid-waste-disposal,,TON,17.65153423 +NY,PM10 Filterable,5C_Incineration,,TON,0.015806114 +NY,PM10 Filterable,5C_Incineration,biomass,TON,10.4618191 +NY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2127.29775 +NY,PM10 Filterable,5C_Open-burning-residential,,TON,3849.0109 +NY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,186.8876175 +NY,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,4.16001 +NY,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,7.34472125 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,75.713611 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,28.47110694 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,685.88676 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,247.790267 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,11.7691822 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1262.664667 +NY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.177805 +NY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.002765 +NY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.021 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,440.1118361 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,73.05101176 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.789854672 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9156.634266 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,94.2229683 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,184.9761639 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,137.961823 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.158232117 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,350.8716711 +NY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,8.35115 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1896.288421 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,84.84267728 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001667005 +NY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,334.3370397 +NY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,138047.678 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,296.0180564 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,9222.05611 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,119.542428 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,683.31713 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,1173.238283 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,70.91484838 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,7.64547973 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1151.90631 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,14.4506781 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3683.128677 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,237.5355106 +NY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,37.1516505 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,488.4210727 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.028215868 +NY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1030.173348 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,16.34733156 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1969.679915 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,46.57843785 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,982.1046359 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,7.263642938 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1786.180239 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,587.5191944 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,256.0616514 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.135726005 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,76.32309333 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,967.2223014 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,22946.03634 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1630.02521 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,64.304611 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3084.56745 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,490.7014477 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.76182952 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001847663 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,14.7062872 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,983.6459292 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,51.53903277 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,530.2334606 +NY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,6.263629448 +NY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.94006902 +NY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1237.759998 +NY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.9390765 +NY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21634.89023 +NY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,8426.19836 +NY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,55.68473772 +NY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,358.6374794 +NY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,860.9255145 +NY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,9.515483 +NY,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,20.573652 +NY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.91 +NY,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.045 +NY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,58.65783045 +NY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0524725 +NY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.5936037 +NY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,176.08144 +NY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5298.754441 +NY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,303.2031896 +NY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,1.687876001 +NY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,6.48557225 +NY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,37270.55088 +NY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,727.967169 +NY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,45.7334102 +NY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.019794914 +NY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,22.25629237 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2127.29775 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3849.0109 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,186.8876175 +NY,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,4.5805 +NY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.101555 +NY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.018 +NY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,32.69557081 +NY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,16.95564214 +NY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,71.568459 +NY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,123.769301 +NY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,6.3831782 +NY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,570.0576238 +NY,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.0952595 +NY,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000428455 +NY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.00798 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3798.450475 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.52511335 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,85.68853771 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,98.81153113 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.985407711 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,143.6297973 +NY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,5.276617125 +NY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,19244.88705 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,2.886177604 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,304.759885 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,32.29113748 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,159.1952063 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.04813083 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.15974167 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0 +NY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,3.27821436 +NY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.297345722 +NY,PM2.5 Filterable,2A1_Cement-production,,TON,504.9605998 +NY,PM2.5 Filterable,2A2_Lime-production,,TON,0.526721494 +NY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2163.489023 +NY,PM2.5 Filterable,2A6_Other-minerals,,TON,1366.777592 +NY,PM2.5 Filterable,2B_Chemicals-other,,TON,26.54732582 +NY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,155.8924512 +NY,PM2.5 Filterable,2C3_Aluminum-production,,TON,251.3056518 +NY,PM2.5 Filterable,2C5_Lead-production,,TON,2.151001 +NY,PM2.5 Filterable,2C7_Other-metal,,TON,5.006481084 +NY,PM2.5 Filterable,2C7a_Copper-production,,TON,0.489219 +NY,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.00431336 +NY,PM2.5 Filterable,2D3d_Coating-application,,TON,21.51186327 +NY,PM2.5 Filterable,2D3e_Degreasing,,TON,0.04354101 +NY,PM2.5 Filterable,2D3h_Printing,,TON,0.491490308 +NY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,56.42355923 +NY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,35.94122148 +NY,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,119.3252371 +NY,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,1.680687405 +NY,PM2.5 Filterable,2I_Wood-processing,,TON,1.0209274 +NY,PM2.5 Filterable,3Dc_Other-farm,,TON,7454.046188 +NY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,16.6097452 +NY,PM2.5 Filterable,5C_Incineration,,TON,0.012676411 +NY,PM2.5 Filterable,5C_Incineration,biomass,TON,5.50150204 +NY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1639.93415 +NY,PM2.5 Filterable,5C_Open-burning-residential,,TON,3524.8815 +NY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,144.072282 +NY,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,1.46341765 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,38.36299534 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,21.40718053 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,110.900353 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,159.9562174 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,10.67514845 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1254.251986 +NY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.158264 +NY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00140823 +NY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.020748 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,426.7741387 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,72.60022901 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.782495668 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4263.376586 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,60.01702344 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,140.6935201 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,118.5837382 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.136979463 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,322.7414654 +NY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7.44079362 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1839.399789 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,78.10666682 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001667005 +NY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,294.5503241 +NY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19244.88705 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,199.0379366 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2568.619799 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,85.81945 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,201.085361 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,840.1386153 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,44.75161538 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.15612434 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,856.5480608 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.70509915 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2621.361617 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,78.744661 +NY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.0117534 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,451.4415381 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02600883 +NY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,975.7207403 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,3.423272698 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1079.131781 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,36.99736451 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,280.4834008 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,4.121579674 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1149.502329 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,569.893799 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,236.260465 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.135726005 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,74.03340751 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,889.8765475 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,22938.67576 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,919.8229 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,36.2870913 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1912.433002 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,475.9801975 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.66098653 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001847663 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,14.2650941 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,904.9582166 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,49.99289961 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,487.8144247 +NY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,6.213950548 +NY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.94006902 +NY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,592.3317381 +NY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.973419761 +NY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2163.489023 +NY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1510.578189 +NY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,41.9534577 +NY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,321.9280495 +NY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,662.8349233 +NY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,9.082257 +NY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,14.12659898 +NY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.91 +NY,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0370922 +NY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,53.11206247 +NY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.04354101 +NY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.491490308 +NY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,147.7766344 +NY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5087.68193 +NY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,227.0856187 +NY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,2.016100115 +NY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,4.03535068 +NY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,7454.046188 +NY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,411.28457 +NY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,44.59760399 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.015558632 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,17.29721957 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1639.93415 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3524.8815 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,144.072282 +NY,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,4.5805 +NY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,2.2203888 +NY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.018 +NY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,8.3287575 +NY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,109.4681135 +NY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,35801.1365 +NY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,3131.0476 +NY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,20.63055 +NY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,375.1641397 +NY,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.079411 +NY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0165 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,21.13761615 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14.83058418 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.943083511 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,255.8741259 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1419.217711 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,6639.229906 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1207.598868 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.10425556 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,270.9284449 +NY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0045 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,54.77799601 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.9970714 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000313759 +NY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,804.5661878 +NY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.69232342 +NY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1158.277417 +NY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.05144101 +NY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,88.191828 +NY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,19.09896757 +NY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,4.491024031 +NY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.350297139 +NY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22.29952955 +NY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.37581689 +NY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,55.8355354 +NY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,33.40343631 +NY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.9787395 +NY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,145.6604842 +NY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003710628 +NY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3493.018239 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.726017778 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9125.175212 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2028.782258 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14845.21456 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,97.58070106 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,266.6986988 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.68231038 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,16.96114284 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.905254662 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.091334229 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,19.69464075 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,553.6584255 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,15772.69555 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,743.50248 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,599.2092433 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.67415983 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.221755101 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000321448 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.20033191 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,11.84187793 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.918336633 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,14.47038229 +NY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,30.97328616 +NY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0235 +NY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,63.98201087 +NY,Sulfur Dioxide,2A1_Cement-production,,TON,9648.755 +NY,Sulfur Dioxide,2A6_Other-minerals,,TON,758.40954 +NY,Sulfur Dioxide,2B_Chemicals-other,,TON,169.9824503 +NY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,816.23392 +NY,Sulfur Dioxide,2C3_Aluminum-production,,TON,2669.917485 +NY,Sulfur Dioxide,2C5_Lead-production,,TON,54.0805 +NY,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.004625 +NY,Sulfur Dioxide,2D3d_Coating-application,,TON,0.1840075 +NY,Sulfur Dioxide,2D3h_Printing,,TON,0.0135 +NY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,368.201 +NY,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,8.1085 +NY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,6.022185 +NY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,65.45062722 +NY,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,399.26792 +NY,Sulfur Dioxide,5C_Incineration,,TON,0.006754844 +NY,Sulfur Dioxide,5C_Incineration,biomass,TON,446.288357 +NY,Sulfur Dioxide,5C_Open-burning-residential,,TON,101.289718 +NY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.8379585 +NY,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,12.0435 +NY,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,4.428 +NY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.0015 +NY,Volatile Organic Compounds,11C_Other-natural,,TON,382506.967 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,5.964935 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,18.83622499 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,171.15651 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,32.8384909 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.43704155 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,803.8818636 +NY,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,71.44751255 +NY,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.000553 +NY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.057544 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,547.3271862 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1323.712908 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.23459835 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,140.5310013 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,39.3754253 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,20.34863846 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.591767717 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.334221173 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,690.8126126 +NY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.2389774 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2249.065242 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,899.3613931 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.003408912 +NY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1254.774808 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1915.243972 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,63460.5223 +NY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,403.375953 +NY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5535.48395 +NY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,1276.431695 +NY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,841.664709 +NY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,26.23322684 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2007.49674 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,179.0763489 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4995.731593 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,2900.370304 +NY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2645.82465 +NY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,766.4922554 +NY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.915886029 +NY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,600.7064089 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.082325747 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,741.5596936 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.218048324 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,163.7010058 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.231246442 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,968.2122929 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,815.8326781 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,10675.48665 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.001557811 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,103.9708937 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,22466.77946 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,27943.43948 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,146.5713975 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,5.78225163 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1487.446743 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,513.0216566 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,204.4838336 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006230271 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,26.671834 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,34510.99026 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,117.2538042 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,33566.27272 +NY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,4020.28975 +NY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,672.5098054 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,682.353212 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1226.401172 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,23912.03003 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6741.098676 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,27.28262 +NY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4195.644304 +NY,Volatile Organic Compounds,2A1_Cement-production,,TON,166.269 +NY,Volatile Organic Compounds,2A6_Other-minerals,,TON,41.08541081 +NY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2322.470757 +NY,Volatile Organic Compounds,2B_Chemicals-other,,TON,1081.38416 +NY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,129.008385 +NY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,158.129045 +NY,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,32.6811075 +NY,Volatile Organic Compounds,2C7a_Copper-production,,TON,13.499 +NY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,81678.68965 +NY,Volatile Organic Compounds,2D3d_Coating-application,,TON,36212.63904 +NY,Volatile Organic Compounds,2D3e_Degreasing,,TON,9099.65912 +NY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,147.26156 +NY,Volatile Organic Compounds,2D3h_Printing,,TON,3926.336481 +NY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,876.0536815 +NY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,196.4319077 +NY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,970.02299 +NY,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,979.767752 +NY,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,11.49966971 +NY,Volatile Organic Compounds,2I_Wood-processing,,TON,33.8095 +NY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3409.896271 +NY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,255.3839025 +NY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,503.7604044 +NY,Volatile Organic Compounds,5C_Incineration,,TON,0.039643318 +NY,Volatile Organic Compounds,5C_Incineration,biomass,TON,42.63337107 +NY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1451.56767 +NY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,867.040185 +NY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,210.489311 +NY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,234.8669014 +NY,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,69.08358 +NY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.8365 +NY,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,4.726971 +OH,Ammonia,1A1a_Public-Electricity,biomass,TON,3.3 +OH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,6.9632938 +OH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,16.7496038 +OH,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.1 +OH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,305.217409 +OH,Ammonia,1A1b_Pet-refining,natural_gas,TON,20.7761 +OH,Ammonia,1A1c_Coke-ovens,natural_gas,TON,1.55 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.503641765 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.543810802 +OH,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,4.48308E-06 +OH,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,44.91534612 +OH,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.978185651 +OH,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.301679239 +OH,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.374885786 +OH,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,1.282315565 +OH,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,476.2054282 +OH,Ammonia,1A2c_Chemicals,natural_gas,TON,1.8812864 +OH,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000004 +OH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,24.8892312 +OH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.428849271 +OH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,14.15826761 +OH,Ammonia,1A3bii_Road-LDV,light_oil,TON,4450.71439 +OH,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.0972507 +OH,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,336.749551 +OH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,9.81179234 +OH,Ammonia,1A3biii_Road-bus,light_oil,TON,4.566672955 +OH,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.209988055 +OH,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,105.8437845 +OH,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,5.25285107 +OH,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,144.6772937 +OH,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,31.97975306 +OH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.9221424 +OH,Ammonia,1A3c_Rail,diesel_oil,TON,15.935834 +OH,Ammonia,1A3c_Rail,light_oil,TON,0.005854941 +OH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.386311461 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,7.63856212 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.80134328 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.583150955 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.096693372 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.453600107 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.92175105 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.24613588 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.657440498 +OH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.119183252 +OH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,14.82491171 +OH,Ammonia,1A4bi_Residential-stationary,biomass,TON,943.5960683 +OH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,38.7216185 +OH,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,24.68467487 +OH,Ammonia,1A4bi_Residential-stationary,light_oil,TON,4.22323925 +OH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2930.176697 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.70974917 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.345344611 +OH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.051639504 +OH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,4.617582307 +OH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.410270783 +OH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.294452432 +OH,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1522 +OH,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.136955 +OH,Ammonia,2A1_Cement-production,,TON,25.433 +OH,Ammonia,2A2_Lime-production,Other_Fuel,TON,2.67 +OH,Ammonia,2A6_Other-minerals,,TON,258.0610013 +OH,Ammonia,2B_Chemicals-other,,TON,1941.6812 +OH,Ammonia,2C_Iron-steel-alloy,,TON,111.2803993 +OH,Ammonia,2C3_Aluminum-production,,TON,4.291 +OH,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.08913 +OH,Ammonia,2D3d_Coating-application,,TON,2.89861 +OH,Ammonia,2D3h_Printing,,TON,7.623256 +OH,Ammonia,2H1_Pulp-and-paper,,TON,63.08742 +OH,Ammonia,2H2_Food-and-beverage,,TON,25.07 +OH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1069.075933 +OH,Ammonia,3B1a_Cattle-dairy,,TON,15023.70684 +OH,Ammonia,3B1b_Cattle-non-dairy,,TON,4979.261396 +OH,Ammonia,3B2_Manure-sheep,,TON,429.78804 +OH,Ammonia,3B3_Manure-swine,,TON,11021.92506 +OH,Ammonia,3B4_Manure-other,,TON,1601.6088 +OH,Ammonia,3B4_Manure-poultry,,TON,18562.64625 +OH,Ammonia,3B4d_Manure-goats,,TON,484.88748 +OH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,39782.7496 +OH,Ammonia,5A_Solid-waste-disposal,,TON,23.36 +OH,Ammonia,5C_Incineration,biomass,TON,0.0268 +OH,Ammonia,5D1_Wastewater-domestic,,TON,44.07249402 +OH,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,12.335 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,677579.174 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,802037.8033 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,52534.45458 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3064288.781 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,121216.1645 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,15.41016445 +OH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,661611.585 +OH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,52534035.1 +OH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,416678.551 +OH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5487608.64 +OH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,643382.7613 +OH,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,137655.1 +OH,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,8027.3121 +OH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6737865.877 +OH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,138098.7397 +OH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10936317.61 +OH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,966950.9888 +OH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,202099.96 +OH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,9799.242876 +OH,Carbon Dioxide,1A3c_Rail,light_oil,TON,454.1133008 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,275959.4712 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,389620.9171 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16996.71981 +OH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,137619.4294 +OH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1092181.534 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1563617.722 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,25859.17117 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,38.12318292 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6321.6011 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,304592.7681 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,173667.4177 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,444869.596 +OH,Carbon Monoxide,11C_Other-natural,,TON,59139.676 +OH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,170.51 +OH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,83.47627057 +OH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,19067.973 +OH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,35.6 +OH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2106.866549 +OH,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,3.180119064 +OH,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,3228.131081 +OH,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,10.02 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3430.789274 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,40930.60801 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2590.86549 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.00492732 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4094.904324 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,258.8575063 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1591.045458 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.72430332 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.379850055 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,44785.874 +OH,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,176.8106 +OH,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000025 +OH,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,10473.00796 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,22512.62935 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.055967263 +OH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12678.30799 +OH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,23865.75811 +OH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1332917.68 +OH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3907.05817 +OH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,146917.684 +OH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1876.486718 +OH,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5931.950223 +OH,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,52.2273416 +OH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16146.80589 +OH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2267.141317 +OH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,21678.62588 +OH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,26023.73107 +OH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7874.57016 +OH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5157.328323 +OH,Carbon Monoxide,1A3c_Rail,light_oil,TON,116.0498137 +OH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,115.6880394 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1026.529747 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,516.5893071 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,453.5337017 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.659197027 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.003145047 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6999.205313 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1516.969614 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,91709.69427 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,416.7907212 +OH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,586.3730397 +OH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,295352.7151 +OH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,134454.3349 +OH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,193.608093 +OH,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,3394.143388 +OH,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,21.1161902 +OH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,6840.69118 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7116.881414 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6435.695955 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.193187278 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,61.119716 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,59128.40218 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,346.1145801 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,58105.92185 +OH,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,151.1483933 +OH,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,9.932 +OH,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,15.43 +OH,Carbon Monoxide,2A1_Cement-production,,TON,210.07 +OH,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,4046.54 +OH,Carbon Monoxide,2A6_Other-minerals,,TON,3276.879497 +OH,Carbon Monoxide,2B_Chemicals-other,,TON,67549.57052 +OH,Carbon Monoxide,2C_Iron-steel-alloy,,TON,101040.4127 +OH,Carbon Monoxide,2C3_Aluminum-production,,TON,18965.54 +OH,Carbon Monoxide,2C7_Other-metal,,TON,2045.623199 +OH,Carbon Monoxide,2C7a_Copper-production,,TON,27.93 +OH,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,24.45679 +OH,Carbon Monoxide,2D3d_Coating-application,,TON,76.0629 +OH,Carbon Monoxide,2D3e_Degreasing,,TON,0.022 +OH,Carbon Monoxide,2D3h_Printing,,TON,1.283638 +OH,Carbon Monoxide,2H1_Pulp-and-paper,,TON,497.1399 +OH,Carbon Monoxide,2H2_Food-and-beverage,,TON,1439.028632 +OH,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,190.4056 +OH,Carbon Monoxide,3Dc_Other-farm,,TON,10.7 +OH,Carbon Monoxide,3F_Ag-res-on-field,,TON,0.334744661 +OH,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2351.721177 +OH,Carbon Monoxide,5C_Incineration,,TON,1.367931301 +OH,Carbon Monoxide,5C_Incineration,biomass,TON,378.938656 +OH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,16420.41647 +OH,Carbon Monoxide,5C_Open-burning-residential,,TON,9178.6237 +OH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1053.80094 +OH,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,56.1499 +OH,Methane,1A3bii_Road-LDV,diesel_oil,TON,39.3987991 +OH,Methane,1A3bii_Road-LDV,light_oil,TON,3474.24245 +OH,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,20.6316779 +OH,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,534.30824 +OH,Methane,1A3biii_Road-bus,diesel_oil,TON,16.78393993 +OH,Methane,1A3biii_Road-bus,light_oil,TON,12.53886383 +OH,Methane,1A3biii_Road-bus,natural_gas,TON,55.7518949 +OH,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,442.4660421 +OH,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.067285113 +OH,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,200.09396 +OH,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,47.33058283 +OH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.3946968 +OH,Nitrogen Oxides,11C_Other-natural,,TON,19143.4581 +OH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,54.874 +OH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,216.91184 +OH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,102335.025 +OH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,804.3 +OH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1438.71585 +OH,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,1.214437281 +OH,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3639.462873 +OH,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,746 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4724.816197 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5366.836404 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,380.566397 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.029326927 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1977.351581 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1127.143484 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,7617.603134 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,127.3198282 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,33.56198529 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,24579.36699 +OH,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,180.06593 +OH,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.1780012 +OH,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.97 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,21214.19669 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,446.820952 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.204274025 +OH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1553.484025 +OH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2821.48184 +OH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,139841.128 +OH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1886.84842 +OH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15753.0295 +OH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4847.612529 +OH,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,561.2544466 +OH,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,33.8798697 +OH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,51361.1128 +OH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,372.0459205 +OH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,65858.4393 +OH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2772.56252 +OH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,359.40742 +OH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,35408.95548 +OH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.942102222 +OH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1064.852591 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,405.7232883 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2199.653521 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,728.3633453 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.668092056 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,10.97754154 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8898.586281 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2614.335119 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1830.464613 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,112.4525522 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1310.643088 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3649.378083 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1418.994339 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,696.98909 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,102.7537133 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,76.0182875 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,15516.19939 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14245.05161 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,146.6136446 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.935409146 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,61.850011 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,640.2348965 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1951.139843 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3343.671898 +OH,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,318.5772855 +OH,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,4.927 +OH,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.58 +OH,Nitrogen Oxides,2A1_Cement-production,,TON,2247 +OH,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,6553.06 +OH,Nitrogen Oxides,2A6_Other-minerals,,TON,3881.14684 +OH,Nitrogen Oxides,2B_Chemicals-other,,TON,1505.30827 +OH,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3880.990366 +OH,Nitrogen Oxides,2C3_Aluminum-production,,TON,37.03846 +OH,Nitrogen Oxides,2C7_Other-metal,,TON,450.9461 +OH,Nitrogen Oxides,2C7a_Copper-production,,TON,7.668 +OH,Nitrogen Oxides,2D3d_Coating-application,,TON,63.4921 +OH,Nitrogen Oxides,2D3e_Degreasing,,TON,0.84 +OH,Nitrogen Oxides,2D3h_Printing,,TON,15.700495 +OH,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,521.4268 +OH,Nitrogen Oxides,2H2_Food-and-beverage,,TON,67.4014 +OH,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,277.1531 +OH,Nitrogen Oxides,3Dc_Other-farm,,TON,19.49 +OH,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.014797494 +OH,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,265.164 +OH,Nitrogen Oxides,5C_Incineration,,TON,22.13826169 +OH,Nitrogen Oxides,5C_Incineration,biomass,TON,992.3183353 +OH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,485.8113265 +OH,Nitrogen Oxides,5C_Open-burning-residential,,TON,647.90303 +OH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,46.8355877 +OH,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,6.2124 +OH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.188185348 +OH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,3377.03191 +OH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.68338508 +OH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,460.637495 +OH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.629812301 +OH,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.671821332 +OH,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.81035552 +OH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.73539223 +OH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.667360748 +OH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.5342157 +OH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,37.4640308 +OH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.07407176 +OH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,7.22 +OH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,10.29687988 +OH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,6838.9222 +OH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.60901 +OH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,194.3616318 +OH,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,777.05266 +OH,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,48.65 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.000801269 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3004.017312 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,86.93521278 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,511.541602 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.58218961 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.608031001 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,601.8904363 +OH,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,17.2261674 +OH,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000005 +OH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,128996.9326 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,850.1887416 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,171.3979923 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,294.9161034 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.997237086 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.65221122 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,66.87521794 +OH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,41.8193485 +OH,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,82.47892559 +OH,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.56109745 +OH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,31.60588384 +OH,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,11.85398115 +OH,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.358 +OH,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.25295 +OH,PM10 Filterable,2A1_Cement-production,,TON,75.086 +OH,PM10 Filterable,2A2_Lime-production,,TON,529.58576 +OH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,47562.80247 +OH,PM10 Filterable,2A6_Other-minerals,,TON,12098.08992 +OH,PM10 Filterable,2B_Chemicals-other,,TON,429.6146814 +OH,PM10 Filterable,2C_Iron-steel-alloy,,TON,3007.766555 +OH,PM10 Filterable,2C3_Aluminum-production,,TON,469.3946627 +OH,PM10 Filterable,2C6_Zinc-production,,TON,0.2535 +OH,PM10 Filterable,2C7_Other-metal,,TON,500.4665611 +OH,PM10 Filterable,2C7a_Copper-production,,TON,44.189 +OH,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,39.076 +OH,PM10 Filterable,2D3d_Coating-application,,TON,90.005668 +OH,PM10 Filterable,2D3h_Printing,,TON,0.007075 +OH,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,9.5532 +OH,PM10 Filterable,2H1_Pulp-and-paper,,TON,320.085864 +OH,PM10 Filterable,2H2_Food-and-beverage,,TON,568.0750608 +OH,PM10 Filterable,2H3_Other-industrial-processes,,TON,382.4781926 +OH,PM10 Filterable,2I_Wood-processing,,TON,0.363 +OH,PM10 Filterable,3Dc_Other-farm,,TON,161125.1942 +OH,PM10 Filterable,5A_Solid-waste-disposal,,TON,364.576317 +OH,PM10 Filterable,5C_Incineration,,TON,0.753243921 +OH,PM10 Filterable,5C_Incineration,biomass,TON,53.50713384 +OH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1651.758504 +OH,PM10 Filterable,5C_Open-burning-residential,,TON,4103.3844 +OH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,174.50435 +OH,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.90839 +OH,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.435 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,13.1808 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,26.14029243 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,36429.6277 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,38.9003 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,715.0220513 +OH,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1294.39595 +OH,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,136 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,392.7838384 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,83.47563488 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.465351257 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.004373062 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3112.052028 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,161.0029062 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,984.0681578 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,36.66363302 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.69430121 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1365.110161 +OH,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,45.7448935 +OH,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.000000115 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1635.933316 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,132.7931406 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001824416 +OH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,302.6057449 +OH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,128996.9326 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,194.3468158 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,9674.39382 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,155.746878 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,993.13365 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,391.2853836 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,25.80364944 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.22493716 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3507.938472 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,16.37549403 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,5843.07695 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,125.423911 +OH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.5131683 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1205.30108 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.063078589 +OH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,57.48410391 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,862.3730419 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,381.1125079 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,375.5976192 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.075129061 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.432124707 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,191.106996 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,255.7358587 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,107.4854929 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.133139717 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,101.6861909 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1104.758729 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,21647.08616 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,92.1574505 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,95.36259205 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,10.0513065 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,82.1752798 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1255.178102 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.05628493 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004819343 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.7609567 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,559.1956653 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,38.80076855 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,232.4077706 +OH,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,12.13347765 +OH,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.458 +OH,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.81784 +OH,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,107.7054863 +OH,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1063.799584 +OH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,47562.80247 +OH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12819.57164 +OH,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,519.9986272 +OH,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5286.403356 +OH,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,871.2748486 +OH,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.2535 +OH,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,548.2778223 +OH,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,53.36842 +OH,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,93.747 +OH,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,117.093188 +OH,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.337075 +OH,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,23.1409 +OH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,409.5463979 +OH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3918.858458 +OH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,438.7316175 +OH,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.363 +OH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,161135.8785 +OH,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.055159668 +OH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,499.893667 +OH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.263339276 +OH,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,63.47474198 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1651.758504 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4103.3844 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,174.50435 +OH,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.101326 +OH,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.582929 +OH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,4.8184367 +OH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.79704538 +OH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3456.029778 +OH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.89364 +OH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,192.1304952 +OH,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,737.9040524 +OH,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,48.65 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.000459051 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2575.821126 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,78.08099039 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,297.076474 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,21.28996185 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.401264062 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,559.1356319 +OH,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,16.2339267 +OH,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.25E-08 +OH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,18912.5315 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,757.9030103 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,176.5020612 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,51.49415821 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.768144377 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.519587924 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,57.57637979 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,32.13895005 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,48.1548653 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.5052886 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,17.38323285 +OH,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,11.44234393 +OH,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.358 +OH,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.25295 +OH,PM2.5 Filterable,2A1_Cement-production,,TON,34.441632 +OH,PM2.5 Filterable,2A2_Lime-production,,TON,276.8414629 +OH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4807.992947 +OH,PM2.5 Filterable,2A6_Other-minerals,,TON,2614.081303 +OH,PM2.5 Filterable,2B_Chemicals-other,,TON,329.2250698 +OH,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2210.498006 +OH,PM2.5 Filterable,2C3_Aluminum-production,,TON,255.1617867 +OH,PM2.5 Filterable,2C7_Other-metal,,TON,330.9506289 +OH,PM2.5 Filterable,2C7a_Copper-production,,TON,22.252273 +OH,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,12.566 +OH,PM2.5 Filterable,2D3d_Coating-application,,TON,80.57474762 +OH,PM2.5 Filterable,2D3h_Printing,,TON,0.00587074 +OH,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,9.5532 +OH,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,215.1072309 +OH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,190.5126028 +OH,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,336.6733051 +OH,PM2.5 Filterable,2I_Wood-processing,,TON,0.1187586 +OH,PM2.5 Filterable,3Dc_Other-farm,,TON,32264.69106 +OH,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,136.4270451 +OH,PM2.5 Filterable,5C_Incineration,,TON,0.787523249 +OH,PM2.5 Filterable,5C_Incineration,biomass,TON,51.69178751 +OH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1273.340315 +OH,PM2.5 Filterable,5C_Open-burning-residential,,TON,3757.8367 +OH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,134.52604 +OH,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.90839 +OH,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.435 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,10.7792367 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,21.16268803 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,33046.73508 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,38.1849 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,712.7908622 +OH,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1255.247342 +OH,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,136 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,380.9604501 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,82.95347235 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.463525647 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.004030967 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2688.29415 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,153.032114 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,770.1310916 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,26.39972842 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.436044154 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1334.021574 +OH,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,44.7526528 +OH,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,7.75E-08 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1586.854948 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,122.2981947 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001824416 +OH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,251.2061911 +OH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,18912.5315 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,123.3489501 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3552.40816 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,110.104179 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,310.339137 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,296.5004461 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.4572321 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.422590436 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2610.661515 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.02356802 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,4140.35111 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,40.95617696 +OH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.6023045 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1114.352784 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.058145352 +OH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,23.52314073 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,760.7418885 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,387.2246533 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,138.8323032 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.926538549 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.303972821 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,183.4332125 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,248.0638053 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,99.1975577 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.133139717 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,98.63555414 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1016.423691 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,21634.87653 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,82.4770455 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,61.03857757 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,8.9954994 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,67.952663 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1217.522378 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.252022424 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004819343 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.4981269 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,514.4624677 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,37.63675463 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,213.8152418 +OH,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,11.69313653 +OH,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.458 +OH,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.81784 +OH,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,67.0611183 +OH,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,811.0552171 +OH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4807.992947 +OH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3343.025043 +OH,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,419.6411178 +OH,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4489.134429 +OH,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,657.0419725 +OH,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.2535 +OH,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,378.7619406 +OH,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,31.43169 +OH,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,67.237 +OH,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,107.6732676 +OH,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.33587074 +OH,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,23.1409 +OH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,304.5677635 +OH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3557.005604 +OH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,394.27675 +OH,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.1187586 +OH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,32277.93642 +OH,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.032780215 +OH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,281.2543651 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.296878467 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,61.66013779 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1273.340315 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3757.8367 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,134.52604 +OH,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.101326 +OH,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.582929 +OH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,9.379 +OH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,53.3734385 +OH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,589755.18 +OH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,2576 +OH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,62.82050147 +OH,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1146.30377 +OH,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,1679 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.68711561 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.9748966 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.192054656 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.041449799 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,260.0929863 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,79.23630605 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,45454.37704 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,774.7000663 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,71.00856554 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3122.601782 +OH,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,6.52575766 +OH,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.03000375 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,56.92523808 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.227453207 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000339961 +OH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,219.3736922 +OH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.6870038 +OH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1042.822797 +OH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.5910448 +OH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,108.931488 +OH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.518507802 +OH,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.732511502 +OH,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.042500531 +OH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,57.8669451 +OH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.741324977 +OH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,93.5363429 +OH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.19440001 +OH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.01177152 +OH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,358.0391233 +OH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008296214 +OH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,410.897511 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,42.84272215 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.699597787 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3977.933241 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,42.71142204 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,24.16288306 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.4907812 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.231667723 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.151836252 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.375784991 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.606519736 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,19.90225173 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,703.877399 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1649.54061 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1206.778503 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,179.909985 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,94.8176935 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29.41610543 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.471401396 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000838457 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.119349429 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.528688898 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.725119695 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.094097017 +OH,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.786422391 +OH,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.06 +OH,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,334.3480756 +OH,Sulfur Dioxide,2A1_Cement-production,,TON,1604.1 +OH,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,8208.66 +OH,Sulfur Dioxide,2A6_Other-minerals,,TON,2900.193725 +OH,Sulfur Dioxide,2B_Chemicals-other,,TON,2922.139807 +OH,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,4706.150467 +OH,Sulfur Dioxide,2C3_Aluminum-production,,TON,2509.88891 +OH,Sulfur Dioxide,2C7_Other-metal,,TON,585.856416 +OH,Sulfur Dioxide,2C7a_Copper-production,,TON,178.4 +OH,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,3.31868 +OH,Sulfur Dioxide,2D3d_Coating-application,,TON,0.300865 +OH,Sulfur Dioxide,2D3e_Degreasing,,TON,0.42 +OH,Sulfur Dioxide,2D3h_Printing,,TON,0.063497 +OH,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,228.762707 +OH,Sulfur Dioxide,2H2_Food-and-beverage,,TON,84.5711975 +OH,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,17.972497 +OH,Sulfur Dioxide,3Dc_Other-farm,,TON,17.074 +OH,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.006960285 +OH,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,148.2634 +OH,Sulfur Dioxide,5C_Incineration,,TON,0.12775473 +OH,Sulfur Dioxide,5C_Incineration,biomass,TON,193.1568803 +OH,Sulfur Dioxide,5C_Open-burning-residential,,TON,107.983774 +OH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.1198317 +OH,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,23.973 +OH,Volatile Organic Compounds,11C_Other-natural,,TON,317978.79 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,32.493 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,10.44370583 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1418.6108 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,12.5 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,166.7770849 +OH,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,25.48544157 +OH,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,120.4149414 +OH,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1745.181587 +OH,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,5.4 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,430.5666949 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1717.345735 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.616940022 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.000626188 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,156.4321239 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.39336205 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,229.7648657 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.935462538 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.60560584 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1291.900968 +OH,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,16.0544506 +OH,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000001 +OH,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1802.049951 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1437.955183 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.00335852 +OH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,634.8843112 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,2319.27505 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,135238.02 +OH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,612.03933 +OH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13218.6087 +OH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,459.6843469 +OH,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,284.9807435 +OH,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,6.45770401 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4540.151251 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,77.08223171 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5177.43798 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1159.887335 +OH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1396.99683 +OH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1892.869115 +OH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.47630017 +OH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,32.42842432 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,36.41009493 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.455423599 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.745917301 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.170793759 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.235893631 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,623.7390939 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,357.1978219 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4696.356127 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.331434453 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,138.5058663 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,22508.99705 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,22480.21265 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,27.10513735 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,123.4233798 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.95626713 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,869.162305 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1313.870966 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,324.1734803 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.016253763 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.8894146 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,18480.10612 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,88.39065363 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,15434.33215 +OH,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,5643.779464 +OH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1211.49898 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,742.3839785 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,3805.687965 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6662.890952 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,20057.91845 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,11.03 +OH,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4677.628969 +OH,Volatile Organic Compounds,2A1_Cement-production,,TON,10.026 +OH,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,33.191 +OH,Volatile Organic Compounds,2A6_Other-minerals,,TON,152.7250778 +OH,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2120.197322 +OH,Volatile Organic Compounds,2B_Chemicals-other,,TON,4966.783957 +OH,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,4246.33175 +OH,Volatile Organic Compounds,2C3_Aluminum-production,,TON,70.7387 +OH,Volatile Organic Compounds,2C7_Other-metal,,TON,394.86504 +OH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,48626.37705 +OH,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,161.686 +OH,Volatile Organic Compounds,2D3d_Coating-application,,TON,31104.47301 +OH,Volatile Organic Compounds,2D3e_Degreasing,,TON,9553.726698 +OH,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,118.505 +OH,Volatile Organic Compounds,2D3h_Printing,,TON,3887.380795 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,855.5369027 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0.148338386 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,633.8616679 +OH,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,395.733126 +OH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,3377.100059 +OH,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1409.196563 +OH,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,0.138408314 +OH,Volatile Organic Compounds,3Dc_Other-farm,,TON,92.254 +OH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,10315.51738 +OH,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,0.025881609 +OH,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,650.562825 +OH,Volatile Organic Compounds,5C_Incineration,,TON,0.4461047 +OH,Volatile Organic Compounds,5C_Incineration,biomass,TON,15.44213724 +OH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1127.082098 +OH,Volatile Organic Compounds,5C_Open-burning-residential,,TON,924.34151 +OH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,196.542172 +OH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,219.0954162 +OH,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,139.815 +OH,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.9 +OK,Ammonia,1A1a_Public-Electricity,hard_coal,TON,278.15 +OK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,531.58492 +OK,Ammonia,1A1b_Pet-refining,natural_gas,TON,39.0605 +OK,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.097 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.021417654 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.42441026 +OK,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,40.62867842 +OK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.430627286 +OK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,2.718551568 +OK,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.108101285 +OK,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.064679929 +OK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,313.5854202 +OK,Ammonia,1A2c_Chemicals,natural_gas,TON,30.348 +OK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,6.027346909 +OK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.165313034 +OK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.675850732 +OK,Ammonia,1A3bii_Road-LDV,light_oil,TON,1504.050326 +OK,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.32139463 +OK,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,253.047957 +OK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.650094316 +OK,Ammonia,1A3biii_Road-bus,light_oil,TON,1.112681062 +OK,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.119354653 +OK,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,57.19043582 +OK,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.953309989 +OK,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,57.4349101 +OK,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,12.24885096 +OK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.2569243 +OK,Ammonia,1A3c_Rail,diesel_oil,TON,8.432379756 +OK,Ammonia,1A3c_Rail,light_oil,TON,0.003559829 +OK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00776591 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.300000603 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.050400064 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.683576515 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.739394974 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.512567337 +OK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.360586025 +OK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.180210091 +OK,Ammonia,1A4bi_Residential-stationary,biomass,TON,57.29148703 +OK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.031500002 +OK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Ammonia,1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.101250006 +OK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,656.2801831 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.789037828 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.273612571 +OK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.015793651 +OK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.405595576 +OK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.470890138 +OK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.90724558 +OK,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.002 +OK,Ammonia,2A1_Cement-production,,TON,35.011 +OK,Ammonia,2A6_Other-minerals,Other_Fuel,TON,3.22 +OK,Ammonia,2B_Chemicals-other,,TON,5397.452 +OK,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.053 +OK,Ammonia,2H1_Pulp-and-paper,,TON,114.253 +OK,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,49.2668 +OK,Ammonia,3B1a_Cattle-dairy,,TON,4273.281176 +OK,Ammonia,3B1b_Cattle-non-dairy,,TON,31087.66677 +OK,Ammonia,3B2_Manure-sheep,,TON,266.159916 +OK,Ammonia,3B3_Manure-swine,,TON,20569.72282 +OK,Ammonia,3B4_Manure-other,,TON,2226.6816 +OK,Ammonia,3B4_Manure-poultry,,TON,12836.27307 +OK,Ammonia,3B4d_Manure-goats,,TON,873.22092 +OK,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,30553.19246 +OK,Ammonia,5D1_Wastewater-domestic,,TON,13.73862828 +OK,Ammonia,5D2_Wastewater-industrial,biomass,TON,7.538 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,248887.5534 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,183280.2991 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,26096.11367 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,741676.3226 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,13712.01925 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.880046454 +OK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,309370.7882 +OK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18516400.21 +OK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,272688.905 +OK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3550598.16 +OK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,169836.9214 +OK,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,33906.27497 +OK,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5108.59136 +OK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3273123.992 +OK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,53646.5325 +OK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3931637.045 +OK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,354810.5759 +OK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,122717.919 +OK,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5963.73179 +OK,Carbon Dioxide,1A3c_Rail,light_oil,TON,276.317782 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,90862.23716 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,125453.0763 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5534.753586 +OK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,44347.47094 +OK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,309271.8022 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1204302.18 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,20442.87546 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,29.2311881 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1933.427 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,91685.11985 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,57987.27039 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,201279.2555 +OK,Carbon Monoxide,11C_Other-natural,,TON,206529.11 +OK,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.009 +OK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,10.379 +OK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6836.557 +OK,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,5861.25 +OK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1491.533 +OK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,707.997 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1101.475726 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14669.94508 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,642.1081707 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,3487.867933 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,135.8494506 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,260.4244773 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,38.23086041 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.969829062 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,58222.29684 +OK,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,20.536 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3093.116279 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3320.524211 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.279704421 +OK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5598.159053 +OK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4908.334789 +OK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,388414.3761 +OK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2609.71345 +OK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,84922.2209 +OK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,471.3308253 +OK,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1819.168373 +OK,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,33.5617865 +OK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7663.116321 +OK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1810.325776 +OK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7314.88711 +OK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11289.9726 +OK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4883.82463 +OK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2724.914622 +OK,Carbon Monoxide,1A3c_Rail,light_oil,TON,74.29699655 +OK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.77632 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,156.5777723 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.040148145 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.54942732 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1604.908758 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,481.4965838 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,31190.84214 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,130.1454404 +OK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,181.734431 +OK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,85795.36957 +OK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,6945.848569 +OK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.157500033 +OK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Carbon Monoxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.506250098 +OK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1479.311854 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5472.317942 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5412.198904 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.21508978 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.696045 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,19456.67506 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,115.9411209 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,27394.90646 +OK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,13584.17495 +OK,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +OK,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,66.447 +OK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,63716.36458 +OK,Carbon Monoxide,2A1_Cement-production,,TON,1538.681 +OK,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,84.59 +OK,Carbon Monoxide,2A6_Other-minerals,,TON,1060.272 +OK,Carbon Monoxide,2B_Chemicals-other,,TON,1314.12314 +OK,Carbon Monoxide,2C_Iron-steel-alloy,,TON,599.344 +OK,Carbon Monoxide,2C3_Aluminum-production,,TON,0.05 +OK,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.49 +OK,Carbon Monoxide,2C7a_Copper-production,,TON,354.81 +OK,Carbon Monoxide,2H1_Pulp-and-paper,,TON,573.349 +OK,Carbon Monoxide,2H2_Food-and-beverage,,TON,417.9221715 +OK,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,12.544 +OK,Carbon Monoxide,3F_Ag-res-on-field,,TON,15520.07008 +OK,Carbon Monoxide,5A_Solid-waste-disposal,,TON,118.15516 +OK,Carbon Monoxide,5C_Incineration,,TON,25.98469345 +OK,Carbon Monoxide,5C_Incineration,biomass,TON,46.19690126 +OK,Carbon Monoxide,5C_Open-burning-dump,,TON,35.301 +OK,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.057 +OK,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,5389.073547 +OK,Carbon Monoxide,5C_Open-burning-residential,,TON,4850.447 +OK,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,432.451119 +OK,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,6.698 +OK,Methane,1A3bii_Road-LDV,diesel_oil,TON,12.09432331 +OK,Methane,1A3bii_Road-LDV,light_oil,TON,983.477956 +OK,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.35430221 +OK,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,250.736974 +OK,Methane,1A3biii_Road-bus,diesel_oil,TON,3.615924269 +OK,Methane,1A3biii_Road-bus,light_oil,TON,4.044863235 +OK,Methane,1A3biii_Road-bus,natural_gas,TON,33.7222277 +OK,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,287.7163692 +OK,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.70184661 +OK,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,64.6914355 +OK,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,22.72025553 +OK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.09909826 +OK,Nitrogen Oxides,11C_Other-natural,,TON,42428.337 +OK,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.038 +OK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,43.49 +OK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,61290.96 +OK,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,19756.45 +OK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2874.235 +OK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,550.153 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1881.465102 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1028.01633 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,102.1106575 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1278.920455 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,605.0480582 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2656.278695 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,420.4782863 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,58.37016569 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,73644.13149 +OK,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,23.758 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5588.220794 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,54.22463252 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.056862639 +OK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,488.581002 +OK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1142.923906 +OK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,48815.08961 +OK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1243.575466 +OK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10829.78215 +OK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1272.87524 +OK,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,154.9811338 +OK,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,21.4260364 +OK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,26429.00905 +OK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,239.6177084 +OK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,23583.66778 +OK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1131.302948 +OK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,241.235177 +OK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,18843.89059 +OK,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.059035213 +OK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,23.4973 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,57.21210608 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.282272559 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.616242734 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1929.919241 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,831.021336 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,527.0366494 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,34.57258754 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,403.0858787 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,948.1336446 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,117.0258083 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.566999817 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.82250067 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3677.451725 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10956.85864 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,103.8299545 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.717216233 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.92247 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,189.7597867 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,651.2058805 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1305.849379 +OK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,12353.40139 +OK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +OK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,26.927 +OK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,54365.42827 +OK,Nitrogen Oxides,2A1_Cement-production,,TON,1363.642 +OK,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,220.89 +OK,Nitrogen Oxides,2A6_Other-minerals,,TON,2083.635 +OK,Nitrogen Oxides,2B_Chemicals-other,,TON,3979.7826 +OK,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,40.018 +OK,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.059 +OK,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.14 +OK,Nitrogen Oxides,2C7a_Copper-production,,TON,7.9 +OK,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1132.634 +OK,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,8.214 +OK,Nitrogen Oxides,3F_Ag-res-on-field,,TON,661.1210884 +OK,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,29.7 +OK,Nitrogen Oxides,5C_Incineration,,TON,20.60597028 +OK,Nitrogen Oxides,5C_Incineration,biomass,TON,578.5056458 +OK,Nitrogen Oxides,5C_Open-burning-dump,,TON,12 +OK,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.026 +OK,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,159.4400435 +OK,Nitrogen Oxides,5C_Open-burning-residential,,TON,342.384373 +OK,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,19.2200396 +OK,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.319 +OK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.922349933 +OK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,945.538096 +OK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.912078535 +OK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,217.784811 +OK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.403862666 +OK,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.473553722 +OK,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.283171373 +OK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.941168139 +OK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.598893974 +OK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.0031418 +OK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.51966643 +OK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.68292287 +OK,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.003686 +OK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.431948581 +OK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4413.9896 +OK,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,414.33802 +OK,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0 +OK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1116.166564 +OK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,14.71397776 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2910.885233 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,39.79395392 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,395.4251364 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,158.6185931 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.553967718 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,844.6535977 +OK,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.25156 +OK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,477582.3367 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,131.366538 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.054890774 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.090717387 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.21087414 +OK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.034019989 +OK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM10 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.109350041 +OK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.395230721 +OK,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,252.1167918 +OK,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +OK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,968.3099256 +OK,PM10 Filterable,2A1_Cement-production,,TON,405.4342099 +OK,PM10 Filterable,2A2_Lime-production,,TON,102.854536 +OK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,28248.20234 +OK,PM10 Filterable,2A6_Other-minerals,,TON,6786.933321 +OK,PM10 Filterable,2B_Chemicals-other,,TON,315.955188 +OK,PM10 Filterable,2C_Iron-steel-alloy,,TON,75.37174154 +OK,PM10 Filterable,2C3_Aluminum-production,,TON,0.000869565 +OK,PM10 Filterable,2C5_Lead-production,,TON,2.85977 +OK,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,19.58085441 +OK,PM10 Filterable,2C7a_Copper-production,,TON,1.7196 +OK,PM10 Filterable,2D3d_Coating-application,,TON,16.378 +OK,PM10 Filterable,2D3h_Printing,,TON,3.402 +OK,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.022 +OK,PM10 Filterable,2H1_Pulp-and-paper,,TON,246.6825952 +OK,PM10 Filterable,2H2_Food-and-beverage,,TON,332.7935443 +OK,PM10 Filterable,2H3_Other-industrial-processes,,TON,439.9852886 +OK,PM10 Filterable,3Dc_Other-farm,,TON,118516.4675 +OK,PM10 Filterable,5A_Solid-waste-disposal,,TON,30.6518 +OK,PM10 Filterable,5C_Incineration,,TON,4.137087 +OK,PM10 Filterable,5C_Incineration,biomass,TON,8.8922749 +OK,PM10 Filterable,5C_Open-burning-dump,,TON,1132.744 +OK,PM10 Filterable,5C_Open-burning-industrial,,TON,0.0242275 +OK,PM10 Filterable,5C_Open-burning-land-clearing,,TON,542.0961344 +OK,PM10 Filterable,5C_Open-burning-residential,,TON,2168.43463 +OK,PM10 Filterable,5C_Open-burning-yard-waste,,TON,71.611846 +OK,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.12724616 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.004 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.621 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4772.16 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,866.407 +OK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1264.76 +OK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,38.617 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,123.0096399 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.00782641 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.268713565 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3009.146118 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,41.68969314 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,430.9723377 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,170.0228764 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.046085405 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1415.530936 +OK,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.662 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,479.310809 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,21.42001052 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +OK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,118.3667132 +OK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,477582.3367 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,80.05099297 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2738.637115 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,96.6796971 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,522.982227 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,96.17115422 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.565604887 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.651505149 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1296.159905 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.933914323 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1671.346087 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,38.08860984 +OK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.79598687 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,620.3720771 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038363906 +OK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.776591 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,135.6500806 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.094888781 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.17505968 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.13868493 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,79.72923245 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.74277304 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.694160992 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,30.72955356 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,303.8777908 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1012.969177 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.074969994 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.24069554 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,19.22032044 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,965.2003293 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.37477779 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003695254 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.6795496 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,194.8711295 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.03394772 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,134.0959953 +OK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,376.3469081 +OK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +OK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2046.71929 +OK,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,426.538 +OK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,121.871 +OK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,28248.20234 +OK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7064.973493 +OK,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,730.038 +OK,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,119.475 +OK,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.004 +OK,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,10.53 +OK,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,24.849 +OK,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.398 +OK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,16.378 +OK,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,3.402 +OK,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.022 +OK,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,301.125 +OK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1350.056146 +OK,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,502.399 +OK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,118516.4675 +OK,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2326.155801 +OK,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,31.68 +OK,PM10 Primary (Filt + Cond),5C_Incineration,,TON,4.417730777 +OK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.15005461 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,1132.744 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.025 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,542.0961344 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2168.43463 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,71.611846 +OK,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.141 +OK,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.003686 +OK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.217060631 +OK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2315.5166 +OK,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,414.18916 +OK,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0 +OK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,695.9864073 +OK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,14.71384992 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2499.487482 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,36.84263748 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,99.73312014 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,103.1445616 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.492530798 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,618.326103 +OK,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.22456 +OK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,50159.77277 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,113.0862606 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.048101785 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.075512612 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.574243394 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.026144995 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.084037478 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.067379967 +OK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,248.459917 +OK,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +OK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,968.1866174 +OK,PM2.5 Filterable,2A1_Cement-production,,TON,145.5200078 +OK,PM2.5 Filterable,2A2_Lime-production,,TON,40.315326 +OK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2824.820234 +OK,PM2.5 Filterable,2A6_Other-minerals,,TON,1294.010686 +OK,PM2.5 Filterable,2B_Chemicals-other,,TON,96.53131183 +OK,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,31.36057352 +OK,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.000869565 +OK,PM2.5 Filterable,2C5_Lead-production,,TON,0 +OK,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,14.37287096 +OK,PM2.5 Filterable,2C7a_Copper-production,,TON,1.68802294 +OK,PM2.5 Filterable,2D3d_Coating-application,,TON,9.89208919 +OK,PM2.5 Filterable,2D3h_Printing,,TON,3.12727 +OK,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.022 +OK,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,94.20709324 +OK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,80.59925398 +OK,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,378.2874303 +OK,PM2.5 Filterable,3Dc_Other-farm,,TON,23703.51088 +OK,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,19.92418 +OK,PM2.5 Filterable,5C_Incineration,,TON,3.329402 +OK,PM2.5 Filterable,5C_Incineration,biomass,TON,6.02823295 +OK,PM2.5 Filterable,5C_Open-burning-dump,,TON,9.627 +OK,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.0227133 +OK,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,417.901859 +OK,PM2.5 Filterable,5C_Open-burning-residential,,TON,1985.82966 +OK,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,55.2057949 +OK,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.12724616 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.004 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.40611196 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2673.687 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,866.25814 +OK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1019.467243 +OK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,38.61687215 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,119.3066159 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.63344133 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.268089883 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2598.156368 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,38.74305971 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,135.3322051 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,114.5981497 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.984046649 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1382.009792 +OK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.635 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,464.9315628 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.71939608 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +OK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,100.6521448 +OK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,50159.77277 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,52.90398569 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,866.594732 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,70.9432884 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,157.773427 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,74.58931368 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.644817846 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.225777761 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1043.894688 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.896660422 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1258.39467 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,13.62742172 +OK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.52595455 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,571.5013448 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.035365078 +OK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.753293 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,117.3710667 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.088122712 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.159910973 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.48494215 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,77.337388 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.05607258 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.694160992 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.80765363 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,279.5805959 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1011.07837 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.067094996 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.215383087 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,15.84127758 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,936.2438972 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.544983088 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003695254 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.5991655 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,179.2824204 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.64292399 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,123.3682756 +OK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,372.6900333 +OK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +OK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2046.595983 +OK,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,166.6238311 +OK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,59.3318 +OK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2824.820234 +OK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1572.050964 +OK,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,471.5095434 +OK,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,75.46394805 +OK,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.004 +OK,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,7.67023 +OK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,19.64101655 +OK,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.36642294 +OK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.89208919 +OK,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,3.12727 +OK,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.022 +OK,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,152.425498 +OK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1096.296209 +OK,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,432.741143 +OK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,23703.51088 +OK,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1373.144305 +OK,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,20.95238 +OK,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,3.600406009 +OK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,21.29565243 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,9.627 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.0234858 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,417.901859 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1985.82966 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,55.2057949 +OK,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.141 +OK,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.131 +OK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,9.72 +OK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,95553.38 +OK,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,128.111 +OK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,13318.656 +OK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,724.332 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.29311999 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.665145551 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.587257153 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,145.4182617 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.72490044 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2782.533343 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2702.982033 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.771593759 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,743.8065743 +OK,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.055 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,13.8393494 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.251745105 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.55706E-05 +OK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,67.53303251 +OK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.651952749 +OK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,365.9466125 +OK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.3483542 +OK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,70.1717201 +OK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.456527193 +OK,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.670102333 +OK,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.027047464 +OK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,28.11594904 +OK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.060237691 +OK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.63102337 +OK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.01224752 +OK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.42532086 +OK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,189.3264136 +OK,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005048309 +OK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.288746 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,6.49999187 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.192 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.70580021 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.26783512 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.721062141 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.301628515 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.122378325 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.839009753 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.636468762 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,15.30513402 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.34190014 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,4.31324976 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,22.18571324 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.65488069 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.372637734 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000642892 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.036502179 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.663503984 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.24381254 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.659559356 +OK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,52.96882997 +OK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +OK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,94.97347901 +OK,Sulfur Dioxide,2A1_Cement-production,,TON,3250.618 +OK,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,62.815 +OK,Sulfur Dioxide,2A6_Other-minerals,,TON,870.497 +OK,Sulfur Dioxide,2B_Chemicals-other,,TON,1875.850435 +OK,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,20.755 +OK,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.002 +OK,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,44.696 +OK,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.136 +OK,Sulfur Dioxide,3F_Ag-res-on-field,,TON,229.8158319 +OK,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,9.82 +OK,Sulfur Dioxide,5C_Incineration,,TON,1.754310058 +OK,Sulfur Dioxide,5C_Incineration,biomass,TON,9.631261892 +OK,Sulfur Dioxide,5C_Open-burning-dump,,TON,0.155 +OK,Sulfur Dioxide,5C_Open-burning-residential,,TON,57.064077 +OK,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.15290118 +OK,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,4.61 +OK,Volatile Organic Compounds,11C_Other-natural,,TON,1185030.84 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.002 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.581 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,605.135 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,444.715 +OK,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0.009281119 +OK,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,6703.789087 +OK,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,379.2729115 +OK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2145.30272 +OK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,289.253 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,149.8116089 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,481.1817226 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.567376433 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,109.6233542 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.96538634 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,11.1260376 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.158487722 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,7.642078297 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,13408.77205 +OK,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.294 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,568.7544561 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,246.727269 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000929703 +OK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,238.6183782 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,467.531692 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,35593.87617 +OK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,339.23508 +OK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6830.80224 +OK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,124.8480507 +OK,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,104.9831867 +OK,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,3.97873658 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2458.997191 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,58.858661 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1649.401626 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,523.4782331 +OK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,915.555257 +OK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,932.8279699 +OK,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.178157327 +OK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.537536 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.431374879 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.386993106 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.725652166 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,115.6463685 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,110.7160914 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1710.944432 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.406737111 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,41.80680173 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6644.676228 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1300.503805 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.022050011 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,heavy_oil,TON,0 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.070875002 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,203.3689317 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1010.207272 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,316.8312945 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01246238 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.8604629 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6492.047423 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.65276495 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10003.28662 +OK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,63792.89936 +OK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,4885.467425 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,209.2909705 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,2337.485524 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7466.566432 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,13481.38784 +OK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,176628.5106 +OK,Volatile Organic Compounds,2A1_Cement-production,,TON,246.706 +OK,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.13 +OK,Volatile Organic Compounds,2A6_Other-minerals,,TON,201.351 +OK,Volatile Organic Compounds,2B_Chemicals-other,,TON,885.97759 +OK,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,127.826 +OK,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.003 +OK,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,3.758 +OK,Volatile Organic Compounds,2C7a_Copper-production,,TON,83.91 +OK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,15811.95143 +OK,Volatile Organic Compounds,2D3d_Coating-application,,TON,9419.86675 +OK,Volatile Organic Compounds,2D3e_Degreasing,,TON,527.203 +OK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,30.1219984 +OK,Volatile Organic Compounds,2D3h_Printing,,TON,299.982 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2239.26063 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,245.7239636 +OK,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3260.736 +OK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,426.2216875 +OK,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1241.714 +OK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3882.454922 +OK,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1123.08756 +OK,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0.54 +OK,Volatile Organic Compounds,5C_Incineration,,TON,12.30759969 +OK,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.479481483 +OK,Volatile Organic Compounds,5C_Open-burning-dump,,TON,1.478 +OK,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,369.9007538 +OK,Volatile Organic Compounds,5C_Open-burning-residential,,TON,488.46854 +OK,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,80.655535 +OK,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,69.0996537 +OK,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.338 +OK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.29 +OR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,28.6348 +OR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,94.8704 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.490190102 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.105684017 +OR,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,64.1950225 +OR,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.889593789 +OR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.074150114 +OR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.050399999 +OR,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.08084995 +OR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,80.38857309 +OR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.17615944 +OR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.224311892 +OR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.36103251 +OR,Ammonia,1A3bii_Road-LDV,light_oil,TON,1299.857768 +OR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.28678968 +OR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,169.569917 +OR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.4532373 +OR,Ammonia,1A3biii_Road-bus,light_oil,TON,0.672776851 +OR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.054380488 +OR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,23.1992457 +OR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.487800628 +OR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.1994964 +OR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.687032867 +OR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.5846014 +OR,Ammonia,1A3c_Rail,diesel_oil,TON,4.705369678 +OR,Ammonia,1A3c_Rail,light_oil,TON,0.001545738 +OR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.577992923 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.000318325 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.451640985 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.537599894 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.11759996 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.279142443 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.889253257 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.819241764 +OR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.357501259 +OR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.248088904 +OR,Ammonia,1A4bi_Residential-stationary,biomass,TON,868.37838 +OR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,11.7424873 +OR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.2223894 +OR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,448.9464975 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.635387148 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.228825467 +OR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.015965769 +OR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.527864033 +OR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.432287462 +OR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.668752266 +OR,Ammonia,2B_Chemicals-other,,TON,0 +OR,Ammonia,2C_Iron-steel-alloy,Other_Fuel,TON,3.04 +OR,Ammonia,2H1_Pulp-and-paper,,TON,186.2715 +OR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,403.6119 +OR,Ammonia,3B1a_Cattle-dairy,,TON,5733.289503 +OR,Ammonia,3B1b_Cattle-non-dairy,,TON,7534.416633 +OR,Ammonia,3B2_Manure-sheep,,TON,759.99924 +OR,Ammonia,3B3_Manure-swine,,TON,131.2979791 +OR,Ammonia,3B4_Manure-other,,TON,1202.124 +OR,Ammonia,3B4_Manure-poultry,,TON,2325.737877 +OR,Ammonia,3B4d_Manure-goats,,TON,265.514832 +OR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,25673.90157 +OR,Ammonia,5B_Compost-biogas,Other_Fuel,TON,402.078928 +OR,Ammonia,5D1_Wastewater-domestic,,TON,14.29573743 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,183473.9124 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,192700.8828 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10587.04657 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1006093.506 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,18601.47033 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.173396555 +OR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,172839.8469 +OR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12887488.41 +OR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,151966.682 +OR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2037637.78 +OR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,165907.6897 +OR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,19988.21808 +OR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2266.40143 +OR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1417401.733 +OR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,13040.19599 +OR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1984508.458 +OR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,133130.557 +OR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60490.9779 +OR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2599.753587 +OR,Carbon Dioxide,1A3c_Rail,light_oil,TON,119.9280779 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,109277.7761 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,150896.251 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6705.405077 +OR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,43968.3813 +OR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,312946.9615 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,570368.6178 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,16509.46407 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,11.92796484 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1954.499 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,165867.9111 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,53233.60566 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,184767.5215 +OR,Carbon Monoxide,11C_Other-natural,,TON,187078.99 +OR,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,106.53 +OR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.00682 +OR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,693 +OR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1402.129 +OR,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,8.4902 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1306.150207 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9002.311454 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,546.0665458 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,11415.17733 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,155.1971665 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,179.0249926 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.315000267 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.006100048 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3217.54722 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4192.958589 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4382.492786 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.372939203 +OR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6090.100034 +OR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3783.00656 +OR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,337108.026 +OR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1850.45511 +OR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,68601.1755 +OR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,544.9562927 +OR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1198.216096 +OR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,16.2700477 +OR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3382.703275 +OR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,520.0087332 +OR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3947.17067 +OR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4566.85912 +OR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2458.20771 +OR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1529.055885 +OR,Carbon Monoxide,1A3c_Rail,light_oil,TON,31.22533167 +OR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,611.9589819 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1166.30029 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,248.7492396 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.375284802 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.708809627 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1149.229451 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,579.1114186 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,36374.55857 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,156.9833697 +OR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,179.5781535 +OR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,86198.77945 +OR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,100700.9393 +OR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,58.71233345 +OR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,6.111940475 +OR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1026.014465 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2419.67502 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4990.566319 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.311824807 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.894215 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,29342.81063 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,106.4358003 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,24690.33648 +OR,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,7.46 +OR,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,51.9549009 +OR,Carbon Monoxide,2A6_Other-minerals,,TON,858.624022 +OR,Carbon Monoxide,2B_Chemicals-other,,TON,80.9928 +OR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4403.58611 +OR,Carbon Monoxide,2C3_Aluminum-production,,TON,3.19 +OR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1 +OR,Carbon Monoxide,2D3d_Coating-application,,TON,10.217 +OR,Carbon Monoxide,2D3h_Printing,,TON,1 +OR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,10524.232 +OR,Carbon Monoxide,2H2_Food-and-beverage,,TON,637.6226156 +OR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,12.935 +OR,Carbon Monoxide,3Dc_Other-farm,Other_Fuel,TON,122.4036638 +OR,Carbon Monoxide,3F_Ag-res-on-field,,TON,8641.66176 +OR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,709.3359171 +OR,Carbon Monoxide,5C_Incineration,biomass,TON,18.34111465 +OR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,7999.75548 +OR,Carbon Monoxide,5C_Open-burning-residential,,TON,2048.02687 +OR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,25289.40888 +OR,Methane,1A3bii_Road-LDV,diesel_oil,TON,6.88155648 +OR,Methane,1A3bii_Road-LDV,light_oil,TON,874.337457 +OR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.94297749 +OR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,215.582402 +OR,Methane,1A3biii_Road-bus,diesel_oil,TON,5.150063372 +OR,Methane,1A3biii_Road-bus,light_oil,TON,3.167350826 +OR,Methane,1A3biii_Road-bus,natural_gas,TON,15.9315954 +OR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,100.9565147 +OR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.579159827 +OR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,35.3648807 +OR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,9.293827641 +OR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.51290673 +OR,Nitrogen Oxides,11C_Other-natural,,TON,12188.2976 +OR,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,134.54 +OR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,46 +OR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,4048 +OR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1023.495 +OR,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,10.1008 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1299.840942 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1192.334101 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,79.75892496 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5372.468626 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,716.2669045 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,393.8549818 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.465001162 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.088449435 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4173.405476 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,7578.293157 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,79.19419842 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075816742 +OR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1144.840251 +OR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,751.43843 +OR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,44330.0804 +OR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,805.664366 +OR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8573.8712 +OR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1333.539729 +OR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,99.6799938 +OR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,9.6390925 +OR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11620.40115 +OR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,64.72294131 +OR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12810.21196 +OR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,454.03613 +OR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,127.934905 +OR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10994.30958 +OR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.506251307 +OR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3010.560925 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,306.7352463 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1147.63924 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,37.29202144 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.862588112 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1810.288145 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,999.4629443 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,681.5855613 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,41.66262923 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,400.0905551 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1051.890109 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1741.847279 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,211.364343 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,22.0029639 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2338.02071 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4911.898631 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,76.26231217 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.292632626 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.1280919 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,321.6113767 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,597.8211325 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1294.541124 +OR,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.96 +OR,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,40.8208403 +OR,Nitrogen Oxides,2A6_Other-minerals,,TON,1491.706 +OR,Nitrogen Oxides,2B_Chemicals-other,,TON,387.28 +OR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,446.97122 +OR,Nitrogen Oxides,2C3_Aluminum-production,,TON,3.8 +OR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,19.647 +OR,Nitrogen Oxides,2D3d_Coating-application,,TON,29.219 +OR,Nitrogen Oxides,2D3h_Printing,,TON,1 +OR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2590.39678 +OR,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,1 +OR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,47.31 +OR,Nitrogen Oxides,3Dc_Other-farm,Other_Fuel,TON,441.1680669 +OR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,255.6704833 +OR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,267.89678 +OR,Nitrogen Oxides,5C_Incineration,biomass,TON,339.9375767 +OR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,236.678844 +OR,Nitrogen Oxides,5C_Open-burning-residential,,TON,144.566471 +OR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,65.20348506 +OR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.546390082 +OR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,938.886053 +OR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.578748141 +OR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,209.185922 +OR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.438540217 +OR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.96621698 +OR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.251243686 +OR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.608740774 +OR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.583006797 +OR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.31490182 +OR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.67416637 +OR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.88710247 +OR,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,13.0537 +OR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.33175655 +OR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,596.954 +OR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,84.38517975 +OR,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.16338496 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5433.318014 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.89751845 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,429.6598816 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.305441993 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.103060509 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,67.41840482 +OR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,138640.5255 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,514.0344258 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,100.4898975 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.6751887 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.192995504 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.496450044 +OR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,12.6818673 +OR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.320181235 +OR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.790592885 +OR,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.45 +OR,PM10 Filterable,2A1_Cement-production,,TON,74.2539 +OR,PM10 Filterable,2A2_Lime-production,,TON,2.245 +OR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,17166.81922 +OR,PM10 Filterable,2A6_Other-minerals,,TON,3304.504992 +OR,PM10 Filterable,2B_Chemicals-other,,TON,269.49 +OR,PM10 Filterable,2C_Iron-steel-alloy,,TON,433.935929 +OR,PM10 Filterable,2C3_Aluminum-production,,TON,0.1908696 +OR,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,18.6572309 +OR,PM10 Filterable,2D3d_Coating-application,,TON,27.08249 +OR,PM10 Filterable,2D3h_Printing,,TON,7.53 +OR,PM10 Filterable,2H1_Pulp-and-paper,,TON,2367.158471 +OR,PM10 Filterable,2H2_Food-and-beverage,,TON,90.30930089 +OR,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,100.871 +OR,PM10 Filterable,2I_Wood-processing,,TON,16.113012 +OR,PM10 Filterable,3Dc_Other-farm,,TON,27056.74273 +OR,PM10 Filterable,3F_Ag-res-on-field,,TON,869.279643 +OR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,64.805974 +OR,PM10 Filterable,5C_Incineration,biomass,TON,8.26807 +OR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,804.708769 +OR,PM10 Filterable,5C_Open-burning-residential,,TON,2980.92 +OR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,3672.87497 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,13.45 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.424835 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,656 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,153.558345 +OR,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.253092 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,105.2547784 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.30015768 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.327320227 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,5618.517828 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,112.9663898 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,466.8888383 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.360628749 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.236160035 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,98.15351825 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,649.8221036 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.07401357 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606184 +OR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,130.6127365 +OR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,138640.5255 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,50.81343956 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2169.91158 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,64.4826638 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,348.540973 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,97.8988932 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.810353506 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.31078522 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,666.2948755 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.251659865 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,985.399688 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,15.74991983 +OR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.93515964 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,352.4676928 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.016662693 +OR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,99.49961547 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,592.3539661 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,215.9107978 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.08384096 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.408394201 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.48892189 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,95.89159273 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,41.79758038 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.841344117 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,30.35124788 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,312.3346407 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,15046.41237 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,27.9470726 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.90928317 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.45553934 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,428.0360457 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,40.135771 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001507879 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.7081622 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,316.9601406 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.96528707 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,123.0956524 +OR,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.45 +OR,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.019074263 +OR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,77.184 +OR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,2.245 +OR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17166.81922 +OR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3318.22673 +OR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,713.384 +OR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,540.16104 +OR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.878 +OR,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,23.679035 +OR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,27.08249 +OR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,7.53 +OR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3591.62541 +OR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,378.9959766 +OR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,100.871 +OR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,16.113012 +OR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,27056.82595 +OR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,869.279643 +OR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,105.36577 +OR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,16.1688624 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,804.708769 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,915.58794 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3673.038194 +OR,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,11.0188 +OR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.20467255 +OR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,224.849 +OR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,84.27552175 +OR,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.16298196 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4558.898112 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,46.01987639 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,50.12701357 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.850267109 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.027457919 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,35.71367747 +OR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,16618.10767 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,444.9573114 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,101.1291058 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.764576376 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.150266858 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.079659642 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,9.74625038 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.014581955 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.634825939 +OR,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.224979 +OR,PM2.5 Filterable,2A1_Cement-production,,TON,24.6110245 +OR,PM2.5 Filterable,2A2_Lime-production,,TON,0.6817647 +OR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1716.681922 +OR,PM2.5 Filterable,2A6_Other-minerals,,TON,514.6167958 +OR,PM2.5 Filterable,2B_Chemicals-other,,TON,97.6707704 +OR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,338.3272607 +OR,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.1189116 +OR,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,5.56254736 +OR,PM2.5 Filterable,2D3d_Coating-application,,TON,22.6812735 +OR,PM2.5 Filterable,2D3h_Printing,,TON,6.248297 +OR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1538.604335 +OR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,5.754945195 +OR,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,32.090162 +OR,PM2.5 Filterable,2I_Wood-processing,,TON,4.839026565 +OR,PM2.5 Filterable,3Dc_Other-farm,,TON,5429.583699 +OR,PM2.5 Filterable,3F_Ag-res-on-field,,TON,869.279643 +OR,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,45.3900498 +OR,PM2.5 Filterable,5C_Incineration,biomass,TON,7.6563611 +OR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,620.349046 +OR,PM2.5 Filterable,5C_Open-burning-residential,,TON,2729.85 +OR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,3666.99497 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,11.4151 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.297751 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,283.895 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,153.448687 +OR,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.252689 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,102.0692316 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.18231287 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.325846894 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4744.097347 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,109.0517957 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,87.36418888 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.920770934 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.151051447 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,65.95728353 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,630.3275207 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.76567621 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000606184 +OR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,108.2529911 +OR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,16618.10767 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,35.21279213 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,894.30808 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,49.2402962 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,138.187622 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,75.33010344 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.919826553 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.103303291 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,513.8831112 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.416062973 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,720.85054 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.637479988 +OR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.36610791 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,327.7265323 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015359791 +OR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,96.51450011 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,523.5180424 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,215.8441708 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.628825698 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.367323508 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.12677759 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,93.01491993 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,38.56538379 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.841344117 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.44072484 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,287.3606554 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,15034.18766 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,25.0114671 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.603685925 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.299777 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,415.1949887 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,36.92497033 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001507879 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.6269151 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,291.6040151 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.60631957 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,113.2481337 +OR,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.224979 +OR,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.019074263 +OR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,27.5411445 +OR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.6817647 +OR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1716.681922 +OR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,528.3384834 +OR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,557.6544704 +OR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,444.5523638 +OR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.806042 +OR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,10.58434916 +OR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,22.6812735 +OR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,6.248297 +OR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2763.071159 +OR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,263.2069135 +OR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,32.090162 +OR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,4.839026565 +OR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5429.669523 +OR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,869.279643 +OR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,85.9498458 +OR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,15.5571536 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,620.349046 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,838.48617 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3667.164394 +OR,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,17 +OR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.0045 +OR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,13100 +OR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,51.653125 +OR,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.17484 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.826060906 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.049774137 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.256233795 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1238.945904 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.705898351 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,666.688985 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.95475113 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.476371848 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,54.87157518 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,18.77303706 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.341508215 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000114094 +OR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,139.3303438 +OR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.492439352 +OR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,254.86768 +OR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.3170528 +OR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.2969887 +OR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.423754026 +OR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.395293735 +OR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.011999434 +OR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.17748301 +OR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.257887937 +OR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.98380812 +OR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.632836037 +OR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.1962887 +OR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,105.7665611 +OR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002191018 +OR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,36.99521307 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,30.40505634 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.56600469 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,246.6770057 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.507349586 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.74046318 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.069883655 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.768432656 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.148263217 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.831700547 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.702624078 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,308.8586105 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,500.2293115 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,52.07372215 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,14.37176788 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.70170561 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.300590839 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000262336 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.036899883 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.01005637 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.141846674 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.359350899 +OR,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.45 +OR,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.891800723 +OR,Sulfur Dioxide,2A6_Other-minerals,,TON,339.755 +OR,Sulfur Dioxide,2B_Chemicals-other,,TON,38.14 +OR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,54.084 +OR,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.105 +OR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,1 +OR,Sulfur Dioxide,2D3d_Coating-application,,TON,1.010434 +OR,Sulfur Dioxide,2D3h_Printing,,TON,1 +OR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,988.70457 +OR,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,1 +OR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,15.338468 +OR,Sulfur Dioxide,3Dc_Other-farm,Other_Fuel,TON,1736.191344 +OR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,749.6258692 +OR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,56.870216 +OR,Sulfur Dioxide,5C_Incineration,biomass,TON,29.75294696 +OR,Sulfur Dioxide,5C_Open-burning-residential,,TON,24.0944177 +OR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.88191191 +OR,Volatile Organic Compounds,11C_Other-natural,,TON,913055.09 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,3.41 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.042038 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,59.6 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,161.74011 +OR,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,44.157008 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,126.1717757 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,371.2964445 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.619152154 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,416.1581742 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.380398395 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.790249926 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.017640004 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.104950006 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,234.1106174 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,770.709056 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,314.0199521 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001239604 +OR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,358.3563933 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,381.176809 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,33076.02142 +OR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,266.772829 +OR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6087.70627 +OR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,117.8896261 +OR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,57.18984796 +OR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.86522678 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,971.4473041 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,18.53504993 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,896.079917 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,203.5717207 +OR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,396.987374 +OR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,590.1285908 +OR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.179394124 +OR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,68.87105615 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,101.5120993 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.910796056 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.567673703 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.100147238 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,153.8803773 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,133.1595327 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1793.686305 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.489944593 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,41.34603879 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6390.192316 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,16783.05219 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,8.219731335 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.855672094 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,131.7412433 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,445.6407649 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,424.7462508 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005084767 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.9122173 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10399.13957 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.2218312 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,7852.269495 +OR,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,410.4465656 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,165.042221 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,465.4509044 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4334.649217 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3489.855124 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,100.77895 +OR,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,53.29775485 +OR,Volatile Organic Compounds,2A6_Other-minerals,,TON,3.069471558 +OR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,944.2860284 +OR,Volatile Organic Compounds,2B_Chemicals-other,,TON,159.52 +OR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,393.354 +OR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.21 +OR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,263.624 +OR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,16179.84491 +OR,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,1.16574541 +OR,Volatile Organic Compounds,2D3d_Coating-application,,TON,10602.48641 +OR,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,2540.046165 +OR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,5.62 +OR,Volatile Organic Compounds,2D3h_Printing,,TON,616.0238335 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,217.5455401 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,918.0973149 +OR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,5669.984338 +OR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,162.301079 +OR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,345.560117 +OR,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +OR,Volatile Organic Compounds,3Dc_Other-farm,Other_Fuel,TON,6.880743849 +OR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7150.6656 +OR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,593.155521 +OR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,382.5331178 +OR,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,758.747052 +OR,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.975021541 +OR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,549.094533 +OR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,206.248215 +OR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,3663.076407 +OR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,72.6996001 +OR,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,16.9 +OR,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.664 +OR,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.45932 +PA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,2.9712 +PA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,51.9081 +PA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,142.7412296 +PA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,5.659742 +PA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,386.9615 +PA,Ammonia,1A1b_Pet-refining,natural_gas,TON,35.1765 +PA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.8 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.731485672 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.463843065 +PA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.190801506 +PA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,99.27378341 +PA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,17.5258383 +PA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.5728097 +PA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,34.49747223 +PA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.823269628 +PA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.794006266 +PA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,268.516911 +PA,Ammonia,1A2c_Chemicals,natural_gas,TON,1.5338 +PA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1136 +PA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.8036 +PA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,17.7926799 +PA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.477156064 +PA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,10.30700477 +PA,Ammonia,1A3bii_Road-LDV,light_oil,TON,3361.147323 +PA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.28027951 +PA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,416.584881 +PA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.506331502 +PA,Ammonia,1A3biii_Road-bus,light_oil,TON,4.253561927 +PA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.5752364 +PA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,98.44751589 +PA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.338403931 +PA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,113.2425313 +PA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,30.91153009 +PA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.1065705 +PA,Ammonia,1A3c_Rail,diesel_oil,TON,9.011293669 +PA,Ammonia,1A3c_Rail,light_oil,TON,0.003438307 +PA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.455927244 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.178365928 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,44.87849855 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.035016185 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.861370554 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.280850158 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.37519863 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.488373764 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.09057419 +PA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.07141464 +PA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,13.57894094 +PA,Ammonia,1A4bi_Residential-stationary,biomass,TON,1217.763117 +PA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,286.5354275 +PA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,20.12117919 +PA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,13.87417909 +PA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2282.571419 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.390673593 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.181552859 +PA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.055788706 +PA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,6.892356937 +PA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.716155571 +PA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.421394204 +PA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.065 +PA,Ammonia,2A1_Cement-production,,TON,23.6737 +PA,Ammonia,2A2_Lime-production,Other_Fuel,TON,26.7873 +PA,Ammonia,2A6_Other-minerals,,TON,26.8966 +PA,Ammonia,2B_Chemicals-other,,TON,199.0473 +PA,Ammonia,2C_Iron-steel-alloy,,TON,123.7434 +PA,Ammonia,2C3_Aluminum-production,,TON,0.0319 +PA,Ammonia,2C6_Zinc-production,,TON,24.2 +PA,Ammonia,2C7_Other-metal,,TON,74.7781 +PA,Ammonia,2D3d_Coating-application,,TON,12.3423 +PA,Ammonia,2D3e_Degreasing,,TON,0.291 +PA,Ammonia,2D3h_Printing,,TON,8.1546 +PA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,1.5973 +PA,Ammonia,2H1_Pulp-and-paper,,TON,154.164 +PA,Ammonia,2H2_Food-and-beverage,,TON,16.2841 +PA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,56.224055 +PA,Ammonia,3B1a_Cattle-dairy,,TON,27269.88524 +PA,Ammonia,3B1b_Cattle-non-dairy,,TON,2390.806805 +PA,Ammonia,3B2_Manure-sheep,,TON,338.309664 +PA,Ammonia,3B3_Manure-swine,,TON,7466.561018 +PA,Ammonia,3B4_Manure-other,,TON,1563.71556 +PA,Ammonia,3B4_Manure-poultry,,TON,21709.55703 +PA,Ammonia,3B4d_Manure-goats,,TON,412.73694 +PA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,9359.319525 +PA,Ammonia,5A_Solid-waste-disposal,,TON,79.37 +PA,Ammonia,5C_Incineration,,TON,1.61 +PA,Ammonia,5C_Incineration,biomass,TON,0.3046 +PA,Ammonia,5D1_Wastewater-domestic,,TON,194.8047076 +PA,Ammonia,5D2_Wastewater-industrial,biomass,TON,30.8464 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,705670.4314 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,758101.8437 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,44025.6799 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2189225.514 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,39574.39856 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,10.34680538 +PA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,397625.52 +PA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,35214989.1 +PA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,343217.148 +PA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4676557.64 +PA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,421181.5666 +PA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,116875.0875 +PA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,24141.2311 +PA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6226221.463 +PA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,82741.68376 +PA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6841924.68 +PA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,810334.7929 +PA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,211855.988 +PA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5752.011045 +PA,Carbon Dioxide,1A3c_Rail,light_oil,TON,266.8706413 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,305789.4684 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,422227.471 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18733.01986 +PA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,131771.1435 +PA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1000224.536 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,663221.4434 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13384.40383 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,15.51296873 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6829.5337 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,456471.6549 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,88190.26343 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,306109.4084 +PA,Carbon Monoxide,11C_Other-natural,,TON,64285.361 +PA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,1769.9193 +PA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,298.9092 +PA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,97.8071 +PA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,16916.82706 +PA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,22.7187 +PA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2883.4556 +PA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2132.8192 +PA,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0029 +PA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,20.7099 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4250.493264 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35950.96959 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2153.488505 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2018.979413 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9132.995214 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,2453.94617 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2292.984334 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2193.867498 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,88.2585198 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,26.32863594 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,14013.22312 +PA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,15.3112 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.185 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,26.365 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,10.2835 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,9371.361726 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,9074.468991 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.745878737 +PA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10818.70986 +PA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5759.047697 +PA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,702890.637 +PA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4227.91494 +PA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,151395.4766 +PA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1680.691321 +PA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5947.489324 +PA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,197.1513295 +PA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11662.65111 +PA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3145.042194 +PA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12747.67838 +PA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,28481.01969 +PA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10529.76584 +PA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2916.96489 +PA,Carbon Monoxide,1A3c_Rail,light_oil,TON,68.02642894 +PA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1030.79389 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,798.6425635 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2020.193173 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,446.7012868 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,11.46313122 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,19.07622905 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6384.710916 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1620.434578 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,98905.98757 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,439.1110545 +PA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,538.2096846 +PA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,269216.4521 +PA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,164538.2721 +PA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1432.677366 +PA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2766.661852 +PA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,69.37090175 +PA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,5493.916639 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2960.288242 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3577.243905 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.706406115 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,66.036733 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,78756.18069 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,176.3287911 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,39935.41644 +PA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.7 +PA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,1.677140965 +PA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,79.81775904 +PA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,30618.22337 +PA,Carbon Monoxide,2A1_Cement-production,,TON,1551.2406 +PA,Carbon Monoxide,2A2_Lime-production,,TON,1648.6316 +PA,Carbon Monoxide,2A6_Other-minerals,,TON,2069.8672 +PA,Carbon Monoxide,2B_Chemicals-other,,TON,778.9713 +PA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,8602.0658 +PA,Carbon Monoxide,2C3_Aluminum-production,,TON,11.5455 +PA,Carbon Monoxide,2C5_Lead-production,,TON,18.645 +PA,Carbon Monoxide,2C6_Zinc-production,,TON,24019.8333 +PA,Carbon Monoxide,2C7_Other-metal,,TON,388.8597 +PA,Carbon Monoxide,2C7a_Copper-production,,TON,0.0088 +PA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,4.29 +PA,Carbon Monoxide,2D3d_Coating-application,,TON,30.4968 +PA,Carbon Monoxide,2D3h_Printing,,TON,11.6125 +PA,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,11.0108 +PA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,339.5571 +PA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1453.664328 +PA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3091.5905 +PA,Carbon Monoxide,3Dc_Other-farm,,TON,0.8 +PA,Carbon Monoxide,3F_Ag-res-on-field,,TON,3050.64764 +PA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1002.912235 +PA,Carbon Monoxide,5C_Incineration,,TON,79.36726831 +PA,Carbon Monoxide,5C_Incineration,biomass,TON,682.6758238 +PA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,38382.75942 +PA,Carbon Monoxide,5C_Open-burning-residential,,TON,9845.3628 +PA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1270.208148 +PA,Methane,1A3bii_Road-LDV,diesel_oil,TON,17.24240378 +PA,Methane,1A3bii_Road-LDV,light_oil,TON,1995.466801 +PA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.77401394 +PA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,502.663624 +PA,Methane,1A3biii_Road-bus,diesel_oil,TON,13.10782952 +PA,Methane,1A3biii_Road-bus,light_oil,TON,13.15832551 +PA,Methane,1A3biii_Road-bus,natural_gas,TON,163.826798 +PA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,330.9767143 +PA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.700628888 +PA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,145.2438343 +PA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,63.77824297 +PA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.8797856 +PA,Nitrogen Oxides,11C_Other-natural,,TON,11107.4847 +PA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,2041.745 +PA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,188.2883 +PA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,465.9533 +PA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,139972.1501 +PA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,222.2272 +PA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3281.5627 +PA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3259.928 +PA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.0116 +PA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,29.5099 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4977.599407 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4664.804342 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,316.1803352 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,837.8177789 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3728.736945 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,20.93375275 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,700.6921831 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5306.656316 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,723.5665595 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,24.10256414 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,16514.7412 +PA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,58.7544 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,14.8959 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,18.5243 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,16638.41484 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,171.470116 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.151633545 +PA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2956.298995 +PA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1470.795896 +PA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,91568.7386 +PA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1743.12831 +PA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19569.0818 +PA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3477.942943 +PA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,576.524977 +PA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,110.9404375 +PA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,42616.76638 +PA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,423.6294818 +PA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,39036.5725 +PA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,3002.386274 +PA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,476.548423 +PA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19836.08971 +PA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.138136968 +PA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7211.028905 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,298.1068678 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1089.832101 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,660.1552665 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,125.913496 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,59.71910794 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8393.155861 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2796.749753 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1946.059996 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,116.5590876 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1198.97459 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3431.467715 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2323.108186 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,5157.63838 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,42.08748389 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,249.735287 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,12380.70206 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5948.026668 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,71.57777522 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.380673397 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,66.820008 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,897.7096815 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,990.3926686 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2160.14554 +PA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.85 +PA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0.70393016 +PA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,26.63896984 +PA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,27123.16883 +PA,Nitrogen Oxides,2A1_Cement-production,,TON,4633.1617 +PA,Nitrogen Oxides,2A2_Lime-production,,TON,4181.0757 +PA,Nitrogen Oxides,2A6_Other-minerals,,TON,10776.3158 +PA,Nitrogen Oxides,2B_Chemicals-other,,TON,273.9443 +PA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,4501.9895 +PA,Nitrogen Oxides,2C3_Aluminum-production,,TON,37.1869 +PA,Nitrogen Oxides,2C5_Lead-production,,TON,96.315 +PA,Nitrogen Oxides,2C6_Zinc-production,,TON,235.58 +PA,Nitrogen Oxides,2C7_Other-metal,,TON,142.7101 +PA,Nitrogen Oxides,2C7a_Copper-production,,TON,0.0497 +PA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.36 +PA,Nitrogen Oxides,2D3d_Coating-application,,TON,37.3075 +PA,Nitrogen Oxides,2D3h_Printing,,TON,21.1806 +PA,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,8.8846 +PA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,841.7557 +PA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,83.4733 +PA,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,138.6275 +PA,Nitrogen Oxides,3Dc_Other-farm,,TON,2.6 +PA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,119.2299506 +PA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,390.6391 +PA,Nitrogen Oxides,5C_Incineration,,TON,1323.83386 +PA,Nitrogen Oxides,5C_Incineration,biomass,TON,2929.969342 +PA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1135.584838 +PA,Nitrogen Oxides,5C_Open-burning-residential,,TON,694.966899 +PA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,56.4537059 +PA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.11742657 +PA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2218.821971 +PA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.240061097 +PA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,516.072489 +PA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.139366773 +PA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.553558367 +PA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,3.84622036 +PA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.233745178 +PA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.698009534 +PA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.21410342 +PA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,49.94158836 +PA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.36033192 +PA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,395.4591 +PA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,28.3668 +PA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,36.54474956 +PA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,9582.159107 +PA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,58.9238 +PA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,683.4201 +PA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,802.7125 +PA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0006 +PA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.8517 +PA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.7709 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,92.19085466 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7170.483358 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,3.363825898 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,62.63774198 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1371.974636 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,208.7401137 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.193657625 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1164.896261 +PA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,4.037 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.015 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.015 +PA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,78092.3061 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,639.7354578 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.36082027 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,205.1128805 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,33.48249823 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.331460831 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,194.6180824 +PA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,309.4583295 +PA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,93.18923956 +PA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,14.98411511 +PA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,25.00863269 +PA,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.25 +PA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.061893764 +PA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.546106236 +PA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,236.5832467 +PA,PM10 Filterable,2A1_Cement-production,,TON,824.6012 +PA,PM10 Filterable,2A2_Lime-production,,TON,196.3939 +PA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,34553.35783 +PA,PM10 Filterable,2A6_Other-minerals,,TON,9130.78877 +PA,PM10 Filterable,2B_Chemicals-other,,TON,203.869 +PA,PM10 Filterable,2C_Iron-steel-alloy,,TON,1959.4709 +PA,PM10 Filterable,2C3_Aluminum-production,,TON,71.1571 +PA,PM10 Filterable,2C5_Lead-production,,TON,75.6815 +PA,PM10 Filterable,2C6_Zinc-production,,TON,298.1983 +PA,PM10 Filterable,2C7_Other-metal,,TON,385.0405 +PA,PM10 Filterable,2C7a_Copper-production,,TON,41.7362 +PA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.0164 +PA,PM10 Filterable,2D3d_Coating-application,,TON,107.0234 +PA,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.0008 +PA,PM10 Filterable,2D3h_Printing,,TON,18.1395 +PA,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,53.2959 +PA,PM10 Filterable,2H1_Pulp-and-paper,,TON,427.7816 +PA,PM10 Filterable,2H2_Food-and-beverage,,TON,538.7902022 +PA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1056.4117 +PA,PM10 Filterable,2I_Wood-processing,,TON,46.1835 +PA,PM10 Filterable,3Dc_Other-farm,,TON,54820.31822 +PA,PM10 Filterable,5A_Solid-waste-disposal,,TON,220.4434 +PA,PM10 Filterable,5C_Incineration,,TON,4.4952 +PA,PM10 Filterable,5C_Incineration,biomass,TON,106.0067 +PA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3860.98704 +PA,PM10 Filterable,5C_Open-burning-residential,,TON,4401.45995 +PA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,210.340466 +PA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0891 +PA,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.0094 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,409.2143 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,30.055417 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,43.79391666 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,14310.10407 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,68.97797205 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1387.726088 +PA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1473.172961 +PA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.000929293 +PA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,4.81442 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,404.1344954 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,79.28483237 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.471000166 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,96.08249272 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7412.982793 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,3.363752711 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,111.0556266 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1512.9311 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,228.5633259 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.626613134 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2730.556525 +PA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,9.945737 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0179851 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.039 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1444.752354 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,61.82574754 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001212367 +PA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,239.7575073 +PA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,78092.3061 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,97.07602955 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4718.0718 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,132.8450507 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,728.346309 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,232.8209427 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,21.20430591 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,3.14598297 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2115.04001 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,18.47070857 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2697.324574 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,99.47529874 +PA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.7925438 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,683.6393722 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.037046878 +PA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,438.2277965 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,660.7818475 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,198.119926 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,219.0657875 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,36.81330769 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,7.046116893 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,467.305353 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,268.3231846 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,116.948397 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.350198986 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,90.96866846 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,974.7249902 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,23643.93837 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,681.9543855 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,103.8987517 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,33.020556 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,65.02247795 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,522.5241024 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.64198835 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00196105 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.4660006 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,801.7440332 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.82254824 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,203.9357459 +PA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.25 +PA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.061893764 +PA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.546106236 +PA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,573.740896 +PA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,854.2621888 +PA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,233.9087896 +PA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,34553.35783 +PA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9559.687265 +PA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,213.5883068 +PA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3378.76723 +PA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,148.02138 +PA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,192.981528 +PA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1103.11618 +PA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,408.2898991 +PA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,124.09052 +PA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.161753602 +PA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,107.0234 +PA,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.0008 +PA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,18.1395 +PA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,53.2959 +PA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,547.4093735 +PA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3975.927894 +PA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1056.609276 +PA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,46.1835 +PA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,54820.31822 +PA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,553.153758 +PA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,302.225435 +PA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,5.013207611 +PA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,255.919733 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3860.98704 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4401.45995 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,210.340466 +PA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.098108 +PA,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.0094 +PA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,129.631 +PA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,21.3846 +PA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,19.49704989 +PA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,5098.744627 +PA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,54.5683228 +PA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,578.3511666 +PA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,729.1322796 +PA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0006 +PA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.8517 +PA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.2116 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,26.57480973 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6161.21156 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.340510093 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,39.33399069 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,255.0692736 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,136.6925992 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.450274522 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,943.0847027 +PA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.792625 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.015 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.015 +PA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11396.98221 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,548.1604462 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,69.00415264 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,106.3720231 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.51678501 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.651378027 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,177.9403087 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,237.82441 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,44.71731019 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,11.51556479 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.75476086 +PA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0942 +PA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.3053365 +PA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,235.7857917 +PA,PM2.5 Filterable,2A1_Cement-production,,TON,565.9053723 +PA,PM2.5 Filterable,2A2_Lime-production,,TON,86.84108203 +PA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3470.759873 +PA,PM2.5 Filterable,2A6_Other-minerals,,TON,2920.104261 +PA,PM2.5 Filterable,2B_Chemicals-other,,TON,160.9651142 +PA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1347.434447 +PA,PM2.5 Filterable,2C3_Aluminum-production,,TON,27.71247902 +PA,PM2.5 Filterable,2C5_Lead-production,,TON,70.7831801 +PA,PM2.5 Filterable,2C6_Zinc-production,,TON,43.1089558 +PA,PM2.5 Filterable,2C7_Other-metal,,TON,261.0430453 +PA,PM2.5 Filterable,2C7a_Copper-production,,TON,13.4185629 +PA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.892145 +PA,PM2.5 Filterable,2D3d_Coating-application,,TON,73.63156541 +PA,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.0008 +PA,PM2.5 Filterable,2D3h_Printing,,TON,15.81455384 +PA,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,17.74121441 +PA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,292.2381999 +PA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,241.6096915 +PA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,754.3574665 +PA,PM2.5 Filterable,2I_Wood-processing,,TON,21.40100999 +PA,PM2.5 Filterable,3Dc_Other-farm,,TON,10983.22089 +PA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,114.1753291 +PA,PM2.5 Filterable,5C_Incineration,,TON,3.1252 +PA,PM2.5 Filterable,5C_Incineration,biomass,TON,72.77226806 +PA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2976.435043 +PA,PM2.5 Filterable,5C_Open-burning-residential,,TON,4030.80753 +PA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,162.1521837 +PA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.030017 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,143.386152 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,23.07322 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,26.74621639 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,9945.484279 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,64.62249485 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1282.657177 +PA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1399.64284 +PA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.000929293 +PA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,4.81442 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,392.0621947 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,78.8109771 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.467346443 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,30.46668194 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6403.299036 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0.340474794 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,87.74896449 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,396.0682717 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,156.5083352 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.841450712 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2509.062032 +PA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,9.701357 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0179851 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.039 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1401.410051 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,56.91713961 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001212367 +PA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,204.1488959 +PA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11396.98221 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,68.52238596 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1975.608612 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,104.3004561 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,340.851034 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,189.4829408 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,13.1435614 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.336240329 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1678.792526 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,13.73658825 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2031.724919 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,53.12413549 +PA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.57406436 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,631.962955 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.034150935 +PA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,409.2726721 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,568.9585872 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,185.8059708 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,120.4371641 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.89798594 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,6.363764885 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,450.6780866 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,260.2734091 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,107.9046929 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.350198986 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,88.23959557 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,896.7852116 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,23634.34736 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,610.3204725 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,55.42685195 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,29.55198645 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,53.7685929 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,506.8483476 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,15.31073895 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00196105 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.1820281 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,737.6071679 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.22787017 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,187.6207992 +PA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0942 +PA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.069481007 +PA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.433055493 +PA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,572.939041 +PA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,595.5658434 +PA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,124.3759541 +PA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3470.759873 +PA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3380.67986 +PA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,171.7381251 +PA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2766.740652 +PA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,104.576777 +PA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,188.103209 +PA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,848.0267758 +PA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,284.5520047 +PA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,95.7737423 +PA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.037497602 +PA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,98.63156541 +PA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.0008 +PA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,15.81455384 +PA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,17.74121441 +PA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,420.3826829 +PA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3678.747581 +PA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,754.5550432 +PA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,21.40100999 +PA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10983.22089 +PA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,314.366648 +PA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,196.0284416 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,3.632749793 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,222.6957231 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2976.435043 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4030.80753 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,162.1521837 +PA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.039025 +PA,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.0094 +PA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,6889.042 +PA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,24.1983 +PA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7141.6892 +PA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,313614.8056 +PA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,669.3094 +PA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,294.4927 +PA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,3453.9758 +PA,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0008 +PA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.1041 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.54001344 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.49784626 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.030200822 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1193.487241 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,481.9109611 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1.561163188 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,844.7814278 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,19167.802 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4215.555516 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,44.30210851 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2733.783781 +PA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,9.2127 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,8.9292 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.7122 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,40.86647105 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.72656034 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000228188 +PA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,371.2877411 +PA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.426998056 +PA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,699.843739 +PA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.97300778 +PA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,92.9392498 +PA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.617508141 +PA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.321995454 +PA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.127815487 +PA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,53.11014868 +PA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.643417519 +PA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,58.2049718 +PA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,16.09949766 +PA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.21017523 +PA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,202.4268687 +PA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004875689 +PA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3210.06811 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,32.11846911 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1656.022209 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2659.542318 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,776.6665826 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,119.259341 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.94208047 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.792102621 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.74642527 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.414204821 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.492578138 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,18.22617785 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,473.9454775 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,12206.40247 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,427.8782491 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,591.0402235 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,75.02597073 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.46762723 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.243868512 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000341182 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.12893938 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,8.286575726 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.891657606 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.565530345 +PA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.1678 +PA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1839.859858 +PA,Sulfur Dioxide,2A1_Cement-production,,TON,2788.9548 +PA,Sulfur Dioxide,2A2_Lime-production,,TON,901.2031 +PA,Sulfur Dioxide,2A6_Other-minerals,,TON,3444.9459 +PA,Sulfur Dioxide,2B_Chemicals-other,,TON,155.2595 +PA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,2000.4189 +PA,Sulfur Dioxide,2C3_Aluminum-production,,TON,4.447 +PA,Sulfur Dioxide,2C5_Lead-production,,TON,102.954 +PA,Sulfur Dioxide,2C6_Zinc-production,,TON,738.16 +PA,Sulfur Dioxide,2C7_Other-metal,,TON,131.7512 +PA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.1148 +PA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,6.25 +PA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.7545 +PA,Sulfur Dioxide,2D3e_Degreasing,,TON,0.0002 +PA,Sulfur Dioxide,2D3h_Printing,,TON,0.1475 +PA,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,2.7821 +PA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,127.4518 +PA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.2321 +PA,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,465.126 +PA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.475 +PA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,53.75053408 +PA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,213.1858 +PA,Sulfur Dioxide,5C_Incineration,,TON,135.6232086 +PA,Sulfur Dioxide,5C_Incineration,biomass,TON,399.7488219 +PA,Sulfur Dioxide,5C_Open-burning-residential,,TON,115.827796 +PA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,12.19803403 +PA,Volatile Organic Compounds,11C_Other-natural,,TON,445285.88 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,99.4157 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,22.8307 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,21.7569 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,273.0911492 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,33.9202 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,300.1803 +PA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,360.5321369 +PA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,552.9595267 +PA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1893.106236 +PA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.0001 +PA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.3374 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,462.4875271 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1469.568125 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.942060557 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,25.65587645 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,313.8697625 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,74.68518634 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,75.07341722 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,82.79794259 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.94655369 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.432101329 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2049.33557 +PA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,31.7942 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1203 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,7.3418 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,13.9514 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1745.048838 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,664.6528888 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002479209 +PA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,653.6948094 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,637.199674 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,69535.5205 +PA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,611.330873 +PA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14413.39298 +PA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,296.1012284 +PA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,276.3121874 +PA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,20.1121031 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2815.595573 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,110.9019595 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2941.614423 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1307.886289 +PA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1869.603166 +PA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1073.695858 +PA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.592351063 +PA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,203.9238861 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,30.8209195 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,40.74973398 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,22.80934609 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.597422434 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.79086269 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,564.9989153 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,372.6043857 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,5001.070227 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.370877047 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,123.9180519 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,20692.50712 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,31534.29588 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,200.5747861 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,100.6059076 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,9.711920595 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,687.73744 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,546.1586924 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,240.2069248 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006614617 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.1685272 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,26707.12853 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,45.09726697 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,13226.8766 +PA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +PA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,658.3041262 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,650.0547054 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,2283.974435 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,12952.06066 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9439.493956 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,50.7431 +PA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14215.23265 +PA,Volatile Organic Compounds,2A1_Cement-production,,TON,27.086 +PA,Volatile Organic Compounds,2A2_Lime-production,,TON,18.665 +PA,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,7.5 +PA,Volatile Organic Compounds,2A6_Other-minerals,,TON,342.0031796 +PA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1114.30387 +PA,Volatile Organic Compounds,2B_Chemicals-other,,TON,1397.0067 +PA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1407.1926 +PA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,286.31 +PA,Volatile Organic Compounds,2C5_Lead-production,,TON,31.86 +PA,Volatile Organic Compounds,2C6_Zinc-production,,TON,93.89 +PA,Volatile Organic Compounds,2C7_Other-metal,,TON,397.0236 +PA,Volatile Organic Compounds,2C7a_Copper-production,,TON,7.8643 +PA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,50762.4091 +PA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,22.448 +PA,Volatile Organic Compounds,2D3d_Coating-application,,TON,32453.43037 +PA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4056.5795 +PA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,6.386 +PA,Volatile Organic Compounds,2D3h_Printing,,TON,4781.4857 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,8287.377991 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0.491544061 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2248.675682 +PA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1064.2138 +PA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,853.689386 +PA,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,1767.5252 +PA,Volatile Organic Compounds,2I_Wood-processing,,TON,0.5 +PA,Volatile Organic Compounds,3Dc_Other-farm,,TON,1.175 +PA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3641.654442 +PA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,204.7978796 +PA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,203.8873 +PA,Volatile Organic Compounds,5C_Incineration,,TON,5.952977302 +PA,Volatile Organic Compounds,5C_Incineration,biomass,TON,22.63648698 +PA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2634.555953 +PA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,991.48584 +PA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,236.903971 +PA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,251.4147158 +PA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,7.3821 +PA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,3.4191 +PR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,117.017 +PR,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.0255 +PR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,67.237 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.022350901 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.050084694 +PR,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.125 +PR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.046 +PR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.566605449 +PR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.125405118 +PR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.889905252 +PR,Ammonia,1A3bii_Road-LDV,light_oil,TON,603.4953469 +PR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.633502214 +PR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,85.97059163 +PR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.882689066 +PR,Ammonia,1A3biii_Road-bus,light_oil,TON,0.203134076 +PR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.020319188 +PR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,19.58817834 +PR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.108961957 +PR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9.04470182 +PR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.615998854 +PR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.75332349 +PR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.1912182 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.125 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.0855 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.429607603 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.878815144 +PR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.438115848 +PR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.640971805 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.242341237 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.006203092 +PR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017466784 +PR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.698147268 +PR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.241760745 +PR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.49284043 +PR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.005545 +PR,Ammonia,5D1_Wastewater-domestic,,TON,14.91424053 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,125869.951 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,92487.52084 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5048.49305 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,561930.4384 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,10400.14068 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.58761508 +PR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,115720.0417 +PR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,7738386.639 +PR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,98345.1081 +PR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1278934.764 +PR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,57887.60992 +PR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,6040.986197 +PR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,797.029907 +PR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1427284.848 +PR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3060.513571 +PR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,610395.0682 +PR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,76397.50016 +PR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,33233.98733 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,52793.26505 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,72890.38846 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3212.266412 +PR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,53882.64837 +PR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,343438.3782 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29813.68069 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,466.5021134 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.696561669 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2138.25136 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,45407.36045 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29771.36328 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,103354.3941 +PR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1324.916391 +PR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,778.6 +PR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,2207.43671 +PR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1537.070275 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,834.1797997 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4468.206895 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,262.9225283 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.30533986 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.31240135 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,152.7321555 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.001304817 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,352.7215782 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2342.247934 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3089.890901 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.186535512 +PR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2699.170745 +PR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1195.331966 +PR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,138491.9029 +PR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,960.297776 +PR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28630.6429 +PR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,182.5600127 +PR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,381.0730607 +PR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,5.10416769 +PR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2825.135566 +PR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,132.8289408 +PR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1196.746556 +PR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2267.208421 +PR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1326.816017 +PR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,0.04833195 +PR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,70.5641 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.94073053 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.015075818 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.507254117 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00028407 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.498170757 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,279.7504693 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,22371.89021 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,75.71418842 +PR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,220.8048425 +PR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,115485.9805 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,136.3471993 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,146.5540928 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.076420835 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.6729917 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,11743.35535 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,59.52629686 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,17128.03909 +PR,Carbon Monoxide,2A1_Cement-production,,TON,198.99828 +PR,Carbon Monoxide,2A2_Lime-production,,TON,0 +PR,Carbon Monoxide,2A6_Other-minerals,,TON,188.4968 +PR,Carbon Monoxide,2C5_Lead-production,,TON,1.26 +PR,Carbon Monoxide,2D3d_Coating-application,,TON,0 +PR,Carbon Monoxide,2D3e_Degreasing,,TON,0 +PR,Carbon Monoxide,2H2_Food-and-beverage,,TON,375.902601 +PR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.54756 +PR,Carbon Monoxide,3Dc_Other-farm,,TON,0 +PR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,107.2367 +PR,Carbon Monoxide,5C_Incineration,biomass,TON,9.163600613 +PR,Carbon Monoxide,5C_Open-burning-residential,,TON,307.04743 +PR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,41.647268 +PR,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.040805726 +PR,Methane,1A3bii_Road-LDV,light_oil,TON,297.7664121 +PR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.129540835 +PR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,72.34667468 +PR,Methane,1A3biii_Road-bus,diesel_oil,TON,0.919537658 +PR,Methane,1A3biii_Road-bus,light_oil,TON,0.989673617 +PR,Methane,1A3biii_Road-bus,natural_gas,TON,4.78338899 +PR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38.59001986 +PR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.201773805 +PR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.24148196 +PR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,4.179992192 +PR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.983375862 +PR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,11649.11438 +PR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1765 +PR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,21469.06461 +PR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1500.505626 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,906.4302705 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,564.2098741 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,38.36556785 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,182.275504 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0.67510066 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1659.20113 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.005126747 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,12.94856385 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4232.52095 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,30.54136332 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.037921745 +PR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,778.1020209 +PR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,361.965572 +PR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,14186.97828 +PR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,418.1556643 +PR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2930.726078 +PR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,367.2258173 +PR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,23.62071516 +PR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.24848528 +PR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8343.515213 +PR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,11.07533627 +PR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3050.260392 +PR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,189.979759 +PR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,51.3504679 +PR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,0.4908707 +PR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,347.144 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,88.88410815 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.033166808 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,33.67312179 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00113628 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.07480276 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,482.847703 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,225.121867 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,20.12243728 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,489.7731209 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,729.841565 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,272.6757453 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.729327477 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.017036131 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.919167 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,66.39312056 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,334.3374851 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,460.9254109 +PR,Nitrogen Oxides,2A1_Cement-production,,TON,1803.76 +PR,Nitrogen Oxides,2A2_Lime-production,,TON,0 +PR,Nitrogen Oxides,2A6_Other-minerals,,TON,89.54734 +PR,Nitrogen Oxides,2C5_Lead-production,,TON,9.578 +PR,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +PR,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +PR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +PR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1.419104 +PR,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +PR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,100.5976 +PR,Nitrogen Oxides,5C_Incineration,biomass,TON,33.6952245 +PR,Nitrogen Oxides,5C_Open-burning-residential,,TON,21.673932 +PR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.8509908 +PR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.35813999 +PR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,328.5828764 +PR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.347390823 +PR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,71.34895195 +PR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.15256044 +PR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.363118559 +PR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.082926097 +PR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.897232035 +PR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.233447778 +PR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.146911524 +PR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.073475169 +PR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.531578918 +PR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,650.3621972 +PR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,377.8 +PR,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2313.816401 +PR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,69.2406528 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.16610747 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.711688191 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,106.5541656 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000247711 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2.73065929 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.355575695 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.036181965 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.05740181 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.13591E-05 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.707335466 +PR,PM10 Filterable,2A1_Cement-production,,TON,241.0382889 +PR,PM10 Filterable,2A2_Lime-production,,TON,1.5267015 +PR,PM10 Filterable,2A6_Other-minerals,,TON,126.3346183 +PR,PM10 Filterable,2C5_Lead-production,,TON,20.38 +PR,PM10 Filterable,2D3d_Coating-application,,TON,0 +PR,PM10 Filterable,2D3e_Degreasing,,TON,0 +PR,PM10 Filterable,2H2_Food-and-beverage,,TON,38.98157313 +PR,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,15.38598735 +PR,PM10 Filterable,3Dc_Other-farm,,TON,0.21306227 +PR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,60.99476 +PR,PM10 Filterable,5C_Incineration,biomass,TON,16.4118417 +PR,PM10 Filterable,5C_Open-burning-residential,,TON,137.26826 +PR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,6.8965945 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,721.3156832 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,377.8 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2708.622008 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,125.2510705 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,71.0224594 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.792704834 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.636558053 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,20.84314183 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.772778563 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,124.6540197 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000569301 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1.762941994 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,363.0061202 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.24597446 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.0003032 +PR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,49.54794782 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,18.81702555 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,139.0499047 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.44123977 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,23.1768586 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,26.06825374 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.311642649 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.034077243 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,515.5214553 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.132003471 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,205.3151823 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.745702021 +PR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.344832408 +PR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,0.01208298 +PR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11.47316 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.704811409 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.039317728 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.763673799 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000135217 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.238867133 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,46.3229552 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,20.19046249 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.402783585 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,37.33584613 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,350.0094611 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.0428353 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.075644175 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.80687E-05 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.96334581 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,99.10454346 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.691945352 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,68.85944741 +PR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,241.1949989 +PR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.743031 +PR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,126.3801683 +PR,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,20.38 +PR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +PR,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1049.54651 +PR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,15.38598735 +PR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0.21579367 +PR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,60.99476 +PR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,17.41241443 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,137.26826 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.8965945 +PR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,116.3735982 +PR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,0 +PR,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1308.919553 +PR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,68.2395713 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.279051625 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.083559398 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,71.38692595 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,6.23223E-05 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.869066306 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.007981222 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.004221231 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.005701596 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.71557E-05 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.122096067 +PR,PM2.5 Filterable,2A1_Cement-production,,TON,31.76105 +PR,PM2.5 Filterable,2A2_Lime-production,,TON,0 +PR,PM2.5 Filterable,2A6_Other-minerals,,TON,4.63609383 +PR,PM2.5 Filterable,2C5_Lead-production,,TON,0 +PR,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +PR,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +PR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.791077653 +PR,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,0.06614525 +PR,PM2.5 Filterable,3Dc_Other-farm,,TON,0.02638646 +PR,PM2.5 Filterable,5C_Incineration,biomass,TON,0.02602 +PR,PM2.5 Filterable,5C_Open-burning-residential,,TON,125.70868 +PR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.316608 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,187.3267904 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1703.7249 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,124.249989 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,68.87608493 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.734652523 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.635702432 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,12.97967241 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.145240939 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,89.45686166 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000385361 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1.616813979 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,352.1160563 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.95613329 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.0003032 +PR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,46.43771578 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,17.31161752 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,123.006236 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23.40586485 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.50269645 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,23.98272483 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.275685144 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.03014538 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,474.278175 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.116772835 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,188.8893321 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.544281494 +PR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.074282832 +PR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11.12896 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.357215996 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.007357001 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.711969239 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000121014 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.098471817 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,44.93329111 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,18.62911793 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.402783585 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,36.21575892 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,322.0245622 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.32156575 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.069597958 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.80687E-05 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.87444637 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,91.1769926 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.491189725 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,63.35070893 +PR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,31.91776 +PR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4.68164383 +PR,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1013.355717 +PR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.06614525 +PR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0.02911783 +PR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.026592433 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,125.70868 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.316608 +PR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1259.392993 +PR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,196.4 +PR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,32692.3644 +PR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,176.159558 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.152380073 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.970938863 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.124176769 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,130.4123261 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2.871970808 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1445.100975 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.010505879 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.04626612 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,10.48532653 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.190939016 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.70672E-05 +PR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,709.6289042 +PR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.989690252 +PR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,151.4175003 +PR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.845924017 +PR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.02576465 +PR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.496748923 +PR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.11819387 +PR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.004219867 +PR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.25817178 +PR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.059879934 +PR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.217749812 +PR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.494741611 +PR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.650233335 +PR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.26587 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,76.14842381 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.146657547 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,120.7306339 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002420278 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.023552269 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.999980619 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.337287956 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.071025705 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.019406081 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.259303161 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.56098637 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.008505401 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.53201E-05 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.040369336 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.823808766 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.638588669 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.879139064 +PR,Sulfur Dioxide,2A1_Cement-production,,TON,279.36 +PR,Sulfur Dioxide,2A2_Lime-production,,TON,0 +PR,Sulfur Dioxide,2A6_Other-minerals,,TON,45.02851 +PR,Sulfur Dioxide,2C5_Lead-production,,TON,1.58 +PR,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +PR,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +PR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +PR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.6086504 +PR,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +PR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,15.66238 +PR,Sulfur Dioxide,5C_Incineration,biomass,TON,33.42462996 +PR,Sulfur Dioxide,5C_Open-burning-residential,,TON,3.6123213 +PR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.39994593 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,130.4716734 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,7.02 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,335.5304055 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,39.6411555 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,85.20756776 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,182.5393651 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.809296708 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.591647669 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.003130626 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,21.25407539 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,5.23031E-05 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,47.09058219 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,430.5192181 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,194.7256619 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.00062002 +PR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,196.7495942 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,109.7434396 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,10546.94922 +PR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,111.7020868 +PR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2008.784004 +PR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,36.64438145 +PR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,22.28921401 +PR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.567011493 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,646.5397188 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,6.388121771 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,276.0972902 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,107.9636292 +PR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,284.5293911 +PR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,0.01812447 +PR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7.94143 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.800015392 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000150758 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.351372478 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.93168E-05 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.97758071 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,64.32581103 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1046.818339 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.236789299 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,50.79654355 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7507.589348 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.17651733 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.397024443 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000295978 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.37430284 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3432.885059 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.22428168 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5208.09017 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,95.9950975 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6224.274058 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2791.704793 +PR,Volatile Organic Compounds,2A1_Cement-production,,TON,25.708202 +PR,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +PR,Volatile Organic Compounds,2A6_Other-minerals,,TON,14.02675641 +PR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,32.97089111 +PR,Volatile Organic Compounds,2C5_Lead-production,,TON,0.596 +PR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,15704.19912 +PR,Volatile Organic Compounds,2D3d_Coating-application,,TON,7402.941509 +PR,Volatile Organic Compounds,2D3e_Degreasing,,TON,0 +PR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,3.57000075 +PR,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,211.900075 +PR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,142.9765879 +PR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,0.073008 +PR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0 +PR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,187.779524 +PR,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.749336542 +PR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,30.921459 +PR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,7.7675486 +PR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,75.0124482 +RI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.3945 +RI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,82.048 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.483681584 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.03493873 +RI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.3925 +RI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.719 +RI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,6.0225 +RI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.32622616 +RI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.036457252 +RI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.82165312 +RI,Ammonia,1A3bii_Road-LDV,light_oil,TON,302.46249 +RI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.6627458 +RI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,22.532504 +RI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.199066871 +RI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.059039406 +RI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.005182704 +RI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.330865344 +RI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.033675814 +RI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.6038594 +RI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.472644539 +RI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.63003 +RI,Ammonia,1A3c_Rail,diesel_oil,TON,0.022665162 +RI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.578473352 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.2474999 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.0135615 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.05157 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006571156 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.942 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.226447437 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.46331778 +RI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.066945188 +RI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.95899881 +RI,Ammonia,1A4bi_Residential-stationary,biomass,TON,78.7253563 +RI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,65.576845 +RI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.48103015 +RI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,179.354828 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.02939989 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001801012 +RI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004837359 +RI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.18229836 +RI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.115907792 +RI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.8716082 +RI,Ammonia,2B_Chemicals-other,,TON,1.8835 +RI,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.034 +RI,Ammonia,2D3d_Coating-application,,TON,2.1735 +RI,Ammonia,2D3e_Degreasing,,TON,0.1935 +RI,Ammonia,2D3h_Printing,,TON,0.6615 +RI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,3.408 +RI,Ammonia,3B1a_Cattle-dairy,,TON,54.067464 +RI,Ammonia,3B1b_Cattle-non-dairy,,TON,17.38179625 +RI,Ammonia,3B2_Manure-sheep,,TON,5.10312 +RI,Ammonia,3B3_Manure-swine,,TON,16.461192 +RI,Ammonia,3B4_Manure-other,,TON,46.8204 +RI,Ammonia,3B4_Manure-poultry,,TON,25.02109236 +RI,Ammonia,3B4d_Manure-goats,,TON,4.891524 +RI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,127.6312095 +RI,Ammonia,5D1_Wastewater-domestic,,TON,1.601692 +RI,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.00105 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,59551.6305 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,64786.97979 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3531.006662 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,163194.8668 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3023.023851 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.2933506 +RI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,35820.948 +RI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3282583.5 +RI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25202.223 +RI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,327043.81 +RI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,13548.9274 +RI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,1947.592128 +RI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,209.32325 +RI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,137742.6426 +RI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,953.36515 +RI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,198571.2 +RI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15418.84099 +RI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,79674.06 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27827.4747 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,38423.90746 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1682.177037 +RI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,8233.449446 +RI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,70627.97555 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3617.921432 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,128.5776044 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.04315339 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,592.1815 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,12581.2026 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14273.49977 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,60663.08 +RI,Carbon Monoxide,11C_Other-natural,,TON,1797.581 +RI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,3.136 +RI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1156.897 +RI,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,15.7625 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,384.4874918 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2987.700913 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,182.6526229 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.050225524 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,33.38067926 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.506432407 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,134.3159128 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,680.2242124 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,678.9296511 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.09323479 +RI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,994.5651053 +RI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,687.51892 +RI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,52077.432 +RI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,224.63819 +RI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6757.333 +RI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,61.7630648 +RI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,212.2700129 +RI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,1.6021421 +RI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,374.509975 +RI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,53.888652 +RI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,473.01972 +RI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1412.142598 +RI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2958.7403 +RI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,7.24414886 +RI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,202.7409793 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,29.699965 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,733.462835 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.286069 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.03942691 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,201.5165 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,147.4765295 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8829.596638 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,39.8150198 +RI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,33.63231627 +RI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,18778.07211 +RI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10178.34601 +RI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,327.8847 +RI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.405155 +RI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,395.138401 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.70693688 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,38.99013848 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004783216 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.72236 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,2852.766542 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.3899668 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7781.458 +RI,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,32.8095 +RI,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,109.3515 +RI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.0045 +RI,Carbon Monoxide,2H2_Food-and-beverage,,TON,143.46307 +RI,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,5.445 +RI,Carbon Monoxide,3F_Ag-res-on-field,,TON,7.6286 +RI,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,32.335 +RI,Carbon Monoxide,5C_Incineration,biomass,TON,14.42502736 +RI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1642.07 +RI,Carbon Monoxide,5C_Open-burning-residential,,TON,165.194 +RI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,11.20329 +RI,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.0116885 +RI,Methane,1A3bii_Road-LDV,light_oil,TON,141.81129 +RI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.1308564 +RI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.17824 +RI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.6825441 +RI,Methane,1A3biii_Road-bus,light_oil,TON,0.64947685 +RI,Methane,1A3biii_Road-bus,natural_gas,TON,1.3829727 +RI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.4930662 +RI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.100113785 +RI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.6897299 +RI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,4.198034945 +RI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.672876 +RI,Nitrogen Oxides,11C_Other-natural,,TON,142.22998 +RI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,5.5495 +RI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,697.618 +RI,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,2.897 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,414.7994894 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,400.8258597 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,26.67374547 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.00532091 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,123.1234815 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,79.71727523 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,232.4244224 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1229.116408 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.4202123 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.0189542 +RI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,229.5734237 +RI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,119.292348 +RI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,6429.2916 +RI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,111.59366 +RI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,856.3168 +RI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,100.498213 +RI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,11.29555658 +RI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.8999811 +RI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1120.624774 +RI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,5.1081477 +RI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1210.83121 +RI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,80.027571 +RI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,156.36583 +RI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,73.5733653 +RI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1133.457477 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,10.890004 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3380.613965 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,92.92811 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.15852933 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,194.064 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,254.50669 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,181.5235465 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.5964424 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,74.92468384 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,251.8380321 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,178.0807996 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1180.3825 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,8.658542 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,907.78877 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,30.11389964 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.586594326 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001069059 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.791829 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,32.9812191 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,160.4082405 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,436.84898 +RI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,13.2725 +RI,Nitrogen Oxides,2A6_Other-minerals,,TON,54.208 +RI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.0225 +RI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,42.1115 +RI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.2124442 +RI,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,17.113 +RI,Nitrogen Oxides,5C_Incineration,biomass,TON,42.539615 +RI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,48.5819 +RI,Nitrogen Oxides,5C_Open-burning-residential,,TON,11.6607 +RI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.497923 +RI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.107556228 +RI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,170.44831 +RI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.09663914 +RI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.820135 +RI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.049047268 +RI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.226117491 +RI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.03936172 +RI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.177477263 +RI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.100188891 +RI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.46301383 +RI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.514041805 +RI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.6582116 +RI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,45.29008 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.020837665 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.598046565 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.27552869 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2.80304321 +RI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1774.54243 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,25.02381538 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,238.2793435 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.20852969 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008637009 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.735928328 +RI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,70.82313 +RI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.5195125 +RI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.87916783 +RI,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.2 +RI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,2282.07741 +RI,PM10 Filterable,2A6_Other-minerals,,TON,384.846586 +RI,PM10 Filterable,2H2_Food-and-beverage,,TON,28.0690874 +RI,PM10 Filterable,3Dc_Other-farm,,TON,43.858 +RI,PM10 Filterable,5C_Incineration,biomass,TON,3.804203 +RI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,165.179 +RI,PM10 Filterable,5C_Open-burning-residential,,TON,73.8514 +RI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1.85521 +RI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,82.3455 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,33.99565947 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.759471412 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.438129252 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.021144408 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.345242029 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,11.54701541 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,8.005598155 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,105.4280024 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.71810135 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +RI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,14.60674412 +RI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1774.54243 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,8.7883817 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,528.91654 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.979091 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,53.21231 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,7.78989 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.464119455 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.028410301 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,68.873241 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.218625651 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,99.86973 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.723232707 +RI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.088037 +RI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1.811036998 +RI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,51.01328421 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,25.85134619 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,252.2509955 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,18.45819063 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.019415785 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.86279606 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,24.42041558 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.64530204 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.210838299 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,5.683914765 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,65.92936459 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1451.962463 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,156.0733 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.144852 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.88584265 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.605790127 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.384930154 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.45364E-06 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.8204784 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,16.69649787 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.17706562 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,38.1488617 +RI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.209 +RI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2282.07741 +RI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,391.7325 +RI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.05 +RI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,373.679218 +RI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.269 +RI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,43.858 +RI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1.249977 +RI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,65.47 +RI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.17826655 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,165.179 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,73.8514 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.85521 +RI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,45.29008 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.017755376 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.163132559 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.812383955 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2.646416992 +RI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,397.551345 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,21.53145355 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,221.6380345 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.889740491 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006647239 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.709124443 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,54.428805 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.39925545 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.03354303 +RI,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.2 +RI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,228.207741 +RI,PM2.5 Filterable,2A6_Other-minerals,,TON,51.7967171 +RI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.96103643 +RI,PM2.5 Filterable,3Dc_Other-farm,,TON,8.767 +RI,PM2.5 Filterable,5C_Incineration,biomass,TON,1.084869 +RI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,127.336 +RI,PM2.5 Filterable,5C_Open-burning-residential,,TON,67.6323 +RI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,1.430188 +RI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,82.3455 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,32.9685074 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.722735357 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.437804462 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.017990535 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,6.863495123 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.088653424 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,7.878092969 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,102.2651832 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.343510199 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +RI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,12.68491304 +RI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,397.551345 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,5.5884756 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,198.26474 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.540478 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.381334 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,6.0434217 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.283140346 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.010845747 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,53.0601897 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.15148705 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,72.955387 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.551122174 +RI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.762901 +RI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1.666154087 +RI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,48.43710148 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,22.35942949 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,235.5989795 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.125917175 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017430832 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.83835503 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23.68780602 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.822042511 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.210838299 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,5.513396664 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,60.65741988 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1450.603233 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,139.67885 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.024597 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.04021942 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.527620284 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.35413496 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.45364E-06 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.7958636 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,15.36100885 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.081758763 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,35.0969158 +RI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.2 +RI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,228.207741 +RI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,52.7136291 +RI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,346.571732 +RI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,8.767 +RI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.883716 +RI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.45893355 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,127.336 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,67.6323 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.430188 +RI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.663 +RI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,219.1425 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.474699933 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.336809105 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.083764243 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.64782173 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,143.7280867 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,23.50170156 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.045132321 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.055499997 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85236E-05 +RI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,30.97775973 +RI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.30739984 +RI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,65.419046 +RI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.21742456 +RI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.517725 +RI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.116259171 +RI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.038813851 +RI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.001108272 +RI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.183623095 +RI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.018999707 +RI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.6994729 +RI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.307285434 +RI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.5878372 +RI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.511531027 +RI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,507.3678569 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.23749945 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,58.281149 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,354.9735 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.3499134 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.263575 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.527094627 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.704942525 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.037193975 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.155743096 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.286957844 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,27.72594762 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2793.577 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,20.491885 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.63751346 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.067777335 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.002340175 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.49026E-07 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011180139 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.228739976 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.306163478 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.1031456 +RI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.081 +RI,Sulfur Dioxide,2A6_Other-minerals,,TON,11.116 +RI,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.283 +RI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.03940795 +RI,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,351.628 +RI,Sulfur Dioxide,5C_Incineration,biomass,TON,10.5701841 +RI,Sulfur Dioxide,5C_Open-burning-residential,,TON,1.94346 +RI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.1075871 +RI,Volatile Organic Compounds,11C_Other-natural,,TON,15805.659 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.0755 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,72.50276 +RI,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,8.826 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.4726824 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,123.4263771 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.516853076 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.000687836 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.17382941 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.346669309 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,16.45784345 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,125.031646 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,49.69505638 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309902 +RI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,61.00756618 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,69.871122 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5363.2996 +RI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.32773 +RI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,610.1043 +RI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,10.6542314 +RI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,12.55270234 +RI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.16184632 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,110.0713982 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,2.6498466 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,98.14676 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,78.48867977 +RI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,306.53151 +RI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2.860532263 +RI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,28.6095525 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.188678568 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.272514374 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.311156659 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003828924 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.76270062 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,33.91114444 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,439.1622535 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.124742877 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,7.743230331 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1434.597758 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1940.751632 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,45.90383 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.336721 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,51.6771773 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.70269266 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.723523831 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.8586E-05 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4876704 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,538.4366736 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.24367006 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2373.163359 +RI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,27.16097 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,243.4509657 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,59.16675655 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,580.6698277 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,623.5930128 +RI,Volatile Organic Compounds,2A6_Other-minerals,,TON,4.40940355 +RI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,300.3338964 +RI,Volatile Organic Compounds,2B_Chemicals-other,,TON,74.30925 +RI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,2.1835 +RI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,6.069 +RI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4436.57281 +RI,Volatile Organic Compounds,2D3d_Coating-application,,TON,2053.92731 +RI,Volatile Organic Compounds,2D3e_Degreasing,,TON,50.13 +RI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,7.604 +RI,Volatile Organic Compounds,2D3h_Printing,,TON,70.26105 +RI,Volatile Organic Compounds,2D3i_Other-solvent-use,Other_Fuel,TON,1.181 +RI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,71.83024081 +RI,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,160.360775 +RI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,19.575142 +RI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,0.464925 +RI,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,77.67292 +RI,Volatile Organic Compounds,5C_Incineration,biomass,TON,8.693924635 +RI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,112.71 +RI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,16.636 +RI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,2.089502 +RI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,11.143362 +RI,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,1.0365 +RI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,18.545555 +SC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,45.767251 +SC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,214.674841 +SC,Ammonia,1A1a_Public-Electricity,natural_gas,TON,7.15 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.067029853 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.157590661 +SC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,100.916807 +SC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.12463982 +SC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.51259092 +SC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.22511333 +SC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.032339998 +SC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,16.30467585 +SC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.38977294 +SC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.312586745 +SC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.79779449 +SC,Ammonia,1A3bii_Road-LDV,light_oil,TON,1760.86252 +SC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.3193518 +SC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,188.959437 +SC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.476006697 +SC,Ammonia,1A3biii_Road-bus,light_oil,TON,2.013223086 +SC,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.062779742 +SC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,44.04042535 +SC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.005613775 +SC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,67.1514941 +SC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,14.57480478 +SC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.8050013 +SC,Ammonia,1A3c_Rail,diesel_oil,TON,3.752641588 +SC,Ammonia,1A3c_Rail,light_oil,TON,0.001703732 +SC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.265646637 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.55954992 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.069235347 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.027900001 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.302399992 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.721640351 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.755253077 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.545082894 +SC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.496107411 +SC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.466344791 +SC,Ammonia,1A4bi_Residential-stationary,biomass,TON,82.13825945 +SC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.394360085 +SC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.20504007 +SC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.60745985 +SC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,272.9905556 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.32519502 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.150430562 +SC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018576349 +SC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.585129106 +SC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.696728754 +SC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.301476374 +SC,Ammonia,2A6_Other-minerals,Other_Fuel,TON,64.62225 +SC,Ammonia,2B_Chemicals-other,,TON,147.423082 +SC,Ammonia,2C_Iron-steel-alloy,,TON,2.45 +SC,Ammonia,2D3h_Printing,,TON,0.2803 +SC,Ammonia,2H1_Pulp-and-paper,,TON,470.52168 +SC,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,472.89 +SC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,48.3501029 +SC,Ammonia,3B1a_Cattle-dairy,,TON,575.7763704 +SC,Ammonia,3B1b_Cattle-non-dairy,,TON,1815.875753 +SC,Ammonia,3B2_Manure-sheep,,TON,27.4626 +SC,Ammonia,3B3_Manure-swine,,TON,2856.225623 +SC,Ammonia,3B4_Manure-other,,TON,581.71344 +SC,Ammonia,3B4_Manure-poultry,,TON,18461.41403 +SC,Ammonia,3B4d_Manure-goats,,TON,303.97884 +SC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,5074.42957 +SC,Ammonia,5A_Solid-waste-disposal,,TON,28.14 +SC,Ammonia,5D1_Wastewater-domestic,,TON,16.8973798 +SC,Ammonia,5D2_Wastewater-industrial,biomass,TON,590.165 +SC,Ammonia,5E_Other-waste,Other_Fuel,TON,4 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,254496.6468 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,289280.3118 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15848.35014 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1401536.233 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25925.41045 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.46674702 +SC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,237716.162 +SC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18673421.9 +SC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,195823.14 +SC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2518060.37 +SC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,236344.5701 +SC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,61501.86613 +SC,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2650.35532 +SC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2751446.641 +SC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,55030.71263 +SC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4788712.26 +SC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,433122.7427 +SC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,108435.487 +SC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2873.59979 +SC,Carbon Dioxide,1A3c_Rail,light_oil,TON,132.1114487 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,92810.88092 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,128151.4034 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5618.257239 +SC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,61014.83488 +SC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,404482.782 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,286142.2756 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10736.46408 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.22218154 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2274.079 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,105369.6802 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,85797.94878 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,297806.8792 +SC,Carbon Monoxide,11C_Other-natural,,TON,107744.49 +SC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,692.273306 +SC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,26.0122738 +SC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,13357.93046 +SC,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.40681 +SC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2732.629295 +SC,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,0.58002 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1281.157777 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13351.69258 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,809.5832978 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,15336.64383 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,322.6396081 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1407.525445 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,29.9031514 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,11.01536476 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2662.57808 +SC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0.938057 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5841.30475 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6081.364718 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.466173932 +SC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4998.033293 +SC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4327.31497 +SC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,369129.236 +SC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1930.93936 +SC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,61956.978 +SC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,720.795361 +SC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2856.557197 +SC,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,18.2863595 +SC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6406.157453 +SC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1972.017626 +SC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9316.83375 +SC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13338.5092 +SC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4295.92746 +SC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1215.765607 +SC,Carbon Monoxide,1A3c_Rail,light_oil,TON,34.55288908 +SC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,458.3931532 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,191.4820377 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.46268737 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.751133168 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.293139949 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,14.6954659 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1039.984579 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,491.8400655 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,30899.02622 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,132.4544788 +SC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,250.0225172 +SC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,108002.2432 +SC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10191.40044 +SC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,16.9717943 +SC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,28.19298894 +SC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,8.037299325 +SC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,781.555605 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1152.189264 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3384.831563 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.574476186 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,21.987172 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,22715.53516 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,171.5455537 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,39212.779 +SC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,21.73 +SC,Carbon Monoxide,2A1_Cement-production,,TON,153.8662 +SC,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,11.7 +SC,Carbon Monoxide,2A6_Other-minerals,,TON,6367.081283 +SC,Carbon Monoxide,2B_Chemicals-other,,TON,1234.4934 +SC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2928.085 +SC,Carbon Monoxide,2C3_Aluminum-production,,TON,45650 +SC,Carbon Monoxide,2C6_Zinc-production,,TON,6.16 +SC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,5776.368426 +SC,Carbon Monoxide,2D3d_Coating-application,,TON,6.688 +SC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,10066.32645 +SC,Carbon Monoxide,2H2_Food-and-beverage,,TON,612.4645587 +SC,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,73.12617 +SC,Carbon Monoxide,3F_Ag-res-on-field,,TON,13178.65405 +SC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,389.315783 +SC,Carbon Monoxide,5C_Incineration,,TON,0 +SC,Carbon Monoxide,5C_Incineration,biomass,TON,23.50578892 +SC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,41678.7548 +SC,Carbon Monoxide,5C_Open-burning-residential,,TON,5779.0436 +SC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,783.85776 +SC,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,13.79 +SC,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.05585618 +SC,Methane,1A3bii_Road-LDV,light_oil,TON,901.16481 +SC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.91785503 +SC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,192.456103 +SC,Methane,1A3biii_Road-bus,diesel_oil,TON,5.445358146 +SC,Methane,1A3biii_Road-bus,light_oil,TON,6.541265902 +SC,Methane,1A3biii_Road-bus,natural_gas,TON,17.8721597 +SC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,188.0004318 +SC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.212823807 +SC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,83.6741597 +SC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,27.45418105 +SC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.9098008 +SC,Nitrogen Oxides,11C_Other-natural,,TON,9872.3822 +SC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,675.22 +SC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,405.7902451 +SC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,24544.3492 +SC,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,3.25448 +SC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1123.336534 +SC,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.6905 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1731.433962 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1769.827876 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,118.5546572 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,7316.142581 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1528.019961 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4494.736082 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,284.7021467 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.23132946 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4292.185898 +SC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,1.11674 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10557.49657 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,104.3039582 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.094770967 +SC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,566.4725282 +SC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,864.432467 +SC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,48426.7065 +SC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,904.68709 +SC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8022.7407 +SC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1670.047262 +SC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,253.8864333 +SC,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,10.9921888 +SC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20105.54717 +SC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,239.6146836 +SC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,27401.3203 +SC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1285.02101 +SC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,198.927171 +SC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8425.169344 +SC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.507249684 +SC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3411.873439 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,80.94594235 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,90.39798592 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.48461195 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.234446165 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.811841727 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1139.944255 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,848.8516031 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,543.5498948 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.20643648 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,554.5913471 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1270.012683 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,161.9971349 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,61.09853065 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.93105563 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,28.9342791 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1702.22692 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2364.663485 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,42.91405034 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.128159224 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.243274 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,230.7846953 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,963.52604 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2006.836322 +SC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,8.69 +SC,Nitrogen Oxides,2A1_Cement-production,,TON,39.52576 +SC,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,45 +SC,Nitrogen Oxides,2A6_Other-minerals,,TON,4751.977274 +SC,Nitrogen Oxides,2B_Chemicals-other,,TON,182.56037 +SC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,491.63492 +SC,Nitrogen Oxides,2C3_Aluminum-production,,TON,60.0136 +SC,Nitrogen Oxides,2C6_Zinc-production,,TON,0.77 +SC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,229.444006 +SC,Nitrogen Oxides,2D3d_Coating-application,,TON,0.608 +SC,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.05856 +SC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5411.969763 +SC,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.832835 +SC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,568.8631 +SC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,75.17319 +SC,Nitrogen Oxides,5C_Incineration,,TON,0 +SC,Nitrogen Oxides,5C_Incineration,biomass,TON,44.23950655 +SC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1233.099435 +SC,Nitrogen Oxides,5C_Open-burning-residential,,TON,407.93248 +SC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,34.8381265 +SC,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,13.72 +SC,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,23.98040003 +SC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.680999751 +SC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,863.863813 +SC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.67462458 +SC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,171.051073 +SC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.59357133 +SC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.348636602 +SC,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.278623852 +SC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.187986126 +SC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.229662622 +SC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.18307492 +SC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,23.7705198 +SC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.57847097 +SC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,357.7206999 +SC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.570368617 +SC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,9231.545119 +SC,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.109343 +SC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,181.0144699 +SC,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,4.1353913 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8271.063786 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,100.6301204 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1174.304331 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,97.08819635 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.052821668 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,125.3247148 +SC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.03225134 +SC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,162280.5491 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,157.8978095 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.178123006 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.21694849 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.626131572 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.413920035 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.004897289 +SC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.665909785 +SC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.636792901 +SC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.73605645 +SC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.283583746 +SC,PM10 Filterable,2A1_Cement-production,,TON,452.746842 +SC,PM10 Filterable,2A2_Lime-production,,TON,9.202710038 +SC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,9527.267568 +SC,PM10 Filterable,2A6_Other-minerals,,TON,3538.563808 +SC,PM10 Filterable,2B_Chemicals-other,,TON,127.6138569 +SC,PM10 Filterable,2C_Iron-steel-alloy,,TON,108.1241995 +SC,PM10 Filterable,2C3_Aluminum-production,,TON,106.5081241 +SC,PM10 Filterable,2C6_Zinc-production,,TON,22.7745 +SC,PM10 Filterable,2C7_Other-metal,,TON,80.20721753 +SC,PM10 Filterable,2D3d_Coating-application,,TON,13.126351 +SC,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.02577 +SC,PM10 Filterable,2H1_Pulp-and-paper,,TON,1210.822558 +SC,PM10 Filterable,2H2_Food-and-beverage,,TON,136.7786744 +SC,PM10 Filterable,2H3_Other-industrial-processes,,TON,315.331274 +SC,PM10 Filterable,2I_Wood-processing,,TON,7.5370741 +SC,PM10 Filterable,3Dc_Other-farm,,TON,21676.71455 +SC,PM10 Filterable,3F_Ag-res-on-field,,TON,1896.06 +SC,PM10 Filterable,5A_Solid-waste-disposal,,TON,108.051311 +SC,PM10 Filterable,5C_Incineration,,TON,0 +SC,PM10 Filterable,5C_Incineration,biomass,TON,22.24651572 +SC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4192.5319 +SC,PM10 Filterable,5C_Open-burning-residential,,TON,2583.5724 +SC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,129.803094 +SC,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.43 +SC,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.053800001 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,369.8716728 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.036354194 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,10144.667 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.128 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,329.7683402 +SC,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.1679277 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,144.6520024 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.96177199 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.950859402 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8560.299291 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,104.1831095 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1302.378886 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,108.3020177 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.117199727 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,233.7018768 +SC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.084872 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,905.2895665 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.50280149 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000757729 +SC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,122.4647335 +SC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,162280.5491 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,62.4721079 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2617.68232 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,72.92299 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,360.249628 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,132.7163944 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.132511974 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.355558015 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1267.56177 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.542468989 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2306.02166 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,47.24106008 +SC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.6244692 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,282.3458703 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.018349779 +SC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,290.4394964 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,164.355342 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.26730046 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,12.23792141 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.742087117 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.915278685 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.86054768 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,81.44209333 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,35.49435283 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.704451138 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,42.27768019 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,405.5791899 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1474.177031 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,8.078575715 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.74342236 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.82575374 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.53732081 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,204.2994281 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,32.77626585 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000660153 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.1521374 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,194.7428227 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.28485112 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,198.4046321 +SC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,457.8016563 +SC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,9.268816838 +SC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,9527.267568 +SC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3624.437806 +SC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,143.1762585 +SC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,302.8067885 +SC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,112.9858951 +SC,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,24.633675 +SC,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,150.4297143 +SC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,14.377951 +SC,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.02577 +SC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1855.361201 +SC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1612.475185 +SC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,325.6785543 +SC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,7.6070741 +SC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,21676.98528 +SC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1896.21 +SC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,111.8272 +SC,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0 +SC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,28.67915915 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4192.5319 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2583.5724 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,129.803094 +SC,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.023055 +SC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,6.42 +SC,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.623800001 +SC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,313.4229527 +SC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.36146972 +SC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,7029.251941 +SC,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.107343 +SC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,180.9294276 +SC,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,4.1353913 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7035.546448 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,94.54008467 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,426.6411074 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,60.62831621 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.022565791 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,123.6161441 +SC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.03225134 +SC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,19329.918 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,136.0974922 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.162617424 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.310037107 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.400005853 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.323080751 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.140733283 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.81731865 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.389821775 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.334191495 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.805970441 +SC,PM2.5 Filterable,2A1_Cement-production,,TON,188.3016748 +SC,PM2.5 Filterable,2A2_Lime-production,,TON,3.297354288 +SC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,952.7267568 +SC,PM2.5 Filterable,2A6_Other-minerals,,TON,834.0817428 +SC,PM2.5 Filterable,2B_Chemicals-other,,TON,68.78196861 +SC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,69.03779359 +SC,PM2.5 Filterable,2C3_Aluminum-production,,TON,55.7020846 +SC,PM2.5 Filterable,2C6_Zinc-production,,TON,21.27862868 +SC,PM2.5 Filterable,2C7_Other-metal,,TON,71.35113856 +SC,PM2.5 Filterable,2D3d_Coating-application,,TON,11.31457919 +SC,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.02478787 +SC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,742.1867511 +SC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,16.44526456 +SC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,257.7574133 +SC,PM2.5 Filterable,2I_Wood-processing,,TON,2.616463941 +SC,PM2.5 Filterable,3Dc_Other-farm,,TON,4335.044228 +SC,PM2.5 Filterable,3F_Ag-res-on-field,,TON,1896.06 +SC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,14.447567 +SC,PM2.5 Filterable,5C_Incineration,,TON,0 +SC,PM2.5 Filterable,5C_Incineration,biomass,TON,14.55949165 +SC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3232.02872 +SC,PM2.5 Filterable,5C_Open-burning-residential,,TON,2366.0085 +SC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,100.065646 +SC,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.61 +SC,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.053800001 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,325.5739295 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.827458518 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,7942.374321 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.126 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,329.683302 +SC,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.1679277 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,140.2977282 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.80733231 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.950173165 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7324.487434 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,98.08774676 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,541.0803686 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,71.83307611 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.086943161 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,231.9180272 +SC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.084872 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,878.1310866 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,37.28711774 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000757729 +SC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,102.7609493 +SC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19329.918 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,41.67572965 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,820.855526 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,54.304334 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,105.824528 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,101.9791853 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.817271249 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.120120515 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,972.0069768 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.284529216 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1677.394203 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,14.67632196 +SC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.770053 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,260.6899689 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.016914427 +SC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,267.1322438 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,142.591861 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.27304637 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.301319617 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.515190622 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.823043655 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.45626501 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,78.99884393 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.7495446 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.704451138 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.00936035 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,373.1509344 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1471.618846 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.229985065 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0.496451989 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.423889025 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.05970367 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,198.1704553 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,30.1542104 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000660153 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0575718 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,179.1642979 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.70629638 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,182.5321594 +SC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,193.3565143 +SC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,3.363460888 +SC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,952.7267568 +SC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,919.9557753 +SC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,84.3443687 +SC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,263.720416 +SC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,62.179857 +SC,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,23.13780368 +SC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,141.5738352 +SC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,12.56617919 +SC,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.02478787 +SC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1386.72546 +SC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1492.142114 +SC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,266.8746937 +SC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.686463941 +SC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4335.314952 +SC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1896.21 +SC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,18.223452 +SC,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0 +SC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,20.99215709 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3232.02872 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2366.0085 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,100.065646 +SC,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.023055 +SC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.6 +SC,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.623800001 +SC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,40.98 +SC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,41.31505969 +SC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,71696.59437 +SC,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,21.9071 +SC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,98.59481111 +SC,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.004143 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.5033489 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.769153699 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.361707145 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2456.133045 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1056.215226 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,9016.552818 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1760.935555 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.804722301 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1458.016801 +SC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0067 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,26.15179427 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.475973775 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000142617 +SC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,81.90443052 +SC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.046687402 +SC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,370.767197 +SC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.69308356 +SC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,49.996928 +SC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.026905146 +SC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.221139791 +SC,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.014032379 +SC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,23.62805723 +SC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.092653451 +SC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,40.954428 +SC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.599803258 +SC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.15302205 +SC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,84.21922353 +SC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002413513 +SC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2035.816291 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.97157221 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.33390845 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,37.89606724 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,11.83146743 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,16.15470407 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.74524693 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.757977909 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.351137025 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.124224136 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.154341696 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.371787809 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,21.6339333 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,144.599746 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,4.066463914 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,68.47778545 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.85075525 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.358834976 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.195410477 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000114853 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.04293399 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.91311072 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.840343998 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.41457721 +SC,Sulfur Dioxide,2A1_Cement-production,,TON,10.53841 +SC,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1.61 +SC,Sulfur Dioxide,2A6_Other-minerals,,TON,843.9192068 +SC,Sulfur Dioxide,2B_Chemicals-other,,TON,9.1204704 +SC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,411.5911 +SC,Sulfur Dioxide,2C3_Aluminum-production,,TON,3751.40399 +SC,Sulfur Dioxide,2C6_Zinc-production,,TON,4.61 +SC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,970.931575 +SC,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.2745 +SC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,4350.460154 +SC,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,16.197015 +SC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,75.84842 +SC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,15.81623 +SC,Sulfur Dioxide,5C_Incineration,,TON,0 +SC,Sulfur Dioxide,5C_Incineration,biomass,TON,25.08369935 +SC,Sulfur Dioxide,5C_Open-burning-residential,,TON,67.98874 +SC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.5275252 +SC,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,25.74 +SC,Volatile Organic Compounds,11C_Other-natural,,TON,857788.2 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,63.454442 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.492870545 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,340.0362431 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.061835 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,196.9336102 +SC,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,15.35820301 +SC,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,48.48494049 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,156.4871902 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,555.6545043 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.096880884 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,635.7119741 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,116.7019488 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,22.67283434 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.416313162 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.535152977 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,333.0470305 +SC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.061421 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1073.717357 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,458.2675201 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001549504 +SC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,242.4616244 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,389.498282 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,33828.2106 +SC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,259.294533 +SC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5319.8606 +SC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,156.9563211 +SC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,157.2221628 +SC,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.09501198 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1825.475132 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,75.38543288 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2152.84065 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,664.6103505 +SC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,863.12032 +SC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,435.781995 +SC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.477966626 +SC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,150.8746164 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,5.439214934 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.074419432 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.047484227 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.016662785 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.747600227 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,78.05016557 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,113.0936273 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1690.671755 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.414294737 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,57.52024083 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8359.873545 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1940.212314 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.37605142 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,1.025200201 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.125222034 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,90.298544 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,211.7971642 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,334.3628744 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00222692 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.71638 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6471.127686 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,43.87390224 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,14738.91242 +SC,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.004795 +SC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,304.497928 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,77.49858696 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,2572.464226 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,17612.17506 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,14692.67401 +SC,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.03364 +SC,Volatile Organic Compounds,2A1_Cement-production,,TON,8.867615 +SC,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,4.4 +SC,Volatile Organic Compounds,2A6_Other-minerals,,TON,63.39195062 +SC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1162.192041 +SC,Volatile Organic Compounds,2B_Chemicals-other,,TON,2676.804198 +SC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,258.90416 +SC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,119.6739612 +SC,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.38 +SC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,187.8521728 +SC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,19495.91604 +SC,Volatile Organic Compounds,2D3d_Coating-application,,TON,14763.70868 +SC,Volatile Organic Compounds,2D3e_Degreasing,,TON,1562.76201 +SC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,13.5849975 +SC,Volatile Organic Compounds,2D3h_Printing,,TON,1339.485975 +SC,Volatile Organic Compounds,2D3i_Other-solvent-use,Other_Fuel,TON,49.96971 +SC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,9601.235176 +SC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,942.8443995 +SC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3818.411022 +SC,Volatile Organic Compounds,2I_Wood-processing,,TON,16.6 +SC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3816.62059 +SC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1137.7262 +SC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,156.410704 +SC,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.771592377 +SC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2860.789961 +SC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,581.98345 +SC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,146.195666 +SC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,85.720112 +SC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,228.00109 +SC,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.834 +SC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,11.564644 +SD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,24.3738 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.302511996 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.021572814 +SD,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.736539823 +SD,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,27.72269487 +SD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.398745955 +SD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.038441029 +SD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.460902274 +SD,Ammonia,1A3bii_Road-LDV,light_oil,TON,328.650539 +SD,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.4789182 +SD,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,55.426715 +SD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.34836912 +SD,Ammonia,1A3biii_Road-bus,light_oil,TON,0.146026329 +SD,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.015921355 +SD,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17.30432605 +SD,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.474197994 +SD,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.94664705 +SD,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.400423512 +SD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.87912938 +SD,Ammonia,1A3c_Rail,diesel_oil,TON,1.675154383 +SD,Ammonia,1A3c_Rail,light_oil,TON,0.00058929 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.205258681 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.419813096 +SD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.030521445 +SD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.567548896 +SD,Ammonia,1A4bi_Residential-stationary,biomass,TON,35.13890752 +SD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.711036145 +SD,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.86789039 +SD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.023607659 +SD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,137.4808479 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.92333792 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.441165312 +SD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003452792 +SD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.132238562 +SD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.091346434 +SD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.563965418 +SD,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.25 +SD,Ammonia,2H2_Food-and-beverage,,TON,9.216 +SD,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.3435 +SD,Ammonia,3B1a_Cattle-dairy,,TON,4799.83491 +SD,Ammonia,3B1b_Cattle-non-dairy,,TON,26886.83145 +SD,Ammonia,3B2_Manure-sheep,,TON,1172.46888 +SD,Ammonia,3B3_Manure-swine,,TON,8913.751485 +SD,Ammonia,3B4_Manure-other,,TON,943.668 +SD,Ammonia,3B4_Manure-poultry,,TON,3737.536804 +SD,Ammonia,3B4d_Manure-goats,,TON,74.986032 +SD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,82162.34939 +SD,Ammonia,5D1_Wastewater-domestic,,TON,3.03334108 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,37245.52924 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,37471.46171 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2103.465908 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,172118.6727 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3189.655269 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.29334794 +SD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,53039.9955 +SD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3389641.54 +SD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,49942.8776 +SD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,670418.62 +SD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,22397.73286 +SD,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,4367.608114 +SD,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,678.349365 +SD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,926065.0164 +SD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12210.46633 +SD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,460320.391 +SD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,38496.38438 +SD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24988.4731 +SD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,971.78498 +SD,Carbon Dioxide,1A3c_Rail,light_oil,TON,45.86554561 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25223.69086 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,34823.16203 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1534.828517 +SD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3753.764905 +SD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,41784.83425 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2081972.663 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,33150.39247 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,51.3221799 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,422.6862 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,75329.07997 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11248.75793 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,39045.37062 +SD,Carbon Monoxide,11C_Other-natural,,TON,96631.738 +SD,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,16 +SD,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,25.1 +SD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,507.9 +SD,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,8.7 +SD,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,13.1 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,231.0167803 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1750.555508 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,105.9717428 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,276.6784864 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.300519717 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,289.9248025 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,300.4515679 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,717.4244897 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,717.6490144 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.093234702 +SD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2155.439107 +SD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,925.866807 +SD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,99325.7881 +SD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,537.84393 +SD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,21851.0801 +SD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,60.13235379 +SD,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,258.7601444 +SD,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,4.67019217 +SD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2221.365212 +SD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,432.5204615 +SD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,889.744515 +SD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1417.561076 +SD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1058.36853 +SD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,540.0094887 +SD,Carbon Monoxide,1A3c_Rail,light_oil,TON,11.32525988 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,12.1048583 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.087044534 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,18.15728745 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,70.75080972 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,133.6608084 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7989.800981 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.1655806 +SD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,15.33739626 +SD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,11335.36433 +SD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4469.625401 +SD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,13.55516985 +SD,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,119.334812 +SD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.118038283 +SD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,534.3112227 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9515.838863 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7902.465284 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.64468518 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.0839842 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10827.59692 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.49096133 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5013.421459 +SD,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,182.1818052 +SD,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,11.3 +SD,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,114.9078804 +SD,Carbon Monoxide,2A1_Cement-production,,TON,437 +SD,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,199 +SD,Carbon Monoxide,2A6_Other-minerals,,TON,0 +SD,Carbon Monoxide,2C3_Aluminum-production,,TON,11.5 +SD,Carbon Monoxide,2D3d_Coating-application,,TON,11.9 +SD,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,30.4 +SD,Carbon Monoxide,2H2_Food-and-beverage,,TON,715.6318179 +SD,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,92.8 +SD,Carbon Monoxide,3F_Ag-res-on-field,,TON,119293.111 +SD,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,2.220925 +SD,Carbon Monoxide,5C_Incineration,biomass,TON,0 +SD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1562.030453 +SD,Carbon Monoxide,5C_Open-burning-residential,,TON,1392.08706 +SD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,28.022656 +SD,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.470842018 +SD,Methane,1A3bii_Road-LDV,light_oil,TON,276.53581 +SD,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.96518532 +SD,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,71.715803 +SD,Methane,1A3biii_Road-bus,diesel_oil,TON,0.538777426 +SD,Methane,1A3biii_Road-bus,light_oil,TON,0.570377628 +SD,Methane,1A3biii_Road-bus,natural_gas,TON,4.18433958 +SD,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,96.10769759 +SD,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.343019265 +SD,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.67653603 +SD,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.290444386 +SD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.29719294 +SD,Nitrogen Oxides,11C_Other-natural,,TON,37933.251 +SD,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,19.1 +SD,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,78.1 +SD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,10588.8 +SD,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,29.2 +SD,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.3 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,260.8236613 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,231.7946364 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15.50924818 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,49.15734697 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.003211163 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,638.7762649 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,685.6833545 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1295.960539 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,14.58882694 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.018954171 +SD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,203.106977 +SD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,217.6775874 +SD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,11955.21261 +SD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,242.025263 +SD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2665.68044 +SD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,176.0953787 +SD,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,22.07477494 +SD,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.98660162 +SD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8086.099692 +SD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,60.39981452 +SD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2904.686122 +SD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,137.8485254 +SD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,54.288073 +SD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,3941.061 +SD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.214540951 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,60.00409489 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.177096865 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,103.7717876 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,184.1470206 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,230.6982553 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,171.7385053 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9.615286432 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,34.1448342 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,152.305416 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,75.68252657 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,48.79862645 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,3.9488976 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.424937748 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1107.635065 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19031.29134 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,203.3935768 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.259198058 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.139546 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,130.6669311 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,126.3228061 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,279.9470146 +SD,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,204.5617577 +SD,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.5 +SD,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,38.27865844 +SD,Nitrogen Oxides,2A1_Cement-production,,TON,900 +SD,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,160.7 +SD,Nitrogen Oxides,2A6_Other-minerals,,TON,0 +SD,Nitrogen Oxides,2C3_Aluminum-production,,TON,17 +SD,Nitrogen Oxides,2D3d_Coating-application,,TON,9 +SD,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,20.2 +SD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,788.7 +SD,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,97.7 +SD,Nitrogen Oxides,3F_Ag-res-on-field,,TON,5058.58564 +SD,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +SD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,46.21393631 +SD,Nitrogen Oxides,5C_Open-burning-residential,,TON,98.264957 +SD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.2454503 +SD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.15599083 +SD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,228.316158 +SD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.167228466 +SD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,54.6132605 +SD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.04731005 +SD,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.185435817 +SD,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.034024421 +SD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.701976405 +SD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.321189973 +SD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.719205137 +SD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.438188772 +SD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.307154273 +SD,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,1.41694 +SD,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.6 +SD,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,34.5677 +SD,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.9 +SD,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,54.7364 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,694.615303 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,55.36947796 +SD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,61045.4805 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,15.82247916 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.100370967 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,22.0505679 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.71565197 +SD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.927917705 +SD,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,2.69045895 +SD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.025496269 +SD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.984365497 +SD,PM10 Filterable,2A1_Cement-production,,TON,34.5894 +SD,PM10 Filterable,2A2_Lime-production,,TON,13.960187 +SD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,5199.333602 +SD,PM10 Filterable,2A6_Other-minerals,,TON,2273.0544 +SD,PM10 Filterable,2C3_Aluminum-production,,TON,3.143478 +SD,PM10 Filterable,2D3d_Coating-application,,TON,2.1 +SD,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,64.1459212 +SD,PM10 Filterable,2H2_Food-and-beverage,,TON,330.6906759 +SD,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,51.8 +SD,PM10 Filterable,3Dc_Other-farm,,TON,171298.4777 +SD,PM10 Filterable,5C_Incineration,biomass,TON,0 +SD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,157.1272434 +SD,PM10 Filterable,5C_Open-burning-residential,,TON,622.34497 +SD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,4.6404225 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.5 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.839609 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,140.6975 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,5.278 +SD,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,21.13009365 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.921211224 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.261710526 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,56.5974 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,754.816746 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,103.6206949 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,111.184851 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.97898547 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +SD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,50.24986656 +SD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,61045.4805 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,14.0757076 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,580.528824 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.4516176 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,112.610247 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,11.64381238 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.94502371 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.077875556 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,335.7660311 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.640901402 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,197.0067213 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.041165791 +SD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.60750085 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,122.7802126 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.006338735 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,16.39625764 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.102927256 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,23.83995743 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.86318067 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,22.13228802 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.643666735 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.192455298 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.59301387 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,36.00457404 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,644.7143352 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.45226272 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,3.14176385 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.056186218 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.159353175 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1677.987135 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.60337926 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006487884 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.58527108 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,118.7297576 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.528390208 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,26.01296349 +SD,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,6.1078506 +SD,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.32282031 +SD,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,35.5 +SD,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,17.6 +SD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5199.333602 +SD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2273.0544 +SD,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,12.3 +SD,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.1 +SD,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,68.1421 +SD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,596.3523835 +SD,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,51.8 +SD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,171298.4777 +SD,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,20281.1759 +SD,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,157.1272434 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,622.34497 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,4.6404225 +SD,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,1.41694 +SD,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.2 +SD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,24.1674 +SD,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.7 +SD,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,54.7364 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,81.0385829 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,54.64973898 +SD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,7150.24673 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,15.82247916 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.100370967 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,22.0505679 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.71565197 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.250159135 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.6489904 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.01959435 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.091400698 +SD,PM2.5 Filterable,2A1_Cement-production,,TON,34.5894 +SD,PM2.5 Filterable,2A2_Lime-production,,TON,2.4602064 +SD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,519.9333602 +SD,PM2.5 Filterable,2A6_Other-minerals,,TON,315.24442 +SD,PM2.5 Filterable,2C3_Aluminum-production,,TON,3.143478 +SD,PM2.5 Filterable,2D3d_Coating-application,,TON,2.1 +SD,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,61.2559212 +SD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,304.0857203 +SD,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,51.8 +SD,PM2.5 Filterable,3Dc_Other-farm,,TON,34258.75858 +SD,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +SD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,121.1293118 +SD,PM2.5 Filterable,5C_Open-burning-residential,,TON,569.93682 +SD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,3.5773149 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.5 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.43960984 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,130.2975 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,5.078 +SD,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.49209934 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.898622809 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.261507916 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,56.5974 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,141.2386778 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,102.9009559 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,107.849307 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.583694265 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +SD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,41.34723555 +SD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,7150.24673 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,10.14605751 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,293.726047 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.3145934 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,54.9604763 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,9.23550433 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.595694399 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.031598561 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,279.8829405 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.925499328 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,149.5881146 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.547920968 +SD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.99108892 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,113.0159272 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.005844195 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,16.39625764 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.102927256 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,23.83995743 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.86318067 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.46831155 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,8.897935962 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.192455298 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.515225188 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,33.12528182 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,643.5855821 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.774502725 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,2.10029475 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.050284304 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.266386322 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1627.647503 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.075423848 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006487884 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.567712 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,109.2315277 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.452537652 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,23.93193339 +SD,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,5.9899736 +SD,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.32282031 +SD,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,35.5 +SD,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,6.1 +SD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,519.9333602 +SD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,315.24442 +SD,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,12.3 +SD,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.1 +SD,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,65.2521 +SD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,569.7473097 +SD,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,51.8 +SD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,34258.75858 +SD,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,11479.7998 +SD,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,121.1293118 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,569.93682 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3.5773149 +SD,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.1 +SD,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,13.4 +SD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,11101.3 +SD,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.7 +SD,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.899785177 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.771612397 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.049699852 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,14.5 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1033.820255 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,58.71843389 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.211636533 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.058561501 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85235E-05 +SD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,27.34208034 +SD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.456917788 +SD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,67.480293 +SD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.431720622 +SD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.3465687 +SD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.192095359 +SD,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.086949348 +SD,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.003591513 +SD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7.955800354 +SD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.243083186 +SD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.93851305 +SD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.766379013 +SD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.49746507 +SD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,37.64624606 +SD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000838102 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,58.62443703 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,177.3739366 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.901626355 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.477772723 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.638888952 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.03393627 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.071007234 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.761355937 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,13.10871253 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,115.490072 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,13.0487293 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.005685985 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.953093575 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,39.1742535 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.604385058 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001128748 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00798002 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.367690923 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.24128297 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.709903843 +SD,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,11.13196102 +SD,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.001686919 +SD,Sulfur Dioxide,2A1_Cement-production,,TON,215 +SD,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.2 +SD,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +SD,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.1 +SD,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +SD,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,2.7 +SD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,154.5 +SD,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,7.3 +SD,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2219.919213 +SD,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +SD,Sulfur Dioxide,5C_Open-burning-residential,,TON,16.3774969 +SD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.2691066 +SD,Volatile Organic Compounds,11C_Other-natural,,TON,354478.92 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.1 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,11.5 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,93.7 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.4 +SD,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,6.3 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.44133648 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,72.31588331 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.298491449 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,68.7 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.89423408 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,21.82642731 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,131.8471604 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,53.80980613 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +SD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,112.2635011 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,97.1835016 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,9491.65976 +SD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,76.876906 +SD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1885.4144 +SD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,15.60815037 +SD,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,12.35063627 +SD,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.503053032 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,767.2851116 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,11.89127511 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,199.909614 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,63.05790913 +SD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,150.842898 +SD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,184.8011353 +SD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.446706987 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.020833333 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.208333333 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.208333333 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.5625 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30.73445756 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,417.1553087 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.113145209 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,3.531407192 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,897.4950665 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,828.4447493 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.89772525 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,4.3394532 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.016525352 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,54.57001113 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1756.990541 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,366.8267965 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.02187982 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.0617735 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4154.759526 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.752364254 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1675.287748 +SD,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,2347.709435 +SD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,221.8242124 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,461.0886852 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3219.869737 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2491.907809 +SD,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,633.1982872 +SD,Volatile Organic Compounds,2A1_Cement-production,,TON,58.1 +SD,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,4.7 +SD,Volatile Organic Compounds,2A6_Other-minerals,,TON,13.5 +SD,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,213.2433 +SD,Volatile Organic Compounds,2B_Chemicals-other,,TON,163.7 +SD,Volatile Organic Compounds,2C3_Aluminum-production,,TON,148 +SD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3431.766705 +SD,Volatile Organic Compounds,2D3d_Coating-application,,TON,2860.095364 +SD,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,723.044568 +SD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.31 +SD,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,149.57563 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,4781.86823 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1173.79661 +SD,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,439.3 +SD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,987.0205825 +SD,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,594.2 +SD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8677.32755 +SD,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,8543.48987 +SD,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,49.5 +SD,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +SD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,107.2162131 +SD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,140.19136 +SD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.2264496 +SD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,15.2564453 +TN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,223.578579 +TN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,18.0882 +TN,Ammonia,1A1b_Pet-refining,natural_gas,TON,6.26511764 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.035043826 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.235331195 +TN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,112.7999178 +TN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.859895222 +TN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,2.38313 +TN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.07273022 +TN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.174873502 +TN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,228.404879 +TN,Ammonia,1A2c_Chemicals,natural_gas,TON,0.125 +TN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,12.28880244 +TN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.337012109 +TN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,10.06382825 +TN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2405.441204 +TN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.90342541 +TN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,355.740832 +TN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.506481595 +TN,Ammonia,1A3biii_Road-bus,light_oil,TON,1.432035807 +TN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.150804745 +TN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,110.1861008 +TN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.555227546 +TN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,86.2623399 +TN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,14.69744235 +TN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.766751 +TN,Ammonia,1A3c_Rail,diesel_oil,TON,8.467581475 +TN,Ammonia,1A3c_Rail,light_oil,TON,0.003981349 +TN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.935151527 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.180988725 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.347115781 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.501584498 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.00314319 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.126222111 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.2092063 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.164189221 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.381619319 +TN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.497640221 +TN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.17598925 +TN,Ammonia,1A4bi_Residential-stationary,biomass,TON,136.0204546 +TN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.497262345 +TN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,9.514844294 +TN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.438857005 +TN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,622.7581135 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.809879152 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.201427457 +TN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02621316 +TN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.01863904 +TN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.72098196 +TN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.450979791 +TN,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.12769 +TN,Ammonia,2A6_Other-minerals,,TON,61.85615 +TN,Ammonia,2B_Chemicals-other,,TON,309.6925 +TN,Ammonia,2C_Iron-steel-alloy,,TON,1.76267 +TN,Ammonia,2C6_Zinc-production,,TON,0.049 +TN,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.011 +TN,Ammonia,2D3d_Coating-application,Other_Fuel,TON,70.1345 +TN,Ammonia,2D3e_Degreasing,,TON,0.3105 +TN,Ammonia,2D3h_Printing,,TON,1.228765 +TN,Ammonia,2H1_Pulp-and-paper,,TON,146.14502 +TN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,12.951 +TN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,323.8975 +TN,Ammonia,3B1a_Cattle-dairy,,TON,2016.869078 +TN,Ammonia,3B1b_Cattle-non-dairy,,TON,9318.526643 +TN,Ammonia,3B2_Manure-sheep,,TON,104.002404 +TN,Ammonia,3B3_Manure-swine,,TON,1163.598124 +TN,Ammonia,3B4_Manure-other,,TON,1908.74904 +TN,Ammonia,3B4_Manure-poultry,,TON,10058.69436 +TN,Ammonia,3B4d_Manure-goats,,TON,913.231836 +TN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,9399.895816 +TN,Ammonia,5A_Solid-waste-disposal,,TON,2.91 +TN,Ammonia,5D1_Wastewater-domestic,,TON,22.017721 +TN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,2.6105 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,373680.7937 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,431074.109 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,23638.52319 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1512159.577 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,27951.14437 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.76010605 +TN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,406147.9483 +TN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,27522865.28 +TN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,367693.289 +TN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4766455.26 +TN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,224508.7244 +TN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,44456.56274 +TN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,6315.38165 +TN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6058973.614 +TN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,70707.06121 +TN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6183870.802 +TN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,433536.0212 +TN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,174295.148 +TN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6656.732611 +TN,Carbon Dioxide,1A3c_Rail,light_oil,TON,308.9310106 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,143063.8809 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,197535.5185 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8772.879192 +TN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,61203.40928 +TN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,456592.7356 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,714802.0427 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,14820.35809 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.5315477 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3208.9592 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,196118.5148 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,88784.5848 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,308157.6308 +TN,Carbon Monoxide,11C_Other-natural,,TON,98306.241 +TN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,17.57 +TN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,56.76524936 +TN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,5025.6363 +TN,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.261791 +TN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,428.7052702 +TN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,572.6750355 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2933.377793 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20130.74977 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1223.420148 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,11542.37397 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,341.4338209 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1542.587022 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,92.23530699 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.395177516 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5044.507413 +TN,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,1.2231 +TN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,89.68 +TN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,9.7393 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6307.016636 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6526.442499 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.55940892 +TN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9158.282104 +TN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6406.95407 +TN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,561723.54 +TN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3578.36759 +TN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,115553.2415 +TN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,626.8453887 +TN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2345.345432 +TN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,41.8344995 +TN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15004.32536 +TN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2429.812382 +TN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11410.09672 +TN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13649.76271 +TN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6896.23863 +TN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2752.224199 +TN,Carbon Monoxide,1A3c_Rail,light_oil,TON,80.03311374 +TN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1242.978361 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,315.268634 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,92.31213487 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,834.8215143 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.021381058 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.824263917 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3442.052711 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,758.1248095 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,47346.66624 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,205.7203676 +TN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,250.7040932 +TN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,122744.9211 +TN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,18491.88345 +TN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,18.11631401 +TN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1269.760509 +TN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,12.19428117 +TN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1875.788035 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3180.400291 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4055.526563 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.818157451 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,31.026505 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,39507.91096 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,177.5171662 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,40446.58991 +TN,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.805 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,47.2246 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.65145 +TN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1480.429342 +TN,Carbon Monoxide,2A1_Cement-production,,TON,522.8 +TN,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,169 +TN,Carbon Monoxide,2A6_Other-minerals,,TON,1655.81671 +TN,Carbon Monoxide,2B_Chemicals-other,,TON,14868.81713 +TN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2931.750356 +TN,Carbon Monoxide,2C3_Aluminum-production,,TON,2109.68551 +TN,Carbon Monoxide,2C5_Lead-production,,TON,18.83 +TN,Carbon Monoxide,2C6_Zinc-production,,TON,5.507 +TN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,7.29 +TN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,29.966 +TN,Carbon Monoxide,2D3d_Coating-application,,TON,41.65646078 +TN,Carbon Monoxide,2D3h_Printing,,TON,30.1 +TN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1876.16314 +TN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1110.089962 +TN,Carbon Monoxide,2H3_Other-industrial-processes,,TON,102.122405 +TN,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,514.016105 +TN,Carbon Monoxide,3F_Ag-res-on-field,,TON,8508.65225 +TN,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,551.407503 +TN,Carbon Monoxide,5C_Incineration,,TON,249.0624389 +TN,Carbon Monoxide,5C_Incineration,biomass,TON,1.052607879 +TN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,17100.19796 +TN,Carbon Monoxide,5C_Open-burning-residential,,TON,7980.1468 +TN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1027.272402 +TN,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,48.59 +TN,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.65 +TN,Methane,1A3bii_Road-LDV,diesel_oil,TON,12.89663639 +TN,Methane,1A3bii_Road-LDV,light_oil,TON,1421.340507 +TN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.67778417 +TN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,352.834689 +TN,Methane,1A3biii_Road-bus,diesel_oil,TON,4.780907947 +TN,Methane,1A3biii_Road-bus,light_oil,TON,5.310434417 +TN,Methane,1A3biii_Road-bus,natural_gas,TON,40.9356943 +TN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,627.8320589 +TN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.32576938 +TN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,95.2662259 +TN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,27.73759237 +TN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.8920697 +TN,Nitrogen Oxides,11C_Other-natural,,TON,16505.7288 +TN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,13.82 +TN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,286.205776 +TN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,26349.934 +TN,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.20002182 +TN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,505.923347 +TN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,414.7678513 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2678.974238 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2669.340784 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,178.6648186 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5068.528221 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1063.779757 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,9717.574655 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,142.1675726 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,5.1509806 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,11363.08895 +TN,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,4.50351 +TN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,111.089 +TN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,11.5999 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,11393.73923 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,115.1029163 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113725322 +TN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3917.439268 +TN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1517.492121 +TN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,73705.4034 +TN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1696.51487 +TN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15219.7842 +TN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1653.428371 +TN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,199.0062116 +TN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,26.9899136 +TN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,49901.43476 +TN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,312.458728 +TN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,36845.81078 +TN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1340.535982 +TN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,327.178804 +TN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,18997.57516 +TN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.235756016 +TN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6114.895443 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,126.3845486 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,348.5563835 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1168.545044 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.217923621 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.070889822 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3174.741552 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1308.467132 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,860.3613951 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,54.60833802 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,556.3715244 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1488.600034 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,280.5326146 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,65.220721 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,41.84800469 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,43.89941525 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4226.705392 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6394.238867 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,73.86261363 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.405578476 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,31.394315 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,426.4515938 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,997.06699 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2124.735793 +TN,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.39 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,32.12611 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,2.61309 +TN,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1164.630419 +TN,Nitrogen Oxides,2A1_Cement-production,,TON,974 +TN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,350 +TN,Nitrogen Oxides,2A6_Other-minerals,,TON,4115.7714 +TN,Nitrogen Oxides,2B_Chemicals-other,,TON,811.1879819 +TN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,378.75482 +TN,Nitrogen Oxides,2C3_Aluminum-production,,TON,160.09231 +TN,Nitrogen Oxides,2C5_Lead-production,,TON,23.7904 +TN,Nitrogen Oxides,2C6_Zinc-production,,TON,34.959 +TN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,234.63 +TN,Nitrogen Oxides,2C7a_Copper-production,,TON,0.02 +TN,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,4.1104 +TN,Nitrogen Oxides,2D3d_Coating-application,,TON,53.7306027 +TN,Nitrogen Oxides,2D3h_Printing,,TON,29.95931 +TN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1210.829 +TN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,592.772 +TN,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,0 +TN,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,56.79707 +TN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,390.2085943 +TN,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,81.6224 +TN,Nitrogen Oxides,5C_Incineration,,TON,145.7843069 +TN,Nitrogen Oxides,5C_Incineration,biomass,TON,7.639427429 +TN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,505.9227211 +TN,Nitrogen Oxides,5C_Open-burning-residential,,TON,563.30476 +TN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,43.5356653 +TN,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,57.79 +TN,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,5.84 +TN,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.003 +TN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.211566733 +TN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1390.969779 +TN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.251688974 +TN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,311.460159 +TN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.522324007 +TN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.851011502 +TN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.355040026 +TN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.329658054 +TN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.093627845 +TN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9.18835189 +TN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,23.35825295 +TN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.42422938 +TN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,35.73302 +TN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.07071559 +TN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1873.0616 +TN,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.008476611 +TN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,52.65824266 +TN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,96.9781513 +TN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.142419 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8452.423635 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,62.39604358 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,377.98321 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.578678345 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.248024345 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,185.7871669 +TN,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.30203 +TN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,42.277284 +TN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.333108 +TN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,41511.352 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,267.8863569 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.9912634 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,305.8687927 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.063665949 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.177957692 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.03293137 +TN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.928542715 +TN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,28.73292785 +TN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.633965265 +TN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,20.37148412 +TN,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.17296 +TN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,3.7157413 +TN,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0632869 +TN,PM10 Filterable,2A1_Cement-production,,TON,480.1857054 +TN,PM10 Filterable,2A2_Lime-production,,TON,97.6784357 +TN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,23895.01097 +TN,PM10 Filterable,2A6_Other-minerals,,TON,5524.179169 +TN,PM10 Filterable,2B_Chemicals-other,,TON,721.0293406 +TN,PM10 Filterable,2C_Iron-steel-alloy,,TON,262.2807652 +TN,PM10 Filterable,2C3_Aluminum-production,,TON,132.313519 +TN,PM10 Filterable,2C5_Lead-production,,TON,42.70055677 +TN,PM10 Filterable,2C6_Zinc-production,,TON,71.1763694 +TN,PM10 Filterable,2C7_Other-metal,,TON,647.1050778 +TN,PM10 Filterable,2C7a_Copper-production,,TON,0.0180435 +TN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,6.16167 +TN,PM10 Filterable,2D3d_Coating-application,,TON,285.8730854 +TN,PM10 Filterable,2D3e_Degreasing,,TON,0 +TN,PM10 Filterable,2D3h_Printing,,TON,0.5876796 +TN,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.5455 +TN,PM10 Filterable,2H1_Pulp-and-paper,,TON,587.8876002 +TN,PM10 Filterable,2H2_Food-and-beverage,,TON,1031.882762 +TN,PM10 Filterable,2H3_Other-industrial-processes,,TON,531.1322438 +TN,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,2.452089214 +TN,PM10 Filterable,2I_Wood-processing,,TON,0.00274 +TN,PM10 Filterable,3Dc_Other-farm,,TON,61219.96033 +TN,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,213.55713 +TN,PM10 Filterable,5C_Incineration,,TON,6.398984 +TN,PM10 Filterable,5C_Incineration,biomass,TON,1.07946 +TN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1720.137642 +TN,PM10 Filterable,5C_Open-burning-residential,,TON,3567.59539 +TN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,169.769174 +TN,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,4.10759 +TN,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,6.84 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,36.36302 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,15.14894596 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5050.1545 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.008476611 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,89.3303794 +TN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,147.9890159 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,218.7930915 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.8068769 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.991768423 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8835.726343 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,78.79125145 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1099.190353 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,11.1518626 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.530639278 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,416.8433837 +TN,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.40475 +TN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,110.0238 +TN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.8766 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,977.3070728 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.66811029 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909275 +TN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,209.0187861 +TN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,41511.352 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,111.9315897 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4171.15131 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,138.765401 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,725.425558 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,125.8422526 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.493488424 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.801319948 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2458.305934 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.87521236 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2716.241666 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,48.04291927 +TN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.1655656 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,640.5758465 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.042893205 +TN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,202.098317 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,273.9656338 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,53.4303004 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,334.3070808 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.069109183 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.394238269 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,123.21599 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,125.5351164 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,54.70986035 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.100583572 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,42.39055599 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,438.5943967 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2674.523477 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,8.573487645 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,33.5357792 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.80447907 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,53.37577915 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,561.4510157 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,20.01067667 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002089863 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.447508 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,427.9431024 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.95614955 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,205.3003788 +TN,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.2678865 +TN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +TN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,3.7157413 +TN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0632869 +TN,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,29.08605099 +TN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,482.8701 +TN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,120.3809193 +TN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,23895.01097 +TN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5722.652984 +TN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,796.0008971 +TN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,697.880638 +TN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,261.652371 +TN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,156.83466 +TN,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,116.132318 +TN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1424.513385 +TN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.083 +TN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,7.6435 +TN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,327.2461078 +TN,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +TN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.6019473 +TN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.6896 +TN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,941.7502408 +TN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2924.114636 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,560.2445612 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,3.398096625 +TN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.00274 +TN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,61231.72335 +TN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1303.056698 +TN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,232.1268 +TN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,8.389703476 +TN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.496155964 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1720.137642 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3567.59539 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,169.769174 +TN,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,4.451 +TN,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,6.84 +TN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,22.25037 +TN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.44671376 +TN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,870.7225 +TN,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0 +TN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,51.70315496 +TN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,90.2204987 +TN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.062419 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7247.973066 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,56.43606388 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,173.206469 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.604834772 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.084506113 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,162.5895772 +TN,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.17203 +TN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,39.6534532 +TN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.323108 +TN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9002.5571 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,241.9347079 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.84607122 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,60.21800487 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.024969009 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.144562732 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.70916516 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.018418755 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,17.56801143 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.024251847 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,17.04568169 +TN,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.04512 +TN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,3.7042179 +TN,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0632869 +TN,PM2.5 Filterable,2A1_Cement-production,,TON,225.2453084 +TN,PM2.5 Filterable,2A2_Lime-production,,TON,33.09949085 +TN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2390.365653 +TN,PM2.5 Filterable,2A6_Other-minerals,,TON,1164.859483 +TN,PM2.5 Filterable,2B_Chemicals-other,,TON,376.1722218 +TN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,181.4152762 +TN,PM2.5 Filterable,2C3_Aluminum-production,,TON,76.73694508 +TN,PM2.5 Filterable,2C5_Lead-production,,TON,30.34937757 +TN,PM2.5 Filterable,2C6_Zinc-production,,TON,69.6010894 +TN,PM2.5 Filterable,2C7_Other-metal,,TON,345.1265628 +TN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.0180435 +TN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,5.11288 +TN,PM2.5 Filterable,2D3d_Coating-application,,TON,140.5840933 +TN,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +TN,PM2.5 Filterable,2D3h_Printing,,TON,0.489077946 +TN,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.4255 +TN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,423.6005638 +TN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,302.2711378 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,307.1394981 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,4.042169127 +TN,PM2.5 Filterable,2I_Wood-processing,,TON,0.000901034 +TN,PM2.5 Filterable,3Dc_Other-farm,,TON,12250.2488 +TN,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,50.68267856 +TN,PM2.5 Filterable,5C_Incineration,,TON,6.378984 +TN,PM2.5 Filterable,5C_Incineration,biomass,TON,0.956551 +TN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1326.054306 +TN,PM2.5 Filterable,5C_Open-burning-residential,,TON,3267.16633 +TN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,132.229624 +TN,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,3.97759 +TN,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.74 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,23.09936 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,12.52463931 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4047.4921 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.008476611 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,88.3799925 +TN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,141.0963633 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,212.1188534 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.53108448 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.987547769 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7631.466668 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,72.80686661 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,717.7589558 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.23957937 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.358041584 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,398.4254638 +TN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.27472 +TN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,107.3999735 +TN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.8666 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,947.9879548 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.2011254 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909275 +TN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,184.4454319 +TN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9002.5571 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,74.96396387 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1321.178115 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,102.5591243 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,220.440396 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,97.8154875 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.596106738 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.289073645 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1977.595472 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.794049694 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2028.107167 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,17.10979553 +TN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.4790823 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,593.6977497 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039539571 +TN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,196.0353444 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,243.2211124 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,54.7096688 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,91.66345801 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.030573451 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.365004846 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,125.2276591 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,121.76911 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,50.47909468 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.100583572 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.11881824 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,403.5248527 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2670.496736 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.66336057 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,22.3708595 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.194766085 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,50.04997501 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,544.6072099 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,18.40994097 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002089863 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.314082 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,393.7091517 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.3574613 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,188.8763836 +TN,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1400465 +TN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +TN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,3.7042179 +TN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0632869 +TN,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,29.08605099 +TN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,247.1097028 +TN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,55.74535446 +TN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2390.365653 +TN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1396.806715 +TN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,446.1588183 +TN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,612.4652853 +TN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,203.5725441 +TN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,127.5542638 +TN,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,114.557027 +TN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,1122.545225 +TN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.083 +TN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,6.5947 +TN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,288.1305957 +TN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +TN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.503345686 +TN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.5696 +TN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,783.7026115 +TN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2420.772554 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,379.6107199 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,5.140868548 +TN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.000901034 +TN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,12262.01183 +TN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,828.895369 +TN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,69.96605456 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,8.385191386 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.357759024 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1326.054306 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3267.16633 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,132.229624 +TN,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,4.321 +TN,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,5.19 +TN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,19.5071255 +TN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,10.44083899 +TN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,120108.401 +TN,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,2.145322 +TN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,29.03773295 +TN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,154.2733664 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.50667217 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.121593592 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.57659973 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1925.485685 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,107.4907738 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,25558.85321 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,46.06759796 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,9.691819044 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,94.78560486 +TN,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.087471 +TN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.46968 +TN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.068 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,28.21626902 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.513164975 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000171141 +TN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,410.7523119 +TN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.495852008 +TN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,546.426616 +TN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.17702688 +TN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,94.6315124 +TN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.925486666 +TN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.88263554 +TN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.033436703 +TN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,52.05563708 +TN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.403827595 +TN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,52.9220498 +TN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.607320451 +TN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.46040692 +TN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,190.0065028 +TN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005644027 +TN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,75.14274585 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,13.94822303 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.13230322 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4815.103254 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.388236932 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.722913766 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,32.90110399 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.709842017 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.624097522 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.193976706 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.157887473 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.321090834 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,41.13563329 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,159.073456 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,231.4502758 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,103.8952671 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,24.81205932 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.43564083 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.270014299 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000363584 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.060584135 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.557764276 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.904406709 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.602769889 +TN,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1826 +TN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0153344 +TN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.192776187 +TN,Sulfur Dioxide,2A1_Cement-production,,TON,80.6 +TN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,56.4 +TN,Sulfur Dioxide,2A6_Other-minerals,,TON,880.4463728 +TN,Sulfur Dioxide,2B_Chemicals-other,,TON,493.6774698 +TN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,280.0301354 +TN,Sulfur Dioxide,2C3_Aluminum-production,,TON,3.14088986 +TN,Sulfur Dioxide,2C5_Lead-production,,TON,0.8885 +TN,Sulfur Dioxide,2C6_Zinc-production,,TON,283.673745 +TN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,4.4739 +TN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.05 +TN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,46.64 +TN,Sulfur Dioxide,2D3d_Coating-application,,TON,4.172404732 +TN,Sulfur Dioxide,2D3h_Printing,,TON,11.04271211 +TN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,941.93075 +TN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,608.15408 +TN,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0 +TN,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,44.82771 +TN,Sulfur Dioxide,3Dc_Other-farm,,TON,8.55 +TN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,185.4927294 +TN,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,27.75892 +TN,Sulfur Dioxide,5C_Incineration,,TON,43.91481109 +TN,Sulfur Dioxide,5C_Incineration,biomass,TON,1.381291006 +TN,Sulfur Dioxide,5C_Open-burning-residential,,TON,93.88407 +TN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.40681157 +TN,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.355 +TN,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.46 +TN,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.001 +TN,Volatile Organic Compounds,11C_Other-natural,,TON,787038.74 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.8 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.5 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.54438199 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,669.57234 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0523583 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,89.7469723 +TN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,558.6754743 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,268.2012019 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,834.7602185 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.730163213 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,377.024157 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.58182675 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,73.66827696 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.972425459 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.133160995 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,610.8408413 +TN,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.4018 +TN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,7.5409 +TN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.6329 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1159.7464 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,485.6876452 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001859406 +TN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1031.027223 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,625.712234 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,51959.0347 +TN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,485.906465 +TN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9733.13223 +TN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,162.0584243 +TN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,128.3839424 +TN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.84770723 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5085.956558 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,81.20389419 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2519.780045 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,647.171294 +TN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1243.47708 +TN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1030.241203 +TN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.263135864 +TN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,139.8873093 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,13.79235245 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.80416677 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,90.27180888 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.005244771 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.061507375 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,244.5013891 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,174.3238701 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2520.986948 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.642285764 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,57.68140014 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9470.982401 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4585.825808 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.53808353 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,46.17313455 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.707199209 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,228.7238775 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,586.7012244 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,291.5264712 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007047371 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.0662595 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13782.66775 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,45.40143032 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,14396.76809 +TN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,536.3520944 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,333.6590205 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,3357.101734 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,16798.59167 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,16173.68028 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,11.3889 +TN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1050.089808 +TN,Volatile Organic Compounds,2A1_Cement-production,,TON,6 +TN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,1.6 +TN,Volatile Organic Compounds,2A6_Other-minerals,,TON,99.86279997 +TN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1478.776481 +TN,Volatile Organic Compounds,2B_Chemicals-other,,TON,4854.53694 +TN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,271.4736592 +TN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,2582.99209 +TN,Volatile Organic Compounds,2C5_Lead-production,,TON,51.8076 +TN,Volatile Organic Compounds,2C6_Zinc-production,,TON,2.3624 +TN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,240.6788 +TN,Volatile Organic Compounds,2C7a_Copper-production,,TON,5.82 +TN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,28950.04615 +TN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,13.0276 +TN,Volatile Organic Compounds,2D3d_Coating-application,,TON,23847.92124 +TN,Volatile Organic Compounds,2D3e_Degreasing,,TON,5606.679099 +TN,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,13.7549996 +TN,Volatile Organic Compounds,2D3h_Printing,,TON,2472.323936 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,321.1382393 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1297.912937 +TN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1055.618045 +TN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,9543.804822 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4305.770764 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,1.442062247 +TN,Volatile Organic Compounds,2I_Wood-processing,,TON,7.31 +TN,Volatile Organic Compounds,3Dc_Other-farm,,TON,103.07 +TN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4581.000978 +TN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,708.1452681 +TN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,86.6751294 +TN,Volatile Organic Compounds,5C_Incineration,,TON,36.59475811 +TN,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.260935925 +TN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1173.741131 +TN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,803.64814 +TN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,189.784308 +TN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,135.2781693 +TN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,74.8309799 +TN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,48.032998 +TN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,732.02 +TX,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,686.6801 +TX,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,113.9024 +TX,Ammonia,1A1a_Public-Electricity,hard_coal,TON,499.7941 +TX,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,9.7181 +TX,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2271.055986 +TX,Ammonia,1A1b_Pet-refining,heavy_oil,TON,3.535835678 +TX,Ammonia,1A1b_Pet-refining,light_oil,TON,13.77358906 +TX,Ammonia,1A1b_Pet-refining,natural_gas,TON,330.5788753 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.982482305 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,158.6246828 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,225.3320571 +TX,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,72.7880707 +TX,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,60.5831 +TX,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.30142072 +TX,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.524812869 +TX,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1374.471262 +TX,Ammonia,1A2c_Chemicals,natural_gas,TON,50.9519 +TX,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,14.65688703 +TX,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,4.429190047 +TX,Ammonia,1A2g_Construction_and_Mining,natural_gas,TON,0.410011574 +TX,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,39.27496309 +TX,Ammonia,1A3bii_Road-LDV,light_oil,TON,7194.403733 +TX,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,37.66795619 +TX,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1226.802858 +TX,Ammonia,1A3biii_Road-bus,diesel_oil,TON,10.0819658 +TX,Ammonia,1A3biii_Road-bus,light_oil,TON,4.112153926 +TX,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.458454204 +TX,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,252.3327 +TX,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,7.056560418 +TX,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,227.6850689 +TX,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,45.02480838 +TX,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60.87831988 +TX,Ammonia,1A3c_Rail,diesel_oil,TON,37.25413441 +TX,Ammonia,1A3c_Rail,light_oil,TON,0.001107244 +TX,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7.271245613 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.126708717 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.206789662 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.399372288 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,115.2836622 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.58205404 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,22.10948032 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,171.752937 +TX,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.23615517 +TX,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.96539999 +TX,Ammonia,1A4bi_Residential-stationary,biomass,TON,315.7791618 +TX,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.035644142 +TX,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,1.15024953 +TX,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.059516368 +TX,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2165.176392 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.51132959 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,72.89908541 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.028677751 +TX,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,6.142014534 +TX,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.304198455 +TX,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.542885681 +TX,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0283 +TX,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.35 +TX,Ammonia,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0028 +TX,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.999 +TX,Ammonia,2A1_Cement-production,,TON,104.1081 +TX,Ammonia,2A2_Lime-production,Other_Fuel,TON,21.9838 +TX,Ammonia,2A6_Other-minerals,,TON,267.5233 +TX,Ammonia,2B_Chemicals-other,,TON,470.573 +TX,Ammonia,2C_Iron-steel-alloy,,TON,0.127 +TX,Ammonia,2C5_Lead-production,,TON,0.0695 +TX,Ammonia,2C7_Other-metal,Other_Fuel,TON,19.7994 +TX,Ammonia,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0021 +TX,Ammonia,2D3d_Coating-application,,TON,12.1596 +TX,Ammonia,2D3e_Degreasing,,TON,0.3183 +TX,Ammonia,2D3f_Dry-cleaning,Other_Fuel,TON,0.0415 +TX,Ammonia,2D3h_Printing,,TON,9.6615 +TX,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,1.5433 +TX,Ammonia,2H1_Pulp-and-paper,,TON,210.9299 +TX,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,210.8261 +TX,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,269.3954 +TX,Ammonia,3B1a_Cattle-dairy,,TON,43616.22723 +TX,Ammonia,3B1b_Cattle-non-dairy,,TON,93405.45892 +TX,Ammonia,3B2_Manure-sheep,,TON,3302.8215 +TX,Ammonia,3B3_Manure-swine,,TON,9481.484852 +TX,Ammonia,3B4_Manure-other,,TON,5898.9612 +TX,Ammonia,3B4_Manure-poultry,,TON,38377.29952 +TX,Ammonia,3B4d_Manure-goats,,TON,7948.160088 +TX,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,60118.26129 +TX,Ammonia,5A_Solid-waste-disposal,,TON,0.334735 +TX,Ammonia,5C_Incineration,biomass,TON,0.987 +TX,Ammonia,5C_Open-burning-dump,,TON,0.0011 +TX,Ammonia,5D1_Wastewater-domestic,,TON,101.5402863 +TX,Ammonia,5D2_Wastewater-industrial,biomass,TON,32.7885 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1130101.877 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1205809.044 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,49351.37078 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5779945.57 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,120427.6432 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,31.04337921 +TX,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1602223.585 +TX,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,95627580.63 +TX,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1454679.765 +TX,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18403891.57 +TX,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,645196.6749 +TX,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,128444.5328 +TX,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,19532.37195 +TX,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14209003.03 +TX,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,197125.2856 +TX,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16208142.67 +TX,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1353486.548 +TX,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,593043.586 +TX,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,24396.54593 +TX,Carbon Dioxide,1A3c_Rail,light_oil,TON,48.75417529 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,603023.6239 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,827297.7759 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36684.25056 +TX,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,86686.39669 +TX,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,734865.2593 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9632294.534 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,583708.9508 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,12128.5841 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,363807.0429 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20819.80135 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,518209.7876 +TX,Carbon Monoxide,11C_Other-natural,,TON,1088746.531 +TX,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,127550.5559 +TX,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,651.8441065 +TX,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,27307.67683 +TX,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,253.1128813 +TX,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.192105071 +TX,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,14613.89496 +TX,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0.143690086 +TX,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,3.597139557 +TX,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,10137.81597 +TX,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,5.5034 +TX,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,20.6009 +TX,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,2644.6376 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9874.255897 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,62693.08397 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2611.115549 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,9187.649857 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,655.2154216 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,46.40086328 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,72.71623867 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,354.7934381 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,66156.6421 +TX,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,5.4193 +TX,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,4.5352 +TX,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,10899.0303 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2506 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,20.29 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,24122.29746 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,31886.39055 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,2.23979446 +TX,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,38633.08699 +TX,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,21338.3774 +TX,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1589103.026 +TX,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12929.57666 +TX,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,357944.5522 +TX,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1808.974039 +TX,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,6110.474715 +TX,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,128.2578417 +TX,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34369.49795 +TX,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6042.358425 +TX,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28819.81287 +TX,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,34660.03858 +TX,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,23953.87264 +TX,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,12356.66945 +TX,Carbon Monoxide,1A3c_Rail,light_oil,TON,5.342910286 +TX,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2865.734617 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,854.186502 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,32.98335305 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.181368204 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.248191055 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8475.842999 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3197.845539 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,226555.6585 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,861.5242668 +TX,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,340.9587954 +TX,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,231660.7479 +TX,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,36418.37022 +TX,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.178220675 +TX,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,158.159387 +TX,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.297581825 +TX,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4734.671663 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,32254.2174 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,28484.83413 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,117.301911 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,85874.31851 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,42.47949423 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,76553.96379 +TX,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,61870.12155 +TX,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2.0804 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,70.12159473 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,31.23540527 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,27.2679 +TX,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,71325.5548 +TX,Carbon Monoxide,2A1_Cement-production,,TON,1374.4893 +TX,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,962.805 +TX,Carbon Monoxide,2A6_Other-minerals,,TON,12467.3069 +TX,Carbon Monoxide,2B_Chemicals-other,,TON,12585.7742 +TX,Carbon Monoxide,2C_Iron-steel-alloy,,TON,7438.5364 +TX,Carbon Monoxide,2C3_Aluminum-production,,TON,927.0242 +TX,Carbon Monoxide,2C5_Lead-production,,TON,648.2466 +TX,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,152.691 +TX,Carbon Monoxide,2C7a_Copper-production,,TON,836.5827 +TX,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,135.014252 +TX,Carbon Monoxide,2D3d_Coating-application,,TON,75.2039 +TX,Carbon Monoxide,2D3e_Degreasing,,TON,5.2803 +TX,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.1876 +TX,Carbon Monoxide,2D3h_Printing,,TON,20.7764 +TX,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,9.1715 +TX,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3861.4356 +TX,Carbon Monoxide,2H2_Food-and-beverage,,TON,2531.102898 +TX,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,64.9545 +TX,Carbon Monoxide,3F_Ag-res-on-field,,TON,42269.15518 +TX,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1028.409791 +TX,Carbon Monoxide,5C_Incineration,,TON,0.436658255 +TX,Carbon Monoxide,5C_Incineration,biomass,TON,372.2341985 +TX,Carbon Monoxide,5C_Open-burning-dump,,TON,0.9172 +TX,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,34216.90626 +TX,Carbon Monoxide,5C_Open-burning-residential,,TON,12608.36636 +TX,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,957.788783 +TX,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.2458 +TX,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,17.082 +TX,Carbon Monoxide,5D3_Wastewater-commertial,Other_Fuel,TON,5.9537 +TX,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,11.811 +TX,Methane,1A3bii_Road-LDV,diesel_oil,TON,49.98804558 +TX,Methane,1A3bii_Road-LDV,light_oil,TON,3919.106171 +TX,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,38.16069151 +TX,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1043.681056 +TX,Methane,1A3biii_Road-bus,diesel_oil,TON,12.50887039 +TX,Methane,1A3biii_Road-bus,light_oil,TON,13.56996251 +TX,Methane,1A3biii_Road-bus,natural_gas,TON,129.7134232 +TX,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1482.725933 +TX,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,5.931726357 +TX,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,280.9713332 +TX,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,54.99795596 +TX,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,54.93631137 +TX,Nitrogen Oxides,11C_Other-natural,,TON,113588.4842 +TX,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,62311.74911 +TX,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,875.1121003 +TX,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,50818.86646 +TX,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,125.4555875 +TX,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.665402585 +TX,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,28757.72324 +TX,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0.068129627 +TX,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,6.955868762 +TX,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,16031.1598 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,6.5887 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,24.5269 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1924.3006 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8113.317603 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9742.325396 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,380.0794244 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2871.917927 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2358.018664 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,78.74218261 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,877.2065422 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,191.7517821 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,111321.7475 +TX,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,6.7394 +TX,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,11.8262 +TX,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,14400.1834 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.1089 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,22.9168 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,38799.69778 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,419.3362275 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.4556649 +TX,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,8377.087724 +TX,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,5733.003788 +TX,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,199768.3998 +TX,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6369.880507 +TX,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46181.23028 +TX,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4656.079407 +TX,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,525.608465 +TX,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,82.46064835 +TX,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,115076.9591 +TX,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,814.9279262 +TX,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,91358.59646 +TX,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,3561.585933 +TX,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1100.293301 +TX,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,72274.81185 +TX,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.418307921 +TX,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,22762.42498 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,1091.793802 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,308.6556689 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,11.64390056 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.117571542 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9393.840637 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5144.191015 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3033.207457 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,229.1219969 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,735.0045767 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2018.879156 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,652.5016102 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.641594774 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,4.581099125 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.07129497 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,11614.00472 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,60663.63535 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1456.168082 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,108.027648 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,663.5699273 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,233.5931137 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2740.008807 +TX,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,68380.19743 +TX,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.5737 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,49.04170822 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,7.152791778 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,8.2135 +TX,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,129847.1598 +TX,Nitrogen Oxides,2A1_Cement-production,,TON,5515.4432 +TX,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2035.649 +TX,Nitrogen Oxides,2A6_Other-minerals,,TON,18664.9967 +TX,Nitrogen Oxides,2B_Chemicals-other,,TON,5286.6221 +TX,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1339.3236 +TX,Nitrogen Oxides,2C3_Aluminum-production,,TON,216.0731 +TX,Nitrogen Oxides,2C5_Lead-production,,TON,50.1477 +TX,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,49.5778 +TX,Nitrogen Oxides,2C7a_Copper-production,,TON,22.3141 +TX,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,10.627 +TX,Nitrogen Oxides,2D3d_Coating-application,,TON,75.3795 +TX,Nitrogen Oxides,2D3e_Degreasing,,TON,2.0195 +TX,Nitrogen Oxides,2D3h_Printing,,TON,24.6355 +TX,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,14.5183 +TX,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2886.8393 +TX,Nitrogen Oxides,2H2_Food-and-beverage,,TON,100.9889 +TX,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,42.0377 +TX,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1779.421443 +TX,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,243.9572 +TX,Nitrogen Oxides,5C_Incineration,,TON,135.2939591 +TX,Nitrogen Oxides,5C_Incineration,biomass,TON,319.8937096 +TX,Nitrogen Oxides,5C_Open-burning-dump,,TON,1.622 +TX,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1012.334962 +TX,Nitrogen Oxides,5C_Open-burning-residential,,TON,890.0024378 +TX,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,42.5683877 +TX,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.0578 +TX,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,5.9874 +TX,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,11.3147 +TX,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,4.826745993 +TX,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,4212.437483 +TX,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.866044092 +TX,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,997.3457512 +TX,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.532706804 +TX,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,5.367452222 +TX,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.067753307 +TX,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13.0256134 +TX,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.039806273 +TX,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.65858114 +TX,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,66.06589249 +TX,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.324436479 +TX,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,9405.521084 +TX,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,194.6294854 +TX,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,5056.526134 +TX,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,87.9147 +TX,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0259774 +TX,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,1820.878719 +TX,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,1.002628384 +TX,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,2759.851523 +TX,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.3223737 +TX,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,1.194567553 +TX,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,64.8722457 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.07196735 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,867.2329237 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,127.429894 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7.87689288 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,291.8425113 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.307730157 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,3037.676087 +TX,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,1.2842611 +TX,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,1.27477 +TX,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,580.2995918 +TX,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.12357427 +TX,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.69749 +TX,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1724211.383 +TX,PM10 Filterable,1A3c_Rail,diesel_oil,TON,53 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,515.232225 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.434008089 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.134477428 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.694184426 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,179.0375527 +TX,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.038495661 +TX,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,3.9722743 +TX,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.064277655 +TX,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,22.81969933 +TX,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1327.820686 +TX,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0638 +TX,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.9418 +TX,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.2259 +TX,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,687.6823689 +TX,PM10 Filterable,2A1_Cement-production,,TON,1010.886485 +TX,PM10 Filterable,2A2_Lime-production,,TON,456.9986168 +TX,PM10 Filterable,2A5b_Construction-and-demolition,,TON,288137.336 +TX,PM10 Filterable,2A6_Other-minerals,,TON,20296.04151 +TX,PM10 Filterable,2B_Chemicals-other,,TON,1577.354301 +TX,PM10 Filterable,2C_Iron-steel-alloy,,TON,450.2180846 +TX,PM10 Filterable,2C3_Aluminum-production,,TON,402.9300974 +TX,PM10 Filterable,2C5_Lead-production,,TON,28.1703051 +TX,PM10 Filterable,2C6_Zinc-production,,TON,0.7312 +TX,PM10 Filterable,2C7_Other-metal,,TON,1359.859959 +TX,PM10 Filterable,2C7a_Copper-production,,TON,37.5784512 +TX,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0151 +TX,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,241.8179753 +TX,PM10 Filterable,2D3d_Coating-application,,TON,116.9916 +TX,PM10 Filterable,2D3e_Degreasing,,TON,3.21 +TX,PM10 Filterable,2D3f_Dry-cleaning,,TON,0.0083 +TX,PM10 Filterable,2D3h_Printing,,TON,2.8917 +TX,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,35.678434 +TX,PM10 Filterable,2H1_Pulp-and-paper,,TON,1563.740651 +TX,PM10 Filterable,2H2_Food-and-beverage,,TON,8862.886554 +TX,PM10 Filterable,2H3_Other-industrial-processes,,TON,6693.912423 +TX,PM10 Filterable,2I_Wood-processing,,TON,9.7681 +TX,PM10 Filterable,3Dc_Other-farm,,TON,314218.9323 +TX,PM10 Filterable,5A_Solid-waste-disposal,,TON,484.6293977 +TX,PM10 Filterable,5C_Incineration,,TON,0.503869 +TX,PM10 Filterable,5C_Incineration,biomass,TON,57.05231518 +TX,PM10 Filterable,5C_Open-burning-dump,,TON,0.1254 +TX,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3441.937549 +TX,PM10 Filterable,5C_Open-burning-residential,,TON,5636.681789 +TX,PM10 Filterable,5C_Open-burning-yard-waste,,TON,158.605296 +TX,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0275185 +TX,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,2.58012517 +TX,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.6007029 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,10006.8064 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,210.6754 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5578.0035 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,90.2193 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0276 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3664.8877 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.836636772 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4551.907263 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.4993 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,1.8456 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,167.1463 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,663.2346979 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,124.7992796 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.385712152 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.071842765 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1111.973183 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,230.2881339 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,9.228484093 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,332.1611633 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,10.17933327 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5963.047512 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.721 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,1.6622 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1148.3575 +TX,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.141 +TX,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.8355 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,3885.855185 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,188.1359388 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003637823 +TX,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,601.4276587 +TX,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1724211.383 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,413.3252654 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,13419.06691 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,497.2937237 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,2616.507545 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,370.7867573 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,18.74729783 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.518904344 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,5772.831529 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,23.80040313 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,6657.154914 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,130.4364877 +TX,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,58.39605738 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,2107.97514 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.005105698 +TX,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,856.8434532 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,475.6932739 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.439728905 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.540207358 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.533420367 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,346.2522375 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,538.1954404 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,229.1028002 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.601974458 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,56.75347698 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,920.0150464 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5459.626157 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.084833071 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,4.57365445 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.141648978 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,61.542356 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5413.02822 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,99.24471777 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,16.9435521 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,733.2903839 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.041500165 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,367.3677081 +TX,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1934.077295 +TX,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0638 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.9418 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.2371 +TX,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1472.077414 +TX,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1048.5989 +TX,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,518.405 +TX,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,288137.336 +TX,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,20729.42873 +TX,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1984.0011 +TX,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,972.7902 +TX,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,456.599 +TX,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,41.9141 +TX,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.7312 +TX,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1375.758713 +TX,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,57.542 +TX,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0151 +TX,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,253.348151 +TX,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,117.3065 +TX,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.2101 +TX,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.5386 +TX,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.8917 +TX,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,35.7082 +TX,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1995.94991 +TX,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,8941.213553 +TX,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,6704.4672 +TX,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,9.7681 +TX,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,314224.2688 +TX,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6759.402504 +TX,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,520.0948 +TX,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.602756062 +TX,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,53.28144126 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.1254 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3441.937549 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5636.681789 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,158.605296 +TX,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0303 +TX,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.8501 +TX,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.9828 +TX,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,5803.418224 +TX,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,194.4058161 +TX,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1672.290819 +TX,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,50.0779 +TX,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0259774 +TX,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1814.87001 +TX,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,0.457511408 +TX,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,2201.76496 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.320695 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.865031353 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,60.7866873 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.010864164 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,589.0324875 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,70.94474164 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.584638975 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,181.4065178 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,4.889748744 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2864.671232 +TX,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,1.2733611 +TX,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,1.046655 +TX,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,533.646829 +TX,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.07433887 +TX,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.69749 +TX,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,187385.2352 +TX,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,51.33 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,464.8495481 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.118388323 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.75734951 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.504350573 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,172.4162148 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.029584639 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,2.271053815 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.049398589 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.15733035 +TX,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1303.680212 +TX,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0638 +TX,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.38957234 +TX,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.1262 +TX,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,686.5275301 +TX,PM2.5 Filterable,2A1_Cement-production,,TON,519.4200814 +TX,PM2.5 Filterable,2A2_Lime-production,,TON,270.7668196 +TX,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,28813.7336 +TX,PM2.5 Filterable,2A6_Other-minerals,,TON,4173.99433 +TX,PM2.5 Filterable,2B_Chemicals-other,,TON,1189.101122 +TX,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,301.3889624 +TX,PM2.5 Filterable,2C3_Aluminum-production,,TON,127.5316911 +TX,PM2.5 Filterable,2C5_Lead-production,,TON,10.13844345 +TX,PM2.5 Filterable,2C6_Zinc-production,,TON,0.7312 +TX,PM2.5 Filterable,2C7_Other-metal,,TON,332.7852118 +TX,PM2.5 Filterable,2C7a_Copper-production,,TON,30.63830299 +TX,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0151 +TX,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,195.6051333 +TX,PM2.5 Filterable,2D3d_Coating-application,,TON,98.3873495 +TX,PM2.5 Filterable,2D3e_Degreasing,,TON,2.943634122 +TX,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0.0083 +TX,PM2.5 Filterable,2D3h_Printing,,TON,2.833737663 +TX,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,18.32897307 +TX,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,636.4228641 +TX,PM2.5 Filterable,2H2_Food-and-beverage,,TON,7238.198838 +TX,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,6058.331582 +TX,PM2.5 Filterable,2I_Wood-processing,,TON,5.57461618 +TX,PM2.5 Filterable,3Dc_Other-farm,,TON,62837.93046 +TX,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,216.3182431 +TX,PM2.5 Filterable,5C_Incineration,,TON,0.503869 +TX,PM2.5 Filterable,5C_Incineration,biomass,TON,35.92963298 +TX,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.0865797 +TX,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2653.389908 +TX,PM2.5 Filterable,5C_Open-burning-residential,,TON,5162.012444 +TX,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,122.2693488 +TX,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0275185 +TX,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,1.22013417 +TX,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.3970029 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,6404.7034 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,210.4517309 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2193.768655 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,52.38264 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0276 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3658.878991 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.497524532 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3993.615006 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.497621304 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,1.5160637 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,163.0607376 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,643.0806706 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,124.1390537 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.370761429 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.010839559 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,834.0071893 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,173.625945 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.944384005 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,221.8597331 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,9.677655282 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5789.609324 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.7101 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,1.434085 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1101.704768 +TX,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0917646 +TX,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.8355 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,3769.279366 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,173.198944 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003637823 +TX,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,524.0569888 +TX,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,187385.2352 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,271.8609534 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3599.537528 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,358.4819912 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,667.8651767 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,287.0401583 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.625020488 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.868336918 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,4603.625065 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,12.43343203 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,4909.827287 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,35.93829815 +TX,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,42.05948922 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,2041.494839 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004984372 +TX,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,797.9086699 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,428.160693 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.107246077 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.342044608 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.345184467 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,336.6233118 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,522.049613 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,211.3871056 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.601974458 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,55.05087074 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,846.413719 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5444.803404 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.075921982 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,2.87243588 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.12676991 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,50.69315767 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5250.637905 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,93.4764148 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,16.4352462 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,674.6318053 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.890257318 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,337.9782829 +TX,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1906.340743 +TX,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0638 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.38957234 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.1374 +TX,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1470.922141 +TX,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,557.132479 +TX,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,332.1731612 +TX,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,28813.7336 +TX,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4606.553564 +TX,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1595.747875 +TX,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,823.9609624 +TX,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,181.2005937 +TX,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,23.88224239 +TX,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.7312 +TX,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,347.7140521 +TX,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,50.60185487 +TX,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0151 +TX,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,206.957544 +TX,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,98.7022495 +TX,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.943734122 +TX,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.5386 +TX,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.833737663 +TX,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,18.35873907 +TX,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1068.353999 +TX,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,7284.672733 +TX,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,6068.885748 +TX,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.57461618 +TX,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,62843.26696 +TX,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3962.512207 +TX,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,251.7836457 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.613644 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,44.09357412 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0865797 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2653.389908 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5162.012444 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,122.2693488 +TX,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0303 +TX,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,2.490109 +TX,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.7791 +TX,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,269712.4741 +TX,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,44.45911528 +TX,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,156392.2689 +TX,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,803.8587763 +TX,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.010705662 +TX,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,596.2093465 +TX,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,21516.673 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0399 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.226 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1878.6398 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.97646428 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,26.28740341 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.298832578 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,422.4772765 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3292.473823 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,149.3367026 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5428.001223 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,33.52063331 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,14526.79802 +TX,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.2361 +TX,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,1.9626 +TX,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2116.1938 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.6643 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1537 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,35.4546864 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.120822559 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000684626 +TX,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,964.5214312 +TX,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,13.74116861 +TX,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1900.707638 +TX,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.52702225 +TX,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,365.7354683 +TX,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.534577609 +TX,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.551984768 +TX,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.103413748 +TX,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,121.9325219 +TX,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.915850001 +TX,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,138.4495039 +TX,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,26.89270979 +TX,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.78519267 +TX,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,690.3475321 +TX,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000921199 +TX,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4795.587052 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,23.48937346 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.198456946 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,74.7802666 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,17.44712589 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,105.6256197 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.836208861 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14.31715034 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.811121185 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.497806233 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,12.57063999 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,79.4805485 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.518440967 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,20.2575326 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.5353984 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,71.01047781 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,51.78698335 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.23999554 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.067251309 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,6.439650807 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.985699975 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.011803199 +TX,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,8503.349947 +TX,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0505 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,69.0933 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0185 +TX,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5863.079957 +TX,Sulfur Dioxide,2A1_Cement-production,,TON,5540.687 +TX,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,898.542 +TX,Sulfur Dioxide,2A6_Other-minerals,,TON,9658.5094 +TX,Sulfur Dioxide,2B_Chemicals-other,,TON,18341.0626 +TX,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,685.1016 +TX,Sulfur Dioxide,2C3_Aluminum-production,,TON,31.7019 +TX,Sulfur Dioxide,2C5_Lead-production,,TON,641.0493 +TX,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,40.4991 +TX,Sulfur Dioxide,2C7a_Copper-production,,TON,0.9905 +TX,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,188.6563 +TX,Sulfur Dioxide,2D3d_Coating-application,,TON,0.4832 +TX,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.0066 +TX,Sulfur Dioxide,2D3h_Printing,,TON,0.3527 +TX,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,1.4789 +TX,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2610.3968 +TX,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1.8883 +TX,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2.3849 +TX,Sulfur Dioxide,3F_Ag-res-on-field,,TON,725.6159309 +TX,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,98.13 +TX,Sulfur Dioxide,5C_Incineration,,TON,1.94147264 +TX,Sulfur Dioxide,5C_Incineration,biomass,TON,26.10642877 +TX,Sulfur Dioxide,5C_Open-burning-dump,,TON,0.0205 +TX,Sulfur Dioxide,5C_Open-burning-residential,,TON,148.3337108 +TX,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.19781325 +TX,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.0016 +TX,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,3.5562 +TX,Volatile Organic Compounds,11C_Other-natural,,TON,5853945.81 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,1159.91342 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,44.77529257 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,679.8722286 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,8.927134653 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.020202794 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1794.037621 +TX,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,2891.976239 +TX,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,3410.636609 +TX,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,17948.60185 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.36 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,2.7704 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,385.6049 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,837.4439856 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2941.995178 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9.27294927 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,327.8202745 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,101.9645877 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.131929841 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.841740974 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,26.24851228 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,11978.92587 +TX,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.5557 +TX,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.5025 +TX,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1965.0063 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0136 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.5137 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,4244.64812 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,2172.742588 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.007451555 +TX,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2855.574998 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,2027.633919 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,140456.5662 +TX,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1654.952057 +TX,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28243.60499 +TX,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,477.8815468 +TX,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,371.5249103 +TX,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,15.41852046 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11291.24359 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,221.9833738 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6335.468185 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1533.729626 +TX,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4773.980113 +TX,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,3996.876678 +TX,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.23822704 +TX,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,784.2555538 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,44.00780867 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.21674474 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.348873252 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.205578206 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,754.2421991 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,735.6501803 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,11226.89746 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.696038638 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,77.98870392 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,20371.07902 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6589.075695 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.024950899 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,5.7512519 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.041661468 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,650.9291758 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5254.04285 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1460.107882 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,30.4974477 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,24949.66449 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.90958066 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,25676.37939 +TX,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,647319.0471 +TX,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,7132.696323 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,5927.566132 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,8182.536568 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,35210.60733 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,43454.0141 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,6276.470718 +TX,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,357631.6175 +TX,Volatile Organic Compounds,2A1_Cement-production,,TON,212.6555 +TX,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,31.0286 +TX,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,2.9081 +TX,Volatile Organic Compounds,2A6_Other-minerals,,TON,318.524195 +TX,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,3198.98284 +TX,Volatile Organic Compounds,2B_Chemicals-other,,TON,22870.10968 +TX,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,964.2147 +TX,Volatile Organic Compounds,2C3_Aluminum-production,,TON,217.9341 +TX,Volatile Organic Compounds,2C5_Lead-production,,TON,55.2746 +TX,Volatile Organic Compounds,2C7_Other-metal,,TON,1398.75473 +TX,Volatile Organic Compounds,2C7a_Copper-production,,TON,38.8026 +TX,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,107272.3418 +TX,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,389.61305 +TX,Volatile Organic Compounds,2D3d_Coating-application,,TON,73920.85016 +TX,Volatile Organic Compounds,2D3e_Degreasing,,TON,11970.08619 +TX,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,90.7853575 +TX,Volatile Organic Compounds,2D3h_Printing,,TON,4011.64864 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3242.566053 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,20.42649608 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4587.910525 +TX,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,6178.0708 +TX,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2009.643823 +TX,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4345.2801 +TX,Volatile Organic Compounds,2I_Wood-processing,,TON,38.0048 +TX,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,20466.63462 +TX,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2913.564745 +TX,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,555.203 +TX,Volatile Organic Compounds,5C_Incineration,,TON,0.010861427 +TX,Volatile Organic Compounds,5C_Incineration,biomass,TON,40.24912955 +TX,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.259 +TX,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,12.6737 +TX,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2348.616358 +TX,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1269.736828 +TX,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,178.6352177 +TX,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,533.517367 +TX,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1040.3207 +TX,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,1.0365 +TX,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,48.8564 +TX,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0014 +UT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.768072 +UT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,26.750633 +UT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,146.88969 +UT,Ammonia,1A1b_Pet-refining,natural_gas,TON,13.978653 +UT,Ammonia,1A1g_Other-energy-transf,diesel_oil,TON,0 +UT,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.051671 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.026436177 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.109943943 +UT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.743733168 +UT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.868801434 +UT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.077536454 +UT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.934297484 +UT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.023338006 +UT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,147.8111114 +UT,Ammonia,1A2c_Chemicals,natural_gas,TON,0.771616 +UT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,6.048966873 +UT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.16105218 +UT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.860531468 +UT,Ammonia,1A3bii_Road-LDV,light_oil,TON,902.873743 +UT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.80695437 +UT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,134.168134 +UT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.760385475 +UT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.719305627 +UT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.038985599 +UT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,35.67904756 +UT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.748002513 +UT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.06482895 +UT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.020186931 +UT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.44276828 +UT,Ammonia,1A3c_Rail,diesel_oil,TON,4.17492282 +UT,Ammonia,1A3c_Rail,light_oil,TON,0.001589073 +UT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.019771 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.805673479 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.546047206 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.182451764 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.376442273 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.035508094 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.389177022 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.511656676 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.04679432 +UT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.154827588 +UT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.000838928 +UT,Ammonia,1A4bi_Residential-stationary,biomass,TON,135.1477979 +UT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.490477039 +UT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.62779 +UT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.015707931 +UT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,652.4676174 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.2178674 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.033683653 +UT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010480576 +UT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.888992887 +UT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.21055585 +UT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.299631785 +UT,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.096109 +UT,Ammonia,2A1_Cement-production,,TON,3.11952 +UT,Ammonia,2A2_Lime-production,,TON,0 +UT,Ammonia,2A6_Other-minerals,,TON,87.066676 +UT,Ammonia,2B_Chemicals-other,,TON,44.412232 +UT,Ammonia,2C_Iron-steel-alloy,,TON,1.938941 +UT,Ammonia,2C7_Other-metal,,TON,0 +UT,Ammonia,2C7a_Copper-production,,TON,1.034908 +UT,Ammonia,2D3d_Coating-application,,TON,0 +UT,Ammonia,2D3e_Degreasing,,TON,0 +UT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,28.37681 +UT,Ammonia,3B1a_Cattle-dairy,,TON,4963.906687 +UT,Ammonia,3B1b_Cattle-non-dairy,,TON,4247.23532 +UT,Ammonia,3B2_Manure-sheep,,TON,969.085524 +UT,Ammonia,3B3_Manure-swine,,TON,6048.054388 +UT,Ammonia,3B4_Manure-other,,TON,4099.0596 +UT,Ammonia,3B4_Manure-poultry,,TON,4318.325392 +UT,Ammonia,3B4d_Manure-goats,,TON,120.55164 +UT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1613.27063 +UT,Ammonia,5A_Solid-waste-disposal,,TON,0.69548 +UT,Ammonia,5C_Incineration,,TON,0 +UT,Ammonia,5C_Incineration,biomass,TON,11.41352 +UT,Ammonia,5C_Open-burning-commercial,,TON,0 +UT,Ammonia,5C_Open-burning-industrial,,TON,0 +UT,Ammonia,5D1_Wastewater-domestic,,TON,10.32152668 +UT,Ammonia,6A_Other-commertial,Other_Fuel,TON,863.19716 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,126376.8916 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,120236.131 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8794.86287 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,744248.018 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,13358.79566 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.8800584 +UT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,159086.5547 +UT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10707888.86 +UT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,142692.538 +UT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1851687.15 +UT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,117666.0521 +UT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,22411.1536 +UT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1513.78564 +UT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1960775.943 +UT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,19610.27551 +UT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1761196.807 +UT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,117506.4032 +UT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,66912.2854 +UT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2665.5732 +UT,Carbon Dioxide,1A3c_Rail,light_oil,TON,123.1774519 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,62875.9478 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,86823.59096 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3852.9864 +UT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,19041.95393 +UT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,147374.1573 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,149828.3693 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2518.615622 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.59021462 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1283.0083 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,189360.1859 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25928.70332 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,89978.30541 +UT,Carbon Monoxide,11C_Other-natural,,TON,141121.266 +UT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,18.389902 +UT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,13612.7494 +UT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,567.460965 +UT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,761.602798 +UT,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.001217 +UT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,3.817293 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1211.029098 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6500.643875 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,364.2840678 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,64.47835389 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,443.3459836 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,100.4832387 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.22692584 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,23.60598096 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2131.338471 +UT,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0.525479 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3212.638075 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3152.014832 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.27970452 +UT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3964.271846 +UT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1920.024365 +UT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,209322.076 +UT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1328.71546 +UT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,42506.614 +UT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,357.3185405 +UT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1403.349871 +UT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,11.03225719 +UT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4841.158873 +UT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,550.5126046 +UT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3515.57304 +UT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5561.974621 +UT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3129.78951 +UT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1380.915856 +UT,Carbon Monoxide,1A3c_Rail,light_oil,TON,32.19423039 +UT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12.1599 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,99.18443865 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1599.489612 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,31.19607615 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.98405738 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,287.3982318 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1673.6274 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,333.2252054 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20936.13919 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,90.34743624 +UT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,77.77552084 +UT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,40987.49227 +UT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,16979.66098 +UT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.452382345 +UT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,86.3124556 +UT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.078539646 +UT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1411.268892 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,681.5565857 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,640.2685722 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.394797202 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.406995 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,29873.68739 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,51.84229886 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,12051.62437 +UT,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3336.044849 +UT,Carbon Monoxide,2A1_Cement-production,,TON,2455 +UT,Carbon Monoxide,2A2_Lime-production,,TON,0 +UT,Carbon Monoxide,2A6_Other-minerals,,TON,2398.737674 +UT,Carbon Monoxide,2B_Chemicals-other,,TON,47.351427 +UT,Carbon Monoxide,2C_Iron-steel-alloy,,TON,604.33715 +UT,Carbon Monoxide,2C7_Other-metal,,TON,0 +UT,Carbon Monoxide,2C7a_Copper-production,,TON,77.329222 +UT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +UT,Carbon Monoxide,2D3e_Degreasing,,TON,0 +UT,Carbon Monoxide,2H2_Food-and-beverage,,TON,287.3971647 +UT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,11.775254 +UT,Carbon Monoxide,3F_Ag-res-on-field,,TON,5719.310745 +UT,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +UT,Carbon Monoxide,5C_Incineration,,TON,0 +UT,Carbon Monoxide,5C_Incineration,biomass,TON,29.05289538 +UT,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.1199 +UT,Carbon Monoxide,5C_Open-burning-industrial,,TON,69.33997 +UT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2934.67365 +UT,Carbon Monoxide,5C_Open-burning-residential,,TON,711.52945 +UT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,55.398137 +UT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.11 +UT,Methane,1A3bii_Road-LDV,diesel_oil,TON,6.110569482 +UT,Methane,1A3bii_Road-LDV,light_oil,TON,539.169876 +UT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.23801707 +UT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,127.871269 +UT,Methane,1A3biii_Road-bus,diesel_oil,TON,2.928815445 +UT,Methane,1A3biii_Road-bus,light_oil,TON,3.119772996 +UT,Methane,1A3biii_Road-bus,natural_gas,TON,9.40801509 +UT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,198.7182513 +UT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.808584317 +UT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,32.221749 +UT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.32450596 +UT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.29764859 +UT,Nitrogen Oxides,11C_Other-natural,,TON,8147.8615 +UT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,79.734545 +UT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,55796.923 +UT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1175.845259 +UT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,618.585487 +UT,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.00565 +UT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,3.864371 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,957.6717763 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,741.0431243 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,53.98861202 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,23.69635597 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1681.161638 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1230.770429 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,134.573168 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,27.3997644 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2315.228396 +UT,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,51.209159 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5672.273769 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,57.33754828 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.05686263 +UT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1302.159147 +UT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,653.0092199 +UT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,26294.4919 +UT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,680.295221 +UT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5428.43666 +UT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1074.687713 +UT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,124.8071091 +UT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,7.16282333 +UT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17595.52688 +UT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,78.82733268 +UT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11712.2254 +UT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,482.2802601 +UT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,137.580004 +UT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8107.951935 +UT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.521202604 +UT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,59.8212 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,34.86056213 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4228.044709 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,65.78735198 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,99.33675159 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,22.25523445 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2135.97213 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,575.0666989 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,398.3597111 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23.97964259 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,173.2591465 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,498.8748275 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,301.0106939 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,8.82858973 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,2.85616192 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.282742877 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3255.804717 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1364.34987 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.4515405 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.088061648 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.544444 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,321.8214149 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,291.1869585 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,626.1355474 +UT,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5216.07984 +UT,Nitrogen Oxides,2A1_Cement-production,,TON,1706.79 +UT,Nitrogen Oxides,2A2_Lime-production,,TON,0 +UT,Nitrogen Oxides,2A6_Other-minerals,,TON,1398.128264 +UT,Nitrogen Oxides,2B_Chemicals-other,,TON,158.568494 +UT,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,147.91337 +UT,Nitrogen Oxides,2C7_Other-metal,,TON,0 +UT,Nitrogen Oxides,2C7a_Copper-production,,TON,126.87396 +UT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +UT,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +UT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,117.255533 +UT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,186.8799602 +UT,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +UT,Nitrogen Oxides,5C_Incineration,,TON,0 +UT,Nitrogen Oxides,5C_Incineration,biomass,TON,245.4376575 +UT,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0 +UT,Nitrogen Oxides,5C_Open-burning-industrial,,TON,7.874571 +UT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,86.8247078 +UT,Nitrogen Oxides,5C_Open-burning-residential,,TON,50.225599 +UT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.46213843 +UT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.04 +UT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.48190114 +UT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,512.112917 +UT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.495253116 +UT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,110.855803 +UT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.258091892 +UT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.994622525 +UT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.148257401 +UT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.751119694 +UT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.564724852 +UT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.00175979 +UT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10.02800877 +UT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.926761621 +UT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.920767 +UT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,761.686065 +UT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,26.601533 +UT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,322.810009 +UT,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000392 +UT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.071065 +UT,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.03150181 +UT,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.00214273 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,55.51054612 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,123.3800444 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,36.16933757 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,52.02559804 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.492283944 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,140.4207825 +UT,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.000298 +UT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,112221.0107 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,79.11931099 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,207.795231 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,71.66902464 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.125536914 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.203910901 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.61943486 +UT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.529715301 +UT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.94595548 +UT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.016964555 +UT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.774596248 +UT,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,556.7464 +UT,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,31.482566 +UT,PM10 Filterable,2A1_Cement-production,,TON,122.307816 +UT,PM10 Filterable,2A2_Lime-production,,TON,104.211861 +UT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,34616.27779 +UT,PM10 Filterable,2A6_Other-minerals,,TON,5747.578401 +UT,PM10 Filterable,2B_Chemicals-other,,TON,19.930037 +UT,PM10 Filterable,2C_Iron-steel-alloy,,TON,116.72748 +UT,PM10 Filterable,2C7_Other-metal,,TON,1174.537438 +UT,PM10 Filterable,2C7a_Copper-production,,TON,572.8477018 +UT,PM10 Filterable,2D3d_Coating-application,,TON,3.184656 +UT,PM10 Filterable,2D3e_Degreasing,,TON,0 +UT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,34.755826 +UT,PM10 Filterable,2H2_Food-and-beverage,,TON,56.36762908 +UT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,267.524813 +UT,PM10 Filterable,3Dc_Other-farm,,TON,5668.19 +UT,PM10 Filterable,5A_Solid-waste-disposal,,TON,222.454325 +UT,PM10 Filterable,5C_Incineration,,TON,7.26376 +UT,PM10 Filterable,5C_Incineration,biomass,TON,12.25598 +UT,PM10 Filterable,5C_Open-burning-commercial,,TON,0 +UT,PM10 Filterable,5C_Open-burning-industrial,,TON,68.67575197 +UT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,295.203838 +UT,PM10 Filterable,5C_Open-burning-residential,,TON,318.09537 +UT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,9.1736666 +UT,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.01 +UT,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,2.33 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.501862 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3181.268965 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,104.282891 +UT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,373.345192 +UT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.000461 +UT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.638147 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,71.89963844 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13.00389746 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.119196908 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,59.14418002 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,44.11429602 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,106.4514131 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,57.4989887 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.185396412 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,269.2474966 +UT,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,13.758885 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,494.493347 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,20.8665336 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +UT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,88.01978462 +UT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,112221.0107 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,46.02338077 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1804.381135 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,55.824006 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,318.684122 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,67.29123183 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.134836427 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.187613346 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,785.8507795 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.640106274 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,864.818552 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,17.05534663 +UT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.08354098 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,249.5263682 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.017120398 +UT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.9771 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,81.81724166 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,222.37062 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,77.88780002 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.118374668 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,3.486315096 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,166.8561853 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,55.17703197 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,24.04757674 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.483371708 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,13.14506833 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,142.6146833 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2450.024683 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.167335525 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.82594108 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.037384833 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.61395278 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,120.2072478 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.1374372 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000453879 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.7791173 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,350.5164222 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.828010486 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,59.94561207 +UT,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,92.2221523 +UT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,140.962816 +UT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,126.982869 +UT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,34616.27779 +UT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5786.850796 +UT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,77.562606 +UT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,125.832718 +UT,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1178.272946 +UT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,617.849323 +UT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.184656 +UT,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +UT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,38.048566 +UT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,747.244388 +UT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,268.573133 +UT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,5668.19 +UT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,977.962333 +UT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,222.457307 +UT,PM10 Primary (Filt + Cond),5C_Incineration,,TON,8.132314617 +UT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.84649197 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,75.617405 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,295.203838 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,318.09537 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.1736666 +UT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.01 +UT,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,2.33 +UT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.424523 +UT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,344.76354 +UT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,26.599688 +UT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,29.278113 +UT,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.000392 +UT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.071065 +UT,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.03150181 +UT,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.00214273 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,46.75837006 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,113.5518646 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,20.33992625 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,33.30767158 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.327853335 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,132.1586406 +UT,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.000298 +UT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,12306.04241 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,68.09016437 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,140.3550454 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.367223168 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.391967116 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.195636598 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.63333833 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.407095797 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.19268267 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.01303758 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.726030946 +UT,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,229.82774 +UT,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,31.141566 +UT,PM2.5 Filterable,2A1_Cement-production,,TON,62.960282 +UT,PM2.5 Filterable,2A2_Lime-production,,TON,69.116559 +UT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3461.629779 +UT,PM2.5 Filterable,2A6_Other-minerals,,TON,994.479969 +UT,PM2.5 Filterable,2B_Chemicals-other,,TON,9.41738 +UT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,77.929344 +UT,PM2.5 Filterable,2C7_Other-metal,,TON,863.74816 +UT,PM2.5 Filterable,2C7a_Copper-production,,TON,195.2518728 +UT,PM2.5 Filterable,2D3d_Coating-application,,TON,2.614656 +UT,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +UT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,31.078656 +UT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.092276521 +UT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,61.588517 +UT,PM2.5 Filterable,3Dc_Other-farm,,TON,1075.89 +UT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,53.119022 +UT,PM2.5 Filterable,5C_Incineration,,TON,0.476906 +UT,PM2.5 Filterable,5C_Incineration,biomass,TON,12.25598 +UT,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0 +UT,PM2.5 Filterable,5C_Open-burning-industrial,,TON,16.26006697 +UT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,227.572839 +UT,PM2.5 Filterable,5C_Open-burning-residential,,TON,291.30837 +UT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,7.0720136 +UT,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.01 +UT,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.342162 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.00562 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2764.34704 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,104.281046 +UT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,79.846897 +UT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.000461 +UT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.638147 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,69.74138712 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.88314377 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.117561996 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,50.45844909 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,41.78656905 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,89.6101921 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,38.42186598 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.005654963 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,260.5063975 +UT,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7.705503 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,479.6586784 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.20987133 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000454638 +UT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,75.66228385 +UT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,12306.04241 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,30.60349932 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,636.473901 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40.9092876 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,107.386094 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,53.69162331 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.158592088 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.083432826 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,633.7640939 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.638875521 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,632.211283 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.042713415 +UT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.19426983 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,241.7407114 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015780868 +UT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.917788 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,70.77343565 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,154.8989039 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,14.58110457 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.386150338 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,3.477477267 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,166.9197922 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,53.52177592 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,22.18796387 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.483371708 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.75071206 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,131.2111045 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2445.632067 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.04471643 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.08889637 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.033457879 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,14.565385 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,116.6010287 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.046457944 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000453879 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.7257417 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,322.4758658 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.653175263 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,55.14997866 +UT,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,91.8811473 +UT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,81.615282 +UT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,91.887515 +UT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3461.629779 +UT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1034.079181 +UT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,50.484258 +UT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,87.034582 +UT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,867.483668 +UT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,240.253494 +UT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.614656 +UT,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +UT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,34.371396 +UT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,692.968888 +UT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,62.637157 +UT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1075.89 +UT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,631.0996647 +UT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,53.122004 +UT,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.240774412 +UT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.95118217 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,23.201741 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,227.572839 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,291.30837 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.0720136 +UT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.01 +UT,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.342162 +UT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.085907 +UT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,21584.554 +UT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,31.595723 +UT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,988.495355 +UT,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.000372 +UT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2.952681 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.757638662 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.713434878 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.221749733 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2.637928646 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.40443939 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1939.375965 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,847.0463416 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.335660851 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,178.647581 +UT,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,5.033887 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,13.89477079 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.245260287 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.55705E-05 +UT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,157.2478138 +UT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.370719703 +UT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,211.7628059 +UT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.2289948 +UT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,36.6195659 +UT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.014246727 +UT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.443210875 +UT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.008014782 +UT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16.84898531 +UT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.38782015 +UT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.08716155 +UT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.323845515 +UT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.32328121 +UT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,93.78397115 +UT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00225025 +UT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.735112 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.959662449 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,274.7266012 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,181.7312771 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,77.78199191 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,14.20419704 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.98014641 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.190966686 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.592915843 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.085193311 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.360195866 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.685449251 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,49.82474961 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,20.894311 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,7.78382462 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.669157818 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,20.32379305 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.818638059 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.045910604 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.8961E-05 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024223292 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.436214968 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.556163819 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.635939404 +UT,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.017418616 +UT,Sulfur Dioxide,2A1_Cement-production,,TON,0.2583 +UT,Sulfur Dioxide,2A2_Lime-production,,TON,0 +UT,Sulfur Dioxide,2A6_Other-minerals,,TON,358.129756 +UT,Sulfur Dioxide,2B_Chemicals-other,,TON,6.909847 +UT,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,45.223787 +UT,Sulfur Dioxide,2C7_Other-metal,,TON,0 +UT,Sulfur Dioxide,2C7a_Copper-production,,TON,693.748804 +UT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +UT,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +UT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,29.676576 +UT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,61.1283765 +UT,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +UT,Sulfur Dioxide,5C_Incineration,,TON,0 +UT,Sulfur Dioxide,5C_Incineration,biomass,TON,29.81248693 +UT,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0 +UT,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.921637 +UT,Sulfur Dioxide,5C_Open-burning-residential,,TON,8.3709335 +UT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.531997847 +UT,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0002 +UT,Volatile Organic Compounds,11C_Other-natural,,TON,735698.67 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,5.124117 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,278.18443 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,49.988932 +UT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,256.7812864 +UT,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,535.4464964 +UT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,809.0910912 +UT,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.000448 +UT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.579815 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,98.16442111 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,251.8922672 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.232201501 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.854711225 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.26218484 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,7.887829162 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.840879846 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,3.713986939 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,131.7305996 +UT,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.088639 +UT,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.173741 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,600.6412283 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,228.6660976 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000929704 +UT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,265.43055 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,224.9908399 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,18402.8328 +UT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,188.92654 +UT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3239.32043 +UT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,81.79450308 +UT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,64.25722061 +UT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.15185444 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1630.767268 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,18.46814861 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,811.640726 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,245.3811036 +UT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,490.139394 +UT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,473.0424874 +UT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.248790835 +UT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.368498 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.466403454 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,325.3143307 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.384802628 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.055386336 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,16.20543687 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,146.1102752 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,76.62135936 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1054.469508 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.282037603 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,17.90673045 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3112.916016 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3130.892643 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.343333783 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,3.12 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.010995553 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,186.3014049 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,125.8227932 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,32.9307858 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001530177 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.2257684 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11928.47933 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.25904547 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3920.836672 +UT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,58.59287 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,6.674533976 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,811.8638214 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2482.5886 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3713.760085 +UT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,51240.69675 +UT,Volatile Organic Compounds,2A1_Cement-production,,TON,37.4343 +UT,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +UT,Volatile Organic Compounds,2A6_Other-minerals,,TON,25.673288 +UT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,276.310078 +UT,Volatile Organic Compounds,2B_Chemicals-other,,TON,79.813788 +UT,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,71.368592 +UT,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +UT,Volatile Organic Compounds,2C7a_Copper-production,,TON,5.077426 +UT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,11649.77358 +UT,Volatile Organic Compounds,2D3d_Coating-application,,TON,7447.525113 +UT,Volatile Organic Compounds,2D3e_Degreasing,,TON,644.267748 +UT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,5.409999 +UT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,672.225053 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,133.1474625 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,178.4819642 +UT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,30.5084 +UT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,689.0523102 +UT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,158.431364 +UT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4148.13 +UT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,369.7996378 +UT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0 +UT,Volatile Organic Compounds,5C_Incineration,,TON,2.978059258 +UT,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.18393654 +UT,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,1.581 +UT,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,8.516721 +UT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,201.43332 +UT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,71.655179 +UT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,10.3321918 +UT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,52.0730012 +UT,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,393.47 +VA,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +VA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.02419 +VA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,12.1657305 +VA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,6.204 +VA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,183.7154255 +VA,Ammonia,1A1b_Pet-refining,natural_gas,TON,6.6695 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.716234275 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.183995795 +VA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,120.1920155 +VA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.064399644 +VA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.136977058 +VA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.56318682 +VA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.152257879 +VA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,85.95868084 +VA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.193075 +VA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,17.73300212 +VA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.482643932 +VA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.444890304 +VA,Ammonia,1A3bii_Road-LDV,light_oil,TON,3044.92727 +VA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.557131369 +VA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,119.6896556 +VA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,8.725143957 +VA,Ammonia,1A3biii_Road-bus,light_oil,TON,1.32834143 +VA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.256026511 +VA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,86.11899464 +VA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.454472305 +VA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,55.23744098 +VA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,9.568508666 +VA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.36677005 +VA,Ammonia,1A3c_Rail,diesel_oil,TON,8.00408038 +VA,Ammonia,1A3c_Rail,light_oil,TON,0.005385146 +VA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.174893872 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,10.56896796 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,28.94194698 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.867877277 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.702865652 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.525792836 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,60.90787475 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.167455881 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.388538966 +VA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.003213254 +VA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.61183769 +VA,Ammonia,1A4bi_Residential-stationary,biomass,TON,597.263476 +VA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,60.7725808 +VA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,10.18120926 +VA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.213560442 +VA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,819.1900898 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.843039618 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.182550935 +VA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.03294845 +VA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.961220036 +VA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.743925736 +VA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.592640816 +VA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,76.493 +VA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0103535 +VA,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.065 +VA,Ammonia,2A2_Lime-production,,TON,21.564 +VA,Ammonia,2A6_Other-minerals,Other_Fuel,TON,4.001 +VA,Ammonia,2B_Chemicals-other,,TON,844.5715047 +VA,Ammonia,2D3d_Coating-application,,TON,0.2573185 +VA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,5.023 +VA,Ammonia,2H1_Pulp-and-paper,,TON,131.037 +VA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,9.5582715 +VA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,240.281383 +VA,Ammonia,3B1a_Cattle-dairy,,TON,3584.527064 +VA,Ammonia,3B1b_Cattle-non-dairy,,TON,7383.223034 +VA,Ammonia,3B2_Manure-sheep,,TON,271.284816 +VA,Ammonia,3B3_Manure-swine,,TON,2387.939598 +VA,Ammonia,3B4_Manure-other,,TON,1214.85936 +VA,Ammonia,3B4_Manure-poultry,,TON,17897.13772 +VA,Ammonia,3B4d_Manure-goats,,TON,440.065032 +VA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,9846.94048 +VA,Ammonia,5A_Solid-waste-disposal,,TON,3.401443844 +VA,Ammonia,5D1_Wastewater-domestic,,TON,59.76057118 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,334424.178 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,325733.1876 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18150.50532 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2182008.998 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,40031.09246 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,10.34680445 +VA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,231918.8774 +VA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,29839339 +VA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,124649.5648 +VA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1665908.923 +VA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,581393.6137 +VA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,38437.96679 +VA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,10672.6497 +VA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4440761.148 +VA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,36767.0707 +VA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3572445.851 +VA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,249258.8934 +VA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,110536.6619 +VA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,9005.659972 +VA,Carbon Dioxide,1A3c_Rail,light_oil,TON,417.8801936 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,143465.3693 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,198109.0978 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8778.944539 +VA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,123382.8734 +VA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,783076.3488 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,472866.0001 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13194.60392 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.07149597 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4033.4872 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,129335.4332 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,91609.92767 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,317965.473 +VA,Carbon Monoxide,11C_Other-natural,,TON,92708.6905 +VA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.005 +VA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,552.61435 +VA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,52.7186425 +VA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3699.236 +VA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,38.776 +VA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.0590425 +VA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,640.300606 +VA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,10.8 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3167.291269 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15465.55799 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,939.2448531 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8730.496325 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,105.6582624 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1531.527408 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,59.88681591 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.967185811 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3327.614901 +VA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,11.66575 +VA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,22.01925 +VA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.38472 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,9185.138835 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,9171.772872 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.745878338 +VA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12066.33687 +VA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3121.833406 +VA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,461992.1585 +VA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1576.998566 +VA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,61719.154 +VA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1631.359018 +VA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2598.908701 +VA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,79.79405224 +VA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11821.88642 +VA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1352.068496 +VA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7095.983986 +VA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8771.88663 +VA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5168.115592 +VA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2821.539398 +VA,Carbon Monoxide,1A3c_Rail,light_oil,TON,107.0029568 +VA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1696.252446 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,446.6081291 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,57.75946655 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,216.1760705 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,62.1555362 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.060027707 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2962.786252 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,760.2717104 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,46544.28279 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,206.0306516 +VA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,504.4682358 +VA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,206223.3967 +VA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,70456.8368 +VA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,303.8630861 +VA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1399.916462 +VA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,16.06780777 +VA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1908.785114 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2018.265218 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3895.047554 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.10798716 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,38.993064 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,26993.44484 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,183.1666148 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,41516.62013 +VA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.285984 +VA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12171.2248 +VA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,359.85736 +VA,Carbon Monoxide,2A6_Other-minerals,,TON,1778.695868 +VA,Carbon Monoxide,2B_Chemicals-other,,TON,83.2718896 +VA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3015.569 +VA,Carbon Monoxide,2C7_Other-metal,,TON,4.96 +VA,Carbon Monoxide,2D3d_Coating-application,,TON,0.035875 +VA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.000035 +VA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1888.238984 +VA,Carbon Monoxide,2H2_Food-and-beverage,,TON,767.2318326 +VA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1122.90297 +VA,Carbon Monoxide,3F_Ag-res-on-field,,TON,2852.29654 +VA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,785.2173085 +VA,Carbon Monoxide,5C_Incineration,,TON,2669.711297 +VA,Carbon Monoxide,5C_Incineration,biomass,TON,719.1460216 +VA,Carbon Monoxide,5C_Open-burning-dump,,TON,18.318 +VA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.083185 +VA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,19973.8373 +VA,Carbon Monoxide,5C_Open-burning-residential,,TON,7470.10055 +VA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1358.05327 +VA,Carbon Monoxide,5D3_Wastewater-commertial,Other_Fuel,TON,109.11 +VA,Methane,1A3bii_Road-LDV,diesel_oil,TON,13.01585489 +VA,Methane,1A3bii_Road-LDV,light_oil,TON,1334.93198 +VA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.3764441 +VA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,257.03484 +VA,Methane,1A3biii_Road-bus,diesel_oil,TON,5.671054933 +VA,Methane,1A3biii_Road-bus,light_oil,TON,7.259483136 +VA,Methane,1A3biii_Road-bus,natural_gas,TON,67.74667386 +VA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,424.5271959 +VA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.554072195 +VA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,44.43596212 +VA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,14.20501801 +VA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.5670169 +VA,Nitrogen Oxides,11C_Other-natural,,TON,10790.28002 +VA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.011 +VA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,277.9336 +VA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,5276.812758 +VA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,22692.007 +VA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,314.49 +VA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.274041 +VA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1651.56316 +VA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2.834175 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2515.844746 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2045.724779 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,137.5249986 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5317.728176 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,408.0310811 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,9346.014062 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,617.1964206 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,3.899632265 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6357.550176 +VA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,1.40286 +VA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.81 +VA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,27.28 +VA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.458 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,16490.76983 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,169.1207985 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.151633561 +VA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4541.848862 +VA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,645.2574196 +VA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,63059.91853 +VA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,596.061039 +VA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7268.24946 +VA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5392.539607 +VA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,251.8379044 +VA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,50.297392 +VA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,42577.88243 +VA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,185.1563639 +VA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24445.08074 +VA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1046.897325 +VA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,242.617476 +VA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,18033.20175 +VA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.70781201 +VA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10247.88848 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,152.8171232 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,263.8294109 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,323.2727576 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,80.31900999 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.01773167 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3767.065072 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1312.135299 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,884.5399614 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,54.70338057 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1122.317289 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2591.093189 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,986.9743952 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1093.906663 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,46.3245202 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,57.9110336 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4812.324859 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4091.945265 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,60.04664245 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.247189971 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,39.469146 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,294.2869076 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1028.796256 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2180.38682 +VA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,1.130182 +VA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9576.632211 +VA,Nitrogen Oxides,2A1_Cement-production,,TON,64.9467 +VA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,636.604 +VA,Nitrogen Oxides,2A6_Other-minerals,,TON,3845.2292 +VA,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,7707.051 +VA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,811.7624555 +VA,Nitrogen Oxides,2C3_Aluminum-production,,TON,0 +VA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,35.773478 +VA,Nitrogen Oxides,2D3d_Coating-application,,TON,0.1435 +VA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1859.2194 +VA,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,2.323 +VA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,6362.361174 +VA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,112.9221289 +VA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,170.18137 +VA,Nitrogen Oxides,5C_Incineration,,TON,643.0081102 +VA,Nitrogen Oxides,5C_Incineration,biomass,TON,309.4819078 +VA,Nitrogen Oxides,5C_Open-burning-dump,,TON,1.293 +VA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.185365 +VA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,590.94197 +VA,Nitrogen Oxides,5C_Open-burning-residential,,TON,527.30108 +VA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,64.4382646 +VA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.671021618 +VA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1362.835509 +VA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.605324511 +VA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,262.645616 +VA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.934501819 +VA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.678647617 +VA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.675193967 +VA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.230830465 +VA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.181789519 +VA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.313829292 +VA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.476637 +VA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.629545804 +VA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.00401824 +VA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,23.3326 +VA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,15.78460831 +VA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4580.208144 +VA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,84.0463 +VA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01830513 +VA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,351.5946202 +VA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.027974078 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4523.937039 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.52035287 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,688.3468445 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,146.1725222 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.190296665 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,103.2168304 +VA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.1007 +VA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00793584 +VA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1247008 +VA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,92939.24996 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,356.1561688 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.50830715 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,235.9770909 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.779986065 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.718532084 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.93635718 +VA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,65.6344419 +VA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,31.66285707 +VA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.438384861 +VA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.034638065 +VA,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.504564 +VA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.08909 +VA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0436535 +VA,PM10 Filterable,2A1_Cement-production,,TON,101.5553094 +VA,PM10 Filterable,2A2_Lime-production,,TON,155.8978534 +VA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16896.63081 +VA,PM10 Filterable,2A6_Other-minerals,,TON,8624.44483 +VA,PM10 Filterable,2B_Chemicals-other,,TON,163.5146023 +VA,PM10 Filterable,2C_Iron-steel-alloy,,TON,626.3497339 +VA,PM10 Filterable,2C3_Aluminum-production,,TON,0.373188 +VA,PM10 Filterable,2C5_Lead-production,,TON,6.92152E-06 +VA,PM10 Filterable,2C7_Other-metal,,TON,110.2442856 +VA,PM10 Filterable,2D3d_Coating-application,,TON,27.6955591 +VA,PM10 Filterable,2D3f_Dry-cleaning,,TON,0.033535 +VA,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,4.16 +VA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,26.022992 +VA,PM10 Filterable,2H1_Pulp-and-paper,,TON,817.1000635 +VA,PM10 Filterable,2H2_Food-and-beverage,,TON,71.69649411 +VA,PM10 Filterable,2H3_Other-industrial-processes,,TON,400.2791587 +VA,PM10 Filterable,2I_Wood-processing,,TON,80.8016636 +VA,PM10 Filterable,3Dc_Other-farm,,TON,14227.50396 +VA,PM10 Filterable,5A_Solid-waste-disposal,,TON,93.3684487 +VA,PM10 Filterable,5C_Incineration,,TON,2.330687591 +VA,PM10 Filterable,5C_Incineration,biomass,TON,17.81391491 +VA,PM10 Filterable,5C_Open-burning-dump,,TON,3.448 +VA,PM10 Filterable,5C_Open-burning-industrial,,TON,0.11719 +VA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2009.20207 +VA,PM10 Filterable,5C_Open-burning-residential,,TON,3339.57414 +VA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,236.415982 +VA,PM10 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,27.48 +VA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,8.607160136 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.004158 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,23.3326 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,21.080939 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5031.241475 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,98.387 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0194485 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,620.282847 +VA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +VA,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,19.387 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,196.4897494 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35.67560313 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.37100765 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.030086126 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4682.483122 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,36.05388885 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,756.0265653 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,161.4802747 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.437994336 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,227.6774849 +VA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.1007 +VA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.009018 +VA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.3281605 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1420.741518 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,62.53659196 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001212366 +VA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,209.7769633 +VA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,92939.24996 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,39.1862816 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3371.981767 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,37.8889404 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,211.455208 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,336.7022628 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.844761739 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.222221319 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1769.555862 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.442768354 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1393.74991 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,27.05500427 +VA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.71078122 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,623.6952391 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.058032844 +VA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,518.4399697 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,365.988435 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.55577276 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,254.5344857 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.889974597 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.580396457 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,29.52645889 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,125.8910824 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,54.86728316 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.101255139 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,85.27697395 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,811.300828 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10396.36954 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,144.6388029 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,36.9359182 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.61599859 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,24.6976855 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,356.9301946 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,30.77109172 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001273136 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.5889866 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,254.745853 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.59133404 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,211.8345958 +VA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.08909 +VA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0436535 +VA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,239.1850249 +VA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,103.984245 +VA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,235.0297965 +VA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16897.13841 +VA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,8724.606819 +VA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,169.0734193 +VA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,857.7367775 +VA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.3731885 +VA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0000195 +VA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,110.5078719 +VA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,27.6955581 +VA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.033535 +VA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,11.862 +VA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,26.022992 +VA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1067.982181 +VA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2021.773445 +VA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,402.4896144 +VA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,80.8016636 +VA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,14230.56924 +VA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,483.504536 +VA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,100.364484 +VA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.415690722 +VA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,18.91272793 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,3.448 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.129035 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2009.20207 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3339.57414 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,236.415982 +VA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,27.48 +VA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,8.78261 +VA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.00130924 +VA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,16.93594 +VA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,13.56548047 +VA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,174.311468 +VA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,57.3843 +VA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01830513 +VA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,155.2178719 +VA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.027988469 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3841.038219 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.039827103 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,371.5693118 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,96.31357895 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.047598661 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,99.18982868 +VA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.1007 +VA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00452042 +VA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1169068 +VA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13880.84815 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,308.355501 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.38659817 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,28.50655052 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.988894652 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.481479274 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.99265912 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,50.4412774 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,19.39792963 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.680742748 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.216271865 +VA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.504564 +VA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.08909 +VA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0436535 +VA,PM2.5 Filterable,2A1_Cement-production,,TON,83.3628077 +VA,PM2.5 Filterable,2A2_Lime-production,,TON,132.4983655 +VA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1689.663091 +VA,PM2.5 Filterable,2A6_Other-minerals,,TON,1507.576458 +VA,PM2.5 Filterable,2B_Chemicals-other,,TON,67.5747963 +VA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,497.8599841 +VA,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.373188 +VA,PM2.5 Filterable,2C5_Lead-production,,TON,4.99591E-06 +VA,PM2.5 Filterable,2C7_Other-metal,,TON,49.51741047 +VA,PM2.5 Filterable,2D3d_Coating-application,,TON,24.6471718 +VA,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0.033535 +VA,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,3.45191 +VA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,24.708992 +VA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,661.8102386 +VA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,23.78653266 +VA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,316.7348114 +VA,PM2.5 Filterable,2I_Wood-processing,,TON,80.1773767 +VA,PM2.5 Filterable,3Dc_Other-farm,,TON,2869.564075 +VA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,48.6296487 +VA,PM2.5 Filterable,5C_Incineration,,TON,2.152146323 +VA,PM2.5 Filterable,5C_Incineration,biomass,TON,15.68044081 +VA,PM2.5 Filterable,5C_Open-burning-dump,,TON,3.448 +VA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.11719 +VA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1548.89378 +VA,PM2.5 Filterable,5C_Open-burning-residential,,TON,3058.34623 +VA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,218.7638608 +VA,PM2.5 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,16.93 +VA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,5.399160136 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.001449 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,16.93594 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,18.86180747 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,625.345935 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,71.725 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0194485 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,423.9060987 +VA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +VA,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,19.387 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,190.5095125 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35.42272137 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.365034271 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.030101816 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3999.547184 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,23.56716511 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,439.2187968 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,111.5855719 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.295371705 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,223.5216909 +VA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.1007 +VA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00560258 +VA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.320367 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1378.11898 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,57.57153934 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001212366 +VA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,184.9126928 +VA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13880.84815 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,25.02846474 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1287.486813 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,29.7417207 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,102.8537145 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,275.9491193 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.619685532 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.562101117 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1512.234627 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.449755802 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1130.087527 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.80409771 +VA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.233924165 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,576.7810703 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.053495666 +VA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,488.786325 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,317.0911231 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.36410069 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,48.34883914 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.096684408 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.338706245 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.76861781 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,122.1143839 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,50.62438968 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.101255139 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,82.71866184 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,746.432658 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10392.57372 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,129.4456384 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,24.69215326 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,6.8574809 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,20.37388054 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,346.2223133 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,28.30947717 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001273136 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.4213133 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,234.367957 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.97358919 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,194.8879045 +VA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.08909 +VA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0436535 +VA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,239.1850249 +VA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,85.7917134 +VA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,211.6303126 +VA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1690.170686 +VA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1607.738484 +VA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,73.13361375 +VA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,722.3854047 +VA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.3731885 +VA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,1.75744E-05 +VA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,49.78099778 +VA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,24.64717185 +VA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.033535 +VA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,11.15391 +VA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,24.708992 +VA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,912.6923549 +VA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1973.863482 +VA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,318.945297 +VA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,80.1773767 +VA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2872.629355 +VA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,291.3669985 +VA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,55.625684 +VA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.236135403 +VA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,16.78025858 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,3.448 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.129035 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1548.89378 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3058.34623 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,218.7638608 +VA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,16.93 +VA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.57461 +VA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.03047 +VA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,11.4029 +VA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,55.844878 +VA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,67929.642 +VA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1016.03 +VA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.018122 +VA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,64.398296 +VA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0 +VA,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,2.001 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.59408552 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.301344589 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.471035256 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,410.8891189 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,369.388101 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,10418.73547 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3018.488574 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.4307528 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,34.56460824 +VA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,10.784595 +VA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,11.08485 +VA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,65.2636 +VA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2589235 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,40.72120283 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.734946485 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000228188 +VA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,568.7732329 +VA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.987491053 +VA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,593.7224856 +VA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.07700099 +VA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33.1368171 +VA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.024917188 +VA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.76431993 +VA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.056506156 +VA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38.33512994 +VA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.731080769 +VA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.75290688 +VA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.958289074 +VA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.198498026 +VA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,187.7692604 +VA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007634505 +VA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2495.807518 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.59670179 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,434.0660903 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1054.054736 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,189.076314 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,23.27326065 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.32470069 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.717447572 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.634619625 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.194110664 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.334022382 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,14.27056517 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,194.2672084 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2588.910304 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,187.7924957 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,142.6017972 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,28.85102081 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.87426301 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.240251561 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000221506 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.076150176 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.347601641 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.965010775 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.781091598 +VA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.025 +VA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9.808626046 +VA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,475.373835 +VA,Sulfur Dioxide,2A6_Other-minerals,,TON,3041.004369 +VA,Sulfur Dioxide,2B_Chemicals-other,,TON,203.367064 +VA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,5196.48234 +VA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.305655 +VA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,926.5437025 +VA,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.012729 +VA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2634.215644 +VA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,48.24530891 +VA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,141.1601655 +VA,Sulfur Dioxide,5C_Incineration,,TON,539.8415234 +VA,Sulfur Dioxide,5C_Incineration,biomass,TON,691.404447 +VA,Sulfur Dioxide,5C_Open-burning-dump,,TON,0.2155 +VA,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.03144 +VA,Sulfur Dioxide,5C_Open-burning-residential,,TON,87.8835 +VA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,11.98815424 +VA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.448207 +VA,Volatile Organic Compounds,11C_Other-natural,,TON,779016.769 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.00005 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.0001345 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.90695885 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,529.427441 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,5.894 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.021679 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,201.503256 +VA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,179.376218 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,260.502778 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,636.7223463 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.274939786 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.068073013 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,400.5775195 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.323671034 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,86.75749216 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.443730972 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.039218338 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,465.5139386 +VA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.11295 +VA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.468 +VA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.21256 +VA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02255 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1696.637392 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,676.1966958 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.002479208 +VA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2019.092247 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,310.3618739 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,44651.92027 +VA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,246.846192 +VA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6864.91594 +VA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,402.1720799 +VA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,123.6286656 +VA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,8.731130199 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4162.822803 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,45.20634027 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1559.298964 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,370.6106985 +VA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,907.554556 +VA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,989.1450742 +VA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.214877241 +VA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,278.823065 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,15.91781112 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.525768513 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.075474939 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.415811679 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.239584601 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,177.3704898 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,174.8171228 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2396.831691 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.643453853 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,116.1213167 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,15635.05265 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,12462.32446 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,42.5408029 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,50.9060527 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.249491793 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,186.0227285 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,371.7895337 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,338.0015341 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004295167 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.1367272 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8189.128998 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,46.84633358 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,14573.50241 +VA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,872.4235376 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,523.9086521 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,2686.588433 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11762.87568 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8921.108894 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1370.875579 +VA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8346.896745 +VA,Volatile Organic Compounds,2A1_Cement-production,,TON,0.30927 +VA,Volatile Organic Compounds,2A2_Lime-production,,TON,20.984919 +VA,Volatile Organic Compounds,2A6_Other-minerals,,TON,409.5627012 +VA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,842.5939838 +VA,Volatile Organic Compounds,2B_Chemicals-other,,TON,785.2238277 +VA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,187.1481872 +VA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,82.42 +VA,Volatile Organic Compounds,2C7_Other-metal,,TON,26.45 +VA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,37872.31376 +VA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,0 +VA,Volatile Organic Compounds,2D3d_Coating-application,,TON,24306.66224 +VA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4406.273661 +VA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,48.5824824 +VA,Volatile Organic Compounds,2D3h_Printing,,TON,2078.199436 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,903.5818441 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3842.012304 +VA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,2393.34826 +VA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2411.218429 +VA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2059.453684 +VA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,12302.07981 +VA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,201.293228 +VA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,340.9749006 +VA,Volatile Organic Compounds,5C_Incineration,,TON,1289.72518 +VA,Volatile Organic Compounds,5C_Incineration,biomass,TON,29.71619362 +VA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,6.465 +VA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.006 +VA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1370.98525 +VA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,752.28281 +VA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,277.027929 +VA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,108.6709937 +VA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,27.5784685 +VA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,82.5 +VA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,31.25704569 +VA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.02 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.018886383 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.000347519 +VI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.328360334 +VI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.008998626 +VI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.03252848 +VI,Ammonia,1A3bii_Road-LDV,light_oil,TON,13.35968333 +VI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.022410103 +VI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.722166096 +VI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.006461172 +VI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.001279232 +VI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000142251 +VI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.10557204 +VI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.000675892 +VI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.054021758 +VI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.016180971 +VI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.23654039 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.0113013 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.023126769 +VI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.012385695 +VI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.14046855 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.000761124 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.68745E-06 +VI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.000486686 +VI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.025282341 +VI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.016958405 +VI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.10495368 +VI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,57.028 +VI,Ammonia,5D1_Wastewater-domestic,,TON,0.4224191 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2325.18561 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,667.4771732 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,36.221042 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,40405.46223 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,745.374782 +VI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1395.9432 +VI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,150920.2455 +VI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,795.5482 +VI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10249.78715 +VI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,426.404263 +VI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,36.0502645 +VI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5.875097 +VI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8039.96907 +VI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,17.586523 +VI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3445.1654 +VI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,437.6718892 +VI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1980.8248 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1388.790151 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1914.391354 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.518968 +VI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1523.288145 +VI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,10391.20053 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,93.636453 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.64575304 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,59.57792 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1680.724397 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2088.32735 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7266.306 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,94.98376067 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,51.77815932 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.2539978 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.000692081 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.002831556 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000284584 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.18266E-05 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.003937017 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,168.4174283 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,222.8698076 +VI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,613.1512148 +VI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,15.343962 +VI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,2350.305236 +VI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.537298 +VI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,227.4101442 +VI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1.37261085 +VI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2.493372045 +VI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.03852105 +VI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14.2429724 +VI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.76452159 +VI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.705686 +VI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.39471735 +VI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,80.18102 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.001326929 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000555257 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.3945E-06 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.04626E-05 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.009027546 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.35485315 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,592.5968513 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.246996316 +VI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,6.232766779 +VI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,3544.495838 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.429315456 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.30372337 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.577089 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,462.4301136 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.17489172 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1207.3263 +VI,Carbon Monoxide,2H2_Food-and-beverage,,TON,10.646769 +VI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.001293754 +VI,Carbon Monoxide,5C_Open-burning-residential,,TON,6.11579 +VI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,0.829534 +VI,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.036948054 +VI,Methane,1A3bii_Road-LDV,light_oil,TON,4.675197751 +VI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.015496377 +VI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.549454363 +VI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.005911759 +VI,Methane,1A3biii_Road-bus,light_oil,TON,0.006725155 +VI,Methane,1A3biii_Road-bus,natural_gas,TON,0.03442952 +VI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.07926545 +VI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.001163821 +VI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.05299653 +VI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,0.024739711 +VI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.16244049 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.90666295 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.173367633 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.42426572 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.002768323 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0.006229428 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.003130416 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,4.73066E-05 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,0.004686918 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,304.25215 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,2.146946172 +VI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,112.2443425 +VI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3.234912 +VI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,257.368608 +VI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.130697 +VI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.46111558 +VI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2.61166378 +VI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,0.148419906 +VI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.023551648 +VI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43.3122941 +VI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,0.065428832 +VI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.588294 +VI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1.124977349 +VI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.243447 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.005307718 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.001221565 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.03394E-05 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.18503E-05 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.010747086 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.69764517 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.824483453 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.380204374 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,13.85067944 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,21.76690835 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.860337094 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001437965 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.5808909 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,2.45095295 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.4505577 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,32.088294 +VI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +VI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,0.2752666 +VI,Nitrogen Oxides,5C_Open-burning-residential,,TON,0.431703 +VI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.0368682 +VI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.003107983 +VI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,5.383289639 +VI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.002384516 +VI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.529059877 +VI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.001089465 +VI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.00241502 +VI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0006372 +VI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.009380771 +VI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.001390055 +VI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.005950785 +VI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.024921077 +VI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.02918421 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.000138416 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.006795734 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00117939 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.36533E-06 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.018513334 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000286616 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.001332616 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.91084E-05 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.25992E-06 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.023506364 +VI,PM10 Filterable,2H2_Food-and-beverage,,TON,0.084280778 +VI,PM10 Filterable,5C_Open-burning-residential,,TON,2.73412 +VI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,0.1373668 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.569533679 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.139194196 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.009420179 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.000318357 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.007384704 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.001264765 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,5.44026E-06 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2.4372E-05 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,26.0983522 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.170032027 +VI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,9.798044423 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.148966602 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2.37322714 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.18806419 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.165479455 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,0.185041018 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.001400379 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.000216366 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.623437627 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.000309082 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.086048 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.005979362 +VI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.11739479 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000631618 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.001448111 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.10267E-05 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,4.98019E-06 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.58848E-05 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.21807306 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.528816354 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.002717633 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.053762404 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,10.28264595 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.075367378 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.98699E-05 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.08294101 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,3.118781098 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.46932127 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,4.8411778 +VI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,28.7067139 +VI,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.01814006 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2.73412 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.1373668 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.46041E-05 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.000792835 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000768166 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.91332E-07 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.010076884 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00022027 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000155472 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.09635E-06 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.73679E-06 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.021908527 +VI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.078230625 +VI,PM2.5 Filterable,5C_Open-burning-residential,,TON,2.50388 +VI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0.1058966 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.518453215 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.13583453 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.009205009 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.000214545 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.0013818 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000853541 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.66625E-06 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2.01538E-05 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,25.31542203 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.077129543 +VI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,9.148862815 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.13704877 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2.099404748 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.17301839 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.146386374 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,0.170237404 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.001238802 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.000191402 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.413547136 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.000273419 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.999161 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.005289456 +VI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.10384972 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000565271 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000270966 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.01471E-06 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,4.45707E-06 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.62125E-05 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.181531181 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.48790021 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.002717633 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.022149736 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,9.460468252 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.073106379 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.34803E-05 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.08045277 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,2.869303516 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.45524111 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,4.4538757 +VI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,28.7006743 +VI,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.01814006 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2.50388 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.1058966 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.239761437 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.05813315 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.0039972 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.005896523 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.0275454 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.020105868 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.000100763 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2.81216E-05 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,0.753944168 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.013683636 +VI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,110.2775621 +VI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.011903116 +VI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,2.952997508 +VI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.006843481 +VI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.200564707 +VI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.003659369 +VI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.000705333 +VI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,3.11057E-05 +VI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.069048664 +VI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.000344086 +VI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.02945088 +VI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.008563168 +VI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.03875546 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.011305432 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.005401534 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000451771 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.91411E-05 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.44824E-05 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.026305291 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.035118373 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.000541189 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.02881745 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.189378119 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.001761168 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.17686E-05 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.001125006 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.030516443 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.044794099 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.13211206 +VI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +VI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.04239108 +VI,Sulfur Dioxide,5C_Open-burning-residential,,TON,0.0719505 +VI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.00796616 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.281537813 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.973325466 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.051900999 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.76832E-05 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.83156E-05 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.59367E-05 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,4.73066E-07 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,0.000257781 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,30.95077182 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,13.80171916 +VI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,39.86264345 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1.1537216 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,185.8028795 +VI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.8326239 +VI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.28564669 +VI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,0.252970889 +VI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,0.144135382 +VI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.00410302 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.69891601 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,0.035638577 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.4671595 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,0.625187538 +VI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.630045 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.02312E-05 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.55257E-06 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.44516E-06 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.11454E-07 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.00059109 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.691229859 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,26.79601902 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.004670387 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,1.434014935 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,228.1226778 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.078944056 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.011675524 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.15016208 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,108.0449364 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.06760284 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,360.490982 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,0.38372536 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,64.0420176 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,28.94807266 +VI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.008408468 +VI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,457.799885 +VI,Volatile Organic Compounds,2D3d_Coating-application,,TON,193.766241 +VI,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,33.00069 +VI,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.365 +VI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4.049561233 +VI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.000963431 +VI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,0.615896 +VI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,0.1547146 +VI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,2.1245945 +VT,Ammonia,1A1a_Public-Electricity,biomass,TON,13.1715 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.331475332 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.025597345 +VT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,5.5638805 +VT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.609188 +VT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.68306744 +VT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.194040072 +VT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,4.89504816 +VT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.017601807 +VT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.027903314 +VT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.73749489 +VT,Ammonia,1A3bii_Road-LDV,light_oil,TON,241.0288 +VT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.41681498 +VT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.299445 +VT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.275822431 +VT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.112482586 +VT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.095729326 +VT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.929014282 +VT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.063203877 +VT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.1385397 +VT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.573151694 +VT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.0230198 +VT,Ammonia,1A3c_Rail,diesel_oil,TON,0.200467116 +VT,Ammonia,1A3c_Rail,light_oil,TON,0.000371206 +VT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0961338 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.355004545 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.09415 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.829694965 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.134399921 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.95770395 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.132873133 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.271811774 +VT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.040986229 +VT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.615321574 +VT,Ammonia,1A4bi_Residential-stationary,biomass,TON,369.7880266 +VT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,35.178 +VT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.08205045 +VT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,32.3940113 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.677735047 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.033634969 +VT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00280974 +VT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.759740156 +VT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.07349666 +VT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.453460964 +VT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,4.522 +VT,Ammonia,3B1a_Cattle-dairy,,TON,6309.047448 +VT,Ammonia,3B1b_Cattle-non-dairy,,TON,70.67953121 +VT,Ammonia,3B2_Manure-sheep,,TON,48.6486 +VT,Ammonia,3B3_Manure-swine,,TON,19.1774352 +VT,Ammonia,3B4_Manure-other,,TON,178.59336 +VT,Ammonia,3B4_Manure-poultry,,TON,125.8721508 +VT,Ammonia,3B4d_Manure-goats,,TON,46.01388 +VT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,992.0713743 +VT,Ammonia,5D1_Wastewater-domestic,,TON,1.5682 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,40811.96549 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47686.75732 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2594.079272 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,125218.0481 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2314.083811 +VT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,29557.6104 +VT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2730666.64 +VT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14944.27 +VT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,197563.85 +VT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,91120.0708 +VT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,3521.37309 +VT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4013.5895 +VT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,371426.5093 +VT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1661.001309 +VT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,212041.215 +VT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,16192.8064 +VT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,34655.214 +VT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,619.33066 +VT,Carbon Dioxide,1A3c_Rail,light_oil,TON,28.8396956 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16328.40077 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,22549.13042 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,988.7887911 +VT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,5040.815166 +VT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,45313.70375 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,83393.11253 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2425.118953 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.75896498 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,343.96534 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,117405.0799 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9050.687285 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,31394.771 +VT,Carbon Monoxide,11C_Other-natural,,TON,14709.648 +VT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1095.7 +VT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.16236 +VT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,6.0975 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,199.3977518 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2185.020973 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,133.240155 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,621.880405 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,36.788475 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,23.97666695 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.2146402 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,158.6946517 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,521.9524579 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,529.2804787 +VT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,788.4530975 +VT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,493.31306 +VT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,39764.585 +VT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,119.82873 +VT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4412.3881 +VT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,225.0759205 +VT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,230.1142221 +VT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,28.034647 +VT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,912.874758 +VT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,67.218559 +VT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,429.44799 +VT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,893.915579 +VT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1459.291 +VT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,67.01013462 +VT,Carbon Monoxide,1A3c_Rail,light_oil,TON,7.261970934 +VT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,38.68284 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,313.0844878 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,234.0310853 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.66915541 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.893386649 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,177.0038756 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.52551293 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5260.236535 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23.38886306 +VT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,20.59011167 +VT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,12332.23963 +VT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,47284.91658 +VT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,175.89 +VT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,15.410245 +VT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,322.97682 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,353.3311383 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,712.8758707 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.193392657 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3223334 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14503.67167 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.09611708 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4095.10586 +VT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +VT,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.9 +VT,Carbon Monoxide,2H2_Food-and-beverage,,TON,76.89896656 +VT,Carbon Monoxide,3F_Ag-res-on-field,,TON,331.21198 +VT,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.009648536 +VT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,5358.1925 +VT,Carbon Monoxide,5C_Open-burning-residential,,TON,306.973 +VT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,216.898719 +VT,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.10737533 +VT,Methane,1A3bii_Road-LDV,light_oil,TON,129.053193 +VT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.1710773 +VT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.378974 +VT,Methane,1A3biii_Road-bus,diesel_oil,TON,1.503629947 +VT,Methane,1A3biii_Road-bus,light_oil,TON,0.621889677 +VT,Methane,1A3biii_Road-bus,natural_gas,TON,22.785399 +VT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,40.04448026 +VT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.085378765 +VT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.6557335 +VT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.649648325 +VT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.1741058 +VT,Nitrogen Oxides,11C_Other-natural,,TON,1408.3291 +VT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,264.9 +VT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,32.5952 +VT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,0.869 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,275.999551 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,293.4154328 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19.50521968 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,236.709709 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,164.32856 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,283.002857 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,4.86108235 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,198.1879091 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,943.0149193 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,10.38447703 +VT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,76.32888181 +VT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,90.812323 +VT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,4621.1699 +VT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,59.293672 +VT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,470.13266 +VT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,759.7551788 +VT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,18.974747 +VT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,18.161854 +VT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3275.332072 +VT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,8.5968428 +VT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1339.36435 +VT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,69.14313332 +VT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,76.801985 +VT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,640.4616279 +VT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.130204578 +VT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,190.3021 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,103.745162 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,961.9743991 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,125.9433908 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.246313492 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,226.177205 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,149.3411785 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,108.8082845 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.221470606 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,45.87023384 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,161.1396612 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,568.1172078 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,633.20364 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,55.47689 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,611.66228 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,717.4622689 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.90978885 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.043135457 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3720296 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,172.1357835 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,101.6445398 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,222.416691 +VT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +VT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,10.3943158 +VT,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,2.0528778 +VT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,158.526479 +VT,Nitrogen Oxides,5C_Open-burning-residential,,TON,21.69 +VT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,9.6399429 +VT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.087260077 +VT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,110.695451 +VT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.058176386 +VT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.206369 +VT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.141322188 +VT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.177763159 +VT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.20250015 +VT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.283982721 +VT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.080096929 +VT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.36462967 +VT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.957323974 +VT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.39409026 +VT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,2.030951 +VT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.4130032 +VT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.041458 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,474.505587 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.74351619 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,76.8983112 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.241920021 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.413536027 +VT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,22784.6057 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,246.4574428 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,68.56853343 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,35.76243596 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.182849078 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.410352074 +VT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,37.9922175 +VT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.32861435 +VT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.92706897 +VT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1363.852321 +VT,PM10 Filterable,2A6_Other-minerals,,TON,1078.124 +VT,PM10 Filterable,2D3d_Coating-application,,TON,0 +VT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,65.146762 +VT,PM10 Filterable,2H2_Food-and-beverage,,TON,26.34906356 +VT,PM10 Filterable,3Dc_Other-farm,,TON,2614.002 +VT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,538.99013 +VT,PM10 Filterable,5C_Open-burning-residential,,TON,137.22 +VT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,35.917388 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,2.1 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.44422 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.1091 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.21385641 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.929679985 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.318669883 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,490.931095 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,24.5292405 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,85.7364458 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.556919565 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3.590412343 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,80.89003919 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.618754455 +VT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,16.78157121 +VT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,22784.6057 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,6.022232 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,383.1866 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.2119635 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.607426 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,44.86139368 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.860935177 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.42620482 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,138.9135994 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.375833588 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,91.897558 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.473388798 +VT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.5444557 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,16.35464817 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004008593 +VT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.289514 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,252.2433941 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,155.1930144 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,38.95230443 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.406930576 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.038220069 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14.32766173 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.251852108 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.123939075 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.480703427 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,41.66335326 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7142.382948 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,83.723589 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.335283 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.4073793 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,62.50249961 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.952307354 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000222372 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.4757954 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,169.2646147 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.034303835 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,20.91574965 +VT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1363.852321 +VT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1078.124 +VT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,66.49 +VT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,216.9363374 +VT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,2614.002 +VT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,60.490876 +VT,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.13528474 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,538.99013 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,137.22 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,35.917388 +VT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,1.810951 +VT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.4130032 +VT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.036458 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,389.5400875 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.64037825 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,44.2118155 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.060480068 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.185424773 +VT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,2743.4018 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,213.2080595 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,67.278301 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.35985366 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.141485813 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.219815446 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,29.197738 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.55810135 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.51113788 +VT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,136.3852321 +VT,PM2.5 Filterable,2A6_Other-minerals,,TON,134.76543 +VT,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +VT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,46.846762 +VT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,11.48910622 +VT,PM2.5 Filterable,3Dc_Other-farm,,TON,522.79 +VT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,415.50734 +VT,PM2.5 Filterable,5C_Open-burning-residential,,TON,125.65 +VT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,27.688828 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.88 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.44422 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.1041 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.51530431 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.904844896 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.318578948 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,405.965105 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,22.43210816 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,53.0479316 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.36144547 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3.334033055 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,78.46335809 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.331440912 +VT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,13.89882246 +VT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,2743.4018 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,3.90098266 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,158.940669 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.1124195 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.587957 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,36.39095676 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.55027699 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.19751599 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,115.1272323 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.278238821 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,69.61268 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.442435359 +VT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.689767 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,15.08327018 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003695436 +VT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.100827 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,218.7869454 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,154.0143039 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.75185538 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.365049115 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.846584145 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.89784096 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.76840454 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.123939075 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.376281829 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,38.33176478 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7140.122729 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,74.9291 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,6.56476 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1.98744828 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,60.6273695 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.476122188 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000222372 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.4615212 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,155.7234096 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.973273749 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,19.24247611 +VT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,136.3852321 +VT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,134.76543 +VT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,48.19 +VT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,202.0763663 +VT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,522.79 +VT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,37.96087 +VT,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.13528474 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,415.50734 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,125.65 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,27.688828 +VT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,2.33 +VT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.303645 +VT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.00021625 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.871433985 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.947792702 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.058986472 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,25.81128025 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.883258825 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1150.347685 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,6.79896235 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1.120174627 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.336500407 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.042484958 +VT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11.80674254 +VT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.252950087 +VT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,54.218249 +VT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.12834379 +VT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.922698 +VT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.781965498 +VT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.069918279 +VT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.021249957 +VT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.19193521 +VT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.032979705 +VT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.81468188 +VT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.321514061 +VT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.68809002 +VT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.422129701 +VT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00052693 +VT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.338525 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,11.7750087 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.52600342 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,807.92453 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.53264265 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.164133785 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.309283672 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.413704312 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.021862792 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.095352093 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.82568343 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,246.573509 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,990.948 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,83.14 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,2.7912062 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.564615946 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.044153279 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.86857E-05 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006493411 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.131834668 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.194134606 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.570804386 +VT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +VT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,3.7625552 +VT,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.31614331 +VT,Sulfur Dioxide,5C_Open-burning-residential,,TON,3.63 +VT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.08291702 +VT,Volatile Organic Compounds,11C_Other-natural,,TON,72511.04 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,16.6 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.14896 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.073 +VT,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,37.5 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.85452567 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,90.6505627 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.341273027 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,21.55085745 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.408347 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.286594195 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.047879993 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,12.43615015 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,95.92906296 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,38.72375999 +VT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,36.26493032 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,49.929574 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,3989.6348 +VT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,20.632636 +VT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,444.37915 +VT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,47.8776709 +VT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,11.52022149 +VT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.7837831 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,316.8214945 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,2.44231211 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,94.262782 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,46.58235252 +VT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,183.75254 +VT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,25.71617227 +VT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.273601993 +VT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.353445 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,12.64220601 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.432552929 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.080559732 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.087533896 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.53359739 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,19.89676474 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,264.7288621 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.073234045 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,4.742134663 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,934.3687278 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7564.255734 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,24.624599 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.1574352 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,25.596889 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,65.06774151 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,61.85408065 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000749523 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.86372 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6164.190681 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.628292161 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1316.120587 +VT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,11.248 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,50.96581362 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,263.3378691 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,200.9908983 +VT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,47 +VT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2637.49876 +VT,Volatile Organic Compounds,2D3d_Coating-application,,TON,1439.031013 +VT,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,313.52186 +VT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,46.28867 +VT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,39.737 +VT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,29.13 +VT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,27.29107243 +VT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,188.21354 +VT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,20.1824695 +VT,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.007185073 +VT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,367.78086 +VT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,30.93 +VT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,40.453328 +VT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,7.891 +WA,Ammonia,1A1a_Public-Electricity,biomass,TON,10 +WA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +WA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,52.741 +WA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,8.0091 +WA,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.353558371 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.16135813 +WA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,63.892 +WA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2 +WA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +WA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,16.10255 +WA,Ammonia,1A2c_Chemicals,natural_gas,TON,0 +WA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.97174431 +WA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.383456434 +WA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.981186476 +WA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1996.642741 +WA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.95246026 +WA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,292.409892 +WA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,9.677385624 +WA,Ammonia,1A3biii_Road-bus,light_oil,TON,30.13581807 +WA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.08981216 +WA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,64.75464715 +WA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.122244606 +WA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,57.4019268 +WA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,19.43070004 +WA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.2657965 +WA,Ammonia,1A3c_Rail,diesel_oil,TON,7.732526045 +WA,Ammonia,1A3c_Rail,light_oil,TON,0.002870071 +WA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11.14442677 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.64500202 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.8852 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.478973031 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.025542372 +WA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.583769235 +WA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,7.017822454 +WA,Ammonia,1A4bi_Residential-stationary,biomass,TON,998.1483822 +WA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,20.45399495 +WA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.365164061 +WA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,757.8401519 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.861013064 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.286595023 +WA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027430434 +WA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.535249839 +WA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.775889003 +WA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.790349545 +WA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Ammonia,2A1_Cement-production,,TON,0 +WA,Ammonia,2A6_Other-minerals,,TON,0 +WA,Ammonia,2B_Chemicals-other,,TON,0 +WA,Ammonia,2C_Iron-steel-alloy,,TON,0 +WA,Ammonia,2C3_Aluminum-production,,TON,0.32 +WA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.06 +WA,Ammonia,2D3d_Coating-application,,TON,0.1245 +WA,Ammonia,2D3e_Degreasing,,TON,0 +WA,Ammonia,2H1_Pulp-and-paper,,TON,235 +WA,Ammonia,2H2_Food-and-beverage,,TON,0 +WA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,40.2525 +WA,Ammonia,2I_Wood-processing,,TON,0 +WA,Ammonia,3B1a_Cattle-dairy,,TON,17882.94082 +WA,Ammonia,3B1b_Cattle-non-dairy,,TON,6622.509969 +WA,Ammonia,3B2_Manure-sheep,,TON,185.80056 +WA,Ammonia,3B3_Manure-swine,,TON,164.4010315 +WA,Ammonia,3B4_Manure-other,,TON,1206.348 +WA,Ammonia,3B4_Manure-poultry,,TON,4014.326867 +WA,Ammonia,3B4d_Manure-goats,,TON,228.921 +WA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,19318.0586 +WA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,8 +WA,Ammonia,5C_Incineration,biomass,TON,46.68 +WA,Ammonia,5D1_Wastewater-domestic,,TON,16.85963304 +WA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.23 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,289771.7654 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,289495.4116 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16036.54778 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1719252.401 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,31797.82434 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.76010255 +WA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,322071.4452 +WA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22092625.59 +WA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,290473.938 +WA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3830575.79 +WA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,566709.4094 +WA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,882421.7454 +WA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3616.67829 +WA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3623216.541 +WA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,59150.43744 +WA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3776460.747 +WA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,569207.5223 +WA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,104652.543 +WA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4784.230387 +WA,Carbon Dioxide,1A3c_Rail,light_oil,TON,222.5833117 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,181746.6925 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,250953.1042 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11069.47199 +WA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,71796.65353 +WA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,517044.7735 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,844173.3986 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,20852.75153 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,18.65168451 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3357.9748 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,233735.2071 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,95545.8733 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,331653.4541 +WA,Carbon Monoxide,11C_Other-natural,,TON,128607.67 +WA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1187.8785 +WA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,2.478 +WA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,473 +WA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,137.629 +WA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1601.06 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2345.375355 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13641.04738 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,826.9975234 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,5018.656057 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.402026848 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,88.65063343 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1293.180683 +WA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2.91 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7165.561024 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7477.237941 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.559409173 +WA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12995.04304 +WA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5746.88986 +WA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,581004.977 +WA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3223.4094 +WA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,126936.775 +WA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1848.17569 +WA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,45760.48781 +WA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,27.50901968 +WA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9376.316342 +WA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2350.010709 +WA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8645.27552 +WA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19200.31417 +WA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5124.39527 +WA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2684.95321 +WA,Carbon Monoxide,1A3c_Rail,light_oil,TON,57.99287647 +WA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2722.684277 +WA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),light_oil,TON,159.445 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,836.6510343 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.399196851 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,270.4421514 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,963.0953192 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,60325.00509 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,260.2977605 +WA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,293.2602799 +WA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,142043.086 +WA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,117618.0236 +WA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,102.2700052 +WA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.825819865 +WA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1699.168997 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3671.440198 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6065.615251 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.051523728 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.472458 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,38755.43205 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,191.0370238 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,44320.76243 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.05 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Carbon Monoxide,2A1_Cement-production,,TON,834.789 +WA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,60.504 +WA,Carbon Monoxide,2A6_Other-minerals,,TON,417.049055 +WA,Carbon Monoxide,2B_Chemicals-other,,TON,0 +WA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,421.7505 +WA,Carbon Monoxide,2C3_Aluminum-production,,TON,45574.55 +WA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,9.94 +WA,Carbon Monoxide,2D3d_Coating-application,,TON,0 +WA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3303.1245 +WA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1105.390247 +WA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,4 +WA,Carbon Monoxide,3F_Ag-res-on-field,,TON,25669.83095 +WA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,105.2436935 +WA,Carbon Monoxide,5C_Incineration,,TON,0 +WA,Carbon Monoxide,5C_Incineration,biomass,TON,202.7199574 +WA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,5884.38329 +WA,Carbon Monoxide,5C_Open-burning-residential,,TON,2851.77311 +WA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,7029.840704 +WA,Carbon Monoxide,5C_Other-open-burning,,TON,1609.63186 +WA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,7.732 +WA,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.01 +WA,Methane,1A3bii_Road-LDV,diesel_oil,TON,15.13616694 +WA,Methane,1A3bii_Road-LDV,light_oil,TON,1470.795756 +WA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.30874044 +WA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,375.795722 +WA,Methane,1A3biii_Road-bus,diesel_oil,TON,9.10630907 +WA,Methane,1A3biii_Road-bus,light_oil,TON,97.09002853 +WA,Methane,1A3biii_Road-bus,natural_gas,TON,32.02196815 +WA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,319.5856817 +WA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.445434098 +WA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,68.7109104 +WA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,35.48145114 +WA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.5411367 +WA,Nitrogen Oxides,11C_Other-natural,,TON,15069.3667 +WA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,645.641 +WA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,15.228 +WA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,6627 +WA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,267.2056 +WA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3422.71 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2093.827254 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1800.33035 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,120.6736697 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3431.171564 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.84467825 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,939.694901 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.030039156 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3968.301718 +WA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,4.5 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,12950.84344 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,136.7026219 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.113725304 +WA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3361.952657 +WA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1320.446257 +WA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,72287.2052 +WA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1471.08332 +WA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14808.0113 +WA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5548.411215 +WA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,5453.546479 +WA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,18.54827282 +WA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,33728.10545 +WA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,307.058838 +WA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26510.72699 +WA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2214.545458 +WA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,230.066258 +WA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16079.95296 +WA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.938902378 +WA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,22350.34082 +WA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),light_oil,TON,5.552086 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,206.7962414 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.15622035 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,720.6453965 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1662.251133 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1148.081346 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,69.15021841 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,653.2617329 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1768.563432 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1857.413164 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,368.172246 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.572955425 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4214.297097 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7415.214724 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,101.7780979 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.457658678 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.847233 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,428.8919706 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1072.991162 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2322.474036 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Nitrogen Oxides,2A1_Cement-production,,TON,917.6865 +WA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,54.0435 +WA,Nitrogen Oxides,2A6_Other-minerals,,TON,1105.125293 +WA,Nitrogen Oxides,2B_Chemicals-other,,TON,0 +WA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,128.802 +WA,Nitrogen Oxides,2C3_Aluminum-production,,TON,214.48 +WA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,13.601 +WA,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +WA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3323.4245 +WA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,5.09 +WA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1191.360842 +WA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,108.7935 +WA,Nitrogen Oxides,5C_Incineration,,TON,0 +WA,Nitrogen Oxides,5C_Incineration,biomass,TON,416.4398729 +WA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,174.0940183 +WA,Nitrogen Oxides,5C_Open-burning-residential,,TON,201.301623 +WA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,383.0403824 +WA,Nitrogen Oxides,5C_Other-open-burning,,TON,84.616 +WA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,9.2045 +WA,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.63 +WA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.04838384 +WA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1503.952058 +WA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.102430963 +WA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,336.883509 +WA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.242242711 +WA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,21.70064186 +WA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.361494577 +WA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.630526406 +WA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.62241079 +WA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.72659286 +WA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.83132354 +WA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.97760647 +WA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,44.54578 +WA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.19575073 +WA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,210.756 +WA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,33.002223 +WA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,189.48155 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,388.2203454 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.041384437 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,214.8640622 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,85.8343872 +WA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.0342 +WA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,62618.87 +WA,PM10 Filterable,1A3c_Rail,diesel_oil,TON,14.28 +WA,PM10 Filterable,1A3dii_Domestic-navigation (shipping),light_oil,TON,0.25706505 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,558.697584 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.40628921 +WA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,22.09033 +WA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.394377389 +WA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.494384788 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Filterable,2A1_Cement-production,,TON,31.209 +WA,PM10 Filterable,2A2_Lime-production,,TON,72.454 +WA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,30714.17961 +WA,PM10 Filterable,2A6_Other-minerals,,TON,5005.777756 +WA,PM10 Filterable,2B_Chemicals-other,,TON,19.73689 +WA,PM10 Filterable,2C_Iron-steel-alloy,,TON,0 +WA,PM10 Filterable,2C3_Aluminum-production,,TON,935.8216829 +WA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,23.8327 +WA,PM10 Filterable,2D3d_Coating-application,,TON,1 +WA,PM10 Filterable,2H1_Pulp-and-paper,,TON,977.44664 +WA,PM10 Filterable,2H2_Food-and-beverage,,TON,213.5078904 +WA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,34.7375 +WA,PM10 Filterable,2I_Wood-processing,,TON,11.58 +WA,PM10 Filterable,3Dc_Other-farm,,TON,76775.36433 +WA,PM10 Filterable,3F_Ag-res-on-field,,TON,2962.11 +WA,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,88.3136 +WA,PM10 Filterable,5C_Incineration,,TON,0 +WA,PM10 Filterable,5C_Incineration,biomass,TON,67.76076 +WA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,591.919864 +WA,PM10 Filterable,5C_Open-burning-residential,,TON,1274.91021 +WA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1924.219061 +WA,PM10 Filterable,5C_Other-open-burning,,TON,327.77 +WA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.6995 +WA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0522362 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,46.24204 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.233 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,227 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,60.01435 +WA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,266.365 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,166.7646347 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.77964549 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.030097246 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,400.5992257 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.042301772 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,219.938011 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,211.0663144 +WA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.09 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1110.533963 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,49.68813859 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909276 +WA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,295.1958671 +WA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,62619.19299 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,97.48689534 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3966.149007 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,125.6796774 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,700.543066 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,421.3763779 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,202.4201273 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.540697953 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1734.403779 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,11.73270454 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2055.302925 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,80.18000035 +WA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.0020797 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,466.255379 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.030933184 +WA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1369.800899 +WA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),light_oil,TON,0.26194325 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,573.7753104 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.30986855 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,159.4763663 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,69.50203567 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.388310433 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,49.56647375 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,513.3779728 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,17076.44271 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,48.6805722 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.869090357 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,22.08203267 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,648.7600052 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,40.93844898 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002357824 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.6555806 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,407.5231096 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.47616686 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,220.953733 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,33.393515 +WA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,78.97629932 +WA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,30714.17961 +WA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5039.709963 +WA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,19.73689 +WA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0 +WA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1300.51 +WA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,23.8327 +WA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1 +WA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1233.574513 +WA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2865.690237 +WA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,34.7375 +WA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,11.58 +WA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,76775.36433 +WA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2962.276622 +WA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,93.72 +WA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0 +WA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,75.87131689 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,591.919864 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1274.91021 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1924.219061 +WA,PM10 Primary (Filt + Cond),5C_Other-open-burning,,TON,327.938536 +WA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.6995 +WA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.07 +WA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,34.14002 +WA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.15575053 +WA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,181.756 +WA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,33.002223 +WA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,91.09812 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,349.7147572 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.04021507 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,35.37627693 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,81.30949099 +WA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.0342 +WA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,8964.61 +WA,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,14.28 +WA,PM2.5 Filterable,1A3dii_Domestic-navigation (shipping),light_oil,TON,0.25706505 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,487.5900073 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.456145893 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,16.9768114 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.303086114 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.671915804 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Filterable,2A1_Cement-production,,TON,24.645 +WA,PM2.5 Filterable,2A2_Lime-production,,TON,16.9605 +WA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3071.418211 +WA,PM2.5 Filterable,2A6_Other-minerals,,TON,700.1665819 +WA,PM2.5 Filterable,2B_Chemicals-other,,TON,0 +WA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0 +WA,PM2.5 Filterable,2C3_Aluminum-production,,TON,932.2567991 +WA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,12.565649 +WA,PM2.5 Filterable,2D3d_Coating-application,,TON,1 +WA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,742.236294 +WA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,7.384886734 +WA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,33.6775 +WA,PM2.5 Filterable,2I_Wood-processing,,TON,2.94 +WA,PM2.5 Filterable,3Dc_Other-farm,,TON,15354.61057 +WA,PM2.5 Filterable,3F_Ag-res-on-field,,TON,2923.26 +WA,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,22.3136 +WA,PM2.5 Filterable,5C_Incineration,,TON,0 +WA,PM2.5 Filterable,5C_Incineration,biomass,TON,65.16076 +WA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,456.3113473 +WA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1167.54937 +WA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,1658.310977 +WA,PM2.5 Filterable,5C_Other-open-burning,,TON,285.49 +WA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0522362 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,35.83632 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.193 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,198 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,60.01435 +WA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,167.98157 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,161.7054178 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.58888708 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.027065309 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,361.8924693 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.041106951 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,40.52085605 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,206.6719156 +WA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.09 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1077.217907 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,45.74315154 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000909276 +WA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,249.3583048 +WA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8965.028138 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,66.07158587 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1547.959354 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,94.5391083 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,267.539208 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,343.415736 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,118.3498649 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.193519272 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1373.400877 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.359385756 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1530.738163 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,31.94551598 +WA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.18671934 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,462.3960569 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.028513721 +WA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1167.838257 +WA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),light_oil,TON,0.26194325 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,502.5408347 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.487145304 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,154.6920083 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,64.12744087 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.388310433 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,48.07944623 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,472.3283224 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,17070.34568 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,43.5670299 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.777799537 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,18.25121587 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,629.2975315 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,37.66348988 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002357824 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.5159171 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,374.9224938 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.83188053 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,203.2774501 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,26.829515 +WA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,23.48283932 +WA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3071.418211 +WA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,734.0987588 +WA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,0 +WA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0 +WA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1296.945116 +WA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,12.565649 +WA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1 +WA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,998.364188 +WA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2659.567918 +WA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,33.6775 +WA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.94 +WA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,15354.61057 +WA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2923.414383 +WA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,27.72 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,73.27131689 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,456.3113473 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1167.54937 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1658.310977 +WA,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,,TON,285.65248 +WA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.6995 +WA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.07 +WA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,55.739 +WA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.0608 +WA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1136 +WA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,8.9881 +WA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,907.66 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.233438219 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.248871155 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.399532696 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1168.155151 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.015762937 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,755.0133293 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,337.5933887 +WA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.01 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,32.08023801 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.583781834 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000171141 +WA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,358.6890734 +WA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.768278617 +WA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,436.9117993 +WA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.51147909 +WA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,75.7547458 +WA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.917178552 +WA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,17.45105551 +WA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.019148412 +WA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,31.15268245 +WA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.169780615 +WA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,32.43041136 +WA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.25682204 +WA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.06964534 +WA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,107.4300748 +WA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004066367 +WA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12172.23009 +WA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),light_oil,TON,0.1745526 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,24.22501234 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.43495 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.442547763 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.604137598 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.244755434 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.358103743 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.421773736 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,279.7986927 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,871.340418 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,15.5560081 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,25.48315268 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.85363971 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.379777959 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000410213 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.063398143 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.242854292 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.049436821 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.029959424 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.01 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Sulfur Dioxide,2A1_Cement-production,,TON,51.202 +WA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,9.052 +WA,Sulfur Dioxide,2A6_Other-minerals,,TON,141.306263 +WA,Sulfur Dioxide,2B_Chemicals-other,,TON,152 +WA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,78.93 +WA,Sulfur Dioxide,2C3_Aluminum-production,,TON,7444.07 +WA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.07 +WA,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +WA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1383.0735 +WA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,212.6065355 +WA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,44.6195 +WA,Sulfur Dioxide,5C_Incineration,,TON,0 +WA,Sulfur Dioxide,5C_Incineration,biomass,TON,71.76753814 +WA,Sulfur Dioxide,5C_Open-burning-residential,,TON,33.5502594 +WA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,73.34617138 +WA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.2265 +WA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,1.9 +WA,Volatile Organic Compounds,11C_Other-natural,,TON,559300 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,34.876 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.482 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,3 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,7.7985 +WA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1797.565 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,209.2470809 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,561.0990542 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.61845051 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,189.9092541 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.689546645 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.75196987 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.904425488 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,96.33960393 +WA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.06 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1317.151261 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,534.5228301 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.001859407 +WA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,887.581668 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,600.9464 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,53161.7863 +WA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,463.272328 +WA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10215.7603 +WA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,602.3999356 +WA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,2115.462837 +WA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,3.654214379 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3100.900762 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,86.99738721 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2230.548946 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,831.9446705 +WA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,982.919636 +WA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,883.9620543 +WA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.176721886 +WA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,806.1698678 +WA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),light_oil,TON,16.405672 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,32.32182898 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.996648072 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,102.477732 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,221.4552248 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2958.230153 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.813535759 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,67.51778795 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,10456.63559 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,19629.13072 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,14.31780233 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.255614774 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,233.5955577 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,676.7582489 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,472.0716676 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007952258 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.4430566 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13725.66397 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,48.85931269 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,13918.08304 +WA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.45 +WA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,637.7671714 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,9.747209362 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,671.1798965 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8976.365413 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3879.746178 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,585.646 +WA,Volatile Organic Compounds,2A1_Cement-production,,TON,3.782 +WA,Volatile Organic Compounds,2A6_Other-minerals,,TON,49.95596233 +WA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,629.9186297 +WA,Volatile Organic Compounds,2B_Chemicals-other,,TON,37.92930901 +WA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0 +WA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,599.32 +WA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,23.2635 +WA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,28526.6975 +WA,Volatile Organic Compounds,2D3d_Coating-application,,TON,17595.84465 +WA,Volatile Organic Compounds,2D3e_Degreasing,,TON,5169.390026 +WA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,21.8373097 +WA,Volatile Organic Compounds,2D3h_Printing,,TON,786.7741 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1552.376783 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,681.97733 +WA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3788.8806 +WA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,547.9193699 +WA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,268.3505 +WA,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +WA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,19995.91589 +WA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2651.72436 +WA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,160.98 +WA,Volatile Organic Compounds,5C_Incineration,,TON,0 +WA,Volatile Organic Compounds,5C_Incineration,biomass,TON,9.306989498 +WA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,403.898189 +WA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,287.190464 +WA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,1079.407092 +WA,Volatile Organic Compounds,5C_Other-open-burning,,TON,95.273464 +WA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,86.9445669 +WA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,4.10180041 +WI,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.000645515 +WI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.300315905 +WI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,906.6130523 +WI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.152161 +WI,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.0059976 +WI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,91.46475934 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.983411298 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.285749505 +WI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,4.031267512 +WI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.021945131 +WI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.359203095 +WI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.077956046 +WI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.039913232 +WI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,129.4714288 +WI,Ammonia,1A2c_Chemicals,natural_gas,TON,21.05015358 +WI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,12.70390899 +WI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.553111128 +WI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.432192107 +WI,Ammonia,1A3bii_Road-LDV,light_oil,TON,1880.125799 +WI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.79272018 +WI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,255.499906 +WI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.105169889 +WI,Ammonia,1A3biii_Road-bus,light_oil,TON,3.042983807 +WI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.072084082 +WI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,73.31259869 +WI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,4.914707946 +WI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,66.0223025 +WI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,21.23995686 +WI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.8839939 +WI,Ammonia,1A3c_Rail,diesel_oil,TON,5.425817361 +WI,Ammonia,1A3c_Rail,light_oil,TON,0.00206491 +WI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.392610138 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.059089286 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.601188754 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.861252181 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.47926E-05 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.40044616 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.094807519 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.26841066 +WI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.334385788 +WI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.357567535 +WI,Ammonia,1A4bi_Residential-stationary,biomass,TON,1462.764613 +WI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,26.76845475 +WI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,12.20828528 +WI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.552269124 +WI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1338.101702 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.61209045 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.354182116 +WI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024650416 +WI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,11.35113747 +WI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.245762672 +WI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,8.805530379 +WI,Ammonia,2A6_Other-minerals,,TON,129.3185 +WI,Ammonia,2B_Chemicals-other,,TON,84.594125 +WI,Ammonia,2C_Iron-steel-alloy,,TON,0.0027 +WI,Ammonia,2C3_Aluminum-production,,TON,3.505625 +WI,Ammonia,2C7_Other-metal,Other_Fuel,TON,2.0305 +WI,Ammonia,2D3d_Coating-application,,TON,0.817525 +WI,Ammonia,2D3h_Printing,,TON,1.24306 +WI,Ammonia,2H1_Pulp-and-paper,,TON,79.3461245 +WI,Ammonia,2H2_Food-and-beverage,,TON,53.24023876 +WI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,55.955085 +WI,Ammonia,3B1a_Cattle-dairy,,TON,65117.60344 +WI,Ammonia,3B1b_Cattle-non-dairy,,TON,4161.096508 +WI,Ammonia,3B2_Manure-sheep,,TON,312.979392 +WI,Ammonia,3B3_Manure-swine,,TON,2636.110157 +WI,Ammonia,3B4_Manure-other,,TON,1613.430984 +WI,Ammonia,3B4_Manure-poultry,,TON,8335.070811 +WI,Ammonia,3B4d_Manure-goats,,TON,390.19596 +WI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,31300.18907 +WI,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.050931 +WI,Ammonia,5D1_Wastewater-domestic,,TON,21.2979913 +WI,Ammonia,5D2_Wastewater-industrial,biomass,TON,23.856 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,367302.0706 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,462191.6802 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,28917.26407 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1564209.451 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,46525.78955 +WI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,326650.753 +WI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21491230.14 +WI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,238675.444 +WI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3137538.32 +WI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,266502.415 +WI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,88607.14885 +WI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3024.20852 +WI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4033826.912 +WI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,126289.2389 +WI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4100967.801 +WI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,603399.5083 +WI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,194720.799 +WI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3450.736607 +WI,Carbon Dioxide,1A3c_Rail,light_oil,TON,160.1984633 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,134511.6703 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,189537.046 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8306.364096 +WI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,41117.42765 +WI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,394582.8993 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1428623.674 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,26278.85768 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,33.97732428 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3017.6635 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,752459.1632 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,153407.4287 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,604448.77 +WI,Carbon Monoxide,11C_Other-natural,,TON,71202.854 +WI,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,4.779765 +WI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,724.795295 +WI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,14.4271856 +WI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9864.693105 +WI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,23.56406 +WI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.614847 +WI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1460.470216 +WI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,209.507534 +WI,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.00875193 +WI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.16629 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1936.591936 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23017.73861 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1483.501605 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,23.18942878 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7797.350818 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,349.1430572 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2207.206496 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,72.46714681 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,21.10112905 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4223.640142 +WI,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,3.0234144 +WI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,310.4826137 +WI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.74152 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5148.64352 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8774.754702 +WI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7761.725674 +WI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5194.823365 +WI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,406906.662 +WI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2666.55426 +WI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,105729.89 +WI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,867.8682547 +WI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4074.157006 +WI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,21.80866913 +WI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9714.023573 +WI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4637.415042 +WI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8513.8655 +WI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,21507.19871 +WI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8122.26818 +WI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1756.542119 +WI,Carbon Monoxide,1A3c_Rail,light_oil,TON,39.75584837 +WI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,127.7592139 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,113.7898451 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1200.197207 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,334.8969673 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000149685 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5202.045315 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,735.9674652 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,43278.06635 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,202.045962 +WI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,175.1991024 +WI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,104991.5127 +WI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,205383.1461 +WI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,133.842323 +WI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,1678.639253 +WI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.761345495 +WI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3750.55965 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6422.513886 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6636.243749 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.737164945 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.169612 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,95422.94297 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,307.3929024 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,77576.95225 +WI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.63219872 +WI,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,684.8249 +WI,Carbon Monoxide,2A6_Other-minerals,,TON,160.8140473 +WI,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,49.32001693 +WI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,6071.575244 +WI,Carbon Monoxide,2C3_Aluminum-production,,TON,13.959945 +WI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,7.2898 +WI,Carbon Monoxide,2D3d_Coating-application,,TON,0.51452 +WI,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.8115 +WI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,4625.12042 +WI,Carbon Monoxide,2H2_Food-and-beverage,,TON,750.921956 +WI,Carbon Monoxide,2I_Wood-processing,,TON,37.3333 +WI,Carbon Monoxide,3Dc_Other-farm,,TON,97.48015 +WI,Carbon Monoxide,3F_Ag-res-on-field,,TON,0.802637955 +WI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1111.946276 +WI,Carbon Monoxide,5C_Incineration,biomass,TON,45.35324389 +WI,Carbon Monoxide,5C_Open-burning-industrial,,TON,14.627 +WI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,14968.2812 +WI,Carbon Monoxide,5C_Open-burning-residential,,TON,6235.6536 +WI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,700.78186 +WI,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0582035 +WI,Methane,1A3bii_Road-LDV,diesel_oil,TON,17.34162857 +WI,Methane,1A3bii_Road-LDV,light_oil,TON,1179.905288 +WI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.58357133 +WI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,353.7013 +WI,Methane,1A3biii_Road-bus,diesel_oil,TON,8.911097702 +WI,Methane,1A3biii_Road-bus,light_oil,TON,7.742281191 +WI,Methane,1A3biii_Road-bus,natural_gas,TON,19.66455404 +WI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,353.4918853 +WI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.619866457 +WI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,101.6368798 +WI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,49.68911155 +WI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.7002423 +WI,Nitrogen Oxides,11C_Other-natural,,TON,16841.4089 +WI,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.349405 +WI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,497.220228 +WI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,71.14924227 +WI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,30047.302 +WI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,126.43945 +WI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,2.8565605 +WI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1277.287516 +WI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,225.2369453 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.09754905 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.592 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2545.18514 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3113.795038 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,217.2025216 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,14.00809866 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2092.946719 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1509.261482 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,13219.57918 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,797.0755005 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,5.196513067 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5810.439151 +WI,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,5.41934025 +WI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,599.8785382 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.445215 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.3766505 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.380340825 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10639.07373 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,181.4258457 +WI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,974.7463991 +WI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1133.53241 +WI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,49456.4601 +WI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1218.679247 +WI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12040.09338 +WI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2047.184336 +WI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,394.3790631 +WI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,13.06376022 +WI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,33048.39682 +WI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,613.7206613 +WI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24747.94841 +WI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2057.344417 +WI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,397.988754 +WI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,12469.54335 +WI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.733224904 +WI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1006.367967 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,45.18954096 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5549.130994 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,758.2632341 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000601377 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5689.665614 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1268.487191 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,943.0211119 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,54.39848901 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,391.6004835 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1420.202724 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2121.175722 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,481.8323375 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,55.21255991 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,9.94084775 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,8200.736084 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12886.35687 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,157.3121935 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.833691006 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.529755 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1085.380503 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1722.308504 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,4220.510925 +WI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,3.484066415 +WI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1308.1265 +WI,Nitrogen Oxides,2A6_Other-minerals,,TON,2865.150086 +WI,Nitrogen Oxides,2B_Chemicals-other,,TON,98.9669 +WI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,314.2276419 +WI,Nitrogen Oxides,2C3_Aluminum-production,,TON,31.92427103 +WI,Nitrogen Oxides,2C6_Zinc-production,,TON,0.031155 +WI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,17.47456175 +WI,Nitrogen Oxides,2C7a_Copper-production,,TON,1.5697029 +WI,Nitrogen Oxides,2D3d_Coating-application,,TON,0.2705 +WI,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.4843835 +WI,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.10633325 +WI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1494.173983 +WI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,72.53697475 +WI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.03429384 +WI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,378.3087785 +WI,Nitrogen Oxides,5C_Incineration,biomass,TON,356.9921272 +WI,Nitrogen Oxides,5C_Open-burning-industrial,,TON,6.98300014 +WI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,442.848725 +WI,Nitrogen Oxides,5C_Open-burning-residential,,TON,440.16389 +WI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,31.1458615 +WI,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.413245 +WI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.000062405 +WI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.996211401 +WI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,924.871211 +WI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.888044387 +WI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,277.049802 +WI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.65996189 +WI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.113946243 +WI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.324334924 +WI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.084555994 +WI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.64279083 +WI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.87656841 +WI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,38.0679127 +WI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.92882482 +WI,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.818224 +WI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,151.840662 +WI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.359773069 +WI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3079.621268 +WI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,3.9520059 +WI,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0680783 +WI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,247.0848996 +WI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,139.0340927 +WI,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0056645 +WI,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.01246798 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.092584924 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,612.8852969 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.65710049 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,893.2504615 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,32.80143159 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.049973894 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,100.4423167 +WI,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,2.508820217 +WI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,20.69968077 +WI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.21333 +WI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000778316 +WI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,55824.3612 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,24.23695468 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,389.0181677 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,344.9588573 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.25954E-05 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.73801122 +WI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,28.90995205 +WI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,38.05446626 +WI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.596450743 +WI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.90610818 +WI,PM10 Filterable,2A1_Cement-production,,TON,15.07773 +WI,PM10 Filterable,2A2_Lime-production,,TON,128.7088341 +WI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,30289.58384 +WI,PM10 Filterable,2A6_Other-minerals,,TON,3528.434475 +WI,PM10 Filterable,2B_Chemicals-other,,TON,49.4659751 +WI,PM10 Filterable,2C_Iron-steel-alloy,,TON,620.9382361 +WI,PM10 Filterable,2C3_Aluminum-production,,TON,35.11703982 +WI,PM10 Filterable,2C5_Lead-production,,TON,1.1673302 +WI,PM10 Filterable,2C6_Zinc-production,,TON,0.05334245 +WI,PM10 Filterable,2C7_Other-metal,,TON,56.0935481 +WI,PM10 Filterable,2C7a_Copper-production,,TON,2.824880864 +WI,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.4972 +WI,PM10 Filterable,2D3d_Coating-application,,TON,31.17956563 +WI,PM10 Filterable,2D3e_Degreasing,,TON,1.896475 +WI,PM10 Filterable,2D3h_Printing,,TON,4.395967125 +WI,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,62.6283 +WI,PM10 Filterable,2H1_Pulp-and-paper,,TON,706.7684094 +WI,PM10 Filterable,2H2_Food-and-beverage,,TON,1059.329496 +WI,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,37.54232165 +WI,PM10 Filterable,2I_Wood-processing,,TON,175.7806475 +WI,PM10 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,14.448219 +WI,PM10 Filterable,3Dc_Other-farm,,TON,134587.1355 +WI,PM10 Filterable,5A_Solid-waste-disposal,,TON,25.32177147 +WI,PM10 Filterable,5C_Incineration,biomass,TON,26.1978189 +WI,PM10 Filterable,5C_Open-burning-dump,,TON,27.22935 +WI,PM10 Filterable,5C_Open-burning-industrial,,TON,1.7354251 +WI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1505.68573 +WI,PM10 Filterable,5C_Open-burning-residential,,TON,2787.70438 +WI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,116.046137 +WI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,8.955502 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.82477 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,285.197542 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.42382879 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3752.766891 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,8.426952 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.18207 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,459.8445641 +WI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,151.3291823 +WI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.007541675 +WI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.03281035 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,215.1685819 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,48.05611685 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.556665233 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.095250479 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,633.9962529 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,102.0430859 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,971.4320604 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,34.7275376 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.183741603 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,220.795446 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,3.143894795 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,53.62397587 +WI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.24242 +WI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0020482 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,795.2192972 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,56.01240958 +WI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,181.1396779 +WI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,55824.3612 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,80.27115998 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3411.234714 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,100.1232221 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,575.263272 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,143.6204457 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.84897791 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.380030906 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1637.912759 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,25.28638089 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1867.107425 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,80.35018451 +WI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.3384279 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,400.9562296 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.022258064 +WI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,46.8973193 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,25.04332072 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,889.4211029 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,372.7947902 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,7.30516E-05 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,177.2127033 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,123.7838239 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,52.31819429 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.042560357 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,30.38140833 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,372.2954651 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,32903.04221 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,63.7089406 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,44.40445286 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.314400595 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,41.35588072 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1133.297526 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,23.2518726 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004295198 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.1809369 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1104.539333 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,34.62138277 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,439.2595575 +WI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.420086335 +WI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.300001 +WI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,15.077735 +WI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,138.0690699 +WI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,30289.58384 +WI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3617.718114 +WI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,51.24917856 +WI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,861.5229401 +WI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,99.89275653 +WI,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,2.14653 +WI,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.19050875 +WI,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,73.08248646 +WI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,10.0888527 +WI,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.565 +WI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,47.68170368 +WI,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.4089092 +WI,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,4.395966625 +WI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,62.6283 +WI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,971.6482993 +WI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2708.281364 +WI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,46.38297045 +WI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,175.7805584 +WI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,14.448169 +WI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,134750.2932 +WI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.14596866 +WI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,72.52072657 +WI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,28.24160387 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,27.229345 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.79076 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1505.68573 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2787.70438 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,116.046137 +WI,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.1705365 +WI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.9555015 +WI,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.21345 +WI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,118.167471 +WI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.883930779 +WI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2267.511868 +WI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.297798 +WI,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0638235 +WI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,243.2394825 +WI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,108.4429328 +WI,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.001359482 +WI,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.01246798 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.739231806 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,507.4479764 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,40.35146282 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,634.1387682 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.90976603 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.012512052 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,83.96026576 +WI,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,1.42915875 +WI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,19.40648406 +WI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.121517 +WI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000729671 +WI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9425.60101 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,20.56580304 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,387.0705236 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,47.14297619 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.50809E-05 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.09493963 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,22.21782 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,23.23967788 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.458383559 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.74835458 +WI,PM2.5 Filterable,2A1_Cement-production,,TON,5.3475574 +WI,PM2.5 Filterable,2A2_Lime-production,,TON,34.31822071 +WI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3028.958384 +WI,PM2.5 Filterable,2A6_Other-minerals,,TON,814.4838352 +WI,PM2.5 Filterable,2B_Chemicals-other,,TON,26.49278837 +WI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,449.0374308 +WI,PM2.5 Filterable,2C3_Aluminum-production,,TON,24.84858974 +WI,PM2.5 Filterable,2C5_Lead-production,,TON,1.0170211 +WI,PM2.5 Filterable,2C6_Zinc-production,,TON,0.047587945 +WI,PM2.5 Filterable,2C7_Other-metal,,TON,18.22343422 +WI,PM2.5 Filterable,2C7a_Copper-production,,TON,2.616209025 +WI,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.175482 +WI,PM2.5 Filterable,2D3d_Coating-application,,TON,26.02763308 +WI,PM2.5 Filterable,2D3e_Degreasing,,TON,1.5736738 +WI,PM2.5 Filterable,2D3h_Printing,,TON,3.647716306 +WI,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,53.032 +WI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,455.5150688 +WI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,305.3935495 +WI,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,25.25771274 +WI,PM2.5 Filterable,2I_Wood-processing,,TON,56.53395751 +WI,PM2.5 Filterable,3B1b_Cattle-non-dairy,Other_Fuel,TON,7.8876863 +WI,PM2.5 Filterable,3Dc_Other-farm,,TON,26905.91056 +WI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,17.61671506 +WI,PM2.5 Filterable,5C_Incineration,biomass,TON,10.9694879 +WI,PM2.5 Filterable,5C_Open-burning-dump,,TON,15.5103748 +WI,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.9885342 +WI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1160.73252 +WI,PM2.5 Filterable,5C_Open-burning-residential,,TON,2552.94979 +WI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,89.460387 +WI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,5.101233 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.219996 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,251.5244114 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.947982259 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2940.650039 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.772756 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.177815 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,455.9991713 +WI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,120.7379674 +WI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00323665 +WI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0328104 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,208.6886012 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.77705699 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.555511308 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.740290011 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,528.5275018 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,98.65186971 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,712.1751318 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,24.8838036 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.147446348 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,204.290266 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,2.064230326 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,52.33077183 +WI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.150607 +WI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00199956 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,771.3630291 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,51.57865959 +WI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,149.6222872 +WI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9425.60101 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,53.26808297 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1359.350569 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,76.8639393 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,257.708044 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,112.4484208 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.597793347 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.143740246 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1312.84434 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,17.20198962 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1382.725086 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,35.872318 +WI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.1213029 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,370.7173053 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02051759 +WI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,19.15957864 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,21.41870433 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,886.5483239 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,76.06480909 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,6.5499E-05 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,172.9925694 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,120.0703332 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,48.28239512 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.042560357 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.46996611 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,342.5256305 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,32901.31765 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,57.0168036 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,29.58968138 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.176333465 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,34.19813293 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1099.298783 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,21.39195308 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004295198 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.0555042 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1016.176681 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,33.58275985 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,404.1187584 +WI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.420085835 +WI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.300001 +WI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,5.3475574 +WI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,43.67836715 +WI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3028.958384 +WI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,903.7674643 +WI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,28.27598893 +WI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,689.6223703 +WI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,89.62437139 +WI,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,1.996221 +WI,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.18475426 +WI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,35.21237721 +WI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,9.880179658 +WI,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.243282 +WI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,42.52977208 +WI,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.086103 +WI,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,3.647716306 +WI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,53.032 +WI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,720.39491 +WI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1954.3452 +WI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,34.09837155 +WI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,56.53395751 +WI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,Other_Fuel,TON,7.8876863 +WI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,27069.06824 +WI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,0.077852272 +WI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,64.81577849 +WI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.01324687 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,15.5103748 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.0438681 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1160.73252 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2552.94979 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,89.460387 +WI,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.170536 +WI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.101233 +WI,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.31325 +WI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,302.8111084 +WI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.538235315 +WI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,90972.925 +WI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,324.1 +WI,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.05683016 +WI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,38.39924189 +WI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,145.4700439 +WI,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,0.0096587 +WI,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.00877279 +WI,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.00259029 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.123440588 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.230861888 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.65850892 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,6.336955409 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1749.562041 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,337.7528169 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,40344.70788 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2302.358361 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.437434976 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,728.7118099 +WI,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,3.18664092 +WI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,23.72969051 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.226449 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.1358302 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.005915755 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,28.98452529 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.854601448 +WI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,136.2251261 +WI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.800953392 +WI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,427.968855 +WI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.06721442 +WI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.4800528 +WI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.292278277 +WI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.764511742 +WI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.016011679 +WI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34.62689118 +WI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.514659572 +WI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,35.02441419 +WI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12.01640868 +WI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.87731065 +WI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,121.8859416 +WI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002926721 +WI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,315.6772719 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.191644826 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,102.9206654 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1123.235748 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00014867 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,175.3431183 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.549828058 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.478876205 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.183649877 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.778766333 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.189987509 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,927.4368767 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1140.33687 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,189.4324335 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,23.5266682 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,47.7183042 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.86353663 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.478910055 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000747276 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.056971888 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,13.65996658 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.290550519 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10.98653368 +WI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.26469773 +WI,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.2808975 +WI,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1635.39806 +WI,Sulfur Dioxide,2A6_Other-minerals,,TON,788.2573027 +WI,Sulfur Dioxide,2B_Chemicals-other,,TON,9.5126295 +WI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,530.3808506 +WI,Sulfur Dioxide,2C3_Aluminum-production,,TON,30.07278041 +WI,Sulfur Dioxide,2C7a_Copper-production,,TON,3.68736375 +WI,Sulfur Dioxide,2D3d_Coating-application,,TON,0.003948 +WI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1277.682477 +WI,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,18.3585962 +WI,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,3.26752172 +WI,Sulfur Dioxide,3Dc_Other-farm,,TON,128.21755 +WI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.016519897 +WI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,221.9990561 +WI,Sulfur Dioxide,5C_Incineration,biomass,TON,69.1674132 +WI,Sulfur Dioxide,5C_Open-burning-industrial,,TON,5.591720005 +WI,Sulfur Dioxide,5C_Open-burning-residential,,TON,73.360635 +WI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.72973255 +WI,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.01105865 +WI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.64563 +WI,Volatile Organic Compounds,11C_Other-natural,,TON,446463.418 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.373026 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,95.2584635 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.82863162 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,621.451172 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,4.241481 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.23286925 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,53.80598073 +WI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,302.4290931 +WI,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.00221448 +WI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.012925 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,235.774497 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,976.8033503 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.821436584 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.13453925 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,165.7702119 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,128.86986 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,66.41336362 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.762502632 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.396736134 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,433.2050869 +WI,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,3.78582335 +WI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,24.66643955 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.281207 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.00309197 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02981675 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,871.9246181 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,584.7509265 +WI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,379.6897861 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,542.156105 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,37520.9676 +WI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,401.998055 +WI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9322.06397 +WI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,195.1546254 +WI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,187.1586282 +WI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.330366337 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3080.814945 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,155.1294935 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2104.878961 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1001.136291 +WI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1339.44175 +WI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,628.9253182 +WI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.529875107 +WI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,28.58209967 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.292254534 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.467864107 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.582119309 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.04737E-05 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,334.9794489 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,172.7741521 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2203.113034 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.643463226 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,41.38301679 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8042.572681 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,35565.43726 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,18.73792605 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,61.04143476 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.386588309 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,437.4179335 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1185.199654 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,404.5158967 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014486188 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.5829411 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,41321.11764 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,78.69569758 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,27742.09465 +WI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,907.0938793 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1824.077686 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,9578.757626 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8438.613907 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.576007 +WI,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.917785 +WI,Volatile Organic Compounds,2A6_Other-minerals,,TON,81.58098419 +WI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,586.7776371 +WI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1600.257303 +WI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1241.539986 +WI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,81.61570819 +WI,Volatile Organic Compounds,2C5_Lead-production,,TON,36.92336 +WI,Volatile Organic Compounds,2C6_Zinc-production,,TON,5.693255 +WI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,156.4231508 +WI,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.77843288 +WI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,23970.64297 +WI,Volatile Organic Compounds,2D3d_Coating-application,,TON,23371.37684 +WI,Volatile Organic Compounds,2D3e_Degreasing,,TON,6454.739256 +WI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,119.1007974 +WI,Volatile Organic Compounds,2D3h_Printing,,TON,4075.488411 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2108.486399 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,509.4878018 +WI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3075.510416 +WI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,930.5823825 +WI,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,905.1216505 +WI,Volatile Organic Compounds,2I_Wood-processing,,TON,251.251512 +WI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,Other_Fuel,TON,57.045675 +WI,Volatile Organic Compounds,3Dc_Other-farm,,TON,32.0386955 +WI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8571.823887 +WI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,0.055758281 +WI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,157.3554364 +WI,Volatile Organic Compounds,5C_Incineration,biomass,TON,147.202038 +WI,Volatile Organic Compounds,5C_Open-burning-dump,,TON,72.633124 +WI,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,6.831 +WI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1027.409215 +WI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,627.96706 +WI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,130.701394 +WI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,120.5708892 +WI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,98.44685808 +WI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.00026177 +WV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.9419 +WV,Ammonia,1A1a_Public-Electricity,hard_coal,TON,58.6404232 +WV,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +WV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.04796 +WV,Ammonia,1A1b_Pet-refining,natural_gas,TON,1.95 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.779709914 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.104345375 +WV,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.0001 +WV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0500496 +WV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,8.11677 +WV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,6.687 +WV,Ammonia,1A2c_Chemicals,natural_gas,TON,20.627 +WV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.33034241 +WV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.055441268 +WV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.377767106 +WV,Ammonia,1A3bii_Road-LDV,light_oil,TON,608.801971 +WV,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.89168343 +WV,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,66.4884837 +WV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.073820911 +WV,Ammonia,1A3biii_Road-bus,light_oil,TON,0.39501037 +WV,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.036647046 +WV,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24.86294696 +WV,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.779806652 +WV,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.2969839 +WV,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.447472189 +WV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.8672982 +WV,Ammonia,1A3c_Rail,diesel_oil,TON,4.951540227 +WV,Ammonia,1A3c_Rail,light_oil,TON,0.002078401 +WV,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.041160448 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.057459055 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.797647019 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.190136046 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.260966068 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.533995179 +WV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.103036663 +WV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.644283728 +WV,Ammonia,1A4bi_Residential-stationary,biomass,TON,141.9143417 +WV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,8.287004 +WV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,2.05111383 +WV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.9501497 +WV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,271.538208 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.020801978 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.057710409 +WV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.008168749 +WV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.840654245 +WV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.134646824 +WV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.831376385 +WV,Ammonia,2A2_Lime-production,Other_Fuel,TON,0.013 +WV,Ammonia,2A6_Other-minerals,,TON,39.78606 +WV,Ammonia,2B_Chemicals-other,,TON,64.75043699 +WV,Ammonia,2C_Iron-steel-alloy,,TON,13.717873 +WV,Ammonia,2D3d_Coating-application,,TON,0.203 +WV,Ammonia,2H1_Pulp-and-paper,,TON,18.669 +WV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,44.838 +WV,Ammonia,3B1a_Cattle-dairy,,TON,548.0944994 +WV,Ammonia,3B1b_Cattle-non-dairy,,TON,2114.316528 +WV,Ammonia,3B2_Manure-sheep,,TON,133.9628 +WV,Ammonia,3B3_Manure-swine,,TON,56.915671 +WV,Ammonia,3B4_Manure-other,,TON,507.19148 +WV,Ammonia,3B4_Manure-poultry,,TON,5240.062019 +WV,Ammonia,3B4d_Manure-goats,,TON,194.87806 +WV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,398.4738399 +WV,Ammonia,5D1_Wastewater-domestic,,TON,6.90615 +WV,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.63982 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,95999.93277 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,80644.09749 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7417.769689 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,286599.1093 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4601.947909 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.293352205 +WV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,91388.4155 +WV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,6786845.59 +WV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,65162.8594 +WV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,867229.83 +WV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,72655.159 +WV,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,11967.33354 +WV,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1563.36015 +WV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1339674.47 +WV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,20771.47167 +WV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1225713.32 +WV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,95081.96207 +WV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,53250.4633 +WV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3473.058088 +WV,Carbon Dioxide,1A3c_Rail,light_oil,TON,161.2097397 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32069.34607 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,44293.82347 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1964.519172 +WV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,12672.25923 +WV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,121080.4537 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,125613.3105 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4139.479889 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.509893795 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1000.0043 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,118783.2125 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,16580.93345 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,57559.2183 +WV,Carbon Monoxide,11C_Other-natural,,TON,39762.631 +WV,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.89447 +WV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,32.538128 +WV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,10051.73 +WV,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.003936 +WV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,20.3529 +WV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,73.02 +WV,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,12.67506 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,400.4420691 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4789.510329 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,249.1930106 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,87.18849579 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.92788047 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1048.86339 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.60036512 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.460926978 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2914.959386 +WV,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,3.982 +WV,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,302.7900084 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1384.137448 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1062.1463 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.093234724 +WV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1871.718531 +WV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1662.638711 +WV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,146926.7713 +WV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,646.74613 +WV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,23839.8762 +WV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,185.4629238 +WV,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,683.9625436 +WV,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,10.865237 +WV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3265.385356 +WV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,722.2617501 +WV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2243.36634 +WV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3180.328221 +WV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2210.89431 +WV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1601.993605 +WV,Carbon Monoxide,1A3c_Rail,light_oil,TON,41.37366649 +WV,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,988.9432 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,465.907778 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.780234302 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.160658736 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1786.217932 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,169.9796848 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,10487.58561 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,46.10944093 +WV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,51.74694693 +WV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,33411.33887 +WV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,16226.72736 +WV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,41.434687 +WV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,282.03335 +WV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,19.749229 +WV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,616.80842 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,520.4009308 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1256.145246 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.276202923 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.669132 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,23281.15002 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,33.15260362 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7537.30206 +WV,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,585.4846072 +WV,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,27030.89181 +WV,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,54.62 +WV,Carbon Monoxide,2A6_Other-minerals,,TON,1693.091065 +WV,Carbon Monoxide,2B_Chemicals-other,,TON,249.339283 +WV,Carbon Monoxide,2C_Iron-steel-alloy,,TON,24137.33473 +WV,Carbon Monoxide,2C3_Aluminum-production,,TON,41.9271 +WV,Carbon Monoxide,2D3d_Coating-application,,TON,0 +WV,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.25 +WV,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.098 +WV,Carbon Monoxide,2H1_Pulp-and-paper,,TON,135.7413 +WV,Carbon Monoxide,2H2_Food-and-beverage,,TON,165.58225 +WV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,676.660333 +WV,Carbon Monoxide,3F_Ag-res-on-field,,TON,620.46273 +WV,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,93.979575 +WV,Carbon Monoxide,5C_Incineration,biomass,TON,0.2213828 +WV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,26729.132 +WV,Carbon Monoxide,5C_Open-burning-residential,,TON,4380.36 +WV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,581.409 +WV,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.355072791 +WV,Methane,1A3bii_Road-LDV,light_oil,TON,417.021727 +WV,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.83826434 +WV,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,83.287234 +WV,Methane,1A3biii_Road-bus,diesel_oil,TON,1.387500256 +WV,Methane,1A3biii_Road-bus,light_oil,TON,1.499196629 +WV,Methane,1A3biii_Road-bus,natural_gas,TON,9.4118773 +WV,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,137.7863766 +WV,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.648079157 +WV,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.4564637 +WV,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,6.768865467 +WV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.73659961 +WV,Nitrogen Oxides,11C_Other-natural,,TON,4619.8215 +WV,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +WV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,31.33945 +WV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,54217.5 +WV,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,1.048 +WV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,39.6007 +WV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,457.43 +WV,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,2.41541 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,691.3626533 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,477.9466066 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,38.04533195 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,388.9922503 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,101.0662205 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5691.133977 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,98.30197524 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.559541571 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10069.06567 +WV,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,16.91 +WV,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,185.53471 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2271.962142 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,19.70224855 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.018954215 +WV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,87.1475758 +WV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,328.0128425 +WV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,18410.51797 +WV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,285.301401 +WV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3062.58195 +WV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,560.277569 +WV,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,65.94381546 +WV,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,6.9161164 +WV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11199.57074 +WV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,97.23461049 +WV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7434.00029 +WV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,322.162823 +WV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,106.87153 +WV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10973.60905 +WV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.669863937 +WV,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4865.15615 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,170.5231137 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.98975024 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.183852323 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6454.736007 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,293.3083324 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,200.9497564 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.23967588 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,115.3309886 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,412.344749 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,230.9416188 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,149.16066 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,8.7377701 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,71.09842 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1538.4564 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1061.568589 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,18.56148314 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.061626861 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.786252 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,260.439499 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,186.2049721 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,400.492458 +WV,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,1000.540303 +WV,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,20630.43477 +WV,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,231.3 +WV,Nitrogen Oxides,2A6_Other-minerals,,TON,2059.4536 +WV,Nitrogen Oxides,2B_Chemicals-other,,TON,406.0423 +WV,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1736.469102 +WV,Nitrogen Oxides,2C3_Aluminum-production,,TON,69.8738 +WV,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +WV,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.117 +WV,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,147.628 +WV,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,25.240794 +WV,Nitrogen Oxides,3F_Ag-res-on-field,,TON,18.8453328 +WV,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,25.3424 +WV,Nitrogen Oxides,5C_Incineration,biomass,TON,8.68199 +WV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,790.7907 +WV,Nitrogen Oxides,5C_Open-burning-residential,,TON,309.199 +WV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,25.84071 +WV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.274241423 +WV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,380.524203 +WV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.224505057 +WV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,71.378831 +WV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.134688119 +WV,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.407013326 +WV,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.086275161 +WV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.09928215 +WV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.589923503 +WV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.73974884 +WV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.542464682 +WV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.65423163 +WV,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.0467 +WV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.98759661 +WV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,5447.39785 +WV,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01426 +WV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,5.2714098 +WV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,146.3343 +WV,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.06583 +WV,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.224 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3.411707324 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.364021028 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,980.0643988 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.80409705 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030657757 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,145.1186115 +WV,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,8.135 +WV,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,6.84321268 +WV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,48884.75 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,394.3380184 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.238479512 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006792768 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.74252575 +WV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,8.950327 +WV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,6.729029 +WV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.2660276 +WV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.083477 +WV,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,31.09162736 +WV,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,134.796011 +WV,PM10 Filterable,2A1_Cement-production,,TON,79.5027 +WV,PM10 Filterable,2A2_Lime-production,,TON,69.333 +WV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16315.31527 +WV,PM10 Filterable,2A6_Other-minerals,,TON,20057.37199 +WV,PM10 Filterable,2B_Chemicals-other,,TON,246.8020021 +WV,PM10 Filterable,2C_Iron-steel-alloy,,TON,776.9589122 +WV,PM10 Filterable,2C3_Aluminum-production,,TON,8.19944 +WV,PM10 Filterable,2C7_Other-metal,,TON,176.102315 +WV,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,25.5151082 +WV,PM10 Filterable,2D3d_Coating-application,,TON,12.208894 +WV,PM10 Filterable,2D3e_Degreasing,,TON,0.004 +WV,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,0.25 +WV,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.01 +WV,PM10 Filterable,2H1_Pulp-and-paper,,TON,90.90686384 +WV,PM10 Filterable,2H2_Food-and-beverage,,TON,5.4651504 +WV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,342.8616136 +WV,PM10 Filterable,2I_Wood-processing,,TON,2.74 +WV,PM10 Filterable,3Dc_Other-farm,,TON,1962.9672 +WV,PM10 Filterable,5A_Solid-waste-disposal,,TON,0 +WV,PM10 Filterable,5C_Incineration,biomass,TON,0.501619 +WV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2688.6772 +WV,PM10 Filterable,5C_Open-burning-residential,,TON,1958.219 +WV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,96.281 +WV,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00001 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.125 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.42189557 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,11044.377 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02284 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,9.587152 +WV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,225.78 +WV,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.171158 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,50.95002143 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.515236933 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.921601695 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9.220336903 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,13.73497881 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1614.609995 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,17.02358204 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.094834513 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,291.5187384 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,16.27 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,13.52784225 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,208.6600642 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.177364277 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +WV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,42.04630376 +WV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,48884.75 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,22.46830835 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,975.130015 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22.1938638 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,120.467482 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,36.6680046 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.352151622 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.175197464 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,508.0421883 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.610165156 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,495.295154 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,10.22379201 +WV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.20175514 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,372.9077816 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.022403273 +WV,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,160.7941773 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,410.5027226 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.628059779 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.015695914 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,69.04400898 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.14600504 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.26292698 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.24643289 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.746152545 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,109.0950717 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2366.609643 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,19.724554 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,6.8009912 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,9.400653 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.0105836 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,92.16133838 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.40908573 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000317263 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.3860781 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,270.6202514 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.727001626 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,38.34706939 +WV,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,35.53123281 +WV,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,431.7397979 +WV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,81.783249 +WV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,126.374358 +WV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16315.31527 +WV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,20141.76867 +WV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,337.0370416 +WV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1415.636576 +WV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,28.16 +WV,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,176.102315 +WV,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,25.5151082 +WV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,12.208894 +WV,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.004 +WV,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.5 +WV,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.02 +WV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,149.9698736 +WV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,450.6099 +WV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,342.8675366 +WV,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.74 +WV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1962.9672 +WV,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,108.879699 +WV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +WV,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.572409 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2688.6772 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1958.219 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,96.281 +WV,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,1.34007E-05 +WV,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.045525 +WV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.64587879 +WV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3484.19733 +WV,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01426 +WV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,3.4423508 +WV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,49.81436 +WV,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.06583 +WV,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.224 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2.441013338 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.222246927 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,105.6261085 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.830382075 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.022145004 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,139.901891 +WV,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,8.135 +WV,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,6.2889879 +WV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,6278.637 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,331.9160849 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.455810508 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001307507 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.82272909 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,6.878337 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,4.3093727 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.2784821 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.69585092 +WV,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,30.09470596 +WV,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,134.796011 +WV,PM2.5 Filterable,2A1_Cement-production,,TON,27.86932 +WV,PM2.5 Filterable,2A2_Lime-production,,TON,20.781 +WV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1631.531527 +WV,PM2.5 Filterable,2A6_Other-minerals,,TON,2807.826255 +WV,PM2.5 Filterable,2B_Chemicals-other,,TON,162.2629542 +WV,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,372.4069459 +WV,PM2.5 Filterable,2C3_Aluminum-production,,TON,7.57330274 +WV,PM2.5 Filterable,2C7_Other-metal,,TON,90.1045347 +WV,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,7.66124844 +WV,PM2.5 Filterable,2D3d_Coating-application,,TON,12.20869735 +WV,PM2.5 Filterable,2D3e_Degreasing,,TON,0.004 +WV,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,0.25 +WV,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.01 +WV,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,75.76739163 +WV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.76921682 +WV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,157.1882283 +WV,PM2.5 Filterable,2I_Wood-processing,,TON,1.38 +WV,PM2.5 Filterable,3Dc_Other-farm,,TON,392.5053 +WV,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +WV,PM2.5 Filterable,5C_Incineration,biomass,TON,0.446819 +WV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2072.6911 +WV,PM2.5 Filterable,5C_Open-burning-residential,,TON,1793.339 +WV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,74.2227 +WV,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00001 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.123825 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.08047974 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,9080.9366 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02284 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,7.758093 +WV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,129.26 +WV,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.171158 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,49.42614503 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.422028168 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.921470533 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8.247732538 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,11.55019421 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,740.4855009 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,9.849359921 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.086307573 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,286.129136 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,16.27 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,12.97361747 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,202.40033 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.607554437 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +WV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,36.25845108 +WV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,6278.637 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,15.34074083 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,367.426311 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.9214768 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.5375124 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,29.28994092 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.511077225 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.073389873 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,417.7150344 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.51405598 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,380.564806 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.540445344 +WV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.83458786 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,344.1063644 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.020651173 +WV,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,155.9704557 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,348.8104107 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.816934616 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010026489 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,50.42204741 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27.30161246 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.31465536 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.24643289 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.483762275 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,100.3711832 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2364.538143 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,17.649829 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,4.2789085 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,8.411646 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.6050487 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,89.39647914 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.49636834 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000317263 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.3444978 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,248.9712879 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.615195919 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,35.27930805 +WV,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,34.53431101 +WV,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,431.7397979 +WV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,30.1498706 +WV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,77.822372 +WV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1631.531527 +WV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2892.222934 +WV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,252.4979545 +WV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1011.08449 +WV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,27.53385166 +WV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,90.1045347 +WV,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,7.66124844 +WV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,12.20869735 +WV,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.004 +WV,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.5 +WV,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.02 +WV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,134.8304014 +WV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,446.89592 +WV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,157.1941513 +WV,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,1.38 +WV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,392.5053 +WV,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,72.864082 +WV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +WV,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.517609 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2072.6911 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1793.339 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,74.2227 +WV,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,1.34007E-05 +WV,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +WV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,14.091646 +WV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,93063.8 +WV,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.361 +WV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2.15470967 +WV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,6031.955 +WV,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.04675 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.142388961 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.586351314 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.16605317 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,175.8344146 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,218.9205799 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,15305.06316 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,249.0064337 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.877116177 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,309.8625108 +WV,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.011 +WV,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,31.75136066 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.360682851 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.084492666 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85235E-05 +WV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13.92004961 +WV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.78427266 +WV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,134.7455068 +WV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.561031212 +WV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.218727 +WV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.623510112 +WV,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.237605799 +WV,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.008277258 +WV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11.50840723 +WV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.41239917 +WV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.48800616 +WV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.887765808 +WV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.05723012 +WV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,111.1782795 +WV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002945155 +WV,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,59.7853288 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,44.31412295 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,65.71879211 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.243934877 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.865240852 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.60744416 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.812642301 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.043437335 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.23970567 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.206244539 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,70.60991211 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,353.01254 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,39.345785 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,168.27423 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.2508555 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.354836723 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.075353159 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.52008E-05 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018879792 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.154265307 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.355656502 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.046513676 +WV,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,10.94292222 +WV,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1283.289014 +WV,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.37 +WV,Sulfur Dioxide,2A6_Other-minerals,,TON,1896.305396 +WV,Sulfur Dioxide,2B_Chemicals-other,,TON,145.019217 +WV,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,2064.1573 +WV,Sulfur Dioxide,2C3_Aluminum-production,,TON,4.3577 +WV,Sulfur Dioxide,2C7b_Nickel-production,Other_Fuel,TON,0.88 +WV,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +WV,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.001 +WV,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,9.80958 +WV,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,76.054796 +WV,Sulfur Dioxide,3F_Ag-res-on-field,,TON,6.28074843 +WV,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,5.5288 +WV,Sulfur Dioxide,5C_Incineration,biomass,TON,1.196686 +WV,Sulfur Dioxide,5C_Open-burning-residential,,TON,51.5324 +WV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.58354 +WV,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.6 +WV,Volatile Organic Compounds,11C_Other-natural,,TON,377198.53 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.029294 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.246248 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1006.518 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.000489 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1.97988 +WV,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.160349406 +WV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,76.63307259 +WV,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.48243 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,57.01165097 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,176.6690563 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.604455239 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,21.00745048 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.79097867 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,29.41292786 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.184403487 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.494024404 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,444.3024368 +WV,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.104 +WV,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,25.36717055 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,271.6778539 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,78.39126623 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309901 +WV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,95.72553373 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,162.7452399 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,14257.31885 +WV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,91.208922 +WV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2211.10794 +WV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,44.28551263 +WV,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,31.92563343 +WV,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.13620296 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1111.657151 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,21.71611174 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,491.994567 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,144.2754192 +WV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,330.028154 +WV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,572.2987863 +WV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.635813323 +WV,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,111.297687 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,13.02173553 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.449552882 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.014261876 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1418.042895 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,39.08507816 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,544.5199365 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.143970692 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,11.91631509 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2660.021737 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2522.557392 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,5.800889 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,10.2554 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.7650381 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,84.793799 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,95.76446131 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,116.0913764 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001070833 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.5141044 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8525.676301 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.479059919 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2564.334799 +WV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,3441.556573 +WV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,92.2075216 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,81.28115373 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,848.9066755 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,5291.634275 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3679.823395 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,40.22 +WV,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,44269.38561 +WV,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,8.81 +WV,Volatile Organic Compounds,2A6_Other-minerals,,TON,509.4026713 +WV,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,401.7219187 +WV,Volatile Organic Compounds,2B_Chemicals-other,,TON,2036.072954 +WV,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,307.81189 +WV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,194.8872 +WV,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,16.9 +WV,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.88 +WV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,7681.9552 +WV,Volatile Organic Compounds,2D3d_Coating-application,,TON,5887.443169 +WV,Volatile Organic Compounds,2D3e_Degreasing,,TON,29.1878 +WV,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,246.454 +WV,Volatile Organic Compounds,2D3h_Printing,,TON,109.8179 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,136.2281 +WV,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,235.3880151 +WV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,187.5248642 +WV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,298.17219 +WV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,235.6469 +WV,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,39.1780803 +WV,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,87.24642 +WV,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.0431678 +WV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1834.5806 +WV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,441.104 +WV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,108.4427 +WV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,34.7317 +WV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,116.22552 +WV,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.06 +WY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,319.39766 +WY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.560522 +WY,Ammonia,1A1b_Pet-refining,natural_gas,TON,3.512 +WY,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,1 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.402450776 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.135027612 +WY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.8 +WY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.156 +WY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.188893513 +WY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.032699914 +WY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.633968133 +WY,Ammonia,1A3bii_Road-LDV,light_oil,TON,287.297887 +WY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.6365463 +WY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,57.49988 +WY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.353606148 +WY,Ammonia,1A3biii_Road-bus,light_oil,TON,0.150331636 +WY,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.016092635 +WY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,31.90439611 +WY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.300807663 +WY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.1688303 +WY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.634248605 +WY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.0454776 +WY,Ammonia,1A3c_Rail,diesel_oil,TON,17.18617292 +WY,Ammonia,1A3c_Rail,light_oil,TON,0.004181244 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.2 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.51402504 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.127414621 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.260588835 +WY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.024751973 +WY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.417770331 +WY,Ammonia,1A4bi_Residential-stationary,biomass,TON,38.20667631 +WY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.49956971 +WY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,2.804892 +WY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.002333609 +WY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,127.5622182 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.64878064 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.045867967 +WY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002306408 +WY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.504909034 +WY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.063779036 +WY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.393609789 +WY,Ammonia,2A1_Cement-production,,TON,3 +WY,Ammonia,2A2_Lime-production,Other_Fuel,TON,0.60113 +WY,Ammonia,2B_Chemicals-other,,TON,151.2 +WY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,65.86 +WY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,35.511 +WY,Ammonia,3B1a_Cattle-dairy,,TON,367.8580963 +WY,Ammonia,3B1b_Cattle-non-dairy,,TON,8768.403016 +WY,Ammonia,3B2_Manure-sheep,,TON,1439.98668 +WY,Ammonia,3B3_Manure-swine,,TON,653.9466912 +WY,Ammonia,3B4_Manure-other,,TON,1081.872 +WY,Ammonia,3B4_Manure-poultry,,TON,10.95477108 +WY,Ammonia,3B4d_Manure-goats,,TON,58.53672 +WY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,19206.59309 +WY,Ammonia,5D1_Wastewater-domestic,,TON,2.00917018 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,49553.28803 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,21187.93704 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7258.52851 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,146295.8729 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2716.474405 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.29335315 +WY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,57974.5049 +WY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3242664.09 +WY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,55292.255 +WY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,729950.09 +WY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,22577.3396 +WY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,4475.654439 +WY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,680.87264 +WY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1667034.109 +WY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,7913.86701 +WY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,843137.67 +WY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,44554.87621 +WY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19008.623 +WY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6987.019 +WY,Carbon Dioxide,1A3c_Rail,light_oil,TON,324.2541209 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15657.64096 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,21610.98291 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,973.1803414 +WY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3044.199383 +WY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,30762.20583 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,202841.9828 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3429.04104 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.96541611 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,282.35643 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,99737.59384 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7854.002963 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,27251.0179 +WY,Carbon Monoxide,11C_Other-natural,,TON,126262.26 +WY,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,17.116 +WY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,173.78233 +WY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,12909.99 +WY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,2.4 +WY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,125.692 +WY,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,0.173602998 +WY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,582.3372715 +WY,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,29.092 +WY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,695.785505 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,298.631841 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3236.412492 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,109.0778531 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,60.03127921 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,568.741751 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1802.351466 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.908547394 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.326147468 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,10271.55132 +WY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2.3 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,609.7798287 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,634.0929761 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.093235039 +WY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1325.667134 +WY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,832.88834 +WY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,81640.295 +WY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,535.47307 +WY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20220.11 +WY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,61.0881466 +WY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,265.1221454 +WY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,4.6905156 +WY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4130.382056 +WY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,284.378214 +WY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1542.68434 +WY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1580.231775 +WY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,821.6135 +WY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5534.721502 +WY,Carbon Monoxide,1A3c_Rail,light_oil,TON,83.98802699 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.674378368 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,294.4510645 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.011150282 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,507.7118768 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.95610887 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5168.41188 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.59679503 +WY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,12.42632294 +WY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,8645.730053 +WY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4811.059593 +WY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.49784535 +WY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,385.672675 +WY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.011668054 +WY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,424.907537 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,921.9846696 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,875.3970874 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.546016125 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.7191451 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,13791.13645 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.70340146 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3648.68866 +WY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2204.63494 +WY,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,12.8 +WY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5270.164975 +WY,Carbon Monoxide,2A1_Cement-production,,TON,411.3 +WY,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,51.6 +WY,Carbon Monoxide,2A6_Other-minerals,,TON,25581.98189 +WY,Carbon Monoxide,2B_Chemicals-other,,TON,14605.134 +WY,Carbon Monoxide,2H2_Food-and-beverage,,TON,116.2845159 +WY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,45.8 +WY,Carbon Monoxide,3F_Ag-res-on-field,,TON,6563.954255 +WY,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,3.66406 +WY,Carbon Monoxide,5C_Incineration,biomass,TON,16.85881433 +WY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1969.907429 +WY,Carbon Monoxide,5C_Open-burning-residential,,TON,677.27416 +WY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,48.301327 +WY,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.3125 +WY,Methane,1A3bii_Road-LDV,diesel_oil,TON,2.46813181 +WY,Methane,1A3bii_Road-LDV,light_oil,TON,213.138695 +WY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.0499736 +WY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,60.284352 +WY,Methane,1A3biii_Road-bus,diesel_oil,TON,0.568924309 +WY,Methane,1A3biii_Road-bus,light_oil,TON,0.583940736 +WY,Methane,1A3biii_Road-bus,natural_gas,TON,4.2646956 +WY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,193.5947514 +WY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.233241851 +WY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.3753856 +WY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.511084721 +WY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.9405116 +WY,Nitrogen Oxides,11C_Other-natural,,TON,16879.997 +WY,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,14.06 +WY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,662.387 +WY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,38822.62 +WY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,9.4 +WY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,84.8765 +WY,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,0.647943003 +WY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,812.7114944 +WY,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,21.2868 +WY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,655.8299137 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,460.0072132 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,99.20244754 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18.99637539 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,22.03566138 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1339.022005 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,14851.60508 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.64752131 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,24.70317836 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,20006.04514 +WY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,2.86 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1101.675526 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,12.13067672 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.018954258 +WY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,125.5467555 +WY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,229.382769 +WY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,10469.8658 +WY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,256.42222 +WY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2626.6151 +WY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,183.376695 +WY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,23.16982973 +WY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.9989146 +WY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15489.20612 +WY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,40.5723422 +WY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5576.10563 +WY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,162.893345 +WY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,42.425477 +WY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,37504.65865 +WY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.429101114 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.478879163 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4314.858652 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.030249301 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.020166201 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,540.4504934 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,143.2097015 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,102.7503502 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.980491384 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,27.7080785 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,108.0833241 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,82.31848545 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,8.99224365 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,12.762251 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.042004971 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,901.64668 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1845.926416 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,19.78507191 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.12179829 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.7714234 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,154.0630231 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,88.2029665 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,188.5612013 +WY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3644.036883 +WY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,15.39 +WY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4627.958095 +WY,Nitrogen Oxides,2A1_Cement-production,,TON,2107.4 +WY,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,456.75 +WY,Nitrogen Oxides,2A6_Other-minerals,,TON,32079.86357 +WY,Nitrogen Oxides,2B_Chemicals-other,,TON,2470.456 +WY,Nitrogen Oxides,2D3d_Coating-application,,TON,0.1 +WY,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,67.84 +WY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,9.22 +WY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,216.2899482 +WY,Nitrogen Oxides,5C_Incineration,biomass,TON,24.0271228 +WY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,58.2812358 +WY,Nitrogen Oxides,5C_Open-burning-residential,,TON,47.807592 +WY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.1467237 +WY,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.5925 +WY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.16047941 +WY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,168.781461 +WY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.16943363 +WY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,45.05678 +WY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.048935879 +WY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.191948524 +WY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.035025841 +WY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.162588616 +WY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.209060013 +WY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.15985423 +WY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.586285023 +WY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.28485214 +WY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.1 +WY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,14.23941799 +WY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4664.0442 +WY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.802948 +WY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.923455 +WY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,285.8552353 +WY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.04237151 +WY,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.690423 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,34.92339079 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,142.8643869 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1084.193944 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.008924308 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.962952887 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,336.3670858 +WY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,335092.3695 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.653831923 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,173.804696 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.508199427 +WY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.539534775 +WY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,8.695161 +WY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.002520301 +WY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.67466887 +WY,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,144.9834913 +WY,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.845 +WY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,116.1664829 +WY,PM10 Filterable,2A1_Cement-production,,TON,288.5285 +WY,PM10 Filterable,2A2_Lime-production,,TON,85.0534826 +WY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,9391.18597 +WY,PM10 Filterable,2A6_Other-minerals,,TON,20731.63285 +WY,PM10 Filterable,2B_Chemicals-other,,TON,2925.705674 +WY,PM10 Filterable,2D3d_Coating-application,,TON,0.2 +WY,PM10 Filterable,2H1_Pulp-and-paper,,TON,24.8 +WY,PM10 Filterable,2H2_Food-and-beverage,,TON,140.316029 +WY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1728.306 +WY,PM10 Filterable,3Dc_Other-farm,,TON,11865.14728 +WY,PM10 Filterable,5A_Solid-waste-disposal,,TON,106.5 +WY,PM10 Filterable,5C_Incineration,biomass,TON,24.817601 +WY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,198.1564976 +WY,PM10 Filterable,5C_Open-burning-residential,,TON,302.7815 +WY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,7.9984664 +WY,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0564945 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.672 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.1 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,30.5303 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5707.0776 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.9 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4.4435 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,503.0283233 +WY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,35.089237 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.72062817 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.602975448 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.916243445 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,37.0852032 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,232.2377126 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1215.920159 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.010272909 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.798067345 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,959.3896015 +WY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.29 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,94.51013065 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.231628588 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +WY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,29.22529835 +WY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,335092.3695 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,14.9796274 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,528.73243 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.54938 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,117.92019 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,11.90788848 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.984284361 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.079804651 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,593.2544922 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.937809728 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,347.388646 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.79542967 +WY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.9357166 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1266.825438 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.045046178 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.674227748 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,186.5987473 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.888018654 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.7372661 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.99377523 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.122208188 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.09995498 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,27.2232425 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,696.4051112 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.18897555 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,10.153707 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.005553993 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.35413667 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,162.6178442 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.691793007 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000627703 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.38914584 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,159.0771307 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.765334301 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,18.15523204 +WY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,208.812646 +WY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.847 +WY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,283.661096 +WY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,308.27 +WY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,101.924 +WY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,9391.18597 +WY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,21531.66866 +WY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,3406.004 +WY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.2 +WY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,29.40263 +WY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,389.483521 +WY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1749.25 +WY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,11865.14728 +WY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1114.452288 +WY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,107.78 +WY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,27.35066785 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,198.1564976 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,302.7815 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.9984664 +WY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0875 +WY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.001 +WY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,11.2211043 +WY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1981.59613 +WY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.585266 +WY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.909455 +WY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,223.6192783 +WY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,12.49861151 +WY,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.9904222 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,17.82013226 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,111.653378 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,613.3922207 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.005813813 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,273.9935485 +WY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,34232.44497 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000255385 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,85.20898797 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.824851448 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.414642535 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,5.32928515 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.001936895 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.92106692 +WY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,87.91049132 +WY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.844 +WY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,116.0856829 +WY,PM2.5 Filterable,2A1_Cement-production,,TON,58.64219253 +WY,PM2.5 Filterable,2A2_Lime-production,,TON,30.22541649 +WY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,939.118597 +WY,PM2.5 Filterable,2A6_Other-minerals,,TON,6882.04065 +WY,PM2.5 Filterable,2B_Chemicals-other,,TON,1402.745637 +WY,PM2.5 Filterable,2D3d_Coating-application,,TON,0.165957 +WY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,9.691414 +WY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,61.79448029 +WY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1023.365823 +WY,PM2.5 Filterable,3Dc_Other-farm,,TON,2372.900111 +WY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,15.973 +WY,PM2.5 Filterable,5C_Incineration,biomass,TON,0.181907 +WY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,152.7588763 +WY,PM2.5 Filterable,5C_Open-burning-residential,,TON,277.28405 +WY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,6.1660465 +WY,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0264945 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.672 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.001 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,27.4619851 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3024.63454 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.682319 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,2.5695 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,440.2923663 +WY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,33.793477 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.37679553 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.485397652 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.916047346 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,19.7221619 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,202.2609535 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,739.9899469 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.007151702 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.817571841 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,809.9882695 +WY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.29 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,91.67486446 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.895701803 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000151546 +WY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,24.59900028 +WY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,34232.44497 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,10.63015463 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,246.549685 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.932946 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,53.308105 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,9.41706335 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.617103662 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.031824281 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,499.8008518 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.473064748 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,266.373832 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.914471902 +WY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.4307254 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1168.157966 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041522809 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.013795629 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,98.22292543 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.981983101 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.32514471 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.530233181 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.122208188 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.036959086 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,25.04626029 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,695.2085112 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.06408205 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,6.7878319 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.004970588 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.60053909 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,157.7393624 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.556490841 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000627703 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.37747109 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,146.3511867 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.712376414 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,16.702813 +WY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,124.913646 +WY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.845 +WY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,277.441296 +WY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,78.38349253 +WY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,47.0959119 +WY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,939.118597 +WY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,7501.566068 +WY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1883.045012 +WY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.165957 +WY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,21.494044 +WY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,310.9622483 +WY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1044.310423 +WY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2372.900111 +WY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,718.87251 +WY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,17.253 +WY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.714993852 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,152.7588763 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,277.28405 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.1660465 +WY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0575 +WY,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,21.477 +WY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,162.53802 +WY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,35402.88 +WY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,3.4 +WY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.068 +WY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1624.956826 +WY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2267.398279 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.934524826 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.449534624 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.164137952 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2.500718192 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,207.3920618 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,21377.70956 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.140040219 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.631418534 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,225.1208624 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.729819404 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.049877297 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.85236E-05 +WY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,16.33288965 +WY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.49771397 +WY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,64.128029 +WY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.47651084 +WY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.43576 +WY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.193634817 +WY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.088511888 +WY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.003604873 +WY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14.3262195 +WY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.156507619 +WY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.21919914 +WY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.881132686 +WY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.3759214 +WY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,386.7222894 +WY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005923766 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.47429203 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,7535.865935 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.07019121 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.187079581 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.296578463 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.39648451 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.021518291 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.057582238 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.560523347 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,13.90607765 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,21.2816545 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,37.8239285 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.099411815 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.0240054 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.815830657 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.06250732 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000109206 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005329816 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.810597329 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.168466384 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.495464664 +WY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3145.957591 +WY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.04 +WY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1752.207593 +WY,Sulfur Dioxide,2A1_Cement-production,,TON,282.56 +WY,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,39.3 +WY,Sulfur Dioxide,2A6_Other-minerals,,TON,1587.305 +WY,Sulfur Dioxide,2B_Chemicals-other,,TON,1546.01 +WY,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,7.35 +WY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,70.04638394 +WY,Sulfur Dioxide,5C_Incineration,biomass,TON,5.112304165 +WY,Sulfur Dioxide,5C_Open-burning-residential,,TON,7.9679347 +WY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.46384589 +WY,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.0125 +WY,Volatile Organic Compounds,11C_Other-natural,,TON,663280.9 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.296 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,42.437 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,675.2811 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.1 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,42.93 +WY,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,195.0516066 +WY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1717.044414 +WY,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,13.48164 +WY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,360.719077 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31.89516047 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,88.62528406 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.268455793 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.700596515 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,82.27986113 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,84.35959063 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.200070178 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.000901852 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,6725.757897 +WY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.15 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,112.0731551 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,45.98080938 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.000309902 +WY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,90.65336099 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,83.89524 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,6873.2271 +WY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,72.655086 +WY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1570.8317 +WY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,16.0468763 +WY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,12.515038 +WY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.51142178 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1485.74755 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,7.56062621 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,333.974147 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,66.53370239 +WY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,136.51105 +WY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1926.9292 +WY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.222363673 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.99005286 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,33.65819972 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.05809022 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.4764944 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,19.07551582 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,262.4155466 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.070274084 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.860943623 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,656.8704823 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,888.5541438 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.34969856 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,14.024449 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.001633527 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,46.0534039 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,170.2046951 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,44.85813527 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002116333 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.70625617 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5628.458142 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.016287779 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1140.091708 +WY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,25576.43447 +WY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,464.8943798 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,32.90526212 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,564.8010044 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4906.267017 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1377.528735 +WY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,87890.10575 +WY,Volatile Organic Compounds,2A1_Cement-production,,TON,42.64 +WY,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,4783.94 +WY,Volatile Organic Compounds,2A6_Other-minerals,,TON,509.3956382 +WY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,693.3506518 +WY,Volatile Organic Compounds,2B_Chemicals-other,,TON,2629.125535 +WY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2375.683395 +WY,Volatile Organic Compounds,2D3d_Coating-application,,TON,1342.560734 +WY,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,279.0076695 +WY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.05 +WY,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,7.236 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,57.03156431 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,138.9999277 +WY,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,4.76 +WY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,30.90482377 +WY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,30.9 +WY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,607.2203 +WY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,426.4483452 +WY,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,54.67 +WY,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.662119183 +WY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,135.212521 +WY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,68.205499 +WY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,9.0085757 +WY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,10.1053032 +WY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,50.873265 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2014.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2014.csv new file mode 100644 index 0000000000..b228f93ba0 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2014.csv @@ -0,0 +1,40983 @@ +# File: NEI_emissions_to_CEDS_adj_2014.csv +# Title: NEI emissions aggregated to states / pollutants / and extended CEDS sectors for 2014 +# Units: TON +# Source: NEI 2014 version 2 accessible from: https://www.epa.gov/air-emissions-inventories/2014-national-emissions-inventory-nei-data#datas +# Comments: This data is pre-processed exogenously in a script available here: https://stash.pnnl.gov/projects/JGCRI/repos/gcam-core-data-proc_usnei_to_gcam/browse +# Column types: cccccn +# ---------- +state,pollutant,CEDS_Sector,CEDS_Fuel,unit,emissions +AK,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,20.86 +AK,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.08 +AK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,1.34 +AK,Ammonia,1A1b_Pet-refining,natural_gas,TON,6.43 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.145078747 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.003217437 +AK,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.155298382 +AK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.04035136 +AK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.07 +AK,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,408.3063339 +AK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.628854206 +AK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.042048437 +AK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.118563303 +AK,Ammonia,1A3bii_Road-LDV,light_oil,TON,145.5219769 +AK,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.464748194 +AK,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.586066697 +AK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.877683668 +AK,Ammonia,1A3biii_Road-bus,light_oil,TON,3.480429518 +AK,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.004953931 +AK,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.670486137 +AK,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.135158264 +AK,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.22345971 +AK,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.939959079 +AK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.034618463 +AK,Ammonia,1A3c_Rail,diesel_oil,TON,0.152794039 +AK,Ammonia,1A3c_Rail,light_oil,TON,0.000397331 +AK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14.42993183 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.008258426 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.1327465 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.0923134 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000570171 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.568932543 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.123666115 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.250284575 +AK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.021661578 +AK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.436004117 +AK,Ammonia,1A4bi_Residential-stationary,biomass,TON,33.78643585 +AK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,23.34055 +AK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.121500056 +AK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,177.4330067 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.166872536 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.025043629 +AK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003136643 +AK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,4.145059024 +AK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.113973161 +AK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.649318653 +AK,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.0025 +AK,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.99 +AK,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.6 +AK,Ammonia,5B_Compost-biogas,Other_Fuel,TON,15.70704 +AK,Ammonia,5C_Incineration,,TON,7.51 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,17869.54923 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8797.918462 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,495.8101092 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,200525.4437 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3516.633861 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.34909515 +AK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,159478.9723 +AK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,1809927.557 +AK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16154.81688 +AK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,66412.93062 +AK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,50825.96303 +AK,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,97463.86426 +AK,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,218.3360132 +AK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,162191.5682 +AK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3166.738826 +AK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,680660.6919 +AK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,24545.35516 +AK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11685.78691 +AK,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,688.942663 +AK,Carbon Dioxide,1A3c_Rail,light_oil,TON,31.03799119 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15208.41913 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20972.63474 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1016.892924 +AK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2665.489975 +AK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,32411.52861 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20555.07866 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1754.921397 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003092175 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,384.51737 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,281513.8094 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14034.80582 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46247.3796 +AK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1950.24 +AK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1060.34 +AK,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,8.2 +AK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1933.34 +AK,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,1.034396331 +AK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,386.9056037 +AK,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,5 +AK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1341.21 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,626.1911174 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,346.8014512 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22.20306401 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1.016334047 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,701.359518 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,643.2940497 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.553342022 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,9533.537228 +AK,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.03 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,637.6170611 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,704.9799819 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078430124 +AK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13460.97431 +AK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2447.420262 +AK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,58773.17284 +AK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,169.0421787 +AK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2024.62247 +AK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,251.5057022 +AK,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4827.47946 +AK,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.571240225 +AK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,392.1228826 +AK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,95.92098647 +AK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1767.393501 +AK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,859.0804915 +AK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,598.4126348 +AK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,254.088889 +AK,Carbon Monoxide,1A3c_Rail,light_oil,TON,6.902134929 +AK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6534.497939 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.01823432 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,464.278692 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,182.6720997 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,239.3513715 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,402.5081531 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,65.38211501 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4244.905363 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,20.79767868 +AK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,9.026413244 +AK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,7573.987071 +AK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5588.904518 +AK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,116.702806 +AK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.60750015 +AK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,134.2154713 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,42.21240227 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,531.9031037 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000342744 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0314562 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,30180.1417 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.84063822 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5247.18114 +AK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,35.11 +AK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1698.608583 +AK,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,28 +AK,Carbon Monoxide,2A6_Other-minerals,,TON,114.27 +AK,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,48.9 +AK,Carbon Monoxide,2H2_Food-and-beverage,,TON,181.3674619 +AK,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,4.41796 +AK,Carbon Monoxide,5C_Incineration,,TON,13.13410781 +AK,Carbon Monoxide,5C_Incineration,biomass,TON,15.75492749 +AK,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,22353.26046 +AK,Carbon Monoxide,5C_Open-burning-residential,,TON,1238.91837 +AK,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,144.183559 +AK,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,1.1 +AK,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.621744691 +AK,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.313176549 +AK,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.883113104 +AK,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,6.748844101 +AK,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.862395261 +AK,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.054513702 +AK,Methane,1A3bii_Road-LDV,diesel_oil,TON,11.29636765 +AK,Methane,1A3bii_Road-LDV,light_oil,TON,233.5169824 +AK,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.894918791 +AK,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.161176545 +AK,Methane,1A3biii_Road-bus,diesel_oil,TON,0.788470039 +AK,Methane,1A3biii_Road-bus,light_oil,TON,9.324151968 +AK,Methane,1A3biii_Road-bus,natural_gas,TON,2.489368263 +AK,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.368051862 +AK,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.130659194 +AK,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.67418454 +AK,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.275831218 +AK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.430589091 +AK,Methane,1A3c_Rail,diesel_oil,TON,0.029599616 +AK,Methane,1A3c_Rail,light_oil,TON,0.02391771 +AK,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.491982051 +AK,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,16.39896809 +AK,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.43291198 +AK,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.094652207 +AK,Methane,1A4bi_Residential-mobile,light_oil,TON,35.91508699 +AK,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.606617307 +AK,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.058767735 +AK,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00029499 +AK,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016511395 +AK,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,304.7109687 +AK,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.364532665 +AK,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,48.2675953 +AK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,9993.63 +AK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1925.76 +AK,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,275.62 +AK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,6652.78 +AK,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0.336944287 +AK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,434.7030557 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,22.29 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,979.94 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,174.6840921 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.5883951 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.087304132 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,7.279520438 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1720.163997 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1133.34083 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,12.33898545 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,34480.47719 +AK,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1150.524409 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,12.39726295 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092484 +AK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3636.459217 +AK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,787.8791996 +AK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7063.142838 +AK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,75.78815562 +AK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,235.8893634 +AK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,605.9073909 +AK,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,469.9838273 +AK,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.341331099 +AK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1381.138024 +AK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,15.11832849 +AK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5346.675028 +AK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,110.9241912 +AK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.97956392 +AK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,981.4679994 +AK,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.103086992 +AK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,38937.73334 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.631879898 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2006.556872 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,330.4552874 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.020273003 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.399709662 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,482.9884876 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119.3584916 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,78.38752511 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.21163205 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,21.12320764 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,98.07429319 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,99.18573066 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,420.12995 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.18699979 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,299.9742979 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,97.63223069 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.214306799 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.66041E-05 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3096501 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,549.5289911 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,147.1254456 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,366.6987812 +AK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,38.65 +AK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1232.915527 +AK,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,51 +AK,Nitrogen Oxides,2A6_Other-minerals,,TON,320.9 +AK,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,20.07 +AK,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,497.07 +AK,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,7 +AK,Nitrogen Oxides,5C_Incineration,,TON,11.47618317 +AK,Nitrogen Oxides,5C_Incineration,biomass,TON,15.19381997 +AK,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,661.3403157 +AK,Nitrogen Oxides,5C_Open-burning-residential,,TON,87.453065 +AK,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,6.40815621 +AK,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.02 +AK,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.7 +AK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.635075655 +AK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,184.4118664 +AK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.070434924 +AK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.396321553 +AK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.14344028 +AK,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.173598417 +AK,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.042115262 +AK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.257797142 +AK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.095433176 +AK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.328663315 +AK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.022144575 +AK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.248076506 +AK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,241.435885 +AK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,41.0919098 +AK,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,12.455 +AK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,124.1357 +AK,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.562940251 +AK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,16.29621575 +AK,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.63390284 +AK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,49.2673999 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.464164586 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,61.51717903 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,91.48292954 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.159617056 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,395.067577 +AK,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.02394 +AK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,50496.06126 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.857671132 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,73.95105033 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,60.7845694 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.142739387 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.515862555 +AK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,25.2078025 +AK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.131219953 +AK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.3260192 +AK,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,12.7816279 +AK,PM10 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,3 +AK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.75726124 +AK,PM10 Filterable,2A2_Lime-production,,TON,0.03 +AK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,8156.794063 +AK,PM10 Filterable,2A6_Other-minerals,,TON,1828.44297 +AK,PM10 Filterable,2C5_Lead-production,,TON,13.01 +AK,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,60.34 +AK,PM10 Filterable,2D3d_Coating-application,,TON,7.47 +AK,PM10 Filterable,2H2_Food-and-beverage,,TON,329.5739521 +AK,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,114.124379 +AK,PM10 Filterable,3Dc_Other-farm,,TON,0 +AK,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,76.4 +AK,PM10 Filterable,5C_Incineration,,TON,7.764552 +AK,PM10 Filterable,5C_Incineration,biomass,TON,8.529667 +AK,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2248.553118 +AK,PM10 Filterable,5C_Open-burning-residential,,TON,403.91005 +AK,PM10 Filterable,5C_Open-burning-yard-waste,,TON,23.8761013 +AK,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.009691 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,395.156106 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,44.27 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,13.25 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,226.0704 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.766353544 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,37.69364646 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,2.23 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,92.344 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.876385482 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.644774157 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.111569595 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1.097155529 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,103.9407057 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,100.9365465 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.402137636 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,728.592968 +AK,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.03 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,98.00037684 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,5.451900075 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +AK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,294.8979269 +AK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,50496.06126 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,44.91057244 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,350.537481 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.848698207 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.6999511 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,35.33292467 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,20.53674015 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.044291517 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,94.49375025 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.445579399 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,390.3205651 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.898239435 +AK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.874279077 +AK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,25.42711169 +AK,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003950323 +AK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1037.147954 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.880235409 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,118.5285129 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,63.8752235 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.378686202 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.880433141 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.60949385 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.422211539 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.1286249 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.498565902 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,26.55800354 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,751.4617456 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,55.5504595 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.289169973 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.471649051 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.711525926 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.427814116 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.90783E-07 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.43619616 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,371.4495857 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.102509704 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,21.47822997 +AK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,3 +AK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,19.42084903 +AK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.03 +AK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,8156.794063 +AK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1831.12297 +AK,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,13.01 +AK,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,60.34 +AK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,7.47 +AK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,368.8863495 +AK,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,114.124379 +AK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +AK,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,76.4 +AK,PM10 Primary (Filt + Cond),5C_Incineration,,TON,8.370143376 +AK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.256512349 +AK,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2248.553118 +AK,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,403.91005 +AK,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,23.8761013 +AK,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.78 +AK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,232.6100789 +AK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,24.4581256 +AK,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,12.455 +AK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,117.6057 +AK,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.556717181 +AK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,15.73546782 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.46026558 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,45.0704099 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.401076151 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.52034976 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,66.13103465 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.103410536 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,394.8648783 +AK,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.0136367 +AK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5188.883327 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.780149518 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.65603751 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,12.94195879 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.141524302 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.613182116 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,19.3726495 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.100845018 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.071310179 +AK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,5.4857579 +AK,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,3 +AK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.73936288 +AK,PM2.5 Filterable,2A2_Lime-production,,TON,0.03 +AK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,815.6794063 +AK,PM2.5 Filterable,2A6_Other-minerals,,TON,332.4856917 +AK,PM2.5 Filterable,2C5_Lead-production,,TON,12.81 +AK,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,36.3888194 +AK,PM2.5 Filterable,2D3d_Coating-application,,TON,6.198509 +AK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,126.99405 +AK,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,23.50034736 +AK,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +AK,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,3 +AK,PM2.5 Filterable,5C_Incineration,,TON,6.26187868 +AK,PM2.5 Filterable,5C_Incineration,biomass,TON,6.18035405 +AK,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1733.415394 +AK,PM2.5 Filterable,5C_Open-burning-residential,,TON,369.896613 +AK,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,18.4061692 +AK,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.00552019 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,386.8994476 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,27.6362436 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,13.25 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,219.5404 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.761755982 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,37.13127302 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,1.0563627 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,88.15459 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.541420897 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.61133773 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.109397586 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1.034199172 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,69.28603829 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,75.59832547 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.346060713 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,728.313636 +AK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.0196967 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,95.06043554 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,5.019205212 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +AK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,272.3123469 +AK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5188.883327 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,33.47232007 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,201.1242818 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.85459738 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.692965785 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,28.08517494 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.403564748 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.017467789 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,72.53464906 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.191987962 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,299.5300463 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.442784506 +AK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.170622378 +AK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,24.46625618 +AK,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003642235 +AK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,994.1313935 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.773224099 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,69.35938579 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,16.20042775 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.375941248 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.634065996 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.29120417 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.005429219 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.1286249 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.453609201 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,24.43410656 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,741.9881888 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,49.715389 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.258794887 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.2169413 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.480181173 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.833969194 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.90783E-07 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.42311017 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,341.734125 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.009048292 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,19.75997506 +AK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,3 +AK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,19.40295067 +AK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.03 +AK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,815.6794063 +AK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,335.1656917 +AK,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,12.81 +AK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,36.3888194 +AK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,6.198509 +AK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,166.3064531 +AK,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,23.50034736 +AK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +AK,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,3 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,6.870499748 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.904169707 +AK,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1733.415394 +AK,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,369.896613 +AK,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,18.4061692 +AK,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.77582919 +AK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,471.73 +AK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1577.3 +AK,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,4.62 +AK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,255.2 +AK,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,0.330173348 +AK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,11.85982665 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,81.06 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,248.59 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.010746946 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.465000652 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.032375778 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.059157082 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,117.8932037 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,657.343239 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.080318079 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1307.829573 +AK,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.223581347 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.058366184 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-06 +AK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,402.474409 +AK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.407674984 +AK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,36.07243025 +AK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.14237932 +AK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1.3236294 +AK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.452901654 +AK,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.9424838 +AK,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.001155977 +AK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.427519671 +AK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.063114091 +AK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.996861941 +AK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.489196429 +AK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.23290111 +AK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.173910163 +AK,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000552545 +AK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2471.063888 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.29278774 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,114.733795 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,209.1954075 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.080410741 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.342109115 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.164478087 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.177716803 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.354183238 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.005697221 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.031262636 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.589457265 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,15.55152064 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,994.30752 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,5.1758961 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,1.69805644 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.22202351 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.031936431 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.72274E-08 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004540735 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5.11464639 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.447247941 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.841657696 +AK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,19.40155647 +AK,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,13 +AK,Sulfur Dioxide,2A6_Other-minerals,,TON,13.16 +AK,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,1.02 +AK,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,19.05 +AK,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,4 +AK,Sulfur Dioxide,5C_Incineration,,TON,2.564124728 +AK,Sulfur Dioxide,5C_Incineration,biomass,TON,3.551943271 +AK,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,219.5646363 +AK,Sulfur Dioxide,5C_Open-burning-residential,,TON,14.5755142 +AK,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.38461906 +AK,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,1.14 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,486.05 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,12.96 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.45 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,182.26 +AK,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,3.283341956 +AK,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,19.48116227 +AK,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,5.472236593 +AK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,606.4332592 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.25 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,285.95 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,28.96728327 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.93290914 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.610848161 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.363942243 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,105.4209721 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,6.439014898 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.270799692 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,446.2447776 +AK,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,128.2002838 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,48.69101555 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783817 +AK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1544.935416 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,383.3149274 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7184.230836 +AK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,32.24592707 +AK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,222.48096 +AK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,60.18486049 +AK,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,208.1664488 +AK,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.333021267 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,89.99267836 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,3.925053959 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,494.7217378 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,38.27839456 +AK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,107.3734021 +AK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,45.54510011 +AK,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.176438846 +AK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,731.0830554 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.028514873 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,128.5008166 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.833004009 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.6890512 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,32.48426043 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.03560995 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,151.9203317 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.903685996 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.10832624 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,490.3118462 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,830.2073921 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,16.33837415 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.085049949 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,16.56551886 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.15877069 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,61.86167484 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.37659E-05 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.79712255 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12650.64993 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.477716642 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1276.597829 +AK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,476.1107519 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,78.86323416 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,77.67778492 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,637.9500684 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,897.2163872 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,24.96 +AK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13260.06041 +AK,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,7 +AK,Volatile Organic Compounds,2A6_Other-minerals,,TON,23.9 +AK,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +AK,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,8.28 +AK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3291.86118 +AK,Volatile Organic Compounds,2D3d_Coating-application,,TON,211.785484 +AK,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,288.5935795 +AK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.92 +AK,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,281.46315 +AK,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +AK,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,108.3125735 +AK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,30.699808 +AK,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,92.34 +AK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,0 +AK,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,128.97 +AK,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,111.1392 +AK,Volatile Organic Compounds,5C_Incineration,,TON,7.344533541 +AK,Volatile Organic Compounds,5C_Incineration,biomass,TON,3.542186476 +AK,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1534.309737 +AK,Volatile Organic Compounds,5C_Open-burning-residential,,TON,84.203265 +AK,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,26.8913601 +AK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.51 +AL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.402 +AL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,215.881782 +AL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,270.465571 +AL,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,2.8 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.235814906 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.105231952 +AL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,524.2572456 +AL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.829872611 +AL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,18.6558332 +AL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.009000028 +AL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,91.88448911 +AL,Ammonia,1A2c_Chemicals,natural_gas,TON,6.66 +AL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,9.715837151 +AL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.247627248 +AL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,17.89551901 +AL,Ammonia,1A3bii_Road-LDV,light_oil,TON,2111.108108 +AL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.25584572 +AL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.19714984 +AL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.156268038 +AL,Ammonia,1A3biii_Road-bus,light_oil,TON,1.845650579 +AL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.0405001 +AL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,81.45593052 +AL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,11.54413141 +AL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,80.2636056 +AL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,8.15125182 +AL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.4404202 +AL,Ammonia,1A3c_Rail,diesel_oil,TON,6.820343423 +AL,Ammonia,1A3c_Rail,light_oil,TON,0.003289323 +AL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.934081258 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.26999918 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0029 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.9452 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.95807902 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.935746369 +AL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.429974361 +AL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.084413296 +AL,Ammonia,1A4bi_Residential-stationary,biomass,TON,144.6524744 +AL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.378000098 +AL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.080999977 +AL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,390.896371 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.709506322 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.270717654 +AL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021672713 +AL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.848010374 +AL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.83389711 +AL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.752848256 +AL,Ammonia,2A1_Cement-production,,TON,4.320851 +AL,Ammonia,2A2_Lime-production,Other_Fuel,TON,98.07887 +AL,Ammonia,2A6_Other-minerals,Other_Fuel,TON,380.6783 +AL,Ammonia,2B_Chemicals-other,,TON,127.2226159 +AL,Ammonia,2C_Iron-steel-alloy,,TON,26.89466 +AL,Ammonia,2C3_Aluminum-production,,TON,4.088 +AL,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.152 +AL,Ammonia,2C7a_Copper-production,,TON,0.00045 +AL,Ammonia,2D3d_Coating-application,,TON,0.121 +AL,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.5905 +AL,Ammonia,2H1_Pulp-and-paper,,TON,708.6056 +AL,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.44 +AL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,334.51431 +AL,Ammonia,3B1a_Cattle-dairy,,TON,343.586 +AL,Ammonia,3B1b_Cattle-non-dairy,,TON,5113.915 +AL,Ammonia,3B2_Manure-sheep,,TON,59.195796 +AL,Ammonia,3B3_Manure-swine,,TON,1737.338 +AL,Ammonia,3B4_Manure-other,,TON,1170.7476 +AL,Ammonia,3B4_Manure-poultry,,TON,31222.66599 +AL,Ammonia,3B4d_Manure-goats,,TON,560.802 +AL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,4269.42142 +AL,Ammonia,3F_Ag-res-on-field,,TON,722.901026 +AL,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,182.565 +AL,Ammonia,5B_Compost-biogas,Other_Fuel,TON,103.38816 +AL,Ammonia,5C_Open-burning-industrial,,TON,0.00211 +AL,Ammonia,5D1_Wastewater-domestic,,TON,12.81 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,275396.3695 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,290931.7918 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16418.03105 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1196050.552 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,20718.40227 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.39637826 +AL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,661259.0825 +AL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,26313021.58 +AL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,116498.382 +AL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1284554.041 +AL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,412312.1016 +AL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,60803.78627 +AL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1765.79 +AL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4688436.831 +AL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,287306.7209 +AL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5316201.93 +AL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,227737.151 +AL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,222894.095 +AL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5799.356804 +AL,Carbon Dioxide,1A3c_Rail,light_oil,TON,257.0073429 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,117824.2544 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,162073.5783 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7196.179484 +AL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,52908.61683 +AL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,379868.6521 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,456727.356 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,19283.72459 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.145755192 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2656.7865 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,190666.2178 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,102687.1766 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,338519.1464 +AL,Carbon Monoxide,11C_Other-natural,,TON,187066.3 +AL,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,16.925 +AL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,41.3 +AL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,21.872 +AL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7499.74 +AL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1431.8062 +AL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,415.976 +AL,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,371.2352 +AL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,226.0555 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,850.3865981 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7120.6912 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,425.9559479 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,45052.18842 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,194.8768887 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3377.167628 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,661.1696722 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,147.8164724 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5946.382633 +AL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,69.792 +AL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,72.0144 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3868.567315 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4295.356381 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.313720697 +AL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10663.80472 +AL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,10655.49697 +AL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,630568.1864 +AL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1142.54881 +AL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,27853.35077 +AL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1031.554036 +AL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2640.081993 +AL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,16.8445 +AL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7802.060569 +AL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,7124.788192 +AL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8060.88609 +AL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8896.815531 +AL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10761.0957 +AL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2212.29609 +AL,Carbon Monoxide,1A3c_Rail,light_oil,TON,59.73975572 +AL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1893.929035 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,316.131389 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.26769537 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.041779491 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.024719532 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.555125504 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,79.61118014 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,506.5379454 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,34262.8886 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,152.6789049 +AL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,179.7820525 +AL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,87707.79444 +AL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,23188.76887 +AL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.89000027 +AL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.404999982 +AL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,876.45719 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1345.038613 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5553.449215 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.126963626 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.994607 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35031.18299 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,203.7003883 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,38959.60411 +AL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,261.0633924 +AL,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.24421 +AL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13134.30159 +AL,Carbon Monoxide,2A1_Cement-production,,TON,3356.746 +AL,Carbon Monoxide,2A2_Lime-production,,TON,9168.615 +AL,Carbon Monoxide,2A6_Other-minerals,,TON,7074.8955 +AL,Carbon Monoxide,2B_Chemicals-other,,TON,3162.725963 +AL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,7411.317598 +AL,Carbon Monoxide,2C3_Aluminum-production,,TON,245.69157 +AL,Carbon Monoxide,2C5_Lead-production,,TON,3793.1077 +AL,Carbon Monoxide,2C6_Zinc-production,,TON,72.81 +AL,Carbon Monoxide,2C7_Other-metal,,TON,18.4883 +AL,Carbon Monoxide,2C7a_Copper-production,,TON,1.28236 +AL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,75.474 +AL,Carbon Monoxide,2D3d_Coating-application,,TON,130.7366 +AL,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.347 +AL,Carbon Monoxide,2D3h_Printing,,TON,0 +AL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,10313.13042 +AL,Carbon Monoxide,2H2_Food-and-beverage,,TON,598.9254945 +AL,Carbon Monoxide,2H3_Other-industrial-processes,,TON,233.48234 +AL,Carbon Monoxide,3Dc_Other-farm,,TON,4.07 +AL,Carbon Monoxide,3F_Ag-res-on-field,,TON,7500.85503 +AL,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,632.098196 +AL,Carbon Monoxide,5C_Incineration,,TON,0.626896647 +AL,Carbon Monoxide,5C_Incineration,biomass,TON,0.719217166 +AL,Carbon Monoxide,5C_Open-burning-industrial,,TON,17.5 +AL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,63070.67652 +AL,Carbon Monoxide,5C_Open-burning-residential,,TON,9669.4351 +AL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1110.47105 +AL,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.953490613 +AL,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,43.17516436 +AL,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,194.3705173 +AL,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,40.97161918 +AL,Methane,1A2g_Construction_and_Mining,light_oil,TON,16.23031287 +AL,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.218054649 +AL,Methane,1A3bii_Road-LDV,diesel_oil,TON,25.07386564 +AL,Methane,1A3bii_Road-LDV,light_oil,TON,1381.593862 +AL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.13441334 +AL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,77.85928597 +AL,Methane,1A3biii_Road-bus,diesel_oil,TON,9.970737874 +AL,Methane,1A3biii_Road-bus,light_oil,TON,4.611325423 +AL,Methane,1A3biii_Road-bus,natural_gas,TON,14.3978 +AL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,325.7313891 +AL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,10.89575854 +AL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,120.9720995 +AL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,17.90722775 +AL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.5795425 +AL,Methane,1A3c_Rail,diesel_oil,TON,0.248726614 +AL,Methane,1A3c_Rail,light_oil,TON,0.187119671 +AL,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.810936605 +AL,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,120.8724425 +AL,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,100.0701798 +AL,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.885756461 +AL,Methane,1A4bi_Residential-mobile,light_oil,TON,359.8793411 +AL,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.00312071 +AL,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,21.24879813 +AL,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.10927924 +AL,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.11439942 +AL,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,345.0026692 +AL,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.667368501 +AL,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,349.6031164 +AL,Nitrogen Oxides,11C_Other-natural,,TON,12006.3765 +AL,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,4.342 +AL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,34.2 +AL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,104.3756 +AL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,47514.9 +AL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2272.8203 +AL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,392.938 +AL,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,1182.065 +AL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,106.2313 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1434.122659 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,944.0004463 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,62.76340918 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,17261.69046 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,442.2412052 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6860.42918 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,291.5123363 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,88.45757401 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,12403.26477 +AL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,300.023 +AL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,13.829 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6917.318482 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,62.09823046 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.060369889 +AL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4270.296907 +AL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2573.622478 +AL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,69500.26644 +AL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,408.036192 +AL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2878.639608 +AL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2951.807419 +AL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,242.1264686 +AL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,8.85387 +AL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24655.93082 +AL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,796.089978 +AL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24245.57093 +AL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,740.9314681 +AL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,443.58881 +AL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,12993.48554 +AL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.686267923 +AL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10326.83837 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,145.2505489 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,51.8516226 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.063057138 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.118666843 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.082200084 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,142.0497085 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,924.7754104 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,510.0451083 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38.65312862 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,419.517 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,899.1652669 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,409.3612563 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,6.80400345 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.45799999 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2173.820194 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2946.087082 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,66.92920812 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.028382511 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.836533 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,393.4086316 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1076.432563 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2411.796628 +AL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,297.1814775 +AL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.07404 +AL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9217.32426 +AL,Nitrogen Oxides,2A1_Cement-production,,TON,5020.744 +AL,Nitrogen Oxides,2A2_Lime-production,,TON,5747.868 +AL,Nitrogen Oxides,2A6_Other-minerals,,TON,5725.08946 +AL,Nitrogen Oxides,2B_Chemicals-other,,TON,2149.424503 +AL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,5016.837029 +AL,Nitrogen Oxides,2C3_Aluminum-production,,TON,314.18068 +AL,Nitrogen Oxides,2C5_Lead-production,,TON,84.9378 +AL,Nitrogen Oxides,2C6_Zinc-production,,TON,42.01 +AL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,34.9783 +AL,Nitrogen Oxides,2C7a_Copper-production,,TON,5.22352 +AL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,16.775 +AL,Nitrogen Oxides,2D3d_Coating-application,,TON,161.4017 +AL,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.41 +AL,Nitrogen Oxides,2D3h_Printing,,TON,0 +AL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,8845.69399 +AL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,48.6925 +AL,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,73.21876 +AL,Nitrogen Oxides,3Dc_Other-farm,,TON,32.82 +AL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,205.135846 +AL,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,141.252 +AL,Nitrogen Oxides,5C_Incineration,,TON,23.20334022 +AL,Nitrogen Oxides,5C_Incineration,biomass,TON,3.126333979 +AL,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.98 +AL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1865.997665 +AL,Nitrogen Oxides,5C_Open-burning-residential,,TON,682.54826 +AL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,49.3542601 +AL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.946705471 +AL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1253.541301 +AL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.388661436 +AL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.81527488 +AL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.878967168 +AL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.002236231 +AL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.113985 +AL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.812346721 +AL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,8.774025515 +AL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.06419802 +AL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15.34230319 +AL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.25349422 +AL,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.16 +AL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,29.1 +AL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.924802 +AL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2204.5642 +AL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,307.1783899 +AL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,24.665 +AL,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,203.3945 +AL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.9424 +AL,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.16883 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,38694.49209 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.17245961 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7446.94337 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,171.3663255 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.992896513 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,472.1268517 +AL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,24.718575 +AL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.36814 +AL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,298117.259 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,238.7570114 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.2066056 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.031959338 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.026804606 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.329902843 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.093009163 +AL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.40824019 +AL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.087480048 +AL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.38152853 +AL,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.016 +AL,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,14.02961 +AL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.43738 +AL,PM10 Filterable,2A1_Cement-production,,TON,786.5412092 +AL,PM10 Filterable,2A2_Lime-production,,TON,500.6944455 +AL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18784.64234 +AL,PM10 Filterable,2A6_Other-minerals,,TON,6977.233417 +AL,PM10 Filterable,2B_Chemicals-other,,TON,513.805763 +AL,PM10 Filterable,2C_Iron-steel-alloy,,TON,1948.67447 +AL,PM10 Filterable,2C3_Aluminum-production,,TON,434.86065 +AL,PM10 Filterable,2C5_Lead-production,,TON,21.12 +AL,PM10 Filterable,2C6_Zinc-production,,TON,27.2 +AL,PM10 Filterable,2C7_Other-metal,,TON,108.531789 +AL,PM10 Filterable,2C7a_Copper-production,,TON,8.1177001 +AL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,33.59 +AL,PM10 Filterable,2D3d_Coating-application,,TON,62.623654 +AL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,2.33 +AL,PM10 Filterable,2H1_Pulp-and-paper,,TON,2902.921779 +AL,PM10 Filterable,2H2_Food-and-beverage,,TON,282.0275338 +AL,PM10 Filterable,2H3_Other-industrial-processes,,TON,95.403575 +AL,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,18833.1299 +AL,PM10 Filterable,3Dc_Other-farm,,TON,25017.9584 +AL,PM10 Filterable,5A_Solid-waste-disposal,,TON,364.77993 +AL,PM10 Filterable,5C_Incineration,,TON,1.00627 +AL,PM10 Filterable,5C_Incineration,biomass,TON,0.27641 +AL,PM10 Filterable,5C_Open-burning-industrial,,TON,156 +AL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,6344.390548 +AL,PM10 Filterable,5C_Open-burning-residential,,TON,3152.41134 +AL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,183.888688 +AL,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.04 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1.20035 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,31.74 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.01098906 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3906.40546 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,816.9436302 +AL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,67.8119764 +AL,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,333.0176 +AL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.442211 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,104.4929275 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.49069414 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.001713795 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,39043.51284 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,44.16256896 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,8286.504729 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,208.9593242 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,10.91102574 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1143.281414 +AL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,34.3069388 +AL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.43643 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,592.1062228 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,32.09398325 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638358 +AL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,378.8630122 +AL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,298117.259 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,162.0965571 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3324.976187 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,31.4779554 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,147.7318479 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,235.8982854 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.78788088 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.337498 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1423.716661 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,34.87491292 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1720.275997 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,28.3912766 +AL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.8868244 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,413.4704773 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.032697552 +AL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,275.0581173 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,246.9792752 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.722030193 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.035044136 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.030490784 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.352886585 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.00112176 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.18810362 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,41.92239167 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.906988298 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.8503708 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,356.5293274 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2988.489025 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.89963979 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.192779997 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.39198853 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,236.2034781 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,63.89760399 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000144766 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0246306 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,338.0027341 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.7004669 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,157.2163672 +AL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,10.40910242 +AL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,14.02961 +AL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,227.7372923 +AL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,803.9218371 +AL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,669.882774 +AL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18784.64234 +AL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7282.681477 +AL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,729.7578158 +AL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4136.586751 +AL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,668.75936 +AL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,33.68692 +AL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,27.2 +AL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,123.8055382 +AL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,14.638381 +AL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,34.755473 +AL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,63.490454 +AL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.33 +AL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4203.551918 +AL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1662.112248 +AL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,113.4251887 +AL,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,18833.1299 +AL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,25021.24994 +AL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1270.789328 +AL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,464.47833 +AL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.354233978 +AL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.588161942 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,171.772 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6344.390548 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3152.41134 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,183.888688 +AL,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.08 +AL,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.72 +AL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,17.28 +AL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.882137 +AL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,972.7202 +AL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,278.705019 +AL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,24.47279948 +AL,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,198.3044 +AL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.7714 +AL,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.15855 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,31560.33949 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.6304304 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,676.82783 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,158.921772 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.653851921 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,392.965459 +AL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,23.614599 +AL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.22737 +AL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,33540.5983 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,194.6369779 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.706689741 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.031791672 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.00990168 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.169213736 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.925666377 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.313739886 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.067229981 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.409843151 +AL,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.016 +AL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,7.96869 +AL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.21025151 +AL,PM2.5 Filterable,2A1_Cement-production,,TON,473.0843398 +AL,PM2.5 Filterable,2A2_Lime-production,,TON,226.390244 +AL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1878.464234 +AL,PM2.5 Filterable,2A6_Other-minerals,,TON,1863.959837 +AL,PM2.5 Filterable,2B_Chemicals-other,,TON,490.2076418 +AL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1316.130887 +AL,PM2.5 Filterable,2C3_Aluminum-production,,TON,329.36887 +AL,PM2.5 Filterable,2C5_Lead-production,,TON,19.26 +AL,PM2.5 Filterable,2C6_Zinc-production,,TON,27.2 +AL,PM2.5 Filterable,2C7_Other-metal,,TON,55.79388519 +AL,PM2.5 Filterable,2C7a_Copper-production,,TON,2.1138909 +AL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,32.94 +AL,PM2.5 Filterable,2D3d_Coating-application,,TON,29.74288396 +AL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,2.33 +AL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2276.699549 +AL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,109.2209077 +AL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,47.79177781 +AL,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3391.40595 +AL,PM2.5 Filterable,3Dc_Other-farm,,TON,5009.4129 +AL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,145.84623 +AL,PM2.5 Filterable,5C_Incineration,,TON,0.93846 +AL,PM2.5 Filterable,5C_Incineration,biomass,TON,0.204867 +AL,PM2.5 Filterable,5C_Open-burning-industrial,,TON,146.25 +AL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4890.894531 +AL,PM2.5 Filterable,5C_Open-burning-residential,,TON,2886.94448 +AL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,141.760396 +AL,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.04 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.760348 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,19.92 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.96832406 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2674.56146 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,788.4702639 +AL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,67.6197759 +AL,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,327.9276 +AL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,5.2712108 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,101.4030144 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.3957426 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.001330957 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,33803.39971 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,33.62081958 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1689.6704 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,196.5312756 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,10.5735628 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1064.297795 +AL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,33.2029628 +AL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.29566 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,574.3430409 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.54690054 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638358 +AL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,345.5287269 +AL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,33540.5983 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,117.3552365 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1220.308261 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23.2243824 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.45322159 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,175.3473292 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.887369505 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.113909 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1061.783855 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,11.26846778 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1232.049904 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,9.894573126 +AL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.0525752 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,381.9167812 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.030147892 +AL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,264.9995471 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,212.9464092 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.205709198 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.034824921 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.013591168 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.192227457 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.78280689 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,79.72247453 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,38.69293074 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.906988298 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,28.95488108 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,328.0217691 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2933.538016 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.805139765 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.172530063 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.42029537 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,229.117336 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,58.78586704 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000144766 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9338888 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,310.9633996 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.01945334 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,144.6390993 +AL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,10.17410921 +AL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,7.96869 +AL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,227.5101663 +AL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,490.4649671 +AL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,395.5789748 +AL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1878.464234 +AL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2169.398788 +AL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,706.1596946 +AL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3504.043355 +AL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,563.267596 +AL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,31.82692 +AL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,27.2 +AL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,71.06763429 +AL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,8.63457 +AL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,34.105473 +AL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,30.60968396 +AL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.33 +AL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3577.329651 +AL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1489.305777 +AL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,65.81339154 +AL,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3391.40595 +AL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5012.70444 +AL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,911.507074 +AL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,245.54465 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.341059408 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.461983512 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,162.022 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4890.894531 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2886.94448 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,141.760396 +AL,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.08 +AL,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.017 +AL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,3.87 +AL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,13.05793 +AL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,119792.5 +AL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,113.0011 +AL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,74.234 +AL,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,1620.243 +AL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2276.023 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.495308894 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.644110662 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.099459338 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2646.284694 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,62.2731078 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,22327.39701 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,313.3346472 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.85002445 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2535.701357 +AL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,23.7572 +AL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.21854 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,13.27901937 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.343769905 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.01756E-05 +AL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,426.1726732 +AL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.616575435 +AL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,585.2154972 +AL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.95082524 +AL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.29905408 +AL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.435956721 +AL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.364116524 +AL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00934903 +AL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38.68163793 +AL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.404803969 +AL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,43.7449827 +AL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.069862291 +AL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.9940259 +AL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,7.731838515 +AL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004574588 +AL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,319.9550716 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.37219934 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.615603303 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.02602003 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.543665572 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.457646414 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.772867106 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.376833404 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.739205972 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.040315283 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.620650326 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.899326119 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,51.70287385 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,16.10279345 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,3.45059963 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,13.14459863 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.138904087 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.350854976 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.38335E-06 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.031381032 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.460656386 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.272455071 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.160724418 +AL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,277.5296833 +AL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02887 +AL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7001.980025 +AL,Sulfur Dioxide,2A1_Cement-production,,TON,493.27666 +AL,Sulfur Dioxide,2A2_Lime-production,,TON,10662.319 +AL,Sulfur Dioxide,2A6_Other-minerals,,TON,771.0572752 +AL,Sulfur Dioxide,2B_Chemicals-other,,TON,5640.02433 +AL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,3299.77803 +AL,Sulfur Dioxide,2C3_Aluminum-production,,TON,45.03040333 +AL,Sulfur Dioxide,2C5_Lead-production,,TON,7456 +AL,Sulfur Dioxide,2C6_Zinc-production,,TON,6.400055 +AL,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,35.494 +AL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.03461 +AL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,66.034 +AL,Sulfur Dioxide,2D3d_Coating-application,,TON,0.6135 +AL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,3762.5935 +AL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.26016 +AL,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,46.42602 +AL,Sulfur Dioxide,3Dc_Other-farm,,TON,3.25 +AL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,53.4336589 +AL,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,68.52592 +AL,Sulfur Dioxide,5C_Incineration,,TON,5.171335265 +AL,Sulfur Dioxide,5C_Incineration,biomass,TON,0.624506465 +AL,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.23 +AL,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,619.5115065 +AL,Sulfur Dioxide,5C_Open-burning-residential,,TON,113.758081 +AL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.66404517 +AL,Volatile Organic Compounds,11C_Other-natural,,TON,1678412.27 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,103.873 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,6.05 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,36.89016 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,877.760846 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,323.4412 +AL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,751.6353508 +AL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,86.81767916 +AL,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,56.1746 +AL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,121.7886 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,131.6726306 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,205.7754274 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,42.08843192 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1297.36263 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,37.58308285 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,36.69925878 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.70825497 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,10.81839174 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1074.011671 +AL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,25.4631 +AL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.54735 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,781.8459306 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,299.2339717 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.047135246 +AL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2135.417625 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,958.1312216 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,51780.24131 +AL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,119.348582 +AL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2059.099286 +AL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,254.8560787 +AL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,133.4673899 +AL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.08368 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2003.666964 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,296.3215248 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1732.869468 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,427.3565956 +AL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1336.61266 +AL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,668.6713318 +AL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.708418575 +AL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,154.4322771 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,13.11812521 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.101936985 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.805585547 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.238052259 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,116.4816037 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1333.603444 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.63140785 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,41.95787439 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5805.801363 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3177.910632 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.264599927 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.056699989 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,120.492166 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,270.9633083 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,585.2588753 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.023622072 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.5235849 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10887.87304 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,54.71749287 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,11763.51469 +AL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,4833.561468 +AL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,739.0423793 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,344.1859588 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,600.0159778 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3489.164413 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,11293.33823 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,286.68 +AL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13458.43562 +AL,Volatile Organic Compounds,2A1_Cement-production,,TON,219.86334 +AL,Volatile Organic Compounds,2A2_Lime-production,,TON,73.266 +AL,Volatile Organic Compounds,2A6_Other-minerals,,TON,243.3631437 +AL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1955.220136 +AL,Volatile Organic Compounds,2B_Chemicals-other,,TON,2041.144054 +AL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,890.983264 +AL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,768.95813 +AL,Volatile Organic Compounds,2C5_Lead-production,,TON,75.93 +AL,Volatile Organic Compounds,2C6_Zinc-production,,TON,15.6 +AL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,659.46865 +AL,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.26981 +AL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,21583.79014 +AL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,65.604 +AL,Volatile Organic Compounds,2D3d_Coating-application,,TON,21356.42795 +AL,Volatile Organic Compounds,2D3e_Degreasing,,TON,4620.843178 +AL,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,14.3899999 +AL,Volatile Organic Compounds,2D3h_Printing,,TON,6248.06903 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,703.4289411 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1856.613659 +AL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,11719.6196 +AL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,781.2317685 +AL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,810.88435 +AL,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,27.587 +AL,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,410.609 +AL,Volatile Organic Compounds,3B3_Manure-swine,,TON,139.503 +AL,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2506.32 +AL,Volatile Organic Compounds,3Dc_Other-farm,,TON,50.74 +AL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1585.972541 +AL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,470.081934 +AL,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,85.18014 +AL,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,731.55076 +AL,Volatile Organic Compounds,5C_Incineration,,TON,37.92059701 +AL,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.02016392 +AL,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,7.45 +AL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,4329.118249 +AL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,657.18484 +AL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,207.111618 +AL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,65.64 +AL,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,20.99194 +AL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.03 +AR,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.01696 +AR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,360.0431 +AR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,46.168606 +AR,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,0.5 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.563083045 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.077897705 +AR,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AR,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,240.7421253 +AR,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.9373558 +AR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,51.88251263 +AR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.068980189 +AR,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,130.6894455 +AR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.036946431 +AR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.129832003 +AR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.53675646 +AR,Ammonia,1A3bii_Road-LDV,light_oil,TON,1025.103326 +AR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.12331804 +AR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.18275619 +AR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.294077267 +AR,Ammonia,1A3biii_Road-bus,light_oil,TON,1.66058956 +AR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,71.19791255 +AR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,6.527695842 +AR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,53.6264397 +AR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.159970316 +AR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.8134477 +AR,Ammonia,1A3c_Rail,diesel_oil,TON,8.12093249 +AR,Ammonia,1A3c_Rail,light_oil,TON,0.004214596 +AR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.878846083 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.255638473 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.157945839 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,46.35505182 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.58464786 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.181343951 +AR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.17937096 +AR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.483985408 +AR,Ammonia,1A4bi_Residential-stationary,biomass,TON,64.2144427 +AR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.105000038 +AR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.060750023 +AR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,382.4616376 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.59747862 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.381055577 +AR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.013100234 +AR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.843225543 +AR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.454114389 +AR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.588626563 +AR,Ammonia,2A6_Other-minerals,Other_Fuel,TON,19.79 +AR,Ammonia,2B_Chemicals-other,,TON,330.8173215 +AR,Ammonia,2C3_Aluminum-production,,TON,2.98001 +AR,Ammonia,2C7_Other-metal,Other_Fuel,TON,388.26 +AR,Ammonia,2D3d_Coating-application,,TON,0 +AR,Ammonia,2D3h_Printing,,TON,0.736 +AR,Ammonia,2H1_Pulp-and-paper,,TON,246.161858 +AR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,335.65326 +AR,Ammonia,2I_Wood-processing,,TON,4.93 +AR,Ammonia,3B1a_Cattle-dairy,,TON,163.301 +AR,Ammonia,3B1b_Cattle-non-dairy,,TON,5614.86 +AR,Ammonia,3B2_Manure-sheep,,TON,53.341068 +AR,Ammonia,3B3_Manure-swine,,TON,1692.093 +AR,Ammonia,3B4_Manure-other,,TON,1061.15592 +AR,Ammonia,3B4_Manure-poultry,,TON,28685.62678 +AR,Ammonia,3B4d_Manure-goats,,TON,352.60236 +AR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,21358.08823 +AR,Ammonia,3F_Ag-res-on-field,,TON,3918.777311 +AR,Ammonia,5A_Solid-waste-disposal,,TON,4.29 +AR,Ammonia,5B_Compost-biogas,Other_Fuel,TON,63.24273 +AR,Ammonia,5C_Incineration,biomass,TON,26.62202479 +AR,Ammonia,5D1_Wastewater-domestic,,TON,7.67 +AR,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.000075 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,192533.2436 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,215607.3714 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12156.31003 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,620089.6353 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,10857.26897 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.69818764 +AR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,440695.7283 +AR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12907399.73 +AR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,73646.6303 +AR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,741874.7572 +AR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,298897.6752 +AR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,57350.88579 +AR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4037529.072 +AR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,158343.7441 +AR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3518548.846 +AR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,85146.16168 +AR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,78424.658 +AR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7405.75874 +AR,Carbon Dioxide,1A3c_Rail,light_oil,TON,329.2918706 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,71899.77662 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,98906.55399 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4324.607084 +AR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,22071.71127 +AR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,185539.7444 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1304522.597 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,28004.84269 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.221596865 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1605.9154 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,189883.57 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,55920.23661 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,184373.4858 +AR,Carbon Monoxide,11C_Other-natural,,TON,148624.33 +AR,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,185.5315 +AR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,15.7434752 +AR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,5804.528 +AR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.02625 +AR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,678.421772 +AR,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,191.5820154 +AR,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0224081 +AR,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,27.05 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,586.5468176 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5272.315863 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,315.5130785 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,20504.61234 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,210.4741973 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,396.1955525 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.431247216 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,41.43731682 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4238.893644 +AR,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,27.194 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1971.523125 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2242.391435 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.156860181 +AR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6312.817131 +AR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6999.351753 +AR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,286897.8995 +AR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,669.911547 +AR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14274.18395 +AR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,697.8536821 +AR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2174.637263 +AR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6671.64651 +AR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3732.157472 +AR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4845.02262 +AR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3250.086365 +AR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3287.6611 +AR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2623.138105 +AR,Carbon Monoxide,1A3c_Rail,light_oil,TON,76.15476826 +AR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,333.8797581 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,390.6768178 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.32668766 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.489452295 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2042.798442 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,309.1346705 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20781.88474 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,92.38464646 +AR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,74.99744676 +AR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,42946.90261 +AR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,11012.25001 +AR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.52499986 +AR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.303750066 +AR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,859.9752676 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4397.235688 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6927.747931 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.467804855 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.689206 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,34407.77321 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,110.9289526 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,21180.23805 +AR,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,777.8153261 +AR,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.85 +AR,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4839.697923 +AR,Carbon Monoxide,2A1_Cement-production,,TON,769.4309 +AR,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,61.3778 +AR,Carbon Monoxide,2A5b_Construction-and-demolition,Other_Fuel,TON,0.10259 +AR,Carbon Monoxide,2A6_Other-minerals,,TON,264.766355 +AR,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,370.173886 +AR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4268.24266 +AR,Carbon Monoxide,2C3_Aluminum-production,,TON,174.241448 +AR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,540.32342 +AR,Carbon Monoxide,2D3d_Coating-application,,TON,7.1765085 +AR,Carbon Monoxide,2D3h_Printing,,TON,1.283 +AR,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,2.95 +AR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,8510.389374 +AR,Carbon Monoxide,2H2_Food-and-beverage,,TON,0.708 +AR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,20.8741 +AR,Carbon Monoxide,2I_Wood-processing,,TON,173.87 +AR,Carbon Monoxide,3Dc_Other-farm,,TON,1.371636 +AR,Carbon Monoxide,3F_Ag-res-on-field,,TON,16382.6654 +AR,Carbon Monoxide,5A_Solid-waste-disposal,,TON,176.659499 +AR,Carbon Monoxide,5C_Incineration,biomass,TON,187.6919562 +AR,Carbon Monoxide,5C_Open-burning-industrial,,TON,1.07 +AR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,22597.67911 +AR,Carbon Monoxide,5C_Open-burning-residential,,TON,6282.7054 +AR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,691.821338 +AR,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.209899305 +AR,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,32.01049296 +AR,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,143.9934734 +AR,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,20.86770262 +AR,Methane,1A2g_Construction_and_Mining,light_oil,TON,8.54021154 +AR,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.109027336 +AR,Methane,1A3bii_Road-LDV,diesel_oil,TON,19.69003704 +AR,Methane,1A3bii_Road-LDV,light_oil,TON,710.9152574 +AR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.62932087 +AR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,44.81357468 +AR,Methane,1A3biii_Road-bus,diesel_oil,TON,4.65544995 +AR,Methane,1A3biii_Road-bus,light_oil,TON,4.169893391 +AR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,336.8666207 +AR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,5.930968811 +AR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,70.9427489 +AR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.040959461 +AR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.7601615 +AR,Methane,1A3c_Rail,diesel_oil,TON,0.31800119 +AR,Methane,1A3c_Rail,light_oil,TON,0.241088337 +AR,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.325635932 +AR,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,74.21432075 +AR,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,60.70406564 +AR,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.786546715 +AR,Methane,1A4bi_Residential-mobile,light_oil,TON,179.9069018 +AR,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,36.49048508 +AR,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,28.64445045 +AR,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.402645571 +AR,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.06913834 +AR,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,347.74182 +AR,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.452607935 +AR,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,190.5625169 +AR,Nitrogen Oxides,11C_Other-natural,,TON,18587.9476 +AR,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,211.7995356 +AR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,54.61081523 +AR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,30948 +AR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.234 +AR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1023.535937 +AR,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,163.9953813 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.104021 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,4.07 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,967.4942309 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,700.2625807 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,46.48301582 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,7625.951175 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,963.470909 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6666.226835 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,26.18055801 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,138.1768349 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,16130.14804 +AR,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,30.4963 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3559.777858 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,33.13116 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.030184928 +AR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1025.234063 +AR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1690.055293 +AR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,33297.15263 +AR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,244.196926 +AR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1629.203056 +AR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2412.736649 +AR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,221.6869149 +AR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22521.08936 +AR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,448.1524498 +AR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16522.97845 +AR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,286.5859831 +AR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,154.505295 +AR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15135.3941 +AR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.901063879 +AR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1726.556994 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,143.2482495 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,61.59892138 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.30809393 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2467.8001 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,564.3312913 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,318.8282506 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23.42938801 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,175.0291155 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,457.7539985 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,193.9096945 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.89000028 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.09350042 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2135.557889 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9475.432427 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,119.8439715 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.104576884 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.802889 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,397.4542044 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,586.1858 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1328.978568 +AR,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,2134.586826 +AR,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.693 +AR,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5178.495443 +AR,Nitrogen Oxides,2A1_Cement-production,,TON,1568.44676 +AR,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,618.678 +AR,Nitrogen Oxides,2A5b_Construction-and-demolition,Other_Fuel,TON,0.37973 +AR,Nitrogen Oxides,2A6_Other-minerals,,TON,311.4516 +AR,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,630.5187937 +AR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,980.071964 +AR,Nitrogen Oxides,2C3_Aluminum-production,,TON,283.35873 +AR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,120.42788 +AR,Nitrogen Oxides,2D3d_Coating-application,,TON,9.6236596 +AR,Nitrogen Oxides,2D3h_Printing,,TON,1.527 +AR,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,5.63 +AR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,4214.748492 +AR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,2.919 +AR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,22.2005 +AR,Nitrogen Oxides,2I_Wood-processing,,TON,112.35 +AR,Nitrogen Oxides,3Dc_Other-farm,,TON,1.6329 +AR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,670.879925 +AR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,80.456049 +AR,Nitrogen Oxides,5C_Incineration,biomass,TON,641.2369514 +AR,Nitrogen Oxides,5C_Open-burning-industrial,,TON,6.29 +AR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,668.5700498 +AR,Nitrogen Oxides,5C_Open-burning-residential,,TON,443.48541 +AR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,30.7476206 +AR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.313340146 +AR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,625.1829835 +AR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.243933981 +AR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.66957479 +AR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.498178305 +AR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.50937872 +AR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.227597633 +AR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.697433999 +AR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.48684662 +AR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.907514126 +AR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.01904487 +AR,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,74.30259 +AR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.638546066 +AR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2426.8009 +AR,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.133758 +AR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,46.1616068 +AR,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,23.21122581 +AR,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0054921 +AR,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.31817297 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.027856219 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,17061.73433 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.6923309 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1010.169391 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.637512554 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,112.0216373 +AR,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,13.47472 +AR,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0076 +AR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,97066.0822 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,321.5439 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.5747853 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003930716 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.065887941 +AR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.113400034 +AR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.065610007 +AR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.299124401 +AR,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.714175272 +AR,PM10 Filterable,2A1_Cement-production,,TON,30.81053563 +AR,PM10 Filterable,2A2_Lime-production,,TON,43.5964332 +AR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,17142.7652 +AR,PM10 Filterable,2A6_Other-minerals,,TON,3416.810766 +AR,PM10 Filterable,2B_Chemicals-other,,TON,559.885733 +AR,PM10 Filterable,2C_Iron-steel-alloy,,TON,297.0157585 +AR,PM10 Filterable,2C3_Aluminum-production,,TON,62.67329818 +AR,PM10 Filterable,2C7_Other-metal,,TON,147.4343433 +AR,PM10 Filterable,2D3d_Coating-application,,TON,2.39840938 +AR,PM10 Filterable,2D3h_Printing,,TON,0.116 +AR,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.29 +AR,PM10 Filterable,2H1_Pulp-and-paper,,TON,1453.414224 +AR,PM10 Filterable,2H2_Food-and-beverage,,TON,60.90323801 +AR,PM10 Filterable,2H3_Other-industrial-processes,,TON,291.5727859 +AR,PM10 Filterable,2I_Wood-processing,,TON,25.50398207 +AR,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,26117.9543 +AR,PM10 Filterable,3Dc_Other-farm,,TON,127370.2919 +AR,PM10 Filterable,5A_Solid-waste-disposal,,TON,70.9202854 +AR,PM10 Filterable,5C_Incineration,biomass,TON,54.409296 +AR,PM10 Filterable,5C_Open-burning-industrial,,TON,61.9643 +AR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2273.13899 +AR,PM10 Filterable,5C_Open-burning-residential,,TON,2048.2764 +AR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,114.562341 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,76.4813871 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.490427305 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2506.3309 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.151998 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,87.4661775 +AR,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,60.25511961 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00731213 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.755 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,71.39396225 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22.59477406 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.48200799 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.027862153 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,17769.48151 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,138.9674507 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1033.389664 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.84029781 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.755975261 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,290.6549074 +AR,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,23.9308 +AR,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,302.9379601 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.8350964 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +AR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,166.4480138 +AR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,97066.0822 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,101.9283738 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1513.214906 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.1901429 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.88323856 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,173.7362529 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.92436331 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1084.153235 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,18.74648757 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,980.272174 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,10.82390209 +AR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.2568245 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,484.6723402 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041895219 +AR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,44.31312734 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,336.6330408 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.52916641 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010512383 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.59274251 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,50.15799163 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,25.57457428 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.544685968 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.45159894 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,164.5869263 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1433.290957 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.249899975 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.144584978 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.1777264 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,763.1801784 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,44.49947356 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000533397 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.8278847 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,342.742082 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.36205333 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,85.62744968 +AR,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,81.45582492 +AR,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,112.4148765 +AR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,31.06121366 +AR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,67.62562 +AR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17142.7652 +AR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3454.118866 +AR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,582.3731195 +AR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,342.5377762 +AR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,106.2761136 +AR,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.03 +AR,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,159.922075 +AR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.91200038 +AR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.116 +AR,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.29 +AR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2014.750899 +AR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,588.8219915 +AR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,294.0981732 +AR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,25.50398207 +AR,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,26117.9543 +AR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,127371.0806 +AR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2533.474509 +AR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,80.760083 +AR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,57.75916212 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,63.94 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2273.13899 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2048.2764 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,114.562341 +AR,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.8040184 +AR,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,44.15401 +AR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.641955262 +AR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,718.1391 +AR,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.133758 +AR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,45.5163842 +AR,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,23.12270001 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.0013181 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.09379614 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.009833369 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,10320.85162 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,48.96779455 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,353.100625 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.066855049 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,107.2849208 +AR,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,12.632555 +AR,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.007125 +AR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11373.23183 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,224.8601 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.673097308 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003685043 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.991427941 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.087149979 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.050422491 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.364519563 +AR,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.592613001 +AR,PM2.5 Filterable,2A1_Cement-production,,TON,10.87430196 +AR,PM2.5 Filterable,2A2_Lime-production,,TON,12.7657464 +AR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1714.295633 +AR,PM2.5 Filterable,2A6_Other-minerals,,TON,508.3278228 +AR,PM2.5 Filterable,2B_Chemicals-other,,TON,441.3386846 +AR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,266.0164974 +AR,PM2.5 Filterable,2C3_Aluminum-production,,TON,29.75865595 +AR,PM2.5 Filterable,2C7_Other-metal,,TON,118.8712229 +AR,PM2.5 Filterable,2D3d_Coating-application,,TON,1.990170097 +AR,PM2.5 Filterable,2D3h_Printing,,TON,0.0962553 +AR,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.2406384 +AR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1021.861308 +AR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,17.82715417 +AR,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,201.6506649 +AR,PM2.5 Filterable,2I_Wood-processing,,TON,7.50933697 +AR,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,4537.29986 +AR,PM2.5 Filterable,3Dc_Other-farm,,TON,25472.61128 +AR,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,19.48978834 +AR,PM2.5 Filterable,5C_Incineration,biomass,TON,31.0543414 +AR,PM2.5 Filterable,5C_Open-burning-industrial,,TON,58.0915 +AR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1752.362765 +AR,PM2.5 Filterable,5C_Open-burning-residential,,TON,1875.79022 +AR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,88.316479 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,46.3328071 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.493835002 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,797.6694 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.151998 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,86.8209479 +AR,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,60.16659381 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00313814 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.53063307 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,69.2446881 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22.52453108 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.481728296 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.009836653 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,11028.32696 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,77.50687246 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,375.7845058 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.269698459 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.757102445 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,285.9837641 +AR,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,23.088685 +AR,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.019525 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,293.8498564 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,15.49896087 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +AR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,140.4552869 +AR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11373.23183 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,74.89527662 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,585.5416567 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,13.4432055 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,27.73853161 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,134.7577735 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.632768381 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,845.4764439 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.607829323 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,732.322642 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.527551516 +AR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.4522917 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,447.1408155 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038628274 +AR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,42.9837274 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,239.5994 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.398704676 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010266709 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.31113963 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,48.65326433 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,23.60444787 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.544685968 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.07804178 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,151.4261302 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1397.945862 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.223649965 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.129397471 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.243121266 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,740.2846154 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,40.93969436 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000533397 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.7730477 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,315.3231177 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.99119377 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,78.77724056 +AR,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,79.27553539 +AR,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,112.2933156 +AR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,11.12498158 +AR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,36.7949457 +AR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1714.295633 +AR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,545.6358858 +AR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,463.8260802 +AR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,313.0888151 +AR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,73.36143648 +AR,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.03 +AR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,131.358946 +AR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.503761097 +AR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.0962553 +AR,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.2406384 +AR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1582.958207 +AR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,528.7356099 +AR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,204.1760524 +AR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,7.50933697 +AR,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4537.29986 +AR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,25473.40002 +AR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1705.412937 +AR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,29.32958624 +AR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,34.40420652 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,60.0672 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1752.362765 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1875.79022 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,88.316479 +AR,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.8040184 +AR,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,136.9807182 +AR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.614502487 +AR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,60524.41 +AR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1.37 +AR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,22.14383771 +AR,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,44.7300326 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.00684038 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,257.325 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.431813077 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.217732746 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.073603542 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1711.446993 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.95338268 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,18300.78047 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.73157357 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,15.45005105 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,176.2156447 +AR,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1.1887 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,6.875957418 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.180210238 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50878E-05 +AR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,114.6819571 +AR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.850290385 +AR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,240.1081743 +AR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.637540189 +AR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.8098316 +AR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.62634715 +AR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.066050898 +AR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34.82410493 +AR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.941441103 +AR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.346164 +AR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.581784217 +AR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.45308047 +AR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,9.170100974 +AR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005861352 +AR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.826591679 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,16.27819472 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.475213153 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010422059 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.48929509 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.840187268 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.671664181 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.024227627 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.258913077 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.371564412 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,26.06629961 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,4.47299865 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.58794982 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,12.89738292 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.9585634 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.509863142 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.35198E-05 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018968285 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.446877821 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.782076408 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.355420103 +AR,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,25.17296086 +AR,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.07151095 +AR,Sulfur Dioxide,2A1_Cement-production,,TON,321.003942 +AR,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,25.89874 +AR,Sulfur Dioxide,2A5b_Construction-and-demolition,Other_Fuel,TON,0.02423 +AR,Sulfur Dioxide,2A6_Other-minerals,,TON,115.337 +AR,Sulfur Dioxide,2B_Chemicals-other,,TON,180.9874932 +AR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,684.9355847 +AR,Sulfur Dioxide,2C3_Aluminum-production,,TON,156.3002867 +AR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,185.8464 +AR,Sulfur Dioxide,2D3d_Coating-application,,TON,0.053503636 +AR,Sulfur Dioxide,2D3h_Printing,,TON,0.009 +AR,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.025 +AR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1351.676458 +AR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.018 +AR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1257.5996 +AR,Sulfur Dioxide,2I_Wood-processing,,TON,4.76 +AR,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0097974 +AR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,289.0370209 +AR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,20.699325 +AR,Sulfur Dioxide,5C_Incineration,biomass,TON,84.0937601 +AR,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,221.9653817 +AR,Sulfur Dioxide,5C_Open-burning-residential,,TON,73.914177 +AR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.64368455 +AR,Volatile Organic Compounds,11C_Other-natural,,TON,1339614.04 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,8.998318 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.71155127 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,369.45927 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.00546 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,46.9718483 +AR,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,4.85478825 +AR,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,906.1342943 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.066045 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,5.249 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,89.96350832 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,152.2475464 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,31.17869939 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,588.9688551 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,66.04216964 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,99.81976431 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.143450436 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,5.428870253 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,965.9692501 +AR,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,19.545435 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,396.4148022 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,156.1316965 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023567615 +AR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,561.4626519 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,642.2220673 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,24578.59668 +AR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,71.3142217 +AR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1135.547128 +AR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,177.0025398 +AR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,109.3186669 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1769.995951 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,154.7685161 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,980.787786 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,161.8429455 +AR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,516.63733 +AR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,774.3087934 +AR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.154258906 +AR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,19.55126583 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,11.06917493 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.179640895 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.1133698 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,134.6354876 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,71.08558621 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,804.7238591 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.12194925 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,17.50367183 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2850.996619 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1449.572293 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.073499989 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.042525014 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,118.2259234 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,866.0500408 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,523.1349767 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.087036879 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3382267 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10924.41259 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.79744897 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6265.516205 +AR,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,2750.727827 +AR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,613.9797254 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,126.8411041 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,583.771576 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6732.911011 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6451.33917 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,129 +AR,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9745.918336 +AR,Volatile Organic Compounds,2A1_Cement-production,,TON,120.187448 +AR,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,4.81152 +AR,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,0.42996 +AR,Volatile Organic Compounds,2A6_Other-minerals,,TON,50.92427235 +AR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,781.5931876 +AR,Volatile Organic Compounds,2B_Chemicals-other,,TON,366.780481 +AR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,216.3022846 +AR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,850.677561 +AR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,139.007928 +AR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13210.88617 +AR,Volatile Organic Compounds,2D3d_Coating-application,,TON,10548.4249 +AR,Volatile Organic Compounds,2D3e_Degreasing,,TON,2522.244066 +AR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,7.365 +AR,Volatile Organic Compounds,2D3h_Printing,,TON,7946.76795 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,641.6145273 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,983.3548957 +AR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,14447.92643 +AR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,662.0907554 +AR,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1779.173935 +AR,Volatile Organic Compounds,2I_Wood-processing,,TON,141.49 +AR,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,13.111 +AR,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,450.835 +AR,Volatile Organic Compounds,3B3_Manure-swine,,TON,135.855 +AR,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2302.451 +AR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.0898095 +AR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3698.6686 +AR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1296.984707 +AR,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,28.5033448 +AR,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,447.4899 +AR,Volatile Organic Compounds,5C_Incineration,biomass,TON,41.2346808 +AR,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,4.26 +AR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1551.083321 +AR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,427.00516 +AR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,129.030171 +AR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,40 +AR,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,13.88212 +AR,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.35 +AZ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,268.61859 +AZ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,176.4383442 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.856483901 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.069764542 +AZ,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.133942297 +AZ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.464919202 +AZ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.82434248 +AZ,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,51.52899639 +AZ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,21.58617567 +AZ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.556702839 +AZ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,23.10743143 +AZ,Ammonia,1A3bii_Road-LDV,light_oil,TON,1820.78904 +AZ,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.67901962 +AZ,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,96.99018346 +AZ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.555888285 +AZ,Ammonia,1A3biii_Road-bus,light_oil,TON,3.63284829 +AZ,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.3441883 +AZ,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,83.74910493 +AZ,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,5.435998951 +AZ,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.6212571 +AZ,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,33.34882815 +AZ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.6397662 +AZ,Ammonia,1A3c_Rail,diesel_oil,TON,10.55420295 +AZ,Ammonia,1A3c_Rail,light_oil,TON,0.004012383 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.2815495 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.1515831 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.3033409 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.097607955 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.217793722 +AZ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.951193888 +AZ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,9.121637401 +AZ,Ammonia,1A4bi_Residential-stationary,biomass,TON,178.6422238 +AZ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.0224 +AZ,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,207.36333 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.191543344 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.031793723 +AZ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.026314726 +AZ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.316898123 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.421293847 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.401723484 +AZ,Ammonia,2A1_Cement-production,,TON,5.3774 +AZ,Ammonia,2A6_Other-minerals,,TON,5.6847 +AZ,Ammonia,2B_Chemicals-other,Other_Fuel,TON,1027.46738 +AZ,Ammonia,2C7_Other-metal,Other_Fuel,TON,8.5 +AZ,Ammonia,2C7a_Copper-production,,TON,1.2 +AZ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,9.825815 +AZ,Ammonia,3B1a_Cattle-dairy,,TON,10724.57 +AZ,Ammonia,3B1b_Cattle-non-dairy,,TON,9767.244 +AZ,Ammonia,3B2_Manure-sheep,,TON,537.67824 +AZ,Ammonia,3B3_Manure-swine,,TON,1552.099 +AZ,Ammonia,3B4_Manure-other,,TON,922.0464 +AZ,Ammonia,3B4_Manure-poultry,,TON,31.1055032 +AZ,Ammonia,3B4d_Manure-goats,,TON,293.27232 +AZ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,4202.754361 +AZ,Ammonia,3F_Ag-res-on-field,,TON,37.00772 +AZ,Ammonia,5B_Compost-biogas,Other_Fuel,TON,143.51455 +AZ,Ammonia,5C_Open-burning-land-clearing,,TON,0 +AZ,Ammonia,5D1_Wastewater-domestic,,TON,18.14 +AZ,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,4.0158 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,228669.6394 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,192344.3385 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10861.37858 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2657438.014 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,46573.96421 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,12.14186837 +AZ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,844260.3017 +AZ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22845929.31 +AZ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,135475.381 +AZ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1674985.132 +AZ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,293099.3829 +AZ,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,111962.3137 +AZ,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,14731.868 +AZ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4744009.121 +AZ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,136914.2002 +AZ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2677674.53 +AZ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1022510.746 +AZ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,149740.93 +AZ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7070.88597 +AZ,Carbon Dioxide,1A3c_Rail,light_oil,TON,313.3348831 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,134983.3893 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,185692.0461 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8278.452369 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,117044.9354 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,681622.5095 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,146668.1747 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2384.580897 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.50724352 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3225.8373 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,157148.3155 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,51878.69965 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,171061.4082 +AZ,Carbon Monoxide,11C_Other-natural,,TON,392556.49 +AZ,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0304 +AZ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,197.456 +AZ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,23.11915199 +AZ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9651.7271 +AZ,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1157.917544 +AZ,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,5.53192 +AZ,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1615.608008 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4936.17612 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,296.6662407 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,11.49473151 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,703.1375283 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,137.5568711 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,999.5744709 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,8448.777465 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,9837.947368 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.705872238 +AZ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,14585.66656 +AZ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,13621.50813 +AZ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,463435.6664 +AZ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1297.38656 +AZ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28004.10921 +AZ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,855.3057858 +AZ,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,6058.05672 +AZ,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,123.56562 +AZ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8604.662905 +AZ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2946.589257 +AZ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4960.66943 +AZ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,18855.12455 +AZ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6289.3403 +AZ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3401.983593 +AZ,Carbon Monoxide,1A3c_Rail,light_oil,TON,73.50847245 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,45.28641498 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.007838587 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.72056964 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1275.698891 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,580.3286347 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,40124.14831 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,175.3318184 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,397.6388475 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,159236.7208 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,27012.80141 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.118418025 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,747.912089 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,510.0083145 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,543.2472999 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.056208628 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.486553 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,26622.93198 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,102.9120671 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,19720.88223 +AZ,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.248218746 +AZ,Carbon Monoxide,2A1_Cement-production,,TON,304.7983313 +AZ,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,399.0998 +AZ,Carbon Monoxide,2A6_Other-minerals,,TON,3767.98512 +AZ,Carbon Monoxide,2B_Chemicals-other,,TON,2.52 +AZ,Carbon Monoxide,2C_Iron-steel-alloy,,TON,560.387 +AZ,Carbon Monoxide,2C7a_Copper-production,,TON,75.35 +AZ,Carbon Monoxide,2D3d_Coating-application,Other_Fuel,TON,2.97964 +AZ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.33405 +AZ,Carbon Monoxide,2H2_Food-and-beverage,,TON,954.864276 +AZ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,48.42237 +AZ,Carbon Monoxide,3F_Ag-res-on-field,,TON,423.4927 +AZ,Carbon Monoxide,5A_Solid-waste-disposal,,TON,202.7956212 +AZ,Carbon Monoxide,5C_Incineration,biomass,TON,1.166174145 +AZ,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.26 +AZ,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,32193.8744 +AZ,Carbon Monoxide,5C_Open-burning-residential,,TON,3266.9011 +AZ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,86.801417 +AZ,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.635187116 +AZ,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.53229349 +AZ,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,128.6084541 +AZ,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,89.43183872 +AZ,Methane,1A2g_Construction_and_Mining,light_oil,TON,36.26294106 +AZ,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.490623493 +AZ,Methane,1A3bii_Road-LDV,diesel_oil,TON,30.66529264 +AZ,Methane,1A3bii_Road-LDV,light_oil,TON,1048.692314 +AZ,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.1878713 +AZ,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,82.83940126 +AZ,Methane,1A3biii_Road-bus,diesel_oil,TON,5.826370155 +AZ,Methane,1A3biii_Road-bus,light_oil,TON,13.98481404 +AZ,Methane,1A3biii_Road-bus,natural_gas,TON,95.139419 +AZ,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,536.9901418 +AZ,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.855489628 +AZ,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,51.6000989 +AZ,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,22.26439075 +AZ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.2771429 +AZ,Methane,1A3c_Rail,diesel_oil,TON,0.303403946 +AZ,Methane,1A3c_Rail,light_oil,TON,0.227703076 +AZ,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.366062377 +AZ,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,137.3331787 +AZ,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,114.8289222 +AZ,Methane,1A4bi_Residential-mobile,diesel_oil,TON,4.17056513 +AZ,Methane,1A4bi_Residential-mobile,light_oil,TON,625.7303278 +AZ,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.08440245 +AZ,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.297336904 +AZ,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.048379542 +AZ,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.13890215 +AZ,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,238.2567739 +AZ,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.347599455 +AZ,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,176.7076543 +AZ,Nitrogen Oxides,11C_Other-natural,,TON,13912.47 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0353 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,219.553 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,77.60281554 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,29127.545 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2225.013749 +AZ,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,4.892925 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1313.279684 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,643.9662479 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43.07600829 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4.214508674 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3242.138318 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,302.6087117 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2301.363659 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,15255.35064 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,131.5565535 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.135832352 +AZ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,5402.986254 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3519.718495 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,57514.85721 +AZ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,515.836327 +AZ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3218.389923 +AZ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2704.171824 +AZ,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,645.233241 +AZ,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,68.202005 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30192.78045 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,367.7859156 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17018.7952 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2503.087584 +AZ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,325.861111 +AZ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19526.29499 +AZ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.814389371 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,44.59326743 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.14882113 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.221923574 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1621.737536 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1059.457188 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,549.6990236 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,44.36343513 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,928.1508773 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1457.267176 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,478.7610731 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.4138 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2041.607 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1095.15176 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.2595747 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.012565356 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,27.726082 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,308.5691052 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,543.8202449 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1211.793113 +AZ,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.334932771 +AZ,Nitrogen Oxides,2A1_Cement-production,,TON,249.682 +AZ,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1362.43 +AZ,Nitrogen Oxides,2A6_Other-minerals,,TON,2458.168058 +AZ,Nitrogen Oxides,2B_Chemicals-other,,TON,148.052495 +AZ,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,41.6005 +AZ,Nitrogen Oxides,2C7a_Copper-production,,TON,206.32 +AZ,Nitrogen Oxides,2D3d_Coating-application,Other_Fuel,TON,3.547185 +AZ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,1.588155 +AZ,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +AZ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,18.531595 +AZ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,12.75622 +AZ,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,38.24 +AZ,Nitrogen Oxides,5C_Incineration,biomass,TON,25.8962581 +AZ,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.008 +AZ,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,955.492281 +AZ,Nitrogen Oxides,5C_Open-burning-residential,,TON,230.60472 +AZ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.8578415 +AZ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.464545056 +AZ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1131.265554 +AZ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.46045805 +AZ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,78.64781885 +AZ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.623699164 +AZ,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.111684114 +AZ,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.9559312 +AZ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.932091162 +AZ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.857300409 +AZ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.08120496 +AZ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,23.99828303 +AZ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.9642363 +AZ,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.000579832 +AZ,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,82.545388 +AZ,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.992319674 +AZ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1255.37014 +AZ,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,32.01869231 +AZ,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9.567486998 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,226.4351677 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,329.7412798 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,31.30926167 +AZ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,132806.644 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,31.15193366 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.826318126 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016906427 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.152050731 +AZ,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1961.07 +AZ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.0242 +AZ,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,26.3497004 +AZ,PM10 Filterable,2A1_Cement-production,,TON,236.7263589 +AZ,PM10 Filterable,2A2_Lime-production,,TON,11.8637164 +AZ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,37891.19058 +AZ,PM10 Filterable,2A6_Other-minerals,,TON,55252.2936 +AZ,PM10 Filterable,2B_Chemicals-other,,TON,44.7642267 +AZ,PM10 Filterable,2C_Iron-steel-alloy,,TON,6.4595 +AZ,PM10 Filterable,2C7_Other-metal,,TON,363.7060031 +AZ,PM10 Filterable,2C7a_Copper-production,,TON,267.430258 +AZ,PM10 Filterable,2D3d_Coating-application,Other_Fuel,TON,0.269575 +AZ,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,11.714655 +AZ,PM10 Filterable,2H2_Food-and-beverage,,TON,192.7668091 +AZ,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,865.0197775 +AZ,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,9204.1558 +AZ,PM10 Filterable,3Dc_Other-farm,,TON,17634.3615 +AZ,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,77.43433594 +AZ,PM10 Filterable,5C_Incineration,biomass,TON,10.19355 +AZ,PM10 Filterable,5C_Open-burning-industrial,,TON,0.027246 +AZ,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3251.49847 +AZ,PM10 Filterable,5C_Open-burning-residential,,TON,1065.06772 +AZ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.3738889 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0006 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,149.7919 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.568036984 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2016.68671 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,374.4120521 +AZ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.603465 +AZ,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,88.78584891 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.91676381 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.377858774 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9.897009767 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,240.0241454 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,358.4720127 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,100.8702106 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1298.244639 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,72.15421933 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001436308 +AZ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,449.3563737 +AZ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,132806.644 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,197.8933462 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2499.59508 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,34.8320109 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,177.2994525 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,169.8653904 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,21.90037844 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.404039 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1411.515655 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,17.07570738 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1060.903765 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,106.3338588 +AZ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.6415931 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,626.0165246 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039871561 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,32.23622725 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.304454136 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.018115856 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.80903532 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94.16140899 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,48.01649593 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.043573041 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,66.02045096 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,696.330776 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3512.430079 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.0543 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,69.274481 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,88.29365161 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.113801046 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.40899E-05 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.6718704 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,238.4116223 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.46869111 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,79.44505134 +AZ,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.066716236 +AZ,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,237.6367111 +AZ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,69.49567366 +AZ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,37891.19058 +AZ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,55291.36755 +AZ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,45.2460341 +AZ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,30.350118 +AZ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,364.8270488 +AZ,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,320.985 +AZ,PM10 Primary (Filt + Cond),2D3d_Coating-application,Other_Fuel,TON,0.269575 +AZ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,11.833415 +AZ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2465.006101 +AZ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,997.9254455 +AZ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.0021609 +AZ,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9204.1558 +AZ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,17634.3615 +AZ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,93.4954 +AZ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,89.53611811 +AZ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,11.02669068 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.03 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3251.50547 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1065.06772 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.3738889 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.000579832 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,82.542088 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.981825882 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1166.81585 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,32.01869231 +AZ,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8.228571326 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,204.8367248 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,38.47236104 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,31.08191213 +AZ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,15358.05535 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,25.16392002 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.76079131 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016912014 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.20956788 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1959.41 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.0186 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,25.2332652 +AZ,PM2.5 Filterable,2A1_Cement-production,,TON,135.2942847 +AZ,PM2.5 Filterable,2A2_Lime-production,,TON,4.051109751 +AZ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3789.096058 +AZ,PM2.5 Filterable,2A6_Other-minerals,,TON,7171.737121 +AZ,PM2.5 Filterable,2B_Chemicals-other,,TON,23.67598503 +AZ,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2.083 +AZ,PM2.5 Filterable,2C7_Other-metal,,TON,71.05432738 +AZ,PM2.5 Filterable,2C7a_Copper-production,,TON,260.270258 +AZ,PM2.5 Filterable,2D3d_Coating-application,Other_Fuel,TON,0.2236899 +AZ,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,11.61781941 +AZ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,12.41376244 +AZ,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,714.1836587 +AZ,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1890.8221 +AZ,PM2.5 Filterable,3Dc_Other-farm,,TON,3526.865 +AZ,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,26.02056023 +AZ,PM2.5 Filterable,5C_Incineration,biomass,TON,6.88355 +AZ,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.027246 +AZ,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2513.5482 +AZ,PM2.5 Filterable,5C_Open-burning-residential,,TON,975.37864 +AZ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,11.0809 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0006 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,149.7886 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.557543206 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1928.13261 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,183.8899682 +AZ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.58182 +AZ,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,86.04973354 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.81589135 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.374920836 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8.560803329 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,220.5999026 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,67.1058136 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,84.8644108 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1259.297362 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,66.42787793 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001436308 +AZ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,400.6267111 +AZ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,15358.06335 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,145.3068173 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,870.716303 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.6924596 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.2090176 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,133.6521072 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.42834789 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.1203075 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1073.518896 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.581950113 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,798.775935 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,33.56947053 +AZ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.4673974 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,577.2749385 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036761182 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,26.24665915 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.254211131 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.018118737 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.46773352 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,91.3365457 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,44.31768403 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.043573041 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,64.03979271 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,640.6568723 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3443.54675 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.0485 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,68.157746 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,85.64482014 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.024708043 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.40899E-05 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.561716 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,219.3398345 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.12463451 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,73.08936412 +AZ,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.066716236 +AZ,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,136.2046369 +AZ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,61.68268541 +AZ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3789.119058 +AZ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,7178.430449 +AZ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,23.73433103 +AZ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,16.56444996 +AZ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,71.0631072 +AZ,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,313.825 +AZ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,Other_Fuel,TON,0.2236899 +AZ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,11.68123731 +AZ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2284.65288 +AZ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,736.9221847 +AZ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.001725 +AZ,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1890.8221 +AZ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3526.87 +AZ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,68.6404 +AZ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,36.62734237 +AZ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.72285068 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.03 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2513.5552 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,975.37864 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.0809 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0001 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,20.3543 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,8.519344498 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,16826.11 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,63.63045335 +AZ,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.25075 +AZ,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.821655586 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.732816422 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.114870175 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.47849038 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,490.4866943 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,8.251035639 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,19.7953964 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,29.46736588 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.41710167 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.78952E-05 +AZ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,582.3017342 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.39530805 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,406.8855099 +AZ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.1794966 +AZ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,30.8204679 +AZ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.571393366 +AZ,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.870885609 +AZ,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.07799757 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,40.94299734 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.168430508 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,23.3215987 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.85272812 +AZ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.62395554 +AZ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,11.91853136 +AZ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005076687 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.667849731 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.161259499 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.014055467 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.97304814 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.577351375 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.606525406 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.046378655 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.372990813 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.156501704 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,59.531027 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.9799 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,12.401361 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.689695227 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.036061688 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.82601E-06 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.038102186 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.469610866 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.653282133 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2.988361221 +AZ,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.003196804 +AZ,Sulfur Dioxide,2A1_Cement-production,,TON,0.778044283 +AZ,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1995.784 +AZ,Sulfur Dioxide,2A6_Other-minerals,,TON,34.469522 +AZ,Sulfur Dioxide,2B_Chemicals-other,,TON,0.02 +AZ,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,25.436 +AZ,Sulfur Dioxide,2C7a_Copper-production,,TON,21934.73 +AZ,Sulfur Dioxide,2D3d_Coating-application,Other_Fuel,TON,0.021285 +AZ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.009525 +AZ,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +AZ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2.395345 +AZ,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.3688 +AZ,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,3.146 +AZ,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,3.56923153 +AZ,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,314.531964 +AZ,Sulfur Dioxide,5C_Open-burning-residential,,TON,38.434127 +AZ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.83356891 +AZ,Volatile Organic Compounds,11C_Other-natural,,TON,1850671.4 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0073 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,83.0938 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,11.7948716 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,343.323413 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,146.848377 +AZ,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,34.81987874 +AZ,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,137.2892102 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,143.4891039 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,28.34533253 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.325815836 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,217.765998 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.376128604 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,150.3954657 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1698.857831 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,689.0500549 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.106054391 +AZ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1951.511349 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1164.260679 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,42188.70516 +AZ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,130.72989 +AZ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2189.76007 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,197.975661 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,381.1037425 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,12.7776359 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2517.523293 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,135.060921 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1092.10872 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,740.2780944 +AZ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1198.30664 +AZ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,997.5370653 +AZ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.25584578 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,6.709435452 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.693160107 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.34561059 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,84.06195062 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,133.4489995 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1659.910551 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.82167651 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,92.81179646 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,10690.40878 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3994.589821 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.0154 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,113.68926 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,99.95954937 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,31.28772342 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010457833 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.7053906 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8209.966238 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.64372391 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6240.347327 +AZ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1251.04906 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,84.736061 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,551.7284189 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1601.788034 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8378.705708 +AZ,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,121.8750114 +AZ,Volatile Organic Compounds,2A1_Cement-production,,TON,11.3444246 +AZ,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,3.18621 +AZ,Volatile Organic Compounds,2A6_Other-minerals,,TON,9.18539449 +AZ,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,299.8189855 +AZ,Volatile Organic Compounds,2B_Chemicals-other,,TON,1.58461 +AZ,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,25.436 +AZ,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.01004 +AZ,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.57 +AZ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,29625.26192 +AZ,Volatile Organic Compounds,2D3d_Coating-application,,TON,14038.11631 +AZ,Volatile Organic Compounds,2D3e_Degreasing,,TON,1426.771365 +AZ,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,13.43499965 +AZ,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,5147.82075 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2285.337706 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3244.025434 +AZ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,217.700875 +AZ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,329.2159087 +AZ,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,470.5993652 +AZ,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,861.11 +AZ,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,784.245 +AZ,Volatile Organic Compounds,3B3_Manure-swine,,TON,124.623 +AZ,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2.244 +AZ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1481.330008 +AZ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,31.6227 +AZ,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,68.63987676 +AZ,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1015.4739 +AZ,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.537493911 +AZ,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.05 +AZ,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2216.17414 +AZ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,222.03551 +AZ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,16.1891667 +AZ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,91.5402 +AZ,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.0379 +CA,Ammonia,11C_Other-natural,,TON,22154.57 +CA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.601580385 +CA,Ammonia,1A1a_Public-Electricity,biomass,TON,191.0964737 +CA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.786093041 +CA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,23.00427521 +CA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,43.24218396 +CA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2974.567895 +CA,Ammonia,1A1b_Pet-refining,heavy_oil,TON,3.86571E-07 +CA,Ammonia,1A1b_Pet-refining,natural_gas,TON,290.4857428 +CA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,1.660655845 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.41244445 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.7663954 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.463716 +CA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.61852E-06 +CA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,206.0621562 +CA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.580955428 +CA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.00156965 +CA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.23182975 +CA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.015122914 +CA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1639.248332 +CA,Ammonia,1A2c_Chemicals,heavy_oil,TON,0.000004 +CA,Ammonia,1A2c_Chemicals,natural_gas,TON,1.198140452 +CA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,Other_Fuel,TON,0.0000435 +CA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,20.41793905 +CA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.6917059 +CA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.839581522 +CA,Ammonia,1A3bii_Road-LDV,light_oil,TON,12537.09183 +CA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.1659372 +CA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,547.27977 +CA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,31.91222781 +CA,Ammonia,1A3biii_Road-bus,light_oil,TON,28.06848891 +CA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,252.8077673 +CA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,182.7184182 +CA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,48.6178662 +CA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.97481909 +CA,Ammonia,1A3c_Rail,diesel_oil,TON,20.42733852 +CA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9.339091735 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.794580717 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.011854557 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,476.4007084 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.5987832 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,8.4098251 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.1274745 +CA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,2.1338886 +CA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.3165903 +CA,Ammonia,1A4bi_Residential-stationary,biomass,TON,346.19339 +CA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.974000345 +CA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +CA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.194749539 +CA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3979.403879 +CA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19.31098935 +CA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.5792819 +CA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.1178147 +CA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.3711167 +CA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,155.2521958 +CA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.000491807 +CA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0.274198474 +CA,Ammonia,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0001171 +CA,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,20.15005887 +CA,Ammonia,2A1_Cement-production,,TON,15.74530004 +CA,Ammonia,2A2_Lime-production,Other_Fuel,TON,19.75 +CA,Ammonia,2A6_Other-minerals,,TON,123.8404232 +CA,Ammonia,2B_Chemicals-other,,TON,4345.715673 +CA,Ammonia,2C_Iron-steel-alloy,,TON,3.25435E-06 +CA,Ammonia,2C6_Zinc-production,,TON,0.29125 +CA,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.7941865 +CA,Ammonia,2D3d_Coating-application,,TON,2.243519405 +CA,Ammonia,2D3e_Degreasing,,TON,5.50526667 +CA,Ammonia,2D3h_Printing,,TON,21.82706107 +CA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.07809 +CA,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,24.5821279 +CA,Ammonia,2H2_Food-and-beverage,,TON,216.3225132 +CA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,162.0558964 +CA,Ammonia,2I_Wood-processing,,TON,1.587 +CA,Ammonia,3B1a_Cattle-dairy,,TON,64235.945 +CA,Ammonia,3B1b_Cattle-non-dairy,,TON,157817.4443 +CA,Ammonia,3B2_Manure-sheep,,TON,2509.394235 +CA,Ammonia,3B3_Manure-swine,,TON,5300.96669 +CA,Ammonia,3B4_Manure-other,,TON,24772.78741 +CA,Ammonia,3B4_Manure-poultry,,TON,13559.50834 +CA,Ammonia,3B4d_Manure-goats,,TON,912.826596 +CA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,118487.6338 +CA,Ammonia,3Dc_Other-farm,,TON,170.9961357 +CA,Ammonia,3F_Ag-res-on-field,,TON,322.4033328 +CA,Ammonia,5A_Solid-waste-disposal,,TON,4621.914869 +CA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,11336.37091 +CA,Ammonia,5C_Incineration,biomass,TON,105.336035 +CA,Ammonia,5C_Open-burning-yard-waste,,TON,236.779521 +CA,Ammonia,5D1_Wastewater-domestic,,TON,383.7541667 +CA,Ammonia,5D2_Wastewater-industrial,biomass,TON,19.93125257 +CA,Ammonia,5E_Other-waste,Other_Fuel,TON,37.10508 +CA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1755788.909 +CA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1670772.884 +CA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,94297.11518 +CA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8738444.773 +CA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,153153.6337 +CA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,40.47287198 +CA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3462296.329 +CA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,133941416.1 +CA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,517610.677 +CA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5960254.803 +CA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,2412070.727 +CA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,675322.7564 +CA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,55224.8013 +CA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18778954 +CA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1657269.817 +CA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12998768.71 +CA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1157888.433 +CA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1306164.344 +CA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,18347.62586 +CA,Carbon Dioxide,1A3c_Rail,light_oil,TON,817.028237 +CA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1194117.634 +CA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1642512.114 +CA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,72483.04402 +CA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,654860.9816 +CA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,3777730.215 +CA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1458594.595 +CA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,29356.0177 +CA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.746401674 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20727.7033 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,637723.3679 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,306984.8566 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1012064.975 +CA,Carbon Monoxide,11C_Other-natural,,TON,494582.028 +CA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,81.62408299 +CA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,2241.573678 +CA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,196.7687253 +CA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,168.1835268 +CA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,16.30815474 +CA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.879889799 +CA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,7388.879863 +CA,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,702.6023205 +CA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,3946.678498 +CA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.015 +CA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,522.4281531 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6536.440128 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31132.04717 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16168.27749 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.005152846 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,11057.83096 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1259.046906 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,331.694267 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,55.42979612 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3369.605832 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,282.0438716 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21658.50128 +CA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0.00002 +CA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,49.61838938 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.1656884 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,43.3126608 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,13166.46505 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,29371.14691 +CA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,39937.2143 +CA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,771.4651133 +CA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,810713.4509 +CA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5827.74181 +CA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34939.7086 +CA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,8353.93608 +CA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,9050.993483 +CA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9939.493043 +CA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9743.28206 +CA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,22576.46261 +CA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,59599.1288 +CA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,8917.151982 +CA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5372.955096 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.272864496 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.007480264 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,172.1607151 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.3622708 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.926211749 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,70.92522497 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16534.98061 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4320.975652 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,126347.4305 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3027.178826 +CA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1124.994695 +CA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,210864.4842 +CA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,69205.31646 +CA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,47.82374165 +CA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,5.97374893 +CA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,5418.587136 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14655.48963 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,25399.2323 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,645.355416 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,15230.12958 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,306.1158048 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,172491.093 +CA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,458.7983961 +CA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.69155955 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,1.147811401 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,68.03839589 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.31866 +CA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,597.3058312 +CA,Carbon Monoxide,2A1_Cement-production,,TON,816.76011 +CA,Carbon Monoxide,2A5b_Construction-and-demolition,Other_Fuel,TON,3.28838064 +CA,Carbon Monoxide,2A6_Other-minerals,,TON,6439.080152 +CA,Carbon Monoxide,2B_Chemicals-other,,TON,679.8777761 +CA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,178.54733 +CA,Carbon Monoxide,2C3_Aluminum-production,,TON,0.03829 +CA,Carbon Monoxide,2C6_Zinc-production,,TON,0.7763 +CA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,19.91824 +CA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,21.84358001 +CA,Carbon Monoxide,2D3d_Coating-application,,TON,5.1297777 +CA,Carbon Monoxide,2D3h_Printing,,TON,2.89 +CA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,18.245388 +CA,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,160.6496283 +CA,Carbon Monoxide,2H2_Food-and-beverage,,TON,442.3540934 +CA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,435.6468946 +CA,Carbon Monoxide,3Dc_Other-farm,,TON,6364.719186 +CA,Carbon Monoxide,3F_Ag-res-on-field,,TON,22323.46912 +CA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,497.9426366 +CA,Carbon Monoxide,5C_Incineration,,TON,96.56909877 +CA,Carbon Monoxide,5C_Incineration,biomass,TON,77.65562841 +CA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,173498.6737 +CA,Carbon Monoxide,5C_Open-burning-residential,,TON,9398.87004 +CA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,16215.95822 +CA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,53.10112323 +CA,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.450821 +CA,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.363940458 +CA,Methane,1A3bii_Road-LDV,light_oil,TON,6571.088073 +CA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,51.422638 +CA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,445.412794 +CA,Methane,1A3biii_Road-bus,diesel_oil,TON,1822.525628 +CA,Methane,1A3biii_Road-bus,light_oil,TON,143.5847674 +CA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,525.8908738 +CA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,144.9442989 +CA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,187.0572753 +CA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,927.905821 +CA,Nitrogen Oxides,11C_Other-natural,,TON,33558.1561 +CA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,70.94433052 +CA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1525.159354 +CA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,737.9292511 +CA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,320.159359 +CA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,143.8047403 +CA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.58162864 +CA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,4277.551914 +CA,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,111.9280709 +CA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,4713.184257 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.165 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,949.0239687 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3868.91987 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7264.978345 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2298.522925 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.221607064 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3084.434104 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,2365.335712 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1322.381308 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1166.29894 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1720.015805 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,228.5738299 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,25700.9157 +CA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.11 +CA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0.00009 +CA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,27.97348254 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.626234949 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,23.55046925 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,25170.52221 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,677.8789124 +CA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,15083.81897 +CA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,632.1372157 +CA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,86571.49814 +CA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,28353.54093 +CA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8315.96378 +CA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,17965.0932 +CA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,1159.734058 +CA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,69856.7633 +CA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,55760.50566 +CA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,3053.0925 +CA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2701.06773 +CA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,44296.27987 +CA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,20208.96068 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.872429551 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.001885492 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,633.4244604 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.104471835 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,65.18942251 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.701577944 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13888.69348 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6915.955492 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2816.540842 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,211.9090219 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1952.926486 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2537.067268 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1268.040802 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,182.3879204 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,21.50550222 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,10018.22696 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,28283.763 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,646.8008374 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.05421735 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,597.8068977 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,734.5155281 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,8665.327766 +CA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,221.8047655 +CA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.827123 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,41.84185099 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,11.0963277 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.32607 +CA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2075.284854 +CA,Nitrogen Oxides,2A1_Cement-production,,TON,1589.63263 +CA,Nitrogen Oxides,2A5b_Construction-and-demolition,Other_Fuel,TON,19.28125579 +CA,Nitrogen Oxides,2A6_Other-minerals,,TON,11171.63041 +CA,Nitrogen Oxides,2B_Chemicals-other,,TON,608.0394511 +CA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,81.49603 +CA,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.09151 +CA,Nitrogen Oxides,2C6_Zinc-production,,TON,3.43784 +CA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,78.4764685 +CA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,4.120658 +CA,Nitrogen Oxides,2D3d_Coating-application,,TON,1.0753 +CA,Nitrogen Oxides,2D3h_Printing,,TON,3.594 +CA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,11.664541 +CA,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,371.9314357 +CA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,48.91599055 +CA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,251.426869 +CA,Nitrogen Oxides,3Dc_Other-farm,,TON,1.49 +CA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1415.401938 +CA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,323.4724554 +CA,Nitrogen Oxides,5C_Incineration,,TON,75.99279223 +CA,Nitrogen Oxides,5C_Incineration,biomass,TON,494.8207153 +CA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,5133.09532 +CA,Nitrogen Oxides,5C_Open-burning-residential,,TON,663.449704 +CA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,547.4550353 +CA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,35.11666953 +CA,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,12.429377 +CA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,500.7186492 +CA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,278.4152469 +CA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,39.66401093 +CA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,10.61562999 +CA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,13.64128788 +CA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.635033248 +CA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,800.2586914 +CA,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,16.5445392 +CA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1313.941191 +CA,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0232435 +CA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,334.6002933 +CA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.00928796 +CA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.138203 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.056838475 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,838.8082284 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,14.43576409 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,77.43079668 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,20.19945454 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,47.45537114 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,13.1726263 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1020.285169 +CA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,7.28322E-06 +CA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,2.128940903 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.013557093 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.003834328 +CA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,150798.06 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.213151846 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000476548 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,88.92496874 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.218032185 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,22.62433457 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.150531108 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1092.417368 +CA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,6714.35 +CA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.32343174 +CA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.290330448 +CA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,385.8302877 +CA,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,18.46437739 +CA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0626178 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,4.32587327 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,3.052681117 +CA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.099552371 +CA,PM10 Filterable,2A1_Cement-production,,TON,1364.265134 +CA,PM10 Filterable,2A2_Lime-production,,TON,24.73640086 +CA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,55257.03323 +CA,PM10 Filterable,2A6_Other-minerals,,TON,17849.58473 +CA,PM10 Filterable,2B_Chemicals-other,,TON,1371.981851 +CA,PM10 Filterable,2C_Iron-steel-alloy,,TON,73.43869528 +CA,PM10 Filterable,2C3_Aluminum-production,,TON,9.534063306 +CA,PM10 Filterable,2C5_Lead-production,,TON,0.01280858 +CA,PM10 Filterable,2C6_Zinc-production,,TON,0.284120046 +CA,PM10 Filterable,2C7_Other-metal,,TON,580.6911318 +CA,PM10 Filterable,2C7a_Copper-production,,TON,8.555056799 +CA,PM10 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,37.61695868 +CA,PM10 Filterable,2D3d_Coating-application,,TON,586.5174727 +CA,PM10 Filterable,2D3e_Degreasing,,TON,49.08033463 +CA,PM10 Filterable,2D3h_Printing,,TON,1.765407124 +CA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,4.573222114 +CA,PM10 Filterable,2H1_Pulp-and-paper,,TON,3994.280614 +CA,PM10 Filterable,2H2_Food-and-beverage,,TON,6028.847454 +CA,PM10 Filterable,2H3_Other-industrial-processes,,TON,2146.192959 +CA,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,1.07776234 +CA,PM10 Filterable,2I_Wood-processing,,TON,58.65376603 +CA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,57004.52306 +CA,PM10 Filterable,3B4_Manure-other,Other_Fuel,TON,1.43374 +CA,PM10 Filterable,3B4_Manure-poultry,,TON,117.89 +CA,PM10 Filterable,3Dc_Other-farm,,TON,26804.8628 +CA,PM10 Filterable,5A_Solid-waste-disposal,,TON,1109.113868 +CA,PM10 Filterable,5B_Compost-biogas,Other_Fuel,TON,1.13 +CA,PM10 Filterable,5C_Incineration,,TON,3.219561953 +CA,PM10 Filterable,5C_Incineration,biomass,TON,14.35330583 +CA,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.00553092 +CA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,17452.53397 +CA,PM10 Filterable,5C_Open-burning-residential,,TON,3064.20153 +CA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,2187.43 +CA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,7.273478276 +CA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.02970299 +CA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,23.0920733 +CA,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.004224 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,528.8167053 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,299.8212482 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,43.38781728 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,11.33193126 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,15.10118382 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.688271062 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1538.463103 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,14.80137115 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1997.277236 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.036 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,875.3458879 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,205.808527 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,380.0388943 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,68.91602325 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.067441152 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,844.3858118 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,14.19469364 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,91.28901244 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,31.20004363 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,53.9400961 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,15.54151805 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2206.347859 +CA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.00000976 +CA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,3.070582368 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.016280273 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.645772227 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1227.549612 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,311.4551955 +CA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,934.6702647 +CA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,150798.238 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,164.7798721 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,15227.86583 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,744.232157 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,508.459565 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,1016.587699 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,136.0907222 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1844.033879 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2446.889662 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,155.6214628 +CA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,39.40852124 +CA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1047.889362 +CA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,730.9693688 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.177081685 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000472518 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,126.6800738 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.023467207 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,20.90520488 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.135336666 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1930.368976 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,545.8354617 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,526.5773492 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.6082695 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,80.0015707 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,469.4346847 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8809.75892 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,24.32064423 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.84350429 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1016.606535 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1671.622083 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,85.45033105 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.801542 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,79.17037805 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.9003041 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,3041.130536 +CA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,21.64953614 +CA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0626178 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,4.42137713 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,3.120076257 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0008832 +CA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13.02002623 +CA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1424.829668 +CA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,31.18042891 +CA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,55257.56967 +CA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,17915.99603 +CA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1399.125959 +CA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,110.479897 +CA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,15.45172281 +CA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.033909542 +CA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.233476474 +CA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,601.5361381 +CA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,9.30542598 +CA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,41.42666989 +CA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,586.5674176 +CA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,49.08033463 +CA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.9179 +CA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,1.765407124 +CA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,4.600930114 +CA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4056.739771 +CA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,15277.11075 +CA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,9279.727524 +CA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,7.217565852 +CA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,58.65376603 +CA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,57004.70946 +CA,PM10 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,1.43374 +CA,PM10 Primary (Filt + Cond),3B4_Manure-poultry,,TON,117.9013 +CA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,26833.95771 +CA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2610.680422 +CA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1152.117916 +CA,PM10 Primary (Filt + Cond),5B_Compost-biogas,Other_Fuel,TON,1.151163 +CA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,4.64248103 +CA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,20.5191183 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.0072897 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,17452.53397 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3064.20153 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,2187.623031 +CA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,7.9295887 +CA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.02970299 +CA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.00519 +CA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,25.23600574 +CA,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.004224 +CA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,165.3307796 +CA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,241.4750451 +CA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,36.1837779 +CA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3.445218821 +CA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.106184595 +CA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.588231359 +CA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,745.4772797 +CA,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,4.724226469 +CA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,959.2309984 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0186918 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,334.4802991 +CA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.00879796 +CA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.131391 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.029100981 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,750.9942926 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,5.404304391 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,74.40463124 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,14.40278841 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,39.17107508 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,12.70600932 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1012.217318 +CA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,7.19322E-06 +CA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,2.117551573 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.013421989 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.999850636 +CA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,17867.5 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.196368362 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000239132 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,85.21787274 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.422070513 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.01311605 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.147286975 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1069.742415 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,6450.57 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.06263736 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.991642377 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,385.8031582 +CA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,17.26859501 +CA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.06257068 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,4.076131216 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,3.03038955 +CA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.064961471 +CA,PM2.5 Filterable,2A1_Cement-production,,TON,710.1779502 +CA,PM2.5 Filterable,2A2_Lime-production,,TON,5.988183028 +CA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,5536.535741 +CA,PM2.5 Filterable,2A6_Other-minerals,,TON,4996.081899 +CA,PM2.5 Filterable,2B_Chemicals-other,,TON,515.0904837 +CA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,42.94222787 +CA,PM2.5 Filterable,2C3_Aluminum-production,,TON,8.406795915 +CA,PM2.5 Filterable,2C5_Lead-production,,TON,0.003151506 +CA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.011716 +CA,PM2.5 Filterable,2C7_Other-metal,,TON,369.7237357 +CA,PM2.5 Filterable,2C7a_Copper-production,,TON,5.0079726 +CA,PM2.5 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,32.49395868 +CA,PM2.5 Filterable,2D3d_Coating-application,,TON,565.1131536 +CA,PM2.5 Filterable,2D3e_Degreasing,,TON,47.28850743 +CA,PM2.5 Filterable,2D3h_Printing,,TON,1.701041864 +CA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,4.42409421 +CA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2505.548909 +CA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,3115.142446 +CA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,1141.22934 +CA,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,0.444039583 +CA,PM2.5 Filterable,2I_Wood-processing,,TON,40.57289017 +CA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,11059.24778 +CA,PM2.5 Filterable,3B4_Manure-other,Other_Fuel,TON,0.860242 +CA,PM2.5 Filterable,3B4_Manure-poultry,,TON,70.74 +CA,PM2.5 Filterable,3Dc_Other-farm,,TON,4084.575964 +CA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,285.5502146 +CA,PM2.5 Filterable,5B_Compost-biogas,Other_Fuel,TON,0.16709367 +CA,PM2.5 Filterable,5C_Incineration,,TON,2.798992842 +CA,PM2.5 Filterable,5C_Incineration,biomass,TON,8.769673476 +CA,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.00526515 +CA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,13454.15984 +CA,PM2.5 Filterable,5C_Open-burning-residential,,TON,2806.16387 +CA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,2031.54 +CA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,6.826903116 +CA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.02900482 +CA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,20.97939427 +CA,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.00407 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,191.0759244 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,268.9391719 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,40.8917736 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4.104203088 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,5.456461957 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.657023913 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1479.027012 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,7.359845566 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1638.060742 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.0314483 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,875.2258937 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,190.134041 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,341.7057795 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,68.76543948 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.040146206 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,758.0043016 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,5.313907964 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,88.34928773 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,30.56893661 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,45.76983986 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,15.07773766 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2195.941038 +CA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.00000967 +CA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,3.059193038 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.016137008 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.641796695 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1129.352913 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,235.3215557 +CA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,794.651627 +CA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,17868.00512 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,101.5632972 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6491.931819 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,433.247543 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,220.809584 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,586.8048588 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,58.32833989 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1219.764035 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1875.386905 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,66.4925104 +CA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.79415765 +CA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,951.0274121 +CA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,681.8702211 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.164603894 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000280188 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,123.5517238 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.379302027 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,18.04827307 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.133447054 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1906.072878 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,430.0038572 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,397.8584369 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.59491685 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,73.60151285 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,354.683811 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8201.783894 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,24.09564975 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.544816128 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1016.579406 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1544.255072 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,64.5625 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.36118345 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,62.9439434 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.87030435 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,2654.849987 +CA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,20.46718425 +CA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.06257068 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,4.166159737 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,3.097321028 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.000851 +CA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.9840388 +CA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,911.780902 +CA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,12.43216312 +CA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5537.123843 +CA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,5127.537835 +CA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,544.6017263 +CA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,79.98224443 +CA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,14.3230325 +CA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.024069109 +CA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.955942365 +CA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,390.5573582 +CA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,5.75757202 +CA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,36.30659429 +CA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,565.1655825 +CA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,47.28850743 +CA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.884434 +CA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,1.701041864 +CA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,4.43319521 +CA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2568.054851 +CA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,12126.18917 +CA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1862.006384 +CA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,1.44822816 +CA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,40.57289017 +CA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,11059.38018 +CA,PM2.5 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,0.860242 +CA,PM2.5 Primary (Filt + Cond),3B4_Manure-poultry,,TON,70.7408 +CA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4108.047345 +CA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2468.990968 +CA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,328.5546862 +CA,PM2.5 Primary (Filt + Cond),5B_Compost-biogas,Other_Fuel,TON,0.17268617 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,4.531821715 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.62147131 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.00702393 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,13454.15984 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2806.16387 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,2031.699445 +CA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,7.4830135 +CA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.02900482 +CA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.00519 +CA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,23.11616233 +CA,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.00407 +CA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,29.00251037 +CA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,277.0616717 +CA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,16.69236252 +CA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,226.2350563 +CA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,7.59405628 +CA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.042759134 +CA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,392.3143159 +CA,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,4.305367701 +CA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,2626.253082 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.4758 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,356.3438666 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,21.16368807 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.685908737 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.211495761 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.03340487 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,519.3750661 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1185.384478 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,198.2681613 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,106.2074553 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,889.3493266 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.570354161 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3164.620311 +CA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.670718333 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.811826642 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,5.620668398 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,22.9579454 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.6389957 +CA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1628.492246 +CA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.668702205 +CA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1341.649241 +CA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,30.9024092 +CA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,48.6409821 +CA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,16.09645517 +CA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,9.190607844 +CA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,157.6041866 +CA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,91.83905291 +CA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,14.92540918 +CA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.92054537 +CA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,33.13703869 +CA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1336.121831 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.367726503 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,brown_coal,TON,5.35955E-05 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,25.29024296 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,18.37559329 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,120.2375147 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.081164242 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,676.7070095 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.4282845 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.9249989 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3.3204879 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.63184945 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,169.049243 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,350.8738286 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,50.8963724 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,165.7177979 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.26505455 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.49267115 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0677294 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,42.61499495 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.27321345 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11.38984015 +CA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,303.697841 +CA,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00508725 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.606375073 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,1.368039607 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.136 +CA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,133.3441375 +CA,Sulfur Dioxide,2A1_Cement-production,,TON,85.57702 +CA,Sulfur Dioxide,2A5b_Construction-and-demolition,Other_Fuel,TON,0.002040188 +CA,Sulfur Dioxide,2A6_Other-minerals,,TON,3052.229588 +CA,Sulfur Dioxide,2B_Chemicals-other,,TON,1182.009076 +CA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,43.91279 +CA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.04094 +CA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.01971 +CA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,17.6561346 +CA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,1.846129 +CA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0007965 +CA,Sulfur Dioxide,2D3h_Printing,,TON,0.02 +CA,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.38267 +CA,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.69108712 +CA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,208.5626078 +CA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,16.67310508 +CA,Sulfur Dioxide,3Dc_Other-farm,,TON,70.74348299 +CA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,135.7750624 +CA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,201.7024027 +CA,Sulfur Dioxide,5C_Incineration,,TON,6.153604765 +CA,Sulfur Dioxide,5C_Incineration,biomass,TON,48.0872296 +CA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,1704.18754 +CA,Sulfur Dioxide,5C_Open-burning-residential,,TON,110.5749337 +CA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,61.22345504 +CA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,34.75317745 +CA,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,1.40604016 +CA,Volatile Organic Compounds,11C_Other-natural,,TON,2668490.988 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.010219455 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,38.5255954 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,73.13694139 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,3.866114984 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.000231556 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.215180499 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1014.683377 +CA,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,1140.892608 +CA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,125.1472567 +CA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,247.5419972 +CA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,6733.237246 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.00084 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,428.1302742 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,526.4451216 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9389.133373 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,101.4452859 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.041742325 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,300.1680614 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,5.792114493 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,110.5536729 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.528162548 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,38.56765328 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,38.57385215 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,4278.001636 +CA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.000005 +CA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,5.051306452 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.161557927 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,7.363938163 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2248.884528 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1297.304149 +CA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,3145.680967 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,93.95299089 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,96046.4929 +CA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1107.098793 +CA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6372.61049 +CA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,914.5741016 +CA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,541.9391352 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2604.890824 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3120.609793 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1603.089461 +CA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10010.38452 +CA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,3468.271475 +CA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1422.501015 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.073596773 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000994806 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,50.90151451 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.512616854 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.403135592 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1647.70128 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1363.852273 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,6459.732811 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.01489212 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,289.5111283 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,29699.07822 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5419.265667 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,19.38985787 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.836325435 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,690.3878386 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4735.397473 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,2310.80076 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,214.799573 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8974.868631 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,286.9124569 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,39361.63562 +CA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,104636.4815 +CA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,883.76192 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,913.3728449 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11258.07334 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,10534.9216 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,16.243618 +CA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7525.131234 +CA,Volatile Organic Compounds,2A1_Cement-production,,TON,99.723962 +CA,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,18.8856336 +CA,Volatile Organic Compounds,2A6_Other-minerals,,TON,1072.69574 +CA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +CA,Volatile Organic Compounds,2B_Chemicals-other,,TON,5628.778265 +CA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,52.99671788 +CA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.15493 +CA,Volatile Organic Compounds,2C5_Lead-production,,TON,0.0042 +CA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.15326 +CA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,81.00375731 +CA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,31659.17759 +CA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,2355.406274 +CA,Volatile Organic Compounds,2D3d_Coating-application,,TON,58483.67266 +CA,Volatile Organic Compounds,2D3e_Degreasing,,TON,3888.30189 +CA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,107.9776613 +CA,Volatile Organic Compounds,2D3h_Printing,,TON,33786.57027 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,17254.28861 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2522.190637 +CA,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,850.4257507 +CA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,9598.174071 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4403.647662 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,0.823958785 +CA,Volatile Organic Compounds,2I_Wood-processing,,TON,12.3968 +CA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,5157.736 +CA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,31978.85127 +CA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,297.78614 +CA,Volatile Organic Compounds,3B3_Manure-swine,,TON,611.670245 +CA,Volatile Organic Compounds,3B4_Manure-other,,TON,601.5766 +CA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,5819.255034 +CA,Volatile Organic Compounds,3Dc_Other-farm,,TON,341.417475 +CA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,14685.46176 +CA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2019.060168 +CA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,5942.624507 +CA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,12282.96087 +CA,Volatile Organic Compounds,5C_Incineration,,TON,12.3126307 +CA,Volatile Organic Compounds,5C_Incineration,biomass,TON,8.756727452 +CA,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.003 +CA,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,0.00001015 +CA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,11908.79008 +CA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,638.795891 +CA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,1505.132825 +CA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,813.7611353 +CA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,108.7844783 +CA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,108.7780576 +CA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,2.573703887 +CO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,242.525208 +CO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,147.139744 +CO,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,0.71351 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.575267661 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.060351546 +CO,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CO,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,3.95717E-05 +CO,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.000214855 +CO,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,60.224 +CO,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +CO,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +CO,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.1033314 +CO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,14.33289528 +CO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.364673587 +CO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,28.4075283 +CO,Ammonia,1A3bii_Road-LDV,light_oil,TON,1623.50777 +CO,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.53782837 +CO,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,80.60207954 +CO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.651757075 +CO,Ammonia,1A3biii_Road-bus,light_oil,TON,1.88248309 +CO,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.001299479 +CO,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,45.32752039 +CO,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,4.730100122 +CO,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.55059656 +CO,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.23647276 +CO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.58051324 +CO,Ammonia,1A3c_Rail,diesel_oil,TON,5.71593519 +CO,Ammonia,1A3c_Rail,light_oil,TON,0.00260127 +CO,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CO,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.233651846 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.492511046 +CO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.720222012 +CO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,7.294025333 +CO,Ammonia,1A4bi_Residential-stationary,biomass,TON,144.9011005 +CO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.588000127 +CO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.02025 +CO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1323.946799 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.813783094 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.152120277 +CO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021761975 +CO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.091879848 +CO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.188120298 +CO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.072609535 +CO,Ammonia,2A1_Cement-production,,TON,86.5295 +CO,Ammonia,2A6_Other-minerals,,TON,35.99979 +CO,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.013 +CO,Ammonia,2D3e_Degreasing,Other_Fuel,TON,13.2555 +CO,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,8.713 +CO,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,2.98 +CO,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,12.735 +CO,Ammonia,3B1a_Cattle-dairy,,TON,2152.311 +CO,Ammonia,3B1b_Cattle-non-dairy,,TON,25433.557 +CO,Ammonia,3B2_Manure-sheep,,TON,1445.798376 +CO,Ammonia,3B3_Manure-swine,,TON,6421.599 +CO,Ammonia,3B4_Manure-other,,TON,1599.28428 +CO,Ammonia,3B4_Manure-poultry,,TON,914.3830772 +CO,Ammonia,3B4d_Manure-goats,,TON,341.575212 +CO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,10536.29406 +CO,Ammonia,3F_Ag-res-on-field,,TON,18.602198 +CO,Ammonia,5B_Compost-biogas,Other_Fuel,TON,123.79948 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,194031.4537 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,166538.9392 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9405.405984 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1764413.864 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,30513.96136 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.094572936 +CO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1027538.89 +CO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,20238331.51 +CO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,157779.9881 +CO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1323703.816 +CO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,158615.8814 +CO,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,57549.45478 +CO,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,49.3812 +CO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2614053.961 +CO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,121129.9521 +CO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2165574.875 +CO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,148746.6962 +CO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,166309.2613 +CO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4563.99725 +CO,Carbon Dioxide,1A3c_Rail,light_oil,TON,203.3253092 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,151714.0525 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,208692.3038 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9133.508576 +CO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,88624.29344 +CO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,542552.6158 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,715622.129 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11434.93787 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.436206005 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2667.732 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,209842.7808 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23165.37402 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,76395.9959 +CO,Carbon Monoxide,11C_Other-natural,,TON,152756.217 +CO,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,185.012 +CO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.555387 +CO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,13171.527 +CO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,593.827723 +CO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,473.302993 +CO,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,3.2 +CO,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1101.913856 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1696.128414 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4321.945504 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,261.960762 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,5.080648157 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,19.8163275 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,943.49222 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,230.6094327 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.039577628 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.858437302 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,20113.11087 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,51.397246 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0388 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.09242 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5721.582503 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6205.822547 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.470581022 +CO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9279.352814 +CO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,13085.68944 +CO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,430770.2894 +CO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1286.737928 +CO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24570.01169 +CO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,526.3634528 +CO,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3161.193339 +CO,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.1805386 +CO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4468.260742 +CO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2906.344109 +CO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3665.367357 +CO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5686.01636 +CO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7374.96327 +CO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1848.251007 +CO,Carbon Monoxide,1A3c_Rail,light_oil,TON,46.12433495 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,9.636931129 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,103.3738906 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,31.08703979 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.256028989 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1112.678426 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,652.2138364 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,43076.00687 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,195.1437764 +CO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,299.9442757 +CO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,125811.2393 +CO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,25704.58642 +CO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.940000245 +CO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250001 +CO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2878.169607 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2493.035632 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2477.167966 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.269961919 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,21.0782799 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,28401.0546 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,45.95262967 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8732.94067 +CO,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,6128.580531 +CO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,298.32365 +CO,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,24891.57714 +CO,Carbon Monoxide,2A1_Cement-production,,TON,1314.31 +CO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1.675 +CO,Carbon Monoxide,2A6_Other-minerals,,TON,3463.014053 +CO,Carbon Monoxide,2B_Chemicals-other,,TON,7.15257 +CO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1010.8758 +CO,Carbon Monoxide,2C3_Aluminum-production,,TON,17.50639 +CO,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,174.590375 +CO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,84.478 +CO,Carbon Monoxide,2D3d_Coating-application,,TON,4.046 +CO,Carbon Monoxide,2D3h_Printing,,TON,0.550726 +CO,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,12.13186 +CO,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,40.6468 +CO,Carbon Monoxide,2H2_Food-and-beverage,,TON,867.1523841 +CO,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,13.82293 +CO,Carbon Monoxide,3F_Ag-res-on-field,,TON,270.5642 +CO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,884.790005 +CO,Carbon Monoxide,5C_Incineration,,TON,3.72776275 +CO,Carbon Monoxide,5C_Incineration,biomass,TON,58.29462031 +CO,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.012245 +CO,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.491 +CO,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +CO,Carbon Monoxide,5C_Open-burning-residential,,TON,877.540059 +CO,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,74.910258 +CO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,22.11718 +CO,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,31.5735 +CO,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,39.23705 +CO,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.464783622 +CO,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.76832798 +CO,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,111.3667455 +CO,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,60.60191224 +CO,Methane,1A2g_Construction_and_Mining,light_oil,TON,24.32530992 +CO,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.327081892 +CO,Methane,1A3bii_Road-LDV,diesel_oil,TON,53.3285904 +CO,Methane,1A3bii_Road-LDV,light_oil,TON,1157.478029 +CO,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.55352202 +CO,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,85.48263067 +CO,Methane,1A3biii_Road-bus,diesel_oil,TON,3.775980578 +CO,Methane,1A3biii_Road-bus,light_oil,TON,6.695017021 +CO,Methane,1A3biii_Road-bus,natural_gas,TON,0.104476 +CO,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,206.4860239 +CO,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.919965124 +CO,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,64.05037383 +CO,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.52737621 +CO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.56682012 +CO,Methane,1A3c_Rail,diesel_oil,TON,0.196027929 +CO,Methane,1A3c_Rail,light_oil,TON,0.15183979 +CO,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.907083678 +CO,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,159.4811045 +CO,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,128.2240378 +CO,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.142255185 +CO,Methane,1A4bi_Residential-mobile,light_oil,TON,549.4802247 +CO,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19.9230094 +CO,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.12799698 +CO,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.232359383 +CO,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.114856736 +CO,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,273.6669307 +CO,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.601783739 +CO,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,79.1484845 +CO,Nitrogen Oxides,11C_Other-natural,,TON,31489.2694 +CO,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,115.633 +CO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,80.454797 +CO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,39210.71 +CO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1472.686802 +CO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,477.228849 +CO,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,1.6 +CO,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,605.644406 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1140.647223 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,568.0663276 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,37.76260617 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,6.202812381 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,12.16612462 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3345.932356 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,836.6567575 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.76009171 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.672559299 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,28092.53158 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,21.457492 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.155 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.3005 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10215.52594 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,99.41731118 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.090554878 +CO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3655.121814 +CO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,4124.153067 +CO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,51757.05539 +CO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,579.085285 +CO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2832.433157 +CO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1443.006184 +CO,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,301.8434515 +CO,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.0584897 +CO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15657.07698 +CO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,352.3320244 +CO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11891.50456 +CO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,489.1227301 +CO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,366.69653 +CO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10704.62148 +CO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.606609331 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,7.822812334 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,268.5389871 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,24.56179964 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.017270785 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1292.825761 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1190.758015 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,720.1014042 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,49.48845847 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,703.1114105 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1377.710281 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,532.4565725 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,10.58400228 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.364499849 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,7041.36297 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5352.262575 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,58.05260559 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.060349413 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.9296969 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,434.0433347 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,242.8291566 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,567.9340405 +CO,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,14672.0154 +CO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,101.190253 +CO,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,19942.92289 +CO,Nitrogen Oxides,2A1_Cement-production,,TON,2220.47998 +CO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,0.425 +CO,Nitrogen Oxides,2A6_Other-minerals,,TON,2491.593887 +CO,Nitrogen Oxides,2B_Chemicals-other,,TON,40.0032 +CO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,141.822183 +CO,Nitrogen Oxides,2C3_Aluminum-production,,TON,20.346257 +CO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,33.9435 +CO,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,12.57 +CO,Nitrogen Oxides,2D3d_Coating-application,,TON,8.035 +CO,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.071185 +CO,Nitrogen Oxides,2D3h_Printing,,TON,1.415873 +CO,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,3.2845 +CO,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,40.9046 +CO,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +CO,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,60.183219 +CO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,6.411236 +CO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,167.48483 +CO,Nitrogen Oxides,5C_Incineration,,TON,2.64183345 +CO,Nitrogen Oxides,5C_Incineration,biomass,TON,60.0655625 +CO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.002491 +CO,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.012 +CO,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +CO,Nitrogen Oxides,5C_Open-burning-residential,,TON,61.9440002 +CO,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.329344167 +CO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,4.061752 +CO,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,6.52059 +CO,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,67.7535 +CO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.154817765 +CO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1101.906499 +CO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.55150438 +CO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,69.14117554 +CO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.450470606 +CO,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.512877798 +CO,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.00678679 +CO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.195112963 +CO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.683042045 +CO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.749883725 +CO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9.956625962 +CO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.258937586 +CO,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,18.2008 +CO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.399349891 +CO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,596.738435 +CO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,119.3596935 +CO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,242.921872 +CO,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.31075092 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.455819968 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,15.0794362 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,143.7775295 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,21.3656009 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.006773238 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.019720484 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,384.8200753 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.767477184 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0153461 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0375584 +CO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,59919.70756 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.899007211 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.4381539 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.717641163 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002724224 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.39102055 +CO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.635039927 +CO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.021869992 +CO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,14.38901294 +CO,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,583.4691058 +CO,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,37.359336 +CO,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,333.0071396 +CO,PM10 Filterable,2A1_Cement-production,,TON,174.1071998 +CO,PM10 Filterable,2A2_Lime-production,,TON,40.46187374 +CO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,42342.87097 +CO,PM10 Filterable,2A6_Other-minerals,,TON,8648.385339 +CO,PM10 Filterable,2B_Chemicals-other,,TON,29.0282136 +CO,PM10 Filterable,2C_Iron-steel-alloy,,TON,67.12803097 +CO,PM10 Filterable,2C3_Aluminum-production,,TON,15.83566497 +CO,PM10 Filterable,2C6_Zinc-production,,TON,0.682215739 +CO,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,233.2756455 +CO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,20.86091 +CO,PM10 Filterable,2D3d_Coating-application,,TON,83.178546 +CO,PM10 Filterable,2D3e_Degreasing,,TON,3.572 +CO,PM10 Filterable,2D3h_Printing,,TON,0.053523 +CO,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,26.586255 +CO,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,155.8037103 +CO,PM10 Filterable,2H2_Food-and-beverage,,TON,608.0630926 +CO,PM10 Filterable,2H3_Other-industrial-processes,,TON,312.5727411 +CO,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,20.26436965 +CO,PM10 Filterable,2I_Wood-processing,,TON,7.728 +CO,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,29191.88774 +CO,PM10 Filterable,3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM10 Filterable,3Dc_Other-farm,,TON,77442.23966 +CO,PM10 Filterable,5A_Solid-waste-disposal,,TON,943.0883602 +CO,PM10 Filterable,5C_Incineration,,TON,2.406783812 +CO,PM10 Filterable,5C_Incineration,biomass,TON,89.27146305 +CO,PM10 Filterable,5C_Open-burning-commercial,,TON,0.0131471 +CO,PM10 Filterable,5C_Open-burning-industrial,,TON,1.7514597 +CO,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +CO,PM10 Filterable,5C_Open-burning-residential,,TON,286.093912 +CO,PM10 Filterable,5C_Open-burning-yard-waste,,TON,12.4047831 +CO,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.295298 +CO,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.39909866 +CO,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,10.4377 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,19.2677 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.510023 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,651.45 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,217.849945 +CO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,334.932149 +CO,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,32.891956 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,76.27925496 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.32361416 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.208221286 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.491194264 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,19.69074111 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,146.1475772 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,22.26881807 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00740066 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.027425013 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,747.8381997 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.517229 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0184 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.098838 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,875.2085696 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,47.2613933 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +CO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,246.0240423 +CO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,59919.70756 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,249.6077558 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2971.047354 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40.782238 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,172.800137 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,114.3560356 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,14.13280973 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00909197 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,818.9900167 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,18.66683265 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,776.5548602 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,23.49894254 +CO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,23.06242893 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,341.6628184 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.025858682 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,2.02809455 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.93024755 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.851298947 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.003129776 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,134.9181662 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.8261714 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,53.97431167 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.150351813 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,49.78360555 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,554.936613 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3435.020134 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.399440345 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048194997 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,37.41143865 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,431.5415346 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.334337571 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000307814 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0364737 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,297.5018284 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.120989284 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,35.48034684 +CO,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,730.7155208 +CO,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,37.359336 +CO,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,675.5748294 +CO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,182.123563 +CO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,42.425124 +CO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,42342.87097 +CO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,8789.862741 +CO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,35.542459 +CO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,102.494141 +CO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,32.11275 +CO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.13819 +CO,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,233.786312 +CO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,24.602 +CO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,83.178546 +CO,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.572 +CO,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.053523 +CO,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,26.586255 +CO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,187.673586 +CO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2642.388417 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,310.3508241 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,31.16279889 +CO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,7.728 +CO,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,29191.88774 +CO,PM10 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,77444.70302 +CO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,46.99589 +CO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1248.723292 +CO,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.661146442 +CO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,110.0089078 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.024574 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.9285 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,286.093912 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,12.4047831 +CO,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.325146 +CO,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.426299 +CO,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,27.2659 +CO,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,18.2008 +CO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.39532838 +CO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,313.3985306 +CO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,99.45969345 +CO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,159.093254 +CO,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,13.26904892 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.457024894 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9.102248915 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,141.1722562 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,19.79912582 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.006791143 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.019772614 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,365.4591998 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.829059574 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0134361 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0344714 +CO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,7230.902332 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.657113958 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.75080926 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.721346675 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000781658 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.14665804 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.488039984 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.016807506 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.913957184 +CO,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,577.4091058 +CO,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.32 +CO,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,327.928843 +CO,PM2.5 Filterable,2A1_Cement-production,,TON,70.17431683 +CO,PM2.5 Filterable,2A2_Lime-production,,TON,21.72663502 +CO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4234.287097 +CO,PM2.5 Filterable,2A6_Other-minerals,,TON,2662.55226 +CO,PM2.5 Filterable,2B_Chemicals-other,,TON,23.3772456 +CO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,37.16294553 +CO,PM2.5 Filterable,2C3_Aluminum-production,,TON,15.51617437 +CO,PM2.5 Filterable,2C6_Zinc-production,,TON,0.482414739 +CO,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,115.754437 +CO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,19.39976 +CO,PM2.5 Filterable,2D3d_Coating-application,,TON,74.924858 +CO,PM2.5 Filterable,2D3e_Degreasing,,TON,3.26051 +CO,PM2.5 Filterable,2D3h_Printing,,TON,0.053523 +CO,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,22.769553 +CO,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,96.75014647 +CO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,174.3517986 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,197.2665173 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,28.95861979 +CO,PM2.5 Filterable,2I_Wood-processing,,TON,2.531583 +CO,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,6002.976223 +CO,PM2.5 Filterable,3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM2.5 Filterable,3Dc_Other-farm,,TON,15490.31597 +CO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,654.8806512 +CO,PM2.5 Filterable,5C_Incineration,,TON,2.091752762 +CO,PM2.5 Filterable,5C_Incineration,biomass,TON,79.74405205 +CO,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.0127091 +CO,PM2.5 Filterable,5C_Open-burning-industrial,,TON,1.6278017 +CO,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +CO,PM2.5 Filterable,5C_Open-burning-residential,,TON,262.001806 +CO,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,9.56288621 +CO,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.295298 +CO,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.39909866 +CO,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,9.508315 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,19.2677 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.5053011 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,368.11 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,197.949945 +CO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,251.103531 +CO,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,32.850254 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,73.90526738 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.22465114 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.204853088 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.491315317 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,13.92409218 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,143.3155233 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,20.71896082 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.007402484 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.027431772 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,728.4752664 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.5788115 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.01649 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.095751 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,848.9522329 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.51062176 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +CO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,217.7150963 +CO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,7230.902332 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,182.6015781 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1303.413267 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,30.1819545 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,65.13601492 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,86.05644649 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.13288755 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.001262819 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,608.7446117 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.11115534 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,554.5116216 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,9.796048382 +CO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.53309427 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,315.4976964 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.023842887 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.779833767 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,25.19967906 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.85364934 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.00116498 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,131.7247655 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,102.651411 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,49.81644579 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.150351813 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,48.29006848 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,510.566065 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3364.334464 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.25243922 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043132526 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,30.93637389 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,418.5953482 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.987699053 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000307814 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9453789 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,273.7027264 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.967360265 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,32.64193642 +CO,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,724.6555208 +CO,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.32 +CO,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,670.4679824 +CO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,78.19068 +CO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,23.689734 +CO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4234.287097 +CO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2804.029604 +CO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,29.891491 +CO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,72.529053 +CO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,31.79326 +CO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.938389 +CO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,116.2640904 +CO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,23.14085 +CO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,74.924858 +CO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.26051 +CO,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.053523 +CO,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,22.769553 +CO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,128.6199902 +CO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2208.676493 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,190.5999627 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,44.30160833 +CO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.531583 +CO,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,6002.976223 +CO,PM2.5 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,3.4 +CO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,15492.77931 +CO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,34.50025 +CO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,960.515583 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.345736796 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,100.4818755 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.024136 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.804842 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,262.001806 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.56288621 +CO,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.325146 +CO,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.426299 +CO,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,20.086515 +CO,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,19.3822 +CO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,6.689707 +CO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,26805.41 +CO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,32.711642 +CO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,94.79151 +CO,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,121.158473 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.022904694 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.779261193 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.116249134 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,25.6559408 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,223.169294 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1311.399223 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.41355161 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.002073301 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,329.0193987 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,11.854759 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.011 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.007803 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,19.59284121 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.506274349 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.52635E-05 +CO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,416.6113606 +CO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,9.01303318 +CO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,370.8478481 +CO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.371251429 +CO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.27851642 +CO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.4000108 +CO,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.054156413 +CO,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000261449 +CO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22.55165685 +CO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.219554074 +CO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.72779411 +CO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.725495033 +CO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.05471756 +CO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,6.462413906 +CO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003618088 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.408055625 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,68.14565865 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,35.21185226 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.371435248 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,201.1983232 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.772850544 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.527078441 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.051168401 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.039343224 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.8470788 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,48.02496345 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,25.0488067 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.862649793 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,43.16704156 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.246647083 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.208277625 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.35729E-05 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.031509968 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.810744123 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.738238674 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.390333786 +CO,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.01393214 +CO,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.169997 +CO,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,355.464685 +CO,Sulfur Dioxide,2A1_Cement-production,,TON,287.23001 +CO,Sulfur Dioxide,2A6_Other-minerals,,TON,1354.927124 +CO,Sulfur Dioxide,2B_Chemicals-other,,TON,100.4495 +CO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,76.115896 +CO,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.371896 +CO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,5.285666 +CO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,69.424 +CO,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0376 +CO,Sulfur Dioxide,2D3h_Printing,,TON,0.001185 +CO,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,3.517 +CO,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,7.685 +CO,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +CO,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,4.062345 +CO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.18864 +CO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,46.330145 +CO,Sulfur Dioxide,5C_Incineration,,TON,1.355260525 +CO,Sulfur Dioxide,5C_Incineration,biomass,TON,32.46210923 +CO,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.031133 +CO,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +CO,Sulfur Dioxide,5C_Open-burning-residential,,TON,10.32399902 +CO,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.719376323 +CO,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,7.44375 +CO,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,28.18338 +CO,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,103.4565 +CO,Volatile Organic Compounds,11C_Other-natural,,TON,714484.334 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,13.1006 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.358631 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,403.2475 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,110.634941 +CO,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1429.895392 +CO,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,46.68893725 +CO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,6754.839238 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,11.1869 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1649.139421 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,127.0516233 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,125.5469822 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24.7090447 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.328108192 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,8.941935622 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,204.848908 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,12.15050255 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000695179 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.138100738 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,5911.01601 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.723467 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0026 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.071528 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1157.207678 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,430.3366084 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.070702875 +CO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1023.945544 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1463.469466 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,39800.21745 +CO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,166.4877367 +CO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2018.463562 +CO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,162.7007149 +CO,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,165.3623731 +CO,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.00669633 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1176.260056 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,127.0795835 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,814.7775453 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,269.721169 +CO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1201.941568 +CO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,551.6531249 +CO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.272887808 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.269816352 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,86.84908317 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.134908176 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.010377552 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,153.1088178 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,149.9825813 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1613.792332 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,27.71724136 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,70.11112649 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8521.691044 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3847.23687 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.411600034 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.014175007 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,395.6980081 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,488.4919374 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,116.2708593 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.050227424 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.5452108 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9854.247982 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.34368467 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2346.1101 +CO,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,5849.901704 +CO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,41.088438 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,6754.633181 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,52.76841917 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4488.00032 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1858.558357 +CO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,83513.94313 +CO,Volatile Organic Compounds,2A1_Cement-production,,TON,145.32 +CO,Volatile Organic Compounds,2A6_Other-minerals,,TON,529.84418 +CO,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +CO,Volatile Organic Compounds,2B_Chemicals-other,,TON,520.519658 +CO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,65.71518 +CO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,47.792688 +CO,Volatile Organic Compounds,2C5_Lead-production,,TON,3.21 +CO,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0036 +CO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,50.238595 +CO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,23539.87126 +CO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,28.9924 +CO,Volatile Organic Compounds,2D3d_Coating-application,,TON,8330.636974 +CO,Volatile Organic Compounds,2D3e_Degreasing,,TON,98.391277 +CO,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,24.380575 +CO,Volatile Organic Compounds,2D3h_Printing,,TON,296.921822 +CO,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,772.7713436 +CO,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,469.3691521 +CO,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,354.553928 +CO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1651.184447 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,834.4296885 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,20.0964965 +CO,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,172.826 +CO,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,2042.153 +CO,Volatile Organic Compounds,3B3_Manure-swine,,TON,515.602 +CO,Volatile Organic Compounds,3B4_Manure-poultry,,TON,72.62 +CO,Volatile Organic Compounds,3Dc_Other-farm,,TON,68.5036 +CO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3055.292371 +CO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,15.89806 +CO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,1120.03136 +CO,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,875.9745 +CO,Volatile Organic Compounds,5C_Incineration,,TON,1.408574218 +CO,Volatile Organic Compounds,5C_Incineration,biomass,TON,12.91558852 +CO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.04234 +CO,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.3195 +CO,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +CO,Volatile Organic Compounds,5C_Open-burning-residential,,TON,59.6421469 +CO,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,13.97135449 +CO,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,231.67568 +CO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,2039.18005 +CO,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,362.284929 +CO,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,1.28345 +CT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.94379206 +CT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.141058 +CT,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,9.555417 +CT,Ammonia,1A1a_Public-Electricity,light_oil,TON,1.376449514 +CT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,159.1400033 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.829686749 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.088177123 +CT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,8.109538987 +CT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.957185742 +CT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.080105302 +CT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.640872675 +CT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,44.55993881 +CT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.791873461 +CT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.149381994 +CT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.2659984 +CT,Ammonia,1A3bii_Road-LDV,light_oil,TON,933.6808 +CT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.7148918 +CT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,38.02483 +CT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.797582545 +CT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.198606288 +CT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15.19666444 +CT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.153861571 +CT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.1353443 +CT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.7986237 +CT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.165715 +CT,Ammonia,1A3c_Rail,diesel_oil,TON,0.223512761 +CT,Ammonia,1A3c_Rail,light_oil,TON,0.002126783 +CT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.618854795 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.1674998 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.64670325 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.3192002 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.117599955 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.74205685 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.793326989 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.602850551 +CT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.430118679 +CT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.618324796 +CT,Ammonia,1A4bi_Residential-stationary,biomass,TON,223.7756292 +CT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,211.49105 +CT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.34425 +CT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,513.6019381 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.198768105 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.00910048 +CT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016765905 +CT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.881036725 +CT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.86251125 +CT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.30077582 +CT,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +CT,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.072409 +CT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,27.266 +CT,Ammonia,3B1a_Cattle-dairy,,TON,379.935 +CT,Ammonia,3B1b_Cattle-non-dairy,,TON,821.549 +CT,Ammonia,3B2_Manure-sheep,,TON,20.12472 +CT,Ammonia,3B3_Manure-swine,,TON,22.413 +CT,Ammonia,3B4_Manure-other,,TON,154.704 +CT,Ammonia,3B4_Manure-poultry,,TON,21.696916 +CT,Ammonia,3B4d_Manure-goats,,TON,31.9704 +CT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,104.73341 +CT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,78.21334 +CT,Ammonia,5C_Incineration,biomass,TON,65.5238496 +CT,Ammonia,5D1_Wastewater-domestic,,TON,215.71342 +CT,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.111949 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,225371.8965 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,244044.441 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13756.2233 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,713027.8715 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,12497.23511 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.698191 +CT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,210913.58 +CT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12280232 +CT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,61259.72 +CT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,651430.4 +CT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,49058.6712 +CT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,5615.34482 +CT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,885281.383 +CT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3731.17333 +CT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,416210.6 +CT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,48556.88 +CT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60818.2 +CT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3734.383 +CT,Carbon Dioxide,1A3c_Rail,light_oil,TON,166.117773 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,97563.1874 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,134200.1898 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5933.10836 +CT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,52926.63071 +CT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,343499.7164 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24469.2315 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,659.7394684 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.114292149 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2055.2849 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,60538.95947 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,106243.0243 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,91554.156 +CT,Carbon Monoxide,11C_Other-natural,,TON,6903.518 +CT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,70.6912 +CT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,6.34527789 +CT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,124.83 +CT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,67.283582 +CT,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,12.23853364 +CT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,445.429215 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,736.3570917 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5966.5278 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,357.8773865 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,707.9521993 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,50.93747843 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.509702257 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.084164958 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1167.992561 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2267.022014 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2545.314156 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.15686041 +CT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1923.900791 +CT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3095.1239 +CT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,185704.09 +CT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,496.6812 +CT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10051.622 +CT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,173.3899361 +CT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,380.779652 +CT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1617.285575 +CT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,106.1498249 +CT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,744.305 +CT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1471.3739 +CT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2860.119 +CT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,83.626174 +CT,Carbon Monoxide,1A3c_Rail,light_oil,TON,37.72696729 +CT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,266.1440532 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,260.1501531 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,284.4313872 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.995382851 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.495886876 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2203.129305 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,419.4218486 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,27707.85012 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,126.2143037 +CT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,179.1299357 +CT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,79804.5595 +CT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,36409.28257 +CT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1057.45515 +CT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.7212505 +CT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1160.55653 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,79.74018585 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,171.4126858 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.012664586 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.235881 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,11463.49122 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,193.1360866 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10902.5492 +CT,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +CT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,4.08236 +CT,Carbon Monoxide,2H2_Food-and-beverage,,TON,478.006027 +CT,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1.3750971 +CT,Carbon Monoxide,5C_Incineration,biomass,TON,651.6883732 +CT,Carbon Monoxide,5C_Open-burning-residential,,TON,2083.398 +CT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,221.26554 +CT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.302648276 +CT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,36.29546357 +CT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,162.9680079 +CT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,23.99478944 +CT,Methane,1A2g_Construction_and_Mining,light_oil,TON,9.948731364 +CT,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.10902734 +CT,Methane,1A3bii_Road-LDV,diesel_oil,TON,16.617816 +CT,Methane,1A3bii_Road-LDV,light_oil,TON,493.03129 +CT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.929937 +CT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.54452 +CT,Methane,1A3biii_Road-bus,diesel_oil,TON,3.646617715 +CT,Methane,1A3biii_Road-bus,light_oil,TON,0.727690762 +CT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,99.8891466 +CT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.184232669 +CT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.994656 +CT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.66506001 +CT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.473309 +CT,Methane,1A3c_Rail,diesel_oil,TON,0.16033503 +CT,Methane,1A3c_Rail,light_oil,TON,0.124057927 +CT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.155646951 +CT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,102.499035 +CT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,82.7901435 +CT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.876610055 +CT,Methane,1A4bi_Residential-mobile,light_oil,TON,351.0613851 +CT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.687615403 +CT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.70567891 +CT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010900625 +CT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.08846026 +CT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,93.39616099 +CT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.851127564 +CT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,103.570208 +CT,Nitrogen Oxides,11C_Other-natural,,TON,576.0824 +CT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,50.5242 +CT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,40.3167087 +CT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,582.794 +CT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,406.28192 +CT,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,50.63638106 +CT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,704.6893271 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1147.79235 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,797.0160453 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,52.70890629 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,283.8754664 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,235.6344813 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.394421392 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,17.73894942 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1899.95921 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4092.982756 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,40.50578875 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.03018497 +CT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,465.5160614 +CT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,706.14881 +CT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,20411.239 +CT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,235.20229 +CT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1097.7037 +CT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,253.512568 +CT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,26.87340376 +CT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5607.94167 +CT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,11.84953019 +CT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2060.9038 +CT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,144.27298 +CT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,120.53198 +CT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,657.726295 +CT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.49430867 +CT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1695.234598 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,95.39911317 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1253.424101 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,21.95171045 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.858472778 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2693.519212 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,765.747827 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,463.019041 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,31.9693546 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,419.8959006 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,885.7068068 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,586.8057501 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,3806.8385 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.19651 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2888.1095 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,172.4707447 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.835654813 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002831212 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.666978 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,138.0017393 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,999.7981302 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,601.12807 +CT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +CT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,1.61419 +CT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +CT,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0.7914948 +CT,Nitrogen Oxides,5C_Incineration,biomass,TON,3086.345742 +CT,Nitrogen Oxides,5C_Open-burning-residential,,TON,147.0634 +CT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,9.834021 +CT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.59497807 +CT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,496.66324 +CT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.22027095 +CT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29.503855 +CT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.147034807 +CT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.321767291 +CT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.935740038 +CT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.135631533 +CT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.7701825 +CT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.29516157 +CT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.0658945 +CT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,23.5198 +CT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.688582574 +CT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,10.0744 +CT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,19.84555033 +CT,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,1.502940734 +CT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,120.5859173 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,584.8400773 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.55386544 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.511091039 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.806517196 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,38.34267462 +CT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,8275.17 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,216.7760605 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.26880534 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.073988833 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.154074152 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.46722889 +CT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,228.41035 +CT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.3717901 +CT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.801731 +CT,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +CT,PM10 Filterable,2A2_Lime-production,,TON,0.0570004 +CT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,5344.26738 +CT,PM10 Filterable,2A6_Other-minerals,,TON,1271.341407 +CT,PM10 Filterable,2B_Chemicals-other,,TON,0.00979365 +CT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.002146916 +CT,PM10 Filterable,2D3d_Coating-application,,TON,0.15953748 +CT,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.995475 +CT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,11.56070981 +CT,PM10 Filterable,2H2_Food-and-beverage,,TON,106.8541699 +CT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,42.01845059 +CT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,402.35175 +CT,PM10 Filterable,3Dc_Other-farm,,TON,1021.995387 +CT,PM10 Filterable,5A_Solid-waste-disposal,,TON,0.355613488 +CT,PM10 Filterable,5C_Incineration,biomass,TON,19.60078354 +CT,PM10 Filterable,5C_Open-burning-residential,,TON,679.2253 +CT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,36.640521 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,24.8985 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.324509712 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,11.0709 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,22.55172392 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,1.598872151 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,220.4151028 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,83.90888776 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,25.63265016 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.681138142 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,607.9586589 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,20.93065886 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.584367196 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.866610152 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,76.846871 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,348.3771542 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.36663335 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +CT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,44.81377087 +CT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8275.17 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,45.664025 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1624.1564 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.90508 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,76.72466 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,15.3842285 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.099247272 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,284.766677 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.517869732 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,141.33839 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.145032 +CT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.444936 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,19.040147 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02114038 +CT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,46.17091064 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,224.1794614 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,114.3654745 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.673098471 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.345331927 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,32.92745474 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,68.054363 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.70212383 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.747590429 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.73188468 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,343.3704468 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5110.872095 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,503.3486 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.819315 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,15.084508 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.87986157 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.52038915 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.44404E-05 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.3385596 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,83.94066951 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.04458097 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,49.3410146 +CT,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +CT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.0667973 +CT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5344.26738 +CT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1271.341407 +CT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,0.00979365 +CT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.00329226 +CT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.15953748 +CT,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.995475 +CT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,11.56070981 +CT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1267.777929 +CT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,42.01845059 +CT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,402.35175 +CT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1021.995387 +CT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0.391558522 +CT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,25.9070329 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,679.2253 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,36.640521 +CT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,23.5198 +CT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.602697753 +CT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2.72639 +CT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,16.86230234 +CT,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,1.501263395 +CT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,120.3309043 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,503.8115478 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.66907145 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.362237856 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.201961396 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,37.56717977 +CT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1266.4074 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,186.4310402 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,74.91475323 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.141616974 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.118791742 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.12852612 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,175.5376 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.2857276 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.1909502 +CT,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +CT,PM2.5 Filterable,2A2_Lime-production,,TON,0.02011779 +CT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,534.426738 +CT,PM2.5 Filterable,2A6_Other-minerals,,TON,158.9178463 +CT,PM2.5 Filterable,2B_Chemicals-other,,TON,0.00979365 +CT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.002146916 +CT,PM2.5 Filterable,2D3d_Coating-application,,TON,0.159245142 +CT,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.826032 +CT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,10.38570281 +CT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,6.875967359 +CT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,41.72791989 +CT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,82.53226 +CT,PM2.5 Filterable,3Dc_Other-farm,,TON,204.3894477 +CT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0.355613488 +CT,PM2.5 Filterable,5C_Incineration,biomass,TON,16.85688994 +CT,PM2.5 Filterable,5C_Open-burning-residential,,TON,622.0281 +CT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,28.246318 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,24.8985 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.238624868 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3.72288 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,19.56849593 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,1.597194812 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,220.1600898 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,81.38015404 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,25.55070079 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.680649804 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,526.8314082 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,17.04525325 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.435084065 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.261282914 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,75.9922398 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,337.9260249 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.82962642 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +CT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,38.16046364 +CT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1266.4074 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,30.066529 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,615.51135 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.512925 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,26.44464 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,11.39842487 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.662092017 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,211.689092 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.226411504 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,102.745 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.54202 +CT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.041714 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,17.697429 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019491487 +CT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,44.05307367 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,193.832548 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,108.0126493 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.740480164 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.310053207 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,30.58917078 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.01270428 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.02887069 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.747590429 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,28.83991474 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,315.9152562 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5061.781895 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,450.47585 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.7332527 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.4737133 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.46347081 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.39875683 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.44404E-05 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2684031 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,77.22614877 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.32322605 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,45.3937083 +CT,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +CT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.02991471 +CT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,534.426738 +CT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,158.9178463 +CT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,0.00979365 +CT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.00329226 +CT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.159245142 +CT,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.826032 +CT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,10.38570281 +CT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1167.79856 +CT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,41.72791989 +CT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,82.53226 +CT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,204.3894477 +CT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0.391558522 +CT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,23.1631391 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,622.0281 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,28.246318 +CT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,23.588 +CT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.754856754 +CT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,912.312 +CT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,534.69219 +CT,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.778674532 +CT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,32.26400518 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.97948095 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.411243484 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.085619048 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,30.64131422 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,124.72376 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.837645085 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,37.51111102 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21.23390551 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7.906601394 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.207372897 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50878E-05 +CT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,57.84441807 +CT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.8349061 +CT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,255.91177 +CT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.5345875 +CT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.575465 +CT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.424820569 +CT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.117019656 +CT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7.63695195 +CT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.077750486 +CT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.5966589 +CT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.0118316 +CT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.2674784 +CT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.26111112 +CT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002957514 +CT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,152.5466833 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.83761513 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,642.0829153 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,62.64372838 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.263330827 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.18955049 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.140072821 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.26813429 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.033239083 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.620699302 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.235781159 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,112.7429785 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,9009.5095 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,14.665047 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,17.40519 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.279193299 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.012013675 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.36757E-07 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024275227 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.098967608 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.385789168 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.66553096 +CT,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +CT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +CT,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,1.909369825 +CT,Sulfur Dioxide,5C_Incineration,biomass,TON,260.5789671 +CT,Sulfur Dioxide,5C_Open-burning-residential,,TON,24.51059 +CT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.1248512 +CT,Volatile Organic Compounds,11C_Other-natural,,TON,60645.85 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,8.08108 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.23689005 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,14.9796 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,13.8575627 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.169815849 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,49.39529164 +CT,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,10.90989487 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,107.04255 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,169.5165393 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.31570557 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,20.12619515 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.00442267 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.064507488 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.161046252 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,107.5557485 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,455.8420264 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,170.1025397 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.02356763 +CT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,157.1315693 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,316.50663 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,16606.804 +CT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,72.39875 +CT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,759.4178 +CT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,24.8801872 +CT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,16.62844408 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,460.9964323 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,4.408028516 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,170.25793 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,60.013552 +CT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,570.6491 +CT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,29.627401 +CT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.90797845 +CT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,37.66080151 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,7.371907961 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,64.05846072 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.451017765 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.076745115 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,149.8522099 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,96.4495315 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,977.5854026 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17.89610438 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,41.87148839 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5276.593131 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5522.879371 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,148.04365 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.2409749 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,159.54763 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.78905725 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.67824439 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002356305 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.27061 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2637.812029 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,45.5340311 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3115.128128 +CT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,201.2873693 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,313.9676382 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,178.1389266 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,878.4021952 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6456.756882 +CT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.392483 +CT,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +CT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,557.7928 +CT,Volatile Organic Compounds,2B_Chemicals-other,,TON,95.17419734 +CT,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +CT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.0215 +CT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,16071.05965 +CT,Volatile Organic Compounds,2D3d_Coating-application,,TON,7232.838316 +CT,Volatile Organic Compounds,2D3e_Degreasing,,TON,3216.389334 +CT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,11.605 +CT,Volatile Organic Compounds,2D3h_Printing,,TON,6651.230192 +CT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +CT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +CT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,14.138816 +CT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,167.5513227 +CT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,50.4654781 +CT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,30.506 +CT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,65.965 +CT,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.8 +CT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1.354 +CT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,63.60137 +CT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,363.4816121 +CT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,553.4186 +CT,Volatile Organic Compounds,5C_Incineration,biomass,TON,26.06268424 +CT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,141.5987 +CT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,41.267778 +CT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,66.865928 +CT,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,80.4028 +CT,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0254 +DC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.130509359 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.003022622 +DC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.01544 +DC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.0115013 +DC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.226396347 +DC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.057425107 +DC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.41734 +DC,Ammonia,1A3bii_Road-LDV,light_oil,TON,148.3375998 +DC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.23313 +DC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.8073277 +DC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.82309239 +DC,Ammonia,1A3biii_Road-bus,light_oil,TON,0.03795189 +DC,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.204655 +DC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.653171 +DC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0670712 +DC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.658836 +DC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.729593 +DC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.13123 +DC,Ammonia,1A3c_Rail,diesel_oil,TON,0.068511262 +DC,Ammonia,1A3c_Rail,light_oil,TON,7.39451E-05 +DC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.79616E-05 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.0075 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.4796 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.84302844 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.055946492 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.112945797 +DC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.00280665 +DC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.305710616 +DC,Ammonia,1A4bi_Residential-stationary,biomass,TON,2.39082724 +DC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.919 +DC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,142.422928 +DC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00278329 +DC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.023432908 +DC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.01511938 +DC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.0861632 +DC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.076 +DC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,0 +DC,Ammonia,5D1_Wastewater-domestic,,TON,1.78 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16074.9824 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8288.738855 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,468.41997 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,274088.1258 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4805.83204 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.3491 +DC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,20111.17 +DC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2205263.386 +DC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8430.1 +DC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,130626.33 +DC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,50198.293 +DC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,1135.6492 +DC,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5793.21 +DC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,47455.1 +DC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1840.28 +DC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,99062.2 +DC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,21324.7 +DC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11594.4 +DC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,114.874 +DC,Carbon Dioxide,1A3c_Rail,light_oil,TON,5.926159 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6880.2895 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9451.882551 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,342.80351 +DC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,345.3607 +DC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,22711.21946 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,341.203 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1688.852 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1861.82243 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6136.94 +DC,Carbon Monoxide,11C_Other-natural,,TON,117.738 +DC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,46.531816 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,202.2991414 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12.1244733 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.280340225 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,118.4054553 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,871.4481522 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,985.467834 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.0784302 +DC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4.061024 +DC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,282.9502 +DC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,29787.65181 +DC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,154.215 +DC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2948.27881 +DC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,157.85696 +DC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,43.6106 +DC,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,27.7882 +DC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,84.8842 +DC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,30.5675 +DC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,273.651 +DC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,211.937 +DC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,470.891 +DC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,22.142398 +DC,Carbon Monoxide,1A3c_Rail,light_oil,TON,1.3062336 +DC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.009854929 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.9 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.545666 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.5475 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,649.8817495 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29.566941 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1970.115184 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.904759 +DC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1.1746408 +DC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,5566.691387 +DC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,683.529492 +DC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,14.595 +DC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,285.0794 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.68804 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,392.508202 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.6934275 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,703.981 +DC,Carbon Monoxide,2H2_Food-and-beverage,,TON,152.18822 +DC,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.0104509 +DC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +DC,Carbon Monoxide,5C_Open-burning-residential,,TON,0 +DC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,0 +DC,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.55805802 +DC,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.233470267 +DC,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.5645636 +DC,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,9.223706131 +DC,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.794268443 +DC,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.0545137 +DC,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.557148 +DC,Methane,1A3bii_Road-LDV,light_oil,TON,58.8913312 +DC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.328362 +DC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.7796766 +DC,Methane,1A3biii_Road-bus,diesel_oil,TON,1.4966981 +DC,Methane,1A3biii_Road-bus,light_oil,TON,0.06577207 +DC,Methane,1A3biii_Road-bus,natural_gas,TON,82.4773 +DC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.469107 +DC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0455564 +DC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.374251 +DC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,0.260749 +DC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.40232 +DC,Methane,1A3c_Rail,diesel_oil,TON,0.00503752 +DC,Methane,1A3c_Rail,light_oil,TON,0.004272147 +DC,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.22251808 +DC,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.146992565 +DC,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.3431723 +DC,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.012298519 +DC,Methane,1A4bi_Residential-mobile,light_oil,TON,25.74116175 +DC,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0146362 +DC,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,2.22725691 +DC,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.048379115 +DC,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,6.34099 +DC,Nitrogen Oxides,11C_Other-natural,,TON,12.2638 +DC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,90.896318 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,26.88337372 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.7890769 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.44522195 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,196.5686817 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1573.401501 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,15.04833167 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.0150925 +DC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,0.07891379 +DC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,35.0673 +DC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,2740.443458 +DC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,54.6095 +DC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,221.467472 +DC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,406.67141 +DC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,4.0525424 +DC,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,29.7255 +DC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,258.857 +DC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,4.09613 +DC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,580.659 +DC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,31.5673 +DC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.4528 +DC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,125.268333 +DC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.01823493 +DC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.089589091 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.33 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,374.759011 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.54581 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,764.506241 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,53.996962 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,31.42347464 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.04544375 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2.732604 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,63.06430019 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,15.1572976 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,52.542 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,670.2182 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.93848 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,4.564032 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.516072 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,44.45363 +DC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +DC,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,2.22081 +DC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +DC,Nitrogen Oxides,5C_Open-burning-residential,,TON,0 +DC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0 +DC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.0679283 +DC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,76.19573125 +DC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.0444219 +DC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.2269905 +DC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.164723372 +DC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.04247198 +DC,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.848878 +DC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.0979766 +DC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0417874 +DC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.2966938 +DC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.388747 +DC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.189366 +DC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.011011841 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2.664873909 +DC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,744.545 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.75 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.3426545 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.065484 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.116578376 +DC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.15252 +DC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.42539515 +DC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1823.107 +DC,PM10 Filterable,2A6_Other-minerals,,TON,0 +DC,PM10 Filterable,2H2_Food-and-beverage,,TON,29.628463 +DC,PM10 Filterable,3Dc_Other-farm,,TON,0 +DC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +DC,PM10 Filterable,5C_Open-burning-residential,,TON,0 +DC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,0 +DC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.0562139 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.865801074 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.056902438 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.104266028 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,10.67059635 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,133.9117402 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.443355439 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +DC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.09006438 +DC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,744.545 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,3.92849 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,406.763896 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.16227 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,23.9846521 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,30.284385 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.2893435 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.67948 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,25.90626 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.407336 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,65.2786 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.41375 +DC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.21095 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,4.086353 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000738376 +DC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00265591 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.7755 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.8522752 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.011364 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.48429724 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.7974188 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,2.44133324 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.042831805 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.19513724 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,14.79878537 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,76.6927866 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.9472 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.70602738 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.386528 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1.42020392 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.41160124 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,2.84999 +DC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1823.107 +DC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,398.21451 +DC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.146499 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +DC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.786712309 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2.668566817 +DC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,186.136 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.645 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.07623282 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.029104 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.593559188 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.42277 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.783967331 +DC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,182.3107 +DC,PM2.5 Filterable,2A6_Other-minerals,,TON,0 +DC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.0253991 +DC,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-residential,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.8745265 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.863232424 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.056902438 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,2.878783347 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,10.67548141 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,129.8944706 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.852630469 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +DC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.07632007 +DC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,186.136 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,1.436424 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,119.4037054 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.13582 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,8.30645958 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,18.763904 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.08186262 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.314499 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,15.38079 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.0782883 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,42.04615 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.696173 +DC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.934487 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,3.779915 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000681952 +DC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.002491593 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.6705 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.58585283 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.974984 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.96127805 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.6534908 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,2.25323947 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.042831805 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.18928304 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,13.6149889 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,71.5488866 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.21745 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.06459957 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.374932 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1.30670852 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.39925383 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,2.621988 +DC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,182.3107 +DC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,369.61157 +DC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.146499 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +DC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.179003113 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.043855383 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.002624413 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.07426458 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.840386115 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.039295221 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.079726812 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-06 +DC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,0.01711802 +DC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.1710845 +DC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,45.9636731 +DC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.0739797 +DC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.72447438 +DC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.43755097 +DC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.02366209 +DC,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.0306722 +DC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.4097051 +DC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0383429 +DC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.871925 +DC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.444303 +DC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.241607 +DC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.0765268 +DC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00010359 +DC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.018576114 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.0375 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.92313893 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,24.53831 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.67349648 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.08039778 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.159804686 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.001920282 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.004052688 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.413717558 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,0.70592007 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,124.3495 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.27618544 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00402878 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.030518084 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.059332981 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.1116865 +DC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +DC,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.342453 +DC,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +DC,Sulfur Dioxide,5C_Open-burning-residential,,TON,0 +DC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0 +DC,Volatile Organic Compounds,11C_Other-natural,,TON,1350.28 +DC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.3829883 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.730130691 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.20285158 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.728754805 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,7.751895745 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,175.2196215 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,65.70032777 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.0117838 +DC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,0.17012437 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,21.53394 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,2647.714937 +DC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.0863 +DC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,194.0122479 +DC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,35.901836 +DC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,2.1643435 +DC,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,6.85658 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20.98857 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,1.798 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,95.1981 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,12.6639 +DC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,81.1131 +DC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,6.728723 +DC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.032062155 +DC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.003394209 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.0255 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,25.4223029 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.045475 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.54966536 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.7991046 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,70.50143726 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.15499269 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,0.27375416 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,375.6613218 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,68.545844 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.0433 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,39.1983665 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.706227 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,48.3175674 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.99217831 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,190.0360998 +DC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2.47892 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,10.37981965 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,123.6079529 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,192.6813921 +DC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +DC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2898.2784 +DC,Volatile Organic Compounds,2D3d_Coating-application,,TON,717.417385 +DC,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,52.385 +DC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.31 +DC,Volatile Organic Compounds,2D3h_Printing,,TON,581.475164 +DC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +DC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,14.6343 +DC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,53.357565 +DC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,0 +DC,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.00777284 +DC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +DC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,0 +DC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,0 +DC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,8.96 +DE,Ammonia,11C_Other-natural,Other_Fuel,TON,69.2395 +DE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.650459195 +DE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.35 +DE,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,2.40492 +DE,Ammonia,1A1a_Public-Electricity,light_oil,TON,73.100025 +DE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,25.2363688 +DE,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.340333389 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.014444678 +DE,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.711267099 +DE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.863824298 +DE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,57.83275207 +DE,Ammonia,1A2c_Chemicals,diesel_oil,TON,0.0006 +DE,Ammonia,1A2c_Chemicals,natural_gas,TON,0.0625872 +DE,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03131 +DE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.953599322 +DE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.050120564 +DE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.0249257 +DE,Ammonia,1A3bii_Road-LDV,light_oil,TON,287.540031 +DE,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.5063713 +DE,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.23441308 +DE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.58543511 +DE,Ammonia,1A3biii_Road-bus,light_oil,TON,0.656755168 +DE,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.0313917 +DE,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0822919 +DE,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.158652 +DE,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.845669 +DE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.843624 +DE,Ammonia,1A3c_Rail,diesel_oil,TON,0.158421686 +DE,Ammonia,1A3c_Rail,light_oil,TON,4.74977E-05 +DE,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.046032466 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.918694918 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.753305396 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.157671665 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.318669726 +DE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.118939427 +DE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.202026592 +DE,Ammonia,1A4bi_Residential-stationary,biomass,TON,25.0261181 +DE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,7.680808 +DE,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.3075997 +DE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3.506562 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.58476661 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.016273768 +DE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003904766 +DE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.231526492 +DE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.1540258 +DE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.1921161 +DE,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +DE,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.10731 +DE,Ammonia,2B_Chemicals-other,Other_Fuel,TON,23.3105383 +DE,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,45.667 +DE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,9.01305 +DE,Ammonia,3B1a_Cattle-dairy,,TON,204.9140597 +DE,Ammonia,3B1b_Cattle-non-dairy,,TON,361.8554913 +DE,Ammonia,3B2_Manure-sheep,,TON,3.891283 +DE,Ammonia,3B3_Manure-swine,,TON,69.23278566 +DE,Ammonia,3B4_Manure-other,,TON,769.5238 +DE,Ammonia,3B4_Manure-poultry,,TON,4519.510036 +DE,Ammonia,3B4d_Manure-goats,,TON,9.962194 +DE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,576.6188 +DE,Ammonia,5A_Solid-waste-disposal,,TON,0 +DE,Ammonia,5B_Compost-biogas,Other_Fuel,TON,25.7638 +DE,Ammonia,5C_Open-burning-yard-waste,,TON,0.53134933 +DE,Ammonia,5D1_Wastewater-domestic,,TON,6.42 +DE,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.00956 +DE,Ammonia,6A_Other-commertial,Other_Fuel,TON,20.27434 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,41918.083 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,40841.44594 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2295.486572 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,240470.0022 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4188.333521 +DE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,72675.19 +DE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3811275.828 +DE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17360.29 +DE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,259687.918 +DE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,106445.876 +DE,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,25942.8264 +DE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,342082.534 +DE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1989.115 +DE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,252752.8 +DE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,22983.64 +DE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,34082.61 +DE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,79.55333 +DE,Carbon Dioxide,1A3c_Rail,light_oil,TON,3.588524 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,19381.4437 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,26725.04912 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1167.6096 +DE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,14629.71336 +DE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,89812.93214 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,71962.86756 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1215.537033 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,478.172 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,15701.6547 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,18967.1675 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,86996.01 +DE,Carbon Monoxide,11C_Other-natural,,TON,3319.12 +DE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.11201054 +DE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,99.278 +DE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,7.19948 +DE,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0 +DE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,597.98683 +DE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,45.3430435 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,117.5172439 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1048.354633 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,63.60002849 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,44.15524031 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.08791349 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2566.176666 +DE,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.00376125 +DE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,15.832606 +DE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.332922 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,817.1154066 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,863.8687873 +DE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,875.3725212 +DE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1034.1086 +DE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,66931.34506 +DE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,142.2746 +DE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3981.457389 +DE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,233.605624 +DE,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,359.75993 +DE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,462.05379 +DE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,62.5105 +DE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,396.9863 +DE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,874.392 +DE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1445.609 +DE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,53.2916343 +DE,Carbon Monoxide,1A3c_Rail,light_oil,TON,0.8594444 +DE,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,320.0522809 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.83034131 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,557.2636457 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94.1328871 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5588.407187 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,26.5611956 +DE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,57.17200534 +DE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,20338.19095 +DE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4174.64186 +DE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,48.00498 +DE,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.845604 +DE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,354.3679 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,277.6387991 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,281.6693346 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.431286 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,3093.118258 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,38.0668428 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9797.683 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.475071 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,6.030615 +DE,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,62.76765 +DE,Carbon Monoxide,2B_Chemicals-other,,TON,2937.454622 +DE,Carbon Monoxide,2D3d_Coating-application,,TON,0 +DE,Carbon Monoxide,2H2_Food-and-beverage,,TON,96.64049 +DE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.4130671 +DE,Carbon Monoxide,5A_Solid-waste-disposal,,TON,106.875378 +DE,Carbon Monoxide,5C_Incineration,,TON,0.079942441 +DE,Carbon Monoxide,5C_Incineration,biomass,TON,3.012804959 +DE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,98.3439 +DE,Carbon Monoxide,5C_Open-burning-residential,,TON,38.47907 +DE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,57.266459 +DE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.30882 +DE,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.38996303 +DE,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.559076838 +DE,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,29.74447528 +DE,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,7.996924386 +DE,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.342330775 +DE,Methane,1A3bii_Road-LDV,diesel_oil,TON,6.25005 +DE,Methane,1A3bii_Road-LDV,light_oil,TON,193.8249268 +DE,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.514078 +DE,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.08058657 +DE,Methane,1A3biii_Road-bus,diesel_oil,TON,2.2395701 +DE,Methane,1A3biii_Road-bus,light_oil,TON,0.4483982 +DE,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.962572 +DE,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.1111981 +DE,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.915566 +DE,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.537261 +DE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.83571 +DE,Methane,1A3c_Rail,diesel_oil,TON,0.003253698 +DE,Methane,1A3c_Rail,light_oil,TON,0.002750983 +DE,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.594875133 +DE,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,20.72248141 +DE,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.33795912 +DE,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.489997852 +DE,Methane,1A4bi_Residential-mobile,light_oil,TON,84.6762543 +DE,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.943644275 +DE,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.271021993 +DE,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0194632 +DE,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,27.0628068 +DE,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.433278129 +DE,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,76.88369 +DE,Nitrogen Oxides,11C_Other-natural,,TON,719.971 +DE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,31.3770834 +DE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,329.9 +DE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +DE,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0 +DE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1641.36912 +DE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,9.1986865 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,221.9515043 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,141.3553406 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9.351682147 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,203.0190979 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,193.4736908 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3132.883917 +DE,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.0150195 +DE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,25.27252 +DE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.57374 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1454.221933 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.40997175 +DE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,783.4958722 +DE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,245.5729 +DE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7571.376349 +DE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,58.3748 +DE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,399.4719854 +DE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,681.740695 +DE,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,34.3561554 +DE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1792.12505 +DE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,6.40108 +DE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1130.6248 +DE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,72.4033 +DE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,73.5934 +DE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,248.4918319 +DE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.009213395 +DE,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3189.283267 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,109.4971653 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,616.0862708 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,164.354094 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,95.89506594 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.95315652 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,127.0017211 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,222.3227564 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,69.0412231 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,172.8179 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.690296 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,753.8007 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,578.9389449 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.1182328 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.455118 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,35.0944726 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,204.857165 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,733.3718 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.1110813 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,2.450366 +DE,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,16.961008 +DE,Nitrogen Oxides,2B_Chemicals-other,,TON,17.86847 +DE,Nitrogen Oxides,2D3d_Coating-application,,TON,0.1898 +DE,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +DE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.7741733 +DE,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,13.38729 +DE,Nitrogen Oxides,5C_Incineration,,TON,0.045678704 +DE,Nitrogen Oxides,5C_Incineration,biomass,TON,8.335273296 +DE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,2.909581 +DE,Nitrogen Oxides,5C_Open-burning-residential,,TON,2.7161654 +DE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.1844875 +DE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,2.7486 +DE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.22659692 +DE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,185.2836458 +DE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.0632024 +DE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11.89882584 +DE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.162437371 +DE,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.30842814 +DE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.358828869 +DE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0840805 +DE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.4245012 +DE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.504329 +DE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.3873 +DE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.6067779 +DE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4.56 +DE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,6.275 +DE,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,1.80011 +DE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,30.01723712 +DE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,17.19159762 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.91813359 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.37984237 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,173.7215045 +DE,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.0007503 +DE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.812283912 +DE,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00964855 +DE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,4009.04 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.45193368 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.089440361 +DE,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,476.91 +DE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.36909 +DE,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.4152605 +DE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.4559869 +DE,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.00935361 +DE,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00308194 +DE,PM10 Filterable,2A2_Lime-production,,TON,1.640979 +DE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,5157.95 +DE,PM10 Filterable,2A6_Other-minerals,,TON,48.91738427 +DE,PM10 Filterable,2B_Chemicals-other,,TON,103.541827 +DE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.00076 +DE,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,3.1352186 +DE,PM10 Filterable,2D3d_Coating-application,,TON,2.64957985 +DE,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.046 +DE,PM10 Filterable,2H2_Food-and-beverage,,TON,18.17946282 +DE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,9.8366566 +DE,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,1150.1871 +DE,PM10 Filterable,3Dc_Other-farm,,TON,1777.184673 +DE,PM10 Filterable,5A_Solid-waste-disposal,,TON,14.404 +DE,PM10 Filterable,5C_Incineration,,TON,0.037289 +DE,PM10 Filterable,5C_Incineration,biomass,TON,2.026 +DE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,9.88 +DE,PM10 Filterable,5C_Open-burning-residential,,TON,17.18 +DE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,8.44 +DE,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.027486 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.19351035 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,31.46 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,8.435 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,4.961189 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,42.83102193 +DE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,18.00868142 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16.3894511 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.277471482 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.280380345 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,18.77997151 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,27.76158228 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,199.9599935 +DE,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.00172605 +DE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.159388655 +DE,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.04191106 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,127.584257 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.524887971 +DE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,21.80110732 +DE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4009.04 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,14.142837 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,416.8236394 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.871312 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.42805422 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,37.3503901 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.68175452 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,102.132741 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.253456 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,76.20536 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.810203 +DE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.213106 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,10.0095152 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000476295 +DE,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,248.8799077 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.54946627 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.559400874 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.941824 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.916833696 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.147504337 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.0774009 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,89.86111954 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,550.088395 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,22.85038 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.91511 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.778737 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,50.18706686 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.767476207 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6467962 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,24.97054418 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.3521874 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,26.854932 +DE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.01341442 +DE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0123278 +DE,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.640979 +DE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5157.98 +DE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,59.12884627 +DE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,103.542247 +DE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.00076 +DE,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,3.1352186 +DE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.64957985 +DE,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.046 +DE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,256.7735313 +DE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,9.8589696 +DE,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1150.1871 +DE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1777.213673 +DE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,14.404 +DE,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.04191939 +DE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.27758011 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,9.89259 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,17.202388 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,8.4639502 +DE,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0714636 +DE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.93824144 +DE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3.64 +DE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.57 +DE,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,1.6660244 +DE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,19.66127353 +DE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,17.14003233 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.57437764 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.57581822 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,109.3079972 +DE,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.0001803 +DE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.810230607 +DE,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.009646255 +DE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,991.555 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.27092148 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.752351114 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,476.48 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,7.96883 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.3191348 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.79311 +DE,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.00935361 +DE,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00308194 +DE,PM2.5 Filterable,2A2_Lime-production,,TON,0.0769973 +DE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,515.76 +DE,PM2.5 Filterable,2A6_Other-minerals,,TON,9.76403882 +DE,PM2.5 Filterable,2B_Chemicals-other,,TON,39.67070622 +DE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.0007 +DE,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,2.7197106 +DE,PM2.5 Filterable,2D3d_Coating-application,,TON,2.283926654 +DE,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.015069 +DE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,5.993594233 +DE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,7.747647667 +DE,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,117.36923 +DE,PM2.5 Filterable,3Dc_Other-farm,,TON,293.9046733 +DE,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,7.694 +DE,PM2.5 Filterable,5C_Incineration,,TON,0.030206 +DE,PM2.5 Filterable,5C_Incineration,biomass,TON,2.026 +DE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,9.88 +DE,PM2.5 Filterable,5C_Open-burning-residential,,TON,15.74 +DE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,6.82 +DE,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0151173 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.4999212 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,30.54 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.73 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,4.8271 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,32.47507473 +DE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,17.78003233 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.89750142 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.265067977 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.280369783 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,16.57963152 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,19.95694862 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,190.1129472 +DE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.00115605 +DE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.157328625 +DE,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.041908765 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,123.7567425 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.006995266 +DE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,19.32726869 +DE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,991.555 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,10.01633 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,171.3388778 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.899218 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,8.72789744 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,28.561007 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.7971407 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,76.130187 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.1138101 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,55.43666 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.160283 +DE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.740071 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,9.71155685 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000438192 +DE,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,230.0023912 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.12220621 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.469421368 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.463568 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.384278607 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.147504337 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.775078607 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,82.6763422 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,539.942735 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,20.45016 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.818985 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.11586 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,48.68142679 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.706083554 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6273928 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,22.97308814 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.2216309 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,24.706594 +DE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.01341442 +DE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0123278 +DE,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.0769973 +DE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,515.798 +DE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,19.97551572 +DE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,39.67112622 +DE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.0007 +DE,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,2.7197106 +DE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.283926654 +DE,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.015069 +DE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,244.5897935 +DE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,7.769960667 +DE,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,117.36923 +DE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,293.9279733 +DE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,7.694 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.033969774 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.278446726 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,9.89259 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,15.753789 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.8439512 +DE,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0590949 +DE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,5.30089058 +DE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,752.8 +DE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +DE,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0 +DE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,230.8934223 +DE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,103.4481652 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.473828569 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.218407787 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.013053951 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.23883549 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,254.5026943 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,306.955454 +DE,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.021300027 +DE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.1126615 +DE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0030606 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.68997184 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.06954277 +DE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,54.22528828 +DE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.6313797 +DE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,79.44361634 +DE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.1507778 +DE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.4159115 +DE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.92676982 +DE,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.540395105 +DE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.9500189 +DE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.04143396 +DE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.179628 +DE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.478766 +DE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.710039 +DE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.657833506 +DE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,6.5433E-05 +DE,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1784.611129 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.91568456 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.772591668 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.228606798 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.45105821 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.006540519 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.17343204 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.630183916 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,10.1014984 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,409.0022 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,15.80294 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.31674 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.836013557 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.02214595 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005692836 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.284941865 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.604449082 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.5845176 +DE,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.001427455 +DE,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.000973245 +DE,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,5.1711285 +DE,Sulfur Dioxide,2B_Chemicals-other,,TON,96.77527038 +DE,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +DE,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +DE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.002531558 +DE,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,62.2085 +DE,Sulfur Dioxide,5C_Incineration,,TON,0.022476789 +DE,Sulfur Dioxide,5C_Incineration,biomass,TON,6.009284811 +DE,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,61.71108 +DE,Sulfur Dioxide,5C_Open-burning-residential,,TON,0.4526946 +DE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.64306299 +DE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.618435 +DE,Volatile Organic Compounds,11C_Other-natural,,TON,21962.85 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,21.83250488 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,11.9134 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.09432 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.6699497 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,94.3506685 +DE,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,46.73386877 +DE,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,197.3945494 +DE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,114.7266468 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.86139083 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.14305788 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.431623931 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.079502832 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.020456144 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,121.2832157 +DE,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.0001512 +DE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.1020949 +DE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0237598 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,165.2074812 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,57.83163769 +DE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,137.3231939 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,107.97541 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,6138.697296 +DE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.65631 +DE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,296.4646561 +DE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,45.977801 +DE,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,10.1090722 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,92.372174 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,2.642269 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,87.55851 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,36.1933 +DE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,210.2745 +DE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,20.6529747 +DE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.021002987 +DE,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,113.8680952 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.933954013 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.8909731 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,22.1702645 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,201.2386215 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.963987501 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,13.55769334 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1259.738458 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,580.003343 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,6.720705 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.2691499 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,39.65547 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,54.64639876 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.07064219 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.1628658 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,778.5817387 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.0102007 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1864.242184 +DE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,53.37108 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,27.88195662 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,28.67573247 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,448.9604192 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,499.3295752 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,255.8149378 +DE,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,0.325254 +DE,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,53.501065 +DE,Volatile Organic Compounds,2B_Chemicals-other,,TON,187.2695281 +DE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2135.5942 +DE,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,3.929022175 +DE,Volatile Organic Compounds,2D3d_Coating-application,,TON,1411.526252 +DE,Volatile Organic Compounds,2D3e_Degreasing,,TON,145.2673 +DE,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.94711 +DE,Volatile Organic Compounds,2D3h_Printing,,TON,91.937 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0.209537789 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,10.69793978 +DE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,84.7267749 +DE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,46.5704545 +DE,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,16.39314 +DE,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,22.72224 +DE,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0.3113014 +DE,Volatile Organic Compounds,3B3_Manure-swine,,TON,2.1403835 +DE,Volatile Organic Compounds,3B4_Manure-other,,TON,6.4969 +DE,Volatile Organic Compounds,3B4_Manure-poultry,,TON,386.9365176 +DE,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0.7969765 +DE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,876.624 +DE,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,22.7974916 +DE,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,182.298 +DE,Volatile Organic Compounds,5C_Incineration,,TON,0.025103954 +DE,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.452879866 +DE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,6.75024 +DE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,3.873267 +DE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,8.5821063 +DE,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,13.490449 +DE,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.01426875 +DE,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,2 +DM,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.005624864 +DM,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,6.745046195 +DM,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,275.0414428 +DM,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,8.071800326 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1173.358627 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.11876589 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,47660.52357 +DM,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,111294.2869 +DM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1217.886513 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,5030.115323 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.19554334 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,41981.17354 +DM,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,825071.0335 +DM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1679.691403 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,241.0142277 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.006598083 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,217.7328684 +DM,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,17.29929626 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,246.6209351 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.011996496 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,393.4873781 +DM,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,25564.3152 +DM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,27.48988535 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,240.3897835 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.006598083 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,217.7328684 +DM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,16.83202974 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,245.9964927 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.011996496 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,393.4873781 +DM,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,24228.6156 +DM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,27.02261175 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,437.9457319 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.010077074 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,25.81825248 +DM,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,127020.3637 +DM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,25.1541334 +DM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.9822 +DM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,677.0642318 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,274.2569611 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.3634941 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,987.3470762 +DM,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27429.1484 +DM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,38592.58886 +DM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,205.974 +DM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7472.071032 +FL,Ammonia,1A1a_Public-Electricity,biomass,TON,231.080329 +FL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,16.055742 +FL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,184.950977 +FL,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,280.459229 +FL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,1494.040388 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.772271294 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.151673728 +FL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,510.9559669 +FL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.671929305 +FL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,82.97040294 +FL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.183113065 +FL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +FL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,179.4497461 +FL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,62.48234701 +FL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.611367811 +FL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,44.6097742 +FL,Ammonia,1A3bii_Road-LDV,light_oil,TON,5811.040442 +FL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.07160431 +FL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,214.9084792 +FL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,22.37037229 +FL,Ammonia,1A3biii_Road-bus,light_oil,TON,6.257208646 +FL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.00641595 +FL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,184.4161439 +FL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,45.36522721 +FL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,135.1197283 +FL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,13.74519217 +FL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,50.0813588 +FL,Ammonia,1A3c_Rail,diesel_oil,TON,2.968329968 +FL,Ammonia,1A3c_Rail,light_oil,TON,0.002128166 +FL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14.45690431 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.367422957 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.043678684 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.11810498 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.029526236 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.69996384 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.087794356 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,10.27979094 +FL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,2.773472531 +FL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,27.38903947 +FL,Ammonia,1A4bi_Residential-stationary,biomass,TON,188.5100324 +FL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.378000076 +FL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.162000051 +FL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,167.8209903 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.551376597 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.169122303 +FL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.080558552 +FL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.758251793 +FL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.033179817 +FL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,22.98790543 +FL,Ammonia,2A2_Lime-production,,TON,32.7509 +FL,Ammonia,2A6_Other-minerals,Other_Fuel,TON,91.664 +FL,Ammonia,2B_Chemicals-other,,TON,1137.036078 +FL,Ammonia,2C_Iron-steel-alloy,,TON,0.294216 +FL,Ammonia,2D3d_Coating-application,,TON,0 +FL,Ammonia,2D3h_Printing,,TON,0 +FL,Ammonia,2H1_Pulp-and-paper,,TON,225.65384 +FL,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,29.8165 +FL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,9.10585 +FL,Ammonia,3B1a_Cattle-dairy,,TON,7153.279 +FL,Ammonia,3B1b_Cattle-non-dairy,,TON,8045.258 +FL,Ammonia,3B2_Manure-sheep,,TON,45.574584 +FL,Ammonia,3B3_Manure-swine,,TON,351.37 +FL,Ammonia,3B4_Manure-other,,TON,1621.371048 +FL,Ammonia,3B4_Manure-poultry,,TON,5667.012445 +FL,Ammonia,3B4d_Manure-goats,,TON,402.450576 +FL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7163.23658 +FL,Ammonia,3F_Ag-res-on-field,,TON,34684.07323 +FL,Ammonia,5B_Compost-biogas,Other_Fuel,TON,476.49749 +FL,Ammonia,5D1_Wastewater-domestic,,TON,379.5225 +FL,Ammonia,5D2_Wastewater-industrial,biomass,TON,55.507 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,587813.282 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,416927.4352 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,23571.41976 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7692095.297 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,134806.8431 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,36.42558074 +FL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1812610.323 +FL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,86542664.27 +FL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,358663.308 +FL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4078574.297 +FL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1543209.313 +FL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,201624.9005 +FL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,242.544 +FL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10491264.94 +FL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1188826.257 +FL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9500917.286 +FL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,428415.293 +FL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,518052.469 +FL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3737.13975 +FL,Carbon Dioxide,1A3c_Rail,light_oil,TON,166.2221451 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,625695.1635 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,860687.0012 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38055.3775 +FL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,341277.4866 +FL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,2047007.813 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,437194.5105 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12244.44787 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.283790445 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9875.3899 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,256882.0374 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,496651.2129 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1637301.127 +FL,Carbon Monoxide,11C_Other-natural,,TON,245589.16 +FL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,4530.81111 +FL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,171.499683 +FL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,25351.84713 +FL,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,172.35591 +FL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.388565 +FL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,10073.95084 +FL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,4.960322 +FL,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.18 +FL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,117.3382 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4550.232705 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10871.24284 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,656.0222389 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,57567.1243 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,240.0009852 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1061.00513 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.39806022 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,20.65457372 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3806.996008 +FL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +FL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,70.844242 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.289690432 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.389411532 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.398241036 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,24455.78062 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,28286.42699 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,2.117615146 +FL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,32381.80123 +FL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,29453.83855 +FL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1491524.854 +FL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2978.19802 +FL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,68823.34822 +FL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,3975.133541 +FL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,8365.273826 +FL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.626065 +FL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18027.46292 +FL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,28606.2944 +FL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15138.15739 +FL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13773.5582 +FL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21028.73655 +FL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,966.4566636 +FL,Carbon Monoxide,1A3c_Rail,light_oil,TON,39.08170759 +FL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6290.512167 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,527.2459974 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.32970198 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.742599701 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.144931855 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2674.230426 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2689.922632 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,185141.8161 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,809.3937735 +FL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1159.582843 +FL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,473168.7377 +FL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,37060.49478 +FL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.890000353 +FL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.810000384 +FL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,439.4134525 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1414.989086 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3295.12787 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.14225994 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,78.050205 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,51345.5574 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,985.2052219 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,189039.0475 +FL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,25.39767937 +FL,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0.160419093 +FL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,102.4214209 +FL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.5367333 +FL,Carbon Monoxide,2A1_Cement-production,,TON,36.48845 +FL,Carbon Monoxide,2A6_Other-minerals,,TON,4862.925935 +FL,Carbon Monoxide,2B_Chemicals-other,,TON,127.51988 +FL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,388.112935 +FL,Carbon Monoxide,2C5_Lead-production,,TON,0 +FL,Carbon Monoxide,2C6_Zinc-production,,TON,0 +FL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,72.5443 +FL,Carbon Monoxide,2D3d_Coating-application,,TON,8.7686 +FL,Carbon Monoxide,2D3h_Printing,,TON,0.46 +FL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,5232.04296 +FL,Carbon Monoxide,2H2_Food-and-beverage,,TON,4949.03247 +FL,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,33.148517 +FL,Carbon Monoxide,3F_Ag-res-on-field,,TON,155217.1931 +FL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2738.863259 +FL,Carbon Monoxide,5C_Incineration,,TON,5.604493987 +FL,Carbon Monoxide,5C_Incineration,biomass,TON,2.323141472 +FL,Carbon Monoxide,5C_Open-burning-commercial,,TON,53.5747 +FL,Carbon Monoxide,5C_Open-burning-industrial,,TON,13.156 +FL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,113487.9801 +FL,Carbon Monoxide,5C_Open-burning-residential,,TON,8412.04744 +FL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,775.4235522 +FL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.914243 +FL,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.94208361 +FL,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,61.82486267 +FL,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,279.0801705 +FL,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,258.8648598 +FL,Methane,1A2g_Construction_and_Mining,light_oil,TON,104.3739978 +FL,Methane,1A2g_Construction_and_Mining,natural_gas,TON,1.471869442 +FL,Methane,1A3bii_Road-LDV,diesel_oil,TON,64.33710266 +FL,Methane,1A3bii_Road-LDV,light_oil,TON,3330.63745 +FL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.42231308 +FL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,192.3674079 +FL,Methane,1A3biii_Road-bus,diesel_oil,TON,30.25568794 +FL,Methane,1A3biii_Road-bus,light_oil,TON,13.32064727 +FL,Methane,1A3biii_Road-bus,natural_gas,TON,0.305244 +FL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,566.0070766 +FL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,43.07869346 +FL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,194.5884511 +FL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,20.02963807 +FL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,51.1757112 +FL,Methane,1A3c_Rail,diesel_oil,TON,0.160465043 +FL,Methane,1A3c_Rail,light_oil,TON,0.119619083 +FL,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,20.23766408 +FL,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,630.657067 +FL,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,530.9220153 +FL,Methane,1A4bi_Residential-mobile,diesel_oil,TON,12.16199396 +FL,Methane,1A4bi_Residential-mobile,light_oil,TON,1870.879191 +FL,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.29779209 +FL,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,12.88240387 +FL,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.122444844 +FL,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.42540569 +FL,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,419.6741858 +FL,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.90095965 +FL,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,1688.24034 +FL,Nitrogen Oxides,11C_Other-natural,,TON,14542.7498 +FL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,10232.55297 +FL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,644.865201 +FL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,44607.2088 +FL,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,150.594 +FL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,4.4208 +FL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,17979.21504 +FL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,5.920083 +FL,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.72 +FL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,139.7927 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3515.051109 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1417.624325 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,95.00349492 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,12505.86001 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,988.1104525 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3136.681096 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,198.9326742 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,47.8478028 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,8359.942822 +FL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +FL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,121.541624 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.575074079 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,3.189374019 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.860974902 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,44157.21637 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,382.1341734 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.407496895 +FL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,13637.76049 +FL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,6300.545471 +FL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,142605.9774 +FL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1147.134648 +FL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6328.119489 +FL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,10493.03632 +FL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,661.8442619 +FL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.232945 +FL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,47933.83675 +FL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,2784.854514 +FL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,42282.38502 +FL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1030.577266 +FL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,778.752361 +FL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6051.017035 +FL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.420575178 +FL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,49788.28299 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,193.4666139 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,134.6302179 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.174645022 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.957653589 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3259.38483 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4910.941002 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2529.201413 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,205.0176079 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2706.25327 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,4472.889869 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,697.5929077 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,6.80399748 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.916001666 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1157.750012 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3063.466648 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,45.00120032 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.031801892 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,84.854049 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,525.3271027 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5206.203047 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,11423.9266 +FL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,14.59462248 +FL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0.199213026 +FL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,34.11911297 +FL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.8305894 +FL,Nitrogen Oxides,2A1_Cement-production,,TON,155.4701 +FL,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,39.169 +FL,Nitrogen Oxides,2A6_Other-minerals,,TON,5255.265021 +FL,Nitrogen Oxides,2B_Chemicals-other,,TON,1489.726095 +FL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,60.023325 +FL,Nitrogen Oxides,2C5_Lead-production,,TON,118.84 +FL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.871064 +FL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,5.83785 +FL,Nitrogen Oxides,2D3d_Coating-application,,TON,0.009 +FL,Nitrogen Oxides,2D3h_Printing,,TON,1.87 +FL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5443.97646 +FL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +FL,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,7.521198 +FL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,5936.391199 +FL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,328.63312 +FL,Nitrogen Oxides,5C_Incineration,,TON,90.28980608 +FL,Nitrogen Oxides,5C_Incineration,biomass,TON,36.13722042 +FL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,1.568 +FL,Nitrogen Oxides,5C_Open-burning-industrial,,TON,2.024 +FL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,3357.634491 +FL,Nitrogen Oxides,5C_Open-burning-residential,,TON,593.791653 +FL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,34.46327861 +FL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.907973 +FL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,5.517367437 +FL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2968.211699 +FL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.246249396 +FL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,150.6618116 +FL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,3.356134496 +FL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,6.900122545 +FL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0121694 +FL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16.31315708 +FL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,36.18136886 +FL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14.60971634 +FL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,22.91854585 +FL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.53314468 +FL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,204.291264 +FL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.480689 +FL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2190.48606 +FL,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,34.325718 +FL,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.111974 +FL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,2049.073055 +FL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.565295 +FL,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.036 +FL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,10.6133 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,24464.03223 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,94.02406775 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2543.297169 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,24.4234908 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.444328555 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,260.476765 +FL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,6.840313 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.078149697 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.086529044 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.256499259 +FL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,520911.2453 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,438.1721971 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.809246541 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.595520567 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.236624235 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.15594997 +FL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.40823989 +FL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.174959898 +FL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.196243556 +FL,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.361 +FL,PM10 Filterable,2A1_Cement-production,,TON,313.504179 +FL,PM10 Filterable,2A2_Lime-production,,TON,99.434268 +FL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18434.023 +FL,PM10 Filterable,2A6_Other-minerals,,TON,22583.19777 +FL,PM10 Filterable,2B_Chemicals-other,,TON,406.558784 +FL,PM10 Filterable,2C_Iron-steel-alloy,,TON,54.228684 +FL,PM10 Filterable,2C3_Aluminum-production,,TON,15.355524 +FL,PM10 Filterable,2C5_Lead-production,,TON,13.329884 +FL,PM10 Filterable,2C6_Zinc-production,,TON,0.047682 +FL,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,218.462851 +FL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,34.445217 +FL,PM10 Filterable,2D3d_Coating-application,,TON,27.896972 +FL,PM10 Filterable,2D3h_Printing,,TON,0.19 +FL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.12 +FL,PM10 Filterable,2H1_Pulp-and-paper,,TON,1274.500699 +FL,PM10 Filterable,2H2_Food-and-beverage,,TON,807.830215 +FL,PM10 Filterable,2H3_Other-industrial-processes,,TON,1151.040831 +FL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,117.8230455 +FL,PM10 Filterable,2I_Wood-processing,,TON,6.937495 +FL,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,18729.43271 +FL,PM10 Filterable,3Dc_Other-farm,,TON,7109.86236 +FL,PM10 Filterable,5A_Solid-waste-disposal,,TON,99.317409 +FL,PM10 Filterable,5C_Incineration,,TON,1.506478 +FL,PM10 Filterable,5C_Incineration,biomass,TON,1.984793 +FL,PM10 Filterable,5C_Open-burning-commercial,,TON,6.5215 +FL,PM10 Filterable,5C_Open-burning-industrial,,TON,1.3156 +FL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,11415.9603 +FL,PM10 Filterable,5C_Open-burning-residential,,TON,2742.480008 +FL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,128.406485 +FL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,160.113893 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,338.1059993 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,27.39191187 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6433.3698 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,184.392271 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.11869244 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4671.482381 +FL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.117676199 +FL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0557576 +FL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,23.25321 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,231.6261627 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,46.23255812 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.053251102 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,28207.77018 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,99.97907817 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2763.68297 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,26.88040101 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.454555332 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,535.1716563 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,14.3847564 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.093935694 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.104007674 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.668562864 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,3757.922969 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,208.8634731 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.004308919 +FL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,873.6313971 +FL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,520911.2453 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,434.9420983 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,10866.07858 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,91.9217122 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,476.7982368 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,940.5378603 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,33.44597147 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.0349834 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3591.086223 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,149.9657278 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3362.591471 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,55.61886778 +FL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,74.5973327 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,186.7977368 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021151915 +FL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1477.013653 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,454.8920113 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.049284636 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.825004212 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.300228022 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,64.22160444 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,436.4555191 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,222.5975725 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.795200649 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,192.5260052 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,2062.770359 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4420.789231 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.899640253 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.385559871 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.710233067 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,246.4188493 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,29.49420106 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000162207 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,11.2472587 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,382.5516582 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,109.7917614 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,760.4019371 +FL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.32523372 +FL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.361 +FL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.038148873 +FL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,317.2162122 +FL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,154.3995025 +FL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18434.023 +FL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,22638.89315 +FL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,467.624137 +FL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,119.4276365 +FL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,18.960494 +FL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,20.71961177 +FL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.219337 +FL,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,252.0389358 +FL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,35.893817 +FL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,27.896972 +FL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.2002 +FL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.12 +FL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1875.686194 +FL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,7241.483302 +FL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1099.107787 +FL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,174.253384 +FL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,6.937495 +FL,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,18729.43271 +FL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,7113.393604 +FL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,19775.00827 +FL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,216.1369746 +FL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.720461706 +FL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.592922544 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,10.106701 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.44861 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,11415.9603 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2742.480008 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,128.406485 +FL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,160.113893 +FL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,142.9289565 +FL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,18.31571027 +FL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,889.412247 +FL,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,23.24841 +FL,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.10497564 +FL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1921.023773 +FL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.548646903 +FL,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00864 +FL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.91032 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,20906.46697 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,87.59354238 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,296.7412812 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,15.01629289 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.416825435 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,250.4945604 +FL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,6.822860825 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.044591112 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.049372271 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.240875402 +FL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,57313.11677 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,376.9478589 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.631206922 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.592722281 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.215456599 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,33.70695079 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.313739979 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.134459837 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.207934093 +FL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.353 +FL,PM2.5 Filterable,2A1_Cement-production,,TON,167.2778101 +FL,PM2.5 Filterable,2A2_Lime-production,,TON,38.38329896 +FL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1843.649647 +FL,PM2.5 Filterable,2A6_Other-minerals,,TON,3287.584115 +FL,PM2.5 Filterable,2B_Chemicals-other,,TON,226.6246751 +FL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,45.20938591 +FL,PM2.5 Filterable,2C3_Aluminum-production,,TON,15.355524 +FL,PM2.5 Filterable,2C5_Lead-production,,TON,11.82918015 +FL,PM2.5 Filterable,2C6_Zinc-production,,TON,0.0424992 +FL,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,79.86611774 +FL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,31.24345418 +FL,PM2.5 Filterable,2D3d_Coating-application,,TON,24.15602583 +FL,PM2.5 Filterable,2D3h_Printing,,TON,0.15766 +FL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0995745 +FL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1002.223295 +FL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,140.4836972 +FL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,820.6415392 +FL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,212.1374543 +FL,PM2.5 Filterable,2I_Wood-processing,,TON,2.02874145 +FL,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3838.629795 +FL,PM2.5 Filterable,3Dc_Other-farm,,TON,1418.428348 +FL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,80.39196265 +FL,PM2.5 Filterable,5C_Incineration,,TON,1.249223 +FL,PM2.5 Filterable,5C_Incineration,biomass,TON,1.24525899 +FL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,3.7147808 +FL,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.749392 +FL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,8800.56105 +FL,PM2.5 Filterable,5C_Open-burning-residential,,TON,2511.534786 +FL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,98.98896102 +FL,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,160.113893 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,276.7440229 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,24.22693886 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5132.2985 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,173.3149 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.11169408 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4543.504447 +FL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.101028102 +FL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0283976 +FL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,22.55023 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,224.4692957 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.97507868 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.04415775 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,24650.1551 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,93.56950515 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,517.1633398 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,17.47323138 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.427046653 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,525.2028776 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,14.36730463 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.060278287 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0667414 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.65314721 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,3645.185599 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,192.2874143 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.004308919 +FL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,772.3487573 +FL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,57313.11677 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,293.2080886 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2788.466739 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,64.28201 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,116.3068797 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,689.7194367 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.371407565 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00469622 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2554.761633 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,38.97929913 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2386.1294 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,13.14470828 +FL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,36.749101 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,172.9763095 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019502087 +FL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1388.865898 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,393.6294409 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.870027044 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.818665489 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.279140195 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,63.81323874 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,423.3618874 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,205.4497999 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.795200649 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,186.7501847 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1897.844429 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4234.776018 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.805140263 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.345060062 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.721925824 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,239.0262585 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,27.13472105 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000162207 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,10.9098487 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,351.9511434 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,106.4980104 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,699.569962 +FL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.32523372 +FL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.353 +FL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.038148873 +FL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,171.1398471 +FL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,93.34847696 +FL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1843.649647 +FL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3428.489459 +FL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,287.6900142 +FL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,110.4083925 +FL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,18.960494 +FL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,19.21891875 +FL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.214154 +FL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,113.4421431 +FL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,32.69205826 +FL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,24.15602583 +FL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.16786 +FL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0995745 +FL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1603.408865 +FL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,6574.13638 +FL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,731.6743612 +FL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,305.6019247 +FL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.02874145 +FL,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3838.629795 +FL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1421.959602 +FL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,15527.15259 +FL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,197.2116257 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,3.629526863 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.687064317 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,7.2999818 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.8824 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8800.56105 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2511.534786 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,98.98896102 +FL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,160.113893 +FL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1001.896958 +FL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,289.846393 +FL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,94971.5831 +FL,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1215.9715 +FL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,4.15328 +FL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1879.417846 +FL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.043475 +FL,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,1.19948 +FL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,24.2487 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16.02934033 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.407010776 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.287778506 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1611.302242 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,227.0474198 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7903.013014 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,575.1240463 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.61957261 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1757.927465 +FL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.40922 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.128267496 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,4.020902313 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.017304191 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,85.29501349 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.236922836 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000203686 +FL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1465.697509 +FL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,14.35015901 +FL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1838.291878 +FL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.74194908 +FL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,86.64892404 +FL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,11.93490919 +FL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,4.434576149 +FL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00128416 +FL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,80.93918646 +FL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,25.33087035 +FL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,72.89882728 +FL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9.185564654 +FL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.04618816 +FL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.35985734 +FL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002959419 +FL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8680.936249 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,21.92248951 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.306685617 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,35.60114459 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.744940617 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,122.0340442 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.3115533 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14.54654864 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.213197838 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4.003366094 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,37.15257446 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,62.07084343 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,16.10280232 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.90120384 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,6.58873054 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.983533525 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.22285678 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.15239E-06 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.116647959 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.661495826 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.82737643 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,29.79731892 +FL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,15.72278221 +FL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02447 +FL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.001885643 +FL,Sulfur Dioxide,2A1_Cement-production,,TON,22.91665 +FL,Sulfur Dioxide,2A6_Other-minerals,,TON,298.823017 +FL,Sulfur Dioxide,2B_Chemicals-other,,TON,20707.60344 +FL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,17.77315 +FL,Sulfur Dioxide,2C5_Lead-production,,TON,164.944761 +FL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,58.2075 +FL,Sulfur Dioxide,2D3d_Coating-application,,TON,0.000052 +FL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,3254.072888 +FL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +FL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,111.360057 +FL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2608.724613 +FL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,741.683877 +FL,Sulfur Dioxide,5C_Incineration,,TON,25.10508137 +FL,Sulfur Dioxide,5C_Incineration,biomass,TON,1.199363897 +FL,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.00095 +FL,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.0506 +FL,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,1114.733618 +FL,Sulfur Dioxide,5C_Open-burning-residential,,TON,98.9652097 +FL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.446529186 +FL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,186.00771 +FL,Volatile Organic Compounds,11C_Other-natural,,TON,1663392.82 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,151.424078 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,16.660863 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,626.632346 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,23.76727 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.003818 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1027.530493 +FL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,325.674725 +FL,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.0072 +FL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,9.7301 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,367.451664 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,315.8215773 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,61.94685852 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,3637.356842 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,82.64919844 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,62.83343412 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.030707273 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.889841475 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,488.1408321 +FL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +FL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,16.277046 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.030655908 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.021944884 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.352274208 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,4917.493752 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1951.80263 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.318162997 +FL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,3947.665042 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,2410.411433 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,109663.6204 +FL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,303.966417 +FL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4425.696492 +FL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,1054.632214 +FL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,430.2835128 +FL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.0147359 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4619.676127 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,1258.943941 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3266.222748 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,614.550938 +FL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3977.572813 +FL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,308.7368934 +FL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.130163435 +FL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1579.197163 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,14.93206434 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.03184298 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.167753923 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.187201191 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,192.1058977 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,618.567658 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,7186.029201 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,114.7653803 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,270.6373333 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,30955.74001 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4210.145731 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.264599999 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.113399945 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,60.39669843 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,280.5118188 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,300.6123095 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.026467997 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.5368846 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12645.68169 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,264.6433306 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,59415.74205 +FL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,995.4712479 +FL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2712.486142 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1951.230394 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1370.542047 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7672.059886 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,29374.96342 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,14.21459 +FL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,27.18929037 +FL,Volatile Organic Compounds,2A1_Cement-production,,TON,6.0482 +FL,Volatile Organic Compounds,2A2_Lime-production,,TON,3.1595 +FL,Volatile Organic Compounds,2A6_Other-minerals,,TON,26.7690105 +FL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1884.746119 +FL,Volatile Organic Compounds,2B_Chemicals-other,,TON,1533.843583 +FL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,68.76374 +FL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,8.22327 +FL,Volatile Organic Compounds,2C5_Lead-production,,TON,27.165495 +FL,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +FL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,12.089265 +FL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,87515.38762 +FL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,77.24686 +FL,Volatile Organic Compounds,2D3d_Coating-application,,TON,39742.57799 +FL,Volatile Organic Compounds,2D3e_Degreasing,,TON,8098.866528 +FL,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,44.4299975 +FL,Volatile Organic Compounds,2D3h_Printing,,TON,18189.83263 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,415.7140827 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2401.775554 +FL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,6243.210484 +FL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,3943.414863 +FL,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,2299.670619 +FL,Volatile Organic Compounds,2I_Wood-processing,,TON,0.0334 +FL,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,574.354 +FL,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,645.98 +FL,Volatile Organic Compounds,3B3_Manure-swine,,TON,28.21 +FL,Volatile Organic Compounds,3B4_Manure-poultry,,TON,453.394 +FL,Volatile Organic Compounds,3Dc_Other-farm,,TON,181.513195 +FL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,24256.26345 +FL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,10580.96787 +FL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,437.472423 +FL,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,3371.5846 +FL,Volatile Organic Compounds,5C_Incineration,,TON,13.64284075 +FL,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.298449882 +FL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,7.2675 +FL,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.5313 +FL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,7789.712518 +FL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,571.726259 +FL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,144.6226781 +FL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,372.925371 +FL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +FL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.021 +FL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,3.361378 +GA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.10812 +GA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,97.0016 +GA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.2630728 +GA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,581.726 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.881149041 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.161201842 +GA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,4.034 +GA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.448664261 +GA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +GA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,15.21652908 +GA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,1.479788396 +GA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,158.3871 +GA,Ammonia,1A2c_Chemicals,natural_gas,TON,7.6055 +GA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,18.62850851 +GA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.638594237 +GA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,27.04144962 +GA,Ammonia,1A3bii_Road-LDV,light_oil,TON,3499.582123 +GA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.864444379 +GA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,173.8723825 +GA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,10.13160004 +GA,Ammonia,1A3biii_Road-bus,light_oil,TON,2.973816619 +GA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.873614658 +GA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,144.2728455 +GA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.625693738 +GA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,72.81309504 +GA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,23.38021115 +GA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.90585806 +GA,Ammonia,1A3c_Rail,diesel_oil,TON,8.377306296 +GA,Ammonia,1A3c_Rail,light_oil,TON,0.005683214 +GA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.589013265 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.181553171 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.25582426 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.9267495 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.697555686 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.550844829 +GA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.161364587 +GA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.76682114 +GA,Ammonia,1A4bi_Residential-stationary,biomass,TON,225.5506738 +GA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.27300003 +GA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.202500048 +GA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1346.685424 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.853982573 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.245340357 +GA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.04126179 +GA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.617335105 +GA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.789474439 +GA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.499665359 +GA,Ammonia,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,Ammonia,2A1_Cement-production,,TON,2.8 +GA,Ammonia,2A6_Other-minerals,,TON,2147.9411 +GA,Ammonia,2A6_Other-minerals,Gasoline,TON,0 +GA,Ammonia,2B_Chemicals-other,,TON,2317.087 +GA,Ammonia,2D3d_Coating-application,,TON,50.9555 +GA,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.01 +GA,Ammonia,2H1_Pulp-and-paper,,TON,808.72 +GA,Ammonia,2H2_Food-and-beverage,,TON,0 +GA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,369.428445 +GA,Ammonia,3B1a_Cattle-dairy,,TON,2982.803 +GA,Ammonia,3B1b_Cattle-non-dairy,,TON,3632.791 +GA,Ammonia,3B2_Manure-sheep,,TON,40.0667118 +GA,Ammonia,3B3_Manure-swine,,TON,2426.367 +GA,Ammonia,3B4_Manure-other,,TON,1045.641679 +GA,Ammonia,3B4_Manure-poultry,,TON,44031.613 +GA,Ammonia,3B4d_Manure-goats,,TON,593.289629 +GA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7137.378093 +GA,Ammonia,3F_Ag-res-on-field,,TON,7281.474434 +GA,Ammonia,5A_Solid-waste-disposal,,TON,0 +GA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,217.92114 +GA,Ammonia,5C_Incineration,,TON,0 +GA,Ammonia,5C_Incineration,biomass,TON,0 +GA,Ammonia,5D1_Wastewater-domestic,,TON,36.49711328 +GA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.108 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,354885.2207 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,368916.422 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,23235.40906 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2292538.856 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,53422.9197 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.8400527 +GA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,966221.4355 +GA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,44268287.14 +GA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,200196.192 +GA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3233666.195 +GA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,623283.1954 +GA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,97775.55885 +GA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,35554.30364 +GA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9105801.838 +GA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,43089.80393 +GA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3991800.399 +GA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,680445.588 +GA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,137772.3873 +GA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7510.480429 +GA,Carbon Dioxide,1A3c_Rail,light_oil,TON,442.3394675 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,208866.3951 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,381024.2987 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16790.85614 +GA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,142906.8334 +GA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,879374.7377 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,351280.8511 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,17786.81106 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.803797102 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5058.143 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,243141.648 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,97216.95267 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,320486.4187 +GA,Carbon Monoxide,11C_Other-natural,,TON,216422.301 +GA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1987.85 +GA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,67.8343 +GA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6585.5965 +GA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.279 +GA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1440.6499 +GA,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,4.86 +GA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,2.47 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1020.943259 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11262.24711 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,585.9233784 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,20375.53251 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,441.5393187 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1379.235613 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,185.4940117 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,9.268100947 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5950.697338 +GA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +GA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,108.8756 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7718.437307 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,11043.06406 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.862731867 +GA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12941.9221 +GA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,16144.93313 +GA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,833946.9985 +GA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1622.670866 +GA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,39358.42272 +GA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1603.840472 +GA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3407.651656 +GA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,242.1737799 +GA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13274.22326 +GA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,878.5153116 +GA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6594.484867 +GA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15441.85152 +GA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6265.35299 +GA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2720.098661 +GA,Carbon Monoxide,1A3c_Rail,light_oil,TON,103.0047387 +GA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,616.4480171 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,853.3686813 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.517888471 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,54.18884946 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.554479807 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.847474782 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2624.814505 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,785.8519764 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,80208.15815 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,357.6409238 +GA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,485.5712386 +GA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,200471.295 +GA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,36940.89036 +GA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.365000012 +GA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.012500026 +GA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2877.247749 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1131.053616 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4890.85476 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.199883428 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,39.97735 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,45223.74971 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,192.8484961 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,36892.06512 +GA,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,Carbon Monoxide,2A1_Cement-production,,TON,1289.96 +GA,Carbon Monoxide,2A6_Other-minerals,,TON,5426.6143 +GA,Carbon Monoxide,2A6_Other-minerals,Gasoline,TON,0 +GA,Carbon Monoxide,2B_Chemicals-other,,TON,696.451 +GA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,241.6974 +GA,Carbon Monoxide,2C3_Aluminum-production,,TON,49.8965 +GA,Carbon Monoxide,2C5_Lead-production,Other_Fuel,TON,1.142 +GA,Carbon Monoxide,2C7_Other-metal,,TON,2.9494 +GA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,12.78 +GA,Carbon Monoxide,2D3d_Coating-application,,TON,19.9459 +GA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,12394.8163 +GA,Carbon Monoxide,2H2_Ethanol Production,,TON,6.329 +GA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1320.727167 +GA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,833.78414 +GA,Carbon Monoxide,3B1a_Cattle-dairy,,TON,0 +GA,Carbon Monoxide,3B1b_Cattle-non-dairy,,TON,0 +GA,Carbon Monoxide,3B2_Manure-sheep,,TON,0 +GA,Carbon Monoxide,3B3_Manure-swine,,TON,0 +GA,Carbon Monoxide,3B4_Manure-other,,TON,0 +GA,Carbon Monoxide,3B4_Manure-poultry,,TON,0 +GA,Carbon Monoxide,3B4d_Manure-goats,,TON,0 +GA,Carbon Monoxide,3Da1_Inorganic-N-fertilizers,,TON,0 +GA,Carbon Monoxide,3F_Ag-res-on-field,,TON,38165.38914 +GA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1030.539053 +GA,Carbon Monoxide,5C_Incineration,,TON,0 +GA,Carbon Monoxide,5C_Incineration,biomass,TON,94.77913258 +GA,Carbon Monoxide,5C_Open-burning-commercial,,TON,1250 +GA,Carbon Monoxide,5C_Open-burning-dump,,TON,0.11 +GA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,207895.287 +GA,Carbon Monoxide,5C_Open-burning-residential,,TON,12009.61898 +GA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1379.191465 +GA,Carbon Monoxide,5D1_Wastewater-domestic,,TON,0 +GA,Carbon Monoxide,5D3_Wastewater-commertial,Other_Fuel,TON,6.869 +GA,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.28 +GA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.43066743 +GA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,55.96347025 +GA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,272.2000731 +GA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,73.19480873 +GA,Methane,1A2g_Construction_and_Mining,light_oil,TON,41.90677057 +GA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.599650704 +GA,Methane,1A3bii_Road-LDV,diesel_oil,TON,33.73343983 +GA,Methane,1A3bii_Road-LDV,light_oil,TON,1801.080048 +GA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.95919914 +GA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,123.2020631 +GA,Methane,1A3biii_Road-bus,diesel_oil,TON,14.60564172 +GA,Methane,1A3biii_Road-bus,light_oil,TON,5.446465046 +GA,Methane,1A3biii_Road-bus,natural_gas,TON,251.973977 +GA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,622.1101551 +GA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.136917649 +GA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,120.9816049 +GA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,24.3887633 +GA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.10917115 +GA,Methane,1A3c_Rail,diesel_oil,TON,0.297098078 +GA,Methane,1A3c_Rail,light_oil,TON,0.32134826 +GA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.815704684 +GA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,284.8007139 +GA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,234.7358525 +GA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,5.092915958 +GA,Methane,1A4bi_Residential-mobile,light_oil,TON,815.6520617 +GA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.417151549 +GA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,19.21017742 +GA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.172042002 +GA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.21786785 +GA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,432.8495326 +GA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.525286391 +GA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,330.9376797 +GA,Nitrogen Oxides,11C_Other-natural,,TON,16459.405 +GA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,908.33 +GA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,195.6546 +GA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,34873.689 +GA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1.202 +GA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1999.0082 +GA,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,5.79 +GA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,8.7 +GA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.23 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1945.730849 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1324.998532 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,88.29482345 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5886.767446 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2035.090168 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4372.949516 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,601.7465099 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,37.18935498 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,8779.040609 +GA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +GA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,204.5897 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,14427.3638 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,161.699643 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.166017304 +GA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,6390.048851 +GA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3702.783875 +GA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,97192.5508 +GA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,628.612257 +GA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4158.163939 +GA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4404.306629 +GA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,356.3619518 +GA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,160.5612895 +GA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,47357.89914 +GA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,121.8938084 +GA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16900.05146 +GA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1742.432922 +GA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,274.656345 +GA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15964.83759 +GA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.171634978 +GA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5080.071304 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,628.7861209 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.938699893 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1313.135216 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.059635148 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.420798181 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2701.701459 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1367.656074 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1214.476833 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,90.62848143 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1133.159275 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2068.785828 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,661.290162 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4.913999225 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,3.645000544 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6983.251908 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2231.497564 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,67.48597002 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.044683466 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,43.46745 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,512.6237559 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1019.089404 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2279.703234 +GA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,Nitrogen Oxides,2A1_Cement-production,,TON,964.2 +GA,Nitrogen Oxides,2A6_Other-minerals,,TON,5387.1457 +GA,Nitrogen Oxides,2A6_Other-minerals,Gasoline,TON,0 +GA,Nitrogen Oxides,2B_Chemicals-other,,TON,794.1568 +GA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,92.7181 +GA,Nitrogen Oxides,2C3_Aluminum-production,,TON,71.0631 +GA,Nitrogen Oxides,2C5_Lead-production,Other_Fuel,TON,0.0383 +GA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.5818 +GA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.64 +GA,Nitrogen Oxides,2D3d_Coating-application,,TON,20.3952 +GA,Nitrogen Oxides,2D3h_Printing,,TON,0.87 +GA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,9649.331 +GA,Nitrogen Oxides,2H2_Ethanol Production,,TON,7.54 +GA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,3.655 +GA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,381.35566 +GA,Nitrogen Oxides,3B1a_Cattle-dairy,,TON,0 +GA,Nitrogen Oxides,3B1b_Cattle-non-dairy,,TON,0 +GA,Nitrogen Oxides,3B2_Manure-sheep,,TON,0 +GA,Nitrogen Oxides,3B3_Manure-swine,,TON,0 +GA,Nitrogen Oxides,3B4_Manure-other,,TON,0 +GA,Nitrogen Oxides,3B4_Manure-poultry,,TON,0 +GA,Nitrogen Oxides,3B4d_Manure-goats,,TON,0 +GA,Nitrogen Oxides,3Da1_Inorganic-N-fertilizers,,TON,0 +GA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1341.813273 +GA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,213.124 +GA,Nitrogen Oxides,5C_Incineration,,TON,0 +GA,Nitrogen Oxides,5C_Incineration,biomass,TON,69.94718985 +GA,Nitrogen Oxides,5C_Open-burning-commercial,,TON,41.2 +GA,Nitrogen Oxides,5C_Open-burning-dump,,TON,0.4 +GA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,6150.748 +GA,Nitrogen Oxides,5C_Open-burning-residential,,TON,847.738097 +GA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,61.2974053 +GA,Nitrogen Oxides,5D1_Wastewater-domestic,,TON,0 +GA,Nitrogen Oxides,5D3_Wastewater-commertial,Other_Fuel,TON,14.674 +GA,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.33 +GA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.593973759 +GA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1598.990222 +GA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.627993034 +GA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,90.86394684 +GA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.367628432 +GA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.540299889 +GA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.869071139 +GA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.302784506 +GA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.789609398 +GA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.516445338 +GA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.60355323 +GA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.926670342 +GA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,97.72848 +GA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.274646938 +GA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2653.2084 +GA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.406 +GA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,599.86833 +GA,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.1672 +GA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.66 +GA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0968478 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1606.555835 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,144.7400667 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,236.7573939 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.20658001 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.878565361 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,292.2045188 +GA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +GA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,5.0953 +GA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,328311.9907 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,42.80779041 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.881710079 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,66.22747489 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.202375783 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.817026469 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.26863063 +GA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1849.906021 +GA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.29483998 +GA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.218700089 +GA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,14.38478043 +GA,PM10 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,PM10 Filterable,2A1_Cement-production,,TON,159.8061211 +GA,PM10 Filterable,2A2_Lime-production,,TON,4.26 +GA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,17019.64555 +GA,PM10 Filterable,2A6_Other-minerals,,TON,9110.627216 +GA,PM10 Filterable,2A6_Other-minerals,Gasoline,TON,0 +GA,PM10 Filterable,2B_Chemicals-other,,TON,335.4888303 +GA,PM10 Filterable,2C_Iron-steel-alloy,,TON,36.05266477 +GA,PM10 Filterable,2C3_Aluminum-production,,TON,15.29223643 +GA,PM10 Filterable,2C5_Lead-production,Other_Fuel,TON,0.085 +GA,PM10 Filterable,2C6_Zinc-production,,TON,21.6925 +GA,PM10 Filterable,2C7_Other-metal,,TON,223.7835833 +GA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,7.684 +GA,PM10 Filterable,2D3d_Coating-application,,TON,47.5276 +GA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.113 +GA,PM10 Filterable,2H1_Pulp-and-paper,,TON,3266.843112 +GA,PM10 Filterable,2H2_Ethanol Production,,TON,5.031 +GA,PM10 Filterable,2H2_Food-and-beverage,,TON,758.9775019 +GA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1176.481113 +GA,PM10 Filterable,2I_Wood-processing,,TON,47.4619 +GA,PM10 Filterable,3B1a_Cattle-dairy,,TON,0 +GA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,17583.25666 +GA,PM10 Filterable,3B2_Manure-sheep,,TON,0 +GA,PM10 Filterable,3B3_Manure-swine,,TON,0 +GA,PM10 Filterable,3B4_Manure-other,,TON,0 +GA,PM10 Filterable,3B4_Manure-poultry,,TON,0 +GA,PM10 Filterable,3B4d_Manure-goats,,TON,0 +GA,PM10 Filterable,3Da1_Inorganic-N-fertilizers,,TON,0 +GA,PM10 Filterable,3Dc_Other-farm,,TON,33068.58543 +GA,PM10 Filterable,5A_Solid-waste-disposal,,TON,327.6441024 +GA,PM10 Filterable,5C_Incineration,,TON,0 +GA,PM10 Filterable,5C_Incineration,biomass,TON,4.683194924 +GA,PM10 Filterable,5C_Open-burning-commercial,,TON,229 +GA,PM10 Filterable,5C_Open-burning-dump,,TON,0.068 +GA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,20911.99 +GA,PM10 Filterable,5C_Open-burning-residential,,TON,3915.35367 +GA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,228.3875974 +GA,PM10 Filterable,5D1_Wastewater-domestic,,TON,0 +GA,PM10 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,3.12 +GA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.03 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,111.745 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,16.02125982 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3447.802187 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,5.02268 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1091.64513 +GA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.44 +GA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,1.32 +GA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.15 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,134.362596 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41.45539865 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.807731788 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1820.842233 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,153.4761075 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,450.898626 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,61.07420667 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.24598144 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,624.4757544 +GA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +GA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,13.2905 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1203.861363 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,82.77661863 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001755486 +GA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,303.5626066 +GA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,328311.9907 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,228.9937359 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5383.396474 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,47.81618704 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,370.9986982 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,324.7261293 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,17.04571983 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,6.003598894 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2378.986678 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.116881519 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1346.752524 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,86.10699174 +GA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.85973752 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,508.8023159 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.056249881 +GA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,159.0103081 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,40.72988535 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.684741062 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,60.12123766 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.192585276 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.604542287 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,63.99931378 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,123.7280475 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,98.5467519 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.115445228 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,80.61988647 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,876.8968823 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4696.798904 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.649739935 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.481949896 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,37.40043302 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,232.711742 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,40.73486307 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000227909 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.7605205 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,417.8939488 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.49105219 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,148.8415135 +GA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,264.604 +GA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,5.48123 +GA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17019.64555 +GA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9791.984343 +GA,PM10 Primary (Filt + Cond),2A6_Other-minerals,Gasoline,TON,0 +GA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,432.814022 +GA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,50.0065 +GA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,39.6375 +GA,PM10 Primary (Filt + Cond),2C5_Lead-production,Other_Fuel,TON,0.31298 +GA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,21.6925 +GA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,224.0212912 +GA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,31.504 +GA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,54.9538 +GA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.113 +GA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4484.682049 +GA,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,12.5686 +GA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3946.88896 +GA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1241.572395 +GA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,47.4619 +GA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,0 +GA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,17583.25666 +GA,PM10 Primary (Filt + Cond),3B2_Manure-sheep,,TON,0 +GA,PM10 Primary (Filt + Cond),3B3_Manure-swine,,TON,0 +GA,PM10 Primary (Filt + Cond),3B4_Manure-other,,TON,0 +GA,PM10 Primary (Filt + Cond),3B4_Manure-poultry,,TON,0 +GA,PM10 Primary (Filt + Cond),3B4d_Manure-goats,,TON,0 +GA,PM10 Primary (Filt + Cond),3Da1_Inorganic-N-fertilizers,,TON,0 +GA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,33080.84279 +GA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,5912.020671 +GA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,356.740893 +GA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0 +GA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.48489489 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,427.772 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.068 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,20912.5455 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3915.35367 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,228.3875974 +GA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +GA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,3.12 +GA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.03 +GA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,79.200453 +GA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.436684438 +GA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1518.2447 +GA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,3.238 +GA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,599.5958956 +GA,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.0952405 +GA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.66 +GA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0968478 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1247.202993 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,127.6768475 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,151.3063396 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.10951851 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.416857445 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,249.9143365 +GA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +GA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,4.292906 +GA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,36935.70381 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,32.71073936 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.961269124 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,37.88953288 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.167208883 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.813772335 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.43167115 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1845.476021 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.226589968 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.168075097 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.911631116 +GA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,PM2.5 Filterable,2A1_Cement-production,,TON,80.74260907 +GA,PM2.5 Filterable,2A2_Lime-production,,TON,1.46094118 +GA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1701.964555 +GA,PM2.5 Filterable,2A6_Other-minerals,,TON,4024.210179 +GA,PM2.5 Filterable,2A6_Other-minerals,Gasoline,TON,0 +GA,PM2.5 Filterable,2B_Chemicals-other,,TON,233.2375269 +GA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,19.90502213 +GA,PM2.5 Filterable,2C3_Aluminum-production,,TON,6.766680734 +GA,PM2.5 Filterable,2C5_Lead-production,Other_Fuel,TON,0.061 +GA,PM2.5 Filterable,2C6_Zinc-production,,TON,21.6342 +GA,PM2.5 Filterable,2C7_Other-metal,,TON,126.3918159 +GA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,4.4466882 +GA,PM2.5 Filterable,2D3d_Coating-application,,TON,46.60277609 +GA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.113 +GA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2454.840611 +GA,PM2.5 Filterable,2H2_Ethanol Production,,TON,3.911 +GA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,407.5777009 +GA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,777.7941662 +GA,PM2.5 Filterable,2I_Wood-processing,,TON,39.15484 +GA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,0 +GA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2905.218104 +GA,PM2.5 Filterable,3B2_Manure-sheep,,TON,0 +GA,PM2.5 Filterable,3B3_Manure-swine,,TON,0 +GA,PM2.5 Filterable,3B4_Manure-other,,TON,0 +GA,PM2.5 Filterable,3B4_Manure-poultry,,TON,0 +GA,PM2.5 Filterable,3B4d_Manure-goats,,TON,0 +GA,PM2.5 Filterable,3Da1_Inorganic-N-fertilizers,,TON,0 +GA,PM2.5 Filterable,3Dc_Other-farm,,TON,6667.050404 +GA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,64.284656 +GA,PM2.5 Filterable,5C_Incineration,,TON,0 +GA,PM2.5 Filterable,5C_Incineration,biomass,TON,3.513179924 +GA,PM2.5 Filterable,5C_Open-burning-commercial,,TON,175 +GA,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.068 +GA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,20911.99 +GA,PM2.5 Filterable,5C_Open-burning-residential,,TON,3585.64041 +GA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,176.0647135 +GA,PM2.5 Filterable,5D1_Wastewater-domestic,,TON,0 +GA,PM2.5 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,3.12 +GA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.03 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,93.217 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,13.18339717 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2312.603987 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3.85468 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1091.372696 +GA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.368041 +GA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,1.32 +GA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.15 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,130.3260875 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41.07434004 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.807517764 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1461.386772 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,141.1692737 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,365.4432082 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,53.06337952 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.784459127 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,610.1659662 +GA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,12.4881075 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1167.745468 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,76.20714063 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001755486 +GA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,275.7844188 +GA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,36935.70381 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,167.157793 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1811.512936 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,34.86042279 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,97.68599156 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,239.9851418 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.430989792 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.10808024 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1823.432034 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.358346813 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,938.2194997 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,28.56339631 +GA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.60388949 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,470.2391715 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.051850443 +GA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,148.6033375 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,29.52998612 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.793659626 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,33.1124341 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.14877841 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.653597568 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,70.86410287 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,120.0161961 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,90.95527604 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.115445228 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,78.2012917 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,806.7847822 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4591.931044 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.581489976 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.431325038 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,30.92726819 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,225.7303672 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,37.47614468 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000227909 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.5877065 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,384.464261 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.84632186 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,136.9341776 +GA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,185.5405441 +GA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,2.68217218 +GA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1701.964555 +GA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4705.56748 +GA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,Gasoline,TON,0 +GA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,333.1189003 +GA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,33.8588593 +GA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,31.1119447 +GA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,Other_Fuel,TON,0.28898 +GA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,21.6342 +GA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,126.6295235 +GA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,28.2666882 +GA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,54.02897609 +GA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.113 +GA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3672.519477 +GA,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,11.4486 +GA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3595.489466 +GA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,842.8856456 +GA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,39.15484 +GA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,0 +GA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2905.218104 +GA,PM2.5 Primary (Filt + Cond),3B2_Manure-sheep,,TON,0 +GA,PM2.5 Primary (Filt + Cond),3B3_Manure-swine,,TON,0 +GA,PM2.5 Primary (Filt + Cond),3B4_Manure-other,,TON,0 +GA,PM2.5 Primary (Filt + Cond),3B4_Manure-poultry,,TON,0 +GA,PM2.5 Primary (Filt + Cond),3B4d_Manure-goats,,TON,0 +GA,PM2.5 Primary (Filt + Cond),3Da1_Inorganic-N-fertilizers,,TON,0 +GA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,6679.307762 +GA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,4073.169286 +GA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,93.3814416 +GA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0 +GA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.31488389 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,373.772 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.068 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,20912.5455 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3585.64041 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,176.0647135 +GA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +GA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,3.12 +GA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.03 +GA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,158.581 +GA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,25.3003 +GA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,65016.414 +GA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,144.51 +GA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,157.0609 +GA,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.03 +GA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2.437 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.103116292 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.03770313 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.134338263 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1905.680396 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,334.1396076 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,5618.905193 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3784.978796 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,81.82413764 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2986.685269 +GA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.47 +GA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1.729 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,24.95351183 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.88649522 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.29831E-05 +GA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,743.746282 +GA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,8.459945677 +GA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1014.328267 +GA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.73137396 +GA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,74.14070035 +GA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.453092012 +GA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.238991517 +GA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.188241639 +GA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,78.65872038 +GA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.986791734 +GA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.3750128 +GA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15.58334842 +GA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.16339832 +GA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,9.487779594 +GA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007895891 +GA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1008.753681 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,100.6879927 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.3848249 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2662.010382 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,21.1800826 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,14.13509228 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.17872355 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.34122492 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.43972557 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.094067257 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.67637597 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,15.96210038 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,76.89022594 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,11.62980169 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,8.62650073 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,43.15433213 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.809549895 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.323761526 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.00495E-05 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.05974626 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.412563736 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.098126888 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.832544744 +GA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +GA,Sulfur Dioxide,2A1_Cement-production,,TON,499.21 +GA,Sulfur Dioxide,2A6_Other-minerals,,TON,1925.9624 +GA,Sulfur Dioxide,2A6_Other-minerals,Gasoline,TON,0 +GA,Sulfur Dioxide,2B_Chemicals-other,,TON,1057.125 +GA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,82.093 +GA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.2513 +GA,Sulfur Dioxide,2C5_Lead-production,Other_Fuel,TON,0.0001 +GA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0032 +GA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,20.35 +GA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.1649 +GA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,6576.2641 +GA,Sulfur Dioxide,2H2_Ethanol Production,,TON,0.0452 +GA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.9876 +GA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,37.886 +GA,Sulfur Dioxide,3B1a_Cattle-dairy,,TON,0 +GA,Sulfur Dioxide,3B1b_Cattle-non-dairy,,TON,0 +GA,Sulfur Dioxide,3B2_Manure-sheep,,TON,0 +GA,Sulfur Dioxide,3B3_Manure-swine,,TON,0 +GA,Sulfur Dioxide,3B4_Manure-other,,TON,0 +GA,Sulfur Dioxide,3B4_Manure-poultry,,TON,0 +GA,Sulfur Dioxide,3B4d_Manure-goats,,TON,0 +GA,Sulfur Dioxide,3Da1_Inorganic-N-fertilizers,,TON,0 +GA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,476.4036648 +GA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,75.0525 +GA,Sulfur Dioxide,5C_Incineration,,TON,0 +GA,Sulfur Dioxide,5C_Incineration,biomass,TON,7.529881145 +GA,Sulfur Dioxide,5C_Open-burning-commercial,,TON,12.2 +GA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,673.9677181 +GA,Sulfur Dioxide,5C_Open-burning-residential,,TON,141.2896583 +GA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,13.24461682 +GA,Sulfur Dioxide,5D1_Wastewater-domestic,,TON,0 +GA,Sulfur Dioxide,5D3_Wastewater-commertial,Other_Fuel,TON,0.725 +GA,Volatile Organic Compounds,11C_Other-natural,,TON,1779264.26 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,132.622 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.3295 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,680.6638 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.271 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,327.04 +GA,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,30.9899 +GA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,2.74 +GA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.06 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,177.8392962 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,328.7825523 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,58.87960025 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,749.4570713 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,136.9212863 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,16.31304563 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.069314252 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.393508149 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1189.125232 +GA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +GA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,7.8255 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1733.769525 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,757.4231236 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.129621996 +GA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1508.891144 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1352.820951 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,64979.19234 +GA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,168.1384201 +GA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2647.581262 +GA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,419.9967864 +GA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,168.5867631 +GA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,30.50214742 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3460.775944 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,33.29191404 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1707.597076 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,685.146958 +GA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1196.781415 +GA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,826.9062909 +GA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.881299206 +GA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,163.1374718 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,72.53138485 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.144820209 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.006823096 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.186776612 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,150.0536805 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,171.6805978 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3048.587296 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,50.74109999 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,113.3241118 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,12946.63198 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4909.683341 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.191099996 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.141750024 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,395.5813611 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,245.6462793 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,424.1221317 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.037189043 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.518902 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13416.95057 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,51.80246043 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,11204.48778 +GA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0021 +GA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,712.9082977 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,945.2103348 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1798.722595 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3061.02044 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,27614.31923 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.77 +GA,Volatile Organic Compounds,2A1_Cement-production,,TON,99.75 +GA,Volatile Organic Compounds,2A6_Other-minerals,,TON,62.54723973 +GA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,960.8250503 +GA,Volatile Organic Compounds,2B_Chemicals-other,,TON,1148.6565 +GA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,13.5229 +GA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,6.6542 +GA,Volatile Organic Compounds,2C7_Other-metal,,TON,51.4202 +GA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,44626.59616 +GA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,38.49 +GA,Volatile Organic Compounds,2D3d_Coating-application,,TON,27107.23284 +GA,Volatile Organic Compounds,2D3e_Degreasing,,TON,5277.743242 +GA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2657.44356 +GA,Volatile Organic Compounds,2D3h_Printing,,TON,716.1782 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,515.6123421 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,855.5981237 +GA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,14336.5897 +GA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,20.38 +GA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,5053.24274 +GA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3906.48131 +GA,Volatile Organic Compounds,2I_Wood-processing,,TON,72.41 +GA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,239.503 +GA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,291.689 +GA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0 +GA,Volatile Organic Compounds,3B3_Manure-swine,,TON,194.815 +GA,Volatile Organic Compounds,3B4_Manure-other,,TON,0 +GA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,3535.424 +GA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0 +GA,Volatile Organic Compounds,3Da1_Inorganic-N-fertilizers,,TON,0 +GA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,8155.840578 +GA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2631.301351 +GA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,132.6909 +GA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1541.9594 +GA,Volatile Organic Compounds,5C_Incineration,,TON,0 +GA,Volatile Organic Compounds,5C_Incineration,biomass,TON,10.04653613 +GA,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,104 +GA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.17 +GA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,14269.74 +GA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,816.236027 +GA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,257.2300864 +GA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,199.5632593 +GA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,542.06 +GA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.11 +GA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,12.7067601 +HI,Ammonia,1A1a_Public-Electricity,biomass,TON,1.72486775 +HI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,27.71836613 +HI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,27.42 +HI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,146.9838588 +HI,Ammonia,1A1a_Public-Electricity,light_oil,TON,22.85 +HI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.002619364 +HI,Ammonia,1A1b_Pet-refining,natural_gas,TON,15.57966438 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.256058952 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.00463429 +HI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.11313 +HI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.7159082 +HI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.889791 +HI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00453776 +HI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,2.539488 +HI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.24921195 +HI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.213602224 +HI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.057122223 +HI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.8551351 +HI,Ammonia,1A3bii_Road-LDV,light_oil,TON,272.7536518 +HI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.485218 +HI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.06868309 +HI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.96801123 +HI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.322790448 +HI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.1022055 +HI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.2587845 +HI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.010849415 +HI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.376899 +HI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.78879273 +HI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.024995 +HI,Ammonia,1A3c_Rail,diesel_oil,TON,0.0011801 +HI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.406577442 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,5.06183E-06 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.005085598 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.302390041 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.61095164 +HI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.154623329 +HI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.572491561 +HI,Ammonia,1A4bi_Residential-stationary,biomass,TON,26.32513268 +HI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,6.0339859 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.145240665 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.003718493 +HI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00593719 +HI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.07166952 +HI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.102963934 +HI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.586786 +HI,Ammonia,2D3d_Coating-application,,TON,0.003185899 +HI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.002 +HI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,3804.1 +HI,Ammonia,3F_Ag-res-on-field,,TON,2551.14 +HI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,43.2296 +HI,Ammonia,5D1_Wastewater-domestic,,TON,3.830240835 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31538.88832 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12597.07177 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,712.4973551 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,272512.7041 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4778.897422 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.349096 +HI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,70498.73455 +HI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4045400.35 +HI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,53999.48951 +HI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,690416.654 +HI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,114799.3529 +HI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,9547.488083 +HI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3946.301306 +HI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,19660.45805 +HI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,475.451284 +HI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,432601.7168 +HI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,108918.4317 +HI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,49153.63579 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,37187.7519 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,51153.60107 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2328.18861 +HI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,19026.48885 +HI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,117518.3656 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17877.63262 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,280.447746 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01643605 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,727.811 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5442.34482 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12679.1243 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,41793.447 +HI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,53.95425259 +HI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,603.1228501 +HI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,161.5346 +HI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,510.8637726 +HI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,118.448 +HI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,0.065507552 +HI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,243.5015055 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,778.6325208 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,468.047837 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,29.62055486 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,3577.009209 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.90153613 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,53.8161013 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.016433357 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,10.86325019 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,10.97328311 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,866.4969635 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1012.704234 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.07843022 +HI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4509.573686 +HI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,688.3798865 +HI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,74909.1186 +HI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,431.1153515 +HI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14319.52482 +HI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,266.1556263 +HI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,596.7254146 +HI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,22.12609662 +HI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,35.52824185 +HI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,32.71843061 +HI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,786.5688821 +HI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3829.309062 +HI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1814.947167 +HI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,0.37718 +HI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,142.9199263 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.00060742 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.122 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.86233887 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,159.881146 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,11107.54067 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,48.7556037 +HI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,64.64526173 +HI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,27399.74353 +HI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4444.165703 +HI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,28.338244 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,62.53401056 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,60.3171237 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001821815 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.75925 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,1476.219218 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.1514969 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4837.524 +HI,Carbon Monoxide,2D3d_Coating-application,,TON,0.546426146 +HI,Carbon Monoxide,2H2_Food-and-beverage,,TON,257.931195 +HI,Carbon Monoxide,3F_Ag-res-on-field,,TON,6933.87 +HI,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.28253 +HI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.023824817 +HI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,8208.866 +HI,Carbon Monoxide,5C_Open-burning-residential,,TON,562.022077 +HI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,65.4072473 +HI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.109594737 +HI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.86912258 +HI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.456413096 +HI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,9.170177313 +HI,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.678527852 +HI,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.05451367 +HI,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.902781147 +HI,Methane,1A3bii_Road-LDV,light_oil,TON,189.1317799 +HI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.248132271 +HI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,39.00973313 +HI,Methane,1A3biii_Road-bus,diesel_oil,TON,3.001249973 +HI,Methane,1A3biii_Road-bus,light_oil,TON,1.25996184 +HI,Methane,1A3biii_Road-bus,natural_gas,TON,22.30226014 +HI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.373438223 +HI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.066607541 +HI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.15321926 +HI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.22428971 +HI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.102428798 +HI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.202843258 +HI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,37.24136296 +HI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,31.8009736 +HI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.67802549 +HI,Methane,1A4bi_Residential-mobile,light_oil,TON,107.4863289 +HI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.497466997 +HI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.256853816 +HI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001567983 +HI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.03140018 +HI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,4.4817568 +HI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.329285833 +HI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,43.052871 +HI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,825.815984 +HI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,4325.733038 +HI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,902.732 +HI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,14315.5416 +HI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,216.98 +HI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,0.113458859 +HI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1185.278457 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,264.398625 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,59.43407363 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.057072407 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,398.5600424 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,120.3833421 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,351.8552222 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.383438441 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,76.51614997 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,78.24162296 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1564.289454 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.06462279 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.01509247 +HI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3249.18701 +HI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,185.2034232 +HI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7673.83014 +HI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,180.6705001 +HI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1482.56611 +HI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,615.4136205 +HI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,35.21301204 +HI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,13.200551 +HI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,86.70197204 +HI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,1.950828605 +HI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1463.54055 +HI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,257.9214765 +HI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,80.29312677 +HI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,3.83073 +HI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1130.585085 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.00022272 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.735 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.47020576 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,291.886008 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,145.6478767 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.30234644 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,150.8653182 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,250.3843125 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,81.96811412 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,86.213602 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,134.1902762 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.193936133 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000407179 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.24931 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,12.36419 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,132.914033 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,287.31908 +HI,Nitrogen Oxides,2D3d_Coating-application,,TON,0.650059329 +HI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +HI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,359.386 +HI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,5.062768132 +HI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,242.86636 +HI,Nitrogen Oxides,5C_Open-burning-residential,,TON,39.6721508 +HI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.90699122 +HI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.258155949 +HI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,215.132664 +HI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.205208209 +HI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,38.03525879 +HI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.291912571 +HI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.558730543 +HI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.214700589 +HI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.034766134 +HI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.03868817 +HI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.202251761 +HI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.914751297 +HI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.598681427 +HI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,2.68810332 +HI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,184.0745897 +HI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,12.7251 +HI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,964.90914 +HI,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,14 +HI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.00174624 +HI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,62.81865032 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,151.277 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.12991877 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,41.9 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.04 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.465559029 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.140307798 +HI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,39917.521 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.000506183 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.688 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.085615968 +HI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.14156202 +HI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,10358.689 +HI,PM10 Filterable,2A6_Other-minerals,,TON,519.6539772 +HI,PM10 Filterable,2D3d_Coating-application,,TON,0.012303784 +HI,PM10 Filterable,2H2_Food-and-beverage,,TON,50.5222222 +HI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,113.97714 +HI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,1522.3214 +HI,PM10 Filterable,3Dc_Other-farm,,TON,101.2073 +HI,PM10 Filterable,5C_Incineration,biomass,TON,2.2 +HI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,825.7443 +HI,PM10 Filterable,5C_Open-burning-residential,,TON,183.229317 +HI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,10.83113342 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.5736892 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,255.5243571 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,21.17297 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1558.43605 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,21.98 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.00603234 +HI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,93.62259939 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.28556934 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.091326869 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.141411156 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,186.704 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,10.386388 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,58.2 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.06 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.4810293 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4.01618 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,133.1653603 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.404098905 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +HI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,143.4565754 +HI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,39917.521 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,12.50912388 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,442.1902376 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.78860218 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,69.81368316 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,54.27614766 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.58168528 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.657271152 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.033718372 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.061745518 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,148.7224814 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,13.49482166 +HI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.024328896 +HI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,0.0942949 +HI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,37.0158706 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.000523393 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.688 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.144243375 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.94165004 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.22737305 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.293818044 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.73311854 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,116.9872116 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,564.202882 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.36806093 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.82128332 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.04484578 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.07716E-06 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.830644 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.69686613 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.80289949 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,19.40996 +HI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,10358.689 +HI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,523.3376992 +HI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.049354146 +HI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,676.218541 +HI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,156.44713 +HI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1522.3214 +HI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,101.2073 +HI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,582.795 +HI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.533972786 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,825.7443 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,183.229317 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,10.83113342 +HI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,2.26421306 +HI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,170.7273109 +HI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,6.36256 +HI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,768.45967 +HI,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,13.38 +HI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.00174624 +HI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,43.60238932 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,130.504 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.94074051 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,36.9 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.02669329 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.372699095 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.8221243 +HI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4125.8445 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.000435317 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.688 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.085605087 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.077859103 +HI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1035.8689 +HI,PM2.5 Filterable,2A6_Other-minerals,,TON,80.85642494 +HI,PM2.5 Filterable,2D3d_Coating-application,,TON,0.012303784 +HI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.7395609 +HI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,94.73305 +HI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,314.4167 +HI,PM2.5 Filterable,3Dc_Other-farm,,TON,20.24146 +HI,PM2.5 Filterable,5C_Incineration,biomass,TON,2.2 +HI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,636.566 +HI,PM2.5 Filterable,5C_Open-burning-residential,,TON,167.7999 +HI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,8.34975693 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.1555931 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,242.3673453 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,14.81043 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1362.00643 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,21.35 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.00603234 +HI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,74.40641939 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.77900484 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.0530486 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.138981144 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,165.931 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,9.0972099 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,53.1 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.0466933 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.3777326 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3.94974 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,129.1703118 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.816485257 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +HI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,133.8459244 +HI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4125.8445 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,7.812938795 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,120.9391674 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.109260487 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.71237474 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,37.81813684 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.497604556 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.184685346 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.385949262 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.032985882 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,93.14100732 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.272310035 +HI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.403315677 +HI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,0.0867513 +HI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,34.51593453 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.000452528 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.688 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.144234545 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.16339302 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.20841689 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.293818044 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.41113713 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,107.6334907 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,551.6410355 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.30435791 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.49664289 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.041258112 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.07716E-06 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.805724 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.64138513 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.71881947 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,17.857173 +HI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1035.8689 +HI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,84.55490084 +HI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.049354146 +HI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,627.436311 +HI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,137.20304 +HI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,314.4167 +HI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,20.24146 +HI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,515.475 +HI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.533972786 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,636.566 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,167.7999 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,8.34975693 +HI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,29.29876 +HI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,750.8670872 +HI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,2224.94 +HI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,15242.9 +HI,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,47.73 +HI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.00074313 +HI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,463.7583363 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.572852942 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.579488607 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.040263865 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,22.75381195 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.03504791 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,198.3157924 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.510120255 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.2381E-05 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.096212302 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.021852441 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.079298044 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54391E-06 +HI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,333.5326408 +HI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.606919426 +HI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,80.55333124 +HI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.467884369 +HI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.74322306 +HI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.996339984 +HI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.190284431 +HI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.020893622 +HI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.169639841 +HI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.009475878 +HI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.710727755 +HI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.170777795 +HI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.979646013 +HI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.0013301 +HI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,229.4602215 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.53091E-05 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.347 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.027224306 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.434558499 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.864541991 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.013043463 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.223191205 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.133181958 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,8.467558026 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,0.42468591 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.206146402 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.005113394 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.15702E-08 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00859795 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.09873816 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.404061362 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.7606023 +HI,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,167.332 +HI,Sulfur Dioxide,2D3d_Coating-application,,TON,0.003901093 +HI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +HI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,196.913 +HI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.780687957 +HI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,80.63145 +HI,Sulfur Dioxide,5C_Open-burning-residential,,TON,6.61201979 +HI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.628118227 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,4.59207267 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,112.2763282 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,2.116681 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,79.9209499 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,4.02 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.006905428 +HI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,489.5730408 +HI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1581.126274 +HI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,94.62608253 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,38.6380067 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14.51715924 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.221748182 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,159.9522791 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.2245124 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,3.8 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00136227 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.559441346 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1.414819261 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,174.2347506 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,70.62232376 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.01178383 +HI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,811.6089749 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,59.70697665 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7454.55893 +HI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,47.08237484 +HI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1131.618598 +HI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,72.45040887 +HI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,38.9167334 +HI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.36645101 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.520125603 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,1.554322139 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,155.6409621 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,192.5961279 +HI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,312.7437255 +HI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,0.148939 +HI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,35.02251741 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.72102E-05 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.183 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.18308541 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36.7662028 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,449.1010798 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.87418068 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,15.08721923 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1843.45435 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,608.1378977 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,3.8929567 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.24526734 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.823723151 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000338939 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.516019 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,43.4274751 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.75582598 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1625.249502 +HI,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.943717 +HI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,151.6079 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,230.8600097 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,70.02292872 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,368.9915742 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3652.993727 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,289.5712 +HI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,151.15798 +HI,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,4.0200211 +HI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,6291.12745 +HI,Volatile Organic Compounds,2D3d_Coating-application,,TON,2638.997544 +HI,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,448.3897 +HI,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,4.525 +HI,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,834.9015 +HI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +HI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +HI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,90.2488426 +HI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7.621305 +HI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,533.587 +HI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,305.8821 +HI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.017719667 +HI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,563.4493 +HI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,38.1979621 +HI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,12.19898687 +HI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,19.2912113 +HI,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,14.3395 +IA,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +IA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.437669 +IA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,55.88369 +IA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.04 +IA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,16.2901406 +IA,Ammonia,1A1b_Pet-refining,natural_gas,TON,0.01 +IA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.698909358 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.084727664 +IA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.958628476 +IA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.963174776 +IA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,208.6403138 +IA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.050591491 +IA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.016231433 +IA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,277.7781568 +IA,Ammonia,1A2c_Chemicals,diesel_oil,TON,0 +IA,Ammonia,1A2c_Chemicals,heavy_oil,TON,0 +IA,Ammonia,1A2c_Chemicals,natural_gas,TON,16.81 +IA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,7.935652705 +IA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.204699441 +IA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.23143061 +IA,Ammonia,1A3bii_Road-LDV,light_oil,TON,987.5576105 +IA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.5836483 +IA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.30805908 +IA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.592309949 +IA,Ammonia,1A3biii_Road-bus,light_oil,TON,1.492647258 +IA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,67.06178332 +IA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.301493931 +IA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.3775775 +IA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.390268057 +IA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.23973669 +IA,Ammonia,1A3c_Rail,diesel_oil,TON,11.6171551 +IA,Ammonia,1A3c_Rail,light_oil,TON,0.004162556 +IA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.345695265 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.86699247 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.295342959 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.35 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016550372 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.26992331 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.827472906 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.67204077 +IA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.195381196 +IA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.744933848 +IA,Ammonia,1A4bi_Residential-stationary,biomass,TON,282.7186453 +IA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.835000405 +IA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.080999982 +IA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,770.012889 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,31.89838064 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.801749477 +IA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.014184831 +IA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.227750193 +IA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.335375697 +IA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.957703437 +IA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +IA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0.01 +IA,Ammonia,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.03 +IA,Ammonia,2A1_Cement-production,,TON,5.56 +IA,Ammonia,2A2_Lime-production,,TON,0 +IA,Ammonia,2A6_Other-minerals,,TON,2177.259 +IA,Ammonia,2B_Chemicals-other,,TON,0 +IA,Ammonia,2C_Iron-steel-alloy,,TON,11.253 +IA,Ammonia,2C3_Aluminum-production,,TON,1.44 +IA,Ammonia,2C6_Zinc-production,,TON,0 +IA,Ammonia,2C7_Other-metal,,TON,0 +IA,Ammonia,2C7a_Copper-production,,TON,0.047 +IA,Ammonia,2D3d_Coating-application,,TON,0.2 +IA,Ammonia,2D3e_Degreasing,,TON,0 +IA,Ammonia,2D3f_Dry-cleaning,,TON,0 +IA,Ammonia,2D3h_Printing,,TON,0.05 +IA,Ammonia,2D3i_Other-solvent-use,biomass,TON,0 +IA,Ammonia,2H1_Pulp-and-paper,,TON,0 +IA,Ammonia,2H2_Biodiesel Production,,TON,0 +IA,Ammonia,2H2_Ethanol Production,,TON,85.8 +IA,Ammonia,2H2_Food-and-beverage,,TON,73.453555 +IA,Ammonia,2H3_Other-industrial-processes,,TON,0 +IA,Ammonia,2I_Wood-processing,,TON,0 +IA,Ammonia,3B1a_Cattle-dairy,,TON,4675.68 +IA,Ammonia,3B1b_Cattle-non-dairy,,TON,31562.78 +IA,Ammonia,3B2_Manure-sheep,,TON,730.71504 +IA,Ammonia,3B3_Manure-swine,,TON,195015.565 +IA,Ammonia,3B4_Manure-other,,TON,967.4148 +IA,Ammonia,3B4_Manure-poultry,,TON,10543.66433 +IA,Ammonia,3B4d_Manure-goats,,TON,390.529392 +IA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,29366.8611 +IA,Ammonia,3Dc_Other-farm,,TON,0.05 +IA,Ammonia,3F_Ag-res-on-field,,TON,20.01 +IA,Ammonia,5A_Solid-waste-disposal,,TON,0 +IA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,94.223295 +IA,Ammonia,5C_Incineration,,TON,0 +IA,Ammonia,5C_Incineration,biomass,TON,0 +IA,Ammonia,5C_Open-burning-industrial,,TON,0 +IA,Ammonia,5D1_Wastewater-domestic,,TON,8.05 +IA,Ammonia,5D2_Wastewater-industrial,biomass,TON,0 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,209263.7673 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,234556.0754 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13219.8374 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,976944.9092 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,17130.65216 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.047285453 +IA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,420268.7286 +IA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12169236.79 +IA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,88093.564 +IA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,807002.012 +IA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,137870.0609 +IA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,38951.01798 +IA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3792094.642 +IA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,76459.29242 +IA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2016425.994 +IA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,114861.3743 +IA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,43663.1494 +IA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7320.06557 +IA,Carbon Dioxide,1A3c_Rail,light_oil,TON,325.020505 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,101762.3305 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,139989.5305 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6080.932621 +IA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,24041.92599 +IA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,204092.5531 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3926368.373 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,60463.38551 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,13.5665277 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1738.873 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,221341.0906 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,41298.61315 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,447160.2133 +IA,Carbon Monoxide,11C_Other-natural,,TON,65334.311 +IA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,53.08 +IA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.2092 +IA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,18332.1816 +IA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.01 +IA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,439.8798354 +IA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,4.868 +IA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1.81 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,633.1714328 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5721.406524 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,343.1017877 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,88.57151909 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.24528343 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3677.798719 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.400055685 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.926676619 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,7244.896215 +IA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +IA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +IA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,375.095 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3105.9677 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3480.515943 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.235290526 +IA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3305.620675 +IA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7957.619949 +IA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,285823.0561 +IA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,922.61655 +IA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20000.2789 +IA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,381.0470585 +IA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2188.741805 +IA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6327.481841 +IA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1851.59185 +IA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2849.3172 +IA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4675.232813 +IA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2811.45094 +IA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3744.755216 +IA,Carbon Monoxide,1A3c_Rail,light_oil,TON,73.580193 +IA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,250.5347738 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,228.7507993 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,89.05940143 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,734.9878846 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.320016495 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.099307312 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2438.910298 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,437.4963551 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,28759.65718 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,130.3712603 +IA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,81.3651436 +IA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,48026.13099 +IA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,43671.09205 +IA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,14.1750026 +IA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.404999987 +IA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1880.844188 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13723.92898 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12765.10117 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.50334021 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.738791 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,30112.75273 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,81.92448173 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,41860.53638 +IA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +IA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,71.26 +IA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.56 +IA,Carbon Monoxide,2A1_Cement-production,,TON,1614.68 +IA,Carbon Monoxide,2A2_Lime-production,,TON,0 +IA,Carbon Monoxide,2A6_Other-minerals,,TON,500.4721 +IA,Carbon Monoxide,2B_Chemicals-other,,TON,609.84 +IA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2355.70492 +IA,Carbon Monoxide,2C3_Aluminum-production,,TON,26.87 +IA,Carbon Monoxide,2C5_Lead-production,,TON,0 +IA,Carbon Monoxide,2C6_Zinc-production,,TON,0 +IA,Carbon Monoxide,2C7_Other-metal,,TON,0 +IA,Carbon Monoxide,2C7a_Copper-production,,TON,1.23 +IA,Carbon Monoxide,2D3d_Coating-application,,TON,5.8258 +IA,Carbon Monoxide,2D3e_Degreasing,,TON,0 +IA,Carbon Monoxide,2D3f_Dry-cleaning,,TON,0 +IA,Carbon Monoxide,2D3h_Printing,,TON,2.04 +IA,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,0 +IA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +IA,Carbon Monoxide,2H2_Biodiesel Production,,TON,0 +IA,Carbon Monoxide,2H2_Ethanol Production,,TON,1212.767 +IA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1408.583711 +IA,Carbon Monoxide,2H3_Other-industrial-processes,,TON,27.371 +IA,Carbon Monoxide,2I_Wood-processing,,TON,0 +IA,Carbon Monoxide,3Dc_Other-farm,,TON,12.37 +IA,Carbon Monoxide,3F_Ag-res-on-field,,TON,291.39 +IA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +IA,Carbon Monoxide,5C_Incineration,,TON,0.740320956 +IA,Carbon Monoxide,5C_Incineration,biomass,TON,19.86226955 +IA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0 +IA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,9862.81365 +IA,Carbon Monoxide,5C_Open-burning-residential,,TON,5356.109 +IA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,324.110536 +IA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,4.71 +IA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,17.78 +IA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.74844885 +IA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,34.88856033 +IA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,156.6182152 +IA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,32.87739623 +IA,Methane,1A2g_Construction_and_Mining,light_oil,TON,13.66949719 +IA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.163540912 +IA,Methane,1A3bii_Road-LDV,diesel_oil,TON,27.24610371 +IA,Methane,1A3bii_Road-LDV,light_oil,TON,883.6024599 +IA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.9007678 +IA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,74.36853879 +IA,Methane,1A3biii_Road-bus,diesel_oil,TON,4.316430277 +IA,Methane,1A3biii_Road-bus,light_oil,TON,5.060140986 +IA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,352.7257155 +IA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.322082421 +IA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,55.0644789 +IA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.7017346 +IA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.24010279 +IA,Methane,1A3c_Rail,diesel_oil,TON,0.314259377 +IA,Methane,1A3c_Rail,light_oil,TON,0.244311166 +IA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.291527854 +IA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,107.7613148 +IA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,85.78772191 +IA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.852462087 +IA,Methane,1A4bi_Residential-mobile,light_oil,TON,214.9035932 +IA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,109.2576319 +IA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,58.82875281 +IA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.293943389 +IA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07490112 +IA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,256.0847575 +IA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.072796116 +IA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,430.3722916 +IA,Nitrogen Oxides,11C_Other-natural,,TON,34153.897 +IA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +IA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,87.65836 +IA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,32100.112 +IA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.6 +IA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1117.510935 +IA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1.276 +IA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,3.05 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1051.079839 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,764.9927619 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,50.55270872 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,35.95288772 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,265.9633819 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3542.155754 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.50140344 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.43051312 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10038.07473 +IA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +IA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0 +IA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,498.42 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5608.277032 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,56.30404975 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045277423 +IA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,417.904014 +IA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1686.089863 +IA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,32818.40246 +IA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,317.264607 +IA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2160.845428 +IA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1107.104467 +IA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,239.4595681 +IA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22855.50859 +IA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,234.9731941 +IA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8912.45968 +IA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,409.5185861 +IA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,100.571099 +IA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,21546.94891 +IA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.991384041 +IA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2769.812918 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,105.5448311 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,410.6907244 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1916.193417 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.540577256 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.399343292 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2961.072601 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,798.7085201 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,496.7267189 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,33.09652977 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,190.6959297 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,542.4564192 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,646.5640098 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,51.0299983 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.458000094 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4830.94834 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29453.10831 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,324.0916308 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.336068537 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.940858 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,446.0171874 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,432.9127326 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2967.379982 +IA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +IA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,32.33 +IA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.67 +IA,Nitrogen Oxides,2A1_Cement-production,,TON,1601.45 +IA,Nitrogen Oxides,2A2_Lime-production,,TON,0 +IA,Nitrogen Oxides,2A6_Other-minerals,,TON,2065.3826 +IA,Nitrogen Oxides,2B_Chemicals-other,,TON,519.14 +IA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,725.202 +IA,Nitrogen Oxides,2C3_Aluminum-production,,TON,28.46 +IA,Nitrogen Oxides,2C5_Lead-production,,TON,0 +IA,Nitrogen Oxides,2C6_Zinc-production,,TON,0 +IA,Nitrogen Oxides,2C7_Other-metal,,TON,0 +IA,Nitrogen Oxides,2C7a_Copper-production,,TON,1.46 +IA,Nitrogen Oxides,2D3d_Coating-application,,TON,6.91077 +IA,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +IA,Nitrogen Oxides,2D3f_Dry-cleaning,,TON,0 +IA,Nitrogen Oxides,2D3h_Printing,,TON,2.41 +IA,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,0 +IA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,0 +IA,Nitrogen Oxides,2H2_Biodiesel Production,,TON,0 +IA,Nitrogen Oxides,2H2_Ethanol Production,,TON,1579.65 +IA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,416.6068 +IA,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,12.66 +IA,Nitrogen Oxides,2I_Wood-processing,,TON,0 +IA,Nitrogen Oxides,3Dc_Other-farm,,TON,45.98 +IA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,6.9 +IA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +IA,Nitrogen Oxides,5C_Incineration,,TON,0.9342177 +IA,Nitrogen Oxides,5C_Incineration,biomass,TON,28.8956224 +IA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0 +IA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,291.7990604 +IA,Nitrogen Oxides,5C_Open-burning-residential,,TON,378.07823 +IA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,14.4049145 +IA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,4.92 +IA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.52 +IA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.286273186 +IA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,662.7200597 +IA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.313516844 +IA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.67058536 +IA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.267179941 +IA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.55293241 +IA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.618491485 +IA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.313404874 +IA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.0313018 +IA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.562674588 +IA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.35792547 +IA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,3.49248 +IA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.135058217 +IA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2957.148303 +IA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.082935 +IA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,222.3024386 +IA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,20.5765956 +IA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.3876 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,70.61271888 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.988964194 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1019.695378 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.883523352 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.020373049 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,150.7890246 +IA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,11.28906231 +IA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,70237.8664 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,183.6760607 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.99376403 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,113.9571826 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.687433467 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021094172 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.878292218 +IA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.061800025 +IA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.087479994 +IA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.40151741 +IA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.29 +IA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.03228262 +IA,PM10 Filterable,2A1_Cement-production,,TON,182.4288417 +IA,PM10 Filterable,2A2_Lime-production,,TON,130.7853402 +IA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,24171.52641 +IA,PM10 Filterable,2A6_Other-minerals,,TON,4866.414296 +IA,PM10 Filterable,2B_Chemicals-other,,TON,85.69597191 +IA,PM10 Filterable,2C_Iron-steel-alloy,,TON,238.0860228 +IA,PM10 Filterable,2C3_Aluminum-production,,TON,98.43326011 +IA,PM10 Filterable,2C5_Lead-production,,TON,0 +IA,PM10 Filterable,2C6_Zinc-production,,TON,0 +IA,PM10 Filterable,2C7_Other-metal,,TON,81.89496982 +IA,PM10 Filterable,2C7a_Copper-production,,TON,51.454653 +IA,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0570324 +IA,PM10 Filterable,2D3d_Coating-application,,TON,170.5023195 +IA,PM10 Filterable,2D3e_Degreasing,,TON,0 +IA,PM10 Filterable,2D3f_Dry-cleaning,,TON,0 +IA,PM10 Filterable,2D3h_Printing,,TON,0.18 +IA,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Filterable,2H1_Pulp-and-paper,,TON,0 +IA,PM10 Filterable,2H2_Biodiesel Production,,TON,3.27 +IA,PM10 Filterable,2H2_Ethanol Production,,TON,373.6399 +IA,PM10 Filterable,2H2_Food-and-beverage,,TON,1462.189273 +IA,PM10 Filterable,2H3_Other-industrial-processes,,TON,325.0075636 +IA,PM10 Filterable,2I_Wood-processing,,TON,18.85 +IA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,62232.5513 +IA,PM10 Filterable,3Dc_Other-farm,,TON,163154.9674 +IA,PM10 Filterable,5A_Solid-waste-disposal,,TON,87.749544 +IA,PM10 Filterable,5C_Incineration,,TON,0.48824792 +IA,PM10 Filterable,5C_Incineration,biomass,TON,5.527223 +IA,PM10 Filterable,5C_Open-burning-industrial,,TON,0 +IA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,992.1169311 +IA,PM10 Filterable,5C_Open-burning-residential,,TON,1746.18791 +IA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,53.6711598 +IA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.3405848 +IA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.568643 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.79 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.1967684 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3296.41529 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.09 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,273.0579951 +IA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,20.62 +IA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.02 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,77.59751826 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.58277765 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.611821053 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,74.69877827 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,21.52447567 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1118.725021 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.0167723 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.046712519 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,307.4934608 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,29.16 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,477.2670989 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.52752943 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478769 +IA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,80.51402345 +IA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,70237.8664 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,96.78627543 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1840.214734 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23.0816108 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,114.7428848 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,68.80696911 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.547233361 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,975.10964 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.15069029 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,552.857842 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,18.93069335 +IA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.44533621 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,689.8631523 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041359965 +IA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,67.28489811 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,193.7847295 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.49549538 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,124.9269542 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.781268567 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.04842028 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.74537264 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,70.98722169 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,36.20179632 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.765623754 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,13.50525643 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,185.4069954 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6264.77809 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.74730074 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.19277998 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,24.4439473 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2374.960962 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.42729367 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001714126 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.9798767 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,276.716556 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.129819832 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,42.49980796 +IA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.29 +IA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.05 +IA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,190.135331 +IA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,160.620067 +IA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,24171.52641 +IA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4930.84195 +IA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,101.797 +IA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,358.31193 +IA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,100.605 +IA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +IA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +IA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,94.7585201 +IA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,54.859 +IA,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.21 +IA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,170.5023195 +IA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0 +IA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.18 +IA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +IA,PM10 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,3.27 +IA,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,485.613 +IA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2404.606604 +IA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,327.53017 +IA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,18.85 +IA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,62232.5513 +IA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,163158.804 +IA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,50.62 +IA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,97.2007 +IA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.610602931 +IA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.962418089 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,992.1169311 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1746.18791 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,53.6711598 +IA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.374 +IA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.66 +IA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,3.46248 +IA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.140289217 +IA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2091.350663 +IA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.082935 +IA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,181.5634377 +IA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,4.0765956 +IA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.3876 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,58.55739491 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.821564704 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,582.758435 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.567688369 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.005118526 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,143.9049377 +IA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,11.15906231 +IA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,8185.79338 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,156.6790363 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.74585639 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,55.7635287 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.416322386 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016129152 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.087687496 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.3530491 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.067229972 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.17083515 +IA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.29 +IA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.03228262 +IA,PM2.5 Filterable,2A1_Cement-production,,TON,79.26383778 +IA,PM2.5 Filterable,2A2_Lime-production,,TON,128.4953072 +IA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2417.152641 +IA,PM2.5 Filterable,2A6_Other-minerals,,TON,1522.174916 +IA,PM2.5 Filterable,2B_Chemicals-other,,TON,63.23697191 +IA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,166.9294686 +IA,PM2.5 Filterable,2C3_Aluminum-production,,TON,93.65326011 +IA,PM2.5 Filterable,2C5_Lead-production,,TON,0 +IA,PM2.5 Filterable,2C6_Zinc-production,,TON,0 +IA,PM2.5 Filterable,2C7_Other-metal,,TON,74.841596 +IA,PM2.5 Filterable,2C7a_Copper-production,,TON,44.3556527 +IA,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0570324 +IA,PM2.5 Filterable,2D3d_Coating-application,,TON,155.302221 +IA,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +IA,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0 +IA,PM2.5 Filterable,2D3h_Printing,,TON,0.09 +IA,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,0 +IA,PM2.5 Filterable,2H2_Biodiesel Production,,TON,0.36 +IA,PM2.5 Filterable,2H2_Ethanol Production,,TON,272.1599 +IA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,645.1735588 +IA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,247.3565634 +IA,PM2.5 Filterable,2I_Wood-processing,,TON,18.65 +IA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,9235.9757 +IA,PM2.5 Filterable,3Dc_Other-farm,,TON,32692.63635 +IA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,16.847544 +IA,PM2.5 Filterable,5C_Incineration,,TON,0.48824792 +IA,PM2.5 Filterable,5C_Incineration,biomass,TON,5.4272229 +IA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +IA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,764.8224001 +IA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1599.14084 +IA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,41.3752758 +IA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.3305848 +IA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.568643 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.76 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.2019994 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2430.617851 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.09 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,232.3189942 +IA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.12 +IA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.02 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,75.2619189 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.5063965 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.611519044 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,62.61629773 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,17.08822219 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,682.2321297 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.693258134 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.031385888 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,300.1150997 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,29.03 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,462.9488854 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.42226539 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478769 +IA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,66.63756623 +IA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8185.79338 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,72.38604085 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,916.2524623 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.4110453 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,55.18278465 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,55.4261275 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.282928069 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,776.8566298 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.875255763 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,403.309309 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,9.891822508 +IA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.85552728 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,636.8396569 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.038133186 +IA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,61.90210237 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,166.8119201 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.25455061 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,66.72877697 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.51014355 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043456948 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.95173177 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,68.85760449 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,33.41298665 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.765623754 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,13.10010007 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,170.5811213 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6219.305543 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.03855115 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.172530019 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,20.21326147 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2303.712289 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.43369344 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001714126 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.92048 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,254.5800243 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.855924977 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,39.09982766 +IA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.29 +IA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.05 +IA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,86.970331 +IA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,158.330034 +IA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2417.152641 +IA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1586.60257 +IA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,79.338 +IA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,287.15522 +IA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,95.825 +IA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,87.70514648 +IA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,47.76 +IA,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.21 +IA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,155.302221 +IA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.09 +IA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0.36 +IA,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,384.133 +IA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1587.590361 +IA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,249.87917 +IA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,18.65 +IA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9235.9757 +IA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,32696.473 +IA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,37.18 +IA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,26.2987 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.611714492 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.861306528 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,764.8224001 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1599.14084 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,41.3752758 +IA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.364 +IA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.66 +IA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.82582 +IA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,63412.811 +IA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.02 +IA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,3036.162623 +IA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.02 +IA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.2 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.624954213 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.320484658 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.079744467 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3.655729102 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.52830934 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,18118.6863 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.84154507 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.894778599 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,88.82545729 +IA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +IA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.8 +IA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,10.83298073 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.284196207 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.26317E-05 +IA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,53.67315161 +IA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.673318018 +IA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,226.4408638 +IA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.76375158 +IA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.02682357 +IA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.207677104 +IA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.724263192 +IA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.71035508 +IA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.420581419 +IA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.35079777 +IA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.134270232 +IA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.80982234 +IA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,13.1116873 +IA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005787938 +IA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.622953557 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,48.01533234 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.394904126 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2052.789634 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.044518982 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.881311741 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.60969693 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.189144427 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.366024879 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.034066871 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.281952862 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.708457526 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,165.168565 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,120.7709555 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,3.45060017 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,28.2045545 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,45.26948278 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.101376929 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.55833E-05 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.020539117 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.021764342 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.31611231 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.151804891 +IA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +IA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.1 +IA,Sulfur Dioxide,2A1_Cement-production,,TON,1527.3 +IA,Sulfur Dioxide,2A2_Lime-production,,TON,0 +IA,Sulfur Dioxide,2A6_Other-minerals,,TON,470.595 +IA,Sulfur Dioxide,2B_Chemicals-other,,TON,9.69 +IA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,273.347 +IA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.405 +IA,Sulfur Dioxide,2C5_Lead-production,,TON,0 +IA,Sulfur Dioxide,2C6_Zinc-production,,TON,0 +IA,Sulfur Dioxide,2C7_Other-metal,,TON,0 +IA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.009 +IA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.04026 +IA,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +IA,Sulfur Dioxide,2D3f_Dry-cleaning,,TON,0 +IA,Sulfur Dioxide,2D3h_Printing,,TON,0.009 +IA,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0 +IA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0 +IA,Sulfur Dioxide,2H2_Biodiesel Production,,TON,0 +IA,Sulfur Dioxide,2H2_Ethanol Production,,TON,176.26 +IA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1142.23148 +IA,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0.436 +IA,Sulfur Dioxide,2I_Wood-processing,,TON,0 +IA,Sulfur Dioxide,3Dc_Other-farm,,TON,20.72 +IA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.29 +IA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +IA,Sulfur Dioxide,5C_Incineration,,TON,0.687163401 +IA,Sulfur Dioxide,5C_Incineration,biomass,TON,3.069329859 +IA,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0 +IA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,96.8773688 +IA,Sulfur Dioxide,5C_Open-burning-residential,,TON,63.013029 +IA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.11248991 +IA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.831 +IA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,1.63 +IA,Volatile Organic Compounds,11C_Other-natural,,TON,230568.58 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.48 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.5782022 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,388.9151 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.07 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,32.3460328 +IA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,28.636913 +IA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.81 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,97.67385772 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,164.7250391 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,33.91065706 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,2.78808881 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.05765 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,45.06972992 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.051292703 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.044680514 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,645.6993246 +IA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +IA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +IA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,229.93 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,624.5457877 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,241.1457519 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.035351444 +IA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,204.3785454 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,738.8507436 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,28802.10588 +IA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,108.266738 +IA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1836.889024 +IA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,95.9676894 +IA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,104.568167 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1715.661165 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,75.27733406 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,630.136571 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,239.0574466 +IA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,794.09333 +IA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1112.342178 +IA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.975367591 +IA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,45.46271601 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,19.42762226 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.53798141 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,45.42900858 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.080015867 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006828385 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,159.6616377 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,100.6058337 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1072.092943 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.54408699 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,19.01691986 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3257.429658 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6514.654084 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.984500435 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.056700008 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,258.541752 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2687.73931 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,522.5446789 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.279701986 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.6150986 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9433.105514 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.00624192 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3729.542746 +IA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.143 +IA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,346.1715812 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,556.7751719 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,337.2151824 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4471.075145 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4931.43337 +IA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.16 +IA,Volatile Organic Compounds,2A1_Cement-production,,TON,205.66 +IA,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +IA,Volatile Organic Compounds,2A6_Other-minerals,,TON,88.67128018 +IA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,804.9657898 +IA,Volatile Organic Compounds,2B_Chemicals-other,,TON,3067.85027 +IA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,751.20759 +IA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,200.42 +IA,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +IA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.03 +IA,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +IA,Volatile Organic Compounds,2C7a_Copper-production,,TON,102.82 +IA,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,2.37 +IA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13807.30191 +IA,Volatile Organic Compounds,2D3d_Coating-application,,TON,11543.33764 +IA,Volatile Organic Compounds,2D3e_Degreasing,,TON,1460.46077 +IA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,0 +IA,Volatile Organic Compounds,2D3h_Printing,,TON,4512.6405 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2155.314862 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1441.3553 +IA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,0 +IA,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,4.2316 +IA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,1506.823 +IA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,7246.748294 +IA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1221.8971 +IA,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +IA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,375.417 +IA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,2534.283 +IA,Volatile Organic Compounds,3B3_Manure-swine,,TON,15658.495 +IA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,845.236 +IA,Volatile Organic Compounds,3Dc_Other-farm,,TON,163.14 +IA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7920.4884 +IA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,17.13 +IA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0 +IA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,666.702119 +IA,Volatile Organic Compounds,5C_Incineration,,TON,0.367782725 +IA,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.438256468 +IA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0 +IA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,676.9742796 +IA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,364.02882 +IA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,60.4491848 +IA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,75.98 +IA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +IA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,2.86 +IA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.05472 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.533891732 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.022269112 +ID,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,30.3534179 +ID,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.942288904 +ID,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,11.00155807 +ID,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.711229958 +ID,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.095774551 +ID,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.16332631 +ID,Ammonia,1A3bii_Road-LDV,light_oil,TON,557.5124717 +ID,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.92639271 +ID,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.73818421 +ID,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.781579491 +ID,Ammonia,1A3biii_Road-bus,light_oil,TON,1.304878252 +ID,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.014738279 +ID,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.17948502 +ID,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.457657823 +ID,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.799559 +ID,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.879481289 +ID,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.70703719 +ID,Ammonia,1A3c_Rail,diesel_oil,TON,4.196586008 +ID,Ammonia,1A3c_Rail,light_oil,TON,0.00197413 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.328312397 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.260156139 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.056364859 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.004040492 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.333182102 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.327052642 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.660733046 +ID,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.137389905 +ID,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.584146323 +ID,Ammonia,1A4bi_Residential-stationary,biomass,TON,53.70890563 +ID,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.00199881 +ID,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.69795 +ID,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.008678572 +ID,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,247.4140872 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.977305307 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.191023876 +ID,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006439123 +ID,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.216660713 +ID,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.209874406 +ID,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.19677627 +ID,Ammonia,2B_Chemicals-other,,TON,228.909766 +ID,Ammonia,2D3d_Coating-application,,TON,23.8208017 +ID,Ammonia,2D3h_Printing,Other_Fuel,TON,4.32289102 +ID,Ammonia,2H1_Pulp-and-paper,,TON,76.72066 +ID,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,1152.1503 +ID,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,16.813 +ID,Ammonia,3B1a_Cattle-dairy,,TON,32063.73067 +ID,Ammonia,3B1b_Cattle-non-dairy,,TON,17646.81634 +ID,Ammonia,3B2_Manure-sheep,,TON,810.000792 +ID,Ammonia,3B3_Manure-swine,,TON,101.1514275 +ID,Ammonia,3B4_Manure-other,,TON,828.9445 +ID,Ammonia,3B4_Manure-poultry,,TON,422.3919061 +ID,Ammonia,3B4d_Manure-goats,,TON,126.925867 +ID,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,15271.98986 +ID,Ammonia,3F_Ag-res-on-field,,TON,2331.54865 +ID,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,538.524681 +ID,Ammonia,5B_Compost-biogas,Other_Fuel,TON,34.84665 +ID,Ammonia,5C_Open-burning-residential,,TON,28.4150591 +ID,Ammonia,5C_Open-burning-yard-waste,,TON,5.18016118 +ID,Ammonia,5D1_Wastewater-domestic,,TON,4.48615406 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65761.67003 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,61615.86893 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3476.248504 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,456883.1058 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,8015.254576 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.698190877 +ID,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,560894.7882 +ID,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,6016158.023 +ID,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,63902.636 +ID,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,345398.0974 +ID,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,42131.5568 +ID,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,34262.33178 +ID,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,702.9961 +ID,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2140940.31 +ID,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,10839.57504 +ID,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1278014.7 +ID,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,158389.0777 +ID,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,45164.7909 +ID,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3478.09131 +ID,Carbon Dioxide,1A3c_Rail,light_oil,TON,154.2449205 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,40220.80951 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,55321.45151 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2434.998286 +ID,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,16906.02418 +ID,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,117814.4282 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,735774.3438 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,14145.80359 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.429545679 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,789.33906 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,218007.0627 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25844.21781 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,85239.7353 +ID,Carbon Monoxide,11C_Other-natural,,TON,159121.154 +ID,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,101.03 +ID,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.00311095 +ID,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,263.3851855 +ID,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,0.0662999 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,264.7901159 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1519.621362 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,91.27878788 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,5525.405684 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,96.73832679 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,310.7602127 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.03061003 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1065.200284 +ID,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,14.14238 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1452.648688 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1633.413461 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.156860332 +ID,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3771.18891 +ID,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,10100.86806 +ID,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,173489.6834 +ID,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,750.8681 +ID,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9738.267906 +ID,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,153.9457594 +ID,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2041.961267 +ID,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,11.131008 +ID,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3609.419627 +ID,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,238.6694069 +ID,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2442.9807 +ID,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5251.614064 +ID,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1964.12706 +ID,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1354.561055 +ID,Carbon Monoxide,1A3c_Rail,light_oil,TON,34.91797518 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,171.5961466 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.148621126 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.11308386 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.026098274 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,799.6915596 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,172.9081621 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,11428.39699 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,51.71899649 +ID,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,57.22525656 +ID,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,27539.24839 +ID,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,7771.019684 +ID,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,15.0100005 +ID,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,95.96813 +ID,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.043392861 +ID,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,594.8632891 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2513.94434 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3310.913966 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.269223595 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.2469208 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,26911.54838 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,51.2675751 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9723.65169 +ID,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,12.7903 +ID,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.7226515 +ID,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,4616.178 +ID,Carbon Monoxide,2A6_Other-minerals,,TON,148.5175523 +ID,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,556.0748102 +ID,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1168.9299 +ID,Carbon Monoxide,2H2_Food-and-beverage,,TON,1403.783142 +ID,Carbon Monoxide,3F_Ag-res-on-field,,TON,11523.99047 +ID,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,39.1715709 +ID,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.05341948 +ID,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,9945.394501 +ID,Carbon Monoxide,5C_Open-burning-residential,,TON,1379.99938 +ID,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,248.3640117 +ID,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.633654 +ID,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.169845485 +ID,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.160809067 +ID,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41.19206203 +ID,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,15.37471954 +ID,Methane,1A2g_Construction_and_Mining,light_oil,TON,6.37751375 +ID,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.109027405 +ID,Methane,1A3bii_Road-LDV,diesel_oil,TON,22.00617503 +ID,Methane,1A3bii_Road-LDV,light_oil,TON,433.2425706 +ID,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.70986206 +ID,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29.82742553 +ID,Methane,1A3biii_Road-bus,diesel_oil,TON,1.268669639 +ID,Methane,1A3biii_Road-bus,light_oil,TON,4.419593618 +ID,Methane,1A3biii_Road-bus,natural_gas,TON,9.3511477 +ID,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,205.7696588 +ID,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.377602096 +ID,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,44.4541072 +ID,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,11.48591519 +ID,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.02233997 +ID,Methane,1A3c_Rail,diesel_oil,TON,0.149230729 +ID,Methane,1A3c_Rail,light_oil,TON,0.11571315 +ID,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.300842394 +ID,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,42.28667689 +ID,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,33.91329061 +ID,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.599485661 +ID,Methane,1A4bi_Residential-mobile,light_oil,TON,121.4069164 +ID,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.54179475 +ID,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.39471754 +ID,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.231724069 +ID,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.034061724 +ID,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,267.2992419 +ID,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.671367481 +ID,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,88.46235293 +ID,Nitrogen Oxides,11C_Other-natural,,TON,15262.6181 +ID,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,85.8174 +ID,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0.0188839 +ID,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,104.8927088 +ID,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.469 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,350.1748588 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,202.181673 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13.4056592 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1902.841065 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,434.8942353 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2038.751366 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.340323065 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4133.878945 +ID,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,51.69677 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2622.682589 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,25.89872118 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.030184981 +ID,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,386.8370397 +ID,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2633.643221 +ID,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,22243.54234 +ID,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,283.03978 +ID,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1147.876119 +ID,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,390.005001 +ID,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,216.1845606 +ID,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,6.2538664 +ID,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13729.36547 +ID,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,32.51608525 +ID,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7121.07246 +ID,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,567.6720959 +ID,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,101.637008 +ID,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7858.478996 +ID,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.466190421 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,58.083005 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.74850696 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,20.53886895 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.096871928 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,902.0449123 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,315.6905869 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,190.6740854 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.09801392 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,134.1261455 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,303.8377345 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,146.0587414 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,54.0360033 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,3.175673 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.156214288 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1518.550597 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5408.904822 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,68.44087239 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.060184386 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.7766716 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,433.678652 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,270.9096209 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,644.5189733 +ID,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.11996 +ID,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.1861117 +ID,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,41.53385 +ID,Nitrogen Oxides,2A6_Other-minerals,,TON,4.690042 +ID,Nitrogen Oxides,2B_Chemicals-other,,TON,418.1536424 +ID,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,687.71998 +ID,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,354.11836 +ID,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,7.21729 +ID,Nitrogen Oxides,3F_Ag-res-on-field,,TON,467.8324514 +ID,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,11.36441 +ID,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,294.2424891 +ID,Nitrogen Oxides,5C_Open-burning-residential,,TON,97.411713 +ID,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,10.82157402 +ID,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.7015 +ID,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.70290286 +ID,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,422.680497 +ID,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.223608431 +ID,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.82038161 +ID,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.112428581 +ID,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.608855548 +ID,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.035723404 +ID,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.141261924 +ID,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.311961755 +ID,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.60493512 +ID,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.830980956 +ID,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.649727036 +ID,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,50.4387 +ID,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.001043011 +ID,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,23.55508012 +ID,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.00798 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2297.430506 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.85928704 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,351.7653055 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.039009394 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,39.98574967 +ID,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.72693 +ID,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,173849.368 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,147.9700264 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.668920318 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,25.67452726 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.005849594 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.874686212 +ID,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,4325.59 +ID,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.86781331 +ID,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,2.24898762 +ID,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.008999377 +ID,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.755613798 +ID,PM10 Filterable,2A2_Lime-production,Other_Fuel,TON,8.450338 +ID,PM10 Filterable,2A5b_Construction-and-demolition,,TON,14567.37918 +ID,PM10 Filterable,2A6_Other-minerals,,TON,3741.19141 +ID,PM10 Filterable,2B_Chemicals-other,,TON,312.3155353 +ID,PM10 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,3.6999 +ID,PM10 Filterable,2D3d_Coating-application,,TON,0.02574999 +ID,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.59908E-06 +ID,PM10 Filterable,2H1_Pulp-and-paper,,TON,345.632859 +ID,PM10 Filterable,2H2_Food-and-beverage,,TON,897.8270535 +ID,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,46.88748426 +ID,PM10 Filterable,2I_Wood-processing,,TON,12.9385 +ID,PM10 Filterable,3B1a_Cattle-dairy,,TON,1337.216327 +ID,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,31581.47469 +ID,PM10 Filterable,3B2_Manure-sheep,,TON,0.134202989 +ID,PM10 Filterable,3B3_Manure-swine,,TON,27.36766238 +ID,PM10 Filterable,3B4_Manure-other,,TON,393.04 +ID,PM10 Filterable,3B4_Manure-poultry,,TON,24.52888807 +ID,PM10 Filterable,3B4d_Manure-goats,,TON,0.01160896 +ID,PM10 Filterable,3Dc_Other-farm,,TON,103607.4342 +ID,PM10 Filterable,5C_Incineration,Other_Fuel,TON,0.64165 +ID,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1000.424479 +ID,PM10 Filterable,5C_Open-burning-residential,,TON,449.69 +ID,PM10 Filterable,5C_Open-burning-yard-waste,,TON,39.03942486 +ID,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.414946005 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,52.1536 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.0011218 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,42.83888557 +ID,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.021 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.78130365 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.517996187 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.428102379 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2415.787195 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,31.50750941 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,383.6310687 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.039918033 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,79.50033571 +ID,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.99434 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,223.2136417 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,12.40646272 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +ID,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,95.05694213 +ID,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,173849.5129 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,150.4198772 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,890.2643071 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,20.1510255 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.47601628 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,26.70041098 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.797103042 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.169376308 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,601.4024566 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.519665381 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,478.53277 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,23.43635765 +ID,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.77232897 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,250.8401373 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019620593 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,154.8844512 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.712791044 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,27.62816866 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.013327454 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.189382829 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.0552823 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,14.3010614 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.306866009 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.497996051 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,114.649737 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1015.782709 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.14475923 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,2.5265792 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.020654996 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.731153818 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,435.8348732 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.6910399 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000306972 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.9010919 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,305.3261829 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.713412987 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,39.58735272 +ID,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.033358083 +ID,PM10 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,10.979697 +ID,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,14567.93839 +ID,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3741.3199 +ID,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,328.2119229 +ID,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,3.6999 +ID,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.02574999 +ID,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.59908E-06 +ID,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,425.8311553 +ID,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,946.1916979 +ID,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,46.88748426 +ID,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,12.9385 +ID,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1337.548056 +ID,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,36347.23974 +ID,PM10 Primary (Filt + Cond),3B2_Manure-sheep,,TON,0.147889889 +ID,PM10 Primary (Filt + Cond),3B3_Manure-swine,,TON,27.76480838 +ID,PM10 Primary (Filt + Cond),3B4_Manure-other,,TON,393.2096 +ID,PM10 Primary (Filt + Cond),3B4_Manure-poultry,,TON,24.98240337 +ID,PM10 Primary (Filt + Cond),3B4d_Manure-goats,,TON,0.01160896 +ID,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,103607.8415 +ID,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1607.403528 +ID,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.74923 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1000.424479 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,449.904747 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,39.67614106 +ID,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.456897005 +ID,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,43.1442 +ID,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.001039761 +ID,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,23.55508012 +ID,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.00798 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1975.912595 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.71253792 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,141.5615755 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.038010304 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,34.9407904 +ID,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.72693 +ID,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,15997.2668 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,130.9906652 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.603383971 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.265589147 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.004617956 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.016581086 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,4307.54 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.17110788 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.39138434 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.006829747 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.493698659 +ID,PM2.5 Filterable,2A2_Lime-production,Other_Fuel,TON,4.226646 +ID,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1456.952408 +ID,PM2.5 Filterable,2A6_Other-minerals,,TON,556.2169131 +ID,PM2.5 Filterable,2B_Chemicals-other,,TON,256.3889715 +ID,PM2.5 Filterable,2C_Iron-steel-alloy,Other_Fuel,TON,0.908325 +ID,PM2.5 Filterable,2D3d_Coating-application,,TON,0.02424999 +ID,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.59908E-06 +ID,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,220.0174358 +ID,PM2.5 Filterable,2H2_Food-and-beverage,,TON,675.7142578 +ID,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,44.5996248 +ID,PM2.5 Filterable,2I_Wood-processing,,TON,2.24595 +ID,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,267.212239 +ID,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,6162.142522 +ID,PM2.5 Filterable,3B2_Manure-sheep,,TON,0.029577984 +ID,PM2.5 Filterable,3B3_Manure-swine,,TON,5.348904523 +ID,PM2.5 Filterable,3B4_Manure-other,,TON,78.44 +ID,PM2.5 Filterable,3B4_Manure-poultry,,TON,4.907480539 +ID,PM2.5 Filterable,3B4d_Manure-goats,,TON,0.002321792 +ID,PM2.5 Filterable,3Dc_Other-farm,,TON,19632.43111 +ID,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,0.64165 +ID,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,771.2278366 +ID,PM2.5 Filterable,5C_Open-burning-residential,,TON,411.85 +ID,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,35.00942486 +ID,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.414946005 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,44.8591 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.00111855 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,42.83888557 +ID,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.021 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.03110297 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.4950195 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.427817628 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2094.31296 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,28.30587598 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,173.4162722 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.038919372 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,76.81361611 +ID,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.99434 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,216.5172472 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,11.42185527 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +ID,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,78.47385663 +ID,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,15997.50851 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,115.8148523 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,436.0141506 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.8811076 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,21.49097365 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,21.18665416 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.800821071 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.099210251 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,460.5052988 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.455815995 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,346.724996 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.939242825 +ID,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.39850944 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,231.3938489 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.018090613 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,137.5901657 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.665620171 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.311619132 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.012288913 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.401350314 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27.21362638 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.19940524 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.306866009 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.213052012 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,105.4824169 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,997.7646134 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.3942622 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.6890392 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.018485365 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.393070426 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,422.7599508 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,15.35586187 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000306972 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.8740605 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,280.9003807 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.542004877 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,36.42034694 +ID,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.033358083 +ID,PM2.5 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,6.756006 +ID,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1457.583358 +ID,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,556.3686451 +ID,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,272.2853564 +ID,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,Other_Fuel,TON,0.908325 +ID,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.02424999 +ID,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.59908E-06 +ID,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,300.2741799 +ID,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,724.1006512 +ID,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,44.5996248 +ID,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.24595 +ID,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,267.5095571 +ID,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,7115.799559 +ID,PM2.5 Primary (Filt + Cond),3B2_Manure-sheep,,TON,0.029577984 +ID,PM2.5 Primary (Filt + Cond),3B3_Manure-swine,,TON,5.552960423 +ID,PM2.5 Primary (Filt + Cond),3B4_Manure-other,,TON,78.64192 +ID,PM2.5 Primary (Filt + Cond),3B4_Manure-poultry,,TON,4.996477639 +ID,PM2.5 Primary (Filt + Cond),3B4d_Manure-goats,,TON,0.002321792 +ID,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,19632.97074 +ID,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1078.846534 +ID,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.74923 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,771.2278366 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,412.018354 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,35.66682806 +ID,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.456897005 +ID,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,9.75198 +ID,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.000006775 +ID,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,23.27767871 +ID,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.00166 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.028149506 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.396807453 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.024498547 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,186.9824212 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,99.07755512 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2770.581951 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.057008858 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,34.78621654 +ID,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,16.12052348 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.06624726 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.132971653 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50878E-05 +ID,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,49.41445669 +ID,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.946792795 +ID,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,110.2842657 +ID,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.55956393 +ID,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.334884988 +ID,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.371088092 +ID,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.62830137 +ID,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.003722018 +ID,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18.46739555 +ID,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.198802591 +ID,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.0505139 +ID,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.904350941 +ID,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.82864673 +ID,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.738530981 +ID,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002745494 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,6.93294334 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.7619799 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.315314218 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.22459557 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.554581578 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.46999931 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.934985733 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.013641631 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.198266661 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.139326773 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,23.20031479 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,127.88521 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0.121129302 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.369707246 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.920567005 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.453980148 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.257576128 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.35357E-05 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.009325123 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.960191414 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.823608221 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.55128117 +ID,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.851608397 +ID,Sulfur Dioxide,2A6_Other-minerals,,TON,282.9006411 +ID,Sulfur Dioxide,2B_Chemicals-other,,TON,1304.0564 +ID,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,7.8358399 +ID,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,178.5315534 +ID,Sulfur Dioxide,3F_Ag-res-on-field,,TON,79.9891191 +ID,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,1.750679 +ID,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,97.68848946 +ID,Sulfur Dioxide,5C_Open-burning-residential,,TON,16.2352927 +ID,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.441062772 +ID,Volatile Organic Compounds,11C_Other-natural,,TON,715839.29 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,6.63134 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.0011607 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,16.54532548 +ID,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1.289634087 +ID,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,0.208536313 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,32.84988188 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,43.97379619 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.95408023 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,154.6669465 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.50853064 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,8.742583098 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.050334909 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,77.02649236 +ID,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.244018 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,292.0727618 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,114.3727645 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023567624 +ID,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,219.8105346 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1023.069514 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,16415.44189 +ID,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,90.429138 +ID,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,839.4396975 +ID,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,40.26302845 +ID,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,111.1248193 +ID,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.42153049 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,982.6165704 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,10.23786891 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,615.596937 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,252.3924896 +ID,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,319.188638 +ID,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,400.7410892 +ID,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.960072315 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,5.755703638 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.057455373 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.119722829 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002124113 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.97518443 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,39.76197573 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,438.6964324 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.330777175 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,13.37545855 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1897.057323 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,715.5382528 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.10140029 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,3.48975 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.006075002 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,81.7718887 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,494.0750559 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,216.6541357 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.050090056 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.6450567 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10306.79311 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.77136802 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2589.428397 +ID,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,453.9195378 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,67.4629662 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,244.4491071 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8970.1981 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2904.641279 +ID,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.77571137 +ID,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,272.22086 +ID,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,2.242423734 +ID,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,7297.880765 +ID,Volatile Organic Compounds,2D3d_Coating-application,,TON,4619.044521 +ID,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,1031.498765 +ID,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.86 +ID,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,153.45996 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1173.141 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4086.233 +ID,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,879.1774385 +ID,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,308.4822131 +ID,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,70.4762742 +ID,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,874.5815792 +ID,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1251.337 +ID,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0 +ID,Volatile Organic Compounds,3B3_Manure-swine,,TON,8.285307155 +ID,Volatile Organic Compounds,3B4_Manure-other,,TON,0 +ID,Volatile Organic Compounds,3B4_Manure-poultry,,TON,8.137775373 +ID,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0 +ID,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,11250.40576 +ID,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,796.0599526 +ID,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,298.034033 +ID,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,246.5656 +ID,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.0397865 +ID,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,682.6419689 +ID,Volatile Organic Compounds,5C_Open-burning-residential,,TON,101.347 +ID,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,43.28629508 +ID,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,23.81434658 +IL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.852611 +IL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,281.363 +IL,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,36.930847 +IL,Ammonia,1A1b_Pet-refining,natural_gas,TON,282.057263 +IL,Ammonia,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,2.118694 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.866890557 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.309141522 +IL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.75901936 +IL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,24.57155074 +IL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.025102069 +IL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.471090341 +IL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,538.0886663 +IL,Ammonia,1A2c_Chemicals,natural_gas,TON,7.942279 +IL,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +IL,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.001109 +IL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,24.52203592 +IL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.627054262 +IL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,21.71665062 +IL,Ammonia,1A3bii_Road-LDV,light_oil,TON,3167.088678 +IL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.98193178 +IL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,186.951071 +IL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,9.864499232 +IL,Ammonia,1A3biii_Road-bus,light_oil,TON,4.897053394 +IL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.032491167 +IL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,126.5849558 +IL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.829238463 +IL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,89.9183431 +IL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,36.5119387 +IL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.4279264 +IL,Ammonia,1A3c_Rail,diesel_oil,TON,19.86781122 +IL,Ammonia,1A3c_Rail,light_oil,TON,0.009548284 +IL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8.034010802 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.58491709 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.020486754 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.0047E-05 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.05017655 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.04367466 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.406935821 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.883596797 +IL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.056758453 +IL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,12.9467213 +IL,Ammonia,1A4bi_Residential-stationary,biomass,TON,531.3695687 +IL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.700999912 +IL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,19.4370021 +IL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.214080023 +IL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,4812.896036 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,30.04019286 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.762605366 +IL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.060787931 +IL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,6.250445029 +IL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.88111522 +IL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.022160939 +IL,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.3264 +IL,Ammonia,2A1_Cement-production,,TON,28.01234 +IL,Ammonia,2A6_Other-minerals,,TON,7.111797 +IL,Ammonia,2B_Chemicals-other,,TON,520.631001 +IL,Ammonia,2C_Iron-steel-alloy,,TON,3.596781 +IL,Ammonia,2C6_Zinc-production,,TON,0.008976 +IL,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.031823 +IL,Ammonia,2C7a_Copper-production,,TON,0.004472 +IL,Ammonia,2D3d_Coating-application,,TON,16.186991 +IL,Ammonia,2D3e_Degreasing,,TON,0.0285 +IL,Ammonia,2D3h_Printing,,TON,0.62 +IL,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.000832 +IL,Ammonia,2H2_Ethanol Production,,TON,4.32305 +IL,Ammonia,2H2_Food-and-beverage,,TON,402.702662 +IL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,9.27475 +IL,Ammonia,3B1a_Cattle-dairy,,TON,3451.0526 +IL,Ammonia,3B1b_Cattle-non-dairy,,TON,6906.70438 +IL,Ammonia,3B2_Manure-sheep,,TON,191.663231 +IL,Ammonia,3B3_Manure-swine,,TON,29753.23794 +IL,Ammonia,3B4_Manure-other,,TON,846.168837 +IL,Ammonia,3B4_Manure-poultry,,TON,3986.989127 +IL,Ammonia,3B4d_Manure-goats,,TON,220.729152 +IL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,62164.78107 +IL,Ammonia,3Dc_Other-farm,,TON,0.995417 +IL,Ammonia,3F_Ag-res-on-field,,TON,178.2477186 +IL,Ammonia,5B_Compost-biogas,Other_Fuel,TON,274.61259 +IL,Ammonia,5C_Incineration,,TON,0.000057 +IL,Ammonia,5C_Incineration,biomass,TON,0.11676 +IL,Ammonia,5D1_Wastewater-domestic,,TON,47.37084305 +IL,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,3.353526 +IL,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,0.067704 +IL,Ammonia,5E_Other-waste,Other_Fuel,TON,0.563 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,769441.5604 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,810997.8069 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,45739.64105 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3018775.441 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,52461.91301 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,13.49095304 +IL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,820171.7359 +IL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,44289980.05 +IL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,220574.8215 +IL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3206068.838 +IL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,576681.5546 +IL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,153371.6381 +IL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1257.32735 +IL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7972936.689 +IL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,50772.44862 +IL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5335112.987 +IL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1077377.244 +IL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,286060.8668 +IL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,16764.68123 +IL,Carbon Dioxide,1A3c_Rail,light_oil,TON,747.0759213 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,418983.9873 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,576335.6766 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,25441.36496 +IL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,130035.5046 +IL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,962790.8084 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3697648.751 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,57463.05912 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,12.78715745 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,7451.7816 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,427520.8296 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,108501.6889 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,357700.5897 +IL,Carbon Monoxide,11C_Other-natural,,TON,74578.856 +IL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0 +IL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,42.057869 +IL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,19978.73781 +IL,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.38688 +IL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2365.850433 +IL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,3085.165779 +IL,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,54.503734 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2168.429214 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19841.50731 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1212.968805 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,43.97892316 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,362.766237 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1432.461154 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.219677297 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,23.67245662 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21413.29718 +IL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,313.967115 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.383854 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.647863 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,9716.607135 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,10699.72073 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.784301757 +IL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13257.92396 +IL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,10182.65753 +IL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,769163.0215 +IL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1927.383614 +IL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,62602.42898 +IL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1527.635109 +IL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,8430.125178 +IL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,7.0174356 +IL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13063.56578 +IL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1251.35984 +IL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9420.92468 +IL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,31156.23843 +IL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12404.57713 +IL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,6429.525668 +IL,Carbon Monoxide,1A3c_Rail,light_oil,TON,169.9229483 +IL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1630.549627 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.588119473 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,235.0408443 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,152.9414726 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.79218E-05 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.328024822 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11302.02397 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1801.240901 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,118965.4437 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,541.4944131 +IL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,440.1045 +IL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,226251.2905 +IL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,80688.78251 +IL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,8.50499692 +IL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,2672.58575 +IL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.070400419 +IL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,10220.81949 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12913.82863 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12394.76066 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.416974903 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,58.891172 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,60062.84654 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,215.2351413 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,41109.46572 +IL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,1.239744239 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,41.53872076 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,37.027861 +IL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,221.694707 +IL,Carbon Monoxide,2A1_Cement-production,,TON,1048.006728 +IL,Carbon Monoxide,2A6_Other-minerals,,TON,1506.921375 +IL,Carbon Monoxide,2B_Chemicals-other,,TON,1486.715981 +IL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,15584.29332 +IL,Carbon Monoxide,2C3_Aluminum-production,,TON,80.04021 +IL,Carbon Monoxide,2C5_Lead-production,,TON,0.377575 +IL,Carbon Monoxide,2C6_Zinc-production,,TON,7.353321 +IL,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,65.735555 +IL,Carbon Monoxide,2C7a_Copper-production,,TON,4.011992 +IL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,18.367694 +IL,Carbon Monoxide,2D3d_Coating-application,,TON,12.205529 +IL,Carbon Monoxide,2D3h_Printing,,TON,1.13806 +IL,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.275909 +IL,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.5432 +IL,Carbon Monoxide,2H2_Ethanol Production,,TON,94.366916 +IL,Carbon Monoxide,2H2_Food-and-beverage,,TON,1940.937095 +IL,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,167.299299 +IL,Carbon Monoxide,3Dc_Other-farm,,TON,21.062434 +IL,Carbon Monoxide,3F_Ag-res-on-field,,TON,826.428654 +IL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2101.803178 +IL,Carbon Monoxide,5C_Incineration,,TON,5571.677571 +IL,Carbon Monoxide,5C_Incineration,biomass,TON,31.374736 +IL,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.687694 +IL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4687.23796 +IL,Carbon Monoxide,5C_Open-burning-residential,,TON,10763.7015 +IL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,739.29639 +IL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,31.462089 +IL,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,26.22464 +IL,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,1.172176 +IL,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.02300005 +IL,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,120.5781729 +IL,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,541.7158632 +IL,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,102.892383 +IL,Methane,1A2g_Construction_and_Mining,light_oil,TON,41.75061108 +IL,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.545136665 +IL,Methane,1A3bii_Road-LDV,diesel_oil,TON,59.82261679 +IL,Methane,1A3bii_Road-LDV,light_oil,TON,2221.982256 +IL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.11094412 +IL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,220.5664876 +IL,Methane,1A3biii_Road-bus,diesel_oil,TON,22.14041059 +IL,Methane,1A3biii_Road-bus,light_oil,TON,15.52551645 +IL,Methane,1A3biii_Road-bus,natural_gas,TON,8.9218944 +IL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,669.2369615 +IL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.219810152 +IL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,213.9089841 +IL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,55.59381885 +IL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.80897921 +IL,Methane,1A3c_Rail,diesel_oil,TON,0.71960356 +IL,Methane,1A3c_Rail,light_oil,TON,0.557036079 +IL,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.55172628 +IL,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,441.2777632 +IL,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,355.3054903 +IL,Methane,1A4bi_Residential-mobile,diesel_oil,TON,4.610666097 +IL,Methane,1A4bi_Residential-mobile,light_oil,TON,995.7415403 +IL,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,102.9057589 +IL,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,55.3114148 +IL,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.219607951 +IL,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.32099462 +IL,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,523.3226713 +IL,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.818437957 +IL,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,369.3510836 +IL,Nitrogen Oxides,11C_Other-natural,,TON,34770.0898 +IL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +IL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,241.101813 +IL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,45106.06707 +IL,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,1.53504 +IL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2091.415556 +IL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,4635.966395 +IL,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,41.687597 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4312.379837 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2640.45846 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,177.5265354 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,115.6168532 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1027.008395 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4637.613607 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,61.56755018 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,13.21445909 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,37529.67336 +IL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +IL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,635.092601 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.796519 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.785656 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,17422.17473 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,169.9250813 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.150924776 +IL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,6083.674501 +IL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2752.576741 +IL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,80666.084 +IL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,772.415949 +IL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6190.017137 +IL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3534.567978 +IL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,652.046006 +IL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,5.2432747 +IL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,47299.54224 +IL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,127.515059 +IL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,23502.69745 +IL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2712.831323 +IL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,534.06841 +IL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,37626.41161 +IL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.229981282 +IL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,16602.51822 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,2.158795728 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,827.7561952 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,192.8155872 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000945312 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.255314589 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12837.88079 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3288.506275 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2005.611382 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,137.1906623 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1031.605719 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2469.845305 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1132.219038 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,30.61799752 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,88.438395 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,3.880198274 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,24736.38796 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27717.13137 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,285.6724743 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.316761971 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,64.032732 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,865.1861375 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1137.379944 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2563.717869 +IL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0.212245014 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,18.49111499 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,14.886429 +IL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,682.777766 +IL,Nitrogen Oxides,2A1_Cement-production,,TON,1994.2792 +IL,Nitrogen Oxides,2A6_Other-minerals,,TON,3987.918786 +IL,Nitrogen Oxides,2B_Chemicals-other,,TON,726.705732 +IL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1455.281096 +IL,Nitrogen Oxides,2C3_Aluminum-production,,TON,26.65725 +IL,Nitrogen Oxides,2C5_Lead-production,,TON,0.44825 +IL,Nitrogen Oxides,2C6_Zinc-production,,TON,52.572064 +IL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,62.032471 +IL,Nitrogen Oxides,2C7a_Copper-production,,TON,3.057142 +IL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,1.79088 +IL,Nitrogen Oxides,2D3d_Coating-application,,TON,20.26142 +IL,Nitrogen Oxides,2D3h_Printing,,TON,1.495621 +IL,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.1947 +IL,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,1.287 +IL,Nitrogen Oxides,2H2_Ethanol Production,,TON,82.027144 +IL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,694.534624 +IL,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,13.636397 +IL,Nitrogen Oxides,3Dc_Other-farm,,TON,40.354047 +IL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,34.5711856 +IL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,680.613525 +IL,Nitrogen Oxides,5C_Incineration,,TON,1643.549592 +IL,Nitrogen Oxides,5C_Incineration,biomass,TON,71.711049 +IL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.160584 +IL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,138.67569 +IL,Nitrogen Oxides,5C_Open-burning-residential,,TON,759.79073 +IL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,32.857627 +IL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,6.288978 +IL,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,14.45794 +IL,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,2.497023 +IL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.446167111 +IL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1769.88196 +IL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.845824829 +IL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,164.9696928 +IL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.526616957 +IL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,7.32349435 +IL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.080504708 +IL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.217174606 +IL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.538163848 +IL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.2353667 +IL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,51.21490432 +IL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.2175653 +IL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0 +IL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.771489744 +IL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1448.870268 +IL,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,110.9462382 +IL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,855.5323356 +IL,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.369814 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,13.1111832 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.20199112 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,548.9028483 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,23.51499537 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.595550626 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,709.0401103 +IL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,14.748369 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.217651 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0606 +IL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,253456.7632 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.250312787 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,48.2781315 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,39.30133296 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000136758 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.087746546 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,321.3099891 +IL,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,10705.23 +IL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.83708032 +IL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,60.2546975 +IL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.231919976 +IL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,51.10408032 +IL,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,1.579682 +IL,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.002153 +IL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.022603 +IL,PM10 Filterable,2A1_Cement-production,,TON,107.7406532 +IL,PM10 Filterable,2A2_Lime-production,,TON,57.7124402 +IL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,140299.5385 +IL,PM10 Filterable,2A6_Other-minerals,,TON,4373.09896 +IL,PM10 Filterable,2B_Chemicals-other,,TON,839.900414 +IL,PM10 Filterable,2C_Iron-steel-alloy,,TON,1529.171242 +IL,PM10 Filterable,2C3_Aluminum-production,,TON,108.971614 +IL,PM10 Filterable,2C5_Lead-production,,TON,8.054508 +IL,PM10 Filterable,2C6_Zinc-production,,TON,89.577042 +IL,PM10 Filterable,2C7_Other-metal,,TON,503.313415 +IL,PM10 Filterable,2C7a_Copper-production,,TON,67.79583 +IL,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,1.404 +IL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,14.74907 +IL,PM10 Filterable,2D3d_Coating-application,,TON,149.038907 +IL,PM10 Filterable,2D3e_Degreasing,,TON,1.020401 +IL,PM10 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,0.53872 +IL,PM10 Filterable,2D3h_Printing,,TON,28.875645 +IL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,2.010833 +IL,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,90.434851 +IL,PM10 Filterable,2H2_Biodiesel Production,,TON,0 +IL,PM10 Filterable,2H2_Ethanol Production,,TON,7.04157 +IL,PM10 Filterable,2H2_Food-and-beverage,,TON,4195.355862 +IL,PM10 Filterable,2H3_Other-industrial-processes,,TON,423.5472232 +IL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,54.30365178 +IL,PM10 Filterable,2I_Wood-processing,,TON,2.70906 +IL,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,16392.98919 +IL,PM10 Filterable,3Dc_Other-farm,,TON,384621.273 +IL,PM10 Filterable,5A_Solid-waste-disposal,,TON,507.761861 +IL,PM10 Filterable,5C_Incineration,,TON,2630.050524 +IL,PM10 Filterable,5C_Incineration,biomass,TON,10.468603 +IL,PM10 Filterable,5C_Open-burning-commercial,,TON,0.011213 +IL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,471.497345 +IL,PM10 Filterable,5C_Open-burning-residential,,TON,4812.00725 +IL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,122.423978 +IL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.737537 +IL,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,5.999853 +IL,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,14.67037 +IL,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.001 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.553585 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5622.816529 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,212.167216 +IL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1239.460418 +IL,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.369814 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,314.1388442 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,84.98827553 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.672275377 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,15.84279756 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,85.34524393 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,865.3941282 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,25.1336985 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.363389083 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1880.527609 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,45.727017 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.217651 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0606 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1488.81444 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,81.27355295 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001595897 +IL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,310.7930921 +IL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,253456.7632 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,181.0075687 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6653.950365 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,59.0325879 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,476.4370722 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,267.2911698 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,37.97759724 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.216979877 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2498.594972 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.68492159 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2032.511266 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,185.3844691 +IL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,43.0795945 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1195.61382 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.094953824 +IL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,404.0869517 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.219366005 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.85052836 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,71.02187336 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000154037 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.161568355 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1046.070023 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,292.2617285 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,149.061499 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.205538666 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,73.0470788 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,916.3265854 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,11933.58275 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.048384011 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,70.3619404 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.532969759 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,132.8626539 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2234.913822 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,14.33800376 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001615653 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.4864355 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,558.8035318 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.98599828 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,166.1248744 +IL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,1.579682 +IL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.002153 +IL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.349767 +IL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,123.748069 +IL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,57.712945 +IL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,140299.5385 +IL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4498.740228 +IL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,839.900414 +IL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1529.171242 +IL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,108.971614 +IL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,8.054508 +IL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,89.577042 +IL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,503.313415 +IL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,67.79583 +IL,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.404 +IL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,14.74907 +IL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,149.038907 +IL,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,1.020401 +IL,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,0.53872 +IL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,28.875645 +IL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.010833 +IL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,90.434851 +IL,PM10 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0 +IL,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,23.105482 +IL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,7502.322416 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,423.5472232 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,54.30365178 +IL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.70906 +IL,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,16392.98919 +IL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,384621.273 +IL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,145.8429705 +IL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,507.761861 +IL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2630.050524 +IL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.468603 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.011213 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,471.497345 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4812.00725 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,122.423978 +IL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.737537 +IL,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.999853 +IL,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,14.67037 +IL,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.001 +IL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0 +IL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.677833373 +IL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,359.1860413 +IL,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,110.0422514 +IL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,573.5060948 +IL,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.36877 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,11.99391517 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.12230491 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,158.8566065 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,15.30551135 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.14954925 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,700.4226212 +IL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,14.6266365 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.121819 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0606 +IL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,26385.14399 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.214647462 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.81285094 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,16.90280201 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.95873E-05 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.067199818 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,319.8180627 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,10687.3 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.411830013 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,36.9303197 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.178399995 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,28.09921761 +IL,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,1.403402 +IL,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.002153 +IL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.022603 +IL,PM2.5 Filterable,2A1_Cement-production,,TON,38.35982533 +IL,PM2.5 Filterable,2A2_Lime-production,,TON,56.0975076 +IL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,17623.84287 +IL,PM2.5 Filterable,2A6_Other-minerals,,TON,2252.495949 +IL,PM2.5 Filterable,2B_Chemicals-other,,TON,713.662607 +IL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1141.057249 +IL,PM2.5 Filterable,2C3_Aluminum-production,,TON,68.00291831 +IL,PM2.5 Filterable,2C5_Lead-production,,TON,6.181032034 +IL,PM2.5 Filterable,2C6_Zinc-production,,TON,85.10419103 +IL,PM2.5 Filterable,2C7_Other-metal,,TON,321.6011968 +IL,PM2.5 Filterable,2C7a_Copper-production,,TON,41.81376614 +IL,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,1.404 +IL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,13.273961 +IL,PM2.5 Filterable,2D3d_Coating-application,,TON,130.49855 +IL,PM2.5 Filterable,2D3e_Degreasing,,TON,0.7918834 +IL,PM2.5 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,0.53872 +IL,PM2.5 Filterable,2D3h_Printing,,TON,24.90158367 +IL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.89026001 +IL,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,56.49220759 +IL,PM2.5 Filterable,2H2_Biodiesel Production,,TON,0 +IL,PM2.5 Filterable,2H2_Ethanol Production,,TON,7.04157 +IL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1765.965575 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,356.5927607 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,46.22211518 +IL,PM2.5 Filterable,2I_Wood-processing,,TON,0.303276824 +IL,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2620.0053 +IL,PM2.5 Filterable,3Dc_Other-farm,,TON,76837.80902 +IL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,248.9657418 +IL,PM2.5 Filterable,5C_Incineration,,TON,1793.239253 +IL,PM2.5 Filterable,5C_Incineration,biomass,TON,10.11158639 +IL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.006311 +IL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,363.6077923 +IL,PM2.5 Filterable,5C_Open-burning-residential,,TON,4406.78658 +IL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,109.163576 +IL,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.663188 +IL,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,5.95465 +IL,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,3.590098612 +IL,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.001 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.45992821 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4533.129943 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,211.2632292 +IL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,957.4336772 +IL,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.36877 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,304.7144021 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,84.72569265 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.666455779 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,14.69048023 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,73.23014954 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,476.8737743 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,16.90951937 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.919592393 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1870.468006 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,45.6052855 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.121819 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0606 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1444.149753 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,74.82341268 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001595897 +IL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,273.029564 +IL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,26385.14399 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,122.9150977 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2526.757043 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,41.8383011 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,176.1271259 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,185.4814412 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,19.95967287 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.060499976 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1865.791272 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.285716929 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1326.757093 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,64.33516792 +IL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.43273075 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1105.629781 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.087556988 +IL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,371.7600857 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.189085236 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,73.62938764 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,52.03463036 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.40772E-05 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.143762571 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1039.914494 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,283.4938234 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,137.5785305 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.205538666 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,70.85563757 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,843.0563189 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,11777.98329 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.623130733 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,47.0375603 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.47945019 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,109.8577938 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2167.866559 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.19150098 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001615653 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.2318455 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,514.1019878 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.26641386 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,152.8348939 +IL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,1.403402 +IL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.002153 +IL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.349767 +IL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,54.36724484 +IL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,56.0980124 +IL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17623.84287 +IL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2378.137229 +IL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,713.662607 +IL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1141.057249 +IL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,68.00291831 +IL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,6.181032034 +IL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,85.10419103 +IL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,321.6011968 +IL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,41.81376614 +IL,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.404 +IL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,13.273961 +IL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,130.49855 +IL,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.7918834 +IL,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,0.53872 +IL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,24.90158367 +IL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.89026001 +IL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,56.49220759 +IL,PM2.5 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0 +IL,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,23.105482 +IL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5072.509118 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,356.5927607 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,46.22211518 +IL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.303276824 +IL,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2620.0053 +IL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,76837.80902 +IL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,82.9418441 +IL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,248.9657418 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1793.239253 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.11158639 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.006311 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,363.6077923 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4406.78658 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,109.163576 +IL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.663188 +IL,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.95465 +IL,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.590098612 +IL,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.001 +IL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +IL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,26.415432 +IL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,136042.4402 +IL,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.0312 +IL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,212.298104 +IL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,3033.691409 +IL,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2.458396 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.869592072 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.31837277 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.362766327 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,5.07958825 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,895.4465454 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,24454.7414 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,388.9738889 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,25.08117371 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1289.445113 +IL,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,264.979719 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.862169 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.004175 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,33.50373488 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.870499717 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54391E-05 +IL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,658.9447542 +IL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.134943486 +IL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,748.0179798 +IL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.909454726 +IL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,54.44123591 +IL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.018510093 +IL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.578643136 +IL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.006656895 +IL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,68.79974252 +IL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.857933248 +IL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,45.98969832 +IL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,18.2500318 +IL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.82428302 +IL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,22.45291017 +IL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.013284294 +IL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1618.980899 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.674886755 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1243.225347 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2559.966622 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002363024 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.670134909 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,103.7877241 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.896029549 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9.740707568 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.142530198 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.524999871 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,17.4866075 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,348.8149409 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,72.4626279 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,1048.43085 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,9.16529751 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,153.2961866 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,42.62706009 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.046715774 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.12412E-05 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.088019891 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,7.764469914 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.457751328 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.509807078 +IL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.042283598 +IL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.738835402 +IL,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.00098 +IL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.869674 +IL,Sulfur Dioxide,2A1_Cement-production,,TON,609.974567 +IL,Sulfur Dioxide,2A6_Other-minerals,,TON,7503.526339 +IL,Sulfur Dioxide,2B_Chemicals-other,,TON,1053.374611 +IL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,2084.718768 +IL,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.248211 +IL,Sulfur Dioxide,2C5_Lead-production,,TON,1.51014 +IL,Sulfur Dioxide,2C6_Zinc-production,,TON,5.52239 +IL,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,211.397048 +IL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.15786 +IL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,18.3456 +IL,Sulfur Dioxide,2D3d_Coating-application,,TON,1.27807 +IL,Sulfur Dioxide,2D3h_Printing,,TON,0.004386 +IL,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,25.073488 +IL,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.0462 +IL,Sulfur Dioxide,2H2_Ethanol Production,,TON,3.357866 +IL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1168.987712 +IL,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,5.317769 +IL,Sulfur Dioxide,3Dc_Other-farm,,TON,1.350866 +IL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,16.3456667 +IL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,965.991162 +IL,Sulfur Dioxide,5C_Incineration,,TON,1410.573813 +IL,Sulfur Dioxide,5C_Incineration,biomass,TON,148.723843 +IL,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,101.8852153 +IL,Sulfur Dioxide,5C_Open-burning-residential,,TON,126.6317803 +IL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.09959443 +IL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,158.774551 +IL,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,91.74504 +IL,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.013468 +IL,Volatile Organic Compounds,11C_Other-natural,,TON,362765.63 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.877755 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1372.900071 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.019968 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,254.727463 +IL,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,814.1768701 +IL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1046.685853 +IL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2450.580533 +IL,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.86621 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,379.9992282 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,565.3457666 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,118.1649848 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,3.854221558 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,68.53173835 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,45.32436526 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.54286213 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.380593434 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2192.512905 +IL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +IL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,111.890026 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.227032 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.042272 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1960.938775 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,719.0098583 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.117838177 +IL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1148.467748 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1032.84026 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,69712.55135 +IL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,237.5614004 +IL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5250.823255 +IL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,393.281418 +IL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,425.0461374 +IL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.02015063 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3380.5833 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,55.86902816 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2565.783275 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1405.583912 +IL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2142.87143 +IL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1956.789755 +IL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.388817959 +IL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,273.0361246 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.129437281 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.75602288 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.384265256 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.90712E-06 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024072309 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,805.4657409 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,414.2088855 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4248.255081 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,76.80376177 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,102.8699255 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,14975.57446 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,11836.0384 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.190700013 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,97.185066 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.150525024 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1404.961083 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2529.408774 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,517.4694645 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.263633587 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.496248 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,18836.39167 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,57.81588973 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,11234.45034 +IL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,1269.748995 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1027.219932 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,614.7748788 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,9201.214016 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7788.019781 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1205.840149 +IL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,147.531062 +IL,Volatile Organic Compounds,2A1_Cement-production,,TON,60.992096 +IL,Volatile Organic Compounds,2A6_Other-minerals,,TON,800.799674 +IL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +IL,Volatile Organic Compounds,2B_Chemicals-other,,TON,6802.506359 +IL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,789.283403 +IL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,69.650599 +IL,Volatile Organic Compounds,2C5_Lead-production,,TON,0.349994 +IL,Volatile Organic Compounds,2C6_Zinc-production,,TON,16.144242 +IL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,734.785502 +IL,Volatile Organic Compounds,2C7a_Copper-production,,TON,30.245845 +IL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,54291.64255 +IL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,44.039897 +IL,Volatile Organic Compounds,2D3d_Coating-application,,TON,27027.47672 +IL,Volatile Organic Compounds,2D3e_Degreasing,,TON,11301.13791 +IL,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,448.280474 +IL,Volatile Organic Compounds,2D3h_Printing,,TON,5692.99543 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,434.4869244 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,369.4256146 +IL,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,51.864203 +IL,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,18.550876 +IL,Volatile Organic Compounds,2H2_Ethanol Production,,TON,100.98194 +IL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,8918.730293 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2159.964333 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,3.480823608 +IL,Volatile Organic Compounds,2I_Wood-processing,,TON,4.5416 +IL,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,156.299 +IL,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,592.503 +IL,Volatile Organic Compounds,3B3_Manure-swine,,TON,3635.503 +IL,Volatile Organic Compounds,3B4_Manure-poultry,,TON,72.054 +IL,Volatile Organic Compounds,3Dc_Other-farm,,TON,39.867866 +IL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,22459.501 +IL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,59.002827 +IL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,266.083199 +IL,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1943.0919 +IL,Volatile Organic Compounds,5C_Incineration,,TON,1090.172427 +IL,Volatile Organic Compounds,5C_Incineration,biomass,TON,4.677189 +IL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.046678 +IL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,321.727678 +IL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1083.968305 +IL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,137.884698 +IL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,302.3950408 +IL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,536.736581 +IL,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.534206 +IL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,113.246802 +IL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,16.009392 +IN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,5.01747 +IN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,39.27991806 +IN,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.0452 +IN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,159.3270423 +IN,Ammonia,1A1b_Pet-refining,natural_gas,TON,36.3485178 +IN,Ammonia,1A1c_Coke-ovens,natural_gas,TON,0 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.275452398 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.225865124 +IN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,4.936965266 +IN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.466149643 +IN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,2.395617953 +IN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.583213902 +IN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +IN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,236.1131348 +IN,Ammonia,1A2c_Chemicals,heavy_oil,TON,0 +IN,Ammonia,1A2c_Chemicals,natural_gas,TON,2.15185344 +IN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,18.1582886 +IN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.671561696 +IN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,20.70686005 +IN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2545.086453 +IN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.39124741 +IN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,105.6547399 +IN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,12.01036538 +IN,Ammonia,1A3biii_Road-bus,light_oil,TON,2.155054178 +IN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.00607595 +IN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,140.0709298 +IN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,21.83451083 +IN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,73.1045463 +IN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,9.468469078 +IN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.8902885 +IN,Ammonia,1A3c_Rail,diesel_oil,TON,10.05488793 +IN,Ammonia,1A3c_Rail,light_oil,TON,0.004300109 +IN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.565282453 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.948457078 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.348383717 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.040993403 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.049864554 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.80486723 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.395802647 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.820345069 +IN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.62223781 +IN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.898505943 +IN,Ammonia,1A4bi_Residential-stationary,biomass,TON,541.5557665 +IN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,4.34700045 +IN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.83025002 +IN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1569.814183 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.97622203 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.417786321 +IN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.029710671 +IN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.466688069 +IN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.109811736 +IN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.02244118 +IN,Ammonia,2A6_Other-minerals,,TON,78.9704449 +IN,Ammonia,2B_Chemicals-other,,TON,2.256939 +IN,Ammonia,2C_Iron-steel-alloy,,TON,154.4805354 +IN,Ammonia,2C3_Aluminum-production,,TON,4.6352 +IN,Ammonia,2D3d_Coating-application,,TON,0.01168 +IN,Ammonia,2H2_Food-and-beverage,,TON,1.410618 +IN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,304.7033013 +IN,Ammonia,3B1a_Cattle-dairy,,TON,3767.164 +IN,Ammonia,3B1b_Cattle-non-dairy,,TON,3144.453 +IN,Ammonia,3B2_Manure-sheep,,TON,171.303528 +IN,Ammonia,3B3_Manure-swine,,TON,34217.725 +IN,Ammonia,3B4_Manure-other,,TON,1091.03676 +IN,Ammonia,3B4_Manure-poultry,,TON,6873.960959 +IN,Ammonia,3B4d_Manure-goats,,TON,328.58496 +IN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14583.39832 +IN,Ammonia,3F_Ag-res-on-field,,TON,70.122742 +IN,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,6.9 +IN,Ammonia,5B_Compost-biogas,Other_Fuel,TON,145.10772 +IN,Ammonia,5D1_Wastewater-domestic,,TON,427.068 +IN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,1.863 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,526632.195 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,625461.5038 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35256.20485 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2236501.765 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,57725.47103 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,16.07129601 +IN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,772823.6539 +IN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,31242152.6 +IN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,158392.801 +IN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1655586.989 +IN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,797005.7612 +IN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,66727.98943 +IN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,285.459 +IN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7652546.616 +IN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,543408.1533 +IN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4823913.613 +IN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,271832.977 +IN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,273718.543 +IN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7584.71248 +IN,Carbon Dioxide,1A3c_Rail,light_oil,TON,335.7526613 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,171655.297 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,236133.5514 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10427.42676 +IN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,76567.18987 +IN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,513314.1959 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1966520.498 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,31402.56589 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.77126799 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3642.125 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,235830.5088 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,136664.3255 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,290951.1571 +IN,Carbon Monoxide,11C_Other-natural,,TON,47752.731 +IN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,31.29387802 +IN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,12723.81806 +IN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.2825 +IN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2029.399973 +IN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1009.341839 +IN,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,285.074 +IN,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,7.41042 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1617.932702 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15268.95288 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,915.3460165 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,592.044986 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,64.3612914 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,447.4652995 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.959097511 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,10.57203574 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,37490.41055 +IN,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +IN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,969.2799368 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5303.485369 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,9586.513848 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.83616052 +IN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5435.054105 +IN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11271.69297 +IN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,618550.3216 +IN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1660.51333 +IN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35623.02713 +IN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2161.409035 +IN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3286.51609 +IN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,4.61744 +IN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13616.29848 +IN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,13443.14575 +IN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6115.42278 +IN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9067.429817 +IN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12382.2744 +IN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3244.481661 +IN,Carbon Monoxide,1A3c_Rail,light_oil,TON,76.21955094 +IN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,582.3361969 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,484.0738078 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.17278091 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,223.4070726 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.297341575 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2940.246987 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,737.9965366 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,48744.75826 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,221.9595756 +IN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,259.215245 +IN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,119986.4847 +IN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,88265.14698 +IN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,21.73500835 +IN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.15124973 +IN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3412.799492 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6850.163318 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6802.746031 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.750339513 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,28.789971 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,37591.2045 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,270.4862778 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,32443.51756 +IN,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2941.087784 +IN,Carbon Monoxide,2A1_Cement-production,,TON,8377.9475 +IN,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,2052.045 +IN,Carbon Monoxide,2A6_Other-minerals,,TON,5518.408186 +IN,Carbon Monoxide,2B_Chemicals-other,,TON,291.4866331 +IN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,198685.7415 +IN,Carbon Monoxide,2C3_Aluminum-production,,TON,22078.62973 +IN,Carbon Monoxide,2C5_Lead-production,,TON,222.8819156 +IN,Carbon Monoxide,2C7_Other-metal,,TON,73.457238 +IN,Carbon Monoxide,2C7a_Copper-production,,TON,9.21051 +IN,Carbon Monoxide,2C7b_Nickel-production,Other_Fuel,TON,20.99149 +IN,Carbon Monoxide,2D3d_Coating-application,,TON,398.829052 +IN,Carbon Monoxide,2D3e_Degreasing,,TON,0 +IN,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.223273 +IN,Carbon Monoxide,2H2_Ethanol Production,,TON,15.622 +IN,Carbon Monoxide,2H2_Food-and-beverage,,TON,881.1144327 +IN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,146.748759 +IN,Carbon Monoxide,3F_Ag-res-on-field,,TON,395.7203 +IN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,816.981552 +IN,Carbon Monoxide,5C_Incineration,,TON,0.206022196 +IN,Carbon Monoxide,5C_Incineration,biomass,TON,1251.417723 +IN,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.36 +IN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,18640.75716 +IN,Carbon Monoxide,5C_Open-burning-residential,,TON,8761.3074 +IN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,721.680036 +IN,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,3.3 +IN,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16.83961701 +IN,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,92.97539527 +IN,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,417.6009537 +IN,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,73.01915426 +IN,Methane,1A2g_Construction_and_Mining,light_oil,TON,35.07427633 +IN,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.539164048 +IN,Methane,1A3bii_Road-LDV,diesel_oil,TON,32.76031741 +IN,Methane,1A3bii_Road-LDV,light_oil,TON,1628.650057 +IN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.76976732 +IN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,108.310282 +IN,Methane,1A3biii_Road-bus,diesel_oil,TON,19.79951213 +IN,Methane,1A3biii_Road-bus,light_oil,TON,6.79618206 +IN,Methane,1A3biii_Road-bus,natural_gas,TON,4.05233 +IN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,646.2617876 +IN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,23.10990047 +IN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,146.7753306 +IN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,20.72271824 +IN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.1210544 +IN,Methane,1A3c_Rail,diesel_oil,TON,0.325422024 +IN,Methane,1A3c_Rail,light_oil,TON,0.251372354 +IN,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.552189544 +IN,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,180.5446563 +IN,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,145.6490168 +IN,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.715943092 +IN,Methane,1A4bi_Residential-mobile,light_oil,TON,525.8511349 +IN,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,54.79666113 +IN,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,30.57303068 +IN,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.645826706 +IN,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.15692958 +IN,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,339.0593313 +IN,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.543909126 +IN,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,266.6113386 +IN,Nitrogen Oxides,11C_Other-natural,,TON,19313.6431 +IN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,107.4848998 +IN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,106228.9058 +IN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1.99162 +IN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3914.874027 +IN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1472.693789 +IN,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,3467.127 +IN,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.35737 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2613.265422 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2039.039646 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,134.9015571 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,343.5532321 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,305.6768294 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3095.798219 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,62.59714229 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,38.55674986 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,23426.9012 +IN,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0 +IN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,225.29742 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,11027.9942 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,150.5398532 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.14962726 +IN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1325.086831 +IN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3136.099989 +IN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,73124.04519 +IN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,631.801723 +IN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3831.774202 +IN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,6142.28705 +IN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,297.7145529 +IN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.561524 +IN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43514.53723 +IN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,1421.71732 +IN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18497.41068 +IN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,700.2050919 +IN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,546.151663 +IN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19137.4251 +IN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.007909968 +IN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5673.157584 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,178.1089433 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,83.38756076 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,570.8539688 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.195569931 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3488.341104 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1347.293425 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,818.6006818 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,56.23712523 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,607.3871221 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1312.427546 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1165.260274 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,78.245981 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,14.9445014 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,8349.46638 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14708.11481 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,159.7107562 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.167736997 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,31.289667 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,495.1324978 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1433.213615 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2314.131204 +IN,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2278.380691 +IN,Nitrogen Oxides,2A1_Cement-production,,TON,4259.629 +IN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2153.945 +IN,Nitrogen Oxides,2A6_Other-minerals,,TON,1867.422772 +IN,Nitrogen Oxides,2B_Chemicals-other,,TON,391.5356176 +IN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,4914.629884 +IN,Nitrogen Oxides,2C3_Aluminum-production,,TON,144.4818112 +IN,Nitrogen Oxides,2C5_Lead-production,,TON,329.092253 +IN,Nitrogen Oxides,2C7_Other-metal,,TON,153.187 +IN,Nitrogen Oxides,2C7a_Copper-production,,TON,0.05553 +IN,Nitrogen Oxides,2C7b_Nickel-production,Other_Fuel,TON,24.265152 +IN,Nitrogen Oxides,2D3d_Coating-application,,TON,8.05708 +IN,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +IN,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,1.75332 +IN,Nitrogen Oxides,2H2_Ethanol Production,,TON,2.847 +IN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,70.67636 +IN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,9.82975 +IN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,16.825158 +IN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,158.018 +IN,Nitrogen Oxides,5C_Incineration,,TON,1.803919542 +IN,Nitrogen Oxides,5C_Incineration,biomass,TON,1221.370521 +IN,Nitrogen Oxides,5C_Open-burning-industrial,,TON,5.4 +IN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,551.5017955 +IN,Nitrogen Oxides,5C_Open-burning-residential,,TON,618.44529 +IN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,32.0746623 +IN,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.122 +IN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.277656643 +IN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1323.527237 +IN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.548609616 +IN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,80.5538418 +IN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.903870868 +IN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.709125709 +IN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.01422023 +IN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.17274244 +IN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,17.21437979 +IN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.78186156 +IN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15.72951973 +IN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.27819697 +IN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.29 +IN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.30798595 +IN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,5101.507771 +IN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.60342 +IN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,212.0206635 +IN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,432.0005605 +IN,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,92.17075 +IN,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.62154 +IN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,417.3855565 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.26574139 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,129.3042725 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.5623761 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.197713276 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1766.245154 +IN,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,25.93033958 +IN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,277096.2488 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,398.1477344 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.060499644 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,53.42829877 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.064375102 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.15873397 +IN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.6947596 +IN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.89667012 +IN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,17.06181771 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM10 Filterable,2A1_Cement-production,,TON,931.884122 +IN,PM10 Filterable,2A2_Lime-production,,TON,127.1430528 +IN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,25622.24761 +IN,PM10 Filterable,2A6_Other-minerals,,TON,12570.46821 +IN,PM10 Filterable,2B_Chemicals-other,,TON,214.7707657 +IN,PM10 Filterable,2C_Iron-steel-alloy,,TON,6237.118517 +IN,PM10 Filterable,2C3_Aluminum-production,,TON,548.1657603 +IN,PM10 Filterable,2C5_Lead-production,,TON,7.91169218 +IN,PM10 Filterable,2C7_Other-metal,,TON,690.3696509 +IN,PM10 Filterable,2C7a_Copper-production,,TON,12.743324 +IN,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,14.6131568 +IN,PM10 Filterable,2D3d_Coating-application,,TON,283.3112437 +IN,PM10 Filterable,2D3e_Degreasing,,TON,0 +IN,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.3834272 +IN,PM10 Filterable,2H1_Pulp-and-paper,,TON,104.0610156 +IN,PM10 Filterable,2H2_Food-and-beverage,,TON,1263.018236 +IN,PM10 Filterable,2H3_Other-industrial-processes,,TON,399.1966535 +IN,PM10 Filterable,2I_Wood-processing,,TON,0.03924677 +IN,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,14028.78353 +IN,PM10 Filterable,3Dc_Other-farm,,TON,68908.92043 +IN,PM10 Filterable,5A_Solid-waste-disposal,,TON,140.355936 +IN,PM10 Filterable,5C_Incineration,,TON,0.2409907 +IN,PM10 Filterable,5C_Incineration,biomass,TON,45.4366 +IN,PM10 Filterable,5C_Open-burning-industrial,,TON,0.99 +IN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1875.105236 +IN,PM10 Filterable,5C_Open-burning-residential,,TON,2856.34513 +IN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,119.506769 +IN,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.016 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.29 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.05733774 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,40549.47931 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.68817 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,521.7972713 +IN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,723.1376097 +IN,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,173.2417 +IN,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.511478 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,195.2326479 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,65.62825017 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.304003648 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,435.0337753 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,23.63854358 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,274.4782213 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,17.47357711 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.493153996 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5059.044031 +IN,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,36.45989972 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,805.199193 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,65.5390469 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00192124 +IN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,130.9054718 +IN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,277096.2488 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,199.2145366 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4497.873511 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,49.235789 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,228.8272511 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,504.6241891 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.89357 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.0711765 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2405.525543 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,78.46901267 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1387.974553 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,41.25496987 +IN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,39.6354424 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,606.94665 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.042735087 +IN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,129.0141095 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,411.9690022 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.765874182 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,113.363769 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.144891591 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,98.28169959 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119.7441242 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,61.07594896 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.313814146 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,43.0250271 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,495.9499864 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,13257.51861 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,10.3458602 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.97599568 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,44.3607474 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1185.635143 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.01212168 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000855547 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.1492043 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,341.7542874 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.07752762 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,106.6280014 +IN,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,86.39314115 +IN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1206.575125 +IN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,157.9132529 +IN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,25626.30535 +IN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,13147.8785 +IN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,255.1520664 +IN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,8799.292595 +IN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,973.6207627 +IN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,23.59429128 +IN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,733.3837218 +IN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,15.41929 +IN,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,14.6881403 +IN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,306.3132222 +IN,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.3834272 +IN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,111.2066492 +IN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3153.919354 +IN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,444.4583844 +IN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.03924677 +IN,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,14028.78353 +IN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,68917.23123 +IN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,79.250582 +IN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,173.575766 +IN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.271991465 +IN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,77.14032108 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.09009 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1875.105236 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2856.34513 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,119.506769 +IN,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,1.23982 +IN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.057 +IN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.585720653 +IN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2130.74756 +IN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.39324 +IN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,210.0885745 +IN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,399.0231505 +IN,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,84.47847 +IN,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.345535 +IN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,358.367793 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.99009059 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,75.66841035 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.505127408 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.18644224 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1552.960002 +IN,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +IN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,25.93033958 +IN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,30249.41724 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,342.2812914 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.693466669 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,23.9039087 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.049522627 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.03437204 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.608009 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.68910745 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.38400736 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM2.5 Filterable,2A1_Cement-production,,TON,515.7460517 +IN,PM2.5 Filterable,2A2_Lime-production,,TON,110.4668845 +IN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2561.761405 +IN,PM2.5 Filterable,2A6_Other-minerals,,TON,2610.390379 +IN,PM2.5 Filterable,2B_Chemicals-other,,TON,178.1404502 +IN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,4607.47001 +IN,PM2.5 Filterable,2C3_Aluminum-production,,TON,431.2140454 +IN,PM2.5 Filterable,2C5_Lead-production,,TON,3.45128263 +IN,PM2.5 Filterable,2C7_Other-metal,,TON,324.4164955 +IN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.743324 +IN,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,14.6131568 +IN,PM2.5 Filterable,2D3d_Coating-application,,TON,263.9687687 +IN,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +IN,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.3377 +IN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,85.86345724 +IN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,601.8236523 +IN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,252.0861792 +IN,PM2.5 Filterable,2I_Wood-processing,,TON,0.01285737 +IN,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2038.649321 +IN,PM2.5 Filterable,3Dc_Other-farm,,TON,13788.5607 +IN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,39.6711355 +IN,PM2.5 Filterable,5C_Incineration,,TON,0.1993307 +IN,PM2.5 Filterable,5C_Incineration,biomass,TON,45.4221 +IN,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.26 +IN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1445.518986 +IN,PM2.5 Filterable,5C_Open-burning-residential,,TON,2615.81091 +IN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,92.1281617 +IN,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.386 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.057 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.335071813 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,37578.72764 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.47799 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,519.8651903 +IN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,690.1601997 +IN,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,165.5492 +IN,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.235471 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,189.3539615 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,65.42205084 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.303016577 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,375.8138569 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,21.35216961 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,221.0296726 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,12.42725218 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.481787633 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4845.774245 +IN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,36.45989972 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,781.0432828 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,60.36157844 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00192124 +IN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,110.2500936 +IN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,30249.41724 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,144.7480916 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1818.385531 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.9073408 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,89.27281194 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,366.5255203 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.946126352 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.0383284 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1778.409429 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,26.27963142 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,916.811054 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,14.8059421 +IN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.6382645 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,559.9819777 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039400915 +IN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,118.692944 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,356.0982614 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.39901369 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,83.83680155 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.130044683 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,94.16335695 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,116.1518021 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,56.37097734 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.313814146 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.73427115 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,456.2952995 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,13168.13008 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,9.2591107 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.76843287 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,36.68293158 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1150.065756 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.05144592 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000855547 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.0247258 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,314.4150441 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.17520945 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,98.09783848 +IN,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,86.39314115 +IN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,790.4370369 +IN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,141.2370914 +IN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2565.819155 +IN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3187.801654 +IN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,218.521751 +IN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,7169.644107 +IN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,856.6651296 +IN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,20.36454313 +IN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,367.4305789 +IN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.41929 +IN,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,14.6881403 +IN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,286.9707472 +IN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.3377 +IN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,93.00909076 +IN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2406.618133 +IN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,297.3479099 +IN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.01285737 +IN,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2038.649321 +IN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,13796.87146 +IN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,37.7034575 +IN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,72.8909655 +IN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.229292921 +IN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,77.12685963 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.360089 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1445.518986 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2615.81091 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,92.1281617 +IN,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.60982 +IN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,27.22059948 +IN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,292763.1666 +IN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,8.8705 +IN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,509.882205 +IN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,685.9784069 +IN,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,3858.3847 +IN,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.01576 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.709121413 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.536306449 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.213745045 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,68.76423347 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,138.2545986 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7588.941456 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,219.413096 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,42.76110643 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,12483.24972 +IN,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0 +IN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.59231412 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,24.15215995 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.947712547 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.99086E-05 +IN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,142.1647455 +IN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.791479189 +IN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,504.6657304 +IN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.382637417 +IN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26.73397435 +IN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,7.005126724 +IN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.074541382 +IN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.001511366 +IN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,66.00731415 +IN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,8.737631832 +IN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.33489175 +IN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.449494476 +IN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.4192857 +IN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,11.35474256 +IN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005979158 +IN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.203180309 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,20.27562831 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.75953107 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3616.807353 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.636122478 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.39520632 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.005880581 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.99094569 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.058417494 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.897962567 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.31984125 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,355.6751463 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,185.1822145 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,35.3686497 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,51.1854684 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.65850122 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.571971769 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.77248E-05 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.043021409 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.282572434 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.355249342 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.2977486 +IN,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.4952 +IN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,276.7050322 +IN,Sulfur Dioxide,2A1_Cement-production,,TON,1417.8743 +IN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,401.414 +IN,Sulfur Dioxide,2A6_Other-minerals,,TON,2002.559005 +IN,Sulfur Dioxide,2B_Chemicals-other,,TON,938.4833769 +IN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,11818.71655 +IN,Sulfur Dioxide,2C3_Aluminum-production,,TON,3538.888958 +IN,Sulfur Dioxide,2C5_Lead-production,,TON,143.400198 +IN,Sulfur Dioxide,2C7_Other-metal,,TON,122.661698 +IN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.11106 +IN,Sulfur Dioxide,2C7b_Nickel-production,Other_Fuel,TON,3.72792 +IN,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0127718 +IN,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +IN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,466.9035434 +IN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.60456475 +IN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,8.566371 +IN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,42.442221 +IN,Sulfur Dioxide,5C_Incineration,,TON,0.04055703 +IN,Sulfur Dioxide,5C_Incineration,biomass,TON,91.01773525 +IN,Sulfur Dioxide,5C_Open-burning-industrial,,TON,19.19 +IN,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,183.0985507 +IN,Sulfur Dioxide,5C_Open-burning-residential,,TON,103.074195 +IN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.93041999 +IN,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,2.51982 +IN,Volatile Organic Compounds,11C_Other-natural,,TON,238845.946 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.79590574 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1472.492732 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.01582 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,209.1625587 +IN,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0 +IN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1069.037626 +IN,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,119.3516 +IN,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.96451 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,247.1843351 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,439.4124659 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,90.44032274 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,27.06623659 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,20.19594757 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,9.708931037 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.08609887 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.017809768 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1075.878929 +IN,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +IN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,42.6811145 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1069.181034 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,584.1843732 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.116547141 +IN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,414.5923506 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1178.621819 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,53876.06164 +IN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,195.560251 +IN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2764.103068 +IN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,551.8967005 +IN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,171.6882937 +IN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.620547 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3742.042185 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,574.8598792 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1365.182999 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,416.6122733 +IN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1702.72579 +IN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,971.707807 +IN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.02707152 +IN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,87.1636373 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,15.21141651 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.490830648 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.334338656 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021989874 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,197.7816594 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,169.7061148 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1814.691698 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,31.48385841 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,60.58181736 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8090.33119 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,13724.44294 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,3.042899215 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.581175061 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,469.200155 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1342.964885 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,311.5689708 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.139603539 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.575515 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11159.14988 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,72.59498349 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,7280.824402 +IN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,522.1482343 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1776.388968 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,918.9374238 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,988.3926837 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,12950.49552 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,37.05116523 +IN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2945.588354 +IN,Volatile Organic Compounds,2A1_Cement-production,,TON,109.64596 +IN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,9.98009 +IN,Volatile Organic Compounds,2A6_Other-minerals,,TON,100.9951784 +IN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1192.180735 +IN,Volatile Organic Compounds,2B_Chemicals-other,,TON,1170.220009 +IN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,3232.960539 +IN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1218.756916 +IN,Volatile Organic Compounds,2C5_Lead-production,,TON,8.02143 +IN,Volatile Organic Compounds,2C7_Other-metal,,TON,60.059158 +IN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.90968 +IN,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,2.83651 +IN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,29338.23678 +IN,Volatile Organic Compounds,2D3d_Coating-application,,TON,27521.07155 +IN,Volatile Organic Compounds,2D3e_Degreasing,,TON,7958.5907 +IN,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,54.1 +IN,Volatile Organic Compounds,2D3h_Printing,,TON,19864.48895 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,168.2529261 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2428.583552 +IN,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,202.034626 +IN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,19.7562699 +IN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4829.81514 +IN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2868.85406 +IN,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,302.473 +IN,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,252.477 +IN,Volatile Organic Compounds,3B3_Manure-swine,,TON,2747.46 +IN,Volatile Organic Compounds,3B4_Manure-poultry,,TON,426.9 +IN,Volatile Organic Compounds,3Dc_Other-farm,,TON,4.18 +IN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4636.041145 +IN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,24.57735 +IN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,247.503029 +IN,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1026.746 +IN,Volatile Organic Compounds,5C_Incineration,,TON,0.099639941 +IN,Volatile Organic Compounds,5C_Incineration,biomass,TON,71.30915147 +IN,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.18 +IN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1279.483783 +IN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,595.4637 +IN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,134.59911 +IN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,89.51 +IN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,10.000582 +IN,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +KS,Ammonia,1A1a_Public-Electricity,biomass,TON,0.466326 +KS,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.6161334 +KS,Ammonia,1A1a_Public-Electricity,hard_coal,TON,100.5836281 +KS,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,19.6349392 +KS,Ammonia,1A1b_Pet-refining,natural_gas,TON,76.6323871 +KS,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.448044214 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.070039135 +KS,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.192724508 +KS,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.051736568 +KS,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.960117272 +KS,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.809041684 +KS,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,311.7286535 +KS,Ammonia,1A2c_Chemicals,natural_gas,TON,0.246768 +KS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.546795741 +KS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.142988413 +KS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.4062489 +KS,Ammonia,1A3bii_Road-LDV,light_oil,TON,971.4214942 +KS,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.72117928 +KS,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.65564464 +KS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.460849697 +KS,Ammonia,1A3biii_Road-bus,light_oil,TON,0.813994209 +KS,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,65.95024219 +KS,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,6.635466239 +KS,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,37.0486522 +KS,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.199464659 +KS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.44803968 +KS,Ammonia,1A3c_Rail,diesel_oil,TON,15.69222163 +KS,Ammonia,1A3c_Rail,light_oil,TON,0.005910513 +KS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00814286 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.522279366 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.217588595 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016579686 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.250641529 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.780492423 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.57713274 +KS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.240543616 +KS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.967794357 +KS,Ammonia,1A4bi_Residential-stationary,biomass,TON,188.231039 +KS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.021000007 +KS,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.020250003 +KS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,713.3395704 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.21322969 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.631350885 +KS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.013120512 +KS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.990070658 +KS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.161098009 +KS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.917965792 +KS,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.167 +KS,Ammonia,2A6_Other-minerals,,TON,40.9473565 +KS,Ammonia,2B_Chemicals-other,,TON,1201.838247 +KS,Ammonia,2C_Iron-steel-alloy,,TON,1.71 +KS,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.000483397 +KS,Ammonia,2D3d_Coating-application,,TON,0 +KS,Ammonia,2D3h_Printing,,TON,1.623 +KS,Ammonia,2H2_Ethanol Production,,TON,2.7301117 +KS,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,22.7280048 +KS,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,32.914 +KS,Ammonia,3B1a_Cattle-dairy,,TON,3596.684 +KS,Ammonia,3B1b_Cattle-non-dairy,,TON,53777.53 +KS,Ammonia,3B2_Manure-sheep,,TON,294.190512 +KS,Ammonia,3B3_Manure-swine,,TON,23871.381 +KS,Ammonia,3B4_Manure-other,,TON,1208.68836 +KS,Ammonia,3B4_Manure-poultry,,TON,32.6744008 +KS,Ammonia,3B4d_Manure-goats,,TON,345.22224 +KS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,78798.7736 +KS,Ammonia,3Dc_Other-farm,,TON,1.861055 +KS,Ammonia,3F_Ag-res-on-field,,TON,9895.310736 +KS,Ammonia,5B_Compost-biogas,Other_Fuel,TON,62.28522 +KS,Ammonia,5D1_Wastewater-domestic,,TON,14.54564429 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,178363.126 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,193790.9385 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10926.50146 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,682856.6455 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,11957.43061 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.698192023 +KS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,423042.7918 +KS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,11473293.92 +KS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,90618.8638 +KS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,825383.7077 +KS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,27802.35323 +KS,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,24089.59144 +KS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3738187.932 +KS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,159701.6152 +KS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2330055.471 +KS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,114137.1397 +KS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,79341.1577 +KS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,10401.39681 +KS,Carbon Dioxide,1A3c_Rail,light_oil,TON,461.8376524 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,95984.73027 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,132045.2957 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5861.310862 +KS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,29599.19417 +KS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,220748.632 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3103492.193 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,47629.10245 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.74474756 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1608.4006 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,67611.44992 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19837.8293 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,65381.6438 +KS,Carbon Monoxide,11C_Other-natural,,TON,141125.611 +KS,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,7.9766425 +KS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,10.50139006 +KS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,24452.8702 +KS,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,962.780662 +KS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1465.896772 +KS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,136.7909777 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,516.1218271 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4728.69202 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,283.1147572 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,35.03610823 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,91.19122505 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,132.1776308 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.339295122 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.173612488 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,12188.08258 +KS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,19.4833371 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2171.153346 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2455.865399 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.156860405 +KS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6491.587394 +KS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8283.698085 +KS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,284986.7389 +KS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1059.10515 +KS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19932.63381 +KS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,106.372619 +KS,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1440.344158 +KS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6117.469864 +KS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3799.521339 +KS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3769.25311 +KS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4393.726107 +KS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3608.54166 +KS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5057.988594 +KS,Carbon Monoxide,1A3c_Rail,light_oil,TON,105.8206209 +KS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.067042 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,177.3044532 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.393156459 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.099375419 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1411.402636 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,412.6562321 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,27513.88854 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,124.4174218 +KS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,100.1888199 +KS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,52065.96109 +KS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,29747.53076 +KS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.105000005 +KS,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250016 +KS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1592.573968 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10851.23459 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10191.8955 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.190650913 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.710025 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,13264.40489 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,39.35226939 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7492.99063 +KS,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,9.438728417 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,54.75254988 +KS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,56858.22479 +KS,Carbon Monoxide,2A6_Other-minerals,,TON,3272.150144 +KS,Carbon Monoxide,2B_Chemicals-other,,TON,1623.383161 +KS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,590.49109 +KS,Carbon Monoxide,2C5_Lead-production,,TON,2.92 +KS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,16.149579 +KS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,5.93999 +KS,Carbon Monoxide,2D3d_Coating-application,,TON,18.36486 +KS,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.0861 +KS,Carbon Monoxide,2H2_Ethanol Production,,TON,87.8349618 +KS,Carbon Monoxide,2H2_Food-and-beverage,,TON,416.7262135 +KS,Carbon Monoxide,3Dc_Other-farm,,TON,4.13544 +KS,Carbon Monoxide,3F_Ag-res-on-field,,TON,90488.85041 +KS,Carbon Monoxide,5A_Solid-waste-disposal,,TON,240.78369 +KS,Carbon Monoxide,5C_Incineration,,TON,0.031156011 +KS,Carbon Monoxide,5C_Incineration,biomass,TON,9.040728987 +KS,Carbon Monoxide,5C_Open-burning-commercial,,TON,8.28 +KS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,7472.11489 +KS,Carbon Monoxide,5C_Open-burning-residential,,TON,3577.33496 +KS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,126.401613 +KS,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.776279072 +KS,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.79654571 +KS,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,129.4161208 +KS,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,22.97935791 +KS,Methane,1A2g_Construction_and_Mining,light_oil,TON,9.473945886 +KS,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.109027446 +KS,Methane,1A3bii_Road-LDV,diesel_oil,TON,18.80441497 +KS,Methane,1A3bii_Road-LDV,light_oil,TON,747.4755082 +KS,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.08058157 +KS,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.59125111 +KS,Methane,1A3biii_Road-bus,diesel_oil,TON,1.309016307 +KS,Methane,1A3biii_Road-bus,light_oil,TON,3.375118696 +KS,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,280.7205437 +KS,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,6.454158057 +KS,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,52.6756853 +KS,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,11.2678723 +KS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.12465975 +KS,Methane,1A3c_Rail,diesel_oil,TON,0.446390055 +KS,Methane,1A3c_Rail,light_oil,TON,0.341786562 +KS,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.104582571 +KS,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,100.0754541 +KS,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,81.5624672 +KS,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.049502152 +KS,Methane,1A4bi_Residential-mobile,light_oil,TON,227.2074634 +KS,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,86.35559084 +KS,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,45.74395261 +KS,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.024807876 +KS,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.06925455 +KS,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,111.2100501 +KS,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.515314583 +KS,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,67.6759455 +KS,Nitrogen Oxides,11C_Other-natural,,TON,53622.7486 +KS,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,15.0243 +KS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,67.0067527 +KS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,24984.752 +KS,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1531.562305 +KS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1893.210311 +KS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,104.6310146 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,900.1926952 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,629.9029357 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41.73837875 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,53.69760156 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,427.2374321 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,290.5578138 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,102.6498153 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.370876212 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,33555.21663 +KS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,54.5405173 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3919.918525 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,37.65691386 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.030184965 +KS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1743.492243 +KS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1859.622492 +KS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,33780.18731 +KS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,350.273993 +KS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2140.73707 +KS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,196.6002672 +KS,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,138.1095698 +KS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,21301.93409 +KS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,467.9251508 +KS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12563.35469 +KS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,392.9339222 +KS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,169.80724 +KS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,29398.91831 +KS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.323389722 +KS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,15.85662 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,63.04397262 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.59463556 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.399879566 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1706.760765 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,753.3649988 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,441.5110921 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,31.50230714 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,234.8449128 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,555.0256176 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,421.3283924 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.378000199 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.364500169 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3942.585022 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23287.12893 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,238.9619551 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.266167557 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.824675 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,146.4344779 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,207.9536502 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,479.6310378 +KS,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,4.862705315 +KS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,22.56960836 +KS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,40392.01523 +KS,Nitrogen Oxides,2A6_Other-minerals,,TON,3682.835574 +KS,Nitrogen Oxides,2B_Chemicals-other,,TON,749.2898317 +KS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,43.918228 +KS,Nitrogen Oxides,2C5_Lead-production,,TON,3.48 +KS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,17.821623 +KS,Nitrogen Oxides,2D3d_Coating-application,,TON,18.65676 +KS,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.1025 +KS,Nitrogen Oxides,2H2_Ethanol Production,,TON,168.1354352 +KS,Nitrogen Oxides,2H2_Food-and-beverage,,TON,18.0142455 +KS,Nitrogen Oxides,3Dc_Other-farm,,TON,4.92315 +KS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2531.291456 +KS,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,25.018585 +KS,Nitrogen Oxides,5C_Incineration,,TON,14.59823902 +KS,Nitrogen Oxides,5C_Incineration,biomass,TON,19.79992381 +KS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,221.0682111 +KS,Nitrogen Oxides,5C_Open-burning-residential,,TON,252.517743 +KS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,5.6178482 +KS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.205463876 +KS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,631.1892619 +KS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.30363954 +KS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.55279173 +KS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.089742998 +KS,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.09434695 +KS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.122773006 +KS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.894110029 +KS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.3888867 +KS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.072056813 +KS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.04387672 +KS,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.470793905 +KS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.231091409 +KS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,967.11216 +KS,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,38.2233335 +KS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,283.1924297 +KS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,6.699746274 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,11.37243281 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,46.96766816 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,317.2694115 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,27.15838086 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.023058739 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,300.7674461 +KS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.29408176 +KS,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,169681.2461 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,149.3044719 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.340931697 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021532011 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.463066758 +KS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.022679999 +KS,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.021869997 +KS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.96155011 +KS,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.03659843 +KS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.22822297 +KS,PM10 Filterable,2A1_Cement-production,,TON,193.926692 +KS,PM10 Filterable,2A2_Lime-production,,TON,3.69663472 +KS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,26597.01449 +KS,PM10 Filterable,2A6_Other-minerals,,TON,3355.180114 +KS,PM10 Filterable,2B_Chemicals-other,,TON,225.7395102 +KS,PM10 Filterable,2C_Iron-steel-alloy,,TON,275.3230659 +KS,PM10 Filterable,2C3_Aluminum-production,,TON,25.3508 +KS,PM10 Filterable,2C5_Lead-production,,TON,1.950829312 +KS,PM10 Filterable,2C6_Zinc-production,,TON,0 +KS,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,259.0085977 +KS,PM10 Filterable,2D3d_Coating-application,,TON,259.3150378 +KS,PM10 Filterable,2D3e_Degreasing,,TON,0 +KS,PM10 Filterable,2D3h_Printing,,TON,26.5153575 +KS,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0005 +KS,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.23 +KS,PM10 Filterable,2H2_Ethanol Production,,TON,26.01914134 +KS,PM10 Filterable,2H2_Food-and-beverage,,TON,573.9176972 +KS,PM10 Filterable,2H3_Other-industrial-processes,,TON,667.551831 +KS,PM10 Filterable,2I_Wood-processing,,TON,3.77321 +KS,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,66998.2304 +KS,PM10 Filterable,3Dc_Other-farm,,TON,285829.0428 +KS,PM10 Filterable,5A_Solid-waste-disposal,,TON,8.68905444 +KS,PM10 Filterable,5C_Incineration,,TON,0.523224 +KS,PM10 Filterable,5C_Incineration,biomass,TON,8.51586985 +KS,PM10 Filterable,5C_Open-burning-commercial,,TON,1.01 +KS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,751.6328298 +KS,PM10 Filterable,5C_Open-burning-residential,,TON,1166.2759 +KS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,20.9315082 +KS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.812325 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.472020982 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,10.53673771 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1500.8236 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,106.2602949 +KS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,483.3604325 +KS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,14.32152722 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,66.11380911 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.28974277 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.330742079 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,11.73452106 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,49.37333779 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,344.0459137 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,29.89796987 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.024111262 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,604.3359335 +KS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.20644471 +KS,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,333.6455395 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,18.54527816 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +KS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,201.5662134 +KS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,169681.2461 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,102.665409 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1476.359953 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.1497673 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,99.38622823 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,14.55218762 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.501850842 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1021.606171 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,20.52170484 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,754.707559 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,16.49338381 +KS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.97333965 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,936.2382483 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.058763676 +KS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.4071426 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,154.4348634 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.82195195 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048478846 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.10204107 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.9562837 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.14820002 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.738709932 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,16.6279121 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,209.2528659 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4199.457501 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.049979994 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048194986 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,20.70004081 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1877.784942 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.957141076 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001357595 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.8309916 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,101.0317466 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.385393086 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,30.3648164 +KS,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.03659843 +KS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1163.413653 +KS,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,198.5142261 +KS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,3.8633751 +KS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,26597.01449 +KS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3488.776177 +KS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,359.8876239 +KS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,646.5148377 +KS,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,116.6137 +KS,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,2.325165631 +KS,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +KS,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,262.4427777 +KS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,286.2592593 +KS,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KS,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,26.5212 +KS,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0005 +KS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.23 +KS,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,39.26865624 +KS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1458.116509 +KS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,667.5538958 +KS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,3.77321 +KS,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,66998.2304 +KS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,285874.3772 +KS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,15431.58993 +KS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,19.96650984 +KS,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.609778345 +KS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.88539658 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,1.56431 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,751.6328298 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1166.2759 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,20.9315082 +KS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.812325 +KS,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.404771794 +KS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.260287937 +KS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,581.67652 +KS,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,38.1922195 +KS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,269.5485483 +KS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,6.699746274 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9.04347005 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.92856551 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,37.35571536 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.85189782 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.023271171 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,274.0517118 +KS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.29408176 +KS,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,19044.71415 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,128.402768 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.276451085 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016563762 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.407465431 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.017430005 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.0168075 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.378853648 +KS,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.03659843 +KS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.02754197 +KS,PM2.5 Filterable,2A1_Cement-production,,TON,70.58495442 +KS,PM2.5 Filterable,2A2_Lime-production,,TON,1.355148714 +KS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2659.701449 +KS,PM2.5 Filterable,2A6_Other-minerals,,TON,712.1482328 +KS,PM2.5 Filterable,2B_Chemicals-other,,TON,143.3260014 +KS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,154.0329887 +KS,PM2.5 Filterable,2C3_Aluminum-production,,TON,25.3508 +KS,PM2.5 Filterable,2C5_Lead-production,,TON,1.935017027 +KS,PM2.5 Filterable,2C6_Zinc-production,,TON,0 +KS,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,196.561898 +KS,PM2.5 Filterable,2D3d_Coating-application,,TON,219.9462391 +KS,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +KS,PM2.5 Filterable,2D3h_Printing,,TON,26.4837633 +KS,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0005 +KS,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.0676471 +KS,PM2.5 Filterable,2H2_Ethanol Production,,TON,26.01914134 +KS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,304.6988339 +KS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,508.2634912 +KS,PM2.5 Filterable,2I_Wood-processing,,TON,3.4781225 +KS,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,13628.24517 +KS,PM2.5 Filterable,3Dc_Other-farm,,TON,57174.45028 +KS,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,5.37046949 +KS,PM2.5 Filterable,5C_Incineration,,TON,0.523224 +KS,PM2.5 Filterable,5C_Incineration,biomass,TON,5.557370099 +KS,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.575316 +KS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,579.4337577 +KS,PM2.5 Filterable,5C_Open-burning-residential,,TON,1068.06318 +KS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,16.1361693 +KS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.46271681 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.405998871 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.565941465 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1115.38673 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,106.229181 +KS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,469.7165417 +KS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,14.32152722 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,64.12596022 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.22767263 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.330568023 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9.363449403 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,33.21597948 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,64.62094025 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,20.52587793 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.024202751 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,577.3620568 +KS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.20644471 +KS,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,323.6361951 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.0734111 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +KS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,177.3358327 +KS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19044.71415 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,79.15898698 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,688.7111828 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.5065393 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,43.0470014 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,11.05419013 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.965507284 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,790.4641237 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.876641315 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,564.572898 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.353185126 +KS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.23758809 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,863.6159511 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.05418163 +KS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.3949285 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,133.5303741 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.757589843 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043511958 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.04909078 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,64.94761022 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.51760194 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.738709932 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,16.12908183 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,192.5207151 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4163.301816 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.044730007 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043132508 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.11733807 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1821.452414 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.241034928 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001357595 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.7760604 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,92.94979698 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.253831305 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,27.93563146 +KS,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.03659843 +KS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1163.212972 +KS,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,75.17246485 +KS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.521888914 +KS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2659.701449 +KS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,845.7612791 +KS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,277.4740113 +KS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,525.2249519 +KS,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,116.6137 +KS,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,2.309353616 +KS,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +KS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,199.9960751 +KS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,246.8904606 +KS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KS,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,26.4896058 +KS,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0005 +KS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.0676471 +KS,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,39.26865624 +KS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1188.897578 +KS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,508.265556 +KS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,3.4781225 +KS,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,13628.24517 +KS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,57219.78468 +KS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,10862.46711 +KS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,16.64792489 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.619052489 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.91760638 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,1.12963 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,579.4337577 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1068.06318 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,16.1361693 +KS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.46271681 +KS,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,7.69684 +KS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.779036224 +KS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,31527.407 +KS,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,26.6377832 +KS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1221.177343 +KS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,16.19861993 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.14421898 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.071027182 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.064494039 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,4.337657691 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.499444688 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1989.8972 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,429.8667485 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.019099033 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,308.8213201 +KS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.26099651 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7.572080292 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.198469891 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50878E-05 +KS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,176.2602538 +KS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.714608633 +KS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,213.4250353 +KS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.788031973 +KS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.36557745 +KS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.243835834 +KS,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.447637187 +KS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.24233891 +KS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.966820982 +KS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20.17667346 +KS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.120546685 +KS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.47014471 +KS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,17.71584968 +KS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008220113 +KS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00759474 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7.393304739 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.047890658 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.883163551 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.10434731 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.121629892 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.231733183 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.032836914 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.347126228 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.00945641 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,107.3852686 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.89459982 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.862650166 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,23.88465163 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,35.78381064 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.867593202 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.98623E-05 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018997836 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.227566408 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.63219555 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.189882692 +KS,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.5459331 +KS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,51.2714909 +KS,Sulfur Dioxide,2A6_Other-minerals,,TON,788.1888732 +KS,Sulfur Dioxide,2B_Chemicals-other,,TON,2361.642853 +KS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,37.789247 +KS,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.33232 +KS,Sulfur Dioxide,2C5_Lead-production,,TON,0.02 +KS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.23212375 +KS,Sulfur Dioxide,2D3d_Coating-application,,TON,0.293967 +KS,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.000615 +KS,Sulfur Dioxide,2H2_Ethanol Production,,TON,15.3777966 +KS,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.9533899 +KS,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0295389 +KS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,660.338606 +KS,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,22.1360376 +KS,Sulfur Dioxide,5C_Incineration,,TON,0.124496776 +KS,Sulfur Dioxide,5C_Incineration,biomass,TON,2.449917434 +KS,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,73.39468536 +KS,Sulfur Dioxide,5C_Open-burning-residential,,TON,42.0863008 +KS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.21385687 +KS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.84 +KS,Volatile Organic Compounds,11C_Other-natural,,TON,487429.89 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.1840765 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.966121452 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,614.90658 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,68.1319104 +KS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,618.9246624 +KS,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1130.292869 +KS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1026.253654 +KS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,206.6489699 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.43815515 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,136.4882761 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,28.00773111 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,8.936590987 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,31.55841022 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.342856325 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.531341364 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.545588562 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2176.29308 +KS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,4.492027676 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,436.5645672 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,170.6679081 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023567647 +KS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,908.9407276 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,744.4330128 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,26195.83303 +KS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,111.569629 +KS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1633.155576 +KS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,24.09563441 +KS,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,79.43054878 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1585.860231 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,163.2128045 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,802.039081 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,230.5804084 +KS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,590.91658 +KS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1497.266506 +KS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.956878387 +KS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.1796352 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,27.22442284 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.090222049 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.036989397 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,499.8919292 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94.89329793 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1051.397812 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17.63073673 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,23.41769462 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3609.697612 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4375.714023 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.014699997 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.014174997 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,218.9427198 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2125.034751 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,442.8078475 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.221525023 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.343851 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3236.474442 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.57090562 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2152.900249 +KS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +KS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,728.7506466 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,647.4667768 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,364.8783638 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4351.143498 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4899.860806 +KS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,31907.41917 +KS,Volatile Organic Compounds,2A1_Cement-production,,TON,12.860405 +KS,Volatile Organic Compounds,2A6_Other-minerals,,TON,28.72107257 +KS,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,841.7242986 +KS,Volatile Organic Compounds,2B_Chemicals-other,,TON,1150.421235 +KS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,190.340446 +KS,Volatile Organic Compounds,2C3_Aluminum-production,,TON,3.3232 +KS,Volatile Organic Compounds,2C5_Lead-production,,TON,0.26 +KS,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +KS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,13.2256535 +KS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12929.75067 +KS,Volatile Organic Compounds,2D3d_Coating-application,,TON,12343.07808 +KS,Volatile Organic Compounds,2D3e_Degreasing,,TON,3148.606481 +KS,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,5.2989479 +KS,Volatile Organic Compounds,2D3h_Printing,,TON,7372.744574 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1552.895703 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +KS,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,10.2524 +KS,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,21.605 +KS,Volatile Organic Compounds,2H2_Ethanol Production,,TON,296.3111562 +KS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,606.1618277 +KS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1078.992695 +KS,Volatile Organic Compounds,2I_Wood-processing,,TON,135.33 +KS,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,288.78 +KS,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,4317.987 +KS,Volatile Organic Compounds,3B3_Manure-swine,,TON,1916.699 +KS,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2.01 +KS,Volatile Organic Compounds,3Dc_Other-farm,,TON,234.2923158 +KS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6221.70075 +KS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,5621.227886 +KS,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,92.10128786 +KS,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,440.7168 +KS,Volatile Organic Compounds,5C_Incineration,,TON,0.434260851 +KS,Volatile Organic Compounds,5C_Incineration,biomass,TON,22.02263025 +KS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,512.8780165 +KS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,243.134202 +KS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,23.5749068 +KS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,38.968768 +KS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,11.617 +KS,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.67127585 +KY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.92348708 +KY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,682.2783243 +KY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,17.26606 +KY,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,7.005 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.136231021 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.102476467 +KY,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,8.933268747 +KY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.910355567 +KY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,60.74750644 +KY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.028714853 +KY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.00851834 +KY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,23.64909181 +KY,Ammonia,1A2c_Chemicals,natural_gas,TON,0.126 +KY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,9.447148266 +KY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.228677622 +KY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,14.85392694 +KY,Ammonia,1A3bii_Road-LDV,light_oil,TON,1599.991647 +KY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.656286604 +KY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,55.75818911 +KY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.822571179 +KY,Ammonia,1A3biii_Road-bus,light_oil,TON,1.299182422 +KY,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.001978736 +KY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,83.37981858 +KY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,12.03757738 +KY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,56.03382354 +KY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.696304547 +KY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.57709916 +KY,Ammonia,1A3c_Rail,diesel_oil,TON,5.572993754 +KY,Ammonia,1A3c_Rail,light_oil,TON,0.003956901 +KY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.912110564 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.149945 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.025388125 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.0096 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00809175 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.1373145 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.779584396 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.575176882 +KY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.254113343 +KY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.683922094 +KY,Ammonia,1A4bi_Residential-stationary,biomass,TON,218.2846765 +KY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.12099928 +KY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.890999889 +KY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,577.9014573 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.896540886 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.219949029 +KY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.019742973 +KY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.555366451 +KY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.515022933 +KY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.935488345 +KY,Ammonia,2A6_Other-minerals,,TON,79.653136 +KY,Ammonia,2B_Chemicals-other,,TON,4.228047 +KY,Ammonia,2D3d_Coating-application,,TON,0.22098 +KY,Ammonia,2H1_Pulp-and-paper,,TON,61.8765 +KY,Ammonia,2H2_Food-and-beverage,,TON,58.167 +KY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,145.1754 +KY,Ammonia,3B1a_Cattle-dairy,,TON,1953.132 +KY,Ammonia,3B1b_Cattle-non-dairy,,TON,7347.692 +KY,Ammonia,3B2_Manure-sheep,,TON,129.333402 +KY,Ammonia,3B3_Manure-swine,,TON,3742.516 +KY,Ammonia,3B4_Manure-other,,TON,2357.6388 +KY,Ammonia,3B4_Manure-poultry,,TON,7930.641708 +KY,Ammonia,3B4d_Manure-goats,,TON,684.409176 +KY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7030.593572 +KY,Ammonia,3F_Ag-res-on-field,,TON,345.24489 +KY,Ammonia,5B_Compost-biogas,Other_Fuel,TON,94.09437 +KY,Ammonia,5D1_Wastewater-domestic,,TON,11.3459451 +KY,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.0007 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,263130.3914 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,283422.7792 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15991.25714 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1162769.328 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,19134.42505 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.396377047 +KY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,517144.2408 +KY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18802828.48 +KY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,90974.4649 +KY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,859388.5805 +KY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,393915.2217 +KY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,42648.75874 +KY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,83.0578 +KY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4486204.775 +KY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,286310.1616 +KY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3603669.746 +KY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,186436.7602 +KY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,103068.9301 +KY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6957.638955 +KY,Carbon Dioxide,1A3c_Rail,light_oil,TON,309.1428222 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,95873.06534 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,131882.3063 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5859.416225 +KY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,31268.90578 +KY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,274430.0635 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,848927.2124 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,16289.79981 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.812371409 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2420.2231 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,171508.0656 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,63420.61751 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,209078.521 +KY,Carbon Monoxide,11C_Other-natural,,TON,71319.873 +KY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.3540875 +KY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,35.42813464 +KY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,12833.05226 +KY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,1.969624 +KY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1281.138444 +KY,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0 +KY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,653.0137506 +KY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,38.6357517 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1224.721462 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7020.374495 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,421.7908567 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1964.407278 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,193.8698593 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,941.4083585 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.599885998 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.073041681 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5782.619693 +KY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,77.86078742 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.276607 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.46221042 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4030.90137 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3917.762759 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.313720406 +KY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5126.615546 +KY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7988.564703 +KY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,423545.4655 +KY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1065.274999 +KY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18540.28109 +KY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,931.4838976 +KY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1811.444963 +KY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.57063 +KY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8020.782163 +KY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6916.943193 +KY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6207.05808 +KY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6990.613511 +KY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4467.23314 +KY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1810.602865 +KY,Carbon Monoxide,1A3c_Rail,light_oil,TON,70.67479544 +KY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2624.031492 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,557.0634076 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.75481946 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,148.6612279 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.491641765 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1012.775483 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,412.1601533 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,27436.18585 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,124.3321901 +KY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,105.9970423 +KY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,64126.79007 +KY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,34986.46199 +KY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,10.60500574 +KY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.45500059 +KY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1316.247464 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2901.28186 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3840.918824 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.311645405 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.127786 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,31475.63235 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,125.8079655 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,23950.30063 +KY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,4162.440033 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,10.14026149 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.2 +KY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12339.34608 +KY,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1706.53632 +KY,Carbon Monoxide,2A6_Other-minerals,,TON,1376.756492 +KY,Carbon Monoxide,2B_Chemicals-other,,TON,141.367159 +KY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2466.86665 +KY,Carbon Monoxide,2C3_Aluminum-production,,TON,61286.64496 +KY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,609.55289 +KY,Carbon Monoxide,2C7a_Copper-production,,TON,0.3675 +KY,Carbon Monoxide,2D3d_Coating-application,Other_Fuel,TON,3.525 +KY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1406.263953 +KY,Carbon Monoxide,2H2_Food-and-beverage,,TON,524.1602415 +KY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,400.8889682 +KY,Carbon Monoxide,3F_Ag-res-on-field,,TON,2289.39692 +KY,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1267.423756 +KY,Carbon Monoxide,5C_Incineration,,TON,1.279927733 +KY,Carbon Monoxide,5C_Incineration,biomass,TON,44.01293831 +KY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,23627.8893 +KY,Carbon Monoxide,5C_Open-burning-residential,,TON,8835.7209 +KY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,993.944552 +KY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.54399605 +KY,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.532227735 +KY,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,42.11386439 +KY,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,189.3469959 +KY,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,42.78057647 +KY,Methane,1A2g_Construction_and_Mining,light_oil,TON,15.13085121 +KY,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.218054521 +KY,Methane,1A3bii_Road-LDV,diesel_oil,TON,21.55878158 +KY,Methane,1A3bii_Road-LDV,light_oil,TON,1057.348908 +KY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.38338551 +KY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,56.33881252 +KY,Methane,1A3biii_Road-bus,diesel_oil,TON,9.265657374 +KY,Methane,1A3biii_Road-bus,light_oil,TON,3.349766856 +KY,Methane,1A3biii_Road-bus,natural_gas,TON,0.67715 +KY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,418.447285 +KY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,11.26917989 +KY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,78.17104142 +KY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.85282763 +KY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.59321277 +KY,Methane,1A3c_Rail,diesel_oil,TON,0.298616258 +KY,Methane,1A3c_Rail,light_oil,TON,0.228618255 +KY,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.100939905 +KY,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,99.81128497 +KY,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,81.49388855 +KY,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.110899705 +KY,Methane,1A4bi_Residential-mobile,light_oil,TON,280.2238463 +KY,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.69996734 +KY,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,16.41632337 +KY,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.26823707 +KY,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.10428206 +KY,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,307.9766175 +KY,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.647418974 +KY,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,216.295134 +KY,Nitrogen Oxides,11C_Other-natural,,TON,14360.8435 +KY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,12.4304672 +KY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,144.1478982 +KY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,87271.60192 +KY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,7.410894 +KY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1102.331241 +KY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,849.8304724 +KY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,29.3428132 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1384.417634 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,933.8502821 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,61.94886312 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,940.114746 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,737.6646309 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2617.804491 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,53.40730446 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.247037457 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9826.435147 +KY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,147.729318 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.84785 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.7217217 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6934.041205 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,60.39374754 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.060369889 +KY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2454.502912 +KY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2133.463738 +KY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,49381.21998 +KY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,373.6036633 +KY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1995.411705 +KY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2810.01812 +KY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,176.1881547 +KY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.405102 +KY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25720.33504 +KY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,772.0275312 +KY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20303.24669 +KY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,592.4412333 +KY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,211.4761832 +KY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10378.50625 +KY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.888656251 +KY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,13567.43192 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,283.0363812 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,56.72779563 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,255.562025 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.927908654 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1203.233732 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,752.481176 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,441.098223 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,31.4772412 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,248.0555924 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,711.421662 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,538.4000055 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,38.17800295 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,16.03800038 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3286.648832 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6242.121025 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,75.36629504 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.069667731 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.792391 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,372.4498521 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,664.8111417 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1532.281828 +KY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,2792.474818 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,2.36588611 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.22 +KY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8714.277469 +KY,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2991.8233 +KY,Nitrogen Oxides,2A6_Other-minerals,,TON,808.3758733 +KY,Nitrogen Oxides,2B_Chemicals-other,,TON,274.484233 +KY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1051.166836 +KY,Nitrogen Oxides,2C3_Aluminum-production,,TON,286.9220041 +KY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,165.456174 +KY,Nitrogen Oxides,2C7a_Copper-production,,TON,1.8375 +KY,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +KY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,807.566806 +KY,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +KY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1190.520489 +KY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,77.605126 +KY,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,112.8391035 +KY,Nitrogen Oxides,5C_Incineration,,TON,0.727023508 +KY,Nitrogen Oxides,5C_Incineration,biomass,TON,47.31153359 +KY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,699.0501322 +KY,Nitrogen Oxides,5C_Open-burning-residential,,TON,623.698099 +KY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,44.1753172 +KY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.32375 +KY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.475289069 +KY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,920.6159922 +KY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.318924665 +KY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,44.14733817 +KY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.754608767 +KY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.27635708 +KY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0050178 +KY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.510117889 +KY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,8.838583662 +KY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.43769774 +KY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.80305831 +KY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.246476984 +KY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.23554047 +KY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.30743003 +KY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,7307.351861 +KY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.171102 +KY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,126.1867267 +KY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,110.0586842 +KY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.89340498 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,889.1263766 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,51.47984672 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,23.42644423 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.464185009 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.010648626 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,380.4087034 +KY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.7769022 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.12706569 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.20571797 +KY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,112993.4702 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,228.5443112 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.343267262 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.83408061 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.055034926 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.65238766 +KY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.290679835 +KY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.962279514 +KY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.579965132 +KY,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0062375 +KY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.09446563 +KY,PM10 Filterable,2A1_Cement-production,,TON,96.93451116 +KY,PM10 Filterable,2A2_Lime-production,,TON,510.7110748 +KY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16570.90531 +KY,PM10 Filterable,2A6_Other-minerals,,TON,4426.580546 +KY,PM10 Filterable,2B_Chemicals-other,,TON,445.8363066 +KY,PM10 Filterable,2C_Iron-steel-alloy,,TON,1292.870774 +KY,PM10 Filterable,2C3_Aluminum-production,,TON,1031.87615 +KY,PM10 Filterable,2C5_Lead-production,,TON,8.58245691 +KY,PM10 Filterable,2C6_Zinc-production,,TON,1.9889674 +KY,PM10 Filterable,2C7_Other-metal,,TON,299.8792185 +KY,PM10 Filterable,2C7a_Copper-production,,TON,9.835511 +KY,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,15.47878891 +KY,PM10 Filterable,2D3d_Coating-application,,TON,64.9453694 +KY,PM10 Filterable,2D3e_Degreasing,,TON,0 +KY,PM10 Filterable,2D3h_Printing,,TON,7.86636 +KY,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.973 +KY,PM10 Filterable,2H1_Pulp-and-paper,,TON,816.479168 +KY,PM10 Filterable,2H2_Food-and-beverage,,TON,504.601605 +KY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,2721.36636 +KY,PM10 Filterable,2I_Wood-processing,,TON,11.32866635 +KY,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,25270.62887 +KY,PM10 Filterable,3Dc_Other-farm,,TON,61534.16525 +KY,PM10 Filterable,5A_Solid-waste-disposal,,TON,106.2209172 +KY,PM10 Filterable,5C_Incineration,,TON,0.5742063 +KY,PM10 Filterable,5C_Incineration,biomass,TON,86.63187008 +KY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2376.769956 +KY,PM10 Filterable,5C_Open-burning-residential,,TON,2880.60587 +KY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,164.5924882 +KY,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,20.34221 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.23565577 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.69046486 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,11200.52469 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.62241772 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,233.0087278 +KY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,260.9464851 +KY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,7.156937372 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,99.92440736 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.21887108 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.986113569 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,920.2902672 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,57.02674849 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,83.21943195 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.76571249 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.02450445 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,732.1230115 +KY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,5.42386584 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.15235273 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.534865792 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,607.4978296 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.63531789 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638358 +KY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,137.0882722 +KY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,112993.4702 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,124.2492178 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2330.657499 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.39757633 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,99.01460007 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,196.261977 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.189823578 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01360477 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1351.266067 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,36.16201231 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1296.845407 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,28.42258986 +KY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.29502331 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,334.6474613 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039334651 +KY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,348.3004229 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,240.3311051 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.832832348 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,32.65874951 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.071881742 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,137.9219281 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.87566358 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.10464921 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.738498074 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,17.59452571 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,243.7837474 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4787.210321 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.04798024 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.12057945 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.1079104 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,502.9803346 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,19.07871576 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000355342 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.7569036 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,297.808331 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.02018192 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,97.10112498 +KY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,47.60407081 +KY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0062375 +KY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,318.184597 +KY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,96.94252116 +KY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,543.5234966 +KY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16570.90531 +KY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4531.690989 +KY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,717.5165996 +KY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1441.499126 +KY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2096.034553 +KY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,8.5949281 +KY,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,7.2393414 +KY,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,308.1052752 +KY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,23.168111 +KY,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,15.47878891 +KY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,65.1843694 +KY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,7.86636 +KY,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.973 +KY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1044.891376 +KY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1711.61683 +KY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,2723.299488 +KY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,11.32866635 +KY,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,25270.62887 +KY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,61539.75734 +KY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,401.901347 +KY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,148.2442751 +KY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.638810137 +KY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,134.9728692 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2376.769956 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2880.60587 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,164.5924882 +KY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,20.34221 +KY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.10003638 +KY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.60325738 +KY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2970.923347 +KY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.171102 +KY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,75.97674513 +KY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,102.2238629 +KY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.85633408 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,760.7294813 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,46.57325855 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,9.498771141 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.126985914 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.002662188 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,281.8327402 +KY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.7404104 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.03788714 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.16279308 +KY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,12938.55019 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,195.7776822 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.667409187 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.198720124 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.052556454 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.1787921 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.76043001 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.739529943 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.618982181 +KY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0062375 +KY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.09305891 +KY,PM2.5 Filterable,2A1_Cement-production,,TON,40.16114478 +KY,PM2.5 Filterable,2A2_Lime-production,,TON,185.6792389 +KY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1660.850425 +KY,PM2.5 Filterable,2A6_Other-minerals,,TON,1767.553102 +KY,PM2.5 Filterable,2B_Chemicals-other,,TON,294.3078381 +KY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,626.3711483 +KY,PM2.5 Filterable,2C3_Aluminum-production,,TON,788.93535 +KY,PM2.5 Filterable,2C5_Lead-production,,TON,8.56428134 +KY,PM2.5 Filterable,2C6_Zinc-production,,TON,1.72421038 +KY,PM2.5 Filterable,2C7_Other-metal,,TON,191.6137986 +KY,PM2.5 Filterable,2C7a_Copper-production,,TON,8.507381 +KY,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,5.38164658 +KY,PM2.5 Filterable,2D3d_Coating-application,,TON,57.70453996 +KY,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +KY,PM2.5 Filterable,2D3h_Printing,,TON,7.86636 +KY,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.344235 +KY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,432.6518069 +KY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,104.3738643 +KY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1820.090416 +KY,PM2.5 Filterable,2I_Wood-processing,,TON,3.24202936 +KY,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,5043.369986 +KY,PM2.5 Filterable,3Dc_Other-farm,,TON,12294.64636 +KY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,53.96038435 +KY,PM2.5 Filterable,5C_Incineration,,TON,0.48435005 +KY,PM2.5 Filterable,5C_Incineration,biomass,TON,21.53481601 +KY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1832.251065 +KY,PM2.5 Filterable,5C_Open-burning-residential,,TON,2638.02852 +KY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,126.884931 +KY,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,3.77221 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.10015168 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.986289357 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6864.10535 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.62241772 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,182.7987043 +KY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,253.1116578 +KY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,7.119866472 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,96.88816492 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.10432603 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.984179906 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,791.9404691 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,52.12072208 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,69.30132897 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.429333035 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.016520263 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,633.5483476 +KY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,5.38737344 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.063173875 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.491941552 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,589.272823 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,27.28338603 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638358 +KY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,123.1127257 +KY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,12938.55019 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,93.87793283 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,998.9115102 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21.17142922 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,38.58058419 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,147.2970223 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.916387391 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00468481 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1019.077443 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,13.32987675 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,966.389908 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.6332011 +KY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.73358865 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,308.6575303 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036267237 +KY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,337.8515688 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,207.6094001 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.155813678 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,26.00238817 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.069457644 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,119.4260054 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,64.86939818 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.47741737 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.738498074 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,17.06668822 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,224.2898061 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4736.855201 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.517731375 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.897830246 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,14.14692095 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,487.8909476 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,17.55253907 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000355342 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.6741987 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,273.9846781 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.59957272 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,89.33301779 +KY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,47.46351197 +KY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0062375 +KY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,318.1831903 +KY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,40.16915458 +KY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,218.491617 +KY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1660.850425 +KY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1872.663519 +KY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,565.9881313 +KY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,774.99945 +KY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1853.094683 +KY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,8.57675253 +KY,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,6.97457938 +KY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,199.8398513 +KY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,21.839981 +KY,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,5.38164658 +KY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,57.94353996 +KY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,7.86636 +KY,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.344235 +KY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,661.0643126 +KY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1311.389543 +KY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1822.023544 +KY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,3.24202936 +KY,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,5043.369986 +KY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,12300.23838 +KY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,255.589288 +KY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,95.9837483 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.553329958 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,69.87133909 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1832.251065 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2638.02852 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,126.884931 +KY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.77221 +KY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,8.4319018 +KY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,41.62750346 +KY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,204622.6204 +KY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.31561532 +KY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,140.5417898 +KY,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,0 +KY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,153.9400494 +KY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,4.48276984 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.641678021 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.908275646 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.118565123 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,91.46267809 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,74.49642271 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3294.080203 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,127.9051944 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.473155908 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1012.215877 +KY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.1340602 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,8.955125 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03107889 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,12.97672068 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.317471662 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.01757E-05 +KY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,260.6979672 +KY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.541882703 +KY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,308.6145937 +KY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.794062878 +KY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.15875927 +KY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.448559327 +KY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.692932569 +KY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000439754 +KY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38.69799172 +KY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.651871772 +KY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,31.28859099 +KY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.092356344 +KY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.679257182 +KY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,6.315362943 +KY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005502892 +KY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.497040711 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,28.18684386 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.59127554 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,695.1892363 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.468085831 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.685459086 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.120322354 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.228969906 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.032826299 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.366745501 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.987202428 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,98.3875687 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,90.35460975 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,37.9565948 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,19.73990216 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.75447035 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.296625814 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.56686E-05 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.028587926 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.113180013 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.021099756 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.805027913 +KY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,31.61358782 +KY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,61.01499919 +KY,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,948.2492 +KY,Sulfur Dioxide,2A6_Other-minerals,,TON,415.2100618 +KY,Sulfur Dioxide,2B_Chemicals-other,,TON,269.1733413 +KY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,842.772208 +KY,Sulfur Dioxide,2C3_Aluminum-production,,TON,2024.93751 +KY,Sulfur Dioxide,2C7_Other-metal,,TON,287.279319 +KY,Sulfur Dioxide,2C7a_Copper-production,,TON,0.105 +KY,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +KY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,591.227786 +KY,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +KY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,4866.304257 +KY,Sulfur Dioxide,3Dc_Other-farm,,TON,0.00663759 +KY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,29.5271904 +KY,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,65.42065615 +KY,Sulfur Dioxide,5C_Incineration,,TON,0.853131911 +KY,Sulfur Dioxide,5C_Incineration,biomass,TON,3.898757589 +KY,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,232.0844894 +KY,Sulfur Dioxide,5C_Open-burning-residential,,TON,103.949657 +KY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.5450233 +KY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.01210855 +KY,Volatile Organic Compounds,11C_Other-natural,,TON,619180.48 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.0520525 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,8.47890103 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1310.728129 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.18 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,222.2199151 +KY,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.25829681 +KY,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,0.791752891 +KY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,749.7171004 +KY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,6.93799548 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,137.9977898 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,202.312146 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41.24503513 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,57.38978128 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.31454577 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,59.90988192 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.356429203 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.078204584 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,746.2659852 +KY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,34.1617218 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0455612 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.19059114 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,830.5675497 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,268.1238772 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.047135268 +KY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,671.0057848 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,808.1772046 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,36639.07335 +KY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,120.2011033 +KY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1435.701794 +KY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,226.3024403 +KY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,88.50669841 +KY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.0719538 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2233.15818 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,283.6804425 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1367.090373 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,344.3880322 +KY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,654.697984 +KY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,531.4791174 +KY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.905543368 +KY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,153.6729985 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,32.32198238 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.517539382 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.743731425 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.390112274 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,98.90292271 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94.7800971 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1019.543849 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17.61594667 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,24.76241525 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4298.364472 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5191.565032 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.484700558 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.623699973 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,180.9490254 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,570.1808188 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,253.2639031 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.057982802 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.0335674 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9403.145385 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,33.79419654 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6796.572091 +KY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,12298.73866 +KY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,274.6405316 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,217.5914676 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,693.3284359 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1456.49838 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9108.440227 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,26.70034678 +KY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,16629.57345 +KY,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.0936609 +KY,Volatile Organic Compounds,2A6_Other-minerals,,TON,282.2284698 +KY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,539.2890466 +KY,Volatile Organic Compounds,2B_Chemicals-other,,TON,2125.088261 +KY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,135.01905 +KY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1358.538572 +KY,Volatile Organic Compounds,2C5_Lead-production,,TON,0.00000756 +KY,Volatile Organic Compounds,2C7_Other-metal,,TON,521.5464526 +KY,Volatile Organic Compounds,2C7a_Copper-production,,TON,1.28975 +KY,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.00689262 +KY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,19644.13335 +KY,Volatile Organic Compounds,2D3d_Coating-application,,TON,12814.58774 +KY,Volatile Organic Compounds,2D3e_Degreasing,,TON,1000.595434 +KY,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,39.32845 +KY,Volatile Organic Compounds,2D3h_Printing,,TON,15555.17429 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,242.7208483 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2063.149984 +KY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1351.434142 +KY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,21921.83578 +KY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,10422.13943 +KY,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,156.825 +KY,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,589.975 +KY,Volatile Organic Compounds,3B3_Manure-swine,,TON,300.488 +KY,Volatile Organic Compounds,3B4_Manure-poultry,,TON,635.577 +KY,Volatile Organic Compounds,3Dc_Other-farm,,TON,9.311272 +KY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1429.685799 +KY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,149.634605 +KY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,48.87658461 +KY,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,665.7917 +KY,Volatile Organic Compounds,5C_Incineration,,TON,3.353566693 +KY,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.800442427 +KY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1621.796639 +KY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,600.521502 +KY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,185.3785678 +KY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,59.733439 +KY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,2.80968883 +KY,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,1.404004 +KY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,250.921743 +LA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0 +LA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,4.07539 +LA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,677.44545 +LA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,29.0756 +LA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,476.4739721 +LA,Ammonia,1A1b_Pet-refining,heavy_oil,TON,0.026061498 +LA,Ammonia,1A1b_Pet-refining,natural_gas,TON,279.2331362 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.557173076 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.059361756 +LA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,93.28632571 +LA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.007435612 +LA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.622004016 +LA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.561682982 +LA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.341340182 +LA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1083.444252 +LA,Ammonia,1A2c_Chemicals,natural_gas,TON,21.660377 +LA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.1073255 +LA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.209086069 +LA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,21.07082351 +LA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1321.49119 +LA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.76401468 +LA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,76.72835891 +LA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.830752695 +LA,Ammonia,1A3biii_Road-bus,light_oil,TON,1.718070884 +LA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.01643858 +LA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,111.4021529 +LA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,23.52028058 +LA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,64.52104 +LA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.470397105 +LA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.0755423 +LA,Ammonia,1A3c_Rail,diesel_oil,TON,5.35199579 +LA,Ammonia,1A3c_Rail,light_oil,TON,0.003012769 +LA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18.1159466 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.250707234 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016550648 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.216225161 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.986697306 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.993515948 +LA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.248313945 +LA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.655920862 +LA,Ammonia,1A4bi_Residential-stationary,biomass,TON,58.2331402 +LA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.042000022 +LA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,444.422731 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.225695692 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.264929151 +LA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021652444 +LA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.856485852 +LA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.132514876 +LA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.455114095 +LA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.00000142 +LA,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.11848 +LA,Ammonia,2A6_Other-minerals,,TON,34.217102 +LA,Ammonia,2B_Chemicals-other,,TON,4963.530426 +LA,Ammonia,2C3_Aluminum-production,,TON,0.029795 +LA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.055338 +LA,Ammonia,2D3d_Coating-application,,TON,19.6339073 +LA,Ammonia,2D3h_Printing,,TON,2.837218 +LA,Ammonia,2H1_Pulp-and-paper,,TON,449.6213564 +LA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.219 +LA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,320.3406891 +LA,Ammonia,3B1a_Cattle-dairy,,TON,608.581 +LA,Ammonia,3B1b_Cattle-non-dairy,,TON,3153.552 +LA,Ammonia,3B2_Manure-sheep,,TON,30.480912 +LA,Ammonia,3B3_Manure-swine,,TON,142.628 +LA,Ammonia,3B4_Manure-other,,TON,813.491712 +LA,Ammonia,3B4_Manure-poultry,,TON,4902.711568 +LA,Ammonia,3B4d_Manure-goats,,TON,150.582828 +LA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,20181.88487 +LA,Ammonia,3Dc_Other-farm,,TON,0.006435 +LA,Ammonia,3F_Ag-res-on-field,,TON,3888.144495 +LA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,24.93639905 +LA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,99.13064 +LA,Ammonia,5C_Incineration,biomass,TON,0.00025434 +LA,Ammonia,5D1_Wastewater-domestic,,TON,15.455645 +LA,Ammonia,5D2_Wastewater-industrial,biomass,TON,28.67421836 +LA,Ammonia,5E_Other-waste,Other_Fuel,TON,0.087615 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,191802.6203 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,163680.3425 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9242.204304 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,998078.922 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,17491.5726 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.04728806 +LA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,742034.9301 +LA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18210822.19 +LA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,169339.709 +LA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1290460.276 +LA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,458062.7751 +LA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,56608.92368 +LA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,645.715 +LA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5971131.811 +LA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,602815.6528 +LA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4376708.571 +LA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,130002.5437 +LA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,75943.2792 +LA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5291.14429 +LA,Carbon Dioxide,1A3c_Rail,light_oil,TON,235.4338241 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,121343.6879 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,166906.0653 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7324.274998 +LA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,30555.19103 +LA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,273052.7408 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,643324.1789 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,19125.66675 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.912529096 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2654.3039 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,190674.1748 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,139459.2934 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,459762.0133 +LA,Carbon Monoxide,11C_Other-natural,,TON,174896.811 +LA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,343.01 +LA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,146.52 +LA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,24.268169 +LA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,36896.22 +LA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,384.361675 +LA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0 +LA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,7867.590352 +LA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,9821.329147 +LA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,10.511 +LA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,906.426231 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,814.4383093 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4067.932037 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,243.3867249 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,20252.38331 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.289813172 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,223.5922053 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,270.0250822 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,190.6207479 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,9.374805096 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21962.00093 +LA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.701 +LA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,22.65 +LA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,4806.071046 +LA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.004 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3173.23334 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3647.905476 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.235290737 +LA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8050.778757 +LA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8376.407467 +LA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,340250.7144 +LA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1392.29134 +LA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28228.62331 +LA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1142.452876 +LA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2423.566847 +LA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,1.789648 +LA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10791.82628 +LA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,14418.88617 +LA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5643.32013 +LA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3419.780737 +LA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2868.82945 +LA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1733.531763 +LA,Carbon Monoxide,1A3c_Rail,light_oil,TON,55.07720085 +LA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7270.154012 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,116.122296 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.054023178 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.20517017 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,185.8066382 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,521.6689988 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,35554.48215 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,156.3183517 +LA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,103.8117998 +LA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,64065.04806 +LA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10402.12395 +LA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.209999995 +LA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,928.9367603 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2059.338017 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5191.570195 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.211931675 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.973818 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,34816.79168 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,276.6450754 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,53044.44509 +LA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,6830.934312 +LA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,5.954 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0.016787879 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,47.36668612 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,35.359 +LA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,38015.92324 +LA,Carbon Monoxide,2A6_Other-minerals,,TON,843.705973 +LA,Carbon Monoxide,2B_Chemicals-other,,TON,15237.69217 +LA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,528.47111 +LA,Carbon Monoxide,2C3_Aluminum-production,,TON,119.0687 +LA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,191.80632 +LA,Carbon Monoxide,2D3d_Coating-application,,TON,11.403447 +LA,Carbon Monoxide,2D3h_Printing,,TON,1.2623 +LA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,6530.993918 +LA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1325.018888 +LA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,511.89412 +LA,Carbon Monoxide,3Dc_Other-farm,,TON,0.17 +LA,Carbon Monoxide,3F_Ag-res-on-field,,TON,14884.61346 +LA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,426.953808 +LA,Carbon Monoxide,5C_Incineration,,TON,0.061362091 +LA,Carbon Monoxide,5C_Incineration,biomass,TON,4.311709562 +LA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,45124.13685 +LA,Carbon Monoxide,5C_Open-burning-residential,,TON,6029.70489 +LA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,572.933686 +LA,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.53634 +LA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.393972475 +LA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.28412403 +LA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,109.433462 +LA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,33.58971814 +LA,Methane,1A2g_Construction_and_Mining,light_oil,TON,13.64347612 +LA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.16354105 +LA,Methane,1A3bii_Road-LDV,diesel_oil,TON,33.67779744 +LA,Methane,1A3bii_Road-LDV,light_oil,TON,819.5845757 +LA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.6158718 +LA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,75.23077117 +LA,Methane,1A3biii_Road-bus,diesel_oil,TON,9.38408972 +LA,Methane,1A3biii_Road-bus,light_oil,TON,4.486278876 +LA,Methane,1A3biii_Road-bus,natural_gas,TON,2.702269 +LA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,496.3352481 +LA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,21.89404619 +LA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,99.7486025 +LA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.453527771 +LA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.00468513 +LA,Methane,1A3c_Rail,diesel_oil,TON,0.22716199 +LA,Methane,1A3c_Rail,light_oil,TON,0.170366855 +LA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.924740429 +LA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,123.6756125 +LA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,102.6797387 +LA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.088661569 +LA,Methane,1A4bi_Residential-mobile,light_oil,TON,264.666481 +LA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.12288209 +LA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,20.36208435 +LA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.18241226 +LA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.11428326 +LA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,349.3545395 +LA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.622593416 +LA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,474.4875144 +LA,Nitrogen Oxides,11C_Other-natural,,TON,12861.5557 +LA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,3023.04 +LA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,196.75 +LA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,97.171848 +LA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,14584.44 +LA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1309.07295 +LA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0 +LA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,21949.01515 +LA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,16713.96112 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,8.163 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,650.576428 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1054.650437 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,535.4902251 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.70184337 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,10268.61102 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,11.04557524 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,707.9026676 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,592.9802734 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,668.8070651 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,18.43506483 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,51423.0013 +LA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,3.255 +LA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,26.95 +LA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,4142.676623 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5729.271605 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,51.16403501 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045277451 +LA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2270.022743 +LA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2493.045309 +LA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,37725.93408 +LA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,482.215903 +LA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2712.309042 +LA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3273.185331 +LA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,213.1205386 +LA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.286721 +LA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30573.76978 +LA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,1576.671411 +LA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17466.29807 +LA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,305.7848171 +LA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,133.493058 +LA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10159.76724 +LA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.610730912 +LA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,44367.11228 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,12.97251146 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,33.66219257 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.638536522 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1170.556351 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,952.3988351 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,510.7288589 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,39.63379015 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,242.3247034 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,645.7863083 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,192.0243449 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.7559996 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2231.346262 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4464.400316 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,71.33263427 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.047376934 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.814734 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,384.2913923 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1461.896118 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3230.982026 +LA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,6818.3953 +LA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,3.585 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0.058216622 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,18.53748238 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,25.696 +LA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,26966.00083 +LA,Nitrogen Oxides,2A6_Other-minerals,,TON,1121.715281 +LA,Nitrogen Oxides,2B_Chemicals-other,,TON,13045.80311 +LA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,86.6604 +LA,Nitrogen Oxides,2C3_Aluminum-production,,TON,807.4202 +LA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,227.613716 +LA,Nitrogen Oxides,2D3d_Coating-application,,TON,14.95251 +LA,Nitrogen Oxides,2D3h_Printing,,TON,1.5085 +LA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5625.167493 +LA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +LA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,232.800286 +LA,Nitrogen Oxides,3Dc_Other-farm,,TON,0.261 +LA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,647.7380122 +LA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,92.936609 +LA,Nitrogen Oxides,5C_Incineration,,TON,3.000917103 +LA,Nitrogen Oxides,5C_Incineration,biomass,TON,31.1817983 +LA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1335.033354 +LA,Nitrogen Oxides,5C_Open-burning-residential,,TON,425.626246 +LA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,25.4637317 +LA,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,6.7333 +LA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.268137615 +LA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,756.4146688 +LA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.570871268 +LA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,65.47142547 +LA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.965919508 +LA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.82850809 +LA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0349914 +LA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.603480324 +LA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,18.32026162 +LA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.22501059 +LA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.557679816 +LA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.15173482 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5672.969295 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,645.436975 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.423359967 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.058465388 +LA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,115634.3291 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,25.0707234 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021515841 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.086490059 +LA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,923.923109 +LA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.045359958 +LA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.644367771 +LA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,25503.04537 +LA,PM10 Filterable,2A6_Other-minerals,,TON,3042.2559 +LA,PM10 Filterable,2H2_Food-and-beverage,,TON,113.0969507 +LA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,9587.74243 +LA,PM10 Filterable,3Dc_Other-farm,,TON,54390.92293 +LA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4539.119218 +LA,PM10 Filterable,5C_Open-burning-residential,,TON,1965.79331 +LA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,94.87515 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,563.2 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,18.991 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.759362 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2035.259 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,130.829176 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1445.958496 +LA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3610.005625 +LA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.562 +LA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,69.039677 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,73.36841635 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.33495497 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.139597391 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9161.836383 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,1.051359377 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,45.73324241 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,702.5504096 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,374.462457 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.618504846 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2521.675129 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.249 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,2.05 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,349.766465 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,487.6037897 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,27.10343623 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478769 +LA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,247.053896 +LA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,115634.3291 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,153.9088291 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2005.794501 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.6054507 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,141.2882832 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,260.2913762 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.930802425 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.1056536 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1922.264731 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,77.58226118 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1247.582138 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,14.91574931 +LA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.3483154 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,322.5529772 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029948653 +LA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1236.19564 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,67.58787474 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.896987046 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.12449995 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,97.74306822 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,84.6436891 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,43.16677385 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.922588268 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,17.23458837 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,237.3113322 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1257.605236 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.09995997 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.07536039 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,358.9664135 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,49.05745812 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000241647 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.0215254 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,346.0872016 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.82946902 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,213.5245222 +LA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,242.8739084 +LA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.085 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,21.0393 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.846 +LA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,616.8894467 +LA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.926501 +LA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,25503.04537 +LA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5770.900505 +LA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,3662.506908 +LA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,102.445268 +LA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,143.1696 +LA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.21 +LA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,372.55504 +LA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.51935 +LA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,33.508989 +LA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.1136 +LA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2524.460686 +LA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2293.819247 +LA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1583.957575 +LA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.01 +LA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9587.74243 +LA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,54410.73104 +LA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1866.431968 +LA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,210.973347 +LA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.094551381 +LA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.747184599 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.122 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4539.119218 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1965.79331 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,94.87515 +LA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,6.710526 +LA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.0005 +LA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.262 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4878.751034 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,75.30097092 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.105839969 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.029232692 +LA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13344.09015 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,21.5608286 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016550648 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.043245028 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,921.963109 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.034859979 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.554401766 +LA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2550.304537 +LA,PM2.5 Filterable,2A6_Other-minerals,,TON,380.28232 +LA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,4.005814102 +LA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1916.544662 +LA,PM2.5 Filterable,3Dc_Other-farm,,TON,10878.18133 +LA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3499.205067 +LA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1800.2526 +LA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,73.1395559 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,230.35 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,7.416 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.33276584 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1061.86 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,130.253883 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1444.64911 +LA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3271.00034 +LA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.5148382 +LA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,67.699977 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,70.37899883 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.27233034 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.138738199 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7441.826671 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0.371208155 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,42.02092362 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,131.508422 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,359.8031895 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.300943606 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2471.779218 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.0328 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,2.05 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,329.0813178 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,472.9755553 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.9524183 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478769 +LA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,217.8054984 +LA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13344.09015 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,109.5196779 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,633.4324146 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.6136123 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,44.85671279 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,194.5525405 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.595958254 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01479031 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1398.261473 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,22.87432027 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,864.684089 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.297141711 +LA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.32685289 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,298.3875377 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.027613614 +LA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1179.956149 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,58.31238111 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.872640802 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.118364677 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,97.70530971 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.10442701 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,39.8414207 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.922588268 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,16.71755311 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,218.3349285 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1206.800146 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.089460015 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.985387875 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,348.1975867 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,45.13293934 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000241647 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9308778 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,318.4009628 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.9046096 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,196.442592 +LA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,238.5100601 +LA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.085 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,16.7649594 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.846 +LA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,616.5448693 +LA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.43871 +LA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2550.304537 +LA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1168.746983 +LA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,3094.980315 +LA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,57.513368 +LA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,43.3638 +LA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.21 +LA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,204.3500816 +LA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,1.05581 +LA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,30.5739068 +LA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.11196596 +LA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1824.427359 +LA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1782.381826 +LA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1009.226924 +LA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.01 +LA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1916.544662 +LA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10885.47963 +LA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1397.266247 +LA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,49.51404156 +LA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.094551381 +LA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.747184599 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.122 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3499.205067 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1800.2526 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,73.1395559 +LA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,6.700526 +LA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.0002 +LA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.1323 +LA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,14099.3 +LA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,62.79 +LA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.553565 +LA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,53707.33 +LA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,6155.2802 +LA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0 +LA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,106.421459 +LA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,8500.212117 +LA,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.032 +LA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,369.582271 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.93168435 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.092705676 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.067838347 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1770.562104 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,6.82843398 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,36.95886176 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2291.17122 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,10538.0366 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,19.32273875 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,822.6498942 +LA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.234 +LA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.38 +LA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,6196.341615 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,11.06730775 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.290252771 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.26318E-05 +LA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,249.934247 +LA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.446158018 +LA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,417.7878489 +LA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.45589247 +LA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29.62400709 +LA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.011494826 +LA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.297683677 +LA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.003418758 +LA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,51.50406262 +LA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,13.82786368 +LA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,37.61839109 +LA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.981881293 +LA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.74854451 +LA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,6.044250927 +LA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004190152 +LA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3677.199299 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.100814394 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.861435741 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.949877903 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,76.19707274 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.417959139 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.820933802 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.041032642 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.358423809 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.962714068 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,17.5127384 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.78920051 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,13.9330931 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.321667336 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.34809307 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.06553E-05 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.031351474 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.460439158 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.444314151 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.367225594 +LA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1033.278029 +LA,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.001 +LA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,24.7855 +LA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,5.682 +LA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,300.3141965 +LA,Sulfur Dioxide,2A6_Other-minerals,,TON,5236.910061 +LA,Sulfur Dioxide,2B_Chemicals-other,,TON,52140.72166 +LA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,42.428726 +LA,Sulfur Dioxide,2C3_Aluminum-production,,TON,1.5625 +LA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,706.343806 +LA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.185654 +LA,Sulfur Dioxide,2D3h_Printing,,TON,0.0094 +LA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1729.789335 +LA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +LA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,67.910323 +LA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0012 +LA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,304.8154365 +LA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,18.996879 +LA,Sulfur Dioxide,5C_Incineration,,TON,0.14540151 +LA,Sulfur Dioxide,5C_Incineration,biomass,TON,10.04142825 +LA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,443.2310886 +LA,Sulfur Dioxide,5C_Open-burning-residential,,TON,70.93768 +LA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.50198618 +LA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.019155 +LA,Volatile Organic Compounds,11C_Other-natural,,TON,1286531.94 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,48.672322 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.643634833 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.541231561 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,260.1974779 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,31.6275905 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,757.4794832 +LA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,998.1389744 +LA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,8657.874899 +LA,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,19.311 +LA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,234.205646 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,97.95848178 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,117.2430211 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,23.81561127 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,797.4601044 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.042200474 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.1509009 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.703444104 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.54685983 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,19.45482752 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3959.136298 +LA,Volatile Organic Compounds,1A2a_Ind-Comb,Other_Fuel,TON,6.01 +LA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.0897 +LA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,18.72 +LA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,722.194023 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,638.0554367 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,252.0914706 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.035351473 +LA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1009.44816 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,814.9398974 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,27438.49177 +LA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,133.829417 +LA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2051.566359 +LA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,313.4945916 +LA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,123.3410961 +LA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.214605 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3009.18544 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,635.105718 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1152.013727 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,146.2726614 +LA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,555.978272 +LA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,529.6010723 +LA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.56171251 +LA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,963.349798 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.47835037 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.074748594 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.105923052 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,115.8637645 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119.9611149 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1374.905151 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.1954988 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,24.22989151 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4319.358787 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1315.74983 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.029400009 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,127.7200338 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,408.9928346 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,487.1110059 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.039430673 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.51796 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11188.92808 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,74.31178877 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,16066.72145 +LA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,44542.90486 +LA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,995.9819403 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,521.8459608 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,601.2275879 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,25499.57696 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6687.273157 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,405.56511 +LA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,26358.21717 +LA,Volatile Organic Compounds,2A6_Other-minerals,,TON,123.9675844 +LA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2193.334892 +LA,Volatile Organic Compounds,2B_Chemicals-other,,TON,9073.08323 +LA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,37.023158 +LA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,11.4356 +LA,Volatile Organic Compounds,2C5_Lead-production,,TON,0.2 +LA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,313.30156 +LA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,20669.75553 +LA,Volatile Organic Compounds,2D3d_Coating-application,,TON,11034.34759 +LA,Volatile Organic Compounds,2D3e_Degreasing,,TON,1841.101927 +LA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,11.48500135 +LA,Volatile Organic Compounds,2D3h_Printing,,TON,3627.3214 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,72.00320333 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,634.2776129 +LA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,13193.02653 +LA,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,3.575091 +LA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,786.9606619 +LA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,5439.075803 +LA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,48.864 +LA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,253.205 +LA,Volatile Organic Compounds,3B3_Manure-swine,,TON,11.45 +LA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,392.362 +LA,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.011 +LA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2165.407469 +LA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,659.4225177 +LA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,164.147447 +LA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,701.42472 +LA,Volatile Organic Compounds,5C_Incineration,,TON,0.010122088 +LA,Volatile Organic Compounds,5C_Incineration,biomass,TON,5.97558193 +LA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3097.273276 +LA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,409.809774 +LA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,106.8567217 +LA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,63.739 +LA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,735.260919 +LA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.1271 +LA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,27.436101 +MA,Ammonia,1A1a_Public-Electricity,biomass,TON,4.167 +MA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,21.1059 +MA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,10.3719315 +MA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,17.44 +MA,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.4002 +MA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,126.5199 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.963365539 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.134635269 +MA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,26.8917961 +MA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.12279971 +MA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.016526044 +MA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.831024479 +MA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.405806194 +MA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,90.57342234 +MA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.0267 +MA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0062 +MA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,10.26119098 +MA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.264712879 +MA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,6.734571688 +MA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1604.664285 +MA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.17760868 +MA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,67.51910332 +MA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.211625854 +MA,Ammonia,1A3biii_Road-bus,light_oil,TON,0.493954638 +MA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000320849 +MA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,21.96175993 +MA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.223199862 +MA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.96434909 +MA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.49889794 +MA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.65692033 +MA,Ammonia,1A3c_Rail,diesel_oil,TON,2.423685563 +MA,Ammonia,1A3c_Rail,light_oil,TON,0.000406486 +MA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.546766787 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.949136422 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,55.0670846 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.988606889 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024640817 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,32.62280815 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.561371852 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.154496139 +MA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.593279655 +MA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,7.114269743 +MA,Ammonia,1A4bi_Residential-stationary,biomass,TON,339.1779809 +MA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,306.26203 +MA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.05268823 +MA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1271.45386 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.29774375 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.021905459 +MA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.030997922 +MA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.077361174 +MA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.762615001 +MA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.3467847 +MA,Ammonia,2A6_Other-minerals,,TON,0 +MA,Ammonia,2B_Chemicals-other,,TON,18.9421 +MA,Ammonia,2C_Iron-steel-alloy,,TON,0 +MA,Ammonia,2C6_Zinc-production,,TON,0.0019 +MA,Ammonia,2C7_Other-metal,Other_Fuel,TON,2.4914 +MA,Ammonia,2D3d_Coating-application,,TON,7.1918 +MA,Ammonia,2D3e_Degreasing,,TON,0 +MA,Ammonia,2D3h_Printing,,TON,0.574 +MA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,15.1 +MA,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.029 +MA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,6.6614 +MA,Ammonia,3B1a_Cattle-dairy,,TON,196.249 +MA,Ammonia,3B1b_Cattle-non-dairy,,TON,123.368 +MA,Ammonia,3B2_Manure-sheep,,TON,41.163012 +MA,Ammonia,3B3_Manure-swine,,TON,64.356 +MA,Ammonia,3B4_Manure-other,,TON,276.758328 +MA,Ammonia,3B4_Manure-poultry,,TON,31.454036 +MA,Ammonia,3B4d_Manure-goats,,TON,57.360996 +MA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,182.328626 +MA,Ammonia,3F_Ag-res-on-field,,TON,0.808792 +MA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.0507 +MA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,229.330833 +MA,Ammonia,5C_Incineration,biomass,TON,31.7283 +MA,Ammonia,5D1_Wastewater-domestic,,TON,18.6114 +MA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.41 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,365011.4577 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,372064.723 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,20990.78366 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1263237.95 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,22152.90084 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.3963864 +MA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,269703.4162 +MA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,23899198.28 +MA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,78193.9881 +MA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1286520.692 +MA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,77113.66463 +MA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,15475.89909 +MA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,13.5077 +MA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1373071.82 +MA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5449.34378 +MA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1058869.544 +MA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,122059.806 +MA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,111522.4804 +MA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,718.31904 +MA,Carbon Dioxide,1A3c_Rail,light_oil,TON,31.7299397 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,192016.8567 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,264106.1659 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11617.19686 +MA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,73003.8278 +MA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,529065.4701 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,36659.36314 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1559.453515 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.117384498 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3799.9308 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,143345.9316 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,93909.40247 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,309597.377 +MA,Carbon Monoxide,11C_Other-natural,,TON,13223.636 +MA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,186.9891 +MA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,59.1303 +MA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,986.51378 +MA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,162.713 +MA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.6004 +MA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,823.6521 +MA,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,19.5677 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1503.844591 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9172.442894 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,551.0132939 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1367.750284 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,264.5653152 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,153.1564988 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.522579855 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.702225864 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1917.244298 +MA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,1.4749 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.9529 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,12.4437 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4016.201141 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4506.786256 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.31372056 +MA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7599.326667 +MA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3300.79191 +MA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,272173.8885 +MA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,779.99341 +MA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18881.82188 +MA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,366.1673631 +MA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1443.908703 +MA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.228736 +MA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2331.862561 +MA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,247.3230285 +MA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1965.77916 +MA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6278.149411 +MA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5033.00745 +MA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,602.3177044 +MA,Carbon Monoxide,1A3c_Rail,light_oil,TON,7.19586202 +MA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2595.923082 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,470.2381479 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1584.754988 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.70688796 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,12.94464239 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4927.312002 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,825.4836054 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,54471.4418 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,247.6851537 +MA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,247.0728003 +MA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,123759.0541 +MA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,52639.76744 +MA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1531.3112 +MA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,5.2634437 +MA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2698.231358 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,107.6837366 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,441.413476 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.013007313 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,30.031668 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,23373.70549 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,186.287602 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,35402.26 +MA,Carbon Monoxide,2A6_Other-minerals,,TON,195.8958 +MA,Carbon Monoxide,2B_Chemicals-other,,TON,0 +MA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0.073 +MA,Carbon Monoxide,2C6_Zinc-production,,TON,0.053 +MA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.2 +MA,Carbon Monoxide,2D3d_Coating-application,,TON,4.8888 +MA,Carbon Monoxide,2D3e_Degreasing,,TON,0 +MA,Carbon Monoxide,2D3h_Printing,,TON,0 +MA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.0081 +MA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +MA,Carbon Monoxide,2H2_Food-and-beverage,,TON,948.952222 +MA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.3411 +MA,Carbon Monoxide,3F_Ag-res-on-field,,TON,11.76366 +MA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,234.837855 +MA,Carbon Monoxide,5C_Incineration,,TON,386.895219 +MA,Carbon Monoxide,5C_Incineration,biomass,TON,283.1586901 +MA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,35947.801 +MA,Carbon Monoxide,5C_Open-burning-residential,,TON,2605.1537 +MA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,271.2758143 +MA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.4889 +MA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.12 +MA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.9223333 +MA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,55.32560947 +MA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,248.5846053 +MA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,42.51149691 +MA,Methane,1A2g_Construction_and_Mining,light_oil,TON,17.63977946 +MA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.21805468 +MA,Methane,1A3bii_Road-LDV,diesel_oil,TON,22.9477028 +MA,Methane,1A3bii_Road-LDV,light_oil,TON,813.3267111 +MA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.7315736 +MA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,65.83333811 +MA,Methane,1A3biii_Road-bus,diesel_oil,TON,7.019895128 +MA,Methane,1A3biii_Road-bus,light_oil,TON,2.695727383 +MA,Methane,1A3biii_Road-bus,natural_gas,TON,0.162665 +MA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,114.1271334 +MA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.540169173 +MA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,36.82389231 +MA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.20995269 +MA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.3428254 +MA,Methane,1A3c_Rail,diesel_oil,TON,0.03079475 +MA,Methane,1A3c_Rail,light_oil,TON,0.023806485 +MA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.210567713 +MA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,202.0627823 +MA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,162.6176668 +MA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.588281308 +MA,Methane,1A4bi_Residential-mobile,light_oil,TON,547.125409 +MA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.04403054 +MA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.750154915 +MA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.011195602 +MA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.16363901 +MA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,184.6533195 +MA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.439404841 +MA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,320.402184 +MA,Nitrogen Oxides,11C_Other-natural,,TON,868.6106 +MA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,71.9602 +MA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,377.6559 +MA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1710.444 +MA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,619.5622 +MA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,5.8818 +MA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1948.5954 +MA,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,5.2318 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1918.205449 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1222.559566 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,80.97540878 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1121.664358 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1172.366118 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,358.2136074 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,107.3413046 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.664456135 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2738.276091 +MA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,6.3401 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,8.5525 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,13.2293 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,7251.870185 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,72.0042177 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.060369927 +MA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2441.389625 +MA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,832.181815 +MA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,27324.14661 +MA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,292.315163 +MA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1692.209939 +MA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,450.5183269 +MA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,74.41292249 +MA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.127644 +MA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8185.521787 +MA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,19.36559845 +MA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5242.873617 +MA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,410.017389 +MA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,205.262282 +MA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4505.742524 +MA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.09564606 +MA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14529.25651 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,162.2796284 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6901.810322 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,128.9407623 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.850095082 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5501.895173 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1507.095843 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,915.7862305 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,62.77784189 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,579.207812 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1371.932308 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,835.5823985 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,5319.7682 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,19.000801 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6528.48139 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,236.0070729 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.041419288 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002907814 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.659408 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,310.8711267 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,984.4138542 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2286.31178 +MA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0002 +MA,Nitrogen Oxides,2A6_Other-minerals,,TON,295.5729 +MA,Nitrogen Oxides,2B_Chemicals-other,,TON,0 +MA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.2649 +MA,Nitrogen Oxides,2C6_Zinc-production,,TON,0.0625 +MA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,22.4513 +MA,Nitrogen Oxides,2D3d_Coating-application,,TON,4.8888 +MA,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +MA,Nitrogen Oxides,2D3h_Printing,,TON,1.1127 +MA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.0262 +MA,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.89 +MA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,1.075 +MA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.6136 +MA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.27875 +MA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,54.3269 +MA,Nitrogen Oxides,5C_Incineration,,TON,1277.863154 +MA,Nitrogen Oxides,5C_Incineration,biomass,TON,3667.745378 +MA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1063.54345 +MA,Nitrogen Oxides,5C_Open-burning-residential,,TON,183.893125 +MA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,12.0566928 +MA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.8873 +MA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.02 +MA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.804316056 +MA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,772.1284861 +MA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.289266846 +MA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.29671911 +MA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.291613166 +MA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.453368637 +MA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0020224 +MA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.608691831 +MA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.378252769 +MA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.217498751 +MA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.80740024 +MA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.88009225 +MA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,13.922 +MA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,66.0819 +MA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,53.162234 +MA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,14.4249 +MA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.1001 +MA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,130.3749 +MA,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,10.4773 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1039.093832 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,74.21940978 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,12.01465434 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.29653607 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.099587243 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,70.53563145 +MA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.1136 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1563 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.2829 +MA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,67989.1009 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,417.1451753 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,523.1851648 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,30.00525584 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.361033176 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,93.66164119 +MA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,330.76289 +MA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.14004749 +MA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.53312899 +MA,PM10 Filterable,2A1_Cement-production,,TON,12.164 +MA,PM10 Filterable,2A2_Lime-production,,TON,8.3777 +MA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,11069.36551 +MA,PM10 Filterable,2A6_Other-minerals,,TON,2049.2031 +MA,PM10 Filterable,2B_Chemicals-other,,TON,9.0272 +MA,PM10 Filterable,2C_Iron-steel-alloy,,TON,4.5005 +MA,PM10 Filterable,2C3_Aluminum-production,,TON,0.8173 +MA,PM10 Filterable,2C6_Zinc-production,,TON,0.0019 +MA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,4.1868 +MA,PM10 Filterable,2C7a_Copper-production,,TON,1.42 +MA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.147 +MA,PM10 Filterable,2D3d_Coating-application,,TON,15.13 +MA,PM10 Filterable,2D3e_Degreasing,,TON,1.2153 +MA,PM10 Filterable,2D3h_Printing,,TON,0 +MA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.2163 +MA,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,13.6304 +MA,PM10 Filterable,2H2_Food-and-beverage,,TON,194.9223738 +MA,PM10 Filterable,2H3_Other-industrial-processes,,TON,188.2225 +MA,PM10 Filterable,2I_Wood-processing,,TON,0.076 +MA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,371.5093955 +MA,PM10 Filterable,3Dc_Other-farm,,TON,1540.342493 +MA,PM10 Filterable,5A_Solid-waste-disposal,,TON,57.8549 +MA,PM10 Filterable,5C_Incineration,,TON,12.1562 +MA,PM10 Filterable,5C_Incineration,biomass,TON,27.9367 +MA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3616.0486 +MA,PM10 Filterable,5C_Open-burning-residential,,TON,849.327524 +MA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,44.9219694 +MA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.1744 +MA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,6.8261 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,14.58269499 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,72.20361349 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,59.29453 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,16.304386 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.106106246 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,243.000666 +MA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,10.4773 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,137.4130847 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39.37572979 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.586236033 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1049.88917 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,154.9510762 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,12.97370767 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,16.31367421 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.108316658 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,165.4256487 +MA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.2808 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.18740445 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.33554 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,617.1286183 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,34.30070317 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638358 +MA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,169.1405689 +MA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,67989.1009 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,58.59216297 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3149.753496 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22.2884409 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,159.9686401 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,24.49641231 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.734396966 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00336256 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,461.5327811 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.825412476 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,368.2795622 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,16.505243 +MA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.25434835 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,143.4090754 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00403747 +MA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,365.2042384 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,402.2263191 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1100.335796 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.16405209 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.732640542 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,188.4729529 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,133.9395831 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,68.30219097 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.463478284 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.00840621 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,507.4211393 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7521.846916 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,728.90401 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.5552799 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,35.1021812 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.91565778 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.19008703 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.48312E-05 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.3267305 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,177.6632397 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.75994651 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,143.7844955 +MA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,13.073109 +MA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,16.80185057 +MA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,11069.36551 +MA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2063.709157 +MA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,9.2077037 +MA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,7.619846 +MA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.8941 +MA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.00874 +MA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,4.982870485 +MA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,6.532 +MA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.147 +MA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,16.026 +MA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,1.2153 +MA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0 +MA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.2163 +MA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,17.2435525 +MA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2501.825124 +MA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,190.8884606 +MA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.076 +MA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,371.5093955 +MA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1540.342493 +MA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2.0433 +MA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,83.907977 +MA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,13.78440691 +MA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,31.77893478 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3616.0486 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,849.327524 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,44.9219694 +MA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.29292 +MA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,8.546869007 +MA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.2228 +MA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,65.7026 +MA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,21.338242 +MA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,13.0283 +MA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.1001 +MA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,129.335 +MA,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,10.4773 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,893.889627 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,65.7555275 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.010032848 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.27070031 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.099626176 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,63.85419336 +MA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.11016245 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1284304 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.1966275 +MA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,8496.50624 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,360.3530555 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,511.4715449 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.91868366 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048893088 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,79.06179216 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,254.19753 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.87359952 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.40124021 +MA,PM2.5 Filterable,2A1_Cement-production,,TON,4.28964718 +MA,PM2.5 Filterable,2A2_Lime-production,,TON,6.26820009 +MA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1106.936551 +MA,PM2.5 Filterable,2A6_Other-minerals,,TON,364.740329 +MA,PM2.5 Filterable,2B_Chemicals-other,,TON,5.836478591 +MA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,4.4485 +MA,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.30092139 +MA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.0011 +MA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,2.532691654 +MA,PM2.5 Filterable,2C7a_Copper-production,,TON,1.42 +MA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.147 +MA,PM2.5 Filterable,2D3d_Coating-application,,TON,13.41838714 +MA,PM2.5 Filterable,2D3e_Degreasing,,TON,1.0103295 +MA,PM2.5 Filterable,2D3h_Printing,,TON,0 +MA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.2113 +MA,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,7.626279589 +MA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,10.33396138 +MA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,172.3205324 +MA,PM2.5 Filterable,2I_Wood-processing,,TON,0.0248966 +MA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,74.90995759 +MA,PM2.5 Filterable,3Dc_Other-farm,,TON,308.0685885 +MA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,23.76692454 +MA,PM2.5 Filterable,5C_Incineration,,TON,10.43197 +MA,PM2.5 Filterable,5C_Incineration,biomass,TON,27.5191 +MA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2787.61064 +MA,PM2.5 Filterable,5C_Open-burning-residential,,TON,777.804919 +MA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,34.63049327 +MA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.1744 +MA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,6.826082979 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.883454894 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,71.82431352 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,27.47053 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,14.907786 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.106106246 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,241.960766 +MA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,10.4773 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,133.2506934 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39.23653503 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.584493295 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,907.3154353 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,146.5205328 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.957997188 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,13.28665999 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.108366658 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,157.9529034 +MA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.2773622 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.15953481 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.2492675 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,598.6148125 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,31.57854378 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638358 +MA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,151.0230484 +MA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8496.50624 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,37.21768403 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,991.5717686 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.3934397 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.99674524 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,17.83651416 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.491416254 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00226341 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,332.370532 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.35117782 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,261.6959572 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.55326131 +MA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.75204552 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,131.8429327 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003722409 +MA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,352.206771 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,347.1760564 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1085.423384 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.07761118 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.658699924 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,174.2330105 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,129.9214127 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,63.04058054 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.463478284 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,39.77814795 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,466.8475343 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7437.227202 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,652.33848 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.29319909 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,28.97029724 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.34818218 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.77488452 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.48312E-05 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.1969281 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,163.4515491 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.1371462 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,132.2815608 +MA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,5.19875618 +MA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,14.69235006 +MA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1106.936551 +MA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,379.2463951 +MA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,6.016981671 +MA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,7.567846 +MA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.37772159 +MA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.00794 +MA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,3.32876212 +MA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,6.532 +MA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.147 +MA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,14.31438714 +MA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,1.0103295 +MA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0 +MA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.2113 +MA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,11.23942209 +MA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2317.236036 +MA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,174.9864869 +MA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.0248966 +MA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,74.90995759 +MA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,308.0685885 +MA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1.500012 +MA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,49.820004 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,12.02150685 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,31.39999484 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2787.61064 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,777.804919 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,34.63049327 +MA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.29292 +MA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,8.546851985 +MA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,4.2969 +MA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,150.4527 +MA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,2538.066 +MA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,2230.3478 +MA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.4264 +MA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,57.3958 +MA,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,23.817 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.822182998 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.391195648 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.147572223 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,56.42050457 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,319.6523956 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,706.0646061 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,248.602839 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.458025787 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21.17080393 +MA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0298 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.0137 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0586 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,14.00760498 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.367517004 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.01757E-05 +MA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,276.6748952 +MA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.336954479 +MA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,498.1664968 +MA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.67966266 +MA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26.83019 +MA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.669476553 +MA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.322489124 +MA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,7.15155E-05 +MA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11.84335863 +MA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.113545148 +MA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9.15149476 +MA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.54332159 +MA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.32005154 +MA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,265.5254612 +MA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000565162 +MA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,399.7599518 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,17.79588573 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1223.73027 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,411.4435075 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,11.73072041 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.59131264 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.243808553 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.46377554 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.065082838 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.856153248 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.608395535 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,161.59699 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,7610.6177 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,46.519161 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,40.5993898 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.412343089 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.028380097 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.53985E-07 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.044883778 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.603283049 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.992721676 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.6343732 +MA,Sulfur Dioxide,2A6_Other-minerals,,TON,202.4849 +MA,Sulfur Dioxide,2B_Chemicals-other,,TON,0 +MA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.0167 +MA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.0004 +MA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.01 +MA,Sulfur Dioxide,2D3d_Coating-application,,TON,4.8888 +MA,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +MA,Sulfur Dioxide,2D3h_Printing,,TON,0 +MA,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.0028 +MA,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.0055 +MA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.2581 +MA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.523 +MA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.05168 +MA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,21.5523 +MA,Sulfur Dioxide,5C_Incineration,,TON,324.6538092 +MA,Sulfur Dioxide,5C_Incineration,biomass,TON,447.6571589 +MA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,353.0962 +MA,Sulfur Dioxide,5C_Open-burning-residential,,TON,30.6488742 +MA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.605107733 +MA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.3624 +MA,Volatile Organic Compounds,11C_Other-natural,,TON,97680.932 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,4.9221 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,183.6272 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,36.104339 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,18.0941 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0301 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,184.8175 +MA,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,23.2538 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,183.9396164 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,260.7233817 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,54.04476168 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,40.59877671 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,75.4722362 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.543641817 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.738843443 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.280970124 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,379.1731262 +MA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.1857 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0574 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.2155 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,807.5654156 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,300.6908997 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.047135238 +MA,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,161.57607 +MA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,669.7562297 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,351.905472 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,24537.50893 +MA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,93.884209 +MA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1406.140879 +MA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,48.63038888 +MA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,73.22232226 +MA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.0249094 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,591.8501317 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,11.4597457 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,434.481294 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,256.1938405 +MA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,963.79429 +MA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,215.2189578 +MA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.173258126 +MA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,206.3637663 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,14.27430724 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,559.4813139 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.849638541 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.712943014 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,359.5030036 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,189.8259599 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1918.659887 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.15183509 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,57.7549024 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8121.485243 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7765.947681 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,218.36484 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.74255993 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,370.9016761 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.70697925 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,45.49105468 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002420071 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.9012747 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5815.406281 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,50.0401397 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,9047.017999 +MA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,625.063606 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1306.402722 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,264.679517 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2467.954578 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4087.52326 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,465.7301 +MA,Volatile Organic Compounds,2A6_Other-minerals,,TON,2.680800132 +MA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,912.0197269 +MA,Volatile Organic Compounds,2B_Chemicals-other,,TON,297.1087 +MA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,13.4486 +MA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0035 +MA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,40.9246 +MA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,29955.1279 +MA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.1005 +MA,Volatile Organic Compounds,2D3d_Coating-application,,TON,22077.35197 +MA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4881.03475 +MA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,4.92055481 +MA,Volatile Organic Compounds,2D3h_Printing,,TON,1652.54967 +MA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +MA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,149.9686227 +MA,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,34.5932 +MA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1808.92983 +MA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,203.041 +MA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,15.757 +MA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,9.906 +MA,Volatile Organic Compounds,3B3_Manure-swine,,TON,5.167 +MA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1.929 +MA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,96.69118966 +MA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,0.69122 +MA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,946.3977 +MA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1622.68788 +MA,Volatile Organic Compounds,5C_Incineration,,TON,15.27845639 +MA,Volatile Organic Compounds,5C_Incineration,biomass,TON,41.3417291 +MA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2467.42112 +MA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,177.05966 +MA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,50.5950696 +MA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,98.2463 +MA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,22.1668 +MA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,9.324 +MA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.1695 +MD,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,21.287515 +MD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,61.89702 +MD,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.68274 +MD,Ammonia,1A1a_Public-Electricity,natural_gas,TON,32.503698 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.701129408 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.059255657 +MD,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,13.559735 +MD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.57626686 +MD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.297904216 +MD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.03120169 +MD,Ammonia,1A3bii_Road-LDV,light_oil,TON,1547.85772 +MD,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.5929887 +MD,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,96.87903645 +MD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.271489888 +MD,Ammonia,1A3biii_Road-bus,light_oil,TON,0.841478038 +MD,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.0173175 +MD,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,56.06669616 +MD,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.802022032 +MD,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,40.8971887 +MD,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,13.39490869 +MD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.1371952 +MD,Ammonia,1A3c_Rail,diesel_oil,TON,1.42872555 +MD,Ammonia,1A3c_Rail,light_oil,TON,0.00130517 +MD,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.012343772 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,5.8325053 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.612797 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.050400004 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.10499992 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.26469707 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.996163668 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.012551824 +MD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.868302962 +MD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.637526169 +MD,Ammonia,1A4bi_Residential-stationary,biomass,TON,120.7543169 +MD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,58.12799 +MD,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.65099982 +MD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,889.9560664 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.791356218 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.059615884 +MD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02631872 +MD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.196931376 +MD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.687778835 +MD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.920612554 +MD,Ammonia,2A1_Cement-production,,TON,20.093 +MD,Ammonia,2A6_Other-minerals,Other_Fuel,TON,153.22623 +MD,Ammonia,2B_Chemicals-other,,TON,2.028562 +MD,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.07501 +MD,Ammonia,2D3d_Coating-application,,TON,0.3696 +MD,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.45698 +MD,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,136.91025 +MD,Ammonia,3B1a_Cattle-dairy,,TON,1514.74 +MD,Ammonia,3B1b_Cattle-non-dairy,,TON,594.695 +MD,Ammonia,3B2_Manure-sheep,,TON,77.39424 +MD,Ammonia,3B3_Manure-swine,,TON,263.493 +MD,Ammonia,3B4_Manure-other,,TON,413.2788 +MD,Ammonia,3B4_Manure-poultry,,TON,6960.209834 +MD,Ammonia,3B4d_Manure-goats,,TON,117.711 +MD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,2248.119998 +MD,Ammonia,3F_Ag-res-on-field,,TON,0.808792 +MD,Ammonia,5B_Compost-biogas,Other_Fuel,TON,150.39869 +MD,Ammonia,5C_Incineration,biomass,TON,1.79384 +MD,Ammonia,5D1_Wastewater-domestic,,TON,14.87659017 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,209533.419 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,163099.5104 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9214.75244 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1425123.709 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,24926.71656 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.7454719 +MD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,455576.334 +MD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22079847.66 +MD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,129829.991 +MD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1875696.494 +MD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,327284.7583 +MD,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,26283.76614 +MD,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,654.916 +MD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3790358.497 +MD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,20869.47692 +MD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2288634.53 +MD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,375935.7552 +MD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,137462.407 +MD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2303.30689 +MD,Carbon Dioxide,1A3c_Rail,light_oil,TON,102.005042 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,122507.8703 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,168504.4149 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7349.971855 +MD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,106845.8372 +MD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,642726.0473 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,220507.9933 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4403.924422 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.75786755 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3226.328 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,81374.12863 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,84694.07983 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,279243.3791 +MD,Carbon Monoxide,11C_Other-natural,,TON,18223.464 +MD,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,61.6177054 +MD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2637.6213 +MD,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,22.121 +MD,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,700.353556 +MD,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,5.08718 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1550.522972 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4196.499255 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,253.8000761 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.575111954 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.5450514 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,73.74457344 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,15.22189056 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,285.3417515 +MD,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4545.532373 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5102.373295 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.392150992 +MD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6939.321596 +MD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7100.50582 +MD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,314259.6235 +MD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,867.63733 +MD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,21173.56516 +MD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,780.854783 +MD,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1055.477503 +MD,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,3.36271 +MD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5805.951769 +MD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,463.6936973 +MD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3795.31313 +MD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9060.80251 +MD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5570.8398 +MD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,464.1226826 +MD,Carbon Monoxide,1A3c_Rail,light_oil,TON,23.27200868 +MD,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,460.2867385 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,760.7524024 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,215.6811427 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.57563173 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.606332 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.570645741 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4101.345794 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,526.6629088 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,35025.22996 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,157.4092847 +MD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,361.7165209 +MD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,149298.3545 +MD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,21130.30196 +MD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,290.64 +MD,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,274.999894 +MD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.2550016 +MD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1917.00343 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,750.0766139 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1052.280149 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.083980792 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.49184 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,15558.08703 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,168.007396 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,32015.76426 +MD,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.01596 +MD,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,26.1424828 +MD,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.6341827 +MD,Carbon Monoxide,2A1_Cement-production,,TON,1347.363385 +MD,Carbon Monoxide,2A2_Lime-production,,TON,0 +MD,Carbon Monoxide,2A6_Other-minerals,,TON,822.007352 +MD,Carbon Monoxide,2B_Chemicals-other,,TON,308.5586095 +MD,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0.339685 +MD,Carbon Monoxide,2C3_Aluminum-production,,TON,0 +MD,Carbon Monoxide,2C5_Lead-production,,TON,0 +MD,Carbon Monoxide,2C7_Other-metal,,TON,0 +MD,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,10.54387 +MD,Carbon Monoxide,2D3d_Coating-application,,TON,8.021035 +MD,Carbon Monoxide,2D3e_Degreasing,,TON,0 +MD,Carbon Monoxide,2D3h_Printing,,TON,2.5147366 +MD,Carbon Monoxide,2H1_Pulp-and-paper,,TON,186.99243 +MD,Carbon Monoxide,2H2_Food-and-beverage,,TON,660.1704607 +MD,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.924315 +MD,Carbon Monoxide,3Dc_Other-farm,,TON,2.3265 +MD,Carbon Monoxide,3F_Ag-res-on-field,,TON,11.76366 +MD,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +MD,Carbon Monoxide,5C_Incineration,,TON,3.629949425 +MD,Carbon Monoxide,5C_Incineration,biomass,TON,145.2641071 +MD,Carbon Monoxide,5C_Open-burning-industrial,,TON,0 +MD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,20843.0859 +MD,Carbon Monoxide,5C_Open-burning-residential,,TON,780.6917451 +MD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,2265.185145 +MD,Carbon Monoxide,5C_Other-open-burning,,TON,448.371 +MD,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.61415 +MD,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,7.26976 +MD,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.049576732 +MD,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.25188393 +MD,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,109.1041855 +MD,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,48.12136324 +MD,Methane,1A2g_Construction_and_Mining,light_oil,TON,19.72067408 +MD,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.272568582 +MD,Methane,1A3bii_Road-LDV,diesel_oil,TON,27.3256767 +MD,Methane,1A3bii_Road-LDV,light_oil,TON,799.7199756 +MD,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.5467617 +MD,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,78.25986295 +MD,Methane,1A3biii_Road-bus,diesel_oil,TON,8.959788462 +MD,Methane,1A3biii_Road-bus,light_oil,TON,1.749125714 +MD,Methane,1A3biii_Road-bus,natural_gas,TON,6.35233 +MD,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,222.6321955 +MD,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.740917927 +MD,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,82.8438107 +MD,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,14.34137939 +MD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.5806858 +MD,Methane,1A3c_Rail,diesel_oil,TON,0.098779195 +MD,Methane,1A3c_Rail,light_oil,TON,0.075609465 +MD,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.962346769 +MD,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,127.6745538 +MD,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,103.5185162 +MD,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.789536331 +MD,Methane,1A4bi_Residential-mobile,light_oil,TON,642.4956266 +MD,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.160166025 +MD,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.4723754 +MD,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.072283351 +MD,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.13892512 +MD,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,137.6356351 +MD,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.20002797 +MD,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,288.5208427 +MD,Nitrogen Oxides,11C_Other-natural,,TON,2992.3573 +MD,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,805.88872 +MD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,11378.516 +MD,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,204.511 +MD,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,884.555114 +MD,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,2.06922 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1226.190942 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,553.005255 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,36.78982074 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4.62480717 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,106.731115 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2278.950757 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,64.08053625 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,312.9952516 +MD,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8192.74765 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,78.7919761 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075462459 +MD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4314.898526 +MD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1605.847982 +MD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,35139.72866 +MD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,415.77089 +MD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2266.115895 +MD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2066.858014 +MD,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,100.9560563 +MD,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.81731 +MD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,21026.42444 +MD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,56.71057794 +MD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9330.0186 +MD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,948.906089 +MD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,270.542701 +MD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,2460.09724 +MD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.296175252 +MD,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3827.877312 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,257.7460345 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,783.2252813 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,38.416339 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14.52159045 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.898220484 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4813.280407 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,961.5413015 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,565.4689922 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,39.94235242 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,847.6640495 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1586.421633 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,356.6749728 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1046.30391 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,9.1000001 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,11.7179977 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4670.26496 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1614.684232 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,20.17305941 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018773801 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,27.730414 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,182.7266317 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,887.8100145 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2026.637321 +MD,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.06384 +MD,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,13.1094055 +MD,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.8545918 +MD,Nitrogen Oxides,2A1_Cement-production,,TON,4082.51517 +MD,Nitrogen Oxides,2A2_Lime-production,,TON,0 +MD,Nitrogen Oxides,2A6_Other-minerals,,TON,492.8647295 +MD,Nitrogen Oxides,2B_Chemicals-other,,TON,32.812142 +MD,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0 +MD,Nitrogen Oxides,2C3_Aluminum-production,,TON,0 +MD,Nitrogen Oxides,2C5_Lead-production,,TON,0 +MD,Nitrogen Oxides,2C7_Other-metal,,TON,0 +MD,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,4.572195 +MD,Nitrogen Oxides,2D3d_Coating-application,,TON,9.981495 +MD,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +MD,Nitrogen Oxides,2D3h_Printing,,TON,3.2872854 +MD,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,445.91015 +MD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,27.413611 +MD,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,4.348025 +MD,Nitrogen Oxides,3Dc_Other-farm,,TON,2.7698 +MD,Nitrogen Oxides,3F_Ag-res-on-field,,TON,0.27875 +MD,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +MD,Nitrogen Oxides,5C_Incineration,,TON,5.261795609 +MD,Nitrogen Oxides,5C_Incineration,biomass,TON,1836.641565 +MD,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0 +MD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,616.65877 +MD,Nitrogen Oxides,5C_Open-burning-residential,,TON,55.10765725 +MD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,86.00939759 +MD,Nitrogen Oxides,5C_Other-open-burning,,TON,12.8106 +MD,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.36565 +MD,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,4.88459 +MD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.294057378 +MD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,785.473639 +MD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.44789754 +MD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.00009151 +MD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.671708827 +MD,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.868795208 +MD,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0539914 +MD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.454130992 +MD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.580572145 +MD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.77632888 +MD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.9001111 +MD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.72896316 +MD,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.333806 +MD,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,944.3515 +MD,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,24.35 +MD,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,27.1540956 +MD,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.0047 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.55947777 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,20.06702022 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,22.56586664 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.47198906 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,32.92836202 +MD,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,14147.53 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,777.8091582 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,85.99416533 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,34.23937504 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.552540628 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.141447612 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,54.3591719 +MD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,62.778219 +MD,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,6.2000006 +MD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.70308001 +MD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.58392458 +MD,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0063 +MD,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.247926 +MD,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0000007 +MD,PM10 Filterable,2A1_Cement-production,,TON,193.633345 +MD,PM10 Filterable,2A2_Lime-production,,TON,0 +MD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,49487.4398 +MD,PM10 Filterable,2A6_Other-minerals,,TON,4079.290769 +MD,PM10 Filterable,2B_Chemicals-other,,TON,64.6028333 +MD,PM10 Filterable,2C_Iron-steel-alloy,,TON,0.082955 +MD,PM10 Filterable,2C3_Aluminum-production,,TON,8.58837 +MD,PM10 Filterable,2C5_Lead-production,,TON,0 +MD,PM10 Filterable,2C7_Other-metal,,TON,0.678403 +MD,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,25.65325 +MD,PM10 Filterable,2D3d_Coating-application,,TON,3.5671714 +MD,PM10 Filterable,2D3e_Degreasing,,TON,0 +MD,PM10 Filterable,2D3h_Printing,,TON,0.1151889 +MD,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0000315 +MD,PM10 Filterable,2H1_Pulp-and-paper,,TON,81.61868 +MD,PM10 Filterable,2H2_Food-and-beverage,,TON,2013.896964 +MD,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,7.3104705 +MD,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,3310.3354 +MD,PM10 Filterable,3Dc_Other-farm,,TON,23045.9317 +MD,PM10 Filterable,5A_Solid-waste-disposal,,TON,0 +MD,PM10 Filterable,5C_Incineration,,TON,0.715397322 +MD,PM10 Filterable,5C_Incineration,biomass,TON,21.61424068 +MD,PM10 Filterable,5C_Open-burning-industrial,,TON,0 +MD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2096.53 +MD,PM10 Filterable,5C_Open-burning-residential,,TON,349.0150527 +MD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,333.6667056 +MD,PM10 Filterable,5C_Other-open-burning,,TON,54.44505 +MD,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.013845 +MD,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,3.153745 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,19.25015328 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1951.256 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,34.9465 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,79.766737 +MD,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.0047 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,81.68632121 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.83112223 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.175642206 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.704552399 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,25.02194345 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,146.2710233 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,39.55737025 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,53.64027402 +MD,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,697.9322577 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,38.60466453 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797949 +MD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,221.3548072 +MD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,14147.73573 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,102.8339154 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2850.948413 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,30.753682 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,215.5306014 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,144.8708574 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.688461363 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.10527 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1316.910304 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.969643242 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,773.10426 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,48.82021141 +MD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.4608315 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,65.83618186 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.01297194 +MD,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,124.72882 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,778.9472265 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,136.2945027 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,33.28100766 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.969314173 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.302543718 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,140.758709 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,85.45349274 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,43.57719202 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.925497275 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,60.03750137 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,660.89618 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2714.138079 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,138.344674 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,6.15 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.54937925 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,24.81202672 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,130.0841397 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.83095611 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.57559E-05 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.6726316 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,127.1418447 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.72291564 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,129.6871091 +MD,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0063 +MD,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.3912983 +MD,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.072302918 +MD,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,253.429445 +MD,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +MD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,49487.72998 +MD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4176.897676 +MD,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,71.7530168 +MD,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.082955 +MD,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,8.58837 +MD,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +MD,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,0.678403 +MD,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,25.913475 +MD,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,4.3535264 +MD,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.2506082 +MD,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0000315 +MD,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,216.50842 +MD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2050.768629 +MD,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,7.511689 +MD,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3310.3354 +MD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,23046.14035 +MD,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2.0433 +MD,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +MD,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.811124569 +MD,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,84.91291243 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2096.64135 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,349.0150527 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,333.6667056 +MD,PM10 Primary (Filt + Cond),5C_Other-open-burning,,TON,54.43 +MD,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0555575 +MD,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.65395 +MD,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.79189125 +MD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,534.50057 +MD,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,12.922 +MD,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,27.0247846 +MD,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.000026 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.345318553 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.00765979 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,13.12955679 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.990845556 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,25.95396585 +MD,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3366.11 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,606.366213 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,72.12491341 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,18.0710208 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.150951094 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.116658477 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.31522984 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,48.246237 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,3.83999407 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.54033001 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.27116672 +MD,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0063 +MD,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.127932 +MD,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0000007 +MD,PM2.5 Filterable,2A1_Cement-production,,TON,138.8824997 +MD,PM2.5 Filterable,2A2_Lime-production,,TON,0 +MD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4948.43498 +MD,PM2.5 Filterable,2A6_Other-minerals,,TON,624.3836908 +MD,PM2.5 Filterable,2B_Chemicals-other,,TON,36.76545736 +MD,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0.0352005 +MD,PM2.5 Filterable,2C3_Aluminum-production,,TON,3.031185 +MD,PM2.5 Filterable,2C5_Lead-production,,TON,0 +MD,PM2.5 Filterable,2C7_Other-metal,,TON,0.23732322 +MD,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,20.101425 +MD,PM2.5 Filterable,2D3d_Coating-application,,TON,2.305907957 +MD,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +MD,PM2.5 Filterable,2D3h_Printing,,TON,0.07791442 +MD,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,2.61383E-05 +MD,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,73.00292 +MD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1616.193467 +MD,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,3.1098215 +MD,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,495.24158 +MD,PM2.5 Filterable,3Dc_Other-farm,,TON,4609.07 +MD,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +MD,PM2.5 Filterable,5C_Incineration,,TON,0.676022365 +MD,PM2.5 Filterable,5C_Incineration,biomass,TON,16.26044609 +MD,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +MD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2096.53 +MD,PM2.5 Filterable,5C_Open-burning-residential,,TON,319.6244381 +MD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,268.9334569 +MD,PM2.5 Filterable,5C_Other-open-burning,,TON,54.43 +MD,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.013845 +MD,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,2.83896 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,17.70823882 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1541.4053 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,23.5185 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,79.637426 +MD,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.000026 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,79.16518357 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.74059471 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.172802062 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.48854429 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,23.96683006 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,137.0485267 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,17.87768808 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,46.64825364 +MD,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,676.9942644 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,35.54088747 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797949 +MD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,205.9349714 +MD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3366.343056 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,70.731384 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,998.5248019 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21.866447 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,60.88026527 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,105.9858595 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.257441185 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.0326634 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,933.1252677 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.170529256 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,520.536295 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,17.62081894 +MD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.962935 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,63.7386803 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.011960658 +MD,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,116.2782203 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,658.6247776 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,122.2064291 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,17.01810799 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.553225714 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.280272461 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,130.7226054 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.88989244 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,40.22026663 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.925497275 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,58.23635671 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,608.0535268 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2650.39758 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,123.812586 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,3.7881022 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.38663016 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,20.51238884 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,126.1815821 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.364521651 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.57559E-05 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.562452 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,116.9717034 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.16121266 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,119.3121572 +MD,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0063 +MD,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.2713043 +MD,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.072302918 +MD,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,198.6785997 +MD,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4948.772998 +MD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,721.9906033 +MD,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,43.91564086 +MD,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.0352005 +MD,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3.031185 +MD,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,0.23732322 +MD,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,20.36165 +MD,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.092262957 +MD,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.21333372 +MD,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.61383E-05 +MD,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,207.89326 +MD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1653.02513 +MD,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3.31104 +MD,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,495.24158 +MD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4609.33585 +MD,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1.500012 +MD,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.761030716 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,79.59011788 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2096.64135 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,319.6244381 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,268.9334569 +MD,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,,TON,54.43 +MD,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0555575 +MD,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.339165 +MD,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,137.5380525 +MD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,22766.586 +MD,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,481.89 +MD,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,203.4186021 +MD,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.00252 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.530341412 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.606468363 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.104234683 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,8.203898289 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.39739728 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,16347.70861 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,307.5657982 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,12.62349197 +MD,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,15.80630485 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.413578016 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.77196E-05 +MD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,466.0887136 +MD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.97108907 +MD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,429.2501424 +MD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.12645676 +MD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,36.13693284 +MD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.851696213 +MD,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.526799234 +MD,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00346748 +MD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.68808204 +MD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.406716618 +MD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.6870118 +MD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.33415592 +MD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.67731204 +MD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.880963709 +MD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001815287 +MD,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,873.8187041 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,29.24665276 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1258.421959 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,186.8375577 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,49.0736021 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.549090241 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,72.5435083 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.43156356 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.847893568 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.041176413 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.253059591 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,11.66445012 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,47.92967658 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2511.1303 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,37.2000019 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,28.123199 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,28.75179297 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.531930821 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.08017202 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.22231E-06 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.038108096 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.476306926 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.699046223 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.08196332 +MD,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.09198 +MD,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.1343688 +MD,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.00412367 +MD,Sulfur Dioxide,2A1_Cement-production,,TON,742.08503 +MD,Sulfur Dioxide,2A2_Lime-production,,TON,0 +MD,Sulfur Dioxide,2A6_Other-minerals,,TON,173.504242 +MD,Sulfur Dioxide,2B_Chemicals-other,,TON,0.6706356 +MD,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0 +MD,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +MD,Sulfur Dioxide,2C5_Lead-production,,TON,0 +MD,Sulfur Dioxide,2C7_Other-metal,,TON,0 +MD,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0317555 +MD,Sulfur Dioxide,2D3d_Coating-application,,TON,0.056014 +MD,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +MD,Sulfur Dioxide,2D3h_Printing,,TON,0.016132 +MD,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,638.62178 +MD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.2438285 +MD,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.025029 +MD,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0165 +MD,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.05168 +MD,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +MD,Sulfur Dioxide,5C_Incineration,,TON,0.248266066 +MD,Sulfur Dioxide,5C_Incineration,biomass,TON,419.650011 +MD,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0 +MD,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +MD,Sulfur Dioxide,5C_Open-burning-residential,,TON,9.184611298 +MD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,25.53928836 +MD,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.62835 +MD,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.050823 +MD,Volatile Organic Compounds,11C_Other-natural,,TON,142009.23 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,11.484996 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,199.75326 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.2695 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,70.901483 +MD,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,46.33245 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,128.1100842 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,120.560045 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24.11824597 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.024054914 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.526981486 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,12.3119899 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.049188363 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,37.18097194 +MD,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,914.8940951 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,342.7126149 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.058919116 +MD,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,11.95890655 +MD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1310.939196 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,660.091057 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,26420.59167 +MD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,111.953717 +MD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1489.235273 +MD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,182.7884975 +MD,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,50.79156062 +MD,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.630908 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1347.435448 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,19.98368375 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,957.73644 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,371.5076392 +MD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,882.45352 +MD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,122.4780046 +MD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.577044732 +MD,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,166.8441746 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,25.46231464 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,25.76998103 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.900148682 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.168058733 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.096126453 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,338.9910327 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,121.1096797 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1254.455478 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.3768478 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,84.54197541 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9895.536025 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2806.545023 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,41.445272 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,10.0000029 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.46416299 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,263.5581108 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,147.5196412 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,70.61901299 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01562495 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.7068574 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3987.434052 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,45.12961676 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8729.999641 +MD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,28.09791453 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,916.1522326 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,297.6705096 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2711.89006 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4333.481557 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,24.36807692 +MD,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.78904848 +MD,Volatile Organic Compounds,2A1_Cement-production,,TON,61.168135 +MD,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +MD,Volatile Organic Compounds,2A6_Other-minerals,,TON,134.9267389 +MD,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +MD,Volatile Organic Compounds,2B_Chemicals-other,,TON,58.192337 +MD,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0.221965 +MD,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +MD,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +MD,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +MD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,17017.65076 +MD,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,469.17259 +MD,Volatile Organic Compounds,2D3d_Coating-application,,TON,11657.1278 +MD,Volatile Organic Compounds,2D3e_Degreasing,,TON,2843.530775 +MD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1311.10324 +MD,Volatile Organic Compounds,2D3h_Printing,,TON,1922.192995 +MD,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,111.1684383 +MD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,477.1171897 +MD,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,255.59521 +MD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1634.489962 +MD,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,165.473925 +MD,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,121.625 +MD,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,47.752 +MD,Volatile Organic Compounds,3B3_Manure-swine,,TON,21.155 +MD,Volatile Organic Compounds,3B4_Manure-poultry,,TON,556.224 +MD,Volatile Organic Compounds,3Dc_Other-farm,,TON,10.3488 +MD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1478.96554 +MD,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,0.69122 +MD,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0 +MD,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1064.1844 +MD,Volatile Organic Compounds,5C_Incineration,,TON,0.603375074 +MD,Volatile Organic Compounds,5C_Incineration,biomass,TON,28.69495779 +MD,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0 +MD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1430.64923 +MD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,78.62026095 +MD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,337.1485603 +MD,Volatile Organic Compounds,5C_Other-open-burning,,TON,60.85035 +MD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,39.91241094 +MD,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,3.756525 +MD,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,146.811005 +ME,Ammonia,1A1a_Public-Electricity,biomass,TON,65.21549654 +ME,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.30103349 +ME,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,7.2285374 +ME,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +ME,Ammonia,1A1a_Public-Electricity,natural_gas,TON,27.81267799 +ME,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.570500275 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.025232396 +ME,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,106.8434341 +ME,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.366967754 +ME,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.024090924 +ME,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.689789638 +ME,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.032351508 +ME,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,55.45512359 +ME,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.01151355 +ME,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +ME,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.469369559 +ME,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.063767164 +ME,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.44825663 +ME,Ammonia,1A3bii_Road-LDV,light_oil,TON,425.5586335 +ME,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.63073731 +ME,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.93656408 +ME,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.051215293 +ME,Ammonia,1A3biii_Road-bus,light_oil,TON,0.445410864 +ME,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.026989825 +ME,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16.81153473 +ME,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.64016546 +ME,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.8006049 +ME,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.813784447 +ME,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.4304465 +ME,Ammonia,1A3c_Rail,diesel_oil,TON,0.416357378 +ME,Ammonia,1A3c_Rail,light_oil,TON,0.000796491 +ME,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.167720933 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,60.39014985 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.29154235 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.518891262 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.335992033 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.346927154 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.282129889 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.570128447 +ME,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.105061411 +ME,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.464141279 +ME,Ammonia,1A4bi_Residential-stationary,biomass,TON,266.1882278 +ME,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,94.64704 +ME,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Ammonia,1A4bi_Residential-stationary,light_oil,TON,5.0625008 +ME,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,25.1461933 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.083846071 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.121255254 +ME,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00622912 +ME,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.434120451 +ME,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.290544768 +ME,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.65586474 +ME,Ammonia,2A6_Other-minerals,Other_Fuel,TON,2.31847 +ME,Ammonia,2D3i_Other-solvent-use,biomass,TON,0.00737262 +ME,Ammonia,2H1_Pulp-and-paper,,TON,235.84735 +ME,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,14.9470798 +ME,Ammonia,3B1a_Cattle-dairy,,TON,468.635 +ME,Ammonia,3B1b_Cattle-non-dairy,,TON,188.074 +ME,Ammonia,3B2_Manure-sheep,,TON,38.15988 +ME,Ammonia,3B3_Manure-swine,,TON,29.532 +ME,Ammonia,3B4_Manure-other,,TON,822.60979 +ME,Ammonia,3B4_Manure-poultry,,TON,465.2316968 +ME,Ammonia,3B4d_Manure-goats,,TON,41.22624 +ME,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,627.57511 +ME,Ammonia,5B_Compost-biogas,Other_Fuel,TON,105.46012 +ME,Ammonia,5C_Incineration,biomass,TON,2.304903 +ME,Ammonia,5D1_Wastewater-domestic,,TON,57.831473 +ME,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.001947 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,70271.10048 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,69826.66727 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3934.052664 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,304000.0082 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5338.989224 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.34909647 +ME,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,127545.705 +ME,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5687434.117 +ME,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21936.217 +ME,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,265249.0481 +ME,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,131280.2356 +ME,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,13590.3151 +ME,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1040.9215 +ME,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1123278.115 +ME,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,15162.0278 +ME,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,620658.66 +ME,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,152670.2969 +ME,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,61660.054 +ME,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1385.716 +ME,Carbon Dioxide,1A3c_Rail,light_oil,TON,62.2149195 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34696.22365 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,47738.24489 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2110.276058 +ME,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,12927.9312 +ME,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,108863.3455 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,133476.4533 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8544.010459 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.249005029 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,763.599 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,371049.4908 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,35778.08458 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,117938.103 +ME,Carbon Monoxide,11C_Other-natural,,TON,87812.868 +ME,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,3425.887855 +ME,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,6.9027913 +ME,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,45.04239 +ME,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,5.42 +ME,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,682.1671458 +ME,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,23.1219745 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,229.2412974 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1706.623318 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,102.4105828 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,5664.088073 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.77372754 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,27.48610422 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,38.15560134 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.202883613 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1713.841875 +ME,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.120895 +ME,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.214511 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,966.5392385 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1079.958452 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078430228 +ME,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2172.364049 +ME,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1692.68866 +ME,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,93365.08916 +ME,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,182.64585 +ME,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4205.311409 +ME,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,380.838057 +ME,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,759.1211648 +ME,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.737128 +ME,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1575.160606 +ME,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,360.4976498 +ME,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1348.41652 +ME,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4692.906647 +ME,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2879.1068 +ME,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,137.584129 +ME,Carbon Monoxide,1A3c_Rail,light_oil,TON,14.01052647 +ME,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,457.5685622 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,616.4385326 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,353.2092944 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,23.0305913 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.111054226 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,499.7699586 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,149.1766765 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9780.771464 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,44.90801169 +ME,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,43.75692157 +ME,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,25494.1726 +ME,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,39814.9562 +ME,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,473.235 +ME,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,25.312499 +ME,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,176.0169586 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,333.4072548 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2519.548722 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.027592628 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.0407658 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,38115.03108 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,70.97274337 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,13464.8883 +ME,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,288.71405 +ME,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,5.9 +ME,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.66497 +ME,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,1.8964386 +ME,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2020.524384 +ME,Carbon Monoxide,2H2_Food-and-beverage,,TON,195.305246 +ME,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.193804 +ME,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,83.55919 +ME,Carbon Monoxide,5C_Incineration,biomass,TON,187.9159289 +ME,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,9478.1802 +ME,Carbon Monoxide,5C_Open-burning-residential,,TON,3964.4955 +ME,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,453.73285 +ME,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.882113 +ME,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.302681643 +ME,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.39336111 +ME,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,46.63895424 +ME,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,10.23071951 +ME,Methane,1A2g_Construction_and_Mining,light_oil,TON,4.276740018 +ME,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.054513706 +ME,Methane,1A3bii_Road-LDV,diesel_oil,TON,9.1254894 +ME,Methane,1A3bii_Road-LDV,light_oil,TON,293.0469419 +ME,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.7254305 +ME,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.16334838 +ME,Methane,1A3biii_Road-bus,diesel_oil,TON,2.582977835 +ME,Methane,1A3biii_Road-bus,light_oil,TON,1.483329036 +ME,Methane,1A3biii_Road-bus,natural_gas,TON,8.177622 +ME,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,35.96754087 +ME,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.589590732 +ME,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,22.3655635 +ME,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,8.375745593 +ME,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.907875 +ME,Methane,1A3c_Rail,diesel_oil,TON,0.059690936 +ME,Methane,1A3c_Rail,light_oil,TON,0.047036216 +ME,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.122300056 +ME,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,36.8692158 +ME,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,29.45416293 +ME,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.458507933 +ME,Methane,1A4bi_Residential-mobile,light_oil,TON,115.2072321 +ME,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.869860828 +ME,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,9.901725586 +ME,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.023749349 +ME,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.032941691 +ME,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,359.1971934 +ME,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.929350944 +ME,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,122.2628 +ME,Nitrogen Oxides,11C_Other-natural,,TON,2413.1336 +ME,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,704.282749 +ME,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,35.7358448 +ME,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,197.9 +ME,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,3.05 +ME,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,397.47653 +ME,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,10.40635 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,364.0854657 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,228.2495957 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15.07470855 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4142.444133 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,50.61168863 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,286.0740158 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,440.1081288 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.81644212 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1953.104292 +ME,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.766815 +ME,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.25537 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1744.664692 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,17.83027183 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092488 +ME,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,309.4352205 +ME,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,445.27147 +ME,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,10772.491 +ME,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,77.83757 +ME,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,439.3021626 +ME,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1146.146214 +ME,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,65.67174721 +ME,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,5.235533 +ME,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6122.013445 +ME,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,46.56919953 +ME,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3363.937 +ME,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,474.2789349 +ME,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,135.42262 +ME,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1326.347421 +ME,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.193656338 +ME,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2681.321378 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,239.8079007 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1429.973534 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,232.5813305 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.100404465 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,723.2862284 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,272.3272524 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,170.7151012 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.37361037 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,102.5643401 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,296.2093012 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,552.4722743 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1703.6463 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,91.12507 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,565.2402158 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,747.0040054 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,32.04428758 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006168314 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.555907 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,702.8841818 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,375.0496342 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,883.89155 +ME,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,1134.519933 +ME,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,32.5 +ME,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,2.257665 +ME,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2455.07649 +ME,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +ME,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.6149705 +ME,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,15.2122 +ME,Nitrogen Oxides,5C_Incineration,biomass,TON,973.4780382 +ME,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,280.419367 +ME,Nitrogen Oxides,5C_Open-burning-residential,,TON,279.84666 +ME,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,20.165893 +ME,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.162118 +ME,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.362942607 +ME,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,217.5061694 +ME,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.07493537 +ME,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.74698521 +ME,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.24633127 +ME,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.589673476 +ME,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.05847664 +ME,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.258675765 +ME,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.431632925 +ME,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.3904965 +ME,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.263609651 +ME,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.69827859 +ME,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,79.94111565 +ME,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.68124296 +ME,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.4025298 +ME,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.16908147 +ME,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,47.21252409 +ME,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.43760249 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,775.4598269 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.172160463 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.772671543 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,86.59465756 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.04054096 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,56.58492249 +ME,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2079319 +ME,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.306445 +ME,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,10253.914 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,477.8467356 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.82031203 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,24.67541817 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.44862872 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.10021128 +ME,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,102.218775 +ME,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,5.4674963 +ME,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.879087568 +ME,PM10 Filterable,2A1_Cement-production,,TON,25.44805 +ME,PM10 Filterable,2A2_Lime-production,,TON,1.47412 +ME,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1577.392199 +ME,PM10 Filterable,2A6_Other-minerals,,TON,992.9056134 +ME,PM10 Filterable,2B_Chemicals-other,,TON,7.4 +ME,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,2.24470349 +ME,PM10 Filterable,2D3d_Coating-application,,TON,0.07753796 +ME,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0.05870154 +ME,PM10 Filterable,2H1_Pulp-and-paper,,TON,579.9294845 +ME,PM10 Filterable,2H2_Food-and-beverage,,TON,107.0841824 +ME,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,14.85985527 +ME,PM10 Filterable,2I_Wood-processing,,TON,1 +ME,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,849.01751 +ME,PM10 Filterable,3Dc_Other-farm,,TON,7467.2096 +ME,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,3.80496 +ME,PM10 Filterable,5C_Incineration,biomass,TON,9.812239 +ME,PM10 Filterable,5C_Open-burning-land-clearing,,TON,953.42644 +ME,PM10 Filterable,5C_Open-burning-residential,,TON,1292.4966 +ME,PM10 Filterable,5C_Open-burning-yard-waste,,TON,75.135996 +ME,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.286091 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,82.96201415 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.86862404 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.7388831 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.1792268 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,86.47661764 +ME,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.137766474 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.20801153 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.329633589 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.480453024 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,805.8618727 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,12.30136011 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.0917206 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,116.2889209 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.093565243 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,146.6053392 +ME,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.24931174 +ME,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.796757 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,148.5292365 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.257159905 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +ME,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,55.80265978 +ME,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10253.914 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,27.9468443 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,716.6354627 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.6156989 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,30.73129851 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,68.5007974 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.780741709 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.12020192 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,355.343844 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.085847403 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,250.41418 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,19.47982333 +ME,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.770579 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,33.7090728 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007918704 +ME,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,69.99409571 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,492.4443059 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,117.4422593 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,30.72006203 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.00582545 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.36968048 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,24.20468447 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.34005308 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.26588816 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.263503623 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,99.16511631 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5706.018347 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,225.2599 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,12.048744 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.285626339 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,59.51880349 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,33.50053033 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.14615E-05 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.87120106 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,452.3208497 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.90920803 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,54.773242 +ME,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,25.56701 +ME,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.91535 +ME,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1577.392199 +ME,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1002.204022 +ME,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,7.4 +ME,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,2.41442659 +ME,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.07753796 +ME,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0.091683 +ME,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,966.2064848 +ME,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,603.1409661 +ME,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,15.05882979 +ME,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,1 +ME,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,849.01751 +ME,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,7467.2096 +ME,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,9.88546146 +ME,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.731328 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,953.42644 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1292.4966 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,75.135996 +ME,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.315015 +ME,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,78.40154176 +ME,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.20408312 +ME,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.7285263 +ME,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.16908147 +ME,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,46.11205809 +ME,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.42812549 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,625.0361442 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.767036966 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.502297877 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,70.57032535 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.010139727 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,48.24290009 +ME,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.19957601 +ME,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.306445 +ME,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1499.734 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,412.2205103 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,72.6993707 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.628018976 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.346723528 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.707134119 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,78.557025 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.2018744 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.483498178 +ME,PM2.5 Filterable,2A1_Cement-production,,TON,13.63289 +ME,PM2.5 Filterable,2A2_Lime-production,,TON,0.74689 +ME,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,157.7392199 +ME,PM2.5 Filterable,2A6_Other-minerals,,TON,138.1194894 +ME,PM2.5 Filterable,2B_Chemicals-other,,TON,2.6117644 +ME,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.801630632 +ME,PM2.5 Filterable,2D3d_Coating-application,,TON,0.06654422 +ME,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0.05870154 +ME,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,437.6452655 +ME,PM2.5 Filterable,2H2_Food-and-beverage,,TON,26.22772652 +ME,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,7.067941129 +ME,PM2.5 Filterable,2I_Wood-processing,,TON,0.327586 +ME,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,167.36872 +ME,PM2.5 Filterable,3Dc_Other-farm,,TON,1493.44016 +ME,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,3.80496 +ME,PM2.5 Filterable,5C_Incineration,biomass,TON,9.24229675 +ME,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,734.99625 +ME,PM2.5 Filterable,5C_Open-burning-residential,,TON,1183.6558 +ME,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,57.922584 +ME,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.286091 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,81.42244026 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.39146419 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.0648796 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.1792268 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,85.37614764 +ME,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.128289474 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.4182872 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.306264006 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.480319598 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,655.3519085 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.890724443 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2.822015255 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,100.2802031 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.063137574 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,138.0528165 +ME,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.24095583 +ME,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.796757 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,144.0733389 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.601883452 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +ME,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,47.21225432 +ME,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1499.734 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,19.4851888 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,295.2162818 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.1574056 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,11.65204437 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,53.3153664 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.489103394 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.02229045 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,260.8189698 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.762551494 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,183.77868 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.151476715 +ME,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.6758448 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,31.0794503 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007301075 +ME,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,67.12712746 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,426.6281316 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,108.395605 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14.74127545 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.905849305 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.14841821 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23.47852814 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.3894781 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.26588816 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.045600517 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,91.23550434 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5688.879427 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,201.59803 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,10.78312 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1.890038218 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,57.73328592 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,30.82050226 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.14615E-05 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.84506468 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,416.13554 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.67192138 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,50.3913708 +ME,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,13.751853 +ME,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.18812 +ME,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,157.7392199 +ME,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,147.4178902 +ME,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,2.6117644 +ME,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.971353752 +ME,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.06654422 +ME,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0.091683 +ME,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,823.9222358 +ME,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,522.2844027 +ME,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,7.266916439 +ME,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.327586 +ME,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,167.36872 +ME,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1493.44016 +ME,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,9.88546146 +ME,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.18494575 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,734.99625 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1183.6558 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,57.922584 +ME,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.315015 +ME,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,21.50516662 +ME,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.54851185 +ME,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,844 +ME,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.79 +ME,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,57.03962856 +ME,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.08325686 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.926002279 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.405595808 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.024614407 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1019.725616 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,81.77955247 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,538.3866327 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1284.086305 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.789454957 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,399.8320223 +ME,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.60943869 +ME,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00153222 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.370919237 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.088546184 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-06 +ME,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,37.9635104 +ME,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.11246639 +ME,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,123.0081884 +ME,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.19057732 +ME,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.717437099 +ME,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.155439578 +ME,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.292449866 +ME,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.005511131 +ME,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.69189328 +ME,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.326111985 +ME,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.3855476 +ME,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.301150073 +ME,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.3428498 +ME,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.4726902 +ME,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001107621 +ME,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,138.3797203 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,26.51178343 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,758.9765602 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,349.3845492 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,17.82833826 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.28151296 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.405445266 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.806785729 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.011822393 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.151612875 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.978050989 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,150.8324911 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,4031.959 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,215.66248 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,2.637261768 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.471674537 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.155426487 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.38728E-06 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.009020669 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,6.7424551 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.140180758 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2.14635999 +ME,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,42.996601 +ME,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.205 +ME,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0.01354599 +ME,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,408.6623728 +ME,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +ME,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.05478624 +ME,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,427.637 +ME,Sulfur Dioxide,5C_Incineration,biomass,TON,56.5762855 +ME,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,93.099205 +ME,Sulfur Dioxide,5C_Open-burning-residential,,TON,46.641127 +ME,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.3572754 +ME,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.887432 +ME,Volatile Organic Compounds,11C_Other-natural,,TON,436878.38 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,58.47430349 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.98837991 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,6.8478276 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0146 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,36.94179711 +ME,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,89.54495 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,33.29388981 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,48.78877832 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.10625091 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,191.2694865 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.656857957 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.162516487 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.088832569 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.008018694 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,125.3932215 +ME,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00733861 +ME,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0140454 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,194.3347627 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,73.25215836 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783821 +ME,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,161.9002583 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,181.064453 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,8602.620079 +ME,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.24396 +ME,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,335.7376052 +ME,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,91.5381654 +ME,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,33.22337111 +ME,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.4348746 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,325.9020452 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,14.72423582 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,352.01386 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,191.627176 +ME,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,373.47634 +ME,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,53.0740288 +ME,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.352552078 +ME,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,43.16961697 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,19.34613193 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,70.13246867 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.42722765 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.154404646 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.13050939 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34.30407131 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,350.4487792 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.366880527 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,10.22892418 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1682.08663 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6036.20064 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,66.25285 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,3.5437506 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,24.1749009 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,69.28984201 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,284.5481663 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005133722 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.5903782 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,15891.9152 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.06455597 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3454.830806 +ME,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.009235 +ME,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,225.2318521 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,97.73119742 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,112.4068395 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,266.002132 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1217.399018 +ME,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +ME,Volatile Organic Compounds,2B_Chemicals-other,,TON,17.484583 +ME,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,5932.65435 +ME,Volatile Organic Compounds,2D3d_Coating-application,,TON,3084.372052 +ME,Volatile Organic Compounds,2D3e_Degreasing,,TON,817.44075 +ME,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.9589999 +ME,Volatile Organic Compounds,2D3h_Printing,,TON,2374.9887 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,32.35817155 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +ME,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1498.85853 +ME,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,326.4392731 +ME,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,113.1385108 +ME,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,37.629 +ME,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,15.099 +ME,Volatile Organic Compounds,3B3_Manure-swine,,TON,2.372 +ME,Volatile Organic Compounds,3B4_Manure-poultry,,TON,36.991 +ME,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,122.334366 +ME,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,9.854609 +ME,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,83.612695 +ME,Volatile Organic Compounds,5C_Incineration,biomass,TON,13.3045865 +ME,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,650.57358 +ME,Volatile Organic Compounds,5C_Open-burning-residential,,TON,269.44753 +ME,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,84.624781 +ME,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,290.86838 +ME,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.333773 +ME,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.00484959 +MI,Ammonia,1A1a_Public-Electricity,biomass,TON,11.30621 +MI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.100975 +MI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,49.890185 +MI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.00282 +MI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,27.849035 +MI,Ammonia,1A1b_Pet-refining,natural_gas,TON,13.26475 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.747228242 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.285551339 +MI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,64.75066035 +MI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.601575954 +MI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,4.059657626 +MI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.791370512 +MI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.004000003 +MI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,239.7589466 +MI,Ammonia,1A2c_Chemicals,natural_gas,TON,0.1 +MI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,26.67946683 +MI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.406577771 +MI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,25.48028051 +MI,Ammonia,1A3bii_Road-LDV,light_oil,TON,2963.106257 +MI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.74653717 +MI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,132.0211674 +MI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,11.93282932 +MI,Ammonia,1A3biii_Road-bus,light_oil,TON,11.10297962 +MI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.01684243 +MI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,59.08505972 +MI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.830888279 +MI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,43.73986402 +MI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,16.87861368 +MI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,38.0523934 +MI,Ammonia,1A3c_Rail,diesel_oil,TON,2.799366585 +MI,Ammonia,1A3c_Rail,light_oil,TON,0.001553477 +MI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10.42850325 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.106228689 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.727830013 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.084672906 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.014729701 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.112836215 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,48.69497026 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.159455074 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.36307541 +MI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.781767418 +MI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,9.729095447 +MI,Ammonia,1A4bi_Residential-stationary,biomass,TON,973.0299559 +MI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,12.96 +MI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.457 +MI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3655.55 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.411298208 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.291771373 +MI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.048556982 +MI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,20.90304177 +MI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.355895134 +MI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,12.18374593 +MI,Ammonia,2A1_Cement-production,,TON,10.348 +MI,Ammonia,2A6_Other-minerals,,TON,88.528 +MI,Ammonia,2B_Chemicals-other,,TON,128.95087 +MI,Ammonia,2C_Iron-steel-alloy,,TON,23.381255 +MI,Ammonia,2C7_Other-metal,Other_Fuel,TON,12.8767 +MI,Ammonia,2C7b_Nickel-production,Other_Fuel,TON,0.098 +MI,Ammonia,2D3d_Coating-application,,TON,117.833 +MI,Ammonia,2D3e_Degreasing,,TON,8.42286 +MI,Ammonia,2H1_Pulp-and-paper,,TON,267.8925 +MI,Ammonia,2H2_Food-and-beverage,,TON,4.4475 +MI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,238.31851 +MI,Ammonia,3B1a_Cattle-dairy,,TON,6294.834 +MI,Ammonia,3B1b_Cattle-non-dairy,,TON,4402.709 +MI,Ammonia,3B2_Manure-sheep,,TON,285.36684 +MI,Ammonia,3B3_Manure-swine,,TON,8695.96 +MI,Ammonia,3B4_Manure-other,,TON,1359.01128 +MI,Ammonia,3B4_Manure-poultry,,TON,2033.73571 +MI,Ammonia,3B4d_Manure-goats,,TON,194.266644 +MI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,8512.67534 +MI,Ammonia,3F_Ag-res-on-field,,TON,13.378342 +MI,Ammonia,5A_Solid-waste-disposal,,TON,0.0025 +MI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,214.14844 +MI,Ammonia,5D1_Wastewater-domestic,,TON,58.6962 +MI,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,2.1 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,707916.5334 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,790212.8322 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,44560.31585 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3285945.903 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,110550.3191 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,12.85704417 +MI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,909758.0331 +MI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,38656449.43 +MI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,127252.992 +MI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2485284.467 +MI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,715519.8731 +MI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,321473.6968 +MI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,638.1357 +MI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3578696.166 +MI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,70349.00553 +MI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2404412.91 +MI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,460500.8812 +MI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,362849.613 +MI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2715.92337 +MI,Carbon Dioxide,1A3c_Rail,light_oil,TON,121.4444416 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,265569.1688 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,365304.0879 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16015.59551 +MI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,96197.51775 +MI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,723581.699 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1158473.568 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,21651.26746 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.84460755 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5952.4406 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1426361.514 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,43823.62874 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,880064.85 +MI,Carbon Monoxide,11C_Other-natural,,TON,84479.878 +MI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1649.917695 +MI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,51.7449 +MI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8167.86795 +MI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.32962 +MI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,5231.786955 +MI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,121.015035 +MI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,123.715945 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2609.316515 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19377.28551 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1163.738209 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8515.127097 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,243.594838 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1450.215206 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.311514206 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.410445373 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,18791.63672 +MI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,103.9331 +MI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.05463 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7985.183886 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,19086.89017 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.668927874 +MI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8430.715565 +MI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11282.73305 +MI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,738528.2798 +MI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1146.518222 +MI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35691.27701 +MI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2024.336211 +MI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,14113.63997 +MI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.635449 +MI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6113.336938 +MI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1356.987505 +MI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4416.998956 +MI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11015.88467 +MI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,16509.41077 +MI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,906.3395105 +MI,Carbon Monoxide,1A3c_Rail,light_oil,TON,27.3602551 +MI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4719.730339 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,143.9249853 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,33.85047826 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,93.06265197 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.051988905 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,22.85803984 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8204.793595 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1141.702047 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,74888.32621 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,341.9445251 +MI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,325.5711855 +MI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,169258.2599 +MI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,132734.3185 +MI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,64.83 +MI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.27 +MI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,8027.35 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3970.809412 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4984.376587 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.426030276 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,47.038856 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,158701.0281 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,88.5765966 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,103653.8948 +MI,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2989.405815 +MI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,8.25291 +MI,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14972.30118 +MI,Carbon Monoxide,2A1_Cement-production,,TON,627.162 +MI,Carbon Monoxide,2A2_Lime-production,,TON,0 +MI,Carbon Monoxide,2A6_Other-minerals,,TON,6707.5294 +MI,Carbon Monoxide,2B_Chemicals-other,,TON,208.416365 +MI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,22039.68693 +MI,Carbon Monoxide,2C3_Aluminum-production,,TON,13.24406 +MI,Carbon Monoxide,2C7_Other-metal,,TON,607.5529 +MI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3482.994 +MI,Carbon Monoxide,2H2_Food-and-beverage,,TON,1176.855537 +MI,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,4.564665 +MI,Carbon Monoxide,3Dc_Other-farm,,TON,2.37 +MI,Carbon Monoxide,3F_Ag-res-on-field,,TON,157.72434 +MI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1005.490371 +MI,Carbon Monoxide,5C_Incineration,,TON,0.892212033 +MI,Carbon Monoxide,5C_Incineration,biomass,TON,511.2430873 +MI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,28322.18936 +MI,Carbon Monoxide,5C_Open-burning-residential,,TON,12237.2531 +MI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,936.959793 +MI,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0 +MI,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,9.424 +MI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.8425799 +MI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,117.5733503 +MI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,527.7219899 +MI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,107.1974262 +MI,Methane,1A2g_Construction_and_Mining,light_oil,TON,70.42924652 +MI,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.431331241 +MI,Methane,1A3bii_Road-LDV,diesel_oil,TON,49.70933634 +MI,Methane,1A3bii_Road-LDV,light_oil,TON,2286.506542 +MI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.4656343 +MI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,154.7088829 +MI,Methane,1A3biii_Road-bus,diesel_oil,TON,17.41951064 +MI,Methane,1A3biii_Road-bus,light_oil,TON,20.40100332 +MI,Methane,1A3biii_Road-bus,natural_gas,TON,1.5706035 +MI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,306.1271834 +MI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.87844396 +MI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,73.99044457 +MI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,16.69105106 +MI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,32.0569585 +MI,Methane,1A3c_Rail,diesel_oil,TON,0.11668973 +MI,Methane,1A3c_Rail,light_oil,TON,0.091569155 +MI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,8.58961178 +MI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,281.9932883 +MI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,224.6376626 +MI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.410673619 +MI,Methane,1A4bi_Residential-mobile,light_oil,TON,761.0277997 +MI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,32.35517451 +MI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,22.04305603 +MI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.366689348 +MI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.256334048 +MI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,1484.70904 +MI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.154160582 +MI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,831.7743695 +MI,Nitrogen Oxides,11C_Other-natural,,TON,13368.4225 +MI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1356.767765 +MI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,207.01 +MI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,54181.72 +MI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,14.52585 +MI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2843.79204 +MI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,347.708165 +MI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,429.62916 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3607.802426 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2589.694105 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,171.1461342 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3972.588997 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,943.0074207 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3548.786671 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,79.43239691 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.194144521 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,25538.26148 +MI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,62.19415 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.352747479 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,37.08020252 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,16257.29001 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,299.0941495 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.11970185 +MI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2683.465819 +MI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3529.490874 +MI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,84632.36626 +MI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,475.304297 +MI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3459.629207 +MI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5478.308356 +MI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,1509.789893 +MI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.4476444 +MI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,21282.89677 +MI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,181.54584 +MI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11760.51215 +MI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1223.968888 +MI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,787.898671 +MI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,5900.612573 +MI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.376892553 +MI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,28254.6842 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,154.248724 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,119.6066655 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,380.0310863 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.489932213 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.519731716 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10160.6944 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2084.392551 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1306.118061 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,86.70584299 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,763.2013642 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1948.476055 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1945.047395 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,233.39 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,8.2 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,19729.69 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8541.062239 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,108.8273381 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.095238153 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,51.160158 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,2754.832084 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,457.7777328 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,6666.55423 +MI,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,1974.806936 +MI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,3.150375 +MI,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8261.059202 +MI,Nitrogen Oxides,2A1_Cement-production,,TON,4674.9345 +MI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,919.3955 +MI,Nitrogen Oxides,2A6_Other-minerals,,TON,4516.81014 +MI,Nitrogen Oxides,2B_Chemicals-other,,TON,70.3047 +MI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,11133.69827 +MI,Nitrogen Oxides,2C3_Aluminum-production,,TON,50.131255 +MI,Nitrogen Oxides,2C5_Lead-production,,TON,0.000015 +MI,Nitrogen Oxides,2C7_Other-metal,,TON,76.507965 +MI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1822.6522 +MI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,77.16715 +MI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,13.44944 +MI,Nitrogen Oxides,3Dc_Other-farm,,TON,68.92 +MI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3.944548 +MI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,698.970335 +MI,Nitrogen Oxides,5C_Incineration,,TON,0.110260107 +MI,Nitrogen Oxides,5C_Incineration,biomass,TON,1675.913444 +MI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,837.934624 +MI,Nitrogen Oxides,5C_Open-burning-residential,,TON,863.806125 +MI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,41.6426652 +MI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MI,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,1.91 +MI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.700495702 +MI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1613.315897 +MI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.434000399 +MI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,90.43829393 +MI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.413005378 +MI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,8.985557192 +MI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.026184652 +MI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.101216671 +MI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.413736096 +MI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.537316619 +MI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,14.19603908 +MI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.9672857 +MI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,192.586695 +MI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.147834213 +MI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2102.723198 +MI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.1148632 +MI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,236.8224133 +MI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,35.427329 +MI,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.334825 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5003.939009 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,98.02286822 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1711.173105 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.019265449 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.004548832 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,419.2735396 +MI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,4.13201 +MI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0392521 +MI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,139334.5096 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,46.27226749 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.45945318 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,29.65795631 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.072055178 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.216544981 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,60.38984037 +MI,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,18650.57803 +MI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,13.99 +MI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.489 +MI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,40.331 +MI,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,20.07852752 +MI,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0517785 +MI,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,136.6224832 +MI,PM10 Filterable,2A1_Cement-production,,TON,683.341775 +MI,PM10 Filterable,2A2_Lime-production,,TON,203.7948296 +MI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,12293.32825 +MI,PM10 Filterable,2A6_Other-minerals,,TON,2719.202763 +MI,PM10 Filterable,2B_Chemicals-other,,TON,151.4644937 +MI,PM10 Filterable,2C_Iron-steel-alloy,,TON,1337.611424 +MI,PM10 Filterable,2C3_Aluminum-production,,TON,85.4536525 +MI,PM10 Filterable,2C6_Zinc-production,,TON,6.41108 +MI,PM10 Filterable,2C7_Other-metal,,TON,266.0418423 +MI,PM10 Filterable,2C7a_Copper-production,,TON,26.071435 +MI,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.994675 +MI,PM10 Filterable,2D3d_Coating-application,,TON,68.075075 +MI,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.273 +MI,PM10 Filterable,2H1_Pulp-and-paper,,TON,490.5818583 +MI,PM10 Filterable,2H2_Food-and-beverage,,TON,632.720887 +MI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,465.5567733 +MI,PM10 Filterable,2I_Wood-processing,,TON,28.83469 +MI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,12102.5429 +MI,PM10 Filterable,3Dc_Other-farm,,TON,53031.7882 +MI,PM10 Filterable,5A_Solid-waste-disposal,,TON,49.89714303 +MI,PM10 Filterable,5C_Incineration,,TON,0.28609 +MI,PM10 Filterable,5C_Incineration,biomass,TON,44.92713134 +MI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2848.976586 +MI,PM10 Filterable,5C_Open-burning-residential,,TON,3989.56534 +MI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,155.15611 +MI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.33501 +MI,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,5.035 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,200.8311316 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,10.17606302 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2310.902963 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.26689 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,437.193333 +MI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,88.497014 +MI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,21.417395 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,264.2597516 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,83.21249436 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.460840978 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,5190.162132 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,110.6722455 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1861.223469 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.77250115 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.010625126 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,895.0851636 +MI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,7.088149013 +MI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.103295 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1227.697951 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,128.0086316 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001536992 +MI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,220.0762352 +MI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,139334.5096 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,216.2838931 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5332.186709 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,33.0358017 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,299.4507203 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,337.8356117 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,75.52371197 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.04708292 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1145.042817 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.13532485 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,870.5505825 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,67.7892313 +MI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,52.543589 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,178.0482413 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015443454 +MI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,522.0497732 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,48.43187008 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.21433288 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,32.1270734 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.082542049 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.475753636 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,154.4806913 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,185.24733 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,94.48349374 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.017286495 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,54.03634993 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,672.3291836 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,20207.05337 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,30.85 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.904 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,103.812 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,688.1623297 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,23.12935826 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000485765 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.7772304 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1789.987526 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.04652953 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,331.7396724 +MI,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,24.21340816 +MI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1657285 +MI,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,252.8227559 +MI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,716.4336765 +MI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,249.001614 +MI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,12293.32825 +MI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3013.798798 +MI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,164.2640532 +MI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2038.017094 +MI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,243.027795 +MI,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,21.115568 +MI,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,371.7720895 +MI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,85.926601 +MI,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.0053255 +MI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,69.440575 +MI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.273 +MI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,769.6955087 +MI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3416.32055 +MI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,472.5168733 +MI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,28.83469 +MI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,12102.5429 +MI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,53037.32273 +MI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,26.906571 +MI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,65.70195 +MI,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.33359667 +MI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,51.96114866 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2848.976586 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3989.56534 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,155.15611 +MI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.93501 +MI,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.035 +MI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,148.49661 +MI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.932464317 +MI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,859.7582679 +MI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.7713682 +MI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,227.3540547 +MI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,27.808639 +MI,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.334825 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4336.933564 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,56.84367839 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,249.6839397 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.926720769 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000507797 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,404.8536276 +MI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.8737531 +MI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.036798831 +MI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,15563.16378 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,11.56345493 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.170627235 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.534592863 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.032615403 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.19776405 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.25450234 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,18640.79778 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.74 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.38 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,21.994 +MI,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,19.99815862 +MI,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0517785 +MI,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,136.6220245 +MI,PM2.5 Filterable,2A1_Cement-production,,TON,384.2251529 +MI,PM2.5 Filterable,2A2_Lime-production,,TON,60.64733838 +MI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1229.564675 +MI,PM2.5 Filterable,2A6_Other-minerals,,TON,761.615808 +MI,PM2.5 Filterable,2B_Chemicals-other,,TON,100.604881 +MI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1151.35504 +MI,PM2.5 Filterable,2C3_Aluminum-production,,TON,79.47622146 +MI,PM2.5 Filterable,2C6_Zinc-production,,TON,5.967101304 +MI,PM2.5 Filterable,2C7_Other-metal,,TON,128.7430188 +MI,PM2.5 Filterable,2C7a_Copper-production,,TON,18.15272894 +MI,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.33778261 +MI,PM2.5 Filterable,2D3d_Coating-application,,TON,57.23189824 +MI,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.273 +MI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,357.4365626 +MI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,265.7063192 +MI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,357.2332263 +MI,PM2.5 Filterable,2I_Wood-processing,,TON,9.43717784 +MI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2205.959814 +MI,PM2.5 Filterable,3Dc_Other-farm,,TON,10600.54681 +MI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,42.34585063 +MI,PM2.5 Filterable,5C_Incineration,,TON,0.202749 +MI,PM2.5 Filterable,5C_Incineration,biomass,TON,25.18479951 +MI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2196.276291 +MI,PM2.5 Filterable,5C_Open-burning-residential,,TON,3653.60109 +MI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,119.6103556 +MI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.33501 +MI,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,1.480882 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,156.7411166 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.960693019 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1067.938575 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.923395 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,427.7439704 +MI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,80.878324 +MI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,21.417395 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,256.2722048 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,82.9354496 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.458433918 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4522.085938 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,72.04739432 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,398.7820019 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.682803219 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.006606529 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,883.2487964 +MI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,6.829891313 +MI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.10084173 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1190.86691 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,117.8162762 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001536992 +MI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,192.3462583 +MI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,15563.16378 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,159.244378 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2328.022483 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.1391811 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,106.4622584 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,257.6938444 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,47.1460743 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.014837912 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,846.1546668 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.319292814 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,625.169284 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,29.55378631 +MI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,33.9233238 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,164.6920716 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014239705 +MI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,480.2861315 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,13.40143544 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.42394773 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.932823586 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.042711778 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.447968499 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,147.9775501 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,179.6899081 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,87.20503778 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.017286495 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,52.41526735 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,618.5694705 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,20080.05463 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,27.6 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.822 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,85.379 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,667.517649 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,21.27917672 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000485765 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.5739098 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1646.789737 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.74513509 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,305.2004834 +MI,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,24.13136096 +MI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1657285 +MI,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,252.8222972 +MI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,417.3171012 +MI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,105.854443 +MI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1229.564675 +MI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1056.57689 +MI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,113.4044446 +MI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1851.760834 +MI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,237.0503715 +MI,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,20.6715593 +MI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,234.4731837 +MI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,78.00789898 +MI,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.34843311 +MI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,58.59739824 +MI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.273 +MI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,636.5501245 +MI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3049.306687 +MI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,364.1933363 +MI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,9.43717784 +MI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2205.959814 +MI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10606.08133 +MI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,19.53193 +MI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,58.1506578 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.254506608 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,32.21453073 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2196.276291 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3653.60109 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,119.6103556 +MI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.93501 +MI,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.480882 +MI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,726.1747 +MI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,12.99520365 +MI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,153962.765 +MI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,31.92395 +MI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,444.8215715 +MI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,496.922775 +MI,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,6.68887 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.42203211 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.805785184 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.294037479 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1788.711775 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.099944974 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,291.5574316 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,10673.32065 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,183.0005533 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.401191179 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4057.146532 +MI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,77.028095 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.985285 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.157185 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,35.58485454 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.936799187 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.19268E-05 +MI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,326.893805 +MI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.987701561 +MI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,619.1089988 +MI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.110351863 +MI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,39.84155085 +MI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,6.280339544 +MI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,5.144579821 +MI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00337861 +MI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30.8722143 +MI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.125790802 +MI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20.80753187 +MI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.369340902 +MI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.80989659 +MI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.159595714 +MI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00216081 +MI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.28694486 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,16.79782934 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,113.5052599 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,623.3026143 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.900788781 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.286440383 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,78.30530517 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.103303891 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.174024077 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.08972369 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.128157835 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.14277806 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,509.3392398 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,312.97 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,2.7 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,121.04 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.31549142 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.39425774 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.14195E-05 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07030833 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,25.91616243 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.396577621 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,16.02382049 +MI,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,112.5209209 +MI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0936726 +MI,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,32.90655047 +MI,Sulfur Dioxide,2A1_Cement-production,,TON,2503.5185 +MI,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1052.730305 +MI,Sulfur Dioxide,2A6_Other-minerals,,TON,1325.358635 +MI,Sulfur Dioxide,2B_Chemicals-other,,TON,36.599815 +MI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,3385.339955 +MI,Sulfur Dioxide,2C3_Aluminum-production,,TON,19.860985 +MI,Sulfur Dioxide,2C5_Lead-production,,TON,0 +MI,Sulfur Dioxide,2C7_Other-metal,,TON,125.035 +MI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,60.327415 +MI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,11.041 +MI,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,0 +MI,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +MI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.731272 +MI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,130.03265 +MI,Sulfur Dioxide,5C_Incineration,,TON,0.110630142 +MI,Sulfur Dioxide,5C_Incineration,biomass,TON,311.8095513 +MI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,278.1942855 +MI,Sulfur Dioxide,5C_Open-burning-residential,,TON,143.967623 +MI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.99779042 +MI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.2900085 +MI,Volatile Organic Compounds,11C_Other-natural,,TON,478195.57 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,54.720465 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,11.20999 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,905.272755 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.20213 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,469.269055 +MI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,161.772023 +MI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,325.2747366 +MI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,136.0442615 +MI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,74.147155 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,346.0825844 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,557.5927586 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,114.5168929 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,220.0894872 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,2.2347E-05 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,66.64637919 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,18.54640706 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.459763208 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.016811801 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1637.11039 +MI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,18.176675 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.01279576 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.65472924 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1598.350283 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1154.039502 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.093237671 +MI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,786.4466441 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1319.186177 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,68498.56942 +MI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,150.7963386 +MI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2851.98742 +MI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,493.2753038 +MI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,551.5734378 +MI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.1559632 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1562.609957 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,50.90304941 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1144.765055 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,430.578799 +MI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2070.454687 +MI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,292.5495024 +MI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.720170869 +MI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,351.785654 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,5.262679419 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.555652179 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.908606786 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.011783949 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,23.2746849 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,542.8851621 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,262.5419691 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2735.095704 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,48.558225 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,76.1015825 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11294.85273 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,19575.79865 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,9.09 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.32 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1103.23 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,780.4079781 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,307.8071821 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.07926453 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.376259 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,62029.22346 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.95852945 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,21777.01465 +MI,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,8746.060703 +MI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,75.24377 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,755.842665 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,650.6764581 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2213.260131 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,17047.95446 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +MI,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,16982.36808 +MI,Volatile Organic Compounds,2A1_Cement-production,,TON,42.0215 +MI,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.82885 +MI,Volatile Organic Compounds,2A6_Other-minerals,,TON,62.31636624 +MI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,3015.204049 +MI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1220.423266 +MI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,937.6003045 +MI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,194.394745 +MI,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +MI,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.04079 +MI,Volatile Organic Compounds,2C7_Other-metal,,TON,453.953795 +MI,Volatile Organic Compounds,2C7a_Copper-production,,TON,0 +MI,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,18.3382 +MI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,44195.42997 +MI,Volatile Organic Compounds,2D3d_Coating-application,,TON,40459.16588 +MI,Volatile Organic Compounds,2D3e_Degreasing,,TON,7482.429766 +MI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,47.79189741 +MI,Volatile Organic Compounds,2D3h_Printing,,TON,13257.35009 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,861.5901814 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4283.513234 +MI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,994.18775 +MI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1127.449599 +MI,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2519.863858 +MI,Volatile Organic Compounds,2I_Wood-processing,,TON,0.03 +MI,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,505.428 +MI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,353.508 +MI,Volatile Organic Compounds,3B3_Manure-swine,,TON,698.234 +MI,Volatile Organic Compounds,3B4_Manure-poultry,,TON,160.076 +MI,Volatile Organic Compounds,3Dc_Other-farm,,TON,28.415 +MI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3354.290648 +MI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,9.37669 +MI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,757.229815 +MI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1515.2623 +MI,Volatile Organic Compounds,5C_Incineration,,TON,0.611543308 +MI,Volatile Organic Compounds,5C_Incineration,biomass,TON,55.3728848 +MI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1944.008101 +MI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,831.706782 +MI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,174.7504477 +MI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,326.82 +MI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,111.7033595 +MI,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.002995 +MI,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,916.4989433 +MI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.118775 +MN,Ammonia,1A1a_Public-Electricity,biomass,TON,234.449 +MN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.47437395 +MN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,90.97590362 +MN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,120.6419415 +MN,Ammonia,1A1b_Pet-refining,natural_gas,TON,25.50380659 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.758668898 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.134970295 +MN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,213.6835066 +MN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.07252802 +MN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,2.185383574 +MN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.105523497 +MN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.048982096 +MN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,257.4367128 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.155037396 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.07534 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02462852 +MN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.05053543 +MN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.336584392 +MN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,18.31528356 +MN,Ammonia,1A3bii_Road-LDV,light_oil,TON,1905.441237 +MN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.05911525 +MN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,82.78775562 +MN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.929475498 +MN,Ammonia,1A3biii_Road-bus,light_oil,TON,1.966063585 +MN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.013823799 +MN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,44.16769357 +MN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.77594344 +MN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,39.9015018 +MN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,13.32630551 +MN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.9140099 +MN,Ammonia,1A3c_Rail,diesel_oil,TON,10.41811731 +MN,Ammonia,1A3c_Rail,light_oil,TON,0.003677818 +MN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.111893876 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,5.745587732 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.039511207 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.003226444 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.050731513 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.42705463 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.320114556 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.717346378 +MN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.36676421 +MN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.914805311 +MN,Ammonia,1A4bi_Residential-stationary,biomass,TON,2325.366342 +MN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,18.8160017 +MN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.24300001 +MN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1472.103878 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.11381455 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.711017127 +MN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024255904 +MN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,12.46821618 +MN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.240469044 +MN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,7.079472112 +MN,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.001 +MN,Ammonia,2A6_Other-minerals,,TON,4.596977 +MN,Ammonia,2B_Chemicals-other,,TON,5.508954768 +MN,Ammonia,2C_Iron-steel-alloy,,TON,0.06886592 +MN,Ammonia,2C6_Zinc-production,,TON,0.035 +MN,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.860509 +MN,Ammonia,2D3d_Coating-application,,TON,8.858171 +MN,Ammonia,2D3h_Printing,,TON,0.672567 +MN,Ammonia,2H1_Pulp-and-paper,,TON,51.4329 +MN,Ammonia,2H2_Ethanol Production,,TON,2.214 +MN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,166.8147 +MN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,7.5262 +MN,Ammonia,3B1a_Cattle-dairy,,TON,6331.916 +MN,Ammonia,3B1b_Cattle-non-dairy,,TON,13481.344 +MN,Ammonia,3B2_Manure-sheep,,TON,505.15212 +MN,Ammonia,3B3_Manure-swine,,TON,74713.119 +MN,Ammonia,3B4_Manure-other,,TON,1211.62932 +MN,Ammonia,3B4_Manure-poultry,,TON,2220.124085 +MN,Ammonia,3B4d_Manure-goats,,TON,256.726404 +MN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,30885.14874 +MN,Ammonia,3Dc_Other-farm,,TON,0.01 +MN,Ammonia,3F_Ag-res-on-field,,TON,357.5997 +MN,Ammonia,5B_Compost-biogas,Other_Fuel,TON,131.77417 +MN,Ammonia,5C_Incineration,biomass,TON,3.7425 +MN,Ammonia,5C_Open-burning-industrial,Other_Fuel,TON,0.0002155 +MN,Ammonia,5D1_Wastewater-domestic,Other_Fuel,TON,20.98977047 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,339799.633 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,373423.249 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21058.87556 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1606629.504 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,28160.96065 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.09457297 +MN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,621203.7748 +MN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22573386.61 +MN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,133418.526 +MN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1342299.496 +MN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,301276.654 +MN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,62608.80198 +MN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,629.8085 +MN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2934739.225 +MN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,18567.00233 +MN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2198284.625 +MN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,361842.4271 +MN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,222053.318 +MN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6495.853365 +MN,Carbon Dioxide,1A3c_Rail,light_oil,TON,287.378126 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,162306.2706 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,230340.5464 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9993.189332 +MN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,45130.81871 +MN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,365450.7135 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3214384.084 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,53272.33067 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.99398909 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2973.4444 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,841095.8442 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,152753.134 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,504262.2505 +MN,Carbon Monoxide,11C_Other-natural,,TON,95850.529 +MN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,2047.219788 +MN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,28.42984852 +MN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7300.408993 +MN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.05365 +MN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1465.973141 +MN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,799.0010779 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1570.807457 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9226.699589 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,555.2418791 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,7.810460472 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8974.396082 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,18.11978232 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,261.4750933 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1417.912755 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.632071907 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,327.9510274 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5440.460168 +MN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,6.11153 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.057627659 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.51566332 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.519961546 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5108.000701 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5732.522876 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.470581031 +MN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7475.830453 +MN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,10660.29008 +MN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,536864.4316 +MN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1304.16373 +MN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29143.20495 +MN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,772.4803036 +MN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3333.2023 +MN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,6.8917445 +MN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4370.480931 +MN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,459.3111831 +MN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3711.30865 +MN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10857.54822 +MN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11299.4339 +MN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3341.226561 +MN,Carbon Monoxide,1A3c_Rail,light_oil,TON,64.27662387 +MN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,452.5281321 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,587.6255855 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,518.6086256 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,18.35692553 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.778238432 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.310822438 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5023.619276 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,750.5090196 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,46726.48636 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,225.7085462 +MN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,152.7480638 +MN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,85368.49354 +MN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,312837.3544 +MN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,94.0799815 +MN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.215000154 +MN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3393.625048 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11157.9645 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11594.04904 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.218269682 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.5014675 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,97530.20632 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,303.016793 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,57663.78199 +MN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,97.08174924 +MN,Carbon Monoxide,2A6_Other-minerals,,TON,581.8823918 +MN,Carbon Monoxide,2B_Chemicals-other,,TON,90.817471 +MN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1699.239323 +MN,Carbon Monoxide,2C3_Aluminum-production,,TON,3.4568 +MN,Carbon Monoxide,2C5_Lead-production,,TON,13.456034 +MN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,12.5509 +MN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,20.07593 +MN,Carbon Monoxide,2D3d_Coating-application,,TON,9.9817338 +MN,Carbon Monoxide,2D3e_Degreasing,,TON,0.02809 +MN,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.07998 +MN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1917.906345 +MN,Carbon Monoxide,2H2_Ethanol Production,,TON,158.62666 +MN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1603.684486 +MN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,14.58145 +MN,Carbon Monoxide,3Dc_Other-farm,,TON,51.6856 +MN,Carbon Monoxide,3F_Ag-res-on-field,,TON,2665.23193 +MN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,372.29411 +MN,Carbon Monoxide,5C_Incineration,,TON,0.053587791 +MN,Carbon Monoxide,5C_Incineration,biomass,TON,630.7431452 +MN,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,1.117589 +MN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,19615.24461 +MN,Carbon Monoxide,5C_Open-burning-residential,,TON,2491.01669 +MN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,474.672995 +MN,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,6.6054 +MN,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.9883439 +MN,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,55.59799748 +MN,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,249.4106545 +MN,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,54.06808406 +MN,Methane,1A2g_Construction_and_Mining,light_oil,TON,22.4387632 +MN,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.327082005 +MN,Methane,1A3bii_Road-LDV,diesel_oil,TON,33.85718602 +MN,Methane,1A3bii_Road-LDV,light_oil,TON,1539.821041 +MN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.21298778 +MN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,106.0910151 +MN,Methane,1A3biii_Road-bus,diesel_oil,TON,8.385816117 +MN,Methane,1A3biii_Road-bus,light_oil,TON,7.220356823 +MN,Methane,1A3biii_Road-bus,natural_gas,TON,6.7850613 +MN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,133.4458036 +MN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.786863706 +MN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,83.4739868 +MN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,22.83399674 +MN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.096328 +MN,Methane,1A3c_Rail,diesel_oil,TON,0.27850695 +MN,Methane,1A3c_Rail,light_oil,TON,0.21953019 +MN,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.189903466 +MN,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,180.9984084 +MN,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,152.3503796 +MN,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.600143092 +MN,Methane,1A4bi_Residential-mobile,light_oil,TON,385.9900777 +MN,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,89.53605329 +MN,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,53.17115294 +MN,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.048579687 +MN,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.12811361 +MN,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,917.4985122 +MN,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.967896461 +MN,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,522.41772 +MN,Nitrogen Oxides,11C_Other-natural,,TON,24927.925 +MN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1496.178051 +MN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,169.6179539 +MN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,28514.58 +MN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,36.89893 +MN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1130.585992 +MN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1698.030973 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1771.39399 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1233.352839 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,81.43559043 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.722841709 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3068.326886 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,10.29744794 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1153.130146 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3494.624096 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.07582622 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,286.9016389 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,8707.27655 +MN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,7.26753 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.986191734 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,5.346859259 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.772888205 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,9223.337103 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,92.06516943 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.090554911 +MN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2341.336643 +MN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2598.252237 +MN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,57267.70186 +MN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,502.978061 +MN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2830.547679 +MN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2564.602551 +MN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,283.1374101 +MN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,4.1602814 +MN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16545.26237 +MN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,52.57173169 +MN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9942.67404 +MN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,987.4565839 +MN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,520.772407 +MN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19368.59808 +MN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.935500656 +MN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3017.710584 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,209.9626854 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2337.211367 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,38.47378513 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.520542532 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.216699245 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6016.370721 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1351.50766 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,880.2412661 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,58.25033507 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,358.0607333 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1001.64099 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,3466.246165 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,338.6879085 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.37399741 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,8516.929215 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23964.58144 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,288.2083757 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.27234178 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.547194 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1435.212411 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1601.248159 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3757.223526 +MN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,38.26283 +MN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,173.4068 +MN,Nitrogen Oxides,2A6_Other-minerals,,TON,912.70988 +MN,Nitrogen Oxides,2B_Chemicals-other,,TON,129.63716 +MN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,24792.42543 +MN,Nitrogen Oxides,2C3_Aluminum-production,,TON,44.103665 +MN,Nitrogen Oxides,2C5_Lead-production,,TON,21.10916062 +MN,Nitrogen Oxides,2C6_Zinc-production,,TON,0.00536 +MN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,16.59549827 +MN,Nitrogen Oxides,2D3d_Coating-application,,TON,12.471668 +MN,Nitrogen Oxides,2D3e_Degreasing,,TON,0.01522 +MN,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.3828 +MN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1055.69382 +MN,Nitrogen Oxides,2H2_Ethanol Production,,TON,129.84716 +MN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,170.48146 +MN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,8.0739 +MN,Nitrogen Oxides,3Dc_Other-farm,,TON,65.1245 +MN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,78.271617 +MN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,130.52794 +MN,Nitrogen Oxides,5C_Incineration,,TON,6.606301122 +MN,Nitrogen Oxides,5C_Incineration,biomass,TON,2658.82055 +MN,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.6692689 +MN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,580.333058 +MN,Nitrogen Oxides,5C_Open-burning-residential,,TON,175.837117 +MN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,21.09658095 +MN,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,4.885 +MN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.647003267 +MN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1016.855793 +MN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.429144739 +MN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,61.92748907 +MN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.736453029 +MN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.695046943 +MN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0350872 +MN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.296181835 +MN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.53561093 +MN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.343880698 +MN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,16.4060305 +MN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.77652047 +MN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,45.04889774 +MN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.125817841 +MN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2421.177356 +MN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,16.2039945 +MN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,34.58694263 +MN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,380.1427702 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.250879128 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4347.603231 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.410196535 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,72.16041434 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,919.0685646 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.593886432 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,18.73995532 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,223.7646194 +MN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.211852 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.19330571 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,1.086542331 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.005536049 +MN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,81276.02426 +MN,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0.2231 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,499.3267293 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,169.0109186 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.421990419 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.526751561 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.068469534 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.74701683 +MN,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,46555.18295 +MN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,20.32127835 +MN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.262439993 +MN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,16.96455571 +MN,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0088724 +MN,PM10 Filterable,2A1_Cement-production,,TON,6.8177935 +MN,PM10 Filterable,2A2_Lime-production,,TON,39.2852948 +MN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,14112.08493 +MN,PM10 Filterable,2A6_Other-minerals,,TON,3830.703288 +MN,PM10 Filterable,2B_Chemicals-other,,TON,130.9741941 +MN,PM10 Filterable,2C_Iron-steel-alloy,,TON,4199.277678 +MN,PM10 Filterable,2C3_Aluminum-production,,TON,11.938452 +MN,PM10 Filterable,2C5_Lead-production,,TON,17.43752786 +MN,PM10 Filterable,2C6_Zinc-production,,TON,0.7724 +MN,PM10 Filterable,2C7_Other-metal,,TON,2171.010073 +MN,PM10 Filterable,2C7a_Copper-production,,TON,0.78322597 +MN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,10.465048 +MN,PM10 Filterable,2D3d_Coating-application,,TON,562.8671819 +MN,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.5168966 +MN,PM10 Filterable,2D3h_Printing,,TON,21.37082 +MN,PM10 Filterable,2H1_Pulp-and-paper,,TON,697.2224325 +MN,PM10 Filterable,2H2_Ethanol Production,,TON,51.957543 +MN,PM10 Filterable,2H2_Food-and-beverage,,TON,1528.391362 +MN,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,322.8616302 +MN,PM10 Filterable,2I_Wood-processing,,TON,83.9419244 +MN,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,36224.89924 +MN,PM10 Filterable,3Dc_Other-farm,,TON,165568.403 +MN,PM10 Filterable,5A_Solid-waste-disposal,,TON,32.64718572 +MN,PM10 Filterable,5C_Incineration,,TON,0.6858 +MN,PM10 Filterable,5C_Incineration,biomass,TON,33.9442697 +MN,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.472686 +MN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1973.13173 +MN,PM10 Filterable,5C_Open-burning-residential,,TON,1007.61633 +MN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,78.6035839 +MN,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.20217 +MN,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,1.0461932 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,210.4690096 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.99559118 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3616.375823 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,18.1924795 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,62.64003236 +MN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,680.3913749 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,128.066589 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39.59419608 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.599935192 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.260052176 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4544.553124 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,5.597546517 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,95.30304725 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1111.742036 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,5.141292825 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,19.13793149 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,356.2092006 +MN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.5529745 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.4534226 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,1.303619344 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0364201 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,784.8961555 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.62157791 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +MN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,185.2887401 +MN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,81276.02426 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,144.5197028 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3431.776524 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,34.6303377 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,173.8955185 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,179.7192543 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,17.3145843 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.12566736 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,950.3016298 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.765589564 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,732.392574 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,57.18216078 +MN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.899787 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,617.1710594 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036564601 +MN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,60.13219349 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,514.4369443 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,179.2442343 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,7.040613776 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.761398062 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.15349766 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,45.23893196 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,124.2210652 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,59.22652213 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.260613344 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,25.35140201 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,337.2032499 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,49479.08813 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,44.7820664 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.578340329 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,44.10785365 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1931.967105 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,29.38601909 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001389086 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.3870959 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1097.760522 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,33.76849039 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,233.9410327 +MN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0104974 +MN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,7.08351112 +MN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,65.57120068 +MN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,14112.08493 +MN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5788.782106 +MN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,179.6558357 +MN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5585.734797 +MN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,49.048503 +MN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,40.77757065 +MN,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.553 +MN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,2366.285725 +MN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,7.40008097 +MN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,15.949778 +MN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,563.9947397 +MN,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.5168966 +MN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,21.37082 +MN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,935.4209009 +MN,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,66.58051 +MN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3506.2199 +MN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,539.4125456 +MN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,83.9419244 +MN,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,36224.89924 +MN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,165639.3992 +MN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,427.608708 +MN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,60.67971679 +MN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.985573262 +MN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,58.85417051 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.980352 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1973.13173 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1007.61633 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,78.6035839 +MN,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.616162 +MN,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.0461932 +MN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,29.86703253 +MN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.441174417 +MN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,650.468367 +MN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.9961287 +MN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,25.77389434 +MN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,235.5995968 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.094375751 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3700.708371 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.396041811 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,58.72732682 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,132.6980173 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.670024096 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,18.49320239 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,152.3447322 +MN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.198815 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.048372456 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.61929254 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.002316389 +MN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9471.86809 +MN,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0.2231 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,431.7678186 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,168.6268366 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.193199707 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.196600357 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.052968774 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.53586805 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,46554.67223 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,15.61728285 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.201690025 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.330513896 +MN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0072029 +MN,PM2.5 Filterable,2A1_Cement-production,,TON,2.533130361 +MN,PM2.5 Filterable,2A2_Lime-production,,TON,19.51241249 +MN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1411.208493 +MN,PM2.5 Filterable,2A6_Other-minerals,,TON,1512.202954 +MN,PM2.5 Filterable,2B_Chemicals-other,,TON,81.66481832 +MN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,3252.384192 +MN,PM2.5 Filterable,2C3_Aluminum-production,,TON,8.755647 +MN,PM2.5 Filterable,2C5_Lead-production,,TON,13.50268888 +MN,PM2.5 Filterable,2C6_Zinc-production,,TON,0.688457 +MN,PM2.5 Filterable,2C7_Other-metal,,TON,614.22871 +MN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.66154748 +MN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,7.194455 +MN,PM2.5 Filterable,2D3d_Coating-application,,TON,474.1450496 +MN,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.428915 +MN,PM2.5 Filterable,2D3h_Printing,,TON,21.266398 +MN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,400.2561753 +MN,PM2.5 Filterable,2H2_Ethanol Production,,TON,51.132346 +MN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,804.5894446 +MN,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,112.7372636 +MN,PM2.5 Filterable,2I_Wood-processing,,TON,27.7078592 +MN,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,5390.20868 +MN,PM2.5 Filterable,3Dc_Other-farm,,TON,33124.89995 +MN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,27.40108541 +MN,PM2.5 Filterable,5C_Incineration,,TON,0.6858 +MN,PM2.5 Filterable,5C_Incineration,biomass,TON,24.6324827 +MN,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.1515936 +MN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1521.087759 +MN,PM2.5 Filterable,5C_Open-burning-residential,,TON,922.76643 +MN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,60.5957755 +MN,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.201104 +MN,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.851629221 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,195.2871444 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.311019083 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1845.666834 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,12.9846137 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,53.82698422 +MN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,535.8482015 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,124.1734507 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39.44982418 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.597848169 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.103375267 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3890.578421 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,5.551217947 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,81.78084668 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,322.6722708 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.82573463 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,18.92280516 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,283.389179 +MN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.5333175 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.280685504 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.761043733 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.009919309 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,761.3492093 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.15962995 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +MN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,159.369477 +MN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9471.86809 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,112.2963699 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1937.432883 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.0086608 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,87.10989861 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,135.523882 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.876728147 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.057789405 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,695.4196615 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.263791224 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,511.266911 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,26.40474115 +MN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.691186 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,569.563156 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.033713517 +MN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,55.32155012 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,446.8240702 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,178.7727688 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.828313248 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.433340001 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.138416577 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,40.15676667 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,120.494432 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,54.68513919 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.260613344 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,24.59085644 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,310.2393548 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,49416.00122 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,40.0780996 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.517589684 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,36.47380579 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1874.008259 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,27.03560124 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001389086 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.2854818 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1009.940682 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.75542913 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,215.2256891 +MN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0088549 +MN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,2.798847604 +MN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,45.79831869 +MN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1411.208493 +MN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3373.594414 +MN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,130.346645 +MN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4638.841696 +MN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,45.866046 +MN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,36.8427334 +MN,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.469457 +MN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,807.8744381 +MN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,7.27840251 +MN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,12.679185 +MN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,475.2726074 +MN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.428915 +MN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,21.266398 +MN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,638.4546677 +MN,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,65.755313 +MN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2782.417862 +MN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,328.7943582 +MN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,27.7078592 +MN,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,5390.20868 +MN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,33195.89615 +MN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,298.95696 +MN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,55.43358648 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.989577146 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,49.53837963 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.6592596 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1521.087759 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,922.50453 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,60.5957755 +MN,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.615096 +MN,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.851629221 +MN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,199.81016 +MN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,18.9580992 +MN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,30643.5915 +MN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.04475 +MN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,68.37279576 +MN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,741.3488668 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.03162826 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.512842338 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.156061352 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,15.19033885 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,334.890625 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.060395813 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,660.9726539 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3892.292103 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,184.4956987 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,34.2139359 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,350.7546996 +MN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0406252 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.704837695 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,17.82447181 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.033847853 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,17.81538291 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.467264548 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.52635E-05 +MN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,278.5325422 +MN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.464962162 +MN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,368.9849218 +MN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.16418974 +MN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,21.9980047 +MN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.646923846 +MN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.02112543 +MN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.003334482 +MN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25.31935731 +MN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.302849733 +MN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.92460018 +MN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.901617284 +MN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.62056273 +MN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,11.698328 +MN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005114969 +MN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,48.92135694 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,24.48292666 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,302.4143159 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,29.09397278 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.85536665 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.683861873 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.44736477 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.924346657 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.858120651 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.055979898 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.529273343 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.639406938 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,1353.559556 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,801.5613215 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,10.35179335 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,50.89364694 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37.02150617 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.970265658 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.12509E-05 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.035122609 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,15.27642534 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.867962324 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.177105437 +MN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0608934 +MN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,358.9156 +MN,Sulfur Dioxide,2A6_Other-minerals,,TON,885.623646 +MN,Sulfur Dioxide,2B_Chemicals-other,,TON,88.96507 +MN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,4143.384547 +MN,Sulfur Dioxide,2C3_Aluminum-production,,TON,7.84508 +MN,Sulfur Dioxide,2C5_Lead-production,,TON,1768.990651 +MN,Sulfur Dioxide,2C6_Zinc-production,,TON,0.01071 +MN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,3.470109 +MN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.01170175 +MN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,31.76 +MN,Sulfur Dioxide,2D3d_Coating-application,,TON,2.564981077 +MN,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.06611 +MN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,6.017524507 +MN,Sulfur Dioxide,2H2_Ethanol Production,,TON,84.7806 +MN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,68.64714 +MN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.399205 +MN,Sulfur Dioxide,3Dc_Other-farm,,TON,31.9227 +MN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,15.085262 +MN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,62.030364 +MN,Sulfur Dioxide,5C_Incineration,,TON,0.065209585 +MN,Sulfur Dioxide,5C_Incineration,biomass,TON,213.0302109 +MN,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.0357867 +MN,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,192.6704605 +MN,Sulfur Dioxide,5C_Open-burning-residential,,TON,29.3057956 +MN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.558366687 +MN,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.23711 +MN,Volatile Organic Compounds,11C_Other-natural,,TON,448225.5 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,125.8528625 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.119945467 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,486.8949179 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.0062924 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,71.81563923 +MN,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,107.4550579 +MN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,799.4782269 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,176.7599873 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,266.6229905 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,54.29856405 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.585366778 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,286.0880495 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,84.82755233 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,24.5955359 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.520944364 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,46.47173143 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,731.7044942 +MN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.395864 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.058519085 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.031830327 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.050860467 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1027.103861 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,394.6430997 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.070702871 +MN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,564.633212 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1048.553184 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,46976.52021 +MN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,162.717447 +MN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2260.166475 +MN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,256.6136824 +MN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,173.9370457 +MN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.88609646 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,961.241836 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,17.53138606 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,951.250068 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,449.4822601 +MN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1527.5851 +MN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,992.4983672 +MN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.726533544 +MN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,40.63606978 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,17.21386717 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,170.1745543 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.202289826 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.181697836 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022079899 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,335.5878639 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,174.2795218 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1768.003336 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32.93241662 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,35.70342121 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5755.415784 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,50646.84755 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,13.17120182 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.170100017 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,466.5252835 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2187.533574 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,576.6458472 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.226663676 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.1844057 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,40772.11958 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,81.39541356 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,15017.6025 +MN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,706.121675 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,21.36796316 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,324.9241148 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7059.090434 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7084.285563 +MN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.7043 +MN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.2598 +MN,Volatile Organic Compounds,2A6_Other-minerals,,TON,34.95455374 +MN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,903.8917275 +MN,Volatile Organic Compounds,2B_Chemicals-other,,TON,1517.710617 +MN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,550.2280202 +MN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,44.84687 +MN,Volatile Organic Compounds,2C5_Lead-production,,TON,5.392 +MN,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.07497 +MN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,56.97320498 +MN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.021121 +MN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,24209.49833 +MN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,29.1083 +MN,Volatile Organic Compounds,2D3d_Coating-application,,TON,21356.26465 +MN,Volatile Organic Compounds,2D3e_Degreasing,,TON,1735.783005 +MN,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,10.0200002 +MN,Volatile Organic Compounds,2D3h_Printing,,TON,5668.30397 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,23.44411787 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1761.937212 +MN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1009.509653 +MN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,309.547905 +MN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2196.9532 +MN,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,772.3542692 +MN,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,508.419 +MN,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1082.464 +MN,Volatile Organic Compounds,3B3_Manure-swine,,TON,5998.976 +MN,Volatile Organic Compounds,3B4_Manure-poultry,,TON,175.57 +MN,Volatile Organic Compounds,3Dc_Other-farm,,TON,140.5900671 +MN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,5236.904491 +MN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,165.934641 +MN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,153.052188 +MN,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,932.4015 +MN,Volatile Organic Compounds,5C_Incineration,,TON,6.453693453 +MN,Volatile Organic Compounds,5C_Incineration,biomass,TON,11.37256885 +MN,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,2.003 +MN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1346.371463 +MN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,629.546543 +MN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,88.5302748 +MN,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,137.0979848 +MN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.130922 +MN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,12.6101 +MN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,203.4240096 +MO,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.8615 +MO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,30.2621679 +MO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,108.280218 +MO,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.6139 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.678732425 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.122916624 +MO,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,2.219215157 +MO,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.145309067 +MO,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.087953331 +MO,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00030121 +MO,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.037450448 +MO,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,84.79955755 +MO,Ammonia,1A2c_Chemicals,natural_gas,TON,0.7426 +MO,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1476 +MO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.71673549 +MO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.30213934 +MO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,26.82310674 +MO,Ammonia,1A3bii_Road-LDV,light_oil,TON,2104.024968 +MO,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.35549852 +MO,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,108.0174737 +MO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.833268959 +MO,Ammonia,1A3biii_Road-bus,light_oil,TON,2.17872653 +MO,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.015271674 +MO,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,172.0964484 +MO,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,18.95252359 +MO,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,76.8906294 +MO,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.798705918 +MO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.16671858 +MO,Ammonia,1A3c_Rail,diesel_oil,TON,15.4829949 +MO,Ammonia,1A3c_Rail,light_oil,TON,0.007533597 +MO,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.273349134 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,11.80648466 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.6698781 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.908782328 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033415362 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.26541798 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.439028027 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.9075693 +MO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.556740291 +MO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.672089561 +MO,Ammonia,1A4bi_Residential-stationary,biomass,TON,478.6456313 +MO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.881999975 +MO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.162000121 +MO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1159.211811 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.67868273 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.480210925 +MO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027458916 +MO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.810948554 +MO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.877266259 +MO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.000510678 +MO,Ammonia,2A1_Cement-production,,TON,46.5472 +MO,Ammonia,2A6_Other-minerals,Other_Fuel,TON,49.967 +MO,Ammonia,2B_Chemicals-other,,TON,205.2924 +MO,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.0031 +MO,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,2.8585 +MO,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,12.7246 +MO,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,67.8028 +MO,Ammonia,3B1a_Cattle-dairy,,TON,2698.874 +MO,Ammonia,3B1b_Cattle-non-dairy,,TON,15182.474 +MO,Ammonia,3B2_Manure-sheep,,TON,269.28132 +MO,Ammonia,3B3_Manure-swine,,TON,38926.331 +MO,Ammonia,3B4_Manure-other,,TON,2004.66948 +MO,Ammonia,3B4_Manure-poultry,,TON,7565.263664 +MO,Ammonia,3B4d_Manure-goats,,TON,672.276264 +MO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,16208.06369 +MO,Ammonia,3F_Ag-res-on-field,,TON,1368.97565 +MO,Ammonia,5B_Compost-biogas,Other_Fuel,TON,134.5552 +MO,Ammonia,5D1_Wastewater-domestic,,TON,895.3632096 +MO,Ammonia,5E_Other-waste,Other_Fuel,TON,12.04 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,329952.1839 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,339617.6317 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19158.80673 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1442427.843 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25277.81862 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.74547175 +MO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,903921.6388 +MO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,25038810.96 +MO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,143400.5204 +MO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1727318.57 +MO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,378826.8229 +MO,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,74417.59905 +MO,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,720.10602 +MO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9733681.169 +MO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,460920.4011 +MO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5068203.575 +MO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,215357.1728 +MO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,228707.6569 +MO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,13248.68522 +MO,Carbon Dioxide,1A3c_Rail,light_oil,TON,588.541396 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,176971.1281 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,243443.0691 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10797.13442 +MO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,68507.57178 +MO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,496389.2515 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2176092.377 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,35984.66377 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.4226279 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3366.106 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,189299.0911 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,108027.6914 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,356158.736 +MO,Carbon Monoxide,11C_Other-natural,,TON,115823.111 +MO,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,21.5929 +MO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,14.7531 +MO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,25287.8236 +MO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1060.0185 +MO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,7.9614 +MO,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,15.8108 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1401.461105 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8392.250249 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,503.518738 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,414.0522014 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,196.1940946 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,285.1053104 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.752243331 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,6.336424111 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4464.009542 +MO,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,8.9794 +MO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.0548 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4585.910147 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5189.21188 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.392150781 +MO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5853.203439 +MO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,13825.85346 +MO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,573007.6074 +MO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1363.123406 +MO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,31515.17272 +MO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1068.372785 +MO,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3370.535211 +MO,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,9.1215943 +MO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17217.51459 +MO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,11001.72485 +MO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6860.12777 +MO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7278.02936 +MO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9655.91625 +MO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5007.558315 +MO,Carbon Monoxide,1A3c_Rail,light_oil,TON,134.6063193 +MO,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1167.937616 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1279.146612 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,49.99098922 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,64.65405806 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.540181805 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2820.435763 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,760.8104569 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,50697.18999 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,229.3794146 +MO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,231.9083877 +MO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,117089.6935 +MO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,74543.20632 +MO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,4.41000198 +MO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.809999901 +MO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2644.761671 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7555.291873 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8001.006745 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.822519178 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,26.598543 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35358.86485 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,214.2949003 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,40934.83053 +MO,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,44.3201 +MO,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,26.044419 +MO,Carbon Monoxide,2A1_Cement-production,,TON,1128.32 +MO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,13433.6762 +MO,Carbon Monoxide,2A6_Other-minerals,,TON,11825.0896 +MO,Carbon Monoxide,2B_Chemicals-other,,TON,1451.0121 +MO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3.0372 +MO,Carbon Monoxide,2C3_Aluminum-production,,TON,23778.417 +MO,Carbon Monoxide,2C5_Lead-production,,TON,10170.9 +MO,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.0002 +MO,Carbon Monoxide,2C7a_Copper-production,,TON,123.8892 +MO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,3.3955 +MO,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.3646 +MO,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,109.77 +MO,Carbon Monoxide,2H2_Ethanol Production,,TON,87.8956 +MO,Carbon Monoxide,2H2_Food-and-beverage,,TON,800.0032335 +MO,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,30.6815 +MO,Carbon Monoxide,3F_Ag-res-on-field,,TON,13389.25899 +MO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1230.893919 +MO,Carbon Monoxide,5C_Incineration,biomass,TON,902.5554306 +MO,Carbon Monoxide,5C_Open-burning-commercial,,TON,4.6494 +MO,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,0.7507 +MO,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,32302.98896 +MO,Carbon Monoxide,5C_Open-burning-residential,,TON,8659.617149 +MO,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,796.9104551 +MO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,9.1971 +MO,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.76334494 +MO,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,50.45187818 +MO,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,226.8662547 +MO,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,48.54283683 +MO,Methane,1A2g_Construction_and_Mining,light_oil,TON,19.97437846 +MO,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.272568377 +MO,Methane,1A3bii_Road-LDV,diesel_oil,TON,37.02874886 +MO,Methane,1A3bii_Road-LDV,light_oil,TON,1460.927862 +MO,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.1611115 +MO,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,110.3653469 +MO,Methane,1A3biii_Road-bus,diesel_oil,TON,10.11077512 +MO,Methane,1A3biii_Road-bus,light_oil,TON,6.664014221 +MO,Methane,1A3biii_Road-bus,natural_gas,TON,7.9655258 +MO,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,876.0142029 +MO,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,18.22890144 +MO,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,119.9073041 +MO,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.72376329 +MO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.8810871 +MO,Methane,1A3c_Rail,diesel_oil,TON,0.568684847 +MO,Methane,1A3c_Rail,light_oil,TON,0.436123664 +MO,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.724083692 +MO,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,184.4543695 +MO,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,150.3909911 +MO,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.429597112 +MO,Methane,1A4bi_Residential-mobile,light_oil,TON,506.0380586 +MO,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,60.6129051 +MO,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,35.06169953 +MO,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.707952393 +MO,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.144966496 +MO,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,333.6057661 +MO,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.806123949 +MO,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,367.5285988 +MO,Nitrogen Oxides,11C_Other-natural,,TON,32909.0244 +MO,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,7.9257 +MO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,89.7485 +MO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,73885.8642 +MO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,808.4554 +MO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,9.478 +MO,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,20.3039 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1731.362909 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1113.773213 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,73.91372067 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,239.3191379 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,853.2369283 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1922.725834 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.961648524 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.76626586 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10139.25184 +MO,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,8.2753 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.1583 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,5.0171 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8280.536398 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,79.18124766 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075462346 +MO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1757.942001 +MO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3669.615117 +MO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,66854.49141 +MO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,526.59747 +MO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3521.052965 +MO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2668.007104 +MO,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,306.2595097 +MO,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,5.0194148 +MO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,55716.79358 +MO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,1307.117227 +MO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,22426.80521 +MO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,638.2841377 +MO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,490.114011 +MO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,28547.4017 +MO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.698982607 +MO,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12912.29591 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,470.1344256 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,239.5170531 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,415.6534317 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.816931572 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3594.303694 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1388.993548 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,814.6010076 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,58.08188523 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,543.4951364 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1224.324684 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1033.974529 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,15.87600775 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.91600045 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6608.697767 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16226.56574 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,173.0447346 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.183872509 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,28.926681 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,402.6805046 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1132.409486 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2543.560059 +MO,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,19.7389 +MO,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,18.184862 +MO,Nitrogen Oxides,2A1_Cement-production,,TON,3149.673 +MO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,5378.8651 +MO,Nitrogen Oxides,2A6_Other-minerals,,TON,7495.963 +MO,Nitrogen Oxides,2B_Chemicals-other,,TON,1406.3766 +MO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3.8141 +MO,Nitrogen Oxides,2C3_Aluminum-production,,TON,34.9455 +MO,Nitrogen Oxides,2C5_Lead-production,,TON,106.9685 +MO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,6.5053 +MO,Nitrogen Oxides,2C7a_Copper-production,,TON,2.9209 +MO,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.7075 +MO,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,67.2548 +MO,Nitrogen Oxides,2H2_Ethanol Production,,TON,103.9857 +MO,Nitrogen Oxides,2H2_Food-and-beverage,,TON,103.8982 +MO,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2.9302 +MO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,357.2179036 +MO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,202.9005 +MO,Nitrogen Oxides,5C_Incineration,biomass,TON,117.8569568 +MO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.1328 +MO,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.025 +MO,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,955.7100019 +MO,Nitrogen Oxides,5C_Open-burning-residential,,TON,611.2671513 +MO,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,35.41824374 +MO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.7048 +MO,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.0394 +MO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.457234527 +MO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1240.171491 +MO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.468497272 +MO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,83.58925043 +MO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.888537589 +MO,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.595783568 +MO,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.043665674 +MO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.15042143 +MO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,13.86886367 +MO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.1877916 +MO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.18203397 +MO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.014631609 +MO,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.026294891 +MO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.448890939 +MO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4614.804 +MO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,50.754759 +MO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,3.32108 +MO,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.553926 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,109.0548293 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,59.64266798 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,115.803085 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.262222377 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.170575695 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,110.4226836 +MO,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.457192 +MO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.093718 +MO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,877543.1582 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,884.1155242 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.87527309 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.725501343 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043732235 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.2089507 +MO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.952559776 +MO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.174959948 +MO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.22122285 +MO,PM10 Filterable,2A1_Cement-production,,TON,420.9778601 +MO,PM10 Filterable,2A2_Lime-production,,TON,833.2557249 +MO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,35576.69102 +MO,PM10 Filterable,2A6_Other-minerals,,TON,3739.670231 +MO,PM10 Filterable,2B_Chemicals-other,,TON,342.6613098 +MO,PM10 Filterable,2C_Iron-steel-alloy,,TON,97.62925069 +MO,PM10 Filterable,2C3_Aluminum-production,,TON,564.1899671 +MO,PM10 Filterable,2C5_Lead-production,,TON,34.72035318 +MO,PM10 Filterable,2C6_Zinc-production,,TON,0.893412665 +MO,PM10 Filterable,2C7_Other-metal,,TON,33.51387068 +MO,PM10 Filterable,2C7a_Copper-production,,TON,7.5021321 +MO,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.9121 +MO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.40528879 +MO,PM10 Filterable,2D3d_Coating-application,,TON,137.2176 +MO,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,2.7 +MO,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,0.033 +MO,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0569 +MO,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,110.6756488 +MO,PM10 Filterable,2H2_Ethanol Production,,TON,61.0492 +MO,PM10 Filterable,2H2_Food-and-beverage,,TON,509.2133514 +MO,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,209.0641642 +MO,PM10 Filterable,2I_Wood-processing,,TON,21.4213 +MO,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,49615.94148 +MO,PM10 Filterable,3Dc_Other-farm,,TON,136564.1232 +MO,PM10 Filterable,5A_Solid-waste-disposal,,TON,93.623552 +MO,PM10 Filterable,5C_Incineration,biomass,TON,20.3036181 +MO,PM10 Filterable,5C_Open-burning-commercial,,TON,0.364535 +MO,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,3.50488 +MO,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3249.413464 +MO,PM10 Filterable,5C_Open-burning-residential,,TON,2823.192451 +MO,PM10 Filterable,5C_Open-burning-yard-waste,,TON,131.9645889 +MO,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0197079 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.6392 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.2608 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,9262.6162 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,129.9054 +MO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3.7526 +MO,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.4577 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,124.0822345 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35.9169943 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.358766966 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,113.2642036 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,62.16671625 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,649.1200945 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.936108587 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.190364238 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,229.8224301 +MO,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.2368 +MO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.3666 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,704.6776657 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.16503506 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797948 +MO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,140.6239306 +MO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,877543.1582 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,213.159847 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3053.762298 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,37.2807747 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,183.0958218 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,199.6214821 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.68070963 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.15011106 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3163.244355 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,60.84524222 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1490.124264 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,30.12844714 +MO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.47051038 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,919.190589 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.074871513 +MO,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,313.6673337 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,916.0749445 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.75669979 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,86.50374424 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.097938811 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.39123319 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,123.4462664 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,62.96529553 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.360656948 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,38.4916103 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,474.9537905 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10599.9444 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.09916032 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.385560041 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,34.37515531 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1308.155406 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,19.51622079 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000937847 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.8324129 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,319.8883635 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.88125445 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,165.4087588 +MO,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0375 +MO,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.39024624 +MO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,556.0869 +MO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1072.9552 +MO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,35576.69102 +MO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4177.5722 +MO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,377.8372 +MO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,116.5899 +MO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,677.6479 +MO,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,65.0228 +MO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.7949 +MO,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,41.3903 +MO,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,30.7226 +MO,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.9121 +MO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.4066 +MO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,137.2552 +MO,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,2.7 +MO,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.033 +MO,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0569 +MO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,123.467 +MO,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,66.1629 +MO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2302.382193 +MO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,209.3739 +MO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,21.4213 +MO,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,49615.94148 +MO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,136568.2235 +MO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2248.762385 +MO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,119.8096 +MO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,22.34145982 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.5646 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,4.6194 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3249.413464 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2823.192451 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,131.9645889 +MO,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0217 +MO,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.022611014 +MO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.525471979 +MO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1652.4905 +MO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,47.898484 +MO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,2.08328 +MO,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.553926 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,90.29209875 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.82285179 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,45.63980664 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.005813705 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.163741506 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,102.2309047 +MO,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.457092 +MO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.093418 +MO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,91862.40307 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,760.2230513 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.65137444 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.124728557 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033751779 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.26511303 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.732059693 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.134460023 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.271666458 +MO,PM2.5 Filterable,2A1_Cement-production,,TON,135.4614452 +MO,PM2.5 Filterable,2A2_Lime-production,,TON,367.5171563 +MO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3557.669102 +MO,PM2.5 Filterable,2A6_Other-minerals,,TON,917.4052228 +MO,PM2.5 Filterable,2B_Chemicals-other,,TON,290.4473244 +MO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,49.14355026 +MO,PM2.5 Filterable,2C3_Aluminum-production,,TON,284.2184557 +MO,PM2.5 Filterable,2C5_Lead-production,,TON,26.87537469 +MO,PM2.5 Filterable,2C6_Zinc-production,,TON,0.836612665 +MO,PM2.5 Filterable,2C7_Other-metal,,TON,23.95039498 +MO,PM2.5 Filterable,2C7a_Copper-production,,TON,4.3152021 +MO,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.8674 +MO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.390588792 +MO,PM2.5 Filterable,2D3d_Coating-application,,TON,135.4171 +MO,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,2.7 +MO,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,0.033 +MO,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0546 +MO,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,41.50588903 +MO,PM2.5 Filterable,2H2_Ethanol Production,,TON,20.8463 +MO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,198.6763247 +MO,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,138.9298102 +MO,PM2.5 Filterable,2I_Wood-processing,,TON,7.3719 +MO,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,9389.195306 +MO,PM2.5 Filterable,3Dc_Other-farm,,TON,27287.72291 +MO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,24.158652 +MO,PM2.5 Filterable,5C_Incineration,biomass,TON,17.0035241 +MO,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.364535 +MO,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,3.45408 +MO,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2504.973475 +MO,PM2.5 Filterable,5C_Open-burning-residential,,TON,2585.449458 +MO,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,101.7319317 +MO,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0197079 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.635516123 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.3525 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6300.3048 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,127.049125 +MO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,2.5148 +MO,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.4577 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,120.3198645 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35.78989335 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.357174058 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,94.67732025 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,57.44880408 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,578.8521096 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.681199546 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.183546135 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,221.3513133 +MO,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.2367 +MO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.3663 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,683.5375353 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,36.05675449 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797948 +MO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,122.7186818 +MO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,91862.40307 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,164.5120901 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1471.078299 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,28.8009381 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,72.53719912 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,146.1095804 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.956543378 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.07481592 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2319.685362 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,25.08367626 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1057.795249 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.9001342 +MO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.70139055 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,848.342058 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.06903257 +MO,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,288.5740772 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,792.1604497 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.53456936 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,83.91947769 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.087965364 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,33.45111003 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119.7429403 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,58.11482891 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.360656948 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,37.33686654 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,436.9765752 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10525.10412 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.878659855 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.345060009 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,28.42563276 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1268.910924 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,17.95523551 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000937847 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.7174433 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,294.2986164 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.16481457 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,152.1761121 +MO,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0375 +MO,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.39024624 +MO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,270.5705353 +MO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,609.3432 +MO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3557.669102 +MO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1355.309889 +MO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,326.1883046 +MO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,68.104201 +MO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,397.6763209 +MO,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,57.1778225 +MO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.7381 +MO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,31.82682429 +MO,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,27.5357 +MO,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.8674 +MO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.3919 +MO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,135.4547 +MO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,2.7 +MO,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.033 +MO,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0546 +MO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,54.2969498 +MO,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,25.96 +MO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1991.845196 +MO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,139.2385 +MO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,7.3719 +MO,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9389.195306 +MO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,27291.82326 +MO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1633.267223 +MO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,50.3447 +MO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,19.03275982 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.5646 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,4.5686 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2504.973475 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2585.449458 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,101.7319317 +MO,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0217 +MO,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.9159 +MO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,36.9361 +MO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,134190.0211 +MO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,19.7363 +MO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,2.2743 +MO,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.1151 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.419420235 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.215406531 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.137009179 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,17.59849988 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.64320118 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,12917.85392 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.876514107 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.867097037 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,238.7460432 +MO,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0349 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.3485 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0295 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,15.99456588 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.419437914 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.77196E-05 +MO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,215.4464268 +MO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.941648504 +MO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,457.224875 +MO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.247746315 +MO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,31.23648035 +MO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.318104065 +MO,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.360264509 +MO,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.003812627 +MO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,83.95662526 +MO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,8.374393377 +MO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,43.63476232 +MO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.901906525 +MO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.17222856 +MO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,17.5084053 +MO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.010476827 +MO,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.146151605 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,47.39928447 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.75276204 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5336.295153 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.771445209 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.80746242 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.067992668 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.11440813 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.060488901 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.803436128 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.015061014 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,276.3426175 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,37.57321025 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.90120256 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,39.66366383 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.06379185 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.655414177 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.13537E-05 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.039759586 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.436051243 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.442646547 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.48174634 +MO,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0375 +MO,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.017420198 +MO,Sulfur Dioxide,2A1_Cement-production,,TON,471.4656 +MO,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,3325.0584 +MO,Sulfur Dioxide,2A6_Other-minerals,,TON,2798.4131 +MO,Sulfur Dioxide,2B_Chemicals-other,,TON,163.6829 +MO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.3086 +MO,Sulfur Dioxide,2C3_Aluminum-production,,TON,5324.478 +MO,Sulfur Dioxide,2C5_Lead-production,,TON,1823.4422 +MO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.1204 +MO,Sulfur Dioxide,2C7a_Copper-production,,TON,8.5407 +MO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,1.037 +MO,Sulfur Dioxide,2D3h_Printing,Other_Fuel,TON,0.0026 +MO,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.8733 +MO,Sulfur Dioxide,2H2_Ethanol Production,,TON,3.754 +MO,Sulfur Dioxide,2H2_Food-and-beverage,,TON,69.7167 +MO,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,39.2586 +MO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,82.49693517 +MO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,55.6565 +MO,Sulfur Dioxide,5C_Incineration,biomass,TON,16.78740874 +MO,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.0042 +MO,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,317.2956338 +MO,Sulfur Dioxide,5C_Open-burning-residential,,TON,101.877856 +MO,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.652870899 +MO,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.3713 +MO,Volatile Organic Compounds,11C_Other-natural,,TON,1001575.412 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.6011 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.144 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1344.5362 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,121.0956 +MO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,218.0233 +MO,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.0362 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,167.294059 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,240.6966752 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,49.33776345 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,19.1067816 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,61.60978052 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,12.10510555 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.12647077 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.891328065 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,491.2842983 +MO,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.3554 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0059 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2618 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,922.132917 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,353.6202572 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.058919042 +MO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,521.044621 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1335.552047 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,51351.93901 +MO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,160.1013888 +MO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2595.939305 +MO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,265.7843479 +MO,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,163.3240169 +MO,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.14527587 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4655.569116 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,461.3270342 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1452.200418 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,345.0199852 +MO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1090.614365 +MO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1474.485773 +MO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.631136021 +MO,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,211.9374936 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,32.65242925 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.27343424 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.400158346 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.026505047 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,194.4529245 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,174.9542196 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1873.035378 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32.50888074 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,54.20275514 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7879.086913 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,11073.65234 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.61739975 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.113399987 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,363.5834787 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1481.180457 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,405.1869935 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.153032789 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.9982451 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10112.75795 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,57.56328956 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,11521.33432 +MO,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,414.7872415 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,249.2575266 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,833.6492218 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4344.675185 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8157.249966 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,2.3889 +MO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,18.0166906 +MO,Volatile Organic Compounds,2A1_Cement-production,,TON,357.9405 +MO,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,31.5325 +MO,Volatile Organic Compounds,2A6_Other-minerals,,TON,139.7380913 +MO,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1310.504839 +MO,Volatile Organic Compounds,2B_Chemicals-other,,TON,1173.9553 +MO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,40.6177 +MO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,569.1167 +MO,Volatile Organic Compounds,2C5_Lead-production,,TON,70.2202 +MO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,123.8642 +MO,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.4352 +MO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,26990.55451 +MO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,43.4043 +MO,Volatile Organic Compounds,2D3d_Coating-application,,TON,18731.79214 +MO,Volatile Organic Compounds,2D3e_Degreasing,,TON,4134.128399 +MO,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,10.6550042 +MO,Volatile Organic Compounds,2D3h_Printing,,TON,15167.28941 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3102.584695 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3726.949582 +MO,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,169.1668 +MO,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,9.1599 +MO,Volatile Organic Compounds,2H2_Ethanol Production,,TON,118.8437 +MO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1235.153041 +MO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1184.843 +MO,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,216.717 +MO,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1219.056 +MO,Volatile Organic Compounds,3B3_Manure-swine,,TON,3125.539 +MO,Volatile Organic Compounds,3B4_Manure-poultry,,TON,605.325 +MO,Volatile Organic Compounds,3Dc_Other-farm,,TON,260.1201 +MO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3998.396166 +MO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,827.1456809 +MO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,132.9653 +MO,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,952.08 +MO,Volatile Organic Compounds,5C_Incineration,biomass,TON,40.13984217 +MO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.631 +MO,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,0.0481 +MO,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2217.247736 +MO,Volatile Organic Compounds,5C_Open-burning-residential,,TON,588.5522675 +MO,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,148.6301579 +MO,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,105.7353 +MO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,21.8108 +MO,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.7833 +MS,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,74.98588 +MS,Ammonia,1A1a_Public-Electricity,hard_coal,TON,32.55986 +MS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,861.6214065 +MS,Ammonia,1A1b_Pet-refining,natural_gas,TON,47.99 +MS,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,1.65 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.455539159 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.06903984 +MS,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.8 +MS,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.4223 +MS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.621594207 +MS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.119118561 +MS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,13.58569305 +MS,Ammonia,1A3bii_Road-LDV,light_oil,TON,1310.708436 +MS,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.3013187 +MS,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.70949934 +MS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.779754523 +MS,Ammonia,1A3biii_Road-bus,light_oil,TON,1.003133945 +MS,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,65.49872064 +MS,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,10.96819889 +MS,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,46.34211053 +MS,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.566640949 +MS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.38194181 +MS,Ammonia,1A3c_Rail,diesel_oil,TON,3.817932385 +MS,Ammonia,1A3c_Rail,light_oil,TON,0.002439214 +MS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.825838412 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.87750011 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.490848002 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.991604313 +MS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.135876845 +MS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.168006989 +MS,Ammonia,1A4bi_Residential-stationary,biomass,TON,96.63312974 +MS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.000559392 +MS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,285.2040721 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.463176722 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.323673284 +MS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01384887 +MS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.32757715 +MS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.572198211 +MS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.261362554 +MS,Ammonia,2A6_Other-minerals,,TON,30 +MS,Ammonia,2B_Chemicals-other,,TON,534.89403 +MS,Ammonia,2D3d_Coating-application,,TON,0 +MS,Ammonia,2D3e_Degreasing,,TON,0 +MS,Ammonia,2H1_Pulp-and-paper,,TON,220.6821 +MS,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,422.2605 +MS,Ammonia,3B1a_Cattle-dairy,,TON,517.717 +MS,Ammonia,3B1b_Cattle-non-dairy,,TON,3930.673 +MS,Ammonia,3B2_Manure-sheep,,TON,29.430588 +MS,Ammonia,3B3_Manure-swine,,TON,9544.179 +MS,Ammonia,3B4_Manure-other,,TON,877.74984 +MS,Ammonia,3B4_Manure-poultry,,TON,23695.40375 +MS,Ammonia,3B4d_Manure-goats,,TON,213.847656 +MS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,13360.68679 +MS,Ammonia,3F_Ag-res-on-field,,TON,1571.652265 +MS,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.7 +MS,Ammonia,5B_Compost-biogas,Other_Fuel,TON,63.9134 +MS,Ammonia,5D1_Wastewater-domestic,,TON,7.69378029 +MS,Ammonia,5D2_Wastewater-industrial,biomass,TON,662.293 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,179286.0252 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,190866.06 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10763.05998 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,568956.6155 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,9960.052806 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.6981927 +MS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,472002.8085 +MS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,15349010.73 +MS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,79034.808 +MS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,760543.294 +MS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,249473.3268 +MS,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,32274.35072 +MS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3487966.595 +MS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,256648.739 +MS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2997730.935 +MS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,68120.13549 +MS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,53944.6266 +MS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4288.57136 +MS,Carbon Dioxide,1A3c_Rail,light_oil,TON,190.402406 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,60364.36768 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,83019.76055 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3739.57879 +MS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,16719.73216 +MS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,161905.7434 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,795664.786 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,23381.73011 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.312161822 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1697.6856 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,155548.1907 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,70461.20676 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,232288.7133 +MS,Carbon Monoxide,11C_Other-natural,,TON,163968.114 +MS,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,2102.43 +MS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,16.2141 +MS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,348.32 +MS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3010.6712 +MS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,977.69 +MS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,89.4 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,514.6503962 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4664.136032 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,278.7666672 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,11132.18363 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,40.09600908 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,28.3975514 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.737467539 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3224.925344 +MS,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +MS,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +MS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,98.8 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1808.894627 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2069.485022 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.156860498 +MS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7901.342058 +MS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7304.621808 +MS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,347695.1105 +MS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,810.75034 +MS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14532.46187 +MS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,639.8408734 +MS,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1538.366238 +MS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6003.17196 +MS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6229.488635 +MS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3925.601892 +MS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2443.783315 +MS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2246.54667 +MS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1244.658761 +MS,Carbon Monoxide,1A3c_Rail,light_oil,TON,44.33454848 +MS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1470.876151 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,225.29995 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.25 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.49 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,259.4796208 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,17567.81203 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,78.94048101 +MS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,56.81195688 +MS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,37909.90856 +MS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,15349.05921 +MS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.00279696 +MS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,699.9473536 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2552.758886 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6310.986655 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.25621659 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.4184 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,28449.86906 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,139.773362 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,26742.21332 +MS,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,48.0486231 +MS,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,11.16 +MS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,85.31 +MS,Carbon Monoxide,2A6_Other-minerals,,TON,482.53 +MS,Carbon Monoxide,2B_Chemicals-other,,TON,5760.78 +MS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1846.52 +MS,Carbon Monoxide,2C3_Aluminum-production,,TON,6 +MS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,5.95 +MS,Carbon Monoxide,2C7a_Copper-production,,TON,5.6 +MS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,6.08 +MS,Carbon Monoxide,2D3d_Coating-application,,TON,35.23 +MS,Carbon Monoxide,2D3h_Printing,,TON,0.66 +MS,Carbon Monoxide,2H1_Pulp-and-paper,,TON,6334.13 +MS,Carbon Monoxide,2H2_Food-and-beverage,,TON,370.3087407 +MS,Carbon Monoxide,2H3_Other-industrial-processes,,TON,200.37 +MS,Carbon Monoxide,3F_Ag-res-on-field,,TON,8335.400007 +MS,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,441.6750103 +MS,Carbon Monoxide,5C_Incineration,biomass,TON,0.087615361 +MS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,38083.5736 +MS,Carbon Monoxide,5C_Open-burning-residential,,TON,7331.40635 +MS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,795.462794 +MS,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.83 +MS,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.822961692 +MS,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.32461896 +MS,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,127.4670805 +MS,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,19.14656199 +MS,Methane,1A2g_Construction_and_Mining,light_oil,TON,7.801563955 +MS,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.109027471 +MS,Methane,1A3bii_Road-LDV,diesel_oil,TON,16.40059114 +MS,Methane,1A3bii_Road-LDV,light_oil,TON,766.6715748 +MS,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.03067242 +MS,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.9895736 +MS,Methane,1A3biii_Road-bus,diesel_oil,TON,6.073365099 +MS,Methane,1A3biii_Road-bus,light_oil,TON,2.785636982 +MS,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,269.7516091 +MS,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,9.438059876 +MS,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,59.31877994 +MS,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,4.541430138 +MS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.62956966 +MS,Methane,1A3c_Rail,diesel_oil,TON,0.184157533 +MS,Methane,1A3c_Rail,light_oil,TON,0.138705896 +MS,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.952361227 +MS,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,61.8591573 +MS,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,51.62095175 +MS,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.595839383 +MS,Methane,1A4bi_Residential-mobile,light_oil,TON,158.6445596 +MS,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.40753487 +MS,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,24.89792531 +MS,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.22052866 +MS,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07312614 +MS,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,283.306141 +MS,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.830293637 +MS,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,239.8850454 +MS,Nitrogen Oxides,11C_Other-natural,,TON,14157.2266 +MS,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,10357.7 +MS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,35.3359 +MS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,7622.7 +MS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3685.12 +MS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2387.35 +MS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,113.81 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,908.7225467 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,618.4907732 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41.10273385 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3569.885454 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,101.384149 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,989.5533262 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.342974656 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,14175.75408 +MS,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +MS,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,224.67 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3265.760595 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,29.67165131 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.030184964 +MS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3968.791482 +MS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1860.200082 +MS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,41456.6855 +MS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,279.042706 +MS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1640.37566 +MS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1794.890781 +MS,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,135.9185874 +MS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18463.28608 +MS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,740.9248038 +MS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12873.28178 +MS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,219.7402769 +MS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,106.2275262 +MS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7314.180313 +MS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.506135057 +MS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8144.761242 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,82.6100078 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.13 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,57.18 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,473.7729116 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,260.2676801 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,19.95149592 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,132.5867981 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,394.2677482 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,238.8954467 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.0100691 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1801.075153 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5532.541678 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,88.96189902 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.057276637 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.589268 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,316.0689623 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,738.6178845 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1652.459719 +MS,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,55.303657 +MS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.4 +MS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,88.38 +MS,Nitrogen Oxides,2A6_Other-minerals,,TON,197.93 +MS,Nitrogen Oxides,2B_Chemicals-other,,TON,1057.2 +MS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,684.45 +MS,Nitrogen Oxides,2C3_Aluminum-production,,TON,7.1 +MS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,8.35 +MS,Nitrogen Oxides,2C7a_Copper-production,,TON,4.59 +MS,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,7.24 +MS,Nitrogen Oxides,2D3d_Coating-application,,TON,42.44 +MS,Nitrogen Oxides,2D3h_Printing,,TON,0.79 +MS,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3232.31 +MS,Nitrogen Oxides,2H2_Food-and-beverage,,TON,12.58 +MS,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,96.76 +MS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,303.2612578 +MS,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,77.4 +MS,Nitrogen Oxides,5C_Incineration,biomass,TON,27.64826989 +MS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1126.732863 +MS,Nitrogen Oxides,5C_Open-burning-residential,,TON,517.511177 +MS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,35.3539021 +MS,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MS,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,1.03 +MS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.322602318 +MS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,692.4873867 +MS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.253667584 +MS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33.30831951 +MS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.550219806 +MS,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.15752963 +MS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.340960123 +MS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,7.924119879 +MS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.753961263 +MS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.106855682 +MS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.751014135 +MS,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,562.61 +MS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.46119727 +MS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,168.18 +MS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,414.1662 +MS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,114.9442 +MS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,4.6388 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2136.373397 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.678215974 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3.487265449 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.16126083 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,324.5011367 +MS,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MS,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,25.14 +MS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,218931.4231 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,187.750011 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.25 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.4 +MS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.000604144 +MS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.498708139 +MS,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.49 +MS,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.16 +MS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.64 +MS,PM10 Filterable,2A2_Lime-production,,TON,0.38 +MS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,25941.60051 +MS,PM10 Filterable,2A6_Other-minerals,,TON,2296.396 +MS,PM10 Filterable,2B_Chemicals-other,,TON,506.8139 +MS,PM10 Filterable,2C_Iron-steel-alloy,,TON,229.92 +MS,PM10 Filterable,2C3_Aluminum-production,,TON,0.1 +MS,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,436.49 +MS,PM10 Filterable,2C7a_Copper-production,,TON,3.87 +MS,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,30.62 +MS,PM10 Filterable,2D3d_Coating-application,,TON,117.86 +MS,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,2.3 +MS,PM10 Filterable,2D3h_Printing,,TON,1.31 +MS,PM10 Filterable,2H1_Pulp-and-paper,,TON,2197.32 +MS,PM10 Filterable,2H2_Food-and-beverage,,TON,194.4824993 +MS,PM10 Filterable,2H3_Other-industrial-processes,,TON,294.86 +MS,PM10 Filterable,2I_Wood-processing,,TON,13.2 +MS,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,14288.13745 +MS,PM10 Filterable,3Dc_Other-farm,,TON,63113.7609 +MS,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,136.44 +MS,PM10 Filterable,5C_Incineration,biomass,TON,0 +MS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3830.888708 +MS,PM10 Filterable,5C_Open-burning-residential,,TON,2390.17229 +MS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,131.7248651 +MS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.17 +MS,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.17 +MS,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.07 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1258.79 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.6529169 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,313.4213 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,785.54249 +MS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,352.386 +MS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,12.344 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,66.49168233 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.9795795 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.310563642 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2294.961768 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.570896268 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,40.95039367 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.161023912 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,706.4167335 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,52.20656 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,277.9737157 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,15.45000081 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +MS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,314.9515077 +MS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,218931.4231 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,112.1778857 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1686.297033 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21.3258302 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,77.88582487 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,142.6367157 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.67152751 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,995.9735287 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,28.18400192 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,770.2585562 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.708294539 +MS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.99473629 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,232.4842569 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.024242263 +MS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,215.8730958 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,194.133482 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.2558071 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.105 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,42.10281979 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.47580461 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.471557636 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.432389101 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,137.2196859 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1971.828057 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.00133135 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.09664282 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,444.8876715 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,59.24688365 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000292141 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.9335168 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,279.4925242 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.57637322 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,107.8803918 +MS,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,4.04479928 +MS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.16 +MS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.5406401 +MS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.4937416 +MS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,25941.60051 +MS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2337.974689 +MS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,658.9783852 +MS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,517.7094494 +MS,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.5 +MS,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,438.2714485 +MS,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,17.802 +MS,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,31.161343 +MS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,141.46 +MS,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,2.3 +MS,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,1.31 +MS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3685.269766 +MS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1070.853409 +MS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,572.0813104 +MS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,13.2 +MS,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,14288.13745 +MS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,63114.51633 +MS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1349.148854 +MS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,136.893034 +MS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3830.888708 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2390.17229 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,131.7248651 +MS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.17 +MS,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.17 +MS,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.07 +MS,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,172.06 +MS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.43119727 +MS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,81.38 +MS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,361.9262 +MS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,101.7642 +MS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,4.6188 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1525.525874 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.382744559 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1.940744012 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.161728668 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,274.7001852 +MS,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +MS,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,22.58 +MS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,23679.544 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,161.464987 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.25 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.25 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.000464296 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.924289357 +MS,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.49 +MS,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.12 +MS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.73 +MS,PM2.5 Filterable,2A2_Lime-production,,TON,0.15 +MS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2594.160051 +MS,PM2.5 Filterable,2A6_Other-minerals,,TON,444.9357 +MS,PM2.5 Filterable,2B_Chemicals-other,,TON,438.4439 +MS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,215.24 +MS,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.1 +MS,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,364.12 +MS,PM2.5 Filterable,2C7a_Copper-production,,TON,0 +MS,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,24.69 +MS,PM2.5 Filterable,2D3d_Coating-application,,TON,107.42 +MS,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,2.3 +MS,PM2.5 Filterable,2D3h_Printing,,TON,1.3 +MS,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1901.231282 +MS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,124.727598 +MS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,227.41 +MS,PM2.5 Filterable,2I_Wood-processing,,TON,7.51 +MS,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2489.258451 +MS,PM2.5 Filterable,3Dc_Other-farm,,TON,12832.85001 +MS,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,35.36 +MS,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +MS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2953.235082 +MS,PM2.5 Filterable,5C_Open-burning-residential,,TON,2188.89451 +MS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,101.5471469 +MS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.16 +MS,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.15 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,868.24 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.622916988 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,226.6213 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,733.30249 +MS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,339.206 +MS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,12.324 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,64.49285278 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.91859141 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.310404673 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1683.599862 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.274801161 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,39.47074371 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.16131083 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,657.0641776 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,49.64656 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,269.6345537 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.22379842 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +MS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,293.2555051 +MS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,23679.544 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,83.97475096 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,634.2004013 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.1221198 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.9895585 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,106.7066908 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.114577123 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,761.2597673 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.917889093 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,572.7617784 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.657940573 +MS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.58086796 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,214.6692137 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.022350498 +MS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,207.9459637 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,167.848474 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.2558071 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.955 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,40.83974964 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,19.82139029 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.471557636 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.149422485 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,126.2468065 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1938.996144 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.00119151 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.522221947 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,431.5409802 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,54.5072433 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000292141 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.8755104 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,257.1338193 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.10908586 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,99.24996709 +MS,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,4.03535716 +MS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.12 +MS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.6306401 +MS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.2637416 +MS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2594.160051 +MS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,486.5143906 +MS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,590.6083852 +MS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,503.0294494 +MS,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.5 +MS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,365.9014485 +MS,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,13.932 +MS,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,25.231343 +MS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,131.02 +MS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,2.3 +MS,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,1.3 +MS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3412.895008 +MS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1001.098371 +MS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,504.6313104 +MS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,7.51 +MS,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2489.258451 +MS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,12833.60544 +MS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,912.0463709 +MS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,35.813034 +MS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2953.235082 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2188.89451 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,101.5471469 +MS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.16 +MS,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.15 +MS,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,73547.8 +MS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.5225 +MS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,17093.4 +MS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,90.53 +MS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1133.65 +MS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,297.18 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.140431075 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.052033072 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.06332478 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,266.5746736 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.670867686 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4779.061617 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.150019513 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,102.4233223 +MS,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +MS,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.04 +MS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,14.78 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,6.308992925 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.165331913 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50879E-05 +MS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,385.4165706 +MS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.135053113 +MS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,352.0632806 +MS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.685819314 +MS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.45780858 +MS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.184162237 +MS,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.739787449 +MS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30.08402633 +MS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.886665721 +MS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,25.82796 +MS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.562369835 +MS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.242021831 +MS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.340934247 +MS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003391384 +MS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,280.2315087 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,9.38750245 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.31 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.73 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.705383402 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.403164914 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.020950454 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.196132076 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.94327281 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,32.07655606 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.0238301 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,10.49612542 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.058359587 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.425531998 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.28818E-05 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.020053088 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.823397022 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.245471693 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.227432599 +MS,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,310.5661176 +MS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.01 +MS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4506.09 +MS,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +MS,Sulfur Dioxide,2B_Chemicals-other,,TON,710.61 +MS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,449.12 +MS,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +MS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.05 +MS,Sulfur Dioxide,2C7a_Copper-production,,TON,3.24 +MS,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.04 +MS,Sulfur Dioxide,2D3d_Coating-application,,TON,0.21 +MS,Sulfur Dioxide,2D3h_Printing,,TON,0 +MS,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,303.1 +MS,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.08 +MS,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,3.85 +MS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,118.7505993 +MS,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,13.25 +MS,Sulfur Dioxide,5C_Incineration,biomass,TON,2.38561135 +MS,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,374.0751486 +MS,Sulfur Dioxide,5C_Open-burning-residential,,TON,86.2518714 +MS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.63896766 +MS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0 +MS,Volatile Organic Compounds,11C_Other-natural,,TON,1515262.82 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,93.49 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.4031 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,62.83 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,196.2944 +MS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1.326471144 +MS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,4227.842529 +MS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,8.11 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.70503321 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,134.8550297 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,27.58296896 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1086.615779 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.12672123 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.631587338 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.260536069 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1851.792176 +MS,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +MS,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,28.64 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,363.7169373 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,144.5793149 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023567633 +MS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1980.505744 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,667.6098782 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,28029.76755 +MS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,82.272981 +MS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1053.809774 +MS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,160.5979035 +MS,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,76.13273311 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1597.635832 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,254.823825 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,792.451035 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,111.9219295 +MS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,391.555081 +MS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,373.6614498 +MS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.278852822 +MS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,124.0158751 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,6.38350018 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.37 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.52 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,59.67055269 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,693.5332678 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.15851855 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,13.25936298 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2590.520858 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2122.113537 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.000391575 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,96.21447181 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,506.7955702 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,588.3852695 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.047670026 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.5308356 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9017.63555 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,37.5455556 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8093.575592 +MS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,243.7011144 +MS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,426.9768324 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1778.673701 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,666.6861881 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,808.1515603 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,12012.75252 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,92.66 +MS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,56.62707 +MS,Volatile Organic Compounds,2A6_Other-minerals,,TON,374.01 +MS,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +MS,Volatile Organic Compounds,2B_Chemicals-other,,TON,1303.1 +MS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,175.72 +MS,Volatile Organic Compounds,2C3_Aluminum-production,,TON,89.47 +MS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,651.46 +MS,Volatile Organic Compounds,2C7a_Copper-production,,TON,3.44 +MS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13360.19971 +MS,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,67.53 +MS,Volatile Organic Compounds,2D3d_Coating-application,,TON,6637.03097 +MS,Volatile Organic Compounds,2D3e_Degreasing,,TON,2439.017995 +MS,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,7.3349974 +MS,Volatile Organic Compounds,2D3h_Printing,,TON,3618.34995 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,105.4310232 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4403.363746 +MS,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,10503.43 +MS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,295.5228688 +MS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1519.72 +MS,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,41.566 +MS,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,315.608 +MS,Volatile Organic Compounds,3B3_Manure-swine,,TON,766.332 +MS,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1901.903 +MS,Volatile Organic Compounds,3Dc_Other-farm,Other_Fuel,TON,7.53 +MS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2751.539615 +MS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,603.8626213 +MS,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,120.69 +MS,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,452.236 +MS,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +MS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2614.01956 +MS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,498.280424 +MS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,148.360139 +MS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,40.38 +MS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,69.48 +MS,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.14 +MS,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.01 +MS,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.06 +MT,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0797 +MT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.0185 +MT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,5.91169 +MT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.0775906 +MT,Ammonia,1A1b_Pet-refining,natural_gas,TON,27.9223 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.253185811 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.007769776 +MT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.031157274 +MT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,2.98549877 +MT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.471634794 +MT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,52.9412 +MT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,36.38077051 +MT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.191977346 +MT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.030800793 +MT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.79914517 +MT,Ammonia,1A3bii_Road-LDV,light_oil,TON,406.3054317 +MT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.29520675 +MT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,27.84781476 +MT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.280710679 +MT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.480927614 +MT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,27.16477159 +MT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.726028112 +MT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.14659869 +MT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.605374748 +MT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.7592544 +MT,Ammonia,1A3c_Rail,diesel_oil,TON,12.03749748 +MT,Ammonia,1A3c_Rail,light_oil,TON,0.008222837 +MT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.00584E-05 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.082500313 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.237599875 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.015 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.050399993 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.637004836 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.2589498 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.523365782 +MT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.039804831 +MT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.728237842 +MT,Ammonia,1A4bi_Residential-stationary,biomass,TON,70.5164099 +MT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.323000214 +MT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.020250008 +MT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,215.4581665 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.76990501 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.320722009 +MT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004397658 +MT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.667886499 +MT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.092716822 +MT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.528409581 +MT,Ammonia,2A1_Cement-production,,TON,1.2958 +MT,Ammonia,2A6_Other-minerals,,TON,9.5765 +MT,Ammonia,2B_Chemicals-other,,TON,4.611 +MT,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.1408 +MT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,61.7565 +MT,Ammonia,3B1a_Cattle-dairy,,TON,272.675 +MT,Ammonia,3B1b_Cattle-non-dairy,,TON,6121.034 +MT,Ammonia,3B2_Manure-sheep,,TON,950.20992 +MT,Ammonia,3B3_Manure-swine,,TON,1007.34 +MT,Ammonia,3B4_Manure-other,,TON,1413.918 +MT,Ammonia,3B4_Manure-poultry,,TON,102.8105128 +MT,Ammonia,3B4d_Manure-goats,,TON,85.51818 +MT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,11770.88655 +MT,Ammonia,3F_Ag-res-on-field,,TON,881.39583 +MT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,21.8226 +MT,Ammonia,5C_Incineration,biomass,TON,0.0118 +MT,Ammonia,5D1_Wastewater-domestic,,TON,2.61208132 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31185.51548 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,21406.04952 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1207.825629 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,146742.3375 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2579.05371 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.349097164 +MT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,442854.8379 +MT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4409052.179 +MT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,76055.689 +MT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,429217.3862 +MT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,81327.42358 +MT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,14431.88305 +MT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1432656.158 +MT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,16898.37082 +MT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,987838.782 +MT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,43634.78471 +MT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,57468.5974 +MT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,14471.67406 +MT,Carbon Dioxide,1A3c_Rail,light_oil,TON,642.3137883 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,31845.51777 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,43817.71199 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1891.464757 +MT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4898.032247 +MT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,54133.92368 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1448773.454 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,24026.92543 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.979737645 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,539.0925 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,112989.3633 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11417.26286 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,37635.71211 +MT,Carbon Monoxide,11C_Other-natural,,TON,206357.29 +MT,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,85.3527 +MT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.7224 +MT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2339.1757 +MT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,30.0198 +MT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,37.6536 +MT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,905.4092 +MT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,12.0542 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,178.6371736 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,541.6609114 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,32.67548888 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,114.9503459 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,569.4452628 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,192.8013512 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,670.2988255 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1247.773581 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,466.5675851 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,520.4093471 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078430262 +MT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2898.663842 +MT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8886.937845 +MT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,161756.3633 +MT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,859.20667 +MT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12462.93231 +MT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,230.4618418 +MT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,997.9352198 +MT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2729.209416 +MT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,423.281108 +MT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1636.150792 +MT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2514.504908 +MT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2516.97542 +MT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3903.610082 +MT,Carbon Monoxide,1A3c_Rail,light_oil,TON,144.2683505 +MT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00384623 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,132.9320351 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.046506927 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.544905187 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.320658116 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.412570465 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,972.1009916 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,136.938519 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8958.256574 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,40.74808092 +MT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,16.58973242 +MT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,12749.6341 +MT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10792.41059 +MT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,6.61499995 +MT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250024 +MT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,563.9582307 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5028.808862 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5251.070131 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.551816651 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.2614891 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,15398.82168 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.64831267 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4289.000497 +MT,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,3504.687718 +MT,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,12.5543 +MT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,751.9050327 +MT,Carbon Monoxide,2A1_Cement-production,,TON,9.0706 +MT,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,57.6596 +MT,Carbon Monoxide,2A6_Other-minerals,,TON,2340.673 +MT,Carbon Monoxide,2B_Chemicals-other,,TON,337.5297 +MT,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.0602 +MT,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,36.6318 +MT,Carbon Monoxide,2H2_Food-and-beverage,,TON,154.0873436 +MT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.4152 +MT,Carbon Monoxide,3F_Ag-res-on-field,,TON,8745.131 +MT,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,41.586419 +MT,Carbon Monoxide,5C_Incineration,,TON,0.007712169 +MT,Carbon Monoxide,5C_Incineration,biomass,TON,0.537692388 +MT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,7574.592472 +MT,Carbon Monoxide,5C_Open-burning-residential,,TON,2187.46258 +MT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,185.468631 +MT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,9.9374 +MT,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,5.415 +MT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.06099342 +MT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.189487787 +MT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14.30306545 +MT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,4.938245873 +MT,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.073884716 +MT,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.05451376 +MT,Methane,1A3bii_Road-LDV,diesel_oil,TON,20.32769153 +MT,Methane,1A3bii_Road-LDV,light_oil,TON,401.2101987 +MT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.0348841 +MT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,41.4139011 +MT,Methane,1A3biii_Road-bus,diesel_oil,TON,2.140281633 +MT,Methane,1A3biii_Road-bus,light_oil,TON,2.494852798 +MT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,198.9547268 +MT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.717671538 +MT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,31.8197257 +MT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,8.542935733 +MT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.40774216 +MT,Methane,1A3c_Rail,diesel_oil,TON,0.621169991 +MT,Methane,1A3c_Rail,light_oil,TON,0.487627883 +MT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.030183799 +MT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,33.95637468 +MT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,26.85617636 +MT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.173837 +MT,Methane,1A4bi_Residential-mobile,light_oil,TON,58.90129724 +MT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,40.35546453 +MT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,23.86320061 +MT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.474955123 +MT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.023223478 +MT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,150.995759 +MT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.296568694 +MT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,39.09893042 +MT,Nitrogen Oxides,11C_Other-natural,,TON,45558.3009 +MT,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,701.315 +MT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.0003 +MT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,16.695 +MT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,17573.489 +MT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,445.703 +MT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,38.7899 +MT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1026.0818 +MT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,4.6508 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,179.8582528 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,71.87496832 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.756006079 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,142.2643085 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,765.2314028 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,779.7144904 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1475.047932 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1951.219334 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,842.1187371 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,8.732121454 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092506 +MT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,360.3683109 +MT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2103.18451 +MT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,17851.4851 +MT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,311.758373 +MT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1252.649329 +MT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,760.4015813 +MT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,87.25832718 +MT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9801.749479 +MT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,54.09326854 +MT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5708.9666 +MT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,165.8494951 +MT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,132.980426 +MT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,22402.91851 +MT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.026851496 +MT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.019927 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,49.42190428 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.34532057 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.610654694 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.53471024 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.627373087 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1198.142892 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,249.9504669 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,158.2052967 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.35531054 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,38.83203842 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,153.886688 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,195.9159006 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,23.813994 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.36450013 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1485.725423 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10800.67084 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,127.2461788 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.123357485 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.63349 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,235.0852925 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,119.6840859 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,287.3815767 +MT,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,3743.615837 +MT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,5.8759 +MT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,705.2907229 +MT,Nitrogen Oxides,2A1_Cement-production,,TON,1306.17 +MT,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,331.996 +MT,Nitrogen Oxides,2A6_Other-minerals,,TON,703.3351 +MT,Nitrogen Oxides,2B_Chemicals-other,,TON,79.1147 +MT,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,7.812 +MT,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,5.2256 +MT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +MT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.833 +MT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,240.784955 +MT,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,8.2894 +MT,Nitrogen Oxides,5C_Incineration,,TON,0.035682538 +MT,Nitrogen Oxides,5C_Incineration,biomass,TON,4.980184382 +MT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,224.0999759 +MT,Nitrogen Oxides,5C_Open-burning-residential,,TON,154.409021 +MT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,8.24305245 +MT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.523 +MT,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.2886 +MT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.344360488 +MT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,348.4916944 +MT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.268983747 +MT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,30.48844247 +MT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.180379786 +MT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.75559055 +MT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.333092756 +MT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.514894407 +MT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.619943295 +MT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.615679562 +MT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.816842607 +MT,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,89.6203 +MT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.8047 +MT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,629.2395 +MT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,6.4777 +MT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.1123 +MT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,191.6879 +MT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.564782209 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,17.29750984 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,282.7111045 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,52.99153176 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1621.457113 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,39.05791471 +MT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,129105.1964 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,108.6960566 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.944683776 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.021268497 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.45774103 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.037933987 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.222998924 +MT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.428840605 +MT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.02186999 +MT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.818737189 +MT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.2721 +MT,PM10 Filterable,2A1_Cement-production,,TON,117.3242 +MT,PM10 Filterable,2A2_Lime-production,,TON,39.9866 +MT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,9815.660955 +MT,PM10 Filterable,2A6_Other-minerals,,TON,18002.01082 +MT,PM10 Filterable,2B_Chemicals-other,,TON,13.417 +MT,PM10 Filterable,2C_Iron-steel-alloy,,TON,25.3755 +MT,PM10 Filterable,2C3_Aluminum-production,,TON,0.0383 +MT,PM10 Filterable,2C6_Zinc-production,,TON,0.0004 +MT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,127.818 +MT,PM10 Filterable,2C7a_Copper-production,,TON,0.0042 +MT,PM10 Filterable,2D3d_Coating-application,,TON,0.442 +MT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,517.9272 +MT,PM10 Filterable,2H2_Food-and-beverage,,TON,145.0846402 +MT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,44.6546 +MT,PM10 Filterable,2I_Wood-processing,,TON,8.5414 +MT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,29296.58742 +MT,PM10 Filterable,3Dc_Other-farm,,TON,142315.506 +MT,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,29.3396 +MT,PM10 Filterable,5C_Incineration,,TON,0.0007 +MT,PM10 Filterable,5C_Incineration,biomass,TON,0.9765 +MT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,761.9404405 +MT,PM10 Filterable,5C_Open-burning-residential,,TON,713.152009 +MT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,30.7127234 +MT,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.2266 +MT,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,108.113 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.070368629 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2176.9881 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,7.8506 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4.633458 +MT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,333.15324 +MT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.037358209 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,12.03177614 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.316334352 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.152415518 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,24.89802079 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,288.2841106 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,63.19012523 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1756.169072 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,96.56501683 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,71.70624383 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.988497847 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +MT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,70.17565926 +MT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,129105.1964 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,118.9059994 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,822.4885042 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22.1692348 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,63.85850338 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,47.07523808 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.477926457 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,382.5183694 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.380316646 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,322.1920394 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.470039803 +MT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.56943961 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,719.5527933 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.081732151 +MT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000502922 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,113.489155 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.517631077 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.60437207 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.557750082 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.076578342 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.031166516 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,22.21954512 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.33216794 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.238028939 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.754768907 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,45.50867571 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1452.30608 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.14874012 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048195028 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.32871325 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,870.7256955 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.31678126 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000629188 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.61413557 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,163.5367179 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.523916796 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,17.47890725 +MT,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,112.6782826 +MT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,30.98042362 +MT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,212.16186 +MT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,43.41052909 +MT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,9815.660955 +MT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,18224.50309 +MT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,27.520409 +MT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,25.3755 +MT,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.17618 +MT,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.0008 +MT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,136.3974549 +MT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.0084 +MT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.442 +MT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,802.1198797 +MT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,535.6181518 +MT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,47.6529 +MT,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,9.2423 +MT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,29296.58742 +MT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,142316.8937 +MT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1451.56218 +MT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,32.1963 +MT,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.001597826 +MT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.697233793 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,761.9404405 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,713.152009 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,30.7127234 +MT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.9064 +MT,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.2532 +MT,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,69.7047 +MT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.7832 +MT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,158.4138 +MT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.1716 +MT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.028 +MT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,144.5856851 +MT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.549051194 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,7.388103582 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,170.6441214 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,45.98805503 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,161.9117478 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,38.16438523 +MT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13567.21402 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,93.51290116 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.655731452 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.70302524 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.170124557 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.027217133 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.081735069 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.098090115 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.016807502 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.550304153 +MT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.6844 +MT,PM2.5 Filterable,2A1_Cement-production,,TON,25.7341 +MT,PM2.5 Filterable,2A2_Lime-production,,TON,14.55943307 +MT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,981.5660955 +MT,PM2.5 Filterable,2A6_Other-minerals,,TON,2407.562821 +MT,PM2.5 Filterable,2B_Chemicals-other,,TON,6.9277 +MT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,9.0625529 +MT,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.0383 +MT,PM2.5 Filterable,2C6_Zinc-production,,TON,0.0004 +MT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,29.15208824 +MT,PM2.5 Filterable,2C7a_Copper-production,,TON,0.0042 +MT,PM2.5 Filterable,2D3d_Coating-application,,TON,0.0446 +MT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,231.2124434 +MT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,22.79411067 +MT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,9.59687 +MT,PM2.5 Filterable,2I_Wood-processing,,TON,3.135579 +MT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,6059.249555 +MT,PM2.5 Filterable,3Dc_Other-farm,,TON,28463.14593 +MT,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,7.1271 +MT,PM2.5 Filterable,5C_Incineration,,TON,0.0007 +MT,PM2.5 Filterable,5C_Incineration,biomass,TON,0.6638 +MT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,587.3799757 +MT,PM2.5 Filterable,5C_Open-burning-residential,,TON,653.097437 +MT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,23.6765397 +MT,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.2266 +MT,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,88.1978 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.048868629 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1706.1625 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.5445 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4.549158 +MT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,286.0510251 +MT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.021627194 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.66399751 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.305737909 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.152133322 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,14.99032675 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,196.5382564 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,58.52158903 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,337.0111566 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,95.69798334 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,69.55506657 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.671977513 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +MT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,59.53881851 +MT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13567.21402 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,92.08211573 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,490.3743126 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.2892207 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,32.46097052 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,36.80793322 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.82386992 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,304.2063478 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.111637352 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,239.1375535 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.87296557 +MT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.1985376 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,663.9237512 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.07535763 +MT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000487835 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,98.35006222 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.427609184 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.239056419 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.268014048 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065913662 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.99309954 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.55295801 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.45918244 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.238028939 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.672126863 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,41.86934621 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1437.299341 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.817990285 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043132514 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.060281291 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,844.6040095 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.25162546 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000629188 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.5957116 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,150.4539231 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.448199106 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,16.08059482 +MT,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,110.4451026 +MT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,30.39272362 +MT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,120.571776 +MT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,17.98336524 +MT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,981.5660955 +MT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2630.055289 +MT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,21.031109 +MT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,9.0625529 +MT,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.17618 +MT,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.0008 +MT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,37.73154312 +MT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.0084 +MT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.0446 +MT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,515.4923983 +MT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,413.3275084 +MT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,12.59517 +MT,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,3.836479 +MT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,6059.249555 +MT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,28464.53358 +MT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1039.521762 +MT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,9.9838 +MT,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.001650437 +MT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.384481182 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,587.3799757 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,653.097437 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,23.6765397 +MT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.9064 +MT,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.2532 +MT,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,1045.57 +MT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.0009 +MT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.3325 +MT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,13087.55 +MT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1523.95 +MT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2.051 +MT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,843.1194 +MT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,103.1259 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.655361862 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.184890758 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.011836473 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,86.77603655 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,38.79307915 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,127.9666918 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3102.987172 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,60.32784238 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.62719701 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.042770539 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-06 +MT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,46.26295786 +MT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.903836689 +MT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,80.79488827 +MT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.66321171 +MT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.871106799 +MT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.715322761 +MT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.264222051 +MT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.35801483 +MT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.309624823 +MT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.53424071 +MT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.799384431 +MT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.05545066 +MT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,13.616674 +MT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.011434974 +MT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9.49715E-06 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.470550452 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.72796434 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.631805387 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.186799115 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.031902378 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.03051522 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.372133594 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.740587425 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.010596385 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.057447762 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.984298651 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,26.18845141 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,56.3597855 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.862649768 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.45620939 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.68603746 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.437633355 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.77437E-05 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006367704 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.052376963 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.36384761 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.684933377 +MT,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,181.5786306 +MT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.479969569 +MT,Sulfur Dioxide,2A1_Cement-production,,TON,361.53 +MT,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,172.4057 +MT,Sulfur Dioxide,2A6_Other-minerals,,TON,67.174 +MT,Sulfur Dioxide,2B_Chemicals-other,,TON,1550.4883 +MT,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,5.3543 +MT,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,15.6291 +MT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.5588 +MT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.4643 +MT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,52.662436 +MT,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,3.984 +MT,Sulfur Dioxide,5C_Incineration,,TON,0.002308131 +MT,Sulfur Dioxide,5C_Incineration,biomass,TON,1.40195901 +MT,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,74.40132157 +MT,Sulfur Dioxide,5C_Open-burning-residential,,TON,25.7348411 +MT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.781087994 +MT,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,7.8453 +MT,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,11.3674 +MT,Volatile Organic Compounds,11C_Other-natural,,TON,891011.13 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,5.6902 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.9514 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,329.8827 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,8.4597 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,12.6279 +MT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,63.0699672 +MT,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,352.0163599 +MT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1430.531573 +MT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,10.5185 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,17.31550137 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.68758522 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.141947846 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.917487804 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,33.34056326 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,52.23024256 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,6.720161074 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,510.4818095 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,93.81475998 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,36.16384325 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783831 +MT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,201.934631 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,889.0830978 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,14919.57684 +MT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,105.696551 +MT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1058.897029 +MT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,63.47561576 +MT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,52.87666492 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,832.4143659 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,16.61399431 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,341.59294 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,131.1071938 +MT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,383.391055 +MT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1147.031206 +MT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.859821651 +MT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000222641 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.803912894 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.456839603 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.025526865 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.072690381 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,63.50131295 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,31.48971634 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,333.2330601 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.805296276 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,3.876231904 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,859.4361214 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1618.673418 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.926100327 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.014174996 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,77.51518805 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,985.9097948 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,261.8775082 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.102667517 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.12145874 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5407.191824 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.083790865 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1127.374153 +MT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,45330.06296 +MT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,296.6282376 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,87.85320834 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,113.956634 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11179.85339 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1325.377602 +MT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4829.205127 +MT,Volatile Organic Compounds,2A1_Cement-production,,TON,3.6295 +MT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,493.19624 +MT,Volatile Organic Compounds,2B_Chemicals-other,,TON,70.8804 +MT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.0168 +MT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4531.368405 +MT,Volatile Organic Compounds,2D3d_Coating-application,,TON,2869.035716 +MT,Volatile Organic Compounds,2D3e_Degreasing,,TON,534.848166 +MT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.08500025 +MT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,754.30905 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,658.9808472 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1753.490304 +MT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,308.5265 +MT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,90.76402077 +MT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,85.3317 +MT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,21.904 +MT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,491.478 +MT,Volatile Organic Compounds,3B3_Manure-swine,,TON,80.879 +MT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,5.618 +MT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2555.508773 +MT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,546.50812 +MT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,69.5547 +MT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,154.4112 +MT,Volatile Organic Compounds,5C_Incineration,,TON,0.001025112 +MT,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.454534528 +MT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,519.9122861 +MT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,148.671154 +MT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,34.5913896 +MT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,23.70621909 +MT,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1.0267 +NC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,9.676703 +NC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,48.918905 +NC,Ammonia,1A1a_Public-Electricity,natural_gas,TON,144.4605248 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.53478762 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.221314566 +NC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,139.2163183 +NC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.498741998 +NC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.034454626 +NC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.079055073 +NC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,62.26956728 +NC,Ammonia,1A2c_Chemicals,natural_gas,TON,16.0143 +NC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,15.30011547 +NC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.606674672 +NC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,29.16297898 +NC,Ammonia,1A3bii_Road-LDV,light_oil,TON,3737.694616 +NC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.75948697 +NC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,142.5281402 +NC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,14.28982034 +NC,Ammonia,1A3biii_Road-bus,light_oil,TON,1.322839567 +NC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,71.64444323 +NC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.004324472 +NC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,54.4390855 +NC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,8.217863338 +NC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.4762396 +NC,Ammonia,1A3c_Rail,diesel_oil,TON,3.724330121 +NC,Ammonia,1A3c_Rail,light_oil,TON,0.002091638 +NC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.586822151 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.313497925 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.119493291 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.050200414 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.02800579 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.335269673 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.29801674 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.996448313 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.033847711 +NC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.104312915 +NC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.61057689 +NC,Ammonia,1A4bi_Residential-stationary,biomass,TON,267.5431178 +NC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,17.74499368 +NC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,3.442499983 +NC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,756.2910729 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.783347671 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.297097216 +NC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.04017874 +NC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.713726112 +NC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.067766976 +NC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.085939731 +NC,Ammonia,2A6_Other-minerals,,TON,11.60278895 +NC,Ammonia,2B_Chemicals-other,,TON,515.379444 +NC,Ammonia,2C_Iron-steel-alloy,,TON,31.4862 +NC,Ammonia,2C3_Aluminum-production,,TON,1.06034 +NC,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.06610244 +NC,Ammonia,2D3d_Coating-application,,TON,39.63626523 +NC,Ammonia,2D3e_Degreasing,Other_Fuel,TON,6.221045 +NC,Ammonia,2D3h_Printing,,TON,16.990805 +NC,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,8.337842 +NC,Ammonia,2H1_Pulp-and-paper,,TON,311.4375096 +NC,Ammonia,2H2_Food-and-beverage,,TON,113.6048319 +NC,Ammonia,2H3_Other-industrial-processes,,TON,118.829995 +NC,Ammonia,3B1a_Cattle-dairy,,TON,1455.227 +NC,Ammonia,3B1b_Cattle-non-dairy,,TON,2769.097 +NC,Ammonia,3B2_Manure-sheep,,TON,96.885756 +NC,Ammonia,3B3_Manure-swine,,TON,123782.327 +NC,Ammonia,3B4_Manure-other,,TON,1052.93232 +NC,Ammonia,3B4_Manure-poultry,,TON,26089.16845 +NC,Ammonia,3B4d_Manure-goats,,TON,685.523256 +NC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,5594.25911 +NC,Ammonia,3F_Ag-res-on-field,,TON,1034.181248 +NC,Ammonia,5B_Compost-biogas,Other_Fuel,TON,351.6020213 +NC,Ammonia,5C_Incineration,biomass,TON,0.007725 +NC,Ammonia,5D1_Wastewater-domestic,,TON,26.43 +NC,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,16.5943 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,558573.2324 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,612385.3555 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,34536.13048 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1883310.072 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,50753.83078 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,13.49096537 +NC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1062135.628 +NC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,44925116.69 +NC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,232709.595 +NC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2275628.494 +NC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1002195.63 +NC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,46622.63379 +NC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4555978.192 +NC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,24560.34914 +NC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3357483.86 +NC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,225071.9651 +NC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,273724.144 +NC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3676.52785 +NC,Carbon Dioxide,1A3c_Rail,light_oil,TON,163.4625907 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,245522.56 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,337731.6768 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14767.28023 +NC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,135886.5204 +NC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,867331.0276 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,711982.8126 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,21555.39102 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.429544805 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4925.3776 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,251392.6075 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,131486.1569 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,433467.5873 +NC,Carbon Monoxide,11C_Other-natural,,TON,134204.684 +NC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1262.22 +NC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,347.5879211 +NC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9858.453 +NC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2866.550775 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2657.410078 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15189.47499 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,911.8363004 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,18978.59275 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,316.0036715 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2238.051908 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,26.06425975 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.328642068 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3942.515846 +NC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,7.61 +NC,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,11.23409376 +NC,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.188706239 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6601.404644 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,10459.98468 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.784301701 +NC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12192.84923 +NC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,15672.09815 +NC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,825127.0316 +NC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2441.02627 +NC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,39294.1961 +NC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2474.92528 +NC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1851.996746 +NC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7227.871049 +NC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,618.0545313 +NC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5601.53607 +NC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7981.621622 +NC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12697.28685 +NC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1210.454393 +NC,Carbon Monoxide,1A3c_Rail,light_oil,TON,37.64358554 +NC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1304.539006 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,665.9386007 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,105.0229998 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,81.18904154 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.020815696 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.053578616 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3025.740776 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1055.523939 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,70760.35767 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,315.7987238 +NC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,461.5923542 +NC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,198039.4544 +NC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,45687.7983 +NC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,88.72497935 +NC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,17.21249737 +NC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1872.475078 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2271.14269 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5669.817218 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.26922358 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,38.923966 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,47778.43195 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,260.8294149 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,49835.16621 +NC,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.2 +NC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,80.145 +NC,Carbon Monoxide,2A6_Other-minerals,,TON,1817.51777 +NC,Carbon Monoxide,2B_Chemicals-other,,TON,1027.55033 +NC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2025.03 +NC,Carbon Monoxide,2C3_Aluminum-production,,TON,24.029 +NC,Carbon Monoxide,2C6_Zinc-production,,TON,0.59 +NC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,183.973 +NC,Carbon Monoxide,2C7a_Copper-production,,TON,120.04 +NC,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,34.38 +NC,Carbon Monoxide,2D3d_Coating-application,,TON,47.8452 +NC,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,2.69 +NC,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.3 +NC,Carbon Monoxide,2D3h_Printing,,TON,12.46 +NC,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,4.731 +NC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,7639.93 +NC,Carbon Monoxide,2H2_Food-and-beverage,,TON,1294.772841 +NC,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,163.4214154 +NC,Carbon Monoxide,3Dc_Other-farm,,TON,41.32 +NC,Carbon Monoxide,3F_Ag-res-on-field,,TON,5321.75591 +NC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,788.6206671 +NC,Carbon Monoxide,5C_Incineration,,TON,0.090303883 +NC,Carbon Monoxide,5C_Incineration,biomass,TON,3.968619021 +NC,Carbon Monoxide,5C_Open-burning-commercial,,TON,9.82 +NC,Carbon Monoxide,5C_Open-burning-industrial,,TON,19.43 +NC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,11851.35769 +NC,Carbon Monoxide,5C_Open-burning-residential,,TON,2909.00313 +NC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,862.220572 +NC,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,85.84 +NC,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.08 +NC,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.0689027 +NC,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,90.92803269 +NC,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,409.0247164 +NC,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,63.87989992 +NC,Methane,1A2g_Construction_and_Mining,light_oil,TON,39.88865623 +NC,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.545137098 +NC,Methane,1A3bii_Road-LDV,diesel_oil,TON,41.19777764 +NC,Methane,1A3bii_Road-LDV,light_oil,TON,1964.41421 +NC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.68927268 +NC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,118.3117228 +NC,Methane,1A3biii_Road-bus,diesel_oil,TON,17.65183959 +NC,Methane,1A3biii_Road-bus,light_oil,TON,3.465269557 +NC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,328.9601278 +NC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.982446507 +NC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,80.0583468 +NC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.07800614 +NC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.1935456 +NC,Methane,1A3c_Rail,diesel_oil,TON,0.157820685 +NC,Methane,1A3c_Rail,light_oil,TON,0.119784319 +NC,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.941288424 +NC,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,253.4177601 +NC,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,207.5967603 +NC,Methane,1A4bi_Residential-mobile,diesel_oil,TON,4.840884712 +NC,Methane,1A4bi_Residential-mobile,light_oil,TON,814.9741258 +NC,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.54187086 +NC,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,22.76675599 +NC,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.231724071 +NC,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.21211349 +NC,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,431.810577 +NC,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.415456961 +NC,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,447.3607024 +NC,Nitrogen Oxides,11C_Other-natural,,TON,14025.6496 +NC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,754.5 +NC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,857.7675046 +NC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,38404.93 +NC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2948.187436 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2917.636592 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2012.110131 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,133.6225327 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,9772.224829 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1298.613323 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4582.086374 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,97.67186806 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.40831131 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6044.630694 +NC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,9.06 +NC,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,19.09200601 +NC,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.568993989 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,11463.30838 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,155.3989436 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.150924862 +NC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,5507.073901 +NC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3990.780538 +NC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,98806.61171 +NC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,859.452567 +NC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4402.838674 +NC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,8034.523963 +NC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,166.8000464 +NC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25446.67956 +NC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,70.75693243 +NC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16235.11525 +NC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,743.5780381 +NC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,544.006793 +NC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7334.594126 +NC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.452795969 +NC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10952.70148 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,339.5119147 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,442.4244045 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,177.3801766 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,36.72375193 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.135281772 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3724.605278 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1927.044924 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1094.576859 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,80.11295512 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1077.576204 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2077.155538 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,807.0249106 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,319.4100218 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,61.96500407 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4834.27871 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4602.634494 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,86.01808269 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.060184402 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,42.330912 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,538.5497526 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1378.317248 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3091.974905 +NC,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1 +NC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,30.016 +NC,Nitrogen Oxides,2A6_Other-minerals,,TON,6239.299644 +NC,Nitrogen Oxides,2B_Chemicals-other,,TON,1172.5 +NC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,424.949 +NC,Nitrogen Oxides,2C3_Aluminum-production,,TON,25.011 +NC,Nitrogen Oxides,2C6_Zinc-production,,TON,0.71 +NC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,40.2234 +NC,Nitrogen Oxides,2C7a_Copper-production,,TON,5.65 +NC,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,15.84 +NC,Nitrogen Oxides,2D3d_Coating-application,,TON,201.0508 +NC,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,7.79 +NC,Nitrogen Oxides,2D3f_Dry-cleaning,Other_Fuel,TON,0.36 +NC,Nitrogen Oxides,2D3h_Printing,,TON,15.142 +NC,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,5.611 +NC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,4421.97 +NC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,66.919419 +NC,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,582.5022215 +NC,Nitrogen Oxides,3Dc_Other-farm,,TON,36.88 +NC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,201.591524 +NC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,160.098517 +NC,Nitrogen Oxides,5C_Incineration,,TON,32.75706953 +NC,Nitrogen Oxides,5C_Incineration,biomass,TON,25.75270067 +NC,Nitrogen Oxides,5C_Open-burning-commercial,,TON,5.97 +NC,Nitrogen Oxides,5C_Open-burning-industrial,,TON,11.89 +NC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,350.6319134 +NC,Nitrogen Oxides,5C_Open-burning-residential,,TON,205.341459 +NC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,38.32091043 +NC,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,26.87 +NC,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.33 +NC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.860545034 +NC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1787.146926 +NC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.743954651 +NC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,92.45900912 +NC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.761736862 +NC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.512608608 +NC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.775363004 +NC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.752198668 +NC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.393136 +NC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12.68271238 +NC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.91652579 +NC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,20.358215 +NC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,51.23742302 +NC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3745.839306 +NC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,381.8739421 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,11357.90235 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,86.59695216 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,312.7392416 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.61813111 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.109607941 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,308.0872872 +NC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,5.8786 +NC,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.318214525 +NC,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.132109975 +NC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,65402.5665 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,470.4961641 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.33020241 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,43.21841848 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.820802887 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.435942711 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.96181342 +NC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,19.16460626 +NC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.717900922 +NC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.359511804 +NC,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.018 +NC,PM10 Filterable,2A1_Cement-production,,TON,0.293 +NC,PM10 Filterable,2A2_Lime-production,,TON,7.335461967 +NC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21262.23619 +NC,PM10 Filterable,2A6_Other-minerals,,TON,6200.611916 +NC,PM10 Filterable,2B_Chemicals-other,,TON,1273.254875 +NC,PM10 Filterable,2C_Iron-steel-alloy,,TON,192.1920457 +NC,PM10 Filterable,2C3_Aluminum-production,,TON,3.4649987 +NC,PM10 Filterable,2C5_Lead-production,,TON,0.037069 +NC,PM10 Filterable,2C6_Zinc-production,,TON,0.915217 +NC,PM10 Filterable,2C7_Other-metal,,TON,151.2786132 +NC,PM10 Filterable,2C7a_Copper-production,,TON,3.83906965 +NC,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,96.52044 +NC,PM10 Filterable,2D3d_Coating-application,,TON,88.65362204 +NC,PM10 Filterable,2D3e_Degreasing,,TON,11.375 +NC,PM10 Filterable,2D3h_Printing,,TON,2.85593 +NC,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,18.295 +NC,PM10 Filterable,2H1_Pulp-and-paper,,TON,2077.733681 +NC,PM10 Filterable,2H2_Food-and-beverage,,TON,611.2795831 +NC,PM10 Filterable,2H3_Other-industrial-processes,,TON,758.1515338 +NC,PM10 Filterable,2I_Wood-processing,,TON,80.6262 +NC,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,25446.77699 +NC,PM10 Filterable,3Dc_Other-farm,,TON,43757.90603 +NC,PM10 Filterable,5A_Solid-waste-disposal,,TON,36.6036844 +NC,PM10 Filterable,5C_Incineration,,TON,0.608494 +NC,PM10 Filterable,5C_Incineration,biomass,TON,0.980252 +NC,PM10 Filterable,5C_Open-burning-commercial,,TON,7.518449 +NC,PM10 Filterable,5C_Open-burning-industrial,,TON,18.263928 +NC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1192.148009 +NC,PM10 Filterable,5C_Open-burning-residential,,TON,1300.495837 +NC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,142.7796107 +NC,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.22 +NC,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.88885 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,21.43 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,65.03000068 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4265.1018 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,717.8629177 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,210.6790634 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,64.96454621 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.266176713 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,11760.37951 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,95.83931984 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,342.1027477 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,17.27707434 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.247055208 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,616.105593 +NC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,15.47 +NC,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.88778746 +NC,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.35681254 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1031.68221 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,78.63993616 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001595897 +NC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,362.5457833 +NC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,65402.5665 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,252.6211522 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5279.270826 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,67.7061487 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,248.2506579 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,577.860374 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.719797653 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1411.73313 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.973250735 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1118.854448 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,29.0030541 +NC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,34.6353613 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,233.108385 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.020785615 +NC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,322.0615691 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,490.856099 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.83165534 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,46.81655952 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.475731781 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.981102242 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,87.78857837 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,171.2648219 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,87.35078807 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.85975992 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,76.63590576 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,853.6237966 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5924.297953 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,42.23310029 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,8.193150723 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,24.33476675 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,417.096046 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,49.42678203 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000306972 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.608096 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,406.4523931 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.06701866 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,201.3127421 +NC,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1 +NC,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.018 +NC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,0.293 +NC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,8.79009 +NC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21262.23619 +NC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6695.764875 +NC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1337.817386 +NC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,243.358 +NC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,14.571 +NC,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.037586649 +NC,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.21 +NC,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,211.2803924 +NC,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,5.8762 +NC,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,99.03 +NC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,101.254422 +NC,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,11.375 +NC,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,1.51 +NC,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,3.02493 +NC,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,18.49 +NC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2708.524008 +NC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3678.477395 +NC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,840.0404568 +NC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,80.6262 +NC,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,25446.77699 +NC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,43810.61562 +NC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,871.417932 +NC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,52.7184327 +NC,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.558285316 +NC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.311311544 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,10.01 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,20.11 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1192.148009 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1300.495837 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,142.7796107 +NC,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.22 +NC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,3.17836 +NC,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.01 +NC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,2.248215 +NC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,48.90068765 +NC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,3310.059575 +NC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,379.7690358 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9776.889943 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,77.4651221 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,242.6124949 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.52127288 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.035678947 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,204.2525077 +NC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,5.771725 +NC,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.964224176 +NC,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.099864524 +NC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9325.8174 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,367.4782779 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.41500535 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.360284034 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.765162361 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.335350843 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.11753478 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,14.72835319 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.857274389 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.147737128 +NC,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.018 +NC,PM2.5 Filterable,2A1_Cement-production,,TON,0.103412 +NC,PM2.5 Filterable,2A2_Lime-production,,TON,0.973921677 +NC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2126.223619 +NC,PM2.5 Filterable,2A6_Other-minerals,,TON,1551.257518 +NC,PM2.5 Filterable,2B_Chemicals-other,,TON,518.1793663 +NC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,142.3536283 +NC,PM2.5 Filterable,2C3_Aluminum-production,,TON,1.8750013 +NC,PM2.5 Filterable,2C5_Lead-production,,TON,0.034889527 +NC,PM2.5 Filterable,2C6_Zinc-production,,TON,0.915217 +NC,PM2.5 Filterable,2C7_Other-metal,,TON,121.3736294 +NC,PM2.5 Filterable,2C7a_Copper-production,,TON,1.37415689 +NC,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,90.51044 +NC,PM2.5 Filterable,2D3d_Coating-application,,TON,76.77413826 +NC,PM2.5 Filterable,2D3e_Degreasing,,TON,10.739229 +NC,PM2.5 Filterable,2D3h_Printing,,TON,2.45827011 +NC,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,16.9366581 +NC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1602.34768 +NC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,157.6130232 +NC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,512.6681643 +NC,PM2.5 Filterable,2I_Wood-processing,,TON,44.36864979 +NC,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2731.897251 +NC,PM2.5 Filterable,3Dc_Other-farm,,TON,8733.256644 +NC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,35.3986244 +NC,PM2.5 Filterable,5C_Incineration,,TON,0.246034 +NC,PM2.5 Filterable,5C_Incineration,biomass,TON,0.8940859 +NC,PM2.5 Filterable,5C_Open-burning-commercial,,TON,4.28266 +NC,PM2.5 Filterable,5C_Open-burning-industrial,,TON,2.683898 +NC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,919.0275533 +NC,PM2.5 Filterable,5C_Open-burning-residential,,TON,1190.980908 +NC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,110.0692976 +NC,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.22 +NC,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,1.88885 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.32 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,62.37326847 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3829.3223 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,715.7580114 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,204.267188 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,64.72505603 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.262559988 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,10177.42374 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,86.51604234 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,271.9744049 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,13.18035616 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.173155527 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,488.1110134 +NC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,15.363125 +NC,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.52828073 +NC,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.33008347 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1000.7318 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,72.39881176 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001595897 +NC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,327.7676993 +NC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9325.8174 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,183.8248564 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1922.516775 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,51.6332574 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,81.85813049 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,443.2952416 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.541910816 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1049.254437 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.166219996 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,821.342115 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.11531354 +NC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.1035476 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,216.3899767 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019165098 +NC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,302.7992578 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,387.6306533 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.91745015 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.95110449 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.429104254 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.880561716 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,79.70921734 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,166.1268458 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,80.62170713 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.85975992 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,74.33684394 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,785.3719149 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5813.270074 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,37.79685875 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,7.332525762 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,20.12297788 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,404.5830255 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,45.47276193 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000306972 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.4398544 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,373.9381615 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.19503225 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,185.2076562 +NC,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.1 +NC,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.018 +NC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,0.103412 +NC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,2.42854971 +NC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2126.223619 +NC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2000.820082 +NC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,570.2418801 +NC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,193.5195373 +NC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,12.981 +NC,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.035407176 +NC,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.21 +NC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,181.2254083 +NC,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.41128524 +NC,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,93.02 +NC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,88.80993826 +NC,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,10.739229 +NC,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,1.51 +NC,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.62727011 +NC,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,17.0916581 +NC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2202.90161 +NC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3220.356044 +NC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,595.4680981 +NC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,44.36864979 +NC,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2731.897251 +NC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,8761.056369 +NC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,559.852743 +NC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,51.5133727 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.913258855 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.507711905 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,6.774211 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,4.53 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,919.0275533 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1190.980908 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,110.0692976 +NC,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.22 +NC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,2.93836 +NC,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.01 +NC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,70.2 +NC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,132.3163106 +NC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,48103.88 +NC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,121.4884194 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.2364162 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.197051848 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.261325887 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1777.759662 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,354.4721658 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2659.299081 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,412.3973966 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.40591686 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,928.4274379 +NC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.05 +NC,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,60.9092384 +NC,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,10.6342916 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,21.32294419 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.842190323 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-05 +NC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,611.0870839 +NC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,8.683121882 +NC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,967.5989432 +NC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.81809755 +NC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,48.25424942 +NC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,7.726143982 +NC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.017275149 +NC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,35.64090667 +NC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.531509551 +NC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.19878329 +NC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.855245374 +NC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.94294424 +NC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.224919621 +NC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.0029091 +NC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2055.205879 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,36.36553627 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,186.4908034 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,607.2936063 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,157.1770052 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,17.85503561 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,39.43119571 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.869051452 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.708112909 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.082730279 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.593993766 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,15.74571389 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,105.3500952 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,755.936896 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,146.6504728 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,28.07855141 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.042627913 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.392334908 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.35357E-05 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.058177352 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.563654384 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.190223749 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.888696346 +NC,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.236 +NC,Sulfur Dioxide,2A6_Other-minerals,,TON,2876.598986 +NC,Sulfur Dioxide,2B_Chemicals-other,,TON,4244.3097 +NC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,238.751 +NC,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.45608 +NC,Sulfur Dioxide,2C6_Zinc-production,,TON,0.01 +NC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,217.8194 +NC,Sulfur Dioxide,2C7a_Copper-production,,TON,8.3 +NC,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,5.29 +NC,Sulfur Dioxide,2D3d_Coating-application,,TON,0.990233 +NC,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.02 +NC,Sulfur Dioxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.0021 +NC,Sulfur Dioxide,2D3h_Printing,,TON,7.131344 +NC,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0.144 +NC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1442.82 +NC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,109.9470674 +NC,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,25.28216476 +NC,Sulfur Dioxide,3Dc_Other-farm,,TON,3.77 +NC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,80.6495865 +NC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,27.0507704 +NC,Sulfur Dioxide,5C_Incineration,,TON,1.406540551 +NC,Sulfur Dioxide,5C_Incineration,biomass,TON,6.775133099 +NC,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.9 +NC,Sulfur Dioxide,5C_Open-burning-industrial,,TON,1.78 +NC,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,116.4098376 +NC,Sulfur Dioxide,5C_Open-burning-residential,,TON,34.2235727 +NC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.2800535 +NC,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,24.38 +NC,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.06 +NC,Volatile Organic Compounds,11C_Other-natural,,TON,1086369.27 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,26.52 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,46.25968435 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,525.44825 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,275.337952 +NC,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,11.9 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,292.7473167 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,439.2993341 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,89.08432447 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,790.0860992 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,89.36198687 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,53.88171582 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.126877685 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.684355265 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,662.9563897 +NC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,76.72 +NC,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.09563 +NC,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1290.735823 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,725.573482 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.117838257 +NC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1743.829915 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1470.0623 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,66452.18164 +NC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,255.340946 +NC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2805.641208 +NC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,586.2646132 +NC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,92.24814423 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1791.026102 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,24.96307346 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1256.277312 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,358.8141718 +NC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1634.46857 +NC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,379.0615641 +NC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.050173663 +NC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,387.4850057 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,20.23781472 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.31296812 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.836641677 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.814308357 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.140451003 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,268.921266 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,242.7248158 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2706.335571 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,44.87465455 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,107.7410023 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,12825.89002 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6364.000464 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,12.42150353 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.409749129 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,257.3867867 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,449.8463303 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,500.3895269 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.05009006 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.2408396 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12881.37632 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,70.06321801 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,14242.28825 +NC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,888.8264679 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1287.430013 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,547.1867443 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7049.339332 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,14587.52815 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.12 +NC,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.08 +NC,Volatile Organic Compounds,2A6_Other-minerals,,TON,150.3181054 +NC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1596.27373 +NC,Volatile Organic Compounds,2B_Chemicals-other,,TON,3306.972026 +NC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,146.961 +NC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,551.236 +NC,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.04 +NC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,231.71085 +NC,Volatile Organic Compounds,2C7a_Copper-production,,TON,38.14 +NC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,43975.41053 +NC,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,59.91 +NC,Volatile Organic Compounds,2D3d_Coating-application,,TON,37344.18247 +NC,Volatile Organic Compounds,2D3e_Degreasing,,TON,7055.302684 +NC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,45.9850005 +NC,Volatile Organic Compounds,2D3h_Printing,,TON,22799.73644 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,27.31624668 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2121.40405 +NC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,11549.1667 +NC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2834.535927 +NC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2442.243704 +NC,Volatile Organic Compounds,2I_Wood-processing,,TON,40.65 +NC,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,116.845 +NC,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,222.34 +NC,Volatile Organic Compounds,3B3_Manure-swine,,TON,9938.905 +NC,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2092.613 +NC,Volatile Organic Compounds,3Dc_Other-farm,,TON,142.34 +NC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6707.891733 +NC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,381.731179 +NC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,188.1165013 +NC,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,815.2843897 +NC,Volatile Organic Compounds,5C_Incineration,,TON,0.79564141 +NC,Volatile Organic Compounds,5C_Incineration,biomass,TON,3.678406087 +NC,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.5 +NC,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.99 +NC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,813.4653574 +NC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,292.953791 +NC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,160.810952 +NC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,134.82 +NC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,151.68188 +NC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,36.565486 +NC,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.159033951 +ND,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,189.85473 +ND,Ammonia,1A1b_Pet-refining,natural_gas,TON,70 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.220702348 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.008412562 +ND,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.423499684 +ND,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.000957451 +ND,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,143.6535 +ND,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.63781E-06 +ND,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,3.62408552 +ND,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.363440349 +ND,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.035150649 +ND,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.775968133 +ND,Ammonia,1A3bii_Road-LDV,light_oil,TON,260.2745049 +ND,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.61011856 +ND,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.69819224 +ND,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.568192627 +ND,Ammonia,1A3biii_Road-bus,light_oil,TON,0.424199149 +ND,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43.76015575 +ND,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,6.128896275 +ND,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.318562 +ND,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.132506284 +ND,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.46013766 +ND,Ammonia,1A3c_Rail,diesel_oil,TON,8.215651673 +ND,Ammonia,1A3c_Rail,light_oil,TON,0.003266319 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.157500023 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.250808344 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.50691579 +ND,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.021498259 +ND,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.464915514 +ND,Ammonia,1A4bi_Residential-stationary,biomass,TON,52.82671959 +ND,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.255000785 +ND,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.020249999 +ND,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,126.5958915 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.43154371 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.658346664 +ND,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003099495 +ND,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.326474303 +ND,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.084935888 +ND,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.48362179 +ND,Ammonia,2A6_Other-minerals,,TON,65.4 +ND,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,84.015 +ND,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,833.913 +ND,Ammonia,3B1a_Cattle-dairy,,TON,184.656 +ND,Ammonia,3B1b_Cattle-non-dairy,,TON,4232.857 +ND,Ammonia,3B2_Manure-sheep,,TON,309.949068 +ND,Ammonia,3B3_Manure-swine,,TON,883.859 +ND,Ammonia,3B4_Manure-other,,TON,601.3194 +ND,Ammonia,3B4_Manure-poultry,,TON,18.9414408 +ND,Ammonia,3B4d_Manure-goats,,TON,29.975484 +ND,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,30078.092 +ND,Ammonia,3F_Ag-res-on-field,,TON,3531.01059 +ND,Ammonia,5B_Compost-biogas,Other_Fuel,TON,15.76565 +ND,Ammonia,5D1_Wastewater-domestic,,TON,1.85676703 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,27184.702 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23211.21945 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1306.300972 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,167850.904 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2938.31992 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.349097003 +ND,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,248638.2898 +ND,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3169956.275 +ND,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,52175.1419 +ND,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,282473.3975 +ND,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,105202.2023 +ND,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,12638.14683 +ND,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2384038.345 +ND,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,136565.3462 +ND,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1761413.228 +ND,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,54159.63301 +ND,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22069.8525 +ND,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5768.78719 +ND,Carbon Dioxide,1A3c_Rail,light_oil,TON,255.2696583 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30844.32679 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,42440.61588 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1817.699548 +ND,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2645.391367 +ND,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,34556.05484 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3253450.828 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,49686.42289 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,11.25942841 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,379.963 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,90570.66335 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10459.12754 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,34445.7115 +ND,Carbon Monoxide,11C_Other-natural,,TON,63893.307 +ND,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,6043.8 +ND,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,16.1 +ND,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,342.5 +ND,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2581.8 +ND,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,191.2 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,139.1686642 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,578.6900793 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,34.82190753 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,342.4999452 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.5656522 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,861.1 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.89863E-05 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1311.239391 +ND,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,245.4 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,533.5408597 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,592.5706516 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078430234 +ND,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3167.350455 +ND,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3944.326209 +ND,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,84746.41031 +ND,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,501.356612 +ND,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7039.508972 +ND,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,307.1579612 +ND,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,724.8179281 +ND,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4047.853514 +ND,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3418.359065 +ND,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2866.37125 +ND,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2157.927571 +ND,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1016.28541 +ND,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2650.435374 +ND,Carbon Monoxide,1A3c_Rail,light_oil,TON,56.98374742 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,18.89999839 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.9 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,132.6273798 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8621.164014 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,39.24193673 +ND,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,8.95054013 +ND,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,8161.227344 +ND,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,8623.86809 +ND,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,16.2749921 +ND,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250021 +ND,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,376.5032173 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11380.28912 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10396.09522 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.247683684 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.995647 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10924.77984 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.74781275 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3931.711001 +ND,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,26964.0335 +ND,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1453.625218 +ND,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,33.3 +ND,Carbon Monoxide,2B_Chemicals-other,,TON,118.1 +ND,Carbon Monoxide,2D3d_Coating-application,,TON,0.6 +ND,Carbon Monoxide,2H2_Food-and-beverage,,TON,2293.374241 +ND,Carbon Monoxide,3Dc_Other-farm,,TON,36.1 +ND,Carbon Monoxide,3F_Ag-res-on-field,,TON,18447.08331 +ND,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,15.74585 +ND,Carbon Monoxide,5C_Incineration,,TON,0.213683713 +ND,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1530.057998 +ND,Carbon Monoxide,5C_Open-burning-residential,,TON,1424.16431 +ND,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,29.865659 +ND,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.906237117 +ND,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.457757879 +ND,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15.48015093 +ND,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,5.649745101 +ND,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.379431447 +ND,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.05451372 +ND,Methane,1A3bii_Road-LDV,diesel_oil,TON,15.36822481 +ND,Methane,1A3bii_Road-LDV,light_oil,TON,245.3141924 +ND,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.54762961 +ND,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.37151173 +ND,Methane,1A3biii_Road-bus,diesel_oil,TON,1.933577847 +ND,Methane,1A3biii_Road-bus,light_oil,TON,1.677775897 +ND,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,165.8480556 +ND,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,6.362994784 +ND,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,45.0892464 +ND,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,6.612185526 +ND,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.40642789 +ND,Methane,1A3c_Rail,diesel_oil,TON,0.247354724 +ND,Methane,1A3c_Rail,light_oil,TON,0.195410161 +ND,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.997703746 +ND,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,33.2301365 +ND,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,25.89729107 +ND,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.093870684 +ND,Methane,1A4bi_Residential-mobile,light_oil,TON,38.13009124 +ND,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,90.52277642 +ND,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,48.57899157 +ND,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.073896558 +ND,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016316988 +ND,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,100.2811263 +ND,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.271643267 +ND,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,35.71959398 +ND,Nitrogen Oxides,11C_Other-natural,,TON,29691.348 +ND,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,46121.1 +ND,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,29.7 +ND,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,339.7 +ND,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,351.6 +ND,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,197 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,149.7674204 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,77.15608416 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.084782072 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,109.5100091 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.9019246 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2042.9 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00031885 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2251.12918 +ND,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,69.3 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,963.3134277 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,10.18228758 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092489 +ND,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,579.9167759 +ND,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,988.8512689 +ND,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,8810.477291 +ND,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,178.805349 +ND,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,661.7094126 +ND,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1182.742536 +ND,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,69.46314779 +ND,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13789.33259 +ND,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,397.8033547 +ND,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9772.57372 +ND,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,173.0742102 +ND,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,47.9007407 +ND,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15498.97361 +ND,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.836859759 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,6.93000245 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.2 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.2 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,242.0947428 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,159.1900026 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9.982555031 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,20.96192419 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,100.8880803 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,130.8459545 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,58.58998645 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.364499968 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1033.472654 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24421.42467 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,277.3092079 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.278917189 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.271225 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,180.4067672 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,109.644776 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,258.9863137 +ND,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,35574.42055 +ND,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23.46471343 +ND,Nitrogen Oxides,2A6_Other-minerals,,TON,3057.8 +ND,Nitrogen Oxides,2B_Chemicals-other,,TON,56.1 +ND,Nitrogen Oxides,2D3d_Coating-application,,TON,0.6 +ND,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,2 +ND,Nitrogen Oxides,2H2_Food-and-beverage,,TON,339.3 +ND,Nitrogen Oxides,3Dc_Other-farm,,TON,36.3 +ND,Nitrogen Oxides,3F_Ag-res-on-field,,TON,655.120475 +ND,Nitrogen Oxides,5C_Incineration,,TON,9.967403101 +ND,Nitrogen Oxides,5C_Incineration,biomass,TON,0.140385959 +ND,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,45.26798646 +ND,Nitrogen Oxides,5C_Open-burning-residential,,TON,100.529301 +ND,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.3273618 +ND,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.700119358 +ND,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,169.2136759 +ND,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.166399685 +ND,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.01168084 +ND,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.195241964 +ND,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.50163356 +ND,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.153825667 +ND,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.474025393 +ND,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.72584001 +ND,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.559501798 +ND,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.352266091 +ND,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1289 +ND,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.4 +ND,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,22.6 +ND,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,113.2 +ND,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.791 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,98.8 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,40.8499516 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.220974169 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,185.7 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00008428 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,64.98545465 +ND,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.6 +ND,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,62225.3217 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,15.75000231 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.8 +ND,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.51540049 +ND,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.021870002 +ND,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.881536785 +ND,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.59325 +ND,PM10 Filterable,2A5b_Construction-and-demolition,,TON,7860.230807 +ND,PM10 Filterable,2A6_Other-minerals,,TON,10074.9883 +ND,PM10 Filterable,2B_Chemicals-other,,TON,119.1 +ND,PM10 Filterable,2D3d_Coating-application,,TON,0.361538 +ND,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,2.9 +ND,PM10 Filterable,2H2_Food-and-beverage,,TON,660.0449745 +ND,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,37.9 +ND,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,20190.0881 +ND,PM10 Filterable,3Dc_Other-farm,,TON,319647.08 +ND,PM10 Filterable,5C_Incineration,,TON,0.2 +ND,PM10 Filterable,5C_Open-burning-land-clearing,,TON,153.9110642 +ND,PM10 Filterable,5C_Open-burning-residential,,TON,464.30366 +ND,PM10 Filterable,5C_Open-burning-yard-waste,,TON,4.9456084 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,3747.504472 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,23.802433 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,41.132 +ND,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,203.7 +ND,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,27.025 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.34853372 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.47667548 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.162382139 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,98.8 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,49.9785078 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.48240719 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,336.2 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,9.29759E-05 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,159.8215916 +ND,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.6 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,81.9859987 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.557216954 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +ND,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,97.15558604 +ND,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,62225.3217 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,55.00852923 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,523.0736945 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.9828832 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,41.25191731 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,76.08695324 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.927695055 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,736.4040045 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,20.27803434 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,629.399234 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,10.18740287 +ND,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.84093211 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,491.9168138 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.032474638 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,16.28550323 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.948 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.51980592 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.97847445 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.228702316 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.485759212 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,27.82020419 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1241.146033 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.746898405 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048194999 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.89199843 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1969.270351 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.198881329 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001422625 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.430948 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,115.3681753 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.312078174 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,15.99735167 +ND,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1181.823348 +ND,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.466647423 +ND,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7860.230807 +ND,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,10852.1454 +ND,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,131.3 +ND,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.361538 +ND,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,2.9 +ND,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1108.938665 +ND,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,37.9 +ND,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,20190.0881 +ND,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,319664.08 +ND,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2934.348646 +ND,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.412036395 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,153.9110642 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,464.30366 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,4.9456084 +ND,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,191.416923 +ND,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,20.1062 +ND,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,22.6 +ND,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,80.8 +ND,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.791 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,56.741181 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,36.61499757 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.219074088 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,108.5 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.48937E-05 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,59.90060033 +ND,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1 +ND,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,6873.05371 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,13.54499682 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.7 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.70165219 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.016807499 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.034845508 +ND,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.407166 +ND,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,786.0230807 +ND,PM2.5 Filterable,2A6_Other-minerals,,TON,1315.86093 +ND,PM2.5 Filterable,2B_Chemicals-other,,TON,111.44681 +ND,PM2.5 Filterable,2D3d_Coating-application,,TON,0.3 +ND,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,2.9 +ND,PM2.5 Filterable,2H2_Food-and-beverage,,TON,369.93956 +ND,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,37.45745 +ND,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,4156.6045 +ND,PM2.5 Filterable,3Dc_Other-farm,,TON,63930.073 +ND,PM2.5 Filterable,5C_Incineration,,TON,0.2 +ND,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,118.6500119 +ND,PM2.5 Filterable,5C_Open-burning-residential,,TON,425.20405 +ND,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,3.8125863 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,2649.921395 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,22.508633 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,41.132 +ND,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,171.3 +ND,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,27.025 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.03311471 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.466808675 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.16219028 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,56.741181 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,45.74350186 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.48057602 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,259 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,6.35896E-05 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,154.7367473 +ND,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,79.52640518 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.195518633 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +ND,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,84.22749765 +ND,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,6873.05371 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,42.44650968 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,304.0364111 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.9293178 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,21.91923309 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,61.08839161 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.34232449 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,545.0250652 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.440386408 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,454.202194 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.426895881 +ND,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.74249734 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,453.5619935 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029942806 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,14.08050563 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.848 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,20.87421373 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.13273168 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.228702316 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.441185808 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,25.59532385 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1231.644721 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.93314823 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043132525 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.045306044 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1910.192033 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.54344919 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001422625 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.41802 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,106.1388629 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.242715794 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,14.71756202 +ND,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1153.008399 +ND,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.280567423 +ND,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,786.0230807 +ND,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2093.01848 +ND,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,123.64681 +ND,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.3 +ND,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,2.9 +ND,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,818.8332672 +ND,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,37.45745 +ND,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4156.6045 +ND,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,63947.073 +ND,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1958.556267 +ND,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.412036395 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,118.6500119 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,425.20405 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3.8125863 +ND,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,50555 +ND,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.7 +ND,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,18.7 +ND,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,243.3 +ND,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,762.7 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.522914359 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.174506664 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.010979172 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,48.41250008 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0496439 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1651.4 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00134705 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1378.400266 +ND,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,549 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.861171412 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.048784221 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-06 +ND,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,67.23296933 +ND,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.171656689 +ND,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,51.76707165 +ND,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.451661173 +ND,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.616521995 +ND,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.928000366 +ND,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.206172496 +ND,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20.56297812 +ND,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.229564796 +ND,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.27001142 +ND,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.884099301 +ND,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.361500537 +ND,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,9.283157952 +ND,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004542905 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.787499896 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.4 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.360433065 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.717309013 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.01018309 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.031024433 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.628537089 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,27.44739847 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,138.6630145 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.862650005 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.64461314 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37.51526034 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.905086288 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.27297E-05 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004486975 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.645652005 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.333313283 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.626878995 +ND,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2534.837842 +ND,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,514.8033551 +ND,Sulfur Dioxide,2A6_Other-minerals,,TON,1987.3 +ND,Sulfur Dioxide,2B_Chemicals-other,,TON,7.3 +ND,Sulfur Dioxide,2H2_Food-and-beverage,,TON,313.2 +ND,Sulfur Dioxide,3Dc_Other-farm,,TON,2.6 +ND,Sulfur Dioxide,3F_Ag-res-on-field,,TON,213.313476 +ND,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,21.8 +ND,Sulfur Dioxide,5C_Incineration,,TON,0.249462023 +ND,Sulfur Dioxide,5C_Incineration,biomass,TON,0.498924046 +ND,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,15.0289636 +ND,Sulfur Dioxide,5C_Open-burning-residential,,TON,16.7548801 +ND,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.28680504 +ND,Volatile Organic Compounds,11C_Other-natural,,TON,192294.21 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,619.9 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.4 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,46.2 +ND,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,40.80283019 +ND,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,680.0471698 +ND,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,32 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.5281759 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.74183323 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.381826403 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,63.3284999 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.020250118 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,42.8 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.62323E-06 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,218.0873566 +ND,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,62.2 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,107.2891579 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,41.33885495 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783828 +ND,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,321.9667421 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,387.5274727 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7593.694946 +ND,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,57.6701636 +ND,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,561.8443821 +ND,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,76.93496182 +ND,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,35.84775605 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1054.060601 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,139.6141002 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,631.982123 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,104.9030689 +ND,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,158.557914 +ND,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,782.8263642 +ND,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.53735854 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.535500276 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.1 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.2 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30.49928639 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,322.211052 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.598025194 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.09096088 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,549.3291511 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1363.835978 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.27850063 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.014174996 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,51.7422759 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2228.501833 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,406.677289 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.232136251 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.787668 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3965.589048 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.573291902 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1020.250022 +ND,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,471586.1216 +ND,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,305.3240991 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,10.99946381 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,218.5988587 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2890.859497 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,919.0428807 +ND,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2943.549745 +ND,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,608.92245 +ND,Volatile Organic Compounds,2B_Chemicals-other,,TON,666.7 +ND,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3232.021685 +ND,Volatile Organic Compounds,2D3d_Coating-application,,TON,2902.775157 +ND,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,712.604705 +ND,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.639998 +ND,Volatile Organic Compounds,2D3h_Printing,,TON,825.52469 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2980.31876 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2219.13666 +ND,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,835.3251467 +ND,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,527.5 +ND,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,14.819 +ND,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,339.871 +ND,Volatile Organic Compounds,3B3_Manure-swine,,TON,70.964 +ND,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1.041 +ND,Volatile Organic Compounds,3Dc_Other-farm,,TON,28.9 +ND,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,5738.4951 +ND,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1279.392201 +ND,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,34.31 +ND,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,111.55413 +ND,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.210177266 +ND,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,105.0217242 +ND,Volatile Organic Compounds,5C_Open-burning-residential,,TON,96.793619 +ND,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.5701815 +ND,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,9.82 +ND,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,31.3 +NE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.7718539 +NE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,424.87326 +NE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,6.0565107 +NE,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.805655572 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.036809335 +NE,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.000137939 +NE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.129959952 +NE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.029626207 +NE,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.0003E-11 +NE,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.016170979 +NE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,208.8150708 +NE,Ammonia,1A2c_Chemicals,natural_gas,TON,1.4102001 +NE,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.289976754 +NE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.110730387 +NE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,10.67351185 +NE,Ammonia,1A3bii_Road-LDV,light_oil,TON,625.2884942 +NE,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.59055879 +NE,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,43.84175757 +NE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.587606445 +NE,Ammonia,1A3biii_Road-bus,light_oil,TON,0.577781188 +NE,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.00057169 +NE,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,46.762255 +NE,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.709730787 +NE,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20.55847487 +NE,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.281031245 +NE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.58732761 +NE,Ammonia,1A3c_Rail,diesel_oil,TON,30.86235662 +NE,Ammonia,1A3c_Rail,light_oil,TON,0.00976743 +NE,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000472145 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.882499593 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0502 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.08 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.5043016 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.491571608 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.993285447 +NE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.128545201 +NE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.714557557 +NE,Ammonia,1A4bi_Residential-stationary,biomass,TON,123.007681 +NE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.378000038 +NE,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.020249992 +NE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,423.1468627 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23.03069551 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.576028218 +NE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.008351448 +NE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.008128625 +NE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.133956909 +NE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.763753486 +NE,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0.0000001 +NE,Ammonia,2A1_Cement-production,,TON,1.49 +NE,Ammonia,2A6_Other-minerals,,TON,0 +NE,Ammonia,2B_Chemicals-other,Other_Fuel,TON,187.141 +NE,Ammonia,2C7_Other-metal,Other_Fuel,TON,85.22 +NE,Ammonia,2D3d_Coating-application,Other_Fuel,TON,0.0000001 +NE,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.5700001 +NE,Ammonia,2H2_Food-and-beverage,,TON,5.3974003 +NE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,312.6087421 +NE,Ammonia,3B1a_Cattle-dairy,,TON,946.32 +NE,Ammonia,3B1b_Cattle-non-dairy,,TON,56615.2 +NE,Ammonia,3B2_Manure-sheep,,TON,266.895684 +NE,Ammonia,3B3_Manure-swine,,TON,33485.137 +NE,Ammonia,3B4_Manure-other,,TON,882.552 +NE,Ammonia,3B4_Manure-poultry,,TON,1490.670884 +NE,Ammonia,3B4d_Manure-goats,,TON,241.693188 +NE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,49503.96445 +NE,Ammonia,3Dc_Other-farm,,TON,0.86 +NE,Ammonia,3F_Ag-res-on-field,,TON,254.769556 +NE,Ammonia,5B_Compost-biogas,Other_Fuel,TON,40.11349 +NE,Ammonia,5D1_Wastewater-domestic,Other_Fuel,TON,306.53 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,99236.41366 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,101658.243 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5741.939713 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,528131.8222 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,9267.154554 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.698186622 +NE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,355583.8595 +NE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,7310686.656 +NE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,84422.9231 +NE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,632723.6911 +NE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,35817.4153 +NE,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,17048.65309 +NE,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,21.1907 +NE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2651471.09 +NE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,40690.5657 +NE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1248481.872 +NE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,60612.80259 +NE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31524.0233 +NE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,17164.45339 +NE,Carbon Dioxide,1A3c_Rail,light_oil,TON,764.3120297 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,60453.34001 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,83161.33505 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3740.432882 +NE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,15817.66734 +NE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,127489.3329 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2834843.897 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,43458.57885 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.83930366 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1023.7752 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,68687.52342 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,16495.64345 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,54397.93794 +NE,Carbon Monoxide,11C_Other-natural,,TON,101357.83 +NE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,16.0285015 +NE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,10025.83 +NE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.4200003 +NE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,432.9701013 +NE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,34.1311004 +NE,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.21 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,375.6213205 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2497.894095 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,150.0443141 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.006852991 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.01741848 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,75.03091271 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.23261E-07 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.139679382 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1800.887067 +NE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,27.8550402 +NE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.14 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1679.197438 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1887.538181 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.15686002 +NE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3326.393327 +NE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6210.52763 +NE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,185092.312 +NE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1106.870917 +NE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,21634.9156 +NE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,118.8818112 +NE,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,978.5760756 +NE,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.0688592 +NE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4520.307555 +NE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,973.8244174 +NE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1860.917324 +NE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2617.70377 +NE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1416.273023 +NE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,9927.912755 +NE,Carbon Monoxide,1A3c_Rail,light_oil,TON,173.1300669 +NE,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.17783614 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,105.9274032 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.175937712 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.490126663 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,81.88365981 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,259.8906738 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,17176.20263 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,78.97886355 +NE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,53.53810384 +NE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,29965.40656 +NE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,19268.87291 +NE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.889999015 +NE,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101249998 +NE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,980.0359691 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9912.715855 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,9204.535427 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.090316389 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.090712 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,12699.58099 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.72281687 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6212.51398 +NE,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,22.4221002 +NE,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.4561865 +NE,Carbon Monoxide,2A1_Cement-production,,TON,71.5 +NE,Carbon Monoxide,2A6_Other-minerals,,TON,0 +NE,Carbon Monoxide,2B_Chemicals-other,,TON,524.6460004 +NE,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.0860005 +NE,Carbon Monoxide,2C7a_Copper-production,,TON,0.000001 +NE,Carbon Monoxide,2D3d_Coating-application,,TON,0.0043002 +NE,Carbon Monoxide,2D3e_Degreasing,,TON,5E-11 +NE,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,49.1289 +NE,Carbon Monoxide,2H2_Food-and-beverage,,TON,409.4015312 +NE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1192.703213 +NE,Carbon Monoxide,3Dc_Other-farm,,TON,116.6011651 +NE,Carbon Monoxide,3F_Ag-res-on-field,,TON,3705.5521 +NE,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,199.656644 +NE,Carbon Monoxide,5C_Incineration,biomass,TON,23.75569659 +NE,Carbon Monoxide,5C_Open-burning-commercial,,TON,1.11 +NE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2153.414253 +NE,Carbon Monoxide,5C_Open-burning-residential,,TON,2388.47947 +NE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,56.9248551 +NE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,11.25 +NE,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.239402125 +NE,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.12030606 +NE,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,67.93305316 +NE,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,17.77202663 +NE,Methane,1A2g_Construction_and_Mining,light_oil,TON,7.372473773 +NE,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.109027181 +NE,Methane,1A3bii_Road-LDV,diesel_oil,TON,18.22781667 +NE,Methane,1A3bii_Road-LDV,light_oil,TON,526.0611865 +NE,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.15567139 +NE,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,64.13287981 +NE,Methane,1A3biii_Road-bus,diesel_oil,TON,1.236728088 +NE,Methane,1A3biii_Road-bus,light_oil,TON,2.519485068 +NE,Methane,1A3biii_Road-bus,natural_gas,TON,0.0319585 +NE,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,267.4790436 +NE,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.702021675 +NE,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.57773167 +NE,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.567342126 +NE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.037925724 +NE,Methane,1A3c_Rail,diesel_oil,TON,0.736613597 +NE,Methane,1A3c_Rail,light_oil,TON,0.570842566 +NE,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.9552907 +NE,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,63.54008882 +NE,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,51.65179884 +NE,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.560924286 +NE,Methane,1A4bi_Residential-mobile,light_oil,TON,133.458647 +NE,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,78.87949638 +NE,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,41.9811609 +NE,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.938448663 +NE,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.04407907 +NE,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,110.0924083 +NE,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.428491441 +NE,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,56.38893099 +NE,Nitrogen Oxides,11C_Other-natural,,TON,45713.412 +NE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,60.7558009 +NE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,25598.55 +NE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.2000004 +NE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,514.3909015 +NE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,19.2312004 +NE,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.85 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,516.0639162 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,333.0599527 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22.05342811 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.006358017 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.29675602 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,288.8992921 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.05779E-07 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.529575217 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5200.756089 +NE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,13.3696202 +NE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.55 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3031.74759 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,30.05796459 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.030184925 +NE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,825.1138697 +NE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1489.267056 +NE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,22152.96174 +NE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,335.118137 +NE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2172.013417 +NE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,285.8466535 +NE,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,90.44871033 +NE,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.0211199 +NE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16342.89832 +NE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,121.3245107 +NE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5897.512584 +NE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,221.5275039 +NE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,68.6893473 +NE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,56176.3354 +NE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.304346964 +NE,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.9194118 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,38.84300454 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.53896237 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.461828207 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,123.4084586 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,474.4786739 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,287.4061709 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,19.9627666 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,125.4708549 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,335.289409 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,303.8843994 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,6.804001425 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.364499821 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2464.35376 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21272.872 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,227.4694253 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.243738132 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.801233 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,149.8922618 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,172.9148685 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,407.6893882 +NE,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,8.9610011 +NE,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.1697995 +NE,Nitrogen Oxides,2A1_Cement-production,,TON,1949.02 +NE,Nitrogen Oxides,2A6_Other-minerals,,TON,0 +NE,Nitrogen Oxides,2B_Chemicals-other,,TON,352.3512003 +NE,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.1918 +NE,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.1522 +NE,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,3.2320003 +NE,Nitrogen Oxides,2D3d_Coating-application,,TON,0.0055002 +NE,Nitrogen Oxides,2D3e_Degreasing,,TON,5E-11 +NE,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,2.7792 +NE,Nitrogen Oxides,2H2_Food-and-beverage,,TON,153.5604008 +NE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1127.817735 +NE,Nitrogen Oxides,3Dc_Other-farm,,TON,104.7399301 +NE,Nitrogen Oxides,3F_Ag-res-on-field,,TON,87.805963 +NE,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,13.93 +NE,Nitrogen Oxides,5C_Incineration,biomass,TON,223.629725 +NE,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.11 +NE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,63.71047451 +NE,Nitrogen Oxides,5C_Open-burning-residential,,TON,168.598576 +NE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.52999387 +NE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.63 +NE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.024545501 +NE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,425.7268751 +NE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.286725132 +NE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,50.62283362 +NE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.101601231 +NE,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.710570662 +NE,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.00192169 +NE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.629326196 +NE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.251893181 +NE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.930207877 +NE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.912737206 +NE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.483975495 +NE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.073532523 +NE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1258.731177 +NE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.1300004 +NE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,24.01264153 +NE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,4.8730402 +NE,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.044189282 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.079289699 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,46.47388516 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.03363E-07 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.028614866 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,160.8960805 +NE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.6437541 +NE,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0038 +NE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,105197.4852 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,122.7748401 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.5051251 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.117136532 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.948283039 +NE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.408239978 +NE,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.021869999 +NE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.89912184 +NE,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.1706 +NE,PM10 Filterable,2A1_Cement-production,,TON,27.6750002 +NE,PM10 Filterable,2A2_Lime-production,,TON,0.68733 +NE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16290.69492 +NE,PM10 Filterable,2A6_Other-minerals,,TON,484.4598015 +NE,PM10 Filterable,2B_Chemicals-other,,TON,81.8517004 +NE,PM10 Filterable,2C_Iron-steel-alloy,,TON,16.1469 +NE,PM10 Filterable,2C3_Aluminum-production,,TON,0.042364 +NE,PM10 Filterable,2C6_Zinc-production,,TON,0.0000001 +NE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,74.8831024 +NE,PM10 Filterable,2C7a_Copper-production,,TON,9.4314402 +NE,PM10 Filterable,2D3d_Coating-application,,TON,13.5025015 +NE,PM10 Filterable,2D3e_Degreasing,,TON,0.04 +NE,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,4.5701894 +NE,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,6.875 +NE,PM10 Filterable,2H2_Food-and-beverage,,TON,506.5986702 +NE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1134.557553 +NE,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,74181.0235 +NE,PM10 Filterable,3Dc_Other-farm,,TON,115728.1543 +NE,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,54.6532 +NE,PM10 Filterable,5C_Incineration,biomass,TON,12.0039 +NE,PM10 Filterable,5C_Open-burning-commercial,,TON,0.15 +NE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,216.6156182 +NE,PM10 Filterable,5C_Open-burning-residential,,TON,778.688043 +NE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,9.4264845 +NE,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.02 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.421998164 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1345.81575 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.148200456 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,53.79349555 +NE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,8.263189415 +NE,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,37.14892489 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.71019603 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.704035116 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.044069057 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.35451614 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,52.72530776 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.30664E-07 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.0616422 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,384.2865105 +NE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.66064066 +NE,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,258.0392472 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.34309489 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319178 +NE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,94.98738477 +NE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,105197.4852 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,83.37443327 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1061.594001 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.7168948 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,97.65421347 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,21.64012972 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.305458096 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00371311 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,716.1636409 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.484688903 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,361.5282539 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,9.669078515 +NE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.7701306 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1814.927669 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.097140328 +NE,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.023607218 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,123.9900403 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.729615101 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.243636582 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.55786138 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,42.16868604 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.51262215 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.471653067 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.886259392 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,117.8610802 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2716.392775 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.899639941 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048194996 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.7377164 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1715.36511 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.973107591 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001243192 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.1655105 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,102.8988704 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.646746497 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,25.26364008 +NE,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.296642377 +NE,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,29.6791502 +NE,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.721491 +NE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16290.69492 +NE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,596.887389 +NE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,103.8517304 +NE,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,28.4933 +NE,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.1513 +NE,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.00000046 +NE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,78.29973237 +NE,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,10.97152092 +NE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.5025015 +NE,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.04 +NE,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,4.5701894 +NE,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,6.875 +NE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1075.545563 +NE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1134.909554 +NE,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,74181.0235 +NE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,115766.1979 +NE,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,643.63869 +NE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,102.5452 +NE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.68253074 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.232323 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,216.6156182 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,778.688043 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.4264845 +NE,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.052 +NE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.214292428 +NE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,474.4231968 +NE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.130000292 +NE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,22.94114147 +NE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,4.201950283 +NE,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.043833216 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.883096746 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,4.387430262 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.68021E-07 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.01325968 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,152.2711481 +NE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.4697541 +NE,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0035625 +NE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11555.63577 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,66.34981545 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.42556962 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.3800774 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.54828314 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.313740022 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.016807503 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.694516613 +NE,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.1706 +NE,PM2.5 Filterable,2A1_Cement-production,,TON,14.06935987 +NE,PM2.5 Filterable,2A2_Lime-production,,TON,0.1435812 +NE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1629.069492 +NE,PM2.5 Filterable,2A6_Other-minerals,,TON,149.7039734 +NE,PM2.5 Filterable,2B_Chemicals-other,,TON,80.4041004 +NE,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,14.5452176 +NE,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.0377592 +NE,PM2.5 Filterable,2C6_Zinc-production,,TON,8.91304E-08 +NE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,33.89551307 +NE,PM2.5 Filterable,2C7a_Copper-production,,TON,1.097855478 +NE,PM2.5 Filterable,2D3d_Coating-application,,TON,13.13104674 +NE,PM2.5 Filterable,2D3e_Degreasing,,TON,0.0331915 +NE,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.591998966 +NE,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,2.42647 +NE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,185.8320781 +NE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,496.0587451 +NE,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,14878.95129 +NE,PM2.5 Filterable,3Dc_Other-farm,,TON,23186.98939 +NE,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,12.6488 +NE,PM2.5 Filterable,5C_Incineration,biomass,TON,11.291082 +NE,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.09 +NE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,166.9890155 +NE,PM2.5 Filterable,5C_Open-burning-residential,,TON,713.114008 +NE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,7.2669074 +NE,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.02 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.562758071 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,561.508594 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.148200348 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,52.72199549 +NE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,7.592099498 +NE,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,36.02586191 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.67414053 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.703699309 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.043668477 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.15883889 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,10.84961919 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.95311E-07 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.046337438 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,375.456608 +NE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.48664066 +NE,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0097625 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,250.2980507 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,13.20481658 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319178 +NE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,82.63990966 +NE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11555.63577 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,64.25586405 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,543.6156019 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.3997337 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.80492741 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,16.30260539 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.39161917 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.000493837 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,554.4128702 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.221885558 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,264.9270175 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.019565098 +NE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.437063642 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1672.071471 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.08957379 +NE,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.022899017 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,80.11066052 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.650059617 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.506576001 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.15786139 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,40.9036238 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,19.85537691 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.471653067 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.619680929 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,108.4365557 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2690.086629 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.805139939 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043132507 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.53310885 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1663.904292 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.33567719 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001243192 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.1305455 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,94.66726855 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.537345119 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,23.24253988 +NE,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.296642377 +NE,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,16.07350987 +NE,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.1777426 +NE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1629.069492 +NE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,262.1315663 +NE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,102.4041304 +NE,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,26.8916176 +NE,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.146695 +NE,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.4913E-07 +NE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,37.31214271 +NE,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.637936098 +NE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.13104674 +NE,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0331915 +NE,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.591998966 +NE,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,2.42647 +NE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,754.7792913 +NE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,496.4107462 +NE,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,14878.95129 +NE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,23225.03293 +NE,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,472.50386 +NE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,60.5408 +NE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,12.96971274 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.172323 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,166.9890155 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,713.114008 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.2669074 +NE,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.052 +NE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.1439062 +NE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,61834.68 +NE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.0000005 +NE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,52.5099436 +NE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,15.7686873 +NE,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.474992865 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.627912628 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.03855797 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.013112687 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.878694098 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,363.9160462 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.50887E-10 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.899932611 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,86.14085183 +NE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,5.6605038 +NE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.856366921 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.153737532 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50878E-05 +NE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,91.91106838 +NE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.117256593 +NE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,136.022758 +NE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.734131531 +NE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11.7798972 +NE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.314714144 +NE,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.317003993 +NE,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000112194 +NE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22.87121237 +NE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.75598376 +NE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.76209079 +NE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.126243754 +NE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.584201785 +NE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,34.83189877 +NE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.013589649 +NE,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000440365 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,4.412501042 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.7349002 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,22.09 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.8327583 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.706426782 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.405547166 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.020955225 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.185503979 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.316161541 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,67.21649032 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,16.10279819 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.862649661 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,14.69735861 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,32.68665941 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.791634876 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.48178E-05 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012092368 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.247431015 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.525685767 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.989990409 +NE,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000001 +NE,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.005263609 +NE,Sulfur Dioxide,2A1_Cement-production,,TON,524.9 +NE,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +NE,Sulfur Dioxide,2B_Chemicals-other,,TON,2.0059003 +NE,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.3811 +NE,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.2243 +NE,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0580005 +NE,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0101001 +NE,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0016001 +NE,Sulfur Dioxide,2D3e_Degreasing,,TON,5E-11 +NE,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.9011001 +NE,Sulfur Dioxide,2H2_Food-and-beverage,,TON,18.6370005 +NE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,625.639485 +NE,Sulfur Dioxide,3Dc_Other-farm,,TON,9.2618906 +NE,Sulfur Dioxide,3F_Ag-res-on-field,,TON,16.2792 +NE,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,4.19 +NE,Sulfur Dioxide,5C_Incineration,biomass,TON,224.8919253 +NE,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.01 +NE,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,21.15188671 +NE,Sulfur Dioxide,5C_Open-burning-residential,,TON,28.0997665 +NE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.546659279 +NE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0800001 +NE,Volatile Organic Compounds,11C_Other-natural,,TON,326438.03 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.4251231 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,480.0092 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.1000013 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,27.8414017 +NE,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,4.73423E-05 +NE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,222.8636644 +NE,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.02 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,48.75268149 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,72.11328015 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14.74843689 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,9.117123582 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.9891931 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.773657938 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.0595E-07 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.013336743 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,450.5883496 +NE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,46.1639912 +NE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,337.6346305 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,131.353099 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023567605 +NE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,382.3412254 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,586.471398 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,18409.3406 +NE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,114.606541 +NE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1842.796729 +NE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,31.5416852 +NE,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,50.22631085 +NE,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.00154281 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1259.428046 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,41.3150182 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,405.6462099 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,139.1232025 +NE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,254.5800719 +NE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2867.612641 +NE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.790231919 +NE,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.010415758 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.000499935 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.797700005 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.160000001 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.69373217 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,59.76303028 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,650.4280024 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.16517519 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,12.51302034 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2067.960155 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2840.067601 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.264599999 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.014175 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,134.7257654 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1941.219371 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,382.0837003 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.202857429 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.128438 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3284.659415 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.789819496 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1715.154648 +NE,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,309.6101785 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,0.004965095 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,353.1487328 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,343.0153659 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3909.97352 +NE,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.81579988 +NE,Volatile Organic Compounds,2A1_Cement-production,,TON,45.2 +NE,Volatile Organic Compounds,2A6_Other-minerals,,TON,0 +NE,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +NE,Volatile Organic Compounds,2B_Chemicals-other,,TON,522.4880009 +NE,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,2.5600001 +NE,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.235 +NE,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,2.4890003 +NE,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.0000001 +NE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,8344.94688 +NE,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.28 +NE,Volatile Organic Compounds,2D3d_Coating-application,,TON,5677.382724 +NE,Volatile Organic Compounds,2D3e_Degreasing,,TON,1460.752047 +NE,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.84 +NE,Volatile Organic Compounds,2D3h_Printing,,TON,3707.50385 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1411.325249 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4001.427838 +NE,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,1.19 +NE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,607.8962932 +NE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1348.365958 +NE,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,75.967 +NE,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,4545.833 +NE,Volatile Organic Compounds,3B3_Manure-swine,,TON,2688.625 +NE,Volatile Organic Compounds,3B4_Manure-poultry,,TON,118.984 +NE,Volatile Organic Compounds,3Dc_Other-farm,,TON,94.6758759 +NE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6278.459768 +NE,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,217.73413 +NE,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,37.7200003 +NE,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,283.8333 +NE,Volatile Organic Compounds,5C_Incineration,biomass,TON,4.965508156 +NE,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.22 +NE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,147.8083288 +NE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,162.333458 +NE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,10.6169361 +NE,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,144.47 +NE,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.01 +NH,Ammonia,1A1a_Public-Electricity,biomass,TON,23.9546925 +NH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.22 +NH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.8533335 +NH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,134.195005 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.724095827 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.035929484 +NH,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,3.1884993 +NH,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.96008419 +NH,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NH,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,6.01 +NH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.66433539 +NH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.068765583 +NH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,3.00435619 +NH,Ammonia,1A3bii_Road-LDV,light_oil,TON,366.5500866 +NH,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.6782995 +NH,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.32783472 +NH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.66853551 +NH,Ammonia,1A3biii_Road-bus,light_oil,TON,0.538821631 +NH,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.55383989 +NH,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.556252961 +NH,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.78687578 +NH,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.792279 +NH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.835194 +NH,Ammonia,1A3c_Rail,diesel_oil,TON,0.134007989 +NH,Ammonia,1A3c_Rail,light_oil,TON,0.000782557 +NH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.239599035 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.71 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.20616089 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.7 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.338355613 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.683410073 +NH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.131636233 +NH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.550226976 +NH,Ammonia,1A4bi_Residential-stationary,biomass,TON,217.8987595 +NH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,73.037975 +NH,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,80.5872616 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.308117896 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.038062912 +NH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006157274 +NH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.587421909 +NH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.4388257 +NH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.2920395 +NH,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.00915 +NH,Ammonia,2C_Iron-steel-alloy,Other_Fuel,TON,7.656 +NH,Ammonia,2D3d_Coating-application,,TON,0.3227 +NH,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,1.00075 +NH,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,4.869 +NH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.52 +NH,Ammonia,3B1a_Cattle-dairy,,TON,146.096 +NH,Ammonia,3B1b_Cattle-non-dairy,,TON,64.736 +NH,Ammonia,3B2_Manure-sheep,,TON,26.80656 +NH,Ammonia,3B3_Manure-swine,,TON,18.372 +NH,Ammonia,3B4_Manure-other,,TON,132.9504 +NH,Ammonia,3B4_Manure-poultry,,TON,45.6213048 +NH,Ammonia,3B4d_Manure-goats,,TON,27.15504 +NH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,140.11871 +NH,Ammonia,5B_Compost-biogas,Other_Fuel,TON,28.32377 +NH,Ammonia,5C_Incineration,,TON,0.3854645 +NH,Ammonia,5D1_Wastewater-domestic,,TON,3.53 +NH,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,3.0185525 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,89190.66743 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,99289.84997 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5607.989699 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,328001.7453 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5751.356249 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.3490941 +NH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,112088.62 +NH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5279762.697 +NH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23087.026 +NH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,242392.2401 +NH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,105100.822 +NH,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,15627.94484 +NH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,628935.313 +NH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,13373.79409 +NH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,365510.624 +NH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,157492.52 +NH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,66244.63 +NH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1360.9113 +NH,Carbon Dioxide,1A3c_Rail,light_oil,TON,61.1619346 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,41610.87595 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,57212.89615 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2505.910911 +NH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,16198.0122 +NH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,115287.6303 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37947.48436 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2676.496153 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014465641 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,754.79939 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,176580.6812 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,54031.95 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,93794.126 +NH,Carbon Monoxide,11C_Other-natural,,TON,17991.968 +NH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1905.461086 +NH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.787816 +NH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,135.9684 +NH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,20.458753 +NH,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,1.018492 +NH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,561.51542 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,278.8420889 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2423.88849 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,145.5227044 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,274.1065023 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1008.74191 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.656306094 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,238.2953219 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1042.917659 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1167.497975 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078430175 +NH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1522.042423 +NH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1522.16832 +NH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,82656.223 +NH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,266.13397 +NH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3898.606424 +NH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,247.232103 +NH,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,744.7209856 +NH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1095.790915 +NH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,284.0215267 +NH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,784.348205 +NH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3784.903 +NH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3141.634 +NH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,47.263131 +NH,Carbon Monoxide,1A3c_Rail,light_oil,TON,13.80379444 +NH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,29.9256825 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,219.0206377 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,397.8569356 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.903092978 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,554.4959316 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,178.8626944 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,11759.73486 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,53.5319486 +NH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,54.81649761 +NH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,26882.33312 +NH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,29838.01603 +NH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,373.27 +NH,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,403.45 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,89.68210037 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,798.210826 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00160341 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.9636087 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,19789.81962 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,105.15543 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10785.758 +NH,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,2.006995 +NH,Carbon Monoxide,2D3d_Coating-application,,TON,0.30442 +NH,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,6.62068 +NH,Carbon Monoxide,2H2_Food-and-beverage,,TON,169.101827 +NH,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,128.835336 +NH,Carbon Monoxide,5C_Incineration,,TON,16.44548216 +NH,Carbon Monoxide,5C_Incineration,biomass,TON,0 +NH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,11378.639 +NH,Carbon Monoxide,5C_Open-burning-residential,,TON,2556.804 +NH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,297.55716 +NH,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.879149253 +NH,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14.76910414 +NH,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,66.35532637 +NH,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,11.03788069 +NH,Methane,1A2g_Construction_and_Mining,light_oil,TON,4.600922227 +NH,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.054513638 +NH,Methane,1A3bii_Road-LDV,diesel_oil,TON,10.3814119 +NH,Methane,1A3bii_Road-LDV,light_oil,TON,253.9329238 +NH,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.8262432 +NH,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.19282903 +NH,Methane,1A3biii_Road-bus,diesel_oil,TON,2.41189967 +NH,Methane,1A3biii_Road-bus,light_oil,TON,1.199121194 +NH,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,55.03014858 +NH,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.391966473 +NH,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.28754492 +NH,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.712017 +NH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.16946 +NH,Methane,1A3c_Rail,diesel_oil,TON,0.05859067 +NH,Methane,1A3c_Rail,light_oil,TON,0.046011304 +NH,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.345714039 +NH,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,44.00038548 +NH,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.18412199 +NH,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.574094928 +NH,Methane,1A4bi_Residential-mobile,light_oil,TON,119.3648674 +NH,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.10612585 +NH,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.109744852 +NH,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001380009 +NH,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.032540192 +NH,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,184.8019495 +NH,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.620204 +NH,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,88.69168 +NH,Nitrogen Oxides,11C_Other-natural,,TON,657.6135 +NH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,796.9865 +NH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,26.96418 +NH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,2019.1 +NH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,178.2 +NH,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,21.15934 +NH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,185.0718 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,449.9408973 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,324.0669085 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21.44475574 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,100.505382 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4669.825985 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,88.40371447 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,328.6600541 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1882.504909 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,19.00015379 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092464 +NH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,295.4613079 +NH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,363.966432 +NH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,8487.524284 +NH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,89.00437 +NH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,392.6440753 +NH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,675.73195 +NH,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,74.71644489 +NH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3822.27844 +NH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,40.85955615 +NH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1756.14357 +NH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,441.4628 +NH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,147.37737 +NH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,410.265627 +NH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.187745056 +NH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,304.243918 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,167.8889784 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1671.638465 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,80.78502259 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,970.8329778 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,326.594933 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,201.8324042 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.57909999 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,128.5390755 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,302.8646706 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,432.5880614 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1343.78 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1240.2 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,202.6141854 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,9.744301216 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000358365 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.4792194 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,342.4101244 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,574.1412 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,754.41733 +NH,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,2.188579 +NH,Nitrogen Oxides,2D3d_Coating-application,,TON,0.3624 +NH,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,1.26539 +NH,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NH,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,18.0151064 +NH,Nitrogen Oxides,5C_Incineration,,TON,356.394958 +NH,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +NH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,336.6463 +NH,Nitrogen Oxides,5C_Open-burning-residential,,TON,180.48034 +NH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,13.224773 +NH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.312870639 +NH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,199.9827465 +NH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.08056378 +NH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.983491664 +NH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.204788597 +NH,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.553687548 +NH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.710518214 +NH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.29481032 +NH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.89743259 +NH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.122813 +NH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.8424314 +NH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,90.36568 +NH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.753875 +NH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,38.40145 +NH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.617976 +NH,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.134174 +NH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,12.3662025 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,259.2494543 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,325.8188719 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.44056378 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2.338181984 +NH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,8819.5694 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,131.5989336 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,119.7697356 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,17.45908075 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.115817 +NH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,80.65 +NH,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.03718908 +NH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1598.19087 +NH,PM10 Filterable,2A6_Other-minerals,,TON,58.548633 +NH,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.1806 +NH,PM10 Filterable,2D3d_Coating-application,,TON,0.00689 +NH,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,13.225421 +NH,PM10 Filterable,2H2_Food-and-beverage,,TON,34.0195097 +NH,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,70.252414 +NH,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,274.74714 +NH,PM10 Filterable,3Dc_Other-farm,,TON,1155.55 +NH,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,7.1587648 +NH,PM10 Filterable,5C_Incineration,,TON,2.57651 +NH,PM10 Filterable,5C_Incineration,biomass,TON,0 +NH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1144.5973 +NH,PM10 Filterable,5C_Open-burning-residential,,TON,833.5652 +NH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,49.274062 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,95.48133 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.2583127 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,62.02601 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.84448864 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.14222444 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,22.8193015 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,33.12595399 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.41630153 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.684471561 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,260.3896372 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,338.883337 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,23.15402995 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5.781152045 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,160.2645132 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.910064639 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000159589 +NH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,39.18243373 +NH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8819.5694 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,22.2985493 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,621.45761 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.439151 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.90059412 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,38.3067526 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.501900805 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,208.111912 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.823631168 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,148.0756615 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,20.454172 +NH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.686771 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,11.1398924 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007780983 +NH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,26.88745574 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,136.4952343 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,144.9155825 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.71409989 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.9739441 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29.02135271 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,14.79850737 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.315625271 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.09764159 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,111.2758506 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4303.909157 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,177.7 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.2888116 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.11100949 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.79861936 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.82814E-06 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.85988485 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,221.769762 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.135789 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,32.469529 +NH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1598.19087 +NH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,59.707863 +NH,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.1806 +NH,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.00689 +NH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,24.710654 +NH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,443.776984 +NH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,70.252414 +NH,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,274.74714 +NH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1155.55 +NH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,18.61278728 +NH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.19419559 +NH,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1144.5973 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,833.5652 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,49.274062 +NH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,79.29307 +NH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.477045 +NH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,19.08872 +NH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.05297 +NH,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.134174 +NH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,12.3662025 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,190.2974704 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,322.9259259 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.23170569 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2.182218359 +NH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1901.7331 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,113.6612585 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,115.4746281 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.20983246 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.40696108 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,61.97 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.105663991 +NH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,159.827087 +NH,PM2.5 Filterable,2A6_Other-minerals,,TON,25.689713 +NH,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.1806 +NH,PM2.5 Filterable,2D3d_Coating-application,,TON,0.00689 +NH,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,13.225421 +NH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.793455948 +NH,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,70.252414 +NH,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,55.84573 +NH,PM2.5 Filterable,3Dc_Other-farm,,TON,231.1 +NH,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,7.1587648 +NH,PM2.5 Filterable,5C_Incineration,,TON,2.57651 +NH,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +NH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,882.37002 +NH,PM2.5 Filterable,5C_Open-burning-residential,,TON,763.3711 +NH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,37.985544 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,84.40872 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.9814817 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,42.71324 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.27948264 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.14222444 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,22.8193015 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,32.1283438 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.38349104 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.684312791 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,204.8373781 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,335.9796528 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,15.94468525 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5.613308436 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,155.4565671 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.202910753 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000159589 +NH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,33.45163958 +NH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1901.7331 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,15.3818531 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,262.4014025 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.954803 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.29127139 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,26.4408906 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.991459885 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,154.566585 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.802211733 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,105.0806279 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.046182 +NH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.650916 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,10.3145778 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.007174371 +NH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,24.71585075 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,118.5898693 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,140.5473249 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,14.50204449 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.29873493 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.15071969 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.65847032 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.315625271 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.824713113 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,102.3781905 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4288.310537 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,159.01 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.34728652 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.62767463 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.93473772 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.82814E-06 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.83408706 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,204.0284596 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.801726 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,29.871979 +NH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,159.827087 +NH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,26.848943 +NH,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.1806 +NH,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.00689 +NH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,24.710654 +NH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,411.5510133 +NH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,70.252414 +NH,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,55.84573 +NH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,231.1 +NH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,18.61278728 +NH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,3.19419559 +NH,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,882.37002 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,763.3711 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,37.985544 +NH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,18.991512 +NH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,9.839331 +NH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,2284.8 +NH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,312.5 +NH,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.407829 +NH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,15.26459 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.145036964 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.565267728 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.034263931 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,11.40216036 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,465.3529207 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,324.0009249 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,17.05766559 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.637105293 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.095454431 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54391E-06 +NH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,33.00465894 +NH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.97396616 +NH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,113.0039791 +NH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.20104741 +NH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.178298196 +NH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.91677803 +NH,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.336111492 +NH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.42857417 +NH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.287968859 +NH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.16425615 +NH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.385137 +NH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.4256297 +NH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.154391073 +NH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001088423 +NH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,207.0373651 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,8.578402438 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,834.535017 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,242.0552405 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,62.71063093 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.486240155 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.967039049 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.014038793 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.189960749 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.093623485 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,105.157629 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3180.32 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,6.04438988 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.415823527 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.048688629 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.05925E-08 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.008915919 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.208373845 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.7218953 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.7080408 +NH,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,0.0139098 +NH,Sulfur Dioxide,2D3d_Coating-application,,TON,0.00217 +NH,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.049015 +NH,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NH,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,62.172158 +NH,Sulfur Dioxide,5C_Incineration,,TON,57.4349953 +NH,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +NH,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,111.76667 +NH,Sulfur Dioxide,5C_Open-burning-residential,,TON,30.08006 +NH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.8574935 +NH,Volatile Organic Compounds,11C_Other-natural,,TON,104256.71 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,56.32853 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.077303 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,27.56545 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.109733 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.012794 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,14.203751 +NH,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,0.024252 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,41.95343814 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,69.04101257 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14.37234234 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,7.752297666 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,364.4921718 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.494886669 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,15.94527823 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,209.6837167 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,78.8096664 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.01178381 +NH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,131.9489519 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,155.714663 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7163.166435 +NH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,30.362952 +NH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,284.7346306 +NH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,59.09814 +NH,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,34.03954625 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,290.030638 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,10.50283345 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,224.5887527 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,145.79411 +NH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,467.6108 +NH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,17.4293302 +NH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.340973431 +NH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9.33673043 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,6.315156141 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,120.9086173 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.009790646 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.14528594 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,41.13091257 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,418.6894892 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.60549349 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,12.81490043 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1776.804357 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4405.662339 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,53.23 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,55.42 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.85350283 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,91.30854203 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000298306 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.5692924 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,7692.653174 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.76893 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2091.461808 +NH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,156.7820742 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,42.56442488 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,187.2457073 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,555.3332981 +NH,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +NH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,5905.480605 +NH,Volatile Organic Compounds,2D3d_Coating-application,,TON,3124.20572 +NH,Volatile Organic Compounds,2D3e_Degreasing,,TON,1000.129215 +NH,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,4.14000045 +NH,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,89.61 +NH,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +NH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1098.07 +NH,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,14.353546 +NH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,121.9977619 +NH,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1.38395 +NH,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,11.73 +NH,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,5.198 +NH,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.476 +NH,Volatile Organic Compounds,3B4_Manure-poultry,,TON,3.446 +NH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,206.94 +NH,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,83.3981634 +NH,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,200.4123 +NH,Volatile Organic Compounds,5C_Incineration,,TON,1.308602348 +NH,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +NH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,781.02006 +NH,Volatile Organic Compounds,5C_Open-burning-residential,,TON,173.77378 +NH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,55.496816 +NH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,18.02 +NH,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.090823 +NH,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,82.5 +NJ,Ammonia,11C_Other-natural,Other_Fuel,TON,1.37481407 +NJ,Ammonia,1A1a_Public-Electricity,biomass,TON,3.05 +NJ,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,26.473 +NJ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,3.4636 +NJ,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.9344 +NJ,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.18 +NJ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,423.4679 +NJ,Ammonia,1A1b_Pet-refining,natural_gas,TON,5.6737 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.406200785 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.142178801 +NJ,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.107212905 +NJ,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,5.359639327 +NJ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.05605719 +NJ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.01004807 +NJ,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.079681194 +NJ,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.007350162 +NJ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,24.68956407 +NJ,Ammonia,1A2c_Chemicals,heavy_oil,TON,0.0073 +NJ,Ammonia,1A2c_Chemicals,natural_gas,TON,0.735 +NJ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,14.29149686 +NJ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.368698071 +NJ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,9.3347838 +NJ,Ammonia,1A3bii_Road-LDV,light_oil,TON,1791.13477 +NJ,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.6686041 +NJ,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,109.110222 +NJ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,26.29573523 +NJ,Ammonia,1A3biii_Road-bus,light_oil,TON,5.619294047 +NJ,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.224831988 +NJ,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,53.5890959 +NJ,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,7.187833875 +NJ,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,37.4726397 +NJ,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,18.56946927 +NJ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.921193 +NJ,Ammonia,1A3c_Rail,diesel_oil,TON,2.573130882 +NJ,Ammonia,1A3c_Rail,light_oil,TON,0.000286859 +NJ,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.225340132 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.735137645 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,74.89505422 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.298611092 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048801788 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,62.02771256 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.737053375 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.530071473 +NJ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.007220453 +NJ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.88527701 +NJ,Ammonia,1A4bi_Residential-stationary,biomass,TON,238.9928218 +NJ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,104.223006 +NJ,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.27488999 +NJ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,62.1018864 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.6534379 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.026895351 +NJ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.041429412 +NJ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.725023224 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.626820731 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.58465755 +NJ,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.04 +NJ,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0002 +NJ,Ammonia,2A6_Other-minerals,,TON,4.2713 +NJ,Ammonia,2B_Chemicals-other,,TON,0 +NJ,Ammonia,2C_Iron-steel-alloy,,TON,0.6808 +NJ,Ammonia,2C3_Aluminum-production,,TON,0.063 +NJ,Ammonia,2C5_Lead-production,,TON,0 +NJ,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.0079 +NJ,Ammonia,2D3d_Coating-application,,TON,6.1979 +NJ,Ammonia,2D3h_Printing,,TON,0.2481 +NJ,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.6106 +NJ,Ammonia,2H2_Food-and-beverage,,TON,19.8865 +NJ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,544.862 +NJ,Ammonia,3B1a_Cattle-dairy,,TON,160.354 +NJ,Ammonia,3B1b_Cattle-non-dairy,,TON,58.111 +NJ,Ammonia,3B2_Manure-sheep,,TON,51.831912 +NJ,Ammonia,3B3_Manure-swine,,TON,96.032 +NJ,Ammonia,3B4_Manure-other,,TON,5289.78744 +NJ,Ammonia,3B4_Manure-poultry,,TON,341.9554444 +NJ,Ammonia,3B4d_Manure-goats,,TON,74.112588 +NJ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,628.675068 +NJ,Ammonia,3F_Ag-res-on-field,,TON,25.49200866 +NJ,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,27.2602 +NJ,Ammonia,5B_Compost-biogas,Other_Fuel,TON,200.01028 +NJ,Ammonia,5C_Incineration,,TON,3.491 +NJ,Ammonia,5C_Incineration,biomass,TON,14.342 +NJ,Ammonia,5D1_Wastewater-domestic,,TON,52.0025 +NJ,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,5.1084 +NJ,Ammonia,6A_Other-commertial,Other_Fuel,TON,4146.3461 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,419186.2847 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,392520.2994 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22150.33381 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1759402.05 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,30851.16135 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.094575 +NJ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,343743.02 +NJ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,28494059 +NJ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,208235.19 +NJ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2070248.4 +NJ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1730372.257 +NJ,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,201239.5966 +NJ,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,9210.171301 +NJ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3390523.43 +NJ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,198838.7183 +NJ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2079099.86 +NJ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,545899.5544 +NJ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,96784.332 +NJ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,485.22489 +NJ,Carbon Dioxide,1A3c_Rail,light_oil,TON,22.35220995 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,336602.0087 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,463010.7149 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,20344.94395 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,123939.8299 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,809797.4097 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,80438.95026 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1960.750512 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.255687992 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5078.6896 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,117659.8956 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,200389.6171 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,182796.1378 +NJ,Carbon Monoxide,11C_Other-natural,,TON,13561.1256 +NJ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,17.79 +NJ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,165.9317 +NJ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,397.013 +NJ,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,8.4256 +NJ,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.22 +NJ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2180.338 +NJ,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,218.1156 +NJ,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.25 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1891.972161 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9727.630741 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,584.6385598 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.035769577 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,465.9705047 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,242.8039976 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.519573828 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.123196364 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.046068876 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,665.901822 +NJ,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0.19 +NJ,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,3.0226 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.986 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5593.806024 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6303.910322 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.47058115 +NJ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6009.222538 +NJ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2794.8378 +NJ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,325137.1 +NJ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1484.54256 +NJ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,27053.73 +NJ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,3375.188951 +NJ,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3321.882665 +NJ,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,74.5926619 +NJ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4720.26818 +NJ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3118.780236 +NJ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3253.83922 +NJ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8344.366885 +NJ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3839.1512 +NJ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,768.9606513 +NJ,Carbon Monoxide,1A3c_Rail,light_oil,TON,5.117665654 +NJ,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2220.354241 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,479.1937195 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,693.9017562 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.192712893 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.239177889 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8729.548637 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1447.076436 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,95994.18168 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,433.9249337 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,419.5204593 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,188669.1599 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,41574.73002 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,521.11493 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.7850002 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,5173.3636 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,266.3264933 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,498.2157933 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.028333394 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,40.140686 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,22856.37014 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,364.2024054 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,22069.44248 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.1997 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.4479 +NJ,Carbon Monoxide,2A6_Other-minerals,,TON,191.5158 +NJ,Carbon Monoxide,2B_Chemicals-other,,TON,341.8306 +NJ,Carbon Monoxide,2C_Iron-steel-alloy,,TON,871.3595 +NJ,Carbon Monoxide,2C3_Aluminum-production,,TON,35.754 +NJ,Carbon Monoxide,2C5_Lead-production,,TON,0 +NJ,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.6192 +NJ,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.705 +NJ,Carbon Monoxide,2D3d_Coating-application,,TON,11.6437 +NJ,Carbon Monoxide,2D3e_Degreasing,,TON,0.655 +NJ,Carbon Monoxide,2D3h_Printing,,TON,5.8489 +NJ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,70.5296 +NJ,Carbon Monoxide,2H2_Food-and-beverage,,TON,861.615744 +NJ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,281.2161 +NJ,Carbon Monoxide,3Dc_Other-farm,,TON,0 +NJ,Carbon Monoxide,3F_Ag-res-on-field,,TON,1452.382139 +NJ,Carbon Monoxide,5A_Solid-waste-disposal,,TON,198.4342656 +NJ,Carbon Monoxide,5C_Incineration,,TON,118.0714857 +NJ,Carbon Monoxide,5C_Incineration,biomass,TON,256.2913946 +NJ,Carbon Monoxide,5C_Open-burning-residential,,TON,90.28285 +NJ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,79.7502145 +NJ,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,7.7714 +NJ,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.1607 +NJ,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.83355034 +NJ,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,58.3618108 +NJ,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,262.315272 +NJ,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,59.20944055 +NJ,Methane,1A2g_Construction_and_Mining,light_oil,TON,24.45524674 +NJ,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.32708197 +NJ,Methane,1A3bii_Road-LDV,diesel_oil,TON,33.575226 +NJ,Methane,1A3bii_Road-LDV,light_oil,TON,961.03399 +NJ,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.5337615 +NJ,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,92.157429 +NJ,Methane,1A3biii_Road-bus,diesel_oil,TON,49.12093948 +NJ,Methane,1A3biii_Road-bus,light_oil,TON,4.524767978 +NJ,Methane,1A3biii_Road-bus,natural_gas,TON,73.6479026 +NJ,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,178.9122705 +NJ,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.163552007 +NJ,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,72.589798 +NJ,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,9.66765621 +NJ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.2375782 +NJ,Methane,1A3c_Rail,diesel_oil,TON,0.021062917 +NJ,Methane,1A3c_Rail,light_oil,TON,0.016651148 +NJ,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.88714643 +NJ,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,351.9275587 +NJ,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,284.9616068 +NJ,Methane,1A4bi_Residential-mobile,diesel_oil,TON,4.395164686 +NJ,Methane,1A4bi_Residential-mobile,light_oil,TON,822.0637266 +NJ,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.255543416 +NJ,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.063496277 +NJ,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.024386889 +NJ,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.21876207 +NJ,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,197.1544082 +NJ,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.490028003 +NJ,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,208.4568249 +NJ,Nitrogen Oxides,11C_Other-natural,,TON,1255.0007 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,227.22 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,442.1086 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,2293.872 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,76.8898 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,3.98 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3764.6587 +NJ,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,945.212 +NJ,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.08 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2258.050438 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1293.744902 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,85.77424388 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.567856403 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,169.8988671 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,759.3034115 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0.404274199 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,21.77663401 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.180508369 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1471.664721 +NJ,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0.23 +NJ,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,6.5409 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.2296 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10099.63268 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,98.34759442 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.090554869 +NJ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2937.238372 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,823.51433 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,31247.927 +NJ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,705.96586 +NJ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2752.0907 +NJ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,9334.181908 +NJ,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,394.1258171 +NJ,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,42.46667687 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15931.0038 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,472.9676065 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8411.1294 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1122.642103 +NJ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,195.47067 +NJ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4342.845005 +NJ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.064844197 +NJ,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12074.3063 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,164.5979537 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2077.688836 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,17.43787871 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.155503379 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9246.568488 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2641.905905 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1571.029931 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,110.0023227 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,983.2855401 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2046.566138 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,736.2853357 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1823.4858 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.2460706 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,12031.72886 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,575.0344299 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.518856241 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00633387 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,43.644015 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,268.3123526 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1885.793851 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1186.921723 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,8.2761 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.856 +NJ,Nitrogen Oxides,2A6_Other-minerals,,TON,711.3954 +NJ,Nitrogen Oxides,2B_Chemicals-other,,TON,70.3782 +NJ,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,60.1166 +NJ,Nitrogen Oxides,2C3_Aluminum-production,,TON,15.8724 +NJ,Nitrogen Oxides,2C5_Lead-production,,TON,0 +NJ,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,2.0268 +NJ,Nitrogen Oxides,2D3d_Coating-application,,TON,16.1348 +NJ,Nitrogen Oxides,2D3e_Degreasing,,TON,0.78 +NJ,Nitrogen Oxides,2D3h_Printing,,TON,7.537 +NJ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,6.0306 +NJ,Nitrogen Oxides,2H2_Food-and-beverage,,TON,18.2657 +NJ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,424.2239 +NJ,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +NJ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,97.2122909 +NJ,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,46.0635 +NJ,Nitrogen Oxides,5C_Incineration,,TON,886.8793449 +NJ,Nitrogen Oxides,5C_Incineration,biomass,TON,1185.651179 +NJ,Nitrogen Oxides,5C_Open-burning-residential,,TON,6.3667661 +NJ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,4.03220453 +NJ,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.0409 +NJ,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.7934 +NJ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.94307312 +NJ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,805.15037 +NJ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.68674991 +NJ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,72.860437 +NJ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,3.759872618 +NJ,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.721297428 +NJ,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.479570315 +NJ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.12280867 +NJ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.78722233 +NJ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.97140581 +NJ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9.901243035 +NJ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.5163784 +NJ,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,32.68 +NJ,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,50.5484621 +NJ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,208.880137 +NJ,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,4.4836 +NJ,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.88961 +NJ,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,398.54702 +NJ,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,240.4206277 +NJ,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.027120859 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.647222351 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,381.6241862 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,45.98359723 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.166648742 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.728844645 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.009227129 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,96.94962729 +NJ,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0.0149246 +NJ,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.129 +NJ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,21583.53183 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,543.4060612 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,193.4419817 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.532019301 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.089075438 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,65.02136719 +NJ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,68.91 +NJ,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.20307854 +NJ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,24.81617379 +NJ,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.6672 +NJ,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.1712 +NJ,PM10 Filterable,2A2_Lime-production,,TON,0.4909316 +NJ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,326.61 +NJ,PM10 Filterable,2A6_Other-minerals,,TON,2038.853605 +NJ,PM10 Filterable,2B_Chemicals-other,,TON,15.73888338 +NJ,PM10 Filterable,2C_Iron-steel-alloy,,TON,5.786821606 +NJ,PM10 Filterable,2C3_Aluminum-production,,TON,6.2590304 +NJ,PM10 Filterable,2C5_Lead-production,,TON,0 +NJ,PM10 Filterable,2C6_Zinc-production,,TON,0.114 +NJ,PM10 Filterable,2C7_Other-metal,,TON,4.59650262 +NJ,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,5.2861 +NJ,PM10 Filterable,2D3d_Coating-application,,TON,9.7882 +NJ,PM10 Filterable,2D3h_Printing,,TON,0.29 +NJ,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,19.88819976 +NJ,PM10 Filterable,2H2_Food-and-beverage,,TON,2312.065295 +NJ,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,707.2441732 +NJ,PM10 Filterable,2I_Wood-processing,,TON,0.48 +NJ,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,311.251842 +NJ,PM10 Filterable,3Dc_Other-farm,,TON,248.88 +NJ,PM10 Filterable,5A_Solid-waste-disposal,,TON,28.6106488 +NJ,PM10 Filterable,5C_Incineration,,TON,63.04734946 +NJ,PM10 Filterable,5C_Incineration,biomass,TON,72.25701468 +NJ,PM10 Filterable,5C_Open-burning-residential,,TON,19.75 +NJ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.36 +NJ,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,5.4879587 +NJ,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,2.4815464 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,32.68 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,55.1928 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,237.6046 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,5.095 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.95 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,727.8371 +NJ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,357.3651 +NJ,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,158.8972608 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41.73154811 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.742595307 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.647011769 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,394.4680255 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,101.7812058 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.181171303 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.963956981 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.021170814 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,238.6186962 +NJ,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.02 +NJ,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.2592 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,859.5821546 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,47.78212375 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957537 +NJ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,153.4041228 +NJ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,21583.67788 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,54.329455 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3007.14364 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,47.774595 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,219.63864 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,622.3419606 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,39.87757021 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.865301665 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,984.153675 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,27.5592116 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,654.820397 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,68.62206324 +NJ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.3455301 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,113.9135758 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.002845642 +NJ,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,383.5265433 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,511.4535118 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,376.6692459 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.701785906 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.18609406 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,137.4634029 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,234.7971519 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,119.7477363 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.562877222 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,69.63168284 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,806.2866451 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5477.025681 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,158.419 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.54264005 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,65.8219164 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,46.29324904 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.942022588 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.23061E-05 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.7841565 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,179.0131974 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,45.3357302 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,92.26117282 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.6672 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.1712 +NJ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.628 +NJ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,326.8524345 +NJ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2056.928 +NJ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,20.2715 +NJ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,18.804 +NJ,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,6.4395 +NJ,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +NJ,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.114 +NJ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,4.8508 +NJ,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,5.2861 +NJ,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.7882 +NJ,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.29 +NJ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,22.185 +NJ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2312.5601 +NJ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,709.7857 +NJ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.48 +NJ,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,311.251842 +NJ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,248.986214 +NJ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,177.3456457 +NJ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,33.4149 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,,TON,66.84744202 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,138.1121892 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,19.8309241 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.584382 +NJ,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,5.7187 +NJ,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.3467 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,32.68 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,48.58783928 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,206.2901667 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,3.2236 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.88961 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,360.98052 +NJ,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,206.442206 +NJ,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.027120859 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.647355933 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,328.2840812 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.90001172 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.166683136 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.629053579 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.00232183 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,74.14580962 +NJ,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0.0149246 +NJ,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.129 +NJ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5033.170183 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,493.8341038 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,174.7170363 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.010658066 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.071433128 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.05953098 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,63.7 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.1979326 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.40930025 +NJ,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1944 +NJ,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.1639 +NJ,PM2.5 Filterable,2A2_Lime-production,,TON,0.4909316 +NJ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,65.17290976 +NJ,PM2.5 Filterable,2A6_Other-minerals,,TON,372.4703416 +NJ,PM2.5 Filterable,2B_Chemicals-other,,TON,15.27407746 +NJ,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.431221606 +NJ,PM2.5 Filterable,2C3_Aluminum-production,,TON,6.2590304 +NJ,PM2.5 Filterable,2C5_Lead-production,,TON,0 +NJ,PM2.5 Filterable,2C6_Zinc-production,,TON,0.114 +NJ,PM2.5 Filterable,2C7_Other-metal,,TON,2.70009902 +NJ,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.7499 +NJ,PM2.5 Filterable,2D3d_Coating-application,,TON,9.27198756 +NJ,PM2.5 Filterable,2D3h_Printing,,TON,0.2583808 +NJ,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,15.78319976 +NJ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2307.583405 +NJ,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,475.3409147 +NJ,PM2.5 Filterable,2I_Wood-processing,,TON,0.436 +NJ,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,58.9775164 +NJ,PM2.5 Filterable,3Dc_Other-farm,,TON,49.7 +NJ,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,10.1457508 +NJ,PM2.5 Filterable,5C_Incineration,,TON,58.57064886 +NJ,PM2.5 Filterable,5C_Incineration,biomass,TON,72.19201468 +NJ,PM2.5 Filterable,5C_Open-burning-residential,,TON,18.08 +NJ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,13.75999911 +NJ,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,5.1962587 +NJ,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,2.4815464 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,32.68 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,53.232178 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,235.0146 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3.835 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.95 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,690.2706 +NJ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,323.3864785 +NJ,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,154.0749199 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41.57562948 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.740122121 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.647069394 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,341.1079525 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,80.66880055 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.181187439 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.864028339 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.014268557 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,215.8254236 +NJ,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0.02 +NJ,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.2592 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,833.7944188 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.99002404 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957537 +NJ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,135.1343579 +NJ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5033.366241 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,34.1320895 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1026.83416 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,34.497746 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,73.56545 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,370.5514287 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,13.69467274 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.642256705 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,693.437939 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,14.25013367 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,438.678075 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,26.33796278 +NJ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.5203733 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,110.4022076 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.002623282 +NJ,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,363.5415933 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,455.5004186 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,361.6089516 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.201189587 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.171551224 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,124.1615064 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,227.7533217 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,110.5230598 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.562877222 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,67.5427305 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,741.8176911 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5372.210636 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,153.20774 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.52479018 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,54.3935368 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,44.90445162 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.626662617 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.23061E-05 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.6106304 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,164.694071 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,43.97567853 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,84.88026832 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1944 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.1639 +NJ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.628 +NJ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,65.37042596 +NJ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,390.5454867 +NJ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,19.8066941 +NJ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,18.4484 +NJ,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,6.4395 +NJ,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +NJ,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.114 +NJ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,2.9543964 +NJ,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.7499 +NJ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.27198756 +NJ,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.2583808 +NJ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,18.08 +NJ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2308.128243 +NJ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,477.8816945 +NJ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.436 +NJ,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,58.9775164 +NJ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,49.7972868 +NJ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,175.8113167 +NJ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,14.95 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,62.32038213 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,138.0807491 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,18.1609369 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.95562701 +NJ,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,5.427 +NJ,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.3467 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,21.87 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,70.6899 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,2140.159 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,67.4193 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.06 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,273.5052 +NJ,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,117.1773 +NJ,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.16844825 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.670015489 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.166129379 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.034813557 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,19.05813537 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,512.9598459 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.020007791 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.00420047 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.173047257 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,95.36516502 +NJ,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.001 +NJ,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.194 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,19.50949334 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.511864027 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.52635E-05 +NJ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,316.4759722 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.953459 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,593.73366 +NJ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.8094068 +NJ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,43.140555 +NJ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,14.99037605 +NJ,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,4.192859438 +NJ,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.048763127 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,29.1414128 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.143023849 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.8673701 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.3743672 +NJ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.0168653 +NJ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.651235057 +NJ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000398635 +NJ,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1645.801676 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,18.75511864 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1500.382606 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.15775368 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.108898468 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,74.82721654 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.933357181 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.825390431 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.113978152 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.4535194 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,14.70134857 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,105.7392638 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2098.8658 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,7.1893528 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,80.6618399 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.919935094 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.035701221 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.42452E-06 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.059989199 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.134568459 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.386101821 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.325923273 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.3903 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +NJ,Sulfur Dioxide,2A6_Other-minerals,,TON,210.1812 +NJ,Sulfur Dioxide,2B_Chemicals-other,,TON,3.7483 +NJ,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,43.5009 +NJ,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.0947 +NJ,Sulfur Dioxide,2C5_Lead-production,,TON,0 +NJ,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.1902 +NJ,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.153 +NJ,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0674 +NJ,Sulfur Dioxide,2D3h_Printing,,TON,0.0141 +NJ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.6981 +NJ,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.6431 +NJ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,27.1916 +NJ,Sulfur Dioxide,3F_Ag-res-on-field,,TON,38.3679922 +NJ,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,216.1502 +NJ,Sulfur Dioxide,5C_Incineration,,TON,95.81293629 +NJ,Sulfur Dioxide,5C_Incineration,biomass,TON,308.6978475 +NJ,Sulfur Dioxide,5C_Open-burning-residential,,TON,1.06460699 +NJ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.63992612 +NJ,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.1324 +NJ,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.1871 +NJ,Volatile Organic Compounds,11C_Other-natural,,TON,102877.182 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.09 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,11.7281 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,28.5287 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.456 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.12 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,260.6804 +NJ,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1804.8392 +NJ,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.03 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,216.5729523 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,277.123301 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,57.13699801 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.541208808 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,13.18972208 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,33.93800558 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.193179924 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.162576157 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.001839072 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,152.7881977 +NJ,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.01 +NJ,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.3885 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.9809 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1124.779762 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,421.2636204 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.070702878 +NJ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,619.6271322 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,281.81917 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,23989.8981 +NJ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,190.89312 +NJ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1728.7 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,850.964833 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,132.2849772 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,9.31438408 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1098.267633 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,102.5169847 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,868.058505 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,299.3351434 +NJ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,778.94245 +NJ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,221.2529587 +NJ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.124400545 +NJ,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,723.6286296 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,15.14581041 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,133.6632792 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.55591428 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.126824549 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,712.2546543 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,332.7656036 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3410.313362 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,61.59799608 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,98.05854767 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,12474.57454 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5810.173443 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,74.311006 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.25454105 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,683.3419794 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,52.60163898 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,39.94598319 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00527153 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.5621908 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5577.205045 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,85.84997107 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5859.497773 +NJ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0588 +NJ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,60.33943 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1347.194183 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,381.8203214 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7951.358794 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2860.695478 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,3138.033763 +NJ,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +NJ,Volatile Organic Compounds,2A6_Other-minerals,,TON,77.0097 +NJ,Volatile Organic Compounds,2B_Chemicals-other,,TON,303.8492 +NJ,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,59.737 +NJ,Volatile Organic Compounds,2C3_Aluminum-production,,TON,10.6758 +NJ,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +NJ,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +NJ,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +NJ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,Other_Fuel,TON,25931.817 +NJ,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,61.45401 +NJ,Volatile Organic Compounds,2D3d_Coating-application,,TON,23313.55681 +NJ,Volatile Organic Compounds,2D3e_Degreasing,,TON,3964.424 +NJ,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,30.3798757 +NJ,Volatile Organic Compounds,2D3h_Printing,,TON,4130.7746 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,65.88611659 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1853.017592 +NJ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,48.3837 +NJ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1457.309252 +NJ,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2093.3072 +NJ,Volatile Organic Compounds,2I_Wood-processing,,TON,0.0058 +NJ,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,12.877 +NJ,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,4.667 +NJ,Volatile Organic Compounds,3B3_Manure-swine,,TON,7.712 +NJ,Volatile Organic Compounds,3B4_Manure-poultry,,TON,22.535 +NJ,Volatile Organic Compounds,3Dc_Other-farm,,TON,1.36 +NJ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1311.011418 +NJ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,204.5015934 +NJ,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,421.04114 +NJ,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1415.2224 +NJ,Volatile Organic Compounds,5C_Incineration,,TON,7.422081394 +NJ,Volatile Organic Compounds,5C_Incineration,biomass,TON,21.69788301 +NJ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,4.465086 +NJ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,17.7118793 +NJ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,144.3315 +NJ,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,44.15890749 +NJ,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.2736 +NJ,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,16.23559 +NM,Ammonia,1A1a_Public-Electricity,hard_coal,TON,93.0051 +NM,Ammonia,1A1a_Public-Electricity,natural_gas,TON,174.546299 +NM,Ammonia,1A1b_Pet-refining,natural_gas,TON,41.4245 +NM,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.082 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.487365778 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.013957974 +NM,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.06459809 +NM,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.774222685 +NM,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.80076785 +NM,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,218.8475314 +NM,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.932964381 +NM,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.101085303 +NM,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,14.09221578 +NM,Ammonia,1A3bii_Road-LDV,light_oil,TON,666.8928879 +NM,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.19634243 +NM,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,32.75472235 +NM,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.351748745 +NM,Ammonia,1A3biii_Road-bus,light_oil,TON,0.897089459 +NM,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.059976 +NM,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,83.38163303 +NM,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,9.39790479 +NM,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.81391413 +NM,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.437953789 +NM,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.59787154 +NM,Ammonia,1A3c_Rail,diesel_oil,TON,10.97637061 +NM,Ammonia,1A3c_Rail,light_oil,TON,0.005227825 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.325180437 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00316284 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.47217308 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.345635945 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.698084437 +NM,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.149890262 +NM,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.927875786 +NM,Ammonia,1A4bi_Residential-stationary,biomass,TON,83.25506478 +NM,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.02100001 +NM,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,324.8751477 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.154148729 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.031639813 +NM,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.008969784 +NM,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.781725407 +NM,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.116202215 +NM,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.662347514 +NM,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.72 +NM,Ammonia,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.041 +NM,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.375 +NM,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.375 +NM,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,7.697 +NM,Ammonia,3B1a_Cattle-dairy,,TON,7602.953 +NM,Ammonia,3B1b_Cattle-non-dairy,,TON,4384.289 +NM,Ammonia,3B2_Manure-sheep,,TON,442.843764 +NM,Ammonia,3B3_Manure-swine,,TON,16.285 +NM,Ammonia,3B4_Manure-other,,TON,720.60912 +NM,Ammonia,3B4_Manure-poultry,,TON,16.5209652 +NM,Ammonia,3B4d_Manure-goats,,TON,248.324604 +NM,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,4176.648477 +NM,Ammonia,3F_Ag-res-on-field,,TON,87.399692 +NM,Ammonia,5B_Compost-biogas,Other_Fuel,TON,44.4642 +NM,Ammonia,5D1_Wastewater-domestic,,TON,5.49640922 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,60029.91467 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38243.4178 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2160.643805 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,484174.708 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,8456.361079 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.69819305 +NM,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,494088.7597 +NM,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,8084753.74 +NM,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,76325.277 +NM,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,495707.9417 +NM,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,229782.9581 +NM,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,27583.71648 +NM,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2182.5 +NM,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4254248.953 +NM,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,213430.8032 +NM,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2208928.693 +NM,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,92152.77331 +NM,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,80239.1002 +NM,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,9225.5941 +NM,Carbon Dioxide,1A3c_Rail,light_oil,TON,408.2213774 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,42506.21773 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,58442.36097 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2632.081243 +NM,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,18444.19272 +NM,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,143466.3973 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,142065.8525 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2367.467574 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.503303526 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1099.5759 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,52519.72162 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14309.29585 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,47175.3416 +NM,Carbon Monoxide,11C_Other-natural,,TON,278843.185 +NM,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,12.63578 +NM,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9485.8 +NM,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,864.8899857 +NM,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,413.62557 +NM,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.34 +NM,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,710.786 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,306.1378697 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,964.3570368 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,58.02015333 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,5.537163491 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,175.8299617 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,133.4660219 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,10257.98048 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.692502 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.196742 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1547.126266 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1737.548154 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.15686025 +NM,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3095.57258 +NM,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5907.523986 +NM,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,186651.0348 +NM,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,698.89222 +NM,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11069.57075 +NM,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,553.5344145 +NM,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1136.364897 +NM,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,8.78184 +NM,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8078.418989 +NM,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5067.787302 +NM,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3787.140958 +NM,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2947.639725 +NM,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3289.40357 +NM,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3540.874726 +NM,Carbon Monoxide,1A3c_Rail,light_oil,TON,94.07717992 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,280.0290256 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.636544939 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1118.762422 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,182.7061094 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12220.66809 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,55.55975914 +NM,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,62.44471516 +NM,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,33721.82421 +NM,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,13304.35203 +NM,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.105000015 +NM,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,743.4796865 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,492.7485277 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,530.146924 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.055772045 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.690658 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,9192.686587 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,28.38528374 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5404.81759 +NM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,7307.997048 +NM,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,9.497001737 +NM,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,42761.59053 +NM,Carbon Monoxide,2A1_Cement-production,,TON,870.94085 +NM,Carbon Monoxide,2A6_Other-minerals,,TON,214.250463 +NM,Carbon Monoxide,2D3d_Coating-application,,TON,0.00208 +NM,Carbon Monoxide,2D3h_Printing,,TON,0.000055 +NM,Carbon Monoxide,2H2_Food-and-beverage,,TON,283.9610215 +NM,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.6089 +NM,Carbon Monoxide,3F_Ag-res-on-field,,TON,1193.29381 +NM,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,31.462 +NM,Carbon Monoxide,5C_Incineration,biomass,TON,0.076898163 +NM,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,14266.15257 +NM,Carbon Monoxide,5C_Open-burning-residential,,TON,2268.13213 +NM,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,86.764457 +NM,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0036 +NM,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.054270872 +NM,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.686112204 +NM,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,25.59371045 +NM,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,16.37909898 +NM,Methane,1A2g_Construction_and_Mining,light_oil,TON,6.668020124 +NM,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.109027298 +NM,Methane,1A3bii_Road-LDV,diesel_oil,TON,21.06643254 +NM,Methane,1A3bii_Road-LDV,light_oil,TON,464.4443178 +NM,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.32929401 +NM,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33.4342874 +NM,Methane,1A3biii_Road-bus,diesel_oil,TON,3.760204267 +NM,Methane,1A3biii_Road-bus,light_oil,TON,2.17222251 +NM,Methane,1A3biii_Road-bus,natural_gas,TON,5.20164 +NM,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,517.2550073 +NM,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,8.290524928 +NM,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,46.7419738 +NM,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.733868932 +NM,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.92943826 +NM,Methane,1A3c_Rail,diesel_oil,TON,0.395707636 +NM,Methane,1A3c_Rail,light_oil,TON,0.299613476 +NM,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.374736274 +NM,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,43.98874961 +NM,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.32855759 +NM,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.654331857 +NM,Methane,1A4bi_Residential-mobile,light_oil,TON,146.9884523 +NM,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.957711525 +NM,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.321319787 +NM,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.048003701 +NM,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.047349283 +NM,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,90.27670949 +NM,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.371713285 +NM,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,48.8159005 +NM,Nitrogen Oxides,11C_Other-natural,,TON,30210.0895 +NM,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,63.8077085 +NM,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,16562 +NM,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,4984.29695 +NM,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,420.27873 +NM,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.42 +NM,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,470.208 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,345.6995744 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,127.2398203 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.469140033 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2.030256803 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,836.9595386 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,293.6194108 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,19918.90147 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.218545 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.234232 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2785.633488 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,26.23593196 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.030184949 +NM,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1071.0547 +NM,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1978.822947 +NM,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,24052.72617 +NM,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,294.043643 +NM,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1356.798019 +NM,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2312.914581 +NM,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,127.021846 +NM,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.90606 +NM,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,27232.66225 +NM,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,677.6104893 +NM,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13670.75798 +NM,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,304.6610637 +NM,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,168.793168 +NM,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,20058.79892 +NM,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.129437071 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,102.7864434 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,18.84269864 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1391.044084 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,333.6123323 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,191.0840495 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.04098178 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,146.3306208 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,362.3078592 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,231.2662335 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.378000155 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1860.195733 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1058.389694 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.35920099 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.012467761 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.44987 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,111.8444579 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,149.9969037 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,345.5515878 +NM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,8706.301804 +NM,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.21339806 +NM,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,28547.23822 +NM,Nitrogen Oxides,2A1_Cement-production,,TON,908.53735 +NM,Nitrogen Oxides,2A6_Other-minerals,,TON,119.699921 +NM,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,0.93231 +NM,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,2.82514 +NM,Nitrogen Oxides,2D3d_Coating-application,,TON,0.0052 +NM,Nitrogen Oxides,2D3h_Printing,,TON,0.000065 +NM,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NM,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.7643 +NM,Nitrogen Oxides,3F_Ag-res-on-field,,TON,29.112594 +NM,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,6.14 +NM,Nitrogen Oxides,5C_Incineration,biomass,TON,8.27085621 +NM,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,422.075667 +NM,Nitrogen Oxides,5C_Open-burning-residential,,TON,160.103245 +NM,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.8561975 +NM,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.0007 +NM,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.459435646 +NM,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,421.7117775 +NM,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.255267722 +NM,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,27.68936872 +NM,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.374491734 +NM,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.870986279 +NM,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.1111 +NM,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.716469634 +NM,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.65029547 +NM,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.163937927 +NM,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.841488744 +NM,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.922557184 +NM,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.700187732 +NM,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,231.7242 +NM,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,95.28812447 +NM,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,74.954318 +NM,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0451956 +NM,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,14.2867961 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4.614959312 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,56.37033031 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,320.3635859 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,201.7322369 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1418578 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00677236 +NM,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,369102.3161 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,232.730096 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.250650139 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.672905644 +NM,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.022680005 +NM,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.716652706 +NM,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,85.1 +NM,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000000572 +NM,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14.33319221 +NM,PM10 Filterable,2A1_Cement-production,,TON,141.9608872 +NM,PM10 Filterable,2A2_Lime-production,,TON,0.058 +NM,PM10 Filterable,2A5b_Construction-and-demolition,,TON,15574.75242 +NM,PM10 Filterable,2A6_Other-minerals,,TON,12391.49807 +NM,PM10 Filterable,2B_Chemicals-other,Other_Fuel,TON,0.394 +NM,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,750.82935 +NM,PM10 Filterable,2D3d_Coating-application,,TON,0.8974606 +NM,PM10 Filterable,2D3h_Printing,,TON,0.000005 +NM,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.235 +NM,PM10 Filterable,2H2_Food-and-beverage,,TON,61.94489748 +NM,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,84.35289447 +NM,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,12570.8169 +NM,PM10 Filterable,3Dc_Other-farm,,TON,10327.05445 +NM,PM10 Filterable,5A_Solid-waste-disposal,,TON,216.376 +NM,PM10 Filterable,5C_Incineration,biomass,TON,0.065 +NM,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1435.057345 +NM,PM10 Filterable,5C_Open-burning-residential,,TON,739.45184 +NM,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.3677804 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.941107 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,252 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,201.5548518 +NM,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,120.006888 +NM,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.07 +NM,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,37.005 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.03951355 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.114453501 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.270945516 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4.771763708 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,59.51275426 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,348.120471 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,380.3238728 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.162865 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.017822 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,237.4511859 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,13.09898049 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +NM,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,96.68210239 +NM,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,369102.3161 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,116.7240006 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1005.343123 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,20.4889529 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,58.01089156 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,132.108998 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.95253075 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.322006 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1199.45583 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,23.58738023 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,788.760042 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.0527489 +NM,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.39394935 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,648.4240556 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.051951978 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,240.9680343 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.285316825 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.19329361 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29.6450918 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,15.11497743 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.331904559 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.36582497 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,133.6009337 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1778.381409 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.049979973 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.663298698 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,85.32589518 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.402277437 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.3592E-05 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.2520076 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,89.14273038 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.16330198 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,21.90922896 +NM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,354.5204536 +NM,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000000572 +NM,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,356.8106889 +NM,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,151.1183985 +NM,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.658 +NM,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,15574.75242 +NM,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12400.50514 +NM,PM10 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.394 +NM,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,750.82935 +NM,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.8974606 +NM,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.000005 +NM,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.235 +NM,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,704.8203332 +NM,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,84.35757186 +NM,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,12570.8169 +NM,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,10327.05445 +NM,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,205.491964 +NM,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,220.322 +NM,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.610267879 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1435.057345 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,739.45184 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.3677804 +NM,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.656748113 +NM,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,231.7242 +NM,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,89.14612209 +NM,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,70.762875 +NM,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.0451956 +NM,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,14.2279871 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3.969565069 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,51.6836437 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,37.38230696 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,198.5507892 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0922287 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00677236 +NM,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,38845.01155 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,200.1771514 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.25000663 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.604253968 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.01743 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.044157964 +NM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,39.680851 +NM,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000000572 +NM,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14.31489246 +NM,PM2.5 Filterable,2A1_Cement-production,,TON,68.1436353 +NM,PM2.5 Filterable,2A2_Lime-production,,TON,0.008 +NM,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1557.479854 +NM,PM2.5 Filterable,2A6_Other-minerals,,TON,1630.769002 +NM,PM2.5 Filterable,2B_Chemicals-other,Other_Fuel,TON,0.394 +NM,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,75.82693824 +NM,PM2.5 Filterable,2D3d_Coating-application,,TON,0.8974606 +NM,PM2.5 Filterable,2D3h_Printing,,TON,0.000005 +NM,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.215 +NM,PM2.5 Filterable,2H2_Food-and-beverage,,TON,11.583249 +NM,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,16.90950531 +NM,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2612.2848 +NM,PM2.5 Filterable,3Dc_Other-farm,,TON,2065.41162 +NM,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,38.21382 +NM,PM2.5 Filterable,5C_Incineration,biomass,TON,0.065 +NM,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1106.284276 +NM,PM2.5 Filterable,5C_Open-burning-residential,,TON,677.18199 +NM,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,11.0761707 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.897667301 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,252 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,195.4128494 +NM,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,115.815445 +NM,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.07 +NM,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,36.946191 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.33845723 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.096726691 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.270530345 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4.126054148 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,54.92515034 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,65.14496489 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,377.1234736 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1132357 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.017822 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,230.3275911 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,12.05939795 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319179 +NM,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,86.67713362 +NM,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,38845.01155 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,86.18094747 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,396.3862155 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.4022311 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,21.65660665 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,105.1667654 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.081545171 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.0702502 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,935.2321842 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.423443477 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,595.3499258 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.200251023 +NM,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.85609642 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,597.4075296 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.047898955 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,208.413267 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.284932701 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.438729961 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.75574391 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,13.95054703 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.331904559 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.05485106 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,122.9180406 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1754.663927 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.044729983 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.990802437 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,82.76620559 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.290106245 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.3592E-05 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.2144471 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,82.01171804 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.068402922 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,20.15650802 +NM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,303.757709 +NM,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000000572 +NM,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,356.7923891 +NM,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,77.37453885 +NM,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.608 +NM,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1557.479854 +NM,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1639.776066 +NM,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.394 +NM,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,75.82693824 +NM,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.8974606 +NM,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.000005 +NM,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.215 +NM,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,654.4587036 +NM,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,16.9141827 +NM,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2612.2848 +NM,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2065.41162 +NM,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,150.638717 +NM,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,42.15982 +NM,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.610267879 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1106.284276 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,677.18199 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.0761707 +NM,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.6542885 +NM,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,4969.1 +NM,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,887.2321422 +NM,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,149.3564672 +NM,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.005 +NM,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,3669.367 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.115445012 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.306291848 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.019457115 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.230713859 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,73.20856717 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,669.4600152 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,126.8741398 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.3068535 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0014003 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.370781109 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.140326859 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50878E-05 +NM,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,113.4356583 +NM,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.325388454 +NM,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,150.3812931 +NM,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.66432298 +NM,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.227507822 +NM,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.023464869 +NM,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.51260678 +NM,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.0115552 +NM,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,36.69579728 +NM,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.965343188 +NM,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.17718743 +NM,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.712475314 +NM,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.486416858 +NM,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,12.3968104 +NM,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007269277 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,11.64690175 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.629559778 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.340161937 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.496701643 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.987806943 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.014745861 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.216310294 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.606175461 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,32.06062696 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.894599845 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.14996117 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.636036601 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.043134936 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.80406E-06 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012987916 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.953113841 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.456011084 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.8585463 +NM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1101.068039 +NM,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000000533 +NM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2429.06768 +NM,Sulfur Dioxide,2A1_Cement-production,,TON,24.4001 +NM,Sulfur Dioxide,2A6_Other-minerals,,TON,38.43570686 +NM,Sulfur Dioxide,2D3d_Coating-application,,TON,0.000026 +NM,Sulfur Dioxide,2D3h_Printing,,TON,0.0000005 +NM,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NM,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.2718 +NM,Sulfur Dioxide,3F_Ag-res-on-field,,TON,5.758847 +NM,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.78 +NM,Sulfur Dioxide,5C_Incineration,biomass,TON,1.275608224 +NM,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,140.1290772 +NM,Sulfur Dioxide,5C_Open-burning-residential,,TON,26.6838963 +NM,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.83321439 +NM,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0001 +NM,Volatile Organic Compounds,11C_Other-natural,,TON,1256513.85 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.1501105 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,185.8 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,122.5332165 +NM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1324.237716 +NM,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,215.1218743 +NM,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.17 +NM,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,221.204 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,32.05933691 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.02059837 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.607563565 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.156892055 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.98402549 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.334709245 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2534.634712 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.060674 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0128573 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,311.5580953 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,122.0385133 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023567623 +NM,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,488.7753844 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,633.0733016 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,16816.4427 +NM,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,80.077425 +NM,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,922.3930028 +NM,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,132.6352127 +NM,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,60.21021954 +NM,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.536993 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2393.48284 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,210.7182961 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,787.737909 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,139.135167 +NM,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,473.439394 +NM,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1022.118073 +NM,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.730781013 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,7.939385418 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.479251066 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,69.3599551 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,42.0152413 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,480.7104116 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.852869378 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,14.59663137 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2376.759918 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1955.564368 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.0147 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,102.2079456 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,96.61710566 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,29.03226149 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010376597 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2862627 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2881.092876 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.624839622 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1574.584198 +NM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,102053.2486 +NM,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,255.3179907 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,76.64715356 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,568.9569249 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2272.061254 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4938.7628 +NM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,72729.02282 +NM,Volatile Organic Compounds,2A1_Cement-production,,TON,47.2642 +NM,Volatile Organic Compounds,2A6_Other-minerals,,TON,47.02802615 +NM,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,261.0392701 +NM,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,5.9533 +NM,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.69 +NM,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.18 +NM,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,9317.98558 +NM,Volatile Organic Compounds,2D3d_Coating-application,,TON,4591.514184 +NM,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,864.5226295 +NM,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,3.96499975 +NM,Volatile Organic Compounds,2D3h_Printing,,TON,993.4891 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,130.2335767 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,5674.48334 +NM,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,144.3103038 +NM,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,22.180771 +NM,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,610.476 +NM,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,352.026 +NM,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.302 +NM,Volatile Organic Compounds,3B4_Manure-poultry,,TON,0.576 +NM,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,926.9355079 +NM,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,71.257474 +NM,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,50.042 +NM,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,314.618 +NM,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.028930496 +NM,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,979.215354 +NM,Volatile Organic Compounds,5C_Open-burning-residential,,TON,154.153901 +NM,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,16.1822598 +NM,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,28.24069569 +NM,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,3.8918 +NM,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,6.600615 +NV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,8.85227 +NV,Ammonia,1A1a_Public-Electricity,hard_coal,TON,45.91491 +NV,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,2.13523 +NV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,114.93232 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.566983022 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.016099243 +NV,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,6.67266E-05 +NV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.44387074 +NV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.10112185 +NV,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.007439033 +NV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,12.87157013 +NV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,11.84647329 +NV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.30544033 +NV,Ammonia,1A3b_Road-noncomb,Dust,TON,0 +NV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.46201243 +NV,Ammonia,1A3bii_Road-LDV,light_oil,TON,791.0020539 +NV,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.16309063 +NV,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33.74509788 +NV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.818507178 +NV,Ammonia,1A3biii_Road-bus,light_oil,TON,0.572635243 +NV,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.0607057 +NV,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,29.31285246 +NV,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.590628517 +NV,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.8278699 +NV,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.120245824 +NV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.1483401 +NV,Ammonia,1A3c_Rail,diesel_oil,TON,3.286912338 +NV,Ammonia,1A3c_Rail,light_oil,TON,0.00143597 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.1609319 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.948234 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,163.837608 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.418016539 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.844588093 +NV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.475521463 +NV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.311975798 +NV,Ammonia,1A4bi_Residential-stationary,biomass,TON,51.31138518 +NV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.229800398 +NV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.253763 +NV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,378.3330933 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.731868305 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.018726228 +NV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010473268 +NV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.778685394 +NV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.167027347 +NV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.952206093 +NV,Ammonia,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Ammonia,2A5b_Construction-and-demolition,,TON,0 +NV,Ammonia,2A6_Other-minerals,,TON,15 +NV,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.1675 +NV,Ammonia,2C7_Other-metal,Other_Fuel,TON,73.18277 +NV,Ammonia,2D3d_Coating-application,,TON,0.32 +NV,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.375 +NV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,2.71966 +NV,Ammonia,3B1a_Cattle-dairy,,TON,534.342 +NV,Ammonia,3B1b_Cattle-non-dairy,,TON,15448.347 +NV,Ammonia,3B2_Manure-sheep,,TON,239.23152 +NV,Ammonia,3B3_Manure-swine,,TON,19.869 +NV,Ammonia,3B4_Manure-other,,TON,247.50396 +NV,Ammonia,3B4_Manure-poultry,,TON,9.0964412 +NV,Ammonia,3B4d_Manure-goats,,TON,83.03856 +NV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,347.0029738 +NV,Ammonia,3F_Ag-res-on-field,,TON,9.96176 +NV,Ammonia,5B_Compost-biogas,Other_Fuel,TON,72.3661 +NV,Ammonia,5D1_Wastewater-domestic,,TON,2.01768506 +NV,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.00014 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,69836.55583 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44141.55123 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2497.727797 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1458401 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25551.50602 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.745484703 +NV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,464955.1165 +NV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10460180.26 +NV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,81591.182 +NV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,596481.7181 +NV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,194913.7988 +NV,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,18125.53949 +NV,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2331.34 +NV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1619896.466 +NV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,15598.59867 +NV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,724326.869 +NV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,59987.02289 +NV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,54208.283 +NV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2527.4969 +NV,Carbon Dioxide,1A3c_Rail,light_oil,TON,112.2268364 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,51407.56318 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,70716.05408 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3080.204057 +NV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,58513.1879 +NV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,322078.0963 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,90085.82974 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1409.124342 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.270503731 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1283.88276 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,52417.92291 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20567.95996 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,67820.3468 +NV,Carbon Monoxide,11C_Other-natural,,TON,235095.006 +NV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,24.55341138 +NV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,33889.9966 +NV,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.0263145 +NV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,589.4847982 +NV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,0.15263686 +NV,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.617775 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1098.46798 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1286.887509 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,79.22292695 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0.005833533 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,159.2962022 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,514.246469 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.047223229 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,222.5838395 +NV,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0.014985 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.76069892 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.32 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4636.640556 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5338.339437 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.392150849 +NV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5208.712519 +NV,Carbon Monoxide,1A3b_Road-noncomb,Dust,TON,0 +NV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6288.41141 +NV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,175196.3882 +NV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,613.65042 +NV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9330.725584 +NV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,518.6009352 +NV,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,723.6437239 +NV,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,9.07323 +NV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3182.360132 +NV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,339.2454843 +NV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1323.54267 +NV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2365.658539 +NV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2232.0017 +NV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1062.237449 +NV,Carbon Monoxide,1A3c_Rail,light_oil,TON,25.82297864 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.481049574 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,44.712173 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.467143856 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.861920191 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1055.641658 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,220.9950662 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,15016.25132 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,65.94153685 +NV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,198.7064206 +NV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,74362.19707 +NV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,11057.36723 +NV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.038382025 +NV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.603955 +NV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,607.5969144 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,314.4120657 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,303.1148346 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.029975614 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.1471545 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,9785.708913 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.80024507 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7788.203666 +NV,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,4.66 +NV,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Carbon Monoxide,2A1_Cement-production,,TON,225.929883 +NV,Carbon Monoxide,2A2_Lime-production,,TON,402.49139 +NV,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,37.299605 +NV,Carbon Monoxide,2A6_Other-minerals,,TON,857.1041622 +NV,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,90.81286778 +NV,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3.0784908 +NV,Carbon Monoxide,2C3_Aluminum-production,,TON,0.8109795 +NV,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,238.7895092 +NV,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.000942931 +NV,Carbon Monoxide,2D3d_Coating-application,,TON,10.4052656 +NV,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.0259942 +NV,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0.205482 +NV,Carbon Monoxide,2H2_Food-and-beverage,,TON,116.6969405 +NV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,22.7337776 +NV,Carbon Monoxide,3Dc_Other-farm,,TON,1.21632 +NV,Carbon Monoxide,3F_Ag-res-on-field,,TON,121.95989 +NV,Carbon Monoxide,5A_Solid-waste-disposal,,TON,84.700208 +NV,Carbon Monoxide,5C_Incineration,,TON,0.029173465 +NV,Carbon Monoxide,5C_Incineration,biomass,TON,113.5117883 +NV,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.0738742 +NV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2447.720769 +NV,Carbon Monoxide,5C_Open-burning-residential,,TON,692.46776 +NV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,10.43469 +NV,Carbon Monoxide,5D1_Wastewater-domestic,,TON,6.69 +NV,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.0217508 +NV,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.001 +NV,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.390850184 +NV,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.559810441 +NV,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,29.58989758 +NV,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,49.07977932 +NV,Methane,1A2g_Construction_and_Mining,light_oil,TON,19.99296107 +NV,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.27256817 +NV,Methane,1A3bii_Road-LDV,diesel_oil,TON,16.02928765 +NV,Methane,1A3bii_Road-LDV,light_oil,TON,434.2648096 +NV,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.06880925 +NV,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29.53846445 +NV,Methane,1A3biii_Road-bus,diesel_oil,TON,3.128566995 +NV,Methane,1A3biii_Road-bus,light_oil,TON,1.659790173 +NV,Methane,1A3biii_Road-bus,natural_gas,TON,6.06452 +NV,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,239.3178504 +NV,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.669782814 +NV,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20.0607083 +NV,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.052855515 +NV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.6620582 +NV,Methane,1A3c_Rail,diesel_oil,TON,0.10843621 +NV,Methane,1A3c_Rail,light_oil,TON,0.08269139 +NV,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.662739667 +NV,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,52.80112666 +NV,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,43.37561216 +NV,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.083965521 +NV,Methane,1A4bi_Residential-mobile,light_oil,TON,296.6222784 +NV,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.507336667 +NV,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.366361708 +NV,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.025800308 +NV,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.055322117 +NV,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,92.60436993 +NV,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.534290906 +NV,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,70.16251642 +NV,Nitrogen Oxides,11C_Other-natural,,TON,8183.1768 +NV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,87.64071035 +NV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,8760.035 +NV,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.19357 +NV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1467.526319 +NV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.11975966 +NV,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.07081 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,481.6241351 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,164.9302825 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.08492802 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.002167304 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,677.5128211 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,428.9005444 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.190717809 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,404.1989778 +NV,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,0.002835 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.5207352 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.38 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8372.477805 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,74.95171633 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075462425 +NV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2882.82726 +NV,Nitrogen Oxides,1A3b_Road-noncomb,Dust,TON,0 +NV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1954.519037 +NV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,23277.27161 +NV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,297.813117 +NV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1103.011055 +NV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1877.54321 +NV,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,66.86506095 +NV,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,4.00099 +NV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11243.39821 +NV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,40.68199162 +NV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4131.12014 +NV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,207.7596752 +NV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,109.405932 +NV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,5996.414094 +NV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.314794954 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,8.212589279 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,148.8234602 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,37.67884423 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.581761678 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1124.442941 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,403.4798259 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,220.9792495 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16.73655356 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,463.9968483 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,713.3839636 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,218.2875074 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,3.46635145 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.540515 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1460.178149 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,674.8766267 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.179156734 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00670091 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.0269703 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,110.9597619 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,215.6024241 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,491.6967094 +NV,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,3.16 +NV,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Nitrogen Oxides,2A1_Cement-production,,TON,1100.621274 +NV,Nitrogen Oxides,2A2_Lime-production,,TON,1884.8006 +NV,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,14.0330905 +NV,Nitrogen Oxides,2A6_Other-minerals,,TON,649.8146757 +NV,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,142.61663 +NV,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3.9631204 +NV,Nitrogen Oxides,2C3_Aluminum-production,,TON,1.2827779 +NV,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,154.4050279 +NV,Nitrogen Oxides,2D3d_Coating-application,,TON,12.7656106 +NV,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.0965501 +NV,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,35.3839351 +NV,Nitrogen Oxides,3Dc_Other-farm,,TON,0.38 +NV,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3.211103 +NV,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,17.78838 +NV,Nitrogen Oxides,5C_Incineration,,TON,0.005587126 +NV,Nitrogen Oxides,5C_Incineration,biomass,TON,13.44088636 +NV,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.00198 +NV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,72.4177994 +NV,Nitrogen Oxides,5C_Open-burning-residential,,TON,48.880099 +NV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.4637637 +NV,Nitrogen Oxides,5D1_Wastewater-domestic,,TON,0 +NV,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.00775036 +NV,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,0.0076 +NV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.377438988 +NV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,432.8198606 +NV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.271465474 +NV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.577455 +NV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.379419359 +NV,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.651019163 +NV,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.15195 +NV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.621847997 +NV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.447569346 +NV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.33913581 +NV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.408894739 +NV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.85017015 +NV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.853615461 +NV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,878.5821324 +NV,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.024237598 +NV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,342.6831525 +NV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.516644564 +NV,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0219104 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.004783415 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.48819301 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,486.5417493 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.009425203 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,57.00408385 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.12174825 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0114 +NV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,46410.0892 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,14.20821902 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.584651032 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.261681871 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.597579225 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,190.858104 +NV,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,354.46 +NV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.292585435 +NV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.55 +NV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,75.54533908 +NV,PM10 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,5.55 +NV,PM10 Filterable,2A1_Cement-production,,TON,200.3249211 +NV,PM10 Filterable,2A2_Lime-production,,TON,288.3553295 +NV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,8877.381505 +NV,PM10 Filterable,2A6_Other-minerals,,TON,82380.40271 +NV,PM10 Filterable,2B_Chemicals-other,,TON,36.00663974 +NV,PM10 Filterable,2C_Iron-steel-alloy,,TON,8.48890952 +NV,PM10 Filterable,2C3_Aluminum-production,,TON,0.14893507 +NV,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,661.3029609 +NV,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.721866195 +NV,PM10 Filterable,2D3d_Coating-application,,TON,13.04384625 +NV,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,8.1915 +NV,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3.304729 +NV,PM10 Filterable,2H2_Food-and-beverage,,TON,182.2971159 +NV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,256.5327193 +NV,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,5185.31952 +NV,PM10 Filterable,3Dc_Other-farm,,TON,13491.353 +NV,PM10 Filterable,5A_Solid-waste-disposal,,TON,31.78767157 +NV,PM10 Filterable,5C_Incineration,biomass,TON,23.18027216 +NV,PM10 Filterable,5C_Open-burning-industrial,,TON,0.015962639 +NV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,246.2205914 +NV,PM10 Filterable,5C_Open-burning-residential,,TON,226.3089 +NV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1.727935 +NV,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.40887 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.630242542 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,900.616889 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.027295295 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,672.963652 +NV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.517264564 +NV,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.057659 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29.53055777 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.380028773 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.357789275 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.004944318 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,68.31495524 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,522.9882489 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.021688445 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,155.2630631 +NV,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.0002835 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.14556 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,712.4516844 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.59340598 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797949 +NV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,149.4686565 +NV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,46410.10058 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,117.5485899 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1369.016491 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,20.2931107 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,73.22882151 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,120.1369493 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.538271832 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.391668 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,501.1823829 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.821333508 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,257.904651 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.193744446 +NV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.9538591 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,192.628384 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014278408 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,13.98065477 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.63375778 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.941519463 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,5.824348269 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,437.6396702 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.85810439 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,18.28921475 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.387875151 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.99074565 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,338.0267637 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1436.948154 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.657545205 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.26881 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,198.7507223 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,54.41647571 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.400513976 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.41785E-05 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4624665 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,88.95963938 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.546816601 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,31.49731254 +NV,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,5.55 +NV,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,207.4094581 +NV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,299.9008477 +NV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,8877.398765 +NV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,82438.43266 +NV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,37.3854036 +NV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,8.4968882 +NV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.536329928 +NV,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,662.029725 +NV,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,2.179071595 +NV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.39722385 +NV,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,8.1933945 +NV,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.3455738 +NV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,10.030272 +NV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,301.3485976 +NV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,269.2857891 +NV,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,5185.31952 +NV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,13492.00001 +NV,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,20.51153 +NV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,32.59041183 +NV,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.003565945 +NV,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,23.77104575 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.066135854 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,246.2205914 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,226.3135 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.727935 +NV,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,1.041 +NV,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.753128 +NV,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.00237572 +NV,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.029575 +NV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.499530423 +NV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,229.1979394 +NV,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.017666923 +NV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,338.2976216 +NV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.472566628 +NV,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0219104 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0.004121524 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.025436375 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,284.3518532 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.002306767 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,32.78670064 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.11888502 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0114 +NV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,6969.4886 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,11.12988397 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.672818578 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.645393094 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001788446 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,90.98093544 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,354.46 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.155690628 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.663934073 +NV,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,3.34574 +NV,PM2.5 Filterable,2A1_Cement-production,,TON,76.15432085 +NV,PM2.5 Filterable,2A2_Lime-production,,TON,79.06035697 +NV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1453.959511 +NV,PM2.5 Filterable,2A6_Other-minerals,,TON,10384.51479 +NV,PM2.5 Filterable,2B_Chemicals-other,,TON,7.843931458 +NV,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,7.55805609 +NV,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.131850818 +NV,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,226.3745295 +NV,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.274923838 +NV,PM2.5 Filterable,2D3d_Coating-application,,TON,9.315531853 +NV,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,6.7972 +NV,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.082842188 +NV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,129.1699305 +NV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,163.9373333 +NV,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1077.32592 +NV,PM2.5 Filterable,3Dc_Other-farm,,TON,2694.631666 +NV,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,10.93131577 +NV,PM2.5 Filterable,5C_Incineration,biomass,TON,21.99057123 +NV,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.014666873 +NV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,189.8113863 +NV,PM2.5 Filterable,5C_Open-burning-residential,,TON,207.25392 +NV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,1.3320716 +NV,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.40887 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.282260766 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,250.1560575 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.020743066 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,669.6490884 +NV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.473186628 +NV,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.057659 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,28.57957769 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.32827679 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.355095934 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0.004279375 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,43.88004163 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,320.6703951 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.014323602 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,131.1067532 +NV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.0002835 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.14269677 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,691.0788301 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,36.45112712 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797949 +NV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,136.1084637 +NV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,6969.507406 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,85.17562233 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,442.1939129 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.4716635 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,22.07364563 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,90.72225314 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.364424486 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.0724502 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,377.8508328 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.723568178 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,187.821236 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.149693323 +NV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.0523604 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,178.295297 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.013165238 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,11.04246065 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.68287043 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.450821513 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,3.243645577 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,337.4824422 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34.78237158 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,16.88032768 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.387875151 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.0009662 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,311.0012221 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1411.228779 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.509543435 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.71 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,124.8444764 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,52.78391233 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.36847752 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.41785E-05 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.41859276 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,81.84333649 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.410397497 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,28.97753031 +NV,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,3.34574 +NV,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,83.23884893 +NV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,90.60595706 +NV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1454.000226 +NV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,10442.55142 +NV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,9.218269313 +NV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,7.56603477 +NV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.519245505 +NV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,227.1073536 +NV,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.732129238 +NV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.668909453 +NV,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,6.7990945 +NV,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.3455738 +NV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,7.808385188 +NV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,248.2215047 +NV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,176.6852931 +NV,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1077.32592 +NV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2695.278667 +NV,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,14.968319 +NV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,11.73405625 +NV,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.00360448 +NV,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,22.58250735 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.064840089 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,189.8113863 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,207.2555 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.3320716 +NV,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0.941 +NV,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.753128 +NV,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.00209572 +NV,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.013835 +NV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.229305731 +NV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,10169.688 +NV,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.0003826 +NV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,103.2178423 +NV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.09191234 +NV,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.00123555 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.74352459 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.919973666 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.062505328 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.000238478 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1874.417377 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1070.558685 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.412314831 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,30.7535606 +NV,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.02835 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.317969 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,16.17166506 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.424007845 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.77196E-05 +NV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,324.228932 +NV,Sulfur Dioxide,1A3b_Road-noncomb,Dust,TON,0 +NV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.084434405 +NV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,157.8371737 +NV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.71033819 +NV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.007466727 +NV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.715088538 +NV,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.273489668 +NV,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.0123432 +NV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13.97500967 +NV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.235453696 +NV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.27641071 +NV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.905053083 +NV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.82191956 +NV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.71322693 +NV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001997202 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,31.319628 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,445.901852 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,77.41801 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,50.504105 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,36.56281647 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.600720918 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.195152453 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.0172561 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.68636889 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.843294157 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,21.96748864 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,9.7894964 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,10.8103 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.9392895 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.038420193 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.025680572 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.50706E-06 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.015165388 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.951198963 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.655463816 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.234265076 +NV,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +NV,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Sulfur Dioxide,2A1_Cement-production,,TON,125.904378 +NV,Sulfur Dioxide,2A2_Lime-production,,TON,174.92195 +NV,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,2.98162675 +NV,Sulfur Dioxide,2A6_Other-minerals,,TON,147.9486684 +NV,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.6658609 +NV,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,4.86110446 +NV,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.007942968 +NV,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,71.06286845 +NV,Sulfur Dioxide,2D3d_Coating-application,,TON,0.683311556 +NV,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.000445616 +NV,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2.61524196 +NV,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0024 +NV,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.7234908 +NV,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,258.7114 +NV,Sulfur Dioxide,5C_Incineration,,TON,0.00040828 +NV,Sulfur Dioxide,5C_Incineration,biomass,TON,3.705017605 +NV,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.000250455 +NV,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,24.04270724 +NV,Sulfur Dioxide,5C_Open-burning-residential,,TON,8.1466796 +NV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.10020624 +NV,Sulfur Dioxide,5D1_Wastewater-domestic,,TON,0 +NV,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.000356 +NV,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.005035 +NV,Volatile Organic Compounds,11C_Other-natural,,TON,1067343.98 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,36.01608401 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,87.38072611 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.013733067 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,662.0887759 +NV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,27.11902653 +NV,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.08237 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,62.24725479 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,37.89392868 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.891290366 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.000167401 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.52896354 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,4.340605972 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.271323254 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,116.3558334 +NV,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.01458 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.06486524 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,932.3282515 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,369.047017 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.058919065 +NV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,674.9346807 +NV,Volatile Organic Compounds,1A3b_Road-noncomb,Dust,TON,0 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,610.471758 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,15958.1306 +NV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,70.974379 +NV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,732.234507 +NV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,118.5420362 +NV,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,45.28158088 +NV,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.631919 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,980.0942846 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,15.98477678 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,287.320405 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,124.9084228 +NV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,460.53505 +NV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,310.350778 +NV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.727790306 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.429542752 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.011372448 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.779200988 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,23.53318148 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,364.3627192 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,50.81960238 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,607.8479777 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9.376180492 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,46.38553235 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4942.842576 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2935.852847 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.891291272 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,4.56773 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,531.7751978 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,61.59003273 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,13.6703263 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005577057 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.6695187 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2867.604617 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.959578 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2305.914537 +NV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,311.6685353 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,40.88887615 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,229.6490709 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2480.286165 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2333.649549 +NV,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NV,Volatile Organic Compounds,2A1_Cement-production,,TON,41.3068968 +NV,Volatile Organic Compounds,2A2_Lime-production,,TON,9.428166 +NV,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,8.45499375 +NV,Volatile Organic Compounds,2A6_Other-minerals,,TON,77.32974767 +NV,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,186.9953834 +NV,Volatile Organic Compounds,2B_Chemicals-other,,TON,71.81659355 +NV,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0.01672424 +NV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.07281064 +NV,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,28.3025442 +NV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12382.57731 +NV,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,4.19274941 +NV,Volatile Organic Compounds,2D3d_Coating-application,,TON,5568.2418 +NV,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,979.254008 +NV,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,11.0103801 +NV,Volatile Organic Compounds,2D3h_Printing,,TON,2377.815084 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,326.7489063 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1818.892725 +NV,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,2.47774 +NV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,160.066189 +NV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,365.665821 +NV,Volatile Organic Compounds,2I_Wood-processing,Other_Fuel,TON,1.90169 +NV,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,42.904 +NV,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1240.404 +NV,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.596 +NV,Volatile Organic Compounds,3B4_Manure-poultry,,TON,0.672 +NV,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.022 +NV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,403.1096253 +NV,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,7.640717 +NV,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,23.77703 +NV,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,512.045 +NV,Volatile Organic Compounds,5C_Incineration,,TON,0.002494866 +NV,Volatile Organic Compounds,5C_Incineration,biomass,TON,12.09755736 +NV,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.107839396 +NV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,168.009273 +NV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,47.112327 +NV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,1.9461534 +NV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,47.41 +NV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,3.703528 +NV,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.2159 +NV,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.063205 +NY,Ammonia,1A1a_Public-Electricity,biomass,TON,14.1243085 +NY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,45.6445411 +NY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,3.11635 +NY,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,34.5115104 +NY,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.902797 +NY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,382.1755454 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.6885307 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.25588641 +NY,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,60.9043723 +NY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.56193703 +NY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,2.228768828 +NY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.664578976 +NY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,1.290151128 +NY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,100.948852 +NY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,25.41625026 +NY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.655503573 +NY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.18096758 +NY,Ammonia,1A3bii_Road-LDV,light_oil,TON,3565.272561 +NY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.1243754 +NY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,161.254976 +NY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,32.54049979 +NY,Ammonia,1A3biii_Road-bus,light_oil,TON,9.643775768 +NY,Ammonia,1A3biii_Road-bus,natural_gas,TON,1.6316745 +NY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,60.96625307 +NY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.874779664 +NY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,112.5004941 +NY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,52.44718356 +NY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.6792486 +NY,Ammonia,1A3c_Rail,diesel_oil,TON,6.741063827 +NY,Ammonia,1A3c_Rail,light_oil,TON,0.002686655 +NY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.86267041 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.519924397 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,132.3308248 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.475054427 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.53521894 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.906330902 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,80.75329838 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.893338596 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,11.90703524 +NY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.991746989 +NY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,15.3732585 +NY,Ammonia,1A4bi_Residential-stationary,biomass,TON,862.5507034 +NY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,330.65762 +NY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,11.2895972 +NY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,4589.086301 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.32916617 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.170099429 +NY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.092538533 +NY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,10.25598772 +NY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.987902254 +NY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,11.33036656 +NY,Ammonia,2A1_Cement-production,,TON,273.87 +NY,Ammonia,2A6_Other-minerals,,TON,2.94439165 +NY,Ammonia,2B_Chemicals-other,Other_Fuel,TON,8.8062263 +NY,Ammonia,2C_Iron-steel-alloy,,TON,1.8794 +NY,Ammonia,2C3_Aluminum-production,,TON,0.108 +NY,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.229 +NY,Ammonia,2D3d_Coating-application,,TON,19.556565 +NY,Ammonia,2H1_Pulp-and-paper,,TON,37.037 +NY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,2.4155 +NY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,129.2257534 +NY,Ammonia,3B1a_Cattle-dairy,,TON,11455.689 +NY,Ammonia,3B1b_Cattle-non-dairy,,TON,2721.731 +NY,Ammonia,3B2_Manure-sheep,,TON,220.625064 +NY,Ammonia,3B3_Manure-swine,,TON,577.661 +NY,Ammonia,3B4_Manure-other,,TON,1141.18092 +NY,Ammonia,3B4_Manure-poultry,,TON,1167.986757 +NY,Ammonia,3B4d_Manure-goats,,TON,278.434332 +NY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,3679.002526 +NY,Ammonia,3F_Ag-res-on-field,,TON,18.364928 +NY,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.790920186 +NY,Ammonia,5B_Compost-biogas,Other_Fuel,TON,435.6417 +NY,Ammonia,5C_Incineration,biomass,TON,38.2365 +NY,Ammonia,5D1_Wastewater-domestic,,TON,43.20612272 +NY,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.01871 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,823850.6459 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,705579.4922 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,39846.28144 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3128952.216 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,54841.58085 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.84005562 +NY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,485554.095 +NY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,58237921.2 +NY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,568338.466 +NY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2807448.32 +NY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1997092.596 +NY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,288863.4776 +NY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,54081.084 +NY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3933341.317 +NY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,23440.55496 +NY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6010897.195 +NY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1482879.885 +NY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,352927.196 +NY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4720.402375 +NY,Carbon Dioxide,1A3c_Rail,light_oil,TON,209.776502 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,724761.0028 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,996923.9579 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,43988.20295 +NY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,122035.6922 +NY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1142941.528 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,655991.6575 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12597.95739 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.175247253 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,11343.9935 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,701656.612 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,244792.8952 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,806998.8324 +NY,Carbon Monoxide,11C_Other-natural,,TON,70709.37 +NY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,62.8909275 +NY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,188.9676807 +NY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,905.1458 +NY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,404.41585 +NY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,3.1641128 +NY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,19054.88292 +NY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,13.19565 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4116.591417 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17615.9098 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1059.548707 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4523.500582 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,119.252233 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,455.7551808 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,98.06537078 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,15.48912246 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4129.583604 +NY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,3.26 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,9948.073061 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,11238.12423 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.862731463 +NY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,14408.07366 +NY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,9586.14142 +NY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,699955.072 +NY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3881.36487 +NY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,41156.3294 +NY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,5229.866569 +NY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,16307.51765 +NY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,238.95424 +NY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6672.40789 +NY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1216.653328 +NY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11950.60168 +NY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,38786.10866 +NY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15871.2845 +NY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2173.755452 +NY,Carbon Monoxide,1A3c_Rail,light_oil,TON,48.00834335 +NY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1939.16768 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,817.8678947 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1723.107168 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.81884632 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,85.86299987 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.508689975 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13147.064 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3115.709553 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,206934.5046 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,936.5974084 +NY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,413.0180563 +NY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,271909.4899 +NY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,136717.7126 +NY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2066.610565 +NY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,70.55999765 +NY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,9403.512186 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2241.622933 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2980.058141 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.241044334 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,89.647206 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,93105.75929 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,485.5950789 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,93069.56054 +NY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,105.5456728 +NY,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +NY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,802.7786994 +NY,Carbon Monoxide,2A1_Cement-production,,TON,874.362 +NY,Carbon Monoxide,2A6_Other-minerals,,TON,553.93793 +NY,Carbon Monoxide,2B_Chemicals-other,,TON,0 +NY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,899.45575 +NY,Carbon Monoxide,2C3_Aluminum-production,,TON,15772.091 +NY,Carbon Monoxide,2C5_Lead-production,,TON,0 +NY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.384 +NY,Carbon Monoxide,2D3d_Coating-application,,TON,5.345343 +NY,Carbon Monoxide,2D3h_Printing,,TON,27.3435 +NY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,553.605 +NY,Carbon Monoxide,2H2_Food-and-beverage,,TON,1913.705343 +NY,Carbon Monoxide,2H3_Other-industrial-processes,,TON,0 +NY,Carbon Monoxide,3Dc_Other-farm,,TON,1.492 +NY,Carbon Monoxide,3F_Ag-res-on-field,,TON,139.51577 +NY,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,927.0113465 +NY,Carbon Monoxide,5C_Incineration,,TON,3.18279319 +NY,Carbon Monoxide,5C_Incineration,biomass,TON,666.8695601 +NY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,51623.7992 +NY,Carbon Monoxide,5C_Open-burning-residential,,TON,11396.5988 +NY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1241.232533 +NY,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,57.5865 +NY,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,8.646 +NY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.173 +NY,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,27.45571203 +NY,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,104.9742727 +NY,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,471.8022424 +NY,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,105.2992709 +NY,Methane,1A2g_Construction_and_Mining,light_oil,TON,43.64081734 +NY,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.599650622 +NY,Methane,1A3bii_Road-LDV,diesel_oil,TON,43.0445011 +NY,Methane,1A3bii_Road-LDV,light_oil,TON,2017.775285 +NY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,35.7194245 +NY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,142.906091 +NY,Methane,1A3biii_Road-bus,diesel_oil,TON,63.51569893 +NY,Methane,1A3biii_Road-bus,light_oil,TON,54.48772286 +NY,Methane,1A3biii_Road-bus,natural_gas,TON,297.39687 +NY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,283.5009408 +NY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.081627066 +NY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,252.3200615 +NY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,85.98463964 +NY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,36.8951213 +NY,Methane,1A3c_Rail,diesel_oil,TON,0.202683347 +NY,Methane,1A3c_Rail,light_oil,TON,0.158818894 +NY,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23.44159468 +NY,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,759.8422785 +NY,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,614.6221021 +NY,Methane,1A4bi_Residential-mobile,diesel_oil,TON,4.326815501 +NY,Methane,1A4bi_Residential-mobile,light_oil,TON,1212.125806 +NY,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.31401858 +NY,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,12.88626754 +NY,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.207469783 +NY,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.48860345 +NY,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,817.6446013 +NY,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.358691614 +NY,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,835.8031064 +NY,Nitrogen Oxides,11C_Other-natural,,TON,8620.8887 +NY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,85.882205 +NY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,660.3836932 +NY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,5849.554 +NY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,962.23305 +NY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,200.545528 +NY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,9417.303878 +NY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.7131 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4546.206382 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2337.492412 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,155.1206699 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1992.340164 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,768.5730082 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3080.762536 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,561.8822686 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,77.16431063 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5403.570708 +NY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,0.613 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,17962.00175 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,175.4423957 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.166017282 +NY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,7604.234061 +NY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1442.271699 +NY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,63578.535 +NY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2026.62013 +NY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4193.98118 +NY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,14965.0511 +NY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,1490.830612 +NY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,157.93804 +NY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,22079.25861 +NY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,133.316659 +NY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28561.77943 +NY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,4166.301106 +NY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,699.35995 +NY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,13392.87365 +NY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.631580913 +NY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11134.16749 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,308.0784259 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7511.62789 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,55.20205275 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,924.4051364 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,21.88551144 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15799.63357 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5688.283724 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3392.026479 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,237.3083981 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,968.2070299 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2991.019644 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2106.554696 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,7538.9883 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,257.4028375 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,23320.274 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4822.930929 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,60.34631945 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.053884988 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,97.481007 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1408.596708 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2566.070732 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,5874.41279 +NY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,80.57016643 +NY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.365 +NY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,556.0747401 +NY,Nitrogen Oxides,2A1_Cement-production,,TON,2450.052 +NY,Nitrogen Oxides,2A6_Other-minerals,,TON,2253.718925 +NY,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,519.620745 +NY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,546.531093 +NY,Nitrogen Oxides,2C3_Aluminum-production,,TON,146.196 +NY,Nitrogen Oxides,2C5_Lead-production,,TON,298.053 +NY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,1.648 +NY,Nitrogen Oxides,2D3d_Coating-application,,TON,4.915037 +NY,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.902 +NY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,953.305 +NY,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +NY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,9.83837 +NY,Nitrogen Oxides,3Dc_Other-farm,,TON,1.776 +NY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,4.605653 +NY,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,288.7945047 +NY,Nitrogen Oxides,5C_Incineration,,TON,11.74791392 +NY,Nitrogen Oxides,5C_Incineration,biomass,TON,4435.534659 +NY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1527.33017 +NY,Nitrogen Oxides,5C_Open-burning-residential,,TON,804.4659449 +NY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,55.16587099 +NY,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,12.705 +NY,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.1105 +NY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.206 +NY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.683736912 +NY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1704.718578 +NY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.20870083 +NY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,115.4597531 +NY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,4.926786752 +NY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,10.78073597 +NY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,4.9154589 +NY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.906208338 +NY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.578319723 +NY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.53393735 +NY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,55.07292714 +NY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.94573853 +NY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,3.602486008 +NY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,60.70957613 +NY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,217.8688432 +NY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,197.8954974 +NY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,4.730317106 +NY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,495.5924742 +NY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.462917 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3637.766046 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,51.72740065 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,984.8158211 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,135.8874653 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,7.087301116 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,244.2273853 +NY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.01171543 +NY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,74538.89704 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,673.1886447 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,473.1255914 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,53.60597076 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,91.84636019 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.178717357 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,95.47240916 +NY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,428.3 +NY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,14.33 +NY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,680.24 +NY,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.603140019 +NY,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +NY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.08478413 +NY,PM10 Filterable,2A1_Cement-production,,TON,776.8012382 +NY,PM10 Filterable,2A2_Lime-production,,TON,1.53927E-06 +NY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,33785.40133 +NY,PM10 Filterable,2A6_Other-minerals,,TON,6882.715288 +NY,PM10 Filterable,2B_Chemicals-other,,TON,55.03234948 +NY,PM10 Filterable,2C_Iron-steel-alloy,,TON,40.27209204 +NY,PM10 Filterable,2C3_Aluminum-production,,TON,200.338547 +NY,PM10 Filterable,2C5_Lead-production,,TON,2.72314876 +NY,PM10 Filterable,2C7_Other-metal,,TON,4.08346851 +NY,PM10 Filterable,2C7a_Copper-production,,TON,0.759 +NY,PM10 Filterable,2D3d_Coating-application,,TON,1.557641 +NY,PM10 Filterable,2D3e_Degreasing,,TON,0.00105 +NY,PM10 Filterable,2D3h_Printing,,TON,3.579938 +NY,PM10 Filterable,2H1_Pulp-and-paper,,TON,143.3928979 +NY,PM10 Filterable,2H2_Food-and-beverage,,TON,4837.576795 +NY,PM10 Filterable,2H3_Other-industrial-processes,,TON,81.77788244 +NY,PM10 Filterable,2I_Wood-processing,,TON,6.43 +NY,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,12209.48399 +NY,PM10 Filterable,3Dc_Other-farm,,TON,37067.33621 +NY,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,11.13378303 +NY,PM10 Filterable,5C_Incineration,,TON,0.010548925 +NY,PM10 Filterable,5C_Incineration,biomass,TON,21.60307782 +NY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,5192.92536 +NY,PM10 Filterable,5C_Open-burning-residential,,TON,3715.496372 +NY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,205.5421569 +NY,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.494515 +NY,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,2.08835335 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.811945056 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,64.49872972 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,238.0270401 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,224.813076 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,8.761071848 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,997.4987217 +NY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.71965 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,312.523783 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,75.47776368 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.96631916 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3761.460712 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,61.02210703 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1165.573808 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,154.3832801 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,9.363202011 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,441.6485019 +NY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.1015915 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1521.486455 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,84.96043197 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001755487 +NY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,351.7798546 +NY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,74538.89704 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,103.6858117 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,8422.99783 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,157.633318 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,383.211871 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,1148.48059 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,103.5227982 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,10.9249889 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1648.803558 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.092624289 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2705.628867 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,258.3428024 +NY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,55.2004991 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,415.4961893 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.026695877 +NY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,295.5569861 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,696.2566982 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,687.8536975 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,57.83217518 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,110.9790127 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.651751284 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,221.4402805 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,504.5662097 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,257.8368831 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.542173076 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,68.39530664 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1006.610268 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,18803.03249 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,983.706465 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,33.58656575 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1791.665337 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,387.5339657 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,14.81422507 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000274842 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,12.9045707 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,896.9972299 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,53.67443073 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,374.7896272 +NY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,9.561340566 +NY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +NY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23.94070854 +NY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,796.1433132 +NY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.000002 +NY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,33785.40133 +NY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6989.022704 +NY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,58.199004 +NY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,53.4250475 +NY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,345.3425345 +NY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,7.968435 +NY,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,4.1085743 +NY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.759 +NY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.343141 +NY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.00105 +NY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,3.579943 +NY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,208.7061929 +NY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4838.831109 +NY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,95.03537365 +NY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,6.43 +NY,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,12209.48399 +NY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,37067.33621 +NY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,25.37664 +NY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,35.66471085 +NY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.898258559 +NY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,27.10430889 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,5192.92536 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3715.496372 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,205.5421569 +NY,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,3.761 +NY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,2.10344335 +NY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0155 +NY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,1.021761839 +NY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,20.10642858 +NY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,65.30770546 +NY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,134.3086767 +NY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,2.71031891 +NY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,374.2591711 +NY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.384464 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2837.393372 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,40.00637715 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,227.7200088 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,112.7508071 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,5.791869473 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,211.943738 +NY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,2.82340448 +NY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13281.18611 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,573.7298742 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,430.8245494 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,20.48545515 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,38.65012718 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.906684217 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,71.37068199 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,202.21 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,6.65996641 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,680.24 +NY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.602225379 +NY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +NY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.08478413 +NY,PM2.5 Filterable,2A1_Cement-production,,TON,406.7698314 +NY,PM2.5 Filterable,2A2_Lime-production,,TON,5.39266E-07 +NY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3378.540133 +NY,PM2.5 Filterable,2A6_Other-minerals,,TON,1268.876036 +NY,PM2.5 Filterable,2B_Chemicals-other,,TON,25.75483876 +NY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,29.31580794 +NY,PM2.5 Filterable,2C3_Aluminum-production,,TON,121.4602351 +NY,PM2.5 Filterable,2C5_Lead-production,,TON,2.37455221 +NY,PM2.5 Filterable,2C7_Other-metal,,TON,3.67928472 +NY,PM2.5 Filterable,2C7a_Copper-production,,TON,0.759 +NY,PM2.5 Filterable,2D3d_Coating-application,,TON,1.320171305 +NY,PM2.5 Filterable,2D3e_Degreasing,,TON,0.000871277 +NY,PM2.5 Filterable,2D3h_Printing,,TON,3.04371868 +NY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,92.91244675 +NY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,4495.697023 +NY,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,46.05821754 +NY,PM2.5 Filterable,2I_Wood-processing,,TON,5.84424 +NY,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2507.310428 +NY,PM2.5 Filterable,3Dc_Other-farm,,TON,7413.459256 +NY,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,8.643767173 +NY,PM2.5 Filterable,5C_Incineration,,TON,0.007802466 +NY,PM2.5 Filterable,5C_Incineration,biomass,TON,15.68741442 +NY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4003.22528 +NY,PM2.5 Filterable,5C_Open-burning-residential,,TON,3402.614594 +NY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,158.4531411 +NY,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.494515 +NY,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,1.2720872 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.232030726 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,23.907938 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,85.51242352 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,65.67021285 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,6.732930146 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,872.5054948 +NY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.641197 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,303.011003 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,75.17512864 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.960306284 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2961.2205 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,48.70183328 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,408.3237619 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,131.2563022 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.068512051 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,398.0358061 +NY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,3.91328115 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1475.841853 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,78.21770123 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001755487 +NY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,315.0841281 +NY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13281.18611 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,59.88110444 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2622.905026 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,111.3400688 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,122.490883 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,815.0876316 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,61.26182014 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.2277229 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1096.450958 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.216356955 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1783.570459 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,96.46636599 +NY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.9652106 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,383.8935132 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.024613116 +NY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,283.7848382 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,596.7979618 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,645.5540949 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,24.71032672 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,57.78076332 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.37971029 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,195.8442988 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,489.4291289 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,237.9745111 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.542173076 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,66.34343428 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,926.1150653 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,18616.85862 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,757.619875 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,25.8672922 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1791.665337 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,375.9080256 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.6291942 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000274842 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,12.5174348 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,825.2421256 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,52.06423172 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,344.8065758 +NY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,9.549141136 +NY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +NY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23.94070854 +NY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,426.1121294 +NY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.000001 +NY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3378.540133 +NY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1375.183416 +NY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,28.92142325 +NY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,42.46871595 +NY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,28.65236265 +NY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,7.61983845 +NY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,3.580397 +NY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.759 +NY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,13.10567131 +NY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.000871277 +NY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,3.04371868 +NY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,151.7692608 +NY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4496.904607 +NY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,54.46811015 +NY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.84423 +NY,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2507.310428 +NY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,7413.459256 +NY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,15.688086 +NY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,32.12675654 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.934571818 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,21.14958578 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4003.22528 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3402.614594 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,158.4531411 +NY,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,3.761 +NY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.2871717 +NY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0155 +NY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,104.939831 +NY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,64.2656748 +NY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,12201.2015 +NY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,3568.0915 +NY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,2.34980795 +NY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,803.9089804 +NY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0058 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.24482509 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.137545246 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.325577652 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,293.7066309 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,254.7132147 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,12277.91294 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1251.883582 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,71.3913409 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,270.1963478 +NY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0055 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,19.08272901 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.80331391 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.29831E-05 +NY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,827.387388 +NY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.16659829 +NY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1265.780992 +NY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.94304839 +NY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,60.9274942 +NY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,17.3283913 +NY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,6.392766005 +NY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.28633193 +NY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,33.92242067 +NY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.516329211 +NY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,51.87087057 +NY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,32.55073562 +NY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.8051339 +NY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,7.57886957 +NY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003359362 +NY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,570.3716788 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,35.80841237 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4264.009939 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,92.94364802 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1813.20302 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,48.26628509 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,124.8542698 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.657999666 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14.78107408 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.246434945 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.787147007 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,18.24553646 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,444.2536341 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,88.037684 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,3.005856655 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,691.7051564 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.1455775 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.206111219 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.2119E-05 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.073696347 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,11.41543508 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.650234065 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,13.04003302 +NY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,3.93591831 +NY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +NY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,43.0391061 +NY,Sulfur Dioxide,2A1_Cement-production,,TON,4662.08 +NY,Sulfur Dioxide,2A6_Other-minerals,,TON,971.881725 +NY,Sulfur Dioxide,2B_Chemicals-other,,TON,205.552085 +NY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,724.043086 +NY,Sulfur Dioxide,2C3_Aluminum-production,,TON,2511.6535 +NY,Sulfur Dioxide,2C5_Lead-production,,TON,69.755 +NY,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.01 +NY,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0145 +NY,Sulfur Dioxide,2D3d_Coating-application,,TON,0.035247 +NY,Sulfur Dioxide,2D3h_Printing,,TON,0 +NY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,333.2365 +NY,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +NY,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0 +NY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.77077 +NY,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,359.0296551 +NY,Sulfur Dioxide,5C_Incineration,,TON,1.720353386 +NY,Sulfur Dioxide,5C_Incineration,biomass,TON,525.5824306 +NY,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,507.073825 +NY,Sulfur Dioxide,5C_Open-burning-residential,,TON,134.0776198 +NY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,11.91976911 +NY,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,9.485 +NY,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,5.7075 +NY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.002 +NY,Volatile Organic Compounds,11C_Other-natural,,TON,381551.211 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,10.9781694 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,26.8627341 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,62.6411 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,39.55636495 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.6678327 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,916.5827909 +NY,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,68.8017142 +NY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.0173934 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,438.6989158 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,505.4564336 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,103.0386193 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,126.7220965 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.95215123 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,18.73299275 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.671974286 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.776071376 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,679.2572529 +NY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.0475 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2000.313183 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,755.3092215 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.129622026 +NY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1632.406015 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,773.933599 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,57929.4848 +NY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,551.525309 +NY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3191.46316 +NY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,1263.055159 +NY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,871.9335998 +NY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,26.476005 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1744.117026 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,69.1814571 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3510.641148 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1949.239211 +NY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2460.96911 +NY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,675.3589609 +NY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.246124483 +NY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,207.0035 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,24.37079532 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,360.3053016 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.223441114 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,18.92765582 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.389493126 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1028.994448 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,716.4844661 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,7357.423292 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,132.8581976 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,96.54465472 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,17907.3346 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,19827.82048 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,140.5295045 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,4.7980809 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1297.949314 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,440.5455469 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,188.3432918 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.044847204 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.587651 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,30551.48669 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,130.4392667 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,24168.62738 +NY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,1513.607102 +NY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,24.3096565 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,834.1375216 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,428.5631755 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,24545.18365 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6236.543252 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,40.8018709 +NY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5223.428898 +NY,Volatile Organic Compounds,2A1_Cement-production,,TON,97.604 +NY,Volatile Organic Compounds,2A6_Other-minerals,,TON,71.49825935 +NY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1215.494172 +NY,Volatile Organic Compounds,2B_Chemicals-other,,TON,392.2586531 +NY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,137.728728 +NY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,71.133 +NY,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,40.82436 +NY,Volatile Organic Compounds,2C7a_Copper-production,,TON,5.2295 +NY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,87941.21529 +NY,Volatile Organic Compounds,2D3d_Coating-application,,TON,32155.34584 +NY,Volatile Organic Compounds,2D3e_Degreasing,,TON,9258.422933 +NY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,53.4761672 +NY,Volatile Organic Compounds,2D3h_Printing,,TON,36588.41412 +NY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +NY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3230.610893 +NY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,245.9989985 +NY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1028.015821 +NY,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,850.1595029 +NY,Volatile Organic Compounds,2I_Wood-processing,,TON,32.183 +NY,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,919.817 +NY,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,218.54 +NY,Volatile Organic Compounds,3B3_Manure-swine,,TON,46.381 +NY,Volatile Organic Compounds,3B4_Manure-poultry,,TON,76.715 +NY,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.0975 +NY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1394.560307 +NY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,8.71708 +NY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,454.6362372 +NY,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,3082.4899 +NY,Volatile Organic Compounds,5C_Incineration,,TON,0.953758463 +NY,Volatile Organic Compounds,5C_Incineration,biomass,TON,152.695584 +NY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3543.40849 +NY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,774.5717844 +NY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,231.4996474 +NY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,265.5945334 +NY,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,69.65364 +NY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.9375 +NY,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,10.023922 +OH,Ammonia,1A1a_Public-Electricity,biomass,TON,3.55 +OH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,5.5878537 +OH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,44.6066949 +OH,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,91.7969 +OH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,835.7516442 +OH,Ammonia,1A1b_Pet-refining,natural_gas,TON,56.824168 +OH,Ammonia,1A1c_Coke-ovens,natural_gas,TON,2.17 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.773666597 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.340960225 +OH,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,52.38083315 +OH,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.599764413 +OH,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.253132028 +OH,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.307911543 +OH,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,290.7636691 +OH,Ammonia,1A2c_Chemicals,natural_gas,TON,2.991283 +OH,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000004 +OH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,29.61720613 +OH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.421894987 +OH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,22.83414875 +OH,Ammonia,1A3bii_Road-LDV,light_oil,TON,3384.053898 +OH,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.32667668 +OH,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,153.2124378 +OH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.692629578 +OH,Ammonia,1A3biii_Road-bus,light_oil,TON,1.530651138 +OH,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.065131662 +OH,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,103.9877295 +OH,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.776964719 +OH,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,57.9810613 +OH,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,17.01055509 +OH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.4311958 +OH,Ammonia,1A3c_Rail,diesel_oil,TON,15.47018227 +OH,Ammonia,1A3c_Rail,light_oil,TON,0.006005373 +OH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.993289045 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.32735876 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.162030945 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.899945507 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.00224 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.082336475 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,46.49091598 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.333377807 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.803116129 +OH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.424925791 +OH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,15.53673733 +OH,Ammonia,1A4bi_Residential-stationary,biomass,TON,749.3675871 +OH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,29.441995 +OH,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.92374951 +OH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3210.061354 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.45920649 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.356814611 +OH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.055130728 +OH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.665057929 +OH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.50561726 +OH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.221003428 +OH,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1646 +OH,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.197454 +OH,Ammonia,2A1_Cement-production,,TON,73.921 +OH,Ammonia,2A2_Lime-production,Other_Fuel,TON,2.93 +OH,Ammonia,2A6_Other-minerals,,TON,219.7130613 +OH,Ammonia,2B_Chemicals-other,,TON,2234.5946 +OH,Ammonia,2C_Iron-steel-alloy,,TON,80.45749031 +OH,Ammonia,2C3_Aluminum-production,,TON,5.537 +OH,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.136 +OH,Ammonia,2D3d_Coating-application,,TON,1.1201305 +OH,Ammonia,2D3h_Printing,,TON,4.546135 +OH,Ammonia,2H1_Pulp-and-paper,,TON,41.998512 +OH,Ammonia,2H2_Food-and-beverage,,TON,29.26 +OH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,211.84915 +OH,Ammonia,3B1a_Cattle-dairy,,TON,6233.911 +OH,Ammonia,3B1b_Cattle-non-dairy,,TON,6298.492 +OH,Ammonia,3B2_Manure-sheep,,TON,429.78804 +OH,Ammonia,3B3_Manure-swine,,TON,22664.323 +OH,Ammonia,3B4_Manure-other,,TON,1601.6088 +OH,Ammonia,3B4_Manure-poultry,,TON,7925.083436 +OH,Ammonia,3B4d_Manure-goats,,TON,484.88748 +OH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,11600.0917 +OH,Ammonia,3Dc_Other-farm,,TON,0.2 +OH,Ammonia,3F_Ag-res-on-field,,TON,22.08941 +OH,Ammonia,5A_Solid-waste-disposal,,TON,32.0020975 +OH,Ammonia,5B_Compost-biogas,Other_Fuel,TON,274.0646 +OH,Ammonia,5C_Incineration,biomass,TON,0.02449 +OH,Ammonia,5D1_Wastewater-domestic,,TON,45.94418294 +OH,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,11.5911063 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,834349.1191 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,943573.7547 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,53198.77731 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3647757.56 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,121738.8688 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,16.07129817 +OH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,817084.6021 +OH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,46172328.27 +OH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,185513.564 +OH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2420605.416 +OH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,375753.9 +OH,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,46904.85253 +OH,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2686.03294 +OH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7020799.754 +OH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,70328.22453 +OH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3585111.252 +OH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,481504.4737 +OH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,188896.649 +OH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,10574.22684 +OH,Carbon Dioxide,1A3c_Rail,light_oil,TON,469.0044105 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,286885.8952 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,407134.7028 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17590.85723 +OH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,175338.9266 +OH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1155551.947 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1656704.65 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,26791.24496 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.643693227 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6758.2944 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,385753.5558 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,185404.5017 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,449980.7572 +OH,Carbon Monoxide,11C_Other-natural,,TON,52709.344 +OH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,68.62 +OH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,65.80062731 +OH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,17970.6285 +OH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,32.3 +OH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2453.80531 +OH,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,2.843797395 +OH,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2509.951658 +OH,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,419.582 +OH,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,76.6974 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2574.391799 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23036.17956 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1381.155887 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4896.563003 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,36.37082924 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1917.137452 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,25.75672642 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,44701.48316 +OH,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,349.76798 +OH,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000025 +OH,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.23 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,8834.836229 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,19789.85465 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.836160433 +OH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11855.15239 +OH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,10322.88143 +OH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,785722.0547 +OH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1747.03079 +OH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,49467.64966 +OH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1108.837932 +OH,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2383.409778 +OH,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,20.8768093 +OH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11635.64962 +OH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1249.997246 +OH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5424.46711 +OH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11605.80881 +OH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8177.55234 +OH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,4987.165521 +OH,Carbon Monoxide,1A3c_Rail,light_oil,TON,106.330923 +OH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,950.7473099 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,908.3915692 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,296.5939216 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,424.6754841 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.015232827 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.580500013 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7973.242119 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1326.583523 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,83514.70919 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,397.8910477 +OH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,593.4156743 +OH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,269323.037 +OH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,119689.4607 +OH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,147.210046 +OH,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,9.61875111 +OH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,6769.582534 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5764.597387 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5834.957159 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.625391349 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,53.407594 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,64882.16346 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,366.8647736 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,51130.61097 +OH,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1327.22735 +OH,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,4.6404 +OH,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2185.016876 +OH,Carbon Monoxide,2A1_Cement-production,,TON,593.36 +OH,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,3684.73 +OH,Carbon Monoxide,2A6_Other-minerals,,TON,3112.536456 +OH,Carbon Monoxide,2B_Chemicals-other,,TON,47196.83544 +OH,Carbon Monoxide,2C_Iron-steel-alloy,,TON,59015.7298 +OH,Carbon Monoxide,2C3_Aluminum-production,,TON,43.6402 +OH,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,165.7701 +OH,Carbon Monoxide,2C7a_Copper-production,,TON,2.921 +OH,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,19.185 +OH,Carbon Monoxide,2D3d_Coating-application,,TON,72.77886 +OH,Carbon Monoxide,2D3h_Printing,,TON,13.36608 +OH,Carbon Monoxide,2H1_Pulp-and-paper,,TON,697.84694 +OH,Carbon Monoxide,2H2_Food-and-beverage,,TON,1442.017047 +OH,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,160.2471 +OH,Carbon Monoxide,3Dc_Other-farm,,TON,18.27 +OH,Carbon Monoxide,3F_Ag-res-on-field,,TON,240.23623 +OH,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1505.292822 +OH,Carbon Monoxide,5C_Incineration,,TON,1.260936685 +OH,Carbon Monoxide,5C_Incineration,biomass,TON,260.5185359 +OH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,49457.60085 +OH,Carbon Monoxide,5C_Open-burning-residential,,TON,12400.3582 +OH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1164.22423 +OH,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,47.7702 +OH,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.00007465 +OH,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.87246491 +OH,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,140.2827861 +OH,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,630.0669762 +OH,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,118.2758471 +OH,Methane,1A2g_Construction_and_Mining,light_oil,TON,72.31757548 +OH,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.53916415 +OH,Methane,1A3bii_Road-LDV,diesel_oil,TON,48.8313598 +OH,Methane,1A3bii_Road-LDV,light_oil,TON,2321.920646 +OH,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.50229116 +OH,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,166.3140658 +OH,Methane,1A3biii_Road-bus,diesel_oil,TON,17.30410276 +OH,Methane,1A3biii_Road-bus,light_oil,TON,5.650293115 +OH,Methane,1A3biii_Road-bus,natural_gas,TON,16.33674814 +OH,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,368.3627967 +OH,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.57065564 +OH,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,127.0167607 +OH,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,23.5737104 +OH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.51738 +OH,Methane,1A3c_Rail,diesel_oil,TON,0.453751744 +OH,Methane,1A3c_Rail,light_oil,TON,0.351393358 +OH,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,9.17344069 +OH,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,314.5727502 +OH,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,268.7292395 +OH,Methane,1A4bi_Residential-mobile,diesel_oil,TON,6.216633962 +OH,Methane,1A4bi_Residential-mobile,light_oil,TON,1179.723176 +OH,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,46.13110816 +OH,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,26.14461073 +OH,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.538281961 +OH,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.2910757 +OH,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,576.1041585 +OH,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.806987139 +OH,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,430.3361691 +OH,Nitrogen Oxides,11C_Other-natural,,TON,16903.1373 +OH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,70.13 +OH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,443.01964 +OH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,86370.03 +OH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,567.1 +OH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2002.8592 +OH,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,1.219627552 +OH,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2637.105922 +OH,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,1714.46 +OH,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,21.551 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4186.556987 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3075.472407 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,203.466445 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1736.927127 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,144.0637832 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,5930.712607 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,232.8030414 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,21519.27779 +OH,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,218.45556 +OH,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.8000012 +OH,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.14 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,18094.57749 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,313.4320886 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.149627308 +OH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1612.738262 +OH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2998.432055 +OH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,87614.33677 +OH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,746.204339 +OH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5367.329912 +OH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2450.033865 +OH,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,170.6530769 +OH,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,10.6471478 +OH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,40507.89515 +OH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,139.3470811 +OH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15226.51042 +OH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1041.619278 +OH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,389.569658 +OH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,29200.1504 +OH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.413088464 +OH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8106.916833 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,340.5075338 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1245.633998 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,705.5330955 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.154466445 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.993411823 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10352.92116 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2388.875492 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1469.235896 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,102.7311227 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1391.079371 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2945.934323 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1719.79616 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,529.95601 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,34.6274842 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,16329.89357 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12377.67444 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,135.4842628 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.139804981 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,58.077084 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,827.8822162 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1944.441894 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3507.460847 +OH,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,3721.940156 +OH,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,5.6358 +OH,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1481.662933 +OH,Nitrogen Oxides,2A1_Cement-production,,TON,1272.7 +OH,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,6530.09 +OH,Nitrogen Oxides,2A6_Other-minerals,,TON,3098.60376 +OH,Nitrogen Oxides,2B_Chemicals-other,,TON,1534.675121 +OH,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3228.404247 +OH,Nitrogen Oxides,2C3_Aluminum-production,,TON,47.37997 +OH,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,595.4497 +OH,Nitrogen Oxides,2C7a_Copper-production,,TON,12.4692 +OH,Nitrogen Oxides,2D3d_Coating-application,,TON,76.51463 +OH,Nitrogen Oxides,2D3h_Printing,,TON,19.8298 +OH,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,528.999 +OH,Nitrogen Oxides,2H2_Food-and-beverage,,TON,63.9232 +OH,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,217.5136 +OH,Nitrogen Oxides,3Dc_Other-farm,,TON,30.99 +OH,Nitrogen Oxides,3F_Ag-res-on-field,,TON,6.160244 +OH,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,231.26 +OH,Nitrogen Oxides,5C_Incineration,,TON,12.10255881 +OH,Nitrogen Oxides,5C_Incineration,biomass,TON,446.2191449 +OH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1463.242852 +OH,Nitrogen Oxides,5C_Open-burning-residential,,TON,875.3197 +OH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,51.7433124 +OH,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,5.9772 +OH,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.00004479 +OH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.403754881 +OH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1788.726984 +OH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.665643654 +OH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,124.4353704 +OH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.00131164 +OH,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.994184213 +OH,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.338553999 +OH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.426086495 +OH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.697725266 +OH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.80521686 +OH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.21869871 +OH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.69521052 +OH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,9.05 +OH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,11.13663291 +OH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4415.89504 +OH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,118 +OH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,302.9940574 +OH,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,564.680055 +OH,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,113.7347 +OH,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.9079 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3543.502019 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.421060095 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,360.6794181 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,21.92145028 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,695.0812636 +OH,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,16.224153 +OH,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000005 +OH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,343902.1063 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,705.4184271 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,103.5455785 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,431.0444355 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000168524 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.124647644 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,81.19720192 +OH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,31.7973645 +OH,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.07765041 +OH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,33.84513927 +OH,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,137.1312476 +OH,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1034 +OH,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13.87583152 +OH,PM10 Filterable,2A1_Cement-production,,TON,81.3381 +OH,PM10 Filterable,2A2_Lime-production,,TON,485.29231 +OH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,45645.57961 +OH,PM10 Filterable,2A6_Other-minerals,,TON,11030.68592 +OH,PM10 Filterable,2B_Chemicals-other,,TON,402.5225451 +OH,PM10 Filterable,2C_Iron-steel-alloy,,TON,2696.010565 +OH,PM10 Filterable,2C3_Aluminum-production,,TON,151.273 +OH,PM10 Filterable,2C6_Zinc-production,,TON,2.1667 +OH,PM10 Filterable,2C7_Other-metal,,TON,441.1627739 +OH,PM10 Filterable,2C7a_Copper-production,,TON,48.3432 +OH,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,31.314 +OH,PM10 Filterable,2D3d_Coating-application,,TON,100.2302542 +OH,PM10 Filterable,2D3h_Printing,,TON,0.7242 +OH,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,6.9858 +OH,PM10 Filterable,2H1_Pulp-and-paper,,TON,243.452243 +OH,PM10 Filterable,2H2_Food-and-beverage,,TON,538.5035529 +OH,PM10 Filterable,2H3_Other-industrial-processes,,TON,345.52413 +OH,PM10 Filterable,2I_Wood-processing,,TON,1.1128 +OH,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,15953.80534 +OH,PM10 Filterable,3Dc_Other-farm,,TON,151068.899 +OH,PM10 Filterable,5A_Solid-waste-disposal,,TON,392.5953015 +OH,PM10 Filterable,5C_Incineration,,TON,0.372127498 +OH,PM10 Filterable,5C_Incineration,biomass,TON,14.84076871 +OH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4975.025631 +OH,PM10 Filterable,5C_Open-burning-residential,,TON,4042.7417 +OH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,192.789997 +OH,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.8138 +OH,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.4336 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,16.88956 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,26.98780603 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,20542.48144 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,247.3 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,761.4031229 +OH,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,954.525685 +OH,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,307.0691 +OH,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,3.361957 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,309.4081238 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,98.91451487 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.487822359 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3692.272453 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,12.56974935 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,830.1087724 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,31.02823592 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1438.606157 +OH,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,39.540123 +OH,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.000000115 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1365.600273 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,132.9460216 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001921239 +OH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,300.8394597 +OH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,343902.1063 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,184.6789466 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5977.286518 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,55.6174812 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,315.2446639 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,175.9314556 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.716233832 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.495747378 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2585.296988 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,9.10945696 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1183.799174 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,68.80809471 +OH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.691457 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,930.1220523 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.059680461 +OH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,201.5529909 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,715.9135222 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,107.4691198 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,506.1503147 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.004937194 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.273747609 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,225.7341723 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,219.570395 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,104.698615 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.218749099 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,98.49347458 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1148.197195 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,17458.08486 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,70.07197 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.57852614 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,87.9973263 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,997.9325747 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.73306112 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000713079 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.69534 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,563.5719997 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.78527668 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,163.6695358 +OH,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,139.8942223 +OH,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1034 +OH,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,26.26559526 +OH,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,130.205058 +OH,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,975.454071 +OH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,45645.57961 +OH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,11735.03288 +OH,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,496.6278289 +OH,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4986.238367 +OH,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,286.962 +OH,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,8.88358 +OH,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,467.8265296 +OH,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,62.082596 +OH,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,70.8328 +OH,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,127.5972536 +OH,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,1.4984 +OH,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,18.2878 +OH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,294.231078 +OH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3969.477557 +OH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,404.44296 +OH,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,1.1128 +OH,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,15953.80534 +OH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,151071.5459 +OH,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,40.741532 +OH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,514.1460215 +OH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.694063323 +OH,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.85761149 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4975.025631 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4042.7417 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,192.789997 +OH,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.997172 +OH,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.581053 +OH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,4.52355 +OH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,8.44323346 +OH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2209.66678 +OH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,52.62 +OH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,301.393778 +OH,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,523.8515135 +OH,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,112.2008 +OH,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.5143 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3047.341185 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.348603969 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,232.6826461 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.25760647 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,628.1204269 +OH,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,15.290778 +OH,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.9E-09 +OH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,37761.5561 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,656.5841248 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,111.3826344 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,63.32368399 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.76745E-05 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.103726561 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,71.97055419 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,24.43686905 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.59671255 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,18.61482592 +OH,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,133.4093053 +OH,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1034 +OH,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.99729952 +OH,PM2.5 Filterable,2A1_Cement-production,,TON,37.540847 +OH,PM2.5 Filterable,2A2_Lime-production,,TON,258.3052336 +OH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4574.475761 +OH,PM2.5 Filterable,2A6_Other-minerals,,TON,2436.486205 +OH,PM2.5 Filterable,2B_Chemicals-other,,TON,312.6907725 +OH,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1927.927309 +OH,PM2.5 Filterable,2C3_Aluminum-production,,TON,143.485445 +OH,PM2.5 Filterable,2C6_Zinc-production,,TON,1.963896 +OH,PM2.5 Filterable,2C7_Other-metal,,TON,285.3593645 +OH,PM2.5 Filterable,2C7a_Copper-production,,TON,27.273 +OH,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,14.141 +OH,PM2.5 Filterable,2D3d_Coating-application,,TON,88.14010181 +OH,PM2.5 Filterable,2D3h_Printing,,TON,0.5973 +OH,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,6.9858 +OH,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,173.5910602 +OH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,143.4564855 +OH,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,281.9603841 +OH,PM2.5 Filterable,2I_Wood-processing,,TON,0.9466 +OH,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2766.948748 +OH,PM2.5 Filterable,3Dc_Other-farm,,TON,30254.67027 +OH,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,145.4042161 +OH,PM2.5 Filterable,5C_Incineration,,TON,0.376054705 +OH,PM2.5 Filterable,5C_Incineration,biomass,TON,14.0833785 +OH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3835.247989 +OH,PM2.5 Filterable,5C_Open-burning-residential,,TON,3702.3005 +OH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,148.622513 +OH,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.8138 +OH,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.4336 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,12.36311 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,24.29440628 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,18336.25318 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,181.92 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,759.8028385 +OH,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,913.6971435 +OH,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,305.5352 +OH,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.968357 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,300.0914461 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,98.60566777 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.486502349 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3196.732524 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,11.49786774 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,701.744837 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,23.35361867 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1370.429867 +OH,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,38.606748 +OH,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.89E-08 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1324.631914 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,122.4445257 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001921239 +OH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,250.6343739 +OH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,37761.5561 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,133.3286085 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2299.380982 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,42.1194359 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,124.7872805 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,126.9599512 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.670682944 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.186700289 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1863.045111 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.846498317 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,791.022491 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,23.86379391 +OH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.4691269 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,858.7828912 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.05502507 +OH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,185.4286757 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,652.3651287 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,112.5215079 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,149.9211907 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.005087216 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.258561884 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,222.5098276 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,212.9832713 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,96.67036116 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.218749099 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,95.53868852 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1056.389506 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,17298.11615 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,62.7114445 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.09758668 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,72.76701151 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,967.9945226 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.79465757 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000713079 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,7.4644747 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,518.4884911 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,39.56169908 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,150.5760287 +OH,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,136.1817119 +OH,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1034 +OH,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,24.38706326 +OH,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,86.4078054 +OH,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,748.4670347 +OH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4574.475761 +OH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3140.833165 +OH,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,406.7960664 +OH,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4218.154335 +OH,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,279.17445 +OH,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,8.68078 +OH,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,312.02314 +OH,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,41.012396 +OH,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,53.6598 +OH,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,115.5071012 +OH,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,1.3715 +OH,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,18.2878 +OH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,224.3698924 +OH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3574.431798 +OH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,340.8792141 +OH,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.9466 +OH,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2766.948748 +OH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,30257.31726 +OH,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,29.512088 +OH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,266.9549661 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.696591656 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,24.10161515 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3835.247989 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3702.3005 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,148.622513 +OH,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.997172 +OH,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.581053 +OH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,12.501 +OH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,101.024526 +OH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,302243.2 +OH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,2002 +OH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,171.8472298 +OH,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1954.522803 +OH,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,2134.729 +OH,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0534 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.63429224 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.349016672 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.323502826 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,229.2712823 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,28.45886946 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,38209.63809 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,84.10801468 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1777.291449 +OH,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,6.5360114 +OH,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.02000375 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,39.50302641 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.006125114 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.99085E-05 +OH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,209.527067 +OH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.142573053 +OH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,739.3766995 +OH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.61916366 +OH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,38.77426891 +OH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.26496303 +OH,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.750642451 +OH,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.014221179 +OH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,60.81091339 +OH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.125549497 +OH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.81223669 +OH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.706065921 +OH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.02278049 +OH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,17.45596838 +OH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008350799 +OH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.12210671 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,36.26606263 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,164.0050317 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3331.773529 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.219809753 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.384663607 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,63.8522144 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.401395088 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.819464343 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.098540481 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.056291416 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,20.97888324 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,443.5978727 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1254.229535 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,81.9517636 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,101.5354095 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19.08795644 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.487977839 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.14428E-05 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.079827679 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,7.00479275 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.908509622 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.193418176 +OH,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,114.2301577 +OH,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0789 +OH,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,844.6699796 +OH,Sulfur Dioxide,2A1_Cement-production,,TON,1070.2 +OH,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,7822.76 +OH,Sulfur Dioxide,2A6_Other-minerals,,TON,2964.92306 +OH,Sulfur Dioxide,2B_Chemicals-other,,TON,1970.101847 +OH,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,3431.118542 +OH,Sulfur Dioxide,2C3_Aluminum-production,,TON,7.04323 +OH,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,809.564434 +OH,Sulfur Dioxide,2C7a_Copper-production,,TON,129.46 +OH,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,2.5226 +OH,Sulfur Dioxide,2D3d_Coating-application,,TON,0.3261704 +OH,Sulfur Dioxide,2D3h_Printing,,TON,0.103704 +OH,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,196.591626 +OH,Sulfur Dioxide,2H2_Food-and-beverage,,TON,71.6046055 +OH,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,14.964302 +OH,Sulfur Dioxide,3Dc_Other-farm,,TON,21.036 +OH,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.2109984 +OH,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,598.159 +OH,Sulfur Dioxide,5C_Incineration,,TON,0.074634776 +OH,Sulfur Dioxide,5C_Incineration,biomass,TON,102.5310592 +OH,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,485.7967935 +OH,Sulfur Dioxide,5C_Open-burning-residential,,TON,145.886563 +OH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,11.18024919 +OH,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,39.798 +OH,Volatile Organic Compounds,11C_Other-natural,,TON,295523.09 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,22.4 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,8.724102858 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1139.60089 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,10.4 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,238.034854 +OH,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,19.1970302 +OH,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,78.89801112 +OH,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1617.961446 +OH,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,64.0122 +OH,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,28.875575 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,391.0529431 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,660.164472 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,136.447032 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,158.3845056 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.642970732 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,30.75723156 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.695481677 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1561.27408 +OH,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,18.103223 +OH,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000001 +OH,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.06 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1778.38642 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1178.818051 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.116546982 +OH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,731.3011113 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1145.045806 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,69742.37672 +OH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,230.273546 +OH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4026.166398 +OH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,221.8385542 +OH,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,115.8153022 +OH,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.10597115 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2728.419544 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,43.86482221 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1239.162177 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,502.846558 +OH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1326.88042 +OH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1501.014375 +OH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.80206361 +OH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,136.2192014 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,29.28658287 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,111.4465479 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.95555851 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.005388581 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043014877 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,603.0989956 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,308.0535505 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3119.918692 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,58.08916783 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,138.7115784 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,18175.08717 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,17960.8346 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,20.60940485 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.34662495 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,930.741753 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1129.741792 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,273.0223706 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.116356414 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.0520621 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,18175.56279 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,98.45309754 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10781.93879 +OH,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,8250.676532 +OH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1158.730981 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,737.0473883 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,600.1788088 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1660.425554 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,10495.2947 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,77.56 +OH,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6754.197418 +OH,Volatile Organic Compounds,2A1_Cement-production,,TON,11.524 +OH,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,36.64 +OH,Volatile Organic Compounds,2A6_Other-minerals,,TON,187.7789826 +OH,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1836.640938 +OH,Volatile Organic Compounds,2B_Chemicals-other,,TON,5077.289747 +OH,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,2192.305807 +OH,Volatile Organic Compounds,2C3_Aluminum-production,,TON,288.8983 +OH,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,349.49567 +OH,Volatile Organic Compounds,2C7a_Copper-production,,TON,25.65 +OH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,51668.98879 +OH,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,78.49 +OH,Volatile Organic Compounds,2D3d_Coating-application,,TON,41282.02815 +OH,Volatile Organic Compounds,2D3e_Degreasing,,TON,10658.98561 +OH,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,39.16 +OH,Volatile Organic Compounds,2D3h_Printing,,TON,32488.80805 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1340.881512 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,1.742691437 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2282.481006 +OH,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,343.716378 +OH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2869.633592 +OH,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1477.005984 +OH,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,0.063034521 +OH,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,500.548 +OH,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,505.731 +OH,Volatile Organic Compounds,3B3_Manure-swine,,TON,1819.797 +OH,Volatile Organic Compounds,3B4_Manure-poultry,,TON,633.561 +OH,Volatile Organic Compounds,3Dc_Other-farm,,TON,71.0144 +OH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3224.017938 +OH,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,14.458354 +OH,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,517.3641 +OH,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1939.2165 +OH,Volatile Organic Compounds,5C_Incineration,,TON,0.374280687 +OH,Volatile Organic Compounds,5C_Incineration,biomass,TON,12.28735031 +OH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3394.723745 +OH,Volatile Organic Compounds,5C_Open-burning-residential,,TON,842.79231 +OH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,217.137124 +OH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,229.7032088 +OH,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,183.8922275 +OH,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.94 +OK,Ammonia,1A1a_Public-Electricity,hard_coal,TON,270.5383 +OK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,396.3880507 +OK,Ammonia,1A1b_Pet-refining,natural_gas,TON,19.208 +OK,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.13 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.41094652 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.303733378 +OK,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,30.59604729 +OK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.638416807 +OK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,6 +OK,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.559105744 +OK,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.032340028 +OK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,4.143851164 +OK,Ammonia,1A2c_Chemicals,natural_gas,TON,75.97 +OK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,6.421192396 +OK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.165486518 +OK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,24.04367094 +OK,Ammonia,1A3bii_Road-LDV,light_oil,TON,1269.658935 +OK,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.47029524 +OK,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,94.85853716 +OK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,4.162115201 +OK,Ammonia,1A3biii_Road-bus,light_oil,TON,1.922473948 +OK,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.00741012 +OK,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,95.64476154 +OK,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,20.10357362 +OK,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,64.1516558 +OK,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.681957322 +OK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.82097883 +OK,Ammonia,1A3c_Rail,diesel_oil,TON,9.612604042 +OK,Ammonia,1A3c_Rail,light_oil,TON,0.003651186 +OK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.169125779 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.874998915 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016800002 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.10326876 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.799761325 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.615838069 +OK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.397810437 +OK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.379620219 +OK,Ammonia,1A4bi_Residential-stationary,biomass,TON,67.14089839 +OK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.084000032 +OK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.04050001 +OK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,692.2914229 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.36320085 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.280388068 +OK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016861442 +OK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.489865085 +OK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.50272678 +OK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.865450576 +OK,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.001 +OK,Ammonia,2A1_Cement-production,,TON,20.945 +OK,Ammonia,2A6_Other-minerals,,TON,1.491 +OK,Ammonia,2B_Chemicals-other,,TON,2400.001 +OK,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.461 +OK,Ammonia,2D3h_Printing,,TON,0.026 +OK,Ammonia,2H1_Pulp-and-paper,,TON,9.79 +OK,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,74.125125 +OK,Ammonia,3B1a_Cattle-dairy,,TON,1289.446 +OK,Ammonia,3B1b_Cattle-non-dairy,,TON,23446.128 +OK,Ammonia,3B2_Manure-sheep,,TON,266.159916 +OK,Ammonia,3B3_Manure-swine,,TON,33305.996 +OK,Ammonia,3B4_Manure-other,,TON,2226.6816 +OK,Ammonia,3B4_Manure-poultry,,TON,6745.328978 +OK,Ammonia,3B4d_Manure-goats,,TON,873.22092 +OK,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,27079.41355 +OK,Ammonia,3F_Ag-res-on-field,,TON,4266.387572 +OK,Ammonia,5B_Compost-biogas,Other_Fuel,TON,82.67968 +OK,Ammonia,5D1_Wastewater-domestic,,TON,10.18377899 +OK,Ammonia,5D2_Wastewater-industrial,biomass,TON,12.131 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,172190.9232 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,162245.4541 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9155.476231 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,790500.3974 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,13846.5831 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.047291803 +OK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,832327.9119 +OK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,16937315.37 +OK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,153389.6029 +OK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1774615.903 +OK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,276560.5639 +OK,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,62398.15251 +OK,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,313.9411 +OK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4884376.498 +OK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,472812.9855 +OK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3916691.5 +OK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,179965.0076 +OK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,119844.238 +OK,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6435.37973 +OK,Carbon Dioxide,1A3c_Rail,light_oil,TON,285.3661692 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,98354.34629 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,135283.0814 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5946.546379 +OK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,48950.8414 +OK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,327249.5954 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1275618.738 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,21017.09647 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.35072781 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2066.9855 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,100182.4492 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,61906.48204 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,204090.134 +OK,Carbon Monoxide,11C_Other-natural,,TON,160218.569 +OK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.127 +OK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,11985.025 +OK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2972.385 +OK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1426.217 +OK,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.007 +OK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1263.731 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,633.1253912 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3994.090422 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,239.2396889 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,6644.545878 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.12684755 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,30.4713755 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.03044609 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.61396319 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,45842.41931 +OK,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,40.247 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2515.237002 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2861.989228 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.235290477 +OK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7096.484046 +OK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11103.59546 +OK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,350481.216 +OK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1428.34742 +OK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26677.10042 +OK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,685.3571592 +OK,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2995.47824 +OK,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.582577 +OK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8666.054021 +OK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,11078.80054 +OK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4614.50518 +OK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6017.11526 +OK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4915.60893 +OK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3096.951985 +OK,Carbon Monoxide,1A3c_Rail,light_oil,TON,65.90524931 +OK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,67.14081847 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,225.0181076 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.641293078 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.220817809 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2032.347426 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,422.8318501 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,28452.95235 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,126.8178303 +OK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,166.3276293 +OK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,75002.61675 +OK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,11959.92219 +OK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.420000011 +OK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.202499822 +OK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1527.513065 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4430.426493 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4690.819765 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.482114341 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.33877 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,18658.61433 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,122.8039905 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,23452.76634 +OK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,36315.1736 +OK,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,104.482 +OK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,47134.31694 +OK,Carbon Monoxide,2A1_Cement-production,,TON,2738.22 +OK,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,91.49 +OK,Carbon Monoxide,2A6_Other-minerals,,TON,686.43 +OK,Carbon Monoxide,2B_Chemicals-other,,TON,1774.488 +OK,Carbon Monoxide,2C_Iron-steel-alloy,,TON,864.655 +OK,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.163 +OK,Carbon Monoxide,2C7a_Copper-production,,TON,282.58 +OK,Carbon Monoxide,2D3d_Coating-application,,TON,0.296 +OK,Carbon Monoxide,2H1_Pulp-and-paper,,TON,718.45 +OK,Carbon Monoxide,2H2_Food-and-beverage,,TON,445.9165211 +OK,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,9.17 +OK,Carbon Monoxide,3F_Ag-res-on-field,,TON,49457.33393 +OK,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,26.890526 +OK,Carbon Monoxide,5C_Incineration,,TON,19.78026728 +OK,Carbon Monoxide,5C_Incineration,biomass,TON,35.84184431 +OK,Carbon Monoxide,5C_Open-burning-dump,,TON,16.087 +OK,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.027 +OK,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,16474.4681 +OK,Carbon Monoxide,5C_Open-burning-residential,,TON,6277.2278 +OK,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,468.329274 +OK,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,2.594 +OK,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.678308918 +OK,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.09590568 +OK,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,108.4182742 +OK,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,26.62537943 +OK,Methane,1A2g_Construction_and_Mining,light_oil,TON,10.88140354 +OK,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.163540973 +OK,Methane,1A3bii_Road-LDV,diesel_oil,TON,36.74684391 +OK,Methane,1A3bii_Road-LDV,light_oil,TON,912.5920357 +OK,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.70718292 +OK,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,108.1825316 +OK,Methane,1A3biii_Road-bus,diesel_oil,TON,6.212707568 +OK,Methane,1A3biii_Road-bus,light_oil,TON,6.649473305 +OK,Methane,1A3biii_Road-bus,natural_gas,TON,2.204027 +OK,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,370.7158056 +OK,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,17.93873048 +OK,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,101.5691545 +OK,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,13.26228063 +OK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.14499545 +OK,Methane,1A3c_Rail,diesel_oil,TON,0.276110314 +OK,Methane,1A3c_Rail,light_oil,TON,0.209213856 +OK,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.18120661 +OK,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,101.5497369 +OK,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,83.27392276 +OK,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.744446505 +OK,Methane,1A4bi_Residential-mobile,light_oil,TON,308.1932722 +OK,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,35.5292238 +OK,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,20.44375279 +OK,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.414961745 +OK,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.08900121 +OK,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,178.2414742 +OK,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.608069588 +OK,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,210.9661335 +OK,Nitrogen Oxides,11C_Other-natural,,TON,37854.144 +OK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,46.057 +OK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,30121.47 +OK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,9429.088 +OK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2875.331 +OK,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.008 +OK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,743.504 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,912.5953234 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,529.4335362 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.16869802 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1535.180621 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,101.2437803 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1622.920129 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,176.283815 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,61.29829487 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,63491.22488 +OK,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,190.896 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4539.663177 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,42.10489097 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045277398 +OK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3406.043606 +OK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3113.831134 +OK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,40648.01661 +OK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,488.632058 +OK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2770.537917 +OK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1967.779171 +OK,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,291.9590239 +OK,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.336311 +OK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,26401.4665 +OK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,1371.423239 +OK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14242.00973 +OK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,531.8704855 +OK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,242.393674 +OK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,17964.42517 +OK,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.786219718 +OK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,347.3956247 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,82.50966396 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.0261696 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.595369129 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2478.554579 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,771.9552906 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,435.6662838 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32.14649384 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,388.1477982 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,783.0555252 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,216.9579848 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.51199941 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.728999905 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3761.999881 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9514.895962 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,99.35501147 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.107775704 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.769451 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,212.5869119 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,648.940811 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1470.081305 +OK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,38123.19762 +OK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,34.511 +OK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,35316.95424 +OK,Nitrogen Oxides,2A1_Cement-production,,TON,5208.97 +OK,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,274.28 +OK,Nitrogen Oxides,2A6_Other-minerals,,TON,1897.669 +OK,Nitrogen Oxides,2B_Chemicals-other,,TON,3277.423 +OK,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,54.22 +OK,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,12.679 +OK,Nitrogen Oxides,2C7a_Copper-production,,TON,8.04 +OK,Nitrogen Oxides,2D3d_Coating-application,,TON,0.282 +OK,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1417.102 +OK,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +OK,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,5.733 +OK,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1252.863979 +OK,Nitrogen Oxides,5C_Incineration,,TON,14.90665205 +OK,Nitrogen Oxides,5C_Incineration,biomass,TON,436.956577 +OK,Nitrogen Oxides,5C_Open-burning-dump,,TON,15.166 +OK,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.013 +OK,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,487.4101662 +OK,Nitrogen Oxides,5C_Open-burning-residential,,TON,443.098154 +OK,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,20.8146277 +OK,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.927 +OK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.413894349 +OK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,788.1627359 +OK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.526033454 +OK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,80.75927392 +OK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.569891202 +OK,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.25061918 +OK,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.0173013 +OK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.575960185 +OK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,14.45890157 +OK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.59979823 +OK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.0373504 +OK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.45609485 +OK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.564084017 +OK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3541.207 +OK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,295.22126 +OK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,524.4507407 +OK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,16.53917809 +OK,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.167183 +OK,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.00743037 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2417.107293 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.690127864 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,143.1187745 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,46.61600106 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.502644067 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,607.6244586 +OK,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,20.1807 +OK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,175729.2187 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,191.6147013 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.352916315 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.03375897 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.71978624 +OK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.09072004 +OK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.043740013 +OK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.636424694 +OK,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,974.9567019 +OK,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,52.592 +OK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,631.7241326 +OK,PM10 Filterable,2A1_Cement-production,,TON,476.7146598 +OK,PM10 Filterable,2A2_Lime-production,,TON,118.61128 +OK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,20291.72169 +OK,PM10 Filterable,2A6_Other-minerals,,TON,6838.940722 +OK,PM10 Filterable,2B_Chemicals-other,,TON,221.8529484 +OK,PM10 Filterable,2C_Iron-steel-alloy,,TON,104.7591885 +OK,PM10 Filterable,2C5_Lead-production,,TON,3.68474 +OK,PM10 Filterable,2C7_Other-metal,,TON,31.94637255 +OK,PM10 Filterable,2C7a_Copper-production,,TON,1.858 +OK,PM10 Filterable,2D3d_Coating-application,,TON,20.702 +OK,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,2.424 +OK,PM10 Filterable,2H1_Pulp-and-paper,,TON,269.0472376 +OK,PM10 Filterable,2H2_Food-and-beverage,,TON,286.4491086 +OK,PM10 Filterable,2H3_Other-industrial-processes,,TON,430.8151686 +OK,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,51674.072 +OK,PM10 Filterable,3Dc_Other-farm,,TON,147823.25 +OK,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,20.01 +OK,PM10 Filterable,5C_Incineration,,TON,2.6147 +OK,PM10 Filterable,5C_Incineration,biomass,TON,5.7511733 +OK,PM10 Filterable,5C_Open-burning-dump,,TON,256.621 +OK,PM10 Filterable,5C_Open-burning-industrial,,TON,0.0116292 +OK,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1657.195225 +OK,PM10 Filterable,5C_Open-burning-residential,,TON,2046.48987 +OK,PM10 Filterable,5C_Open-burning-yard-waste,,TON,77.553081 +OK,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.06490449 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.506 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3906.855 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,586.742 +OK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,701.1 +OK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.001 +OK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,44.265 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,64.72038573 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.09243589 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.121944302 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2503.815914 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,9.658890605 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,160.5551495 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,51.51499631 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.93499249 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1163.345462 +OK,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,47.085 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,386.4158746 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,21.44976729 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478768 +OK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,265.4844689 +OK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,175729.2187 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,183.7133406 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2009.816364 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.7157246 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,191.5309015 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,148.9278093 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,12.87480074 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.06135458 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1442.300164 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,53.98874475 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,871.170975 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,21.03768445 +OK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.08521168 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,573.1440927 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036300687 +OK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8.906192437 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,197.7139799 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.388544243 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.062350631 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.35417972 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,68.60668582 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,34.98306209 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.749098907 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,27.6148439 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,315.6502155 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1508.144843 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.199920012 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.096389996 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,19.8547267 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,767.0827909 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.05733808 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000549713 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.3536815 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,171.5990136 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.68536701 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,94.78427508 +OK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1041.025596 +OK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,52.592 +OK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1281.165468 +OK,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,505.068 +OK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,147.694 +OK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,20291.72169 +OK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7069.290917 +OK,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,466.88762 +OK,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,160.286 +OK,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,10.381 +OK,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,41.802 +OK,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.918 +OK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,21.042 +OK,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.6 +OK,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,2.424 +OK,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,363.223 +OK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1365.758413 +OK,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,508.091 +OK,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,51674.072 +OK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,147823.25 +OK,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,8451.679794 +OK,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,20.01 +OK,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.070721597 +OK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,16.03836077 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,256.621 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.012 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1657.195225 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2046.48987 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,77.553081 +OK,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.072 +OK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.414532707 +OK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2655.7001 +OK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,294.60794 +OK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,295.8275613 +OK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,16.53317809 +OK,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.167183 +OK,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.00743037 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2111.067382 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.035720658 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,55.14285656 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,30.3640285 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.472410055 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,592.3838669 +OK,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.6427 +OK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,19815.14832 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,165.1260235 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.352824934 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.028666899 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.527600127 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.069720011 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.033615005 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.200035964 +OK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,950.5031573 +OK,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,43.820655 +OK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,629.6286021 +OK,PM2.5 Filterable,2A1_Cement-production,,TON,181.8961016 +OK,PM2.5 Filterable,2A2_Lime-production,,TON,14.57899588 +OK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2029.172169 +OK,PM2.5 Filterable,2A6_Other-minerals,,TON,1231.630761 +OK,PM2.5 Filterable,2B_Chemicals-other,,TON,139.5321992 +OK,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,77.77093842 +OK,PM2.5 Filterable,2C5_Lead-production,,TON,1.47389 +OK,PM2.5 Filterable,2C7_Other-metal,,TON,11.62132318 +OK,PM2.5 Filterable,2C7a_Copper-production,,TON,1.71700424 +OK,PM2.5 Filterable,2D3d_Coating-application,,TON,17.16922662 +OK,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,2.424 +OK,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,123.5458589 +OK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,61.53729031 +OK,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,370.2790002 +OK,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,10285.5977 +OK,PM2.5 Filterable,3Dc_Other-farm,,TON,29565.4263 +OK,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,5.28042 +OK,PM2.5 Filterable,5C_Incineration,,TON,2.6147 +OK,PM2.5 Filterable,5C_Incineration,biomass,TON,4.61131591 +OK,PM2.5 Filterable,5C_Open-burning-dump,,TON,146.17605 +OK,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.0109024 +OK,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1277.53157 +OK,PM2.5 Filterable,5C_Open-burning-residential,,TON,1874.1543 +OK,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,59.7859336 +OK,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.06490449 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.3564487 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2939.688 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,586.12868 +OK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,472.4767306 +OK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.001 +OK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,43.479 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,62.77108333 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.0353146 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.121438177 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2195.583031 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.995790152 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,72.37680716 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,35.2089816 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.904039018 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1146.200546 +OK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,27.547 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,374.8234586 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.74746498 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478768 +OK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,245.9184019 +OK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19815.14832 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,134.5211798 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,744.7338826 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,26.7119433 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,60.054121 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,110.7802739 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.768467999 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01917523 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1097.765569 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,19.54988371 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,617.900185 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.071751304 +OK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.55395955 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,527.9964225 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.033470723 +OK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8.639008223 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,171.2011504 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.388316845 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.057296861 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.18605639 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.54848629 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.28813292 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.749098907 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,26.78638506 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,290.4118419 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1462.360263 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.178920047 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.086264982 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.41831475 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,744.0705908 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.17293019 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000549713 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2830715 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,157.8720067 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.27481299 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,87.20153674 +OK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1016.671844 +OK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,43.820655 +OK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1278.878807 +OK,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,194.988448 +OK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,43.66170588 +OK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2029.172169 +OK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1474.749877 +OK,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,384.5668713 +OK,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,133.2977445 +OK,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,8.17016 +OK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,21.47695003 +OK,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.77700424 +OK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,17.44922662 +OK,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.6 +OK,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,2.424 +OK,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,217.7216613 +OK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1140.846464 +OK,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,447.5548319 +OK,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,10285.5977 +OK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,29565.4263 +OK,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6123.831857 +OK,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,5.28042 +OK,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,3.083748148 +OK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.88547683 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,146.17605 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.0112732 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1277.53157 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1874.1543 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,59.7859336 +OK,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.072 +OK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.117 +OK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,76690.6 +OK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,95.294 +OK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,10218.296 +OK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,421.341 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.485215514 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.002048047 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.060989275 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,131.2073769 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,97.21921893 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2152.250089 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,746.0203664 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.918213643 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,240.8350268 +OK,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,97.346 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.76606561 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.229740871 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.26318E-05 +OK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,342.3568299 +OK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.260758525 +OK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,315.0776136 +OK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.321493251 +OK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33.06535757 +OK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.423668687 +OK,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.1598754 +OK,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.001662181 +OK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,42.13115119 +OK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,8.783145709 +OK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.47115002 +OK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.343344273 +OK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.22048566 +OK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,10.8569894 +OK,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005078282 +OK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.166113331 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,9.3850689 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.056280589 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.905571709 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.60184269 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.149317685 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.286488367 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.033314235 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.574218764 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.942067978 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,25.58923337 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3.57840056 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.725299342 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,22.9092854 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.69310144 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.382803859 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.42392E-05 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024414671 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.818160028 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.97284647 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.714243344 +OK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,295.9604207 +OK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.026 +OK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,113.5989411 +OK,Sulfur Dioxide,2A1_Cement-production,,TON,5147.17 +OK,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,11.806 +OK,Sulfur Dioxide,2A6_Other-minerals,,TON,939.614 +OK,Sulfur Dioxide,2B_Chemicals-other,,TON,6001.356 +OK,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,36.212 +OK,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,182.328 +OK,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +OK,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.063 +OK,Sulfur Dioxide,3F_Ag-res-on-field,,TON,251.914474 +OK,Sulfur Dioxide,5C_Incineration,,TON,0.358073234 +OK,Sulfur Dioxide,5C_Incineration,biomass,TON,39.47085345 +OK,Sulfur Dioxide,5C_Open-burning-dump,,TON,10.714 +OK,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,161.8202424 +OK,Sulfur Dioxide,5C_Open-burning-residential,,TON,73.84973 +OK,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.49744818 +OK,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,2.719 +OK,Volatile Organic Compounds,11C_Other-natural,,TON,1036171.6 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.151 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,540.523 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,248.408 +OK,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,7105.12998 +OK,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,432.0365198 +OK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1815.3415 +OK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,592.213 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,84.32142285 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,115.7959408 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,23.53117604 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,84.0952628 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.055041605 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.625934145 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.906085108 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.136079335 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,14021.74206 +OK,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,14.739 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,505.8890427 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,200.6718892 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.035351456 +OK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1622.803676 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1058.547979 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,30536.93178 +OK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,143.463679 +OK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2174.096777 +OK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,174.4609962 +OK,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,162.8288314 +OK,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.31099 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2325.341135 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,467.9479492 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,942.757354 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,290.3366123 +OK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,762.005671 +OK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,904.3395706 +OK,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.909627255 +OK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.929363695 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,6.37579912 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.185147985 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.358974822 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,136.2346794 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,97.23360531 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1123.347439 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.00069928 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,38.81658256 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4961.721808 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1492.491323 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.058800028 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.028350006 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,210.0018374 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,868.5176757 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,250.8972269 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.089699187 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.2986388 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5538.760528 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.98722813 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,7017.267781 +OK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,104883.9962 +OK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,5916.366079 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1034.497071 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,554.6537153 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,9332.236006 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7124.154097 +OK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,84855.40689 +OK,Volatile Organic Compounds,2A1_Cement-production,,TON,610.2 +OK,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.016 +OK,Volatile Organic Compounds,2A6_Other-minerals,,TON,91.96699265 +OK,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,669.3192853 +OK,Volatile Organic Compounds,2B_Chemicals-other,,TON,1041.422 +OK,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,181.159 +OK,Volatile Organic Compounds,2C7a_Copper-production,,TON,88.58 +OK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,17204.17819 +OK,Volatile Organic Compounds,2D3d_Coating-application,,TON,9957.648175 +OK,Volatile Organic Compounds,2D3e_Degreasing,,TON,2681.31068 +OK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,10.2200008 +OK,Volatile Organic Compounds,2D3h_Printing,,TON,4462.7768 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3602.80453 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,908.3308984 +OK,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3111.06 +OK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,468.3880893 +OK,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1243.929 +OK,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,103.506 +OK,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1882.572 +OK,Volatile Organic Compounds,3B3_Manure-swine,,TON,2674.259 +OK,Volatile Organic Compounds,3B4_Manure-poultry,,TON,540.529 +OK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1773.67418 +OK,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2965.433132 +OK,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,585.0216 +OK,Volatile Organic Compounds,5C_Incineration,,TON,5.861686616 +OK,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.759615198 +OK,Volatile Organic Compounds,5C_Open-burning-dump,,TON,1.772 +OK,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1130.791747 +OK,Volatile Organic Compounds,5C_Open-burning-residential,,TON,426.632791 +OK,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,87.347096 +OK,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,52.4 +OK,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.512 +OK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.753 +OR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,28.1961 +OR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,56.7637 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.594316505 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.071648058 +OR,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +OR,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.263065936 +OR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.223999705 +OR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.599360111 +OR,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.032339997 +OR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,86.47877257 +OR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.710468509 +OR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.224548322 +OR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,28.44523441 +OR,Ammonia,1A3bii_Road-LDV,light_oil,TON,1226.633654 +OR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.64272529 +OR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,48.94677601 +OR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.259855358 +OR,Ammonia,1A3biii_Road-bus,light_oil,TON,0.565571336 +OR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.020244999 +OR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34.54525234 +OR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.780101467 +OR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.5794057 +OR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.540395903 +OR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.982685 +OR,Ammonia,1A3c_Rail,diesel_oil,TON,4.175969927 +OR,Ammonia,1A3c_Rail,light_oil,TON,0.00158544 +OR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.936167334 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.937431035 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.2775978 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.049954654 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.049954654 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.039080346 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.961852927 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.943443655 +OR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.394407269 +OR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.451714907 +OR,Ammonia,1A4bi_Residential-stationary,biomass,TON,344.6448009 +OR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,6.1530005 +OR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.54675051 +OR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,412.4667926 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.849204219 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.239846425 +OR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017045187 +OR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.673265932 +OR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.46151398 +OR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.630385372 +OR,Ammonia,2A1_Cement-production,,TON,0.00702 +OR,Ammonia,2A6_Other-minerals,Other_Fuel,TON,3.24802 +OR,Ammonia,2C_Iron-steel-alloy,Other_Fuel,TON,2.818 +OR,Ammonia,2H1_Pulp-and-paper,,TON,163.9855 +OR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,389.9645 +OR,Ammonia,3B1a_Cattle-dairy,,TON,2019.781 +OR,Ammonia,3B1b_Cattle-non-dairy,,TON,5991.117 +OR,Ammonia,3B2_Manure-sheep,,TON,759.99924 +OR,Ammonia,3B3_Manure-swine,,TON,78.232 +OR,Ammonia,3B4_Manure-other,,TON,1202.124 +OR,Ammonia,3B4_Manure-poultry,,TON,1035.816759 +OR,Ammonia,3B4d_Manure-goats,,TON,265.514832 +OR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,5206.7088 +OR,Ammonia,3F_Ag-res-on-field,,TON,956.736 +OR,Ammonia,5B_Compost-biogas,Other_Fuel,TON,101.1921 +OR,Ammonia,5D1_Wastewater-domestic,,TON,10.57357604 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,196379.2055 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,198065.5539 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11174.7203 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1072331.662 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,18784.03676 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.396380886 +OR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1017925.578 +OR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,13643332.19 +OR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,123228.217 +OR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,700665.2015 +OR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,154720.1764 +OR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,18469.13782 +OR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,814.74264 +OR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2257173.694 +OR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,19641.51504 +OR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1077462.651 +OR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,98094.64657 +OR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,61419.5452 +OR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2805.35704 +OR,Carbon Dioxide,1A3c_Rail,light_oil,TON,123.8597735 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,118288.3603 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,162719.677 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7204.561174 +OR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,48532.35135 +OR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,331083.7012 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,596970.7883 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,17334.19673 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.786511445 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2089.5148 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,180417.4396 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,56831.46905 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,187347.7393 +OR,Carbon Monoxide,11C_Other-natural,,TON,246961.43 +OR,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,78.37 +OR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.193 +OR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,689 +OR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1472.432 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,890.837206 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4905.209162 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,294.7268163 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8148.07 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,113.2637411 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,204.0000344 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,56.6959988 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.21544003 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2800.262934 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3409.096203 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3837.643394 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.313720484 +OR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6276.18726 +OR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,18835.62116 +OR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,337108.9859 +OR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1405.79075 +OR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17652.2713 +OR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,517.1523553 +OR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1247.885495 +OR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.9108725 +OR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3734.136985 +OR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,431.3570916 +OR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1755.99377 +OR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3457.398646 +OR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2791.23972 +OR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1351.168109 +OR,Carbon Monoxide,1A3c_Rail,light_oil,TON,28.17098107 +OR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,359.7163857 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,570.1507145 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.77755727 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.314177518 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.30161073 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1266.501479 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,508.553376 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,33745.87795 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,153.0553225 +OR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,164.2485075 +OR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,77358.01994 +OR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,44740.15808 +OR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,30.765022 +OR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.73375189 +OR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,874.1335815 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1919.562963 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4598.901408 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.19796736 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.5109833 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,28176.90447 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,112.7361131 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,21394.63234 +OR,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,9.85 +OR,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,45.466606 +OR,Carbon Monoxide,2A6_Other-minerals,,TON,689.490085 +OR,Carbon Monoxide,2B_Chemicals-other,,TON,55.03 +OR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4056.23092 +OR,Carbon Monoxide,2C3_Aluminum-production,,TON,3.426 +OR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.428 +OR,Carbon Monoxide,2D3d_Coating-application,,TON,14.508 +OR,Carbon Monoxide,2D3h_Printing,,TON,1 +OR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,7036.94948 +OR,Carbon Monoxide,2H2_Food-and-beverage,,TON,668.2703699 +OR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,4.363 +OR,Carbon Monoxide,3F_Ag-res-on-field,,TON,11620.468 +OR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,586.1102846 +OR,Carbon Monoxide,5C_Incineration,biomass,TON,10.27556803 +OR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,31211.36537 +OR,Carbon Monoxide,5C_Open-burning-residential,,TON,3617.90468 +OR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,397.252166 +OR,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.422634183 +OR,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.43075664 +OR,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,132.3479786 +OR,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,36.08944114 +OR,Methane,1A2g_Construction_and_Mining,light_oil,TON,14.88896247 +OR,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.218054761 +OR,Methane,1A3bii_Road-LDV,diesel_oil,TON,39.37294952 +OR,Methane,1A3bii_Road-LDV,light_oil,TON,825.8797944 +OR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.20491303 +OR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.75508675 +OR,Methane,1A3biii_Road-bus,diesel_oil,TON,5.355360677 +OR,Methane,1A3biii_Road-bus,light_oil,TON,3.222117091 +OR,Methane,1A3biii_Road-bus,natural_gas,TON,7.0059553 +OR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,160.2572929 +OR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.666210824 +OR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.53565576 +OR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,6.67481928 +OR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.34707269 +OR,Methane,1A3c_Rail,diesel_oil,TON,0.120264404 +OR,Methane,1A3c_Rail,light_oil,TON,0.092200841 +OR,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.82594296 +OR,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,123.3908117 +OR,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,100.3718515 +OR,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.720541008 +OR,Methane,1A4bi_Residential-mobile,light_oil,TON,338.9530199 +OR,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.80703386 +OR,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,18.63920762 +OR,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.170392891 +OR,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.089970027 +OR,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,275.0713365 +OR,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.476273576 +OR,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,194.1720497 +OR,Nitrogen Oxides,11C_Other-natural,,TON,11837.871 +OR,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,142.14 +OR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0 +OR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,3231 +OR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1137.741 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1043.475009 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,652.0067574 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43.26429674 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3828.34 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,507.9026531 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,448.8000403 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,265.9559744 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.830179983 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3662.886689 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6155.393013 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,59.65652212 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.060369914 +OR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1572.273692 +OR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,4680.408468 +OR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,43410.10488 +OR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,551.346449 +OR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2098.970115 +OR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1314.032338 +OR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,87.75931073 +OR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.5892011 +OR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13342.66118 +OR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,54.74156512 +OR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5115.34792 +OR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,338.4513074 +OR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,137.022412 +OR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8326.267199 +OR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.363544782 +OR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2234.666184 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,305.6219605 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,109.862306 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.45444411 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.212195493 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1940.113449 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,928.4296889 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,547.0554925 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38.76361479 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,385.0542962 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,840.3430746 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,734.2616065 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,110.754 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,9.8415018 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2113.540154 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4159.152145 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,71.28977686 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.044255246 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.9618028 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,378.3826742 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,595.7421706 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1399.24967 +OR,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.91 +OR,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,32.68746 +OR,Nitrogen Oxides,2A6_Other-minerals,,TON,1829.117047 +OR,Nitrogen Oxides,2B_Chemicals-other,,TON,245.49 +OR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,396.716 +OR,Nitrogen Oxides,2C3_Aluminum-production,,TON,4.036 +OR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,21.081 +OR,Nitrogen Oxides,2D3d_Coating-application,,TON,16.546 +OR,Nitrogen Oxides,2D3h_Printing,,TON,1 +OR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2218.33643 +OR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +OR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,4 +OR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,295.753067 +OR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,223.75412 +OR,Nitrogen Oxides,5C_Incineration,biomass,TON,294.0582001 +OR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,923.411684 +OR,Nitrogen Oxides,5C_Open-burning-residential,,TON,255.381455 +OR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,17.65565564 +OR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.065513338 +OR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,887.876964 +OR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.441883385 +OR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,49.99095569 +OR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.409789198 +OR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.110962578 +OR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.093664369 +OR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.81239874 +OR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.547594475 +OR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.07285246 +OR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.469232811 +OR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.89350217 +OR,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,10.4915 +OR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.302475 +OR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,556.914 +OR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,130.159247 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,915.18599 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.27217449 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,489.6005752 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.67940129 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.041051505 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,45.98754702 +OR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,306281.181 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,400.7263552 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.879385815 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.724647319 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.067076408 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.44386056 +OR,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,5651.73 +OR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,6.64524085 +OR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.59048995 +OR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.370277216 +OR,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.594 +OR,PM10 Filterable,2A1_Cement-production,,TON,96.3 +OR,PM10 Filterable,2A2_Lime-production,,TON,2.657 +OR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,14724.29083 +OR,PM10 Filterable,2A6_Other-minerals,,TON,2660.63931 +OR,PM10 Filterable,2B_Chemicals-other,,TON,219.74 +OR,PM10 Filterable,2C_Iron-steel-alloy,,TON,275.237046 +OR,PM10 Filterable,2C3_Aluminum-production,,TON,0.6262609 +OR,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,32.7952049 +OR,PM10 Filterable,2D3d_Coating-application,,TON,36.0626 +OR,PM10 Filterable,2D3h_Printing,,TON,7.26 +OR,PM10 Filterable,2H1_Pulp-and-paper,,TON,2151.948098 +OR,PM10 Filterable,2H2_Food-and-beverage,,TON,88.77232336 +OR,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,42.9084513 +OR,PM10 Filterable,2I_Wood-processing,,TON,15.832012 +OR,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,13881.1947 +OR,PM10 Filterable,3Dc_Other-farm,,TON,45491.4113 +OR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,87.728896 +OR,PM10 Filterable,5C_Incineration,biomass,TON,4.047 +OR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3139.604296 +OR,PM10 Filterable,5C_Open-burning-residential,,TON,1179.50236 +OR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,65.7830796 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,10.81 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.667 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,612 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,236.80834 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,74.34906778 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,21.05516393 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.383443572 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,946.231 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,37.13380506 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,532.0319175 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,35.54003132 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.094149905 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,67.15650054 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,523.8340503 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.11433693 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638359 +OR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,158.9473382 +OR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,306281.181 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,278.9242804 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1898.23641 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40.5683341 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,90.8045007 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,91.0953068 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.064907527 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.123328433 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,829.2756266 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.686308419 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,388.565946 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,14.59997823 +OR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.04190602 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,256.860917 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015763754 +OR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,65.19194544 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,472.8982973 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.249670253 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.817079034 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.150129471 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.52767705 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.51442989 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,42.08769442 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.907929121 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,27.26040391 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,324.6608322 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6565.486166 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,14.64412155 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.30126482 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.36272102 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,334.4770385 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,43.39195258 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000225725 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.3787245 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,282.7527064 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.56332066 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,87.0087947 +OR,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.594 +OR,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.934025 +OR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,99.412 +OR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,2.657 +OR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,14724.29083 +OR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2673.84849 +OR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,219.74 +OR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,357.32096 +OR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1.322 +OR,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,36.758 +OR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,36.1846 +OR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,7.26 +OR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3293.61742 +OR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,348.4435392 +OR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,45.402 +OR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,15.832012 +OR,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,13881.1947 +OR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,45491.4113 +OR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1973.60096 +OR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,104.022 +OR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,11.70930167 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3139.604296 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1179.50236 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,65.7830796 +OR,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,8.856 +OR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.0219605 +OR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,422.231 +OR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,130.154334 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,767.327244 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,32.49193548 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,57.12004093 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.81776916 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.010811505 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,23.07919581 +OR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,31552.59512 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,321.3644187 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.852972542 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.269771895 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.05172325 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.110967072 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,5650.74 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.1069889 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.45380223 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.403652078 +OR,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.594 +OR,PM2.5 Filterable,2A1_Cement-production,,TON,33.9882298 +OR,PM2.5 Filterable,2A2_Lime-production,,TON,0.8042356 +OR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1472.429083 +OR,PM2.5 Filterable,2A6_Other-minerals,,TON,464.3436968 +OR,PM2.5 Filterable,2B_Chemicals-other,,TON,100.3415704 +OR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,249.9375171 +OR,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.5543029 +OR,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,16.6857498 +OR,PM2.5 Filterable,2D3d_Coating-application,,TON,32.93786924 +OR,PM2.5 Filterable,2D3h_Printing,,TON,6.024257 +OR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1493.627783 +OR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,3.796162848 +OR,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,26.97060242 +OR,PM2.5 Filterable,2I_Wood-processing,,TON,5.072948365 +OR,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2869.22353 +OR,PM2.5 Filterable,3Dc_Other-farm,,TON,9098.28359 +OR,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,29.4638433 +OR,PM2.5 Filterable,5C_Incineration,biomass,TON,4.047 +OR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2420.321876 +OR,PM2.5 Filterable,5C_Open-burning-residential,,TON,1080.17635 +OR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,50.7124199 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,9.17449 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.3864855 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,477.317 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,236.803427 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,72.09078542 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.97675622 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.382210707 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,798.372254 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,34.35355629 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,99.5519999 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,24.67839043 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.063910076 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,43.80363579 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,508.1190415 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.80372046 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000638359 +OR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,135.667852 +OR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,31552.59512 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,211.0291249 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,797.3649531 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,31.6553309 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.39889244 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,68.24107859 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.851151231 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.024107642 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,582.4672691 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.81132667 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,262.023439 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.83030808 +OR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.71762544 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,237.7818717 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014534395 +OR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,61.71381429 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,393.5361426 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.211927282 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.364273952 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.134855778 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.20364185 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,80.03896057 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,38.84548672 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.907929121 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,26.44258058 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,298.7015729 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6521.561481 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,13.10589445 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.16457698 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.396096142 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,324.4426285 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,39.92064096 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000225725 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.3073641 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,260.1332312 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.18640644 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,80.0482075 +OR,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.594 +OR,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.934025 +OR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,37.1002298 +OR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.8042356 +OR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1472.429083 +OR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,477.5529168 +OR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,100.3415704 +OR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,332.0214306 +OR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1.250042 +OR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,20.6485418 +OR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,33.05986924 +OR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,6.024257 +OR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2635.296888 +OR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,263.4674249 +OR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,29.46415112 +OR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.072948365 +OR,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2869.22353 +OR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,9098.28359 +OR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1436.978388 +OR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,45.7569473 +OR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,11.70930167 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2420.321876 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1080.17635 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,50.7124199 +OR,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,25.26 +OR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.002 +OR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,7436 +OR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,74.08977 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.418616494 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.341217154 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.083393194 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,788.607 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.10256926 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,775.1997217 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,506.2812882 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.790290361 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,50.75545866 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,11.89055261 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.311710185 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.01757E-05 +OR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,180.0747995 +OR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,8.97228982 +OR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,249.9514118 +OR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.07959969 +OR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.8442359 +OR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.356336005 +OR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.338242258 +OR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.004313607 +OR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,19.46718677 +OR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.35974745 +OR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9.2753149 +OR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.796659829 +OR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.12470418 +OR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.718730109 +OR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002204852 +OR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,242.6264765 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,25.4859517 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.48195377 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.16719333 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.230300587 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.96460494 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.382259139 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.7501063 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.040362187 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.569160601 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.011552589 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,108.2500484 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,262.11766 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,23.2915586 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,13.11083347 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.798469314 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.315497014 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.9532E-06 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024680389 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.2758762 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.811115533 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.409549618 +OR,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.594 +OR,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.044755177 +OR,Sulfur Dioxide,2A6_Other-minerals,,TON,269.476071 +OR,Sulfur Dioxide,2B_Chemicals-other,,TON,37.69 +OR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,59.819 +OR,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.306 +OR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,1 +OR,Sulfur Dioxide,2D3d_Coating-application,,TON,1.02018 +OR,Sulfur Dioxide,2D3h_Printing,,TON,1 +OR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,665.69081 +OR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +OR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,4 +OR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,59.828779 +OR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,123.261864 +OR,Sulfur Dioxide,5C_Incineration,biomass,TON,26.67620189 +OR,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,306.5730471 +OR,Sulfur Dioxide,5C_Open-burning-residential,,TON,42.5635814 +OR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.8148818 +OR,Volatile Organic Compounds,11C_Other-natural,,TON,1109626.8 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,5.11 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.06509 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,55.6 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,231.21233 +OR,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,50.36 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,101.7095831 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,140.8444964 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,28.81990346 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,313.194 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.36384734 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.040000344 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.619776073 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.035979996 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,307.5063608 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,685.4886404 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,262.1813914 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.047135227 +OR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,583.0869482 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1856.148912 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,32455.61618 +OR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,171.132035 +OR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1516.737643 +OR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,103.9476952 +OR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,63.18544454 +OR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.5469897 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,928.7557851 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,18.62206161 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,409.127426 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,166.6745134 +OR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,441.403725 +OR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,426.2357007 +OR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.757130789 +OR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,56.53563627 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,80.55497029 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.910136588 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.075297941 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021989649 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,89.06313233 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,116.9438065 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1244.039511 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.6966327 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,38.39305623 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5246.64132 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7347.608657 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,4.3071024 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.382724773 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,120.1825819 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,380.9529396 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,419.0393014 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.036832562 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.3443365 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,9156.236975 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.28310626 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5819.483344 +OR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,568.1828464 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,286.4134185 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,265.3364974 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,677.7169404 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,5360.526884 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.48 +OR,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,43.74229 +OR,Volatile Organic Compounds,2A6_Other-minerals,,TON,81.736251 +OR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +OR,Volatile Organic Compounds,2B_Chemicals-other,,TON,47.89 +OR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,380.773 +OR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.624 +OR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,337.07 +OR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,17538.82058 +OR,Volatile Organic Compounds,2D3d_Coating-application,,TON,9340.2784 +OR,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,2430.247745 +OR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,4.9549999 +OR,Volatile Organic Compounds,2D3h_Printing,,TON,5975.80165 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,352.5054963 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3417.943362 +OR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,6236.100984 +OR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,299.3748044 +OR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,297.992 +OR,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,162.177 +OR,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,481.047 +OR,Volatile Organic Compounds,3B3_Manure-swine,,TON,6.282 +OR,Volatile Organic Compounds,3B4_Manure-poultry,,TON,82.287 +OR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4688.951974 +OR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,705.45196 +OR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,266.947 +OR,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,716.013 +OR,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.056203745 +OR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2142.318381 +OR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,245.89158 +OR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,74.0906798 +OR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,54.696 +OR,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,14 +OR,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.674 +PA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,12.21903 +PA,Ammonia,1A1a_Public-Electricity,biomass,TON,5.4177 +PA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,46.3936 +PA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,67.004 +PA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,4.8674 +PA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,407.0487 +PA,Ammonia,1A1b_Pet-refining,natural_gas,TON,22.5676 +PA,Ammonia,1A1c_Coke-ovens,natural_gas,TON,1.3077 +PA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.8705 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.199884471 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.280385683 +PA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.297506948 +PA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,124.0944748 +PA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,21.0516 +PA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.91547036 +PA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,24.96039 +PA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.0347 +PA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,503.4991195 +PA,Ammonia,1A2c_Chemicals,natural_gas,TON,1.4587 +PA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.005 +PA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.6633 +PA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,18.95020764 +PA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.477657757 +PA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,20.83197281 +PA,Ammonia,1A3bii_Road-LDV,light_oil,TON,2928.369214 +PA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.63646817 +PA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,123.7911339 +PA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,8.58017353 +PA,Ammonia,1A3biii_Road-bus,light_oil,TON,5.624433797 +PA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.166720009 +PA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,160.0069147 +PA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.00864838 +PA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,100.2449893 +PA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,38.30737032 +PA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.0003176 +PA,Ammonia,1A3c_Rail,diesel_oil,TON,9.580145454 +PA,Ammonia,1A3c_Rail,light_oil,TON,0.003526546 +PA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.802836768 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,8.28045539 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,45.92349035 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.772517569 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.337193821 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.613352 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.691530514 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.438120481 +PA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.182021241 +PA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,14.22787851 +PA,Ammonia,1A4bi_Residential-stationary,biomass,TON,975.0812953 +PA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,331.7580265 +PA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,7.2494999 +PA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2552.95151 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.68885064 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.187709839 +PA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.059560473 +PA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,7.270645316 +PA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.764574086 +PA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.357829301 +PA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.01 +PA,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0158 +PA,Ammonia,2A1_Cement-production,,TON,20.1529 +PA,Ammonia,2A2_Lime-production,,TON,27.2533 +PA,Ammonia,2A6_Other-minerals,,TON,5.6586 +PA,Ammonia,2B_Chemicals-other,,TON,288.8428 +PA,Ammonia,2C_Iron-steel-alloy,,TON,162.3571 +PA,Ammonia,2C3_Aluminum-production,,TON,0.4941 +PA,Ammonia,2C6_Zinc-production,,TON,25.1746 +PA,Ammonia,2C7_Other-metal,Other_Fuel,TON,10.4483 +PA,Ammonia,2D3d_Coating-application,,TON,10.1627 +PA,Ammonia,2D3e_Degreasing,,TON,0.308 +PA,Ammonia,2D3h_Printing,,TON,6.563 +PA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,1.4922 +PA,Ammonia,2H1_Pulp-and-paper,,TON,139.3388 +PA,Ammonia,2H2_Food-and-beverage,,TON,17.4452 +PA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,65.6659125 +PA,Ammonia,3B1a_Cattle-dairy,,TON,10278.139 +PA,Ammonia,3B1b_Cattle-non-dairy,,TON,5194.36 +PA,Ammonia,3B2_Manure-sheep,,TON,338.309664 +PA,Ammonia,3B3_Manure-swine,,TON,9579.575 +PA,Ammonia,3B4_Manure-other,,TON,1563.71556 +PA,Ammonia,3B4_Manure-poultry,,TON,6320.156961 +PA,Ammonia,3B4d_Manure-goats,,TON,412.73694 +PA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,4219.046535 +PA,Ammonia,3F_Ag-res-on-field,,TON,12.8287 +PA,Ammonia,5A_Solid-waste-disposal,,TON,34.14 +PA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,291.38306 +PA,Ammonia,5C_Incineration,,TON,1.52 +PA,Ammonia,5C_Incineration,biomass,TON,6.4693 +PA,Ammonia,5D1_Wastewater-domestic,,TON,198.7332 +PA,Ammonia,5D2_Wastewater-industrial,biomass,TON,34.1288 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,741190.279 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,775320.6596 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43729.50269 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2332741.183 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,39962.85808 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,10.79277147 +PA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,785528.4926 +PA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,40124830.99 +PA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,200131.868 +PA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2090397.722 +PA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,546389.1368 +PA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,173508.0656 +PA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,6768.7145 +PA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9943998.962 +PA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,50762.95597 +PA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5457427.172 +PA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1040621.413 +PA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,254635.212 +PA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6206.914005 +PA,Carbon Dioxide,1A3c_Rail,light_oil,TON,275.6097696 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,331003.7134 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,455311.2046 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,20127.26436 +PA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,145449.1873 +PA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1058073.371 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,700271.0081 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13872.27077 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.305128212 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,7301.3157 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,494168.8669 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,94150.65801 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,310384.0526 +PA,Carbon Monoxide,11C_Other-natural,,TON,58367.802 +PA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,1521.6923 +PA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,51.9576 +PA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,110.4869 +PA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,13724.4932 +PA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,23.298 +PA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3650.8501 +PA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1259.5127 +PA,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,504.2165 +PA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,29.3811 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2855.794155 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19055.93463 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1144.383845 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,517.9491327 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,11199.76255 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1355.494979 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2283.165658 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1779.725589 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,67.98277173 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,10.49798775 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,17777.9667 +PA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,16.1717 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.185 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.64 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,33.92 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7663.163904 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8141.003011 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.627441513 +PA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10214.64934 +PA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11159.65943 +PA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,664338.6814 +PA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2118.656991 +PA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40348.82582 +PA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1867.110365 +PA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,8433.868976 +PA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,62.255404 +PA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16342.66802 +PA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1240.591537 +PA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9661.78031 +PA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,31453.01175 +PA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11953.61455 +PA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3087.370767 +PA,Carbon Monoxide,1A3c_Rail,light_oil,TON,62.49782346 +PA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,277.379048 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1061.805281 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3417.908549 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,166.3061825 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.364032191 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00381811 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7118.481049 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1423.00293 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,94092.94367 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,428.0242989 +PA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,492.2688995 +PA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,247403.9495 +PA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,156581.4392 +PA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1658.790705 +PA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,36.24749257 +PA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,5488.0578 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2384.449043 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3280.279857 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.255436811 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,57.705058 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,76847.90921 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,186.7662836 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,35463.55543 +PA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,3289.859159 +PA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.2 +PA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,66.9202 +PA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6854.137279 +PA,Carbon Monoxide,2A1_Cement-production,,TON,1209.2212 +PA,Carbon Monoxide,2A2_Lime-production,,TON,1238.4448 +PA,Carbon Monoxide,2A6_Other-minerals,,TON,1882.4659 +PA,Carbon Monoxide,2B_Chemicals-other,,TON,636.1795 +PA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,7636.3744 +PA,Carbon Monoxide,2C5_Lead-production,,TON,12.2652 +PA,Carbon Monoxide,2C6_Zinc-production,,TON,4639.4847 +PA,Carbon Monoxide,2C7_Other-metal,,TON,416.5768 +PA,Carbon Monoxide,2C7a_Copper-production,,TON,5.6746 +PA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.006 +PA,Carbon Monoxide,2D3d_Coating-application,,TON,407.8254 +PA,Carbon Monoxide,2D3e_Degreasing,,TON,0.05 +PA,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.024 +PA,Carbon Monoxide,2D3h_Printing,,TON,10.8555 +PA,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,5.9102 +PA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,584.8685 +PA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1514.617196 +PA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3080.9251 +PA,Carbon Monoxide,3Dc_Other-farm,,TON,1.51 +PA,Carbon Monoxide,3F_Ag-res-on-field,,TON,116.44897 +PA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,978.718527 +PA,Carbon Monoxide,5C_Incineration,,TON,73.90206588 +PA,Carbon Monoxide,5C_Incineration,biomass,TON,581.0778279 +PA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,80816.54746 +PA,Carbon Monoxide,5C_Open-burning-residential,,TON,13186.1017 +PA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1426.069631 +PA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.12833291 +PA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,115.3168184 +PA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,517.9376247 +PA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,81.19654784 +PA,Methane,1A2g_Construction_and_Mining,light_oil,TON,31.80813455 +PA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.436109625 +PA,Methane,1A3bii_Road-LDV,diesel_oil,TON,50.20702716 +PA,Methane,1A3bii_Road-LDV,light_oil,TON,1881.651618 +PA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.22675313 +PA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,135.1805553 +PA,Methane,1A3biii_Road-bus,diesel_oil,TON,21.28192938 +PA,Methane,1A3biii_Road-bus,light_oil,TON,14.20629959 +PA,Methane,1A3biii_Road-bus,natural_gas,TON,42.148489 +PA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,838.2565397 +PA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.033211395 +PA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,184.3350128 +PA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,60.5465027 +PA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.795722 +PA,Methane,1A3c_Rail,diesel_oil,TON,0.266392623 +PA,Methane,1A3c_Rail,light_oil,TON,0.205894608 +PA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.70608854 +PA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,347.4926307 +PA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,280.7608133 +PA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,5.157156552 +PA,Methane,1A4bi_Residential-mobile,light_oil,TON,1096.042428 +PA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19.56009764 +PA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.17873974 +PA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.219857545 +PA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.314480072 +PA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,706.0148236 +PA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.445620782 +PA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,321.5276447 +PA,Nitrogen Oxides,11C_Other-natural,,TON,9343.2238 +PA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,1807.3283 +PA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,18.4336 +PA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,663.1996 +PA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,115464.1435 +PA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,108.6905 +PA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,5085.2062 +PA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1995.0296 +PA,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,2645.8994 +PA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,35.2489 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3886.896329 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2542.212923 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,168.2345262 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1090.013938 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4330.331661 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,13.42658039 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,8674.222275 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2940.791393 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,208.6015529 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.057519341 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,21719.40423 +PA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,60.1334 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,7.231 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,15.6022 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,13582.51789 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,129.5024536 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.12073982 +PA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3038.499547 +PA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2906.916171 +PA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,73538.68912 +PA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,792.922471 +PA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4170.560225 +PA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3706.448768 +PA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,724.9021327 +PA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,29.345234 +PA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,59029.49701 +PA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,150.0229014 +PA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,25459.35612 +PA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,3190.61447 +PA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,531.792678 +PA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,18546.19229 +PA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.824694647 +PA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2037.973525 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,392.9235909 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10449.76754 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,752.8827351 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,22.54720999 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01745691 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9211.789202 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2597.965923 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1566.636937 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,108.4184822 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1153.926628 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2757.636398 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2312.508778 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,5971.64485 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,130.4910038 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,13357.73955 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5132.2689 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,66.45798675 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.057102382 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,62.744947 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1047.768086 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,986.9476712 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2312.123982 +PA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,11738.23046 +PA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.25 +PA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,30.4848 +PA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7889.028238 +PA,Nitrogen Oxides,2A1_Cement-production,,TON,4764.3635 +PA,Nitrogen Oxides,2A2_Lime-production,,TON,4094.6369 +PA,Nitrogen Oxides,2A6_Other-minerals,,TON,7161.9818 +PA,Nitrogen Oxides,2B_Chemicals-other,,TON,181.7969 +PA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,2026.5368 +PA,Nitrogen Oxides,2C3_Aluminum-production,,TON,23.9182 +PA,Nitrogen Oxides,2C5_Lead-production,,TON,54.2752 +PA,Nitrogen Oxides,2C6_Zinc-production,,TON,77.4867 +PA,Nitrogen Oxides,2C7_Other-metal,,TON,98.5489 +PA,Nitrogen Oxides,2C7a_Copper-production,,TON,0.0368 +PA,Nitrogen Oxides,2D3d_Coating-application,,TON,46.2968 +PA,Nitrogen Oxides,2D3e_Degreasing,,TON,0.06 +PA,Nitrogen Oxides,2D3f_Dry-cleaning,Other_Fuel,TON,0.024 +PA,Nitrogen Oxides,2D3h_Printing,,TON,19.0611 +PA,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,5.3636 +PA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,892.2852 +PA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,98.8558 +PA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,130.2201 +PA,Nitrogen Oxides,3Dc_Other-farm,,TON,2.66 +PA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,3.37299 +PA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,314.588 +PA,Nitrogen Oxides,5C_Incineration,,TON,1387.119705 +PA,Nitrogen Oxides,5C_Incineration,biomass,TON,2884.733362 +PA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,2391.022134 +PA,Nitrogen Oxides,5C_Open-burning-residential,,TON,930.783534 +PA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,63.38087 +PA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.1 +PA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.391192284 +PA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1732.128564 +PA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.75497846 +PA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,110.8069228 +PA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.401738532 +PA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,6.704795914 +PA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.60910705 +PA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.48556967 +PA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.424084134 +PA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.64569464 +PA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,47.18146402 +PA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.71867854 +PA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,370.556 +PA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,12.7153 +PA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,238.3598876 +PA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,5570.2375 +PA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,29.4031 +PA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,691.5393518 +PA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,491.174763 +PA,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,49.0743 +PA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.1249 +PA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.7143 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,59.26826407 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9204.590864 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,5.342710962 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,662.1703313 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,155.8393221 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,336.22329 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030026476 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,949.9892686 +PA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.7804 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.015 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.497475 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.166437 +PA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,55686.2023 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,856.2280884 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,740.5240315 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,150.1011468 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.2463984 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001213918 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,113.9734858 +PA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,358.2986075 +PA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,7.82945996 +PA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,27.43726251 +PA,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,277.5824385 +PA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.45 +PA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.5674 +PA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,358.1058 +PA,PM10 Filterable,2A1_Cement-production,,TON,695.3765 +PA,PM10 Filterable,2A2_Lime-production,,TON,174.7679 +PA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,42639.77935 +PA,PM10 Filterable,2A6_Other-minerals,,TON,13536.4732 +PA,PM10 Filterable,2B_Chemicals-other,,TON,149.99585 +PA,PM10 Filterable,2C_Iron-steel-alloy,,TON,1825.892571 +PA,PM10 Filterable,2C3_Aluminum-production,,TON,59.9481444 +PA,PM10 Filterable,2C5_Lead-production,,TON,41.394 +PA,PM10 Filterable,2C6_Zinc-production,,TON,99.888 +PA,PM10 Filterable,2C7_Other-metal,,TON,327.3107228 +PA,PM10 Filterable,2C7a_Copper-production,,TON,55.0292 +PA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.3558 +PA,PM10 Filterable,2D3d_Coating-application,,TON,73.4701 +PA,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.1785 +PA,PM10 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,6.3216 +PA,PM10 Filterable,2D3h_Printing,,TON,6.7171 +PA,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,19.4001 +PA,PM10 Filterable,2H1_Pulp-and-paper,,TON,388.13225 +PA,PM10 Filterable,2H2_Food-and-beverage,,TON,560.07763 +PA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1369.21615 +PA,PM10 Filterable,2I_Wood-processing,,TON,73.7024 +PA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,17695.15597 +PA,PM10 Filterable,3Dc_Other-farm,,TON,54294.10184 +PA,PM10 Filterable,5A_Solid-waste-disposal,,TON,215.915612 +PA,PM10 Filterable,5C_Incineration,,TON,24.98 +PA,PM10 Filterable,5C_Incineration,biomass,TON,114.8748 +PA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,8129.479234 +PA,PM10 Filterable,5C_Open-burning-residential,,TON,4298.90842 +PA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,236.1503194 +PA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.2802 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,416.4189 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,24.328562 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2162.200974 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,7881.1906 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,54.9363 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1946.44925 +PA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,743.128269 +PA,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,109.1498 +PA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,5.478 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,283.2844009 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,81.80322012 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.370230161 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,74.04530124 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9611.00875 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,89.48459128 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,859.3647803 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,429.4608677 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,449.1485078 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.057448015 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2002.61151 +PA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,9.833234 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0179851 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.596475 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.032737 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1168.760909 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,61.91155695 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001276717 +PA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,244.8353621 +PA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,55686.2023 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,182.8549227 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5570.243182 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,60.212395 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,273.6659271 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,203.014147 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,34.80523638 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.11312496 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3150.470999 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.234914919 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1853.404578 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,153.335503 +PA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,38.2545294 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,583.4076233 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.035056365 +PA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,66.43783074 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,896.6675412 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,797.0751841 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,175.0460238 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.58289031 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001227608 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,269.5108195 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,230.8911958 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,117.7590311 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.536193279 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,81.70532311 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1013.449127 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,22130.02955 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,789.5841345 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,17.25381411 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,71.33686248 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,413.5024711 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,17.9277996 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000291252 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.3147595 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,718.1583321 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.81328581 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,144.1497955 +PA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,400.7909948 +PA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.5 +PA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,2.0674 +PA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,618.0425266 +PA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,857.6368768 +PA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,205.4200195 +PA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,42640.89435 +PA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,13794.82 +PA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,184.6701163 +PA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2899.899201 +PA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,94.8053038 +PA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,126.8893956 +PA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,288.888 +PA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,511.5987803 +PA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,158.17226 +PA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.3558 +PA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,74.9156 +PA,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.1785 +PA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,6.3216 +PA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,15.3806 +PA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,22.1236 +PA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,459.1008909 +PA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4132.983945 +PA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1394.596791 +PA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,73.7024 +PA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,17695.15597 +PA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,54294.89684 +PA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,20.2106 +PA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,326.786491 +PA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,43.78677132 +PA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,194.5900003 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8129.479234 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4298.90842 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,236.1503194 +PA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.290411 +PA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,94.5595 +PA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,11.5592 +PA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,202.1299441 +PA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2295.71482 +PA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,23.0045 +PA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,591.5307374 +PA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,464.600849 +PA,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,44.913 +PA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.1249 +PA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.7143 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,28.87661289 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7895.917896 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.534550951 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,582.0351357 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,63.08515863 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,218.5336575 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030030952 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,786.5904665 +PA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.647325 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.015 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.283372 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.0944727 +PA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,8759.62686 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,730.384309 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,734.5170339 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,73.69360359 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.998984854 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001214922 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,103.2883643 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,275.3591981 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,6.01708271 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.09049899 +PA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,258.0818385 +PA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0328 +PA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.49921255 +PA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,343.3712709 +PA,PM2.5 Filterable,2A1_Cement-production,,TON,386.6503416 +PA,PM2.5 Filterable,2A2_Lime-production,,TON,72.13570388 +PA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4264.061975 +PA,PM2.5 Filterable,2A6_Other-minerals,,TON,3312.473418 +PA,PM2.5 Filterable,2B_Chemicals-other,,TON,120.8080042 +PA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1122.154049 +PA,PM2.5 Filterable,2C3_Aluminum-production,,TON,31.90741958 +PA,PM2.5 Filterable,2C5_Lead-production,,TON,41.1747198 +PA,PM2.5 Filterable,2C6_Zinc-production,,TON,16.8371599 +PA,PM2.5 Filterable,2C7_Other-metal,,TON,238.8046189 +PA,PM2.5 Filterable,2C7a_Copper-production,,TON,39.65265033 +PA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.3558 +PA,PM2.5 Filterable,2D3d_Coating-application,,TON,68.89476053 +PA,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.1702447 +PA,PM2.5 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,6.3216 +PA,PM2.5 Filterable,2D3h_Printing,,TON,6.0616446 +PA,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,17.05167184 +PA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,276.8368025 +PA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,246.5273301 +PA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,607.0392196 +PA,PM2.5 Filterable,2I_Wood-processing,,TON,30.79270521 +PA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3233.479312 +PA,PM2.5 Filterable,3Dc_Other-farm,,TON,10858.64183 +PA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,99.09809055 +PA,PM2.5 Filterable,5C_Incineration,,TON,24.548 +PA,PM2.5 Filterable,5C_Incineration,biomass,TON,58.6779214 +PA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,6267.014501 +PA,PM2.5 Filterable,5C_Open-burning-residential,,TON,3936.89618 +PA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,182.0490821 +PA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.1178 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,140.42235 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,23.172462 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2125.970936 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4606.66682 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,48.5377 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1846.440431 +PA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,716.554354 +PA,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,104.9885 +PA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,5.478 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,274.8811384 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,81.52425626 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.367374972 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,43.65575816 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8302.17617 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,84.68630075 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,779.2358801 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,336.7402702 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,331.4692993 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.057454615 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1837.808728 +PA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,9.700159 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0179851 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.382372 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.960773 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1133.698111 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,56.99807887 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001276717 +PA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,210.899807 +PA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,8759.62686 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,128.125494 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2122.006331 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,45.0685264 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,103.6149695 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,140.8147132 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,20.28029331 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.51015895 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2332.844335 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.423109971 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1328.8191 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,73.06525484 +PA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.8078322 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,538.9247443 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.032323262 +PA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,62.11144619 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,770.3599096 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,791.9967306 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,97.9142571 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.27451943 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001230109 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,259.1457415 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,223.9644786 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,108.687514 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.536193279 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,79.25415665 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,932.4132403 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,21958.08827 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,706.644671 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,15.44144578 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,58.99009226 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,401.0974177 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.49369131 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000291252 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.0653207 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,660.7085634 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.18888184 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,132.6177696 +PA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,377.7809927 +PA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.0828 +PA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.99921255 +PA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,603.3449885 +PA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,548.9107608 +PA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,102.7878254 +PA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4265.176975 +PA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3570.820302 +PA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,155.4821655 +PA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2196.160698 +PA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,66.76461878 +PA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,126.6701153 +PA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,205.8372159 +PA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,423.0927336 +PA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,142.7957474 +PA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.3558 +PA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,70.34026053 +PA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.1702447 +PA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,6.3216 +PA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,14.7251446 +PA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,19.77517384 +PA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,347.8054387 +PA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3819.433522 +PA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,632.4198596 +PA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,30.79270521 +PA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3233.479312 +PA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10859.43683 +PA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,13.869794 +PA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,209.9689235 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,43.5782042 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,138.169736 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6267.014501 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3936.89618 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,182.0490821 +PA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.1280111 +PA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,4541.1406 +PA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,393.1281 +PA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,6691.2155 +PA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,257127.058 +PA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,534.0228 +PA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,440.2183 +PA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1313.74 +PA,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,481.2178 +PA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.8344 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.12091331 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.817774897 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.295785534 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1205.958402 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,529.9009383 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1.092424955 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,627.8834072 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,13650.50547 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1202.036094 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.277307873 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3594.341644 +PA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,11.2281 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,4.52 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.1371 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,25.92839208 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.663101924 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.03514E-05 +PA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,363.5989502 +PA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.861723372 +PA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,820.5541744 +PA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.741442205 +PA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.50404464 +PA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.760838646 +PA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,3.573095079 +PA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.035836979 +PA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,85.77521697 +PA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.054133922 +PA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,47.10512897 +PA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,21.48805548 +PA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.21469149 +PA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,10.80591685 +PA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004904851 +PA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,368.5562356 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,44.00840754 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1474.221048 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2128.952079 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,27.69304285 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001101061 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,75.18969817 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.867936699 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7.695271583 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.11275907 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.705761175 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,19.21604162 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,543.8613773 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,14132.89455 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,308.8286298 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,82.31177277 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.041913737 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.252575339 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.28426E-05 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.086242213 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,8.973846677 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.000411113 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.64869244 +PA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,105.3257407 +PA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.1726 +PA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5310.403154 +PA,Sulfur Dioxide,2A1_Cement-production,,TON,2760.669 +PA,Sulfur Dioxide,2A2_Lime-production,,TON,884.8262 +PA,Sulfur Dioxide,2A6_Other-minerals,,TON,3043.7084 +PA,Sulfur Dioxide,2B_Chemicals-other,,TON,161.2795 +PA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1450.9793 +PA,Sulfur Dioxide,2C3_Aluminum-production,,TON,4.5768 +PA,Sulfur Dioxide,2C5_Lead-production,,TON,56.5685 +PA,Sulfur Dioxide,2C6_Zinc-production,,TON,284.7987 +PA,Sulfur Dioxide,2C7_Other-metal,,TON,177.0758 +PA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.4214 +PA,Sulfur Dioxide,2D3d_Coating-application,,TON,1.7881 +PA,Sulfur Dioxide,2D3h_Printing,,TON,0.0816 +PA,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,2.7289 +PA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,242.4078 +PA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.2913 +PA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,472.4111 +PA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.475 +PA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.002025 +PA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,257.1584 +PA,Sulfur Dioxide,5C_Incineration,,TON,100.9858209 +PA,Sulfur Dioxide,5C_Incineration,biomass,TON,463.5540994 +PA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,793.8195131 +PA,Sulfur Dioxide,5C_Open-burning-residential,,TON,155.130627 +PA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,13.69479325 +PA,Volatile Organic Compounds,11C_Other-natural,,TON,439423.86 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,87.4189 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.2871 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,19.5161 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,415.7186 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,9.3124 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,454.1147 +PA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,793.9389599 +PA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,313.1747091 +PA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1433.991931 +PA,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,74.9475 +PA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,14.9097 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,369.2554806 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,545.9879633 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,112.4726642 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,11.99909643 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,365.078248 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,38.13972721 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,662.5786591 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,62.32173746 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.59220212 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.849921836 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2234.108249 +PA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,32.0245 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0243 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,4.8116 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,14.7108 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1555.670526 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,552.9529107 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.0942706 +PA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,889.9054782 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1196.237652 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,60818.22792 +PA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,263.248215 +PA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3235.165054 +PA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,346.8824681 +PA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,367.9988527 +PA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,5.6667519 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4213.654337 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,49.40473764 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2397.976734 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1341.937015 +PA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1955.366562 +PA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,946.6129469 +PA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.605827018 +PA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,56.24198605 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,31.314654 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,735.9015099 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,36.59252958 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.522142773 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001449631 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,623.8624109 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,327.2311642 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,3403.116409 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,60.69000108 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,115.0663089 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,16591.48623 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,23536.9748 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,232.2305447 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,5.074649404 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,754.5244538 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,468.8784868 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,219.3836289 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.047524959 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.1833604 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,23367.70549 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,50.1685872 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,9418.170201 +PA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,7209.537288 +PA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,843.2172312 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,858.0452106 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1230.384957 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3530.228155 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,12077.7928 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,12.9722 +PA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,112080.4234 +PA,Volatile Organic Compounds,2A1_Cement-production,,TON,25.3531 +PA,Volatile Organic Compounds,2A2_Lime-production,,TON,21.3411 +PA,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,2.765 +PA,Volatile Organic Compounds,2A6_Other-minerals,,TON,211.4774984 +PA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1638.501902 +PA,Volatile Organic Compounds,2B_Chemicals-other,,TON,1133.1465 +PA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1419.0886 +PA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,227.7543 +PA,Volatile Organic Compounds,2C5_Lead-production,,TON,2.3852 +PA,Volatile Organic Compounds,2C6_Zinc-production,,TON,9.086 +PA,Volatile Organic Compounds,2C7_Other-metal,,TON,295.3616 +PA,Volatile Organic Compounds,2C7a_Copper-production,,TON,29.812 +PA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,53962.1772 +PA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,18.356 +PA,Volatile Organic Compounds,2D3d_Coating-application,,TON,28093.00243 +PA,Volatile Organic Compounds,2D3e_Degreasing,,TON,9754.41715 +PA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,10.002 +PA,Volatile Organic Compounds,2D3h_Printing,,TON,37746.4893 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,12311.30021 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0.484565117 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,7674.935147 +PA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,905.6757 +PA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,860.0280545 +PA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1685.4998 +PA,Volatile Organic Compounds,2I_Wood-processing,,TON,1 +PA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,825.274 +PA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,417.073 +PA,Volatile Organic Compounds,3B3_Manure-swine,,TON,769.178 +PA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,469.68 +PA,Volatile Organic Compounds,3Dc_Other-farm,,TON,1.21 +PA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1402.887361 +PA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,7.44054 +PA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,251.37 +PA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,2061.7541 +PA,Volatile Organic Compounds,5C_Incineration,,TON,8.016876625 +PA,Volatile Organic Compounds,5C_Incineration,biomass,TON,37.93419252 +PA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,5547.174627 +PA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,896.195905 +PA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,265.9732541 +PA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,216.8823 +PA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,7.1873 +PA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0573 +PR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,124.124 +PR,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.028 +PR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,67.1365 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.097012309 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.034645119 +PR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.125 +PR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.865032668 +PR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.125536724 +PR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.623661609 +PR,Ammonia,1A3bii_Road-LDV,light_oil,TON,391.1983527 +PR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.06640483 +PR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,57.28243864 +PR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.130881685 +PR,Ammonia,1A3biii_Road-bus,light_oil,TON,0.197826096 +PR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.028156289 +PR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.092027969 +PR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.003858385 +PR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.49829699 +PR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.305920572 +PR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.13995124 +PR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.498647669 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.5835 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.009 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.464681679 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.938813878 +PR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.483344115 +PR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.863393568 +PR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.256853511 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.006329312 +PR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018647682 +PR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.740339628 +PR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.258106062 +PR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.471377667 +PR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.000250105 +PR,Ammonia,5B_Compost-biogas,Other_Fuel,TON,75.65148 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,135121.9266 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,95131.88213 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5380.674029 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,598926.0366 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,10502.20191 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.699141693 +PR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,99607.91619 +PR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5877729.557 +PR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,75243.4038 +PR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,964846.3681 +PR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,73194.39828 +PR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,5815.628333 +PR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1089.282012 +PR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7166.571025 +PR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,172.2082969 +PR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,537599.3512 +PR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,95593.95374 +PR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,75064.6332 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,57146.43743 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,78601.73401 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3451.189966 +PR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,59475.83758 +PR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,363466.784 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,31616.03195 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,477.756493 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.120476585 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2285.95862 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,49679.34943 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,31783.51621 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,104797.8091 +PR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,194.6559 +PR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,861.3 +PR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,2135.15 +PR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,203.78 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,610.462624 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2385.403351 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,142.6058889 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,68.995187 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.94192 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.0025 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,12.5939 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1904.274728 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2238.857735 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.156915752 +PR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2255.540456 +PR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,694.2600035 +PR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,90935.70953 +PR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,560.772164 +PR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18341.8494 +PR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,143.8469305 +PR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,193.5646284 +PR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,6.08296294 +PR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,19.92456584 +PR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,15.94991083 +PR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,678.283531 +PR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1419.062446 +PR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2749.153 +PR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,0.04833195 +PR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,742.546463 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,37.25057163 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.157716 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.0113 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.881248255 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,245.6649371 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,17200.02986 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,73.75313035 +PR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,202.0880949 +PR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,85038.14974 +PR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,110.5883557 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,105.9554398 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.013350071 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.06414871 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,9390.297923 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,63.04969192 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,12137.4583 +PR,Carbon Monoxide,2A1_Cement-production,,TON,0 +PR,Carbon Monoxide,2A2_Lime-production,,TON,0 +PR,Carbon Monoxide,2A6_Other-minerals,,TON,0 +PR,Carbon Monoxide,2C5_Lead-production,,TON,0 +PR,Carbon Monoxide,2D3e_Degreasing,,TON,0 +PR,Carbon Monoxide,2H2_Food-and-beverage,,TON,382.7808885 +PR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.84 +PR,Carbon Monoxide,3Dc_Other-farm,,TON,0 +PR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,44.51 +PR,Carbon Monoxide,5C_Incineration,biomass,TON,0 +PR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4.0635914 +PR,Carbon Monoxide,5C_Open-burning-residential,,TON,1088.262446 +PR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,4.886826361 +PR,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.587035775 +PR,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14.09683797 +PR,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,63.65470461 +PR,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,20.15581384 +PR,Methane,1A2g_Construction_and_Mining,light_oil,TON,8.096459259 +PR,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.1090659 +PR,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.970547239 +PR,Methane,1A3bii_Road-LDV,light_oil,TON,210.3794582 +PR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.17475188 +PR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,49.55220798 +PR,Methane,1A3biii_Road-bus,diesel_oil,TON,1.619281207 +PR,Methane,1A3biii_Road-bus,light_oil,TON,0.35888997 +PR,Methane,1A3biii_Road-bus,natural_gas,TON,5.77139106 +PR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.150958607 +PR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.031812825 +PR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.27550866 +PR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.652023717 +PR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.25681625 +PR,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.848347952 +PR,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,57.37105491 +PR,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,48.45957329 +PR,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.119517346 +PR,Methane,1A4bi_Residential-mobile,light_oil,TON,332.3064742 +PR,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.879644122 +PR,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.452135478 +PR,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.011490602 +PR,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.098457772 +PR,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,89.35990167 +PR,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.825593646 +PR,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,107.9723637 +PR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,5063.094 +PR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1728.9 +PR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,18596.43 +PR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,311.93 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,761.0788344 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,311.9141633 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,20.90314146 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,279.3213423 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,80.2151 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.0284 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,22.0433 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3437.824153 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,28.33051455 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.030195577 +PR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,794.153779 +PR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,225.9192614 +PR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,8891.122409 +PR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,239.929026 +PR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1850.315992 +PR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,388.8225357 +PR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,17.44562429 +PR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.69110634 +PR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30.95261218 +PR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,0.914766165 +PR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1831.399807 +PR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,163.6381973 +PR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,117.86683 +PR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,0.4908707 +PR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6954.523601 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,164.1777364 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.82707 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.12525 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.46641688 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,448.5249958 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,220.8693377 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.70272045 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,471.6236598 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,765.7218758 +PR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,237.3359755 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.092322329 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002984419 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.64279131 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,98.12551872 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,333.1744505 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,719.0787081 +PR,Nitrogen Oxides,2A1_Cement-production,,TON,0 +PR,Nitrogen Oxides,2A2_Lime-production,,TON,0 +PR,Nitrogen Oxides,2A6_Other-minerals,,TON,0 +PR,Nitrogen Oxides,2C5_Lead-production,,TON,0 +PR,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +PR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +PR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1.84 +PR,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +PR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,59.3525 +PR,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +PR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0.12022463 +PR,Nitrogen Oxides,5C_Open-burning-residential,,TON,76.81855039 +PR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.217192347 +PR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.325824415 +PR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,219.0672677 +PR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.277521046 +PR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.66762067 +PR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.143284654 +PR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.147412315 +PR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.05615738 +PR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.020369595 +PR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.034082207 +PR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.931783521 +PR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.765746375 +PR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.822481466 +PR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,269.6199154 +PR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,401.2 +PR,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1881.4798 +PR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,49.19001388 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.861185848 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.05563536 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.001394508 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.703729462 +PR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,4348.309956 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.439945537 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.29978752 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00612159 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.204789673 +PR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM10 Filterable,2A1_Cement-production,,TON,0 +PR,PM10 Filterable,2A2_Lime-production,,TON,0 +PR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1501.55542 +PR,PM10 Filterable,2A6_Other-minerals,,TON,0 +PR,PM10 Filterable,2C5_Lead-production,,TON,0 +PR,PM10 Filterable,2D3e_Degreasing,,TON,0 +PR,PM10 Filterable,2H2_Food-and-beverage,,TON,92.79132114 +PR,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1.122 +PR,PM10 Filterable,3Dc_Other-farm,,TON,28.42673554 +PR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,103.17 +PR,PM10 Filterable,5C_Incineration,biomass,TON,0 +PR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0.40876373 +PR,PM10 Filterable,5C_Open-burning-residential,,TON,354.7932645 +PR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,0.809235542 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,290.7216 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,401.2 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2137.69 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,49.19002524 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,51.48189379 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.14471186 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.668355081 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,11.28172472 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,11.42605953 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.003200391 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1.85179017 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,292.6262511 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.26853546 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319292 +PR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,59.20868931 +PR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4348.309956 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,16.46788311 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,623.0638145 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.91776508 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,95.66798532 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,33.08625208 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.910451119 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.169593121 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.72961681 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.023704898 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,177.3487976 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.4086904 +PR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.59572769 +PR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,0.01208298 +PR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,216.6524886 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.37561048 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.4848945 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01405 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.548452832 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,39.86066152 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,20.33056449 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.434661719 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,33.55190395 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,363.436858 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19.13700649 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.077459973 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.5222E-05 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.60289181 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,87.23760048 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.026370796 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,48.67246732 +PR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,0 +PR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +PR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1501.55542 +PR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +PR,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +PR,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1152.113872 +PR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1.122 +PR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,28.42673554 +PR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,103.17 +PR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0.40876373 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,354.7932645 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.809235542 +PR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,80.75506287 +PR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,0 +PR,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1330.7398 +PR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1.33431E-05 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.917115913 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.14815632 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.68522432 +PR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1056.719709 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.722760727 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.70660211 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.197089673 +PR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM2.5 Filterable,2A1_Cement-production,,TON,0 +PR,PM2.5 Filterable,2A2_Lime-production,,TON,0 +PR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,246.5590999 +PR,PM2.5 Filterable,2A6_Other-minerals,,TON,0 +PR,PM2.5 Filterable,2C5_Lead-production,,TON,0 +PR,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +PR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.894768902 +PR,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,0.06 +PR,PM2.5 Filterable,3Dc_Other-farm,,TON,2.20533691 +PR,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +PR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0.31511595 +PR,PM2.5 Filterable,5C_Open-burning-residential,,TON,324.9159429 +PR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0.623842068 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,101.8567515 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1586.95 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.0000247 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,49.92120774 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.1052899 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.667648947 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.208915552 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.519116 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.00119 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1.832394 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,283.8475154 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.97741837 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000319292 +PR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,56.17451003 +PR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1056.719709 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,9.968863481 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,157.1893608 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.9096432 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.10574008 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,23.66057693 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.288177043 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.052591194 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.867701784 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.014017482 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,113.3702005 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.745629872 +PR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.37508946 +PR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,202.3272026 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.341123473 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.88670913 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00522 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.520436232 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,38.66485406 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,18.76439788 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.434661719 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.54534862 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,334.3785309 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.56289784 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.071268485 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.5222E-05 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.5248043 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,80.25944075 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.81557732 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,44.7786609 +PR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,246.5590999 +PR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1062.217187 +PR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.06 +PR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2.20533691 +PR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0.31511595 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,324.9159429 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.623842068 +PR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,415.1705 +PR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,244.6 +PR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,25937.51 +PR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.032001125 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.241357111 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.675884867 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.042354279 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.82403241 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,148.14613 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.026181223 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,6.641318316 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.174271998 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.50932E-05 +PR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,710.0190743 +PR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.855047844 +PR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,117.0350457 +PR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.650301312 +PR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.20430307 +PR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.635562662 +PR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.115907204 +PR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00576719 +PR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.061845034 +PR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.003432165 +PR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.616144536 +PR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.905215903 +PR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.496060669 +PR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1578.445886 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.02522852 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.42118089 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.021119 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.667782071 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.328472031 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.019334503 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.697683463 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.59733616 +PR,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.364564903 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.008701063 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.71212E-07 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027001258 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.900654124 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.012883693 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.907218837 +PR,Sulfur Dioxide,2A1_Cement-production,,TON,0 +PR,Sulfur Dioxide,2A2_Lime-production,,TON,0 +PR,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +PR,Sulfur Dioxide,2C5_Lead-production,,TON,0 +PR,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +PR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +PR,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +PR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,11.54347 +PR,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +PR,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0.039914564 +PR,Sulfur Dioxide,5C_Open-burning-residential,,TON,12.80308725 +PR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.04692903 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,44.021885 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,7.49 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,189.5 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,7.490700913 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,69.72925588 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,69.59923411 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13.89130887 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,40.16901158 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.0436728 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.00058 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1.6622 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,382.8885341 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,158.0892098 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023575946 +PR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,256.2811209 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,59.23399093 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7431.718335 +PR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,59.9500091 +PR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1369.837366 +PR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,37.41580968 +PR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,9.715693203 +PR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.619357358 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.971488564 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,0.618135698 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,170.1563732 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,59.21402124 +PR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,426.574809 +PR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,0.01812447 +PR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,265.9023333 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.95375662 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.09606338 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00251 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.64951676 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,56.49270892 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,722.8502277 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.47515107 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,47.16398084 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5845.735756 +PR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.65654477 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.195235806 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002483838 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.75280706 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2973.140864 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,16.93616242 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4217.818967 +PR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,376.9411672 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,38.408028 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1592.171861 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2228.099234 +PR,Volatile Organic Compounds,2A1_Cement-production,,TON,0 +PR,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +PR,Volatile Organic Compounds,2A6_Other-minerals,,TON,0 +PR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,411.076191 +PR,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +PR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,16635.64541 +PR,Volatile Organic Compounds,2D3d_Coating-application,,TON,2463.89912 +PR,Volatile Organic Compounds,2D3e_Degreasing,,TON,0 +PR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,3.915001 +PR,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,2614.9675 +PR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +PR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +PR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,140.2597669 +PR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,0.1536 +PR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0 +PR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,96.96 +PR,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,535.2917 +PR,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +PR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0.27892119 +PR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,73.96393553 +PR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,0.911432087 +RI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.701 +RI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,64.4705 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.518773317 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.024049047 +RI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.05950001 +RI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.502047095 +RI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.28904805 +RI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,13.84315415 +RI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.412895573 +RI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.036495592 +RI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.88232692 +RI,Ammonia,1A3bii_Road-LDV,light_oil,TON,233.5282948 +RI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.3433779 +RI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.344508814 +RI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.912578103 +RI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.255588131 +RI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.50104031 +RI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.221647535 +RI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.1677119 +RI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.8526358 +RI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.0997589 +RI,Ammonia,1A3c_Rail,diesel_oil,TON,0.0185576 +RI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.747884835 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.524110667 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.342444999 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.69459783 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.36994808 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.244935047 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.494949197 +RI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.073856149 +RI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.004590735 +RI,Ammonia,1A4bi_Residential-stationary,biomass,TON,57.46801821 +RI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,57.60301 +RI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.16200002 +RI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,197.5122735 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.030539021 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001899554 +RI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005164403 +RI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.190443153 +RI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.123744243 +RI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.8579533 +RI,Ammonia,2B_Chemicals-other,,TON,1.003 +RI,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.805 +RI,Ammonia,2D3d_Coating-application,,TON,1.288 +RI,Ammonia,2D3e_Degreasing,,TON,0.001 +RI,Ammonia,2D3h_Printing,,TON,0.7535 +RI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,3.53551 +RI,Ammonia,3B1a_Cattle-dairy,,TON,18.003 +RI,Ammonia,3B1b_Cattle-non-dairy,,TON,25.422 +RI,Ammonia,3B2_Manure-sheep,,TON,5.10312 +RI,Ammonia,3B3_Manure-swine,,TON,13.596 +RI,Ammonia,3B4_Manure-other,,TON,46.8204 +RI,Ammonia,3B4_Manure-poultry,,TON,14.7692088 +RI,Ammonia,3B4d_Manure-goats,,TON,4.891524 +RI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,19.560028 +RI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,22.54569 +RI,Ammonia,5D1_Wastewater-domestic,,TON,3.2555 +RI,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.0002 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,63899.8312 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,66633.98951 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3756.436043 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,173939.1798 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3052.686604 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.3490968 +RI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,37979.251 +RI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3090077.294 +RI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12845.061 +RI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,127999.4773 +RI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,59911.1247 +RI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,7816.554 +RI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,664457.832 +RI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6483.488 +RI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,501729.1 +RI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,83108.18 +RI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22784.225 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30122.0429 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,41434.72374 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1807.24681 +RI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,9088.09557 +RI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,74698.30024 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3759.856417 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,135.8301326 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00197045 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,633.0891 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,13385.45999 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15238.16151 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,61446.73 +RI,Carbon Monoxide,11C_Other-natural,,TON,1846.241 +RI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,43.5105 +RI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,926.81 +RI,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,13.5645 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,247.4783313 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1638.340313 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,98.42495277 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2.334120619 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,31.51172661 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.262145768 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,373.8168589 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,553.0324726 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,621.6920823 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.07843021 +RI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,679.7762483 +RI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,588.3586 +RI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,50894.38704 +RI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,187.13613 +RI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2981.307275 +RI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,139.668112 +RI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,413.389602 +RI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1022.569431 +RI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,120.131743 +RI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,836.21866 +RI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2155.5209 +RI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1048.2127 +RI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5.931309 +RI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,693.5680632 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,57.301555 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,71.04285 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.433906 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,574.105539 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,129.5093306 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8555.583917 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38.7811481 +RI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,30.76238983 +RI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,17531.45954 +RI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,9467.417485 +RI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,288.0151 +RI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.8099996 +RI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,416.744308 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.50545229 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,38.01144329 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00021841 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.999428 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,2846.49583 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,30.10537047 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7126.573 +RI,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,34.9535 +RI,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,87.2985 +RI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.0105 +RI,Carbon Monoxide,2H2_Food-and-beverage,,TON,147.732049 +RI,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,7.078 +RI,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,16.2765 +RI,Carbon Monoxide,5C_Incineration,,TON,2.643424745 +RI,Carbon Monoxide,5C_Incineration,biomass,TON,30.27536464 +RI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,9456.856 +RI,Carbon Monoxide,5C_Open-burning-residential,,TON,475.82812 +RI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,41.3112854 +RI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.08080397 +RI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.910542922 +RI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,44.5352532 +RI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,5.854353764 +RI,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.429978794 +RI,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.05451368 +RI,Methane,1A3bii_Road-LDV,diesel_oil,TON,3.7393242 +RI,Methane,1A3bii_Road-LDV,light_oil,TON,138.8075794 +RI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.824645 +RI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8.844388028 +RI,Methane,1A3biii_Road-bus,diesel_oil,TON,1.5743925 +RI,Methane,1A3biii_Road-bus,light_oil,TON,0.638822715 +RI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.3821988 +RI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.177200441 +RI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.57111 +RI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.019413 +RI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.371246 +RI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.974347199 +RI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,31.64858315 +RI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,25.5320259 +RI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.32226661 +RI,Methane,1A4bi_Residential-mobile,light_oil,TON,78.50263486 +RI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.106526057 +RI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.151651531 +RI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000187979 +RI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0272771 +RI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,19.03178732 +RI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.39460533 +RI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,64.118093 +RI,Nitrogen Oxides,11C_Other-natural,,TON,159.5651 +RI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,15.933 +RI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,600.929 +RI,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,2.493 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,331.730017 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,218.4455423 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14.46059453 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0.854590037 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,150.2566176 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.70169948 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,489.2062063 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,998.2891898 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,9.893885097 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.01509249 +RI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,256.9894494 +RI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,127.753384 +RI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,5454.200289 +RI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,58.25004 +RI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,272.7310022 +RI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,350.489817 +RI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,36.10173933 +RI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3722.13265 +RI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,15.4208693 +RI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2268.1443 +RI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,230.86643 +RI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,44.53655 +RI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,60.23979 +RI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3901.432598 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,21.015005 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,309.522365 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,51.585495 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,720.647055 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,236.4184419 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,142.8656259 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9.84861736 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,72.11318552 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,198.6685865 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,158.270729 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1036.8545 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.916005 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1005.5391 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.07544093 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.539739347 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.8815E-05 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.437741 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,31.8210703 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,159.8615985 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,455.7339 +RI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,14.05 +RI,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,12.14 +RI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,1.241 +RI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +RI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,22.879 +RI,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,6.109 +RI,Nitrogen Oxides,5C_Incineration,,TON,3.233898576 +RI,Nitrogen Oxides,5C_Incineration,biomass,TON,45.95359642 +RI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,279.7887 +RI,Nitrogen Oxides,5C_Open-burning-residential,,TON,33.587822 +RI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.83605944 +RI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.11937498 +RI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,145.4985715 +RI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.05181353 +RI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.921267842 +RI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.127394243 +RI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.312485855 +RI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.78816836 +RI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.132377407 +RI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.9731664 +RI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.970407 +RI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.3639132 +RI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.00232432 +RI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,26.866385 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3.901855674 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.34049202 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.010243193 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,7.562255813 +RI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1238.48981 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,46.95176171 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.56406354 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.372554513 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.5638156 +RI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,62.21123 +RI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.17496 +RI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.08354848 +RI,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.184 +RI,PM10 Filterable,2A1_Cement-production,,TON,5.73 +RI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,2000.38578 +RI,PM10 Filterable,2A6_Other-minerals,,TON,345.22901 +RI,PM10 Filterable,2C_Iron-steel-alloy,,TON,2.35579 +RI,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.0544478 +RI,PM10 Filterable,2H2_Food-and-beverage,,TON,28.9426886 +RI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,2.77496709 +RI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,54.02802 +RI,PM10 Filterable,3Dc_Other-farm,,TON,147.59564 +RI,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,79.6172 +RI,PM10 Filterable,5C_Incineration,biomass,TON,1.89322 +RI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,951.2812 +RI,PM10 Filterable,5C_Open-burning-residential,,TON,155.128635 +RI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,6.8409524 +RI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.0025 +RI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,48.848 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.9148717 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.022180035 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.460714805 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4.016628057 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,11.87417864 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.654557586 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,16.09495054 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,84.98500894 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.724618979 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +RI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,17.47838921 +RI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1238.48981 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,8.746702 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,454.1763977 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.513939 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.89945013 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,29.0442639 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.676515666 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,245.867797 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.8365518 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,191.16545 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.403297 +RI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.481563 +RI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1.482826 +RI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,98.00226909 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,50.17153385 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,32.06465901 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.374873551 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.06557559 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.01381979 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.71917731 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.227526145 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,5.105106753 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,68.58107349 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1320.163722 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,137.09535 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.3855602 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.41722691 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.013640322 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.416454164 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.49022E-07 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.720632 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,14.7928125 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.341830065 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,26.160294 +RI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.184 +RI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,5.73 +RI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2000.38578 +RI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,347.456876 +RI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5.939 +RI,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.612 +RI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,385.292245 +RI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3.094 +RI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,54.02802 +RI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,147.59564 +RI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,81.226 +RI,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.037307133 +RI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.001838767 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,951.2812 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,155.128635 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.8409524 +RI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.00232432 +RI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,26.794195 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2.67492501 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.978774302 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.290533544 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,7.535573838 +RI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,260.71752 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,40.3828727 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.22566884 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.743962939 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.49336461 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,47.81053 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.13446007 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.14595201 +RI,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.184 +RI,PM2.5 Filterable,2A1_Cement-production,,TON,2.02235 +RI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,200.038578 +RI,PM2.5 Filterable,2A6_Other-minerals,,TON,43.6991971 +RI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2.30671 +RI,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.0424478 +RI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.990871123 +RI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1.32008509 +RI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,10.772885 +RI,PM2.5 Filterable,3Dc_Other-farm,,TON,29.51912 +RI,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,21.673838 +RI,PM2.5 Filterable,5C_Incineration,biomass,TON,0.561551 +RI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,733.3433 +RI,PM2.5 Filterable,5C_Open-burning-residential,,TON,142.065159 +RI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.27372065 +RI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.0025 +RI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,48.77581 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23.19147903 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.998462489 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.460486166 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2.775076326 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,11.32702979 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.814195376 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,16.01824411 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,82.43545103 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.349663854 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +RI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,15.76943698 +RI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,260.71752 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,5.5875127 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,169.4419784 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.452944 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.098704138 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,20.7660905 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.8424588 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,173.526319 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.300244228 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,129.65393 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.092556 +RI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.9929929 +RI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1.3642 +RI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,94.50086947 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,43.42257328 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.60102346 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.968530561 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.8047501 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,20.38339898 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.893380257 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.227526145 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,4.951953709 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,63.09711674 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1305.043192 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,122.69425 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.3450604 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.47962772 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.953232305 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.383138469 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.49022E-07 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6990133 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,13.60961624 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.241574387 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,24.0674623 +RI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.184 +RI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,2.02235 +RI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,200.038578 +RI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,44.0195671 +RI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3.54892 +RI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.0965 +RI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,357.340738 +RI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1.639118 +RI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,10.772885 +RI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,29.51912 +RI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,23.282638 +RI,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.057940373 +RI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.649532527 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,733.3433 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,142.065159 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.27372065 +RI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.8575 +RI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,30.24614 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.967873024 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.414758262 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.025463603 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.098274624 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.88774951 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,38.82887718 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5.267419412 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.928731371 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.050662618 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-06 +RI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,30.91132401 +RI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.33025949 +RI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,64.40909743 +RI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.1125797 +RI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.669676514 +RI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.523803048 +RI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.162861204 +RI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.73223667 +RI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.135083266 +RI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.3278275 +RI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.7315498 +RI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.4739852 +RI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.02091633 +RI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,113.0182063 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.407498 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,314.87751 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,105.08648 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.165611915 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.351990799 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.700356045 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.010124619 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.106580698 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.357145082 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,27.69755433 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2453.886 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.901201 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,6.25064514 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.04252468 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.002472307 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.0978E-08 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.007477852 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.243046537 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.485613096 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.1184791 +RI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.069 +RI,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,5.8741 +RI,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0075 +RI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +RI,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0125 +RI,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,28.581 +RI,Sulfur Dioxide,5C_Incineration,,TON,1.976595334 +RI,Sulfur Dioxide,5C_Incineration,biomass,TON,8.533726666 +RI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,92.88981 +RI,Sulfur Dioxide,5C_Open-burning-residential,,TON,5.59798 +RI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.396719242 +RI,Volatile Organic Compounds,11C_Other-natural,,TON,16899.256 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.1445 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,66.0825 +RI,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,8.2585 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31.60531381 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,46.5563483 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9.67178328 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.067312599 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.44245757 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.069564967 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,32.36756159 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,111.1980734 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,41.42783866 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783811 +RI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,81.44216945 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,62.7306 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,4827.176265 +RI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21.608483 +RI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,223.1044713 +RI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,34.1253276 +RI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,19.28181182 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,234.585251 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,4.9133532 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,218.53295 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,91.20705 +RI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,196.79996 +RI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2.342126 +RI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,55.89265829 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.792752119 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.34153587 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.005018383 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.49479288 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29.78188521 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,301.0703798 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.51906042 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,7.190364574 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1152.720229 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1426.010187 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,40.322085 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.11340006 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,57.2975617 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.30179244 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.72964249 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.0634E-05 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.3155759 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,465.6980169 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.07460681 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1635.894763 +RI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,51.600205 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,152.721786 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,61.39156908 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,212.5850217 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,307.3410291 +RI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +RI,Volatile Organic Compounds,2B_Chemicals-other,,TON,85.27961 +RI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1.6075 +RI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,8.81701 +RI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4703.22395 +RI,Volatile Organic Compounds,2D3d_Coating-application,,TON,2210.948114 +RI,Volatile Organic Compounds,2D3e_Degreasing,,TON,690.7512 +RI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,1.29244 +RI,Volatile Organic Compounds,2D3h_Printing,,TON,2117.64185 +RI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +RI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +RI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,72.56348409 +RI,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,178.072915 +RI,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1.447 +RI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,2.041 +RI,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.092 +RI,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1.157 +RI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6.3920519 +RI,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,70.00039 +RI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,159.52812 +RI,Volatile Organic Compounds,5C_Incineration,,TON,2.679910343 +RI,Volatile Organic Compounds,5C_Incineration,biomass,TON,8.901123635 +RI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,649.1094 +RI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,32.339729 +RI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,7.7048811 +RI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,16.429 +RI,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,1.035 +RI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,3.16461 +SC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,6.92078061 +SC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,1100.035427 +SC,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.01202 +SC,Ammonia,1A1a_Public-Electricity,natural_gas,TON,342.0112683 +SC,Ammonia,1A1b_Pet-refining,natural_gas,TON,0.0014416 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.213281498 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.107549037 +SC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.718443716 +SC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,343.6420338 +SC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.079231849 +SC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,4.535196048 +SC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.028168288 +SC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.015156295 +SC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,118.9661821 +SC,Ammonia,1A2c_Chemicals,natural_gas,TON,0.037524 +SC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,12.13409705 +SC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.312915958 +SC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,11.96612496 +SC,Ammonia,1A3bii_Road-LDV,light_oil,TON,1723.900954 +SC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.32241857 +SC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,61.9036959 +SC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,7.335415594 +SC,Ammonia,1A3biii_Road-bus,light_oil,TON,2.028973785 +SC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,60.58197874 +SC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,19.79069001 +SC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.3998922 +SC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.858393386 +SC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.5101435 +SC,Ammonia,1A3c_Rail,diesel_oil,TON,2.501274188 +SC,Ammonia,1A3c_Rail,light_oil,TON,0.001747532 +SC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.966055285 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.340531745 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.178022258 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.072381947 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016870494 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.890198214 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.816913496 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.650572337 +SC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.547322201 +SC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.727776311 +SC,Ammonia,1A4bi_Residential-stationary,biomass,TON,135.1917014 +SC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.861000239 +SC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.810000518 +SC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,319.7763899 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.411608834 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.158763924 +SC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.019832262 +SC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.672335168 +SC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.743834523 +SC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.239635034 +SC,Ammonia,2A6_Other-minerals,Other_Fuel,TON,15.55095 +SC,Ammonia,2B_Chemicals-other,,TON,34.49392 +SC,Ammonia,2C_Iron-steel-alloy,,TON,1.48 +SC,Ammonia,2D3d_Coating-application,,TON,0.05687 +SC,Ammonia,2D3h_Printing,,TON,0.41 +SC,Ammonia,2H1_Pulp-and-paper,,TON,494.791128 +SC,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,464.57 +SC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,64.3781457 +SC,Ammonia,3B1a_Cattle-dairy,,TON,687.056 +SC,Ammonia,3B1b_Cattle-non-dairy,,TON,1290.3 +SC,Ammonia,3B2_Manure-sheep,,TON,27.4626 +SC,Ammonia,3B3_Manure-swine,,TON,4563.192 +SC,Ammonia,3B4_Manure-other,,TON,581.71344 +SC,Ammonia,3B4_Manure-poultry,,TON,9357.178151 +SC,Ammonia,3B4d_Manure-goats,,TON,303.97884 +SC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,2580.69255 +SC,Ammonia,3F_Ag-res-on-field,,TON,987.065783 +SC,Ammonia,5B_Compost-biogas,Other_Fuel,TON,104.43943 +SC,Ammonia,5D1_Wastewater-domestic,,TON,12.87 +SC,Ammonia,5D2_Wastewater-industrial,biomass,TON,393.8 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,272621.3483 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,297416.2509 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16782.26012 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1493807.668 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,26179.96191 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.74547753 +SC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,427288.3184 +SC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,19960781.04 +SC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,78074.9997 +SC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,892243.9655 +SC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,507321.9523 +SC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,66953.85192 +SC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3043307.677 +SC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,514245.3302 +SC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1675983.242 +SC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,139896.9053 +SC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,76419.359 +SC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3100.86087 +SC,Carbon Dioxide,1A3c_Rail,light_oil,TON,136.4460143 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,100463.7016 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,138192.8413 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6036.135114 +SC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,67348.37548 +SC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,428037.1174 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,296913.5688 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11348.61746 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.770713829 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2431.1714 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,114104.3618 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,91596.73272 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,301965.8081 +SC,Carbon Monoxide,11C_Other-natural,,TON,110578.06 +SC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,347.573603 +SC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,25.6698925 +SC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7112.641375 +SC,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.075125 +SC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2338.626135 +SC,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,5.179577 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,899.3999694 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7291.50755 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,436.5202698 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,17138.55881 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,146.4957918 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,719.4732201 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.66925919 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,23.66624492 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3044.89289 +SC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0.9850058 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4749.245785 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5418.733331 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.392150685 +SC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6042.209609 +SC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6818.84463 +SC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,444816.0046 +SC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,774.895504 +SC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,21930.91753 +SC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1499.009553 +SC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2966.480923 +SC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5942.784994 +SC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12625.34392 +SC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2803.91304 +SC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5242.11416 +SC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3496.5407 +SC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,812.474022 +SC,Carbon Monoxide,1A3c_Rail,light_oil,TON,31.70548848 +SC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,981.1770846 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,157.0152404 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.38572468 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.441567561 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.635841959 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1220.708673 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,431.9155395 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,29127.07194 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,129.0265791 +SC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,228.8292716 +SC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,97963.03804 +SC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,21362.3765 +SC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,4.30500059 +SC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.05000125 +SC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,731.8027327 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,898.897371 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3210.763639 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.085404713 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.211448 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,22388.47931 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,181.6999862 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,34744.02095 +SC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,32.99 +SC,Carbon Monoxide,2A1_Cement-production,,TON,202.959 +SC,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,7.25 +SC,Carbon Monoxide,2A6_Other-minerals,,TON,8230.885968 +SC,Carbon Monoxide,2B_Chemicals-other,,TON,961.2797903 +SC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3543.293 +SC,Carbon Monoxide,2C3_Aluminum-production,,TON,47125.122 +SC,Carbon Monoxide,2C5_Lead-production,,TON,77.63134 +SC,Carbon Monoxide,2C6_Zinc-production,,TON,8.05 +SC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,4954.09617 +SC,Carbon Monoxide,2D3d_Coating-application,,TON,8.481 +SC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,5475.51636 +SC,Carbon Monoxide,2H2_Food-and-beverage,,TON,640.2313938 +SC,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,81.43234 +SC,Carbon Monoxide,3F_Ag-res-on-field,,TON,14357.23125 +SC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,387.906443 +SC,Carbon Monoxide,5C_Incineration,biomass,TON,49.52929389 +SC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,50366.44023 +SC,Carbon Monoxide,5C_Open-burning-residential,,TON,7786.2267 +SC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,884.57851 +SC,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,6.16786 +SC,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.824519005 +SC,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44.13979517 +SC,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,198.7062351 +SC,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,50.2722315 +SC,Methane,1A2g_Construction_and_Mining,light_oil,TON,20.51072611 +SC,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.272568278 +SC,Methane,1A3bii_Road-LDV,diesel_oil,TON,16.402178 +SC,Methane,1A3bii_Road-LDV,light_oil,TON,990.786528 +SC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.80275552 +SC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,57.82298873 +SC,Methane,1A3biii_Road-bus,diesel_oil,TON,6.992759889 +SC,Methane,1A3biii_Road-bus,light_oil,TON,6.012816501 +SC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,230.5044334 +SC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,19.15303609 +SC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,39.4750137 +SC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,9.93933331 +SC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.7851689 +SC,Methane,1A3c_Rail,diesel_oil,TON,0.132889781 +SC,Methane,1A3c_Rail,light_oil,TON,0.099394742 +SC,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.249454278 +SC,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,103.1808115 +SC,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,84.79210692 +SC,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.400122295 +SC,Methane,1A4bi_Residential-mobile,light_oil,TON,398.5488925 +SC,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.424444145 +SC,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,12.40897554 +SC,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.073508878 +SC,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.10473931 +SC,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,187.8608745 +SC,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.379274302 +SC,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,311.8415083 +SC,Nitrogen Oxides,11C_Other-natural,,TON,7714.915 +SC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,611 +SC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,636.6728799 +SC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,14218.62 +SC,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.706 +SC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,923.9514199 +SC,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2.153355 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1385.371217 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,966.8797414 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,64.26729831 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,7693.729301 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,722.3184584 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2900.849941 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,166.9878119 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,56.53565344 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3783.093409 +SC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,1.172626 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8575.40236 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,78.75043347 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.075462382 +SC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1796.147206 +SC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1641.454708 +SC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,53123.73239 +SC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,279.338405 +SC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2404.046816 +SC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4938.534832 +SC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,284.7965192 +SC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15199.84652 +SC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,1398.737377 +SC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7970.18854 +SC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,461.0501411 +SC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,145.502589 +SC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4695.377178 +SC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.364702766 +SC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8712.926539 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,57.61185022 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,62.58593646 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.860588947 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.593610916 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1340.257024 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,788.5202455 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,438.4007196 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32.72421762 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,534.0388263 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1003.323877 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,380.3649197 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,15.497999 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,14.58000201 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1830.973437 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1961.968065 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,40.6255729 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.019092039 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.88557 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,241.5183347 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,960.1741232 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2153.087123 +SC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,13.19 +SC,Nitrogen Oxides,2A1_Cement-production,,TON,52.7005 +SC,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,28.3 +SC,Nitrogen Oxides,2A6_Other-minerals,,TON,6241.923072 +SC,Nitrogen Oxides,2B_Chemicals-other,,TON,156.595897 +SC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,644.71382 +SC,Nitrogen Oxides,2C3_Aluminum-production,,TON,28.58451 +SC,Nitrogen Oxides,2C5_Lead-production,,TON,80.7545 +SC,Nitrogen Oxides,2C6_Zinc-production,,TON,1.006 +SC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,218.8744602 +SC,Nitrogen Oxides,2D3d_Coating-application,,TON,0.771 +SC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5292.713509 +SC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +SC,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,4.161741 +SC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,340.1529596 +SC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,77.516056 +SC,Nitrogen Oxides,5C_Incineration,biomass,TON,72.33075 +SC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1490.131427 +SC,Nitrogen Oxides,5C_Open-burning-residential,,TON,549.616 +SC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,39.3146093 +SC,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,6.33127 +SC,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,166.88064 +SC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.154573038 +SC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,875.1240951 +SC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.240504563 +SC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.61856577 +SC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.04715739 +SC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.07452877 +SC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.604537214 +SC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,15.59617699 +SC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.82923877 +SC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.49827416 +SC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.17129765 +SC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,86.6109951 +SC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,10.69390858 +SC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2473.991179 +SC,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.021296 +SC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,167.1061914 +SC,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,4.11845968 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8502.495701 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.55123997 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,433.284915 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,46.97099418 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.11476669 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,147.7095508 +SC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.033865484 +SC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,84549.0532 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,130.4732212 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.287652973 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.854341668 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.032527442 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.908698177 +SC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.929879922 +SC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.87479934 +SC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.658281553 +SC,PM10 Filterable,2A1_Cement-production,,TON,463.1440004 +SC,PM10 Filterable,2A2_Lime-production,,TON,11.17241138 +SC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,7159.85966 +SC,PM10 Filterable,2A6_Other-minerals,,TON,3543.787523 +SC,PM10 Filterable,2B_Chemicals-other,,TON,155.6259367 +SC,PM10 Filterable,2C_Iron-steel-alloy,,TON,128.1079706 +SC,PM10 Filterable,2C3_Aluminum-production,,TON,103.1405863 +SC,PM10 Filterable,2C5_Lead-production,,TON,9.0053723 +SC,PM10 Filterable,2C6_Zinc-production,,TON,20.06 +SC,PM10 Filterable,2C7_Other-metal,,TON,74.76728586 +SC,PM10 Filterable,2D3d_Coating-application,,TON,18.365932 +SC,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0843141 +SC,PM10 Filterable,2H1_Pulp-and-paper,,TON,1686.538084 +SC,PM10 Filterable,2H2_Food-and-beverage,,TON,145.1097968 +SC,PM10 Filterable,2H3_Other-industrial-processes,,TON,328.2672346 +SC,PM10 Filterable,2I_Wood-processing,,TON,2.9114611 +SC,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,7346.1908 +SC,PM10 Filterable,3Dc_Other-farm,,TON,19901.51122 +SC,PM10 Filterable,5A_Solid-waste-disposal,,TON,48.844016 +SC,PM10 Filterable,5C_Incineration,biomass,TON,28.31115619 +SC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,5066.44925 +SC,PM10 Filterable,5C_Open-burning-residential,,TON,2538.4524 +SC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,146.482012 +SC,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.441448 +SC,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.190326 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,89.553116 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,12.45968763 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2718.700359 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.0242 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,305.458285 +SC,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.1233707 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,101.4216859 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.2264072 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.050078696 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8797.570979 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,45.88263447 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,472.4654428 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,53.32640879 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.847648009 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,233.9749746 +SC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.0891198 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,729.7711864 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.55900075 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797948 +SC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,199.9948472 +SC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,84549.0532 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,99.60244995 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2231.497073 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,20.7160464 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,91.82563754 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,383.7630993 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,14.6207169 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1141.452943 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,69.05556177 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,580.097568 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,18.65693134 +SC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.8680314 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,150.97836 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.017362405 +SC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,262.9201584 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,135.172478 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.544836313 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.972736452 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.060131972 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.79394429 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,70.08075149 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,35.74020888 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.760204666 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,37.99309125 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,421.2051623 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2766.763367 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.0491806 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.927800517 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.51153662 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,157.4596005 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,35.46233597 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.73795E-05 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.7687482 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,171.7541592 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.24872999 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,140.2401336 +SC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,467.2868044 +SC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,11.23428598 +SC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7159.85966 +SC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3643.120873 +SC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,166.4997453 +SC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,300.945374 +SC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,113.8076053 +SC,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,9.22314 +SC,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,21.299175 +SC,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,140.3964985 +SC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,23.123732 +SC,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.1178 +SC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2263.742001 +SC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1687.342021 +SC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,358.2984236 +SC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.9114611 +SC,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,7346.1908 +SC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,19901.64064 +SC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2494.207039 +SC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,59.648317 +SC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,50.67483511 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,5066.44925 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2538.4524 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,146.482012 +SC,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.013785 +SC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.431448 +SC,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,7.510326 +SC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,86.46290414 +SC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,10.10632604 +SC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2038.069709 +SC,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.020696 +SC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,166.9280411 +SC,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,4.11845968 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7256.071044 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,38.32168857 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,259.4934505 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,32.34277327 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.11507826 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,123.9449066 +SC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.033865484 +SC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,10424.2946 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,112.2342531 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.202896433 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.326782463 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.027608156 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.840634132 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.71462987 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.672299843 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.012056879 +SC,PM2.5 Filterable,2A1_Cement-production,,TON,206.2813625 +SC,PM2.5 Filterable,2A2_Lime-production,,TON,3.489613097 +SC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,715.985966 +SC,PM2.5 Filterable,2A6_Other-minerals,,TON,877.6297465 +SC,PM2.5 Filterable,2B_Chemicals-other,,TON,105.9338603 +SC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,91.32254247 +SC,PM2.5 Filterable,2C3_Aluminum-production,,TON,54.97493077 +SC,PM2.5 Filterable,2C5_Lead-production,,TON,9.0053723 +SC,PM2.5 Filterable,2C6_Zinc-production,,TON,17.879559 +SC,PM2.5 Filterable,2C7_Other-metal,,TON,68.41041089 +SC,PM2.5 Filterable,2D3d_Coating-application,,TON,17.58425511 +SC,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.08312261 +SC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1087.08994 +SC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,18.53573592 +SC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,209.0168641 +SC,PM2.5 Filterable,2I_Wood-processing,,TON,0.870441211 +SC,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1061.99816 +SC,PM2.5 Filterable,3Dc_Other-farm,,TON,3980.162871 +SC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,15.513094 +SC,PM2.5 Filterable,5C_Incineration,biomass,TON,19.4929813 +SC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3905.722741 +SC,PM2.5 Filterable,5C_Open-burning-residential,,TON,2324.6873 +SC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,112.923457 +SC,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.409814 +SC,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.190326 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,89.4050241 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.87210463 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2282.779269 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.0236 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,305.2800814 +SC,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.1233707 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,98.36380751 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.12654201 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.049488805 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7551.132531 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,42.65442373 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,298.6428086 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,38.69652561 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.848360086 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,231.4457939 +SC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.0891198 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,707.8780889 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,37.34012784 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000797948 +SC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,178.655005 +SC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10424.2946 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,73.64202724 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,866.895348 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.8911632 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.45555945 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,295.716307 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.747413689 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,794.1239762 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,22.18577048 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,416.433263 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.044265515 +SC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.6734594 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,139.5529119 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.016007796 +SC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,246.3121977 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,116.9271326 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.461048355 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.444283482 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.055223061 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.73215056 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,67.97832007 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.98695913 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.760204666 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,36.85331051 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,387.5276973 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2716.662488 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.833930165 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.72529969 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.865304568 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,152.7358303 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,32.62542452 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.73795E-05 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.6856862 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,158.0148114 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.64126778 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,129.0209476 +SC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,210.4241298 +SC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,3.551759737 +SC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,715.985966 +SC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,976.9630021 +SC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,116.8087981 +SC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,264.1575448 +SC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,65.64194827 +SC,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,9.22314 +SC,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,19.118734 +SC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,134.0396235 +SC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,22.34205511 +SC,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.11660851 +SC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1676.014693 +SC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1560.766961 +SC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,239.0480931 +SC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.870441211 +SC,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1061.99816 +SC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3980.29229 +SC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1831.32455 +SC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,26.317395 +SC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,41.85667023 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3905.722741 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2324.6873 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,112.923457 +SC,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.013785 +SC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.399814 +SC,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,7.510326 +SC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +SC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,138.6630205 +SC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,27470.17 +SC,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,190.542072 +SC,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.671401 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.659110202 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.731795334 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.10527881 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3564.503344 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,987.6685153 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4501.36186 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,933.517508 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.528092557 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1229.816355 +SC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0070356 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,16.56426582 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.434401816 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.77196E-05 +SC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,197.6251501 +SC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.742237741 +SC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,457.6409855 +SC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.678909142 +SC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.47051705 +SC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.487316029 +SC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.534363104 +SC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,26.25455273 +SC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,11.78550997 +SC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14.50424555 +SC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.206003596 +SC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.76166395 +SC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,2.82991548 +SC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002429882 +SC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1807.123698 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,6.52757955 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.292302699 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,13.83400866 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.884962129 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.62784583 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.173968978 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.335647552 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.033816036 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.790032574 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.770551412 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,46.57767078 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,36.67860575 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,34.5059939 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,10.97485524 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.353124573 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.206477286 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.29388E-06 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.028716864 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.07183402 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.919022074 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.49548853 +SC,Sulfur Dioxide,2A1_Cement-production,,TON,14.1392 +SC,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1.008 +SC,Sulfur Dioxide,2A6_Other-minerals,,TON,961.6200869 +SC,Sulfur Dioxide,2B_Chemicals-other,,TON,12.15352007 +SC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,379.1138 +SC,Sulfur Dioxide,2C3_Aluminum-production,,TON,3508.05373 +SC,Sulfur Dioxide,2C5_Lead-production,,TON,43.5135 +SC,Sulfur Dioxide,2C6_Zinc-production,,TON,6.037 +SC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,731.864773 +SC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2302.999331 +SC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +SC,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,20.27365783 +SC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,63.071272 +SC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,13.49765 +SC,Sulfur Dioxide,5C_Incineration,biomass,TON,40.97529276 +SC,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,494.723762 +SC,Sulfur Dioxide,5C_Open-burning-residential,,TON,91.602665 +SC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,8.4947605 +SC,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,8.35 +SC,Volatile Organic Compounds,11C_Other-natural,,TON,896823.9 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,39.921521 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,35.6499155 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,233.295037 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.011419 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,176.1577527 +SC,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.180904041 +SC,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,60.70777796 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,129.6567822 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,210.821259 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43.06283089 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,651.8153322 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,42.91272366 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,14.54482409 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.373028738 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.551278065 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,284.8412332 +SC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.0644946 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,954.973571 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,377.7225914 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.05891909 +SC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,859.283575 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,600.0935751 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,35129.72309 +SC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,79.5920267 +SC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1601.120604 +SC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,410.0230869 +SC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,162.728262 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1687.756319 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,542.2368668 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,645.773581 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,248.0301711 +SC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,624.01289 +SC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,244.9351139 +SC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.907105099 +SC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,321.42099 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.445669007 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.214389768 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.0287628 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.370765178 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,99.92500792 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,99.32174631 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1133.203191 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.32889226 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,53.40688075 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6398.585609 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2949.876452 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.602699939 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.56700003 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,100.6027748 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,180.2119477 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,328.9236181 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015889865 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.055204 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5560.741914 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,48.80764257 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10440.87656 +SC,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,23.441291 +SC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,456.2446567 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,153.471967 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,366.0392277 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6030.869951 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,11191.38505 +SC,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,5.11 +SC,Volatile Organic Compounds,2A1_Cement-production,,TON,12.176428 +SC,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.83 +SC,Volatile Organic Compounds,2A6_Other-minerals,,TON,42.00100927 +SC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1109.019824 +SC,Volatile Organic Compounds,2B_Chemicals-other,,TON,2552.532717 +SC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,248.0797 +SC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,512.377523 +SC,Volatile Organic Compounds,2C5_Lead-production,,TON,0.13358 +SC,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.503 +SC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,93.06835926 +SC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,21306.66161 +SC,Volatile Organic Compounds,2D3d_Coating-application,,TON,14525.12707 +SC,Volatile Organic Compounds,2D3e_Degreasing,,TON,3378.866109 +SC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,12.0700019 +SC,Volatile Organic Compounds,2D3h_Printing,,TON,9859.5106 +SC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +SC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +SC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,10322.91304 +SC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,904.9751127 +SC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3984.501071 +SC,Volatile Organic Compounds,2I_Wood-processing,,TON,26.404533 +SC,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,55.169 +SC,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,103.604 +SC,Volatile Organic Compounds,3B3_Manure-swine,,TON,366.396 +SC,Volatile Organic Compounds,3B4_Manure-poultry,,TON,750.066 +SC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2146.91652 +SC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,843.5784328 +SC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,179.177415 +SC,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,738.9882 +SC,Volatile Organic Compounds,5C_Incineration,biomass,TON,15.77259552 +SC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3457.105955 +SC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,529.19238 +SC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,164.9809 +SC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,66.1718 +SC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,309.724977 +SC,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.903 +SC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,17.08545 +SD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,26.4377 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.321162843 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.013930717 +SD,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.416499617 +SD,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.000376185 +SD,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.15708E-05 +SD,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,20.1983075 +SD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.490153801 +SD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.038481028 +SD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.206862287 +SD,Ammonia,1A3bii_Road-LDV,light_oil,TON,284.1435038 +SD,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.2349118 +SD,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.39009638 +SD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.288856762 +SD,Ammonia,1A3biii_Road-bus,light_oil,TON,0.332272199 +SD,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,25.57834424 +SD,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.144903812 +SD,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.40520294 +SD,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.222385546 +SD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.1760727 +SD,Ammonia,1A3c_Rail,diesel_oil,TON,1.886187029 +SD,Ammonia,1A3c_Rail,light_oil,TON,0.000604333 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.569999975 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.222016735 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.448475814 +SD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.033672278 +SD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.594282003 +SD,Ammonia,1A4bi_Residential-stationary,biomass,TON,64.96772229 +SD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.78499973 +SD,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +SD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,143.1958122 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.93464443 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.450366757 +SD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003686234 +SD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.192113163 +SD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.097522313 +SD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.555857495 +SD,Ammonia,2H2_Food-and-beverage,,TON,10.284 +SD,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,4.2815 +SD,Ammonia,3B1a_Cattle-dairy,,TON,1179.497 +SD,Ammonia,3B1b_Cattle-non-dairy,,TON,15692.137 +SD,Ammonia,3B2_Manure-sheep,,TON,1172.46888 +SD,Ammonia,3B3_Manure-swine,,TON,10512.524 +SD,Ammonia,3B4_Manure-other,,TON,943.668 +SD,Ammonia,3B4_Manure-poultry,,TON,434.9597332 +SD,Ammonia,3B4d_Manure-goats,,TON,74.986032 +SD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,28990.4627 +SD,Ammonia,3F_Ag-res-on-field,,TON,634.742518 +SD,Ammonia,5B_Compost-biogas,Other_Fuel,TON,18.1896 +SD,Ammonia,5D1_Wastewater-domestic,,TON,2.0967509 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39559.02554 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38434.27214 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2164.766221 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,183450.3541 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3220.915372 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.34909285 +SD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,238161.0078 +SD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3262610.085 +SD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40436.5029 +SD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,246496.963 +SD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,16589.49701 +SD,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,9826.457159 +SD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1459395.742 +SD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,27111.59617 +SD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,975892.287 +SD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,32805.21778 +SD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,62759.923 +SD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1048.64032 +SD,Carbon Dioxide,1A3c_Rail,light_oil,TON,47.35674079 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27303.53545 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,37551.82095 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1649.004255 +SD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4143.41633 +SD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,44177.67883 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2207572.139 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,33965.36218 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.66581568 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,451.8847 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,81248.00735 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12009.0186 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,39590.62724 +SD,Carbon Monoxide,11C_Other-natural,,TON,87543.078 +SD,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,12.3 +SD,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,6 +SD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,445.4 +SD,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,24.2 +SD,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,0.2 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,166.8459135 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,948.2333595 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,56.94954774 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,263.4499588 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.927058738 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.302224131 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,261.2689337 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,583.2313158 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,652.6393469 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078430061 +SD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1723.143649 +SD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4264.34316 +SD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,98453.95849 +SD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,501.247898 +SD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7645.388619 +SD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,68.39321225 +SD,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,695.4975237 +SD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2467.107392 +SD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,677.2398389 +SD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1698.122007 +SD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1746.780953 +SD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2844.06736 +SD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,606.277373 +SD,Carbon Monoxide,1A3c_Rail,light_oil,TON,10.62043262 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,68.65991444 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.100379987 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,89.73970867 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,117.3758955 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,7690.034391 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.24423488 +SD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,14.02884754 +SD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,10440.24049 +SD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10581.1611 +SD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,8.92499762 +SD,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +SD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,371.4016383 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7716.786446 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7183.6023 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.849467397 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.5692206 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10545.80771 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.82229324 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4527.830151 +SD,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,214.286793 +SD,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,12.9 +SD,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.8363396 +SD,Carbon Monoxide,2A1_Cement-production,,TON,1096.2 +SD,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,367 +SD,Carbon Monoxide,2A6_Other-minerals,,TON,0 +SD,Carbon Monoxide,2C3_Aluminum-production,,TON,22.9 +SD,Carbon Monoxide,2D3d_Coating-application,,TON,6.9 +SD,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,29.8 +SD,Carbon Monoxide,2H2_Food-and-beverage,,TON,681.5042543 +SD,Carbon Monoxide,3F_Ag-res-on-field,,TON,3871.46292 +SD,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,2.321691 +SD,Carbon Monoxide,5C_Incineration,biomass,TON,79.91633749 +SD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,2057.763279 +SD,Carbon Monoxide,5C_Open-burning-residential,,TON,1770.92492 +SD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,28.791194 +SD,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.299692662 +SD,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.721263214 +SD,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,25.65274301 +SD,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,6.174186116 +SD,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.581109733 +SD,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.054513606 +SD,Methane,1A3bii_Road-LDV,diesel_oil,TON,14.18836726 +SD,Methane,1A3bii_Road-LDV,light_oil,TON,265.8500314 +SD,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.23700896 +SD,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.84690013 +SD,Methane,1A3biii_Road-bus,diesel_oil,TON,0.681427254 +SD,Methane,1A3biii_Road-bus,light_oil,TON,1.693445229 +SD,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,138.581147 +SD,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.135824391 +SD,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,23.6620516 +SD,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.236267754 +SD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.7858695 +SD,Methane,1A3c_Rail,diesel_oil,TON,0.045086493 +SD,Methane,1A3c_Rail,light_oil,TON,0.0357032 +SD,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.883104973 +SD,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,29.03850782 +SD,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23.17062148 +SD,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.146984372 +SD,Methane,1A4bi_Residential-mobile,light_oil,TON,47.65018793 +SD,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,61.42847972 +SD,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,32.96676835 +SD,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.731146735 +SD,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.019444905 +SD,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,97.0944008 +SD,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.31198368 +SD,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,40.96970398 +SD,Nitrogen Oxides,11C_Other-natural,,TON,37115.768 +SD,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,21.3 +SD,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,46.8 +SD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,10506.8 +SD,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,108.2 +SD,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,209.2160992 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,126.4331872 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.34734134 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,49.83192203 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.027589837 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.630860593 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,650.5640428 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1052.493867 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,10.76049418 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092455 +SD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,234.1295729 +SD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1006.237294 +SD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,10433.13892 +SD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,166.739876 +SD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,783.9161564 +SD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,135.3876378 +SD,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,57.58188321 +SD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9008.314876 +SD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,79.37210421 +SD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5793.582802 +SD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,128.7982876 +SD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,140.665845 +SD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,3770.80599 +SD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.149278755 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,76.46481321 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.910078193 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,151.6251086 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,214.2992665 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,135.1490712 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8.941810395 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,32.86352983 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,122.2492629 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,159.251251 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,32.1300119 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,975.3000371 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16560.94496 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,181.2059413 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.189896684 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.8874112 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,162.5901725 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,125.8837703 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,292.4322245 +SD,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,210.06313 +SD,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.2 +SD,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.32341162 +SD,Nitrogen Oxides,2A1_Cement-production,,TON,827.1 +SD,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,284.3 +SD,Nitrogen Oxides,2A6_Other-minerals,,TON,0 +SD,Nitrogen Oxides,2C3_Aluminum-production,,TON,27.1 +SD,Nitrogen Oxides,2D3d_Coating-application,,TON,6.2 +SD,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,20.4 +SD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,731.4 +SD,Nitrogen Oxides,3F_Ag-res-on-field,,TON,137.514594 +SD,Nitrogen Oxides,5C_Incineration,biomass,TON,99.87171788 +SD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,60.88053698 +SD,Nitrogen Oxides,5C_Open-burning-residential,,TON,125.006483 +SD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.2796078 +SD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.708090238 +SD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,212.9387247 +SD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.143204748 +SD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.38395532 +SD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.053711475 +SD,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.519208385 +SD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.459553852 +SD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.810381395 +SD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.512653903 +SD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.084280974 +SD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.875733351 +SD,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,1.5114 +SD,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.8 +SD,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,136.213 +SD,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,4.33 +SD,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,93.19223903 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.108255059 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.496166361 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,47.432 +SD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,26849.2872 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,62.9791117 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.2 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.68 +SD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.92779965 +SD,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +SD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.856333775 +SD,PM10 Filterable,2A1_Cement-production,,TON,35.36588 +SD,PM10 Filterable,2A2_Lime-production,,TON,17.384787 +SD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,8400.229015 +SD,PM10 Filterable,2A6_Other-minerals,,TON,2515.8836 +SD,PM10 Filterable,2C3_Aluminum-production,,TON,2.895651 +SD,PM10 Filterable,2D3d_Coating-application,,TON,2.6 +SD,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,66.799888 +SD,PM10 Filterable,2H2_Food-and-beverage,,TON,315.6287161 +SD,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,12.8 +SD,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,43599.78 +SD,PM10 Filterable,3Dc_Other-farm,,TON,242894.481 +SD,PM10 Filterable,5C_Incineration,biomass,TON,82.3 +SD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,206.9939291 +SD,PM10 Filterable,5C_Open-burning-residential,,TON,577.35362 +SD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,4.7676832 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.6 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.134077 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,255.4 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,7.88 +SD,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.87303214 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.060256565 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.266202659 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,95.42523903 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.11113243 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.70016636 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,91.702 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,89.62456974 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.98591087 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000159589 +SD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,43.67943833 +SD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,26849.2872 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,55.0287769 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,514.6400336 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.7623282 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,36.27798987 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,9.585124097 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.840343703 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,399.1725014 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.9014156 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,358.0880247 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.777994377 +SD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.5140019 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,116.0021273 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.006004945 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,63.1895527 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.46 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,58.962 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,19.04484875 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.71042691 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.207687232 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.32923446 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,37.48763123 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1521.76692 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.24829882 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.82646621 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1335.398125 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.839736014 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000968573 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.514047 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,108.0272063 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.654763481 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,18.3869732 +SD,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,6.03559444 +SD,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.85093687 +SD,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,35.5 +SD,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,21.9 +SD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,8400.229015 +SD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2515.8836 +SD,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,9 +SD,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.6 +SD,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,70.073684 +SD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,584.3326648 +SD,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,12.8 +SD,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,43599.78 +SD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,242894.481 +SD,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,678.725625 +SD,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,82.52901654 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,206.9939291 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,577.35362 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,4.7676832 +SD,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,1.5114 +SD,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.8 +SD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,136.213 +SD,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,4.33 +SD,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,65.6752 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.007557125 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.996 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,47.332 +SD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3184.92403 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,48.8095896 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.2 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.68 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.48155034 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.020983274 +SD,PM2.5 Filterable,2A1_Cement-production,,TON,19.16588 +SD,PM2.5 Filterable,2A2_Lime-production,,TON,3.0848064 +SD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,840.0229015 +SD,PM2.5 Filterable,2A6_Other-minerals,,TON,349.88568 +SD,PM2.5 Filterable,2C3_Aluminum-production,,TON,2.795651 +SD,PM2.5 Filterable,2D3d_Coating-application,,TON,2.5 +SD,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,66.799888 +SD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,278.3084526 +SD,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,12.1 +SD,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,8752.8043 +SD,PM2.5 Filterable,3Dc_Other-farm,,TON,48578.9288 +SD,PM2.5 Filterable,5C_Incineration,biomass,TON,54.7 +SD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,159.5715373 +SD,PM2.5 Filterable,5C_Open-burning-residential,,TON,528.73442 +SD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,3.6754234 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.6 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.134077 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,255.4 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,7.88 +SD,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.4223183 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.045989583 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.266031995 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,67.9082 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.010434086 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.2 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,91.602 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,86.935826 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.590223381 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000159589 +SD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,36.84359095 +SD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3184.92403 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,42.63611039 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,295.3835436 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.2702254 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.81847845 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,7.566141724 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.865964782 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,310.4076104 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.940587672 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,265.3873966 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.98924989 +SD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.80170785 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,106.7727378 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.005537777 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,51.1684175 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.46 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,58.962 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.47350617 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,8.962413498 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.207687232 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.259355463 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,34.48977506 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1510.504074 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.802052025 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.991117475 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1295.336504 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.292870507 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000968573 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.49862558 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,99.38522217 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.575120602 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,16.91601916 +SD,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,5.92087844 +SD,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.85093687 +SD,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,19.3 +SD,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,7.6 +SD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,840.0229015 +SD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,349.88568 +SD,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,8.9 +SD,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.5 +SD,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,70.073684 +SD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,547.0124439 +SD,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,12.1 +SD,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,8752.8043 +SD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,48578.9288 +SD,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,422.833962 +SD,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,54.92901654 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,159.5715373 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,528.73442 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,3.6754234 +SD,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.1 +SD,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.9 +SD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,13844.7 +SD,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,12.8 +SD,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.637171015 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.250431199 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.01546447 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,13.9 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.01950519 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,56.4 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,51.00142057 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.0341861 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.053428281 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.5439E-06 +SD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29.32276878 +SD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.086970847 +SD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,53.27095939 +SD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.352635693 +SD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.027369455 +SD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.146401092 +SD,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.16036555 +SD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.58851697 +SD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.442650233 +SD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.47505206 +SD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.535507588 +SD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.02819083 +SD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,2.128508483 +SD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000841167 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,45.3 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.4 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.319054385 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.634633631 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.009238154 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.048594366 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.803202701 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,33.66066537 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,76.0409871 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.568996466 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.4527369 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.618719647 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.27086E-05 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005337297 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.476085298 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.382705666 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.720511788 +SD,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,11.73693758 +SD,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.001255817 +SD,Sulfur Dioxide,2A1_Cement-production,,TON,304.1 +SD,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.4 +SD,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +SD,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +SD,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +SD,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,3.1 +SD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,81.9 +SD,Sulfur Dioxide,3F_Ag-res-on-field,,TON,55.106938 +SD,Sulfur Dioxide,5C_Incineration,biomass,TON,59.33534476 +SD,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,20.21234793 +SD,Sulfur Dioxide,5C_Open-burning-residential,,TON,20.8344067 +SD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.2764867 +SD,Volatile Organic Compounds,11C_Other-natural,,TON,293738.11 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.2 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.7 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,97.9 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,6.3 +SD,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,0.7 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.96060767 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27.38394639 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.578779349 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,70.3 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.107934798 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.1 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,35.10862 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,117.2544996 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,45.42000884 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783799 +SD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,139.5285686 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,418.3216776 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,9039.340506 +SD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,58.4672586 +SD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,651.4573891 +SD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,17.77586764 +SD,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,34.77057032 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,671.2626013 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,25.55568014 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,366.328034 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,89.18131064 +SD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,419.272736 +SD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,181.8494994 +SD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.290084761 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.23880597 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.76119403 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26.992182 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,288.4057521 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.008619093 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,3.278984943 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,710.6155493 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1674.262178 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.24950029 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,51.04916411 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1511.261527 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,292.8112908 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.158046539 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.939096 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3677.510596 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.399261701 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1207.082868 +SD,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,2598.75618 +SD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,216.8632335 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,246.1453963 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,806.405004 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2003.965474 +SD,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,305.5169357 +SD,Volatile Organic Compounds,2A1_Cement-production,,TON,48.6 +SD,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +SD,Volatile Organic Compounds,2A6_Other-minerals,,TON,9.98 +SD,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,308.0099 +SD,Volatile Organic Compounds,2B_Chemicals-other,,TON,178.8 +SD,Volatile Organic Compounds,2C3_Aluminum-production,,TON,28 +SD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3775.202155 +SD,Volatile Organic Compounds,2D3d_Coating-application,,TON,3677.55476 +SD,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,780.1816075 +SD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.165 +SD,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,1861.08315 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,7746.44867 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4368.76904 +SD,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,504.2 +SD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1056.769712 +SD,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,635.8 +SD,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,94.699 +SD,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1259.98 +SD,Volatile Organic Compounds,3B3_Manure-swine,,TON,844.077 +SD,Volatile Organic Compounds,3B4_Manure-poultry,,TON,33.012 +SD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3741.12635 +SD,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,258.145972 +SD,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,0.697 +SD,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,128.7054 +SD,Volatile Organic Compounds,5C_Incineration,biomass,TON,8.112151008 +SD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,141.2428722 +SD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,120.361217 +SD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.3697842 +SD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,11.27 +TN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.1254897 +TN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,127.9157534 +TN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,20.5832284 +TN,Ammonia,1A1b_Pet-refining,natural_gas,TON,5.93923561 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.247753238 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.16012182 +TN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,122.8056333 +TN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.172646076 +TN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,20.3137468 +TN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.065828715 +TN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.096597711 +TN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,260.8896797 +TN,Ammonia,1A2c_Chemicals,natural_gas,TON,0.125 +TN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.09177333 +TN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.337366769 +TN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,20.58175859 +TN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2380.726699 +TN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.36189818 +TN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,89.10851382 +TN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.54622778 +TN,Ammonia,1A3biii_Road-bus,light_oil,TON,1.778616269 +TN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,135.285564 +TN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.528419681 +TN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,64.21973536 +TN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,12.25654056 +TN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.0328739 +TN,Ammonia,1A3c_Rail,diesel_oil,TON,6.741797588 +TN,Ammonia,1A3c_Rail,light_oil,TON,0.004083565 +TN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.978443956 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.364477639 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.499258331 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.488107539 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.026425246 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.052850586 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.63936818 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.259235202 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.544220865 +TN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.549013328 +TN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.469900802 +TN,Ammonia,1A4bi_Residential-stationary,biomass,TON,229.8850289 +TN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.819000404 +TN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.789749961 +TN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,785.5838607 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.127820574 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.208521458 +TN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027985346 +TN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.202866694 +TN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.76972773 +TN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.386990367 +TN,Ammonia,2A6_Other-minerals,,TON,93.2514831 +TN,Ammonia,2B_Chemicals-other,,TON,460.9504 +TN,Ammonia,2C_Iron-steel-alloy,,TON,0.241484 +TN,Ammonia,2C6_Zinc-production,,TON,0.049 +TN,Ammonia,2C7a_Copper-production,,TON,0.003 +TN,Ammonia,2D3d_Coating-application,Other_Fuel,TON,48.6575 +TN,Ammonia,2D3e_Degreasing,,TON,0.231 +TN,Ammonia,2H1_Pulp-and-paper,,TON,79.26776 +TN,Ammonia,2H2_Ethanol Production,,TON,5.08406 +TN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,8.532 +TN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,274.338908 +TN,Ammonia,3B1a_Cattle-dairy,,TON,1113.127 +TN,Ammonia,3B1b_Cattle-non-dairy,,TON,5275.013 +TN,Ammonia,3B2_Manure-sheep,,TON,104.002404 +TN,Ammonia,3B3_Manure-swine,,TON,2189.471 +TN,Ammonia,3B4_Manure-other,,TON,1908.74904 +TN,Ammonia,3B4_Manure-poultry,,TON,4498.02208 +TN,Ammonia,3B4d_Manure-goats,,TON,913.231836 +TN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7326.393376 +TN,Ammonia,3F_Ag-res-on-field,,TON,392.41489 +TN,Ammonia,5A_Solid-waste-disposal,,TON,2.91 +TN,Ammonia,5B_Compost-biogas,Other_Fuel,TON,140.12676 +TN,Ammonia,5D1_Wastewater-domestic,,TON,17.0692 +TN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,1.3705 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,400042.746 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,443147.9982 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24991.38688 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1611702.438 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,28225.52244 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.09457313 +TN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,751864.1352 +TN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,29074612.38 +TN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,119570.9804 +TN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1443171.089 +TN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,155983.5557 +TN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,54479.6069 +TN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8395839.788 +TN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,41207.78836 +TN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3927049.527 +TN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,346255.0955 +TN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,220831.11 +TN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7183.19005 +TN,Carbon Dioxide,1A3c_Rail,light_oil,TON,319.0524357 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,154860.4035 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,213013.8614 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9425.777053 +TN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,67556.47403 +TN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,483066.2406 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,754311.0554 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,15378.5553 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.440070788 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3430.6315 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,214708.1269 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,94785.2229 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,312460.9758 +TN,Carbon Monoxide,11C_Other-natural,,TON,84239.896 +TN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,25.5 +TN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,98.74512918 +TN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,4477.0938 +TN,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.163495 +TN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,681.2836097 +TN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,518.5658783 +TN,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.737972 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1849.279692 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10976.33017 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,658.8576457 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,10896.84722 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,652.7176723 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3689.199329 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,83.7618248 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.605989174 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4365.451909 +TN,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +TN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,78.26 +TN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.291 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5128.710201 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5812.30353 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.470581073 +TN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8496.921068 +TN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11619.52181 +TN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,630137.453 +TN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1393.629289 +TN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29640.54965 +TN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,462.5796822 +TN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2891.978367 +TN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13519.61959 +TN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,842.7974714 +TN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5539.304069 +TN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10711.45782 +TN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9171.91214 +TN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2194.571706 +TN,Carbon Monoxide,1A3c_Rail,light_oil,TON,73.38392278 +TN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,756.5572965 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,701.1986301 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,435.300785 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,828.2922717 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.215193715 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.318248462 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3647.30888 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,665.7558875 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,44610.26833 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,200.506459 +TN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,229.4346998 +TN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,111046.9519 +TN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,38342.28768 +TN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,4.845068552 +TN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.948751479 +TN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1761.921359 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2559.367267 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3720.388569 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.27039031 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,27.111297 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,39330.02834 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,188.0250934 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,35817.8502 +TN,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,840.1260783 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,86.5024 +TN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,892.9247327 +TN,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,169 +TN,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,0 +TN,Carbon Monoxide,2A6_Other-minerals,,TON,2166.66886 +TN,Carbon Monoxide,2B_Chemicals-other,,TON,17303.77797 +TN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4026.3153 +TN,Carbon Monoxide,2C3_Aluminum-production,,TON,125.369145 +TN,Carbon Monoxide,2C5_Lead-production,,TON,19.513 +TN,Carbon Monoxide,2C6_Zinc-production,,TON,5.42857 +TN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,18.8946 +TN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,26.6833 +TN,Carbon Monoxide,2D3d_Coating-application,,TON,57.963469 +TN,Carbon Monoxide,2D3h_Printing,,TON,9.86 +TN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2311.15075 +TN,Carbon Monoxide,2H2_Ethanol Production,,TON,92.48427 +TN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1231.195879 +TN,Carbon Monoxide,2H3_Other-industrial-processes,,TON,333.2271308 +TN,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,284.524704 +TN,Carbon Monoxide,3F_Ag-res-on-field,,TON,2568.81068 +TN,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,605.46368 +TN,Carbon Monoxide,5C_Incineration,,TON,249.1809368 +TN,Carbon Monoxide,5C_Incineration,biomass,TON,30.65515543 +TN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,62434.24412 +TN,Carbon Monoxide,5C_Open-burning-residential,,TON,10589.4942 +TN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1100.53892 +TN,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,48.58 +TN,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,12.9220249 +TN,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,65.81066206 +TN,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,295.987909 +TN,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,54.29046567 +TN,Methane,1A2g_Construction_and_Mining,light_oil,TON,22.21437407 +TN,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.327082196 +TN,Methane,1A3bii_Road-LDV,diesel_oil,TON,29.46405307 +TN,Methane,1A3bii_Road-LDV,light_oil,TON,1517.223655 +TN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.22934163 +TN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,87.34924802 +TN,Methane,1A3biii_Road-bus,diesel_oil,TON,4.252716018 +TN,Methane,1A3biii_Road-bus,light_oil,TON,5.024820637 +TN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,715.6970846 +TN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.145704588 +TN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,106.7021706 +TN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,19.48937477 +TN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.01391536 +TN,Methane,1A3c_Rail,diesel_oil,TON,0.308328543 +TN,Methane,1A3c_Rail,light_oil,TON,0.234362132 +TN,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.008807748 +TN,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,160.1454055 +TN,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,131.5250819 +TN,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.406079607 +TN,Methane,1A4bi_Residential-mobile,light_oil,TON,464.7542918 +TN,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.08011742 +TN,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,15.62401324 +TN,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.232728201 +TN,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.14776376 +TN,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,387.5242125 +TN,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.462133644 +TN,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,323.0642235 +TN,Nitrogen Oxides,11C_Other-natural,,TON,13857.4919 +TN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,20.06 +TN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,317.6420533 +TN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,18077.819 +TN,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.10160181 +TN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,704.5840265 +TN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,221.8810922 +TN,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,19.2819 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2090.626887 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1457.73604 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,96.78137388 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3857.834358 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2599.108186 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,9960.124408 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,140.0087628 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.422370918 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6887.493264 +TN,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +TN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,82.236 +TN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.999 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,9255.979564 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,86.89920825 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.090554913 +TN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4640.160153 +TN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3047.904591 +TN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,74385.96696 +TN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,462.847767 +TN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3183.684618 +TN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1066.416547 +TN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,249.6358596 +TN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,48491.41684 +TN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,103.5214759 +TN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15188.73562 +TN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1009.326097 +TN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,448.054355 +TN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,12844.73864 +TN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.890928192 +TN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3911.842194 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,456.8073078 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1939.11952 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1386.250061 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.005420477 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.279157685 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3648.165918 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1215.466349 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,693.9011947 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,50.78810032 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,535.7175582 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1186.932149 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,637.6333395 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,17.7872484 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,14.21550026 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4299.277112 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5510.928601 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,68.29691327 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.060445158 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,29.479264 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,460.6808594 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,993.5996581 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2276.50466 +TN,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,556.3525622 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,34.5 +TN,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,606.726138 +TN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,350 +TN,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,0 +TN,Nitrogen Oxides,2A6_Other-minerals,,TON,6041.45284 +TN,Nitrogen Oxides,2B_Chemicals-other,,TON,604.9289171 +TN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,472.15495 +TN,Nitrogen Oxides,2C3_Aluminum-production,,TON,156.812695 +TN,Nitrogen Oxides,2C5_Lead-production,,TON,23.241 +TN,Nitrogen Oxides,2C6_Zinc-production,,TON,47.7881 +TN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,244.6944 +TN,Nitrogen Oxides,2C7a_Copper-production,,TON,0.001 +TN,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,3.53 +TN,Nitrogen Oxides,2D3d_Coating-application,,TON,383.8864102 +TN,Nitrogen Oxides,2D3h_Printing,,TON,15.23 +TN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1913.08259 +TN,Nitrogen Oxides,2H2_Ethanol Production,,TON,93.087678 +TN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,626.304 +TN,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,19.67816938 +TN,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,56.08278272 +TN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,83.381835 +TN,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,71.23594 +TN,Nitrogen Oxides,5C_Incineration,,TON,177.3262581 +TN,Nitrogen Oxides,5C_Incineration,biomass,TON,5.611027265 +TN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1847.168814 +TN,Nitrogen Oxides,5C_Open-burning-residential,,TON,747.49357 +TN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,48.7779586 +TN,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,57.76 +TN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.17142476 +TN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1331.373029 +TN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.408024506 +TN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,68.57150935 +TN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.339654169 +TN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.239576179 +TN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.139468652 +TN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.858002302 +TN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.480337591 +TN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,16.70893074 +TN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.231297551 +TN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,29.9568305 +TN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.263637685 +TN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1130.62136 +TN,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.002424209 +TN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,105.0267247 +TN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,87.4329082 +TN,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,4.5543 +TN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8903.344091 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,209.2550647 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,7973.264623 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.64183273 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.120443983 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,172.041248 +TN,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +TN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,28.83308 +TN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.11248 +TN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,89249.7589 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,308.8886288 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,132.3897228 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,278.4282967 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.215341578 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.068771252 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,57.17111064 +TN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.059694793 +TN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.852930027 +TN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,23.53620987 +TN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM10 Filterable,2A1_Cement-production,,TON,556.170529 +TN,PM10 Filterable,2A2_Lime-production,,TON,97.7774357 +TN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,32836.46785 +TN,PM10 Filterable,2A6_Other-minerals,,TON,5458.190641 +TN,PM10 Filterable,2B_Chemicals-other,,TON,649.1514041 +TN,PM10 Filterable,2C_Iron-steel-alloy,,TON,353.0067583 +TN,PM10 Filterable,2C3_Aluminum-production,,TON,115.4856101 +TN,PM10 Filterable,2C5_Lead-production,,TON,34.0777674 +TN,PM10 Filterable,2C6_Zinc-production,,TON,47.9663062 +TN,PM10 Filterable,2C7_Other-metal,,TON,1189.619603 +TN,PM10 Filterable,2C7a_Copper-production,,TON,0.00652174 +TN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,5.30561 +TN,PM10 Filterable,2D3d_Coating-application,,TON,307.1350588 +TN,PM10 Filterable,2D3e_Degreasing,,TON,0 +TN,PM10 Filterable,2D3h_Printing,,TON,0.62 +TN,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.617449401 +TN,PM10 Filterable,2H1_Pulp-and-paper,,TON,630.1786684 +TN,PM10 Filterable,2H2_Ethanol Production,,TON,12.814812 +TN,PM10 Filterable,2H2_Food-and-beverage,,TON,1037.687521 +TN,PM10 Filterable,2H3_Other-industrial-processes,,TON,486.8914259 +TN,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,0.034638681 +TN,PM10 Filterable,2I_Wood-processing,,TON,0.00612 +TN,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,20745.57251 +TN,PM10 Filterable,3Dc_Other-farm,,TON,75212.60842 +TN,PM10 Filterable,5A_Solid-waste-disposal,,TON,0 +TN,PM10 Filterable,5C_Incineration,,TON,4.407562736 +TN,PM10 Filterable,5C_Incineration,biomass,TON,6.571386964 +TN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,6280.369362 +TN,PM10 Filterable,5C_Open-burning-residential,,TON,3452.36699 +TN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,181.862911 +TN,PM10 Filterable,5D1_Wastewater-domestic,,TON,0 +TN,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.452299 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,30.8468305 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,12.94370643 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3746.1056 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.002424209 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,135.4738091 +TN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,154.2477706 +TN,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,11.8412 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,151.682261 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.20060181 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.100539402 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9364.991793 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,231.1091892 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,9199.037651 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.182925141 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.277274916 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,372.2111154 +TN,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +TN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,74.942 +TN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.296 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,787.9046726 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.72874436 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +TN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,223.4500865 +TN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,89249.7589 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,187.5449698 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3706.606946 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.4023739 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,173.8219884 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,73.23364856 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.83445293 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2452.308114 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.577626529 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1087.418945 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,46.90620596 +TN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.94658047 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,409.3766216 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.040586826 +TN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,100.4170997 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,351.0076572 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,295.6115383 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,300.5891012 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.277841249 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.154835818 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,158.1887164 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,108.0225529 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,55.08868696 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.187684215 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,38.09189394 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,455.7470203 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5099.681161 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.240512401 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.879606514 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,61.71612867 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,443.9656297 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,21.56926828 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000308302 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.9065645 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,376.7405545 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.95353814 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,145.114389 +TN,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,7.46268926 +TN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +TN,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,22.54837849 +TN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,559.7384 +TN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,120.37962 +TN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,32836.47085 +TN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6396.305027 +TN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,720.0588105 +TN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,646.90079 +TN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,236.873125 +TN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,204.56592 +TN,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,51.742489 +TN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,3080.960828 +TN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.03 +TN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,7.2538 +TN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,359.8383175 +TN,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +TN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.62 +TN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.79094738 +TN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,952.3672721 +TN,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,12.994612 +TN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2903.067026 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,516.8341901 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,0.053018955 +TN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.00612 +TN,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,20745.57251 +TN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,75222.7464 +TN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,430.368032 +TN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +TN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,6.657897895 +TN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.433794875 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,6280.369362 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3452.36699 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,181.862911 +TN,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +TN,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,3.452299 +TN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,21.0043505 +TN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.351547957 +TN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,531.65196 +TN,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.002424209 +TN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,102.0344549 +TN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,63.0422314 +TN,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,4.5543 +TN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7683.165448 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,191.1739964 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,948.2769935 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.423895468 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030113366 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,154.1542969 +TN,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +TN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,27.087856 +TN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.10248 +TN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11206.77464 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,256.1583695 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,130.7478619 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,39.73908151 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.07876664 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.052933341 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.06984906 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.820691372 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.655492494 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,20.07291058 +TN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM2.5 Filterable,2A1_Cement-production,,TON,196.1529515 +TN,PM2.5 Filterable,2A2_Lime-production,,TON,33.13850085 +TN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3283.827088 +TN,PM2.5 Filterable,2A6_Other-minerals,,TON,1006.169309 +TN,PM2.5 Filterable,2B_Chemicals-other,,TON,361.8583152 +TN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,262.0357847 +TN,PM2.5 Filterable,2C3_Aluminum-production,,TON,79.23876392 +TN,PM2.5 Filterable,2C5_Lead-production,,TON,30.37561738 +TN,PM2.5 Filterable,2C6_Zinc-production,,TON,47.08284117 +TN,PM2.5 Filterable,2C7_Other-metal,,TON,516.1265971 +TN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.00652174 +TN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,4.40253 +TN,PM2.5 Filterable,2D3d_Coating-application,,TON,253.1431991 +TN,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +TN,PM2.5 Filterable,2D3h_Printing,,TON,0.535957 +TN,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.512326085 +TN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,396.334504 +TN,PM2.5 Filterable,2H2_Ethanol Production,,TON,11.914612 +TN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,645.7349571 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,370.8470448 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,0.074660094 +TN,PM2.5 Filterable,2I_Wood-processing,,TON,0.002004824 +TN,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,4189.962769 +TN,PM2.5 Filterable,3Dc_Other-farm,,TON,15039.0404 +TN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +TN,PM2.5 Filterable,5C_Incineration,,TON,4.357396123 +TN,PM2.5 Filterable,5C_Incineration,biomass,TON,6.528099477 +TN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4841.537194 +TN,PM2.5 Filterable,5C_Open-burning-residential,,TON,3161.64131 +TN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,140.198715 +TN,PM2.5 Filterable,5D1_Wastewater-domestic,,TON,0 +TN,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.452299 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,21.8943505 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,11.0316275 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3147.1377 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.002424209 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,132.4815366 +TN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,129.8570898 +TN,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,11.8412 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,147.0737724 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.0235262 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.097654067 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8164.122049 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,213.5359202 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1743.501437 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.942749409 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.186955713 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,351.2934759 +TN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +TN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,73.196876 +TN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.286 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,764.2676727 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.25826628 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +TN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,193.0593196 +TN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11206.77464 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,137.6155702 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1393.788633 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.4280291 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,59.33342439 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,56.16896489 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.594419947 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1859.61427 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.148180185 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,757.8491944 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,18.71384205 +TN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.05651816 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,378.7015541 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.037421908 +TN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,97.40454212 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,295.2391244 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,294.0627741 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,61.7586754 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.141221878 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.139040745 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,148.1411807 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,104.7818627 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,50.84495979 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.187684215 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,36.94914839 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,419.3062215 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5022.365147 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.985508582 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.682167778 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,58.24683489 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,430.6467249 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,19.84384287 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000308302 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.789368 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,346.6024836 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.32493146 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,133.5051958 +TN,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,7.44591216 +TN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +TN,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,22.54837849 +TN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,199.7209225 +TN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,55.74406514 +TN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3283.827088 +TN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1287.255777 +TN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,431.5654906 +TN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,556.0733211 +TN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,197.6571836 +TN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,121.702493 +TN,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,50.859089 +TN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,2407.468238 +TN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.03 +TN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,6.35072 +TN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,305.7107318 +TN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +TN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.535957 +TN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.685823072 +TN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,717.7581799 +TN,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,12.094412 +TN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2514.328696 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,401.377063 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,0.10345665 +TN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.002004824 +TN,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4189.962769 +TN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,15049.1774 +TN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,293.995072 +TN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,6.607090172 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.391148498 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4841.537194 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3161.64131 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,140.198715 +TN,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +TN,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,3.452299 +TN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,13.02513313 +TN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,16.85191591 +TN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,58370.089 +TN,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.0801011 +TN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,49.31397749 +TN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,167.94501 +TN,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1.00821 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.029774608 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.960809647 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.183705445 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1216.820564 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,80.01391245 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,22173.03849 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.479409342 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.344273883 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,207.1545212 +TN,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +TN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.75175 +TN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0224 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,17.87275618 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.468344356 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.52635E-05 +TN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,454.4020747 +TN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.54484736 +TN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,557.1681559 +TN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.032820687 +TN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,27.41193704 +TN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.358879594 +TN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.033152325 +TN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,71.65382427 +TN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.790945098 +TN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.38612606 +TN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.421049956 +TN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.29295764 +TN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,7.647980085 +TN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005679116 +TN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.873109194 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,55.74196419 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.47176148 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4314.854062 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.265611653 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.81438165 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.33691513 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.809619512 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.600212376 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.052806051 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.792449772 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.773327753 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,94.54263698 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,33.93819329 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,33.64336999 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,26.35161509 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.657917708 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.279992777 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.35944E-05 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.040522185 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.896898587 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.020634273 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.686490055 +TN,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1.859579029 +TN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,354.5181117 +TN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,56.4 +TN,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,0 +TN,Sulfur Dioxide,2A6_Other-minerals,,TON,1335.690061 +TN,Sulfur Dioxide,2B_Chemicals-other,,TON,476.6888121 +TN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,297.61571 +TN,Sulfur Dioxide,2C3_Aluminum-production,,TON,4.1564267 +TN,Sulfur Dioxide,2C5_Lead-production,,TON,0.885 +TN,Sulfur Dioxide,2C6_Zinc-production,,TON,235.8078083 +TN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,12.05112 +TN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.148 +TN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,40.9901 +TN,Sulfur Dioxide,2D3d_Coating-application,,TON,1.381881253 +TN,Sulfur Dioxide,2D3h_Printing,,TON,11.06 +TN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,98.4866856 +TN,Sulfur Dioxide,2H2_Ethanol Production,,TON,69.6881 +TN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,461.48 +TN,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0 +TN,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,14.43614154 +TN,Sulfur Dioxide,3Dc_Other-farm,,TON,8.71 +TN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,28.637336 +TN,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,24.141642 +TN,Sulfur Dioxide,5C_Incineration,,TON,43.76910085 +TN,Sulfur Dioxide,5C_Incineration,biomass,TON,0.989373709 +TN,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,613.2591281 +TN,Sulfur Dioxide,5C_Open-burning-residential,,TON,124.582281 +TN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.6034944 +TN,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.345 +TN,Volatile Organic Compounds,11C_Other-natural,,TON,801863.94 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.415 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.72 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,8.143460572 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,602.00727 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.032699 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,139.3630428 +TN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,385.4538768 +TN,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,3.53837 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,209.4216661 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,317.163049 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,64.45733273 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,314.8488573 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.15491768 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,67.49198011 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.452070562 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.091849243 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,416.2651954 +TN,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +TN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,8.0153 +TN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.218 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1031.560243 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,400.1184685 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.070702864 +TN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1199.757772 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1140.57778 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,52738.87183 +TN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,143.5903054 +TN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2234.367111 +TN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,105.5825217 +TN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,141.9832288 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3547.133506 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,32.85053244 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1279.730287 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,482.9204172 +TN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1136.058629 +TN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,671.2062207 +TN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.027084752 +TN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,44.30466146 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,16.92558557 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.24768385 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,84.9246416 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.039411386 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022086574 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,262.3724491 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,153.0956457 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1700.286075 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,28.43078452 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,53.55682242 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7281.082036 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6147.5507 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.68020936 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.55282489 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,242.2106157 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,503.5520866 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,265.0345772 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.050307118 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.133458 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,11938.55116 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,50.50702459 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10320.56537 +TN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,1881.73391 +TN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,502.893377 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,455.3941637 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1029.295199 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4239.651122 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,15055.50802 +TN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2182.858238 +TN,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +TN,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,0 +TN,Volatile Organic Compounds,2A6_Other-minerals,,TON,142.9567384 +TN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1412.474577 +TN,Volatile Organic Compounds,2B_Chemicals-other,,TON,6085.772075 +TN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,362.606574 +TN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1720.27636 +TN,Volatile Organic Compounds,2C5_Lead-production,,TON,51.557 +TN,Volatile Organic Compounds,2C6_Zinc-production,,TON,2.7393 +TN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,329.557 +TN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.133 +TN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,30730.63136 +TN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,33.2856 +TN,Volatile Organic Compounds,2D3d_Coating-application,,TON,26237.063 +TN,Volatile Organic Compounds,2D3e_Degreasing,,TON,4910.395693 +TN,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,13.0390005 +TN,Volatile Organic Compounds,2D3h_Printing,,TON,17515.80411 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,428.6879594 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3980.669328 +TN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1670.369954 +TN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,88.8068 +TN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,11718.38278 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4322.690677 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,3.540499592 +TN,Volatile Organic Compounds,2I_Wood-processing,,TON,8.31 +TN,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,89.382 +TN,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,423.548 +TN,Volatile Organic Compounds,3B3_Manure-swine,,TON,175.806 +TN,Volatile Organic Compounds,3B4_Manure-poultry,,TON,359.462 +TN,Volatile Organic Compounds,3Dc_Other-farm,,TON,109 +TN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1668.582705 +TN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,172.178408 +TN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,443.2497521 +TN,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,991.5029 +TN,Volatile Organic Compounds,5C_Incineration,,TON,36.43173943 +TN,Volatile Organic Compounds,5C_Incineration,biomass,TON,10.12831663 +TN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,4285.431454 +TN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,719.71685 +TN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,204.474461 +TN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,118.636 +TN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,91.40098234 +TN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.6015865 +TN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,203.046 +TX,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,575.7236 +TX,Ammonia,1A1a_Public-Electricity,biomass,TON,5.5696 +TX,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,81.456 +TX,Ammonia,1A1a_Public-Electricity,hard_coal,TON,504.0657 +TX,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,2.32 +TX,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2295.843587 +TX,Ammonia,1A1b_Pet-refining,heavy_oil,TON,0.12514314 +TX,Ammonia,1A1b_Pet-refining,natural_gas,TON,335.7894569 +TX,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.0731 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.788579185 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.338872576 +TX,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,69.62179753 +TX,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.45793416 +TX,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +TX,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.299160249 +TX,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.436725495 +TX,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1540.220386 +TX,Ammonia,1A2c_Chemicals,natural_gas,TON,63.9121 +TX,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,97.47053794 +TX,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.453605001 +TX,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,125.5323586 +TX,Ammonia,1A3bii_Road-LDV,light_oil,TON,7030.053888 +TX,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23.62592544 +TX,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,335.0169695 +TX,Ammonia,1A3biii_Road-bus,diesel_oil,TON,15.16825253 +TX,Ammonia,1A3biii_Road-bus,light_oil,TON,3.296097927 +TX,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.167954129 +TX,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,428.390213 +TX,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,12.85326033 +TX,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,285.1896573 +TX,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,53.08359199 +TX,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.134367434 +TX,Ammonia,1A3c_Rail,diesel_oil,TON,33.98818411 +TX,Ammonia,1A3c_Rail,light_oil,TON,0.000145568 +TX,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.121789763 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.30527925 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.192326017 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.277804003 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,93.71867602 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.272079347 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,10.65257348 +TX,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.772708294 +TX,Ammonia,1A4bi_Residential-mobile,light_oil,TON,10.51233445 +TX,Ammonia,1A4bi_Residential-stationary,biomass,TON,269.393776 +TX,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +TX,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +TX,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2078.58 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,81.71706373 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.523784432 +TX,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.104981761 +TX,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.859302976 +TX,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.180536372 +TX,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,7.406102453 +TX,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1.3173 +TX,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.344 +TX,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,27.5958 +TX,Ammonia,2A1_Cement-production,,TON,90.3731 +TX,Ammonia,2A2_Lime-production,Other_Fuel,TON,23.7887 +TX,Ammonia,2A6_Other-minerals,,TON,207.3434 +TX,Ammonia,2B_Chemicals-other,,TON,348.4453 +TX,Ammonia,2C_Iron-steel-alloy,,TON,3.7817 +TX,Ammonia,2C5_Lead-production,,TON,0.0685 +TX,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.4214 +TX,Ammonia,2D3d_Coating-application,,TON,1.9126 +TX,Ammonia,2D3e_Degreasing,Other_Fuel,TON,7.623 +TX,Ammonia,2D3h_Printing,,TON,5.2065 +TX,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,1.0143 +TX,Ammonia,2H1_Pulp-and-paper,,TON,191.1521 +TX,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,74.173 +TX,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,189.94416 +TX,Ammonia,3B1a_Cattle-dairy,,TON,16203.615 +TX,Ammonia,3B1b_Cattle-non-dairy,,TON,117561.639 +TX,Ammonia,3B2_Manure-sheep,,TON,3302.8215 +TX,Ammonia,3B3_Manure-swine,,TON,15878.396 +TX,Ammonia,3B4_Manure-other,,TON,5898.9612 +TX,Ammonia,3B4_Manure-poultry,,TON,25991.7898 +TX,Ammonia,3B4d_Manure-goats,,TON,7948.160088 +TX,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,86778.40273 +TX,Ammonia,3F_Ag-res-on-field,,TON,3462.990841 +TX,Ammonia,5A_Solid-waste-disposal,,TON,2.49625 +TX,Ammonia,5B_Compost-biogas,Other_Fuel,TON,883.14 +TX,Ammonia,5C_Incineration,biomass,TON,1.004 +TX,Ammonia,5C_Open-burning-dump,,TON,0.0001 +TX,Ammonia,5D1_Wastewater-domestic,,TON,107.9266 +TX,Ammonia,5D2_Wastewater-industrial,biomass,TON,26.7803 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1205721.608 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1257320.945 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,52593.23351 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,12003276.52 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,121613.6406 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,32.77057127 +TX,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4253957.299 +TX,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,99755852.83 +TX,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,813084.3468 +TX,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6011731.386 +TX,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1071558.587 +TX,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,122861.1767 +TX,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,7115.99242 +TX,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,27495711.74 +TX,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,323749.8736 +TX,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15810480.53 +TX,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1487662.772 +TX,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,77467.97604 +TX,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,25901.1988 +TX,Carbon Dioxide,1A3c_Rail,light_oil,TON,49.09916484 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,648356.6478 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,892043.77 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,39495.16866 +TX,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,95093.59364 +TX,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,776371.9393 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10065707.39 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,595465.5759 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,12869.3504 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,396370.1711 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22230.83895 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,524957.5072 +TX,Carbon Monoxide,11C_Other-natural,,TON,910301.588 +TX,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,109194.6773 +TX,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,72.75828033 +TX,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,163.4242973 +TX,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,42855.02982 +TX,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,30.97392819 +TX,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.196405886 +TX,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,15769.41746 +TX,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0.109842404 +TX,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,5.998201467 +TX,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,11506.78556 +TX,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,24.0149 +TX,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,78.3486 +TX,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,3318.6122 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5926.279372 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41680.54102 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1405.910238 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7538.415688 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1775.590659 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,35.97480038 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,45.66151319 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,244.9142287 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,59446.10271 +TX,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,5.4498 +TX,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,17.6453 +TX,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,11049.3342 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0456 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,18.7524 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,30296.98485 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,25373.41497 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.905701074 +TX,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29728.92411 +TX,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,38138.86266 +TX,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1414378.549 +TX,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6249.057496 +TX,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,115684.6878 +TX,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2829.137904 +TX,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3763.124547 +TX,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,60.5136343 +TX,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,40243.58728 +TX,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6176.133048 +TX,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,22855.87061 +TX,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,30027.02727 +TX,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3075.730923 +TX,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,10990.76638 +TX,Carbon Monoxide,1A3c_Rail,light_oil,TON,4.20725158 +TX,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5326.912969 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,959.9709948 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.69594315 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.307351709 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.360230494 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7438.981599 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2789.445742 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,189980.6434 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,840.8049019 +TX,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,306.0838401 +TX,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,187595.9972 +TX,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,52174.3804 +TX,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.1 +TX,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +TX,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.01 +TX,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4515.33 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23567.97117 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,22198.07751 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,101.720323 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,76289.76741 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,44.86815843 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,62995.74896 +TX,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,88446.26301 +TX,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.1146 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,75.73390304 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,57.11319696 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,73.5656 +TX,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,83943.823 +TX,Carbon Monoxide,2A1_Cement-production,,TON,1129.1144 +TX,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,831.0019 +TX,Carbon Monoxide,2A6_Other-minerals,,TON,14999.2456 +TX,Carbon Monoxide,2B_Chemicals-other,,TON,10127.953 +TX,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4941.8696 +TX,Carbon Monoxide,2C3_Aluminum-production,,TON,1084.754 +TX,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,39.1079 +TX,Carbon Monoxide,2C7a_Copper-production,,TON,942.4439 +TX,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,54.8421 +TX,Carbon Monoxide,2D3d_Coating-application,,TON,107.8578 +TX,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.9927 +TX,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.1737 +TX,Carbon Monoxide,2D3h_Printing,,TON,19.0318 +TX,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,5.064 +TX,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3880.0427 +TX,Carbon Monoxide,2H2_Food-and-beverage,,TON,2829.2303 +TX,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,100.1933 +TX,Carbon Monoxide,3F_Ag-res-on-field,,TON,36174.38518 +TX,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1178.959776 +TX,Carbon Monoxide,5C_Incineration,,TON,0.719563904 +TX,Carbon Monoxide,5C_Incineration,biomass,TON,440.3520896 +TX,Carbon Monoxide,5C_Open-burning-dump,,TON,0.0344 +TX,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,142071.1567 +TX,Carbon Monoxide,5C_Open-burning-residential,,TON,10861.92 +TX,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,945.88 +TX,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,10.705 +TX,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,20 +TX,Carbon Monoxide,5D3_Wastewater-commertial,Other_Fuel,TON,5.9537 +TX,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,9.8417 +TX,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,40.56219784 +TX,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,273.6205197 +TX,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,622.8318775 +TX,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,379.9371238 +TX,Methane,1A2g_Construction_and_Mining,light_oil,TON,94.92588146 +TX,Methane,1A2g_Construction_and_Mining,natural_gas,TON,1.325789102 +TX,Methane,1A3bii_Road-LDV,diesel_oil,TON,146.9557551 +TX,Methane,1A3bii_Road-LDV,light_oil,TON,3060.32828 +TX,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,42.61129279 +TX,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,365.1092802 +TX,Methane,1A3biii_Road-bus,diesel_oil,TON,18.27300749 +TX,Methane,1A3biii_Road-bus,light_oil,TON,6.575091278 +TX,Methane,1A3biii_Road-bus,natural_gas,TON,52.902981 +TX,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1543.543087 +TX,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,6.598242686 +TX,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,514.3121926 +TX,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,32.9898961 +TX,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.775128545 +TX,Methane,1A3c_Rail,diesel_oil,TON,1.108502368 +TX,Methane,1A3c_Rail,light_oil,TON,0.021572653 +TX,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,20.96385097 +TX,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,662.8506639 +TX,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,552.7868369 +TX,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.192299806 +TX,Methane,1A4bi_Residential-mobile,light_oil,TON,823.481695 +TX,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,308.8018393 +TX,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,97.01075163 +TX,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.55410635 +TX,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,689.4257746 +TX,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.582948014 +TX,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,551.0132409 +TX,Nitrogen Oxides,11C_Other-natural,,TON,100854.769 +TX,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,52164.54345 +TX,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,158.2364087 +TX,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,507.3042131 +TX,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,44125.37148 +TX,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,233.9203433 +TX,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.587803375 +TX,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,22429.6739 +TX,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0.03749793 +TX,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,9.299624077 +TX,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,16489.48768 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,28.6974 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,63.4473 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,2205.8015 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6976.172669 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5667.312164 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,205.9689775 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2794.389449 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,8061.493003 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,58.43674366 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,769.0074958 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,234.1238211 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,101405.1052 +TX,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,6.0796 +TX,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,53.9785 +TX,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,14003.6904 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.219 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,21.1091 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,58389.48422 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,355.9886163 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.366999979 +TX,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,8341.096586 +TX,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,13466.32689 +TX,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,166515.5669 +TX,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2396.409284 +TX,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12101.95278 +TX,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,7797.266731 +TX,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,349.2048429 +TX,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,32.5647925 +TX,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,145991.1934 +TX,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,836.3223406 +TX,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,60656.2629 +TX,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,3438.759182 +TX,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,147.4480571 +TX,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,54558.67038 +TX,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.295481356 +TX,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,22822.11504 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,836.7557869 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,56.78819463 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10.74812945 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.511727613 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9185.634935 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5089.394138 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2752.751505 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,213.3431233 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,753.8145165 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1929.00014 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1067.718576 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.51 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.2 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,11042.53 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,49848.19238 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1335.401429 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,110.611261 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,817.2803339 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,232.7851415 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3314.819313 +TX,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,106297.3712 +TX,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.8268 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,83.37321408 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,14.66218592 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,33.6788 +TX,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,150552.7311 +TX,Nitrogen Oxides,2A1_Cement-production,,TON,4717.0101 +TX,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2495.7212 +TX,Nitrogen Oxides,2A6_Other-minerals,,TON,18553.1922 +TX,Nitrogen Oxides,2B_Chemicals-other,,TON,5231.6243 +TX,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1145.6665 +TX,Nitrogen Oxides,2C3_Aluminum-production,,TON,258.889 +TX,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,87.3534 +TX,Nitrogen Oxides,2C7a_Copper-production,,TON,28.9679 +TX,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,6.7588 +TX,Nitrogen Oxides,2D3d_Coating-application,,TON,89.5163 +TX,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,1.1163 +TX,Nitrogen Oxides,2D3h_Printing,,TON,25.3619 +TX,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,7.0255 +TX,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3013.6726 +TX,Nitrogen Oxides,2H2_Food-and-beverage,,TON,104.4672 +TX,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,28.6549 +TX,Nitrogen Oxides,3F_Ag-res-on-field,,TON,963.8733781 +TX,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,276.8071 +TX,Nitrogen Oxides,5C_Incineration,,TON,146.8908855 +TX,Nitrogen Oxides,5C_Incineration,biomass,TON,346.5186133 +TX,Nitrogen Oxides,5C_Open-burning-dump,,TON,0.0835 +TX,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,4203.29474 +TX,Nitrogen Oxides,5C_Open-burning-residential,,TON,766.69 +TX,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,42.9 +TX,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.8616 +TX,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,6.414 +TX,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,150.2967 +TX,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,10.23312454 +TX,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2859.462375 +TX,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.773407535 +TX,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,335.9001423 +TX,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.852040608 +TX,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.967812468 +TX,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.395669177 +TX,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,27.57232291 +TX,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.895725457 +TX,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.0469965 +TX,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,37.69618859 +TX,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.843128583 +TX,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,9044.590084 +TX,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,47.43933617 +TX,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,81.84777402 +TX,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4911.200626 +TX,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.120900792 +TX,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.021059916 +TX,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,1786.553688 +TX,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,1.146473838 +TX,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,2384.160083 +TX,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.40571326 +TX,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,4.598915381 +TX,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,84.64555347 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.069283331 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,783.6354199 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,559.5246553 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,5.796582894 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,141.4464936 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,4.882008293 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,3079.120782 +TX,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,1.2456793 +TX,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,13.8381781 +TX,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,580.2424003 +TX,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.643492 +TX,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,526237.3956 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,271.1667372 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.338513868 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.980277418 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.300355184 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,106.1544255 +TX,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,6369.053021 +TX,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.004357 +TX,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +TX,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,21.3708 +TX,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,2339.598218 +TX,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.03 +TX,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.794 +TX,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.0343 +TX,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,643.519623 +TX,PM10 Filterable,2A1_Cement-production,,TON,912.2919991 +TX,PM10 Filterable,2A2_Lime-production,,TON,338.0980698 +TX,PM10 Filterable,2A5b_Construction-and-demolition,,TON,153240.7644 +TX,PM10 Filterable,2A6_Other-minerals,,TON,35984.27691 +TX,PM10 Filterable,2B_Chemicals-other,,TON,1230.521121 +TX,PM10 Filterable,2C_Iron-steel-alloy,,TON,628.8914853 +TX,PM10 Filterable,2C3_Aluminum-production,,TON,351.0097764 +TX,PM10 Filterable,2C5_Lead-production,,TON,5.43165E-05 +TX,PM10 Filterable,2C6_Zinc-production,,TON,0.65 +TX,PM10 Filterable,2C7_Other-metal,,TON,171.6835454 +TX,PM10 Filterable,2C7a_Copper-production,,TON,37.43549197 +TX,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.008 +TX,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,78.54960954 +TX,PM10 Filterable,2D3d_Coating-application,,TON,123.6991 +TX,PM10 Filterable,2D3e_Degreasing,,TON,3.3776 +TX,PM10 Filterable,2D3f_Dry-cleaning,,TON,0.0004 +TX,PM10 Filterable,2D3h_Printing,,TON,4.3412 +TX,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,5.5597 +TX,PM10 Filterable,2H1_Pulp-and-paper,,TON,998.1888097 +TX,PM10 Filterable,2H2_Food-and-beverage,,TON,8093.86789 +TX,PM10 Filterable,2H3_Other-industrial-processes,,TON,1748.673911 +TX,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,3003.334479 +TX,PM10 Filterable,2I_Wood-processing,,TON,9.9627 +TX,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,128159.1057 +TX,PM10 Filterable,3Dc_Other-farm,,TON,272610.4852 +TX,PM10 Filterable,5A_Solid-waste-disposal,,TON,691.7673519 +TX,PM10 Filterable,5C_Incineration,,TON,0.515858 +TX,PM10 Filterable,5C_Incineration,biomass,TON,41.36242295 +TX,PM10 Filterable,5C_Open-burning-dump,,TON,0.0142 +TX,PM10 Filterable,5C_Open-burning-land-clearing,,TON,14291.19596 +TX,PM10 Filterable,5C_Open-burning-residential,,TON,4855.91 +TX,PM10 Filterable,5C_Open-burning-yard-waste,,TON,159.61 +TX,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.6187142 +TX,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,7.114941 +TX,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,1.4190245 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,9626.674429 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,50.0314594 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,88.34870489 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5353.368355 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.131200156 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.024100029 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3412.816052 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,1.040659973 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4268.80574 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,2.1772 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,7.1229 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,220.8481 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,444.0336095 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,132.372821 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.621365005 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.069209476 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,690.9865039 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,603.3822686 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,6.812920618 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,158.7438536 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,9.187097357 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5959.685686 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.6693 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,18.0573 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1120.167 +TX,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.6934 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,4907.480089 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,188.3938664 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003876582 +TX,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,643.5153906 +TX,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,526237.3956 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,853.3563351 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,10331.86141 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,162.0010237 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,613.4388005 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,506.4476302 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,18.99556274 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.303959924 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,7741.411696 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,36.20703841 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,4401.224815 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,158.0504638 +TX,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.019139788 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1537.597895 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.005164999 +TX,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,551.8995313 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,277.2677665 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.917748526 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.269355092 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.664318162 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,237.8199191 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,452.6131659 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,230.6869812 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.976949358 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,48.61247817 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,962.8123397 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6619.955844 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.01 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,58.51 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3922.060404 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,102.6330965 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,14.6564522 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,646.9987905 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.048781774 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,266.3047999 +TX,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,3270.274202 +TX,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.03 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.8025 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.1654 +TX,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1446.500688 +TX,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,938.7617 +TX,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,387.3744 +TX,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,153240.7644 +TX,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,36413.8557 +TX,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1600.7833 +TX,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,982.2146 +TX,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,362.2098 +TX,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0002 +TX,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.65 +TX,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,180.0709 +TX,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,59.5393 +TX,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.008 +TX,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,80.5444 +TX,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,124.055 +TX,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.3776 +TX,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.1079 +TX,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,4.3412 +TX,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,5.5598 +TX,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1374.5368 +TX,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,8114.2537 +TX,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1448.1656 +TX,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,3311.4561 +TX,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,9.9627 +TX,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,128159.1057 +TX,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,272614.7395 +TX,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6129.923238 +TX,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,729.6016 +TX,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.639215374 +TX,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,50.56429937 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0142 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,14291.19596 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4855.91 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,159.61 +TX,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.621 +TX,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.318 +TX,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.7623 +TX,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,6028.829141 +TX,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,47.43935371 +TX,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,81.70230183 +TX,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2747.288358 +TX,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.120900837 +TX,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.021002549 +TX,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1781.980548 +TX,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,0.572109115 +TX,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,2062.844689 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.4008063 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,3.461415381 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,79.9073104 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.010446666 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,513.8531609 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,499.2311867 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.0316545 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,89.23543895 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,4.650572473 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2921.671799 +TX,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,1.2330793 +TX,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,11.4282391 +TX,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,547.5159568 +TX,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.643492 +TX,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,61997.43203 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,228.2970359 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.101888227 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.795424576 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.229436113 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,94.27380185 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,6104.151765 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.004357 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,11.7712 +TX,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,2302.256305 +TX,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.03 +TX,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.640503097 +TX,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.026 +TX,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,641.0262943 +TX,PM2.5 Filterable,2A1_Cement-production,,TON,416.28498 +TX,PM2.5 Filterable,2A2_Lime-production,,TON,88.20971555 +TX,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,15324.2856 +TX,PM2.5 Filterable,2A6_Other-minerals,,TON,5986.596474 +TX,PM2.5 Filterable,2B_Chemicals-other,,TON,919.6060452 +TX,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,358.3184081 +TX,PM2.5 Filterable,2C3_Aluminum-production,,TON,66.26351885 +TX,PM2.5 Filterable,2C5_Lead-production,,TON,5.43165E-05 +TX,PM2.5 Filterable,2C6_Zinc-production,,TON,0.64 +TX,PM2.5 Filterable,2C7_Other-metal,,TON,133.9984812 +TX,PM2.5 Filterable,2C7a_Copper-production,,TON,25.52267768 +TX,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.00282352 +TX,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,62.53531814 +TX,PM2.5 Filterable,2D3d_Coating-application,,TON,100.09689 +TX,PM2.5 Filterable,2D3e_Degreasing,,TON,2.845833555 +TX,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0.0001 +TX,PM2.5 Filterable,2D3h_Printing,,TON,4.021580823 +TX,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,4.840508 +TX,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,669.6202182 +TX,PM2.5 Filterable,2H2_Food-and-beverage,,TON,7185.265002 +TX,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,284.1750836 +TX,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,3529.05245 +TX,PM2.5 Filterable,2I_Wood-processing,,TON,5.36284453 +TX,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,26092.66809 +TX,PM2.5 Filterable,3Dc_Other-farm,,TON,54520.82786 +TX,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,332.0925444 +TX,PM2.5 Filterable,5C_Incineration,,TON,0.515858 +TX,PM2.5 Filterable,5C_Incineration,biomass,TON,24.77229231 +TX,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.0142 +TX,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,11017.08885 +TX,PM2.5 Filterable,5C_Open-burning-residential,,TON,4446.99 +TX,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,123.05 +TX,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.6187142 +TX,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,4.31895 +TX,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.7838247 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,6610.913622 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,50.03148246 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,88.20324364 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3190.974375 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.131200216 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02404266 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3408.242957 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.654011859 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3948.695349 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,2.1715 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,5.9854 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,216.1098571 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,430.5057081 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,131.93862 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.611026 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.010432072 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,626.4328794 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,541.6720534 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,3.05138092 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,106.5597802 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.805058162 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5798.945275 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.6567 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,15.647361 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1087.440546 +TX,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.6934 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,4760.256531 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,173.4423082 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003876582 +TX,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,567.434577 +TX,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,61997.43203 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,615.5747283 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3101.056991 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,114.714827 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,196.3130545 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,380.6332572 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.554212101 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.55480824 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,5870.178736 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,12.36494289 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3049.198897 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,48.13106086 +TX,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.41163295 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1491.470228 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.005051581 +TX,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,518.4060122 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,235.2565684 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.618135967 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.094604434 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.591283261 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,225.072442 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,439.0346664 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,212.9169829 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.976949358 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,47.15409033 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,885.787359 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6355.112965 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.01 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,48.48 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3804.398345 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,96.59363051 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,14.2167692 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,595.2436737 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.897319333 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,245.0005317 +TX,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,3232.731901 +TX,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.03 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,4.649003097 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.1571 +TX,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1444.005433 +TX,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,442.7548019 +TX,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,137.4859189 +TX,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,15324.2856 +TX,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,6416.175184 +TX,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1289.864288 +TX,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,711.641162 +TX,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,77.4635424 +TX,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0002 +TX,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.64 +TX,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,142.3858357 +TX,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,47.62649659 +TX,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.00282352 +TX,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,64.5301086 +TX,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,100.45279 +TX,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.845833555 +TX,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.1076 +TX,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,4.021580823 +TX,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,4.840608 +TX,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1065.688512 +TX,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,7205.650833 +TX,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,211.846992 +TX,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,3608.993798 +TX,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.36284453 +TX,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,26092.66809 +TX,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,54525.08212 +TX,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,4400.964433 +TX,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,369.9267929 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.680084354 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,33.93330365 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0142 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,11017.08885 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4446.99 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,123.05 +TX,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.621 +TX,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.522009 +TX,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.1271 +TX,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,207523.8749 +TX,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,22.91047194 +TX,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,24.10835999 +TX,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,135532.0395 +TX,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.025716918 +TX,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,645.1360108 +TX,Sulfur Dioxide,1A1b_Pet-refining,heavy_oil,TON,0.000356618 +TX,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,20852.24334 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.1738 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.6359 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,4976.275 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.74498042 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.742647089 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.451101088 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,323.0407194 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,354.2822851 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,109.3272182 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2383.909863 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,26.69231197 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,11016.92664 +TX,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.2276 +TX,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,2.8646 +TX,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2409.3232 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.7765 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1765 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,130.1920902 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.017944772 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000183247 +TX,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,988.4618098 +TX,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,37.00376091 +TX,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,2092.242475 +TX,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.994574947 +TX,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,125.1008825 +TX,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,9.397687823 +TX,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.598590414 +TX,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.037681976 +TX,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,237.171167 +TX,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.734241659 +TX,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,135.82342 +TX,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,31.16468369 +TX,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.623505023 +TX,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,38.55525979 +TX,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000388083 +TX,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2426.287537 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,25.12182228 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.447280896 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,41.86150282 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,12.54631996 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,73.02160532 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.576606251 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,15.07468955 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.221263193 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.111061072 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,14.14607171 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,92.74826768 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.67 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.59 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,67.48 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,109.9198418 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.534257731 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.152006226 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,7.191746018 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.708455959 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.552173516 +TX,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,24270.32336 +TX,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0238 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,291.6144 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.8572 +TX,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5103.179327 +TX,Sulfur Dioxide,2A1_Cement-production,,TON,2287.502 +TX,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1347.1277 +TX,Sulfur Dioxide,2A6_Other-minerals,,TON,10131.2273 +TX,Sulfur Dioxide,2B_Chemicals-other,,TON,15409.2998 +TX,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,627.8485 +TX,Sulfur Dioxide,2C3_Aluminum-production,,TON,34.3443 +TX,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,7.1051 +TX,Sulfur Dioxide,2C7a_Copper-production,,TON,1.1519 +TX,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,233.6494 +TX,Sulfur Dioxide,2D3d_Coating-application,,TON,1.0168 +TX,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.0069 +TX,Sulfur Dioxide,2D3h_Printing,,TON,0.1461 +TX,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0.9755 +TX,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1842.4997 +TX,Sulfur Dioxide,2H2_Food-and-beverage,,TON,2.1007 +TX,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,17.4016 +TX,Sulfur Dioxide,3F_Ag-res-on-field,,TON,227.6153405 +TX,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,87.691 +TX,Sulfur Dioxide,5C_Incineration,,TON,2.062097363 +TX,Sulfur Dioxide,5C_Incineration,biomass,TON,41.35149664 +TX,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,1395.492474 +TX,Sulfur Dioxide,5C_Open-burning-residential,,TON,127.72 +TX,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.2 +TX,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.8889 +TX,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,1.0313 +TX,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,2.651 +TX,Volatile Organic Compounds,11C_Other-natural,,TON,4881710.99 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,952.2712572 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,8.754158441 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,25.72077171 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,666.6711505 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.504903371 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.01950013 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1626.574608 +TX,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,2600.235526 +TX,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,3221.846023 +TX,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,15432.26565 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,1.5713 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,6.4844 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,437.8042 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,641.4253596 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1263.820242 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,136.3254063 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,299.2124537 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,622.8509539 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.531743954 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.040777391 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,23.34713767 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,12271.9864 +TX,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.6041 +TX,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,1.6186 +TX,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1729.6698 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.031 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.3159 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,6354.555902 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1735.313067 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.286586132 +TX,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2642.899213 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,3502.552209 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,103715.0827 +TX,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,728.1337113 +TX,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9006.578174 +TX,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,586.871932 +TX,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,177.3051034 +TX,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,6.44964185 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9415.737425 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,235.9443198 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5256.892199 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1143.858785 +TX,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1538.021102 +TX,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2878.544656 +TX,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.134293069 +TX,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,697.2057303 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,63.19159323 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.85214802 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.241049894 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.109356809 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,566.2320152 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,641.671856 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,7279.034749 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,119.491808 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,71.53681366 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,15590.59763 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6236.210354 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,620.78 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4483.010961 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1059.397057 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,26.76499 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,21238.5764 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.07040637 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,19255.476 +TX,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,683658.984 +TX,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,2762.329702 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,7002.776099 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,4626.255392 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4431.547336 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,53822.89821 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,798.4636 +TX,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,411183.9373 +TX,Volatile Organic Compounds,2A1_Cement-production,,TON,199.7229 +TX,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,33.3436 +TX,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,6.1789 +TX,Volatile Organic Compounds,2A6_Other-minerals,,TON,296.2354934 +TX,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,3364.963807 +TX,Volatile Organic Compounds,2B_Chemicals-other,,TON,19790.3039 +TX,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,680.8295 +TX,Volatile Organic Compounds,2C3_Aluminum-production,,TON,210.4876 +TX,Volatile Organic Compounds,2C5_Lead-production,,TON,1.2855 +TX,Volatile Organic Compounds,2C7_Other-metal,,TON,282.391 +TX,Volatile Organic Compounds,2C7a_Copper-production,,TON,44.1875 +TX,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,108620.93 +TX,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,125.0052 +TX,Volatile Organic Compounds,2D3d_Coating-application,,TON,87709.49481 +TX,Volatile Organic Compounds,2D3e_Degreasing,,TON,13256.6816 +TX,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,939.14175 +TX,Volatile Organic Compounds,2D3h_Printing,,TON,3055.594 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3649.937047 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,20.79052086 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,17556.12412 +TX,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,6600.8564 +TX,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1923.1568 +TX,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4025.156675 +TX,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,9.083724895 +TX,Volatile Organic Compounds,2I_Wood-processing,,TON,38.6462 +TX,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1301.083 +TX,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,9439.444 +TX,Volatile Organic Compounds,3B3_Manure-swine,,TON,1274.911 +TX,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2082.211 +TX,Volatile Organic Compounds,3Dc_Other-farm,,TON,2.0477 +TX,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7535.399346 +TX,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2187.738891 +TX,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,590.1884 +TX,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,6248.09 +TX,Volatile Organic Compounds,5C_Incineration,,TON,0.00976253 +TX,Volatile Organic Compounds,5C_Incineration,biomass,TON,47.24530914 +TX,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.0371 +TX,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,6.6134 +TX,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,9751.640805 +TX,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1093.88 +TX,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,180.15 +TX,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,563.1712 +TX,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1157.5143 +TX,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.3193 +TX,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,109.529 +TX,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0004 +UT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.5377 +UT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,3.7432 +UT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,242.4882 +UT,Ammonia,1A1b_Pet-refining,natural_gas,TON,126.7137 +UT,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.4249 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.994419151 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.043477875 +UT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.337521624 +UT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.334938781 +UT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.080344523 +UT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.058825806 +UT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,62.16253738 +UT,Ammonia,1A2c_Chemicals,natural_gas,TON,1.3322 +UT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,6.441926496 +UT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.161221308 +UT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.97575713 +UT,Ammonia,1A3bii_Road-LDV,light_oil,TON,761.1140263 +UT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.08106171 +UT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.57129021 +UT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.853726945 +UT,Ammonia,1A3biii_Road-bus,light_oil,TON,1.234013191 +UT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.01582956 +UT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,99.4211029 +UT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,31.06198758 +UT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,44.676065 +UT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.441858178 +UT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.62901639 +UT,Ammonia,1A3c_Rail,diesel_oil,TON,3.244732222 +UT,Ammonia,1A3c_Rail,light_oil,TON,0.001629937 +UT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0001486 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.316876169 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.328726271 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.50504309 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01731223 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.203749478 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.553429198 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.118259938 +UT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.170811107 +UT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.09637732 +UT,Ammonia,1A4bi_Residential-stationary,biomass,TON,63.14942622 +UT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.41999993 +UT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +UT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +UT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,620.548204 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.289553174 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.03449378 +UT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011189153 +UT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.054408115 +UT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.224791829 +UT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.2809477 +UT,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.106868 +UT,Ammonia,2A1_Cement-production,,TON,0 +UT,Ammonia,2A2_Lime-production,,TON,0 +UT,Ammonia,2A6_Other-minerals,,TON,92.3683 +UT,Ammonia,2B_Chemicals-other,,TON,80.7276 +UT,Ammonia,2C_Iron-steel-alloy,,TON,1.9746 +UT,Ammonia,2C6_Zinc-production,,TON,0 +UT,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.1499 +UT,Ammonia,2C7a_Copper-production,,TON,0.6306 +UT,Ammonia,2D3d_Coating-application,,TON,0 +UT,Ammonia,2D3e_Degreasing,,TON,0 +UT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,25.7101 +UT,Ammonia,3B1a_Cattle-dairy,,TON,1724.606 +UT,Ammonia,3B1b_Cattle-non-dairy,,TON,2624.467 +UT,Ammonia,3B2_Manure-sheep,,TON,969.085524 +UT,Ammonia,3B3_Manure-swine,,TON,6208.952 +UT,Ammonia,3B4_Manure-other,,TON,4290.855387 +UT,Ammonia,3B4_Manure-poultry,,TON,910.681788 +UT,Ammonia,3B4d_Manure-goats,,TON,120.55164 +UT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,726.7645416 +UT,Ammonia,3F_Ag-res-on-field,,TON,32.004238 +UT,Ammonia,5A_Solid-waste-disposal,,TON,0.021309897 +UT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,62.74234 +UT,Ammonia,5C_Incineration,,TON,0 +UT,Ammonia,5C_Incineration,biomass,TON,0 +UT,Ammonia,5C_Open-burning-industrial,,TON,0.0062 +UT,Ammonia,5D1_Wastewater-domestic,,TON,7.75 +UT,Ammonia,6A_Other-commertial,Other_Fuel,TON,850.835834 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,122486.9775 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,120036.5055 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6781.880596 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,792970.5548 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,13489.95797 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.047287693 +UT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,602436.8813 +UT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,9026920.762 +UT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,140152.381 +UT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,733461.271 +UT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,179754.5348 +UT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,36941.2842 +UT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,548.84 +UT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5041563.498 +UT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,785114.0919 +UT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2878438.243 +UT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,155057.5143 +UT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,82479.1018 +UT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2876.3844 +UT,Carbon Dioxide,1A3c_Rail,light_oil,TON,127.2212665 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,68060.49222 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,93626.67013 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4139.73252 +UT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,21018.52804 +UT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,155892.7622 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,158732.4017 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2587.763222 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.518616314 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1371.6381 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,205862.5198 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27681.17058 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,91234.8197 +UT,Carbon Monoxide,11C_Other-natural,,TON,159949.554 +UT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.9127 +UT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8696.5302 +UT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,826.9521 +UT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,560.8757 +UT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,92.8592 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,610.0961339 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2984.956752 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,179.6687665 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,30.01648911 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1595.90929 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,100.6634817 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.3652536 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,284.2850804 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1926.004581 +UT,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2.1563 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2631.739821 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2751.558121 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.235290614 +UT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3815.865871 +UT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8236.389956 +UT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,194646.3622 +UT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1207.33762 +UT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16496.39288 +UT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,453.3755402 +UT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1908.363801 +UT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,1.681108 +UT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9726.415687 +UT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,18762.7059 +UT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3556.8284 +UT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4232.884688 +UT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3479.40848 +UT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1049.236961 +UT,Carbon Monoxide,1A3c_Rail,light_oil,TON,29.02198204 +UT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.113696 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,47.46159753 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,80.85456024 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,16.19802559 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,231.5502838 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1328.623841 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,292.6259928 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,19382.57346 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,88.04861259 +UT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,71.13731969 +UT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,36534.55502 +UT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,11508.77614 +UT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.099999925 +UT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +UT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +UT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1284.876636 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,551.9634449 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,563.4994506 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.05746932 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.839863 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,28283.68736 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,54.91105001 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10433.32805 +UT,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2415.56954 +UT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11535.06202 +UT,Carbon Monoxide,2A1_Cement-production,,TON,0 +UT,Carbon Monoxide,2A2_Lime-production,,TON,0 +UT,Carbon Monoxide,2A6_Other-minerals,,TON,5986.8632 +UT,Carbon Monoxide,2B_Chemicals-other,,TON,76.6582 +UT,Carbon Monoxide,2C_Iron-steel-alloy,,TON,553.6179 +UT,Carbon Monoxide,2C6_Zinc-production,,TON,15.0771 +UT,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.085 +UT,Carbon Monoxide,2C7a_Copper-production,,TON,69.6726 +UT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +UT,Carbon Monoxide,2D3e_Degreasing,,TON,0.003 +UT,Carbon Monoxide,2H2_Food-and-beverage,,TON,307.11684 +UT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,2.13 +UT,Carbon Monoxide,3F_Ag-res-on-field,,TON,332.23669 +UT,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +UT,Carbon Monoxide,5C_Incineration,,TON,0 +UT,Carbon Monoxide,5C_Incineration,biomass,TON,12.40999515 +UT,Carbon Monoxide,5C_Open-burning-industrial,,TON,9.7429 +UT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +UT,Carbon Monoxide,5C_Open-burning-residential,,TON,479.34648 +UT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,45.6497326 +UT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.19 +UT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.020290535 +UT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.85036078 +UT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,80.25724628 +UT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,27.89627088 +UT,Methane,1A2g_Construction_and_Mining,light_oil,TON,10.72358203 +UT,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.163541176 +UT,Methane,1A3bii_Road-LDV,diesel_oil,TON,27.35214814 +UT,Methane,1A3bii_Road-LDV,light_oil,TON,511.9717135 +UT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.09981734 +UT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.19934365 +UT,Methane,1A3biii_Road-bus,diesel_oil,TON,4.027171782 +UT,Methane,1A3biii_Road-bus,light_oil,TON,3.568874546 +UT,Methane,1A3biii_Road-bus,natural_gas,TON,0.913192 +UT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,368.1474629 +UT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,30.85233051 +UT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,89.7094384 +UT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.661879587 +UT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.86779983 +UT,Methane,1A3c_Rail,diesel_oil,TON,0.12335185 +UT,Methane,1A3c_Rail,light_oil,TON,0.094814822 +UT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.201463661 +UT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,71.3419834 +UT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,57.74606935 +UT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.745250143 +UT,Methane,1A4bi_Residential-mobile,light_oil,TON,161.8145145 +UT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.420304187 +UT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.537504395 +UT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.049464519 +UT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.059122979 +UT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,287.8001469 +UT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.719013048 +UT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,94.5406345 +UT,Nitrogen Oxides,11C_Other-natural,,TON,8221.2383 +UT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,31.6602 +UT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,44795.8 +UT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1348.6171 +UT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,535.018 +UT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,19.6798 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,665.1756458 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,396.6391548 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,26.30799922 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,10.59937928 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,5064.669523 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1605.467145 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.029387541 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,25.86899118 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2161.746079 +UT,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,55.3826 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4637.739881 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,43.38005136 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.045277432 +UT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1075.740023 +UT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2586.572284 +UT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,24815.7484 +UT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,525.026151 +UT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1917.330434 +UT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1681.749682 +UT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,195.4125707 +UT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.69946 +UT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,28016.78003 +UT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,2325.995283 +UT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11897.86035 +UT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,474.2507593 +UT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,180.761178 +UT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6134.071792 +UT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.372323574 +UT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.589048 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,13.71432716 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,127.2820636 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,22.89269448 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,7.541158582 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1331.362076 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,534.1974292 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,319.4946465 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.2993274 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,166.7494312 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,405.1311638 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,230.8486787 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,7.5600026 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3072.2439 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1185.257428 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,13.27913645 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.012847114 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.77822 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,413.062105 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,290.174217 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,678.195245 +UT,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,3460.357919 +UT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13131.75399 +UT,Nitrogen Oxides,2A1_Cement-production,,TON,0 +UT,Nitrogen Oxides,2A2_Lime-production,,TON,0 +UT,Nitrogen Oxides,2A6_Other-minerals,,TON,2080.1532 +UT,Nitrogen Oxides,2B_Chemicals-other,,TON,191.9516 +UT,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,129.5032 +UT,Nitrogen Oxides,2C6_Zinc-production,,TON,1.8181 +UT,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,4.1494 +UT,Nitrogen Oxides,2C7a_Copper-production,,TON,126.2819 +UT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +UT,Nitrogen Oxides,2D3e_Degreasing,,TON,0.0016 +UT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +UT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,111.8767 +UT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,9.08672 +UT,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +UT,Nitrogen Oxides,5C_Incineration,,TON,0 +UT,Nitrogen Oxides,5C_Incineration,biomass,TON,220.6209723 +UT,Nitrogen Oxides,5C_Open-burning-industrial,,TON,1.7249 +UT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +UT,Nitrogen Oxides,5C_Open-burning-residential,,TON,33.836239 +UT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.02887713 +UT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.2 +UT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.817704707 +UT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,504.8312688 +UT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.490804655 +UT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.11148949 +UT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.37175945 +UT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.411960194 +UT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.02509438 +UT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.383643686 +UT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,24.1435072 +UT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.73238727 +UT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.093199989 +UT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.936176178 +UT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.870912766 +UT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2549.680144 +UT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,110.648762 +UT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,365.078858 +UT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,36.31641 +UT,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.35995816 +UT,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.0017 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,27.79005072 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,317.0669311 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,159.0599517 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.613466915 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.896512577 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,92.40819999 +UT,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,5.66000335 +UT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,105185.521 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,61.37538626 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.38966795 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.317652191 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.760809541 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.06800138 +UT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.45359996 +UT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +UT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +UT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.424029752 +UT,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,219.9737052 +UT,PM10 Filterable,2A1_Cement-production,,TON,82.34845598 +UT,PM10 Filterable,2A2_Lime-production,,TON,175.1825099 +UT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18077.61224 +UT,PM10 Filterable,2A6_Other-minerals,,TON,4966.181535 +UT,PM10 Filterable,2B_Chemicals-other,,TON,123.4964801 +UT,PM10 Filterable,2C_Iron-steel-alloy,,TON,48.7724048 +UT,PM10 Filterable,2C6_Zinc-production,,TON,13.2269 +UT,PM10 Filterable,2C7_Other-metal,,TON,963.4883 +UT,PM10 Filterable,2C7a_Copper-production,,TON,897.582726 +UT,PM10 Filterable,2D3d_Coating-application,,TON,3.6123 +UT,PM10 Filterable,2D3e_Degreasing,,TON,0.0334 +UT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,27.7702462 +UT,PM10 Filterable,2H2_Food-and-beverage,,TON,60.04132552 +UT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,311.055163 +UT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,10125.0281 +UT,PM10 Filterable,3Dc_Other-farm,,TON,23246.1157 +UT,PM10 Filterable,5A_Solid-waste-disposal,,TON,136.0417511 +UT,PM10 Filterable,5C_Incineration,,TON,0.00190722 +UT,PM10 Filterable,5C_Incineration,biomass,TON,1.952708 +UT,PM10 Filterable,5C_Open-burning-industrial,,TON,19.94817632 +UT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +UT,PM10 Filterable,5C_Open-burning-residential,,TON,214.296134 +UT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,7.5593787 +UT,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0322826 +UT,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,2.2852 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.4481 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2794.2482 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,209.4358 +UT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,459.2621 +UT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,56.3442 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,47.87536717 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.77826615 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.840738288 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,30.47465323 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,338.9634824 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,177.0159172 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.772838035 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.525012322 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,217.0797321 +UT,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,14.8933 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,400.4709676 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,20.8955093 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478769 +UT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,99.59989301 +UT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,105185.6642 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,149.5597825 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1198.245035 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.2432727 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,91.84714558 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,107.4176105 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.693339618 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.069586 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1955.786238 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,118.0910763 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,849.607305 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,22.66811485 +UT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.4290125 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,194.9642598 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.016195429 +UT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0148665 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,57.70228272 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.5472543 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.454008865 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.762961339 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,32.27292532 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47.4797676 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,24.21423005 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.521625672 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.80669163 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,148.2918249 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1548.928342 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.999599685 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.70247836 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,95.55887708 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.209577697 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.55272E-05 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.5627667 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,315.1874506 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.119280994 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,42.37181909 +UT,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,183.5621782 +UT,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,502.3100143 +UT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,84.848 +UT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,190.5462 +UT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18077.85625 +UT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4975.275 +UT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,128.7906 +UT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,57.7802 +UT,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,13.2269 +UT,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,963.4883 +UT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,1091.6724 +UT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.6123 +UT,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0334 +UT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,27.922 +UT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,798.1037116 +UT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,311.055163 +UT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,10125.0281 +UT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,23246.25935 +UT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,56.440923 +UT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,136.1480234 +UT,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.002311843 +UT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.657080842 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,21.9645 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,214.296134 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.5593787 +UT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.05 +UT,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,2.2852 +UT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.603412746 +UT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1804.420144 +UT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,110.648762 +UT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,56.320858 +UT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,36.31641 +UT,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.35995816 +UT,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.0017 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,22.86269914 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,299.6416929 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,98.32144786 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.151514619 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.499516801 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,72.20875735 +UT,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.38248735 +UT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11745.1195 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,54.46838939 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.70887145 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.396458355 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.80665839 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.40215152 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.3486 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.533215624 +UT,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,219.8983414 +UT,PM2.5 Filterable,2A1_Cement-production,,TON,52.06545904 +UT,PM2.5 Filterable,2A2_Lime-production,,TON,84.43461293 +UT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1807.536224 +UT,PM2.5 Filterable,2A6_Other-minerals,,TON,1034.084785 +UT,PM2.5 Filterable,2B_Chemicals-other,,TON,83.69235026 +UT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,21.0480328 +UT,PM2.5 Filterable,2C6_Zinc-production,,TON,9.7267 +UT,PM2.5 Filterable,2C7_Other-metal,,TON,714.927 +UT,PM2.5 Filterable,2C7a_Copper-production,,TON,244.380226 +UT,PM2.5 Filterable,2D3d_Coating-application,,TON,3.5623 +UT,PM2.5 Filterable,2D3e_Degreasing,,TON,0.0334 +UT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,23.9990042 +UT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.053753375 +UT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,53.7939 +UT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1877.09633 +UT,PM2.5 Filterable,3Dc_Other-farm,,TON,4590.34209 +UT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,18.52346405 +UT,PM2.5 Filterable,5C_Incineration,,TON,0.00090722 +UT,PM2.5 Filterable,5C_Incineration,biomass,TON,1.952708 +UT,PM2.5 Filterable,5C_Open-burning-industrial,,TON,14.60566632 +UT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +UT,PM2.5 Filterable,5C_Open-burning-residential,,TON,196.250234 +UT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.8275516 +UT,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0322826 +UT,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.3434 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.1806 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2048.98809 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,209.4358 +UT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,150.5041 +UT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,56.3442 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,46.46047889 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12.72923825 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.839886495 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,25.63891056 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,325.825946 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,114.1763665 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.282986936 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.159146977 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,194.5987942 +UT,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,9.61578 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,388.4569585 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.23718315 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000478769 +UT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,83.35520496 +UT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11745.26886 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,112.4759142 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,517.0921194 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.0739296 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,37.68635411 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,82.01937786 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.380426061 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01254916 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1344.880602 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,41.60726817 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,545.67807 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.354956871 +UT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.21881416 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,180.165414 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014931551 +UT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0144205 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,50.6706781 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.5716491 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.470879511 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.781273975 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,30.82827551 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,46.05537085 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,22.34888605 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.521625672 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.45249601 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,136.4341797 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1515.003941 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.894599955 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.81167163 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,92.69209371 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.11282693 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.55272E-05 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.5158844 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,289.9732253 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.93570125 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,38.98213373 +UT,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,164.114178 +UT,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,502.2346613 +UT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,54.565 +UT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,99.7983 +UT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1807.785625 +UT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1043.178247 +UT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,88.9847 +UT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,29.80863 +UT,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,9.7267 +UT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,714.927 +UT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,438.4699 +UT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.5623 +UT,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.0334 +UT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,24.150758 +UT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,740.1163992 +UT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,53.7939 +UT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1877.09633 +UT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,4590.486152 +UT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,39.813437 +UT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,18.63102255 +UT,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.001210987 +UT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.657181698 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,16.622 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,196.250234 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.8275516 +UT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.05 +UT,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.3434 +UT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.26 +UT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,21080.22 +UT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,19.6456 +UT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,864.274 +UT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,499.019 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.895332957 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.857509862 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.053713631 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1.19314155 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,71.06653677 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1719.67902 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.853097951 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.049757543 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,34.14932607 +UT,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,5.4231 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.820505331 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.22382137 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.26317E-05 +UT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,121.6914213 +UT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.297453821 +UT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,165.3950183 +UT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.21819532 +UT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.44837579 +UT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.57409115 +UT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.676621343 +UT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.002905834 +UT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43.48862808 +UT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,14.38041787 +UT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.62914459 +UT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.840116276 +UT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.516162481 +UT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.664210038 +UT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002266144 +UT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.000280738 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.571194062 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.38394578 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.602838007 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.415659641 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.012350004 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.795322269 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.582404831 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.023192042 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.246496982 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.83145077 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,24.08363881 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,17.89200065 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,19.27208373 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.828686336 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.047144417 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.88937E-06 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016202228 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.738410588 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.8821478 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.660385697 +UT,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,51.6202321 +UT,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,40.25798193 +UT,Sulfur Dioxide,2A1_Cement-production,,TON,0 +UT,Sulfur Dioxide,2A2_Lime-production,,TON,0 +UT,Sulfur Dioxide,2A6_Other-minerals,,TON,142.6372 +UT,Sulfur Dioxide,2B_Chemicals-other,,TON,22.0399 +UT,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,130.7678 +UT,Sulfur Dioxide,2C6_Zinc-production,,TON,3.8018 +UT,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0029 +UT,Sulfur Dioxide,2C7a_Copper-production,,TON,702.688 +UT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +UT,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +UT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +UT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,7.2576 +UT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.1442118 +UT,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +UT,Sulfur Dioxide,5C_Incineration,,TON,0 +UT,Sulfur Dioxide,5C_Incineration,biomass,TON,16.55425242 +UT,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.1255 +UT,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,373.2116419 +UT,Sulfur Dioxide,5C_Open-burning-residential,,TON,5.6393735 +UT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.438382563 +UT,Volatile Organic Compounds,11C_Other-natural,,TON,745398.54 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.7927 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,246.7311 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,89.1005 +UT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,57.87127712 +UT,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,488.9947394 +UT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,543.7553884 +UT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,25.3352 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,66.0081219 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,86.24439144 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,17.50508359 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.970514533 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,286.85654 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,7.76387969 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.020389054 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,10.25625119 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,169.7018599 +UT,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.8253 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,535.8402574 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,190.7689881 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.035351451 +UT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,315.9878121 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,878.0512867 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,18179.3869 +UT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,148.012594 +UT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1366.397762 +UT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,123.2330451 +UT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,95.54122508 +UT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.06650217 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2746.48734 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,819.2371493 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,802.258712 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,189.6859998 +UT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,481.667087 +UT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,316.9358809 +UT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.800634523 +UT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00658132 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.758233926 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.468398578 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.270872936 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,13.35977216 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,116.7660341 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,67.29064201 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,720.8030764 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.48255068 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,16.62762914 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2491.911817 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1692.590957 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.294000035 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,176.660801 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,108.184913 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,27.54055352 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010692378 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.8525639 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,10457.27423 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.75009653 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2920.078868 +UT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,70890.22923 +UT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,21.16965143 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,9.589160375 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,497.6479238 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,584.9701074 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3997.158721 +UT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,41196.68165 +UT,Volatile Organic Compounds,2A1_Cement-production,,TON,0 +UT,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +UT,Volatile Organic Compounds,2A6_Other-minerals,,TON,2.976143416 +UT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,525.4676966 +UT,Volatile Organic Compounds,2B_Chemicals-other,,TON,153.4931 +UT,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,20.8334 +UT,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.4291 +UT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,617.9052 +UT,Volatile Organic Compounds,2C7a_Copper-production,,TON,5.0462 +UT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13154.23964 +UT,Volatile Organic Compounds,2D3d_Coating-application,,TON,7718.433971 +UT,Volatile Organic Compounds,2D3e_Degreasing,,TON,2002.065952 +UT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,17.2077879 +UT,Volatile Organic Compounds,2D3h_Printing,,TON,0 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,255.7277803 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,787.5574144 +UT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,19.2941 +UT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,624.8202092 +UT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,150.5459 +UT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,138.473 +UT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,210.726 +UT,Volatile Organic Compounds,3B3_Manure-swine,,TON,498.539 +UT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,68.614 +UT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,346.216615 +UT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,20.429499 +UT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,879.3872823 +UT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,443.94966 +UT,Volatile Organic Compounds,5C_Incineration,,TON,3.264115134 +UT,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +UT,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.6413 +UT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +UT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,48.273039 +UT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,8.5140382 +UT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,39.28 +UT,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,368.0424 +VA,Ammonia,1A1a_Public-Electricity,biomass,TON,114.7897961 +VA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,37.87965835 +VA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,15.2269717 +VA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,10.55361229 +VA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,284.4516272 +VA,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,21.74 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.894303015 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.121143239 +VA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,165.7625461 +VA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.404643406 +VA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.377565649 +VA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.421213143 +VA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.079312976 +VA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,95.14686884 +VA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.03384 +VA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,18.88993227 +VA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.483150476 +VA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,21.534842 +VA,Ammonia,1A3bii_Road-LDV,light_oil,TON,2772.654205 +VA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.193948909 +VA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,108.9618663 +VA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,9.174766351 +VA,Ammonia,1A3biii_Road-bus,light_oil,TON,1.705411981 +VA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.005578836 +VA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,68.70819939 +VA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.502744865 +VA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,61.46655126 +VA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.239523146 +VA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.08455463 +VA,Ammonia,1A3c_Rail,diesel_oil,TON,6.803460245 +VA,Ammonia,1A3c_Rail,light_oil,TON,0.0055234 +VA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.944932555 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,11.53177349 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.34947467 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.943771706 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.279109674 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.893199868 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,48.00285552 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.262768971 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.551612322 +VA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.106777483 +VA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.12245883 +VA,Ammonia,1A4bi_Residential-stationary,biomass,TON,285.2855253 +VA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,49.4549983 +VA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.59263915 +VA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,863.375836 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.024428769 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.191130107 +VA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.035176044 +VA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.073019252 +VA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.794222173 +VA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.526617393 +VA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,129.731234 +VA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00646765 +VA,Ammonia,2A2_Lime-production,,TON,29.532006 +VA,Ammonia,2A6_Other-minerals,Other_Fuel,TON,4.96208 +VA,Ammonia,2B_Chemicals-other,,TON,1301.288077 +VA,Ammonia,2D3d_Coating-application,,TON,3.95614 +VA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,4.3 +VA,Ammonia,2H1_Pulp-and-paper,,TON,104.21793 +VA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,13.86082274 +VA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,382.6781266 +VA,Ammonia,3B1a_Cattle-dairy,,TON,2698.534 +VA,Ammonia,3B1b_Cattle-non-dairy,,TON,5245.187 +VA,Ammonia,3B2_Manure-sheep,,TON,271.284816 +VA,Ammonia,3B3_Manure-swine,,TON,3446.191 +VA,Ammonia,3B4_Manure-other,,TON,1214.85936 +VA,Ammonia,3B4_Manure-poultry,,TON,5583.89907 +VA,Ammonia,3B4d_Manure-goats,,TON,440.065032 +VA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,2760.922987 +VA,Ammonia,3F_Ag-res-on-field,,TON,135.00222 +VA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.797 +VA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,178.32574 +VA,Ammonia,5D1_Wastewater-domestic,,TON,34.1460831 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,356503.4124 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,334383.3358 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18875.53333 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2325438.364 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,40423.9636 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,10.79276 +VA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,772034.4885 +VA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,34944413.26 +VA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,177964.2016 +VA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1673862.142 +VA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,566776.7849 +VA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,52052.08858 +VA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,226.40133 +VA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4303806.551 +VA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,87489.97277 +VA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3996164.884 +VA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,177958.7536 +VA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,109001.53 +VA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,9717.885994 +VA,Carbon Dioxide,1A3c_Rail,light_oil,TON,431.5709379 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,155294.9571 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,213632.1483 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9432.25049 +VA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,136190.2895 +VA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,828678.453 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,495429.9837 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13838.82222 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.524639744 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4312.1159 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,140581.3362 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,97801.53015 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,322405.8092 +VA,Carbon Monoxide,11C_Other-natural,,TON,85347.2589 +VA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0275 +VA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,491.1405 +VA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,347.2090985 +VA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3629.066385 +VA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,39.595 +VA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.0859568 +VA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2579.372053 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2071.451492 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8399.491584 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,505.649414 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12204.63967 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.002480604 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,53.46594587 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1070.00868 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,33.21145493 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.508769937 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4543.189808 +VA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,33.01404 +VA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00575 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7483.994312 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8295.183626 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.627441108 +VA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12108.03594 +VA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11799.82525 +VA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,627353.0397 +VA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1796.010039 +VA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33024.51164 +VA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1392.295527 +VA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2172.528877 +VA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.23050402 +VA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6434.452976 +VA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2088.036746 +VA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6619.51226 +VA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7541.368585 +VA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4526.00183 +VA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2374.741141 +VA,Carbon Monoxide,1A3c_Rail,light_oil,TON,98.91818133 +VA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,854.1272568 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,648.9805523 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,148.415683 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,135.838789 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,52.17162639 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.125113011 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3519.974419 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,667.6435373 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,44581.16144 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,200.79768 +VA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,461.5035309 +VA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,191439.5703 +VA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,46189.53329 +VA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,247.2750184 +VA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,7.96319895 +VA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1976.557366 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1604.127416 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3658.367024 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.168948628 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.073863 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,26852.02287 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,194.0088632 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,36996.67802 +VA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,55.60431283 +VA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,17.868317 +VA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13699.06333 +VA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,6579.867209 +VA,Carbon Monoxide,2A6_Other-minerals,,TON,1766.735642 +VA,Carbon Monoxide,2B_Chemicals-other,,TON,144.7571042 +VA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3122.159907 +VA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,3 +VA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2706.988458 +VA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1016.212213 +VA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1531.356591 +VA,Carbon Monoxide,3F_Ag-res-on-field,,TON,1135.74595 +VA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,361.122072 +VA,Carbon Monoxide,5C_Incineration,,TON,2754.392682 +VA,Carbon Monoxide,5C_Incineration,biomass,TON,704.3831826 +VA,Carbon Monoxide,5C_Open-burning-dump,,TON,23.0052 +VA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.95 +VA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,40182.00343 +VA,Carbon Monoxide,5C_Open-burning-residential,,TON,9762.65689 +VA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1101.633082 +VA,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.0475 +VA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.76228157 +VA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,49.68432683 +VA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,223.4833125 +VA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,79.24800536 +VA,Methane,1A2g_Construction_and_Mining,light_oil,TON,31.90326003 +VA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.436109507 +VA,Methane,1A3bii_Road-LDV,diesel_oil,TON,34.487818 +VA,Methane,1A3bii_Road-LDV,light_oil,TON,1500.703799 +VA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.025179943 +VA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,95.08478626 +VA,Methane,1A3biii_Road-bus,diesel_oil,TON,14.82661702 +VA,Methane,1A3biii_Road-bus,light_oil,TON,3.908530573 +VA,Methane,1A3biii_Road-bus,natural_gas,TON,2.5477713 +VA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,242.2583837 +VA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.232343164 +VA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,84.86729827 +VA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.50699821 +VA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.26896049 +VA,Methane,1A3c_Rail,diesel_oil,TON,0.417103243 +VA,Methane,1A3c_Rail,light_oil,TON,0.31812833 +VA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.022920317 +VA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,161.1040684 +VA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,131.75875 +VA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,4.836506873 +VA,Methane,1A4bi_Residential-mobile,light_oil,TON,811.2008328 +VA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13.93531855 +VA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,14.75547622 +VA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.145416191 +VA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.18568124 +VA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,240.7689707 +VA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.54046489 +VA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,332.9865812 +VA,Nitrogen Oxides,11C_Other-natural,,TON,8806.8763 +VA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0605 +VA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,553.026 +VA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,5748.550882 +VA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,10319.5175 +VA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,473.4 +VA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.398941 +VA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3001.170098 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2006.964603 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1121.060439 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,74.52702352 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,6832.932878 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,1.541107265 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,500.5514927 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,7086.315178 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,211.7796379 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.023961172 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4051.470213 +VA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,8.284275 +VA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.023 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,13419.70931 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,126.2858211 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.120739839 +VA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4857.259596 +VA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2936.179 +VA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,74666.63045 +VA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,710.165072 +VA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3795.733601 +VA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4032.637094 +VA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,219.6740247 +VA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.6601762 +VA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,23660.53725 +VA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,258.9781364 +VA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,21664.217 +VA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,601.8624876 +VA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,214.139106 +VA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,13263.57148 +VA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.223605823 +VA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6248.458478 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,239.5412838 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,787.2601112 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,232.9799124 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,62.99330735 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,8.811979049 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4264.634559 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1218.880876 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,704.7612507 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,50.87366974 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1080.333613 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2019.080165 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,755.4270914 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,890.189691 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,28.70070166 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4946.701641 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3472.831457 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,56.17847504 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.037768175 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,37.06194 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,308.7985591 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1025.218012 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2326.643181 +VA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,123.1958861 +VA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,7.0423729 +VA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9811.046146 +VA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2070.008106 +VA,Nitrogen Oxides,2A6_Other-minerals,,TON,2739.783559 +VA,Nitrogen Oxides,2B_Chemicals-other,,TON,7897.89074 +VA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,771.851033 +VA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,34.893724 +VA,Nitrogen Oxides,2D3d_Coating-application,Other_Fuel,TON,0.240278 +VA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3928.135087 +VA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +VA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,6172.267922 +VA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,32.736821 +VA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,92.463269 +VA,Nitrogen Oxides,5C_Incineration,,TON,663.7995878 +VA,Nitrogen Oxides,5C_Incineration,biomass,TON,265.87963 +VA,Nitrogen Oxides,5C_Open-burning-dump,,TON,1.6239 +VA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.08 +VA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1188.817481 +VA,Nitrogen Oxides,5C_Open-burning-residential,,TON,689.1290458 +VA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,48.96146052 +VA,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.2629 +VA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.044921866 +VA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1405.491929 +VA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.581481651 +VA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,81.00626645 +VA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.196972327 +VA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.627003202 +VA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.011841205 +VA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.483224587 +VA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.514854545 +VA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.845031315 +VA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.56662585 +VA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.856075304 +VA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0221003 +VA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,279.12164 +VA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,85.12760964 +VA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4085.991066 +VA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,73.40216 +VA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.02664984 +VA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,545.5609034 +VA,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,17.106869 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.027968183 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7817.136885 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,2.335333265 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.7386003 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,608.4291662 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,57.42960808 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.099114139 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,219.7463221 +VA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.507235 +VA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.02617296 +VA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,120027.8702 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,460.0028395 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,46.31568448 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,218.4362461 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.546600442 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.458605389 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.82697131 +VA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,53.4114142 +VA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.708769421 +VA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.950300848 +VA,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.345997 +VA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.055653 +VA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.00253 +VA,PM10 Filterable,2A1_Cement-production,,TON,85.23167618 +VA,PM10 Filterable,2A2_Lime-production,,TON,256.9533346 +VA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21941.72735 +VA,PM10 Filterable,2A6_Other-minerals,,TON,7426.77914 +VA,PM10 Filterable,2B_Chemicals-other,,TON,300.8360941 +VA,PM10 Filterable,2C_Iron-steel-alloy,,TON,581.0774894 +VA,PM10 Filterable,2C5_Lead-production,,TON,0.205098599 +VA,PM10 Filterable,2C6_Zinc-production,,TON,3.91144 +VA,PM10 Filterable,2C7_Other-metal,,TON,81.23067999 +VA,PM10 Filterable,2C7a_Copper-production,,TON,0.055492 +VA,PM10 Filterable,2D3d_Coating-application,,TON,29.24693 +VA,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,5.2 +VA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,17.74205 +VA,PM10 Filterable,2H1_Pulp-and-paper,,TON,1067.832244 +VA,PM10 Filterable,2H2_Food-and-beverage,,TON,253.5501558 +VA,PM10 Filterable,2H3_Other-industrial-processes,,TON,428.2189965 +VA,PM10 Filterable,2I_Wood-processing,,TON,56.675963 +VA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,19483.68498 +VA,PM10 Filterable,3Dc_Other-farm,,TON,34310.61156 +VA,PM10 Filterable,5A_Solid-waste-disposal,,TON,92.6629963 +VA,PM10 Filterable,5C_Incineration,biomass,TON,13.3456427 +VA,PM10 Filterable,5C_Open-burning-dump,,TON,4.3304 +VA,PM10 Filterable,5C_Open-burning-industrial,,TON,0.000690232 +VA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4041.978407 +VA,PM10 Filterable,5C_Open-burning-residential,,TON,3182.80362 +VA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,182.4251844 +VA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.007 +VA,PM10 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,22.98 +VA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,8.175707506 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.022869 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,284.19429 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,101.9690356 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2010.142789 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,83.4116 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02831444 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1006.449353 +VA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,17.106869 +VA,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,32.9108 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,139.3196336 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,36.5240763 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.40597059 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.030091448 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8094.085289 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,2.336741348 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,16.21142023 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,668.8759393 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,64.62151632 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.228306555 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,443.670706 +VA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.8458925 +VA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.067242 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1146.802497 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,62.62338317 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001276717 +VA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,299.8331996 +VA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,120027.8702 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,178.7426977 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4393.966812 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,52.69680607 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,195.9047586 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,288.4772077 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.05473528 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.050318076 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1212.784836 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,11.45715338 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1319.646203 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,26.18912719 +VA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.22217349 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,428.9091145 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.054908157 +VA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,194.9225251 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,475.8008764 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,59.93752161 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,230.8507501 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.760280299 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.031961737 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.77485991 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,108.3289761 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,55.24712607 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.188410998 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,76.60637822 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,842.7520571 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6166.727876 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,117.7028619 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.78252069 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,25.73575168 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,279.346458 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,33.26217153 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000192637 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.9090934 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,224.5001686 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.6204493 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,149.7329147 +VA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,8.22200361 +VA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.055653 +VA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.00253 +VA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,245.2389374 +VA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,86.59636508 +VA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,279.646574 +VA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21942.23495 +VA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7507.553557 +VA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,309.2203655 +VA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,877.4883355 +VA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.755148821 +VA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.91144 +VA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,82.11050615 +VA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.055492 +VA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,29.2469305 +VA,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,5.2 +VA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,17.74205 +VA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1347.023987 +VA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2709.980186 +VA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,428.218997 +VA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,56.675963 +VA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,19483.68498 +VA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,34323.54366 +VA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,191.935147 +VA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,105.592033 +VA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.39414075 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,4.3304 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.00076 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4041.978407 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3182.80362 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,182.4251844 +VA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.077 +VA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,22.98 +VA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,8.208287765 +VA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.00720079 +VA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,249.74178 +VA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,58.55663852 +VA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,295.9126061 +VA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,29.55438 +VA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.02664984 +VA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,536.0135985 +VA,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,13.4987879 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.02798171 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6702.85011 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.40187363 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.318085209 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,108.4585839 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,37.89261175 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.024790509 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,214.8910397 +VA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.493529 +VA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.024135072 +VA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13932.22124 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,396.413849 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,43.1828993 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,90.64350098 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.640260379 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.352928591 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.28131906 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,41.0476495 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.327199815 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.405149703 +VA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.345997 +VA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.055653 +VA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.00253 +VA,PM2.5 Filterable,2A1_Cement-production,,TON,85.21896256 +VA,PM2.5 Filterable,2A2_Lime-production,,TON,221.341584 +VA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2194.172735 +VA,PM2.5 Filterable,2A6_Other-minerals,,TON,1261.356799 +VA,PM2.5 Filterable,2B_Chemicals-other,,TON,161.7884659 +VA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,466.2949703 +VA,PM2.5 Filterable,2C5_Lead-production,,TON,0.000031251 +VA,PM2.5 Filterable,2C6_Zinc-production,,TON,3.91144 +VA,PM2.5 Filterable,2C7_Other-metal,,TON,24.09802262 +VA,PM2.5 Filterable,2C7a_Copper-production,,TON,0.055492 +VA,PM2.5 Filterable,2D3d_Coating-application,,TON,25.3916371 +VA,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,4.31489 +VA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,16.0879 +VA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,852.8563541 +VA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,26.53521636 +VA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,342.5532026 +VA,PM2.5 Filterable,2I_Wood-processing,,TON,47.177703 +VA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3676.669206 +VA,PM2.5 Filterable,3Dc_Other-farm,,TON,6863.12863 +VA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,38.9810283 +VA,PM2.5 Filterable,5C_Incineration,biomass,TON,11.1135273 +VA,PM2.5 Filterable,5C_Open-burning-dump,,TON,4.3304 +VA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.000690232 +VA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3115.960892 +VA,PM2.5 Filterable,5C_Open-burning-residential,,TON,2914.778359 +VA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,140.6321925 +VA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.007 +VA,PM2.5 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,14.15 +VA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,5.011677506 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0079695 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,254.81453 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,75.3980658 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,537.081098 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,39.56382 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02831444 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,996.9020502 +VA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,13.4987879 +VA,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,32.9108 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,135.058372 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,36.35425037 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.401247379 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.03010885 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6977.600846 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,1.402851596 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,13.79279982 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,168.648571 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,45.08056987 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.154015095 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,438.6459131 +VA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.8321865 +VA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.065204112 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1112.398538 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,57.6534102 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001276717 +VA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,274.2237732 +VA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13932.22124 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,130.3076037 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1622.796483 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40.5933367 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,70.90741894 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,215.2441556 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.684686431 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.024633066 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,923.1695365 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.237921113 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,990.7154048 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,9.96350409 +VA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.87274902 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,396.7486404 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.050626631 +VA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,182.8642786 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,412.2040203 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,56.8092093 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,103.0489018 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.853927033 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.926507472 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.24177699 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.0791175 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,50.99119187 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.188410998 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,74.30819417 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,775.3695344 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6074.81291 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,105.3391404 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.400950599 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,21.19059702 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,270.9660702 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,30.60124915 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000192637 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.7618194 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,206.5418315 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.97184237 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,137.7544259 +VA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,8.076519 +VA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.055653 +VA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.00253 +VA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,245.2389374 +VA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,86.5836515 +VA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,244.0348184 +VA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2194.68033 +VA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1342.131284 +VA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,170.1727393 +VA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,762.7057869 +VA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.550081473 +VA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.91144 +VA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,24.97784829 +VA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.055492 +VA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,25.3916376 +VA,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,4.31489 +VA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,16.0879 +VA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1132.048092 +VA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2482.966339 +VA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,342.5532031 +VA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,47.177703 +VA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3676.669206 +VA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,6876.06073 +VA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,136.475763 +VA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,51.910067 +VA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,12.16202485 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,4.3304 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.00076 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3115.960892 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2914.778359 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,140.6321925 +VA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.077 +VA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,14.15 +VA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.044257765 +VA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.1672 +VA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,54.2448 +VA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,171.532967 +VA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,28362.58015 +VA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1647.4 +VA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.009166 +VA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,184.9927196 +VA,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,3.42624 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.693148746 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.642898772 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.167609437 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1080.407089 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.968268839 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,156.314092 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,8145.98257 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,939.7124401 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.387958496 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,113.9684656 +VA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.826365 +VA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.08165 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,25.80860543 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.670735181 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.03513E-05 +VA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,579.3782849 +VA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.761465787 +VA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,721.6020075 +VA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.557318689 +VA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.38155676 +VA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.95425006 +VA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.090764455 +VA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.001198691 +VA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.11951313 +VA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.812263134 +VA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.69122096 +VA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.657631673 +VA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.287585715 +VA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,21.00967185 +VA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007681644 +VA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1129.984576 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,36.81038458 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,341.4068278 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5822.818093 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,43.84134102 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,18.76566439 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.37726072 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.814699917 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.61066838 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.052842261 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.59730226 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,15.04030234 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,116.6080171 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2106.782386 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,70.6733909 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,29.85090693 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.647681042 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.251879131 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.49424E-06 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.05093311 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.55111555 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.116757909 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.867475745 +VA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.403898421 +VA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0130317 +VA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,296.8716155 +VA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,6570.454886 +VA,Sulfur Dioxide,2A6_Other-minerals,,TON,3004.37319 +VA,Sulfur Dioxide,2B_Chemicals-other,,TON,3315.68611 +VA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,5092.381983 +VA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1883.937381 +VA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +VA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1381.401013 +VA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,9.4556955 +VA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,182.710312 +VA,Sulfur Dioxide,5C_Incineration,,TON,556.9558678 +VA,Sulfur Dioxide,5C_Incineration,biomass,TON,680.4668839 +VA,Sulfur Dioxide,5C_Open-burning-dump,,TON,0.27065 +VA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,394.6870639 +VA,Sulfur Dioxide,5C_Open-burning-residential,,TON,114.8548196 +VA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.57917446 +VA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.0072 +VA,Sulfur Dioxide,5D3_Wastewater-commertial,Other_Fuel,TON,1.52 +VA,Volatile Organic Compounds,11C_Other-natural,,TON,801123.597 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.000275 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,233.37489 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,45.06058533 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,227.6969433 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,6.01844 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0315508 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,600.1172661 +VA,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,429.8683313 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,202.6727803 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,242.9421469 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,48.98084134 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.072040697 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,471.8390263 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.002674345 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.312387596 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,83.29910992 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.285382175 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.021621617 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,313.8840204 +VA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,2.649348 +VA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.000391 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1510.309524 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,564.2141415 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.094270514 +VA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2502.976549 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1093.925113 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,51309.08842 +VA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,207.8243077 +VA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2452.547417 +VA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,348.6511627 +VA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,104.3987186 +VA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.314707033 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1501.233868 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,84.51819199 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1418.339298 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,358.2426494 +VA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,929.561371 +VA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,681.2097591 +VA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.644360192 +VA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,234.3285068 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,21.50985016 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.64706525 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,105.8559504 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.589350828 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.158672944 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,252.2309826 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,153.5287573 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1635.677788 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,28.48131812 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,107.8242289 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,12590.02719 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6601.951466 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,34.61849186 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.114847792 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,191.1978501 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,317.9892657 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,327.719085 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.031433536 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.9647256 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,7097.219024 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,52.11426028 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10277.51919 +VA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,177.5157414 +VA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,599.0997156 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,480.4364086 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,828.4965783 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6056.336848 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,16128.19771 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,3641.813239 +VA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12071.61181 +VA,Volatile Organic Compounds,2A2_Lime-production,,TON,30.8255402 +VA,Volatile Organic Compounds,2A6_Other-minerals,,TON,238.8050302 +VA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1166.074662 +VA,Volatile Organic Compounds,2B_Chemicals-other,,TON,1062.098767 +VA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,106.611288 +VA,Volatile Organic Compounds,2C7_Other-metal,,TON,29.837951 +VA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,34957.53141 +VA,Volatile Organic Compounds,2D3d_Coating-application,,TON,20021.26423 +VA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4304.123276 +VA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,0.27267 +VA,Volatile Organic Compounds,2D3h_Printing,,TON,2083.8413 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1022.122635 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4346.043733 +VA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,2631.213018 +VA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1992.678724 +VA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2327.573403 +VA,Volatile Organic Compounds,2I_Wood-processing,,TON,31.69702 +VA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,216.668 +VA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,421.154 +VA,Volatile Organic Compounds,3B3_Manure-swine,,TON,276.71 +VA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,447.622 +VA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1715.433603 +VA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,72.920628 +VA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,57.32987875 +VA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1261.7876 +VA,Volatile Organic Compounds,5C_Incineration,,TON,1330.21347 +VA,Volatile Organic Compounds,5C_Incineration,biomass,TON,36.30419926 +VA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,8.1195 +VA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.2 +VA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2758.055627 +VA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,663.5208982 +VA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,205.4633408 +VA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,163.948431 +VA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,45.150087 +VA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,102.41 +VA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,33.61934423 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.020265638 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.000240383 +VI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.2786909 +VI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.004320539 +VI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.00631642 +VI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.001123566 +VI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.129564635 +VI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.349818826 +VI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.009009008 +VI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.051538736 +VI,Ammonia,1A3bii_Road-LDV,light_oil,TON,14.25935875 +VI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.02887741 +VI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.791385633 +VI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.037341464 +VI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.006675267 +VI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000876628 +VI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.003198805 +VI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.000134116 +VI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.89328417 +VI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.114007325 +VI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.3275808 +VI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.744508639 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.03059627 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000620545 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000620544 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.106187417 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.012223972 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.024707098 +VI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.01366431 +VI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.147174518 +VI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.002259632 +VI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.000968415 +VI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,0.156614525 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.000806702 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.86468E-06 +VI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.000519589 +VI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.02666987 +VI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.018104954 +VI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.10344475 +VI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,2.3156 +VI,Ammonia,5D1_Wastewater-domestic,,TON,0.27 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2496.124033 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,686.8601289 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,38.60402 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,43065.6099 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,752.7951737 +VI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2171.2639 +VI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,197492.2737 +VI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1028.5433 +VI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13118.55909 +VI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,2437.57404 +VI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,187.125763 +VI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,35.73276 +VI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,255.636709 +VI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.9285388 +VI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,62849.285 +VI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3087.914842 +VI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2559.769 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1503.30267 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2064.481752 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,26.1192925 +VI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1681.408878 +VI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,10995.61055 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,99.2969636 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.6623155 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,63.69376 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1819.958131 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2229.47241 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7367.782 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,54.40869991 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27.82428792 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.7646215 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,23.88786 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.297036926 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1.0527366 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.007022293 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3.401082097 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,136.9665881 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,161.4707356 +VI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,555.3152269 +VI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,17.93058 +VI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,3072.665466 +VI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.256714 +VI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,286.9221462 +VI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,5.43956746 +VI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,7.59006079 +VI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.20729439 +VI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.5051051 +VI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.7282119 +VI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,72.76982 +VI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,51.2258702 +VI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,94.98042 +VI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,384.3927205 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.671558 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.008726406 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003723264 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.0627987 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.45798918 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,455.3910175 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.165160399 +VI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,5.702426298 +VI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,2609.134031 +VI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.011298135 +VI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.004842068 +VI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1.4127591 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.34818622 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.226411 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.5039455 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,368.3340971 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.42215467 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,856.3486 +VI,Carbon Monoxide,2H2_Food-and-beverage,,TON,40.9916955 +VI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.001546721 +VI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0.16219371 +VI,Carbon Monoxide,5C_Open-burning-residential,,TON,53.82215 +VI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,6.209419 +VI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.089117265 +VI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.102337898 +VI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.4587215 +VI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,1.449992994 +VI,Methane,1A2g_Construction_and_Mining,light_oil,TON,0.581427154 +VI,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.15601888 +VI,Methane,1A3bii_Road-LDV,light_oil,TON,7.294662671 +VI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.047324 +VI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.848511523 +VI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.050544751 +VI,Methane,1A3biii_Road-bus,light_oil,TON,0.015760428 +VI,Methane,1A3biii_Road-bus,natural_gas,TON,0.18617315 +VI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.004358574 +VI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.001558733 +VI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.2702857 +VI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,0.06511374 +VI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.19173083 +VI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.0485802 +VI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.512071275 +VI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.930332673 +VI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.059829069 +VI,Methane,1A4bi_Residential-mobile,light_oil,TON,10.19875146 +VI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.002739312 +VI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.000910468 +VI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002759659 +VI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,2.991647073 +VI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.057904806 +VI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,7.597016 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.32800445 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.495485117 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.23824681 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,8.758869 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.36961122 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2.3160246 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.07724513 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4.049350907 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,247.0967472 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,1.992928455 +VI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,126.3755859 +VI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3.7045305 +VI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,318.7493787 +VI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.255346 +VI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29.76729617 +VI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,12.3992271 +VI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,0.590534994 +VI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.11793428 +VI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.017706547 +VI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,0.038341697 +VI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,217.875097 +VI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,5.52508967 +VI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.22196 +VI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3927.060405 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,1.3462369 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.038163483 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.014970638 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.612981 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.79227813 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.725931009 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.340814684 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,13.33464022 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,22.87943328 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.040673405 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.017431448 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4.6458114 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.74869179 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001902237 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.5452506 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,3.48711526 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.3689617 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,49.98764 +VI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +VI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,0.3286779 +VI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0.004798629 +VI,Nitrogen Oxides,5C_Open-burning-residential,,TON,3.79922 +VI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.2764482 +VI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.005881676 +VI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,9.075142218 +VI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.00380721 +VI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.84589778 +VI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.005045789 +VI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.006490203 +VI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.002477496 +VI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.001433488 +VI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.001799112 +VI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.080176741 +VI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.072281367 +VI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.019309594 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,19.906504 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.095051891 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.5265659 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.020981773 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.008097904 +VI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,3185.9414 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,3.059627 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00244417 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000806708 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.043246255 +VI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.002440403 +VI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.001045887 +VI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.007055075 +VI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,228.585076 +VI,PM10 Filterable,2A6_Other-minerals,,TON,47.55326 +VI,PM10 Filterable,2H2_Food-and-beverage,,TON,7.88067041 +VI,PM10 Filterable,3Dc_Other-farm,,TON,1.9967518 +VI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0.01631534 +VI,PM10 Filterable,5C_Open-burning-residential,,TON,17.54702 +VI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1.0295894 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.179811549 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.124951868 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.008457125 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,20.583328 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.10142457 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2.745537 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.023088434 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,0.021863966 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,21.04101614 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.171640495 +VI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,11.85693774 +VI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3185.9414 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.27039799 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,18.33598698 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.20605815 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,1.085795932 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,1.04770992 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.023589563 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.005166941 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.087174806 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.000697303 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.2301312 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.303102955 +VI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.2706529 +VI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,124.0428629 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,3.163653 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.003440918 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001815092 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.111972227 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.048073972 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.532204327 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.002935383 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.946595153 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,10.68025478 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.005377925 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.002304823 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.0183432 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.060014984 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.9584E-05 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07287973 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,2.750181113 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.49281488 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,3.4219364 +VI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,228.585076 +VI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,47.55326 +VI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,107.513201 +VI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1.9967518 +VI,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.021681759 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0.01631534 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,17.54702 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.0295894 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,17.119595 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.086788901 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.2947659 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.013665957 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.004453756 +VI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,397.12849 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,2.63128 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.002259946 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000620544 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.023551448 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.001875493 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.000803783 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.003880289 +VI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,60.1702666 +VI,PM2.5 Filterable,2A6_Other-minerals,,TON,5.944155 +VI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.277366804 +VI,PM2.5 Filterable,3Dc_Other-farm,,TON,0.3993508 +VI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0.012577501 +VI,PM2.5 Filterable,5C_Open-burning-residential,,TON,16.06937 +VI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0.7937132 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.140981795 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.122358317 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.008287972 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,17.79641 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0.093161696 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.5137352 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.015772638 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,0.017410219 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,20.40979831 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.078646659 +VI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,11.32206941 +VI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,397.12849 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.143419902 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4.919085128 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.14957194 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.31731544 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,0.75949926 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.00649761 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.001524502 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.061579238 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.000409947 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.4006347 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.062417309 +VI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.15428775 +VI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,115.5074567 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,2.735306 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.003256695 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00162893 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.092277409 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.01663219 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.491181611 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.002935383 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.918197773 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,9.82630029 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.004813021 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.00206272 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.0151684 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.058214547 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.32173E-05 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.07069334 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,2.530190568 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.47802987 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,3.1481716 +VI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,60.1702666 +VI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,5.944155 +VI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,99.9098406 +VI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0.3993508 +VI,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.021681759 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0.012577501 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,16.06937 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.7937132 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.186204004 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.040155093 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.002800283 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.9953257 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.22402002 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7.840779 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.3373643 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.024293771 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,0.477536463 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.012500996 +VI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,126.1834617 +VI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.018577796 +VI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,3.933485885 +VI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.008890497 +VI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.261111939 +VI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.02116611 +VI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.003729474 +VI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000189187 +VI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.002207395 +VI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.000118158 +VI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.54080045 +VI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.061543033 +VI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.05101696 +VI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,977.2462897 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.15298143 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.032935444 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.03304399 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.129738754 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.017565566 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.034942012 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.000146115 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.01972009 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.199665984 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.096260355 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.04125436 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,0.021165229 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.001145108 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.20724E-05 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.000752604 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.033026658 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.071049177 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.13408642 +VI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +VI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.05068272 +VI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0.001593145 +VI,Sulfur Dioxide,5C_Open-burning-residential,,TON,0.633203 +VI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.05950771 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.786717024 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.867431701 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.12585404 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.6768215 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.091379431 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.010527366 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000393248 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,0.222690141 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,27.53009879 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,11.2247388 +VI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,47.56147633 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1.3028481 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,328.0604307 +VI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.8753414 +VI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.78071537 +VI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,1.18806342 +VI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,0.412434986 +VI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.020050996 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.062431173 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,0.028827566 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.690067 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,2.101586528 +VI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.924807 +VI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,160.5881493 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.10402732 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.001879474 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.000255975 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.18225148 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.485095152 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,18.45568855 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.201102932 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,1.331526284 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,177.6631217 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.001581742 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.00067789 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,0.19401454 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.067943926 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.009763396 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.13277012 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,93.32328287 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.18764316 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,296.692308 +VI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,63.358813 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,3.4445549 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,26.16644113 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,52.64202822 +VI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,7.512333 +VI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,484.95263 +VI,Volatile Organic Compounds,2D3d_Coating-application,,TON,187.8692605 +VI,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,34.15472 +VI,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.41 +VI,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,9.6085 +VI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +VI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +VI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,14.47032184 +VI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,0.003776492 +VI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,16.3846 +VI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.001150373 +VI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0.011132816 +VI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,3.658029 +VI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,1.1608637 +VI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,1.43 +VT,Ammonia,1A1a_Public-Electricity,biomass,TON,16.6166 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.355682823 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.01770464 +VT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +VT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.19589286 +VT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.56170837 +VT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.097020024 +VT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.968978643 +VT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.084101649 +VT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.027933255 +VT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.05293926 +VT,Ammonia,1A3bii_Road-LDV,light_oil,TON,200.4353276 +VT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.40021673 +VT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.538052065 +VT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.125870688 +VT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.353080486 +VT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.002396105 +VT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.869458614 +VT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.259848401 +VT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.19997663 +VT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.452622915 +VT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.6955734 +VT,Ammonia,1A3c_Rail,diesel_oil,TON,0.226535043 +VT,Ammonia,1A3c_Rail,light_oil,TON,0.000380721 +VT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.006773445 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.3114956 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.72322685 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.60586505 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.049124166 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.0810716 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.143721155 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.290369077 +VT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.045217406 +VT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.644521508 +VT,Ammonia,1A4bi_Residential-stationary,biomass,TON,374.2705015 +VT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,37.106999 +VT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.4907524 +VT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,38.2489672 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.708839695 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.035264061 +VT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002999702 +VT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.850192421 +VT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.078465813 +VT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.446941858 +VT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,2.067 +VT,Ammonia,3B1a_Cattle-dairy,,TON,2301.432 +VT,Ammonia,3B1b_Cattle-non-dairy,,TON,380.691 +VT,Ammonia,3B2_Manure-sheep,,TON,48.6486 +VT,Ammonia,3B3_Manure-swine,,TON,25.019 +VT,Ammonia,3B4_Manure-other,,TON,178.59336 +VT,Ammonia,3B4_Manure-poultry,,TON,29.7381008 +VT,Ammonia,3B4d_Manure-goats,,TON,46.01388 +VT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,402.3139 +VT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,18.22181 +VT,Ammonia,5D1_Wastewater-domestic,,TON,1.248 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,43811.33035 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,49055.97532 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2764.761351 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,133461.9447 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2336.85483 +VT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,84695.8318 +VT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3108357.05 +VT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15013.558 +VT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,130732.2608 +VT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,67610.152 +VT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,12109.21972 +VT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,95.2999 +VT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,215738.9736 +VT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6605.947913 +VT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,209235.481 +VT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12770.94495 +VT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,37914.242 +VT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,668.3107 +VT,Carbon Dioxide,1A3c_Rail,light_oil,TON,29.7833554 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17674.77656 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,24316.14813 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1062.304163 +VT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,5564.055591 +VT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,47921.88691 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,87263.42217 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2546.935422 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.257657627 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,367.7247 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,126292.555 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9662.382919 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,31833.1892 +VT,Carbon Monoxide,11C_Other-natural,,TON,16361.443 +VT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,932.44 +VT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.03 +VT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1.0515 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,135.3983666 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1196.536809 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,71.85112286 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,88.9836 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.1601594 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.8043804 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.60731972 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,59.58418115 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,424.3189477 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,473.1241784 +VT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,789.7741633 +VT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,974.06992 +VT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,40228.09181 +VT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,183.67392 +VT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1928.437876 +VT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,160.6705583 +VT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,486.605913 +VT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.496605 +VT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,407.5990599 +VT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,228.4451337 +VT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,322.077037 +VT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,530.2473089 +VT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1695.1453 +VT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,74.5884818 +VT,Carbon Monoxide,1A3c_Rail,light_oil,TON,6.682394579 +VT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.85069439 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,432.9061008 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,184.3065959 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.125192885 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.321096104 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,376.2648953 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,75.98474812 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4976.067623 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.77470811 +VT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,18.83403011 +VT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,11225.53403 +VT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,48563.08962 +VT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,185.53499 +VT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,12.453739 +VT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,267.306204 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,280.1957059 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,671.9882683 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.028551716 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9041838 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,13555.68529 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.1673249 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3636.90713 +VT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +VT,Carbon Monoxide,2H2_Food-and-beverage,,TON,79.07383034 +VT,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.012442356 +VT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,5585.2354 +VT,Carbon Monoxide,5C_Open-burning-residential,,TON,416.48 +VT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,214.577852 +VT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.413001426 +VT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.300421322 +VT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,32.77993374 +VT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,4.491229078 +VT,Methane,1A2g_Construction_and_Mining,light_oil,TON,1.877512848 +VT,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.3851328 +VT,Methane,1A3bii_Road-LDV,light_oil,TON,130.8900734 +VT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.2688298 +VT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.361702812 +VT,Methane,1A3biii_Road-bus,diesel_oil,TON,2.280126329 +VT,Methane,1A3biii_Road-bus,light_oil,TON,0.839766894 +VT,Methane,1A3biii_Road-bus,natural_gas,TON,0.349569 +VT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24.71554345 +VT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.484050163 +VT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.82077 +VT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.218797781 +VT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.8952997 +VT,Methane,1A3c_Rail,diesel_oil,TON,0.028657321 +VT,Methane,1A3c_Rail,light_oil,TON,0.022518145 +VT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.571670336 +VT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,18.81770564 +VT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.98259607 +VT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.197351739 +VT,Methane,1A4bi_Residential-mobile,light_oil,TON,50.86509336 +VT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.45733174 +VT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.777718577 +VT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.024574816 +VT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0158011 +VT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,127.3176448 +VT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.250976127 +VT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,32.9767371 +VT,Nitrogen Oxides,11C_Other-natural,,TON,1205.0225 +VT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,280.84 +VT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0.06 +VT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,0.4626 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,220.1937031 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,160.1514197 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.57907782 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,37.4469 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,117.1975688 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,115.5521446 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.43053944 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,76.88875705 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,765.9109366 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,7.844998797 +VT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,136.5699727 +VT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,257.221308 +VT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,4107.159565 +VT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,53.704518 +VT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,171.4660781 +VT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,433.769624 +VT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,47.53975458 +VT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.208123 +VT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1360.371755 +VT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,22.29875757 +VT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1048.48644 +VT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,42.0929103 +VT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,74.664941 +VT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,723.2157206 +VT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.093664461 +VT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,14.7692286 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,145.9074738 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,759.0260531 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,41.71084922 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.186761943 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,501.7014523 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,138.7292623 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,87.57155164 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.780425109 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,44.15175641 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,131.2061458 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,827.1535711 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,667.92565 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,44.833488 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,602.02668 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,607.2150923 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.12232142 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006382672 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.1669912 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,242.3266643 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,101.2909865 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,237.221256 +VT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +VT,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +VT,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,2.6440032 +VT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,165.243499 +VT,Nitrogen Oxides,5C_Open-burning-residential,,TON,29.39 +VT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,9.5367973 +VT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.256291698 +VT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,101.0090582 +VT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.054642735 +VT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.827632128 +VT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.156103199 +VT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.404068685 +VT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.004105989 +VT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.253615786 +VT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.315844041 +VT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.328710616 +VT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.942282849 +VT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.4787353 +VT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,3.06576 +VT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +VT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.0053732 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,33.27165 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.69856009 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.23200452 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.120960023 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.301831417 +VT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,5861.9447 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,346.3140575 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,52.80364154 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.825938852 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.066785942 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.881273131 +VT,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,7049.42 +VT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,40.075595 +VT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.6900107 +VT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.96506197 +VT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1173.980215 +VT,PM10 Filterable,2A6_Other-minerals,,TON,892.0401 +VT,PM10 Filterable,2D3d_Coating-application,,TON,0 +VT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,64.8 +VT,PM10 Filterable,2H2_Food-and-beverage,,TON,26.57484919 +VT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,1987.1655 +VT,PM10 Filterable,3Dc_Other-farm,,TON,3306.6154 +VT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,561.82759 +VT,PM10 Filterable,5C_Open-burning-residential,,TON,148.55 +VT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,35.533057 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,3.17 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.01414 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16.24465665 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.140793003 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.337047906 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,34.68258 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,9.5970433 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,23.06736501 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.278459962 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3.289812206 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,65.20458549 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.623786772 +VT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,19.85010608 +VT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5861.9447 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,18.6993267 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,464.4465182 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.3114726 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.05546301 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,32.7501808 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.59907373 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01215959 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,68.4481186 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.140080194 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,65.187168 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.081206506 +VT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.5582566 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,18.31179158 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003791445 +VT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.372748646 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,357.0092923 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,65.42777583 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.992813863 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.149815097 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.24322767 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.32899974 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.295695864 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.133748471 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.126679663 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,43.34653864 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7457.577234 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,88.31468 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.9279857 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.5151615 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,48.82572859 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.43544341 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.2555E-05 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.417867 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,156.3893374 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.135952268 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,14.7840814 +VT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1173.980215 +VT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,892.0401 +VT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,64.8 +VT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,222.6203864 +VT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1987.1655 +VT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,3306.6154 +VT,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.17441527 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,561.82759 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,148.55 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,35.533057 +VT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,1.995762 +VT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +VT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.0053732 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,21.6981 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.28591398 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.909055 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030239981 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1.269321112 +VT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,763.36282 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,298.9995117 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,50.73059905 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.172096815 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.051575472 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.466135195 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,7047.24 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,30.7988055 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.0673237 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.53678408 +VT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,117.3980215 +VT,PM2.5 Filterable,2A6_Other-minerals,,TON,111.50526 +VT,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +VT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,48.2 +VT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,11.29094439 +VT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,411.86332 +VT,PM2.5 Filterable,3Dc_Other-farm,,TON,661.32344 +VT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,433.11367 +VT,PM2.5 Filterable,5C_Open-burning-residential,,TON,136.05 +VT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,27.392571 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,2.1 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.01414 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.75542554 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.124777746 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.336981388 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,23.10903 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,8.18439142 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,14.74442349 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.187739794 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3.252754968 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,63.24845251 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.336188087 +VT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,16.91841863 +VT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,763.36282 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,11.61887933 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,166.3202067 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.1092094 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.390528557 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,23.3963634 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.172044337 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00252738 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,51.1326206 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.579124122 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,47.9276942 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.019265089 +VT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.0099388 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,16.87912692 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003496064 +VT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.361566306 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,309.7569055 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,63.38528121 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.353262956 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.134922321 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.833951884 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.95912775 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.810724157 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.133748471 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.032881474 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,39.88034685 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7447.40639 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,79.03791 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.3052967 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.08388346 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,47.36092627 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.920617979 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.2555E-05 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.4053307 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,143.8783208 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.071873138 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,13.60134455 +VT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,117.3980215 +VT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,111.50526 +VT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,48.2 +VT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,207.3364867 +VT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,411.86332 +VT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,661.32344 +VT,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.17441527 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,433.11367 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,136.05 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,27.392571 +VT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,2.42 +VT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0 +VT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.0000346 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.561548481 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.278934252 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.0168741 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3.36846 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.20303989 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,274.266779 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.36760355 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.426502073 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.47992209 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.038776183 +VT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,17.0362093 +VT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.733038905 +VT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,71.22121395 +VT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.12999872 +VT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.997265591 +VT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.587320429 +VT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.277384039 +VT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000504568 +VT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.860934129 +VT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.151314541 +VT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.80712388 +VT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.292512182 +VT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.880319 +VT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.256972297 +VT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000529668 +VT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.007038952 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,16.5574855 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,136.9356515 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,111.766945 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.6158637 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.52505045 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.206539072 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.410909062 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.00595129 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.065255656 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.870786497 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,255.5835179 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,483.6808 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,14.9093 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,2.8951861 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.993577818 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.046363205 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.43549E-06 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004342836 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.294803449 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.307922524 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.579333821 +VT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +VT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +VT,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.4077093 +VT,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,54.860891 +VT,Sulfur Dioxide,5C_Open-burning-residential,,TON,4.9 +VT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.0606289 +VT,Volatile Organic Compounds,11C_Other-natural,,TON,79524.71 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,23.2 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.0202 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,20.52274324 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,34.0707735 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.098623262 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,5.76511 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.547517003 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.495285292 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.023939992 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,6.210354695 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,85.31014931 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,32.01052132 +VT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,67.24287164 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,101.745519 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,3652.031912 +VT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.340172 +VT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,146.0492868 +VT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,47.8364195 +VT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,24.41302048 +VT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.0262983 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,116.7169137 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,10.25804702 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,68.554336 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,23.75986552 +VT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,233.26307 +VT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,28.84307212 +VT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.166387307 +VT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.165013548 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,13.46888065 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,52.13251388 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.023747474 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024240867 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.02914362 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.47395644 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,180.5427081 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.238678127 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,4.403588989 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,749.5277503 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7213.452052 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,25.974899 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.7435254 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,26.579205 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,55.61798728 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,60.68242846 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005312153 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.7639954 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5437.533883 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.14884202 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,935.7533022 +VT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,67.1928704 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,17.76677188 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,535.2867962 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,158.0769416 +VT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,170.31612 +VT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2798.907215 +VT,Volatile Organic Compounds,2D3d_Coating-application,,TON,1734.334139 +VT,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,553.815385 +VT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.52499985 +VT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,818.56285 +VT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +VT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +VT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,20.05 +VT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,27.42253032 +VT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,184.793 +VT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,30.567 +VT,Volatile Organic Compounds,3B3_Manure-swine,,TON,2.01 +VT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2.247 +VT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,79.559218 +VT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,128.933 +VT,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.009254002 +VT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,383.36511 +VT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,33.46 +VT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,40.020493 +VT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,6.284 +WA,Ammonia,1A1a_Public-Electricity,biomass,TON,13.8335 +WA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +WA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,1.06805 +WA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,30.015 +WA,Ammonia,1A1b_Pet-refining,natural_gas,TON,61.8585 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.512603106 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.107685772 +WA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,18.92971024 +WA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.862910493 +WA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.526399421 +WA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.079 +WA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,46.24588709 +WA,Ammonia,1A2c_Chemicals,natural_gas,TON,0 +WA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,14.88479446 +WA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.383860286 +WA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,31.18534187 +WA,Ammonia,1A3bii_Road-LDV,light_oil,TON,2073.889558 +WA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.55435723 +WA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,66.24312137 +WA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.53857796 +WA,Ammonia,1A3biii_Road-bus,light_oil,TON,3.00853533 +WA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.1102215 +WA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,64.76903397 +WA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.320701875 +WA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,55.1475027 +WA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,20.05038934 +WA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.8215066 +WA,Ammonia,1A3c_Rail,diesel_oil,TON,8.454149033 +WA,Ammonia,1A3c_Rail,light_oil,TON,0.002943837 +WA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8.541582312 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,10.34712688 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.630372499 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016699179 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.93439981 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.599717622 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.23210149 +WA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.64403367 +WA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,7.353966482 +WA,Ammonia,1A4bi_Residential-stationary,biomass,TON,928.1868386 +WA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,13.73398815 +WA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.12150002 +WA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,789.1184818 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.207920489 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.298810735 +WA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.029284936 +WA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.729805477 +WA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.82838375 +WA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.721698342 +WA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Ammonia,2A1_Cement-production,,TON,0 +WA,Ammonia,2A6_Other-minerals,,TON,0 +WA,Ammonia,2B_Chemicals-other,,TON,64.0059 +WA,Ammonia,2C_Iron-steel-alloy,,TON,0 +WA,Ammonia,2C3_Aluminum-production,,TON,0.24336 +WA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.07 +WA,Ammonia,2D3d_Coating-application,,TON,0 +WA,Ammonia,2D3e_Degreasing,,TON,0 +WA,Ammonia,2H1_Pulp-and-paper,,TON,244.53 +WA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,29.38165 +WA,Ammonia,2I_Wood-processing,,TON,0 +WA,Ammonia,3B1a_Cattle-dairy,,TON,7886.237 +WA,Ammonia,3B1b_Cattle-non-dairy,,TON,3272.274 +WA,Ammonia,3B2_Manure-sheep,,TON,185.80056 +WA,Ammonia,3B3_Manure-swine,,TON,316.883 +WA,Ammonia,3B4_Manure-other,,TON,1206.348 +WA,Ammonia,3B4_Manure-poultry,,TON,3356.727864 +WA,Ammonia,3B4d_Manure-goats,,TON,228.921 +WA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,10991.62957 +WA,Ammonia,3F_Ag-res-on-field,,TON,6871.161257 +WA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,11.06 +WA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,172.074 +WA,Ammonia,5C_Incineration,biomass,TON,15.78 +WA,Ammonia,5C_Open-burning-residential,,TON,465.132431 +WA,Ammonia,5C_Open-burning-yard-waste,,TON,39.26849419 +WA,Ammonia,5D1_Wastewater-domestic,,TON,15.80992268 +WA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.29 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,309487.9199 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,297354.8807 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16790.76784 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1832441.89 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,32109.89766 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.0945808 +WA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1179151.698 +WA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,23984548.44 +WA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,122750.149 +WA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,999692.0536 +WA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,215857.9971 +WA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,88675.13702 +WA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4435.331 +WA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4086738.777 +WA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,38173.50223 +WA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3095434.145 +WA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,569862.9328 +WA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,98704.478 +WA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5162.601082 +WA,Carbon Dioxide,1A3c_Rail,light_oil,TON,229.8864831 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,196732.9151 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,270616.638 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11893.02469 +WA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,79249.15052 +WA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,547000.3292 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,887304.8032 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,21783.52656 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.803369518 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3589.9404 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,253106.1295 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,102008.1651 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,336300.4232 +WA,Carbon Monoxide,11C_Other-natural,,TON,173665.083 +WA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1463.4255 +WA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1.723 +WA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1655 +WA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,123.4865 +WA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1332.98 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1624.926945 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7416.181488 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,446.6196 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7614.490709 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,139.4105461 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,254.4833947 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,67.88224718 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1779.348001 +WA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,3.2 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5825.871488 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6539.061616 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.47058085 +WA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12105.16873 +WA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,23411.14953 +WA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,619743.1368 +WA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1666.31869 +WA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25245.86812 +WA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,700.5172022 +WA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,6347.278361 +WA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,48.66685 +WA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6699.726812 +WA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,631.5916071 +WA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5655.87397 +WA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,17694.31614 +WA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4455.52951 +WA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2685.788506 +WA,Carbon Monoxide,1A3c_Rail,light_oil,TON,52.34328266 +WA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1987.844947 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,783.1259339 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.326733828 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.106827464 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2555.890382 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,845.7523455 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,55843.57925 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,253.6508377 +WA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,268.2299339 +WA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,127243.4985 +WA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,116029.4174 +WA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,68.6700016 +WA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.607499674 +WA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1707.307502 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2934.741058 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5546.092404 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.310647453 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,28.374176 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,36729.81213 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,202.3542316 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,38386.55341 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.16 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Carbon Monoxide,2A1_Cement-production,,TON,1149.3525 +WA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,62.9325 +WA,Carbon Monoxide,2A6_Other-minerals,,TON,474.3472 +WA,Carbon Monoxide,2B_Chemicals-other,,TON,50.03795758 +WA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,435.1245 +WA,Carbon Monoxide,2C3_Aluminum-production,,TON,50228.32 +WA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,11.85 +WA,Carbon Monoxide,2D3d_Coating-application,,TON,0 +WA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3680.6855 +WA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1141.05676 +WA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.8 +WA,Carbon Monoxide,3F_Ag-res-on-field,,TON,22858.02891 +WA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,57.4962671 +WA,Carbon Monoxide,5C_Incineration,,TON,0 +WA,Carbon Monoxide,5C_Incineration,biomass,TON,39.0772826 +WA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,43.757 +WA,Carbon Monoxide,5C_Open-burning-residential,,TON,20591.8043 +WA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,2082.42077 +WA,Carbon Monoxide,5C_Other-open-burning,,TON,6934.164 +WA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.722 +WA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.034 +WA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.18220686 +WA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44.21919171 +WA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,198.7890779 +WA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,61.66794658 +WA,Methane,1A2g_Construction_and_Mining,light_oil,TON,25.5717192 +WA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.327082134 +WA,Methane,1A3bii_Road-LDV,diesel_oil,TON,54.56722423 +WA,Methane,1A3bii_Road-LDV,light_oil,TON,1518.910373 +WA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.23430738 +WA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,77.11691604 +WA,Methane,1A3biii_Road-bus,diesel_oil,TON,6.043254594 +WA,Methane,1A3biii_Road-bus,light_oil,TON,14.37108434 +WA,Methane,1A3biii_Road-bus,natural_gas,TON,52.2507 +WA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,322.8416514 +WA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.92515853 +WA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,107.2893258 +WA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,30.24580202 +WA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.50865243 +WA,Methane,1A3c_Rail,diesel_oil,TON,0.221825672 +WA,Methane,1A3c_Rail,light_oil,TON,0.171326249 +WA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.363131724 +WA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,206.7697558 +WA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,166.5693673 +WA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.8100317 +WA,Methane,1A4bi_Residential-mobile,light_oil,TON,562.8789118 +WA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.88552206 +WA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,22.96127259 +WA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.267378048 +WA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.154681598 +WA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,347.7239096 +WA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.649805877 +WA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,348.8023891 +WA,Nitrogen Oxides,11C_Other-natural,,TON,12790.2134 +WA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,771.381 +WA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,15.1775 +WA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,7529 +WA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,693.7225 +WA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3360.9 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1684.741982 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,986.3045579 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,65.4276722 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3624.666967 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,654.463146 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,560.460373 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,553.0202992 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4413.488425 +WA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,5.4 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10519.4523 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,103.8027378 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.090554913 +WA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3469.288474 +WA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,5279.41179 +WA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,75866.21281 +WA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,551.882613 +WA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2891.222877 +WA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1725.901408 +WA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,514.983294 +WA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,32.73518 +WA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24626.4394 +WA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,86.54872743 +WA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15632.02494 +WA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1844.365299 +WA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,215.510938 +WA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,14496.9955 +WA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.674758609 +WA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18208.39761 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,300.8957192 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.57310777 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.403583443 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3142.170714 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1544.103115 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,931.3738125 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,64.30034893 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,628.7172104 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1425.011772 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1925.703091 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,247.2122655 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.186994072 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4167.809849 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6337.700171 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,94.20209151 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.069444701 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,30.843242 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,526.5172844 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1069.308321 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2525.643517 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.01 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Nitrogen Oxides,2A1_Cement-production,,TON,1143.9915 +WA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,56.0285 +WA,Nitrogen Oxides,2A6_Other-minerals,,TON,1024.052 +WA,Nitrogen Oxides,2B_Chemicals-other,,TON,106.7034 +WA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,77.5245 +WA,Nitrogen Oxides,2C3_Aluminum-production,,TON,296.56 +WA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,14.424125 +WA,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +WA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3037.1655 +WA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2.8 +WA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1140.991904 +WA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,31.4015 +WA,Nitrogen Oxides,5C_Incineration,,TON,0.235124728 +WA,Nitrogen Oxides,5C_Incineration,biomass,TON,380.5970385 +WA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,2.303 +WA,Nitrogen Oxides,5C_Open-burning-residential,,TON,1453.53921 +WA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,90.7340684 +WA,Nitrogen Oxides,5C_Other-open-burning,,TON,364.956 +WA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.2405 +WA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.665 +WA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.669455419 +WA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1521.747785 +WA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.448252127 +WA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,67.18057072 +WA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.536000922 +WA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,5.645519922 +WA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.3597094 +WA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.54940173 +WA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.730492116 +WA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.42104705 +WA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,25.25279817 +WA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.90026917 +WA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,39.14929 +WA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.1972374 +WA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,103.2913908 +WA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,98.324705 +WA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,167.580708 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1256.545426 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,44.60531164 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,610.8526646 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,98.04412236 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,103.674751 +WA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0 +WA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,66880.81 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,661.7584756 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.516740796 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.023741633 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.27086703 +WA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,13656.13 +WA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,14.83273305 +WA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.131220011 +WA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.535520707 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Filterable,2A1_Cement-production,,TON,42.38102 +WA,PM10 Filterable,2A2_Lime-production,,TON,68.11279763 +WA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,20435.87996 +WA,PM10 Filterable,2A6_Other-minerals,,TON,4179.78964 +WA,PM10 Filterable,2B_Chemicals-other,,TON,109.936845 +WA,PM10 Filterable,2C_Iron-steel-alloy,,TON,0 +WA,PM10 Filterable,2C3_Aluminum-production,,TON,838.8079025 +WA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,12.89877 +WA,PM10 Filterable,2D3d_Coating-application,,TON,0.2 +WA,PM10 Filterable,2H1_Pulp-and-paper,,TON,1023.13646 +WA,PM10 Filterable,2H2_Food-and-beverage,,TON,221.2270147 +WA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,53.4 +WA,PM10 Filterable,2I_Wood-processing,,TON,21.73141 +WA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,11091.96981 +WA,PM10 Filterable,3Dc_Other-farm,,TON,95566.78 +WA,PM10 Filterable,5A_Solid-waste-disposal,,TON,91.4420396 +WA,PM10 Filterable,5C_Incineration,,TON,0.027246 +WA,PM10 Filterable,5C_Incineration,biomass,TON,65.5311731 +WA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,8.86775 +WA,PM10 Filterable,5C_Open-burning-residential,,TON,7364.42 +WA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,332.09 +WA,PM10 Filterable,5C_Other-open-burning,,TON,1414.02 +WA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.0596985 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,42.17 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.2605 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,110.9547 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,180.3678 +WA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,249.69 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,117.8083037 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.84116226 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.095040975 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1325.294453 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,48.09461481 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,663.7529045 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,111.1964569 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,293.0704609 +WA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,892.8953632 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,49.75710512 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +WA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,303.2969728 +WA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,66881.1248 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,320.1430023 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3571.871305 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,41.3361981 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,130.8074018 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,111.3553099 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,19.42994744 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.005686 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1364.56103 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.381042985 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1194.470108 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,84.97043453 +WA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.0379413 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,383.1692756 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029262802 +WA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1135.156031 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,681.3716058 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.702822599 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.053193279 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.90962828 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,137.0814765 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,69.98345046 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.498184733 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,44.46297794 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,533.6534813 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,15291.57536 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,32.68693385 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.289170508 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,22.1923396 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,509.2896664 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,44.22019455 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000354204 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.0871872 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,366.5436344 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.38490654 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,156.1859628 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,45.196 +WA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,73.2905 +WA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,20435.87996 +WA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4215.722352 +WA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,109.946795 +WA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0 +WA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1135.73109 +WA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,12.89877 +WA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.65 +WA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1296.71452 +WA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2958.904461 +WA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,53.4 +WA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,23.4 +WA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,11091.96981 +WA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,95566.91471 +WA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3108.735007 +WA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,96.4774 +WA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.030671615 +WA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,73.77034486 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8.92412 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,7364.59716 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,332.6667682 +WA,PM10 Primary (Filt + Cond),5C_Other-open-burning,,TON,1414.2039 +WA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.2465 +WA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.08 +WA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,27.00958 +WA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.1772374 +WA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,96.6313908 +WA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,98.296816 +WA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,156.844538 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1113.861773 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,40.9243135 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,71.23260222 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,95.99801373 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,78.63240856 +WA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0 +WA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,10033.12 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,573.5624924 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.274111256 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.018393863 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.625527591 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,13650.29 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,11.39919497 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.100845038 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.69453401 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Filterable,2A1_Cement-production,,TON,33.05752 +WA,PM2.5 Filterable,2A2_Lime-production,,TON,35.58679763 +WA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2043.587996 +WA,PM2.5 Filterable,2A6_Other-minerals,,TON,641.7693005 +WA,PM2.5 Filterable,2B_Chemicals-other,,TON,106.1474516 +WA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0 +WA,PM2.5 Filterable,2C3_Aluminum-production,,TON,831.2679024 +WA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,9.9717753 +WA,PM2.5 Filterable,2D3d_Coating-application,,TON,0.1 +WA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,770.8331412 +WA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,7.934514775 +WA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,42.78 +WA,PM2.5 Filterable,2I_Wood-processing,,TON,7.38 +WA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2264.928807 +WA,PM2.5 Filterable,3Dc_Other-farm,,TON,19113.24 +WA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,23.8348496 +WA,PM2.5 Filterable,5C_Incineration,,TON,0.027246 +WA,PM2.5 Filterable,5C_Incineration,biomass,TON,61.4281731 +WA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,7.72675 +WA,PM2.5 Filterable,5C_Open-burning-residential,,TON,6744.24 +WA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,298.46 +WA,PM2.5 Filterable,5C_Other-open-burning,,TON,1231.55 +WA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.0596985 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,30.03026 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.2405 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,104.2947 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,180.339911 +WA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,238.95383 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,114.2154545 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.71254603 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.092424233 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1182.662632 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,44.41508463 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,124.1486569 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,109.1512632 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,267.854399 +WA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,866.1087203 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,45.80815894 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000957538 +WA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,260.1007713 +WA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10033.45564 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,235.2128274 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1508.020975 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,32.1788438 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.16797353 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,83.05975905 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.25853588 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.4762684 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,993.3407925 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.429022676 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,825.751559 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,29.06252418 +WA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.62835841 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,370.1065902 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.026979977 +WA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,948.6915962 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,593.0672911 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.467110473 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048028306 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.36065362 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,132.9690434 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,64.59247082 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.498184733 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,43.1290859 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,490.9831857 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,15213.40645 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,29.25340595 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.25879517 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,18.35136583 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,494.0108413 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,40.68274325 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000354204 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.9645681 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,337.2215304 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.71335275 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,143.6909717 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,35.8725 +WA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,40.7645 +WA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2043.587996 +WA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,677.701992 +WA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,106.1574016 +WA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0 +WA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1128.19109 +WA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,9.9717753 +WA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.55 +WA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1044.411201 +WA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2745.612261 +WA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,42.78 +WA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,9.04859 +WA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2264.928807 +WA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,19113.3763 +WA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2705.480806 +WA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,28.87021 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.03071209 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,69.66730438 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,7.77262 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,6744.4199 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,299.0505622 +WA,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,,TON,1231.72595 +WA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.2465 +WA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.08 +WA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,26.737 +WA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.093 +WA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,3037 +WA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,29.9045 +WA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,877.08 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.226565377 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.162881485 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.137939305 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,841.644843 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,32.03316553 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,967.1058749 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,468.3725942 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,219.282461 +WA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,15.23949468 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.433299537 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.52636E-05 +WA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,383.3181038 +WA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,10.37320777 +WA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,439.4069261 +WA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.07339203 +WA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.32665624 +WA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.893680545 +WA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.624236626 +WA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.02348274 +WA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,35.25078917 +WA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.699157297 +WA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.73042332 +WA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10.43738477 +WA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.80753165 +WA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,9.36537287 +WA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003319868 +WA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11291.41478 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,31.09812655 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.484639194 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.889231659 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,26.67960931 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.724186215 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.692757879 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.066628165 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.697046975 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.89505575 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,272.2869663 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,585.068225 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,5.17590301 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,25.60656478 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.60956182 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.312525527 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.56184E-05 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.031803588 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.664580336 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.937735743 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.856750092 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.02 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Sulfur Dioxide,2A1_Cement-production,,TON,57.0025 +WA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,8.955 +WA,Sulfur Dioxide,2A6_Other-minerals,,TON,195.1255 +WA,Sulfur Dioxide,2B_Chemicals-other,,TON,217.984255 +WA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,76.0045 +WA,Sulfur Dioxide,2C3_Aluminum-production,,TON,7729.0585 +WA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.08 +WA,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +WA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,732.7375 +WA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,187.2425226 +WA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,20.825 +WA,Sulfur Dioxide,5C_Incineration,,TON,0 +WA,Sulfur Dioxide,5C_Incineration,biomass,TON,7.44994792 +WA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0.057575 +WA,Sulfur Dioxide,5C_Open-burning-residential,,TON,242.256591 +WA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,20.46722772 +WA,Sulfur Dioxide,5C_Other-open-burning,,TON,9.1239 +WA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.389 +WA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,1.896 +WA,Volatile Organic Compounds,11C_Other-natural,,TON,695220.23 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,32.2195 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.508 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,5.32 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,21.9775 +WA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1724.209 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,167.8110643 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,212.4070001 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43.42297918 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,212.6166598 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.27465101 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.552993169 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.32991106 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.00200707 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,303.6592853 +WA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1171.469163 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,443.7485024 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.070702911 +WA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1079.308102 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,2235.326494 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,58007.65978 +WA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,182.797397 +WA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2098.618727 +WA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,158.6679186 +WA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,391.9218476 +WA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,6.798622 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1693.255829 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,25.60550685 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1464.336209 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,798.2993395 +WA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,930.393046 +WA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,699.6323889 +WA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.394242021 +WA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,685.4384417 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,29.64220398 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.958975613 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008313316 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,205.7393824 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,194.4877698 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2030.458402 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.00607964 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,62.69490135 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8543.503889 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,18302.00354 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,9.6137921 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.085049964 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,234.7268032 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,579.7515544 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,458.2386086 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.057797136 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.4666853 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,12090.075 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,54.35611149 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10174.31618 +WA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1002.305695 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,14.21021344 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,223.1312677 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,10425.59361 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3499.267015 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,966.176 +WA,Volatile Organic Compounds,2A1_Cement-production,,TON,12.3525 +WA,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.922 +WA,Volatile Organic Compounds,2A6_Other-minerals,,TON,50.81306985 +WA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,915.8559501 +WA,Volatile Organic Compounds,2B_Chemicals-other,,TON,74.872291 +WA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0 +WA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1102.614 +WA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,40.8185 +WA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,31137.75218 +WA,Volatile Organic Compounds,2D3d_Coating-application,,TON,18521.0445 +WA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4948.902732 +WA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,9.835 +WA,Volatile Organic Compounds,2D3h_Printing,,TON,0 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2419.766126 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2442.344006 +WA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3546.7795 +WA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,564.1929671 +WA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,219.643 +WA,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +WA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,633.213 +WA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,262.739 +WA,Volatile Organic Compounds,3B3_Manure-swine,,TON,25.438 +WA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,268.106 +WA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,18116.41404 +WA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2605.568448 +WA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,163.3925 +WA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1217.555 +WA,Volatile Organic Compounds,5C_Incineration,,TON,0.010716106 +WA,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.272355382 +WA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2.590875 +WA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1658.97179 +WA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,362.9363386 +WA,Volatile Organic Compounds,5C_Other-open-burning,,TON,410.57565 +WA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,83.6105747 +WA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,5.2694 +WA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.030005 +WI,Ammonia,1A1a_Public-Electricity,biomass,TON,18.27995 +WI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.86557204 +WI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,1183.893533 +WI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.0000908 +WI,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.029288 +WI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,180.9619001 +WI,Ammonia,1A1b_Pet-refining,natural_gas,TON,7.288768 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.743871104 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.197295011 +WI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,100.6771013 +WI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.343864845 +WI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.31027514 +WI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.2487246 +WI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.0000749 +WI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,143.8162183 +WI,Ammonia,1A2c_Chemicals,natural_gas,TON,3.833317515 +WI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.31213739 +WI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.550588835 +WI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,20.08396917 +WI,Ammonia,1A3bii_Road-LDV,light_oil,TON,1875.076202 +WI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.26606985 +WI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.7772745 +WI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.661695399 +WI,Ammonia,1A3biii_Road-bus,light_oil,TON,2.430620246 +WI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.003748623 +WI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,85.36011641 +WI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.724285582 +WI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,57.77083704 +WI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,18.67047738 +WI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.0812248 +WI,Ammonia,1A3c_Rail,diesel_oil,TON,7.368512952 +WI,Ammonia,1A3c_Rail,light_oil,TON,0.00211795 +WI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.935066974 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,5.829532716 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.534233549 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.018373345 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.052171472 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.07423463 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.123281183 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.312402215 +WI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.425734174 +WI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.612592741 +WI,Ammonia,1A4bi_Residential-stationary,biomass,TON,629.3222657 +WI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,19.446007 +WI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.324000065 +WI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1510.623936 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.26984806 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.375727394 +WI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.026316999 +WI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,13.81279031 +WI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.329988182 +WI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,8.676905501 +WI,Ammonia,2A6_Other-minerals,,TON,8.43665 +WI,Ammonia,2B_Chemicals-other,,TON,67.78414 +WI,Ammonia,2C_Iron-steel-alloy,,TON,1.518045 +WI,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.745 +WI,Ammonia,2C7a_Copper-production,,TON,0.001 +WI,Ammonia,2D3d_Coating-application,,TON,7.167535 +WI,Ammonia,2D3h_Printing,,TON,9.503771 +WI,Ammonia,2H1_Pulp-and-paper,,TON,95.6688593 +WI,Ammonia,2H2_Food-and-beverage,,TON,120.1658512 +WI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,51.25188 +WI,Ammonia,3B1a_Cattle-dairy,,TON,17269.393 +WI,Ammonia,3B1b_Cattle-non-dairy,,TON,6279.714 +WI,Ammonia,3B2_Manure-sheep,,TON,312.979392 +WI,Ammonia,3B3_Manure-swine,,TON,2100.995 +WI,Ammonia,3B4_Manure-other,,TON,1613.430984 +WI,Ammonia,3B4_Manure-poultry,,TON,1847.597645 +WI,Ammonia,3B4d_Manure-goats,,TON,390.19596 +WI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,11832.3313 +WI,Ammonia,3F_Ag-res-on-field,,TON,34.095906 +WI,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.076037 +WI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,125.61406 +WI,Ammonia,5D1_Wastewater-domestic,,TON,15.24 +WI,Ammonia,5D2_Wastewater-industrial,biomass,TON,22.508 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,461154.2929 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,546324.726 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,30795.07982 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1639609.466 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,46717.68108 +WI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,681010.8951 +WI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22721173.52 +WI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,140987.18 +WI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1249317.799 +WI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,230118.3041 +WI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,68169.92944 +WI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,162.4346 +WI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4929368.01 +WI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,85455.86798 +WI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2871626.982 +WI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,488064.7726 +WI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,204737.245 +WI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3723.644791 +WI,Carbon Dioxide,1A3c_Rail,light_oil,TON,165.4506079 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,138106.0028 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,196013.4397 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8495.880886 +WI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,52387.1554 +WI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,417342.1556 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1510341.177 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,27907.34198 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.099937756 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3226.1182 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,943676.6321 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,163775.8201 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,613580.8297 +WI,Carbon Monoxide,11C_Other-natural,,TON,68272.75 +WI,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.864585 +WI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,684.76291 +WI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,16.61489604 +WI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8490.575155 +WI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,16.0500175 +WI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.70054 +WI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2177.726757 +WI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,213.6752786 +WI,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.038215935 +WI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.644561 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1402.348403 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13317.39535 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,799.2622973 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,14.9344905 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,15609.07749 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,85.80088272 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2087.856808 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,36.22707265 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,24.20506859 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4656.17909 +WI,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.73748075 +WI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,375.6480693 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3900.361269 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7933.791788 +WI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6963.498188 +WI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8525.635025 +WI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,453927.5702 +WI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1205.2909 +WI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24283.24717 +WI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,771.7262114 +WI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4626.020256 +WI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,1.3547647 +WI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8180.92605 +WI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2212.181102 +WI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5327.959507 +WI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,16528.48675 +WI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10611.84249 +WI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2375.269227 +WI,Carbon Monoxide,1A3c_Rail,light_oil,TON,37.16781264 +WI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,857.6207223 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,753.5084012 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,43.24293494 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,147.5066542 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.301325735 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5337.587574 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,638.6557338 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,39831.65643 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,191.8525201 +WI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,177.3045029 +WI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,97451.09401 +WI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,85215.11978 +WI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,97.22996 +WI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.61999976 +WI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3542.441522 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5183.882747 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6362.332288 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.565135445 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.4893788 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,100876.1356 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,325.4324211 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,69904.83365 +WI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,64.81984345 +WI,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,548.2977 +WI,Carbon Monoxide,2A6_Other-minerals,,TON,192.1732177 +WI,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,54.60173151 +WI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,6100.1632 +WI,Carbon Monoxide,2C3_Aluminum-production,,TON,9.0209 +WI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,10.9347 +WI,Carbon Monoxide,2C7a_Copper-production,,TON,11.3837 +WI,Carbon Monoxide,2D3d_Coating-application,,TON,0.357711 +WI,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.508855 +WI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,4511.946097 +WI,Carbon Monoxide,2H2_Food-and-beverage,,TON,717.3518056 +WI,Carbon Monoxide,2I_Wood-processing,,TON,76.2125 +WI,Carbon Monoxide,3Dc_Other-farm,,TON,91.96745 +WI,Carbon Monoxide,3F_Ag-res-on-field,,TON,492.368 +WI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,789.2642757 +WI,Carbon Monoxide,5C_Incineration,biomass,TON,37.76485648 +WI,Carbon Monoxide,5C_Open-burning-industrial,,TON,16.661 +WI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,25763.0512 +WI,Carbon Monoxide,5C_Open-burning-residential,,TON,8316.81945 +WI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,764.03861 +WI,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0440755 +WI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.7514775 +WI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,81.31706499 +WI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,364.7480049 +WI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,53.07315588 +WI,Methane,1A2g_Construction_and_Mining,light_oil,TON,29.5549572 +WI,Methane,1A3bii_Road-LDV,diesel_oil,TON,40.91143005 +WI,Methane,1A3bii_Road-LDV,light_oil,TON,1352.037576 +WI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.5461996 +WI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,89.37165733 +WI,Methane,1A3biii_Road-bus,diesel_oil,TON,8.583643727 +WI,Methane,1A3biii_Road-bus,light_oil,TON,9.135408508 +WI,Methane,1A3biii_Road-bus,natural_gas,TON,1.2239434 +WI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,398.836809 +WI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.953061757 +WI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,119.8950727 +WI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,33.16885545 +WI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.5254297 +WI,Methane,1A3c_Rail,diesel_oil,TON,0.159848828 +WI,Methane,1A3c_Rail,light_oil,TON,0.125610726 +WI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.416213516 +WI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,153.5690355 +WI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,129.481848 +WI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.857365809 +WI,Methane,1A4bi_Residential-mobile,light_oil,TON,439.7336134 +WI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,42.13896357 +WI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,28.53608334 +WI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.486419303 +WI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.138913614 +WI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,936.7819421 +WI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.25937269 +WI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,644.9500731 +WI,Nitrogen Oxides,11C_Other-natural,,TON,14211.6071 +WI,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.4657655 +WI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,584.6659 +WI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,84.22020471 +WI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,20788.0864 +WI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,34.4053345 +WI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,12.71724 +WI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1367.008943 +WI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,243.3807585 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.39443465 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.68125 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2286.364362 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1784.850399 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,117.7725897 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,13.78962824 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4473.369043 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,416.4170672 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,11843.84569 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,680.8245464 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,5.340955939 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5823.214073 +WI,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,12.37008815 +WI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,567.2437671 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.13585 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.319005885 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8103.82281 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,126.5173986 +WI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,919.8112022 +WI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2514.205394 +WI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,51515.60635 +WI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,514.955653 +WI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2625.383824 +WI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1795.158372 +WI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,366.6049708 +WI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.8128152 +WI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,29734.16665 +WI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,253.8916828 +WI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12703.61223 +WI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1515.537714 +WI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,484.847097 +WI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,13871.13514 +WI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.525060686 +WI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5701.892714 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,313.9132319 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,197.9350204 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,375.6725231 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.218914676 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5787.69209 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1150.000209 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,740.3778329 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,49.50829794 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,415.6407443 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1136.227819 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1187.842542 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,350.027913 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,5.83199974 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,8953.19466 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11147.75853 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,146.1386347 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.126335018 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,27.728448 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1807.444127 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1716.274914 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,4425.066327 +WI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,15.72810928 +WI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1286.1862 +WI,Nitrogen Oxides,2A6_Other-minerals,,TON,2979.748477 +WI,Nitrogen Oxides,2B_Chemicals-other,,TON,129.4429055 +WI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,308.5605994 +WI,Nitrogen Oxides,2C3_Aluminum-production,,TON,18.65660775 +WI,Nitrogen Oxides,2C5_Lead-production,,TON,0.0096 +WI,Nitrogen Oxides,2C6_Zinc-production,,TON,0.03819 +WI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,23.16893974 +WI,Nitrogen Oxides,2C7a_Copper-production,,TON,0.705059 +WI,Nitrogen Oxides,2C7b_Nickel-production,Other_Fuel,TON,6.468744 +WI,Nitrogen Oxides,2D3d_Coating-application,,TON,0.122085 +WI,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.303735 +WI,Nitrogen Oxides,2D3h_Printing,Other_Fuel,TON,0.76804425 +WI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1456.446085 +WI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,52.1660442 +WI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,11.751084 +WI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,259.0294676 +WI,Nitrogen Oxides,5C_Incineration,biomass,TON,315.2427576 +WI,Nitrogen Oxides,5C_Open-burning-industrial,,TON,7.95300016 +WI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,762.22079 +WI,Nitrogen Oxides,5C_Open-burning-residential,,TON,587.069979 +WI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,33.9572735 +WI,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.5380295 +WI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,2.0499717 +WI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.844284025 +WI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,946.8671418 +WI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.455831993 +WI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,56.66926706 +WI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.568375621 +WI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.934603044 +WI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.018375507 +WI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.062554804 +WI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.72691469 +WI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.165103191 +WI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,26.44278879 +WI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.90607558 +WI,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,6.96731 +WI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,266.7253858 +WI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.641603782 +WI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1748.951232 +WI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.137261522 +WI,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.304554 +WI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,314.9013728 +WI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,127.2478991 +WI,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.023812834 +WI,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.01255542 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,14.89817575 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7440.464281 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.05854869 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,401.8956201 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,36.43912266 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.001238051 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,108.6380834 +WI,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.444611204 +WI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,12.10412091 +WI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00049818 +WI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,194531.0817 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,584.3806268 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.25184717 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.48212482 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065091076 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.56522053 +WI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,21.00167415 +WI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.349920058 +WI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,17.70806645 +WI,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.03365361 +WI,PM10 Filterable,2A1_Cement-production,,TON,20.65809 +WI,PM10 Filterable,2A2_Lime-production,,TON,126.4313612 +WI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,29014.1978 +WI,PM10 Filterable,2A6_Other-minerals,,TON,6728.773046 +WI,PM10 Filterable,2B_Chemicals-other,,TON,127.721116 +WI,PM10 Filterable,2C_Iron-steel-alloy,,TON,528.6283045 +WI,PM10 Filterable,2C3_Aluminum-production,,TON,56.2493567 +WI,PM10 Filterable,2C5_Lead-production,,TON,2.090080003 +WI,PM10 Filterable,2C6_Zinc-production,,TON,0.04388769 +WI,PM10 Filterable,2C7_Other-metal,,TON,49.27863733 +WI,PM10 Filterable,2C7a_Copper-production,,TON,3.824073418 +WI,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,2.0961288 +WI,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.4972 +WI,PM10 Filterable,2D3d_Coating-application,,TON,47.33404561 +WI,PM10 Filterable,2D3e_Degreasing,,TON,0.303568 +WI,PM10 Filterable,2D3h_Printing,,TON,2.7571397 +WI,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,26.56018 +WI,PM10 Filterable,2H1_Pulp-and-paper,,TON,779.3743527 +WI,PM10 Filterable,2H2_Food-and-beverage,,TON,465.7645181 +WI,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,32.2576 +WI,PM10 Filterable,2I_Wood-processing,,TON,172.9695721 +WI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,31085.49039 +WI,PM10 Filterable,3Dc_Other-farm,,TON,137688.7349 +WI,PM10 Filterable,5A_Solid-waste-disposal,,TON,21.48189587 +WI,PM10 Filterable,5C_Incineration,biomass,TON,35.475968 +WI,PM10 Filterable,5C_Open-burning-dump,,TON,61.959014 +WI,PM10 Filterable,5C_Open-burning-industrial,,TON,1.08327316 +WI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2591.54921 +WI,PM10 Filterable,5C_Open-burning-residential,,TON,2711.434 +WI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,126.521182 +WI,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,7.68415858 +WI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,8.971938 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,7.20965 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,279.3567205 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.400824565 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1876.916766 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,8.83047025 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.8891 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,596.2446415 +WI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,134.3863191 +WI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.03179256 +WI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0330406 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,170.7258685 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,57.26750841 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.755362816 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,14.9019244 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7701.96897 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,29.35942986 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,431.0832629 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,39.47237056 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.030665574 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,244.7095036 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.564974985 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,29.61132435 +WI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.001311 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,595.7240756 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,56.10053564 +WI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,170.8151112 +WI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,194531.0817 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,148.1677477 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3015.800536 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.0452199 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,146.3392211 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,120.0031071 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,18.11036021 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.02368898 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1376.6149 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,11.75544354 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,922.080169 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,74.68440573 +WI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,29.2962398 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,440.6136472 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021057105 +WI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,98.80798378 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,605.5569316 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.21215644 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,14.20048393 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.146681559 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,184.5817235 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.7063826 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,50.40156233 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.071748723 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.42758046 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,387.222806 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12584.4042 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,46.28149405 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.771120055 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,46.0409842 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,898.3868446 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,28.44733675 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000644375 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.6722811 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1154.231006 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,36.32513464 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,314.9110454 +WI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.86276816 +WI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,20.658089 +WI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,135.9800125 +WI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,29014.1978 +WI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6481.764878 +WI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,131.3651069 +WI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,732.2208481 +WI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,153.6406909 +WI,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,2.090075005 +WI,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.15674175 +WI,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,63.10886869 +WI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,13.65739544 +WI,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,7.4861765 +WI,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.565 +WI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,59.55099784 +WI,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,4.1758851 +WI,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.75713875 +WI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,26.56018 +WI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1027.776704 +WI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2327.506715 +WI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,40.01288387 +WI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,172.969517 +WI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,31085.49038 +WI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,137929.9403 +WI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,85.352473 +WI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,50.83339847 +WI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,38.16167384 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,61.959014 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.1178132 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2591.54921 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2711.434 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,126.521182 +WI,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,7.68415858 +WI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.9719385 +WI,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,5.43166 +WI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,176.9541122 +WI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.91752573 +WI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1005.369614 +WI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,6.370420444 +WI,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.285519 +WI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,307.1062281 +WI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,100.3821012 +WI,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.006024038 +WI,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.01255542 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,11.82076393 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6362.780823 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.28406904 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,165.5524348 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,23.7258675 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.001238129 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,91.13374742 +WI,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.291963567 +WI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,11.33376518 +WI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000467044 +WI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,21071.88295 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,502.0645065 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.80755119 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.581732788 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.050058329 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.78885613 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,16.14019305 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.26891996 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.739440294 +WI,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02744063 +WI,PM2.5 Filterable,2A1_Cement-production,,TON,7.3314013 +WI,PM2.5 Filterable,2A2_Lime-production,,TON,32.16339487 +WI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2901.41978 +WI,PM2.5 Filterable,2A6_Other-minerals,,TON,1167.288122 +WI,PM2.5 Filterable,2B_Chemicals-other,,TON,57.41130845 +WI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,365.6629395 +WI,PM2.5 Filterable,2C3_Aluminum-production,,TON,37.39072146 +WI,PM2.5 Filterable,2C5_Lead-production,,TON,0.737674001 +WI,PM2.5 Filterable,2C6_Zinc-production,,TON,0.039117302 +WI,PM2.5 Filterable,2C7_Other-metal,,TON,13.63664932 +WI,PM2.5 Filterable,2C7a_Copper-production,,TON,3.408412592 +WI,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,1.868289 +WI,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.175482 +WI,PM2.5 Filterable,2D3d_Coating-application,,TON,39.20671654 +WI,PM2.5 Filterable,2D3e_Degreasing,,TON,0.2518966 +WI,PM2.5 Filterable,2D3h_Printing,,TON,2.287839 +WI,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,22.03933 +WI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,457.0584004 +WI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,111.8282449 +WI,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,25.72005862 +WI,PM2.5 Filterable,2I_Wood-processing,,TON,55.19169248 +WI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,6246.002968 +WI,PM2.5 Filterable,3Dc_Other-farm,,TON,27518.14099 +WI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,16.84312279 +WI,PM2.5 Filterable,5C_Incineration,biomass,TON,10.7024096 +WI,PM2.5 Filterable,5C_Open-burning-dump,,TON,35.2930993 +WI,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.61705448 +WI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1997.82584 +WI,PM2.5 Filterable,5C_Open-burning-residential,,TON,2483.10319 +WI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,97.535614 +WI,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,4.377053407 +WI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,5.110596 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,5.674 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,189.5855919 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.676747743 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1143.155043 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,7.063629172 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.870065 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,588.5729158 +WI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,107.5202511 +WI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.01400376 +WI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0330406 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,165.5855307 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,57.0892017 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.754628418 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,11.82425859 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6624.32218 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,25.58558766 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,194.6910896 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,26.75729948 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.030668851 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,226.9236615 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.412327448 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,28.84096365 +WI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00127986 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,577.8522026 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,51.66171037 +WI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,141.3281917 +WI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,21071.88295 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,111.9023435 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1511.096575 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.7605613 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,67.80818737 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,93.72187076 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.66328362 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00976387 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1067.438295 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.756411483 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,666.222997 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,37.61185413 +WI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.862393 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,406.6779161 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019414862 +WI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,90.90332896 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,523.2447108 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.76861075 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.289342311 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.131640606 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,180.8099425 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,102.5351679 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,46.53683591 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.071748723 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,28.54474885 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,356.2594132 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12511.74126 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,41.41997785 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.690120142 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,38.07234209 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,871.4353959 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,26.17177457 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000644375 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.5621102 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,1061.893269 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,35.23536941 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,289.7182951 +WI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.85655523 +WI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,7.3314013 +WI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,41.71211752 +WI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2901.41978 +WI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1249.396477 +WI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,61.05532184 +WI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,569.2545499 +WI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,134.7820352 +WI,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.737674003 +WI,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.15197129 +WI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,27.46684714 +WI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,13.24174415 +WI,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,7.258339 +WI,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.243282 +WI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,51.42366254 +WI,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,4.1242142 +WI,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.287839 +WI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,22.03933 +WI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,705.4607269 +WI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1973.571133 +WI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,33.47534224 +WI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,55.19169248 +WI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,6246.002968 +WI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,27759.34653 +WI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,62.653009 +WI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,46.19458399 +WI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.38802694 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,35.2930993 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.65159453 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1997.82584 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2483.10319 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,97.535614 +WI,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,4.377053407 +WI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,5.110596 +WI,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.4990345 +WI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,274.972225 +WI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,5.78250984 +WI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,39712.52745 +WI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,157.8 +WI,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,5.015302 +WI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,67.19055124 +WI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,26.39486367 +WI,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,0.0057872 +WI,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.03085326 +WI,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.00260847 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.847466467 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.082901554 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.186276051 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,23.3144803 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,535.2220942 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.08489073 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,37480.52383 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2235.929855 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.033934087 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,910.3376068 +WI,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,1.079846445 +WI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,28.69862544 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.39273 +WI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.005652885 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,17.69746924 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.773242226 +WI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,117.2044905 +WI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.970300607 +WI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,377.2154723 +WI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.22875182 +WI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.71026615 +WI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.020962663 +WI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.130011658 +WI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000860006 +WI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,42.52620561 +WI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.417807674 +WI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.73814876 +WI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.118904304 +WI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.37842047 +WI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,8.326291869 +WI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00294535 +WI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.31001471 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,33.73131064 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.73729288 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,667.1916764 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.660075225 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,167.2427909 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.637422099 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.283170662 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.047592322 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.614372461 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.581785272 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,327.1824194 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,828.39938 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,13.802403 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,53.12422042 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.36551837 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.508179238 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.84133E-05 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.038105523 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,17.14726677 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.219238926 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11.16388718 +WI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.15055198 +WI,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1608.715055 +WI,Sulfur Dioxide,2A6_Other-minerals,,TON,711.3207235 +WI,Sulfur Dioxide,2B_Chemicals-other,,TON,5.2054338 +WI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,345.5398903 +WI,Sulfur Dioxide,2C3_Aluminum-production,,TON,20.75992486 +WI,Sulfur Dioxide,2C7a_Copper-production,,TON,3.1073994 +WI,Sulfur Dioxide,2C7b_Nickel-production,Other_Fuel,TON,8.842394 +WI,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0030099 +WI,Sulfur Dioxide,2D3e_Degreasing,,TON,0.00036 +WI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,621.1292321 +WI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WI,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,3.922768515 +WI,Sulfur Dioxide,3Dc_Other-farm,,TON,130.05474 +WI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.2213688 +WI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,156.6345497 +WI,Sulfur Dioxide,5C_Incineration,biomass,TON,57.7606435 +WI,Sulfur Dioxide,5C_Open-burning-industrial,,TON,6.517555 +WI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,253.057411 +WI,Sulfur Dioxide,5C_Open-burning-residential,,TON,97.844974 +WI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.33719754 +WI,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.000514 +WI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.3991655 +WI,Volatile Organic Compounds,11C_Other-natural,,TON,406127.04 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.02428635 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,216.1938025 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.84580501 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,573.9774712 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.53290226 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,1.0380105 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,93.96413764 +WI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,782.857649 +WI,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.01880791 +WI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.59972835 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,215.6872495 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,382.1679103 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,78.98151875 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,17.96715711 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,657.7855602 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.20435126 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,53.41488857 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.21404759 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.801222835 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,433.2222831 +WI,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.844641115 +WI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,27.12316323 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0006916 +WI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02779463 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,785.8931441 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,492.8015616 +WI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,412.0537225 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,943.7481381 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,40839.6603 +WI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,161.427288 +WI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1960.511771 +WI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,172.9199989 +WI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,227.071833 +WI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.14246097 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2146.794602 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,85.1801967 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1403.44884 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,690.0245449 +WI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1591.02263 +WI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,709.8858774 +WI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.985119616 +WI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,66.75126219 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,32.1858681 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.06179354 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.291370498 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.0208718 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,442.2798727 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,148.3042754 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1471.186508 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,27.98911684 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,41.44461312 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6489.217152 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,12247.8895 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,13.6122017 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.226799975 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,486.9720037 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1018.090261 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,389.2382222 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.105145646 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.7061931 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,40563.57258 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,87.47185407 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,20055.37524 +WI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,723.6669561 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,8.38066799 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,499.4947447 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4765.390296 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6572.164864 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.2935 +WI,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,3.573855 +WI,Volatile Organic Compounds,2A6_Other-minerals,,TON,65.25317494 +WI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,778.9657517 +WI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1701.385359 +WI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1290.295988 +WI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,90.7464314 +WI,Volatile Organic Compounds,2C5_Lead-production,,TON,57.5347313 +WI,Volatile Organic Compounds,2C6_Zinc-production,,TON,6.900365 +WI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,124.169318 +WI,Volatile Organic Compounds,2C7a_Copper-production,,TON,7.44145973 +WI,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,5.51073025 +WI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,25642.28316 +WI,Volatile Organic Compounds,2D3d_Coating-application,,TON,20998.331 +WI,Volatile Organic Compounds,2D3e_Degreasing,,TON,1892.636918 +WI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,110.3601086 +WI,Volatile Organic Compounds,2D3h_Printing,,TON,2768.27112 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3409.966747 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1893.102695 +WI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3186.611602 +WI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,951.8525914 +WI,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,618.8065343 +WI,Volatile Organic Compounds,2I_Wood-processing,,TON,218.4228918 +WI,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1386.619 +WI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,637.32777 +WI,Volatile Organic Compounds,3B3_Manure-swine,,TON,168.695 +WI,Volatile Organic Compounds,3B4_Manure-poultry,,TON,114.05 +WI,Volatile Organic Compounds,3Dc_Other-farm,,TON,33.78571395 +WI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2844.343844 +WI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,29.077049 +WI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,271.1726504 +WI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,888.8152 +WI,Volatile Organic Compounds,5C_Incineration,biomass,TON,160.308561 +WI,Volatile Organic Compounds,5C_Open-burning-dump,,TON,121.017989 +WI,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,7.781 +WI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1768.35289 +WI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,565.254202 +WI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,142.499246 +WI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,78.0160205 +WI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,112.5969815 +WI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.00016563 +WV,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +WV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.34471 +WV,Ammonia,1A1a_Public-Electricity,hard_coal,TON,46.1874868 +WV,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +WV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0 +WV,Ammonia,1A1b_Pet-refining,natural_gas,TON,1.7869 +WV,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.0024528 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.692183821 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.02820265 +WV,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +WV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.29719782 +WV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,7.333173372 +WV,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.759504 +WV,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.113190069 +WV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,8.257410894 +WV,Ammonia,1A2c_Chemicals,natural_gas,TON,16.56 +WV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.478621125 +WV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.055498483 +WV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,7.230394557 +WV,Ammonia,1A3bii_Road-LDV,light_oil,TON,599.6540717 +WV,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.204722814 +WV,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,22.48777895 +WV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.994220847 +WV,Ammonia,1A3biii_Road-bus,light_oil,TON,0.460535998 +WV,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000540946 +WV,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.99545347 +WV,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,7.035099767 +WV,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,21.23665 +WV,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.324163344 +WV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.0553867 +WV,Ammonia,1A3c_Rail,diesel_oil,TON,3.973567504 +WV,Ammonia,1A3c_Rail,light_oil,TON,0.002131795 +WV,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.782670646 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.3096248 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.794914594 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.052110642 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.200826521 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.282271823 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.570454018 +WV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.113673399 +WV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.722127668 +WV,Ammonia,1A4bi_Residential-stationary,biomass,TON,139.9098394 +WV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,5.01899805 +WV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.729000447 +WV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,283.2277576 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.063677041 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.060709067 +WV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00872104 +WV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.956316664 +WV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.143750064 +WV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.819424099 +WV,Ammonia,2A2_Lime-production,Other_Fuel,TON,0.002 +WV,Ammonia,2A6_Other-minerals,Other_Fuel,TON,38.58264 +WV,Ammonia,2B_Chemicals-other,,TON,83.62317147 +WV,Ammonia,2C_Iron-steel-alloy,,TON,8.712199438 +WV,Ammonia,2C7b_Nickel-production,Other_Fuel,TON,0.23 +WV,Ammonia,2D3d_Coating-application,,TON,0.17 +WV,Ammonia,2H1_Pulp-and-paper,,TON,7.56318 +WV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,9.6448 +WV,Ammonia,3B1a_Cattle-dairy,,TON,177.855 +WV,Ammonia,3B1b_Cattle-non-dairy,,TON,1040.748 +WV,Ammonia,3B2_Manure-sheep,,TON,133.96746 +WV,Ammonia,3B3_Manure-swine,,TON,35.005 +WV,Ammonia,3B4_Manure-other,,TON,507.183864 +WV,Ammonia,3B4_Manure-poultry,,TON,1955.183768 +WV,Ammonia,3B4d_Manure-goats,,TON,194.874504 +WV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,652.02326 +WV,Ammonia,3F_Ag-res-on-field,,TON,8.559978 +WV,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,1.04 +WV,Ammonia,5B_Compost-biogas,Other_Fuel,TON,39.44881 +WV,Ammonia,5D1_Wastewater-domestic,,TON,4.72 +WV,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.25044 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,85259.07359 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,78035.21015 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4399.40955 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,304995.3866 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4647.099683 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.349095325 +WV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,234759.8956 +WV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,7187126.458 +WV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,39138.1258 +WV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,349245.213 +WV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,189617.9608 +WV,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,13637.27354 +WV,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,28.5593084 +WV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2022692.329 +WV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,164764.294 +WV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1335846.894 +WV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,59988.75653 +WV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,57415.156 +WV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3747.732388 +WV,Carbon Dioxide,1A3c_Rail,light_oil,TON,166.4964226 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34713.6738 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,47764.53869 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2110.700539 +WV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13987.65576 +WV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,128038.2427 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,130951.6104 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4361.575656 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.380855444 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1069.0812 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,130467.4039 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17701.57141 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,58363.0428 +WV,Carbon Monoxide,11C_Other-natural,,TON,36037.948 +WV,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.102275 +WV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,28.4113282 +WV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9704.7185 +WV,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.00301917 +WV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,59.898039 +WV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,37.7588 +WV,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,135.4762 +WV,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,22.4989713 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,259.6176007 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1905.347757 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,114.2339788 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,238.6472646 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,895.6763938 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,500.6910678 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.805913349 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.109209835 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2057.645084 +WV,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,4.246 +WV,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,512.062547 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1159.082237 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,947.3646513 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078430211 +WV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1631.95147 +WV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2950.854691 +WV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,146240.9201 +WV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,555.634016 +WV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8210.965438 +WV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,421.397871 +WV,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,639.908961 +WV,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.46425827 +WV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3616.634441 +WV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4053.621351 +WV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2208.91163 +WV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2309.85956 +WV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2391.54784 +WV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1285.243963 +WV,Carbon Monoxide,1A3c_Rail,light_oil,TON,37.99939701 +WV,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,679.0946208 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,739.3951494 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.679382329 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.305329919 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1817.798917 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,149.27158 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9898.704029 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,44.92718796 +WV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,47.33027079 +WV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,30290.81575 +WV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,21537.93901 +WV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,25.0949931 +WV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.64500079 +WV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,618.925338 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,409.7678399 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1187.480648 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.042203402 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.449665 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,23307.15187 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,35.11495888 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6677.9668 +WV,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2891.200407 +WV,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,34041.65429 +WV,Carbon Monoxide,2A1_Cement-production,,TON,0.015162 +WV,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,60.53 +WV,Carbon Monoxide,2A6_Other-minerals,,TON,1670.054443 +WV,Carbon Monoxide,2B_Chemicals-other,,TON,324.5088327 +WV,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1539.367899 +WV,Carbon Monoxide,2C3_Aluminum-production,,TON,83.767 +WV,Carbon Monoxide,2D3h_Printing,Other_Fuel,TON,0.44 +WV,Carbon Monoxide,2H1_Pulp-and-paper,,TON,66.852158 +WV,Carbon Monoxide,2H2_Food-and-beverage,,TON,193.6707788 +WV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,576.961834 +WV,Carbon Monoxide,3F_Ag-res-on-field,,TON,104.77996 +WV,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,116.14862 +WV,Carbon Monoxide,5C_Incineration,biomass,TON,0.073092323 +WV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,15923.44282 +WV,Carbon Monoxide,5C_Open-burning-residential,,TON,4599.6017 +WV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,535.29471 +WV,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.820614862 +WV,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11.60255219 +WV,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,52.16021671 +WV,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,12.33271589 +WV,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.68106894 +WV,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.054513678 +WV,Methane,1A3bii_Road-LDV,diesel_oil,TON,11.6430071 +WV,Methane,1A3bii_Road-LDV,light_oil,TON,396.5943508 +WV,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.3282723 +WV,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,23.28478671 +WV,Methane,1A3biii_Road-bus,diesel_oil,TON,5.314659864 +WV,Methane,1A3biii_Road-bus,light_oil,TON,1.070422762 +WV,Methane,1A3biii_Road-bus,natural_gas,TON,0.197491881 +WV,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,154.7519281 +WV,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,6.541719478 +WV,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.05306837 +WV,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.421239092 +WV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.7812049 +WV,Methane,1A3c_Rail,diesel_oil,TON,0.160933452 +WV,Methane,1A3c_Rail,light_oil,TON,0.123438044 +WV,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.122922467 +WV,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,36.27788853 +WV,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,29.46955589 +WV,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.495855672 +WV,Methane,1A4bi_Residential-mobile,light_oil,TON,135.2345621 +WV,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.699980077 +WV,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.761210498 +WV,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.036325 +WV,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.046047525 +WV,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,241.5814945 +WV,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.459827712 +WV,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,60.3615527 +WV,Nitrogen Oxides,11C_Other-natural,,TON,3581.6837 +WV,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.28743 +WV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,126.2499875 +WV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,70444.3 +WV,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.805112 +WV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,123.321863 +WV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,49.5123 +WV,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,326.7365 +WV,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,8.536339 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,447.9452327 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,254.1691952 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16.83439226 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,199.8466582 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4070.711731 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3521.145088 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,52.27515645 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,3.094700911 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9347.524148 +WV,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,17.463 +WV,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,154.203092 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1897.447602 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,14.86259236 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092479 +WV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,515.7308105 +WV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,874.4960646 +WV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,18140.44434 +WV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,159.02076 +WV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,842.6486937 +WV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1346.787165 +WV,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,62.31593017 +WV,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.0963944 +WV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11249.12365 +WV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,481.625842 +WV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7398.32926 +WV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,201.9253159 +WV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,122.918166 +WV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7405.853952 +WV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.482250779 +WV,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3511.491524 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,270.6212339 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.03265199 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.225460597 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5407.293176 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,272.466511 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,161.8870924 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11.37923999 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,110.9954139 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,336.2720535 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,336.0307689 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,90.3419819 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,13.12199903 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1517.743442 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,890.7259967 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,17.4608759 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009434499 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.189827 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,284.2970293 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,185.5573103 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,428.912756 +WV,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,2323.004879 +WV,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23598.94234 +WV,Nitrogen Oxides,2A1_Cement-production,,TON,0.0703836 +WV,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,257.23 +WV,Nitrogen Oxides,2A6_Other-minerals,,TON,1899.466522 +WV,Nitrogen Oxides,2B_Chemicals-other,,TON,313.8489507 +WV,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1420.4761 +WV,Nitrogen Oxides,2C3_Aluminum-production,,TON,139.606 +WV,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,177.3888 +WV,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,30.340498 +WV,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2.606558 +WV,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,29.5129 +WV,Nitrogen Oxides,5C_Incineration,biomass,TON,11.1221214 +WV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,471.107604 +WV,Nitrogen Oxides,5C_Open-burning-residential,,TON,324.67775 +WV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,23.7908763 +WV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.641445333 +WV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,324.1843767 +WV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.127987814 +WV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.64304664 +WV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.33451863 +WV,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.467030207 +WV,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.030881139 +WV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.804807501 +WV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.012094286 +WV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.936603326 +WV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.979179953 +WV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.64177309 +WV,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.10763315 +WV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.298805856 +WV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2384.7226 +WV,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.00393407 +WV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,22.83897111 +WV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1.5094 +WV,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,13.348385 +WV,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.04519352 +WV,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.04407313 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8.367374421 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,284.2837049 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,588.0986252 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.713001722 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.1616283 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,175.1567699 +WV,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,12.715 +WV,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,6.59133155 +WV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,44504.1549 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,612.9994153 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.956838709 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065815175 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.45302841 +WV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.42052206 +WV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.78732026 +WV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.094209005 +WV,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,37.95045258 +WV,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,216.6371611 +WV,PM10 Filterable,2A1_Cement-production,,TON,106.24251 +WV,PM10 Filterable,2A2_Lime-production,,TON,97.78 +WV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,6381.58537 +WV,PM10 Filterable,2A6_Other-minerals,,TON,10089.40035 +WV,PM10 Filterable,2B_Chemicals-other,,TON,272.242089 +WV,PM10 Filterable,2C_Iron-steel-alloy,,TON,415.3169614 +WV,PM10 Filterable,2C3_Aluminum-production,,TON,44.125 +WV,PM10 Filterable,2C7_Other-metal,,TON,140.9498557 +WV,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,22.679008 +WV,PM10 Filterable,2D3d_Coating-application,,TON,1.363259 +WV,PM10 Filterable,2D3e_Degreasing,,TON,0 +WV,PM10 Filterable,2D3h_Printing,Other_Fuel,TON,0.44 +WV,PM10 Filterable,2H1_Pulp-and-paper,,TON,159.4890752 +WV,PM10 Filterable,2H2_Food-and-beverage,,TON,42.87982521 +WV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,259.8971975 +WV,PM10 Filterable,2I_Wood-processing,,TON,2.66967 +WV,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,5316.764302 +WV,PM10 Filterable,3Dc_Other-farm,,TON,10957.48797 +WV,PM10 Filterable,5A_Solid-waste-disposal,,TON,0 +WV,PM10 Filterable,5C_Incineration,biomass,TON,0.0037 +WV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1601.76663 +WV,PM10 Filterable,5C_Open-burning-residential,,TON,1499.55399 +WV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,88.642304 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.11848065 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.235495508 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6998.2995 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0105214 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,34.7425635 +WV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.8674 +WV,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,21.3176 +WV,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.18074513 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31.8593262 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.18111398 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.536559574 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,29.43048943 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,312.8502748 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,931.1801086 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.61070447 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.395445826 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,437.0120367 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,25.43 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,15.3754936 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,171.3669916 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.187339761 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +WV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,54.91666139 +WV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,44504.1549 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,50.36314201 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,778.6128062 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.50284953 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,39.69655601 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,85.15735237 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.424935737 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.004735778 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,667.2173637 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,20.86747519 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,450.942384 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.043863649 +WV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.3072626 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,238.3178816 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021192899 +WV,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,90.13427368 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,635.1285659 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.098585787 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.148385055 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,40.20327489 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,24.21987975 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.34750644 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.265935966 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.855490765 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,113.5285674 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2964.805746 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,11.94522305 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.735019516 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.04494143 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,71.57400613 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.34016264 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.81209E-05 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.2175256 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,238.1445504 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.913268255 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,27.10522664 +WV,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,43.38924548 +WV,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,447.0101403 +WV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,106.24251 +WV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,150.28 +WV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6381.58537 +WV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,10195.95501 +WV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,368.9724629 +WV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,813.7475625 +WV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,70.416 +WV,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,140.9498557 +WV,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,22.679008 +WV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.363259 +WV,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +WV,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.88 +WV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,196.231578 +WV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,502.6821552 +WV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,259.9892375 +WV,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.66967 +WV,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,5316.764302 +WV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,10957.48797 +WV,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,18.032925 +WV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +WV,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.6922693 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1601.76663 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1499.55399 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,88.642304 +WV,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.09631472 +WV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.524540643 +WV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1592.4192 +WV,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.00393407 +WV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,11.66073603 +WV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1.5094 +WV,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,13.348385 +WV,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.04439352 +WV,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.04407313 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6.007955594 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,258.7974677 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,109.7850502 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.442798912 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.055741181 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,137.8397244 +WV,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,12.715 +WV,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,5.09750155 +WV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4981.29633 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,526.4903222 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.432601444 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.050560884 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.664545534 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.16577243 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.605069944 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.701815911 +WV,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,37.35750173 +WV,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,216.4834611 +WV,PM2.5 Filterable,2A1_Cement-production,,TON,36.379502 +WV,PM2.5 Filterable,2A2_Lime-production,,TON,23.03 +WV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,638.158537 +WV,PM2.5 Filterable,2A6_Other-minerals,,TON,1546.649253 +WV,PM2.5 Filterable,2B_Chemicals-other,,TON,155.905965 +WV,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,208.37774 +WV,PM2.5 Filterable,2C3_Aluminum-production,,TON,39.829 +WV,PM2.5 Filterable,2C7_Other-metal,,TON,79.20526957 +WV,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,14.382408 +WV,PM2.5 Filterable,2D3d_Coating-application,,TON,1.34963 +WV,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +WV,PM2.5 Filterable,2D3h_Printing,Other_Fuel,TON,0.44 +WV,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,132.8301166 +WV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.052428468 +WV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,86.72006357 +WV,PM2.5 Filterable,2I_Wood-processing,,TON,1.30967 +WV,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,984.799179 +WV,PM2.5 Filterable,3Dc_Other-farm,,TON,2191.498049 +WV,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +WV,PM2.5 Filterable,5C_Incineration,biomass,TON,0.0037 +WV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1234.801913 +WV,PM2.5 Filterable,5C_Open-burning-residential,,TON,1373.27545 +WV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,68.334615 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.10716222 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.461230576 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6205.9936 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0105214 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,23.5643285 +WV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.8674 +WV,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,21.3176 +WV,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.17994513 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,30.90243092 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.155631971 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.536455911 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,27.07200035 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,287.2416369 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,453.0086232 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.338286465 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.289598795 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,399.67614 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,25.43 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,13.8816636 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,166.2259948 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.616963841 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +WV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,49.25647515 +WV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4981.29633 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,38.5265072 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,355.7824071 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.92242319 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.10245109 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,66.61820592 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.348178961 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.001714628 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,491.8219454 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.901748456 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,338.722079 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.011182428 +WV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.98758553 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,220.0906716 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019539793 +WV,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,87.43027282 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,548.6675302 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.570809617 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.133052689 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.37071112 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23.49328044 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.39635812 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.265935966 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.619828159 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,104.4502117 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2941.956019 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,10.69047355 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.552769382 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.65255047 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,69.42678345 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,11.35296065 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.81209E-05 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.1810019 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,219.093428 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.795868683 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,24.93681661 +WV,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,42.79638933 +WV,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,446.8564403 +WV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,36.379502 +WV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,75.53 +WV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,638.158537 +WV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1653.203907 +WV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,252.6363359 +WV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,606.8085624 +WV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,66.12 +WV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,79.20526957 +WV,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,14.382408 +WV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.34963 +WV,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +WV,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,0.88 +WV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,169.5726194 +WV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,461.8547579 +WV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,86.81210357 +WV,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,1.30967 +WV,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,984.799179 +WV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2191.498049 +WV,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,13.213967 +WV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +WV,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.6922693 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1234.801913 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1373.27545 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,68.334615 +WV,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.0965 +WV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,23.0838975 +WV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,94264.4 +WV,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.277215 +WV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.95225955 +WV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,13.3423 +WV,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,178.8178 +WV,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0169077 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.092188901 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.438265344 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.026462174 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,99.01063799 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,352.9200692 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,9349.309293 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,140.4956028 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,6.272525113 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3873.727913 +WV,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.013 +WV,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,100.6144946 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.429122243 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.077066397 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54392E-06 +WV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,53.22370846 +WV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.051974321 +WV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,131.0669748 +WV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.34089852 +WV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.124926585 +WV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.650793714 +WV,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.252913367 +WV,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000151208 +WV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17.448324 +WV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.044078895 +WV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.56716627 +WV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.080791036 +WV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.05168774 +WV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.487434616 +WV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002964418 +WV,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.681300187 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,33.5958068 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.51105367 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.954999447 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.604217269 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.405650174 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.807242381 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.011824771 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.164036769 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.326977032 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,59.88547609 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,213.809476 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,31.0554004 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.28262958 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.485601901 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.079379272 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.12186E-06 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01262796 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.368224825 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.564117198 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.062151047 +WV,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,41.37566451 +WV,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,64.87993432 +WV,Sulfur Dioxide,2A1_Cement-production,,TON,0.0046284 +WV,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.32 +WV,Sulfur Dioxide,2A6_Other-minerals,,TON,1561.343887 +WV,Sulfur Dioxide,2B_Chemicals-other,,TON,54.60458021 +WV,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1356.942189 +WV,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.596 +WV,Sulfur Dioxide,2C7b_Nickel-production,Other_Fuel,TON,5.9 +WV,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,14.3579642 +WV,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,57.194445 +WV,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.556693 +WV,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,8.8287 +WV,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +WV,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,156.4077636 +WV,Sulfur Dioxide,5C_Open-burning-residential,,TON,54.11297 +WV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.14053002 +WV,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.27 +WV,Volatile Organic Compounds,11C_Other-natural,,TON,385060.73 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.0158254 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.965577214 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,930.5245 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.000375109 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,8.3720794 +WV,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.258794908 +WV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,137.9969575 +WV,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,18.72758 +WV,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,31.01063494 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.81409725 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,54.91456853 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.29320531 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,25.4417932 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,270.0418003 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,20.15343773 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.217944886 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.488979162 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,440.1403003 +WV,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.119 +WV,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,19.9561515 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,244.4185206 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,65.62288113 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783827 +WV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,270.6484222 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,317.3652231 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,12822.00979 +WV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,54.0151788 +WV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,605.4682799 +WV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,94.20903344 +WV,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,26.96508269 +WV,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.022596425 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,955.2167894 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,160.8213279 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,465.43066 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,108.1250563 +WV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,308.47068 +WV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,384.4828967 +WV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.029874188 +WV,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,39.76780127 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,20.84643554 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.434464894 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.020888122 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,929.8496464 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34.3254664 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,370.7728299 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.370214144 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,11.06596223 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2079.393086 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3270.384736 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,3.51329931 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.510300134 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,85.0907154 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,81.69158246 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,114.7739283 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007852105 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2234973 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,7416.494565 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.432499738 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1836.130364 +WV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,7749.162486 +WV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,126.9403163 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,78.48111483 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,238.7843282 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1526.316179 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2871.677069 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.852 +WV,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,93981.79271 +WV,Volatile Organic Compounds,2A1_Cement-production,,TON,0.005586 +WV,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,9.8 +WV,Volatile Organic Compounds,2A6_Other-minerals,,TON,493.3077221 +WV,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1957.795398 +WV,Volatile Organic Compounds,2B_Chemicals-other,,TON,1940.818333 +WV,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,180.1399573 +WV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,327.906 +WV,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,23.6299 +WV,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,5.9 +WV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,8276.30134 +WV,Volatile Organic Compounds,2D3d_Coating-application,,TON,4470.157766 +WV,Volatile Organic Compounds,2D3e_Degreasing,,TON,853.901427 +WV,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.0799998 +WV,Volatile Organic Compounds,2D3h_Printing,,TON,1833.115152 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,352.62074 +WV,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,226.4289579 +WV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,203.9491043 +WV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,293.8017183 +WV,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,14.289 +WV,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,83.564 +WV,Volatile Organic Compounds,3B3_Manure-swine,,TON,2.809 +WV,Volatile Organic Compounds,3B4_Manure-poultry,,TON,156.651 +WV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,148.1374387 +WV,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,6.324245 +WV,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,88.4602422 +WV,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,279.12974 +WV,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +WV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1092.969499 +WV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,312.61272 +WV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,99.836708 +WV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,24.89 +WV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,97.6112478 +WV,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,1.0459251 +WV,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,24.49 +WY,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +WY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0 +WY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,132.071382 +WY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.268315 +WY,Ammonia,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Ammonia,1A1b_Pet-refining,light_oil,TON,0 +WY,Ammonia,1A1b_Pet-refining,natural_gas,TON,4.597378 +WY,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.102912 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.139124575 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.004270905 +WY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +WY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +WY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +WY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +WY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,16.42414178 +WY,Ammonia,1A2c_Chemicals,natural_gas,TON,0 +WY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.266587098 +WY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.032733592 +WY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,12.07669759 +WY,Ammonia,1A3bii_Road-LDV,light_oil,TON,266.5888278 +WY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.1283142 +WY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.84949714 +WY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.534634212 +WY,Ammonia,1A3biii_Road-bus,light_oil,TON,0.317909363 +WY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.00694922 +WY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.719574726 +WY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.1253893 +WY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.97155617 +WY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.6414982 +WY,Ammonia,1A3c_Rail,diesel_oil,TON,15.8772841 +WY,Ammonia,1A3c_Rail,light_oil,TON,0.004288706 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.137817046 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.27837869 +WY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.027307193 +WY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.437506318 +WY,Ammonia,1A4bi_Residential-stationary,biomass,TON,31.73008478 +WY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.440999875 +WY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,133.4259211 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.745583974 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.046995823 +WY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002462341 +WY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.58562731 +WY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.068091053 +WY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.387951002 +WY,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +WY,Ammonia,2A1_Cement-production,,TON,0 +WY,Ammonia,2A2_Lime-production,,TON,0 +WY,Ammonia,2A6_Other-minerals,,TON,0 +WY,Ammonia,2B_Chemicals-other,,TON,205.87023 +WY,Ammonia,2C_Iron-steel-alloy,,TON,0 +WY,Ammonia,2H1_Pulp-and-paper,,TON,0 +WY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,14.48 +WY,Ammonia,2I_Wood-processing,,TON,0 +WY,Ammonia,3B1a_Cattle-dairy,,TON,70.43 +WY,Ammonia,3B1b_Cattle-non-dairy,,TON,4128.625 +WY,Ammonia,3B2_Manure-sheep,,TON,1439.98668 +WY,Ammonia,3B3_Manure-swine,,TON,542.808 +WY,Ammonia,3B4_Manure-other,,TON,1081.872 +WY,Ammonia,3B4_Manure-poultry,,TON,6.6226692 +WY,Ammonia,3B4d_Manure-goats,,TON,58.53672 +WY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1549.304038 +WY,Ammonia,3F_Ag-res-on-field,,TON,62.638608 +WY,Ammonia,5A_Solid-waste-disposal,,TON,0 +WY,Ammonia,5B_Compost-biogas,Other_Fuel,TON,12.4541 +WY,Ammonia,5C_Incineration,biomass,TON,0 +WY,Ammonia,5D1_Wastewater-domestic,,TON,1.4966649 +WY,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,59.73 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,17136.31253 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11817.44683 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,665.3380078 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,155927.4757 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2743.155505 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.34909808 +WY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,405998.5102 +WY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3125046.477 +WY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,71403.267 +WY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,319867.4321 +WY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,32629.13453 +WY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,9274.909164 +WY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1931711.565 +WY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,16801.9787 +WY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,937635.18 +WY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,25624.525 +WY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13745.643 +WY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7539.5953 +WY,Carbon Dioxide,1A3c_Rail,light_oil,TON,334.8909406 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16948.707 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,23304.41307 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1045.679226 +WY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3360.188566 +WY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,32527.31456 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,214865.8704 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3524.78229 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.7589892 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,301.85866 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,107716.6469 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8384.829831 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,27631.596 +WY,Carbon Monoxide,11C_Other-natural,,TON,118412.73 +WY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0 +WY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,68.332905 +WY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,16790.14 +WY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,40.53743499 +WY,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Carbon Monoxide,1A1b_Pet-refining,light_oil,TON,0 +WY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,712.2890476 +WY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,419.0206012 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,95.26035686 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,298.3159397 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,17.99833891 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,101.5010982 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,347.6552913 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1325.333859 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.318790055 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.010020395 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6172.604458 +WY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,57.51 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,495.7197644 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,552.5591889 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.07843037 +WY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1233.875775 +WY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4507.31345 +WY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,82024.93834 +WY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,507.02157 +WY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7310.723221 +WY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,91.2587958 +WY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,537.8205571 +WY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3748.343304 +WY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,416.1583064 +WY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1478.88691 +WY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1118.37197 +WY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,602.9372 +WY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,5113.505419 +WY,Carbon Monoxide,1A3c_Rail,light_oil,TON,75.55898545 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.70989625 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,75.1776716 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,53.06326715 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,72.84745507 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4770.335811 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.03606055 +WY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,11.36427547 +WY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,7637.329552 +WY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4995.696749 +WY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.204999265 +WY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,325.549173 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,746.5105254 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,768.0886505 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.084105142 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.3766839 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,12760.88715 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,16.6329544 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3150.18947 +WY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,7520.206781 +WY,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.022 +WY,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5226.81228 +WY,Carbon Monoxide,2A1_Cement-production,,TON,83.24 +WY,Carbon Monoxide,2A2_Lime-production,,TON,0 +WY,Carbon Monoxide,2A6_Other-minerals,,TON,5833.747 +WY,Carbon Monoxide,2B_Chemicals-other,,TON,15591.81054 +WY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0 +WY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +WY,Carbon Monoxide,2H2_Food-and-beverage,,TON,115.8990888 +WY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.4304 +WY,Carbon Monoxide,2I_Wood-processing,,TON,0 +WY,Carbon Monoxide,3F_Ag-res-on-field,,TON,729.68724 +WY,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0 +WY,Carbon Monoxide,5C_Incineration,biomass,TON,0.768324747 +WY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3163.975993 +WY,Carbon Monoxide,5C_Open-burning-residential,,TON,994.39901 +WY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,55.587657 +WY,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.09 +WY,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.58296448 +WY,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.75992217 +WY,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.904500971 +WY,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,5.247183299 +WY,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.203148018 +WY,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.05451379 +WY,Methane,1A3bii_Road-LDV,diesel_oil,TON,18.70877493 +WY,Methane,1A3bii_Road-LDV,light_oil,TON,201.5686398 +WY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.0362945 +WY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,22.41058939 +WY,Methane,1A3biii_Road-bus,diesel_oil,TON,1.280782489 +WY,Methane,1A3biii_Road-bus,light_oil,TON,1.135444043 +WY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,288.8740037 +WY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.716723328 +WY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.5934362 +WY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.1776348 +WY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.3926332 +WY,Methane,1A3c_Rail,diesel_oil,TON,0.323709941 +WY,Methane,1A3c_Rail,light_oil,TON,0.252785708 +WY,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.548097013 +WY,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,18.03063169 +WY,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.39421297 +WY,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.118996848 +WY,Methane,1A4bi_Residential-mobile,light_oil,TON,34.97385599 +WY,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.984107287 +WY,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.493380013 +WY,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.072390341 +WY,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012937828 +WY,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,124.9777486 +WY,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.217799967 +WY,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,28.688219 +WY,Nitrogen Oxides,11C_Other-natural,,TON,16930.017 +WY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +WY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,68.7953992 +WY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,41543.72 +WY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,33.7508497 +WY,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Nitrogen Oxides,1A1b_Pet-refining,light_oil,TON,0 +WY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,736.1250628 +WY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,486.6765745 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,98.29309997 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39.53102069 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.617258986 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,31.18667089 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,509.3845754 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6492.979705 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.489231756 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.120148103 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,11521.35068 +WY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,119.82 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,894.7599971 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,9.292750516 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015092525 +WY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,260.644442 +WY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1609.113878 +WY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,9971.438766 +WY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,248.12066 +WY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,819.3960564 +WY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,241.443232 +WY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,55.63755439 +WY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13532.44249 +WY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,53.60313315 +WY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5394.15165 +WY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,86.974966 +WY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,32.287646 +WY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,28885.6675 +WY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.03306144 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,64.49356501 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,120.7770643 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.040894418 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.29482625 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,133.0286138 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,83.67984308 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.564798068 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,26.66268893 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,90.86405201 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,92.4622985 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,7.9379974 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,835.81846 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1603.172474 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,18.6359139 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018801573 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.6022971 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,213.7198415 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,87.89611031 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,209.6806455 +WY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,14420.24195 +WY,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.086 +WY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8320.194854 +WY,Nitrogen Oxides,2A1_Cement-production,,TON,1876.94 +WY,Nitrogen Oxides,2A2_Lime-production,,TON,0 +WY,Nitrogen Oxides,2A6_Other-minerals,,TON,5077.846432 +WY,Nitrogen Oxides,2B_Chemicals-other,,TON,1219.481738 +WY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0 +WY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,0 +WY,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2.4652 +WY,Nitrogen Oxides,2I_Wood-processing,,TON,0 +WY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,19.145135 +WY,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +WY,Nitrogen Oxides,5C_Incineration,biomass,TON,3.16900839 +WY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,93.6087801 +WY,Nitrogen Oxides,5C_Open-burning-residential,,TON,70.192842 +WY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.4705628 +WY,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.107 +WY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.144451714 +WY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,160.9362075 +WY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.22198643 +WY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.96461284 +WY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.082062197 +WY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.373007958 +WY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.710862905 +WY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.514266468 +WY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.36736449 +WY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.0464196 +WY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.24538877 +WY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.011006309 +WY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.52287217 +WY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2737.514271 +WY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.169049489 +WY,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM10 Filterable,1A1b_Pet-refining,light_oil,TON,0 +WY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,634.8285963 +WY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,11.85745474 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,16.7758388 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,42.05306999 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1048.71866 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.353782477 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,256.5660822 +WY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.3 +WY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,107595.4992 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.586958454 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,20.87251554 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.328819602 +WY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.47627991 +WY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.62728045 +WY,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,467.0013348 +WY,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,68.21044061 +WY,PM10 Filterable,2A1_Cement-production,,TON,309.1564 +WY,PM10 Filterable,2A2_Lime-production,,TON,145.1873829 +WY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,6458.30648 +WY,PM10 Filterable,2A6_Other-minerals,,TON,13758.99581 +WY,PM10 Filterable,2B_Chemicals-other,,TON,2410.707189 +WY,PM10 Filterable,2C_Iron-steel-alloy,,TON,10.5638 +WY,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,81.9024 +WY,PM10 Filterable,2D3d_Coating-application,,TON,17.24 +WY,PM10 Filterable,2H1_Pulp-and-paper,,TON,25.546895 +WY,PM10 Filterable,2H2_Food-and-beverage,,TON,400.0886593 +WY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1172.262338 +WY,PM10 Filterable,2I_Wood-processing,,TON,2.13 +WY,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,14585.1504 +WY,PM10 Filterable,3Dc_Other-farm,,TON,29013.172 +WY,PM10 Filterable,5A_Solid-waste-disposal,,TON,662.34 +WY,PM10 Filterable,5C_Incineration,biomass,TON,0.26 +WY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,318.2698423 +WY,PM10 Filterable,5C_Open-burning-residential,,TON,324.19199 +WY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,9.2050481 +WY,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00516522 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.01100636 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.126672747 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2711.971418 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3.968106705 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,light_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,752.7127774 +WY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,25.3785952 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.594217551 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.273643079 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.08360224 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,17.3788486 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,44.23017914 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1139.865472 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.400152768 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.231233603 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,445.3772787 +WY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.3 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,76.18364131 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.237543238 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +WY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,34.74119239 +WY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,107595.4992 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,95.70329317 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,455.1718852 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.056539 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,41.07858722 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,16.57156452 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.431215852 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,503.6957142 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.301243819 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,288.059572 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.0820205 +WY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.4664681 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,933.4152882 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.042618503 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.983930512 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,24.30576851 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.72176298 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.82070444 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.035848879 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.131879069 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.885879967 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,28.33553073 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,670.563758 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.049579845 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.2309293 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,129.2482184 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.802098586 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.58978E-05 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.34160525 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,145.2503525 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.85355739 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,12.83281152 +WY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,709.9673286 +WY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,214.7469135 +WY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,321.15 +WY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,161.9419627 +WY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6458.30648 +WY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,13845.17314 +WY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,2473.368319 +WY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,10.5638 +WY,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,81.9024 +WY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,17.24 +WY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,25.546895 +WY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,688.6204338 +WY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1172.30486 +WY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.13 +WY,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,14585.1504 +WY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,29013.172 +WY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,128.306698 +WY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,662.34 +WY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.404730725 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,318.2698423 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,324.19199 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,9.2050481 +WY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.008 +WY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.001 +WY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.468598072 +WY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,884.49906 +WY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.005098111 +WY,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM2.5 Filterable,1A1b_Pet-refining,light_oil,TON,0 +WY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,185.9609963 +WY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.89316074 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,15.96849802 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.65849176 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,257.7248318 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.201591985 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,187.58139 +WY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.281 +WY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11182.02724 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.369807641 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.1118279 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.060505058 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.366029991 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.89500402 +WY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,390.2617848 +WY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,67.64044061 +WY,PM2.5 Filterable,2A1_Cement-production,,TON,0 +WY,PM2.5 Filterable,2A2_Lime-production,,TON,20.209044 +WY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,645.830648 +WY,PM2.5 Filterable,2A6_Other-minerals,,TON,1827.901662 +WY,PM2.5 Filterable,2B_Chemicals-other,,TON,919.6813835 +WY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0.021 +WY,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,73 +WY,PM2.5 Filterable,2D3d_Coating-application,,TON,0.2 +WY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,0.770405 +WY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,164.9192304 +WY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,407.3193544 +WY,PM2.5 Filterable,2I_Wood-processing,,TON,0 +WY,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3018.24427 +WY,PM2.5 Filterable,3Dc_Other-farm,,TON,5802.6336 +WY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,67.45 +WY,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +WY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,245.3542395 +WY,PM2.5 Filterable,5C_Open-burning-residential,,TON,296.89168 +WY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,7.0962029 +WY,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.00516522 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.001 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.0714584 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1129.5032 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3.803105556 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,303.8451774 +WY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,22.4143012 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.393000124 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.268046128 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.083463507 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,16.57259105 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,25.83330617 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,348.7752551 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.247964214 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.232557922 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,399.3282465 +WY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.281 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,73.89810583 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.901277686 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00015959 +WY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,30.10364054 +WY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11182.02724 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,72.2447811 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,234.7305883 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.753469 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.08350309 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,12.41325972 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.463558943 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,404.9307958 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.033705762 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,217.813142 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.086178 +WY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.0035562 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,860.0454854 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039293674 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.02783943 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,13.54496558 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.192503994 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.4660798 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.570835434 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.131879069 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.829307345 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,26.06963339 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,662.56683 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.93933019 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.49865446 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,125.3708172 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.657972392 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.58978E-05 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.33135708 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,133.630411 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.797950972 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,11.80618516 +WY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,618.1519646 +WY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,213.1219135 +WY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,11.99365 +WY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,36.9636358 +WY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,645.830648 +WY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1914.37 +WY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1326.687421 +WY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.021 +WY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,73 +WY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.2 +WY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0.770405 +WY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,453.4510279 +WY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,407.3618762 +WY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0 +WY,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3018.24427 +WY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5802.6336 +WY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,89.558436 +WY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,67.45 +WY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,245.3542395 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,296.89168 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.0962029 +WY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.008 +WY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +WY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.95085341 +WY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,36925.68 +WY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1.296912598 +WY,Sulfur Dioxide,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Sulfur Dioxide,1A1b_Pet-refining,light_oil,TON,0 +WY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,719.8665698 +WY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,3527.453807 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.343607124 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.098057518 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.006243729 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,94.0516573 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,143.2410243 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7907.816461 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,246.2309992 +WY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.41 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.72904483 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.045466378 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.54393E-06 +WY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,28.83778168 +WY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.559020388 +WY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,57.27936434 +WY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.61999076 +WY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.866146213 +WY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.285389988 +WY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.16989015 +WY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16.66238445 +WY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.307857751 +WY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.1129379 +WY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.46947406 +WY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.25240918 +WY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,17.94825167 +WY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005963451 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.298287065 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,154.7649061 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.110007347 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.034664459 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.198052725 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.393903525 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.005858276 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.039402823 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.59123349 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,11.80326996 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,18.78659845 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.88184146 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.475040631 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.064184473 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.22856E-06 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003564002 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.956952672 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.267209261 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.502868441 +WY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1946.275701 +WY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1758.043617 +WY,Sulfur Dioxide,2A1_Cement-production,,TON,238.93 +WY,Sulfur Dioxide,2A2_Lime-production,,TON,0 +WY,Sulfur Dioxide,2A6_Other-minerals,,TON,1142.722058 +WY,Sulfur Dioxide,2B_Chemicals-other,,TON,1162.537993 +WY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0 +WY,Sulfur Dioxide,2D3d_Coating-application,,TON,0.03 +WY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0.16036 +WY,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WY,Sulfur Dioxide,2I_Wood-processing,,TON,0 +WY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,4.704448 +WY,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +WY,Sulfur Dioxide,5C_Incineration,biomass,TON,0.34131988 +WY,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,31.07810382 +WY,Sulfur Dioxide,5C_Open-burning-residential,,TON,11.6988025 +WY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.5338178 +WY,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.001 +WY,Volatile Organic Compounds,11C_Other-natural,,TON,539514.9 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.81929129 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,672.153 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,22.04029845 +WY,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,946.0867075 +WY,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,2795.521949 +WY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1723.362115 +WY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,727.237345 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.401208746 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.63583615 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.734297386 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,15.27810975 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.61771191 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,61.67364984 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2208.986861 +WY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,3.77 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,99.6650844 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,38.41731815 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011783845 +WY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,138.0143798 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,505.8436508 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,6873.964941 +WY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,66.375958 +WY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,566.4329862 +WY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,23.40746149 +WY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,26.53979497 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1169.822702 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,16.54096654 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,304.737315 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,54.440399 +WY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,115.718057 +WY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1477.799999 +WY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.051168784 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.567725431 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.553137523 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.903837046 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.75268685 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,178.5137117 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.111489404 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.656763481 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,518.2649699 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,749.3483912 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.308699924 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,44.7502048 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,146.335282 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,37.47109084 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015648088 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6247261 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4958.173458 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.467964097 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,814.2988518 +WY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,62426.01709 +WY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,186.2088883 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,31.66410715 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,346.3550149 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,173.40379 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2198.346067 +WY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,147445.6319 +WY,Volatile Organic Compounds,2A1_Cement-production,,TON,82.37 +WY,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +WY,Volatile Organic Compounds,2A6_Other-minerals,,TON,502.96106 +WY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +WY,Volatile Organic Compounds,2B_Chemicals-other,,TON,2667.969015 +WY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0 +WY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2604.09086 +WY,Volatile Organic Compounds,2D3d_Coating-application,,TON,1405.84463 +WY,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,302.60905 +WY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.8599998 +WY,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,258.7642 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,92.41486271 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,517.4893553 +WY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,0 +WY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,31.0444232 +WY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,114.8464 +WY,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +WY,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,5.656 +WY,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,331.501 +WY,Volatile Organic Compounds,3B3_Manure-swine,,TON,43.575 +WY,Volatile Organic Compounds,3B4_Manure-poultry,,TON,0.345 +WY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,260.100008 +WY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,43.2974 +WY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0 +WY,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,88.1221 +WY,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.032679029 +WY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,217.1722579 +WY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,67.584462 +WY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,10.3675386 +WY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,7.84 +WY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,75.813 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2017.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2017.csv new file mode 100644 index 0000000000..fc19c6d727 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_emissions_to_CEDS_adj_2017.csv @@ -0,0 +1,42724 @@ +# File: NEI_emissions_to_CEDS_adj_2017.csv +# Title: NEI emissions aggregated to states / pollutants / and extended CEDS sectors for 2017 +# Units: TON +# Source: NEI 2017 version 1 accessible from: https://www.epa.gov/air-emissions-inventories/2017-national-emissions-inventory-nei-data#datas +# Comments: This data is pre-processed exogenously in a script available here: https://stash.pnnl.gov/projects/JGCRI/repos/gcam-core-data-proc_usnei_to_gcam/browse +# Column types: cccccn +# ---------- +state,pollutant,CEDS_Sector,CEDS_Fuel,unit,emissions +AK,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,23.8466 +AK,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0 +AK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,38.1796 +AK,Ammonia,1A1b_Pet-refining,diesel_oil,TON,0 +AK,Ammonia,1A1b_Pet-refining,natural_gas,TON,8.9604 +AK,Ammonia,1A1g_Other-energy-transf,diesel_oil,TON,0 +AK,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.0234 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.110796085 +AK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.013123202 +AK,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.391450169 +AK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.9924 +AK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.089395872 +AK,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.0286 +AK,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,85.04433465 +AK,Ammonia,1A2c_Chemicals,diesel_oil,TON,0 +AK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.732721862 +AK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.051883646 +AK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,6.173384486 +AK,Ammonia,1A3bii_Road-LDV,light_oil,TON,156.6349573 +AK,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.808123506 +AK,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.351543651 +AK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.542624774 +AK,Ammonia,1A3biii_Road-bus,light_oil,TON,5.077356641 +AK,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.004780588 +AK,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.333263331 +AK,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.30765299 +AK,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.566198805 +AK,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.179882745 +AK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.010527995 +AK,Ammonia,1A3c_Rail,diesel_oil,TON,0.148223823 +AK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.902057323 +AK,Ammonia,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,3.685764133 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.790755656 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.12141043 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.02 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.063037624 +AK,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.555176253 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.116315757 +AK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.16867164 +AK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.022715132 +AK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.447885737 +AK,Ammonia,1A4bi_Residential-stationary,biomass,TON,408.5081529 +AK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,26.16600001 +AK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.22275001 +AK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,202.5586813 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.37608279 +AK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.019927919 +AK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002611458 +AK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.519764302 +AK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.091854823 +AK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.614278786 +AK,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +AK,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +AK,Ammonia,2A6_Other-minerals,,TON,0 +AK,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.15 +AK,Ammonia,2D3d_Coating-application,,TON,0 +AK,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.4197 +AK,Ammonia,2H3_Other-industrial-processes,biomass,TON,0 +AK,Ammonia,3B1a_Cattle-dairy,,TON,8.3615432 +AK,Ammonia,3B1b_Cattle-non-dairy,,TON,69.558888 +AK,Ammonia,3B2_Manure-sheep,,TON,2.4504099 +AK,Ammonia,3B3_Manure-swine,,TON,17.6820036 +AK,Ammonia,3B4_Manure-other,,TON,9.1786416 +AK,Ammonia,3B4_Manure-poultry,,TON,6.607215157 +AK,Ammonia,3B4d_Manure-goats,,TON,5.2771403 +AK,Ammonia,5B_Compost-biogas,Other_Fuel,TON,15.79019 +AK,Ammonia,5C_Incineration,,TON,0.529 +AK,Ammonia,5C_Incineration,biomass,TON,0 +AK,Ammonia,5D1_Wastewater-domestic,,TON,1.2452765 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13652.3779 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7528.777963 +AK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,429.201685 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,213392.5403 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4217.817934 +AK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.077038528 +AK,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1031207.933 +AK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,219969.9481 +AK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2231627.609 +AK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,65409.58823 +AK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,152730.5778 +AK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,35556.36097 +AK,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,142761.5385 +AK,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,184.8967544 +AK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,243410.218 +AK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,11179.34643 +AK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,246739.8126 +AK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,60896.70938 +AK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10275.833 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14310.19435 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,13759.18158 +AK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,713.3587814 +AK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2796.181379 +AK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,33478.61015 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,46336.0098 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1502.834183 +AK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,149.4587978 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,320.351519 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,175252.0488 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11311.20243 +AK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,44710.25663 +AK,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,11647865.47 +AK,Carbon Monoxide,11C_Other-natural,,TON,411056.9175 +AK,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.04 +AK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1518.4064 +AK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,949.679 +AK,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,97.7325 +AK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2267.705 +AK,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0 +AK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,418.5866 +AK,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,26.9724 +AK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,912.4014 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,47.0154341 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,985.1664947 +AK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.960503118 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,33.81838694 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,686.4147671 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,595.7043414 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.140614122 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5613.194547 +AK,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,2.2003 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,569.2135751 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,853.1903763 +AK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.095125126 +AK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13599.73872 +AK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2463.41024 +AK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,52223.34952 +AK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,506.9025214 +AK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3695.018895 +AK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,111.2057931 +AK,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5566.465237 +AK,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,1.397346006 +AK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,388.2118559 +AK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,103.0387647 +AK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,558.0001349 +AK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1333.675522 +AK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,475.8910336 +AK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,47.3746967 +AK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1562.777443 +AK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,154.1461566 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,95.07427386 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,214.1262954 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,172.5131376 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.010019348 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.425807434 +AK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,399.0129288 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,56.27276863 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2765.453434 +AK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.79820932 +AK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,7.91966424 +AK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,7458.868403 +AK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,230931.7832 +AK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,872.586022 +AK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.113749941 +AK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,431.0937664 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,95.6741612 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,261.9245019 +AK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.636120015 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.26623695 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,16196.41161 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.28815883 +AK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4674.986718 +AK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1583.1554 +AK,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +AK,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,56.003 +AK,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.16793809 +AK,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,108 +AK,Carbon Monoxide,2A6_Other-minerals,,TON,110.9214 +AK,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,50.1334 +AK,Carbon Monoxide,2D3d_Coating-application,,TON,0 +AK,Carbon Monoxide,2H2_Food-and-beverage,,TON,199.1787202 +AK,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,0.0037 +AK,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,127.715436 +AK,Carbon Monoxide,5C_Incineration,,TON,12.71657167 +AK,Carbon Monoxide,5C_Incineration,biomass,TON,8.236140531 +AK,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0083 +AK,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.91 +AK,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.387315958 +AK,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.47685064 +AK,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.923988591 +AK,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,5.670437488 +AK,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.226617162 +AK,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.05788363 +AK,Methane,1A3bii_Road-LDV,diesel_oil,TON,22.76140703 +AK,Methane,1A3bii_Road-LDV,light_oil,TON,212.3998284 +AK,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.47465558 +AK,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.59741743 +AK,Methane,1A3biii_Road-bus,diesel_oil,TON,1.765351231 +AK,Methane,1A3biii_Road-bus,light_oil,TON,12.40720061 +AK,Methane,1A3biii_Road-bus,natural_gas,TON,1.013170221 +AK,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.020456387 +AK,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.186458078 +AK,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.537868559 +AK,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.868762768 +AK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.418273888 +AK,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.558975839 +AK,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,9.77669481 +AK,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.082458677 +AK,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.100629128 +AK,Methane,1A4bi_Residential-mobile,light_oil,TON,30.25021344 +AK,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.304423145 +AK,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.927474502 +AK,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.660426525 +AK,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.013502828 +AK,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,151.8121895 +AK,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.346054986 +AK,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,43.38054148 +AK,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,38382.89429 +AK,Nitrogen Oxides,11C_Other-natural,,TON,48513.6753 +AK,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,4.16 +AK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,12395.1451 +AK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1118.5016 +AK,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,430.0589 +AK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,5551.8874 +AK,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0 +AK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,406.2746 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,108.0298 +AK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,980.7992 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,139.2430994 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,64.36475686 +AK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.135600954 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,13.12060636 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1931.073935 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,608.2947497 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.541587409 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,34954.20092 +AK,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,12.5292 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1066.490561 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.49272915 +AK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015194513 +AK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4355.118474 +AK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,839.7756679 +AK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,5699.369798 +AK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,215.3547592 +AK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,386.3619902 +AK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,281.439295 +AK,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,632.2098923 +AK,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.593233574 +AK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1423.45553 +AK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,13.89547583 +AK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1472.590828 +AK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,136.5799167 +AK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.27104627 +AK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,381.770191 +AK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,12991.63397 +AK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,1632.120551 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,34.8659356 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,865.9372704 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,303.6531001 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.030062679 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.703492181 +AK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,732.1824503 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.972469 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,40.92374568 +AK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.521308759 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,20.27679336 +AK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,82.89166113 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,5063.579757 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,3208.308122 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.00950041 +AK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1116.835458 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,225.8103071 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.109944605 +AK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.313611263 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.5164349 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,386.6819041 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,110.5510733 +AK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,333.7036609 +AK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,770.6696379 +AK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +AK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,13.001 +AK,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.1673045 +AK,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,99 +AK,Nitrogen Oxides,2A6_Other-minerals,,TON,282.8863 +AK,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,22.2067 +AK,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +AK,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,519.177 +AK,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,0.0005 +AK,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,12.0447 +AK,Nitrogen Oxides,5C_Incineration,,TON,11.57396942 +AK,Nitrogen Oxides,5C_Incineration,biomass,TON,3.922697348 +AK,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.0303 +AK,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,1.37 +AK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.803456896 +AK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,133.1917779 +AK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.265331648 +AK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.22822034 +AK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.086850624 +AK,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.920455498 +AK,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.038242957 +AK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.348307279 +AK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.109329418 +AK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.578016715 +AK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.606310652 +AK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.21392573 +AK,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,46.18905647 +AK,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.0651 +AK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,473.4168896 +AK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,70.3057207 +AK,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,6.7257 +AK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,131.4508 +AK,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0 +AK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,11.6475 +AK,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.7436 +AK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,84.5941057 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,27.81277094 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,83.50926901 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,17.38842259 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.041068668 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,630.2022054 +AK,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,4.2982911 +AK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,25434.43469 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,79.2004882 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,70.86359633 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,15.71478687 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002674218 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.08523523 +AK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.74443511 +AK,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,34795.71654 +AK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,32.1305808 +AK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.240349998 +AK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.580557982 +AK,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,103.0507 +AK,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +AK,PM10 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.02809157 +AK,PM10 Filterable,2A2_Lime-production,,TON,0.0299 +AK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,6153.857885 +AK,PM10 Filterable,2A6_Other-minerals,,TON,186.52356 +AK,PM10 Filterable,2B_Chemicals-other,Other_Fuel,TON,0.0014 +AK,PM10 Filterable,2C5_Lead-production,,TON,0.1458 +AK,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,42.0217 +AK,PM10 Filterable,2D3d_Coating-application,,TON,0 +AK,PM10 Filterable,2H2_Food-and-beverage,,TON,41.77257291 +AK,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,0.0055 +AK,PM10 Filterable,3B1a_Cattle-dairy,,TON,2.14132956 +AK,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,128.18022 +AK,PM10 Filterable,3Dc_Other-farm,,TON,2.690310931 +AK,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,26 +AK,PM10 Filterable,5C_Incineration,,TON,8.999883428 +AK,PM10 Filterable,5C_Incineration,biomass,TON,3.638833997 +AK,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.16 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.07 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,699.5178 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,88.8443 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,17.047 +AK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,236.9859 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0 +AK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,41.3668 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,7.8942 +AK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,99.8641 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.920749766 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.72576814 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.052277042 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,29.47804267 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,263.2788771 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,90.46264574 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.077436642 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,801.7249079 +AK,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,6.3753 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,87.13782537 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.710189171 +AK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000136605 +AK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,303.9788598 +AK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25434.43469 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,50.18803202 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,480.1981524 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.022169 +AK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,31.41324003 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,18.26132301 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,43.03732255 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.032951824 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,103.4033566 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.292474371 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,128.8849802 +AK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.33768278 +AK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.678256228 +AK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,11.1731938 +AK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,269.750804 +AK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,208.1528105 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,81.8881686 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,61.88960488 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,25.37844105 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.003004551 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.194780101 +AK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,39.99260594 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,9.09133986 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,3.607886048 +AK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.091040709 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.288703705 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,27.03337195 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,37866.98241 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,71.182947 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.530199966 +AK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.357003699 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.2544789 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.734654505 +AK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018461502 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.333473913 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,185.9975244 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.426859342 +AK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,14.05124644 +AK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,132.0507 +AK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +AK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.327982053 +AK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.0299 +AK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6153.857885 +AK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,199.38636 +AK,PM10 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.0014 +AK,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.237 +AK,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,73.7953 +AK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.36 +AK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,196.5792099 +AK,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,0.0055 +AK,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,2.14132956 +AK,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,128.18022 +AK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,2.690310931 +AK,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,99.2837 +AK,PM10 Primary (Filt + Cond),5C_Incineration,,TON,9.609070207 +AK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.751043019 +AK,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0051 +AK,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.2 +AK,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.0651 +AK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,488.2333089 +AK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,18.4077197 +AK,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,6.0453375 +AK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,59.163 +AK,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0 +AK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,11.502038 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.6624 +AK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,11.29920565 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,24.29411023 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,137.6317248 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,6.546109907 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.041704422 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,78.03446878 +AK,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,4.7791911 +AK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,2814.426091 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,68.14904311 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,54.9033805 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000993605 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.076563381 +AK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.15448585 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,34044.38669 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,27.9012797 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.184799993 +AK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.653307053 +AK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.1896 +AK,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +AK,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.05889157 +AK,PM2.5 Filterable,2A2_Lime-production,,TON,0.0299 +AK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,615.3857885 +AK,PM2.5 Filterable,2A6_Other-minerals,,TON,62.3096 +AK,PM2.5 Filterable,2B_Chemicals-other,Other_Fuel,TON,0.0014 +AK,PM2.5 Filterable,2C5_Lead-production,,TON,0.237 +AK,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,42.681 +AK,PM2.5 Filterable,2D3d_Coating-application,,TON,0.07 +AK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,24.58729596 +AK,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,0.0055 +AK,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,0.44507367 +AK,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,26.642145 +AK,PM2.5 Filterable,3Dc_Other-farm,,TON,0.148954069 +AK,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,23.5337 +AK,PM2.5 Filterable,5C_Incineration,,TON,7.818153991 +AK,PM2.5 Filterable,5C_Incineration,biomass,TON,1.795166232 +AK,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0051 +AK,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.02 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.07 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,561.0607186 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,36.5863 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,17.013638 +AK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,116.8956 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,36.59394 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,6.563 +AK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,35.38179995 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.675327172 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.560355896 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.052277042 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,26.12256261 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,213.5323378 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,81.1986651 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.079258367 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,193.6752656 +AK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,5.76 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,84.5236996 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.176625802 +AK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000136605 +AK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,280.32059 +AK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,2814.426091 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,34.63807067 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,265.9753006 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.1210642 +AK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.97256727 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,13.17477977 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,25.59223494 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.010584249 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,71.19398691 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.527810802 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,91.63274916 +AK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.939635058 +AK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.079280949 +AK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,10.83799988 +AK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,254.6953466 +AK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,191.5005799 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,70.81556615 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,57.15544117 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.8870352 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.001323786 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.165759354 +AK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.00672278 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,8.81860064 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,3.327516188 +AK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.091040709 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.250042355 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,24.87173142 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,37115.65256 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,66.953645 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.474649985 +AK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.429752771 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.76684165 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.67588242 +AK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.018461502 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.323469734 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,171.117867 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.354053575 +AK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,12.9271473 +AK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,32.9497 +AK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +AK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.326282053 +AK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.0299 +AK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,615.3857885 +AK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,64.1406 +AK,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,0.0014 +AK,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.237 +AK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,69.9436 +AK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.29 +AK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,178.7928416 +AK,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,0.0055 +AK,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,0.44507367 +AK,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,26.642145 +AK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0.148954069 +AK,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,96.65 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,8.000305759 +AK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.051610264 +AK,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.06 +AK,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1.23 +AK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,443.2075 +AK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1183.1894 +AK,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,16.7893 +AK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,187.008 +AK,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,0 +AK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,15.2388 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,69.1873 +AK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,137.2963 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.281859113 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.125698362 +AK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.002405624 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,6.781533555 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,101.3368896 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,470.9874009 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.269374205 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,949.9564492 +AK,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,3.1219 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.7149579 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.025152256 +AK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.01609E-06 +AK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,584.5504716 +AK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.909538187 +AK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,20.38238324 +AK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.562887288 +AK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1.395053891 +AK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.310626928 +AK,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.306568864 +AK,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000978938 +AK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.101637643 +AK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.102393219 +AK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.14350173 +AK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.557575601 +AK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.096441227 +AK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.167063658 +AK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,328.662043 +AK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,1472.706407 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.965670306 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.18617129 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,126.660429 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.100047732 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001500716 +AK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.60409176 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.128032747 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.082443107 +AK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.003997892 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.024329535 +AK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.203247395 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,688.9046517 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,6.512152 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.037655754 +AK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,6.182844574 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.383302122 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.00913368 +AK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000837858 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002810051 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.062255564 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.10398101 +AK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.271422785 +AK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,127.090028 +AK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +AK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +AK,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +AK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.517671227 +AK,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,7 +AK,Sulfur Dioxide,2A6_Other-minerals,,TON,44.7652 +AK,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0016 +AK,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +AK,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,39.2333 +AK,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,0 +AK,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,6.009 +AK,Sulfur Dioxide,5C_Incineration,,TON,4.308040408 +AK,Sulfur Dioxide,5C_Incineration,biomass,TON,2.683502936 +AK,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0008 +AK,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.85 +AK,Volatile Organic Compounds,11C_Other-natural,,TON,1790398.768 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.02 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,561.4526 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,5.7798 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.1064 +AK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,293.0389 +AK,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0 +AK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,869.2467 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,1.8331 +AK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,461.947 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.10345301 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27.26855078 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.632056701 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.967001398 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,122.2015376 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.956430615 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.04117492 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,543.8234063 +AK,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.8364 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,107.4624604 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,58.06526383 +AK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.012512281 +AK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2059.662378 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,338.9782927 +AK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,6146.655224 +AK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,77.3051286 +AK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,413.7858104 +AK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,22.03088447 +AK,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,295.5684863 +AK,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.112728957 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,79.739463 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,4.877705761 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,166.5217822 +AK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,63.42925488 +AK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,101.02818 +AK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,17.66043449 +AK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,520.9151989 +AK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,90.66593787 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.696441804 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,52.53905418 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.725036516 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000501464 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.039606629 +AK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.7010749 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.23112402 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,91.73759946 +AK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.314799794 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,1.848709429 +AK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,444.8943013 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,8422.605401 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,18.65635891 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.156200002 +AK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,56.67615711 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16.49572758 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.20258952 +AK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.142759455 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.590016524 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,6292.341964 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.021160728 +AK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,892.5118897 +AK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1348.607097 +AK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,508.1371755 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,174.335209 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,57.37295176 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,745.3602856 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,963.7793414 +AK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,119.7863 +AK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,279.8562132 +AK,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,27 +AK,Volatile Organic Compounds,2A6_Other-minerals,,TON,14.67582271 +AK,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.515976493 +AK,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,22.328 +AK,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.8949 +AK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3242.748314 +AK,Volatile Organic Compounds,2D3d_Coating-application,,TON,1393.934482 +AK,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,252.5659968 +AK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.20320001 +AK,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,238.730982 +AK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,43.66841753 +AK,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,153.0627 +AK,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,0.66892347 +AK,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,5.564711 +AK,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0.196032766 +AK,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.41456049 +AK,Volatile Organic Compounds,3B4_Manure-other,,TON,0.73429136 +AK,Volatile Organic Compounds,3B4_Manure-poultry,,TON,0.528577183 +AK,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0.42217117 +AK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,9.969636373 +AK,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,16.0838 +AK,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,111.72755 +AK,Volatile Organic Compounds,5C_Incineration,,TON,6.496976458 +AK,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.55515139 +AK,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,6.276225 +AK,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,9.0682 +AK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.5 +AL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.15182 +AL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,17.01 +AL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,381.7113056 +AL,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,2.75 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.141764732 +AL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.410415406 +AL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.817412507 +AL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.630297873 +AL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.03599404 +AL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.011098879 +AL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,30.8294917 +AL,Ammonia,1A2c_Chemicals,natural_gas,TON,8.40863 +AL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,9.552295989 +AL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.33612806 +AL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,24.43122568 +AL,Ammonia,1A3bii_Road-LDV,light_oil,TON,2032.852229 +AL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.828024394 +AL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,82.39248081 +AL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,7.788648713 +AL,Ammonia,1A3biii_Road-bus,light_oil,TON,2.370489343 +AL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.045793327 +AL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,84.38800314 +AL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,10.96691286 +AL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,87.77063326 +AL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.373259288 +AL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.33872904 +AL,Ammonia,1A3c_Rail,diesel_oil,TON,6.328118942 +AL,Ammonia,1A3c_Rail,light_oil,TON,0.003684001 +AL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.413394474 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +AL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.55636 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.750956444 +AL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.539417004 +AL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.334544744 +AL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.698200385 +AL,Ammonia,1A4bi_Residential-stationary,biomass,TON,225.5446982 +AL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.336000005 +AL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.0405 +AL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,265.5791996 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.316095766 +AL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.143062978 +AL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017017625 +AL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.22819035 +AL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.704313944 +AL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.837034142 +AL,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.001134346 +AL,Ammonia,2A1_Cement-production,,TON,8.260666 +AL,Ammonia,2A2_Lime-production,Other_Fuel,TON,73.764858 +AL,Ammonia,2A6_Other-minerals,,TON,327.8721 +AL,Ammonia,2B_Chemicals-other,,TON,159.449195 +AL,Ammonia,2C_Iron-steel-alloy,,TON,34.97405 +AL,Ammonia,2C3_Aluminum-production,,TON,0.005 +AL,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.1504 +AL,Ammonia,2C7a_Copper-production,,TON,0.00168 +AL,Ammonia,2D3d_Coating-application,,TON,1.355008 +AL,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.119 +AL,Ammonia,2H1_Pulp-and-paper,,TON,674.154088 +AL,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.28 +AL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,401.29615 +AL,Ammonia,3B1a_Cattle-dairy,,TON,575.0122143 +AL,Ammonia,3B1b_Cattle-non-dairy,,TON,5562.32454 +AL,Ammonia,3B2_Manure-sheep,,TON,66.93136874 +AL,Ammonia,3B3_Manure-swine,,TON,1032.756119 +AL,Ammonia,3B4_Manure-other,,TON,692.688162 +AL,Ammonia,3B4_Manure-poultry,,TON,38645.76988 +AL,Ammonia,3B4d_Manure-goats,,TON,176.8124043 +AL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,8524.2 +AL,Ammonia,3F_Ag-res-on-field,,TON,580.369 +AL,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,152.15907 +AL,Ammonia,5B_Compost-biogas,Other_Fuel,TON,104.046648 +AL,Ammonia,5C_Open-burning-industrial,,TON,0.0014 +AL,Ammonia,5D1_Wastewater-domestic,,TON,12.8417185 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,263948.5806 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,221940.2121 +AL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12531.621 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1176132.756 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,27486.03434 +AL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.597444365 +AL,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,181085.1841 +AL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,788421.4736 +AL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,27626562.73 +AL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,120629.4521 +AL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1348034.086 +AL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,475197.9422 +AL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,73837.72027 +AL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1641.736108 +AL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4881860.956 +AL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,257950.5224 +AL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5506054.422 +AL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,193129.6286 +AL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,254278.6711 +AL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4644.100867 +AL,Carbon Dioxide,1A3c_Rail,light_oil,TON,286.7719711 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,92396.49858 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,125420.9663 +AL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5660.495122 +AL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,41176.31832 +AL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,352499.2036 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,408334.7157 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10405.83601 +AL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,518.5583093 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2087.37872 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,86552.65367 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,86731.6278 +AL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,351610.6516 +AL,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,93916622.66 +AL,Carbon Monoxide,11C_Other-natural,,TON,128450.2326 +AL,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,16.8489 +AL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,29.1 +AL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,13.0759 +AL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7833.913 +AL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1459.3228 +AL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,423.18446 +AL,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,291.24905 +AL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,528.22723 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,393.2231015 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5430.00563 +AL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,190.0164636 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7819.242337 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,191.1754275 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2556.908012 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,670.5432365 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5278.878334 +AL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,114.065945 +AL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,94.45114 +AL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3408.352843 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5816.664573 +AL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.608312402 +AL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,11598.47898 +AL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7389.295521 +AL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,492042.1336 +AL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,797.5497 +AL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20877.32606 +AL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1026.080976 +AL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3414.543064 +AL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,5.73722589 +AL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4589.851468 +AL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4626.971197 +AL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5720.867996 +AL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5073.102778 +AL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11221.4431 +AL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2041.686902 +AL,Carbon Monoxide,1A3c_Rail,light_oil,TON,65.61919548 +AL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,681.1555149 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,66.34260252 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.348703002 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.138932021 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.377281247 +AL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,107.2687542 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,333.4871851 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,26446.58739 +AL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,120.6935748 +AL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,121.7440873 +AL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,78228.36961 +AL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,29646.59762 +AL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.68000003 +AL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.202499998 +AL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,633.2975498 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1141.717619 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2764.441598 +AL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.91721725 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.0422311 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,15960.51453 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,171.43439 +AL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,37610.93135 +AL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,37.32875928 +AL,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.2102 +AL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5778.570706 +AL,Carbon Monoxide,2A1_Cement-production,,TON,3010.3234 +AL,Carbon Monoxide,2A2_Lime-production,,TON,10559.519 +AL,Carbon Monoxide,2A6_Other-minerals,,TON,6306.39747 +AL,Carbon Monoxide,2B_Chemicals-other,,TON,3332.573691 +AL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,8194.889208 +AL,Carbon Monoxide,2C3_Aluminum-production,,TON,154.33391 +AL,Carbon Monoxide,2C5_Lead-production,,TON,3792.84 +AL,Carbon Monoxide,2C6_Zinc-production,,TON,74.22 +AL,Carbon Monoxide,2C7_Other-metal,,TON,12.664 +AL,Carbon Monoxide,2C7a_Copper-production,,TON,0.98223 +AL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,25.205 +AL,Carbon Monoxide,2D3d_Coating-application,,TON,158.607319 +AL,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.45 +AL,Carbon Monoxide,2D3h_Printing,,TON,1.5531 +AL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,8771.801356 +AL,Carbon Monoxide,2H2_Food-and-beverage,,TON,537.1914276 +AL,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,294.558283 +AL,Carbon Monoxide,3Dc_Other-farm,,TON,5 +AL,Carbon Monoxide,3F_Ag-res-on-field,,TON,4086 +AL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,664.7344686 +AL,Carbon Monoxide,5C_Incineration,,TON,0.378369699 +AL,Carbon Monoxide,5C_Incineration,biomass,TON,2.960999545 +AL,Carbon Monoxide,5C_Open-burning-industrial,,TON,16.8 +AL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,37421.29975 +AL,Carbon Monoxide,5C_Open-burning-residential,,TON,8376.98603 +AL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,831.252392 +AL,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.695128407 +AL,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.74367 +AL,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,78.69599801 +AL,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,27.04523149 +AL,Methane,1A2g_Construction_and_Mining,light_oil,TON,21.28481253 +AL,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.498338642 +AL,Methane,1A3bii_Road-LDV,diesel_oil,TON,38.81103519 +AL,Methane,1A3bii_Road-LDV,light_oil,TON,1123.681344 +AL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.887099756 +AL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,59.74270565 +AL,Methane,1A3biii_Road-bus,diesel_oil,TON,15.65960077 +AL,Methane,1A3biii_Road-bus,light_oil,TON,8.72135319 +AL,Methane,1A3biii_Road-bus,natural_gas,TON,2.69871127 +AL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,287.9848326 +AL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,7.343099028 +AL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,140.1961308 +AL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,10.1793639 +AL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.83762519 +AL,Methane,1A3c_Rail,diesel_oil,TON,0.20936011 +AL,Methane,1A3c_Rail,light_oil,TON,0.185834099 +AL,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.012816072 +AL,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,83.62333314 +AL,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,73.32094817 +AL,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.367285219 +AL,Methane,1A4bi_Residential-mobile,light_oil,TON,275.5480543 +AL,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.22350417 +AL,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.06717954 +AL,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.110856658 +AL,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.087188938 +AL,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,121.5778321 +AL,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.532775746 +AL,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,339.4150025 +AL,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,149689.7746 +AL,Nitrogen Oxides,11C_Other-natural,,TON,22462.4845 +AL,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.8005 +AL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,24.3 +AL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,80.52868 +AL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,19823.281 +AL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2514.5201 +AL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,409.04419 +AL,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,936.7963 +AL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,157.64455 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1097.213881 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,494.9383011 +AL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,31.67345715 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5027.971302 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,360.6440797 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1480.693704 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,295.0118935 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,11026.36544 +AL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,298.75188 +AL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.93069 +AL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.84 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6459.210539 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,89.93383673 +AL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.13037218 +AL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4347.801811 +AL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2458.681806 +AL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,55340.27586 +AL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,322.3124175 +AL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2288.874045 +AL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2716.769116 +AL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,327.34336 +AL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.18236713 +AL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13509.61837 +AL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,548.8034325 +AL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16374.61393 +AL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,473.0586195 +AL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,490.315515 +AL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10775.69475 +AL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.60388045 +AL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5067.029401 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,167.5892616 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.21490447 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.436821721 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.113497493 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,9.107444295 +AL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,122.4127134 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,653.3549801 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,310.3615037 +AL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,28.31847846 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,311.4311842 +AL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,689.951709 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,470.5854467 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,6.048000376 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.729000031 +AL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1611.406831 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2655.275847 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,36.93276765 +AL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.270717838 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.3891168 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,169.451333 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,857.8652933 +AL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2431.167875 +AL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,28.67914024 +AL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.2687 +AL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3564.359293 +AL,Nitrogen Oxides,2A1_Cement-production,,TON,5234.6234 +AL,Nitrogen Oxides,2A2_Lime-production,,TON,5589.438 +AL,Nitrogen Oxides,2A6_Other-minerals,,TON,5738.86412 +AL,Nitrogen Oxides,2B_Chemicals-other,,TON,1645.31656 +AL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,3008.49732 +AL,Nitrogen Oxides,2C3_Aluminum-production,,TON,239.70929 +AL,Nitrogen Oxides,2C5_Lead-production,,TON,101.81 +AL,Nitrogen Oxides,2C6_Zinc-production,,TON,48.96 +AL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,28.84 +AL,Nitrogen Oxides,2C7a_Copper-production,,TON,3.97526 +AL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,16.156 +AL,Nitrogen Oxides,2D3d_Coating-application,,TON,200.438739 +AL,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.54 +AL,Nitrogen Oxides,2D3h_Printing,,TON,1.67349 +AL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,9479.011256 +AL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,21.605 +AL,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,55.905678 +AL,Nitrogen Oxides,3Dc_Other-farm,,TON,40.32 +AL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,133.247 +AL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,148.10891 +AL,Nitrogen Oxides,5C_Incineration,,TON,4.225367248 +AL,Nitrogen Oxides,5C_Incineration,biomass,TON,0.873314458 +AL,Nitrogen Oxides,5C_Open-burning-industrial,,TON,1.43 +AL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,908.28394 +AL,Nitrogen Oxides,5C_Open-burning-residential,,TON,591.316692 +AL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,46.01575782 +AL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.375138031 +AL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,951.9721276 +AL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.39961469 +AL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,48.43737935 +AL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.068945989 +AL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.708718306 +AL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.126111855 +AL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.398549309 +AL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.077714117 +AL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.175713502 +AL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.562692728 +AL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.851514108 +AL,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1583.047182 +AL,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.48 +AL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,20.8 +AL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.73732 +AL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,654.499 +AL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,356.6256981 +AL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,21.96469 +AL,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,163.68949 +AL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,3.3077 +AL,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.81 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1147.554453 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.46502371 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,85.25837871 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,62.38438838 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,397.2693537 +AL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,35.6892714 +AL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.39104 +AL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +AL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,157571.1554 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,26.58923681 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.655725191 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.09913769 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.033045897 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.495688449 +AL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.407151962 +AL,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,3815.309043 +AL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.362879993 +AL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.0437 +AL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.167799994 +AL,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.929564619 +AL,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,2.23 +AL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,24.15474483 +AL,PM10 Filterable,2A1_Cement-production,,TON,715.3761356 +AL,PM10 Filterable,2A2_Lime-production,,TON,518.7427549 +AL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16434.70932 +AL,PM10 Filterable,2A6_Other-minerals,,TON,6507.976993 +AL,PM10 Filterable,2B_Chemicals-other,,TON,491.9246777 +AL,PM10 Filterable,2C_Iron-steel-alloy,,TON,1135.101494 +AL,PM10 Filterable,2C3_Aluminum-production,,TON,395.80748 +AL,PM10 Filterable,2C5_Lead-production,,TON,14.061 +AL,PM10 Filterable,2C6_Zinc-production,,TON,34.026215 +AL,PM10 Filterable,2C7_Other-metal,,TON,87.641611 +AL,PM10 Filterable,2C7a_Copper-production,,TON,7.05993101 +AL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,19.768 +AL,PM10 Filterable,2D3d_Coating-application,,TON,52.209872 +AL,PM10 Filterable,2D3h_Printing,,TON,0.0602 +AL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,2.26 +AL,PM10 Filterable,2H1_Pulp-and-paper,,TON,2838.399124 +AL,PM10 Filterable,2H2_Food-and-beverage,,TON,273.4318739 +AL,PM10 Filterable,2H3_Other-industrial-processes,,TON,94.625774 +AL,PM10 Filterable,3B1a_Cattle-dairy,,TON,56.41976933 +AL,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,14248.16901 +AL,PM10 Filterable,3Dc_Other-farm,,TON,31376.19174 +AL,PM10 Filterable,5A_Solid-waste-disposal,,TON,263.9648 +AL,PM10 Filterable,5C_Incineration,,TON,6.893253918 +AL,PM10 Filterable,5C_Incineration,biomass,TON,0.765175635 +AL,PM10 Filterable,5C_Open-burning-industrial,,TON,161 +AL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4632.247856 +AL,PM10 Filterable,5C_Open-burning-residential,,TON,3161.652467 +AL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,282.0320634 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1.531478 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,22.68 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.595402688 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1065.131209 +AL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1234.067575 +AL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,64.05377 +AL,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,268.00853 +AL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,7.209050343 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,63.68383874 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.80074638 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.517559431 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1400.378579 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,27.49068597 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,188.9178195 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,90.60169959 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,860.5085583 +AL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,50.3311624 +AL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.065874 +AL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.13 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,578.2970111 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.08216601 +AL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000704071 +AL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,378.3650282 +AL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,157571.1554 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,147.9926928 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2865.608012 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22.52985951 +AL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,129.6923534 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,211.8452204 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,13.27222464 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.214833908 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,912.7558751 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,27.56341112 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1130.99628 +AL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,21.26071566 +AL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.86813976 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,316.5175478 +AL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036513031 +AL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,130.8494318 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,56.71082625 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.701430257 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.095745608 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.03310847 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.467003688 +AL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.5265145 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,55.14508198 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,32.86960664 +AL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.718049164 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,20.5698222 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,328.9431464 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3986.322699 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.799679932 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.096399997 +AL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.229720526 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,210.6977382 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,22.94453576 +AL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.063528459 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.2181962 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,93.86398268 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.79617538 +AL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,113.4289003 +AL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1.752266126 +AL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,2.23 +AL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,51.71419594 +AL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,758.3268974 +AL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,772.0808819 +AL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16434.70932 +AL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6944.810527 +AL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,687.1858192 +AL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2196.592495 +AL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,424.616064 +AL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,18.6808132 +AL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,34.071215 +AL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,101.7020686 +AL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,13.1416345 +AL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,20.48402 +AL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,53.873472 +AL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.0602 +AL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.26 +AL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,4146.291183 +AL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1465.536911 +AL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,103.7048979 +AL,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,56.41976933 +AL,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,14248.16901 +AL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,31378.70392 +AL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,662.281 +AL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,316.7804 +AL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,7.42573336 +AL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.748599352 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,177.2771 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4632.247856 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3161.652467 +AL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,282.0320634 +AL,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.37 +AL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,12.3 +AL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.704975 +AL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,285.9586087 +AL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,321.3510272 +AL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,21.030222 +AL,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,159.59298 +AL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.132359574 +AL,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.81 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,869.1822969 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,20.72928302 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,60.08832139 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,55.19931922 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,345.2141034 +AL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,5.0026225 +AL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.02737 +AL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +AL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,19960.7959 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,15.74447906 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.112273171 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.088381198 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.012190426 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.265143593 +AL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.332231666 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,3762.902801 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.278880002 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.033600001 +AL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.742289943 +AL,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.909323741 +AL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,1.1 +AL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23.9283337 +AL,PM2.5 Filterable,2A1_Cement-production,,TON,470.6984255 +AL,PM2.5 Filterable,2A2_Lime-production,,TON,218.3661041 +AL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1643.470932 +AL,PM2.5 Filterable,2A6_Other-minerals,,TON,1715.25235 +AL,PM2.5 Filterable,2B_Chemicals-other,,TON,438.6785615 +AL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,793.0416652 +AL,PM2.5 Filterable,2C3_Aluminum-production,,TON,315.1312815 +AL,PM2.5 Filterable,2C5_Lead-production,,TON,12.981 +AL,PM2.5 Filterable,2C6_Zinc-production,,TON,34.026215 +AL,PM2.5 Filterable,2C7_Other-metal,,TON,47.8295114 +AL,PM2.5 Filterable,2C7a_Copper-production,,TON,1.614495 +AL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,19.038 +AL,PM2.5 Filterable,2D3d_Coating-application,,TON,34.46417466 +AL,PM2.5 Filterable,2D3h_Printing,,TON,0.01144 +AL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.57 +AL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2113.869366 +AL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,102.1301201 +AL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,49.9058884 +AL,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,11.72680195 +AL,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2961.46913 +AL,PM2.5 Filterable,3Dc_Other-farm,,TON,5717.687056 +AL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,87.552855 +AL,PM2.5 Filterable,5C_Incineration,,TON,6.283967442 +AL,PM2.5 Filterable,5C_Incineration,biomass,TON,0.290572236 +AL,PM2.5 Filterable,5C_Open-burning-industrial,,TON,150.9375 +AL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4223.520276 +AL,PM2.5 Filterable,5C_Open-burning-residential,,TON,2895.407974 +AL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,217.4615682 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.4214783 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,14.18 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.563057688 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,696.5907775 +AL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1198.792904 +AL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,63.119302 +AL,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,263.91198 +AL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.033709918 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,61.79762046 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.40859797 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.517559431 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1121.932898 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,24.75187633 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,163.767732 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,83.4132887 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,808.5132863 +AL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,19.6445265 +AL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.702204 +AL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.13 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,560.948241 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.65744422 +AL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000704071 +AL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,345.0308069 +AL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19960.7959 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,104.5989318 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,967.8947325 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.68258754 +AL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,39.40861231 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,152.3437802 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.529305317 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.038100992 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,580.7619208 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.885208846 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,753.4682403 +AL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.951959969 +AL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.86200449 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,307.018432 +AL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.033656102 +AL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,125.3923286 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,45.97466653 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.070721653 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.084427035 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.014443332 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.258641595 +AL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.40644174 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,53.49073068 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,30.31159952 +AL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.718049164 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,19.95272899 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,302.6426076 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3933.916457 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.715680043 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.086299999 +AL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.804209544 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,204.3768028 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,21.10902313 +AL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.063528459 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.15165076 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,86.35586543 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.23228717 +AL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,104.3545938 +AL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1.732025448 +AL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,1.1 +AL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,51.48778483 +AL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,513.6491876 +AL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,471.704273 +AL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1643.470932 +AL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2152.085891 +AL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,633.9397032 +AL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1854.532654 +AL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,343.9398658 +AL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,17.6008132 +AL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,34.071215 +AL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,61.88996985 +AL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,7.6961984 +AL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,19.75402 +AL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,36.12777466 +AL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.01144 +AL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.57 +AL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3421.761431 +AL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1294.23512 +AL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,58.98501231 +AL,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,11.72680195 +AL,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2961.46913 +AL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5720.199232 +AL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,462.413 +AL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,140.368455 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,6.805110931 +AL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.285331935 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,167.2146 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4223.520276 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2895.407974 +AL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,217.4615682 +AL,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0181 +AL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,2.77 +AL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.164692 +AL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,10367.735 +AL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,113.242541 +AL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,97.28163 +AL,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,1468.2634 +AL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1437.32932 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.31385421 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.493898631 +AL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.070241194 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1880.325804 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,51.14891925 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2341.12532 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,309.6178742 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2067.457542 +AL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,13.559483 +AL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.91725 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,9.521623253 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.419705134 +AL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.11969E-05 +AL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,454.8408332 +AL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.823305526 +AL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,580.2305871 +AL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.034340058 +AL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.34738665 +AL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.11521932 +AL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.545900521 +AL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.008692165 +AL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,41.361485 +AL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.392434578 +AL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,46.92859504 +AL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.037312514 +AL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.25069838 +AL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,7.129996482 +AL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004625281 +AL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,76.74484374 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,12.13863512 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.382568959 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,12.26860997 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.494643616 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.518038923 +AL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.738690415 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.784614084 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.956567499 +AL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.031713846 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.356843435 +AL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.774251924 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,87.87432758 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.385600048 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.0068465 +AL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.496840544 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.510967034 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.17081863 +AL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002906618 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01826842 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.418510466 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.797302067 +AL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.776240367 +AL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,126.4087588 +AL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3983.446618 +AL,Sulfur Dioxide,2A1_Cement-production,,TON,578.026666 +AL,Sulfur Dioxide,2A2_Lime-production,,TON,10653.012 +AL,Sulfur Dioxide,2A6_Other-minerals,,TON,978.153853 +AL,Sulfur Dioxide,2B_Chemicals-other,,TON,5179.374816 +AL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,2471.26013 +AL,Sulfur Dioxide,2C3_Aluminum-production,,TON,42.39429 +AL,Sulfur Dioxide,2C5_Lead-production,,TON,8019.92 +AL,Sulfur Dioxide,2C6_Zinc-production,,TON,8.2063 +AL,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,31.4565 +AL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.05843 +AL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,73.942 +AL,Sulfur Dioxide,2D3d_Coating-application,,TON,1.012924 +AL,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.003 +AL,Sulfur Dioxide,2D3h_Printing,,TON,0.00421 +AL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1088.952031 +AL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.11618 +AL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.531342 +AL,Sulfur Dioxide,3Dc_Other-farm,,TON,2.38 +AL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,45.3361 +AL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,51.81244 +AL,Sulfur Dioxide,5C_Incineration,,TON,3.010983958 +AL,Sulfur Dioxide,5C_Incineration,biomass,TON,0.613108804 +AL,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.14 +AL,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,376.9378371 +AL,Sulfur Dioxide,5C_Open-burning-residential,,TON,98.552778 +AL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.640641418 +AL,Volatile Organic Compounds,11C_Other-natural,,TON,1303650.472 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,76.0173 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,4.31 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.342533 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,707.1348137 +AL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,423.207987 +AL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,446.5405386 +AL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,268.3521354 +AL,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,44.96809 +AL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,298.82585 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,73.08615361 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,163.4468982 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,17.01112597 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,430.1761788 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,33.72947479 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,28.35176846 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.4902501 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,743.2655868 +AL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,46.150394 +AL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.33206 +AL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.16 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,685.6085843 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,395.4381856 +AL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.107722137 +AL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2197.380754 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,720.3991008 +AL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,38525.57065 +AL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,80.9548933 +AL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1480.788332 +AL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,220.2153133 +AL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,245.5737141 +AL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.219933081 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1032.69062 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,198.2384806 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1122.167791 +AL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,244.8853085 +AL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1804.334632 +AL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,520.3627328 +AL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.694877021 +AL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,256.3172135 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,46.75477049 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.663915087 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.704725621 +AL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.144168805 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,76.09676182 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,928.9307505 +AL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,15.84924129 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,28.99620352 +AL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4706.37404 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4368.189498 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.239567995 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.028399999 +AL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,87.05546349 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,225.9012048 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,237.3144847 +AL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.672450694 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.91121048 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3194.852435 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,45.8183241 +AL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,9333.567404 +AL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,2424.390696 +AL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,728.9718087 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,397.3202961 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,626.5495343 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4316.921676 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9347.603425 +AL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,135.3449 +AL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6860.259666 +AL,Volatile Organic Compounds,2A1_Cement-production,,TON,222.697811 +AL,Volatile Organic Compounds,2A2_Lime-production,,TON,44.559 +AL,Volatile Organic Compounds,2A6_Other-minerals,,TON,851.5311034 +AL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,3.420274858 +AL,Volatile Organic Compounds,2B_Chemicals-other,,TON,2052.629275 +AL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,786.35513 +AL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,541.86048 +AL,Volatile Organic Compounds,2C5_Lead-production,,TON,78.73 +AL,Volatile Organic Compounds,2C6_Zinc-production,,TON,8.3512 +AL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,791.0917 +AL,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.32007 +AL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,21367.51022 +AL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,131.114 +AL,Volatile Organic Compounds,2D3d_Coating-application,,TON,14372.55207 +AL,Volatile Organic Compounds,2D3e_Degreasing,,TON,834.678 +AL,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,24.60240003 +AL,Volatile Organic Compounds,2D3h_Printing,,TON,5188.85548 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,763.491003 +AL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2015.140455 +AL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,11264.30545 +AL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,804.3097844 +AL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,808.028214 +AL,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,46.00097897 +AL,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,444.985972 +AL,Volatile Organic Compounds,3B2_Manure-sheep,,TON,5.354509362 +AL,Volatile Organic Compounds,3B3_Manure-swine,,TON,82.62048353 +AL,Volatile Organic Compounds,3B4_Manure-other,,TON,55.4150543 +AL,Volatile Organic Compounds,3B4_Manure-poultry,,TON,3091.661634 +AL,Volatile Organic Compounds,3B4d_Manure-goats,,TON,14.14499234 +AL,Volatile Organic Compounds,3Dc_Other-farm,,TON,59.42 +AL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1740.799712 +AL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,487.953 +AL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,106.126017 +AL,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,736.20878 +AL,Volatile Organic Compounds,5C_Incineration,,TON,46.3114014 +AL,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.022716057 +AL,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,9.04 +AL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2565.90222 +AL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,616.439021 +AL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,207.8131068 +AL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,64.48712 +AL,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,14.516 +AR,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.081408 +AR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,215.6592 +AR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,82.3771655 +AR,Ammonia,1A1b_Pet-refining,natural_gas,TON,29.91572975 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.40874818 +AR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.434071465 +AR,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.095823271 +AR,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,154.3699254 +AR,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.862920623 +AR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,40.40475561 +AR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.064549479 +AR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,96.80692954 +AR,Ammonia,1A2c_Chemicals,natural_gas,TON,185.53 +AR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.363664393 +AR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.114531987 +AR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,16.17841062 +AR,Ammonia,1A3bii_Road-LDV,light_oil,TON,954.9029799 +AR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.470265524 +AR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.54214991 +AR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.039970765 +AR,Ammonia,1A3biii_Road-bus,light_oil,TON,2.042905682 +AR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.00518451 +AR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,74.98899176 +AR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,5.672299329 +AR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,61.38079403 +AR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.22106268 +AR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.95960768 +AR,Ammonia,1A3c_Rail,diesel_oil,TON,7.450953309 +AR,Ammonia,1A3c_Rail,light_oil,TON,0.004710626 +AR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.027719531 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.639749872 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016338757 +AR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.63030322 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.469608558 +AR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.964637019 +AR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.177378413 +AR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.769872349 +AR,Ammonia,1A4bi_Residential-stationary,biomass,TON,340.3136906 +AR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.273000018 +AR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.020250001 +AR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,257.8512004 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.85577658 +AR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.428262547 +AR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01061378 +AR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.248130368 +AR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.404052376 +AR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.58272077 +AR,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.041560151 +AR,Ammonia,2A1_Cement-production,,TON,57.75 +AR,Ammonia,2B_Chemicals-other,,TON,205.520871 +AR,Ammonia,2C3_Aluminum-production,,TON,3.63108 +AR,Ammonia,2C7_Other-metal,Other_Fuel,TON,178.5554 +AR,Ammonia,2D3d_Coating-application,,TON,0 +AR,Ammonia,2D3h_Printing,,TON,0.0024 +AR,Ammonia,2H1_Pulp-and-paper,,TON,296.687529 +AR,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,31.1881 +AR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,262.92034 +AR,Ammonia,2I_Wood-processing,,TON,3.9 +AR,Ammonia,3B1a_Cattle-dairy,,TON,254.5225959 +AR,Ammonia,3B1b_Cattle-non-dairy,,TON,6351.74937 +AR,Ammonia,3B2_Manure-sheep,,TON,59.62135329 +AR,Ammonia,3B3_Manure-swine,,TON,2107.562313 +AR,Ammonia,3B4_Manure-other,,TON,694.4440701 +AR,Ammonia,3B4_Manure-poultry,,TON,46965.26164 +AR,Ammonia,3B4d_Manure-goats,,TON,230.2822357 +AR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,17046.6 +AR,Ammonia,3F_Ag-res-on-field,,TON,5432.441607 +AR,Ammonia,5A_Solid-waste-disposal,,TON,2.82746 +AR,Ammonia,5B_Compost-biogas,Other_Fuel,TON,64.123359 +AR,Ammonia,5C_Incineration,biomass,TON,14.0109376 +AR,Ammonia,5D1_Wastewater-domestic,,TON,8.2805775 +AR,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,22.4214 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,173616.0846 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,268915.9798 +AR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15557.54902 +AR,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,17067.6 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,291043.7941 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,9316.312579 +AR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.600496696 +AR,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,126373.3819 +AR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,503294.6072 +AR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,13302100.91 +AR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,75869.28256 +AR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,763395.6965 +AR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,386878.3597 +AR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,66553.37568 +AR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,224.52595 +AR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4513684.95 +AR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,133282.9898 +AR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4006402.183 +AR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,87997.64978 +AR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,79499.0294 +AR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5947.469268 +AR,Carbon Dioxide,1A3c_Rail,light_oil,TON,366.7433605 +AR,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.6894 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,57786.59086 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,78619.30809 +AR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3200.876758 +AR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,21834.90147 +AR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,207886.5738 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1582396.311 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,32002.05276 +AR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2219.181655 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1302.01185 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,87683.2941 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,49755.55196 +AR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,189404.3115 +AR,Carbon Dioxide,2C3_Aluminum-production,,TON,9214.2 +AR,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,97.8 +AR,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,48599429 +AR,Carbon Monoxide,11C_Other-natural,,TON,111886.9501 +AR,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,291.8 +AR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,18.81012928 +AR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7265.687 +AR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.138 +AR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,475.9833954 +AR,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,245.0623348 +AR,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0298775 +AR,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,27.550796 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,245.4627975 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6037.597424 +AR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,252.6964032 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.933356038 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,18167.76836 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,75.8570045 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,478.3516776 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.067388735 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,37.06528039 +AR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5090.176941 +AR,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,126.8437481 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,996.1042246 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1926.296009 +AR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.067164145 +AR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6841.408734 +AR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4137.767966 +AR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,213358.8147 +AR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,484.2725682 +AR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11223.6374 +AR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,852.5291394 +AR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2891.273426 +AR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,3.37920849 +AR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3991.948091 +AR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2319.617916 +AR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3683.031005 +AR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1814.767628 +AR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3043.106874 +AR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2403.904538 +AR,Carbon Monoxide,1A3c_Rail,light_oil,TON,83.66910619 +AR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,260.2739181 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,823.6921547 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.976036387 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.466122232 +AR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2124.680605 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,198.5764488 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,16496.25357 +AR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,72.5690427 +AR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,61.41188811 +AR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,46036.44267 +AR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,43521.68991 +AR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.365000073 +AR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250006 +AR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,580.473588 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5546.342157 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7734.875653 +AR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,41.80056719 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.2140724 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,15790.20979 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,96.75425662 +AR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,19134.24618 +AR,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,457.0499883 +AR,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,13.5773 +AR,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6310.16872 +AR,Carbon Monoxide,2A1_Cement-production,,TON,966.221844 +AR,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,41.9145 +AR,Carbon Monoxide,2A6_Other-minerals,,TON,262.436152 +AR,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,362.9856246 +AR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,6271.91164 +AR,Carbon Monoxide,2C3_Aluminum-production,,TON,139.38492 +AR,Carbon Monoxide,2C5_Lead-production,,TON,3.462351 +AR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,9.7483139 +AR,Carbon Monoxide,2D3d_Coating-application,,TON,6.54369 +AR,Carbon Monoxide,2D3h_Printing,,TON,2.08 +AR,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,2.59 +AR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,5682.055764 +AR,Carbon Monoxide,2H2_Food-and-beverage,,TON,318.699119 +AR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,566.076622 +AR,Carbon Monoxide,3Dc_Other-farm,,TON,0.5686 +AR,Carbon Monoxide,3F_Ag-res-on-field,,TON,18282.71216 +AR,Carbon Monoxide,5A_Solid-waste-disposal,,TON,174.5599187 +AR,Carbon Monoxide,5C_Incineration,biomass,TON,192.3442618 +AR,Carbon Monoxide,5C_Open-burning-industrial,,TON,1.14 +AR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,19882.06999 +AR,Carbon Monoxide,5C_Open-burning-residential,,TON,5469.3138 +AR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,519.93916 +AR,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.625431149 +AR,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.13148643 +AR,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,104.652875 +AR,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,0.327129 +AR,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,8.313148103 +AR,Methane,1A2g_Construction_and_Mining,light_oil,TON,6.820134381 +AR,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.052877353 +AR,Methane,1A3bii_Road-LDV,diesel_oil,TON,28.21683856 +AR,Methane,1A3bii_Road-LDV,light_oil,TON,538.9222054 +AR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.683886776 +AR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33.60540191 +AR,Methane,1A3biii_Road-bus,diesel_oil,TON,8.655544046 +AR,Methane,1A3biii_Road-bus,light_oil,TON,7.701816305 +AR,Methane,1A3biii_Road-bus,natural_gas,TON,2.93453789 +AR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,318.7364236 +AR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.855801543 +AR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,89.64030956 +AR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.67917474 +AR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.42612532 +AR,Methane,1A3c_Rail,diesel_oil,TON,0.268323652 +AR,Methane,1A3c_Rail,light_oil,TON,0.238547061 +AR,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.785838027 +AR,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,52.57832031 +AR,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,47.29305383 +AR,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.744067437 +AR,Methane,1A4bi_Residential-mobile,light_oil,TON,162.5134063 +AR,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,54.89574067 +AR,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,32.2977303 +AR,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.55028112 +AR,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.054200557 +AR,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,125.3909658 +AR,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.721966166 +AR,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,176.4218677 +AR,Methane,2C3_Aluminum-production,,TON,0.1766055 +AR,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,0.0018745 +AR,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,61427.23428 +AR,Nitrogen Oxides,11C_Other-natural,,TON,25748.32783 +AR,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,227.23 +AR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,82.0248739 +AR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,20617.12 +AR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.65 +AR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1238.236408 +AR,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,201.152702 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.138695 +AR,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,4.254727 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,692.9931293 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,617.058791 +AR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,40.96526252 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,29.67214622 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,7616.376418 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,351.7624445 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6087.66443 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.261968049 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,126.68394 +AR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9871.987685 +AR,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,100.3172838 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1591.746755 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,23.35532256 +AR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.014814162 +AR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1075.537446 +AR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1493.473505 +AR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,23444.82637 +AR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,194.1627184 +AR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1187.668101 +AR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2505.666676 +AR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,294.1579788 +AR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.92449045 +AR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12799.77561 +AR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,266.0126303 +AR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11768.44512 +AR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,171.32928 +AR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,150.3556779 +AR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,12523.51229 +AR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.784310622 +AR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1929.983898 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,231.0999981 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.97339072 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.781248914 +AR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2773.005954 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,395.1471945 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,200.1339617 +AR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17.98977711 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,155.880347 +AR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,411.5399396 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,668.8579366 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4.913999921 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.364499991 +AR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1442.212778 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13418.76446 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,188.6477019 +AR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.170649506 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.1082465 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,172.1208573 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,460.7335916 +AR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1216.771851 +AR,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,360.5955751 +AR,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.4604 +AR,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6891.446867 +AR,Nitrogen Oxides,2A1_Cement-production,,TON,825.50741 +AR,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,561.163 +AR,Nitrogen Oxides,2A6_Other-minerals,,TON,325.0105967 +AR,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,490.5810329 +AR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1087.726839 +AR,Nitrogen Oxides,2C3_Aluminum-production,,TON,238.50983 +AR,Nitrogen Oxides,2C5_Lead-production,,TON,10.498717 +AR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,11.611486 +AR,Nitrogen Oxides,2D3d_Coating-application,,TON,8.544393 +AR,Nitrogen Oxides,2D3h_Printing,,TON,2.74 +AR,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,4.7 +AR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,4852.630451 +AR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,10.37395 +AR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,150.735106 +AR,Nitrogen Oxides,3Dc_Other-farm,,TON,0.677 +AR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,866.0399283 +AR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,65.3381221 +AR,Nitrogen Oxides,5C_Incineration,biomass,TON,469.0894212 +AR,Nitrogen Oxides,5C_Open-burning-industrial,,TON,6.46 +AR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,482.5744908 +AR,Nitrogen Oxides,5C_Open-burning-residential,,TON,386.069215 +AR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,28.78234744 +AR,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,10.231 +AR,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.312906 +AR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.519831648 +AR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,421.3476441 +AR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.249036141 +AR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26.2720621 +AR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.736244698 +AR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.36455649 +AR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.01617777 +AR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.79501243 +AR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.09179786 +AR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.989886821 +AR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.100005146 +AR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.003677232 +AR,Nitrous Oxide,2C3_Aluminum-production,,TON,0.168927 +AR,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1566.757223 +AR,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,83.21 +AR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.283939648 +AR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,730.45199 +AR,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.7086724 +AR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,110.7121158 +AR,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,79.97259825 +AR,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.007322791 +AR,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.347157292 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,47.18628511 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,12098.9754 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.71792047 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,259.338965 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.080894638 +AR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,63.34513247 +AR,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,8.105596115 +AR,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1011769 +AR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,170742.4465 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,513.2291372 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.024010322 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.028305408 +AR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.16806063 +AR,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,5576.082784 +AR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.294840001 +AR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.02185 +AR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.903200001 +AR,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,4.273227071 +AR,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02 +AR,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23.04577305 +AR,PM10 Filterable,2A1_Cement-production,,TON,37.17978145 +AR,PM10 Filterable,2A2_Lime-production,,TON,35.23136291 +AR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,13010.73488 +AR,PM10 Filterable,2A6_Other-minerals,,TON,3339.83659 +AR,PM10 Filterable,2B_Chemicals-other,,TON,397.2535622 +AR,PM10 Filterable,2C_Iron-steel-alloy,,TON,85.4921604 +AR,PM10 Filterable,2C3_Aluminum-production,,TON,55.18473228 +AR,PM10 Filterable,2C5_Lead-production,,TON,0.187410753 +AR,PM10 Filterable,2C6_Zinc-production,,TON,0.026 +AR,PM10 Filterable,2C7_Other-metal,,TON,18.53965324 +AR,PM10 Filterable,2D3d_Coating-application,,TON,3.32370496 +AR,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.2852 +AR,PM10 Filterable,2H1_Pulp-and-paper,,TON,2005.017473 +AR,PM10 Filterable,2H2_Food-and-beverage,,TON,114.7938665 +AR,PM10 Filterable,2H3_Other-industrial-processes,,TON,315.159662 +AR,PM10 Filterable,2I_Wood-processing,,TON,6.97854735 +AR,PM10 Filterable,3B1a_Cattle-dairy,,TON,46.69984131 +AR,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,19254.54107 +AR,PM10 Filterable,3Dc_Other-farm,,TON,112453.7646 +AR,PM10 Filterable,5A_Solid-waste-disposal,,TON,186.8167152 +AR,PM10 Filterable,5C_Incineration,biomass,TON,56.18191345 +AR,PM10 Filterable,5C_Open-burning-industrial,,TON,65.3658 +AR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2461.130061 +AR,PM10 Filterable,5C_Open-burning-residential,,TON,2064.235136 +AR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,176.4079398 +AR,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.470524 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,83.21 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.482375195 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,922.6894 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.799075 +AR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,210.5158149 +AR,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,114.8076891 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.0097495 +AR,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.7935932 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,38.65979944 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.05995499 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.863790138 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,50.63361346 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,12549.29676 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,27.6769133 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,342.8894532 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.022253188 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.481326271 +AR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,185.8681437 +AR,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,18.76814173 +AR,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.266255 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,169.7388782 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.80598132 +AR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000194718 +AR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,165.6317856 +AR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,170742.4465 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,87.0012435 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1247.912799 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,13.00062812 +AR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,69.14888542 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,178.8974611 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,12.21164502 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.064553006 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,687.6361803 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,13.99887728 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,679.9784276 +AR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.756910085 +AR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.40797243 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,368.9293087 +AR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.04670151 +AR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,55.09324275 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,533.293134 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.75457291 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.064500864 +AR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.40906162 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,33.00499055 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,20.53856683 +AR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.403621264 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.13842774 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,189.101333 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5839.419189 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.649739998 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048199999 +AR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.544159843 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,930.9506538 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,19.99367547 +AR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.27131083 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.35757246 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,98.37784886 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.13511827 +AR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,50.0448776 +AR,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,9.923765122 +AR,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02 +AR,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,97.76087787 +AR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,37.45836281 +AR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,61.0764933 +AR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,13010.73488 +AR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3419.249984 +AR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,437.6065526 +AR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,496.9266794 +AR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,93.73060378 +AR,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,2.991553 +AR,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.026 +AR,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,23.1136901 +AR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,4.6137468 +AR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.176 +AR,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.2852 +AR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2575.967544 +AR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,838.4181203 +AR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,319.2323169 +AR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,6.97854735 +AR,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,46.69984131 +AR,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,19254.54107 +AR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,112454.1356 +AR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2690.74095 +AR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,315.4735179 +AR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,59.48510035 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,67.45 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2461.130061 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2064.235136 +AR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,176.4079398 +AR,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.470625509 +AR,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,67.76877 +AR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.169103857 +AR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,337.48364 +AR,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.5762956 +AR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,100.5439123 +AR,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,55.75069323 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.00175747 +AR,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.117853792 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,20.584472 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,10423.60113 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.52162414 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,62.89047287 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.020418915 +AR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,55.97628639 +AR,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,7.599299365 +AR,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.09485334 +AR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,18905.31261 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,444.9253481 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.794318885 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022809042 +AR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.978312827 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,5542.237101 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.226590005 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.0168 +AR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.596759965 +AR,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,4.200332694 +AR,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0143 +AR,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,22.98854031 +AR,PM2.5 Filterable,2A1_Cement-production,,TON,13.12227526 +AR,PM2.5 Filterable,2A2_Lime-production,,TON,9.894004414 +AR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1301.073488 +AR,PM2.5 Filterable,2A6_Other-minerals,,TON,502.579247 +AR,PM2.5 Filterable,2B_Chemicals-other,,TON,279.284047 +AR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,82.9427486 +AR,PM2.5 Filterable,2C3_Aluminum-production,,TON,33.12594186 +AR,PM2.5 Filterable,2C5_Lead-production,,TON,0.159026597 +AR,PM2.5 Filterable,2C6_Zinc-production,,TON,0.026 +AR,PM2.5 Filterable,2C7_Other-metal,,TON,10.54690447 +AR,PM2.5 Filterable,2D3d_Coating-application,,TON,2.876094393 +AR,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.23665531 +AR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1436.243446 +AR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,19.78749685 +AR,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,200.932572 +AR,PM2.5 Filterable,2I_Wood-processing,,TON,4.739172399 +AR,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,9.706523228 +AR,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,4002.038978 +AR,PM2.5 Filterable,3Dc_Other-farm,,TON,21574.97072 +AR,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,49.77605334 +AR,PM2.5 Filterable,5C_Incineration,biomass,TON,36.09655888 +AR,PM2.5 Filterable,5C_Open-burning-industrial,,TON,61.28043 +AR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2243.971396 +AR,PM2.5 Filterable,5C_Open-burning-residential,,TON,1890.404796 +AR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,136.0198042 +AR,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.26802 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,67.76877 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.367539387 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,529.72106 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.6666982 +AR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,182.3258045 +AR,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,90.5857841 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.004184179 +AR,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.5642897 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,37.49965215 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.68182675 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.863790138 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,24.0222789 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,10873.78653 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,24.48125091 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,146.3713467 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.022255832 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.421230056 +AR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,177.9778092 +AR,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,18.26184498 +AR,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2599314 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,164.6466943 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,13.62891176 +AR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000194718 +AR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,139.6390167 +AR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,18905.31261 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,61.68443053 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,419.6076726 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.004002359 +AR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,22.36471869 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,134.4652693 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.636727018 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.039313473 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,461.4198587 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.203211879 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,471.86519 +AR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.044943291 +AR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.23011286 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,357.8570533 +AR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.043047801 +AR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,53.39704907 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,464.9893429 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.524881508 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.059208734 +AR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.16201186 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32.01483914 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,18.94014608 +AR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.403621264 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,9.834275565 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,173.9818832 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5805.573506 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.581489984 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043150002 +AR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.237719684 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,903.0220298 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,18.39452518 +AR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.27131083 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.31684559 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,90.50827425 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.831064875 +AR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,46.0412804 +AR,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,9.850870935 +AR,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0143 +AR,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,97.70364514 +AR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,13.40085671 +AR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,35.73913564 +AR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1301.073488 +AR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,572.8726407 +AR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,319.637029 +AR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,487.2311876 +AR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,70.96876159 +AR,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,2.96316876 +AR,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.026 +AR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,15.12094053 +AR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,4.157877393 +AR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.176 +AR,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.23665531 +AR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2002.789932 +AR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,743.4117836 +AR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,205.0052269 +AR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,4.739172399 +AR,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,9.706523228 +AR,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4002.038978 +AR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,21575.34172 +AR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1761.327802 +AR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,178.4328561 +AR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,39.39974588 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,63.36464 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2243.971396 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1890.404796 +AR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,136.0198042 +AR,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.268121509 +AR,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,105.3 +AR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.142425226 +AR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,35915.16 +AR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,3.9 +AR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,52.56123349 +AR,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,96.16643009 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0091205 +AR,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,188.079155 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.324153141 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.32967207 +AR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.087198788 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,108.0274991 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,785.8283019 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,91.0223283 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,14441.65445 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.981424831 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.833112986 +AR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,971.3328505 +AR,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,9.466931412 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.520869989 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.142788431 +AR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.95492E-06 +AR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,134.1690596 +AR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.343973897 +AR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,213.0402224 +AR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.648963291 +AR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.23642226 +AR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.371373493 +AR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.062335829 +AR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00118876 +AR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38.2116214 +AR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.124326305 +AR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.07417569 +AR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.402932986 +AR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.255524345 +AR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,8.39487799 +AR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005914506 +AR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7.41015089 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,26.38419927 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.669676033 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01666 +AR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.73271426 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.485172164 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.226227999 +AR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.017931248 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.189103949 +AR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.405643128 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,140.6378027 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.93829993 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.00342325 +AR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.705440408 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.40888103 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.525548344 +AR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.012437437 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011372034 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.437527172 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.457390102 +AR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.112419738 +AR,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,16.91085295 +AR,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00019 +AR,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.255071341 +AR,Sulfur Dioxide,2A1_Cement-production,,TON,198.0103059 +AR,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,46.2504 +AR,Sulfur Dioxide,2A6_Other-minerals,,TON,187.45195 +AR,Sulfur Dioxide,2B_Chemicals-other,,TON,170.8259509 +AR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,568.8448969 +AR,Sulfur Dioxide,2C3_Aluminum-production,,TON,131.0841218 +AR,Sulfur Dioxide,2C5_Lead-production,,TON,0.64688632 +AR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.93242709 +AR,Sulfur Dioxide,2D3d_Coating-application,,TON,0.066026356 +AR,Sulfur Dioxide,2D3h_Printing,,TON,0.015 +AR,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.02 +AR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,391.497737 +AR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,8.77215 +AR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1734.437443 +AR,Sulfur Dioxide,3Dc_Other-farm,,TON,0.1015 +AR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,416.7341575 +AR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,27.3808454 +AR,Sulfur Dioxide,5C_Incineration,biomass,TON,100.4556277 +AR,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,200.2684291 +AR,Sulfur Dioxide,5C_Open-burning-residential,,TON,64.3448666 +AR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.528158774 +AR,Volatile Organic Compounds,11C_Other-natural,,TON,1128899.672 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,10.28 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.298645838 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,289.3116 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.028704 +AR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,54.51050336 +AR,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,6.76643112 +AR,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,881.9124714 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.08806 +AR,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.9468135 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,45.25941571 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,179.4315938 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22.62203122 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.978650388 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,605.5468735 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.89716551 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,84.73026138 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.013685522 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.455809578 +AR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,562.000849 +AR,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,22.31519805 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,164.6583639 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,133.4841524 +AR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011430104 +AR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,577.0132944 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,431.2442693 +AR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,16310.56964 +AR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,49.13448184 +AR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,796.8045262 +AR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,206.1741102 +AR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,202.0972612 +AR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.443821029 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,906.5631004 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,99.31277608 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,660.2412097 +AR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,84.90973083 +AR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,574.488443 +AR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,601.6998572 +AR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.17056374 +AR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,90.54013012 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,17.83688998 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.124814838 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.186663972 +AR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,142.3677077 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,45.27307253 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,581.1527163 +AR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.22298224 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,14.39917846 +AR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2754.644523 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,6472.084955 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.194648997 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.0142 +AR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,79.80056276 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1095.935953 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,440.3239028 +AR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.577550721 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.39630526 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3316.094945 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.67054134 +AR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4202.830724 +AR,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,2695.289729 +AR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,650.3550885 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,113.3565448 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,904.2457575 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6570.165064 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6549.520144 +AR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,265.21 +AR,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6286.815149 +AR,Volatile Organic Compounds,2A1_Cement-production,,TON,66.891438 +AR,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,4.79771 +AR,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,0.4 +AR,Volatile Organic Compounds,2A6_Other-minerals,,TON,110.2412973 +AR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.96508458 +AR,Volatile Organic Compounds,2B_Chemicals-other,,TON,423.5191048 +AR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,269.9343835 +AR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,257.338053 +AR,Volatile Organic Compounds,2C5_Lead-production,,TON,40.44429712 +AR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,17.7216636 +AR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13167.95579 +AR,Volatile Organic Compounds,2D3d_Coating-application,,TON,9850.581173 +AR,Volatile Organic Compounds,2D3e_Degreasing,,TON,2113.420808 +AR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,12.51540027 +AR,Volatile Organic Compounds,2D3h_Printing,,TON,7297.825186 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,683.9224686 +AR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1048.196154 +AR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,12704.46261 +AR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1127.992923 +AR,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1881.901329 +AR,Volatile Organic Compounds,2I_Wood-processing,,TON,97.5674 +AR,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,20.36180813 +AR,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,508.1399503 +AR,Volatile Organic Compounds,3B2_Manure-sheep,,TON,4.769708368 +AR,Volatile Organic Compounds,3B3_Manure-swine,,TON,168.6049984 +AR,Volatile Organic Compounds,3B4_Manure-other,,TON,55.55552501 +AR,Volatile Organic Compounds,3B4_Manure-poultry,,TON,3757.220893 +AR,Volatile Organic Compounds,3B4d_Manure-goats,,TON,18.42258122 +AR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.0372 +AR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,5448.501083 +AR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2706.52513 +AR,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,89.71544518 +AR,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,453.72131 +AR,Volatile Organic Compounds,5C_Incineration,biomass,TON,16.82716349 +AR,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,4.39 +AR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1363.272923 +AR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,402.471545 +AR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,129.9847908 +AR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,41.647875 +AR,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,8.705918 +AZ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,66.12897 +AZ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,232.9454843 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.702570816 +AZ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.345667919 +AZ,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.254402752 +AZ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.193407426 +AZ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +AZ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,82.12500226 +AZ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,21.6887573 +AZ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.853647654 +AZ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,23.82943612 +AZ,Ammonia,1A3bii_Road-LDV,light_oil,TON,1749.401796 +AZ,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.249140554 +AZ,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,126.1849376 +AZ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.062919389 +AZ,Ammonia,1A3biii_Road-bus,light_oil,TON,4.501999525 +AZ,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.61360767 +AZ,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,75.16445933 +AZ,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,5.126055074 +AZ,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,53.26694903 +AZ,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,17.26756707 +AZ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.33545596 +AZ,Ammonia,1A3c_Rail,diesel_oil,TON,11.4943457 +AZ,Ammonia,1A3c_Rail,light_oil,TON,0.004505298 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.300931348 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.147901368 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +AZ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.581756874 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.888844422 +AZ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.012840634 +AZ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.368316108 +AZ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.237669024 +AZ,Ammonia,1A4bi_Residential-stationary,biomass,TON,103.7842234 +AZ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.020724786 +AZ,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,340.2461228 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.41178127 +AZ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.036871347 +AZ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024492618 +AZ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.456368255 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.266309162 +AZ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.754569066 +AZ,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Ammonia,2A1_Cement-production,,TON,4.8 +AZ,Ammonia,2A6_Other-minerals,,TON,10.390303 +AZ,Ammonia,2B_Chemicals-other,Other_Fuel,TON,118.1683 +AZ,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.020993 +AZ,Ammonia,2H2_Food-and-beverage,,TON,2555.2347 +AZ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,35.2251195 +AZ,Ammonia,3B1a_Cattle-dairy,,TON,20132.64687 +AZ,Ammonia,3B1b_Cattle-non-dairy,,TON,8914.4434 +AZ,Ammonia,3B2_Manure-sheep,,TON,482.7861602 +AZ,Ammonia,3B3_Manure-swine,,TON,2242.57304 +AZ,Ammonia,3B4_Manure-other,,TON,1614.915988 +AZ,Ammonia,3B4_Manure-poultry,,TON,1976.609806 +AZ,Ammonia,3B4d_Manure-goats,,TON,713.733221 +AZ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,31038.681 +AZ,Ammonia,3F_Ag-res-on-field,,TON,184.438 +AZ,Ammonia,5B_Compost-biogas,Other_Fuel,TON,166.352291 +AZ,Ammonia,5C_Incineration,biomass,TON,0 +AZ,Ammonia,5C_Open-burning-land-clearing,,TON,0 +AZ,Ammonia,5C_Open-burning-residential,,TON,0 +AZ,Ammonia,5C_Open-burning-yard-waste,,TON,0 +AZ,Ammonia,5D1_Wastewater-domestic,,TON,18.019434 +AZ,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,4.01856 +AZ,Ammonia,6A_Other-commertial,Other_Fuel,TON,1184.434 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,209824.7823 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,206117.5671 +AZ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11842.09833 +AZ,Carbon Dioxide,1A2_Industrial_fuel_combustion,Other_Fuel,TON,3990.350617 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2670649.775 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,69558.87112 +AZ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.23768287 +AZ,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1355334.551 +AZ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,768359.7264 +AZ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,23824651.59 +AZ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,168239.6129 +AZ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1885303.782 +AZ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,374359.0758 +AZ,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,132758.2984 +AZ,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,24147.182 +AZ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4636454.026 +AZ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,120198.6604 +AZ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3149493.83 +AZ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,484825.5154 +AZ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,164783.6056 +AZ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5684.270731 +AZ,Carbon Dioxide,1A3c_Rail,light_oil,TON,351.2016908 +AZ,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.297075 +AZ,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,91917.612 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,109354.2581 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,163996.2028 +AZ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6733.096223 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,45342.6682 +AZ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,394905.0006 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,173869.8881 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2790.529829 +AZ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,409.198094 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3004.89482 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,103214.5662 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,32794.64995 +AZ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,127199.515 +AZ,Carbon Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,176.694 +AZ,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6425.81144 +AZ,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,54038667.81 +AZ,Carbon Monoxide,11C_Other-natural,,TON,159399.61 +AZ,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0304 +AZ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,139.86 +AZ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,11.23923893 +AZ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7711.59012 +AZ,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,890.2612101 +AZ,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,19.7953365 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,321.8398011 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5946.869338 +AZ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,178.2502397 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,22.19391799 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,670.5205292 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,24.57997619 +AZ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1005.220604 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,7711.56078 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,14906.28171 +AZ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.51093254 +AZ,Carbon Monoxide,1A2g_Industry-other,Other_Fuel,TON,0.364705 +AZ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,19806.22799 +AZ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7028.702094 +AZ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,413717.5052 +AZ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1224.404725 +AZ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35070.54517 +AZ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,894.2117395 +AZ,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,6930.602023 +AZ,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,97.632126 +AZ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4112.595167 +AZ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1870.668001 +AZ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3300.872521 +AZ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7269.459016 +AZ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6386.396 +AZ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3569.6502 +AZ,Carbon Monoxide,1A3c_Rail,light_oil,TON,80.63987208 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,51.2433316 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.540245425 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.722110809 +AZ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1518.899684 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,403.4580696 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,35216.69213 +AZ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,156.9372023 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,121.0788085 +AZ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,90377.36016 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,15268.09436 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.103623934 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,760.3793093 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,499.3833091 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,540.2233369 +AZ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.74974422 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.8206206 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,17365.32841 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,65.21516382 +AZ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,13855.86591 +AZ,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00016 +AZ,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.73814436 +AZ,Carbon Monoxide,2A1_Cement-production,,TON,491.4768013 +AZ,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,226.6 +AZ,Carbon Monoxide,2A6_Other-minerals,,TON,4563.053768 +AZ,Carbon Monoxide,2B_Chemicals-other,,TON,1.97 +AZ,Carbon Monoxide,2C_Iron-steel-alloy,,TON,569.1525 +AZ,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,128.758016 +AZ,Carbon Monoxide,2C7a_Copper-production,,TON,53.0605 +AZ,Carbon Monoxide,2D3d_Coating-application,Other_Fuel,TON,2.97964 +AZ,Carbon Monoxide,2D3e_Degreasing,,TON,18.1615 +AZ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.33405 +AZ,Carbon Monoxide,2H2_Food-and-beverage,,TON,1121.695635 +AZ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,176.9746484 +AZ,Carbon Monoxide,3F_Ag-res-on-field,,TON,1772.13 +AZ,Carbon Monoxide,5A_Solid-waste-disposal,,TON,295.0944194 +AZ,Carbon Monoxide,5C_Incineration,biomass,TON,23.66098694 +AZ,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.24 +AZ,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3700.394105 +AZ,Carbon Monoxide,5C_Open-burning-residential,,TON,2400.78304 +AZ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,64.7842716 +AZ,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,41.48772 +AZ,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.793889387 +AZ,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22.7794083 +AZ,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,75.2928498 +AZ,Methane,1A2_Industrial_fuel_combustion,Other_Fuel,TON,0.212114844 +AZ,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,75.87659295 +AZ,Methane,1A2g_Construction_and_Mining,light_oil,TON,51.74820972 +AZ,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.910946537 +AZ,Methane,1A3bii_Road-LDV,diesel_oil,TON,43.37525177 +AZ,Methane,1A3bii_Road-LDV,light_oil,TON,995.0392507 +AZ,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.07734688 +AZ,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,97.10812471 +AZ,Methane,1A3biii_Road-bus,diesel_oil,TON,8.719341635 +AZ,Methane,1A3biii_Road-bus,light_oil,TON,22.20772374 +AZ,Methane,1A3biii_Road-bus,natural_gas,TON,64.084485 +AZ,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,316.4995786 +AZ,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.349436461 +AZ,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,89.07427528 +AZ,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,11.90588908 +AZ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.52971717 +AZ,Methane,1A3c_Rail,diesel_oil,TON,0.25613 +AZ,Methane,1A3c_Rail,light_oil,TON,0.228130036 +AZ,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.9251262 +AZ,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.636004536 +AZ,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,107.9936165 +AZ,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,99.8885555 +AZ,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.787881752 +AZ,Methane,1A4bi_Residential-mobile,light_oil,TON,317.5957657 +AZ,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.61292556 +AZ,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.059232947 +AZ,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.936838609 +AZ,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.130688758 +AZ,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,118.1219572 +AZ,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.88232698 +AZ,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,124.9004672 +AZ,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,58638.298 +AZ,Nitrogen Oxides,11C_Other-natural,,TON,16680.6833 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0353 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,168.18 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,52.57896501 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,30986.3858 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3687.477906 +AZ,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,5.6314115 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,969.2660384 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,528.8200887 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,30.3127451 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,8.152510036 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3073.550847 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.638990124 +AZ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3012.853977 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,14584.71908 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,188.2370196 +AZ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.235602061 +AZ,Nitrogen Oxides,1A2g_Industry-other,Other_Fuel,TON,0.10945 +AZ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,6309.848491 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2444.252213 +AZ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,45464.57819 +AZ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,557.4603943 +AZ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3950.71869 +AZ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3094.063518 +AZ,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,941.267702 +AZ,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,46.969453 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14079.36164 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,206.1190662 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10843.67686 +AZ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,727.9827172 +AZ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,342.7948721 +AZ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,18057.22501 +AZ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.739133867 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,45.52890137 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.57282053 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.031508882 +AZ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2017.517652 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,790.267784 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,391.2308059 +AZ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38.19787191 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,316.4731643 +AZ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,736.165259 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,276.3329906 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.373046171 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1883.218011 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1065.243244 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,9.940884909 +AZ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.894155085 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.4101842 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,206.4983836 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,331.1503291 +AZ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,867.6727933 +AZ,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.001575 +AZ,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.140153779 +AZ,Nitrogen Oxides,2A1_Cement-production,,TON,309.4 +AZ,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1362.86 +AZ,Nitrogen Oxides,2A6_Other-minerals,,TON,2554.626979 +AZ,Nitrogen Oxides,2B_Chemicals-other,,TON,138.2599011 +AZ,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,45.9495 +AZ,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,34.371728 +AZ,Nitrogen Oxides,2C7a_Copper-production,,TON,146.12 +AZ,Nitrogen Oxides,2D3d_Coating-application,Other_Fuel,TON,3.547185 +AZ,Nitrogen Oxides,2D3e_Degreasing,,TON,3.9705 +AZ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,1.588155 +AZ,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,3.360646 +AZ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,87.60065365 +AZ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,57.108 +AZ,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,58.4667914 +AZ,Nitrogen Oxides,5C_Incineration,biomass,TON,30.89196527 +AZ,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.007 +AZ,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,96.60904957 +AZ,Nitrogen Oxides,5C_Open-burning-residential,,TON,169.467034 +AZ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.58627182 +AZ,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,18.65267 +AZ,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.0268 +AZ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.230878709 +AZ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,943.1421169 +AZ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.565291509 +AZ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,92.63199522 +AZ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.753694991 +AZ,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.926341454 +AZ,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.53349085 +AZ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.35912733 +AZ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.654446669 +AZ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.946465979 +AZ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.34471119 +AZ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.204554786 +AZ,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.90905 +AZ,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1595.957454 +AZ,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.000579832 +AZ,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,68.831838 +AZ,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.863584399 +AZ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2894.241765 +AZ,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,193.1070176 +AZ,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,1.1256555 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,18.44163645 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,195.1705175 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.021500799 +AZ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,49.9389521 +AZ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,80476.36222 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,61.15213605 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.840300558 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008162572 +AZ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.52570226 +AZ,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,2133.291 +AZ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.021920588 +AZ,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.770643862 +AZ,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000015 +AZ,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.025405277 +AZ,PM10 Filterable,2A1_Cement-production,,TON,253.5922569 +AZ,PM10 Filterable,2A2_Lime-production,,TON,13.30132865 +AZ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,22960.74824 +AZ,PM10 Filterable,2A6_Other-minerals,,TON,48134.46854 +AZ,PM10 Filterable,2B_Chemicals-other,,TON,76.5019594 +AZ,PM10 Filterable,2C_Iron-steel-alloy,,TON,6.380009903 +AZ,PM10 Filterable,2C7_Other-metal,,TON,1128.688191 +AZ,PM10 Filterable,2C7a_Copper-production,,TON,318.358 +AZ,PM10 Filterable,2D3d_Coating-application,,TON,2.366655 +AZ,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.00202 +AZ,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,284.0559169 +AZ,PM10 Filterable,2H2_Food-and-beverage,,TON,1196.785018 +AZ,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1108.735959 +AZ,PM10 Filterable,2I_Wood-processing,,TON,0.03056505 +AZ,PM10 Filterable,3B1a_Cattle-dairy,,TON,2305.429788 +AZ,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,9952.5068 +AZ,PM10 Filterable,3B3_Manure-swine,,TON,77.06 +AZ,PM10 Filterable,3B4_Manure-poultry,,TON,0.08 +AZ,PM10 Filterable,3Dc_Other-farm,,TON,18751.22023 +AZ,PM10 Filterable,5A_Solid-waste-disposal,,TON,233.7788704 +AZ,PM10 Filterable,5C_Incineration,biomass,TON,14.82391654 +AZ,PM10 Filterable,5C_Open-burning-industrial,,TON,0.027246 +AZ,PM10 Filterable,5C_Open-burning-land-clearing,,TON,461.857749 +AZ,PM10 Filterable,5C_Open-burning-residential,,TON,906.106507 +AZ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,21.9803772 +AZ,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,7.58 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0006 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,74.62791 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.935647195 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4882.74217 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,370.4022865 +AZ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,1.1256555 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,48.7197967 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,25.67242421 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.416730837 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,18.94803124 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,375.710529 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.038845078 +AZ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,96.68415947 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1174.496385 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,110.1296635 +AZ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001855234 +AZ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,450.4551672 +AZ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,80476.36222 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,131.8093571 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2279.485831 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,32.78802926 +AZ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,174.3162477 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,194.5439754 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,29.19294327 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.44506911 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,804.5912048 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,13.46047307 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,676.350869 +AZ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,49.55208944 +AZ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.37908688 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,528.1785245 +AZ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.044660631 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,53.28372088 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.913281814 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.007365263 +AZ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.24301047 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.58109371 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,42.8122777 +AZ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.850149576 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,19.2847038 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,343.7138827 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2219.91211 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.049324995 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.882593216 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,90.02137651 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.510467844 +AZ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.049607304 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.05193222 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,97.83977606 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.239717403 +AZ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,43.30591948 +AZ,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,4.306 +AZ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000015 +AZ,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.073779433 +AZ,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,255.677551 +AZ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,70.24825089 +AZ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,22960.77424 +AZ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,48136.00823 +AZ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,76.5072365 +AZ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,31.8063385 +AZ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,1129.377689 +AZ,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,415.894148 +AZ,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.366655 +AZ,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.00202 +AZ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,284.0610169 +AZ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2817.427542 +AZ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1108.849779 +AZ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.03056505 +AZ,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1599.119788 +AZ,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,8643.1968 +AZ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,18751.23975 +AZ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,282.71 +AZ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,260.2379242 +AZ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,15.19500154 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.03 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,461.859939 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,906.106507 +AZ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,21.9803772 +AZ,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,7.585067 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.000579832 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.009138 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.057979229 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1443.677312 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,192.5560853 +AZ,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,1.1012005 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,15.85688745 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,177.0435761 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.021496838 +AZ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,49.07692061 +AZ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,10273.93265 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,54.49386306 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.882404853 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008973474 +AZ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.40704082 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,2068.500985 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.016784685 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.057854228 +AZ,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000015 +AZ,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.025405277 +AZ,PM2.5 Filterable,2A1_Cement-production,,TON,133.1653914 +AZ,PM2.5 Filterable,2A2_Lime-production,,TON,4.81006068 +AZ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2296.060824 +AZ,PM2.5 Filterable,2A6_Other-minerals,,TON,6258.57629 +AZ,PM2.5 Filterable,2B_Chemicals-other,,TON,17.04696536 +AZ,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1.935146402 +AZ,PM2.5 Filterable,2C7_Other-metal,,TON,354.238686 +AZ,PM2.5 Filterable,2C7a_Copper-production,,TON,312.193 +AZ,PM2.5 Filterable,2D3d_Coating-application,,TON,2.0353026 +AZ,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.00202 +AZ,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,206.2000775 +AZ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,949.4211781 +AZ,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,838.0322438 +AZ,PM2.5 Filterable,2I_Wood-processing,,TON,0.02443505 +AZ,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,479.1757042 +AZ,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2068.61067 +AZ,PM2.5 Filterable,3B3_Manure-swine,,TON,0.82 +AZ,PM2.5 Filterable,3B4_Manure-poultry,,TON,0.006994919 +AZ,PM2.5 Filterable,3Dc_Other-farm,,TON,3503.624996 +AZ,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,112.2275091 +AZ,PM2.5 Filterable,5C_Incineration,biomass,TON,9.499632249 +AZ,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.027246 +AZ,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,424.5749632 +AZ,PM2.5 Filterable,5C_Open-burning-residential,,TON,829.802772 +AZ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,16.9480264 +AZ,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,5.18 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0006 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,10.80521 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.114040666 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3432.174712 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,369.8513493 +AZ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,1.1012005 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,47.25534594 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,25.09884303 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.416730837 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,16.37623595 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,357.5827284 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.038830144 +AZ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,95.79811133 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1139.26142 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,101.3743133 +AZ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001855234 +AZ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,401.7170949 +AZ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10273.93265 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,93.43892794 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,842.7358493 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23.82336734 +AZ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,63.96420041 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,152.41746 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,16.54415475 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.52772753 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,509.9772239 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.304911603 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,448.5519435 +AZ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,17.66250597 +AZ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.72641043 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,512.3269874 +AZ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.041170208 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,45.58763217 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.931487726 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.007712643 +AZ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.18823257 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,64.5836611 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,39.47984433 +AZ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.850149576 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,18.70616436 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,316.2483184 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2155.119174 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.044143789 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.171394324 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,87.32073168 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.469645512 +AZ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.049607304 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.96037456 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,90.01406 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.022527905 +AZ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,39.84143753 +AZ,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,4.306 +AZ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.000015 +AZ,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.073779433 +AZ,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,135.2506865 +AZ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,61.76051855 +AZ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2296.077424 +AZ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,6259.930139 +AZ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,17.04789545 +AZ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,20.004495 +AZ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,354.8560943 +AZ,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,409.729148 +AZ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.0353026 +AZ,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.00202 +AZ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,208.7409775 +AZ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2570.062271 +AZ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,838.1424775 +AZ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.02443505 +AZ,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,332.3757042 +AZ,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1796.48067 +AZ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3503.639077 +AZ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,201.194 +AZ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,136.4085221 +AZ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.882566249 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.03 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,424.5771532 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,829.802772 +AZ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,16.9480264 +AZ,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.189783 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0001 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1.18 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.72166482 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,13491.592 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,92.49155912 +AZ,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.166895 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.804376456 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.698660252 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.06637623 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.937811421 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,417.8183111 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.033447503 +AZ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,24.30278552 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,21.67519697 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.551184121 +AZ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.94669E-05 +AZ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,803.9781493 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.637750813 +AZ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,244.0470004 +AZ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.45050766 +AZ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.84525056 +AZ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.256662861 +AZ,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.271147436 +AZ,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.127847057 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,39.26449478 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.109909492 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.83324078 +AZ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.216523899 +AZ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.707900013 +AZ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,214.1874629 +AZ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005110973 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.7759633 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.816401991 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.003821546 +AZ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.82253273 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.928737218 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.208003436 +AZ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.037718444 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.390482653 +AZ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.898909298 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,35.75783105 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.081805785 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.40366032 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.503128807 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.039027993 +AZ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00229389 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02635595 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.39673402 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.30147303 +AZ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.996760377 +AZ,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000004 +AZ,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.001679069 +AZ,Sulfur Dioxide,2A1_Cement-production,,TON,2.92311283 +AZ,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1677.1 +AZ,Sulfur Dioxide,2A6_Other-minerals,,TON,45.9283835 +AZ,Sulfur Dioxide,2B_Chemicals-other,,TON,0.01234 +AZ,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,34.995 +AZ,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,36.04802 +AZ,Sulfur Dioxide,2C7a_Copper-production,,TON,24425.865 +AZ,Sulfur Dioxide,2D3d_Coating-application,Other_Fuel,TON,0.021285 +AZ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.009525 +AZ,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.02053457 +AZ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,15.41177226 +AZ,Sulfur Dioxide,3F_Ag-res-on-field,,TON,18.4436 +AZ,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,14.5078751 +AZ,Sulfur Dioxide,5C_Incineration,biomass,TON,2.590448525 +AZ,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,34.38296904 +AZ,Sulfur Dioxide,5C_Open-burning-residential,,TON,28.2445044 +AZ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.439607542 +AZ,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,69.28403 +AZ,Volatile Organic Compounds,11C_Other-natural,,TON,831261.65 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0073 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,68.17871 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.250756294 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,472.9195762 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,96.8539985 +AZ,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,82.47093662 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,67.04055178 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,173.1099717 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16.2754796 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.625950044 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,205.2999029 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.18311273 +AZ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,178.3824479 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1490.215719 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1020.771712 +AZ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.196912509 +AZ,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,13.45075 +AZ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2592.345407 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,635.7256093 +AZ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,36876.5242 +AZ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,125.6273607 +AZ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2916.036806 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,213.6040255 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,596.2696796 +AZ,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.7569575 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,945.3496445 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,88.28145403 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,681.2849074 +AZ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,323.1393833 +AZ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1497.107955 +AZ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,843.9275544 +AZ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.253983031 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,8.221381799 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.232302302 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.095697617 +AZ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,116.026226 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,92.8316882 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1302.088204 +AZ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.59217429 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,28.6801349 +AZ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5713.237027 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2313.233388 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.014776772 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +AZ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,104.5342763 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,86.33983518 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,25.01300181 +AZ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.418671904 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.41915111 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3545.425421 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.15279454 +AZ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3682.131047 +AZ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +AZ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1215.413778 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,340.0134441 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,627.0944132 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2188.803071 +AZ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7737.457816 +AZ,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,124.3236006 +AZ,Volatile Organic Compounds,2A1_Cement-production,,TON,10.0209801 +AZ,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,3.34269 +AZ,Volatile Organic Compounds,2A6_Other-minerals,,TON,19.02389603 +AZ,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,58.85318795 +AZ,Volatile Organic Compounds,2B_Chemicals-other,,TON,128.754988 +AZ,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,27.8595 +AZ,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,182.8189477 +AZ,Volatile Organic Compounds,2C7a_Copper-production,,TON,3.06 +AZ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,29794.19341 +AZ,Volatile Organic Compounds,2D3d_Coating-application,,TON,11792.78796 +AZ,Volatile Organic Compounds,2D3e_Degreasing,,TON,1388.554948 +AZ,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,19.02379998 +AZ,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,1932.129714 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2382.716377 +AZ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3388.910322 +AZ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,198.198625 +AZ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,404.9557772 +AZ,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1493.404205 +AZ,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1610.611766 +AZ,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,713.15546 +AZ,Volatile Organic Compounds,3B2_Manure-sheep,,TON,38.62289919 +AZ,Volatile Organic Compounds,3B3_Manure-swine,,TON,179.4058482 +AZ,Volatile Organic Compounds,3B4_Manure-other,,TON,129.1932828 +AZ,Volatile Organic Compounds,3B4_Manure-poultry,,TON,158.1287939 +AZ,Volatile Organic Compounds,3B4d_Manure-goats,,TON,57.0986482 +AZ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1634.193519 +AZ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,214.6 +AZ,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,225.4704489 +AZ,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1177.06865 +AZ,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.419757821 +AZ,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.04 +AZ,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,265.008166 +AZ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,176.666917 +AZ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,16.196067 +AZ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,90.63059 +AZ,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.463975 +AZ,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,5.150482 +CA,Ammonia,11C_Other-natural,,TON,22161.23 +CA,Ammonia,1A1a_Public-Electricity,biomass,TON,69.36717967 +CA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.948055196 +CA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,826.6141807 +CA,Ammonia,1A1b_Pet-refining,natural_gas,TON,711.7029665 +CA,Ammonia,1A1g_Other-energy-transf,diesel_oil,TON,0.000025 +CA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.40935564 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.2485 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.6285 +CA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.4025 +CA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,219.2017874 +CA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,0.613878567 +CA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.920020126 +CA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.63255242 +CA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1341.368778 +CA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.928675 +CA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,Other_Fuel,TON,0.00142 +CA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.7605 +CA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.2555 +CA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,15.38271901 +CA,Ammonia,1A3bii_Road-LDV,light_oil,TON,8915.958342 +CA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,97.56545016 +CA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,247.9905611 +CA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,33.77466677 +CA,Ammonia,1A3biii_Road-bus,light_oil,TON,35.21135291 +CA,Ammonia,1A3biii_Road-bus,natural_gas,TON,211.1505524 +CA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,138.7125535 +CA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,148.8967247 +CA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,91.55545532 +CA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,931.2121174 +CA,Ammonia,1A3c_Rail,diesel_oil,TON,21.86995599 +CA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11.45425234 +CA,Ammonia,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.001520371 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.65230104 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,580.8761081 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.8325 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.694 +CA,Ammonia,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.511 +CA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.5695 +CA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.0665 +CA,Ammonia,1A4bi_Residential-stationary,biomass,TON,812.5476733 +CA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.680749993 +CA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.161 +CA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.5475 +CA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.657 +CA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.424 +CA,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,10.11308336 +CA,Ammonia,1B2av_Fugitive-petr-distr,,TON,2.908576192 +CA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0.356825411 +CA,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.000000659 +CA,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7.003365 +CA,Ammonia,2A1_Cement-production,,TON,186.87575 +CA,Ammonia,2A2_Lime-production,Other_Fuel,TON,23 +CA,Ammonia,2A6_Other-minerals,,TON,157.3737811 +CA,Ammonia,2B_Chemicals-other,,TON,5216.875141 +CA,Ammonia,2C_Iron-steel-alloy,,TON,0.00000156 +CA,Ammonia,2C3_Aluminum-production,,TON,0.00714 +CA,Ammonia,2C5_Lead-production,,TON,0.000135 +CA,Ammonia,2C6_Zinc-production,,TON,0.285345 +CA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.380775 +CA,Ammonia,2D3d_Coating-application,,TON,41.99895192 +CA,Ammonia,2D3e_Degreasing,,TON,0 +CA,Ammonia,2D3h_Printing,,TON,15.10828574 +CA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.205505 +CA,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.70371818 +CA,Ammonia,2H2_Food-and-beverage,,TON,0 +CA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1216.925705 +CA,Ammonia,2I_Wood-processing,,TON,1.25117 +CA,Ammonia,3B1a_Cattle-dairy,,TON,135016.0825 +CA,Ammonia,3B1b_Cattle-non-dairy,,TON,118214.268 +CA,Ammonia,3B2_Manure-sheep,,TON,2531.14095 +CA,Ammonia,3B3_Manure-swine,,TON,2967.602109 +CA,Ammonia,3B4_Manure-other,,TON,25200.94481 +CA,Ammonia,3B4_Manure-poultry,,TON,16191.49138 +CA,Ammonia,3B4d_Manure-goats,,TON,802.41442 +CA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,68105.04262 +CA,Ammonia,3Dc_Other-farm,,TON,0.873825 +CA,Ammonia,3F_Ag-res-on-field,,TON,280.0820583 +CA,Ammonia,5A_Solid-waste-disposal,,TON,3989.926046 +CA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,5221.211318 +CA,Ammonia,5C_Incineration,biomass,TON,463.7151246 +CA,Ammonia,5C_Open-burning-industrial,Other_Fuel,TON,0.0000308 +CA,Ammonia,5C_Open-burning-residential,,TON,61.18585004 +CA,Ammonia,5C_Open-burning-yard-waste,,TON,212.2643739 +CA,Ammonia,5D1_Wastewater-domestic,,TON,144.2896525 +CA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.00062145 +CA,Ammonia,5E_Other-waste,Other_Fuel,TON,4.76783 +CA,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,465913.9 +CA,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,1598279.995 +CA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1707941.074 +CA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2141519.884 +CA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,123585.8218 +CA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5729445.871 +CA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,189433.7374 +CA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,39.66355176 +CA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7089236.785 +CA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,925689.8378 +CA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,137830425.5 +CA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3769572.978 +CA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6571094.235 +CA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1637029.286 +CA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,928908.9089 +CA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17415070.27 +CA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10289813.77 +CA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1689646.933 +CA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,558300.6621 +CA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,14711.42505 +CA,Carbon Dioxide,1A3c_Rail,light_oil,TON,910.079525 +CA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1041247.705 +CA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1623715.31 +CA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,71933.48564 +CA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,447223.8358 +CA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,3310668.707 +CA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1244237.656 +CA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,22430.80007 +CA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2794.882363 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,17141.05741 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,341822.3748 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,205062.0214 +CA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,805705.8309 +CA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,88468083.1 +CA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,528.9723943 +CA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,218.0958914 +CA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,61.35817449 +CA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,5831.59671 +CA,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0.734311173 +CA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2999.518645 +CA,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,0.00005 +CA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.0129 +CA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,417.5560022 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2955.799871 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35884.13928 +CA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22280.038 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.018825071 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8386.981214 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1261.533684 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,278.619439 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,26.0981419 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3438.935145 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,204.1330885 +CA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,13189.85683 +CA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,40.33308787 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,12.37345967 +CA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,70.58363111 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,13822.295 +CA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,29333.954 +CA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,67079.09199 +CA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,817.715826 +CA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,598733.685 +CA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5324.269235 +CA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18845.81913 +CA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2308.023212 +CA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2059.818071 +CA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,11224.3575 +CA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12212.51109 +CA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8722.241591 +CA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6913.331369 +CA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,53926.17371 +CA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,7739.461473 +CA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3929.154466 +CA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.08258139 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.319381611 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.00701784 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4767.968303 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,44.4296694 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.925419602 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,84.82857999 +CA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17344.85427 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4114.901 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,124389.7415 +CA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3037.3475 +CA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,1153.5825 +CA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,216624.284 +CA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,130215.685 +CA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,47.48447282 +CA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,8.403749782 +CA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,8875.68392 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17097.2575 +CA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,24745.9405 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,16993.013 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,58.7285 +CA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,100344.266 +CA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1008.048679 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,186.1389291 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,1.142218717 +CA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00937 +CA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,244.1285608 +CA,Carbon Monoxide,2A1_Cement-production,,TON,6498.079157 +CA,Carbon Monoxide,2A5b_Construction-and-demolition,Other_Fuel,TON,0.29 +CA,Carbon Monoxide,2A6_Other-minerals,,TON,7570.316325 +CA,Carbon Monoxide,2B_Chemicals-other,,TON,819.3467155 +CA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,197.8173444 +CA,Carbon Monoxide,2C3_Aluminum-production,,TON,0.14218999 +CA,Carbon Monoxide,2C5_Lead-production,,TON,0.00148 +CA,Carbon Monoxide,2C6_Zinc-production,,TON,0.55148 +CA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,19.5593728 +CA,Carbon Monoxide,2D3c_Asphalt-roofing,heavy_oil,TON,0 +CA,Carbon Monoxide,2D3d_Coating-application,,TON,204.7960482 +CA,Carbon Monoxide,2D3f_Dry-cleaning,,TON,0 +CA,Carbon Monoxide,2D3i_Other-solvent-use,,TON,0 +CA,Carbon Monoxide,2D3i_Other-solvent-use,heavy_oil,TON,0 +CA,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,152.5988802 +CA,Carbon Monoxide,2H2_Food-and-beverage,,TON,201.8685744 +CA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,585.6866571 +CA,Carbon Monoxide,3Dc_Other-farm,,TON,6477.829065 +CA,Carbon Monoxide,3F_Ag-res-on-field,,TON,21053.91645 +CA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,478.0802718 +CA,Carbon Monoxide,5C_Incineration,,TON,155.6982534 +CA,Carbon Monoxide,5C_Incineration,biomass,TON,77.53120808 +CA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.77636325 +CA,Carbon Monoxide,5C_Open-burning-residential,,TON,12627.07134 +CA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,14040.21676 +CA,Carbon Monoxide,5D1_Wastewater-domestic,,TON,0 +CA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,9.30537917 +CA,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.5183829 +CA,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.150796605 +CA,Methane,1A1a_Public-Electricity,natural_gas,TON,0.987519366 +CA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,27.39500132 +CA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,797.8494395 +CA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,115.3275709 +CA,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.01971651 +CA,Methane,1A2_Industrial_fuel_combustion,light_oil,TON,0.000766608 +CA,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,11.20944886 +CA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,111.0143075 +CA,Methane,1A2g_Construction_and_Mining,light_oil,TON,126.3638446 +CA,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.012292347 +CA,Methane,1A3bii_Road-LDV,light_oil,TON,2495.79993 +CA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,83.97210916 +CA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,312.3708133 +CA,Methane,1A3biii_Road-bus,diesel_oil,TON,34.03444832 +CA,Methane,1A3biii_Road-bus,light_oil,TON,5.469893578 +CA,Methane,1A3biii_Road-bus,natural_gas,TON,1632.399576 +CA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,674.13118 +CA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,611.2044936 +CA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,17.7816763 +CA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,174.4437039 +CA,Methane,1A3c_Rail,diesel_oil,TON,0.701352028 +CA,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.176815295 +CA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,37.42035035 +CA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,306.0027516 +CA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,19.924828 +CA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,21.05754396 +CA,Methane,1A4bi_Residential-mobile,light_oil,TON,1314.157843 +CA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,194.5385435 +CA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,133.1263384 +CA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,290.9515239 +CA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.570430002 +CA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,1407.296174 +CA,Methane,2A6_Other-minerals,Other_Fuel,TON,0.24998135 +CA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,294699.553 +CA,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,2.8615 +CA,Methane,5C_Open-burning-industrial,Other_Fuel,TON,0.057468651 +CA,Methane,5D1_Wastewater-domestic,Other_Fuel,TON,122.1867 +CA,Methane,5E_Other-waste,Other_Fuel,TON,1058.24536 +CA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1267.833551 +CA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,795.859318 +CA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,5.437127171 +CA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3633.857024 +CA,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,0.109156629 +CA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,4386.5936 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.0002 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.141625 +CA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,834.3638328 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3369.193796 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6104.352547 +CA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1849.674 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.211149538 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2903.84243 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,1376.211729 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,965.1332181 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1133.391666 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1677.371713 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,161.4265208 +CA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,19328.66407 +CA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0.08 +CA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,24.76987975 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.887715676 +CA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,25.05491813 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,23938.817 +CA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,624.442 +CA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,20736.2572 +CA,Nitrogen Oxides,1A3b_Road-noncomb,Dust,TON,0 +CA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,516.2883155 +CA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,62242.33231 +CA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22286.2903 +CA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3901.887201 +CA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5512.553232 +CA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,343.4335827 +CA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,938.8388657 +CA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,55899.81432 +CA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,45847.89068 +CA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1114.482016 +CA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2636.981622 +CA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,33629.8066 +CA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27135.34062 +CA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.94104501 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.837031228 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.001885802 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4303.756553 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.0893226 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,100.4488392 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.796411296 +CA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9919.1902 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5490.6585 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2570.2935 +CA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,207.101 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1944.9755 +CA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2548.284 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2100.979668 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,181.9833928 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,30.25349962 +CA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,17387.9152 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29642.0155 +CA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,533.2285 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,299.2635 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.212 +CA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,5733.3105 +CA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,1577.825886 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,65.1688173 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,1.243409332 +CA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.58545 +CA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1950.778115 +CA,Nitrogen Oxides,2A1_Cement-production,,TON,3043.002962 +CA,Nitrogen Oxides,2A5b_Construction-and-demolition,Other_Fuel,TON,0.65 +CA,Nitrogen Oxides,2A6_Other-minerals,,TON,14768.6192 +CA,Nitrogen Oxides,2B_Chemicals-other,,TON,567.4551979 +CA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,67.4771165 +CA,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.18835 +CA,Nitrogen Oxides,2C5_Lead-production,,TON,0.00551 +CA,Nitrogen Oxides,2C6_Zinc-production,,TON,2.38995 +CA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,36.4491777 +CA,Nitrogen Oxides,2D3c_Asphalt-roofing,heavy_oil,TON,0 +CA,Nitrogen Oxides,2D3d_Coating-application,,TON,34.78659079 +CA,Nitrogen Oxides,2D3f_Dry-cleaning,,TON,0 +CA,Nitrogen Oxides,2D3i_Other-solvent-use,,TON,0 +CA,Nitrogen Oxides,2D3i_Other-solvent-use,heavy_oil,TON,0 +CA,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,356.617339 +CA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,40.49408297 +CA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,375.9192611 +CA,Nitrogen Oxides,3Dc_Other-farm,,TON,1.0285 +CA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1410.245197 +CA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,396.3168155 +CA,Nitrogen Oxides,5C_Incineration,,TON,82.45507817 +CA,Nitrogen Oxides,5C_Incineration,biomass,TON,373.8106159 +CA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.06348638 +CA,Nitrogen Oxides,5C_Open-burning-residential,,TON,681.8848132 +CA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,467.8310293 +CA,Nitrogen Oxides,5D1_Wastewater-domestic,,TON,0 +CA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.811717348 +CA,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,12.24218 +CA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,24.54654711 +CA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,3654.853723 +CA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,99.95788696 +CA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,174.2459146 +CA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,43.40915818 +CA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,24.63190662 +CA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,461.7959633 +CA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,272.8553197 +CA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,44.80441768 +CA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.80447677 +CA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,414.2299224 +CA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.675240641 +CA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,164.5062127 +CA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,27.23354906 +CA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.179496667 +CA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,650.2743729 +CA,PM10 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.483792493 +CA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1199.237421 +CA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.26031E-05 +CA,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.01995065 +CA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,278.6958063 +CA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.04643979 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.05745317 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,644.9300877 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,21.79498151 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,45.59150629 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,45.25442493 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,43.42178982 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,7.797399703 +CA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1004.735099 +CA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.167415162 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.247213436 +CA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.893483439 +CA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,146513.08 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.562284483 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000274472 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,228.9993962 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,16.75193874 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.26886719 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.223919035 +CA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,925.2965131 +CA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,17948.55442 +CA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.27 +CA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.813549967 +CA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,630.9 +CA,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,9.781685454 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.296622504 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,7.83835942 +CA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0096 +CA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.84230702 +CA,PM10 Filterable,2A1_Cement-production,,TON,747.6673437 +CA,PM10 Filterable,2A2_Lime-production,,TON,20.20371207 +CA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,67375.92231 +CA,PM10 Filterable,2A6_Other-minerals,,TON,16117.24035 +CA,PM10 Filterable,2B_Chemicals-other,,TON,1143.046804 +CA,PM10 Filterable,2C_Iron-steel-alloy,,TON,34.30251387 +CA,PM10 Filterable,2C3_Aluminum-production,,TON,8.829896859 +CA,PM10 Filterable,2C5_Lead-production,,TON,0.147999299 +CA,PM10 Filterable,2C6_Zinc-production,,TON,0.017185387 +CA,PM10 Filterable,2C7_Other-metal,,TON,464.6785473 +CA,PM10 Filterable,2C7a_Copper-production,,TON,8.01499747 +CA,PM10 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,52.41315107 +CA,PM10 Filterable,2D3d_Coating-application,,TON,696.2028905 +CA,PM10 Filterable,2D3e_Degreasing,,TON,42.22884995 +CA,PM10 Filterable,2D3f_Dry-cleaning,,TON,0 +CA,PM10 Filterable,2D3i_Other-solvent-use,,TON,0 +CA,PM10 Filterable,2D3i_Other-solvent-use,heavy_oil,TON,0 +CA,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3816.424905 +CA,PM10 Filterable,2H2_Food-and-beverage,,TON,12997.47062 +CA,PM10 Filterable,2H3_Other-industrial-processes,,TON,2033.83998 +CA,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,0.628038765 +CA,PM10 Filterable,2I_Wood-processing,,TON,63.1546409 +CA,PM10 Filterable,3B1a_Cattle-dairy,,TON,13204.59765 +CA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,28953.08165 +CA,PM10 Filterable,3B2_Manure-sheep,,TON,0 +CA,PM10 Filterable,3B3_Manure-swine,,TON,0 +CA,PM10 Filterable,3B4_Manure-other,,TON,0 +CA,PM10 Filterable,3B4_Manure-poultry,,TON,116.11 +CA,PM10 Filterable,3B4d_Manure-goats,,TON,0 +CA,PM10 Filterable,3Dc_Other-farm,,TON,26547.93667 +CA,PM10 Filterable,5A_Solid-waste-disposal,,TON,1072.595787 +CA,PM10 Filterable,5B_Compost-biogas,Other_Fuel,TON,0.643012108 +CA,PM10 Filterable,5C_Incineration,biomass,TON,38.4814871 +CA,PM10 Filterable,5C_Open-burning-industrial,,TON,0.741775201 +CA,PM10 Filterable,5C_Open-burning-residential,,TON,1915.01193 +CA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1894.75 +CA,PM10 Filterable,5D1_Wastewater-domestic,,TON,0 +CA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.807273432 +CA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,20.47379441 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,3.765073827 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,186.5664772 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,31.00790644 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,0.099038301 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.18880279 +CA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1239.415558 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.37967831 +CA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1850.69132 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00001952 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.0309 +CA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,725.1773727 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,179.7135175 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,228.6636743 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,70.299 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.069399028 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,709.8954873 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,21.7344939 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,63.98763944 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,66.20455528 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,50.49939152 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,11.23757923 +CA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2166.346643 +CA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.220901254 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.301057957 +CA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.388141091 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1133.033 +CA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,308.6805 +CA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,918.3570085 +CA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,146513.6327 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,169.7348754 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,15805.63017 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,748.797341 +CA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,511.2676851 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,380.7163683 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,105.1630392 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,31.87020039 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2116.905242 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,2143.984815 +CA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,117.0645187 +CA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,38.83883836 +CA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,644.7441921 +CA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,631.5528933 +CA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.0858627 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.456590306 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000272146 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,351.7110318 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,14.61257201 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,28.89077484 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.195813389 +CA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1634.394733 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,326.091 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,524.6145 +CA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.621 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,72.635 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,475.522 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,18804.2468 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,24.1947524 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.000599972 +CA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1661.489741 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1830.3655 +CA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,82.782 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,62.634 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.92 +CA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,1665.2395 +CA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,58.36768181 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,8.639636566 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.188152858 +CA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.01108224 +CA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.255180803 +CA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1418.924646 +CA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,25.64441651 +CA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,67376.44134 +CA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,16543.91137 +CA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1228.817144 +CA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4215.313367 +CA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,18.39087357 +CA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.212844036 +CA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.713000816 +CA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,487.360323 +CA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,8.038153451 +CA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,57.8265864 +CA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,698.956268 +CA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,42.22884995 +CA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,2.318819 +CA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.623431046 +CA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0 +CA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,heavy_oil,TON,0 +CA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,3901.923955 +CA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,13091.29943 +CA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,2177.801995 +CA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,1.041572405 +CA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,63.1546409 +CA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,13204.59765 +CA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,23083.37597 +CA,PM10 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,1.219839 +CA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,26617.93266 +CA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2480.976283 +CA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1128.258694 +CA,PM10 Primary (Filt + Cond),5B_Compost-biogas,Other_Fuel,TON,0.656494908 +CA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,13.37323422 +CA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,34.36780223 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.97708216 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1915.193043 +CA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1894.872949 +CA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +CA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.850827121 +CA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.00519 +CA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,22.78238835 +CA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.286107998 +CA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,151.0445291 +CA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,26.19396324 +CA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.175526677 +CA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,637.9081625 +CA,PM2.5 Filterable,1A1b_Pet-refining,diesel_oil,TON,0.160654006 +CA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1024.196649 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,1.24231E-05 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.01604375 +CA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,278.5811874 +CA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.04398979 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.029612496 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,598.8892932 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,8.172166023 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.37822503 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,32.55693279 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,33.87227181 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,7.606492624 +CA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,998.0379479 +CA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.086081895 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.244837808 +CA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.883446163 +CA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,17302.61 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.533504322 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,brown_coal,TON,6.52496E-05 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,216.5908164 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.301285012 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,26.88642762 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.224254757 +CA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,871.5320457 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,17003.95642 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.01 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.394399986 +CA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,630.9 +CA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,9.114093935 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.296228628 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,7.542557038 +CA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00925 +CA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.750096185 +CA,PM2.5 Filterable,2A1_Cement-production,,TON,307.1421237 +CA,PM2.5 Filterable,2A2_Lime-production,,TON,4.997215148 +CA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,6734.081947 +CA,PM2.5 Filterable,2A6_Other-minerals,,TON,3951.059014 +CA,PM2.5 Filterable,2B_Chemicals-other,,TON,450.8880266 +CA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,24.39783173 +CA,PM2.5 Filterable,2C3_Aluminum-production,,TON,8.00911019 +CA,PM2.5 Filterable,2C5_Lead-production,,TON,0.088844989 +CA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.010319475 +CA,PM2.5 Filterable,2C7_Other-metal,,TON,298.932068 +CA,PM2.5 Filterable,2C7a_Copper-production,,TON,4.808998482 +CA,PM2.5 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,45.32797513 +CA,PM2.5 Filterable,2D3d_Coating-application,,TON,669.5827146 +CA,PM2.5 Filterable,2D3e_Degreasing,,TON,40.68552228 +CA,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0 +CA,PM2.5 Filterable,2D3i_Other-solvent-use,,TON,0 +CA,PM2.5 Filterable,2D3i_Other-solvent-use,heavy_oil,TON,0 +CA,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,2278.127505 +CA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,10605.19182 +CA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,1081.8209 +CA,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,0.258832679 +CA,PM2.5 Filterable,2I_Wood-processing,,TON,48.55450989 +CA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,2744.564739 +CA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,5601.740325 +CA,PM2.5 Filterable,3B2_Manure-sheep,,TON,0 +CA,PM2.5 Filterable,3B3_Manure-swine,,TON,0 +CA,PM2.5 Filterable,3B4_Manure-other,,TON,0 +CA,PM2.5 Filterable,3B4_Manure-poultry,,TON,69.66 +CA,PM2.5 Filterable,3B4d_Manure-goats,,TON,0 +CA,PM2.5 Filterable,3Dc_Other-farm,,TON,3847.800128 +CA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,285.8967463 +CA,PM2.5 Filterable,5B_Compost-biogas,Other_Fuel,TON,0.34 +CA,PM2.5 Filterable,5C_Incineration,biomass,TON,25.11945694 +CA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.429026572 +CA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1816.78672 +CA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,1751.27 +CA,PM2.5 Filterable,5D1_Wastewater-domestic,,TON,0 +CA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.67056392 +CA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,18.25270673 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1.403938935 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,172.7306057 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,30.00836436 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,0.036929878 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.18547023 +CA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1225.684156 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,diesel_oil,TON,0.207461675 +CA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1668.716082 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.00001934 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.0269931 +CA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,725.0627638 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,165.8635382 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,201.8866955 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,70.226 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.04162391 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,660.2504059 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,8.14749831 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,61.58608695 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,53.52653602 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,40.89646711 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,10.98946477 +CA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2158.480064 +CA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.139567987 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.298490168 +CA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.378295977 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,1039.4835 +CA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,231.5195 +CA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,788.9068605 +CA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,17303.20376 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,91.62299065 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,6635.04876 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,418.5817629 +CA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,218.8192582 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,204.108517 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,44.58313664 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,12.7632384 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1432.094768 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1565.448975 +CA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,49.26709668 +CA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.10184956 +CA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,590.3677007 +CA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,595.1265788 +CA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.07899366 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.429114832 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.000101473 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,339.0120779 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.486816391 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,25.09414229 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.194306635 +CA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1578.946675 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,299.227 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,395.368 +CA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.548 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,66.722 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,356.897 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,17859.69288 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,23.97164449 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.581450029 +CA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1661.489741 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1682.65 +CA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,62.634 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,46.0265 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.044 +CA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,1256.476 +CA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,54.91156645 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,8.030460336 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Gasoline,TON,0 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.274794629 +CA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0106782 +CA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.161739858 +CA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,537.6695077 +CA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,10.26677784 +CA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6734.6777 +CA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,4171.700242 +CA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,528.4968295 +CA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,478.2188454 +CA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,16.69109628 +CA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.13481884 +CA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.531356596 +CA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,318.6497822 +CA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,4.82418345 +CA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,50.73842646 +CA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,671.380335 +CA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,40.68552228 +CA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,2.234278 +CA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.600688261 +CA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0 +CA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,heavy_oil,TON,0 +CA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,2340.497232 +CA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,10673.0505 +CA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,1209.702584 +CA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,0.578561747 +CA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,48.55450989 +CA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,2744.564739 +CA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4794.46496 +CA,PM2.5 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,0.7319033 +CA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3851.961518 +CA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2348.076869 +CA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,335.768884 +CA,PM2.5 Primary (Filt + Cond),5B_Compost-biogas,Other_Fuel,TON,0.35634081 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,10.42206895 +CA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,22.31903634 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.664520129 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1817.009372 +CA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1751.381499 +CA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +CA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.714117608 +CA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.00519 +CA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,20.51671016 +CA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,85.8441634 +CA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,27.54955349 +CA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.180135775 +CA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,374.774626 +CA,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,86.68461814 +CA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,2513.660654 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.0000021 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.408395 +CA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,267.1566568 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.268741758 +CA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38.11299783 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.031717113 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,517.5490965 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1777.496511 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,179.7229439 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,114.5976462 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1036.04503 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,9.987216857 +CA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1395.741764 +CA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.01 +CA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1.050350375 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.799884898 +CA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.946548825 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,15.695 +CA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.2555 +CA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2934.285833 +CA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,8.024102442 +CA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1194.747421 +CA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,32.67556693 +CA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,56.95982944 +CA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,14.19016451 +CA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,8.052006068 +CA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,150.9580245 +CA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,89.1945877 +CA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,14.64626508 +CA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.839484644 +CA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,114.6150836 +CA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,676.2617829 +CA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.63424076 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.063552965 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,brown_coal,TON,5.33399E-05 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,84.63741015 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,21.92767655 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,207.3258017 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.086952401 +CA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,662.3367994 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.5115 +CA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.1465 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.555 +CA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,10.366 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,366.554516 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,344.562372 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.284129748 +CA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,234.821325 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.8035 +CA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.6935 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.095 +CA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.015 +CA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,217.3344186 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,5.712772629 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Gasoline,TON,0 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.008819938 +CA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.2201238 +CA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.845778412 +CA,Sulfur Dioxide,2A1_Cement-production,,TON,633.6014151 +CA,Sulfur Dioxide,2A5b_Construction-and-demolition,Other_Fuel,TON,0.001441 +CA,Sulfur Dioxide,2A6_Other-minerals,,TON,4565.371269 +CA,Sulfur Dioxide,2B_Chemicals-other,,TON,723.3046182 +CA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,34.606962 +CA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.006340001 +CA,Sulfur Dioxide,2C5_Lead-production,,TON,0.0000254 +CA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.0095354 +CA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,16.35970191 +CA,Sulfur Dioxide,2D3c_Asphalt-roofing,heavy_oil,TON,0 +CA,Sulfur Dioxide,2D3d_Coating-application,,TON,2.093541944 +CA,Sulfur Dioxide,2D3f_Dry-cleaning,,TON,0 +CA,Sulfur Dioxide,2D3i_Other-solvent-use,,TON,0 +CA,Sulfur Dioxide,2D3i_Other-solvent-use,heavy_oil,TON,0 +CA,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.7103322 +CA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,229.0387353 +CA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,40.38056144 +CA,Sulfur Dioxide,3Dc_Other-farm,Other_Fuel,TON,72.08095228 +CA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,129.2498501 +CA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,311.7192272 +CA,Sulfur Dioxide,5C_Incineration,,TON,10.0309297 +CA,Sulfur Dioxide,5C_Incineration,biomass,TON,38.33022073 +CA,Sulfur Dioxide,5C_Open-burning-residential,,TON,108.8082531 +CA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,50.02928864 +CA,Sulfur Dioxide,5D1_Wastewater-domestic,,TON,0 +CA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,1.776856538 +CA,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,1.39 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,4.197583106 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,49.86462556 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,2.288408795 +CA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,569.1070875 +CA,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,6.70162495 +CA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,53.22198803 +CA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,283.4691865 +CA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,6192.344222 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.0000132 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.000721 +CA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,361.5848348 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,417.2184286 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6346.794789 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24.9295 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.045046833 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,329.6091308 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,3.373962957 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,81.68831646 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,25.71487971 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,39.34313017 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,20.69812291 +CA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3184.626381 +CA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,3.47043805 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.236477622 +CA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,13.33725654 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2224.3465 +CA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1011.561 +CA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,6935.422959 +CA,Volatile Organic Compounds,1A3b_Road-noncomb,Dust,TON,0 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,75.49644431 +CA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,66054.86288 +CA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1068.777942 +CA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4602.800655 +CA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,263.7392527 +CA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,112.1416878 +CA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,124.9202352 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2324.749861 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2900.822897 +CA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,606.2953021 +CA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9053.7203 +CA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1582.137998 +CA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2009.326301 +CA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.03684153 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.072889447 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,brown_coal,TON,0.00095839 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,528.1223985 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.215989818 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.701733826 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.758156786 +CA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2249.225729 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,811.103 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4632.6895 +CA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.307 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,282.1085 +CA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,25315.1955 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,19931.30328 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,19.07360013 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.178600088 +CA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1106.406477 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4378.832 +CA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1658.3045 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5302.136 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.899 +CA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,26751.033 +CA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,20483.39918 +CA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,790.2022968 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1062.893584 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1955.830926 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3457.032221 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9431.960992 +CA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,15.84514327 +CA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6074.203966 +CA,Volatile Organic Compounds,2A1_Cement-production,,TON,66.17376394 +CA,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,0 +CA,Volatile Organic Compounds,2A6_Other-minerals,,TON,1983.161553 +CA,Volatile Organic Compounds,2B_Chemicals-other,,TON,7163.99844 +CA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,51.00790106 +CA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.110384523 +CA,Volatile Organic Compounds,2C5_Lead-production,,TON,0.606967 +CA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.110297 +CA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,116.0702214 +CA,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.5565 +CA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,75014.42585 +CA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,2579.073654 +CA,Volatile Organic Compounds,2D3d_Coating-application,,TON,42695.99772 +CA,Volatile Organic Compounds,2D3e_Degreasing,,TON,13614.69385 +CA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,473.1285342 +CA,Volatile Organic Compounds,2D3h_Printing,,TON,6421.171478 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,21274.6067 +CA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,5005.941239 +CA,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,751.8505997 +CA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,8451.020052 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4046.957065 +CA,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,0.522784942 +CA,Volatile Organic Compounds,2I_Wood-processing,,TON,13.7 +CA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,10801.2867 +CA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,27444.14093 +CA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,301.142515 +CA,Volatile Organic Compounds,3B3_Manure-swine,,TON,424.881386 +CA,Volatile Organic Compounds,3B4_Manure-other,,TON,580.138905 +CA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,6095.914796 +CA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,36.666146 +CA,Volatile Organic Compounds,3Dc_Other-farm,,TON,314.6550137 +CA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,16764.69439 +CA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1870.079001 +CA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,7908.360779 +CA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,6142.440297 +CA,Volatile Organic Compounds,5C_Incineration,,TON,15.51192474 +CA,Volatile Organic Compounds,5C_Incineration,biomass,TON,181.7677239 +CA,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.03 +CA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.00170502 +CA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1424.857375 +CA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,1339.891648 +CA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,393.2772237 +CA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,170.724927 +CA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,149.3576094 +CA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.187788661 +CO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.135 +CO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,114.8478771 +CO,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,1.126515 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.434836802 +CO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.317408347 +CO,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,22.2 +CO,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.187 +CO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.562016492 +CO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.323067481 +CO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,34.70163003 +CO,Ammonia,1A3bii_Road-LDV,light_oil,TON,1541.644306 +CO,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.145011627 +CO,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,86.26653868 +CO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.029406975 +CO,Ammonia,1A3biii_Road-bus,light_oil,TON,1.491763842 +CO,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.012214816 +CO,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,57.03518647 +CO,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.670819971 +CO,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,29.27801929 +CO,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.703023077 +CO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.39651777 +CO,Ammonia,1A3c_Rail,diesel_oil,TON,5.237794434 +CO,Ammonia,1A3c_Rail,light_oil,TON,0.002913791 +CO,Ammonia,1A4ai_Commercial-institutional-stationary,Other_Fuel,TON,15.4505 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.215738567 +CO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.627112499 +CO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.677069987 +CO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.797971539 +CO,Ammonia,1A4bi_Residential-stationary,biomass,TON,266.1361188 +CO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.230999973 +CO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.040500001 +CO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1188.652512 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.692602631 +CO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.056765317 +CO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.019861515 +CO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.994760821 +CO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.121657379 +CO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.816285311 +CO,Ammonia,2A1_Cement-production,,TON,234.916 +CO,Ammonia,2A6_Other-minerals,,TON,43.77737 +CO,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.01295 +CO,Ammonia,2D3e_Degreasing,Other_Fuel,TON,5.008 +CO,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,11.743 +CO,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,5.639 +CO,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,11.368 +CO,Ammonia,3B1a_Cattle-dairy,,TON,5273.09745 +CO,Ammonia,3B1b_Cattle-non-dairy,,TON,34017.72826 +CO,Ammonia,3B2_Manure-sheep,,TON,1559.770728 +CO,Ammonia,3B3_Manure-swine,,TON,6149.241249 +CO,Ammonia,3B4_Manure-other,,TON,1459.497965 +CO,Ammonia,3B4_Manure-poultry,,TON,1248.679669 +CO,Ammonia,3B4d_Manure-goats,,TON,144.8814876 +CO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,18999.5 +CO,Ammonia,3F_Ag-res-on-field,,TON,424.031 +CO,Ammonia,5B_Compost-biogas,Other_Fuel,TON,129.292026 +CO,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,68.24 +CO,Carbon Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1.18 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,176827.7482 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,187485.8392 +CO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10802.70474 +CO,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,35324.75 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1054553.099 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,26265.27381 +CO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.822698489 +CO,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1616139.662 +CO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1105602.802 +CO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21425771.08 +CO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,159905.8553 +CO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1416841.688 +CO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,285418.6508 +CO,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,44089.91695 +CO,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,436.01562 +CO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3427586.852 +CO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,87291.62961 +CO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1629958.884 +CO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,149698.5601 +CO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,173036.6302 +CO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3670.06682 +CO,Carbon Dioxide,1A3c_Rail,light_oil,TON,227.3420962 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,149622.8498 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,213916.2008 +CO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9412.448225 +CO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,83346.42092 +CO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,656812.999 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,331453.0635 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4260.372585 +CO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,576.3304524 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2436.92951 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,140337.3163 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14981.53952 +CO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,58993.41366 +CO,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,17542.575 +CO,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,45698098.84 +CO,Carbon Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,1200.938 +CO,Carbon Monoxide,11C_Other-natural,,TON,72008.5375 +CO,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,27.7 +CO,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,163.7475 +CO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.899269 +CO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6098.773959 +CO,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.09 +CO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,847.374352 +CO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1701.948411 +CO,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,3.2 +CO,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1504.150364 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,284.4981409 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5681.950991 +CO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,154.7105572 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,17.17576397 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,578.7663103 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,153.1740051 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.137841234 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.185199234 +CO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16410.66909 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.10162 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0388 +CO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.09242 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2649.561038 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5314.715838 +CO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.146201946 +CO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,16909.20106 +CO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,9210.148393 +CO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,323806.1866 +CO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,991.3553677 +CO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20291.30326 +CO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,823.8244416 +CO,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2029.487587 +CO,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,2.3267893 +CO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3083.815396 +CO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1473.361645 +CO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2010.342353 +CO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3282.746273 +CO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6569.518845 +CO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1689.774554 +CO,Carbon Monoxide,1A3c_Rail,light_oil,TON,50.58773773 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,9.696630925 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,77.9644533 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.946735352 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.257615062 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.360661086 +CO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,990.8958393 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,485.6776507 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,43949.37124 +CO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,184.8117631 +CO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,233.1578384 +CO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,147672.1053 +CO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,36674.20407 +CO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.154999943 +CO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.202499995 +CO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2604.415892 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1217.660144 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1004.113537 +CO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.385299194 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.55174685 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,17423.26962 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.87835073 +CO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6468.912303 +CO,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,52.282922 +CO,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,32.53260335 +CO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,314.5078547 +CO,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,18854.905 +CO,Carbon Monoxide,2A1_Cement-production,,TON,2744.367 +CO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,1.675 +CO,Carbon Monoxide,2A6_Other-minerals,,TON,2715.3496 +CO,Carbon Monoxide,2B_Chemicals-other,,TON,14.13 +CO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,615.97825 +CO,Carbon Monoxide,2C3_Aluminum-production,,TON,17.05 +CO,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,156.602375 +CO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,37.283 +CO,Carbon Monoxide,2D3d_Coating-application,,TON,9.836 +CO,Carbon Monoxide,2D3h_Printing,,TON,0.147726 +CO,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,15.94 +CO,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,2.596 +CO,Carbon Monoxide,2H2_Food-and-beverage,,TON,761.0015338 +CO,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,33.283027 +CO,Carbon Monoxide,3F_Ag-res-on-field,,TON,3183.88 +CO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,401.250228 +CO,Carbon Monoxide,5C_Incineration,,TON,1.610226911 +CO,Carbon Monoxide,5C_Incineration,biomass,TON,12.77216991 +CO,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.012245 +CO,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +CO,Carbon Monoxide,5C_Open-burning-residential,,TON,2979.688094 +CO,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,219.1510831 +CO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,26.00452 +CO,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,19.271134 +CO,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,18.19002 +CO,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.076356617 +CO,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.35221213 +CO,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,63.76536452 +CO,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,15.93 +CO,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,22.96122843 +CO,Methane,1A2g_Construction_and_Mining,light_oil,TON,19.01450795 +CO,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.109321995 +CO,Methane,1A3bii_Road-LDV,diesel_oil,TON,77.22972228 +CO,Methane,1A3bii_Road-LDV,light_oil,TON,923.7192801 +CO,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.9437987 +CO,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,68.89046647 +CO,Methane,1A3biii_Road-bus,diesel_oil,TON,9.163453571 +CO,Methane,1A3biii_Road-bus,light_oil,TON,6.170599488 +CO,Methane,1A3biii_Road-bus,natural_gas,TON,1.4409293 +CO,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,241.3215824 +CO,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.641643583 +CO,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,61.99827827 +CO,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,6.477568852 +CO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.42037634 +CO,Methane,1A3c_Rail,diesel_oil,TON,0.165616068 +CO,Methane,1A3c_Rail,light_oil,TON,0.151221753 +CO,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.75627881 +CO,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,144.9736678 +CO,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,108.8814552 +CO,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.822292492 +CO,Methane,1A4bi_Residential-mobile,light_oil,TON,571.6198844 +CO,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.341830412 +CO,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.747924714 +CO,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.028803895 +CO,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.098622622 +CO,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,138.5724628 +CO,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.389854508 +CO,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,58.4920786 +CO,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,873.33 +CO,Methane,2A6_Other-minerals,,TON,1.288 +CO,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,63596.8148 +CO,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,437.697 +CO,Nitrogen Oxides,11C_Other-natural,,TON,48411.18225 +CO,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,7.8 +CO,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,102.3422 +CO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,75.644422 +CO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,23885.4946 +CO,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.37 +CO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1468.70936 +CO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,934.993654 +CO,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,1.6 +CO,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,646.6988868 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,847.065673 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,499.1354185 +CO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,26.45693405 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,12.07104898 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2196.517193 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,274.7534494 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.451828919 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.642528689 +CO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,21932.28514 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,13.94205 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.155 +CO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.3005 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4745.647914 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,65.55161302 +CO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.032376285 +CO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,5111.44991 +CO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3705.065656 +CO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,37953.70861 +CO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,477.3400901 +CO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2255.84457 +CO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2121.084632 +CO,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,217.3356409 +CO,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.7185659 +CO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10653.00966 +CO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,166.8812582 +CO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5896.385268 +CO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,282.9640574 +CO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,363.6037207 +CO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8891.24701 +CO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.542397831 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,7.860632916 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,147.4973239 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.538905443 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.022188936 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.592869583 +CO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1148.753306 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,986.3404175 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,564.947538 +CO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,42.75769544 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,601.9577128 +CO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1407.138912 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,690.9819294 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4.15799994 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.729000037 +CO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6393.086468 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2371.84332 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,21.81068556 +CO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.326043011 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.54973116 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,313.7859009 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,152.860717 +CO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,436.2345084 +CO,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,10860.68479 +CO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,7.623348467 +CO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,150.9272435 +CO,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21826.36677 +CO,Nitrogen Oxides,2A1_Cement-production,,TON,1601.9449 +CO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,0.425 +CO,Nitrogen Oxides,2A6_Other-minerals,,TON,2278.159483 +CO,Nitrogen Oxides,2B_Chemicals-other,,TON,16.671 +CO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,81.1366 +CO,Nitrogen Oxides,2C3_Aluminum-production,,TON,20.5212 +CO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,20.6395 +CO,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,5.225 +CO,Nitrogen Oxides,2D3d_Coating-application,,TON,19.94456 +CO,Nitrogen Oxides,2D3h_Printing,,TON,0.174173 +CO,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.25 +CO,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,7.9998 +CO,Nitrogen Oxides,2H2_Food-and-beverage,,TON,40.758236 +CO,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,41.291199 +CO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,108.733 +CO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,58.518772 +CO,Nitrogen Oxides,5C_Incineration,,TON,1.908544507 +CO,Nitrogen Oxides,5C_Incineration,biomass,TON,10.81592549 +CO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.002491 +CO,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +CO,Nitrogen Oxides,5C_Open-burning-residential,,TON,210.3309125 +CO,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,12.13157816 +CO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,8.061705 +CO,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,5.090728 +CO,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,12.21 +CO,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,14.53 +CO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.469652416 +CO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,828.1516531 +CO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.557985461 +CO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,58.13621416 +CO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.794735729 +CO,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.696223095 +CO,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.038620021 +CO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.133666957 +CO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.037433591 +CO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.099493066 +CO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.669305166 +CO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.451874837 +CO,Nitrous Oxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.036 +CO,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,628.2425978 +CO,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.297619 +CO,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,16.10882 +CO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.28143222 +CO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,614.619902 +CO,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0156 +CO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,120.9647554 +CO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,189.9134703 +CO,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,21.19291911 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,17.95101448 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,88.83701644 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,103.7060189 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.051689359 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.018916536 +CO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,290.3939844 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.79169646 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.01534606 +CO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03755844 +CO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,102348.949 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.773980244 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.422587419 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.039434833 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002544861 +CO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.84651254 +CO,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,5156.583949 +CO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.249480008 +CO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.0437 +CO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.02495822 +CO,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,8.51981 +CO,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,18.5 +CO,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,76.88918197 +CO,PM10 Filterable,2A1_Cement-production,,TON,127.8672573 +CO,PM10 Filterable,2A2_Lime-production,,TON,34.74096803 +CO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,40660.10834 +CO,PM10 Filterable,2A6_Other-minerals,,TON,6786.464082 +CO,PM10 Filterable,2B_Chemicals-other,,TON,27.46888385 +CO,PM10 Filterable,2C_Iron-steel-alloy,,TON,21.06845627 +CO,PM10 Filterable,2C3_Aluminum-production,,TON,13.35518432 +CO,PM10 Filterable,2C6_Zinc-production,,TON,0.543500039 +CO,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,186.278022 +CO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,37.147341 +CO,PM10 Filterable,2D3d_Coating-application,,TON,95.337231 +CO,PM10 Filterable,2D3e_Degreasing,,TON,3.5723 +CO,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,12.210585 +CO,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,107.2817802 +CO,PM10 Filterable,2H2_Food-and-beverage,,TON,475.603714 +CO,PM10 Filterable,2H3_Other-industrial-processes,,TON,178.6032829 +CO,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,7.390497715 +CO,PM10 Filterable,2I_Wood-processing,,TON,6.502206 +CO,PM10 Filterable,3B1a_Cattle-dairy,,TON,1293.560616 +CO,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,36017.6658 +CO,PM10 Filterable,3B4_Manure-other,Other_Fuel,TON,2.64 +CO,PM10 Filterable,3Dc_Other-farm,,TON,68052.5425 +CO,PM10 Filterable,5A_Solid-waste-disposal,,TON,1277.550933 +CO,PM10 Filterable,5C_Incineration,biomass,TON,11.16779167 +CO,PM10 Filterable,5C_Open-burning-commercial,,TON,0.01314709 +CO,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +CO,PM10 Filterable,5C_Open-burning-residential,,TON,1124.59749 +CO,PM10 Filterable,5C_Open-burning-yard-waste,,TON,74.3548371 +CO,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.42791406 +CO,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,6.790854 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.3 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,17.05313 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.382644 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,672.87 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02 +CO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,223.228952 +CO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,253.557525 +CO,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,51.877038 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,43.03402146 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.5626185 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.296663893 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,17.78505073 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,94.75676467 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,108.9857625 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.057193787 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.026640599 +CO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,622.5343427 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.949248 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0184 +CO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.098838 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,438.8357886 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,41.80795082 +CO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000554702 +CO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,260.3553969 +CO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,102348.949 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,213.4390819 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2433.507598 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,30.80383839 +CO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,154.8553792 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,163.9517487 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.41305511 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.072594188 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,609.1163235 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,11.35466127 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,396.7868489 +CO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,19.02029796 +CO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.02400849 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,262.4319372 +CO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.028890987 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,2.183321849 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.18367362 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.053909181 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.003369324 +CO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,163.508484 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,79.00710905 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,55.96801738 +CO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.190344195 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,38.48065723 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,665.8089401 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5393.751387 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.549779981 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.096399995 +CO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,33.821435 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,224.8430505 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.652490399 +CO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.069830304 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.43219198 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,138.228509 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.343908655 +CO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,21.33967643 +CO,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,8.61981 +CO,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,18.5 +CO,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,217.2789359 +CO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,132.6614217 +CO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,35.869812 +CO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,40660.10834 +CO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6973.199614 +CO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,30.291922 +CO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,36.5467 +CO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,33.82185 +CO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.5001 +CO,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,191.020822 +CO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,41.3324 +CO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,96.037231 +CO,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,3.5723 +CO,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.052123 +CO,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,12.210585 +CO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,141.989614 +CO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1989.715364 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,220.0521537 +CO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,14.10299434 +CO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,6.502206 +CO,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1293.560616 +CO,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,36017.6658 +CO,PM10 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,2.64 +CO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,68059.89832 +CO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,556.64 +CO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1283.200614 +CO,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.411321031 +CO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,17.53943865 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.024574 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1124.59749 +CO,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,74.3548371 +CO,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.595106 +CO,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,16.905854 +CO,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.07763975 +CO,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,16.10882 +CO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.28143222 +CO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,320.9498529 +CO,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0156 +CO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,98.88887869 +CO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,161.8746753 +CO,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,21.19121711 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,17.36034886 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,88.36101657 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,103.6123128 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.051642654 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.018899443 +CO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,286.2696215 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.38937045 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.01343606 +CO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03447144 +CO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11946.18949 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1.517671707 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.325054053 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.038861584 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000715882 +CO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,54.53971529 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,5085.794146 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.191729977 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.033599999 +CO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.163727347 +CO,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2.528353158 +CO,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.82 +CO,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,71.02694146 +CO,PM2.5 Filterable,2A1_Cement-production,,TON,70.84127265 +CO,PM2.5 Filterable,2A2_Lime-production,,TON,14.59522679 +CO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4066.010834 +CO,PM2.5 Filterable,2A6_Other-minerals,,TON,2188.486325 +CO,PM2.5 Filterable,2B_Chemicals-other,,TON,23.53898108 +CO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,20.77352016 +CO,PM2.5 Filterable,2C3_Aluminum-production,,TON,9.86976435 +CO,PM2.5 Filterable,2C6_Zinc-production,,TON,0.543489039 +CO,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,103.071745 +CO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,37.1344 +CO,PM2.5 Filterable,2D3d_Coating-application,,TON,93.361983 +CO,PM2.5 Filterable,2D3e_Degreasing,,TON,2.964628 +CO,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,11.253012 +CO,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,41.15620321 +CO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,169.4140027 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,138.0183598 +CO,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,8.434858114 +CO,PM2.5 Filterable,2I_Wood-processing,,TON,2.199282 +CO,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,268.8654807 +CO,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,7506.217511 +CO,PM2.5 Filterable,3B4_Manure-other,Other_Fuel,TON,2.64 +CO,PM2.5 Filterable,3Dc_Other-farm,,TON,13502.28304 +CO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,845.1224289 +CO,PM2.5 Filterable,5C_Incineration,biomass,TON,9.4028294 +CO,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.00257109 +CO,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +CO,PM2.5 Filterable,5C_Open-burning-residential,,TON,1029.894545 +CO,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,57.3314877 +CO,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,1.42791406 +CO,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,6.410854 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0800207 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,17.05313 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.380972 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,379.2 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.02 +CO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,201.1530753 +CO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,217.71873 +CO,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,52.750406 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,41.73916906 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23.94585086 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.296663893 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,17.23426137 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,90.35980325 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,109.0430914 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.057223873 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.026654612 +CO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,601.6014752 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.546922 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.01649 +CO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.095751 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,425.6707212 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,38.48360942 +CO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000554702 +CO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,231.2957635 +CO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11946.18949 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,154.2934154 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,935.0078659 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21.99765776 +CO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,54.52661175 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,119.5657069 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.812236446 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.013653956 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,379.133488 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.127063243 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,257.7694013 +CO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.576850038 +CO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.86641822 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,254.5560432 +CO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02663465 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.787976514 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.0314667 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.050444471 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.001170312 +CO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,151.362083 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,76.63690027 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,51.61164791 +CO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.190344195 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,37.32623882 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,612.5762791 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5322.961584 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.492029989 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.086299997 +CO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,27.96522376 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,218.0977687 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.520350655 +CO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.069830304 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.35922613 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,127.1714149 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.243590463 +CO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,19.63250323 +CO,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2.528353158 +CO,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.82 +CO,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,199.2289377 +CO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,75.635441 +CO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,15.72007073 +CO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4066.010834 +CO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2304.488762 +CO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,26.36201923 +CO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,34.334764 +CO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,30.33643 +CO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.500089 +CO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,104.588663 +CO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,41.319459 +CO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,93.961983 +CO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,2.964628 +CO,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.052123 +CO,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,11.253012 +CO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,66.638164 +CO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1683.370056 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,167.153821 +CO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,16.340242 +CO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.199282 +CO,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,268.8654807 +CO,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,7506.217511 +CO,PM2.5 Primary (Filt + Cond),3B4_Manure-other,Other_Fuel,TON,2.64 +CO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,13504.11903 +CO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,344.244 +CO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,850.77211 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.842883132 +CO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.07596628 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.013998 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1029.894545 +CO,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,57.3314877 +CO,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.595106 +CO,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,10.015854 +CO,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0014 +CO,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,17.1545 +CO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,6.356002 +CO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,15077.82 +CO,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.01 +CO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,39.897046 +CO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,114.991424 +CO,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,80.7799247 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.593726693 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.50393523 +CO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.060552325 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,18.47012095 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,128.9314769 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,92.85840137 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.236554074 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.001141219 +CO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,202.2602705 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,8.499786 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.011 +CO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.007803 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.35945447 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.402817551 +CO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.70028E-05 +CO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,732.9448442 +CO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,9.593836485 +CO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,272.6788939 +CO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.375517766 +CO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.06629888 +CO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.491428089 +CO,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.559557649 +CO,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.002308479 +CO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,29.01564095 +CO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.112338265 +CO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.89818486 +CO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.908003186 +CO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.240418942 +CO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,5.901595391 +CO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003660956 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.415331829 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.93464269 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.26011487 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.37805846 +CO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,174.4289861 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.251427956 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.338705646 +CO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.052739786 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.718941563 +CO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,10.75316241 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,129.7802822 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.640100003 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.0068465 +CO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,39.06043125 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.793633391 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.069970948 +CO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.003230667 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021200224 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.299410329 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.137721584 +CO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.969250785 +CO,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.79 +CO,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,317.4779348 +CO,Sulfur Dioxide,2A1_Cement-production,,TON,337.482 +CO,Sulfur Dioxide,2A6_Other-minerals,,TON,1123.957812 +CO,Sulfur Dioxide,2B_Chemicals-other,,TON,47.0895 +CO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,21.61001 +CO,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.182 +CO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,4.308866 +CO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,27.129 +CO,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0266 +CO,Sulfur Dioxide,2D3h_Printing,,TON,0.001045 +CO,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,6.829975 +CO,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.665 +CO,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,8.481798 +CO,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,11.154369 +CO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,39.2455 +CO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,33.575973 +CO,Sulfur Dioxide,5C_Incineration,,TON,2.153665873 +CO,Sulfur Dioxide,5C_Incineration,biomass,TON,2.20832507 +CO,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.031133 +CO,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +CO,Sulfur Dioxide,5C_Open-burning-residential,,TON,35.05515297 +CO,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.487096635 +CO,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,46.151354 +CO,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,10.964518 +CO,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.599 +CO,Volatile Organic Compounds,11C_Other-natural,,TON,335333.9202 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,11.9 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,11.59488 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.264783 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,361.94571 +CO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,150.557552 +CO,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,88.38423967 +CO,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,24.33476353 +CO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,3614.871665 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,1.85 +CO,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,2044.778811 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,61.28450978 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,163.7155823 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13.78368114 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,8.812970357 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,141.241463 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.056974804 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.005450907 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.131056226 +CO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,5817.691601 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.497588 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0026 +CO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.071528 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,490.8646949 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,366.2455828 +CO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.023631318 +CO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2035.238056 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1117.866827 +CO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,28835.87128 +CO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,125.4445224 +CO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1607.412483 +CO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,228.4266188 +CO,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,140.9722003 +CO,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.11777193 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,707.1306997 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,64.40105818 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,442.6543167 +CO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,141.486382 +CO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1339.760461 +CO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,432.7299222 +CO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.281264494 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.274078482 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,64.32728765 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.01054148 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.01054148 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.12793837 +CO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,107.6438685 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,109.4016089 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1501.773787 +CO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23.53609378 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,54.79940244 +CO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,9450.64088 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5695.582915 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.164703015 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.028399998 +CO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,358.0563492 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,216.4230874 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,46.523969 +CO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.654713967 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.32001873 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4659.976475 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.818480405 +CO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1483.185461 +CO,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,8837.310702 +CO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,32.241848 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1302.640751 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,668.024021 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1105.914718 +CO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9592.853455 +CO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,99281.56156 +CO,Volatile Organic Compounds,2A1_Cement-production,,TON,240.6868 +CO,Volatile Organic Compounds,2A6_Other-minerals,,TON,429.5720156 +CO,Volatile Organic Compounds,2B_Chemicals-other,,TON,514.5369088 +CO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1.18415 +CO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,48.1148 +CO,Volatile Organic Compounds,2C5_Lead-production,,TON,3.21 +CO,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0036 +CO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,117.95847 +CO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,18738.10144 +CO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,43.556 +CO,Volatile Organic Compounds,2D3d_Coating-application,,TON,10158.16842 +CO,Volatile Organic Compounds,2D3e_Degreasing,,TON,60.06689 +CO,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,21.15115 +CO,Volatile Organic Compounds,2D3h_Printing,,TON,194.561145 +CO,Volatile Organic Compounds,2D3i_Other-solvent-use,Other_Fuel,TON,658.699631 +CO,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,246.29635 +CO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1235.64117 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,526.4048706 +CO,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,58.59325638 +CO,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,421.8477966 +CO,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,2721.418345 +CO,Volatile Organic Compounds,3B2_Manure-sheep,,TON,124.7816623 +CO,Volatile Organic Compounds,3B3_Manure-swine,,TON,491.9393056 +CO,Volatile Organic Compounds,3B4_Manure-other,,TON,116.7598343 +CO,Volatile Organic Compounds,3B4_Manure-poultry,,TON,99.89436848 +CO,Volatile Organic Compounds,3B4d_Manure-goats,,TON,11.59051764 +CO,Volatile Organic Compounds,3Dc_Other-farm,,TON,55.44561 +CO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4033.345843 +CO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,434.18 +CO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,1294.298172 +CO,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,914.83918 +CO,Volatile Organic Compounds,5C_Incineration,,TON,0.289245239 +CO,Volatile Organic Compounds,5C_Incineration,biomass,TON,13.50858179 +CO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.04234 +CO,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +CO,Volatile Organic Compounds,5C_Open-burning-residential,,TON,219.2669239 +CO,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,54.78777217 +CO,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,227.270921 +CO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,515.3423516 +CO,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,194.246049 +CO,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,1.5 +CT,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +CT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.316384023 +CT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.03882577 +CT,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,4.0350066 +CT,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.42424932 +CT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,208.1005131 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.51204085 +CT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.383500538 +CT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,14.68383702 +CT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.228820407 +CT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.033603062 +CT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.630687495 +CT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,37.76404517 +CT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.33415603 +CT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.195398038 +CT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,5.71607927 +CT,Ammonia,1A3bii_Road-LDV,light_oil,TON,824.08301 +CT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.56414414 +CT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,30.7220898 +CT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.732459004 +CT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.125303797 +CT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12.30120248 +CT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.178328896 +CT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.18137135 +CT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.140461398 +CT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.1806835 +CT,Ammonia,1A3c_Rail,diesel_oil,TON,0.431489731 +CT,Ammonia,1A3c_Rail,light_oil,TON,0.002396501 +CT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.85292057 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.25459911 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.7808481 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.57576739 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065801979 +CT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.93214766 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.530821345 +CT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.112956125 +CT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.302506104 +CT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.012979446 +CT,Ammonia,1A4bi_Residential-stationary,biomass,TON,191.6138618 +CT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,165.269999 +CT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.26325001 +CT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,486.084495 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.177806047 +CT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.004724498 +CT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.012487361 +CT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.464370473 +CT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.414758764 +CT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.295547284 +CT,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +CT,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.04327086 +CT,Ammonia,2D3d_Coating-application,,TON,0 +CT,Ammonia,2D3e_Degreasing,,TON,0 +CT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,22.530115 +CT,Ammonia,3B1a_Cattle-dairy,,TON,773.819885 +CT,Ammonia,3B1b_Cattle-non-dairy,,TON,358.085377 +CT,Ammonia,3B2_Manure-sheep,,TON,16.4282531 +CT,Ammonia,3B3_Manure-swine,,TON,24.6697102 +CT,Ammonia,3B4_Manure-other,,TON,329.69116 +CT,Ammonia,3B4_Manure-poultry,,TON,753.1751713 +CT,Ammonia,3B4d_Manure-goats,,TON,29.68744 +CT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,626.4 +CT,Ammonia,5A_Solid-waste-disposal,,TON,0 +CT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,78.118748 +CT,Ammonia,5C_Incineration,biomass,TON,19.02161468 +CT,Ammonia,5D1_Wastewater-domestic,,TON,208.365345 +CT,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.020831 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,186343.596 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,222857.788 +CT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12738.75457 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,533716.61 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,15906.02353 +CT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.29406585 +CT,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,208873.7067 +CT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,197185.218 +CT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12297257.7 +CT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,49718.356 +CT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,530056.34 +CT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,41333.10358 +CT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,4060.169174 +CT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,761917.4885 +CT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4269.12986 +CT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,478200.625 +CT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,57790.66458 +CT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,65944.711 +CT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2990.06546 +CT,Carbon Dioxide,1A3c_Rail,light_oil,TON,187.0549223 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,65277.319 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,90808.98618 +CT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4043.62698 +CT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,37214.89482 +CT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,299687.5926 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21895.32875 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,352.6487978 +CT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,47.888278 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1531.32146 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,33527.56019 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,51067.9551 +CT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,94494.2148 +CT,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,10120286.06 +CT,Carbon Monoxide,11C_Other-natural,,TON,6785.5224 +CT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,38.8791 +CT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,6.228726807 +CT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,34.35909 +CT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,18.4071025 +CT,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,8.156624439 +CT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,350.4198811 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,270.9598907 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5281.430687 +CT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,202.3106491 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1276.817839 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,26.21257097 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.2129922 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,4.003826837 +CT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,998.1625046 +CT,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +CT,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0595 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1515.45545 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3279.572471 +CT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.214654909 +CT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2484.009805 +CT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1910.85823 +CT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,144783.287 +CT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,352.31464 +CT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6706.3389 +CT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,133.4024335 +CT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,318.750165 +CT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,678.9231624 +CT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,236.4095057 +CT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,702.784876 +CT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3885.59102 +CT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2620.0873 +CT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,146.2670359 +CT,Carbon Monoxide,1A3c_Rail,light_oil,TON,41.60125852 +CT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,257.5854898 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,270.7988146 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,193.8981276 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.601829465 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.202358706 +CT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2121.635727 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,284.276045 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18739.95207 +CT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,103.540027 +CT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,130.3116217 +CT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,67560.51559 +CT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,26409.44759 +CT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,826.35003 +CT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.31625006 +CT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1113.855988 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,62.1583941 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,79.19131797 +CT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.67272444 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.48294 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,6663.643207 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,100.057086 +CT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10003.17499 +CT,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +CT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +CT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +CT,Carbon Monoxide,2D3e_Degreasing,,TON,0 +CT,Carbon Monoxide,2H2_Food-and-beverage,,TON,634.3182379 +CT,Carbon Monoxide,5A_Solid-waste-disposal,,TON,0.92406 +CT,Carbon Monoxide,5C_Incineration,biomass,TON,633.8295097 +CT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,84.33437 +CT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.94422137 +CT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,25.24607831 +CT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,84.39962401 +CT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,14.6076786 +CT,Methane,1A2g_Construction_and_Mining,light_oil,TON,11.93467112 +CT,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.129558628 +CT,Methane,1A3bii_Road-LDV,diesel_oil,TON,20.5956006 +CT,Methane,1A3bii_Road-LDV,light_oil,TON,425.725026 +CT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.811027 +CT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,23.4050233 +CT,Methane,1A3biii_Road-bus,diesel_oil,TON,5.096803042 +CT,Methane,1A3biii_Road-bus,light_oil,TON,0.937993156 +CT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,57.08262525 +CT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.555495673 +CT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.6912632 +CT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,8.56396044 +CT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.5189618 +CT,Methane,1A3c_Rail,diesel_oil,TON,0.135041265 +CT,Methane,1A3c_Rail,light_oil,TON,0.124218803 +CT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.351447 +CT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,62.24087575 +CT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,64.3783 +CT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.135686908 +CT,Methane,1A4bi_Residential-mobile,light_oil,TON,262.3169057 +CT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.49095851 +CT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.339709501 +CT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.30053067 +CT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.062335944 +CT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,38.26478739 +CT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.78124459 +CT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,92.2849283 +CT,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,5089.900203 +CT,Nitrogen Oxides,11C_Other-natural,,TON,585.63311 +CT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,79.5486 +CT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,25.6724762 +CT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,167.6 +CT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,116.8370802 +CT,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,25.3754072 +CT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,649.7189866 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,759.1681579 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,526.1013853 +CT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,33.29910633 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,527.894404 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,131.5858154 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.627089317 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,17.96714228 +CT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1390.7724 +CT,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +CT,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.238 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2787.96582 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,46.88827514 +CT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.033770156 +CT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,594.9878146 +CT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,563.964202 +CT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,14910.5752 +CT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,157.663522 +CT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,711.83962 +CT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,118.4088044 +CT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,14.27222799 +CT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2276.392013 +CT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,13.92058239 +CT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1227.76387 +CT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,188.1252794 +CT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,127.850611 +CT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1055.95554 +CT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.445866032 +CT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1755.499404 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,99.35258947 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,858.4375429 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,39.64395139 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.668071872 +CT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2630.89293 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,533.036061 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,260.8190117 +CT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.4152853 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,299.3648118 +CT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,652.2168844 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,477.6037163 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,2766.6198 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.7385006 +CT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2788.40493 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,145.8573769 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.766020888 +CT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.122046483 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.3864117 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,74.98862945 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,503.610865 +CT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,667.557227 +CT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +CT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +CT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +CT,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +CT,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0.7944718 +CT,Nitrogen Oxides,5C_Incineration,biomass,TON,2718.996448 +CT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,4.6685099 +CT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.610279488 +CT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,389.16812 +CT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.187772047 +CT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.9748997 +CT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.144413113 +CT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.274765988 +CT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.8965749 +CT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.390578287 +CT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.27386995 +CT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.380161404 +CT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.05237646 +CT,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,111.696122 +CT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,16.97663 +CT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.861055667 +CT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2.735412 +CT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.08277113 +CT,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.779475617 +CT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,92.86694232 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1052.511685 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.648123261 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.450226092 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.788916505 +CT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,26.79731887 +CT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,6191.7675 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,225.4936249 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,55.34100806 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.690018347 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.090021502 +CT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.9108715 +CT,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,3466.085459 +CT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,178.491599 +CT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.28405 +CT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.57109999 +CT,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +CT,PM10 Filterable,2A2_Lime-production,,TON,0.05778071 +CT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,4833.781591 +CT,PM10 Filterable,2A6_Other-minerals,,TON,1053.577415 +CT,PM10 Filterable,2B_Chemicals-other,,TON,0.525760404 +CT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.000693541 +CT,PM10 Filterable,2D3d_Coating-application,,TON,0.193875096 +CT,PM10 Filterable,2D3e_Degreasing,,TON,0 +CT,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.09682E-05 +CT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,8.384625093 +CT,PM10 Filterable,2H2_Food-and-beverage,,TON,125.9830667 +CT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,49.40933613 +CT,PM10 Filterable,3B1a_Cattle-dairy,,TON,147.8828379 +CT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,130.263563 +CT,PM10 Filterable,3Dc_Other-farm,,TON,6571.505234 +CT,PM10 Filterable,5A_Solid-waste-disposal,,TON,0.4443626 +CT,PM10 Filterable,5C_Incineration,biomass,TON,40.33568978 +CT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,28.613447 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,17.97181 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.418919668 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3.00598 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,11.457694 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.829229368 +CT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,170.2131951 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,42.40319716 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.49521185 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.524891839 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1090.280637 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,9.624371048 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.514379331 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.819472621 +CT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,52.65857876 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,233.992591 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,25.22867203 +CT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000294246 +CT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,39.75193902 +CT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,6191.7675 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,34.865168 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1314.98028 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.5809665 +CT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.95452 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,7.690907339 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.753300602 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,127.7997702 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.601747694 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,87.706948 +CT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.519928456 +CT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.1659704 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,33.52935015 +CT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.023780394 +CT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,45.82427916 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,233.2045822 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,77.51854735 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.771405786 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.193796465 +CT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,33.8369417 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47.2673505 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,23.70076974 +CT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.51495896 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,24.2326876 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,289.3647779 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3615.390367 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,393.34261 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.62659998 +CT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,14.47575929 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.58509524 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.253307472 +CT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005943347 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.69494437 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,24.98845163 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.472979 +CT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,28.60252851 +CT,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +CT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.06088185 +CT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4833.781591 +CT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1053.621426 +CT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,0.525791723 +CT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.022458716 +CT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.193875096 +CT,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +CT,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.09682E-05 +CT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,8.384625093 +CT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1667.440691 +CT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,49.40933613 +CT,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,147.8828379 +CT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,130.263563 +CT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,6571.505234 +CT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0.4892783 +CT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,73.19681759 +CT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,28.613447 +CT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,16.97663 +CT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.687670903 +CT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,0.7433821 +CT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.98855429 +CT,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.77817847 +CT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,91.53404659 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,905.6657991 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.255960523 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.293398631 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.19733347 +CT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,26.08300429 +CT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1091.50255 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,193.9290014 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,51.00100817 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.00881765 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.069456925 +CT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.6702229 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,3419.432475 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,137.174099 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.21839999 +CT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.06410504 +CT,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +CT,PM2.5 Filterable,2A2_Lime-production,,TON,0.01036061 +CT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,483.3781591 +CT,PM2.5 Filterable,2A6_Other-minerals,,TON,131.9014865 +CT,PM2.5 Filterable,2B_Chemicals-other,,TON,0.525760404 +CT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.000693541 +CT,PM2.5 Filterable,2D3d_Coating-application,,TON,0.193382941 +CT,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +CT,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.09682E-05 +CT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,7.714096893 +CT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,7.037718336 +CT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,48.30149383 +CT,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,30.7373251 +CT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,27.0751656 +CT,PM2.5 Filterable,3Dc_Other-farm,,TON,1306.485751 +CT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0.4443626 +CT,PM2.5 Filterable,5C_Incineration,biomass,TON,39.58321317 +CT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,22.0624742 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,17.97181 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.245534945 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1.01395 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,10.36347716 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.82793222 +CT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,168.8802993 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,41.13055318 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,24.13315489 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.524891839 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,943.4100174 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,8.225241538 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.35738391 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,1.227644786 +CT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,51.96899938 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,226.97279 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,23.22283783 +CT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000294246 +CT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,33.76878123 +CT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1091.50255 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,23.12500261 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,459.475138 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.6522336 +CT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.7372006 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,4.544064717 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.428968023 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,77.76247309 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.295745401 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,53.7532593 +CT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.555413712 +CT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.4642211 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,32.52346853 +CT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021923744 +CT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,44.31503615 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,201.6384252 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,73.17978295 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.089848898 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.174056897 +CT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.59694962 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,45.8493347 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.85728824 +CT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.51495896 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,23.50570811 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,266.2294552 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3568.737383 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,352.0251 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.56094998 +CT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,11.96876437 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.26754161 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.233042919 +CT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005943347 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.64409606 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,22.99009923 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.158794 +CT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,26.31432026 +CT,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +CT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.01346175 +CT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,483.3781591 +CT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,131.9454969 +CT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,0.525791723 +CT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.003255684 +CT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.193382941 +CT,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +CT,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.09682E-05 +CT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,7.714096893 +CT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1539.902044 +CT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,48.30149383 +CT,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,30.7373251 +CT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,27.0751656 +CT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1306.485751 +CT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0.4892783 +CT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,68.75203821 +CT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,22.0624742 +CT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.46985 +CT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.939091269 +CT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,227.654 +CT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,156.7916472 +CT,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.559749489 +CT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,34.03319798 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.44000714 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.566049555 +CT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.071400408 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,60.29009266 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.150474526 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.58146099 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.348552118 +CT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,15.00438681 +CT,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +CT,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00102 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4.33277883 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.248346403 +CT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.28114E-05 +CT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,87.84979153 +CT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.70157395 +CT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,252.37449 +CT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.42915145 +CT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.878019 +CT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.350092145 +CT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.083355776 +CT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.445730273 +CT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.087612361 +CT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.04670312 +CT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.186009506 +CT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.35074975 +CT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.484781243 +CT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003083012 +CT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7.33553046 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,11.27424072 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,37.29126017 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,113.0068074 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001060117 +CT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.62601835 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.572770247 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.448494768 +CT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.022650418 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.321571474 +CT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.953988408 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,91.80456552 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1173.41703 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.0356018 +CT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,16.70420079 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.181839331 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.005855009 +CT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000268422 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.013446389 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.55676007 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.469453497 +CT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.542403387 +CT,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +CT,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +CT,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,4.301525 +CT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +CT,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +CT,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,2.40656 +CT,Sulfur Dioxide,5C_Incineration,biomass,TON,308.8298413 +CT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.57226889 +CT,Volatile Organic Compounds,11C_Other-natural,,TON,66959.897 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.155331 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.99278965 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,4.12309 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.473287934 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.03839037 +CT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,65.11266219 +CT,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,8.929109841 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,50.43063689 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,147.0405433 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18.24403478 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,36.12977448 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.602242019 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.011885676 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.157272951 +CT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,119.8394463 +CT,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0 +CT,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00476 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,287.749603 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,214.7023731 +CT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.028005728 +CT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,243.8860963 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,219.552065 +CT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,12334.9637 +CT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,48.367751 +CT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,492.61397 +CT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,11.7283962 +CT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,19.71399514 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,150.3475348 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,11.31677438 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,134.0557744 +CT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,160.8882576 +CT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,541.62516 +CT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,52.583737 +CT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.900167822 +CT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,69.67074971 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,7.667818263 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,43.58138102 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.813502809 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.056191829 +CT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,144.5609622 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,65.63181 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,595.6224646 +CT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.9161778 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,32.23477367 +CT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4153.465346 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3673.52758 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,117.837504 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.184600004 +CT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,153.123348 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.72507808 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.996297719 +CT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.064963442 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.9964585 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,830.2208437 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.4090937 +CT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1928.766439 +CT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,156.115858 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,196.0266183 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,104.0701416 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,668.1440479 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2736.688275 +CT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.02966912 +CT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.04587 +CT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +CT,Volatile Organic Compounds,2B_Chemicals-other,,TON,149.0581912 +CT,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +CT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.0181775 +CT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,9239.573749 +CT,Volatile Organic Compounds,2D3d_Coating-application,,TON,6944.322235 +CT,Volatile Organic Compounds,2D3e_Degreasing,,TON,2881.511301 +CT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,22.3278 +CT,Volatile Organic Compounds,2D3h_Printing,,TON,6048.043447 +CT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +CT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +CT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,9.20317 +CT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,232.0687689 +CT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,47.73610334 +CT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,61.905594 +CT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,28.6468304 +CT,Volatile Organic Compounds,3B2_Manure-sheep,,TON,1.31426012 +CT,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.97357673 +CT,Volatile Organic Compounds,3B4_Manure-other,,TON,26.375292 +CT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,60.25401616 +CT,Volatile Organic Compounds,3B4d_Manure-goats,,TON,2.37499524 +CT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,45.074826 +CT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,336.5550995 +CT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,552.74934 +CT,Volatile Organic Compounds,5C_Incineration,biomass,TON,53.71124142 +CT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,21.0835929 +CT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,58.065543 +CT,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,30.19662 +CT,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0044 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.0973009 +DC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.012062278 +DC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.04088889 +DC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +DC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.5441121 +DC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.023576755 +DC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.3988566 +DC,Ammonia,1A3bii_Road-LDV,light_oil,TON,115.5958959 +DC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.2319282 +DC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.85767706 +DC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.707907185 +DC,Ammonia,1A3biii_Road-bus,light_oil,TON,0.220400133 +DC,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.16006 +DC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.60657025 +DC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.063706227 +DC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.383818 +DC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.098478663 +DC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.228544 +DC,Ammonia,1A3c_Rail,diesel_oil,TON,0.107348834 +DC,Ammonia,1A3c_Rail,light_oil,TON,8.50232E-05 +DC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.093748414 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.01 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.584 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.37258 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.03607547 +DC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.081038254 +DC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.00147472 +DC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.260073426 +DC,Ammonia,1A4bi_Residential-stationary,biomass,TON,0.26426245 +DC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.399 +DC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,119.040975 +DC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002314684 +DC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.018361203 +DC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.007055288 +DC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.04182683 +DC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.0825 +DC,Ammonia,3B1a_Cattle-dairy,,TON,0 +DC,Ammonia,3B1b_Cattle-non-dairy,,TON,0 +DC,Ammonia,3B2_Manure-sheep,,TON,0 +DC,Ammonia,3B3_Manure-swine,,TON,0 +DC,Ammonia,3B4_Manure-other,,TON,0 +DC,Ammonia,3B4_Manure-poultry,,TON,0 +DC,Ammonia,3B4d_Manure-goats,,TON,0 +DC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,6.2 +DC,Ammonia,5D1_Wastewater-domestic,,TON,4.237084 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11990.013 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7260.448129 +DC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,416.929879 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,66946.25 +DC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1904.2186 +DC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,16843.439 +DC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2009386.075 +DC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8095.031 +DC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,133107.5073 +DC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,44392.86 +DC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,6325.42165 +DC,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4590.721 +DC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,39547.926 +DC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1616.73011 +DC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,75841.73 +DC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,30050.60102 +DC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10729.22 +DC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,94.34141 +DC,Carbon Dioxide,1A3c_Rail,light_oil,TON,6.434938 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4438.154 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6607.7642 +DC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,155.0345 +DC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,181.56406 +DC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,19442.37334 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,284.0197 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1378.42241 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,868.7432 +DC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3024.093 +DC,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,228402.8009 +DC,Carbon Monoxide,11C_Other-natural,,TON,160.837 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.715585 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,165.6823524 +DC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.83575654 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.577417374 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,13.20569103 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,255.4608 +DC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,404.004346 +DC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4.0610193 +DC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,94.52741 +DC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,16285.58066 +DC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,92.02577 +DC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1322.108911 +DC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,93.8553303 +DC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,106.80683 +DC,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,21.20412 +DC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38.632721 +DC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,21.216951 +DC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,116.47679 +DC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,243.0769778 +DC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,374.8265 +DC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,34.6837469 +DC,Carbon Monoxide,1A3c_Rail,light_oil,TON,1.535466 +DC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,29.51022906 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.2 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.98177774 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.88 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,638.728484 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.53125 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1379.41444 +DC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.800075 +DC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,0.49187978 +DC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,4538.291747 +DC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,206.10097 +DC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.995 +DC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,238.1598 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.916228 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,332.2616345 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.705258 +DC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,328.95612 +DC,Carbon Monoxide,2H2_Food-and-beverage,,TON,165.69119 +DC,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.294316305 +DC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +DC,Carbon Monoxide,5C_Open-burning-residential,,TON,0 +DC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,0 +DC,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,5.1282862 +DC,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.32816841 +DC,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.796041582 +DC,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.786898038 +DC,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,1.037878 +DC,Methane,1A2g_Construction_and_Mining,light_oil,TON,1.45798168 +DC,Methane,1A3bii_Road-LDV,diesel_oil,TON,1.7603013 +DC,Methane,1A3bii_Road-LDV,light_oil,TON,39.64601125 +DC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.4179071 +DC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.73540684 +DC,Methane,1A3biii_Road-bus,diesel_oil,TON,1.933245998 +DC,Methane,1A3biii_Road-bus,light_oil,TON,0.22760827 +DC,Methane,1A3biii_Road-bus,natural_gas,TON,46.72681 +DC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.8337438 +DC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.037800291 +DC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.6307379 +DC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,0.338466416 +DC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.279226 +DC,Methane,1A3c_Rail,diesel_oil,TON,0.004366735 +DC,Methane,1A3c_Rail,light_oil,TON,0.004422262 +DC,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.1294262 +DC,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.5304025 +DC,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.954948 +DC,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.006282621 +DC,Methane,1A4bi_Residential-mobile,light_oil,TON,17.18466078 +DC,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01138963 +DC,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,1.338535467 +DC,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.03227997 +DC,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,2.9306503 +DC,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,4.65175453 +DC,Nitrogen Oxides,11C_Other-natural,,TON,22.0798 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,57.51253 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.3964205 +DC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.089898288 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,14.48306297 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,26.26193598 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,394.8943 +DC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,5.6062872 +DC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,0.078913748 +DC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,20.342214 +DC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,1354.23645 +DC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,41.63971 +DC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,129.1305664 +DC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,251.112793 +DC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,9.1568904 +DC,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,17.80771 +DC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,116.31285 +DC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,2.9291858 +DC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,293.59731 +DC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,35.64915745 +DC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.14448 +DC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,213.0668485 +DC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.01349854 +DC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,194.7415616 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.44 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.80007707 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.69568 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,816.5516124 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,31.71934 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,18.1795505 +DC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.433276 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,1.1254818 +DC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,41.58821157 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,7.15085116 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,7.182 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,559.7694 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.136339 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,3.4056078 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.137451 +DC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,22.228158 +DC,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,0.355576699 +DC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +DC,Nitrogen Oxides,5C_Open-burning-residential,,TON,0 +DC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0 +DC,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,5.5215302 +DC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.06312111 +DC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,45.71450817 +DC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.04158307 +DC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.16262552 +DC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.137802758 +DC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.110181643 +DC,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.6844644 +DC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.087957146 +DC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.028430557 +DC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.23436262 +DC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.413028796 +DC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.1670388 +DC,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.492733241 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.949378164 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.600124516 +DC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,613.2291 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.55518232 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.074592 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.8033854 +DC,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,39.4881511 +DC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.43092 +DC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.1908 +DC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,2120.36425 +DC,PM10 Filterable,2A6_Other-minerals,,TON,0 +DC,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.00005 +DC,PM10 Filterable,2D3h_Printing,,TON,0.14 +DC,PM10 Filterable,2H2_Food-and-beverage,,TON,32.1822247 +DC,PM10 Filterable,3Dc_Other-farm,,TON,0 +DC,PM10 Filterable,5C_Incineration,Other_Fuel,TON,0.303188989 +DC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +DC,PM10 Filterable,5C_Open-burning-residential,,TON,0 +DC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,0 +DC,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.28176899 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.7174276 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.783147437 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.050238782 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.056395689 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2.503259671 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,43.9167 +DC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.06626917 +DC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.09006435 +DC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,613.2291 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,2.765677 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,326.8513566 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.995394 +DC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.414215 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,22.169589 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.76993832 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.283679 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,14.282432 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.30068739 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,34.496595 +DC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.317357258 +DC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.788442 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,6.28965948 +DC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000830804 +DC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.02189477 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1.034 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.74489989 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.44064 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.52241831 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.835806 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,1.7220678 +DC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.01894142 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.081762419 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,11.83304877 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,39.6602989 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.94962 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.096075 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.2822982 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.499076451 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.186821 +DC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,1.08905199 +DC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2120.36425 +DC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.00005 +DC,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.14 +DC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,433.401941 +DC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.303188989 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +DC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +DC,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.8604732 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.881921904 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.302150463 +DC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,153.3073 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.86 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.32551666 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.037296 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.36728677 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,34.4536311 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.33117 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.65494 +DC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,212.036425 +DC,PM2.5 Filterable,2A6_Other-minerals,,TON,0 +DC,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,1.47059E-05 +DC,PM2.5 Filterable,2D3h_Printing,,TON,0.14 +DC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.11492037 +DC,PM2.5 Filterable,3Dc_Other-farm,,TON,0 +DC,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,0.201970505 +DC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-residential,,TON,0 +DC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0 +DC,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.28176899 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.6359064 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.773169692 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.050238782 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,1.018675919 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1.399709031 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,42.59919 +DC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,2.82231397 +DC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,0.07631999 +DC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,153.3073 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.9199169 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,69.84138713 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.16285 +DC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.35328495 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,13.1478131 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.3030249 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.2546855 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.826444 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.062524672 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.624986 +DC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.888140532 +DC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.7502244 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,6.10093037 +DC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00076434 +DC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.8708696 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.894 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.57152489 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.44064 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,35.08663831 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.750732 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,1.5880683 +DC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.01894142 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.079309524 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,10.8864847 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,34.6257789 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.84987 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +DC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.560215 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.2738293 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.459280771 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.1812164 +DC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,1.00192839 +DC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,212.036425 +DC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,0 +DC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,1.47059E-05 +DC,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.14 +DC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,402.334696 +DC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.201970505 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0 +DC,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.8604732 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.09301 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.046715684 +DC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.002336864 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.853517434 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.169297436 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,0.5312099 +DC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.02988115 +DC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,0.017118018 +DC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.14217317 +DC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,41.2840736 +DC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.07060881 +DC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.73953262 +DC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.38107293 +DC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.129783406 +DC,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.02430547 +DC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.33521031 +DC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.033170681 +DC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.6482512 +DC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.616542717 +DC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.2197371 +DC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.120942707 +DC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000108347 +DC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.12776318 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.05 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.7754557 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,15.54048 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.72438386 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.03773507 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.105431163 +DC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.000867881 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.001530138 +DC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.322442645 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,0.135309563 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.8329 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,3.572395 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002463786 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.022636123 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.007986128 +DC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.04934723 +DC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.00185 +DC,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.217074855 +DC,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +DC,Sulfur Dioxide,5C_Open-burning-residential,,TON,0 +DC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0 +DC,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.1710522 +DC,Volatile Organic Compounds,11C_Other-natural,,TON,787.3672 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.5798954 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.4721266 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.602422998 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.995547697 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +DC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,0.796776806 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,54.73613 +DC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,26.3806975 +DC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,0.170124746 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,6.504136 +DC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,1207.488759 +DC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.27455 +DC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,87.7044525 +DC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,19.9801554 +DC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,4.8289059 +DC,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.298552 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.088199 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,1.1992224 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,37.735955 +DC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,12.97452687 +DC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,65.82597 +DC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,10.3494048 +DC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.03367116 +DC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6.47909021 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.034 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.86948678 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.00529365 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +DC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.22247015 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.821186 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,45.2583487 +DC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.8549118 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,0.10940174 +DC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,270.4552723 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,28.3368949 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.284487 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +DC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,32.746955 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.497408 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,19.53238531 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.484967 +DC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,79.819334 +DC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.3305916 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,4.3767464 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,63.1277268 +DC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,65.24521081 +DC,Volatile Organic Compounds,2B_Chemicals-other,,TON,0.42 +DC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,1786.97796 +DC,Volatile Organic Compounds,2D3d_Coating-application,,TON,730.9232649 +DC,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,50.56311 +DC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,4.7022 +DC,Volatile Organic Compounds,2D3h_Printing,,TON,258.926705 +DC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +DC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,15.915055 +DC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,59.9616973 +DC,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,0 +DC,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,0 +DC,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0 +DC,Volatile Organic Compounds,3B3_Manure-swine,,TON,0 +DC,Volatile Organic Compounds,3B4_Manure-other,,TON,0 +DC,Volatile Organic Compounds,3B4_Manure-poultry,,TON,0 +DC,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0 +DC,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.029864441 +DC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +DC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,0 +DC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,0 +DC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,17.5530051 +DE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.441649335 +DE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.43 +DE,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.034 +DE,Ammonia,1A1a_Public-Electricity,light_oil,TON,44.45515 +DE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,15.41862059 +DE,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.34370316 +DE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.086548795 +DE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.618531641 +DE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,44.66172996 +DE,Ammonia,1A2c_Chemicals,natural_gas,TON,0.032384 +DE,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0003766 +DE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.9427762 +DE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.025914912 +DE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.45700314 +DE,Ammonia,1A3bii_Road-LDV,light_oil,TON,257.9796618 +DE,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.5553119 +DE,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.14220274 +DE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.09397656 +DE,Ammonia,1A3biii_Road-bus,light_oil,TON,0.154119526 +DE,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.12138503 +DE,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.6923701 +DE,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.051318531 +DE,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.1828854 +DE,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.314652237 +DE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.7891924 +DE,Ammonia,1A3c_Rail,diesel_oil,TON,0.133370071 +DE,Ammonia,1A3c_Rail,light_oil,TON,5.02965E-05 +DE,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.453202488 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.434891967 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.016802443 +DE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.810010345 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.10087717 +DE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.203699415 +DE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.119162146 +DE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.377278577 +DE,Ammonia,1A4bi_Residential-stationary,biomass,TON,45.18621318 +DE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,5.1408 +DE,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.11759999 +DE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3.00659542 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.407184404 +DE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.011795138 +DE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003505064 +DE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.137457782 +DE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.33052754 +DE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.7720025 +DE,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00613155 +DE,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.00427485 +DE,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.00882123 +DE,Ammonia,2B_Chemicals-other,Other_Fuel,TON,7.5771478 +DE,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,31.04 +DE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,25.434 +DE,Ammonia,3B1a_Cattle-dairy,,TON,215.4795437 +DE,Ammonia,3B1b_Cattle-non-dairy,,TON,318.7769716 +DE,Ammonia,3B2_Manure-sheep,,TON,6.577759 +DE,Ammonia,3B3_Manure-swine,,TON,111.0968332 +DE,Ammonia,3B4_Manure-other,,TON,55.10806 +DE,Ammonia,3B4_Manure-poultry,,TON,5333.687885 +DE,Ammonia,3B4d_Manure-goats,,TON,10.819919 +DE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,676.829 +DE,Ammonia,3Dc_Other-farm,,TON,5.046 +DE,Ammonia,3F_Ag-res-on-field,,TON,36.413 +DE,Ammonia,5B_Compost-biogas,Other_Fuel,TON,26.34821 +DE,Ammonia,5C_Open-burning-yard-waste,,TON,1.014144608 +DE,Ammonia,5D1_Wastewater-domestic,,TON,4.82105 +DE,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1330.4642 +DE,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,95785.65 +DE,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,7582.82 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,42358.121 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,53404.44802 +DE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3076.209219 +DE,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4911.570344 +DE,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,157044.1023 +DE,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,9097.71 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,116090.69 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2107.87394 +DE,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.64765292 +DE,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,107.1456268 +DE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,74999.702 +DE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3836975.497 +DE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16605.282 +DE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,210745.2851 +DE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,72361.7207 +DE,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,4474.37439 +DE,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4621.5494 +DE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,625801.083 +DE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1249.96975 +DE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,608308.49 +DE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,109452.465 +DE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,29411.861 +DE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,65.509631 +DE,Carbon Dioxide,1A3c_Rail,light_oil,TON,3.8072385 +DE,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5123.978569 +DE,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,100001.3098 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12411.038 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,16603.38754 +DE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,575.09407 +DE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,14668.6861 +DE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,103469.3314 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,50141.5079 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,890.9049604 +DE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,139.65996 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,430.08048 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,9908.199014 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,40702.444 +DE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,201287.49 +DE,Carbon Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,2209.066 +DE,Carbon Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,160.33 +DE,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,7724.48 +DE,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,7177849.778 +DE,Carbon Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,5050 +DE,Carbon Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,16490.4 +DE,Carbon Monoxide,11C_Other-natural,,TON,2448.5664 +DE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,3.60934622 +DE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,46.5815 +DE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,2.67603 +DE,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0 +DE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,525.378643 +DE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,880.774016 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,60.20160206 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1088.152068 +DE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43.94738842 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,177.4077356 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1007.208556 +DE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,18.773633 +DE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.642936 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,321.67585 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,436.748774 +DE,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.05417047 +DE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1098.76202 +DE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,366.67385 +DE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,44276.98903 +DE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,83.98439 +DE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2825.548462 +DE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,101.446271 +DE,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,136.886145 +DE,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,20.525914 +DE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,427.910699 +DE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,59.824094 +DE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,595.29663 +DE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1782.520746 +DE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1057.5823 +DE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,42.79934888 +DE,Carbon Monoxide,1A3c_Rail,light_oil,TON,0.89776455 +DE,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,492.8632542 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,45.70515186 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.113302618 +DE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,540.9441619 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,45.944986 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3442.883198 +DE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.689773 +DE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,41.35418 +DE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,22582.93098 +DE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5755.557168 +DE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,32.129995 +DE,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.7056 +DE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,291.9475 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,150.5261996 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,186.5137218 +DE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.635544 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.901564 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,2024.507099 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,80.52663 +DE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,21734.3869 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,1.246806 +DE,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.426784 +DE,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,58.147565 +DE,Carbon Monoxide,2B_Chemicals-other,,TON,10.4475 +DE,Carbon Monoxide,2D3d_Coating-application,,TON,0 +DE,Carbon Monoxide,2H2_Food-and-beverage,,TON,177.009492 +DE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.12598 +DE,Carbon Monoxide,3F_Ag-res-on-field,,TON,150.42 +DE,Carbon Monoxide,5A_Solid-waste-disposal,,TON,137.9600381 +DE,Carbon Monoxide,5C_Incineration,,TON,0.080055262 +DE,Carbon Monoxide,5C_Incineration,biomass,TON,4.426969046 +DE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,114.10621 +DE,Carbon Monoxide,5C_Open-burning-residential,,TON,90.13028 +DE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,109.1754047 +DE,Carbon Monoxide,5C_Other-open-burning,,TON,595.798594 +DE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.30866 +DE,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.04409243 +DE,Methane,1A1a_Public-Electricity,natural_gas,TON,2.5125683 +DE,Methane,1A1b_Pet-refining,natural_gas,TON,22.89 +DE,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.92804784 +DE,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.402146996 +DE,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18.78318478 +DE,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.135067753 +DE,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,9.440233536 +DE,Methane,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.104443 +DE,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,2.803981 +DE,Methane,1A2g_Construction_and_Mining,light_oil,TON,1.551067184 +DE,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.029834424 +DE,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.8874133 +DE,Methane,1A3bii_Road-LDV,light_oil,TON,126.6078405 +DE,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.5929754 +DE,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.00217822 +DE,Methane,1A3biii_Road-bus,diesel_oil,TON,2.49834042 +DE,Methane,1A3biii_Road-bus,light_oil,TON,0.164348371 +DE,Methane,1A3biii_Road-bus,natural_gas,TON,13.047275 +DE,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20.60815311 +DE,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.092248737 +DE,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.923363 +DE,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.034696943 +DE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.3633568 +DE,Methane,1A3c_Rail,diesel_oil,TON,0.002988945 +DE,Methane,1A3c_Rail,light_oil,TON,0.00260077 +DE,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.302412074 +DE,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.264811691 +DE,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.41709599 +DE,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,11.16976913 +DE,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9.925853 +DE,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.51235361 +DE,Methane,1A4bi_Residential-mobile,light_oil,TON,79.99542205 +DE,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.08004997 +DE,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.80081316 +DE,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.68187103 +DE,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017654256 +DE,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,12.03278983 +DE,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.1454803 +DE,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,194.312578 +DE,Methane,1B2av_Fugitive-petr-distr,light_oil,TON,0.04226688 +DE,Methane,1B2av_Fugitive-petr-distr-marine,light_oil,TON,6.47302168 +DE,Methane,2A6_Other-minerals,Other_Fuel,TON,1.2048688 +DE,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,17709.80821 +DE,Methane,5A_Solid-waste-disposal,,TON,971.297082 +DE,Methane,5D1_Wastewater-domestic,Other_Fuel,TON,0.316066 +DE,Nitrogen Oxides,11C_Other-natural,,TON,1178.5246 +DE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,9.82998232 +DE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,162.7 +DE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +DE,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0 +DE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,870.314699 +DE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,631.414864 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,174.6077745 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,115.8972132 +DE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.700610384 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,819.1496764 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1552.87359 +DE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,27.20006 +DE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.380708 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,587.20321 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,5.75217092 +DE,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.007832012 +DE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,243.4359629 +DE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,135.810999 +DE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,4740.662735 +DE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,38.804482 +DE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,325.566644 +DE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,240.455076 +DE,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,14.55798731 +DE,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,10.540745 +DE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1619.382394 +DE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,6.7725757 +DE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1812.2797 +DE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,240.7989321 +DE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,57.62944 +DE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,242.6053332 +DE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.007928173 +DE,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3728.62467 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,190.4290212 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.156957724 +DE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,588.1317734 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,87.893436 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,43.91193824 +DE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.7015094 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,104.755469 +DE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,210.6644156 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,92.47946572 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,115.668 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.5578001 +DE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,628.09298 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,322.9761884 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.995245149 +DE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.31005523 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.2530548 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,20.8417744 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,408.79198 +DE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1520.00092 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.358 +DE,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,2.407 +DE,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,12.55317 +DE,Nitrogen Oxides,2B_Chemicals-other,,TON,19.067 +DE,Nitrogen Oxides,2D3d_Coating-application,,TON,0.1333 +DE,Nitrogen Oxides,2H2_Food-and-beverage,,TON,1.518 +DE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.05525 +DE,Nitrogen Oxides,3F_Ag-res-on-field,,TON,6.549 +DE,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,24.11337 +DE,Nitrogen Oxides,5C_Incineration,,TON,0.022793198 +DE,Nitrogen Oxides,5C_Incineration,biomass,TON,8.416126527 +DE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,2.7695684 +DE,Nitrogen Oxides,5C_Open-burning-residential,,TON,6.3604511 +DE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,4.17469688 +DE,Nitrogen Oxides,5C_Other-open-burning,,TON,17.6271824 +DE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,2.7484 +DE,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.02344471 +DE,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.48627292 +DE,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.043162172 +DE,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.265068021 +DE,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0290624 +DE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.21726724 +DE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,104.9745449 +DE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.053795762 +DE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.479177005 +DE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.114108302 +DE,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.086687895 +DE,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.28170136 +DE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.678920731 +DE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.068676324 +DE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.9472975 +DE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.21492618 +DE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.31569332 +DE,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.046065845 +DE,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.21294536 +DE,Nitrous Oxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0362835 +DE,Nitrous Oxide,2A6_Other-minerals,Other_Fuel,TON,0.01959735 +DE,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,37.59764064 +DE,Nitrous Oxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.035 +DE,Nitrous Oxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.302324 +DE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.524155432 +DE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,13.12 +DE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.069 +DE,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.1092 +DE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,44.37484455 +DE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,232.1281938 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,56.98434082 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,13.74079564 +DE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,6.84511E-05 +DE,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03291645 +DE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,3768.1835 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.79893488 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.482544141 +DE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.224231802 +DE,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,757.7221133 +DE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,6.94008 +DE,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.15875999 +DE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.22780304 +DE,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.01634061 +DE,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.02423819 +DE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,7858.6711 +DE,PM10 Filterable,2A6_Other-minerals,,TON,51.18921042 +DE,PM10 Filterable,2B_Chemicals-other,,TON,26.54628471 +DE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,0.002 +DE,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,4.156644 +DE,PM10 Filterable,2D3d_Coating-application,,TON,2.32720856 +DE,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.136 +DE,PM10 Filterable,2H2_Food-and-beverage,,TON,45.00116415 +DE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,4.27962587 +DE,PM10 Filterable,3B1a_Cattle-dairy,,TON,37.754557 +DE,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,68.013961 +DE,PM10 Filterable,3Dc_Other-farm,,TON,2266.43699 +DE,PM10 Filterable,5A_Solid-waste-disposal,,TON,16.24477 +DE,PM10 Filterable,5C_Incineration,,TON,0.142151474 +DE,PM10 Filterable,5C_Incineration,biomass,TON,0.650134809 +DE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,14.12 +DE,PM10 Filterable,5C_Open-burning-residential,,TON,34.03 +DE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,16.14 +DE,PM10 Filterable,5C_Other-open-burning,,TON,59.92 +DE,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.027484 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.27527323 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,25.75 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.872 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.3642 +DE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,137.8830759 +DE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,342.2866005 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.521658784 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.752809099 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.370492468 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,61.09302742 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,47.57976847 +DE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.03299244 +DE,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05587526 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,49.168165 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.347680846 +DE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,8.14562E-05 +DE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,33.87618177 +DE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3768.1835 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,8.5778306 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,334.3695583 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.4343281 +DE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.17430907 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,13.5792493 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.564382543 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.38162147 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,100.228264 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.238122033 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,128.34398 +DE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.39709616 +DE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.0236885 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,7.144453481 +DE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000502271 +DE,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,80.40914289 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.48858299 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.477311791 +DE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.103347134 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.5214611 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.32397322 +DE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.072289407 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.75812621 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,96.44031536 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,792.0611135 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,15.29388 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.34985998 +DE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.18727335 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.99176855 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.151080307 +DE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01701991 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.42607944 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,7.827362791 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.89805 +DE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,66.2466086 +DE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0272624 +DE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0969528 +DE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7858.73608 +DE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,63.31529217 +DE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,35.52815741 +DE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.002 +DE,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,4.156644 +DE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.32720856 +DE,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.136 +DE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,439.6058705 +DE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,4.27962587 +DE,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,37.754557 +DE,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,68.013961 +DE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,2266.4671 +DE,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,25.645 +DE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,17.43843 +DE,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.142151474 +DE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.650134809 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,14.124802 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,34.0418538 +DE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,16.16455991 +DE,PM10 Primary (Filt + Cond),5C_Other-open-burning,,TON,59.9324004 +DE,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0714584 +DE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.230762607 +DE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,13.12 +DE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.508 +DE,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.1092 +DE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,44.08931788 +DE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,232.1278978 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,51.92400786 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,11.51712805 +DE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.76481E-05 +DE,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.032402055 +DE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,936.6483 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.3248107 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.113708254 +DE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.247072886 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,747.6291273 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.333579 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.12200999 +DE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.66965002 +DE,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.01634061 +DE,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.02423819 +DE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,785.8311 +DE,PM2.5 Filterable,2A6_Other-minerals,,TON,11.24257463 +DE,PM2.5 Filterable,2B_Chemicals-other,,TON,23.2904237 +DE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.002 +DE,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,4.156644 +DE,PM2.5 Filterable,2D3d_Coating-application,,TON,2.32720856 +DE,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.136 +DE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,3.881806982 +DE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,4.097502385 +DE,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,7.847255 +DE,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,14.136641 +DE,PM2.5 Filterable,3Dc_Other-farm,,TON,291.5858041 +DE,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,10.04789 +DE,PM2.5 Filterable,5C_Incineration,,TON,0.08748067 +DE,PM2.5 Filterable,5C_Incineration,biomass,TON,0.494856274 +DE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,12.87 +DE,PM2.5 Filterable,5C_Open-burning-residential,,TON,31.16 +DE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,13.07 +DE,PM2.5 Filterable,5C_Other-open-burning,,TON,59.92 +DE,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0151162 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.98178066 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,25.75 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.31079 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.3642 +DE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,137.5975496 +DE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,342.2863045 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.236007302 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.681790896 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.370492468 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,56.66482459 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,46.02534193 +DE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.03296147 +DE,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05536086 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,47.693119 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.081500416 +DE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,8.14562E-05 +DE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,29.50024093 +DE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,936.6483 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,5.11902673 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,115.4528554 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.6792315 +DE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.233749809 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,8.76149976 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.271398163 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.086432935 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,61.9681196 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.150325666 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,83.007766 +DE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.929525731 +DE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.9607005 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,6.930051129 +DE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.000462089 +DE,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,75.50378586 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.85136867 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.150919504 +DE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.246915428 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.2958165 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,3.98752562 +DE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.072289407 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.55538046 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,88.7304111 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,781.9681275 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,13.687381 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.31311 +DE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.6291202 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.18200044 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.139000468 +DE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01701991 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.41329728 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,7.201380929 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.631107 +DE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,60.9468584 +DE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0272624 +DE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0969528 +DE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,785.874598 +DE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,23.54143721 +DE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,32.27299432 +DE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.002 +DE,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,4.156644 +DE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,2.32720856 +DE,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.136 +DE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,398.4325312 +DE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,4.097502385 +DE,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,7.847255 +DE,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,14.136641 +DE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,291.6211981 +DE,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,14.791 +DE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,11.24155 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.08748067 +DE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.494856274 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,12.878492 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,31.1751673 +DE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.09269891 +DE,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,,TON,59.9324004 +DE,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0590906 +DE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.589891283 +DE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,474.5 +DE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +DE,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0 +DE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,117.9486179 +DE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,176.4722454 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.323262045 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.342402418 +DE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.017242852 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.21226951 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,173.0915467 +DE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.1373116 +DE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0057526 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,0.9194 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.032932203 +DE,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.61939E-06 +DE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,24.4079759 +DE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.63737909 +DE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,78.92013595 +DE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.14188869 +DE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.338295079 +DE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.617942369 +DE,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.091801789 +DE,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.024468774 +DE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.29445877 +DE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.025644301 +DE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.1756882 +DE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.245440211 +DE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.6024015 +DE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.150288145 +DE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,6.41039E-05 +DE,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,103.2776149 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.36997408 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.307074279 +DE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.676566274 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.10437046 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.265039857 +DE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.003221121 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.127206175 +DE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.706075793 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,18.09294706 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.3687381 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,6.0417 +DE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,3.64579801 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.421196673 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.014742051 +DE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000782901 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00373658 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.163680129 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.37416756 +DE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.2850835 +DE,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.00214967 +DE,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.000801535 +DE,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,2.1033015 +DE,Sulfur Dioxide,2B_Chemicals-other,,TON,55.51159 +DE,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +DE,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.0217 +DE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.00033 +DE,Sulfur Dioxide,3F_Ag-res-on-field,,TON,3.1305 +DE,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,41.1724 +DE,Sulfur Dioxide,5C_Incineration,,TON,0.018195061 +DE,Sulfur Dioxide,5C_Incineration,biomass,TON,9.779299781 +DE,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,34.35427 +DE,Sulfur Dioxide,5C_Open-burning-residential,,TON,1.0606725 +DE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.223359759 +DE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.61839 +DE,Volatile Organic Compounds,11C_Other-natural,,TON,14258.074 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.448462159 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,5.58978 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.406757 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.02879733 +DE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,68.9783728 +DE,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,25.6310166 +DE,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,135.6732112 +DE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,224.7221986 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.94093374 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.76040749 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.060222362 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.52149615 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +DE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,79.33403963 +DE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.9123513 +DE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0440164 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,63.71594 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,28.61216519 +DE,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.006449084 +DE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,137.6595878 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,32.2750304 +DE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,3280.247755 +DE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.589476 +DE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,194.48764 +DE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,17.5194225 +DE,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,4.85643238 +DE,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.93744545 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,81.8207042 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,2.50943262 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,137.020544 +DE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,63.07734046 +DE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,165.52454 +DE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,11.25769133 +DE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.019928439 +DE,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,240.7559452 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.06989618 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.028222246 +DE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,39.04264882 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.472346 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,111.06388 +DE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.145597 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,9.6547257 +DE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1251.645061 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,836.1972225 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,4.4981995 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.1029 +DE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,33.4824952 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.70530435 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.627048283 +DE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.14739502 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.75479866 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,260.1919534 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,21.437191 +DE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,4814.4712 +DE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,6.0645115 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,36.69069211 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,57.20212522 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,398.0171524 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,429.578534 +DE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,282.2219248 +DE,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,0.03 +DE,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,11.4247737 +DE,Volatile Organic Compounds,2B_Chemicals-other,,TON,82.41268823 +DE,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.7257 +DE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,1917.30804 +DE,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,5.26085441 +DE,Volatile Organic Compounds,2D3d_Coating-application,,TON,883.4274503 +DE,Volatile Organic Compounds,2D3e_Degreasing,,TON,155.52568 +DE,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.42 +DE,Volatile Organic Compounds,2D3h_Printing,,TON,382.04899 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,39.43903346 +DE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,159.1081174 +DE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,109.8099021 +DE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,42.50630796 +DE,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,17.238364 +DE,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,21.972727 +DE,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0.5262208 +DE,Volatile Organic Compounds,3B3_Manure-swine,,TON,3.46219746 +DE,Volatile Organic Compounds,3B4_Manure-other,,TON,4.4086447 +DE,Volatile Organic Compounds,3B4_Manure-poultry,,TON,432.3447846 +DE,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0.8655935 +DE,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.44837 +DE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,309.21674 +DE,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,23.05 +DE,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,32.632852 +DE,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,186.4336 +DE,Volatile Organic Compounds,5C_Incineration,,TON,0.027745505 +DE,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.214443935 +DE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,7.82403 +DE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,6.6372653 +DE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,16.42001118 +DE,Volatile Organic Compounds,5C_Other-open-burning,,TON,40.895055 +DE,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,16.756186 +DE,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.00303 +DE,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,3.4892 +DM,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.282692513 +DM,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,7.569295164 +DM,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,84.3664677 +DM,Ammonia,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,400.1405811 +DM,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.541550649 +DM,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,243490.2974 +DM,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.8710774 +DM,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6078800.01 +DM,Carbon Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,534013.9658 +DM,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1054.444925 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1152.994481 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.005599784 +DM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,49224.01929 +DM,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,32857.35495 +DM,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,21852.65168 +DM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1495.112126 +DM,Methane,1A1b_Pet-refining,heavy_oil,TON,551.351767 +DM,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.925153661 +DM,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,10717.49616 +DM,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,118990.2384 +DM,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,57629.26911 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4913.290085 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.009219846 +DM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,44244.94934 +DM,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,284948.3532 +DM,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,245860.4432 +DM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,803.7782715 +DM,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.091875063 +DM,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,109.2535485 +DM,Nitrous Oxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,8.864310585 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,208.9804747 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000311099 +DM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,228.7351067 +DM,PM10 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,5.852975565 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,214.2853816 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000565635 +DM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,412.6797646 +DM,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4711.64024 +DM,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,22597.86431 +DM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,9.289235135 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,207.9771052 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000311099 +DM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,228.7351067 +DM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,5.696345845 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,213.2820089 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000565635 +DM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,412.6797646 +DM,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4383.414164 +DM,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,20790.03471 +DM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,Other_Fuel,TON,9.132604315 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,409.8712996 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.000475133 +DM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,29.19985603 +DM,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7506.967129 +DM,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,167392.2314 +DM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.304103733 +DM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,22.679155 +DM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,556.1151024 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,240.943871 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.01713873 +DM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1159.366919 +DM,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,15899.55801 +DM,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,9989.770025 +DM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,29970.34248 +DM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,70.1229 +DM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6835.860528 +FL,Ammonia,1A1a_Public-Electricity,biomass,TON,117.888267 +FL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,43.332534 +FL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,76.248317 +FL,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,138.029432 +FL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,1366.243871 +FL,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,0.054 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.363091446 +FL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.749517706 +FL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,214.7391466 +FL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +FL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,76.02392656 +FL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.108001281 +FL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +FL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,39.68094807 +FL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,58.1034784 +FL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.813913211 +FL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,54.83621253 +FL,Ammonia,1A3bii_Road-LDV,light_oil,TON,4982.878578 +FL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.38200349 +FL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,214.4381751 +FL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,28.55996083 +FL,Ammonia,1A3biii_Road-bus,light_oil,TON,8.05028022 +FL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.021747065 +FL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,241.1434311 +FL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,6.174029403 +FL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,243.6381674 +FL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,40.12669849 +FL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31.68582636 +FL,Ammonia,1A3c_Rail,diesel_oil,TON,3.332165827 +FL,Ammonia,1A3c_Rail,light_oil,TON,0.002396499 +FL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7.157125928 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.741556495 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.00232 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +FL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.37373385 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.842735541 +FL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,8.188646306 +FL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,2.389864141 +FL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,28.92084207 +FL,Ammonia,1A4bi_Residential-stationary,biomass,TON,535.1961494 +FL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.252000011 +FL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.1215 +FL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,150.7508277 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.977571537 +FL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.15127798 +FL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.073412851 +FL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.32817874 +FL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.145366517 +FL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,22.14355064 +FL,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Ammonia,2A1_Cement-production,,TON,19.655 +FL,Ammonia,2A2_Lime-production,,TON,42.63 +FL,Ammonia,2A6_Other-minerals,,TON,0 +FL,Ammonia,2B_Chemicals-other,,TON,865.791113 +FL,Ammonia,2C_Iron-steel-alloy,,TON,0.302441 +FL,Ammonia,2D3d_Coating-application,,TON,0 +FL,Ammonia,2D3h_Printing,,TON,0 +FL,Ammonia,2H1_Pulp-and-paper,,TON,214.422701 +FL,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,17.969 +FL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,39.589845 +FL,Ammonia,3B1a_Cattle-dairy,,TON,13198.44381 +FL,Ammonia,3B1b_Cattle-non-dairy,,TON,8525.270317 +FL,Ammonia,3B2_Manure-sheep,,TON,57.79543285 +FL,Ammonia,3B3_Manure-swine,,TON,334.1338363 +FL,Ammonia,3B4_Manure-other,,TON,1777.70896 +FL,Ammonia,3B4_Manure-poultry,,TON,6251.000667 +FL,Ammonia,3B4d_Manure-goats,,TON,327.4084523 +FL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,15175.7 +FL,Ammonia,3F_Ag-res-on-field,,TON,11780.06661 +FL,Ammonia,5B_Compost-biogas,Other_Fuel,TON,500.265854 +FL,Ammonia,5C_Incineration,biomass,TON,16.935557 +FL,Ammonia,5D1_Wastewater-domestic,,TON,345.8824655 +FL,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,611688.5 +FL,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1362.4 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,537681.5512 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,436348.6118 +FL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,25012.37234 +FL,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7157307.058 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,147630.7811 +FL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,30.95358447 +FL,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4947936.654 +FL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1809719.294 +FL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,77970704.02 +FL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,333770.1178 +FL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3775375.568 +FL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1921144.033 +FL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,237212.0442 +FL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,804.08817 +FL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16430003.84 +FL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,163000.4532 +FL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14352690.07 +FL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1076919.057 +FL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,265913.59 +FL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2992.815606 +FL,Carbon Dioxide,1A3c_Rail,light_oil,TON,187.0550319 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,472781.6769 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,667670.5129 +FL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,29551.46301 +FL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,294165.17 +FL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,2170863.633 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,366704.8026 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10967.03423 +FL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,808.8034934 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9007.15431 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,168092.0188 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,387341.7748 +FL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1604225.56 +FL,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,8501.961 +FL,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,144207194.2 +FL,Carbon Monoxide,11C_Other-natural,,TON,156935.6886 +FL,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,3961.58959 +FL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,311.577989 +FL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,15538.50379 +FL,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,812.723525 +FL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.939262 +FL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,10969.64937 +FL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,39.838535 +FL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,112.9071 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,887.193364 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14756.11504 +FL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,400.2617946 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,19640.03542 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,117.2455965 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,258.0741437 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.02210654 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,62.95992992 +FL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4415.512756 +FL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +FL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,77.314081 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.600939027 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +FL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.706305973 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,15681.66916 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,31064.7584 +FL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,1.905172742 +FL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,51865.66021 +FL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,14879.80148 +FL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1094273.789 +FL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2060.229779 +FL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,54089.04821 +FL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,4467.296532 +FL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,12466.08928 +FL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,3.7573625 +FL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13022.30563 +FL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2751.656477 +FL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17887.30539 +FL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,28818.6145 +FL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10206.14839 +FL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1076.180453 +FL,Carbon Monoxide,1A3c_Rail,light_oil,TON,43.07085477 +FL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2233.081319 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,659.3098656 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,18.65081596 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.008458824 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.029149582 +FL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2694.804947 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1724.630338 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,143085.1236 +FL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,683.3722803 +FL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,850.3515011 +FL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,485688.9814 +FL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,68967.22798 +FL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.260000004 +FL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.607499991 +FL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,414.1506058 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1041.25291 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2925.219496 +FL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.634419664 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,61.6300326 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,35418.07 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,772.3904444 +FL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,176042.5175 +FL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0.114125196 +FL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,114.1404348 +FL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.347345754 +FL,Carbon Monoxide,2A1_Cement-production,,TON,218.602234 +FL,Carbon Monoxide,2A6_Other-minerals,,TON,5198.291254 +FL,Carbon Monoxide,2B_Chemicals-other,,TON,84.571321 +FL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,447.201368 +FL,Carbon Monoxide,2C3_Aluminum-production,,TON,1.63 +FL,Carbon Monoxide,2C5_Lead-production,,TON,0 +FL,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.085444 +FL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,60.78166 +FL,Carbon Monoxide,2D3d_Coating-application,,TON,9.53756 +FL,Carbon Monoxide,2D3h_Printing,,TON,0.54 +FL,Carbon Monoxide,2H1_Pulp-and-paper,,TON,5536.089273 +FL,Carbon Monoxide,2H2_Food-and-beverage,,TON,4996.857957 +FL,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,28.259028 +FL,Carbon Monoxide,3F_Ag-res-on-field,,TON,40874.48898 +FL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2316.231478 +FL,Carbon Monoxide,5C_Incineration,,TON,8.051832194 +FL,Carbon Monoxide,5C_Incineration,biomass,TON,175.2672207 +FL,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.81835 +FL,Carbon Monoxide,5C_Open-burning-industrial,,TON,13.624 +FL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,71294.83455 +FL,Carbon Monoxide,5C_Open-burning-residential,,TON,7108.560222 +FL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,566.8426798 +FL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,6.888231 +FL,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.27444617 +FL,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,51.73583504 +FL,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,166.3594403 +FL,Methane,1A2_Industrial_fuel_combustion,Other_Fuel,TON,0.008722 +FL,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,136.4593308 +FL,Methane,1A2g_Construction_and_Mining,light_oil,TON,106.4962527 +FL,Methane,1A2g_Construction_and_Mining,natural_gas,TON,1.393380617 +FL,Methane,1A3bii_Road-LDV,diesel_oil,TON,91.18522718 +FL,Methane,1A3bii_Road-LDV,light_oil,TON,2613.79109 +FL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.93889627 +FL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,150.5059316 +FL,Methane,1A3biii_Road-bus,diesel_oil,TON,42.91502824 +FL,Methane,1A3biii_Road-bus,light_oil,TON,37.92023106 +FL,Methane,1A3biii_Road-bus,natural_gas,TON,3.0178807 +FL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,555.5896767 +FL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.825159331 +FL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,449.3204061 +FL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,45.89870281 +FL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,23.34637699 +FL,Methane,1A3c_Rail,diesel_oil,TON,0.135178271 +FL,Methane,1A3c_Rail,light_oil,TON,0.119511205 +FL,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.13102162 +FL,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,435.1758258 +FL,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,422.5513672 +FL,Methane,1A4bi_Residential-mobile,diesel_oil,TON,9.889333002 +FL,Methane,1A4bi_Residential-mobile,light_oil,TON,1666.769189 +FL,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.816409275 +FL,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.20439379 +FL,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.644112135 +FL,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.371967362 +FL,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,200.6547912 +FL,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9.716321091 +FL,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,1573.432 +FL,Methane,2A6_Other-minerals,Other_Fuel,TON,3.091622 +FL,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,309510.3507 +FL,Nitrogen Oxides,11C_Other-natural,,TON,33071.2577 +FL,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,9616.732763 +FL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,382.080807 +FL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,31577.69314 +FL,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,639.88 +FL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,37.3317 +FL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,17820.43055 +FL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,13.946994 +FL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,138.4051 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2697.610694 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1232.494293 +FL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,65.48212437 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4337.740604 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,499.4613541 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,765.4484363 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,121.6681356 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,175.3159767 +FL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10219.67628 +FL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +FL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,150.940139 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.426550241 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +FL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,7.810589759 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,31774.32705 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,361.3582777 +FL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.378693926 +FL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,15871.4127 +FL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,4956.550263 +FL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,101098.6555 +FL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,846.1791277 +FL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5192.41485 +FL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,11725.42483 +FL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,974.1636791 +FL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,1.79845739 +FL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,38436.16676 +FL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,280.7348245 +FL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,35620.78583 +FL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2177.479145 +FL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,440.8065115 +FL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6162.543625 +FL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.377160806 +FL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,16743.57364 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,241.9512221 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,102.1153699 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.113438366 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.722832021 +FL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2998.888949 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3386.015404 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1572.837097 +FL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,161.8334746 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,2175.198003 +FL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,3987.892882 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1126.292268 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4.5359999 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.186999962 +FL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1109.08376 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2266.542123 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,38.86904357 +FL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.741612895 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,69.0890477 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,327.5903008 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3972.491135 +FL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,11024.39622 +FL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0.195648089 +FL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,53.21908191 +FL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.966512889 +FL,Nitrogen Oxides,2A1_Cement-production,,TON,630.652237 +FL,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,25.2203 +FL,Nitrogen Oxides,2A6_Other-minerals,,TON,6364.650723 +FL,Nitrogen Oxides,2B_Chemicals-other,,TON,1475.146936 +FL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,80.632823 +FL,Nitrogen Oxides,2C3_Aluminum-production,,TON,1.939 +FL,Nitrogen Oxides,2C5_Lead-production,,TON,101.85 +FL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.495774 +FL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,6.28 +FL,Nitrogen Oxides,2D3d_Coating-application,,TON,0.000255 +FL,Nitrogen Oxides,2D3h_Printing,,TON,2.13 +FL,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5056.900733 +FL,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,0.802125 +FL,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,6.329769 +FL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1856.063487 +FL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,238.617149 +FL,Nitrogen Oxides,5C_Incineration,,TON,11.71533876 +FL,Nitrogen Oxides,5C_Incineration,biomass,TON,351.7929987 +FL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,1.259 +FL,Nitrogen Oxides,5C_Open-burning-industrial,,TON,2.096 +FL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1730.457209 +FL,Nitrogen Oxides,5C_Open-burning-residential,,TON,501.7807454 +FL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,31.37878989 +FL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.36693 +FL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,5.657962052 +FL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2147.631874 +FL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.167489205 +FL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,123.7509543 +FL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,4.108776473 +FL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,12.83565577 +FL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.07235793 +FL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20.95843641 +FL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.080258606 +FL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.53803777 +FL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,53.68620919 +FL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.353229765 +FL,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,28654.28827 +FL,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,209.275961 +FL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,16.24144849 +FL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1445.934087 +FL,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.903265 +FL,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,1.219588 +FL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,1261.844853 +FL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1.229558 +FL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,10.8445 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1463.705141 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.58598401 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,17.74053825 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,22.48370032 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.156066997 +FL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,261.6313079 +FL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,4.092221 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.106433887 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +FL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.330245113 +FL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,251456.2997 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,484.3221771 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.971969404 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.015533868 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.106067631 +FL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.70407939 +FL,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,8895.415503 +FL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.272159991 +FL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.131100005 +FL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.072200042 +FL,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.453 +FL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.004997403 +FL,PM10 Filterable,2A1_Cement-production,,TON,346.2887943 +FL,PM10 Filterable,2A2_Lime-production,,TON,52.311617 +FL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,17896.58954 +FL,PM10 Filterable,2A6_Other-minerals,,TON,22666.18576 +FL,PM10 Filterable,2B_Chemicals-other,,TON,418.440038 +FL,PM10 Filterable,2C_Iron-steel-alloy,,TON,44.714388 +FL,PM10 Filterable,2C3_Aluminum-production,,TON,16.09407 +FL,PM10 Filterable,2C5_Lead-production,,TON,12.366896 +FL,PM10 Filterable,2C6_Zinc-production,,TON,0.059675 +FL,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,163.283597 +FL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,40.300417 +FL,PM10 Filterable,2D3d_Coating-application,,TON,56.514013 +FL,PM10 Filterable,2D3h_Printing,,TON,0.21 +FL,PM10 Filterable,2H1_Pulp-and-paper,,TON,1203.693522 +FL,PM10 Filterable,2H2_Food-and-beverage,,TON,1034.962838 +FL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,1024.327856 +FL,PM10 Filterable,2I_Wood-processing,,TON,0.781733 +FL,PM10 Filterable,3B1a_Cattle-dairy,,TON,848.8590935 +FL,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,17965.59439 +FL,PM10 Filterable,3Dc_Other-farm,,TON,6685.341512 +FL,PM10 Filterable,5A_Solid-waste-disposal,,TON,210.889568 +FL,PM10 Filterable,5C_Incineration,,TON,2.676774364 +FL,PM10 Filterable,5C_Incineration,biomass,TON,37.35531487 +FL,PM10 Filterable,5C_Open-burning-commercial,,TON,3.7645 +FL,PM10 Filterable,5C_Open-burning-industrial,,TON,1.3624 +FL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,8825.331894 +FL,PM10 Filterable,5C_Open-burning-residential,,TON,2682.921511 +FL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,192.3216189 +FL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,2.883133 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,377.3820292 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,23.18854217 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4881.4008 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,174.839729 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,3.2325748 +FL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4354.239205 +FL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,2.275822087 +FL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,19.576677 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,130.3278171 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,58.20884773 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.995548351 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1792.85382 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,25.12860903 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,21.1948661 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,25.98425728 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.224851311 +FL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,517.2524562 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,8.5109102 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.1284354 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +FL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.864158806 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2578.782461 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,234.1917129 +FL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003676257 +FL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,885.3100975 +FL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,251456.2997 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,309.7415299 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,7353.047599 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,57.85291348 +FL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,331.5757219 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,952.7761576 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,37.43124369 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.137877795 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2976.730494 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,15.21450674 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,3157.001902 +FL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,114.4565668 +FL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.87627927 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,182.7285735 +FL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.02378039 +FL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,391.8237914 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,501.7967229 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.335422924 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.0177394 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.11390225 +FL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,76.16512372 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,286.6871089 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,174.1177081 +FL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.743886675 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,141.9755495 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,2091.168284 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9277.985907 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.599759996 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.28920001 +FL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.380484911 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,186.1699818 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,26.37955842 +FL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.096786477 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.04122256 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,130.2307017 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,86.24865555 +FL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,553.3156622 +FL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.453 +FL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.013055128 +FL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,350.1200105 +FL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,75.44020732 +FL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17896.58954 +FL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,22693.09813 +FL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,476.0853641 +FL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,99.63375037 +FL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,16.09407 +FL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,19.93163231 +FL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.274505 +FL,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,188.9322404 +FL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,41.46602909 +FL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,56.514013 +FL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.21 +FL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1791.481727 +FL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,10803.00782 +FL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,1032.830454 +FL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.781733 +FL,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,848.8590935 +FL,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,17965.59439 +FL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,6688.2603 +FL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,4396.391707 +FL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,282.017879 +FL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.53059909 +FL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,40.70428757 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,5.84953 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,1.500139 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8825.331894 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2682.921511 +FL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,192.3216189 +FL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.9382365 +FL,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,192.5926628 +FL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,15.12389919 +FL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,838.224433 +FL,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.743729 +FL,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,1.14284114 +FL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1246.390195 +FL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1.194646513 +FL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,10.335564 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1182.543818 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.50977247 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,10.87066609 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.54512058 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.960728246 +FL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,239.8042808 +FL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,4.07976864 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.06344633 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +FL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.314451783 +FL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,34619.81501 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,416.416701 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.668324523 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.005769153 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.09944957 +FL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.20823787 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,8711.199776 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.209160002 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.100799998 +FL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.139709976 +FL,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.44619149 +FL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.004997403 +FL,PM2.5 Filterable,2A1_Cement-production,,TON,232.1249864 +FL,PM2.5 Filterable,2A2_Lime-production,,TON,36.4066019 +FL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1789.927776 +FL,PM2.5 Filterable,2A6_Other-minerals,,TON,3501.802829 +FL,PM2.5 Filterable,2B_Chemicals-other,,TON,264.4934697 +FL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,39.84754173 +FL,PM2.5 Filterable,2C3_Aluminum-production,,TON,16.09407 +FL,PM2.5 Filterable,2C5_Lead-production,,TON,11.75432313 +FL,PM2.5 Filterable,2C6_Zinc-production,,TON,0.0562454 +FL,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,60.13845667 +FL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,36.95290283 +FL,PM2.5 Filterable,2D3d_Coating-application,,TON,54.27772119 +FL,PM2.5 Filterable,2D3h_Printing,,TON,0.21 +FL,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,922.572327 +FL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,151.891646 +FL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,841.7354346 +FL,PM2.5 Filterable,2I_Wood-processing,,TON,0.21652195 +FL,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,176.4346688 +FL,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3734.132666 +FL,PM2.5 Filterable,3Dc_Other-farm,,TON,1281.839231 +FL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,144.6331745 +FL,PM2.5 Filterable,5C_Incineration,,TON,2.725233994 +FL,PM2.5 Filterable,5C_Incineration,biomass,TON,23.34771595 +FL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,2.14433521 +FL,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.7760506 +FL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,8046.625736 +FL,PM2.5 Filterable,5C_Open-burning-residential,,TON,2456.991325 +FL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,148.2900866 +FL,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,2.883133 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,414.2859616 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,22.07099188 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4273.69118 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,174.680193 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,3.15582794 +FL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,4338.784541 +FL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,2.2409107 +FL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,19.067741 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,126.4074957 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,56.67474137 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.995548351 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1511.710315 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,23.04747486 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,14.33102951 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,20.04831099 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,3.028682266 +FL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,495.4155832 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,8.49845784 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.085022174 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.848791127 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2501.418921 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,215.5700237 +FL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003676257 +FL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,797.1251335 +FL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,34619.81501 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,210.3046431 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1972.180229 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,39.45857548 +FL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,90.52023224 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,690.6921028 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.91761009 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.031468223 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1735.530338 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.154108101 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1922.33616 +FL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,28.51872776 +FL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.94532948 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,177.2451844 +FL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021923752 +FL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,371.8615536 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,433.8760961 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.032229257 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.007959805 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.107298519 +FL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,72.68399151 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,278.0864815 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,160.5682033 +FL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.743886675 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,137.7162822 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1923.981701 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9093.77018 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.536760009 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.258900004 +FL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.447995267 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,180.5849062 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,24.2692803 +FL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.096786477 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.76998633 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,119.8165659 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,83.66121763 +FL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,509.0503944 +FL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.44619149 +FL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.013055128 +FL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,236.2562002 +FL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,59.53519444 +FL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1789.927776 +FL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3618.81522 +FL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,322.1387928 +FL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,94.76689274 +FL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,16.09407 +FL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,19.31905924 +FL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.2710754 +FL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,86.39710532 +FL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,38.11851491 +FL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,54.27772119 +FL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.21 +FL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1510.360491 +FL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,9919.937067 +FL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,850.2380288 +FL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.21652195 +FL,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,176.4346688 +FL,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3734.132666 +FL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1284.758018 +FL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3556.375645 +FL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,232.9114919 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.502900352 +FL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,26.77284741 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,4.22936641 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.9137893 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8046.625736 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2456.991325 +FL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,148.2900866 +FL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.9382365 +FL,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,867.299061 +FL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,37.88745 +FL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,31893.68806 +FL,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,2164.21 +FL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,36.0442 +FL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,1393.308479 +FL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,22.925592 +FL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,12.8068 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.853132431 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,26.9431862 +FL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.140193342 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1158.864591 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,32.00162149 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2243.231872 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,190.5017903 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,27.34966872 +FL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1410.146833 +FL,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +FL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2.77738 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.678349313 +FL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.055849687 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,55.38631813 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2.262178773 +FL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000173035 +FL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2342.275814 +FL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,15.59988827 +FL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1637.259127 +FL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.863202391 +FL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.37235319 +FL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,16.7225551 +FL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,4.972426855 +FL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.004257233 +FL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,139.0565548 +FL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.414622366 +FL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,121.9235447 +FL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,22.56154359 +FL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.471821688 +FL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.754131448 +FL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003011388 +FL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,371.7073475 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,27.75664382 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.757858019 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.134204109 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.08958625 +FL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,105.3768118 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.983602451 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,10.41176819 +FL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.165551504 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,2.546775775 +FL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,35.54001564 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,176.0444824 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.789200083 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.0205395 +FL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,6.209365034 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.097383131 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.179960402 +FL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004534118 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.078458928 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.753169229 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.56073722 +FL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,26.3512072 +FL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0003 +FL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.00039051 +FL,Sulfur Dioxide,2A1_Cement-production,,TON,8.621229 +FL,Sulfur Dioxide,2A6_Other-minerals,,TON,333.711572 +FL,Sulfur Dioxide,2B_Chemicals-other,,TON,18506.78778 +FL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,24.125058 +FL,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.0116 +FL,Sulfur Dioxide,2C5_Lead-production,,TON,237.656284 +FL,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.006598 +FL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,78.76812 +FL,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +FL,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2208.727519 +FL,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,2.7675 +FL,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,81.366237 +FL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,927.771749 +FL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,1533.220447 +FL,Sulfur Dioxide,5C_Incineration,,TON,25.62474412 +FL,Sulfur Dioxide,5C_Incineration,biomass,TON,289.3742094 +FL,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.052175 +FL,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.0524 +FL,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,718.1397285 +FL,Sulfur Dioxide,5C_Open-burning-residential,,TON,83.6301227 +FL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.846432363 +FL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,224.42346 +FL,Volatile Organic Compounds,11C_Other-natural,,TON,1252017.015 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,121.509388 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,15.928919 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,315.780772 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,14.3092 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.116678 +FL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1104.525807 +FL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,315.201866 +FL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,9.3557 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,194.0676722 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,422.9788665 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.96068034 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,3286.368731 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,39.68463926 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,4.846234589 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.396890345 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,7.983530694 +FL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,633.0012308 +FL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +FL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,9.471192 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.041961653 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +FL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.421219347 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,3020.070066 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,2107.039423 +FL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.301196652 +FL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,6719.764711 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1372.074023 +FL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,77530.07871 +FL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,197.3343507 +FL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3499.745209 +FL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,1015.307341 +FL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,1232.402722 +FL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.336760471 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2242.70446 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,130.0932173 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3300.018296 +FL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1269.21616 +FL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3347.376217 +FL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,297.9194375 +FL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.137518828 +FL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,810.1967672 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,16.16146053 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.49973614 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.169093297 +FL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,180.7736392 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,397.2149775 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4972.326849 +FL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,91.33977441 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,201.4989059 +FL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,28900.1054 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,9898.278319 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.179675986 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.085200002 +FL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,56.92038378 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,181.7864129 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,262.7001139 +FL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.787720254 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.08030912 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4658.61825 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,200.5093876 +FL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,47154.27181 +FL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +FL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2198.716089 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1936.907157 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1965.310037 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,17464.45505 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,18342.4849 +FL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,14.69113 +FL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,27.50060549 +FL,Volatile Organic Compounds,2A1_Cement-production,,TON,40.0608 +FL,Volatile Organic Compounds,2A2_Lime-production,,TON,4.112608 +FL,Volatile Organic Compounds,2A6_Other-minerals,,TON,536.1987189 +FL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,14.7445697 +FL,Volatile Organic Compounds,2B_Chemicals-other,,TON,1410.709451 +FL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,47.399933 +FL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.10665 +FL,Volatile Organic Compounds,2C5_Lead-production,,TON,29.256273 +FL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,14.606137 +FL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,91972.51929 +FL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,91.991448 +FL,Volatile Organic Compounds,2D3d_Coating-application,,TON,41954.19415 +FL,Volatile Organic Compounds,2D3e_Degreasing,,TON,8206.795808 +FL,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,94.56420005 +FL,Volatile Organic Compounds,2D3h_Printing,,TON,17694.11896 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,455.5939779 +FL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2632.181873 +FL,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,6241.782323 +FL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,3747.930756 +FL,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,3109.828813 +FL,Volatile Organic Compounds,2I_Wood-processing,,TON,0.0327 +FL,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1055.875505 +FL,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,682.0216331 +FL,Volatile Organic Compounds,3B2_Manure-sheep,,TON,4.62363486 +FL,Volatile Organic Compounds,3B3_Manure-swine,,TON,26.73070711 +FL,Volatile Organic Compounds,3B4_Manure-other,,TON,142.2167139 +FL,Volatile Organic Compounds,3B4_Manure-poultry,,TON,500.079955 +FL,Volatile Organic Compounds,3B4d_Manure-goats,,TON,26.19267612 +FL,Volatile Organic Compounds,3Dc_Other-farm,,TON,137.257232 +FL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,13616.88671 +FL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,5022.710226 +FL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,758.531942 +FL,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,3539.76002 +FL,Volatile Organic Compounds,5C_Incineration,,TON,7.490283922 +FL,Volatile Organic Compounds,5C_Incineration,biomass,TON,27.5411307 +FL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.0285 +FL,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.5502 +FL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,4888.54138 +FL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,523.0991177 +FL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,141.710668 +FL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,314.568037 +FL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +FL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.664043 +GA,Ammonia,1A1a_Public-Electricity,biomass,TON,65.77 +GA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.0411192 +GA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,58.555 +GA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,616.645 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.897820529 +GA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.718816114 +GA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,1.85 +GA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.94745401 +GA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +GA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +GA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +GA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,358.5689703 +GA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.024 +GA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,21.22700229 +GA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.822923729 +GA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,36.41581698 +GA,Ammonia,1A3bii_Road-LDV,light_oil,TON,3474.227087 +GA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.008585205 +GA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,148.9467363 +GA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,12.07625753 +GA,Ammonia,1A3biii_Road-bus,light_oil,TON,3.775866626 +GA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.832507509 +GA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,196.3270985 +GA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.536297908 +GA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,126.363927 +GA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,34.61493612 +GA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,37.57375726 +GA,Ammonia,1A3c_Rail,diesel_oil,TON,7.968560462 +GA,Ammonia,1A3c_Rail,light_oil,TON,0.005702341 +GA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.417868853 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.081669902 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.04792194 +GA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.67616114 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.466072225 +GA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.115663607 +GA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.891747748 +GA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,12.01467618 +GA,Ammonia,1A4bi_Residential-stationary,biomass,TON,404.5100159 +GA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.294000005 +GA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.141749998 +GA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1114.589903 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.18020293 +GA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.175005144 +GA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.03672097 +GA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.90432799 +GA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.683015258 +GA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.797293896 +GA,Ammonia,2A1_Cement-production,,TON,3.2837 +GA,Ammonia,2A6_Other-minerals,,TON,1832.0478 +GA,Ammonia,2B_Chemicals-other,,TON,2073.84 +GA,Ammonia,2D3d_Coating-application,,TON,49.78 +GA,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.01 +GA,Ammonia,2H1_Pulp-and-paper,,TON,716.9472 +GA,Ammonia,2H2_Food-and-beverage,,TON,0 +GA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,607.75031 +GA,Ammonia,3B1a_Cattle-dairy,,TON,5966.617357 +GA,Ammonia,3B1b_Cattle-non-dairy,,TON,3831.407372 +GA,Ammonia,3B2_Manure-sheep,,TON,69.09964787 +GA,Ammonia,3B3_Manure-swine,,TON,1394.389963 +GA,Ammonia,3B4_Manure-other,,TON,965.4319452 +GA,Ammonia,3B4_Manure-poultry,,TON,50359.55781 +GA,Ammonia,3B4d_Manure-goats,,TON,419.3633295 +GA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,10149.6 +GA,Ammonia,3F_Ag-res-on-field,,TON,3693.951235 +GA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,225.251683 +GA,Ammonia,5D1_Wastewater-domestic,,TON,24.6148485 +GA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,4.883 +GA,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3390.036 +GA,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,7876.068 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,357128.9217 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,432331.1879 +GA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24928.20985 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2614514.552 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,66925.8596 +GA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.89276637 +GA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2906544.251 +GA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1177171.454 +GA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,46888842.79 +GA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,216704.9551 +GA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2502941.117 +GA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,706196.1001 +GA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,123509.5799 +GA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,33678.65488 +GA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12880385.97 +GA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,84985.76717 +GA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6584696.772 +GA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,914836.464 +GA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,322506.4213 +GA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7186.826377 +GA,Carbon Dioxide,1A3c_Rail,light_oil,TON,444.0722668 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,180379.9077 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,254056.513 +GA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11098.97674 +GA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,109749.0864 +GA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,901633.8013 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,391727.5204 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12544.48788 +GA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,754.6251836 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4505.03731 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,135006.6452 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,84108.82375 +GA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,347453.5017 +GA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,84751105.59 +GA,Carbon Monoxide,11C_Other-natural,,TON,143470.941 +GA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1550.345 +GA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,38.726 +GA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,4939.3203 +GA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1117.2373 +GA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1.93 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,553.4727119 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11826.12563 +GA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,373.0477091 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,8923.491495 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,778.7657415 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,687.4121271 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.39698836 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.153457681 +GA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5428.66039 +GA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,40.5815 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6347.043059 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,13882.56773 +GA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.962219672 +GA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,29921.21547 +GA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11258.95272 +GA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,719472.0924 +GA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1292.131195 +GA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28166.70365 +GA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1482.962536 +GA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3521.03314 +GA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,307.1854432 +GA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9715.762601 +GA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1152.911327 +GA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8117.151537 +GA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13628.09931 +GA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12995.4305 +GA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2575.335845 +GA,Carbon Monoxide,1A3c_Rail,light_oil,TON,101.5033519 +GA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,508.8285601 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,52.87454381 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.714097651 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.585138765 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.361813261 +GA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2319.739217 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,647.4505793 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,53295.58036 +GA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,246.3235487 +GA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,331.2135103 +GA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,198791.2575 +GA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,52079.88376 +GA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.469999958 +GA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.708749982 +GA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2397.647185 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,948.7552607 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3486.392129 +GA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.111804976 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,31.3048871 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,25524.86639 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,166.7687301 +GA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,37922.09601 +GA,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,19.3781 +GA,Carbon Monoxide,2A1_Cement-production,,TON,1283.2272 +GA,Carbon Monoxide,2A6_Other-minerals,,TON,3560.391 +GA,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,678.099 +GA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,233.1452 +GA,Carbon Monoxide,2C3_Aluminum-production,,TON,40.6968 +GA,Carbon Monoxide,2C5_Lead-production,Other_Fuel,TON,0.641 +GA,Carbon Monoxide,2C7_Other-metal,,TON,2.07 +GA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,31.427 +GA,Carbon Monoxide,2D3d_Coating-application,,TON,16.0201 +GA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.286 +GA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,10526.4384 +GA,Carbon Monoxide,2H2_Ethanol Production,,TON,6.795 +GA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1866.383815 +GA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,725.12474 +GA,Carbon Monoxide,3F_Ag-res-on-field,,TON,19436.34215 +GA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,406.3425739 +GA,Carbon Monoxide,5C_Incineration,biomass,TON,151.389258 +GA,Carbon Monoxide,5C_Open-burning-commercial,,TON,3191 +GA,Carbon Monoxide,5C_Open-burning-dump,,TON,0.0008 +GA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,173987.1895 +GA,Carbon Monoxide,5C_Open-burning-residential,,TON,10334.69341 +GA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1024.464781 +GA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,44.51 +GA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.8118434 +GA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,46.6190428 +GA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,154.9591672 +GA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,59.33720596 +GA,Methane,1A2g_Construction_and_Mining,light_oil,TON,48.19416781 +GA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.578122697 +GA,Methane,1A3bii_Road-LDV,diesel_oil,TON,50.31285637 +GA,Methane,1A3bii_Road-LDV,light_oil,TON,1553.619419 +GA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.03162592 +GA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,80.21524405 +GA,Methane,1A3biii_Road-bus,diesel_oil,TON,20.74682634 +GA,Methane,1A3biii_Road-bus,light_oil,TON,6.048642186 +GA,Methane,1A3biii_Road-bus,natural_gas,TON,270.475263 +GA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,723.260893 +GA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.43827017 +GA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,236.4500209 +GA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,20.83055624 +GA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.95603834 +GA,Methane,1A3c_Rail,diesel_oil,TON,0.324353969 +GA,Methane,1A3c_Rail,light_oil,TON,0.287525373 +GA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.509403874 +GA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,169.308325 +GA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,166.4120591 +GA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.525768767 +GA,Methane,1A4bi_Residential-mobile,light_oil,TON,701.4335999 +GA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.672094448 +GA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,13.67032246 +GA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.815807373 +GA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.189904672 +GA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,183.2828181 +GA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.408923415 +GA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,338.3935911 +GA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,199142.1846 +GA,Nitrogen Oxides,11C_Other-natural,,TON,29716.80108 +GA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,788.817 +GA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,237.6609 +GA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,22192.4303 +GA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2109.7591 +GA,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,9.65 +GA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.96 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1603.44233 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1086.19676 +GA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,62.8563084 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5199.573837 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3588.623914 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2452.358274 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,224.8731046 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.008249068 +GA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9261.921613 +GA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,29.3248 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,12066.12481 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,166.6795935 +GA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.156004628 +GA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,7787.055777 +GA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3646.904999 +GA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,81673.83712 +GA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,556.3342126 +GA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3020.29943 +GA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4080.39899 +GA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,369.2939663 +GA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,176.9755592 +GA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34173.21112 +GA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,164.791469 +GA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19940.05874 +GA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1644.365228 +GA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,602.8910689 +GA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,13562.2074 +GA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.936457202 +GA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3434.472392 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,58.26941252 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,16.77164806 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,38.36664996 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.205484103 +GA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2520.118143 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1257.508074 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,646.3830797 +GA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,62.73467054 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,861.5886802 +GA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1775.08934 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,854.5181924 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,5.291999962 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.551499948 +GA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,5837.605542 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2165.942719 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,43.92890111 +GA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.704507499 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.8524249 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,270.7390934 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,838.4665136 +GA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2511.930569 +GA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,15.3606 +GA,Nitrogen Oxides,2A1_Cement-production,,TON,968.8657 +GA,Nitrogen Oxides,2A6_Other-minerals,,TON,2563.5216 +GA,Nitrogen Oxides,2B_Chemicals-other,,TON,522.0756 +GA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,78.0448 +GA,Nitrogen Oxides,2C3_Aluminum-production,,TON,97.7243 +GA,Nitrogen Oxides,2C5_Lead-production,Other_Fuel,TON,0.0281 +GA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,1.3 +GA,Nitrogen Oxides,2D3d_Coating-application,,TON,26.7339 +GA,Nitrogen Oxides,2D3h_Printing,,TON,0.97 +GA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.56 +GA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,9242.787 +GA,Nitrogen Oxides,2H2_Ethanol Production,,TON,8.08 +GA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +GA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,326.68576 +GA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,682.6284212 +GA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,111.9536 +GA,Nitrogen Oxides,5C_Incineration,biomass,TON,43.46285909 +GA,Nitrogen Oxides,5C_Open-burning-commercial,,TON,105.1 +GA,Nitrogen Oxides,5C_Open-burning-dump,,TON,0.0003 +GA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,5195.137482 +GA,Nitrogen Oxides,5C_Open-burning-residential,,TON,729.5077746 +GA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,56.71144314 +GA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,8.24 +GA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.382938754 +GA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1280.658519 +GA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.70551713 +GA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,58.20277275 +GA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.609794267 +GA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.665143651 +GA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.624795989 +GA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14.19835329 +GA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.402777001 +GA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.63329441 +GA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,20.11641495 +GA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.995305858 +GA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,3070.49199 +GA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,135.4738669 +GA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,6.327838509 +GA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,545.2245978 +GA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,546.812944 +GA,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.73 +GA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1205.74546 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,247.6682226 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,96.92422191 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,25.54675201 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000221971 +GA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,504.0143665 +GA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.7794 +GA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,166797.2556 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,38.46719137 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.80990905 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.605265571 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.213982815 +GA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,60.12143135 +GA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,6731.6149 +GA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.317519993 +GA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.152950009 +GA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,11.99040003 +GA,PM10 Filterable,2A1_Cement-production,,TON,81.26576398 +GA,PM10 Filterable,2A2_Lime-production,,TON,4.26 +GA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16663.63298 +GA,PM10 Filterable,2A6_Other-minerals,,TON,8134.706297 +GA,PM10 Filterable,2B_Chemicals-other,,TON,319.3304135 +GA,PM10 Filterable,2C_Iron-steel-alloy,,TON,23.49891759 +GA,PM10 Filterable,2C3_Aluminum-production,,TON,17.5808913 +GA,PM10 Filterable,2C5_Lead-production,Other_Fuel,TON,0.069 +GA,PM10 Filterable,2C6_Zinc-production,,TON,0.9565217 +GA,PM10 Filterable,2C7_Other-metal,,TON,202.1538891 +GA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,39.1418 +GA,PM10 Filterable,2D3d_Coating-application,,TON,43.1979 +GA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0154 +GA,PM10 Filterable,2H1_Pulp-and-paper,,TON,2602.944369 +GA,PM10 Filterable,2H2_Ethanol Production,,TON,3.6514 +GA,PM10 Filterable,2H2_Food-and-beverage,,TON,861.3724258 +GA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1450.933864 +GA,PM10 Filterable,2I_Wood-processing,,TON,52.9403 +GA,PM10 Filterable,3B1a_Cattle-dairy,,TON,601.4721803 +GA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,10574.12911 +GA,PM10 Filterable,3Dc_Other-farm,,TON,37485.16373 +GA,PM10 Filterable,5A_Solid-waste-disposal,,TON,204.427394 +GA,PM10 Filterable,5C_Incineration,Other_Fuel,TON,4.521581122 +GA,PM10 Filterable,5C_Open-burning-commercial,,TON,584 +GA,PM10 Filterable,5C_Open-burning-dump,,TON,0.0005 +GA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,17662.89 +GA,PM10 Filterable,5C_Open-burning-residential,,TON,3900.532714 +GA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,347.586244 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,215.7072 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,10.66406791 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,904.441 +GA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1072.603552 +GA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,1.13064 +GA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.117 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,85.38669117 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,52.56737005 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.988148711 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1402.879063 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,264.0957014 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,214.8483195 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,67.47572722 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000402574 +GA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1106.903647 +GA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.256 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,987.1113535 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,106.4116206 +GA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001812846 +GA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,353.2190712 +GA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,166797.2556 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,225.6502456 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5004.717222 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40.45501502 +GA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,251.4717789 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,312.7801619 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,20.94389182 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,6.985980716 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2202.142608 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,9.95984585 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1799.490849 +GA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,108.0493621 +GA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,38.07384428 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,399.0400082 +GA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.056516859 +GA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,78.26554785 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,28.56517333 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.80350632 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.819661623 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.333427558 +GA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,102.9942201 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,108.8372849 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,66.3682441 +GA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.405095536 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,57.43942073 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,866.3557619 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7030.698437 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.699719995 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.337399997 +GA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,31.16421987 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,168.3484594 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,37.65126911 +GA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.092119479 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.60018925 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,136.3591679 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.48663527 +GA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,120.6410395 +GA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.006 +GA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,204.980871 +GA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,5.481227 +GA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16663.63298 +GA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,8567.581231 +GA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,401.151807 +GA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,59.42923588 +GA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,33.7697 +GA,PM10 Primary (Filt + Cond),2C5_Lead-production,Other_Fuel,TON,0.254066321 +GA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.4 +GA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,202.9856566 +GA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,58.989 +GA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,47.9049 +GA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0154 +GA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3864.335797 +GA,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,10.3856 +GA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5382.045175 +GA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1512.04045 +GA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,52.9403 +GA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,601.4721803 +GA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,10574.12911 +GA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,37490.44875 +GA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3014.741875 +GA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,213.429039 +GA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.271581122 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,1090.912 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0005 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,17663.46752 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3900.532714 +GA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,347.586244 +GA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.39 +GA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,93.8381665 +GA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.567319759 +GA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,349.3963255 +GA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,545.8023493 +GA,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.73 +GA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1038.938673 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,226.0984593 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,60.80100054 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.19762227 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000222282 +GA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,458.0796225 +GA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.741875 +GA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,22850.88604 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,29.83349972 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.79233097 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.624297118 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.171826473 +GA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.35714734 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,6628.457586 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.244020001 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.117599997 +GA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.59471997 +GA,PM2.5 Filterable,2A1_Cement-production,,TON,41.23305284 +GA,PM2.5 Filterable,2A2_Lime-production,,TON,2.2445688 +GA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1666.353298 +GA,PM2.5 Filterable,2A6_Other-minerals,,TON,3554.181645 +GA,PM2.5 Filterable,2B_Chemicals-other,,TON,247.3535718 +GA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,15.1582176 +GA,PM2.5 Filterable,2C3_Aluminum-production,,TON,7.7311913 +GA,PM2.5 Filterable,2C5_Lead-production,Other_Fuel,TON,0.0419 +GA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.9565217 +GA,PM2.5 Filterable,2C7_Other-metal,,TON,120.4367832 +GA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,18.56302038 +GA,PM2.5 Filterable,2D3d_Coating-application,,TON,42.14737243 +GA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.012778723 +GA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,2012.112837 +GA,PM2.5 Filterable,2H2_Ethanol Production,,TON,1.6114 +GA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,400.0006677 +GA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1022.291307 +GA,PM2.5 Filterable,2I_Wood-processing,,TON,41.493241 +GA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,125.015498 +GA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2197.823273 +GA,PM2.5 Filterable,3Dc_Other-farm,,TON,6808.550711 +GA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,53.465694 +GA,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,3.012068631 +GA,PM2.5 Filterable,5C_Open-burning-commercial,,TON,447 +GA,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.0005 +GA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,17662.89 +GA,PM2.5 Filterable,5C_Open-burning-residential,,TON,3572.066765 +GA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,268.0073062 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,174.061 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,7.62944921 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,708.6127277 +GA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1071.592857 +GA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,1.13064 +GA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.117 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.82008164 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,51.47946361 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.988148711 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1235.82426 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,242.4441375 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,178.8578364 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,56.1770134 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.000402883 +GA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1015.736967 +GA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.218475 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,957.4978985 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,97.95043555 +GA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001812846 +GA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,325.4408343 +GA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,22850.88604 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,158.8142843 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1566.567184 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.66938481 +GA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,66.1569351 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,218.5047521 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.472473478 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,3.076731092 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1317.372607 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.575789693 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1115.185997 +GA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,26.87505513 +GA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.43756794 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,387.064301 +GA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.052096248 +GA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,73.66797345 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,21.39047486 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.70499095 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.342069108 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.298608357 +GA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,98.342374 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.572179 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,61.2039335 +GA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.405095536 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,55.71623595 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,797.0899815 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,6927.541124 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.626220013 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.302049999 +GA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,25.76854085 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,163.2980148 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,34.63922936 +GA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.092119479 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.46218416 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,125.4526611 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.93203761 +GA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,110.9897548 +GA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.006 +GA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,164.9481622 +GA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,3.465796 +GA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1666.353298 +GA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3987.245622 +GA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,325.2209653 +GA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,35.58583588 +GA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,23.92 +GA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,Other_Fuel,TON,0.226966321 +GA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.4 +GA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,121.0801508 +GA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,38.41022138 +GA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,46.85437243 +GA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.012778723 +GA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3222.108965 +GA,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,8.3456 +GA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4914.606323 +GA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1083.398088 +GA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,41.493241 +GA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,125.015498 +GA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2197.823273 +GA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,6813.835734 +GA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2076.766888 +GA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,62.467339 +GA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.762068631 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,953.912 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0005 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,17663.46752 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3572.066765 +GA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,268.0073062 +GA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.39 +GA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,128.7305 +GA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,55.4666 +GA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,14763.2798 +GA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,166.7684 +GA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2.205 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.061485454 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.89195508 +GA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.139726526 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,842.764867 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,260.1342129 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2145.762606 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1822.984753 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +GA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2568.530244 +GA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.127 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,20.51904762 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.02611115 +GA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.32792E-05 +GA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1270.699906 +GA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,10.19448437 +GA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,986.9543421 +GA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.856245499 +GA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,52.72803723 +GA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,6.124503363 +GA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.596045122 +GA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.178311686 +GA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,108.9659012 +GA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.784763198 +GA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,56.11192403 +GA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.20809042 +GA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.715483613 +GA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,8.977615727 +GA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007160281 +GA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,82.86858845 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,46.82013596 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.966792971 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,100.301714 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.59362418 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.512462937 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.961293515 +GA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.062175425 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.956881664 +GA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,14.76323046 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,149.0462917 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.087400035 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.023962749 +GA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,35.96038118 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.073930864 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.20581872 +GA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004230189 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.039393338 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.21199507 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.773191235 +GA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.707262895 +GA,Sulfur Dioxide,2A1_Cement-production,,TON,126.9052 +GA,Sulfur Dioxide,2A6_Other-minerals,,TON,1171.5522 +GA,Sulfur Dioxide,2B_Chemicals-other,,TON,932.976 +GA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,72.41 +GA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.1809 +GA,Sulfur Dioxide,2C5_Lead-production,Other_Fuel,TON,0.001 +GA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,30.421 +GA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.1156 +GA,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.1205 +GA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,6153.4709 +GA,Sulfur Dioxide,2H2_Ethanol Production,,TON,0.0488 +GA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +GA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,27.6575 +GA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,243.2339204 +GA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,54.5023 +GA,Sulfur Dioxide,5C_Incineration,biomass,TON,5.277325999 +GA,Sulfur Dioxide,5C_Open-burning-commercial,,TON,31.1 +GA,Sulfur Dioxide,5C_Open-burning-residential,,TON,121.5846345 +GA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.951725298 +GA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.11 +GA,Volatile Organic Compounds,11C_Other-natural,,TON,1341366.931 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,135.9799 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.1906 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,502.945 +GA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,473.3488 +GA,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,8.7349 +GA,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.53 +GA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.047 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,113.5522446 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,346.7735528 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,33.49636554 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,517.1642919 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,238.4641153 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,15.56235314 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.939764838 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.01425271 +GA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1178.467558 +GA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,2.056 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1201.372031 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,945.0197466 +GA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.12496845 +GA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,9747.914337 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1057.475488 +GA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,55599.18413 +GA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,131.9286058 +GA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1838.726955 +GA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,377.2123564 +GA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,208.0427372 +GA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,35.48022459 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2129.094687 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,49.95660266 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2077.068029 +GA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,644.4239061 +GA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1912.429172 +GA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,658.21057 +GA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.63737695 +GA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,281.0346725 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,3.041336472 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.41252383 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.046551068 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.031603249 +GA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,205.6365818 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,149.3999552 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1847.146896 +GA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.97206186 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,80.24295142 +GA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11804.55857 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7594.046943 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.209622 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.0994 +GA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,329.6386047 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,169.0969684 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,348.6928524 +GA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.824834647 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.15483728 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4662.881947 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,44.42935276 +GA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,9937.145894 +GA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.0022 +GA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,704.396329 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,512.3563957 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1483.530849 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7846.712413 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,18870.60298 +GA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,2.06 +GA,Volatile Organic Compounds,2A1_Cement-production,,TON,116.4076 +GA,Volatile Organic Compounds,2A6_Other-minerals,,TON,634.8678374 +GA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,25.41627742 +GA,Volatile Organic Compounds,2B_Chemicals-other,,TON,925.1715 +GA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,26.5803 +GA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,6.4329 +GA,Volatile Organic Compounds,2C7_Other-metal,,TON,44.5384 +GA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,45715.16552 +GA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,78.212 +GA,Volatile Organic Compounds,2D3d_Coating-application,,TON,27605.55474 +GA,Volatile Organic Compounds,2D3e_Degreasing,,TON,5253.784996 +GA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,42.99299993 +GA,Volatile Organic Compounds,2D3h_Printing,,TON,17087.23962 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,547.028265 +GA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,907.7292278 +GA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,14398.7071 +GA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,5.3546 +GA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,5336.404684 +GA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3863.71731 +GA,Volatile Organic Compounds,2I_Wood-processing,,TON,78.12 +GA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,477.3293744 +GA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,306.5125921 +GA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,5.527971562 +GA,Volatile Organic Compounds,3B3_Manure-swine,,TON,111.551214 +GA,Volatile Organic Compounds,3B4_Manure-other,,TON,77.23455462 +GA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,4028.764606 +GA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,33.54907096 +GA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6759.461301 +GA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1339.018546 +GA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,61.1632 +GA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1593.82645 +GA,Volatile Organic Compounds,5C_Incineration,biomass,TON,16.78538057 +GA,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,265 +GA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.0012 +GA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,12052.71901 +GA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,760.5012357 +GA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,256.116194 +GA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,114.25117 +GA,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,512.283 +GA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,12.0367601 +GU,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,635218.2455 +GU,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,24.33903792 +GU,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,4.866705273 +HI,Ammonia,1A1a_Public-Electricity,biomass,TON,1.671680875 +HI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,29.36567857 +HI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,21.11958 +HI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,138.232944 +HI,Ammonia,1A1a_Public-Electricity,light_oil,TON,6.77 +HI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.00261045 +HI,Ammonia,1A1b_Pet-refining,natural_gas,TON,24.06364638 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.236704096 +HI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.02176482 +HI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +HI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.34867736 +HI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.9265056 +HI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,2.66781823 +HI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0.396950708 +HI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.11781768 +HI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.069005486 +HI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.279828902 +HI,Ammonia,1A3bii_Road-LDV,light_oil,TON,290.3963105 +HI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.61352747 +HI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.76484453 +HI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.088368775 +HI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.22263415 +HI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.045623712 +HI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,5.1123E-06 +HI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.9852222 +HI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.1583219 +HI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.2651875 +HI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.844290365 +HI,Ammonia,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.003700715 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.967878478 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.14446931 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.234063785 +HI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.479849097 +HI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.129167298 +HI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.62077096 +HI,Ammonia,1A4bi_Residential-stationary,biomass,TON,10.4885109 +HI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,5.895500119 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.043491496 +HI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.001360058 +HI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005053914 +HI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.077029812 +HI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.12149628 +HI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.01456191 +HI,Ammonia,2D3d_Coating-application,,TON,0.00327803 +HI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.000075 +HI,Ammonia,3B1a_Cattle-dairy,,TON,278.399517 +HI,Ammonia,3B1b_Cattle-non-dairy,,TON,726.80815 +HI,Ammonia,3B2_Manure-sheep,,TON,69.489561 +HI,Ammonia,3B3_Manure-swine,,TON,111.37795 +HI,Ammonia,3B4_Manure-other,,TON,55.494723 +HI,Ammonia,3B4_Manure-poultry,,TON,154.1538024 +HI,Ammonia,3B4d_Manure-goats,,TON,118.68626 +HI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,43.434095 +HI,Ammonia,5D1_Wastewater-domestic,,TON,4.3283435 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29168.13601 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,12270.19261 +HI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,699.2055895 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,384083.51 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5612.06323 +HI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.93242949 +HI,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1178447.029 +HI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,84257.8347 +HI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4516319.087 +HI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21949.958 +HI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,394477.4337 +HI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,118168.148 +HI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,8092.0573 +HI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3320.5483 +HI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.2354261 +HI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,449653.23 +HI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,87452.89 +HI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,38476.714 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28798.497 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,39118.18128 +HI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1897.0605 +HI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,15898.8646 +HI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,121717.3798 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5351.8298 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,102.2155596 +HI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,15.674329 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,620.0116 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,5855.412506 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14962.295 +HI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,73517.501 +HI,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,9115906.997 +HI,Carbon Monoxide,11C_Other-natural,,TON,19491.3062 +HI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,65.65042214 +HI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,554.5594486 +HI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,628.041 +HI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,363.31277 +HI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,168.59 +HI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,0.06523402 +HI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,257.2959435 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,73.45943835 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1411.432942 +HI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.92356863 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,60.36095979 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.2939041 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.4910062 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,7.685654397 +HI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,11.48656682 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,823.17664 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1185.257792 +HI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.067043785 +HI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9320.826347 +HI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,773.4960922 +HI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,68475.7137 +HI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,151.8238 +HI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5108.182483 +HI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,325.0972211 +HI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,149.832054 +HI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.7302445 +HI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.03583313 +HI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,670.39914 +HI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1508.44935 +HI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1488.0743 +HI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,610.9657691 +HI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.20089761 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,44.25053507 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.040594 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,186.1934046 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,105.838794 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8392.317547 +HI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,40.527321 +HI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,46.3412856 +HI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,27158.63079 +HI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,1623.646007 +HI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,25.80400126 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.608788 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,24.91659727 +HI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.18352295 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.3301 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,1542.91691 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.977629 +HI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8050.9503 +HI,Carbon Monoxide,2D3d_Coating-application,,TON,0.5622292 +HI,Carbon Monoxide,2H2_Food-and-beverage,,TON,273.1238162 +HI,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.167902 +HI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,1.075093166 +HI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,6110.4074 +HI,Carbon Monoxide,5C_Open-burning-residential,,TON,469.8291438 +HI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,47.19615916 +HI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.809329981 +HI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.197906607 +HI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.6124135 +HI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,8.8133742 +HI,Methane,1A2g_Construction_and_Mining,light_oil,TON,4.002955688 +HI,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.040433946 +HI,Methane,1A3bii_Road-LDV,diesel_oil,TON,4.057680724 +HI,Methane,1A3bii_Road-LDV,light_oil,TON,178.1266279 +HI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.4398298 +HI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.94819066 +HI,Methane,1A3biii_Road-bus,diesel_oil,TON,4.096033395 +HI,Methane,1A3biii_Road-bus,light_oil,TON,0.270796433 +HI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.076190666 +HI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.000195533 +HI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.1060161 +HI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.3308608 +HI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.8883565 +HI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.97619579 +HI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,25.64296246 +HI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.8900684 +HI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.52841944 +HI,Methane,1A4bi_Residential-mobile,light_oil,TON,92.73474479 +HI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.081144805 +HI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.114801487 +HI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.072151829 +HI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.025774856 +HI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,4.479879772 +HI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.31758133 +HI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,71.656176 +HI,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,4305.584627 +HI,Nitrogen Oxides,11C_Other-natural,,TON,1421.81032 +HI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,875.175282 +HI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,4669.734281 +HI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,681.733 +HI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,11732.4924 +HI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,206.23 +HI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,0.11298701 +HI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,718.0476136 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,223.9282293 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,89.39215626 +HI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.823128738 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,50.23861338 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,106.3489721 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,361.7152513 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,86.17641244 +HI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,71.7390557 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1717.75806 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.2319098 +HI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.010835873 +HI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3418.276248 +HI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,271.3473071 +HI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,6256.503204 +HI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,64.543225 +HI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,432.6483996 +HI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,611.1271717 +HI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,9.6948584 +HI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13.5241229 +HI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,0.002115673 +HI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1506.13429 +HI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,101.377208 +HI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,60.202147 +HI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4398.725946 +HI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,2.4667074 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,83.15519547 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.72194 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,274.1458268 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,205.766885 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,92.07557064 +HI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9.6122124 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,117.570049 +HI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,224.0676154 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,32.50886457 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,77.53599498 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,44.656 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.54858186 +HI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.033538718 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.7913986 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,12.22969716 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,158.75707 +HI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,515.42713 +HI,Nitrogen Oxides,2D3d_Coating-application,,TON,0.6688597 +HI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,1.298868139 +HI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,148.31084 +HI,Nitrogen Oxides,5C_Open-burning-residential,,TON,33.16441497 +HI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.612644718 +HI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.306735488 +HI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,174.3617918 +HI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.089973057 +HI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.95323497 +HI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.374618768 +HI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.171281848 +HI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.005272658 +HI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.6187E-05 +HI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.08563499 +HI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.4965865 +HI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.53377073 +HI,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,107.7134705 +HI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,7.30541403 +HI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,167.6231317 +HI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,45.1962 +HI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,644.51855 +HI,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,7.08 +HI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.001731205 +HI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,75.99283178 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,34.174 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.56289263 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,80.913686 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.68629422 +HI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.971222983 +HI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,4248.0299 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,12.92544471 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0298 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.45030799 +HI,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,233.5973797 +HI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.1292 +HI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,10553.41585 +HI,PM10 Filterable,2A6_Other-minerals,,TON,513.7111028 +HI,PM10 Filterable,2D3d_Coating-application,,TON,0.012557641 +HI,PM10 Filterable,2H2_Food-and-beverage,,TON,53.00980652 +HI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,67.09327 +HI,PM10 Filterable,3B1a_Cattle-dairy,,TON,17.9052832 +HI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,1531.6279 +HI,PM10 Filterable,3Dc_Other-farm,,TON,94.05946079 +HI,PM10 Filterable,5C_Incineration,biomass,TON,5.29460901 +HI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,756.38534 +HI,PM10 Filterable,5C_Open-burning-residential,,TON,177.3235513 +HI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,16.01298296 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,13.54547818 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,229.1187842 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,48.0682 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1245.27172 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,21.26 +HI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.00600404 +HI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,115.7368579 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.98677612 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.064264742 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.084250981 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,68.443 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,8.07373023 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,97.288334 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.627499 +HI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3.451905338 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,124.777364 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.920461925 +HI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000114219 +HI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,149.1748712 +HI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4248.0299 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,18.99738567 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,543.0063909 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.8213371 +HI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.6966972 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,54.05840452 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.577857262 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.20159106 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.48014E-05 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,154.475111 +HI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,10.8246396 +HI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.3567357 +HI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,101.6185348 +HI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.2089971 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,13.65470877 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.04917 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.148663392 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.4722153 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.23789111 +HI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.241177046 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.83092501 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,114.7103309 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,240.9604703 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.335020017 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.3435301 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.016353216 +HI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001914168 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6373066 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.748138642 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.3855193 +HI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,25.2540902 +HI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,10553.41585 +HI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,517.4172184 +HI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.05065879 +HI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,718.6638007 +HI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,141.0957 +HI,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,17.9052832 +HI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1531.6279 +HI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,94.05946079 +HI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.29460901 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,756.38534 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,177.3235513 +HI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,16.01298296 +HI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,4.29830632 +HI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,155.7199233 +HI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,22.59805 +HI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,506.26115 +HI,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,6.6 +HI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.001731205 +HI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,52.40647178 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,31.949 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.46531669 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,52.659579 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.58088113 +HI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.969737916 +HI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,714.94621 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,11.15788152 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0298 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.236600664 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,221.7539607 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.07106 +HI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1055.341585 +HI,PM2.5 Filterable,2A6_Other-minerals,,TON,83.92357566 +HI,PM2.5 Filterable,2D3d_Coating-application,,TON,0.012557641 +HI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.849378735 +HI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,55.729644 +HI,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,3.72159912 +HI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,318.34742 +HI,PM2.5 Filterable,3Dc_Other-farm,,TON,17.19761241 +HI,PM2.5 Filterable,5C_Incineration,biomass,TON,4.924873044 +HI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,689.64546 +HI,PM2.5 Filterable,5C_Open-burning-residential,,TON,162.3909928 +HI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,12.34685207 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,10.53372495 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,217.4270927 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,25.47004 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1106.98432 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,20.78 +HI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.00600404 +HI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,92.15020093 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.65289945 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.825532368 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.084250981 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,66.218 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.97615319 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,69.054236 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.522104 +HI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,3.45042027 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,121.034053 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.211154035 +HI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000114219 +HI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,139.5642017 +HI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,714.94621 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,12.94416662 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,145.4731286 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.2658297 +HI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,11.60632716 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,35.23072902 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.333759378 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.76113958 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.17196E-05 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,92.965634 +HI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.6871955 +HI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.7300485 +HI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,95.82346212 +HI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.19227736 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,11.88714659 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.04917 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.934955941 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.9480401 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.44125431 +HI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.241177046 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.59599606 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,105.5395275 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,229.1170514 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +HI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.276879966 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.2132253 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.015044958 +HI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001914168 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6181876 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.688574782 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.2839535 +HI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,23.2337621 +HI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1055.341585 +HI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,87.62969127 +HI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.05065879 +HI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,667.503306 +HI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,129.55944 +HI,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,3.72159912 +HI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,318.34742 +HI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,17.19761241 +HI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.924873044 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,689.64546 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,162.3909928 +HI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,12.34685207 +HI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,12.16141589 +HI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,371.0580646 +HI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,422.135 +HI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,14874.2 +HI,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,4.32 +HI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.00073956 +HI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,488.862158 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.431439933 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.910978679 +HI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.003919047 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2.905 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.44633386 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1613.90302 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.420380676 +HI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.656618197 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.98670791 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.033465106 +HI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.21232E-06 +HI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,537.7803585 +HI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.734291821 +HI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,41.45134265 +HI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.18936329 +HI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.633971705 +HI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.022940286 +HI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.074306539 +HI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.028569028 +HI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.16309E-06 +HI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.8427316 +HI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.80449075 +HI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.36079195 +HI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,108.8970895 +HI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,1.5433843 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,16.93127222 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000945 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.3509241 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.245780753 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.234427177 +HI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.010628461 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.137984028 +HI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.738674765 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,3.297493137 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,0.386699979 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.044974224 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.000621162 +HI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.78679E-05 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005413941 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.035544328 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.13754483 +HI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.44623786 +HI,Sulfur Dioxide,2B_Chemicals-other,,TON,211.738 +HI,Sulfur Dioxide,2D3d_Coating-application,,TON,0.004013915 +HI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.792942016 +HI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,61.548999 +HI,Sulfur Dioxide,5C_Open-burning-residential,,TON,5.527402262 +HI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.320259719 +HI,Volatile Organic Compounds,11C_Other-natural,,TON,128061.161 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,2.5680929 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,103.1475927 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,5.04996 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,56.576229 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,4.3 +HI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.00687419 +HI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,440.0173875 +HI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,1493.51344 +HI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,121.4885252 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,21.42012594 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38.9171294 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.997030897 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.758610309 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.26780003 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.493835812 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.481431103 +HI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1.287656628 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,154.768398 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,80.78603938 +HI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.008740308 +HI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1029.806954 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,87.71903091 +HI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,6347.336529 +HI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.249794 +HI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,420.8571094 +HI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,74.53164558 +HI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,7.78461873 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.86358915 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,0.002478268 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,154.29653 +HI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,66.029737 +HI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,265.09723 +HI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,275.4951487 +HI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.089674413 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,9.129265074 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.018206 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +HI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.17080801 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23.8825279 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,301.4174421 +HI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.3803005 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,10.9490447 +HI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1606.540558 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,232.2351077 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +HI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,3.544899988 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.1295392 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.107379156 +HI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015596529 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.127945 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,41.63181653 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.5838112 +HI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2195.65044 +HI,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.794266 +HI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,159.9573995 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,252.2701205 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,75.19468429 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,315.9209506 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3208.442037 +HI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,327.922319 +HI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.07328927 +HI,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,3.5909062 +HI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,6257.336742 +HI,Volatile Organic Compounds,2D3d_Coating-application,,TON,2447.169857 +HI,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,419.77856 +HI,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,9.8226 +HI,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,743.80296 +HI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +HI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +HI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,98.76916743 +HI,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,22.2719622 +HI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,58.144656 +HI,Volatile Organic Compounds,3B2_Manure-sheep,,TON,5.5591653 +HI,Volatile Organic Compounds,3B3_Manure-swine,,TON,8.9102356 +HI,Volatile Organic Compounds,3B4_Manure-other,,TON,4.4395777 +HI,Volatile Organic Compounds,3B4_Manure-poultry,,TON,12.3323042 +HI,Volatile Organic Compounds,3B4d_Manure-goats,,TON,9.494901 +HI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,91.58279 +HI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,307.3291 +HI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.109090334 +HI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,418.97815 +HI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,34.57342077 +HI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,11.79904169 +HI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,21.769775 +HI,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,8.25291 +IA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.109780145 +IA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,35.574535 +IA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.0245696 +IA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,85.7219862 +IA,Ammonia,1A1b_Pet-refining,natural_gas,TON,0.0430723 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.619337035 +IA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.500865785 +IA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.015883064 +IA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,3.405967134 +IA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.828060173 +IA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,98.12094498 +IA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.120074964 +IA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.04853765 +IA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,260.1271602 +IA,Ammonia,1A2c_Chemicals,natural_gas,TON,118.7255428 +IA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,7.479894527 +IA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.219062567 +IA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,14.84924525 +IA,Ammonia,1A3bii_Road-LDV,light_oil,TON,907.0929311 +IA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.000585891 +IA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,49.75796868 +IA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.820797592 +IA,Ammonia,1A3biii_Road-bus,light_oil,TON,1.697505994 +IA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000234048 +IA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,68.25274841 +IA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.417611783 +IA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,40.41933696 +IA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.719108418 +IA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.812239819 +IA,Ammonia,1A3c_Rail,diesel_oil,TON,10.75630822 +IA,Ammonia,1A3c_Rail,light_oil,TON,0.004665765 +IA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.381239504 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.253652644 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.342205513 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.858041717 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.016466455 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016466455 +IA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.70885823 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.768162982 +IA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.585147292 +IA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.190348106 +IA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.89540768 +IA,Ammonia,1A4bi_Residential-stationary,biomass,TON,183.0409316 +IA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.267999984 +IA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.121500003 +IA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,607.5277957 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,24.87246451 +IA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.669381845 +IA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010922617 +IA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.883871912 +IA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.235166575 +IA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.629249428 +IA,Ammonia,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.0196711 +IA,Ammonia,2A1_Cement-production,,TON,5.35984 +IA,Ammonia,2A6_Other-minerals,,TON,1560.869979 +IA,Ammonia,2B_Chemicals-other,,TON,551.1839152 +IA,Ammonia,2C_Iron-steel-alloy,,TON,7.1867733 +IA,Ammonia,2C3_Aluminum-production,,TON,1.247316 +IA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.00176 +IA,Ammonia,2D3d_Coating-application,,TON,0.25170286 +IA,Ammonia,2D3h_Printing,,TON,0.068615518 +IA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.00048 +IA,Ammonia,2H2_Ethanol Production,,TON,34.76294016 +IA,Ammonia,2H2_Food-and-beverage,,TON,16.5548478 +IA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,177.7222662 +IA,Ammonia,3B1a_Cattle-dairy,,TON,10800.16971 +IA,Ammonia,3B1b_Cattle-non-dairy,,TON,37500.54016 +IA,Ammonia,3B2_Manure-sheep,,TON,649.9044989 +IA,Ammonia,3B3_Manure-swine,,TON,225047.9585 +IA,Ammonia,3B4_Manure-other,,TON,751.4524057 +IA,Ammonia,3B4_Manure-poultry,,TON,18045.4307 +IA,Ammonia,3B4d_Manure-goats,,TON,398.805041 +IA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,35505.5 +IA,Ammonia,3Dc_Other-farm,,TON,0.02544 +IA,Ammonia,3F_Ag-res-on-field,,TON,106.475 +IA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.0711 +IA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,68.84 +IA,Ammonia,5D1_Wastewater-domestic,,TON,11.529141 +IA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,5.2966276 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,199574.4605 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,291682.587 +IA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16699.12538 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,921524.9567 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,17811.8656 +IA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.435210652 +IA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,147437.3705 +IA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,462718.5047 +IA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,12495968.99 +IA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,92462.9416 +IA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,803578.0432 +IA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,149340.5306 +IA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,44444.38788 +IA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,9.020956 +IA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4137060.144 +IA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,77642.50715 +IA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2392175.173 +IA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,120689.2163 +IA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,37512.43999 +IA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5878.462088 +IA,Carbon Dioxide,1A3c_Rail,light_oil,TON,363.3476205 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94532.4582 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,129095.9262 +IA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5698.012715 +IA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,23431.50375 +IA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,216072.3607 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3062609.933 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,50608.38124 +IA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7442.46602 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1339.78715 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,133344.9353 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,28959.59907 +IA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,117265.5368 +IA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,50074909.98 +IA,Carbon Monoxide,11C_Other-natural,,TON,44929.6065 +IA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,2.139568 +IA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.781587858 +IA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,17700.1055 +IA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.650757 +IA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,676.2570017 +IA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,40.0854581 +IA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,6.127951 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,281.7653104 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6516.321746 +IA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,250.9640362 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.321387299 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,305.3907923 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,346.0659758 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3197.918816 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,12.38644694 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.317708323 +IA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,7672.494472 +IA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,704.1781477 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1981.194031 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3580.99511 +IA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.078798741 +IA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3979.648235 +IA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4564.947093 +IA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,224525.455 +IA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,607.821277 +IA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13832.47585 +IA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,370.2169964 +IA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2807.642021 +IA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.12855808 +IA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3520.253534 +IA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1365.858846 +IA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2449.096544 +IA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3008.350926 +IA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1770.568012 +IA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3460.647733 +IA,Carbon Monoxide,1A3c_Rail,light_oil,TON,81.19241121 +IA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,93.55985236 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,274.7290645 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.2720844 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,182.7914323 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.105370201 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.613686369 +IA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1905.008852 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,320.5123102 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,26563.51286 +IA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,116.3527386 +IA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,66.14308143 +IA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,48950.8184 +IA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,26086.50336 +IA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,11.33999988 +IA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.607499998 +IA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1527.07841 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9741.46427 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10241.18694 +IA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,92.8687609 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.619873 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,17770.2426 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,58.0641319 +IA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,13138.27856 +IA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,13.24 +IA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,48.79493937 +IA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.507868 +IA,Carbon Monoxide,2A1_Cement-production,,TON,1029.09 +IA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,88.7325 +IA,Carbon Monoxide,2A6_Other-minerals,,TON,452.1334986 +IA,Carbon Monoxide,2B_Chemicals-other,,TON,557.4554817 +IA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1942.005511 +IA,Carbon Monoxide,2C3_Aluminum-production,,TON,24.38462 +IA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,23.990651 +IA,Carbon Monoxide,2C7a_Copper-production,,TON,2.97926 +IA,Carbon Monoxide,2D3d_Coating-application,,TON,10.12869962 +IA,Carbon Monoxide,2D3h_Printing,,TON,2.1662371 +IA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.8043 +IA,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.68042 +IA,Carbon Monoxide,2H2_Ethanol Production,,TON,877.2823676 +IA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1270.285364 +IA,Carbon Monoxide,2H3_Other-industrial-processes,,TON,4.3739254 +IA,Carbon Monoxide,3Dc_Other-farm,,TON,18.161301 +IA,Carbon Monoxide,3F_Ag-res-on-field,,TON,1347.44 +IA,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,385.6653526 +IA,Carbon Monoxide,5C_Incineration,,TON,1.454987175 +IA,Carbon Monoxide,5C_Incineration,biomass,TON,8.345424867 +IA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.0000145 +IA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,7541.208035 +IA,Carbon Monoxide,5C_Open-burning-residential,,TON,4689.64508 +IA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,244.971397 +IA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,60.55195 +IA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,12.744846 +IA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.248344861 +IA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.7705786 +IA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,102.4007525 +IA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,17.71656844 +IA,Methane,1A2g_Construction_and_Mining,light_oil,TON,12.69493296 +IA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.054948708 +IA,Methane,1A3bii_Road-LDV,diesel_oil,TON,36.92250072 +IA,Methane,1A3bii_Road-LDV,light_oil,TON,687.6682089 +IA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.30429279 +IA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.68374268 +IA,Methane,1A3biii_Road-bus,diesel_oil,TON,6.297984781 +IA,Methane,1A3biii_Road-bus,light_oil,TON,9.343386768 +IA,Methane,1A3biii_Road-bus,natural_gas,TON,0.09009485 +IA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,279.1986165 +IA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.500118071 +IA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,69.79323122 +IA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.600384894 +IA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.512225892 +IA,Methane,1A3c_Rail,diesel_oil,TON,0.2651558 +IA,Methane,1A3c_Rail,light_oil,TON,0.242284601 +IA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.135097299 +IA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,88.58577898 +IA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,69.04634629 +IA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.818426421 +IA,Methane,1A4bi_Residential-mobile,light_oil,TON,189.5038653 +IA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,78.01203346 +IA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,44.84524864 +IA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,37.57212274 +IA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.054753569 +IA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,120.2133917 +IA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.695893677 +IA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,117.0240056 +IA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,54784.23119 +IA,Nitrogen Oxides,11C_Other-natural,,TON,42465.4112 +IA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +IA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,43.65703303 +IA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,22475.6325 +IA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.387355 +IA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,754.0114702 +IA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,13.1302202 +IA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,3.21082 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,798.2515499 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,645.4772743 +IA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41.69231771 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,4.811637514 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,116.3458515 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1560.544502 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,7259.261355 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.223255578 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.244309419 +IA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,13953.92402 +IA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,753.4469173 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3751.979669 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,42.17522472 +IA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.017362679 +IA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,522.8292966 +IA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1524.613001 +IA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,25604.84595 +IA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,256.0264777 +IA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1540.950137 +IA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1008.991797 +IA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,336.4281771 +IA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.078528387 +IA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12212.67373 +IA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,167.2188559 +IA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7181.918587 +IA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,287.0617307 +IA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,80.7384794 +IA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,17850.52096 +IA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.86352726 +IA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,711.0525969 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,99.08109701 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,98.10179684 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1595.9539 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.161971286 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.425532781 +IA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2290.921975 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,639.1522856 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,352.5328332 +IA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,27.01270492 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,166.5414987 +IA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,463.8182459 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,441.0690338 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,40.82400103 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.187000042 +IA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3964.865178 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20345.44349 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,242.180687 +IA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.74486467 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.4490315 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,290.801684 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,304.994271 +IA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,893.397751 +IA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,2.91 +IA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,20.81509839 +IA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.604223 +IA,Nitrogen Oxides,2A1_Cement-production,,TON,1840.42 +IA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,48.31616 +IA,Nitrogen Oxides,2A6_Other-minerals,,TON,1402.877773 +IA,Nitrogen Oxides,2B_Chemicals-other,,TON,717.2596784 +IA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,638.3484395 +IA,Nitrogen Oxides,2C3_Aluminum-production,,TON,26.4335 +IA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,3.0578386 +IA,Nitrogen Oxides,2C7a_Copper-production,,TON,0.019221 +IA,Nitrogen Oxides,2D3d_Coating-application,,TON,11.6421607 +IA,Nitrogen Oxides,2D3h_Printing,,TON,2.5788537 +IA,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.9575 +IA,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,2.0005 +IA,Nitrogen Oxides,2H2_Ethanol Production,,TON,1378.853037 +IA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,372.5873268 +IA,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,23.98533725 +IA,Nitrogen Oxides,3Dc_Other-farm,,TON,15.385039 +IA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,33.05 +IA,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,196.108425 +IA,Nitrogen Oxides,5C_Incineration,,TON,2.029957411 +IA,Nitrogen Oxides,5C_Incineration,biomass,TON,20.11725436 +IA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.000029 +IA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,183.0390466 +IA,Nitrogen Oxides,5C_Open-burning-residential,,TON,331.033775 +IA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,13.5609169 +IA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,13.02267 +IA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,6.943278 +IA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.433678681 +IA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,513.1326513 +IA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.326387128 +IA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,37.05604931 +IA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.313371555 +IA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.011405248 +IA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.000548954 +IA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.276571399 +IA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.827378145 +IA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.544194757 +IA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.229653462 +IA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.350104178 +IA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,3174.207377 +IA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,1.9468507 +IA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.602904721 +IA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1143.86909 +IA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.05425605 +IA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,60.06290928 +IA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,17.44065367 +IA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.443111046 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,7.798193128 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,247.0669586 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.001905115 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,93.65821613 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,6436.061516 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.282087548 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.061138524 +IA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,237.4649818 +IA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,14.68690019 +IA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,113809.6695 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,227.1793898 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.780800288 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,61.69471812 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.301470762 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022195178 +IA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.3048891 +IA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,3557.647109 +IA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.449440178 +IA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.131099999 +IA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.639399961 +IA,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.14011422 +IA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.007177869 +IA,PM10 Filterable,2A1_Cement-production,,TON,266.3105038 +IA,PM10 Filterable,2A2_Lime-production,,TON,39.85918586 +IA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18772.80371 +IA,PM10 Filterable,2A6_Other-minerals,,TON,4682.64419 +IA,PM10 Filterable,2B_Chemicals-other,,TON,236.2601471 +IA,PM10 Filterable,2C_Iron-steel-alloy,,TON,122.1860646 +IA,PM10 Filterable,2C3_Aluminum-production,,TON,148.6519008 +IA,PM10 Filterable,2C7_Other-metal,,TON,109.8526467 +IA,PM10 Filterable,2C7a_Copper-production,,TON,42.8677906 +IA,PM10 Filterable,2D3d_Coating-application,,TON,161.4914781 +IA,PM10 Filterable,2D3e_Degreasing,,TON,0 +IA,PM10 Filterable,2D3h_Printing,,TON,0 +IA,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,65.06299481 +IA,PM10 Filterable,2H2_Biodiesel Production,,TON,0 +IA,PM10 Filterable,2H2_Ethanol Production,,TON,340.0723161 +IA,PM10 Filterable,2H2_Food-and-beverage,,TON,1208.836333 +IA,PM10 Filterable,2H3_Other-industrial-processes,,TON,440.4336784 +IA,PM10 Filterable,2I_Wood-processing,,TON,10.2657081 +IA,PM10 Filterable,3B1a_Cattle-dairy,,TON,1779.925108 +IA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,44532.53749 +IA,PM10 Filterable,3Dc_Other-farm,,TON,141762.0829 +IA,PM10 Filterable,5A_Solid-waste-disposal,,TON,89.56452119 +IA,PM10 Filterable,5C_Incineration,biomass,TON,2.079662949 +IA,PM10 Filterable,5C_Open-burning-industrial,,TON,0.00131689 +IA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,933.4991131 +IA,PM10 Filterable,5C_Open-burning-residential,,TON,1769.971631 +IA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,83.1152968 +IA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.817555417 +IA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.5577562 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,2.112698 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,6.00310136 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1256.533095 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.058878 +IA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,117.8690097 +IA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,17.72768231 +IA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.1660817 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,44.32553483 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.83091302 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.002705185 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.36530686 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,255.5106771 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0.001905109 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,100.3327478 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,6992.162471 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.561928572 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.140465948 +IA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,451.943149 +IA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,38.6349238 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,330.5459678 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,28.33977731 +IA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000392657 +IA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,80.48912207 +IA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,113809.6695 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,82.48994784 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1447.375159 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.35665395 +IA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,87.47511781 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,66.94980233 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.00463892 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.002570261 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,607.7466598 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.68287151 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,447.6106448 +IA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,15.1136923 +IA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.180691445 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,524.600598 +IA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.04624486 +IA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,20.43275798 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,235.1502401 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.912926756 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,68.39752795 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.333054897 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048145803 +IA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.24779573 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,52.22753618 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,33.82737762 +IA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.721435273 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.81868278 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,209.5946852 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3712.73313 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.397840065 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.289200001 +IA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,19.84239947 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1716.290579 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.484244291 +IA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.905009902 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.4202754 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,117.5036519 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.59749863 +IA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,45.73760991 +IA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.14011422 +IA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.01111724 +IA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,279.5632764 +IA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,50.46542439 +IA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18772.80371 +IA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4699.551144 +IA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,295.9998594 +IA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,269.9494104 +IA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,154.843851 +IA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,139.9113649 +IA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,46.594873 +IA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,161.7714781 +IA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.20089288 +IA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,68.11620908 +IA,PM10 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0 +IA,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,455.2057909 +IA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2509.23166 +IA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,445.598946 +IA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,10.2657081 +IA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1779.925108 +IA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,44532.53749 +IA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,141764.8108 +IA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,231.243 +IA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,98.91340062 +IA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.600197102 +IA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.866128757 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.00145 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,933.4991131 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1769.971631 +IA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,83.1152968 +IA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.0012719 +IA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.1106727 +IA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,1.9393797 +IA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.172267506 +IA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,817.1470962 +IA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.05425605 +IA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,60.02791028 +IA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,15.17513121 +IA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.443111046 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.423401366 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,212.6945136 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.000338227 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,86.2036798 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,804.3237246 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.255573963 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.015812877 +IA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,192.1299211 +IA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,14.68639194 +IA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13173.92076 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,195.5264478 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.363999924 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,33.73156612 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.196400249 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017066709 +IA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.431304983 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,3513.859386 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.882440029 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.100800001 +IA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.20166997 +IA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.138223615 +IA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.007177869 +IA,PM2.5 Filterable,2A1_Cement-production,,TON,196.575452 +IA,PM2.5 Filterable,2A2_Lime-production,,TON,35.05472069 +IA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1877.280371 +IA,PM2.5 Filterable,2A6_Other-minerals,,TON,1411.85784 +IA,PM2.5 Filterable,2B_Chemicals-other,,TON,208.5940804 +IA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,94.09558295 +IA,PM2.5 Filterable,2C3_Aluminum-production,,TON,145.6382568 +IA,PM2.5 Filterable,2C7_Other-metal,,TON,106.033101 +IA,PM2.5 Filterable,2C7a_Copper-production,,TON,42.1268606 +IA,PM2.5 Filterable,2D3d_Coating-application,,TON,158.2452857 +IA,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +IA,PM2.5 Filterable,2D3h_Printing,,TON,0 +IA,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,57.83182503 +IA,PM2.5 Filterable,2H2_Biodiesel Production,,TON,0 +IA,PM2.5 Filterable,2H2_Ethanol Production,,TON,293.9415293 +IA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,636.9662792 +IA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,376.0065662 +IA,PM2.5 Filterable,2I_Wood-processing,,TON,10.0339249 +IA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,369.9559623 +IA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,9256.04769 +IA,PM2.5 Filterable,3Dc_Other-farm,,TON,24731.78886 +IA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,16.59155136 +IA,PM2.5 Filterable,5C_Incineration,biomass,TON,1.387499469 +IA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.00131689 +IA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,851.1315255 +IA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1620.921378 +IA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,64.0862684 +IA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.817555417 +IA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.5378624 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,2.105227 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.572464145 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,929.8111218 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.058878 +IA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,117.8340107 +IA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,15.46215985 +IA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.1660817 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,42.99523285 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.38223966 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.002705185 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.984950675 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,220.6906595 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0.000337464 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,92.70892462 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1360.727454 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.531385423 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.095404011 +IA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,396.6668318 +IA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,38.63441555 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,320.6295707 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.08636317 +IA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000392657 +IA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,66.61265982 +IA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13173.92076 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,60.03574421 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,634.7797766 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.52655113 +IA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,36.00059753 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,52.5215469 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.201189218 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.001898699 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,408.1735903 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.579975515 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,305.8429485 +IA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.10159758 +IA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.907419286 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,508.856069 +IA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.042627692 +IA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,19.80799386 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,203.5063423 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.49834109 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,40.41359342 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.227925415 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043240237 +IA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.11376492 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,50.6607083 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,31.19469627 +IA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.721435273 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.49412243 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,192.8356442 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3668.945407 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.830840112 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.258899996 +IA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.40466993 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1664.801763 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.806140294 +IA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.905009902 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.37766747 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,108.1039863 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.39957247 +IA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,42.07859846 +IA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.138223615 +IA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.01111724 +IA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,209.8282231 +IA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,45.62869252 +IA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1877.280371 +IA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1427.706793 +IA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,258.2422118 +IA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,223.6006304 +IA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,151.830207 +IA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,135.6903023 +IA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,45.716061 +IA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,158.5252857 +IA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.14083293 +IA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0 +IA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,59.3422788 +IA,PM2.5 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0 +IA,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,389.4630041 +IA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1891.608999 +IA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,381.1718348 +IA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,10.0339249 +IA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,369.9559623 +IA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9256.04769 +IA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,24734.51672 +IA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,168.791 +IA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,25.94043079 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.396037705 +IA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.359759975 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.00145 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,851.1315255 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1620.921378 +IA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,64.0862684 +IA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,2.0012719 +IA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.7870099 +IA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +IA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.815947394 +IA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,31263.7854 +IA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.00545138 +IA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,34.24893034 +IA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.427347136 +IA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.12223908 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.529689571 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.666904214 +IA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.093601581 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,17.8961127 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,12.57049419 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,85.14249514 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,32215.64871 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,104.992478 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.44818503 +IA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,200.3850887 +IA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.089676 +IA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.741086793 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7.203992808 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.273187557 +IA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.92428E-05 +IA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,79.29368006 +IA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.004492737 +IA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,200.292245 +IA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.79251776 +IA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.89447917 +IA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.294949424 +IA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.710269424 +IA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,4.77611E-05 +IA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,35.0149261 +IA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.238082058 +IA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20.34590944 +IA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.92467067 +IA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.59471712 +IA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,12.12038317 +IA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.00585867 +IA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.1066681 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,11.18952192 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.326853492 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1307.27789 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.821395537 +IA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.10106339 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.803113412 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.014414703 +IA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.031925855 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.203455808 +IA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.54031747 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,105.2279311 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,16.1028001 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.0205395 +IA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,22.8981608 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.42379808 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.831250107 +IA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.041719964 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011691047 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.186078203 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.266218343 +IA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.926416855 +IA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.37 +IA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.01086387 +IA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.00356334 +IA,Sulfur Dioxide,2A1_Cement-production,,TON,810.53 +IA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,12.28979 +IA,Sulfur Dioxide,2A6_Other-minerals,,TON,318.3624742 +IA,Sulfur Dioxide,2B_Chemicals-other,,TON,100.1004365 +IA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,318.3689498 +IA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.347286 +IA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,125.7863691 +IA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.06407 +IA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.073595408 +IA,Sulfur Dioxide,2D3h_Printing,,TON,0.015473122 +IA,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.005745 +IA,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.012003 +IA,Sulfur Dioxide,2H2_Ethanol Production,,TON,92.5165385 +IA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,895.5648157 +IA,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,0.766012232 +IA,Sulfur Dioxide,3Dc_Other-farm,,TON,24.73940656 +IA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,6.1261 +IA,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,26.252725 +IA,Sulfur Dioxide,5C_Incineration,,TON,2.199886463 +IA,Sulfur Dioxide,5C_Incineration,biomass,TON,1.369304562 +IA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,75.96120094 +IA,Sulfur Dioxide,5C_Open-burning-residential,,TON,55.1722946 +IA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.66230591 +IA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,4.4061924 +IA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,12.37468691 +IA,Volatile Organic Compounds,11C_Other-natural,,TON,141289.1599 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.4084636 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.304014816 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,254.1927681 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.0426091 +IA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,38.67052332 +IA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,79.55820503 +IA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.8589649 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,50.662592 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,191.2521047 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22.13520545 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.166838114 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,8.983594548 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.7396142 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,71.93792431 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.058004251 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.2066929 +IA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,961.8836489 +IA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,29.75219291 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,341.4860993 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,245.9904316 +IA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.011877849 +IA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,262.5604444 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,519.1001151 +IA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,21016.38193 +IA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,74.5951442 +IA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1203.659227 +IA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,85.06880981 +IA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,204.5825004 +IA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.013167287 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,784.0810973 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,57.20015237 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,504.264971 +IA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,148.5082428 +IA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,819.811408 +IA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,848.6895231 +IA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.002800094 +IA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,35.34195113 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,27.01273805 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.839373304 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,27.63087209 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.024008846 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.031850868 +IA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,125.4568611 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,71.48442656 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,903.8942415 +IA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.92523136 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,15.44145957 +IA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3144.932006 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3623.092053 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.617083998 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.085200003 +IA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,209.903131 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1720.151475 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,396.2546395 +IA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.12168515 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.50231824 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4073.686566 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.11851797 +IA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3204.504885 +IA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,29.5003 +IA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,357.1466988 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,693.1962173 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,465.1940495 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4236.596304 +IA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,5126.214337 +IA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.5238 +IA,Volatile Organic Compounds,2A1_Cement-production,,TON,199.4834266 +IA,Volatile Organic Compounds,2A6_Other-minerals,,TON,144.8659372 +IA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1.45497425 +IA,Volatile Organic Compounds,2B_Chemicals-other,,TON,2961.374811 +IA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,531.1534907 +IA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,141.5628448 +IA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +IA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,65.42641922 +IA,Volatile Organic Compounds,2C7a_Copper-production,,TON,84.095975 +IA,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.010074 +IA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13786.46389 +IA,Volatile Organic Compounds,2D3d_Coating-application,,TON,12709.67295 +IA,Volatile Organic Compounds,2D3e_Degreasing,,TON,2956.529585 +IA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,8.2926 +IA,Volatile Organic Compounds,2D3h_Printing,,TON,8936.518734 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2290.339349 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0 +IA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1531.652035 +IA,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,233.1911155 +IA,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,4.411776 +IA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,1949.52011 +IA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,5617.736295 +IA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1041.574857 +IA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,864.0135851 +IA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,3000.043226 +IA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,51.99235955 +IA,Volatile Organic Compounds,3B3_Manure-swine,,TON,18003.83681 +IA,Volatile Organic Compounds,3B4_Manure-other,,TON,60.116193 +IA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1443.634502 +IA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,31.9044032 +IA,Volatile Organic Compounds,3Dc_Other-farm,,TON,216.4590953 +IA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,10348.8066 +IA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,140.51 +IA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0 +IA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,487.32 +IA,Volatile Organic Compounds,5C_Incineration,,TON,1.720545096 +IA,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.610554693 +IA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,517.0852893 +IA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,345.09789 +IA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,61.2428506 +IA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,102.6439194 +IA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,68.6851186 +IA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,19.9611652 +IA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.06934 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.511628235 +ID,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.134560604 +ID,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,35.21442529 +ID,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.544059317 +ID,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +ID,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.065242154 +ID,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.000789881 +ID,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,24.54339865 +ID,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.764189329 +ID,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.055601525 +ID,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,18.18250155 +ID,Ammonia,1A3bii_Road-LDV,light_oil,TON,536.8072332 +ID,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.325940552 +ID,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.21396105 +ID,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.012537866 +ID,Ammonia,1A3biii_Road-bus,light_oil,TON,1.383309648 +ID,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.178215561 +ID,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,39.23081368 +ID,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.123449313 +ID,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,25.91626384 +ID,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,11.43204453 +ID,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.04182985 +ID,Ammonia,1A3c_Rail,diesel_oil,TON,4.106985629 +ID,Ammonia,1A3c_Rail,light_oil,TON,0.002216152 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.740368848 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.015814216 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002026781 +ID,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.639046517 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.299751076 +ID,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.786367459 +ID,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.14602526 +ID,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.992941843 +ID,Ammonia,1A4bi_Residential-stationary,biomass,TON,88.42658034 +ID,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.25002297 +ID,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0.602162331 +ID,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.0048157 +ID,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,251.5815604 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.444940291 +ID,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.146791087 +ID,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.00594303 +ID,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.123503808 +ID,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.20163324 +ID,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.439246326 +ID,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,2.5375E-11 +ID,Ammonia,2B_Chemicals-other,,TON,214.9622072 +ID,Ammonia,2D3d_Coating-application,,TON,24.92145878 +ID,Ammonia,2D3h_Printing,Other_Fuel,TON,4.515740987 +ID,Ammonia,2H1_Pulp-and-paper,,TON,73.40804 +ID,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,1344.7076 +ID,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,20.76575 +ID,Ammonia,3B1a_Cattle-dairy,,TON,33456.75842 +ID,Ammonia,3B1b_Cattle-non-dairy,,TON,11167.1469 +ID,Ammonia,3B2_Manure-sheep,,TON,879.6202027 +ID,Ammonia,3B3_Manure-swine,,TON,214.6820295 +ID,Ammonia,3B4_Manure-other,,TON,672.459399 +ID,Ammonia,3B4_Manure-poultry,,TON,316.4953341 +ID,Ammonia,3B4d_Manure-goats,,TON,201.8548464 +ID,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,40726.10915 +ID,Ammonia,3F_Ag-res-on-field,,TON,2810.8931 +ID,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,605.1876975 +ID,Ammonia,5B_Compost-biogas,Other_Fuel,TON,33.0386165 +ID,Ammonia,5C_Open-burning-residential,,TON,12.04283849 +ID,Ammonia,5C_Open-burning-yard-waste,,TON,5.41858217 +ID,Ammonia,5D1_Wastewater-domestic,,TON,4.678604946 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,63050.0534 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,58562.22144 +ID,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5051.790673 +ID,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,6882.687405 +ID,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,722.12505 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,217295.4482 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,4519.724719 +ID,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.868211809 +ID,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,126607.8001 +ID,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,550053.817 +ID,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,6473171.645 +ID,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,193781.7892 +ID,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,284661.6335 +ID,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,103893.6526 +ID,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,36133.23782 +ID,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,6476.41371 +ID,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2360064.677 +ID,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2747.786909 +ID,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1284790.13 +ID,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,265379.2908 +ID,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,48253.91552 +ID,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2803.294193 +ID,Carbon Dioxide,1A3c_Rail,light_oil,TON,172.2957621 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36896.00351 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,64026.02865 +ID,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2761.256766 +ID,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,17973.73274 +ID,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,148650.4279 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,670547.733 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11093.83589 +ID,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1591.349107 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,729.0643279 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,148064.2841 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24830.05053 +ID,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,104481.0426 +ID,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,5052682.308 +ID,Carbon Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,458.9641 +ID,Carbon Monoxide,11C_Other-natural,,TON,106090.315 +ID,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,45.80324 +ID,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.0001116 +ID,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,193.146864 +ID,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,0.387360264 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,96.26684701 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2092.878903 +ID,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,67.13950456 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,6121.088482 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,70.61997628 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,165.1370173 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.407979249 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.68352475 +ID,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2008.369597 +ID,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,18.068573 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,512.6645345 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,915.0530298 +ID,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.032381596 +ID,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4468.378348 +ID,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6054.862623 +ID,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,131297.4707 +ID,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1337.50067 +ID,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5763.280733 +ID,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,282.6616928 +ID,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1916.288317 +ID,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,30.6124686 +ID,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2005.639751 +ID,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,149.3833138 +ID,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1708.216928 +ID,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6641.73211 +ID,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1982.350812 +ID,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1323.091728 +ID,Carbon Monoxide,1A3c_Rail,light_oil,TON,38.33834 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,323.1508264 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.475696881 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.012754786 +ID,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,835.0409465 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119.3358843 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,13100.61787 +ID,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,54.95037616 +ID,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,52.74000305 +ID,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,33474.18583 +ID,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,12252.25827 +ID,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,16.25011524 +ID,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,82.7973255 +ID,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.024078502 +ID,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,570.3337513 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1895.855407 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2134.57139 +ID,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,18.31672154 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.133608068 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,16191.49941 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,49.16991937 +ID,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11164.99709 +ID,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.263898 +ID,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,47.88429208 +ID,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,4839.4538 +ID,Carbon Monoxide,2A6_Other-minerals,,TON,149.3638568 +ID,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,532.2239504 +ID,Carbon Monoxide,2H1_Pulp-and-paper,,TON,761.2726595 +ID,Carbon Monoxide,2H2_Food-and-beverage,,TON,1566.415327 +ID,Carbon Monoxide,3F_Ag-res-on-field,,TON,19732.63381 +ID,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,154.8760386 +ID,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,1.621138423 +ID,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,5414.095763 +ID,Carbon Monoxide,5C_Open-burning-residential,,TON,582.2456962 +ID,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,249.5887975 +ID,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.507175 +ID,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.465286257 +ID,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.508247951 +ID,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,28.14883987 +ID,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.00484029 +ID,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,0.011554 +ID,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,3.838662898 +ID,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.288737865 +ID,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.021659288 +ID,Methane,1A3bii_Road-LDV,diesel_oil,TON,35.41123017 +ID,Methane,1A3bii_Road-LDV,light_oil,TON,387.9808716 +ID,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.80129101 +ID,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.08370413 +ID,Methane,1A3biii_Road-bus,diesel_oil,TON,3.011857917 +ID,Methane,1A3biii_Road-bus,light_oil,TON,6.172401497 +ID,Methane,1A3biii_Road-bus,natural_gas,TON,18.7938396 +ID,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,164.42733 +ID,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.350657671 +ID,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,53.18672772 +ID,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.7418262 +ID,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.22214662 +ID,Methane,1A3c_Rail,diesel_oil,TON,0.126434291 +ID,Methane,1A3c_Rail,light_oil,TON,0.116482697 +ID,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.357661513 +ID,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,43.8007105 +ID,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32.7362372 +ID,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.643550821 +ID,Methane,1A4bi_Residential-mobile,light_oil,TON,131.3252055 +ID,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.09424035 +ID,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.723301165 +ID,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.497178114 +ID,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.032057922 +ID,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,141.7152947 +ID,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.697826142 +ID,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,101.6301869 +ID,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,21465.69765 +ID,Nitrogen Oxides,11C_Other-natural,,TON,31093.25778 +ID,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,38.90623 +ID,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0.0035937 +ID,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,125.995562 +ID,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0.48660187 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,286.8551249 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,139.0205727 +ID,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.96589934 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2175.959075 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,322.916969 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,430.8248739 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.48920588 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.577597786 +ID,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5339.820643 +ID,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,59.47096 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,962.0257393 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,11.6662981 +ID,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.006258373 +ID,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,496.09307 +ID,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2276.537411 +ID,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,17038.58131 +ID,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,657.5041684 +ID,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,712.6755319 +ID,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,953.742174 +ID,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,244.1483207 +ID,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,12.3537821 +ID,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7489.973871 +ID,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,16.97731864 +ID,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4809.537576 +ID,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,648.3510116 +ID,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,111.1315835 +ID,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6917.340449 +ID,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.425327554 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,113.1028256 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.873216933 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048956504 +ID,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,977.705053 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,234.8831561 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,174.1428211 +ID,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.77838177 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,136.9542212 +ID,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,325.9513506 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,204.0496561 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,58.50041291 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,2.73983861 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.086682605 +ID,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1421.279564 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4138.156027 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,46.28654708 +ID,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.463754995 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.708471853 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,322.1804238 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,247.7015202 +ID,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,781.6608978 +ID,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.256403 +ID,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,354.1241287 +ID,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,48.008105 +ID,Nitrogen Oxides,2A6_Other-minerals,,TON,5.8897288 +ID,Nitrogen Oxides,2B_Chemicals-other,,TON,375.6837982 +ID,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,700.41142 +ID,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,211.06164 +ID,Nitrogen Oxides,3F_Ag-res-on-field,,TON,623.2306678 +ID,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,44.472015 +ID,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,2.215000346 +ID,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,131.9692532 +ID,Nitrogen Oxides,5C_Open-burning-residential,,TON,41.09969744 +ID,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,11.31964133 +ID,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.31904765 +ID,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,27.99424 +ID,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.894744 +ID,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.9609131 +ID,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,364.1950785 +ID,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.755927914 +ID,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.7423735 +ID,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.2359377 +ID,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.5487529 +ID,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.339737569 +ID,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.736771598 +ID,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.29659669 +ID,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.696128603 +ID,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.57179098 +ID,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.669546912 +ID,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,33.60396608 +ID,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,22.86691 +ID,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.02533E-05 +ID,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,24.13553955 +ID,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.035175872 +ID,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,24.50519 +ID,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.6112378 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2612.028518 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.32612537 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,41.9106651 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.451140775 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.065514953 +ID,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,71.16447826 +ID,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.065317 +ID,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,260070.977 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,192.154197 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.121569266 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002747185 +ID,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.871283399 +ID,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1673.003521 +ID,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.850462749 +ID,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.888987624 +ID,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.004499692 +ID,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.636861511 +ID,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1174144 +ID,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.104850136 +ID,PM10 Filterable,2A2_Lime-production,Other_Fuel,TON,8.1948018 +ID,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18663.72123 +ID,PM10 Filterable,2A6_Other-minerals,,TON,2710.438573 +ID,PM10 Filterable,2B_Chemicals-other,,TON,200.1579314 +ID,PM10 Filterable,2D3d_Coating-application,,TON,0.009447372 +ID,PM10 Filterable,2H1_Pulp-and-paper,,TON,364.7556265 +ID,PM10 Filterable,2H2_Food-and-beverage,,TON,1145.448067 +ID,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,39.49709554 +ID,PM10 Filterable,2I_Wood-processing,,TON,12.93846 +ID,PM10 Filterable,3B1a_Cattle-dairy,,TON,4319.315242 +ID,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,15114.47 +ID,PM10 Filterable,3Dc_Other-farm,,TON,92883.05546 +ID,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,84.822573 +ID,PM10 Filterable,5C_Incineration,Other_Fuel,TON,1.535551 +ID,PM10 Filterable,5C_Open-burning-land-clearing,,TON,657.1666185 +ID,PM10 Filterable,5C_Open-burning-residential,,TON,183.91 +ID,PM10 Filterable,5C_Open-burning-yard-waste,,TON,51.0390686 +ID,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.933287107 +ID,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,1.98 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,23.64438 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.000011025 +ID,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,43.882803 +ID,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.036024084 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.5111722 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.391228866 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.6179057 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2782.926597 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,24.57339643 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,45.2169497 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.812720263 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.068323476 +ID,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,174.318125 +ID,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.107731 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,85.07126384 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.194231005 +ID,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000100695 +ID,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,97.13648774 +ID,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,266054.5242 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,128.8414648 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,839.0476324 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,43.39161418 +ID,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.40289279 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,61.03145081 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.50840697 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.851239327 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,380.8470552 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.530143159 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,328.7353215 +ID,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,32.33070196 +ID,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.434396176 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,203.492495 +ID,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021915682 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,204.4240857 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.142554863 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006375073 +ID,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.382765238 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.63237979 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,16.73272595 +ID,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.349517321 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.728309099 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,153.4696083 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1807.337176 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.735055059 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,2.17982764 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.011461367 +ID,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.412953841 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,347.59777 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.198364881 +ID,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.194176074 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.754624639 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,156.9922937 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.409095728 +ID,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,34.65138191 +ID,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1174144 +ID,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.869114012 +ID,PM10 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,10.6476731 +ID,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18814.91188 +ID,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2758.041722 +ID,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,214.367855 +ID,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.009447372 +ID,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,514.5528556 +ID,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1168.419669 +ID,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,39.49709554 +ID,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,12.93846 +ID,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,4336.491274 +ID,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,15161.53389 +ID,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,99849.16667 +ID,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3129.699557 +ID,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,110.629936 +ID,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,1.685879476 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,667.7510095 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,190.6782768 +ID,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,53.81468616 +ID,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.027642107 +ID,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.98 +ID,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,19.55988 +ID,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.00283E-05 +ID,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,24.13553955 +ID,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.035175872 +ID,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.450519 +ID,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.1528094 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2253.409631 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.869658753 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,20.8917764 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.905592029 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.062985485 +ID,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,50.56403821 +ID,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.065317 +ID,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,24508.748 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,163.5800913 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.122488126 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002116372 +ID,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.020708876 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1654.373521 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.143118547 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,1.178878496 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.00341487 +ID,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.441082204 +ID,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1174127 +ID,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3.104850136 +ID,PM2.5 Filterable,2A2_Lime-production,Other_Fuel,TON,4.099115 +ID,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1866.638034 +ID,PM2.5 Filterable,2A6_Other-minerals,,TON,436.8825846 +ID,PM2.5 Filterable,2B_Chemicals-other,,TON,147.043857 +ID,PM2.5 Filterable,2D3d_Coating-application,,TON,0.008181188 +ID,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,207.7511665 +ID,PM2.5 Filterable,2H2_Food-and-beverage,,TON,881.1896617 +ID,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,36.84846489 +ID,PM2.5 Filterable,2I_Wood-processing,,TON,2.245949 +ID,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,897.7661381 +ID,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3141.35 +ID,PM2.5 Filterable,3Dc_Other-farm,,TON,18562.84088 +ID,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,25.803016 +ID,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,1.005357 +ID,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,599.1813449 +ID,PM2.5 Filterable,5C_Open-burning-residential,,TON,168.41 +ID,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,39.7790686 +ID,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.933287107 +ID,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.15 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,20.33735 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.0000108 +ID,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,43.882803 +ID,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.036024084 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,17.00586622 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.790732216 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.6179057 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2423.22519 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,21.98585677 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,24.19686714 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.223358837 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.065775959 +ID,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,148.0252415 +ID,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.107731 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,82.51912815 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,6.622166145 +ID,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000100695 +ID,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,80.55341945 +ID,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25072.12255 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,97.44799499 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,382.824984 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,31.8987218 +ID,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.45123594 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,48.50481341 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.025275909 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.201949394 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,240.2651688 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.291811888 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,222.5217159 +ID,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.28836653 +ID,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.454426234 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,197.2775935 +ID,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.020199246 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,175.5022747 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.142515749 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.005759678 +ID,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.486920504 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.07341031 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,15.43045516 +ID,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.349517321 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.466461401 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,141.198623 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1788.32329 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.922548918 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,1.45723284 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.010257442 +ID,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.129942836 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,337.1698466 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,2.942641222 +ID,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.194176074 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.731986083 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,144.4332696 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.246823816 +ID,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,31.87926978 +ID,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1174127 +ID,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.869114012 +ID,PM2.5 Primary (Filt + Cond),2A2_Lime-production,Other_Fuel,TON,6.5519863 +ID,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1882.277995 +ID,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,442.9641983 +ID,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,161.2537806 +ID,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.008181188 +ID,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,338.4746286 +ID,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,903.4808107 +ID,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,36.84846489 +ID,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.245949 +ID,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,901.3361621 +ID,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3151.311197 +ID,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,19898.8986 +ID,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2169.031749 +ID,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,51.610379 +ID,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,1.128475476 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,607.3408516 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,174.6211664 +ID,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,42.12390953 +ID,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.027642107 +ID,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.15 +ID,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,4.421162 +ID,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.000001575 +ID,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,20.33751992 +ID,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.002844007 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.512940165 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.126165164 +ID,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.028317541 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,249.899579 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.150220264 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,618.3665739 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.504385024 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.106951496 +ID,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,18.00772517 +ID,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,17.30431467 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.681690925 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.06883836 +ID,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.86022E-06 +ID,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,76.4452268 +ID,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.958577133 +ID,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,83.53423591 +ID,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.68334837 +ID,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.658677573 +ID,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.925948114 +ID,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.46664351 +ID,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.034289283 +ID,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20.32465704 +ID,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.035690009 +ID,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.16334065 +ID,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.4491045 +ID,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.628748103 +ID,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.627533259 +ID,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002772299 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,13.29519545 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.113990567 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.112121015 +ID,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.927108122 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.311355243 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.989960106 +ID,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.015471559 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.157631066 +ID,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.418300158 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,39.02598682 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,34.48922491 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,2.9134641 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.051104189 +ID,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.553407647 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.694262032 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.175076587 +ID,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008920828 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006407996 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.354623146 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.228256471 +ID,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.675998478 +ID,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.01149864 +ID,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.602938371 +ID,Sulfur Dioxide,2A6_Other-minerals,,TON,271.1200655 +ID,Sulfur Dioxide,2B_Chemicals-other,,TON,1352.647851 +ID,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,7.16640278 +ID,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,26.2482838 +ID,Sulfur Dioxide,3F_Ag-res-on-field,,TON,111.7552738 +ID,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,79.65548 +ID,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,1.234259692 +ID,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,54.50885215 +ID,Sulfur Dioxide,5C_Open-burning-residential,,TON,6.849949719 +ID,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.55341407 +ID,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0323 +ID,Volatile Organic Compounds,11C_Other-natural,,TON,641898.4537 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,3.008159 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.0000297 +ID,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,23.445084 +ID,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,0.091327061 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.69198163 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,56.72100839 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.084722363 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,179.6514189 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,20.29749929 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.300464766 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.022962795 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.083292259 +ID,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,129.8351144 +ID,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.63669 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,98.30633822 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,63.26455044 +ID,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.004681925 +ID,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,327.1054194 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,796.5756429 +ID,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,13819.24369 +ID,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,193.832795 +ID,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,543.7273043 +ID,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,79.66997155 +ID,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,153.7471902 +ID,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.68415913 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,452.7303484 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,9.188382465 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,405.7291917 +ID,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,317.8740215 +ID,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,352.4842703 +ID,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,329.6739858 +ID,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.959081581 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,10.16870416 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.222268257 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.00097948 +ID,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,61.05875932 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.33146505 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,455.0762429 +ID,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.07634765 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,12.45816988 +ID,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2200.983219 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1873.900802 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.31726638 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,3.01081165 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.003427401 +ID,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,78.40623929 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,342.7379323 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,87.97527665 +ID,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.620608753 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.335635042 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5350.369635 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.02807251 +ID,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2403.390206 +ID,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +ID,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,426.4815368 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,64.92235116 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,316.7656462 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,11711.42517 +ID,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2749.108735 +ID,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,186.2981852 +ID,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,10.65347231 +ID,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,1.901746623 +ID,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,7801.318381 +ID,Volatile Organic Compounds,2D3d_Coating-application,,TON,4516.460552 +ID,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,1120.591539 +ID,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.849708945 +ID,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,1394.52504 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,834.1421529 +ID,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2908.221431 +ID,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1139.862278 +ID,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,346.2758021 +ID,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,68.47352827 +ID,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,2686.360472 +ID,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,890.2500151 +ID,Volatile Organic Compounds,3B2_Manure-sheep,,TON,70.62779688 +ID,Volatile Organic Compounds,3B3_Manure-swine,,TON,17.23757232 +ID,Volatile Organic Compounds,3B4_Manure-other,,TON,53.9941241 +ID,Volatile Organic Compounds,3B4_Manure-poultry,,TON,25.41251986 +ID,Volatile Organic Compounds,3B4d_Manure-goats,,TON,16.20763283 +ID,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7774.735048 +ID,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2810.674943 +ID,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,375.0750076 +ID,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,233.773281 +ID,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.165269116 +ID,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,371.2410383 +ID,Volatile Organic Compounds,5C_Open-burning-residential,,TON,37.23244517 +ID,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,45.27856431 +ID,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,26.32207056 +IL,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.244613 +IL,Ammonia,1A1a_Public-Electricity,hard_coal,TON,190.595049 +IL,Ammonia,1A1a_Public-Electricity,natural_gas,TON,131.200823 +IL,Ammonia,1A1b_Pet-refining,natural_gas,TON,94.792783 +IL,Ammonia,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.432505 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.536732019 +IL,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.35619149 +IL,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +IL,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.42829285 +IL,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,19.08095161 +IL,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.246026657 +IL,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.040018981 +IL,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,503.4805779 +IL,Ammonia,1A2c_Chemicals,natural_gas,TON,8.671793 +IL,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.002647 +IL,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,16.37394701 +IL,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.645936077 +IL,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,25.22447367 +IL,Ammonia,1A3bii_Road-LDV,light_oil,TON,2696.887555 +IL,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.555029944 +IL,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,171.0688785 +IL,Ammonia,1A3biii_Road-bus,diesel_oil,TON,11.72596306 +IL,Ammonia,1A3biii_Road-bus,light_oil,TON,5.765085381 +IL,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.067915946 +IL,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,127.5345946 +IL,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.088483132 +IL,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,110.7113133 +IL,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,29.5282983 +IL,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,34.767434 +IL,Ammonia,1A3c_Rail,diesel_oil,TON,21.75560978 +IL,Ammonia,1A3c_Rail,light_oil,TON,0.010683479 +IL,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.782256171 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.11014186 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.522820984 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.70545E-05 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.093418797 +IL,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.05033886 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.431848139 +IL,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.007256631 +IL,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,1.012224983 +IL,Ammonia,1A4bi_Residential-mobile,light_oil,TON,14.14532305 +IL,Ammonia,1A4bi_Residential-stationary,biomass,TON,331.5590899 +IL,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.547499962 +IL,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +IL,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.348239954 +IL,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3784.468613 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,26.77187077 +IL,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.606307694 +IL,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.044813555 +IL,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.399365228 +IL,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.486816507 +IL,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.197978919 +IL,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.438 +IL,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.3615 +IL,Ammonia,2A1_Cement-production,,TON,172.09477 +IL,Ammonia,2A6_Other-minerals,,TON,11.049143 +IL,Ammonia,2B_Chemicals-other,,TON,665.788964 +IL,Ammonia,2C_Iron-steel-alloy,,TON,3.266949 +IL,Ammonia,2C6_Zinc-production,,TON,0.019277 +IL,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.975129 +IL,Ammonia,2C7a_Copper-production,,TON,0.004472 +IL,Ammonia,2D3d_Coating-application,,TON,18.121101 +IL,Ammonia,2D3e_Degreasing,,TON,0.022 +IL,Ammonia,2D3h_Printing,,TON,0.291102 +IL,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.000954 +IL,Ammonia,2H2_Ethanol Production,,TON,4.3269 +IL,Ammonia,2H2_Food-and-beverage,,TON,145.066392 +IL,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,7.352478 +IL,Ammonia,3B1a_Cattle-dairy,,TON,3245.70001 +IL,Ammonia,3B1b_Cattle-non-dairy,,TON,7517.202166 +IL,Ammonia,3B2_Manure-sheep,,TON,192.784982 +IL,Ammonia,3B3_Manure-swine,,TON,34694.98211 +IL,Ammonia,3B4_Manure-other,,TON,846.1686755 +IL,Ammonia,3B4_Manure-poultry,,TON,4458.86512 +IL,Ammonia,3B4d_Manure-goats,,TON,132.9455015 +IL,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,10952.15425 +IL,Ammonia,3Dc_Other-farm,,TON,0.976258 +IL,Ammonia,3F_Ag-res-on-field,,TON,40.7632855 +IL,Ammonia,5B_Compost-biogas,Other_Fuel,TON,273.246459 +IL,Ammonia,5C_Incineration,,TON,0.01144 +IL,Ammonia,5C_Incineration,biomass,TON,0.147268 +IL,Ammonia,5D1_Wastewater-domestic,,TON,57.3992739 +IL,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,3.443118 +IL,Ammonia,5E_Other-waste,Other_Fuel,TON,0.563 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,682354.4834 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,783825.7542 +IL,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,44824.90284 +IL,Carbon Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,190499.0483 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2016192.007 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,52623.79822 +IL,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,10.27473872 +IL,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3592876.263 +IL,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,835246.117 +IL,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,41033305.02 +IL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,210441.1294 +IL,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2888265.216 +IL,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,649985.5676 +IL,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,175382.0098 +IL,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2505.491794 +IL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8397821.822 +IL,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,55804.17626 +IL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5919860.599 +IL,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,796734.1027 +IL,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,299234.6335 +IL,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,13417.77365 +IL,Carbon Dioxide,1A3c_Rail,light_oil,TON,832.4233683 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,299224.8245 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,408017.207 +IL,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18032.89272 +IL,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,124593.6369 +IL,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1057702.221 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3296525.583 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,45751.59792 +IL,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6430.237468 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5495.57682 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,240320.8568 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,59947.11221 +IL,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,230285.2484 +IL,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,101780154 +IL,Carbon Monoxide,11C_Other-natural,,TON,54072.4816 +IL,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,27.623511 +IL,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,12114.74095 +IL,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.38688 +IL,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2600.907098 +IL,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2696.745321 +IL,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,24.353307 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1042.758332 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19786.04537 +IL,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,644.8637112 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,22.90571712 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,693.5833637 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,912.012129 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.966425528 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,24.16465753 +IL,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,15502.38666 +IL,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,392.211443 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.286841 +IL,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.600038 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5670.976592 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,10883.20301 +IL,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.97775819 +IL,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,28997.2124 +IL,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6991.846651 +IL,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,578094.9772 +IL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1467.138289 +IL,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,44210.14871 +IL,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1352.938555 +IL,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,8300.390769 +IL,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,15.70786296 +IL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6991.087439 +IL,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,827.3702448 +IL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7208.886465 +IL,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,18414.70733 +IL,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11536.23408 +IL,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,7019.929528 +IL,Carbon Monoxide,1A3c_Rail,light_oil,TON,186.6530832 +IL,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,663.8189317 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,224.3910162 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,153.7401181 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.59588E-05 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.619107991 +IL,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9757.663787 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1063.457746 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,84129.55185 +IL,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,376.2794686 +IL,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,359.8399818 +IL,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,239553.0445 +IL,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,51332.16957 +IL,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,7.737500353 +IL,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IL,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.741200063 +IL,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,7931.57558 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9710.718586 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,9189.552726 +IL,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,87.56713107 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,41.0826461 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,32814.56543 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,120.1899822 +IL,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,25903.04139 +IL,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0.03784694 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,18.91243906 +IL,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,13.164225 +IL,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1223.74489 +IL,Carbon Monoxide,2A1_Cement-production,,TON,1642.6648 +IL,Carbon Monoxide,2A6_Other-minerals,,TON,1484.767968 +IL,Carbon Monoxide,2B_Chemicals-other,,TON,1334.601179 +IL,Carbon Monoxide,2C_Iron-steel-alloy,,TON,10138.3937 +IL,Carbon Monoxide,2C3_Aluminum-production,,TON,74.9903 +IL,Carbon Monoxide,2C5_Lead-production,,TON,0.59524 +IL,Carbon Monoxide,2C6_Zinc-production,,TON,23.712004 +IL,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,77.349688 +IL,Carbon Monoxide,2C7a_Copper-production,,TON,2.45172 +IL,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,22.375754 +IL,Carbon Monoxide,2D3d_Coating-application,,TON,10.723586 +IL,Carbon Monoxide,2D3h_Printing,,TON,0.131277 +IL,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.158155 +IL,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.4632 +IL,Carbon Monoxide,2H2_Biodiesel Production,,TON,0 +IL,Carbon Monoxide,2H2_Ethanol Production,,TON,75.182158 +IL,Carbon Monoxide,2H2_Food-and-beverage,,TON,1842.589803 +IL,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,171.506845 +IL,Carbon Monoxide,3Dc_Other-farm,,TON,19.094242 +IL,Carbon Monoxide,3F_Ag-res-on-field,,TON,220.40593 +IL,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1869.983778 +IL,Carbon Monoxide,5C_Incineration,,TON,5575.246509 +IL,Carbon Monoxide,5C_Incineration,biomass,TON,16.465661 +IL,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.784077 +IL,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4687.239384 +IL,Carbon Monoxide,5C_Open-burning-residential,,TON,10609.69523 +IL,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,726.182181 +IL,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,73.8593 +IL,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,80.204132 +IL,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.560881 +IL,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,14.85784666 +IL,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,85.87231684 +IL,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,277.1859522 +IL,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,3.891159595 +IL,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,49.79730535 +IL,Methane,1A2g_Construction_and_Mining,light_oil,TON,39.40404777 +IL,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.612055532 +IL,Methane,1A3bii_Road-LDV,diesel_oil,TON,72.62574721 +IL,Methane,1A3bii_Road-LDV,light_oil,TON,1558.539927 +IL,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22.66705538 +IL,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,147.6881219 +IL,Methane,1A3biii_Road-bus,diesel_oil,TON,27.11709227 +IL,Methane,1A3biii_Road-bus,light_oil,TON,19.56861616 +IL,Methane,1A3biii_Road-bus,natural_gas,TON,11.04626069 +IL,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,513.6086287 +IL,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.466778231 +IL,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,276.0003279 +IL,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,37.30161174 +IL,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.86713474 +IL,Methane,1A3c_Rail,diesel_oil,TON,0.605968496 +IL,Methane,1A3c_Rail,light_oil,TON,0.551115913 +IL,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,9.642683861 +IL,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,279.094445 +IL,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,239.2433268 +IL,Methane,1A4bi_Residential-mobile,diesel_oil,TON,4.24081931 +IL,Methane,1A4bi_Residential-mobile,light_oil,TON,913.5824629 +IL,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,92.26187012 +IL,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,38.00099526 +IL,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,34.799822 +IL,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.22306661 +IL,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,228.0636098 +IL,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.618376404 +IL,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,231.2418155 +IL,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,173091.4058 +IL,Nitrogen Oxides,11C_Other-natural,,TON,42872.8886 +IL,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,146.9459038 +IL,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,28099.72165 +IL,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.00492 +IL,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1368.202228 +IL,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3103.545068 +IL,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,28.288098 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2924.234739 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1893.375362 +IL,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,113.100105 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,38.30927499 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2499.116225 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2731.617373 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,73.52274494 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.019945837 +IL,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,18114.61802 +IL,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,0 +IL,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,574.8454992 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.71714128 +IL,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.631251 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10549.97689 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,155.912228 +IL,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.15952414 +IL,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,9511.780694 +IL,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2426.278804 +IL,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,52618.76415 +IL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,583.7533153 +IL,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4200.66235 +IL,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3128.455749 +IL,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,756.7736607 +IL,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,8.76208676 +IL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24247.4866 +IL,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,80.18988102 +IL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16827.4608 +IL,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1370.23956 +IL,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,573.8342779 +IL,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,37610.73555 +IL,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.932739494 +IL,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5199.304853 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,755.4337442 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,131.865958 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000916535 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.337486408 +IL,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10429.96229 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2064.826857 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1114.851024 +IL,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,91.90771288 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,922.6925376 +IL,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2242.510843 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,752.7351023 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,27.85500044 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,6.311850565 +IL,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,19076.45856 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21987.68676 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,199.8165918 +IL,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,14.89784467 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,44.1339362 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,522.9866396 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,619.5855547 +IL,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1694.851143 +IL,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,5.5117856 +IL,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.4508 +IL,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1433.001057 +IL,Nitrogen Oxides,2A1_Cement-production,,TON,1705.56216 +IL,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,0.175 +IL,Nitrogen Oxides,2A6_Other-minerals,,TON,3184.773004 +IL,Nitrogen Oxides,2B_Chemicals-other,,TON,454.8518701 +IL,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,442.9435781 +IL,Nitrogen Oxides,2C3_Aluminum-production,,TON,13.136646 +IL,Nitrogen Oxides,2C5_Lead-production,,TON,0.4828 +IL,Nitrogen Oxides,2C6_Zinc-production,,TON,44.882322 +IL,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,56.99440195 +IL,Nitrogen Oxides,2C7a_Copper-production,,TON,0.731925 +IL,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.02424 +IL,Nitrogen Oxides,2D3d_Coating-application,,TON,15.19084575 +IL,Nitrogen Oxides,2D3h_Printing,,TON,0.156304 +IL,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,1.1792 +IL,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.5238 +IL,Nitrogen Oxides,2H2_Biodiesel Production,,TON,0 +IL,Nitrogen Oxides,2H2_Ethanol Production,,TON,3.10279001 +IL,Nitrogen Oxides,2H2_Food-and-beverage,,TON,194.8635921 +IL,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,6.767996 +IL,Nitrogen Oxides,3Dc_Other-farm,,TON,13.578889 +IL,Nitrogen Oxides,3F_Ag-res-on-field,,TON,7.671669 +IL,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,313.6718147 +IL,Nitrogen Oxides,5C_Incineration,,TON,1624.983317 +IL,Nitrogen Oxides,5C_Incineration,biomass,TON,1.12243 +IL,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.17129 +IL,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,138.675735 +IL,Nitrogen Oxides,5C_Open-burning-residential,,TON,748.9196285 +IL,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,32.2747634 +IL,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,4.85093379 +IL,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,12.0834 +IL,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.953766684 +IL,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.238151 +IL,Nitrous Oxide,1A1a_Public-Electricity,hard_coal,TON,0 +IL,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,5.081078 +IL,Nitrous Oxide,1A1b_Pet-refining,natural_gas,TON,2.705964 +IL,Nitrous Oxide,1A1g_Other-energy-transf,natural_gas,TON,0.09481 +IL,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,2.214545114 +IL,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.182318701 +IL,Nitrous Oxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.391562076 +IL,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.029037655 +IL,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,79.32344173 +IL,Nitrous Oxide,1A2c_Chemicals,natural_gas,TON,1.96051 +IL,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.015628 +IL,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.718475113 +IL,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1322.133786 +IL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.826709118 +IL,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,123.6237321 +IL,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.511877589 +IL,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,6.921081273 +IL,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.139146449 +IL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.31528648 +IL,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.116567016 +IL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13.3132361 +IL,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,31.03019198 +IL,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.107862588 +IL,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.138170312 +IL,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.63013127 +IL,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.02181E-06 +IL,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.4694194 +IL,Nitrous Oxide,1B2av_Fugitive-petr-distr,,TON,0.000046 +IL,Nitrous Oxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.026718 +IL,Nitrous Oxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +IL,Nitrous Oxide,2A6_Other-minerals,,TON,1.319719 +IL,Nitrous Oxide,2B_Chemicals-other,,TON,7.947391 +IL,Nitrous Oxide,2C_Iron-steel-alloy,,TON,0.1424 +IL,Nitrous Oxide,2C7_Other-metal,Other_Fuel,TON,0.174069 +IL,Nitrous Oxide,2D3d_Coating-application,,TON,0.058102 +IL,Nitrous Oxide,2D3h_Printing,,TON,0.00353 +IL,Nitrous Oxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.000636 +IL,Nitrous Oxide,2H2_Ethanol Production,,TON,0 +IL,Nitrous Oxide,2H2_Food-and-beverage,,TON,0.421084 +IL,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1447.212517 +IL,Nitrous Oxide,3Dc_Other-farm,,TON,0.017 +IL,Nitrous Oxide,5A_Solid-waste-disposal,,TON,1.967944 +IL,Nitrous Oxide,5C_Incineration,,TON,0.007434 +IL,Nitrous Oxide,5C_Incineration,biomass,TON,0.317998 +IL,Nitrous Oxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.147644 +IL,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.684977 +IL,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,799.845652 +IL,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,175.903601 +IL,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,712.941637 +IL,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.483504 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8.93096086 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,168.3479575 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,304.9664282 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,30.25790266 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.050586391 +IL,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,401.2832765 +IL,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,20.291976 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.187856 +IL,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.07187 +IL,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,353405.7198 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,53.86361221 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,38.99573729 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000141539 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.173162113 +IL,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,292.3598504 +IL,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,7582.523187 +IL,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.67130011 +IL,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IL,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.377259984 +IL,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,39.6578779 +IL,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.019490607 +IL,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.753701393 +IL,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21.52398331 +IL,PM10 Filterable,2A1_Cement-production,,TON,238.827391 +IL,PM10 Filterable,2A2_Lime-production,,TON,2.166332 +IL,PM10 Filterable,2A5b_Construction-and-demolition,,TON,154492.6806 +IL,PM10 Filterable,2A6_Other-minerals,,TON,3756.750351 +IL,PM10 Filterable,2B_Chemicals-other,,TON,860.724249 +IL,PM10 Filterable,2C_Iron-steel-alloy,,TON,1087.623893 +IL,PM10 Filterable,2C3_Aluminum-production,,TON,101.876232 +IL,PM10 Filterable,2C5_Lead-production,,TON,8.130163 +IL,PM10 Filterable,2C6_Zinc-production,,TON,77.505771 +IL,PM10 Filterable,2C7_Other-metal,,TON,377.334657 +IL,PM10 Filterable,2C7a_Copper-production,,TON,66.373915 +IL,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,31.612101 +IL,PM10 Filterable,2D3d_Coating-application,,TON,147.271244 +IL,PM10 Filterable,2D3e_Degreasing,,TON,0.049016 +IL,PM10 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,12.00845 +IL,PM10 Filterable,2D3h_Printing,,TON,28.05533 +IL,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.338405 +IL,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,104.838076 +IL,PM10 Filterable,2H2_Biodiesel Production,,TON,0.108544 +IL,PM10 Filterable,2H2_Ethanol Production,,TON,9.832072 +IL,PM10 Filterable,2H2_Food-and-beverage,,TON,3950.274571 +IL,PM10 Filterable,2H3_Other-industrial-processes,,TON,400.3154943 +IL,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,67.06340468 +IL,PM10 Filterable,2I_Wood-processing,,TON,2.48742 +IL,PM10 Filterable,3B1a_Cattle-dairy,,TON,745.1503713 +IL,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,12890.17467 +IL,PM10 Filterable,3Dc_Other-farm,,TON,386027.9476 +IL,PM10 Filterable,5A_Solid-waste-disposal,,TON,447.328305 +IL,PM10 Filterable,5C_Incineration,,TON,2623.256471 +IL,PM10 Filterable,5C_Incineration,biomass,TON,7.166996 +IL,PM10 Filterable,5C_Open-burning-commercial,,TON,0.016066 +IL,PM10 Filterable,5C_Open-burning-land-clearing,,TON,471.497465 +IL,PM10 Filterable,5C_Open-burning-residential,,TON,4743.157629 +IL,PM10 Filterable,5C_Open-burning-yard-waste,,TON,120.2523076 +IL,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.710408 +IL,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,3.326555 +IL,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,11.239916 +IL,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.001 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.988266 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2896.125552 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,397.006456 +IL,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1203.416757 +IL,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.483504 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,163.5884301 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,92.09034968 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.392313277 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,10.70327675 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,218.744068 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,317.4488223 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,32.37178722 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.115932682 +IL,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1421.984741 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,52.990591 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.187856 +IL,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.07187 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,884.1586137 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,83.27425826 +IL,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001307403 +IL,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,318.9627346 +IL,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,353405.7198 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,150.4205851 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4745.86153 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40.31454215 +IL,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,334.3876541 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,216.1143435 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,40.37835907 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.37941753 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1666.122954 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.738922688 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1469.716053 +IL,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,106.731964 +IL,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,36.42886188 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1118.377096 +IL,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.10590011 +IL,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,149.3272228 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,83.05494638 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,67.62565962 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.000152924 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.307246677 +IL,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,926.1040893 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,176.7825243 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,106.8310805 +IL,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.283256215 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,60.23602564 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,951.0361124 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7932.925084 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.683049891 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.866972556 +IL,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,103.1055867 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1641.626418 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,14.52598614 +IL,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.791814044 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,6.06961534 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,219.1526192 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.73473849 +IL,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,88.87715278 +IL,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.005106119 +IL,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.837727881 +IL,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,37.24134979 +IL,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,254.728406 +IL,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,2.167054 +IL,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,154492.6806 +IL,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3883.036475 +IL,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,861.302584 +IL,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1087.623893 +IL,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,101.876232 +IL,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,8.130163 +IL,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,77.505771 +IL,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,377.334657 +IL,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,66.373915 +IL,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,31.612101 +IL,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,147.271244 +IL,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.049016 +IL,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,12.00845 +IL,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,28.064243 +IL,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.338405 +IL,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,104.838076 +IL,PM10 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0.108544 +IL,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,34.834456 +IL,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,7239.419843 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,400.3154943 +IL,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,67.06340468 +IL,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.48742 +IL,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,745.1503713 +IL,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,12890.17467 +IL,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,386027.9476 +IL,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,33.7323105 +IL,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,447.328305 +IL,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2623.256471 +IL,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.166996 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.016066 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,471.497465 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4743.157629 +IL,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,120.2523076 +IL,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.710408 +IL,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.326555 +IL,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,11.239916 +IL,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.001 +IL,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.635719 +IL,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,364.36041 +IL,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,175.014303 +IL,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,508.3215234 +IL,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.483504 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8.492612403 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,138.7894126 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,174.6066495 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.71633309 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.012680987 +IL,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,398.1139367 +IL,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,11.89553937 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.101069 +IL,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.07187 +IL,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,38983.16742 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,43.30815354 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,29.18929809 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.02346E-05 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.131483353 +IL,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,288.778631 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,7435.193187 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.28442503 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.290200011 +IL,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,21.80694243 +IL,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.017038918 +IL,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.533106382 +IL,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21.52398331 +IL,PM2.5 Filterable,2A1_Cement-production,,TON,119.8675322 +IL,PM2.5 Filterable,2A2_Lime-production,,TON,0.688393 +IL,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,19983.94685 +IL,PM2.5 Filterable,2A6_Other-minerals,,TON,1950.781843 +IL,PM2.5 Filterable,2B_Chemicals-other,,TON,732.3625715 +IL,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,804.6117803 +IL,PM2.5 Filterable,2C3_Aluminum-production,,TON,65.88754901 +IL,PM2.5 Filterable,2C5_Lead-production,,TON,6.208674431 +IL,PM2.5 Filterable,2C6_Zinc-production,,TON,71.25211799 +IL,PM2.5 Filterable,2C7_Other-metal,,TON,217.0181137 +IL,PM2.5 Filterable,2C7a_Copper-production,,TON,39.72674653 +IL,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,30.31079129 +IL,PM2.5 Filterable,2D3d_Coating-application,,TON,135.7027425 +IL,PM2.5 Filterable,2D3e_Degreasing,,TON,0.04067285 +IL,PM2.5 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,12.00845 +IL,PM2.5 Filterable,2D3h_Printing,,TON,28.015318 +IL,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.219433819 +IL,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,74.27840633 +IL,PM2.5 Filterable,2H2_Biodiesel Production,,TON,0.108544 +IL,PM2.5 Filterable,2H2_Ethanol Production,,TON,9.801412 +IL,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1858.822382 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,340.5394509 +IL,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,52.17278058 +IL,PM2.5 Filterable,2I_Wood-processing,,TON,0.232913909 +IL,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,154.8788912 +IL,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2679.211273 +IL,PM2.5 Filterable,3Dc_Other-farm,,TON,76283.81536 +IL,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,214.3382742 +IL,PM2.5 Filterable,5C_Incineration,,TON,1790.702505 +IL,PM2.5 Filterable,5C_Incineration,biomass,TON,7.145339481 +IL,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.009126 +IL,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,363.6077463 +IL,PM2.5 Filterable,5C_Open-burning-residential,,TON,4343.733923 +IL,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,107.227138 +IL,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.6360591 +IL,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,3.276164905 +IL,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,5.053787982 +IL,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.001 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.939008 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2460.64043 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.16224 +IL,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,396.117158 +IL,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,998.7966734 +IL,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,2.483504 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,158.6739185 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,90.36256548 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.392313277 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,10.25126869 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,189.0585827 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,187.2243596 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,21.83107618 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.078187437 +IL,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1418.819794 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,44.59414937 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.101069 +IL,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.07187 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,857.6339039 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,76.65350664 +IL,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001307403 +IL,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,284.4747313 +IL,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,38983.16742 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,101.4748408 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1624.189861 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,26.99242271 +IL,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,113.5178079 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,149.7652978 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,23.48719459 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.162472518 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,956.9880402 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.52949212 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,873.2961314 +IL,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,40.46094975 +IL,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.30153909 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1084.812531 +IL,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.097620394 +IL,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,144.5571953 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,74.38882049 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,59.54075554 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.91714E-05 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.272803983 +IL,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,918.904757 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,171.4790575 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,98.51762461 +IL,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.283256215 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,58.42893795 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,875.0036046 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7785.439824 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.296175367 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.7799126 +IL,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,85.25466491 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1592.377687 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.36444971 +IL,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.791814044 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.88752709 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,201.6230663 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.32269576 +IL,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,81.76698777 +IL,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.004488102 +IL,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.615299198 +IL,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,37.24134979 +IL,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,135.7685522 +IL,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.689115 +IL,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,19983.94685 +IL,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2077.067967 +IL,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,732.9409065 +IL,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,804.6117803 +IL,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,65.88754901 +IL,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,6.208674431 +IL,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,71.25211799 +IL,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,217.0181137 +IL,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,39.72674653 +IL,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,30.31079129 +IL,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,135.7027425 +IL,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.04067285 +IL,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,12.00845 +IL,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,28.024231 +IL,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.219433819 +IL,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,74.27840633 +IL,PM2.5 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0.108544 +IL,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,34.803796 +IL,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5147.672945 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,340.5394509 +IL,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,52.17278058 +IL,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.232913909 +IL,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,154.8788912 +IL,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2679.211273 +IL,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,76283.81536 +IL,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,23.44307199 +IL,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,214.3382742 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1790.702505 +IL,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.145339481 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.009126 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,363.6077463 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4343.733923 +IL,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,107.227138 +IL,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.6360591 +IL,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.276164905 +IL,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.053787982 +IL,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.001 +IL,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,31.855088 +IL,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,54109.78362 +IL,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.0312 +IL,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,313.292871 +IL,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1904.871381 +IL,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.215919 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.610932548 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.60204231 +IL,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.251252482 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,4.379431863 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1229.991703 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,13072.41598 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,508.6752741 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.130976892 +IL,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,496.8663677 +IL,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0 +IL,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,114.267074 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.843352 +IL,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.168376 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,16.08450596 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.816041499 +IL,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.73691E-05 +IL,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1445.075328 +IL,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.203406801 +IL,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,422.0039502 +IL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.80141828 +IL,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,29.18668007 +IL,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.598440445 +IL,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.828683511 +IL,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.013265366 +IL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,71.07773313 +IL,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.554228583 +IL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,50.27366265 +IL,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.049700213 +IL,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.906902904 +IL,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,24.51367446 +IL,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.013528479 +IL,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,26.83638308 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1084.3985 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2517.020129 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.002285025 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.970562043 +IL,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,86.55100459 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.538378973 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6.479212396 +IL,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.101030254 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.086353593 +IL,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,17.35846683 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,229.0380258 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,65.92349411 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,14.90902466 +IL,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,118.9638626 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27.78142537 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.752628691 +IL,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.036044503 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.048171921 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.950200511 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.551078403 +IL,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.770499168 +IL,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +IL,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,1.660366 +IL,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +IL,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.974667452 +IL,Sulfur Dioxide,2A1_Cement-production,,TON,555.30845 +IL,Sulfur Dioxide,2A6_Other-minerals,,TON,8435.120688 +IL,Sulfur Dioxide,2B_Chemicals-other,,TON,658.723501 +IL,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1806.149929 +IL,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.02307 +IL,Sulfur Dioxide,2C5_Lead-production,,TON,1.518432 +IL,Sulfur Dioxide,2C6_Zinc-production,,TON,5.100801 +IL,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,12.472304 +IL,Sulfur Dioxide,2C7a_Copper-production,,TON,0.1752 +IL,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,70.5399 +IL,Sulfur Dioxide,2D3d_Coating-application,,TON,1.034905 +IL,Sulfur Dioxide,2D3h_Printing,,TON,0.000906 +IL,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,2.486139 +IL,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.003 +IL,Sulfur Dioxide,2H2_Biodiesel Production,,TON,0.1 +IL,Sulfur Dioxide,2H2_Ethanol Production,,TON,1.303954 +IL,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1334.353314 +IL,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,7.74209 +IL,Sulfur Dioxide,3Dc_Other-farm,,TON,3.674981 +IL,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.245996004 +IL,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,903.0597 +IL,Sulfur Dioxide,5C_Incineration,,TON,1402.937352 +IL,Sulfur Dioxide,5C_Incineration,biomass,TON,104.149011 +IL,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,86.40953417 +IL,Sulfur Dioxide,5C_Open-burning-residential,,TON,124.8199409 +IL,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,6.973654119 +IL,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,141.921507 +IL,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,86.70935 +IL,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.003643 +IL,Volatile Organic Compounds,11C_Other-natural,,TON,218395.1451 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.79154947 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,937.9874449 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.000064 +IL,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,106.8805063 +IL,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,478.2497976 +IL,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,120.7826927 +IL,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2613.188614 +IL,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,0 +IL,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,2.184918 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,200.2374227 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,567.3037778 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,59.91721322 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.597986092 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,140.4230779 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,36.83762805 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.524665393 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.013619189 +IL,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1124.882592 +IL,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0 +IL,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,78.73203566 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2233772 +IL,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.029645 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1125.977741 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,719.0434573 +IL,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.132303455 +IL,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,3022.444759 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,777.1104657 +IL,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,47317.38949 +IL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,170.7541035 +IL,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3524.373375 +IL,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,325.624938 +IL,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,508.3899738 +IL,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.433187492 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1505.621555 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,35.24794982 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1729.164904 +IL,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,801.089575 +IL,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2091.665774 +IL,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1865.069249 +IL,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.493825289 +IL,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,269.3716737 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.7457531 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.986003838 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.4387E-06 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.046729398 +IL,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,683.0891768 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,241.5006747 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2749.360432 +IL,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,51.71545354 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,85.2900311 +IL,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,14371.92724 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7687.872651 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.083249957 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.244856248 +IL,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1090.34717 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1841.477679 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,405.7535873 +IL,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,7.522417462 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.71680859 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,7599.606567 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.00969424 +IL,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6468.748675 +IL,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IL,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,1273.890673 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,554.23639 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,849.3866882 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,9107.210132 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,8529.53153 +IL,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1155.513506 +IL,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,897.7403746 +IL,Volatile Organic Compounds,2A1_Cement-production,,TON,55.87179415 +IL,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.00251 +IL,Volatile Organic Compounds,2A6_Other-minerals,,TON,425.9115924 +IL,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +IL,Volatile Organic Compounds,2B_Chemicals-other,,TON,3744.40001 +IL,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,431.7386418 +IL,Volatile Organic Compounds,2C3_Aluminum-production,,TON,61.73011209 +IL,Volatile Organic Compounds,2C5_Lead-production,,TON,0.517178 +IL,Volatile Organic Compounds,2C6_Zinc-production,,TON,10.628084 +IL,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,503.1577454 +IL,Volatile Organic Compounds,2C7a_Copper-production,,TON,8.5536016 +IL,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,53960.52633 +IL,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,54.001749 +IL,Volatile Organic Compounds,2D3d_Coating-application,,TON,24137.4821 +IL,Volatile Organic Compounds,2D3e_Degreasing,,TON,10477.73754 +IL,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,175.5231439 +IL,Volatile Organic Compounds,2D3h_Printing,,TON,5798.778629 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,320.0793181 +IL,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,204.5316257 +IL,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,28.835857 +IL,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,0.9374572 +IL,Volatile Organic Compounds,2H2_Ethanol Production,,TON,9.5330287 +IL,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,7045.678703 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1523.62707 +IL,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,8.168251732 +IL,Volatile Organic Compounds,2I_Wood-processing,,TON,0.0356 +IL,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,327.2086797 +IL,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,720.952689 +IL,Volatile Organic Compounds,3B2_Manure-sheep,,TON,16.34045563 +IL,Volatile Organic Compounds,3B3_Manure-swine,,TON,4644.525631 +IL,Volatile Organic Compounds,3B4_Manure-other,,TON,52.84741223 +IL,Volatile Organic Compounds,3B4_Manure-poultry,,TON,133.4212116 +IL,Volatile Organic Compounds,3B4d_Manure-goats,,TON,16.6023909 +IL,Volatile Organic Compounds,3Dc_Other-farm,,TON,16.996803 +IL,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,22619.40646 +IL,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,28.473029 +IL,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,224.1226638 +IL,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1933.42602 +IL,Volatile Organic Compounds,5C_Incineration,,TON,1085.286106 +IL,Volatile Organic Compounds,5C_Incineration,biomass,TON,2.44934919 +IL,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.06104 +IL,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,321.7276931 +IL,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1068.458747 +IL,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,135.4387439 +IL,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,322.6930348 +IL,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,261.0904138 +IL,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,23.1578384 +IL,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,3.413734285 +IN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.079217685 +IN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,12.20313236 +IN,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.1716 +IN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,133.318093 +IN,Ammonia,1A1b_Pet-refining,natural_gas,TON,28.1945665 +IN,Ammonia,1A1c_Coke-ovens,natural_gas,TON,0 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.323103442 +IN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.163353688 +IN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,11.67849176 +IN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.490257104 +IN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.035313591 +IN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.680001509 +IN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.113185615 +IN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,545.7537169 +IN,Ammonia,1A2c_Chemicals,natural_gas,TON,1.50571852 +IN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,19.02804201 +IN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.75609004 +IN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,24.43939227 +IN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2241.096865 +IN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.7816934 +IN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,103.8614642 +IN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,11.3069433 +IN,Ammonia,1A3biii_Road-bus,light_oil,TON,2.657629292 +IN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.030535226 +IN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,145.1841449 +IN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,22.73024171 +IN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,83.80645321 +IN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.745238266 +IN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,29.04333372 +IN,Ammonia,1A3c_Rail,diesel_oil,TON,9.73319119 +IN,Ammonia,1A3c_Rail,light_oil,TON,0.004821901 +IN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.361447493 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.335637934 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.645835874 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.01723185 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.224119146 +IN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.66103543 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.206264175 +IN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.498234653 +IN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.481126536 +IN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.999987922 +IN,Ammonia,1A4bi_Residential-stationary,biomass,TON,404.490099 +IN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,3.318000032 +IN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.85049997 +IN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1241.29646 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.49092537 +IN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.431846398 +IN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0230139 +IN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.845089906 +IN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.195475454 +IN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.129333692 +IN,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Ammonia,2A1_Cement-production,,TON,77.7089 +IN,Ammonia,2A6_Other-minerals,,TON,104.51524 +IN,Ammonia,2B_Chemicals-other,,TON,2.55311351 +IN,Ammonia,2C_Iron-steel-alloy,,TON,7.15047718 +IN,Ammonia,2C3_Aluminum-production,,TON,2.29352 +IN,Ammonia,2H2_Ethanol Production,,TON,1.44 +IN,Ammonia,2H2_Food-and-beverage,,TON,1.141612 +IN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,287.7443552 +IN,Ammonia,3B1a_Cattle-dairy,,TON,7811.699734 +IN,Ammonia,3B1b_Cattle-non-dairy,,TON,3008.408117 +IN,Ammonia,3B2_Manure-sheep,,TON,193.114478 +IN,Ammonia,3B3_Manure-swine,,TON,42942.2914 +IN,Ammonia,3B4_Manure-other,,TON,1604.94468 +IN,Ammonia,3B4_Manure-poultry,,TON,15911.66309 +IN,Ammonia,3B4d_Manure-goats,,TON,212.8775454 +IN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14763.1 +IN,Ammonia,3F_Ag-res-on-field,,TON,9.622 +IN,Ammonia,5A_Solid-waste-disposal,,TON,8.19 +IN,Ammonia,5B_Compost-biogas,Other_Fuel,TON,146.75985 +IN,Ammonia,5C_Incineration,biomass,TON,0.097 +IN,Ammonia,5D1_Wastewater-domestic,,TON,33.111422 +IN,Ammonia,5D2_Wastewater-industrial,biomass,TON,1.4319353 +IN,Carbon Dioxide,1A1a_Public-Electricity,hard_coal,TON,3530619.9 +IN,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,34535.01 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,532808.1295 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,664352.4999 +IN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,37888.04746 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2344065.162 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,61491.046 +IN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,13.60756307 +IN,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,559953.8555 +IN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,806601.9798 +IN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,31135239.53 +IN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,153553.8009 +IN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1677183.913 +IN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,687050.5651 +IN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,77820.72192 +IN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1087.57627 +IN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7940695.933 +IN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,519290.6959 +IN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5041150.898 +IN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,204228.6938 +IN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,253649.8078 +IN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6090.581023 +IN,Carbon Dioxide,1A3c_Rail,light_oil,TON,375.1658237 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,148452.0365 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,203531.4644 +IN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9017.448723 +IN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,59215.07181 +IN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,522812.8866 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2276592.552 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,32616.92814 +IN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4717.498738 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2822.6333 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,130801.4844 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24069.16266 +IN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,81514.42527 +IN,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,135559245.8 +IN,Carbon Monoxide,11C_Other-natural,,TON,35843.5556 +IN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,24.66514261 +IN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8491.90969 +IN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.0725 +IN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1397.619227 +IN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,457.1811843 +IN,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,133.53197 +IN,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,4.445028 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,748.5081762 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15057.66839 +IN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,554.0599821 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1063.976128 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,348.3818435 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,65.41593386 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.52828723 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,5.654141016 +IN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,41975.59181 +IN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,912.81926 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5398.455549 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,12549.96572 +IN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.668247128 +IN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7957.048936 +IN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7918.044729 +IN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,484554.2727 +IN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1050.299862 +IN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26918.6342 +IN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1553.967937 +IN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4010.143787 +IN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,6.1015824 +IN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8147.166948 +IN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,9049.034841 +IN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4117.513563 +IN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4838.887206 +IN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10210.14312 +IN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3138.088482 +IN,Carbon Monoxide,1A3c_Rail,light_oil,TON,84.21126409 +IN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,101.261991 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,520.2765807 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.90265326 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,74.9154935 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.400744602 +IN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3023.936385 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,501.3618794 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,41992.24377 +IN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,176.2788028 +IN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,178.6877175 +IN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,118360.1779 +IN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,54555.05228 +IN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,16.58999966 +IN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.252499995 +IN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2708.280187 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6965.481918 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6646.464479 +IN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,61.79759145 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.6197525 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,20576.66205 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,46.88328865 +IN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8843.746665 +IN,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2157.947947 +IN,Carbon Monoxide,2A1_Cement-production,,TON,2949.0076 +IN,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,465.06807 +IN,Carbon Monoxide,2A6_Other-minerals,,TON,5700.064875 +IN,Carbon Monoxide,2B_Chemicals-other,,TON,326.1014075 +IN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,177734.5959 +IN,Carbon Monoxide,2C3_Aluminum-production,,TON,167.250758 +IN,Carbon Monoxide,2C5_Lead-production,,TON,145.704438 +IN,Carbon Monoxide,2C7_Other-metal,,TON,71.2181163 +IN,Carbon Monoxide,2D3d_Coating-application,,TON,394.1558 +IN,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,14.771033 +IN,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.2890511 +IN,Carbon Monoxide,2H2_Ethanol Production,,TON,63.629369 +IN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1320.235135 +IN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,103.8585723 +IN,Carbon Monoxide,3F_Ag-res-on-field,,TON,68.26 +IN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,222.8512363 +IN,Carbon Monoxide,5C_Incineration,biomass,TON,17.67367353 +IN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,21276.23705 +IN,Carbon Monoxide,5C_Open-burning-residential,,TON,7644.38082 +IN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,544.4391716 +IN,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,2.1326 +IN,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.70407009 +IN,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,71.20594265 +IN,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,232.739028 +IN,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,52.00396169 +IN,Methane,1A2g_Construction_and_Mining,light_oil,TON,44.69192806 +IN,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.450716783 +IN,Methane,1A3bii_Road-LDV,diesel_oil,TON,47.1664597 +IN,Methane,1A3bii_Road-LDV,light_oil,TON,1230.149706 +IN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.12945258 +IN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.45383235 +IN,Methane,1A3biii_Road-bus,diesel_oil,TON,26.76332757 +IN,Methane,1A3biii_Road-bus,light_oil,TON,12.37290418 +IN,Methane,1A3biii_Road-bus,natural_gas,TON,4.4663325 +IN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,516.6393238 +IN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,16.13508128 +IN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,174.7207126 +IN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.07156895 +IN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.25399376 +IN,Methane,1A3c_Rail,diesel_oil,TON,0.274496084 +IN,Methane,1A3c_Rail,light_oil,TON,0.249265916 +IN,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.898892515 +IN,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,138.1297523 +IN,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,113.6473027 +IN,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.989331525 +IN,Methane,1A4bi_Residential-mobile,light_oil,TON,452.3539818 +IN,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,68.28102138 +IN,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,28.20138468 +IN,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,25.14460604 +IN,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.116352361 +IN,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,141.173156 +IN,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.963101911 +IN,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,77.33576552 +IN,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,106133.8471 +IN,Nitrogen Oxides,11C_Other-natural,,TON,25091.66471 +IN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,110.2585365 +IN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,59528.6708 +IN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,7.561125 +IN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,4012.911173 +IN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,932.1978306 +IN,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,3681.588 +IN,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.816686 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2079.281226 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1482.10511 +IN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,94.9605747 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,507.2933179 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1643.296227 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1074.759994 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,57.87461579 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,12.15297619 +IN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,26125.76311 +IN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,234.5965 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10355.66287 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,157.4035037 +IN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.125498903 +IN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1649.219535 +IN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2763.481373 +IN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,51147.31364 +IN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,464.5185925 +IN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2827.747604 +IN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4005.480547 +IN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,404.6774786 +IN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.7962329 +IN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24035.00142 +IN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,941.8126366 +IN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10903.00597 +IN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,385.9336279 +IN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,496.5743742 +IN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16640.63718 +IN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.874191155 +IN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,728.2396888 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,190.7680808 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,107.1996623 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,224.782942 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.602978346 +IN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3797.167604 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,985.1689522 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,542.4793325 +IN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,43.92966447 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,452.2228481 +IN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1100.037975 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,937.2644108 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,59.72399925 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,15.30900038 +IN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6636.587834 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16637.22306 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,168.8932691 +IN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.89162235 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.3865621 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,279.5841997 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,219.6927811 +IN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,644.0975904 +IN,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1693.718311 +IN,Nitrogen Oxides,2A1_Cement-production,,TON,4610.4998 +IN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,888.7339 +IN,Nitrogen Oxides,2A6_Other-minerals,,TON,1507.727695 +IN,Nitrogen Oxides,2B_Chemicals-other,,TON,285.6720095 +IN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,4588.56151 +IN,Nitrogen Oxides,2C3_Aluminum-production,,TON,44.794358 +IN,Nitrogen Oxides,2C5_Lead-production,,TON,76.0042 +IN,Nitrogen Oxides,2C7_Other-metal,,TON,180.46796 +IN,Nitrogen Oxides,2D3d_Coating-application,,TON,7.277 +IN,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,4.797088 +IN,Nitrogen Oxides,2H2_Ethanol Production,,TON,27.105873 +IN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,38.624282 +IN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,54.13596 +IN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,2.133 +IN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,33.05 +IN,Nitrogen Oxides,5C_Incineration,biomass,TON,110.6142654 +IN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,516.4135123 +IN,Nitrogen Oxides,5C_Open-burning-residential,,TON,539.603344 +IN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,30.13859692 +IN,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,70.550154 +IN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.470295422 +IN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,995.854086 +IN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.537555089 +IN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,64.34868184 +IN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.726453798 +IN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.259116975 +IN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.099186412 +IN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11.53683793 +IN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12.739389 +IN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.173716396 +IN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.323440299 +IN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.354281894 +IN,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1362.299383 +IN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.335 +IN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.673146764 +IN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1618.22272 +IN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.29086 +IN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,180.2874589 +IN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,376.4256388 +IN,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,30.86664 +IN,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.9730988 +IN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.009 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,888.1793334 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,109.0868651 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,41.12455284 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.99982898 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.197193688 +IN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1719.036575 +IN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,41.50588045 +IN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,19397.71685 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,433.5637934 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.25313021 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,28.3897043 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.302560834 +IN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,33.64289081 +IN,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,7222.800531 +IN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,3.583440101 +IN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.917699997 +IN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,13.54429933 +IN,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.46031163 +IN,PM10 Filterable,2A1_Cement-production,,TON,1060.783583 +IN,PM10 Filterable,2A2_Lime-production,,TON,84.38342342 +IN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21689.32085 +IN,PM10 Filterable,2A6_Other-minerals,,TON,11801.63495 +IN,PM10 Filterable,2B_Chemicals-other,,TON,240.9975989 +IN,PM10 Filterable,2C_Iron-steel-alloy,,TON,4977.779297 +IN,PM10 Filterable,2C3_Aluminum-production,,TON,136.0089039 +IN,PM10 Filterable,2C5_Lead-production,,TON,11.989 +IN,PM10 Filterable,2C7_Other-metal,,TON,842.2426981 +IN,PM10 Filterable,2C7a_Copper-production,,TON,10.9555 +IN,PM10 Filterable,2D3d_Coating-application,,TON,287.1305334 +IN,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,11.20997193 +IN,PM10 Filterable,2H1_Pulp-and-paper,,TON,123.9976514 +IN,PM10 Filterable,2H2_Ethanol Production,,TON,15.9245851 +IN,PM10 Filterable,2H2_Food-and-beverage,,TON,946.0921416 +IN,PM10 Filterable,2H3_Other-industrial-processes,,TON,303.3210513 +IN,PM10 Filterable,2I_Wood-processing,,TON,0.03002933 +IN,PM10 Filterable,3B1a_Cattle-dairy,,TON,1391.496245 +IN,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,6591.015353 +IN,PM10 Filterable,3Dc_Other-farm,,TON,68510.78977 +IN,PM10 Filterable,5A_Solid-waste-disposal,,TON,20.833 +IN,PM10 Filterable,5C_Incineration,biomass,TON,14.29682965 +IN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2633.709004 +IN,PM10 Filterable,5C_Open-burning-residential,,TON,2885.151635 +IN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,184.720434 +IN,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,6.276178 +IN,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.00000129 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.335 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.22065167 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,7136.048614 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.61261 +IN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,487.5015476 +IN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,713.6109243 +IN,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,75.24906 +IN,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.5071565 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,120.6834146 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,73.20510079 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.559557596 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,928.585867 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,117.5052002 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,64.22496454 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,14.14909817 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.458520501 +IN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4404.860948 +IN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,47.186286 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,880.9363078 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,97.7759784 +IN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001620263 +IN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,130.2031441 +IN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19397.71685 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,166.5966065 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3549.457168 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,32.44475902 +IN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,185.4344053 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,327.8682088 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,18.5540658 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.21199884 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1618.73398 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,63.12071807 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,838.5480609 +IN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,26.24565708 +IN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.91154413 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,487.988306 +IN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.047752714 +IN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,19.61788937 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,448.3049324 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.228182289 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,45.915255 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.655548455 +IN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,87.4461255 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,81.4031111 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,53.20481461 +IN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.140075592 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,30.27660023 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,503.7512114 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7540.597232 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.896840126 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.024399988 +IN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,35.20068508 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1185.982967 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.498050045 +IN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.580451817 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.04157563 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,120.2548777 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.067879484 +IN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,30.40648514 +IN,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,33.37700913 +IN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1130.344467 +IN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,144.7392307 +IN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21689.32085 +IN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12122.18899 +IN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,282.5694982 +IN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,6604.695364 +IN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,208.6922519 +IN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,29.395985 +IN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,884.2494055 +IN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,10.9555 +IN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,307.7313071 +IN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,11.20997193 +IN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,129.305553 +IN,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,26.3013237 +IN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3621.272456 +IN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,315.8031367 +IN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.03002933 +IN,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1391.496245 +IN,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,6591.015353 +IN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,68525.3023 +IN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,10.846 +IN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,24.837656 +IN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.5588202 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2633.709004 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2885.151635 +IN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,184.720434 +IN,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,6.29386571 +IN,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.00000129 +IN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.069 +IN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.641657427 +IN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,900.3846017 +IN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.49292 +IN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,180.2826589 +IN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,275.1154482 +IN,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,24.403474 +IN,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.8074663 +IN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.009 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,760.4732325 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,99.93676564 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,36.93154433 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.176150381 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.087685427 +IN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1565.031289 +IN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,41.50588045 +IN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4849.42938 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,372.8648673 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.031978623 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,8.5371036 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.232523615 +IN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,30.48472265 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,7136.189791 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.753939911 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.705599998 +IN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.449364788 +IN,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10.46031163 +IN,PM2.5 Filterable,2A1_Cement-production,,TON,515.154009 +IN,PM2.5 Filterable,2A2_Lime-production,,TON,74.53562684 +IN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2169.208085 +IN,PM2.5 Filterable,2A6_Other-minerals,,TON,2264.308332 +IN,PM2.5 Filterable,2B_Chemicals-other,,TON,185.9635073 +IN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,3550.721934 +IN,PM2.5 Filterable,2C3_Aluminum-production,,TON,126.3789902 +IN,PM2.5 Filterable,2C5_Lead-production,,TON,6.604 +IN,PM2.5 Filterable,2C7_Other-metal,,TON,295.756553 +IN,PM2.5 Filterable,2C7a_Copper-production,,TON,2.686635 +IN,PM2.5 Filterable,2D3d_Coating-application,,TON,275.9894385 +IN,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,9.98562095 +IN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,102.3803132 +IN,PM2.5 Filterable,2H2_Ethanol Production,,TON,14.6045851 +IN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,339.1835866 +IN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,199.5446974 +IN,PM2.5 Filterable,2I_Wood-processing,,TON,0.00983741 +IN,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,289.2213504 +IN,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1369.936657 +IN,PM2.5 Filterable,3Dc_Other-farm,,TON,12777.13226 +IN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,11.83537 +IN,PM2.5 Filterable,5C_Incineration,biomass,TON,13.10106533 +IN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2401.322748 +IN,PM2.5 Filterable,5C_Open-burning-residential,,TON,2642.191473 +IN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,142.4291772 +IN,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,3.587256 +IN,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.0000002 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.069 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.189161863 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6418.210372 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.81467 +IN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,487.4967476 +IN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,612.3007337 +IN,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,68.78589 +IN,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.341524 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,117.061894 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,72.12929779 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.559557596 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,800.6646713 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,108.3110328 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,60.02473021 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,10.33021084 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.349291162 +IN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4251.116962 +IN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,47.186286 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,854.5082089 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,90.00154017 +IN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001620263 +IN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,109.5477669 +IN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4849.42938 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,119.7962271 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1267.237077 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22.97250246 +IN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,65.13257832 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,224.7655062 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,8.628970344 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.054971977 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1025.717673 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,19.25585758 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,481.1699594 +IN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.57520863 +IN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.0996305 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,473.3431875 +IN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.044014924 +IN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18.77966437 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,387.6060333 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.007030762 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,26.0626545 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.588312687 +IN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,84.2879578 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,78.96100598 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,49.06410094 +IN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.140075592 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.36830242 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,463.4739321 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7453.986493 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,7.067339927 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.812300096 +IN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,29.10575024 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1150.403486 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.898635632 +IN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.580451817 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.95032845 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,110.6358547 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.915843201 +IN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,27.97396519 +IN,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +IN,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,33.37700913 +IN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,584.7148863 +IN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,134.8914341 +IN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2169.208085 +IN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2584.862365 +IN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,227.5354073 +IN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5177.63801 +IN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,199.0621982 +IN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,24.010985 +IN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,337.7632573 +IN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.686635 +IN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,296.5902122 +IN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,9.98562095 +IN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,107.6882147 +IN,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,24.9813237 +IN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3014.363759 +IN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,212.0263935 +IN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.00983741 +IN,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,289.2213504 +IN,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1369.936657 +IN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,12791.64478 +IN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,7.725 +IN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,15.840026 +IN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.36305588 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2401.322748 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2642.191473 +IN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,142.4291772 +IN,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.60494371 +IN,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0000002 +IN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,19.74608318 +IN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,63854.28953 +IN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,33.6765 +IN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,241.193022 +IN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,189.053059 +IN,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,4119.45218 +IN,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.00985835 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.103823364 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.832557465 +IN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.212370033 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,97.54012302 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,121.2336213 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1727.272251 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,182.7697483 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,11.13996972 +IN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,12460.37406 +IN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,1.7821978 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,18.63804584 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.944263561 +IN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.61295E-05 +IN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,242.9541394 +IN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.015579853 +IN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,380.8296398 +IN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.32306864 +IN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.61413074 +IN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.951306183 +IN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.959990644 +IN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00575814 +IN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,67.30608696 +IN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.439398486 +IN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,42.58467311 +IN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.422332231 +IN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.100472808 +IN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,10.96709184 +IN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.006068434 +IN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11.89358143 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,21.67818931 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.616251039 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,979.90153 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.29857528 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.252953864 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.181612635 +IN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.050523147 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.516849165 +IN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.565482517 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,198.6665658 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,23.55780024 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.143776501 +IN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,40.61840418 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19.69356366 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.535844484 +IN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.026444066 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.02471729 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.144164479 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.221261275 +IN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.336905485 +IN,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.007 +IN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,71.36681181 +IN,Sulfur Dioxide,2A1_Cement-production,,TON,1207.77242 +IN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,90.6418 +IN,Sulfur Dioxide,2A6_Other-minerals,,TON,1451.794517 +IN,Sulfur Dioxide,2B_Chemicals-other,,TON,1029.007804 +IN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,11249.15853 +IN,Sulfur Dioxide,2C3_Aluminum-production,,TON,46.6178861 +IN,Sulfur Dioxide,2C5_Lead-production,,TON,32.267206 +IN,Sulfur Dioxide,2C7_Other-metal,,TON,35.969399 +IN,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0015 +IN,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,7.395511 +IN,Sulfur Dioxide,2H2_Ethanol Production,,TON,1.01818465 +IN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,277.253028 +IN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.6111329 +IN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.5636 +IN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,7.34 +IN,Sulfur Dioxide,5C_Incineration,biomass,TON,3.108835163 +IN,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,214.3116102 +IN,Sulfur Dioxide,5C_Open-burning-residential,,TON,89.9338948 +IN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.69440854 +IN,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,1.495886 +IN,Volatile Organic Compounds,11C_Other-natural,,TON,177606.3497 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.58644926 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,982.586914 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.06006 +IN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,191.3760654 +IN,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,11.44476994 +IN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,839.3366526 +IN,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,6.857471 +IN,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.1788033 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,133.5316058 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,449.1509903 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,50.30946191 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,52.57637671 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,110.5777889 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.565093416 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.442355625 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.746592583 +IN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1380.347481 +IN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,25.1804969 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,942.5366937 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,856.7183463 +IN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.097428101 +IN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,743.629342 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,893.8934658 +IN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,38567.62257 +IN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,127.886014 +IN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1995.672715 +IN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,360.3788457 +IN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,294.6799984 +IN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.55467724 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1933.421754 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,395.1389546 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,802.1666351 +IN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,235.3180929 +IN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1785.404408 +IN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,805.0685435 +IN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.052762951 +IN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,48.59828969 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,14.74116917 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.843587677 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.69237 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.095250631 +IN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,207.0735319 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,110.3896651 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1430.25011 +IN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.56628527 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,42.64097771 +IN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7474.998188 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7362.325753 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,2.365734037 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.596399987 +IN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,372.3377847 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1368.919439 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,280.8290676 +IN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.435321751 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.37236104 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,4115.533711 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.60679425 +IN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2253.362123 +IN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +IN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,550.6316111 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1282.569857 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,922.6186886 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8690.720673 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9319.651591 +IN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,53.75384725 +IN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2310.273186 +IN,Volatile Organic Compounds,2A1_Cement-production,,TON,98.680404 +IN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,5.1453232 +IN,Volatile Organic Compounds,2A6_Other-minerals,,TON,331.8149856 +IN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,5.986423679 +IN,Volatile Organic Compounds,2B_Chemicals-other,,TON,717.0318306 +IN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,2372.660277 +IN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,774.8828369 +IN,Volatile Organic Compounds,2C5_Lead-production,,TON,2.1712 +IN,Volatile Organic Compounds,2C7_Other-metal,,TON,154.3885177 +IN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,29193.50902 +IN,Volatile Organic Compounds,2D3d_Coating-application,,TON,34224.20742 +IN,Volatile Organic Compounds,2D3e_Degreasing,,TON,7745.377536 +IN,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,17.7072 +IN,Volatile Organic Compounds,2D3h_Printing,,TON,19245.07876 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,196.9098904 +IN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2842.222497 +IN,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,245.532328 +IN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,99.0808 +IN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4925.541666 +IN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2079.44007 +IN,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,624.9360068 +IN,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,240.6726468 +IN,Volatile Organic Compounds,3B2_Manure-sheep,,TON,15.44915834 +IN,Volatile Organic Compounds,3B3_Manure-swine,,TON,3435.383397 +IN,Volatile Organic Compounds,3B4_Manure-other,,TON,128.3955768 +IN,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1272.932998 +IN,Volatile Organic Compounds,3B4d_Manure-goats,,TON,17.03020646 +IN,Volatile Organic Compounds,3Dc_Other-farm,,TON,10.74797 +IN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4706.725766 +IN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,8.246 +IN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,81.27013 +IN,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1038.43747 +IN,Volatile Organic Compounds,5C_Incineration,biomass,TON,15.21535853 +IN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1458.868124 +IN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,562.52866 +IN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,136.1097956 +IN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,144.2316289 +IN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,9.04333 +KS,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.6871296 +KS,Ammonia,1A1a_Public-Electricity,hard_coal,TON,137.1580198 +KS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,8.940935 +KS,Ammonia,1A1b_Pet-refining,natural_gas,TON,93.37092923 +KS,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.0205555 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.236169327 +KS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.298349567 +KS,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +KS,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.212757148 +KS,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.256142879 +KS,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.058569563 +KS,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.021589956 +KS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,223.4773588 +KS,Ammonia,1A2c_Chemicals,natural_gas,TON,0.1608566 +KS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.830145336 +KS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.146762954 +KS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,14.9661565 +KS,Ammonia,1A3bii_Road-LDV,light_oil,TON,882.9603519 +KS,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.784645857 +KS,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.29470577 +KS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.249333276 +KS,Ammonia,1A3biii_Road-bus,light_oil,TON,0.814412288 +KS,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000406142 +KS,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,69.64532825 +KS,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,4.736434064 +KS,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,44.82763673 +KS,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.675375005 +KS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.51343901 +KS,Ammonia,1A3c_Rail,diesel_oil,TON,14.0743346 +KS,Ammonia,1A3c_Rail,light_oil,TON,0.00662294 +KS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.62005E-07 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.530306173 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.22162281 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.026704042 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.639577497 +KS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.27212724 +KS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.216991926 +KS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.03625167 +KS,Ammonia,1A4bi_Residential-stationary,biomass,TON,151.0701265 +KS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.021 +KS,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.182249998 +KS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,546.0762503 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.86057498 +KS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.45470997 +KS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010092604 +KS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.504086273 +KS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.09830177 +KS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.639836664 +KS,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.001457796 +KS,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,15.31 +KS,Ammonia,2A6_Other-minerals,,TON,107.3247215 +KS,Ammonia,2B_Chemicals-other,,TON,1046.151136 +KS,Ammonia,2C_Iron-steel-alloy,,TON,1.71 +KS,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.00045286 +KS,Ammonia,2D3d_Coating-application,,TON,0.05437118 +KS,Ammonia,2D3h_Printing,,TON,0.003584 +KS,Ammonia,2H2_Ethanol Production,,TON,0 +KS,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,12.9937432 +KS,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,178.17325 +KS,Ammonia,3B1a_Cattle-dairy,,TON,8729.099206 +KS,Ammonia,3B1b_Cattle-non-dairy,,TON,70730.35857 +KS,Ammonia,3B2_Manure-sheep,,TON,252.5343224 +KS,Ammonia,3B3_Manure-swine,,TON,27420.71053 +KS,Ammonia,3B4_Manure-other,,TON,850.1556675 +KS,Ammonia,3B4_Manure-poultry,,TON,957.2769975 +KS,Ammonia,3B4d_Manure-goats,,TON,247.8280199 +KS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,42828.6 +KS,Ammonia,3Dc_Other-farm,,TON,2.10035 +KS,Ammonia,3F_Ag-res-on-field,,TON,4102.922 +KS,Ammonia,5B_Compost-biogas,Other_Fuel,TON,46.388762 +KS,Ammonia,5D1_Wastewater-domestic,,TON,16.0006915 +KS,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,1619.745 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,152344.9632 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,169709.0804 +KS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9671.938754 +KS,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.000208 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,594905.4034 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,11926.73268 +KS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.87574891 +KS,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,72434.09456 +KS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,465598.1783 +KS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,11691305.51 +KS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,84347.15531 +KS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,818024.633 +KS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,69063.00979 +KS,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,22951.8093 +KS,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,16.0999474 +KS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4254766.62 +KS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,108761.6157 +KS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2850993.551 +KS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,68105.43318 +KS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,105311.0716 +KS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,8315.139949 +KS,Carbon Dioxide,1A3c_Rail,light_oil,TON,516.017708 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,78692.14687 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,103617.8555 +KS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4574.283519 +KS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,26709.85005 +KS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,226710.8837 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2321697.361 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,34326.73567 +KS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4986.751214 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1237.88283 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,36325.67151 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12105.27516 +KS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46378.89452 +KS,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,35122433.68 +KS,Carbon Monoxide,11C_Other-natural,,TON,76297.0596 +KS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,12.3906749 +KS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,13200.8997 +KS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,674.1420774 +KS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1333.764363 +KS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,197.9656243 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,222.5227155 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3916.42925 +KS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,147.5122643 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,39.7146257 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,203.9440964 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,158.3567941 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.271712738 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.442705638 +KS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,11726.0697 +KS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,27.8721111 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1711.965665 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2433.970433 +KS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.062505534 +KS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,6863.517048 +KS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4873.176004 +KS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,213632.1611 +KS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,628.8631122 +KS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13950.39088 +KS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,174.9196564 +KS,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1492.226839 +KS,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.171976507 +KS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3453.13067 +KS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1889.716677 +KS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3002.601606 +KS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1839.648553 +KS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4307.166756 +KS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,4531.921228 +KS,Carbon Monoxide,1A3c_Rail,light_oil,TON,116.342448 +KS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0001877 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,184.8571295 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.352517769 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1251.918424 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,287.2864535 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,21546.93953 +KS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,93.68814832 +KS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,76.83819934 +KS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,51541.37921 +KS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,19300.16588 +KS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.104999999 +KS,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.911250013 +KS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1222.006414 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7965.493849 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7366.295109 +KS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,68.33294494 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.0080729 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,7510.366395 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.03253415 +KS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5014.065234 +KS,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,30306.78974 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,13.24017065 +KS,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,65.84156185 +KS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,46558.52976 +KS,Carbon Monoxide,2A6_Other-minerals,,TON,3108.583271 +KS,Carbon Monoxide,2B_Chemicals-other,,TON,1910.831431 +KS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,458.95661 +KS,Carbon Monoxide,2C5_Lead-production,,TON,2.45 +KS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,15.48413 +KS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,5.89116 +KS,Carbon Monoxide,2D3d_Coating-application,,TON,6.811224 +KS,Carbon Monoxide,2D3h_Printing,,TON,0.09408 +KS,Carbon Monoxide,2H2_Ethanol Production,,TON,98.112888 +KS,Carbon Monoxide,2H2_Food-and-beverage,,TON,541.4889387 +KS,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.468 +KS,Carbon Monoxide,3Dc_Other-farm,,TON,5.16302 +KS,Carbon Monoxide,3F_Ag-res-on-field,,TON,20539.95 +KS,Carbon Monoxide,5A_Solid-waste-disposal,,TON,363.836621 +KS,Carbon Monoxide,5C_Incineration,,TON,0.021749079 +KS,Carbon Monoxide,5C_Incineration,biomass,TON,7.718352841 +KS,Carbon Monoxide,5C_Open-burning-commercial,,TON,7.44 +KS,Carbon Monoxide,5C_Open-burning-dump,,TON,0.45167 +KS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,6698.092274 +KS,Carbon Monoxide,5C_Open-burning-residential,,TON,3149.638093 +KS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,95.5278406 +KS,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.275822911 +KS,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.83920465 +KS,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,62.25646847 +KS,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,15.69160252 +KS,Methane,1A2g_Construction_and_Mining,light_oil,TON,8.560069914 +KS,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.036648676 +KS,Methane,1A3bii_Road-LDV,diesel_oil,TON,27.88831946 +KS,Methane,1A3bii_Road-LDV,light_oil,TON,575.8365793 +KS,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.441758491 +KS,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,45.88630998 +KS,Methane,1A3biii_Road-bus,diesel_oil,TON,2.69247149 +KS,Methane,1A3biii_Road-bus,light_oil,TON,5.028082788 +KS,Methane,1A3biii_Road-bus,natural_gas,TON,0.102632503 +KS,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,218.5068123 +KS,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.32043484 +KS,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,67.36293842 +KS,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.108192448 +KS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.528475473 +KS,Methane,1A3c_Rail,diesel_oil,TON,0.375603237 +KS,Methane,1A3c_Rail,light_oil,TON,0.339548452 +KS,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.667980058 +KS,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,70.1914081 +KS,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,56.40032561 +KS,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.909400563 +KS,Methane,1A4bi_Residential-mobile,light_oil,TON,196.583285 +KS,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,67.54160309 +KS,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,32.40676016 +KS,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,27.38983562 +KS,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.051220343 +KS,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,43.95850207 +KS,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.338596435 +KS,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,45.55729955 +KS,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,53238.33852 +KS,Nitrogen Oxides,11C_Other-natural,,TON,60290.9687 +KS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,78.0787306 +KS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,11956.362 +KS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1239.929472 +KS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1662.620433 +KS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,184.8261803 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,619.1861263 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,384.8434025 +KS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24.85360373 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,60.39022465 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,912.2362194 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,347.8057987 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.450015212 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.891196661 +KS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,28961.49505 +KS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,25.1836975 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2810.821964 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,28.33762042 +KS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.01090059 +KS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1772.534481 +KS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1619.926186 +KS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,24565.41844 +KS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,251.0192941 +KS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1561.87548 +KS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,426.2731514 +KS,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,166.9484527 +KS,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.089553984 +KS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11804.68459 +KS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,226.2855524 +KS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9879.798032 +KS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,180.0272962 +KS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,214.3399445 +KS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,23682.83467 +KS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.166253492 +KS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00119663 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,68.49026988 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,31.03601317 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1510.254956 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,557.5279458 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,271.4970575 +KS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.97423595 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,195.6107771 +KS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,471.5422455 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,315.170435 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.377999995 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,3.280499713 +KS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3028.290227 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17665.30224 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,175.7756386 +KS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,11.68739741 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.7865771 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,75.20313619 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,121.161594 +KS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,325.5704009 +KS,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,19758.63025 +KS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,6.578448703 +KS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,26.1597923 +KS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,32197.96858 +KS,Nitrogen Oxides,2A6_Other-minerals,,TON,3195.042004 +KS,Nitrogen Oxides,2B_Chemicals-other,,TON,889.6257353 +KS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,33.1314962 +KS,Nitrogen Oxides,2C5_Lead-production,,TON,2.92 +KS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,20.020266 +KS,Nitrogen Oxides,2D3d_Coating-application,,TON,7.336505 +KS,Nitrogen Oxides,2D3h_Printing,,TON,0.112 +KS,Nitrogen Oxides,2H2_Ethanol Production,,TON,155.229865 +KS,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,15.1483978 +KS,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.556 +KS,Nitrogen Oxides,3Dc_Other-farm,,TON,6.1455 +KS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,709.147 +KS,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,59.925657 +KS,Nitrogen Oxides,5C_Incineration,,TON,7.890895331 +KS,Nitrogen Oxides,5C_Incineration,biomass,TON,10.72665131 +KS,Nitrogen Oxides,5C_Open-burning-dump,,TON,0.70184 +KS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,162.5750692 +KS,Nitrogen Oxides,5C_Open-burning-residential,,TON,222.3273921 +KS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,5.2881484 +KS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.330780432 +KS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,455.1529823 +KS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.279732143 +KS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.49412819 +KS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.17905685 +KS,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.064905599 +KS,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.001064833 +KS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.683551957 +KS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.565099345 +KS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.747118663 +KS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.104613366 +KS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.287040592 +KS,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,3141.264798 +KS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,12.30614908 +KS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,463.49622 +KS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,37.07177454 +KS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,296.6538524 +KS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.545397146 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6.043458306 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,77.9556156 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,386.9128216 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.458367295 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.051047891 +KS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,256.0359412 +KS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.492644922 +KS,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,361841.5362 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,153.5291736 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.833954206 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.19666862 +KS,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,2543.083192 +KS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.02268 +KS,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.196650001 +KS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.111699516 +KS,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,160.5459782 +KS,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.156673 +KS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,229.1501193 +KS,PM10 Filterable,2A1_Cement-production,,TON,194.1184752 +KS,PM10 Filterable,2A2_Lime-production,,TON,3.213795848 +KS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21372.53548 +KS,PM10 Filterable,2A6_Other-minerals,,TON,2566.148661 +KS,PM10 Filterable,2B_Chemicals-other,,TON,158.5167907 +KS,PM10 Filterable,2C_Iron-steel-alloy,,TON,171.4567075 +KS,PM10 Filterable,2C3_Aluminum-production,,TON,13.2134 +KS,PM10 Filterable,2C5_Lead-production,,TON,1.4607169 +KS,PM10 Filterable,2C6_Zinc-production,,TON,0 +KS,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,214.3967703 +KS,PM10 Filterable,2D3d_Coating-application,,TON,289.4758615 +KS,PM10 Filterable,2D3e_Degreasing,,TON,0 +KS,PM10 Filterable,2D3h_Printing,,TON,0.002128 +KS,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,4.36589 +KS,PM10 Filterable,2H2_Ethanol Production,,TON,35.5202629 +KS,PM10 Filterable,2H2_Food-and-beverage,,TON,586.2564913 +KS,PM10 Filterable,2H3_Other-industrial-processes,,TON,527.1963258 +KS,PM10 Filterable,2I_Wood-processing,,TON,2.3378769 +KS,PM10 Filterable,3B1a_Cattle-dairy,,TON,1264.327026 +KS,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,79943.38006 +KS,PM10 Filterable,3Dc_Other-farm,,TON,115372.4922 +KS,PM10 Filterable,5A_Solid-waste-disposal,,TON,27.5455755 +KS,PM10 Filterable,5C_Incineration,,TON,0.407880401 +KS,PM10 Filterable,5C_Incineration,biomass,TON,8.01907974 +KS,PM10 Filterable,5C_Open-burning-commercial,,TON,0.9 +KS,PM10 Filterable,5C_Open-burning-dump,,TON,0.47089 +KS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,829.1329077 +KS,PM10 Filterable,5C_Open-burning-residential,,TON,1188.740293 +KS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,32.4112305 +KS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.68214 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,16.89036007 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1590.5006 +KS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,97.79043405 +KS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,525.906977 +KS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,23.57546379 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,35.80528343 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.65330256 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.169328976 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6.238546623 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,82.01708537 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,416.8388033 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.535919572 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.078830973 +KS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,557.1777283 +KS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.967388192 +KS,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,280.0273176 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.00587242 +KS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000224701 +KS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,201.0697096 +KS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,361841.5362 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,86.67750033 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1174.53844 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.79061441 +KS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,79.42573259 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,30.9069064 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.126590697 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.003656354 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,655.8578941 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,11.88272568 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,564.2838149 +KS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.252127171 +KS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.59842089 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,695.6453702 +KS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.065655158 +KS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00003015 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,158.8894058 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.313875275 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.28817075 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,47.32629229 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,27.10365873 +KS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.579721802 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.82401865 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,219.7914528 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2657.915831 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.049980001 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.433800026 +KS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,15.88208037 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1371.056393 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.215546338 +KS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.609266657 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.32959412 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,28.50364825 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.659783146 +KS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,15.84701409 +KS,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,499.7162171 +KS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.156673 +KS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,591.07669 +KS,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,206.5032614 +KS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,3.256573339 +KS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21372.53548 +KS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2707.57427 +KS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,280.1898287 +KS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,397.1159323 +KS,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,16.9934 +KS,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,1.741413896 +KS,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +KS,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,217.2310585 +KS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,290.1132517 +KS,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KS,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.008512 +KS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,8.055712 +KS,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,44.5265487 +KS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1745.904534 +KS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,532.2512939 +KS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.3378769 +KS,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1264.327026 +KS,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,79943.38006 +KS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,115414.4697 +KS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3067.03 +KS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,40.6176364 +KS,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.378989019 +KS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,11.46526352 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,1.39394 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.518497 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,829.1329077 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1188.740293 +KS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,32.4112305 +KS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.68214 +KS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.537712322 +KS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,259.90357 +KS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,37.07167561 +KS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,282.2104369 +KS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.545397146 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5.249157233 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,74.25776081 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,46.44771625 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.307120671 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.036530933 +KS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,256.8575943 +KS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.492644922 +KS,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,38132.07896 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,132.0421585 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.764422021 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.036514414 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,2508.841892 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.01743 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.151199999 +KS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.361435028 +KS,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,160.5133344 +KS,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.156673 +KS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,228.9645874 +KS,PM2.5 Filterable,2A1_Cement-production,,TON,68.54571042 +KS,PM2.5 Filterable,2A2_Lime-production,,TON,1.234002309 +KS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2137.253548 +KS,PM2.5 Filterable,2A6_Other-minerals,,TON,668.2060474 +KS,PM2.5 Filterable,2B_Chemicals-other,,TON,128.8043238 +KS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,103.4894217 +KS,PM2.5 Filterable,2C3_Aluminum-production,,TON,13.2134 +KS,PM2.5 Filterable,2C5_Lead-production,,TON,1.444976479 +KS,PM2.5 Filterable,2C6_Zinc-production,,TON,0 +KS,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,160.8410708 +KS,PM2.5 Filterable,2D3d_Coating-application,,TON,249.3898014 +KS,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +KS,PM2.5 Filterable,2D3h_Printing,,TON,0.002128 +KS,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3.56400259 +KS,PM2.5 Filterable,2H2_Ethanol Production,,TON,35.5202629 +KS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,284.4180106 +KS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,396.0272748 +KS,PM2.5 Filterable,2I_Wood-processing,,TON,2.3378769 +KS,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,262.7893375 +KS,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,16616.20409 +KS,PM2.5 Filterable,3Dc_Other-farm,,TON,22759.07428 +KS,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,15.6955755 +KS,PM2.5 Filterable,5C_Incineration,,TON,0.407112594 +KS,PM2.5 Filterable,5C_Incineration,biomass,TON,5.246896547 +KS,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.5126582 +KS,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.2682285 +KS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,755.9741201 +KS,PM2.5 Filterable,5C_Open-burning-residential,,TON,1088.6358 +KS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,24.9907642 +KS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.525621525 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.1219233 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1386.90795 +KS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,97.79033512 +KS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,511.4635708 +KS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,23.57546379 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,34.73082535 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.3862022 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.169328976 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,5.362301141 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,77.10879006 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,78.84705882 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.381507439 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.064109529 +KS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,556.8217495 +KS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.967388192 +KS,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,271.6265237 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.49471223 +KS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000224701 +KS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,176.8392738 +KS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,38132.07896 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,65.1129765 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,481.4402166 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.57342405 +KS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,31.24382794 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,22.82036306 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.762418227 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.002212117 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,431.4780204 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.470859149 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,401.5681865 +KS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.560327495 +KS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.55936916 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,674.7677549 +KS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.060521799 +KS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.0000292 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,137.3996641 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.244499217 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,30.13059068 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,45.90650205 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,24.994644 +KS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.579721802 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.43929795 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,202.2178616 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2623.674531 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.044729999 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.388350004 +KS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.13181484 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1329.92476 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.718738296 +KS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.609266657 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.28970617 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,26.22394918 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.579989542 +KS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,14.57925122 +KS,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,499.6835735 +KS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.156673 +KS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,590.8911581 +KS,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,80.93049584 +KS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.276779799 +KS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2137.253548 +KS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,809.6316573 +KS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,250.4773548 +KS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,329.1486493 +KS,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,16.9934 +KS,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,1.725673545 +KS,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0 +KS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,163.6753589 +KS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,250.0271916 +KS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KS,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.008512 +KS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,7.25382459 +KS,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,44.5265487 +KS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1444.066011 +KS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,401.0822428 +KS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.3378769 +KS,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,262.7893375 +KS,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,16616.20409 +KS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,22801.05185 +KS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2033.774 +KS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,28.7676364 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.370560714 +KS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,8.700740438 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,1.006598 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.3158355 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,755.9741201 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1088.6358 +KS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,24.9907642 +KS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.525621525 +KS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.96480778 +KS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,5547.349 +KS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,27.7137692 +KS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,351.8930117 +KS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2.818560445 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.172977723 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.499289841 +KS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.05421183 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,4.958004862 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,54.57790632 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2404.354786 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.14056257 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.175366473 +KS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,183.5039393 +KS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.152330085 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4.957443186 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.182955955 +KS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.0504E-05 +KS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,187.7122808 +KS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.043280364 +KS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,187.2414235 +KS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.72438614 +KS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.11976076 +KS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.598348992 +KS,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.366648266 +KS,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,8.52413E-05 +KS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,36.01363996 +KS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.733798067 +KS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.33922926 +KS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.085782695 +KS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.663322039 +KS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,15.85885076 +KS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008317539 +KS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00000073 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7.695196127 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.448683532 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.302050661 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.675714269 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.61671246 +KS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.025629258 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.232029641 +KS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.713130034 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,68.10337215 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.004473 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.03080925 +KS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,18.3267601 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,20.22478934 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.563883018 +KS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.027952965 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010844948 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.595608596 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.111280762 +KS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.761838922 +KS,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,44.09597636 +KS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0878114 +KS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,19.9487542 +KS,Sulfur Dioxide,2A6_Other-minerals,,TON,517.0782468 +KS,Sulfur Dioxide,2B_Chemicals-other,,TON,2340.904912 +KS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,30.210094 +KS,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.18713 +KS,Sulfur Dioxide,2C5_Lead-production,,TON,0.02 +KS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.1008345 +KS,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0486516 +KS,Sulfur Dioxide,2D3h_Printing,,TON,0.000672 +KS,Sulfur Dioxide,2H2_Ethanol Production,,TON,35.5304364 +KS,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +KS,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.239719 +KS,Sulfur Dioxide,3Dc_Other-farm,,TON,0.036593 +KS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,144.8684 +KS,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,74.60229693 +KS,Sulfur Dioxide,5C_Incineration,,TON,0.108662728 +KS,Sulfur Dioxide,5C_Incineration,biomass,TON,1.683326016 +KS,Sulfur Dioxide,5C_Open-burning-dump,,TON,0.03627 +KS,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,67.46864955 +KS,Sulfur Dioxide,5C_Open-burning-residential,,TON,37.05456605 +KS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.648224592 +KS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.8715 +KS,Volatile Organic Compounds,11C_Other-natural,,TON,227607.87 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.777291603 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,402.45517 +KS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,43.46260993 +KS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,571.4539362 +KS,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,775.5680964 +KS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1019.05696 +KS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,86.12774213 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,40.3988659 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,118.252052 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13.45751467 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,11.25928962 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,73.58705216 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.628335082 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.678545896 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.664590285 +KS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1729.5255 +KS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,4.274222294 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,281.5356801 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,167.766126 +KS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.007922069 +KS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,941.0242824 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,512.7497708 +KS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,18247.30235 +KS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,69.58971152 +KS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1109.989605 +KS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,44.09433686 +KS,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,117.0249117 +KS,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.014720856 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,729.2812632 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,81.48484195 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,573.9831807 +KS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,98.88220169 +KS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,763.0705703 +KS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1132.441906 +KS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.958999414 +KS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.00003439 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,11.60684661 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.07238971 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +KS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,188.6652481 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,65.04739487 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,747.8225886 +KS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.19163591 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,18.09418111 +KS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3315.0806 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2501.923515 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.014973001 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.127800006 +KS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,167.9966862 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1532.854674 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,320.8401343 +KS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.920656211 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.3442829 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,976.8283189 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.370824964 +KS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1203.076686 +KS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,68340.87689 +KS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,644.3446816 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,630.5215414 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,475.0591412 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6861.104667 +KS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4434.159182 +KS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,28317.34348 +KS,Volatile Organic Compounds,2A1_Cement-production,,TON,13.420149 +KS,Volatile Organic Compounds,2A6_Other-minerals,,TON,469.7995321 +KS,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,4.018979203 +KS,Volatile Organic Compounds,2B_Chemicals-other,,TON,1250.857419 +KS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,126.3371258 +KS,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1.8713 +KS,Volatile Organic Compounds,2C5_Lead-production,,TON,0.16 +KS,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +KS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,17.974585 +KS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12769.11123 +KS,Volatile Organic Compounds,2D3d_Coating-application,,TON,11305.2291 +KS,Volatile Organic Compounds,2D3e_Degreasing,,TON,2978.509358 +KS,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,9.48814725 +KS,Volatile Organic Compounds,2D3h_Printing,,TON,7840.90708 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0.034045725 +KS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1236.792141 +KS,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,57.1966 +KS,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,3.014 +KS,Volatile Organic Compounds,2H2_Ethanol Production,,TON,293.073633 +KS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,732.108153 +KS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1002.609727 +KS,Volatile Organic Compounds,2I_Wood-processing,,TON,12.5598 +KS,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,698.3279623 +KS,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,5658.428713 +KS,Volatile Organic Compounds,3B2_Manure-sheep,,TON,20.20274578 +KS,Volatile Organic Compounds,3B3_Manure-swine,,TON,2193.656924 +KS,Volatile Organic Compounds,3B4_Manure-other,,TON,68.01245579 +KS,Volatile Organic Compounds,3B4_Manure-poultry,,TON,76.5821574 +KS,Volatile Organic Compounds,3B4d_Manure-goats,,TON,19.82624098 +KS,Volatile Organic Compounds,3Dc_Other-farm,,TON,172.6692458 +KS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,11119.65112 +KS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2822.22 +KS,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,92.807778 +KS,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,328.23563 +KS,Volatile Organic Compounds,5C_Incineration,,TON,0.294277187 +KS,Volatile Organic Compounds,5C_Incineration,biomass,TON,15.80493359 +KS,Volatile Organic Compounds,5C_Open-burning-dump,,TON,1.18172 +KS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,459.2745959 +KS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,231.7730678 +KS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,23.88195808 +KS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,50.113055 +KS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,13.7601 +KS,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.21 +KY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.0065288 +KY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,119.15332 +KY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,10.9980146 +KY,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,2.142 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.797236695 +KY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.416250476 +KY,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,15.50616088 +KY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.042382675 +KY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,94.80444837 +KY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.003734176 +KY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.092249705 +KY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,43.13088734 +KY,Ammonia,1A2c_Chemicals,natural_gas,TON,0.026884678 +KY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.60943879 +KY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.188785881 +KY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,17.85204397 +KY,Ammonia,1A3bii_Road-LDV,light_oil,TON,1412.589887 +KY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.585888257 +KY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,54.18889161 +KY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,8.354838476 +KY,Ammonia,1A3biii_Road-bus,light_oil,TON,1.875527409 +KY,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.006074629 +KY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,88.5011888 +KY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,11.79404593 +KY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,61.79395034 +KY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.080996588 +KY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.5210376 +KY,Ammonia,1A3c_Rail,diesel_oil,TON,5.011590359 +KY,Ammonia,1A3c_Rail,light_oil,TON,0.004434554 +KY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.527803979 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.515246391 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.023579728 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.0660016 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.04619147 +KY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.34546903 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.567994798 +KY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.059418151 +KY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.194485026 +KY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.370508202 +KY,Ammonia,1A4bi_Residential-stationary,biomass,TON,459.8371889 +KY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.953000016 +KY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.607500001 +KY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,434.0061088 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.578449621 +KY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.093564166 +KY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01533262 +KY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.125050506 +KY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.425220003 +KY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.888011266 +KY,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.000340304 +KY,Ammonia,2A6_Other-minerals,,TON,115.0112819 +KY,Ammonia,2B_Chemicals-other,,TON,2.96447276 +KY,Ammonia,2D3d_Coating-application,,TON,0.11029149 +KY,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.013009108 +KY,Ammonia,2H2_Food-and-beverage,,TON,60.896 +KY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,250.327855 +KY,Ammonia,3B1a_Cattle-dairy,,TON,3713.636604 +KY,Ammonia,3B1b_Cattle-non-dairy,,TON,7673.345323 +KY,Ammonia,3B2_Manure-sheep,,TON,178.259521 +KY,Ammonia,3B3_Manure-swine,,TON,5038.717945 +KY,Ammonia,3B4_Manure-other,,TON,1635.949179 +KY,Ammonia,3B4_Manure-poultry,,TON,9265.741143 +KY,Ammonia,3B4d_Manure-goats,,TON,212.1438231 +KY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14712.8 +KY,Ammonia,3F_Ag-res-on-field,,TON,521.61 +KY,Ammonia,5B_Compost-biogas,Other_Fuel,TON,95.166115 +KY,Ammonia,5D1_Wastewater-domestic,,TON,13.323199 +KY,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.0007 +KY,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2819.417003 +KY,Carbon Dioxide,1A1a_Public-Electricity,hard_coal,TON,0 +KY,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,104961.1919 +KY,Carbon Dioxide,1A1b_Pet-refining,diesel_oil,TON,0 +KY,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,786.182944 +KY,Carbon Dioxide,1A1g_Other-energy-transf,natural_gas,TON,16972.03225 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,221494.5036 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,240374.1413 +KY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13743.71361 +KY,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,195560.9901 +KY,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,15533.92009 +KY,Carbon Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,19649.98611 +KY,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +KY,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2297584.207 +KY,Carbon Dioxide,1A2c_Chemicals,natural_gas,TON,41779.99268 +KY,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,629.2 +KY,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2973.7239 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,690685.6016 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,15363.38516 +KY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.939484464 +KY,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1189315.543 +KY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,558059.1318 +KY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,18635410.69 +KY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,79774.68744 +KY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,863023.2034 +KY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,516916.454 +KY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,58885.77316 +KY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,262.3566 +KY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5069384.861 +KY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,273401.1082 +KY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3857580.242 +KY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,191207.5171 +KY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,124307.4643 +KY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5590.600045 +KY,Carbon Dioxide,1A3c_Rail,light_oil,TON,345.8475966 +KY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,154488.4279 +KY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1523.371811 +KY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,47258.31369 +KY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,325676.8866 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,69888.71719 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,86291.26459 +KY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3782.416589 +KY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,23937.47424 +KY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,252121.0855 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,440500.2914 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6991.716788 +KY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,865.1426452 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1880.55757 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,79527.29518 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,52363.1057 +KY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,210042.4492 +KY,Carbon Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,20.20649134 +KY,Carbon Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,105.5727 +KY,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,754.0124774 +KY,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,223781.6805 +KY,Carbon Dioxide,2B_Chemicals-other,,TON,181839.263 +KY,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,7660.285 +KY,Carbon Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,203.6275 +KY,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,8582.5057 +KY,Carbon Dioxide,2H2_Food-and-beverage,,TON,7669.568083 +KY,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,82239760.99 +KY,Carbon Dioxide,5A_Solid-waste-disposal,,TON,91783.23152 +KY,Carbon Dioxide,5C_Incineration,,TON,4520 +KY,Carbon Dioxide,5C_Incineration,biomass,TON,63.28 +KY,Carbon Dioxide,5E_Other-waste,Other_Fuel,TON,46689.389 +KY,Carbon Monoxide,11C_Other-natural,,TON,56386.7287 +KY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.0463775 +KY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,27.07680694 +KY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8712.43061 +KY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.05394308 +KY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1897.982222 +KY,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,0 +KY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,749.0577111 +KY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,38.20652052 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,346.8130564 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6342.174227 +KY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,212.9315638 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,1875.746867 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,106.3615471 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,820.3300688 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.126217662 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.592036824 +KY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6490.433687 +KY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,93.40190351 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.08896 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.15721168 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1916.473016 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3150.116087 +KY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.205226999 +KY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10102.47934 +KY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5878.168354 +KY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,330203.1912 +KY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,611.4935784 +KY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14544.01057 +KY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1101.700427 +KY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2808.704234 +KY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,4.0253924 +KY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4795.079156 +KY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4702.414072 +KY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4661.184026 +KY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4473.475098 +KY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4742.130551 +KY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1621.594361 +KY,Carbon Monoxide,1A3c_Rail,light_oil,TON,77.76735006 +KY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,819.9640588 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,645.1345665 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.536133138 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,49.70195533 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.839082608 +KY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,984.5703366 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,247.5470698 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,17932.88074 +KY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,79.31629838 +KY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,71.01316925 +KY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,56669.46359 +KY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,60679.56948 +KY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,9.765000168 +KY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.03750006 +KY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,985.8772074 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1484.686945 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1624.754773 +KY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,11.55862114 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.7156153 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14813.74976 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,103.3838549 +KY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,22291.21653 +KY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,7411.36411 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,2.5462923 +KY,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1.3311124 +KY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11518.15883 +KY,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,2408.568608 +KY,Carbon Monoxide,2A6_Other-minerals,,TON,1441.709772 +KY,Carbon Monoxide,2B_Chemicals-other,,TON,242.2325365 +KY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1836.32969 +KY,Carbon Monoxide,2C3_Aluminum-production,,TON,37675.89543 +KY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1283.472733 +KY,Carbon Monoxide,2C7a_Copper-production,,TON,0.3675 +KY,Carbon Monoxide,2D3d_Coating-application,Other_Fuel,TON,3.55152 +KY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +KY,Carbon Monoxide,2H2_Food-and-beverage,,TON,743.5129453 +KY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,333.7993424 +KY,Carbon Monoxide,3F_Ag-res-on-field,,TON,2500.97 +KY,Carbon Monoxide,5A_Solid-waste-disposal,,TON,807.0637434 +KY,Carbon Monoxide,5C_Incineration,,TON,4.878112311 +KY,Carbon Monoxide,5C_Incineration,biomass,TON,46.02048928 +KY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,16754.80469 +KY,Carbon Monoxide,5C_Open-burning-residential,,TON,7727.049837 +KY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,750.443394 +KY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.50131603 +KY,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.11596259 +KY,Methane,1A1a_Public-Electricity,hard_coal,TON,0 +KY,Methane,1A1a_Public-Electricity,natural_gas,TON,8.80749011 +KY,Methane,1A1b_Pet-refining,diesel_oil,TON,0 +KY,Methane,1A1b_Pet-refining,natural_gas,TON,0.01418961 +KY,Methane,1A1g_Other-energy-transf,natural_gas,TON,0.32266852 +KY,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.747234502 +KY,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27.01111542 +KY,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,89.3343237 +KY,Methane,1A2_Industrial_fuel_combustion,biomass,TON,12.55262805 +KY,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.084204666 +KY,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,2.314789309 +KY,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +KY,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,2457.889974 +KY,Methane,1A2c_Chemicals,natural_gas,TON,8.35918426 +KY,Methane,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0023328 +KY,Methane,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Methane,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0219765 +KY,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,19.19287105 +KY,Methane,1A2g_Construction_and_Mining,light_oil,TON,11.18259758 +KY,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.148132115 +KY,Methane,1A3bii_Road-LDV,diesel_oil,TON,32.09527264 +KY,Methane,1A3bii_Road-LDV,light_oil,TON,801.8748402 +KY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.156212725 +KY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,41.97091096 +KY,Methane,1A3biii_Road-bus,diesel_oil,TON,18.2950116 +KY,Methane,1A3biii_Road-bus,light_oil,TON,7.60674821 +KY,Methane,1A3biii_Road-bus,natural_gas,TON,3.21481258 +KY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,304.1817234 +KY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,7.951651825 +KY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,97.60230529 +KY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,9.682830199 +KY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.986265126 +KY,Methane,1A3c_Rail,diesel_oil,TON,0.252017228 +KY,Methane,1A3c_Rail,light_oil,TON,0.226940679 +KY,Methane,1A4ai_Commercial-institutional-stationary,biomass,TON,15.87610074 +KY,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.230303983 +KY,Methane,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.62892425 +KY,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.85847905 +KY,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.233938823 +KY,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,58.14018344 +KY,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,47.83405753 +KY,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.797222195 +KY,Methane,1A4bi_Residential-mobile,light_oil,TON,212.5602833 +KY,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.16209142 +KY,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.035015525 +KY,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.685594154 +KY,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.078451739 +KY,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,110.1378611 +KY,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.539699363 +KY,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,202.6728576 +KY,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,106.8339061 +KY,Methane,1B2av_Fugitive-petr-distr,light_oil,TON,0.44166074 +KY,Methane,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.00473368 +KY,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,97.30338151 +KY,Methane,2A6_Other-minerals,Other_Fuel,TON,54.13259862 +KY,Methane,2B_Chemicals-other,,TON,605.5576034 +KY,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,0.35158955 +KY,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,103962.2233 +KY,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,1662.997712 +KY,Methane,5C_Incineration,,TON,3.07 +KY,Methane,5C_Incineration,biomass,TON,0.0245 +KY,Methane,5E_Other-waste,Other_Fuel,TON,1199.055338 +KY,Nitrogen Oxides,11C_Other-natural,,TON,19392.08737 +KY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.1725073 +KY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,109.2731542 +KY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,44064.9969 +KY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.12047678 +KY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3068.601451 +KY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,866.9025819 +KY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,31.17539763 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,964.0072422 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,590.4364851 +KY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.50185327 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,832.7419797 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,463.2317554 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2674.00275 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.225811524 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.341989241 +KY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,14467.18998 +KY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,143.2022272 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.52 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.04346673 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3370.275916 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,39.97813725 +KY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.040853984 +KY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3519.428109 +KY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1921.858127 +KY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,34808.09035 +KY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,250.602895 +KY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1475.418436 +KY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2992.077604 +KY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,283.2090178 +KY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.26643651 +KY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14709.77628 +KY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,483.7799303 +KY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14713.74484 +KY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,365.8649721 +KY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,241.1068218 +KY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,8447.812771 +KY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.781934923 +KY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,6413.077876 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,304.1120239 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.40218511 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,242.0549487 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.974045578 +KY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1117.781849 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,483.2770774 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,223.2148248 +KY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.48838416 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,178.6658429 +KY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,530.5597572 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,924.1352108 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,35.15399938 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,10.93500006 +KY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2458.930594 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3235.121497 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,33.10535418 +KY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.015586131 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.9104908 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,163.6915377 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,516.0396047 +KY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1470.924625 +KY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,4830.717907 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.9695815 +KY,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.24462448 +KY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8185.752422 +KY,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,3179.60408 +KY,Nitrogen Oxides,2A6_Other-minerals,,TON,939.8425221 +KY,Nitrogen Oxides,2B_Chemicals-other,,TON,289.3837637 +KY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1076.608504 +KY,Nitrogen Oxides,2C3_Aluminum-production,,TON,214.0017146 +KY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,44.63345047 +KY,Nitrogen Oxides,2C7a_Copper-production,,TON,1.8375 +KY,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +KY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,0 +KY,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,7.50525024 +KY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,734.5798206 +KY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,99.418 +KY,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,155.4190622 +KY,Nitrogen Oxides,5C_Incineration,,TON,0.56832992 +KY,Nitrogen Oxides,5C_Incineration,biomass,TON,28.60838442 +KY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,406.670014 +KY,Nitrogen Oxides,5C_Open-burning-residential,,TON,545.4388127 +KY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,41.54240242 +KY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.297145 +KY,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.30270336 +KY,Nitrous Oxide,1A1a_Public-Electricity,hard_coal,TON,0 +KY,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,1.58271903 +KY,Nitrous Oxide,1A1b_Pet-refining,diesel_oil,TON,0 +KY,Nitrous Oxide,1A1b_Pet-refining,natural_gas,TON,0.00148309 +KY,Nitrous Oxide,1A1g_Other-energy-transf,natural_gas,TON,0.10190305 +KY,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,12.22058016 +KY,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.171917453 +KY,Nitrous Oxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.335777232 +KY,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +KY,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,49.57171563 +KY,Nitrous Oxide,1A2c_Chemicals,natural_gas,TON,2.32938414 +KY,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.001188 +KY,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.020405 +KY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.633090558 +KY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,675.2648651 +KY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.271074078 +KY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.85599683 +KY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.099670521 +KY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.948219572 +KY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.018011494 +KY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.629699548 +KY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.409888248 +KY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.689706261 +KY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.410487487 +KY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.589124557 +KY,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.08059965 +KY,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.093198115 +KY,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.29516857 +KY,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.183618128 +KY,Nitrous Oxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.04025295 +KY,Nitrous Oxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.00094674 +KY,Nitrous Oxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.00965693 +KY,Nitrous Oxide,2B_Chemicals-other,,TON,8.3809068 +KY,Nitrous Oxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.17905903 +KY,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1185.533896 +KY,Nitrous Oxide,5A_Solid-waste-disposal,,TON,1.49679176 +KY,Nitrous Oxide,5C_Incineration,biomass,TON,0.004795 +KY,Nitrous Oxide,5E_Other-waste,Other_Fuel,TON,0.00032375 +KY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.01428396 +KY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.266657565 +KY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1625.598193 +KY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.00293537 +KY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,210.5079457 +KY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,96.95406082 +KY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.75919342 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1279.796336 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,31.83104944 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,15.74300318 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.189719022 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.115179072 +KY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,441.2506931 +KY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,2.800638488 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0108304 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.14800127 +KY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,41158.4653 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,277.5370445 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.002852728 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.48639515 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.062049132 +KY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.63719438 +KY,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,7721.144919 +KY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.109240085 +KY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.655500006 +KY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.930899607 +KY,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,29.80303512 +KY,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00805081 +KY,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.00305605 +KY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,41.44704028 +KY,PM10 Filterable,2A1_Cement-production,,TON,134.1211461 +KY,PM10 Filterable,2A2_Lime-production,,TON,207.032526 +KY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18996.95761 +KY,PM10 Filterable,2A6_Other-minerals,,TON,8424.991621 +KY,PM10 Filterable,2B_Chemicals-other,,TON,453.1050825 +KY,PM10 Filterable,2C_Iron-steel-alloy,,TON,1067.76487 +KY,PM10 Filterable,2C3_Aluminum-production,,TON,694.6144718 +KY,PM10 Filterable,2C5_Lead-production,,TON,5.35556054 +KY,PM10 Filterable,2C6_Zinc-production,,TON,1.5352023 +KY,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,235.7006732 +KY,PM10 Filterable,2C7a_Copper-production,,TON,23.83063225 +KY,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,12.97709369 +KY,PM10 Filterable,2D3d_Coating-application,,TON,142.220334 +KY,PM10 Filterable,2D3e_Degreasing,,TON,0 +KY,PM10 Filterable,2D3h_Printing,,TON,7.866365 +KY,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.9625 +KY,PM10 Filterable,2H1_Pulp-and-paper,,TON,0 +KY,PM10 Filterable,2H2_Food-and-beverage,,TON,522.5563796 +KY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,2343.213438 +KY,PM10 Filterable,2I_Wood-processing,,TON,15.13720812 +KY,PM10 Filterable,3B1a_Cattle-dairy,,TON,488.1907742 +KY,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,22024.73063 +KY,PM10 Filterable,3Dc_Other-farm,,TON,57557.43162 +KY,PM10 Filterable,5A_Solid-waste-disposal,,TON,77.98931744 +KY,PM10 Filterable,5C_Incineration,,TON,2.28443454 +KY,PM10 Filterable,5C_Incineration,biomass,TON,88.37734013 +KY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2074.017073 +KY,PM10 Filterable,5C_Open-burning-residential,,TON,2916.352636 +KY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,254.6147224 +KY,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,45.2458725 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.014525451 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.44421772 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2972.161789 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.003116617 +KY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,402.6435572 +KY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,238.2226479 +KY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.928595394 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,55.57705524 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.31600338 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.657800309 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1325.882146 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,35.11079693 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,69.28540411 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.213749494 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.265096166 +KY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,802.1395596 +KY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.477002117 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.012985704 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.384803302 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,298.2861605 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.37918101 +KY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000461569 +KY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,140.9688995 +KY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,41158.4653 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,105.427845 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1816.760731 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.41799015 +KY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,82.00222236 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,209.733191 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,12.65399154 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.075662391 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,948.9767712 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,29.9662193 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,908.4684332 +KY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,23.94085239 +KY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.13535559 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,249.804825 +KY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.043989731 +KY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,189.1336606 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,291.8245967 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.142280052 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,60.77675148 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.129610066 +KY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,108.387846 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,41.1450146 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,22.58875277 +KY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.479076949 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.9857314 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,227.7799318 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8087.771512 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.648140003 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.446000036 +KY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.8127697 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,277.3353873 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.830449526 +KY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.105637406 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.02338648 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,82.8218834 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.28834673 +KY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,67.05907139 +KY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,79.08586967 +KY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00805081 +KY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.00305605 +KY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,106.0019143 +KY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,134.1699508 +KY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,242.3663777 +KY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18996.95761 +KY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,8505.071193 +KY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,651.5880377 +KY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1131.107816 +KY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1043.295893 +KY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,17.23230457 +KY,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.9918064 +KY,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,240.6390129 +KY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,37.16323225 +KY,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,12.97709369 +KY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,142.2338636 +KY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,7.866365 +KY,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.9625 +KY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +KY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2253.589781 +KY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,2344.620651 +KY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,15.13720812 +KY,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,488.1907742 +KY,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,22024.73063 +KY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,57563.95324 +KY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,426.067 +KY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,122.6502315 +KY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.269204458 +KY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,135.3532788 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2074.017073 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2916.352636 +KY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,254.6147224 +KY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,45.2554765 +KY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.0064447 +KY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.479061307 +KY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,680.0182935 +KY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.00293537 +KY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,171.760728 +KY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,95.78699321 +KY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,2.70618342 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1106.448946 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,28.91079987 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,5.67340086 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.132980278 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.028828511 +KY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,360.7683338 +KY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,2.758422336 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00271369 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.13062094 +KY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5910.542647 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,244.0236815 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.859414338 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,20.08971558 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048881887 +KY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.84852403 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,7672.685208 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.620989949 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.503999996 +KY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.711994969 +KY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,29.76994138 +KY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00805081 +KY,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.00305605 +KY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,41.39156578 +KY,PM2.5 Filterable,2A1_Cement-production,,TON,59.90567195 +KY,PM2.5 Filterable,2A2_Lime-production,,TON,141.5608438 +KY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1900.341819 +KY,PM2.5 Filterable,2A6_Other-minerals,,TON,2120.591724 +KY,PM2.5 Filterable,2B_Chemicals-other,,TON,297.6443826 +KY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,390.4524289 +KY,PM2.5 Filterable,2C3_Aluminum-production,,TON,533.4357061 +KY,PM2.5 Filterable,2C5_Lead-production,,TON,2.74558488 +KY,PM2.5 Filterable,2C6_Zinc-production,,TON,1.3622547 +KY,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,152.4100416 +KY,PM2.5 Filterable,2C7a_Copper-production,,TON,9.61442518 +KY,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,3.99130594 +KY,PM2.5 Filterable,2D3d_Coating-application,,TON,123.355706 +KY,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +KY,PM2.5 Filterable,2D3h_Printing,,TON,7.866365 +KY,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.34124 +KY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,0 +KY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,97.80843302 +KY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1502.888265 +KY,PM2.5 Filterable,2I_Wood-processing,,TON,3.85025239 +KY,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,101.4700496 +KY,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,4577.820587 +KY,PM2.5 Filterable,3Dc_Other-farm,,TON,11298.75263 +KY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,48.40585246 +KY,PM2.5 Filterable,5C_Incineration,,TON,2.213935396 +KY,PM2.5 Filterable,5C_Incineration,biomass,TON,22.61893346 +KY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1891.015542 +KY,PM2.5 Filterable,5C_Open-burning-residential,,TON,2670.765013 +KY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,196.3213506 +KY,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,34.9145725 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.006686191 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.656598304 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2026.581849 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.003116617 +KY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,363.8963582 +KY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,237.0555803 +KY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,6.875585394 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,53.9075273 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,27.78418566 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.657800309 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1152.515113 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,32.18936328 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,59.21988964 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.157014286 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.178764385 +KY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,721.6729852 +KY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.434785965 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.004868994 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.367422972 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,289.3375596 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,22.44066747 +KY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000461569 +KY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,126.9933746 +KY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5910.542647 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,78.63234271 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,703.8799334 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.11328451 +KY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,30.10390258 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,151.4641461 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.728273908 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.049152423 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,607.3785564 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.46432035 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,642.9107361 +KY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,8.45013065 +KY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.43469802 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,242.3077867 +KY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.040552968 +KY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,183.2934839 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,258.3508099 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.999769807 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,39.29640767 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.116993805 +KY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,101.6422143 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,39.91066272 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,20.83075216 +KY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.479076949 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.62615961 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,209.5663982 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8039.311801 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.159889957 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.294500029 +KY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.59386525 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,269.0153234 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.444082814 +KY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.105637406 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.96268455 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,76.19702801 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.9496962 +KY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,61.69434094 +KY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,79.052776 +KY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.00805081 +KY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.00305605 +KY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,105.9464398 +KY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,59.91985002 +KY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,176.8946973 +KY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1900.341819 +KY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2200.670992 +KY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,496.1273378 +KY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,453.7953729 +KY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,882.1171248 +KY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,14.62233391 +KY,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,4.8188588 +KY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,157.3483808 +KY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,22.94702518 +KY,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,3.99130594 +KY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,123.3692356 +KY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +KY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,7.866365 +KY,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.34124 +KY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,0 +KY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1828.84167 +KY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1504.295477 +KY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,3.85025239 +KY,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,101.4700496 +KY,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4577.820587 +KY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,11305.27425 +KY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,259.906 +KY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,93.06676674 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.144877246 +KY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,69.64866015 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1891.015542 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2670.765013 +KY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,196.3213506 +KY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,34.9241765 +KY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.23012382 +KY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.223097411 +KY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,57064.19717 +KY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.00384001 +KY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,330.2419288 +KY,Sulfur Dioxide,1A1b_Pet-refining,diesel_oil,TON,0 +KY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,164.7292438 +KY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.83292691 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.860068702 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.38806503 +KY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.07703393 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,112.3424589 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,76.71002764 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1327.452951 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.912711624 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.852245088 +KY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,115.3909015 +KY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.667016534 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.919095 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02777857 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.450629696 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.237083452 +KY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.20338E-05 +KY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,501.013531 +KY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.847271094 +KY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,214.760597 +KY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.68765299 +KY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.887279775 +KY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.475395929 +KY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.682652532 +KY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.00138905 +KY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,42.9512544 +KY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.237807466 +KY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.03397617 +KY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.052319497 +KY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.453593189 +KY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,5.645650517 +KY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005590413 +KY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.67093501 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,30.79877852 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.630737776 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,671.6947786 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048113781 +KY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.912963109 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.591136576 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.359225894 +KY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.021192047 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.207844816 +KY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.150339829 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,205.520476 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,13.86629977 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.102697508 +KY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,14.78512967 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.718487381 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.114857973 +KY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004849551 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016486989 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.30558621 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.481360905 +KY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.450925757 +KY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,37.52898056 +KY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,63.45556092 +KY,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1533.69463 +KY,Sulfur Dioxide,2A6_Other-minerals,,TON,500.9398766 +KY,Sulfur Dioxide,2B_Chemicals-other,,TON,202.6286443 +KY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,904.5433731 +KY,Sulfur Dioxide,2C3_Aluminum-production,,TON,420.7477664 +KY,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,152.20539 +KY,Sulfur Dioxide,2C7a_Copper-production,,TON,0.105 +KY,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +KY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0 +KY,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,1.0436878 +KY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,4780.047528 +KY,Sulfur Dioxide,3Dc_Other-farm,,TON,0.006504 +KY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,43.9192 +KY,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,147.0645341 +KY,Sulfur Dioxide,5C_Incineration,,TON,0.471468716 +KY,Sulfur Dioxide,5C_Incineration,biomass,TON,2.784851898 +KY,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,168.7680586 +KY,Sulfur Dioxide,5C_Open-burning-residential,,TON,90.9064679 +KY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.092294552 +KY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.00530019 +KY,Volatile Organic Compounds,11C_Other-natural,,TON,501762.2234 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.0083581 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,7.871871648 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,824.755184 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,339.1062493 +KY,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.208399323 +KY,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,0.77486655 +KY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,659.0448366 +KY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,5.51306431 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,68.18783258 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,184.4411743 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19.3107357 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,69.70967224 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,32.86888961 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,57.32451327 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.007135738 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.074167889 +KY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,959.2650542 +KY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,21.40622186 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0074894 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.16936983 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,395.0021175 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,212.8819693 +KY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.032020613 +KY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1155.650781 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,626.6351324 +KY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,26161.178 +KY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,70.50222696 +KY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1056.878069 +KY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,235.9226183 +KY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,189.4988351 +KY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.483491489 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1090.126435 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,196.9541248 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,969.8366452 +KY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,211.3417891 +KY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,884.6642988 +KY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,408.0390063 +KY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.930087322 +KY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,338.1712552 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,33.56880525 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.079666066 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.818130411 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.84076071 +KY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,92.1435472 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,56.31314618 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,608.6799174 +KY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.33992902 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,16.86327938 +KY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3531.497155 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,9063.059549 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.39248898 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.425999999 +KY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,135.531622 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,288.7585753 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,88.26375229 +KY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.012849968 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.57091619 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2772.187609 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.65051858 +KY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5182.147903 +KY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,20946.65881 +KY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,323.0604537 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,150.1879299 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,596.7892576 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,9256.383592 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,5407.643333 +KY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,28.68275207 +KY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,16744.99152 +KY,Volatile Organic Compounds,2A1_Cement-production,,TON,11.872 +KY,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,44.188509 +KY,Volatile Organic Compounds,2A6_Other-minerals,,TON,701.4617339 +KY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,10.69130702 +KY,Volatile Organic Compounds,2B_Chemicals-other,,TON,3247.009274 +KY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,111.7790071 +KY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1358.150603 +KY,Volatile Organic Compounds,2C5_Lead-production,,TON,1.20431071 +KY,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,266.3896489 +KY,Volatile Organic Compounds,2C7a_Copper-production,,TON,1.28975 +KY,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.0020659 +KY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,19465.55231 +KY,Volatile Organic Compounds,2D3d_Coating-application,,TON,18722.8057 +KY,Volatile Organic Compounds,2D3e_Degreasing,,TON,3435.110964 +KY,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,36.51659971 +KY,Volatile Organic Compounds,2D3h_Printing,,TON,14055.61576 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,256.6865708 +KY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2181.860788 +KY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,683.7767876 +KY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,28370.61482 +KY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,7391.194996 +KY,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,297.0909242 +KY,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,613.8676511 +KY,Volatile Organic Compounds,3B2_Manure-sheep,,TON,14.2607613 +KY,Volatile Organic Compounds,3B3_Manure-swine,,TON,403.0974332 +KY,Volatile Organic Compounds,3B4_Manure-other,,TON,130.8759377 +KY,Volatile Organic Compounds,3B4_Manure-poultry,,TON,741.2592729 +KY,Volatile Organic Compounds,3B4d_Manure-goats,,TON,16.97150861 +KY,Volatile Organic Compounds,3Dc_Other-farm,,TON,39.526109 +KY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2217.58524 +KY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,357.876 +KY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,45.46625446 +KY,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,673.37235 +KY,Volatile Organic Compounds,5C_Incineration,,TON,6.408540077 +KY,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.780824528 +KY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1148.842821 +KY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,568.6120322 +KY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,187.6108476 +KY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,67.006899 +KY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,8.953298239 +KY,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.2134995 +KY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,178.8621157 +LA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.57875 +LA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,5.2046115 +LA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,552.652263 +LA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,648.3620866 +LA,Ammonia,1A1b_Pet-refining,heavy_oil,TON,0.058651594 +LA,Ammonia,1A1b_Pet-refining,natural_gas,TON,274.8631361 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.216767671 +LA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.214322347 +LA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,207.7666781 +LA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.1887254 +LA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,2.428860033 +LA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.241626907 +LA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +LA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1683.680104 +LA,Ammonia,1A2c_Chemicals,natural_gas,TON,38.546643 +LA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.212062727 +LA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.124317513 +LA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,25.45760896 +LA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1177.188906 +LA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.734097607 +LA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,73.88212362 +LA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,8.924178392 +LA,Ammonia,1A3biii_Road-bus,light_oil,TON,2.176595411 +LA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.035716633 +LA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,117.8567861 +LA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,22.39228843 +LA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,74.77769545 +LA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,4.468478885 +LA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.80361334 +LA,Ammonia,1A3c_Rail,diesel_oil,TON,5.245966851 +LA,Ammonia,1A3c_Rail,light_oil,TON,0.003384199 +LA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,24.05197048 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.886591163 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.032379853 +LA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.243191586 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.653035878 +LA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.074251756 +LA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.195202055 +LA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,3.370647727 +LA,Ammonia,1A4bi_Residential-stationary,biomass,TON,85.0044678 +LA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.146999998 +LA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,291.0260735 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.007745136 +LA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.102766551 +LA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016117858 +LA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.128594649 +LA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.868051178 +LA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.703413431 +LA,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.034730233 +LA,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.105351 +LA,Ammonia,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.021435 +LA,Ammonia,2A6_Other-minerals,,TON,0.002493647 +LA,Ammonia,2B_Chemicals-other,,TON,7202.997591 +LA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.21590575 +LA,Ammonia,2D3d_Coating-application,,TON,14.94415495 +LA,Ammonia,2D3h_Printing,,TON,4.652184 +LA,Ammonia,2H1_Pulp-and-paper,,TON,452.6688972 +LA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,14.907215 +LA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,308.0159753 +LA,Ammonia,3B1a_Cattle-dairy,,TON,918.4995167 +LA,Ammonia,3B1b_Cattle-non-dairy,,TON,3600.36501 +LA,Ammonia,3B2_Manure-sheep,,TON,31.20230713 +LA,Ammonia,3B3_Manure-swine,,TON,120.3561327 +LA,Ammonia,3B4_Manure-other,,TON,836.962836 +LA,Ammonia,3B4_Manure-poultry,,TON,6347.900557 +LA,Ammonia,3B4d_Manure-goats,,TON,112.7671258 +LA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,13695.6 +LA,Ammonia,3Dc_Other-farm,,TON,0.000705 +LA,Ammonia,3F_Ag-res-on-field,,TON,5193.594961 +LA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,8.7162585 +LA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,99.982452 +LA,Ammonia,5C_Incineration,biomass,TON,0.000112005 +LA,Ammonia,5D1_Wastewater-domestic,,TON,15.3417215 +LA,Ammonia,5D2_Wastewater-industrial,biomass,TON,42.33846543 +LA,Ammonia,5E_Other-waste,Other_Fuel,TON,0.11751 +LA,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,30294.507 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,149938.1603 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,122912.7701 +LA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7010.798252 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,518572.3586 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,10122.93813 +LA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.466050857 +LA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,639290.7138 +LA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,791868.9681 +LA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,17725323.54 +LA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,148742.6963 +LA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1234265.501 +LA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,546308.6238 +LA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,67655.92416 +LA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1289.557395 +LA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6437017.401 +LA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,537901.048 +LA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4889636.38 +LA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,120798.6825 +LA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,91174.31873 +LA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4244.071325 +LA,Carbon Dioxide,1A3c_Rail,light_oil,TON,264.0800658 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,80308.62423 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,87490.45809 +LA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3828.989875 +LA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,24025.08583 +LA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,253055.1911 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,247099.9214 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7631.483664 +LA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,740.6222053 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1976.83262 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,79416.86828 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,106893.8117 +LA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,415300.7735 +LA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,138731694.8 +LA,Carbon Monoxide,11C_Other-natural,,TON,122262.1365 +LA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,176.4 +LA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,145.75 +LA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,19.522929 +LA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,16645.858 +LA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,198.87 +LA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.0003 +LA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,6640.149586 +LA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,18001.91725 +LA,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,3.828 +LA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,700.405214 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,257.5068901 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3824.768151 +LA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,120.1393528 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,30260.64814 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.31331972 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,266.8970439 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,405.7160478 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,102.3562517 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,9.462007997 +LA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16979.65652 +LA,Carbon Monoxide,1A2a_Ind-Comb,Other_Fuel,TON,1.17 +LA,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.322 +LA,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,26.72 +LA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,4420.850711 +LA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.198 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1624.397721 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2144.651448 +LA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.137688521 +LA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7509.31976 +LA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,6107.383033 +LA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,277157.2354 +LA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,884.886748 +LA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20568.63227 +LA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1209.274014 +LA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3314.359713 +LA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,5.71280833 +LA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6763.430164 +LA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,9331.631134 +LA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4490.764072 +LA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2501.848882 +LA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3189.835513 +LA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1697.408307 +LA,Carbon Monoxide,1A3c_Rail,light_oil,TON,60.64049908 +LA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,7171.622071 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,208.2615775 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.29289092 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.346077996 +LA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,227.5779355 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,332.7024211 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18661.93465 +LA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,83.06358804 +LA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,71.95038168 +LA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,56779.40718 +LA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,11624.69751 +LA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.73500001 +LA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,616.0726015 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,926.4181144 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2070.221653 +LA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.59888677 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.3886682 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14311.83565 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,210.3609819 +LA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,43964.37827 +LA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,5646.143729 +LA,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,19.98 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,70.886074 +LA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,49.673991 +LA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21761.97936 +LA,Carbon Monoxide,2A6_Other-minerals,,TON,994.381391 +LA,Carbon Monoxide,2B_Chemicals-other,,TON,15404.59283 +LA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,456.247039 +LA,Carbon Monoxide,2C3_Aluminum-production,,TON,102.8884 +LA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,40.81292 +LA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,16.13 +LA,Carbon Monoxide,2D3d_Coating-application,,TON,12.6622 +LA,Carbon Monoxide,2D3h_Printing,,TON,1.108 +LA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,5648.165461 +LA,Carbon Monoxide,2H2_Ethanol Production,,TON,0.00207 +LA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1483.396407 +LA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,573.247561 +LA,Carbon Monoxide,3Dc_Other-farm,,TON,0.35 +LA,Carbon Monoxide,3F_Ag-res-on-field,,TON,16477.14427 +LA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,350.0014624 +LA,Carbon Monoxide,5C_Incineration,,TON,0.309024882 +LA,Carbon Monoxide,5C_Incineration,biomass,TON,6.440418832 +LA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,26361.62368 +LA,Carbon Monoxide,5C_Open-burning-residential,,TON,5200.78741 +LA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,428.7382622 +LA,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.759122 +LA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.691284091 +LA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.74260236 +LA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,52.81688688 +LA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,13.73066346 +LA,Methane,1A2g_Construction_and_Mining,light_oil,TON,7.484368389 +LA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.085005407 +LA,Methane,1A3bii_Road-LDV,diesel_oil,TON,45.73166384 +LA,Methane,1A3bii_Road-LDV,light_oil,TON,673.9617938 +LA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.42269748 +LA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,58.65504411 +LA,Methane,1A3biii_Road-bus,diesel_oil,TON,14.99821314 +LA,Methane,1A3biii_Road-bus,light_oil,TON,9.410594193 +LA,Methane,1A3biii_Road-bus,natural_gas,TON,4.73993418 +LA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,402.0110554 +LA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,14.84906007 +LA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,117.0268859 +LA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.534641129 +LA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.516095623 +LA,Methane,1A3c_Rail,diesel_oil,TON,0.191592127 +LA,Methane,1A3c_Rail,light_oil,TON,0.169382974 +LA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.334453011 +LA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,58.55841618 +LA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,48.73546425 +LA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.799437934 +LA,Methane,1A4bi_Residential-mobile,light_oil,TON,197.1164966 +LA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.585683536 +LA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.767556762 +LA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.23708264 +LA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.077380114 +LA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,112.8092391 +LA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.312792915 +LA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,397.7496529 +LA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,141824.3136 +LA,Nitrogen Oxides,11C_Other-natural,,TON,21761.74992 +LA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,1981.7 +LA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,195.73 +LA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,75.115474 +LA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,8524.361 +LA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,1215.95 +LA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.0014 +LA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,17592.19397 +LA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,17161.81243 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,4.552 +LA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,572.522682 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,723.3776186 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,344.177297 +LA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19.76910447 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,13334.22144 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,11.95377324 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,703.7104607 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,891.8781992 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,497.5486438 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,15.09960029 +LA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,46752.64468 +LA,Nitrogen Oxides,1A2a_Ind-Comb,Other_Fuel,TON,0.63 +LA,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,1.469 +LA,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,31.82 +LA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,3977.104506 +LA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.48 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2834.989453 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,27.40479122 +LA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022180511 +LA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1557.617686 +LA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2112.272097 +LA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,27743.76731 +LA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,327.7541912 +LA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2121.354658 +LA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2986.900416 +LA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,311.7146654 +LA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.35243548 +LA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17962.55063 +LA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,1072.888467 +LA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13182.43757 +LA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,233.7575428 +LA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,154.8394221 +LA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,9017.834958 +LA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.540694024 +LA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,52230.98754 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,41.27690331 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,42.94603514 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.085556647 +LA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1338.011307 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,635.1657752 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,212.4378029 +LA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.88676751 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,182.4301824 +LA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,482.6538418 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,199.2775649 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,2.645999872 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1488.791825 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2028.382999 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,37.69360764 +LA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.776689315 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.6115848 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,150.5579572 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1037.668977 +LA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2759.406945 +LA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,5236.18419 +LA,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,10.2 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,36.712837 +LA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,44.733016 +LA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,15076.1399 +LA,Nitrogen Oxides,2A6_Other-minerals,,TON,2289.110078 +LA,Nitrogen Oxides,2B_Chemicals-other,,TON,14333.26799 +LA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,78.539652 +LA,Nitrogen Oxides,2C3_Aluminum-production,,TON,762.0219 +LA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,146.03151 +LA,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,3.23 +LA,Nitrogen Oxides,2D3d_Coating-application,,TON,15.7323 +LA,Nitrogen Oxides,2D3h_Printing,,TON,1.322 +LA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5854.466842 +LA,Nitrogen Oxides,2H2_Ethanol Production,,TON,0.00207 +LA,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,733.43351 +LA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,249.643974 +LA,Nitrogen Oxides,3Dc_Other-farm,,TON,0.42 +LA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,801.6969894 +LA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,83.909943 +LA,Nitrogen Oxides,5C_Incineration,,TON,12.63790842 +LA,Nitrogen Oxides,5C_Incineration,biomass,TON,30.29510778 +LA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,639.8452044 +LA,Nitrogen Oxides,5C_Open-burning-residential,,TON,367.114401 +LA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,23.7337248 +LA,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,7.079831 +LA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.495211243 +LA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,559.8700946 +LA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.508204333 +LA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.26252476 +LA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.225380455 +LA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.432583071 +LA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.101902307 +LA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.66987401 +LA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12.55689832 +LA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.774237045 +LA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.054051404 +LA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.81530718 +LA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,5647.161656 +LA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,25.875385 +LA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,19.274 +LA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.418512756 +LA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,679.77014 +LA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,130.0881 +LA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.000094121 +LA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,532.3148653 +LA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,2060.303107 +LA,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.153168293 +LA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,25.49215916 +LA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.146099572 +LA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.000928796 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,14810.84783 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.137056808 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.82835255 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,971.7634662 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,323.8387018 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.528109925 +LA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1233.631814 +LA,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.076040948 +LA,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,1.8058792 +LA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,263.213745 +LA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0095 +LA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,67188.48613 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,135.0946166 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.680583529 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.111728451 +LA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,50.60419589 +LA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1571.009899 +LA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.158760014 +LA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.080799987 +LA,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,94.00672032 +LA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.01 +LA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,16.44446072 +LA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.998770276 +LA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.191358 +LA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,141.9681859 +LA,PM10 Filterable,2A1_Cement-production,,TON,1.63 +LA,PM10 Filterable,2A2_Lime-production,,TON,0.795607204 +LA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,21478.85211 +LA,PM10 Filterable,2A6_Other-minerals,,TON,10888.63214 +LA,PM10 Filterable,2B_Chemicals-other,,TON,3011.204718 +LA,PM10 Filterable,2C_Iron-steel-alloy,,TON,31.36430493 +LA,PM10 Filterable,2C3_Aluminum-production,,TON,91.8910415 +LA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,199.3040877 +LA,PM10 Filterable,2C7a_Copper-production,,TON,2.062993 +LA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,7.59 +LA,PM10 Filterable,2D3d_Coating-application,,TON,14.937 +LA,PM10 Filterable,2H1_Pulp-and-paper,,TON,1992.522823 +LA,PM10 Filterable,2H2_Food-and-beverage,,TON,795.5828986 +LA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1369.802775 +LA,PM10 Filterable,2I_Wood-processing,,TON,1.797649 +LA,PM10 Filterable,3B1a_Cattle-dairy,,TON,85.65320527 +LA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,9194.360546 +LA,PM10 Filterable,3Dc_Other-farm,,TON,47325.49001 +LA,PM10 Filterable,5A_Solid-waste-disposal,,TON,176.6398373 +LA,PM10 Filterable,5C_Incineration,biomass,TON,1.982654652 +LA,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.00151746 +LA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3263.210615 +LA,PM10 Filterable,5C_Open-burning-residential,,TON,1962.887564 +LA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,145.4647676 +LA,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,6.006029597 +LA,PM10 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,0.061598 +LA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,3.775 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,336.7 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,20.95 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.80469 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,738.07526 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,141.17 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0001 +LA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1136.31883 +LA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3353.300735 +LA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.216 +LA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,63.799077 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,41.05944472 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.43003537 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.857629349 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,16901.16863 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,44.42106136 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1056.292876 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,363.2026721 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.963763363 +LA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2775.113974 +LA,PM10 Primary (Filt + Cond),1A2a_Ind-Comb,Other_Fuel,TON,0.02 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.1019 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,2.42 +LA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,327.45198 +LA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.025 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,257.1847879 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,16.04438562 +LA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000187224 +LA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,73.45920275 +LA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,67188.48613 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,122.3652967 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1675.592144 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,21.93860329 +LA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,115.5955918 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,237.4807144 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,12.31680293 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.17436062 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1351.128873 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,59.56028181 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,901.5435293 +LA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.87692536 +LA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.933639087 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,264.0389007 +LA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.033567965 +LA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1308.278306 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,140.8195783 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.826307585 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.234200785 +LA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,100.3959647 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,57.53409137 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,22.94834462 +LA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.485869802 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,12.2003263 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,217.5259779 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1632.934319 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.349860004 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.007895007 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,177.7653863 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.986500939 +LA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.089801092 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.12703231 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,88.04095959 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.80407876 +LA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,129.3496025 +LA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,164.3228688 +LA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.58 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,16.66850045 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.012377546 +LA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.271358 +LA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,269.2411479 +LA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,1.63 +LA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.856721 +LA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,21478.85211 +LA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,10925.83136 +LA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,4007.703081 +LA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,84.881238 +LA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,92.0783 +LA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,271.806071 +LA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.062993 +LA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,7.59 +LA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,29.0027 +LA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.098 +LA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2735.439896 +LA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2659.937547 +LA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1370.138375 +LA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,1.797649 +LA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,85.65320527 +LA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9194.360546 +LA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,47325.88358 +LA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1833.383293 +LA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,186.095654 +LA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.934290985 +LA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.262595766 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.002 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3263.210615 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1962.887564 +LA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,145.4647676 +LA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,8.584679 +LA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.061598 +LA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,3.775 +LA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,21.90239 +LA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,19.274 +LA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.187721527 +LA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,346.984823 +LA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,130.0881 +LA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.000094121 +LA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,527.5216334 +LA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1693.042015 +LA,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.119107052 +LA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,25.46235916 +LA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.02792959 +LA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.000928796 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,12785.20499 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.401332353 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.80361803 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,113.3775476 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,296.8285422 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.528133896 +LA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,1225.817143 +LA,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.076040948 +LA,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,1.8058792 +LA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,256.9423543 +LA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00890625 +LA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9247.559245 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,115.9178169 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.680164714 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.099014605 +LA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,50.55929074 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1521.766283 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.122010004 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.69443996 +LA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,91.46494436 +LA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.01 +LA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,13.19727826 +LA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.376509154 +LA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.191358 +LA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,141.5872449 +LA,PM2.5 Filterable,2A1_Cement-production,,TON,1.63 +LA,PM2.5 Filterable,2A2_Lime-production,,TON,0.628322205 +LA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2147.885211 +LA,PM2.5 Filterable,2A6_Other-minerals,,TON,1831.506743 +LA,PM2.5 Filterable,2B_Chemicals-other,,TON,2594.316319 +LA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,16.16392493 +LA,PM2.5 Filterable,2C3_Aluminum-production,,TON,36.3619415 +LA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,133.1950223 +LA,PM2.5 Filterable,2C7a_Copper-production,,TON,0.618898 +LA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,7.59 +LA,PM2.5 Filterable,2D3d_Coating-application,,TON,13.50798557 +LA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1470.313588 +LA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,328.17618 +LA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,846.3574797 +LA,PM2.5 Filterable,2I_Wood-processing,,TON,1.797649 +LA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,17.80294618 +LA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1911.039589 +LA,PM2.5 Filterable,3Dc_Other-farm,,TON,9381.452627 +LA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,33.35965438 +LA,PM2.5 Filterable,5C_Incineration,biomass,TON,1.401702318 +LA,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.00151746 +LA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2975.280484 +LA,PM2.5 Filterable,5C_Open-burning-residential,,TON,1797.591767 +LA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,112.1609855 +LA,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,6.006029597 +LA,PM2.5 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,0.061598 +LA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,1.632 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,10.1 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,20.95 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.573898781 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,405.28994 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,141.17 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.0001 +LA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1109.965598 +LA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,2948.326586 +LA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.181938765 +LA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,63.102277 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.71186131 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.09020616 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.857629349 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,14127.68629 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,0.401476926 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,41.45804204 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,197.6720601 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,336.2088044 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.963871428 +LA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2678.08386 +LA,PM2.5 Primary (Filt + Cond),1A2a_Ind-Comb,Other_Fuel,TON,0.02 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.1019 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,2.42 +LA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,313.7415897 +LA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.02440625 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,249.4692248 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,14.76877088 +LA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000187224 +LA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,66.69274677 +LA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9247.559245 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,83.20337236 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,506.8857843 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.10120053 +LA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.88028004 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,171.6613983 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.491387344 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.027040052 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,856.6675105 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,17.57032711 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,586.5673188 +LA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,3.879523717 +LA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.963553654 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,256.1149094 +LA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.030946627 +LA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1249.66404 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,121.6412948 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.825824407 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.221897387 +LA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,100.3525883 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,55.8080613 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,21.16255173 +LA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.485869802 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,11.83431516 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,200.1334534 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1583.690703 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.313109997 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +LA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.621535073 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,172.4324195 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.507640103 +LA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.089801092 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.06322165 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,80.99861932 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.11995449 +LA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,119.0016542 +LA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,161.7811113 +LA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.58 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,13.41247925 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,1.398955156 +LA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.271358 +LA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,268.8602073 +LA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,1.63 +LA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.689436 +LA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2147.885211 +LA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1868.705965 +LA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,3416.303868 +LA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,46.414914 +LA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,36.5492 +LA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,157.2403696 +LA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.618898 +LA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,7.59 +LA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,27.57368557 +LA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.098 +LA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2163.246484 +LA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2192.530863 +LA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,846.6930797 +LA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,1.797649 +LA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,17.80294618 +LA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1911.039589 +LA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,9381.820097 +LA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1389.224781 +LA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,42.81547108 +LA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.784977029 +LA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.747957389 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.002 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2975.280484 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1797.591767 +LA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,112.1609855 +LA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,8.124679 +LA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.061598 +LA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.632 +LA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,9927 +LA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,62.47 +LA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.733973 +LA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,29301.233 +LA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,6194.96 +LA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.0001 +LA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,94.296943 +LA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,8492.039581 +LA,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0 +LA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,425.538657 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.435241037 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.992869894 +LA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.039292696 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1891.340668 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.06354382 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3447.123208 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4276.773749 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.747854482 +LA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,985.3997192 +LA,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.1261 +LA,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.45 +LA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,8045.328141 +LA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.009 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4.245405565 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.155040642 +LA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.18657E-06 +LA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,260.3602479 +LA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.792899417 +LA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,372.4081242 +LA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.264525611 +LA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.95775701 +LA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.734476997 +LA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.416048833 +LA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.006827549 +LA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,54.59075516 +LA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,11.24173076 +LA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.56926185 +LA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.524761484 +LA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.884322433 +LA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,5.910490314 +LA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004252166 +LA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,919.5890241 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,8.671513552 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.670077827 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.132460719 +LA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,118.0418442 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.696944998 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.365002523 +LA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.021452826 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.209163404 +LA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,4.147007761 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,29.76286143 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.043699956 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,9.240214882 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.187373919 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.12533289 +LA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.004151443 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017266213 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.301442473 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.982647776 +LA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.822922835 +LA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,489.6114024 +LA,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.03 +LA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,30.090894 +LA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.222054 +LA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,350.8179062 +LA,Sulfur Dioxide,2A6_Other-minerals,,TON,9135.833386 +LA,Sulfur Dioxide,2B_Chemicals-other,,TON,52562.86041 +LA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,33.003231 +LA,Sulfur Dioxide,2C3_Aluminum-production,,TON,1.5251 +LA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,172.999209 +LA,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.42 +LA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.1362 +LA,Sulfur Dioxide,2D3h_Printing,,TON,0.0088 +LA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1930.805717 +LA,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,7.201432 +LA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,64.424728 +LA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0001 +LA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,414.2408134 +LA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,20.407512 +LA,Sulfur Dioxide,5C_Incineration,,TON,1.888165453 +LA,Sulfur Dioxide,5C_Incineration,biomass,TON,0.053094725 +LA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,265.5357743 +LA,Sulfur Dioxide,5C_Open-burning-residential,,TON,61.18573146 +LA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.9092953 +LA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.02711 +LA,Volatile Organic Compounds,11C_Other-natural,,TON,1111618.982 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,33.70261122 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.630048815 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.981011877 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,150.9979891 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,33.31158092 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.000100008 +LA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,712.7039581 +LA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,379.3691819 +LA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,8045.039274 +LA,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.994 +LA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,187.920175 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,52.23559727 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,114.1374576 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.41703225 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1102.80584 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,63.85699767 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,4.065713665 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.42732724 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,27.92884972 +LA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,3428.917963 +LA,Volatile Organic Compounds,1A2a_Ind-Comb,Other_Fuel,TON,9.22 +LA,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.1388 +LA,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,27.38 +LA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,909.990245 +LA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.131 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,316.1112981 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,144.4591093 +LA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.018374981 +LA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1948.862187 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,578.7340107 +LA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,20525.72807 +LA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,77.36378604 +LA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1518.206904 +LA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,284.6374799 +LA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,259.0232935 +LA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.33773025 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1595.698261 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,417.780451 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,813.4101812 +LA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,124.0257907 +LA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1042.388917 +LA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,447.5859673 +LA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.567772926 +LA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2748.837806 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,6.872999834 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.090661213 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.072939752 +LA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,147.909226 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,79.58418303 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,659.1998003 +LA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.53478259 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,17.15085183 +LA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,3381.932516 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1653.777936 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.104810999 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +LA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,84.70233304 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,179.8180779 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,120.8998987 +LA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.915898501 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.76195524 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3017.630151 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,56.878956 +LA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10814.90985 +LA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,32357.87538 +LA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,755.4619746 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,439.7585787 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,631.5591065 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,29801.94058 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4706.817985 +LA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,279.725006 +LA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,25424.10165 +LA,Volatile Organic Compounds,2A6_Other-minerals,,TON,106.3147556 +LA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,3.351825084 +LA,Volatile Organic Compounds,2B_Chemicals-other,,TON,10023.99588 +LA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,15.686044 +LA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,10.9254 +LA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,240.073772 +LA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,20532.8675 +LA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,3.97 +LA,Volatile Organic Compounds,2D3d_Coating-application,,TON,10203.72597 +LA,Volatile Organic Compounds,2D3e_Degreasing,,TON,2036.525067 +LA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,21.12419976 +LA,Volatile Organic Compounds,2D3h_Printing,,TON,4541.103974 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,80.2795267 +LA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,707.1839337 +LA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,14373.29089 +LA,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,7.028747 +LA,Volatile Organic Compounds,2H2_Ethanol Production,,TON,0.003672 +LA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,860.2586973 +LA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,5000.376591 +LA,Volatile Organic Compounds,2I_Wood-processing,,TON,10.843604 +LA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,73.47996557 +LA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,288.0292036 +LA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,2.496184314 +LA,Volatile Organic Compounds,3B3_Manure-swine,,TON,9.628490853 +LA,Volatile Organic Compounds,3B4_Manure-other,,TON,66.95702588 +LA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,507.8321257 +LA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,9.02136939 +LA,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.181 +LA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2750.864489 +LA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2192.578621 +LA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,196.051013 +LA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,707.45152 +LA,Volatile Organic Compounds,5C_Incineration,,TON,0.213874194 +LA,Volatile Organic Compounds,5C_Incineration,biomass,TON,1.746223384 +LA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1807.562789 +LA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,382.7114256 +LA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,107.184562 +LA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,78.789465 +LA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,616.35956 +LA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.5908 +LA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,31.674171 +MA,Ammonia,1A1a_Public-Electricity,biomass,TON,4.807 +MA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.432 +MA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,1.341 +MA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,5.244323 +MA,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.4402 +MA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,99.9224 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.321496512 +MA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.586023728 +MA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,32.71647367 +MA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.13147499 +MA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.001109288 +MA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.366468495 +MA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.130896012 +MA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,92.12498481 +MA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.0248 +MA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0095 +MA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.49637498 +MA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.273258051 +MA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.747036772 +MA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1563.808197 +MA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.558465034 +MA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,69.78038038 +MA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,7.841463989 +MA,Ammonia,1A3biii_Road-bus,light_oil,TON,3.036108551 +MA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.007846297 +MA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,28.56063027 +MA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.02994866 +MA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,44.29378892 +MA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,25.53053071 +MA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.87559985 +MA,Ammonia,1A3c_Rail,diesel_oil,TON,1.71730426 +MA,Ammonia,1A3c_Rail,light_oil,TON,0.000459038 +MA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.465139236 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,13.20499248 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.12235901 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.422348154 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.174029144 +MA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.55054637 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.198536775 +MA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.725367869 +MA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.546837945 +MA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,7.327493446 +MA,Ammonia,1A4bi_Residential-stationary,biomass,TON,265.3077974 +MA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,257.859002 +MA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.728784026 +MA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1214.033821 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.137701743 +MA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.009330055 +MA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.023184295 +MA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.190790321 +MA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.528191885 +MA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.47316941 +MA,Ammonia,2A6_Other-minerals,,TON,1.5822 +MA,Ammonia,2B_Chemicals-other,,TON,8.222 +MA,Ammonia,2C_Iron-steel-alloy,,TON,0.337 +MA,Ammonia,2C3_Aluminum-production,,TON,0.0006 +MA,Ammonia,2C6_Zinc-production,,TON,0.024 +MA,Ammonia,2C7_Other-metal,Other_Fuel,TON,4.5028 +MA,Ammonia,2C7a_Copper-production,,TON,0 +MA,Ammonia,2D3d_Coating-application,,TON,8.0596 +MA,Ammonia,2D3e_Degreasing,,TON,0 +MA,Ammonia,2D3h_Printing,,TON,1.4887 +MA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,16.7 +MA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,3.598 +MA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,5.1203 +MA,Ammonia,3B1a_Cattle-dairy,,TON,404.5199982 +MA,Ammonia,3B1b_Cattle-non-dairy,,TON,67.57845969 +MA,Ammonia,3B2_Manure-sheep,,TON,33.7139142 +MA,Ammonia,3B3_Manure-swine,,TON,57.2084523 +MA,Ammonia,3B4_Manure-other,,TON,5592.26965 +MA,Ammonia,3B4_Manure-poultry,,TON,34.97368551 +MA,Ammonia,3B4d_Manure-goats,,TON,63.297462 +MA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,763.3 +MA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.0407 +MA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,139.0121809 +MA,Ammonia,5C_Incineration,,TON,31.637 +MA,Ammonia,5C_Incineration,biomass,TON,14.3985 +MA,Ammonia,5D1_Wastewater-domestic,,TON,23.623584 +MA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.29 +MA,Ammonia,6A_Other-commertial,Other_Fuel,TON,3325.496229 +MA,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,8403.6 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,286102.3488 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,346799.6048 +MA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,19919.95344 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1045946.4 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,22390.50588 +MA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.40856231 +MA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1089898.785 +MA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,302803.3496 +MA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,25861387.4 +MA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,83113.7735 +MA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1287107.62 +MA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,481889.6106 +MA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,96970.55717 +MA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,273.5235 +MA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1860448.916 +MA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,24577.52993 +MA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2356418.912 +MA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,677386.3224 +MA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,250403.4492 +MA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,588.82503 +MA,Carbon Dioxide,1A3c_Rail,light_oil,TON,35.87702107 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,147477.9624 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,222182.0183 +MA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9979.55459 +MA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,67311.30791 +MA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,547371.2901 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,16950.41372 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,670.0719912 +MA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,22.13444749 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2843.29852 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,85428.80447 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,65043.4718 +MA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,252335.1832 +MA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,16090958.06 +MA,Carbon Monoxide,11C_Other-natural,,TON,12054.85685 +MA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,223.9368 +MA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,150.1537 +MA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,292.06 +MA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,59.4686 +MA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.2637 +MA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,885.121 +MA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,28.2343 +MA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.37 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,425.368823 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8489.495726 +MA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,301.8171777 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2247.376148 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,381.1463815 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7.625611921 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,17.21020309 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.546868124 +MA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2367.693821 +MA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,14.5339 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.9443 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0329 +MA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,37.085 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3382.461308 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4639.53684 +MA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.474432002 +MA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12329.73517 +MA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2538.417892 +MA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,248473.3629 +MA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,607.509471 +MA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15289.38618 +MA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,993.1421185 +MA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2232.589359 +MA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,1.058145 +MA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1582.996518 +MA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,313.6786612 +MA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2962.556141 +MA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8078.112435 +MA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9849.09951 +MA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,551.3759825 +MA,Carbon Monoxide,1A3c_Rail,light_oil,TON,7.926506972 +MA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,777.6341723 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,864.0051296 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1035.279894 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.184205133 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,48.45472662 +MA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5636.606069 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,522.6677224 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,45666.25279 +MA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,209.5102302 +MA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,193.6885339 +MA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,123548.0689 +MA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,35839.88673 +MA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1289.29497 +MA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.643920049 +MA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2592.636514 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,59.51752535 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,206.5335051 +MA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.375551091 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,21.0427192 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14287.71968 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,128.653195 +MA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,26879.33812 +MA,Carbon Monoxide,2A6_Other-minerals,,TON,195.3129 +MA,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,0.03 +MA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0.055 +MA,Carbon Monoxide,2C3_Aluminum-production,,TON,0.0176 +MA,Carbon Monoxide,2C6_Zinc-production,,TON,0.63 +MA,Carbon Monoxide,2C7a_Copper-production,,TON,0 +MA,Carbon Monoxide,2D3c_Asphalt-roofing,heavy_oil,TON,21.19184597 +MA,Carbon Monoxide,2D3d_Coating-application,,TON,5.1712 +MA,Carbon Monoxide,2D3e_Degreasing,,TON,0 +MA,Carbon Monoxide,2D3h_Printing,,TON,0.652 +MA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +MA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1120.930278 +MA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.7284 +MA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,136.4310099 +MA,Carbon Monoxide,5C_Incineration,,TON,348.9499345 +MA,Carbon Monoxide,5C_Incineration,biomass,TON,244.1480621 +MA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,16946.90649 +MA,Carbon Monoxide,5C_Open-burning-residential,,TON,2248.943862 +MA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,202.3750524 +MA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,10.7902 +MA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.01 +MA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.120513576 +MA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38.31987485 +MA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,127.8286834 +MA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,27.8334478 +MA,Methane,1A2g_Construction_and_Mining,light_oil,TON,17.54720695 +MA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.346809185 +MA,Methane,1A3bii_Road-LDV,diesel_oil,TON,30.22831915 +MA,Methane,1A3bii_Road-LDV,light_oil,TON,761.8860507 +MA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.39080315 +MA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,56.08792375 +MA,Methane,1A3biii_Road-bus,diesel_oil,TON,17.73065193 +MA,Methane,1A3biii_Road-bus,light_oil,TON,4.080016764 +MA,Methane,1A3biii_Road-bus,natural_gas,TON,0.5405612 +MA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,96.85352603 +MA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.41424123 +MA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,96.1574739 +MA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,9.408396883 +MA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.69302247 +MA,Methane,1A3c_Rail,diesel_oil,TON,0.026331452 +MA,Methane,1A3c_Rail,light_oil,TON,0.023899014 +MA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.819606528 +MA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,152.9746153 +MA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,140.2684324 +MA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.320661318 +MA,Methane,1A4bi_Residential-mobile,light_oil,TON,477.6725175 +MA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.328947246 +MA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.870891903 +MA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.187871042 +MA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.114375337 +MA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,83.57374979 +MA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.89050673 +MA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,245.3655035 +MA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,14331.11764 +MA,Nitrogen Oxides,11C_Other-natural,,TON,918.19932 +MA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,78.0634 +MA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,699.5515 +MA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,577.5 +MA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,163.2115 +MA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,9.0172 +MA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1308.5108 +MA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,8.0058 +MA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.08 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1214.650296 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,836.0845425 +MA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,51.20946154 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,881.0312126 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1685.404307 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,48.08236439 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,44.05862914 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.09485557 +MA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3275.470815 +MA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,17.494 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,7.8954 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0235 +MA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,25.4392 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6071.65975 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,78.98393692 +MA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.090408718 +MA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3499.958731 +MA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,795.0660098 +MA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,21960.99956 +MA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,244.6594574 +MA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1479.234218 +MA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2603.078274 +MA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,282.8317085 +MA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.4248457 +MA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5350.134321 +MA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,51.57657819 +MA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7415.253475 +MA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1197.599012 +MA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,482.1773274 +MA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4102.688344 +MA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.087209079 +MA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5308.506745 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,300.9973944 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4354.720927 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.73384272 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.441943713 +MA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6245.855333 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1013.334304 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,625.1558888 +MA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,53.48109581 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,490.9207326 +MA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1182.821671 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,678.0933185 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4316.559565 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,13.15439982 +MA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,6291.512048 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,137.162785 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.406497114 +MA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.06878834 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.7278953 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,191.4560203 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,643.357876 +MA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1771.452927 +MA,Nitrogen Oxides,2A6_Other-minerals,,TON,189.4305 +MA,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,0.04 +MA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.2006 +MA,Nitrogen Oxides,2C3_Aluminum-production,,TON,2.1024 +MA,Nitrogen Oxides,2C6_Zinc-production,,TON,0.747 +MA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,11.9619 +MA,Nitrogen Oxides,2C7a_Copper-production,,TON,0 +MA,Nitrogen Oxides,2D3c_Asphalt-roofing,heavy_oil,TON,6.35755374 +MA,Nitrogen Oxides,2D3d_Coating-application,,TON,5.196 +MA,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +MA,Nitrogen Oxides,2D3h_Printing,,TON,1.254 +MA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,4.9228 +MA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,40.8552 +MA,Nitrogen Oxides,5C_Incineration,,TON,1347.661022 +MA,Nitrogen Oxides,5C_Incineration,biomass,TON,3436.474753 +MA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,411.3326533 +MA,Nitrogen Oxides,5C_Open-burning-residential,,TON,158.7489656 +MA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,11.20290475 +MA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,1.4535 +MA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.01 +MA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.976020037 +MA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,635.6428896 +MA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.318482644 +MA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,45.71434882 +MA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.014338021 +MA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.628171921 +MA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.02241988 +MA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.626870873 +MA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.347147146 +MA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.13834132 +MA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10.22489938 +MA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.722629756 +MA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,195.7495785 +MA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,5.4402 +MA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,18.4004 +MA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,12.78 +MA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,8.2713 +MA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0834 +MA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,155.1168 +MA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,21.7115 +MA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.01 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1809.289653 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,105.1632145 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.191289637 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030091445 +MA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,72.62816462 +MA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.3148 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2776 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +MA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.2815 +MA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,19645.35969 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,719.2136313 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,330.5231973 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.39089035 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.338943701 +MA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,97.00906646 +MA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,4773.825954 +MA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,267.32 +MA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.712046336 +MA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.68320774 +MA,PM10 Filterable,2A1_Cement-production,,TON,11.8 +MA,PM10 Filterable,2A2_Lime-production,,TON,6.0998 +MA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,10931.39544 +MA,PM10 Filterable,2A6_Other-minerals,,TON,2050.65153 +MA,PM10 Filterable,2B_Chemicals-other,,TON,9.1918 +MA,PM10 Filterable,2C_Iron-steel-alloy,,TON,4.0697 +MA,PM10 Filterable,2C3_Aluminum-production,,TON,3.4163 +MA,PM10 Filterable,2C6_Zinc-production,,TON,0.023 +MA,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,41.0435 +MA,PM10 Filterable,2C7a_Copper-production,,TON,1.411 +MA,PM10 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,7.34020961 +MA,PM10 Filterable,2D3d_Coating-application,,TON,20.1604 +MA,PM10 Filterable,2D3e_Degreasing,,TON,0.3407 +MA,PM10 Filterable,2D3h_Printing,,TON,0.172 +MA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.8663 +MA,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,26.8301 +MA,PM10 Filterable,2H2_Food-and-beverage,,TON,250.2060118 +MA,PM10 Filterable,2H3_Other-industrial-processes,,TON,0 +MA,PM10 Filterable,2I_Wood-processing,,TON,0 +MA,PM10 Filterable,3B1a_Cattle-dairy,,TON,94.34959106 +MA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,161.9978945 +MA,PM10 Filterable,3Dc_Other-farm,,TON,10611.93873 +MA,PM10 Filterable,5A_Solid-waste-disposal,,TON,52.4879 +MA,PM10 Filterable,5C_Incineration,,TON,8.195080261 +MA,PM10 Filterable,5C_Incineration,biomass,TON,25.83587448 +MA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2097.796601 +MA,PM10 Filterable,5C_Open-burning-residential,,TON,848.7991636 +MA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,68.66296214 +MA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0803 +MA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,6.4278 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.690097932 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,20.22265467 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,14.044111 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,9.429282 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.085874955 +MA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,281.294706 +MA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,21.7115 +MA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.01548822 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,67.32812531 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39.70991407 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.393412771 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1869.949541 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,129.2117864 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,6.926178809 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.030878584 +MA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,136.6511444 +MA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.3788 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2776 +MA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.2815 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,552.921016 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,34.92705401 +MA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000562767 +MA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,170.8001713 +MA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,19645.35969 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,53.99702057 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2997.115307 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.19820788 +MA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,150.6657897 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,160.0666326 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,18.10998736 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.03727827 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,415.1225419 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.274620331 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,694.1425639 +MA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,86.84192052 +MA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,32.26983133 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,120.8898682 +MA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004575598 +MA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,133.3287515 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,731.7376449 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,374.6673636 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.136613087 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.631585258 +MA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,178.4666469 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.2828309 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,58.11498045 +MA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.263203984 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.12195799 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,517.4092944 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4975.759894 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,613.7044435 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.769039924 +MA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,33.73095989 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.72170359 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.734746217 +MA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002742407 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.10874248 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,65.30531253 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.1106048 +MA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,82.32699392 +MA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,12.6962028 +MA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,11.8417648 +MA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,10931.39544 +MA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2054.032712 +MA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,9.319336707 +MA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4.0697 +MA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,3.4163 +MA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.023 +MA,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,44.55080029 +MA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,1.411 +MA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,7.39295374 +MA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,20.1604 +MA,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.3407 +MA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.172 +MA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.8663 +MA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,31.015886 +MA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2963.127548 +MA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,152.4240111 +MA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,94.34959106 +MA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,161.9978945 +MA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,10611.93873 +MA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,65.0077 +MA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,8.152864184 +MA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,27.42713456 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2097.796601 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,848.7991636 +MA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,68.66296214 +MA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0803 +MA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,7.254164 +MA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,5.3847 +MA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,18.3122 +MA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,9.06 +MA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,6.2256 +MA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0574 +MA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,147.7247 +MA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,19.1007 +MA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.01 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1555.922657 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,87.06427972 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.19737054 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030120813 +MA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,69.70779414 +MA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.3114 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2666 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +MA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.2737 +MA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3182.866688 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,621.3450881 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,325.4390978 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.710954108 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.282726455 +MA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,87.02143058 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,4692.788679 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,202.87 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.529210621 +MA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.803363836 +MA,PM2.5 Filterable,2A1_Cement-production,,TON,4.16470588 +MA,PM2.5 Filterable,2A2_Lime-production,,TON,3.942531572 +MA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1093.163134 +MA,PM2.5 Filterable,2A6_Other-minerals,,TON,412.178026 +MA,PM2.5 Filterable,2B_Chemicals-other,,TON,8.8273 +MA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,4.0697 +MA,PM2.5 Filterable,2C3_Aluminum-production,,TON,1.8213 +MA,PM2.5 Filterable,2C6_Zinc-production,,TON,0.014 +MA,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,39.39434531 +MA,PM2.5 Filterable,2C7a_Copper-production,,TON,1.411 +MA,PM2.5 Filterable,2D3c_Asphalt-roofing,heavy_oil,TON,7.34020961 +MA,PM2.5 Filterable,2D3d_Coating-application,,TON,19.9763 +MA,PM2.5 Filterable,2D3e_Degreasing,,TON,0.33399362 +MA,PM2.5 Filterable,2D3h_Printing,,TON,0.172 +MA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.8648 +MA,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,23.83758309 +MA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,37.73746622 +MA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,0 +MA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,19.61048249 +MA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,33.67111469 +MA,PM2.5 Filterable,3Dc_Other-farm,,TON,2120.55729 +MA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,20.4140875 +MA,PM2.5 Filterable,5C_Incineration,,TON,7.905585309 +MA,PM2.5 Filterable,5C_Incineration,biomass,TON,24.84916302 +MA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1912.696851 +MA,PM2.5 Filterable,5C_Open-burning-residential,,TON,777.32129 +MA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,52.9427651 +MA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0803 +MA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,6.4278 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,5.634597932 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,20.13445467 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,10.324108 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,7.383582 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.059874955 +MA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,273.902606 +MA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,19.1007 +MA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.01548822 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65.30617734 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,39.03469424 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.393412771 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1616.520296 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,111.1281859 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.933019327 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.030904745 +MA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,133.7770623 +MA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.3754 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2666 +MA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.2737 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,536.333379 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,32.15112411 +MA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000562767 +MA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,152.6826577 +MA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3182.866688 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,33.89276729 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,894.3253987 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.76215296 +MA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.01913909 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,106.0388747 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.350868471 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.007281019 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,228.5048077 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.023346186 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,415.1828484 +MA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,22.00516743 +MA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.58772871 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,117.2630008 +MA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004218708 +MA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,128.0808068 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,633.7795008 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,369.1090126 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.481010292 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.580059198 +MA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,169.02044 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,83.6943523 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,53.59274864 +MA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.263203984 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,31.15829746 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,476.0414516 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4894.722618 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,549.2396876 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.587600059 +MA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,27.83303542 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10.40005059 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,1.595966694 +MA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002742407 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.01548039 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,60.08225236 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.6872871 +MA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,75.7408672 +MA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,5.0609077 +MA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,9.684496309 +MA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1093.163134 +MA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,415.5592081 +MA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,8.954836707 +MA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4.0697 +MA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1.8213 +MA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.014 +MA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,42.90164561 +MA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,1.411 +MA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,heavy_oil,TON,7.39295374 +MA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,19.9763 +MA,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0.33399362 +MA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.172 +MA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.8648 +MA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,28.02336909 +MA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2750.658976 +MA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,121.14236 +MA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,19.61048249 +MA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,33.67111469 +MA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2120.55729 +MA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,32.9338875 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,7.877338705 +MA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,26.42645362 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1912.696851 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,777.32129 +MA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,52.9427651 +MA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0803 +MA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,7.254164 +MA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,1.3691 +MA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,42.9518 +MA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,551.41 +MA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,439.6036 +MA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.1798 +MA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,113.5701 +MA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,35.942 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.32087356 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.228823775 +MA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.111652994 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,94.45974232 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,114.0041494 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2.178822462 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,100.864298 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.090579107 +MA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,86.96752444 +MA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0581 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.5997 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0348 +MA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1208 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.65918888 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.347736689 +MA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.45854E-05 +MA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,478.6382868 +MA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.602529505 +MA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,531.4147823 +MA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.713432707 +MA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26.4741365 +MA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.152507795 +MA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.989630424 +MA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.001448142 +MA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15.74985182 +MA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.504254029 +MA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20.06083908 +MA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13.89759833 +MA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.126163339 +MA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,1.935269097 +MA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000590774 +MA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,57.81545825 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,33.59604147 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,329.6451838 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,49.65889088 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.065094625 +MA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,62.19708503 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.253246205 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.545753624 +MA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.055908098 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.58528713 +MA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.989614994 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,122.0520428 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1830.798712 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,5.367600535 +MA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,39.02297953 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.146214102 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.011163408 +MA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000124048 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024902179 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.440149508 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.597928195 +MA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.08409117 +MA,Sulfur Dioxide,2A6_Other-minerals,,TON,97.1928 +MA,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.0001 +MA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.016 +MA,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.002 +MA,Sulfur Dioxide,2C6_Zinc-production,,TON,0.004 +MA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0001 +MA,Sulfur Dioxide,2C7a_Copper-production,,TON,0 +MA,Sulfur Dioxide,2D3c_Asphalt-roofing,heavy_oil,TON,4.662206101 +MA,Sulfur Dioxide,2D3d_Coating-application,,TON,5.1016 +MA,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +MA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2.5653 +MA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,44.8522 +MA,Sulfur Dioxide,5C_Incineration,,TON,302.0619657 +MA,Sulfur Dioxide,5C_Incineration,biomass,TON,339.7085879 +MA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,170.7030571 +MA,Sulfur Dioxide,5C_Open-burning-residential,,TON,26.45816194 +MA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.373259449 +MA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.537 +MA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.0001 +MA,Volatile Organic Compounds,11C_Other-natural,,TON,93425.9582 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,5.8973 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,58.9729 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,16.87 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,4.9354 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0144 +MA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,175.7639 +MA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,26.7666 +MA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.79 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.82941314 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,236.1731692 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,27.63176754 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,67.25059504 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,102.8136163 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.125983437 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.263732269 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.190224577 +MA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,429.6447927 +MA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,2.0654 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.8932 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +MA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.2857 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,671.418296 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,302.408238 +MA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.074967145 +MA,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,28.006045 +MA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1220.810515 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,278.6689519 +MA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,19500.27925 +MA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,72.7283067 +MA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1153.84984 +MA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,215.5292833 +MA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,107.7596016 +MA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.05056006 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,331.3108931 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,12.85625287 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,782.6635836 +MA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,319.6639898 +MA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1373.4712 +MA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,193.9789896 +MA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.171986903 +MA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,231.1270518 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,27.15430557 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,330.7331573 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.794524257 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.671871244 +MA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,460.2690373 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,117.4561635 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1459.463953 +MA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,30.32076567 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,45.51734741 +MA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7499.898086 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5220.974995 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,183.853466 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.514079989 +MA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,356.3763176 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.25769883 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,17.20434579 +MA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.04061067 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.48869008 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2206.984975 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,34.3352039 +MA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5500.072732 +MA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,495.39547 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1495.63512 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,443.5074017 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2618.769557 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3708.601028 +MA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +MA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.1 +MA,Volatile Organic Compounds,2A6_Other-minerals,,TON,90.25118537 +MA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,10.47713234 +MA,Volatile Organic Compounds,2B_Chemicals-other,,TON,299.7059 +MA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,37.3201 +MA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.002 +MA,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.041 +MA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,79.2383 +MA,Volatile Organic Compounds,2C7a_Copper-production,,TON,0 +MA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,17618.6296 +MA,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,328.4736311 +MA,Volatile Organic Compounds,2D3d_Coating-application,,TON,24579.18681 +MA,Volatile Organic Compounds,2D3e_Degreasing,,TON,5172.646576 +MA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,39.8106 +MA,Volatile Organic Compounds,2D3h_Printing,,TON,1638.454627 +MA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +MA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,155.2532878 +MA,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,48.4182 +MA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1180.322151 +MA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,449.5336 +MA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,32.36160164 +MA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,5.406276877 +MA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,2.69711324 +MA,Volatile Organic Compounds,3B3_Manure-swine,,TON,4.57667666 +MA,Volatile Organic Compounds,3B4_Manure-other,,TON,21.98586651 +MA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2.797894179 +MA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,5.06379662 +MA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,58.16824418 +MA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,853.2317255 +MA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,983.616378 +MA,Volatile Organic Compounds,5C_Incineration,,TON,11.31387417 +MA,Volatile Organic Compounds,5C_Incineration,biomass,TON,34.0443293 +MA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1162.01481 +MA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,165.4934945 +MA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,50.59376964 +MA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,124.30114 +MA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,36.1387 +MA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,10.2673 +MA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.2213 +MD,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,4.0328109 +MD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,20.14279 +MD,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.1013866 +MD,Ammonia,1A1a_Public-Electricity,natural_gas,TON,32.2796715 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.590487138 +MD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.29889275 +MD,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,26.74410643 +MD,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.418425077 +MD,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MD,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MD,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.032281585 +MD,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,32.4037133 +MD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.681637441 +MD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.207224767 +MD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,14.81970711 +MD,Ammonia,1A3bii_Road-LDV,light_oil,TON,1464.640099 +MD,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.81052797 +MD,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,90.32178336 +MD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,8.737303892 +MD,Ammonia,1A3biii_Road-bus,light_oil,TON,0.949066458 +MD,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.107394348 +MD,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,51.96231927 +MD,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.787739364 +MD,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.90782741 +MD,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,13.87558059 +MD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.6159132 +MD,Ammonia,1A3c_Rail,diesel_oil,TON,1.584999216 +MD,Ammonia,1A3c_Rail,light_oil,TON,0.001457605 +MD,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.490206628 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.18223735 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.299665552 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.230255313 +MD,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.37257196 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.734962839 +MD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.560335775 +MD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.681332988 +MD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.328050065 +MD,Ammonia,1A4bi_Residential-stationary,biomass,TON,324.0572485 +MD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,42.1260014 +MD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.987000016 +MD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,742.6503099 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.741922117 +MD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.025198048 +MD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021302421 +MD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.620086807 +MD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.454566858 +MD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.003725077 +MD,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.2085 +MD,Ammonia,2A1_Cement-production,,TON,6.27195 +MD,Ammonia,2A6_Other-minerals,,TON,199.37185 +MD,Ammonia,2B_Chemicals-other,,TON,0 +MD,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.07501 +MD,Ammonia,2D3d_Coating-application,,TON,0 +MD,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.30175 +MD,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,182.657 +MD,Ammonia,3B2_Manure-sheep,,TON,61.0700404 +MD,Ammonia,3B4_Manure-other,,TON,374.069559 +MD,Ammonia,3B4_Manure-poultry,,TON,60.8114302 +MD,Ammonia,3B4d_Manure-goats,,TON,32.4600538 +MD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,2187.1 +MD,Ammonia,5C_Incineration,biomass,TON,1.816295 +MD,Ammonia,5D1_Wastewater-domestic,,TON,12.71875029 +MD,Ammonia,5E_Other-waste,Other_Fuel,TON,0.7755 +MD,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,64139.1962 +MD,Carbon Dioxide,1A1a_Public-Electricity,heavy_oil,TON,3128 +MD,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,91510.92875 +MD,Carbon Dioxide,1A1b_Pet-refining,Other_Fuel,TON,15.83735 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,196006.466 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,174639.9316 +MD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10036.59879 +MD,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3968.913347 +MD,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,15905.97978 +MD,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.770329171 +MD,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,279912.8743 +MD,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,288.77 +MD,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,628.83 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,576351.7355 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,16907.66323 +MD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.841035537 +MD,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,709055.9309 +MD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,485919.9829 +MD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,22724938.49 +MD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,119007.3369 +MD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1696287.531 +MD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,535335.881 +MD,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,31092.2965 +MD,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,3983.16417 +MD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3417634.913 +MD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,19798.26044 +MD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2189522.136 +MD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,361851.7713 +MD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,114601.098 +MD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1867.510225 +MD,Carbon Dioxide,1A3c_Rail,light_oil,TON,113.7247727 +MD,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,26555.19996 +MD,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81730.08466 +MD,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6326.95403 +MD,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,653379.7701 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,90414.8628 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,127205.7603 +MD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5632.06707 +MD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,83856.30394 +MD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,622455.2233 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,91333.83568 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1851.451377 +MD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,176.4846034 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2612.94562 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,44523.76976 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,55977.30673 +MD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,217746.3959 +MD,Carbon Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,33.735 +MD,Carbon Dioxide,1B2av_Fugitive-petr-distr,,TON,8572.3619 +MD,Carbon Dioxide,2A1_Cement-production,,TON,9632.944 +MD,Carbon Dioxide,2A6_Other-minerals,,TON,237490.7309 +MD,Carbon Dioxide,2B_Chemicals-other,,TON,23259.43 +MD,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,0.025 +MD,Carbon Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,5627.54 +MD,Carbon Dioxide,2D3d_Coating-application,,TON,8759.4613 +MD,Carbon Dioxide,2D3e_Degreasing,,TON,2444.3352 +MD,Carbon Dioxide,2D3h_Printing,,TON,3425.53259 +MD,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,2751.428 +MD,Carbon Dioxide,2H2_Food-and-beverage,,TON,29588.48028 +MD,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,19140530.61 +MD,Carbon Dioxide,3Dc_Other-farm,,TON,3770.64 +MD,Carbon Dioxide,5A_Solid-waste-disposal,,TON,0 +MD,Carbon Dioxide,5C_Incineration,,TON,26414.3375 +MD,Carbon Dioxide,5C_Incineration,biomass,TON,0.11395 +MD,Carbon Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,2887.248 +MD,Carbon Dioxide,5E_Other-waste,Other_Fuel,TON,9375.9159 +MD,Carbon Monoxide,11C_Other-natural,,TON,14597.1362 +MD,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,94.4492467 +MD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1731.463045 +MD,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,4.899 +MD,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,625.465767 +MD,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,4.307 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,298.2379383 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4563.953937 +MD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,146.7577208 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2312.728846 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.18139492 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,40.64193893 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.218963958 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.203691865 +MD,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,604.486272 +MD,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.4091256 +MD,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.44064 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1770.334956 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3517.141195 +MD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.369010286 +MD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8174.150318 +MD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4260.293412 +MD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,245861.393 +MD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,555.463919 +MD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14373.85636 +MD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,719.0118623 +MD,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,799.6642552 +MD,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,15.05844724 +MD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2583.136525 +MD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,266.9170741 +MD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2518.278063 +MD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6264.719405 +MD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4379.11467 +MD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,510.058068 +MD,Carbon Monoxide,1A3c_Rail,light_oil,TON,25.51141693 +MD,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1254.674333 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,876.9423212 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,106.0130142 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.740722072 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.45614354 +MD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3132.141266 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,340.1599519 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,26445.68424 +MD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,122.714858 +MD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,250.0804372 +MD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,140738.3095 +MD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,40821.46872 +MD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,210.629993 +MD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.93500004 +MD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1614.061237 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,315.3019873 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,493.9961387 +MD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.477901 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.748764 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,8878.374228 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,111.1040916 +MD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,23570.16991 +MD,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0195 +MD,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,44.2372885 +MD,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,29.2 +MD,Carbon Monoxide,2A1_Cement-production,,TON,1745.519046 +MD,Carbon Monoxide,2A2_Lime-production,,TON,0 +MD,Carbon Monoxide,2A6_Other-minerals,,TON,819.797865 +MD,Carbon Monoxide,2B_Chemicals-other,,TON,316.1268515 +MD,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0.253835 +MD,Carbon Monoxide,2C3_Aluminum-production,,TON,0 +MD,Carbon Monoxide,2C5_Lead-production,,TON,0 +MD,Carbon Monoxide,2C7_Other-metal,,TON,0 +MD,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,12.651554 +MD,Carbon Monoxide,2D3d_Coating-application,,TON,5.863075 +MD,Carbon Monoxide,2D3e_Degreasing,,TON,0 +MD,Carbon Monoxide,2D3h_Printing,,TON,2.2953535 +MD,Carbon Monoxide,2H1_Pulp-and-paper,,TON,169.19499 +MD,Carbon Monoxide,2H2_Food-and-beverage,,TON,1373.408736 +MD,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,6.26643 +MD,Carbon Monoxide,3Dc_Other-farm,,TON,2.639424 +MD,Carbon Monoxide,5A_Solid-waste-disposal,,TON,97.6708425 +MD,Carbon Monoxide,5C_Incineration,,TON,81.92645514 +MD,Carbon Monoxide,5C_Incineration,biomass,TON,119.0004707 +MD,Carbon Monoxide,5C_Open-burning-industrial,,TON,0 +MD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,16096.87122 +MD,Carbon Monoxide,5C_Open-burning-residential,,TON,679.3177594 +MD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1848.7318 +MD,Carbon Monoxide,5C_Other-open-burning,,TON,1735.86 +MD,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,2.020315 +MD,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,6.51509 +MD,Methane,1A1a_Public-Electricity,diesel_oil,TON,102.1641687 +MD,Methane,1A1a_Public-Electricity,heavy_oil,TON,0.12 +MD,Methane,1A1a_Public-Electricity,natural_gas,TON,156.9181935 +MD,Methane,1A1b_Pet-refining,Other_Fuel,TON,1241.787256 +MD,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.598908547 +MD,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.9992927 +MD,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,61.68534682 +MD,Methane,1A2_Industrial_fuel_combustion,biomass,TON,0.063722223 +MD,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.320763955 +MD,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.25611E-05 +MD,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,5.304777361 +MD,Methane,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0041825 +MD,Methane,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.012087 +MD,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,12.54643592 +MD,Methane,1A2g_Construction_and_Mining,light_oil,TON,12.76720973 +MD,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.261112972 +MD,Methane,1A3bii_Road-LDV,diesel_oil,TON,37.18950224 +MD,Methane,1A3bii_Road-LDV,light_oil,TON,669.5094784 +MD,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.78819967 +MD,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,57.2660268 +MD,Methane,1A3biii_Road-bus,diesel_oil,TON,20.43316477 +MD,Methane,1A3biii_Road-bus,light_oil,TON,1.303820032 +MD,Methane,1A3biii_Road-bus,natural_gas,TON,23.4264183 +MD,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,165.373218 +MD,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.306579772 +MD,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,91.03905936 +MD,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,8.110513425 +MD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.05273488 +MD,Methane,1A3c_Rail,diesel_oil,TON,0.083766769 +MD,Methane,1A3c_Rail,light_oil,TON,0.074818075 +MD,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.796823397 +MD,Methane,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.088152631 +MD,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,164.7720033 +MD,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.724885627 +MD,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,86.77432705 +MD,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,81.6716842 +MD,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.737315997 +MD,Methane,1A4bi_Residential-mobile,light_oil,TON,533.0619194 +MD,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.479727487 +MD,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.216197815 +MD,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.02174153 +MD,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.105695619 +MD,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,55.96548063 +MD,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.560331609 +MD,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,213.1197936 +MD,Methane,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0005382 +MD,Methane,1B2av_Fugitive-petr-distr,,TON,0.3213643 +MD,Methane,2A1_Cement-production,,TON,0.1844145 +MD,Methane,2A6_Other-minerals,,TON,47.680286 +MD,Methane,2B_Chemicals-other,,TON,0 +MD,Methane,2D3c_Asphalt-roofing,Other_Fuel,TON,0.106731 +MD,Methane,2D3d_Coating-application,,TON,0.1706735 +MD,Methane,2D3e_Degreasing,Other_Fuel,TON,0.0468425 +MD,Methane,2D3h_Printing,,TON,0.0393153 +MD,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,0.30175 +MD,Methane,2H2_Food-and-beverage,,TON,0.565925 +MD,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,44676.3118 +MD,Methane,3Dc_Other-farm,,TON,0.072216 +MD,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,821.0515 +MD,Methane,5C_Incineration,,TON,1.09865 +MD,Methane,5C_Incineration,biomass,TON,0.11395 +MD,Methane,5D2_Wastewater-industrial,Other_Fuel,TON,0.055268 +MD,Methane,5E_Other-waste,Other_Fuel,TON,0.177533 +MD,Nitrogen Oxides,11C_Other-natural,,TON,4400.97066 +MD,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,271.8882626 +MD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,3992.638 +MD,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,24.4005 +MD,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,870.506951 +MD,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,1.7228 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,896.8253327 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,426.1337626 +MD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,25.17637537 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,857.4981055 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,199.0542734 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1478.231811 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.251834471 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.82116093 +MD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,711.7563809 +MD,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2009005 +MD,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.524637 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3169.112715 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,51.67363669 +MD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.068133987 +MD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3016.201347 +MD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1369.538077 +MD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,25373.67584 +MD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,273.167897 +MD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1360.100966 +MD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2040.56516 +MD,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,75.46652995 +MD,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,14.46735802 +MD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9216.567564 +MD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,35.15069755 +MD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5976.06661 +MD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,660.186968 +MD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,220.828261 +MD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,2333.769884 +MD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.260331282 +MD,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8905.937586 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,291.9338936 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,397.0941892 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.897376966 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.770931205 +MD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3960.741109 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,657.629401 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,343.9854911 +MD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,30.99934689 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,644.8971062 +MD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1292.922606 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,669.5031159 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,758.267975 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,17.7660014 +MD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3948.304844 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,642.8405661 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.830278649 +MD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.424996626 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.5618014 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,96.1404675 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,560.4376974 +MD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1525.586186 +MD,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0351 +MD,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,17.737102 +MD,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,69.35 +MD,Nitrogen Oxides,2A1_Cement-production,,TON,2947.401175 +MD,Nitrogen Oxides,2A2_Lime-production,,TON,0 +MD,Nitrogen Oxides,2A6_Other-minerals,,TON,553.7389425 +MD,Nitrogen Oxides,2B_Chemicals-other,,TON,24.856515 +MD,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0 +MD,Nitrogen Oxides,2C3_Aluminum-production,,TON,0 +MD,Nitrogen Oxides,2C5_Lead-production,,TON,0 +MD,Nitrogen Oxides,2C7_Other-metal,,TON,0 +MD,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,4.689397 +MD,Nitrogen Oxides,2D3d_Coating-application,,TON,6.12477 +MD,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +MD,Nitrogen Oxides,2D3h_Printing,,TON,2.8544905 +MD,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,388.298045 +MD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,15.2093538 +MD,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,7.569476 +MD,Nitrogen Oxides,3Dc_Other-farm,,TON,3.142104 +MD,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,23.472063 +MD,Nitrogen Oxides,5C_Incineration,,TON,311.875548 +MD,Nitrogen Oxides,5C_Incineration,biomass,TON,1545.90721 +MD,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0 +MD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,476.238808 +MD,Nitrogen Oxides,5C_Open-burning-residential,,TON,47.95184053 +MD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,69.40261456 +MD,Nitrogen Oxides,5C_Other-open-burning,,TON,49.596 +MD,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,1.20309 +MD,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,4.636445 +MD,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.6923148 +MD,Nitrous Oxide,1A1a_Public-Electricity,heavy_oil,TON,0.02 +MD,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,1.1840821 +MD,Nitrous Oxide,1A1b_Pet-refining,Other_Fuel,TON,0.0011315 +MD,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,0.231689794 +MD,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.150623252 +MD,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.3379E-05 +MD,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3.547253675 +MD,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.011475 +MD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.446600937 +MD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,584.6657872 +MD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.423302352 +MD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,41.13487976 +MD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.047866451 +MD,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.572916496 +MD,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.224203997 +MD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.219487309 +MD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.333513015 +MD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.628397755 +MD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9.199596296 +MD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.426950404 +MD,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.602801676 +MD,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.081170384 +MD,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.11875354 +MD,Nitrous Oxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.002418 +MD,Nitrous Oxide,1B2av_Fugitive-petr-distr,,TON,0.0648788 +MD,Nitrous Oxide,2A1_Cement-production,,TON,0.1763895 +MD,Nitrous Oxide,2A6_Other-minerals,,TON,7.8147215 +MD,Nitrous Oxide,2B_Chemicals-other,,TON,0 +MD,Nitrous Oxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.026954 +MD,Nitrous Oxide,2D3d_Coating-application,,TON,0.140551 +MD,Nitrous Oxide,2D3e_Degreasing,Other_Fuel,TON,0.044786 +MD,Nitrous Oxide,2D3h_Printing,,TON,0.0365755 +MD,Nitrous Oxide,2H2_Food-and-beverage,,TON,0.4481916 +MD,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,265.0604529 +MD,Nitrous Oxide,3Dc_Other-farm,,TON,0.06903 +MD,Nitrous Oxide,5A_Solid-waste-disposal,,TON,0 +MD,Nitrous Oxide,5C_Incineration,,TON,0.4408835 +MD,Nitrous Oxide,5C_Incineration,biomass,TON,0.11395 +MD,Nitrous Oxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.052909 +MD,Nitrous Oxide,5E_Other-waste,Other_Fuel,TON,0.196985 +MD,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,7.838710558 +MD,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,225.675385 +MD,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.18 +MD,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,50.4266531 +MD,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.004585 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1911.948699 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.2980536 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,9.521871858 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.000205174 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.040281341 +MD,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,26.32744604 +MD,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0044654 +MD,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.009945 +MD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,14600.4686 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,689.7786523 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.78780345 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.908352841 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.33355935 +MD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.67381207 +MD,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,5330.119179 +MD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,45.49608 +MD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.065960028 +MD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.069284486 +MD,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.000585 +MD,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0.1699258 +MD,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.19 +MD,PM10 Filterable,2A1_Cement-production,,TON,146.403589 +MD,PM10 Filterable,2A2_Lime-production,,TON,0.73543 +MD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,30925.72 +MD,PM10 Filterable,2A6_Other-minerals,,TON,7336.148661 +MD,PM10 Filterable,2B_Chemicals-other,,TON,52.980609 +MD,PM10 Filterable,2C_Iron-steel-alloy,,TON,0.05731 +MD,PM10 Filterable,2C3_Aluminum-production,,TON,6.61346 +MD,PM10 Filterable,2C5_Lead-production,,TON,0 +MD,PM10 Filterable,2C7_Other-metal,,TON,0.698477 +MD,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,6.256386 +MD,PM10 Filterable,2D3d_Coating-application,,TON,1.4845137 +MD,PM10 Filterable,2D3e_Degreasing,,TON,0 +MD,PM10 Filterable,2D3h_Printing,,TON,0.075079 +MD,PM10 Filterable,2H1_Pulp-and-paper,,TON,68.58874 +MD,PM10 Filterable,2H2_Food-and-beverage,,TON,3544.882036 +MD,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,45.688505 +MD,PM10 Filterable,3B1a_Cattle-dairy,,TON,387.1182818 +MD,PM10 Filterable,3Dc_Other-farm,,TON,16325.23039 +MD,PM10 Filterable,5A_Solid-waste-disposal,,TON,3.1130185 +MD,PM10 Filterable,5C_Incineration,,TON,54.39628386 +MD,PM10 Filterable,5C_Incineration,biomass,TON,22.14890374 +MD,PM10 Filterable,5C_Open-burning-industrial,,TON,0 +MD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1619.14 +MD,PM10 Filterable,5C_Open-burning-residential,,TON,303.6949974 +MD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,270.0792554 +MD,PM10 Filterable,5C_Other-open-burning,,TON,210.783 +MD,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0456635 +MD,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.148333 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,16.04147333 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,534.873975 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.8515 +MD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,119.6959811 +MD,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.004585 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,45.48348677 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.78627476 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.205726373 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1979.422088 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,14.11418533 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,81.44400292 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.749720465 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.092839022 +MD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,48.52913767 +MD,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0147248 +MD,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03978 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,290.8114876 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.65007887 +MD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000483731 +MD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,160.097898 +MD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,14600.57523 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,84.59223756 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2347.273704 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.00381515 +MD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,169.0334814 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,148.9373939 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.606824659 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.475273307 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,641.0157022 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.120503072 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,504.130463 +MD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,38.93577262 +MD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.20770251 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,60.79443908 +MD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014454409 +MD,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,191.5278723 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,708.7580667 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,34.63548473 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.255371339 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.716635358 +MD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,130.1943646 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,57.5304029 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,33.28714952 +MD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.71349893 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,42.7254439 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,600.4642035 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5575.054475 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,100.2598861 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.34905995 +MD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,20.8921667 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,56.74201912 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,2.746231259 +MD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.021758283 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.76197646 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,37.83268254 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.28961514 +MD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,74.26808745 +MD,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00195 +MD,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.4947758 +MD,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.11 +MD,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,180.738571 +MD,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.9555592 +MD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,30926.09726 +MD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7434.286014 +MD,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,86.92149951 +MD,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.05731 +MD,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,6.61346 +MD,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +MD,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,0.698477 +MD,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,6.524157 +MD,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.9433522 +MD,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.1773245 +MD,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,185.217355 +MD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3549.346641 +MD,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,75.46334 +MD,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,387.1182818 +MD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,16325.53398 +MD,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,6.2073575 +MD,PM10 Primary (Filt + Cond),5C_Incineration,,TON,54.12205461 +MD,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,59.22978214 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1619.212001 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,303.6949974 +MD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,270.0792554 +MD,PM10 Primary (Filt + Cond),5C_Other-open-burning,,TON,210.77 +MD,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.099415 +MD,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.589108 +MD,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.789960602 +MD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,103.17194 +MD,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.8855 +MD,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,49.5016796 +MD,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.001703 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1644.339131 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.992053193 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,5.562190579 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.0045E-05 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.010070847 +MD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,25.03039235 +MD,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0044654 +MD,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.009945 +MD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3476.65705 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,578.3105744 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.06605791 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.527060513 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.259845219 +MD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.25941125 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,5268.937286 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,34.9645802 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.81920999 +MD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.438106455 +MD,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.000585 +MD,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0.1699258 +MD,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.19 +MD,PM2.5 Filterable,2A1_Cement-production,,TON,101.8076864 +MD,PM2.5 Filterable,2A2_Lime-production,,TON,0.2595635 +MD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3092.26 +MD,PM2.5 Filterable,2A6_Other-minerals,,TON,1061.094161 +MD,PM2.5 Filterable,2B_Chemicals-other,,TON,35.59638053 +MD,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0.0098995 +MD,PM2.5 Filterable,2C3_Aluminum-production,,TON,2.3341624 +MD,PM2.5 Filterable,2C5_Lead-production,,TON,0 +MD,PM2.5 Filterable,2C7_Other-metal,,TON,0.245230021 +MD,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,5.062441 +MD,PM2.5 Filterable,2D3d_Coating-application,,TON,0.830989981 +MD,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +MD,PM2.5 Filterable,2D3h_Printing,,TON,0.06448 +MD,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,61.71418 +MD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,3254.527864 +MD,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,19.541754 +MD,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,80.46220455 +MD,PM2.5 Filterable,3Dc_Other-farm,,TON,3118.925094 +MD,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,0 +MD,PM2.5 Filterable,5C_Incineration,,TON,49.59525515 +MD,PM2.5 Filterable,5C_Incineration,biomass,TON,17.46050126 +MD,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +MD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1619.14 +MD,PM2.5 Filterable,5C_Open-burning-residential,,TON,278.1206859 +MD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,215.9412818 +MD,PM2.5 Filterable,5C_Other-open-burning,,TON,210.77 +MD,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0456635 +MD,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.007808 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,12.99230227 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,412.370525 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.557 +MD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,118.7710076 +MD,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.001703 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,44.11703097 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.38130347 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.205726373 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1711.791219 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,12.80895357 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,77.49635484 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.750603204 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.062606504 +MD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,47.23962173 +MD,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0147248 +MD,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03978 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,282.0871131 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.5313917 +MD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000483731 +MD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,145.0529803 +MD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3476.78561 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,57.6178617 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,716.3524567 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.35662076 +MD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.7048099 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,90.99844625 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.647633089 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.105865144 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,364.0626833 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.651963353 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,301.2583011 +MD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.69230429 +MD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.63909909 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,58.97060892 +MD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.013325528 +MD,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,181.3400573 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,596.4372417 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.97128389 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.878989165 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.649594351 +MD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,118.5648893 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,55.8044926 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,30.69714702 +MD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.71349893 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,41.44368057 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,552.4578587 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5513.872581 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,89.7283859 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.10230995 +MD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,17.27236864 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,55.03976113 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,2.526553429 +MD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.021758283 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.6791168 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,34.80731848 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.92092435 +MD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,68.32663419 +MD,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00195 +MD,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0.4947758 +MD,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.11 +MD,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,136.1426684 +MD,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.4796927 +MD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3092.609726 +MD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1159.30503 +MD,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,69.53727104 +MD,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.0098995 +MD,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.3341624 +MD,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,0.245230021 +MD,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,5.330212 +MD,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.289828481 +MD,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +MD,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.1667255 +MD,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,178.342855 +MD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3259.010273 +MD,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,49.316589 +MD,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,80.46220455 +MD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3119.220844 +MD,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,0 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,49.37259155 +MD,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,54.55917916 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1619.212001 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,278.1206859 +MD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,215.9412818 +MD,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,,TON,210.77 +MD,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.099415 +MD,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.448583 +MD,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,35.1432116 +MD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,7907.35056 +MD,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,82.2025 +MD,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,45.6869663 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.623771699 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.274923883 +MD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.056257152 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,95.54719593 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.23975864 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,8581.481441 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.005800974 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.297711361 +MD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4.609971493 +MD,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0014704 +MD,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.003213 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4.609115285 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.263216641 +MD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.14362E-05 +MD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,394.6690651 +MD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.192798184 +MD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,468.5733256 +MD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.017519614 +MD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.00075377 +MD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.567380464 +MD,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.641276058 +MD,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.021088812 +MD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,28.90565449 +MD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.407716047 +MD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.59397867 +MD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.452667441 +MD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.35166761 +MD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,1.001090362 +MD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001868573 +MD,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,164.9918868 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,31.11098364 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.12571562 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.616328343 +MD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,39.22843041 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.771291704 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.024901903 +MD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.031551338 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.729762694 +MD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,10.27580068 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,129.4373503 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,303.307194 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,42.6383995 +MD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,24.20785401 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.741448161 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.030558004 +MD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000989253 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.022835123 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.733156972 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.514585378 +MD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.567782719 +MD,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.000195 +MD,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0.031244 +MD,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +MD,Sulfur Dioxide,2A1_Cement-production,,TON,362.953611 +MD,Sulfur Dioxide,2A2_Lime-production,,TON,0 +MD,Sulfur Dioxide,2A6_Other-minerals,,TON,128.9238005 +MD,Sulfur Dioxide,2B_Chemicals-other,,TON,0.5075688 +MD,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0 +MD,Sulfur Dioxide,2C3_Aluminum-production,,TON,0 +MD,Sulfur Dioxide,2C5_Lead-production,,TON,0 +MD,Sulfur Dioxide,2C7_Other-metal,,TON,0 +MD,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.028515 +MD,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0420565 +MD,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +MD,Sulfur Dioxide,2D3h_Printing,,TON,0.0129845 +MD,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,551.480625 +MD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.152899 +MD,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0394743 +MD,Sulfur Dioxide,3Dc_Other-farm,,TON,0.018762 +MD,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,6.3654225 +MD,Sulfur Dioxide,5C_Incineration,,TON,13.14332722 +MD,Sulfur Dioxide,5C_Incineration,biomass,TON,411.2938037 +MD,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0 +MD,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,82.2008433 +MD,Sulfur Dioxide,5C_Open-burning-residential,,TON,7.991973755 +MD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,21.04894132 +MD,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,2.070865 +MD,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.0449648 +MD,Volatile Organic Compounds,11C_Other-natural,,TON,120049.889 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,12.382281 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,96.934576 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.5835 +MD,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,53.614561 +MD,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,12.37715 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,60.00952824 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,128.5094152 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13.33406399 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,67.65755605 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.7291683 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,9.284621298 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.460186293 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.008266371 +MD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,47.61813536 +MD,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0099998 +MD,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.028917 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,361.0395873 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,230.6513586 +MD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.056442841 +MD,Volatile Organic Compounds,1A2g_Industry-other,Other_Fuel,TON,6.2886124 +MD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1259.141641 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,446.6928449 +MD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,18273.16052 +MD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,65.1100366 +MD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,856.0315315 +MD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,142.9233385 +MD,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,38.10570216 +MD,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.536776836 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,526.0361548 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,9.223893658 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,570.098944 +MD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,211.5625531 +MD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,734.315756 +MD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,112.001507 +MD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.575901284 +MD,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,554.2947939 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,26.6425788 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.07719018 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.185511227 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.109767241 +MD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,256.9696151 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,79.0305659 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,867.8901608 +MD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,17.65435819 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,60.14514187 +MD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8595.049755 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5939.154265 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,30.0358377 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.703730994 +MD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,221.9053322 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,57.75396186 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,33.63242234 +MD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.220862252 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.8963125 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1265.797074 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,29.41860131 +MD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5419.779381 +MD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,27.29701714 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,622.7319085 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,460.6875785 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1339.134061 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4934.901318 +MD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,30.1774784 +MD,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0002008 +MD,Volatile Organic Compounds,2A1_Cement-production,,TON,78.417833 +MD,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +MD,Volatile Organic Compounds,2A6_Other-minerals,,TON,162.7005417 +MD,Volatile Organic Compounds,2B_Chemicals-other,,TON,57.679218 +MD,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0.15849 +MD,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0 +MD,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +MD,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +MD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,15518.82262 +MD,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,250.8954951 +MD,Volatile Organic Compounds,2D3d_Coating-application,,TON,11193.95893 +MD,Volatile Organic Compounds,2D3e_Degreasing,,TON,2878.175234 +MD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1315.77244 +MD,Volatile Organic Compounds,2D3h_Printing,,TON,1989.696259 +MD,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,308.8210802 +MD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1325.40998 +MD,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,221.568635 +MD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1241.731096 +MD,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,160.117269 +MD,Volatile Organic Compounds,3B2_Manure-sheep,,TON,4.88560317 +MD,Volatile Organic Compounds,3B4_Manure-other,,TON,29.92556611 +MD,Volatile Organic Compounds,3B4_Manure-poultry,,TON,4.86491441 +MD,Volatile Organic Compounds,3B4d_Manure-goats,,TON,2.59680439 +MD,Volatile Organic Compounds,3Dc_Other-farm,,TON,12.49738 +MD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1036.783787 +MD,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,115.2761899 +MD,Volatile Organic Compounds,5C_Incineration,,TON,25.51451227 +MD,Volatile Organic Compounds,5C_Incineration,biomass,TON,7.714089403 +MD,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0 +MD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1104.874029 +MD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,68.41129372 +MD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,270.5442286 +MD,Volatile Organic Compounds,5C_Other-open-burning,,TON,235.581 +MD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,66.46554261 +MD,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,3.801365 +MD,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,136.4209 +ME,Ammonia,1A1a_Public-Electricity,biomass,TON,104.77327 +ME,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.0332 +ME,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,3.7 +ME,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +ME,Ammonia,1A1a_Public-Electricity,natural_gas,TON,11.0901 +ME,Ammonia,1A1b_Pet-refining,natural_gas,TON,0 +ME,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.00015 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.472842201 +ME,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.118189936 +ME,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,192.9758489 +ME,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.645962214 +ME,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.023881858 +ME,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.303289216 +ME,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.032339275 +ME,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,20.49370584 +ME,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.011 +ME,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0012 +ME,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.091538183 +ME,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.062492644 +ME,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.097463601 +ME,Ammonia,1A3bii_Road-LDV,light_oil,TON,365.444415 +ME,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.749960415 +ME,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.2350618 +ME,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.139266575 +ME,Ammonia,1A3biii_Road-bus,light_oil,TON,0.425900927 +ME,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.056639026 +ME,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16.47441047 +ME,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.525266755 +ME,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.97695895 +ME,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.61007526 +ME,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.84910107 +ME,Ammonia,1A3c_Rail,diesel_oil,TON,0.40179968 +ME,Ammonia,1A3c_Rail,light_oil,TON,0.000885873 +ME,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.474796638 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.52229371 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.223239895 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.536993308 +ME,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.689969882 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.166436946 +ME,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.370314661 +ME,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.112815815 +ME,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.670466664 +ME,Ammonia,1A4bi_Residential-stationary,biomass,TON,386.966577 +ME,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,111.656998 +ME,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Ammonia,1A4bi_Residential-stationary,light_oil,TON,6.78375019 +ME,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,29.1423769 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.812952294 +ME,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.058478995 +ME,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004686497 +ME,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.141633654 +ME,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.411746973 +ME,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.994602033 +ME,Ammonia,2A6_Other-minerals,Other_Fuel,TON,2.492 +ME,Ammonia,2D3i_Other-solvent-use,biomass,TON,0.014568 +ME,Ammonia,2H1_Pulp-and-paper,,TON,216.30469 +ME,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,2.423 +ME,Ammonia,3B1a_Cattle-dairy,,TON,948.239398 +ME,Ammonia,3B1b_Cattle-non-dairy,,TON,88.858456 +ME,Ammonia,3B2_Manure-sheep,,TON,32.1527861 +ME,Ammonia,3B3_Manure-swine,,TON,30.1423585 +ME,Ammonia,3B4_Manure-other,,TON,163.958015 +ME,Ammonia,3B4_Manure-poultry,,TON,810.8056408 +ME,Ammonia,3B4d_Manure-goats,,TON,49.35678 +ME,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,2053.4 +ME,Ammonia,5B_Compost-biogas,Other_Fuel,TON,12.913564 +ME,Ammonia,5C_Incineration,biomass,TON,2.566 +ME,Ammonia,5D1_Wastewater-domestic,,TON,3.28198 +ME,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,1729797.827 +ME,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2532.21 +ME,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,15488.683 +ME,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,4380.39056 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,58272.0101 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,69538.70934 +ME,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3989.033358 +ME,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,561920.0837 +ME,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,11857.53589 +ME,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5115.45208 +ME,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,168955.2273 +ME,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,327.764 +ME,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,292.6 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,257635.2682 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5088.960272 +ME,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.555341316 +ME,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,62971.1172 +ME,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,133920.0812 +ME,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5741687.72 +ME,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23934.3661 +ME,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,295263.796 +ME,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,125579.3839 +ME,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,12722.2614 +ME,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2120.83692 +ME,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1032663.274 +ME,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12220.51962 +ME,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,639721.369 +ME,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,166140.0752 +ME,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,58080.4553 +ME,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1109.5086 +ME,Carbon Dioxide,1A3c_Rail,light_oil,TON,69.3177794 +ME,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,27789.47282 +ME,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,43910.12507 +ME,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,10226.00014 +ME,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,103879.2384 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,20475.3101 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,30205.07698 +ME,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1322.26923 +ME,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13888.05517 +ME,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,124653.9916 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,223425.1723 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4257.774125 +ME,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,207.70363 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,574.720565 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,219101.1172 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,50706.6358 +ME,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,290267.5376 +ME,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,23872.01 +ME,Carbon Dioxide,2D3i_Other-solvent-use,biomass,TON,1841.59 +ME,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,8522.57 +ME,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,8190969.701 +ME,Carbon Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,985.9 +ME,Carbon Dioxide,5C_Incineration,biomass,TON,72622 +ME,Carbon Monoxide,11C_Other-natural,,TON,48189.3678 +ME,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,3556.2044 +ME,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1.4166 +ME,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,21.5 +ME,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.415 +ME,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,521.679 +ME,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,35.935 +ME,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.0264 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,86.92479561 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1575.772249 +ME,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,59.05131207 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,13445.06878 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,48.29835953 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,10.1790474 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.5842476 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.202599792 +ME,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,621.6363375 +ME,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0718 +ME,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.205 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,642.819768 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1020.304633 +ME,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.054704143 +ME,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2411.006049 +ME,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1034.857545 +ME,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,70922.0694 +ME,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,147.539953 +ME,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4059.5408 +ME,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,278.6335525 +ME,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,486.6170818 +ME,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,10.70377259 +ME,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,843.6241538 +ME,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,188.8624017 +ME,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1167.944527 +ME,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3609.435518 +ME,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2320.58305 +ME,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,131.5084708 +ME,Carbon Monoxide,1A3c_Rail,light_oil,TON,15.18802794 +ME,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,465.5720793 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,35.85193917 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1113.87314 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.909237321 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.340570462 +ME,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,644.1420531 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,79.3218261 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6177.586755 +ME,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,31.8089957 +ME,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,37.76022444 +ME,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,27982.5741 +ME,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,56239.76882 +ME,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,558.285025 +ME,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,33.9187512 +ME,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,191.0190043 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,340.2704919 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1086.957216 +ME,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.7102343 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.28263676 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,20351.60078 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,101.1730471 +ME,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,31312.03542 +ME,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,329.854 +ME,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,1.43 +ME,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.31 +ME,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,1.472 +ME,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2136.906 +ME,Carbon Monoxide,2H2_Food-and-beverage,,TON,207.7411382 +ME,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.2512 +ME,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,71.26 +ME,Carbon Monoxide,5C_Incineration,biomass,TON,287.3004435 +ME,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,11645.26927 +ME,Carbon Monoxide,5C_Open-burning-residential,,TON,3486.19219 +ME,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,344.400868 +ME,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,1.15 +ME,Methane,1A1a_Public-Electricity,biomass,TON,131.681434 +ME,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.102816 +ME,Methane,1A1a_Public-Electricity,natural_gas,TON,19.2382 +ME,Methane,1A1b_Pet-refining,natural_gas,TON,426.42189 +ME,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.299285149 +ME,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.602164991 +ME,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,25.22372415 +ME,Methane,1A2_Industrial_fuel_combustion,biomass,TON,46.5652977 +ME,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.462617606 +ME,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.2034834 +ME,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,3.544497247 +ME,Methane,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00088 +ME,Methane,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0056 +ME,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,5.55862182 +ME,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.726582135 +ME,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.042117022 +ME,Methane,1A3bii_Road-LDV,diesel_oil,TON,13.2886853 +ME,Methane,1A3bii_Road-LDV,light_oil,TON,241.7107406 +ME,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.33335011 +ME,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.4685175 +ME,Methane,1A3biii_Road-bus,diesel_oil,TON,4.237502069 +ME,Methane,1A3biii_Road-bus,light_oil,TON,1.084972363 +ME,Methane,1A3biii_Road-bus,natural_gas,TON,12.0164627 +ME,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,63.04245036 +ME,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.29211384 +ME,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.83457124 +ME,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,6.699789508 +ME,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.37494614 +ME,Methane,1A3c_Rail,diesel_oil,TON,0.05032577 +ME,Methane,1A3c_Rail,light_oil,TON,0.046549761 +ME,Methane,1A4ai_Commercial-institutional-stationary,biomass,TON,4.926574574 +ME,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.766466346 +ME,Methane,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.4041802 +ME,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.157842877 +ME,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.701833703 +ME,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,21.2526381 +ME,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.7348721 +ME,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.464363236 +ME,Methane,1A4bi_Residential-mobile,light_oil,TON,110.2072223 +ME,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.882919814 +ME,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,3.97190971 +ME,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.09772561 +ME,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.023074973 +ME,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,176.61129 +ME,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.079563957 +ME,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,283.3174879 +ME,Methane,2A6_Other-minerals,Other_Fuel,TON,2.97894 +ME,Methane,2D3i_Other-solvent-use,biomass,TON,0.034685 +ME,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,0.1003 +ME,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,11736.66037 +ME,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,70.35 +ME,Methane,5C_Incineration,biomass,TON,20 +ME,Nitrogen Oxides,11C_Other-natural,,TON,2333.27993 +ME,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,613.93496 +ME,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,11.5995 +ME,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,93.2 +ME,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,1.97 +ME,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,198.616 +ME,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,14.05123 +ME,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.0315 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,245.2962359 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,161.4587448 +ME,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.16627177 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,6624.512129 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,225.3442309 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,375.0951471 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,130.0526524 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.81580836 +ME,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,705.434944 +ME,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.289 +ME,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2439 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1139.897976 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.59390986 +ME,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.01220144 +ME,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,358.1900401 +ME,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,369.1973839 +ME,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7324.36319 +ME,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,69.6319787 +ME,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,440.665303 +ME,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,784.2776723 +ME,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,47.49855516 +ME,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,7.79182215 +ME,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3033.706562 +ME,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,23.55432744 +ME,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3054.61642 +ME,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,370.5284465 +ME,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,120.107193 +ME,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,1013.330906 +ME,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.175513477 +ME,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3202.162173 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,34.11287114 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5449.06666 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,77.87725752 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,13.34326095 +ME,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,916.5811317 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,148.078262 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,91.07341567 +ME,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8.12768609 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,98.80735832 +ME,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,279.0598733 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,851.0082326 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,2009.82623 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,122.1075 +ME,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,608.9429654 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,855.236262 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,15.19327909 +ME,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.476892853 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.61106659 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,482.6815384 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,540.582941 +ME,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2256.228755 +ME,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,471.3356 +ME,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,13.12 +ME,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,1.79667 +ME,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2052.16 +ME,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.4192 +ME,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,13.02 +ME,Nitrogen Oxides,5C_Incineration,biomass,TON,1140.947151 +ME,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,282.6522003 +ME,Nitrogen Oxides,5C_Open-burning-residential,,TON,246.084182 +ME,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,19.0650468 +ME,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.372 +ME,Nitrous Oxide,1A1a_Public-Electricity,biomass,TON,70.3910866 +ME,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.020262 +ME,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.13764 +ME,Nitrous Oxide,1A1b_Pet-refining,natural_gas,TON,0.201746 +ME,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,24.2967309 +ME,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.095587599 +ME,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.043073013 +ME,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.469923667 +ME,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.007561319 +ME,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.021718681 +ME,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.409992141 +ME,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,156.4499919 +ME,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.081978222 +ME,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.998189 +ME,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.251236604 +ME,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.383176005 +ME,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.118381345 +ME,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.164400204 +ME,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.222700354 +ME,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.521874593 +ME,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.613565858 +ME,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.66009535 +ME,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.104107539 +ME,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.347840247 +ME,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.086321135 +ME,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.277557629 +ME,Nitrous Oxide,2A6_Other-minerals,Other_Fuel,TON,0.07142 +ME,Nitrous Oxide,2D3i_Other-solvent-use,biomass,TON,0.037311 +ME,Nitrous Oxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.21807 +ME,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,146.8225194 +ME,Nitrous Oxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.267 +ME,Nitrous Oxide,5C_Incineration,biomass,TON,3.75 +ME,Nitrous Oxide,6A_Other-commertial,Other_Fuel,TON,0.255 +ME,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,84.583477 +ME,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.00028 +ME,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.22 +ME,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.109225 +ME,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,24.5649378 +ME,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.1731 +ME,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0006 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7839.210515 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.94161808 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2.130851017 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.46625017 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.040332069 +ME,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,81.22822993 +ME,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0144 +ME,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0046 +ME,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,30450.37419 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,3.730398177 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,358.4673789 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.963467472 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.720365277 +ME,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.41199477 +ME,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,7408.241516 +ME,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,120.589554 +ME,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,7.31975016 +ME,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.956799952 +ME,PM10 Filterable,2A1_Cement-production,,TON,32.98456 +ME,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1474.83972 +ME,PM10 Filterable,2A6_Other-minerals,,TON,986.38454 +ME,PM10 Filterable,2B_Chemicals-other,,TON,2.94 +ME,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,1.60301 +ME,PM10 Filterable,2D3d_Coating-application,,TON,0.132500199 +ME,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,0.05578 +ME,PM10 Filterable,2H1_Pulp-and-paper,,TON,425.257 +ME,PM10 Filterable,2H2_Food-and-beverage,,TON,127.2718231 +ME,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,8.323 +ME,PM10 Filterable,2I_Wood-processing,,TON,1 +ME,PM10 Filterable,3B1a_Cattle-dairy,,TON,233.499204 +ME,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,290.364764 +ME,PM10 Filterable,3Dc_Other-farm,,TON,3588.817939 +ME,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,3.25 +ME,PM10 Filterable,5C_Incineration,biomass,TON,10.34396931 +ME,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1441.526086 +ME,PM10 Filterable,5C_Open-burning-residential,,TON,1315.76295 +ME,PM10 Filterable,5C_Open-burning-yard-waste,,TON,116.8503 +ME,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,87.62929663 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.110169309 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.3908 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.1157785 +ME,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,44.71327848 +ME,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.45006 +ME,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.00156 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.81099235 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.74470871 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.482303898 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8110.371532 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,28.64840003 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,2.372128111 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,20.0960215 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.092881118 +ME,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,210.6269591 +ME,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.017265667 +ME,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01196 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,107.7668143 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.066376139 +ME,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000182 +ME,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,56.0338911 +ME,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,30450.37419 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,22.51801338 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,623.921957 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.64682023 +ME,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,31.4178192 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,49.80247637 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.236791634 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.272907619 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,176.2219332 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.490770005 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,217.6558079 +ME,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,19.46289698 +ME,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.96043944 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,30.66790853 +ME,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.008809767 +ME,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,79.53847383 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,3.916723195 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,388.544985 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,11.58701373 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.561530803 +ME,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,45.94155785 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.1999003 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,7.904146313 +ME,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.167665457 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.290926446 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,123.0948523 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7769.606234 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,265.743661 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,16.1470003 +ME,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.479154956 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,60.71184263 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.380251245 +ME,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.025575793 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.6323231 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,220.9032081 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.3330728 +ME,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,93.90839866 +ME,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,33.564509 +ME,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1474.83972 +ME,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,995.2394099 +ME,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,2.94 +ME,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,1.61815748 +ME,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.132500199 +ME,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0.05578 +ME,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,691.3672176 +ME,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,659.0458285 +ME,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,8.323 +ME,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,1 +ME,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,233.499204 +ME,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,290.364764 +ME,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,3588.817939 +ME,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,8.45 +ME,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,11.24628681 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1441.526086 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1315.76295 +ME,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,116.8503 +ME,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.11011 +ME,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,83.7201202 +ME,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.5668 +ME,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.877 +ME,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.109225 +ME,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,24.5649378 +ME,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.1731 +ME,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.0006 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6651.022102 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.3865278 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.910373989 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.22037029 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.010083131 +ME,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,74.14681507 +ME,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00364 +ME,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0046 +ME,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3611.61901 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,3.73013143 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,352.8976026 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.572343113 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.553574453 +ME,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.415262064 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,7392.077578 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,92.675312 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,5.62799945 +ME,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.526240015 +ME,PM2.5 Filterable,2A1_Cement-production,,TON,17.6395955 +ME,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,147.483972 +ME,PM2.5 Filterable,2A6_Other-minerals,,TON,133.9181228 +ME,PM2.5 Filterable,2B_Chemicals-other,,TON,2.74578943 +ME,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.607166779 +ME,PM2.5 Filterable,2D3d_Coating-application,,TON,0.131821982 +ME,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,0.05578 +ME,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,355.2112598 +ME,PM2.5 Filterable,2H2_Food-and-beverage,,TON,54.19997816 +ME,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,5.235714878 +ME,PM2.5 Filterable,2I_Wood-processing,,TON,0.6071429 +ME,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,48.5326177 +ME,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,60.3520564 +ME,PM2.5 Filterable,3Dc_Other-farm,,TON,704.6419204 +ME,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,3.25 +ME,PM2.5 Filterable,5C_Incineration,biomass,TON,9.310251896 +ME,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1314.33265 +ME,PM2.5 Filterable,5C_Open-burning-residential,,TON,1204.96197 +ME,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,90.0977268 +ME,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,86.76593983 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.676689309 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.0478 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.1157785 +ME,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,44.71327848 +ME,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0.45006 +ME,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.00156 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.39636123 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.629505999 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.482303898 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,6922.174692 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,24.09321579 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1.151284093 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,13.84876934 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.06262567 +ME,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,203.5566638 +ME,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.006505672 +ME,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01196 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,104.5337995 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.425049089 +ME,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000182 +ME,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,47.44344328 +ME,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3611.61901 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,15.1042725 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,235.809391 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.29479278 +ME,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.1205454 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,36.0620096 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.054486633 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.075923941 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,108.5330994 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.44169109 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,153.3067171 +ME,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.19585062 +ME,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.16262081 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,29.74787053 +ME,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.008123299 +ME,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,76.62575131 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,3.916599963 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,382.985767 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.193981567 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.401329782 +ME,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.93610755 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.80390427 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,7.289218863 +ME,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.167665457 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.102200438 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,113.252445 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,7753.442295 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,237.829416 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,14.4552484 +ME,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.04859503 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,58.89048767 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.629839039 +ME,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.025575793 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.613353224 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,203.2312416 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.99308035 +ME,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,86.39572443 +ME,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,18.2195445 +ME,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,147.483972 +ME,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,142.7729931 +ME,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,2.74578943 +ME,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.622314259 +ME,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.131821982 +ME,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,0.05578 +ME,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,621.3214769 +ME,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,585.9739288 +ME,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,5.235714878 +ME,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.6071429 +ME,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,48.5326177 +ME,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,60.3520564 +ME,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,704.6419204 +ME,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,8.45 +ME,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.2125694 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1314.33265 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1204.96197 +ME,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,90.0977268 +ME,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.11011 +ME,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,46.767103 +ME,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.3505318 +ME,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,434.5 +ME,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.28 +ME,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,49.198115 +ME,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.023735 +ME,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0002 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.456256613 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.874612238 +ME,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.022359039 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1420.211587 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,57.15581178 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,294.5560095 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,489.4207493 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.298196462 +ME,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,264.5179253 +ME,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.09234 +ME,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.001 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.07288667 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.077963714 +ME,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.70586E-06 +ME,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,47.32993107 +ME,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.154499297 +ME,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,120.3445652 +ME,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.206328472 +ME,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.18899986 +ME,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.089134416 +ME,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.266964371 +ME,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.011228701 +ME,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.738892366 +ME,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.255878597 +ME,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.50141961 +ME,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.47916876 +ME,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.17553295 +ME,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.452293355 +ME,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001114051 +ME,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,25.07385345 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.430118857 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,363.7778739 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,149.5507755 +ME,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.208759892 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.175789228 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.470792181 +ME,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.007406487 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.119719788 +ME,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.042042788 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,269.5547981 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,792.764792 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.14678885 +ME,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,2.861874908 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.717064242 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.06991888 +ME,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001164292 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005030749 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.590171265 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.466133943 +ME,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.76984027 +ME,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,35.6743 +ME,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.081 +ME,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,0.01081 +ME,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,526.428 +ME,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.11639 +ME,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,61.92 +ME,Sulfur Dioxide,5C_Incineration,biomass,TON,87.91994251 +ME,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,117.3006547 +ME,Sulfur Dioxide,5C_Open-burning-residential,,TON,41.0140257 +ME,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.33700588 +ME,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.6737 +ME,Volatile Organic Compounds,11C_Other-natural,,TON,270923.603 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,67.172677 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.0327252 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.13 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0098 +ME,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,32.46033 +ME,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,50.783224 +ME,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.00088 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16.0880642 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.79346807 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.452425022 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,365.6574259 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,13.21268399 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,3.337624715 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.16190436 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.008011907 +ME,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,35.63712979 +ME,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00486 +ME,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.013 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,110.7029504 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,68.7007812 +ME,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.009104124 +ME,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,181.1258715 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,122.8954831 +ME,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5998.47864 +ME,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.857204 +ME,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,319.979907 +ME,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,64.5996268 +ME,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,26.2180857 +ME,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.896662577 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,182.768312 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,6.63369842 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,287.5326183 +ME,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,142.0232634 +ME,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,322.507945 +ME,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,48.3211172 +ME,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.347100868 +ME,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,126.4946203 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.536242449 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,347.0214349 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.361027867 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.226880152 +ME,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.89897821 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.848155 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,202.5599395 +ME,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.69826705 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,8.92855611 +ME,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1759.994311 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,7937.364844 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,79.611433 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,4.75700005 +ME,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,26.23527424 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,59.16279979 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,88.79014814 +ME,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.237287114 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.11871088 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,7633.089139 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.7337112 +ME,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6385.559346 +ME,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,215.8405614 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,183.7338484 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,192.3265583 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,457.1797135 +ME,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1405.205581 +ME,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,21.87321527 +ME,Volatile Organic Compounds,2B_Chemicals-other,,TON,8.705 +ME,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3439.960525 +ME,Volatile Organic Compounds,2D3d_Coating-application,,TON,3172.593099 +ME,Volatile Organic Compounds,2D3e_Degreasing,,TON,773.681636 +ME,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.71360004 +ME,Volatile Organic Compounds,2D3h_Printing,,TON,2174.054502 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,32.4282 +ME,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +ME,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1076.88 +ME,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,334.6390213 +ME,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,105.15493 +ME,Volatile Organic Compounds,2I_Wood-processing,,TON,0.5 +ME,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,75.8591563 +ME,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,7.10867688 +ME,Volatile Organic Compounds,3B2_Manure-sheep,,TON,2.57222264 +ME,Volatile Organic Compounds,3B3_Manure-swine,,TON,2.411388702 +ME,Volatile Organic Compounds,3B4_Manure-other,,TON,13.116642 +ME,Volatile Organic Compounds,3B4_Manure-poultry,,TON,64.86445924 +ME,Volatile Organic Compounds,3B4d_Manure-goats,,TON,3.94854272 +ME,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,117.7254114 +ME,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,9.0485 +ME,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,91.37322 +ME,Volatile Organic Compounds,5C_Incineration,biomass,TON,13.43977001 +ME,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,798.492427 +ME,Volatile Organic Compounds,5C_Open-burning-residential,,TON,256.539162 +ME,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,86.1002178 +ME,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,16.507 +ME,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.075 +ME,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.000017 +MI,Ammonia,1A1a_Public-Electricity,biomass,TON,9.12932 +MI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.682415 +MI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,18.39701 +MI,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.005655 +MI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,76.1964115 +MI,Ammonia,1A1b_Pet-refining,natural_gas,TON,13.539905 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.059418254 +MI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.109906384 +MI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,127.5247326 +MI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.399050642 +MI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.015659734 +MI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.002813856 +MI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,210.2667351 +MI,Ammonia,1A2c_Chemicals,natural_gas,TON,0.033175 +MI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.861755548 +MI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.312903988 +MI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,37.67428614 +MI,Ammonia,1A3bii_Road-LDV,light_oil,TON,2661.194298 +MI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.141814457 +MI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,91.71293461 +MI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.902375132 +MI,Ammonia,1A3biii_Road-bus,light_oil,TON,10.67660322 +MI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.035910422 +MI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,104.813811 +MI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.070242544 +MI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,75.41598558 +MI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,20.32829595 +MI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.41095251 +MI,Ammonia,1A3c_Rail,diesel_oil,TON,2.710511123 +MI,Ammonia,1A3c_Rail,light_oil,TON,0.001732258 +MI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.758260455 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,7.233736506 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.9617125 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.153419894 +MI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.13631996 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.475583777 +MI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.160023519 +MI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.538529004 +MI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,8.590593907 +MI,Ammonia,1A4bi_Residential-stationary,biomass,TON,581.6579538 +MI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,9.681000197 +MI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.587249973 +MI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,3000.390042 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.556806021 +MI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.207948126 +MI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.034133324 +MI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,11.25817351 +MI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.978719823 +MI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.92008687 +MI,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Ammonia,2A1_Cement-production,,TON,8.68 +MI,Ammonia,2A6_Other-minerals,Other_Fuel,TON,76.6 +MI,Ammonia,2B_Chemicals-other,,TON,62.59965733 +MI,Ammonia,2C_Iron-steel-alloy,,TON,22.16 +MI,Ammonia,2C7_Other-metal,Other_Fuel,TON,10.4 +MI,Ammonia,2C7b_Nickel-production,Other_Fuel,TON,0.1445 +MI,Ammonia,2D3d_Coating-application,,TON,0.2985 +MI,Ammonia,2D3e_Degreasing,,TON,2.852 +MI,Ammonia,2H1_Pulp-and-paper,,TON,48.4735 +MI,Ammonia,2H2_Food-and-beverage,,TON,7.0231 +MI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,210.28038 +MI,Ammonia,3B1a_Cattle-dairy,,TON,13782.26169 +MI,Ammonia,3B1b_Cattle-non-dairy,,TON,3129.894352 +MI,Ammonia,3B2_Manure-sheep,,TON,315.6678982 +MI,Ammonia,3B3_Manure-swine,,TON,9402.049824 +MI,Ammonia,3B4_Manure-other,,TON,1060.643763 +MI,Ammonia,3B4_Manure-poultry,,TON,4847.540847 +MI,Ammonia,3B4d_Manure-goats,,TON,185.3842284 +MI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,11620.6 +MI,Ammonia,3F_Ag-res-on-field,,TON,28.817 +MI,Ammonia,5A_Solid-waste-disposal,,TON,0.0025 +MI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,187.313952 +MI,Ammonia,5D1_Wastewater-domestic,,TON,41.63226 +MI,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,2.1 +MI,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,680349.3 +MI,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,44238.22 +MI,Carbon Dioxide,1A1b_Pet-refining,Other_Fuel,TON,7.641 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,500291.3191 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,664112.324 +MI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,38207.00051 +MI,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,216.2895597 +MI,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,18950.41511 +MI,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.209082174 +MI,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,209207.2835 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1091312.134 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,25465.2031 +MI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.17671457 +MI,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1239264.57 +MI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1348099.323 +MI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,39339183.54 +MI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,130612.1429 +MI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1559057.122 +MI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,398973.8081 +MI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,301145.7351 +MI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1410.396104 +MI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6634666.17 +MI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,51405.91579 +MI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4125770.978 +MI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,526825.429 +MI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,299189.5842 +MI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2199.644532 +MI,Carbon Dioxide,1A3c_Rail,light_oil,TON,134.5130721 +MI,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,4902.7 +MI,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1704.2396 +MI,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1304.5 +MI,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,518292.5545 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,181595.3183 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,257718.2159 +MI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11457.27313 +MI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,66278.60413 +MI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,641686.6456 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,930577.3884 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,15624.92781 +MI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2057.550024 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4185.13784 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,786542.5663 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,120520.6763 +MI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,431090.8187 +MI,Carbon Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,370.965 +MI,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,237482.55 +MI,Carbon Dioxide,2C_Iron-steel-alloy,,TON,0 +MI,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,252378.5 +MI,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,87246220.3 +MI,Carbon Dioxide,5C_Incineration,,TON,77.84575 +MI,Carbon Monoxide,11C_Other-natural,,TON,61648.5671 +MI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1066.435425 +MI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,86.0416125 +MI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,6454.775 +MI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,3.85085 +MI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,6010.412614 +MI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,139.917435 +MI,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,233.6 +MI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,116.833685 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,741.0787855 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15338.12082 +MI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,568.0965249 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,12724.93088 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,134.3562693 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,160.9147252 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.09926336 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.260656638 +MI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16162.75503 +MI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,254.0731 +MI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.043624732 +MI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.663600268 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2805.131509 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5209.961583 +MI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.368210535 +MI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13745.6521 +MI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11255.35987 +MI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,594446.8982 +MI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,848.0791736 +MI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,23037.81649 +MI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,979.7449711 +MI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,16222.1568 +MI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,13.5987786 +MI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5436.797769 +MI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,735.5822829 +MI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5281.162487 +MI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9463.671714 +MI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11957.15134 +MI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,875.0171691 +MI,Carbon Monoxide,1A3c_Rail,light_oil,TON,30.11121667 +MI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1215.71658 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,934.36521 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.84041873 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.79330271 +MI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6438.089674 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,603.2784867 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,52715.38802 +MI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,243.0785177 +MI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,200.7784577 +MI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,145101.062 +MI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,78599.8801 +MI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,48.40499989 +MI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,2.936250011 +MI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,6704.232806 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2778.211747 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3186.905611 +MI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,26.33593537 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,32.1339145 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,80210.83664 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,236.384264 +MI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,44900.3929 +MI,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,21.5295215 +MI,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,10295.75377 +MI,Carbon Monoxide,2A1_Cement-production,,TON,481.25 +MI,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,395.9 +MI,Carbon Monoxide,2A6_Other-minerals,,TON,12128.57428 +MI,Carbon Monoxide,2B_Chemicals-other,,TON,177.61744 +MI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,28450.57455 +MI,Carbon Monoxide,2C3_Aluminum-production,,TON,19.941 +MI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,46.72335 +MI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3347.61255 +MI,Carbon Monoxide,2H2_Food-and-beverage,,TON,1606.421275 +MI,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,5.8955 +MI,Carbon Monoxide,3Dc_Other-farm,,TON,20.23 +MI,Carbon Monoxide,3F_Ag-res-on-field,,TON,292.7 +MI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1055.215417 +MI,Carbon Monoxide,5C_Incineration,,TON,0.769204493 +MI,Carbon Monoxide,5C_Incineration,biomass,TON,503.8544102 +MI,Carbon Monoxide,5C_Open-burning-industrial,,TON,0 +MI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,31244.80988 +MI,Carbon Monoxide,5C_Open-burning-residential,,TON,10754.75944 +MI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,711.8690354 +MI,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0 +MI,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,9.46 +MI,Methane,1A1a_Public-Electricity,biomass,TON,64.585 +MI,Methane,1A1a_Public-Electricity,hard_coal,TON,0 +MI,Methane,1A1a_Public-Electricity,natural_gas,TON,16.9652768 +MI,Methane,1A1b_Pet-refining,Other_Fuel,TON,0.00037 +MI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.51156132 +MI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,72.36474694 +MI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,245.1474726 +MI,Methane,1A2_Industrial_fuel_combustion,biomass,TON,0.78771707 +MI,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.012746987 +MI,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MI,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MI,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,31.00312267 +MI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,22.34272725 +MI,Methane,1A2g_Construction_and_Mining,light_oil,TON,18.98272335 +MI,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.237710828 +MI,Methane,1A3bii_Road-LDV,diesel_oil,TON,182.4195131 +MI,Methane,1A3bii_Road-LDV,light_oil,TON,1765.173944 +MI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.54582155 +MI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,80.63603159 +MI,Methane,1A3biii_Road-bus,diesel_oil,TON,16.49729883 +MI,Methane,1A3biii_Road-bus,light_oil,TON,47.97297205 +MI,Methane,1A3biii_Road-bus,natural_gas,TON,11.60658154 +MI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,407.1635212 +MI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.206412169 +MI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,152.5580782 +MI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,15.88472042 +MI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,25.95926058 +MI,Methane,1A3c_Rail,diesel_oil,TON,0.099022528 +MI,Methane,1A3c_Rail,light_oil,TON,0.090426789 +MI,Methane,1A4ai_Commercial-institutional-stationary,biomass,TON,0.50216 +MI,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.041554117 +MI,Methane,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.60263536 +MI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.718101319 +MI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,176.8955356 +MI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,170.3402887 +MI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.148973517 +MI,Methane,1A4bi_Residential-mobile,light_oil,TON,564.3525954 +MI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.00825902 +MI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,13.29410117 +MI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.50175952 +MI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.165573353 +MI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,665.9499418 +MI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.94173752 +MI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,414.6607579 +MI,Methane,1B2av_Fugitive-petr-distr,light_oil,TON,0.018071 +MI,Methane,2A6_Other-minerals,Other_Fuel,TON,75.08165447 +MI,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,185050.2785 +MI,Methane,5C_Incineration,biomass,TON,11.695 +MI,Nitrogen Oxides,11C_Other-natural,,TON,18192.35604 +MI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1102.835745 +MI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,339.8251065 +MI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,31979.4885 +MI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,161.293 +MI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,6572.104697 +MI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,331.68233 +MI,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,877 +MI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,326.37828 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2065.227934 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1566.853008 +MI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,98.28517271 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4702.994928 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,541.9967697 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,336.3117153 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.91752911 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.078952769 +MI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,20072.02545 +MI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,133.779895 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.946687481 +MI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,32.24763252 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,5256.587453 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,73.21147538 +MI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.063601569 +MI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3531.140553 +MI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3300.586179 +MI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,59717.94807 +MI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,392.0135236 +MI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2276.066339 +MI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2390.151785 +MI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,1755.332519 +MI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,6.985027533 +MI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,19486.42427 +MI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,88.74996365 +MI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14642.8016 +MI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,961.7342849 +MI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,610.8241306 +MI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,5082.957862 +MI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.322439818 +MI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10231.09744 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,494.4800871 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,103.1021262 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.549576807 +MI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8215.82875 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1194.37659 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,729.0269355 +MI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,64.20419659 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,507.8023294 +MI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1412.037109 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1325.642703 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,174.2579997 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,10.57049989 +MI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,16603.15692 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5730.742112 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,64.49724315 +MI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.639403053 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,34.2145348 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1724.916867 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1147.273624 +MI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2920.600812 +MI,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,7.617079 +MI,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,7412.756805 +MI,Nitrogen Oxides,2A1_Cement-production,,TON,3740.395 +MI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,689.2595 +MI,Nitrogen Oxides,2A6_Other-minerals,,TON,2634.90745 +MI,Nitrogen Oxides,2B_Chemicals-other,,TON,43.96255 +MI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,13953.38526 +MI,Nitrogen Oxides,2C3_Aluminum-production,,TON,50.68169 +MI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,32.9655 +MI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1728.72195 +MI,Nitrogen Oxides,2H2_Food-and-beverage,,TON,78.28865 +MI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,13.778 +MI,Nitrogen Oxides,3Dc_Other-farm,,TON,110.75 +MI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,7.702 +MI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,209.992515 +MI,Nitrogen Oxides,5C_Incineration,,TON,65.04159472 +MI,Nitrogen Oxides,5C_Incineration,biomass,TON,1648.697918 +MI,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0 +MI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,758.3692633 +MI,Nitrogen Oxides,5C_Open-burning-residential,,TON,759.1595024 +MI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,39.40703674 +MI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MI,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,1.991 +MI,Nitrous Oxide,1A1a_Public-Electricity,biomass,TON,38.43985 +MI,Nitrous Oxide,1A1a_Public-Electricity,hard_coal,TON,0 +MI,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,6.4339377 +MI,Nitrous Oxide,1A1b_Pet-refining,Other_Fuel,TON,0.00007 +MI,Nitrous Oxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MI,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,19.98179293 +MI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.625986828 +MI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1220.208665 +MI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.454060464 +MI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,55.62167891 +MI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.041546198 +MI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,10.93812781 +MI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.108020359 +MI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7.259693414 +MI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.95636254 +MI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.844175671 +MI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,14.30162469 +MI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.701864618 +MI,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.305945 +MI,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.73008128 +MI,Nitrous Oxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0112515 +MI,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,957.9869576 +MI,Nitrous Oxide,5C_Incineration,biomass,TON,5.26E-08 +MI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,136.308105 +MI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,13.13825202 +MI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,330.2471807 +MI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.9159812 +MI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,381.8266602 +MI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,35.5867892 +MI,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,108.25 +MI,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.726015 +MI,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.0455 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8904.874209 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,37.31245792 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,8.438694418 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.026589066 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.003890735 +MI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,353.4760097 +MI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,14.62327 +MI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.024937879 +MI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.059406081 +MI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,106262.0057 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,725.7057406 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.282786221 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.911524627 +MI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.1146305 +MI,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,10532.94512 +MI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.45547986 +MI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.633649991 +MI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,33.53019943 +MI,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00105 +MI,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0327548 +MI,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,42.12488574 +MI,PM10 Filterable,2A1_Cement-production,,TON,723.955253 +MI,PM10 Filterable,2A2_Lime-production,,TON,154.601304 +MI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,13101.48903 +MI,PM10 Filterable,2A6_Other-minerals,,TON,4159.6302 +MI,PM10 Filterable,2B_Chemicals-other,,TON,122.6619546 +MI,PM10 Filterable,2C_Iron-steel-alloy,,TON,984.8851919 +MI,PM10 Filterable,2C3_Aluminum-production,,TON,82.97710109 +MI,PM10 Filterable,2C6_Zinc-production,,TON,6.24358 +MI,PM10 Filterable,2C7_Other-metal,,TON,301.1499771 +MI,PM10 Filterable,2C7a_Copper-production,,TON,23.378235 +MI,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,1.0269225 +MI,PM10 Filterable,2D3d_Coating-application,,TON,60.489435 +MI,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.465 +MI,PM10 Filterable,2H1_Pulp-and-paper,,TON,442.9041368 +MI,PM10 Filterable,2H2_Food-and-beverage,,TON,654.4915274 +MI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,163.9640276 +MI,PM10 Filterable,2I_Wood-processing,,TON,27.44664 +MI,PM10 Filterable,3B1a_Cattle-dairy,,TON,3143.292573 +MI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,5558.221655 +MI,PM10 Filterable,3Dc_Other-farm,,TON,42218.7628 +MI,PM10 Filterable,5A_Solid-waste-disposal,,TON,50.56815612 +MI,PM10 Filterable,5C_Incineration,,TON,1.751922335 +MI,PM10 Filterable,5C_Incineration,biomass,TON,54.63240291 +MI,PM10 Filterable,5C_Open-burning-industrial,,TON,0 +MI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3867.682646 +MI,PM10 Filterable,5C_Open-burning-residential,,TON,4059.074765 +MI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,241.5269852 +MI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.2188 +MI,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,5.121 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,142.2643209 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.95410656 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,362.2759833 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,3.313615 +MI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,705.8132091 +MI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,96.523826 +MI,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,177.2375 +MI,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,19.735359 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,118.6702406 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,75.01852921 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.62046753 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9212.855365 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,38.59054488 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,9.126775636 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.289425442 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.008507178 +MI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,767.1904907 +MI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,19.60361062 +MI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.030424459 +MI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.159070541 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,447.48791 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,40.41503586 +MI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000628736 +MI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,222.988541 +MI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,106262.0057 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,225.9033589 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4304.460479 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,25.79502773 +MI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,162.2147144 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,195.4240664 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,80.84093643 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.329541476 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1100.103723 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.036218549 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1093.262906 +MI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,70.00347407 +MI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,36.01402137 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,150.8479448 +MI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.017148345 +MI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,206.1708618 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,753.4689935 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.930128052 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.204904792 +MI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,148.9239111 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,100.4823177 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,67.35011792 +MI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.449258052 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,34.57589301 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,580.5769822 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,11009.1155 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,23.04077997 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.397800021 +MI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,87.13334551 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,485.2973325 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.547379374 +MI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.251112735 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.7485606 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,785.2552426 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.34733366 +MI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,134.4142169 +MI,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00105 +MI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.2132548 +MI,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,110.0012586 +MI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,753.168226 +MI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,182.8837188 +MI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,13101.48903 +MI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4483.519816 +MI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,140.9437951 +MI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1958.426084 +MI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,153.038685 +MI,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,20.732068 +MI,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,457.1498775 +MI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,67.191081 +MI,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,1.0270225 +MI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,63.774175 +MI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.465 +MI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,890.7265909 +MI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4431.03449 +MI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,173.4146686 +MI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,27.44664 +MI,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,3143.292573 +MI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,5558.221655 +MI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,42222.04186 +MI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,49.011 +MI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,68.17146 +MI,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.788307841 +MI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,59.40036285 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3867.682646 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4059.074765 +MI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,241.5269852 +MI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.4688 +MI,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.121 +MI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,124.510555 +MI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,12.61935206 +MI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,141.0746952 +MI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,2.0171262 +MI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,373.2837771 +MI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,21.6565942 +MI,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,108.25 +MI,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.726015 +MI,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.0455 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7673.726057 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,37.12659411 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,5.687202253 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.017902791 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.001235765 +MI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,332.7238407 +MI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,13.70931651 +MI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.02498696 +MI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.055990187 +MI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,12767.49434 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,624.1266781 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.003680943 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.864701626 +MI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,50.22790679 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,10411.14527 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,8.035230188 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.487199985 +MI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,18.44161069 +MI,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00105 +MI,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0327548 +MI,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,42.12458531 +MI,PM2.5 Filterable,2A1_Cement-production,,TON,440.4443812 +MI,PM2.5 Filterable,2A2_Lime-production,,TON,85.86121653 +MI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1310.380753 +MI,PM2.5 Filterable,2A6_Other-minerals,,TON,985.5643523 +MI,PM2.5 Filterable,2B_Chemicals-other,,TON,73.24322624 +MI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,892.5532917 +MI,PM2.5 Filterable,2C3_Aluminum-production,,TON,76.96291698 +MI,PM2.5 Filterable,2C6_Zinc-production,,TON,5.806125304 +MI,PM2.5 Filterable,2C7_Other-metal,,TON,195.1122707 +MI,PM2.5 Filterable,2C7a_Copper-production,,TON,15.42165723 +MI,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.47906598 +MI,PM2.5 Filterable,2D3d_Coating-application,,TON,56.27534005 +MI,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.4081013 +MI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,349.3544405 +MI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,252.1504451 +MI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,116.2372421 +MI,PM2.5 Filterable,2I_Wood-processing,,TON,9.788534268 +MI,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,653.3307921 +MI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1155.27132 +MI,PM2.5 Filterable,3Dc_Other-farm,,TON,8158.920276 +MI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,44.52392692 +MI,PM2.5 Filterable,5C_Incineration,,TON,1.150523611 +MI,PM2.5 Filterable,5C_Incineration,biomass,TON,44.62623673 +MI,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0 +MI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3526.416856 +MI,PM2.5 Filterable,5C_Open-burning-residential,,TON,3717.257747 +MI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,186.2300286 +MI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.2188 +MI,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,2.3655 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,130.4667709 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.43520656 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,173.1034948 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,2.41476 +MI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,696.8703284 +MI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,88.867131 +MI,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,177.2375 +MI,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,19.735359 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,115.1064693 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,73.84967588 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.62046753 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7981.177357 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,38.40462055 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,6.374629167 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.281092318 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.005857159 +MI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,746.2238872 +MI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,18.68965718 +MI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0304606 +MI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.15566759 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,434.0632535 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,37.20149715 +MI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000628736 +MI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,195.2584967 +MI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,12767.49434 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,144.553609 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1682.563986 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,18.61723941 +MI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,60.15428166 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,135.7348269 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,46.66241165 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.140422114 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,686.9082793 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.012757062 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,712.0109823 +MI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,21.59193228 +MI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.46887427 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,146.3213336 +MI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015803948 +MI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,195.2672818 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,651.8224374 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.654687177 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.160468115 +MI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,140.0947556 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,97.46783867 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,62.10915148 +MI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.449258052 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,33.53861882 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,534.1561426 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10887.31564 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,20.62052981 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.251349994 +MI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,72.04474541 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,470.7384487 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.863762632 +MI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.251112735 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.6061031 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,722.4368725 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.58691484 +MI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,123.6610878 +MI,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00105 +MI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.2132548 +MI,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,110.0009581 +MI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,469.6573554 +MI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,114.1436334 +MI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1310.380753 +MI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1309.344949 +MI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,104.3716213 +MI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1857.683122 +MI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,145.6769519 +MI,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,20.2946093 +MI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,351.1121808 +MI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,59.23449883 +MI,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.47916598 +MI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,59.56008005 +MI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.4081013 +MI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,793.0668956 +MI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4028.693288 +MI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,125.6878831 +MI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,9.788534268 +MI,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,653.3307921 +MI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1155.27132 +MI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,8162.199339 +MI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,35.261 +MI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,62.1272308 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.193008341 +MI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,49.38809586 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3526.416856 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3717.257747 +MI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,186.2300286 +MI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.4688 +MI,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,2.3655 +MI,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,837.96775 +MI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,24.38350895 +MI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,64582.5659 +MI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,137.9205 +MI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,598.317216 +MI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,585.364505 +MI,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,1814.5 +MI,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,11.28367 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.979661052 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.76955798 +MI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.214153856 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1062.881804 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.107962464 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,56.88808441 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,748.4249993 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,30.35620656 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.02658827 +MI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3572.600077 +MI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,214.14023 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.29539 +MI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.13564 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.508042635 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.390241011 +MI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.89341E-05 +MI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,543.097522 +MI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,11.58279666 +MI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,497.1779464 +MI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.126710846 +MI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.71197469 +MI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.456349561 +MI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,3.794837435 +MI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.007467364 +MI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,56.14614687 +MI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.647935609 +MI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,35.1807318 +MI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.640523546 +MI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.789505356 +MI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.053872762 +MI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002173176 +MI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,219.8794619 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,55.29286397 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.405291742 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.59480124 +MI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,94.0398502 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.51604858 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.01792177 +MI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.064183246 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.576498776 +MI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,10.51434334 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,315.4689553 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,68.73509861 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.09927425 +MI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,100.545416 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7.901853255 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.256654538 +MI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.011533853 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0366788 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,12.88852964 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.107915745 +MI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.084599337 +MI,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0200182 +MI,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.805645422 +MI,Sulfur Dioxide,2A1_Cement-production,,TON,2232.3017 +MI,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,466.370365 +MI,Sulfur Dioxide,2A6_Other-minerals,,TON,2451.549895 +MI,Sulfur Dioxide,2B_Chemicals-other,,TON,35.73192 +MI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1194.870822 +MI,Sulfur Dioxide,2C3_Aluminum-production,,TON,26.18854 +MI,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,2.873175 +MI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,49.01653 +MI,Sulfur Dioxide,2H2_Food-and-beverage,,TON,10.5742 +MI,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,0 +MI,Sulfur Dioxide,3Dc_Other-farm,,TON,12.66 +MI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.47 +MI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,186.205625 +MI,Sulfur Dioxide,5C_Incineration,,TON,13.52857237 +MI,Sulfur Dioxide,5C_Incineration,biomass,TON,134.5966277 +MI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,314.7232129 +MI,Sulfur Dioxide,5C_Open-burning-residential,,TON,126.5265798 +MI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.830539976 +MI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.47501 +MI,Volatile Organic Compounds,11C_Other-natural,,TON,359644.692 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,21.740235 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,14.6468 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,731.9187 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.585375 +MI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,475.078939 +MI,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,144.5130126 +MI,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,230.2249362 +MI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,108.2408689 +MI,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,45.86 +MI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,61.929965 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,137.7292356 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,458.1569211 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,52.99170496 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,365.0555526 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,50.10123862 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.84214258 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.112501099 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.012480496 +MI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1448.747234 +MI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,10.11068 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.009074815 +MI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.657690185 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,561.8447585 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,352.2100667 +MI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.051384177 +MI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1328.456954 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1124.048466 +MI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,48133.82735 +MI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,110.655472 +MI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1723.247694 +MI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,276.3932494 +MI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,1106.754266 +MI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.646592561 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1163.853732 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,30.49783316 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1353.443674 +MI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,409.5990377 +MI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1899.811313 +MI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,246.8230139 +MI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.720275409 +MI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,413.4238933 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,25.55627861 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.8193286 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.66319503 +MI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,424.6993602 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,135.1851391 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1745.8922 +MI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,36.8211963 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,48.13711466 +MI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8930.3205 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,10543.27389 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,6.902552865 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.411799977 +MI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,921.6739038 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,492.3037797 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,152.8467786 +MI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.270086862 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.39728718 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,27202.68111 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,64.58647108 +MI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,9078.036697 +MI,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,673.122887 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,697.7860397 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,943.6186613 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8399.916992 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,11198.66938 +MI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +MI,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11901.23904 +MI,Volatile Organic Compounds,2A1_Cement-production,,TON,36.783 +MI,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.88705 +MI,Volatile Organic Compounds,2A6_Other-minerals,,TON,467.01536 +MI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +MI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1403.1993 +MI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,691.323935 +MI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,289.25387 +MI,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.040875 +MI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,366.3919415 +MI,Volatile Organic Compounds,2C7a_Copper-production,,TON,0 +MI,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,0.9582 +MI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,43488.28267 +MI,Volatile Organic Compounds,2D3d_Coating-application,,TON,39962.49729 +MI,Volatile Organic Compounds,2D3e_Degreasing,,TON,9255.696132 +MI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,68.678015 +MI,Volatile Organic Compounds,2D3h_Printing,,TON,19177.68614 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,101.6634121 +MI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3648.844007 +MI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,768.36992 +MI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1274.434847 +MI,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2110.501962 +MI,Volatile Organic Compounds,2I_Wood-processing,,TON,0.23 +MI,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1102.580915 +MI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,250.3915449 +MI,Volatile Organic Compounds,3B2_Manure-sheep,,TON,25.25343229 +MI,Volatile Organic Compounds,3B3_Manure-swine,,TON,752.1639831 +MI,Volatile Organic Compounds,3B4_Manure-other,,TON,84.85149879 +MI,Volatile Organic Compounds,3B4_Manure-poultry,,TON,387.803226 +MI,Volatile Organic Compounds,3B4d_Manure-goats,,TON,14.83073851 +MI,Volatile Organic Compounds,3Dc_Other-farm,,TON,28.95314 +MI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2677.037882 +MI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,32.294 +MI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,57.65276 +MI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1325.38807 +MI,Volatile Organic Compounds,5C_Incineration,,TON,13.64286891 +MI,Volatile Organic Compounds,5C_Incineration,biomass,TON,33.18688933 +MI,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0 +MI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2142.392918 +MI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,791.4127261 +MI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,177.9672602 +MI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,225.58109 +MI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,119.204525 +MI,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.000275 +MI,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,837.1942754 +MI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.044945 +MN,Ammonia,1A1a_Public-Electricity,biomass,TON,227.3021 +MN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.31587337 +MN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,87.41679686 +MN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,224.9720343 +MN,Ammonia,1A1b_Pet-refining,natural_gas,TON,32.36780708 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.55790851 +MN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.685225603 +MN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.02887685 +MN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,69.4480744 +MN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.283070397 +MN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,9.777192507 +MN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.549436354 +MN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.049120854 +MN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,394.5860298 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.140261046 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.002304 +MN,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.130285686 +MN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.49189218 +MN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.465907625 +MN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,15.06989053 +MN,Ammonia,1A3bii_Road-LDV,light_oil,TON,1694.903574 +MN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.473189372 +MN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,80.67551062 +MN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.474141702 +MN,Ammonia,1A3biii_Road-bus,light_oil,TON,1.471553027 +MN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.286112678 +MN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,59.69923862 +MN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.24789101 +MN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.72093383 +MN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,18.61805554 +MN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,26.50217848 +MN,Ammonia,1A3c_Rail,diesel_oil,TON,9.611810586 +MN,Ammonia,1A3c_Rail,light_oil,TON,0.004110834 +MN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.532925334 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.37731086 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.246405516 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.145304007 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.016645734 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.073630422 +MN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.549576355 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.331945808 +MN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.952472628 +MN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.355187784 +MN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.417277747 +MN,Ammonia,1A4bi_Residential-stationary,biomass,TON,1727.847966 +MN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,16.61100013 +MN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.263249999 +MN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1244.127911 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27.90923067 +MN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.602096256 +MN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.01929516 +MN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,11.03107031 +MN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.94905794 +MN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.391359751 +MN,Ammonia,2A6_Other-minerals,,TON,1.169277 +MN,Ammonia,2B_Chemicals-other,,TON,7.526606572 +MN,Ammonia,2C_Iron-steel-alloy,,TON,1.0801781 +MN,Ammonia,2C6_Zinc-production,,TON,0.0374 +MN,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.02199 +MN,Ammonia,2D3d_Coating-application,,TON,1.035329 +MN,Ammonia,2D3h_Printing,,TON,0.55579 +MN,Ammonia,2H1_Pulp-and-paper,,TON,52.8901 +MN,Ammonia,2H2_Ethanol Production,,TON,0.897 +MN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,88.27500901 +MN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,23.2291 +MN,Ammonia,3B1a_Cattle-dairy,,TON,13826.74861 +MN,Ammonia,3B1b_Cattle-non-dairy,,TON,11076.06112 +MN,Ammonia,3B2_Manure-sheep,,TON,482.7862194 +MN,Ammonia,3B3_Manure-swine,,TON,84398.50981 +MN,Ammonia,3B4_Manure-other,,TON,607.84437 +MN,Ammonia,3B4_Manure-poultry,,TON,18568.59518 +MN,Ammonia,3B4d_Manure-goats,,TON,216.2498546 +MN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,58210.3 +MN,Ammonia,3Dc_Other-farm,,TON,0.0018 +MN,Ammonia,3F_Ag-res-on-field,,TON,303.965 +MN,Ammonia,5C_Incineration,biomass,TON,4.212724 +MN,Ammonia,5C_Open-burning-industrial,Other_Fuel,TON,0.0013325 +MN,Ammonia,5D1_Wastewater-domestic,Other_Fuel,TON,10.57490576 +MN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.0006026 +MN,Ammonia,5E_Other-waste,Other_Fuel,TON,0.006064 +MN,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,874400 +MN,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3866.77171 +MN,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,103732.2203 +MN,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,3826.55 +MN,Carbon Dioxide,1A1g_Other-energy-transf,natural_gas,TON,102.2 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,315247.5325 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,396581.4393 +MN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22702.93319 +MN,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,315637.7756 +MN,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,41100.16826 +MN,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,552.3235087 +MN,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,716.8393241 +MN,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2468306.665 +MN,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4930.498755 +MN,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,87.70545127 +MN,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6124.062623 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1661675.029 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,37907.19163 +MN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,9.00859165 +MN,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1101086.884 +MN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,457408.6406 +MN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,23199469.75 +MN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,101885.0802 +MN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1302312.796 +MN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,306497.8994 +MN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,41715.16323 +MN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,10680.46901 +MN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3807772.912 +MN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6690.008789 +MN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2194060.422 +MN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,473512.4211 +MN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,227585.9074 +MN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6246.633302 +MN,Carbon Dioxide,1A3c_Rail,light_oil,TON,320.2126955 +MN,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1875.501028 +MN,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13988.36798 +MN,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4838.304228 +MN,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,434.4491751 +MN,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,390436.5814 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,163927.9221 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,240557.301 +MN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10667.32342 +MN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,43722.54674 +MN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,404202.0697 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3436806.956 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,45481.60927 +MN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6500.695864 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2366.64894 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,770255.7499 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,116870.8714 +MN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,465020.0204 +MN,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.36861E-05 +MN,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,91364.30735 +MN,Carbon Dioxide,2B_Chemicals-other,,TON,758.175 +MN,Carbon Dioxide,2C_Iron-steel-alloy,,TON,3858.77 +MN,Carbon Dioxide,2C3_Aluminum-production,,TON,2840 +MN,Carbon Dioxide,2C5_Lead-production,,TON,170083.3374 +MN,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,2542.3 +MN,Carbon Dioxide,2D3d_Coating-application,,TON,3945.5649 +MN,Carbon Dioxide,2D3h_Printing,,TON,5108.91 +MN,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,7531.12 +MN,Carbon Dioxide,2H2_Food-and-beverage,,TON,13303.234 +MN,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,47770379.64 +MN,Carbon Dioxide,3Dc_Other-farm,,TON,21294.52 +MN,Carbon Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,19927.11 +MN,Carbon Dioxide,5C_Incineration,,TON,4646 +MN,Carbon Dioxide,5C_Incineration,biomass,TON,64004.562 +MN,Carbon Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,10.7492 +MN,Carbon Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,19494.67 +MN,Carbon Monoxide,11C_Other-natural,,TON,65711.6627 +MN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1873.5846 +MN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,10.47252827 +MN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,5761.6519 +MN,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.39801 +MN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1701.686256 +MN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,847.5711837 +MN,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.07157 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,463.221508 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9614.932909 +MN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,328.6897927 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.38111239 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,3780.183602 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,15.55516019 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,469.2851046 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2810.992756 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,35.06011944 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,239.7187121 +MN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,9253.856808 +MN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,5.07105 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.121503504 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.018435493 +MN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.378292783 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4260.19584 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7747.256975 +MN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.716350316 +MN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,12021.69837 +MN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2567.263902 +MN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,412871.3362 +MN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,489.4888653 +MN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,22061.26978 +MN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,632.8675451 +MN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2880.393277 +MN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,61.66888339 +MN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3000.470355 +MN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,376.6847028 +MN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2534.140549 +MN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12120.33856 +MN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9877.243284 +MN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3059.556231 +MN,Carbon Monoxide,1A3c_Rail,light_oil,TON,70.70899877 +MN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,155.6598645 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,12.47772505 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,127.8177742 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.74236661 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.217130653 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.472467684 +MN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,969.9142652 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,533.8775938 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,49073.53667 +MN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,216.7481666 +MN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,121.5800007 +MN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,90916.11804 +MN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,238500.5272 +MN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,83.0549994 +MN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.316249961 +MN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2899.304107 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10436.23787 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8609.548151 +MN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,79.88617522 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,17.1134323 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,71140.64094 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,231.2320836 +MN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,49256.38414 +MN,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,93.24496309 +MN,Carbon Monoxide,2A6_Other-minerals,,TON,676.35804 +MN,Carbon Monoxide,2B_Chemicals-other,,TON,110.02211 +MN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1042.380009 +MN,Carbon Monoxide,2C3_Aluminum-production,,TON,0.51754 +MN,Carbon Monoxide,2C5_Lead-production,,TON,259.889607 +MN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,10.3487 +MN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,69.8138 +MN,Carbon Monoxide,2D3d_Coating-application,,TON,7.6569541 +MN,Carbon Monoxide,2D3e_Degreasing,,TON,0.03737 +MN,Carbon Monoxide,2D3h_Printing,,TON,0.49856 +MN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,1845.36522 +MN,Carbon Monoxide,2H2_Ethanol Production,,TON,101.773 +MN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1854.613866 +MN,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.5584 +MN,Carbon Monoxide,3Dc_Other-farm,,TON,21.012705 +MN,Carbon Monoxide,3F_Ag-res-on-field,,TON,2494.36 +MN,Carbon Monoxide,5A_Solid-waste-disposal,,TON,404.5877 +MN,Carbon Monoxide,5C_Incineration,,TON,0.112200203 +MN,Carbon Monoxide,5C_Incineration,biomass,TON,453.8020933 +MN,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,0.77693 +MN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,15248.4806 +MN,Carbon Monoxide,5C_Open-burning-residential,,TON,2234.996 +MN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,356.2865142 +MN,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,8.48213 +MN,Methane,1A1a_Public-Electricity,biomass,TON,68.95 +MN,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.156762306 +MN,Methane,1A1a_Public-Electricity,heavy_oil,TON,1.26 +MN,Methane,1A1a_Public-Electricity,natural_gas,TON,39.3070993 +MN,Methane,1A1b_Pet-refining,natural_gas,TON,0.0719902 +MN,Methane,1A1g_Other-energy-transf,natural_gas,TON,0.00196 +MN,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.552469845 +MN,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,43.35161733 +MN,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,139.9250618 +MN,Methane,1A2_Industrial_fuel_combustion,biomass,TON,32.53830876 +MN,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.092928096 +MN,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.027647378 +MN,Methane,1A2_Industrial_fuel_combustion,light_oil,TON,0.049179627 +MN,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,58.67754145 +MN,Methane,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.203333678 +MN,Methane,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.00393754 +MN,Methane,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.129622717 +MN,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,40.87474675 +MN,Methane,1A2g_Construction_and_Mining,light_oil,TON,28.50042059 +MN,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.442304378 +MN,Methane,1A3bii_Road-LDV,diesel_oil,TON,52.53862634 +MN,Methane,1A3bii_Road-LDV,light_oil,TON,1128.949502 +MN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,13.10470122 +MN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,74.20408916 +MN,Methane,1A3biii_Road-bus,diesel_oil,TON,9.874303939 +MN,Methane,1A3biii_Road-bus,light_oil,TON,7.7415379 +MN,Methane,1A3biii_Road-bus,natural_gas,TON,45.93979195 +MN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,214.482198 +MN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.727263351 +MN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,92.99923394 +MN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,26.45680169 +MN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.84327594 +MN,Methane,1A3c_Rail,diesel_oil,TON,0.276546812 +MN,Methane,1A3c_Rail,light_oil,TON,0.216930101 +MN,Methane,1A4ai_Commercial-institutional-stationary,biomass,TON,0.140489223 +MN,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.566090751 +MN,Methane,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.496070478 +MN,Methane,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.01782853 +MN,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.43897227 +MN,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.245674281 +MN,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,166.4680532 +MN,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,136.1250717 +MN,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.439647289 +MN,Methane,1A4bi_Residential-mobile,light_oil,TON,357.4933042 +MN,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,102.3950586 +MN,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,35.81677915 +MN,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,31.91531252 +MN,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.096271262 +MN,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,612.3658226 +MN,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.353522192 +MN,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,452.2501499 +MN,Methane,1B2av_Fugitive-petr-distr,Other_Fuel,TON,9.999 +MN,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.00066918 +MN,Methane,2A6_Other-minerals,Other_Fuel,TON,6.228245765 +MN,Methane,2B_Chemicals-other,,TON,0.843521 +MN,Methane,2C_Iron-steel-alloy,,TON,1.14 +MN,Methane,2C3_Aluminum-production,,TON,0.037 +MN,Methane,2C5_Lead-production,Other_Fuel,TON,0.002975065 +MN,Methane,2D3d_Coating-application,,TON,0.1 +MN,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,0.187055 +MN,Methane,2H2_Food-and-beverage,Other_Fuel,TON,1.436468 +MN,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,36615.77253 +MN,Methane,3Dc_Other-farm,,TON,2.3378 +MN,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,2457.68775 +MN,Methane,5C_Incineration,biomass,TON,56.940658 +MN,Methane,5C_Open-burning-industrial,Other_Fuel,TON,0.005441 +MN,Methane,5D1_Wastewater-domestic,Other_Fuel,TON,20.4905892 +MN,Nitrogen Oxides,11C_Other-natural,,TON,34336.93392 +MN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,1660.66546 +MN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,81.63812985 +MN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,16885.793 +MN,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,45.5508 +MN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1363.998893 +MN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1831.089582 +MN,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.0852 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1310.23418 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,943.983644 +MN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,57.10770451 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.078017648 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1755.511809 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,8.974797018 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2131.88655 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,6480.389374 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,320.7110885 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,309.0186534 +MN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,13646.42102 +MN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,6.04697 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.452061332 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.201285243 +MN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,5.173738934 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8093.109641 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,112.2731601 +MN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.117211169 +MN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3192.384374 +MN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1020.040984 +MN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,40620.25877 +MN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,228.9444265 +MN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2138.448759 +MN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2053.707699 +MN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,297.4125019 +MN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,36.46108352 +MN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11079.72548 +MN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,36.75536965 +MN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6603.866633 +MN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1020.277987 +MN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,501.9550458 +MN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,16058.3011 +MN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.810427773 +MN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1203.940542 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,4.066401829 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,525.2563427 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,70.6281871 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.066197032 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.635253535 +MN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1123.277076 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1070.526432 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,685.4869659 +MN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,52.70670326 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,319.2023869 +MN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,900.0999932 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,2685.651218 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,298.9979969 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.738499519 +MN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,7308.998067 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21588.11847 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,191.7481153 +MN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,14.39704118 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.67908335 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1702.857888 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1159.258897 +MN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3314.275096 +MN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,36.88451 +MN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,171.1376 +MN,Nitrogen Oxides,2A6_Other-minerals,,TON,872.329428 +MN,Nitrogen Oxides,2B_Chemicals-other,,TON,130.166984 +MN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,22982.21052 +MN,Nitrogen Oxides,2C3_Aluminum-production,,TON,10.13032575 +MN,Nitrogen Oxides,2C5_Lead-production,,TON,24.33662449 +MN,Nitrogen Oxides,2C6_Zinc-production,,TON,0.00005 +MN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,15.528587 +MN,Nitrogen Oxides,2D3d_Coating-application,,TON,9.418122 +MN,Nitrogen Oxides,2D3e_Degreasing,,TON,0.02025 +MN,Nitrogen Oxides,2D3h_Printing,,TON,0.88845 +MN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1376.24931 +MN,Nitrogen Oxides,2H2_Ethanol Production,,TON,61.1103 +MN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,148.78029 +MN,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,5.6702 +MN,Nitrogen Oxides,3Dc_Other-farm,,TON,66.4638 +MN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,70.418 +MN,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,152.7537 +MN,Nitrogen Oxides,5C_Incineration,,TON,12.1700051 +MN,Nitrogen Oxides,5C_Incineration,biomass,TON,2357.233807 +MN,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.506998 +MN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,370.1087345 +MN,Nitrogen Oxides,5C_Open-burning-residential,,TON,157.76425 +MN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,19.72300352 +MN,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,4.24028 +MN,Nitrous Oxide,1A1a_Public-Electricity,biomass,TON,34.434 +MN,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.031315371 +MN,Nitrous Oxide,1A1a_Public-Electricity,heavy_oil,TON,0.1838 +MN,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.27362374 +MN,Nitrous Oxide,1A1b_Pet-refining,natural_gas,TON,0.00721902 +MN,Nitrous Oxide,1A1g_Other-energy-transf,natural_gas,TON,0.001874 +MN,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,14.23200158 +MN,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.40694584 +MN,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.005055364 +MN,Nitrous Oxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.00899234 +MN,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5.888451139 +MN,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.058218561 +MN,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.000966345 +MN,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.023388136 +MN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.308239247 +MN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,746.5729888 +MN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.337055728 +MN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,48.83283284 +MN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.621801366 +MN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,2.071061839 +MN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.527451106 +MN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.148277895 +MN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.593052763 +MN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.194565013 +MN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,18.81703403 +MN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.571661807 +MN,Nitrous Oxide,1A3c_Rail,diesel_oil,TON,0.008326 +MN,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.068795213 +MN,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.112720161 +MN,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.074416322 +MN,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.003550255 +MN,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.82113722 +MN,Nitrous Oxide,2A6_Other-minerals,Other_Fuel,TON,0.445384745 +MN,Nitrous Oxide,2B_Chemicals-other,,TON,0.00042 +MN,Nitrous Oxide,2C_Iron-steel-alloy,,TON,0.149 +MN,Nitrous Oxide,2C3_Aluminum-production,,TON,0.167 +MN,Nitrous Oxide,2C7_Other-metal,Other_Fuel,TON,1.48 +MN,Nitrous Oxide,2D3d_Coating-application,,TON,0.1 +MN,Nitrous Oxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.137648 +MN,Nitrous Oxide,2H2_Food-and-beverage,Other_Fuel,TON,0.012371 +MN,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,636.5110483 +MN,Nitrous Oxide,3Dc_Other-farm,,TON,5.099 +MN,Nitrous Oxide,5A_Solid-waste-disposal,,TON,0.163 +MN,Nitrous Oxide,5C_Incineration,biomass,TON,7.47418 +MN,Nitrous Oxide,5D1_Wastewater-domestic,Other_Fuel,TON,57.24805892 +MN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,66.70394098 +MN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.402383842 +MN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,906.2593601 +MN,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.067309 +MN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,37.45079242 +MN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,250.1397313 +MN,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.006475 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,12.43308165 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1381.082594 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.212372581 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,147.0095016 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3996.985132 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,70.8636966 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,20.53670335 +MN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,180.943399 +MN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.177609 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.366600233 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.033466489 +MN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.019997762 +MN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,122875.3853 +MN,PM10 Filterable,1A3c_Rail,diesel_oil,TON,0.5051 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,12.56632786 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,49.83988637 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,28.19773304 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.480116407 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.122713916 +MN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.926282044 +MN,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,36302.89318 +MN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,17.93987985 +MN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.28404998 +MN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,14.50179919 +MN,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0001313 +MN,PM10 Filterable,2A1_Cement-production,,TON,8.90625675 +MN,PM10 Filterable,2A2_Lime-production,,TON,51.51310998 +MN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,15916.87938 +MN,PM10 Filterable,2A6_Other-minerals,,TON,2852.5329 +MN,PM10 Filterable,2B_Chemicals-other,,TON,141.742973 +MN,PM10 Filterable,2C_Iron-steel-alloy,,TON,3856.773275 +MN,PM10 Filterable,2C3_Aluminum-production,,TON,23.233345 +MN,PM10 Filterable,2C5_Lead-production,,TON,10.07840401 +MN,PM10 Filterable,2C6_Zinc-production,,TON,0.816043 +MN,PM10 Filterable,2C7_Other-metal,,TON,2091.610601 +MN,PM10 Filterable,2C7a_Copper-production,,TON,0.86951196 +MN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,9.89498 +MN,PM10 Filterable,2D3d_Coating-application,,TON,687.8922263 +MN,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.36865257 +MN,PM10 Filterable,2D3h_Printing,,TON,2.269158 +MN,PM10 Filterable,2H1_Pulp-and-paper,,TON,674.1909105 +MN,PM10 Filterable,2H2_Ethanol Production,,TON,13.8019667 +MN,PM10 Filterable,2H2_Food-and-beverage,,TON,1465.253011 +MN,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,352.8280951 +MN,PM10 Filterable,2I_Wood-processing,,TON,80.0001185 +MN,PM10 Filterable,3B1a_Cattle-dairy,,TON,3832.08176 +MN,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,16252.25165 +MN,PM10 Filterable,3Dc_Other-farm,,TON,148478.9129 +MN,PM10 Filterable,5A_Solid-waste-disposal,,TON,40.66874148 +MN,PM10 Filterable,5C_Incineration,,TON,0.789824272 +MN,PM10 Filterable,5C_Incineration,biomass,TON,26.76774981 +MN,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.216532 +MN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1887.554622 +MN,PM10 Filterable,5C_Open-burning-residential,,TON,999.1795 +MN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,120.8829296 +MN,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.3725636 +MN,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.0577566 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,345.1889138 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.654574432 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2095.19476 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.10691 +MN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,62.44802691 +MN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,461.6903066 +MN,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.01295 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,73.5665671 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,45.58057446 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.731351975 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,13.32381435 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1467.931033 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,1.367646458 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,151.875682 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,4428.28506 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,79.6492202 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,20.6281245 +MN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,367.9809221 +MN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.4629296 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.442889208 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.040426598 +MN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.051413296 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,670.0309533 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,60.22188853 +MN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001117042 +MN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,189.6211393 +MN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,122875.3853 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,59.91361277 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2441.296299 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.17277588 +MN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,129.8671454 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,129.2928115 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.73780264 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.279690321 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,621.7240445 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.877566687 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,476.3942434 +MN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,65.14731935 +MN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.6529154 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,469.7673972 +MN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.040747203 +MN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,29.06622522 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,12.3391354 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,49.323709 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,33.06929552 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.529436009 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.251997062 +MN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.21519375 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,87.5978562 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,62.92337382 +MN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.348872654 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,20.32586516 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,398.9321527 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,38196.38294 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,39.53417976 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.62660006 +MN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,37.67827981 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1795.882424 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,14.34761133 +MN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.791630828 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.52252886 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,769.4348248 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.37410159 +MN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,146.9848984 +MN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0001313 +MN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,9.312902294 +MN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,76.32050842 +MN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,15916.87938 +MN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2995.106073 +MN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,187.5837951 +MN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4555.454076 +MN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,78.080061 +MN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,15.51019297 +MN,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.754 +MN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,2246.158922 +MN,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.04689496 +MN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,11.76343 +MN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,675.4565928 +MN,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.36865257 +MN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.269158 +MN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,964.1637174 +MN,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,49.6717337 +MN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3752.93073 +MN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,571.2950354 +MN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,80.0001185 +MN,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,3832.08176 +MN,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,16252.25165 +MN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,148546.202 +MN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,406.857 +MN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,71.33223763 +MN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.626116016 +MN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,84.35864503 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.403363 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1887.554622 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,999.1795 +MN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,120.8829296 +MN,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.81029025 +MN,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.0767666 +MN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,46.90703274 +MN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.320012526 +MN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,285.50837 +MN,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.04905 +MN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,25.70826434 +MN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,168.9486073 +MN,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.006475 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,5.430147557 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1183.72689 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.210636838 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,140.5241473 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,492.811671 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,46.09739752 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,20.4260516 +MN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,132.7103214 +MN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.166709 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.182604224 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.019172019 +MN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.018844924 +MN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,13489.88217 +MN,PM2.5 Filterable,1A3c_Rail,diesel_oil,TON,0.5051 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,11.58360299 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,53.18245994 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,11.14253264 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.28695267 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.101505048 +MN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.465403806 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,36242.64084 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,13.7871294 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.218400002 +MN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.975989667 +MN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0001313 +MN,PM2.5 Filterable,2A1_Cement-production,,TON,3.548635776 +MN,PM2.5 Filterable,2A2_Lime-production,,TON,27.31143594 +MN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1591.687938 +MN,PM2.5 Filterable,2A6_Other-minerals,,TON,844.0768586 +MN,PM2.5 Filterable,2B_Chemicals-other,,TON,93.12552893 +MN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,2873.965812 +MN,PM2.5 Filterable,2C3_Aluminum-production,,TON,19.590495 +MN,PM2.5 Filterable,2C5_Lead-production,,TON,8.148435717 +MN,PM2.5 Filterable,2C6_Zinc-production,,TON,0.727312 +MN,PM2.5 Filterable,2C7_Other-metal,,TON,575.838244 +MN,PM2.5 Filterable,2C7a_Copper-production,,TON,0.46979882 +MN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,6.32198 +MN,PM2.5 Filterable,2D3d_Coating-application,,TON,582.4307036 +MN,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,0.30587362 +MN,PM2.5 Filterable,2D3h_Printing,,TON,1.882469 +MN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,317.6825792 +MN,PM2.5 Filterable,2H2_Ethanol Production,,TON,13.2902477 +MN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,823.7239753 +MN,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,111.7222687 +MN,PM2.5 Filterable,2I_Wood-processing,,TON,27.091038 +MN,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,796.4950493 +MN,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3378.015713 +MN,PM2.5 Filterable,3Dc_Other-farm,,TON,27836.25891 +MN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,34.66906447 +MN,PM2.5 Filterable,5C_Incineration,,TON,0.74342153 +MN,PM2.5 Filterable,5C_Incineration,biomass,TON,18.73691492 +MN,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.127726 +MN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1721.005655 +MN,PM2.5 Filterable,5C_Open-burning-residential,,TON,915.0239 +MN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,93.20709328 +MN,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.3725636 +MN,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.035789259 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,325.3920055 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.454873893 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1474.44377 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.088651 +MN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,50.70548554 +MN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,380.4991826 +MN,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.01295 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,71.35637984 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44.78999227 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.731351975 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,6.314980773 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1257.155997 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,1.363600592 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,133.5763056 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,924.6047196 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,54.79870909 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,20.27893656 +MN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,314.4290334 +MN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.4465296 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.054764689 +MN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.049094925 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,649.9299519 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,55.43360872 +MN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001117042 +MN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,163.5606836 +MN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,13489.88217 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,39.62875742 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1162.186341 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.56900277 +MN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,59.4989751 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,98.52943335 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.50573974 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.488197853 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,385.4459145 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.36654812 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,306.7415549 +MN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,31.42743593 +MN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.21105719 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,455.6689501 +MN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.037560682 +MN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,27.68910703 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,10.18612542 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,35.1056526 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,18.37941195 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.26318548 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.257224163 +MN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.06876521 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,84.96991901 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,58.02619155 +MN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.348872654 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,19.71609064 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,367.0340111 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,38136.13536 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,35.38143054 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.560950026 +MN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,31.1524715 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1742.005952 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.20034476 +MN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.791630828 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.446852795 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,707.881069 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,24.61288158 +MN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,135.2260823 +MN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0001313 +MN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,3.955282223 +MN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,52.11883438 +MN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1591.687938 +MN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,983.7614612 +MN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,138.560421 +MN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3569.49953 +MN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,72.110981 +MN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,13.69781057 +MN,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.6516 +MN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,729.2389314 +MN,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.64718182 +MN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,8.19043 +MN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,571.4984001 +MN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,0.30587362 +MN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,1.882469 +MN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,606.7915147 +MN,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,49.1600147 +MN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3110.209578 +MN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,329.0843184 +MN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,27.091038 +MN,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,796.4950493 +MN,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3378.015713 +MN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,27902.32046 +MN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,287.578 +MN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,65.33256062 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.579711439 +MN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,76.32780897 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.314557 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1721.005655 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,914.8 +MN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,93.20709328 +MN,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.40029025 +MN,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.054799259 +MN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,284.235978 +MN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,4.863581547 +MN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,14463.066 +MN,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.041445 +MN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,40.89706229 +MN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,742.9912204 +MN,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0005112 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.554170088 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.26613416 +MN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.127254528 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,38.53224339 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,263.6853106 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.036966891 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,153.0025054 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7480.971281 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1233.879667 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,33.82784408 +MN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,207.9073965 +MN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0402218 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.607612361 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.545344731 +MN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.024439745 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,13.28409296 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.580972462 +MN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.0338E-05 +MN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,468.4377887 +MN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.911566754 +MN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,275.5713543 +MN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.867943539 +MN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.4847955 +MN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.664354102 +MN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.494507029 +MN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.056547725 +MN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.22092777 +MN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0794058 +MN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.64659532 +MN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.621329972 +MN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.723807581 +MN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,10.69101667 +MN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005162277 +MN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,21.85911523 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.65151338 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,42.93466975 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,186.395355 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.058887587 +MN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.49583067 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.380741743 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.752663863 +MN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.059766303 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.377433948 +MN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.622176788 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,1035.865703 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,117.9381002 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.044502248 +MN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,43.47899458 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29.80256227 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.747159569 +MN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.036441075 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.020692272 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,12.6216522 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.074364572 +MN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.641987088 +MN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,432.00054 +MN,Sulfur Dioxide,2A6_Other-minerals,,TON,920.469391 +MN,Sulfur Dioxide,2B_Chemicals-other,,TON,89.1572 +MN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,3170.080681 +MN,Sulfur Dioxide,2C3_Aluminum-production,,TON,5.8598755 +MN,Sulfur Dioxide,2C5_Lead-production,,TON,581.2922958 +MN,Sulfur Dioxide,2C6_Zinc-production,,TON,0.0001 +MN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.847552 +MN,Sulfur Dioxide,2C7a_Copper-production,,TON,0.009588 +MN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,30.54 +MN,Sulfur Dioxide,2D3d_Coating-application,,TON,0.812091086 +MN,Sulfur Dioxide,2D3h_Printing,,TON,0.009016 +MN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,62.974116 +MN,Sulfur Dioxide,2H2_Ethanol Production,,TON,13.63168 +MN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,30.61449616 +MN,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.215415 +MN,Sulfur Dioxide,3Dc_Other-farm,,TON,25.6071844 +MN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,13.3762 +MN,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,285.69787 +MN,Sulfur Dioxide,5C_Incineration,,TON,0.02323008 +MN,Sulfur Dioxide,5C_Incineration,biomass,TON,175.2920943 +MN,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.0238594 +MN,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,153.5951222 +MN,Sulfur Dioxide,5C_Open-burning-residential,,TON,26.293505 +MN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.417658554 +MN,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.2802531 +MN,Volatile Organic Compounds,11C_Other-natural,,TON,340690.0361 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,124.7218012 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.290409726 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,388.921018 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.027451 +MN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,51.31642409 +MN,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,158.6955757 +MN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,635.2142334 +MN,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.004686 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,88.20053902 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,288.1622284 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,30.24654997 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.565584777 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,135.7605634 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,178.5657819 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,38.5168727 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.283954426 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,47.34160822 +MN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1036.119234 +MN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.332033 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0671076 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.001293738 +MN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.359279467 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,804.3597626 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,529.175589 +MN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.09560962 +MN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1146.358555 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,275.7854939 +MN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,31627.62287 +MN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,60.57004293 +MN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1578.453438 +MN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,194.3409173 +MN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,176.9039094 +MN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,4.70840263 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,631.8032289 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,18.37355139 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,584.3413309 +MN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,501.2481341 +MN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1413.122278 +MN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,778.3298385 +MN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.727088194 +MN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,70.67709499 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.405033337 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,50.08358101 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.495718633 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.055614851 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.036410686 +MN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,70.85726495 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,118.8298898 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1661.707997 +MN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,29.42514328 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,28.93161462 +MN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5841.418102 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,37268.67268 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,11.84364339 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.184599999 +MN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,398.5619052 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1844.540233 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,361.1104191 +MN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.898893458 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.46439243 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,26744.58816 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,61.52299914 +MN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10032.00018 +MN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.1065953 +MN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,656.8012829 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,15.866105 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,406.1562018 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8176.077265 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6051.635444 +MN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.03684 +MN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.5793 +MN,Volatile Organic Compounds,2A6_Other-minerals,,TON,314.0304908 +MN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,8.260626613 +MN,Volatile Organic Compounds,2B_Chemicals-other,,TON,1650.52828 +MN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,405.5259231 +MN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,47.3625925 +MN,Volatile Organic Compounds,2C5_Lead-production,,TON,74.76616323 +MN,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0007 +MN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,48.3838141 +MN,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.024558 +MN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,24443.97408 +MN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,52.51377 +MN,Volatile Organic Compounds,2D3d_Coating-application,,TON,20594.43054 +MN,Volatile Organic Compounds,2D3e_Degreasing,,TON,4679.115751 +MN,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,18.69659986 +MN,Volatile Organic Compounds,2D3h_Printing,,TON,1789.49691 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,709.0864507 +MN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,7123.06266 +MN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,945.9312025 +MN,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,0.16 +MN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,339.227648 +MN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2308.766757 +MN,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,787.4066031 +MN,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1106.139898 +MN,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,886.0849074 +MN,Volatile Organic Compounds,3B2_Manure-sheep,,TON,38.62289483 +MN,Volatile Organic Compounds,3B3_Manure-swine,,TON,6751.880884 +MN,Volatile Organic Compounds,3B4_Manure-other,,TON,48.62754978 +MN,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1485.487596 +MN,Volatile Organic Compounds,3B4d_Manure-goats,,TON,17.29998859 +MN,Volatile Organic Compounds,3Dc_Other-farm,,TON,196.85791 +MN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7181.850486 +MN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,291.968 +MN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,152.526495 +MN,Volatile Organic Compounds,5C_Incineration,,TON,6.969031816 +MN,Volatile Organic Compounds,5C_Incineration,biomass,TON,11.3029438 +MN,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,0.0080572 +MN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1045.557245 +MN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,788.805 +MN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,89.07162824 +MN,Volatile Organic Compounds,5D1_Wastewater-domestic,Other_Fuel,TON,83.8806035 +MN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.15025 +MN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,2.9 +MN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,209.0032777 +MO,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.0427 +MO,Ammonia,1A1a_Public-Electricity,hard_coal,TON,117.2516 +MO,Ammonia,1A1a_Public-Electricity,natural_gas,TON,122.5696012 +MO,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.3991 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.20273814 +MO,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.49380123 +MO,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.656795321 +MO,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.184656172 +MO,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.000900131 +MO,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.002900421 +MO,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.032336383 +MO,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,108.3677449 +MO,Ammonia,1A2c_Chemicals,natural_gas,TON,0.1846 +MO,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1159 +MO,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.816867395 +MO,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.225716644 +MO,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,30.93850842 +MO,Ammonia,1A3bii_Road-LDV,light_oil,TON,1932.870719 +MO,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.498335376 +MO,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,144.73453 +MO,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.770091513 +MO,Ammonia,1A3biii_Road-bus,light_oil,TON,2.455986319 +MO,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.036138348 +MO,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,221.9351196 +MO,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,16.62837825 +MO,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,79.58118402 +MO,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,12.02651987 +MO,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,32.00530815 +MO,Ammonia,1A3c_Rail,diesel_oil,TON,13.28258405 +MO,Ammonia,1A3c_Rail,light_oil,TON,0.008431748 +MO,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.358285 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,13.57790172 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.045759789 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.37089653 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.03259394 +MO,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.78227994 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.001083852 +MO,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.045836059 +MO,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.506112602 +MO,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.972940581 +MO,Ammonia,1A4bi_Residential-stationary,biomass,TON,837.1584977 +MO,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.419999999 +MO,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.222750005 +MO,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,872.1795454 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.91447451 +MO,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.615575885 +MO,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021021165 +MO,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.258770554 +MO,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.618017697 +MO,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.104300283 +MO,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Ammonia,2A1_Cement-production,,TON,40.1482 +MO,Ammonia,2A6_Other-minerals,Other_Fuel,TON,52.6472 +MO,Ammonia,2B_Chemicals-other,,TON,67.3181 +MO,Ammonia,2C7_Other-metal,Other_Fuel,TON,6.9631 +MO,Ammonia,2C7b_Nickel-production,Other_Fuel,TON,0.244 +MO,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,1.8386 +MO,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,1.444 +MO,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,72.1223 +MO,Ammonia,3B1a_Cattle-dairy,,TON,5305.926811 +MO,Ammonia,3B1b_Cattle-non-dairy,,TON,17910.94085 +MO,Ammonia,3B2_Manure-sheep,,TON,334.2366047 +MO,Ammonia,3B3_Manure-swine,,TON,50610.82249 +MO,Ammonia,3B4_Manure-other,,TON,1264.461675 +MO,Ammonia,3B4_Manure-poultry,,TON,16587.3466 +MO,Ammonia,3B4d_Manure-goats,,TON,782.3219098 +MO,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,24636.6 +MO,Ammonia,3F_Ag-res-on-field,,TON,913.92544 +MO,Ammonia,5B_Compost-biogas,Other_Fuel,TON,135.767277 +MO,Ammonia,5D1_Wastewater-domestic,,TON,856.346707 +MO,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,559.571 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,271461.3871 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,283277.8774 +MO,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16167.91854 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,716076.0721 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,18422.12965 +MO,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.034224728 +MO,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,788918.8447 +MO,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,956100.4448 +MO,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,25821973.15 +MO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,166920.374 +MO,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2399621.669 +MO,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,393179.6138 +MO,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,83804.21102 +MO,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1340.48515 +MO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13567714.45 +MO,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,384909.348 +MO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4874192.092 +MO,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,341984.1913 +MO,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,257805.4272 +MO,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,10625.49142 +MO,Carbon Dioxide,1A3c_Rail,light_oil,TON,656.3258593 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,123176.9628 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,166757.8743 +MO,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7340.954812 +MO,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,62297.71171 +MO,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,520923.1784 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2820797.323 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,46525.4189 +MO,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6754.126525 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2578.06429 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,89337.41746 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,76105.32053 +MO,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,297962.6881 +MO,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,86968327.35 +MO,Carbon Monoxide,11C_Other-natural,,TON,85670.3808 +MO,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,10.5039 +MO,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,18145.8426 +MO,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1317.5051 +MO,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,8.5977 +MO,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,10.4093 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,414.6076041 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7333.66918 +MO,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,253.7401059 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,406.0539088 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,93.35374097 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.799564133 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.057832499 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,9.673530288 +MO,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3888.461211 +MO,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,22.235 +MO,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.0433 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2329.268516 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3846.299379 +MO,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.355911106 +MO,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9712.195306 +MO,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,9251.927088 +MO,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,442642.009 +MO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1157.107642 +MO,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33195.44956 +MO,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1000.660975 +MO,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3321.188922 +MO,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,10.34150088 +MO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10935.55799 +MO,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,7325.436764 +MO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4160.213019 +MO,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5253.647699 +MO,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9901.473151 +MO,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,4283.71303 +MO,Carbon Monoxide,1A3c_Rail,light_oil,TON,148.2696022 +MO,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,351.1358077 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1561.47934 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.295317121 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,79.71983517 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.203104567 +MO,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2455.551648 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,436.3567838 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,34752.78775 +MO,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,155.7402677 +MO,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,179.1358643 +MO,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,118826.4381 +MO,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,109374.2503 +MO,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.100000018 +MO,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.113750014 +MO,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,2026.176017 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9331.994056 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,9527.907529 +MO,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,97.24759483 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.0430215 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,17140.15274 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,150.7355432 +MO,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,32008.75608 +MO,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,49.888 +MO,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.275255837 +MO,Carbon Monoxide,2A1_Cement-production,,TON,1505.1606 +MO,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,2217.074 +MO,Carbon Monoxide,2A6_Other-minerals,,TON,13384.1584 +MO,Carbon Monoxide,2B_Chemicals-other,,TON,1560.2737 +MO,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2.0177 +MO,Carbon Monoxide,2C5_Lead-production,,TON,14965.4 +MO,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.0002 +MO,Carbon Monoxide,2C7a_Copper-production,,TON,134.5618 +MO,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,15.91 +MO,Carbon Monoxide,2H1_Pulp-and-paper,,TON,95.1805 +MO,Carbon Monoxide,2H2_Ethanol Production,,TON,54.5975 +MO,Carbon Monoxide,2H2_Food-and-beverage,,TON,1171.776592 +MO,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,40.1264 +MO,Carbon Monoxide,3Dc_Other-farm,,TON,7.5224 +MO,Carbon Monoxide,3F_Ag-res-on-field,,TON,5507.45475 +MO,Carbon Monoxide,5A_Solid-waste-disposal,,TON,959.911898 +MO,Carbon Monoxide,5C_Incineration,biomass,TON,872.5987764 +MO,Carbon Monoxide,5C_Open-burning-commercial,,TON,5.04 +MO,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,8.1303 +MO,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,28816.14678 +MO,Carbon Monoxide,5C_Open-burning-residential,,TON,7575.300443 +MO,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,601.1569159 +MO,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,37.8812 +MO,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.008731089 +MO,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,32.67016318 +MO,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,108.4973756 +MO,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,15.73945764 +MO,Methane,1A2g_Construction_and_Mining,light_oil,TON,14.04907266 +MO,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.28380041 +MO,Methane,1A3bii_Road-LDV,diesel_oil,TON,51.67502321 +MO,Methane,1A3bii_Road-LDV,light_oil,TON,1106.500889 +MO,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,13.12278725 +MO,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,102.5892857 +MO,Methane,1A3biii_Road-bus,diesel_oil,TON,15.96288261 +MO,Methane,1A3biii_Road-bus,light_oil,TON,8.850219073 +MO,Methane,1A3biii_Road-bus,natural_gas,TON,6.67335486 +MO,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,609.5208805 +MO,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,13.21061318 +MO,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,145.7868568 +MO,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,11.33882757 +MO,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.95109643 +MO,Methane,1A3c_Rail,diesel_oil,TON,0.479533336 +MO,Methane,1A3c_Rail,light_oil,TON,0.432207133 +MO,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.78074766 +MO,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,113.0098785 +MO,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,101.4271656 +MO,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.103841887 +MO,Methane,1A4bi_Residential-mobile,light_oil,TON,447.5234327 +MO,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,100.9908285 +MO,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,39.38802373 +MO,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,38.63689369 +MO,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.107068522 +MO,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,120.2671483 +MO,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.157083321 +MO,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,289.3304378 +MO,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,59531.46794 +MO,Nitrogen Oxides,11C_Other-natural,,TON,42007.73671 +MO,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,67.1943 +MO,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,49322.7947 +MO,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,958.3593 +MO,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,10.2355 +MO,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,16.9616 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1166.26856 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,695.5223831 +MO,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,42.63275509 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,228.510189 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,405.3647355 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,20.89910167 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.474889661 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,39.71174433 +MO,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,7091.470934 +MO,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,5.1636 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.9289 +MO,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.623 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3977.734119 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,57.185878 +MO,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.074839945 +MO,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2221.831454 +MO,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3215.448378 +MO,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,49395.08243 +MO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,489.8422778 +MO,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3241.874439 +MO,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2128.948846 +MO,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,253.9719496 +MO,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,5.16272828 +MO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,36806.92286 +MO,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,754.5413756 +MO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11543.31816 +MO,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,474.7825146 +MO,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,507.7422354 +MO,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,22016.02509 +MO,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.47783621 +MO,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2594.34309 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,649.5491574 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,34.29227365 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,245.8040816 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.814122596 +MO,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3089.489116 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,851.0022313 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,441.3359355 +MO,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38.82066425 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,460.1002489 +MO,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1057.298196 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1721.984397 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,7.559999545 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,4.009500158 +MO,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,5101.323225 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22113.23337 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,236.6358777 +MO,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,16.10559913 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.6355313 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,180.9005766 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,757.5087028 +MO,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2039.560856 +MO,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,21.9699 +MO,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.580493191 +MO,Nitrogen Oxides,2A1_Cement-production,,TON,2996.8891 +MO,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,6242.4326 +MO,Nitrogen Oxides,2A6_Other-minerals,,TON,7656.0462 +MO,Nitrogen Oxides,2B_Chemicals-other,,TON,812.8982 +MO,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,2.6563 +MO,Nitrogen Oxides,2C3_Aluminum-production,,TON,11.6655 +MO,Nitrogen Oxides,2C5_Lead-production,,TON,17.0823 +MO,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,29.7797 +MO,Nitrogen Oxides,2C7a_Copper-production,,TON,2.9995 +MO,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.7056 +MO,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,80.1748 +MO,Nitrogen Oxides,2H2_Ethanol Production,,TON,99.6289 +MO,Nitrogen Oxides,2H2_Food-and-beverage,,TON,222.3445 +MO,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,3.6517 +MO,Nitrogen Oxides,3Dc_Other-farm,,TON,14.6976 +MO,Nitrogen Oxides,3F_Ag-res-on-field,,TON,180.899348 +MO,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,166.6883 +MO,Nitrogen Oxides,5C_Incineration,biomass,TON,158.3010917 +MO,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.144 +MO,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.4251 +MO,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,699.4210098 +MO,Nitrogen Oxides,5C_Open-burning-residential,,TON,534.7270915 +MO,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,33.27832984 +MO,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,7.3199 +MO,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.0813 +MO,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.631624085 +MO,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,910.2489441 +MO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.543732741 +MO,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,84.94786278 +MO,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.006741288 +MO,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.063377389 +MO,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.103245207 +MO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,16.7513108 +MO,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,10.3253427 +MO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.431494404 +MO,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.806154335 +MO,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.630316388 +MO,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,2700.183669 +MO,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.343254224 +MO,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2789.9395 +MO,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,52.826855 +MO,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,7.498602 +MO,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.364572 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,108.1620835 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.69505686 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.287892455 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.041513941 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.66503746 +MO,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,77.19128285 +MO,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.66813 +MO,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0688 +MO,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,810895.8724 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1226.553966 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.018433208 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,145.7745184 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043859018 +MO,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.40144131 +MO,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,13652.56408 +MO,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.453600013 +MO,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.240349995 +MO,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,10.1345005 +MO,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0568 +MO,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.009164187 +MO,PM10 Filterable,2A1_Cement-production,,TON,417.6752139 +MO,PM10 Filterable,2A2_Lime-production,,TON,695.7518313 +MO,PM10 Filterable,2A5b_Construction-and-demolition,,TON,35347.32173 +MO,PM10 Filterable,2A6_Other-minerals,,TON,8870.661183 +MO,PM10 Filterable,2B_Chemicals-other,,TON,287.2735671 +MO,PM10 Filterable,2C_Iron-steel-alloy,,TON,7.686049024 +MO,PM10 Filterable,2C3_Aluminum-production,,TON,47.2482565 +MO,PM10 Filterable,2C5_Lead-production,,TON,42.74268445 +MO,PM10 Filterable,2C6_Zinc-production,,TON,6.836734779 +MO,PM10 Filterable,2C7_Other-metal,,TON,36.42562068 +MO,PM10 Filterable,2C7a_Copper-production,,TON,4.336204866 +MO,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,16.14078171 +MO,PM10 Filterable,2D3d_Coating-application,,TON,109.9723 +MO,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,6.6152 +MO,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0586 +MO,PM10 Filterable,2H1_Pulp-and-paper,,TON,84.31985684 +MO,PM10 Filterable,2H2_Biodiesel Production,,TON,17.8522 +MO,PM10 Filterable,2H2_Ethanol Production,,TON,43.2194 +MO,PM10 Filterable,2H2_Food-and-beverage,,TON,516.0180866 +MO,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,196.1509746 +MO,PM10 Filterable,2I_Wood-processing,,TON,16.1467 +MO,PM10 Filterable,3B1a_Cattle-dairy,,TON,671.2641896 +MO,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,45724.54865 +MO,PM10 Filterable,3Dc_Other-farm,,TON,126976.6847 +MO,PM10 Filterable,5A_Solid-waste-disposal,,TON,118.6832307 +MO,PM10 Filterable,5C_Incineration,biomass,TON,5.581872513 +MO,PM10 Filterable,5C_Open-burning-commercial,,TON,0.3951391 +MO,PM10 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.1444622 +MO,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3567.046911 +MO,PM10 Filterable,5C_Open-burning-residential,,TON,2859.079232 +MO,PM10 Filterable,5C_Open-burning-yard-waste,,TON,203.9639529 +MO,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.06230252 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.989123024 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6443.0577 +MO,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,145.0011 +MO,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,7.9809 +MO,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.9594 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65.40795772 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,32.79018527 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.948724544 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,113.4514163 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,29.53727133 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,11.22879045 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.047228546 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.803376733 +MO,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,183.0724645 +MO,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.6744 +MO,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2753 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,399.3945019 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,29.01083624 +MO,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000499263 +MO,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,138.5544596 +MO,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,810895.8724 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,177.9597875 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2485.863769 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,31.35893323 +MO,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,211.7849307 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,150.7138379 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.09624504 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.243873038 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2381.362249 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,43.13645838 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,828.2477693 +MO,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,41.54511193 +MO,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,27.20581237 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,649.8194177 +MO,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.083526189 +MO,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,72.78086801 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1280.414779 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.080877154 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,170.559855 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.095062711 +MO,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,34.40717691 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,73.30270753 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,43.63728486 +MO,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.928216389 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.90201075 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,499.9766707 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,14304.7617 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.999600035 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.53019999 +MO,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,26.33160037 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1529.510092 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.442763716 +MO,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.835228112 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.80925878 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,88.3785774 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,16.57998222 +MO,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,98.76023867 +MO,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0924 +MO,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.028115206 +MO,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,657.3046 +MO,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,915.5392 +MO,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,35347.32173 +MO,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9532.59931 +MO,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,297.168 +MO,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,17.8022 +MO,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,84.1576 +MO,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,91.8882 +MO,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,6.9679 +MO,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,46.4935 +MO,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,16.1381 +MO,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,16.3044 +MO,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,109.9723 +MO,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,6.6152 +MO,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0586 +MO,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,102.7507 +MO,PM10 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,17.8522 +MO,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,57.7449 +MO,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3009.342892 +MO,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,198.3843 +MO,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,16.1467 +MO,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,671.2641896 +MO,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,45724.54865 +MO,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,126980.7817 +MO,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,857.233982 +MO,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,137.7979 +MO,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.95281853 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.612 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.1904 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3567.046911 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2859.079232 +MO,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,203.9639529 +MO,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0686 +MO,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.650834172 +MO,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,903.26 +MO,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,51.430055 +MO,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,6.221702 +MO,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.364572 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,92.70966617 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.18689705 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.164572389 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.02583445 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.587025418 +MO,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,72.60224345 +MO,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.66813 +MO,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0688 +MO,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,86811.60129 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,1054.557481 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.982358238 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,17.19834782 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033708746 +MO,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.955138654 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,13581.0636 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.348600015 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.184799992 +MO,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.573975398 +MO,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.0568 +MO,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.009164187 +MO,PM2.5 Filterable,2A1_Cement-production,,TON,119.0419026 +MO,PM2.5 Filterable,2A2_Lime-production,,TON,316.2800302 +MO,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3534.732173 +MO,PM2.5 Filterable,2A6_Other-minerals,,TON,1482.905869 +MO,PM2.5 Filterable,2B_Chemicals-other,,TON,263.6324021 +MO,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.980148978 +MO,PM2.5 Filterable,2C3_Aluminum-production,,TON,46.74365652 +MO,PM2.5 Filterable,2C5_Lead-production,,TON,37.35448414 +MO,PM2.5 Filterable,2C6_Zinc-production,,TON,5.139134779 +MO,PM2.5 Filterable,2C7_Other-metal,,TON,30.73633972 +MO,PM2.5 Filterable,2C7a_Copper-production,,TON,4.290304866 +MO,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,10.45168171 +MO,PM2.5 Filterable,2D3d_Coating-application,,TON,109.2127 +MO,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,6.6152 +MO,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.0563 +MO,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,36.82675681 +MO,PM2.5 Filterable,2H2_Biodiesel Production,,TON,1.7852 +MO,PM2.5 Filterable,2H2_Ethanol Production,,TON,9.4549 +MO,PM2.5 Filterable,2H2_Food-and-beverage,,TON,190.7041761 +MO,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,120.3712746 +MO,PM2.5 Filterable,2I_Wood-processing,,TON,4.7163 +MO,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,139.5217107 +MO,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,9503.806574 +MO,PM2.5 Filterable,3Dc_Other-farm,,TON,24455.37646 +MO,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,28.7219307 +MO,PM2.5 Filterable,5C_Incineration,biomass,TON,4.307953613 +MO,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.3951391 +MO,PM2.5 Filterable,5C_Open-burning-industrial,Other_Fuel,TON,0.08606222 +MO,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3252.307667 +MO,PM2.5 Filterable,5C_Open-burning-residential,,TON,2618.314655 +MO,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,157.2669372 +MO,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.06230252 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.296703024 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4556.3782 +MO,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,140.8524 +MO,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,6.704 +MO,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.9594 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,63.44358793 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,32.20555242 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.948724544 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,98.36911175 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,26.97292298 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,11.04761666 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.03168697 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.733951726 +MO,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,169.0425308 +MO,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.6744 +MO,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.2753 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,387.4126928 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.70445233 +MO,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000499263 +MO,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,120.6492013 +MO,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,86811.60129 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,134.4402189 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1045.002454 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,23.11916893 +MO,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,73.60736332 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,105.5553203 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.27307607 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.111604799 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1471.990799 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,16.48158878 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,499.9120162 +MO,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.3975475 +MO,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.80400296 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,630.3168676 +MO,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.076990624 +MO,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,70.57217591 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1108.456531 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.044973145 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,41.94191201 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.085325963 +MO,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.96434508 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,71.10363043 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,40.24125033 +MO,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.928216389 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,29.00495026 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,460.0018656 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,14233.26122 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.894599989 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.47465 +MO,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,21.77107495 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1483.624774 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.767939758 +MO,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.835228112 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.72498092 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,81.30950765 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,16.0825832 +MO,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,90.85940826 +MO,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.0924 +MO,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.028115206 +MO,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,358.6557879 +MO,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,533.7468 +MO,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3534.732173 +MO,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2141.804616 +MO,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,272.081736 +MO,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,15.9698 +MO,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,71.4947 +MO,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,86.4987 +MO,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,5.2703 +MO,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,40.59521927 +MO,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,16.0922 +MO,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,10.6153 +MO,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,109.2127 +MO,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,6.6152 +MO,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0563 +MO,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,46.6758 +MO,PM2.5 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,1.7852 +MO,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,23.9804 +MO,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2683.710052 +MO,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,122.0284 +MO,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,4.7163 +MO,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,139.5217107 +MO,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9503.806574 +MO,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,24459.47348 +MO,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,609.8318326 +MO,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,47.8366 +MO,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,12.59859963 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.612 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,Other_Fuel,TON,0.132 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3252.307667 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2618.314655 +MO,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,157.2669372 +MO,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0686 +MO,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.6383 +MO,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,106381.3091 +MO,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,23.0832 +MO,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.494 +MO,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.0757 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.198052393 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.316626288 +MO,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.090620407 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,19.58068459 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.40648965 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,182.1825857 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.341478514 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,10.46917085 +MO,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,147.960609 +MO,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.0394 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,5.5761 +MO,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0217 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.898370114 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.283766661 +MO,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.25132E-05 +MO,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,347.0234434 +MO,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,8.3117327 +MO,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,360.6607468 +MO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.436696355 +MO,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.35796113 +MO,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.402309909 +MO,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.152990038 +MO,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.007097179 +MO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,114.8468422 +MO,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.194554128 +MO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.22962554 +MO,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.943295819 +MO,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.426639455 +MO,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,14.96528293 +MO,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.010609992 +MO,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.09395262 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,78.75481116 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.369506597 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2319.393766 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.51600133 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.03863452 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.626792826 +MO,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.041126607 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.541281452 +MO,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,8.544526398 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,406.1033659 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.982000032 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.037655748 +MO,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,30.38540069 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,25.19273502 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.764403082 +MO,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.037859052 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.022626011 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.465179988 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.699617124 +MO,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.889583992 +MO,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0374 +MO,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.000495426 +MO,Sulfur Dioxide,2A1_Cement-production,,TON,538.7858 +MO,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1723.2506 +MO,Sulfur Dioxide,2A6_Other-minerals,,TON,2675.289 +MO,Sulfur Dioxide,2B_Chemicals-other,,TON,92.8941 +MO,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.1944 +MO,Sulfur Dioxide,2C3_Aluminum-production,,TON,1.3887 +MO,Sulfur Dioxide,2C5_Lead-production,,TON,2756.7341 +MO,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0071 +MO,Sulfur Dioxide,2C7a_Copper-production,,TON,8.5426 +MO,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,3.2375 +MO,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0.5528 +MO,Sulfur Dioxide,2H2_Ethanol Production,,TON,2.7968 +MO,Sulfur Dioxide,2H2_Food-and-beverage,,TON,66.7552 +MO,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,51.3379 +MO,Sulfur Dioxide,3Dc_Other-farm,,TON,1.6736 +MO,Sulfur Dioxide,3F_Ag-res-on-field,,TON,55.023994 +MO,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,200.7537 +MO,Sulfur Dioxide,5C_Incineration,biomass,TON,21.10442645 +MO,Sulfur Dioxide,5C_Open-burning-industrial,Other_Fuel,TON,0.0048 +MO,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,290.2597039 +MO,Sulfur Dioxide,5C_Open-burning-residential,,TON,89.12118394 +MO,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.079279194 +MO,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,2.4432 +MO,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.8339 +MO,Volatile Organic Compounds,11C_Other-natural,,TON,707827.5041 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.8777 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,1204.2493 +MO,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,140.5002 +MO,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,170.9094 +MO,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.6821 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,79.41984708 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,213.5752902 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,23.45306778 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,17.73865846 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,27.78483317 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.993761283 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.02238164 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,4.245238127 +MO,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,357.8647653 +MO,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1.508 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0098 +MO,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1993 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,460.4464734 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,257.2291625 +MO,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.06134704 +MO,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,920.0540623 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,962.2876438 +MO,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,35708.85402 +MO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,131.0192251 +MO,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2338.337381 +MO,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,203.8566599 +MO,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,224.4317449 +MO,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.914345106 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2284.282684 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,319.7453207 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,791.0498123 +MO,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,234.2299601 +MO,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1475.358582 +MO,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1053.926966 +MO,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.680326001 +MO,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,120.9665616 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,43.97804443 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.377447574 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.23175401 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.01383984 +MO,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,165.9895631 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,99.55182999 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1174.044901 +MO,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.92475366 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,42.34060368 +MO,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,7426.282804 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,14226.81714 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.299460008 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.156200002 +MO,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,278.5358511 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1851.463226 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,415.0002428 +MO,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.351848027 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.96238467 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2965.687676 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.01868542 +MO,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,7504.478355 +MO,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +MO,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,480.5608041 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,234.4218261 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1372.135058 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,5602.237502 +MO,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9482.095897 +MO,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4.254938899 +MO,Volatile Organic Compounds,2A1_Cement-production,,TON,462.8257 +MO,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,26.6779 +MO,Volatile Organic Compounds,2A6_Other-minerals,,TON,872.1160629 +MO,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,7.667680805 +MO,Volatile Organic Compounds,2B_Chemicals-other,,TON,1314.5152 +MO,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,32.5287 +MO,Volatile Organic Compounds,2C3_Aluminum-production,,TON,262.0779 +MO,Volatile Organic Compounds,2C5_Lead-production,,TON,109.2721 +MO,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,116.1524 +MO,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.5601 +MO,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,26767.39005 +MO,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,58.0581 +MO,Volatile Organic Compounds,2D3d_Coating-application,,TON,19975.46371 +MO,Volatile Organic Compounds,2D3e_Degreasing,,TON,4403.623635 +MO,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,21.39959975 +MO,Volatile Organic Compounds,2D3h_Printing,,TON,14489.81562 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3349.192294 +MO,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4023.185795 +MO,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,174.6013 +MO,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,10.7726 +MO,Volatile Organic Compounds,2H2_Ethanol Production,,TON,136.3823 +MO,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1469.499789 +MO,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,986.9032 +MO,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,424.474154 +MO,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1432.875249 +MO,Volatile Organic Compounds,3B2_Manure-sheep,,TON,26.7389286 +MO,Volatile Organic Compounds,3B3_Manure-swine,,TON,4048.865868 +MO,Volatile Organic Compounds,3B4_Manure-other,,TON,101.156933 +MO,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1326.98773 +MO,Volatile Organic Compounds,3B4d_Manure-goats,,TON,62.58575247 +MO,Volatile Organic Compounds,3Dc_Other-farm,,TON,255.6412 +MO,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,5766.911162 +MO,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,656.03732 +MO,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,118.2241 +MO,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,960.65647 +MO,Volatile Organic Compounds,5C_Incineration,biomass,TON,29.05116627 +MO,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.684 +MO,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1975.864352 +MO,Volatile Organic Compounds,5C_Open-burning-residential,,TON,557.4452146 +MO,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,150.2892281 +MO,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,156.397475 +MO,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,23.5248 +MO,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0036 +MS,Ammonia,1A1a_Public-Electricity,natural_gas,TON,687.2277615 +MS,Ammonia,1A1b_Pet-refining,natural_gas,TON,39.77 +MS,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,71.25 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.118510205 +MS,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.271689059 +MS,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,172.5731334 +MS,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.741995623 +MS,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.016091871 +MS,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,180.4802171 +MS,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.521584211 +MS,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.137408931 +MS,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,17.17060756 +MS,Ammonia,1A3bii_Road-LDV,light_oil,TON,1163.716621 +MS,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.60071853 +MS,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,50.6751013 +MS,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.380830887 +MS,Ammonia,1A3biii_Road-bus,light_oil,TON,1.287308573 +MS,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.002519737 +MS,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,65.37517177 +MS,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,10.47504811 +MS,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,49.35960801 +MS,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.140677903 +MS,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.963831591 +MS,Ammonia,1A3c_Rail,diesel_oil,TON,3.599542388 +MS,Ammonia,1A3c_Rail,light_oil,TON,0.002738254 +MS,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.261084053 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.747184374 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.005831683 +MS,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.662811932 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.372348204 +MS,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.713317293 +MS,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.10557493 +MS,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.936407139 +MS,Ammonia,1A4bi_Residential-stationary,biomass,TON,188.0359354 +MS,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.06075 +MS,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,185.788925 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.119866321 +MS,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.175250233 +MS,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010354715 +MS,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.943811365 +MS,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.188459781 +MS,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.158912044 +MS,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.000567173 +MS,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.05 +MS,Ammonia,2B_Chemicals-other,,TON,730.0521 +MS,Ammonia,2D3d_Coating-application,,TON,0 +MS,Ammonia,2H1_Pulp-and-paper,,TON,266.5663 +MS,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,258.373725 +MS,Ammonia,3B1a_Cattle-dairy,,TON,797.9197251 +MS,Ammonia,3B1b_Cattle-non-dairy,,TON,4123.768194 +MS,Ammonia,3B2_Manure-sheep,,TON,41.1592725 +MS,Ammonia,3B3_Manure-swine,,TON,10991.2073 +MS,Ammonia,3B4_Manure-other,,TON,829.5399011 +MS,Ammonia,3B4_Manure-poultry,,TON,25785.07803 +MS,Ammonia,3B4d_Manure-goats,,TON,129.8613631 +MS,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,9112.1 +MS,Ammonia,3F_Ag-res-on-field,,TON,1099.054135 +MS,Ammonia,5B_Compost-biogas,Other_Fuel,TON,63.772512 +MS,Ammonia,5D1_Wastewater-domestic,,TON,8.039753 +MS,Ammonia,5D2_Wastewater-industrial,biomass,TON,635.57 +MS,Carbon Dioxide,1A1b_Pet-refining,Other_Fuel,TON,2763.5409 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,137844.9074 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,155902.6717 +MS,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8898.288797 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,433469.9803 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,11355.54678 +MS,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.097586398 +MS,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,64672.87164 +MS,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,527986.2243 +MS,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,15415863.97 +MS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,79355.44497 +MS,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,814367.2464 +MS,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,320226.2153 +MS,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,39123.2973 +MS,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,97.430875 +MS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3599194.803 +MS,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,238771.6869 +MS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3234739.604 +MS,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,55121.00801 +MS,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,46703.37068 +MS,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3440.406804 +MS,Carbon Dioxide,1A3c_Rail,light_oil,TON,212.922884 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,45810.31407 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,58127.21906 +MS,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2676.479552 +MS,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,12992.38493 +MS,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,145360.3952 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,630606.3709 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12996.07801 +MS,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1297.663701 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1269.91744 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,66328.69855 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23207.28111 +MS,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,82389.58755 +MS,Carbon Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,1139.7367 +MS,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,34.32 +MS,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,42505604.22 +MS,Carbon Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,1934.8433 +MS,Carbon Monoxide,11C_Other-natural,,TON,115403.5692 +MS,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,88.62 +MS,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,9.21 +MS,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,19.55 +MS,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3024.74 +MS,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,992.42 +MS,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1837.42 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,201.0798521 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3578.932073 +MS,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,133.308838 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,23723.50403 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,156.24966 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.343628329 +MS,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,7974.451653 +MS,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,15.35 +MS,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,0 +MS,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,64.12 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1478.097632 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2382.767658 +MS,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.440793662 +MS,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8249.821916 +MS,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4438.681791 +MS,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,250008.1991 +MS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,555.6767984 +MS,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12055.75579 +MS,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,709.9535528 +MS,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2045.819856 +MS,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.65068547 +MS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3543.894262 +MS,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4294.142754 +MS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2927.847049 +MS,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1540.37593 +MS,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1748.473723 +MS,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1162.255419 +MS,Carbon Monoxide,1A3c_Rail,light_oil,TON,48.89636269 +MS,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,615.6476323 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,89.8988687 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.04274595 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.036544255 +MS,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,303.9509877 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,170.9081783 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12283.28405 +MS,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,56.2558664 +MS,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,40.50021871 +MS,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,32526.40412 +MS,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,24253.50651 +MS,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.303750001 +MS,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,477.6874037 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1585.127532 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2928.355387 +MS,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,15.18759473 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.3865287 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,12108.26906 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,46.81479658 +MS,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9772.966545 +MS,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,438.6551989 +MS,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,11.56 +MS,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2091.671602 +MS,Carbon Monoxide,2A1_Cement-production,,TON,0 +MS,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,436.73 +MS,Carbon Monoxide,2B_Chemicals-other,,TON,5088.14 +MS,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2112.6 +MS,Carbon Monoxide,2C3_Aluminum-production,,TON,6.53 +MS,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,10.31 +MS,Carbon Monoxide,2C7a_Copper-production,,TON,113.59 +MS,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,6.94 +MS,Carbon Monoxide,2D3d_Coating-application,,TON,46.51 +MS,Carbon Monoxide,2D3h_Printing,,TON,0.6 +MS,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3745.58 +MS,Carbon Monoxide,2H2_Food-and-beverage,,TON,638.468514 +MS,Carbon Monoxide,2H3_Other-industrial-processes,,TON,114.91 +MS,Carbon Monoxide,3F_Ag-res-on-field,,TON,3938.286856 +MS,Carbon Monoxide,5A_Solid-waste-disposal,,TON,467.8767237 +MS,Carbon Monoxide,5C_Incineration,biomass,TON,0.948524191 +MS,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,27109.56381 +MS,Carbon Monoxide,5C_Open-burning-residential,,TON,6430.877762 +MS,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,602.9575162 +MS,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,6.2 +MS,Methane,1A1b_Pet-refining,Other_Fuel,TON,12.8079 +MS,Methane,1A1g_Other-energy-transf,natural_gas,TON,0.8065 +MS,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.952174611 +MS,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.23069355 +MS,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,57.35330453 +MS,Methane,1A2_Industrial_fuel_combustion,biomass,TON,14.3275 +MS,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,22.2368 +MS,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,12.04870866 +MS,Methane,1A2g_Construction_and_Mining,light_oil,TON,8.71513499 +MS,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.313698573 +MS,Methane,1A3bii_Road-LDV,diesel_oil,TON,24.25818237 +MS,Methane,1A3bii_Road-LDV,light_oil,TON,579.8938552 +MS,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.037663131 +MS,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,33.82556617 +MS,Methane,1A3biii_Road-bus,diesel_oil,TON,11.18855473 +MS,Methane,1A3biii_Road-bus,light_oil,TON,5.748408375 +MS,Methane,1A3biii_Road-bus,natural_gas,TON,0.58955081 +MS,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,214.9773718 +MS,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,6.809893071 +MS,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,71.25528168 +MS,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.290691812 +MS,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.781230256 +MS,Methane,1A3c_Rail,diesel_oil,TON,0.155259981 +MS,Methane,1A3c_Rail,light_oil,TON,0.138023384 +MS,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0068 +MS,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.527257041 +MS,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,38.87944023 +MS,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,34.92140596 +MS,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.434757542 +MS,Methane,1A4bi_Residential-mobile,light_oil,TON,114.386263 +MS,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.76050961 +MS,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.60167692 +MS,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.131607899 +MS,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.052484477 +MS,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,94.60989276 +MS,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.595658677 +MS,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,84.98853031 +MS,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,23.57 +MS,Methane,2C7_Other-metal,Other_Fuel,TON,0.0006 +MS,Methane,2D3d_Coating-application,,TON,0.2518 +MS,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,78987.94038 +MS,Methane,5D2_Wastewater-industrial,Other_Fuel,TON,2.7417 +MS,Nitrogen Oxides,11C_Other-natural,,TON,24955.32167 +MS,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,1791 +MS,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,21.94 +MS,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,4196.6 +MS,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,7536.11 +MS,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2165.1 +MS,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,310.84 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,563.5902675 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,352.539775 +MS,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22.9586746 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,9056.305568 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,654.7722562 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.546975116 +MS,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,18944.12548 +MS,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,14.93 +MS,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,176.74 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2662.913601 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,39.23887297 +MS,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.081574902 +MS,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3987.445347 +MS,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1599.963543 +MS,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,28133.50191 +MS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,210.6737079 +MS,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1317.330095 +MS,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1766.763845 +MS,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,203.0521641 +MS,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.386359921 +MS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10007.35064 +MS,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,514.4496771 +MS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9055.668838 +MS,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,142.7770223 +MS,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,85.56156366 +MS,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6152.652402 +MS,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.444302104 +MS,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4442.537432 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,32.99065976 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.947177132 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.146300037 +MS,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,385.2898114 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,328.5832252 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,144.7819076 +MS,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.47964738 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,102.8867393 +MS,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,285.5677594 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,377.3853009 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.093499949 +MS,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1250.510252 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3492.093149 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,40.69316831 +MS,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.821823389 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.1311013 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,127.5256278 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,242.1975128 +MS,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,633.7588401 +MS,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,281.5200933 +MS,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.57 +MS,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1514.842742 +MS,Nitrogen Oxides,2A1_Cement-production,,TON,0 +MS,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,195.88 +MS,Nitrogen Oxides,2B_Chemicals-other,,TON,720.38 +MS,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1550.26 +MS,Nitrogen Oxides,2C3_Aluminum-production,,TON,7.77 +MS,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,13.78 +MS,Nitrogen Oxides,2C7a_Copper-production,,TON,3.22 +MS,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,8.26 +MS,Nitrogen Oxides,2D3d_Coating-application,,TON,48.9 +MS,Nitrogen Oxides,2D3h_Printing,,TON,0.72 +MS,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3199.31 +MS,Nitrogen Oxides,2H2_Food-and-beverage,,TON,36.62 +MS,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,137.37 +MS,Nitrogen Oxides,3F_Ag-res-on-field,,TON,176.7193602 +MS,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,82.41 +MS,Nitrogen Oxides,5C_Incineration,biomass,TON,7.991791694 +MS,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,657.9990434 +MS,Nitrogen Oxides,5C_Open-burning-residential,,TON,453.9443382 +MS,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,33.37800586 +MS,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0 +MS,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,7.42 +MS,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.467701006 +MS,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,434.6498067 +MS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.249540556 +MS,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,26.0483712 +MS,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.738825914 +MS,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.57199319 +MS,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.007106863 +MS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.768074971 +MS,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.738931938 +MS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.026155469 +MS,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.614825563 +MS,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.677520276 +MS,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,5875.310374 +MS,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,153.91 +MS,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.75 +MS,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,43.78 +MS,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,582.99 +MS,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,113.9017 +MS,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,6.0104 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,13615.39245 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.80947759 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1.492682708 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.020098715 +MS,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,301.5831395 +MS,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,3.15 +MS,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,30.26 +MS,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,236725.5116 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,74.78686649 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.170155691 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.007879982 +MS,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.538781352 +MS,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,3090.883389 +MS,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.065549999 +MS,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.389799997 +MS,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,3.436663982 +MS,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.63 +MS,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.843750302 +MS,PM10 Filterable,2A1_Cement-production,,TON,0.06 +MS,PM10 Filterable,2A2_Lime-production,,TON,0.35 +MS,PM10 Filterable,2A5b_Construction-and-demolition,,TON,18744.53772 +MS,PM10 Filterable,2A6_Other-minerals,,TON,1929.78344 +MS,PM10 Filterable,2B_Chemicals-other,,TON,357.0539 +MS,PM10 Filterable,2C_Iron-steel-alloy,,TON,242.07 +MS,PM10 Filterable,2C3_Aluminum-production,,TON,0.59 +MS,PM10 Filterable,2C7_Other-metal,,TON,441.01 +MS,PM10 Filterable,2C7a_Copper-production,,TON,15.52 +MS,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,50.29 +MS,PM10 Filterable,2D3d_Coating-application,,TON,158.68 +MS,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,1.67 +MS,PM10 Filterable,2D3h_Printing,,TON,0.02 +MS,PM10 Filterable,2H1_Pulp-and-paper,,TON,2074.33 +MS,PM10 Filterable,2H2_Food-and-beverage,,TON,227.1272906 +MS,PM10 Filterable,2H3_Other-industrial-processes,,TON,314.93 +MS,PM10 Filterable,2I_Wood-processing,,TON,13.47 +MS,PM10 Filterable,3B1a_Cattle-dairy,,TON,75.85962338 +MS,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,10017.67219 +MS,PM10 Filterable,3Dc_Other-farm,,TON,59174.68329 +MS,PM10 Filterable,5A_Solid-waste-disposal,,TON,160.36 +MS,PM10 Filterable,5C_Incineration,biomass,TON,2.926516472 +MS,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3355.795473 +MS,PM10 Filterable,5C_Open-burning-residential,,TON,2427.149884 +MS,PM10 Filterable,5C_Open-burning-yard-waste,,TON,204.5748712 +MS,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.23 +MS,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,26.39 +MS,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.14 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,272.91 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.85308309 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,50.858532 +MS,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1208.7128 +MS,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,359.79531 +MS,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,15.96632322 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,32.11751129 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.08903579 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.072610297 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,14141.16795 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,45.55165257 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1.492531264 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.046264225 +MS,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,650.0994829 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,4.221212 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,51.42043769 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,237.8213355 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.32465002 +MS,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000525434 +MS,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,314.8612351 +MS,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,236725.5116 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,92.61172906 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1305.693158 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.1467375 +MS,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,69.9801394 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,131.2469194 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.121779892 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.014482061 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,653.5619732 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,23.8255035 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,539.9183286 +MS,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.817357173 +MS,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.700563287 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,183.0021384 +MS,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.027123605 +MS,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,121.7733289 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,77.43189215 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.17433797 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017095874 +MS,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.824222049 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28.34193279 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,15.24436419 +MS,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.339545911 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.076055447 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,121.5484949 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3233.261014 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.144600003 +MS,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.206665032 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,306.503648 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.59841415 +MS,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.158653133 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.38610188 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,74.22811501 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.41411987 +MS,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,39.18893115 +MS,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,6.799524937 +MS,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.63 +MS,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,22.01993931 +MS,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,0.06 +MS,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.4547621 +MS,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,18744.53772 +MS,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,1975.318046 +MS,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,425.9547888 +MS,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,471.7464538 +MS,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1.03 +MS,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,442.8159605 +MS,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,15.52 +MS,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,50.8316418 +MS,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,180.12 +MS,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,1.67 +MS,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.02 +MS,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,3454.243647 +MS,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1386.015291 +MS,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,590.6871388 +MS,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,13.47 +MS,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,75.85962338 +MS,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,10017.67219 +MS,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,59174.76896 +MS,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,601.4125728 +MS,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,162.178289 +MS,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.125683472 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3355.795473 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2427.149884 +MS,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,204.5748712 +MS,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.23 +MS,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,26.39 +MS,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.56 +MS,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,16.21 +MS,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.7 +MS,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,22.17 +MS,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,550.65 +MS,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,99.5917 +MS,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,6.0104 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,11622.3003 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,37.99894995 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.831751142 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.005026231 +MS,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,256.0235041 +MS,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.79 +MS,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,26.42 +MS,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,25942.60379 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,64.32635624 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.170181228 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006056821 +MS,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.230618745 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,3059.651779 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.0504 +MS,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.314390032 +MS,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,3.417060572 +MS,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.17 +MS,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8.843750302 +MS,PM2.5 Filterable,2A1_Cement-production,,TON,0.01 +MS,PM2.5 Filterable,2A2_Lime-production,,TON,0.12 +MS,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1874.453772 +MS,PM2.5 Filterable,2A6_Other-minerals,,TON,356.207163 +MS,PM2.5 Filterable,2B_Chemicals-other,,TON,293.8539 +MS,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,222.37 +MS,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.59 +MS,PM2.5 Filterable,2C7_Other-metal,,TON,372.28 +MS,PM2.5 Filterable,2C7a_Copper-production,,TON,15.52 +MS,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,50.29 +MS,PM2.5 Filterable,2D3d_Coating-application,,TON,149.3 +MS,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,1.67 +MS,PM2.5 Filterable,2D3h_Printing,,TON,0.02 +MS,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1454.78 +MS,PM2.5 Filterable,2H2_Food-and-beverage,,TON,106.9405876 +MS,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,278.88 +MS,PM2.5 Filterable,2I_Wood-processing,,TON,7.56 +MS,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,15.76736077 +MS,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2082.164171 +MS,PM2.5 Filterable,3Dc_Other-farm,,TON,11378.74101 +MS,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,37.48 +MS,PM2.5 Filterable,5C_Incineration,biomass,TON,2.607187097 +MS,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3059.695735 +MS,PM2.5 Filterable,5C_Open-burning-residential,,TON,2222.758259 +MS,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,157.7379944 +MS,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.18 +MS,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,25.02 +MS,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.14 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,135.21 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.803083089 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,29.248532 +MS,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1176.3728 +MS,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,345.48531 +MS,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,15.96632322 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31.15367845 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16.84560181 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.072610297 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,12147.98573 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,41.74110865 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0.831635618 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.031200181 +MS,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,604.7296547 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.861212 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,47.58043769 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,230.6867005 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,15.94854598 +MS,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000525434 +MS,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,293.1653672 +MS,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25942.60379 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,67.94105096 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,433.2987819 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.02813742 +MS,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,21.64841713 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,93.55987128 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.236041068 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.005105933 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,432.8129704 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,7.353763052 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,374.2388213 +MS,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.980588526 +MS,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.906449793 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,177.5100613 +MS,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.024999504 +MS,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,117.4787489 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,66.97073857 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.174397489 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.015347689 +MS,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.516667197 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27.49167629 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,14.05806879 +MS,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.339545911 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.863773863 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,111.8296521 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3202.029405 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.129450007 +MS,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.13125517 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,297.3085 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,15.27066041 +MS,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.158653133 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.3445194 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,68.29047462 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.251697118 +MS,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,36.05381513 +MS,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,6.779921567 +MS,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.17 +MS,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,22.01993931 +MS,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,0.01 +MS,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.2247621 +MS,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1874.453772 +MS,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,401.7417695 +MS,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,362.7547889 +MS,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,452.0464538 +MS,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,1.03 +MS,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,374.0859601 +MS,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,15.52 +MS,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,50.8316418 +MS,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,170.74 +MS,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,1.67 +MS,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.02 +MS,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2834.693616 +MS,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1265.82858 +MS,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,554.6371388 +MS,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,7.56 +MS,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,15.76736077 +MS,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2082.164171 +MS,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,11378.82668 +MS,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,388.4565508 +MS,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,39.298289 +MS,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.806354097 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3059.695735 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2222.758259 +MS,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,157.7379944 +MS,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.18 +MS,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,25.02 +MS,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.56 +MS,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,2244.9 +MS,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.64 +MS,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,205 +MS,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,135.44 +MS,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,1083.35 +MS,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1269.87 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.058797193 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.406708376 +MS,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.049875596 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,846.5417077 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.78720934 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.148477656 +MS,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,125.9999804 +MS,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.25 +MS,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.04 +MS,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,22.7 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.595462634 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.172247019 +MS,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.28539E-05 +MS,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,395.3037985 +MS,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.56826987 +MS,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,323.9200154 +MS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.679708797 +MS,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.12842962 +MS,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.767467252 +MS,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.819043557 +MS,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000515842 +MS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30.50424919 +MS,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4.99112185 +MS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,27.54018286 +MS,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.152213634 +MS,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.964906488 +MS,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.055256457 +MS,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003436724 +MS,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,39.86611612 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.747957698 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.210676542 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.269407828 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.393049235 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.90662484 +MS,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.014995322 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.114455112 +MS,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.382845191 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,72.92029636 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.01026975 +MS,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,7.162585099 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.257523724 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.213406891 +MS,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007274455 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011133476 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.087193315 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.213338598 +MS,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.352492729 +MS,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,344.5840797 +MS,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.01 +MS,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.497745592 +MS,Sulfur Dioxide,2A1_Cement-production,,TON,0 +MS,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,260.53 +MS,Sulfur Dioxide,2B_Chemicals-other,,TON,49.83 +MS,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1140.03 +MS,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.04 +MS,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.21 +MS,Sulfur Dioxide,2C7a_Copper-production,,TON,0 +MS,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.05 +MS,Sulfur Dioxide,2D3d_Coating-application,,TON,0.38 +MS,Sulfur Dioxide,2D3h_Printing,,TON,0 +MS,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,961.96 +MS,Sulfur Dioxide,2H2_Food-and-beverage,,TON,36.22 +MS,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,29.55 +MS,Sulfur Dioxide,3F_Ag-res-on-field,,TON,83.436793 +MS,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +MS,Sulfur Dioxide,5C_Incineration,biomass,TON,1.304839097 +MS,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,273.0696112 +MS,Sulfur Dioxide,5C_Open-burning-residential,,TON,75.65738561 +MS,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.091497594 +MS,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0 +MS,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.05 +MS,Volatile Organic Compounds,11C_Other-natural,,TON,1163455.035 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,38.02 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.59 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,43.46 +MS,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,371.83 +MS,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.743738924 +MS,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,3440.536261 +MS,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,27.7 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,36.43627505 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,110.2812645 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12.39763412 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1994.146372 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.81891041 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.044056889 +MS,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1842.730591 +MS,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,2.28 +MS,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,13.78 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,297.4685458 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,160.9295579 +MS,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.067809865 +MS,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1997.572729 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,442.009196 +MS,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,17571.22265 +MS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,53.78816525 +MS,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,799.9015164 +MS,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,147.6452908 +MS,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,157.3518102 +MS,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.061824738 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,805.0935682 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,182.1651611 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,528.1441825 +MS,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,76.61298689 +MS,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,406.9493944 +MS,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,295.8111187 +MS,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.281217003 +MS,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,200.0140018 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.551636256 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.261147231 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.002489401 +MS,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.94798717 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,38.73371986 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,439.3181574 +MS,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.548699642 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,9.82444238 +MS,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1964.735754 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3579.852951 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.0426 +MS,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,65.65816376 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,290.7952885 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,200.0350931 +MS,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.325423638 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.4436464 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2527.003965 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.33422118 +MS,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2983.762106 +MS,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,7674.544178 +MS,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,421.3703722 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,739.5372742 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,392.531838 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,21857.50103 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4444.292306 +MS,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,94.13 +MS,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2310.164928 +MS,Volatile Organic Compounds,2A1_Cement-production,,TON,0 +MS,Volatile Organic Compounds,2A6_Other-minerals,,TON,304.9678346 +MS,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,6.346103428 +MS,Volatile Organic Compounds,2B_Chemicals-other,,TON,1562.3376 +MS,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,255.49 +MS,Volatile Organic Compounds,2C3_Aluminum-production,,TON,51.57 +MS,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,170.28 +MS,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.71 +MS,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12986.79705 +MS,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,80.29 +MS,Volatile Organic Compounds,2D3d_Coating-application,,TON,12930.61878 +MS,Volatile Organic Compounds,2D3e_Degreasing,,TON,2107.341699 +MS,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,12.6684003 +MS,Volatile Organic Compounds,2D3h_Printing,,TON,2956.354067 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,114.4249734 +MS,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4779.000981 +MS,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,10061.67 +MS,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,607.9060767 +MS,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1198.16 +MS,Volatile Organic Compounds,2I_Wood-processing,,TON,2.46 +MS,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,63.83357852 +MS,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,329.9014716 +MS,Volatile Organic Compounds,3B2_Manure-sheep,,TON,3.292741756 +MS,Volatile Organic Compounds,3B3_Manure-swine,,TON,879.2964917 +MS,Volatile Organic Compounds,3B4_Manure-other,,TON,66.36318988 +MS,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2062.806245 +MS,Volatile Organic Compounds,3B4d_Manure-goats,,TON,10.38891282 +MS,Volatile Organic Compounds,3Dc_Other-farm,Other_Fuel,TON,4.75 +MS,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3251.318831 +MS,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,565.1268533 +MS,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,132.46 +MS,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,451.23891 +MS,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +MS,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1858.847355 +MS,Volatile Organic Compounds,5C_Open-burning-residential,,TON,473.2303587 +MS,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,150.7393866 +MS,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,40.436625 +MS,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,81.12 +MS,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.02 +MS,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.4 +MT,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.0608 +MT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.0174 +MT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.2374 +MT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0.10301325 +MT,Ammonia,1A1b_Pet-refining,natural_gas,TON,43.5836 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.271111651 +MT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.03988177 +MT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +MT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,4.588234616 +MT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.773952587 +MT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,63.55789767 +MT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,45.63438311 +MT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.195416799 +MT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.026985069 +MT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,14.19296659 +MT,Ammonia,1A3bii_Road-LDV,light_oil,TON,392.92339 +MT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.29874031 +MT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.8896872 +MT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.564436325 +MT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.691654886 +MT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000697073 +MT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,20.27740523 +MT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.724640898 +MT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15.68158548 +MT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.356163798 +MT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.798249338 +MT,Ammonia,1A3c_Rail,diesel_oil,TON,11.7429255 +MT,Ammonia,1A3c_Rail,light_oil,TON,0.009213012 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.420288338 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.087135838 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.010147807 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +MT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.074304608 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.265615208 +MT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.526014188 +MT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.059264853 +MT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.988237303 +MT,Ammonia,1A4bi_Residential-stationary,biomass,TON,83.69181033 +MT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.406999944 +MT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +MT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.020249999 +MT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,216.3787693 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.534757787 +MT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.177932232 +MT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003598141 +MT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.925954948 +MT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.091082726 +MT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.606588451 +MT,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.007775305 +MT,Ammonia,2A1_Cement-production,,TON,17.7137 +MT,Ammonia,2A6_Other-minerals,,TON,0.414 +MT,Ammonia,2B_Chemicals-other,,TON,7.1845 +MT,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.1557 +MT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,56.4545 +MT,Ammonia,3B1a_Cattle-dairy,,TON,587.6620722 +MT,Ammonia,3B1b_Cattle-non-dairy,,TON,7461.79355 +MT,Ammonia,3B2_Manure-sheep,,TON,854.1601787 +MT,Ammonia,3B3_Manure-swine,,TON,1138.073361 +MT,Ammonia,3B4_Manure-other,,TON,1283.732618 +MT,Ammonia,3B4_Manure-poultry,,TON,199.9630334 +MT,Ammonia,3B4d_Manure-goats,,TON,59.2267226 +MT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,47000.2 +MT,Ammonia,3F_Ag-res-on-field,,TON,1282.84 +MT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,22.42173 +MT,Ammonia,5C_Incineration,,TON,0.0108 +MT,Ammonia,5D1_Wastewater-domestic,,TON,2.572687 +MT,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,1474.392 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,33410.22897 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22459.33311 +MT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1278.852162 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,147237.1936 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,2196.757503 +MT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.440181543 +MT,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,127626.8045 +MT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,449194.9249 +MT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,4646263.329 +MT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,70517.8043 +MT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,447213.0915 +MT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,90745.40699 +MT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,19293.40991 +MT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,25.125251 +MT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1230253.567 +MT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,16512.97432 +MT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,923678.5389 +MT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,33719.47907 +MT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,43039.11275 +MT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,11586.15039 +MT,Carbon Dioxide,1A3c_Rail,light_oil,TON,717.7252737 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,32688.77232 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,42825.03543 +MT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1871.607299 +MT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,7296.274021 +MT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,73807.48034 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1050486.332 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,13408.43641 +MT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1856.316233 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,441.408445 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,64908.77953 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11216.31914 +MT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,43942.30905 +MT,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,21773911.44 +MT,Carbon Monoxide,11C_Other-natural,,TON,125349.3738 +MT,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,65.1291 +MT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.0002 +MT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,2.7071 +MT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,2141.2566 +MT,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,52.1945 +MT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,47.7949 +MT,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,0.075940755 +MT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,872.8990592 +MT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,12.5129 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,52.00967221 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,631.892314 +MT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,18.5538506 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,145.4497476 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,2251.794848 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.368468021 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,177.2516807 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,856.3228293 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.007910047 +MT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2297.828279 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,399.8504316 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,440.5702736 +MT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.069686093 +MT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3958.075367 +MT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5409.950712 +MT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,120834.5257 +MT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,574.8348355 +MT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9052.823957 +MT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,230.8728735 +MT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1232.705556 +MT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.08229791 +MT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1064.223567 +MT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,309.2281315 +MT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1202.399678 +MT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,923.4656662 +MT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1942.155534 +MT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3786.951334 +MT,Carbon Monoxide,1A3c_Rail,light_oil,TON,158.1788913 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,51.72918795 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.722240242 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.970821647 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.001911896 +MT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,369.1158532 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,108.1221262 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8693.12848 +MT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.98088777 +MT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,19.60648021 +MT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,16564.70664 +MT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,12319.24071 +MT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,7.035000228 +MT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,14.559 +MT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250004 +MT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,558.7996165 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4021.159438 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2839.075161 +MT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,27.21100389 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.10433873 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,8104.867933 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.16490066 +MT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4731.534295 +MT,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2756.4042 +MT,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,5.90493164 +MT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,5.86036836 +MT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,925.603325 +MT,Carbon Monoxide,2A1_Cement-production,,TON,6.8886 +MT,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,125.0728 +MT,Carbon Monoxide,2A6_Other-minerals,,TON,2430.5887 +MT,Carbon Monoxide,2B_Chemicals-other,,TON,344.3451 +MT,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.056 +MT,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,49.6105 +MT,Carbon Monoxide,2H2_Food-and-beverage,,TON,195.9645468 +MT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.519 +MT,Carbon Monoxide,3F_Ag-res-on-field,,TON,8517.3 +MT,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,82.7186288 +MT,Carbon Monoxide,5C_Incineration,,TON,1.44546921 +MT,Carbon Monoxide,5C_Incineration,biomass,TON,0.000278189 +MT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3472.305853 +MT,Carbon Monoxide,5C_Open-burning-residential,,TON,1891.612665 +MT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,141.9143762 +MT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,8.3551 +MT,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,5.415 +MT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.834825231 +MT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.553836708 +MT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.871030047 +MT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,3.933016412 +MT,Methane,1A2g_Construction_and_Mining,light_oil,TON,1.603098121 +MT,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.03319336 +MT,Methane,1A3bii_Road-LDV,diesel_oil,TON,29.52510653 +MT,Methane,1A3bii_Road-LDV,light_oil,TON,341.9684185 +MT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.22243444 +MT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.55801429 +MT,Methane,1A3biii_Road-bus,diesel_oil,TON,3.597428476 +MT,Methane,1A3biii_Road-bus,light_oil,TON,4.146790835 +MT,Methane,1A3biii_Road-bus,natural_gas,TON,0.03441727 +MT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,94.3042856 +MT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.567703424 +MT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.61511437 +MT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.757595645 +MT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.613100385 +MT,Methane,1A3c_Rail,diesel_oil,TON,0.523240106 +MT,Methane,1A3c_Rail,light_oil,TON,0.487704621 +MT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.069510121 +MT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,29.52562771 +MT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,20.99759363 +MT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.26458083 +MT,Methane,1A4bi_Residential-mobile,light_oil,TON,65.29157428 +MT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,35.9750625 +MT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,12.75833671 +MT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.57719984 +MT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018553043 +MT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,66.26578669 +MT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.315925224 +MT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,42.04678709 +MT,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,11061.22191 +MT,Nitrogen Oxides,11C_Other-natural,,TON,59604.29004 +MT,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,560.7616 +MT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.0018 +MT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,11.0238 +MT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,13024.9306 +MT,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,395.2799 +MT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,39.5907 +MT,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,0.730899694 +MT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1068.937 +MT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,7.0335 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,157.8907526 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,57.68865111 +MT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.213014487 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,169.2173984 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1612.963896 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,823.8711554 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1627.654366 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.013054775 +MT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3327.574051 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,689.7919704 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,5.788266991 +MT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.009345843 +MT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,491.708404 +MT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1836.058998 +MT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,15295.4199 +MT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,250.984576 +MT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1046.523253 +MT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,706.6609822 +MT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,148.675844 +MT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.035180602 +MT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3906.335306 +MT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,35.22270248 +MT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4302.866517 +MT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,81.59558264 +MT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,97.17674243 +MT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,19360.53791 +MT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.831996121 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,19.92572477 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.615837291 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.253428066 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.917642015 +MT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,458.7295875 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,217.8368934 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,119.6867309 +MT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8.291302465 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,50.94988023 +MT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,168.4516685 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,201.0620994 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,25.32599992 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0.482 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.3645 +MT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1465.073509 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8208.852947 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,67.63724822 +MT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.419768104 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.41615653 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,143.9129386 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,112.2758389 +MT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,359.1655492 +MT,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,1662.349059 +MT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,2.533151746 +MT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,2.525048254 +MT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,823.4133312 +MT,Nitrogen Oxides,2A1_Cement-production,,TON,2145.5279 +MT,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,399.7579 +MT,Nitrogen Oxides,2A6_Other-minerals,,TON,732.6188 +MT,Nitrogen Oxides,2B_Chemicals-other,,TON,76.738 +MT,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.469 +MT,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,0.7616 +MT,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,25.935 +MT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,3.307 +MT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,275.972 +MT,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,13.1003 +MT,Nitrogen Oxides,5C_Incineration,,TON,2.476134551 +MT,Nitrogen Oxides,5C_Incineration,biomass,TON,0.000364808 +MT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,84.27927236 +MT,Nitrogen Oxides,5C_Open-burning-residential,,TON,133.5256056 +MT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,7.588606594 +MT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.4397 +MT,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.2886 +MT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.37035723 +MT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,291.8458519 +MT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.245400174 +MT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25.45025218 +MT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.207278814 +MT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.838153632 +MT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.001641462 +MT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.206790262 +MT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.392837333 +MT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.349876828 +MT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.583551661 +MT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.468648456 +MT,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,312.8591522 +MT,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,33.2158 +MT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.0001 +MT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.5159 +MT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,479.5696 +MT,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,13.6612 +MT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,3.7458 +MT,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,0.271421002 +MT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,168.455079 +MT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.4428 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.549991175 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,366.3240995 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,45.78288137 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,1539.485054 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000700712 +MT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,54.71296996 +MT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,202501.349 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,43.7408395 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.589775509 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.713757704 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.295571727 +MT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.407630061 +MT,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1711.155911 +MT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.519559954 +MT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.328 +MT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.021849999 +MT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.795606945 +MT,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,16.00203524 +MT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.73768636 +MT,PM10 Filterable,2A1_Cement-production,,TON,120.3004 +MT,PM10 Filterable,2A2_Lime-production,,TON,42.5 +MT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,8169.85655 +MT,PM10 Filterable,2A6_Other-minerals,,TON,17197.99681 +MT,PM10 Filterable,2B_Chemicals-other,,TON,9.8288 +MT,PM10 Filterable,2C_Iron-steel-alloy,,TON,31.2597 +MT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,121.1398 +MT,PM10 Filterable,2C7a_Copper-production,,TON,0.0035 +MT,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.2153 +MT,PM10 Filterable,2D3d_Coating-application,,TON,0.607 +MT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,442.6134 +MT,PM10 Filterable,2H2_Food-and-beverage,,TON,171.4810403 +MT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,19.6082 +MT,PM10 Filterable,2I_Wood-processing,,TON,7.9643 +MT,PM10 Filterable,3B1a_Cattle-dairy,,TON,116.7127806 +MT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,34201.04946 +MT,PM10 Filterable,3Dc_Other-farm,,TON,111839.4933 +MT,PM10 Filterable,5A_Solid-waste-disposal,,TON,23.9714 +MT,PM10 Filterable,5C_Incineration,,TON,1.925266855 +MT,PM10 Filterable,5C_Incineration,biomass,TON,0.000198195 +MT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,429.8242752 +MT,PM10 Filterable,5C_Open-burning-residential,,TON,704.6967091 +MT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,46.51081368 +MT,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.1905 +MT,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,47.9784 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0002 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.673800598 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1945.3461 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,15.2384 +MT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,8.120458 +MT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.293533553 +MT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,312.5253664 +MT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.0505246 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.806834221 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.779222079 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.153854122 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,10.84293718 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,387.562042 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,52.48953349 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1674.5234 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.001401362 +MT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,130.9998059 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,62.63130935 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.487524467 +MT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000176335 +MT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,71.39086831 +MT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,203729.485 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,96.13978314 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,711.4278594 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.51955103 +MT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,56.87288379 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,43.3864203 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.698137337 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.001885162 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,174.5501284 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.034222046 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,219.8380175 +MT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.672913497 +MT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.240522837 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,576.1668636 +MT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.091303622 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,45.6545086 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.916725259 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,4.452862231 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.595106286 +MT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.472555677 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.48501412 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.2056607 +MT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.23656528 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.126035617 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,68.0480292 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1798.316441 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.348659944 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048199999 +MT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.250374726 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,672.2837168 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.654836275 +MT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.225597 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.457511051 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,66.24683717 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.437286917 +MT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,15.23294897 +MT,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,45.51390677 +MT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,48.88103383 +MT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,212.0483987 +MT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,47.1914168 +MT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,8169.85655 +MT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,17370.70104 +MT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,23.9440138 +MT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,31.2597 +MT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,130.6134098 +MT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.007 +MT,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.2153 +MT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.607 +MT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,609.0254175 +MT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,639.2349033 +MT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,23.4852 +MT,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,8.5154 +MT,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,116.7127806 +MT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,34201.04946 +MT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,111840.8998 +MT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1340.3 +MT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,26.9019 +MT,PM10 Primary (Filt + Cond),5C_Incineration,,TON,2.433400576 +MT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.000164475 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,429.8242752 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,715.6392391 +MT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,47.33177688 +MT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.7621 +MT,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.2532 +MT,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,25.9431 +MT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.0001 +MT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.52514 +MT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,125.1121 +MT,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.1972 +MT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,2.9666 +MT,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,0.142188375 +MT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,121.0798648 +MT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.4271 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.893162615 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,316.324945 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.61892364 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,180.352715 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.00070233 +MT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,51.01259918 +MT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,21001.61954 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,37.86616637 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.557316105 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.699689019 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.28503014 +MT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.949658897 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1696.435099 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.16781007 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0.201 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.0168 +MT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.537582129 +MT,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,15.91427509 +MT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.15918636 +MT,PM2.5 Filterable,2A1_Cement-production,,TON,30.8659 +MT,PM2.5 Filterable,2A2_Lime-production,,TON,15.32692359 +MT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,816.985655 +MT,PM2.5 Filterable,2A6_Other-minerals,,TON,2400.889015 +MT,PM2.5 Filterable,2B_Chemicals-other,,TON,7.1492 +MT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,12.02759 +MT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,27.30447063 +MT,PM2.5 Filterable,2C7a_Copper-production,,TON,0.0035 +MT,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.1715 +MT,PM2.5 Filterable,2D3d_Coating-application,,TON,0.2587553 +MT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,162.5804501 +MT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,31.47656928 +MT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,10.526283 +MT,PM2.5 Filterable,2I_Wood-processing,,TON,2.13891574 +MT,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,24.25865666 +MT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,7108.65777 +MT,PM2.5 Filterable,3Dc_Other-farm,,TON,22337.81813 +MT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,5.30226667 +MT,PM2.5 Filterable,5C_Incineration,,TON,1.325495417 +MT,PM2.5 Filterable,5C_Incineration,biomass,TON,0.000192073 +MT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,391.8986177 +MT,PM2.5 Filterable,5C_Open-burning-residential,,TON,645.3538508 +MT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,35.86228438 +MT,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.1905 +MT,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.1266 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,40.7057 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0002 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.611540598 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1590.8886 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.7744 +MT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,7.341258 +MT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.217423301 +MT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,265.0970299 +MT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.0348246 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.57196622 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.717388702 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.153854122 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.198362484 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,337.3587542 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,48.14727994 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,315.5242401 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.001403534 +MT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,127.3792719 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,60.75237381 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,3.210262266 +MT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000176335 +MT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,60.52498746 +MT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,21134.59154 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,73.42030268 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,411.0827867 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.76383266 +MT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,27.55956972 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,33.20429312 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.61635887 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.00036949 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,118.702292 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.939242198 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,163.4697127 +MT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.350402125 +MT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.982815807 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,558.8745713 +MT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.084164157 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,39.7973528 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.891052224 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.834942165 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.585523302 +MT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.020469818 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.96046445 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.33346106 +MT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.23656528 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.03225193 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,62.60711846 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1783.595628 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,2.996909909 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043149998 +MT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.99411006 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,652.1152251 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.362614729 +MT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.225597 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.443785744 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,60.94731782 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.364168131 +MT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,14.01431423 +MT,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,45.42614772 +MT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,48.30253383 +MT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,122.6138987 +MT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,20.01833936 +MT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,816.985655 +MT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2573.593244 +MT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,21.2644138 +MT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,12.02759 +MT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,36.77808039 +MT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.007 +MT,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.1715 +MT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.2587553 +MT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,328.9924621 +MT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,499.2304182 +MT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,14.403283 +MT,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.69001574 +MT,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,24.25865666 +MT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,7108.65777 +MT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,22339.22463 +MT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,919.338 +MT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,8.23276667 +MT,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.833634457 +MT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.000153032 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,391.8986177 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,655.3749108 +MT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,36.57382778 +MT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.7621 +MT,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.2532 +MT,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,24.8576 +MT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.0053 +MT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,6.8953 +MT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,9352.962 +MT,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,1872.33 +MT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,3.2932 +MT,Sulfur Dioxide,1A1b_Pet-refining,heavy_oil,TON,41.64489029 +MT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,779.3845097 +MT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,49.9991 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.277839582 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.878362509 +MT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.007168226 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,64.65845467 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,53.51464073 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.84212163 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3033.977793 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +MT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,77.06702555 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.203874785 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.033663203 +MT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.06193E-06 +MT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,72.53840135 +MT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.923312076 +MT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,59.36704938 +MT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.611177409 +MT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.695466148 +MT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.792090778 +MT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.244863094 +MT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000133026 +MT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.46383352 +MT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.210352118 +MT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.981718504 +MT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.429536008 +MT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.558268825 +MT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,13.22947503 +MT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.011569849 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,8.99753463 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.247461567 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,7.015791395 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.143900235 +MT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.714028965 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.275174551 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.668460613 +MT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.010487232 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.063278472 +MT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.209596434 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,52.9058759 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,9.989699447 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0.985 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.00342325 +MT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.378756331 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.431736766 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.220310976 +MT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010405261 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003856157 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.064468423 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.103108793 +MT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.721894204 +MT,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,129.2624223 +MT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.336738711 +MT,Sulfur Dioxide,2A1_Cement-production,,TON,113.585 +MT,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,227.1544 +MT,Sulfur Dioxide,2A6_Other-minerals,,TON,70.0993 +MT,Sulfur Dioxide,2B_Chemicals-other,,TON,1191.1932 +MT,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,9.112 +MT,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.3996 +MT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1.3187 +MT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,68.5677 +MT,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,5.7013 +MT,Sulfur Dioxide,5C_Incineration,,TON,1.678212329 +MT,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,34.97589668 +MT,Sulfur Dioxide,5C_Open-burning-residential,,TON,22.25426692 +MT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.930216297 +MT,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,6.5961 +MT,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,11.3674 +MT,Volatile Organic Compounds,11C_Other-natural,,TON,692387.44 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,4.3419 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.6089 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,301.3843 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,9.7189 +MT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,11.3677 +MT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,32.46015484 +MT,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,163.8364402 +MT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,2026.320605 +MT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,13.0403 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.49127016 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,18.58758726 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.701421507 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.041073719 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,324.055961 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.002207977 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,48.6900998 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,8.646232394 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.021276866 +MT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,682.8469279 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,68.49420284 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,30.33180136 +MT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.007175161 +MT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,338.7237583 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,645.2598063 +MT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,11955.67821 +MT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,77.06847356 +MT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,822.6154 +MT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,58.0667092 +MT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,87.25385123 +MT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.0027279 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,244.1691154 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,12.22831857 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,244.3391762 +MT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,45.60332527 +MT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,762.813754 +MT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,911.2384974 +MT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,3.886477934 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,1.638830553 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.291910153 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.019780255 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.508922847 +MT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.4420318 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,24.23745308 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,295.1867806 +MT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.538892983 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,4.52133333 +MT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1039.901428 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1923.972298 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.003191029 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0.529 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.014199999 +MT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,76.80669239 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,739.0580941 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,123.421526 +MT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.286394152 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.806371843 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2251.540685 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.895148324 +MT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1060.879072 +MT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,27127.07426 +MT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,319.5383154 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,192.5927551 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,152.9209226 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7134.599056 +MT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1604.665274 +MT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4168.215074 +MT,Volatile Organic Compounds,2A1_Cement-production,,TON,3.5256 +MT,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,1.7695 +MT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,16.44254582 +MT,Volatile Organic Compounds,2B_Chemicals-other,,TON,75.4839 +MT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.0176 +MT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,4627.006228 +MT,Volatile Organic Compounds,2D3d_Coating-application,,TON,2735.532051 +MT,Volatile Organic Compounds,2D3e_Degreasing,,TON,474.5464354 +MT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.86659988 +MT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,737.30698 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,714.6905935 +MT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1901.726192 +MT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,660.5108 +MT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,109.9920331 +MT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,77.1901 +MT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,47.01296925 +MT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,596.9434664 +MT,Volatile Organic Compounds,3B2_Manure-sheep,,TON,68.33281354 +MT,Volatile Organic Compounds,3B3_Manure-swine,,TON,91.0458625 +MT,Volatile Organic Compounds,3B4_Manure-other,,TON,102.6986112 +MT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,15.99704279 +MT,Volatile Organic Compounds,3B4d_Manure-goats,,TON,4.73813788 +MT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2822.978219 +MT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1087.68 +MT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,49.3649 +MT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,158.65074 +MT,Volatile Organic Compounds,5C_Incineration,,TON,0.559446398 +MT,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.000120182 +MT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,238.0889294 +MT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,139.8611207 +MT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,35.01506242 +MT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,20.01385 +MT,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1.0267 +NC,Ammonia,1A1a_Public-Electricity,biomass,TON,21.5601 +NC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,11.592197 +NC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,1.1493663 +NC,Ammonia,1A1a_Public-Electricity,natural_gas,TON,248.2345859 +NC,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,0.218 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.123062465 +NC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.292200607 +NC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +NC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.226239218 +NC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.015212063 +NC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.070213134 +NC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,155.0165805 +NC,Ammonia,1A2c_Chemicals,natural_gas,TON,1.332695 +NC,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0010688 +NC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.87645905 +NC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.404250301 +NC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,38.42080154 +NC,Ammonia,1A3bii_Road-LDV,light_oil,TON,3403.286569 +NC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.22031546 +NC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,143.806134 +NC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,19.41884445 +NC,Ammonia,1A3biii_Road-bus,light_oil,TON,2.016293225 +NC,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.25379454 +NC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,73.10866137 +NC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.008334181 +NC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,62.1664289 +NC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.948481989 +NC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,35.27812666 +NC,Ammonia,1A3c_Rail,diesel_oil,TON,3.803298334 +NC,Ammonia,1A3c_Rail,light_oil,TON,0.002357574 +NC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.080279403 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.025056506 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.385290092 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.234989336 +NC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.87406351 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.456174157 +NC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.162036814 +NC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.856373239 +NC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.4426431 +NC,Ammonia,1A4bi_Residential-stationary,biomass,TON,528.3249436 +NC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,27.36300023 +NC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,4.414500059 +NC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,603.0953867 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.890662891 +NC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.237054476 +NC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.031760762 +NC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.795379644 +NC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.976958532 +NC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.784479598 +NC,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.014912 +NC,Ammonia,2A6_Other-minerals,,TON,24.21931958 +NC,Ammonia,2B_Chemicals-other,,TON,435.9640491 +NC,Ammonia,2C_Iron-steel-alloy,,TON,24.226877 +NC,Ammonia,2C3_Aluminum-production,,TON,0.50325 +NC,Ammonia,2C6_Zinc-production,,TON,0.02745 +NC,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.2735396 +NC,Ammonia,2C7a_Copper-production,,TON,0.000925 +NC,Ammonia,2D3d_Coating-application,,TON,49.61504499 +NC,Ammonia,2D3e_Degreasing,Other_Fuel,TON,4.9104 +NC,Ammonia,2D3h_Printing,,TON,18.355255 +NC,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,13.0478408 +NC,Ammonia,2H1_Pulp-and-paper,,TON,327.6962636 +NC,Ammonia,2H2_Food-and-beverage,,TON,119.9035829 +NC,Ammonia,2H3_Other-industrial-processes,,TON,116.8511093 +NC,Ammonia,3B1a_Cattle-dairy,,TON,2951.125413 +NC,Ammonia,3B1b_Cattle-non-dairy,,TON,2676.774066 +NC,Ammonia,3B2_Manure-sheep,,TON,111.4122006 +NC,Ammonia,3B3_Manure-swine,,TON,131908.8711 +NC,Ammonia,3B4_Manure-other,,TON,873.8913995 +NC,Ammonia,3B4_Manure-poultry,,TON,43468.30217 +NC,Ammonia,3B4d_Manure-goats,,TON,242.5367937 +NC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,8984.5 +NC,Ammonia,3F_Ag-res-on-field,,TON,1052.996 +NC,Ammonia,5B_Compost-biogas,Other_Fuel,TON,469.9649012 +NC,Ammonia,5C_Incineration,,TON,0.0177334 +NC,Ammonia,5C_Incineration,biomass,TON,0.007725 +NC,Ammonia,5D1_Wastewater-domestic,,TON,21.3232684 +NC,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,15.3582136 +NC,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,324119 +NC,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,8234.005096 +NC,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,472.108 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,631392.6741 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,740707.5924 +NC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,42319.88056 +NC,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1198.35963 +NC,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,62676.3514 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1709194.157 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,32861.48408 +NC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.960863258 +NC,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1905711.994 +NC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1226678.046 +NC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,46429090.11 +NC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,251468.7402 +NC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2331001.464 +NC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1332857.508 +NC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,71893.61706 +NC,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,9794.857216 +NC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4767660.506 +NC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,24448.48716 +NC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3646555.55 +NC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,205435.8545 +NC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,284338.6194 +NC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2942.698723 +NC,Carbon Dioxide,1A3c_Rail,light_oil,TON,184.1087413 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,179169.0428 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,257685.3298 +NC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,11368.18428 +NC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,105402.8574 +NC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,857963.7851 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,725545.214 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,17553.37265 +NC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1681.843167 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3895.94408 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,128293.4078 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,120304.8742 +NC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,492153.995 +NC,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,10755.649 +NC,Carbon Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.1519292 +NC,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,65742987.95 +NC,Carbon Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,446.8319 +NC,Carbon Monoxide,11C_Other-natural,,TON,96397.1159 +NC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,2603.41 +NC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,165.4932934 +NC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8292.51331 +NC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3349.09007 +NC,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,5.73 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,910.8549764 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17703.0526 +NC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,591.7612372 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,10247.55183 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,98.76574389 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1123.466301 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.11067432 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,8.181558301 +NC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4134.48107 +NC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,9.57 +NC,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,4.263668245 +NC,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,2.316451755 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4141.641119 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6733.292782 +NC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.201925787 +NC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,20886.43389 +NC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11506.29698 +NC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,668300.0085 +NC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1591.634498 +NC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,31628.53379 +NC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2879.850747 +NC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,2320.96389 +NC,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,88.99607092 +NC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3586.977912 +NC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,406.1871658 +NC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3595.54912 +NC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4540.669859 +NC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10962.13319 +NC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1231.156924 +NC,Carbon Monoxide,1A3c_Rail,light_oil,TON,41.5518093 +NC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,644.2612039 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,386.2621143 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,99.49025515 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.959412331 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.46177724 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.540138624 +NC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2728.145486 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,649.1831384 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,53853.239 +NC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,251.755148 +NC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,312.7551438 +NC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,189177.185 +NC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,70503.859 +NC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,136.8149978 +NC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,22.07249933 +NC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1506.847573 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1911.854426 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4081.219871 +NC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,20.9695035 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,27.8231604 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,25316.25806 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,237.4642941 +NC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,52991.73196 +NC,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.2 +NC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,79.082 +NC,Carbon Monoxide,2A6_Other-minerals,,TON,1951.599093 +NC,Carbon Monoxide,2B_Chemicals-other,,TON,739.78433 +NC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,2268.93 +NC,Carbon Monoxide,2C3_Aluminum-production,,TON,9.32 +NC,Carbon Monoxide,2C6_Zinc-production,,TON,0.72 +NC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,364.76244 +NC,Carbon Monoxide,2C7a_Copper-production,,TON,101.55 +NC,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,39.16 +NC,Carbon Monoxide,2D3d_Coating-application,,TON,47.5799 +NC,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,5.32 +NC,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.3 +NC,Carbon Monoxide,2D3h_Printing,,TON,19.34209 +NC,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,1.891 +NC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,8779.44 +NC,Carbon Monoxide,2H2_Food-and-beverage,,TON,1921.692106 +NC,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,178.4896 +NC,Carbon Monoxide,3Dc_Other-farm,,TON,44.71 +NC,Carbon Monoxide,3F_Ag-res-on-field,,TON,4565.58 +NC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,671.9747723 +NC,Carbon Monoxide,5C_Incineration,,TON,2.217655214 +NC,Carbon Monoxide,5C_Incineration,biomass,TON,4.698582855 +NC,Carbon Monoxide,5C_Open-burning-commercial,,TON,9.82 +NC,Carbon Monoxide,5C_Open-burning-industrial,,TON,45.32 +NC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,8761.560355 +NC,Carbon Monoxide,5C_Open-burning-residential,,TON,6404.853483 +NC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,806.9262074 +NC,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,108.552732 +NC,Carbon Monoxide,5D3_Wastewater-commertial,Other_Fuel,TON,0.44 +NC,Methane,1A1a_Public-Electricity,diesel_oil,TON,46.57168014 +NC,Methane,1A1a_Public-Electricity,natural_gas,TON,0.008897625 +NC,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.07525609 +NC,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,78.64271028 +NC,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,254.1984602 +NC,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.525304528 +NC,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,1.189807905 +NC,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,32.60027838 +NC,Methane,1A2g_Construction_and_Mining,light_oil,TON,23.38742728 +NC,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.149489515 +NC,Methane,1A3bii_Road-LDV,diesel_oil,TON,64.801629 +NC,Methane,1A3bii_Road-LDV,light_oil,TON,1596.83715 +NC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.84962281 +NC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,93.02580514 +NC,Methane,1A3biii_Road-bus,diesel_oil,TON,36.54216325 +NC,Methane,1A3biii_Road-bus,light_oil,TON,3.341619228 +NC,Methane,1A3biii_Road-bus,natural_gas,TON,65.83697117 +NC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,242.2770231 +NC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.583641994 +NC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,111.3203915 +NC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.63751367 +NC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.23563682 +NC,Methane,1A3c_Rail,diesel_oil,TON,0.132881262 +NC,Methane,1A3c_Rail,light_oil,TON,0.119799879 +NC,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.034809925 +NC,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,172.6697231 +NC,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,157.3933172 +NC,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.517015672 +NC,Methane,1A4bi_Residential-mobile,light_oil,TON,676.4040848 +NC,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.01858084 +NC,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,15.66427219 +NC,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.420591778 +NC,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.160613549 +NC,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,164.7391068 +NC,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.620587687 +NC,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,474.2202484 +NC,Methane,2A6_Other-minerals,Other_Fuel,TON,0.25319226 +NC,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,164050.2413 +NC,Methane,5D2_Wastewater-industrial,Other_Fuel,TON,0.008421257 +NC,Nitrogen Oxides,11C_Other-natural,,TON,22328.31886 +NC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,816.3 +NC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,617.6442055 +NC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,29883.99 +NC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,3737.86688 +NC,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,6.82 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2573.453653 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1697.468866 +NC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,105.0859372 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4484.780117 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,252.6255269 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,2449.154295 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,57.99227887 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,25.02598505 +NC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5747.728756 +NC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,11.4 +NC,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,13.82585181 +NC,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.771548185 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,7519.735992 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,76.8119632 +NC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.044650886 +NC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,6600.317712 +NC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3812.250139 +NC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,77151.39372 +NC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,676.8632978 +NC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3584.969784 +NC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,7170.765803 +NC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,177.4295151 +NC,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,47.63271696 +NC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12653.98337 +NC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,49.27593311 +NC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9929.880887 +NC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,434.3732905 +NC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,539.4280116 +NC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6813.279482 +NC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.406067725 +NC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4395.153102 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,317.9784627 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,381.9060061 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,153.159037 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,37.01151617 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.938184719 +NC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3268.543809 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1251.113093 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,661.8003601 +NC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,60.15832808 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,796.5022545 +NC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1715.607579 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1130.607425 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,492.5340046 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,79.46100012 +NC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3903.617948 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4142.11783 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,63.33050247 +NC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.761976668 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,30.419151 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,261.579242 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1184.623059 +NC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3536.665148 +NC,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.8 +NC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,28.712 +NC,Nitrogen Oxides,2A6_Other-minerals,,TON,6074.282202 +NC,Nitrogen Oxides,2B_Chemicals-other,,TON,891.0075 +NC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,446.013 +NC,Nitrogen Oxides,2C3_Aluminum-production,,TON,11.22 +NC,Nitrogen Oxides,2C6_Zinc-production,,TON,0.86 +NC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,85.72821 +NC,Nitrogen Oxides,2C7a_Copper-production,,TON,4.31499 +NC,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,16.81 +NC,Nitrogen Oxides,2D3d_Coating-application,,TON,305.991 +NC,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,10.93 +NC,Nitrogen Oxides,2D3f_Dry-cleaning,Other_Fuel,TON,0.36 +NC,Nitrogen Oxides,2D3h_Printing,,TON,23.37932 +NC,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,2.231 +NC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,4230.03 +NC,Nitrogen Oxides,2H2_Food-and-beverage,,TON,69.055818 +NC,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,602.7412 +NC,Nitrogen Oxides,3Dc_Other-farm,,TON,38.73 +NC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,191.296 +NC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,141.3 +NC,Nitrogen Oxides,5C_Incineration,,TON,26.81280737 +NC,Nitrogen Oxides,5C_Incineration,biomass,TON,10.39986828 +NC,Nitrogen Oxides,5C_Open-burning-commercial,,TON,5.97 +NC,Nitrogen Oxides,5C_Open-burning-industrial,,TON,10.07 +NC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,212.6592332 +NC,Nitrogen Oxides,5C_Open-burning-residential,,TON,452.1073101 +NC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,35.86338636 +NC,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,6.2823 +NC,Nitrogen Oxides,5D3_Wastewater-commertial,Other_Fuel,TON,0.02 +NC,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,72.3149865 +NC,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.000889763 +NC,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.633759888 +NC,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.291794946 +NC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.464589562 +NC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1385.765295 +NC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.820671421 +NC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,76.18306759 +NC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,2.625086167 +NC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.961220335 +NC,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.269541583 +NC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.160041751 +NC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.516974948 +NC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.922050224 +NC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.625964721 +NC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.777120035 +NC,Nitrous Oxide,2A6_Other-minerals,Other_Fuel,TON,0.034749171 +NC,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,814.953222 +NC,Nitrous Oxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.000842126 +NC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,94.6013799 +NC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,21.48659766 +NC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1935.897153 +NC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,499.0023283 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1527.046617 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.65865957 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,246.1455671 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.036651351 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.540712675 +NC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,156.336236 +NC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,8.4588 +NC,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.767613222 +NC,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.120407268 +NC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,109755.2456 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,137.1204047 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.04376064 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,24.7355067 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.106721957 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.317668442 +NC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.00414376 +NC,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,9054.909648 +NC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,29.55204048 +NC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.763299969 +NC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,7.538099375 +NC,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.01 +NC,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.05 +NC,PM10 Filterable,2A1_Cement-production,,TON,0.287 +NC,PM10 Filterable,2A2_Lime-production,,TON,5.35162292 +NC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,17002.43322 +NC,PM10 Filterable,2A6_Other-minerals,,TON,7130.49704 +NC,PM10 Filterable,2B_Chemicals-other,,TON,1157.677043 +NC,PM10 Filterable,2C_Iron-steel-alloy,,TON,120.7232635 +NC,PM10 Filterable,2C3_Aluminum-production,,TON,0.0928 +NC,PM10 Filterable,2C6_Zinc-production,,TON,0.2978261 +NC,PM10 Filterable,2C7_Other-metal,,TON,172.571262 +NC,PM10 Filterable,2C7a_Copper-production,,TON,3.673939052 +NC,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,117.175152 +NC,PM10 Filterable,2D3d_Coating-application,,TON,157.3498799 +NC,PM10 Filterable,2D3e_Degreasing,Other_Fuel,TON,10.45 +NC,PM10 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,1.51 +NC,PM10 Filterable,2D3h_Printing,,TON,0 +NC,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,15.8153 +NC,PM10 Filterable,2H1_Pulp-and-paper,,TON,1763.903527 +NC,PM10 Filterable,2H2_Food-and-beverage,,TON,745.9000369 +NC,PM10 Filterable,2H3_Other-industrial-processes,,TON,873.2915788 +NC,PM10 Filterable,2I_Wood-processing,,TON,82.59827 +NC,PM10 Filterable,3B1a_Cattle-dairy,,TON,348.3121828 +NC,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,7843.464259 +NC,PM10 Filterable,3Dc_Other-farm,,TON,51635.37293 +NC,PM10 Filterable,5A_Solid-waste-disposal,,TON,36.086586 +NC,PM10 Filterable,5C_Incineration,biomass,TON,5.965538201 +NC,PM10 Filterable,5C_Open-burning-commercial,,TON,7.5184511 +NC,PM10 Filterable,5C_Open-burning-industrial,,TON,30.097748 +NC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1084.562076 +NC,PM10 Filterable,5C_Open-burning-residential,,TON,2863.346277 +NC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,176.1148464 +NC,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.808171 +NC,PM10 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,99.59 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,31.92495323 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2247.29852 +NC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,908.5060468 +NC,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.39 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,144.9967715 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,84.98940563 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.094846673 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1554.550521 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,21.66858315 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,267.8499924 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.577267312 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.214387732 +NC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,361.2621483 +NC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,22.58 +NC,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.02966222 +NC,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.39988578 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,689.477859 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,52.32279585 +NC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000802186 +NC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,376.3705717 +NC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,109755.2456 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,226.8419319 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4523.6121 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,46.90323409 +NC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,216.5061483 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,502.828889 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.65088894 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.80126009 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,761.6451571 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.423140851 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,700.1937949 +NC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,21.14811699 +NC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.83249162 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,200.3593497 +NC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.023379502 +NC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,112.042747 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,165.6821778 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.16178595 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,26.68568693 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.93927994 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.688264092 +NC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,76.47389726 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,106.3821253 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,67.36301388 +NC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.441137953 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,52.85629901 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,851.3772869 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9463.586049 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,65.12393992 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,10.50760015 +NC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,19.57974952 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,335.1487905 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,22.45413267 +NC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.205011634 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.10352076 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,115.1642025 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.02289379 +NC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,165.9369781 +NC,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.11 +NC,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.05 +NC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,0.287 +NC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,5.4 +NC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,17002.43322 +NC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7522.337076 +NC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,1215.753606 +NC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,274.4555 +NC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,10.85 +NC,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.37 +NC,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,206.076192 +NC,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,5.6862 +NC,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,119.821 +NC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,158.9234799 +NC,PM10 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,10.45 +NC,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,1.51 +NC,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,3.298958 +NC,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,15.8153 +NC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2567.53693 +NC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5096.376329 +NC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,915.479223 +NC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,82.59827 +NC,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,348.3121828 +NC,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,7843.464259 +NC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,51664.81095 +NC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,752.173 +NC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,43.93 +NC,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.535965613 +NC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,3.783851587 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,10.01 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,33.14 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1084.562076 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2863.346277 +NC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,176.1148464 +NC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,4.388466 +NC,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +NC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,71.0113799 +NC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,20.4559961 +NC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1784.351455 +NC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,493.0223283 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1296.863881 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.687201187 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,217.0973209 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.035732522 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.476889243 +NC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,142.9409414 +NC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,8.4588 +NC,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.053101488 +NC,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.113716812 +NC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,14217.47118 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,88.72227171 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.64887165 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.882646332 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.755323819 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.244251717 +NC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.19203353 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,8945.616572 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,22.71129061 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.662399905 +NC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.145955079 +NC,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.01 +NC,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02 +NC,PM2.5 Filterable,2A1_Cement-production,,TON,0.1510526 +NC,PM2.5 Filterable,2A2_Lime-production,,TON,5.35162292 +NC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1700.243322 +NC,PM2.5 Filterable,2A6_Other-minerals,,TON,1739.461074 +NC,PM2.5 Filterable,2B_Chemicals-other,,TON,447.0791474 +NC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,91.14026138 +NC,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.08040851 +NC,PM2.5 Filterable,2C6_Zinc-production,,TON,0.2978261 +NC,PM2.5 Filterable,2C7_Other-metal,,TON,154.9639546 +NC,PM2.5 Filterable,2C7a_Copper-production,,TON,1.327598663 +NC,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,108.635152 +NC,PM2.5 Filterable,2D3d_Coating-application,,TON,140.7523856 +NC,PM2.5 Filterable,2D3e_Degreasing,Other_Fuel,TON,10.31907 +NC,PM2.5 Filterable,2D3f_Dry-cleaning,Other_Fuel,TON,1.51 +NC,PM2.5 Filterable,2D3h_Printing,,TON,0 +NC,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,14.77315796 +NC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1240.778741 +NC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,206.5935046 +NC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,591.6572474 +NC,PM2.5 Filterable,2I_Wood-processing,,TON,50.70244238 +NC,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,72.39640593 +NC,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1630.257015 +NC,PM2.5 Filterable,3Dc_Other-farm,,TON,8079.163043 +NC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,35.926586 +NC,PM2.5 Filterable,5C_Incineration,biomass,TON,4.116879403 +NC,PM2.5 Filterable,5C_Open-burning-commercial,,TON,4.2826619 +NC,PM2.5 Filterable,5C_Open-burning-industrial,,TON,26.597748 +NC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,988.865446 +NC,PM2.5 Filterable,5C_Open-burning-residential,,TON,2622.222356 +NC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,135.7685339 +NC,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,1.808171 +NC,PM2.5 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,76 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,30.89435201 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2095.75279 +NC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,902.5260468 +NC,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.13 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,140.6426848 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,83.52031534 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.094846673 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1347.680756 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,18.0941275 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,238.8070315 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.576920364 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,2.15138918 +NC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,308.9443814 +NC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,22.37 +NC,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.314615746 +NC,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.323730064 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,668.7935564 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,48.16228057 +NC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000802186 +NC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,341.5924793 +NC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,14217.47118 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,163.0217037 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1550.748849 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,33.20823118 +NC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,69.56344472 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,352.3428254 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.322532354 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.888152567 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,467.6270973 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.853148142 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,447.9154317 +NC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.236570034 +NC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.75173362 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,194.346687 +NC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021554932 +NC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,108.0847021 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,97.8068086 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,14.61778494 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,7.834502321 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.588493687 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.617990865 +NC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,66.75981091 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,103.1906575 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,62.12119772 +NC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.441137953 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,51.27060681 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,783.3079577 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9354.292973 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,58.28319078 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,9.406700015 +NC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.18760478 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,325.0943326 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,20.65794717 +NC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.205011634 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.98041378 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,105.9528899 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.24220546 +NC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,152.6620178 +NC,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.11 +NC,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02 +NC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,0.1510526 +NC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,5.4 +NC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1700.243322 +NC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2131.10112 +NC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,504.0957077 +NC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,243.1324958 +NC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,9.1676085 +NC,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,1.37 +NC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,188.1859948 +NC,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,3.299859611 +NC,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,111.281 +NC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,142.2259856 +NC,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,Other_Fuel,TON,10.31907 +NC,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,1.51 +NC,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,3.008658 +NC,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,14.77315796 +NC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1999.332137 +NC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4539.419753 +NC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,625.1048933 +NC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,50.70244238 +NC,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,72.39640593 +NC,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1630.257015 +NC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,8107.801041 +NC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,454.866 +NC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,43.77 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,2.148773245 +NC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,2.972385158 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,6.7742107 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,29.64 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,988.865446 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2622.222356 +NC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,135.7685339 +NC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.708466 +NC,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +NC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,242.7 +NC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,94.9972504 +NC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,25927.58 +NC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,147.7938713 +NC,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.04 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.028927925 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,14.80459296 +NC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.237214752 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1414.105 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,152.925761 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1785.62651 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,239.6638299 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.715248097 +NC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,819.3119257 +NC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.06 +NC,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,42.01353 +NC,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,10.014338 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,13.40244501 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.504038534 +NC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.89777E-05 +NC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,963.870391 +NC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,10.63191886 +NC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,975.4603885 +NC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.158883658 +NC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,49.00963944 +NC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,11.53181815 +NC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.507576136 +NC,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.051858779 +NC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,40.33042155 +NC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.512455346 +NC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.98026429 +NC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.305763108 +NC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.847045455 +NC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.284889504 +NC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002962942 +NC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,30.16108003 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,21.84685588 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,113.3457662 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,500.9853102 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,91.40826717 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.010000905 +NC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,47.48407357 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.516680774 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.019408698 +NC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.063688265 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.914164101 +NC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,14.04864491 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,218.2811642 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,194.2772954 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.746268509 +NC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,22.59498914 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6.010770188 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.28827017 +NC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.009427867 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.03404435 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.103191516 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.10593197 +NC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.085688392 +NC,Sulfur Dioxide,2A6_Other-minerals,,TON,3022.555379 +NC,Sulfur Dioxide,2B_Chemicals-other,,TON,3294.92188 +NC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,102.725 +NC,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.07 +NC,Sulfur Dioxide,2C6_Zinc-production,,TON,0.01 +NC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,180.439155 +NC,Sulfur Dioxide,2C7a_Copper-production,,TON,5.70687 +NC,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,6.28 +NC,Sulfur Dioxide,2D3d_Coating-application,,TON,0.8752 +NC,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.04 +NC,Sulfur Dioxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.0021 +NC,Sulfur Dioxide,2D3h_Printing,,TON,6.7925365 +NC,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.221 +NC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1182.01 +NC,Sulfur Dioxide,2H2_Food-and-beverage,,TON,120.4459644 +NC,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,27.20514 +NC,Sulfur Dioxide,3Dc_Other-farm,,TON,3.6 +NC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,85.5679 +NC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,24.01 +NC,Sulfur Dioxide,5C_Incineration,,TON,1.017331511 +NC,Sulfur Dioxide,5C_Incineration,biomass,TON,5.137383616 +NC,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.9 +NC,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.22 +NC,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,88.25358017 +NC,Sulfur Dioxide,5C_Open-burning-residential,,TON,75.35121496 +NC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.749053259 +NC,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,4.1422338 +NC,Sulfur Dioxide,5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +NC,Volatile Organic Compounds,11C_Other-natural,,TON,857137.761 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,29.56 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,31.36713716 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,375.424008 +NC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,426.9217641 +NC,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,18.01 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,169.5999661 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,535.8120394 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,54.94818915 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,663.098401 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.11203803 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,52.47607913 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.091070576 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,2.016939896 +NC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,652.7021299 +NC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,70.92 +NC,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.890718554 +NC,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.124676446 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,765.6137847 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,461.9851172 +NC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.032314034 +NC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2764.946495 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1153.277827 +NC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,50553.17182 +NC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,172.774014 +NC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2178.77154 +NC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,536.5425396 +NC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,91.37177 +NC,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,8.553419162 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,732.5115802 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,15.26943667 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,718.6368901 +NC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,184.1188105 +NC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1517.909411 +NC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,341.255287 +NC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.06419025 +NC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,178.5792035 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,10.66527611 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15.33065135 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.731987825 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.001033592 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.101533262 +NC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,243.6073799 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,146.3970399 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1875.606559 +NC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,34.02254771 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,74.54096454 +NC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11407.63967 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,10503.87708 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,19.50981897 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,3.095599927 +NC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,207.1239575 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,333.8058584 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,274.984654 +NC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.820216584 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.2389599 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3885.714874 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,63.99233226 +NC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,12723.70132 +NC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,934.426228 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1219.887618 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,668.3280823 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4684.563504 +NC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,13675.40887 +NC,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.07 +NC,Volatile Organic Compounds,2A6_Other-minerals,,TON,590.8246531 +NC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,9.463471273 +NC,Volatile Organic Compounds,2B_Chemicals-other,,TON,3396.125028 +NC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,140.42128 +NC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,363.68 +NC,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.05 +NC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,568.41498 +NC,Volatile Organic Compounds,2C7a_Copper-production,,TON,7.1 +NC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,45018.90426 +NC,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,78.114 +NC,Volatile Organic Compounds,2D3d_Coating-application,,TON,32864.97135 +NC,Volatile Organic Compounds,2D3e_Degreasing,,TON,5688.5115 +NC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,64.59999964 +NC,Volatile Organic Compounds,2D3h_Printing,,TON,17254.41215 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +NC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2404.635845 +NC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,13113.174 +NC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2600.102422 +NC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2995.459165 +NC,Volatile Organic Compounds,2I_Wood-processing,,TON,66.96 +NC,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,236.0900355 +NC,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,214.1419148 +NC,Volatile Organic Compounds,3B2_Manure-sheep,,TON,8.912975836 +NC,Volatile Organic Compounds,3B3_Manure-swine,,TON,10552.70911 +NC,Volatile Organic Compounds,3B4_Manure-other,,TON,69.91131087 +NC,Volatile Organic Compounds,3B4_Manure-poultry,,TON,3477.464253 +NC,Volatile Organic Compounds,3B4d_Manure-goats,,TON,19.40294371 +NC,Volatile Organic Compounds,3Dc_Other-farm,,TON,155.56 +NC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,7463.012232 +NC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,670.163 +NC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,240.4 +NC,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,961.5943854 +NC,Volatile Organic Compounds,5C_Incineration,,TON,0.899870529 +NC,Volatile Organic Compounds,5C_Incineration,biomass,TON,9.572174955 +NC,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.5 +NC,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,1.89 +NC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,600.7623319 +NC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,645.0064141 +NC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,150.4981404 +NC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,90.423295 +NC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,127.2182605 +NC,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.02 +NC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,36.3871158 +NC,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.090012677 +ND,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,148.92 +ND,Ammonia,1A1b_Pet-refining,natural_gas,TON,2.3 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.187425551 +ND,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.037981616 +ND,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ND,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.820616556 +ND,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.90157081 +ND,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,152.1320253 +ND,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,97.38514569 +ND,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,6.150357362 +ND,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.271234034 +ND,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.344686288 +ND,Ammonia,1A3bii_Road-LDV,light_oil,TON,242.9786284 +ND,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.335527541 +ND,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.83935115 +ND,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.295994756 +ND,Ammonia,1A3biii_Road-bus,light_oil,TON,0.37808968 +ND,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,24.31026053 +ND,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,4.027272478 +ND,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14.49803739 +ND,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.153906618 +ND,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.205629007 +ND,Ammonia,1A3c_Rail,diesel_oil,TON,6.876473497 +ND,Ammonia,1A3c_Rail,light_oil,TON,0.003664286 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.176799675 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.708220117 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.7955985 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016501303 +ND,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.702633058 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.653742396 +ND,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.246998107 +ND,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.028041749 +ND,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.582548819 +ND,Ammonia,1A4bi_Residential-stationary,biomass,TON,13.11180074 +ND,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,2.772000071 +ND,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.060749999 +ND,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,111.4681951 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27.48129963 +ND,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.738188881 +ND,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002809027 +ND,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.906501778 +ND,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.095029781 +ND,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.585724435 +ND,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,1.551950998 +ND,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,95.049 +ND,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1748.65364 +ND,Ammonia,3B1a_Cattle-dairy,,TON,375.7091063 +ND,Ammonia,3B1b_Cattle-non-dairy,,TON,5189.395284 +ND,Ammonia,3B2_Manure-sheep,,TON,245.1068459 +ND,Ammonia,3B3_Manure-swine,,TON,1018.247197 +ND,Ammonia,3B4_Manure-other,,TON,634.906957 +ND,Ammonia,3B4_Manure-poultry,,TON,352.9806623 +ND,Ammonia,3B4d_Manure-goats,,TON,36.6013402 +ND,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,43182.9 +ND,Ammonia,3F_Ag-res-on-field,,TON,4922.293 +ND,Ammonia,5B_Compost-biogas,Other_Fuel,TON,16.123112 +ND,Ammonia,5D1_Wastewater-domestic,,TON,1.9903975 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,23096.91026 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22212.7775 +ND,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1269.584327 +ND,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.1 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,757939.8352 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,22038.46594 +ND,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.79056162 +ND,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,76190.62368 +ND,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,249657.7158 +ND,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3327601.009 +ND,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,40919.2117 +ND,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,259307.9187 +ND,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,78905.54847 +ND,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,11060.30805 +ND,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1280843.784 +ND,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,87105.82238 +ND,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,847335.7403 +ND,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,27960.41454 +ND,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,19994.04181 +ND,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4623.933947 +ND,Carbon Dioxide,1A3c_Rail,light_oil,TON,285.279773 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,80503.53189 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,101363.6851 +ND,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4121.537097 +ND,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3452.59373 +ND,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,43543.96308 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3383850.828 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,55866.24393 +ND,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8289.74233 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,344.658 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,63684.72088 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11701.8552 +ND,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,43225.91588 +ND,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,39165232.09 +ND,Carbon Monoxide,11C_Other-natural,,TON,41259.7811 +ND,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,5746.5 +ND,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,16.5 +ND,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,417.3 +ND,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,193.5 +ND,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,228.08 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,35.81193941 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,615.6280941 +ND,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21.97308648 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,145.1385655 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,888.682972 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,8793.120506 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3293.464049 +ND,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,303.7 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1394.003517 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4371.534807 +ND,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.291326263 +ND,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3602.835376 +ND,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2262.011767 +ND,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,64052.32622 +ND,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,285.6144915 +ND,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4684.606966 +ND,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,216.3666021 +ND,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,613.477262 +ND,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1325.883267 +ND,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1623.241017 +ND,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1056.837034 +ND,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,747.2887845 +ND,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,935.525487 +ND,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2212.592465 +ND,Carbon Monoxide,1A3c_Rail,light_oil,TON,62.84288154 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,21.21596017 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.959345777 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,132.599753 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.103133137 +ND,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,654.4050537 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,203.3069656 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20461.50249 +ND,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,61.53041215 +ND,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,8.695969782 +ND,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,9795.963818 +ND,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,2343.275309 +ND,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,13.85999961 +ND,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.303750007 +ND,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,328.1895959 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10399.86738 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10827.4356 +ND,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,105.6111799 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.34838416 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,7151.321152 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.46443568 +ND,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4170.659386 +ND,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,25602.31134 +ND,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1448.47335 +ND,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,39.9 +ND,Carbon Monoxide,2B_Chemicals-other,,TON,111.7 +ND,Carbon Monoxide,2H2_Food-and-beverage,,TON,4351.580668 +ND,Carbon Monoxide,3Dc_Other-farm,,TON,59.1 +ND,Carbon Monoxide,3F_Ag-res-on-field,,TON,20738.94 +ND,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,5.700837 +ND,Carbon Monoxide,5C_Incineration,biomass,TON,0.546802828 +ND,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,692.1679873 +ND,Carbon Monoxide,5C_Open-burning-residential,,TON,1153.98921 +ND,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,22.2781952 +ND,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.555901204 +ND,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.691834302 +ND,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,9.015037548 +ND,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,16.21419971 +ND,Methane,1A2g_Construction_and_Mining,light_oil,TON,15.78269968 +ND,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.160905326 +ND,Methane,1A3bii_Road-LDV,diesel_oil,TON,20.74224128 +ND,Methane,1A3bii_Road-LDV,light_oil,TON,188.610482 +ND,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.622397584 +ND,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.18294863 +ND,Methane,1A3biii_Road-bus,diesel_oil,TON,2.182629289 +ND,Methane,1A3biii_Road-bus,light_oil,TON,1.963810235 +ND,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,83.7938493 +ND,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,3.12799039 +ND,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.87880462 +ND,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.262268777 +ND,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.753805258 +ND,Methane,1A3c_Rail,diesel_oil,TON,0.208381891 +ND,Methane,1A3c_Rail,light_oil,TON,0.194544576 +ND,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.607881778 +ND,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,69.63727638 +ND,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32.74137325 +ND,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.113961805 +ND,Methane,1A4bi_Residential-mobile,light_oil,TON,38.57904468 +ND,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,100.0845906 +ND,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,46.1202482 +ND,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,42.4658181 +ND,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.014472801 +ND,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,55.60783256 +ND,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.459941646 +ND,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,39.19498845 +ND,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,22210.9925 +ND,Nitrogen Oxides,11C_Other-natural,,TON,36108.6882 +ND,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,33603.6 +ND,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,30.4 +ND,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,467.5 +ND,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,0.204117079 +ND,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,317.0958829 +ND,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,211.21 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,106.0655437 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,58.4727158 +ND,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.441261494 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,126.9908071 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4098.04781 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,19281.02484 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6931.034853 +ND,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,66.2 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2876.707784 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,53.06787327 +ND,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.055291629 +ND,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,622.1077522 +ND,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,817.8523605 +ND,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,6672.268355 +ND,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,116.3942129 +ND,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,466.1242289 +ND,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,711.1752599 +ND,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,66.52379629 +ND,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4058.96346 +ND,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,172.0909806 +ND,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3394.423234 +ND,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,64.57454446 +ND,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,42.8411236 +ND,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,11540.2612 +ND,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.736607399 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,7.77985105 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,43.75928693 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,291.7444095 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.41256791 +ND,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,824.4816975 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,453.1549881 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,271.4922878 +ND,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.72913689 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,23.25741992 +ND,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,100.2331115 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,46.50636144 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,49.89600289 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.093499996 +ND,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,898.1577988 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22968.12849 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,275.4029558 +ND,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,18.75333655 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.645773 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,141.3573491 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,102.6371576 +ND,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,276.1328049 +ND,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,17663.27894 +ND,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1 +ND,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,48.20814844 +ND,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,11.8 +ND,Nitrogen Oxides,2B_Chemicals-other,,TON,99 +ND,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,2.1 +ND,Nitrogen Oxides,2H2_Food-and-beverage,,TON,403.8 +ND,Nitrogen Oxides,3Dc_Other-farm,,TON,36.3 +ND,Nitrogen Oxides,3F_Ag-res-on-field,,TON,830.406 +ND,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,0.2 +ND,Nitrogen Oxides,5C_Incineration,biomass,TON,5.718988034 +ND,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,16.80019586 +ND,Nitrogen Oxides,5C_Open-burning-residential,,TON,81.4580562 +ND,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.23325726 +ND,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.736298361 +ND,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,128.9159064 +ND,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.136421207 +ND,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.73567394 +ND,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.162705226 +ND,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.419376243 +ND,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.854224277 +ND,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.210606917 +ND,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.302959614 +ND,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.179796383 +ND,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.625688722 +ND,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,546.594385 +ND,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,751 +ND,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.1 +ND,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,10.8 +ND,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,50.4625 +ND,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,5.1575 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,116.5 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,91.51546654 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,305.5623339 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,19234.4078 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,150.1845451 +ND,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.9 +ND,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,104211.6948 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,17.67996754 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.78950217 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,318.2394166 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022276757 +ND,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.90650654 +ND,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,351.256364 +ND,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.993759938 +ND,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.065550002 +ND,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.642299948 +ND,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,274.0889424 +ND,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14.6434444 +ND,PM10 Filterable,2A5b_Construction-and-demolition,,TON,5998.588144 +ND,PM10 Filterable,2A6_Other-minerals,,TON,9845.02103 +ND,PM10 Filterable,2B_Chemicals-other,,TON,126.9 +ND,PM10 Filterable,2D3d_Coating-application,,TON,0.7230769 +ND,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.6 +ND,PM10 Filterable,2H2_Food-and-beverage,,TON,621.3886768 +ND,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,9.62 +ND,PM10 Filterable,3B1a_Cattle-dairy,,TON,128.4061564 +ND,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,22528.2056 +ND,PM10 Filterable,3Dc_Other-farm,,TON,176090.4007 +ND,PM10 Filterable,5C_Incineration,biomass,TON,0.557257902 +ND,PM10 Filterable,5C_Open-burning-land-clearing,,TON,85.68099391 +ND,PM10 Filterable,5C_Open-burning-residential,,TON,435.540016 +ND,PM10 Filterable,5C_Open-burning-yard-waste,,TON,7.55867346 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,3446.883663 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.3796628 +ND,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,37.082 +ND,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,69.5625 +ND,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,18.4175 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.363374053 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.613744454 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.15236108 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,116.5 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,101.6084 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,325.1921535 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,21016.33619 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,527.7530591 +ND,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.9 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,222.9452178 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,35.08881476 +ND,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001710409 +ND,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,97.39113546 +ND,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,104211.6948 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,43.086725 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,418.4096746 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.414304526 +ND,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,31.35444427 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,45.61600947 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.135163481 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,250.0245755 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.80840904 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,201.9444515 +ND,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.093888072 +ND,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.237800373 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,341.4770861 +ND,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036307518 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,18.28108514 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.927080876 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,345.8201886 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.048266304 +ND,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.65753216 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,31.41266876 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,26.58131706 +ND,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.517850194 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.404913686 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,35.94445014 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,363.8810307 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,6.597360231 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.144599998 +ND,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.263219969 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1788.440663 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.285818371 +ND,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.013391497 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.34477058 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,61.06574121 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.272043741 +ND,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,9.63094288 +ND,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,470.7434994 +ND,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,18.18000582 +ND,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,5998.588144 +ND,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9897.699606 +ND,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,173.3 +ND,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.7230769 +ND,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.6 +ND,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1095.139826 +ND,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,9.62 +ND,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,128.4061564 +ND,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,22528.2056 +ND,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,176111.6007 +ND,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3220.978 +ND,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.657257902 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,85.68099391 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,435.540016 +ND,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.55867346 +ND,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,135.5461539 +ND,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.88125 +ND,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,10.8 +ND,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,8.3625 +ND,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,5.1575 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,62.9882336 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,60.40930437 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,279.3925812 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,2277.21761 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,147.8285477 +ND,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.9 +ND,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11183.58467 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,15.204771 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.579249288 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,37.12792643 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017120101 +ND,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.216886294 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,341.8608605 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,2.300760011 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.050399999 +ND,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.903265037 +ND,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,267.6041899 +ND,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14.6434444 +ND,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,599.8588144 +ND,PM2.5 Filterable,2A6_Other-minerals,,TON,1260.769007 +ND,PM2.5 Filterable,2B_Chemicals-other,,TON,111.4 +ND,PM2.5 Filterable,2D3d_Coating-application,,TON,0.6 +ND,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.6 +ND,PM2.5 Filterable,2H2_Food-and-beverage,,TON,489.3539609 +ND,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,4.3766586 +ND,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,26.68911192 +ND,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,4682.467167 +ND,PM2.5 Filterable,3Dc_Other-farm,,TON,35183.62089 +ND,PM2.5 Filterable,5C_Incineration,biomass,TON,0.437988738 +ND,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,78.12090799 +ND,PM2.5 Filterable,5C_Open-burning-residential,,TON,398.862937 +ND,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.82813518 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,2831.429816 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.1609128 +ND,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,37.082 +ND,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,27.4625 +ND,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,18.4175 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.202043638 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.56365845 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.15236108 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,62.9882336 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,70.50222798 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,299.0223969 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,4059.1455 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,525.3970616 +ND,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.9 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,216.2568802 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,32.29877768 +ND,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001710409 +ND,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,84.46318178 +ND,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11183.58467 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,31.7249476 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,207.2218262 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.259946584 +ND,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.49533792 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,35.66690146 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.902308753 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,163.4591676 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.850907966 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,146.1904803 +ND,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.914282598 +ND,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.452334921 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,331.2286854 +ND,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.033467024 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,15.80589009 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.71682804 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,64.70867942 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.043315919 +ND,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.967912319 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,30.47028917 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,24.51157453 +ND,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.517850194 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.362766053 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,33.07032505 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,354.4855272 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,5.904359992 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.129449999 +ND,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.524185011 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1734.787355 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.543673771 +ND,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.013391497 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.33442748 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,56.18064343 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.20388215 +ND,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,8.86046773 +ND,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,464.2588396 +ND,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,18.18000582 +ND,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,599.8588144 +ND,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1313.447581 +ND,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,157.8 +ND,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.6 +ND,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,1.6 +ND,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,963.1051184 +ND,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,4.3766586 +ND,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,26.68911192 +ND,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4682.467167 +ND,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,35204.82089 +ND,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2075.119 +ND,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.537988738 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,78.12090799 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,398.862937 +ND,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.82813518 +ND,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,40597.8 +ND,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.4 +ND,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,29.9 +ND,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,187.2 +ND,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,532.33 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.187742265 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.620997032 +ND,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.007115686 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,48.03077355 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,262.5469554 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,55496.55815 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4942.744612 +ND,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,308.3 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.917755062 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.338190321 +ND,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.28781E-05 +ND,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,78.88924312 +ND,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.157169085 +ND,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,39.56278278 +ND,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.350797338 +ND,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.087475177 +ND,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.690715448 +ND,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.131136578 +ND,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.85752821 +ND,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.033994027 +ND,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.264678706 +ND,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.331893998 +ND,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.238578496 +ND,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,7.748094213 +ND,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004600745 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.8839983 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.266304483 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1975.205817 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.31951925 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.674012587 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.583900256 +ND,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.023099548 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.029371468 +ND,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.713905209 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,9.690796089 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,19.68119953 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.01026975 +ND,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.920139872 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,29.48837647 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.917892152 +ND,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.046469154 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003008753 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.043861276 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.107572129 +ND,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.710689137 +ND,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2493.512413 +ND,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,718.7773313 +ND,Sulfur Dioxide,2A6_Other-minerals,,TON,63.25 +ND,Sulfur Dioxide,2B_Chemicals-other,,TON,8.5 +ND,Sulfur Dioxide,2H2_Food-and-beverage,,TON,221.3 +ND,Sulfur Dioxide,3Dc_Other-farm,,TON,2.7 +ND,Sulfur Dioxide,3F_Ag-res-on-field,,TON,313.2058 +ND,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,3.1 +ND,Sulfur Dioxide,5C_Incineration,biomass,TON,1.155786709 +ND,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,6.972080933 +ND,Sulfur Dioxide,5C_Open-burning-residential,,TON,13.5763431 +ND,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.151173468 +ND,Volatile Organic Compounds,11C_Other-natural,,TON,121047.096 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,590.3 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.7 +ND,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,56.9 +ND,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,24.92217899 +ND,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,615.577821 +ND,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,34.48 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.232515419 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.91683411 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.948713758 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,61.99292599 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,275.968205 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,108.7042051 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +ND,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,356.5664306 +ND,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,559.7 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,209.0754319 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,303.1218315 +ND,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.0347817 +ND,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,370.0303162 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,263.5826565 +ND,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5419.840013 +ND,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,34.04423027 +ND,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,363.0195902 +ND,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,53.39063748 +ND,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,40.95343848 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,320.1003723 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,65.25978223 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,231.2949977 +ND,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,35.25560217 +ND,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,299.5121067 +ND,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,544.1083599 +ND,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.557841377 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.601118901 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.145021808 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.32599753 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.007013054 +ND,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,42.37816602 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,43.0334563 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,694.3215045 +ND,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.077458912 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.031599305 +ND,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,603.4283381 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,354.1053261 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.976436009 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.042600001 +ND,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,45.10240957 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1906.900019 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,410.1139116 +ND,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.17951782 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.61085161 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2105.263719 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.37389884 +ND,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,708.5180567 +ND,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,358387.3545 +ND,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,298.658312 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,24.22826922 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,246.5021119 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1733.602656 +ND,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1477.117109 +ND,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4013.013714 +ND,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,56.80351618 +ND,Volatile Organic Compounds,2B_Chemicals-other,,TON,426.9 +ND,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3311.11903 +ND,Volatile Organic Compounds,2D3d_Coating-application,,TON,2597.383072 +ND,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,570.3353142 +ND,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,4.491 +ND,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,672.792289 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3234.744513 +ND,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2408.584473 +ND,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,804.5123356 +ND,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,174.02 +ND,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,30.05672783 +ND,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,415.1516121 +ND,Volatile Organic Compounds,3B2_Manure-sheep,,TON,19.60854641 +ND,Volatile Organic Compounds,3B3_Manure-swine,,TON,81.4597707 +ND,Volatile Organic Compounds,3B4_Manure-other,,TON,50.7925563 +ND,Volatile Organic Compounds,3B4_Manure-poultry,,TON,28.23844335 +ND,Volatile Organic Compounds,3B4d_Manure-goats,,TON,2.92810716 +ND,Volatile Organic Compounds,3Dc_Other-farm,,TON,31.8 +ND,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,12016.75882 +ND,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2945.334 +ND,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,24.75 +ND,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,114.08328 +ND,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.535190287 +ND,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,47.46055238 +ND,Volatile Organic Compounds,5C_Open-burning-residential,,TON,84.9188398 +ND,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.56954852 +ND,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,10.010875 +ND,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,50.8 +NE,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.2644055 +NE,Ammonia,1A1a_Public-Electricity,hard_coal,TON,380.1517831 +NE,Ammonia,1A1a_Public-Electricity,natural_gas,TON,4.2458411 +NE,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.66955786 +NE,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.162681759 +NE,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,1.080689961 +NE,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.058448134 +NE,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,9.871041656 +NE,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.016162798 +NE,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,350.8138048 +NE,Ammonia,1A2c_Chemicals,natural_gas,TON,3.9100002 +NE,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NE,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.95463482 +NE,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.087834853 +NE,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,13.0245977 +NE,Ammonia,1A3bii_Road-LDV,light_oil,TON,591.4387119 +NE,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.045915574 +NE,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.47734608 +NE,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.733656762 +NE,Ammonia,1A3biii_Road-bus,light_oil,TON,0.627180408 +NE,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.001660134 +NE,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,36.4357449 +NE,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.469182306 +NE,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.87197546 +NE,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.612932554 +NE,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.773662169 +NE,Ammonia,1A3c_Rail,diesel_oil,TON,23.808678 +NE,Ammonia,1A3c_Rail,light_oil,TON,0.01091506 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.895519887 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.355682796 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.03 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.713223596 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.541330186 +NE,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.130117477 +NE,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.111468806 +NE,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.752204564 +NE,Ammonia,1A4bi_Residential-stationary,biomass,TON,78.6277345 +NE,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.272999986 +NE,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.02025 +NE,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,342.093032 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,18.31835488 +NE,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.493278614 +NE,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006806972 +NE,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.532838143 +NE,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.138746245 +NE,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.005391204 +NE,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0.0000001 +NE,Ammonia,2A1_Cement-production,,TON,0.5506 +NE,Ammonia,2A6_Other-minerals,,TON,0 +NE,Ammonia,2B_Chemicals-other,Other_Fuel,TON,158.73 +NE,Ammonia,2C7_Other-metal,Other_Fuel,TON,79.62 +NE,Ammonia,2D3d_Coating-application,,TON,0.0000001 +NE,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,2.0005E-07 +NE,Ammonia,2H2_Ethanol Production,,TON,7.2200003 +NE,Ammonia,2H2_Food-and-beverage,,TON,2.4512105 +NE,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,333.5259093 +NE,Ammonia,3B1a_Cattle-dairy,,TON,2111.082791 +NE,Ammonia,3B1b_Cattle-non-dairy,,TON,75494.9386 +NE,Ammonia,3B2_Manure-sheep,,TON,308.2404281 +NE,Ammonia,3B3_Manure-swine,,TON,37412.52427 +NE,Ammonia,3B4_Manure-other,,TON,905.400051 +NE,Ammonia,3B4_Manure-poultry,,TON,1712.095131 +NE,Ammonia,3B4d_Manure-goats,,TON,120.450017 +NE,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,29435 +NE,Ammonia,3Dc_Other-farm,,TON,0.8500001 +NE,Ammonia,3F_Ag-res-on-field,,TON,1616.234 +NE,Ammonia,5B_Compost-biogas,Other_Fuel,TON,40.982128 +NE,Ammonia,5D1_Wastewater-domestic,,TON,304.3684264 +NE,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,726.9761 +NE,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,11838.8 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82516.51615 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,93454.75251 +NE,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5348.804656 +NE,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,219.7346572 +NE,Carbon Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1.01391E-07 +NE,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,230588.2485 +NE,Carbon Dioxide,1A2c_Chemicals,natural_gas,TON,51292 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,363720.7106 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,7197.564998 +NE,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.50831059 +NE,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,160802.7855 +NE,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,399451.0097 +NE,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,7771091.265 +NE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,92162.63383 +NE,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,685734.8258 +NE,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,40447.74192 +NE,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,17474.93598 +NE,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,60.3904899 +NE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2235191.157 +NE,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,33428.58633 +NE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1174333.056 +NE,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,40776.34253 +NE,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31292.42708 +NE,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,13744.33925 +NE,Carbon Dioxide,1A3c_Rail,light_oil,TON,849.9524789 +NE,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,13632.80483 +NE,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.007091402 +NE,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22203.61708 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66623.60148 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,92038.93148 +NE,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4294.238033 +NE,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,13720.10144 +NE,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,130718.3504 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2255070.37 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,37230.14572 +NE,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5367.721453 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,835.21132 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,38228.06916 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17085.86496 +NE,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,73364.73999 +NE,Carbon Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,30.64 +NE,Carbon Dioxide,2A6_Other-minerals,,TON,48028.32 +NE,Carbon Dioxide,2B_Chemicals-other,,TON,292967 +NE,Carbon Dioxide,2C_Iron-steel-alloy,,TON,3.8068 +NE,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,98.877 +NE,Carbon Dioxide,2D3d_Coating-application,,TON,0.0438 +NE,Carbon Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,20.6100001 +NE,Carbon Dioxide,2H2_Food-and-beverage,,TON,1085.15 +NE,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,30308164.84 +NE,Carbon Dioxide,3Dc_Other-farm,,TON,3972.12 +NE,Carbon Dioxide,5A_Solid-waste-disposal,,TON,38200.89 +NE,Carbon Dioxide,5C_Incineration,biomass,TON,34.7040001 +NE,Carbon Monoxide,11C_Other-natural,,TON,58179.8386 +NE,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,24.414958 +NE,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,12301.8311 +NE,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.2800003 +NE,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,437.1361319 +NE,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,29.3000003 +NE,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.2 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,121.3949235 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2249.514863 +NE,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,79.74829417 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,66.99929376 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,150.3228139 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1730.099917 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.04514E-07 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.144357883 +NE,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5313.275669 +NE,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,26.3989003 +NE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.17 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1311.749304 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1460.325103 +NE,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.187110253 +NE,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4026.471854 +NE,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4064.129831 +NE,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,149083.8644 +NE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,687.328002 +NE,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15504.83239 +NE,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,109.0066936 +NE,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,973.0420485 +NE,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.367069985 +NE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1874.460101 +NE,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,590.1113737 +NE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1379.169192 +NE,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1077.986458 +NE,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1259.676604 +NE,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,7654.15902 +NE,Carbon Monoxide,1A3c_Rail,light_oil,TON,190.0077494 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,141.3788352 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.849305351 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.180008217 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1193.490489 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,215.0077046 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18955.11597 +NE,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,79.71403146 +NE,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,40.58188457 +NE,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,29652.08886 +NE,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,11272.04981 +NE,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.364999984 +NE,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250001 +NE,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,796.2121991 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7434.763768 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8027.802265 +NE,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,72.71876831 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.6905875 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,7306.104252 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,33.74939139 +NE,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7662.234541 +NE,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,22.2900003 +NE,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,165.8104477 +NE,Carbon Monoxide,2A1_Cement-production,,TON,75 +NE,Carbon Monoxide,2A6_Other-minerals,,TON,4364.44 +NE,Carbon Monoxide,2B_Chemicals-other,,TON,41.8300003 +NE,Carbon Monoxide,2C6_Zinc-production,,TON,0.0000001 +NE,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.0757503 +NE,Carbon Monoxide,2C7a_Copper-production,,TON,0.0000001 +NE,Carbon Monoxide,2D3d_Coating-application,,TON,1.0005E-07 +NE,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.1485002 +NE,Carbon Monoxide,2H2_Ethanol Production,,TON,135.4946602 +NE,Carbon Monoxide,2H2_Food-and-beverage,,TON,528.763322 +NE,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,2069.917179 +NE,Carbon Monoxide,3Dc_Other-farm,,TON,22.5903005 +NE,Carbon Monoxide,3F_Ag-res-on-field,,TON,7024.62 +NE,Carbon Monoxide,5A_Solid-waste-disposal,,TON,286.8851342 +NE,Carbon Monoxide,5C_Incineration,biomass,TON,24.78084604 +NE,Carbon Monoxide,5C_Open-burning-commercial,,TON,1.3 +NE,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3014.014334 +NE,Carbon Monoxide,5C_Open-burning-residential,,TON,2099.260968 +NE,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,43.13141788 +NE,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,30.7200001 +NE,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NE,Methane,1A1a_Public-Electricity,diesel_oil,TON,1.1877 +NE,Methane,1A1a_Public-Electricity,natural_gas,TON,0.3686002 +NE,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.779875152 +NE,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.51041821 +NE,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,34.32612263 +NE,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.00662568 +NE,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,1.07232E-07 +NE,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,22.07369431 +NE,Methane,1A2c_Chemicals,natural_gas,TON,0.97 +NE,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,13.63837255 +NE,Methane,1A2g_Construction_and_Mining,light_oil,TON,5.215180786 +NE,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.081440724 +NE,Methane,1A3bii_Road-LDV,diesel_oil,TON,26.61291375 +NE,Methane,1A3bii_Road-LDV,light_oil,TON,425.4780669 +NE,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.732712795 +NE,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,51.74644557 +NE,Methane,1A3biii_Road-bus,diesel_oil,TON,1.717553118 +NE,Methane,1A3biii_Road-bus,light_oil,TON,3.337681765 +NE,Methane,1A3biii_Road-bus,natural_gas,TON,0.246231926 +NE,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,150.4723414 +NE,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.08243029 +NE,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,33.56088418 +NE,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.06396111 +NE,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.991045821 +NE,Methane,1A3c_Rail,diesel_oil,TON,0.620407749 +NE,Methane,1A3c_Rail,light_oil,TON,0.566941199 +NE,Methane,1A4ai_Commercial-institutional-stationary,biomass,TON,3.961659069 +NE,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.004001676 +NE,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,219.0146198 +NE,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.095100459 +NE,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,62.69279452 +NE,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,48.7946574 +NE,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.479182154 +NE,Methane,1A4bi_Residential-mobile,light_oil,TON,115.1410115 +NE,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,61.74309314 +NE,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,35.62523879 +NE,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,29.5659413 +NE,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.034772431 +NE,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,44.94644166 +NE,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.482112942 +NE,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,70.48425205 +NE,Methane,2A6_Other-minerals,,TON,0.9037 +NE,Methane,2C7_Other-metal,Other_Fuel,TON,0.002 +NE,Methane,2D3i_Other-solvent-use,Other_Fuel,TON,482.02 +NE,Methane,2H2_Food-and-beverage,,TON,0.0206 +NE,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,44727.79524 +NE,Methane,3Dc_Other-farm,,TON,0.07434 +NE,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,7267 +NE,Methane,5C_Incineration,biomass,TON,0.01709 +NE,Nitrogen Oxides,11C_Other-natural,,TON,50855.0613 +NE,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,47.1761259 +NE,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,20419.61 +NE,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,3.3000004 +NE,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,570.476942 +NE,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,16.2200003 +NE,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.81 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,345.6202653 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,222.6535562 +NE,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,13.77034934 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,25.98096833 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,677.470583 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,3935.843207 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.600951668 +NE,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,9090.451073 +NE,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,13.9906003 +NE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.7 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2152.996306 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,19.70434586 +NE,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.021469762 +NE,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,929.4869096 +NE,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1385.693383 +NE,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,17553.99954 +NE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,273.79442 +NE,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1869.303566 +NE,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,270.9194441 +NE,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,109.530551 +NE,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.172836065 +NE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6602.33771 +NE,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,71.578515 +NE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4356.216494 +NE,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,104.984302 +NE,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,64.97262035 +NE,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,38926.45971 +NE,Nitrogen Oxides,1A3c_Rail,light_oil,TON,2.017257102 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,67.10894801 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.15655653 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.860168293 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1573.992521 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,436.8906205 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,245.8043225 +NE,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,19.19044881 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,101.5670637 +NE,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,281.7312619 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,204.1657685 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4.914000166 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.364500001 +NE,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2006.177599 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17280.35108 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,209.8742231 +NE,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,12.60539614 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.3026839 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,80.58762082 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,170.2717711 +NE,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,514.153171 +NE,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,8.9100011 +NE,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,114.6103947 +NE,Nitrogen Oxides,2A1_Cement-production,,TON,1502 +NE,Nitrogen Oxides,2A6_Other-minerals,,TON,815.8300001 +NE,Nitrogen Oxides,2B_Chemicals-other,,TON,202.1163002 +NE,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0.0111 +NE,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.0009 +NE,Nitrogen Oxides,2C6_Zinc-production,,TON,0.0000002 +NE,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,2.1957002 +NE,Nitrogen Oxides,2D3d_Coating-application,,TON,5E-11 +NE,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.1768001 +NE,Nitrogen Oxides,2H2_Ethanol Production,,TON,167.4200003 +NE,Nitrogen Oxides,2H2_Food-and-beverage,,TON,178.7004295 +NE,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,1059.169925 +NE,Nitrogen Oxides,3Dc_Other-farm,,TON,69.0960904 +NE,Nitrogen Oxides,3F_Ag-res-on-field,,TON,310.966 +NE,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,16.99 +NE,Nitrogen Oxides,5C_Incineration,biomass,TON,216.248233 +NE,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.12 +NE,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,73.15568672 +NE,Nitrogen Oxides,5C_Open-burning-residential,,TON,148.1831257 +NE,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.387632258 +NE,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,3.8700001 +NE,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NE,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.255 +NE,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.1176621 +NE,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.001658162 +NE,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1989.735461 +NE,Nitrous Oxide,1A2c_Chemicals,natural_gas,TON,0.097 +NE,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.152360816 +NE,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,327.447897 +NE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.302568459 +NE,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.81147018 +NE,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.11151662 +NE,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.684581864 +NE,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.004947895 +NE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.321366889 +NE,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.80207837 +NE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.795521889 +NE,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.852407744 +NE,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.612459234 +NE,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.492508399 +NE,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.010051192 +NE,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.75932051 +NE,Nitrous Oxide,1B2av_Fugitive-petr-distr,light_oil,TON,10.0200002 +NE,Nitrous Oxide,2A6_Other-minerals,,TON,0.10978 +NE,Nitrous Oxide,2C7_Other-metal,Other_Fuel,TON,0.007 +NE,Nitrous Oxide,2H2_Food-and-beverage,,TON,0.0298 +NE,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1124.721226 +NE,Nitrous Oxide,3Dc_Other-farm,,TON,0.02499 +NE,Nitrous Oxide,5A_Solid-waste-disposal,,TON,0.3808 +NE,Nitrous Oxide,5C_Incineration,biomass,TON,0.00331 +NE,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.873713522 +NE,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,771.8383437 +NE,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.0900004 +NE,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,34.03692368 +NE,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,1.118649115 +NE,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1.914610985 +NE,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,53.76762632 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,47.5399982 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,3966.332745 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030174053 +NE,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,165.2789897 +NE,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.653380376 +NE,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0038 +NE,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,246084.3177 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,126.7059788 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.562124664 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.356011211 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.236120225 +NE,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1541.661306 +NE,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.294840005 +NE,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.021850001 +NE,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.982500054 +NE,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000001 +NE,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.810569451 +NE,PM10 Filterable,2A1_Cement-production,,TON,14.5243988 +NE,PM10 Filterable,2A2_Lime-production,,TON,24.0304 +NE,PM10 Filterable,2A5b_Construction-and-demolition,,TON,14168.60765 +NE,PM10 Filterable,2A6_Other-minerals,,TON,2092.365138 +NE,PM10 Filterable,2B_Chemicals-other,,TON,25.30937487 +NE,PM10 Filterable,2C_Iron-steel-alloy,,TON,19.386805 +NE,PM10 Filterable,2C6_Zinc-production,,TON,0.71 +NE,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,72.01419863 +NE,PM10 Filterable,2C7a_Copper-production,,TON,10.5677742 +NE,PM10 Filterable,2D3d_Coating-application,,TON,20.9537003 +NE,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,2.8094645 +NE,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,8.721856 +NE,PM10 Filterable,2H2_Ethanol Production,,TON,39.2466425 +NE,PM10 Filterable,2H2_Food-and-beverage,,TON,495.4402807 +NE,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1059.015263 +NE,PM10 Filterable,2I_Wood-processing,,TON,0.21 +NE,PM10 Filterable,3B1a_Cattle-dairy,,TON,447.6322095 +NE,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,90237.8748 +NE,PM10 Filterable,3Dc_Other-farm,,TON,94573.12315 +NE,PM10 Filterable,5A_Solid-waste-disposal,,TON,63.4250001 +NE,PM10 Filterable,5C_Incineration,biomass,TON,12.86393834 +NE,PM10 Filterable,5C_Open-burning-commercial,,TON,0.26 +NE,PM10 Filterable,5C_Open-burning-land-clearing,,TON,373.0940473 +NE,PM10 Filterable,5C_Open-burning-residential,,TON,792.3056286 +NE,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.6338747 +NE,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.046775068 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,825.811984 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.102600456 +NE,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,71.11952947 +NE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,1.093228469 +NE,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.864866686 +NE,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,19.24469014 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.56148002 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.644392713 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,55.62366065 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,50.67459453 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,4329.4185 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.064652166 +NE,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,369.6251627 +NE,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.68350882 +NE,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,188.7681451 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,11.21985517 +NE,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000325905 +NE,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,94.84496957 +NE,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,246084.3177 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,73.56723388 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,893.2641703 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.19501164 +NE,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,82.6213721 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,20.35680489 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.685470148 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.011654645 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,328.4878117 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.899935033 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,256.5522608 +NE,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,5.250937722 +NE,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.383146324 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1147.156201 +NE,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.108161365 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,131.0157404 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.294765245 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.40001799 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.58886056 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35.33146889 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,24.0886079 +NE,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.544032588 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.752940317 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,128.5977757 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1605.652969 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.649740005 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048199999 +NE,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.34730503 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1302.4635 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.558362921 +NE,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.659645915 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.83924759 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,31.25681409 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.687481653 +NE,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,21.74252575 +NE,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000001 +NE,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.633892465 +NE,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,15.53769852 +NE,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,24.0304 +NE,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,14168.60765 +NE,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2212.113155 +NE,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,37.08274043 +NE,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,28.157436 +NE,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.246 +NE,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,76.61981463 +NE,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,11.95503492 +NE,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,20.9537003 +NE,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,2.8094645 +NE,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,8.724936 +NE,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,80.1060897 +NE,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1313.993342 +NE,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1100.763309 +NE,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.21 +NE,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,447.6322095 +NE,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,90237.8748 +NE,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,94616.91139 +NE,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1258.376 +NE,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,103.1450001 +NE,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,14.05842734 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.4026936 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,373.0940473 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,792.3056286 +NE,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.6338747 +NE,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0000001 +NE,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NE,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.804168533 +NE,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,408.2352534 +NE,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.090000292 +NE,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,34.03692342 +NE,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,0.425967834 +NE,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1.805292249 +NE,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,46.35693897 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.74783515 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,482.8286333 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.015098842 +NE,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,155.0461492 +NE,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.653380376 +NE,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0035625 +NE,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,25597.60596 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,104.428609 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.405180846 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.132205617 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.612278116 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1516.046237 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.226589995 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.016799999 +NE,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.19037492 +NE,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,6.66667E-09 +NE,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.810569451 +NE,PM2.5 Filterable,2A1_Cement-production,,TON,7.13331723 +NE,PM2.5 Filterable,2A2_Lime-production,,TON,7.0154 +NE,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1416.860765 +NE,PM2.5 Filterable,2A6_Other-minerals,,TON,366.1317654 +NE,PM2.5 Filterable,2B_Chemicals-other,,TON,23.08327487 +NE,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,18.67622529 +NE,PM2.5 Filterable,2C6_Zinc-production,,TON,0.633288 +NE,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,43.90859775 +NE,PM2.5 Filterable,2C7a_Copper-production,,TON,1.184732439 +NE,PM2.5 Filterable,2D3d_Coating-application,,TON,20.70284692 +NE,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.724149926 +NE,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3.077795997 +NE,PM2.5 Filterable,2H2_Ethanol Production,,TON,35.9866425 +NE,PM2.5 Filterable,2H2_Food-and-beverage,,TON,169.4361388 +NE,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,491.4062528 +NE,PM2.5 Filterable,2I_Wood-processing,,TON,0.0687931 +NE,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,93.03998309 +NE,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,18755.86086 +NE,PM2.5 Filterable,3Dc_Other-farm,,TON,18376.22438 +NE,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,15.4560002 +NE,PM2.5 Filterable,5C_Incineration,biomass,TON,11.83938356 +NE,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.16 +NE,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,340.173948 +NE,PM2.5 Filterable,5C_Open-burning-residential,,TON,725.5851613 +NE,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,11.28348768 +NE,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.402229979 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,462.2089037 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.102600348 +NE,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,69.93902931 +NE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.428993656 +NE,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.727101522 +NE,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.66687589 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.38946991 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.644392713 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,48.17875439 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,46.83418709 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,828.5029408 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.049647141 +NE,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,349.4418834 +NE,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.68350882 +NE,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0097625 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,183.1051123 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,10.32839474 +NE,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000325905 +NE,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,82.46067261 +NE,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,25597.60596 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,55.26146716 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,412.9289938 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.59879301 +NE,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,39.76293068 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,14.867202 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.699897647 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.003731281 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,218.9992824 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.479763188 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,181.6000643 +NE,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.307514793 +NE,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.239539092 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1112.726498 +NE,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.099700766 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,108.7383062 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.127827011 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.176209962 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.96509153 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,34.27152325 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,22.21381093 +NE,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.544032588 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,6.550353108 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,118.3149747 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1580.037899 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.581490012 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.04315 +NE,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,8.555180516 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1263.389732 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,6.034160621 +NE,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.659645915 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.81407025 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,28.75664107 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.576856728 +NE,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,20.00311928 +NE,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,6.66667E-09 +NE,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.633892465 +NE,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,8.146616651 +NE,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,7.0154 +NE,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1416.860765 +NE,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,485.8797826 +NE,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,34.85664043 +NE,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,27.44685629 +NE,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,3.169288 +NE,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,48.51421419 +NE,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.571993158 +NE,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,20.70284692 +NE,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.724149926 +NE,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,3.080875997 +NE,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,76.8460897 +NE,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,982.1524756 +NE,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,534.4642987 +NE,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.0687931 +NE,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,93.03998309 +NE,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,18755.86086 +NE,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,18417.22212 +NE,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,677.798 +NE,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,55.1760002 +NE,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.03387256 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.3026936 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,340.173948 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,725.5851613 +NE,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,11.28348768 +NE,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0000001 +NE,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NE,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1.1454248 +NE,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,50756.2 +NE,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.0000005 +NE,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,126.4343573 +NE,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,12.2059583 +NE,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.65275476 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.54315513 +NE,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.029980562 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2.735927121 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,42.10676943 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3458.294454 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.149146489 +NE,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,135.9342107 +NE,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,5.5298743 +NE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,3.097153646 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.109828207 +NE,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.40297E-05 +NE,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,119.864171 +NE,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.465889473 +NE,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,124.5287575 +NE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.791797365 +NE,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.99675543 +NE,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.351535878 +NE,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.279482404 +NE,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000319739 +NE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18.91666846 +NE,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.53297849 +NE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.0411401 +NE,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.650199615 +NE,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.49482369 +NE,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,26.82768515 +NE,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.013705442 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,5.887630758 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.165961686 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.590040532 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.224701236 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.564030071 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.436223068 +NE,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.02406183 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.119891848 +NE,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.14163442 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,41.8410245 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.938300036 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.00342325 +NE,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,11.94030429 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,19.56109935 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.611575721 +NE,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.030088465 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.007262308 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.627023255 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.157066085 +NE,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.205383727 +NE,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.03 +NE,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.031234582 +NE,Sulfur Dioxide,2A1_Cement-production,,TON,151 +NE,Sulfur Dioxide,2A6_Other-minerals,,TON,606.6076002 +NE,Sulfur Dioxide,2B_Chemicals-other,,TON,0.9580003 +NE,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0.0207 +NE,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.0018 +NE,Sulfur Dioxide,2C6_Zinc-production,,TON,0.0000001 +NE,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0380001 +NE,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0000269 +NE,Sulfur Dioxide,2D3d_Coating-application,,TON,5E-11 +NE,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.0011001 +NE,Sulfur Dioxide,2H2_Ethanol Production,,TON,10.4523025 +NE,Sulfur Dioxide,2H2_Food-and-beverage,,TON,17.4899756 +NE,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,652.5845621 +NE,Sulfur Dioxide,3Dc_Other-farm,,TON,2.5693402 +NE,Sulfur Dioxide,3F_Ag-res-on-field,,TON,154.3735 +NE,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,6 +NE,Sulfur Dioxide,5C_Incineration,biomass,TON,222.3901424 +NE,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0.01 +NE,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,30.35960994 +NE,Sulfur Dioxide,5C_Open-burning-residential,,TON,24.6971878 +NE,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.292677494 +NE,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0000001 +NE,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NE,Volatile Organic Compounds,11C_Other-natural,,TON,168212.6926 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.2391665 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,393.27481 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.0600013 +NE,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,34.3145017 +NE,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,270.8330809 +NE,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,54.33124975 +NE,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.02 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,22.86458385 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,68.19470309 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.420026056 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,2.188011367 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,45.80385342 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,20.21441646 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.0352E-07 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.024410314 +NE,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,651.7703288 +NE,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,54.8253202 +NE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0 +NE,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,238.2206715 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,99.54175284 +NE,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.017604432 +NE,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,439.8451654 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,439.1763177 +NE,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,13735.25583 +NE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,77.91291548 +NE,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1403.489431 +NE,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,28.9849297 +NE,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,73.9136052 +NE,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.030886261 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,417.8642377 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,25.50219075 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,282.8557142 +NE,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,56.24698298 +NE,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,346.2033678 +NE,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1827.657286 +NE,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,4.812468484 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.004855791 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.293434473 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.060001321 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NE,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,85.17799725 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,48.2986071 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,655.4632673 +NE,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.54757862 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,9.555530711 +NE,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1940.364293 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1565.606147 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.194649004 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.0142 +NE,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,109.453991 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1447.30271 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,334.6499819 +NE,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.391049673 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.47290052 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1062.878876 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.962046228 +NE,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1646.869168 +NE,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NE,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,302.4622383 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,118.3146524 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,338.4892024 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2871.862234 +NE,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3232.669692 +NE,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,109.2492359 +NE,Volatile Organic Compounds,2A1_Cement-production,,TON,48.1200001 +NE,Volatile Organic Compounds,2A6_Other-minerals,,TON,44.20760401 +NE,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,20.08037284 +NE,Volatile Organic Compounds,2B_Chemicals-other,,TON,728.6225009 +NE,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,2.7800019 +NE,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.0125 +NE,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.0000001 +NE,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,1.4102801 +NE,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.0000001 +NE,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,8416.281518 +NE,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,0.26958 +NE,Volatile Organic Compounds,2D3d_Coating-application,,TON,5231.578019 +NE,Volatile Organic Compounds,2D3e_Degreasing,,TON,1314.941594 +NE,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,6.17099994 +NE,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,3008.02153 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1522.363217 +NE,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4316.245254 +NE,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,2.04 +NE,Volatile Organic Compounds,2H2_Ethanol Production,,TON,205.1343457 +NE,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1044.257803 +NE,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1269.332711 +NE,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,168.8866178 +NE,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,6039.59513 +NE,Volatile Organic Compounds,3B2_Manure-sheep,,TON,24.65923322 +NE,Volatile Organic Compounds,3B3_Manure-swine,,TON,2993.002047 +NE,Volatile Organic Compounds,3B4_Manure-other,,TON,72.4320051 +NE,Volatile Organic Compounds,3B4_Manure-poultry,,TON,136.9676449 +NE,Volatile Organic Compounds,3B4d_Manure-goats,,TON,9.636001371 +NE,Volatile Organic Compounds,3Dc_Other-farm,,TON,107.4399007 +NE,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,9241.598275 +NE,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,1128.864 +NE,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,69.9000003 +NE,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,289.97956 +NE,Volatile Organic Compounds,5C_Incineration,biomass,TON,4.995086974 +NE,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.54 +NE,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,206.6648182 +NE,Volatile Organic Compounds,5C_Open-burning-residential,,TON,154.4787495 +NE,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,10.78285506 +NE,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,161.9115202 +NE,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,0.0000001 +NH,Ammonia,1A1a_Public-Electricity,biomass,TON,10.1531475 +NH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.53 +NH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.167025085 +NH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,74.019695 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.531967318 +NH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.144982995 +NH,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.425328661 +NH,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NH,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,4.84 +NH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,3.03164248 +NH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.151704804 +NH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,4.072379749 +NH,Ammonia,1A3bii_Road-LDV,light_oil,TON,328.9472052 +NH,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.86604858 +NH,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.34600322 +NH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.124573473 +NH,Ammonia,1A3biii_Road-bus,light_oil,TON,0.805929747 +NH,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.10405557 +NH,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.654766124 +NH,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.414626362 +NH,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.8743093 +NH,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,8.813074548 +NH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.4375131 +NH,Ammonia,1A3c_Rail,diesel_oil,TON,0.13070654 +NH,Ammonia,1A3c_Rail,light_oil,TON,0.000875006 +NH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.10623932 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.84 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.20089384 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.08 +NH,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.48 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.232098382 +NH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.490307575 +NH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.145707898 +NH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.894051084 +NH,Ammonia,1A4bi_Residential-stationary,biomass,TON,232.674873 +NH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,73.625993 +NH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2.56035007 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.221273233 +NH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.015489176 +NH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.004692497 +NH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.504575512 +NH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.204335939 +NH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.35776749 +NH,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.0085 +NH,Ammonia,2D3d_Coating-application,,TON,0.01 +NH,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.92910955 +NH,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,3.1495 +NH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.015 +NH,Ammonia,3B1a_Cattle-dairy,,TON,289.677123 +NH,Ammonia,3B1b_Cattle-non-dairy,,TON,38.159668 +NH,Ammonia,3B2_Manure-sheep,,TON,21.7830066 +NH,Ammonia,3B3_Manure-swine,,TON,18.2755737 +NH,Ammonia,3B4_Manure-other,,TON,112.331155 +NH,Ammonia,3B4_Manure-poultry,,TON,73.66091679 +NH,Ammonia,3B4d_Manure-goats,,TON,41.356409 +NH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,668.1 +NH,Ammonia,5B_Compost-biogas,Other_Fuel,TON,28.696929 +NH,Ammonia,5C_Incineration,,TON,0.125194635 +NH,Ammonia,5D1_Wastewater-domestic,,TON,3.0700535 +NH,Ammonia,5D3_Wastewater-commertial,Other_Fuel,TON,2.464 +NH,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,1661739.02 +NH,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,991.2475 +NH,Carbon Dioxide,1A1a_Public-Electricity,light_oil,TON,698.9311 +NH,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,16707.394 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65560.4163 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,84849.97689 +NH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4879.078112 +NH,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,15249.99481 +NH,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2280.378407 +NH,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,12528.73266 +NH,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,31675.01477 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,373472.742 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,12342.58252 +NH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.90332675 +NH,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,151889.7967 +NH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,132297.5302 +NH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5310995.802 +NH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,26617.495 +NH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,261249.0993 +NH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,127699.2157 +NH,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,25310.74712 +NH,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4031.5621 +NH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,342956.3226 +NH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,9456.501889 +NH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,514212.9311 +NH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,223915.5386 +NH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,114165.378 +NH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,1086.14098 +NH,Carbon Dioxide,1A3c_Rail,light_oil,TON,68.4949995 +NH,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,394.322433 +NH,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6506.415 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,28558.2143 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,39959.94165 +NH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1740.87642 +NH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,17936.82524 +NH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,141420.6725 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,27253.8407 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1117.607934 +NH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,47.40995 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,575.426989 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,105170.8917 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25162.863 +NH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,98693.771 +NH,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2890605.336 +NH,Carbon Monoxide,11C_Other-natural,,TON,13902.7468 +NH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1423.120885 +NH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,4.028735 +NH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,33.84875 +NH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,5.030981 +NH,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.328793 +NH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,446.00085 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,97.39115917 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2064.915834 +NH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,72.78078946 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,58.07330066 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,526.6365478 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.166487639 +NH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,225.8952201 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,799.519242 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2507.871457 +NH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.113389564 +NH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2575.758208 +NH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,1050.657021 +NH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,63178.94651 +NH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,198.381563 +NH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3200.460427 +NH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,241.5346617 +NH,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,646.8870757 +NH,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,44.479804 +NH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,319.0455343 +NH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,151.7841121 +NH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,824.7644208 +NH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3689.345835 +NH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4591.3974 +NH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,44.80532688 +NH,Carbon Monoxide,1A3c_Rail,light_oil,TON,15.04754997 +NH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,32.99613794 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,231.994417 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,697.8512753 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.08232581 +NH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,456.0173759 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,103.047234 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8194.505994 +NH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,37.8982767 +NH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,49.75176242 +NH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,31767.47231 +NH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,32948.8296 +NH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,368.11 +NH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,379.03 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,66.4171907 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,309.5227117 +NH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.60594302 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.32032536 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,10830.34682 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,49.8176 +NH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,10492.7654 +NH,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,1.9785248 +NH,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,23.87206 +NH,Carbon Monoxide,2H2_Food-and-beverage,,TON,202.6839155 +NH,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,147.3802469 +NH,Carbon Monoxide,5C_Incineration,,TON,22.99017387 +NH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,12621.5034 +NH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,224.607718 +NH,Methane,1A1a_Public-Electricity,biomass,TON,123.30511 +NH,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.054897 +NH,Methane,1A1a_Public-Electricity,light_oil,TON,0.028233 +NH,Methane,1A1a_Public-Electricity,natural_gas,TON,0.585413 +NH,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.35540746 +NH,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.447463953 +NH,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,31.13247975 +NH,Methane,1A2_Industrial_fuel_combustion,biomass,TON,1.159644973 +NH,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.091899673 +NH,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.502066181 +NH,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,0.599779674 +NH,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,7.41717828 +NH,Methane,1A2g_Construction_and_Mining,light_oil,TON,9.169597604 +NH,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.081792538 +NH,Methane,1A3bii_Road-LDV,diesel_oil,TON,15.18456173 +NH,Methane,1A3bii_Road-LDV,light_oil,TON,211.1290118 +NH,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.20906289 +NH,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.47962066 +NH,Methane,1A3biii_Road-bus,diesel_oil,TON,4.093841771 +NH,Methane,1A3biii_Road-bus,light_oil,TON,1.254404812 +NH,Methane,1A3biii_Road-bus,natural_gas,TON,37.1911155 +NH,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18.11909477 +NH,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.192166662 +NH,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,27.1378 +NH,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,5.807551871 +NH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.46857 +NH,Methane,1A3c_Rail,diesel_oil,TON,0.049225695 +NH,Methane,1A3c_Rail,light_oil,TON,0.045701069 +NH,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0158985 +NH,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.1231 +NH,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.94752759 +NH,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,27.68690703 +NH,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.2556261 +NH,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.613770864 +NH,Methane,1A4bi_Residential-mobile,light_oil,TON,123.8467629 +NH,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.611101607 +NH,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.189738185 +NH,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.23441826 +NH,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.023150854 +NH,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,89.57307844 +NH,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.71117514 +NH,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,96.0988402 +NH,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,13972.40453 +NH,Nitrogen Oxides,11C_Other-natural,,TON,600.16152 +NH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,717.60067 +NH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,12.563114 +NH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,509.46 +NH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,46.026 +NH,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,8.676485 +NH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,135.777297 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,271.9640653 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,205.4007024 +NH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12.52901302 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,10.97665637 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2435.80096 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.62314951 +NH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,295.3505509 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1643.49442 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,34.86816751 +NH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.022261522 +NH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,546.1760918 +NH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,351.3933128 +NH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,6030.946227 +NH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,75.856394 +NH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,314.150933 +NH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,671.8943289 +NH,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,76.15710872 +NH,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,28.1150237 +NH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1016.739648 +NH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,21.4646186 +NH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1763.173443 +NH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,444.1565542 +NH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,241.536009 +NH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,319.21199 +NH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.169789469 +NH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,228.8348072 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,179.6157459 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3029.375828 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,154.7066815 +NH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,880.9173983 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,198.647268 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,114.5860403 +NH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9.3005372 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,129.248498 +NH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,309.9287456 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,504.9546908 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1325.28 +NH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1156.608 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,163.5103993 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.685649295 +NH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.10463381 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.66016218 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,231.6324981 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,250.19124 +NH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,693.57614 +NH,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,2.3553875 +NH,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,1.595904 +NH,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,24.629039 +NH,Nitrogen Oxides,5C_Incineration,,TON,342.0674952 +NH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,306.347135 +NH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,12.4336414 +NH,Nitrous Oxide,1A1a_Public-Electricity,biomass,TON,61.652556 +NH,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.0107131 +NH,Nitrous Oxide,1A1a_Public-Electricity,light_oil,TON,0.005509 +NH,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.115423 +NH,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,0.563238494 +NH,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.017759768 +NH,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.099390563 +NH,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.058755175 +NH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.405612347 +NH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,150.5021166 +NH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.095644586 +NH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8.627495075 +NH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.234085307 +NH,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.439144237 +NH,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.174950523 +NH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.449000314 +NH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.1797102 +NH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.35204765 +NH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.158439649 +NH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.14408355 +NH,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.0031644 +NH,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.011951 +NH,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,36.99688087 +NH,Nitrous Oxide,5A_Solid-waste-disposal,Other_Fuel,TON,0.573386 +NH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,65.776778 +NH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.205589 +NH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,3.467242 +NH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.117731 +NH,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.049263 +NH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,21.33534 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,10.04491405 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,169.2451981 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.481110756 +NH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,8.039145027 +NH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,7958.52 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,138.2988901 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,218.8415319 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.3400069 +NH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.100259071 +NH,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,4299.295686 +NH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,79.51 +NH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.904 +NH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1551.393689 +NH,PM10 Filterable,2A6_Other-minerals,,TON,914.2591773 +NH,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,22.434148 +NH,PM10 Filterable,2H2_Food-and-beverage,,TON,39.81397185 +NH,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,46.47432 +NH,PM10 Filterable,3B1a_Cattle-dairy,,TON,102.1697 +NH,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,117.933645 +NH,PM10 Filterable,3Dc_Other-farm,,TON,1169.589683 +NH,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,6.721682 +NH,PM10 Filterable,5C_Incineration,,TON,12.22919591 +NH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1562.37049 +NH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,76.206184 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,161.843134 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.723287 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,33.668687 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.627025 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.131748 +NH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,43.962682 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.55633992 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.669862424 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.584660577 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,11.2744987 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,177.2536518 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.272652984 +NH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,22.55474019 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,132.059459 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.5944901 +NH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000226291 +NH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,41.89401193 +NH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,7958.52 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,20.79613733 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,525.841871 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.8247645 +NH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.60489646 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,36.50567728 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.151867031 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.83759679 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,65.34586233 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.068649019 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,157.736904 +NH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,24.62338102 +NH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.1377074 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,10.20279786 +NH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.008718525 +NH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.78177562 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,144.1718901 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,239.5083625 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,36.03118869 +NH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.96895439 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,17.0885053 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.45541749 +NH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.22020363 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,8.218137204 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,140.3976269 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4507.666097 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,175.23 +NH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.908 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.80585089 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,2.88058742 +NH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005807985 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.637349461 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,104.7564367 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.4648486 +NH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,31.8549252 +NH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1551.393689 +NH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,915.9398203 +NH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,42.181052 +NH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,528.8069443 +NH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,46.47432 +NH,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,102.1697 +NH,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,117.933645 +NH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,1169.589683 +NH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,15.136248 +NH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,19.27623391 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1562.37049 +NH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,76.206184 +NH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,57.736222 +NH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.048537 +NH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1.797209 +NH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.076619 +NH,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.049263 +NH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,21.33534 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8.636367384 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,167.044916 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.045238532 +NH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,7.560472122 +NH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,1805.9 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,119.2751647 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,216.0003902 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,20.76254233 +NH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.434538764 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,4284.478462 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,61.11 +NH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.031 +NH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,155.1453689 +NH,PM2.5 Filterable,2A6_Other-minerals,,TON,137.2194013 +NH,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,22.434148 +NH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.553021639 +NH,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,46.47432 +NH,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,21.2358908 +NH,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,24.512405 +NH,PM2.5 Filterable,3Dc_Other-farm,,TON,232.4817988 +NH,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,6.721682 +NH,PM2.5 Filterable,5C_Incineration,,TON,11.8370779 +NH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1424.51425 +NH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,58.75898 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,153.80258 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.566235 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,31.998654 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.585913 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.131748 +NH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,43.962682 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.08882753 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.505458892 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.584660577 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9.865795953 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,175.0638123 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,5.83546139 +NH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,22.07310016 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,128.097681 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,18.03643486 +NH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000226291 +NH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,36.57029209 +NH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1805.9 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,13.93304924 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,196.9709101 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.41944005 +NH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.041577678 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,24.56421659 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.851354401 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.49087667 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,40.23469755 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.384488039 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,102.4514909 +NH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.902535225 +NH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.5139116 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,9.89671398 +NH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.008039361 +NH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.5198577 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,125.1986793 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,236.5556932 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,25.47482296 +NH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.28314816 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.575847 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.641754126 +NH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.22020363 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.97159395 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,129.1725313 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4492.848873 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,156.84 +NH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.087 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.45167288 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,2.650143132 +NH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005807985 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.61822896 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,96.37618634 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.3009033 +NH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,29.3065274 +NH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,155.1453689 +NH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,138.9000443 +NH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,42.181052 +NH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,490.5459684 +NH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,46.47432 +NH,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,21.2358908 +NH,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,24.512405 +NH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,232.4817988 +NH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,15.136248 +NH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,18.8841159 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1424.51425 +NH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,58.75898 +NH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,18.316803 +NH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,5.130042 +NH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,404.774 +NH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,41.268 +NH,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.181322 +NH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,30.84105 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.527159162 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.702933793 +NH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.027347762 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.78160492 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,273.9553337 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,102.8793875 +NH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,21.26194928 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.90976319 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.191731252 +NH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.06414E-05 +NH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,74.96560403 +NH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1.137797751 +NH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,109.8510497 +NH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.22816638 +NH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.402134421 +NH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.098620492 +NH,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.523462967 +NH,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.021345034 +NH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.906232845 +NH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.195248623 +NH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.389389503 +NH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.622617965 +NH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.34042185 +NH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.146755851 +NH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.001119755 +NH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3.79855169 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,9.16 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,701.9419937 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,437.65805 +NH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,46.736758 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.242486917 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.635109152 +NH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.009752914 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.155496685 +NH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.320926191 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,149.3564237 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3136.48 +NH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.674 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.226585835 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.018402725 +NH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000265765 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.005046364 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.731668975 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.231315896 +NH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.61434904 +NH,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,0.0141321 +NH,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.039205 +NH,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,180.6665 +NH,Sulfur Dioxide,5C_Incineration,,TON,51.88094265 +NH,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,127.134053 +NH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.5241238 +NH,Volatile Organic Compounds,11C_Other-natural,,TON,88151.778 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,37.611066 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.043627 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,6.64151 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.764709 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.004698 +NH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,8.097576 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.66316845 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,58.92944265 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.729673649 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.44983176 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,188.503948 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.195483958 +NH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,13.64840232 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,148.192867 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,166.8728021 +NH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.017680479 +NH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,547.0572781 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,122.7681697 +NH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5052.876348 +NH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.1285913 +NH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,225.5859684 +NH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,50.7054808 +NH,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,32.56250286 +NH,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,5.1757566 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,65.61871461 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,5.300701151 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,219.2598118 +NH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,134.4714749 +NH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,619.17499 +NH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,15.97767059 +NH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.335767062 +NH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11.47669317 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,6.571469795 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,237.4970403 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.131703986 +NH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,33.07776492 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,23.131118 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,264.536504 +NH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.24315875 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,11.6735907 +NH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1974.499853 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,4589.005222 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,52.49 +NH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,52.067 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.6340896 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,26.90919987 +NH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.050672427 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.130157196 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3620.224894 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.2070898 +NH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2163.216549 +NH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,141.029615 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,73.28217707 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,384.7697467 +NH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,928.3309377 +NH,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,34.46914308 +NH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3457.69725 +NH,Volatile Organic Compounds,2D3d_Coating-application,,TON,3492.718705 +NH,Volatile Organic Compounds,2D3e_Degreasing,,TON,0 +NH,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,7.242 +NH,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,111.29 +NH,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +NH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,830.24 +NH,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,20.167291 +NH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,141.7286049 +NH,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,1.5949 +NH,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,23.1741694 +NH,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,3.0527735 +NH,Volatile Organic Compounds,3B2_Manure-sheep,,TON,1.7426403 +NH,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.46204591 +NH,Volatile Organic Compounds,3B4_Manure-other,,TON,8.9864919 +NH,Volatile Organic Compounds,3B4_Manure-poultry,,TON,5.892872786 +NH,Volatile Organic Compounds,3B4d_Manure-goats,,TON,3.30851293 +NH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,306.35 +NH,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,67.933256 +NH,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,203.05251 +NH,Volatile Organic Compounds,5C_Incineration,,TON,1.301739668 +NH,Volatile Organic Compounds,5C_Incineration,biomass,TON,17.12146945 +NH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,865.43068 +NH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,56.15193 +NH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,15.4411 +NH,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.089 +NJ,Ammonia,1A1a_Public-Electricity,biomass,TON,1.7627 +NJ,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,5.1852 +NJ,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.5797 +NJ,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.108 +NJ,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.05 +NJ,Ammonia,1A1a_Public-Electricity,natural_gas,TON,492.1611 +NJ,Ammonia,1A1b_Pet-refining,natural_gas,TON,7.6269 +NJ,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.102413787 +NJ,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.703669036 +NJ,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.068943993 +NJ,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,9.942418004 +NJ,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.591240771 +NJ,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.191590651 +NJ,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.0161466 +NJ,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,32.60135359 +NJ,Ammonia,1A2c_Chemicals,natural_gas,TON,0.7223 +NJ,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,19.2272208 +NJ,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.72152275 +NJ,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,17.55756085 +NJ,Ammonia,1A3bii_Road-LDV,light_oil,TON,1862.422413 +NJ,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.18165536 +NJ,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,117.4300375 +NJ,Ammonia,1A3biii_Road-bus,diesel_oil,TON,10.85687575 +NJ,Ammonia,1A3biii_Road-bus,light_oil,TON,0.584314099 +NJ,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.891745352 +NJ,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,61.51066595 +NJ,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.440593545 +NJ,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,51.1222134 +NJ,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,22.22336327 +NJ,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.3365488 +NJ,Ammonia,1A3c_Rail,diesel_oil,TON,2.593334133 +NJ,Ammonia,1A3c_Rail,light_oil,TON,0.000329656 +NJ,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.708801641 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,4.104170588 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,19.31809886 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.106712146 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.03840437 +NJ,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,59.01708898 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.550896958 +NJ,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.356072501 +NJ,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.769223416 +NJ,Ammonia,1A4bi_Residential-mobile,light_oil,TON,9.814643169 +NJ,Ammonia,1A4bi_Residential-stationary,biomass,TON,338.501152 +NJ,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,68.3130011 +NJ,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.080850003 +NJ,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,55.46995926 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.29981075 +NJ,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.015909803 +NJ,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.031115492 +NJ,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.848179139 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.645850875 +NJ,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.266577584 +NJ,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0018 +NJ,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.001 +NJ,Ammonia,2A6_Other-minerals,,TON,3.0497 +NJ,Ammonia,2B_Chemicals-other,,TON,0 +NJ,Ammonia,2C_Iron-steel-alloy,,TON,0.6093 +NJ,Ammonia,2C3_Aluminum-production,,TON,0.095 +NJ,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.0384 +NJ,Ammonia,2D3d_Coating-application,,TON,5.7817 +NJ,Ammonia,2D3h_Printing,,TON,0.2398 +NJ,Ammonia,2H1_Pulp-and-paper,Other_Fuel,TON,0.6683 +NJ,Ammonia,2H2_Food-and-beverage,,TON,5.3291 +NJ,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,468.2394 +NJ,Ammonia,3B1a_Cattle-dairy,,TON,317.8397431 +NJ,Ammonia,3B1b_Cattle-non-dairy,,TON,49.33248482 +NJ,Ammonia,3B2_Manure-sheep,,TON,47.30907142 +NJ,Ammonia,3B3_Manure-swine,,TON,133.4451282 +NJ,Ammonia,3B4_Manure-other,,TON,348.921833 +NJ,Ammonia,3B4_Manure-poultry,,TON,501.6205535 +NJ,Ammonia,3B4d_Manure-goats,,TON,41.5751144 +NJ,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,1035.8 +NJ,Ammonia,3F_Ag-res-on-field,,TON,30.99134958 +NJ,Ammonia,5A_Solid-waste-disposal,,TON,0 +NJ,Ammonia,5B_Compost-biogas,Other_Fuel,TON,201.66577 +NJ,Ammonia,5C_Incineration,,TON,4.1793 +NJ,Ammonia,5C_Incineration,biomass,TON,14.3166 +NJ,Ammonia,5D1_Wastewater-domestic,,TON,33.916063 +NJ,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,3.5889 +NJ,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,1825.5 +NJ,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,153775.2 +NJ,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,31630.3 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,379175.87 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,418652.0331 +NJ,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24090.54706 +NJ,Carbon Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9654.60004 +NJ,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,68020.00916 +NJ,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.100460964 +NJ,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,288763.8903 +NJ,Carbon Dioxide,1A2c_Chemicals,natural_gas,TON,8162.7 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2369053.17 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,58688.62105 +NJ,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,11.91960319 +NJ,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1792880.457 +NJ,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,549640.2337 +NJ,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,28879999.99 +NJ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,158817.9497 +NJ,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2002347.337 +NJ,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,679735.0234 +NJ,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,18141.04038 +NJ,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,33648.1954 +NJ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3806836.547 +NJ,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12036.29461 +NJ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2904885.081 +NJ,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,611654.1918 +NJ,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,180638.4435 +NJ,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,392.905689 +NJ,Carbon Dioxide,1A3c_Rail,light_oil,TON,26.08435407 +NJ,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,91.16551189 +NJ,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,15741.07808 +NJ,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4008.47743 +NJ,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,258813.779 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,190786.3883 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,273851.8351 +NJ,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12189.86713 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,94674.85315 +NJ,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,733172.2632 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,36913.88881 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1189.056864 +NJ,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,115.7828346 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3815.82911 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,61100.47968 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,79533.96489 +NJ,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,308634.3762 +NJ,Carbon Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1 +NJ,Carbon Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,973.6 +NJ,Carbon Dioxide,2A6_Other-minerals,,TON,28764.1 +NJ,Carbon Dioxide,2B_Chemicals-other,Other_Fuel,TON,24344.4 +NJ,Carbon Dioxide,2C3_Aluminum-production,,TON,10298 +NJ,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,389.8 +NJ,Carbon Dioxide,2D3d_Coating-application,,TON,13259.6 +NJ,Carbon Dioxide,2D3h_Printing,,TON,1862.4 +NJ,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,7094 +NJ,Carbon Dioxide,2H2_Food-and-beverage,,TON,7239 +NJ,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,27767716.72 +NJ,Carbon Dioxide,5A_Solid-waste-disposal,,TON,39701.8 +NJ,Carbon Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,4352.4 +NJ,Carbon Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,1355 +NJ,Carbon Monoxide,11C_Other-natural,,TON,11356.84407 +NJ,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,26.43 +NJ,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,64.2358 +NJ,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,545.32 +NJ,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1.225 +NJ,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.18 +NJ,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1695.3321 +NJ,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,204.0403 +NJ,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.24 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,577.7287003 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10332.79252 +NJ,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,353.9230565 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.291038947 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,844.6485084 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,55.51160757 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.391690918 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.110082177 +NJ,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,610.676173 +NJ,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2.119 +NJ,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,7.4465 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4465.9872 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,11932.21811 +NJ,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.517566456 +NJ,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,13725.92529 +NJ,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2654.794528 +NJ,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,321022.4684 +NJ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,745.949799 +NJ,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,24764.83469 +NJ,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1527.185975 +NJ,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,759.8090551 +NJ,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,194.16284 +NJ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3348.162311 +NJ,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,714.2882292 +NJ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3694.16017 +NJ,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,14232.4543 +NJ,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6664.48751 +NJ,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,834.6973417 +NJ,Carbon Monoxide,1A3c_Rail,light_oil,TON,5.673187033 +NJ,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1516.729664 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,553.7539596 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,172.7434555 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.899919461 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.174494399 +NJ,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9212.555407 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,728.291923 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,56644.76083 +NJ,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,278.0362351 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,280.9286433 +NJ,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,165621.7442 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,42968.98306 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,341.56501 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.525000005 +NJ,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4619.144078 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,115.4225734 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,292.274574 +NJ,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.198748885 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,28.3909312 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,12485.73422 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,159.1520526 +NJ,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,33943.40521 +NJ,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0498 +NJ,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,5.6823 +NJ,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,Carbon Monoxide,2A6_Other-minerals,,TON,246.5874 +NJ,Carbon Monoxide,2B_Chemicals-other,,TON,321.7426 +NJ,Carbon Monoxide,2C_Iron-steel-alloy,,TON,712.913 +NJ,Carbon Monoxide,2C3_Aluminum-production,,TON,7.8404 +NJ,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.4264 +NJ,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,10.4965 +NJ,Carbon Monoxide,2D3d_Coating-application,,TON,12.8847 +NJ,Carbon Monoxide,2D3e_Degreasing,,TON,0.629 +NJ,Carbon Monoxide,2D3h_Printing,,TON,4.995 +NJ,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.001 +NJ,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,78.4052 +NJ,Carbon Monoxide,2H2_Food-and-beverage,,TON,1550.527811 +NJ,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,263.303 +NJ,Carbon Monoxide,3Dc_Other-farm,,TON,0 +NJ,Carbon Monoxide,3F_Ag-res-on-field,,TON,1829.93841 +NJ,Carbon Monoxide,5A_Solid-waste-disposal,,TON,142.0976246 +NJ,Carbon Monoxide,5C_Incineration,,TON,90.90044275 +NJ,Carbon Monoxide,5C_Incineration,biomass,TON,286.536511 +NJ,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +NJ,Carbon Monoxide,5C_Open-burning-residential,,TON,90.2828343 +NJ,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,79.7501936 +NJ,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,8.2211 +NJ,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.16 +NJ,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.5874 +NJ,Methane,1A1a_Public-Electricity,natural_gas,TON,1271.1751 +NJ,Methane,1A1b_Pet-refining,natural_gas,TON,0.5743 +NJ,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.338758049 +NJ,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,44.84013279 +NJ,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,149.0554771 +NJ,Methane,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.105897614 +NJ,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.276287606 +NJ,Methane,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NJ,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,166.7921148 +NJ,Methane,1A2c_Chemicals,natural_gas,TON,0.0562 +NJ,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,44.6576736 +NJ,Methane,1A2g_Construction_and_Mining,light_oil,TON,42.38832399 +NJ,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.370125755 +NJ,Methane,1A3bii_Road-LDV,diesel_oil,TON,65.5901852 +NJ,Methane,1A3bii_Road-LDV,light_oil,TON,934.2676425 +NJ,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.81686732 +NJ,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,82.08148963 +NJ,Methane,1A3biii_Road-bus,diesel_oil,TON,26.29214716 +NJ,Methane,1A3biii_Road-bus,light_oil,TON,1.114042419 +NJ,Methane,1A3biii_Road-bus,natural_gas,TON,202.660438 +NJ,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,259.9706427 +NJ,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.168319735 +NJ,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,110.6460848 +NJ,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,18.94686143 +NJ,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.84260393 +NJ,Methane,1A3c_Rail,diesel_oil,TON,0.018013347 +NJ,Methane,1A3c_Rail,light_oil,TON,0.016895013 +NJ,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.523609249 +NJ,Methane,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.076701355 +NJ,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,469.2865894 +NJ,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.76754482 +NJ,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,187.6066452 +NJ,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,197.7480368 +NJ,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.089831007 +NJ,Methane,1A4bi_Residential-mobile,light_oil,TON,635.4275546 +NJ,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.732716764 +NJ,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.260223646 +NJ,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.508120239 +NJ,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.15365357 +NJ,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,76.01537305 +NJ,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.013146409 +NJ,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,309.464945 +NJ,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,6.5029 +NJ,Methane,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0013 +NJ,Methane,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0431 +NJ,Methane,2A6_Other-minerals,,TON,0.5262 +NJ,Methane,2B_Chemicals-other,Other_Fuel,TON,0.2701 +NJ,Methane,2C3_Aluminum-production,,TON,0.196 +NJ,Methane,2C7_Other-metal,Other_Fuel,TON,0.0069 +NJ,Methane,2D3d_Coating-application,,TON,0.2736 +NJ,Methane,2D3h_Printing,,TON,0.0355 +NJ,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,0.134 +NJ,Methane,2H2_Food-and-beverage,,TON,0.1384 +NJ,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,61712.92185 +NJ,Methane,5A_Solid-waste-disposal,,TON,1453.819 +NJ,Methane,5D1_Wastewater-domestic,Other_Fuel,TON,120.6872 +NJ,Nitrogen Oxides,11C_Other-natural,,TON,2044.51535 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,239.34 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,88.3475 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,978.77 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,29.628 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.36 +NJ,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2529.9652 +NJ,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,949.8694 +NJ,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.08 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1686.411584 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,999.6757532 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,60.68263066 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,10.28442965 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,309.401822 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,149.8469384 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.647153755 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.467747526 +NJ,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1414.260847 +NJ,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,5.8061 +NJ,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,6.452 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,9623.68162 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,147.5795711 +NJ,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.104479408 +NJ,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,6195.40634 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,943.5865465 +NJ,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,30690.29832 +NJ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,352.198434 +NJ,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2581.679643 +NJ,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3251.068719 +NJ,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,60.098576 +NJ,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,107.3184328 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10956.38263 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,66.2841109 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9959.7498 +NJ,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1357.057859 +NJ,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,354.79834 +NJ,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6003.411998 +NJ,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.062794845 +NJ,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10681.19531 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,181.1193837 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,436.4536329 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.684266653 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.782911534 +NJ,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9824.701753 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1373.304818 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,770.7407894 +NJ,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,73.8584079 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,721.9213404 +NJ,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1558.245826 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,824.967405 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1013.218342 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.55736007 +NJ,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,10744.85696 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,246.8552738 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.580889971 +NJ,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.24573254 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,30.6354111 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,134.6244963 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,814.0521746 +NJ,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2121.233813 +NJ,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,7.85 +NJ,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,8.0578 +NJ,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,Nitrogen Oxides,2A6_Other-minerals,,TON,295.8562 +NJ,Nitrogen Oxides,2B_Chemicals-other,,TON,62.583 +NJ,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,53.6892 +NJ,Nitrogen Oxides,2C3_Aluminum-production,,TON,11.1545 +NJ,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.5843 +NJ,Nitrogen Oxides,2D3d_Coating-application,,TON,16.1245 +NJ,Nitrogen Oxides,2D3e_Degreasing,,TON,0.749 +NJ,Nitrogen Oxides,2D3h_Printing,,TON,5.6865 +NJ,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.002 +NJ,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,6.8761 +NJ,Nitrogen Oxides,2H2_Food-and-beverage,,TON,15.0319 +NJ,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,409.7618 +NJ,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +NJ,Nitrogen Oxides,3F_Ag-res-on-field,,TON,129.6868773 +NJ,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,49.5583 +NJ,Nitrogen Oxides,5C_Incineration,,TON,888.314228 +NJ,Nitrogen Oxides,5C_Incineration,biomass,TON,1298.655588 +NJ,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +NJ,Nitrogen Oxides,5C_Open-burning-residential,,TON,6.36676652 +NJ,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,4.03220483 +NJ,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,4.3898 +NJ,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.147 +NJ,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.630755965 +NJ,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,743.4510534 +NJ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.542183039 +NJ,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,64.436699 +NJ,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.711901008 +NJ,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.617156385 +NJ,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,2.51451503 +NJ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.71598389 +NJ,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.29935255 +NJ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.60729741 +NJ,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,22.14994239 +NJ,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.9047033 +NJ,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,209.1988811 +NJ,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,0.38624605 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,694.268435 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.019885871 +NJ,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.135707238 +NJ,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,17115.51237 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,712.1730382 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.45734653 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.083616247 +NJ,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.58387163 +NJ,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,5733.308388 +NJ,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,45.13 +NJ,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.069537724 +NJ,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,22.15882202 +NJ,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,PM10 Filterable,2A5b_Construction-and-demolition,,TON,336.74 +NJ,PM10 Filterable,2A6_Other-minerals,,TON,2258.54 +NJ,PM10 Filterable,2H2_Food-and-beverage,,TON,299.5247357 +NJ,PM10 Filterable,3B1a_Cattle-dairy,,TON,52.33444705 +NJ,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,177.6195664 +NJ,PM10 Filterable,3Dc_Other-farm,,TON,2563.349472 +NJ,PM10 Filterable,5C_Incineration,,TON,35.64602312 +NJ,PM10 Filterable,5C_Incineration,biomass,TON,33.65632826 +NJ,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +NJ,PM10 Filterable,5C_Open-burning-residential,,TON,19.75 +NJ,PM10 Filterable,5C_Open-burning-yard-waste,,TON,14.36 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,18.7 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,15.3084 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,69.6 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.86 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.1 +NJ,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,597.5076 +NJ,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,451.2407 +NJ,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,91.04473422 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,48.55890922 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.890992523 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.395724815 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,718.1001901 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,21.21399108 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.457659759 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.046555884 +NJ,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,182.3491895 +NJ,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.1408 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,731.968376 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,93.2774958 +NJ,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001394787 +NJ,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,181.4765064 +NJ,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,17115.51237 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,61.50888418 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2691.070764 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,22.8030135 +NJ,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,180.7343971 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,195.0303631 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.441180577 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,5.96937543 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,694.5193998 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.166076202 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,688.987431 +NJ,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,71.31753317 +NJ,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.35379142 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,173.8205511 +NJ,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003298284 +NJ,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,256.3212389 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,665.1727289 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,117.8054241 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.397007748 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.173255061 +NJ,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,133.8636963 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,124.2069573 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,71.52997424 +NJ,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.543897226 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,47.83170409 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,705.7281502 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5977.602821 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,103.835763 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.159600006 +NJ,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,58.79408076 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,22.23012048 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.624058649 +NJ,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.013960497 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.19194652 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,49.50451091 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.8996548 +NJ,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,109.4392437 +NJ,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0848 +NJ,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.2224 +NJ,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.133 +NJ,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,337.0283541 +NJ,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2386.516734 +NJ,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,36.969 +NJ,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,15.449 +NJ,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,5.4005 +NJ,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.096 +NJ,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,9.3311 +NJ,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,10.9636 +NJ,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,7.6052 +NJ,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.1137 +NJ,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.0001 +NJ,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,20.2985 +NJ,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4062.662898 +NJ,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,733.4127 +NJ,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.658 +NJ,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,52.33444705 +NJ,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,177.6195664 +NJ,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,2563.349472 +NJ,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,220.9454983 +NJ,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,29.809 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,,TON,51.05921399 +NJ,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,99.15507738 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,19.83091161 +NJ,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,14.5843731 +NJ,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,3.2953 +NJ,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.1655 +NJ,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,4.4258127 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,597.070881 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.005002871 +NJ,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.072823503 +NJ,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3292.721911 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,658.9761794 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.33608619 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.068275963 +NJ,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.41880502 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,5634.105489 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,41.74 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.064287724 +NJ,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,11.98316086 +NJ,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,67.08385685 +NJ,PM2.5 Filterable,2A6_Other-minerals,,TON,285.92 +NJ,PM2.5 Filterable,2H2_Food-and-beverage,,TON,10.37993841 +NJ,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,10.87767243 +NJ,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,36.91806723 +NJ,PM2.5 Filterable,3Dc_Other-farm,,TON,505.0224865 +NJ,PM2.5 Filterable,5C_Incineration,,TON,34.57145983 +NJ,PM2.5 Filterable,5C_Incineration,biomass,TON,32.95744169 +NJ,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +NJ,PM2.5 Filterable,5C_Open-burning-residential,,TON,18.08 +NJ,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,13.75999911 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,18.7 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,14.7187 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,69.55 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0.86 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.1 +NJ,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,562.3776 +NJ,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,407.9865 +NJ,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,88.30573286 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.69393093 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.890992523 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.395728204 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,620.8772371 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,20.91827688 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.457672241 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.03166846 +NJ,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,163.4949273 +NJ,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.1408 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,710.009272 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,85.86059558 +NJ,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001394787 +NJ,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,163.0545819 +NJ,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3292.721911 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,34.7218824 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,922.847328 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.88002628 +NJ,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.07547297 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,106.6586247 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.477832601 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.59694235 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,415.2814468 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.17645113 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,452.240635 +NJ,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,28.146204 +NJ,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.01426995 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,168.6055775 +NJ,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003043579 +NJ,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,244.6543852 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,605.1135367 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,119.2946618 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.417682235 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.163130655 +NJ,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,118.7317962 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,120.4807484 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,65.96480494 +NJ,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.543897226 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,46.39674987 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,649.3037608 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,5878.399922 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,100.4201054 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.154350007 +NJ,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,48.5865213 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.56321945 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.574139599 +NJ,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.013960497 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,4.06618809 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,45.54596961 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.36266703 +NJ,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,100.6841037 +NJ,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0742 +NJ,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.202 +NJ,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.133 +NJ,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,67.40567308 +NJ,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,408.8927776 +NJ,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,34.9862 +NJ,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,15.449 +NJ,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,5.4005 +NJ,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.096 +NJ,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,7.7901 +NJ,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,3.1386 +NJ,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,6.181 +NJ,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.0626 +NJ,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,19.2705 +NJ,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3771.553786 +NJ,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,433.396 +NJ,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.522 +NJ,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,10.87767243 +NJ,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,36.91806723 +NJ,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,505.0224865 +NJ,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,220.9454983 +NJ,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,14.5603 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,43.47978866 +NJ,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,94.93594887 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,18.16093909 +NJ,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.95561962 +NJ,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,3.0008 +NJ,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.1655 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,16.63 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,12.376 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1149.873 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.818 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.002 +NJ,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,254.6086 +NJ,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,46.2486 +NJ,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.166542407 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.14833859 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.135031944 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.031935185 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,34.75170844 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,6.181210139 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.906108795 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.004431655 +NJ,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,76.83546207 +NJ,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.1894 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,18.1990725 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.917000359 +NJ,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.6698E-05 +NJ,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,741.8582194 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.663447657 +NJ,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,594.0954499 +NJ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.353672146 +NJ,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,41.2317753 +NJ,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.857332841 +NJ,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.372288466 +NJ,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.178150178 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.21235414 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.246994646 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.80171033 +NJ,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12.55080733 +NJ,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.69934284 +NJ,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,2.922720851 +NJ,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000425892 +NJ,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,182.2352841 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,20.54239091 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.98701909 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.020003772 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.009898698 +NJ,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,70.07513214 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.61067479 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.367636513 +NJ,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.068280899 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.821593146 +NJ,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,12.1183863 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,136.7577716 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,14.5506688 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.022365001 +NJ,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,71.9700878 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.307371776 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.019787063 +NJ,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00064908 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.033438594 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.008432893 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.731136096 +NJ,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.0363891 +NJ,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.1521 +NJ,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.8964 +NJ,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,Sulfur Dioxide,2A6_Other-minerals,,TON,171.6053 +NJ,Sulfur Dioxide,2B_Chemicals-other,,TON,1.7373 +NJ,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,39.0938 +NJ,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.062 +NJ,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.1836 +NJ,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.285 +NJ,Sulfur Dioxide,2D3d_Coating-application,,TON,0.0654 +NJ,Sulfur Dioxide,2D3h_Printing,,TON,0.0052 +NJ,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.0002 +NJ,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,1.8077 +NJ,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1.0823 +NJ,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,24.1064 +NJ,Sulfur Dioxide,3F_Ag-res-on-field,,TON,51.25492545 +NJ,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,213.8303 +NJ,Sulfur Dioxide,5C_Incineration,,TON,78.0682935 +NJ,Sulfur Dioxide,5C_Incineration,biomass,TON,260.5433142 +NJ,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +NJ,Sulfur Dioxide,5C_Open-burning-residential,,TON,1.06460678 +NJ,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.639926397 +NJ,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1.2503 +NJ,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.368 +NJ,Volatile Organic Compounds,11C_Other-natural,,TON,88238.135 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,2.7306 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.3282 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,11.68 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.238 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0 +NJ,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,321.3162 +NJ,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,202.395166 +NJ,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,462.8126092 +NJ,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,900.6361247 +NJ,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,115.3052822 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,287.1477359 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,32.2202084 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.600537088 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,24.03515445 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,15.95363736 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.484156299 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.007639793 +NJ,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,178.9629848 +NJ,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.3715 +NJ,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.0923 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,792.501668 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,786.6379358 +NJ,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.080007318 +NJ,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2040.678378 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,224.925481 +NJ,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,23274.03964 +NJ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,83.5172811 +NJ,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1635.237219 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,310.5954781 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,35.73342307 +NJ,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,20.0591473 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,742.7960919 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,36.16050186 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,788.77992 +NJ,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,521.704208 +NJ,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,978.693353 +NJ,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,291.6617874 +NJ,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.124575321 +NJ,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,552.4752938 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,18.64693293 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,47.8258515 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.245032842 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.136460366 +NJ,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,818.8505476 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,168.2544251 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1823.500175 +NJ,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,42.7457178 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,67.4309523 +NJ,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,10152.65559 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5781.91596 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,48.7071689 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.074865001 +NJ,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,610.598014 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,21.4451767 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,13.60247602 +NJ,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.109836503 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.41580548 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1639.176187 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,41.34044015 +NJ,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,7525.19752 +NJ,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NJ,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,31.59570487 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1390.867197 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,505.8536624 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6114.950924 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3488.402538 +NJ,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,3593.685034 +NJ,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +NJ,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +NJ,Volatile Organic Compounds,2A6_Other-minerals,,TON,96.7786 +NJ,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +NJ,Volatile Organic Compounds,2B_Chemicals-other,,TON,353.7093 +NJ,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,55.0764 +NJ,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.57 +NJ,Volatile Organic Compounds,2C6_Zinc-production,,TON,0 +NJ,Volatile Organic Compounds,2C7_Other-metal,,TON,0 +NJ,Volatile Organic Compounds,2D3a_Domestic-solvent-use,Other_Fuel,TON,26008.6527 +NJ,Volatile Organic Compounds,2D3c_Asphalt-roofing,heavy_oil,TON,65.6160001 +NJ,Volatile Organic Compounds,2D3d_Coating-application,,TON,16753.76766 +NJ,Volatile Organic Compounds,2D3e_Degreasing,,TON,3868.55691 +NJ,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,24.1199 +NJ,Volatile Organic Compounds,2D3h_Printing,,TON,4142.51388 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,148.4210653 +NJ,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4174.275706 +NJ,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,57.342 +NJ,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2069.883143 +NJ,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1744.4003 +NJ,Volatile Organic Compounds,2I_Wood-processing,,TON,0.0058 +NJ,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,25.42717779 +NJ,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,3.946598704 +NJ,Volatile Organic Compounds,3B2_Manure-sheep,,TON,3.784725538 +NJ,Volatile Organic Compounds,3B3_Manure-swine,,TON,10.67561139 +NJ,Volatile Organic Compounds,3B4_Manure-other,,TON,27.9137426 +NJ,Volatile Organic Compounds,3B4_Manure-poultry,,TON,40.12962873 +NJ,Volatile Organic Compounds,3B4d_Manure-goats,,TON,3.32600931 +NJ,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.85 +NJ,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1650.230747 +NJ,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,261.8775011 +NJ,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,383.316054 +NJ,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1426.93797 +NJ,Volatile Organic Compounds,5C_Incineration,,TON,8.413177896 +NJ,Volatile Organic Compounds,5C_Incineration,biomass,TON,21.52515653 +NJ,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +NJ,Volatile Organic Compounds,5C_Open-burning-residential,,TON,4.46508625 +NJ,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,17.7118726 +NJ,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,143.76114 +NJ,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,48.87968879 +NJ,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.27 +NJ,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,32.8130996 +NM,Ammonia,1A1a_Public-Electricity,hard_coal,TON,40.8 +NM,Ammonia,1A1a_Public-Electricity,natural_gas,TON,142.0610707 +NM,Ammonia,1A1b_Pet-refining,natural_gas,TON,28.9825 +NM,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.082 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.402899603 +NM,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.060777816 +NM,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.119390561 +NM,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,7.611837582 +NM,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.02334774 +NM,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +NM,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,255.798412 +NM,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.470730237 +NM,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.272555349 +NM,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,21.35374492 +NM,Ammonia,1A3bii_Road-LDV,light_oil,TON,806.8214567 +NM,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.736382851 +NM,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.31114785 +NM,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.40353784 +NM,Ammonia,1A3biii_Road-bus,light_oil,TON,1.059763762 +NM,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.169124882 +NM,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,64.58938297 +NM,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,6.250715471 +NM,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,32.84841191 +NM,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.771916685 +NM,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.66270833 +NM,Ammonia,1A3c_Rail,diesel_oil,TON,12.31295106 +NM,Ammonia,1A3c_Rail,light_oil,TON,0.005843094 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.663704191 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.1035108 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.289306459 +NM,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.56259915 +NM,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.123244768 +NM,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.882276807 +NM,Ammonia,1A4bi_Residential-stationary,biomass,TON,208.4403872 +NM,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.021 +NM,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,301.1565954 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.836281095 +NM,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.030824549 +NM,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.007319239 +NM,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.371093537 +NM,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.081491666 +NM,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.549834856 +NM,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,1.118117317 +NM,Ammonia,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,0.017 +NM,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.7 +NM,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,7.757 +NM,Ammonia,3B1a_Cattle-dairy,,TON,15122.02548 +NM,Ammonia,3B1b_Cattle-non-dairy,,TON,4457.959066 +NM,Ammonia,3B2_Manure-sheep,,TON,360.2327799 +NM,Ammonia,3B3_Manure-swine,,TON,21.0496349 +NM,Ammonia,3B4_Manure-other,,TON,667.8411417 +NM,Ammonia,3B4_Manure-poultry,,TON,32.55100314 +NM,Ammonia,3B4d_Manure-goats,,TON,185.5253387 +NM,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,13152.6 +NM,Ammonia,3F_Ag-res-on-field,,TON,40.096 +NM,Ammonia,5B_Compost-biogas,Other_Fuel,TON,44.567785 +NM,Ammonia,5D1_Wastewater-domestic,,TON,5.6865125 +NM,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,6382.871 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,49649.4235 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,35139.46386 +NM,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2016.585442 +NM,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,981.48 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,674057.1545 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,22138.07818 +NM,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.145919996 +NM,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,165641.2989 +NM,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,666535.3799 +NM,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10707747.77 +NM,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,86227.0815 +NM,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,629874.7841 +NM,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,219998.9033 +NM,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,32014.93999 +NM,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5934.30375 +NM,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3725294.344 +NM,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,138519.3541 +NM,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2026137.156 +NM,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,100133.9906 +NM,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,168376.6213 +NM,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7372.65804 +NM,Carbon Dioxide,1A3c_Rail,light_oil,TON,454.7257583 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,35595.00961 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,45824.85877 +NM,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2158.420277 +NM,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,15169.67957 +NM,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,140730.8225 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,102910.1897 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2316.61938 +NM,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,249.3108017 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,897.80242 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,26158.74225 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10035.2184 +NM,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,39881.15484 +NM,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,31238372.2 +NM,Carbon Monoxide,11C_Other-natural,,TON,114838.2975 +NM,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,6.8847835 +NM,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,7575.5268 +NM,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,411.803566 +NM,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,325.24 +NM,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,0.27 +NM,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,757.991 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,78.921221 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,974.7574554 +NM,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,30.45051065 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,10.23372781 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,529.7295772 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,170.5621134 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.531811951 +NM,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,11175.11857 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.059736 +NM,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.230206 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1566.721732 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4490.657182 +NM,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.124455712 +NM,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3775.093134 +NM,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5383.513254 +NM,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,181587.1999 +NM,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,506.9348731 +NM,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9704.577461 +NM,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,467.6726454 +NM,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1524.912284 +NM,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,18.535795 +NM,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3499.235206 +NM,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2456.775573 +NM,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2740.851275 +NM,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2354.972129 +NM,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6420.009215 +NM,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3958.846509 +NM,Carbon Monoxide,1A3c_Rail,light_oil,TON,102.9603991 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,321.3936151 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.907101161 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1151.435754 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,124.9826283 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,9532.598545 +NM,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,42.23017021 +NM,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,44.85439981 +NM,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,31864.35884 +NM,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,25618.31526 +NM,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.104999999 +NM,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,700.2483962 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,390.0353991 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,564.9466877 +NM,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.941623226 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.44292309 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,4513.816812 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.95883608 +NM,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4309.656577 +NM,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,6872.85598 +NM,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.97966032 +NM,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,46495.80009 +NM,Carbon Monoxide,2A1_Cement-production,,TON,1019.2788 +NM,Carbon Monoxide,2A6_Other-minerals,,TON,149.9181512 +NM,Carbon Monoxide,2D3d_Coating-application,,TON,0.00208 +NM,Carbon Monoxide,2D3h_Printing,,TON,0.000055 +NM,Carbon Monoxide,2H2_Food-and-beverage,,TON,381.6315045 +NM,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.049923 +NM,Carbon Monoxide,3F_Ag-res-on-field,,TON,260.4 +NM,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,42.943 +NM,Carbon Monoxide,5C_Incineration,biomass,TON,1.477932067 +NM,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3162.849394 +NM,Carbon Monoxide,5C_Open-burning-residential,,TON,1988.717648 +NM,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,65.3838284 +NM,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.001 +NM,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.1 +NM,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.275189347 +NM,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3.96397549 +NM,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12.87812623 +NM,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,0.0188117 +NM,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,16.41869943 +NM,Methane,1A2g_Construction_and_Mining,light_oil,TON,15.72164997 +NM,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.08292725 +NM,Methane,1A3bii_Road-LDV,diesel_oil,TON,35.16218039 +NM,Methane,1A3bii_Road-LDV,light_oil,TON,443.0301269 +NM,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.067365515 +NM,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28.55689416 +NM,Methane,1A3biii_Road-bus,diesel_oil,TON,5.920302699 +NM,Methane,1A3biii_Road-bus,light_oil,TON,4.431683894 +NM,Methane,1A3biii_Road-bus,natural_gas,TON,7.084947 +NM,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,276.7141267 +NM,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.264819349 +NM,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,50.19478262 +NM,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,4.794757372 +NM,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.92359084 +NM,Methane,1A3c_Rail,diesel_oil,TON,0.332855605 +NM,Methane,1A3c_Rail,light_oil,TON,0.29841563 +NM,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.000570988 +NM,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,30.96238334 +NM,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,26.22434134 +NM,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.526822553 +NM,Methane,1A4bi_Residential-mobile,light_oil,TON,120.6522584 +NM,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.699626282 +NM,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.575395649 +NM,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.317140352 +NM,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.038632603 +NM,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,34.63959032 +NM,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.272244427 +NM,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,39.18131816 +NM,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,36145.47752 +NM,Nitrogen Oxides,11C_Other-natural,,TON,39817.5558 +NM,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,23.818567 +NM,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,34597.164 +NM,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2241.836975 +NM,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,362.793 +NM,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,0.34 +NM,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,520.062 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,238.114317 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,89.24715802 +NM,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.160942332 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3.752317965 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2495.282517 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,375.2317965 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.065816866 +NM,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,19430.11644 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.104538 +NM,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.273277 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2838.701326 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,49.39583068 +NM,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.027146277 +NM,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1162.991262 +NM,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2184.92084 +NM,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,22872.29239 +NM,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,246.9615634 +NM,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1184.274151 +NM,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1753.571298 +NM,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,170.8072493 +NM,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,7.0447884 +NM,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11613.02053 +NM,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,311.7371326 +NM,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9815.194014 +NM,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,228.6837732 +NM,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,344.6486029 +NM,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,20214.72701 +NM,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.008809831 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,118.0109616 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.78710296 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1397.802982 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,251.4855914 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,118.4015541 +NM,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.17472757 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,112.7373737 +NM,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,295.4601049 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,409.1059898 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.378000006 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1763.672107 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,979.0034757 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,16.75036237 +NM,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.58497823 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,7.07901442 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,54.91632068 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,101.7009575 +NM,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,282.7495974 +NM,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,6688.595123 +NM,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.092644 +NM,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,31566.54721 +NM,Nitrogen Oxides,2A1_Cement-production,,TON,1064.19355 +NM,Nitrogen Oxides,2A6_Other-minerals,,TON,57.559897 +NM,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,0.0334 +NM,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,1.88 +NM,Nitrogen Oxides,2D3d_Coating-application,,TON,0.0052 +NM,Nitrogen Oxides,2D3h_Printing,,TON,0.000065 +NM,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,3.534 +NM,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,0.109091 +NM,Nitrogen Oxides,3F_Ag-res-on-field,,TON,9.017 +NM,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,8.21 +NM,Nitrogen Oxides,5C_Incineration,biomass,TON,1.735981334 +NM,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,76.76818821 +NM,Nitrogen Oxides,5C_Open-burning-residential,,TON,140.3800707 +NM,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,3.61946204 +NM,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.0002 +NM,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.1 +NM,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.0179938 +NM,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.941020095 +NM,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,362.6416505 +NM,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.275334069 +NM,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,22.24046384 +NM,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.394497896 +NM,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.119707709 +NM,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.416866594 +NM,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.285947591 +NM,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.380109712 +NM,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.965378986 +NM,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.053432302 +NM,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.776842048 +NM,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,423.7682238 +NM,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.131723115 +NM,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2414.23454 +NM,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,76.07886601 +NM,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,62.64199 +NM,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.03228261 +NM,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,11.04985823 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8.528457986 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,168.3906643 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,409.3659833 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.002222674 +NM,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,187.7211853 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.004670748 +NM,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0141094 +NM,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,149097.2268 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,266.7251575 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.552435051 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.192074288 +NM,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,3407.383218 +NM,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.022679999 +NM,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.502500433 +NM,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,124.734439 +NM,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000528 +NM,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,158.6781611 +NM,PM10 Filterable,2A1_Cement-production,,TON,43.09599757 +NM,PM10 Filterable,2A2_Lime-production,,TON,1.736 +NM,PM10 Filterable,2A5b_Construction-and-demolition,,TON,12544.46861 +NM,PM10 Filterable,2A6_Other-minerals,,TON,10830.99331 +NM,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,714.9090288 +NM,PM10 Filterable,2D3d_Coating-application,,TON,0.3676473 +NM,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.446 +NM,PM10 Filterable,2H2_Food-and-beverage,,TON,75.61813128 +NM,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,69.92800492 +NM,PM10 Filterable,3B1a_Cattle-dairy,,TON,2326.229449 +NM,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,10753.35823 +NM,PM10 Filterable,3Dc_Other-farm,,TON,7421.825948 +NM,PM10 Filterable,5A_Solid-waste-disposal,,TON,284.3196 +NM,PM10 Filterable,5C_Incineration,biomass,TON,1.553100582 +NM,PM10 Filterable,5C_Open-burning-land-clearing,,TON,391.5178297 +NM,PM10 Filterable,5C_Open-burning-residential,,TON,750.584285 +NM,PM10 Filterable,5C_Open-burning-yard-waste,,TON,22.1838008 +NM,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,8.99118E-06 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.2588145 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3594.811 +NM,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,160.5473018 +NM,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,103.613 +NM,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.05 +NM,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,28.293 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.9501614 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.287837174 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.243773211 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8.818296095 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,179.6375503 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,444.8378421 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.004041166 +NM,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,362.2111678 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00560025 +NM,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03713 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,261.0404231 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,35.32166296 +NM,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00071529 +NM,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,96.25533604 +NM,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,149097.2268 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,125.027357 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1111.958446 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,15.91382889 +NM,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,62.41283661 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,97.66687998 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,6.167509997 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.5953821 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,610.7973457 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,14.15421241 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,522.4154575 +NM,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.51945353 +NM,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.38265608 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,597.4896266 +NM,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.057895575 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,276.2195706 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.5909437 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.89167362 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.24733513 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,12.01264931 +NM,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.273793082 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.480501343 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,126.4653384 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3566.373441 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.049980001 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,9.100210324 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,75.18155825 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.43483811 +NM,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.030081991 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.94888551 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,27.7237351 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.222900102 +NM,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,13.43545462 +NM,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,192.5018969 +NM,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000528 +NM,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,384.6124157 +NM,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,45.85927024 +NM,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,1.736 +NM,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,12544.46861 +NM,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,10832.20885 +NM,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,714.9090288 +NM,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.3676473 +NM,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.000005 +NM,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.446 +NM,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,905.9691191 +NM,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,69.93909892 +NM,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,2326.229449 +NM,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,10753.35823 +NM,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,7421.825948 +NM,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,40.61 +NM,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,294.305 +NM,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.553100582 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,391.5178297 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,750.584285 +NM,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,22.1838008 +NM,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0000099 +NM,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.130177031 +NM,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1381.4346 +NM,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,76.07886601 +NM,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,48.37982 +NM,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.03228261 +NM,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,10.95525237 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7.33478787 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,153.8132828 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,47.76140662 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.002222769 +NM,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,183.0995448 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.004670748 +NM,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0141094 +NM,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,17412.03063 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,229.4334019 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.552771399 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5.08591325 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,3384.719304 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.01743 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.926374945 +NM,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,121.2880171 +NM,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000528 +NM,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,158.5036427 +NM,PM2.5 Filterable,2A1_Cement-production,,TON,13.77800608 +NM,PM2.5 Filterable,2A2_Lime-production,,TON,0.246 +NM,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1254.452264 +NM,PM2.5 Filterable,2A6_Other-minerals,,TON,1424.494507 +NM,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,71.88432292 +NM,PM2.5 Filterable,2D3d_Coating-application,,TON,0.3676473 +NM,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,0.316 +NM,PM2.5 Filterable,2H2_Food-and-beverage,,TON,11.73595912 +NM,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,15.2499795 +NM,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,483.5048988 +NM,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2235.075996 +NM,PM2.5 Filterable,3Dc_Other-farm,,TON,1483.704906 +NM,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,51.906675 +NM,PM2.5 Filterable,5C_Incineration,biomass,TON,1.060643958 +NM,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,356.9720938 +NM,PM2.5 Filterable,5C_Open-burning-residential,,TON,687.377189 +NM,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,17.104876 +NM,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,8.99118E-06 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.25626841 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2609.58175 +NM,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,160.5473018 +NM,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,89.35083 +NM,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.05 +NM,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,28.19839414 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.59122741 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.198594373 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.243773211 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7.624468597 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,165.0568153 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,83.23804888 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.00404124 +NM,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,357.5805485 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00560025 +NM,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03713 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,253.2092798 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,32.51314746 +NM,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00071529 +NM,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,86.2485248 +NM,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,17412.03063 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,90.3382219 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,406.5041593 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.18260413 +NM,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,21.23869674 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,75.39402125 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.041972354 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.09578672 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,405.7894086 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.85727187 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,386.8515313 +NM,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.12387734 +NM,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.23102332 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,579.5572467 +NM,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.05336465 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,238.9241868 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.591635272 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.78676672 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,20.60990881 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,11.07767802 +NM,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.273793082 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,7.256085104 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,116.3537149 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3543.709527 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.044730001 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +NM,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.524085095 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,72.92610474 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.400067006 +NM,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.030081991 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.920419 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,25.50627601 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.156213016 +NM,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,12.36061868 +NM,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,189.0554952 +NM,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000528 +NM,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,384.4378973 +NM,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,16.01040304 +NM,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.246 +NM,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1254.452264 +NM,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1424.92748 +NM,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,71.88432292 +NM,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.3676473 +NM,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.000005 +NM,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,0.316 +NM,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,842.0869648 +NM,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,15.2610735 +NM,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,483.5048988 +NM,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2235.075996 +NM,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1483.704906 +NM,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,27.182 +NM,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,55.778075 +NM,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,1.060643958 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,356.9720938 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,687.377189 +NM,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,17.104876 +NM,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.0000099 +NM,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.2712265 +NM,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,9023.163 +NM,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,19.0780241 +NM,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,162.66 +NM,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.004 +NM,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2459.302 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.41182044 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.24218008 +NM,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.011303127 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.426403779 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,155.8017036 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,855.5365582 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.003393271 +NM,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,142.3960054 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00014934 +NM,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0022278 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.506194622 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.339712603 +NM,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.4433E-05 +NM,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,140.1687799 +NM,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.771517562 +NM,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,171.4523627 +NM,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.740978563 +NM,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,10.10238237 +NM,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.91326188 +NM,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.511277411 +NM,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.031419128 +NM,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,31.54443835 +NM,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.20912318 +NM,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.44862566 +NM,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.598658631 +NM,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.656264412 +NM,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,13.87412855 +NM,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007335455 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,13.3462506 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.58267075 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.31457482 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.299911173 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.714988435 +NM,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.012093586 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.132111301 +NM,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.305424774 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,84.38205608 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.149099996 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,10.50121055 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.941502501 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.038064294 +NM,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001397546 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.007889225 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.428483207 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.09225123 +NM,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.655118502 +NM,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2505.572455 +NM,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0000492 +NM,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2359.703337 +NM,Sulfur Dioxide,2A1_Cement-production,,TON,28.55387 +NM,Sulfur Dioxide,2A6_Other-minerals,,TON,23.49456622 +NM,Sulfur Dioxide,2D3d_Coating-application,,TON,0.000026 +NM,Sulfur Dioxide,2D3h_Printing,,TON,0.0000005 +NM,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,1.912844 +NM,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.192296 +NM,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.6276 +NM,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,2.37 +NM,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,1.056130932 +NM,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,31.85879749 +NM,Sulfur Dioxide,5C_Open-burning-residential,,TON,23.39667902 +NM,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.443675974 +NM,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0001 +NM,Volatile Organic Compounds,11C_Other-natural,,TON,493733.941 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.621101 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,315.065805 +NM,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,124.0870875 +NM,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,650.8443508 +NM,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1073.037989 +NM,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.13 +NM,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,361.162 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.8426117 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28.98675494 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.783768968 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.289974108 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,162.5228937 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.705729932 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.084806084 +NM,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2406.245462 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0082137 +NM,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.014852 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,231.4499745 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,314.3931978 +NM,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.017925767 +NM,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,539.4577799 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,575.5782123 +NM,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,14742.0062 +NM,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,55.85059962 +NM,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,722.3916378 +NM,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,101.0777796 +NM,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,119.1272336 +NM,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.4655776 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,810.2204874 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,105.085028 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,546.9188122 +NM,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,110.9603714 +NM,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,980.9314275 +NM,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,950.6133959 +NM,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.731321086 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,9.107086732 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.816529343 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +NM,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,83.78223944 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,29.47639146 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,340.945107 +NM,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.668716064 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,10.52354033 +NM,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2039.682222 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3776.567927 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.014973002 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +NM,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,96.2621456 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,79.85617675 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,26.48126814 +NM,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.284716459 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.67433579 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,945.2860936 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.276070088 +NM,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1041.91452 +NM,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,89101.94089 +NM,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,238.5822096 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,81.46917519 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,603.0459148 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3486.06203 +NM,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,5442.793896 +NM,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,67254.20954 +NM,Volatile Organic Compounds,2A1_Cement-production,,TON,55.33264 +NM,Volatile Organic Compounds,2A6_Other-minerals,,TON,26.74634404 +NM,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1.574752028 +NM,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,5.15 +NM,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.628 +NM,Volatile Organic Compounds,2C7a_Copper-production,,TON,0.29 +NM,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,9152.650835 +NM,Volatile Organic Compounds,2D3d_Coating-application,,TON,4299.428329 +NM,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,721.443879 +NM,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,7.76219964 +NM,Volatile Organic Compounds,2D3h_Printing,,TON,799.583975 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,141.3516599 +NM,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,6158.913412 +NM,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,177.005273 +NM,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,18.87285865 +NM,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1209.761913 +NM,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,356.6367425 +NM,Volatile Organic Compounds,3B2_Manure-sheep,,TON,28.81862293 +NM,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.68397084 +NM,Volatile Organic Compounds,3B4_Manure-other,,TON,53.42729021 +NM,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2.604080265 +NM,Volatile Organic Compounds,3B4d_Manure-goats,,TON,14.84202736 +NM,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,557.4861156 +NM,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,34.64 +NM,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,82.28 +NM,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,315.35085 +NM,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.145298995 +NM,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,216.8701531 +NM,Volatile Organic Compounds,5C_Open-burning-residential,,TON,146.3441807 +NM,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,16.3459578 +NM,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,12.389325 +NM,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,11.978 +NM,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,6.87 +NV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,7.784305 +NV,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,1.393838 +NV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,260.85534 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.489686709 +NV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.078197041 +NV,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.460111276 +NV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.878862312 +NV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.281643456 +NV,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.000117449 +NV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,18.85751176 +NV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,18.95545017 +NV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.872884559 +NV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,13.61652143 +NV,Ammonia,1A3bii_Road-LDV,light_oil,TON,746.0218785 +NV,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.661943153 +NV,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,27.22511085 +NV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.201705942 +NV,Ammonia,1A3biii_Road-bus,light_oil,TON,0.368129515 +NV,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.717167483 +NV,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,21.39305333 +NV,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.484249788 +NV,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,17.34378528 +NV,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,3.741729817 +NV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.87037599 +NV,Ammonia,1A3c_Rail,diesel_oil,TON,2.718184701 +NV,Ammonia,1A3c_Rail,light_oil,TON,0.001605787 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.681104664 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.649612098 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.015335315 +NV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,166.5456314 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.359632942 +NV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.714424568 +NV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.352286955 +NV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,4.353099361 +NV,Ammonia,1A4bi_Residential-stationary,biomass,TON,48.45873124 +NV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.263145587 +NV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.001317872 +NV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,443.0214856 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.536301307 +NV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.016446188 +NV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010644422 +NV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.49571704 +NV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.111468019 +NV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.786432569 +NV,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Ammonia,2A6_Other-minerals,,TON,16 +NV,Ammonia,2B_Chemicals-other,Other_Fuel,TON,0.27 +NV,Ammonia,2C7_Other-metal,Other_Fuel,TON,35.982 +NV,Ammonia,2D3d_Coating-application,,TON,0.29 +NV,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.01165948 +NV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,8.08825 +NV,Ammonia,3B1a_Cattle-dairy,,TON,1055.522906 +NV,Ammonia,3B1b_Cattle-non-dairy,,TON,15481.85564 +NV,Ammonia,3B2_Manure-sheep,,TON,233.965615 +NV,Ammonia,3B3_Manure-swine,,TON,5.84717613 +NV,Ammonia,3B4_Manure-other,,TON,365.691458 +NV,Ammonia,3B4_Manure-poultry,,TON,12.86967009 +NV,Ammonia,3B4d_Manure-goats,,TON,217.872494 +NV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,11932.6 +NV,Ammonia,3F_Ag-res-on-field,,TON,42.66 +NV,Ammonia,5B_Compost-biogas,Other_Fuel,TON,75.82694 +NV,Ammonia,5D1_Wastewater-domestic,,TON,6.98046 +NV,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,146441 +NV,Carbon Dioxide,1A1a_Public-Electricity,heavy_oil,TON,53789.77 +NV,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,1561212.5 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,60346.17632 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,46030.40465 +NV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2667.70289 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2334817.691 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,71015.19724 +NV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.7620834 +NV,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1294326.985 +NV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,437112.7444 +NV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10589433.62 +NV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,52250.0632 +NV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,460478.3344 +NV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,213084.7312 +NV,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,11153.72325 +NV,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,25653.81933 +NV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1340436.261 +NV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,11262.86732 +NV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1022653.617 +NV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,99756.21301 +NV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,65370.6744 +NV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5237.09048 +NV,Carbon Dioxide,1A3c_Rail,light_oil,TON,124.9403469 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,44249.98656 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,58205.16013 +NV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2588.363323 +NV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,43353.58474 +NV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,326035.0641 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,66029.30535 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1240.675426 +NV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,126.2845753 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1305.939 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,35176.82912 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13727.01338 +NV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,56674.51852 +NV,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,15391669.94 +NV,Carbon Monoxide,11C_Other-natural,,TON,87234.9901 +NV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,13.18022535 +NV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,624.28243 +NV,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.060172 +NV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1515.937668 +NV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,14.0722347 +NV,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.76362 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,116.0639634 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2378.264129 +NV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,40.61152683 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,39.55066903 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,2047.175682 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,47.07455445 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.018604554 +NV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,712.8522302 +NV,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0.6703816 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.41 +NV,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.52 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,6149.80533 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,14828.69739 +NV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.929796699 +NV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,10362.36773 +NV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3624.032074 +NV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,149621.2491 +NV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,308.903131 +NV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6126.884503 +NV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,336.7431274 +NV,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,606.4477663 +NV,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,83.7126645 +NV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1158.487578 +NV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,208.1238598 +NV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1139.83595 +NV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2232.979303 +NV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2497.97709 +NV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,874.7139964 +NV,Carbon Monoxide,1A3c_Rail,light_oil,TON,28.1701036 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,82.57329621 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2469.121972 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.530776497 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.095772872 +NV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1717.9035 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,160.6946952 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,12222.43367 +NV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,57.29704546 +NV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,135.937882 +NV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,73080.54451 +NV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,10190.63871 +NV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1.318483487 +NV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.006616815 +NV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,958.6257611 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,226.3775813 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,267.4245788 +NV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.398976095 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.9848292 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,6732.542351 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,27.6333081 +NV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6374.385246 +NV,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00679035 +NV,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,8.235 +NV,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.780481692 +NV,Carbon Monoxide,2A1_Cement-production,,TON,162.069261 +NV,Carbon Monoxide,2A2_Lime-production,,TON,294.366745 +NV,Carbon Monoxide,2A5b_Construction-and-demolition,Other_Fuel,TON,11.0577046 +NV,Carbon Monoxide,2A6_Other-minerals,,TON,1023.399446 +NV,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,15.26 +NV,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1.54780248 +NV,Carbon Monoxide,2C3_Aluminum-production,,TON,0.24826158 +NV,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,255.7894466 +NV,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.003382633 +NV,Carbon Monoxide,2D3d_Coating-application,,TON,10.5427258 +NV,Carbon Monoxide,2D3i_Other-solvent-use,,TON,1.287159 +NV,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0.24955 +NV,Carbon Monoxide,2H2_Ethanol Production,,TON,1.411625 +NV,Carbon Monoxide,2H2_Food-and-beverage,,TON,971.3525046 +NV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,3.4457028 +NV,Carbon Monoxide,3Dc_Other-farm,,TON,6.7456403 +NV,Carbon Monoxide,3F_Ag-res-on-field,,TON,392.76 +NV,Carbon Monoxide,5A_Solid-waste-disposal,,TON,264.8411396 +NV,Carbon Monoxide,5C_Incineration,,TON,1.048321415 +NV,Carbon Monoxide,5C_Incineration,biomass,TON,3.240231392 +NV,Carbon Monoxide,5C_Open-burning-industrial,Other_Fuel,TON,0.0054 +NV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3076.429857 +NV,Carbon Monoxide,5C_Open-burning-residential,,TON,599.645921 +NV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,271.999517 +NV,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,7.2 +NV,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,3.6190348 +NV,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,181.7397 +NV,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,0.000595 +NV,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.52427815 +NV,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.814224624 +NV,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16.53068565 +NV,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,62.26865876 +NV,Methane,1A2g_Construction_and_Mining,light_oil,TON,52.08471625 +NV,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.635637611 +NV,Methane,1A3bii_Road-LDV,diesel_oil,TON,27.04879451 +NV,Methane,1A3bii_Road-LDV,light_oil,TON,380.9989767 +NV,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.149078603 +NV,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.20714235 +NV,Methane,1A3biii_Road-bus,diesel_oil,TON,5.793876092 +NV,Methane,1A3biii_Road-bus,light_oil,TON,2.333786048 +NV,Methane,1A3biii_Road-bus,natural_gas,TON,44.0551121 +NV,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,92.95728749 +NV,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.416224461 +NV,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,30.82211851 +NV,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,3.893677386 +NV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.44319498 +NV,Methane,1A3c_Rail,diesel_oil,TON,0.091959671 +NV,Methane,1A3c_Rail,light_oil,TON,0.083018552 +NV,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.570839015 +NV,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,38.81127837 +NV,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,32.29271177 +NV,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.420095575 +NV,Methane,1A4bi_Residential-mobile,light_oil,TON,261.337322 +NV,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.913126761 +NV,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.116429041 +NV,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.577945882 +NV,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.056345714 +NV,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,47.47963789 +NV,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.307806676 +NV,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,57.18002924 +NV,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,8583.181564 +NV,Nitrogen Oxides,11C_Other-natural,,TON,38547.7959 +NV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,60.59229823 +NV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1475.4846 +NV,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0.44312 +NV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1415.059068 +NV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,16.102926 +NV,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,1.331105 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,358.0840443 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,176.2188712 +NV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.697967355 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,14.55994303 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,3470.395773 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,103.9784305 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.031321156 +NV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,1024.804452 +NV,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,135.84052 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.9 +NV,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.62 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,11454.25538 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,180.8782248 +NV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.171875324 +NV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3906.666742 +NV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1414.016956 +NV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,16922.49837 +NV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,147.5724903 +NV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,654.959473 +NV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1154.684149 +NV,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,66.72812724 +NV,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,32.8997403 +NV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4148.909282 +NV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,23.85246099 +NV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3616.25907 +NV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,188.5275272 +NV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,135.8537149 +NV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4505.130349 +NV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.287673966 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,32.05629552 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1803.472567 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,38.26692447 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.381982583 +NV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2203.557702 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,312.7090379 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,146.3552217 +NV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.61906093 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,351.0420398 +NV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,629.4346526 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,197.8591478 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4.74626404 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.02383152 +NV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2340.442604 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,450.2827867 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.5699224 +NV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.272366641 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.1800199 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,71.02822379 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,145.1423541 +NV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,422.5007776 +NV,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00776475 +NV,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.68 +NV,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.574488488 +NV,Nitrogen Oxides,2A1_Cement-production,,TON,790.0798049 +NV,Nitrogen Oxides,2A2_Lime-production,,TON,1502.939068 +NV,Nitrogen Oxides,2A5b_Construction-and-demolition,Other_Fuel,TON,0.4699737 +NV,Nitrogen Oxides,2A6_Other-minerals,,TON,717.4607215 +NV,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,7.330609 +NV,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,2.3902184 +NV,Nitrogen Oxides,2C3_Aluminum-production,,TON,0.58341465 +NV,Nitrogen Oxides,2C5_Lead-production,,TON,0.002695 +NV,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,175.4160673 +NV,Nitrogen Oxides,2D3d_Coating-application,,TON,14.0581524 +NV,Nitrogen Oxides,2D3i_Other-solvent-use,,TON,3.9399809 +NV,Nitrogen Oxides,2H2_Ethanol Production,,TON,0.44275 +NV,Nitrogen Oxides,2H2_Food-and-beverage,,TON,78.43405021 +NV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,3.568572 +NV,Nitrogen Oxides,3Dc_Other-farm,,TON,4.194105 +NV,Nitrogen Oxides,3F_Ag-res-on-field,,TON,11.471 +NV,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,62.22486 +NV,Nitrogen Oxides,5C_Incineration,,TON,0.003150194 +NV,Nitrogen Oxides,5C_Incineration,biomass,TON,11.87498254 +NV,Nitrogen Oxides,5C_Open-burning-industrial,Other_Fuel,TON,0.0162 +NV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,74.6706345 +NV,Nitrogen Oxides,5C_Open-burning-residential,,TON,42.3279499 +NV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.43663042 +NV,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,22.704 +NV,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,2.871464 +NV,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,10.84335 +NV,Nitrogen Oxides,6A_Other-commertial,Other_Fuel,TON,0.00385 +NV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.325373184 +NV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,358.1411595 +NV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.183905985 +NV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.38118936 +NV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.38372343 +NV,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.444908159 +NV,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.699915545 +NV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.456967389 +NV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.305695992 +NV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.683819384 +NV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.017243391 +NV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.989778352 +NV,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,70.37266847 +NV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.394086056 +NV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,83.08998 +NV,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,1.018318876 +NV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,392.4323689 +NV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0.83569388 +NV,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.02688196 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,32.97142948 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,151.6837961 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,113.0219083 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.000147347 +NV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,39.10848969 +NV,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,3.489338 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.108423238 +NV,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.019 +NV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,39606.08717 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,71.76315318 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.82151656 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.265932129 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021334943 +NV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,98.66777465 +NV,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,1416.86581 +NV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.284822988 +NV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.00137568 +NV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.769543563 +NV,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.173 +NV,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.003493257 +NV,PM10 Filterable,2A1_Cement-production,,TON,168.7030829 +NV,PM10 Filterable,2A2_Lime-production,,TON,167.9269536 +NV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,8346.613345 +NV,PM10 Filterable,2A6_Other-minerals,,TON,70137.47266 +NV,PM10 Filterable,2B_Chemicals-other,,TON,33.56379652 +NV,PM10 Filterable,2C_Iron-steel-alloy,,TON,6.395877735 +NV,PM10 Filterable,2C3_Aluminum-production,,TON,0.013207518 +NV,PM10 Filterable,2C5_Lead-production,,TON,9.01573E-07 +NV,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,626.6267904 +NV,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1.228556385 +NV,PM10 Filterable,2D3d_Coating-application,,TON,15.99974089 +NV,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.46 +NV,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,3.304657 +NV,PM10 Filterable,2H2_Food-and-beverage,,TON,375.5787651 +NV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,138.6867838 +NV,PM10 Filterable,3B1a_Cattle-dairy,,TON,218.0062263 +NV,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,4810.50166 +NV,PM10 Filterable,3Dc_Other-farm,,TON,12872.34585 +NV,PM10 Filterable,5A_Solid-waste-disposal,,TON,31.64453861 +NV,PM10 Filterable,5C_Incineration,biomass,TON,5.57869804 +NV,PM10 Filterable,5C_Open-burning-industrial,,TON,0.030708223 +NV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,380.8202481 +NV,PM10 Filterable,5C_Open-burning-residential,,TON,226.729498 +NV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,48.48612188 +NV,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.95869 +NV,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.14090964 +NV,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,0.03518146 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.385863482 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,86.94457421 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.170625748 +NV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,740.1601014 +NV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.28945658 +NV,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.070742 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16.77219705 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.3380647 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.319566383 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,34.07154148 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,216.5661586 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,122.7417698 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.002195031 +NV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,105.8654787 +NV,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.372604 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.13 +NV,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,995.5233686 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,112.8927367 +NV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001823699 +NV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,149.4969695 +NV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,39606.09487 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,80.91937747 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1135.821074 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.2952079 +NV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,47.7635011 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,76.41528342 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.681179122 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,3.29602755 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,212.8316428 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.314366124 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,221.1137389 +NV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,11.23464802 +NV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.85536617 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,133.7861281 +NV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.015929553 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,73.885186 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,89.13503543 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,8.131938483 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.046322926 +NV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,251.0469248 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26.00486604 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,15.19183397 +NV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.32848054 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,23.56641254 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,338.3219317 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1476.034965 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.627994892 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.003157401 +NV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.46901602 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,42.91425235 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.192020127 +NV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015240115 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.31370757 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,35.10853354 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.15837731 +NV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,21.54355548 +NV,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00038773 +NV,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.173 +NV,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.010234976 +NV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,174.385885 +NV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,230.2925429 +NV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,8346.627595 +NV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,70203.1178 +NV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,34.26313624 +NV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,12.64920796 +NV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.049201274 +NV,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.00000254 +NV,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,682.8724585 +NV,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,2.039370835 +NV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,16.46944325 +NV,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,7.11435 +NV,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0.4907331 +NV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,9.646935 +NV,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,1.67325 +NV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1412.858337 +NV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,149.5637948 +NV,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,218.0062263 +NV,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4810.50166 +NV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,12872.85029 +NV,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,66.441 +NV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,35.89085238 +NV,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.125569334 +NV,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.48079375 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.0378931 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,380.8202481 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,226.730498 +NV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,48.49178188 +NV,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1 +NV,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.17657852 +NV,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,384.2121 +NV,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.03518146 +NV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.330066356 +NV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,35.609995 +NV,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0.938315618 +NV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,391.3358734 +NV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0.765488967 +NV,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.02688196 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,28.38411377 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,142.0867518 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,13.19922967 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.7207E-05 +NV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,36.10588488 +NV,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,3.2712544 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.108423238 +NV,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.019 +NV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4779.04361 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,61.79454112 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.74064915 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.699952028 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016398372 +NV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,90.70559288 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,1386.686359 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.218347724 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.001032485 +NV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.599248925 +NV,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.58334 +NV,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.003493257 +NV,PM2.5 Filterable,2A1_Cement-production,,TON,92.29024923 +NV,PM2.5 Filterable,2A2_Lime-production,,TON,65.33521609 +NV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1078.215 +NV,PM2.5 Filterable,2A6_Other-minerals,,TON,8866.039216 +NV,PM2.5 Filterable,2B_Chemicals-other,,TON,11.63139461 +NV,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.123433166 +NV,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.010959426 +NV,PM2.5 Filterable,2C5_Lead-production,,TON,5.93266E-07 +NV,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,305.4925396 +NV,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.761967061 +NV,PM2.5 Filterable,2D3d_Coating-application,,TON,8.690203804 +NV,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.26 +NV,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,1.652484688 +NV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,245.8205912 +NV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,93.41242235 +NV,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,45.31241838 +NV,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,999.858411 +NV,PM2.5 Filterable,3Dc_Other-farm,,TON,2572.388529 +NV,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,14.27570611 +NV,PM2.5 Filterable,5C_Incineration,biomass,TON,4.844745786 +NV,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.017525216 +NV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,347.218505 +NV,PM2.5 Filterable,5C_Open-burning-residential,,TON,207.628797 +NV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,45.49343074 +NV,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.95869 +NV,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.11692504 +NV,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.006799039 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.323710897 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,38.42243054 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,1.090343768 +NV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,740.1041667 +NV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,1.219251667 +NV,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.070742 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16.26600223 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.999896056 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.319566383 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,29.47230824 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,206.9293323 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,22.97788368 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.002085907 +NV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,96.02751077 +NV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.15452 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.13 +NV,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.05 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,965.6575532 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,103.9170823 +NV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001823699 +NV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,136.1352555 +NV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4779.0526 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,57.25006272 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,396.9753913 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.36264148 +NV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.89889804 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,52.13544416 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.553813619 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.533389021 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,135.8626765 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.575443837 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,147.5942524 +NV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.065166573 +NV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.43142281 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,129.7714013 +NV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.014682656 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,64.05182888 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,89.21888713 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.589751652 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.041660282 +NV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,219.4538994 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.22471333 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,14.00970573 +NV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.32848054 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,22.85942835 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,311.2718943 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1445.855514 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.561519622 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.002814206 +NV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.29600417 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,41.62682247 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.176662533 +NV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015240115 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.27429692 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,32.30051063 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.06362547 +NV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,19.82006317 +NV,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.00038773 +NV,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,2.58334 +NV,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.010234976 +NV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,97.97304195 +NV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,75.6408048 +NV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1078.23432 +NV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,8923.090871 +NV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,12.33619993 +NV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,11.37676339 +NV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,0.046953191 +NV,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,2.23169E-06 +NV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,361.7375277 +NV,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1.572781511 +NV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,9.156574164 +NV,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,7.11435 +NV,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,,TON,0.283249 +NV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,7.994762688 +NV,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,1.67325 +NV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1283.090398 +NV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,104.2926823 +NV,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,45.31241838 +NV,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,999.858411 +NV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2572.892973 +NV,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,45.632 +NV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,18.52201687 +NV,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.14410061 +NV,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.728310223 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.024710093 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,347.218505 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,207.637397 +NV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,45.50209074 +NV,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1 +NV,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.15259388 +NV,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,384.2121 +NV,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.006799039 +NV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.510776672 +NV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1739.852 +NV,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.0007391 +NV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,93.28291501 +NV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,7.5950502 +NV,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.00722055 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.675866028 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.543836844 +NV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.014952852 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,1.651509097 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,117.5455376 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,75.29349551 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.008727253 +NV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,39.76837292 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.11 +NV,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.01 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,19.17490051 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.088376391 +NV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,8.25298E-05 +NV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,551.5652638 +NV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.78363535 +NV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,97.01195737 +NV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.448267511 +NV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.225819365 +NV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.83184826 +NV,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.102089675 +NV,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.135823618 +NV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11.34701156 +NV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.103457301 +NV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.711469597 +NV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.913470954 +NV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.600171371 +NV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.062608277 +NV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002015776 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,11.4682517 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.374461099 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,6.754716621 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.08772085 +NV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,50.98993094 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.378242396 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.908150402 +NV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.014502131 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.381522502 +NV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,5.338088593 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,24.41613824 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1.987919212 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.05639393 +NV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,14.41259059 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.593035468 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.020396316 +NV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000707939 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011452204 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.576310958 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.126189059 +NV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.930780501 +NV,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0024157 +NV,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.099 +NV,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.000255873 +NV,Sulfur Dioxide,2A1_Cement-production,,TON,90.39996525 +NV,Sulfur Dioxide,2A2_Lime-production,,TON,154.7511415 +NV,Sulfur Dioxide,2A5b_Construction-and-demolition,Other_Fuel,TON,0.51541115 +NV,Sulfur Dioxide,2A6_Other-minerals,,TON,387.9275284 +NV,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.05 +NV,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,2.363975077 +NV,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.003723923 +NV,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,177.8068314 +NV,Sulfur Dioxide,2D3d_Coating-application,,TON,0.08344357 +NV,Sulfur Dioxide,2D3i_Other-solvent-use,,TON,0.03310636 +NV,Sulfur Dioxide,2H2_Ethanol Production,,TON,15.78375 +NV,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.808104168 +NV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.096996274 +NV,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0253617 +NV,Sulfur Dioxide,3F_Ag-res-on-field,,TON,3.0398 +NV,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,343.98913 +NV,Sulfur Dioxide,5C_Incineration,,TON,0.000393958 +NV,Sulfur Dioxide,5C_Incineration,biomass,TON,5.366198935 +NV,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,30.98830963 +NV,Sulfur Dioxide,5C_Open-burning-residential,,TON,7.05465823 +NV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.053522434 +NV,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.12 +NV,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,3.4949348 +NV,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,8.28998 +NV,Sulfur Dioxide,6A_Other-commertial,Other_Fuel,TON,0.035 +NV,Volatile Organic Compounds,11C_Other-natural,,TON,343041.578 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,5.890158523 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,17.45133339 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.025677361 +NV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,706.7322735 +NV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,32.69171525 +NV,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.0892475 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29.55734203 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,65.15701949 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.573312957 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.123784567 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,129.234361 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.472082339 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.85672164 +NV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,82.06450164 +NV,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.16381508 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.12 +NV,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.03 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1050.581327 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1008.028811 +NV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.137401075 +NV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1365.864828 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,385.3968483 +NV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,13389.97037 +NV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,34.3226741 +NV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,468.7627994 +NV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,70.52497267 +NV,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,55.38978647 +NV,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.89803444 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,252.6892417 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,10.09495001 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,233.347936 +NV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,102.9371802 +NV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,584.250886 +NV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,215.9963585 +NV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.714926414 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.439514123 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,292.8333363 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.196082419 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.006534585 +NV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,224.7693734 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36.1126833 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,436.8697624 +NV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.980470667 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,32.76831749 +NV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,4629.240284 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3849.569133 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.188413608 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.000933493 +NV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,131.7915312 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,39.54660139 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.51536411 +NV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.124930236 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.34875833 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1210.279619 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.063835332 +NV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1611.947805 +NV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +NV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,296.071379 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,73.80056628 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,185.0546299 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,5083.407124 +NV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1422.667039 +NV,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.380273868 +NV,Volatile Organic Compounds,2A1_Cement-production,,TON,29.64894563 +NV,Volatile Organic Compounds,2A2_Lime-production,,TON,7.54775838 +NV,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,0.97231375 +NV,Volatile Organic Compounds,2A6_Other-minerals,,TON,487.7765401 +NV,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1.287228678 +NV,Volatile Organic Compounds,2B_Chemicals-other,,TON,133.9557145 +NV,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0.01517154 +NV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,0.034135965 +NV,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,101.0291368 +NV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,13079.13539 +NV,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,6.02994268 +NV,Volatile Organic Compounds,2D3d_Coating-application,,TON,5888.192211 +NV,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,888.1740611 +NV,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,16.00284 +NV,Volatile Organic Compounds,2D3h_Printing,,TON,2343.044482 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,354.0864621 +NV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,1496.650024 +NV,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3.2189183 +NV,Volatile Organic Compounds,2H2_Ethanol Production,,TON,0.2182125 +NV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,641.9457066 +NV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,196.9108348 +NV,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,84.44182996 +NV,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1238.548455 +NV,Volatile Organic Compounds,3B2_Manure-sheep,,TON,18.717249 +NV,Volatile Organic Compounds,3B3_Manure-swine,,TON,0.467774075 +NV,Volatile Organic Compounds,3B4_Manure-other,,TON,29.2553192 +NV,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1.02957361 +NV,Volatile Organic Compounds,3B4d_Manure-goats,,TON,17.42979961 +NV,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.23248225 +NV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,433.1280942 +NV,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,46.8 +NV,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,27.042777 +NV,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,536.5331 +NV,Volatile Organic Compounds,5C_Incineration,,TON,0.049786852 +NV,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.406882487 +NV,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.0285 +NV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,210.9445027 +NV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,44.1555358 +NV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,29.93667924 +NV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,74.91812 +NV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,4.6373385 +NV,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,4.639074 +NV,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,25.26485 +NY,Ammonia,1A1a_Public-Electricity,biomass,TON,0.0204305 +NY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,32.4587364 +NY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,8.433755 +NY,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,11.6676486 +NY,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.250695 +NY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,339.4357453 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,12.32109371 +NY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.192589645 +NY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,74.05587772 +NY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.63957053 +NY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.664734215 +NY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.459115929 +NY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,2.861311702 +NY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,174.0635008 +NY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.49140116 +NY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.405574703 +NY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,10.78853011 +NY,Ammonia,1A3bii_Road-LDV,light_oil,TON,3022.071745 +NY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.46880174 +NY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,140.6155482 +NY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,26.46405187 +NY,Ammonia,1A3biii_Road-bus,light_oil,TON,6.613634649 +NY,Ammonia,1A3biii_Road-bus,natural_gas,TON,1.663952761 +NY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,96.1508475 +NY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,6.829634708 +NY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,93.02230373 +NY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,35.51343746 +NY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31.87989656 +NY,Ammonia,1A3c_Rail,diesel_oil,TON,6.971647124 +NY,Ammonia,1A3c_Rail,light_oil,TON,0.003018528 +NY,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,4.735959927 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.767752023 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.597093284 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.997942309 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.920855774 +NY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,74.1444316 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.88559763 +NY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,8.093285053 +NY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.939977955 +NY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,15.59614831 +NY,Ammonia,1A4bi_Residential-stationary,biomass,TON,477.3894054 +NY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,243.9191982 +NY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,6.753599963 +NY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,691.1999922 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.866992898 +NY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.150441942 +NY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.072421046 +NY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.981687105 +NY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.256474307 +NY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,8.071336782 +NY,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.00249556 +NY,Ammonia,2A1_Cement-production,,TON,285.8997 +NY,Ammonia,2A6_Other-minerals,,TON,17.95524965 +NY,Ammonia,2B_Chemicals-other,Other_Fuel,TON,7.16573585 +NY,Ammonia,2C_Iron-steel-alloy,,TON,1.82095 +NY,Ammonia,2C3_Aluminum-production,,TON,0.0665 +NY,Ammonia,2D3d_Coating-application,,TON,17.973209 +NY,Ammonia,2H1_Pulp-and-paper,,TON,35.8535 +NY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,6.303 +NY,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,79.4119554 +NY,Ammonia,3B1a_Cattle-dairy,,TON,24163.29911 +NY,Ammonia,3B1b_Cattle-non-dairy,,TON,1000.498655 +NY,Ammonia,3B2_Manure-sheep,,TON,297.0991952 +NY,Ammonia,3B3_Manure-swine,,TON,419.4493454 +NY,Ammonia,3B4_Manure-other,,TON,1336.421901 +NY,Ammonia,3B4_Manure-poultry,,TON,1397.485994 +NY,Ammonia,3B4d_Manure-goats,,TON,232.5469105 +NY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,7608.5 +NY,Ammonia,3Dc_Other-farm,,TON,0.0576 +NY,Ammonia,3F_Ag-res-on-field,,TON,21.542 +NY,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,1.11772 +NY,Ammonia,5B_Compost-biogas,Other_Fuel,TON,438.319458 +NY,Ammonia,5C_Incineration,biomass,TON,38.78285 +NY,Ammonia,5D1_Wastewater-domestic,,TON,27.26720238 +NY,Ammonia,5D2_Wastewater-industrial,biomass,TON,0.4009 +NY,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,2308.8305 +NY,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,15578.13132 +NY,Carbon Dioxide,1A1a_Public-Electricity,heavy_oil,TON,33610.875 +NY,Carbon Dioxide,1A1a_Public-Electricity,light_oil,TON,14830.7225 +NY,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,496097.1327 +NY,Carbon Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1250.7706 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1518493.165 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1194734.108 +NY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,67739.63118 +NY,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,283182.8129 +NY,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,23360.21152 +NY,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,13018.52291 +NY,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.108835332 +NY,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1174112.038 +NY,Carbon Dioxide,1A2c_Chemicals,natural_gas,TON,1084.4685 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1661446.261 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,32965.66447 +NY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.142915148 +NY,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,3367204.623 +NY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,358607.7753 +NY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,50545915.22 +NY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,539813.1058 +NY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2459562.663 +NY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,1586668.612 +NY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,185167.4272 +NY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,53121.4452 +NY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5837329.278 +NY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,165871.643 +NY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4839321.349 +NY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,926370.002 +NY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,276382.6031 +NY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3780.071416 +NY,Carbon Dioxide,1A3c_Rail,light_oil,TON,235.2693133 +NY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7325.542595 +NY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,37946.55102 +NY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5590.29094 +NY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,404658.0947 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,478054.615 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,659659.2686 +NY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,29153.38468 +NY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,115713.6281 +NY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1164892.297 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,599270.0137 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,11067.61526 +NY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1292.852427 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8884.01436 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,422810.6404 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,154725.6198 +NY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,586283.7575 +NY,Carbon Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,634.58925 +NY,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,330.861 +NY,Carbon Dioxide,2A1_Cement-production,,TON,320.993 +NY,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,20104.632 +NY,Carbon Dioxide,2B_Chemicals-other,,TON,14962.96475 +NY,Carbon Dioxide,2C3_Aluminum-production,,TON,228727.552 +NY,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,905.028 +NY,Carbon Dioxide,2D3d_Coating-application,Other_Fuel,TON,130.11 +NY,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,1323.52 +NY,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,37259329.3 +NY,Carbon Dioxide,5A_Solid-waste-disposal,,TON,123954.5492 +NY,Carbon Dioxide,5C_Incineration,biomass,TON,11453.3725 +NY,Carbon Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,45120.7915 +NY,Carbon Dioxide,5E_Other-waste,Other_Fuel,TON,759.18 +NY,Carbon Monoxide,11C_Other-natural,,TON,52598.40662 +NY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,38.98225 +NY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,420.5130547 +NY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,181.64205 +NY,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,114.125775 +NY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.2649545 +NY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,6504.221217 +NY,Carbon Monoxide,1A1b_Pet-refining,Other_Fuel,TON,0.000314 +NY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,41.20735 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2165.322932 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,28259.77462 +NY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,880.281616 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,5367.449748 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,408.8937564 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,153.4370867 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,108.3377553 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,18.51941504 +NY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6266.345833 +NY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,3.419 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,4608.555739 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,6723.79315 +NY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.368721706 +NY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,26423.61738 +NY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3176.641312 +NY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,463134.6984 +NY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3553.278488 +NY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28208.57063 +NY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2335.497237 +NY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5705.683548 +NY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,221.1040332 +NY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5183.40639 +NY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2460.338541 +NY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6172.372831 +NY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,17010.97675 +NY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10902.00421 +NY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2244.061971 +NY,Carbon Monoxide,1A3c_Rail,light_oil,TON,52.21029798 +NY,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1530.981093 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,846.356492 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.19150852 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.54149759 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,29.07131194 +NY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12752.95084 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1789.752167 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,136295.7992 +NY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,640.0973473 +NY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,317.9158765 +NY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,264059.0714 +NY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,67900.78181 +NY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1524.494988 +NY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,42.21000001 +NY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,8867.350466 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1823.133001 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2504.776115 +NY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,17.43957907 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,62.6292827 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,52802.01459 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,305.6108697 +NY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,62410.47323 +NY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,119.9372339 +NY,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +NY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,741.7162624 +NY,Carbon Monoxide,2A1_Cement-production,,TON,432.338 +NY,Carbon Monoxide,2A6_Other-minerals,,TON,405.467855 +NY,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,165.5751965 +NY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1461.57208 +NY,Carbon Monoxide,2C3_Aluminum-production,,TON,12563.671 +NY,Carbon Monoxide,2C5_Lead-production,,TON,115.588 +NY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.6335 +NY,Carbon Monoxide,2D3d_Coating-application,,TON,4.29594 +NY,Carbon Monoxide,2D3e_Degreasing,,TON,0 +NY,Carbon Monoxide,2D3h_Printing,,TON,0 +NY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,551.8885 +NY,Carbon Monoxide,2H2_Food-and-beverage,,TON,3609.697324 +NY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,19.54027 +NY,Carbon Monoxide,3Dc_Other-farm,,TON,1.512 +NY,Carbon Monoxide,3F_Ag-res-on-field,,TON,156.79 +NY,Carbon Monoxide,5A_Solid-waste-disposal,,TON,781.141039 +NY,Carbon Monoxide,5C_Incineration,,TON,0.033416815 +NY,Carbon Monoxide,5C_Incineration,biomass,TON,689.2925083 +NY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,43062.41052 +NY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1081.412203 +NY,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,136.71217 +NY,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.3335 +NY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.5315 +NY,Carbon Monoxide,6A_Other-commertial,Other_Fuel,TON,28.39965 +NY,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.0183178 +NY,Methane,1A1a_Public-Electricity,heavy_oil,TON,0.3689406 +NY,Methane,1A1a_Public-Electricity,natural_gas,TON,71.68324965 +NY,Methane,1A1g_Other-energy-transf,natural_gas,TON,0.023 +NY,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,34.54941918 +NY,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,124.6196632 +NY,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,378.0061375 +NY,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.281052184 +NY,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.499518659 +NY,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,411.3551378 +NY,Methane,1A2c_Chemicals,natural_gas,TON,0.02088645 +NY,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,40.46941924 +NY,Methane,1A2g_Construction_and_Mining,light_oil,TON,23.93309597 +NY,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.198264451 +NY,Methane,1A3bii_Road-LDV,diesel_oil,TON,37.70704217 +NY,Methane,1A3bii_Road-LDV,light_oil,TON,1500.685462 +NY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,46.29879788 +NY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,98.82372382 +NY,Methane,1A3biii_Road-bus,diesel_oil,TON,72.90557752 +NY,Methane,1A3biii_Road-bus,light_oil,TON,9.31947508 +NY,Methane,1A3biii_Road-bus,natural_gas,TON,237.8189688 +NY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,428.9242117 +NY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.665289664 +NY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,231.0837119 +NY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,26.75120218 +NY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,28.13921813 +NY,Methane,1A3c_Rail,diesel_oil,TON,0.170863216 +NY,Methane,1A3c_Rail,light_oil,TON,0.157738025 +NY,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.251934067 +NY,Methane,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.21950682 +NY,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,56.86884976 +NY,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.01258241 +NY,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,453.4128942 +NY,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,411.9609101 +NY,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.845275909 +NY,Methane,1A4bi_Residential-mobile,light_oil,TON,1015.366814 +NY,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17.02139506 +NY,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.56545613 +NY,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.950561714 +NY,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.344531323 +NY,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,380.1621683 +NY,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.65442915 +NY,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,569.9473379 +NY,Methane,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.026883 +NY,Methane,1B2b_Fugitive-NG-prod-distr,Other_Fuel,TON,3034.3825 +NY,Methane,2A6_Other-minerals,Other_Fuel,TON,0.2565 +NY,Methane,2B_Chemicals-other,Other_Fuel,TON,4.5965 +NY,Methane,2C7_Other-metal,Other_Fuel,TON,0.01735 +NY,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,2.3645 +NY,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,74972.07957 +NY,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,2126.015008 +NY,Methane,5C_Incineration,biomass,TON,0.3535 +NY,Methane,5D2_Wastewater-industrial,biomass,TON,0.0975 +NY,Nitrogen Oxides,11C_Other-natural,,TON,11441.12766 +NY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,29.28621 +NY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,422.0567031 +NY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,997.8 +NY,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,243.0864847 +NY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,34.4982085 +NY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,6776.100725 +NY,Nitrogen Oxides,1A1b_Pet-refining,Other_Fuel,TON,0.001457 +NY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,7.8002 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6532.287766 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2647.689464 +NY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,161.6060025 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2168.158613 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1936.352676 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1459.071431 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,645.8484052 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,77.66239154 +NY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,7527.716807 +NY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,8.17586 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,8062.491857 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,84.51651884 +NY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.055089924 +NY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,10149.47 +NY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,861.1470819 +NY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,41619.04838 +NY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1661.602164 +NY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2886.129866 +NY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5719.647079 +NY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,441.1689956 +NY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,102.4352759 +NY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17378.25064 +NY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,327.4257623 +NY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,15014.40864 +NY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1782.017809 +NY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,518.046079 +NY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,13194.71781 +NY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.574312555 +NY,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,11016.70685 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,319.0727057 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,134.6238308 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,347.927942 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,23.64517324 +NY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15825.18737 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3391.829824 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,1828.116673 +NY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,156.9796045 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,812.7754041 +NY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2503.622595 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1185.83551 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,7317.575615 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,202.6079928 +NY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,21979.21244 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4082.02857 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,49.51965189 +NY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.989152711 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,68.1972836 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,953.8601028 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1515.866258 +NY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,4101.833123 +NY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,89.50982143 +NY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,1.01766 +NY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,513.1488083 +NY,Nitrogen Oxides,2A1_Cement-production,,TON,996.7195 +NY,Nitrogen Oxides,2A6_Other-minerals,,TON,1930.329615 +NY,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,34.829065 +NY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,578.07253 +NY,Nitrogen Oxides,2C3_Aluminum-production,,TON,116.6865 +NY,Nitrogen Oxides,2C5_Lead-production,,TON,262.1495 +NY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.7542 +NY,Nitrogen Oxides,2D3d_Coating-application,,TON,3.9345 +NY,Nitrogen Oxides,2D3i_Other-solvent-use,Other_Fuel,TON,0.4245 +NY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,585.57695 +NY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,5.301 +NY,Nitrogen Oxides,3Dc_Other-farm,,TON,1.8 +NY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,5.434 +NY,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,274.9575557 +NY,Nitrogen Oxides,5C_Incineration,,TON,0.003307528 +NY,Nitrogen Oxides,5C_Incineration,biomass,TON,4563.842488 +NY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1045.204147 +NY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,48.06276451 +NY,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,28.864625 +NY,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,25.6633 +NY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.6325 +NY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.265968421 +NY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1302.753355 +NY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.059438438 +NY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,85.39605305 +NY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,3.852472419 +NY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.858782655 +NY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,4.932454514 +NY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,8.108540981 +NY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.194008511 +NY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.76956894 +NY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,26.59393911 +NY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.35177515 +NY,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,361.0819734 +NY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,11.316167 +NY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,26.3168739 +NY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,51.8987628 +NY,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,59.45156596 +NY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,1.174134657 +NY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,415.700346 +NY,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.0001035 +NY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.709946 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4347.059647 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,132.9368763 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,458.5650551 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,98.40640381 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.703242562 +NY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,139.3128218 +NY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.004330755 +NY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,69186.68097 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,704.7832788 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.871826689 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,84.89846707 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.278406199 +NY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,66.04116729 +NY,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,9164.178362 +NY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,315.85 +NY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,8.479657008 +NY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,641.38 +NY,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,2.922416974 +NY,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +NY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.033792662 +NY,PM10 Filterable,2A1_Cement-production,,TON,528.3154232 +NY,PM10 Filterable,2A2_Lime-production,,TON,1.92408E-06 +NY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,33396.34666 +NY,PM10 Filterable,2A6_Other-minerals,,TON,6671.626527 +NY,PM10 Filterable,2B_Chemicals-other,,TON,27.09622847 +NY,PM10 Filterable,2C_Iron-steel-alloy,,TON,46.8917047 +NY,PM10 Filterable,2C3_Aluminum-production,,TON,61.07944953 +NY,PM10 Filterable,2C5_Lead-production,,TON,0.051196985 +NY,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,1.888037968 +NY,PM10 Filterable,2C7a_Copper-production,,TON,0.8112 +NY,PM10 Filterable,2D3d_Coating-application,,TON,5.191027 +NY,PM10 Filterable,2D3e_Degreasing,,TON,0 +NY,PM10 Filterable,2D3h_Printing,,TON,0 +NY,PM10 Filterable,2H1_Pulp-and-paper,,TON,145.5492591 +NY,PM10 Filterable,2H2_Food-and-beverage,,TON,716.2623874 +NY,PM10 Filterable,2H3_Other-industrial-processes,,TON,53.09522473 +NY,PM10 Filterable,2I_Wood-processing,,TON,5.524 +NY,PM10 Filterable,3B1a_Cattle-dairy,,TON,4999.94593 +NY,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,3342.597221 +NY,PM10 Filterable,3Dc_Other-farm,,TON,26926.81127 +NY,PM10 Filterable,5A_Solid-waste-disposal,,TON,12.65494954 +NY,PM10 Filterable,5C_Incineration,,TON,0.012806716 +NY,PM10 Filterable,5C_Incineration,biomass,TON,26.58288669 +NY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,5330.541048 +NY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,235.4340755 +NY,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,1.529045 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,14.57933 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,30.13910605 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,55.42477515 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,71.3993592 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,1.39811875 +NY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,890.6249058 +NY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.0001535 +NY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,1.1039 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,343.6157429 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,137.6176767 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.188259656 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4495.985532 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,142.6736087 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,663.2519674 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,109.5062325 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,8.350717908 +NY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,308.7780896 +NY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.07557895 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,726.7576133 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,52.5306117 +NY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000867389 +NY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,347.5365548 +NY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,69186.68097 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,54.98737544 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5961.110855 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,119.2684713 +NY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,297.6316781 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,482.3544575 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,32.16145394 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,9.527056443 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1198.305142 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,21.00431012 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1361.874156 +NY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,124.0951062 +NY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,36.45789454 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,388.8215842 +NY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029927303 +NY,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,256.9590366 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,729.1729472 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.76819164 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,94.28632692 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.731944027 +NY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,195.5949088 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,296.6617073 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,172.7563111 +NY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.694221211 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,52.38989101 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1047.933853 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9557.89797 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,725.659584 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,20.09196005 +NY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1689.46323 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,312.1287554 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,18.31038052 +NY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.158797142 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,9.24673954 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,382.626297 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,33.42065288 +NY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,192.1916479 +NY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,10.55962411 +NY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +NY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21.248159 +NY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,533.4634282 +NY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0.0000025 +NY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,33396.34666 +NY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,6727.263689 +NY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,33.34342325 +NY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,84.7830808 +NY,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,164.263875 +NY,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.069025 +NY,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.0228 +NY,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,1.97615015 +NY,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.8112 +NY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,5.195027 +NY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +NY,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.65213 +NY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,220.270775 +NY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,9431.377915 +NY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,64.07562055 +NY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,5.524 +NY,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,4999.94593 +NY,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3342.597221 +NY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,26926.81127 +NY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,28.716 +NY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,35.3050049 +NY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.012649157 +NY,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,34.52255063 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,5330.541048 +NY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,236.0225009 +NY,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,10.0255 +NY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,1.529045 +NY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.048 +NY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,10.511102 +NY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,18.37508435 +NY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,34.93050441 +NY,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,40.81340383 +NY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.963347997 +NY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,396.9053546 +NY,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,0.0001035 +NY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.589657 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3550.183512 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,110.7672405 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,55.57031888 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,73.88041893 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,1.040435056 +NY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,127.7202808 +NY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.002694105 +NY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9820.175291 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,595.632107 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.89386558 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,55.30012621 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.990631688 +NY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,52.75735922 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,8987.995342 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,149.08 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,3.888636929 +NY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,641.38 +NY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,2.909869048 +NY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +NY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6.033188212 +NY,PM2.5 Filterable,2A1_Cement-production,,TON,211.6957575 +NY,PM2.5 Filterable,2A2_Lime-production,,TON,6.74083E-07 +NY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3339.634666 +NY,PM2.5 Filterable,2A6_Other-minerals,,TON,1157.250073 +NY,PM2.5 Filterable,2B_Chemicals-other,,TON,21.17429622 +NY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,38.26534871 +NY,PM2.5 Filterable,2C3_Aluminum-production,,TON,45.22330618 +NY,PM2.5 Filterable,2C5_Lead-production,,TON,0.037300385 +NY,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,1.151978618 +NY,PM2.5 Filterable,2C7a_Copper-production,,TON,0.8112 +NY,PM2.5 Filterable,2D3d_Coating-application,,TON,4.328585727 +NY,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +NY,PM2.5 Filterable,2D3h_Printing,,TON,0 +NY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,125.0351696 +NY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,36.12114946 +NY,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,33.98419809 +NY,PM2.5 Filterable,2I_Wood-processing,,TON,5.020768 +NY,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,1039.234695 +NY,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,694.7558224 +NY,PM2.5 Filterable,3Dc_Other-farm,,TON,5358.815355 +NY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,10.20378577 +NY,PM2.5 Filterable,5C_Incineration,,TON,0.008395556 +NY,PM2.5 Filterable,5C_Incineration,biomass,TON,19.40946423 +NY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4860.199253 +NY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,181.4331418 +NY,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.93141435 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,11.0512832 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,20.5587929 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,38.4565118 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,48.9236277 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,1.1873321 +NY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,865.0040006 +NY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,0.0001535 +NY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.983611 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,333.3011403 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,135.1845238 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.188259656 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3699.000445 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,120.3398717 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,260.3301009 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,84.91825934 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,5.691192913 +NY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,271.311471 +NY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.07362245 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,704.9549078 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,48.35381098 +NY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000867389 +NY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,310.8399192 +NY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9820.175291 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,31.86436943 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1837.081978 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,83.63132187 +NY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,91.28070837 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,263.568845 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.13092795 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.442148155 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,670.0960206 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,6.701174198 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,799.5342242 +NY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,33.19757761 +NY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.49993206 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,377.1538973 +NY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.027588059 +NY,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,246.065431 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,620.0287846 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.25180253 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,63.95646415 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.455780577 +NY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,149.9552012 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,287.7618589 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,159.3135873 +NY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.694221211 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,50.8181947 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,964.141748 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9381.714951 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,558.8798955 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,15.47418575 +NY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1689.46323 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,302.7648808 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,16.84566393 +NY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.158797142 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,8.96933725 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,352.020437 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,32.41802734 +NY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,176.8163137 +NY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,10.5470762 +NY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +NY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,21.24755455 +NY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,216.8437505 +NY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0.00000125 +NY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3339.634666 +NY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1212.887223 +NY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,26.8941711 +NY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,75.3476138 +NY,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,148.4077259 +NY,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0551284 +NY,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.0228 +NY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,1.24009075 +NY,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.8112 +NY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,4.332585727 +NY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +NY,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.54764 +NY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,194.6441795 +NY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,8751.235563 +NY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,44.81379395 +NY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.020768 +NY,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1039.234695 +NY,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,694.7558224 +NY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5358.815355 +NY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,17.014 +NY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,31.63220944 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.008553378 +NY,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,27.33744156 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4860.199253 +NY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,181.9518906 +NY,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,10.0255 +NY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.93141435 +NY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.048 +NY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,17.1729375 +NY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,33.73105315 +NY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1435.7 +NY,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,764.554085 +NY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,1.9821986 +NY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,681.7423902 +NY,Sulfur Dioxide,1A1b_Pet-refining,Other_Fuel,TON,0.0000965 +NY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,4.47985 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,12.15185533 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,22.52828356 +NY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.379712607 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,281.1804432 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,122.2168195 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,9366.492582 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1712.126904 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,26.20211596 +NY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,206.3768034 +NY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.006 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,13.33735534 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.511748539 +NY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.99731E-05 +NY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1380.480479 +NY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.06201486 +NY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1047.334565 +NY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.657649393 +NY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,50.94773323 +NY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,13.51452561 +NY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,3.853339775 +NY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.281251004 +NY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,49.38726761 +NY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.448729931 +NY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.1667866 +NY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.20963003 +NY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.68938607 +NY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,7.855780495 +NY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003795747 +NY,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,139.1067853 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,41.81287511 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,22.12699084 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1361.381689 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.031620682 +NY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,171.1660126 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.083274167 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,10.47841263 +NY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.163323685 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.994774623 +NY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,19.12624269 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,260.5178889 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,64.94348782 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,1.79814604 +NY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,647.1208383 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.120603183 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.181754469 +NY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007247073 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.077046805 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,6.941433442 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.422353681 +NY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,9.581368087 +NY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,10.03278342 +NY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +NY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,73.87091749 +NY,Sulfur Dioxide,2A1_Cement-production,,TON,94.738 +NY,Sulfur Dioxide,2A6_Other-minerals,,TON,1031.353213 +NY,Sulfur Dioxide,2B_Chemicals-other,,TON,110.720954 +NY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,670.647367 +NY,Sulfur Dioxide,2C3_Aluminum-production,,TON,2405.63 +NY,Sulfur Dioxide,2C5_Lead-production,,TON,1.215 +NY,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.0045 +NY,Sulfur Dioxide,2D3d_Coating-application,,TON,11.2716 +NY,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +NY,Sulfur Dioxide,2D3h_Printing,,TON,0 +NY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,330.402 +NY,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,5.5255 +NY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.71670865 +NY,Sulfur Dioxide,3Dc_Other-farm,,TON,0.0108 +NY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.1819 +NY,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,259.7054563 +NY,Sulfur Dioxide,5C_Incineration,,TON,0.004189402 +NY,Sulfur Dioxide,5C_Incineration,biomass,TON,412.5207776 +NY,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,433.7597287 +NY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,10.38499008 +NY,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,20.6425 +NY,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.961 +NY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.0038 +NY,Volatile Organic Compounds,11C_Other-natural,,TON,325537.0339 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,7.872283 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,33.91026405 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,43.8785 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,12.05982905 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.25923945 +NY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,773.9083058 +NY,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,65.69245425 +NY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.5002003 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,406.447715 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,821.3301156 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,81.71075802 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,163.1544702 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,115.7533626 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,11.81432138 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.171871316 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.822420281 +NY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,718.1922718 +NY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.2012072 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,858.7908137 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,446.5231423 +NY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.042857349 +NY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2764.948276 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,330.5362811 +NY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,38618.03477 +NY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,463.0071079 +NY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2142.809688 +NY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,502.373341 +NY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,213.7372233 +NY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,14.92606528 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1221.531757 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,109.3037393 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1601.906381 +NY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,678.4889395 +NY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2078.687489 +NY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,631.8177647 +NY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.237592374 +NY,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,535.6417912 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,24.62199908 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.317058424 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.181893895 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.529665865 +NY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,980.9297747 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,401.8790694 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,4399.403695 +NY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,89.05048819 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,74.7510996 +NY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,16091.03836 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,9249.469769 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,103.6656612 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,2.870279943 +NY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,1223.897356 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,343.0578945 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,192.7220081 +NY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.502451145 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.33561952 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,13145.68825 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,82.1073355 +NY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,13098.46616 +NY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,1306.981897 +NY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,886.0522462 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,671.4621831 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,474.4667515 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,22158.25123 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4257.499185 +NY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,51.34884 +NY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4135.004515 +NY,Volatile Organic Compounds,2A1_Cement-production,,TON,15.10413 +NY,Volatile Organic Compounds,2A6_Other-minerals,,TON,271.5136969 +NY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2.260183106 +NY,Volatile Organic Compounds,2B_Chemicals-other,,TON,324.5498439 +NY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,162.4920707 +NY,Volatile Organic Compounds,2C3_Aluminum-production,,TON,51.12795 +NY,Volatile Organic Compounds,2C5_Lead-production,,TON,0.8935 +NY,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,55.206642 +NY,Volatile Organic Compounds,2C7a_Copper-production,,TON,13.39955 +NY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,51112.20229 +NY,Volatile Organic Compounds,2D3d_Coating-application,,TON,31245.09661 +NY,Volatile Organic Compounds,2D3e_Degreasing,,TON,4846.670434 +NY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,114.291 +NY,Volatile Organic Compounds,2D3h_Printing,,TON,17947.57236 +NY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3498.721792 +NY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,232.759015 +NY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1652.607771 +NY,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,900.46374 +NY,Volatile Organic Compounds,2I_Wood-processing,,TON,25.5575 +NY,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1933.063942 +NY,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,80.03989724 +NY,Volatile Organic Compounds,3B2_Manure-sheep,,TON,23.76793552 +NY,Volatile Organic Compounds,3B3_Manure-swine,,TON,33.5559478 +NY,Volatile Organic Compounds,3B4_Manure-other,,TON,106.913754 +NY,Volatile Organic Compounds,3B4_Manure-poultry,,TON,111.7988884 +NY,Volatile Organic Compounds,3B4d_Manure-goats,,TON,18.60375254 +NY,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.099 +NY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1304.915478 +NY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,21.852 +NY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,525.8767124 +NY,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,3101.44172 +NY,Volatile Organic Compounds,5C_Incineration,,TON,0.024983879 +NY,Volatile Organic Compounds,5C_Incineration,biomass,TON,93.17411748 +NY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2952.701719 +NY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,201.6919554 +NY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,180.699883 +NY,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,27.94524 +NY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.3783 +NY,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.612114 +OH,Ammonia,1A1a_Public-Electricity,biomass,TON,3.06 +OH,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,3.17355413 +OH,Ammonia,1A1a_Public-Electricity,hard_coal,TON,958.7938199 +OH,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,101.22305 +OH,Ammonia,1A1a_Public-Electricity,natural_gas,TON,543.0168858 +OH,Ammonia,1A1b_Pet-refining,natural_gas,TON,77.92552367 +OH,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,7.73654 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.084678564 +OH,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.270413157 +OH,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.159619908 +OH,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,54.6940349 +OH,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.473940807 +OH,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.128751943 +OH,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.020030709 +OH,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,199.0562196 +OH,Ammonia,1A2c_Chemicals,natural_gas,TON,2.723849 +OH,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000004 +OH,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,19.80082521 +OH,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.608297766 +OH,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,26.60780795 +OH,Ammonia,1A3bii_Road-LDV,light_oil,TON,3025.70932 +OH,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.528507868 +OH,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,141.1774523 +OH,Ammonia,1A3biii_Road-bus,diesel_oil,TON,10.36086612 +OH,Ammonia,1A3biii_Road-bus,light_oil,TON,4.954170381 +OH,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.140451152 +OH,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,198.4310756 +OH,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,5.318880084 +OH,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,127.0629598 +OH,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,30.94432521 +OH,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.2282221 +OH,Ammonia,1A3c_Rail,diesel_oil,TON,14.54844054 +OH,Ammonia,1A3c_Rail,light_oil,TON,0.006733111 +OH,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.071146688 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,8.299092432 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.587117882 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.000272807 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.19822871 +OH,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.76632716 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.853962174 +OH,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.672733878 +OH,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.91980767 +OH,Ammonia,1A4bi_Residential-mobile,light_oil,TON,12.56493314 +OH,Ammonia,1A4bi_Residential-stationary,biomass,TON,677.1799648 +OH,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,26.64899971 +OH,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.498499973 +OH,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2591.275081 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.2314074 +OH,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.350095637 +OH,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.039749312 +OH,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.741419177 +OH,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.996535341 +OH,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.558114634 +OH,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.09630595 +OH,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.1792 +OH,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.1914 +OH,Ammonia,2A1_Cement-production,,TON,89.531 +OH,Ammonia,2A2_Lime-production,Other_Fuel,TON,2.85 +OH,Ammonia,2A6_Other-minerals,,TON,257.3976859 +OH,Ammonia,2B_Chemicals-other,,TON,1743.052505 +OH,Ammonia,2C_Iron-steel-alloy,,TON,87.762556 +OH,Ammonia,2C3_Aluminum-production,,TON,4.07 +OH,Ammonia,2D3d_Coating-application,,TON,2.8051507 +OH,Ammonia,2D3h_Printing,,TON,4.3072 +OH,Ammonia,2H1_Pulp-and-paper,,TON,39.686732 +OH,Ammonia,2H2_Food-and-beverage,,TON,30.422 +OH,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,164.57391 +OH,Ammonia,3B1a_Cattle-dairy,,TON,12282.46291 +OH,Ammonia,3B1b_Cattle-non-dairy,,TON,5939.875777 +OH,Ammonia,3B2_Manure-sheep,,TON,434.5075723 +OH,Ammonia,3B3_Manure-swine,,TON,32034.04241 +OH,Ammonia,3B4_Manure-other,,TON,1563.97554 +OH,Ammonia,3B4_Manure-poultry,,TON,13179.39135 +OH,Ammonia,3B4d_Manure-goats,,TON,237.125611 +OH,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14964.4 +OH,Ammonia,3Dc_Other-farm,,TON,0.16 +OH,Ammonia,3F_Ag-res-on-field,,TON,6.5 +OH,Ammonia,5A_Solid-waste-disposal,,TON,34.1313433 +OH,Ammonia,5B_Compost-biogas,Other_Fuel,TON,275.719946 +OH,Ammonia,5D1_Wastewater-domestic,,TON,50.0279735 +OH,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,7.85550852 +OH,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,92743.5 +OH,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,6548.2884 +OH,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,1635159.537 +OH,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,10594.9 +OH,Carbon Dioxide,1A1g_Other-energy-transf,natural_gas,TON,95966.855 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,626655.8843 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,723999.1131 +OH,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41268.10419 +OH,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,27937.69706 +OH,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,3885.250386 +OH,Carbon Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,9738.005086 +OH,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1594.25296 +OH,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,7750602.365 +OH,Carbon Dioxide,1A2c_Chemicals,natural_gas,TON,35177.95 +OH,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,957.1512075 +OH,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1547.4 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2439039.235 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,49497.54863 +OH,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,11.17307922 +OH,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,641206.1015 +OH,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,855973.4556 +OH,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,44541195.8 +OH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,173892.9095 +OH,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2435195.398 +OH,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,645176.5019 +OH,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,143228.2534 +OH,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5351.64114 +OH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12936363.09 +OH,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,125061.9022 +OH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7144995.359 +OH,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,808922.3072 +OH,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,259837.0652 +OH,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,8459.945805 +OH,Carbon Dioxide,1A3c_Rail,light_oil,TON,524.3562081 +OH,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,42282.55162 +OH,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2341.7363 +OH,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,405.3211373 +OH,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.098110255 +OH,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2721646.858 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,228155.7037 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,299215.2664 +OH,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13172.4747 +OH,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,113198.6498 +OH,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,938090.3251 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1752041.308 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,26449.61487 +OH,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3865.733754 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,4874.29203 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,195016.6651 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,122714.4212 +OH,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,478373.8584 +OH,Carbon Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.065 +OH,Carbon Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,158.1168 +OH,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,13348.2596 +OH,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,283208.455 +OH,Carbon Dioxide,2B_Chemicals-other,,TON,52.6 +OH,Carbon Dioxide,2C_Iron-steel-alloy,,TON,147511.5 +OH,Carbon Dioxide,2D3d_Coating-application,,TON,20538.8 +OH,Carbon Dioxide,2H2_Food-and-beverage,,TON,39290.96 +OH,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,119605675 +OH,Carbon Dioxide,5A_Solid-waste-disposal,,TON,85910 +OH,Carbon Dioxide,5C_Incineration,,TON,24390 +OH,Carbon Dioxide,5C_Incineration,biomass,TON,193278.5895 +OH,Carbon Monoxide,11C_Other-natural,,TON,41810.4181 +OH,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,63.738 +OH,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,64.88872845 +OH,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,12036.8737 +OH,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,60.9 +OH,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2702.391857 +OH,Carbon Monoxide,1A1b_Pet-refining,diesel_oil,TON,3.389427337 +OH,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2210.004133 +OH,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,7.22 +OH,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,240.18635 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,887.4808466 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,16796.45332 +OH,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,617.7979833 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,3.301481581 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4708.326811 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,17.90269209 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,216.465595 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.134648498 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OH,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,40333.60407 +OH,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,119.4344 +OH,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000025 +OH,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.33 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5485.086346 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,10134.80253 +OH,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.696457227 +OH,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,14648.32326 +OH,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8259.619514 +OH,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,659405.4198 +OH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1159.682307 +OH,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35592.86045 +OH,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1425.389735 +OH,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,6367.557822 +OH,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,39.56608149 +OH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9432.810431 +OH,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1200.628098 +OH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6631.441834 +OH,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10266.70236 +OH,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10620.79731 +OH,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,4687.128539 +OH,Carbon Monoxide,1A3c_Rail,light_oil,TON,117.2418518 +OH,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,317.8178545 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1029.254847 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.12923036 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.857380475 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.261861818 +OH,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3074.43995 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,762.3551373 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,61612.97675 +OH,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,268.1814828 +OH,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,348.7230012 +OH,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,212401.2271 +OH,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,90223.23417 +OH,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,133.2449995 +OH,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,7.492500088 +OH,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,5524.700783 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5715.306761 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5387.364196 +OH,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,52.8181564 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,36.7741323 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,33016.12588 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,240.4878884 +OH,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,49723.1245 +OH,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,1021.246683 +OH,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,9.0903 +OH,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,2.15 +OH,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,836.8836113 +OH,Carbon Monoxide,2A1_Cement-production,,TON,622.1 +OH,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,3083.89 +OH,Carbon Monoxide,2A6_Other-minerals,,TON,3717.051909 +OH,Carbon Monoxide,2B_Chemicals-other,,TON,32652.95887 +OH,Carbon Monoxide,2C_Iron-steel-alloy,,TON,50250.3339 +OH,Carbon Monoxide,2C3_Aluminum-production,,TON,48.8209 +OH,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,11.84 +OH,Carbon Monoxide,2C7a_Copper-production,,TON,162.94 +OH,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,18.22 +OH,Carbon Monoxide,2D3d_Coating-application,,TON,73.081604 +OH,Carbon Monoxide,2D3h_Printing,,TON,7.9275 +OH,Carbon Monoxide,2H1_Pulp-and-paper,,TON,683.23184 +OH,Carbon Monoxide,2H2_Food-and-beverage,,TON,1988.071797 +OH,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,107.682 +OH,Carbon Monoxide,3Dc_Other-farm,,TON,12.89 +OH,Carbon Monoxide,3F_Ag-res-on-field,,TON,57.68 +OH,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1082.659468 +OH,Carbon Monoxide,5C_Incineration,,TON,1.683904094 +OH,Carbon Monoxide,5C_Incineration,biomass,TON,90.79625 +OH,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,32624.54738 +OH,Carbon Monoxide,5C_Open-burning-residential,,TON,10896.49273 +OH,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,883.5100072 +OH,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,100.692 +OH,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,5.65 +OH,Methane,1A1a_Public-Electricity,biomass,TON,9.9874 +OH,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.287873229 +OH,Methane,1A1a_Public-Electricity,natural_gas,TON,45.80305191 +OH,Methane,1A1b_Pet-refining,natural_gas,TON,0.379527 +OH,Methane,1A1g_Other-energy-transf,natural_gas,TON,26.63776 +OH,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,12.93952029 +OH,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,80.09894982 +OH,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,262.6272076 +OH,Methane,1A2_Industrial_fuel_combustion,biomass,TON,2.859320611 +OH,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.088756524 +OH,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,0.101695296 +OH,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,5102.428392 +OH,Methane,1A2c_Chemicals,natural_gas,TON,0.6746575 +OH,Methane,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.011098014 +OH,Methane,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0296585 +OH,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,49.52739369 +OH,Methane,1A2g_Construction_and_Mining,light_oil,TON,36.44707055 +OH,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.477428163 +OH,Methane,1A3bii_Road-LDV,diesel_oil,TON,63.69280572 +OH,Methane,1A3bii_Road-LDV,light_oil,TON,1871.408478 +OH,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,16.80901422 +OH,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,118.9591751 +OH,Methane,1A3biii_Road-bus,diesel_oil,TON,26.89191841 +OH,Methane,1A3biii_Road-bus,light_oil,TON,13.78542585 +OH,Methane,1A3biii_Road-bus,natural_gas,TON,29.19953304 +OH,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,587.0277276 +OH,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.100034599 +OH,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,274.9829889 +OH,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,14.23918995 +OH,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,22.24524743 +OH,Methane,1A3c_Rail,diesel_oil,TON,0.382011417 +OH,Methane,1A3c_Rail,light_oil,TON,0.348753267 +OH,Methane,1A4ai_Commercial-institutional-stationary,biomass,TON,18.08123106 +OH,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.032061124 +OH,Methane,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.004724778 +OH,Methane,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.98222E-06 +OH,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,94.15813504 +OH,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.269001675 +OH,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,202.5743209 +OH,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,166.2781584 +OH,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.617299256 +OH,Methane,1A4bi_Residential-mobile,light_oil,TON,818.9896677 +OH,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,55.23317735 +OH,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,22.98699918 +OH,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,21.02721295 +OH,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.197696885 +OH,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,218.7582336 +OH,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.009617956 +OH,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,454.3818507 +OH,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,14.145 +OH,Methane,1B2av_Fugitive-petr-distr,light_oil,TON,0.1218 +OH,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,200.047 +OH,Methane,2A6_Other-minerals,Other_Fuel,TON,58.5521565 +OH,Methane,2B_Chemicals-other,,TON,0.001003 +OH,Methane,2C_Iron-steel-alloy,,TON,0.617 +OH,Methane,2D3d_Coating-application,,TON,0.387458 +OH,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,183726.6306 +OH,Methane,5C_Incineration,biomass,TON,804.43656 +OH,Nitrogen Oxides,11C_Other-natural,,TON,22330.89756 +OH,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,69.447 +OH,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,298.8366389 +OH,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,55234.778 +OH,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,501.9 +OH,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2638.143035 +OH,Nitrogen Oxides,1A1b_Pet-refining,diesel_oil,TON,1.372105256 +OH,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,2956.729985 +OH,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,978.75 +OH,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,146.34225 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2509.168556 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1660.693784 +OH,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,105.5738131 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,50.72759802 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1798.827838 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,68.14482942 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1147.047612 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.148535536 +OH,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,18228.49454 +OH,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,210.56703 +OH,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.8000012 +OH,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.62 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10917.27361 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,135.3597619 +OH,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.129605142 +OH,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2069.455747 +OH,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2796.534674 +OH,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,65169.08331 +OH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,508.0442515 +OH,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3461.409583 +OH,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3395.313847 +OH,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,631.0465 +OH,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,20.29871705 +OH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34765.35703 +OH,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,147.559836 +OH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,20901.89195 +OH,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1034.094399 +OH,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,522.3839216 +OH,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,24659.17616 +OH,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.235284543 +OH,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2421.261528 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,409.0669632 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,111.2124562 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.841778488 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.885234039 +OH,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4850.433862 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1510.955629 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,798.2023219 +OH,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,64.2954412 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,877.2336967 +OH,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1999.118216 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1589.306358 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,479.6820015 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,26.97300052 +OH,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,13395.60634 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,13028.78713 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,136.3561615 +OH,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,9.011052673 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,39.3681974 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,419.4022012 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1172.535905 +OH,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3297.208127 +OH,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,2436.726003 +OH,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,11.5296 +OH,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.54 +OH,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,381.0482725 +OH,Nitrogen Oxides,2A1_Cement-production,,TON,1445.3 +OH,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,6648.98 +OH,Nitrogen Oxides,2A6_Other-minerals,,TON,2985.02667 +OH,Nitrogen Oxides,2B_Chemicals-other,,TON,1627.505535 +OH,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,2802.213296 +OH,Nitrogen Oxides,2C3_Aluminum-production,,TON,59.39524 +OH,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,689.31 +OH,Nitrogen Oxides,2C7a_Copper-production,,TON,9.348 +OH,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,0.9 +OH,Nitrogen Oxides,2D3d_Coating-application,,TON,94.17919 +OH,Nitrogen Oxides,2D3h_Printing,,TON,9.68802 +OH,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,335.1584 +OH,Nitrogen Oxides,2H2_Food-and-beverage,,TON,82.3037 +OH,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,56.20023242 +OH,Nitrogen Oxides,3Dc_Other-farm,,TON,22.05 +OH,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1.572 +OH,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,199.12 +OH,Nitrogen Oxides,5C_Incineration,,TON,7.807362199 +OH,Nitrogen Oxides,5C_Incineration,biomass,TON,326.7100632 +OH,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,791.8579301 +OH,Nitrogen Oxides,5C_Open-burning-residential,,TON,769.164214 +OH,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,48.90858992 +OH,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,13.533 +OH,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.04 +OH,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.663117782 +OH,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1451.958664 +OH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.630513388 +OH,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,91.60475909 +OH,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.47927479 +OH,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.211077484 +OH,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.455982881 +OH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15.55698587 +OH,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.493274807 +OH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.55910359 +OH,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15.36894405 +OH,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.658378513 +OH,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,2486.568929 +OH,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,1.61 +OH,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,12.46457325 +OH,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2556.94477 +OH,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,122.1 +OH,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,302.5352494 +OH,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,582.457733 +OH,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,41.35 +OH,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,10.94926 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,80.01055667 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3771.617384 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.24973186 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,477.7862088 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.204658141 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.010232907 +OH,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,696.7039108 +OH,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,16.2400585 +OH,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000005 +OH,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,76432.98588 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,785.2742452 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.17550331 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.375132409 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.263535194 +OH,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,81.50278199 +OH,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,11884.3227 +OH,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,28.78092052 +OH,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.616900034 +OH,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,27.62789951 +OH,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,78.8151306 +OH,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,14.739 +OH,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1E-16 +OH,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.38639408 +OH,PM10 Filterable,2A1_Cement-production,,TON,95.369 +OH,PM10 Filterable,2A2_Lime-production,,TON,352.42031 +OH,PM10 Filterable,2A5b_Construction-and-demolition,,TON,40479.51882 +OH,PM10 Filterable,2A6_Other-minerals,,TON,8521.108994 +OH,PM10 Filterable,2B_Chemicals-other,,TON,407.910545 +OH,PM10 Filterable,2C_Iron-steel-alloy,,TON,2533.713934 +OH,PM10 Filterable,2C3_Aluminum-production,,TON,143.8598006 +OH,PM10 Filterable,2C6_Zinc-production,,TON,0.2249 +OH,PM10 Filterable,2C7_Other-metal,,TON,458.5366284 +OH,PM10 Filterable,2C7a_Copper-production,,TON,21.70465 +OH,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,40.3533 +OH,PM10 Filterable,2D3d_Coating-application,,TON,106.9549163 +OH,PM10 Filterable,2D3h_Printing,,TON,0.2997 +OH,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,4.026 +OH,PM10 Filterable,2H1_Pulp-and-paper,,TON,223.1255966 +OH,PM10 Filterable,2H2_Ethanol Production,,TON,1.14 +OH,PM10 Filterable,2H2_Food-and-beverage,,TON,658.1903329 +OH,PM10 Filterable,2H3_Other-industrial-processes,,TON,266.6311959 +OH,PM10 Filterable,2I_Wood-processing,,TON,2.375 +OH,PM10 Filterable,3B1a_Cattle-dairy,,TON,1996.620717 +OH,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,9519.91319 +OH,PM10 Filterable,3Dc_Other-farm,,TON,62529.69599 +OH,PM10 Filterable,5A_Solid-waste-disposal,,TON,485.4984969 +OH,PM10 Filterable,5C_Incineration,,TON,0.963458721 +OH,PM10 Filterable,5C_Incineration,biomass,TON,10.20618241 +OH,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4038.47542 +OH,PM10 Filterable,5C_Open-burning-residential,,TON,4112.56775 +OH,PM10 Filterable,5C_Open-burning-yard-waste,,TON,299.7623212 +OH,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,4.02 +OH,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.4336 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,9.286 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,25.04388021 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,7627.89817 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,255.9 +OH,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,749.7398124 +OH,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,893.118575 +OH,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,110.79 +OH,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,30.20045155 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,141.5824671 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,80.2011911 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.972993178 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,86.07409857 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3920.173908 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.524071034 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,527.4467863 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.31812411 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.010262068 +OH,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1539.335157 +OH,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,39.411398 +OH,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.000000115 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,885.1950511 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,78.57660477 +OH,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001335411 +OH,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,301.4710063 +OH,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,76432.98588 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,161.0073497 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4850.773576 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,33.97072144 +OH,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,254.6956809 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,240.2326468 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,30.4328768 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.936622398 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2358.927461 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,13.69137746 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1500.755262 +OH,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,93.21599339 +OH,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,30.94039255 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,722.5169049 +OH,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.066737086 +OH,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,58.14416411 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,824.5285861 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,28.50964361 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.869984883 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.571275796 +OH,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,186.168708 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,125.9697738 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,78.22640815 +OH,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.666176376 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,60.26517998 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,910.8077504 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12405.67534 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,63.42462005 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.566800009 +OH,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,71.81056794 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,972.4593821 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.374503605 +OH,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.472067367 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.43495654 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,174.1194952 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.83390537 +OH,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,143.4646115 +OH,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,96.85314482 +OH,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,29.169 +OH,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.02 +OH,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,40.03403805 +OH,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,148.720266 +OH,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,593.7807861 +OH,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,40479.51882 +OH,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,9238.828263 +OH,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,512.1174645 +OH,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,4278.115886 +OH,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,240.3561929 +OH,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.2249 +OH,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,491.2525226 +OH,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,47.52565 +OH,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,63.3253 +OH,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,129.2082835 +OH,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.89 +OH,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,10.542 +OH,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,276.9393106 +OH,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,1.14 +OH,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5267.245126 +OH,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,305.9645227 +OH,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,2.378 +OH,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1996.620717 +OH,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9519.91319 +OH,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,62531.68789 +OH,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,9.525 +OH,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,651.0798029 +OH,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.112196027 +OH,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,16.0063747 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4038.47542 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4112.56775 +OH,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,299.7623212 +OH,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,4.426422 +OH,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.5810532 +OH,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.007 +OH,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,9.933028876 +OH,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1332.521768 +OH,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,54.44 +OH,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,298.687691 +OH,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,532.188908 +OH,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,41.35 +OH,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.06987 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,34.84028245 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3237.782603 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.84755996 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,72.77909019 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.132748065 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.01021139 +OH,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,680.1356361 +OH,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,14.9637285 +OH,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,3.9E-09 +OH,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,11999.89559 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,675.6652347 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.67690743 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.144572478 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.202553153 +OH,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,80.33087992 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,11730.41917 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,22.11867016 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.243199988 +OH,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.19534495 +OH,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,76.59113495 +OH,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,14.697 +OH,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1E-16 +OH,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.20277708 +OH,PM2.5 Filterable,2A1_Cement-production,,TON,48.1402176 +OH,PM2.5 Filterable,2A2_Lime-production,,TON,213.623109 +OH,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,4064.088662 +OH,PM2.5 Filterable,2A6_Other-minerals,,TON,2109.828832 +OH,PM2.5 Filterable,2B_Chemicals-other,,TON,320.1372883 +OH,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,1620.979211 +OH,PM2.5 Filterable,2C3_Aluminum-production,,TON,131.546572 +OH,PM2.5 Filterable,2C6_Zinc-production,,TON,0.2249 +OH,PM2.5 Filterable,2C7_Other-metal,,TON,296.8239224 +OH,PM2.5 Filterable,2C7a_Copper-production,,TON,17.868213 +OH,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,19.6102 +OH,PM2.5 Filterable,2D3d_Coating-application,,TON,96.35387333 +OH,PM2.5 Filterable,2D3h_Printing,,TON,0.1809 +OH,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,4.026 +OH,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,145.5758816 +OH,PM2.5 Filterable,2H2_Ethanol Production,,TON,0.28 +OH,PM2.5 Filterable,2H2_Food-and-beverage,,TON,150.8221634 +OH,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,213.2696987 +OH,PM2.5 Filterable,2I_Wood-processing,,TON,2.2005 +OH,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,414.9959838 +OH,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1978.705438 +OH,PM2.5 Filterable,3Dc_Other-farm,,TON,11895.0309 +OH,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,172.5610847 +OH,PM2.5 Filterable,5C_Incineration,,TON,0.783882171 +OH,PM2.5 Filterable,5C_Incineration,biomass,TON,7.564055837 +OH,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3682.139434 +OH,PM2.5 Filterable,5C_Open-burning-residential,,TON,3766.24628 +OH,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,231.1325264 +OH,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,4.02 +OH,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.4336 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,7.683 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,22.51233584 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6403.475168 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,188.24 +OH,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,745.8922536 +OH,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,842.84975 +OH,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,110.79 +OH,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,27.32106155 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,137.3331854 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,78.9959264 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.972993178 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,40.8032306 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3387.882811 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,4.122174541 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,121.3040807 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.246015341 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.010250639 +OH,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1522.459477 +OH,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,38.135068 +OH,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,6.89E-08 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,858.6392224 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,72.32863022 +OH,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001335411 +OH,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,251.2659358 +OH,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,11999.89559 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,115.6803855 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1768.366081 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.12364051 +OH,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,89.89372246 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,164.028568 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.41643334 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.38120895 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1350.53318 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.883681829 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,867.9897229 +OH,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,27.25867781 +OH,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.62224017 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,700.8330329 +OH,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.061517169 +OH,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,55.65337619 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,714.9020441 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,28.01317114 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.639343216 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.512742723 +OH,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,185.0122521 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,122.190685 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,72.13797411 +OH,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.666176376 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,58.45722343 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,837.9846139 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12251.77181 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,56.76236821 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.193099829 +OH,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,59.37801069 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,943.2856207 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.944882474 +OH,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.472067367 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.27190648 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,160.1922496 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.05888394 +OH,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,131.9874331 +OH,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,94.62917544 +OH,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,29.127 +OH,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.02 +OH,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,39.85042105 +OH,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,101.4914836 +OH,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,454.983585 +OH,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4064.088662 +OH,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,2827.548096 +OH,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,424.3442078 +OH,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,3365.381155 +OH,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,228.0429598 +OH,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.2249 +OH,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,329.5398164 +OH,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,43.689213 +OH,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,42.5822 +OH,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,118.6072405 +OH,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.7712 +OH,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,10.542 +OH,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,199.3895956 +OH,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,0.28 +OH,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,4759.876783 +OH,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,252.6030254 +OH,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.2035 +OH,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,414.9959838 +OH,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1978.705438 +OH,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,11897.02281 +OH,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,6.783 +OH,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,338.1423857 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.958248706 +OH,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.3386189 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3682.139434 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3766.24628 +OH,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,231.1325264 +OH,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,4.426422 +OH,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.5810532 +OH,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,12.351 +OH,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,44.70811756 +OH,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,90662.05 +OH,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,2309 +OH,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,156.8795328 +OH,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,777.9213078 +OH,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,2184.875 +OH,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2.547594 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.827327931 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8.225247952 +OH,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.231312102 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,185.0499933 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,210.3087291 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,9.651945182 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,3220.040108 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.401680366 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.010299497 +OH,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2611.262458 +OH,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,6.5397827 +OH,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.02000375 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,18.95015439 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.75862937 +OH,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.24668E-05 +OH,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,321.0251285 +OH,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.421515236 +OH,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,562.40837 +OH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.495392224 +OH,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,30.76931634 +OH,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.5576608 +OH,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.804782617 +OH,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.02833429 +OH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,109.400314 +OH,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.576167903 +OH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,60.54061655 +OH,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,10.19500595 +OH,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.291142233 +OH,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,16.39311929 +OH,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.008454646 +OH,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,33.6202754 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,45.25629381 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.091860241 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,43.74298652 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,5.304E-05 +OH,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.65724428 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.900082686 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.668366694 +OH,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.073802721 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.983802624 +OH,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,15.36434632 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,320.7348224 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,189.2079023 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.253320497 +OH,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,82.86172363 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.43933645 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.434473113 +OH,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.021669239 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.042743937 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,3.196645374 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.12808222 +OH,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.862097299 +OH,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,275.7013049 +OH,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0544 +OH,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0022 +OH,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2016.749364 +OH,Sulfur Dioxide,2A1_Cement-production,,TON,898.2 +OH,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,8074.9001 +OH,Sulfur Dioxide,2A6_Other-minerals,,TON,2798.728094 +OH,Sulfur Dioxide,2B_Chemicals-other,,TON,1721.300407 +OH,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,3205.014391 +OH,Sulfur Dioxide,2C3_Aluminum-production,,TON,17.0652 +OH,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,1001.947733 +OH,Sulfur Dioxide,2C7a_Copper-production,,TON,145.524 +OH,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,2.803 +OH,Sulfur Dioxide,2D3d_Coating-application,,TON,0.45671836 +OH,Sulfur Dioxide,2D3h_Printing,,TON,0.068541 +OH,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,199.388506 +OH,Sulfur Dioxide,2H2_Food-and-beverage,,TON,60.496021 +OH,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,11.61125396 +OH,Sulfur Dioxide,3Dc_Other-farm,,TON,6.904 +OH,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.2917 +OH,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,569.22 +OH,Sulfur Dioxide,5C_Incineration,,TON,0.042564058 +OH,Sulfur Dioxide,5C_Incineration,biomass,TON,18.33269458 +OH,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,328.6210378 +OH,Sulfur Dioxide,5C_Open-burning-residential,,TON,128.1940301 +OH,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.995246452 +OH,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,58.764 +OH,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.0044 +OH,Volatile Organic Compounds,11C_Other-natural,,TON,246674.8435 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,22.275 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,10.82083569 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,834.026147 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.7 +OH,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,246.6909123 +OH,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,8.559210254 +OH,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,53.07913057 +OH,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1970.291315 +OH,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,20.82 +OH,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,112.943925 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,161.1592148 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,493.6607126 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,56.7701623 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.926015187 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,159.4274438 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.832164014 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,5.760712139 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.012084787 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.229610946 +OH,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1260.192694 +OH,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,57.642339 +OH,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00000001 +OH,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.08 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1053.689621 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,682.6105084 +OH,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.103202094 +OH,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1003.201594 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,964.5493832 +OH,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,54739.38387 +OH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,145.0782614 +OH,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2639.557525 +OH,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,308.0576819 +OH,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,348.7855228 +OH,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,3.733960872 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1910.767589 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,34.89664948 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1439.535365 +OH,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,368.951723 +OH,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1984.879027 +OH,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,1186.616609 +OH,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.82004909 +OH,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,126.1712138 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,34.55677855 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.564770121 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.0371014 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.084958812 +OH,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,260.4717808 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,171.674838 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2057.942564 +OH,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,35.94310783 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,83.92517077 +OH,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,13442.14151 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,12058.05868 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,19.00073756 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.050800029 +OH,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,759.5694457 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1097.557551 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,221.0938894 +OH,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.54529574 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.58864857 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5908.956486 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,65.7878126 +OH,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,10410.86054 +OH,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,10855.20481 +OH,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,1272.991498 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,842.0356416 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1433.068305 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,23317.04866 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,11491.7072 +OH,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,66.2861 +OH,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,9074.208967 +OH,Volatile Organic Compounds,2A1_Cement-production,,TON,122.239 +OH,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,38.9301 +OH,Volatile Organic Compounds,2A6_Other-minerals,,TON,920.8177659 +OH,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,9.790662562 +OH,Volatile Organic Compounds,2B_Chemicals-other,,TON,4596.66001 +OH,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1835.364917 +OH,Volatile Organic Compounds,2C3_Aluminum-production,,TON,291.6573 +OH,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,366.74327 +OH,Volatile Organic Compounds,2C7a_Copper-production,,TON,1.35 +OH,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,51079.26354 +OH,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,89.969 +OH,Volatile Organic Compounds,2D3d_Coating-application,,TON,41913.50986 +OH,Volatile Organic Compounds,2D3e_Degreasing,,TON,9780.817922 +OH,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,62.49899984 +OH,Volatile Organic Compounds,2D3h_Printing,,TON,32459.74418 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1453.168454 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0.706265944 +OH,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2473.617345 +OH,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,282.997028 +OH,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,3747.808521 +OH,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1686.865935 +OH,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,982.5970745 +OH,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,475.1900632 +OH,Volatile Organic Compounds,3B2_Manure-sheep,,TON,34.76060604 +OH,Volatile Organic Compounds,3B3_Manure-swine,,TON,2562.723176 +OH,Volatile Organic Compounds,3B4_Manure-other,,TON,125.118043 +OH,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1054.351494 +OH,Volatile Organic Compounds,3B4d_Manure-goats,,TON,18.97004791 +OH,Volatile Organic Compounds,3Dc_Other-farm,,TON,68.538 +OH,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3788.250255 +OH,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,6.584 +OH,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,363.5411 +OH,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1950.92754 +OH,Volatile Organic Compounds,5C_Incineration,,TON,0.582137011 +OH,Volatile Organic Compounds,5C_Incineration,biomass,TON,3.29170116 +OH,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2236.998643 +OH,Volatile Organic Compounds,5C_Open-burning-residential,,TON,801.842462 +OH,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,220.877504 +OH,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,252.589935 +OH,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,183.89959 +OK,Ammonia,1A1a_Public-Electricity,natural_gas,TON,413.843787 +OK,Ammonia,1A1b_Pet-refining,natural_gas,TON,55.083 +OK,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.12 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.393293782 +OK,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.313374612 +OK,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,42.74657945 +OK,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,12.80527081 +OK,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,8.791 +OK,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.136100129 +OK,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +OK,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,232.6002439 +OK,Ammonia,1A2c_Chemicals,natural_gas,TON,97.254 +OK,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.316537997 +OK,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.18309254 +OK,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,29.31088277 +OK,Ammonia,1A3bii_Road-LDV,light_oil,TON,1185.038829 +OK,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.524914673 +OK,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,140.5182846 +OK,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.798819855 +OK,Ammonia,1A3biii_Road-bus,light_oil,TON,2.450451692 +OK,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.020762147 +OK,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,97.65527524 +OK,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,18.96166406 +OK,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,69.54720492 +OK,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,7.273876185 +OK,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,18.79168284 +OK,Ammonia,1A3c_Rail,diesel_oil,TON,9.152781007 +OK,Ammonia,1A3c_Rail,light_oil,TON,0.004085689 +OK,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.196061865 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.077935382 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +OK,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.764337969 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.971369479 +OK,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.962871164 +OK,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.386134329 +OK,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.234264377 +OK,Ammonia,1A4bi_Residential-stationary,biomass,TON,204.7963501 +OK,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.084000003 +OK,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +OK,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,512.3182833 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.983795072 +OK,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.112268079 +OK,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.013655862 +OK,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.693560445 +OK,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.40948051 +OK,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,2.89860056 +OK,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.32104768 +OK,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.002 +OK,Ammonia,2A1_Cement-production,,TON,2.208 +OK,Ammonia,2A6_Other-minerals,,TON,6.243 +OK,Ammonia,2B_Chemicals-other,,TON,3133.841 +OK,Ammonia,2D3e_Degreasing,Other_Fuel,TON,0.098 +OK,Ammonia,2H1_Pulp-and-paper,,TON,111.297 +OK,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,202.20495 +OK,Ammonia,3B1a_Cattle-dairy,,TON,2078.620539 +OK,Ammonia,3B1b_Cattle-non-dairy,,TON,27215.49706 +OK,Ammonia,3B2_Manure-sheep,,TON,178.2595192 +OK,Ammonia,3B3_Manure-swine,,TON,33958.53958 +OK,Ammonia,3B4_Manure-other,,TON,2193.844442 +OK,Ammonia,3B4_Manure-poultry,,TON,7285.599786 +OK,Ammonia,3B4d_Manure-goats,,TON,372.6239454 +OK,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,32943.3 +OK,Ammonia,3F_Ag-res-on-field,,TON,3547.371 +OK,Ammonia,5B_Compost-biogas,Other_Fuel,TON,83.90041 +OK,Ammonia,5D1_Wastewater-domestic,,TON,11.3975285 +OK,Ammonia,5D2_Wastewater-industrial,biomass,TON,14.513 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,171707.1195 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,182098.8762 +OK,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10431.73689 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,654866.6325 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,14902.50786 +OK,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.875774946 +OK,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,232487.6937 +OK,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,896977.6046 +OK,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,16701780.44 +OK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,141406.2583 +OK,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2251513.205 +OK,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,350365.2478 +OK,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,74216.25221 +OK,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,771.893138 +OK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5130602.65 +OK,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,430147.4087 +OK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4246525.112 +OK,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,191032.6509 +OK,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,145895.755 +OK,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5164.855282 +OK,Carbon Dioxide,1A3c_Rail,light_oil,TON,318.3091712 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119550.2871 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,159791.8919 +OK,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7144.516956 +OK,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,47532.86596 +OK,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,392777.5976 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,490184.1976 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,8398.053309 +OK,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1020.125891 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1675.23034 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,49202.29788 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,50426.20438 +OK,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,210392.1356 +OK,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,53982034.13 +OK,Carbon Monoxide,11C_Other-natural,,TON,85272.6664 +OK,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,16.203 +OK,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,11303.867 +OK,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,4377.858 +OK,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2041.487 +OK,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,10.787 +OK,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,1611.918 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,253.3646757 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4245.113983 +OK,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,156.1562745 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4760.771588 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,943.6899542 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,61.38422271 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.111889441 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,13.37117779 +OK,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,39831.32226 +OK,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,33.756 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1495.172334 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3088.384975 +OK,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.188654724 +OK,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8065.661891 +OK,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,7873.336857 +OK,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,288007.6528 +OK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1111.043592 +OK,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,47564.85754 +OK,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,775.7210803 +OK,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,3846.092428 +OK,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,6.02653359 +OK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5334.473077 +OK,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,7455.370977 +OK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4400.016894 +OK,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4053.873361 +OK,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5501.492519 +OK,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2943.726467 +OK,Carbon Monoxide,1A3c_Rail,light_oil,TON,72.30941503 +OK,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,46.8135544 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,249.3522272 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.945 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,17.587 +OK,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1230.590367 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,377.238602 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,33403.70818 +OK,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,134.8857194 +OK,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,133.5782494 +OK,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,86448.51775 +OK,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,26089.22065 +OK,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.420000009 +OK,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +OK,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1154.645949 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2127.959192 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2185.090641 +OK,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,17.0086116 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,11.8125415 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,9323.121048 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,100.5063276 +OK,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,22804.45678 +OK,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,26324.79892 +OK,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,103.533 +OK,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,24542.9201 +OK,Carbon Monoxide,2A1_Cement-production,,TON,1161.273 +OK,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,84.214 +OK,Carbon Monoxide,2A6_Other-minerals,,TON,581.178 +OK,Carbon Monoxide,2B_Chemicals-other,,TON,1211.002 +OK,Carbon Monoxide,2C_Iron-steel-alloy,,TON,943.359 +OK,Carbon Monoxide,2C7a_Copper-production,,TON,404.24 +OK,Carbon Monoxide,2H1_Pulp-and-paper,,TON,592.835 +OK,Carbon Monoxide,2H2_Food-and-beverage,,TON,643.7051422 +OK,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,10.762 +OK,Carbon Monoxide,3F_Ag-res-on-field,,TON,14584.97 +OK,Carbon Monoxide,5A_Solid-waste-disposal,,TON,30.5541084 +OK,Carbon Monoxide,5C_Incineration,,TON,14.7097015 +OK,Carbon Monoxide,5C_Incineration,biomass,TON,33.55607937 +OK,Carbon Monoxide,5C_Open-burning-dump,,TON,41.538 +OK,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.034 +OK,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,10987.44829 +OK,Carbon Monoxide,5C_Open-burning-residential,,TON,5417.94215 +OK,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,349.8274152 +OK,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,3.085 +OK,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.904874369 +OK,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.45290857 +OK,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,64.91510225 +OK,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,13.39702069 +OK,Methane,1A2g_Construction_and_Mining,light_oil,TON,10.84026254 +OK,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.127085641 +OK,Methane,1A3bii_Road-LDV,diesel_oil,TON,51.50098637 +OK,Methane,1A3bii_Road-LDV,light_oil,TON,745.9786889 +OK,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.57476298 +OK,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,168.6364293 +OK,Methane,1A3biii_Road-bus,diesel_oil,TON,11.04534713 +OK,Methane,1A3biii_Road-bus,light_oil,TON,11.82875884 +OK,Methane,1A3biii_Road-bus,natural_gas,TON,4.36200547 +OK,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,288.5553025 +OK,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,12.72470038 +OK,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,108.1583558 +OK,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,8.988413981 +OK,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.54055652 +OK,Methane,1A3c_Rail,diesel_oil,TON,0.232825208 +OK,Methane,1A3c_Rail,light_oil,TON,0.207795544 +OK,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.680825223 +OK,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,105.8855567 +OK,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,77.21572928 +OK,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.674003003 +OK,Methane,1A4bi_Residential-mobile,light_oil,TON,305.8176106 +OK,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12.01979103 +OK,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.36709348 +OK,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.69895329 +OK,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.069801856 +OK,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,66.68732515 +OK,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.261633507 +OK,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,206.0591264 +OK,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,92018.49815 +OK,Nitrogen Oxides,11C_Other-natural,,TON,50090.812 +OK,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,87.459 +OK,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,15696.726 +OK,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,6385.873 +OK,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,3076.052 +OK,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,12.844 +OK,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,878.329 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,738.6605109 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,409.4325691 +OK,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,26.26684777 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,1844.719687 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4215.971064 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1195.080863 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,78.25565136 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,62.51684527 +OK,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,56485.7469 +OK,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,51.704 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2972.617086 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,38.69420627 +OK,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.034301642 +OK,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3499.328948 +OK,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2689.10491 +OK,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,31526.7451 +OK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,425.3574179 +OK,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5168.707721 +OK,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2008.435256 +OK,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,403.9492928 +OK,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.76329571 +OK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14887.66847 +OK,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,870.797105 +OK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13740.37631 +OK,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,373.3081687 +OK,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,280.1863259 +OK,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15305.76262 +OK,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.694162718 +OK,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,355.704599 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,91.42914762 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.817 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.167 +OK,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1486.517745 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,793.9377918 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,386.2647363 +OK,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,30.68049837 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,336.0906785 +OK,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,776.7019513 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,417.8186989 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,1.511999964 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +OK,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2870.180969 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4231.417021 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,47.03678508 +OK,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.62231908 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.9773048 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,99.47078257 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,518.0082011 +OK,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1473.075121 +OK,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,29761.08646 +OK,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,20.839 +OK,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,20821.69211 +OK,Nitrogen Oxides,2A1_Cement-production,,TON,2701.291 +OK,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,266.535 +OK,Nitrogen Oxides,2A6_Other-minerals,,TON,1115.992 +OK,Nitrogen Oxides,2B_Chemicals-other,,TON,3019.459 +OK,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,68.483 +OK,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,5.038 +OK,Nitrogen Oxides,2C7a_Copper-production,,TON,15.92 +OK,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1532.415 +OK,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,18.096 +OK,Nitrogen Oxides,3F_Ag-res-on-field,,TON,581.846 +OK,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,4.255 +OK,Nitrogen Oxides,5C_Incineration,,TON,10.18674991 +OK,Nitrogen Oxides,5C_Incineration,biomass,TON,521.3852478 +OK,Nitrogen Oxides,5C_Open-burning-dump,,TON,12.177 +OK,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.014 +OK,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,266.6856489 +OK,Nitrogen Oxides,5C_Open-burning-residential,,TON,382.4429534 +OK,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,19.36544592 +OK,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,1.944 +OK,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.628891281 +OK,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,629.1280167 +OK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.474443361 +OK,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,148.1724488 +OK,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.780102805 +OK,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.006228786 +OK,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.061908046 +OK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7.407864555 +OK,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,10.35764255 +OK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.057580263 +OK,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7.064885973 +OK,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.699482307 +OK,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,7613.170593 +OK,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.489315505 +OK,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2273.75647 +OK,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,295.75569 +OK,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,557.739658 +OK,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.625636877 +OK,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,21.59783014 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,3298.661155 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,291.1915965 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,66.40954787 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.68682251 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.503703051 +OK,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,724.9587026 +OK,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.77672 +OK,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,322805.5953 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,211.6043927 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.392261691 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.186188961 +OK,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,27.85932666 +OK,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,3438.968556 +OK,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.090719999 +OK,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +OK,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.774900339 +OK,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,473.9829298 +OK,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,77.81 +OK,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,240.3776637 +OK,PM10 Filterable,2A1_Cement-production,,TON,357.4909073 +OK,PM10 Filterable,2A2_Lime-production,,TON,116.029423 +OK,PM10 Filterable,2A5b_Construction-and-demolition,,TON,16262.90379 +OK,PM10 Filterable,2A6_Other-minerals,,TON,6707.190877 +OK,PM10 Filterable,2B_Chemicals-other,,TON,189.2295744 +OK,PM10 Filterable,2C_Iron-steel-alloy,,TON,57.81989016 +OK,PM10 Filterable,2C5_Lead-production,,TON,3.684381 +OK,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,11.07103881 +OK,PM10 Filterable,2C7a_Copper-production,,TON,1.3336 +OK,PM10 Filterable,2D3d_Coating-application,,TON,17.537 +OK,PM10 Filterable,2H1_Pulp-and-paper,,TON,418.9313496 +OK,PM10 Filterable,2H2_Food-and-beverage,,TON,224.1089765 +OK,PM10 Filterable,2H3_Other-industrial-processes,,TON,729.6655337 +OK,PM10 Filterable,3B1a_Cattle-dairy,,TON,282.0988417 +OK,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,53778.2753 +OK,PM10 Filterable,3Dc_Other-farm,,TON,130493.5675 +OK,PM10 Filterable,5A_Solid-waste-disposal,,TON,38.234 +OK,PM10 Filterable,5C_Incineration,biomass,TON,3.504917597 +OK,PM10 Filterable,5C_Open-burning-dump,,TON,170.473 +OK,PM10 Filterable,5C_Open-burning-industrial,,TON,0.3634125 +OK,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1360.096917 +OK,PM10 Filterable,5C_Open-burning-residential,,TON,2044.846322 +OK,PM10 Filterable,5C_Open-burning-yard-waste,,TON,118.6914464 +OK,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.085469156 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.495 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2450.94 +OK,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,579.025 +OK,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,747.702 +OK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.969 +OK,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,54.795 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,39.55478032 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.33778502 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.26005347 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,3412.019722 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,311.9706371 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,72.9752023 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,22.82028274 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.915784533 +OK,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1420.906452 +OK,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.044 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,238.9245669 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,23.6527119 +OK,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000346037 +OK,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,262.7854141 +OK,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,322805.5953 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,150.0124617 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1631.555176 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,26.79832781 +OK,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,217.6193229 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,151.209805 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,15.01066378 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.140902334 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1001.063004 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,44.65897518 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,803.9972104 +OK,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,19.59010476 +OK,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.11299975 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,450.1464338 +OK,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.04049608 +OK,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10.5169608 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,218.080099 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.491026144 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.198938818 +OK,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,72.86881694 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,61.66604056 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,41.83598543 +OK,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.903922917 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.82253483 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,384.9080257 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3594.190196 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.199919988 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +OK,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,15.00639059 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,368.0458107 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.420657854 +OK,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.124606184 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.74188097 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,49.23766364 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,11.21259244 +OK,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,69.79818132 +OK,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,717.0661224 +OK,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,77.88 +OK,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,496.7082607 +OK,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,365.572 +OK,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,149.877 +OK,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,16262.90379 +OK,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7015.211965 +OK,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,698.405 +OK,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,128.035 +OK,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,10.38 +OK,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,24.293 +OK,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.608 +OK,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,17.537 +OK,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,1.36 +OK,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,2.2 +OK,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,649.41 +OK,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1762.999929 +OK,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,808.093 +OK,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,282.0988417 +OK,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,53778.2753 +OK,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,130493.5675 +OK,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2066.642 +OK,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,71.105 +OK,PM10 Primary (Filt + Cond),5C_Incineration,,TON,3.513738387 +OK,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,9.92933371 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,170.473 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.375 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1360.096917 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2044.846322 +OK,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,118.6914464 +OK,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.095 +OK,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.087808206 +OK,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1836.611466 +OK,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,295.75569 +OK,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,367.8414728 +OK,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,0.625636877 +OK,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,21.24403683 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,2861.628776 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,266.3461151 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,33.86281172 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,13.46391278 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.503331814 +OK,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,710.284139 +OK,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.75672 +OK,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,35123.31739 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,182.227974 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.374256471 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.18644291 +OK,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,26.69275963 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,3395.221206 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.06972 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +OK,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.176195007 +OK,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,445.2567447 +OK,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,64.77697479 +OK,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,236.1376515 +OK,PM2.5 Filterable,2A1_Cement-production,,TON,193.1457734 +OK,PM2.5 Filterable,2A2_Lime-production,,TON,15.45513388 +OK,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1626.290379 +OK,PM2.5 Filterable,2A6_Other-minerals,,TON,1290.571649 +OK,PM2.5 Filterable,2B_Chemicals-other,,TON,158.738232 +OK,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,47.56234781 +OK,PM2.5 Filterable,2C5_Lead-production,,TON,1.473752 +OK,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,9.143170178 +OK,PM2.5 Filterable,2C7a_Copper-production,,TON,1.31146475 +OK,PM2.5 Filterable,2D3d_Coating-application,,TON,14.15986392 +OK,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,313.3054068 +OK,PM2.5 Filterable,2H2_Food-and-beverage,,TON,27.52147476 +OK,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,618.6531471 +OK,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,58.63401315 +OK,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,11177.76574 +OK,PM2.5 Filterable,3Dc_Other-farm,,TON,25664.87028 +OK,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,12.4622941 +OK,PM2.5 Filterable,5C_Incineration,biomass,TON,2.120631767 +OK,PM2.5 Filterable,5C_Open-burning-dump,,TON,97.104872 +OK,PM2.5 Filterable,5C_Open-burning-industrial,,TON,0.3406992 +OK,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1240.088235 +OK,PM2.5 Filterable,5C_Open-burning-residential,,TON,1872.648681 +OK,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,91.5173518 +OK,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.085469156 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.093492701 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2013.795 +OK,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,578.451 +OK,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,557.8038038 +OK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,0.969 +OK,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,54.44120671 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,38.36759005 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,20.02862865 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.26005347 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,2975.320339 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,287.1493009 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,40.43042533 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,15.5981968 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.915232038 +OK,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1379.405995 +OK,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,2.024 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,231.7568219 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,21.7720099 +OK,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000346037 +OK,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,243.2192261 +OK,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,35123.31739 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,107.3095338 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,600.2167495 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.52845285 +OK,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,88.54647608 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,109.0936218 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,7.307351965 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.051626548 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,664.4080624 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,14.63612667 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,557.9700673 +OK,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.484973879 +OK,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.644700008 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,436.6365422 +OK,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.03732965 +OK,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,10.1867523 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,188.6857524 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.473610217 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.199079079 +OK,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,71.67771378 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,59.81606675 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,38.5794484 +OK,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.903922917 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.16786095 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,354.1348991 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,3550.442847 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.178919999 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +OK,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.40768557 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,357.0044608 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,3.147098119 +OK,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.124606184 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.68962392 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,45.29946076 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.87621377 +OK,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,64.21432264 +OK,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,688.331569 +OK,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,64.84697479 +OK,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,492.4593185 +OK,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,201.2268687 +OK,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,45.05270588 +OK,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1626.290379 +OK,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1499.174732 +OK,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,506.6516575 +OK,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,108.1934592 +OK,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,8.169371 +OK,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,22.36513137 +OK,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,2.585864551 +OK,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,14.15986392 +OK,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,1.36 +OK,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,2.2 +OK,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,505.9020573 +OK,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1566.412447 +OK,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,697.0806134 +OK,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,58.63401315 +OK,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,11177.76574 +OK,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,25664.87028 +OK,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1311.197 +OK,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,16.4802941 +OK,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,3.468661313 +OK,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.045124954 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,97.104872 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,0.3522867 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1240.088235 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1872.648681 +OK,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,91.5173518 +OK,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.095 +OK,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7.919 +OK,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,43900.471 +OK,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,136.813 +OK,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,17283.928 +OK,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,3.297 +OK,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,376.292 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.347264147 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.401845548 +OK,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.058471434 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,172.4630579 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,268.6471178 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1285.217118 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,331.2551221 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.124479054 +OK,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,353.121855 +OK,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.017 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.08379203 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.228360141 +OK,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.60761E-05 +OK,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,376.7600498 +OK,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.734589045 +OK,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,267.4811386 +OK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.214856592 +OK,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,36.15302476 +OK,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.038708807 +OK,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.184865569 +OK,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.004086786 +OK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,43.51003733 +OK,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.855793861 +OK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,36.15692677 +OK,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.045197665 +OK,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.304013146 +OK,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,10.31343151 +OK,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005130979 +OK,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.34677002 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,10.38967678 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.741 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.02 +OK,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.862615412 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.000116595 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.494421926 +OK,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.040034199 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.411466986 +OK,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.430156114 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,80.81691678 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.59640004 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +OK,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,17.3163495 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.280651348 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.137922363 +OK,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.005717731 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.014636961 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.806198653 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.463555698 +OK,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3.456142692 +OK,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,324.6558456 +OK,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.02 +OK,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,95.93591096 +OK,Sulfur Dioxide,2A1_Cement-production,,TON,821.993 +OK,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,10.128 +OK,Sulfur Dioxide,2A6_Other-minerals,,TON,2064.892 +OK,Sulfur Dioxide,2B_Chemicals-other,,TON,3051.743 +OK,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,49.223 +OK,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,72.473 +OK,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,1.026 +OK,Sulfur Dioxide,3F_Ag-res-on-field,,TON,156.7955 +OK,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0.024 +OK,Sulfur Dioxide,5C_Incineration,,TON,1.088743893 +OK,Sulfur Dioxide,5C_Incineration,biomass,TON,16.05841581 +OK,Sulfur Dioxide,5C_Open-burning-dump,,TON,5.735 +OK,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.004 +OK,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,110.6745333 +OK,Sulfur Dioxide,5C_Open-burning-residential,,TON,63.7404935 +OK,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.373828822 +OK,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,2.966 +OK,Volatile Organic Compounds,11C_Other-natural,,TON,452713.749 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,4.857851256 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,299.5864974 +OK,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,209.1576513 +OK,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,5738.587088 +OK,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,268.3932739 +OK,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,7037.848639 +OK,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,0.706 +OK,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,550.922 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,47.40369196 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,127.1925427 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14.0322166 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,127.5597559 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,286.5152294 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,3.590717854 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.402876738 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,6.672818224 +OK,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,12656.30971 +OK,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,12.24 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,289.0052025 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,211.989373 +OK,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.027471157 +OK,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1689.672183 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,775.3336925 +OK,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,24363.20127 +OK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,117.4566898 +OK,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4544.849356 +OK,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,175.9508623 +OK,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,297.6628447 +OK,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.557596921 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1225.565268 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,325.2774662 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,821.1863838 +OK,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,194.21022 +OK,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,971.1869979 +OK,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,722.7808946 +OK,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.894137886 +OK,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,17.5769834 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,7.064979214 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.91 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,13.047 +OK,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,86.16126405 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.58195242 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1178.920597 +OK,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16.69114831 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,31.17160241 +OK,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5178.920222 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3814.123772 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.059891997 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +OK,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,158.7346073 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,394.1434159 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,110.5850855 +OK,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.448062846 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.06921336 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1687.536182 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,26.10158445 +OK,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5646.644942 +OK,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,97815.0528 +OK,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,4694.524605 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1720.876496 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,750.491035 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,8651.9829 +OK,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,7402.292158 +OK,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,64855.76469 +OK,Volatile Organic Compounds,2A1_Cement-production,,TON,166.657 +OK,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,0.116 +OK,Volatile Organic Compounds,2A6_Other-minerals,,TON,133.9160866 +OK,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.129607734 +OK,Volatile Organic Compounds,2B_Chemicals-other,,TON,1259.034 +OK,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,188.242 +OK,Volatile Organic Compounds,2C7a_Copper-production,,TON,98.4 +OK,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,17230.18194 +OK,Volatile Organic Compounds,2D3d_Coating-application,,TON,9686.834366 +OK,Volatile Organic Compounds,2D3e_Degreasing,,TON,2853.3728 +OK,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,19.08420014 +OK,Volatile Organic Compounds,2D3h_Printing,,TON,3755.669339 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3883.809132 +OK,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,979.1773719 +OK,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,4346.403 +OK,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,346.6768883 +OK,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1117.806 +OK,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,166.2896381 +OK,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,2177.239763 +OK,Volatile Organic Compounds,3B2_Manure-sheep,,TON,14.26076133 +OK,Volatile Organic Compounds,3B3_Manure-swine,,TON,2716.683037 +OK,Volatile Organic Compounds,3B4_Manure-other,,TON,175.5075605 +OK,Volatile Organic Compounds,3B4_Manure-poultry,,TON,582.8479651 +OK,Volatile Organic Compounds,3B4d_Manure-goats,,TON,29.80991466 +OK,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3609.322204 +OK,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2183.42 +OK,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0.237 +OK,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,593.65886 +OK,Volatile Organic Compounds,5C_Incineration,,TON,4.589043928 +OK,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.703911783 +OK,Volatile Organic Compounds,5C_Open-burning-dump,,TON,9.024 +OK,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,753.3870273 +OK,Volatile Organic Compounds,5C_Open-burning-residential,,TON,398.6911987 +OK,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,87.4568544 +OK,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,57.324845 +OK,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0.573 +OK,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,1.802 +OR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,0.6055 +OR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,43.55816 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.907504771 +OR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.477217239 +OR,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +OR,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.250125021 +OR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.223999988 +OR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.59935999 +OR,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.02272501 +OR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,78.61562901 +OR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.635868924 +OR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.335805939 +OR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,28.99326145 +OR,Ammonia,1A3bii_Road-LDV,light_oil,TON,1062.337149 +OR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.521840352 +OR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.36467274 +OR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,10.09651989 +OR,Ammonia,1A3biii_Road-bus,light_oil,TON,3.408145868 +OR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.025092681 +OR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,66.27150498 +OR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.621260735 +OR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,62.65030008 +OR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,12.23343796 +OR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.74870906 +OR,Ammonia,1A3c_Rail,diesel_oil,TON,3.90706731 +OR,Ammonia,1A3c_Rail,light_oil,TON,0.001768273 +OR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2.286362915 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.611974771 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.271585815 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.049954667 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.049954667 +OR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.946025154 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.3188528 +OR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.024375879 +OR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.385098232 +OR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.104423709 +OR,Ammonia,1A4bi_Residential-stationary,biomass,TON,494.1350563 +OR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,6.46800059 +OR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.850499959 +OR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,478.8877967 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.416072399 +OR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.168333523 +OR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.014320911 +OR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.427168488 +OR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.301461325 +OR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.977340913 +OR,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Ammonia,2A1_Cement-production,,TON,0.017855 +OR,Ammonia,2A6_Other-minerals,Other_Fuel,TON,3.687435 +OR,Ammonia,2C_Iron-steel-alloy,Other_Fuel,TON,1.07043 +OR,Ammonia,2H1_Pulp-and-paper,,TON,174.8805 +OR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,397.2285 +OR,Ammonia,3B1a_Cattle-dairy,,TON,4001.137591 +OR,Ammonia,3B1b_Cattle-non-dairy,,TON,5564.84222 +OR,Ammonia,3B2_Manure-sheep,,TON,631.3358008 +OR,Ammonia,3B3_Manure-swine,,TON,71.63523164 +OR,Ammonia,3B4_Manure-other,,TON,727.846102 +OR,Ammonia,3B4_Manure-poultry,,TON,1199.554964 +OR,Ammonia,3B4d_Manure-goats,,TON,199.9457495 +OR,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,13716.3 +OR,Ammonia,3F_Ag-res-on-field,,TON,682.68 +OR,Ammonia,5B_Compost-biogas,Other_Fuel,TON,104.970628 +OR,Ammonia,5D1_Wastewater-domestic,,TON,13.126062 +OR,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,25500 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,235084.6717 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,276156.5995 +OR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15804.25994 +OR,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,76800 +OR,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +OR,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,35613.3 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1063823.058 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,27317.84036 +OR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.073885402 +OR,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,546168.197 +OR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,967772.1287 +OR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,13669984.44 +OR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,111938.9591 +OR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,717830.3545 +OR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,622660.0575 +OR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,97353.77845 +OR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,894.068808 +OR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3989041.639 +OR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,84371.99554 +OR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3091426.492 +OR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,306141.3545 +OR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,132453.7157 +OR,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2280.932064 +OR,Carbon Dioxide,1A3c_Rail,light_oil,TON,137.2394677 +OR,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.383957253 +OR,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,160.0790427 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,162323.6754 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,246055.9684 +OR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10961.22417 +OR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,47404.33743 +OR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,381088.7 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,544004.0884 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,12425.86302 +OR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1144.923843 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1756.81488 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,100440.1188 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,37123.09783 +OR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,143370.4756 +OR,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,14243.922 +OR,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,14313665.07 +OR,Carbon Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,69800 +OR,Carbon Monoxide,11C_Other-natural,,TON,151573.7621 +OR,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,72.59 +OR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.098 +OR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,710 +OR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1592.063 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,346.2460815 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6703.798082 +OR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,239.5354086 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,6504.422697 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,114.1331215 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,204.0076148 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.996372875 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,11.12966794 +OR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2567.345117 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2361.025734 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,5574.29891 +OR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.382532433 +OR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8526.76398 +OR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11225.75599 +OR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,247569.7317 +OR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,926.7432988 +OR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12634.60007 +OR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1574.651888 +OR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4314.23333 +OR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,3.7322335 +OR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3597.675541 +OR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1362.351707 +OR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4209.536681 +OR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8228.637067 +OR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5605.732057 +OR,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1259.720509 +OR,Carbon Monoxide,1A3c_Rail,light_oil,TON,30.73723287 +OR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,771.4906047 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,547.4947657 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,23.64698516 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.314547944 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.301965998 +OR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1379.790122 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,553.4472016 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,50619.1031 +OR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,211.0417678 +OR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,133.041602 +OR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,85724.18628 +OR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,61316.67139 +OR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,32.34000263 +OR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.252500296 +OR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,995.9218971 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1265.541094 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2842.093562 +OR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,13.31027002 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,12.36138538 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14817.18816 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,73.57593186 +OR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,15400.61094 +OR,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,17.21443232 +OR,Carbon Monoxide,2A6_Other-minerals,,TON,662.91 +OR,Carbon Monoxide,2B_Chemicals-other,,TON,168.19 +OR,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1148.082 +OR,Carbon Monoxide,2C3_Aluminum-production,,TON,5.813 +OR,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1 +OR,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,11.901 +OR,Carbon Monoxide,2D3d_Coating-application,,TON,1.687 +OR,Carbon Monoxide,2D3h_Printing,,TON,1 +OR,Carbon Monoxide,2H1_Pulp-and-paper,,TON,6145.88 +OR,Carbon Monoxide,2H2_Food-and-beverage,,TON,875.6166064 +OR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,4.363 +OR,Carbon Monoxide,3F_Ag-res-on-field,,TON,6258.6 +OR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,558.2380013 +OR,Carbon Monoxide,5C_Incineration,biomass,TON,15.492316 +OR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,19526.09833 +OR,Carbon Monoxide,5C_Open-burning-residential,,TON,3109.142117 +OR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,294.1514656 +OR,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.186109433 +OR,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,29.63517482 +OR,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,97.57458469 +OR,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,22.13823659 +OR,Methane,1A2g_Construction_and_Mining,light_oil,TON,20.19367432 +OR,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.258853062 +OR,Methane,1A3bii_Road-LDV,diesel_oil,TON,62.61433893 +OR,Methane,1A3bii_Road-LDV,light_oil,TON,692.2708597 +OR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.678885559 +OR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,43.33120087 +OR,Methane,1A3biii_Road-bus,diesel_oil,TON,19.33989326 +OR,Methane,1A3biii_Road-bus,light_oil,TON,12.62234223 +OR,Methane,1A3biii_Road-bus,natural_gas,TON,7.95948888 +OR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,277.0870617 +OR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,2.43796757 +OR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,143.303067 +OR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,17.56926294 +OR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.73195813 +OR,Methane,1A3c_Rail,diesel_oil,TON,0.102247324 +OR,Methane,1A3c_Rail,light_oil,TON,0.092399451 +OR,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.464122734 +OR,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,168.0009406 +OR,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,111.2823043 +OR,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.589613897 +OR,Methane,1A4bi_Residential-mobile,light_oil,TON,333.0670663 +OR,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.40156207 +OR,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.86176925 +OR,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.47429694 +OR,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.072629747 +OR,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,116.0567748 +OR,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.060712933 +OR,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,140.6342398 +OR,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,39182.38979 +OR,Nitrogen Oxides,11C_Other-natural,,TON,30027.73981 +OR,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,136.32 +OR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0 +OR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1714 +OR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1500.635 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,985.2315397 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,637.5051627 +OR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,39.52681702 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2760.932118 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,506.9494057 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,448.8495727 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,109.968146 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,5.02786142 +OR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,4004.376615 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4731.629461 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,75.35400345 +OR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.070071565 +OR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2038.244922 +OR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3751.262859 +OR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,30800.89342 +OR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,399.3617365 +OR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1491.185374 +OR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4764.327969 +OR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,448.5458943 +OR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,3.60072494 +OR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12209.92409 +OR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,154.2037074 +OR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10180.13818 +OR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,712.9811244 +OR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,279.2929751 +OR,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,6866.762751 +OR,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.329200867 +OR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5387.648377 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,300.7473768 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,109.6825919 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.471557357 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.218201128 +OR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1709.590309 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1077.833021 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,651.395786 +OR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,44.79840574 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,345.5416703 +OR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,825.778673 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,948.6995545 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,116.4239925 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,15.30900086 +OR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2386.413145 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2833.118154 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,45.7515428 +OR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.508787161 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,13.65903673 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,218.4086708 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,369.022314 +OR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1041.352623 +OR,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,12.42046074 +OR,Nitrogen Oxides,2A6_Other-minerals,,TON,1333.05 +OR,Nitrogen Oxides,2B_Chemicals-other,,TON,341.98 +OR,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,320.03 +OR,Nitrogen Oxides,2C3_Aluminum-production,,TON,6.734 +OR,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,4.891 +OR,Nitrogen Oxides,2D3d_Coating-application,,TON,3.568 +OR,Nitrogen Oxides,2D3h_Printing,,TON,1 +OR,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2278.124 +OR,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,1 +OR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,5 +OR,Nitrogen Oxides,3F_Ag-res-on-field,,TON,187.972 +OR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,203.99806 +OR,Nitrogen Oxides,5C_Incineration,biomass,TON,269.2192231 +OR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,473.9344539 +OR,Nitrogen Oxides,5C_Open-burning-residential,,TON,219.4688596 +OR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,16.2833851 +OR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.257426719 +OR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,705.692242 +OR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.432712466 +OR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.22799281 +OR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.51256269 +OR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.705846503 +OR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.086767104 +OR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.919209107 +OR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.962022371 +OR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.268349517 +OR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,14.86164918 +OR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.829255733 +OR,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,313.0873307 +OR,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,9.870364 +OR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +OR,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,309.3966 +OR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,118.61907 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,777.6290771 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.11696702 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,489.6137459 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.1520978 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.316247874 +OR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,49.00270208 +OR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,271913.5488 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,370.3484711 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.874636604 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.728883232 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.067468502 +OR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.14065861 +OR,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,9154.189537 +OR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,6.98543955 +OR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.917700043 +OR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.980100458 +OR,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.076215818 +OR,PM10 Filterable,2A1_Cement-production,,TON,99.901 +OR,PM10 Filterable,2A2_Lime-production,,TON,2.672 +OR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,13129.29229 +OR,PM10 Filterable,2A6_Other-minerals,,TON,2632.176807 +OR,PM10 Filterable,2B_Chemicals-other,,TON,215.878762 +OR,PM10 Filterable,2C_Iron-steel-alloy,,TON,127.2386947 +OR,PM10 Filterable,2C3_Aluminum-production,,TON,2.27239121 +OR,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,44.49914665 +OR,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,42.88 +OR,PM10 Filterable,2D3d_Coating-application,,TON,52.28261 +OR,PM10 Filterable,2H1_Pulp-and-paper,,TON,1872.392478 +OR,PM10 Filterable,2H2_Food-and-beverage,,TON,173.166823 +OR,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,45.608876 +OR,PM10 Filterable,2I_Wood-processing,,TON,17.355012 +OR,PM10 Filterable,3B1a_Cattle-dairy,,TON,976.749792 +OR,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,13486.73314 +OR,PM10 Filterable,3Dc_Other-farm,,TON,35165.29313 +OR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,71.4965 +OR,PM10 Filterable,5C_Incineration,biomass,TON,7.519199035 +OR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,2417.065614 +OR,PM10 Filterable,5C_Open-burning-residential,,TON,1173.456294 +OR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,99.80139022 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,10.17 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.344 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,340 +OR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,275.261 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,55.40095256 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.51892986 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.907192889 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,804.1042735 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,36.96899159 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,532.0573046 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,34.15165073 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.732288585 +OR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,77.07848409 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,384.5134007 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,43.38597928 +OR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000729519 +OR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,164.652894 +OR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,271913.5488 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,219.8606917 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1764.687613 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.08696036 +OR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,85.82869253 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,358.1556116 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,21.89946188 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.161216757 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,734.2925974 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.02028251 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,835.8387859 +OR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,40.56573989 +OR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,15.49532 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,201.5750321 +OR,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.017490722 +OR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,125.3276113 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,445.8706691 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.225587777 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.820438743 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.150746744 +OR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.60815666 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,85.4648806 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,64.29674657 +OR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.393031206 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,22.07339554 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,377.3392099 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9615.346468 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,15.39383987 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.024399994 +OR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,12.94581101 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,236.2698979 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,18.53393957 +OR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.140106542 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.819746391 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,102.6360713 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,8.109917561 +OR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,48.72489898 +OR,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.221338305 +OR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,102.096 +OR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,2.672 +OR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,13129.29229 +OR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2648.153032 +OR,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,228.842479 +OR,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,293.355951 +OR,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,4.333 +OR,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,46.485 +OR,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,42.88 +OR,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,52.28261 +OR,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,6.73 +OR,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2738.679079 +OR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2283.012638 +OR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,48.826 +OR,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,17.355012 +OR,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,976.749792 +OR,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,13486.73314 +OR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,35165.29313 +OR,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,1021.34 +OR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,90.5169 +OR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,13.91759904 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2417.065614 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1173.456294 +OR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,99.80139022 +OR,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,8.331684 +OR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +OR,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,232.3966 +OR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,118.61907 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,678.4888721 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,32.38859183 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,57.12222763 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,20.29035886 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.295001119 +OR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,27.51335831 +OR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,28480.14437 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,329.0078548 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.861229671 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.271791923 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.05211055 +OR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.85836839 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,9111.496615 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,5.36843957 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.705599976 +OR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.739054922 +OR,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.076215818 +OR,PM2.5 Filterable,2A1_Cement-production,,TON,35.25917696 +OR,PM2.5 Filterable,2A2_Lime-production,,TON,1.24267979 +OR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1312.929229 +OR,PM2.5 Filterable,2A6_Other-minerals,,TON,448.8796141 +OR,PM2.5 Filterable,2B_Chemicals-other,,TON,114.5739711 +OR,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,121.7096857 +OR,PM2.5 Filterable,2C3_Aluminum-production,,TON,2.27239121 +OR,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,23.54642631 +OR,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,42.88 +OR,PM2.5 Filterable,2D3d_Coating-application,,TON,45.22769288 +OR,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1403.85712 +OR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,8.055337876 +OR,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,28.16441691 +OR,PM2.5 Filterable,2I_Wood-processing,,TON,5.604886405 +OR,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,203.0166394 +OR,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2803.205464 +OR,PM2.5 Filterable,3Dc_Other-farm,,TON,7015.489782 +OR,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,24.59462898 +OR,PM2.5 Filterable,5C_Incineration,biomass,TON,6.318154335 +OR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,2203.795261 +OR,PM2.5 Filterable,5C_Open-burning-residential,,TON,1074.638921 +OR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,76.95212566 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,8.63132 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.095 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,263 +OR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,275.261 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,53.73685409 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.9922099 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.907192889 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,704.9700708 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,34.2039504 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,99.55890276 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,23.28998164 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.711053652 +OR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,55.19771861 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,372.9780105 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,39.93619959 +OR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000729519 +OR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,141.367976 +OR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,28480.14437 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,160.4397018 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,697.5814385 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.96705385 +OR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,31.74033048 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,258.1553218 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,9.167361473 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.031571184 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,447.2369044 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.894211095 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,521.7581145 +OR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,12.98362996 +OR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.009132902 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,195.5257349 +OR,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.01611893 +OR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,118.7921588 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,404.5148629 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.201325358 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.366362436 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.135628932 +OR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.34860732 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,82.9009468 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,59.29411043 +OR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.393031206 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.41119773 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,347.1696391 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9572.637506 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,13.7768407 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.812299969 +OR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,10.70476539 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,229.1818198 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,17.05130564 +OR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.140106542 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.765153539 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,94.4260297 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,7.866620511 +OR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,44.82690973 +OR,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.221338305 +OR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,37.45417696 +OR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,1.24267979 +OR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1312.929229 +OR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,458.5958441 +OR,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,127.5376881 +OR,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,284.809942 +OR,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,4.333 +OR,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,25.4683495 +OR,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,42.88 +OR,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,45.22769288 +OR,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,6.73 +OR,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2245.464743 +OR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2117.901201 +OR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,31.38154091 +OR,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,5.604886405 +OR,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,203.0166394 +OR,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2803.205464 +OR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,7015.489782 +OR,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,720.17 +OR,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,43.61502898 +OR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,12.71655433 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,2203.795261 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1074.638921 +OR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,76.95212566 +OR,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,25.43 +OR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.001 +OR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,3278 +OR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,114.169 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.894018116 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.087013205 +OR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.0885853 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,213.9239436 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,16.18737487 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,775.2215156 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,505.3518639 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,1.922717167 +OR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,41.61699419 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,8.339819102 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.418753338 +OR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.3958E-05 +OR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,284.953746 +OR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,8.444064618 +OR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,173.7165535 +OR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.968686724 +OR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,9.135619216 +OR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.421871398 +OR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.231976326 +OR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.004733638 +OR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,33.76308936 +OR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.07188067 +OR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.29171233 +OR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3.889588755 +OR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.712620003 +OR,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,4.402458814 +OR,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002218005 +OR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,109.7470427 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,24.95547403 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.483394563 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,19.60650526 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,3.304336564 +OR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,15.83879323 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.428789575 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.842103712 +OR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.061423551 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.409650472 +OR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.240513753 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,207.6826333 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,45.92279694 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.1437765 +OR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,14.93784945 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.444245924 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.204088053 +OR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.006418208 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.015346851 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.646134514 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.341263309 +OR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2.355391947 +OR,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.005037207 +OR,Sulfur Dioxide,2A6_Other-minerals,,TON,389.007 +OR,Sulfur Dioxide,2B_Chemicals-other,,TON,44.121 +OR,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,42.73219 +OR,Sulfur Dioxide,2C3_Aluminum-production,,TON,1.149 +OR,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,1 +OR,Sulfur Dioxide,2D3d_Coating-application,,TON,1.024 +OR,Sulfur Dioxide,2D3h_Printing,,TON,1 +OR,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.26 +OR,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,690.05928 +OR,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,1 +OR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,5 +OR,Sulfur Dioxide,3F_Ag-res-on-field,,TON,49.7035 +OR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,153.61 +OR,Sulfur Dioxide,5C_Incineration,biomass,TON,6.505780547 +OR,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,196.6827895 +OR,Sulfur Dioxide,5C_Open-burning-residential,,TON,36.57814159 +OR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,1.996027912 +OR,Volatile Organic Compounds,11C_Other-natural,,TON,890025.111 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,5.09 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.000555 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,30.9 +OR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,220.304 +OR,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,70.34 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,65.54719277 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,189.8292634 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21.09196953 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,223.4101017 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,35.61245781 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.040503295 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.559914089 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.223662634 +OR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,313.5403231 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,437.5801998 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,374.6149337 +OR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.055954324 +OR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,977.1454611 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1354.195242 +OR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,25119.78842 +OR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,122.7556473 +OR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1150.689317 +OR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,391.9746157 +OR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,288.5949909 +OR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.44220125 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,825.0025441 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,60.24284963 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1023.159089 +OR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,398.2099326 +OR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1428.966426 +OR,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,333.9618749 +OR,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.746051308 +OR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,338.7855391 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,87.84844515 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.894918367 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.075611325 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.022081187 +OR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,94.20445539 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,116.0589151 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1689.862555 +OR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.05505926 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,31.41041777 +OR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5423.782688 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,10161.97933 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,4.611683673 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.596399987 +OR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,136.9307116 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,221.4435145 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,198.9770665 +OR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.183337759 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.21879277 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3439.499729 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,19.56641606 +OR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3395.41873 +OR,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +OR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,604.8769804 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,310.2461913 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,562.1921217 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2364.290258 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4150.693844 +OR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,1.54 +OR,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,26.03150682 +OR,Volatile Organic Compounds,2A6_Other-minerals,,TON,55.48203896 +OR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,15.85522438 +OR,Volatile Organic Compounds,2B_Chemicals-other,,TON,166.366617 +OR,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,399.286 +OR,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1.9052 +OR,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,154.922 +OR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,17538.82352 +OR,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,30.749 +OR,Volatile Organic Compounds,2D3d_Coating-application,,TON,9815.262892 +OR,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,2660.587898 +OR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,4.95500002 +OR,Volatile Organic Compounds,2D3h_Printing,,TON,7276.32605 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,382.1397891 +OR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3705.283702 +OR,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,5658.336721 +OR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,399.6918155 +OR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,181.937 +OR,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,320.0909752 +OR,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,445.18738 +OR,Volatile Organic Compounds,3B2_Manure-sheep,,TON,50.50686585 +OR,Volatile Organic Compounds,3B3_Manure-swine,,TON,5.730818453 +OR,Volatile Organic Compounds,3B4_Manure-other,,TON,58.2276883 +OR,Volatile Organic Compounds,3B4_Manure-poultry,,TON,95.96437244 +OR,Volatile Organic Compounds,3B4d_Manure-goats,,TON,15.99566112 +OR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,5014.198236 +OR,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,746.07 +OR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,282.216662 +OR,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,742.74676 +OR,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.35436736 +OR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1338.864758 +OR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,228.7930873 +OR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,73.53787054 +OR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,66.01866 +OR,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,0 +OR,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.865 +PA,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.7059 +PA,Ammonia,1A1a_Public-Electricity,biomass,TON,5.9184 +PA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,45.0906 +PA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,22.639 +PA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.7656 +PA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,547.7706 +PA,Ammonia,1A1b_Pet-refining,natural_gas,TON,30.9094 +PA,Ammonia,1A1c_Coke-ovens,natural_gas,TON,0.9249 +PA,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.81 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.591170009 +PA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.117278208 +PA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.2999 +PA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,135.3633753 +PA,Ammonia,1A2_Industrial_fuel_combustion,coal_coke,TON,13.9316 +PA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.3576057 +PA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,18.5948 +PA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.2543 +PA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.164500116 +PA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,503.5454001 +PA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.3424 +PA,Ammonia,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.8921 +PA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,19.49525169 +PA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.810149851 +PA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,27.86335476 +PA,Ammonia,1A3bii_Road-LDV,light_oil,TON,2672.654514 +PA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.085893089 +PA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,109.3974244 +PA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,9.011744812 +PA,Ammonia,1A3biii_Road-bus,light_oil,TON,6.616374536 +PA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.308534353 +PA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,153.0127728 +PA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,2.137028264 +PA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,113.3751115 +PA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,40.39227101 +PA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,31.46004884 +PA,Ammonia,1A3c_Rail,diesel_oil,TON,8.494081989 +PA,Ammonia,1A3c_Rail,light_oil,TON,0.003950369 +PA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.381311061 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,9.466684968 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,38.75570922 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.007580206 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.354003845 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.666746098 +PA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.80060144 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.956064267 +PA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,4.082277335 +PA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.973866794 +PA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,13.71310276 +PA,Ammonia,1A4bi_Residential-stationary,biomass,TON,760.4333963 +PA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,266.4690152 +PA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,5.406749995 +PA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2191.481913 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,8.445127573 +PA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.220700694 +PA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.043867377 +PA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,3.603338903 +PA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.528433087 +PA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.427685988 +PA,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.112186787 +PA,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.014 +PA,Ammonia,2A1_Cement-production,,TON,13.3906 +PA,Ammonia,2A2_Lime-production,,TON,7.7974 +PA,Ammonia,2A6_Other-minerals,,TON,3.6315 +PA,Ammonia,2B_Chemicals-other,,TON,67.8337 +PA,Ammonia,2C_Iron-steel-alloy,,TON,135.2192 +PA,Ammonia,2C3_Aluminum-production,,TON,0.6326 +PA,Ammonia,2C6_Zinc-production,,TON,24.6 +PA,Ammonia,2C7_Other-metal,Other_Fuel,TON,49.0979 +PA,Ammonia,2C7a_Copper-production,,TON,0.0003 +PA,Ammonia,2D3d_Coating-application,,TON,9.6532 +PA,Ammonia,2D3h_Printing,,TON,6.9448 +PA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,0.5916 +PA,Ammonia,2H1_Pulp-and-paper,,TON,110.7498 +PA,Ammonia,2H2_Food-and-beverage,,TON,8.7835 +PA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,63.0685655 +PA,Ammonia,3B1a_Cattle-dairy,,TON,22040.17167 +PA,Ammonia,3B1b_Cattle-non-dairy,,TON,3041.381135 +PA,Ammonia,3B2_Manure-sheep,,TON,345.3778222 +PA,Ammonia,3B3_Manure-swine,,TON,11313.52112 +PA,Ammonia,3B4_Manure-other,,TON,1786.244029 +PA,Ammonia,3B4_Manure-poultry,,TON,10877.95164 +PA,Ammonia,3B4d_Manure-goats,,TON,290.2003673 +PA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,8453.5 +PA,Ammonia,3F_Ag-res-on-field,,TON,32.004 +PA,Ammonia,5A_Solid-waste-disposal,,TON,10.45 +PA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,292.08233 +PA,Ammonia,5C_Incineration,,TON,1.515 +PA,Ammonia,5C_Incineration,biomass,TON,7.0051 +PA,Ammonia,5D1_Wastewater-domestic,,TON,237.732098 +PA,Ammonia,5D2_Wastewater-industrial,biomass,TON,47.2947 +PA,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,16928.499 +PA,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,43060.3365 +PA,Carbon Dioxide,1A1a_Public-Electricity,light_oil,TON,2.08 +PA,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,680632.4101 +PA,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,20285.1064 +PA,Carbon Dioxide,1A1g_Other-energy-transf,natural_gas,TON,33538.205 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,565763.405 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,644767.7434 +PA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,36852.75037 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,21289.065 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,165666.6475 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,34599.03846 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,42807.19435 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2054.27894 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,30432.14064 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,53.22138256 +PA,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,7900776.134 +PA,Carbon Dioxide,1A2c_Chemicals,natural_gas,TON,51718.1396 +PA,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,139 +PA,Carbon Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,45340.1023 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2401641.548 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,65867.22646 +PA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,14.08007081 +PA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1342548.284 +PA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,921336.5348 +PA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,39349797.79 +PA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,191829.5496 +PA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1898797.551 +PA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,522328.4304 +PA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,207028.2284 +PA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,11608.02887 +PA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9829606.244 +PA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,53843.20117 +PA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5942303.885 +PA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1057742.231 +PA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,272814.6526 +PA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4986.216049 +PA,Carbon Dioxide,1A3c_Rail,light_oil,TON,308.0669375 +PA,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,34529.74153 +PA,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,47700.76337 +PA,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,83254.19093 +PA,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1787035.856 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,240698.0502 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,332694.4335 +PA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14669.14813 +PA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,119862.5184 +PA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,1023731.023 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1040039.704 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,16620.12246 +PA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2300.996639 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5379.70103 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,254756.8135 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,65072.35144 +PA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,249216.3492 +PA,Carbon Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,4.4712 +PA,Carbon Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,6222.7867 +PA,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2628.4934 +PA,Carbon Dioxide,2A6_Other-minerals,,TON,72307.5392 +PA,Carbon Dioxide,2B_Chemicals-other,,TON,5493.8634 +PA,Carbon Dioxide,2C_Iron-steel-alloy,,TON,41002.636 +PA,Carbon Dioxide,2C5_Lead-production,,TON,2586.32 +PA,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,1507.027 +PA,Carbon Dioxide,2C7a_Copper-production,,TON,103.9903 +PA,Carbon Dioxide,2D3d_Coating-application,,TON,8856.3297 +PA,Carbon Dioxide,2D3e_Degreasing,Other_Fuel,TON,2.1835 +PA,Carbon Dioxide,2D3h_Printing,,TON,11520.9495 +PA,Carbon Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,35759.273 +PA,Carbon Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,227.9171 +PA,Carbon Dioxide,2H2_Food-and-beverage,,TON,34552.08 +PA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,114380867.1 +PA,Carbon Dioxide,5A_Solid-waste-disposal,,TON,212229.447 +PA,Carbon Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,1310.31 +PA,Carbon Monoxide,11C_Other-natural,,TON,51598.3681 +PA,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,879.3644 +PA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,50.5371 +PA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,117.8112 +PA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,14601.0134 +PA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,4.7368 +PA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,3720.1723 +PA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1374.2898 +PA,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,385.741 +PA,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,21.8675 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,846.5055202 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15387.37767 +PA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,542.7550208 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,577.9600139 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,11763.67264 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,989.0748481 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1567.304298 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1151.817127 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,94.53427884 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,7.238869466 +PA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,10197.48289 +PA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,29.8222 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.185 +PA,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,35.9 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5528.85588 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,13339.46292 +PA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.495944934 +PA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,15394.46111 +PA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,9025.203022 +PA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,525429.0276 +PA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1454.548714 +PA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25574.18976 +PA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1465.738402 +PA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,8949.581223 +PA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,91.7376274 +PA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7947.632068 +PA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,850.8773758 +PA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7705.255487 +PA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,23324.20639 +PA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10966.07101 +PA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2733.857311 +PA,Carbon Monoxide,1A3c_Rail,light_oil,TON,68.74046277 +PA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,367.3010202 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1153.229685 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1497.246986 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,70.24175357 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.22411201 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.042475645 +PA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4510.667478 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,818.7409997 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,68575.70564 +PA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,293.051533 +PA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,354.9646295 +PA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,231401.5578 +PA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,103073.4637 +PA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,1332.34501 +PA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,27.03374768 +PA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4725.659694 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2966.852545 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,3167.149282 +PA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,28.03790666 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,40.0939753 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,38675.87578 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,128.3720419 +PA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,26432.19183 +PA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2598.699044 +PA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,62.4008 +PA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0039 +PA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,42499.54214 +PA,Carbon Monoxide,2A1_Cement-production,,TON,913.9707 +PA,Carbon Monoxide,2A2_Lime-production,,TON,868.2966 +PA,Carbon Monoxide,2A6_Other-minerals,,TON,1987.0873 +PA,Carbon Monoxide,2B_Chemicals-other,,TON,341.3703 +PA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,6921.3492 +PA,Carbon Monoxide,2C3_Aluminum-production,,TON,13.4601 +PA,Carbon Monoxide,2C5_Lead-production,,TON,12.3978 +PA,Carbon Monoxide,2C6_Zinc-production,,TON,159.2433 +PA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,274.2899 +PA,Carbon Monoxide,2C7a_Copper-production,,TON,3.5329 +PA,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,0.0006 +PA,Carbon Monoxide,2D3d_Coating-application,,TON,31.871 +PA,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.015 +PA,Carbon Monoxide,2D3h_Printing,,TON,9.4945 +PA,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,3.2635 +PA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,575.8514 +PA,Carbon Monoxide,2H2_Food-and-beverage,,TON,2099.88072 +PA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,240.5103 +PA,Carbon Monoxide,2I_Wood-processing,,TON,0.28 +PA,Carbon Monoxide,3Dc_Other-farm,,TON,3.1117 +PA,Carbon Monoxide,3F_Ag-res-on-field,,TON,215.02 +PA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,991.6401 +PA,Carbon Monoxide,5C_Incineration,,TON,85.93153671 +PA,Carbon Monoxide,5C_Incineration,biomass,TON,649.5902018 +PA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,65167.74427 +PA,Carbon Monoxide,5C_Open-burning-residential,,TON,11599.3715 +PA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,1084.558263 +PA,Methane,1A1a_Public-Electricity,biomass,TON,2.1564 +PA,Methane,1A1a_Public-Electricity,diesel_oil,TON,2.8461 +PA,Methane,1A1a_Public-Electricity,natural_gas,TON,37.8682 +PA,Methane,1A1b_Pet-refining,natural_gas,TON,60.2374 +PA,Methane,1A1g_Other-energy-transf,natural_gas,TON,0.6301 +PA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,12.15696037 +PA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,71.19381935 +PA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,231.9011829 +PA,Methane,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.829110693 +PA,Methane,1A2_Industrial_fuel_combustion,biomass,TON,17.60399021 +PA,Methane,1A2_Industrial_fuel_combustion,coal_coke,TON,0.895552118 +PA,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.762539105 +PA,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,0.057909837 +PA,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.381614121 +PA,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,3191.946484 +PA,Methane,1A2c_Chemicals,natural_gas,TON,0.9946 +PA,Methane,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.2617 +PA,Methane,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0055 +PA,Methane,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.8421 +PA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,54.38640109 +PA,Methane,1A2g_Construction_and_Mining,light_oil,TON,47.48865746 +PA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.35269255 +PA,Methane,1A3bii_Road-LDV,diesel_oil,TON,74.02600466 +PA,Methane,1A3bii_Road-LDV,light_oil,TON,1515.596344 +PA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,19.35760887 +PA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,90.31250197 +PA,Methane,1A3biii_Road-bus,diesel_oil,TON,25.74184345 +PA,Methane,1A3biii_Road-bus,light_oil,TON,22.53545677 +PA,Methane,1A3biii_Road-bus,natural_gas,TON,61.31393886 +PA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,594.5370812 +PA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.439169906 +PA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,225.8232887 +PA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,46.98738067 +PA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24.06212265 +PA,Methane,1A3c_Rail,diesel_oil,TON,0.224922893 +PA,Methane,1A3c_Rail,light_oil,TON,0.20435984 +PA,Methane,1A4ai_Commercial-institutional-stationary,biomass,TON,87.69311253 +PA,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,40.65409555 +PA,Methane,1A4ai_Commercial-institutional-stationary,hard_coal,TON,149.8581544 +PA,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,525.0884376 +PA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.94388243 +PA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,226.9057839 +PA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,196.4918494 +PA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.984757181 +PA,Methane,1A4bi_Residential-mobile,light_oil,TON,896.7239901 +PA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,31.41700487 +PA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,12.3853722 +PA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,11.19324251 +PA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.221987166 +PA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,275.9677056 +PA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.995128706 +PA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,241.6530849 +PA,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,319.1993 +PA,Methane,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,0.092 +PA,Methane,1B2av_Fugitive-petr-distr,light_oil,TON,0.2017 +PA,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1778.6422 +PA,Methane,2A6_Other-minerals,,TON,770.0527 +PA,Methane,2B_Chemicals-other,,TON,0.1885 +PA,Methane,2C_Iron-steel-alloy,,TON,0.084 +PA,Methane,2C5_Lead-production,,TON,0.0475 +PA,Methane,2C7_Other-metal,Other_Fuel,TON,0.3 +PA,Methane,2C7a_Copper-production,,TON,0.008 +PA,Methane,2D3d_Coating-application,,TON,0.1551 +PA,Methane,2D3e_Degreasing,Other_Fuel,TON,0.0001 +PA,Methane,2D3h_Printing,,TON,0.0632 +PA,Methane,2D3i_Other-solvent-use,Other_Fuel,TON,955.3936 +PA,Methane,2H1_Pulp-and-paper,Other_Fuel,TON,0.0044 +PA,Methane,2H2_Food-and-beverage,Other_Fuel,TON,0.1002 +PA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,183453.9106 +PA,Methane,5A_Solid-waste-disposal,,TON,1089.05 +PA,Methane,5D1_Wastewater-domestic,Other_Fuel,TON,10.94 +PA,Nitrogen Oxides,11C_Other-natural,,TON,12474.01473 +PA,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,1058.9066 +PA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,19.9195 +PA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,298.6891 +PA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,27631.4584 +PA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,14.3727 +PA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.0103 +PA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,6862.9748 +PA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1948.1033 +PA,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,1723.1238 +PA,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,32.3675 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2385.209838 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1516.431427 +PA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,93.72770184 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,586.6745947 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,4254.844703 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,13.39632496 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,4845.478089 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,942.1299937 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,227.4487039 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,6.211450646 +PA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,12878.61872 +PA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,41.2557 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.308 +PA,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,25.627 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,10352.98529 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,162.9929474 +PA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.102433359 +PA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4013.616638 +PA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2951.393652 +PA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,56362.64484 +PA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,572.112463 +PA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2703.201433 +PA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2842.815088 +PA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,896.5759769 +PA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,47.49416823 +PA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,28417.38451 +PA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,109.3434869 +PA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19707.05837 +PA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,2366.111233 +PA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,536.5250318 +PA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,14698.9132 +PA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.726257328 +PA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2784.534025 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,432.9705835 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1448.531616 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,162.3587167 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,24.45780515 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,16.16479377 +PA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6021.803148 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1623.882746 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,901.4175562 +PA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,75.15176806 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,912.4824559 +PA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,2207.368262 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1725.765942 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,4796.442021 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,97.32149693 +PA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,11518.5149 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,6451.746993 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,66.57765078 +PA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.079292465 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,43.1301115 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,553.8434224 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,635.0075512 +PA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,1772.620819 +PA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,4921.887486 +PA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,23.8275 +PA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0048 +PA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,35865.79009 +PA,Nitrogen Oxides,2A1_Cement-production,,TON,3489.7347 +PA,Nitrogen Oxides,2A2_Lime-production,,TON,3147.1742 +PA,Nitrogen Oxides,2A6_Other-minerals,,TON,6321.6451 +PA,Nitrogen Oxides,2B_Chemicals-other,,TON,71.6423 +PA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1532.471 +PA,Nitrogen Oxides,2C3_Aluminum-production,,TON,43.4289 +PA,Nitrogen Oxides,2C5_Lead-production,,TON,49.5449 +PA,Nitrogen Oxides,2C6_Zinc-production,,TON,53.9787 +PA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,103.5752 +PA,Nitrogen Oxides,2C7a_Copper-production,,TON,0.3124 +PA,Nitrogen Oxides,2D3d_Coating-application,,TON,41.7685 +PA,Nitrogen Oxides,2D3f_Dry-cleaning,Other_Fuel,TON,0.015 +PA,Nitrogen Oxides,2D3h_Printing,,TON,16.7376 +PA,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,6.0181 +PA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1005.2197 +PA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,93.6765 +PA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,81.8748 +PA,Nitrogen Oxides,2I_Wood-processing,,TON,1.96 +PA,Nitrogen Oxides,3Dc_Other-farm,,TON,3.6821 +PA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,7.409 +PA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,290.7646 +PA,Nitrogen Oxides,5C_Incineration,,TON,1210.301459 +PA,Nitrogen Oxides,5C_Incineration,biomass,TON,2628.762304 +PA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1581.741436 +PA,Nitrogen Oxides,5C_Open-burning-residential,,TON,818.7791172 +PA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,60.03804936 +PA,Nitrous Oxide,1A1a_Public-Electricity,biomass,TON,1.0734 +PA,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,1.7221 +PA,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,13.7569 +PA,Nitrous Oxide,1A1b_Pet-refining,natural_gas,TON,0.207 +PA,Nitrous Oxide,1A1g_Other-energy-transf,natural_gas,TON,0.063 +PA,Nitrous Oxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.265594632 +PA,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,5.334242672 +PA,Nitrous Oxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.131494399 +PA,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.214519149 +PA,Nitrous Oxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.034777863 +PA,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.364972603 +PA,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,144.4919987 +PA,Nitrous Oxide,1A2c_Chemicals,natural_gas,TON,0.1727 +PA,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0011 +PA,Nitrous Oxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,131.9353 +PA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.975260906 +PA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1367.850293 +PA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.7225595 +PA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,75.20472489 +PA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.344678609 +PA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,5.967792656 +PA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.231150178 +PA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,10.74458458 +PA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.032492707 +PA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.53633064 +PA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,35.76500339 +PA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.636001856 +PA,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.279900527 +PA,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.499669954 +PA,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1.499009863 +PA,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,20.43051965 +PA,Nitrous Oxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.1297 +PA,Nitrous Oxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0017 +PA,Nitrous Oxide,2A6_Other-minerals,,TON,19.913 +PA,Nitrous Oxide,2B_Chemicals-other,,TON,0.0215 +PA,Nitrous Oxide,2C_Iron-steel-alloy,,TON,0.0104 +PA,Nitrous Oxide,2C5_Lead-production,,TON,0.0121 +PA,Nitrous Oxide,2C7_Other-metal,Other_Fuel,TON,0.8 +PA,Nitrous Oxide,2C7a_Copper-production,,TON,0.004 +PA,Nitrous Oxide,2D3d_Coating-application,,TON,0.1131 +PA,Nitrous Oxide,2D3h_Printing,,TON,0.0076 +PA,Nitrous Oxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.1377 +PA,Nitrous Oxide,2H1_Pulp-and-paper,Other_Fuel,TON,0.0042 +PA,Nitrous Oxide,2H2_Food-and-beverage,Other_Fuel,TON,0.0198 +PA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1240.928567 +PA,Nitrous Oxide,5A_Solid-waste-disposal,,TON,62.1672 +PA,Nitrous Oxide,5C_Incineration,,TON,0.0003 +PA,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,244.646 +PA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,10.493674 +PA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,186.4580564 +PA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2250.010097 +PA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,11.3406031 +PA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,740.1083491 +PA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,414.3018148 +PA,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,82.1514 +PA,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.9369 +PA,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,78.98395375 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8627.610731 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,4.49251287 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,406.3982639 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,131.1542156 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,199.5909574 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.345307258 +PA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,913.2682258 +PA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.2608 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.17575 +PA,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.435 +PA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,23838.958 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,954.284225 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,102.0139613 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,62.23388831 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,7.894404546 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.887374602 +PA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,98.40730875 +PA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,13607.32919 +PA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,287.7864993 +PA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,5.833950055 +PA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,23.63269971 +PA,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,36.31378954 +PA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.3605 +PA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0003 +PA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,174.418196 +PA,PM10 Filterable,2A1_Cement-production,,TON,570.7778666 +PA,PM10 Filterable,2A2_Lime-production,,TON,76.0662 +PA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,38652.74603 +PA,PM10 Filterable,2A6_Other-minerals,,TON,12273.60644 +PA,PM10 Filterable,2B_Chemicals-other,,TON,136.401233 +PA,PM10 Filterable,2C_Iron-steel-alloy,,TON,1535.81129 +PA,PM10 Filterable,2C3_Aluminum-production,,TON,87.05417222 +PA,PM10 Filterable,2C5_Lead-production,,TON,42.1059 +PA,PM10 Filterable,2C6_Zinc-production,,TON,26.4828 +PA,PM10 Filterable,2C7_Other-metal,,TON,295.9201071 +PA,PM10 Filterable,2C7a_Copper-production,,TON,57.8362 +PA,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.1225 +PA,PM10 Filterable,2D3d_Coating-application,,TON,354.2399 +PA,PM10 Filterable,2D3h_Printing,,TON,4.8903 +PA,PM10 Filterable,2D3i_Other-solvent-use,biomass,TON,15.1979 +PA,PM10 Filterable,2H1_Pulp-and-paper,,TON,367.6657552 +PA,PM10 Filterable,2H2_Food-and-beverage,,TON,656.641922 +PA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1216.675134 +PA,PM10 Filterable,2I_Wood-processing,,TON,75.7889 +PA,PM10 Filterable,3B1a_Cattle-dairy,,TON,4289.581286 +PA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,6511.931667 +PA,PM10 Filterable,3Dc_Other-farm,,TON,32258.3037 +PA,PM10 Filterable,5A_Solid-waste-disposal,,TON,171.084703 +PA,PM10 Filterable,5C_Incineration,,TON,50.63832255 +PA,PM10 Filterable,5C_Incineration,biomass,TON,132.1532186 +PA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,8066.881156 +PA,PM10 Filterable,5C_Open-burning-residential,,TON,4377.848984 +PA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,367.9751388 +PA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,1.0471 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,281.950013 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,14.830874 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1087.915107 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3218.398697 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,27.3418031 +PA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1556.819471 +PA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,774.4804352 +PA,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,163.9057 +PA,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,3.4276 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,134.9497449 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,73.12671339 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.446439272 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,86.98746337 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9097.596341 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,83.87743931 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,580.7815675 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,277.4566411 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,269.3711793 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.688771535 +PA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1920.067635 +PA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.3735 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,2.62075 +PA,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.7219995 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,900.8037395 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,104.8250928 +PA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001647283 +PA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,250.492695 +PA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,23838.958 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,174.6060731 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,4539.426634 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,38.80786231 +PA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,203.3924195 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,162.9512512 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,49.45934394 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.769686741 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1661.752771 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.977490883 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1448.601626 +PA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,130.0739436 +PA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,33.23167972 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,433.3694933 +PA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.039163001 +PA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,75.25541281 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,1010.699605 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,154.1713827 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,75.05157486 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,9.411697627 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.960432583 +PA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,203.898571 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,138.4291861 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,87.06311626 +PA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.852955428 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,60.67123102 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,995.528597 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,14217.3596 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,634.1962249 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,12.86939966 +PA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,61.42301074 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,513.459167 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.422757064 +PA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.279577068 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.92347657 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,241.3159319 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.0323367 +PA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,80.04067975 +PA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,193.7961877 +PA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,2.2037 +PA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0003 +PA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,791.6557185 +PA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,701.4846912 +PA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,103.1712281 +PA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,38653.24103 +PA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,12537.97714 +PA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,150.8775518 +PA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,2389.820717 +PA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,212.6679522 +PA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,133.3502019 +PA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,74.9388 +PA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,480.1228102 +PA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,163.64032 +PA,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.1225 +PA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,357.3016 +PA,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,5.52 +PA,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,13.5624 +PA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,15.5104 +PA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,440.5622258 +PA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5621.445438 +PA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1256.680478 +PA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,75.7889 +PA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,4289.581286 +PA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,6511.931667 +PA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,32259.30791 +PA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,38.51 +PA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,289.2326063 +PA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,74.88491783 +PA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,210.1996134 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8066.881156 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4377.848984 +PA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,367.9751388 +PA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,1.05555196 +PA,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,122.950955 +PA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,8.499862 +PA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,165.5252135 +PA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1185.313924 +PA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,9.200292012 +PA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,620.4692434 +PA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,385.3516829 +PA,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,78.344 +PA,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,1.9369 +PA,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,46.68844232 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7413.540985 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,0.449322961 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,345.0187909 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,66.41839188 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,132.864524 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.191410343 +PA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,749.2557076 +PA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.2571 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.245807 +PA,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.38895489 +PA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5882.051806 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,816.8821225 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,94.06208852 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,45.39187403 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.69588553 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.682720889 +PA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,91.85225317 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,13443.35861 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,221.1692649 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,4.485600046 +PA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.99798483 +PA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,35.73213261 +PA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,1.34080639 +PA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0003 +PA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,174.2636433 +PA,PM2.5 Filterable,2A1_Cement-production,,TON,324.2031158 +PA,PM2.5 Filterable,2A2_Lime-production,,TON,39.69728781 +PA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3865.346223 +PA,PM2.5 Filterable,2A6_Other-minerals,,TON,2873.427275 +PA,PM2.5 Filterable,2B_Chemicals-other,,TON,95.71302299 +PA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,987.5033649 +PA,PM2.5 Filterable,2C3_Aluminum-production,,TON,57.60603052 +PA,PM2.5 Filterable,2C5_Lead-production,,TON,42.0939923 +PA,PM2.5 Filterable,2C6_Zinc-production,,TON,15.26112366 +PA,PM2.5 Filterable,2C7_Other-metal,,TON,220.6498702 +PA,PM2.5 Filterable,2C7a_Copper-production,,TON,37.80845222 +PA,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,0.1225 +PA,PM2.5 Filterable,2D3d_Coating-application,,TON,351.3391745 +PA,PM2.5 Filterable,2D3h_Printing,,TON,4.4931 +PA,PM2.5 Filterable,2D3i_Other-solvent-use,biomass,TON,13.03668802 +PA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,252.7446029 +PA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,250.5341926 +PA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,552.0020228 +PA,PM2.5 Filterable,2I_Wood-processing,,TON,35.10031524 +PA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,891.5858988 +PA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1353.499088 +PA,PM2.5 Filterable,3Dc_Other-farm,,TON,6024.673012 +PA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,112.4079377 +PA,PM2.5 Filterable,5C_Incineration,,TON,50.43418074 +PA,PM2.5 Filterable,5C_Incineration,biomass,TON,65.00862902 +PA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,7355.097342 +PA,PM2.5 Filterable,5C_Open-burning-residential,,TON,4009.187881 +PA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,283.7282017 +PA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.0965 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,160.254968 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,12.837062 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1066.982269 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2153.702524 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,25.201492 +PA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1437.180366 +PA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,745.530303 +PA,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,160.0983 +PA,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,3.4276 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,130.8978882 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,71.93003525 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.446439272 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,54.69141716 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,7883.436461 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,79.84037417 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,519.4096864 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,212.7303068 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,202.647257 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.534896333 +PA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1756.120197 +PA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,4.3698 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,1.690807 +PA,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.67595541 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,873.7795685 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,96.49002553 +PA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.001647283 +PA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,216.5571034 +PA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5882.051806 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,121.8700862 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1601.517818 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.32333708 +PA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,69.68800232 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,111.9653521 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,29.88425718 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.906966202 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1020.792016 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.594453358 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,968.9184629 +PA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,56.42208622 +PA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,19.88777273 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,420.3637114 +PA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.036103217 +PA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,71.76853147 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,872.8001924 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,146.4816496 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,58.03514105 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.144913482 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,1.765688372 +PA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,197.8195277 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,134.2763023 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,80.28709409 +PA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.852955428 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,58.85110179 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,915.9310752 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,14053.38903 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,567.5789788 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,11.52105018 +PA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,50.78829523 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,498.0553994 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.749127027 +PA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.279577068 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,5.74577204 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,222.0131942 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.61136637 +PA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,73.63743626 +PA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,191.6934643 +PA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,2.18400639 +PA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0003 +PA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,782.9446752 +PA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,454.909939 +PA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,66.80231276 +PA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3865.841223 +PA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,3137.797973 +PA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,110.1893415 +PA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1841.512776 +PA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,183.2198127 +PA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,133.3382941 +PA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,63.71712266 +PA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,404.8525738 +PA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,143.6125698 +PA,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,0.1225 +PA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,354.4008745 +PA,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,Other_Fuel,TON,5.52 +PA,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,13.1652 +PA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,biomass,TON,13.34918802 +PA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,325.6410739 +PA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,5215.337403 +PA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,592.0073674 +PA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,35.10031524 +PA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,891.5858988 +PA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1353.499088 +PA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,6025.677225 +PA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,23.788 +PA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,230.5558412 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,74.26757567 +PA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,143.4682241 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,7355.097342 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4009.187881 +PA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,283.7282017 +PA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.10495196 +PA,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,2225.2237 +PA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,2.0337 +PA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7300.7575 +PA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,56841.6422 +PA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,36.2667 +PA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,2882.0335 +PA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,507.8124 +PA,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,642.816 +PA,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.1553 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.545852247 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.97025619 +PA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.206564874 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1116.907303 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,492.1311287 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1.314072041 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,353.7413117 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,5417.242025 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,981.5318673 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,2.480076187 +PA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2436.539809 +PA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,4.2247 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.89 +PA,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.075 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,19.05134346 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.015327532 +PA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.88208E-05 +PA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,587.011443 +PA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.977263079 +PA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,733.774193 +PA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.647677316 +PA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.32896621 +PA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,4.499046758 +PA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,3.883582941 +PA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.061458444 +PA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,83.17891857 +PA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.003549612 +PA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,50.65984124 +PA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19.54931006 +PA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.040566231 +PA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,9.571084897 +PA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004969586 +PA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,59.34184256 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,47.39778058 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,136.5014629 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,375.0873805 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,34.77217271 +PA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,72.05171194 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.010126864 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5.235707738 +PA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.082184251 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1.045751414 +PA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,16.82672282 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,384.6187887 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,1891.929926 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.914007772 +PA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,70.87608298 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.044417455 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.273218791 +PA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.012898789 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.047197693 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,4.178261555 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.598193455 +PA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.092836019 +PA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,149.6412967 +PA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.0954 +PA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1483.759164 +PA,Sulfur Dioxide,2A1_Cement-production,,TON,3289.2001 +PA,Sulfur Dioxide,2A2_Lime-production,,TON,771.4958 +PA,Sulfur Dioxide,2A6_Other-minerals,,TON,1716.2919 +PA,Sulfur Dioxide,2B_Chemicals-other,,TON,155.8791 +PA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,702.6268 +PA,Sulfur Dioxide,2C3_Aluminum-production,,TON,5.0077 +PA,Sulfur Dioxide,2C5_Lead-production,,TON,51.6917 +PA,Sulfur Dioxide,2C6_Zinc-production,,TON,114.1983 +PA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,140.4286 +PA,Sulfur Dioxide,2C7a_Copper-production,,TON,0.0783 +PA,Sulfur Dioxide,2D3d_Coating-application,,TON,2.5417 +PA,Sulfur Dioxide,2D3h_Printing,,TON,0.055 +PA,Sulfur Dioxide,2D3i_Other-solvent-use,biomass,TON,3.6116 +PA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,38.7075 +PA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0.1192 +PA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,100.7799 +PA,Sulfur Dioxide,2I_Wood-processing,,TON,0.31 +PA,Sulfur Dioxide,3Dc_Other-farm,,TON,0.5295 +PA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.9679 +PA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,431.3533 +PA,Sulfur Dioxide,5C_Incineration,,TON,103.9870317 +PA,Sulfur Dioxide,5C_Incineration,biomass,TON,252.9429018 +PA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,656.4226814 +PA,Sulfur Dioxide,5C_Open-burning-residential,,TON,136.4631931 +PA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,7.359502988 +PA,Volatile Organic Compounds,11C_Other-natural,,TON,421093.897 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,73.2769 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,1.3905 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,21.4052 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,213.4811 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.068 +PA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,535.6133 +PA,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,321.4866827 +PA,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,264.053283 +PA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1802.467934 +PA,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,36.658 +PA,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,1.4704 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,159.8404146 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,448.8251726 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,50.12834466 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.264521942 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,356.495765 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,15.31385013 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,393.1830314 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,20.15265895 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.62053876 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,1.531325658 +PA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,1628.078643 +PA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,2.3853 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.01 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,heavy_oil,TON,0.0015 +PA,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,33.1465 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,957.8528774 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,896.1588028 +PA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.076238914 +PA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1575.589006 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1057.221231 +PA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,46024.21216 +PA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,174.7121828 +PA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1973.529452 +PA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,272.4381933 +PA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,519.3507675 +PA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,7.577961826 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1696.649934 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,34.20271265 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1784.672288 +PA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1000.096777 +PA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1822.481028 +PA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,700.7972001 +PA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.604786201 +PA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,160.5869129 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,34.24525559 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,87.09766454 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.744142375 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.524599897 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.286844689 +PA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,416.6444679 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,188.3533065 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,2251.951885 +PA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,42.47418306 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,85.27928419 +PA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,14544.27397 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,14117.9696 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,189.9924054 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,3.79140006 +PA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,649.7011536 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,529.6646945 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,150.2805468 +PA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.419560017 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,10.4402005 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,8166.2896 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,34.65747402 +PA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,5682.422247 +PA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,40825.31316 +PA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,823.0703611 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,906.5750073 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1245.790786 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,3066.250987 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,9387.603914 +PA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,7.0968 +PA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,68687.28771 +PA,Volatile Organic Compounds,2A1_Cement-production,,TON,16.508 +PA,Volatile Organic Compounds,2A2_Lime-production,,TON,20.7854 +PA,Volatile Organic Compounds,2A5b_Construction-and-demolition,Other_Fuel,TON,1.23 +PA,Volatile Organic Compounds,2A6_Other-minerals,,TON,407.3983328 +PA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,2.686139369 +PA,Volatile Organic Compounds,2B_Chemicals-other,,TON,1012.0464 +PA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,753.3808 +PA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,252.8969 +PA,Volatile Organic Compounds,2C5_Lead-production,,TON,1.0883 +PA,Volatile Organic Compounds,2C6_Zinc-production,,TON,2.3057 +PA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,237.0104 +PA,Volatile Organic Compounds,2C7a_Copper-production,,TON,26.0765 +PA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,32946.80334 +PA,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,4.2013 +PA,Volatile Organic Compounds,2D3d_Coating-application,,TON,29359.88948 +PA,Volatile Organic Compounds,2D3e_Degreasing,,TON,8622.387811 +PA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,56.01122062 +PA,Volatile Organic Compounds,2D3h_Printing,,TON,36558.1624 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,13122.67703 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,biomass,TON,0.553342857 +PA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,8180.750971 +PA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,963.3843 +PA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1121.194201 +PA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,1648.3573 +PA,Volatile Organic Compounds,2I_Wood-processing,,TON,2.9782 +PA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1763.213834 +PA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,243.3104794 +PA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,27.63022633 +PA,Volatile Organic Compounds,3B3_Manure-swine,,TON,905.0817153 +PA,Volatile Organic Compounds,3B4_Manure-other,,TON,142.8995234 +PA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,870.2361559 +PA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,23.21602895 +PA,Volatile Organic Compounds,3Dc_Other-farm,,TON,2.0242 +PA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1729.711716 +PA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,28.851 +PA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,200.7325 +PA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,2066.70354 +PA,Volatile Organic Compounds,5C_Incineration,,TON,6.859631355 +PA,Volatile Organic Compounds,5C_Incineration,biomass,TON,39.28722949 +PA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,4468.419524 +PA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,853.5653553 +PA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,271.1395811 +PA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,253.47352 +PA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,8.3998 +PA,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0245 +PR,Ammonia,1A1a_Public-Electricity,hard_coal,TON,68.6685 +PR,Ammonia,1A1a_Public-Electricity,natural_gas,TON,30.307 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.00288593 +PR,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.17145926 +PR,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +PR,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.0025 +PR,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +PR,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,4.71374727 +PR,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.147080233 +PR,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.82989552 +PR,Ammonia,1A3bii_Road-LDV,light_oil,TON,381.9258945 +PR,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.999089437 +PR,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,46.40598167 +PR,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.466620455 +PR,Ammonia,1A3biii_Road-bus,light_oil,TON,0.429454137 +PR,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.040140483 +PR,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.17312722 +PR,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.003753467 +PR,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11.67812363 +PR,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,6.225827093 +PR,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.70029138 +PR,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.459228574 +PR,Ammonia,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.13136462 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.83344236 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.0025 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.467415049 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.350982802 +PR,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.747851937 +PR,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.416378387 +PR,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.128530533 +PR,Ammonia,1A4bi_Residential-stationary,biomass,TON,43.13705862 +PR,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.019191818 +PR,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.009253198 +PR,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,11.71175777 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.190801249 +PR,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.006259488 +PR,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.016968593 +PR,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.383393562 +PR,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.201286574 +PR,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.417187526 +PR,Ammonia,2A1_Cement-production,,TON,7.911 +PR,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,0.375122969 +PR,Ammonia,5D1_Wastewater-domestic,,TON,6.4325625 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,123589.6133 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,99592.25001 +PR,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5725.176378 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,580649.2237 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,11964.99196 +PR,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.210971258 +PR,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,265898.1411 +PR,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,104838.5798 +PR,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,5970965.443 +PR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,68824.16125 +PR,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,863478.2529 +PR,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,93334.33763 +PR,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,12575.23438 +PR,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1506.894184 +PR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12858.12213 +PR,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,160.0323045 +PR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,655550.6404 +PR,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,178472.0856 +PR,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,115714.9595 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,43182.32273 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,60979.57739 +PR,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2569.127592 +PR,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,51251.46935 +PR,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,384960.6039 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,23490.55916 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,472.9832947 +PR,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,69.03909259 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2081.906189 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,27159.4611 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,24787.79117 +PR,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,102670.4737 +PR,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,4700301.872 +PR,Carbon Monoxide,11C_Other-natural,,TON,186.425296 +PR,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,348.247985 +PR,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,327.4 +PR,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,1149.37 +PR,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,93.453 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,186.6102527 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2645.031513 +PR,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,91.49452432 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,41.90723504 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,36.73354982 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,16.44441814 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1272.133852 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2548.901282 +PR,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.136083864 +PR,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,4811.09568 +PR,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,725.1018018 +PR,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,93850.02038 +PR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,375.9990907 +PR,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13257.12644 +PR,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,186.8843355 +PR,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,710.7794379 +PR,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,8.015991261 +PR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,14.44212044 +PR,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.547201014 +PR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,756.6568143 +PR,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3753.412737 +PR,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4615.991569 +PR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,481.8552979 +PR,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,6.868165 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,100.0130835 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.880168 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.26 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,372.3908777 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,157.5196808 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,13219.65851 +PR,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,61.18936937 +PR,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,148.1530805 +PR,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,86953.58515 +PR,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,5824.059166 +PR,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.095959088 +PR,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.046265989 +PR,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,30.37607092 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,80.95988305 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,107.126227 +PR,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.769388735 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.24717642 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,5154.125749 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,49.42920598 +PR,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,11298.77621 +PR,Carbon Monoxide,2A1_Cement-production,,TON,0 +PR,Carbon Monoxide,2A2_Lime-production,,TON,0 +PR,Carbon Monoxide,2A6_Other-minerals,,TON,0 +PR,Carbon Monoxide,2C5_Lead-production,,TON,0 +PR,Carbon Monoxide,2D3e_Degreasing,,TON,0 +PR,Carbon Monoxide,2H2_Food-and-beverage,,TON,12.01492805 +PR,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,5.499405 +PR,Carbon Monoxide,3Dc_Other-farm,,TON,0 +PR,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,209.47 +PR,Carbon Monoxide,5C_Incineration,biomass,TON,0 +PR,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3249.872904 +PR,Carbon Monoxide,5C_Open-burning-residential,,TON,994.8893644 +PR,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,99.94049983 +PR,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.057600008 +PR,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11.24591731 +PR,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,38.022948 +PR,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,11.06937401 +PR,Methane,1A2g_Construction_and_Mining,light_oil,TON,8.605676912 +PR,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.099527184 +PR,Methane,1A3bii_Road-LDV,diesel_oil,TON,6.872895841 +PR,Methane,1A3bii_Road-LDV,light_oil,TON,209.2188188 +PR,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.467116792 +PR,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,37.80920526 +PR,Methane,1A3biii_Road-bus,diesel_oil,TON,2.327747134 +PR,Methane,1A3biii_Road-bus,light_oil,TON,2.178361899 +PR,Methane,1A3biii_Road-bus,natural_gas,TON,6.633703144 +PR,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.289598533 +PR,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.008752677 +PR,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,23.51869575 +PR,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,7.581035354 +PR,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.23072873 +PR,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.381984138 +PR,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,39.60368738 +PR,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38.12977724 +PR,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.723331524 +PR,Methane,1A4bi_Residential-mobile,light_oil,TON,295.3716477 +PR,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.563935879 +PR,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.457089722 +PR,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.340863889 +PR,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.086015128 +PR,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,37.70114696 +PR,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.62181556 +PR,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,100.6577502 +PR,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,19664.76317 +PR,Nitrogen Oxides,11C_Other-natural,,TON,12.68585872 +PR,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,5251.86318 +PR,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,1208.1 +PR,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,7306.69 +PR,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,242.01 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,570.4639511 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,239.7232851 +PR,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,14.97575653 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,104.9133893 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,102.0830746 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,28.80685312 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,2578.406018 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,28.15862527 +PR,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.027049573 +PR,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,772.7378413 +PR,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,213.191027 +PR,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7380.666701 +PR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,150.8036274 +PR,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1041.591484 +PR,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,428.301916 +PR,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,62.71995311 +PR,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,4.110248256 +PR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,39.20750778 +PR,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,0.438642238 +PR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1488.712301 +PR,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,249.7545287 +PR,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,172.9770261 +PR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3776.013656 +PR,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,80.02245 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,36.67146446 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,21.76507 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.72 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,444.421067 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,309.2731952 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,139.0708743 +PR,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,14.55786933 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,378.8707468 +PR,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,686.501945 +PR,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,98.26410809 +PR,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.345452721 +PR,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.166557562 +PR,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,79.76702358 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,170.0878574 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,2.173148608 +PR,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.156319737 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,15.96313017 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,52.46286616 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,254.2171024 +PR,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,696.3463315 +PR,Nitrogen Oxides,2A1_Cement-production,,TON,0 +PR,Nitrogen Oxides,2A2_Lime-production,,TON,0 +PR,Nitrogen Oxides,2A6_Other-minerals,,TON,0 +PR,Nitrogen Oxides,2C5_Lead-production,,TON,0 +PR,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +PR,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +PR,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2.66762 +PR,Nitrogen Oxides,3Dc_Other-farm,,TON,0 +PR,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,212.56 +PR,Nitrogen Oxides,5C_Incineration,biomass,TON,0 +PR,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,78.88040762 +PR,Nitrogen Oxides,5C_Open-burning-residential,,TON,70.22748501 +PR,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,5.532420462 +PR,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.353118809 +PR,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,205.650136 +PR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.275560616 +PR,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,35.56374728 +PR,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.20214733 +PR,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.614779879 +PR,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.117373309 +PR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.019178991 +PR,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.00789008 +PR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.491059598 +PR,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.764389395 +PR,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.284303021 +PR,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,44.48818983 +PR,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,421.8313772 +PR,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,713.8384 +PR,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,10.71 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.505238604 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.47061917 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.95232077 +PR,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,34813.76468 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,83.34423604 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.362467762 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.74448 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.975217507 +PR,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,792.6585609 +PR,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.020727163 +PR,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.009984314 +PR,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.151969664 +PR,PM10 Filterable,2A1_Cement-production,,TON,0 +PR,PM10 Filterable,2A2_Lime-production,,TON,0 +PR,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1180.781608 +PR,PM10 Filterable,2A6_Other-minerals,,TON,2556.568264 +PR,PM10 Filterable,2C5_Lead-production,,TON,0 +PR,PM10 Filterable,2D3e_Degreasing,,TON,0 +PR,PM10 Filterable,2H2_Food-and-beverage,,TON,2.32894042 +PR,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1.09965528 +PR,PM10 Filterable,3Dc_Other-farm,,TON,18.73235461 +PR,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,163.86 +PR,PM10 Filterable,5C_Incineration,biomass,TON,0 +PR,PM10 Filterable,5C_Open-burning-land-clearing,,TON,402.290094 +PR,PM10 Filterable,5C_Open-burning-residential,,TON,375.492366 +PR,PM10 Filterable,5C_Open-burning-yard-waste,,TON,33.90838245 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,454.443876 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,221.7 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,811.18 +PR,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,11.11 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,27.54558333 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11.44773641 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.6856958 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,7.100443833 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,16.32836516 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2.488501608 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,209.2015722 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,18.99692081 +PR,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00026259 +PR,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,47.2531496 +PR,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,34813.76468 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,16.01768215 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,686.0589958 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.98155292 +PR,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,96.04471812 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,38.16385232 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.599060946 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.225162344 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.830101378 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.018058519 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,168.2950035 +PR,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,21.47686837 +PR,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.35500749 +PR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,80.57888502 +PR,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,7.418788 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,86.17794126 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.199455 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.846 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.538515475 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26.18448109 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,15.89971265 +PR,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.324670294 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,24.73524884 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,368.2502691 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,822.2243745 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.045676527 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.022024897 +PR,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.39467459 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.48796166 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.076864138 +PR,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008260846 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.090432792 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,28.59907279 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.51950834 +PR,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,35.41207753 +PR,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,0 +PR,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +PR,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1180.781608 +PR,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2556.568264 +PR,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +PR,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,31.50693108 +PR,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1.099881 +PR,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,18.73235461 +PR,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,163.86 +PR,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,402.290094 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,375.492366 +PR,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,33.90838245 +PR,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,113.0519347 +PR,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,491.3084 +PR,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.745819623 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.325707371 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.869144447 +PR,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4650.534194 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,71.67604356 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.280263062 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.47848 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.576576562 +PR,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,755.2205038 +PR,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.015929209 +PR,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.007676727 +PR,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.083583314 +PR,PM2.5 Filterable,2A1_Cement-production,,TON,0 +PR,PM2.5 Filterable,2A2_Lime-production,,TON,0 +PR,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,118.0781608 +PR,PM2.5 Filterable,2A6_Other-minerals,,TON,319.5710266 +PR,PM2.5 Filterable,2C5_Lead-production,,TON,0 +PR,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +PR,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.081081113 +PR,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,0.00024428 +PR,PM2.5 Filterable,3Dc_Other-farm,,TON,3.746471119 +PR,PM2.5 Filterable,5C_Incineration,biomass,TON,0 +PR,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,366.7939097 +PR,PM2.5 Filterable,5C_Open-burning-residential,,TON,343.8719628 +PR,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,26.14514787 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,145.1126398 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5.5 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,588.65 +PR,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.044 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,26.71835076 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,11.2457772 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.6856958 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.142702016 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,11.1717509 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,2.418173217 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,202.9255261 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,17.48634692 +PR,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00026259 +PR,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,43.85147558 +PR,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4650.534194 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,8.881711312 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,182.1490845 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.437923467 +PR,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,24.77326628 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,26.42197445 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.34292134 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.063018681 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.345694636 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.009743666 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,95.20135206 +PR,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.56261557 +PR,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.593030077 +PR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,75.81688629 +PR,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,6.825286 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,74.50974918 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.81664443 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.58 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.139874535 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,25.39895122 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,14.66245575 +PR,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.324670294 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,23.99319008 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,338.8088695 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,784.7863174 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.040878572 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.019717307 +PR,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.326288237 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.05332209 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.070725573 +PR,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.008260846 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.027719619 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,26.31214962 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.353922997 +PR,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,32.57911594 +PR,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,118.0781608 +PR,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,319.5710266 +PR,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +PR,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,29.25906846 +PR,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,0.00047 +PR,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3.746471119 +PR,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,366.7939097 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,343.8719628 +PR,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,26.14514787 +PR,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,702.4632502 +PR,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,122.32 +PR,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,11664.71 +PR,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.023 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.989365354 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,2.090628139 +PR,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.032089393 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.362818261 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,211.971223 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.012736341 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,4.493359726 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.071343797 +PR,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.23597E-05 +PR,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,124.1873871 +PR,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.894598287 +PR,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,54.86989587 +PR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.584964327 +PR,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.9514137 +PR,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.806284411 +PR,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.115492704 +PR,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.007978253 +PR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.110015311 +PR,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.001472633 +PR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.561735605 +PR,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.642386598 +PR,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.085305635 +PR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,99.40088604 +PR,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,55.12264 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,4.167211891 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.61786206 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.78 +PR,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.645411632 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.363850927 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.36543961 +PR,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.014392092 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.443709829 +PR,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,2.336311204 +PR,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,12.69365067 +PR,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.136261905 +PR,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.001564247 +PR,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,0.455462462 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.207258976 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.002872865 +PR,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000387019 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018134994 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.164547562 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.227868059 +PR,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.623186701 +PR,Sulfur Dioxide,2A1_Cement-production,,TON,0 +PR,Sulfur Dioxide,2A2_Lime-production,,TON,0 +PR,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +PR,Sulfur Dioxide,2C5_Lead-production,,TON,0 +PR,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +PR,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +PR,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.04273 +PR,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +PR,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,30.3768 +PR,Sulfur Dioxide,5C_Incineration,biomass,TON,0 +PR,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,32.73536879 +PR,Sulfur Dioxide,5C_Open-burning-residential,,TON,11.70458097 +PR,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.678167641 +PR,Volatile Organic Compounds,11C_Other-natural,,TON,1100.63162 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,56.9266978 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,4.11 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,298.574 +PR,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,19.2207 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,36.89288937 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,80.02631045 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.219136701 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.35967722 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.84971807 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +PR,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,2.254791011 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,245.0193069 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,175.6281773 +PR,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.02151405 +PR,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,445.7799065 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,54.21348544 +PR,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,7875.776782 +PR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,33.31159826 +PR,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1030.139788 +PR,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,42.70502608 +PR,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,63.4416948 +PR,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.632974094 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,2.577119296 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,0.267384544 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,168.1314371 +PR,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,201.2619854 +PR,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,684.3188965 +PR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,201.4469369 +PR,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,3.0951637 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.833704102 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.69842336 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.095 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +PR,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,24.51955761 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36.27939421 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,489.2729832 +PR,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8.242227408 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,35.10067355 +PR,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5347.147974 +PR,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,757.8710449 +PR,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.013683766 +PR,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +PR,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.006488662 +PR,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,4.175146904 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.31742405 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.045441271 +PR,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.073682012 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.717224993 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1045.053904 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.8317064 +PR,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,3316.593134 +PR,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,275.6036499 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,49.45947159 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2604.753117 +PR,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,2170.770063 +PR,Volatile Organic Compounds,2A1_Cement-production,,TON,0 +PR,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +PR,Volatile Organic Compounds,2A6_Other-minerals,,TON,0 +PR,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0 +PR,Volatile Organic Compounds,2C5_Lead-production,,TON,0 +PR,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,14627.86983 +PR,Volatile Organic Compounds,2D3d_Coating-application,,TON,5007.64131 +PR,Volatile Organic Compounds,2D3e_Degreasing,,TON,0 +PR,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,3.6822 +PR,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,273.17962 +PR,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,54.9068311 +PR,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,317.2227377 +PR,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,4.354165473 +PR,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,0.219376 +PR,Volatile Organic Compounds,3Dc_Other-farm,,TON,0 +PR,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,6.032391393 +PR,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,116.817 +PR,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +PR,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,222.837156 +PR,Volatile Organic Compounds,5C_Open-burning-residential,,TON,73.21113033 +PR,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,24.98512485 +PR,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,32.353125 +RI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,1.632455 +RI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,54.85349 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.390931468 +RI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.099358667 +RI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.157206003 +RI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.280125 +RI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.63839785 +RI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,8.5140278 +RI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.65241052 +RI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.045089959 +RI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,1.55442182 +RI,Ammonia,1A3bii_Road-LDV,light_oil,TON,199.9399907 +RI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.094286301 +RI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,8.089514724 +RI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.984192623 +RI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.135586935 +RI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.028801055 +RI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5.688068924 +RI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.035945342 +RI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.25574382 +RI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,2.196247453 +RI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.66097162 +RI,Ammonia,1A3c_Rail,diesel_oil,TON,0.020831973 +RI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.848548271 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.53282697 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.124485042 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.34737 +RI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.497929174 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.147376467 +RI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.319070031 +RI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.05756264 +RI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.875361366 +RI,Ammonia,1A4bi_Residential-stationary,biomass,TON,48.76071286 +RI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,39.732004 +RI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.101249997 +RI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,184.510347 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.010581062 +RI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.000522192 +RI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003665921 +RI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.112397696 +RI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.076448991 +RI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.50690942 +RI,Ammonia,2A6_Other-minerals,Other_Fuel,TON,0.04444 +RI,Ammonia,2B_Chemicals-other,,TON,0.29157 +RI,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.01944 +RI,Ammonia,2D3d_Coating-application,,TON,0.24021 +RI,Ammonia,2D3h_Printing,,TON,0.204305 +RI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,3.24677 +RI,Ammonia,3B1a_Cattle-dairy,,TON,34.733382 +RI,Ammonia,3B1b_Cattle-non-dairy,,TON,19.411769 +RI,Ammonia,3B2_Manure-sheep,,TON,4.9152632 +RI,Ammonia,3B3_Manure-swine,,TON,18.2044129 +RI,Ammonia,3B4_Manure-other,,TON,19.5533911 +RI,Ammonia,3B4_Manure-poultry,,TON,27.59263897 +RI,Ammonia,3B4d_Manure-goats,,TON,7.5629608 +RI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,132.4 +RI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,22.666443 +RI,Ammonia,5D1_Wastewater-domestic,,TON,4.124738 +RI,Ammonia,6A_Other-commertial,Other_Fuel,TON,0.00008 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,48177.8164 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,58505.21968 +RI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3355.971451 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,203500.478 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3669.528665 +RI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.42648723 +RI,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,114097.7153 +RI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,58734.0382 +RI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3079983.249 +RI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3008.09666 +RI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,140714.5449 +RI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,63994.94481 +RI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,4176.990685 +RI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1148.384 +RI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,371452.8509 +RI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,942.131678 +RI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,289534.38 +RI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,57872.86969 +RI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,24293.9527 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18128.4099 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,26033.52335 +RI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1189.07267 +RI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,7085.00191 +RI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,65362.40033 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1301.63573 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,36.49002871 +RI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.69567572 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,449.48139 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,8275.73711 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,9414.1649 +RI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,36760.2971 +RI,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,3465106.39 +RI,Carbon Monoxide,11C_Other-natural,,TON,1765.36619 +RI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,8.054175502 +RI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,956.8371895 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,72.12582216 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1442.573777 +RI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,51.83640154 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,17.82265147 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,20.22520704 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.249683279 +RI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,398.5710034 +RI,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.052065 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,571.893531 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,749.6230473 +RI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.106157377 +RI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1601.447216 +RI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,545.876192 +RI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,36746.40967 +RI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,28.0982533 +RI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2050.66141 +RI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,108.1685482 +RI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,261.0810775 +RI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,9.3588999 +RI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,301.2397621 +RI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,31.95339197 +RI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,356.501181 +RI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1487.551047 +RI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,985.17616 +RI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,6.6582305 +RI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,265.3555257 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,65.744191 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,47.9144907 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.171045 +RI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,459.1392333 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,70.093921 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,5371.673673 +RI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,28.111238 +RI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,20.90575061 +RI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,14786.74357 +RI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,6479.083049 +RI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,198.66 +RI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.50625001 +RI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,392.9984003 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.6753259 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.62004052 +RI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.022027047 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.4485879 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,1874.953121 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,18.679848 +RI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3966.34925 +RI,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,40.556635 +RI,Carbon Monoxide,2A6_Other-minerals,Other_Fuel,TON,51.07666 +RI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.843285 +RI,Carbon Monoxide,2H2_Food-and-beverage,,TON,193.3686985 +RI,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,6.670885 +RI,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,12.1025 +RI,Carbon Monoxide,5C_Incineration,biomass,TON,66.70228562 +RI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,4653.4954 +RI,Carbon Monoxide,5C_Open-burning-residential,,TON,417.255127 +RI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,31.22772632 +RI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.02643375 +RI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.694449049 +RI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,22.28829575 +RI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,5.90844586 +RI,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.69504989 +RI,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.0575413 +RI,Methane,1A3bii_Road-LDV,diesel_oil,TON,7.5905552 +RI,Methane,1A3bii_Road-LDV,light_oil,TON,111.1125119 +RI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.274277735 +RI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.130134538 +RI,Methane,1A3biii_Road-bus,diesel_oil,TON,2.300212745 +RI,Methane,1A3biii_Road-bus,light_oil,TON,0.69166461 +RI,Methane,1A3biii_Road-bus,natural_gas,TON,8.8960097 +RI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17.92779868 +RI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.070200222 +RI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.4380197 +RI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,2.576811706 +RI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.3023499 +RI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.52845906 +RI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,18.04317944 +RI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,19.0860853 +RI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.237599115 +RI,Methane,1A4bi_Residential-mobile,light_oil,TON,57.63713188 +RI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.057011223 +RI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.045186588 +RI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.007408965 +RI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017529973 +RI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,8.620722775 +RI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.26850719 +RI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,36.0489374 +RI,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,4210.226966 +RI,Nitrogen Oxides,11C_Other-natural,,TON,166.7114 +RI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,24.49354381 +RI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,684.0847262 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,202.5853444 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,143.9937715 +RI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8.803530923 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,6.31692493 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,57.51780827 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,51.90974139 +RI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,478.3542497 +RI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.208265 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1019.51811 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,9.9989629 +RI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.015295654 +RI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,368.5410462 +RI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,140.4518649 +RI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,3601.416683 +RI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.382477 +RI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,220.5557956 +RI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,276.7910096 +RI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,21.34897923 +RI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,5.4090569 +RI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1044.100469 +RI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,2.41073772 +RI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,823.74903 +RI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,133.3729129 +RI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,47.872665 +RI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,53.655519 +RI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1823.262733 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,25.6568186 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,208.576475 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,32.42765 +RI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,496.1768885 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,134.319023 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,75.66828889 +RI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7.1691382 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,53.13312697 +RI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,143.6535168 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,123.3200913 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,715.176 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,1.82250001 +RI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,952.458124 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,11.3218262 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.146038259 +RI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002336208 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.6822011 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,18.84098248 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,94.11169 +RI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,268.158393 +RI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,16.353965 +RI,Nitrogen Oxides,2A6_Other-minerals,Other_Fuel,TON,11.34163 +RI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,1.06277 +RI,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,29.343635 +RI,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,3.8185 +RI,Nitrogen Oxides,5C_Incineration,biomass,TON,31.57344056 +RI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,112.948908 +RI,Nitrogen Oxides,5C_Open-burning-residential,,TON,29.4533052 +RI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.728677814 +RI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.176580616 +RI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,103.895369 +RI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.011761374 +RI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.970065322 +RI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.136250381 +RI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.195772415 +RI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.07279591 +RI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.480961617 +RI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.049022006 +RI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.635349121 +RI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.484442623 +RI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.36682227 +RI,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,6.697644674 +RI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.491762181 +RI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,48.316975 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,13.89052927 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.237901336 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.724029421 +RI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,14.08019158 +RI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00937861 +RI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1443.316695 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,56.18159563 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,13.42525618 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.63417797 +RI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.240158997 +RI,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,864.6696269 +RI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,42.910558 +RI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.109250005 +RI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.965300466 +RI,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.22 +RI,PM10 Filterable,2A1_Cement-production,,TON,5.4497355 +RI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,1846.119721 +RI,PM10 Filterable,2A6_Other-minerals,,TON,334.7180701 +RI,PM10 Filterable,2C_Iron-steel-alloy,,TON,11.21004856 +RI,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,2.39857838 +RI,PM10 Filterable,2D3d_Coating-application,,TON,0.002595 +RI,PM10 Filterable,2H2_Food-and-beverage,,TON,36.98789246 +RI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,5.497322913 +RI,PM10 Filterable,3B1a_Cattle-dairy,,TON,6.6139692 +RI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,33.62227 +RI,PM10 Filterable,3Dc_Other-farm,,TON,78.32842399 +RI,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,38.01753 +RI,PM10 Filterable,5C_Incineration,Other_Fuel,TON,0.540942729 +RI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,576.03943 +RI,PM10 Filterable,5C_Open-burning-residential,,TON,157.4809513 +RI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,10.59512062 +RI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.196606711 +RI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,87.99544329 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.45250415 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.663930125 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.404620245 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,13.71804384 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.512350843 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.818717753 +RI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,22.17169419 +RI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.011245 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,86.329896 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,5.813007493 +RI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000180597 +RI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,18.40989243 +RI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1443.316695 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,10.0311963 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,359.5490157 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.72123472 +RI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.03409384 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,26.21666753 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.113306964 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.230301231 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,75.39999977 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.125037691 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,72.8536186 +RI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,7.582787566 +RI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.0944271 +RI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1.570326 +RI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,45.78688056 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,57.72170757 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,18.43441886 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.103593439 +RI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.87302656 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12.0101932 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.817871018 +RI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.150888858 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.531819364 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,60.20188054 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,900.5490946 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,94.562164 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.24100005 +RI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.108239861 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.08346353 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.160271604 +RI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.38281E-05 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.50997712 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,4.216947654 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.0734085 +RI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,12.43598624 +RI,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.22878 +RI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,5.454825 +RI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1846.119721 +RI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,334.9357525 +RI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,11.35651 +RI,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,2.418545 +RI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.002595 +RI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,501.76665 +RI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,6.696935 +RI,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,6.6139692 +RI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,33.62227 +RI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,78.32842399 +RI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,39.5635 +RI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,5.093739419 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,576.03943 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,157.4809513 +RI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,10.59512062 +RI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.491762181 +RI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,48.24580194 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,10.70653535 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.865245641 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.903644572 +RI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,12.38472484 +RI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.00677861 +RI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,320.2293643 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,48.31005806 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.19555256 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.469724814 +RI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.977812179 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,850.3638589 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,32.977562 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.083999993 +RI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.080914991 +RI,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.22 +RI,PM2.5 Filterable,2A1_Cement-production,,TON,1.92343594 +RI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,184.6119721 +RI,PM2.5 Filterable,2A6_Other-minerals,,TON,42.3046587 +RI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.56866199 +RI,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,0.785275459 +RI,PM2.5 Filterable,2D3d_Coating-application,,TON,0.002595 +RI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,1.293206694 +RI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,2.538969153 +RI,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,1.37470818 +RI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,6.9883596 +RI,PM2.5 Filterable,3Dc_Other-farm,,TON,14.95884882 +RI,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,10.715166 +RI,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,0.38056646 +RI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,525.21239 +RI,PM2.5 Filterable,5C_Open-burning-residential,,TON,144.2194013 +RI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,8.16939634 +RI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.196608794 +RI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,87.92426814 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.10864718 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6.55382274 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.404620245 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,10.87273345 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,3.083405807 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,5.094438819 +RI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,20.05607769 +RI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.008645 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,83.740007 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,5.350854623 +RI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000180597 +RI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,16.70092957 +RI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,320.2293643 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,5.95404513 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,119.2420677 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.52497278 +RI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.952745279 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,17.73580798 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.624281188 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.091387021 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,42.99003357 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.051795536 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,43.2949922 +RI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.433560937 +RI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.8325786 +RI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1.5232161 +RI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,44.08787453 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,49.80725907 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,17.20574406 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.951595107 +RI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.64025245 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,11.6498878 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,6.287370118 +RI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.150888858 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,3.4258645 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,55.38827129 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,886.2433266 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,84.629164 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.21574999 +RI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.223855357 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.05095957 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.147450019 +RI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.38281E-05 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.49467775 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,3.879806874 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.0112057 +RI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,11.44110729 +RI,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.22878 +RI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,1.92852544 +RI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,184.6119721 +RI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,42.52234114 +RI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,5.71512343 +RI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.805242079 +RI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.002595 +RI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,466.0719614 +RI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,3.73858124 +RI,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1.37470818 +RI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,6.9883596 +RI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,14.95884882 +RI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,12.261136 +RI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.93060996 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,525.21239 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,144.2194013 +RI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,8.16939634 +RI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.104370695 +RI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,41.98528931 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.384021624 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.104757759 +RI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.01881018 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0.698992453 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,8.44950541 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,79.9299074 +RI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,5.138290437 +RI,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.074765 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.66363303 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.057314385 +RI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.97524E-06 +RI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,52.82564648 +RI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.505489854 +RI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,63.31997407 +RI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.025966577 +RI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.892771575 +RI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.550479671 +RI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.085722427 +RI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.006080107 +RI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.143673525 +RI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.019330604 +RI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2.45636795 +RI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,1.187384427 +RI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.49760874 +RI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.023479797 +RI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,15.21546139 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,2.91459029 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,30.01031548 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,69.033755 +RI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.001744231 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.153216555 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.415203617 +RI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.006660581 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.061507684 +RI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.081076398 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,20.30739586 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,282.09722 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.017116249 +RI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,5.894360401 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.011948977 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.000608232 +RI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.89768E-06 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003941409 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.136736209 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.086542038 +RI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.59991475 +RI,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.081065 +RI,Sulfur Dioxide,2A6_Other-minerals,Other_Fuel,TON,2.991645 +RI,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.031085 +RI,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,2.17776 +RI,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,45.05045 +RI,Sulfur Dioxide,5C_Incineration,biomass,TON,15.85190074 +RI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,46.873791 +RI,Sulfur Dioxide,5C_Open-burning-residential,,TON,4.90888443 +RI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.211902424 +RI,Volatile Organic Compounds,11C_Other-natural,,TON,17070.9467 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.93071786 +RI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,76.15090714 +RI,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,3.682835 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,13.74475023 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,40.76188701 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4.817891942 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0.476634703 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.863259988 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.257780817 +RI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,50.28771499 +RI,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.002085 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,103.147885 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,49.1034968 +RI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.012438272 +RI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,151.9269456 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,58.215476 +RI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,3224.433193 +RI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.4573556 +RI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,160.4884677 +RI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,25.16108581 +RI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,17.03350421 +RI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,1.05497013 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,60.89088954 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,1.474751164 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,85.9123426 +RI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,61.91366141 +RI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,190.631931 +RI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2.4820693 +RI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,77.19770769 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.548109471 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,12.91059445 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.630843921 +RI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.12991277 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,16.4498667 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,171.9038757 +RI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.1256975 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,4.955084397 +RI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,904.3816348 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,898.7874352 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,28.328919 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.071 +RI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,54.03189157 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.1649339 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.32595282 +RI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00160154 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.9027414 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,143.4595514 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.9802979 +RI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,839.246003 +RI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,51.268025 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,122.8959923 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,28.46247446 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,161.7935499 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,170.8777541 +RI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.408 +RI,Volatile Organic Compounds,2A6_Other-minerals,Other_Fuel,TON,20.5825 +RI,Volatile Organic Compounds,2B_Chemicals-other,,TON,67.88741 +RI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,1.70057 +RI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,4.826005 +RI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2728.39591 +RI,Volatile Organic Compounds,2D3d_Coating-application,,TON,2403.740018 +RI,Volatile Organic Compounds,2D3e_Degreasing,,TON,697.932855 +RI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,5.976 +RI,Volatile Organic Compounds,2D3h_Printing,,TON,2995.2033 +RI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +RI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +RI,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,1.37302 +RI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,91.12728154 +RI,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,169.87706 +RI,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,2.7786708 +RI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1.5529415 +RI,Volatile Organic Compounds,3B2_Manure-sheep,,TON,0.39322111 +RI,Volatile Organic Compounds,3B3_Manure-swine,,TON,1.45635324 +RI,Volatile Organic Compounds,3B4_Manure-other,,TON,1.56427126 +RI,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2.207411646 +RI,Volatile Organic Compounds,3B4d_Manure-goats,,TON,0.60503672 +RI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,5.44858622 +RI,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,78.57493 +RI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,160.38225 +RI,Volatile Organic Compounds,5C_Incineration,biomass,TON,6.527159349 +RI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,319.080613 +RI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,30.7046419 +RI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,7.80693078 +RI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,14.26382 +RI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,2.06617 +RI,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,5.87572 +SC,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,57.90734974 +SC,Ammonia,1A1a_Public-Electricity,hard_coal,TON,642.6371232 +SC,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,Ammonia,1A1a_Public-Electricity,natural_gas,TON,205.1249895 +SC,Ammonia,1A1b_Pet-refining,natural_gas,TON,1.678512 +SC,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.86659557 +SC,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.479306815 +SC,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.001108258 +SC,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,351.6825376 +SC,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.929233645 +SC,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,3.654441279 +SC,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.398425384 +SC,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,9.104993004 +SC,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,95.26260015 +SC,Ammonia,1A2c_Chemicals,natural_gas,TON,0.022835612 +SC,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.917948442 +SC,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.183576777 +SC,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,15.96458583 +SC,Ammonia,1A3bii_Road-LDV,light_oil,TON,1617.465738 +SC,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.660978214 +SC,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,61.39571266 +SC,Ammonia,1A3biii_Road-bus,diesel_oil,TON,6.395867983 +SC,Ammonia,1A3biii_Road-bus,light_oil,TON,3.858258062 +SC,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.003422554 +SC,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,86.91740142 +SC,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.364805185 +SC,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,67.08485343 +SC,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,15.29533911 +SC,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,17.04863834 +SC,Ammonia,1A3c_Rail,diesel_oil,TON,2.630514244 +SC,Ammonia,1A3c_Rail,light_oil,TON,0.00196261 +SC,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.536850351 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,1.481710707 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.050264913 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.231636791 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.016317694 +SC,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.159766351 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.594219233 +SC,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.224720677 +SC,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.446710264 +SC,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.028225513 +SC,Ammonia,1A4bi_Residential-stationary,biomass,TON,131.5337495 +SC,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.784999871 +SC,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.708750003 +SC,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,246.546222 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.373263319 +SC,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.07438169 +SC,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.017342969 +SC,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.975773503 +SC,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.870001016 +SC,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,6.561840422 +SC,Ammonia,2A6_Other-minerals,Other_Fuel,TON,17.09963 +SC,Ammonia,2B_Chemicals-other,,TON,38.86922 +SC,Ammonia,2C_Iron-steel-alloy,,TON,5.73 +SC,Ammonia,2D3h_Printing,,TON,0.81702 +SC,Ammonia,2H1_Pulp-and-paper,,TON,471.2834879 +SC,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,0.304 +SC,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,43.68712287 +SC,Ammonia,3B1a_Cattle-dairy,,TON,1295.211305 +SC,Ammonia,3B1b_Cattle-non-dairy,,TON,1344.938941 +SC,Ammonia,3B2_Manure-sheep,,TON,40.20827243 +SC,Ammonia,3B3_Manure-swine,,TON,3707.091502 +SC,Ammonia,3B4_Manure-other,,TON,911.30371 +SC,Ammonia,3B4_Manure-poultry,,TON,15654.63318 +SC,Ammonia,3B4d_Manure-goats,,TON,238.988119 +SC,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,5466.8 +SC,Ammonia,3F_Ag-res-on-field,,TON,711.999 +SC,Ammonia,5A_Solid-waste-disposal,,TON,0 +SC,Ammonia,5B_Compost-biogas,Other_Fuel,TON,108.65158 +SC,Ammonia,5D1_Wastewater-domestic,,TON,0 +SC,Ammonia,5D2_Wastewater-industrial,biomass,TON,213.268 +SC,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,30663.6 +SC,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3896.812846 +SC,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,85799.14555 +SC,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,1530.6864 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,230044.9048 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,280296.29 +SC,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,16062.83293 +SC,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2519388.881 +SC,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,15397.18687 +SC,Carbon Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,973134.7754 +SC,Carbon Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,12293.13752 +SC,Carbon Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,37.08605262 +SC,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1356170.628 +SC,Carbon Dioxide,1A2c_Chemicals,natural_gas,TON,795.4035 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,728311.8397 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,15113.20841 +SC,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.584459832 +SC,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,549015.7194 +SC,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,509764.8255 +SC,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,21251985.8 +SC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,81531.92912 +SC,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,938532.664 +SC,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,355053.8332 +SC,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,117728.6528 +SC,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,119.3931 +SC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5687014.095 +SC,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,35462.12859 +SC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3662495.56 +SC,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,406202.1651 +SC,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,148991.5167 +SC,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2486.805354 +SC,Carbon Dioxide,1A3c_Rail,light_oil,TON,153.0816692 +SC,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2178.877268 +SC,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2692.45141 +SC,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,14.56052527 +SC,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,128255.8928 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,73115.05053 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,99875.35926 +SC,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4433.350974 +SC,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,54978.85184 +SC,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,452552.0646 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,169087.1626 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5373.870623 +SC,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,319.2423609 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2127.844 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,70291.09504 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,107135.6305 +SC,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,478477.3169 +SC,Carbon Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,3.98 +SC,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14.563549 +SC,Carbon Dioxide,2A2_Lime-production,Other_Fuel,TON,4070 +SC,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,63368.10596 +SC,Carbon Dioxide,2B_Chemicals-other,,TON,3209.9915 +SC,Carbon Dioxide,2C3_Aluminum-production,,TON,0 +SC,Carbon Dioxide,2C7_Other-metal,Other_Fuel,TON,196.2500936 +SC,Carbon Dioxide,2D3d_Coating-application,,TON,474.473 +SC,Carbon Dioxide,2H1_Pulp-and-paper,,TON,2167255.41 +SC,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,40683780.52 +SC,Carbon Dioxide,5A_Solid-waste-disposal,,TON,195866.633 +SC,Carbon Dioxide,5C_Incineration,biomass,TON,43168.509 +SC,Carbon Dioxide,5E_Other-waste,Other_Fuel,TON,37.63086 +SC,Carbon Monoxide,11C_Other-natural,,TON,76320.2034 +SC,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,614.561205 +SC,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,26.7960669 +SC,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,5877.1146 +SC,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1069.403645 +SC,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,2.82254 +SC,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,333.0031478 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,6596.509763 +SC,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,234.4804231 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,21051.70631 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,132.2650576 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,474.98761 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,8.85466444 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,13.05646305 +SC,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3865.234662 +SC,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0.59943465 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,2697.676898 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3168.100821 +SC,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.483991503 +SC,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,9937.143135 +SC,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,5250.932443 +SC,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,394328.5344 +SC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,588.6405554 +SC,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17457.20036 +SC,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1085.560795 +SC,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5718.36988 +SC,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.3400235 +SC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4552.914748 +SC,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,482.8071521 +SC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4817.44542 +SC,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9740.040458 +SC,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,6191.09728 +SC,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,851.848462 +SC,Carbon Monoxide,1A3c_Rail,light_oil,TON,34.86813407 +SC,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,518.5443474 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,175.8212268 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.092793428 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.43157534 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.647196797 +SC,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1196.7705 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,252.9489578 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20951.10469 +SC,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,91.88433379 +SC,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,165.0329844 +SC,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,99955.90374 +SC,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,17992.75415 +SC,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,8.925000083 +SC,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.543749974 +SC,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,570.2418147 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,483.9624145 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1469.503474 +SC,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.244843888 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,14.6170754 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,14513.77866 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,211.4848012 +SC,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,50424.26416 +SC,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,13.43 +SC,Carbon Monoxide,2A1_Cement-production,,TON,11.953 +SC,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,7.7 +SC,Carbon Monoxide,2A6_Other-minerals,,TON,6600.392284 +SC,Carbon Monoxide,2B_Chemicals-other,,TON,1209.48536 +SC,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3057.55204 +SC,Carbon Monoxide,2C3_Aluminum-production,,TON,22842.9906 +SC,Carbon Monoxide,2C5_Lead-production,,TON,78.195 +SC,Carbon Monoxide,2C6_Zinc-production,,TON,6.9535 +SC,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,6917.036013 +SC,Carbon Monoxide,2D3d_Coating-application,,TON,8.98439 +SC,Carbon Monoxide,2H1_Pulp-and-paper,,TON,6442.999077 +SC,Carbon Monoxide,2H2_Food-and-beverage,,TON,895.1126014 +SC,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,83.0967975 +SC,Carbon Monoxide,3F_Ag-res-on-field,,TON,3605.81 +SC,Carbon Monoxide,5A_Solid-waste-disposal,,TON,398.4445728 +SC,Carbon Monoxide,5C_Incineration,biomass,TON,38.63124161 +SC,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,37804.66198 +SC,Carbon Monoxide,5C_Open-burning-residential,,TON,6663.97835 +SC,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,654.384322 +SC,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.222 +SC,Methane,1A1a_Public-Electricity,biomass,TON,1.91873 +SC,Methane,1A1a_Public-Electricity,natural_gas,TON,6.11489549 +SC,Methane,1A1b_Pet-refining,natural_gas,TON,110.6616574 +SC,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.758589791 +SC,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,30.1474618 +SC,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,100.42793 +SC,Methane,1A2_Industrial_fuel_combustion,biomass,TON,306.5523385 +SC,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.151455402 +SC,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,61.9025434 +SC,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.35539922 +SC,Methane,1A2_Industrial_fuel_combustion,light_oil,TON,0.000600576 +SC,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,38.35641292 +SC,Methane,1A2c_Chemicals,natural_gas,TON,0.015245214 +SC,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,21.29823283 +SC,Methane,1A2g_Construction_and_Mining,light_oil,TON,11.51736536 +SC,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.317488947 +SC,Methane,1A3bii_Road-LDV,diesel_oil,TON,27.55792188 +SC,Methane,1A3bii_Road-LDV,light_oil,TON,917.3598875 +SC,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.621751607 +SC,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,50.07449119 +SC,Methane,1A3biii_Road-bus,diesel_oil,TON,8.021860573 +SC,Methane,1A3biii_Road-bus,light_oil,TON,15.8637485 +SC,Methane,1A3biii_Road-bus,natural_gas,TON,0.1497757 +SC,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,362.4336072 +SC,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.731621939 +SC,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,118.1277708 +SC,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,18.03941937 +SC,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.74447162 +SC,Methane,1A3c_Rail,diesel_oil,TON,0.111857248 +SC,Methane,1A3c_Rail,light_oil,TON,0.099033414 +SC,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.003725567 +SC,Methane,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.107349396 +SC,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.11531377 +SC,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.050641443 +SC,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,66.60578799 +SC,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,63.87817402 +SC,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.815355268 +SC,Methane,1A4bi_Residential-mobile,light_oil,TON,350.6822267 +SC,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,4.089988584 +SC,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.578158384 +SC,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.749748573 +SC,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.089929253 +SC,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,84.64387937 +SC,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.076079662 +SC,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,457.4061837 +SC,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,126.3 +SC,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,462.45 +SC,Methane,2A6_Other-minerals,Other_Fuel,TON,11.78777175 +SC,Methane,2B_Chemicals-other,Other_Fuel,TON,1300.0002 +SC,Methane,2C7_Other-metal,Other_Fuel,TON,0.0256 +SC,Methane,2H1_Pulp-and-paper,,TON,1914.986605 +SC,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,65457.01723 +SC,Methane,5A_Solid-waste-disposal,,TON,621.6375212 +SC,Methane,5C_Incineration,biomass,TON,10.243378 +SC,Nitrogen Oxides,11C_Other-natural,,TON,12716.44871 +SC,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,854.56 +SC,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,135.9103611 +SC,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,8615.002 +SC,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1780.33243 +SC,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,1.1685 +SC,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,938.4782313 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,644.125308 +SC,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,40.768521 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,8611.71005 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,584.0244009 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1574.446093 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,96.69614868 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,49.24905431 +SC,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3672.029365 +SC,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,0.71361225 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,4582.133241 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,49.62304576 +SC,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.082392631 +SC,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,3118.218498 +SC,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1607.691921 +SC,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,43841.93513 +SC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,224.0359875 +SC,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1949.966161 +SC,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,3097.551976 +SC,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,601.6276329 +SC,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.1212218 +SC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15556.77502 +SC,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,64.74237147 +SC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,11923.0166 +SC,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,977.9868298 +SC,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,279.9630451 +SC,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,4556.172098 +SC,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.325686211 +SC,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3825.700694 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,64.4962588 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,26.90844865 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,15.75428348 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.939412322 +SC,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1280.325939 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,501.7217535 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,254.9462249 +SC,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,24.24276152 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,427.968991 +SC,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,886.1222796 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,298.2798423 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,32.12999875 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,12.75749934 +SC,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1433.093293 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1163.800613 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,20.62908633 +SC,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.748913052 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,16.2758086 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,140.9235499 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1063.03883 +SC,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3268.84673 +SC,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.38 +SC,Nitrogen Oxides,2A1_Cement-production,,TON,5.00171 +SC,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,29.2 +SC,Nitrogen Oxides,2A6_Other-minerals,,TON,6236.485576 +SC,Nitrogen Oxides,2B_Chemicals-other,,TON,206.293063 +SC,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,683.73557 +SC,Nitrogen Oxides,2C3_Aluminum-production,,TON,53.8683 +SC,Nitrogen Oxides,2C5_Lead-production,,TON,89.808 +SC,Nitrogen Oxides,2C6_Zinc-production,,TON,0.8692 +SC,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,204.2451871 +SC,Nitrogen Oxides,2D3d_Coating-application,,TON,0.816762 +SC,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,5579.49442 +SC,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,3.14364705 +SC,Nitrogen Oxides,3F_Ag-res-on-field,,TON,144.537 +SC,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,89.0371 +SC,Nitrogen Oxides,5C_Incineration,biomass,TON,35.78277524 +SC,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,917.5889292 +SC,Nitrogen Oxides,5C_Open-burning-residential,,TON,470.398482 +SC,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,36.22484676 +SC,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.0075 +SC,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,12.2252 +SC,Nitrous Oxide,1A1a_Public-Electricity,biomass,TON,0.959366 +SC,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.11261406 +SC,Nitrous Oxide,1A1b_Pet-refining,Other_Fuel,TON,0.0129483 +SC,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,150.1224841 +SC,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.130541569 +SC,Nitrous Oxide,1A2_Industrial_fuel_combustion,hard_coal,TON,7.76590362 +SC,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.252273828 +SC,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,20.39750334 +SC,Nitrous Oxide,1A2c_Chemicals,natural_gas,TON,0.014582418 +SC,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.474094109 +SC,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,748.7298161 +SC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.264189714 +SC,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,41.40478531 +SC,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.948896552 +SC,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.204643166 +SC,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.007287323 +SC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.26116027 +SC,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.59178728 +SC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.134019194 +SC,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,15.22018736 +SC,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.616131256 +SC,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.015785917 +SC,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.057182898 +SC,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.441239801 +SC,Nitrous Oxide,2B_Chemicals-other,Other_Fuel,TON,0.0011 +SC,Nitrous Oxide,2H1_Pulp-and-paper,,TON,31.435371 +SC,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,455.8634598 +SC,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,26.5004093 +SC,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.905042551 +SC,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,315.3987 +SC,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,177.236625 +SC,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,4.74481109 +SC,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,10938.89624 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,30.84727813 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,300.4717777 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,14.95748107 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.357212294 +SC,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,114.5350376 +SC,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0.013558673 +SC,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,70519.60683 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,146.2500863 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.745102642 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.907753896 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.034374193 +SC,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.00336948 +SC,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,2360.557249 +SC,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.927800001 +SC,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.764750007 +SC,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.852199981 +SC,PM10 Filterable,2A1_Cement-production,,TON,431.2663527 +SC,PM10 Filterable,2A2_Lime-production,,TON,14.12655169 +SC,PM10 Filterable,2A5b_Construction-and-demolition,,TON,6985.554446 +SC,PM10 Filterable,2A6_Other-minerals,,TON,3465.741026 +SC,PM10 Filterable,2B_Chemicals-other,,TON,210.2643336 +SC,PM10 Filterable,2C_Iron-steel-alloy,,TON,157.991007 +SC,PM10 Filterable,2C3_Aluminum-production,,TON,87.928485 +SC,PM10 Filterable,2C5_Lead-production,,TON,15.384 +SC,PM10 Filterable,2C6_Zinc-production,,TON,37.262705 +SC,PM10 Filterable,2C7_Other-metal,,TON,165.783317 +SC,PM10 Filterable,2D3d_Coating-application,,TON,26.93931305 +SC,PM10 Filterable,2D3h_Printing,,TON,0.905 +SC,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.14609 +SC,PM10 Filterable,2H1_Pulp-and-paper,,TON,1848.538533 +SC,PM10 Filterable,2H2_Food-and-beverage,,TON,216.3218887 +SC,PM10 Filterable,2H3_Other-industrial-processes,,TON,488.9175296 +SC,PM10 Filterable,2I_Wood-processing,,TON,5.5939852 +SC,PM10 Filterable,3B1a_Cattle-dairy,,TON,114.8129792 +SC,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,3541.138354 +SC,PM10 Filterable,3Dc_Other-farm,,TON,15474.07702 +SC,PM10 Filterable,5A_Solid-waste-disposal,,TON,99.35267 +SC,PM10 Filterable,5C_Incineration,biomass,TON,41.46480405 +SC,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4679.703231 +SC,PM10 Filterable,5C_Open-burning-residential,,TON,2515.12688 +SC,PM10 Filterable,5C_Open-burning-yard-waste,,TON,222.0232526 +SC,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.15640337 +SC,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +SC,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,7.402056 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,66.57225238 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,5.048476495 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,960.2452 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +SC,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,528.2495137 +SC,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.75536654 +SC,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,53.01371776 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.55433026 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.929776033 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,11681.9839 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,37.25627433 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,392.9864838 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,17.58869223 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,6.113290229 +SC,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,355.3860656 +SC,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.054234599 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,427.5003032 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,23.2948232 +SC,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000592184 +SC,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,261.0287947 +SC,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,70519.60683 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,91.94787324 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1983.565023 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,14.86721906 +SC,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,84.56340825 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,237.6565319 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,25.75804853 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01702616 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,959.7021342 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.677816277 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,972.4611277 +SC,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,46.70797517 +SC,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.89790214 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,134.9607403 +SC,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.019455934 +SC,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,84.8024163 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,151.3964902 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.863734527 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.341429465 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.060650549 +SC,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,23.45051775 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,43.22316072 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,26.06056726 +SC,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.559843126 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,28.29026061 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,426.8537253 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2459.847022 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,4.248299924 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.686999929 +SC,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,7.410764674 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,93.78268074 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.83070206 +SC,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.039340682 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.150491 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,55.39224963 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,23.09233877 +SC,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,144.2381353 +SC,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,442.8718548 +SC,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,14.50710736 +SC,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,6985.554446 +SC,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,3812.198399 +SC,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,256.7802336 +SC,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,414.1833591 +SC,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,92.508717 +SC,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,16.18059 +SC,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,37.262705 +SC,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,203.6763526 +SC,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,27.69293505 +SC,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.905 +SC,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.1979536 +SC,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2678.004987 +SC,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2373.622565 +SC,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,634.820182 +SC,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,5.5939852 +SC,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,114.8129792 +SC,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3541.138354 +SC,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,15474.07702 +SC,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,583.23 +SC,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,107.7757309 +SC,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,61.64011265 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4679.703231 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2515.12688 +SC,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,222.0232526 +SC,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.3455539 +SC,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.6127 +SC,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,7.402056 +SC,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,26.0585369 +SC,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.58006334 +SC,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,156.8574 +SC,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,158.295 +SC,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,4.12211109 +SC,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9390.744855 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,28.63735051 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,135.9078118 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,10.12803776 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,3.357864935 +SC,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,110.795209 +SC,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0.013558673 +SC,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9359.468701 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,125.7845353 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.540452175 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.197201507 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.029153534 +SC,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.990030521 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,2310.136593 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.481550098 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.588000004 +SC,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.568710027 +SC,PM2.5 Filterable,2A1_Cement-production,,TON,187.943418 +SC,PM2.5 Filterable,2A2_Lime-production,,TON,10.76200003 +SC,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,701.1024946 +SC,PM2.5 Filterable,2A6_Other-minerals,,TON,795.4713257 +SC,PM2.5 Filterable,2B_Chemicals-other,,TON,153.5713689 +SC,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,83.04409782 +SC,PM2.5 Filterable,2C3_Aluminum-production,,TON,60.25509178 +SC,PM2.5 Filterable,2C5_Lead-production,,TON,15.384 +SC,PM2.5 Filterable,2C6_Zinc-production,,TON,35.6163337 +SC,PM2.5 Filterable,2C7_Other-metal,,TON,148.5213279 +SC,PM2.5 Filterable,2D3d_Coating-application,,TON,26.135837 +SC,PM2.5 Filterable,2D3h_Printing,,TON,0.905 +SC,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,0.144898511 +SC,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1290.74824 +SC,PM2.5 Filterable,2H2_Food-and-beverage,,TON,26.65386807 +SC,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,309.2275373 +SC,PM2.5 Filterable,2I_Wood-processing,,TON,2.05202567 +SC,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,23.8637836 +SC,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,736.022471 +SC,PM2.5 Filterable,3Dc_Other-farm,,TON,2746.747913 +SC,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,43.18713966 +SC,PM2.5 Filterable,5C_Incineration,biomass,TON,26.88815157 +SC,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,4266.788361 +SC,PM2.5 Filterable,5C_Open-burning-residential,,TON,2303.32675 +SC,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,171.1916176 +SC,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.15640337 +SC,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0 +SC,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,7.402056 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,66.13037998 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,4.723497294 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,801.7039 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,509.3078887 +SC,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4.13266654 +SC,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,51.42182787 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.04865494 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.929776033 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,10133.79132 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,35.04759265 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,228.4106933 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,12.75895809 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,6.114562234 +SC,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,351.6974186 +SC,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0.054234599 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,414.6752793 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,21.44413902 +SC,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000592184 +SC,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,235.5580945 +SC,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9359.468701 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,66.32936902 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,734.8527946 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,10.68947696 +SC,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,30.53575482 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,181.3658149 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.90366405 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.002286143 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,587.0902479 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.13938088 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,646.9606476 +SC,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,15.75551831 +SC,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.13911121 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,130.9105446 +SC,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.017936087 +SC,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,79.84986311 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,130.9290047 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.659126362 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.629368108 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.055635857 +SC,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.44058527 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,41.92646936 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,24.0325058 +SC,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.559843126 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,27.44155579 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,392.7270455 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,2409.426366 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.802049988 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.510249981 +SC,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.127274879 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,90.96919527 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.72428997 +SC,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.039340682 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.08597638 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,50.96189602 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.39956804 +SC,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,132.6990551 +SC,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,199.5489202 +SC,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,11.14255601 +SC,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,701.1024946 +SC,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1141.92872 +SC,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,200.087266 +SC,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,339.2364499 +SC,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,64.83532378 +SC,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,16.18059 +SC,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,35.6163337 +SC,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,186.4143674 +SC,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,26.889459 +SC,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.905 +SC,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,0.196762111 +SC,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,2120.214694 +SC,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2183.954668 +SC,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,455.1301802 +SC,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,2.05202567 +SC,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,23.8637836 +SC,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,736.022471 +SC,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2746.747913 +SC,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,368.287 +SC,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,51.61020459 +SC,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,47.06346676 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4266.788361 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2303.32675 +SC,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,171.1916176 +SC,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.3455539 +SC,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.6127 +SC,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,7.402056 +SC,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,304.719 +SC,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,30.7753983 +SC,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,6031.102 +SC,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,140.9549048 +SC,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0.549496 +SC,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.816778544 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.583371551 +SC,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.090034878 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2678.374816 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1006.51618 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1852.478161 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,442.3337546 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,3.087537323 +SC,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1166.239882 +SC,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.004281674 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,6.100541292 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.22980976 +SC,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.55805E-05 +SC,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,399.9640087 +SC,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4.412407061 +SC,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,446.322542 +SC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.699692732 +SC,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.73490584 +SC,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.114954566 +SC,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,2.465157506 +SC,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000632125 +SC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,48.12891073 +SC,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.741244995 +SC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,31.26778755 +SC,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,8.490373371 +SC,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.076557513 +SC,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,2.963546236 +SC,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002465634 +SC,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,101.979446 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,7.310917265 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.978193018 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,71.16248509 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.008012772 +SC,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.8288685 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.611295759 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.557164525 +SC,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.024836268 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.479656625 +SC,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.409854193 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,50.54374791 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,12.67350015 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.119813753 +SC,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,8.551645092 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.427409427 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.088175329 +SC,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001789502 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.018576389 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.152496991 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.984871076 +SC,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7.861199944 +SC,Sulfur Dioxide,2A1_Cement-production,,TON,0.506116 +SC,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1.05 +SC,Sulfur Dioxide,2A6_Other-minerals,,TON,908.7915249 +SC,Sulfur Dioxide,2B_Chemicals-other,,TON,27.15678126 +SC,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,275.89787 +SC,Sulfur Dioxide,2C3_Aluminum-production,,TON,2045.69243 +SC,Sulfur Dioxide,2C5_Lead-production,,TON,74.403 +SC,Sulfur Dioxide,2C6_Zinc-production,,TON,5.2152 +SC,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,246.1845425 +SC,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2282.597288 +SC,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,21.56071119 +SC,Sulfur Dioxide,3F_Ag-res-on-field,,TON,62.7342 +SC,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,14.48419 +SC,Sulfur Dioxide,5C_Incineration,biomass,TON,21.49168271 +SC,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,380.7993765 +SC,Sulfur Dioxide,5C_Open-burning-residential,,TON,78.3997498 +SC,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,4.44046516 +SC,Volatile Organic Compounds,11C_Other-natural,,TON,761636.946 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,40.9633874 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,2.286892158 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,106.58075 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0 +SC,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,233.8061716 +SC,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,83.17206698 +SC,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,0.013259075 +SC,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,62.28779743 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,200.6793501 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21.70876015 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.219882425 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,763.410485 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,34.58691122 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,4.10217174 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.942557 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.109684876 +SC,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,296.7398982 +SC,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.039248674 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,541.7700944 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,214.9058792 +SC,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.068629202 +SC,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1381.000618 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,496.4544837 +SC,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,30264.46727 +SC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,58.51503003 +SC,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1310.270688 +SC,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,325.9977488 +SC,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,424.1765143 +SC,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.007230544 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1001.352285 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,20.33645843 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1147.637817 +SC,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,451.388122 +SC,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,956.464246 +SC,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,227.3342335 +SC,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.910924559 +SC,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,236.6461629 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,4.980107677 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.981861702 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.232061853 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.297787681 +SC,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,97.60046149 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,58.91282681 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,739.7024609 +SC,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.80806713 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,39.75603448 +SC,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5917.855223 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,2645.227696 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.272704935 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.496999983 +SC,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,78.39090189 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,97.24427005 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,134.7687508 +SC,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.378230096 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,3.79806018 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1926.659332 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,56.33407711 +SC,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,12050.83072 +SC,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,17.399095 +SC,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,589.8924936 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,330.207531 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,801.3302732 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7059.873821 +SC,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,10012.31744 +SC,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,24.61964 +SC,Volatile Organic Compounds,2A1_Cement-production,,TON,0.65869 +SC,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.92 +SC,Volatile Organic Compounds,2A6_Other-minerals,,TON,559.0000321 +SC,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,8.416978199 +SC,Volatile Organic Compounds,2B_Chemicals-other,,TON,1995.843272 +SC,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,232.49536 +SC,Volatile Organic Compounds,2C3_Aluminum-production,,TON,344.6884218 +SC,Volatile Organic Compounds,2C5_Lead-production,,TON,14.131 +SC,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.4346 +SC,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,167.189838 +SC,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,22023.34935 +SC,Volatile Organic Compounds,2D3d_Coating-application,,TON,14121.04055 +SC,Volatile Organic Compounds,2D3e_Degreasing,,TON,3126.774839 +SC,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,23.08259989 +SC,Volatile Organic Compounds,2D3h_Printing,,TON,8690.562983 +SC,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +SC,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,0 +SC,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,10995.31821 +SC,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,832.2223651 +SC,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4775.254757 +SC,Volatile Organic Compounds,2I_Wood-processing,,TON,19.20342 +SC,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,103.6169054 +SC,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,107.5951143 +SC,Volatile Organic Compounds,3B2_Manure-sheep,,TON,3.216661848 +SC,Volatile Organic Compounds,3B3_Manure-swine,,TON,296.5672885 +SC,Volatile Organic Compounds,3B4_Manure-other,,TON,72.9042992 +SC,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1252.370626 +SC,Volatile Organic Compounds,3B4d_Manure-goats,,TON,19.1190511 +SC,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2208.39488 +SC,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,504.488 +SC,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,98.2558655 +SC,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,768.79228 +SC,Volatile Organic Compounds,5C_Incineration,biomass,TON,9.483928211 +SC,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2592.188527 +SC,Volatile Organic Compounds,5C_Open-burning-residential,,TON,490.383569 +SC,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,163.59608 +SC,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,0 +SC,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,619.1752701 +SC,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,13.1499847 +SD,Ammonia,1A1a_Public-Electricity,hard_coal,TON,5.075 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.350003421 +SD,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.082316318 +SD,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.797778455 +SD,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,1.101031631 +SD,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.881077483 +SD,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,99.22615594 +SD,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,1.588190944 +SD,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.061590644 +SD,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,8.638479675 +SD,Ammonia,1A3bii_Road-LDV,light_oil,TON,267.2936172 +SD,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.469376689 +SD,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.90466186 +SD,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.330090441 +SD,Ammonia,1A3biii_Road-bus,light_oil,TON,0.358983028 +SD,Ammonia,1A3biii_Road-bus,natural_gas,TON,3.25685E-05 +SD,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,18.87544706 +SD,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.778450132 +SD,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12.26193837 +SD,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.791801948 +SD,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.23490375 +SD,Ammonia,1A3c_Rail,diesel_oil,TON,1.536532797 +SD,Ammonia,1A3c_Rail,light_oil,TON,0.000670906 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.648862052 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.518214574 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.849814601 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.224603935 +SD,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.50515278 +SD,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.036138731 +SD,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.64253215 +SD,Ammonia,1A4bi_Residential-stationary,biomass,TON,47.53242769 +SD,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,1.532999999 +SD,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.141750001 +SD,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,122.5490768 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,14.75346379 +SD,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.344960809 +SD,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003013582 +SD,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.709308283 +SD,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.09241068 +SD,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.63834479 +SD,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,Ammonia,2H2_Food-and-beverage,,TON,10.6965 +SD,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,7.024 +SD,Ammonia,3B1a_Cattle-dairy,,TON,2834.83228 +SD,Ammonia,3B1b_Cattle-non-dairy,,TON,19632.6092 +SD,Ammonia,3B2_Manure-sheep,,TON,928.4349918 +SD,Ammonia,3B3_Manure-swine,,TON,14111.59599 +SD,Ammonia,3B4_Manure-other,,TON,928.893714 +SD,Ammonia,3B4_Manure-poultry,,TON,2175.609156 +SD,Ammonia,3B4d_Manure-goats,,TON,157.6651317 +SD,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,40700.5 +SD,Ammonia,3F_Ag-res-on-field,,TON,1261.684 +SD,Ammonia,5B_Compost-biogas,Other_Fuel,TON,18.562158 +SD,Ammonia,5D1_Wastewater-domestic,,TON,0.619892 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,43135.45147 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,46839.15947 +SD,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2673.858421 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,195653.1443 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5014.639644 +SD,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.808291847 +SD,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,73385.01752 +SD,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,261672.1816 +SD,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3452011.115 +SD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,44490.59814 +SD,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,278008.175 +SD,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,17775.41202 +SD,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,10071.64926 +SD,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,1.4518374 +SD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1156449.706 +SD,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,17914.80838 +SD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,758718.1575 +SD,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,20200.81559 +SD,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,67414.4372 +SD,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,856.71798 +SD,Carbon Dioxide,1A3c_Rail,light_oil,TON,51.91406844 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,27647.09808 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,41135.38556 +SD,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1853.860702 +SD,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,4448.629501 +SD,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,47993.94629 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1816532.859 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,26107.18771 +SD,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3869.224494 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,369.71734 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,49905.87564 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,11379.67346 +SD,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46334.25326 +SD,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,6249760.41 +SD,Carbon Monoxide,11C_Other-natural,,TON,53126.7289 +SD,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,5.33 +SD,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,1.8213 +SD,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,348.16 +SD,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,19.148 +SD,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,62.31500079 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1052.864563 +SD,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.85142793 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,332.3348858 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,76.39440972 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,313.6298423 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,2067.786282 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,425.6771551 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1014.755356 +SD,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.096692567 +SD,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2087.162669 +SD,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2559.562441 +SD,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,75944.28334 +SD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,364.6105836 +SD,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6226.716954 +SD,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,54.86363783 +SD,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,708.2801973 +SD,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.024690323 +SD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,981.9140129 +SD,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,334.3777292 +SD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,998.5649967 +SD,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,594.7573877 +SD,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2697.504198 +SD,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,493.7661624 +SD,Carbon Monoxide,1A3c_Rail,light_oil,TON,11.66329022 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,121.7670029 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.546190416 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,573.5003375 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.7334766 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,8397.141693 +SD,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,33.5527613 +SD,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,12.44483751 +SD,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,10868.95696 +SD,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,7153.798016 +SD,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,7.664999978 +SD,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.70874999 +SD,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,332.0565969 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5748.555758 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5070.846737 +SD,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,50.2683622 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.57119067 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,6047.720437 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,22.41564333 +SD,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4938.135314 +SD,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,Carbon Monoxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,11.54 +SD,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,14.85460597 +SD,Carbon Monoxide,2A1_Cement-production,,TON,809.12 +SD,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,222 +SD,Carbon Monoxide,2A6_Other-minerals,,TON,0 +SD,Carbon Monoxide,2B_Chemicals-other,Other_Fuel,TON,4.55 +SD,Carbon Monoxide,2C3_Aluminum-production,,TON,14.82 +SD,Carbon Monoxide,2D3d_Coating-application,,TON,7.3 +SD,Carbon Monoxide,2H1_Pulp-and-paper,Other_Fuel,TON,29.47 +SD,Carbon Monoxide,2H2_Food-and-beverage,,TON,712.7915631 +SD,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,16.6 +SD,Carbon Monoxide,3F_Ag-res-on-field,,TON,5482.2 +SD,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.746726 +SD,Carbon Monoxide,5C_Incineration,biomass,TON,0.415341864 +SD,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1626.567395 +SD,Carbon Monoxide,5C_Open-burning-residential,,TON,1510.01922 +SD,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,21.0378196 +SD,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.956933823 +SD,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.850648443 +SD,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,15.31124051 +SD,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,4.244564429 +SD,Methane,1A2g_Construction_and_Mining,light_oil,TON,3.670308333 +SD,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.058619437 +SD,Methane,1A3bii_Road-LDV,diesel_oil,TON,19.71121235 +SD,Methane,1A3bii_Road-LDV,light_oil,TON,207.2978946 +SD,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.449585866 +SD,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.00239402 +SD,Methane,1A3biii_Road-bus,diesel_oil,TON,0.453940545 +SD,Methane,1A3biii_Road-bus,light_oil,TON,2.111742407 +SD,Methane,1A3biii_Road-bus,natural_gas,TON,0.018008462 +SD,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,81.70342169 +SD,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.579493012 +SD,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,18.77376298 +SD,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.590704788 +SD,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.83660677 +SD,Methane,1A3c_Rail,diesel_oil,TON,0.038503097 +SD,Methane,1A3c_Rail,light_oil,TON,0.03527123 +SD,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.955797222 +SD,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,28.20072755 +SD,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,20.55876121 +SD,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.153021684 +SD,Methane,1A4bi_Residential-mobile,light_oil,TON,42.25180366 +SD,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,53.6606562 +SD,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,21.41878675 +SD,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,20.05993516 +SD,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.015313277 +SD,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,45.99444487 +SD,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.347118586 +SD,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,44.51177905 +SD,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,7357.289922 +SD,Nitrogen Oxides,11C_Other-natural,,TON,43690.612 +SD,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,6.35 +SD,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,35.7668 +SD,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,972.7 +SD,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,98.919 +SD,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,181.3705537 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,104.1231096 +SD,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.467824475 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,75.08761621 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,352.5497026 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,690.4142427 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2717.793287 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,859.6140943 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,13.38139205 +SD,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.0161853 +SD,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,308.6948471 +SD,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,907.3533943 +SD,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,8207.501699 +SD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,147.7675958 +SD,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,672.8517701 +SD,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,160.9698903 +SD,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,77.06037705 +SD,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.013827497 +SD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3499.127935 +SD,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,34.86157321 +SD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3484.548789 +SD,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,49.13874553 +SD,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,141.486795 +SD,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,2734.981658 +SD,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.126020236 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,122.5315728 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,33.10495391 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,726.8199872 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,174.0729337 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,112.202677 +SD,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,8.09351031 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,31.9126597 +SD,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,106.0911248 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,118.9513779 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,27.59400057 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.551500082 +SD,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,885.1857938 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,12231.45699 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,113.9121161 +SD,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.78745279 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.83766984 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,109.4374574 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,111.37233 +SD,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,341.3425496 +SD,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Other_Fuel,TON,5.9 +SD,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.56565329 +SD,Nitrogen Oxides,2A1_Cement-production,,TON,978.7 +SD,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,208 +SD,Nitrogen Oxides,2A6_Other-minerals,,TON,0 +SD,Nitrogen Oxides,2B_Chemicals-other,Other_Fuel,TON,5.3 +SD,Nitrogen Oxides,2C3_Aluminum-production,,TON,17.66 +SD,Nitrogen Oxides,2D3d_Coating-application,,TON,6.59 +SD,Nitrogen Oxides,2H1_Pulp-and-paper,Other_Fuel,TON,22.81 +SD,Nitrogen Oxides,2H2_Food-and-beverage,,TON,789.2851 +SD,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,120.273 +SD,Nitrogen Oxides,3F_Ag-res-on-field,,TON,233.613 +SD,Nitrogen Oxides,5C_Incineration,biomass,TON,0.495548774 +SD,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,39.47978901 +SD,Nitrogen Oxides,5C_Open-burning-residential,,TON,106.5895889 +SD,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,1.16459366 +SD,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.760679321 +SD,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,162.2147107 +SD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.148758337 +SD,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.22090981 +SD,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.039647315 +SD,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.445465985 +SD,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,8.8862E-05 +SD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.196137238 +SD,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.421875059 +SD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.067550178 +SD,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.976084641 +SD,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.98880369 +SD,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,62.12517383 +SD,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.4534202 +SD,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.349056724 +SD,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,3.494 +SD,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,122.97302 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,24.32154878 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,752.4932916 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,67.17147568 +SD,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,34335.43423 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,71.29642023 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.121413061 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,19.12708754 +SD,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,980.9918636 +SD,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.655640017 +SD,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.15295 +SD,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.661400018 +SD,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.285861087 +SD,PM10 Filterable,2A1_Cement-production,,TON,28.60717606 +SD,PM10 Filterable,2A2_Lime-production,,TON,0 +SD,PM10 Filterable,2A5b_Construction-and-demolition,,TON,7728.947992 +SD,PM10 Filterable,2A6_Other-minerals,,TON,2515.5352 +SD,PM10 Filterable,2C3_Aluminum-production,,TON,1.123913 +SD,PM10 Filterable,2D3d_Coating-application,,TON,3.77 +SD,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,106.0233892 +SD,PM10 Filterable,2H2_Ethanol Production,,TON,0.25 +SD,PM10 Filterable,2H2_Food-and-beverage,,TON,300.6789494 +SD,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,59.1452 +SD,PM10 Filterable,3B1a_Cattle-dairy,,TON,852.511446 +SD,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,45840.9903 +SD,PM10 Filterable,3Dc_Other-farm,,TON,110444.783 +SD,PM10 Filterable,5C_Incineration,biomass,TON,0.426958805 +SD,PM10 Filterable,5C_Open-burning-land-clearing,,TON,201.3469415 +SD,PM10 Filterable,5C_Open-burning-residential,,TON,569.913303 +SD,PM10 Filterable,5C_Open-burning-yard-waste,,TON,7.1378318 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.48 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.587829394 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,10.55 +SD,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,6.3588 +SD,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.762168142 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.279097112 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.322046227 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,127.1542167 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,25.96798429 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,817.7101579 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,132.9123144 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,67.55844263 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.954242318 +SD,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000216745 +SD,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,43.15441755 +SD,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,34335.43423 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,46.82605626 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,404.3274814 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.09739831 +SD,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,31.49770452 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,9.953473254 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.385797852 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.000441882 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,172.5626441 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.176420108 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,187.5766252 +SD,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.881961911 +SD,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.50904015 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,80.51054859 +SD,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.006631355 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,73.73732995 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.969302208 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.73250485 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.83230563 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,10.7624532 +SD,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.234676924 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.054811294 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,42.148158 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1024.028631 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.648539902 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.337400008 +SD,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,4.314055144 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,998.4181389 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.40948032 +SD,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.47398163 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.379006204 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,47.69897028 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.441239704 +SD,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,15.44966191 +SD,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.170001076 +SD,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,28.874 +SD,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +SD,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,7728.947992 +SD,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,2515.5352 +SD,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,8.32 +SD,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.77 +SD,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,132.668682 +SD,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,0.25 +SD,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,605.2857987 +SD,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,59.1452 +SD,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,852.511446 +SD,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,45840.9903 +SD,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,110445.007 +SD,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,943.846 +SD,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.426958805 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,201.3469415 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,569.913303 +SD,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,7.1378318 +SD,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.4534202 +SD,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,2.280056724 +SD,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,19.57531 +SD,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,3.494 +SD,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,115.0128226 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.12915608 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,87.80481325 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,65.08477169 +SD,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,4208.669822 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,62.21192775 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.957584938 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,18.57554157 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,969.848123 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,1.272390011 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.117599997 +SD,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.913770028 +SD,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.285861087 +SD,PM2.5 Filterable,2A1_Cement-production,,TON,28.53717606 +SD,PM2.5 Filterable,2A2_Lime-production,,TON,0 +SD,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,772.8947992 +SD,PM2.5 Filterable,2A6_Other-minerals,,TON,346.618456 +SD,PM2.5 Filterable,2C3_Aluminum-production,,TON,0.663913 +SD,PM2.5 Filterable,2D3d_Coating-application,,TON,3.77 +SD,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,99.26338924 +SD,PM2.5 Filterable,2H2_Ethanol Production,,TON,0.25 +SD,PM2.5 Filterable,2H2_Food-and-beverage,,TON,270.1921661 +SD,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,57.852 +SD,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,177.1938054 +SD,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,9528.00859 +SD,PM2.5 Filterable,3Dc_Other-farm,,TON,21799.83062 +SD,PM2.5 Filterable,5C_Incineration,biomass,TON,0.284435637 +SD,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,183.5810268 +SD,PM2.5 Filterable,5C_Open-burning-residential,,TON,521.920593 +SD,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,5.5036438 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.48 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.518829397 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4 +SD,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,6.3588 +SD,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.468976528 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.193886598 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.322046227 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,119.1889278 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,23.7646983 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,153.0240015 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,128.6693037 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,65.53169566 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,7.321833214 +SD,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000216745 +SD,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,36.31858355 +SD,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,4208.669822 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,35.493445 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,208.0490426 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.88395059 +SD,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.54317493 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,8.135464084 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.357408159 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.000318758 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,114.1042879 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.966917039 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,139.1744465 +SD,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.378656876 +SD,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.75176532 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,78.09441711 +SD,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.006110003 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,64.65152534 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.80549133 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,49.18225278 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,13.41733736 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,9.92493263 +SD,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.234676924 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.993166873 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,38.77796731 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,1012.884891 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,3.265290009 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.302049993 +SD,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.566424989 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,968.4655516 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.057033557 +SD,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.47398163 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.36763602 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,43.88322529 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.368002526 +SD,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,14.21369222 +SD,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1.170001076 +SD,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,28.804 +SD,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,0 +SD,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,772.8947992 +SD,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,346.618456 +SD,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,2.96 +SD,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.77 +SD,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,125.908682 +SD,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,0.25 +SD,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,574.7990253 +SD,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,57.852 +SD,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,177.1938054 +SD,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,9528.00859 +SD,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,21800.05464 +SD,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,543.897 +SD,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,0.284435637 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,183.5810268 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,521.920593 +SD,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,5.5036438 +SD,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.04 +SD,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,2.677 +SD,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,845.7 +SD,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,11.83 +SD,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.339160054 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.712803181 +SD,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.014988049 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,16.7692087 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.5329949 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1286.657084 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,91.83314964 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1.529649665 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.076833022 +SD,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.01167E-05 +SD,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,44.2630984 +SD,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.270133354 +SD,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,41.03370301 +SD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.383924998 +SD,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.309545572 +SD,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.156475147 +SD,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.11945839 +SD,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,7.68692E-06 +SD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.786807899 +SD,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.212697346 +SD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,6.528791923 +SD,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.239824827 +SD,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.806579815 +SD,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,1.731381448 +SD,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000840746 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,26.15431027 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.724286543 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.742493506 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.234403792 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.641969667 +SD,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.010387911 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.038650226 +SD,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.786733653 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,31.34724191 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,10.88430008 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.02396275 +SD,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.978614917 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,15.66586882 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.428984416 +SD,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.021689267 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.003222494 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.81804899 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.104610448 +SD,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.761382639 +SD,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.001832815 +SD,Sulfur Dioxide,2A1_Cement-production,,TON,260.7 +SD,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.3 +SD,Sulfur Dioxide,2A6_Other-minerals,,TON,0 +SD,Sulfur Dioxide,2B_Chemicals-other,Other_Fuel,TON,0.03 +SD,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.09 +SD,Sulfur Dioxide,2D3d_Coating-application,,TON,0.01 +SD,Sulfur Dioxide,2H1_Pulp-and-paper,Other_Fuel,TON,5.98 +SD,Sulfur Dioxide,2H2_Food-and-beverage,,TON,82.6063 +SD,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.686 +SD,Sulfur Dioxide,3F_Ag-res-on-field,,TON,109.4456 +SD,Sulfur Dioxide,5C_Incineration,biomass,TON,0.304211437 +SD,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,16.38411401 +SD,Sulfur Dioxide,5C_Open-burning-residential,,TON,17.76493208 +SD,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.14275662 +SD,Volatile Organic Compounds,11C_Other-natural,,TON,175019.2287 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.35 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.7499 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,76.6 +SD,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,4.162 +SD,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,11.49839125 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.90766572 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.309716478 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,32.43323771 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,23.56628406 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,3.136655104 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +SD,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,146.4509723 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,77.16948218 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,69.86454642 +SD,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.012671326 +SD,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,165.6061324 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,294.6836825 +SD,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,6593.169392 +SD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,44.5137318 +SD,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,513.4163622 +SD,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,16.68140778 +SD,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,48.13944075 +SD,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.002757687 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,221.571319 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,12.79346118 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,205.709082 +SD,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,28.29614311 +SD,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,508.7686374 +SD,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,127.7796985 +SD,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.293521457 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,5.389363331 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.570484188 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +SD,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,43.05914687 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,18.65803177 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,288.377795 +SD,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.444032764 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.925389633 +SD,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,685.2511623 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,1010.006366 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,1.093029015 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.099400002 +SD,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,45.63823515 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1056.751426 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,197.8012525 +SD,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.33620643 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.66816878 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1654.55513 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.050767744 +SD,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,1103.19783 +SD,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +SD,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,172.7798007 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,191.8796346 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2445.361045 +SD,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,1565.320733 +SD,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,134.7572032 +SD,Volatile Organic Compounds,2A1_Cement-production,,TON,51.53 +SD,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +SD,Volatile Organic Compounds,2A6_Other-minerals,,TON,10.54253064 +SD,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.260290902 +SD,Volatile Organic Compounds,2B_Chemicals-other,Other_Fuel,TON,203.81144 +SD,Volatile Organic Compounds,2C3_Aluminum-production,,TON,48.11 +SD,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,3812.012759 +SD,Volatile Organic Compounds,2D3d_Coating-application,,TON,3485.506499 +SD,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,712.4167532 +SD,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,2.142 +SD,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,1565.775635 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,8383.123635 +SD,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,4727.829315 +SD,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,619.18 +SD,Volatile Organic Compounds,2H2_Ethanol Production,,TON,70.5724 +SD,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1059.108448 +SD,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,464.794 +SD,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,226.786581 +SD,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,1570.608723 +SD,Volatile Organic Compounds,3B2_Manure-sheep,,TON,74.27480175 +SD,Volatile Organic Compounds,3B3_Manure-swine,,TON,1128.927605 +SD,Volatile Organic Compounds,3B4_Manure-other,,TON,74.3114932 +SD,Volatile Organic Compounds,3B4_Manure-poultry,,TON,174.0487061 +SD,Volatile Organic Compounds,3B4d_Manure-goats,,TON,12.6132109 +SD,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,4965.921084 +SD,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,835.852 +SD,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,0.7669 +SD,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,131.34134 +SD,Volatile Organic Compounds,5C_Incineration,biomass,TON,0 +SD,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,111.5304192 +SD,Volatile Organic Compounds,5C_Open-burning-residential,,TON,111.1180948 +SD,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,5.25945504 +SD,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,1.0829 +TN,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.00055409 +TN,Ammonia,1A1a_Public-Electricity,hard_coal,TON,67.69386766 +TN,Ammonia,1A1a_Public-Electricity,natural_gas,TON,31.350167 +TN,Ammonia,1A1b_Pet-refining,natural_gas,TON,13.32234288 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.838828437 +TN,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.728258162 +TN,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.008345649 +TN,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,67.74552394 +TN,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.073023747 +TN,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.382596 +TN,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.06607646 +TN,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.107054985 +TN,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,239.9403592 +TN,Ammonia,1A2c_Chemicals,natural_gas,TON,0.125 +TN,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,12.02226032 +TN,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.289195994 +TN,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,25.932967 +TN,Ammonia,1A3bii_Road-LDV,light_oil,TON,2346.057956 +TN,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.855238864 +TN,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,57.26353358 +TN,Ammonia,1A3biii_Road-bus,diesel_oil,TON,3.544096142 +TN,Ammonia,1A3biii_Road-bus,light_oil,TON,2.828828153 +TN,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000815862 +TN,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,145.666063 +TN,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.270433237 +TN,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,82.69659457 +TN,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,15.19101771 +TN,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,33.09516295 +TN,Ammonia,1A3c_Rail,diesel_oil,TON,6.123146673 +TN,Ammonia,1A3c_Rail,light_oil,TON,0.004569876 +TN,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.408600601 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,2.457206797 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.855915594 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.074876131 +TN,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,9.85149772 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.013082105 +TN,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.060002995 +TN,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.437406713 +TN,Ammonia,1A4bi_Residential-mobile,light_oil,TON,6.213930953 +TN,Ammonia,1A4bi_Residential-stationary,biomass,TON,256.3615956 +TN,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.714765497 +TN,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.89195527 +TN,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,594.0002434 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.087131371 +TN,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.092229115 +TN,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.023176114 +TN,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.4944753 +TN,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.64476153 +TN,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.4879348 +TN,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Ammonia,2A6_Other-minerals,,TON,113.412049 +TN,Ammonia,2B_Chemicals-other,,TON,425.822999 +TN,Ammonia,2C_Iron-steel-alloy,,TON,0.78924 +TN,Ammonia,2C6_Zinc-production,,TON,0.039 +TN,Ammonia,2D3d_Coating-application,Other_Fuel,TON,67.643 +TN,Ammonia,2D3e_Degreasing,,TON,0.209 +TN,Ammonia,2H1_Pulp-and-paper,,TON,81.976693 +TN,Ammonia,2H2_Ethanol Production,,TON,4.981319 +TN,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,30.672063 +TN,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,364.9763054 +TN,Ammonia,3B1a_Cattle-dairy,,TON,2387.292682 +TN,Ammonia,3B1b_Cattle-non-dairy,,TON,5651.589676 +TN,Ammonia,3B2_Manure-sheep,,TON,170.832037 +TN,Ammonia,3B3_Manure-swine,,TON,2719.392762 +TN,Ammonia,3B4_Manure-other,,TON,856.166935 +TN,Ammonia,3B4_Manure-poultry,,TON,4855.024997 +TN,Ammonia,3B4d_Manure-goats,,TON,370.1335443 +TN,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,10746.4 +TN,Ammonia,3F_Ag-res-on-field,,TON,506.774 +TN,Ammonia,5A_Solid-waste-disposal,,TON,2.91 +TN,Ammonia,5B_Compost-biogas,Other_Fuel,TON,143.841015 +TN,Ammonia,5D1_Wastewater-domestic,,TON,21.2670615 +TN,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.875 +TN,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,12039.1 +TN,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,30.697375 +TN,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,1462583.11 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,349866.0519 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,424884.0458 +TN,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,24320.65643 +TN,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,62423.38854 +TN,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,101992.1564 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1480530.947 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,23530.76143 +TN,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,4.933567741 +TN,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1692940.976 +TN,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,841714.8621 +TN,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,32168665.98 +TN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,89347.60383 +TN,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,964325.4786 +TN,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,202464.5592 +TN,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,84114.78569 +TN,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,36.04954 +TN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9448580.095 +TN,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,32289.19273 +TN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4566099.084 +TN,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,400572.2726 +TN,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,251490.0571 +TN,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,5775.291499 +TN,Carbon Dioxide,1A3c_Rail,light_oil,TON,356.0898839 +TN,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,999.150498 +TN,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,32432.2642 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,124663.0242 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,167855.4783 +TN,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7460.045848 +TN,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,53839.33851 +TN,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,465973.0488 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,379995.7018 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,6716.166031 +TN,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,537.8768951 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2843.05576 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,105541.015 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,79398.99591 +TN,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,325843.6106 +TN,Carbon Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3437.924 +TN,Carbon Dioxide,2B_Chemicals-other,Other_Fuel,TON,1190.1 +TN,Carbon Dioxide,2D3d_Coating-application,,TON,2.31946 +TN,Carbon Dioxide,2H2_Ethanol Production,,TON,19667.38 +TN,Carbon Dioxide,2H3_Other-industrial-processes,,TON,50355933.24 +TN,Carbon Monoxide,11C_Other-natural,,TON,66632.594 +TN,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,34.92481 +TN,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,69.46364041 +TN,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3673.81396 +TN,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.063328131 +TN,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,709.0902321 +TN,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,691.4909333 +TN,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.439152 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,530.7827765 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10700.92377 +TN,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,367.9741122 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.168759569 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,7331.037098 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,251.6016876 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1812.530321 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,137.8323713 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.677550168 +TN,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6317.178154 +TN,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,79.948603 +TN,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,3.66 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3954.220704 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,4905.843222 +TN,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.451135012 +TN,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,16211.23113 +TN,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8061.056442 +TN,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,524976.443 +TN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,447.9601554 +TN,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,13497.7266 +TN,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,462.7330495 +TN,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,4648.742942 +TN,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.6140733 +TN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7662.178024 +TN,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,559.6863597 +TN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4834.543837 +TN,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9751.777124 +TN,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8431.387413 +TN,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1981.033688 +TN,Carbon Monoxide,1A3c_Rail,light_oil,TON,80.64519626 +TN,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,373.5675172 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,781.0902079 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,46.10964572 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,75.74601399 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.47140379 +TN,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1985.856925 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,424.9493538 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,35085.61701 +TN,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,157.1320835 +TN,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,155.869595 +TN,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,103273.0835 +TN,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,34576.50136 +TN,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,3.573827384 +TN,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,4.459776237 +TN,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1304.986095 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1370.965716 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1812.653692 +TN,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,8.525432648 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,20.1220782 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,19503.72237 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,157.4374929 +TN,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,35012.40797 +TN,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr,Gasoline,TON,78.34764408 +TN,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,5.014398 +TN,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,505.0478379 +TN,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,169 +TN,Carbon Monoxide,2A6_Other-minerals,,TON,2049.419865 +TN,Carbon Monoxide,2B_Chemicals-other,,TON,19966.58389 +TN,Carbon Monoxide,2C_Iron-steel-alloy,,TON,4241.616633 +TN,Carbon Monoxide,2C3_Aluminum-production,,TON,167.36807 +TN,Carbon Monoxide,2C5_Lead-production,,TON,23.045 +TN,Carbon Monoxide,2C6_Zinc-production,,TON,5.9086 +TN,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,5.546 +TN,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,28.87820775 +TN,Carbon Monoxide,2D3d_Coating-application,,TON,39.02016618 +TN,Carbon Monoxide,2D3h_Printing,,TON,10.072 +TN,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2575.238482 +TN,Carbon Monoxide,2H2_Ethanol Production,,TON,90.105473 +TN,Carbon Monoxide,2H2_Food-and-beverage,,TON,1615.927722 +TN,Carbon Monoxide,2H3_Other-industrial-processes,,TON,625.004846 +TN,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,20.40456997 +TN,Carbon Monoxide,3F_Ag-res-on-field,,TON,1985.88 +TN,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,608.3017011 +TN,Carbon Monoxide,5C_Incineration,,TON,265.9278164 +TN,Carbon Monoxide,5C_Incineration,biomass,TON,36.16325916 +TN,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,44620.10304 +TN,Carbon Monoxide,5C_Open-burning-residential,,TON,8669.63883 +TN,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,828.4594094 +TN,Carbon Monoxide,5D1_Wastewater-domestic,,TON,24.6811024 +TN,Methane,1A1a_Public-Electricity,biomass,TON,0.9241104 +TN,Methane,1A1a_Public-Electricity,diesel_oil,TON,0.0001221 +TN,Methane,1A1a_Public-Electricity,natural_gas,TON,0.017360904 +TN,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.276106534 +TN,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,46.74027526 +TN,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,155.1916338 +TN,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,38.0332508 +TN,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,62.08970123 +TN,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,39.53030241 +TN,Methane,1A2g_Construction_and_Mining,light_oil,TON,17.274357 +TN,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.247279919 +TN,Methane,1A3bii_Road-LDV,diesel_oil,TON,46.11141 +TN,Methane,1A3bii_Road-LDV,light_oil,TON,1274.199063 +TN,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.538578635 +TN,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.203228 +TN,Methane,1A3biii_Road-bus,diesel_oil,TON,6.668843388 +TN,Methane,1A3biii_Road-bus,light_oil,TON,11.40408406 +TN,Methane,1A3biii_Road-bus,natural_gas,TON,0.409566 +TN,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,656.3606681 +TN,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.920764051 +TN,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,155.8946807 +TN,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,25.06356668 +TN,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.82159907 +TN,Methane,1A3c_Rail,diesel_oil,TON,0.260338689 +TN,Methane,1A3c_Rail,light_oil,TON,0.232421093 +TN,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.16841E-05 +TN,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.831358989 +TN,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,112.1582823 +TN,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,97.79419882 +TN,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.778758863 +TN,Methane,1A4bi_Residential-mobile,light_oil,TON,371.0576211 +TN,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.020240963 +TN,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.549414296 +TN,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.376286137 +TN,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.119451701 +TN,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,147.0329963 +TN,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.191156506 +TN,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,316.6433706 +TN,Methane,2B_Chemicals-other,Other_Fuel,TON,0.0223 +TN,Methane,2D3d_Coating-application,,TON,0.00003244 +TN,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,120558.8817 +TN,Nitrogen Oxides,11C_Other-natural,,TON,19457.98729 +TN,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,28.52193 +TN,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,247.1743261 +TN,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,14750.2726 +TN,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.048983427 +TN,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1019.48761 +TN,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,416.9909146 +TN,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,14.61466 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1486.183261 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1015.293916 +TN,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,62.26144124 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.514116935 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3218.903221 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,726.1565464 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,7003.365814 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,257.891184 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.693099866 +TN,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10697.1737 +TN,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,89.376312 +TN,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,4.375 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,7465.417085 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,63.49693017 +TN,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.064542574 +TN,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,5212.430456 +TN,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2729.107753 +TN,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,57710.12422 +TN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,182.8216018 +TN,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1408.327805 +TN,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1103.172159 +TN,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,445.150215 +TN,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.3524008 +TN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,26419.05049 +TN,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,63.85769044 +TN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12022.99331 +TN,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,878.6895853 +TN,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,443.2959588 +TN,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,10416.41117 +TN,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.781432058 +TN,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2698.914155 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,465.7990825 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,129.20405 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,221.5615405 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.886785451 +TN,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2353.703691 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,848.4724032 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,425.6638564 +TN,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,37.69674016 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,395.6199626 +TN,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,940.3581642 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,563.9258362 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,12.8657789 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,16.05519498 +TN,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3207.776263 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2810.361306 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,27.66953766 +TN,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.344465846 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,22.1552902 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,214.4614836 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,796.7922625 +TN,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2311.206291 +TN,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr,Gasoline,TON,32.5419474 +TN,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,2.385089 +TN,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,354.9905303 +TN,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,350 +TN,Nitrogen Oxides,2A6_Other-minerals,,TON,6064.020386 +TN,Nitrogen Oxides,2B_Chemicals-other,,TON,528.0198039 +TN,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,530.197878 +TN,Nitrogen Oxides,2C3_Aluminum-production,,TON,178.9840602 +TN,Nitrogen Oxides,2C5_Lead-production,,TON,14.767 +TN,Nitrogen Oxides,2C6_Zinc-production,,TON,55.98942 +TN,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,19.190797 +TN,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,3.559652 +TN,Nitrogen Oxides,2D3d_Coating-application,,TON,69.767878 +TN,Nitrogen Oxides,2D3h_Printing,,TON,12.734 +TN,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1949.287699 +TN,Nitrogen Oxides,2H2_Ethanol Production,,TON,102.911964 +TN,Nitrogen Oxides,2H2_Food-and-beverage,,TON,226.315925 +TN,Nitrogen Oxides,2H3_Other-industrial-processes,,TON,162.3211011 +TN,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,26.81826888 +TN,Nitrogen Oxides,3F_Ag-res-on-field,,TON,85.815 +TN,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,89.502871 +TN,Nitrogen Oxides,5C_Incineration,,TON,163.2997305 +TN,Nitrogen Oxides,5C_Incineration,biomass,TON,3.694487134 +TN,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1083.012199 +TN,Nitrogen Oxides,5C_Open-burning-residential,,TON,611.974492 +TN,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,45.861146 +TN,Nitrogen Oxides,5D1_Wastewater-domestic,,TON,20.27739449 +TN,Nitrous Oxide,1A1a_Public-Electricity,biomass,TON,0.4620552 +TN,Nitrous Oxide,1A1a_Public-Electricity,diesel_oil,TON,0.00002433 +TN,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.00173609 +TN,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.11300856 +TN,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.655922099 +TN,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.591182016 +TN,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1082.808146 +TN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.316674611 +TN,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,32.78243659 +TN,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.41734105 +TN,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.245662194 +TN,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.001631912 +TN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,9.919097105 +TN,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.647812334 +TN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.364407732 +TN,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,16.09379998 +TN,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.293650551 +TN,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.03368E-05 +TN,Nitrous Oxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.024077 +TN,Nitrous Oxide,2B_Chemicals-other,Other_Fuel,TON,0.00223 +TN,Nitrous Oxide,2D3d_Coating-application,,TON,0.00014598 +TN,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,714.7762552 +TN,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,56.7555352 +TN,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,5.980606369 +TN,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,825.172553 +TN,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.000191462 +TN,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,155.6521109 +TN,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,162.1423219 +TN,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.914202 +TN,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,4.097980551 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,5094.939429 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.62230908 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,729.3065311 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.315338463 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.133588685 +TN,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,152.1122691 +TN,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,29.87487411 +TN,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.12578 +TN,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,23945.95858 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,337.8457925 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.13409834 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,3.163398771 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.101300954 +TN,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.08503126 +TN,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,4538.996013 +TN,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.771946741 +TN,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.962430681 +TN,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.526433322 +TN,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.05687568 +TN,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.009699763 +TN,PM10 Filterable,2A1_Cement-production,,TON,449.0249811 +TN,PM10 Filterable,2A2_Lime-production,,TON,97.42055786 +TN,PM10 Filterable,2A5b_Construction-and-demolition,,TON,27050.37939 +TN,PM10 Filterable,2A6_Other-minerals,,TON,5521.411131 +TN,PM10 Filterable,2B_Chemicals-other,,TON,562.562851 +TN,PM10 Filterable,2C_Iron-steel-alloy,,TON,256.1927172 +TN,PM10 Filterable,2C3_Aluminum-production,,TON,95.7995107 +TN,PM10 Filterable,2C5_Lead-production,,TON,33.71867353 +TN,PM10 Filterable,2C6_Zinc-production,,TON,66.60508076 +TN,PM10 Filterable,2C7_Other-metal,,TON,68.47502586 +TN,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,9.06358672 +TN,PM10 Filterable,2D3d_Coating-application,,TON,175.0377113 +TN,PM10 Filterable,2D3e_Degreasing,,TON,0 +TN,PM10 Filterable,2D3h_Printing,,TON,0.0456 +TN,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.6561 +TN,PM10 Filterable,2H1_Pulp-and-paper,,TON,562.5825668 +TN,PM10 Filterable,2H2_Ethanol Production,,TON,27.69884583 +TN,PM10 Filterable,2H2_Food-and-beverage,,TON,1179.35161 +TN,PM10 Filterable,2H3_Other-industrial-processes,,TON,363.598094 +TN,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,0.257044323 +TN,PM10 Filterable,2I_Wood-processing,,TON,0.00352 +TN,PM10 Filterable,3B1a_Cattle-dairy,,TON,374.4616831 +TN,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,19307.72264 +TN,PM10 Filterable,3Dc_Other-farm,,TON,51497.4267 +TN,PM10 Filterable,5A_Solid-waste-disposal,,TON,235.0460754 +TN,PM10 Filterable,5C_Incineration,,TON,42.96713417 +TN,PM10 Filterable,5C_Incineration,biomass,TON,8.239533489 +TN,PM10 Filterable,5C_Open-burning-land-clearing,,TON,5523.362348 +TN,PM10 Filterable,5C_Open-burning-residential,,TON,3272.105823 +TN,PM10 Filterable,5C_Open-burning-yard-waste,,TON,281.0844422 +TN,PM10 Filterable,5D1_Wastewater-domestic,,TON,2.9506626 +TN,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.4524035 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,58.532959 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.954397037 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2840.50262 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.000191462 +TN,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,210.479845 +TN,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,279.8684329 +TN,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,20.57693 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,85.11099219 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,49.10521395 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.927882307 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,4.397251133 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,5452.857138 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,58.48160497 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1208.075867 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,8.218039377 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.307618711 +TN,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,310.9746648 +TN,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,78.1431835 +TN,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.333 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,589.0803763 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,37.36637798 +TN,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000629432 +TN,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,211.0207607 +TN,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,23945.98308 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,163.3798484 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3386.394852 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,13.24085787 +TN,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,96.22556462 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,66.53557256 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,18.18008598 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.01230056 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,1519.910507 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.715495187 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,940.5636087 +TN,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,48.46363798 +TN,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,29.48244597 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,305.664534 +TN,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.045322815 +TN,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,75.50003703 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,370.2097266 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,11.54564842 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.959770291 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.219953247 +TN,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,41.67309339 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,70.71210809 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,43.90383364 +TN,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.94414479 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,26.26259479 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,431.1110434 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4738.318849 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.701142016 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,2.123073804 +TN,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.96121276 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,239.7745269 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,13.81280022 +TN,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.066576608 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.96236314 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,111.6490179 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.37632009 +TN,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,107.7046835 +TN,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,1.20192901 +TN,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.05687568 +TN,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.488550168 +TN,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,454.37604 +TN,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,120.12156 +TN,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,27050.37939 +TN,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5868.222238 +TN,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,639.4364256 +TN,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,640.342946 +TN,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,153.9215722 +TN,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,117.797051 +TN,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,69.75739789 +TN,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,171.1963151 +TN,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,10.31443472 +TN,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,209.8529017 +TN,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +TN,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,0.7517 +TN,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.6561 +TN,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1004.159881 +TN,PM10 Primary (Filt + Cond),2H2_Ethanol Production,,TON,27.90964583 +TN,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3640.50589 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,5099.870418 +TN,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,4.158892691 +TN,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.00352 +TN,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,374.4616831 +TN,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,19307.72264 +TN,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,51501.29894 +TN,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,318.543 +TN,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,260.4335376 +TN,PM10 Primary (Filt + Cond),5C_Incineration,,TON,46.49615808 +TN,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,12.64685413 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,5523.362348 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3272.105823 +TN,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,281.0844422 +TN,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,3.1132406 +TN,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,3.4524035 +TN,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,37.2924822 +TN,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,4.562304087 +TN,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,402.888386 +TN,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.000191462 +TN,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,154.9845176 +TN,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,139.6271333 +TN,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,7.914202 +TN,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,1.788592269 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,4347.659273 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,38.60232667 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,162.7096643 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.320094864 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.033404324 +TN,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,140.1325141 +TN,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,29.85764113 +TN,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.12178 +TN,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5202.1167 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,305.2485241 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.415147535 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,2.419559214 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.077871642 +TN,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.307128956 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,4463.957813 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.593255333 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.739992502 +TN,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.589538395 +TN,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +TN,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.04719471 +TN,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2.009699763 +TN,PM2.5 Filterable,2A1_Cement-production,,TON,179.2908803 +TN,PM2.5 Filterable,2A2_Lime-production,,TON,33.01036203 +TN,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2705.746239 +TN,PM2.5 Filterable,2A6_Other-minerals,,TON,1016.982873 +TN,PM2.5 Filterable,2B_Chemicals-other,,TON,349.9217738 +TN,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,176.4806288 +TN,PM2.5 Filterable,2C3_Aluminum-production,,TON,63.67039819 +TN,PM2.5 Filterable,2C5_Lead-production,,TON,29.44647096 +TN,PM2.5 Filterable,2C6_Zinc-production,,TON,64.83517084 +TN,PM2.5 Filterable,2C7_Other-metal,,TON,16.04283069 +TN,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,9.06358672 +TN,PM2.5 Filterable,2D3d_Coating-application,,TON,136.219531 +TN,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +TN,PM2.5 Filterable,2D3h_Printing,,TON,0.0456 +TN,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,1.355516 +TN,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,306.9738646 +TN,PM2.5 Filterable,2H2_Ethanol Production,,TON,26.65424583 +TN,PM2.5 Filterable,2H2_Food-and-beverage,,TON,727.7568381 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,4995.574451 +TN,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,8.146597797 +TN,PM2.5 Filterable,2I_Wood-processing,,TON,0.00176 +TN,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,77.83154983 +TN,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,4012.909813 +TN,PM2.5 Filterable,3Dc_Other-farm,,TON,10176.43613 +TN,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,78.21481004 +TN,PM2.5 Filterable,5C_Incineration,,TON,41.24822508 +TN,PM2.5 Filterable,5C_Incineration,biomass,TON,7.909909247 +TN,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,5036.00701 +TN,PM2.5 Filterable,5C_Open-burning-residential,,TON,2996.560073 +TN,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,216.7309042 +TN,PM2.5 Filterable,5D1_Wastewater-domestic,,TON,2.9506626 +TN,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,3.4524035 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,39.069906 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,8.493314363 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2418.21839 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.000191462 +TN,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,209.8126517 +TN,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,257.3532843 +TN,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,20.57693 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,82.55444158 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,48.24201504 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.927882307 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,2.087395184 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,4595.742 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,53.45515524 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,641.4663294 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.219157961 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.207455132 +TN,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,292.9284377 +TN,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,78.12595052 +TN,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.329 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,571.4079848 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,34.39541811 +TN,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000629432 +TN,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,189.3491329 +TN,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5202.14166 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,116.1254037 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1129.862376 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,7.991685624 +TN,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,29.6654315 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,50.59108434 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,10.94826877 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.009596517 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,935.1543442 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.523169118 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,585.8597235 +TN,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,19.11691111 +TN,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,16.43899668 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,296.4911653 +TN,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.04177941 +TN,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,73.18640885 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,337.5746209 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.5989792 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.21616688 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.19747157 +TN,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,39.90495463 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,68.59075005 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,40.48686936 +TN,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.94414479 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,25.47471858 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,396.6416656 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4663.282989 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.522450417 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.900635599 +TN,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,14.02431846 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,232.5812846 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,12.70782946 +TN,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.066576608 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.87349256 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,102.7184306 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,16.85503274 +TN,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,99.08830544 +TN,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,1.19922901 +TN,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.04719471 +TN,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5.488550168 +TN,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,184.6419392 +TN,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,55.65474417 +TN,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2705.746239 +TN,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1268.923437 +TN,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,418.6945564 +TN,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,556.9160579 +TN,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,121.1853098 +TN,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,117.7948484 +TN,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,67.98787016 +TN,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,111.1924528 +TN,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,10.31443472 +TN,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,170.9068156 +TN,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +TN,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,0.683 +TN,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,1.355516 +TN,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,712.3314844 +TN,PM2.5 Primary (Filt + Cond),2H2_Ethanol Production,,TON,26.86504583 +TN,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3185.793843 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,5049.685379 +TN,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,7.123536425 +TN,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.00176 +TN,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,77.83154983 +TN,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4012.909813 +TN,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,10180.30837 +TN,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,196.661 +TN,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,103.1122722 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,44.95822788 +TN,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,10.478427 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,5036.00701 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2996.560073 +TN,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,216.7309042 +TN,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,3.1132406 +TN,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,3.4524035 +TN,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,32.671168 +TN,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,5.908760458 +TN,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,24238.115 +TN,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.039655531 +TN,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,52.06350235 +TN,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,168.7977068 +TN,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,0.4619489 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.891819747 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.491895267 +TN,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.136319516 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,9.410014554 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,985.5200482 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,55.65704544 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,14402.7714 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,19.86050187 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.987307354 +TN,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,48.68904679 +TN,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.79772184 +TN,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.023 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,11.79645188 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.360630841 +TN,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.75624E-05 +TN,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,732.4561814 +TN,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,7.296404053 +TN,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,522.2243308 +TN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.757890481 +TN,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.47782236 +TN,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.749965155 +TN,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.316992598 +TN,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000190865 +TN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,79.92439078 +TN,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.488693204 +TN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,38.7366556 +TN,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,6.311037323 +TN,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.058977912 +TN,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,6.898372002 +TN,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.005739334 +TN,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8.62115005 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,39.12501545 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,36.25950937 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.535130086 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +TN,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.89443001 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.046388192 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.618501543 +TN,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.041795721 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.465118628 +TN,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,7.633162074 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,106.6559376 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,4.835888681 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.779017696 +TN,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,19.5717862 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3.194683529 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.110224903 +TN,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00301483 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.024868396 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.729615961 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.729895147 +TN,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.352730271 +TN,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +TN,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.01375376 +TN,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.127877438 +TN,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,56.4 +TN,Sulfur Dioxide,2A6_Other-minerals,,TON,1232.008137 +TN,Sulfur Dioxide,2B_Chemicals-other,,TON,383.4670207 +TN,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,430.91585 +TN,Sulfur Dioxide,2C3_Aluminum-production,,TON,1.986063575 +TN,Sulfur Dioxide,2C5_Lead-production,,TON,0.164 +TN,Sulfur Dioxide,2C6_Zinc-production,,TON,390.116907 +TN,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.055 +TN,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,14.09291 +TN,Sulfur Dioxide,2D3d_Coating-application,,TON,0.793985126 +TN,Sulfur Dioxide,2D3h_Printing,,TON,0.0641 +TN,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,148.4489637 +TN,Sulfur Dioxide,2H2_Ethanol Production,,TON,65.76930765 +TN,Sulfur Dioxide,2H2_Food-and-beverage,,TON,167.7769427 +TN,Sulfur Dioxide,2H3_Other-industrial-processes,,TON,2.022861463 +TN,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,37.67403004 +TN,Sulfur Dioxide,3Dc_Other-farm,,TON,0 +TN,Sulfur Dioxide,3F_Ag-res-on-field,,TON,39.3586 +TN,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,115.2186746 +TN,Sulfur Dioxide,5C_Incineration,,TON,71.19084937 +TN,Sulfur Dioxide,5C_Incineration,biomass,TON,0.37267531 +TN,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,435.2903302 +TN,Sulfur Dioxide,5C_Open-burning-residential,,TON,101.9957505 +TN,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.621688902 +TN,Sulfur Dioxide,5D1_Wastewater-domestic,,TON,0.6378935 +TN,Volatile Organic Compounds,11C_Other-natural,,TON,658209.714 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.013 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.9939862 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,6.304831995 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,495.646861 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0121105 +TN,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,141.1515555 +TN,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,415.0292242 +TN,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,3.081449 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,103.6695905 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,316.9811904 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,33.54661219 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.085456472 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,249.7198619 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,51.25154458 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,66.76199102 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,9.144375106 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.027049212 +TN,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,957.8592411 +TN,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,8.4019501 +TN,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.236 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,766.4211912 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,330.720377 +TN,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.053452657 +TN,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,2365.859266 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,857.4667339 +TN,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,41447.68468 +TN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,42.83824285 +TN,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,946.2350068 +TN,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,103.4792471 +TN,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,312.536117 +TN,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.06271823 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1691.781531 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,23.00642331 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1031.064857 +TN,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,508.8216501 +TN,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1062.034802 +TN,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,509.2415797 +TN,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.049741369 +TN,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,118.7204877 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,20.55397383 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.270994406 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,5.254028618 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033973915 +TN,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,147.5793376 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,97.4236139 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1221.255948 +TN,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.13943731 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,36.99260649 +TN,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,6237.983147 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5108.109573 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.509405736 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.625469865 +TN,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,178.9392785 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,257.0878088 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,148.8011643 +TN,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.729826602 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.23370155 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,3753.839023 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,41.61457074 +TN,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8416.505455 +TN,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +TN,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,494.8395651 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,510.4625974 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,1138.363973 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7056.328246 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,12057.40717 +TN,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,13.41032 +TN,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,817.5773251 +TN,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,1.6 +TN,Volatile Organic Compounds,2A6_Other-minerals,,TON,257.8918781 +TN,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,552.3064344 +TN,Volatile Organic Compounds,2B_Chemicals-other,,TON,5711.611735 +TN,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,301.1536123 +TN,Volatile Organic Compounds,2C3_Aluminum-production,,TON,1181.351573 +TN,Volatile Organic Compounds,2C5_Lead-production,,TON,47.969 +TN,Volatile Organic Compounds,2C6_Zinc-production,,TON,5.68145 +TN,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,244.9425197 +TN,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,29284.25446 +TN,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,32.5511019 +TN,Volatile Organic Compounds,2D3d_Coating-application,,TON,24777.93116 +TN,Volatile Organic Compounds,2D3e_Degreasing,,TON,4470.633993 +TN,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,31.9595998 +TN,Volatile Organic Compounds,2D3h_Printing,,TON,17394.60286 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,397.3190891 +TN,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,3689.405464 +TN,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,1298.325035 +TN,Volatile Organic Compounds,2H2_Ethanol Production,,TON,88.770598 +TN,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,12535.47463 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,4086.784212 +TN,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,2.084771059 +TN,Volatile Organic Compounds,2I_Wood-processing,,TON,7.527 +TN,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,190.9834077 +TN,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,452.1271829 +TN,Volatile Organic Compounds,3B2_Manure-sheep,,TON,13.66656318 +TN,Volatile Organic Compounds,3B3_Manure-swine,,TON,217.5514128 +TN,Volatile Organic Compounds,3B4_Manure-other,,TON,68.49335451 +TN,Volatile Organic Compounds,3B4_Manure-poultry,,TON,388.401985 +TN,Volatile Organic Compounds,3B4d_Manure-goats,,TON,29.61068067 +TN,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.19 +TN,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,2804.782465 +TN,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,289.409 +TN,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,320.5215564 +TN,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1017.78429 +TN,Volatile Organic Compounds,5C_Incineration,,TON,37.34836444 +TN,Volatile Organic Compounds,5C_Incineration,biomass,TON,37.89370315 +TN,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,3059.509488 +TN,Volatile Organic Compounds,5C_Open-burning-residential,,TON,637.974541 +TN,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,207.1148496 +TN,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,128.952437 +TN,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,81.8356909 +TN,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.16 +TN,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.033 +TX,Ammonia,1A1a_Public-Electricity,Anthracite_Lignite,TON,134.7906 +TX,Ammonia,1A1a_Public-Electricity,biomass,TON,1.6 +TX,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,59.93858 +TX,Ammonia,1A1a_Public-Electricity,hard_coal,TON,93.2326 +TX,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,0.9004 +TX,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2037.91577 +TX,Ammonia,1A1b_Pet-refining,heavy_oil,TON,0.085347494 +TX,Ammonia,1A1b_Pet-refining,natural_gas,TON,269.1533525 +TX,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.629 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,10.41499478 +TX,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.216400864 +TX,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,71.27524177 +TX,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.276665667 +TX,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,7.955028717 +TX,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.432071463 +TX,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,1146.934055 +TX,Ammonia,1A2c_Chemicals,natural_gas,TON,90.209 +TX,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,60.42127282 +TX,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,1.446133502 +TX,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,157.2668774 +TX,Ammonia,1A3bii_Road-LDV,light_oil,TON,6702.478391 +TX,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.34473975 +TX,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,337.8271553 +TX,Ammonia,1A3biii_Road-bus,diesel_oil,TON,14.70581107 +TX,Ammonia,1A3biii_Road-bus,light_oil,TON,0.981382052 +TX,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,545.0563429 +TX,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,15.34769168 +TX,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,238.9979244 +TX,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,129.1774474 +TX,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.55292901 +TX,Ammonia,1A3c_Rail,diesel_oil,TON,34.49656595 +TX,Ammonia,1A3c_Rail,light_oil,TON,0.000101512 +TX,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,18.43932171 +TX,Ammonia,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.36399114 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.082896509 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.938867343 +TX,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,31.1883362 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.6662074 +TX,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,11.35130593 +TX,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.842256825 +TX,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.00496791 +TX,Ammonia,1A4bi_Residential-stationary,biomass,TON,160.8375292 +TX,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +TX,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,2108.52 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,86.26385509 +TX,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.68647427 +TX,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.111183793 +TX,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,5.99169076 +TX,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.19070772 +TX,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,7.261858636 +TX,Ammonia,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,0.5545 +TX,Ammonia,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.8115 +TX,Ammonia,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.0346 +TX,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,19.6289 +TX,Ammonia,2A1_Cement-production,,TON,46.4223 +TX,Ammonia,2A2_Lime-production,Other_Fuel,TON,23.138 +TX,Ammonia,2A5b_Construction-and-demolition,,TON,0 +TX,Ammonia,2A6_Other-minerals,,TON,318.058 +TX,Ammonia,2B_Chemicals-other,,TON,560.104665 +TX,Ammonia,2C_Iron-steel-alloy,,TON,2.8519 +TX,Ammonia,2C5_Lead-production,,TON,0.3439 +TX,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.4495 +TX,Ammonia,2D3d_Coating-application,,TON,1.9434 +TX,Ammonia,2D3e_Degreasing,Other_Fuel,TON,7.7821 +TX,Ammonia,2D3h_Printing,,TON,4.3176 +TX,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,2.0066 +TX,Ammonia,2H1_Pulp-and-paper,,TON,194.6 +TX,Ammonia,2H2_Food-and-beverage,,TON,0 +TX,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,235.536522 +TX,Ammonia,3B1a_Cattle-dairy,,TON,37024.89828 +TX,Ammonia,3B1b_Cattle-non-dairy,,TON,144830.9779 +TX,Ammonia,3B2_Manure-sheep,,TON,2636.755429 +TX,Ammonia,3B3_Manure-swine,,TON,20421.16955 +TX,Ammonia,3B4_Manure-other,,TON,5608.475014 +TX,Ammonia,3B4_Manure-poultry,,TON,33550.88325 +TX,Ammonia,3B4d_Manure-goats,,TON,4359.044646 +TX,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,119423.7 +TX,Ammonia,3F_Ag-res-on-field,,TON,3682.968542 +TX,Ammonia,5A_Solid-waste-disposal,,TON,5.9636 +TX,Ammonia,5B_Compost-biogas,Other_Fuel,TON,604.195623 +TX,Ammonia,5C_Incineration,biomass,TON,5.2079 +TX,Ammonia,5C_Open-burning-residential,,TON,0 +TX,Ammonia,5C_Open-burning-yard-waste,,TON,0 +TX,Ammonia,5D1_Wastewater-domestic,,TON,74.7409 +TX,Ammonia,5D2_Wastewater-industrial,biomass,TON,31.5221 +TX,Carbon Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,9805603 +TX,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,167437.81 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1283605.786 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1273212.683 +TX,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,55727.5134 +TX,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4303952.3 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,7445864.745 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,121190.3066 +TX,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,26.5801836 +TX,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,5149889.309 +TX,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,4775193.775 +TX,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,104902232.9 +TX,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,734395.2464 +TX,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5957430.326 +TX,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,987853.7112 +TX,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,28071.23411 +TX,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,33791648.52 +TX,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,364890.0638 +TX,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,13235543.63 +TX,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3523293.274 +TX,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,87105.09506 +TX,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,26815.83051 +TX,Carbon Dioxide,1A3c_Rail,light_oil,TON,44.38144898 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,697419.067 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,953724.5818 +TX,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,38293.29899 +TX,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,103691.7447 +TX,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,816979.5257 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,10631051.74 +TX,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,607715.7698 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,13644.43948 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,418423.6026 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,23483.40761 +TX,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,527649.6172 +TX,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,386705779.5 +TX,Carbon Monoxide,11C_Other-natural,,TON,430460.6362 +TX,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,117173.7127 +TX,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,19.00024257 +TX,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,209.999681 +TX,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,40097.0152 +TX,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,0.947612098 +TX,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.398105082 +TX,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,14925.23262 +TX,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,0.921178472 +TX,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,12290.15152 +TX,Carbon Monoxide,1A1g_Other-energy-transf,diesel_oil,TON,10.5956 +TX,Carbon Monoxide,1A1g_Other-energy-transf,heavy_oil,TON,21.9151 +TX,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,4429.023 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1717.850759 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,23816.83175 +TX,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,721.286216 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,4907.078898 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,1584.335992 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,8.63194361 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,42.31963091 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,107.7060346 +TX,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,44158.88178 +TX,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,5.4564 +TX,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,21.2714 +TX,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,10964.8167 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.026 +TX,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,11.2973 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,13471.82965 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,24514.1866 +TX,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.95849259 +TX,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,48195.70996 +TX,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,33717.19614 +TX,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,1345422.736 +TX,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4217.319834 +TX,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,75860.04007 +TX,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,2000.280006 +TX,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1489.530239 +TX,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,30070.73014 +TX,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,4048.495501 +TX,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,10567.04799 +TX,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,43566.99399 +TX,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3079.329143 +TX,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,11132.97726 +TX,Carbon Monoxide,1A3c_Rail,light_oil,TON,2.945894658 +TX,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5586.51474 +TX,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,15.132662 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,766.2534782 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1559.612184 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.63388086 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,4.216352734 +TX,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7503.92379 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2175.631293 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,196622.4034 +TX,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,736.2827385 +TX,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,280.9833179 +TX,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,187622.9802 +TX,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,39341.20884 +TX,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.03 +TX,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.05 +TX,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,4582.89 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,17691.74664 +TX,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,21048.34173 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,89.4911175 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,76277.64404 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,46.81010636 +TX,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,57893.36719 +TX,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,76789.8786 +TX,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.6025 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,2.53951394 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,136.8195861 +TX,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,15.6257 +TX,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,91824.2442 +TX,Carbon Monoxide,2A1_Cement-production,,TON,391.1147 +TX,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,675.9988 +TX,Carbon Monoxide,2A5b_Construction-and-demolition,,TON,0 +TX,Carbon Monoxide,2A6_Other-minerals,,TON,13259.5806 +TX,Carbon Monoxide,2B_Chemicals-other,,TON,13133.4588 +TX,Carbon Monoxide,2C_Iron-steel-alloy,,TON,9043.2701 +TX,Carbon Monoxide,2C3_Aluminum-production,,TON,22.0763 +TX,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,24.3864 +TX,Carbon Monoxide,2C7a_Copper-production,,TON,1038.1436 +TX,Carbon Monoxide,2D3c_Asphalt-roofing,Other_Fuel,TON,3314.5701 +TX,Carbon Monoxide,2D3d_Coating-application,,TON,158.1283 +TX,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,1.0069 +TX,Carbon Monoxide,2D3f_Dry-cleaning,Other_Fuel,TON,0.1195 +TX,Carbon Monoxide,2D3h_Printing,,TON,18.7953 +TX,Carbon Monoxide,2D3i_Other-solvent-use,biomass,TON,6.1853 +TX,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3769.7992 +TX,Carbon Monoxide,2H2_Food-and-beverage,,TON,3003.3225 +TX,Carbon Monoxide,2H3_Other-industrial-processes,biomass,TON,180.9161 +TX,Carbon Monoxide,3Dc_Other-farm,,TON,74.27 +TX,Carbon Monoxide,3F_Ag-res-on-field,,TON,19762.04638 +TX,Carbon Monoxide,5A_Solid-waste-disposal,,TON,2259.920063 +TX,Carbon Monoxide,5C_Incineration,,TON,7.873613207 +TX,Carbon Monoxide,5C_Incineration,biomass,TON,503.2127268 +TX,Carbon Monoxide,5C_Open-burning-dump,,TON,0.2842 +TX,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,78433.58921 +TX,Carbon Monoxide,5C_Open-burning-residential,,TON,11285.4 +TX,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,955.95 +TX,Carbon Monoxide,5D1_Wastewater-domestic,,TON,0 +TX,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,68.1594 +TX,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,4.2682 +TX,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,29.48984332 +TX,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,130.6492494 +TX,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,296.9701433 +TX,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,149.2012698 +TX,Methane,1A2g_Construction_and_Mining,light_oil,TON,83.348323 +TX,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.56692578 +TX,Methane,1A3bii_Road-LDV,diesel_oil,TON,269.078395 +TX,Methane,1A3bii_Road-LDV,light_oil,TON,3327.172507 +TX,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,54.33353249 +TX,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,219.5899094 +TX,Methane,1A3biii_Road-bus,diesel_oil,TON,24.67816529 +TX,Methane,1A3biii_Road-bus,light_oil,TON,2.923088225 +TX,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3392.18915 +TX,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.599517869 +TX,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,486.9941914 +TX,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,53.83804019 +TX,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.855454396 +TX,Methane,1A3c_Rail,diesel_oil,TON,1.042643728 +TX,Methane,1A3c_Rail,light_oil,TON,0.012398338 +TX,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,21.78673837 +TX,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,615.3313892 +TX,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,453.4189052 +TX,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.188441945 +TX,Methane,1A4bi_Residential-mobile,light_oil,TON,692.0359118 +TX,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,203.7516969 +TX,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,85.24574126 +TX,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.567685391 +TX,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,615.4508281 +TX,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.753390934 +TX,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,498.5156252 +TX,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,464687.217 +TX,Nitrogen Oxides,11C_Other-natural,,TON,189839.7392 +TX,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,49659.65634 +TX,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,47.60011803 +TX,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,452.6904225 +TX,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,36031.55505 +TX,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,167.3295149 +TX,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.785701948 +TX,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,20587.98385 +TX,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,1.493502985 +TX,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,15752.6994 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,12.9368 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,heavy_oil,TON,34.5374 +TX,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,3100.0843 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5552.96154 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3383.925655 +TX,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,129.4790295 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,2679.961975 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,7277.702966 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,10.23479497 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,547.5973978 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,159.6682613 +TX,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,84218.43786 +TX,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,6.2373 +TX,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,48.3351 +TX,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,14316.2933 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.126 +TX,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,13.4494 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,28732.17344 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,265.1804757 +TX,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.166715941 +TX,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,20043.37346 +TX,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,12444.51633 +TX,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,130450.7505 +TX,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1604.696999 +TX,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7276.892574 +TX,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,4985.996535 +TX,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,103.125502 +TX,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,98159.16343 +TX,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,434.2152589 +TX,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,29492.60185 +TX,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,4197.610959 +TX,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,152.2289258 +TX,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,47949.40183 +TX,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.171409727 +TX,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,39760.88441 +TX,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,149.57431 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,896.2639862 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6503.441398 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,46.05692515 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,15.15273166 +TX,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8875.751834 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4506.505135 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,2317.387229 +TX,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,177.7043172 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,723.4108186 +TX,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1601.221092 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,815.6538889 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.25 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.32 +TX,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,11210.67 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,40557.96994 +TX,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,1193.781227 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,101.6590522 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,792.474652 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,227.5961735 +TX,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,3289.723414 +TX,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,62092.4029 +TX,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1.3807 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,6.738563278 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,83.88823672 +TX,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,9.1244 +TX,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,163946.1873 +TX,Nitrogen Oxides,2A1_Cement-production,,TON,1822.7889 +TX,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,2046.4705 +TX,Nitrogen Oxides,2A5b_Construction-and-demolition,,TON,0 +TX,Nitrogen Oxides,2A6_Other-minerals,,TON,17270.1432 +TX,Nitrogen Oxides,2B_Chemicals-other,,TON,6178.9796 +TX,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1224.28 +TX,Nitrogen Oxides,2C3_Aluminum-production,,TON,21.3078 +TX,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,29.2498 +TX,Nitrogen Oxides,2C7a_Copper-production,,TON,31.0799 +TX,Nitrogen Oxides,2D3c_Asphalt-roofing,Other_Fuel,TON,7.4543 +TX,Nitrogen Oxides,2D3d_Coating-application,,TON,77.6846 +TX,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,1.1328 +TX,Nitrogen Oxides,2D3h_Printing,,TON,26.3976 +TX,Nitrogen Oxides,2D3i_Other-solvent-use,biomass,TON,8.4065 +TX,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,3073.8413 +TX,Nitrogen Oxides,2H2_Food-and-beverage,,TON,102.8092 +TX,Nitrogen Oxides,2H3_Other-industrial-processes,biomass,TON,67.2167 +TX,Nitrogen Oxides,3Dc_Other-farm,,TON,100.22 +TX,Nitrogen Oxides,3F_Ag-res-on-field,,TON,725.5457474 +TX,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,515.753 +TX,Nitrogen Oxides,5C_Incineration,,TON,116.7093221 +TX,Nitrogen Oxides,5C_Incineration,biomass,TON,352.0816618 +TX,Nitrogen Oxides,5C_Open-burning-dump,,TON,0.0003 +TX,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,1903.727924 +TX,Nitrogen Oxides,5C_Open-burning-residential,,TON,796.6 +TX,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,43.99 +TX,Nitrogen Oxides,5D1_Wastewater-domestic,,TON,0 +TX,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,13.6797 +TX,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,229.9417 +TX,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,14.03138086 +TX,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,2850.259897 +TX,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.353546821 +TX,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,186.8419163 +TX,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,1.820912298 +TX,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,1.240143618 +TX,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,33.10344147 +TX,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5.146127307 +TX,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,22.93340118 +TX,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,60.87467161 +TX,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.212527286 +TX,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,8333.603356 +TX,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,8747.114131 +TX,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,1.2325443 +TX,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,59.03234656 +TX,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,4052.495246 +TX,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,7.561549 +TX,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01859621 +TX,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,1656.544174 +TX,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,0.158372536 +TX,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,2348.394638 +TX,PM10 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.631576845 +TX,PM10 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,1.98615505 +TX,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,110.0340902 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.786895103 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,740.9683237 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,272.1239104 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.840774179 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,124.095218 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.688392549 +TX,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2559.564922 +TX,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,1.30575486 +TX,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,12.63797599 +TX,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,548.0632548 +TX,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.38741 +TX,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,606790.3105 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,383.686339 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,330.5476244 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.39799032 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.09276851 +TX,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,123.4561803 +TX,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,4437.577977 +TX,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,22.66 +TX,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,946.1366326 +TX,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0542 +TX,PM10 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.9872 +TX,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.365 +TX,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,670.5759234 +TX,PM10 Filterable,2A1_Cement-production,,TON,745.5627624 +TX,PM10 Filterable,2A2_Lime-production,,TON,296.8910877 +TX,PM10 Filterable,2A5b_Construction-and-demolition,,TON,153793.6801 +TX,PM10 Filterable,2A6_Other-minerals,,TON,35739.37004 +TX,PM10 Filterable,2B_Chemicals-other,,TON,1095.158345 +TX,PM10 Filterable,2C_Iron-steel-alloy,,TON,270.7703606 +TX,PM10 Filterable,2C3_Aluminum-production,,TON,5.642899953 +TX,PM10 Filterable,2C5_Lead-production,,TON,0.000190108 +TX,PM10 Filterable,2C6_Zinc-production,,TON,0.68 +TX,PM10 Filterable,2C7_Other-metal,,TON,91.37199348 +TX,PM10 Filterable,2C7a_Copper-production,,TON,25.87759289 +TX,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0423 +TX,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,1738.50863 +TX,PM10 Filterable,2D3d_Coating-application,,TON,113.7716 +TX,PM10 Filterable,2D3e_Degreasing,,TON,7.9564 +TX,PM10 Filterable,2D3f_Dry-cleaning,,TON,0.0005 +TX,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,4.3368 +TX,PM10 Filterable,2H1_Pulp-and-paper,,TON,901.0165467 +TX,PM10 Filterable,2H2_Food-and-beverage,,TON,9226.886332 +TX,PM10 Filterable,2H3_Other-industrial-processes,,TON,876.5713487 +TX,PM10 Filterable,2H3_Other-industrial-processes,biomass,TON,2662.89034 +TX,PM10 Filterable,2I_Wood-processing,,TON,9.2552 +TX,PM10 Filterable,3B1a_Cattle-dairy,,TON,3871.918927 +TX,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,141773.4605 +TX,PM10 Filterable,3Dc_Other-farm,,TON,270268.5267 +TX,PM10 Filterable,5A_Solid-waste-disposal,,TON,1318.927574 +TX,PM10 Filterable,5C_Incineration,biomass,TON,25.66161026 +TX,PM10 Filterable,5C_Open-burning-dump,,TON,0.0544 +TX,PM10 Filterable,5C_Open-burning-land-clearing,,TON,9709.012322 +TX,PM10 Filterable,5C_Open-burning-residential,,TON,5045.23 +TX,PM10 Filterable,5C_Open-burning-yard-waste,,TON,163.71 +TX,PM10 Filterable,5D1_Wastewater-domestic,,TON,0 +TX,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,3.369127 +TX,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,1.61889096 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,9310.9788 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.2767 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,64.0076 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,4421.3443 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,8.2057 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.031 +TX,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3212.171879 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.171072289 +TX,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,4313.480528 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.9782 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,3.0762 +TX,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,294.8379 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,270.787748 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,137.0695647 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.682919319 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.784803004 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,853.6880401 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,547.1040482 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1.04785472 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,141.6065953 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.864573167 +TX,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,5154.552831 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.7498 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,16.6151 +TX,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1048.1102 +TX,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.0195 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2079.614527 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,187.8731603 +TX,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003129317 +TX,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,835.3532312 +TX,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,606790.3105 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,710.6695779 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,9046.569172 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,101.5035483 +TX,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,490.5770175 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,323.750612 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,4.075318805 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,4808.615706 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,33.62002833 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1983.825667 +TX,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,307.5348494 +TX,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.502587093 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1301.18694 +TX,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.00461681 +TX,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1013.274356 +TX,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,20.55633 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,333.8876373 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,640.3906443 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,12.24522833 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.282051791 +TX,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,250.568907 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,351.7053835 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,245.5197223 +TX,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.82057213 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,44.71250373 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,1000.871553 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4598.094536 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,59.49 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3131.587151 +TX,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,107.0605977 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,13.12961696 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,508.1199808 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,5.110752873 +TX,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,176.1374315 +TX,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1731.7819 +TX,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,heavy_oil,TON,2.333 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.9872 +TX,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.5591 +TX,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1350.7249 +TX,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,779.2769 +TX,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,358.0384 +TX,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,153793.6801 +TX,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,36316.1135 +TX,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,2052.3934 +TX,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,894.3073 +TX,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,12.4584 +TX,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0007 +TX,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.68 +TX,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,96.1141 +TX,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,44.3009 +TX,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0423 +TX,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,1740.9025 +TX,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,119.4655 +TX,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,7.9564 +TX,PM10 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.1098 +TX,PM10 Primary (Filt + Cond),2D3h_Printing,,TON,4.5904 +TX,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,4.3368 +TX,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1352.725 +TX,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,9276.6339 +TX,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,627.4168149 +TX,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,2952.049285 +TX,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,9.2552 +TX,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,3871.918927 +TX,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,141773.4605 +TX,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,270273.5269 +TX,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,3056.052914 +TX,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,1384.5729 +TX,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.751675348 +TX,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,53.88404382 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0544 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,9709.012322 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,5045.23 +TX,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,163.71 +TX,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +TX,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,4.8888 +TX,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,2.0348 +TX,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,5923.731358 +TX,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.7309443 +TX,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,58.89626496 +TX,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,2865.526552 +TX,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,7.561549 +TX,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.01822221 +TX,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1654.651373 +TX,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,0.138844103 +TX,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,2044.335765 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,diesel_oil,TON,0.631576845 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,heavy_oil,TON,1.977855047 +TX,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,109.1374194 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.082492818 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,351.2860597 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,226.4407129 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0.842720587 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,78.99083288 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,2.329693113 +TX,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,2505.689693 +TX,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,1.302254859 +TX,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,11.05061639 +TX,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,531.253998 +TX,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.38741 +TX,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,75185.07404 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,337.3518407 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,321.4750522 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,4.550991012 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.857721691 +TX,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,112.0320694 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,4171.25728 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,12.34 +TX,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,934.0075879 +TX,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0542 +TX,PM2.5 Filterable,1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.2924 +TX,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.3449 +TX,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,668.6552084 +TX,PM2.5 Filterable,2A1_Cement-production,,TON,262.6505916 +TX,PM2.5 Filterable,2A2_Lime-production,,TON,87.96538614 +TX,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,15379.36604 +TX,PM2.5 Filterable,2A6_Other-minerals,,TON,6040.99486 +TX,PM2.5 Filterable,2B_Chemicals-other,,TON,814.3923008 +TX,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,183.2752528 +TX,PM2.5 Filterable,2C3_Aluminum-production,,TON,3.504278613 +TX,PM2.5 Filterable,2C5_Lead-production,,TON,0.000190108 +TX,PM2.5 Filterable,2C6_Zinc-production,,TON,0.668 +TX,PM2.5 Filterable,2C7_Other-metal,,TON,70.42920783 +TX,PM2.5 Filterable,2C7a_Copper-production,,TON,19.19432107 +TX,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,0.0423 +TX,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,72.2750196 +TX,PM2.5 Filterable,2D3d_Coating-application,,TON,90.47592487 +TX,PM2.5 Filterable,2D3e_Degreasing,,TON,6.821231325 +TX,PM2.5 Filterable,2D3f_Dry-cleaning,,TON,0.0001 +TX,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,3.964439379 +TX,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,615.3094408 +TX,PM2.5 Filterable,2H2_Food-and-beverage,,TON,8243.477679 +TX,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,187.9772436 +TX,PM2.5 Filterable,2H3_Other-industrial-processes,biomass,TON,2481.17373 +TX,PM2.5 Filterable,2I_Wood-processing,,TON,3.766322979 +TX,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,804.7751772 +TX,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,29467.48578 +TX,PM2.5 Filterable,3Dc_Other-farm,,TON,53354.12715 +TX,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,550.5192626 +TX,PM2.5 Filterable,5C_Incineration,biomass,TON,21.7803187 +TX,PM2.5 Filterable,5C_Open-burning-dump,,TON,0.0544 +TX,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,8852.334506 +TX,PM2.5 Filterable,5C_Open-burning-residential,,TON,4620.37 +TX,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,126.22 +TX,PM2.5 Filterable,5D1_Wastewater-domestic,,TON,0 +TX,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,2.559127 +TX,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,1.00029096 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,6487.596027 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.7751 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,63.87151844 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,3232.71487 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,8.2057 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.030626 +TX,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3210.192845 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0.157932033 +TX,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,3969.192126 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,diesel_oil,TON,0.9782 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,heavy_oil,TON,3.0679 +TX,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,287.4765293 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,262.6587696 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,136.4063325 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,6.682919319 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0.082180902 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,457.788704 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,501.2289877 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,1.049098497 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,96.57258933 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,4.488327726 +TX,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,4984.393839 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,1.7463 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,15.0277405 +TX,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1026.320444 +TX,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,1.0195 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,2017.226242 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,172.9642898 +TX,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.003129317 +TX,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,735.9418265 +TX,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,75185.07404 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,494.194628 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2673.814533 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,67.11186472 +TX,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,146.7161559 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,223.888172 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.672815775 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,3078.165349 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,8.744617038 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,1105.979336 +TX,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,81.84705112 +TX,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.264278276 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,1262.151323 +TX,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004546204 +TX,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,958.0485849 +TX,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,18.911822 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,293.4760692 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,626.1221569 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,5.51323886 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,2.019513959 +TX,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,233.6279212 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,341.1541624 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,226.6328445 +TX,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.82057213 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,43.37112897 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,920.8020476 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4331.764798 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +TX,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,49.08 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3037.639409 +TX,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,100.6671037 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,12.7357269 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,467.4750992 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.957430132 +TX,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,162.0464435 +TX,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,1719.652855 +TX,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,heavy_oil,TON,2.333 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,Other_Fuel,TON,3.2924 +TX,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.539 +TX,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1348.804185 +TX,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,277.8154232 +TX,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,130.1305941 +TX,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,15379.36604 +TX,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,6411.928929 +TX,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1618.644818 +TX,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,569.0187955 +TX,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,10.28607866 +TX,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.0007 +TX,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,0.668 +TX,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,75.11981442 +TX,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,35.63022824 +TX,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,0.0423 +TX,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,74.66889 +TX,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,96.16402487 +TX,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,6.821231325 +TX,PM2.5 Primary (Filt + Cond),2D3f_Dry-cleaning,,TON,0.1094 +TX,PM2.5 Primary (Filt + Cond),2D3h_Printing,,TON,4.5704 +TX,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,3.964439379 +TX,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,995.8668959 +TX,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,8259.008647 +TX,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,126.3679917 +TX,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,biomass,TON,2583.392653 +TX,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,3.766322979 +TX,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,804.7751772 +TX,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,29467.48578 +TX,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,53359.1273 +TX,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2024.053081 +TX,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,617.1245883 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,1.589255383 +TX,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,45.47037223 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,0.0544 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,8852.334506 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,4620.37 +TX,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,126.22 +TX,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,,TON,0 +TX,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,3.6168 +TX,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,1.4162 +TX,Sulfur Dioxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,167880.9911 +TX,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.600473083 +TX,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,23.28924845 +TX,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,107686.4738 +TX,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,0.229781033 +TX,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.117092251 +TX,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,606.5158438 +TX,Sulfur Dioxide,1A1b_Pet-refining,heavy_oil,TON,0.187412238 +TX,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,21035.52159 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,diesel_oil,TON,0.7301 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,heavy_oil,TON,0.2216 +TX,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,5751.1671 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.997340206 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,19.01902265 +TX,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.312384046 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,322.4888234 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,326.624969 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0.061210187 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,2038.378175 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,31.95306617 +TX,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,13305.79324 +TX,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.2405 +TX,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,1.7964 +TX,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,2650.8501 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.446 +TX,Sulfur Dioxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0911 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,57.67315548 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,1.842099927 +TX,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,0.000148827 +TX,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2364.274711 +TX,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,41.00310748 +TX,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1837.280679 +TX,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.244094772 +TX,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,103.1702854 +TX,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,8.521417902 +TX,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.49704149 +TX,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,285.7694392 +TX,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,6.194225495 +TX,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,111.7581926 +TX,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,62.62101077 +TX,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.497525492 +TX,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,39.04736124 +TX,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000307459 +TX,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1127.95318 +TX,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,150.344504 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,24.74166363 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.646072106 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,176.4137744 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,31.79665863 +TX,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,86.0382385 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,5.87766173 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,14.75716299 +TX,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.214561516 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.890599618 +TX,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.49975874 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,62.65884227 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.68 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.99 +TX,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,68.59 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,82.30779519 +TX,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.123892278 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.11862171 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,6.868195293 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.21587679 +TX,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8.6707752 +TX,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,20755.1358 +TX,Sulfur Dioxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,21.8948 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,163.3727 +TX,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.4504 +TX,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,6517.8918 +TX,Sulfur Dioxide,2A1_Cement-production,,TON,54.0746 +TX,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1590.8576 +TX,Sulfur Dioxide,2A5b_Construction-and-demolition,,TON,0 +TX,Sulfur Dioxide,2A6_Other-minerals,,TON,9321.1651 +TX,Sulfur Dioxide,2B_Chemicals-other,,TON,15096.2302 +TX,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,638.0424 +TX,Sulfur Dioxide,2C3_Aluminum-production,,TON,8.0571 +TX,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,5.71 +TX,Sulfur Dioxide,2C7a_Copper-production,,TON,1.0181 +TX,Sulfur Dioxide,2D3c_Asphalt-roofing,Other_Fuel,TON,187.869 +TX,Sulfur Dioxide,2D3d_Coating-application,,TON,0.4724 +TX,Sulfur Dioxide,2D3e_Degreasing,Other_Fuel,TON,0.007 +TX,Sulfur Dioxide,2D3h_Printing,,TON,0.127 +TX,Sulfur Dioxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.3611 +TX,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,2171.2757 +TX,Sulfur Dioxide,2H2_Food-and-beverage,,TON,1.218 +TX,Sulfur Dioxide,2H3_Other-industrial-processes,biomass,TON,24.5875 +TX,Sulfur Dioxide,3Dc_Other-farm,,TON,0.91 +TX,Sulfur Dioxide,3F_Ag-res-on-field,,TON,258.7129201 +TX,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,526.2711 +TX,Sulfur Dioxide,5C_Incineration,,TON,0.856391982 +TX,Sulfur Dioxide,5C_Incineration,biomass,TON,46.64456708 +TX,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,790.0470706 +TX,Sulfur Dioxide,5C_Open-burning-residential,,TON,132.8 +TX,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,9.39 +TX,Sulfur Dioxide,5D1_Wastewater-domestic,,TON,0 +TX,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.9413 +TX,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,3.6487 +TX,Volatile Organic Compounds,11C_Other-natural,,TON,2085552.203 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,713.4129521 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.208000482 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,41.14769529 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,525.1868162 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,1.590203682 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.03440008 +TX,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,1525.323883 +TX,Volatile Organic Compounds,1A1b_Pet-refining,diesel_oil,TON,0.073024191 +TX,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,3892.573473 +TX,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,2709.126643 +TX,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,13114.22236 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,diesel_oil,TON,0.8964 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,heavy_oil,TON,1.9667 +TX,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,660.8925 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,333.2155798 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,649.0426141 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,64.19380821 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,185.2046927 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,507.5953464 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0.578234826 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,4.912285128 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,22.98516919 +TX,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,10878.5257 +TX,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.6255 +TX,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.8922 +TX,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,1520.5643 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,diesel_oil,TON,0.0017 +TX,Volatile Organic Compounds,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.9043 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,2101.719985 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,1634.34378 +TX,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.122548103 +TX,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,5538.015819 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,3205.555426 +TX,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,92469.76622 +TX,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,362.1617099 +TX,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4804.946601 +TX,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,385.358254 +TX,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,79.8911446 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,7128.566671 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,113.1930068 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1761.3386 +TX,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,1192.229053 +TX,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1915.799757 +TX,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,2319.977361 +TX,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.078942808 +TX,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2635.995782 +TX,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,8.116287 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,61.9959597 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,549.2970782 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.191096739 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.806328579 +TX,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,634.3601506 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,486.2121203 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,6787.620105 +TX,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,98.01216515 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,64.19451664 +TX,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,14254.24689 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,3937.300834 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +TX,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,630.05 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2803.285517 +TX,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,1010.467896 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.30600868 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,17284.51184 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12.77059182 +TX,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,14354.68561 +TX,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,572880.2954 +TX,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,heavy_oil,TON,2627.997533 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,7894.419841 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,6274.056473 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,5444.841516 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,52730.29404 +TX,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,535.0379 +TX,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,330075.1552 +TX,Volatile Organic Compounds,2A1_Cement-production,,TON,96.7582 +TX,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,34.4716 +TX,Volatile Organic Compounds,2A5b_Construction-and-demolition,,TON,0 +TX,Volatile Organic Compounds,2A6_Other-minerals,,TON,350.2677227 +TX,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,3233.976677 +TX,Volatile Organic Compounds,2B_Chemicals-other,,TON,18923.521 +TX,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,579.567 +TX,Volatile Organic Compounds,2C3_Aluminum-production,,TON,5.9863 +TX,Volatile Organic Compounds,2C5_Lead-production,,TON,4.1533 +TX,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,156.2729 +TX,Volatile Organic Compounds,2C7a_Copper-production,,TON,43.2735 +TX,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,111449.5673 +TX,Volatile Organic Compounds,2D3c_Asphalt-roofing,Other_Fuel,TON,554.1181 +TX,Volatile Organic Compounds,2D3d_Coating-application,,TON,50168.82829 +TX,Volatile Organic Compounds,2D3e_Degreasing,,TON,15443.439 +TX,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,594.4872 +TX,Volatile Organic Compounds,2D3h_Printing,,TON,2942.5592 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3665.246922 +TX,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,17474.06348 +TX,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,5592.7194 +TX,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2240.6039 +TX,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,3717.21076 +TX,Volatile Organic Compounds,2H3_Other-industrial-processes,biomass,TON,7.883639954 +TX,Volatile Organic Compounds,2I_Wood-processing,,TON,34.509 +TX,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,2961.991917 +TX,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,11586.47828 +TX,Volatile Organic Compounds,3B2_Manure-sheep,,TON,210.9404374 +TX,Volatile Organic Compounds,3B3_Manure-swine,,TON,1633.693832 +TX,Volatile Organic Compounds,3B4_Manure-other,,TON,448.6779978 +TX,Volatile Organic Compounds,3B4_Manure-poultry,,TON,2684.070806 +TX,Volatile Organic Compounds,3B4d_Manure-goats,,TON,348.7235697 +TX,Volatile Organic Compounds,3Dc_Other-farm,,TON,13.9062 +TX,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,10336.57051 +TX,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2589.608047 +TX,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,767.6508 +TX,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,4275.14154 +TX,Volatile Organic Compounds,5C_Incineration,,TON,0.587633741 +TX,Volatile Organic Compounds,5C_Incineration,biomass,TON,52.4603075 +TX,Volatile Organic Compounds,5C_Open-burning-dump,,TON,0.0608 +TX,Volatile Organic Compounds,5C_Open-burning-industrial,Other_Fuel,TON,8.5462 +TX,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,5378.031235 +TX,Volatile Organic Compounds,5C_Open-burning-residential,,TON,1136.49 +TX,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,185.16 +TX,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,390.5859 +TX,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,1395.7414 +TX,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,2.2175 +TX,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,192.9542 +TX,Volatile Organic Compounds,6A_Other-commertial,Other_Fuel,TON,0.0008 +UT,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.867270643 +UT,Ammonia,1A1a_Public-Electricity,hard_coal,TON,3.0204654 +UT,Ammonia,1A1a_Public-Electricity,natural_gas,TON,159.2854558 +UT,Ammonia,1A1b_Pet-refining,natural_gas,TON,17.8337 +UT,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.000624 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.107118265 +UT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.2560339 +UT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.66922617 +UT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.13512768 +UT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.03585677 +UT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.042882575 +UT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,34.22121232 +UT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,5.932962042 +UT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.166020657 +UT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,34.48754581 +UT,Ammonia,1A3bii_Road-LDV,light_oil,TON,793.8392642 +UT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.743440584 +UT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,68.64181021 +UT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.673346479 +UT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.766026402 +UT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.082896553 +UT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,59.46036056 +UT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.671026089 +UT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,43.86970441 +UT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,14.80324571 +UT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.462614474 +UT,Ammonia,1A3c_Rail,diesel_oil,TON,4.819349995 +UT,Ammonia,1A3c_Rail,light_oil,TON,0.001807703 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.30983982 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.323970851 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.020078975 +UT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.674041494 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.588758336 +UT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.219248332 +UT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.19069092 +UT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,2.722023059 +UT,Ammonia,1A4bi_Residential-stationary,biomass,TON,26.8325033 +UT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.54600001 +UT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.02025 +UT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,96.77624674 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.51361102 +UT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.012703484 +UT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.0108624 +UT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.689768476 +UT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.165768381 +UT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,1.14448015 +UT,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0.0268919 +UT,Ammonia,2A2_Lime-production,,TON,0 +UT,Ammonia,2A6_Other-minerals,,TON,145.1982833 +UT,Ammonia,2B_Chemicals-other,,TON,71.02252936 +UT,Ammonia,2C_Iron-steel-alloy,,TON,0.3563546 +UT,Ammonia,2C7_Other-metal,Other_Fuel,TON,1.28282 +UT,Ammonia,2C7a_Copper-production,,TON,2.99068992 +UT,Ammonia,2D3d_Coating-application,,TON,0 +UT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,29.143535 +UT,Ammonia,3B1a_Cattle-dairy,,TON,3448.982088 +UT,Ammonia,3B1b_Cattle-non-dairy,,TON,2425.419691 +UT,Ammonia,3B2_Manure-sheep,,TON,1021.278484 +UT,Ammonia,3B3_Manure-swine,,TON,4728.948864 +UT,Ammonia,3B4_Manure-other,,TON,5582.431546 +UT,Ammonia,3B4_Manure-poultry,,TON,3087.939529 +UT,Ammonia,3B4d_Manure-goats,,TON,85.7887954 +UT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14162.8 +UT,Ammonia,3F_Ag-res-on-field,,TON,35.525 +UT,Ammonia,5A_Solid-waste-disposal,,TON,0 +UT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,66.59496923 +UT,Ammonia,5C_Incineration,biomass,TON,0 +UT,Ammonia,5C_Open-burning-industrial,,TON,0.013495284 +UT,Ammonia,5D1_Wastewater-domestic,,TON,6.841895783 +UT,Ammonia,6A_Other-commertial,Other_Fuel,TON,898.817663 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,136443.9844 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,148701.98 +UT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,8529.530213 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,730872.8425 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,13494.65787 +UT,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.653570836 +UT,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,678986.5693 +UT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1227915.857 +UT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,10903758.01 +UT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,118676.3955 +UT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1016928.754 +UT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,149994.9148 +UT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,22744.07544 +UT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2795.589824 +UT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3846312.276 +UT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,52988.77283 +UT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2329696.727 +UT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,385210.5245 +UT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,29799.92543 +UT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2338.07024 +UT,Carbon Dioxide,1A3c_Rail,light_oil,TON,140.2239454 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,72463.80844 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,99221.30496 +UT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4513.226014 +UT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,23474.7623 +UT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,203155.9181 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,63214.37762 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,950.1591431 +UT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,114.4958077 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1333.02546 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,47506.98077 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,20413.71054 +UT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,82950.78585 +UT,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,35740209.83 +UT,Carbon Monoxide,11C_Other-natural,,TON,63787.4899 +UT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,5.89365418 +UT,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,9709.03111 +UT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1805.358874 +UT,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,668.3224388 +UT,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.6100619 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,205.2305922 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,3913.460958 +UT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,125.9537748 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,58.52257962 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,592.9273043 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,32.37067067 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.273413429 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1217.895053 +UT,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,0 +UT,Carbon Monoxide,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0152813 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1554.434262 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,2726.896738 +UT,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.126342187 +UT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,7367.265534 +UT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,11898.91948 +UT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,159742.7679 +UT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,875.835367 +UT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17128.0585 +UT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,298.1670814 +UT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,656.4816194 +UT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,7.51712393 +UT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3034.311676 +UT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,779.3534824 +UT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2615.289633 +UT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,7322.52432 +UT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1154.043393 +UT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1557.847888 +UT,Carbon Monoxide,1A3c_Rail,light_oil,TON,31.5558749 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,56.85415473 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.487903063 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.185254072 +UT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1114.554012 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,238.558879 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,20387.42201 +UT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,85.69084896 +UT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,64.58175782 +UT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,45837.46372 +UT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4547.567975 +UT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.730000043 +UT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.101250001 +UT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1367.33164 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,243.8300686 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,252.7125319 +UT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.255887917 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,8.7830973 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,5428.880793 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,40.67808612 +UT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,8996.267343 +UT,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.27 +UT,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3238.553831 +UT,Carbon Monoxide,2A2_Lime-production,,TON,0 +UT,Carbon Monoxide,2A6_Other-minerals,,TON,7992.482029 +UT,Carbon Monoxide,2B_Chemicals-other,,TON,100.7209309 +UT,Carbon Monoxide,2C_Iron-steel-alloy,,TON,505.4525433 +UT,Carbon Monoxide,2C6_Zinc-production,,TON,15.12 +UT,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,1.209991 +UT,Carbon Monoxide,2C7a_Copper-production,,TON,68.847 +UT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +UT,Carbon Monoxide,2H2_Food-and-beverage,,TON,447.5538063 +UT,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,7.369 +UT,Carbon Monoxide,3F_Ag-res-on-field,,TON,318.97 +UT,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,58.687004 +UT,Carbon Monoxide,5C_Incineration,biomass,TON,9.747253799 +UT,Carbon Monoxide,5C_Open-burning-industrial,,TON,101.3416642 +UT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,0 +UT,Carbon Monoxide,5C_Open-burning-residential,,TON,233.6628799 +UT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,48.50972128 +UT,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.597922 +UT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.03434181 +UT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,15.90033642 +UT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,51.38161048 +UT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,16.38626849 +UT,Methane,1A2g_Construction_and_Mining,light_oil,TON,9.666792878 +UT,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.06881096 +UT,Methane,1A3bii_Road-LDV,diesel_oil,TON,118.4333571 +UT,Methane,1A3bii_Road-LDV,light_oil,TON,413.8278829 +UT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.84330702 +UT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,49.90629377 +UT,Methane,1A3biii_Road-bus,diesel_oil,TON,6.024847763 +UT,Methane,1A3biii_Road-bus,light_oil,TON,0.903813694 +UT,Methane,1A3biii_Road-bus,natural_gas,TON,3.35995066 +UT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,233.2306284 +UT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.827145064 +UT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,90.08687111 +UT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,10.06852952 +UT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.864735791 +UT,Methane,1A3c_Rail,diesel_oil,TON,0.104858424 +UT,Methane,1A3c_Rail,light_oil,TON,0.094199902 +UT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,2.599401153 +UT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,67.13637312 +UT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,46.38388109 +UT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.797467676 +UT,Methane,1A4bi_Residential-mobile,light_oil,TON,178.2272189 +UT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.921782963 +UT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.261044765 +UT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.548375469 +UT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.056917865 +UT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,49.70433651 +UT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.525400784 +UT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,81.76941673 +UT,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,27267.05835 +UT,Nitrogen Oxides,11C_Other-natural,,TON,29794.3432 +UT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,17.7177151 +UT,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,30810.4005 +UT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,1431.604932 +UT,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,527.9759078 +UT,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.7262856 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,596.4000851 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,360.8701135 +UT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21.09604053 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,21.64149198 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,2564.925261 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,644.6547018 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.027938168 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,2777.653396 +UT,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,0 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3089.756428 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,32.69073182 +UT,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.020500206 +UT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,2084.20547 +UT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3175.626507 +UT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,18533.68213 +UT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,384.6677126 +UT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2068.695901 +UT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,813.4289148 +UT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,59.55643413 +UT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,2.804378404 +UT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11605.32747 +UT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,98.83134927 +UT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7626.654817 +UT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,768.534874 +UT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,62.91325276 +UT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,7772.855143 +UT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.330937382 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,13.99694944 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.531291547 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.498482101 +UT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,999.8949385 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,471.5555264 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,259.0946648 +UT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.55971324 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,168.0350981 +UT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,440.6503324 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,121.4316837 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,9.82800024 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.364499986 +UT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,2945.459286 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,498.61574 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,5.899750287 +UT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.252700295 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,9.9677726 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,96.57814476 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,208.5690097 +UT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,600.4339425 +UT,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.33 +UT,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4367.329395 +UT,Nitrogen Oxides,2A2_Lime-production,,TON,0 +UT,Nitrogen Oxides,2A6_Other-minerals,,TON,2625.118187 +UT,Nitrogen Oxides,2B_Chemicals-other,,TON,179.5504979 +UT,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,105.37186 +UT,Nitrogen Oxides,2C6_Zinc-production,,TON,2.69 +UT,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,5.391 +UT,Nitrogen Oxides,2C7a_Copper-production,,TON,98.55015 +UT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +UT,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,16.887161 +UT,Nitrogen Oxides,3F_Ag-res-on-field,,TON,9.313 +UT,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,6.46066 +UT,Nitrogen Oxides,5C_Incineration,biomass,TON,207.6842546 +UT,Nitrogen Oxides,5C_Open-burning-industrial,,TON,5.98264115 +UT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,0 +UT,Nitrogen Oxides,5C_Open-burning-residential,,TON,16.49384856 +UT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.155987662 +UT,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.8975235 +UT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,3.309375198 +UT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,367.9220945 +UT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.398815195 +UT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,44.38062209 +UT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.361107041 +UT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.540690498 +UT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.194466958 +UT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.514642633 +UT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.745582946 +UT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4.484671395 +UT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11.01859552 +UT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.595069228 +UT,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,580.874068 +UT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.410858124 +UT,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,684.12694 +UT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,34.42083231 +UT,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,328.236726 +UT,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.054647356 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,62.21941837 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,222.7488307 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,59.05648156 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.290389883 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,60.01048437 +UT,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,0 +UT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,91872.03837 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,76.41517398 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.066212851 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.064533656 +UT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.20091032 +UT,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,715.8410285 +UT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.589679953 +UT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.02185 +UT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,6.18946217 +UT,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.02 +UT,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,40.85946115 +UT,PM10 Filterable,2A1_Cement-production,,TON,103.0188847 +UT,PM10 Filterable,2A2_Lime-production,,TON,107.8649508 +UT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,19447.67221 +UT,PM10 Filterable,2A6_Other-minerals,,TON,5546.480384 +UT,PM10 Filterable,2B_Chemicals-other,,TON,114.1388942 +UT,PM10 Filterable,2C_Iron-steel-alloy,,TON,46.05727315 +UT,PM10 Filterable,2C6_Zinc-production,,TON,13.43 +UT,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,814.1232719 +UT,PM10 Filterable,2C7a_Copper-production,,TON,927.4587385 +UT,PM10 Filterable,2D3d_Coating-application,,TON,4.43829571 +UT,PM10 Filterable,2D3e_Degreasing,,TON,0 +UT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,13.90555796 +UT,PM10 Filterable,2H2_Food-and-beverage,,TON,85.6438243 +UT,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,133.4913541 +UT,PM10 Filterable,3B1a_Cattle-dairy,,TON,750.9235115 +UT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,8023.05784 +UT,PM10 Filterable,3Dc_Other-farm,,TON,15643.73898 +UT,PM10 Filterable,5A_Solid-waste-disposal,,TON,121.523332 +UT,PM10 Filterable,5C_Incineration,biomass,TON,4.039300455 +UT,PM10 Filterable,5C_Open-burning-commercial,,TON,0.0007154 +UT,PM10 Filterable,5C_Open-burning-industrial,,TON,46.48878236 +UT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,0 +UT,PM10 Filterable,5C_Open-burning-residential,,TON,104.4610469 +UT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,8.03297891 +UT,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.04998 +UT,PM10 Filterable,6A_Other-commertial,Other_Fuel,TON,1.55125 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.824316929 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,2116.96143 +UT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,133.3302721 +UT,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,417.1295076 +UT,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0551725 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,31.57655522 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.81346156 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.022366558 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,62.01478734 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,220.6000204 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,110.7417894 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.377533462 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,158.6089449 +UT,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,239.2553732 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,21.49746411 +UT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000425927 +UT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,102.2072889 +UT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,91872.03837 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,182.5333172 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1230.499154 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,24.46166562 +UT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,108.694062 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,58.4512463 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.983170424 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.402386701 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,695.1335268 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,5.256207771 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,555.6714103 +UT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,44.86109983 +UT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.296696296 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,358.0671851 +UT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.017901753 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,66.43195661 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.925932663 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.121924644 +UT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,37.65949626 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,37.46033286 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,25.92932561 +UT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.572323348 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.64630647 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,200.0883277 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,733.7420611 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.299479995 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.048199996 +UT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,16.09260166 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,42.76331615 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.301294257 +UT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014034566 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.28906141 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,55.87700325 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.535675079 +UT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,28.35810295 +UT,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.02 +UT,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,102.8229777 +UT,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,103.0188847 +UT,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,117.9463618 +UT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,19447.92412 +UT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,5591.874808 +UT,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,129.6009954 +UT,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,48.02468555 +UT,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,13.77 +UT,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,817.8965325 +UT,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,1452.401409 +UT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,4.43829571 +UT,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +UT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,27.19909796 +UT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1158.410929 +UT,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,134.4103541 +UT,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,750.9235115 +UT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,8023.05784 +UT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,15643.88854 +UT,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,52.372 +UT,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,122.4780624 +UT,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,6.014036755 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0007154 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,51.18782 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,104.4610469 +UT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,8.03297891 +UT,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.1289925 +UT,PM10 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,1.55125 +UT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0.127958914 +UT,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,417.960537 +UT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,34.20530555 +UT,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,241.7552325 +UT,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,0.054647356 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,50.55725573 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,197.1682858 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,14.88175491 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.133055831 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,53.6498164 +UT,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,0 +UT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,10772.19271 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,72.03264459 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.934699405 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.0544517 +UT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.60283637 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,681.8351197 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.453179961 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.016799998 +UT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,3.404203999 +UT,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.02 +UT,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,40.85946115 +UT,PM2.5 Filterable,2A1_Cement-production,,TON,63.15378482 +UT,PM2.5 Filterable,2A2_Lime-production,,TON,80.96826025 +UT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,1944.475221 +UT,PM2.5 Filterable,2A6_Other-minerals,,TON,1072.092265 +UT,PM2.5 Filterable,2B_Chemicals-other,,TON,68.8694462 +UT,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,23.69509913 +UT,PM2.5 Filterable,2C6_Zinc-production,,TON,10.21 +UT,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,614.6988039 +UT,PM2.5 Filterable,2C7a_Copper-production,,TON,119.4225301 +UT,PM2.5 Filterable,2D3d_Coating-application,,TON,3.215446167 +UT,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +UT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,10.15176996 +UT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,3.246484134 +UT,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,119.0575529 +UT,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,156.0788157 +UT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1667.585285 +UT,PM2.5 Filterable,3Dc_Other-farm,,TON,2888.658501 +UT,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,31.73267446 +UT,PM2.5 Filterable,5C_Incineration,biomass,TON,2.179738241 +UT,PM2.5 Filterable,5C_Open-burning-commercial,,TON,0.0003577 +UT,PM2.5 Filterable,5C_Open-burning-industrial,,TON,30.54027566 +UT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,0 +UT,PM2.5 Filterable,5C_Open-burning-residential,,TON,95.6643244 +UT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,6.19265094 +UT,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.04998 +UT,PM2.5 Filterable,6A_Other-commertial,Other_Fuel,TON,0.775625 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.541396409 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1855.58737 +UT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,133.1146693 +UT,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,326.9553392 +UT,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,0.0551725 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,30.62769954 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,17.45511393 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.022366558 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,50.00328472 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,194.0279674 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,64.92585672 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0.21989489 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,146.7914946 +UT,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,232.0777143 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,19.78806903 +UT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000425927 +UT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,87.99371596 +UT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,10772.19271 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,110.6097793 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,462.0598308 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,17.63002337 +UT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,42.11855168 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,39.86773534 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.476315161 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.054834078 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,406.335267 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,2.222470458 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,345.460727 +UT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,15.95552359 +UT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.982038986 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,299.4774768 +UT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.016497087 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,60.76456834 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.77949155 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.115773468 +UT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,38.32564835 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,36.33651769 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,23.91123261 +UT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.572323348 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,10.32691784 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,184.0897584 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,699.7361523 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,1.162979971 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.043150003 +UT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,13.30734459 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,41.48041858 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.277199148 +UT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.014034566 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,1.25038949 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,51.40700741 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,4.399605768 +UT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,26.08945626 +UT,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.02 +UT,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,102.8229777 +UT,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,63.15378482 +UT,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,85.17942609 +UT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,1944.792412 +UT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1115.797147 +UT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,84.33154664 +UT,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,24.68091833 +UT,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,10.28 +UT,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,618.472064 +UT,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,644.3652111 +UT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.215446167 +UT,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +UT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,23.44530996 +UT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,1076.013662 +UT,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,119.9765529 +UT,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,156.0788157 +UT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1667.585285 +UT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,2888.819935 +UT,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,36.845 +UT,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,32.68624847 +UT,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,4.154474541 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,0.0003577 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,35.2393133 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,0 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,95.6643244 +UT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,6.19265094 +UT,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.1289925 +UT,PM2.5 Primary (Filt + Cond),6A_Other-commertial,Other_Fuel,TON,0.775625 +UT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.057742665 +UT,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,10071.8 +UT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,21.28455598 +UT,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,587.5957326 +UT,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1.0468608 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.137578762 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.761662305 +UT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.047809952 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,2.405971614 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,219.5828206 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1176.358369 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.032271047 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,246.8123888 +UT,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,5.610822573 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.207007287 +UT,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.04602E-05 +UT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,303.4550843 +UT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,10.5674533 +UT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,138.4546309 +UT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.021956767 +UT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.91448741 +UT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.293127319 +UT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.288699597 +UT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.014801208 +UT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,32.5415332 +UT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.673641705 +UT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,19.80714112 +UT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,4.897034604 +UT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.387164471 +UT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,5.424674862 +UT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.002267078 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,1.699576254 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.021632234 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.173053662 +UT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6.024149361 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.614800232 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.549241037 +UT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.025290661 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.202997554 +UT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,3.327531426 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,7.534043944 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,3.876599962 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.00342325 +UT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,18.56838552 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.519294338 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.015607606 +UT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000641844 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011615749 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.778111124 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.187658182 +UT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,1.362579856 +UT,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +UT,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,11.40479433 +UT,Sulfur Dioxide,2A2_Lime-production,,TON,0 +UT,Sulfur Dioxide,2A6_Other-minerals,,TON,26.9311498 +UT,Sulfur Dioxide,2B_Chemicals-other,,TON,32.75482744 +UT,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,85.839965 +UT,Sulfur Dioxide,2C6_Zinc-production,,TON,2.32 +UT,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.743 +UT,Sulfur Dioxide,2C7a_Copper-production,,TON,586.4722385 +UT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +UT,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.4506 +UT,Sulfur Dioxide,3F_Ag-res-on-field,,TON,2.2591 +UT,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,1.24 +UT,Sulfur Dioxide,5C_Incineration,biomass,TON,30.80315272 +UT,Sulfur Dioxide,5C_Open-burning-industrial,,TON,0.518818782 +UT,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,0 +UT,Sulfur Dioxide,5C_Open-burning-residential,,TON,2.74897486 +UT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.465847334 +UT,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.057165 +UT,Volatile Organic Compounds,11C_Other-natural,,TON,263678.212 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.150881428 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,266.52107 +UT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,92.53222284 +UT,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.42300787 +UT,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1506.73075 +UT,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.039974 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,40.76117093 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,113.3535088 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,11.10677482 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,1.703692614 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,192.5321102 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,4.516735956 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.015709858 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +UT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,129.4301618 +UT,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,0.8103 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,295.1623751 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,186.6644736 +UT,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.01487435 +UT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,855.6876042 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1078.050563 +UT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,13361.42306 +UT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,100.4890813 +UT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1348.622882 +UT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,81.55781588 +UT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,26.37316138 +UT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.162204475 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,668.7619876 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,27.40028587 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,623.5337888 +UT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,268.3664117 +UT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,321.3169152 +UT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,370.0561832 +UT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.793072773 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,2.158513735 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.481390786 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.021212211 +UT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,103.2797097 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,51.69215888 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,687.7686542 +UT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,10.02645402 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,15.11753453 +UT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,2946.572501 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,747.6225722 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.389297995 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.014200001 +UT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,170.2102054 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,44.44019116 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,11.4638852 +UT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.118538244 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.27923479 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1953.515058 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,10.61875924 +UT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,2078.002134 +UT,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +UT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,181.5174702 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,12.93138703 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,500.8424182 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,1039.983764 +UT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3421.473791 +UT,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,41942.67458 +UT,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +UT,Volatile Organic Compounds,2A6_Other-minerals,,TON,119.9082719 +UT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,11.11431151 +UT,Volatile Organic Compounds,2B_Chemicals-other,,TON,244.4978431 +UT,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,18.053741 +UT,Volatile Organic Compounds,2C6_Zinc-production,,TON,0.2 +UT,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,639.343039 +UT,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.507 +UT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,12486.25305 +UT,Volatile Organic Compounds,2D3d_Coating-application,,TON,7084.947999 +UT,Volatile Organic Compounds,2D3e_Degreasing,,TON,2567.59791 +UT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,5.20809347 +UT,Volatile Organic Compounds,2D3h_Printing,,TON,657.6443775 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,260.1187055 +UT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,800.5560085 +UT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,14.62819 +UT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,690.3897898 +UT,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,229.0285252 +UT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,275.9185671 +UT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,194.0335831 +UT,Volatile Organic Compounds,3B2_Manure-sheep,,TON,81.70229028 +UT,Volatile Organic Compounds,3B3_Manure-swine,,TON,378.315929 +UT,Volatile Organic Compounds,3B4_Manure-other,,TON,66.5503859 +UT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,247.0351561 +UT,Volatile Organic Compounds,3B4d_Manure-goats,,TON,6.86310425 +UT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,347.551181 +UT,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,37.678 +UT,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,916.8759325 +UT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,471.2098736 +UT,Volatile Organic Compounds,5C_Incineration,biomass,TON,0.898599771 +UT,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,1.546298377 +UT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,0 +UT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,23.53122528 +UT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,9.04744824 +UT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,38.95906665 +UT,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,205.90655 +UT,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,368.634485 +VA,Ammonia,1A1a_Public-Electricity,biomass,TON,50.582 +VA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,38.66527183 +VA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,91.76416596 +VA,Ammonia,1A1a_Public-Electricity,heavy_oil,TON,3.4542 +VA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,451.443112 +VA,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,14.04 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.466745712 +VA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.595497554 +VA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,145.1276963 +VA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.653071042 +VA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,20.78859701 +VA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,15.86225177 +VA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.048237881 +VA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,109.9430008 +VA,Ammonia,1A2c_Chemicals,natural_gas,TON,0.001152 +VA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,13.46956744 +VA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.510904978 +VA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,24.66298606 +VA,Ammonia,1A3bii_Road-LDV,light_oil,TON,2429.213979 +VA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.585872691 +VA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,128.0471628 +VA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,9.762094513 +VA,Ammonia,1A3biii_Road-bus,light_oil,TON,1.51954156 +VA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.416994258 +VA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,99.54403889 +VA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.511193891 +VA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,29.76462068 +VA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,5.157771981 +VA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.89001575 +VA,Ammonia,1A3c_Rail,diesel_oil,TON,5.847080066 +VA,Ammonia,1A3c_Rail,light_oil,TON,0.006183616 +VA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.338592997 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,16.84043019 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.94816917 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.098844513 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.008210067 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.736657837 +VA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,51.5447604 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.853031315 +VA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.878687133 +VA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.929839137 +VA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,11.33821213 +VA,Ammonia,1A4bi_Residential-stationary,biomass,TON,500.7533107 +VA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,35.95200047 +VA,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,2.28824999 +VA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,771.7066023 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.085575108 +VA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.078582569 +VA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.029029681 +VA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.079925446 +VA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.632798066 +VA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,4.321860218 +VA,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Ammonia,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.006032064 +VA,Ammonia,2A2_Lime-production,,TON,23.1425215 +VA,Ammonia,2A6_Other-minerals,Other_Fuel,TON,5.609875 +VA,Ammonia,2B_Chemicals-other,,TON,606.3619827 +VA,Ammonia,2D3e_Degreasing,,TON,0.2495 +VA,Ammonia,2D3i_Other-solvent-use,Other_Fuel,TON,4.5 +VA,Ammonia,2H1_Pulp-and-paper,,TON,160.6700286 +VA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,23.86687145 +VA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,312.56192 +VA,Ammonia,3B1a_Cattle-dairy,,TON,5031.047839 +VA,Ammonia,3B1b_Cattle-non-dairy,,TON,4966.252789 +VA,Ammonia,3B2_Manure-sheep,,TON,297.0992006 +VA,Ammonia,3B3_Manure-swine,,TON,3242.390005 +VA,Ammonia,3B4_Manure-other,,TON,1216.102613 +VA,Ammonia,3B4_Manure-poultry,,TON,14639.38372 +VA,Ammonia,3B4d_Manure-goats,,TON,272.1184227 +VA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,8283.4 +VA,Ammonia,3F_Ag-res-on-field,,TON,194.624 +VA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,1.64 +VA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,181.59398 +VA,Ammonia,5D1_Wastewater-domestic,,TON,36.002175 +VA,Carbon Dioxide,1A1a_Public-Electricity,hard_coal,TON,697700.5 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,303998.6311 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,354462.9528 +VA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,20387.96484 +VA,Carbon Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,224588.2659 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1658167.64 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,41791.38511 +VA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,9.209305386 +VA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,2042436.363 +VA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,789368.4192 +VA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,33911202.55 +VA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,172165.672 +VA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1673563.826 +VA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,642735.5059 +VA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,55785.27865 +VA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,17263.80773 +VA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6429617.086 +VA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,83559.84327 +VA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1704975.709 +VA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,136233.4404 +VA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,105099.4523 +VA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,7757.866696 +VA,Carbon Dioxide,1A3c_Rail,light_oil,TON,481.6329291 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,104941.8626 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,153151.8834 +VA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6778.828079 +VA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,114440.8881 +VA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,848090.6411 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,256808.1465 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5746.380717 +VA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,505.8083376 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3560.74924 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,77313.29954 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,77925.19643 +VA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,313653.3807 +VA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,48010229.06 +VA,Carbon Monoxide,11C_Other-natural,,TON,68126.97667 +VA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1097.3994 +VA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,323.3646419 +VA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,3084.725052 +VA,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,21.63184 +VA,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.020657 +VA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,2297.813022 +VA,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,0.69 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,495.8416117 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9224.682583 +VA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,303.0667858 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,13505.96114 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,coal_coke,TON,0.222798023 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,102.3399633 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,283.4869579 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.465248544 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.305785461 +VA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,3346.683489 +VA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,50.682295 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,5474.044057 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,8695.782971 +VA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.953234017 +VA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,25787.5214 +VA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,8359.030734 +VA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,523437.4185 +VA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2436.374784 +VA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,48946.64909 +VA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1708.07777 +VA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,1052.343113 +VA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,243.1153164 +VA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4805.059116 +VA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2313.239069 +VA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2180.684674 +VA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5070.831046 +VA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4037.606273 +VA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1949.655306 +VA,Carbon Monoxide,1A3c_Rail,light_oil,TON,108.7222453 +VA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1809.631383 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,712.5965157 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,106.7666134 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,46.6861995 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,32.18353639 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.562924119 +VA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3236.216039 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,390.9980688 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,31928.57222 +VA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,148.0383825 +VA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,341.6377976 +VA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,190311.649 +VA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,67020.57092 +VA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,179.7600007 +VA,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,11.44124988 +VA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1756.33314 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,762.46278 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1481.695933 +VA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,6.939185444 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,25.6281735 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,15392.4178 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,154.3595086 +VA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,33769.45111 +VA,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,29.7870778 +VA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,2.187867 +VA,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,4917.465568 +VA,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,4195.261755 +VA,Carbon Monoxide,2A6_Other-minerals,,TON,992.364427 +VA,Carbon Monoxide,2B_Chemicals-other,,TON,63.52755325 +VA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,3043.308479 +VA,Carbon Monoxide,2D3d_Coating-application,,TON,1.40626 +VA,Carbon Monoxide,2D3i_Other-solvent-use,Other_Fuel,TON,0.5 +VA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,3392.072103 +VA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1534.132444 +VA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1836.544257 +VA,Carbon Monoxide,3F_Ag-res-on-field,,TON,1242.59 +VA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,358.3967307 +VA,Carbon Monoxide,5C_Incineration,,TON,3258.041351 +VA,Carbon Monoxide,5C_Incineration,biomass,TON,278.3308792 +VA,Carbon Monoxide,5C_Open-burning-dump,,TON,7.811925 +VA,Carbon Monoxide,5C_Open-burning-industrial,,TON,0.03 +VA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,33047.03241 +VA,Carbon Monoxide,5C_Open-burning-residential,,TON,8402.648751 +VA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,817.6830794 +VA,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.001824 +VA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.659332906 +VA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,38.99101524 +VA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,128.8315558 +VA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,50.17779986 +VA,Methane,1A2g_Construction_and_Mining,light_oil,TON,31.2421919 +VA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.554064338 +VA,Methane,1A3bii_Road-LDV,diesel_oil,TON,50.25186992 +VA,Methane,1A3bii_Road-LDV,light_oil,TON,1378.207329 +VA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.04480776 +VA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,131.0616509 +VA,Methane,1A3biii_Road-bus,diesel_oil,TON,13.61156983 +VA,Methane,1A3biii_Road-bus,light_oil,TON,1.45770214 +VA,Methane,1A3biii_Road-bus,natural_gas,TON,163.565483 +VA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,284.2791136 +VA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,4.436053538 +VA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,57.39441804 +VA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,12.00269697 +VA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.155947115 +VA,Methane,1A3c_Rail,diesel_oil,TON,0.350765583 +VA,Methane,1A3c_Rail,light_oil,TON,0.316249294 +VA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.143760561 +VA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,104.0487281 +VA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,98.83353372 +VA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,3.787267107 +VA,Methane,1A4bi_Residential-mobile,light_oil,TON,710.0759001 +VA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.044569413 +VA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,6.059881969 +VA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.811450207 +VA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.149492699 +VA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,99.17348154 +VA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.21644421 +VA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,304.5068556 +VA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,191497.963 +VA,Nitrogen Oxides,11C_Other-natural,,TON,11663.83004 +VA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,911.62 +VA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,3902.709149 +VA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,5031.6262 +VA,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,175.905046 +VA,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.09282 +VA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,4090.500605 +VA,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,37.78 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1459.993863 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,876.4197468 +VA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,51.9424255 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5780.449714 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,coal_coke,TON,0.347802259 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,727.8713368 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,1107.13301 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,37.27495014 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.236137747 +VA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,5612.364128 +VA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,11.315599 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,9585.800408 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,126.1001548 +VA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.143134322 +VA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,7767.039905 +VA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,2595.694238 +VA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,57462.85564 +VA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,820.3522678 +VA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6108.510023 +VA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,5495.59376 +VA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,98.79232204 +VA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,136.1097732 +VA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,17340.28011 +VA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,226.196691 +VA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5651.946901 +VA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,381.2467388 +VA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,205.34494 +VA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,9759.902606 +VA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,1.079121535 +VA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,13163.51835 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,287.2088822 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,514.4833747 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,69.14560146 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,38.10372549 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,6.871960594 +VA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4189.360889 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,750.413333 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,408.5079371 +VA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,37.44115484 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,892.4254139 +VA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1741.292593 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1079.294667 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,647.136003 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,41.18849938 +VA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4384.117064 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1641.286502 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,22.59036399 +VA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.190634735 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,28.2090973 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,163.1210239 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,777.107128 +VA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2216.246725 +VA,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,10.08493932 +VA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,Other_Fuel,TON,0.8751468 +VA,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3443.083275 +VA,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1641.30313 +VA,Nitrogen Oxides,2A6_Other-minerals,,TON,3013.891703 +VA,Nitrogen Oxides,2B_Chemicals-other,,TON,2102.791953 +VA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,701.879673 +VA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,58.0767 +VA,Nitrogen Oxides,2D3d_Coating-application,,TON,1.779777 +VA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,4138.27443 +VA,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,1.688415 +VA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,5296.71462 +VA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,42.409 +VA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,76.0132092 +VA,Nitrogen Oxides,5C_Incineration,,TON,778.1150925 +VA,Nitrogen Oxides,5C_Incineration,biomass,TON,198.6816566 +VA,Nitrogen Oxides,5C_Open-burning-dump,,TON,0.55143 +VA,Nitrogen Oxides,5C_Open-burning-industrial,,TON,0.25 +VA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,802.1124714 +VA,Nitrogen Oxides,5C_Open-burning-residential,,TON,593.1281367 +VA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,45.26459773 +VA,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.21032 +VA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,2.240328991 +VA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1157.989263 +VA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.603313743 +VA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,128.2768937 +VA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.996465134 +VA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.7702634 +VA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,1.057221188 +VA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,6.761840545 +VA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,3.412898121 +VA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.251949159 +VA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,9.314301609 +VA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.824178457 +VA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,473.3678321 +VA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,123.995399 +VA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,71.15124564 +VA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1138.365275 +VA,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,18.88253695 +VA,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.006423758 +VA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,582.0996878 +VA,PM10 Filterable,1A1b_Pet-refining,Other_Fuel,TON,8.7198915 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,12.7845628 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8928.180842 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,2.755338073 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,25.04876857 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,31.99213133 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,6.438790927 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.060270878 +VA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,85.66042381 +VA,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.36542182 +VA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,39122.68331 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,567.9722371 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.66754208 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,65.86549068 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.34091112 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.335408059 +VA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.84199749 +VA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,8579.550009 +VA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,38.82815929 +VA,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,2.469049954 +VA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.784399776 +VA,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,PM10 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0519048 +VA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.1752256 +VA,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23.56363624 +VA,PM10 Filterable,2A1_Cement-production,,TON,85.14301854 +VA,PM10 Filterable,2A2_Lime-production,,TON,148.0392428 +VA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,20007.20568 +VA,PM10 Filterable,2A6_Other-minerals,,TON,7143.977058 +VA,PM10 Filterable,2B_Chemicals-other,,TON,219.1158212 +VA,PM10 Filterable,2C_Iron-steel-alloy,,TON,323.6641782 +VA,PM10 Filterable,2C5_Lead-production,,TON,5.52293E-05 +VA,PM10 Filterable,2C6_Zinc-production,,TON,2.95932 +VA,PM10 Filterable,2C7_Other-metal,,TON,52.24350032 +VA,PM10 Filterable,2C7a_Copper-production,,TON,0.1665375 +VA,PM10 Filterable,2D3d_Coating-application,,TON,22.0053767 +VA,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,16.648242 +VA,PM10 Filterable,2H1_Pulp-and-paper,,TON,1043.211614 +VA,PM10 Filterable,2H2_Food-and-beverage,,TON,345.1704859 +VA,PM10 Filterable,2H3_Other-industrial-processes,,TON,316.6627367 +VA,PM10 Filterable,2I_Wood-processing,,TON,5.71536856 +VA,PM10 Filterable,3B1a_Cattle-dairy,,TON,655.8448276 +VA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,14227.80687 +VA,PM10 Filterable,3Dc_Other-farm,,TON,29098.65419 +VA,PM10 Filterable,5A_Solid-waste-disposal,,TON,49.70286465 +VA,PM10 Filterable,5C_Incineration,biomass,TON,11.94020353 +VA,PM10 Filterable,5C_Open-burning-dump,,TON,1.47048 +VA,PM10 Filterable,5C_Open-burning-industrial,,TON,4.58641 +VA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,4090.773811 +VA,PM10 Filterable,5C_Open-burning-residential,,TON,3171.337954 +VA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,277.4281846 +VA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,10.5457288 +VA,PM10 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,27.68 +VA,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,9.631910605 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,129.33121 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,83.70641855 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1351.473131 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,21.4574279 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.006825 +VA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1166.019322 +VA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,8.7198915 +VA,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,14.63 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,80.93481413 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,42.27676597 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.458974223 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,13.76057144 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9244.691494 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,2.758089965 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,35.31024738 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,55.07538697 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,7.319865782 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.138887157 +VA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,197.1092009 +VA,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.4174795 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,833.4455005 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,65.48937806 +VA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00120167 +VA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,410.7442523 +VA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,39122.68331 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,146.6297634 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3312.19285 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,55.89684582 +VA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,205.7557091 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,267.0027926 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,5.536437648 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,4.199782075 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,978.9049435 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,10.38549382 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,379.2363274 +VA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,16.96435283 +VA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,11.07605463 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,289.8046256 +VA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.06128507 +VA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,292.897005 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,587.3782151 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,41.35273952 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,68.77789264 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.387461597 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.726834916 +VA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,58.41487145 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.27407561 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,40.04424376 +VA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.858480449 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,58.42026057 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,837.2958409 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8974.828908 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,85.56576269 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,5.446599985 +VA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,22.82576534 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,134.4034925 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,10.81122658 +VA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.062221967 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.77187606 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,68.29290417 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.02019116 +VA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,104.6235732 +VA,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,PM10 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0519048 +VA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.1752556 +VA,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,70.52649814 +VA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,86.02901137 +VA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,221.77237 +VA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,20007.23056 +VA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7173.294358 +VA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,231.0347896 +VA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,605.4605347 +VA,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,0.503515598 +VA,PM10 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.95932 +VA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,53.88144489 +VA,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.1665375 +VA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,22.0053767 +VA,PM10 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,3.88 +VA,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,16.648242 +VA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1471.331714 +VA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3966.42074 +VA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,316.6627367 +VA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,5.71536856 +VA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,655.8448276 +VA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,14227.80687 +VA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,29099.39099 +VA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,213.235 +VA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,62.1496804 +VA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,7.417906363 +VA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,12.14336713 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,1.47048 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,5.05 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,4090.773811 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,3171.337954 +VA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,277.4281846 +VA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,10.5457288 +VA,PM10 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,27.68 +VA,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,9.667331171 +VA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,94.701597 +VA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,69.11813869 +VA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,694.332112 +VA,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,12.00324659 +VA,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.006423758 +VA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,566.0250779 +VA,PM2.5 Filterable,1A1b_Pet-refining,Other_Fuel,TON,4.96153261 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,10.62564904 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,7697.175845 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,coal_coke,TON,1.65357654 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.2264891 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,31.2879606 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.973664097 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.015071125 +VA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,80.96054012 +VA,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.338806975 +VA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,6348.735823 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,488.4844706 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,27.53582969 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,54.1611107 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.134523296 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.257782276 +VA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,22.75815557 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,8490.615719 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,29.84015998 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.898400031 +VA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,4.831419836 +VA,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,PM2.5 Filterable,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0519048 +VA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0.1454 +VA,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23.56363624 +VA,PM2.5 Filterable,2A1_Cement-production,,TON,42.39184145 +VA,PM2.5 Filterable,2A2_Lime-production,,TON,133.9110477 +VA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2000.720568 +VA,PM2.5 Filterable,2A6_Other-minerals,,TON,973.570239 +VA,PM2.5 Filterable,2B_Chemicals-other,,TON,155.260367 +VA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,255.5817601 +VA,PM2.5 Filterable,2C5_Lead-production,,TON,3.99106E-05 +VA,PM2.5 Filterable,2C6_Zinc-production,,TON,2.95932 +VA,PM2.5 Filterable,2C7_Other-metal,,TON,16.25462513 +VA,PM2.5 Filterable,2C7a_Copper-production,,TON,0.03213043 +VA,PM2.5 Filterable,2D3d_Coating-application,,TON,18.96656282 +VA,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,14.386732 +VA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,735.6670758 +VA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,54.65058292 +VA,PM2.5 Filterable,2H3_Other-industrial-processes,,TON,246.4722066 +VA,PM2.5 Filterable,2I_Wood-processing,,TON,1.90428208 +VA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,136.3168113 +VA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2957.236846 +VA,PM2.5 Filterable,3Dc_Other-farm,,TON,5427.76658 +VA,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,32.92300465 +VA,PM2.5 Filterable,5C_Incineration,biomass,TON,7.738603213 +VA,PM2.5 Filterable,5C_Open-burning-dump,,TON,1.47048 +VA,PM2.5 Filterable,5C_Open-burning-industrial,,TON,4.58641 +VA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3729.823219 +VA,PM2.5 Filterable,5C_Open-burning-residential,,TON,2904.277947 +VA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,213.9117262 +VA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,10.5457288 +VA,PM2.5 Filterable,5D3_Wastewater-commertial,Other_Fuel,TON,14.89 +VA,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,5.928152605 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,100.03742 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,80.87323304 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,806.1490292 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,14.57813754 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.006825 +VA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,1104.536402 +VA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,Other_Fuel,TON,4.96153261 +VA,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,14.63 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,78.5025644 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41.4575114 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.458974223 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,11.6014103 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8013.694774 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,coal_coke,TON,1.655469362 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,31.38767596 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,34.9918092 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,4.853182037 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.093673675 +VA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,192.2353076 +VA,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.390864655 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,808.4422103 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,60.28442473 +VA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00120167 +VA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,382.1489247 +VA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,6348.735823 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,107.8436357 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1225.325681 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,44.63841383 +VA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,100.0662013 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,215.8494286 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.058967151 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.93738044 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,634.4106631 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,4.098345619 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,259.7868791 +VA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,6.896241654 +VA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.115514405 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,281.0793808 +VA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.056492164 +VA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,277.3763323 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,507.8876764 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,39.20509004 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,57.07280564 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.181046351 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.652337195 +VA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,55.33340405 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,64.28585161 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,36.92841834 +VA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.858480449 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,56.66764153 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,770.3539768 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,8885.894618 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,76.57775949 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.875950119 +VA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,18.87278477 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,130.3713804 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.946370856 +VA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.062221967 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.65872027 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,62.83117707 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,16.50958288 +VA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,96.25370969 +VA,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,PM2.5 Primary (Filt + Cond),1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.0519048 +VA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0.14543 +VA,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,70.52649814 +VA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,43.27783428 +VA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,204.4474914 +VA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2000.74545 +VA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1002.834861 +VA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,163.7394972 +VA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,517.4211035 +VA,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,0.185996279 +VA,PM2.5 Primary (Filt + Cond),2C6_Zinc-production,,TON,2.95932 +VA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,17.8925697 +VA,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,0.03213043 +VA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,18.96656282 +VA,PM2.5 Primary (Filt + Cond),2D3h_Printing,Other_Fuel,TON,3.88 +VA,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,14.386732 +VA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1110.20987 +VA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3675.900988 +VA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,,TON,246.4722066 +VA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,1.90428208 +VA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,136.3168113 +VA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2957.236846 +VA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,5428.503377 +VA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,138.307 +VA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,45.3698204 +VA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,7.594962239 +VA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,7.76471143 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,1.47048 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-industrial,,TON,5.05 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3729.823219 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2904.277947 +VA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,213.9117262 +VA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,10.5457288 +VA,PM2.5 Primary (Filt + Cond),5D3_Wastewater-commertial,Other_Fuel,TON,14.89 +VA,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,5.963573171 +VA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,65.95 +VA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,62.81759386 +VA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,5310.6536 +VA,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,608.8471182 +VA,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.0000364 +VA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,831.3424857 +VA,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,3.27 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.689703258 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.75598616 +VA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.114277113 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,643.8621187 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,coal_coke,TON,1.031484745 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,48.72065816 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,116.5303738 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,117.0454011 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.44541525 +VA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,54.46939433 +VA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,3.28138236 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,13.69499528 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.646723994 +VA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.14139E-05 +VA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1075.012614 +VA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,6.853943945 +VA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,704.3889906 +VA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.507723978 +VA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.76046157 +VA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,5.601891776 +VA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.153098642 +VA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.09140282 +VA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,54.40758862 +VA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.734116787 +VA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,14.54482497 +VA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,2.823546496 +VA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.158955051 +VA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,19.51880157 +VA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.007818315 +VA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,271.3535155 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,29.48970401 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,25.89534763 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,1213.3267 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,22.98188789 +VA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,39.88852061 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.892758011 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.423017482 +VA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.03797541 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.99922956 +VA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,13.96268964 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,221.0572736 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,255.2592038 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.386827256 +VA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,26.33952625 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2.080775283 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.094434027 +VA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.002835267 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.031249402 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.269506023 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.716347049 +VA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,5.144930906 +VA,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.01245029 +VA,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,69.02311537 +VA,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,3278.460007 +VA,Sulfur Dioxide,2A6_Other-minerals,,TON,2943.002032 +VA,Sulfur Dioxide,2B_Chemicals-other,,TON,295.726691 +VA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,4874.026179 +VA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.091759 +VA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1358.635625 +VA,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,0.5209995 +VA,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,598.6893637 +VA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,15.8682 +VA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,115.9783998 +VA,Sulfur Dioxide,5C_Incineration,,TON,570.9306581 +VA,Sulfur Dioxide,5C_Incineration,biomass,TON,4.325647975 +VA,Sulfur Dioxide,5C_Open-burning-dump,,TON,0.091905 +VA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,332.8766719 +VA,Sulfur Dioxide,5C_Open-burning-residential,,TON,98.85468982 +VA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,5.548563555 +VA,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.00576 +VA,Volatile Organic Compounds,11C_Other-natural,,TON,711336.9093 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,3.77 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,34.124981 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,65.10809365 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,113.0274055 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,3.28803968 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.0077987 +VA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,511.2208875 +VA,Volatile Organic Compounds,1A1b_Pet-refining,Other_Fuel,TON,268.8491879 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,105.0155211 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,269.6014836 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,27.84854753 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,15.01040386 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,517.6161991 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,coal_coke,TON,0.003184267 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,22.58400686 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,14.7303871 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.286523732 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.013268605 +VA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,314.1751369 +VA,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,3.6424363 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,1067.12132 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,575.2546797 +VA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.119767935 +VA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,6545.546207 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,869.7720798 +VA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,41779.75307 +VA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,267.7236954 +VA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4148.945659 +VA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,301.5883425 +VA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,38.95466516 +VA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,24.65916871 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,974.3459104 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,108.7361882 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,461.8976706 +VA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,248.0733123 +VA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1016.281362 +VA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,466.0688449 +VA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.662184495 +VA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,779.605318 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,24.22466639 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,29.7221736 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,120.5379715 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.336807803 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.132458688 +VA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,266.7796761 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,90.88077619 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1072.332872 +VA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.36411049 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,82.40507177 +VA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,11642.64882 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,9982.947444 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,25.63377562 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.604599973 +VA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,241.4479289 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,141.0086774 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,115.5851659 +VA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.607730189 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.68206994 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2304.042308 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,41.06723853 +VA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,7838.652431 +VA,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,0 +VA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,589.7856394 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,460.850855 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,968.3470693 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,6365.59013 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,14756.8309 +VA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,1382.762133 +VA,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,8481.632066 +VA,Volatile Organic Compounds,2A2_Lime-production,,TON,26.99648789 +VA,Volatile Organic Compounds,2A6_Other-minerals,,TON,554.8603731 +VA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1.87453868 +VA,Volatile Organic Compounds,2B_Chemicals-other,,TON,927.1907547 +VA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,182.924715 +VA,Volatile Organic Compounds,2C7_Other-metal,,TON,38.40254 +VA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,34909.36622 +VA,Volatile Organic Compounds,2D3d_Coating-application,,TON,20611.10702 +VA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4046.740896 +VA,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,41.02439952 +VA,Volatile Organic Compounds,2D3h_Printing,,TON,1096.480425 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,469.5955896 +VA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,6943.945768 +VA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,2739.480614 +VA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,2150.143744 +VA,Volatile Organic Compounds,2H3_Other-industrial-processes,,TON,2074.977915 +VA,Volatile Organic Compounds,2I_Wood-processing,,TON,31.664779 +VA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,402.4838497 +VA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,397.3002147 +VA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,23.76793484 +VA,Volatile Organic Compounds,3B3_Manure-swine,,TON,259.3912352 +VA,Volatile Organic Compounds,3B4_Manure-other,,TON,97.28821459 +VA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,1171.150643 +VA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,21.76947243 +VA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,1978.30719 +VA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,161.066 +VA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,28.90473896 +VA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1284.91527 +VA,Volatile Organic Compounds,5C_Incineration,,TON,1367.227887 +VA,Volatile Organic Compounds,5C_Incineration,biomass,TON,18.99527841 +VA,Volatile Organic Compounds,5C_Open-burning-dump,,TON,2.75715 +VA,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,0.26 +VA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,2265.967829 +VA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,618.3274425 +VA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,204.4207614 +VA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,133.076434 +VA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,42.8298519 +VA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,140.79 +VA,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,25.45029 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.018531023 +VI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.001173565 +VI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.33998095 +VI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.01073428 +VI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,0.058729164 +VI,Ammonia,1A3bii_Road-LDV,light_oil,TON,13.37170276 +VI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.028822114 +VI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.660934693 +VI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.037231157 +VI,Ammonia,1A3biii_Road-bus,light_oil,TON,0.008195564 +VI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000965846 +VI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.00327508 +VI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,7.1008E-05 +VI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.914840132 +VI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.116817371 +VI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.32243761 +VI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.238882794 +VI,Ammonia,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,6.81549E-05 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0.032073447 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.083139477 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.009192345 +VI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.019733738 +VI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.01156339 +VI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.15446827 +VI,Ammonia,1A4bi_Residential-stationary,biomass,TON,2.818241729 +VI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.001636181 +VI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.000788873 +VI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,0.140743056 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.000690165 +VI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,8.99684E-06 +VI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.000467316 +VI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.016286717 +VI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.014165657 +VI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.09964665 +VI,Ammonia,5D1_Wastewater-domestic,,TON,0 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2283.49633 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,713.7784203 +VI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,41.519786 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,41879.623 +VI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,880.412052 +VI,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,66186.21 +VI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2345.45573 +VI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,195329.26 +VI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,953.6674 +VI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,11931.42555 +VI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,2380.797784 +VI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,221.2031501 +VI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,37.91154 +VI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,237.281979 +VI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.9500097 +VI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,61395.1997 +VI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,3074.841342 +VI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2670.0813 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1130.95658 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,1608.938976 +VI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,22.548165 +VI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,1423.325316 +VI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,11590.65103 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,84.967322 +VI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.67155666 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,57.331543 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1173.879273 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1744.4549 +VI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,7219.0696 +VI,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,681302.5823 +VI,Carbon Monoxide,11C_Other-natural,,TON,12.609083 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,4.88255054 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,67.78285622 +VI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.66560827 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,91.675415 +VI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,185.752443 +VI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1250.952692 +VI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,20.0640636 +VI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,2965.055176 +VI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.4271901 +VI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,199.9745273 +VI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,4.923917453 +VI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,10.65349617 +VI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.204915444 +VI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.24766155 +VI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.0893177 +VI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,37.0187119 +VI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,47.13164426 +VI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,108.595658 +VI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,372.5107772 +VI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.00300045 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,3.8488134 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.2524814 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,4.1294538 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,351.0914365 +VI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.15609976 +VI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,4.11093562 +VI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,2646.582894 +VI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,366.1209444 +VI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,0.008180907 +VI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.003944366 +VI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1.19797835 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.30368862 +VI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.24093355 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.39628655 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,249.6823261 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.4778574 +VI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,796.61179 +VI,Carbon Monoxide,2H2_Food-and-beverage,,TON,1.31774863 +VI,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.090787391 +VI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,141.180559 +VI,Carbon Monoxide,5C_Open-burning-residential,,TON,34.719925 +VI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,3.487751 +VI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.065793074 +VI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.118135069 +VI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.276583943 +VI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,0.79861027 +VI,Methane,1A2g_Construction_and_Mining,light_oil,TON,0.626676286 +VI,Methane,1A3bii_Road-LDV,diesel_oil,TON,0.243578345 +VI,Methane,1A3bii_Road-LDV,light_oil,TON,7.257167793 +VI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.06842011 +VI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.655360229 +VI,Methane,1A3biii_Road-bus,diesel_oil,TON,0.055981944 +VI,Methane,1A3biii_Road-bus,light_oil,TON,0.031432124 +VI,Methane,1A3biii_Road-bus,natural_gas,TON,0.168013697 +VI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.00502579 +VI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.000119847 +VI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.61782508 +VI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,0.076403273 +VI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.22223926 +VI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.036192555 +VI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,1.046904499 +VI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.83602333 +VI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.048188714 +VI,Methane,1A4bi_Residential-mobile,light_oil,TON,8.945089815 +VI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.001975602 +VI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.00093932 +VI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002400602 +VI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,1.414980558 +VI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.043757302 +VI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,7.0818535 +VI,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,35.94637802 +VI,Nitrogen Oxides,11C_Other-natural,,TON,0.62076253 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.33393936 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.373276319 +VI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.108792524 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,186.013078 +VI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,2.083227978 +VI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,181.9686304 +VI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,3.58776676 +VI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,257.0828315 +VI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.07772975 +VI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.21649967 +VI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,10.56469889 +VI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,1.074334473 +VI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.101994501 +VI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.70641518 +VI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,0.007612343 +VI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,101.4345718 +VI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,3.788931647 +VI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.4632701 +VI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2798.333607 +VI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.03200801 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,1.41123171 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,16.9672394 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,8.09684 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.632262462 +VI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.30303877 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,10.47198142 +VI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,20.32517467 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,6.055006776 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,0.02945127 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0.014199716 +VI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,3.92033713 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.63179006 +VI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.002130872 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.4380374 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,2.157971828 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,17.892064 +VI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,48.564164 +VI,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,0.109684313 +VI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,3.4267125 +VI,Nitrogen Oxides,5C_Open-burning-residential,,TON,2.4508175 +VI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,0.19307192 +VI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.006542343 +VI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,8.233870202 +VI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.003767381 +VI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.637753275 +VI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.005055188 +VI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.009240892 +VI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.002743542 +VI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.000311905 +VI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.000105919 +VI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.08366772 +VI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.071983352 +VI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.021790969 +VI,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,5.867604115 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,1301.3979 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,3.2073447 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.033934481 +VI,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,47.90591492 +VI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.001767076 +VI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.000851204 +VI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.006001664 +VI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,132.4671788 +VI,PM10 Filterable,2A6_Other-minerals,,TON,66.177479 +VI,PM10 Filterable,2H2_Food-and-beverage,,TON,0.261986104 +VI,PM10 Filterable,5C_Incineration,Other_Fuel,TON,0.093524358 +VI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,17.4762341 +VI,PM10 Filterable,5C_Open-burning-residential,,TON,13.104035 +VI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,1.183344 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.718888728 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.199086559 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.004972116 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,15.0656257 +VI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.371995199 +VI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,11.47017005 +VI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,1301.3979 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.283889454 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,19.73208523 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.133288509 +VI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,1.10308925 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,0.925628136 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.030890869 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.005373494 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.065784836 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.000253958 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,10.75809929 +VI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.314317857 +VI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.29255578 +VI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,68.20427213 +VI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.00384901 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,3.3163936 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.088229652 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.68657908 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.416952016 +VI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.002588262 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.687136724 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,10.79982779 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,49.91093169 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.003894112 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.001877713 +VI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.015545465 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.053441372 +VI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.98779E-05 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.058444146 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.932001181 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.38826418 +VI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,2.48993023 +VI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,132.4671788 +VI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,66.177479 +VI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3.495963255 +VI,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.093524358 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,17.4762341 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,13.104035 +VI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,1.183344 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,184.495698 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,2.7583172 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.018663965 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,46.81202007 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.001358031 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.000654473 +VI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.003300916 +VI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,13.24671788 +VI,PM2.5 Filterable,2A6_Other-minerals,,TON,8.2721849 +VI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,0.008965978 +VI,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,0.062301611 +VI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,15.9342131 +VI,PM2.5 Filterable,5C_Open-burning-residential,,TON,12.000537 +VI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,0.91242058 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.696968021 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.188160693 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.004972116 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,14.6136547 +VI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,1.262959012 +VI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,10.91981914 +VI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,184.495698 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,0.137393194 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,5.657727061 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.082137498 +VI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.32000168 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,0.645882277 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.010335313 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.001396653 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.041246434 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.000119875 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.44121528 +VI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.066660979 +VI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.169880429 +VI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,64.36842259 +VI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.00354111 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,2.8673662 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.072959137 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.66598171 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,0.384510084 +VI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.002588262 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,0.666522578 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,9.936334231 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,48.81703684 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.003485065 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.001680982 +VI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,0.012844715 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.051838114 +VI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,7.34877E-05 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.056690815 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,0.857468302 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.37661611 +VI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,2.29073642 +VI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,13.24671788 +VI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,8.2721849 +VI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3.242942758 +VI,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.062301611 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,15.9342131 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,12.000537 +VI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,0.91242058 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.027718877 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.265045255 +VI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.000232716 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,0.32407627 +VI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.005242661 +VI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,30.03225996 +VI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.019951145 +VI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,1.793503368 +VI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.008106627 +VI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,0.109847954 +VI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.020562826 +VI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.002031026 +VI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.000200722 +VI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.002030181 +VI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,2.71482E-05 +VI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.517625503 +VI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.028298143 +VI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.025044352 +VI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,79.66643305 +VI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.02902542 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.160367233 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.101803443 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.009528282 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.00964231 +VI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.000126123 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.012320122 +VI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.070353973 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,0.907198727 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,0.011616887 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.000133359 +VI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,0.017946131 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.000752113 +VI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.08015E-06 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.000499759 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.007118994 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.016036351 +VI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.043818125 +VI,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.066960843 +VI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,1.42208573 +VI,Sulfur Dioxide,5C_Open-burning-residential,,TON,0.40846962 +VI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.02366688 +VI,Volatile Organic Compounds,11C_Other-natural,,TON,104.85985 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.310957315 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.870086786 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.059787114 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0 +VI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,0 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,17.6489224 +VI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,12.54404015 +VI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,113.0278851 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1.30663731 +VI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,334.7162414 +VI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.49546569 +VI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,18.34636576 +VI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,1.030046631 +VI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,0.860227106 +VI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.016077208 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.045533374 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,0.003781934 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.2567955 +VI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,2.203417326 +VI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,12.3094366 +VI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,160.4479953 +VI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),heavy_oil,TON,0.00139608 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.109049724 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +VI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.93319817 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.95068878 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,12.44546226 +VI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.180716758 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,0.973892662 +VI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,159.2747275 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,52.69884745 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.001166597 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.000553185 +VI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,0.16451601 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.052617158 +VI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.009853932 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.103848179 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,33.84186941 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.9028888 +VI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,230.891351 +VI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,37.20899474 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,5.820782712 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,92.08285946 +VI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,72.25773515 +VI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.008059285 +VI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,476.0796889 +VI,Volatile Organic Compounds,2D3d_Coating-application,,TON,148.3062062 +VI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,1.53969355 +VI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,8.8955376 +VI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,0.472662863 +VI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,0.009364737 +VI,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.00921225 +VI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,9.6804628 +VI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,2.5549417 +VI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,0.87193764 +VI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,0 +VT,Ammonia,1A1a_Public-Electricity,biomass,TON,14.25874 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.29945985 +VT,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.084756735 +VT,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0.118858893 +VT,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.825841485 +VT,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.233402907 +VT,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.096904951 +VT,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,2.222900073 +VT,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,6.93098524 +VT,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.202848411 +VT,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,2.374125312 +VT,Ammonia,1A3bii_Road-LDV,light_oil,TON,177.149693 +VT,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.408401839 +VT,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,7.24264621 +VT,Ammonia,1A3biii_Road-bus,diesel_oil,TON,1.032011891 +VT,Ammonia,1A3biii_Road-bus,light_oil,TON,0.24832848 +VT,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.071153461 +VT,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3.558228656 +VT,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.247032879 +VT,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3.077655978 +VT,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.528070408 +VT,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.93286471 +VT,Ammonia,1A3c_Rail,diesel_oil,TON,0.233230563 +VT,Ammonia,1A3c_Rail,light_oil,TON,0.00043389 +VT,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.003039934 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,3.733309939 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.218239223 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.316513217 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.09995155 +VT,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.358962965 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.098625269 +VT,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.226541322 +VT,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.047423479 +VT,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.740203338 +VT,Ammonia,1A4bi_Residential-stationary,biomass,TON,255.122227 +VT,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,36.4979998 +VT,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Ammonia,1A4bi_Residential-stationary,light_oil,TON,1.74149993 +VT,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,36.50082358 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.530434188 +VT,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.025812934 +VT,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002222859 +VT,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,1.050807927 +VT,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.056057035 +VT,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.368191362 +VT,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,1.887 +VT,Ammonia,3B1a_Cattle-dairy,,TON,4487.65113 +VT,Ammonia,3B1b_Cattle-non-dairy,,TON,111.85447 +VT,Ammonia,3B2_Manure-sheep,,TON,50.6975967 +VT,Ammonia,3B3_Manure-swine,,TON,28.98550414 +VT,Ammonia,3B4_Manure-other,,TON,154.2082133 +VT,Ammonia,3B4_Manure-poultry,,TON,39.58537759 +VT,Ammonia,3B4d_Manure-goats,,TON,102.8971836 +VT,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,906.7 +VT,Ammonia,5B_Compost-biogas,Other_Fuel,TON,29.2685 +VT,Ammonia,5D1_Wastewater-domestic,,TON,1.408108 +VT,Carbon Dioxide,1A1a_Public-Electricity,biomass,TON,416170.2 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,36905.93017 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,50156.08395 +VT,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2893.0731 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,854075.375 +VT,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,16479.02359 +VT,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,39104.57623 +VT,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,76623.03887 +VT,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,2878042.101 +VT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12858.2195 +VT,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,129759.8826 +VT,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,62203.90153 +VT,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,8470.72158 +VT,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,2628.82688 +VT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,213650.4844 +VT,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,5773.073831 +VT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,187396.1293 +VT,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,13487.99389 +VT,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,48409.5046 +VT,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,546.928959 +VT,Carbon Dioxide,1A3c_Rail,light_oil,TON,33.97338757 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,12131.88533 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,18481.90471 +VT,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,786.3962174 +VT,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,5837.354609 +VT,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,55260.15405 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,65317.1412 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1853.514541 +VT,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,128.170203 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,272.605152 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,73400.90583 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6903.11988 +VT,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,26794.13354 +VT,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,101665.3078 +VT,Carbon Monoxide,11C_Other-natural,,TON,11941.7588 +VT,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,832.29 +VT,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,0.1 +VT,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1.90725 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,52.97007786 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1109.331256 +VT,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,43.11481926 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,98.9774043 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,18.06528385 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.468768015 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.606599826 +VT,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,65.91112 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,1701.501537 +VT,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3297.386864 +VT,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,997.5712601 +VT,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,543.7703497 +VT,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,31430.28991 +VT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,72.7555738 +VT,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1484.489419 +VT,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,108.5106286 +VT,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,221.8904624 +VT,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,13.05710256 +VT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,195.0519543 +VT,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,151.7578379 +VT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,211.8067606 +VT,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,393.7637468 +VT,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1935.22872 +VT,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,76.08093626 +VT,Carbon Monoxide,1A3c_Rail,light_oil,TON,7.432724186 +VT,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.89204196 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,447.9971047 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,269.6642177 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.978207824 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.624697218 +VT,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,394.2089727 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,46.48865803 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3780.981517 +VT,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,18.56192891 +VT,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,16.83502064 +VT,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,12411.26747 +VT,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,37920.43975 +VT,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,182.489993 +VT,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,8.7075002 +VT,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,185.6505966 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,194.606452 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,485.6999689 +VT,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.7203404 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.0214648 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,7151.277283 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,13.62550542 +VT,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,2823.257201 +VT,Carbon Monoxide,2D3d_Coating-application,,TON,0 +VT,Carbon Monoxide,2H2_Food-and-beverage,,TON,107.5191196 +VT,Carbon Monoxide,5C_Incineration,Other_Fuel,TON,0.503119126 +VT,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,3022.0963 +VT,Carbon Monoxide,5C_Open-burning-residential,,TON,817.95254 +VT,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,41.083251 +VT,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.761798556 +VT,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.328514385 +VT,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,17.92659632 +VT,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,20.12818797 +VT,Methane,1A2g_Construction_and_Mining,light_oil,TON,11.8637016 +VT,Methane,1A3bii_Road-LDV,diesel_oil,TON,8.48799851 +VT,Methane,1A3bii_Road-LDV,light_oil,TON,110.3772615 +VT,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.41549622 +VT,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6.12097192 +VT,Methane,1A3biii_Road-bus,diesel_oil,TON,2.443720607 +VT,Methane,1A3biii_Road-bus,light_oil,TON,0.365375232 +VT,Methane,1A3biii_Road-bus,natural_gas,TON,9.20450521 +VT,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,13.70363451 +VT,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.267025149 +VT,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.5645062 +VT,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,0.757092897 +VT,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.95506294 +VT,Methane,1A3c_Rail,diesel_oil,TON,0.024456348 +VT,Methane,1A3c_Rail,light_oil,TON,0.022812004 +VT,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.359074429 +VT,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,13.02021959 +VT,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,12.89813211 +VT,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.204372127 +VT,Methane,1A4bi_Residential-mobile,light_oil,TON,48.80779897 +VT,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.783218644 +VT,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.981640733 +VT,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.681064502 +VT,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.010880111 +VT,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,60.58520627 +VT,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.201049989 +VT,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,25.93575092 +VT,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,2564.957606 +VT,Nitrogen Oxides,11C_Other-natural,,TON,1273.1403 +VT,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,221.83 +VT,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,0.25 +VT,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,0.5859 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,146.5367782 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,113.5210882 +VT,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,7.273387032 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,39.82936487 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,80.93246353 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,16.1919297 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,2.427657822 +VT,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,78.4656257 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,3408.833276 +VT,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,40.19663679 +VT,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,166.5349236 +VT,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,184.5576025 +VT,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,3019.45137 +VT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,34.2928526 +VT,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,148.7182615 +VT,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,261.2710799 +VT,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,19.92592457 +VT,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,6.76485218 +VT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,636.3932858 +VT,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,13.7409503 +VT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,665.0324166 +VT,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,29.79193552 +VT,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,101.234629 +VT,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,583.4075347 +VT,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.086159141 +VT,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,5.93062931 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,164.2656193 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1225.352464 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,21.76028556 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.498788862 +VT,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,550.0477486 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,89.5553503 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,56.26432237 +VT,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,4.843595625 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,43.30031829 +VT,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,124.0031021 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,764.385756 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,656.964005 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,31.3470017 +VT,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,572.108779 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,409.8791732 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,7.201118677 +VT,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.294446028 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,2.1825038 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,162.1928203 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,67.8226184 +VT,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,187.0111772 +VT,Nitrogen Oxides,2D3d_Coating-application,,TON,0 +VT,Nitrogen Oxides,5C_Incineration,Other_Fuel,TON,0.607840729 +VT,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,73.3518491 +VT,Nitrogen Oxides,5C_Open-burning-residential,,TON,57.7378272 +VT,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.27425142 +VT,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.222439329 +VT,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,69.0867522 +VT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.044182721 +VT,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3.8019497 +VT,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.129144965 +VT,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.197135138 +VT,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.166538451 +VT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,0.270334526 +VT,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.208378715 +VT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.314603001 +VT,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.677287124 +VT,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.457948561 +VT,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,43.67799088 +VT,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,2.659575 +VT,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +VT,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.0038038 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,41.33685905 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,5.316355142 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.969276771 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.120816563 +VT,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.398851234 +VT,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,30737.03886 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,373.3309939 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,83.43344512 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.638177356 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.134934601 +VT,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.958140742 +VT,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,4619.555188 +VT,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,39.4178423 +VT,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.87909992 +VT,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.929699977 +VT,PM10 Filterable,2A5b_Construction-and-demolition,,TON,962.0489163 +VT,PM10 Filterable,2A6_Other-minerals,,TON,892.032058 +VT,PM10 Filterable,2D3d_Coating-application,,TON,0 +VT,PM10 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,62.9 +VT,PM10 Filterable,2H2_Food-and-beverage,,TON,32.70397677 +VT,PM10 Filterable,3B1a_Cattle-dairy,,TON,971.124 +VT,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,397.093591 +VT,PM10 Filterable,3Dc_Other-farm,,TON,2119.431085 +VT,PM10 Filterable,5C_Incineration,Other_Fuel,TON,0.518286689 +VT,PM10 Filterable,5C_Open-burning-land-clearing,,TON,374.094455 +VT,PM10 Filterable,5C_Open-burning-residential,,TON,308.712647 +VT,PM10 Filterable,5C_Open-burning-yard-waste,,TON,13.938961 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,2.75 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.002975 +VT,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.01001 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.511708519 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.51872344 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.348512718 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,42.99260298 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,6.726107701 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.410157612 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.278129799 +VT,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1.160931284 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,267.4455621 +VT,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.30431577 +VT,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,20.10972337 +VT,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,30737.03886 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,11.58399883 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,297.6390448 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.28149325 +VT,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,13.32929669 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,16.57916644 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.312874245 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.359441448 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,37.82010609 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.71574812 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,37.90330541 +VT,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.542300656 +VT,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.35486072 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,17.80593571 +VT,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.004324461 +VT,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.16311024 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,386.0712032 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,96.2773374 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,3.232033014 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.292393901 +VT,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.453802961 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.962292551 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.82859348 +VT,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.099546152 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.802629489 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,53.48804336 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4842.073663 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,86.865244 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,4.14520011 +VT,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,2.40998499 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,33.40317567 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,5.398253073 +VT,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015686391 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.298242614 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,73.31124952 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.48107024 +VT,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,8.447182355 +VT,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,962.0489163 +VT,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,892.032058 +VT,PM10 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,38.292 +VT,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,62.9 +VT,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,296.7931813 +VT,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,971.124 +VT,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,397.093591 +VT,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,2119.431085 +VT,PM10 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.518286689 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,374.094455 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,308.712647 +VT,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.938961 +VT,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,1.6695745 +VT,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,0 +VT,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,0.0038038 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,29.14043138 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.340829397 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.280363153 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.030204141 +VT,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,0.336332185 +VT,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3289.877084 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,321.0645753 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,81.29983991 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,1.718310863 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.103699741 +VT,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.508709213 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,4609.86597 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,30.2933396 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,1.44479994 +VT,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.511335012 +VT,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,96.20489163 +VT,PM2.5 Filterable,2A6_Other-minerals,,TON,111.504024 +VT,PM2.5 Filterable,2D3d_Coating-application,,TON,0 +VT,PM2.5 Filterable,2H1_Pulp-and-paper,Other_Fuel,TON,44.7 +VT,PM2.5 Filterable,2H2_Food-and-beverage,,TON,11.26996108 +VT,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,201.847322 +VT,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,82.5355398 +VT,PM2.5 Filterable,3Dc_Other-farm,,TON,422.7250403 +VT,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,0.34525866 +VT,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,341.086134 +VT,PM2.5 Filterable,5C_Open-burning-residential,,TON,282.715796 +VT,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,10.74767266 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,1.76 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,0.002975 +VT,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,0.01001 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,8.25625026 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,5.440154812 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.348512718 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,30.79617551 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,5.652012922 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,1.721243592 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.187517386 +VT,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,1.098412185 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,259.4222359 +VT,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.21274509 +VT,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,17.17802308 +VT,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3289.877084 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,7.450125477 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,107.1585393 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.5698873 +VT,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.67380421 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,10.55059395 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,0.532146073 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.107869996 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,23.34002925 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.297592661 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,24.67926928 +VT,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,0.581226482 +VT,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.33394053 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,17.27175716 +VT,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.003987664 +VT,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.15794533 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,333.757836 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,94.13202054 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,2.311773247 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.262372839 +VT,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.004073061 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,7.723425604 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,4.452932812 +VT,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.099546152 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,2.718550818 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,49.21135498 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,4832.384445 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,77.740745 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,3.71090009 +VT,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,1.991619949 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,32.40107667 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,4.966395522 +VT,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.015686391 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.289295294 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,67.446499 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.436638439 +VT,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,7.771406572 +VT,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,96.20489163 +VT,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,111.504024 +VT,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,Other_Fuel,TON,38.292 +VT,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0 +VT,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,Other_Fuel,TON,44.7 +VT,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,275.3591733 +VT,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,201.847322 +VT,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,82.5355398 +VT,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,422.7250403 +VT,PM2.5 Primary (Filt + Cond),5C_Incineration,Other_Fuel,TON,0.34525866 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,341.086134 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,282.715796 +VT,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,10.74767266 +VT,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,2.02 +VT,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0 +VT,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.001890025 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.283956963 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.530547716 +VT,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.016216141 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,3.907151047 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.666004535 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,23.20793924 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.893539137 +VT,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.47079377 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,6.75755152 +VT,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.252873551 +VT,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,24.00169635 +VT,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,0.656966982 +VT,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,60.4462311 +VT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.110274311 +VT,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2.724646511 +VT,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.531780864 +VT,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.177795686 +VT,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.013918259 +VT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.808488285 +VT,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.121146663 +VT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.592840186 +VT,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.283039913 +VT,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.973093212 +VT,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,0.262591795 +VT,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.000545754 +VT,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.04345584 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,18.6665465 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,74.72041075 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,31.05786091 +VT,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2.867672229 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.104005963 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.28802551 +VT,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.004404896 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.051005029 +VT,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.905169332 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,172.3613192 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,259.135809 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.294399514 +VT,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,2.7818651 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.552876141 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.030422921 +VT,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.00071846 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002383556 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.20279721 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.063458626 +VT,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.440317763 +VT,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +VT,Sulfur Dioxide,5C_Incineration,Other_Fuel,TON,0.371078779 +VT,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,30.441019 +VT,Sulfur Dioxide,5C_Open-burning-residential,,TON,9.6229714 +VT,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.278779238 +VT,Volatile Organic Compounds,11C_Other-natural,,TON,67474.122 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,23.64 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,0.03 +VT,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,0.0143 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,9.655403809 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,31.04063019 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.875058585 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,6.04185229 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,4.521482751 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.082251013 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.023911611 +VT,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,4.81060964 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,259.3423357 +VT,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,221.0446311 +VT,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,83.13337464 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,61.15185439 +VT,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,2479.935251 +VT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,9.6907857 +VT,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,110.0281921 +VT,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,23.26777364 +VT,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,10.64447368 +VT,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.979062189 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,41.90235493 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,5.637106862 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,41.2141332 +VT,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,14.04840757 +VT,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,235.681766 +VT,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,28.06730236 +VT,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.167341465 +VT,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,0.19962922 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,12.69325211 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,76.24699127 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0.447074941 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.042479407 +VT,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,25.81342561 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.92839383 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,125.3569272 +VT,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.788091782 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,3.984486673 +VT,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,781.1872224 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,5300.335937 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,26.0230745 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,1.22119991 +VT,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,25.5016362 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,35.5661546 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,48.01180199 +VT,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.14722068 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.52762347 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2517.219672 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.62682305 +VT,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,568.1783417 +VT,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,73.5178715 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,20.27076234 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,946.9656461 +VT,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,146.8143665 +VT,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.126066645 +VT,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2733.679743 +VT,Volatile Organic Compounds,2D3d_Coating-application,,TON,1534.602342 +VT,Volatile Organic Compounds,2D3e_Degreasing,Other_Fuel,TON,426.325331 +VT,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,0.95880005 +VT,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,649.144779 +VT,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +VT,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,106.1003544 +VT,Volatile Organic Compounds,2H1_Pulp-and-paper,Other_Fuel,TON,3.27 +VT,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,38.83780223 +VT,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,359.012075 +VT,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,8.94835752 +VT,Volatile Organic Compounds,3B2_Manure-sheep,,TON,4.05580762 +VT,Volatile Organic Compounds,3B3_Manure-swine,,TON,2.318840309 +VT,Volatile Organic Compounds,3B4_Manure-other,,TON,12.33665714 +VT,Volatile Organic Compounds,3B4_Manure-poultry,,TON,3.166831349 +VT,Volatile Organic Compounds,3B4d_Manure-goats,,TON,8.23177406 +VT,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,76.0714664 +VT,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,207.0968 +VT,Volatile Organic Compounds,5C_Incineration,Other_Fuel,TON,0.051051791 +VT,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,207.2189764 +VT,Volatile Organic Compounds,5C_Open-burning-residential,,TON,60.1908455 +VT,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,10.27081354 +VT,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,7.0822 +WA,Ammonia,1A1a_Public-Electricity,biomass,TON,21.234 +WA,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.06 +WA,Ammonia,1A1a_Public-Electricity,hard_coal,TON,17.82 +WA,Ammonia,1A1a_Public-Electricity,natural_gas,TON,50.111 +WA,Ammonia,1A1b_Pet-refining,natural_gas,TON,59.088 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.531992923 +WA,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.605765112 +WA,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,36.99777042 +WA,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,2.873642794 +WA,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,1.138971947 +WA,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.079 +WA,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,16.78248994 +WA,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,8.674402499 +WA,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.208320034 +WA,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,35.54456409 +WA,Ammonia,1A3bii_Road-LDV,light_oil,TON,1923.872477 +WA,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,4.34821621 +WA,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,81.03689978 +WA,Ammonia,1A3biii_Road-bus,diesel_oil,TON,5.163751296 +WA,Ammonia,1A3biii_Road-bus,light_oil,TON,3.660209218 +WA,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.295132558 +WA,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,62.31886186 +WA,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.240460679 +WA,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,62.13996299 +WA,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,15.87320644 +WA,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.81112917 +WA,Ammonia,1A3c_Rail,diesel_oil,TON,9.608844512 +WA,Ammonia,1A3c_Rail,light_oil,TON,0.003286126 +WA,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,8.922410667 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.789522982 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.004887198 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.052409945 +WA,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,14.44779459 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.319188932 +WA,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.796903638 +WA,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.557945738 +WA,Ammonia,1A4bi_Residential-mobile,light_oil,TON,7.728490721 +WA,Ammonia,1A4bi_Residential-stationary,biomass,TON,655.9656992 +WA,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,12.89400074 +WA,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.141750006 +WA,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,912.1315189 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.104615993 +WA,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.188277378 +WA,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.025526455 +WA,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,2.22594346 +WA,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.573739978 +WA,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,3.919350657 +WA,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,Ammonia,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Ammonia,2A1_Cement-production,,TON,4.908 +WA,Ammonia,2A6_Other-minerals,,TON,0 +WA,Ammonia,2B_Chemicals-other,,TON,37.40663 +WA,Ammonia,2C3_Aluminum-production,,TON,0 +WA,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.07 +WA,Ammonia,2D3d_Coating-application,,TON,0 +WA,Ammonia,2D3e_Degreasing,,TON,0 +WA,Ammonia,2H1_Pulp-and-paper,,TON,220.0525 +WA,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,2.427011 +WA,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,32.461605 +WA,Ammonia,2I_Wood-processing,,TON,0 +WA,Ammonia,3B1a_Cattle-dairy,,TON,12599.16406 +WA,Ammonia,3B1b_Cattle-non-dairy,,TON,2699.267748 +WA,Ammonia,3B2_Manure-sheep,,TON,178.2595175 +WA,Ammonia,3B3_Manure-swine,,TON,360.7898668 +WA,Ammonia,3B4_Manure-other,,TON,577.3226382 +WA,Ammonia,3B4_Manure-poultry,,TON,3870.923068 +WA,Ammonia,3B4d_Manure-goats,,TON,150.158627 +WA,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,14134.6 +WA,Ammonia,3F_Ag-res-on-field,,TON,6163.940606 +WA,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,7.24 +WA,Ammonia,5B_Compost-biogas,Other_Fuel,TON,179.5912 +WA,Ammonia,5C_Incineration,biomass,TON,8.38 +WA,Ammonia,5C_Open-burning-land-clearing,,TON,84.535599 +WA,Ammonia,5C_Other-open-burning,,TON,0 +WA,Ammonia,5D1_Wastewater-domestic,,TON,17.18972578 +WA,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.7352157 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,312053.7123 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,364747.0911 +WA,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,21072.1642 +WA,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,135195.1985 +WA,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,49.403706 +WA,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,23657.80941 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1067698.109 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,17112.59318 +WA,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.87713315 +WA,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1378540.393 +WA,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,1183439.568 +WA,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,24660962.52 +WA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,138581.9327 +WA,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1143248.098 +WA,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,285434.9909 +WA,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,103133.8941 +WA,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,11156.01306 +WA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3903153.101 +WA,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,31204.42115 +WA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3167145.738 +WA,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,409873.428 +WA,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,93981.869 +WA,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,4133.35318 +WA,Carbon Dioxide,1A3c_Rail,light_oil,TON,255.5249706 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,162358.3867 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,227740.4215 +WA,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,9992.802874 +WA,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,68674.91534 +WA,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,577131.6701 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1121009.234 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,14142.99849 +WA,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1895.834751 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,3131.83779 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,156914.4531 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,70653.83611 +WA,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,283075.6808 +WA,Carbon Dioxide,2B_Chemicals-other,Other_Fuel,TON,2149.507425 +WA,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,28688308.14 +WA,Carbon Monoxide,11C_Other-natural,,TON,128927.8111 +WA,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,1253.554 +WA,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,10.083537 +WA,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,1389 +WA,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,365.537 +WA,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,1181.85 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,457.5817633 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,8852.257977 +WA,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,304.2438905 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,6441.292648 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,198.4706735 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,189.9337998 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,29.17614906 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,7.694258788 +WA,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1624.820074 +WA,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,2.67 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3863.890224 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,3489.834117 +WA,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.36190802 +WA,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,17426.11248 +WA,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,13403.95053 +WA,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,468345.8285 +WA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1359.276279 +WA,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,25326.22492 +WA,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,678.0498611 +WA,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5744.230259 +WA,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,99.6618109 +WA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3267.281935 +WA,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,489.6699246 +WA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3957.800261 +WA,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,11366.81583 +WA,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3709.554754 +WA,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,3351.881463 +WA,Carbon Monoxide,1A3c_Rail,light_oil,TON,57.04059646 +WA,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,3032.6863 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,900.9702806 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.70107601 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.351633938 +WA,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,2860.092515 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,549.6126264 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,46528.8657 +WA,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,202.6440642 +WA,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,200.4075682 +WA,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,129365.7037 +WA,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,90539.82305 +WA,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,64.46999652 +WA,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0.708750011 +WA,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,1972.100197 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,3476.010669 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,2743.275987 +WA,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,28.01139552 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,21.5383589 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,21364.77939 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,140.9214571 +WA,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,31053.87092 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.16 +WA,Carbon Monoxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Carbon Monoxide,2A1_Cement-production,,TON,969.1165 +WA,Carbon Monoxide,2A6_Other-minerals,,TON,291.9359 +WA,Carbon Monoxide,2B_Chemicals-other,,TON,95.11507 +WA,Carbon Monoxide,2C_Iron-steel-alloy,,TON,405.985 +WA,Carbon Monoxide,2C3_Aluminum-production,,TON,31382.42 +WA,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,7.15 +WA,Carbon Monoxide,2D3d_Coating-application,,TON,0.1796602 +WA,Carbon Monoxide,2H1_Pulp-and-paper,,TON,2450.61 +WA,Carbon Monoxide,2H2_Food-and-beverage,,TON,1383.445747 +WA,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,1.22 +WA,Carbon Monoxide,3Dc_Other-farm,,TON,0.12 +WA,Carbon Monoxide,3F_Ag-res-on-field,,TON,21056.52968 +WA,Carbon Monoxide,5A_Solid-waste-disposal,,TON,54.4256852 +WA,Carbon Monoxide,5C_Incineration,,TON,0 +WA,Carbon Monoxide,5C_Incineration,biomass,TON,31.14973831 +WA,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,679.276965 +WA,Carbon Monoxide,5C_Open-burning-residential,,TON,1147.352173 +WA,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,427.0844178 +WA,Carbon Monoxide,5C_Other-open-burning,,TON,0 +WA,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,5.0985 +WA,Carbon Monoxide,5D2_Wastewater-industrial,biomass,TON,0.037 +WA,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,6.904557358 +WA,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,37.01718685 +WA,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,123.4836919 +WA,Methane,1A2_Industrial_fuel_combustion,biomass,TON,10.25149695 +WA,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.002204623 +WA,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,0.519078485 +WA,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,35.57322096 +WA,Methane,1A2g_Construction_and_Mining,light_oil,TON,12.97561141 +WA,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.210620311 +WA,Methane,1A3bii_Road-LDV,diesel_oil,TON,96.21957056 +WA,Methane,1A3bii_Road-LDV,light_oil,TON,1386.287582 +WA,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.56774559 +WA,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,86.67246084 +WA,Methane,1A3biii_Road-bus,diesel_oil,TON,11.10548532 +WA,Methane,1A3biii_Road-bus,light_oil,TON,14.38270186 +WA,Methane,1A3biii_Road-bus,natural_gas,TON,81.95382322 +WA,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,254.9660874 +WA,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.747214538 +WA,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,164.2289962 +WA,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,20.34637356 +WA,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,9.2097519 +WA,Methane,1A3c_Rail,diesel_oil,TON,0.186966497 +WA,Methane,1A3c_Rail,light_oil,TON,0.171641291 +WA,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,6.030998723 +WA,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,155.6964981 +WA,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,120.1022334 +WA,Methane,1A4bi_Residential-mobile,diesel_oil,TON,2.311285998 +WA,Methane,1A4bi_Residential-mobile,light_oil,TON,505.9969334 +WA,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,40.84211015 +WA,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,10.59901382 +WA,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,10.73435926 +WA,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.130009362 +WA,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,163.0725867 +WA,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.814907403 +WA,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,281.2307769 +WA,Methane,2B_Chemicals-other,Other_Fuel,TON,36.96822078 +WA,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,43042.7949 +WA,Nitrogen Oxides,11C_Other-natural,,TON,18193.05111 +WA,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,743.1725 +WA,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,44.6561 +WA,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,6212 +WA,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,953.1905 +WA,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,4185.48 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1353.278212 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,849.1901711 +WA,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,51.37906081 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,3259.019372 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,926.3787441 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,418.783553 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,526.0076587 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,0.190527986 +WA,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,3194.611658 +WA,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,1.58 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6526.285805 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,56.1470491 +WA,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.054977254 +WA,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,4739.135262 +WA,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,4405.547308 +WA,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,56700.71735 +WA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,562.9244208 +WA,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3077.43799 +WA,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,1669.813684 +WA,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,514.0057246 +WA,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,59.75791089 +WA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11928.01608 +WA,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,48.54173518 +WA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9315.779081 +WA,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,837.7351252 +WA,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,198.4916191 +WA,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,15042.47122 +WA,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.616112135 +WA,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,23458.30686 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,347.670783 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.588549524 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,1.312384263 +WA,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3575.274053 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1065.590675 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,619.0295718 +WA,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,46.72103085 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,515.9755138 +WA,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,1280.835378 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1419.92776 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,232.0920306 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,2.551499899 +WA,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,4812.694206 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,7637.964309 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,57.16038335 +WA,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,4.477445025 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,23.95203394 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,348.2666208 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,720.7916403 +WA,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2168.141601 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0.01 +WA,Nitrogen Oxides,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Nitrogen Oxides,2A1_Cement-production,,TON,1367.889 +WA,Nitrogen Oxides,2A6_Other-minerals,,TON,1013.216 +WA,Nitrogen Oxides,2B_Chemicals-other,,TON,83.5500095 +WA,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,83.9575 +WA,Nitrogen Oxides,2C3_Aluminum-production,,TON,190.17 +WA,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,21.3918 +WA,Nitrogen Oxides,2D3d_Coating-application,,TON,0.2135 +WA,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,2903.19 +WA,Nitrogen Oxides,2H2_Food-and-beverage,,TON,0 +WA,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,2.81 +WA,Nitrogen Oxides,3Dc_Other-farm,,TON,0.14 +WA,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1063.017284 +WA,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,13.91 +WA,Nitrogen Oxides,5C_Incineration,,TON,0.19380326 +WA,Nitrogen Oxides,5C_Incineration,biomass,TON,341.5974213 +WA,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,20.86350746 +WA,Nitrogen Oxides,5C_Open-burning-residential,,TON,80.9895645 +WA,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,23.64217337 +WA,Nitrogen Oxides,5C_Other-open-burning,,TON,0 +WA,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,5.877 +WA,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.728 +WA,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,4.6297083 +WA,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0 +WA,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,0.051588178 +WA,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,4.007341574 +WA,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,1321.536617 +WA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.528732789 +WA,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,77.68292281 +WA,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.667381487 +WA,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,4.593484814 +WA,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.676953651 +WA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.532956353 +WA,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.668383049 +WA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.627529925 +WA,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,20.25931269 +WA,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.103836529 +WA,Nitrous Oxide,2B_Chemicals-other,Other_Fuel,TON,0.004078553 +WA,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,339.1525885 +WA,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,56.359531 +WA,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.054960552 +WA,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,355.4904849 +WA,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,69.519655 +WA,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,195.4108367 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1641.079451 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,63.06003385 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,455.8269909 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,90.56962755 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.005502876 +WA,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,69.42160353 +WA,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,63382.85 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,760.0262423 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.175889779 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.078006961 +WA,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,13.51838302 +WA,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,10489.33514 +WA,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,13.92551965 +WA,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.15294999 +WA,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,9.862399985 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Filterable,2A1_Cement-production,,TON,36.405406 +WA,PM10 Filterable,2A2_Lime-production,,TON,9.3077983 +WA,PM10 Filterable,2A5b_Construction-and-demolition,,TON,35624.39537 +WA,PM10 Filterable,2A6_Other-minerals,,TON,4158.357176 +WA,PM10 Filterable,2B_Chemicals-other,,TON,30.86768747 +WA,PM10 Filterable,2C_Iron-steel-alloy,,TON,7.84 +WA,PM10 Filterable,2C3_Aluminum-production,,TON,563.9022654 +WA,PM10 Filterable,2C7_Other-metal,,TON,28.93678326 +WA,PM10 Filterable,2D3d_Coating-application,,TON,5.975 +WA,PM10 Filterable,2H1_Pulp-and-paper,,TON,1015.699611 +WA,PM10 Filterable,2H2_Food-and-beverage,,TON,274.9017819 +WA,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,32.92852 +WA,PM10 Filterable,2I_Wood-processing,,TON,28.87 +WA,PM10 Filterable,3B1a_Cattle-dairy,,TON,1665.174712 +WA,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,8803.08149 +WA,PM10 Filterable,3Dc_Other-farm,,TON,70180.05804 +WA,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,94.7836254 +WA,PM10 Filterable,5C_Incineration,,TON,0.019851082 +WA,PM10 Filterable,5C_Incineration,biomass,TON,67.27532282 +WA,PM10 Filterable,5C_Open-burning-land-clearing,,TON,81.47 +WA,PM10 Filterable,5C_Open-burning-residential,,TON,433.0350377 +WA,PM10 Filterable,5C_Open-burning-yard-waste,,TON,144.9036436 +WA,PM10 Filterable,5C_Other-open-burning,,TON,0 +WA,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.099902 +WA,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,0.3542274 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,59.488 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.27917 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,382.89 +WA,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,127.3548 +WA,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,328.05 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,70.52884959 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,42.46904073 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.5165108 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1732.161521 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,67.34151112 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,495.3396577 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,102.7953072 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.010005383 +WA,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,210.9856092 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,583.2041844 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,26.51199832 +WA,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000501035 +WA,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,316.1903876 +WA,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,63383.20279 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,246.7441842 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,3135.699896 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.375166 +WA,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,136.3355987 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,107.0751538 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,21.68178484 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,2.018521098 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,696.9453535 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.313713657 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,768.7961475 +WA,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,53.96738101 +WA,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,10.38011584 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,387.5705738 +WA,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.03253095 +WA,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,489.6630962 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,782.7044555 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.268293472 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.168241987 +WA,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,30.9951671 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,86.68500033 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,59.56557354 +WA,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.265889559 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,33.73917635 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,556.8534217 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10977.53356 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,30.68771594 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.337400043 +WA,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,25.6327444 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,586.9897498 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.965758536 +WA,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.2331626 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.16963982 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,152.785036 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.76520259 +WA,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,103.6327036 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,38.2845 +WA,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,9.3905 +WA,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,35624.39537 +WA,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,4203.697478 +WA,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,42.28276 +WA,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,13.31396922 +WA,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,638.11328 +WA,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,28.938555 +WA,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,6.40099115 +WA,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1371.28379 +WA,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3600.44819 +WA,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,32.92852 +WA,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,28.87 +WA,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,1665.174712 +WA,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,8803.08149 +WA,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,70180.11796 +WA,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2769.021286 +WA,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,97.82183 +WA,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.021683348 +WA,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,73.64792655 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,81.65702725 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,433.0350377 +WA,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,144.9036436 +WA,PM10 Primary (Filt + Cond),5C_Other-open-burning,,TON,0 +WA,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.556 +WA,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.387 +WA,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,39.703126 +WA,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.021618702 +WA,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,146.6605349 +WA,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,69.5025862 +WA,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,181.0238157 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,1431.689383 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,57.43477213 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,53.16336551 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,90.54161002 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.005501173 +WA,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,66.0623276 +WA,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,9593.8 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,660.9773368 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.173981305 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.060396126 +WA,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,10.59343224 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,10410.97301 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,10.70202011 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.117600002 +WA,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,5.424320361 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Filterable,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Filterable,2A1_Cement-production,,TON,29.170406 +WA,PM2.5 Filterable,2A2_Lime-production,,TON,3.6052983 +WA,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,3562.439337 +WA,PM2.5 Filterable,2A6_Other-minerals,,TON,623.3813242 +WA,PM2.5 Filterable,2B_Chemicals-other,,TON,28.22260717 +WA,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,5.4 +WA,PM2.5 Filterable,2C3_Aluminum-production,,TON,560.5922654 +WA,PM2.5 Filterable,2C7_Other-metal,,TON,14.96670824 +WA,PM2.5 Filterable,2D3d_Coating-application,,TON,2.778617 +WA,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,815.6713235 +WA,PM2.5 Filterable,2H2_Food-and-beverage,,TON,19.43369125 +WA,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,27.7009046 +WA,PM2.5 Filterable,2I_Wood-processing,,TON,10.5 +WA,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,346.1052335 +WA,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,1829.712673 +WA,PM2.5 Filterable,3Dc_Other-farm,,TON,13991.46076 +WA,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,23.0963454 +WA,PM2.5 Filterable,5C_Incineration,,TON,0.019353539 +WA,PM2.5 Filterable,5C_Incineration,biomass,TON,61.96648438 +WA,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,76.81924375 +WA,PM2.5 Filterable,5C_Open-burning-residential,,TON,396.5689305 +WA,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,111.7283346 +WA,PM2.5 Filterable,5C_Other-open-burning,,TON,0 +WA,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,0.099902 +WA,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,0.3342274 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,42.831594 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.2458282 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,174.06 +WA,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,127.3378312 +WA,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,313.662979 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,68.40907096 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,41.6950712 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,2.5165108 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,1522.917343 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,61.65794493 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,92.66227131 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,102.7687068 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.010002794 +WA,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,201.5923651 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,565.707993 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,24.40558658 +WA,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000501035 +WA,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,272.8586247 +WA,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,9594.185681 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,178.8818407 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,1319.606776 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,27.93373835 +WA,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,59.49851334 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,77.37454043 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,11.9980229 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.977800014 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,418.7475567 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.029911871 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,453.463428 +WA,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,16.86891117 +WA,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,6.338329249 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,375.9434436 +WA,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.029983418 +WA,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,463.5801112 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,683.5602813 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.266797661 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.151945361 +WA,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.1835382 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,84.0844445 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,54.92992563 +WA,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,1.265889559 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,32.72700375 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,512.3299218 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,10899.17143 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,27.46421899 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.302050043 +WA,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,21.19466557 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,569.3800446 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,8.248661871 +WA,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.2331626 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,3.07455017 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,140.5637455 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,15.29224704 +WA,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,95.34209074 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,31.0495 +WA,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,3.688 +WA,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,3562.439337 +WA,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,651.6516249 +WA,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,35.98968 +WA,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,10.87396922 +WA,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,629.85328 +WA,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,14.96847998 +WA,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,3.20460815 +WA,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1142.229943 +WA,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,3344.980252 +WA,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,27.7009046 +WA,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,10.5 +WA,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,346.1052335 +WA,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,1829.712673 +WA,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,13991.52068 +WA,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,2703.077465 +WA,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,26.13455 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.021180489 +WA,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,68.33609343 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,76.96169205 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,396.5689305 +WA,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,111.7283346 +WA,PM2.5 Primary (Filt + Cond),5C_Other-open-burning,,TON,0 +WA,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,0.556 +WA,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,0.367 +WA,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,23.7845 +WA,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,0.665833742 +WA,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,1689.6 +WA,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,44.8025 +WA,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,882.88 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.579188713 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,9.561685428 +WA,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.118115969 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,741.1435759 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,57.70672083 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,721.8444048 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,202.1187228 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WA,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,142.1431951 +WA,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.02 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,9.000868993 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.260650495 +WA,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,2.16549E-05 +WA,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,654.6808919 +WA,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,10.29950869 +WA,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,313.3591141 +WA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.206208521 +WA,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.54768017 +WA,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,2.47338229 +WA,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.309811286 +WA,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.05906537 +WA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,33.03310711 +WA,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.396438497 +WA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,26.88705901 +WA,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.206273604 +WA,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.214633341 +WA,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,11.65260062 +WA,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.004124356 +WA,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,477.9395751 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,35.29760961 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.151210407 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,28.92055172 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.378282797 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,3.554450942 +WA,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.055989888 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.596866822 +WA,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,9.453249783 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,224.8376345 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,91.54740154 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.023962746 +WA,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,29.57770113 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.914273774 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.23234312 +WA,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.010626768 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.027308556 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,2.571171536 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.649503419 +WA,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4.649971861 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0.02 +WA,Sulfur Dioxide,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0 +WA,Sulfur Dioxide,2A1_Cement-production,,TON,69.424 +WA,Sulfur Dioxide,2A6_Other-minerals,,TON,180.4827 +WA,Sulfur Dioxide,2B_Chemicals-other,,TON,203.22 +WA,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,51.605 +WA,Sulfur Dioxide,2C3_Aluminum-production,,TON,3987.336 +WA,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.08 +WA,Sulfur Dioxide,2D3d_Coating-application,,TON,0.001281 +WA,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,1348.58 +WA,Sulfur Dioxide,2H2_Food-and-beverage,,TON,0 +WA,Sulfur Dioxide,3F_Ag-res-on-field,,TON,152.1276093 +WA,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,13.27 +WA,Sulfur Dioxide,5C_Incineration,,TON,0 +WA,Sulfur Dioxide,5C_Incineration,biomass,TON,10.61082999 +WA,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,53.34926575 +WA,Sulfur Dioxide,5C_Open-burning-residential,,TON,13.49826096 +WA,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.898072824 +WA,Sulfur Dioxide,5C_Other-open-burning,,TON,0 +WA,Sulfur Dioxide,5D1_Wastewater-domestic,Other_Fuel,TON,3.464 +WA,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,2.863 +WA,Volatile Organic Compounds,11C_Other-natural,,TON,702368.87 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,53.314 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,1.3093761 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,9 +WA,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,36.021 +WA,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1563.225 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,90.3338271 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,245.0087466 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,26.69254491 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,292.9954416 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,61.55579573 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,1.902922108 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.81878982 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.261136111 +WA,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,161.0363364 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,743.6472698 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,231.521274 +WA,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.045528225 +WA,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,1876.731399 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,1666.068889 +WA,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,49048.97642 +WA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,184.0359383 +WA,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2419.047811 +WA,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,161.9385332 +WA,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,376.0817686 +WA,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,10.21254579 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,722.913583 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,18.00567005 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,934.0643374 +WA,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,473.8804195 +WA,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1042.951569 +WA,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,661.6306846 +WA,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.384683692 +WA,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1172.727549 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,33.41989924 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.284932846 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.027638046 +WA,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,226.1434323 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,117.9712314 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1541.373335 +WA,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,25.96159565 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,47.68680748 +WA,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,8148.303854 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,13906.19846 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,9.193421336 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.099400001 +WA,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,271.1305474 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,660.0252775 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,147.6592699 +WA,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.320365943 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.60716221 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,5177.881743 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,36.71967583 +WA,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,6960.196822 +WA,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,1079.616714 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,30.5881771 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,281.4109388 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7117.88422 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,3587.554684 +WA,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,861.0275 +WA,Volatile Organic Compounds,2A1_Cement-production,,TON,6.2635 +WA,Volatile Organic Compounds,2A6_Other-minerals,,TON,76.7433317 +WA,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,1.493109227 +WA,Volatile Organic Compounds,2B_Chemicals-other,,TON,79.49345 +WA,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,24.34 +WA,Volatile Organic Compounds,2C3_Aluminum-production,,TON,268.980195 +WA,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,31.375 +WA,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,32461.64227 +WA,Volatile Organic Compounds,2D3d_Coating-application,,TON,17040.56807 +WA,Volatile Organic Compounds,2D3e_Degreasing,,TON,4648.950184 +WA,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,19.44120003 +WA,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,7424.941937 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,2628.949274 +WA,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2653.480231 +WA,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,2022.162075 +WA,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,656.9344501 +WA,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,370.5005 +WA,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +WA,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,1007.933114 +WA,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,215.9414168 +WA,Volatile Organic Compounds,3B2_Manure-sheep,,TON,14.2607613 +WA,Volatile Organic Compounds,3B3_Manure-swine,,TON,28.86318827 +WA,Volatile Organic Compounds,3B4_Manure-other,,TON,46.18581256 +WA,Volatile Organic Compounds,3B4_Manure-poultry,,TON,309.6738752 +WA,Volatile Organic Compounds,3B4d_Manure-goats,,TON,12.01269046 +WA,Volatile Organic Compounds,3Dc_Other-farm,,TON,0.01 +WA,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,20437.06383 +WA,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,2368.619949 +WA,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,0 +WA,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,1270.74367 +WA,Volatile Organic Compounds,5C_Incineration,,TON,0.011146807 +WA,Volatile Organic Compounds,5C_Incineration,biomass,TON,5.464521534 +WA,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,22.80349959 +WA,Volatile Organic Compounds,5C_Open-burning-residential,,TON,84.430439 +WA,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,106.7710989 +WA,Volatile Organic Compounds,5C_Other-open-burning,,TON,0 +WA,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,106.3702063 +WA,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,7.1944334 +WA,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,0.01 +WI,Ammonia,1A1a_Public-Electricity,biomass,TON,2.95 +WI,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.82890615 +WI,Ammonia,1A1a_Public-Electricity,hard_coal,TON,1183.617613 +WI,Ammonia,1A1a_Public-Electricity,natural_gas,TON,151.527415 +WI,Ammonia,1A1b_Pet-refining,Other_Fuel,TON,6.59927 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.047615119 +WI,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.797414887 +WI,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WI,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,133.474695 +WI,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.006329005 +WI,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.10498539 +WI,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.0310834 +WI,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.095063147 +WI,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,251.9517979 +WI,Ammonia,1A2c_Chemicals,natural_gas,TON,2.34742545 +WI,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,12.29011136 +WI,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.447707875 +WI,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,22.57188505 +WI,Ammonia,1A3bii_Road-LDV,light_oil,TON,1561.693442 +WI,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.464145834 +WI,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,97.16832003 +WI,Ammonia,1A3biii_Road-bus,diesel_oil,TON,8.165494925 +WI,Ammonia,1A3biii_Road-bus,light_oil,TON,3.794602161 +WI,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.210556692 +WI,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,66.47372296 +WI,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,1.577203709 +WI,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,71.13914234 +WI,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,21.36572244 +WI,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,21.16954064 +WI,Ammonia,1A3c_Rail,diesel_oil,TON,6.889182748 +WI,Ammonia,1A3c_Rail,light_oil,TON,0.002391066 +WI,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.019300863 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.014819591 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.164406542 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.17320745 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.082472728 +WI,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,21.81698572 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.970257349 +WI,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.014181293 +WI,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.364168106 +WI,Ammonia,1A4bi_Residential-mobile,light_oil,TON,5.577601756 +WI,Ammonia,1A4bi_Residential-stationary,biomass,TON,646.0871567 +WI,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,14.99399986 +WI,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.283500003 +WI,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,1315.869152 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.464265316 +WI,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.296081512 +WI,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.019811342 +WI,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,8.013948473 +WI,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.774377394 +WI,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,5.465205673 +WI,Ammonia,2A6_Other-minerals,,TON,5.98233 +WI,Ammonia,2B_Chemicals-other,,TON,24.439149 +WI,Ammonia,2C_Iron-steel-alloy,,TON,2.529295 +WI,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.826 +WI,Ammonia,2D3d_Coating-application,,TON,11.4205 +WI,Ammonia,2D3h_Printing,,TON,11.6777758 +WI,Ammonia,2H1_Pulp-and-paper,,TON,104.7709903 +WI,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,26.2045125 +WI,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,55.0790525 +WI,Ammonia,3B1a_Cattle-dairy,,TON,36698.02964 +WI,Ammonia,3B1b_Cattle-non-dairy,,TON,3201.704441 +WI,Ammonia,3B2_Manure-sheep,,TON,282.2442429 +WI,Ammonia,3B3_Manure-swine,,TON,2206.962916 +WI,Ammonia,3B4_Manure-other,,TON,1246.481688 +WI,Ammonia,3B4_Manure-poultry,,TON,4897.946681 +WI,Ammonia,3B4d_Manure-goats,,TON,467.6124413 +WI,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,11553.4 +WI,Ammonia,3F_Ag-res-on-field,,TON,23.698 +WI,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,0.0899952 +WI,Ammonia,5B_Compost-biogas,Other_Fuel,TON,126.562266 +WI,Ammonia,5D1_Wastewater-domestic,,TON,38.8727765 +WI,Ammonia,5D2_Wastewater-industrial,biomass,TON,23.2775 +WI,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,40522.28 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,375599.2389 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,464337.5828 +WI,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,26577.08415 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,1513970.838 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,36423.37997 +WI,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,6.264496732 +WI,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,323302.3011 +WI,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,684387.7236 +WI,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,23396190.57 +WI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,165678.3964 +WI,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,1320693.891 +WI,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,436585.4108 +WI,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,105188.7946 +WI,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,8133.725658 +WI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4114057.836 +WI,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,35503.09505 +WI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,3308527.219 +WI,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,533617.6609 +WI,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,180558.1817 +WI,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,2984.166662 +WI,Carbon Dioxide,1A3c_Rail,light_oil,TON,186.6436729 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,119389.6201 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,164141.2574 +WI,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,7291.431938 +WI,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,44824.5019 +WI,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,416341.0354 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,672658.7005 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,22117.3015 +WI,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2518.246778 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,2429.522017 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,559591.193 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,95360.9261 +WI,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,396878.5386 +WI,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,58746384.6 +WI,Carbon Monoxide,11C_Other-natural,,TON,49513.0763 +WI,Carbon Monoxide,1A1a_Public-Electricity,Anthracite_Lignite,TON,11.83812 +WI,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,309.743326 +WI,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,33.72302048 +WI,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8938.89036 +WI,Carbon Monoxide,1A1a_Public-Electricity,heavy_oil,TON,27.57744 +WI,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,2.373853 +WI,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,1627.117278 +WI,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,277.2300066 +WI,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,0.012805 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,542.0824468 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10357.66718 +WI,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,394.0995617 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,32.46608057 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,13607.09624 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,43.40611556 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,533.9304075 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,39.55243469 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,37.68667259 +WI,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,8544.868876 +WI,Carbon Monoxide,1A2c_Chemicals,diesel_oil,TON,0.484702505 +WI,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,421.5664219 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,3240.41672 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,7409.992181 +WI,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.406413497 +WI,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,8425.570218 +WI,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,4334.229661 +WI,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,325773.2906 +WI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1568.404102 +WI,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,28155.00877 +WI,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,1013.189432 +WI,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,5046.351508 +WI,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,100.7408741 +WI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,3450.477803 +WI,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,565.84207 +WI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5043.711572 +WI,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,12961.15598 +WI,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,7624.685979 +WI,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,2217.606717 +WI,Carbon Monoxide,1A3c_Rail,light_oil,TON,41.22001021 +WI,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,311.7687504 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,786.3401558 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,20.89516541 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,52.94630688 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.520309448 +WI,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,5708.307304 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,414.6484741 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,33558.59294 +WI,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,153.4613293 +WI,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,130.6868399 +WI,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,93889.41159 +WI,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,89701.36338 +WI,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,74.97000124 +WI,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,1.417499904 +WI,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,3085.993017 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,2332.925956 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,5814.367758 +WI,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,28.9353448 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,18.15286663 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,55021.81608 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,189.3261945 +WI,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,42437.64973 +WI,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,35.81018843 +WI,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,619.3184 +WI,Carbon Monoxide,2A6_Other-minerals,,TON,342.5923739 +WI,Carbon Monoxide,2B_Chemicals-other,,TON,62.58973832 +WI,Carbon Monoxide,2C_Iron-steel-alloy,,TON,5522.284861 +WI,Carbon Monoxide,2C3_Aluminum-production,,TON,3.175419 +WI,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,12.8092 +WI,Carbon Monoxide,2C7a_Copper-production,,TON,6.50672 +WI,Carbon Monoxide,2D3d_Coating-application,,TON,3.938 +WI,Carbon Monoxide,2D3e_Degreasing,Other_Fuel,TON,0.9029355 +WI,Carbon Monoxide,2H1_Pulp-and-paper,,TON,4229.957703 +WI,Carbon Monoxide,2H2_Food-and-beverage,,TON,977.0517361 +WI,Carbon Monoxide,3Dc_Other-farm,,TON,132.41947 +WI,Carbon Monoxide,3F_Ag-res-on-field,,TON,306.1 +WI,Carbon Monoxide,5A_Solid-waste-disposal,,TON,1029.718997 +WI,Carbon Monoxide,5C_Incineration,biomass,TON,46.23185267 +WI,Carbon Monoxide,5C_Open-burning-commercial,,TON,0.09775 +WI,Carbon Monoxide,5C_Open-burning-industrial,,TON,15.267 +WI,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,26777.72563 +WI,Carbon Monoxide,5C_Open-burning-residential,,TON,7262.080836 +WI,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,577.1275436 +WI,Carbon Monoxide,5D1_Wastewater-domestic,Other_Fuel,TON,0.0598535 +WI,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,7.649484418 +WI,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,49.0547468 +WI,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,163.2723072 +WI,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,29.99823279 +WI,Methane,1A2g_Construction_and_Mining,light_oil,TON,27.02305808 +WI,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.272395281 +WI,Methane,1A3bii_Road-LDV,diesel_oil,TON,65.89998087 +WI,Methane,1A3bii_Road-LDV,light_oil,TON,955.6503341 +WI,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,11.6702091 +WI,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,89.32232772 +WI,Methane,1A3biii_Road-bus,diesel_oil,TON,17.89840495 +WI,Methane,1A3biii_Road-bus,light_oil,TON,11.62015778 +WI,Methane,1A3biii_Road-bus,natural_gas,TON,72.57198114 +WI,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,277.9133968 +WI,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.908961953 +WI,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,156.49904 +WI,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,25.17257846 +WI,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,14.48624967 +WI,Methane,1A3c_Rail,diesel_oil,TON,0.134739306 +WI,Methane,1A3c_Rail,light_oil,TON,0.125256612 +WI,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,3.740317952 +WI,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,113.1834747 +WI,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,97.94336751 +WI,Methane,1A4bi_Residential-mobile,diesel_oil,TON,1.524685343 +WI,Methane,1A4bi_Residential-mobile,light_oil,TON,367.5828366 +WI,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,9.587664741 +WI,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,28.33169222 +WI,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,12.88071172 +WI,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.100279479 +WI,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,460.0537419 +WI,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.541056138 +WI,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,386.7369635 +WI,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,59249.60689 +WI,Nitrogen Oxides,11C_Other-natural,,TON,20832.95794 +WI,Nitrogen Oxides,1A1a_Public-Electricity,Anthracite_Lignite,TON,9.041715 +WI,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,153.2576485 +WI,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,292.3533304 +WI,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,16723.5212 +WI,Nitrogen Oxides,1A1a_Public-Electricity,heavy_oil,TON,53.6 +WI,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,11.173395 +WI,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,2298.736602 +WI,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,253.1893393 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,diesel_oil,TON,0.054981715 +WI,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,0.037 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1478.410083 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1037.058865 +WI,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,66.47545801 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,26.491739 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,5292.306965 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1377.197903 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4031.356713 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,33.88669965 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,10.39767563 +WI,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,10869.09727 +WI,Nitrogen Oxides,1A2c_Chemicals,diesel_oil,TON,4.68479566 +WI,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,562.4285583 +WI,Nitrogen Oxides,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.1037579 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,6696.653758 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,103.0902917 +WI,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.073580864 +WI,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,1078.383609 +WI,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1798.483252 +WI,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,29794.3869 +WI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,661.3754379 +WI,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,3177.158582 +WI,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,2432.06552 +WI,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,479.0031447 +WI,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,57.68862845 +WI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,12621.90505 +WI,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,60.31953802 +WI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,12251.49016 +WI,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,1042.467726 +WI,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,393.2924955 +WI,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,11641.24472 +WI,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.462967988 +WI,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2379.058085 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,305.41331 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,94.31947017 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,95.29451136 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.083524521 +WI,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,6063.04918 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,817.3379403 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,464.6545007 +WI,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,37.56205624 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,333.0144177 +WI,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,920.7075608 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1408.066808 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,269.892001 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,5.102999984 +WI,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,7799.815043 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5405.421762 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,164.9252834 +WI,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,5.783338289 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,19.61778636 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,1221.243788 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,967.2527197 +WI,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,2869.913504 +WI,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,8.63671551 +WI,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,1192.98982 +WI,Nitrogen Oxides,2A6_Other-minerals,,TON,3148.21871 +WI,Nitrogen Oxides,2B_Chemicals-other,,TON,131.91407 +WI,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,228.3999027 +WI,Nitrogen Oxides,2C3_Aluminum-production,,TON,15.82036148 +WI,Nitrogen Oxides,2C5_Lead-production,,TON,0.36288 +WI,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,14.8459592 +WI,Nitrogen Oxides,2C7a_Copper-production,,TON,1.2067551 +WI,Nitrogen Oxides,2D3d_Coating-application,,TON,3.131 +WI,Nitrogen Oxides,2D3e_Degreasing,Other_Fuel,TON,0.5389615 +WI,Nitrogen Oxides,2D3h_Printing,,TON,0.039501 +WI,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,1425.298711 +WI,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,42.60909358 +WI,Nitrogen Oxides,3F_Ag-res-on-field,,TON,7.72 +WI,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,280.2105607 +WI,Nitrogen Oxides,5C_Incineration,,TON,0.092812003 +WI,Nitrogen Oxides,5C_Incineration,biomass,TON,325.9592989 +WI,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.002925 +WI,Nitrogen Oxides,5C_Open-burning-industrial,,TON,7.288000125 +WI,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,649.9448151 +WI,Nitrogen Oxides,5C_Open-burning-residential,,TON,512.6174947 +WI,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,31.94813226 +WI,Nitrogen Oxides,5D1_Wastewater-domestic,Other_Fuel,TON,0.73424934 +WI,Nitrogen Oxides,5D2_Wastewater-industrial,biomass,TON,0.000055365 +WI,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.03366665 +WI,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.993258968 +WI,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,643.7764885 +WI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.545175268 +WI,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,66.99662958 +WI,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.966471851 +WI,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,3.379021366 +WI,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.395150617 +WI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4.032650426 +WI,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.754591282 +WI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,7.456453283 +WI,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,21.54552686 +WI,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.113634713 +WI,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,833.6407089 +WI,Nitrous Oxide,5D1_Wastewater-domestic,Other_Fuel,TON,9.6455 +WI,PM10 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,6.812232 +WI,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,34.17963753 +WI,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.27216154 +WI,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,792.7012374 +WI,PM10 Filterable,1A1a_Public-Electricity,heavy_oil,TON,10.470223 +WI,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,130.498609 +WI,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,12.19303314 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,24.40976838 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,9882.455411 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,11.69645793 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,78.6782313 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,28.37886684 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.118560583 +WI,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,72.97798576 +WI,PM10 Filterable,1A2c_Chemicals,diesel_oil,TON,0.696909572 +WI,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,16.27302207 +WI,PM10 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000460636 +WI,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,36018.4643 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,610.1597781 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.683697132 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,75.16095272 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.111372743 +WI,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,12.78729585 +WI,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,12007.21307 +WI,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,16.19351982 +WI,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.305899994 +WI,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,15.43580026 +WI,PM10 Filterable,2A1_Cement-production,,TON,17.9336195 +WI,PM10 Filterable,2A2_Lime-production,,TON,121.1187436 +WI,PM10 Filterable,2A5b_Construction-and-demolition,,TON,23194.96209 +WI,PM10 Filterable,2A6_Other-minerals,,TON,7297.910107 +WI,PM10 Filterable,2B_Chemicals-other,,TON,36.65795238 +WI,PM10 Filterable,2C_Iron-steel-alloy,,TON,444.1553633 +WI,PM10 Filterable,2C3_Aluminum-production,,TON,21.83263583 +WI,PM10 Filterable,2C5_Lead-production,,TON,13.806414 +WI,PM10 Filterable,2C7_Other-metal,Other_Fuel,TON,33.0566741 +WI,PM10 Filterable,2C7a_Copper-production,,TON,1.934920484 +WI,PM10 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,4.527468 +WI,PM10 Filterable,2D3d_Coating-application,,TON,9.126337535 +WI,PM10 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,11.156084 +WI,PM10 Filterable,2H1_Pulp-and-paper,,TON,690.9617336 +WI,PM10 Filterable,2H2_Food-and-beverage,,TON,581.6678074 +WI,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,50.72809 +WI,PM10 Filterable,2I_Wood-processing,,TON,96.53574772 +WI,PM10 Filterable,3B1a_Cattle-dairy,,TON,10233.75989 +WI,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,12038.24216 +WI,PM10 Filterable,3Dc_Other-farm,,TON,61298.84129 +WI,PM10 Filterable,5A_Solid-waste-disposal,,TON,21.22366977 +WI,PM10 Filterable,5C_Incineration,biomass,TON,3.976029765 +WI,PM10 Filterable,5C_Open-burning-dump,,TON,36.837022 +WI,PM10 Filterable,5C_Open-burning-land-clearing,,TON,3314.718619 +WI,PM10 Filterable,5C_Open-burning-residential,,TON,2740.863534 +WI,PM10 Filterable,5C_Open-burning-yard-waste,,TON,195.811134 +WI,PM10 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,8.07111046 +WI,PM10 Filterable,5D2_Wastewater-industrial,biomass,TON,8.6148899 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,6.86673 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,35.19123295 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.851236435 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,831.4401783 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,10.7447 +WI,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,255.7100924 +WI,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,17.36945656 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,87.8032674 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,51.17969879 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.201457627 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,24.41166323 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,10224.15759 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,31.04019336 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,84.10108839 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,31.88884148 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.278287118 +WI,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,160.9419699 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.87332029 +WI,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,29.03104932 +WI,PM10 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.0012122 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,518.2313761 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,57.84558689 +WI,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000751872 +WI,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,170.8435658 +WI,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,36018.4643 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,103.0382285 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,2261.884813 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,42.33149488 +WI,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,143.141751 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,154.404562 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,23.1452933 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.980620829 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,598.2812606 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.826150148 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,875.2876423 +WI,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,63.92590116 +WI,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,20.34810741 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,340.1642848 +WI,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.023734782 +WI,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,55.34567866 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,631.2865108 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.72268023 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,81.57045922 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.241396538 +WI,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,125.9774094 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,68.99684158 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,42.92148808 +WI,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.922869886 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.89084986 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,398.7788861 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12578.43755 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,35.68572127 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.674799992 +WI,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,40.10390203 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,414.4596795 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.958325763 +WI,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.305440307 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.67856831 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,560.054077 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.9651711 +WI,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,130.6579037 +WI,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,17.9336195 +WI,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,130.5328955 +WI,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,23194.96209 +WI,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7532.925883 +WI,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,38.68503271 +WI,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,653.2068826 +WI,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,98.97909013 +WI,PM10 Primary (Filt + Cond),2C5_Lead-production,,TON,23.596275 +WI,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,59.07058033 +WI,PM10 Primary (Filt + Cond),2C7a_Copper-production,,TON,6.91043167 +WI,PM10 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,5.14485 +WI,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,10.43932094 +WI,PM10 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,11.156084 +WI,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,912.5434976 +WI,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2862.233396 +WI,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,57.08192051 +WI,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,96.53575162 +WI,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,10233.75989 +WI,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,12038.24216 +WI,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,61466.20734 +WI,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,52.104 +WI,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,47.0600121 +WI,PM10 Primary (Filt + Cond),5C_Incineration,biomass,TON,56.76054426 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-dump,,TON,36.837027 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3314.718619 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2740.863534 +WI,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,195.811134 +WI,PM10 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,8.32846 +WI,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,8.6148899 +WI,PM2.5 Filterable,1A1a_Public-Electricity,Anthracite_Lignite,TON,1.777104 +WI,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,20.75657695 +WI,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.051847325 +WI,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,374.7862659 +WI,PM2.5 Filterable,1A1a_Public-Electricity,heavy_oil,TON,5.964051 +WI,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,126.6074057 +WI,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,8.678421694 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.615305122 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,8482.030883 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.79456149 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,47.68939898 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,18.48734393 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.029651735 +WI,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,56.87794485 +WI,PM2.5 Filterable,1A2c_Chemicals,diesel_oil,TON,0.396973783 +WI,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,15.25627623 +WI,PM2.5 Filterable,1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.000431846 +WI,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,5862.110355 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,524.6512521 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.332337712 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,10.44306038 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.085599508 +WI,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,8.794167933 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,11938.07732 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,12.44501972 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.235199997 +WI,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,8.489690237 +WI,PM2.5 Filterable,2A1_Cement-production,,TON,6.41514621 +WI,PM2.5 Filterable,2A2_Lime-production,,TON,29.83657033 +WI,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,2319.496209 +WI,PM2.5 Filterable,2A6_Other-minerals,,TON,1316.054836 +WI,PM2.5 Filterable,2B_Chemicals-other,,TON,12.93826273 +WI,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,333.982219 +WI,PM2.5 Filterable,2C3_Aluminum-production,,TON,13.52440652 +WI,PM2.5 Filterable,2C5_Lead-production,,TON,7.770667 +WI,PM2.5 Filterable,2C7_Other-metal,Other_Fuel,TON,10.58733126 +WI,PM2.5 Filterable,2C7a_Copper-production,,TON,1.78431194 +WI,PM2.5 Filterable,2D3c_Asphalt-roofing,Other_Fuel,TON,3.756835 +WI,PM2.5 Filterable,2D3d_Coating-application,,TON,7.631274461 +WI,PM2.5 Filterable,2D3i_Other-solvent-use,Other_Fuel,TON,10.261492 +WI,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,415.7707583 +WI,PM2.5 Filterable,2H2_Food-and-beverage,,TON,136.3660778 +WI,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,42.75068932 +WI,PM2.5 Filterable,2I_Wood-processing,,TON,30.68741766 +WI,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,2127.078538 +WI,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,2502.145854 +WI,PM2.5 Filterable,3Dc_Other-farm,,TON,12058.86949 +WI,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,14.38206648 +WI,PM2.5 Filterable,5C_Incineration,biomass,TON,2.651230008 +WI,PM2.5 Filterable,5C_Open-burning-dump,,TON,30.79003509 +WI,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,3022.243357 +WI,PM2.5 Filterable,5C_Open-burning-residential,,TON,2510.053941 +WI,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,150.9806946 +WI,PM2.5 Filterable,5D1_Wastewater-domestic,Other_Fuel,TON,6.69730441 +WI,PM2.5 Filterable,5D2_Wastewater-industrial,biomass,TON,4.9072156 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,Anthracite_Lignite,TON,1.831602 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,21.76817191 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,2.630922142 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,413.5251899 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,heavy_oil,TON,6.238528 +WI,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,251.7779807 +WI,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,13.85484372 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,85.16802946 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,50.43915574 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,3.201457627 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,8.616077821 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,8823.734208 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,30.13879665 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,53.11055887 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,21.99685049 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.18937535 +WI,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,144.8433683 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,diesel_oil,TON,0.573384472 +WI,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,28.01430441 +WI,PM2.5 Primary (Filt + Cond),1A2f_Ind-Comb-Non-metalic-minerals,natural_gas,TON,0.00118341 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,502.6844402 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,53.24597445 +WI,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000751872 +WI,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,141.3566244 +WI,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,5862.110355 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,73.38672103 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,926.1925645 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,33.54947461 +WI,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,70.81698805 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,110.8958275 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,13.61978373 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,1.299138129 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,405.4896639 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.539588161 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,601.2058776 +WI,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,27.34984401 +WI,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,13.44495893 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,329.9553755 +WI,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021881775 +WI,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,52.9596327 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,545.7834424 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.37177992 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,16.83035908 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.216670843 +WI,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,122.0005708 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,66.92692849 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,39.58120512 +WI,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.922869886 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,21.23412426 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,366.8934973 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,12509.3018 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,31.93721859 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0.604100009 +WI,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,33.15779504 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,402.0258997 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,9.161924316 +WI,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.305440307 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,2.598211498 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,515.2508822 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,20.33621846 +WI,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,120.2052865 +WI,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,6.41514621 +WI,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,39.25072225 +WI,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,2319.496209 +WI,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1551.070593 +WI,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,14.96534205 +WI,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,543.0337331 +WI,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,90.67085998 +WI,PM2.5 Primary (Filt + Cond),2C5_Lead-production,,TON,17.560527 +WI,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,36.60123749 +WI,PM2.5 Primary (Filt + Cond),2C7a_Copper-production,,TON,6.759822599 +WI,PM2.5 Primary (Filt + Cond),2D3c_Asphalt-roofing,Other_Fuel,TON,4.374217 +WI,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,8.944257861 +WI,PM2.5 Primary (Filt + Cond),2D3i_Other-solvent-use,Other_Fuel,TON,10.261492 +WI,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,637.3525334 +WI,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,2416.93163 +WI,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,49.10452432 +WI,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,30.68741766 +WI,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,2127.078538 +WI,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,2502.145854 +WI,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,12226.23554 +WI,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,38.134 +WI,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,40.21841386 +WI,PM2.5 Primary (Filt + Cond),5C_Incineration,biomass,TON,55.4357445 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-dump,,TON,30.79003509 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,3022.243357 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,2510.053941 +WI,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,150.9806946 +WI,PM2.5 Primary (Filt + Cond),5D1_Wastewater-domestic,Other_Fuel,TON,6.95465405 +WI,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,biomass,TON,4.9072156 +WI,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,3.974680925 +WI,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,12957.17546 +WI,Sulfur Dioxide,1A1a_Public-Electricity,heavy_oil,TON,262.4 +WI,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,22.2988439 +WI,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,64.317905 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,2.89721483 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,4.899259239 +WI,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.148969473 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,16.80234353 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,720.9587313 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,77.57701209 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,9549.868307 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,5.005655321 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.879233839 +WI,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,961.1062366 +WI,Sulfur Dioxide,1A2c_Chemicals,diesel_oil,TON,0.06433294 +WI,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,5.59832256 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,11.6726624 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.560566728 +WI,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,3.50213E-05 +WI,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,167.4980843 +WI,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,5.904003366 +WI,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,259.6000127 +WI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.445349519 +WI,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.76079586 +WI,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,3.775849529 +WI,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,1.185650393 +WI,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.043063977 +WI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,34.84617624 +WI,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.398120766 +WI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,28.27779486 +WI,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,5.886442466 +WI,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.997839409 +WI,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,7.763223572 +WI,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003014325 +WI,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,33.26163621 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,30.35527583 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,3.840651339 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,500.7281487 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,173.6192495 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,1.005510029 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,2.584888634 +WI,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.040850202 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.389878 +WI,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,6.828945633 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,409.8490682 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,106.4573972 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.047925501 +WI,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,46.27822405 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,5.661203977 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.363333105 +WI,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.01411655 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.021343538 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,9.170002639 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.876629202 +WI,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,6.517628628 +WI,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,1517.39624 +WI,Sulfur Dioxide,2A6_Other-minerals,,TON,304.549375 +WI,Sulfur Dioxide,2B_Chemicals-other,,TON,4.1534 +WI,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,319.6678204 +WI,Sulfur Dioxide,2C3_Aluminum-production,,TON,22.82182195 +WI,Sulfur Dioxide,2C7a_Copper-production,,TON,1.42875 +WI,Sulfur Dioxide,2D3d_Coating-application,,TON,0.14435 +WI,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,596.1896143 +WI,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,15.33475 +WI,Sulfur Dioxide,3Dc_Other-farm,,TON,118.588711 +WI,Sulfur Dioxide,3F_Ag-res-on-field,,TON,1.6026 +WI,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,203.5349414 +WI,Sulfur Dioxide,5C_Incineration,biomass,TON,59.67452786 +WI,Sulfur Dioxide,5C_Open-burning-industrial,,TON,5.1033265 +WI,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,269.7270915 +WI,Sulfur Dioxide,5C_Open-burning-residential,,TON,85.43624485 +WI,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,3.916222574 +WI,Sulfur Dioxide,5D2_Wastewater-industrial,biomass,TON,0.858095 +WI,Volatile Organic Compounds,11C_Other-natural,,TON,289863.6474 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,Anthracite_Lignite,TON,0.2032055 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,197.8152866 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,10.08652023 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,568.2607849 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,heavy_oil,TON,0.767116 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.9120005 +WI,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,127.4536312 +WI,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,536.1533465 +WI,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,0.03197016 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,96.84493122 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,300.502969 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,35.29335961 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,30.97249131 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,503.5625301 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,10.31388679 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,22.07474786 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,31.02671199 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.481508135 +WI,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,689.1188172 +WI,Volatile Organic Compounds,1A2c_Chemicals,diesel_oil,TON,0.945154765 +WI,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,17.39934654 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,622.8262356 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,502.056709 +WI,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.058881648 +WI,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,592.1073856 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,532.4034625 +WI,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,24993.87908 +WI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,211.2034204 +WI,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,2333.321154 +WI,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,241.8034483 +WI,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,278.2162757 +WI,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,10.70818828 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,776.1393755 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,20.53714459 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1240.090977 +WI,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,516.8635283 +WI,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1158.05876 +WI,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,562.3148101 +WI,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,0.991831163 +WI,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,106.3192443 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,25.65645789 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,4.112439573 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.304249608 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.035350675 +WI,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,454.3545071 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,94.5766676 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,1108.081563 +WI,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,21.17168599 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,30.87114192 +WI,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,5890.701848 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,12211.89175 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,10.69072223 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.198800009 +WI,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,424.2219297 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,432.5628778 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,268.0604437 +WI,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,2.784327131 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,4.73330102 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,19476.10717 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,49.81411213 +WI,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,8977.44727 +WI,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,737.2088638 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,1.732446081 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,705.6542837 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,4214.341597 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,6449.56922 +WI,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,0.0625 +WI,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,2.9795775 +WI,Volatile Organic Compounds,2A6_Other-minerals,,TON,135.0133088 +WI,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.807422993 +WI,Volatile Organic Compounds,2B_Chemicals-other,,TON,1418.307225 +WI,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,855.6397655 +WI,Volatile Organic Compounds,2C3_Aluminum-production,,TON,92.21344619 +WI,Volatile Organic Compounds,2C5_Lead-production,,TON,27.409997 +WI,Volatile Organic Compounds,2C6_Zinc-production,,TON,6.08014 +WI,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,142.9832912 +WI,Volatile Organic Compounds,2C7a_Copper-production,,TON,4.75421864 +WI,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,25403.37846 +WI,Volatile Organic Compounds,2D3d_Coating-application,,TON,26334.38473 +WI,Volatile Organic Compounds,2D3e_Degreasing,,TON,6868.948053 +WI,Volatile Organic Compounds,2D3f_Dry-cleaning,,TON,95.95398 +WI,Volatile Organic Compounds,2D3h_Printing,,TON,3779.116888 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,3681.80963 +WI,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,2044.020717 +WI,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,3124.845822 +WI,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,1091.103858 +WI,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,595.6387929 +WI,Volatile Organic Compounds,2I_Wood-processing,,TON,224.4012964 +WI,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,2935.842484 +WI,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,256.1363641 +WI,Volatile Organic Compounds,3B2_Manure-sheep,,TON,22.57953872 +WI,Volatile Organic Compounds,3B3_Manure-swine,,TON,176.5570311 +WI,Volatile Organic Compounds,3B4_Manure-other,,TON,99.71853565 +WI,Volatile Organic Compounds,3B4_Manure-poultry,,TON,391.8357382 +WI,Volatile Organic Compounds,3B4d_Manure-goats,,TON,37.4089957 +WI,Volatile Organic Compounds,3Dc_Other-farm,,TON,41.46930828 +WI,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,3538.29546 +WI,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,32.256 +WI,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,180.5523535 +WI,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,895.52385 +WI,Volatile Organic Compounds,5C_Incineration,biomass,TON,138.8652172 +WI,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,0.0128 +WI,Volatile Organic Compounds,5C_Open-burning-dump,,TON,119.9935209 +WI,Volatile Organic Compounds,5C_Open-burning-industrial,,TON,7.13000031 +WI,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,1836.09413 +WI,Volatile Organic Compounds,5C_Open-burning-residential,,TON,534.3962473 +WI,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,144.2818828 +WI,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,27.5299435 +WI,Volatile Organic Compounds,5D2_Wastewater-industrial,biomass,TON,78.22971901 +WV,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +WV,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,2.26008 +WV,Ammonia,1A1a_Public-Electricity,hard_coal,TON,12.5216 +WV,Ammonia,1A1a_Public-Electricity,light_oil,TON,0 +WV,Ammonia,1A1a_Public-Electricity,natural_gas,TON,0 +WV,Ammonia,1A1b_Pet-refining,natural_gas,TON,1.926 +WV,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,0.0052416 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.557352864 +WV,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.120336135 +WV,Ammonia,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +WV,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,3.139988006 +WV,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,3.465742 +WV,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.164444114 +WV,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0.048036805 +WV,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,10.11914616 +WV,Ammonia,1A2c_Chemicals,natural_gas,TON,15.135 +WV,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,2.027786553 +WV,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.072765929 +WV,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,9.464750918 +WV,Ammonia,1A3bii_Road-LDV,light_oil,TON,564.85577 +WV,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,1.22768082 +WV,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,22.64115205 +WV,Ammonia,1A3biii_Road-bus,diesel_oil,TON,2.495500333 +WV,Ammonia,1A3biii_Road-bus,light_oil,TON,0.704749387 +WV,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.130695659 +WV,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,23.693593 +WV,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,3.352780469 +WV,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,9.752081329 +WV,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,1.558182197 +WV,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,8.14072095 +WV,Ammonia,1A3c_Rail,diesel_oil,TON,3.41794383 +WV,Ammonia,1A3c_Rail,light_oil,TON,0.002401933 +WV,Ammonia,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,1.21989547 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,6.981302634 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,1.446946425 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033522225 +WV,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,3.946185295 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.212075555 +WV,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.407637457 +WV,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.095300287 +WV,Ammonia,1A4bi_Residential-mobile,light_oil,TON,1.583234067 +WV,Ammonia,1A4bi_Residential-stationary,biomass,TON,565.5238196 +WV,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,5.649000064 +WV,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0.749249985 +WV,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,224.4194073 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.549686505 +WV,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.019077234 +WV,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006347979 +WV,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.741738006 +WV,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.104927852 +WV,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.638142373 +WV,Ammonia,1B2ai_Fugitive-petr-prod,natural_gas,TON,0.004650817 +WV,Ammonia,2A2_Lime-production,Other_Fuel,TON,0.002 +WV,Ammonia,2A6_Other-minerals,Other_Fuel,TON,84.918285 +WV,Ammonia,2B_Chemicals-other,,TON,74.64054061 +WV,Ammonia,2C_Iron-steel-alloy,,TON,7.68548037 +WV,Ammonia,2C7b_Nickel-production,Other_Fuel,TON,0.066 +WV,Ammonia,2H1_Pulp-and-paper,,TON,6.850288 +WV,Ammonia,2H3_Other-industrial-processes,Other_Fuel,TON,3.93825 +WV,Ammonia,3B1a_Cattle-dairy,,TON,321.941288 +WV,Ammonia,3B1b_Cattle-non-dairy,,TON,1143.474845 +WV,Ammonia,3B2_Manure-sheep,,TON,126.2671617 +WV,Ammonia,3B3_Manure-swine,,TON,46.65177147 +WV,Ammonia,3B4_Manure-other,,TON,244.9015318 +WV,Ammonia,3B4_Manure-poultry,,TON,3534.412098 +WV,Ammonia,3B4d_Manure-goats,,TON,68.4617186 +WV,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,4580.9 +WV,Ammonia,3F_Ag-res-on-field,,TON,7.018 +WV,Ammonia,5A_Solid-waste-disposal,Other_Fuel,TON,1.04 +WV,Ammonia,5B_Compost-biogas,Other_Fuel,TON,38.757665 +WV,Ammonia,5D1_Wastewater-domestic,,TON,5.0222575 +WV,Ammonia,5D2_Wastewater-industrial,Other_Fuel,TON,0.52512 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,68686.81613 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,70307.38981 +WV,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,4027.089464 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,249599.5727 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,5924.476639 +WV,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.299356123 +WV,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,33819.16898 +WV,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,299322.265 +WV,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,7929976.433 +WV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,38415.58199 +WV,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,374408.7882 +WV,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,166194.3222 +WV,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,22062.40144 +WV,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,4837.85264 +WV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1344821.56 +WV,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,78438.7071 +WV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,588974.8153 +WV,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,40360.79637 +WV,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,63033.9576 +WV,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,3000.626487 +WV,Carbon Dioxide,1A3c_Rail,light_oil,TON,187.4664549 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,26096.46761 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,33180.73027 +WV,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1486.395333 +WV,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,11729.94797 +WV,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,118181.2832 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,67692.73345 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1395.287996 +WV,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,136.4977184 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,778.50563 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,51943.34125 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,12920.78473 +WV,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,46738.0399 +WV,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,77278613.64 +WV,Carbon Monoxide,11C_Other-natural,,TON,36174.3961 +WV,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0.082425 +WV,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,29.71035718 +WV,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,8968.6976 +WV,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.001273635 +WV,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,66.6438984 +WV,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,57.1181 +WV,Carbon Monoxide,1A1c_Coke-ovens,natural_gas,TON,129.56527 +WV,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,291.7312181 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,100.408753 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1591.022197 +WV,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,61.1729076 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,280.7726807 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,225.8016058 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,79.27913324 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,1.040014887 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.756274311 +WV,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,1889.958621 +WV,Carbon Monoxide,1A2c_Chemicals,heavy_oil,TON,3.182 +WV,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,330.0130751 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,826.676752 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,1218.409669 +WV,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.101537146 +WV,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1833.149079 +WV,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,2773.484033 +WV,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,133229.8959 +WV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,322.3899135 +WV,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,6504.819921 +WV,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,309.2850489 +WV,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,867.769152 +WV,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,35.15317876 +WV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1280.812219 +WV,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1140.321459 +WV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,723.4396822 +WV,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,635.4829699 +WV,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2280.423477 +WV,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,1101.900211 +WV,Carbon Monoxide,1A3c_Rail,light_oil,TON,41.96932832 +WV,Carbon Monoxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,273.8659795 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,823.3522143 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,24.04626724 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.2059116 +WV,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1716.711509 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,90.923773 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,6862.455589 +WV,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,28.02148638 +WV,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,34.31253952 +WV,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,26888.97487 +WV,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,73968.10599 +WV,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,28.24499996 +WV,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,3.746250044 +WV,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,494.3032043 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,198.6094863 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,335.8847559 +WV,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.730482571 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,5.787267 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,9171.848589 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,25.11158674 +WV,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,4745.599628 +WV,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,2876.11227 +WV,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,34807.04658 +WV,Carbon Monoxide,2A1_Cement-production,,TON,0 +WV,Carbon Monoxide,2A2_Lime-production,Other_Fuel,TON,61.89 +WV,Carbon Monoxide,2A6_Other-minerals,,TON,1497.148814 +WV,Carbon Monoxide,2B_Chemicals-other,,TON,170.384857 +WV,Carbon Monoxide,2C_Iron-steel-alloy,,TON,1450.597093 +WV,Carbon Monoxide,2C3_Aluminum-production,,TON,84.845 +WV,Carbon Monoxide,2D3d_Coating-application,Other_Fuel,TON,0.03612 +WV,Carbon Monoxide,2H1_Pulp-and-paper,,TON,75.105213 +WV,Carbon Monoxide,2H2_Food-and-beverage,,TON,251.8886214 +WV,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,333.916311 +WV,Carbon Monoxide,3F_Ag-res-on-field,,TON,62.58 +WV,Carbon Monoxide,5A_Solid-waste-disposal,Other_Fuel,TON,159.150327 +WV,Carbon Monoxide,5C_Incineration,,TON,1.017068563 +WV,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,11401.56155 +WV,Carbon Monoxide,5C_Open-burning-residential,,TON,4065.34972 +WV,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,408.3801366 +WV,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,1.564512628 +WV,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.672620482 +WV,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,25.79844262 +WV,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,8.946430935 +WV,Methane,1A2g_Construction_and_Mining,light_oil,TON,4.36986006 +WV,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.067724729 +WV,Methane,1A3bii_Road-LDV,diesel_oil,TON,20.38521298 +WV,Methane,1A3bii_Road-LDV,light_oil,TON,361.964432 +WV,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,3.193087516 +WV,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,19.75736576 +WV,Methane,1A3biii_Road-bus,diesel_oil,TON,4.693982092 +WV,Methane,1A3biii_Road-bus,light_oil,TON,1.014442816 +WV,Methane,1A3biii_Road-bus,natural_gas,TON,22.0952324 +WV,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,79.14838233 +WV,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,1.513773511 +WV,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.35641878 +WV,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,0.948201178 +WV,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,5.10315768 +WV,Methane,1A3c_Rail,diesel_oil,TON,0.135538128 +WV,Methane,1A3c_Rail,light_oil,TON,0.123330047 +WV,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.848148797 +WV,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,22.48207576 +WV,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,16.62673153 +WV,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.390355413 +WV,Methane,1A4bi_Residential-mobile,light_oil,TON,103.7687655 +WV,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.592958158 +WV,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.346012423 +WV,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.686066209 +WV,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.032339605 +WV,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,76.40938311 +WV,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.46491799 +WV,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,43.76051978 +WV,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,70381.06809 +WV,Nitrogen Oxides,11C_Other-natural,,TON,3134.11913 +WV,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0.292455 +WV,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,132.8678958 +WV,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,43449.902 +WV,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.339636 +WV,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,105.436147 +WV,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,49.9166 +WV,Nitrogen Oxides,1A1c_Coke-ovens,natural_gas,TON,312.48096 +WV,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,188.3553161 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,292.9232224 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,159.7393086 +WV,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,10.3239897 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,194.1104278 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1027.438412 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,871.0479186 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,11.32472717 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,1.561455269 +WV,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,6415.793956 +WV,Nitrogen Oxides,1A2c_Chemicals,heavy_oil,TON,15.964 +WV,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,140.4993611 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,1373.351501 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,16.58558242 +WV,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.017981294 +WV,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,561.5074966 +WV,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,960.001425 +WV,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,14606.10879 +WV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,122.4429378 +WV,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,692.537853 +WV,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,865.4881376 +WV,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,71.45350943 +WV,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,15.11946797 +WV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,4119.411483 +WV,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,153.3092063 +WV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,2539.817005 +WV,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,70.60518112 +WV,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,119.7603059 +WV,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,5728.452767 +WV,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.430889209 +WV,Nitrogen Oxides,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,2189.423725 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,300.9211686 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,104.8000117 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.820987229 +WV,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,4492.212879 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,176.7623557 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,85.5079642 +WV,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,6.507753456 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,87.53222751 +WV,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,252.2631987 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,1115.08903 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,101.6819982 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,13.4865005 +WV,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,1216.432618 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,384.0992062 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,4.69189194 +WV,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.305334302 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,6.2202024 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,107.4808981 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,118.3349671 +WV,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,312.0729004 +WV,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,1984.156895 +WV,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,23920.74401 +WV,Nitrogen Oxides,2A1_Cement-production,,TON,0 +WV,Nitrogen Oxides,2A2_Lime-production,Other_Fuel,TON,262.16 +WV,Nitrogen Oxides,2A6_Other-minerals,,TON,1519.9041 +WV,Nitrogen Oxides,2B_Chemicals-other,,TON,271.49842 +WV,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,1238.87412 +WV,Nitrogen Oxides,2C3_Aluminum-production,,TON,141.407 +WV,Nitrogen Oxides,2D3d_Coating-application,Other_Fuel,TON,0.043 +WV,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,184.239175 +WV,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,18.808405 +WV,Nitrogen Oxides,3F_Ag-res-on-field,,TON,1.727 +WV,Nitrogen Oxides,5A_Solid-waste-disposal,Other_Fuel,TON,40.2484 +WV,Nitrogen Oxides,5C_Incineration,,TON,1.793395016 +WV,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,276.7369333 +WV,Nitrogen Oxides,5C_Open-burning-residential,,TON,286.965854 +WV,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,22.60675758 +WV,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,0.962284657 +WV,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,285.8672085 +WV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.135041971 +WV,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,16.19989708 +WV,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.279973731 +WV,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.649394956 +WV,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.838204859 +WV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.880271044 +WV,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.340025678 +WV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,0.876797029 +WV,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.883888643 +WV,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.637688784 +WV,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1241.989799 +WV,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.0798457 +WV,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.330173897 +WV,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,2167.77 +WV,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.001659585 +WV,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,33.46538164 +WV,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,1.6253 +WV,PM10 Filterable,1A1c_Coke-ovens,natural_gas,TON,12.765991 +WV,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.406962406 +WV,PM10 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.026839991 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,10.57608461 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,72.84259233 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,10.74458934 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,3.080368423 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.080497966 +WV,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,92.72436637 +WV,PM10 Filterable,1A2c_Chemicals,heavy_oil,TON,11.915 +WV,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,5.10539934 +WV,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,31352.49523 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,680.1999541 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.376074084 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.044092706 +WV,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,29.6777254 +WV,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,9511.005235 +WV,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,6.100919907 +WV,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.808449974 +WV,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,2.472100069 +WV,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,14.07050507 +WV,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,144.0243241 +WV,PM10 Filterable,2A1_Cement-production,,TON,103.6282135 +WV,PM10 Filterable,2A2_Lime-production,,TON,93.43 +WV,PM10 Filterable,2A5b_Construction-and-demolition,,TON,4214.34763 +WV,PM10 Filterable,2A6_Other-minerals,,TON,7155.606415 +WV,PM10 Filterable,2B_Chemicals-other,,TON,248.7474974 +WV,PM10 Filterable,2C_Iron-steel-alloy,,TON,377.2390974 +WV,PM10 Filterable,2C3_Aluminum-production,,TON,40.626 +WV,PM10 Filterable,2C7_Other-metal,,TON,133.9443847 +WV,PM10 Filterable,2C7b_Nickel-production,Other_Fuel,TON,28.9708 +WV,PM10 Filterable,2D3d_Coating-application,,TON,1.49457986 +WV,PM10 Filterable,2D3e_Degreasing,,TON,0 +WV,PM10 Filterable,2H1_Pulp-and-paper,,TON,219.2408982 +WV,PM10 Filterable,2H2_Food-and-beverage,,TON,52.83251047 +WV,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,245.5588283 +WV,PM10 Filterable,2I_Wood-processing,,TON,0.822988 +WV,PM10 Filterable,3B1a_Cattle-dairy,,TON,62.26645127 +WV,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,4478.147905 +WV,PM10 Filterable,3Dc_Other-farm,,TON,9701.272597 +WV,PM10 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,147.4296 +WV,PM10 Filterable,5C_Incineration,,TON,1.029197021 +WV,PM10 Filterable,5C_Open-burning-land-clearing,,TON,1411.358413 +WV,PM10 Filterable,5C_Open-burning-residential,,TON,1534.349262 +WV,PM10 Filterable,5C_Open-burning-yard-waste,,TON,138.5575542 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.0903257 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.451576021 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,6386.2556 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.004438425 +WV,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,55.41208896 +WV,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,5.3285 +WV,PM10 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,20.387475 +WV,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,24.01125281 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.7414289 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.72028506 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.486174766 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,13.32415901 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,83.75736471 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,104.3097405 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.384622102 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.218535009 +WV,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,213.1479538 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,23.83 +WV,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,12.5778385 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,120.6330884 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,9.389055449 +WV,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00016085 +WV,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,55.80929248 +WV,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,31352.49523 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,56.42614492 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,840.027566 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.340944088 +WV,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,40.13366214 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,47.22653307 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,3.422657923 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.624080121 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,286.7170305 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,9.654855358 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,153.6743423 +WV,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,4.61809194 +WV,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,7.07230538 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,170.2123895 +WV,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.023826014 +WV,PM10 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,65.40412114 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,705.0159826 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.697826605 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.095763646 +WV,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,57.39173337 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15.02223576 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,8.689243964 +WV,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.188473053 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,5.812155632 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,109.5424814 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9973.184694 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,13.44461935 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.783400023 +WV,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,6.424540046 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,38.77388245 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,2.711208373 +WV,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.016602367 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.85556928 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,60.4953297 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.6401325 +WV,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,12.74444225 +WV,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,28.35485297 +WV,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,407.8715862 +WV,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,103.6522135 +WV,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,147.23 +WV,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4214.34763 +WV,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,7292.667378 +WV,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,345.270428 +WV,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,1004.112442 +WV,PM10 Primary (Filt + Cond),2C3_Aluminum-production,,TON,66.752 +WV,PM10 Primary (Filt + Cond),2C7_Other-metal,,TON,133.9443847 +WV,PM10 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,28.9708 +WV,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.49579686 +WV,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +WV,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,288.3540222 +WV,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,650.6793892 +WV,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,246.3180808 +WV,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,0.822988 +WV,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,62.26645127 +WV,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,4478.147905 +WV,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,9701.272597 +WV,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,10.51 +WV,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,147.6937 +WV,PM10 Primary (Filt + Cond),5C_Incineration,,TON,1.030697021 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1411.358413 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1534.349262 +WV,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,138.5575542 +WV,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.06824416 +WV,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,3.032422405 +WV,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,1463.729 +WV,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.001659585 +WV,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,33.30216989 +WV,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,1.6253 +WV,PM2.5 Filterable,1A1c_Coke-ovens,natural_gas,TON,12.765991 +WV,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,8.406962406 +WV,PM2.5 Filterable,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.026839991 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,6.924890481 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,66.83571796 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,4.664864048 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.006826493 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.035456637 +WV,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,88.33114598 +WV,PM2.5 Filterable,1A2c_Chemicals,heavy_oil,TON,11.915 +WV,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,4.54750149 +WV,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,3641.299058 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,584.9388034 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.549878496 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.033884138 +WV,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,17.02404514 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,9489.58919 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,4.688670236 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0.621599995 +WV,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.359654945 +WV,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,13.93164436 +WV,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,144.0243241 +WV,PM2.5 Filterable,2A1_Cement-production,,TON,36.59002207 +WV,PM2.5 Filterable,2A2_Lime-production,,TON,22.33 +WV,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,421.434763 +WV,PM2.5 Filterable,2A6_Other-minerals,,TON,1136.479457 +WV,PM2.5 Filterable,2B_Chemicals-other,,TON,139.6539538 +WV,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,197.9662715 +WV,PM2.5 Filterable,2C3_Aluminum-production,,TON,40.626 +WV,PM2.5 Filterable,2C7_Other-metal,,TON,73.03905473 +WV,PM2.5 Filterable,2C7b_Nickel-production,Other_Fuel,TON,9.18267 +WV,PM2.5 Filterable,2D3d_Coating-application,,TON,1.46904647 +WV,PM2.5 Filterable,2D3e_Degreasing,,TON,0 +WV,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,183.7920688 +WV,PM2.5 Filterable,2H2_Food-and-beverage,,TON,2.363964908 +WV,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,83.05420435 +WV,PM2.5 Filterable,2I_Wood-processing,,TON,0.73613684 +WV,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,12.94203202 +WV,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,930.7790377 +WV,PM2.5 Filterable,3Dc_Other-farm,,TON,1846.383671 +WV,PM2.5 Filterable,5A_Solid-waste-disposal,Other_Fuel,TON,48.0348 +WV,PM2.5 Filterable,5C_Incineration,,TON,0.686638499 +WV,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,1286.826698 +WV,PM2.5 Filterable,5C_Open-burning-residential,,TON,1405.140966 +WV,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,106.8351648 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.07872416 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,9.153824567 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,5682.2146 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.004438425 +WV,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,55.24887726 +WV,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,5.3285 +WV,PM2.5 Primary (Filt + Cond),1A1c_Coke-ovens,natural_gas,TON,20.387475 +WV,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,24.01125281 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,15.26975139 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,7.611495461 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.486174766 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,9.677461587 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,77.74911819 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,98.23593231 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,2.312421709 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.173553802 +WV,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,208.744292 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,heavy_oil,TON,23.83 +WV,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,12.01994044 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,117.0140982 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,8.642529719 +WV,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.00016085 +WV,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,50.1196278 +WV,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,3641.299058 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,40.09244745 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,313.3891388 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,6.060293634 +WV,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,15.08864438 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,34.70826995 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.487964517 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.223974461 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,177.7441275 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,3.391968279 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,105.494165 +WV,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.564941926 +WV,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,4.27630867 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,165.1039957 +WV,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.021965717 +WV,PM2.5 Primary (Filt + Cond),1A3dii_Domestic-navigation (shipping),diesel_oil,TON,63.38189609 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,609.7679165 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,7.872655597 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.085971153 +WV,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,44.72393209 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14.57156934 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,8.013032768 +WV,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.188473053 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,5.63779153 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,100.7833899 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,9951.768648 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,12.03237056 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,1.596550004 +WV,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,5.312095143 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,37.61066767 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,2.494318799 +WV,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.016602367 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.82990242 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,55.65605928 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,2.560928995 +WV,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,11.72488549 +WV,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,28.21599377 +WV,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,407.8715862 +WV,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,36.61402207 +WV,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,76.13 +WV,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,421.434763 +WV,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,1273.540421 +WV,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,236.1768841 +WV,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,824.8396307 +WV,PM2.5 Primary (Filt + Cond),2C3_Aluminum-production,,TON,66.752 +WV,PM2.5 Primary (Filt + Cond),2C7_Other-metal,,TON,73.03905473 +WV,PM2.5 Primary (Filt + Cond),2C7b_Nickel-production,Other_Fuel,TON,9.18267 +WV,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,1.47026347 +WV,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +WV,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,252.9051929 +WV,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,600.2108236 +WV,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,83.81345685 +WV,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0.73613684 +WV,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,12.94203202 +WV,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,930.7790377 +WV,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,1846.383671 +WV,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,7.678 +WV,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,Other_Fuel,TON,48.2989 +WV,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.688138499 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,1286.826698 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,1405.140966 +WV,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,106.8351648 +WV,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0.0538 +WV,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,15.51399453 +WV,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,40523.69 +WV,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.1169428 +WV,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.998651649 +WV,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,7.7804 +WV,Sulfur Dioxide,1A1c_Coke-ovens,natural_gas,TON,159.41502 +WV,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,1.537058915 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.557217841 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.664297032 +WV,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.022572155 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,50.9149349 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,74.95830396 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,2026.316404 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,49.38304713 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.463258671 +WV,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,141.598982 +WV,Sulfur Dioxide,1A2c_Chemicals,heavy_oil,TON,0.009 +WV,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,45.65862551 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,2.030673869 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.09076711 +WV,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,7.25938E-06 +WV,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,61.10747071 +WV,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,2.587805563 +WV,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,123.6395894 +WV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.330663919 +WV,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5.538071543 +WV,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,1.438571176 +WV,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.348117143 +WV,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,0.025613923 +WV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,11.39983434 +WV,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,1.212410949 +WV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,5.035540083 +WV,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.61022254 +WV,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.972622927 +WV,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,3.850812452 +WV,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.003018152 +WV,Sulfur Dioxide,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,9.93438255 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,37.25285081 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,8.392800856 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WV,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.890653685 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.221750043 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.517937599 +WV,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.008328788 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.102046187 +WV,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,1.936673629 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,270.2870874 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,40.10790002 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0.126660254 +WV,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,7.413379796 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.565582334 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.022910928 +WV,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.000765159 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.006829188 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,0.851570341 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.118777436 +WV,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.768108963 +WV,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,13.883094 +WV,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,16.65139683 +WV,Sulfur Dioxide,2A1_Cement-production,,TON,0 +WV,Sulfur Dioxide,2A2_Lime-production,Other_Fuel,TON,0.36 +WV,Sulfur Dioxide,2A6_Other-minerals,,TON,1088.880113 +WV,Sulfur Dioxide,2B_Chemicals-other,,TON,57.9419703 +WV,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,1277.422307 +WV,Sulfur Dioxide,2C3_Aluminum-production,,TON,0.608 +WV,Sulfur Dioxide,2C7b_Nickel-production,Other_Fuel,TON,5.4 +WV,Sulfur Dioxide,2D3d_Coating-application,Other_Fuel,TON,0.0000258 +WV,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,16.14898645 +WV,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,31.8923253 +WV,Sulfur Dioxide,3F_Ag-res-on-field,,TON,0.4664 +WV,Sulfur Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,8.882925 +WV,Sulfur Dioxide,5C_Incineration,,TON,0 +WV,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,114.8458292 +WV,Sulfur Dioxide,5C_Open-burning-residential,,TON,47.8276451 +WV,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,2.771151014 +WV,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.27 +WV,Volatile Organic Compounds,11C_Other-natural,,TON,409950.615 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0.0136374 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,3.759710574 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,797.34049 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.00015824 +WV,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,12.37938074 +WV,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,0.024706093 +WV,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,99.8337237 +WV,Volatile Organic Compounds,1A1c_Coke-ovens,natural_gas,TON,17.910491 +WV,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,95.90159976 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,18.69250584 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,47.78783268 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.576656858 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,Anthracite_Lignite,TON,0 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,4.597668543 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,69.40264583 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,2.625146013 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.057745637 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,0.65315849 +WV,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,418.7820657 +WV,Volatile Organic Compounds,1A2c_Chemicals,heavy_oil,TON,0.087 +WV,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,20.9617632 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,171.3715283 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,82.88416898 +WV,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.014639551 +WV,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,288.873398 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,315.4152857 +WV,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,10971.01415 +WV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,36.30052738 +WV,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,493.252059 +WV,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,58.79301671 +WV,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,31.14778883 +WV,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,2.136358951 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,311.0451365 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,44.37857575 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,155.9232418 +WV,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,24.6350421 +WV,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,322.0292567 +WV,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,271.7588012 +WV,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,1.046254976 +WV,Volatile Organic Compounds,1A3dii_Domestic-navigation (shipping),diesel_oil,TON,120.4979154 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,23.2486354 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,5.340228731 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,heavy_oil,TON,0 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.013954164 +WV,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,670.1211929 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,20.43323168 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,235.5093024 +WV,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,3.594076345 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,8.173329901 +WV,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,1724.497916 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,11134.53225 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,4.027737045 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0.525399993 +WV,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,67.95646988 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,34.9413046 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,27.17453898 +WV,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.148301807 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.50491685 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,1978.290063 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,6.99097012 +WV,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,980.7889404 +WV,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,8769.661667 +WV,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,120.9331536 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,119.1637892 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,256.4146501 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,2003.197645 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,4140.996708 +WV,Volatile Organic Compounds,1B2av_Fugitive-petr-distr-marine,light_oil,TON,4.6988 +WV,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,77797.42353 +WV,Volatile Organic Compounds,2A1_Cement-production,,TON,0 +WV,Volatile Organic Compounds,2A2_Lime-production,Other_Fuel,TON,9.91 +WV,Volatile Organic Compounds,2A6_Other-minerals,,TON,453.9445441 +WV,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,0.717286265 +WV,Volatile Organic Compounds,2B_Chemicals-other,,TON,1574.083008 +WV,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,127.3883316 +WV,Volatile Organic Compounds,2C3_Aluminum-production,,TON,341.777 +WV,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,17.3618268 +WV,Volatile Organic Compounds,2C7b_Nickel-production,Other_Fuel,TON,5.4 +WV,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,7959.457914 +WV,Volatile Organic Compounds,2D3d_Coating-application,,TON,4502.680195 +WV,Volatile Organic Compounds,2D3e_Degreasing,,TON,709.7444492 +WV,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,3.70259978 +WV,Volatile Organic Compounds,2D3h_Printing,,TON,1599.952945 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,0 +WV,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,407.8072256 +WV,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,283.171554 +WV,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,220.6328138 +WV,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,264.2831531 +WV,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,25.75530242 +WV,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,91.47798475 +WV,Volatile Organic Compounds,3B2_Manure-sheep,,TON,10.10137246 +WV,Volatile Organic Compounds,3B3_Manure-swine,,TON,3.732141469 +WV,Volatile Organic Compounds,3B4_Manure-other,,TON,19.59212264 +WV,Volatile Organic Compounds,3B4_Manure-poultry,,TON,282.7529584 +WV,Volatile Organic Compounds,3B4d_Manure-goats,,TON,5.47693729 +WV,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,128.8538285 +WV,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,6.751 +WV,Volatile Organic Compounds,5A_Solid-waste-disposal,Other_Fuel,TON,171.1512428 +WV,Volatile Organic Compounds,5B_Compost-biogas,Other_Fuel,TON,274.239857 +WV,Volatile Organic Compounds,5C_Incineration,,TON,0 +WV,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,781.7818649 +WV,Volatile Organic Compounds,5C_Open-burning-residential,,TON,299.157733 +WV,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,102.095044 +WV,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,25.259875 +WV,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,116.62258 +WV,Volatile Organic Compounds,5D3_Wastewater-commertial,Other_Fuel,TON,1.06843201 +WV,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,25.22 +WY,Ammonia,1A1a_Public-Electricity,biomass,TON,0 +WY,Ammonia,1A1a_Public-Electricity,diesel_oil,TON,0.919692 +WY,Ammonia,1A1a_Public-Electricity,hard_coal,TON,133.8224048 +WY,Ammonia,1A1a_Public-Electricity,light_oil,TON,0.005692 +WY,Ammonia,1A1a_Public-Electricity,natural_gas,TON,2.5166 +WY,Ammonia,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Ammonia,1A1b_Pet-refining,light_oil,TON,0 +WY,Ammonia,1A1b_Pet-refining,natural_gas,TON,4.095140484 +WY,Ammonia,1A1g_Other-energy-transf,natural_gas,TON,6.265239459 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.131674381 +WY,Ammonia,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.022563841 +WY,Ammonia,1A2_Industrial_fuel_combustion,biomass,TON,0 +WY,Ammonia,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.0107136 +WY,Ammonia,1A2_Industrial_fuel_combustion,hard_coal,TON,0.08508124 +WY,Ammonia,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00792 +WY,Ammonia,1A2_Industrial_fuel_combustion,light_oil,TON,0 +WY,Ammonia,1A2_Industrial_fuel_combustion,natural_gas,TON,18.30741173 +WY,Ammonia,1A2c_Chemicals,natural_gas,TON,0 +WY,Ammonia,1A2g_Construction_and_Mining,diesel_oil,TON,0.968692756 +WY,Ammonia,1A2g_Construction_and_Mining,light_oil,TON,0.037681294 +WY,Ammonia,1A3bii_Road-LDV,diesel_oil,TON,13.48138747 +WY,Ammonia,1A3bii_Road-LDV,light_oil,TON,250.5408586 +WY,Ammonia,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,2.058569 +WY,Ammonia,1A3bii_Road-truck-Light-Commertial,light_oil,TON,20.71050764 +WY,Ammonia,1A3biii_Road-bus,diesel_oil,TON,0.639231328 +WY,Ammonia,1A3biii_Road-bus,light_oil,TON,0.325438454 +WY,Ammonia,1A3biii_Road-bus,natural_gas,TON,0.000139747 +WY,Ammonia,1A3biii_Road-truck-Long-haul,diesel_oil,TON,29.98660556 +WY,Ammonia,1A3biii_Road-truck-Long-haul,light_oil,TON,0.56772196 +WY,Ammonia,1A3biii_Road-truck-Short-haul,diesel_oil,TON,16.20248204 +WY,Ammonia,1A3biii_Road-truck-Short-haul,light_oil,TON,0.776301175 +WY,Ammonia,1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.38835081 +WY,Ammonia,1A3c_Rail,diesel_oil,TON,12.85045993 +WY,Ammonia,1A3c_Rail,light_oil,TON,0.004811039 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,biomass,TON,0 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.014399477 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,Ammonia,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.146490219 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.125862885 +WY,Ammonia,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.258022293 +WY,Ammonia,1A4bi_Residential-mobile,diesel_oil,TON,0.03082786 +WY,Ammonia,1A4bi_Residential-mobile,light_oil,TON,0.519188696 +WY,Ammonia,1A4bi_Residential-stationary,biomass,TON,30.64309288 +WY,Ammonia,1A4bi_Residential-stationary,diesel_oil,TON,0.420000011 +WY,Ammonia,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Ammonia,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Ammonia,1A4bi_Residential-stationary,natural_gas,TON,126.1891082 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.899032672 +WY,Ammonia,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.024590313 +WY,Ammonia,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002103451 +WY,Ammonia,1A5_Recreational-Equipment-Land,light_oil,TON,0.967258975 +WY,Ammonia,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.059884938 +WY,Ammonia,1A5_Recreational-Equipment-Marine,light_oil,TON,0.404458667 +WY,Ammonia,1B2av_Fugitive-petr-distr,,TON,0 +WY,Ammonia,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Ammonia,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,0 +WY,Ammonia,2A1_Cement-production,,TON,3.62131 +WY,Ammonia,2A2_Lime-production,,TON,0 +WY,Ammonia,2A6_Other-minerals,,TON,0 +WY,Ammonia,2B_Chemicals-other,,TON,345.81941 +WY,Ammonia,2C_Iron-steel-alloy,,TON,0 +WY,Ammonia,2C7_Other-metal,Other_Fuel,TON,0.000005978 +WY,Ammonia,2D3d_Coating-application,,TON,0 +WY,Ammonia,2D3e_Degreasing,,TON,0 +WY,Ammonia,2H1_Pulp-and-paper,,TON,0 +WY,Ammonia,2H2_Biodiesel Production,,TON,0 +WY,Ammonia,2H2_Food-and-beverage,Other_Fuel,TON,23.98014 +WY,Ammonia,2I_Wood-processing,,TON,0 +WY,Ammonia,3B1a_Cattle-dairy,,TON,142.0896088 +WY,Ammonia,3B1b_Cattle-non-dairy,,TON,4981.15416 +WY,Ammonia,3B2_Manure-sheep,,TON,1336.94643 +WY,Ammonia,3B3_Manure-swine,,TON,586.48569 +WY,Ammonia,3B4_Manure-other,,TON,905.709345 +WY,Ammonia,3B4_Manure-poultry,,TON,7.667773101 +WY,Ammonia,3B4d_Manure-goats,,TON,71.227276 +WY,Ammonia,3Da1_Inorganic-N-fertilizers,,TON,10243.5 +WY,Ammonia,3F_Ag-res-on-field,,TON,50.344 +WY,Ammonia,5A_Solid-waste-disposal,,TON,0 +WY,Ammonia,5C_Incineration,,TON,0.00057251 +WY,Ammonia,5C_Open-burning-commercial,,TON,0 +WY,Ammonia,5D1_Wastewater-domestic,,TON,1.6136965 +WY,Carbon Dioxide,1A1a_Public-Electricity,diesel_oil,TON,7940.14788 +WY,Carbon Dioxide,1A1a_Public-Electricity,natural_gas,TON,59433.63642 +WY,Carbon Dioxide,1A1b_Pet-refining,natural_gas,TON,46881.23619 +WY,Carbon Dioxide,1A1g_Other-energy-transf,natural_gas,TON,292153.2605 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,16226.37181 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,13256.98569 +WY,Carbon Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,760.0285832 +WY,Carbon Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,46491.95554 +WY,Carbon Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,80313.34353 +WY,Carbon Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,7082179.35 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,119338.5817 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,light_oil,TON,3063.995642 +WY,Carbon Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,1.052069097 +WY,Carbon Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,51392.41203 +WY,Carbon Dioxide,1A3bii_Road-LDV,diesel_oil,TON,411926.3521 +WY,Carbon Dioxide,1A3bii_Road-LDV,light_oil,TON,3202280.06 +WY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,63324.0659 +WY,Carbon Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,316103.2427 +WY,Carbon Dioxide,1A3biii_Road-bus,diesel_oil,TON,35383.57712 +WY,Carbon Dioxide,1A3biii_Road-bus,light_oil,TON,8996.259046 +WY,Carbon Dioxide,1A3biii_Road-bus,natural_gas,TON,5.465737 +WY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1847970.457 +WY,Carbon Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,12737.93186 +WY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1012684.6 +WY,Carbon Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,19323.76095 +WY,Carbon Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,28164.9519 +WY,Carbon Dioxide,1A3c_Rail,diesel_oil,TON,6048.55029 +WY,Carbon Dioxide,1A3c_Rail,light_oil,TON,374.3432393 +WY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,107.6721519 +WY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2294.616661 +WY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,2.735851495 +WY,Carbon Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,81972.15643 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,15482.36641 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,21025.53452 +WY,Carbon Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,1074.874779 +WY,Carbon Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,3795.154406 +WY,Carbon Dioxide,1A4bi_Residential-mobile,light_oil,TON,38793.36024 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,110699.6628 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,1854.734123 +WY,Carbon Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,260.558976 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,258.09055 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,67581.33805 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,7374.3353 +WY,Carbon Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,29423.86084 +WY,Carbon Dioxide,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,867.6321 +WY,Carbon Dioxide,1B2av_Fugitive-petr-distr,Other_Fuel,TON,402.6073 +WY,Carbon Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,5372.691844 +WY,Carbon Dioxide,2A2_Lime-production,Other_Fuel,TON,277.937 +WY,Carbon Dioxide,2A6_Other-minerals,Other_Fuel,TON,6261.9395 +WY,Carbon Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,63727871.04 +WY,Carbon Dioxide,5A_Solid-waste-disposal,Other_Fuel,TON,2567.858 +WY,Carbon Dioxide,5C_Open-burning-commercial,,TON,527.75 +WY,Carbon Monoxide,11C_Other-natural,,TON,53598.178 +WY,Carbon Monoxide,1A1a_Public-Electricity,biomass,TON,0 +WY,Carbon Monoxide,1A1a_Public-Electricity,diesel_oil,TON,95.71183885 +WY,Carbon Monoxide,1A1a_Public-Electricity,hard_coal,TON,15923.4778 +WY,Carbon Monoxide,1A1a_Public-Electricity,light_oil,TON,0.035575 +WY,Carbon Monoxide,1A1a_Public-Electricity,natural_gas,TON,32.01456152 +WY,Carbon Monoxide,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Carbon Monoxide,1A1b_Pet-refining,light_oil,TON,0 +WY,Carbon Monoxide,1A1b_Pet-refining,natural_gas,TON,719.5507137 +WY,Carbon Monoxide,1A1g_Other-energy-transf,natural_gas,TON,636.1537827 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,25.38556633 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,357.8358547 +WY,Carbon Monoxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,12.38108893 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,biomass,TON,100.7433166 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,279.9178152 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,hard_coal,TON,1133.948302 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.049501083 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,light_oil,TON,116.6289734 +WY,Carbon Monoxide,1A2_Industrial_fuel_combustion,natural_gas,TON,6269.183603 +WY,Carbon Monoxide,1A2c_Chemicals,natural_gas,TON,64.14 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,diesel_oil,TON,274.3866377 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,light_oil,TON,612.84446 +WY,Carbon Monoxide,1A2g_Construction_and_Mining,natural_gas,TON,0.027903614 +WY,Carbon Monoxide,1A3aii_Domestic-aviation,Other_Fuel,TON,1574.421825 +WY,Carbon Monoxide,1A3bii_Road-LDV,diesel_oil,TON,3347.780124 +WY,Carbon Monoxide,1A3bii_Road-LDV,light_oil,TON,61772.268 +WY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,395.528011 +WY,Carbon Monoxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,5374.912102 +WY,Carbon Monoxide,1A3biii_Road-bus,diesel_oil,TON,82.7356408 +WY,Carbon Monoxide,1A3biii_Road-bus,light_oil,TON,576.6074668 +WY,Carbon Monoxide,1A3biii_Road-bus,natural_gas,TON,0.05200581 +WY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1556.883985 +WY,Carbon Monoxide,1A3biii_Road-truck-Long-haul,light_oil,TON,229.7613039 +WY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1117.968482 +WY,Carbon Monoxide,1A3biii_Road-truck-Short-haul,light_oil,TON,461.2610957 +WY,Carbon Monoxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,1070.804579 +WY,Carbon Monoxide,1A3c_Rail,diesel_oil,TON,4126.203899 +WY,Carbon Monoxide,1A3c_Rail,light_oil,TON,83.0998968 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.019697851 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,10.96172863 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,45.15045581 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.017523865 +WY,Carbon Monoxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,67.41796401 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,62.0205352 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,4295.980993 +WY,Carbon Monoxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,23.0731715 +WY,Carbon Monoxide,1A4bi_Residential-mobile,diesel_oil,TON,10.37915671 +WY,Carbon Monoxide,1A4bi_Residential-mobile,light_oil,TON,8723.949274 +WY,Carbon Monoxide,1A4bi_Residential-stationary,biomass,TON,4502.512663 +WY,Carbon Monoxide,1A4bi_Residential-stationary,diesel_oil,TON,2.100000066 +WY,Carbon Monoxide,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Carbon Monoxide,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Carbon Monoxide,1A4bi_Residential-stationary,natural_gas,TON,305.0048052 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,343.7337403 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,413.7711793 +WY,Carbon Monoxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,3.18816011 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.76340343 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Land,light_oil,TON,7099.690352 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,14.51439888 +WY,Carbon Monoxide,1A5_Recreational-Equipment-Marine,light_oil,TON,3095.295085 +WY,Carbon Monoxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,4332.775111 +WY,Carbon Monoxide,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.017492 +WY,Carbon Monoxide,1B2av_Fugitive-petr-distr,,TON,0 +WY,Carbon Monoxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Carbon Monoxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,3005.537436 +WY,Carbon Monoxide,2A1_Cement-production,,TON,632.8185 +WY,Carbon Monoxide,2A2_Lime-production,,TON,0 +WY,Carbon Monoxide,2A6_Other-minerals,,TON,12938.46338 +WY,Carbon Monoxide,2B_Chemicals-other,,TON,16469.53969 +WY,Carbon Monoxide,2C_Iron-steel-alloy,,TON,0 +WY,Carbon Monoxide,2C7_Other-metal,Other_Fuel,TON,0.00101992 +WY,Carbon Monoxide,2D3d_Coating-application,,TON,0 +WY,Carbon Monoxide,2D3e_Degreasing,,TON,0 +WY,Carbon Monoxide,2H1_Pulp-and-paper,,TON,0 +WY,Carbon Monoxide,2H2_Biodiesel Production,,TON,0 +WY,Carbon Monoxide,2H2_Food-and-beverage,,TON,132.099002 +WY,Carbon Monoxide,2H3_Other-industrial-processes,Other_Fuel,TON,6.53674 +WY,Carbon Monoxide,2I_Wood-processing,,TON,0 +WY,Carbon Monoxide,3F_Ag-res-on-field,,TON,649.92 +WY,Carbon Monoxide,5A_Solid-waste-disposal,,TON,6.7504 +WY,Carbon Monoxide,5C_Incineration,,TON,0.454689453 +WY,Carbon Monoxide,5C_Open-burning-commercial,,TON,22.53 +WY,Carbon Monoxide,5C_Open-burning-land-clearing,,TON,1042.44952 +WY,Carbon Monoxide,5C_Open-burning-residential,,TON,849.848647 +WY,Carbon Monoxide,5C_Open-burning-yard-waste,,TON,41.093569 +WY,Carbon Monoxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.74088 +WY,Carbon Monoxide,5E_Other-waste,Other_Fuel,TON,0.0260516 +WY,Methane,1A1a_Public-Electricity,hard_coal,TON,0.02334 +WY,Methane,1A1a_Public-Electricity,natural_gas,TON,4.230982951 +WY,Methane,1A1b_Pet-refining,natural_gas,TON,79.97704782 +WY,Methane,1A1g_Other-energy-transf,natural_gas,TON,40.47173135 +WY,Methane,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.410066153 +WY,Methane,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.527280022 +WY,Methane,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,5.06070862 +WY,Methane,1A2_Industrial_fuel_combustion,biomass,TON,4.997003455 +WY,Methane,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.00273164 +WY,Methane,1A2_Industrial_fuel_combustion,hard_coal,TON,6.98920053 +WY,Methane,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.009900926 +WY,Methane,1A2_Industrial_fuel_combustion,natural_gas,TON,158304.1228 +WY,Methane,1A2g_Construction_and_Mining,diesel_oil,TON,2.492736955 +WY,Methane,1A2g_Construction_and_Mining,light_oil,TON,2.220992722 +WY,Methane,1A2g_Construction_and_Mining,natural_gas,TON,0.020198168 +WY,Methane,1A3bii_Road-LDV,diesel_oil,TON,25.51549205 +WY,Methane,1A3bii_Road-LDV,light_oil,TON,160.7694905 +WY,Methane,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,5.59742818 +WY,Methane,1A3bii_Road-truck-Light-Commertial,light_oil,TON,17.05512579 +WY,Methane,1A3biii_Road-bus,diesel_oil,TON,1.964699195 +WY,Methane,1A3biii_Road-bus,light_oil,TON,1.909500002 +WY,Methane,1A3biii_Road-bus,natural_gas,TON,0.03716436 +WY,Methane,1A3biii_Road-truck-Long-haul,diesel_oil,TON,145.0585611 +WY,Methane,1A3biii_Road-truck-Long-haul,light_oil,TON,0.426327669 +WY,Methane,1A3biii_Road-truck-Short-haul,diesel_oil,TON,27.36031814 +WY,Methane,1A3biii_Road-truck-Short-haul,light_oil,TON,1.189431656 +WY,Methane,1A3biv_Road-mopeds-motorcycles,light_oil,TON,2.82424895 +WY,Methane,1A3c_Rail,diesel_oil,TON,0.27301907 +WY,Methane,1A3c_Rail,light_oil,TON,0.252791678 +WY,Methane,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,9.89907E-05 +WY,Methane,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.377113338 +WY,Methane,1A4ai_Commercial-institutional-stationary,natural_gas,TON,1.443844696 +WY,Methane,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.558530172 +WY,Methane,1A4aii_Commercial-institutional-mobile,light_oil,TON,14.67397478 +WY,Methane,1A4aii_Commercial-institutional-mobile,natural_gas,TON,13.37743171 +WY,Methane,1A4bi_Residential-mobile,diesel_oil,TON,0.133639131 +WY,Methane,1A4bi_Residential-mobile,light_oil,TON,34.30738835 +WY,Methane,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,1.868986311 +WY,Methane,1A4c_Agriculture-forestry-fishing,light_oil,TON,1.942007165 +WY,Methane,1A4c_Agriculture-forestry-fishing,natural_gas,TON,1.320697659 +WY,Methane,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.011107227 +WY,Methane,1A5_Recreational-Equipment-Land,light_oil,TON,61.19801142 +WY,Methane,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.229475806 +WY,Methane,1A5_Recreational-Equipment-Marine,light_oil,TON,28.30756163 +WY,Methane,1B2ai_Fugitive-petr-prod,Other_Fuel,TON,817.497694 +WY,Methane,1B2av_Fugitive-petr-distr,Other_Fuel,TON,0.0075 +WY,Methane,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1832.97937 +WY,Methane,2A6_Other-minerals,Other_Fuel,TON,0.594621535 +WY,Methane,2H3_Other-industrial-processes,Other_Fuel,TON,15640.63173 +WY,Methane,5A_Solid-waste-disposal,Other_Fuel,TON,1242.905 +WY,Methane,5C_Open-burning-commercial,,TON,0.03 +WY,Nitrogen Oxides,11C_Other-natural,,TON,41949.2867 +WY,Nitrogen Oxides,1A1a_Public-Electricity,biomass,TON,0 +WY,Nitrogen Oxides,1A1a_Public-Electricity,diesel_oil,TON,232.7893909 +WY,Nitrogen Oxides,1A1a_Public-Electricity,hard_coal,TON,36498.5135 +WY,Nitrogen Oxides,1A1a_Public-Electricity,light_oil,TON,0.0100023 +WY,Nitrogen Oxides,1A1a_Public-Electricity,natural_gas,TON,31.3390521 +WY,Nitrogen Oxides,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Nitrogen Oxides,1A1b_Pet-refining,light_oil,TON,0 +WY,Nitrogen Oxides,1A1b_Pet-refining,natural_gas,TON,820.0064017 +WY,Nitrogen Oxides,1A1g_Other-energy-transf,natural_gas,TON,708.1590486 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,76.97081892 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,33.69171072 +WY,Nitrogen Oxides,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.986167578 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,biomass,TON,36.38158305 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,diesel_oil,TON,1010.324179 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,hard_coal,TON,4481.217513 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.544517228 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,light_oil,TON,3.252092331 +WY,Nitrogen Oxides,1A2_Industrial_fuel_combustion,natural_gas,TON,11399.69555 +WY,Nitrogen Oxides,1A2c_Chemicals,natural_gas,TON,109.96 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,diesel_oil,TON,503.360508 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,light_oil,TON,7.722285241 +WY,Nitrogen Oxides,1A2g_Construction_and_Mining,natural_gas,TON,0.006146515 +WY,Nitrogen Oxides,1A3aii_Domestic-aviation,Other_Fuel,TON,320.0559738 +WY,Nitrogen Oxides,1A3bii_Road-LDV,diesel_oil,TON,1404.81632 +WY,Nitrogen Oxides,1A3bii_Road-LDV,light_oil,TON,7703.148515 +WY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,190.215889 +WY,Nitrogen Oxides,1A3bii_Road-truck-Light-Commertial,light_oil,TON,634.3556216 +WY,Nitrogen Oxides,1A3biii_Road-bus,diesel_oil,TON,184.6282229 +WY,Nitrogen Oxides,1A3biii_Road-bus,light_oil,TON,69.73048624 +WY,Nitrogen Oxides,1A3biii_Road-bus,natural_gas,TON,0.02903185 +WY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,diesel_oil,TON,5801.345995 +WY,Nitrogen Oxides,1A3biii_Road-truck-Long-haul,light_oil,TON,26.62297448 +WY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,diesel_oil,TON,4152.790368 +WY,Nitrogen Oxides,1A3biii_Road-truck-Short-haul,light_oil,TON,39.0554456 +WY,Nitrogen Oxides,1A3biv_Road-mopeds-motorcycles,light_oil,TON,58.9346456 +WY,Nitrogen Oxides,1A3c_Rail,diesel_oil,TON,20845.57739 +WY,Nitrogen Oxides,1A3c_Rail,light_oil,TON,0.92502347 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,biomass,TON,0.06714484 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,47.99253156 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,hard_coal,TON,64.41727487 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.024706945 +WY,Nitrogen Oxides,1A4ai_Commercial-institutional-stationary,natural_gas,TON,69.95603679 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,118.6896104 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,light_oil,TON,61.75660095 +WY,Nitrogen Oxides,1A4aii_Commercial-institutional-mobile,natural_gas,TON,5.2143413 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,diesel_oil,TON,26.36153325 +WY,Nitrogen Oxides,1A4bi_Residential-mobile,light_oil,TON,88.41902235 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,biomass,TON,76.80507817 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,diesel_oil,TON,7.55999981 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Nitrogen Oxides,1A4bi_Residential-stationary,natural_gas,TON,780.217394 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,725.2748092 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,light_oil,TON,9.511225349 +WY,Nitrogen Oxides,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.588181561 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,diesel_oil,TON,1.97696189 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Land,light_oil,TON,148.350372 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,diesel_oil,TON,71.8214423 +WY,Nitrogen Oxides,1A5_Recreational-Equipment-Marine,light_oil,TON,217.3759025 +WY,Nitrogen Oxides,1B2ai_Fugitive-petr-prod,natural_gas,TON,17092.99491 +WY,Nitrogen Oxides,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,0.069968 +WY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,,TON,0 +WY,Nitrogen Oxides,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Nitrogen Oxides,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,2912.821693 +WY,Nitrogen Oxides,2A1_Cement-production,,TON,2267.221 +WY,Nitrogen Oxides,2A2_Lime-production,,TON,0 +WY,Nitrogen Oxides,2A6_Other-minerals,,TON,19444.98258 +WY,Nitrogen Oxides,2B_Chemicals-other,,TON,1288.73092 +WY,Nitrogen Oxides,2C_Iron-steel-alloy,,TON,0 +WY,Nitrogen Oxides,2C7_Other-metal,Other_Fuel,TON,0.00239768 +WY,Nitrogen Oxides,2D3d_Coating-application,,TON,7.14 +WY,Nitrogen Oxides,2D3e_Degreasing,,TON,0 +WY,Nitrogen Oxides,2H1_Pulp-and-paper,,TON,0 +WY,Nitrogen Oxides,2H2_Biodiesel Production,,TON,0 +WY,Nitrogen Oxides,2H2_Food-and-beverage,Other_Fuel,TON,47.6048 +WY,Nitrogen Oxides,2H3_Other-industrial-processes,Other_Fuel,TON,12.10919 +WY,Nitrogen Oxides,2I_Wood-processing,,TON,0 +WY,Nitrogen Oxides,3F_Ag-res-on-field,,TON,16.41 +WY,Nitrogen Oxides,5A_Solid-waste-disposal,,TON,0 +WY,Nitrogen Oxides,5C_Incineration,,TON,1.101218301 +WY,Nitrogen Oxides,5C_Open-burning-commercial,,TON,0.64 +WY,Nitrogen Oxides,5C_Open-burning-land-clearing,,TON,25.30217333 +WY,Nitrogen Oxides,5C_Open-burning-residential,,TON,59.9893195 +WY,Nitrogen Oxides,5C_Open-burning-yard-waste,,TON,2.27482268 +WY,Nitrogen Oxides,5D2_Wastewater-industrial,Other_Fuel,TON,0.882 +WY,Nitrogen Oxides,5E_Other-waste,Other_Fuel,TON,0.120898 +WY,Nitrous Oxide,1A1a_Public-Electricity,hard_coal,TON,0.01556 +WY,Nitrous Oxide,1A1a_Public-Electricity,natural_gas,TON,0.0099 +WY,Nitrous Oxide,1A1b_Pet-refining,natural_gas,TON,0.860034893 +WY,Nitrous Oxide,1A1g_Other-energy-transf,natural_gas,TON,5.093809863 +WY,Nitrous Oxide,1A2_Industrial_fuel_combustion,biomass,TON,3.093092 +WY,Nitrous Oxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,0.00348192 +WY,Nitrous Oxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4.65903114 +WY,Nitrous Oxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.005247 +WY,Nitrous Oxide,1A2_Industrial_fuel_combustion,natural_gas,TON,4.599477325 +WY,Nitrous Oxide,1A3bii_Road-LDV,diesel_oil,TON,1.159611304 +WY,Nitrous Oxide,1A3bii_Road-LDV,light_oil,TON,123.5183531 +WY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.197275512 +WY,Nitrous Oxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,12.35969784 +WY,Nitrous Oxide,1A3biii_Road-bus,diesel_oil,TON,0.085193457 +WY,Nitrous Oxide,1A3biii_Road-bus,light_oil,TON,0.392009252 +WY,Nitrous Oxide,1A3biii_Road-bus,natural_gas,TON,0.000350776 +WY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,1.7423582 +WY,Nitrous Oxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.305195056 +WY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,1.314065385 +WY,Nitrous Oxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.789786378 +WY,Nitrous Oxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.520659521 +WY,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,0.000120631 +WY,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.763152358 +WY,Nitrous Oxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.93878973 +WY,Nitrous Oxide,2A6_Other-minerals,Other_Fuel,TON,0.009 +WY,Nitrous Oxide,2H3_Other-industrial-processes,Other_Fuel,TON,1165.437573 +WY,PM10 Filterable,1A1a_Public-Electricity,biomass,TON,0.01274612 +WY,PM10 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.385696909 +WY,PM10 Filterable,1A1a_Public-Electricity,hard_coal,TON,1223.950198 +WY,PM10 Filterable,1A1a_Public-Electricity,light_oil,TON,0.183377768 +WY,PM10 Filterable,1A1a_Public-Electricity,natural_gas,TON,1.267017868 +WY,PM10 Filterable,1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM10 Filterable,1A1b_Pet-refining,light_oil,TON,0 +WY,PM10 Filterable,1A1b_Pet-refining,natural_gas,TON,174.2671927 +WY,PM10 Filterable,1A1g_Other-energy-transf,natural_gas,TON,11.56514001 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,236.2619076 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,21.89548771 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,319.3051272 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.698256752 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.215322226 +WY,PM10 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,273.7510602 +WY,PM10 Filterable,1A2c_Chemicals,natural_gas,TON,1.41866 +WY,PM10 Filterable,1A3b_Road-noncomb,Dust,TON,264126.9295 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.001001624 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.182675472 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,9.688088937 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001448931 +WY,PM10 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.4346846 +WY,PM10 Filterable,1A4bi_Residential-stationary,biomass,TON,635.0949708 +WY,PM10 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.453600042 +WY,PM10 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM10 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM10 Filterable,1A4bi_Residential-stationary,natural_gas,TON,1.525700081 +WY,PM10 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,235.37597 +WY,PM10 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WY,PM10 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM10 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,62.10271592 +WY,PM10 Filterable,2A1_Cement-production,,TON,140.0480653 +WY,PM10 Filterable,2A2_Lime-production,,TON,130.602817 +WY,PM10 Filterable,2A5b_Construction-and-demolition,,TON,4344.083281 +WY,PM10 Filterable,2A6_Other-minerals,,TON,96045.10728 +WY,PM10 Filterable,2B_Chemicals-other,,TON,2288.900113 +WY,PM10 Filterable,2C_Iron-steel-alloy,,TON,0.735 +WY,PM10 Filterable,2H1_Pulp-and-paper,,TON,28.981305 +WY,PM10 Filterable,2H2_Biodiesel Production,,TON,0 +WY,PM10 Filterable,2H2_Food-and-beverage,,TON,399.6293771 +WY,PM10 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,1085.360974 +WY,PM10 Filterable,2I_Wood-processing,,TON,5.7 +WY,PM10 Filterable,3B1a_Cattle-dairy,,TON,46.69984123 +WY,PM10 Filterable,3B1b_Cattle-non-dairy,,TON,17178.22233 +WY,PM10 Filterable,3Dc_Other-farm,,TON,19228.5869 +WY,PM10 Filterable,5A_Solid-waste-disposal,,TON,766.021 +WY,PM10 Filterable,5C_Incineration,Other_Fuel,TON,0.447831165 +WY,PM10 Filterable,5C_Open-burning-commercial,,TON,1.769087 +WY,PM10 Filterable,5C_Open-burning-land-clearing,,TON,129.0410837 +WY,PM10 Filterable,5C_Open-burning-residential,,TON,320.750947 +WY,PM10 Filterable,5C_Open-burning-yard-waste,,TON,13.94246 +WY,PM10 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.043562153 +WY,PM10 Filterable,5E_Other-waste,Other_Fuel,TON,0.01679339 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.012742793 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,3.696239081 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,1528.387439 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.235038341 +WY,PM10 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3.421128845 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,light_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,245.6689406 +WY,PM10 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,32.70857496 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.796820338 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.567231964 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.091063521 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,236.6350426 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,47.55512093 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,348.7829421 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.267029553 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.402313828 +WY,PM10 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,974.9956875 +WY,PM10 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.454 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,45.8819676 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.877451414 +WY,PM10 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000121977 +WY,PM10 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,35.06740177 +WY,PM10 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,264126.9295 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,78.26161398 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,372.5948985 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,12.0866828 +WY,PM10 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,34.04499279 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,12.02128796 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,2.76474767 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.000944775 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,251.4697124 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,1.486843575 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,203.6334769 +WY,PM10 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,2.296143384 +WY,PM10 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,3.13656883 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,613.2854316 +WY,PM10 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.047661496 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.001037874 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.470455406 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,15.45388776 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001481708 +WY,PM10 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,7.045301092 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,10.19085403 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.503971458 +WY,PM10 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.137339002 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.67968876 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,34.23476273 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,662.4165447 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.9996 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.963440031 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,60.62135495 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.393655931 +WY,PM10 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.031810097 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.259615601 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,69.63539713 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.578943303 +WY,PM10 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,9.350166767 +WY,PM10 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,395.46696 +WY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WY,PM10 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM10 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,147.8874942 +WY,PM10 Primary (Filt + Cond),2A1_Cement-production,,TON,144.753921 +WY,PM10 Primary (Filt + Cond),2A2_Lime-production,,TON,165.2152322 +WY,PM10 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,4344.083281 +WY,PM10 Primary (Filt + Cond),2A6_Other-minerals,,TON,98621.83314 +WY,PM10 Primary (Filt + Cond),2B_Chemicals-other,,TON,2647.902551 +WY,PM10 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.735 +WY,PM10 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.03444851 +WY,PM10 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.0286074 +WY,PM10 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +WY,PM10 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,28.981305 +WY,PM10 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0 +WY,PM10 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,677.9615324 +WY,PM10 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,1110.069224 +WY,PM10 Primary (Filt + Cond),2I_Wood-processing,,TON,5.7 +WY,PM10 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,46.69984123 +WY,PM10 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,17178.22233 +WY,PM10 Primary (Filt + Cond),3Dc_Other-farm,,TON,19228.5869 +WY,PM10 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,112.64 +WY,PM10 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,766.021 +WY,PM10 Primary (Filt + Cond),5C_Incineration,,TON,0.459648294 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,2.74 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,129.0410837 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-residential,,TON,320.750947 +WY,PM10 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,13.94246 +WY,PM10 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.06747 +WY,PM10 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.48539988 +WY,PM2.5 Filterable,1A1a_Public-Electricity,biomass,TON,0.001 +WY,PM2.5 Filterable,1A1a_Public-Electricity,diesel_oil,TON,1.331094968 +WY,PM2.5 Filterable,1A1a_Public-Electricity,hard_coal,TON,612.4510448 +WY,PM2.5 Filterable,1A1a_Public-Electricity,light_oil,TON,0.0977601 +WY,PM2.5 Filterable,1A1a_Public-Electricity,natural_gas,TON,1.244580603 +WY,PM2.5 Filterable,1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM2.5 Filterable,1A1b_Pet-refining,light_oil,TON,0 +WY,PM2.5 Filterable,1A1b_Pet-refining,natural_gas,TON,141.1434758 +WY,PM2.5 Filterable,1A1g_Other-energy-transf,natural_gas,TON,9.235140008 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,biomass,TON,46.58499725 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,diesel_oil,TON,19.22166034 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,hard_coal,TON,239.7320369 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,heavy_oil,TON,2.698229763 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,light_oil,TON,0.215320072 +WY,PM2.5 Filterable,1A2_Industrial_fuel_combustion,natural_gas,TON,227.9914192 +WY,PM2.5 Filterable,1A2c_Chemicals,natural_gas,TON,1.41866 +WY,PM2.5 Filterable,1A3b_Road-noncomb,Dust,TON,26938.38975 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,biomass,TON,0.001007349 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.20474075 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,hard_coal,TON,6.058484462 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,PM2.5 Filterable,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.437169041 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,biomass,TON,627.2992636 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,diesel_oil,TON,0.348599976 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM2.5 Filterable,1A4bi_Residential-stationary,natural_gas,TON,0.839134921 +WY,PM2.5 Filterable,1B2ai_Fugitive-petr-prod,natural_gas,TON,176.67922 +WY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,,TON,0 +WY,PM2.5 Filterable,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM2.5 Filterable,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,61.99276592 +WY,PM2.5 Filterable,2A1_Cement-production,,TON,74.76562229 +WY,PM2.5 Filterable,2A2_Lime-production,,TON,76.72227857 +WY,PM2.5 Filterable,2A5b_Construction-and-demolition,,TON,434.4083281 +WY,PM2.5 Filterable,2A6_Other-minerals,,TON,11906.37345 +WY,PM2.5 Filterable,2B_Chemicals-other,,TON,1529.877404 +WY,PM2.5 Filterable,2C_Iron-steel-alloy,,TON,0.022 +WY,PM2.5 Filterable,2H1_Pulp-and-paper,,TON,1.040549 +WY,PM2.5 Filterable,2H2_Biodiesel Production,,TON,0 +WY,PM2.5 Filterable,2H2_Food-and-beverage,,TON,296.6704334 +WY,PM2.5 Filterable,2H3_Other-industrial-processes,Other_Fuel,TON,516.5074326 +WY,PM2.5 Filterable,2I_Wood-processing,,TON,0 +WY,PM2.5 Filterable,3B1a_Cattle-dairy,,TON,9.706522851 +WY,PM2.5 Filterable,3B1b_Cattle-non-dairy,,TON,3570.477791 +WY,PM2.5 Filterable,3Dc_Other-farm,,TON,3831.893179 +WY,PM2.5 Filterable,5A_Solid-waste-disposal,,TON,114.807 +WY,PM2.5 Filterable,5C_Incineration,Other_Fuel,TON,0.298324442 +WY,PM2.5 Filterable,5C_Open-burning-commercial,,TON,1.769087 +WY,PM2.5 Filterable,5C_Open-burning-land-clearing,,TON,117.6551088 +WY,PM2.5 Filterable,5C_Open-burning-residential,,TON,293.740325 +WY,PM2.5 Filterable,5C_Open-burning-yard-waste,,TON,10.7503712 +WY,PM2.5 Filterable,5D2_Wastewater-industrial,Other_Fuel,TON,0.043562153 +WY,PM2.5 Filterable,5E_Other-waste,Other_Fuel,TON,0.01679339 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,biomass,TON,0.001 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,diesel_oil,TON,1.774978659 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,hard_coal,TON,940.4761632 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,light_oil,TON,0.149415 +WY,PM2.5 Primary (Filt + Cond),1A1a_Public-Electricity,natural_gas,TON,3.083098932 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,heavy_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A1b_Pet-refining,natural_gas,TON,212.5452237 +WY,PM2.5 Primary (Filt + Cond),1A1g_Other-energy-transf,natural_gas,TON,30.28500256 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,3.682669888 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,1.53683937 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.091063521 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,biomass,TON,46.95941829 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,diesel_oil,TON,41.95721449 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,hard_coal,TON,269.2112603 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,heavy_oil,TON,3.267011569 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,light_oil,TON,0.402071612 +WY,PM2.5 Primary (Filt + Cond),1A2_Industrial_fuel_combustion,natural_gas,TON,918.4921842 +WY,PM2.5 Primary (Filt + Cond),1A2c_Chemicals,natural_gas,TON,1.454 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,diesel_oil,TON,44.5055074 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,light_oil,TON,4.489637944 +WY,PM2.5 Primary (Filt + Cond),1A2g_Construction_and_Mining,natural_gas,TON,0.000121977 +WY,PM2.5 Primary (Filt + Cond),1A3aii_Domestic-aviation,Other_Fuel,TON,30.42768606 +WY,PM2.5 Primary (Filt + Cond),1A3b_Road-noncomb,Dust,TON,26938.38975 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,diesel_oil,TON,58.44921245 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-LDV,light_oil,TON,181.9501552 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,8.8036981 +WY,PM2.5 Primary (Filt + Cond),1A3bii_Road-truck-Light-Commertial,light_oil,TON,14.91614889 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,diesel_oil,TON,8.729173094 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,light_oil,TON,1.863740129 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-bus,natural_gas,TON,0.000523102 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,diesel_oil,TON,171.1718749 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Long-haul,light_oil,TON,0.643582731 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,diesel_oil,TON,149.9343196 +WY,PM2.5 Primary (Filt + Cond),1A3biii_Road-truck-Short-haul,light_oil,TON,1.006037459 +WY,PM2.5 Primary (Filt + Cond),1A3biv_Road-mopeds-motorcycles,light_oil,TON,1.89071253 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,diesel_oil,TON,594.8786259 +WY,PM2.5 Primary (Filt + Cond),1A3c_Rail,light_oil,TON,0.043930983 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,biomass,TON,0.001063945 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.61812578 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,hard_coal,TON,7.542839709 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A4ai_Commercial-institutional-stationary,natural_gas,TON,4.304878949 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,diesel_oil,TON,9.88512832 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,light_oil,TON,5.075783128 +WY,PM2.5 Primary (Filt + Cond),1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.137339002 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,diesel_oil,TON,1.629298226 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-mobile,light_oil,TON,31.49748293 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,biomass,TON,654.6208375 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,diesel_oil,TON,0.894600043 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,hard_coal,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1A4bi_Residential-stationary,natural_gas,TON,3.276875029 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,diesel_oil,TON,58.80271946 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,light_oil,TON,0.362198085 +WY,PM2.5 Primary (Filt + Cond),1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.031810097 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,diesel_oil,TON,0.25182712 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Land,light_oil,TON,64.06469128 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,diesel_oil,TON,1.531575486 +WY,PM2.5 Primary (Filt + Cond),1A5_Recreational-Equipment-Marine,light_oil,TON,8.60215212 +WY,PM2.5 Primary (Filt + Cond),1B2ai_Fugitive-petr-prod,natural_gas,TON,336.73621 +WY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,,TON,0 +WY,PM2.5 Primary (Filt + Cond),1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,PM2.5 Primary (Filt + Cond),1B2b_Fugitive-NG-prod-distr,natural_gas,TON,147.5451142 +WY,PM2.5 Primary (Filt + Cond),2A1_Cement-production,,TON,79.4714781 +WY,PM2.5 Primary (Filt + Cond),2A2_Lime-production,,TON,92.81051273 +WY,PM2.5 Primary (Filt + Cond),2A5b_Construction-and-demolition,,TON,434.4083281 +WY,PM2.5 Primary (Filt + Cond),2A6_Other-minerals,,TON,12232.48803 +WY,PM2.5 Primary (Filt + Cond),2B_Chemicals-other,,TON,1883.014624 +WY,PM2.5 Primary (Filt + Cond),2C_Iron-steel-alloy,,TON,0.022 +WY,PM2.5 Primary (Filt + Cond),2C7_Other-metal,Other_Fuel,TON,0.02836851 +WY,PM2.5 Primary (Filt + Cond),2D3d_Coating-application,,TON,0.026785 +WY,PM2.5 Primary (Filt + Cond),2D3e_Degreasing,,TON,0 +WY,PM2.5 Primary (Filt + Cond),2H1_Pulp-and-paper,,TON,1.040549 +WY,PM2.5 Primary (Filt + Cond),2H2_Biodiesel Production,,TON,0 +WY,PM2.5 Primary (Filt + Cond),2H2_Food-and-beverage,,TON,575.0025907 +WY,PM2.5 Primary (Filt + Cond),2H3_Other-industrial-processes,Other_Fuel,TON,516.7352726 +WY,PM2.5 Primary (Filt + Cond),2I_Wood-processing,,TON,0 +WY,PM2.5 Primary (Filt + Cond),3B1a_Cattle-dairy,,TON,9.706522851 +WY,PM2.5 Primary (Filt + Cond),3B1b_Cattle-non-dairy,,TON,3570.477791 +WY,PM2.5 Primary (Filt + Cond),3Dc_Other-farm,,TON,3831.893179 +WY,PM2.5 Primary (Filt + Cond),3F_Ag-res-on-field,,TON,81.131 +WY,PM2.5 Primary (Filt + Cond),5A_Solid-waste-disposal,,TON,114.807 +WY,PM2.5 Primary (Filt + Cond),5C_Incineration,,TON,0.308113505 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-commercial,,TON,2.74 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-land-clearing,,TON,117.6551088 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-residential,,TON,293.740325 +WY,PM2.5 Primary (Filt + Cond),5C_Open-burning-yard-waste,,TON,10.7503712 +WY,PM2.5 Primary (Filt + Cond),5D2_Wastewater-industrial,Other_Fuel,TON,0.06747 +WY,PM2.5 Primary (Filt + Cond),5E_Other-waste,Other_Fuel,TON,0.05582 +WY,Sulfur Dioxide,1A1a_Public-Electricity,biomass,TON,0 +WY,Sulfur Dioxide,1A1a_Public-Electricity,diesel_oil,TON,16.53012689 +WY,Sulfur Dioxide,1A1a_Public-Electricity,hard_coal,TON,33472.5347 +WY,Sulfur Dioxide,1A1a_Public-Electricity,light_oil,TON,0.131628 +WY,Sulfur Dioxide,1A1a_Public-Electricity,natural_gas,TON,0.256021831 +WY,Sulfur Dioxide,1A1b_Pet-refining,heavy_oil,TON,0 +WY,Sulfur Dioxide,1A1b_Pet-refining,light_oil,TON,0 +WY,Sulfur Dioxide,1A1b_Pet-refining,natural_gas,TON,566.4449118 +WY,Sulfur Dioxide,1A1g_Other-energy-transf,natural_gas,TON,2142.305071 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,0.13198112 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,0.386101389 +WY,Sulfur Dioxide,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,0.004259913 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,biomass,TON,6.907326136 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,diesel_oil,TON,86.74234438 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,hard_coal,TON,4556.896849 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.266924884 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,light_oil,TON,0.319804919 +WY,Sulfur Dioxide,1A2_Industrial_fuel_combustion,natural_gas,TON,394.9065424 +WY,Sulfur Dioxide,1A2c_Chemicals,natural_gas,TON,0.445 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,diesel_oil,TON,0.948841541 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,light_oil,TON,0.046988222 +WY,Sulfur Dioxide,1A2g_Construction_and_Mining,natural_gas,TON,5.89202E-06 +WY,Sulfur Dioxide,1A3aii_Domestic-aviation,Other_Fuel,TON,40.31246668 +WY,Sulfur Dioxide,1A3bii_Road-LDV,diesel_oil,TON,3.576666846 +WY,Sulfur Dioxide,1A3bii_Road-LDV,light_oil,TON,40.77967896 +WY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,0.545202144 +WY,Sulfur Dioxide,1A3bii_Road-truck-Light-Commertial,light_oil,TON,4.030014155 +WY,Sulfur Dioxide,1A3biii_Road-bus,diesel_oil,TON,0.305518888 +WY,Sulfur Dioxide,1A3biii_Road-bus,light_oil,TON,0.114394595 +WY,Sulfur Dioxide,1A3biii_Road-bus,natural_gas,TON,2.89385E-05 +WY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,diesel_oil,TON,15.63295708 +WY,Sulfur Dioxide,1A3biii_Road-truck-Long-haul,light_oil,TON,0.16224768 +WY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,diesel_oil,TON,8.668214554 +WY,Sulfur Dioxide,1A3biii_Road-truck-Short-haul,light_oil,TON,0.24616062 +WY,Sulfur Dioxide,1A3biv_Road-mopeds-motorcycles,light_oil,TON,0.364116797 +WY,Sulfur Dioxide,1A3c_Rail,diesel_oil,TON,14.48064552 +WY,Sulfur Dioxide,1A3c_Rail,light_oil,TON,0.006039468 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,biomass,TON,0.002214293 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,2.574618053 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,hard_coal,TON,83.21209107 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.001131193 +WY,Sulfur Dioxide,1A4ai_Commercial-institutional-stationary,natural_gas,TON,0.401973332 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,0.13585198 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,light_oil,TON,0.327948761 +WY,Sulfur Dioxide,1A4aii_Commercial-institutional-mobile,natural_gas,TON,0.006022348 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,diesel_oil,TON,0.032890549 +WY,Sulfur Dioxide,1A4bi_Residential-mobile,light_oil,TON,0.635693789 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,biomass,TON,18.01792426 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,diesel_oil,TON,2.982000136 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Sulfur Dioxide,1A4bi_Residential-stationary,natural_gas,TON,4.573719975 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,0.895517691 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,light_oil,TON,0.030454902 +WY,Sulfur Dioxide,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.001460608 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.002258278 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Land,light_oil,TON,1.107579938 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,diesel_oil,TON,0.067790393 +WY,Sulfur Dioxide,1A5_Recreational-Equipment-Marine,light_oil,TON,0.483533417 +WY,Sulfur Dioxide,1B2ai_Fugitive-petr-prod,natural_gas,TON,476.932 +WY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,,TON,0 +WY,Sulfur Dioxide,1B2av_Fugitive-petr-distr,light_oil,TON,0 +WY,Sulfur Dioxide,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,1433.124531 +WY,Sulfur Dioxide,2A1_Cement-production,,TON,162.0247 +WY,Sulfur Dioxide,2A2_Lime-production,,TON,0 +WY,Sulfur Dioxide,2A6_Other-minerals,,TON,1074.456703 +WY,Sulfur Dioxide,2B_Chemicals-other,,TON,1174.732982 +WY,Sulfur Dioxide,2C_Iron-steel-alloy,,TON,0 +WY,Sulfur Dioxide,2C7_Other-metal,Other_Fuel,TON,0.00001484 +WY,Sulfur Dioxide,2D3d_Coating-application,,TON,0 +WY,Sulfur Dioxide,2D3e_Degreasing,,TON,0 +WY,Sulfur Dioxide,2H1_Pulp-and-paper,,TON,0.089607 +WY,Sulfur Dioxide,2H2_Biodiesel Production,,TON,0 +WY,Sulfur Dioxide,2H2_Food-and-beverage,Other_Fuel,TON,8.9528 +WY,Sulfur Dioxide,2H3_Other-industrial-processes,Other_Fuel,TON,0.0224 +WY,Sulfur Dioxide,2I_Wood-processing,,TON,0 +WY,Sulfur Dioxide,3F_Ag-res-on-field,,TON,3.598 +WY,Sulfur Dioxide,5A_Solid-waste-disposal,,TON,0 +WY,Sulfur Dioxide,5C_Incineration,,TON,0.330039131 +WY,Sulfur Dioxide,5C_Open-burning-commercial,,TON,0 +WY,Sulfur Dioxide,5C_Open-burning-land-clearing,,TON,10.50040187 +WY,Sulfur Dioxide,5C_Open-burning-residential,,TON,9.99821974 +WY,Sulfur Dioxide,5C_Open-burning-yard-waste,,TON,0.278849224 +WY,Sulfur Dioxide,5D2_Wastewater-industrial,Other_Fuel,TON,0.285955 +WY,Sulfur Dioxide,5E_Other-waste,Other_Fuel,TON,0.00799488 +WY,Volatile Organic Compounds,11C_Other-natural,,TON,222936.009 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,biomass,TON,0 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,diesel_oil,TON,19.13267516 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,hard_coal,TON,638.27273 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,light_oil,TON,0.001423 +WY,Volatile Organic Compounds,1A1a_Public-Electricity,natural_gas,TON,5.198814015 +WY,Volatile Organic Compounds,1A1b_Pet-refining,heavy_oil,TON,1044.905603 +WY,Volatile Organic Compounds,1A1b_Pet-refining,light_oil,TON,2289.712871 +WY,Volatile Organic Compounds,1A1b_Pet-refining,natural_gas,TON,1394.960262 +WY,Volatile Organic Compounds,1A1g_Other-energy-transf,natural_gas,TON,409.5214241 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,diesel_oil,TON,5.088402205 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,light_oil,TON,10.37603991 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_comb_off_hwy,natural_gas,TON,1.09393564 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,biomass,TON,11.20932737 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,diesel_oil,TON,85.96268076 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,hard_coal,TON,33.87748226 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,heavy_oil,TON,0.00277828 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,light_oil,TON,4.444897205 +WY,Volatile Organic Compounds,1A2_Industrial_fuel_combustion,natural_gas,TON,8064.078667 +WY,Volatile Organic Compounds,1A2c_Chemicals,natural_gas,TON,9.14 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,diesel_oil,TON,45.9726361 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,light_oil,TON,42.37857766 +WY,Volatile Organic Compounds,1A2g_Construction_and_Mining,natural_gas,TON,0.004366086 +WY,Volatile Organic Compounds,1A3aii_Domestic-aviation,Other_Fuel,TON,187.7117395 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,diesel_oil,TON,384.6819509 +WY,Volatile Organic Compounds,1A3bii_Road-LDV,light_oil,TON,5047.794448 +WY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,diesel_oil,TON,48.2643135 +WY,Volatile Organic Compounds,1A3bii_Road-truck-Light-Commertial,light_oil,TON,412.6724462 +WY,Volatile Organic Compounds,1A3biii_Road-bus,diesel_oil,TON,17.55388353 +WY,Volatile Organic Compounds,1A3biii_Road-bus,light_oil,TON,43.45638601 +WY,Volatile Organic Compounds,1A3biii_Road-bus,natural_gas,TON,0.004923577 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,diesel_oil,TON,356.402171 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Long-haul,light_oil,TON,9.226157111 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,diesel_oil,TON,215.8245108 +WY,Volatile Organic Compounds,1A3biii_Road-truck-Short-haul,light_oil,TON,20.51088402 +WY,Volatile Organic Compounds,1A3biv_Road-mopeds-motorcycles,light_oil,TON,265.465107 +WY,Volatile Organic Compounds,1A3c_Rail,diesel_oil,TON,972.9259225 +WY,Volatile Organic Compounds,1A3c_Rail,light_oil,TON,2.064728437 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,biomass,TON,0.00679318 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,diesel_oil,TON,6.829539882 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,hard_coal,TON,0.757043288 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,light_oil,TON,0.093106191 +WY,Volatile Organic Compounds,1A4ai_Commercial-institutional-stationary,natural_gas,TON,11.1561601 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,diesel_oil,TON,14.0340715 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,light_oil,TON,146.9892794 +WY,Volatile Organic Compounds,1A4aii_Commercial-institutional-mobile,natural_gas,TON,2.89169943 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,diesel_oil,TON,2.399941732 +WY,Volatile Organic Compounds,1A4bi_Residential-mobile,light_oil,TON,541.6353587 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,biomass,TON,703.8143113 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,diesel_oil,TON,0.299459989 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,hard_coal,TON,0 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,light_oil,TON,0 +WY,Volatile Organic Compounds,1A4bi_Residential-stationary,natural_gas,TON,41.92632931 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,diesel_oil,TON,61.5256479 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,light_oil,TON,16.47704739 +WY,Volatile Organic Compounds,1A4c_Agriculture-forestry-fishing,natural_gas,TON,0.285485359 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,diesel_oil,TON,0.456049665 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Land,light_oil,TON,2380.430764 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,diesel_oil,TON,3.936559892 +WY,Volatile Organic Compounds,1A5_Recreational-Equipment-Marine,light_oil,TON,634.5556912 +WY,Volatile Organic Compounds,1B2ai_Fugitive-petr-prod,natural_gas,TON,42627.6369 +WY,Volatile Organic Compounds,1B2aiv_Fugitive-petr-refining,Other_Fuel,TON,140.5077814 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,,TON,248.610345 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,diesel_oil,TON,155.8514297 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,Gasoline,TON,7203.753667 +WY,Volatile Organic Compounds,1B2av_Fugitive-petr-distr,light_oil,TON,741.3630336 +WY,Volatile Organic Compounds,1B2b_Fugitive-NG-prod-distr,natural_gas,TON,38525.01406 +WY,Volatile Organic Compounds,2A1_Cement-production,,TON,56.939 +WY,Volatile Organic Compounds,2A2_Lime-production,,TON,0 +WY,Volatile Organic Compounds,2A6_Other-minerals,,TON,503.2511047 +WY,Volatile Organic Compounds,2A6_Other-minerals,Gasoline,TON,3.457941977 +WY,Volatile Organic Compounds,2B_Chemicals-other,,TON,3142.750317 +WY,Volatile Organic Compounds,2C_Iron-steel-alloy,,TON,0 +WY,Volatile Organic Compounds,2C7_Other-metal,Other_Fuel,TON,0.00014058 +WY,Volatile Organic Compounds,2D3a_Domestic-solvent-use,,TON,2539.315223 +WY,Volatile Organic Compounds,2D3d_Coating-application,,TON,1453.268489 +WY,Volatile Organic Compounds,2D3e_Degreasing,,TON,266.7125697 +WY,Volatile Organic Compounds,2D3f_Dry-cleaning,Other_Fuel,TON,1.56060003 +WY,Volatile Organic Compounds,2D3h_Printing,Other_Fuel,TON,175.15846 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,,TON,100.2713377 +WY,Volatile Organic Compounds,2D3i_Other-solvent-use,heavy_oil,TON,561.483113 +WY,Volatile Organic Compounds,2H1_Pulp-and-paper,,TON,0 +WY,Volatile Organic Compounds,2H2_Biodiesel Production,,TON,1 +WY,Volatile Organic Compounds,2H2_Food-and-beverage,,TON,38.23930594 +WY,Volatile Organic Compounds,2H3_Other-industrial-processes,Other_Fuel,TON,119.816058 +WY,Volatile Organic Compounds,2I_Wood-processing,,TON,0 +WY,Volatile Organic Compounds,3B1a_Cattle-dairy,,TON,11.36716927 +WY,Volatile Organic Compounds,3B1b_Cattle-non-dairy,,TON,398.492348 +WY,Volatile Organic Compounds,3B2_Manure-sheep,,TON,106.9557184 +WY,Volatile Organic Compounds,3B3_Manure-swine,,TON,46.918851 +WY,Volatile Organic Compounds,3B4_Manure-other,,TON,72.4567519 +WY,Volatile Organic Compounds,3B4_Manure-poultry,,TON,0.613421861 +WY,Volatile Organic Compounds,3B4d_Manure-goats,,TON,5.69818221 +WY,Volatile Organic Compounds,3Df_Use-of-pesticides,,TON,308.7243312 +WY,Volatile Organic Compounds,3F_Ag-res-on-field,,TON,69.12 +WY,Volatile Organic Compounds,5A_Solid-waste-disposal,,TON,33.93 +WY,Volatile Organic Compounds,5C_Incineration,,TON,0.052441848 +WY,Volatile Organic Compounds,5C_Open-burning-commercial,,TON,3.06 +WY,Volatile Organic Compounds,5C_Open-burning-land-clearing,,TON,71.4786459 +WY,Volatile Organic Compounds,5C_Open-burning-residential,,TON,62.5379897 +WY,Volatile Organic Compounds,5C_Open-burning-yard-waste,,TON,10.2733922 +WY,Volatile Organic Compounds,5D1_Wastewater-domestic,,TON,8.116225 +WY,Volatile Organic Compounds,5D2_Wastewater-industrial,Other_Fuel,TON,525.7294245 +WY,Volatile Organic Compounds,5E_Other-waste,Other_Fuel,TON,0.92809262 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_pollutant_mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_pollutant_mapping.csv new file mode 100644 index 0000000000..2cd07fcbb8 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/NEI_pollutant_mapping.csv @@ -0,0 +1,19 @@ +# File: NEI_pollutant_mapping.csv +# Title: mapping file for NEI pollutants and GCAM pollutants +# Units: NA +# Source: NA - Mapping file +# Column types: cc +# ---------- +NEI_pollutant,Non.CO2 +Ammonia,NH3 +Nitrogen Oxides,NOx +PM10 Primary (Filt + Cond),PM10 +PM2.5 Primary (Filt + Cond),PM2.5 +Volatile Organic Compounds,NMVOC +Sulfur Dioxide,SO2 +Carbon Monoxide,CO +Methane,CH4 +Nitrous Oxide,N2O +Carbon Dioxide,CO2 +Organic Carbon,OC +Black Carbon,BC diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/base_year_EF_techs.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/base_year_EF_techs.csv new file mode 100644 index 0000000000..db19e27318 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/base_year_EF_techs.csv @@ -0,0 +1,13 @@ +# File: base_year_EF_techs.csv +# Title: Mapping file for copying emission factors (EFs) from existing technologies in base year +# Description: All non-electric technologies should be listed here if they do not have base-year EFs. EFs must be copied from some similar technology. +# Units: NA +# Source: NA - Mapping file +# Column types: cccccc +# ---------- +supplysector.orig,subsector.orig,stub.technology.orig,supplysector.new,subsector.new,stub.technology.new +comm heating,gas,gas furnace,comm heating,gas,gas furnace hi-eff +comm hot water,gas,gas water heater,comm hot water,gas,gas water heater hi-eff +comm heating,coal,coal furnace,resid heating ,coal,coal furnace +resid cooking,gas,gas oven,resid cooking,gas,gas oven hi-eff +resid cooking,refined liquids,lpg oven,resid cooking,refined liquids,lpg oven hi-eff diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/state_tier1_caps.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/state_tier1_caps.csv new file mode 100644 index 0000000000..b199a7e975 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/state_tier1_caps.csv @@ -0,0 +1,5327 @@ +# File: state_tier1_caps.csv +# Title: Tier 1 emissions by state sector pollutant and year +# Description: Note: some data is interpolated +# Units: 1000 tons +# Source: https://www.epa.gov/air-emissions-inventories/air-pollutant-emissions-trends-data +# Column types: ncnccnnnnnnnnnnnnnnnnnnnnnnnnn +# ---------- +stfips,state,tier_1_code,tier1_description,pollutant_code,emissions90,emissions96,emissions97,emissions98,emissions99,emissions00,emissions01,emissions02,emissions03,emissions04,emissions05,emissions06,emissions07,emissions08,emissions09,emissions10,emissions11,emissions12,emissions13,emissions14,emissions15,emissions16,emissions17,emissions18,emissions19 +1,AL,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01516,0.01605,0.01597,0.01651,0.016949,0.015926,0.6483392,0.640472058,0.632604916,0.624737774,0.596224626,0.567711479,0.539198332,0.522571961,0.505945589,0.489319218,0.488462596,0.487605975,0.486749353,0.457457277,0.428165201,0.398873126,0.398873126,0.398873126 +1,AL,1,FUEL COMB. ELEC. UTIL.,NOX,187.79386,219.009,209.98918,198.66722,186.3871,182.334029,169.063668,162.4571829,155.057338,136.658226,134.1019685,123.159224,122.364056,113.0329924,96.00923043,78.87946547,61.6871485,57.76831163,53.84947477,49.9306379,40.76923536,31.60783282,22.44643028,24.087938,18.971049 +1,AL,1,FUEL COMB. ELEC. UTIL.,PM10,8.85994,9.28102,8.83472,8.37946,29.21702,28.920119,27.213014,26.03978501,26.38171611,26.7236472,27.0655783,19.7560826,12.4465869,5.137091206,5.876249051,6.615406896,7.323321741,6.469981304,5.616640867,4.763300429,3.950868841,3.138437253,2.326005664,2.326005664,2.326005664 +1,AL,1,FUEL COMB. ELEC. UTIL.,PM25,3.60246,4.36618,4.23529,4.00666,25.092193,24.408143,23.388713,22.52253144,22.84583593,23.16914043,23.49244492,16.580168,9.667891073,2.755614149,3.465757383,4.175900617,4.866090851,4.407620699,3.949150548,3.490680396,2.964636337,2.438592277,1.912548218,1.912548218,1.912548218 +1,AL,1,FUEL COMB. ELEC. UTIL.,SO2,528.64015,584.96044,567.98876,575.47384,542.65734,512.08508,466.231637,448.2928643,458.621837,412.439787,460.1747366,455.193064,447.189154,361.2084519,300.5832618,239.955174,179.3226022,159.5225501,139.7224981,119.922446,83.44327413,46.96410223,10.48493033,12.019227,6.415872 +1,AL,1,FUEL COMB. ELEC. UTIL.,VOC,0.79719,0.99511,0.9925,1.00374,2.23487,2.133452,2.105723,2.259568,2.143550196,2.027532392,1.911514588,1.797696545,1.683878503,1.57006046,1.433560153,1.297059847,1.15179904,1.217204429,1.282609817,1.348015206,1.303014349,1.258013491,1.213012634,1.213012634,1.213012634 +1,AL,1,FUEL COMB. ELEC. UTIL.,CO,6.86859,8.06884,8.04705,8.12158,11.51526,10.345005,9.807628,11.212116,11.32424124,11.43636648,11.54849172,11.51218658,11.47588144,11.4395763,10.9668444,10.4941125,9.9576446,9.6423108,9.326977,9.0116432,9.125182333,9.238721467,9.3522606,9.3522606,9.3522606 +1,AL,2,FUEL COMB. INDUSTRIAL,CO,25.73799,49.77487,48.15407,48.41578,43.88043,43.576394,45.374914,67.13219162,65.81066175,64.48913187,63.167602,49.57710761,35.98661322,22.39611883,22.61858405,22.84104926,71.86470057,66.7471092,61.62951784,56.51192647,43.65623227,30.80053808,17.94484388,17.94484388,17.94484388 +1,AL,2,FUEL COMB. INDUSTRIAL,VOC,7.55391,4.44464,4.37024,4.33768,4.07291,4.0706,4.092758,2.274272103,2.26371857,2.253165037,2.242611505,2.075396651,1.908181797,1.740966943,1.743319585,1.745672227,3.282876125,3.090067831,2.897259538,2.704451244,2.378932067,2.053412889,1.727893712,1.727893712,1.727893712 +1,AL,2,FUEL COMB. INDUSTRIAL,SO2,54.82764,52.69352,52.00472,51.73982,42.81297,42.125593,44.067971,33.39878683,32.37404933,31.34931184,30.32457434,27.4738541,24.62313386,21.77241362,20.38686739,19.00132115,41.32218386,38.16929643,35.01640899,31.86352156,24.45469381,17.04586607,9.637038327,9.637038327,9.637038327 +1,AL,2,FUEL COMB. INDUSTRIAL,PM25,8.95548,6.56238,6.32133,6.37696,5.701548,5.667881,5.855379,2.715406176,2.846252766,2.977099357,3.107945947,3.043270559,2.978595171,2.913919783,3.174866775,3.435813767,34.66393051,35.51917391,36.37441732,37.22966073,25.66888713,14.10811353,2.547339936,2.547339936,2.547339936 +1,AL,2,FUEL COMB. INDUSTRIAL,PM10,12.63573,10.87613,10.53728,10.56054,8.582618,8.474332,8.809374,5.563218565,5.675496798,5.787775032,5.900053265,5.062986049,4.225918833,3.388851616,3.62230577,3.855759924,46.27438322,47.24203355,48.20968388,49.17733421,33.76794361,18.358553,2.949162393,2.949162393,2.949162393 +1,AL,2,FUEL COMB. INDUSTRIAL,NH3,0.38396,1.31672,1.28847,1.3128,0.453654,0.457349,0.460238,0.38786043,0.371219399,0.354578369,0.337937338,0.24279463,0.147651921,0.052509212,0.071564475,0.090619737,0.812746476,0.755929131,0.699111786,0.642294441,0.439639269,0.236984097,0.034328925,0.034328925,0.034328925 +1,AL,2,FUEL COMB. INDUSTRIAL,NOX,75.0194,98.5869,96.90908,96.43691,63.36205,63.137215,63.78486,48.6024981,44.82649865,41.0504992,37.27449975,34.96296233,32.65142492,30.3398875,32.0215286,33.7031697,35.44736279,36.72796487,38.00856695,39.28916903,32.84198373,26.39479843,19.94761313,19.94761313,19.94761313 +1,AL,3,FUEL COMB. OTHER,PM10,13.61068,6.01598,6.04569,5.82756,6.142005,6.468668,6.508774,5.81084596,5.802461385,5.79407681,5.785692235,4.31742023,2.849148225,1.38087622,1.469460179,1.558044137,1.688984091,2.129453237,2.569922383,3.010391528,3.283705276,3.557019023,3.830332771,3.830332771,3.830332771 +1,AL,3,FUEL COMB. OTHER,PM25,12.19398,4.99501,5.00689,4.92284,5.350037,5.664726,5.689449,4.93577613,4.935322988,4.934869847,4.934416705,3.744864338,2.555311971,1.365759605,1.456820891,1.547882178,1.65398098,2.092368212,2.530755445,2.969142678,3.250061933,3.530981188,3.811900443,3.811900443,3.811900443 +1,AL,3,FUEL COMB. OTHER,SO2,65.70762,44.75749,45.48909,38.86062,36.099921,36.640105,37.319392,39.66825117,39.64997462,39.63169807,39.61342152,26.71129972,13.80917792,0.907056116,0.738317019,0.569577921,0.417300247,0.313749795,0.210199343,0.106648891,0.114216966,0.121785042,0.129353117,0.129353117,0.129353117 +1,AL,3,FUEL COMB. OTHER,CO,89.93378,34.23424,34.29082,34.15163,65.515923,37.318006,37.426965,71.05160555,70.48616218,69.92071881,69.35527544,50.01507181,30.67486817,11.33466454,11.54395555,11.75324656,12.10373583,14.99790364,17.89207145,20.78623926,23.5814874,26.37673555,29.1719837,29.1719837,29.1719837 +1,AL,3,FUEL COMB. OTHER,NH3,0.19499,0.19472,0.19543,0.16797,0.165283,0.16712,0.169439,0.170265497,0.17055738,0.170849262,0.171141145,0.271487832,0.371834519,0.472181206,0.471716113,0.471251021,0.466007881,0.492414569,0.518821257,0.545227945,0.529972216,0.514716487,0.499460758,0.499460758,0.499460758 +1,AL,3,FUEL COMB. OTHER,VOC,16.58653,10.98382,10.99259,10.94515,54.663071,11.676211,11.686365,56.24208046,40.05867282,23.87526518,7.69185754,5.743158458,3.794459375,1.845760293,1.92999584,2.014231387,2.037687728,2.444918464,2.8521492,3.259379937,3.654695261,4.050010585,4.445325909,4.445325909,4.445325909 +1,AL,3,FUEL COMB. OTHER,NOX,16.94807,13.04372,12.93734,11.49376,6.365992,6.201905,6.255004,25.14383292,25.49767225,25.85151158,26.20535092,18.91163123,11.61791153,4.324191843,4.298306661,4.272421479,4.228874747,3.784052402,3.339230057,2.894407712,2.739874341,2.585340971,2.4308076,2.4308076,2.4308076 +1,AL,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,6.16726,7.7348,7.9107,8.18168,7.57789,7.810139,8.016728,12.769296,10.41945412,8.069612247,5.719770371,6.502580647,7.285390924,8.0682012,7.565045667,7.061890133,6.5587346,6.252424177,5.946113753,5.63980333,5.486314492,5.332825654,5.179336816,5.179336816,5.179336816 +1,AL,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,23.18752,32.10071,33.00012,33.97481,15.82141,16.296737,16.796007,9.839553,9.535936101,9.232319203,8.928702304,6.438313506,3.947924708,1.457535911,1.514803179,1.572070448,1.629337717,1.636002176,1.642666635,1.649331094,1.659356983,1.669382871,1.67940876,1.67940876,1.67940876 +1,AL,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.90882,0.71519,0.73233,0.75621,0.791904,0.813965,0.835489,0.785668215,0.76430023,0.742932244,0.721564259,0.639244154,0.556924049,0.474603944,0.532937598,0.591271253,0.649604907,0.664925836,0.680246765,0.695567695,0.673109747,0.6506518,0.628193853,0.628193853,0.628193853 +1,AL,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,1.01733,1.0479,1.0728,1.10829,1.068639,1.09872,1.127882,1.154461775,1.131560404,1.108659034,1.085757663,0.9397416,0.793725537,0.647709474,0.666511441,0.685313409,0.704115377,0.70673119,0.709347003,0.711962816,0.7017522,0.691541585,0.681330969,0.681330969,0.681330969 +1,AL,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.49398,1.2868,1.31917,1.37185,2.06357,2.120263,2.178188,2.032381,2.119874402,2.207367805,2.294861207,1.918321834,1.541782461,1.165243088,1.580404158,1.995565229,2.410726299,2.320113367,2.229500435,2.138887503,1.972988189,1.807088875,1.64118956,1.64118956,1.64118956 +1,AL,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,3.21457,2.29521,2.35559,2.48176,0.01122,0.011589,0.011886,0.03483,0.034795143,0.034760286,0.034725429,0.033426953,0.032128476,0.03083,0.081425,0.13202,0.182615,0.164130872,0.145646744,0.127162616,0.137904809,0.148647002,0.159389195,0.159389195,0.159389195 +1,AL,4,CHEMICAL & ALLIED PRODUCT MFG,CO,54.70092,44.2331,45.59779,46.96713,7.85382,8.090869,8.309889,5.721405,6.21689189,6.712378779,7.207865669,5.153014812,3.098163956,1.043313099,1.736527033,2.429740967,3.122954901,3.133777588,3.144600276,3.155422963,3.214001206,3.272579448,3.331157691,3.331157691,3.331157691 +1,AL,5,METALS PROCESSING,NH3,0.1536,0.0985,0.10299,0.10104,0.102546,0.103162,0.107358,0.3763,0.3590042,0.341708399,0.324412599,0.218369866,0.112327133,0.0062844,0.029425427,0.052566453,0.07570748,0.060849357,0.045991233,0.03113311,0.03246565,0.03379819,0.03513073,0.03513073,0.03513073 +1,AL,5,METALS PROCESSING,NOX,3.83192,5.0454,5.25298,5.14221,6.98949,7.011909,7.297009,6.011153,5.852733393,5.694313786,5.535894179,5.96974899,6.403603801,6.837458612,6.540544215,6.243629819,5.946715422,5.790683291,5.63465116,5.478619029,4.790476643,4.102334256,3.41419187,3.41419187,3.41419187 +1,AL,5,METALS PROCESSING,PM10,5.50261,7.7023,7.94346,7.71736,10.770767,10.728681,11.066315,6.197865016,7.486770971,8.775676927,10.06458288,9.144669276,8.224755671,7.304842065,6.656223026,6.007603986,5.358984947,5.201596317,5.044207686,4.886819056,4.15573199,3.424644925,2.693557859,2.693557859,2.693557859 +1,AL,5,METALS PROCESSING,PM25,3.5088,5.29748,5.45603,5.29515,9.29228,9.251703,9.539,4.85240218,6.08813308,7.323863979,8.559594878,7.831123071,7.102651264,6.374179456,5.798292624,5.222405791,4.646518958,4.47764697,4.308774982,4.139902994,3.514363534,2.888824074,2.263284614,2.263284614,2.263284614 +1,AL,5,METALS PROCESSING,SO2,15.88203,12.75525,13.23054,12.97089,12.88236,12.954388,13.489715,14.038939,13.02568187,12.01242473,10.9991676,11.79032686,12.58148611,13.37264537,13.34786848,13.32309159,13.2983147,12.47238083,11.64644697,10.8205131,10.73203512,10.64355713,10.55507915,10.55507915,10.55507915 +1,AL,5,METALS PROCESSING,VOC,7.00039,5.814,5.99442,5.84123,4.49532,4.478997,4.617498,3.298799,3.190226066,3.081653132,2.973080198,2.652039672,2.330999146,2.00995862,1.954358046,1.898757471,1.843156897,1.812949333,1.782741768,1.752534204,1.640406096,1.528277988,1.41614988,1.41614988,1.41614988 +1,AL,5,METALS PROCESSING,CO,6.61641,36.1217,37.64911,36.8687,31.76794,31.844196,33.046901,38.24652,37.9769166,37.7073132,37.4377098,31.91801536,26.39832093,20.8786265,17.58291247,14.28719843,10.9914844,11.17310068,11.35471695,11.53633323,11.76601193,11.99569064,12.22536935,12.22536935,12.22536935 +1,AL,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.15656,1.0574,1.06135,1.06263,0.36678,0.36787,0.368485,0.172203829,0.199831209,0.22745859,0.25508597,0.206311653,0.157537336,0.108763019,0.196875253,0.284987487,0.373191692,0.347638381,0.32208507,0.296531759,0.236766687,0.177001616,0.117236544,0.117236544,0.117236544 +1,AL,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.12551,0.22789,0.23103,0.23187,0.168667,0.169385,0.169736,0.123844364,0.149511036,0.175177709,0.200844382,0.164254865,0.127665348,0.091075831,0.178792218,0.266508605,0.354316963,0.332668189,0.311019415,0.289370642,0.227154289,0.164937937,0.102721585,0.102721585,0.102721585 +1,AL,6,PETROLEUM & RELATED INDUSTRIES,SO2,34.929,33.2421,33.80976,34.03222,32.67332,33.149182,33.700788,22.991091,20.12930836,17.26752571,14.40574307,15.25381929,16.10189552,16.94997174,17.66935647,18.38874119,19.19618962,15.25674392,11.31729822,7.377852518,6.324415021,5.270977524,4.217540027,4.217540027,4.217540027 +1,AL,6,PETROLEUM & RELATED INDUSTRIES,CO,16.21475,1.1564,1.15842,1.15944,10.46912,10.618551,10.796202,13.618925,9.412057413,5.205189827,0.99832224,1.161336363,1.324350487,1.48736461,5.939299883,10.39123516,14.88223582,14.44410447,14.00597312,13.56784177,11.02953019,8.491218614,5.952907036,5.952907036,5.952907036 +1,AL,6,PETROLEUM & RELATED INDUSTRIES,NH3,,0.00041,0.00041,0.00041,0.000932,0.000946,0.000964,,0,0,,0,0,,0.000966667,0.001933333,0.0029,0.002866667,0.002833333,0.0028,0.002783711,0.002767423,0.002751134,0.002751134,0.002751134 +1,AL,6,PETROLEUM & RELATED INDUSTRIES,VOC,3.63205,4.48795,4.60474,4.64611,4.03537,3.528109,3.562127,4.024713,3.504251,2.983789001,2.463327001,2.019093138,1.574859274,1.13062541,8.286111056,15.4415967,22.10346031,20.9786671,19.85387389,18.72908068,15.75699073,12.78490077,9.812810821,9.812810821,9.812810821 +1,AL,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.3874,3.4534,3.46562,3.47086,2.62594,2.641849,2.661123,0.887923,0.726295003,0.564667007,0.40303901,0.446149997,0.489260983,0.53237197,4.093610425,7.654848881,11.22619086,10.67503634,10.12388182,9.572727297,7.600349616,5.627971934,3.655594253,3.655594253,3.655594253 +1,AL,7,OTHER INDUSTRIAL PROCESSES,SO2,17.62098,19.6988,20.45375,20.80295,21.436,22.090494,22.743639,18.75141639,19.51252357,20.27363075,21.03473793,18.44697946,15.85922099,13.27146252,12.03735843,10.80325435,9.568810466,11.63032691,13.69184336,15.75335981,14.94003581,14.12671182,13.31338782,13.31338782,13.31338782 +1,AL,7,OTHER INDUSTRIAL PROCESSES,VOC,14.07495,38.25227,39.80173,40.69042,31.17833,32.055118,23.27159441,25.22329332,23.90219568,22.58109803,21.26000038,20.32962489,19.3992494,18.46887391,17.09020765,15.71154139,14.32669713,14.76217548,15.19765383,15.63313218,15.38106855,15.12900492,14.87694129,14.87694129,14.87694129 +1,AL,7,OTHER INDUSTRIAL PROCESSES,PM25,12.20003,10.42435,10.73803,11.23575,12.481118,12.384377,13.81912997,9.003439208,9.681227753,10.3590163,11.03680484,12.121419,13.20603315,14.2906473,12.44489767,10.59914805,8.7491797,8.365831581,7.982483462,7.599135343,7.57239892,7.545662497,7.518926074,7.518926074,7.518926074 +1,AL,7,OTHER INDUSTRIAL PROCESSES,PM10,26.27306,26.94788,27.36305,29.31084,26.364456,24.844862,26.50562366,22.43823753,23.19784482,23.95745211,24.71705939,25.94726584,27.17747229,28.40767874,24.61771638,20.82775401,17.03224112,15.99599726,14.95975339,13.92350952,13.79972111,13.67593269,13.55214428,13.55214428,13.55214428 +1,AL,7,OTHER INDUSTRIAL PROCESSES,NOX,20.97235,24.70275,25.57331,25.84101,29.70397,30.471376,31.414371,25.076115,26.32124312,27.56637123,28.81149935,28.01513353,27.21876771,26.42240189,24.80413264,23.18586339,21.54590714,22.88530069,24.22469424,25.5640878,25.76773815,25.9713885,26.17503885,26.17503885,26.17503885 +1,AL,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.13009,0.13581,0.13995,0.139852,0.145167,0.149274,1.803919655,1.847005809,1.890091962,1.933178116,1.751676327,1.570174539,1.38867275,1.435092015,1.481511279,1.527230544,1.52697034,1.526710135,1.526449931,1.512417375,1.498384818,1.484352262,1.484352262,1.484352262 +1,AL,7,OTHER INDUSTRIAL PROCESSES,CO,68.68642,64.08936,66.39766,67.06835,61.0597,62.569586,64.77026734,48.0037225,47.28556734,46.56741218,45.84925702,47.4020244,48.95479178,50.50755915,40.24720309,29.98684703,19.70834797,24.59688208,29.48541619,34.3739503,33.14648117,31.91901203,30.6915429,30.6915429,30.6915429 +1,AL,8,SOLVENT UTILIZATION,NH3,,0.00002,0.00002,0.00002,0.000027,0.000027,0.00003,,1.67E-05,3.33E-05,0.00005,0.000061,0.000072,0.000083,0.000444833,0.000806667,0.0018685,0.001482833,0.001097167,0.0007115,0.000965669,0.001219839,0.001474008,0.001474008,0.001474008 +1,AL,8,SOLVENT UTILIZATION,NOX,0.08049,0.0749,0.07742,0.07757,0.22383,0.228594,0.236399,0.226068,0.248804101,0.271540201,0.294276302,0.233919274,0.173562247,0.11320522,0.113128247,0.113051273,0.1346943,0.143733433,0.152772567,0.1618117,0.17542521,0.189038719,0.202652229,0.202652229,0.202652229 +1,AL,8,SOLVENT UTILIZATION,PM10,0.02714,0.273,0.28071,0.28812,0.16435,0.166546,0.169983,0.131906789,0.125213105,0.118519421,0.111825738,0.110505798,0.109185857,0.107865917,0.097961878,0.088057838,0.082640219,0.077033631,0.071427042,0.065820454,0.062611527,0.059402599,0.056193672,0.056193672,0.056193672 +1,AL,8,SOLVENT UTILIZATION,PM25,0.02269,0.2274,0.23378,0.23992,0.16435,0.166546,0.169983,0.104852329,0.101322793,0.097793257,0.094263721,0.094534208,0.094804695,0.095075181,0.082795062,0.070514943,0.061474573,0.051962943,0.042451314,0.032939684,0.034196194,0.035452704,0.036709215,0.036709215,0.036709215 +1,AL,8,SOLVENT UTILIZATION,SO2,,0.001,0.00104,0.00107,0.02332,0.024074,0.025196,0.003327,0.002514667,0.001702333,0.00089,0.000750003,0.000610007,0.00047001,0.000510107,0.000550203,0.0009303,0.0008247,0.0007191,0.0006135,0.000749045,0.000884589,0.001020134,0.001020134,0.001020134 +1,AL,8,SOLVENT UTILIZATION,VOC,93.98581,97.46527,99.63816,88.47133,110.14343,95.1288,97.835714,120.2672203,119.670507,119.0737936,118.4770803,95.35979784,72.24251538,49.12523292,48.4025693,47.67990568,46.78974145,50.51633944,54.24293744,57.96953543,54.0822334,50.19493137,46.30762934,46.30762934,46.30762934 +1,AL,8,SOLVENT UTILIZATION,CO,0.3424,0.1129,0.11768,0.1204,0.22316,0.227427,0.233746,0.216278,0.229516033,0.242754065,0.255992098,0.226513369,0.197034639,0.16755591,0.147075223,0.126594537,0.12432385,0.1265771,0.12883035,0.1310836,0.140925873,0.150768146,0.160610419,0.160610419,0.160610419 +1,AL,9,STORAGE & TRANSPORT,NOX,0.01484,0.0436,0.04492,0.04624,0.11674,0.117627,0.120982,0.229826,0.2346875,0.239549,0.2444105,0.189098237,0.133785973,0.07847371,0.069266997,0.060060283,0.05085357,0.04014106,0.02942855,0.01871604,0.015557927,0.012399813,0.0092417,0.0092417,0.0092417 +1,AL,9,STORAGE & TRANSPORT,SO2,0.02608,0.0056,0.00587,0.00588,0.00967,0.009797,0.010074,0.013244,0.010497,0.00775,0.005003,0.005962677,0.006922353,0.00788203,0.005828217,0.003774403,0.00172059,0.001254683,0.000788777,0.00032287,0.000293913,0.000264957,0.000236,0.000236,0.000236 +1,AL,9,STORAGE & TRANSPORT,VOC,24.78888,21.06953,22.202,22.54611,23.21002,22.279936,22.439788,24.90377764,24.83858283,24.77338801,24.70819319,23.48339261,22.25859203,21.03379145,21.98451432,22.9352372,18.72627746,16.60151455,14.47675163,12.35198872,11.87412446,11.39626019,10.91839593,10.91839593,10.91839593 +1,AL,9,STORAGE & TRANSPORT,NH3,,0.00038,0.00038,0.00039,0.00023,0.000233,0.000237,,0,0,,0,0,,5.83E-05,0.000116667,0.000175,0.0002,0.000225,0.00025,0.000612,0.000974,0.001336,0.001336,0.001336 +1,AL,9,STORAGE & TRANSPORT,CO,0.01358,0.0232,0.0243,0.02448,0.07255,0.07378,0.075742,0.173725,0.173872233,0.174019467,0.1741667,0.13651073,0.09885476,0.06119879,0.062575003,0.063951217,0.06532743,0.049713357,0.034099283,0.01848521,0.015001207,0.011517203,0.0080332,0.0080332,0.0080332 +1,AL,9,STORAGE & TRANSPORT,PM10,0.37247,1.8706,1.93351,1.96529,1.197672,1.213047,1.2425,1.091798307,0.95399597,0.816193633,0.678391295,0.89089897,1.103406646,1.315914321,1.166889729,1.017865137,0.869904645,0.996124988,1.122345331,1.248565674,1.167736486,1.086907298,1.00607811,1.00607811,1.00607811 +1,AL,9,STORAGE & TRANSPORT,PM25,0.1708,0.53226,0.5494,0.55552,0.537928,0.544108,0.558069,0.599055501,0.546306654,0.493557806,0.440808959,0.621202081,0.801595203,0.981988325,0.87190313,0.761817934,0.652711709,0.730272321,0.807832933,0.885393546,0.806513573,0.7276336,0.648753627,0.648753627,0.648753627 +1,AL,10,WASTE DISPOSAL & RECYCLING,VOC,18.19767,9.98876,10.2045,10.58219,10.62098,8.859996,8.894633,12.611836,12.403272,12.194708,11.986144,9.282517162,6.578890325,3.875263487,3.790055105,3.704846722,3.61963834,4.460464115,5.301289891,6.142115667,5.550300596,4.958485525,4.366670455,4.366670455,4.366670455 +1,AL,10,WASTE DISPOSAL & RECYCLING,CO,38.0847,78.76121,79.07719,83.34232,83.58586,56.402841,56.439661,104.91387,105.04127,105.16867,105.29607,86.26815371,67.24023742,48.21232113,47.37881471,46.54530829,45.71180187,55.30833987,64.90487787,74.50141587,65.43843762,56.37545937,47.31248113,47.31248113,47.31248113 +1,AL,10,WASTE DISPOSAL & RECYCLING,NH3,1.08854,0.91955,0.91957,0.93316,0.953064,0.96642,0.986437,0.01086,0.03361,0.05636,0.07911,0.101122124,0.123134248,0.145146372,0.131717238,0.118288105,0.104858972,0.169494404,0.234129837,0.29876527,0.288859792,0.278954314,0.269048837,0.269048837,0.269048837 +1,AL,10,WASTE DISPOSAL & RECYCLING,NOX,1.57403,2.83974,2.88216,3.02012,3.33447,2.549246,2.562643,4.01578,4.158638667,4.301497334,4.444356001,3.545130187,2.645904374,1.74667856,1.789852986,1.833027411,1.876201837,2.16508462,2.453967403,2.742850185,2.394540524,2.046230862,1.6979212,1.6979212,1.6979212 +1,AL,10,WASTE DISPOSAL & RECYCLING,PM10,6.30279,11.96286,12.2226,12.72515,13.416394,10.799724,10.826483,15.77357886,15.97774263,16.18190639,16.38607016,13.22155018,10.0570302,6.892510224,7.223200441,7.553890659,7.884580876,8.695855826,9.507130775,10.31840572,9.737662193,9.156918661,8.57617513,8.57617513,8.57617513 +1,AL,10,WASTE DISPOSAL & RECYCLING,PM25,5.56618,11.50714,11.73959,12.23329,12.619146,9.98412,10.000154,14.79935251,14.99312147,15.18689043,15.3806594,11.9539129,8.527166413,5.100419922,5.577133057,6.053846193,6.530559328,7.12987006,7.729180791,8.328491523,8.10224044,7.875989358,7.649738276,7.649738276,7.649738276 +1,AL,10,WASTE DISPOSAL & RECYCLING,SO2,0.33785,0.24874,0.26044,0.26305,0.51074,0.520707,0.531552,0.488761,0.494775,0.500789,0.506803,0.361738507,0.216674013,0.07160952,0.105978885,0.140348251,0.174717616,0.388093222,0.601468827,0.814844433,0.721657507,0.628470582,0.535283657,0.535283657,0.535283657 +1,AL,11,HIGHWAY VEHICLES,VOC,206.69921,137.11641,131.10987,127.53621,121.20144,120.34371,112.97181,81.57965622,76.27103837,70.96242051,65.65380266,68.79811627,71.94242989,59.13111667,65.70590669,64.95015499,76.38835631,73.35167913,70.31500194,67.27832476,63.79223539,56.12162783,50.9533208,45.52063857,42.70943574 +1,AL,11,HIGHWAY VEHICLES,SO2,11.09551,6.43813,6.43947,6.32889,6.27931,6.26941,6.31295,6.22363807,5.301647779,4.379657488,3.457667197,2.091000983,0.724334769,0.680636989,0.715834998,0.756150703,0.683067962,0.69664087,0.710213779,0.723786687,0.733448563,0.777517144,0.725075957,0.334424588,0.261291455 +1,AL,11,HIGHWAY VEHICLES,PM25,7.24746,5.09266,4.63465,4.09552,3.59128,3.84793,3.54295,6.180914819,5.991490547,5.802066275,5.612642003,5.05593415,4.499226296,3.881073443,5.309261414,4.011833959,4.68506149,4.429620688,4.174179886,3.918739084,3.441335718,2.795846545,2.652425385,2.602730884,2.427396504 +1,AL,11,HIGHWAY VEHICLES,PM10,8.59036,6.33285,5.85219,5.24985,4.70533,5.04277,4.70979,7.472950129,7.285771976,7.098593822,6.911415669,6.486017695,6.060619722,5.370604696,6.963468086,5.702423223,8.511490016,8.057477305,7.603464595,7.149451884,6.693513325,5.620031718,5.512599618,5.945757591,5.782040675 +1,AL,11,HIGHWAY VEHICLES,NOX,202.48867,187.07087,182.9681,173.98357,163.02427,179.28261,168.18602,216.9068227,200.8323532,184.7578838,168.6834143,159.3013751,149.9193359,133.8277222,151.3906583,129.8822386,152.7454848,144.9788114,137.2121379,129.4454645,117.6147157,101.7333636,94.85284884,80.13602933,72.62973907 +1,AL,11,HIGHWAY VEHICLES,CO,2340.75406,1674.01395,1602.25032,1534.27815,1412.34247,1435.40935,1363.58015,1079.83313,995.7369693,911.6408083,827.5446473,792.2367735,756.9288997,633.9003771,610.84221,600.8127221,701.7776915,706.7030308,711.6283702,716.5537096,682.5969521,588.5457402,556.7849027,500.9646988,475.7719712 +1,AL,11,HIGHWAY VEHICLES,NH3,3.18217,4.85801,5.38619,5.14232,5.2469,5.62812,5.69436,3.056984378,2.968163732,2.879343087,2.790522442,2.877335077,2.964147713,2.687193021,2.539321066,2.534809199,2.724930802,2.624071995,2.523213188,2.422354381,2.348653033,2.352482665,2.371546429,2.106210271,2.071056154 +1,AL,12,OFF-HIGHWAY,PM25,4.54511,4.71934,4.7362,4.77035,4.45114,4.44425,4.3869,4.879835471,4.69207748,4.504319489,4.316561497,4.188521097,4.060480697,3.423553303,3.75585713,3.63670164,3.369232101,3.237796102,3.106360103,2.974924104,2.753137688,2.439794181,2.309564858,2.213564919,2.117564979 +1,AL,12,OFF-HIGHWAY,NH3,0.44038,0.51767,0.5205,0.53602,0.04435,0.04435,0.04435,0.040878958,0.041325007,0.041771057,0.042217106,0.043555665,0.044894223,0.041617871,0.045881725,0.046379663,0.043833939,0.044191656,0.044549374,0.044907091,0.042856272,0.035897398,0.038754635,0.038673319,0.038592002 +1,AL,12,OFF-HIGHWAY,VOC,43.03519,48.6835,46.72198,46.18706,45.82247,45.362755,45.239551,57.95707259,56.96757537,55.97807814,54.98858092,53.40305337,51.81752582,48.9586723,46.99533434,45.97355332,43.39625084,40.70024839,38.00424593,35.30824348,31.24174191,24.81476805,23.10873876,22.35602961,21.60332046 +1,AL,12,OFF-HIGHWAY,SO2,6.34047,6.94036,7.0861,7.27345,6.81114,7.110581,7.161192,6.206981888,6.016745747,5.826509605,5.636273464,4.537256638,3.438239811,1.734785125,2.504786551,1.871219293,1.073552617,0.983974135,0.894395652,0.80481717,0.727924332,0.565978028,0.574138657,0.579122029,0.584105402 +1,AL,12,OFF-HIGHWAY,NOX,63.68311,69.04878,68.28446,67.30303,57.35743,66.709535,66.920203,62.82772557,62.0520064,61.27628723,60.50056806,61.08538197,61.67019587,51.36635704,60.96524845,60.07972638,47.80065832,47.44088742,47.08111653,46.72134563,43.32289743,37.85351323,36.52600104,35.30070981,34.07541858 +1,AL,12,OFF-HIGHWAY,CO,320.41178,364.5299,356.5602,357.76952,359.0722,363.39452,370.662552,391.3892429,382.5622313,373.7352197,364.9082082,357.4210781,349.933948,310.1059998,282.6743013,269.20328,261.7876143,252.9633494,244.1390845,235.3148196,221.0594438,194.1540827,192.5486923,192.7200285,192.8913647 +1,AL,12,OFF-HIGHWAY,PM10,4.9703,5.16323,5.17152,5.1982,4.87383,4.86726,4.80545,5.386347452,5.143295677,4.900243903,4.657192129,4.499448723,4.341705316,3.800021363,4.142662413,4.015839735,3.584313973,3.443227013,3.302140052,3.161053092,2.919838498,2.573068702,2.43740931,2.337940382,2.238471455 +1,AL,14,MISCELLANEOUS,CO,435.64625,85.83249,89.94342,143.15155,924.1829,205.273785,150.675936,301.3814,348.57057,395.75974,442.9489101,296.4085599,149.8682098,3.327859599,3.713868908,4.099878217,4.485887526,5.490913732,6.495939938,7.500966144,6.363287722,5.225609301,4.087930879,4.087930879,4.087930879 +1,AL,14,MISCELLANEOUS,NH3,68.31925,75.96738,75.55719,78.2471,79.72437,81.07006,65.6485531,62.52704494,63.36163755,64.19623015,65.03082275,64.00719843,62.9835741,61.95994978,61.28512853,60.61030728,59.93548603,55.0238483,50.11221057,45.20057283,48.75266978,52.30476673,55.85686368,55.85686368,55.85686368 +1,AL,14,MISCELLANEOUS,NOX,14.94347,2.09835,1.9601,3.34356,26.29255,4.377952,3.205136,3.003492736,5.210972826,7.418452916,9.625933006,6.469129611,3.312326217,0.155522822,0.164924052,0.174325282,0.183726512,0.198733515,0.213740517,0.22874752,0.197691607,0.166635695,0.135579782,0.135579782,0.135579782 +1,AL,14,MISCELLANEOUS,PM10,498.29981,355.87408,358.26481,379.10928,465.085901,399.358407,365.6658684,331.23651,337.6057143,343.9749187,350.344123,333.3400768,316.3360306,299.3319843,297.5018896,295.6717949,293.8417002,316.555099,339.2684978,361.9818965,314.7549928,267.528089,220.3011853,220.3011853,220.3011853 +1,AL,14,MISCELLANEOUS,PM25,122.9616,70.89412,72.55571,80.2306,146.642334,85.883942,68.9595877,56.9993201,62.39697693,67.79463377,73.1922906,61.75298751,50.31368441,38.87438131,38.7371723,38.5999633,38.46275429,40.54798154,42.63320879,44.71843604,40.06052331,35.40261059,30.74469786,30.74469786,30.74469786 +1,AL,14,MISCELLANEOUS,SO2,0.55167,0.05438,0.04537,0.09521,0.93231,1.13493,0.81329,4.603283411,4.616439491,4.62959557,4.64275165,3.101809974,1.560868298,0.019926622,0.036233102,0.052539582,0.068846061,0.064922248,0.060998434,0.057074621,0.053636491,0.050198362,0.046760233,0.046760233,0.046760233 +1,AL,14,MISCELLANEOUS,VOC,22.61152,9.5632,7.83963,13.92041,136.59911,10.854772,8.292917,68.29097,80.28879411,92.28661821,104.2844423,69.63237678,34.98031123,0.328245689,0.323467033,0.318688378,0.313909722,1.394001007,2.474092291,3.554183575,3.778899901,4.003616226,4.228332552,4.228332552,4.228332552 +1,AL,15,WILDFIRES,SO2,,,,,,,,0.04023,0.04023,0.04023,0.021953411,0.021953411,0.021953411,0.05647215,0.05647215,0.05647215,1.194676111,1.194676111,1.194676111,0.993491936,0.993491936,0.993491936,0.249084523,0.249084523,0.249084523 +1,AL,15,WILDFIRES,NH3,,,,,,,,0.10346,0.10346,0.10346,0.031712548,0.031712548,0.031712548,0.138642802,0.138642802,0.138642802,1.979896903,1.979896903,1.979896903,1.604999458,1.604999458,1.604999458,0.42955339,0.42955339,0.42955339 +1,AL,15,WILDFIRES,CO,,,,,,,,6.74665,6.74665,6.74665,1.902579996,1.902579996,1.902579996,8.475293,8.475293,8.475293,119.4844921,119.4844921,119.4844921,96.76009431,96.76009431,96.76009431,25.96329576,25.96329576,25.96329576 +1,AL,15,WILDFIRES,PM10,,,,,,,,0.64217,0.64217,0.64217,0.215905549,0.215905549,0.215905549,0.8410987,0.8410987,0.8410987,13.02171311,13.02171311,13.02171311,10.62116989,10.62116989,10.62116989,2.798840986,2.798840986,2.798840986 +1,AL,15,WILDFIRES,NOX,,,,,,,,0.06557,0.06557,0.06557,0.050996008,0.050996008,0.050996008,0.09203358,0.09203358,0.09203358,2.600812298,2.600812298,2.600812298,2.191291805,2.191291805,2.191291805,0.530764321,0.530764321,0.530764321 +1,AL,15,WILDFIRES,VOC,,,,,,,,1.54501,1.54501,1.54501,0.45586788,0.45586788,0.45586788,1.99299135,1.99299135,1.99299135,28.46105524,28.46105524,28.46105524,23.07190423,23.07190423,23.07190423,6.174826228,6.174826228,6.174826228 +1,AL,15,WILDFIRES,PM25,,,,,,,,0.54413,0.54413,0.54413,0.182970804,0.182970804,0.182970804,0.71279493,0.71279493,0.71279493,11.03534865,11.03534865,11.03534865,9.000993053,9.000993053,9.000993053,2.371898388,2.371898388,2.371898388 +1,AL,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,6.36835004,6.072894938,5.777439835,5.481984733,5.834231307,6.186477881,6.538724456,5.661301872,4.783879288,3.906456704,3.906456704,3.906456704 +1,AL,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,187.086388,168.1440203,149.2016526,130.259285,138.4446866,146.6300883,154.8154899,135.3284233,115.8413567,96.35429006,96.35429006,96.35429006 +1,AL,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,13.01471415,11.69698177,10.37924939,9.061517016,9.630932725,10.20034843,10.76976414,9.414141092,8.058518041,6.702894989,6.702894989,6.702894989 +1,AL,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,69.2652583,63.02265917,56.78006004,50.53746091,53.73032756,56.92319422,60.11606088,52.42914507,44.74222925,37.05531344,37.05531344,37.05531344 +1,AL,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,12.17588622,12.10073507,12.02558392,11.95043277,12.7271256,13.50381843,14.28051127,12.3027803,10.32504934,8.347318378,8.347318378,8.347318378 +1,AL,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,81.7329889,74.36672406,67.00045921,59.63419437,63.40177949,67.1693646,70.93694972,61.86638892,52.79582812,43.72526731,43.72526731,43.72526731 +1,AL,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,791.340232,709.8249881,628.3097441,546.7945002,581.1237108,615.4529215,649.7821321,568.2089584,486.6357846,405.0626109,405.0626109,405.0626109 +2,AK,1,FUEL COMB. ELEC. UTIL.,SO2,0.98493,0.78994,0.65753,0.61854,0.7937,1.018876,1.008082,4.891633751,,,5.994769999,4.870779999,3.74679,2.6228,2.956488667,3.008517333,3.060546,2.809980667,2.559415333,2.30885,2.149708067,1.990566133,1.8314242,1.8314242,1.8314242 +2,AK,1,FUEL COMB. ELEC. UTIL.,PM25,0.37918,0.1653,0.16719,0.17211,0.202321,0.227376,0.228276,0.798731184,0.799764822,0.80079846,0.801832097,0.757851759,0.713871421,0.669891082,0.710577262,0.751263442,0.791949623,0.743741779,0.695533935,0.647326091,0.675426146,0.703526201,0.731626257,0.731626257,0.731626257 +2,AK,1,FUEL COMB. ELEC. UTIL.,PM10,0.41941,0.1815,0.1828,0.1886,0.218988,0.252235,0.251172,2.617170771,2.12232288,1.627474989,1.132627098,0.988911398,0.845195699,0.70148,0.764888588,0.828297177,0.891705765,0.820719345,0.749732926,0.678746506,0.799986004,0.921225502,1.042465,1.042465,1.042465 +2,AK,1,FUEL COMB. ELEC. UTIL.,NOX,15.36586,4.83489,3.74184,3.7755,4.09706,4.551948,4.587347,20.92052001,,,29.03426999,27.98688999,26.93951,25.89213,25.23231,24.05311,22.87391,21.53187,20.18983,18.84779,19.065111,19.282432,19.499753,19.499753,19.499753 +2,AK,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00033,0.00034,0.0002,0.00015,0.000105,0.000112,0,0.000243333,0.000486667,0.00073,0.057033333,0.113336667,0.16964,0.117713333,0.065786667,0.01386,0.016666667,0.019473333,0.02228,0.035528733,0.048777467,0.0620262,0.0620262,0.0620262 +2,AK,1,FUEL COMB. ELEC. UTIL.,CO,0.59919,2.75036,2.81292,2.87542,2.95033,3.030148,3.098005,6.613410019,6.805870014,6.99833001,7.190790005,6.810473337,6.430156668,6.04984,5.698246667,5.346653333,4.99506,4.980746667,4.966433333,4.95212,4.912600967,4.873081933,4.8335629,4.8335629,4.8335629 +2,AK,1,FUEL COMB. ELEC. UTIL.,VOC,0.3972,0.05989,0.06096,0.06201,0.06464,0.067869,0.070514,0.419890001,0.631583334,0.843276667,1.05497,1.002016666,0.949063333,0.89611,0.875483333,0.854856667,0.83423,0.783393333,0.732556667,0.68172,0.741279233,0.800838467,0.8603977,0.8603977,0.8603977 +2,AK,2,FUEL COMB. INDUSTRIAL,NH3,,,,,,,,0.086772662,0.079725995,0.072679329,0.065632662,0.044441775,0.023250887,0.00206,0.005168464,0.008276929,0.011185393,0.146635172,0.282084951,0.41753473,0.313206484,0.208878237,0.104549991,0.104549991,0.104549991 +2,AK,2,FUEL COMB. INDUSTRIAL,VOC,1.37637,1.37095,1.39544,1.423,1.46865,1.539991,1.530004,1.24646594,1.153865941,1.061265941,0.968665942,1.131237295,1.293808647,1.45638,1.263802696,1.071225392,0.878178088,0.885833576,0.893489064,0.901144552,1.017314937,1.133485323,1.249655709,1.249655709,1.249655709 +2,AK,2,FUEL COMB. INDUSTRIAL,SO2,2.3229,2.35028,2.2018,2.1139,2.17481,2.160817,2.215081,1.702452852,1.742446186,1.782439519,1.822432853,1.966871902,2.111310951,2.25575,2.18996094,2.12417188,2.05806282,2.180756287,2.303449754,2.426143221,2.208824509,1.991505797,1.774187085,1.774187085,1.774187085 +2,AK,2,FUEL COMB. INDUSTRIAL,PM25,1.55318,0.63183,0.60384,0.58397,0.925005,0.897898,0.919801,0.415005622,0.677018709,0.939031796,1.201044883,1.283777629,1.366510376,1.449243122,1.367580385,1.285917647,1.203604909,1.135813787,1.068022666,1.000231545,0.876480922,0.7527303,0.628979678,0.628979678,0.628979678 +2,AK,2,FUEL COMB. INDUSTRIAL,NOX,9.15053,7.88829,7.50939,7.27348,7.49073,7.329767,7.395098,52.58247663,51.01801662,49.45355661,47.8890966,46.3681644,44.8472322,43.3263,43.13807193,42.94984387,42.7530858,41.41182269,40.07055957,38.72929645,38.98776438,39.24623231,39.50470024,39.50470024,39.50470024 +2,AK,2,FUEL COMB. INDUSTRIAL,CO,2.0087,3.81848,3.74269,3.669,3.74083,3.814295,3.803074,19.13637961,17.66286631,16.189353,14.7158397,13.86712647,13.01841323,12.1697,11.84611957,11.52253914,11.19178871,11.66147767,12.13116663,12.60085559,11.19788534,9.794915099,8.391944855,8.391944855,8.391944855 +2,AK,2,FUEL COMB. INDUSTRIAL,PM10,2.935,2.1519,2.07675,2.02253,2.425424,2.328562,2.401069,0.850532824,1.190886306,1.531239789,1.871593272,1.74620007,1.620806869,1.495413667,1.407946508,1.32047935,1.232362191,1.177059879,1.121757568,1.066455256,1.168319961,1.270184665,1.37204937,1.37204937,1.37204937 +2,AK,3,FUEL COMB. OTHER,NH3,,,,,,,,0.037607131,0.037607131,0.037607131,0.037607131,0.141206788,0.244806446,0.348406103,0.346617197,0.344828292,0.339794989,0.306980515,0.274166041,0.241351567,0.374896363,0.508441158,0.641985954,0.641985954,0.641985954 +2,AK,3,FUEL COMB. OTHER,VOC,2.93681,3.48323,3.48189,3.47617,4.513189,4.790237,4.811086,4.628627914,4.632371234,4.636114553,4.639857873,3.579245694,2.518633516,1.458021338,1.468440067,1.478858797,1.492637777,1.337716179,1.182794581,1.027872983,3.533879827,6.039886671,8.545893514,8.545893514,8.545893514 +2,AK,3,FUEL COMB. OTHER,SO2,0.16894,0.29788,0.29302,0.2964,2.317528,2.370301,2.415893,5.511112844,5.453462842,5.395812841,5.33816284,4.421590198,3.505017556,2.588444914,2.384564454,2.180683994,1.976234057,1.766970788,1.557707519,1.348444251,1.213164126,1.077884002,0.942603877,0.942603877,0.942603877 +2,AK,3,FUEL COMB. OTHER,PM25,2.08617,1.31983,1.3189,1.31966,1.848962,1.956129,1.967812,2.790158832,2.705371474,2.620584117,2.535796759,2.061104408,1.586412057,1.111719707,1.119928916,1.128138126,1.09948341,1.019347819,0.939212228,0.859076637,13.00317854,25.14728045,37.29138236,37.29138236,37.29138236 +2,AK,3,FUEL COMB. OTHER,NOX,0.41961,0.57849,0.5706,0.57678,2.813302,2.882855,2.937127,5.730520854,5.678600851,5.626680849,5.574760847,4.765152271,3.955543695,3.14593512,3.035318971,2.924702822,2.809581904,3.105784026,3.401986149,3.698188271,6.077608262,8.457028253,10.83644824,10.83644824,10.83644824 +2,AK,3,FUEL COMB. OTHER,CO,15.31319,9.41109,9.40975,9.41087,36.523438,37.815899,38.333171,23.04857562,23.02256895,22.99656229,22.97055562,19.84878492,16.72701422,13.60524352,14.25068121,14.89611891,15.31070557,12.40347815,9.496250724,6.5890233,81.99551639,157.4020095,232.8085026,232.8085026,232.8085026 +2,AK,3,FUEL COMB. OTHER,PM10,2.32568,1.67922,1.6721,1.67807,2.438757,2.55995,2.585295,5.124679337,5.033207842,4.941736347,4.850264852,3.628132866,2.406000881,1.183868895,1.20161755,1.219366204,1.200266669,1.121523412,1.042780154,0.964036897,13.3332155,25.7023941,38.07157271,38.07157271,38.07157271 +2,AK,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.00289,0.00289,0.00291,0.00293,0.00297,0.003015,0.003047,0.00078,0.001696667,0.002613333,0.00353,0.002353333,0.001176667,0,0,0,0,0,0,,0,0,0,0,0 +2,AK,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.15879,0.08999,0.09058,0.09118,0.252929,0.256725,0.259508,0.044964121,0.053859414,0.062754707,0.07165,0.047766667,0.023883333,0,0,0,0,0,0,,4.67E-07,9.33E-07,0.0000014,0.0000014,0.0000014 +2,AK,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.37737,0.09565,0.09629,0.09693,0.258769,0.262651,0.265498,0.068160001,0.069323334,0.070486667,0.07165,0.047766667,0.023883333,0,0,0,0,0,0,,4.67E-07,9.33E-07,0.0000014,0.0000014,0.0000014 +2,AK,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,3.34337,3.34337,3.36543,3.38784,3.439,3.490585,3.528415,2.0132,1.69204,1.37088,1.04972,0.711196667,0.372673333,0.03415,0.022766667,0.011383333,0,0,0,,0,0,0,0,0 +2,AK,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,0.489299993,0.563533329,0.637766664,0.712,0.476836667,0.241673333,0.00651,0.00434,0.00217,0,0,0,,0,0,0,0,0 +2,AK,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.11878,0.11878,0.11956,0.12035,0.12218,0.124013,0.125357,0.669609996,0.678496664,0.687383332,0.69627,0.46436,0.23245,0.00054,0.00036,0.00018,0,0,0,,0,0,0,0,0 +2,AK,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.02034,0.02034,0.02048,0.02061,0.02092,0.021235,0.021464,0.129179999,0.146959999,0.16474,0.18252,0.12175,0.06098,0.00021,0.00014,0.00007,0,0,0,,0,0,0,0,0 +2,AK,5,METALS PROCESSING,CO,,,,,,,,0,0.002333333,0.004666667,0.007,0.004666667,0.002333333,,0,0,0,0.0163,0.0326,0.0489,0.049311133,0.049722267,0.0501334,0.0501334,0.0501334 +2,AK,5,METALS PROCESSING,NOX,,,,,,,,0,0.0189,0.0378,0.0567,0.0378,0.0189,,0,0,0,0.00669,0.01338,0.02007,0.020782233,0.021494467,0.0222067,0.0222067,0.0222067 +2,AK,5,METALS PROCESSING,PM10,,,,,,,,0.04947,0.03702,0.02457,0.01212,0.012853333,0.013586667,0.01432,0.014486667,0.014653333,0.01482,0.03433,0.05384,0.07335,0.073577433,0.073804867,0.0740323,0.0740323,0.0740323 +2,AK,5,METALS PROCESSING,PM25,,,,,,,,0.04816,0.035783302,0.023406605,0.011029907,0.011921679,0.01281345,0.013705221,0.013817476,0.013929731,0.014041986,0.02576093,0.037479875,0.049198819,0.056192746,0.063186673,0.0701806,0.0701806,0.0701806 +2,AK,5,METALS PROCESSING,SO2,,,,,,,,0,0.000233333,0.000466667,0.0007,0.000466667,0.000233333,,0,0,0,0.00034,0.00068,0.00102,0.000680533,0.000341067,0.0000016,0.0000016,0.0000016 +2,AK,5,METALS PROCESSING,VOC,,,,,,,,0,0.000466667,0.000933333,0.0014,0.000933333,0.000466667,,0,0,0,0,0,,0.0002983,0.0005966,0.0008949,0.0008949,0.0008949 +2,AK,5,METALS PROCESSING,NH3,,,,,,,,,,,,,,,,,0,8.33E-07,1.67E-06,0.0000025,0.000385,0.0007675,0.00115,0.00115,0.00115 +2,AK,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.00114,0.00114,0.00116,0.00117,0.00119,0.001209,0.001218,0.02794,0.032823333,0.037706667,0.04259,0.038616667,0.034643333,0.03067,0.148583817,0.266497635,0.384731452,0.287234616,0.189737781,0.092240945,0.10798833,0.123735714,0.139483099,0.139483099,0.139483099 +2,AK,6,PETROLEUM & RELATED INDUSTRIES,CO,0.01285,0.01285,0.01312,0.01342,0.01384,0.014266,0.014551,1.458559982,1.384649988,1.310739994,1.23683,1.235936667,1.235043333,1.23415,1.895184038,2.556218076,3.224422124,3.524649363,3.824876603,4.125103842,3.288618974,2.452134106,1.615649239,1.615649239,1.615649239 +2,AK,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,0,6.67E-06,1.33E-05,0.00002,1.33E-05,6.67E-06,0,1.67E-05,3.33E-05,0.00025,0.000366667,0.000483333,0.0006,0.0004,0.0002,0,0,0 +2,AK,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.04777,0.04777,0.04881,0.04985,0.05139,0.052941,0.053966,0.499489999,0.479249999,0.45901,0.43877,0.443486667,0.448203333,0.45292,0.890330922,1.327741844,1.773682766,2.058582054,2.343481342,2.628380629,2.013947,1.399513371,0.785079742,0.785079742,0.785079742 +2,AK,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.001,0.001,0.00101,0.00105,0.001942,0.001996,0.00203,0.019849608,0.033353186,0.046856764,0.060360341,0.06316106,0.065961778,0.068762497,0.082411991,0.096061485,0.110360979,0.109173629,0.107986278,0.106798927,0.088480579,0.070162231,0.051843882,0.051843882,0.051843882 +2,AK,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.00038,0.00038,0.00039,0.00039,0.0004,0.000406,0.000409,0.433980001,0.542710001,0.65144,0.76017,0.8022,0.84423,0.88626,43.65555657,86.42485313,129.0922643,94.69975657,60.30724885,25.91474113,17.83371839,9.75269565,1.671672911,1.671672911,1.671672911 +2,AK,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.00146,0.00146,0.00149,0.00152,0.002432,0.002502,0.00255,0.05404,0.06402,0.074,0.08398,0.079046667,0.074113333,0.06918,0.084008365,0.098836731,0.114315096,0.116242803,0.118170509,0.120098215,0.130714937,0.14133166,0.151948382,0.151948382,0.151948382 +2,AK,7,OTHER INDUSTRIAL PROCESSES,CO,,,,,,,0.088306003,0.091676994,0.092066994,0.092456994,0.092846994,0.088520618,0.084194242,0.079867866,0.090943645,0.102019425,0.113095204,0.351292767,0.58949033,0.827687893,0.715958386,0.604228879,0.492499373,0.492499373,0.492499373 +2,AK,7,OTHER INDUSTRIAL PROCESSES,VOC,,,,,,,0.031075865,0.031100949,0.031207616,0.031314282,0.031420949,0.0420598,0.052698651,0.063337503,0.070721234,0.078104965,0.085488696,0.088880384,0.092272073,0.095663762,0.102874633,0.110085505,0.117296377,0.117296377,0.117296377 +2,AK,7,OTHER INDUSTRIAL PROCESSES,SO2,,,,,,,,0.0239,0.02065,0.0174,0.01415,0.015793333,0.017436667,0.01908,0.018736667,0.018393333,0.01805,0.02139,0.02473,0.02807,0.0466011,0.0651322,0.0836633,0.0836633,0.0836633 +2,AK,7,OTHER INDUSTRIAL PROCESSES,PM25,0.21229,0.3192,0.36897,0.42126,0.7287,0.89342,1.105345835,0.943549738,0.945662787,0.947775836,0.949888886,1.002643287,1.055397689,1.10815209,1.097171517,1.086190944,1.07521037,0.890503512,0.705796653,0.521089795,0.424658995,0.328228195,0.231797396,0.231797396,0.231797396 +2,AK,7,OTHER INDUSTRIAL PROCESSES,PM10,1.06168,1.59621,1.84527,2.10609,3.64371,4.4671,4.695563989,3.883157484,3.882850817,3.88254415,3.882237483,4.603263509,5.324289535,6.04531556,5.885643856,5.725972151,5.566300447,4.44745923,3.328618013,2.209776796,1.603490733,0.99720467,0.390918607,0.390918607,0.390918607 +2,AK,7,OTHER INDUSTRIAL PROCESSES,NOX,,,,,,,,0.01498,0.014466667,0.013953333,0.01344,0.01979,0.02614,0.03249,0.046673333,0.060856667,0.07504,0.322688429,0.570336858,0.817985286,0.813204113,0.808422939,0.803641765,0.803641765,0.803641765 +2,AK,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,,,,0.064931,0.053884167,0.042837333,0.0317905,0.021193667,0.010596833,,0.00014,0.00028,0.00042,0.00081,0.0012,0.00159,0.0011999,0.0008098,0.0004197,0.0004197,0.0004197 +2,AK,8,SOLVENT UTILIZATION,VOC,,,,,,,,4.9020243,4.901830967,4.901637633,4.9014443,4.631415096,4.361385892,4.091356688,4.278753206,4.466149724,4.63975996,4.487485296,4.335210631,4.182935967,4.502008181,4.821080396,5.14015261,5.14015261,5.14015261 +2,AK,8,SOLVENT UTILIZATION,PM25,,,,,,,,8.42E-06,5.61E-06,2.81E-06,,0,0,0,3.87E-05,7.74E-05,0.00011617,0.002143616,0.004171063,0.006198509,0.004229006,0.002259503,0.00029,0.00029,0.00029 +2,AK,8,SOLVENT UTILIZATION,PM10,,,,,,,,1.00E-05,6.67E-06,3.33E-06,,0,0,0,4.67E-05,9.33E-05,0.00014,0.002583333,0.005026667,0.00747,0.0051,0.00273,0.00036,0.00036,0.00036 +2,AK,9,STORAGE & TRANSPORT,SO2,,,,,,,,0,0.00001,0.00002,0.00003,6.33E-05,9.67E-05,0.00013,0.00014,0.00015,0.00016,0.00014,0.00012,0.0001,0.000106333,0.000112667,0.000119,0.000119,0.000119 +2,AK,9,STORAGE & TRANSPORT,VOC,0.00824,0.00829,0.00815,0.00801,0.00016,0.000166,0.000171,7.527729578,7.356992924,7.186256271,7.015519617,6.39954371,5.783567803,5.167591896,5.046757907,4.925923917,4.243494805,3.62103868,2.998582555,2.376126429,2.612894327,2.849662224,3.086430121,3.086430121,3.086430121 +2,AK,9,STORAGE & TRANSPORT,PM25,,,,,,,,0.011319354,0.011182903,0.011046451,0.01091,0.012553277,0.014196555,0.015839832,0.012187838,0.008535843,0.004883849,0.00713727,0.009390692,0.011644114,0.021277843,0.030911571,0.0405453,0.0405453,0.0405453 +2,AK,9,STORAGE & TRANSPORT,CO,,,,,,,,0,0.001313333,0.002626667,0.00394,0.00398,0.00402,0.00406,0.004533333,0.005006667,0.00548,0.015356667,0.025233333,0.03511,0.042074333,0.049038667,0.056003,0.056003,0.056003 +2,AK,9,STORAGE & TRANSPORT,NOX,,,,,,,,0,0.000526667,0.001053333,0.00158,0.001593333,0.001606667,0.00162,0.00184,0.00206,0.00228,0.014403333,0.026526667,0.03865,0.030100333,0.021550667,0.013001,0.013001,0.013001 +2,AK,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,0,0,0,0,0,0,,0,0,0,0,0 +2,AK,9,STORAGE & TRANSPORT,PM10,,,,,,,,0.01756,0.015343333,0.013126667,0.01091,0.013837013,0.016764027,0.01969104,0.016800693,0.013910347,0.01102,0.015276667,0.019533333,0.02379,0.029748853,0.035707707,0.04166656,0.04166656,0.04166656 +2,AK,10,WASTE DISPOSAL & RECYCLING,NOX,0.01471,0.17744,0.18517,0.18878,0.19146,0.195524,0.197205,0.172888166,0.472010111,0.771132055,1.070254,0.765335625,0.46041725,0.155498875,0.140545053,0.125591231,0.110637408,0.336315451,0.561993494,0.787671537,0.534614791,0.281558046,0.0285013,0.0285013,0.0285013 +2,AK,10,WASTE DISPOSAL & RECYCLING,NH3,,,,,,,,0.002349136,0.002349136,0.002349136,0.002349136,0.002426235,0.002503334,0.002580433,0.002753766,0.002927099,0.003100433,0.009805968,0.016511504,0.02321704,0.021332849,0.019448658,0.017564467,0.017564467,0.017564467 +2,AK,10,WASTE DISPOSAL & RECYCLING,PM10,0.00589,0.64229,0.67742,0.68834,0.693447,0.707843,0.707866,0.730366161,0.782204138,0.834042115,0.885880092,0.790830095,0.695780098,0.600730101,0.558833321,0.516936542,0.475039763,1.240366265,2.005692767,2.771019269,1.884839013,0.998658756,0.1124785,0.1124785,0.1124785 +2,AK,10,WASTE DISPOSAL & RECYCLING,CO,0.01374,1.60046,1.67619,1.70108,1.71458,1.750193,1.751569,1.697452879,1.733419546,1.769386213,1.80535288,1.570400575,1.335448269,1.100495964,1.13533971,1.170183457,1.205027203,8.726938252,16.2488493,23.77076035,15.89691531,8.023070274,0.149225236,0.149225236,0.149225236 +2,AK,10,WASTE DISPOSAL & RECYCLING,PM25,0.00564,0.59116,0.62319,0.63311,0.637847,0.651089,0.651099,0.66837174,0.704711335,0.74105093,0.777390525,0.703104798,0.628819072,0.554533345,0.512566367,0.470599388,0.42863241,0.99880228,1.568972149,2.139142019,1.461600346,0.784058673,0.106517,0.106517,0.106517 +2,AK,10,WASTE DISPOSAL & RECYCLING,VOC,0.00663,0.53173,0.55984,0.56887,0.57344,0.585314,0.585775,1.785370012,1.896650008,2.007930004,2.11921,1.477106193,0.835002386,0.192898579,0.220221605,0.247544631,0.274867656,0.815879625,1.356891593,1.897903562,1.3158269,0.733750237,0.151673575,0.151673575,0.151673575 +2,AK,10,WASTE DISPOSAL & RECYCLING,SO2,0.01162,0.07418,0.07649,0.07821,0.07973,0.081446,0.082636,0.068741088,0.298013338,0.527285589,0.75655784,0.514184911,0.271811983,0.029439054,0.027738652,0.026038251,0.024337849,0.098386823,0.172435796,0.24648477,0.16885058,0.09121639,0.0135822,0.0135822,0.0135822 +2,AK,11,HIGHWAY VEHICLES,PM25,0.6824,0.40323,0.38636,0.36217,0.34089,0.31075,0.29135,0.28059149,0.268426977,0.256262463,0.244097949,1.035992798,1.827887647,1.194371768,1.03861301,0.882854252,0.604182867,0.621628732,0.639074597,0.656520463,0.616299663,0.488547423,0.535858065,0.49752548,0.459192896 +2,AK,11,HIGHWAY VEHICLES,CO,262.3887,173.25628,173.86574,175.12039,169.92004,154.91697,153.23048,145.3404744,141.4094185,137.4783625,133.5473066,120.3781628,107.209019,117.7443341,137.2317313,156.7191285,91.68022628,85.1897324,78.69923853,72.20874465,70.61468539,60.10075506,67.42656686,63.44078223,59.4549976 +2,AK,11,HIGHWAY VEHICLES,NOX,20.74259,16.23979,16.5923,16.5164,16.23416,15.6098,15.0034,16.03870809,15.10257898,14.16644986,13.23032075,15.28514867,17.3399766,15.69611426,15.37541476,15.05471525,14.97080792,15.35412769,15.73744747,16.12076724,14.45514397,11.97735397,11.12389743,10.45138931,9.778881195 +2,AK,11,HIGHWAY VEHICLES,PM10,0.80727,0.5012,0.48695,0.461,0.44042,0.40831,0.38827,0.380049418,0.367032007,0.354014596,0.340997185,1.188510637,2.036024089,1.358013327,1.198126969,1.038240611,0.669469585,0.765294081,0.861118577,0.956943072,0.932878695,0.732293988,0.884749941,0.829924602,0.775099262 +2,AK,11,HIGHWAY VEHICLES,VOC,19.82707,12.12312,11.62968,11.34805,10.82165,9.74716,9.53591,10.77305081,10.64271668,10.51238256,10.38204844,7.34659179,4.311135143,6.73950046,7.741302321,8.743104182,9.928060438,9.67686364,9.425666843,9.174470045,8.803051924,8.22820525,8.060215682,7.627448784,7.194681885 +2,AK,11,HIGHWAY VEHICLES,NH3,0.29267,0.38785,0.44059,0.42924,0.4469,0.45829,0.47253,0.492738449,0.499036676,0.505334902,0.511633129,0.276721479,0.04180983,0.229739149,0.22071274,0.21168633,0.201535913,0.19304331,0.184550707,0.176058104,0.181035502,0.152639951,0.190990297,0.182501407,0.174012518 +2,AK,11,HIGHWAY VEHICLES,SO2,1.04235,0.51393,0.53479,0.54647,0.56334,0.49779,0.51118,0.352477045,0.370621987,0.38876693,0.406911872,0.476448439,0.545985006,0.490355752,0.343655478,0.196955203,0.051309892,0.050724011,0.05013813,0.049552249,0.043324695,0.032550354,0.030869587,0.029641211,0.028412836 +2,AK,12,OFF-HIGHWAY,VOC,15.59548,16.46257,16.38215,16.47258,16.24871,16.23473,16.35146,19.25000361,20.76049473,22.27098586,23.78147698,22.72139286,21.66130874,20.60122462,19.35771477,18.82528555,19.32295851,18.61829802,17.91363753,17.20897704,15.02891166,10.92444369,10.66878089,10.29635498,9.923929079 +2,AK,12,OFF-HIGHWAY,SO2,4.69246,4.58759,4.79402,5.00811,3.66367,3.20879,3.19457,3.258385791,20.00424235,36.75009891,53.49595547,37.62260417,21.74925287,5.875901567,7.577628991,3.850309925,7.642053359,6.056809976,4.471566592,2.886323208,2.722386091,1.10977955,2.394511859,2.206609033,2.018706207 +2,AK,12,OFF-HIGHWAY,PM25,1.77969,1.85682,1.85619,1.86186,1.51663,1.38525,1.37863,1.524222453,3.637132907,5.750043362,7.862953817,5.873598181,3.884242546,1.89488691,1.900567505,1.440223724,2.276190033,2.125063015,1.973935997,1.822808979,1.57516785,0.87408435,1.079885593,1.031040969,0.982196344 +2,AK,12,OFF-HIGHWAY,PM10,1.9548,2.04229,2.03994,2.04385,1.67164,1.53133,1.52401,1.630138327,3.927237685,6.224337043,8.521436401,6.383635978,4.245835555,2.108035133,2.02959472,1.532530377,2.432169995,2.26424162,2.096313245,1.92838487,1.671767132,0.934729026,1.158531656,1.106378962,1.054226269 +2,AK,12,OFF-HIGHWAY,NOX,32.00978,33.79448,32.29824,30.81651,25.86063,22.56638,22.59182,23.22633545,50.52089788,77.81546031,105.1100227,80.94743142,56.78484009,32.62224877,27.19684533,26.96110821,38.74731687,41.30978619,43.87225551,46.43472483,38.27736923,17.62897742,21.96265804,20.95905636,19.95545468 +2,AK,12,OFF-HIGHWAY,NH3,0.02625,0.03181,0.03178,0.03267,0.00876,0.00876,0.00876,0.009556076,0.009758472,0.009960868,0.010163264,0.012772837,0.01538241,0.017991983,0.011922896,0.012066765,0.021978401,0.022098048,0.022217695,0.022337342,0.019899788,0.006336342,0.015024678,0.013630928,0.012237178 +2,AK,12,OFF-HIGHWAY,CO,65.29077,71.15374,70.56208,70.83633,70.04467,70.59818,71.64664,88.23963239,91.08080369,93.92197499,96.76314629,92.54057275,88.3179992,84.09542566,69.1543778,67.69955386,81.17882982,77.63280114,74.08677247,70.5407438,63.48788871,48.68391002,49.38217852,49.00873518,48.63529184 +2,AK,14,MISCELLANEOUS,VOC,569.45631,84.29719,294.57105,14.52974,86.03481,32.63147,2.17887,0.08891,0.069783333,0.050656667,0.03153,0.08443913,0.137348261,0.190257391,0.126839861,0.063422331,4.80E-06,0.002338774,0.004672747,0.00700672,0.016859912,0.026713104,0.036566295,0.036566295,0.036566295 +2,AK,14,MISCELLANEOUS,SO2,4.58183,0.6611,2.30571,0.13089,10.75343,4.07806,0.27151,0.00565,0.004323333,0.002996667,0.00167,0.025891735,0.05011347,0.074335205,0.049627212,0.02491922,0.000211227,0.004572841,0.008934454,0.013296068,0.011287093,0.009278118,0.007269143,0.007269143,0.007269143 +2,AK,14,MISCELLANEOUS,PM25,377.28104,64.49271,193.95741,24.87081,164.35116,69.37518,17.5375542,7.887258259,7.880304925,7.873351592,7.866398259,8.599066864,9.33173547,10.06440408,9.374366601,8.684329127,7.994291652,7.338924347,6.683557042,6.028189736,5.174368851,4.320547965,3.46672708,3.46672708,3.46672708 +2,AK,14,MISCELLANEOUS,PM10,523.23299,137.44726,285.82369,90.78326,252.58258,139.7494,94.1723704,79.28686,79.27865667,79.27045333,79.26225,84.44469456,89.62713912,94.80958367,89.13939157,83.46919946,77.79900736,71.45504036,65.11107336,58.76710636,49.76453582,40.76196528,31.75939474,31.75939474,31.75939474 +2,AK,14,MISCELLANEOUS,NOX,117.81865,17.68318,61.57471,3.84003,39.21933,14.87374,0.99095,0.00544,0.00438,0.00332,0.00226,0.092049525,0.18183905,0.271628575,0.181542918,0.091457261,0.001371605,0.018554404,0.035737204,0.052920003,0.068426958,0.083933912,0.099440867,0.099440867,0.099440867 +2,AK,14,MISCELLANEOUS,CO,4156.37646,621.38601,2159.29884,150.86758,1828.12309,693.30651,46.18911,0.39485,0.31169,0.22853,0.14537,1.363178632,2.580987264,3.798795897,2.532532747,1.266269597,6.45E-06,0.009340643,0.018674839,0.028009035,0.054794328,0.08157962,0.108364912,0.108364912,0.108364912 +2,AK,14,MISCELLANEOUS,NH3,0.2758,0.15684,0.16173,0.16806,8.39785,3.29992,0.446036877,0.00565,0.004323333,0.002996667,0.00167,0.006815,0.01196,0.017105,,,0,2.43E-15,4.85E-15,7.28E-15,0.039705281,0.079410561,0.119115842,0.119115842,0.119115842 +2,AK,15,WILDFIRES,VOC,,,,,,,,1916.182671,1916.182671,1916.182671,,0,0,2.158593,2.158593,2.158593,515.9309814,515.9309814,515.9309814,490.754387,490.754387,490.754387,1058.432116,1058.432116,1058.432116 +2,AK,15,WILDFIRES,CO,,,,,,,,8402.863427,8402.863427,8402.863427,,0,0,46.498344,46.498344,46.498344,2200.097251,2200.097251,2200.097251,2092.559778,2092.559778,2092.559778,4514.752701,4514.752701,4514.752701 +2,AK,15,WILDFIRES,NH3,,,,,,,,134.4403501,134.4403501,134.4403501,,0,0,0.20926,0.20926,0.20926,35.89084304,35.89084304,35.89084304,34.13943942,34.13943942,34.13943942,73.63006259,73.63006259,73.63006259 +2,AK,15,WILDFIRES,NOX,,,,,,,,61.66298578,61.66298578,61.66298578,,0,0,0.89946,0.89946,0.89946,18.77373369,18.77373369,18.77373369,18.00589342,18.00589342,18.00589342,37.47269487,37.47269487,37.47269487 +2,AK,15,WILDFIRES,PM10,,,,,,,,793.3017006,793.3017006,793.3017006,,0,0,4.499077,4.499077,4.499077,213.7701966,213.7701966,213.7701966,203.4551307,203.4551307,203.4551307,437.7315357,437.7315357,437.7315357 +2,AK,15,WILDFIRES,PM25,,,,,,,,672.2883805,672.2883805,672.2883805,,0,0,4.149023,4.149023,4.149023,181.1611423,181.1611423,181.1611423,172.4195087,172.4195087,172.4195087,370.9589235,370.9589235,370.9589235 +2,AK,15,WILDFIRES,SO2,,,,,,,,46.1776743,46.1776743,46.1776743,,0,0,0.24664,0.24664,0.24664,13.09478661,13.09478661,13.09478661,12.50052597,12.50052597,12.50052597,26.54961658,26.54961658,26.54961658 +2,AK,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,,,,2.642584019,2.092035999,1.54148798,0.99093996,1.12393183,1.256923699,1.389915569,1.389915569,1.389915569 +2,AK,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,,,,0.202944822,0.161683786,0.120422751,0.079161715,0.109323194,0.139484672,0.169646151,0.169646151,0.169646151 +2,AK,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,,,,7.447563744,5.886979595,4.326395446,2.765811297,2.991016704,3.216222112,3.441427519,3.441427519,3.441427519 +2,AK,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,,,,0.517334651,0.409024586,0.30071452,0.192404455,0.208070836,0.223737216,0.239403597,0.239403597,0.239403597 +2,AK,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,,,,0.317647551,0.255213165,0.192778779,0.130344393,0.219547823,0.308751254,0.397954684,0.397954684,0.397954684 +2,AK,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,,,,3.118248818,2.468602168,1.818955517,1.169308867,1.326239373,1.483169878,1.640100384,1.640100384,1.640100384 +2,AK,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,,,,31.65579393,25.02339212,18.39099032,11.75858851,12.62149344,13.48439837,14.3473033,14.3473033,14.3473033 +4,AZ,1,FUEL COMB. ELEC. UTIL.,PM10,8.70429,9.06073,9.87674,4.69202,9.347927,9.973007,9.916727,8.840929885,8.87979856,8.918667235,8.95753591,6.706056566,4.454577222,2.203097878,2.242799745,2.282501613,2.32220348,2.398288753,2.474374026,2.550459299,2.218322571,1.886185842,1.554049114,1.554049114,1.554049114 +4,AZ,1,FUEL COMB. ELEC. UTIL.,SO2,119.93899,120.36288,126.4102,101.901,75.553864,71.622856,73.388969,70.71018219,69.396069,60.371729,52.76545812,49.153094,56.477801,43.75108665,37.96143363,32.17178061,26.38212759,23.22762313,20.07311866,16.9186142,14.13835224,11.35809028,8.577828324,17.062649,12.093755 +4,AZ,1,FUEL COMB. ELEC. UTIL.,PM25,2.14228,4.16824,4.68873,2.42257,6.873888,7.419141,7.360362,6.96657297,7.021401044,7.076229118,7.131057191,5.134364487,3.137671783,1.140979079,1.479242623,1.817506167,2.155769711,2.194302914,2.232836118,2.271369321,1.939753685,1.608138048,1.276522412,1.276522412,1.276522412 +4,AZ,1,FUEL COMB. ELEC. UTIL.,VOC,0.66561,0.6499,0.71569,0.7724,0.773912,0.862561,0.873529,0.625191014,0.6155338,0.605876586,0.596219372,0.562055936,0.5278925,0.493729064,0.487108737,0.480488409,0.473868081,0.510934641,0.548001201,0.585067762,0.529610988,0.474154215,0.418697441,0.418697441,0.418697441 +4,AZ,1,FUEL COMB. ELEC. UTIL.,NOX,76.03872,74.6182,82.73326,89.11712,90.919031,100.628182,97.217359,85.83277337,82.607055,83.082694,80.37021314,80.039342,84.294502,42.43258379,40.09751761,37.76541143,35.43139268,34.17084507,32.91029747,31.64974986,27.87772957,24.10570927,20.33368897,32.87921,26.770944 +4,AZ,1,FUEL COMB. ELEC. UTIL.,CO,5.75614,5.35889,5.90223,6.40334,6.30922,7.435579,7.381811,8.179573643,7.899582993,7.619592343,7.339601693,7.853693286,8.36778488,8.881876473,9.246058545,9.610240617,9.974422689,10.32636519,10.67830769,11.0302502,9.656707454,8.283164711,6.909621969,6.909621969,6.909621969 +4,AZ,1,FUEL COMB. ELEC. UTIL.,NH3,,0.02421,0.02925,0.04285,0.058713,0.090273,0.097614,0.51697542,0.503040198,0.489104975,0.475169753,0.625783333,0.776396912,0.927010492,0.762844022,0.598677551,0.434511081,0.438026365,0.44154165,0.445056934,0.396396108,0.347735281,0.299074454,0.299074454,0.299074454 +4,AZ,2,FUEL COMB. INDUSTRIAL,CO,8.87428,11.99587,12.15166,12.08552,7.963453,8.134413,8.306195,1.97769543,1.790243059,1.602790687,1.415338315,1.981615498,2.54789268,3.114169863,2.591791096,2.069412329,1.547033561,1.649712863,1.752392165,1.855071466,1.799204713,1.743337959,1.687471205,1.687471205,1.687471205 +4,AZ,2,FUEL COMB. INDUSTRIAL,NH3,0.0997,0.09348,0.09495,0.0947,0.097234,0.099968,0.102788,0.037322121,0.050859591,0.064397061,0.077934532,0.078243765,0.078552999,0.078862232,0.065822569,0.052782905,0.039743241,0.047196755,0.054650269,0.062103783,0.071976094,0.081848404,0.091720714,0.091720714,0.091720714 +4,AZ,2,FUEL COMB. INDUSTRIAL,NOX,54.57118,94.58374,95.94981,95.24307,52.392773,53.491324,54.800305,5.03730235,4.991516545,4.94573074,4.899944935,8.168186509,11.43642808,14.70466966,12.01020417,9.31573869,6.621273206,6.370650313,6.12002742,5.869404527,5.897826083,5.92624764,5.954669196,5.954669196,5.954669196 +4,AZ,2,FUEL COMB. INDUSTRIAL,SO2,11.82047,44.25254,44.91687,44.27344,5.834964,5.766046,6.172589,3.656753654,3.654596943,3.652440232,3.650283521,4.179458251,4.708632981,5.237807711,4.465147673,3.692487636,2.919827599,2.122041114,1.324254629,0.526468144,0.49589043,0.465312716,0.434735002,0.434735002,0.434735002 +4,AZ,2,FUEL COMB. INDUSTRIAL,VOC,0.89142,1.7736,1.81602,1.80154,0.694,0.709267,0.724288,0.13955769,0.215628608,0.291699527,0.367770445,0.5068657,0.645960955,0.78505621,0.609187718,0.433319226,0.257450734,0.295260369,0.333070004,0.370879639,0.373262053,0.375644466,0.378026879,0.378026879,0.378026879 +4,AZ,2,FUEL COMB. INDUSTRIAL,PM25,0.43657,1.77579,1.80317,1.77948,0.724785,0.73176,0.772524,0.253256513,0.271817566,0.290378619,0.308939673,0.488102668,0.667265664,0.84642866,0.682639108,0.518849556,0.355060004,0.364277791,0.373495577,0.382713363,0.409533903,0.436354442,0.463174982,0.463174982,0.463174982 +4,AZ,2,FUEL COMB. INDUSTRIAL,PM10,0.86455,2.16316,2.19845,2.1675,1.074943,1.077418,1.147996,0.83989925,0.856942943,0.873986636,0.891030328,1.072451067,1.253871806,1.435292545,1.080698225,0.726103905,0.371509585,0.484631959,0.597754333,0.710876708,0.635366478,0.559856248,0.484346019,0.484346019,0.484346019 +4,AZ,3,FUEL COMB. OTHER,SO2,0.55203,0.12036,0.12248,0.10897,0.141329,0.146744,0.150257,0.441262357,0.44106654,0.440870722,0.440674905,0.483624771,0.526574637,0.569524503,0.410619484,0.251714464,0.088045409,0.093787597,0.099529786,0.105271974,0.101493767,0.097715561,0.093937354,0.093937354,0.093937354 +4,AZ,3,FUEL COMB. OTHER,NH3,0.02238,0.01505,0.0149,0.01414,0.021996,0.022543,0.023162,0.014405567,0.015507558,0.016609549,0.01771154,0.189885186,0.362058832,0.534232479,0.529001284,0.52377009,0.497039381,0.462563869,0.428088357,0.393612844,0.413053149,0.432493454,0.451933759,0.451933759,0.451933759 +4,AZ,3,FUEL COMB. OTHER,VOC,10.04417,5.14391,5.15109,5.1501,5.338512,5.712134,5.719846,7.746351973,6.397696319,5.049040665,3.700385012,3.701882672,3.703380333,3.704877993,3.640455719,3.576033445,3.249579734,3.537462632,3.82534553,4.113228429,3.543028358,2.972828288,2.402628218,2.402628218,2.402628218 +4,AZ,3,FUEL COMB. OTHER,NOX,5.85628,5.19438,5.28952,5.16302,8.302644,8.468988,8.663539,9.127205604,9.166951686,9.206697768,9.24644385,8.362768361,7.479092872,6.595417384,5.678254948,4.761092512,3.805008024,3.901942287,3.99887655,4.095810813,4.124323716,4.152836618,4.18134952,4.18134952,4.18134952 +4,AZ,3,FUEL COMB. OTHER,CO,53.13644,13.41955,13.43358,13.39981,14.124984,15.072499,15.119434,18.19280999,18.1856549,18.17849981,18.17134471,19.09106863,20.01079255,20.93051647,20.91626084,20.9020052,18.99381857,20.81075261,22.62768665,24.4446207,21.56162699,18.67863328,15.79563957,15.79563957,15.79563957 +4,AZ,3,FUEL COMB. OTHER,PM25,7.01478,1.76459,1.76403,1.76032,2.066274,2.199801,2.210886,2.26002061,2.272081421,2.284142232,2.296203043,2.582533132,2.868863221,3.15519331,3.177208215,3.19922312,2.913352711,3.041033136,3.168713561,3.296393985,2.85674418,2.417094375,1.977444569,1.977444569,1.977444569 +4,AZ,3,FUEL COMB. OTHER,PM10,7.02565,1.76845,1.76803,1.76401,2.072102,2.205793,2.217086,2.300748398,2.311704505,2.322660611,2.333616718,2.610025081,2.886433445,3.162841809,3.204097065,3.245352322,2.97786905,3.088182445,3.19849584,3.308809235,2.869661145,2.430513055,1.991364965,1.991364965,1.991364965 +4,AZ,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.01306,0.00285,0.00301,0.00322,0.010653,0.011115,0.011614,0.287418756,0.280097337,0.272775919,0.2654545,0.31768287,0.369911241,0.422139611,0.315244607,0.208349604,0.1014546,0.067693067,0.033931533,0.00017,0.037763333,0.075356667,0.11295,0.11295,0.11295 +4,AZ,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.11011,0.34373,0.35288,0.36669,0.02792,0.028926,0.029938,0.061693864,0.072691543,0.083689221,0.0946869,0.137562674,0.180438447,0.223314221,0.225126609,0.226938997,0.228751385,0.167402117,0.10605285,0.044703582,0.055191026,0.065678471,0.076165915,0.076165915,0.076165915 +4,AZ,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.00034,0.00102,0.00108,0.00111,0.00148,0.001533,0.001637,0.0015855,0.001612333,0.001639167,0.001666,0.004526133,0.007386267,0.0102464,0.0077096,0.0051728,0.002636,0.002597333,0.002558667,0.00252,0.002336667,0.002153333,0.00197,0.00197,0.00197 +4,AZ,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.04858,0.24969,0.25637,0.26637,0.022027,0.022818,0.023619,0.04079589,0.046948751,0.053101613,0.059254474,0.100218216,0.141181959,0.182145701,0.174273302,0.166400904,0.158528505,0.113582054,0.068635603,0.023689152,0.021458172,0.019227191,0.01699621,0.01699621,0.01699621 +4,AZ,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,0.00281,0.00281,0.00288,0.003,0.000255,0.000279,0.000313,0.00061,0.00061,0.00061,0.00061,0.000450149,0.000290298,0.000130447,0.353988832,0.707847216,1.0617056,1.05029286,1.03888012,1.02746738,0.724367687,0.421267993,0.1181683,0.1181683,0.1181683 +4,AZ,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.11912,0.40008,0.41075,0.42675,0.12221,0.126609,0.131211,0.145024202,0.143309501,0.141594801,0.1398801,0.135722333,0.131564567,0.1274068,0.1307994,0.134192,0.1375846,0.141013533,0.144442467,0.1478714,0.144638617,0.141405833,0.13817305,0.13817305,0.13817305 +4,AZ,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,0.00003,0.000031,0.000033,0.0002608,0.000261,0.0002612,0.0002614,0.000418218,0.000575035,0.000731853,0.000661835,0.000591818,0.0005218,0.000354533,0.000187267,0.00002,1.74E-05,1.49E-05,0.00001234,0.00001234,0.00001234 +4,AZ,5,METALS PROCESSING,SO2,50.28884,43.72989,46.84144,46.14513,16.819241,17.423823,18.598687,18.50541502,19.06484263,19.62427024,20.18369786,23.0709119,25.95812595,28.84534,29.86368387,30.88202774,31.90037161,28.58696974,25.27356787,21.960166,22.80574667,23.65132735,24.49690802,24.49690802,24.49690802 +4,AZ,5,METALS PROCESSING,PM25,1.7433,5.1207,5.3541,5.32317,1.267791,1.297991,1.343723,0.731196307,0.905770724,1.08034514,1.254919557,1.158524181,1.062128806,0.965733431,0.840999438,0.716265445,0.591531452,0.52756015,0.463588849,0.399617548,0.502423639,0.60522973,0.708035822,0.708035822,0.708035822 +4,AZ,5,METALS PROCESSING,PM10,4.22677,9.00048,9.38136,9.34304,1.421322,1.455288,1.50684,1.347023232,1.498119688,1.649216143,1.800312598,1.62269684,1.445081081,1.267465323,1.123160422,0.978855521,0.834550621,0.792897006,0.75124339,0.709589775,0.966703932,1.223818088,1.480932245,1.480932245,1.480932245 +4,AZ,5,METALS PROCESSING,NOX,4.00259,1.55144,1.64827,1.62938,0.288461,0.296668,0.311158,0.33325552,0.418376239,0.503496957,0.588617676,0.524665784,0.460713892,0.396762,0.372648867,0.348535733,0.3244226,0.2989219,0.2734212,0.2479205,0.240760743,0.233600985,0.226441228,0.226441228,0.226441228 +4,AZ,5,METALS PROCESSING,CO,0.42942,1.66495,1.74125,1.722,0.220072,0.22729,0.24289,0.989465201,1.057401955,1.12533871,1.193275465,0.861044543,0.528813622,0.1965827,0.3402056,0.4838285,0.6274514,0.630213267,0.632975133,0.635737,0.674148339,0.712559677,0.750971016,0.750971016,0.750971016 +4,AZ,5,METALS PROCESSING,VOC,0.34638,0.75318,0.7952,0.77898,0.138502,0.141986,0.14854,0.189654814,0.198705713,0.207756613,0.216807512,0.157047708,0.097287904,0.0375281,0.047994467,0.058460833,0.0689272,0.055956813,0.042986427,0.03001604,0.057857343,0.085698645,0.113539948,0.113539948,0.113539948 +4,AZ,5,METALS PROCESSING,NH3,0.00002,0.00002,0.00002,0.00002,0.000496,0.000526,0.000556,0.0033081,0.003347909,0.003387717,0.003427526,0.002298351,0.001169175,0.00004,0.00277581,0.005511621,0.008247431,0.008731621,0.00921581,0.0097,0.006473664,0.003247329,0.000020993,0.000020993,0.000020993 +4,AZ,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.01623,0.05218,0.05443,0.05511,0.077321,0.077928,0.078827,0.0059022,0.006868236,0.007834273,0.008800309,0.008219628,0.007638946,0.007058264,0.007644961,0.008231657,0.008818353,0.005982806,0.003147258,0.00031171,0.001708842,0.003105973,0.004503104,0.004503104,0.004503104 +4,AZ,6,PETROLEUM & RELATED INDUSTRIES,VOC,4.44292,3.82746,4.09134,4.14805,2.766023,2.800505,2.856173,0.02473375,0.031315203,0.037896656,0.044478109,0.038297807,0.032117505,0.025937202,0.04479091,0.063644617,0.085087179,0.133081836,0.181076492,0.229071149,0.225056392,0.221041636,0.217026879,0.217026879,0.217026879 +4,AZ,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.00597,0.05659,0.06013,0.06135,0.182587,0.185844,0.190381,0.034343301,0.041760922,0.049178543,0.056596164,0.039053029,0.021509894,0.003966759,0.003241959,0.00251716,0.001792361,0.001378717,0.000965074,0.000551431,0.00041547,0.00027951,0.00014355,0.00014355,0.00014355 +4,AZ,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.03465,0.34116,0.36094,0.36721,0.370178,0.382948,0.4009,0.0059656,0.01051193,0.01505826,0.019604591,0.015555862,0.011507134,0.007458406,0.007911722,0.008365038,0.008818353,0.005982806,0.003147258,0.00031171,0.001709326,0.003106941,0.004504557,0.004504557,0.004504557 +4,AZ,6,PETROLEUM & RELATED INDUSTRIES,NOX,22.52455,12.75008,13.64726,13.83626,7.199104,7.291696,7.44127,0.00986955,0.022398628,0.034927706,0.047456784,0.033923011,0.020389238,0.006855465,0.017392186,0.027928907,0.038465628,0.030552438,0.022639249,0.014726059,0.01286354,0.011001022,0.009138503,0.009138503,0.009138503 +4,AZ,6,PETROLEUM & RELATED INDUSTRIES,CO,3.38203,2.01507,2.15681,2.18672,1.050732,1.062897,1.08255,0.045360351,0.068476762,0.091593173,0.114709584,0.079478636,0.044247688,0.00901674,0.036162244,0.063307748,0.090453253,0.067767247,0.045081241,0.022395235,0.01894481,0.015494385,0.01204396,0.01204396,0.01204396 +4,AZ,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +4,AZ,7,OTHER INDUSTRIAL PROCESSES,CO,4.33391,8.83744,9.33055,9.43153,3.60208,3.739878,4.511292096,5.972146734,6.194594185,6.417041636,6.639489087,7.604287932,8.569086776,9.533885621,7.756437524,5.978989428,4.201541331,6.173716774,8.145892218,10.11806766,9.496497939,8.874928218,8.253358496,8.253358496,8.253358496 +4,AZ,7,OTHER INDUSTRIAL PROCESSES,NH3,1.07756,1.27968,1.37083,1.40456,1.449422,1.533351,1.647616,3.21705036,3.208352163,3.199653967,3.190955771,3.754720351,4.31848493,4.88224951,3.920445637,2.958641764,1.996837891,1.337893139,0.678948387,0.020003635,0.881709264,1.743414893,2.605120523,2.605120523,2.605120523 +4,AZ,7,OTHER INDUSTRIAL PROCESSES,NOX,2.35556,11.4741,12.18695,12.28564,10.16121,10.690042,11.402613,4.544214058,5.102744284,5.661274511,6.219804737,5.937506617,5.655208496,5.372910375,5.031615917,4.690321458,3.93667,4.022231244,4.107792489,4.193353733,4.2469085,4.300463267,4.354018035,4.354018035,4.354018035 +4,AZ,7,OTHER INDUSTRIAL PROCESSES,PM10,13.0628,20.67242,21.98381,23.52068,15.38208,16.271952,17.72083578,17.58662941,17.31036247,17.03409554,16.75782861,38.63126186,60.5046951,82.37812835,76.40668119,70.43523404,65.01791688,62.58262583,60.14733478,57.71204373,55.66458016,53.6171166,51.56965303,51.56965303,51.56965303 +4,AZ,7,OTHER INDUSTRIAL PROCESSES,PM25,3.82599,8.2958,8.70667,9.05671,3.90252,4.117453,5.34795843,6.800688011,6.560403446,6.320118882,6.079834317,10.26197737,14.44412042,18.62626347,16.08465186,13.54304025,11.05683864,10.74678249,10.43672634,10.12667018,10.06046105,9.994251919,9.928042787,9.928042787,9.928042787 +4,AZ,7,OTHER INDUSTRIAL PROCESSES,SO2,1.84374,11.02188,11.71246,11.713,10.441369,10.682614,11.01256,1.541139333,1.648829791,1.756520249,1.864210708,2.298322078,2.732433448,3.166544818,3.000886486,2.835228154,2.669569821,2.457532077,2.245494334,2.03345659,1.93610203,1.838747471,1.741392911,1.741392911,1.741392911 +4,AZ,7,OTHER INDUSTRIAL PROCESSES,VOC,1.24889,8.05817,8.46028,8.59307,1.842848,1.918838,2.20374269,2.277924114,2.345196712,2.412469311,2.479741909,2.853468378,3.227194846,3.600921315,3.360642406,3.120363497,2.880084588,2.301065841,1.722047094,1.143028347,1.523581443,1.904134538,2.284687634,2.284687634,2.284687634 +4,AZ,8,SOLVENT UTILIZATION,CO,,0.00032,0.00033,0.00034,0.013204,0.014382,0.015993,,0,0,,0.000541833,0.001083667,0.0016255,0.001438407,0.001251313,0.00106422,0.001702693,0.002341167,0.00297964,0.009033473,0.015087307,0.02114114,0.02114114,0.02114114 +4,AZ,8,SOLVENT UTILIZATION,VOC,67.71364,84.31232,88.08123,76.90103,70.989131,70.902571,74.154949,49.55447229,49.63620469,49.71793708,49.79966948,53.84539325,57.89111701,61.93684078,57.64079803,53.34475528,49.0122252,51.76218297,54.51214073,57.2620985,55.61869871,53.97529893,52.33189914,52.33189914,52.33189914 +4,AZ,8,SOLVENT UTILIZATION,NOX,,0.00162,0.00169,0.00175,0.035089,0.038351,0.042827,,0.002786292,0.005572584,0.008358876,0.006227251,0.004095625,0.001964,0.00173164,0.00149928,0.00126692,0.002027008,0.002787097,0.003547185,0.004870685,0.006194185,0.007517685,0.007517685,0.007517685 +4,AZ,8,SOLVENT UTILIZATION,PM10,,0.027,0.02872,0.02949,0.008836,0.009679,0.010746,0.009788102,0.01267368,0.015559258,0.018444836,0.013058038,0.007671239,0.00228444,0.001555057,0.000825673,0.00009629,0.000154052,0.000211813,0.000269575,0.000803235,0.001336895,0.001870555,0.001870555,0.001870555 +4,AZ,8,SOLVENT UTILIZATION,SO2,,0.00001,0.00001,0.00001,0.000009,0.000009,0.000009,,0,0,,0.000003,0.000006,0.000009,0.000008505,0.00000801,0.000007515,0.000012105,0.000016695,0.000021285,0.000021285,0.000021285,0.000021285,0.000021285,0.000021285 +4,AZ,8,SOLVENT UTILIZATION,NH3,,,,,0.022106,0.023996,0.026727,0.000118265,0.0001324,0.000146535,0.00016067,0.000107113,5.36E-05,,0,0,0,0,0,,0,0,0,0,0 +4,AZ,8,SOLVENT UTILIZATION,PM25,,0.02232,0.02375,0.02438,0.008836,0.009679,0.010746,0.009337654,0.011719997,0.014102339,0.016484682,0.011751268,0.007017854,0.00228444,0.001549593,0.000814747,7.99E-05,0.00012783,0.00017576,0.00022369,0.000690456,0.001157223,0.001623989,0.001623989,0.001623989 +4,AZ,9,STORAGE & TRANSPORT,CO,,,,,,,,0.0089601,0.008967074,0.008974048,0.008981022,0.008528344,0.008075665,0.007622987,0.006939068,0.006255149,0.00557123,0.005575912,0.005580594,0.005585276,0.01034147,0.015097664,0.019853858,0.019853858,0.019853858 +4,AZ,9,STORAGE & TRANSPORT,NH3,0.00001,0.00001,0.00001,0.00001,,,,,0,0,,0.000292733,0.000585467,0.0008782,0.000856383,0.000834567,0.00081275,0.000836593,0.000860437,0.00088428,0.000658763,0.000433247,0.00020773,0.00020773,0.00020773 +4,AZ,9,STORAGE & TRANSPORT,NOX,,,,,,,,0.005407225,0.007814526,0.010221827,0.012629128,0.011492058,0.010354988,0.009217918,0.007849966,0.006482014,0.005114063,0.005100715,0.005087368,0.00507402,0.005289293,0.005504565,0.005719838,0.005719838,0.005719838 +4,AZ,9,STORAGE & TRANSPORT,PM10,1.01292,3.99035,4.20315,4.27855,0.77155,0.799035,0.833282,1.127723288,1.309314875,1.490906461,1.672498048,1.953236277,2.233974507,2.514712736,2.390212975,2.265713213,1.587083451,1.622604224,1.658124997,1.69364577,1.611873518,1.530101266,1.448329015,1.448329015,1.448329015 +4,AZ,9,STORAGE & TRANSPORT,PM25,0.25587,1.19014,1.25216,1.27447,0.316307,0.329379,0.345351,0.47625197,0.579692789,0.683133608,0.786574427,0.857815537,0.929056647,1.000297758,0.899025876,0.797753995,0.641072114,0.609091717,0.57711132,0.545130923,0.518627781,0.492124639,0.465621497,0.465621497,0.465621497 +4,AZ,9,STORAGE & TRANSPORT,SO2,,,,,,,,0.00000964,5.25E-05,9.53E-05,0.000138108,0.000258522,0.000378935,0.000499349,0.000416576,0.000333804,0.000251031,0.000251064,0.000251098,0.000251131,0.000223191,0.000195252,0.000167312,0.000167312,0.000167312 +4,AZ,9,STORAGE & TRANSPORT,VOC,21.57388,24.124,24.24076,24.20319,22.687807,22.867839,23.345197,20.16863027,20.11487577,20.06112127,20.00736677,20.34009387,20.67282097,21.00554807,18.89832245,16.79109682,12.54813145,11.11227285,9.676414244,8.240555642,8.39619016,8.551824678,8.707459195,8.707459195,8.707459195 +4,AZ,10,WASTE DISPOSAL & RECYCLING,NH3,0.7908,0.86142,0.87532,0.89614,0.917,0.930756,0.951847,1.23898,1.23898,1.23898,1.23898,1.6296808,2.0203816,2.4110824,1.616915735,0.82274907,0.028582405,0.074278387,0.119974368,0.16567035,0.173243662,0.180816973,0.188390285,0.188390285,0.188390285 +4,AZ,10,WASTE DISPOSAL & RECYCLING,VOC,13.79601,8.54663,8.82734,9.50176,8.508093,3.160595,3.185864,4.574825767,4.579657748,4.584489729,4.589321709,4.768356434,4.947391158,5.126425883,3.818139928,2.509853974,1.201568019,2.011092244,2.820616469,3.630140694,3.069162843,2.508184992,1.947207141,1.947207141,1.947207141 +4,AZ,10,WASTE DISPOSAL & RECYCLING,SO2,0.15988,0.09808,0.10435,0.10727,0.148102,0.153819,0.158518,0.088268185,0.097206755,0.106145326,0.115083896,0.115022455,0.114961014,0.114899573,0.109239441,0.103579309,0.097919177,0.184261338,0.270603499,0.35694566,0.285733214,0.214520767,0.143308321,0.143308321,0.143308321 +4,AZ,10,WASTE DISPOSAL & RECYCLING,PM25,2.15172,8.88966,9.14665,10.06202,10.834501,2.957819,2.964498,3.67319816,3.700987034,3.728775907,3.756564781,3.829339176,3.902113571,3.974887966,3.220891513,2.466895059,1.712898605,2.321536431,2.930174257,3.538812082,2.824237943,2.109663804,1.395089665,1.395089665,1.395089665 +4,AZ,10,WASTE DISPOSAL & RECYCLING,NOX,0.62577,2.54036,2.60967,2.87766,3.130985,0.807567,0.812978,0.974376883,0.976437903,0.978498923,0.980559943,0.998640963,1.016721984,1.034803005,0.859323701,0.683844398,0.508365094,0.74832101,0.988276926,1.228232843,0.930958432,0.633684022,0.336409612,0.336409612,0.336409612 +4,AZ,10,WASTE DISPOSAL & RECYCLING,CO,23.76316,79.86063,81.78229,90.66058,97.99142,19.088631,19.117252,24.85757355,24.87761403,24.89765451,24.91769498,25.85648665,26.79527831,27.73406998,22.67057396,17.60707794,12.43415153,20.2063852,27.97861887,35.75085254,25.97873944,16.20662634,6.434513246,6.434513246,6.434513246 +4,AZ,10,WASTE DISPOSAL & RECYCLING,PM10,2.5581,9.02241,9.28909,10.20808,11.007205,3.139481,3.148892,3.941939465,3.983961898,4.025984332,4.068006765,4.091653562,4.115300359,4.138947157,3.487982213,2.83701727,2.186052326,2.93158595,3.677119573,4.422653197,3.493772279,2.564891362,1.636010444,1.636010444,1.636010444 +4,AZ,11,HIGHWAY VEHICLES,CO,1616.75178,1084.92615,1065.99933,1049.76456,1017.64515,1037.81513,1026.05934,718.2736941,711.2116581,704.149622,697.087586,707.3953707,717.7031553,637.0891206,555.7870931,561.2181109,563.3925597,560.6123681,557.8321764,555.0519848,549.7955346,468.6672722,487.9035938,401.1655236,379.3341622 +4,AZ,11,HIGHWAY VEHICLES,NH3,2.67134,4.01046,4.56434,4.45936,4.62374,4.99276,5.14166,2.793274758,2.802879767,2.812484775,2.822089784,2.790864579,2.759639375,2.534835417,2.5475496,2.134751122,2.308593519,2.250026864,2.19146021,2.132893555,2.077859362,2.033062455,2.087004323,1.79961282,1.760285682 +4,AZ,11,HIGHWAY VEHICLES,NOX,162.02355,141.6097,145.72555,146.10231,162.01148,149.2313,142.68893,222.5814459,216.1975076,209.8135693,203.4296309,191.8689756,180.3083203,159.7879564,147.7206664,118.3309764,134.0158149,128.8754497,123.7350845,118.5947193,106.5587153,81.12597589,82.69924532,69.66974396,63.20322538 +4,AZ,11,HIGHWAY VEHICLES,PM10,7.12267,4.7506,4.63922,4.41215,4.95965,4.136,3.93946,8.784588979,8.916296387,9.048003795,9.179711204,8.968154154,8.756597105,7.553399549,7.010753982,5.524889894,7.721376152,7.053337527,6.385298901,5.717260276,5.603683386,4.317608012,4.406915176,4.664337004,4.552634697 +4,AZ,11,HIGHWAY VEHICLES,PM25,6.00711,3.78558,3.64289,3.4287,3.88659,3.11558,2.92421,7.333294633,7.399158023,7.465021413,7.530884802,7.12240623,6.713927658,5.566308931,5.211392819,3.817619838,4.154499244,3.823345832,3.492192421,3.161039009,2.966585374,2.163216869,2.185674683,2.113550523,1.988197231 +4,AZ,11,HIGHWAY VEHICLES,SO2,9.2133,5.07651,5.29297,5.4192,6.1171,5.24557,5.37944,3.978523944,3.925700258,3.872876573,3.820052887,2.392690437,0.965327987,0.916444234,0.859344101,0.839152413,0.429657933,0.466342212,0.503026491,0.539710769,0.372634742,0.368324079,0.350768236,0.174041966,0.155977949 +4,AZ,11,HIGHWAY VEHICLES,VOC,151.39273,94.86473,92.97097,92.78919,93.44383,91.57021,89.1452,73.45706114,71.21638981,68.97571847,66.73504714,70.80017753,74.86530791,62.16461475,69.70694883,63.2466148,57.38532281,56.88419585,56.38306889,55.88194193,55.10252333,46.25961574,48.38275056,39.33839394,36.3146483 +4,AZ,12,OFF-HIGHWAY,PM10,4.1038,4.38272,4.36582,4.33474,4.247755,4.208415,4.164555,6.756778143,6.183919812,5.61106148,5.038203149,4.919277471,4.800351792,4.316141068,4.573232437,4.504159707,4.338112347,4.187031895,4.035951444,3.884870992,3.608039366,3.184002895,3.054376112,2.926068451,2.79776079 +4,AZ,12,OFF-HIGHWAY,CO,430.98411,494.14342,475.95263,476.65323,481.707176,488.266676,499.524316,460.1174238,452.2795974,444.4417709,436.6039445,425.2141844,413.8244243,298.7957079,363.8896917,353.5801834,326.2441981,314.575043,302.9058879,291.2367327,264.5411364,209.6872967,211.1499437,211.9879865,212.8260293 +4,AZ,12,OFF-HIGHWAY,NOX,47.83875,54.09642,55.96621,57.51126,53.798,54.208795,54.271873,69.06743908,67.56058043,66.05372178,64.54686312,62.05592112,59.56497911,60.87709831,58.90063183,57.8034802,56.83430196,54.40744488,51.98058781,49.55373074,48.18466985,46.37222351,45.44654807,43.71955408,41.99256009 +4,AZ,12,OFF-HIGHWAY,PM25,3.74156,3.99569,3.98536,3.96299,3.871065,3.833975,3.794415,6.019621312,5.60154484,5.183468369,4.765391898,4.624920789,4.484449681,3.856569964,4.090822065,4.023939719,4.075586074,3.932752463,3.789918853,3.647085242,3.396736922,3.022279066,2.896040283,2.771544293,2.647048303 +4,AZ,12,OFF-HIGHWAY,SO2,3.72236,4.66963,4.71778,4.77933,4.854965,4.979865,5.076865,6.106470385,6.171496419,6.236522453,6.301548487,4.460465122,2.619381757,0.853971308,1.269895794,0.926765329,0.818191763,0.762599203,0.707006644,0.651414084,0.78850813,0.836497856,1.062696222,1.039079263,1.015462303 +4,AZ,12,OFF-HIGHWAY,VOC,47.61536,52.17243,47.81863,45.8912,45.617577,45.433819,45.1457,57.02820208,54.87297345,52.71774482,50.5625162,49.01031614,47.45811608,38.47775993,43.98512759,41.921727,40.16986441,37.73516429,35.30046418,32.86576406,28.81933152,21.56536838,20.72646644,20.23710189,19.74773733 +4,AZ,12,OFF-HIGHWAY,NH3,0.28589,0.34424,0.34857,0.35901,0.04851,0.04851,0.04851,0.047270711,0.047936634,0.048602557,0.049268481,0.04939014,0.0495118,0.156600644,0.051039156,0.051824125,0.052914253,0.053411216,0.053908179,0.054405142,0.052785947,0.046938521,0.049547557,0.050053539,0.050559522 +4,AZ,14,MISCELLANEOUS,CO,415.63088,174.33091,83.621,132.43087,377.57276,361.80679,140.20015,14.77781,30.48592339,46.19403677,61.90215016,41.53771352,21.17327688,0.808840239,2.561313027,4.313785816,6.066258604,4.185652028,2.305045451,0.424438874,0.912196419,1.399953965,1.88771151,1.88771151,1.88771151 +4,AZ,14,MISCELLANEOUS,NH3,33.08078,29.24291,28.29825,27.72679,27.88465,27.40294,27.13808752,29.78614827,30.04638739,30.30662652,30.56686564,30.33125945,30.09565326,29.86004707,31.36769688,32.87534668,34.38299648,32.2779235,30.17285052,28.06777754,41.54027219,55.01276684,68.48526149,68.48526149,68.48526149 +4,AZ,14,MISCELLANEOUS,NOX,17.20914,5.03936,2.48277,3.90321,10.17328,8.47358,3.58357,0.21811691,0.555875196,0.893633483,1.231391769,0.83874577,0.446099771,0.053453772,0.146796809,0.240139846,0.333482883,0.235196082,0.13690928,0.038622478,0.054451491,0.070280503,0.086109516,0.086109516,0.086109516 +4,AZ,14,MISCELLANEOUS,PM10,247.13434,212.66023,209.30682,219.0251,252.81312,255.25265,213.934462,186.21676,187.9251246,189.6334893,191.3418539,190.5416898,189.7415257,188.9413615,181.9509948,174.960628,167.9702613,177.8597522,187.7492431,197.638734,176.240897,154.84306,133.445223,133.445223,133.445223 +4,AZ,14,MISCELLANEOUS,PM25,78.23999,53.09203,47.4072,53.14329,73.50033,72.579085,47.2180915,19.23012,20.677891,22.125662,23.573433,24.98840659,26.40338018,27.81835377,25.90486155,23.99136933,22.07787711,22.93161733,23.78535754,24.63909776,22.63342487,20.62775199,18.6220791,18.6220791,18.6220791 +4,AZ,14,MISCELLANEOUS,SO2,0.463,0.17903,0.07759,0.12673,2.78733,2.32144,0.98064,0.234118635,0.389262655,0.544406675,0.699550696,0.469314064,0.239077432,0.0088408,0.057760676,0.106680551,0.155600427,0.105712962,0.055825497,0.005938032,0.010986609,0.016035186,0.021083764,0.021083764,0.021083764 +4,AZ,14,MISCELLANEOUS,VOC,19.61926,21.34053,7.39171,12.97677,19.07444,17.50039,6.98918,3.42677744,7.167693259,10.90860908,14.6495249,9.802297437,4.955069977,0.107842518,0.244518978,0.381195438,0.517871898,0.946708663,1.375545428,1.804382194,2.248639396,2.692896598,3.1371538,3.1371538,3.1371538 +4,AZ,15,WILDFIRES,PM10,,,,,,,,99.02505,99.02505,99.02505,6.764077981,6.764077981,6.764077981,8.25818479,8.25818479,8.25818479,142.9117208,142.9117208,142.9117208,24.25778879,24.25778879,24.25778879,38.02179186,38.02179186,38.02179186 +4,AZ,15,WILDFIRES,VOC,,,,,,,,243.08738,243.08738,243.08738,14.34309948,14.34309948,14.34309948,18.29263635,18.29263635,18.29263635,329.2772248,329.2772248,329.2772248,54.92376023,54.92376023,54.92376023,87.24811481,87.24811481,87.24811481 +4,AZ,15,WILDFIRES,PM25,,,,,,,,83.91905,83.91905,83.91905,5.732269483,5.732269483,5.732269483,7.00326239,7.00326239,7.00326239,121.1116696,121.1116696,121.1116696,20.55745106,20.55745106,20.55745106,32.2218587,32.2218587,32.2218587 +4,AZ,15,WILDFIRES,NOX,,,,,,,,6.76784,6.76784,6.76784,1.567550633,1.567550633,1.567550633,1.146678413,1.146678413,1.146678413,20.23222975,20.23222975,20.23222975,3.909503922,3.909503922,3.909503922,5.557855261,5.557855261,5.557855261 +4,AZ,15,WILDFIRES,NH3,,,,,,,,16.91139,16.91139,16.91139,0.997780835,0.997780835,0.997780835,1.278456229,1.278456229,1.278456229,22.90623991,22.90623991,22.90623991,3.820775337,3.820775337,3.820775337,6.069431791,6.069431791,6.069431791 +4,AZ,15,WILDFIRES,CO,,,,,,,,1057.07481,1057.07481,1057.07481,59.9058588,59.9058588,59.9058588,81.4089165,81.4089165,81.4089165,1394.221505,1394.221505,1394.221505,231.9141279,231.9141279,231.9141279,369.1878162,369.1878162,369.1878162 +4,AZ,15,WILDFIRES,SO2,,,,,,,,5.51196,5.51196,5.51196,0.67957581,0.67957581,0.67957581,0.603305877,0.603305877,0.603305877,10.84704578,10.84704578,10.84704578,1.970663774,1.970663774,1.970663774,2.933555363,2.933555363,2.933555363 +4,AZ,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.75276537,0.70581732,0.65886927,0.61192122,0.586308998,0.560696775,0.535084553,0.691621351,0.848158148,1.004694946,1.004694946,1.004694946 +4,AZ,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.39489378,0.72428328,1.053672779,1.383062279,1.330644272,1.278226265,1.225808258,1.659464907,2.093121557,2.526778206,2.526778206,2.526778206 +4,AZ,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,4.37345145,9.542805519,14.71215959,19.88151366,19.12800664,18.37449962,17.6209926,23.85480576,30.08861893,36.32243209,36.32243209,36.32243209 +4,AZ,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,2.74567915,2.190139548,1.634599947,1.079060345,1.030143129,0.981225914,0.932308698,1.15356899,1.374829282,1.596089574,1.596089574,1.596089574 +4,AZ,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,7.90318881,8.107778767,8.312368724,8.516958681,8.187867996,7.85877731,7.529686625,10.1082179,12.68674918,15.26528046,15.26528046,15.26528046 +4,AZ,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,79.4820655,81.10588039,82.72969527,84.35351016,81.16616324,77.97881633,74.79146941,101.3811941,127.9709187,154.5606434,154.5606434,154.5606434 +4,AZ,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,7.0355581,7.096292957,7.157027815,7.217762672,6.938871586,6.659980499,6.381089413,8.566285706,10.751482,12.93667829,12.93667829,12.93667829 +5,AR,1,FUEL COMB. ELEC. UTIL.,VOC,0.44292,0.72111,0.66814,0.73573,0.64138,0.649837,0.589233,0.561017266,0.53579598,0.510574694,0.485353408,0.467951291,0.450549173,0.433147056,0.435630216,0.438113377,0.440596537,0.436113174,0.431629811,0.427146448,0.403574116,0.380001785,0.356429453,0.356429453,0.356429453 +5,AR,1,FUEL COMB. ELEC. UTIL.,SO2,69.16009,95.5297,84.90068,76.38777,77.44305,75.10442,78.776871,70.74799004,73.007026,81.483018,66.36246183,73.428465,72.242599,60.69739025,60.00718333,59.31736567,58.62754802,59.3138717,60.00019538,60.68651906,52.48403393,44.28154879,36.07906366,51.772935,39.345296 +5,AR,1,FUEL COMB. ELEC. UTIL.,PM25,0.52586,1.42318,1.46625,1.32898,2.617711,2.630544,2.782113,1.740850323,1.742720632,1.744590941,1.74646125,1.594176167,1.441891083,1.289606,1.18603809,1.08247018,0.97890227,0.963757843,0.948613415,0.933468988,0.883929283,0.834389577,0.784849872,0.784849872,0.784849872 +5,AR,1,FUEL COMB. ELEC. UTIL.,PM10,1.53825,1.98798,2.04937,1.84526,3.106047,3.11982,3.352296,2.008463137,2.009390266,2.010317395,2.011244525,1.975227465,1.939210406,1.903193346,2.005220326,2.107247306,2.209274286,2.364156487,2.519038688,2.67392089,2.190512815,1.70710474,1.223696665,1.223696665,1.223696665 +5,AR,1,FUEL COMB. ELEC. UTIL.,NOX,39.52366,51.4471,45.2965,48.30597,51.915,52.134922,47.779857,41.88921239,41.748645,40.083476,35.19358353,35.311197,37.723766,31.02893973,31.50680889,31.98484155,32.4628742,32.38797623,32.31307826,32.23818029,28.88054062,25.52290095,22.16526128,22.437301,17.447018 +5,AR,1,FUEL COMB. ELEC. UTIL.,NH3,,0.0602,0.04595,0.07353,0.08532,0.092924,0.056498,0.2848289,0.269279793,0.253730686,0.238181578,0.233618043,0.229054507,0.224490972,0.226313749,0.228136526,0.229959304,0.288715758,0.347472212,0.406228666,0.370191702,0.334154738,0.298117774,0.298117774,0.298117774 +5,AR,1,FUEL COMB. ELEC. UTIL.,CO,4.20455,8.93074,8.72572,9.34225,5.09364,5.197494,4.705263,4.243239594,4.304123776,4.365007959,4.425892141,4.226864013,4.027835885,3.828807757,4.203774347,4.578740937,4.953707526,5.53055535,6.107403174,6.684250997,7.14030684,7.596362682,8.052418525,8.052418525,8.052418525 +5,AR,2,FUEL COMB. INDUSTRIAL,SO2,29.51171,30.97789,29.13844,28.52933,29.39999,31.579529,32.633627,37.50411591,35.84289192,34.18166792,32.52044393,27.55689999,22.59335605,17.62981211,18.74034869,19.85088528,20.96142186,20.82357319,20.68572452,20.54787585,19.26569047,17.98350509,16.70131971,16.70131971,16.70131971 +5,AR,2,FUEL COMB. INDUSTRIAL,PM25,6.98621,3.8401,3.70665,3.74008,6.206667,6.410909,6.794577,5.521028137,4.517281916,3.513535695,2.509789474,2.345155942,2.18052241,2.015888877,2.032738355,2.049587832,2.06643731,5.327598561,8.588759812,11.84992106,11.67211896,11.49431686,11.31651477,11.31651477,11.31651477 +5,AR,2,FUEL COMB. INDUSTRIAL,PM10,9.92085,5.38365,5.17967,5.21339,7.722566,7.973631,8.466932,7.850816195,6.721306989,5.591797783,4.462288578,3.932293227,3.402297876,2.872302526,2.904932579,2.937562632,2.970192686,8.419550682,13.86890868,19.31826667,17.28774404,15.25722141,13.22669877,13.22669877,13.22669877 +5,AR,2,FUEL COMB. INDUSTRIAL,NOX,47.0783,56.83897,55.36764,54.83436,53.87792,55.319511,56.197148,31.89529955,32.649179,33.40305845,34.15693791,30.8958243,27.6347107,24.3735971,24.89986607,25.42613503,25.952404,27.90422982,29.85605564,31.80788147,29.33513748,26.8623935,24.38964951,24.38964951,24.38964951 +5,AR,2,FUEL COMB. INDUSTRIAL,NH3,0.19087,0.22453,0.22137,0.21917,0.22427,0.233171,0.234953,0.207469627,0.202241837,0.197014048,0.191786259,0.160706439,0.12962662,0.0985468,0.083208575,0.067870349,0.052532124,0.181847538,0.311162952,0.440478365,0.4579746,0.475470834,0.492967069,0.492967069,0.492967069 +5,AR,2,FUEL COMB. INDUSTRIAL,CO,23.88595,32.98697,31.95256,32.16034,33.01525,33.256186,34.942045,23.92591854,24.17453829,24.42315805,24.6717778,21.40599177,18.14020574,14.87441971,14.56086315,14.24730659,13.93375002,17.83438956,21.7350291,25.63566864,25.1699687,24.70426876,24.23856883,24.23856883,24.23856883 +5,AR,2,FUEL COMB. INDUSTRIAL,VOC,1.1671,5.33862,5.2563,5.27123,5.39968,5.733149,6.180793,3.760291687,3.46327478,3.166257873,2.869240966,2.298501025,1.727761084,1.157021144,1.24842389,1.339826636,1.489479382,1.602094124,1.714708866,1.827323608,1.664959383,1.502595157,1.340230931,1.340230931,1.340230931 +5,AR,3,FUEL COMB. OTHER,NOX,5.90438,9.83564,9.75333,9.19755,9.229467,9.39485,9.56568,5.320103903,5.354008302,5.387912702,5.421817102,4.533491852,3.645166602,2.756841353,2.754920629,2.752999905,2.73942062,3.458194946,4.176969272,4.895743598,4.974228712,5.052713826,5.13119894,5.13119894,5.13119894 +5,AR,3,FUEL COMB. OTHER,VOC,22.13445,7.173,7.18369,7.17914,7.316579,7.831501,7.837796,6.43641889,5.576020745,4.715622601,3.855224457,3.242619881,2.630015304,2.017410728,1.910359675,1.803308623,1.618448001,1.635892516,1.653337032,1.670781547,3.336764642,5.002747737,6.668730831,6.668730831,6.668730831 +5,AR,3,FUEL COMB. OTHER,SO2,1.37406,1.26087,1.26214,1.02211,0.746703,0.765084,0.783799,0.805275751,0.804541194,0.803806637,0.803072081,0.555828312,0.308584543,0.061340773,0.06123849,0.061136207,0.059464688,0.065692685,0.071920682,0.078148679,0.118128524,0.15810837,0.198088216,0.198088216,0.198088216 +5,AR,3,FUEL COMB. OTHER,PM10,15.63228,2.83204,2.82667,2.8125,3.105881,3.309952,3.319994,3.00660572,3.005312795,3.004019869,3.002726944,2.552807895,2.102888846,1.652969797,1.564248371,1.475526946,1.287056232,1.404857663,1.522659093,1.640460524,3.17904885,4.717637176,6.256225503,6.256225503,6.256225503 +5,AR,3,FUEL COMB. OTHER,NH3,0.03635,0.05864,0.05894,0.05563,0.05748,0.058109,0.058879,0.066853406,0.065814747,0.064776089,0.063737431,0.189080706,0.314423981,0.439767255,0.442930784,0.446094312,0.441254012,0.459653515,0.478053018,0.496452521,0.548216525,0.599980529,0.651744533,0.651744533,0.651744533 +5,AR,3,FUEL COMB. OTHER,CO,117.36028,22.68795,22.71018,22.53465,23.090324,24.592084,24.664741,21.11105008,21.06986966,21.02868923,20.98750881,17.86080209,14.73409538,11.60738866,10.97065569,10.33392271,9.061756558,10.02973224,10.99770792,11.96568361,23.3905616,34.81543959,46.24031758,46.24031758,46.24031758 +5,AR,3,FUEL COMB. OTHER,PM25,15.60991,2.81512,2.80973,2.79783,3.094451,3.298184,3.307923,2.794241461,2.79124926,2.78825706,2.785264859,2.400734359,2.016203858,1.631673358,1.543409443,1.455145529,1.267132327,1.357547635,1.447962944,1.538378252,3.08599194,4.633605628,6.181219316,6.181219316,6.181219316 +5,AR,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.77,1.72609,1.77287,1.82343,1.83563,1.910059,1.986611,2.919208777,2.438463526,1.957718275,1.476973025,1.391560983,1.306148942,1.2207369,0.902425106,0.584113311,0.265801517,0.236963509,0.208125501,0.179287493,0.175900312,0.172513132,0.169125951,0.169125951,0.169125951 +5,AR,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.85534,0.36543,0.376,0.38666,1.058467,1.100627,1.147494,0.955305879,0.909381508,0.863457137,0.817532765,0.855193802,0.892854838,0.930515874,0.880001074,0.829486274,0.77898807,0.672916428,0.566844785,0.460773142,0.412618077,0.364463012,0.316307948,0.316307948,0.316307948 +5,AR,4,CHEMICAL & ALLIED PRODUCT MFG,CO,40.138,41.85677,43.15365,44.46458,44.49159,46.459095,48.391168,0.581171206,0.621846656,0.662522106,0.703197556,0.615984104,0.528770652,0.4415572,0.430049755,0.418542309,0.407034864,0.394747871,0.382460879,0.370173886,0.367777799,0.365381712,0.362985625,0.362985625,0.362985625 +5,AR,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,14.7825,0.37196,0.38078,0.39793,0.40942,0.424127,0.441942,7.00E-05,0.038523333,0.076976667,0.11543,0.11664,0.11785,0.11906,0.106306667,0.093553333,0.0808,0.163525774,0.246251548,0.328977322,0.287369171,0.245761021,0.204152871,0.204152871,0.204152871 +5,AR,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.136,3.23786,3.30597,3.39127,3.44824,3.570637,3.702781,2.700276578,2.730157061,2.760037543,2.789918026,2.355012084,1.920106142,1.4852002,1.471210679,1.457221159,1.443231638,1.172327357,0.901423075,0.630518794,0.583872873,0.537226953,0.490581033,0.490581033,0.490581033 +5,AR,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,1.38272,0.59635,0.61223,0.62908,1.305343,1.356804,1.414003,1.249306404,1.207902687,1.166498969,1.125095252,1.121884713,1.118674173,1.115463634,1.086128648,1.056793663,1.027478677,0.876226825,0.724974972,0.57372312,0.525206565,0.476690011,0.428173456,0.428173456,0.428173456 +5,AR,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,8.21098,5.07301,5.1988,5.36567,5.43962,5.654371,5.873972,2.820281407,2.633583243,2.446885079,2.260186916,1.965889871,1.671592827,1.377295783,1.151155893,0.925016003,0.698876113,0.584548769,0.470221425,0.355894081,0.374803583,0.393713085,0.412622588,0.412622588,0.412622588 +5,AR,5,METALS PROCESSING,NH3,,,,,,,,0,0.177666667,0.355333333,0.533,0.5113,0.4896,0.4679,0.377846667,0.287793333,0.20544,0.267373337,0.329306673,0.39124001,0.3215555,0.25187099,0.18218648,0.18218648,0.18218648 +5,AR,5,METALS PROCESSING,VOC,0.053,1.16896,1.22505,1.22966,1.22715,1.271959,1.353667,1.245168522,1.316733555,1.388298587,1.45986362,1.625066313,1.790269007,1.9554717,1.669256561,1.383041422,1.096826282,1.123266363,1.149706443,1.176146524,0.978121778,0.780097032,0.582072286,0.582072286,0.582072286 +5,AR,5,METALS PROCESSING,NOX,0.3985,1.76263,1.85212,1.85545,1.84482,1.919018,2.051419,1.64575101,1.60021734,1.55468367,1.50915,1.402185,1.29522,1.188255,1.0893474,0.9904398,0.891532201,1.047732165,1.20393213,1.360132094,1.352596537,1.345060979,1.337525422,1.337525422,1.337525422 +5,AR,5,METALS PROCESSING,CO,0.297,5.70971,6.02807,5.99717,5.92416,6.170839,6.631594,4.743171947,4.839885898,4.936599849,5.0333138,4.9612822,4.8892506,4.817219,4.721612078,4.626005157,4.530398235,4.679871333,4.82934443,4.978817528,5.460613844,5.942410159,6.424206475,6.424206475,6.424206475 +5,AR,5,METALS PROCESSING,PM10,0.69246,1.04816,1.08424,1.09691,2.496164,2.588627,2.730216,0.543338021,0.555439962,0.567541903,0.579643844,0.492821196,0.405998548,0.3191759,0.342496642,0.365817383,0.390538125,0.452575017,0.51461191,0.576648802,0.584111713,0.591574625,0.599037536,0.599037536,0.599037536 +5,AR,5,METALS PROCESSING,PM25,0.22034,0.59905,0.62252,0.62628,2.019294,2.094075,2.212534,0.453838155,0.486811167,0.519784179,0.552757191,0.469714436,0.386671682,0.303628927,0.319503258,0.335377589,0.35241362,0.402130615,0.45184761,0.501564605,0.522821275,0.544077946,0.565334616,0.565334616,0.565334616 +5,AR,5,METALS PROCESSING,SO2,0.004,30.76454,32.16864,32.2726,32.20228,33.206732,35.180446,0.907784997,0.964960028,1.022135059,1.07931009,0.960653727,0.841997363,0.723341,0.826047413,0.928753827,1.03206024,1.030391417,1.028722594,1.027053771,0.918535762,0.810017753,0.701499743,0.701499743,0.701499743 +5,AR,6,PETROLEUM & RELATED INDUSTRIES,CO,0.14855,0.89098,0.93316,0.94836,0.96179,0.979662,1.001288,0.707341994,0.571421329,0.435500665,0.29958,1.733897,3.168214,4.602531,5.879804519,7.157078037,8.434351245,7.495473446,6.556595648,5.617717849,6.000953002,6.384188155,6.767423308,6.767423308,6.767423308 +5,AR,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.15336,0.0792,0.08309,0.08386,0.08542,0.086188,0.086958,,0,0,,0,0,,0.005023333,0.010046667,0.01507,0.010213333,0.005356667,0.0005,0.00535316,0.01020632,0.01505948,0.01505948,0.01505948 +5,AR,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.83941,3.86091,4.04531,4.10568,4.16754,4.23728,4.31989,1.082772002,0.804870668,0.526969334,0.249068,2.285631333,4.322194667,6.358758,8.095228443,9.831698887,11.56817007,10.14984837,8.73152667,7.313204969,7.29285836,7.272511751,7.252165142,7.252165142,7.252165142 +5,AR,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.00029,0.08473,0.08841,0.08863,0.233166,0.23526,0.238095,0.347889062,0.273725837,0.199562612,0.125399387,0.086717438,0.048035489,0.00935354,0.175219037,0.341084535,0.506949921,0.402004347,0.297058773,0.192113198,0.17547796,0.158842721,0.142207482,0.142207482,0.142207482 +5,AR,6,PETROLEUM & RELATED INDUSTRIES,SO2,1.1412,1.68043,1.73943,1.74309,1.76198,1.800828,1.842819,1.323239285,0.887295524,0.451351762,0.015408,0.139863667,0.264319333,0.388775,0.267832315,0.146889629,0.025946946,0.027406721,0.028866496,0.030326272,0.027300089,0.024273907,0.021247724,0.021247724,0.021247724 +5,AR,6,PETROLEUM & RELATED INDUSTRIES,VOC,1.23362,1.22003,1.25263,1.24747,1.20954,1.247932,1.298914,3.793472098,3.492469199,3.191466299,2.8904634,3.113503733,3.336544067,3.5595844,5.536113781,7.512643161,13.11586374,12.97748976,12.83911578,12.7007418,11.53283478,10.36492776,9.197020744,9.197020744,9.197020744 +5,AR,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.00084,0.25038,0.26199,0.26367,0.411396,0.415082,0.419685,0.574304892,0.437254194,0.300203497,0.163152799,0.373383199,0.5836136,0.793844,0.699918746,0.605993492,0.512068126,0.406404818,0.30074151,0.195078201,0.185712849,0.176347496,0.166982143,0.166982143,0.166982143 +5,AR,7,OTHER INDUSTRIAL PROCESSES,CO,27.26789,15.78791,16.49611,16.89082,17.29602,18.055434,19.14439673,25.45361687,26.81882027,28.18402366,29.54922706,23.86372605,18.17822505,12.49272404,12.91201048,13.33129693,13.75058337,13.1616361,12.57268883,11.98374156,10.87805452,9.772367485,8.666680445,8.666680445,8.666680445 +5,AR,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.51027,0.5332,0.54578,0.55881,0.582841,0.607986,8.4258005,8.458312417,8.490824333,8.52333625,5.747234833,2.971133417,0.195032,0.33577731,0.47652262,0.61726793,0.612046993,0.606826055,0.601605118,0.617252068,0.632899019,0.648545969,0.648545969,0.648545969 +5,AR,7,OTHER INDUSTRIAL PROCESSES,NOX,2.09707,10.49002,10.95601,11.2106,11.44434,11.949171,12.49329,4.994383967,7.724991184,10.4555984,13.18620562,12.98706105,12.78791647,12.5887719,10.60298689,8.61720189,6.631416885,6.692485305,6.753553725,6.814622146,6.794431374,6.774240603,6.754049831,6.754049831,6.754049831 +5,AR,7,OTHER INDUSTRIAL PROCESSES,PM10,19.91217,16.80683,18.98397,19.72592,32.166233,33.934981,35.24524122,25.23189751,26.86736318,28.50282886,30.13829453,23.33440561,16.53051669,9.726627772,9.275267189,8.823906606,8.372546023,7.762449427,7.152352831,6.542256235,6.805307759,7.068359284,7.331410808,7.331410808,7.331410808 +5,AR,7,OTHER INDUSTRIAL PROCESSES,PM25,8.15882,5.65033,6.18729,6.43719,12.304049,12.93304,14.05196291,7.125758577,8.550606658,9.975454739,11.40030282,8.924272292,6.448241763,3.972211234,3.790063304,3.607915373,3.425767443,3.288816808,3.151866173,3.014915538,3.23436287,3.453810202,3.673257534,3.673257534,3.673257534 +5,AR,7,OTHER INDUSTRIAL PROCESSES,SO2,3.14123,6.72916,6.99658,7.16003,7.28665,7.601545,7.946954,2.570478776,3.095622868,3.620766961,4.145911053,5.063949582,5.981988111,6.90002664,5.904453338,4.908880035,3.913306733,3.632736578,3.352166422,3.071596267,2.90324087,2.734885472,2.566530075,2.566530075,2.566530075 +5,AR,7,OTHER INDUSTRIAL PROCESSES,VOC,1.86235,15.39336,16.00682,16.35733,16.70092,17.449605,13.37110647,17.62882395,19.26362648,20.898429,22.53323153,20.50855638,18.48388122,16.45920606,16.12303407,15.78686209,15.3924401,16.00448107,16.61652204,17.22856301,16.79314534,16.35772766,15.92230998,15.92230998,15.92230998 +5,AR,8,SOLVENT UTILIZATION,PM10,0.0425,0.05232,0.05344,0.05415,0.0543,0.057127,0.061336,0.104832605,0.111162425,0.117492245,0.123822065,0.097043754,0.070265442,0.04348713,0.032296912,0.021106693,0.008496475,0.00710365,0.005710825,0.004318,0.004570316,0.004822631,0.005074947,0.005074947,0.005074947 +5,AR,8,SOLVENT UTILIZATION,VOC,65.4826,78.60934,80.64805,69.94074,67.07078,67.874483,70.994169,54.28066793,54.08026824,53.87986856,53.67946888,51.98405769,50.28864651,48.59323532,44.00885619,39.42447706,34.75841782,36.35812058,37.95782334,39.55752611,39.57932343,39.60112075,39.62291807,39.62291807,39.62291807 +5,AR,8,SOLVENT UTILIZATION,PM25,0.03504,0.04341,0.04436,0.04494,0.04513,0.04748,0.050979,0.064894437,0.07948031,0.094066183,0.108652057,0.086923327,0.065194598,0.043465868,0.031980224,0.02049458,0.00783064,0.006500645,0.00517065,0.003840655,0.004083947,0.00432724,0.004570533,0.004570533,0.004570533 +5,AR,8,SOLVENT UTILIZATION,NOX,,0.03189,0.03272,0.03302,0.03339,0.035023,0.037068,0.192988538,0.142826925,0.092665313,0.0425037,0.03354052,0.02457734,0.01561416,0.01559819,0.01558222,0.01556625,0.015971053,0.016375856,0.01678066,0.016515237,0.016249815,0.015984393,0.015984393,0.015984393 +5,AR,8,SOLVENT UTILIZATION,NH3,,,,,,,,0,0.00345,0.0069,0.01035,0.011853333,0.013356667,0.01486,0.012841333,0.010822667,0.001104,0.000981333,0.000858667,0.000736,0.000491467,0.000246933,0.0000024,0.0000024,0.0000024 +5,AR,8,SOLVENT UTILIZATION,CO,,0.03774,0.03839,0.03889,0.03908,0.041081,0.044066,0.0596256,0.062757264,0.065888927,0.06902059,0.0496354,0.03025021,0.01086502,0.011138397,0.011411773,0.01168515,0.01159327,0.011501389,0.011409509,0.011344236,0.011278963,0.01121369,0.01121369,0.01121369 +5,AR,8,SOLVENT UTILIZATION,SO2,0.002,0.00345,0.00353,0.00339,0.00328,0.003427,0.003651,0.004545775,0.006139753,0.007733732,0.00932771,0.006916673,0.004505637,0.0020946,0.001716407,0.001338214,0.00036002,0.000269181,0.000178343,8.75E-05,9.20E-05,9.65E-05,0.000101026,0.000101026,0.000101026 +5,AR,9,STORAGE & TRANSPORT,CO,0.076,0.04431,0.04685,0.04682,0.04644,0.048369,0.052011,0.0519459,0.0581361,0.0643263,0.0705165,0.110066667,0.149616833,0.189167,0.2118131,0.2344592,0.2571053,0.231960368,0.206815435,0.181670503,0.126523882,0.071377261,0.01623064,0.01623064,0.01623064 +5,AR,9,STORAGE & TRANSPORT,NH3,,0.00007,0.00007,0.00007,0.00007,0.000072,0.000077,9.09E-05,0.000127273,0.000163636,0.0002,0.010250267,0.020300533,0.0303508,0.024780533,0.019210267,0.01364,0.01135,0.00906,0.00677,0.006291215,0.00581243,0.005333645,0.005333645,0.005333645 +5,AR,9,STORAGE & TRANSPORT,NOX,0.006,0.13003,0.13745,0.13773,0.13698,0.142345,0.15213,0.0313006,0.0384444,0.0455882,0.052732,0.0743912,0.0960504,0.1177096,0.132722433,0.147735267,0.1627481,0.146193085,0.12963807,0.113083054,0.077335578,0.041588101,0.005840625,0.005840625,0.005840625 +5,AR,9,STORAGE & TRANSPORT,PM10,1.50741,0.67183,0.69636,0.72143,1.322491,1.399007,1.499158,0.384583765,0.341943435,0.299303104,0.256662774,0.237419582,0.218176391,0.198933199,0.204393619,0.20985404,0.21531446,0.193579222,0.171843983,0.150108745,0.141090916,0.132073087,0.123055258,0.123055258,0.123055258 +5,AR,9,STORAGE & TRANSPORT,PM25,0.62132,0.42556,0.44131,0.45735,1.051651,1.113203,1.194074,0.121088633,0.119491002,0.117893372,0.116295741,0.10530142,0.094307099,0.083312778,0.074753633,0.066194488,0.057635344,0.056545558,0.055455773,0.054365987,0.05157728,0.048788574,0.045999867,0.045999867,0.045999867 +5,AR,9,STORAGE & TRANSPORT,SO2,,0.00038,0.0004,0.0004,0.0004,0.000417,0.000449,0.152780504,0.154713003,0.156645501,0.158578,0.107806,0.057034,0.006262,0.0061268,0.0059916,0.0058564,0.006057638,0.006258877,0.006460115,0.004873506,0.003286897,0.001700288,0.001700288,0.001700288 +5,AR,9,STORAGE & TRANSPORT,VOC,24.592,27.22374,28.54044,28.79148,23.90791,23.898775,24.229398,26.03295565,26.20267574,26.37239584,26.54211593,25.73413355,24.92615117,24.11816879,25.01628067,25.91439256,24.37926733,20.66851565,16.95776398,13.2470123,13.34987553,13.45273876,13.555602,13.555602,13.555602 +5,AR,10,WASTE DISPOSAL & RECYCLING,NOX,0.938,2.08342,2.13317,2.11768,2.05081,1.896642,1.911336,1.515078463,1.520607131,1.5261358,1.531664469,1.557814225,1.583963981,1.610113737,1.48200125,1.353888762,1.225776275,1.436004227,1.646232178,1.856460129,1.719852381,1.583244633,1.446636885,1.446636885,1.446636885 +5,AR,10,WASTE DISPOSAL & RECYCLING,PM10,3.74759,7.0643,7.33491,7.26336,7.025792,6.549979,6.557483,6.565209196,6.639105985,6.713002774,6.786899563,6.276894328,5.766889093,5.256883858,4.9721616,4.687439343,4.402717085,4.481243378,4.559769671,4.638295963,4.806539221,4.974782478,5.143025735,5.143025735,5.143025735 +5,AR,10,WASTE DISPOSAL & RECYCLING,NH3,0.65443,0.80242,0.79584,0.81553,0.8353,0.855349,0.874559,,0,0,,0.003590083,0.007180167,0.01077025,0.010794301,0.010818353,0.010842405,0.04116988,0.071497355,0.10182483,0.097630665,0.093436499,0.089242334,0.089242334,0.089242334 +5,AR,10,WASTE DISPOSAL & RECYCLING,SO2,0.17884,0.86479,0.86646,0.88759,0.90659,0.930794,0.950043,0.107205,0.108603667,0.110002333,0.111401,0.11009138,0.108781761,0.107472141,0.100896561,0.094320981,0.087745401,0.193532682,0.299319963,0.405107244,0.401675928,0.398244611,0.394813295,0.394813295,0.394813295 +5,AR,10,WASTE DISPOSAL & RECYCLING,VOC,8.92804,5.77352,5.97966,5.95035,5.78765,5.499014,5.519548,5.337016968,5.346952301,5.356887635,5.366822968,4.41778959,3.468756212,2.519722834,2.345715673,2.171708512,1.99770135,2.226397085,2.455092821,2.683788556,2.626051286,2.568314015,2.510576744,2.510576744,2.510576744 +5,AR,10,WASTE DISPOSAL & RECYCLING,CO,18.6301,42.00078,43.02987,41.85039,39.06286,32.882369,32.913138,36.93616905,37.48701705,38.03786505,38.58871305,36.11490015,33.64108726,31.16727436,28.69231776,26.21736115,23.74240455,25.80745633,27.87250811,29.93755989,28.70430262,27.47104535,26.23778809,26.23778809,26.23778809 +5,AR,10,WASTE DISPOSAL & RECYCLING,PM25,3.36425,6.69815,6.94998,6.87088,6.629182,6.136071,6.141063,6.223214102,6.274278089,6.325342076,6.376406063,5.718200923,5.059995782,4.401790641,4.172040821,3.942291001,3.712541181,3.755070602,3.797600023,3.840129444,4.077012217,4.313894991,4.550777764,4.550777764,4.550777764 +5,AR,11,HIGHWAY VEHICLES,CO,1160.47226,913.63369,883.78506,856.08295,798.25244,765.29042,733.87507,637.3734207,598.9272657,560.4811108,522.0349558,521.4368489,520.8387421,470.6957091,347.8158319,383.6581071,330.4706313,331.4805581,332.4904849,333.5004117,322.5945621,262.3688586,247.8041459,238.4152224,227.5031751 +5,AR,11,HIGHWAY VEHICLES,NH3,1.57374,2.60593,2.90905,2.7904,2.86346,2.88409,2.93256,1.645929563,1.610007039,1.574084516,1.538161992,1.54852639,1.558890787,1.464371313,1.352582027,1.331725871,1.307066695,1.283119894,1.259173092,1.23522629,1.19490899,1.179714534,1.183404622,1.072138603,1.045406205 +5,AR,11,HIGHWAY VEHICLES,NOX,102.93583,107.05218,107.36615,104.8726,101.04301,97.74242,91.7404,121.3115932,113.4962064,105.6808196,97.86543283,96.15501451,94.4445962,88.41598887,101.1263194,94.78321799,91.21533691,87.28633895,83.35734098,79.42834301,72.93034826,58.07064863,54.27779817,50.66213996,46.1913454 +5,AR,11,HIGHWAY VEHICLES,PM10,4.52129,3.72149,3.5235,3.24552,3.00432,2.73411,2.55563,4.10085335,4.040937019,3.981020688,3.921104357,3.939849276,3.958594195,3.646911119,4.348214761,4.081751303,4.971126635,4.64779439,4.324462146,4.001129901,3.741347951,3.097938781,3.007015583,3.213688065,3.111622034 +5,AR,11,HIGHWAY VEHICLES,PM25,3.83564,3.02437,2.82663,2.57518,2.3477,2.1017,1.9353,3.411408795,3.340593989,3.269779184,3.198964378,3.161013297,3.123062215,2.817723277,3.479260064,3.206901835,2.981098531,2.799531011,2.617963491,2.436395971,2.168909781,1.709074885,1.599565451,1.615097457,1.507801142 +5,AR,11,HIGHWAY VEHICLES,SO2,5.80053,3.62619,3.6951,3.69484,3.73461,3.17172,3.20945,3.424247768,2.927277712,2.430307656,1.9333376,1.386731812,0.840126024,0.818950007,0.788726657,0.822830742,0.360125777,0.351165454,0.342205132,0.333244809,0.329061343,0.337066765,0.311773061,0.166500844,0.142792318 +5,AR,11,HIGHWAY VEHICLES,VOC,97.14936,69.2117,67.3587,66.74744,64.71044,59.16391,56.07541,46.41738231,44.22419881,42.03101531,39.8378318,43.5154165,47.19300119,40.95244724,35.03871457,38.23972379,35.4065162,34.66150384,33.91649148,33.17147912,31.39740849,25.1639277,22.58782869,22.33426845,20.8749717 +5,AR,12,OFF-HIGHWAY,NOX,61.14769,67.36712,66.94428,66.33027,65.0796,65.28033,65.54256,65.50962315,64.82529687,64.14097058,63.4566443,56.56323728,49.66983027,46.68513162,48.39650664,47.50176075,43.30831705,41.09102461,38.87373217,36.65643974,36.15428002,36.44031446,35.1499606,33.49654193,31.84312326 +5,AR,12,OFF-HIGHWAY,VOC,27.99734,31.05385,30.01219,29.72836,29.70145,29.73093,29.81727,37.97832884,37.77651682,37.5747048,37.37289278,36.34301976,35.31314673,33.8296352,32.33875031,31.98137491,30.63249055,28.60606203,26.57963352,24.553205,21.13894108,15.16112924,14.31041323,13.85538966,13.40036609 +5,AR,12,OFF-HIGHWAY,SO2,5.91868,6.71684,6.74928,6.8071,6.85627,7.02025,7.06964,5.588770396,5.6177418,5.646713203,5.675684606,3.894137626,2.112590646,0.813768151,1.100479093,0.865405433,0.319689643,0.268360493,0.217031343,0.165702192,0.171026245,0.180531592,0.181674349,0.180492333,0.179310318 +5,AR,12,OFF-HIGHWAY,PM10,5.01643,5.13474,5.032,4.93554,4.83243,4.73853,4.63247,4.422902533,4.334777801,4.24665307,4.158528339,3.930191385,3.701854431,3.418869617,3.450474409,3.359356856,3.132201246,2.95955914,2.786917034,2.614274929,2.478899164,2.324295571,2.208147634,2.087393928,1.966640222 +5,AR,12,OFF-HIGHWAY,CO,197.0576,220.44218,216.39646,216.70579,217.49539,219.26121,223.22856,246.9029983,243.1183798,239.3337613,235.5491428,225.2342475,214.9193523,212.1947583,182.4546504,176.8349259,172.836705,165.5500773,158.2634496,150.9768219,144.0732735,131.0823183,130.2661766,130.1580123,130.049848 +5,AR,12,OFF-HIGHWAY,PM25,4.58904,4.70035,4.6085,4.52332,4.42572,4.33911,4.24153,4.196429853,4.10016124,4.003892628,3.907624015,3.696185927,3.484747839,3.142031924,3.173227833,3.085658452,2.951101702,2.78693932,2.622776937,2.458614555,2.339682148,2.213954991,2.101817333,1.984848812,1.867880292 +5,AR,12,OFF-HIGHWAY,NH3,0.37001,0.38466,0.36886,0.38424,0.0383,0.0383,0.0383,0.042092726,0.042447744,0.042802761,0.043157779,0.040227017,0.037296254,0.034953836,0.038251477,0.038725708,0.036454296,0.036675764,0.036897233,0.037118701,0.036317618,0.033782532,0.034715452,0.033956919,0.033198385 +5,AR,14,MISCELLANEOUS,PM10,395.3428,351.42698,373.50843,384.12019,394.96966,391.931772,413.0092641,218.7536594,240.0242214,261.2947835,282.5653455,312.1606683,341.7559912,371.351314,368.53111,365.710906,362.890702,332.0006229,301.1105438,270.2204646,286.7216826,303.2229006,319.7241186,319.7241186,319.7241186 +5,AR,14,MISCELLANEOUS,VOC,6.67178,4.92673,3.42945,8.5679,5.15106,4.80048,4.85779,25.34309234,73.55317649,121.7632606,169.9733448,114.8818755,59.79040623,4.698936951,5.128371211,5.557805471,5.987239731,5.391255436,4.795271142,4.199286848,5.212778172,6.226269497,7.239760821,7.239760821,7.239760821 +5,AR,14,MISCELLANEOUS,PM25,79.01469,67.81643,71.78411,76.67159,77.33137,76.523506,77.1126064,38.95573698,56.98164699,75.00755701,93.03346702,82.2990333,71.56459957,60.83016584,60.1424728,59.45477976,58.76708672,54.11240165,49.45771659,44.80303153,45.84813692,46.89324231,47.93834769,47.93834769,47.93834769 +5,AR,14,MISCELLANEOUS,NOX,4.01458,1.22679,1.08978,2.2604,2.33794,2.17827,2.20442,0.400390894,3.802155158,7.203919421,10.60568369,8.292208277,5.978732868,3.66525746,3.671824409,3.678391359,3.684958308,2.685040831,1.685123354,0.685205876,0.746119797,0.807033718,0.86794764,0.86794764,0.86794764 +5,AR,14,MISCELLANEOUS,NH3,90.95774,135.88038,135.76117,142.04883,143.14621,145.56426,127.0108785,112.2518349,115.6056361,118.9594373,122.3132385,121.6093024,120.9053663,120.2014302,119.3707969,118.5401636,117.7095302,99.43963539,81.16974053,62.89984567,68.31405885,73.72827202,79.14248519,79.14248519,79.14248519 +5,AR,14,MISCELLANEOUS,CO,117.15188,51.07551,53.23534,98.19012,108.96356,101.52202,102.73798,179.22561,382.4676577,585.7097054,788.9517531,544.5894186,300.2270841,55.86474962,62.05107487,68.23740012,74.42372537,55.07672785,35.72973033,16.38273282,17.01658561,17.65043841,18.2842912,18.2842912,18.2842912 +5,AR,14,MISCELLANEOUS,SO2,0.14989,0.0426,0.03464,0.07689,0.64,0.59621,0.60334,1.065014304,2.547088235,4.029162165,5.511236096,3.90094268,2.290649265,0.680355849,1.027858837,1.375361825,1.722864813,1.245658577,0.768452341,0.291246105,0.333463667,0.375681228,0.41789879,0.41789879,0.41789879 +5,AR,15,WILDFIRES,VOC,,,,,,,,0.268201652,0.268201652,0.268201652,1.653394977,1.653394977,1.653394977,1.264664086,1.264664086,1.264664086,26.93257807,26.93257807,26.93257807,11.15395719,11.15395719,11.15395719,23.43729369,23.43729369,23.43729369 +5,AR,15,WILDFIRES,SO2,,,,,,,,0.005763585,0.005763585,0.005763585,0.076170481,0.076170481,0.076170481,0.037611292,0.037611292,0.037611292,0.887559348,0.887559348,0.887559348,0.371894654,0.371894654,0.371894654,0.791095504,0.791095504,0.791095504 +5,AR,15,WILDFIRES,CO,,,,,,,,1.190970143,1.190970143,1.190970143,6.91426312,6.91426312,6.91426312,5.37096067,5.37096067,5.37096067,114.0361607,114.0361607,114.0361607,47.21013841,47.21013841,47.21013841,99.16201494,99.16201494,99.16201494 +5,AR,15,WILDFIRES,NH3,,,,,,,,0.017282547,0.017282547,0.017282547,0.115018781,0.115018781,0.115018781,0.087976605,0.087976605,0.087976605,1.873569483,1.873569483,1.873569483,0.775928208,0.775928208,0.775928208,1.630420206,1.630420206,1.630420206 +5,AR,15,WILDFIRES,NOX,,,,,,,,0.008088114,0.008088114,0.008088114,0.173516533,0.173516533,0.173516533,0.06428797,0.06428797,0.06428797,1.656011144,1.656011144,1.656011144,0.700130512,0.700130512,0.700130512,1.503139029,1.503139029,1.503139029 +5,AR,15,WILDFIRES,PM10,,,,,,,,0.107659383,0.107659383,0.107659383,0.774085874,0.774085874,0.774085874,0.538347078,0.538347078,0.538347078,11.69009219,11.69009219,11.69009219,4.852611035,4.852611035,4.852611035,10.22168774,10.22168774,10.22168774 +5,AR,15,WILDFIRES,PM25,,,,,,,,0.091407952,0.091407952,0.091407952,0.656004978,0.656004978,0.656004978,0.456226922,0.456226922,0.456226922,9.906859065,9.906859065,9.906859065,4.112383005,4.112383005,4.112383005,8.662444845,8.662444845,8.662444845 +5,AR,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,506.19532,548.3587338,590.5221475,632.6855613,592.2293468,551.7731323,511.3169178,550.2187323,589.1205468,628.0223613,628.0223613,628.0223613 +5,AR,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,8.3219935,9.013719172,9.705444844,10.39717052,9.731348796,9.065527075,8.399705355,9.050935088,9.702164822,10.35339456,10.35339456,10.35339456 +5,AR,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,7.6284227,8.189167772,8.749912843,9.310657915,8.664407393,8.018156871,7.371906349,8.558941706,9.745977062,10.93301242,10.93301242,10.93301242 +5,AR,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,52.139033,56.41526619,60.69149937,64.96773256,60.7680092,56.56828584,52.36856248,56.91204672,61.45553097,65.99901521,65.99901521,65.99901521 +5,AR,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,44.185629,47.80955398,51.43347896,55.05740394,51.49831316,47.93922239,44.38013162,48.23054835,52.08096508,55.93138181,55.93138181,55.93138181 +5,AR,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,4.0246793,4.337079901,4.649480501,4.961881102,4.629037769,4.296194437,3.963351105,4.456359728,4.949368351,5.442376974,5.442376974,5.442376974 +5,AR,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,119.62861,129.5721856,139.5157612,149.4593368,139.8881567,130.3169766,120.7457965,130.1071677,139.468539,148.8299102,148.8299102,148.8299102 +6,CA,1,FUEL COMB. ELEC. UTIL.,CO,14.35331,14.15909,15.91925,16.5167,24.22783,32.190038,35.776712,28.70721219,27.14220701,25.57720184,24.01219666,19.95212778,15.89205891,11.83199003,12.07457854,12.31716705,12.57729352,11.75026832,10.92324312,10.09621792,8.944153004,7.792088087,6.64002317,6.64002317,6.64002317 +6,CA,1,FUEL COMB. ELEC. UTIL.,VOC,1.64568,2.2276,2.4283,2.50228,2.74376,4.224153,4.567066,3.077223202,2.952955774,2.828688346,2.704420918,2.250423244,1.796425569,1.342427895,1.421899844,1.501371793,1.586235419,1.434302833,1.282370247,1.130437661,0.962111009,0.793784357,0.625457705,0.625457705,0.625457705 +6,CA,1,FUEL COMB. ELEC. UTIL.,SO2,8.09234,2.0038,0.46482,0.41017,1.41763,1.680401,3.220134,1.495639256,0.175528,0.190918,1.276476507,0.221031,0.216722,1.414898058,1.732632885,1.782181126,1.83224871,1.537813384,1.243378058,0.948942732,0.795411314,0.641879897,0.488348479,0.164302,0.156149 +6,CA,1,FUEL COMB. ELEC. UTIL.,PM25,0.23114,0.75244,0.77875,0.7965,2.865088,3.610325,4.555382,2.437266144,2.425652518,2.414038893,2.402425267,2.271870638,2.141316009,2.010761381,2.009508975,2.00825657,2.181140225,2.11747734,2.053814455,1.99015157,1.803450869,1.616750167,1.430049465,1.430049465,1.430049465 +6,CA,1,FUEL COMB. ELEC. UTIL.,PM10,0.40444,0.78838,0.81459,0.83291,3.007826,3.757516,4.737452,2.614915023,2.594265136,2.573615248,2.55296536,2.431881848,2.310798335,2.189714823,2.205518425,2.221322027,2.696903538,2.610472445,2.524041352,2.43761026,2.112087792,1.786565324,1.461042856,1.461042856,1.461042856 +6,CA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.49197,0.55868,0.57035,3.0067,3.41436,3.607621,1.298930897,2.206551561,3.114172226,4.021792891,4.323651046,4.6255092,4.927367355,4.608787472,4.290207589,3.971754531,3.726935854,3.482117177,3.237298501,2.457175472,1.677052444,0.896929416,0.896929416,0.896929416 +6,CA,1,FUEL COMB. ELEC. UTIL.,NOX,119.29557,18.18459,16.94855,18.24049,25.64292,31.314374,30.579961,16.32974313,11.16207,4.63603,14.05647563,4.844074,6.454298,9.165790015,9.241776474,8.566565124,7.950826819,7.659261405,7.367695991,7.076130578,6.618416058,6.160701539,5.70298702,2.635497,2.443315 +6,CA,2,FUEL COMB. INDUSTRIAL,CO,71.8923,60.33909,58.71217,58.28545,61.57422,62.276272,64.234774,85.72712766,84.05507466,82.38302166,80.71096866,65.87337757,51.03578648,36.19819539,35.98663972,35.77508404,35.79612166,37.79998985,39.80385804,41.80772623,37.43388966,33.06005308,28.68621651,28.68621651,28.68621651 +6,CA,2,FUEL COMB. INDUSTRIAL,VOC,10.77269,8.22824,8.12123,8.0895,7.01087,7.126566,7.311747,11.7478549,10.96890676,10.18995862,9.411010485,7.9546016,6.498192715,5.041783829,5.166309764,5.290835699,5.435338304,5.53466642,5.633994536,5.733322652,5.319430575,4.905538498,4.491646421,4.491646421,4.491646421 +6,CA,2,FUEL COMB. INDUSTRIAL,SO2,21.0131,16.92177,16.74438,16.49162,17.40693,17.724189,17.79873,25.85784752,24.07744839,22.29704927,20.51665015,16.14517201,11.77369386,7.40221572,7.423795054,7.445374388,7.302158179,7.652155479,8.002152779,8.352150078,7.793619784,7.235089489,6.676559194,6.676559194,6.676559194 +6,CA,2,FUEL COMB. INDUSTRIAL,PM25,4.72667,6.52505,6.42008,6.38221,11.912572,12.106797,12.270234,5.835260496,6.270059193,6.70485789,7.139656587,6.344895504,5.550134422,4.75537334,4.964534292,5.173695243,5.218408051,5.083868247,4.949328443,4.814788639,4.712686874,4.610585109,4.508483343,4.508483343,4.508483343 +6,CA,2,FUEL COMB. INDUSTRIAL,PM10,5.96527,7.72199,7.58505,7.53315,13.098147,13.322587,13.564376,11.39869289,11.82695224,12.25521159,12.68347094,10.13405959,7.584648241,5.035236894,5.241885936,5.448534978,5.360043725,5.218406483,5.07676924,4.935131998,4.827250826,4.719369655,4.611488484,4.611488484,4.611488484 +6,CA,2,FUEL COMB. INDUSTRIAL,NH3,3.89762,3.47429,3.26747,3.20579,5.076271,5.099478,5.021558,3.249576357,3.798090635,4.346604913,4.895119192,3.701249259,2.507379327,1.313509395,1.128884004,0.944258613,0.760292982,1.186806226,1.61331947,2.039832714,1.957015952,1.874199191,1.79138243,1.79138243,1.79138243 +6,CA,2,FUEL COMB. INDUSTRIAL,NOX,138.76522,111.10412,110.33079,109.60084,109.07345,111.231434,113.159293,93.37416246,90.5589386,87.74371475,84.9284909,70.09692138,55.26535187,40.43378236,40.84735509,41.26092782,41.24828228,40.59283904,39.93739581,39.28195258,36.88408749,34.4862224,32.08835731,32.08835731,32.08835731 +6,CA,3,FUEL COMB. OTHER,VOC,67.20796,57.27189,57.27274,57.11651,27.035355,62.58906,62.721449,24.90189362,24.931919,24.96194437,24.99196975,27.03201512,29.07206049,31.11210586,28.08963831,25.06717076,24.21178168,18.5642595,12.91673732,7.269215132,12.54602655,17.82283797,23.09964939,23.09964939,23.09964939 +6,CA,3,FUEL COMB. OTHER,SO2,3.62834,4.13153,4.16919,3.58447,4.701397,4.463007,4.588504,63.21494395,63.19805813,63.18117231,63.16428649,43.1046083,23.0449301,2.985251901,2.879811547,2.774371192,2.628683112,2.292692937,1.956702762,1.620712587,1.72969247,1.838672353,1.947652236,1.947652236,1.947652236 +6,CA,3,FUEL COMB. OTHER,PM25,46.08031,20.31389,20.25891,20.1199,62.718256,33.5617,33.868833,44.32419668,44.29050252,44.25680836,44.22311419,46.01478231,47.80645042,49.59811854,40.47446397,31.35080941,23.33664867,18.76766141,14.19867415,9.629686885,13.01690243,16.40411798,19.79133353,19.79133353,19.79133353 +6,CA,3,FUEL COMB. OTHER,PM10,46.34724,21.76549,21.69755,21.44638,62.919157,33.768226,34.081896,46.40884285,46.37214129,46.33543974,46.29873818,48.06472384,49.8307095,51.59669517,42.04721653,32.4977379,23.5671101,19.01445417,14.46179824,9.909142304,13.42575922,16.94237613,20.45899305,20.45899305,20.45899305 +6,CA,3,FUEL COMB. OTHER,NOX,58.95701,59.2196,58.32191,54.58735,76.44202,75.684485,77.548252,68.26812074,67.96934832,67.6705759,67.37180348,60.33449607,53.29718867,46.25988126,43.76811781,41.27635437,39.20576679,35.08431762,30.96286845,26.84141928,29.21511847,31.58881766,33.96251685,33.96251685,33.96251685 +6,CA,3,FUEL COMB. OTHER,NH3,0.34093,0.01138,0.01144,0.00904,0.042083,0.042158,0.042356,5.930509153,6.04072212,6.150935088,6.261148055,6.743706506,7.226264958,7.70882341,7.19520965,6.681595889,6.512805225,5.943871378,5.374937532,4.806003686,3.672928804,2.539853921,1.406779039,1.406779039,1.406779039 +6,CA,3,FUEL COMB. OTHER,CO,358.62665,151.34988,151.08425,150.21926,371.236895,167.840508,168.380565,321.3416169,321.2607089,321.1798009,321.0988929,329.8798641,338.6608353,347.4418065,281.5104248,215.5790432,149.5573963,120.7964651,92.03553388,63.27460267,91.9567089,120.6388151,149.3209213,149.3209213,149.3209213 +6,CA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,4.83522,2.90278,2.81562,2.76882,3.23346,3.25529,3.345319,1.639630641,1.721669787,1.803708934,1.88574808,1.558442208,1.231136335,0.903830463,1.046960602,1.190090742,1.060711881,1.098143766,1.135575651,1.173007536,1.022455875,0.871904213,0.721352551,0.721352551,0.721352551 +6,CA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.37744,1.92399,1.93419,1.9497,2.497196,2.554743,2.634609,1.480685132,1.376046279,1.271407426,1.166768573,0.973537482,0.780306391,0.5870753,0.680016569,0.772957838,0.841127306,1.01265086,1.184174414,1.355697969,1.305541824,1.255385679,1.205229534,1.205229534,1.205229534 +6,CA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.60721,1.27236,1.25104,1.252,1.25576,1.27516,1.317721,0.740893655,0.745749496,0.750605337,0.755461178,0.705533934,0.65560669,0.605679446,0.562310552,0.518941659,0.489985765,0.50457595,0.519166134,0.533756319,0.542437822,0.551119325,0.559800828,0.559800828,0.559800828 +6,CA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,3.31889,3.31889,3.37704,3.52115,0.099582,0.102071,0.105458,0.027498941,0.060115496,0.092732052,0.125348608,0.35616822,0.586987833,0.817807445,0.70913541,0.600463375,0.491907704,0.692735083,0.893562463,1.094389842,1.417654431,1.74091902,2.064183608,2.064183608,2.064183608 +6,CA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,9.64053,9.47131,9.25126,9.18773,0.38388,0.388446,0.409068,0.350922667,0.42910491,0.507287154,0.585469397,0.600370887,0.615272377,0.630173867,0.859995089,1.089816312,0.755273035,0.726590479,0.697907922,0.669225366,0.718587937,0.767950508,0.817313078,0.817313078,0.817313078 +6,CA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,4.77375,4.7034,4.58592,4.64725,6.36942,6.379144,6.685781,14.51668307,14.42618401,14.33568495,14.24518589,10.09912712,5.953068361,1.807009597,1.776986029,1.746962462,1.692370309,2.321218558,2.950066807,3.578915056,4.230185384,4.881455712,5.53272604,5.53272604,5.53272604 +6,CA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.28754,1.68068,1.68882,1.70174,2.152192,2.200954,2.268684,1.395599793,1.305241988,1.214884183,1.124526378,0.932602937,0.740679496,0.548756055,0.630242557,0.711729059,0.76940908,0.683150907,0.596892733,0.510634559,0.510507977,0.510381394,0.510254811,0.510254811,0.510254811 +6,CA,5,METALS PROCESSING,SO2,0.11972,0.11834,0.1249,0.12436,0.08437,0.088734,0.095292,0.070562371,0.06918498,0.06780759,0.066430199,0.089290507,0.112150815,0.135011123,0.098920776,0.06283043,0.026740083,0.037108867,0.047477651,0.057846436,0.054829431,0.051812426,0.048795421,0.048795421,0.048795421 +6,CA,5,METALS PROCESSING,NOX,0.28723,0.26192,0.27262,0.26992,0.52901,0.553194,0.600917,0.235152214,0.235415586,0.235678959,0.235942332,0.245027918,0.254113503,0.263199089,0.191301746,0.119404402,0.047507059,0.072014432,0.096521805,0.121029179,0.114915419,0.108801659,0.102687899,0.102687899,0.102687899 +6,CA,5,METALS PROCESSING,PM10,2.04093,1.05399,1.0896,1.07759,1.642258,1.712312,1.828287,0.460663431,0.473333706,0.486003981,0.498674256,0.440462325,0.382250394,0.324038462,0.333952053,0.343865643,0.353779234,0.422027341,0.490275449,0.558523556,1.881549993,3.20457643,4.527602867,4.527602867,4.527602867 +6,CA,5,METALS PROCESSING,PM25,1.17713,0.41857,0.43331,0.42841,1.337539,1.39541,1.49272,0.347477576,0.341502387,0.335527198,0.32955201,0.303968148,0.278384287,0.252800425,0.259532378,0.266264331,0.272996284,0.299882158,0.326768032,0.353653906,0.459047792,0.564441677,0.669835563,0.669835563,0.669835563 +6,CA,5,METALS PROCESSING,CO,0.7253,0.49959,0.52206,0.51698,0.60657,0.635974,0.69231,0.49841435,0.526390032,0.554365715,0.582341397,0.433264876,0.284188354,0.135111833,0.102890492,0.070669151,0.03844781,0.088818207,0.139188603,0.189559,0.196085818,0.202612637,0.209139455,0.209139455,0.209139455 +6,CA,5,METALS PROCESSING,VOC,0.27122,0.24267,0.2539,0.25178,0.31308,0.32389,0.348643,0.448627885,0.434713903,0.420799921,0.406885939,0.321834654,0.23678337,0.151732085,0.134155114,0.116578143,0.099001172,0.103116657,0.107232143,0.111347628,0.118796734,0.12624584,0.133694946,0.133694946,0.133694946 +6,CA,5,METALS PROCESSING,NH3,,,,,,,,0.00000007,0.001655713,0.003311357,0.004967,0.005018619,0.005070238,0.005121858,0.003437238,0.001752618,6.80E-05,0.000142416,0.000216835,0.000291253,0.000291709,0.000292165,0.000292622,0.000292622,0.000292622 +6,CA,6,PETROLEUM & RELATED INDUSTRIES,SO2,24.33457,20.29655,20.49613,20.2981,18.14527,18.188169,18.271469,17.55083902,16.71050992,15.87018082,15.02985172,13.38479681,11.7397419,10.09468698,8.349160076,6.603633168,5.093742199,3.779087381,2.464432563,1.149777745,1.254604299,1.359430854,1.464257408,1.464257408,1.464257408 +6,CA,6,PETROLEUM & RELATED INDUSTRIES,PM10,3.2431,2.27921,2.32531,2.32636,3.157041,3.19605,3.257397,2.526072657,2.810718096,3.095363535,3.380008974,2.924511147,2.469013319,2.013515491,2.095913173,2.178310855,1.436233657,1.441930613,1.447627569,1.453324525,1.447131621,1.440938717,1.434745813,1.434745813,1.434745813 +6,CA,6,PETROLEUM & RELATED INDUSTRIES,NOX,26.79553,20.70761,21.28207,21.43041,20.09401,20.42177,20.818516,10.38449261,10.44264861,10.50080461,10.55896061,8.527724718,6.49648883,4.465252942,3.960843523,3.456434104,3.349185342,3.294798988,3.240412633,3.186026278,3.522216153,3.858406027,4.194595902,4.194595902,4.194595902 +6,CA,6,PETROLEUM & RELATED INDUSTRIES,NH3,8.00746,8.00746,8.29621,8.33639,5.352179,5.454485,5.54961,1.73E-07,0.166312856,0.332625539,0.498938222,0.452658728,0.406379234,0.360099739,0.394046164,0.427992589,0.201036215,0.227687689,0.254339164,0.280990638,0.359129829,0.43726902,0.515408211,0.515408211,0.515408211 +6,CA,6,PETROLEUM & RELATED INDUSTRIES,CO,6.72896,5.112,5.26977,5.31432,5.56936,5.648334,5.744111,7.224724274,7.745756035,8.266787795,8.787819556,7.129558323,5.47129709,3.813035857,3.662530596,3.512025336,2.410281075,2.590347687,2.770414298,2.950480909,2.922876238,2.895271567,2.867666896,2.867666896,2.867666896 +6,CA,6,PETROLEUM & RELATED INDUSTRIES,PM25,2.19712,1.56438,1.60854,1.61511,1.68034,1.700184,1.730552,2.214302366,2.270623788,2.326945211,2.383266633,2.171243062,1.959219491,1.74719592,1.712457161,1.677718402,1.01254935,1.016889631,1.021229913,1.025570194,1.075888903,1.126207612,1.176526321,1.176526321,1.176526321 +6,CA,6,PETROLEUM & RELATED INDUSTRIES,VOC,119.32646,43.18685,44.47891,44.85194,33.13178,29.997272,30.620448,28.3978246,28.02850132,27.65917804,27.28985477,25.81484052,24.33982628,22.86481204,22.74921704,22.63362204,21.65732272,54.22232482,86.78732691,119.352329,90.63696604,61.92160306,33.20624009,33.20624009,33.20624009 +6,CA,7,OTHER INDUSTRIAL PROCESSES,VOC,22.05032,13.34196,13.70038,13.84747,17.58083,18.301811,18.29708003,19.31403741,19.31799791,19.32195841,19.32591891,17.69670064,16.06748237,14.4382641,14.49232099,14.54637787,14.58184769,15.0804224,15.5789971,16.07757181,15.61211131,15.14665081,14.6811903,14.6811903,14.6811903 +6,CA,7,OTHER INDUSTRIAL PROCESSES,SO2,5.75194,6.59129,6.9556,7.0442,6.5577,6.909995,7.061821,9.508156869,8.899882044,8.291607219,7.683332394,7.621328824,7.559325254,7.497321685,6.718791495,5.940261304,5.289391046,4.612762759,3.936134472,3.259506185,3.95748676,4.655467335,5.35344791,5.35344791,5.35344791 +6,CA,7,OTHER INDUSTRIAL PROCESSES,PM25,21.4314,15.15065,23.49812,24.93108,45.27136,47.364484,41.27346569,22.17913602,22.82577967,23.47242332,24.11906696,24.78141752,25.44376808,26.10611865,24.5897609,23.07340315,21.55035612,21.6453835,21.74041087,21.83543824,21.09532633,20.35521441,19.61510249,19.61510249,19.61510249 +6,CA,7,OTHER INDUSTRIAL PROCESSES,PM10,41.99176,35.23677,75.9106,82.03944,100.489545,105.966553,98.68510433,38.83681149,40.7367079,42.6366043,44.53650071,50.55793383,56.57936696,62.60080009,58.66193179,54.72306348,50.7818731,48.24579543,45.70971777,43.1736401,41.18441098,39.19518186,37.20595273,37.20595273,37.20595273 +6,CA,7,OTHER INDUSTRIAL PROCESSES,NOX,27.91694,24.02621,25.4574,25.82868,27.19288,28.783432,27.206186,30.3496939,30.06226361,29.77483333,29.48740304,31.42843639,33.36946974,35.31050308,29.27631149,23.2421199,16.69360097,15.7594787,14.82535644,13.89123417,15.46794614,17.04465812,18.62137009,18.62137009,18.62137009 +6,CA,7,OTHER INDUSTRIAL PROCESSES,NH3,0.01061,,,,0.074011,0.075238,0.076097,4.37232216,4.878892705,5.385463249,5.892033794,4.764836664,3.637639535,2.510442405,1.981843104,1.453243802,0.920155723,1.034624625,1.149093528,1.26356243,1.700505616,2.137448801,2.574391987,2.574391987,2.574391987 +6,CA,7,OTHER INDUSTRIAL PROCESSES,CO,8.27147,13.62246,14.09923,14.06169,13.13928,13.833594,18.08867681,16.7631263,17.01032446,17.25752261,17.50472077,18.67324171,19.84176266,21.0102836,17.17300407,13.33572454,9.670946939,17.24789934,24.82485175,32.40180415,29.37347172,26.34513929,23.31680685,23.31680685,23.31680685 +6,CA,8,SOLVENT UTILIZATION,VOC,582.52029,230.9009,238.04315,210.17936,384.70255,354.807296,366.376024,282.4075943,282.3974264,282.3872586,282.3770907,237.5869967,192.7969026,148.0068086,164.3417206,180.6766326,196.9519977,185.5995947,174.2471918,162.8947888,169.199253,175.5037172,181.8081815,181.8081815,181.8081815 +6,CA,8,SOLVENT UTILIZATION,PM10,0.13229,0.25417,0.26298,0.26773,0.086,0.09095,0.09703,0.136272097,0.271894198,0.407516299,0.543138399,0.659111607,0.775084814,0.891058022,0.907782818,0.924507615,0.941134565,0.838512702,0.73589084,0.633268977,0.676771738,0.720274498,0.763777258,0.763777258,0.763777258 +6,CA,8,SOLVENT UTILIZATION,NOX,0.0458,0.05745,0.05928,0.06091,0.04499,0.045413,0.046085,0.105221834,0.114100376,0.122978918,0.13185746,0.495221589,0.858585718,1.221949847,0.830938336,0.439926825,0.047068464,0.03682359,0.026578715,0.016333841,0.034553407,0.052772974,0.07099254,0.07099254,0.07099254 +6,CA,8,SOLVENT UTILIZATION,NH3,,,,,0.098642,0.101189,0.104133,0.000901813,0.017579549,0.034257284,0.05093502,0.084026136,0.117117252,0.150208368,0.120765079,0.09132179,0.063680681,0.052338433,0.040996185,0.029653937,0.040096381,0.050538824,0.060981268,0.060981268,0.060981268 +6,CA,8,SOLVENT UTILIZATION,CO,0.0357,0.08191,0.08299,0.08956,0.08673,0.089726,0.093835,0.290427434,0.239880161,0.189332887,0.138785614,0.743682344,1.348579074,1.953475805,1.359349379,0.765222954,0.569409829,0.388361608,0.207313387,0.026265166,0.094019932,0.161774699,0.229529466,0.229529466,0.229529466 +6,CA,8,SOLVENT UTILIZATION,PM25,0.08652,0.24835,0.25714,0.26186,0.086,0.09095,0.09703,0.130848201,0.261665734,0.392483267,0.5233008,0.608961499,0.694622198,0.780282897,0.822372078,0.864461259,0.906390136,0.807377649,0.708365161,0.609352673,0.650846552,0.692340431,0.73383431,0.73383431,0.73383431 +6,CA,8,SOLVENT UTILIZATION,SO2,0.0034,0.00166,0.00168,0.00182,0.01709,0.018116,0.019507,0.024469601,0.02735556,0.030241518,0.033127477,0.320386563,0.607645648,0.894904734,0.609330764,0.323756795,0.038174715,0.025917632,0.013660549,0.001403467,0.002973866,0.004544266,0.006114666,0.006114666,0.006114666 +6,CA,9,STORAGE & TRANSPORT,NH3,,,,,0.51313,0.526421,0.541752,0.000000096,0.053251332,0.106502569,0.159753805,1.253749641,2.347745477,3.441741313,3.398659849,3.355578385,3.571535072,3.476031006,3.380526939,3.285022872,3.245726044,3.206429215,3.167132387,3.167132387,3.167132387 +6,CA,9,STORAGE & TRANSPORT,NOX,0.02152,0.97133,1.02162,1.02375,3.97463,4.223425,4.567253,3.374315528,3.436502653,3.498689778,3.560876903,2.995255276,2.429633649,1.864012022,3.590229423,5.316446825,7.027030747,4.730050818,2.433070889,0.136090961,0.122747249,0.109403538,0.096059827,0.096059827,0.096059827 +6,CA,9,STORAGE & TRANSPORT,PM10,11.06724,3.41794,3.46204,3.48692,3.522883,3.637699,3.782371,2.829568097,3.856689532,4.883810968,5.910932404,6.560255066,7.209577729,7.858900392,8.058555282,8.258210172,8.945120115,8.348046559,7.750973003,7.153899448,5.475845595,3.797791743,2.11973789,2.11973789,2.11973789 +6,CA,9,STORAGE & TRANSPORT,PM25,4.06844,0.93349,0.94673,0.95345,1.301407,1.345334,1.400786,1.224262321,1.390858149,1.557453977,1.724049804,2.219366292,2.714682779,3.209999266,2.982613419,2.755227571,2.995072267,2.748884727,2.502697186,2.256509646,1.734239272,1.211968898,0.689698524,0.689698524,0.689698524 +6,CA,9,STORAGE & TRANSPORT,SO2,0.01813,0.0668,0.0703,0.07045,0.3756,0.399318,0.43205,0.552546882,0.59129755,0.630048218,0.668798886,0.699718428,0.730637971,0.761557513,0.62239631,0.483235107,0.369846548,0.273685557,0.177524566,0.081363576,0.08298685,0.084610125,0.0862334,0.0862334,0.0862334 +6,CA,9,STORAGE & TRANSPORT,VOC,41.19195,34.57723,35.44218,35.33019,42.71353,39.448443,40.205299,70.97390722,71.53958715,72.10526707,72.670947,64.98823988,57.30553276,49.62282565,46.77845718,43.93408872,33.72348748,31.2041304,28.68477333,26.16541625,23.83922599,21.51303574,19.18684548,19.18684548,19.18684548 +6,CA,9,STORAGE & TRANSPORT,CO,0.00671,0.36855,0.38578,0.38711,0.39796,0.418471,0.445922,0.277494901,0.297936293,0.318377685,0.338819078,0.595799492,0.852779907,1.109760321,1.454808136,1.79985595,2.586539922,1.755117063,0.923694204,0.092271345,0.141782446,0.191293546,0.240804647,0.240804647,0.240804647 +6,CA,10,WASTE DISPOSAL & RECYCLING,CO,16.0706,160.70977,174.88199,190.10156,210.80301,40.787204,40.859005,22.26147697,22.25717753,22.25287809,22.24857865,30.95179742,39.65501618,48.35823495,37.55812379,26.75801264,15.95413033,77.2490192,138.5439081,199.8387969,142.372874,84.90695099,27.44102802,27.44102802,27.44102802 +6,CA,10,WASTE DISPOSAL & RECYCLING,NH3,8.12658,,,,0.000454,0.000483,0.00051,4.150857384,4.301455585,4.452053787,4.602651988,21.69780479,38.7929576,55.8881104,57.67657333,59.46503626,28.67652309,24.69807934,20.71963559,16.74119184,14.52658151,12.31197118,10.09736085,10.09736085,10.09736085 +6,CA,10,WASTE DISPOSAL & RECYCLING,PM10,2.56071,21.1281,22.74426,24.40286,24.955745,7.941152,7.961875,3.673458073,3.71320915,3.752960227,3.792711304,5.296148468,6.799585633,8.303022797,6.603380341,4.903737885,3.385747908,10.22718183,17.06861576,23.91004968,17.60546037,11.30087105,4.996281731,4.996281731,4.996281731 +6,CA,10,WASTE DISPOSAL & RECYCLING,PM25,2.30674,20.12989,21.72504,23.35508,24.550481,7.525871,7.544587,3.428144439,3.446032705,3.46392097,3.481809236,4.775639259,6.069469281,7.363299304,5.773958803,4.184618301,2.760567585,8.061910607,13.36325363,18.66459665,13.76013764,8.855678635,3.951219628,3.951219628,3.951219628 +6,CA,10,WASTE DISPOSAL & RECYCLING,SO2,0.26102,0.30924,0.31729,0.32571,0.22773,0.233373,0.236577,0.271607417,0.335108512,0.398609608,0.462110703,0.475157808,0.488204913,0.501252019,0.444728489,0.388204959,0.331834189,0.939284114,1.546734038,2.154183963,1.617380129,1.080576296,0.543772462,0.543772462,0.543772462 +6,CA,10,WASTE DISPOSAL & RECYCLING,VOC,98.51646,21.09395,22.26068,23.56744,24.69732,13.240255,13.445185,11.30633166,10.91117265,10.51601364,10.12085463,15.05752719,19.99419975,24.9308723,21.8130375,18.6952027,15.61603279,21.52081677,27.42560075,33.33038473,28.12824319,22.92610165,17.72396012,17.72396012,17.72396012 +6,CA,10,WASTE DISPOSAL & RECYCLING,NOX,1.36274,5.44373,5.88911,6.35873,7.02899,2.019882,2.035267,1.514620749,1.826146209,2.137671669,2.449197129,2.479580043,2.509962956,2.54034587,2.19488342,1.849420971,1.504458372,3.401526147,5.298593922,7.195661697,5.47205648,3.748451262,2.024846044,2.024846044,2.024846044 +6,CA,11,HIGHWAY VEHICLES,VOC,1064.7089,612.14638,593.08656,584.37997,567.32303,488.12098,369.52302,308.7829176,302.9740747,297.1652317,291.3563887,255.2629713,219.1695538,247.367508,194.4215153,182.1801642,172.0283064,156.2870055,140.5457046,124.8044038,114.8656858,98.2022356,89.10967299,89.71233188,84.80752678 +6,CA,11,HIGHWAY VEHICLES,SO2,53.55013,32.08319,25.36478,18.20593,11.30559,17.61913,4.58757,5.293020447,4.963787241,4.634554035,4.305320829,3.126389151,1.947457474,1.974613,1.95627225,1.963690875,1.976909713,1.892085673,1.807261632,1.722437592,1.712104194,1.585199096,1.574287452,1.65704049,1.62986874 +6,CA,11,HIGHWAY VEHICLES,PM25,33.34672,22.27721,19.77711,16.97038,14.29258,16.43668,12.12606,26.38387199,26.58918021,26.79448844,26.99979666,23.52534327,20.05088988,21.183331,18.24523675,17.40153013,16.56880417,14.73691047,12.90501676,11.07312305,10.65721264,11.24055196,10.69044035,9.671887886,9.386504246 +6,CA,11,HIGHWAY VEHICLES,PM10,40.33923,28.45756,26.04939,23.16864,20.52419,22.51898,17.46267,33.8516124,34.40857853,34.96554466,35.52251078,34.1139218,32.70533282,28.177084,30.853012,30.01933375,29.19547105,26.89163716,24.58780326,22.28396937,21.98895135,22.58348823,22.16997309,21.31653222,21.10933828 +6,CA,11,HIGHWAY VEHICLES,NOX,1054.36238,880.33913,839.00805,772.63896,703.5557,823.82341,661.02383,725.229217,703.1688374,681.1084577,659.0480781,622.4415544,585.8350307,578.2763575,498.4823615,455.9617047,413.4422158,367.0846094,320.7270029,274.3693965,252.1975924,223.1382327,201.2407924,190.5110479,174.9929223 +6,CA,11,HIGHWAY VEHICLES,NH3,18.45651,26.69245,29.08108,27.21315,28.4668,30.89817,29.27422,16.31121201,16.49074312,16.67027424,16.84980535,18.19767108,19.54553682,20.4812425,18.221092,17.5888025,16.9619758,15.86380943,14.76564307,13.6674767,13.66723922,10.99096016,10.8674105,13.13423519,12.93901289 +6,CA,11,HIGHWAY VEHICLES,CO,11893.76489,6890.96906,6547.79103,6187.7924,5701.03797,5828.31951,3723.12076,3367.671668,3181.951645,2996.231622,2810.511599,2452.977825,2095.444051,2226.017663,1837.100188,1711.721155,1586.343711,1381.401028,1176.458345,971.5156625,885.596923,793.4365557,721.0879457,665.2711591,621.6118985 +6,CA,12,OFF-HIGHWAY,CO,2282.2714,2623.93853,2533.5227,2536.00774,1152.15899,2602.411145,2661.144054,1107.307676,1530.085294,1952.862911,2375.640529,1574.466572,773.292615,998.3651598,761.5757468,752.0105406,887.0921129,833.0661345,779.0401561,725.0141777,713.870478,687.8597576,691.5830787,696.8138692,702.0446597 +6,CA,12,OFF-HIGHWAY,VOC,253.37259,278.47292,253.43497,241.99133,172.78886,241.151293,239.007897,168.4277994,173.6801293,178.9324593,184.1847893,160.8705601,137.5563309,157.5189621,126.3155369,120.2181515,126.2815058,122.6217604,118.9620151,115.3022697,106.7679739,91.99258016,89.69938232,87.72238938,85.74539645 +6,CA,12,OFF-HIGHWAY,SO2,12.36603,9.64971,9.94419,10.29556,53.02037,10.11786,9.938381,91.46226432,74.50301289,57.54376146,40.58451003,25.59168811,10.59886619,10.94193014,12.1323812,6.81108373,3.462416003,3.366883427,3.27135085,3.175818274,3.389650576,3.588589235,3.81731518,3.914002532,4.010689884 +6,CA,12,OFF-HIGHWAY,PM25,19.98667,21.55291,21.2889,20.94359,22.925531,20.940261,20.352831,32.35560278,29.35425749,26.3529122,23.3515669,18.55867754,13.76578817,20.07030816,12.35513461,11.10709382,10.37971188,10.25361276,10.12751363,10.00141451,9.286626965,7.996433893,7.857051867,7.557127467,7.257203066 +6,CA,12,OFF-HIGHWAY,PM10,21.83481,23.53424,23.23718,22.84959,25.324817,22.872127,22.224607,35.68206563,32.05594564,28.42982566,24.80370568,20.15629812,15.50889056,26.50291782,14.34421526,12.96908287,11.34878501,11.37779993,11.40681484,11.43582976,10.67840455,9.335021505,9.163554148,8.825054491,8.486554834 +6,CA,12,OFF-HIGHWAY,NH3,2.74943,3.25285,3.30068,3.3928,0.28502,0.28502,0.28502,0.352612749,0.355493581,0.358374414,0.361255246,0.215850123,0.070445,0.031473354,0.07247075,0.073629625,0.093701134,0.105295555,0.116889975,0.128484395,0.119017673,0.0857385,0.100084229,0.099779857,0.099475486 +6,CA,12,OFF-HIGHWAY,NOX,262.69244,296.8537,300.07796,300.66616,362.808,322.356688,308.152853,541.6024917,475.5894984,409.5765051,343.5635118,291.1776409,238.7917699,321.152965,223.6587156,210.0820746,190.7550686,184.5868955,178.4187223,172.2505491,170.2874219,164.0921836,166.3611673,161.4651964,156.5692256 +6,CA,14,MISCELLANEOUS,CO,592.69115,1088.67241,551.302,533.57586,667.01031,863.506655,1068.487949,125.4215928,292.6015772,459.7815615,626.9615459,445.9260404,264.890535,83.85502952,71.34846757,58.84190561,46.33534366,41.68534566,37.03534766,32.38534966,32.02965836,31.67396707,31.31827577,31.31827577,31.31827577 +6,CA,14,MISCELLANEOUS,VOC,37.10864,134.29261,56.68103,52.42253,34.74144,44.758447,54.428406,56.71458604,96.1942777,135.6739694,175.153661,133.0067721,90.85988314,48.71299419,33.73977921,18.76656423,3.793349243,18.1571328,32.52091636,46.88469992,47.26126608,47.63783223,48.01439839,48.01439839,48.01439839 +6,CA,14,MISCELLANEOUS,SO2,0.49212,1.13973,0.54793,0.52201,15.44245,4.540496,5.719998,0.697670769,1.913283417,3.128896065,4.344508713,3.000373518,1.656238323,0.312103129,0.300338405,0.288573681,0.276808957,0.257983627,0.239158296,0.220332966,0.219477472,0.218621978,0.217766484,0.217766484,0.217766484 +6,CA,14,MISCELLANEOUS,PM25,274.46794,245.17408,251.56174,235.97119,186.454511,253.141142,226.5769019,59.46165694,73.90514716,88.34863738,102.7921276,98.79604957,94.79997154,90.80389351,74.15267828,57.50146306,40.85024783,41.04185247,41.23345712,41.42506176,40.33981293,39.25456409,38.16931525,38.16931525,38.16931525 +6,CA,14,MISCELLANEOUS,PM10,1137.4009,911.17789,1141.27502,1047.89001,676.383036,1022.370651,909.0846146,448.0143926,465.0577076,482.1010225,499.1443374,560.4816217,621.818906,683.1561903,536.3779353,389.5996804,242.8214254,259.3662996,275.9111738,292.456048,288.0474747,283.6389014,279.2303281,279.2303281,279.2303281 +6,CA,14,MISCELLANEOUS,NH3,162.70445,167.72459,164.64825,173.83239,189.64278,183.08983,220.9213006,153.3732381,156.1198642,158.8664903,161.6131164,194.2017392,226.7903619,259.3789846,240.8334444,222.2879043,203.7423641,264.95112,326.1598758,387.3686316,381.044527,374.7204223,368.3963176,368.3963176,368.3963176 +6,CA,14,MISCELLANEOUS,NOX,21.7109,27.96805,12.37446,11.74187,13.47226,17.630431,21.950122,2.496183421,4.803521575,7.110859729,9.418197884,7.775936757,6.13367563,4.491414503,3.861284274,3.231154044,2.601023815,2.265716735,1.930409655,1.595102575,1.572855853,1.550609132,1.52836241,1.52836241,1.52836241 +6,CA,15,WILDFIRES,SO2,,,,,,,,4.376322345,4.376322345,4.376322345,1.605820227,1.605820227,1.605820227,37.56500148,37.56500148,37.56500148,4.637838207,4.637838207,4.637838207,21.09162148,21.09162148,21.09162148,27.35535187,27.35535187,27.35535187 +6,CA,15,WILDFIRES,PM25,,,,,,,,52.13148,52.13148,52.13148,17.06793578,17.06793578,17.06793578,529.8213997,529.8213997,529.8213997,53.48673589,53.48673589,53.48673589,271.21981,271.21981,271.21981,332.425926,332.425926,332.425926 +6,CA,15,WILDFIRES,PM10,,,,,,,,61.51597,61.51597,61.51597,20.14016422,20.14016422,20.14016422,625.1894154,625.1894154,625.1894154,63.11434659,63.11434659,63.11434659,320.0393699,320.0393699,320.0393699,392.26261,392.26261,392.26261 +6,CA,15,WILDFIRES,NOX,,,,,,,,7.727333455,7.727333455,7.727333455,3.134538865,3.134538865,3.134538865,52.21924847,52.21924847,52.21924847,8.375282701,8.375282701,8.375282701,33.56512862,33.56512862,33.56512862,46.65998707,46.65998707,46.65998707 +6,CA,15,WILDFIRES,NH3,,,,,,,,10.00749636,10.00749636,10.00749636,3.187997891,3.187997891,3.187997891,105.3462266,105.3462266,105.3462266,10.19539741,10.19539741,10.19539741,52.95977518,52.95977518,52.95977518,64.12943665,64.12943665,64.12943665 +6,CA,15,WILDFIRES,CO,,,,,,,,625.69743,625.69743,625.69743,193.6586604,193.6586604,193.6586604,6461.172958,6461.172958,6461.172958,621.3162568,621.3162568,621.3162568,3239.366102,3239.366102,3239.366102,3915.33827,3915.33827,3915.33827 +6,CA,15,WILDFIRES,VOC,,,,,,,,143.90259,143.90259,143.90259,45.82746968,45.82746968,45.82746968,1514.354349,1514.354349,1514.354349,146.5590996,146.5590996,146.5590996,761.2969773,761.2969773,761.2969773,921.8606954,921.8606954,921.8606954 +6,CA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,22.50711351,23.62688095,24.74664838,25.86641582,25.31691028,24.76740475,24.21789922,20.57201835,16.92613748,13.28025661,13.28025661,13.28025661 +6,CA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,24.9205391,26.78781597,28.65509284,30.52236971,29.87395461,29.22553951,28.5771244,24.27498426,19.97284412,15.67070398,15.67070398,15.67070398 +6,CA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,1.432410461,1.675484672,1.918558882,2.161633093,2.111913934,2.062194774,2.012475615,1.720837942,1.429200269,1.137562596,1.137562596,1.137562596 +6,CA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,314.2831849,310.6706199,307.058055,303.44549,297.1381679,290.8308457,284.5235236,241.2751877,198.0268517,154.7785157,154.7785157,154.7785157 +6,CA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,4.638392632,4.34296218,4.047531727,3.752101275,3.658450811,3.564800347,3.471149883,2.990173102,2.509196322,2.028219542,2.028219542,2.028219542 +6,CA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,2.987950024,3.64956016,4.311170295,4.972780431,4.869113563,4.765446696,4.661779829,3.954083467,3.246387104,2.538690741,2.538690741,2.538690741 +6,CA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,16.15984916,34.601144,53.04243884,71.48373368,69.99351925,68.50330483,67.0130904,56.83994831,46.66680622,36.49366414,36.49366414,36.49366414 +8,CO,1,FUEL COMB. ELEC. UTIL.,NOX,89.84863,83.53299,85.68106,81.07795,72.50543,75.625874,75.210892,76.90958068,71.852309,65.860636,71.44176614,64.987355,65.14727,66.08344214,61.57199628,57.05754587,52.54309546,48.65522517,44.76735489,40.8794846,35.70645019,30.53341579,25.36038138,19.215546,19.510439 +8,CO,1,FUEL COMB. ELEC. UTIL.,VOC,0.61371,0.59809,0.60539,0.62111,0.68496,0.83106,0.863905,1.010913526,0.969769126,0.928624725,0.887480325,0.864626697,0.841773069,0.818919441,0.793979994,0.769040547,0.7441011,0.672181291,0.600261481,0.528341672,0.513764223,0.499186774,0.484609325,0.484609325,0.484609325 +8,CO,1,FUEL COMB. ELEC. UTIL.,SO2,87.02136,92.74093,98.81624,98.76468,91.42193,89.886268,92.915065,90.29430214,73.123313,60.510497,61.90267289,60.208029,61.079245,59.07782876,54.3008357,49.52379063,44.74674556,38.78589489,32.82504422,26.86419355,22.95530055,19.04640754,15.13751454,11.381363,11.364748 +8,CO,1,FUEL COMB. ELEC. UTIL.,PM10,2.01219,2.23939,1.8831,1.4487,5.498777,4.75899,4.659628,5.430354875,5.431597511,5.432840146,5.434082781,4.299998103,3.165913425,2.031828747,1.764949338,1.498069928,1.231190519,1.117486235,1.003781952,0.890077668,0.895869121,0.901660573,0.907452026,0.907452026,0.907452026 +8,CO,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01637,0.0114,0.01384,0.015353,0.02384,0.028094,0.4528519,0.436700257,0.420548614,0.404396972,0.425678407,0.446959843,0.468241279,0.440081474,0.411921669,0.383761864,0.38572956,0.387697256,0.389664952,0.29810426,0.206543569,0.114982877,0.114982877,0.114982877 +8,CO,1,FUEL COMB. ELEC. UTIL.,CO,5.00903,7.84357,8.09184,7.68349,12.00023,9.061005,9.344642,7.291192325,7.227053726,7.162915127,7.098776527,7.25778269,7.416788852,7.575795015,10.4908343,13.40587358,16.32091286,15.53358261,14.74625236,13.95892211,11.6244515,9.28998089,6.95551028,6.95551028,6.95551028 +8,CO,1,FUEL COMB. ELEC. UTIL.,PM25,0.78544,1.29683,1.03289,0.86549,4.838589,4.093197,4.072847,4.45312018,4.455664423,4.458208665,4.460752908,3.27226375,2.083774592,0.895285434,0.90169909,0.908112747,0.914526403,0.805295251,0.696064098,0.586832946,0.588457821,0.590082696,0.591707571,0.591707571,0.591707571 +8,CO,2,FUEL COMB. INDUSTRIAL,VOC,2.71563,5.27512,5.07837,5.01008,4.6114,4.563767,4.462781,5.527032565,4.447886779,3.368740992,2.289595206,3.914176784,5.538758363,7.163339942,7.599026058,8.034712173,8.470398289,8.290207329,8.110016368,7.929825408,7.731253863,7.532682318,7.334110773,7.334110773,7.334110773 +8,CO,2,FUEL COMB. INDUSTRIAL,SO2,8.25616,8.58616,8.27551,8.13299,2.98704,2.877342,3.003494,5.543511453,5.520618117,5.49772478,5.474831443,4.695442398,3.916053352,3.136664307,3.097388486,3.058112665,3.018836844,2.704416598,2.389996351,2.075576105,1.576003651,1.076431197,0.576858743,0.576858743,0.576858743 +8,CO,2,FUEL COMB. INDUSTRIAL,CO,13.3796,23.83845,22.90486,22.57732,18.44537,18.292789,17.977909,20.63335652,16.99039304,13.34742957,9.7044661,14.07443922,18.44441234,22.81438546,23.67036679,24.52634812,25.38232945,24.52084101,23.65935258,22.79786414,20.15887684,17.51988954,14.88090224,14.88090224,14.88090224 +8,CO,2,FUEL COMB. INDUSTRIAL,NH3,0.10259,0.31438,0.31466,0.31099,0.132239,0.134693,0.130688,0.054929441,0.054929441,0.054929441,0.054929441,0.036619627,0.018309814,,0.004592833,0.009185667,0.0137785,0.029294862,0.044811224,0.060327586,0.047680724,0.035033862,0.022387,0.022387,0.022387 +8,CO,2,FUEL COMB. INDUSTRIAL,NOX,57.66833,79.5468,76.55507,75.56622,32.03592,31.731718,31.169796,33.36698281,27.73911151,22.11124022,16.48336892,23.81471269,31.14605646,38.47740024,38.74673616,39.01607208,39.285408,37.27054392,35.25567983,33.24081575,28.79363963,24.3464635,19.89928738,19.89928738,19.89928738 +8,CO,2,FUEL COMB. INDUSTRIAL,PM25,0.43203,1.21035,1.17129,1.15529,2.524911,2.516506,2.473136,0.51988694,0.474186233,0.428485527,0.382784821,0.629772964,0.876761107,1.12374925,1.115238213,1.106727176,1.098216139,1.05585302,1.0134899,0.971126781,0.928360308,0.885593835,0.842827363,0.842827363,0.842827363 +8,CO,2,FUEL COMB. INDUSTRIAL,PM10,0.64369,1.38767,1.34287,1.32256,2.548595,2.540001,2.497505,0.622660606,0.572194024,0.521727442,0.47126086,0.698466349,0.925671839,1.152877328,1.140860565,1.128843802,1.116827039,1.078731157,1.040635275,1.002539393,0.956682047,0.9108247,0.864967354,0.864967354,0.864967354 +8,CO,3,FUEL COMB. OTHER,NOX,11.30383,13.71907,13.38344,12.50597,13.211767,12.952918,13.190009,13.01659897,12.68028243,12.34396589,12.00764935,11.1744617,10.34127406,9.508086412,9.651814299,9.795542186,9.856243192,9.616436752,9.376630312,9.136823872,8.884419674,8.632015476,8.379611277,8.379611277,8.379611277 +8,CO,3,FUEL COMB. OTHER,NH3,0.05815,0.07729,0.07577,0.06607,0.071199,0.07257,0.074081,0.016480214,0.016480214,0.016480214,0.016480214,0.659989162,1.303498109,1.947007057,1.901816206,1.856625355,1.756239779,1.665455903,1.574672026,1.48388815,1.479423719,1.474959289,1.470494858,1.470494858,1.470494858 +8,CO,3,FUEL COMB. OTHER,PM10,6.35745,4.89824,4.88964,4.85981,10.501098,6.353525,6.391213,13.2105522,13.20806542,13.20557864,13.20309186,13.26562741,13.32816297,13.39069852,11.83560064,10.28050276,7.987379594,6.44707673,4.906773867,3.366471003,4.014761204,4.663051406,5.311341607,5.311341607,5.311341607 +8,CO,3,FUEL COMB. OTHER,PM25,6.26113,4.8317,4.82178,4.79763,10.406968,6.257541,6.293215,11.86970974,11.86744007,11.8651704,11.86290073,12.36315547,12.86341021,13.36366495,11.78456522,10.2054655,7.888810295,6.371364456,4.853918616,3.336472776,3.982616092,4.628759408,5.274902724,5.274902724,5.274902724 +8,CO,3,FUEL COMB. OTHER,SO2,1.88235,2.39298,2.40515,2.00335,2.117501,2.079178,2.123533,3.712188512,3.690838331,3.669488151,3.648137971,2.669154443,1.690170914,0.711187385,0.768568878,0.825950371,0.869728537,0.721984269,0.574240001,0.426495733,0.413936224,0.401376714,0.388817205,0.388817205,0.388817205 +8,CO,3,FUEL COMB. OTHER,VOC,8.74803,13.89545,13.89804,13.87334,48.977708,15.188784,15.205182,36.28740872,29.29919211,22.31097551,15.3227589,15.9199476,16.51713629,17.11432498,15.00743142,12.90053785,10.2056769,8.275102708,6.344528515,4.413954322,4.980026469,5.546098616,6.112170762,6.112170762,6.112170762 +8,CO,3,FUEL COMB. OTHER,CO,48.06,36.23909,36.20937,36.03148,69.655151,44.320185,44.472506,85.80267305,85.65895411,85.51523517,85.37151623,89.0820006,92.79248498,96.50296935,85.81868661,75.13440387,59.80784578,48.5001089,37.19237201,25.88463513,30.17274896,34.4608628,38.74897663,38.74897663,38.74897663 +8,CO,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.32458,0.4779,0.47518,0.48802,0.45429,0.456025,0.470487,1.450679868,1.340905631,1.231131394,1.121357157,0.863764761,0.606172366,0.34857997,0.35265487,0.35672977,0.36080467,0.369175673,0.377546675,0.385917678,0.386937191,0.387956705,0.388976218,0.388976218,0.388976218 +8,CO,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.00132,0.00137,0.00136,0.001575,0.001575,0.001594,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +8,CO,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.00198,0.00735,0.00763,0.00753,0.00989,0.009965,0.010126,0.0119235,0.007949,0.0039745,,0.001761167,0.003522333,0.0052835,0.0044935,0.0037035,0.0029135,0.015276733,0.027639967,0.0400032,0.0322258,0.0244484,0.016671,0.016671,0.016671 +8,CO,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.01375,0.02871,0.02848,0.02875,0.019128,0.019723,0.020342,0.012582457,0.009288271,0.005994086,0.0026999,0.013340529,0.023981159,0.034621788,0.033116762,0.031611737,0.030106711,0.030559627,0.031012543,0.031465459,0.03008048,0.028695501,0.027310522,0.027310522,0.027310522 +8,CO,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.00593,0.01954,0.01923,0.01943,0.010915,0.011253,0.011602,0.008607293,0.00624521,0.003883126,0.001521043,0.007424761,0.013328479,0.019232197,0.019873954,0.020515711,0.021157468,0.022730802,0.024304135,0.025877469,0.025047989,0.024218509,0.023389029,0.023389029,0.023389029 +8,CO,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,1.48811,1.08871,1.12848,1.11564,1.24504,1.24504,1.25998,0.919219989,0.612813326,0.306406663,,0.0200865,0.040173,0.0602595,0.0734105,0.0865615,0.0997125,0.0996915,0.0996705,0.0996495,0.081862833,0.064076167,0.0462895,0.0462895,0.0462895 +8,CO,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,0.00314,0.00323,0.0033,0.00314,0.003247,0.003352,0.00366,0.00244,0.00122,,0.0023,0.0046,0.0069,0.006316667,0.005733333,0.00515,0.005557523,0.005965047,0.00637257,0.008655047,0.010937523,0.01322,0.01322,0.01322 +8,CO,5,METALS PROCESSING,SO2,0.46611,0.32479,0.32639,0.31595,0.32224,0.330657,0.349603,0.271590085,0.181579543,0.091569002,0.00155846,0.057205824,0.112853189,0.168500553,0.138073969,0.107647384,0.0772208,0.078733878,0.080246955,0.081760033,0.063205172,0.044650312,0.026095451,0.026095451,0.026095451 +8,CO,5,METALS PROCESSING,PM25,0.2009,0.4472,0.44141,0.43188,0.640982,0.657573,0.691383,0.528145794,0.37438535,0.220624907,0.066864463,0.106335683,0.145806904,0.185278124,0.175220951,0.165163777,0.155106604,0.163370712,0.17163482,0.179898928,0.16410733,0.148315732,0.132524134,0.132524134,0.132524134 +8,CO,5,METALS PROCESSING,PM10,0.30112,0.63385,0.62452,0.61153,0.753537,0.773808,0.813818,0.896954899,0.63883961,0.380724321,0.122609031,0.176978892,0.231348753,0.285718614,0.266981161,0.248243707,0.229506254,0.241427097,0.253347941,0.265268784,0.241070981,0.216873178,0.192675375,0.192675375,0.192675375 +8,CO,5,METALS PROCESSING,CO,9.02005,8.19721,8.23289,7.96179,8.25312,8.467857,8.952216,1.274500963,0.870060642,0.465620321,0.06118,0.31164507,0.56211014,0.81257521,0.901288543,0.990001877,1.07871521,1.11939087,1.16006653,1.20074219,1.063697543,0.926652897,0.78960825,0.78960825,0.78960825 +8,CO,5,METALS PROCESSING,NH3,,0.00009,0.00009,0.00009,0.000093,0.000096,0.0001,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +8,CO,5,METALS PROCESSING,VOC,0.37301,0.26387,0.26404,0.25515,0.25743,0.263129,0.277576,0.16828442,0.113946697,0.059608975,0.005271252,0.263147772,0.521024292,0.778900812,0.562521812,0.346142812,0.129763812,0.132681197,0.135598583,0.138515968,0.132001954,0.125487939,0.118973925,0.118973925,0.118973925 +8,CO,5,METALS PROCESSING,NOX,0.18107,0.32166,0.32244,0.31232,0.31322,0.321393,0.339222,0.312854394,0.216417597,0.119980799,0.023544001,0.087063886,0.150583772,0.214103657,0.195721157,0.177338657,0.158956157,0.168745251,0.178534346,0.18832344,0.16631156,0.14429968,0.1222878,0.1222878,0.1222878 +8,CO,6,PETROLEUM & RELATED INDUSTRIES,PM10,6.79516,1.16296,1.20221,1.20679,1.63353,1.654133,1.686192,0.682264866,0.513774225,0.345283585,0.176792944,0.465800987,0.75480903,1.043817073,2.692981168,4.342145262,2.546113682,2.362459272,2.178804861,1.99515045,1.511644581,1.028138712,0.544632843,0.544632843,0.544632843 +8,CO,6,PETROLEUM & RELATED INDUSTRIES,VOC,9.68158,12.73146,12.92973,12.93726,7.88135,7.370874,7.459018,7.324007552,5.133838836,2.943670121,0.753501405,3.139583319,5.525665233,7.911747147,75.08963364,142.2675201,259.3336212,202.9268955,146.5201697,90.11344398,95.65672833,101.2000127,106.743297,106.743297,106.743297 +8,CO,6,PETROLEUM & RELATED INDUSTRIES,SO2,1.53155,1.64557,1.70142,1.68293,1.78916,1.789617,1.809956,1.510126683,1.086387738,0.662648792,0.238909847,0.593562919,0.948215991,1.302869063,1.684126141,2.06538322,1.127597777,1.024706557,0.921815338,0.818924118,0.751489116,0.684054114,0.616619112,0.616619112,0.616619112 +8,CO,6,PETROLEUM & RELATED INDUSTRIES,PM25,2.35219,0.87888,0.91072,0.91491,1.393049,1.411535,1.439949,0.466193143,0.33663594,0.207078737,0.077521534,0.232991687,0.38846184,0.543931993,0.867303284,1.190674575,1.177093223,1.35944208,1.541790936,1.724139793,1.272561695,0.820983596,0.369405497,0.369405497,0.369405497 +8,CO,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.22728,0.08028,0.0833,0.08229,0.10238,0.10238,0.103608,,0,0,,0,0,,0.00072,0.00144,0.00216,0.001677833,0.001195667,0.0007135,0.000851167,0.000988833,0.0011265,0.0011265,0.0011265 +8,CO,6,PETROLEUM & RELATED INDUSTRIES,CO,0.38706,0.56726,0.57759,0.57495,0.88858,0.8906,0.896972,1.431954393,1.257517175,1.083079957,0.908642738,1.786841697,2.665040656,3.543239615,7.719777844,11.89631607,34.00559529,33.56367441,33.12175353,32.67983265,27.45860911,22.23738557,17.01616203,17.01616203,17.01616203 +8,CO,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.71418,0.62267,0.63992,0.63475,0.72423,0.724883,0.731826,0.693850832,0.555257394,0.416663955,0.278070517,0.818776353,1.359482188,1.900188024,11.24250395,20.58481988,38.49016311,37.38819289,36.28622267,35.18425245,30.13752617,25.09079989,20.04407361,20.04407361,20.04407361 +8,CO,7,OTHER INDUSTRIAL PROCESSES,SO2,4.56186,4.18623,4.15015,4.04874,4.3196,4.474077,4.697668,1.48504186,1.177732624,0.870423388,0.563114151,0.697651543,0.832188934,0.966726326,1.040645611,1.114564896,1.188484181,1.228799054,1.269113928,1.309428801,1.267005859,1.224582917,1.182159975,1.182159975,1.182159975 +8,CO,7,OTHER INDUSTRIAL PROCESSES,VOC,1.98673,2.43084,2.47736,2.48135,2.73739,2.829968,3.175559308,3.001829588,3.013392593,3.024955598,3.036518603,3.038477974,3.040437346,3.042396718,3.063761661,3.085126604,3.104861547,3.189310477,3.273759407,3.358208337,3.119220178,2.88023202,2.641243861,2.641243861,2.641243861 +8,CO,7,OTHER INDUSTRIAL PROCESSES,PM25,8.20781,12.41766,12.39894,13.06055,6.222553,6.331365,8.10957293,6.370680384,6.086623693,5.802567001,5.51851031,5.848139861,6.177769413,6.507398964,6.200632757,5.89386655,5.587100342,5.480990616,5.37488089,5.268771164,4.849683263,4.430595362,4.011507461,4.011507461,4.011507461 +8,CO,7,OTHER INDUSTRIAL PROCESSES,PM10,29.47678,40.25892,40.00418,43.28608,11.235581,11.437945,13.48571509,11.95627965,11.29389387,10.63150809,9.969122311,14.34579361,18.7224649,23.09913619,19.58664106,16.07414592,12.56165078,12.00602933,11.45040788,10.89478643,10.0351587,9.175530961,8.315903226,8.315903226,8.315903226 +8,CO,7,OTHER INDUSTRIAL PROCESSES,NOX,4.76445,5.81669,5.76373,5.62761,4.01009,4.146374,4.343631,5.116365211,4.722880957,4.329396704,3.935912451,4.599974312,5.264036173,5.928098034,5.361694889,4.795291744,4.228888599,4.295438049,4.361987499,4.428536949,4.16199352,3.895450092,3.628906663,3.628906663,3.628906663 +8,CO,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00143,0.00143,0.00142,0.001404,0.001453,0.001498,0.0858415,0.09810585,0.1103702,0.12263455,0.081756367,0.040878183,,0.011438917,0.022877833,0.03431675,0.068959263,0.103601777,0.13824429,0.19072965,0.24321501,0.29570037,0.29570037,0.29570037 +8,CO,7,OTHER INDUSTRIAL PROCESSES,CO,0.9251,1.6862,1.67328,1.64836,1.56054,1.612841,2.348629689,3.458247166,3.132541332,2.806835499,2.481129665,3.460613363,4.440097061,5.41958076,5.349796739,5.280012719,5.210228698,6.168691965,7.127155231,8.085618498,7.509370859,6.933123219,6.35687558,6.35687558,6.35687558 +8,CO,8,SOLVENT UTILIZATION,NH3,,0.00002,0.00002,0.00002,0.000029,0.00003,0.000031,,0,0,,0,0,,0.008948098,0.017896197,0.026844295,0.02521903,0.023593765,0.0219685,0.020229333,0.018490167,0.016751,0.016751,0.016751 +8,CO,8,SOLVENT UTILIZATION,NOX,0.0065,0.02446,0.02496,0.02581,0.0527,0.056488,0.061942,0.054511184,0.037224518,0.019937851,0.002651185,0.009288143,0.0159251,0.022562058,0.021202058,0.019842058,0.018482058,0.015910725,0.013339391,0.010768058,0.013968283,0.017168508,0.020368733,0.020368733,0.020368733 +8,CO,8,SOLVENT UTILIZATION,PM10,0.04394,0.13884,0.1469,0.15138,0.13049,0.13518,0.140536,0.104768547,0.094836623,0.084904698,0.074972773,0.096021753,0.117070734,0.138119714,0.143930071,0.149740428,0.155545785,0.141483965,0.127422144,0.113360324,0.112864296,0.112368267,0.111872239,0.111872239,0.111872239 +8,CO,8,SOLVENT UTILIZATION,PM25,0.03113,0.12064,0.12741,0.1312,0.13049,0.13518,0.140536,0.090713692,0.082246173,0.073778654,0.065311135,0.081848162,0.098385188,0.114922214,0.120387986,0.125853757,0.13131538,0.121203068,0.111090756,0.100978444,0.103396211,0.105813979,0.108231746,0.108231746,0.108231746 +8,CO,8,SOLVENT UTILIZATION,SO2,0.003,0.00702,0.00699,0.00692,0.00332,0.003477,0.003679,0.00272354,0.001815973,0.000908407,8.40E-07,0.000518568,0.001036297,0.001554025,0.002140225,0.002726425,0.003312625,0.003316012,0.003319398,0.003322785,0.004501063,0.005679342,0.00685762,0.00685762,0.00685762 +8,CO,8,SOLVENT UTILIZATION,VOC,74.90611,96.17942,97.11405,92.13263,54.20227,53.195438,54.525106,42.27878114,41.54649964,40.81421813,40.08193663,40.58556827,41.08919991,41.59283156,42.39121608,43.1896006,40.05844412,38.901441,37.74443789,36.58743477,35.67608802,34.76474127,33.85339452,33.85339452,33.85339452 +8,CO,8,SOLVENT UTILIZATION,CO,0.001,0.00534,0.00543,0.00561,0.02582,0.027702,0.030429,0.035139398,0.023707732,0.012276066,0.0008444,0.008481642,0.016118884,0.023756126,0.017976126,0.012196126,0.006416126,0.006156326,0.005896526,0.005636726,0.012399059,0.019161393,0.025923726,0.025923726,0.025923726 +8,CO,9,STORAGE & TRANSPORT,NH3,,0.00053,0.00054,0.00054,0.001352,0.001352,0.001367,,0,0,,0,0,,5.33E-06,1.07E-05,0.000016,1.50E-05,1.40E-05,0.00001301,0.000012995,0.00001298,0.000012965,0.000012965,0.000012965 +8,CO,9,STORAGE & TRANSPORT,PM25,4.5665,2.1185,2.0885,2.08254,2.08014,2.111236,2.167631,1.557651636,1.469687503,1.38172337,1.293759238,1.167662233,1.041565228,0.915468224,0.873825145,0.832182067,0.790538989,0.711202787,0.631866586,0.552530384,0.565116961,0.577703538,0.590290115,0.590290115,0.590290115 +8,CO,9,STORAGE & TRANSPORT,VOC,23.69683,31.92814,32.96962,32.7811,12.84277,12.38815,12.725217,80.31979891,62.7393474,45.1588959,27.5784444,37.02412631,46.46980823,55.91549015,53.92830524,51.94112032,48.39740961,39.26662746,30.13584532,21.00506317,18.41017932,15.81529547,13.22041162,13.22041162,13.22041162 +8,CO,9,STORAGE & TRANSPORT,SO2,0.00672,0.00185,0.00193,0.00196,0.0012,0.001238,0.001285,0.00133,0.000886667,0.000443333,,0.002163333,0.004326667,0.00649,0.004843333,0.003196667,0.00155,0.001606666,0.001663331,0.001719997,0.001679998,0.001639999,0.0016,0.0016,0.0016 +8,CO,9,STORAGE & TRANSPORT,NOX,0.00449,0.0166,0.01723,0.01732,0.05101,0.052268,0.053939,0.052153296,0.038332531,0.024511765,0.010691,0.141962704,0.273234408,0.404506112,0.456948294,0.509390475,0.561832657,0.427075109,0.29231756,0.157560012,0.318426463,0.479292915,0.640159366,0.640159366,0.640159366 +8,CO,9,STORAGE & TRANSPORT,PM10,9.19795,4.86658,4.79766,4.77792,4.592049,4.661122,4.784097,3.573567846,3.376917776,3.180267705,2.983617634,3.147619782,3.311621929,3.475624077,3.325919665,3.176215254,3.026510842,2.645136372,2.263761903,1.882387433,1.78492102,1.687454607,1.589988193,1.589988193,1.589988193 +8,CO,9,STORAGE & TRANSPORT,CO,0.48623,0.07161,0.07431,0.0745,0.17973,0.18362,0.189025,0.180651486,0.131844324,0.083037162,0.03423,0.328278783,0.622327565,0.916376348,1.021812581,1.127248813,1.232685046,0.971862051,0.711039057,0.450216062,0.835341875,1.220467687,1.6055935,1.6055935,1.6055935 +8,CO,10,WASTE DISPOSAL & RECYCLING,SO2,0.12455,0.20246,0.20972,0.21519,0.21001,0.214588,0.219327,0.164135562,0.163493,0.162850438,0.162207875,0.144995666,0.127783456,0.110571246,0.12008021,0.129589175,0.139098139,0.169214656,0.199331174,0.229447691,0.196209128,0.162970566,0.129732003,0.129732003,0.129732003 +8,CO,10,WASTE DISPOSAL & RECYCLING,VOC,4.87039,5.4659,5.71758,6.35546,0.93894,0.928225,0.949444,1.326942402,1.252268523,1.177594645,1.102920767,1.084285746,1.065650726,1.047015706,1.683657932,2.320300159,2.924095096,3.522050969,4.120006843,4.717962716,4.287403645,3.856844574,3.426285503,3.426285503,3.426285503 +8,CO,10,WASTE DISPOSAL & RECYCLING,PM25,2.24332,6.41563,6.74764,7.64639,0.38751,0.393005,0.401738,1.397307233,1.393274925,1.389242618,1.38521031,1.429632367,1.474054424,1.518476481,1.523093276,1.527710072,1.532326867,1.474265721,1.416204576,1.35814343,1.559934393,1.761725356,1.963516319,1.963516319,1.963516319 +8,CO,10,WASTE DISPOSAL & RECYCLING,PM10,2.70569,6.63255,6.97634,7.88251,0.695201,0.705066,0.720889,2.434793753,2.427202661,2.41961157,2.412020478,2.175146467,1.938272455,1.701398444,1.719424596,1.737450748,1.7554769,1.733808697,1.712140493,1.69047229,1.965835097,2.241197905,2.516560712,2.516560712,2.516560712 +8,CO,10,WASTE DISPOSAL & RECYCLING,NOX,0.60039,1.84709,1.93264,2.19285,0.16373,0.167197,0.171289,0.156223106,0.15509773,0.153972354,0.152846978,0.147514268,0.142181557,0.136848847,0.159190481,0.181532115,0.203873749,0.260619578,0.317365407,0.374111236,0.355298488,0.336485739,0.317672991,0.317672991,0.317672991 +8,CO,10,WASTE DISPOSAL & RECYCLING,NH3,1.19986,1.84662,1.8299,1.86616,0.000011,0.000012,0.000012,,0,0,,0.006210376,0.012420752,0.018631129,0.014597692,0.010564256,0,0.041266493,0.082532987,0.12379948,0.125630329,0.127461177,0.129292026,0.129292026,0.129292026 +8,CO,10,WASTE DISPOSAL & RECYCLING,CO,24.43496,50.82767,53.16935,61.59102,0.30442,0.309894,0.317005,0.525105972,0.523787341,0.52246871,0.521150078,0.506185474,0.491220869,0.476256264,0.579832153,0.683408043,0.786983932,1.193308905,1.599633879,2.005958852,2.562355928,3.118753003,3.675150079,3.675150079,3.675150079 +8,CO,11,HIGHWAY VEHICLES,NH3,2.046,3.42946,3.94823,3.89872,4.10488,4.18159,4.33473,2.385215144,2.363183083,2.341151022,2.319118961,2.302574324,2.286029687,2.099277236,1.948747184,1.80909869,2.005626662,1.953089757,1.900552853,1.848015949,1.784910684,1.776790681,1.790374438,1.591358857,1.549977731 +8,CO,11,HIGHWAY VEHICLES,NOX,121.16871,125.8541,128.04524,126.94921,124.21718,129.28116,124.2829,144.8431163,138.5314034,132.2196904,125.9079775,118.7163938,111.52481,100.3380156,82.39682649,80.657698,105.790318,100.4583346,95.12635123,89.79436785,81.27506936,64.06099494,64.09394173,53.84449351,48.62407197 +8,CO,11,HIGHWAY VEHICLES,PM10,5.17689,4.21395,3.82749,3.35329,2.9182,3.53602,3.37998,5.859983335,5.761413882,5.662844428,5.564274975,5.550834736,5.537394497,5.00899603,4.249478862,3.922025686,6.18846871,5.866815308,5.545161906,5.223508503,4.978264029,3.872864459,4.064345436,4.259541783,4.139096151 +8,CO,11,HIGHWAY VEHICLES,PM25,4.34401,3.3688,3.16759,2.90764,2.67494,2.67281,2.51592,4.789651511,4.671346987,4.553042462,4.434737937,4.310539971,4.186342004,3.710242192,3.008310897,2.679148315,3.172965137,3.071383405,2.969801674,2.868219943,2.58882528,1.878500821,1.950690369,1.910427337,1.789824586 +8,CO,11,HIGHWAY VEHICLES,SO2,6.74539,4.41902,4.58081,4.66558,4.79384,4.60795,4.74602,4.11220674,3.733271072,3.354335404,2.975399736,1.968007778,0.960615821,0.745114477,0.537838821,0.737582132,0.496597526,0.483479783,0.470362039,0.457244295,0.383133223,0.386310464,0.352942427,0.165399719,0.139009967 +8,CO,11,HIGHWAY VEHICLES,VOC,133.87773,94.70536,91.01809,89.00833,85.0506,84.60751,80.80956,61.35725793,59.77165357,58.18604922,56.60044486,56.74304353,56.88564221,47.55688528,49.37316295,48.33632236,57.19896659,53.93838469,50.67780278,47.41722087,44.641247,38.29627112,37.41368635,34.72533335,32.44794834 +8,CO,11,HIGHWAY VEHICLES,CO,1785.06526,1356.19722,1311.52565,1269.50309,1186.03591,1197.56302,1156.30735,717.1400463,701.2870953,685.4341443,669.5811933,630.1057026,590.6302119,521.7366457,486.7539905,500.1870952,582.0603929,553.8740678,525.6877427,497.5014177,467.7119636,376.0562621,373.574417,348.5822024,331.7788428 +8,CO,12,OFF-HIGHWAY,PM25,4.23232,4.34118,4.26774,4.19258,4.14777,4.07441,3.99429,4.266911707,4.238710552,4.210509397,4.182308242,4.055939952,3.929571663,3.637350306,3.557031744,3.483403932,3.511085646,3.33017387,3.149262094,2.968350318,2.700311753,2.253437606,2.164234623,2.101313226,2.038391829 +8,CO,12,OFF-HIGHWAY,PM10,4.62234,4.74027,4.65898,4.57432,4.53165,4.45365,4.36621,4.481492052,4.455601172,4.429710292,4.403819412,4.290054728,4.176290043,3.963022111,3.880555825,3.804791429,3.722053254,3.53092937,3.339805486,3.148681602,2.865724206,2.396489035,2.299809415,2.235403601,2.170997787 +8,CO,12,OFF-HIGHWAY,SO2,3.70573,4.73839,4.8035,4.88925,5.00928,5.13813,5.23762,4.727970104,4.836053289,4.944136474,5.052219659,3.681241131,2.310262604,1.091840817,1.079697984,0.781002515,0.632364167,0.582162196,0.531960224,0.481758253,0.579338137,0.751031146,0.774497906,0.787796322,0.801094737 +8,CO,12,OFF-HIGHWAY,NH3,0.49912,0.54395,0.53718,0.55273,0.04909,0.04909,0.04909,0.035477851,0.036112292,0.036746732,0.037381173,0.039237132,0.041093092,0.042104715,0.042495876,0.043206367,0.044003238,0.044046295,0.044089353,0.04413241,0.041054228,0.033603592,0.034897863,0.035420482,0.035943101 +8,CO,12,OFF-HIGHWAY,VOC,39.35765,42.24593,38.89269,37.44681,37.32992,37.14694,36.88627,43.37477734,42.27338049,41.17198364,40.07058678,38.92310033,37.77561387,35.7771021,34.25938959,33.40257674,32.44517567,30.51283329,28.58049091,26.64814852,24.8012031,21.57977441,21.10731226,20.9568605,20.80640874 +8,CO,12,OFF-HIGHWAY,CO,345.61938,393.22042,380.61579,381.12888,385.3055,389.99613,398.49951,398.9631531,383.8204,368.6776468,353.5348937,350.6570128,347.779132,309.5820646,287.5149782,278.7887391,276.1886943,264.655025,253.1213556,241.5876863,244.7766116,249.6023797,251.1544622,254.2074467,257.2604312 +8,CO,12,OFF-HIGHWAY,NOX,45.84608,51.7951,52.30999,52.53413,51.88896,52.09036,51.8983,54.2030086,53.65669321,53.11037783,52.56406244,50.64222035,48.72037826,50.8996549,48.07562889,47.05387936,46.91294784,43.65567896,40.39841007,37.14114119,33.77961412,27.43331238,27.05655998,26.41027852,25.76399706 +8,CO,14,MISCELLANEOUS,PM10,352.57752,343.89715,337.87073,354.08666,255.47244,356.955012,301.2843564,234.82911,235.7985626,236.7680153,237.7374679,250.4417676,263.1460673,275.850367,267.4239121,258.9974571,250.5710022,236.5575005,222.5439988,208.5304971,222.2430635,235.95563,249.6681965,249.6681965,249.6681965 +8,CO,14,MISCELLANEOUS,VOC,1.80973,32.11557,10.05011,8.66037,5.43187,19.757931,7.068839,2.93092371,5.145635902,7.360348094,9.575060286,6.440319154,3.305578021,0.170836888,0.893956452,1.617076016,2.34019558,2.500266192,2.660336805,2.820407417,3.355023379,3.889639341,4.424255302,4.424255302,4.424255302 +8,CO,14,MISCELLANEOUS,PM25,68.86181,79.43844,67.85877,73.46954,60.047924,93.155894,62.572348,26.64678153,27.46835891,28.2899363,29.11151368,34.36621496,39.62091624,44.87561752,44.44599976,44.016382,43.58676424,40.0064628,36.42616137,32.84585993,34.49602372,36.14618751,37.79635129,37.79635129,37.79635129 +8,CO,14,MISCELLANEOUS,NOX,1.70093,7.01862,2.43738,2.85913,2.59768,9.03249,3.26743,0.166189801,0.311351853,0.456513905,0.601675957,0.429703442,0.257730927,0.085758412,0.53333467,0.980910928,1.428487186,0.956833938,0.48518069,0.013527442,0.046625795,0.079724147,0.1128225,0.1128225,0.1128225 +8,CO,14,MISCELLANEOUS,NH3,90.27325,97.28802,102.64229,105.53939,108.31175,111.54604,65.74902776,63.23898923,63.39320755,63.54742587,63.70164419,65.29364203,66.88563988,68.47763772,68.61667779,68.75571786,68.89475794,62.21764003,55.54052212,48.86340421,55.66774541,62.47208661,69.27642781,69.27642781,69.27642781 +8,CO,14,MISCELLANEOUS,CO,33.40839,244.53413,84.13402,96.39266,118.444,418.1307,148.12962,12.77291,22.05623564,31.33956128,40.62288692,27.60344225,14.58399758,1.564552914,12.36241561,23.16027831,33.95814101,22.7289599,11.4997788,0.270597688,1.242820106,2.215042524,3.187264942,3.187264942,3.187264942 +8,CO,14,MISCELLANEOUS,SO2,0.02399,0.25757,0.08552,0.08998,0.61425,2.47494,0.89427,0.199734242,0.242728695,0.285723149,0.328717602,0.222703,0.116688398,0.010673796,0.212150729,0.413627663,0.615104597,0.410831722,0.206558847,0.002285972,0.01543801,0.028590048,0.041742086,0.041742086,0.041742086 +8,CO,15,WILDFIRES,CO,,,,,,,,954.31831,954.31831,954.31831,14.92270741,14.92270741,14.92270741,22.41634607,22.41634607,22.41634607,92.1743002,92.1743002,92.1743002,8.932275199,8.932275199,8.932275199,161.0740075,161.0740075,161.0740075 +8,CO,15,WILDFIRES,SO2,,,,,,,,5.400296567,5.400296567,5.400296567,0.120481356,0.120481356,0.120481356,0.168722437,0.168722437,0.168722437,0.725987542,0.725987542,0.725987542,0.081191891,0.081191891,0.081191891,1.178359266,1.178359266,1.178359266 +8,CO,15,WILDFIRES,PM25,,,,,,,,76.69837122,76.69837122,76.69837122,1.307136291,1.307136291,1.307136291,1.933187864,1.933187864,1.933187864,8.028856335,8.028856335,8.028856335,0.804887509,0.804887509,0.804887509,13.80689836,13.80689836,13.80689836 +8,CO,15,WILDFIRES,VOC,,,,,,,,219.4885822,219.4885822,219.4885822,3.528341088,3.528341088,3.528341088,5.28894398,5.28894398,5.28894398,21.77719004,21.77719004,21.77719004,2.120249401,2.120249401,2.120249401,37.97302577,37.97302577,37.97302577 +8,CO,15,WILDFIRES,PM10,,,,,,,,90.50448144,90.50448144,90.50448144,1.542420822,1.542420822,1.542420822,2.281161882,2.281161882,2.281161882,9.474052295,9.474052295,9.474052295,0.949773356,0.949773356,0.949773356,16.29215163,16.29215163,16.29215163 +8,CO,15,WILDFIRES,NOX,,,,,,,,7.527620187,7.527620187,7.527620187,0.23088308,0.23088308,0.23088308,0.30672982,0.30672982,0.30672982,1.366601582,1.366601582,1.366601582,0.167875538,0.167875538,0.167875538,2.092849923,2.092849923,2.092849923 +8,CO,15,WILDFIRES,NH3,,,,,,,,15.26669023,15.26669023,15.26669023,0.245449815,0.245449815,0.245449815,0.36792691,0.36792691,0.36792691,1.514933165,1.514933165,1.514933165,0.14747465,0.14747465,0.14747465,2.641609944,2.641609944,2.641609944 +8,CO,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.371155494,0.906097594,1.441039695,1.975981795,1.471443497,0.966905198,0.4623669,0.489832085,0.517297269,0.544762454,0.544762454,0.544762454 +8,CO,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.759453725,2.067700831,3.375947936,4.684195042,3.475360266,2.266525491,1.057690715,1.119596851,1.181502988,1.243409124,1.243409124,1.243409124 +8,CO,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.708978987,1.584265935,2.459552884,3.334839832,2.492112707,1.649385581,0.806658456,0.855207028,0.9037556,0.952304172,0.952304172,0.952304172 +8,CO,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,4.768204788,12.71026538,20.65232596,28.59438655,21.22917165,13.86395674,6.49874184,6.880158794,7.261575749,7.642992703,7.642992703,7.642992703 +8,CO,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,4.040850516,10.77141012,17.50196973,24.23252934,17.99082228,11.74911521,5.507408152,5.830643191,6.153878231,6.47711327,6.47711327,6.47711327 +8,CO,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,46.17927869,126.1447633,206.1102478,286.0757324,212.2275855,138.3794386,64.53129174,68.30667996,72.08206818,75.8574564,75.8574564,75.8574564 +8,CO,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,10.91714735,29.72320801,48.52926867,67.33532933,49.95832192,32.5813145,15.20430709,16.09420832,16.98410954,17.87401077,17.87401077,17.87401077 +9,CT,1,FUEL COMB. ELEC. UTIL.,CO,2.02477,1.29242,2.15737,2.13736,2.5505,2.462109,2.09971,1.769416,1.767328609,1.765241218,1.763153827,4.139433394,6.515712962,8.891992529,6.114930817,3.337869105,0.559038393,0.614964865,0.670891337,0.726817809,0.636695381,0.546572953,0.456450525,0.456450525,0.456450525 +9,CT,1,FUEL COMB. ELEC. UTIL.,SO2,53.04468,36.45895,51.11364,48.49929,43.98089,39.720655,36.989778,13.6265079,8.146804,6.107499,10.27592253,4.870744,4.781901,5.035991683,3.664470908,2.292940133,0.921409358,1.118069481,1.314729604,1.511389726,1.14874233,0.786094933,0.423447536,0.690166,0.131825 +9,CT,1,FUEL COMB. ELEC. UTIL.,NH3,,0.15312,0.25851,0.25985,0.252961,0.199144,0.15431,0.1815897,0.136796951,0.092004202,0.047211453,0.121608522,0.196005592,0.270402662,0.232671175,0.194939688,0.157193401,0.162181174,0.167168947,0.17215672,0.18607614,0.199995559,0.213914979,0.213914979,0.213914979 +9,CT,1,FUEL COMB. ELEC. UTIL.,VOC,0.51483,0.3398,0.53803,0.51858,0.44727,0.482952,0.408094,0.252646,0.246758746,0.240871492,0.234984238,0.215167687,0.195351136,0.175534585,0.144400353,0.113266121,0.082131888,0.083994672,0.085857456,0.08772024,0.083445344,0.079170448,0.074895551,0.074895551,0.074895551 +9,CT,1,FUEL COMB. ELEC. UTIL.,PM10,1.7323,0.44784,0.63455,0.55072,1.683412,2.05214,2.019675,0.751016815,0.787637902,0.824258989,0.860880077,0.711777815,0.562675553,0.413573292,0.365636808,0.317700324,0.26265192,0.270387816,0.278123712,0.285859609,0.259538682,0.233217755,0.206896828,0.206896828,0.206896828 +9,CT,1,FUEL COMB. ELEC. UTIL.,PM25,0.77157,0.32193,0.47372,0.44062,1.283558,1.550872,1.471112,0.519160764,0.549462637,0.579764509,0.610066382,0.523043125,0.436019867,0.34899661,0.311256216,0.273515821,0.227467437,0.243373553,0.259279669,0.275185785,0.250891525,0.226597264,0.202303004,0.202303004,0.202303004 +9,CT,1,FUEL COMB. ELEC. UTIL.,NOX,22.9342,11.46543,17.82416,16.02076,12.57585,12.943866,11.74268,5.872905,4.943971,4.445817,6.460827723,4.144178,3.728123,3.722115,2.90723293,2.09220286,1.272523791,1.460096706,1.647669621,1.835242537,1.578412541,1.321582546,1.06475255,1.413073,0.762395 +9,CT,2,FUEL COMB. INDUSTRIAL,CO,1.33427,1.12281,1.09085,1.07722,0.52486,0.543316,0.563408,1.028309374,0.951037708,0.873766041,0.796494374,0.703028916,0.609563458,0.516098,1.074761881,1.633425762,2.192089643,2.187824633,2.183559623,2.179294612,2.27610004,2.372905467,2.469710895,2.469710895,2.469710895 +9,CT,2,FUEL COMB. INDUSTRIAL,NH3,0.09046,0.09678,0.09455,0.09333,0.084334,0.088034,0.09094,0.04141726,0.04141726,0.04141726,0.04141726,0.03172004,0.02202282,0.0123256,0.029769799,0.047213998,0.064658198,0.068869333,0.073080469,0.077291605,0.074129282,0.070966958,0.067804634,0.067804634,0.067804634 +9,CT,2,FUEL COMB. INDUSTRIAL,NOX,5.64474,4.69026,4.53055,4.46226,2.20561,2.326559,2.42071,2.786407498,2.574663498,2.362919498,2.151175498,1.751061332,1.350947166,0.950833,1.766246107,2.581659214,3.397072321,3.41154097,3.42600962,3.440478269,3.183616825,2.926755382,2.669893938,2.669893938,2.669893938 +9,CT,2,FUEL COMB. INDUSTRIAL,PM10,0.62379,0.47084,0.44752,0.43942,0.360938,0.380005,0.392669,0.131109026,0.117146304,0.103183582,0.08922086,0.07494739,0.060673919,0.046400449,0.394735584,0.743070719,1.091405853,0.996613499,0.901821144,0.80702879,0.946030828,1.085032867,1.224034905,1.224034905,1.224034905 +9,CT,2,FUEL COMB. INDUSTRIAL,SO2,9.44621,4.23035,3.96491,3.86705,2.09183,2.314316,2.413784,1.546486591,1.384685924,1.222885257,1.061084591,0.760524114,0.459963637,0.15940316,0.221127079,0.282850997,0.344574916,0.512155643,0.67973637,0.847317098,0.604528138,0.361739178,0.118950219,0.118950219,0.118950219 +9,CT,2,FUEL COMB. INDUSTRIAL,PM25,0.42822,0.32856,0.31234,0.30708,0.281619,0.29495,0.30456,0.101777856,0.091006025,0.080234194,0.069462363,0.060323025,0.051183688,0.042044351,0.349820647,0.657596944,0.965364682,0.88173678,0.798108879,0.714480978,0.833097341,0.951713705,1.070330068,1.070330068,1.070330068 +9,CT,2,FUEL COMB. INDUSTRIAL,VOC,0.16707,0.203,0.19747,0.19547,0.07547,0.077296,0.078867,0.167185815,0.161480148,0.155774482,0.150068815,0.11136011,0.072651405,0.0339427,0.078694813,0.123446927,0.16819904,0.177239773,0.186280506,0.195321239,0.197718438,0.200115638,0.202512837,0.202512837,0.202512837 +9,CT,3,FUEL COMB. OTHER,CO,24.72789,28.44095,28.37321,28.11715,150.76917,30.974956,31.027598,68.62709256,68.58088456,68.53467656,68.48846856,58.90880268,49.3291368,39.74947092,43.81052345,47.87157597,50.1348238,46.14543923,42.15605467,38.16667011,35.36005612,32.55344212,29.74682813,29.74682813,29.74682813 +9,CT,3,FUEL COMB. OTHER,VOC,4.69715,9.02359,9.00653,8.96536,44.281184,9.596446,9.605458,41.70649284,32.91863717,24.1307815,15.34292583,12.67996765,10.01700947,7.354051292,8.105193797,8.856336302,9.372058818,8.227931911,7.083805005,5.939678099,5.308137435,4.676596771,4.045056107,4.045056107,4.045056107 +9,CT,3,FUEL COMB. OTHER,SO2,19.03383,2.10829,2.14191,1.82122,12.217764,12.285393,12.340198,18.53127273,18.53110273,18.53093273,18.53076273,16.31430774,14.09785275,11.88139776,12.06634977,12.25130178,12.42757708,11.37537489,10.32317269,9.270970494,6.660842514,4.050714534,1.440586553,1.440586553,1.440586553 +9,CT,3,FUEL COMB. OTHER,PM25,3.5504,3.79748,3.79418,3.77041,4.300183,4.718796,4.730968,9.442192971,9.431457976,9.42072298,9.409987985,8.26693111,7.123874234,5.980817359,6.488012204,6.995207049,7.210105597,6.673756906,6.137408214,5.601059523,5.075474995,4.549890468,4.02430594,4.02430594,4.02430594 +9,CT,3,FUEL COMB. OTHER,PM10,3.88157,3.98337,3.97844,3.93575,4.40332,4.823021,4.836419,9.633952992,9.622887455,9.611821918,9.600756381,8.419350024,7.237943667,6.05653731,6.575769003,7.095000696,7.321394493,6.780698284,6.240002074,5.699305865,5.170428905,4.641551944,4.112674984,4.112674984,4.112674984 +9,CT,3,FUEL COMB. OTHER,NOX,13.81612,11.02357,10.84443,9.8615,13.789111,12.425444,12.625907,12.72142238,12.54095338,12.36048438,12.18001538,10.7528821,9.325748816,7.898615534,8.804363147,9.71011076,10.5876279,10.48961615,10.39160439,10.29359264,9.878139039,9.462685438,9.047231837,9.047231837,9.047231837 +9,CT,3,FUEL COMB. OTHER,NH3,0.36136,0.34318,0.33644,0.30087,0.297812,0.300097,0.302419,0.559534884,0.559534884,0.559534884,0.559534884,0.693133654,0.826732425,0.960331195,1.004496411,1.048661626,1.074901774,1.040688504,1.006475234,0.972261964,0.936633685,0.901005407,0.865377129,0.865377129,0.865377129 +9,CT,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,0.00105,0.00105,0.00105,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.30667,0.02724,0.02823,0.02937,0.958424,0.993398,1.03313,0.006702616,0.005471978,0.004241339,0.0030107,0.002007133,0.001003567,,2.87E-06,5.73E-06,8.60E-06,9.00E-06,9.39E-06,9.79E-06,1.10E-05,1.23E-05,1.35E-05,1.35E-05,1.35E-05 +9,CT,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.36799,0.03702,0.03836,0.03984,1.2262,1.271347,1.322865,0.008212,0.006572333,0.004932667,0.003293,0.002195333,0.001097667,,2.87E-06,5.73E-06,8.60E-06,9.00E-06,9.39E-06,9.79E-06,1.10E-05,1.23E-05,1.35E-05,1.35E-05,1.35E-05 +9,CT,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,,,,0.00263,0.002722,0.002825,0.000857,0.000571333,0.000285667,,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,0.000098,0.000102,0.000106,,0,0,,0,0,,0.000030506,0.000061012,0.000091518,8.51E-05,7.88E-05,0.000072409,6.27E-05,5.30E-05,4.33E-05,4.33E-05,4.33E-05 +9,CT,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.00385,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,1.33365,1.1262,1.15597,1.17217,1.1487,1.190585,1.239328,3.576192,3.335716,3.09524,2.854764,1.907409333,0.960054667,0.0127,0.024586143,0.036472285,0.048358428,0.062709142,0.077059856,0.091410571,0.109261629,0.127112687,0.144963745,0.144963745,0.144963745 +9,CT,5,METALS PROCESSING,NOX,0.05593,0.01345,0.01453,0.01444,0.03254,0.034128,0.037124,0.028215,0.01881,0.009405,,0.003366667,0.006733333,0.0101,0.006733333,0.003366667,0,0,0,,0,0,0,0,0 +9,CT,5,METALS PROCESSING,SO2,0.0359,0.00043,0.00045,0.00045,0.00783,0.008151,0.008777,0.005552,0.003701333,0.001850667,,0.0001,0.0002,0.0003,0.0002,0.0001,0,0,0,,0,0,0,0,0 +9,CT,5,METALS PROCESSING,PM10,0.07687,0.0153,0.01614,0.01615,0.04997,0.052334,0.056814,0.012537,0.008358,0.004179,,0.001933333,0.003866667,0.0058,0.005755377,0.005710753,0.00566613,0.00566613,0.00566613,,0,0,0,0,0 +9,CT,5,METALS PROCESSING,VOC,0.00146,,,,0.03792,0.039475,0.042508,0.000275,0.000183333,9.17E-05,,0.000433333,0.000866667,0.0013,0.000866667,0.000433333,0,0,0,0,0,0,0,0,0 +9,CT,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,5,METALS PROCESSING,CO,0.00897,,,,1.16903,1.21696,1.310483,0.005489,0.003659333,0.001829667,,0.004466667,0.008933333,0.0134,0.008933333,0.004466667,0,0,0,,0,0,0,0,0 +9,CT,5,METALS PROCESSING,PM25,0.04993,0.01387,0.01465,0.01461,0.046325,0.048499,0.052633,0.009451098,0.006300732,0.003150366,,0.001674774,0.003349547,0.005024321,0.004997397,0.004970474,0.00494355,0.00494355,0.00494355,,0,0,0,0,0 +9,CT,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.02999,0.0116,0.01178,0.01183,0.0336,0.034742,0.035851,0.000025,0.000025,0.000025,0.000025,0.00105,0.002075,0.0031,0.002252689,0.001405378,0.000558067,0.00050291,0.000447754,0.000392598,0.00082726,0.001261923,0.001696585,0.001696585,0.001696585 +9,CT,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.16768,0.0504,0.05048,0.05034,,,,0,0,0,,0.0056,0.0112,0.0168,0.0112,0.0056,0,0,0,,0.001433842,0.002867683,0.004301525,0.004301525,0.004301525 +9,CT,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.82276,0.00423,0.00419,0.00414,0.018449,0.019159,0.019215,8.77E-07,5.84E-07,2.92E-07,,0.004333333,0.008666667,0.013,0.008666667,0.004333333,0,0,0,,8.84E-05,0.000176775,0.000265163,0.000265163,0.000265163 +9,CT,6,PETROLEUM & RELATED INDUSTRIES,PM10,3.0879,0.009,0.00895,0.00882,0.02207,0.02292,0.022983,0.000001,6.67E-07,3.33E-07,,0.004333333,0.008666667,0.013,0.008666667,0.004333333,0,0,0,,8.84E-05,0.000176775,0.000265163,0.000265163,0.000265163 +9,CT,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.09762,0.0449,0.0446,0.04376,,,,0,0,0,,0.008966667,0.017933333,0.0269,0.017933333,0.008966667,0,0,0,,0,0,0,0,0 +9,CT,6,PETROLEUM & RELATED INDUSTRIES,CO,0.04934,0.0204,0.02055,0.02046,,,,0,0,0,,0.0526,0.1052,0.1578,0.1052,0.0526,0,0,0,,0,0,0,0,0 +9,CT,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,7,OTHER INDUSTRIAL PROCESSES,PM25,1.51807,0.44113,0.461,0.52991,0.644207,0.678567,1.626006179,1.358692015,1.32306545,1.287438884,1.251812319,1.225173136,1.198533953,1.17189477,1.222623163,1.273351556,1.324079948,1.397672754,1.471265559,1.544858365,1.657962676,1.771066988,1.884171299,1.884171299,1.884171299 +9,CT,7,OTHER INDUSTRIAL PROCESSES,SO2,0.01582,0.26916,0.2896,0.29471,,,,0.016528066,0.01108471,0.005641355,0.000198,0.007599,0.015,0.022401,0.017166053,0.011931107,0.00669616,0.004464107,0.002232053,0,0,0,0,0,0 +9,CT,7,OTHER INDUSTRIAL PROCESSES,CO,0.01077,0.01185,0.01269,0.01288,0.00001,0.00001,0.384818709,0.38471,0.387388,0.390066,0.392744,0.373546772,0.354349543,0.335152315,0.37530641,0.415460505,0.4556146,1.451654742,2.447694885,3.443735027,2.850941737,2.258148448,1.665355158,1.665355158,1.665355158 +9,CT,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00003,0.00003,0.00003,,,,0.461929,0.4812754,0.5006218,0.5199682,0.346645467,0.173322733,,0.0029475,0.005895,0.0088425,0.014983667,0.021124833,0.027266,0.025687372,0.024108743,0.022530115,0.022530115,0.022530115 +9,CT,7,OTHER INDUSTRIAL PROCESSES,NOX,0.06552,0.57384,0.61708,0.62787,,,,0,0.011956667,0.023913333,0.03587,0.026151333,0.016432667,0.006714,0.004476,0.002238,0,0.021211497,0.042422993,0.06363449,0.049530029,0.035425569,0.021321108,0.021321108,0.021321108 +9,CT,7,OTHER INDUSTRIAL PROCESSES,VOC,1.40841,1.11327,1.15048,1.14182,1.19487,1.232101,1.407718348,1.328012,1.328001,1.32799,1.327979,0.970289718,0.612600436,0.254911155,0.253729271,0.252547388,0.251365504,0.263447558,0.275529613,0.287611667,0.306926293,0.326240919,0.345555545,0.345555545,0.345555545 +9,CT,7,OTHER INDUSTRIAL PROCESSES,PM10,4.27655,1.56383,1.63352,1.97485,1.85673,1.988959,3.012420554,2.66422135,2.605926474,2.547631598,2.489336722,2.636454154,2.783571586,2.930689018,2.870636409,2.810583799,2.75053119,2.767177817,2.783824444,2.800471072,2.858457571,2.91644407,2.97443057,2.97443057,2.97443057 +9,CT,8,SOLVENT UTILIZATION,PM10,0.14534,0.03237,0.03415,0.03413,0.20101,0.208767,0.217783,0.007881,0.005290333,0.002699667,0.000109,0.000472667,0.000836333,0.0012,0.000960745,0.00072149,0.000482236,0.000706494,0.000930753,0.001155012,0.000834644,0.000514275,0.000193906,0.000193906,0.000193906 +9,CT,8,SOLVENT UTILIZATION,NOX,0.00892,0.00846,0.00864,0.00867,,,,0.025574,0.017049333,0.008524667,0,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,8,SOLVENT UTILIZATION,CO,0.00018,0.00038,0.00039,0.00039,,,,0.005371,0.003580667,0.001790333,0,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,8,SOLVENT UTILIZATION,SO2,0.00004,0.00005,0.00005,0.00005,,,,0.000153,0.000102,0.000051,0,0,0,,0,0,0,0,0,,0,0,0,0,0 +9,CT,8,SOLVENT UTILIZATION,VOC,70.3736,48.17034,49.44026,42.7837,47.63097,37.690079,39.072539,53.258657,52.931143,52.603629,52.276115,41.8384915,31.400868,20.96324451,22.88253171,24.80181891,26.60386361,28.83732749,31.07079138,33.30425526,30.62184633,27.9394374,25.25702846,25.25702846,25.25702846 +9,CT,8,SOLVENT UTILIZATION,PM25,0.1453,0.02687,0.02834,0.02834,0.20101,0.208767,0.217783,0.00691898,0.004645103,0.002371226,9.73E-05,0.000464899,0.00083245,0.0012,0.000837442,0.000474883,0.000112325,0.000403309,0.000694293,0.000985277,0.000721323,0.000457368,0.000193414,0.000193414,0.000193414 +9,CT,9,STORAGE & TRANSPORT,PM10,0.03107,0.00242,0.00249,0.0025,0.01168,0.012088,0.012544,0.001914,0.001914,0.001914,0.001914,0.001309333,0.000704667,0.0001,9.70E-05,9.40E-05,9.11E-05,8.76E-05,8.42E-05,8.08E-05,0.000249142,0.000417531,0.00058592,0.00058592,0.00058592 +9,CT,9,STORAGE & TRANSPORT,VOC,16.78188,4.69831,4.81527,4.80269,5.081971,5.13702,5.244879,7.905922123,7.728407456,7.550892789,7.373378123,6.624426635,5.875475148,5.12652366,4.895436068,4.664348477,4.212915737,5.165752097,6.118588458,7.071424818,5.648243308,4.225061797,2.801880287,2.801880287,2.801880287 +9,CT,9,STORAGE & TRANSPORT,PM25,0.02545,0.00125,0.00127,0.00129,0.007552,0.007816,0.00811,0.000330515,0.000330515,0.000330515,0.000330515,0.000225256,0.000119998,1.47E-05,3.68E-05,5.88E-05,8.08E-05,6.47E-05,4.85E-05,3.24E-05,0.000197462,0.000362555,0.000527648,0.000527648,0.000527648 +9,CT,9,STORAGE & TRANSPORT,NOX,,,,,0.0032,0.003315,0.003456,0.00289,0.00289,0.00289,0.00289,0.002526667,0.002163333,0.0018,0.00272856,0.00365712,0.00458568,0.003595183,0.002604687,0.00161419,0.001076127,0.000538063,0,0,0 +9,CT,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,0,0,0,0,0,0 +9,CT,9,STORAGE & TRANSPORT,CO,,,,,0.0081,0.008392,0.008748,0.00731,0.00731,0.00731,0.00731,0.006373333,0.005436667,0.0045,0.006820833,0.009141667,0.0114625,0.009002453,0.006542407,0.00408236,0.002721573,0.001360787,0,0,0 +9,CT,9,STORAGE & TRANSPORT,SO2,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,0,0,0,0,0,0 +9,CT,10,WASTE DISPOSAL & RECYCLING,SO2,5.01404,1.33327,1.33796,1.37305,1.34908,1.375525,1.410693,0.75519558,0.749239073,0.743282565,0.737326058,0.578357324,0.41938859,0.260419857,0.252348734,0.244277611,0.236206488,0.253123894,0.2700413,0.286958706,0.294704103,0.302449499,0.310194896,0.310194896,0.310194896 +9,CT,10,WASTE DISPOSAL & RECYCLING,PM25,3.5424,4.3449,4.56824,4.52526,4.836348,3.230168,3.242873,0.410067702,0.302591511,0.195115319,0.087639128,0.519924352,0.952209576,1.3844948,1.112274816,0.840054831,0.567834847,0.602857535,0.637880224,0.672902913,0.478536043,0.284169174,0.089802305,0.089802305,0.089802305 +9,CT,10,WASTE DISPOSAL & RECYCLING,NH3,1.1672,1.4093,1.41019,1.44461,1.4702,1.493382,1.527381,0.465748387,0.465748387,0.465748387,0.465748387,0.314901052,0.164053716,0.01320638,0.103675467,0.194144553,0.28461364,0.309596613,0.334579586,0.359562559,0.341550552,0.323538545,0.305526539,0.305526539,0.305526539 +9,CT,10,WASTE DISPOSAL & RECYCLING,CO,6.00604,34.9599,36.7337,36.23808,35.11014,18.830443,18.867153,1.522368589,1.283391891,1.044415194,0.805438496,4.506887764,8.208337032,11.9097863,8.656933822,5.404081344,2.151228866,2.420039556,2.688850247,2.957660937,2.210740604,1.463820272,0.716899939,0.716899939,0.716899939 +9,CT,10,WASTE DISPOSAL & RECYCLING,PM10,3.95753,4.46506,4.69425,4.65289,5.01249,3.410603,3.425156,0.474601094,0.352622774,0.230644454,0.108666133,0.628638245,1.148610358,1.66858247,1.32076505,0.97294763,0.62513021,0.663832876,0.702535543,0.74123821,0.527507333,0.313776457,0.100045581,0.100045581,0.100045581 +9,CT,10,WASTE DISPOSAL & RECYCLING,VOC,8.30921,4.89867,5.07191,5.08385,5.58143,4.53221,4.597856,2.202975284,2.163857951,2.124740617,2.085623284,1.723339466,1.361055648,0.99877183,0.771648589,0.544525349,0.317402108,0.635951059,0.95450001,1.273048961,1.199412447,1.125775933,1.052139419,1.052139419,1.052139419 +9,CT,10,WASTE DISPOSAL & RECYCLING,NOX,5.64346,5.04331,5.11319,5.19978,5.12349,4.707084,4.798768,3.972541741,3.997053608,4.021565476,4.046077343,3.903441068,3.760804792,3.618168517,3.472702938,3.327237358,3.181771779,3.197845895,3.21392001,3.229994126,3.06060142,2.891208714,2.721816008,2.721816008,2.721816008 +9,CT,11,HIGHWAY VEHICLES,PM25,3.69761,2.34922,2.22983,2.0765,1.93961,1.72414,1.58845,2.999596717,2.926553646,2.853510575,2.780467504,2.423062709,2.065657914,1.82445431,1.573659543,1.341715648,1.142869659,1.101526505,1.060183352,1.018840198,0.928650564,0.655543966,0.65279372,0.69786995,0.661505986 +9,CT,11,HIGHWAY VEHICLES,CO,1244.7465,809.34899,789.87112,772.66053,727.63672,706.37946,684.27534,583.8852332,532.5869334,481.2886335,429.9903336,377.7103239,325.4303142,297.7047851,272.7084667,243.4218712,216.0984663,212.9659509,209.8334354,206.70092,193.6677871,157.5098394,162.3287472,143.3317878,133.9608313 +9,CT,11,HIGHWAY VEHICLES,NH3,1.98768,2.69344,3.01632,2.90372,2.98844,3.10161,3.13459,1.664782159,1.60740928,1.550036401,1.492663522,1.408369555,1.324075587,1.217878273,1.328811653,1.120510444,1.127477313,1.088029181,1.04858105,1.009132918,0.953250106,0.898327067,0.892925134,0.796807266,0.776184514 +9,CT,11,HIGHWAY VEHICLES,PM10,4.46506,2.98764,2.86765,2.69854,2.55822,2.34084,2.19149,3.839818005,3.769334159,3.698850312,3.628366466,3.190653145,2.752939824,2.489640787,2.197654216,1.943171664,2.446579052,2.371768216,2.296957381,2.222146546,2.135917992,1.633016499,1.653619507,1.889033646,1.852275216 +9,CT,11,HIGHWAY VEHICLES,SO2,5.89392,3.29473,3.3854,3.4206,3.48627,2.0062,2.00612,2.07194497,1.863909946,1.655874922,1.447839898,0.894365944,0.34089199,0.334427858,0.316396994,0.315740903,0.281514835,0.283006303,0.284497772,0.28598924,0.302329269,0.297152582,0.278933487,0.110817526,0.078944627 +9,CT,11,HIGHWAY VEHICLES,VOC,105.51575,64.45157,60.61581,57.85557,53.86666,48.23098,45.69345,44.70940155,43.11298192,41.51656228,39.92014265,34.44382764,28.96751262,26.45082367,24.60282283,21.06355095,21.66896811,21.31016971,20.9513713,20.59257289,18.98132507,14.74819082,15.19741308,13.10110009,12.03178102 +9,CT,11,HIGHWAY VEHICLES,NOX,119.58345,95.08232,94.86184,92.14347,88.38932,87.51418,80.57373,93.91585759,88.05969108,82.20352458,76.34735807,67.41345136,58.47954464,51.61902823,45.26007468,37.1203097,36.65919119,34.66485404,32.67051688,30.67617973,27.49545495,20.74267211,20.31077593,17.07973032,15.15431956 +9,CT,12,OFF-HIGHWAY,SO2,1.98061,2.36545,2.44479,2.53162,2.44165,2.59414,2.63912,2.373294183,2.442915728,2.512537272,2.582158817,2.330035463,2.077912108,1.730089952,1.654958026,0.902695759,1.113364,0.822245733,0.531127467,0.2400092,0.198146561,0.115410473,0.114421283,0.115048543,0.115675803 +9,CT,12,OFF-HIGHWAY,NH3,0.30244,0.36855,0.37649,0.38684,0.03154,0.03154,0.03154,0.017534777,0.017750625,0.017966473,0.018182321,0.01920963,0.020236939,0.021795205,0.020794283,0.021084898,0.019644277,0.019568582,0.019492888,0.019417193,0.018291749,0.014800857,0.01604086,0.016114332,0.016187804 +9,CT,12,OFF-HIGHWAY,NOX,20.16166,22.80054,22.98756,22.83833,23.00298,23.82057,23.84297,22.83918564,22.57461142,22.3100372,22.04546298,23.44110732,24.83675167,25.21486139,23.70737366,22.93942259,17.71221238,16.29089171,14.86957104,13.44825037,12.54432884,11.34766339,10.73648577,10.36222264,9.987959516 +9,CT,12,OFF-HIGHWAY,PM25,2.09563,2.26971,2.25692,2.23676,2.19518,2.19416,2.16961,1.872270902,1.846620365,1.820969827,1.79531929,1.790907944,1.786496597,1.720071041,1.674791753,1.569182304,1.459364318,1.363214878,1.267065438,1.170915998,1.06633877,0.903535385,0.857184314,0.825613387,0.79404246 +9,CT,12,OFF-HIGHWAY,CO,260.01254,297.20903,287.92861,287.96997,291.20722,294.53485,300.79084,271.5575621,252.0792197,232.6008772,213.1225347,206.7961132,200.4696917,191.8281055,182.674511,177.9337593,159.0089251,154.4220857,149.8352463,145.2484069,135.9050657,118.1370068,117.2183834,117.1572062,117.096029 +9,CT,12,OFF-HIGHWAY,VOC,29.46286,33.04097,30.59824,29.47924,29.26917,29.05454,28.75064,33.17198623,31.69574623,30.21950622,28.74326622,27.46951938,26.19577255,24.64892397,23.33520449,22.44700009,17.08017009,15.85570699,14.63124389,13.40678079,11.85561576,9.208768189,8.753285693,8.553566822,8.35384795 +9,CT,12,OFF-HIGHWAY,PM10,2.28435,2.47148,2.4573,2.43516,2.39024,2.38886,2.36208,1.98071019,1.954165809,1.927621429,1.901077048,1.900559418,1.900041787,1.852676346,1.80819694,1.694974402,1.547923932,1.445510705,1.343097478,1.24068425,1.129942167,0.956746344,0.908458001,0.875773759,0.843089518 +9,CT,14,MISCELLANEOUS,PM10,98.93947,41.60604,43.92587,43.27633,43.64792,43.053917,34.7683424,36.1291431,36.13695299,36.14476288,36.15257276,31.95829248,27.76401219,23.56973191,23.39500952,23.22028713,23.04556475,20.37850828,17.7114518,15.04439533,16.26329555,17.48219576,18.70109597,18.70109597,18.70109597 +9,CT,14,MISCELLANEOUS,NOX,0.1243,0.0156,0.0313,0.03439,0.0675,0.0235,0.01679,0.01098,0.012777756,0.014575512,0.016373268,0.014373071,0.012372874,0.010372677,0.011312195,0.012251713,0.013191231,0.013474331,0.013757432,0.014040532,0.010241495,0.006442458,0.002643422,0.002643422,0.002643422 +9,CT,14,MISCELLANEOUS,NH3,3.32538,3.35186,3.28414,3.3335,3.26805,3.20687,3.932436926,4.0378777,4.039031472,4.040185243,4.041339015,3.523364316,3.005389616,2.487414917,2.477561577,2.467708236,2.457854896,2.157612079,1.857369263,1.557126446,2.00873663,2.460346813,2.911956997,2.911956997,2.911956997 +9,CT,14,MISCELLANEOUS,CO,5.08841,0.76712,1.41876,1.32202,2.4143,1.07624,0.76357,0.47175,0.541039293,0.610328586,0.679617879,0.453094836,0.226571794,4.88E-05,0.016859094,0.033669437,0.050479779,0.033675211,0.016870642,6.61E-05,0.000773382,0.001480691,0.002188001,0.002188001,0.002188001 +9,CT,14,MISCELLANEOUS,SO2,0.00115,0.00032,0.00087,0.00107,0.00596,0.00506,0.0032,0,0.000781334,0.001562669,0.002344003,0.002095133,0.001846262,0.001597392,0.001919037,0.002240682,0.002562327,0.002429909,0.00229749,0.002165072,0.001981306,0.00179754,0.001613774,0.001613774,0.001613774 +9,CT,14,MISCELLANEOUS,VOC,1.23344,1.74951,1.81342,1.85017,1.06301,0.741476,0.729042,0.30922,0.32580547,0.342390939,0.358976409,0.239329707,0.119683006,3.63E-05,0.001087888,0.002139472,0.003191056,0.035360551,0.067530047,0.099699542,0.127490022,0.155280502,0.183070982,0.183070982,0.183070982 +9,CT,14,MISCELLANEOUS,PM25,20.82533,9.23077,9.76436,9.66201,9.69912,9.592574,5.3319134,2.515920021,2.52253857,2.529157119,2.535775669,2.923320577,3.310865486,3.698410395,3.680007425,3.661604456,3.643201487,3.125010635,2.606819783,2.088628931,2.441290642,2.793952352,3.146614063,3.146614063,3.146614063 +9,CT,15,WILDFIRES,NH3,,,,,,,,0.000052754,0.000052754,0.000052754,,0,0,0.0117636,0.0117636,0.0117636,0.006543215,0.006543215,0.006543215,0.002691752,0.002691752,0.002691752,0.014286204,0.014286204,0.014286204 +9,CT,15,WILDFIRES,PM25,,,,,,,,0.000271589,0.000271589,0.000271589,,0,0,0.067419,0.067419,0.067419,0.036533019,0.036533019,0.036533019,0.014833133,0.014833133,0.014833133,0.076183869,0.076183869,0.076183869 +9,CT,15,WILDFIRES,SO2,,,,,,,,2.41E-05,2.41E-05,2.41E-05,,0,0,0.00793806,0.00793806,0.00793806,0.003975971,0.003975971,0.003975971,0.001546784,0.001546784,0.001546784,0.007059482,0.007059482,0.007059482 +9,CT,15,WILDFIRES,PM10,,,,,,,,0.000313676,0.000313676,0.000313676,,0,0,0.0795544,0.0795544,0.0795544,0.043108911,0.043108911,0.043108911,0.01750312,0.01750312,0.01750312,0.089896994,0.089896994,0.089896994 +9,CT,15,WILDFIRES,CO,,,,,,,,0.00378,0.00378,0.00378,,0,0,0.706571,0.706571,0.706571,0.394783122,0.394783122,0.394783122,0.162761433,0.162761433,0.162761433,0.86837015,0.86837015,0.86837015 +9,CT,15,WILDFIRES,VOC,,,,,,,,0.000799119,0.000799119,0.000799119,,0,0,0.169102,0.169102,0.169102,0.094063465,0.094063465,0.094063465,0.038696005,0.038696005,0.038696005,0.205362747,0.205362747,0.205362747 +9,CT,15,WILDFIRES,NOX,,,,,,,,3.53E-05,3.53E-05,3.53E-05,,0,0,0.0182359,0.0182359,0.0182359,0.008687448,0.008687448,0.008687448,0.003279326,0.003279326,0.003279326,0.013594235,0.013594235,0.013594235 +9,CT,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.0179233,0.016348,0.0147727,0.0131974,0.026368113,0.039538827,0.05270954,0.059710808,0.066712077,0.073713345,0.073713345,0.073713345 +9,CT,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.02114954,0.01929066,0.01743178,0.0155729,0.03111436,0.04665582,0.06219728,0.070458764,0.078720249,0.086981733,0.086981733,0.086981733 +9,CT,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.00486216,0.00437467,0.00388718,0.00339969,0.006796486,0.010193281,0.013590077,0.014500498,0.015410919,0.01632134,0.01632134,0.01632134 +9,CT,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.00312537,0.002859187,0.002593003,0.00232682,0.004648385,0.00696995,0.009291515,0.010652387,0.012013258,0.01337413,0.01337413,0.01337413 +9,CT,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.002114188,0.001911982,0.001709776,0.00150757,0.003013176,0.004518783,0.006024389,0.006580846,0.007137303,0.00769376,0.00769376,0.00769376 +9,CT,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.0449269,0.041100633,0.037274367,0.0334481,0.066820533,0.100192967,0.1335654,0.153127996,0.172690592,0.192253188,0.192253188,0.192253188 +9,CT,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,0.1877008,0.1718032,0.1559056,0.140008,0.2796937,0.4193794,0.5590651,0.642247537,0.725429973,0.80861241,0.80861241,0.80861241 +10,DE,1,FUEL COMB. ELEC. UTIL.,PM25,0.24173,0.2969,0.26987,0.20255,1.470399,1.957092,2.496442,1.658137149,1.792817394,1.92749764,2.062177885,1.993337157,1.924496428,1.8556557,1.498782504,1.141909307,0.679967171,0.480002146,0.280037121,0.080072096,0.109049504,0.138026912,0.16700432,0.16700432,0.16700432 +10,DE,1,FUEL COMB. ELEC. UTIL.,SO2,47.01417,42.16015,41.00147,43.04977,29.284191,38.863749,35.025634,33.79888693,37.373444,34.56,30.60407746,28.761584,32.813088,31.95753541,24.42240685,16.88727829,9.352149725,6.564431254,3.776712783,0.988994313,0.858009045,0.727023777,0.596038509,0.643749,0.279105 +10,DE,1,FUEL COMB. ELEC. UTIL.,CO,1.11356,0.97402,0.88534,0.81117,0.636403,0.634103,0.784196,0.648230211,0.66813659,0.688042969,0.707949348,0.81733101,0.926712673,1.036094335,0.954579838,0.87306534,0.791550853,0.764226009,0.736901165,0.709576321,0.665799387,0.622022453,0.578245519,0.578245519,0.578245519 +10,DE,1,FUEL COMB. ELEC. UTIL.,NH3,,0.04168,0.03186,0.03721,0.041894,0.018531,0.044915,0.036712618,0.036044116,0.035375614,0.034707112,0.071614202,0.108521292,0.145428382,0.123575699,0.101723017,0.079870343,0.08716082,0.094451296,0.101741773,0.088087655,0.074433538,0.06077942,0.06077942,0.06077942 +10,DE,1,FUEL COMB. ELEC. UTIL.,NOX,23.92447,15.71867,15.82092,15.09565,10.538438,10.413594,11.091431,10.48320851,10.250368,10.442277,11.71247718,9.10201,10.049638,9.534118068,7.570765144,5.60741222,3.644059295,3.096921598,2.549783901,2.002646203,1.682712363,1.362778522,1.042844681,0.689201,0.376684 +10,DE,1,FUEL COMB. ELEC. UTIL.,PM10,0.60605,0.53581,0.49847,0.4007,1.637574,2.197261,3.992666,1.947384276,2.091498912,2.235613548,2.379728185,2.293198904,2.206669623,2.120140343,1.675316701,1.230493058,0.682967477,0.486605225,0.290242973,0.093880721,0.118635331,0.14338994,0.168144549,0.168144549,0.168144549 +10,DE,1,FUEL COMB. ELEC. UTIL.,VOC,0.14975,0.13695,0.11864,0.12583,0.247308,0.250637,0.295957,0.096516599,0.096882709,0.097248819,0.097614929,0.098680145,0.09974536,0.100810576,0.098338152,0.095865729,0.093393308,0.105549153,0.117704998,0.129860843,0.111724618,0.093588394,0.075452169,0.075452169,0.075452169 +10,DE,2,FUEL COMB. INDUSTRIAL,PM10,0.69754,0.8146,0.80492,0.76211,1.67975,1.733699,1.749979,0.806446755,1.144865395,1.483284035,1.821702675,1.457144671,1.092586666,0.728028662,0.620383998,0.512739333,0.370248856,0.33404165,0.297834443,0.261627237,0.213530833,0.165434429,0.117338024,0.117338024,0.117338024 +10,DE,2,FUEL COMB. INDUSTRIAL,NOX,20.19063,12.42984,12.56163,11.93153,11.23788,11.434523,11.607109,7.415028046,7.208111566,7.001195086,6.794278606,6.07436928,5.354459953,4.634550627,3.994817028,3.355083429,2.386247973,2.790641126,3.195034279,3.599427431,3.232913247,2.866399063,2.499884879,2.499884879,2.499884879 +10,DE,2,FUEL COMB. INDUSTRIAL,VOC,0.2097,0.22709,0.22826,0.22045,0.426016,0.43324,0.432786,0.35150021,0.353430254,0.355360298,0.357290342,0.288477773,0.219665204,0.150852636,0.138387043,0.125921451,0.11211778,0.121506501,0.130895223,0.140283945,0.153188825,0.166093705,0.178998585,0.178998585,0.178998585 +10,DE,2,FUEL COMB. INDUSTRIAL,PM25,0.45368,0.50186,0.50491,0.47125,1.391908,1.429629,1.437778,0.644385991,0.985204587,1.326023183,1.666841779,1.335629733,1.004417687,0.67320564,0.576839695,0.480473749,0.355605615,0.317579373,0.279553132,0.24152689,0.19798351,0.15444013,0.11089675,0.11089675,0.11089675 +10,DE,2,FUEL COMB. INDUSTRIAL,NH3,0.03883,0.04384,0.04255,0.04174,0.682368,0.683282,0.682168,0.120279993,0.109562064,0.098844135,0.088126206,0.079657347,0.071188487,0.062719628,0.065637433,0.068555237,0.037901488,0.046018915,0.054136342,0.062253769,0.057787544,0.05332132,0.048855095,0.048855095,0.048855095 +10,DE,2,FUEL COMB. INDUSTRIAL,CO,4.058,4.34487,4.34626,4.21263,16.071125,16.06529,16.133584,5.068054326,4.496621439,3.925188552,3.353755665,3.027570307,2.701384949,2.375199591,2.080214675,1.78522976,1.465627113,1.872735365,2.279843618,2.686951871,2.206247319,1.725542767,1.244838215,1.244838215,1.244838215 +10,DE,2,FUEL COMB. INDUSTRIAL,SO2,41.32126,44.58153,44.13448,42.35998,51.6617,52.408536,53.16743,41.57077782,40.44880478,39.32683174,38.2048587,27.93273073,17.66060275,7.388474771,5.632528349,3.876581927,1.92689492,1.508079168,1.089263415,0.670447663,0.531175285,0.391902906,0.252630528,0.252630528,0.252630528 +10,DE,3,FUEL COMB. OTHER,PM10,0.80469,1.44874,1.45133,1.4388,1.580422,1.677311,1.683823,1.385032971,1.384705741,1.38437851,1.38405128,1.191329461,0.998607642,0.805885823,0.880173309,0.954460794,1.020247283,0.859063059,0.697878834,0.53669461,0.614981827,0.693269045,0.771556262,0.771556262,0.771556262 +10,DE,3,FUEL COMB. OTHER,NOX,4.20623,1.89628,1.87782,1.70088,2.102464,2.10027,2.125899,1.892691046,1.888583066,1.884475085,1.880367105,1.758799413,1.637231722,1.51566403,1.520807889,1.525951748,1.548506173,1.5903914,1.632276628,1.674161856,1.62188557,1.569609284,1.517332998,1.517332998,1.517332998 +10,DE,3,FUEL COMB. OTHER,PM25,0.7148,1.35383,1.35376,1.34547,1.499313,1.59469,1.599549,1.336065407,1.335864628,1.335663849,1.33546307,1.156188626,0.976914183,0.797639739,0.871785211,0.945930683,1.012583956,0.852551372,0.692518788,0.532486204,0.61105385,0.689621495,0.768189141,0.768189141,0.768189141 +10,DE,3,FUEL COMB. OTHER,SO2,3.77073,4.09441,4.16508,3.79246,3.47579,3.533162,3.592397,2.88840919,2.89630036,2.90419153,2.9120827,2.159291173,1.406499646,0.65370812,0.630037499,0.606366879,0.458252942,0.45512526,0.451997578,0.448869897,0.313194053,0.17751821,0.041842367,0.041842367,0.041842367 +10,DE,3,FUEL COMB. OTHER,VOC,1.06896,2.74411,2.74274,2.73598,3.420672,2.941005,2.942116,6.02924941,4.831266775,3.633284141,2.435301507,1.962749849,1.490198192,1.017646534,1.102991103,1.188335673,1.275234402,1.0674389,0.859643399,0.651847898,0.734373004,0.81689811,0.899423216,0.899423216,0.899423216 +10,DE,3,FUEL COMB. OTHER,NH3,0.04032,0.04163,0.04102,0.03654,0.03794,0.038363,0.038786,0.212747966,0.213300027,0.213852088,0.214404149,0.203415804,0.192427459,0.181439114,0.186204412,0.19096971,0.071076931,0.060584674,0.050092417,0.039600161,0.045457054,0.051313947,0.057170841,0.057170841,0.057170841 +10,DE,3,FUEL COMB. OTHER,CO,5.75923,9.72528,9.71862,9.66786,12.79239,10.526948,10.537715,9.8286411,9.823149453,9.817657806,9.812166159,8.509325249,7.20648434,5.90364343,6.399326983,6.895010535,7.545803225,6.501341599,5.456879974,4.412418348,5.057109756,5.701801164,6.346492573,6.346492573,6.346492573 +10,DE,4,CHEMICAL & ALLIED PRODUCT MFG,CO,10.9184,10.91828,11.0202,11.08248,3.475333,3.558706,3.659435,2.829098312,2.748149843,2.667201375,2.586252906,2.635954545,2.685656185,2.735357824,2.496268376,2.257178929,2.018089481,2.324544528,2.630999575,2.937454622,1.961785581,0.986116541,0.0104475,0.0104475,0.0104475 +10,DE,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,0.001652,0.001672,0.001696,0.017179378,0.023351739,0.029524099,0.03569646,0.02763341,0.01957036,0.01150731,0.01110592,0.01070453,0.01030314,0.014629906,0.018956672,0.023283438,0.018041021,0.012798605,0.007556188,0.007556188,0.007556188 +10,DE,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.12833,0.12833,0.12974,0.13036,0.080073,0.082278,0.085144,0.070736657,0.063385893,0.05603513,0.048684366,0.050650619,0.052616871,0.054583124,0.056480765,0.058378407,0.044636048,0.041908748,0.039181448,0.036454147,0.032708761,0.028963376,0.02521799,0.02521799,0.02521799 +10,DE,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.06129,0.05274,0.0545,0.05594,0.057664,0.058891,0.060365,0.035831307,0.027237554,0.018643801,0.010050048,0.013425646,0.016801245,0.020176843,0.019259465,0.018342087,0.017424709,0.017572629,0.01772055,0.01786847,0.01826798,0.01866749,0.019067,0.019067,0.019067 +10,DE,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,2.8178,2.8178,2.867,2.87285,1.476001,1.506361,1.542719,0.590532651,0.483979914,0.377427178,0.270874441,0.206592994,0.142311547,0.0780301,0.077604433,0.077178767,0.0767531,0.080590607,0.084428114,0.08826562,0.077313747,0.066361873,0.05541,0.05541,0.05541 +10,DE,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,2.78941,1.02387,1.03851,1.04087,0.587054,0.535544,0.548432,0.354031951,0.332521985,0.311012019,0.289502054,0.261196361,0.232890669,0.204584976,0.199750608,0.19491624,0.190081872,0.186826687,0.183571502,0.180316317,0.146185951,0.112055584,0.077925218,0.077925218,0.077925218 +10,DE,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.175,0.175,0.17685,0.17769,0.118645,0.121998,0.126444,0.076505339,0.072642259,0.068779178,0.064916098,0.061803095,0.058690093,0.05557709,0.05856021,0.06154333,0.04889645,0.064671377,0.080446303,0.09622123,0.073638537,0.051055845,0.028473153,0.028473153,0.028473153 +10,DE,5,METALS PROCESSING,VOC,,,,,0.076564,0.079626,0.085444,0.06545072,0.067730153,0.070009587,0.07228902,0.069073347,0.065857673,0.062642,0.062114267,0.061586533,0.0610588,0.0610588,0.0610588,,0.0002419,0.0004838,0.0007257,0.0007257,0.0007257 +10,DE,5,METALS PROCESSING,CO,,,,,0.6975,0.7254,0.77841,0.6096,0.6221,0.6346,0.6471,0.5296,0.4121,0.2946,0.294733333,0.294866667,0.295,0.295,0.295,,0,0,0,0,0 +10,DE,5,METALS PROCESSING,NOX,,,,,0.0713,0.074152,0.079571,0.0623,0.0636,0.0649,0.0662,0.079666667,0.093133333,0.1066,0.106633333,0.106666667,0.1067,0.1067,0.1067,,0,0,0,0,0 +10,DE,5,METALS PROCESSING,PM10,,,,,0.03513,0.036536,0.039205,0.047666716,0.048994271,0.050321826,0.05164938,0.063320244,0.074991107,0.08666197,0.077443113,0.068224257,0.0590054,0.0590054,0.0590054,,0,0,0,0,0 +10,DE,5,METALS PROCESSING,PM25,,,,,0.032353,0.033648,0.036106,0.037146681,0.038888239,0.040629797,0.042371355,0.053304894,0.064238432,0.075171971,0.066805929,0.058439887,0.050073844,0.050073844,0.050073844,,0,0,0,0,0 +10,DE,5,METALS PROCESSING,SO2,,,,,0.0119,0.012376,0.01328,0.0104,0.0106,0.0108,0.011,0.021266667,0.031533333,0.0418,0.041813333,0.041826667,0.04184,0.04184,0.04184,,0,0,0,0,0 +10,DE,6,PETROLEUM & RELATED INDUSTRIES,VOC,1.03225,0.23242,0.24355,0.24206,0.713207,0.633852,0.634732,0.478100701,0.455366001,0.432631301,0.409896601,0.316395173,0.222893746,0.129392318,0.110344149,0.091295979,0.23543781,0.243084392,0.250730974,0.258377557,0.258774391,0.259171226,0.25956806,0.25956806,0.25956806 +10,DE,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.54592,0.54592,0.5697,0.5653,0.605025,0.606279,0.606876,1.382432245,1.243866973,1.105301702,0.96673643,1.155653032,1.344569633,1.533486235,1.043903725,0.554321215,0.064738705,0.054841602,0.044944498,0.035047395,0.08204904,0.129050685,0.176052331,0.176052331,0.176052331 +10,DE,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.13701,0.13701,0.14292,0.14181,0.03694,0.037112,0.037262,0.085985284,0.238219269,0.390453254,0.542687239,0.418144873,0.293602506,0.16906014,0.12127655,0.07349296,0.02570937,0.025319906,0.024930442,0.024540978,0.137206284,0.24987159,0.362536896,0.362536896,0.362536896 +10,DE,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.23138,0.23138,0.24161,0.23978,0.052195,0.05243,0.052606,0.134940852,0.311075179,0.487209505,0.663343832,0.503259438,0.343175045,0.183090651,0.131214654,0.079338657,0.02746266,0.028264438,0.029066216,0.029867994,0.141855326,0.253842659,0.365829991,0.365829991,0.365829991 +10,DE,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.02871,0.02871,0.03166,0.03196,0.040224,0.040468,0.040477,0.069548626,0.092312753,0.11507688,0.137841007,0.142538195,0.147235382,0.15193257,0.103859077,0.055785583,0.00771209,0.011698729,0.015685369,0.019672008,0.226289562,0.432907116,0.63952467,0.63952467,0.63952467 +10,DE,6,PETROLEUM & RELATED INDUSTRIES,CO,0.02959,0.02959,0.03271,0.03307,0.159592,0.160847,0.160858,0.221610233,0.823323734,1.425037235,2.026750736,1.512131701,0.997512665,0.48289363,0.37162192,0.26035021,0.1490785,0.124027297,0.098976093,0.07392489,0.355883802,0.637842713,0.919801625,0.919801625,0.919801625 +10,DE,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.62581,0.62581,0.65214,0.64701,0.001,0.001002,0.001004,,0.003986667,0.007973333,0.01196,0.011199067,0.010438133,0.0096772,0.006609467,0.003541733,0.000474,0.00040177,0.00032954,0.00025731,0.00257548,0.004893651,0.007211821,0.007211821,0.007211821 +10,DE,7,OTHER INDUSTRIAL PROCESSES,PM10,0.54194,0.84729,0.90699,0.95815,1.028731,1.095089,1.325309417,0.367200397,0.362872597,0.358544798,0.354216998,0.472325686,0.590434374,0.708543063,0.5795545,0.450565938,0.332624987,0.338042111,0.343459235,0.348876359,0.40946882,0.470061281,0.530653741,0.530653741,0.530653741 +10,DE,7,OTHER INDUSTRIAL PROCESSES,SO2,0.02781,0.02609,0.02731,0.02761,0.027886,0.028835,0.03009,0.000001861,0.005935207,0.011868554,0.0178019,0.011868553,0.005935207,0.00000186,1.41E-06,9.55E-07,5.03E-07,0.004187846,0.008375189,0.012562532,0.008382364,0.004202197,0.00002203,0.00002203,0.00002203 +10,DE,7,OTHER INDUSTRIAL PROCESSES,PM25,0.2185,0.27743,0.29317,0.30388,0.370714,0.38838,0.599403857,0.264142574,0.259250389,0.254358205,0.24946602,0.283239856,0.317013692,0.350787528,0.330468152,0.310148777,0.301572829,0.308563453,0.315554078,0.322544702,0.372479701,0.4224147,0.472349698,0.472349698,0.472349698 +10,DE,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0,0,0,0.073818199,0.072555299,0.0712924,0.0700295,0.0724085,0.0747875,0.0771665,0.066855835,0.05654517,0.046234504,0.049049686,0.051864868,0.05468005,0.055278033,0.055876017,0.056474,0.056474,0.056474 +10,DE,7,OTHER INDUSTRIAL PROCESSES,CO,0.00037,0.00037,0.00038,0.00038,0.000028,0.000029,0.084772286,0.084958298,0.101631699,0.118305099,0.1349785,0.120563787,0.106149073,0.09173436,0.093031864,0.094329367,0.086618292,0.321808047,0.556997802,0.792187557,0.672494712,0.552801867,0.433109022,0.433109022,0.433109022 +10,DE,7,OTHER INDUSTRIAL PROCESSES,NOX,,,,,0.000003,0.000003,0.000003,0.021925908,0.031480872,0.041035836,0.0505908,0.033923667,0.017256533,0.0005894,0.005546094,0.010502789,0.015459483,0.019256116,0.02305275,0.026849383,0.020188456,0.013527529,0.006866602,0.006866602,0.006866602 +10,DE,7,OTHER INDUSTRIAL PROCESSES,VOC,1.18639,2.15066,2.24991,2.27463,2.10495,2.172525,2.289875831,0.204903244,0.181991163,0.159079083,0.136167003,0.130158209,0.124149415,0.118140622,0.103553571,0.08896652,0.067808788,0.093432046,0.119055305,0.144678563,0.151912589,0.159146615,0.166380641,0.166380641,0.166380641 +10,DE,8,SOLVENT UTILIZATION,CO,,,,,0.00001,0.00001,0.00001,0,0.00077032,0.00154064,0.00231096,0.00154064,0.00077032,0,2.17E-06,4.35E-06,0.00000652,4.35E-06,2.17E-06,0,0,0,0,0,0 +10,DE,8,SOLVENT UTILIZATION,NH3,,,,,0,0,,0.000004332,0.000002888,0.000001444,,0,0,0,0,0,0,0,0,,0,0,0,0,0 +10,DE,8,SOLVENT UTILIZATION,NOX,0.001,0.00123,0.00132,0.00137,0.003572,0.003582,0.003685,0.0004628,0.000698949,0.000935097,0.001171246,0.000982523,0.000793801,0.000605078,0.000488669,0.000372259,0.00025585,0.000233833,0.000211817,0.0001898,0.000170967,0.000152133,0.0001333,0.0001333,0.0001333 +10,DE,8,SOLVENT UTILIZATION,PM10,0.02744,0.02744,0.02853,0.02872,0.036598,0.037942,0.039588,0.011504925,0.018988597,0.02647227,0.033955942,0.024983615,0.016011287,0.007038959,0.004929965,0.002820971,0.000711977,0.001357844,0.002003712,0.00264958,0.002542123,0.002434666,0.002327209,0.002327209,0.002327209 +10,DE,8,SOLVENT UTILIZATION,PM25,0.02286,0.02286,0.02378,0.02394,0.036598,0.037942,0.039588,0.008671482,0.015541477,0.022411472,0.029281467,0.021858207,0.014434948,0.007011688,0.004871931,0.002732174,0.000592417,0.001156253,0.00172009,0.002283927,0.002298354,0.002312781,0.002327209,0.002327209,0.002327209 +10,DE,8,SOLVENT UTILIZATION,SO2,0.001,0.00123,0.00132,0.00137,,,,0,0.000023841,0.000047682,0.000071523,0.00005466,0.000037797,0.000020934,1.58E-05,1.07E-05,0.00000554,3.69E-06,1.85E-06,0,0,0,0,0,0 +10,DE,8,SOLVENT UTILIZATION,VOC,15.21002,10.73679,11.10559,10.38175,8.727412,7.849627,8.119658,7.45189037,7.29778863,7.14368689,6.98958515,6.918435124,6.847285098,6.776135072,6.6830108,6.589886529,5.744218694,5.38774691,5.031275125,4.67480334,4.39936691,4.123930481,3.848494051,3.848494051,3.848494051 +10,DE,9,STORAGE & TRANSPORT,CO,,,,,0.021,0.021042,0.021063,0.0132,0.011413333,0.009626667,0.00784,0.007153333,0.006466667,0.00578,0.004844333,0.003908667,0.002973,0.004150562,0.005328124,0.006505686,0.006228321,0.005950955,0.00567359,0.00567359,0.00567359 +10,DE,9,STORAGE & TRANSPORT,VOC,7.35404,5.01317,5.1909,5.22507,3.98623,2.603353,2.634696,4.970362042,5.005264634,5.040167226,5.075069818,4.636313518,4.197557218,3.758800918,3.407680814,3.05656071,2.254242349,1.924002618,1.593762888,1.263523158,1.227708616,1.191894074,1.156079532,1.156079532,1.156079532 +10,DE,9,STORAGE & TRANSPORT,SO2,0.001,0.001,0.00102,0.00101,0.05371,0.055,0.056556,0.04102,0.027346667,0.013673333,,5.12E-07,1.02E-06,0.000001537,0.002270177,0.004538817,0.006807457,0.007375655,0.007943853,0.008512051,0.005709548,0.002907044,0.000104541,0.000104541,0.000104541 +10,DE,9,STORAGE & TRANSPORT,PM25,0.01224,0.01224,0.01241,0.01225,0.069458,0.071294,0.073512,0.024806434,0.029950107,0.03509378,0.040237453,0.032580369,0.024923285,0.017266201,0.015332932,0.013399662,0.017340045,0.015094034,0.012848022,0.010602011,0.01157649,0.012550969,0.013525448,0.013525448,0.013525448 +10,DE,9,STORAGE & TRANSPORT,PM10,0.01995,0.01995,0.0201,0.01968,0.169327,0.173597,0.178491,0.049056619,0.05942051,0.069784401,0.080148291,0.076482047,0.072815802,0.069149558,0.063348714,0.05754787,0.051747026,0.050636571,0.049526116,0.048415661,0.047626292,0.046836923,0.046047554,0.046047554,0.046047554 +10,DE,9,STORAGE & TRANSPORT,NH3,,,,,0.001086,0.00109,0.001093,0,0,0,,0,0,0,0.00000384,0.00000768,0.00001152,1.67E-05,2.19E-05,0.0000271,2.85E-05,2.99E-05,3.14E-05,3.14E-05,3.14E-05 +10,DE,9,STORAGE & TRANSPORT,NOX,,,,,0.02085,0.021166,0.021535,0.0144,0.010573333,0.006746667,0.00292,0.002323333,0.001726667,0.00113,0.001419067,0.001708133,0.0019972,0.002185282,0.002373365,0.002561447,0.002629298,0.002697149,0.002765,0.002765,0.002765 +10,DE,10,WASTE DISPOSAL & RECYCLING,CO,11.81699,8.73935,8.5824,9.5514,8.880864,4.646372,4.65271,1.913737064,1.86555146,1.817365856,1.769180253,1.300504419,0.831828586,0.363152752,0.34581473,0.328476707,0.335839985,0.326009356,0.316178726,0.306348097,0.356763844,0.407179591,0.457595338,0.457595338,0.457595338 +10,DE,10,WASTE DISPOSAL & RECYCLING,NH3,0.24939,0.24939,0.25107,0.25608,0.260153,0.263565,0.268437,0.007959654,0.016019314,0.024078974,0.032138634,0.024770892,0.01740315,0.010035407,0.00859565,0.007155893,0.005716136,0.014718994,0.023721852,0.032724709,0.032544274,0.03236384,0.032183405,0.032183405,0.032183405 +10,DE,10,WASTE DISPOSAL & RECYCLING,PM10,3.23132,1.39054,1.40807,1.52013,1.427797,1.065036,1.070239,0.157462294,0.174577189,0.191692085,0.20880698,0.157704482,0.106601984,0.055499486,0.05135434,0.047209193,0.045521251,0.047713394,0.049905538,0.052097681,0.062072872,0.072048064,0.082023256,0.082023256,0.082023256 +10,DE,10,WASTE DISPOSAL & RECYCLING,PM25,2.91012,1.31121,1.3239,1.43397,1.339214,0.971431,0.975142,0.142947096,0.152555321,0.162163545,0.17177177,0.131614169,0.091456569,0.051298968,0.04708857,0.042878172,0.04111361,0.04150895,0.041904291,0.042299631,0.051074051,0.059848472,0.068622892,0.068622892,0.068622892 +10,DE,10,WASTE DISPOSAL & RECYCLING,SO2,0.18434,0.08076,0.08488,0.08651,0.106216,0.109728,0.112636,0.023323465,0.051481813,0.079640161,0.107798509,0.109190415,0.11058232,0.111974225,0.083210716,0.054447207,0.025683698,0.060811339,0.095938981,0.131066622,0.116640997,0.102215372,0.087789748,0.087789748,0.087789748 +10,DE,10,WASTE DISPOSAL & RECYCLING,VOC,5.25368,1.85209,1.8736,1.96941,0.809546,0.921683,0.92599,0.187603956,0.200000679,0.212397402,0.224794125,0.195244703,0.165695281,0.136145859,0.108217243,0.080288627,0.051281481,0.113611058,0.175940635,0.238270213,0.24780983,0.257349448,0.266889065,0.266889065,0.266889065 +10,DE,10,WASTE DISPOSAL & RECYCLING,NOX,0.88002,0.3196,0.31921,0.34967,0.386339,0.256793,0.258567,0.10139485,0.091925923,0.082456996,0.072988068,0.060782803,0.048577538,0.036372273,0.034181167,0.03199006,0.030529762,0.029834216,0.02913867,0.028443124,0.034925365,0.041407606,0.047889847,0.047889847,0.047889847 +10,DE,11,HIGHWAY VEHICLES,VOC,28.21389,18.03671,17.26599,16.80678,15.99543,13.56914,13.45529,12.73487758,12.32504776,11.91521794,11.50538812,10.52765255,9.549916977,7.667335828,7.082514298,6.052597426,6.91630941,7.027201863,7.138094316,7.24898677,6.700281474,5.763953251,4.151676507,4.92076737,4.816102227 +10,DE,11,HIGHWAY VEHICLES,PM25,1.21183,0.70139,0.67782,0.64107,0.60932,0.50267,0.48527,0.839017694,0.830109838,0.821201981,0.812294124,0.710835072,0.60937602,0.498327726,0.407795215,0.355561191,0.40762401,0.391056501,0.374488991,0.357921482,0.326678813,0.263950894,0.288620632,0.255066128,0.234272276 +10,DE,11,HIGHWAY VEHICLES,PM10,1.43784,0.87834,0.86088,0.82233,0.7922,0.67278,0.65896,1.076622847,1.071986917,1.067350986,1.062715055,0.913669701,0.764624347,0.636812154,0.536333714,0.479905404,0.733528919,0.717323564,0.701118208,0.684912853,0.660006882,0.558140338,0.62031243,0.596711677,0.571524807 +10,DE,11,HIGHWAY VEHICLES,NOX,33.5011,26.63754,27.1715,27.00227,26.50417,24.21479,23.70991,27.29227523,26.02413826,24.75600128,23.48786431,21.75454981,20.02123531,16.76451977,14.22996755,12.07389173,13.44140553,12.98295053,12.52449552,12.06604051,11.00437293,9.327181195,9.24326171,7.243482004,6.378185981 +10,DE,11,HIGHWAY VEHICLES,SO2,1.8454,0.93036,0.97299,0.99876,1.03402,0.52065,0.54514,0.611284834,0.556155164,0.501025495,0.445895826,0.273126306,0.100356787,0.092370363,0.086604178,0.085807145,0.085055397,0.087859844,0.09066429,0.093468736,0.100887833,0.104330573,0.098115545,0.040236327,0.02950937 +10,DE,11,HIGHWAY VEHICLES,NH3,0.52695,0.72883,0.82982,0.81111,0.84649,0.82504,0.86877,0.469335043,0.459520997,0.449706951,0.439892905,0.436614116,0.433335326,0.376711092,0.382119924,0.331400106,0.326487415,0.324494797,0.322502178,0.32050956,0.311543769,0.308984549,0.304534079,0.274621143,0.269178755 +10,DE,11,HIGHWAY VEHICLES,CO,330.16417,215.35512,209.74464,204.66526,192.48549,175.68087,177.89563,163.7494025,157.418555,151.0877075,144.7568601,121.3056854,97.85451068,83.51269657,74.59053687,64.94724703,63.9670801,67.95275433,71.93842856,75.92410279,71.29842015,65.41196401,51.73518853,56.8004919,55.83377393 +10,DE,12,OFF-HIGHWAY,VOC,9.72103,11.2217,10.7571,10.59034,10.56997,10.15302,10.02624,9.159666679,8.788427378,8.417188077,8.045948777,7.645267556,7.244586335,8.551067669,6.451993309,6.209158324,5.802948204,5.46020664,5.117465077,4.774723513,5.530850932,7.50234495,7.043105771,6.715566939,6.388028106 +10,DE,12,OFF-HIGHWAY,SO2,1.41865,1.51376,1.55815,1.60499,1.63593,1.54842,1.54788,10.42186581,7.832615506,5.243365205,2.654114904,2.640828679,2.627542455,2.423686523,2.641661246,1.190714863,1.844091697,1.846656699,1.849221702,1.851786704,1.279837965,0.116683399,0.135940489,0.135470424,0.13500036 +10,DE,12,OFF-HIGHWAY,PM25,0.96964,1.04297,1.07128,1.09792,1.02809,0.98419,0.97152,1.028674031,0.966436515,0.904199,0.841961485,0.837049847,0.83213821,0.774036378,0.80172961,0.612828823,0.666644873,0.652967022,0.639289171,0.62561132,0.546464086,0.39506551,0.388169619,0.376233033,0.364296447 +10,DE,12,OFF-HIGHWAY,PM10,1.06164,1.13961,1.16775,1.19355,1.1236,1.07582,1.06217,1.107216437,1.040661908,0.974107379,0.90755285,0.899655912,0.891758974,0.835807981,0.866986866,0.663214967,0.711072539,0.696205406,0.681338273,0.66647114,0.582735861,0.422253948,0.415265303,0.402841747,0.390418192 +10,DE,12,OFF-HIGHWAY,NOX,10.75978,11.78847,11.81426,11.76316,9.35339,11.33602,11.35618,16.26886422,14.37831225,12.48776028,10.59720832,10.64055674,10.68390517,10.01441887,10.62076834,10.38028631,8.223928702,8.229596849,8.235264996,8.240933144,8.106268326,7.398145887,7.836938692,7.562936498,7.288934305 +10,DE,12,OFF-HIGHWAY,CO,70.68747,80.26613,78.22096,78.44727,78.74044,79.21805,80.69806,68.9700715,66.86336362,64.75665573,62.64994784,57.66838603,52.68682423,56.12250856,47.58001548,46.45793277,45.57970132,44.97216878,44.36463625,43.75710372,47.13637015,53.70458255,53.89490301,54.17633886,54.45777471 +10,DE,12,OFF-HIGHWAY,NH3,0.06855,0.08034,0.08081,0.08318,0.0098,0.0098,0.0098,0.00537318,0.005443272,0.005513364,0.005583456,0.005598237,0.005613018,0.007406644,0.005785776,0.005874831,0.007250448,0.007347939,0.00744543,0.007542921,0.007844966,0.006834963,0.008449056,0.008304739,0.008160422 +10,DE,14,MISCELLANEOUS,PM10,26.37301,19.51013,20.06203,20.96292,19.81072,19.591327,15.7352478,10.96626032,10.98908633,11.01191235,11.03473836,12.44027573,13.8458131,15.25135048,13.8299754,12.40860033,10.98722526,11.34967715,11.71212904,12.07458093,12.7379211,13.40126127,14.06460144,14.06460144,14.06460144 +10,DE,14,MISCELLANEOUS,NH3,9.80916,9.7777,9.74236,9.74273,9.53788,9.44952,12.4899912,12.56231549,12.5656295,12.56894352,12.57225754,12.74471303,12.91716852,13.08962402,10.45487423,7.820124439,5.18537465,5.660204362,6.135034075,6.609863788,6.663187516,6.716511244,6.769834971,6.769834971,6.769834971 +10,DE,14,MISCELLANEOUS,NOX,0.01264,0.00662,0.01805,0.00792,0.006904,0.0139,0.00722,0.003379671,0.009044383,0.014709095,0.020373807,0.016619143,0.012864479,0.009109815,0.009976441,0.010843067,0.011709693,0.009486022,0.007262352,0.005038681,0.01200709,0.0189755,0.025943909,0.025943909,0.025943909 +10,DE,14,MISCELLANEOUS,PM25,5.56578,4.34957,4.53058,4.6969,4.52903,4.431626,2.7261795,0.891518226,0.910862304,0.930206383,0.949550461,1.137640022,1.325729583,1.513819144,1.657864846,1.801910548,1.945956251,1.930019306,1.914082362,1.898145418,1.963169269,2.02819312,2.093216971,2.093216971,2.093216971 +10,DE,14,MISCELLANEOUS,SO2,0.0004,0.00016,0.0006,0.00025,0.00571,0.00349,0.00166,,,,0.007186272,0.004931799,0.002677326,0.000422854,0.000436002,0.00044915,0.000462298,0.000507836,0.000553374,0.000598912,0.001588388,0.002577864,0.00356734,0.00356734,0.00356734 +10,DE,14,MISCELLANEOUS,CO,0.38577,0.63349,1.04855,0.6168,0.612059,0.930858,0.61911,0.141659776,0.340079009,0.538498242,0.736917475,0.570978598,0.405039721,0.239100844,0.259909323,0.280717801,0.301526279,0.216765287,0.132004295,0.047243302,0.294749612,0.542255922,0.789762231,0.789762231,0.789762231 +10,DE,14,MISCELLANEOUS,VOC,0.71803,0.09861,0.15316,0.11318,0.097387,0.093277,0.078866,0.028146104,0.075705659,0.123265214,0.170824769,0.124323324,0.07782188,0.031320435,0.029640969,0.027961503,0.026282037,0.166491953,0.306701869,0.446911785,0.48362607,0.520340355,0.55705464,0.55705464,0.55705464 +10,DE,15,WILDFIRES,NOX,,,,,,,,0.000630872,0.000630872,0.000630872,,0,0,,0,0,0.002196232,0.002196232,0.002196232,,,,0.000894278,0.000894278,0.000894278 +10,DE,15,WILDFIRES,NH3,,,,,,,,0.001461676,0.001461676,0.001461676,,0,0,,0,0,0.000446331,0.000446331,0.000446331,,,,0.000619248,0.000619248,0.000619248 +10,DE,15,WILDFIRES,CO,,,,,,,,0.0934,0.0934,0.0934,,0,0,,0,0,0.1020185,0.1020185,0.1020185,,,,0.037273981,0.037273981,0.037273981 +10,DE,15,WILDFIRES,PM10,,,,,,,,0.008709961,0.008709961,0.008709961,,0,0,,0,0,0.00991847,0.00991847,0.00991847,,,,0.004136306,0.004136306,0.004136306 +10,DE,15,WILDFIRES,PM25,,,,,,,,0.007388445,0.007388445,0.007388445,,0,0,,0,0,0.008501548,0.008501548,0.008501548,,,,0.003505309,0.003505309,0.003505309 +10,DE,15,WILDFIRES,SO2,,,,,,,,0.000470606,0.000470606,0.000470606,,0,0,,0,0,0.000588024,0.000588024,0.000588024,,,,0.000398046,0.000398046,0.000398046 +10,DE,15,WILDFIRES,VOC,,,,,,,,0.01517,0.01517,0.01517,,0,0,,0,0,0.004817546,0.004817546,0.004817546,,,,0.008901771,0.008901771,0.008901771 +10,DE,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.07326936,0.086615075,0.09996079,0.113306504,0.138515746,0.163724987,0.188934228,0.169375776,0.149817324,0.130258872,0.130258872,0.130258872 +10,DE,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.03546132,0.082923824,0.130386329,0.177848833,0.256359808,0.334870782,0.413381757,0.375054597,0.336727437,0.298400277,0.298400277,0.298400277 +10,DE,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.06283956,0.074055799,0.085272038,0.096488277,0.117696777,0.138905276,0.160113775,0.143538797,0.126963819,0.110388841,0.110388841,0.110388841 +10,DE,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.0161662,0.017335429,0.018504659,0.019673888,0.025623187,0.031572487,0.037521786,0.03144377,0.025365754,0.019287737,0.019287737,0.019287737 +10,DE,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.003389684,0.006575677,0.009761669,0.012947662,0.018217434,0.023487207,0.02875698,0.026090779,0.023424578,0.020758377,0.020758377,0.020758377 +10,DE,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,0.753553,0.878826473,1.004099945,1.129373418,1.331500194,1.53362697,1.735753745,1.577947908,1.42014207,1.262336232,1.262336232,1.262336232 +10,DE,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.004432664,0.005588929,0.006745193,0.007901458,0.011026166,0.014150875,0.017275584,0.014889515,0.012503445,0.010117376,0.010117376,0.010117376 +11,DC,1,FUEL COMB. ELEC. UTIL.,VOC,0.02413,0.01377,0.01057,0.0207,0.02055,0.01669,0.009721,0.004486771,0.004148366,0.003809961,0.003471555,0.002466964,0.001462373,0.000457782,0.000311546,0.00016531,1.91E-05,1.27E-05,6.36E-06,0,0,0,0,0,0 +11,DC,1,FUEL COMB. ELEC. UTIL.,SO2,2.70479,0.89359,0.58117,1.3736,1.59444,1.123245,0.923437,1.83358432,0.285526,0.150046,1.695706869,0.310523,0.318574,0.06870162,0.289007153,0.509312687,0.72961822,0.486412147,0.243206073,0,0,0,0,0,0 +11,DC,1,FUEL COMB. ELEC. UTIL.,PM25,0.04807,0.01631,0.01289,0.02081,0.037832,0.032299,0.020531,0.0576101,0.058869096,0.060128091,0.061387087,0.042190738,0.022994388,0.003798038,0.002660351,0.001522664,0.000384977,0.000256651,0.000128326,0,0,0,0,0,0 +11,DC,1,FUEL COMB. ELEC. UTIL.,PM10,0.06523,0.0177,0.01364,0.02278,0.039773,0.034186,0.024998,0.118636358,0.130602466,0.142568575,0.154534683,0.104780082,0.055025482,0.005270881,0.003692259,0.002113637,0.000535015,0.000356677,0.000178338,0,0,0,0,0,0 +11,DC,1,FUEL COMB. ELEC. UTIL.,NOX,0.86215,0.21628,0.19135,0.51665,0.54777,0.376078,0.340011,0.82664365,0.096797,0.053346,0.669706561,0.099985,0.122168,0.1132457,0.157257867,0.201270033,0.2452822,0.163521467,0.081760733,0,0,0,0,0,0 +11,DC,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00406,0.00211,0.00793,0.00777,0.005564,0.004766,0.00815252,0.007350002,0.006547484,0.005744966,0.003829977,0.001914989,0,0,0,0,0,0,0,0,0,0,0,0 +11,DC,1,FUEL COMB. ELEC. UTIL.,CO,0.08382,0.04627,0.03508,0.07187,0.0714,0.058116,0.053677,0.066551898,0.082495816,0.098439734,0.114383651,0.07727964,0.040175628,0.003071617,0.00209892,0.001126223,0.000153526,0.000102351,5.12E-05,0,0,0,0,0,0 +11,DC,2,FUEL COMB. INDUSTRIAL,PM25,0.02131,0.00266,0.00254,0.00252,0.010378,0.010389,0.010122,0.001979013,0.004361538,0.006744063,0.009126588,0.010690832,0.012255076,0.013819319,0.013259247,0.012699175,0.012139103,0.02127672,0.030414338,0.039551955,0.028087311,0.016622667,0.005158023,0.005158023,0.005158023 +11,DC,2,FUEL COMB. INDUSTRIAL,NH3,0.00063,0.00068,0.00067,0.00067,0.00069,0.000694,0.000684,0.000854758,0.001054864,0.001254971,0.001455078,0.000980585,0.000506093,0.0000316,2.31E-05,1.45E-05,0.000006,0.000172847,0.000339694,0.000506541,0.00054599,0.00058544,0.000624889,0.000624889,0.000624889 +11,DC,2,FUEL COMB. INDUSTRIAL,PM10,0.0331,0.00307,0.00294,0.00291,0.010788,0.010803,0.01055,0.002545798,0.005078876,0.007611953,0.01014503,0.011566694,0.012988358,0.014410022,0.013739946,0.013069871,0.012399796,0.021857381,0.031314967,0.040772552,0.029339258,0.017905963,0.006472669,0.006472669,0.006472669 +11,DC,2,FUEL COMB. INDUSTRIAL,SO2,0.80284,0.01471,0.01438,0.01396,0.01433,0.014294,0.014871,0.032346614,0.033098328,0.033850041,0.034601754,0.028127293,0.021652831,0.015178369,0.012861405,0.010544441,0.008227477,0.014164715,0.020101953,0.026039191,0.018314772,0.010590354,0.002865936,0.002865936,0.002865936 +11,DC,2,FUEL COMB. INDUSTRIAL,VOC,0.00762,0.00029,0.00028,0.00028,0.00029,0.000286,0.000279,0.000156914,0.000157868,0.000158821,0.000159774,0.00320411,0.006248445,0.009292781,0.00902002,0.00874726,0.0084745,0.016850117,0.025225734,0.033601351,0.023509475,0.0134176,0.003325724,0.003325724,0.003325724 +11,DC,2,FUEL COMB. INDUSTRIAL,NOX,0.33581,0.07881,0.07493,0.07446,0.07747,0.077257,0.075091,0.023095513,0.029319123,0.035542733,0.041766343,0.105942631,0.170118918,0.234295206,0.227310776,0.220326345,0.213341915,0.342578578,0.471815241,0.601051904,0.424828328,0.248604752,0.072381176,0.072381176,0.072381176 +11,DC,2,FUEL COMB. INDUSTRIAL,CO,0.07058,0.00629,0.00601,0.00595,0.00619,0.006153,0.005999,0.010384631,0.015549604,0.020714578,0.025879551,0.065130522,0.104381494,0.143632466,0.139155718,0.13467897,0.130202222,0.155044947,0.179887671,0.204730396,0.143620449,0.082510503,0.021400557,0.021400557,0.021400557 +11,DC,3,FUEL COMB. OTHER,PM10,0.15929,0.62206,0.62226,0.61607,0.978562,1.007651,1.019138,0.213778332,0.253199207,0.292620081,0.332040955,0.451866801,0.571692646,0.691518491,0.689776753,0.688035016,0.44732254,0.32674856,0.20617458,0.0856006,0.076397348,0.067194095,0.057990842,0.057990842,0.057990842 +11,DC,3,FUEL COMB. OTHER,VOC,0.05963,0.70597,0.70544,0.70301,0.743374,0.792781,0.793965,0.350480682,0.313793211,0.277105741,0.24041827,0.4633552,0.686292131,0.909229061,0.886682782,0.864136503,0.635483916,0.472420028,0.309356141,0.146292254,0.130201058,0.114109862,0.098018665,0.098018665,0.098018665 +11,DC,3,FUEL COMB. OTHER,PM25,0.09703,0.38812,0.38704,0.38203,0.745463,0.770444,0.779302,0.17051718,0.20814779,0.2457784,0.28340901,0.418468472,0.553527934,0.688587396,0.686558312,0.684529228,0.443947606,0.323602671,0.203257736,0.082912801,0.074068028,0.065223255,0.056378482,0.056378482,0.056378482 +11,DC,3,FUEL COMB. OTHER,NOX,2.40428,2.63531,2.6439,2.37771,2.800364,2.850316,2.893908,2.014348899,2.015438425,2.016527951,2.017617476,1.852083124,1.686548771,1.521014419,1.560279306,1.599544193,1.61170843,1.578693463,1.545678497,1.51266353,1.473156357,1.433649185,1.394142013,1.394142013,1.394142013 +11,DC,3,FUEL COMB. OTHER,NH3,0.02834,0.03404,0.03397,0.02893,0.03036,0.030852,0.031259,0.01190655,0.011658679,0.011410808,0.011162937,0.066735657,0.122308377,0.177881097,0.180860824,0.183840552,0.169761919,0.163369041,0.156976162,0.150583284,0.141084462,0.13158564,0.122086817,0.122086817,0.122086817 +11,DC,3,FUEL COMB. OTHER,CO,0.44641,1.85015,1.84835,1.8381,2.364888,2.486241,2.496769,1.89708037,1.901056302,1.905032234,1.909008166,3.082122439,4.255236712,5.428350985,5.402002638,5.375654292,3.846467195,2.998331733,2.15019627,1.302060808,1.190510916,1.078961024,0.967411132,0.967411132,0.967411132 +11,DC,3,FUEL COMB. OTHER,SO2,6.79087,6.82959,6.99079,6.10661,6.280282,6.405375,6.52615,1.748291554,1.697512015,1.646732476,1.595952938,1.416282758,1.236612578,1.056942398,1.051377536,1.045812674,1.036208095,0.747263114,0.458318132,0.169373151,0.125836142,0.082299133,0.038762124,0.038762124,0.038762124 +11,DC,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,,,,,,,,0.02986,0.02986,0.02986,0.02986,0.019906667,0.009953333,,0,0,0,0,0,,0.00014,0.00028,0.00042,0.00042,0.00042 +11,DC,6,PETROLEUM & RELATED INDUSTRIES,NOX,,,,,,,,,0,0,,0.001259937,0.002519875,0.003779812,0.004158401,0.004536991,0.00491558,0.003630387,0.002345193,0.00106,0.002133274,0.003206549,0.004279823,0.004279823,0.004279823 +11,DC,6,PETROLEUM & RELATED INDUSTRIES,CO,,,,,,,,,0,0,,0.020159,0.040318,0.060477,0.0665344,0.0725918,0.0786492,0.0527296,0.02681,0.0008904,0.00179195,0.002693501,0.003595051,0.003595051,0.003595051 +11,DC,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11,DC,6,PETROLEUM & RELATED INDUSTRIES,PM10,,,,,,,,,0,0,,0.000493896,0.000987791,0.001481687,0.001630092,0.001778498,0.001926903,0.001311455,0.000696008,0.00008056,0.000162129,0.000243698,0.000325267,0.000325267,0.000325267 +11,DC,6,PETROLEUM & RELATED INDUSTRIES,SO2,,,,,,,,,0,0,,0.000231828,0.000463657,0.000695485,0.000765145,0.000834806,0.000904466,0.000605097,0.000305729,0.00000636,1.28E-05,1.92E-05,2.57E-05,2.57E-05,2.57E-05 +11,DC,6,PETROLEUM & RELATED INDUSTRIES,VOC,,,,,,,,,0,0,,0.00041326,0.000826519,0.001239779,0.001445068,0.001650356,0.001855645,0.00125653,0.000657415,0.0000583,0.00011733,0.00017636,0.00023539,0.00023539,0.00023539 +11,DC,6,PETROLEUM & RELATED INDUSTRIES,PM25,,,,,,,,,0,0,,0.000418299,0.000836599,0.001254898,0.001380588,0.001506279,0.001631969,0.001114833,0.000597696,0.00008056,0.000162129,0.000243698,0.000325267,0.000325267,0.000325267 +11,DC,7,OTHER INDUSTRIAL PROCESSES,CO,,,,,,,0.105203523,0.10519,0.10519,0.10519,0.10519,0.08888,0.07257,0.05626,0.057093333,0.057926667,0.05876,0.20326374,0.34776748,0.49227122,0.424218677,0.356166133,0.28811359,0.28811359,0.28811359 +11,DC,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,,,,0.000123,0.0001245,0.000126,0.0001275,0.000085,0.0000425,,0.00003,0.00006,0.00009,8.53E-05,8.07E-05,0.000076,7.82E-05,8.03E-05,0.0000825,0.0000825,0.0000825 +11,DC,7,OTHER INDUSTRIAL PROCESSES,NOX,,,,,,,,,0,0,,0,0,0,0,0,0,0.002432343,0.004864687,0.00729703,0.005708556,0.004120082,0.002531608,0.002531608,0.002531608 +11,DC,7,OTHER INDUSTRIAL PROCESSES,PM10,0.12037,0.22359,0.24135,0.25809,0.23887,0.25801,0.533268028,0.27524,0.27524,0.27524,0.27524,0.234063333,0.192886667,0.15171,0.153943333,0.156176667,0.15841,0.246275037,0.334140073,0.42200511,0.43354368,0.445082251,0.456620821,0.456620821,0.456620821 +11,DC,7,OTHER INDUSTRIAL PROCESSES,PM25,0.02408,0.04472,0.04827,0.05162,0.04777,0.0516,0.307084398,0.25547,0.25547,0.25547,0.25547,0.21707,0.17867,0.14027,0.142343333,0.144416667,0.15838,0.23513469,0.31188938,0.38864407,0.39940271,0.41016135,0.420919991,0.420919991,0.420919991 +11,DC,7,OTHER INDUSTRIAL PROCESSES,SO2,,,,,,,,,0,0,,0,0,0,0,0,0,0,0,0,6.17E-07,1.23E-06,0.00000185,0.00000185,0.00000185 +11,DC,7,OTHER INDUSTRIAL PROCESSES,VOC,0.0939,0.08686,0.09083,0.08995,0.09039,0.093011,0.132985525,0.03688,0.03688,0.03688,0.03688,0.03172,0.02656,0.0214,0.02172,0.02204,0.02236,0.034812255,0.04726451,0.059716765,0.062035786,0.064354808,0.066673829,0.066673829,0.066673829 +11,DC,8,SOLVENT UTILIZATION,NOX,,,,,,,,0.00327,0.00327,0.00327,0.00327,0.00218,0.00109,,0,0,0,0,0,,0,0,0,0,0 +11,DC,8,SOLVENT UTILIZATION,VOC,9.58961,9.40962,9.61979,9.51346,8.77706,8.687882,8.925695,3.2090304,3.20898425,3.208938099,3.208891949,3.591138553,3.973385156,4.35563176,4.085899661,3.816167561,3.595952562,3.819468457,4.042984353,4.266500249,3.793669598,3.320838946,2.848008295,2.848008295,2.848008295 +11,DC,8,SOLVENT UTILIZATION,SO2,,,,,,,,0.00183,0.00183,0.00183,0.00183,0.00122,0.00061,,0,0,0,0,0,,0,0,0,0,0 +11,DC,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +11,DC,8,SOLVENT UTILIZATION,PM10,,,,,,,,0.00015315,0.00015432,0.00015549,0.00015666,0.00010444,0.00005222,,0,0,0,0,0,,4.67E-05,9.33E-05,0.00014,0.00014,0.00014 +11,DC,8,SOLVENT UTILIZATION,PM25,,,,,,,,5.41E-05,7.94E-05,0.000104681,0.000129994,8.67E-05,4.33E-05,,0,0,0,0,0,,4.67E-05,9.33E-05,0.00014,0.00014,0.00014 +11,DC,8,SOLVENT UTILIZATION,CO,,,,,,,,0.00015,0.00015,0.00015,0.00015,0.0001,0.00005,,0,0,0,0,0,,0,0,0,0,0 +11,DC,9,STORAGE & TRANSPORT,PM10,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +11,DC,9,STORAGE & TRANSPORT,NOX,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +11,DC,9,STORAGE & TRANSPORT,PM25,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +11,DC,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +11,DC,9,STORAGE & TRANSPORT,CO,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +11,DC,9,STORAGE & TRANSPORT,SO2,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +11,DC,9,STORAGE & TRANSPORT,VOC,0.34358,0.23361,0.23361,0.23361,0.23361,0.235213,0.237503,0.537599716,0.537599716,0.537599716,0.537599716,0.517134726,0.496669736,0.476204746,0.460136934,0.444069121,0.216111639,0.234993076,0.253874513,0.27275595,0.213577855,0.154399759,0.095221664,0.095221664,0.095221664 +11,DC,10,WASTE DISPOSAL & RECYCLING,NOX,0.10111,0.10006,0.10708,0.10449,0.12077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00184051,0.00368102,0.00552153,0.00552153,0.00552153 +11,DC,10,WASTE DISPOSAL & RECYCLING,NH3,0.90228,0.90228,0.90228,0.91825,0.93422,0.950102,0.95851,0.003628223,0.003628223,0.003628223,0.003628223,0.003162929,0.002697634,0.00223234,0.00223234,0.00223234,0.00223234,0.00208156,0.00193078,0.00178,0.002599028,0.003418056,0.004237084,0.004237084,0.004237084 +11,DC,10,WASTE DISPOSAL & RECYCLING,PM10,0.24519,0.5401,0.57213,0.5699,0.653282,0.247779,0.253118,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000620158,0.001240315,0.001860473,0.001860473,0.001860473 +11,DC,10,WASTE DISPOSAL & RECYCLING,SO2,0.21911,0.1662,0.17297,0.17845,0.18324,0.187088,0.191119,0,0,0,0,0,0,0,0,0,0,0,0,0,5.70E-05,0.000114035,0.000171052,0.000171052,0.000171052 +11,DC,10,WASTE DISPOSAL & RECYCLING,VOC,0.16368,0.36135,0.37764,0.3739,0.41397,0.136064,0.137268,0.014997704,0.014997704,0.014997704,0.014997704,0.025168803,0.035339901,0.045511,0.049472667,0.053434333,0.057396,0.041250667,0.025105333,0.00896,0.011824335,0.01468867,0.017553005,0.017553005,0.017553005 +11,DC,10,WASTE DISPOSAL & RECYCLING,PM25,0.17754,0.47698,0.50643,0.50212,0.583692,0.176727,0.180535,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000620158,0.001240315,0.001860473,0.001860473,0.001860473 +11,DC,10,WASTE DISPOSAL & RECYCLING,CO,0.07813,3.382,3.61934,3.53169,4.08186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001709429,0.003418857,0.005128286,0.005128286,0.005128286 +11,DC,11,HIGHWAY VEHICLES,CO,141.59974,93.03482,90.69399,88.57302,83.42699,72.69517,73.91991,60.32843643,56.81173026,53.29502409,49.77831792,41.82320149,33.86808505,34.21609756,28.514288,30.05129646,25.38565773,28.41519925,31.44474076,34.47428228,32.76869131,24.21079037,18.81033897,23.8076522,23.51973036 +11,DC,11,HIGHWAY VEHICLES,PM10,0.42833,0.29288,0.28657,0.27178,0.25973,0.23114,0.23392,0.531588236,0.524850222,0.518112208,0.511374194,0.513662854,0.515951515,0.538099422,0.327204572,0.316262689,0.520155767,0.536540315,0.552924864,0.569309413,0.553389859,0.48448218,0.433435363,0.524676185,0.528017352 +11,DC,11,HIGHWAY VEHICLES,VOC,13.08864,8.11159,7.86777,7.76466,7.50143,6.28119,6.18662,4.691807515,4.455243772,4.218680029,3.982116287,3.674064396,3.366012505,3.142742093,2.680450165,2.656472167,2.146330968,2.495695308,2.845059649,3.194423989,3.027422926,2.324625822,1.507761996,2.054617721,2.080644512 +11,DC,11,HIGHWAY VEHICLES,PM25,0.34991,0.22532,0.2169,0.20368,0.19194,0.16478,0.16423,0.415531902,0.407539499,0.399547097,0.391554695,0.379117211,0.366679726,0.378098794,0.195293775,0.186922565,0.206861665,0.208100631,0.209339597,0.210578563,0.19356785,0.154710563,0.119135282,0.155562767,0.153832277 +11,DC,11,HIGHWAY VEHICLES,NH3,0.23818,0.32051,0.35684,0.34169,0.34986,0.35612,0.38568,0.200689825,0.195388278,0.190086731,0.184785185,0.172798554,0.160811924,0.171516236,0.174262131,0.151674723,0.154704079,0.156836385,0.158968692,0.161100998,0.153136222,0.140145049,0.128553842,0.134040783,0.136296186 +11,DC,11,HIGHWAY VEHICLES,NOX,13.20864,10.08903,10.10519,9.85459,9.5034,8.84595,8.81363,11.45598727,10.79854828,10.14110929,9.483670305,8.744000603,8.004330901,8.172500737,4.534922423,4.478710503,4.739468438,4.620868763,4.502269088,4.383669412,3.94618668,3.137463803,2.287059317,2.506533781,2.406869975 +11,DC,11,HIGHWAY VEHICLES,SO2,0.59782,0.36173,0.37009,0.37301,0.37892,0.20386,0.2193,0.33518074,0.294922892,0.254665045,0.214407197,0.130487245,0.046567294,0.052167798,0.046355556,0.046310829,0.044790894,0.047004256,0.049217618,0.05143098,0.054277035,0.052443483,0.046624462,0.02018991,0.014954326 +11,DC,12,OFF-HIGHWAY,CO,13.62111,15.54005,15.18446,15.15279,15.20953,15.25,15.47456,18.23716904,17.69211781,17.14706659,16.60201536,15.27853378,13.9550522,14.92410481,12.80686245,12.48668387,12.03349004,11.63025768,11.22702531,10.82379294,9.724147937,7.564080639,7.524857933,7.555615101,7.586372269 +11,DC,12,OFF-HIGHWAY,NOX,2.36296,2.63088,2.84973,3.05218,2.69124,2.70719,2.70002,3.594978908,3.55248471,3.509990512,3.467496313,3.377360393,3.287224473,3.140602864,3.100598992,3.007548957,2.58771179,2.411215781,2.234719772,2.058223763,1.709933734,1.044575328,1.013353674,0.961128235,0.908902795 +11,DC,12,OFF-HIGHWAY,PM25,0.23427,0.23715,0.23429,0.23102,0.2286,0.22443,0.2198,0.297529476,0.289844852,0.282160229,0.274475605,0.261122907,0.247770209,0.233422369,0.229360162,0.223672578,0.210932562,0.198241057,0.185549552,0.172858047,0.140961863,0.082948304,0.077169494,0.072342,0.067514506 +11,DC,12,OFF-HIGHWAY,SO2,0.21438,0.28073,0.28894,0.29768,0.30685,0.31631,0.32508,0.383411443,0.39244428,0.401477118,0.410509955,0.320259154,0.230008352,0.079224758,0.097297048,0.066252852,0.009390405,0.007701035,0.006011666,0.004322296,0.00338804,0.001531055,0.001519526,0.001448736,0.001377945 +11,DC,12,OFF-HIGHWAY,VOC,1.39524,1.54635,1.44288,1.38822,1.35749,1.32571,1.2952,1.940387585,1.861602095,1.782816605,1.704031114,1.654776462,1.60552181,1.492047735,1.412791624,1.368074229,1.261386383,1.159799152,1.058211921,0.95662469,0.81362872,0.55406213,0.527636778,0.515004203,0.502371627 +11,DC,12,OFF-HIGHWAY,NH3,0.01263,0.01541,0.01565,0.01611,0.00318,0.00318,0.00318,0.002629882,0.002680314,0.002730745,0.002781176,0.002710378,0.00263958,0.002783401,0.002746259,0.002801193,0.002957692,0.003002083,0.003046474,0.003090865,0.002502728,0.00120713,0.001326454,0.001327702,0.001328949 +11,DC,12,OFF-HIGHWAY,PM10,0.25488,0.25792,0.25485,0.25124,0.24864,0.24403,0.23901,0.308161788,0.300221085,0.292280381,0.284339678,0.270634653,0.256929629,0.242702871,0.238167689,0.232291067,0.219285777,0.206143123,0.193000468,0.179857814,0.146733578,0.086435503,0.080485106,0.07551285,0.070540593 +11,DC,14,MISCELLANEOUS,NOX,0.01747,0.00095,0.00088,0.00096,0.00088,0.00083,0.00083,0.00086,0.00086,0.00086,0.00086,0.001750357,0.002640713,0.00353107,0.00253738,0.00154369,0.00055,0.001106937,0.001663873,0.00222081,0.001599066,0.000977321,0.000355577,0.000355577,0.000355577 +11,DC,14,MISCELLANEOUS,VOC,0.16342,0.03509,0.03482,0.03534,0.03534,0.035394,0.035651,0.00679,0.00679,0.00679,0.00679,0.00896216,0.011134319,0.013306479,0.010324319,0.00734216,0.00436,0.002909258,0.001458515,7.77E-06,1.51E-05,2.25E-05,2.99E-05,2.99E-05,2.99E-05 +11,DC,14,MISCELLANEOUS,SO2,,,,0.00001,0.00001,,,,,,,,,0.000285065,,,0,0.000114151,0.000228302,0.000342453,0.00030066,0.000258868,0.000217075,0.000217075,0.000217075 +11,DC,14,MISCELLANEOUS,PM10,10.11696,5.94884,6.67874,6.21762,7.01281,7.35141,5.34562,5.71043,5.71043,5.71043,5.71043,4.995401529,4.280373057,3.565344586,3.060294557,2.555244529,2.0501945,2.222729166,2.395263833,2.567798499,2.667478446,2.767158392,2.866838339,2.866838339,2.866838339 +11,DC,14,MISCELLANEOUS,NH3,,,,,0.00001,,,0,0,0,0,0,0,0,,,0,0,0,0,0.002066667,0.004133333,0.0062,0.0062,0.0062 +11,DC,14,MISCELLANEOUS,CO,0.74067,0.04055,0.03767,0.04017,0.03778,0.03557,0.03562,0.03708,0.03708,0.03708,0.03708,0.0400629,0.0430458,0.0460287,0.0358958,0.0257629,0.01563,0.010423484,0.005216967,1.05E-05,0.000105073,0.000199695,0.000294316,0.000294316,0.000294316 +11,DC,14,MISCELLANEOUS,PM25,2.27518,1.34376,1.51301,1.41988,1.59007,1.66701,0.8817897,0.41695,0.41695,0.41695,0.41695,0.356312749,0.295675497,0.235038246,0.26552738,0.296016515,0.32650565,0.340534833,0.354564016,0.368593199,0.378655831,0.388718463,0.398781096,0.398781096,0.398781096 +11,DC,15,WILDFIRES,PM25,,,,,,,,,,,,,,,,,0,0,0,,,,0,0,0 +11,DC,15,WILDFIRES,SO2,,,,,,,,,,,,,,,,,0,0,0,,,,0,0,0 +11,DC,15,WILDFIRES,PM10,,,,,,,,,,,,,,,,,0,0,0,,,,0,0,0 +11,DC,15,WILDFIRES,VOC,,,,,,,,,,,,,,,,,0,0,0,,,,0,0,0 +11,DC,15,WILDFIRES,CO,,,,,,,,,,,,,,,,,0,0,0,,,,0,0,0 +11,DC,15,WILDFIRES,NOX,,,,,,,,,,,,,,,,,0,0,0,,,,0,0,0 +11,DC,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,0,,,0,0,0,,0,0,0,0,0 +11,DC,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0,,,0,0,0,,0,0,0,0,0 +11,DC,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0,,,0,0,0,,0,0,0,0,0 +11,DC,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0,,,0,0,0,,0,0,0,0,0 +12,FL,1,FUEL COMB. ELEC. UTIL.,VOC,2.63458,2.82169,2.87472,3.43319,2.562157,3.640869,3.732142,2.541193396,2.356987563,2.17278173,1.988575898,2.072443376,2.156310855,2.240178334,2.136973875,2.033769417,1.930564958,1.902382928,1.874200898,1.846018868,1.754736167,1.663453465,1.572170764,1.572170764,1.572170764 +12,FL,1,FUEL COMB. ELEC. UTIL.,SO2,647.72744,649.84554,694.24902,818.36292,741.33565,578.80139,579.53873,476.7262929,475.323474,412.123853,400.6324885,323.76278,317.575101,266.9586879,209.6680514,152.3774148,95.08677819,96.51214182,97.93750545,99.36286908,78.37272513,57.38258119,36.39243725,29.192046,17.075104 +12,FL,1,FUEL COMB. ELEC. UTIL.,PM25,5.21211,6.19469,6.5896,4.61958,25.868751,24.766819,30.94423,28.47466286,27.57476875,26.67487463,25.77498052,21.71537189,17.65576325,13.59615462,12.28759451,10.9790344,9.606946192,9.788030962,9.969115733,10.1502005,9.842356567,9.534512632,9.226668696,9.226668696,9.226668696 +12,FL,1,FUEL COMB. ELEC. UTIL.,PM10,9.4552,9.4076,9.9451,7.48736,28.914393,28.139604,37.139501,32.65175587,31.57299982,30.49424378,29.41548773,25.30222964,21.18897154,17.07571345,15.27849827,13.4812831,11.62053983,11.63198024,11.64342065,11.65486106,11.041335,10.42780894,9.81428288,9.81428288,9.81428288 +12,FL,1,FUEL COMB. ELEC. UTIL.,NOX,296.32253,295.5376,301.90205,344.20064,336.36188,316.638623,316.941374,282.4726423,252.655862,218.905079,216.7372796,194.404793,183.876831,168.9159173,135.6265993,102.3372812,69.04796314,70.57159437,72.09522559,73.61885681,69.1039542,64.58905158,60.07414896,36.346641,29.062029 +12,FL,1,FUEL COMB. ELEC. UTIL.,CO,16.90894,20.94324,20.79134,22.04885,48.64843,27.861404,27.833931,57.23004754,53.59873608,49.96742463,46.33611317,44.06740023,41.79868728,39.52997434,38.46804309,37.40611184,36.34418059,37.66307147,38.98196235,40.30085324,37.39889667,34.4969401,31.59498352,31.59498352,31.59498352 +12,FL,1,FUEL COMB. ELEC. UTIL.,NH3,,0.90488,0.90899,1.22024,1.176522,1.181563,1.264792,4.988170358,4.33314165,3.678112943,3.023084236,3.262756855,3.502429473,3.742102092,3.528559057,3.315016022,3.101472987,2.803177546,2.504882106,2.206586665,2.051638584,1.896690503,1.741742421,1.741742421,1.741742421 +12,FL,2,FUEL COMB. INDUSTRIAL,NH3,0.17669,6.44702,6.15797,6.10024,0.189102,0.190151,0.189752,0.265036052,0.270752354,0.276468656,0.282184959,0.30375672,0.325328481,0.346900242,0.471720223,0.596540204,0.709688574,0.7328839,0.756079226,0.779274552,0.629700376,0.480126199,0.330552023,0.330552023,0.330552023 +12,FL,2,FUEL COMB. INDUSTRIAL,SO2,43.04685,53.63522,51.53294,50.05515,41.51806,43.902854,45.350643,44.14630712,42.81545079,41.48459447,40.15373814,31.10946474,22.06519134,13.02091794,17.95911653,22.89731512,15.73220593,14.52513284,13.31805976,12.11098667,9.772277307,7.43356794,5.094858573,5.094858573,5.094858573 +12,FL,2,FUEL COMB. INDUSTRIAL,VOC,6.89109,5.91952,5.67799,5.6188,4.62817,4.544534,4.707246,4.195631621,3.999712542,3.803793463,3.607874384,3.277978351,2.948082318,2.618186285,3.277547892,3.936909498,4.576610105,4.482655766,4.388701428,4.294747089,4.200400833,4.106054577,4.011708321,4.011708321,4.011708321 +12,FL,2,FUEL COMB. INDUSTRIAL,PM25,4.61963,5.37581,5.10403,5.02873,17.820297,17.5731,18.32962,14.97716188,13.81595319,12.6547445,11.49353581,10.48662019,9.479704571,8.47278895,15.62851152,22.78423409,28.98034199,27.93308431,26.88582663,25.83856894,17.92402727,10.0094856,2.094943928,2.094943928,2.094943928 +12,FL,2,FUEL COMB. INDUSTRIAL,CO,27.72466,35.39113,33.71961,33.18359,49.19341,48.243318,50.295415,64.63378403,60.4798751,56.32596617,52.17205723,50.66032083,49.14858442,47.63684801,56.48136337,65.32587873,72.20429407,69.09850937,65.99272467,62.88693996,50.14058613,37.3942323,24.64787847,24.64787847,24.64787847 +12,FL,2,FUEL COMB. INDUSTRIAL,NOX,35.9408,48.36455,47.81995,47.04968,41.72944,41.933697,42.718611,43.04706278,40.68012491,38.31318703,35.94624916,30.3917208,24.83719244,19.28266407,24.73320509,30.18374611,31.30886659,29.36324111,27.41761562,25.47199014,22.44498405,19.41797795,16.39097186,16.39097186,16.39097186 +12,FL,2,FUEL COMB. INDUSTRIAL,PM10,7.23226,7.49091,7.11694,6.99226,19.881227,19.678145,20.516511,18.19186462,16.71973393,15.24760324,13.77547255,12.2394712,10.70346985,9.167468502,18.84165243,28.51583636,33.0623048,32.59797408,32.13364335,31.66931263,21.9173979,12.16548317,2.413568439,2.413568439,2.413568439 +12,FL,3,FUEL COMB. OTHER,VOC,9.14062,24.22188,24.20637,24.12341,23.428071,25.106465,25.121892,12.54475629,10.80781301,9.070869723,7.333926437,6.677734446,6.021542454,5.365350463,5.135353269,4.905356074,4.329891742,4.306392449,4.282893156,4.259393864,6.142768099,8.026142335,9.909516571,9.909516571,9.909516571 +12,FL,3,FUEL COMB. OTHER,PM10,6.31576,10.42109,10.43954,10.32928,11.15049,11.890686,11.922278,7.126597886,7.106041355,7.085484823,7.064928292,6.154240267,5.243552241,4.332864215,4.197765622,4.062667029,3.498145321,3.687130211,3.8761151,4.065099989,5.705021376,7.344942762,8.984864148,8.984864148,8.984864148 +12,FL,3,FUEL COMB. OTHER,PM25,5.89951,10.01387,10.01926,9.97164,10.814017,11.548413,11.573044,6.001733469,5.9895621,5.977390731,5.965219362,5.417088476,4.86895759,4.320826704,4.17295001,4.025073316,3.447949224,3.629766047,3.811582871,3.993399694,5.630286811,7.267173928,8.904061046,8.904061046,8.904061046 +12,FL,3,FUEL COMB. OTHER,CO,45.38885,76.09794,76.05731,75.7558,75.021354,80.368652,80.44306,35.54326782,35.57282293,35.60237803,35.63193314,33.74625419,31.86057523,29.97489628,29.22277654,28.47065681,25.0148887,26.00799526,27.00110182,27.99420837,41.37112374,54.7480391,68.12495447,68.12495447,68.12495447 +12,FL,3,FUEL COMB. OTHER,NH3,0.10659,0.11242,0.11394,0.09517,0.09831,0.100088,0.10186,0.168242211,0.168702352,0.169162493,0.169622634,0.249615476,0.329608318,0.40960116,0.401071994,0.392542828,0.351506065,0.359699485,0.367892905,0.376086326,0.48520358,0.594320834,0.703438087,0.703438087,0.703438087 +12,FL,3,FUEL COMB. OTHER,NOX,20.62812,26.98913,26.81508,25.7853,20.006049,20.330292,20.673014,11.54232002,11.55485347,11.56738692,11.57992038,8.784389585,5.988858792,3.193327999,3.678513011,4.163698023,4.601064,4.81074629,5.020428581,5.230110872,5.327293046,5.42447522,5.521657393,5.521657393,5.521657393 +12,FL,3,FUEL COMB. OTHER,SO2,22.49202,22.49833,23.17527,19.30649,18.416569,18.698822,19.090103,45.49908171,45.51882934,45.53857697,45.5583246,30.49341293,15.42850127,0.363589605,0.639065508,0.91454141,1.182803005,0.882951692,0.58310038,0.283249067,0.296863758,0.310478449,0.32409314,0.32409314,0.32409314 +12,FL,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.88049,0.83252,0.85621,0.87905,1.470085,1.525927,1.593809,1.368783661,1.273225479,1.177667297,1.082109115,0.838311436,0.594513756,0.350716077,0.349840292,0.348964508,0.348088723,0.326493538,0.304898353,0.283303168,0.294223291,0.305143413,0.316063535,0.316063535,0.316063535 +12,FL,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,37.76223,35.39126,35.92706,36.95193,37.26368,37.998913,38.845901,25.79177223,28.56210904,31.33244585,34.10278266,29.81432612,25.52586957,21.23741303,21.47428382,21.71115461,21.9480254,21.5340062,21.11998699,20.70596778,19.97235872,19.23874966,18.50514059,18.50514059,18.50514059 +12,FL,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,26.93433,13.08761,13.13054,13.44028,15.41553,15.757802,16.295464,5.197858153,5.563323809,5.928789465,6.294255121,4.6792697,3.064284279,1.449298858,1.376492713,1.303686568,1.230880423,1.235884146,1.240887868,1.245891591,1.211933625,1.177975659,1.144017693,1.144017693,1.144017693 +12,FL,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,2.29782,3.86658,3.92094,3.98173,2.84344,2.921598,3.010005,2.026422199,1.999152562,1.971882926,1.944613289,1.753171805,1.56173032,1.370288836,1.377782067,1.385275299,1.39276853,1.425087718,1.457406907,1.489726095,1.484866375,1.480006656,1.475146936,1.475146936,1.475146936 +12,FL,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,1.19797,1.0616,1.08775,1.11701,1.739023,1.802675,1.87954,3.264309681,2.689527765,2.114745849,1.539963934,1.171043453,0.802122972,0.433202491,0.427083094,0.420963696,0.414844298,0.429179075,0.443513851,0.457848628,0.460881476,0.463914325,0.466947173,0.466947173,0.466947173 +12,FL,4,CHEMICAL & ALLIED PRODUCT MFG,CO,3.37173,0.576,0.59801,0.60783,1.06445,1.103869,1.150185,0.745317482,0.944054288,1.142791094,1.3415279,0.956085298,0.570642695,0.185200093,0.162514038,0.139827984,0.117141929,0.120601246,0.124060563,0.12751988,0.113203694,0.098887507,0.084571321,0.084571321,0.084571321 +12,FL,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,7.26216,0.99091,0.99603,1.01094,0.422168,0.431725,0.442407,0.95077497,0.787579417,0.624383863,0.46118831,0.531923756,0.602659202,0.673394648,1.00293316,1.332471673,1.662010185,1.484927483,1.30784478,1.130762078,1.040817256,0.950872435,0.860927613,0.860927613,0.860927613 +12,FL,5,METALS PROCESSING,NOX,0.11135,0.09254,0.09858,0.09833,0.11277,0.114842,0.120591,0.194347797,0.170579701,0.146811606,0.12304351,0.118797932,0.114552354,0.110306776,0.100370236,0.090433696,0.080497156,0.113285879,0.146074602,0.178863325,0.180716158,0.18256899,0.184421823,0.184421823,0.184421823 +12,FL,5,METALS PROCESSING,NH3,,,,,0.00173,0.001763,0.001858,0.000453468,0.000562312,0.000671156,0.00078,0.000713621,0.000647243,0.000580864,0.000469725,0.000358587,0.000247448,0.000263037,0.000278627,0.000294216,0.000296958,0.000299699,0.000302441,0.000302441,0.000302441 +12,FL,5,METALS PROCESSING,PM10,0.26665,0.16769,0.18008,0.1784,0.368774,0.375123,0.391059,0.472372683,0.487525096,0.502677508,0.517829921,0.451004994,0.384180066,0.317355139,0.277765179,0.238175219,0.198585259,0.210295535,0.222005811,0.233716087,0.219887153,0.206058219,0.192229286,0.192229286,0.192229286 +12,FL,5,METALS PROCESSING,PM25,0.14012,0.1565,0.16809,0.16644,0.311593,0.316648,0.330447,0.194723174,0.272239752,0.34975633,0.427272908,0.37576947,0.324266032,0.272762594,0.236782123,0.200801652,0.164821181,0.174146691,0.1834722,0.19279771,0.184336324,0.175874938,0.167413552,0.167413552,0.167413552 +12,FL,5,METALS PROCESSING,SO2,1.29897,0.02925,0.03111,0.02962,0.88285,0.899692,0.944304,0.881816906,0.684863507,0.487910109,0.29095671,0.577247172,0.863537634,1.149828096,0.87904695,0.608265803,0.337484657,0.285895742,0.234306826,0.182717911,0.209076255,0.235434598,0.261792942,0.261792942,0.261792942 +12,FL,5,METALS PROCESSING,VOC,0.14416,0.02764,0.02934,0.02931,0.09926,0.100978,0.106461,0.081628,0.141529097,0.201430193,0.26133129,0.227151559,0.192971829,0.158792098,0.126538808,0.094285518,0.062032228,0.076272854,0.090513479,0.104754105,0.095423689,0.086093272,0.076762856,0.076762856,0.076762856 +12,FL,5,METALS PROCESSING,CO,1.89835,0.97196,1.05114,1.02468,1.22021,1.23581,1.295336,1.404503509,1.474648896,1.544794283,1.61493967,1.467157918,1.319376166,1.171594414,1.028360351,0.885126289,0.741892226,0.623965796,0.506039365,0.388112935,0.408352413,0.42859189,0.448831368,0.448831368,0.448831368 +12,FL,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.11299,0.2835,0.2855,0.28136,0.69668,0.711227,0.712205,0.724640757,0.698144662,0.671648567,0.645152472,0.587016805,0.528881137,0.47074547,1.460616697,2.450487925,2.917761598,2.393384518,1.869007438,1.344630357,1.2985626,1.252494843,1.206427086,1.206427086,1.206427086 +12,FL,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +12,FL,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.04468,0.27717,0.26983,0.26225,0.47576,0.490028,0.490025,0.560070538,0.58148512,0.602899702,0.624314284,0.576009138,0.527703992,0.479398846,0.455930797,0.432462748,0.39674464,0.36220683,0.32766902,0.29313121,0.29447547,0.29581973,0.29716399,0.29716399,0.29716399 +12,FL,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.10846,0.19989,0.1944,0.18882,0.238279,0.245418,0.245415,0.25913935,0.243944398,0.228749445,0.213554493,0.192312877,0.171071262,0.149829646,0.135579582,0.121329517,0.106553734,0.10852615,0.110498566,0.112470982,0.10925564,0.106040299,0.102824958,0.102824958,0.102824958 +12,FL,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.06885,0.65673,0.63848,0.62022,0.53205,0.548011,0.548009,0.470273894,0.525600902,0.58092791,0.636254918,0.571286082,0.506317245,0.441348409,0.390916174,0.340483939,0.29000053,0.256896376,0.223792222,0.190688068,0.195854548,0.201021028,0.206187508,0.206187508,0.206187508 +12,FL,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.05985,0.06831,0.0665,0.0646,0.100784,0.103802,0.103801,0.111923963,0.109031593,0.106139223,0.103246853,0.095165025,0.087083198,0.079001371,0.075710607,0.072419843,0.068617299,0.069542995,0.070468691,0.071394387,0.072001909,0.07260943,0.073216951,0.073216951,0.073216951 +12,FL,6,PETROLEUM & RELATED INDUSTRIES,CO,0.03002,0.29401,0.28591,0.27778,0.47911,0.493472,0.493468,1.070588705,1.222123334,1.373657963,1.525192592,1.467542283,1.409891974,1.352241665,1.272121993,1.19200232,1.114588901,1.115809291,1.117029682,1.118250073,1.158119405,1.197988738,1.23785807,1.23785807,1.23785807 +12,FL,7,OTHER INDUSTRIAL PROCESSES,PM25,5.3577,5.75165,5.90401,6.27859,7.039504,6.794672,11.84053956,13.76999239,15.27173417,16.77347596,18.27521774,16.49018323,14.70514872,12.92011421,12.55899653,12.19787885,11.83676117,12.2890824,12.74140363,13.19372485,14.24612141,15.29851797,16.35091453,16.35091453,16.35091453 +12,FL,7,OTHER INDUSTRIAL PROCESSES,SO2,9.70624,13.89356,14.46927,14.56281,12.07049,12.431911,12.842,6.524658389,6.3581533,6.191648212,6.025143123,5.787499471,5.54985582,5.312212169,4.987604454,4.662996739,4.338389024,4.078873944,3.819358864,3.559843784,3.212370669,2.864897555,2.51742444,2.51742444,2.51742444 +12,FL,7,OTHER INDUSTRIAL PROCESSES,PM10,11.04175,16.334,16.61936,18.35452,17.863313,16.169473,21.64338954,25.81277343,27.35910618,28.90543893,30.45177169,32.10414443,33.75651716,35.4088899,33.10804313,30.80719637,28.50634961,30.15921994,31.81209027,33.46496061,34.5332282,35.60149579,36.66976339,36.66976339,36.66976339 +12,FL,7,OTHER INDUSTRIAL PROCESSES,NOX,16.79593,12.19851,12.80717,12.87249,16.63241,17.15459,17.870863,12.31048912,12.42210691,12.53372469,12.64534248,12.17526671,11.70519093,11.23511515,10.45177084,9.668426531,8.885082221,9.558661067,10.23223991,10.90581876,11.24302431,11.58022986,11.91743541,11.91743541,11.91743541 +12,FL,7,OTHER INDUSTRIAL PROCESSES,NH3,0.01647,0.02804,0.02928,0.02952,0.027262,0.02804,0.029059,1.76749805,1.670633367,1.573768683,1.476904,1.056751833,0.636599667,0.2164475,0.26822624,0.32000498,0.37190872,0.366685877,0.361463033,0.35624019,0.336089142,0.315938094,0.295787046,0.295787046,0.295787046 +12,FL,7,OTHER INDUSTRIAL PROCESSES,CO,21.40224,16.32815,16.8689,17.0089,20.32247,20.937563,23.60952788,20.59619685,19.84118084,19.08616483,18.33114883,18.40911656,18.4870843,18.56505204,16.73175697,14.89846191,13.06516684,17.65912421,22.25308158,26.84703894,24.41907478,21.99111063,19.56314647,19.56314647,19.56314647 +12,FL,7,OTHER INDUSTRIAL PROCESSES,VOC,7.92007,7.69798,8.04171,8.16352,18.4152,18.956999,17.88617931,27.29426363,26.38264889,25.47103416,24.55941942,21.99741206,19.43540471,16.87339736,16.07736984,15.28134233,14.48531482,14.03012549,13.57493616,13.11974683,13.3630217,13.60629657,13.84957143,13.84957143,13.84957143 +12,FL,8,SOLVENT UTILIZATION,CO,0.00476,0.00129,0.00134,0.00136,50.25218,49.400273,48.448646,0.00037,0.009092807,0.017815613,0.02653842,0.020163327,0.013788233,0.00741314,0.00607736,0.00474158,0.0034058,0.005346733,0.007287667,0.0092286,0.009511587,0.009794573,0.01007756,0.01007756,0.01007756 +12,FL,8,SOLVENT UTILIZATION,NH3,,,,,0.00195,0.002083,0.002274,,0,0,,0.000187333,0.000374667,0.000562,0.000374667,0.000187333,0,0,0,0,0,0,0,0,0 +12,FL,8,SOLVENT UTILIZATION,NOX,0.0206,0.00821,0.00858,0.00869,1.43478,1.410454,1.383277,0.00111231,0.001058473,0.001004637,0.0009508,0.001111591,0.001272383,0.001433174,0.001495449,0.001557725,0.00162,0.001706333,0.001792667,0.001879,0.001962752,0.002046503,0.002130255,0.002130255,0.002130255 +12,FL,8,SOLVENT UTILIZATION,PM10,0.00325,0.10513,0.1125,0.1151,5.59681,5.507,5.407848,0.116144632,0.11425816,0.112371687,0.110485214,0.089990343,0.069495473,0.049000602,0.043901992,0.038803383,0.033704773,0.031875573,0.030046372,0.028217172,0.037719452,0.047221733,0.056724013,0.056724013,0.056724013 +12,FL,8,SOLVENT UTILIZATION,PM25,0.00276,0.08741,0.09352,0.0957,5.59681,5.507,5.407848,0.071032324,0.076140835,0.081249346,0.086357857,0.073905439,0.06145302,0.049000602,0.042762099,0.036523596,0.030285093,0.028331215,0.026377338,0.02442346,0.034444881,0.044466301,0.054487721,0.054487721,0.054487721 +12,FL,8,SOLVENT UTILIZATION,SO2,0.00007,0.00002,0.00002,0.00002,0.0099,0.009732,0.009544,0.00000001,8.57E-08,1.61E-07,0.000000237,0.000000158,0.000000079,,2.33E-08,4.67E-08,0.00000007,0.000000064,0.000000058,0.000000052,3.47E-08,1.73E-08,0,0,0 +12,FL,8,SOLVENT UTILIZATION,VOC,208.53547,239.65342,246.36677,231.10874,220.57755,215.923409,220.944824,299.6296245,299.64212,299.6546156,299.6671111,246.7662412,193.8653713,140.9645014,144.4686696,147.9728377,151.4769784,161.2062682,170.935558,180.6648478,179.3188502,177.9728526,176.626855,176.626855,176.626855 +12,FL,9,STORAGE & TRANSPORT,PM10,1.53885,1.7789,1.87363,1.90567,11.174315,11.344521,12.284216,1.568296997,1.585221354,1.60214571,1.619070067,1.586161851,1.553253635,1.520345419,1.418794721,1.317244022,1.215693323,1.17263051,1.129567696,1.086504883,1.083940683,1.081376483,1.078812284,1.078812284,1.078812284 +12,FL,9,STORAGE & TRANSPORT,VOC,67.85185,65.98255,66.16752,66.18983,65.06551,64.435721,64.993409,120.1403059,120.1759772,120.2116485,120.2473198,115.5803172,110.9133145,106.2463119,108.4732493,110.7001867,101.9658576,78.25095872,54.53605987,30.82116101,31.73909984,32.65703866,33.57497749,33.57497749,33.57497749 +12,FL,9,STORAGE & TRANSPORT,PM25,0.73251,0.65512,0.68943,0.70017,7.564445,7.676377,8.340074,0.610234428,0.642107616,0.673980805,0.705853993,0.75744856,0.809043126,0.860637693,0.778208388,0.695779084,0.613349779,0.566582173,0.519814567,0.473046961,0.509262804,0.545478647,0.58169449,0.58169449,0.58169449 +12,FL,9,STORAGE & TRANSPORT,NH3,,0.01019,0.0104,0.0106,,,,,0,0,,0.010459167,0.020918333,0.0313775,0.033266233,0.035154967,0.0370437,0.0377041,0.0383645,0.0390249,0.041865767,0.044706633,0.0475475,0.0475475,0.0475475 +12,FL,9,STORAGE & TRANSPORT,CO,0.00146,0.02409,0.02563,0.02623,0.08635,0.088306,0.090782,0.146632375,0.161791582,0.176950789,0.192109996,0.185046394,0.177982792,0.17091919,0.148496763,0.126074337,0.10365191,0.10481547,0.10597903,0.10714259,0.109724391,0.112306193,0.114887994,0.114887994,0.114887994 +12,FL,9,STORAGE & TRANSPORT,NOX,0.00575,0.00583,0.00619,0.00634,0.02552,0.026084,0.026821,0.558142384,0.565257402,0.572372419,0.579487436,0.458459838,0.33743224,0.216404642,0.195693528,0.174982414,0.1542713,0.117655175,0.081039051,0.044422926,0.04768934,0.050955753,0.054222167,0.054222167,0.054222167 +12,FL,9,STORAGE & TRANSPORT,SO2,0.12946,0.05086,0.05309,0.05433,0.03792,0.038806,0.039542,0.036660177,0.036490885,0.036321593,0.036152301,0.036123903,0.036095504,0.036067105,0.033754972,0.031442838,0.029130705,0.025963776,0.022796848,0.019629919,0.018162897,0.016695876,0.015228854,0.015228854,0.015228854 +12,FL,10,WASTE DISPOSAL & RECYCLING,CO,5.53306,164.17793,165.79889,176.60317,175.46511,61.970781,62.009474,46.55106572,46.70673063,46.86239554,47.01806044,47.9830778,48.94809516,49.91311252,42.59015715,35.26720178,27.94424641,60.45998942,92.97573244,125.4914755,110.8190146,96.14655371,81.47409285,81.47409285,81.47409285 +12,FL,10,WASTE DISPOSAL & RECYCLING,NH3,3.026,2.91735,2.95414,3.01399,3.06457,3.098283,3.147312,0.349439407,0.357463214,0.365487022,0.373510829,0.392754751,0.411998673,0.431242595,0.41790533,0.404568065,0.39444055,0.566802697,0.739164843,0.91152699,0.895379286,0.879231581,0.863083877,0.863083877,0.863083877 +12,FL,10,WASTE DISPOSAL & RECYCLING,NOX,0.91356,5.78355,5.88073,6.2257,6.4303,3.109246,3.122553,2.651534614,5.486394226,8.321253837,11.15611345,8.107485366,5.058857283,2.0102292,1.753402622,1.496576044,1.239749466,2.279169919,3.318590371,4.358010824,3.855972092,3.35393336,2.851894629,2.851894629,2.851894629 +12,FL,10,WASTE DISPOSAL & RECYCLING,PM10,5.86311,20.50699,20.96347,22.17063,21.977359,10.822274,10.827448,9.197805386,9.205512512,9.213219638,9.220926764,8.530009062,7.83909136,7.148173658,6.14923438,5.150295102,4.151355824,7.660682006,11.17000819,14.67933437,13.79245422,12.90557408,12.01869393,12.01869393,12.01869393 +12,FL,10,WASTE DISPOSAL & RECYCLING,PM25,5.20879,20.02743,20.45006,21.64291,21.430152,10.246388,10.249861,8.645140908,8.649308575,8.653476241,8.657643908,7.749997656,6.842351403,5.934705151,5.120477434,4.306249716,3.492021999,6.254770585,9.017519171,11.78026776,11.49037888,11.20049,10.91060111,10.91060111,10.91060111 +12,FL,10,WASTE DISPOSAL & RECYCLING,SO2,0.70753,0.62237,0.64497,0.66005,0.68464,0.699672,0.708758,1.104794243,1.080443624,1.056093005,1.031742385,1.764945637,2.498148888,3.231352139,2.56223493,1.893117721,1.224000512,1.536570255,1.849139999,2.161709742,2.396408591,2.63110744,2.86580629,2.86580629,2.86580629 +12,FL,10,WASTE DISPOSAL & RECYCLING,VOC,6.00364,16.44759,16.82188,17.69734,19.33184,11.798381,11.860812,8.550526585,8.498959602,8.447392618,8.395825635,7.088867422,5.78190921,4.474950997,3.880401176,3.285851354,2.707445233,6.048479881,9.389514529,12.73054918,11.88897777,11.04740635,10.20583494,10.20583494,10.20583494 +12,FL,11,HIGHWAY VEHICLES,CO,5354.38817,3823.98838,3710.72177,3605.8159,3379.56368,3668.43858,3570.66448,3466.03484,3278.521301,3091.007761,2903.494222,2688.140243,2472.786264,2067.041668,1912.569758,1757.037803,1785.396491,1757.496154,1729.595818,1701.695482,1677.027545,1412.279283,1254.926042,1303.936798,1261.570657 +12,FL,11,HIGHWAY VEHICLES,SO2,22.61544,15.27266,15.83383,16.13455,16.58062,16.32443,16.75099,24.1461674,20.73456759,17.32296778,13.91136797,8.261173726,2.610979487,2.463100556,2.35285655,2.355471311,2.104128759,2.122020611,2.139912464,2.157804316,2.204848469,2.437075688,2.049221898,0.992236649,0.785696693 +12,FL,11,HIGHWAY VEHICLES,VOC,520.81675,345.98605,338.25283,336.86681,328.41222,349.66593,336.4336,271.6420163,259.1775934,246.7131706,234.2487477,236.9705707,239.6923937,204.0737182,205.4728314,185.5954601,185.0493765,172.1624715,159.2755665,146.3886615,138.0297176,116.0253192,104.0444791,103.3125329,97.00555528 +12,FL,11,HIGHWAY VEHICLES,NOX,434.42755,424.92962,434.15634,432.17511,424.96811,442.57431,423.44507,665.3922345,630.0274406,594.6626467,559.2978528,531.4279441,503.5580354,449.8227241,379.0110848,322.0370925,308.7003707,293.2493459,277.7983212,262.3472965,236.517769,198.1598813,201.7511598,163.2363173,144.1741436 +12,FL,11,HIGHWAY VEHICLES,NH3,7.44936,12.43685,14.05793,13.64944,14.16011,15.34161,15.81791,9.490151055,9.477738693,9.46532633,9.452913968,9.566619763,9.680325559,8.790069011,8.252511887,7.728349778,7.46578798,7.156189302,6.846590625,6.536991947,6.327872138,6.480066657,5.86193511,5.683282493,5.691233981 +12,FL,11,HIGHWAY VEHICLES,PM10,17.14418,13.87599,13.47333,12.79543,12.25308,12.04612,11.52409,24.17937891,24.36345403,24.54752916,24.73160429,23.85937802,22.98715175,20.49144073,17.12821084,14.7636974,23.43718078,22.31732687,21.19747297,20.07761906,19.41039463,15.78776823,15.33484279,18.10984691,17.9389593 +12,FL,11,HIGHWAY VEHICLES,PM25,14.24238,10.94281,10.49179,9.86268,9.31049,8.99742,8.48099,19.39731365,19.40331595,19.40931824,19.41532054,17.86592507,16.3165296,14.10310573,11.25854945,8.992539192,9.666649354,9.441474036,9.216298718,8.9911234,8.118498261,6.284309326,6.722589523,6.307617754,5.87385568 +12,FL,12,OFF-HIGHWAY,VOC,190.56671,218.28593,204.26369,197.64713,196.47161,194.46263,192.06387,242.5840496,234.4347388,226.2854281,218.1361174,208.8201704,199.5042233,187.4981482,183.4710005,173.5493299,166.5819106,152.8962931,139.2106756,125.525058,117.2322641,106.1475842,100.6466762,97.46810705,94.28953785 +12,FL,12,OFF-HIGHWAY,SO2,12.99221,15.09283,15.55334,16.06519,16.73812,16.53498,16.73541,85.5602074,67.55322601,49.54624462,31.53926322,28.78428634,26.02930945,20.8138939,23.47232404,10.86799586,20.05092093,16.8263104,13.60169986,10.37708932,7.883392431,2.859611307,2.89599865,2.967745171,3.039491692 +12,FL,12,OFF-HIGHWAY,PM25,13.1145,14.47053,14.41898,14.34295,14.35586,14.0683,13.92155,23.30186296,20.75801068,18.21415841,15.67030614,15.26831631,14.86632647,13.22950834,13.88461727,12.26878761,13.18132693,12.32037393,11.45942093,10.59846793,9.62553525,8.034261481,7.679669893,7.415889363,7.152108833 +12,FL,12,OFF-HIGHWAY,PM10,14.31721,15.79218,15.72918,15.64047,15.66623,15.35302,15.19327,24.86718633,22.1148864,19.36258647,16.61028655,16.22028815,15.83028976,14.41158232,15.08553288,13.34732582,14.0089297,13.08735885,12.165788,11.24421715,10.2140019,8.520535996,8.153571413,7.881812089,7.610052765 +12,FL,12,OFF-HIGHWAY,NOX,120.75491,134.56712,135.80496,136.23003,142.59493,139.60194,139.38126,278.1988297,245.6416672,213.0845046,180.527342,176.5958248,172.6643076,159.9092314,177.5237508,174.9632086,159.7958617,157.936585,156.0773084,154.2180317,137.4433726,106.5485508,103.8940546,100.92842,97.96278539 +12,FL,12,OFF-HIGHWAY,NH3,0.91982,1.13587,1.1524,1.18867,0.15932,0.15932,0.15932,0.135935179,0.137692926,0.139450673,0.14120842,0.14536781,0.149527201,0.162906243,0.153867993,0.156107498,0.171864947,0.170095136,0.168325325,0.166555514,0.160931388,0.136244383,0.149683135,0.151295824,0.152908512 +12,FL,12,OFF-HIGHWAY,CO,1481.70378,1713.20677,1658.29792,1661.33941,1680.03448,1700.00508,1737.73468,1820.752235,1764.104677,1707.457119,1650.809561,1588.047933,1525.286305,1369.886225,1210.298944,1142.53745,1120.489967,1086.202394,1051.914821,1017.627247,1000.522188,960.3115249,966.3120697,975.9779953,985.6439209 +12,FL,14,MISCELLANEOUS,PM25,162.38135,95.89392,101.26845,104.19776,251.45657,167.18874,220.8034375,115.6190606,114.7972569,113.9754532,113.1536495,87.36097386,61.56829818,35.77562251,35.5033142,35.23100589,34.95869759,49.9534523,64.94820701,79.94296172,68.84915889,57.75535606,46.66155324,46.66155324,46.66155324 +12,FL,14,MISCELLANEOUS,SO2,0.60294,0.12193,0.17015,0.16165,11.13062,6.06447,11.82499,13.88914012,11.3502573,8.811374471,6.272491645,4.26207346,2.251655275,0.24123709,0.413218025,0.58519896,0.757179896,1.378855867,2.000531839,2.622207811,2.0615816,1.500955389,0.940329179,0.940329179,0.940329179 +12,FL,14,MISCELLANEOUS,PM10,617.4724,404.02821,395.36608,414.33301,655.04175,475.488732,515.5392857,391.8343508,390.864608,389.8948652,388.9251224,338.4786164,288.0321103,237.5856042,235.466824,233.3480438,231.2292635,349.1292077,467.0291518,584.929096,491.6915184,398.4539408,305.2163632,305.2163632,305.2163632 +12,FL,14,MISCELLANEOUS,NOX,16.98577,4.64684,6.12963,5.91313,41.77386,23.31501,44.343062,9.103908462,9.376963342,9.650018223,9.923073104,7.197740271,4.472407437,1.747074604,1.686363933,1.625653262,1.564942591,3.051238366,4.537534142,6.023829917,4.641430951,3.259031985,1.876633019,1.876633019,1.876633019 +12,FL,14,MISCELLANEOUS,NH3,65.18789,66.06839,65.63386,66.90295,75.52123,72.14208,53.54818754,51.06619441,50.8481812,50.63016799,50.41215478,44.72015925,39.02816372,33.33616819,34.84830166,36.36043512,37.87256858,46.95958754,56.0466065,65.13362546,62.56492633,59.99622721,57.42752808,57.42752808,57.42752808 +12,FL,14,MISCELLANEOUS,CO,520.9051,196.6526,265.10884,256.87804,1942.47546,1081.990631,2062.117886,981.2552376,961.695366,942.1354944,922.5756228,625.9366782,329.2977336,32.65878893,32.54747654,32.43616415,32.32485175,73.28910268,114.2533536,155.2176045,117.1089079,79.00021131,40.8915147,40.8915147,40.8915147 +12,FL,14,MISCELLANEOUS,VOC,42.63962,21.86306,27.05757,26.15108,97.47255,57.069141,103.288105,217.6576179,214.7717672,211.8859164,209.0000656,140.528659,72.05725243,3.585845841,3.203040041,2.820234242,2.437428442,5.720476723,9.003525005,12.28657329,10.67866309,9.070752898,7.462842704,7.462842704,7.462842704 +12,FL,15,WILDFIRES,NH3,,,,,,,,0.168086089,0.168086089,0.168086089,0.104830988,0.104830988,0.104830988,3.159303901,3.159303901,3.159303901,3.48240165,3.48240165,3.48240165,1.133462207,1.133462207,1.133462207,2.542935557,2.542935557,2.542935557 +12,FL,15,WILDFIRES,CO,,,,,,,,10.92089,10.92089,10.92089,6.354540802,6.354540802,6.354540802,193.2089288,193.2089288,193.2089288,210.2295597,210.2295597,210.2295597,68.29553838,68.29553838,68.29553838,153.6721822,153.6721822,153.6721822 +12,FL,15,WILDFIRES,NOX,,,,,,,,0.121104083,0.121104083,0.121104083,0.114329334,0.114329334,0.114329334,2.031217386,2.031217386,2.031217386,4.517369396,4.517369396,4.517369396,1.578392019,1.578392019,1.578392019,3.166838279,3.166838279,3.166838279 +12,FL,15,WILDFIRES,PM10,,,,,,,,1.05602,1.05602,1.05602,0.671109303,0.671109303,0.671109303,19.11457688,19.11457688,19.11457688,22.85894159,22.85894159,22.85894159,7.525010807,7.525010807,7.525010807,16.58849179,16.58849179,16.58849179 +12,FL,15,WILDFIRES,PM25,,,,,,,,0.8928,0.8928,0.8928,0.568736698,0.568736698,0.568736698,16.19878872,16.19878872,16.19878872,19.37197884,19.37197884,19.37197884,6.377126058,6.377126058,6.377126058,14.05804416,14.05804416,14.05804416 +12,FL,15,WILDFIRES,SO2,,,,,,,,0.069252473,0.069252473,0.069252473,0.056200951,0.056200951,0.056200951,1.266937201,1.266937201,1.266937201,2.084021218,2.084021218,2.084021218,0.710932168,0.710932168,0.710932168,1.482031319,1.482031319,1.482031319 +12,FL,15,WILDFIRES,VOC,,,,,,,,2.49972,2.49972,2.49972,1.506945454,1.506945454,1.506945454,45.4150047,45.41500469,45.41500469,50.06003962,50.06003962,50.06003962,16.2935607,16.2935607,16.2935607,36.55478369,36.55478369,36.55478369 +12,FL,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,63.06108354,69.41003889,75.75899424,82.10794959,90.50385521,98.89976083,107.2956664,94.51529987,81.73493329,68.95456671,68.95456671,68.95456671 +12,FL,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,596.454513,647.578886,698.7032589,749.8276319,825.8759441,901.9242564,977.9725686,871.8365499,765.7005311,659.5645124,659.5645124,659.5645124 +12,FL,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,141.4675897,153.8883607,166.3091318,178.7299028,196.8782925,215.0266822,233.1750719,207.5142182,181.8533645,156.1925108,156.1925108,156.1925108 +12,FL,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,53.44159788,58.82206797,64.20253806,69.58300815,76.69818429,83.81336043,90.92853656,80.09771517,69.26689378,58.43607238,58.43607238,58.43607238 +12,FL,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,10.80845022,12.79163342,14.77481663,16.75799983,18.53427342,20.31054701,22.0868206,18.4178411,14.74886159,11.07988208,11.07988208,11.07988208 +12,FL,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,9.84122661,10.70527311,11.5693196,12.4333661,13.6958683,14.9583705,16.2208727,14.43577022,12.65066774,10.86556526,10.86556526,10.86556526 +12,FL,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,5.298784716,6.076077038,6.853369359,7.630661681,8.42804195,9.22542222,10.02280249,8.54611028,7.069418069,5.592725858,5.592725858,5.592725858 +13,GA,1,FUEL COMB. ELEC. UTIL.,SO2,875.4505,474.82484,512.66812,536.2236,513.619843,519.927654,489.95832,514.6594771,540.715618,547.410941,618.1778629,636.830267,635.470333,517.327702,407.5553133,297.7819347,188.008556,147.1729927,106.3374295,65.5018662,48.70599257,31.91011893,15.1142453,13.854675,12.349669 +13,GA,1,FUEL COMB. ELEC. UTIL.,PM25,3.37332,3.57988,4.03728,4.05725,24.994341,25.430503,24.328156,25.45744497,26.44225066,27.42705634,28.41186203,20.9665574,13.52125277,6.075948142,6.150088953,6.224229763,6.298370574,5.370324302,4.442278031,3.514231759,2.996786518,2.479341276,1.961896034,1.961896034,1.961896034 +13,GA,1,FUEL COMB. ELEC. UTIL.,VOC,0.98053,0.8879,0.93525,0.96678,1.151981,1.077963,0.974901,1.246641176,1.308286248,1.369931321,1.431576394,1.510031169,1.588485945,1.66694072,1.50948858,1.35203644,1.1945843,1.1786983,1.1628123,1.1469263,1.1367723,1.1266183,1.1164643,1.1164643,1.1164643 +13,GA,1,FUEL COMB. ELEC. UTIL.,PM10,9.04188,7.63736,8.51127,8.55328,31.209478,30.243544,28.992,31.73677653,32.93819793,34.13961933,35.34104072,27.83571031,20.33037989,12.82504948,11.57052994,10.31601041,9.061490876,7.598406003,6.13532113,4.672236257,3.849296111,3.026355965,2.20341582,2.20341582,2.20341582 +13,GA,1,FUEL COMB. ELEC. UTIL.,NOX,228.80445,163.87427,178.73613,179.84596,176.169852,185.187725,162.055817,147.6024163,104.433497,100.530774,112.805367,111.911978,107.233475,108.657396,91.22273447,73.62991293,56.0370914,50.01735553,43.99761967,37.9778838,33.7614783,29.5450728,25.3286673,25.438692,21.147649 +13,GA,1,FUEL COMB. ELEC. UTIL.,CO,8.41087,7.36811,7.75039,7.86847,9.905041,8.940401,8.188641,9.824466767,10.85054414,11.8766215,12.90269887,13.01892292,13.13514696,13.251371,13.34863843,13.44590587,13.5431733,12.3898521,11.2365309,10.0832097,9.270682667,8.458155633,7.6456286,7.6456286,7.6456286 +13,GA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01602,0.01706,0.035,0.035487,0.034525,0.022096,0.5934638,0.604236912,0.615010024,0.625783136,0.769715097,0.913647058,1.057579018,0.951311951,0.845044883,0.738777816,0.718884808,0.6989918,0.679098793,0.699736235,0.720373677,0.741011119,0.741011119,0.741011119 +13,GA,2,FUEL COMB. INDUSTRIAL,VOC,7.75319,7.83063,7.66145,7.82141,10.210451,10.156151,10.59815,3.912164784,3.891009301,3.869853817,3.848698334,3.051275889,2.253853445,1.456431,1.550051118,1.643671236,1.737291353,1.858135355,1.978979356,2.099823358,2.052135752,2.004448147,1.956760541,1.956760541,1.956760541 +13,GA,2,FUEL COMB. INDUSTRIAL,CO,28.13028,28.58178,27.90764,28.26976,58.034291,58.832245,60.836922,59.42818661,55.03331925,50.63845189,46.24358453,36.61583235,26.98808018,17.360328,18.85258043,20.34483285,21.83708528,24.03644342,26.23580156,28.4351597,24.24412972,20.05309975,15.86206977,15.86206977,15.86206977 +13,GA,2,FUEL COMB. INDUSTRIAL,NH3,0.31771,0.30357,0.29501,0.29338,0.300094,0.313029,0.316026,0.027501063,0.039092773,0.050684482,0.062276192,0.065713795,0.069151397,0.072589,0.133699038,0.194809076,0.255919114,0.23500327,0.214087426,0.193171582,0.252604486,0.31203739,0.371470294,0.371470294,0.371470294 +13,GA,2,FUEL COMB. INDUSTRIAL,NOX,53.79171,63.5032,62.82217,62.69591,95.268953,96.621307,98.979556,52.68001022,51.93408771,51.18816521,50.4422427,40.3075088,30.1727749,20.038041,20.78334424,21.52864747,22.27395071,22.13665071,21.99935071,21.8620507,21.4766651,21.09127949,20.70589389,20.70589389,20.70589389 +13,GA,2,FUEL COMB. INDUSTRIAL,PM25,9.36299,9.55605,9.41744,9.51323,21.65566,21.841694,22.448693,7.752566044,7.943004498,8.133442953,8.323881407,6.495076041,4.666270676,2.83746531,2.808889577,2.780313845,2.751524038,2.716167229,2.68081042,2.645453611,2.673790784,2.702127956,2.730465129,2.730465129,2.730465129 +13,GA,2,FUEL COMB. INDUSTRIAL,SO2,54.57031,54.76955,53.17807,52.56538,47.648902,49.921333,51.550389,88.61671669,91.43671854,94.25672039,97.07672224,73.88232783,50.68793341,27.493539,25.44848501,23.40343103,21.35837704,19.14086816,16.92335928,14.7058504,12.34808549,9.990320577,7.632555666,7.632555666,7.632555666 +13,GA,2,FUEL COMB. INDUSTRIAL,PM10,12.75562,12.84513,12.64878,12.74971,26.850852,27.088097,27.93713,12.34563384,12.44229585,12.53895787,12.63561989,9.64966675,6.66371361,3.67776047,3.517933951,3.358107432,3.198280913,3.17462988,3.150978847,3.127327814,3.104114746,3.080901678,3.05768861,3.05768861,3.05768861 +13,GA,3,FUEL COMB. OTHER,CO,101.26918,71.6951,71.59745,71.30175,57.065067,76.360104,76.447831,58.75768897,58.72193969,58.68619041,58.65044113,44.63119903,30.61195693,16.59271484,18.24392523,19.89513562,20.02111135,25.28002128,30.53893122,35.79784115,41.82939596,47.86095077,53.89250557,53.89250557,53.89250557 +13,GA,3,FUEL COMB. OTHER,NH3,0.07212,0.08676,0.0847,0.07689,0.082295,0.083668,0.085061,0.027381249,0.027381249,0.027381249,0.027381249,0.423770621,0.820159993,1.216549364,1.25540861,1.294267855,1.314790954,1.405552545,1.496314135,1.587075725,1.569804334,1.552532943,1.535261552,1.535261552,1.535261552 +13,GA,3,FUEL COMB. OTHER,NOX,17.75155,13.89697,13.68277,12.9732,11.622786,12.110413,12.307257,15.23792554,14.52416728,13.81040902,13.09665076,11.61290034,10.12914992,8.6453995,9.516735888,10.38807228,11.23284513,11.56206706,11.89128899,12.22051092,11.2579461,10.29538128,9.332816458,9.332816458,9.332816458 +13,GA,3,FUEL COMB. OTHER,PM10,12.98842,9.36903,9.35725,9.32613,10.970776,11.670555,11.704103,7.007307829,7.016915802,7.026523774,7.036131746,5.329629105,3.623126465,1.916623824,2.093147098,2.269670371,2.203699365,2.909410799,3.615122233,4.320833667,5.094584684,5.868335702,6.642086719,6.642086719,6.642086719 +13,GA,3,FUEL COMB. OTHER,PM25,12.94271,9.32225,9.30903,9.28374,10.912449,11.61098,11.643326,6.850540683,6.880752876,6.910965069,6.941177262,5.263200311,3.585223361,1.90724641,2.069137506,2.231028602,2.151721686,2.862983189,3.574244692,4.285506195,5.06549895,5.845491705,6.62548446,6.62548446,6.62548446 +13,GA,3,FUEL COMB. OTHER,SO2,4.16391,4.11015,4.23928,3.69058,3.975412,4.075466,4.156606,10.08664943,7.573390503,5.060131575,2.546872646,4.994416427,7.441960207,9.889503987,8.147548066,6.405592144,4.659611138,4.097043078,3.534475018,2.971906958,2.104855745,1.237804532,0.370753319,0.370753319,0.370753319 +13,GA,3,FUEL COMB. OTHER,VOC,19.14757,21.27141,21.25675,21.21498,26.788628,22.51702,22.526744,16.30103371,14.55439159,12.80774947,11.06110735,8.30439191,5.547676471,2.790961032,2.944327425,3.097693817,3.055518899,3.80761474,4.559710581,5.311806423,6.181518428,7.051230433,7.920942438,7.920942438,7.920942438 +13,GA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,3.364,1.251,1.29781,1.36861,1.43583,1.476685,1.505532,2.721248742,2.558958495,2.396668247,2.234378,2.136148,2.037918,1.939688,1.819464,1.69924,1.580016,1.405719,1.231422,1.057125,1.015742,0.974359,0.932976,0.932976,0.932976 +13,GA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,9.96653,6.8647,6.97176,7.24549,6.890007,6.99896,7.192795,5.507979428,5.688099618,5.868219809,6.04834,5.02326887,3.99819774,2.97312661,2.7550594,2.53699219,2.57092498,2.003458987,1.435992993,0.868527,0.817270967,0.766014933,0.7147589,0.7147589,0.7147589 +13,GA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,1.55089,1.47295,1.51816,1.59076,2.792531,2.85318,2.892014,0.398498885,0.394686563,0.390874242,0.38706192,0.372415382,0.357768845,0.343122307,0.36465871,0.386195114,0.407731517,0.370814111,0.333896706,0.2969793,0.291225455,0.28547161,0.279717765,0.279717765,0.279717765 +13,GA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,1.72362,1.63762,1.68806,1.76825,2.977262,3.042799,3.085116,0.545822808,0.520071728,0.494320648,0.468569568,0.459370712,0.450171856,0.440973,0.4526647,0.4643564,0.4760481,0.427694874,0.379341648,0.330988422,0.335704517,0.340420612,0.345136707,0.345136707,0.345136707 +13,GA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,2.153,2.2553,2.32844,2.43464,2.42768,2.494845,2.541064,2.277098996,2.221525997,2.165952999,2.11038,2.214703333,2.319026667,2.42335,1.898751333,1.374152667,0.958554,0.903194333,0.847834667,0.792475,0.701793667,0.611112333,0.520431,0.520431,0.520431 +13,GA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,13.54051,13.56651,14.00893,14.79537,4.33446,4.455824,4.538181,0.920143,1.185986,1.451829,1.717672,1.763618,1.809564,1.85551,2.0291105,2.202711,2.3763115,2.35604,2.3357685,2.315497,2.234311333,2.153125667,2.07194,2.07194,2.07194 +13,GA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.001,0.001,0.00103,0.00107,0.0011,0.001129,0.00115,5.387011252,9.139179501,12.89134775,16.643516,11.653716,6.663916,1.674116,1.262135667,0.850155333,0.502232,0.566011333,0.629790667,0.69357,0.68751,0.68145,0.67539,0.67539,0.67539 +13,GA,5,METALS PROCESSING,SO2,1.44511,1.63097,1.76686,1.81233,1.8398,1.887005,1.965939,0.0002061,0.000494067,0.000782033,0.00107,0.001031667,0.000993333,0.000955,0.0314402,0.0619254,0.0924106,0.089056267,0.085701933,0.0823476,0.0790957,0.0758438,0.0725919,0.0725919,0.0725919 +13,GA,5,METALS PROCESSING,CO,0.91362,2.50254,2.69475,2.75405,1.04755,1.07358,1.114994,0.32962725,0.3289545,0.32828175,0.327609,0.326156,0.324703,0.32325,0.330234933,0.337219867,0.3442048,0.3272071,0.3102094,0.2932117,0.2869688,0.2807259,0.274483,0.274483,0.274483 +13,GA,5,METALS PROCESSING,VOC,0.59782,0.39358,0.42045,0.43118,0.7506,0.767048,0.812057,0.069795596,0.087604731,0.105413865,0.123223,0.087402,0.051581,0.01576,0.0296707,0.0435814,0.0574921,0.045061133,0.032630167,0.0201992,0.024470533,0.028741867,0.0330132,0.0330132,0.0330132 +13,GA,5,METALS PROCESSING,PM25,1.35487,1.61126,1.74218,1.79059,4.084387,4.201494,4.373424,0.085725889,0.076618864,0.067511838,0.058404813,0.044439713,0.030474612,0.016509512,0.038207855,0.059906197,0.081604539,0.082591654,0.083578769,0.084565884,0.077120232,0.069674581,0.062228929,0.062228929,0.062228929 +13,GA,5,METALS PROCESSING,PM10,2.87257,3.37224,3.64428,3.74717,6.076467,6.250922,6.506243,0.138595821,0.131235189,0.123874557,0.116513925,0.086928617,0.057343308,0.027758,0.070546037,0.113334073,0.15612211,0.140521867,0.124921623,0.10932138,0.104863963,0.100406546,0.095949129,0.095949129,0.095949129 +13,GA,5,METALS PROCESSING,NOX,0.47036,0.70356,0.75277,0.77243,0.667536,0.685563,0.711231,0.05962427,0.063277513,0.066930757,0.070584,0.082016,0.093448,0.10488,0.119547533,0.134215067,0.1488826,0.1540555,0.1592284,0.1644013,0.168199933,0.171998567,0.1757972,0.1757972,0.1757972 +13,GA,5,METALS PROCESSING,NH3,,,,,0.000028,0.000028,0.00003,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +13,GA,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.1575,0.37904,0.37994,0.37984,0.1639,0.164045,0.164639,0.0031,0.016286667,0.029473333,0.04266,0.030794667,0.018929333,0.007064,0.004709333,0.002354667,0,0.001000667,0.002001333,0.003002,0.005661333,0.008320667,0.01098,0.01098,0.01098 +13,GA,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.81715,0.3017,0.30184,0.30123,0.235123,0.233511,0.233871,0.093452243,0.116447576,0.13944291,0.162438243,0.177961195,0.193484148,0.2090071,0.183998291,0.158989483,0.1322519,0.1086296,0.0850073,0.061385,0.073484667,0.085584333,0.097684,0.097684,0.097684 +13,GA,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.2635,0.20663,0.20672,0.20577,0.20462,0.204169,0.204404,0.06754,0.073823333,0.080106667,0.08639,0.086173333,0.085956667,0.08574,0.05716,0.02858,0,0.006786667,0.013573333,0.02036,0.023733667,0.027107333,0.030481,0.030481,0.030481 +13,GA,6,PETROLEUM & RELATED INDUSTRIES,CO,0.37639,0.76422,0.76429,0.76387,0.37951,0.379316,0.37944,0.040991,0.053980667,0.066970333,0.07996,0.075064667,0.070169333,0.065274,0.045582667,0.025891333,0.0062,0.009088,0.011976,0.014864,0.023181,0.031498,0.039815,0.039815,0.039815 +13,GA,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.197,0.12476,0.12514,0.12485,5.003799,5.005222,5.007338,0.0685572,0.10780247,0.14704774,0.18629301,0.163844673,0.141396337,0.118948,0.087000333,0.055052667,0.023105,0.029909333,0.036713667,0.043518,0.049973533,0.056429067,0.0628846,0.0628846,0.0628846 +13,GA,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,0,0,0,0,0,0 +13,GA,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.09121,0.03647,0.03648,0.03634,4.186119,4.187321,4.188923,0.0442272,0.069619606,0.095012011,0.120404417,0.112177725,0.103951033,0.095724341,0.067458681,0.03919302,0.01092736,0.01974741,0.028567461,0.037387511,0.038279726,0.039171941,0.040064157,0.040064157,0.040064157 +13,GA,7,OTHER INDUSTRIAL PROCESSES,VOC,15.63611,13.77917,14.63163,15.08474,18.261072,18.890028,15.36608097,23.77427919,24.2013961,24.62851302,25.05562993,24.35694785,23.65826578,22.9595837,22.89390971,22.82823573,22.76251874,23.24594535,23.72937196,24.21279857,24.32430588,24.4358132,24.54732051,24.54732051,24.54732051 +13,GA,7,OTHER INDUSTRIAL PROCESSES,SO2,21.37599,21.34183,22.53258,23.22352,31.926431,33.041306,33.958758,9.615804408,9.671747746,9.727691084,9.783634421,8.068303824,6.352973227,4.63764263,4.326646487,4.015650343,3.7046492,5.483214567,7.261779933,9.0403453,8.520095067,7.999844833,7.4795946,7.4795946,7.4795946 +13,GA,7,OTHER INDUSTRIAL PROCESSES,CO,129.83996,124.00094,130.93126,135.23222,143.466071,148.334665,152.8353991,28.98525376,30.25317139,31.52108902,32.78900665,32.47718677,32.1653669,31.85354703,29.4185061,26.98346518,24.54775325,25.82459819,27.10144313,28.37828806,25.76473473,23.1511814,20.53762807,20.53762807,20.53762807 +13,GA,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.00468,0.004841,0.004953,3.623715011,3.677664978,3.731614944,3.785564911,3.731053274,3.676541637,3.62203,3.516567157,3.411104313,3.30564147,3.318590828,3.331540187,3.344489545,3.285141533,3.225793522,3.16644551,3.16644551,3.16644551 +13,GA,7,OTHER INDUSTRIAL PROCESSES,NOX,14.57015,11.8444,12.55604,12.94463,18.013706,18.637163,19.221455,12.8801989,14.02592345,15.171648,16.31737254,16.98263562,17.6478987,18.31316178,17.50658507,16.70000837,15.89263766,16.1095524,16.32646714,16.54338187,15.41370796,14.28403405,13.15436014,13.15436014,13.15436014 +13,GA,7,OTHER INDUSTRIAL PROCESSES,PM10,21.23836,37.56685,38.2632,42.61975,67.489366,64.519278,68.56587656,40.63379642,41.0061586,41.37852078,41.75088295,41.74452285,41.73816275,41.73180265,43.62214302,45.51248339,47.50585575,38.30518148,29.10450721,19.90383294,19.82577722,19.74772149,19.66966576,19.66966576,19.66966576 +13,GA,7,OTHER INDUSTRIAL PROCESSES,PM25,9.47798,12.82022,13.3519,14.43695,34.703678,34.885493,38.36961936,14.46095703,15.16115862,15.86136022,16.56156182,15.60015247,14.63874312,13.67733377,15.08502656,16.49271934,17.92535712,16.32463366,14.7239102,13.12318674,13.24315529,13.36312384,13.4830924,13.4830924,13.4830924 +13,GA,8,SOLVENT UTILIZATION,VOC,135.71203,124.85585,129.93069,123.71797,135.023619,131.365884,135.332662,162.9267966,162.8231958,162.719595,162.6159942,147.5914989,132.5670036,117.5425083,106.4789459,95.4153836,84.35182248,86.20506667,88.05831086,89.91155505,94.58068892,99.24982279,103.9189567,103.9189567,103.9189567 +13,GA,8,SOLVENT UTILIZATION,NOX,0.044,0.06494,0.06836,0.07029,0.05436,0.056833,0.059358,0.021713136,0.023229091,0.024745045,0.026261,0.020943667,0.015626333,0.010309,0.016871667,0.023434333,0.029997,0.0270864,0.0241758,0.0212652,0.0235981,0.025931,0.0282639,0.0282639,0.0282639 +13,GA,8,SOLVENT UTILIZATION,SO2,0.034,0.034,0.03574,0.037,0.03853,0.040379,0.042267,0.0000152,1.21E-05,9.07E-06,0.000006,4.53E-05,8.47E-05,0.000124,0.000179,0.000234,0.000289,0.000247633,0.000206267,0.0001649,0.000188633,0.000212367,0.0002361,0.0002361,0.0002361 +13,GA,8,SOLVENT UTILIZATION,PM25,0.00733,0.00733,0.00778,0.00777,0.00774,0.007825,0.008066,0.01305236,0.011690032,0.010327704,0.008965376,0.018216917,0.027468459,0.03672,0.034501481,0.032282962,0.030064442,0.038090287,0.046116131,0.054141976,0.051717034,0.049292093,0.046867151,0.046867151,0.046867151 +13,GA,8,SOLVENT UTILIZATION,CO,0.001,0.00494,0.0052,0.00531,0.00491,0.005032,0.005157,0.003681885,0.00562659,0.007571295,0.009516,0.008707333,0.007898667,0.00709,0.012968,0.018846,0.024724,0.0231313,0.0215386,0.0199459,0.018732633,0.017519367,0.0163061,0.0163061,0.0163061 +13,GA,8,SOLVENT UTILIZATION,PM10,0.00885,0.00885,0.00939,0.0094,0.00936,0.009464,0.009753,0.013350251,0.011989613,0.010628974,0.009268336,0.018418891,0.027569445,0.03672,0.034821767,0.032923533,0.0310253,0.039039133,0.047052967,0.0550668,0.052684633,0.050302467,0.0479203,0.0479203,0.0479203 +13,GA,8,SOLVENT UTILIZATION,NH3,,,,,,,,0.00027,0.00018,0.00009,,0,0,,0.012045,0.02409,0.036135,0.0410785,0.046022,0.0509655,0.050573667,0.050181833,0.04979,0.04979,0.04979 +13,GA,9,STORAGE & TRANSPORT,SO2,,,,,,,,0.000217565,0.000145177,7.28E-05,0.0000004,2.67E-07,1.33E-07,0,0,0,0,0,0,0,0,0,0,0,0 +13,GA,9,STORAGE & TRANSPORT,VOC,33.54063,30.14595,30.31754,30.5925,30.506335,30.290637,30.631553,52.86198687,53.05674528,53.25150368,53.44626209,53.31443752,53.18261296,53.05078839,48.62565773,44.20052706,33.98471603,31.96853065,29.95234526,27.93615988,25.7789809,23.62180193,21.46462295,21.46462295,21.46462295 +13,GA,9,STORAGE & TRANSPORT,PM25,0.05525,0.06882,0.07292,0.07439,0.057256,0.059103,0.061897,0.165915871,0.382652646,0.599389421,0.816126195,0.587751863,0.359377531,0.131003199,0.257619403,0.384235607,0.510851811,0.531506827,0.552161843,0.572816859,0.565058465,0.557300071,0.549541677,0.549541677,0.549541677 +13,GA,9,STORAGE & TRANSPORT,PM10,0.15204,0.18985,0.20193,0.20685,0.162406,0.167795,0.175866,0.439438209,0.651455145,0.86347208,1.075489015,0.775454677,0.475420338,0.175386,0.45531261,0.73523922,1.01516583,0.951351863,0.887537897,0.82372393,0.79885422,0.77398451,0.7491148,0.7491148,0.7491148 +13,GA,9,STORAGE & TRANSPORT,NOX,,0.00526,0.00553,0.00565,0.015677,0.01603,0.016492,0.005908467,0.013389311,0.020870156,0.028351,0.027412333,0.026473667,0.025535,0.024146667,0.022758333,0.02137,0.022701233,0.024032467,0.0253637,0.022577533,0.019791367,0.0170052,0.0170052,0.0170052 +13,GA,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0.0002574,0.0005148,0.0007722,0.0010448,0.0013174,0.00159,0.001693333,0.001796667,0.0019,0.0019,0.0019 +13,GA,9,STORAGE & TRANSPORT,CO,,0.01266,0.01332,0.01358,0.041778,0.042721,0.043953,0.039298877,0.050582251,0.061865626,0.073149,0.069693,0.066237,0.062781,0.058192333,0.053603667,0.049015,0.0488722,0.0487294,0.0485866,0.040443433,0.032300267,0.0241571,0.0241571,0.0241571 +13,GA,10,WASTE DISPOSAL & RECYCLING,NOX,3.76567,6.33661,6.00782,6.97182,7.37649,4.894236,4.906942,5.645120878,5.399503344,5.153885811,4.908268278,4.769310291,4.630352304,4.491394317,5.539628821,6.587863326,7.63609783,7.547923721,7.459749612,7.371575502,6.995987201,6.620398901,6.2448106,6.2448106,6.2448106 +13,GA,10,WASTE DISPOSAL & RECYCLING,VOC,24.41323,19.53698,19.01457,21.40847,22.213223,16.955898,17.010689,15.93880456,15.8390951,15.73938563,15.63967616,13.76534267,11.89100917,10.01667567,12.46533335,14.91399104,17.36264873,17.53722796,17.7118072,17.88638643,17.13900369,16.39162096,15.64423822,15.64423822,15.64423822 +13,GA,10,WASTE DISPOSAL & RECYCLING,SO2,0.56902,0.26609,0.28566,0.29523,0.30271,0.313313,0.315477,0.2400581,0.2570274,0.2739967,0.290966,0.282492819,0.274019637,0.265546456,0.251277439,0.237008422,0.222739405,0.454837768,0.68693613,0.919034493,0.684785882,0.450537271,0.21628866,0.21628866,0.21628866 +13,GA,10,WASTE DISPOSAL & RECYCLING,CO,53.27318,179.48449,165.81869,197.17374,217.060789,126.565032,126.606324,169.4351952,151.3537295,133.2722638,115.1907982,116.3419587,117.4931192,118.6442797,154.997025,191.3497703,227.7025156,226.3720719,225.0416282,223.7111845,212.1858567,200.6605289,189.1352011,189.1352011,189.1352011 +13,GA,10,WASTE DISPOSAL & RECYCLING,PM10,13.84315,24.47827,23.60997,27.00269,29.064602,20.428832,20.447342,24.37890713,22.12510608,19.87130504,17.617504,17.17302768,16.72855135,16.28407503,19.80658986,23.32910469,26.85161951,26.51725223,26.18288494,25.84851766,24.97236778,24.0962179,23.22006802,23.22006802,23.22006802 +13,GA,10,WASTE DISPOSAL & RECYCLING,NH3,1.86918,2.1115,2.1115,2.15511,2.19876,2.24165,2.285819,0.031886275,0.034629608,0.037372942,0.040116275,0.038922073,0.037727871,0.036533669,0.04168765,0.046841632,0.051995613,0.119505827,0.18701604,0.254526253,0.254600679,0.254675105,0.254749532,0.254749532,0.254749532 +13,GA,10,WASTE DISPOSAL & RECYCLING,PM25,12.46941,23.7065,22.77753,26.14203,28.182392,19.514206,19.527317,23.71242622,21.45135432,19.19028242,16.92921053,16.37019715,15.81118377,15.25217039,18.90878249,22.5653946,26.2220067,25.86398849,25.50597027,25.14795205,24.27332185,23.39869164,22.52406143,22.52406143,22.52406143 +13,GA,11,HIGHWAY VEHICLES,VOC,300.86328,228.62743,220.43622,216.29884,207.56228,207.1358,202.09579,155.6847687,145.425716,135.1666633,124.9076106,144.2094687,163.5113268,140.9668959,96.16810137,132.1811695,110.2059895,101.4119315,92.61787345,83.82381539,88.66054968,71.34027518,74.31327673,61.88921244,55.74792802 +13,GA,11,HIGHWAY VEHICLES,CO,3431.84085,2830.11328,2755.46518,2687.67717,2526.59228,2596.46847,2525.32625,2112.457244,1969.049091,1825.640939,1682.232786,1755.30749,1828.382193,1496.205201,960.4850229,1249.153904,1020.462503,993.2353748,966.0082469,938.781119,994.7078069,818.6464126,811.1104163,726.7392038,678.9045375 +13,GA,11,HIGHWAY VEHICLES,NH3,4.83492,8.45563,9.6142,9.38344,9.78212,10.48312,10.85053,5.738770918,5.555295513,5.371820109,5.188344705,5.406259421,5.624174136,5.125341653,4.591476286,4.867585849,4.492318056,4.320324415,4.148330775,3.976337134,3.961280594,3.854723493,4.081698874,3.44410394,3.325589697 +13,GA,11,HIGHWAY VEHICLES,NOX,299.2597,312.95703,320.00818,318.79389,313.5677,324.8292,310.63036,451.3747952,415.1666417,378.9584882,342.7503347,358.204678,373.6590213,336.8457779,205.049564,234.7579363,223.6216699,208.0812047,192.5407396,177.0002744,170.0496315,153.9989666,150.0493619,128.3212763,114.6091965 +13,GA,11,HIGHWAY VEHICLES,PM10,12.42343,10.42897,10.14729,9.64551,9.24729,9.12154,8.74469,17.14646709,16.79085448,16.43524187,16.07962926,16.54896732,17.01830539,15.24757674,9.431780585,9.789900723,13.37339994,12.32020108,11.26700222,10.21380336,10.07916255,9.056235017,10.02072081,9.654730358,9.207809246 +13,GA,11,HIGHWAY VEHICLES,PM25,10.44138,8.33434,8.00475,7.53264,7.12259,6.92608,6.54953,14.28209711,13.91463568,13.54717424,13.17971281,13.35012868,13.52054456,11.88754843,6.743047896,7.000670673,6.987314388,6.379182433,5.771050477,5.162918521,4.797340946,4.411129579,4.531708762,4.152235193,3.814025526 +13,GA,11,HIGHWAY VEHICLES,SO2,16.15981,10.90749,11.37581,11.64512,12.02703,11.62358,11.98621,14.85026405,12.32021164,9.79015923,7.260106821,4.34989638,1.439685939,1.359388569,1.229737357,1.276700869,1.092074461,1.141152268,1.190230076,1.239307884,1.311911077,1.311039614,1.253418132,0.567734408,0.43728766 +13,GA,12,OFF-HIGHWAY,VOC,68.05692,74.97203,69.33247,66.99026,66.97364,66.54105,66.10368,83.63245758,81.70765632,79.78285505,77.85805379,75.31151608,72.76497837,68.70263515,65.4947474,63.91697434,60.84293941,56.30968305,51.77642668,47.24317032,45.63500787,44.59973067,42.41868299,41.5861821,40.75368121 +13,GA,12,OFF-HIGHWAY,SO2,6.67656,8.10442,8.19893,8.3503,8.49389,8.69564,8.82355,12.85112476,11.74744718,10.64376959,9.540092006,7.662423881,5.784755756,3.76015245,4.440700835,2.923621544,2.561640203,2.320480363,2.079320523,1.838160684,1.704261638,1.425537025,1.436463546,1.459178355,1.481893164 +13,GA,12,OFF-HIGHWAY,CO,612.2412,699.59332,678.32268,679.1257,690.37453,695.62241,710.75507,741.360631,722.4380292,703.5154273,684.5928255,661.1425283,637.6922312,592.9451373,509.5588393,484.0033931,471.9595356,454.2037629,436.4479902,418.6922175,408.291886,387.8736898,387.491223,390.1435915,392.7959601 +13,GA,12,OFF-HIGHWAY,PM25,6.28575,6.60963,6.50148,6.41236,6.36472,6.27933,6.18994,7.382301074,7.199408304,7.016515533,6.833622763,6.717573086,6.60152341,5.902918816,6.128544583,5.91668413,5.594465884,5.136961684,4.679457485,4.221953286,3.966907681,3.613897906,3.456816473,3.333861639,3.210906805 +13,GA,12,OFF-HIGHWAY,PM10,6.86774,7.21774,7.09766,6.99446,6.95101,6.85871,6.76189,7.883501307,7.674730984,7.46596066,7.257190337,7.126386192,6.995582047,6.33877297,6.574850445,6.350634847,5.923318793,5.444225137,4.965131481,4.486037826,4.207902826,3.812462707,3.651632828,3.524679726,3.397726624 +13,GA,12,OFF-HIGHWAY,NOX,81.06733,90.61973,90.71361,90.24302,91.44463,91.1979,91.15137,102.3009704,99.30806809,96.3151658,93.32226351,91.01711855,88.71197359,84.57806856,90.94804635,89.23156488,74.21654299,68.61536253,63.01418206,57.4130016,55.0223332,51.74826842,50.2409964,48.74711371,47.25323101 +13,GA,12,OFF-HIGHWAY,NH3,0.72506,0.8682,0.87588,0.90314,0.07529,0.07529,0.07529,0.063364367,0.064300695,0.065237023,0.066173351,0.068070236,0.069967122,0.069240474,0.072092674,0.073188166,0.072685411,0.069625308,0.066565205,0.063505102,0.063444542,0.05979282,0.06332342,0.064105569,0.064887718 +13,GA,14,MISCELLANEOUS,NOX,32.10394,3.34613,3.63636,5.16246,10.608285,6.135815,6.688971,3.95950311,6.598732333,9.237961556,11.87719078,7.930567776,3.983944773,0.037321769,0.58574648,1.134171191,1.682595902,1.585105478,1.487615053,1.390124628,1.159386155,0.928647683,0.69790921,0.69790921,0.69790921 +13,GA,14,MISCELLANEOUS,CO,911.91244,132.10396,153.1113,210.09734,476.376375,268.175619,293.992834,360.33729,411.1456198,461.9539497,512.7622795,348.9759369,185.1895942,21.40325152,27.22378288,33.04431424,38.86484559,38.78962948,38.71441337,38.63919726,32.37475696,26.11031665,19.84587635,19.84587635,19.84587635 +13,GA,14,MISCELLANEOUS,SO2,1.37205,0.35847,0.36512,0.42085,2.87668,1.50602,1.65777,5.718674306,5.656787568,5.594900829,5.533014091,3.689969307,1.846924523,0.003879739,0.2492342,0.49458866,0.739943121,0.65395493,0.567966738,0.481978546,0.403476113,0.32497368,0.246471246,0.246471246,0.246471246 +13,GA,14,MISCELLANEOUS,PM10,880.14403,607.41342,689.0951,646.37713,677.27815,664.836234,651.959091,583.83146,590.9827108,598.1339616,605.2852123,581.7850418,558.2848713,534.7847008,543.2058076,551.6269144,560.0480212,507.3252582,454.6024951,401.8797321,348.4545432,295.0293542,241.6041653,241.6041653,241.6041653 +13,GA,14,MISCELLANEOUS,VOC,40.82396,14.83978,14.93747,21.83989,28.180587,18.275694,19.495294,82.67937,95.79209064,108.9048113,122.0175319,82.44896848,42.88040505,3.31184162,3.181081002,3.050320385,2.919559767,4.274634772,5.629709778,6.984784783,6.807960527,6.63113627,6.454312014,6.454312014,6.454312014 +13,GA,14,MISCELLANEOUS,NH3,77.11497,76.48605,78.5096,81.89736,84.28169,83.68665,89.64478091,86.62090976,87.53333812,88.44576648,89.35819485,87.79102737,86.22385989,84.65669242,86.73441998,88.81214754,90.8898751,83.65039158,76.41090806,69.17142455,71.73075592,74.29008729,76.84941866,76.84941866,76.84941866 +13,GA,14,MISCELLANEOUS,PM25,217.74445,120.30162,135.15378,134.83442,157.79916,142.205828,129.8028003,93.43298666,99.47236489,105.5117431,111.5511214,97.87979688,84.20847239,70.5371479,71.0893009,71.64145389,72.19360689,65.55953363,58.92546038,52.29138712,47.31960183,42.34781654,37.37603125,37.37603125,37.37603125 +13,GA,15,WILDFIRES,SO2,,,,,,,,0.144494143,0.144494143,0.144494143,,0,0,0.05657178,0.05657178,0.05657178,6.917759337,6.917759337,6.917759337,0.093626528,0.093626528,0.093626528,0.694235047,0.694235047,0.694235047 +13,GA,15,WILDFIRES,PM10,,,,,,,,2.172632897,2.172632897,2.172632897,,0,0,0.931445402,0.931445402,0.931445402,97.76306234,97.76306234,97.76306234,1.322947946,1.322947946,1.322947946,9.80815101,9.80815101,9.80815101 +13,GA,15,WILDFIRES,NOX,,,,,,,,0.239549386,0.239549386,0.239549386,,0,0,0.205372363,0.205372363,0.205372363,25.22949227,25.22949227,25.22949227,0.341461488,0.341461488,0.341461488,2.531916213,2.531916213,2.531916213 +13,GA,15,WILDFIRES,PM25,,,,,,,,1.839992456,1.839992456,1.839992456,,0,0,0.798783392,0.798783392,0.798783392,84.17415168,84.17415168,84.17415168,1.141853657,1.141853657,1.141853657,8.44850199,8.44850199,8.44850199 +13,GA,15,WILDFIRES,NH3,,,,,,,,0.355026805,0.355026805,0.355026805,,0,0,0.043834831,0.043834831,0.043834831,5.290052434,5.290052434,5.290052434,0.071596752,0.071596752,0.071596752,0.530885557,0.530885557,0.530885557 +13,GA,15,WILDFIRES,CO,,,,,,,,22.5037,22.5037,22.5037,,0,0,9.57178549,9.57178549,9.57178549,601.2767606,601.2767606,601.2767606,8.082088988,8.082088988,8.082088988,60.12423817,60.12423817,60.12423817 +13,GA,15,WILDFIRES,VOC,,,,,,,,5.160506917,5.160506917,5.160506917,,0,0,0.462760481,0.462760481,0.462760481,48.27118199,48.27118199,48.27118199,0.653896711,0.653896711,0.653896711,4.854317241,4.854317241,4.854317241 +13,GA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,16.69983614,15.6859673,14.67209845,13.65822961,14.21440454,14.77057946,15.32675439,14.17980417,13.03285394,11.88590371,11.88590371,11.88590371 +13,GA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,3.518646583,3.300372171,3.082097759,2.863823347,2.980440421,3.097057495,3.213674569,2.973184923,2.732695276,2.49220563,2.49220563,2.49220563 +13,GA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,778.210548,645.4532312,512.6959144,379.9385977,406.8160251,433.6934525,460.5708799,426.6054326,392.6399854,358.6745382,358.6745382,358.6745382 +13,GA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,75.68811967,68.81784179,61.9475639,55.07728602,57.5922339,60.10718178,62.62212966,58.00207564,53.38202163,48.76196762,48.76196762,48.76196762 +13,GA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,64.91228507,59.50368291,54.09508075,48.6864786,50.83800173,52.98952486,55.14104799,51.06516764,46.98928728,42.91340693,42.91340693,42.91340693 +13,GA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,4.585118173,4.305078471,4.02503877,3.744999069,3.897498503,4.049997937,4.202497371,3.888010963,3.573524554,3.259038146,3.259038146,3.259038146 +13,GA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,36.90727551,33.50629665,30.1053178,26.70433894,27.92172232,29.13910571,30.35648909,28.11571005,25.87493101,23.63415197,23.63415197,23.63415197 +15,HI,1,FUEL COMB. ELEC. UTIL.,SO2,26.90193,38.55969,38.6167,37.97961,17.56589,18.481772,17.215191,22.09385992,,,2.076399729,9.19930957,16.32221941,23.44512925,22.30974457,21.17435988,20.03897519,19.45789566,18.87681612,18.29573659,17.42511613,16.55449568,15.68387522,15.68387522,15.68387522 +15,HI,1,FUEL COMB. ELEC. UTIL.,PM25,0.25835,1.314,1.33316,1.39311,0.460015,0.473001,1.084035,1.793257157,1.549586055,1.305914952,1.06224385,1.495078191,1.927912531,2.360746872,2.222602937,2.084459001,1.946315066,1.845441988,1.744568909,1.643695831,1.556197614,1.468699398,1.381201182,1.381201182,1.381201182 +15,HI,1,FUEL COMB. ELEC. UTIL.,PM10,0.38623,1.74901,1.77268,1.85,0.483296,0.495991,1.386779,2.911288275,2.498229684,2.085171094,1.672112503,2.061330174,2.450547845,2.839765515,2.6264446,2.413123685,2.19980277,2.086766213,1.973729656,1.860693099,1.759552128,1.658411157,1.557270186,1.557270186,1.557270186 +15,HI,1,FUEL COMB. ELEC. UTIL.,NOX,15.37367,20.10672,20.41729,20.64738,7.52526,7.619018,7.261263,21.32663598,,,6.655674554,10.63635328,14.617032,18.59771073,20.6894723,22.78123388,24.87299546,23.44430233,22.01560921,20.58691608,19.77977004,18.97262399,18.16547795,18.16547795,18.16547795 +15,HI,1,FUEL COMB. ELEC. UTIL.,CO,1.55505,4.27333,4.33595,4.41562,0.93355,0.947371,0.923804,8.457696816,6.227175377,3.996653939,1.766132501,3.868444792,5.970757083,8.073069374,8.015297944,7.957526514,7.899755084,5.749166383,3.598577683,1.447988983,1.55873228,1.669475577,1.780218875,1.780218875,1.780218875 +15,HI,1,FUEL COMB. ELEC. UTIL.,VOC,0.56801,0.56898,0.57327,0.58157,0.28951,0.294086,0.287138,0.651993947,0.511719553,0.37144516,0.231170766,0.326987316,0.422803865,0.518620414,0.504072477,0.489524541,0.474976604,0.384295382,0.293614159,0.202932937,0.192504874,0.182076812,0.171648749,0.171648749,0.171648749 +15,HI,1,FUEL COMB. ELEC. UTIL.,NH3,,0.14684,0.14424,0.14387,0.14704,0.149177,0.145351,,0.001573333,0.003146667,0.00472,0.185577175,0.36643435,0.547291525,0.545697386,0.544103246,0.542509106,0.437239308,0.33196951,0.226699712,0.216853973,0.207008233,0.197162494,0.197162494,0.197162494 +15,HI,2,FUEL COMB. INDUSTRIAL,VOC,0.07253,1.43301,1.43809,1.42449,1.47096,1.488468,1.547673,0.067204282,0.068220048,0.069235815,0.070251581,0.069057781,0.06786398,0.06667018,0.062429613,0.058189046,0.05394848,0.102053465,0.15015845,0.198263435,0.146529525,0.094795614,0.043061703,0.043061703,0.043061703 +15,HI,2,FUEL COMB. INDUSTRIAL,SO2,13.5976,16.14645,15.75237,15.35802,16.73121,16.994366,17.905331,3.781463854,3.850913446,3.920363038,3.98981263,4.312012841,4.634213052,4.956413262,4.709451839,4.462490415,4.215528992,3.042869772,1.870210553,0.697551334,1.155539196,1.613527058,2.071514921,2.071514921,2.071514921 +15,HI,2,FUEL COMB. INDUSTRIAL,PM25,2.01397,2.35622,2.30275,2.23864,4.202705,4.204651,4.441339,0.250033114,0.251287886,0.252542657,0.253797429,0.252486492,0.251175554,0.249864617,0.24034819,0.230831763,0.221315337,0.244234567,0.267153797,0.290073028,0.262492604,0.23491218,0.207331756,0.207331756,0.207331756 +15,HI,2,FUEL COMB. INDUSTRIAL,PM10,3.0108,2.90833,2.8212,2.73321,4.795565,4.81363,5.074294,0.877843188,0.883084225,0.888325263,0.893566301,0.711251378,0.528936454,0.34662153,0.333408032,0.320194533,0.306981035,0.315818833,0.324656631,0.333494429,0.307731142,0.281967855,0.256204568,0.256204568,0.256204568 +15,HI,2,FUEL COMB. INDUSTRIAL,NOX,10.47338,19.91367,19.79478,19.36925,21.06594,21.310004,22.786403,2.223173806,2.256526301,2.289878795,2.32323129,2.199249207,2.075267124,1.951285041,1.819554774,1.687824507,1.556094241,1.740818919,1.925543597,2.110268275,1.850313023,1.590357771,1.330402519,1.330402519,1.330402519 +15,HI,2,FUEL COMB. INDUSTRIAL,CO,1.23625,6.2928,6.15858,6.00753,6.53322,6.549549,6.892391,0.721785186,0.718257212,0.714729238,0.711201265,0.61607347,0.520945675,0.425817881,0.389960945,0.354104009,0.318247073,1.498525155,2.678803237,3.859081319,2.691296071,1.523510823,0.355725575,0.355725575,0.355725575 +15,HI,2,FUEL COMB. INDUSTRIAL,NH3,,,,,,,,0.009871939,0.010969943,0.012067947,0.013165951,0.019612741,0.026059531,0.03250632,0.03255476,0.0326032,0.03265164,0.028216004,0.023780368,0.019344731,0.020292445,0.021240159,0.022187872,0.022187872,0.022187872 +15,HI,3,FUEL COMB. OTHER,CO,0.0045,0.03704,0.03666,0.0348,0.079339,0.081408,0.083228,1.763372537,1.763205338,1.76303814,1.762870942,2.308851011,2.85483108,3.40081115,3.34653049,3.292249831,3.007142719,3.220835009,3.434527299,3.648219589,2.96266834,2.277117091,1.591565843,1.591565843,1.591565843 +15,HI,3,FUEL COMB. OTHER,NH3,,,,,,,,0.008369642,0.007036453,0.005703264,0.004370075,0.023004826,0.041639578,0.060274329,0.21193042,0.363586511,0.512454094,0.352424132,0.192394171,0.032364209,0.029408259,0.026452309,0.023496359,0.023496359,0.023496359 +15,HI,3,FUEL COMB. OTHER,NOX,0.0198,0.11108,0.10995,0.10425,0.247569,0.254045,0.259717,0.440564277,0.438691762,0.436819247,0.434946732,0.457222193,0.479497655,0.501773116,0.502676181,0.503579246,0.500454466,0.388146134,0.275837802,0.16352947,0.268721167,0.373912865,0.479104562,0.479104562,0.479104562 +15,HI,3,FUEL COMB. OTHER,PM10,0.0295,0.02693,0.02666,0.02529,0.037688,0.038626,0.039515,0.278131619,0.279226974,0.28032233,0.281417686,0.353846264,0.426274842,0.49870342,0.494018545,0.489333671,0.448088328,0.467786291,0.487484253,0.507182216,0.405273328,0.303364439,0.20145555,0.20145555,0.20145555 +15,HI,3,FUEL COMB. OTHER,PM25,0.02324,0.02526,0.025,0.02373,0.035978,0.036874,0.037724,0.263320928,0.263785568,0.264250208,0.264714849,0.341488904,0.41826296,0.495037016,0.489960042,0.484883069,0.443245627,0.464230731,0.485215835,0.50620094,0.403629681,0.301058422,0.198487163,0.198487163,0.198487163 +15,HI,3,FUEL COMB. OTHER,SO2,0.2501,0.00826,0.00815,0.00747,0.009039,0.009261,0.009476,0.920089673,0.911050715,0.902011756,0.892972798,0.732238258,0.571503719,0.410769179,0.410762356,0.410755532,0.410129036,0.281841522,0.153554008,0.025266494,0.024166774,0.023067054,0.021967334,0.021967334,0.021967334 +15,HI,3,FUEL COMB. OTHER,VOC,,1.26064,1.24779,1.18442,1.295781,1.326907,1.35799,0.667404937,0.667458298,0.667511659,0.66756502,0.649284787,0.631004554,0.612724321,0.602211724,0.591699127,0.551907152,0.56691579,0.581924427,0.596933064,0.478384612,0.359836161,0.241287709,0.241287709,0.241287709 +15,HI,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,,,,0.50143,0.504839,0.508248,0.511657,0.451770667,0.391884333,0.331998,0.314005667,0.296013333,0.278021,0.241124667,0.204228333,0.167332,0.182134,0.196936,0.211738,0.211738,0.211738 +15,HI,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,0.00039,0.00038,0.00036,0.00069,0.0007,0.000709,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,0.0011,0.00106,0.00102,0.00134,0.001359,0.001376,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,,,,,,,,0.03579,0.03579,0.03579,0.03579,0.02386,0.01193,,0,0,0,0,0,,0,0,0,0,0 +15,HI,5,METALS PROCESSING,NOX,0.0219,0.0028,0.00281,0.00283,0.00283,0.002796,0.002782,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,5,METALS PROCESSING,PM10,0.0106,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,5,METALS PROCESSING,PM25,0.00944,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,5,METALS PROCESSING,SO2,0.1082,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,5,METALS PROCESSING,CO,0.0018,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,5,METALS PROCESSING,VOC,,0.0866,0.08703,0.08747,0.08725,0.086203,0.085766,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.0348,0.17551,0.17713,0.17873,0.271229,0.273398,0.276382,0.153278697,0.135965076,0.118651455,0.101337834,0.087654471,0.073971107,0.060287743,0.058779507,0.057271272,0.055763036,0.04516728,0.034571524,0.023975767,0.029789431,0.035603095,0.041416759,0.041416759,0.041416759 +15,HI,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0.000666667,0.001333333,0.002,0.002604933,0.003209867,0.0038148,0.006486934,0.009159068,0.011831202,0.008136468,0.004441734,0.000747,0.003903242,0.007059484,0.010215726,0.010215726,0.010215726 +15,HI,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.0739,0.49061,0.49537,0.50008,0.50446,0.508497,0.514045,0.499517304,0.491642976,0.483768649,0.475894321,0.431000248,0.386106174,0.3412121,0.355070453,0.368928807,0.38278716,0.28884144,0.19489572,0.10095,0.0885878,0.0762256,0.0638634,0.0638634,0.0638634 +15,HI,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.1059,2.05028,2.06899,2.08749,2.10458,2.121416,2.144566,0.393739,0.439837166,0.485935331,0.532033497,0.365339058,0.198644619,0.03195018,0.062602826,0.093255473,0.123908119,0.092578079,0.06124804,0.029918,0.032504863,0.035091727,0.03767859,0.03767859,0.03767859 +15,HI,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.06,0.03817,0.03851,0.03883,0.03917,0.039484,0.039914,0.767064829,0.781422889,0.795780949,0.810139009,0.847940688,0.885742368,0.923544047,0.952351647,0.981159248,1.009966848,1.228711699,1.447456549,1.6662014,1.639134703,1.612068007,1.58500131,1.58500131,1.58500131 +15,HI,6,PETROLEUM & RELATED INDUSTRIES,CO,0.0392,0.06724,0.06801,0.06878,0.06952,0.070074,0.070841,0.4609635,0.37587394,0.29078438,0.20569482,0.198254854,0.190814887,0.18337492,0.168196626,0.153018331,0.137840037,0.112226691,0.086613346,0.061,0.051629487,0.042258973,0.03288846,0.03288846,0.03288846 +15,HI,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.00399,0.09724,0.0981,0.099,0.190789,0.192314,0.194413,0.152481697,0.125813286,0.099144874,0.072476463,0.064953066,0.05742967,0.049906273,0.048002316,0.04609836,0.044194403,0.036408191,0.028621979,0.020835767,0.025903631,0.030971494,0.036039358,0.036039358,0.036039358 +15,HI,7,OTHER INDUSTRIAL PROCESSES,SO2,1.3412,0.36343,0.36415,0.36494,0.36442,0.373158,0.380807,,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,HI,7,OTHER INDUSTRIAL PROCESSES,VOC,,0.01612,0.01625,0.01638,0.0165,0.016881,0.096433356,0.0791,0.080213333,0.081326667,0.08244,0.165596765,0.24875353,0.331910295,0.331910295,0.331910295,0.331910295,0.256511108,0.181111922,0.105712735,0.108668405,0.111624076,0.114579746,0.114579746,0.114579746 +15,HI,7,OTHER INDUSTRIAL PROCESSES,PM25,0.11604,0.18565,0.19613,0.21308,0.884464,0.938972,1.491328032,1.577702323,1.591141391,1.604580459,1.618019527,1.431825192,1.245630857,1.059436522,1.04184895,1.024261377,1.006673804,0.968788328,0.930902852,0.893017376,0.903322873,0.913628371,0.923933869,0.923933869,0.923933869 +15,HI,7,OTHER INDUSTRIAL PROCESSES,PM10,1.5122,0.81396,0.86598,0.95032,4.177864,4.446208,5.046291996,4.74876361,4.753862136,4.758960662,4.764059188,3.864271265,2.964483342,2.064695419,1.972095698,1.879495976,1.786896254,1.660059641,1.533223029,1.406386416,1.410869274,1.415352132,1.41983499,1.41983499,1.41983499 +15,HI,7,OTHER INDUSTRIAL PROCESSES,NOX,0.675,0.7934,0.79592,0.79853,0.79856,0.817252,0.833767,,0,0,,0,0,0,0,0,0,0.005952558,0.011905116,0.017857675,0.01389287,0.009928065,0.00596326,0.00596326,0.00596326 +15,HI,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,,,,0.022522,0.018520833,0.014519667,0.0105185,0.007012333,0.003506167,,0.000001,0.000002,0.000003,2.67E-06,2.33E-06,0.000002,1.36E-06,7.17E-07,0.000000075,0.000000075,0.000000075 +15,HI,7,OTHER INDUSTRIAL PROCESSES,CO,0.0539,0.04324,0.04364,0.04407,0.04441,0.045351,0.272361906,0.22609,0.22609,0.22609,0.22609,0.240447539,0.254805078,0.269162617,0.269162617,0.269162617,0.269162617,0.542841912,0.816521206,1.0902005,0.913964505,0.737728511,0.561492516,0.561492516,0.561492516 +15,HI,8,SOLVENT UTILIZATION,NOX,,,,,,,,,0,0,,0,0,,0,0,0,0.000216686,0.000433373,0.000650059,0.000656326,0.000662593,0.00066886,0.00066886,0.00066886 +15,HI,8,SOLVENT UTILIZATION,VOC,0.002,0.00017,0.00017,0.00017,0.00017,0.000177,0.000183,7.9736773,7.9736773,7.9736773,7.9736773,9.641491225,11.30930515,12.97711908,12.97975437,12.98238967,12.98502496,12.06520414,11.14538332,10.2255625,10.14020617,10.05484984,9.969493509,9.969493509,9.969493509 +15,HI,8,SOLVENT UTILIZATION,SO2,,,,,,,,,0,0,,0,0,,0,0,0,1.30E-06,2.60E-06,3.90E-06,3.94E-06,3.98E-06,4.01E-06,4.01E-06,4.01E-06 +15,HI,8,SOLVENT UTILIZATION,CO,,,,,,,,,0,0,,0,0,,0,0,0,0.000182142,0.000364284,0.000546426,0.000551694,0.000556962,0.000562229,0.000562229,0.000562229 +15,HI,8,SOLVENT UTILIZATION,PM10,,0.0001,0.0001,0.0001,0.0001,0.000104,0.000108,,0,0,,0,0,,0,0,0,1.65E-05,3.29E-05,4.94E-05,4.98E-05,5.02E-05,5.07E-05,5.07E-05,5.07E-05 +15,HI,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0,0,,0,0,0,1.06E-06,2.12E-06,3.19E-06,3.22E-06,3.25E-06,3.28E-06,3.28E-06,3.28E-06 +15,HI,8,SOLVENT UTILIZATION,PM25,,0.00008,0.00008,0.00008,0.00008,0.000083,0.000086,,0,0,,0,0,,0,0,0,1.65E-05,3.29E-05,4.94E-05,4.98E-05,5.02E-05,5.07E-05,5.07E-05,5.07E-05 +15,HI,9,STORAGE & TRANSPORT,CO,0.1247,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,9,STORAGE & TRANSPORT,VOC,0.4563,1.80997,1.84809,1.83365,1.32459,0.610675,0.61734,6.968964257,6.854321042,6.739677827,6.625034612,6.606240187,6.587445762,6.568651336,6.595334197,6.622017058,5.167350679,4.941119761,4.714888843,4.488657925,4.3654713,4.242284676,4.119098052,4.119098052,4.119098052 +15,HI,9,STORAGE & TRANSPORT,SO2,5.1254,1.06302,1.07248,1.08183,1.09044,1.099164,1.111158,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,9,STORAGE & TRANSPORT,PM25,0.3321,0.04999,0.05043,0.05087,0.05128,0.05169,0.052254,0.001133914,0.00184947,0.002565026,0.003280582,0.003392149,0.003503716,0.003615283,0.003690151,0.003765018,0.003839886,0.00347793,0.003115973,0.002754017,0.003348214,0.003942412,0.004536609,0.004536609,0.004536609 +15,HI,9,STORAGE & TRANSPORT,PM10,0.3321,0.06024,0.06078,0.06131,0.06179,0.062284,0.062964,0.003819012,0.005762637,0.007706263,0.009649888,0.009773324,0.009896759,0.010020194,0.010120959,0.010221723,0.010322488,0.009494475,0.008666461,0.007838448,0.009237036,0.010635624,0.012034212,0.012034212,0.012034212 +15,HI,9,STORAGE & TRANSPORT,NOX,1.4554,1.55259,1.56641,1.58007,1.59264,1.605382,1.622901,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +15,HI,10,WASTE DISPOSAL & RECYCLING,PM25,0.00472,0.31514,0.33328,0.33797,0.34003,0.35505,0.35505,0.207676048,0.210694927,0.213713807,0.216732686,0.190591344,0.164450002,0.13830866,0.135791884,0.133275108,0.130758332,0.358810774,0.586863215,0.814915657,0.832800575,0.850685492,0.86857041,0.86857041,0.86857041 +15,HI,10,WASTE DISPOSAL & RECYCLING,PM10,0.0069,0.34206,0.36194,0.3671,0.36935,0.38566,0.38566,0.225697284,0.229853486,0.234009689,0.238165892,0.209376625,0.180587359,0.151798093,0.149023625,0.146249156,0.143474688,0.436318042,0.729161396,1.02200475,0.99930616,0.97660757,0.953908979,0.953908979,0.953908979 +15,HI,10,WASTE DISPOSAL & RECYCLING,NOX,0.1304,0.05049,0.05377,0.05461,0.05496,0.05738,0.05738,0.03333,0.35333,0.67333,0.99333,0.670277609,0.347225217,0.024172826,0.023704096,0.023235367,0.022766638,0.110326259,0.197885881,0.285445502,0.251659635,0.217873767,0.1840879,0.1840879,0.1840879 +15,HI,10,WASTE DISPOSAL & RECYCLING,NH3,,,,,,,,0.004730503,0.00473217,0.004733837,0.004735503,0.004607794,0.004480084,0.004352375,0.005991164,0.007629953,0.009268742,0.021865775,0.034462808,0.047059841,0.04729404,0.047528239,0.047762439,0.047762439,0.047762439 +15,HI,10,WASTE DISPOSAL & RECYCLING,CO,0.0789,0.81748,0.85984,0.8708,0.87614,0.91484,0.91484,0.528451583,0.528451583,0.528451583,0.528451583,0.471629265,0.414806946,0.357984628,0.351404879,0.34482513,0.338245382,3.171356206,6.00446703,8.837577854,8.101252105,7.364926355,6.628600605,6.628600605,6.628600605 +15,HI,10,WASTE DISPOSAL & RECYCLING,VOC,0.09,0.27151,0.28714,0.29119,0.29298,0.30591,0.30591,0.467028651,0.468852241,0.470675832,0.472499423,0.443525704,0.414551985,0.385578266,0.391747245,0.397916225,0.404085205,0.58717649,0.770267775,0.95335906,0.903140173,0.852921285,0.802702397,0.802702397,0.802702397 +15,HI,10,WASTE DISPOSAL & RECYCLING,SO2,0.0726,0.00842,0.00896,0.00911,0.00915,0.00956,0.00956,0.00555,0.03765,0.06975,0.10185,0.069273637,0.036697274,0.004120911,0.004041585,0.003962259,0.003882933,0.031879151,0.05987537,0.087871588,0.081046612,0.074221637,0.067396661,0.067396661,0.067396661 +15,HI,11,HIGHWAY VEHICLES,VOC,40.53465,24.75366,22.80525,21.27418,19.28493,19.64577,19.0947,17.14407533,17.63570441,18.12733349,18.61896257,12.56120197,6.503441377,11.34964985,10.12489693,8.900144002,11.18023794,10.91451857,10.64879921,10.38307985,9.625080526,8.95370735,8.109081887,7.660620561,7.212159235 +15,HI,11,HIGHWAY VEHICLES,NH3,0.60897,0.76774,0.84421,0.79873,0.80863,0.85991,0.88191,0.910942645,0.967945123,1.024947602,1.081950081,0.579848786,0.077747492,0.479428527,0.456947813,0.434467099,0.411513369,0.387014251,0.362515134,0.338016016,0.335950635,0.315676741,0.331819875,0.323091168,0.314362462 +15,HI,11,HIGHWAY VEHICLES,CO,425.80332,258.16487,241.24734,224.71093,200.49961,203.43819,199.12417,163.6000756,164.8055186,166.0109616,167.2164046,139.8195507,112.4226968,134.3401799,121.1271174,107.9140549,109.4278825,105.5293275,101.6307726,97.73221758,91.37342313,82.59939277,78.65583422,75.2883658,71.92089737 +15,HI,11,HIGHWAY VEHICLES,NOX,35.37856,26.11423,26.07893,25.35989,24.34843,24.72907,23.45005,20.02713004,18.17583168,16.32453332,14.47323496,18.98718271,23.50113046,19.88997226,17.96569052,16.04140878,15.50336819,14.36108056,13.21879294,12.07650531,11.16003822,10.38434767,9.327104049,8.606685912,7.886267776 +15,HI,11,HIGHWAY VEHICLES,PM10,1.46411,0.86348,0.82114,0.76255,0.71231,0.68519,0.6511,0.560103875,0.508736945,0.457370014,0.406003083,0.968564746,1.531126409,1.081077079,0.920090773,0.5156524,0.305221667,0.46019906,0.615176454,0.770153847,0.793774639,0.629944782,0.841016225,0.793168696,0.745321166 +15,HI,11,HIGHWAY VEHICLES,PM25,1.22042,0.68109,0.64061,0.58911,0.54262,0.51239,0.47976,0.392089349,0.341899019,0.291708689,0.241518359,0.724501724,1.20748509,0.821098397,0.668375399,0.759104468,0.276593279,0.284498765,0.29240425,0.300309736,0.302872494,0.310400692,0.30799801,0.291626392,0.275254775 +15,HI,11,HIGHWAY VEHICLES,SO2,1.91366,0.94633,0.95746,0.95282,0.95691,0.88986,0.9088,0.281720594,0.294224582,0.306728569,0.319232557,0.26368886,0.208145163,0.252580121,0.20097107,0.14936202,0.102488722,0.102865529,0.103242336,0.103619143,0.086460363,0.063169929,0.052142802,0.04969201,0.047241219 +15,HI,12,OFF-HIGHWAY,VOC,9.18395,10.15179,9.3405,8.966,8.76281,8.59836,8.35092,9.309459454,8.978518771,8.647578088,8.316637405,8.02581281,7.734988215,7.444163621,6.245611462,5.936352714,6.076023763,5.780791638,5.485559513,5.190327388,5.394120139,5.712822953,5.801705641,5.602280453,5.402855266 +15,HI,12,OFF-HIGHWAY,PM25,0.99524,1.05439,1.05691,1.05807,1.03294,1.03804,1.03038,0.947247641,1.003269375,1.059291108,1.115312842,1.037684693,0.960056544,0.882428396,0.973263138,0.817198658,0.811400952,0.710826588,0.610252225,0.509677862,0.523521442,0.560887136,0.551208603,0.536952085,0.522695568 +15,HI,12,OFF-HIGHWAY,NOX,14.56497,15.84463,15.6082,15.32776,16.12171,16.61641,16.4105,15.9536213,16.50313057,17.05263984,17.60214911,16.31168214,15.02121517,13.73074819,16.55507085,16.40026293,11.55438779,10.27431814,8.994248502,7.71417886,8.893168896,10.88389358,11.25114897,10.85956558,10.46798219 +15,HI,12,OFF-HIGHWAY,SO2,1.9092,2.0127,2.09194,2.1738,2.13128,2.23088,2.21293,2.034214953,2.48570873,2.937202507,3.388696284,3.222016682,3.05533708,2.888657478,2.457961255,1.326037014,2.349952694,1.75811504,1.166277386,0.574439733,0.602834911,0.629597495,0.659625268,0.661385814,0.663146361 +15,HI,12,OFF-HIGHWAY,CO,84.30955,96.58826,93.42822,93.61391,94.39764,95.52453,97.54959,89.94021444,84.29811558,78.65601672,73.01391787,70.04602865,67.07813943,64.11025021,56.98688486,55.37659475,56.72309769,55.50090661,54.27871554,53.05652446,54.98896632,57.97381674,58.85385002,59.03521322,59.21657643 +15,HI,12,OFF-HIGHWAY,PM10,1.09528,1.15835,1.15996,1.16,1.13471,1.13984,1.13201,1.006555585,1.068005723,1.129455862,1.190906001,1.123791487,1.056676973,0.989562459,1.025028791,0.856367757,0.864173474,0.756263763,0.648354051,0.540444339,0.555201235,0.594502381,0.584715027,0.570198721,0.555682415 +15,HI,12,OFF-HIGHWAY,NH3,0.03335,0.04168,0.04201,0.04331,0.00903,0.00903,0.00903,0.007042443,0.00711714,0.007191836,0.007266532,0.008012363,0.008758194,0.009504024,0.009197903,0.00930213,0.008574889,0.007881908,0.007188928,0.006495948,0.007337341,0.006853168,0.009020128,0.008837052,0.008653975 +15,HI,14,MISCELLANEOUS,PM10,46.92729,30.2249,30.1936,29.02537,30.44469,29.21815,23.4360003,19.25859,19.25859,19.25859,19.25859,24.20871325,29.1588365,34.10895976,34.10896675,34.10897374,34.10898074,40.23360971,46.35823869,52.48286767,40.54856918,28.61427069,16.6799722,16.6799722,16.6799722 +15,HI,14,MISCELLANEOUS,VOC,3.5602,0.28427,0.30028,0.99657,2.40042,0.58432,0.21108,0.01425,0.01425,0.01425,0.01425,0.191385597,0.368521194,0.545656792,0.545657163,0.545657534,0.545657906,0.541640177,0.537622448,0.53360472,0.396157111,0.258709501,0.121261892,0.121261892,0.121261892 +15,HI,14,MISCELLANEOUS,PM25,11.51393,6.46949,6.58647,6.82305,9.63703,6.99564,4.3331871,1.60843,1.60843,1.60843,1.60843,2.537747762,3.467065523,4.396383285,4.396390278,4.396397272,4.396404265,4.934996354,5.473588444,6.012180533,4.731036587,3.449892641,2.168748695,2.168748695,2.168748695 +15,HI,14,MISCELLANEOUS,NOX,0.7366,0.0823,0.09804,0.26462,1.08962,0.26195,0.09182,0.00181,0.00181,0.00181,0.00181,0.137964733,0.274119466,0.410274199,0.410380319,0.41048644,0.41059256,0.395211296,0.379830032,0.364448768,0.243398801,0.122348835,0.001298868,0.001298868,0.001298868 +15,HI,14,MISCELLANEOUS,NH3,5.81857,6.04726,6.005,5.19773,5.38418,5.17075,2.051555706,,,,,,,7.618230355,7.618230355,7.618230355,7.618230355,7.19723357,6.776236785,6.35524,4.741629988,3.128019976,1.514409963,1.514409963,1.514409963 +15,HI,14,MISCELLANEOUS,CO,25.98525,3.17926,3.87146,9.94903,50.78376,12.20511,4.27418,0.07768,0.07768,0.07768,0.07768,2.528375744,4.979071488,7.429767232,7.429767731,7.429768229,7.429768728,7.264477094,7.099185459,6.933893825,4.622954248,2.31201467,0.001075093,0.001075093,0.001075093 +15,HI,14,MISCELLANEOUS,SO2,0.02865,0.00261,0.00302,0.00892,0.29828,0.07137,0.02472,,,,,,,0.178579881,0.178596223,0.178612565,0.178628908,0.184983835,0.191338761,0.197693688,0.132060106,0.066426524,0.000792942,0.000792942,0.000792942 +15,HI,15,WILDFIRES,CO,,,,,,,,,0,0,,0,0,,0,0,1.18060775,1.18060775,1.18060775,,,,3.825855469,3.825855469,3.825855469 +15,HI,15,WILDFIRES,NH3,,,,,,,,,0,0,,0,0,,0,0,0.012480734,0.012480734,0.012480734,,,,0.063716756,0.063716756,0.063716756 +15,HI,15,WILDFIRES,NOX,,,,,,,,,0,0,,0,0,,0,0,0.098563214,0.098563214,0.098563214,,,,0.09980181,0.09980181,0.09980181 +15,HI,15,WILDFIRES,PM10,,,,,,,,,0,0,,0,0,,0,0,0.162047143,0.162047143,0.162047143,,,,0.431708294,0.431708294,0.431708294 +15,HI,15,WILDFIRES,PM25,,,,,,,,,0,0,,0,0,,0,0,0.127429925,0.127429925,0.127429925,,,,0.365854508,0.365854508,0.365854508 +15,HI,15,WILDFIRES,SO2,,,,,,,,,0,0,,0,0,,0,0,0.008707351,0.008707351,0.008707351,,,,0.043306321,0.043306321,0.043306321 +15,HI,15,WILDFIRES,VOC,,,,,,,,,0,0,,0,0,,0,0,0.390220817,0.390220817,0.390220817,,,,0.915928113,0.915928113,0.915928113 +15,HI,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,,,,6.24532207,39.92039504,73.59546802,107.270541,73.72130318,40.17206536,6.622827545,6.622827545,6.622827545 +15,HI,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,,,,1.67204611,11.0029211,20.33379608,29.66467107,20.29724432,10.92981757,1.562390818,1.562390818,1.562390818 +15,HI,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,,,,0.852552957,5.263847407,9.675141856,14.08643631,9.61538716,5.144338015,0.673288869,0.673288869,0.673288869 +15,HI,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,,,,0.036156295,0.202163672,0.36817105,0.534178428,0.372658373,0.211138319,0.049618264,0.049618264,0.049618264 +15,HI,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,,,,0.059216064,0.356443801,0.653671538,0.950899276,0.670162189,0.389425103,0.108688017,0.108688017,0.108688017 +15,HI,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,,,,0.673574195,4.165743533,7.65791287,11.15008221,7.623582755,4.097083302,0.570583849,0.570583849,0.570583849 +15,HI,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,,,,0.388607793,2.310093074,4.231578355,6.153063636,4.131998988,2.11093434,0.089869692,0.089869692,0.089869692 +16,ID,1,FUEL COMB. ELEC. UTIL.,PM25,,,,,0.039749,0.040886,0.042281,0.037038924,0.036868336,0.036697747,0.036527158,0.024351439,0.012175719,,0.009925228,0.019850456,0.042046164,0.057263811,0.072481457,0.087699104,0.079872791,0.072046477,0.064220164,0.064220164,0.064220164 +16,ID,1,FUEL COMB. ELEC. UTIL.,VOC,,,,,0.025741,0.026746,0.027971,0.00433,0.004283333,0.004236667,0.00419,0.002793333,0.001396667,,0.005112365,0.010224729,0.015337094,0.017950671,0.020564249,0.023177826,0.024269642,0.025361457,0.026453273,0.026453273,0.026453273 +16,ID,1,FUEL COMB. ELEC. UTIL.,SO2,,,,,0.10501,0.107431,0.110513,0.00017,0.002639,0.003041,0.00017,0.002316,0.002864,,0.003731627,0.007463254,0.011194881,0.018473142,0.025751404,0.033029665,0.030272671,0.027515677,0.024758683,0.007079,0.009438 +16,ID,1,FUEL COMB. ELEC. UTIL.,PM10,,,,,0.078736,0.080728,0.083216,0.048212111,0.047944856,0.047677601,0.047410345,0.031606897,0.015803448,,0.011271895,0.022543789,0.046086164,0.062388645,0.078691126,0.094993607,0.085838136,0.076682665,0.067527194,0.067527194,0.067527194 +16,ID,1,FUEL COMB. ELEC. UTIL.,CO,,,,,0.28682,0.298066,0.311736,0.24665,0.245903333,0.245156667,0.24441,0.16294,0.08147,,0.076613764,0.153227528,0.229841291,0.274700293,0.319559295,0.364418296,0.322595603,0.280772909,0.238950216,0.238950216,0.238950216 +16,ID,1,FUEL COMB. ELEC. UTIL.,NOX,,,,,0.32375,0.333171,0.34482,0.14744,0.08231,0.079692,0.13974,0.068911,0.090208,,0.052325432,0.104650864,0.156976295,0.168227194,0.179478094,0.190728993,0.182121124,0.173513255,0.164905386,0.219893,0.35018 +16,ID,2,FUEL COMB. INDUSTRIAL,CO,3.1758,2.81142,2.70084,2.6648,7.301921,7.376204,7.611969,6.307727755,9.627241089,12.94675442,16.26626776,12.81850284,9.370737919,5.922973001,7.189471044,8.455969087,9.722467129,8.819459195,7.91645126,7.013443325,7.274912798,7.536382272,7.797851745,7.797851745,7.797851745 +16,ID,2,FUEL COMB. INDUSTRIAL,NH3,0.04396,0.0517,0.05069,0.05039,0.101483,0.104727,0.112046,0.063645686,0.063645686,0.063645686,0.063645686,0.064690512,0.065735337,0.066780163,0.069583134,0.072386105,0.075189076,0.064644322,0.054099568,0.043554814,0.049233822,0.054912831,0.060591839,0.060591839,0.060591839 +16,ID,2,FUEL COMB. INDUSTRIAL,NOX,12.4683,13.39446,13.02371,12.84191,36.787485,36.702368,39.205599,34.25881513,34.33982846,34.42084179,34.50185513,27.44282762,20.38380011,13.32477261,12.51050031,11.69622801,10.88195571,10.11235564,9.342755567,8.573155493,8.403282112,8.233408732,8.063535351,8.063535351,8.063535351 +16,ID,2,FUEL COMB. INDUSTRIAL,PM10,8.6412,7.10269,6.80449,6.55672,12.205953,12.133253,12.984975,8.919008364,9.00898778,9.098967197,9.188946614,6.517981627,3.847016641,1.176051654,2.186703506,3.197355358,4.747455391,4.137041783,3.526628175,2.916214567,2.930677085,2.945139602,2.95960212,2.95960212,2.95960212 +16,ID,2,FUEL COMB. INDUSTRIAL,PM25,4.64362,3.51266,3.32963,3.2342,10.279823,10.229241,10.918696,7.413665798,7.512483073,7.611300347,7.710117622,5.395554269,3.080990916,0.766427562,1.63093196,2.495436357,3.661669393,3.233986328,2.806303263,2.378620198,2.436011418,2.493402637,2.550793856,2.550793856,2.550793856 +16,ID,2,FUEL COMB. INDUSTRIAL,SO2,8.4459,7.45745,7.27041,7.06582,1.933364,1.8646,1.968833,4.915031187,4.597794521,4.280557854,3.963321187,6.201748692,8.440176196,10.6786037,8.726496311,6.774388922,4.822281533,4.250836029,3.679390525,3.10794502,2.35941706,1.610889099,0.862361139,0.862361139,0.862361139 +16,ID,2,FUEL COMB. INDUSTRIAL,VOC,0.5432,0.42675,0.40337,0.39746,1.00231,1.00065,1.066198,0.325239832,0.308766499,0.292293166,0.275819832,0.257777242,0.239734651,0.22169206,0.292913774,0.364135488,0.435357202,0.379402868,0.323448534,0.2674942,0.281677632,0.295861063,0.310044495,0.310044495,0.310044495 +16,ID,3,FUEL COMB. OTHER,VOC,13.04299,4.96732,4.97089,4.96917,15.215396,5.46485,5.468591,15.0902559,11.19011397,7.289972028,3.389830091,3.37056424,3.351298388,3.332032537,4.0935894,4.855146262,5.620631485,4.024822997,2.42901451,0.833206022,1.201806915,1.570407807,1.939008699,1.939008699,1.939008699 +16,ID,3,FUEL COMB. OTHER,PM10,9.55156,2.15848,2.15985,2.15672,2.920494,2.561528,2.57897,2.504111073,2.504272684,2.504434295,2.504595906,2.504759014,2.504922122,2.50508523,3.307541977,4.109998724,4.929640541,3.656083493,2.382526446,1.108969399,1.36430219,1.619634981,1.874967772,1.874967772,1.874967772 +16,ID,3,FUEL COMB. OTHER,PM25,9.19759,1.92087,1.92029,1.91643,2.673345,2.307709,2.317629,2.399024643,2.39923208,2.399439518,2.399646956,2.392688896,2.385730836,2.378772776,3.189765162,4.000757548,4.823323445,3.571209034,2.319094623,1.066980212,1.325860555,1.584740899,1.843621243,1.843621243,1.843621243 +16,ID,3,FUEL COMB. OTHER,NH3,0.02279,0.02664,0.02646,0.02325,0.030451,0.031045,0.031741,0.023987996,0.023987996,0.023987996,0.023987996,0.212915408,0.401842819,0.590770231,0.564987286,0.539204342,0.513526309,0.445869582,0.378212854,0.310556127,0.322157163,0.3337582,0.345359236,0.345359236,0.345359236 +16,ID,3,FUEL COMB. OTHER,CO,69.37556,13.82954,13.85102,13.83554,20.57236,18.023331,18.091444,17.95188828,17.94469828,17.93750828,17.93031828,18.19839804,18.4664778,18.73455757,23.49142939,28.2483012,33.02615541,24.7164001,16.40664478,8.096889462,9.770163731,11.443438,13.11671227,13.11671227,13.11671227 +16,ID,3,FUEL COMB. OTHER,SO2,3.0835,2.91261,2.93443,2.60328,1.412965,1.442281,1.473275,1.010315586,1.008772253,1.007228919,1.005685586,1.302556155,1.599426725,1.896297295,1.386307884,0.876318473,0.366447379,0.302281139,0.238114899,0.173948659,0.145842894,0.11773713,0.089631365,0.089631365,0.089631365 +16,ID,3,FUEL COMB. OTHER,NOX,2.62157,2.48052,2.43874,2.27042,3.097498,3.168121,3.232781,3.093103105,3.081086438,3.069069771,3.057053105,3.839163926,4.621274747,5.403385568,4.617046537,3.830707507,3.044475797,2.922862922,2.801250048,2.679637173,2.688497557,2.697357942,2.706218326,2.706218326,2.706218326 +16,ID,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.6905,0.6905,0.69047,0.6905,1.182239,1.205314,1.23973,1.305267111,0.969776787,0.634286463,0.298796139,0.495095748,0.691395356,0.887694965,0.607361907,0.327028848,0.667738858,0.553647131,0.439555404,0.325463677,0.287491679,0.249519682,0.211547684,0.211547684,0.211547684 +16,ID,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,,,,,0.055441,0.05669,0.058211,0.5219,0.51954,0.51718,0.51482,0.343813716,0.172807432,0.001801148,0.001814985,0.001828822,0.127842659,0.08582884,0.043815021,0.001801202,0.001807406,0.00181361,0.001819814,0.001819814,0.001819814 +16,ID,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.47949,0.47949,0.47946,0.47949,0.759869,0.774619,0.796243,0.928856458,0.713718272,0.498580085,0.283441899,0.464272417,0.645102936,0.825933454,0.566187566,0.306441678,0.604317832,0.493330429,0.382343026,0.271355623,0.234376624,0.197397625,0.160418626,0.160418626,0.160418626 +16,ID,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.4519,1.4519,1.44817,1.4519,1.516104,1.546053,1.592345,1.61325,1.129533333,0.645816667,0.1621,0.146612633,0.131125267,0.1156379,0.127285167,0.138932433,0.2045797,0.275771014,0.346962328,0.418153642,0.403997028,0.389840413,0.375683798,0.375683798,0.375683798 +16,ID,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,0.935402,0.953325,0.978553,0.15607,0.133726667,0.111383333,0.08904,0.121583067,0.154126133,0.1866692,0.166716033,0.146762867,0.1268097,0.160843055,0.194876411,0.228909766,0.22426058,0.219611393,0.214962207,0.214962207,0.214962207 +16,ID,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.0069,0.0069,0.00681,0.0069,10.951714,11.17053,11.5197,12.30639,8.23747,4.16855,0.09963,3.0621054,6.0245808,8.9870562,9.916650789,10.84624538,11.80786847,8.057270582,4.306672696,0.55607481,0.548124524,0.540174237,0.53222395,0.53222395,0.53222395 +16,ID,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,16.0619,16.0619,16.06187,16.0619,14.86649,15.160963,15.619568,14.18279,14.14105333,14.09931667,14.05758,10.33336237,6.609144733,2.8849271,2.842510299,2.800093498,2.757676697,2.273136598,1.788596499,1.3040564,1.32025355,1.336450701,1.352647851,1.352647851,1.352647851 +16,ID,5,METALS PROCESSING,NH3,,,,,0.00206,0.00206,0.00206,0.00278,0.00278,0.00278,0.00278,0.003837243,0.004894487,0.00595173,0.00396782,0.00198391,0,0,0,,0,0,0,0,0 +16,ID,5,METALS PROCESSING,PM10,,,,,,,,,,,,,,,,,0.002402,0.002834633,0.003267267,0.0036999,0.0024666,0.0012333,0,0,0 +16,ID,5,METALS PROCESSING,PM25,,,,,,,,,,,,,,,,,0.0005885,0.000695108,0.000801717,0.000908325,0.00060555,0.000302775,0,0,0 +16,ID,6,PETROLEUM & RELATED INDUSTRIES,SO2,,,,,,,,0.00281,0.00281,0.00281,0.00281,0.001873333,0.000936667,,0,0,0,0.00028716,0.00057432,0.00086148,0.000576783,0.000292086,7.39E-06,7.39E-06,7.39E-06 +16,ID,6,PETROLEUM & RELATED INDUSTRIES,PM25,,,,,0.019889,0.020566,0.021401,0.042235298,0.042235298,0.042235298,0.042235298,0.028156865,0.014078433,,0,0,0,6.96E-05,0.000139165,0.000208748,0.00021019,0.000211632,0.000213073,0.000213073,0.000213073 +16,ID,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.0054,0.0108,0.0108,0.0108,0.0108,0.0108,0.0108,0.00164,0.00164,0.00164,0.00164,0.00127,0.0009,0.00053,0.000353343,0.000176686,2.85E-08,0.003141594,0.00628316,0.009424725,0.065697485,0.121970245,0.178243005,0.178243005,0.178243005 +16,ID,6,PETROLEUM & RELATED INDUSTRIES,NOX,,,,,,,,0.00383,0.00383,0.00383,0.00383,0.002553333,0.001276667,,0,0,0,0.001797411,0.003594821,0.005392232,0.00688763,0.008383029,0.009878428,0.009878428,0.009878428 +16,ID,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,0,0,0,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +16,ID,6,PETROLEUM & RELATED INDUSTRIES,CO,,,,,,,,0.01276,0.01276,0.01276,0.01276,0.008506667,0.004253333,,0,0,0,0.001029484,0.002058968,0.003088452,0.007331776,0.011575101,0.015818425,0.015818425,0.015818425 +16,ID,6,PETROLEUM & RELATED INDUSTRIES,PM10,,,,,0.027542,0.028479,0.029636,0.1436,0.1436,0.1436,0.1436,0.095733333,0.047866667,,0,0,0,7.15E-05,0.000142943,0.000214415,0.000214476,0.000214537,0.000214598,0.000214598,0.000214598 +16,ID,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.129937,0.133397,0.02843,2.1337225,2.210259167,2.286795833,2.3633325,2.277355766,2.191379033,2.105402299,1.779845866,1.454289433,1.117133,1.15998332,1.20283364,1.24568396,1.310083103,1.374482247,1.43888139,1.43888139,1.43888139 +16,ID,7,OTHER INDUSTRIAL PROCESSES,NOX,0.8484,0.80913,0.80917,0.81025,2.821403,2.911431,3.013775,1.75912,1.73052,1.70192,1.67332,1.735950655,1.798581309,1.861211964,1.588871585,1.316531207,1.044190828,1.068867856,1.093544884,1.118221912,1.068785238,1.019348565,0.969911891,0.969911891,0.969911891 +16,ID,7,OTHER INDUSTRIAL PROCESSES,PM10,9.61058,12.54455,13.68057,14.9174,11.305174,12.733954,13.32071235,2.037377679,2.0230362,2.008694722,1.994353243,3.550979705,5.107606167,6.664232629,5.780913485,4.897594342,4.883031233,5.043430519,5.203829804,5.364229089,5.068973955,4.773718822,4.478463688,4.478463688,4.478463688 +16,ID,7,OTHER INDUSTRIAL PROCESSES,PM25,4.92553,5.55411,5.76805,6.02858,4.007097,4.35705,4.865398575,1.252517575,1.257318802,1.262120029,1.266921255,1.514750629,1.762580003,2.010409377,1.70605954,1.401709704,1.534885035,1.58385202,1.632819005,1.681785991,1.683105074,1.684424157,1.68574324,1.68574324,1.68574324 +16,ID,7,OTHER INDUSTRIAL PROCESSES,SO2,5.1482,4.94069,4.90585,4.94521,0.472641,0.483891,0.497659,0.24715,0.392693333,0.538236667,0.68378,0.665959727,0.648139453,0.63031918,0.597962609,0.565606039,0.533249468,0.49351791,0.453786352,0.414054793,0.359245978,0.304437162,0.249628347,0.249628347,0.249628347 +16,ID,7,OTHER INDUSTRIAL PROCESSES,VOC,0.0744,0.1011,0.10573,0.10816,3.237967,3.371774,3.424339135,0.525572881,0.531629547,0.537686214,0.543742881,0.505885296,0.468027711,0.430170126,0.619811833,0.809453541,0.999095248,1.093473694,1.18785214,1.282230586,1.325441404,1.368652221,1.411863038,1.411863038,1.411863038 +16,ID,7,OTHER INDUSTRIAL PROCESSES,CO,2.9372,3.14799,3.14799,3.14472,8.067209,8.265921,8.677679236,7.0855,7.467096667,7.848693333,8.23029,8.162233762,8.094177523,8.026121285,7.978712798,7.93130431,7.883895823,8.081503741,8.279111658,8.476719576,8.205247888,7.933776201,7.662304513,7.662304513,7.662304513 +16,ID,8,SOLVENT UTILIZATION,CO,,,,,0.018842,0.019747,0.020839,0.00047,0.00033,0.00019,0.00005,3.33E-05,1.67E-05,,0,0,0,0,0,,0,0,0,0,0 +16,ID,8,SOLVENT UTILIZATION,VOC,20.7047,31.63142,31.98776,29.00902,173.451378,142.837962,148.1998,109.9181192,109.7987125,109.6793059,109.5598992,86.17139257,62.78288594,39.39437931,36.09332169,32.79226406,29.49120643,29.53197888,29.57275132,29.61352377,28.34809902,27.08267428,25.81724953,25.81724953,25.81724953 +16,ID,8,SOLVENT UTILIZATION,SO2,,,,,0.000295,0.00031,0.000327,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +16,ID,8,SOLVENT UTILIZATION,PM25,,,,,2.165715,2.185291,2.210215,1.451840966,1.451723989,1.451607012,1.451490034,0.967660023,0.483830011,,0,0,7.18E-05,5.60E-05,4.01E-05,2.43E-05,1.89E-05,1.35E-05,8.18E-06,8.18E-06,8.18E-06 +16,ID,8,SOLVENT UTILIZATION,PM10,,,,,2.217582,2.238398,2.264821,1.453424603,1.452976402,1.452528201,1.45208,0.968053333,0.484026667,,3.33E-07,6.67E-07,7.28E-05,5.71E-05,4.14E-05,2.58E-05,2.03E-05,1.49E-05,9.45E-06,9.45E-06,9.45E-06 +16,ID,8,SOLVENT UTILIZATION,NH3,,,,,0.019485,0.020019,0.020606,0.00085,0.00085,0.00085,0.00085,0.008899885,0.01694977,0.024999655,0.025779983,0.02656031,0.027340638,0.027608323,0.027876008,0.028143693,0.028401362,0.028659032,0.028916702,0.028916702,0.028916702 +16,ID,8,SOLVENT UTILIZATION,NOX,,,,,0.044386,0.046517,0.049092,0.00138,0.001213333,0.001046667,0.00088,0.000586667,0.000293333,,1.10E-08,2.20E-08,3.29E-08,3.29E-08,3.29E-08,,0,0,0,0,0 +16,ID,9,STORAGE & TRANSPORT,NOX,,,,,0.000548,0.000562,0.00058,0.00487,0.023196667,0.041523333,0.05985,0.0405802,0.0213104,0.0020406,0.003622633,0.005204667,0.0067867,0.007794467,0.008802235,0.009810002,0.009255379,0.008700755,0.008146132,0.008146132,0.008146132 +16,ID,9,STORAGE & TRANSPORT,CO,,,,,,,,0.01353,0.198726667,0.383923333,0.56912,0.427456367,0.285792733,0.1441291,0.149429047,0.154728993,0.16002894,0.160455244,0.160881548,0.161307852,0.15774782,0.154187787,0.150627755,0.150627755,0.150627755 +16,ID,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,8.46E-15,1.69E-14,2.54E-14,2.54E-14,2.54E-14 +16,ID,9,STORAGE & TRANSPORT,PM10,,,,,1.056076,1.098575,1.15042,1.053220544,0.818153306,0.583086069,0.348018831,0.301821858,0.255624885,0.209427912,0.140101609,0.070775307,0.165494289,0.156274831,0.147055372,0.137835914,0.14133287,0.144829827,0.148326783,0.148326783,0.148326783 +16,ID,9,STORAGE & TRANSPORT,SO2,,,,,,,,,0.059843333,0.119686667,0.17953,0.138040733,0.096551467,0.0550622,0.055025163,0.054988127,0.05495109,0.055038474,0.055125857,0.055213241,0.055114795,0.05501635,0.054917904,0.054917904,0.054917904 +16,ID,9,STORAGE & TRANSPORT,VOC,10.7649,9.39144,9.39337,9.38525,9.924294,9.868928,10.06699,8.614773406,8.574290073,8.53380674,8.493323406,6.819324593,5.145325779,3.471326966,5.174195422,6.877063879,7.13482864,8.565650809,9.996472977,11.42729515,12.20194097,12.9765868,13.75123262,13.75123262,13.75123262 +16,ID,9,STORAGE & TRANSPORT,PM25,,,,,0.675089,0.702275,0.735446,0.373984537,0.312250824,0.250517112,0.1887834,0.161282698,0.133781997,0.106281295,0.070926665,0.035572035,0.052010183,0.056030556,0.060050928,0.064071301,0.065185577,0.066299853,0.067414128,0.067414128,0.067414128 +16,ID,10,WASTE DISPOSAL & RECYCLING,PM10,1.44761,2.71833,2.7678,2.90521,7.034379,2.693433,2.697602,6.068452144,6.066996763,6.065541381,6.064086,5.429008681,4.793931362,4.158854042,3.06176811,1.964682178,1.119399346,1.243086986,1.366774625,1.490462264,1.329170531,1.167878798,1.006587065,1.006587065,1.006587065 +16,ID,10,WASTE DISPOSAL & RECYCLING,VOC,2.1452,2.07558,2.11958,2.21881,2.373346,1.97475,1.977894,1.31187,1.31187,1.31187,1.31187,1.486872006,1.661874011,1.836876017,1.370179804,0.903483591,0.436787378,0.756421333,1.076055288,1.395689244,1.28658436,1.177479476,1.068374592,1.068374592,1.068374592 +16,ID,10,WASTE DISPOSAL & RECYCLING,PM25,1.25912,2.6024,2.64335,2.77799,6.462194,2.435437,2.437591,5.574639558,5.573763718,5.572887878,5.572012038,4.944839883,4.317667729,3.690495574,2.708147299,1.725799023,0.801818048,0.941002004,1.08018596,1.219369916,1.099922835,0.980475754,0.861028673,0.861028673,0.861028673 +16,ID,10,WASTE DISPOSAL & RECYCLING,NOX,0.3316,0.59353,0.5952,0.63138,1.247861,0.49565,0.49613,0.91931,0.91931,0.91931,0.91931,0.973290564,1.027271128,1.081251692,0.793328363,0.505405034,0.217481704,0.279380228,0.341278752,0.403177276,0.343518368,0.28385946,0.224200552,0.224200552,0.224200552 +16,ID,10,WASTE DISPOSAL & RECYCLING,NH3,0.23286,0.40756,0.40756,0.42116,0.356143,0.36184,0.373239,0.37635,0.37635,0.37635,0.37635,0.388554674,0.400759348,0.412964022,0.288446989,0.163929955,0.039412922,0.23009285,0.420772778,0.611452705,0.62343125,0.635409794,0.647388339,0.647388339,0.647388339 +16,ID,10,WASTE DISPOSAL & RECYCLING,CO,10.7473,16.0619,15.79324,16.91173,26.029706,12.126664,12.133002,14.21778,14.21778,14.21778,14.21778,17.10495305,19.9921261,22.87929915,16.99055577,11.10181238,5.207306418,7.342725318,9.478144218,11.61356312,9.831122429,8.048681739,6.26624105,6.26624105,6.26624105 +16,ID,10,WASTE DISPOSAL & RECYCLING,SO2,0.0563,0.0381,0.04083,0.04172,0.194204,0.096586,0.098084,0.15314,0.15314,0.15314,0.15314,0.149519445,0.14589889,0.142278335,0.119314373,0.09635041,0.073386448,0.08771258,0.102038712,0.116364845,0.124986018,0.13360719,0.142228363,0.142228363,0.142228363 +16,ID,11,HIGHWAY VEHICLES,CO,569.54601,446.67839,432.34739,419.08039,391.02866,370.92721,370.62944,347.7891762,318.6820585,289.5749408,260.4678231,264.2525672,268.0373112,235.9543784,209.7256139,197.4790233,215.1359733,213.355161,211.5743487,209.7935363,197.3314184,160.2861552,155.8224331,139.8862984,133.0366926 +16,ID,11,HIGHWAY VEHICLES,NH3,0.73571,1.21273,1.36664,1.32253,1.36853,1.33841,1.40329,0.809511803,0.749538494,0.689565185,0.629591876,0.677820147,0.726048417,0.661624968,0.63085503,0.590152037,0.671896051,0.673085631,0.674275211,0.675464791,0.66187451,0.645018052,0.652844373,0.600502895,0.58729639 +16,ID,11,HIGHWAY VEHICLES,NOX,50.8078,50.91579,51.38926,50.52423,49.01268,45.62605,44.35969,37.63301784,34.38587943,31.13874102,27.89160262,29.60722156,31.3228405,28.09908954,50.97168688,45.54251509,50.99237211,50.15251741,49.31266271,48.47280801,45.04601583,36.16448415,34.21920941,31.66382571,29.41901001 +16,ID,11,HIGHWAY VEHICLES,PM10,2.18265,1.7314,1.65485,1.53554,1.43342,1.26453,1.21704,1.306028135,1.212797717,1.119567299,1.026336881,1.156626548,1.286916215,1.213585146,2.515439237,2.176614426,2.525183859,2.434003137,2.342822416,2.251641695,2.112581746,1.799541324,1.829229776,1.825623515,1.761787338 +16,ID,11,HIGHWAY VEHICLES,PM25,1.85466,1.40934,1.32743,1.21825,1.1199,0.97147,0.92121,1.012674555,0.92240618,0.832137805,0.74186943,0.80170635,0.861543269,0.797867765,1.984174522,1.650319981,1.628362258,1.563678716,1.498995174,1.434311633,1.283998618,1.054482603,1.037726121,0.986576597,0.924545372 +16,ID,11,HIGHWAY VEHICLES,SO2,2.78854,1.68984,1.73568,1.74938,1.78103,1.46615,1.52815,1.045872572,0.899461163,0.753049754,0.606638345,0.471710596,0.336782847,0.257291905,0.211374175,0.278200823,0.163211111,0.161000184,0.158789256,0.156578329,0.135526033,0.138525622,0.129209173,0.072512969,0.065186446 +16,ID,11,HIGHWAY VEHICLES,VOC,45.53437,32.76926,31.33813,30.4754,28.95845,26.84137,26.4561,21.26432377,19.87635713,18.48839048,17.10042383,19.24803565,21.39564747,17.91775419,18.9271372,16.95579048,24.15209926,23.49750719,22.84291511,22.18832303,21.25297644,17.82233068,17.94403403,15.3527057,14.26860595 +16,ID,12,OFF-HIGHWAY,PM10,2.48853,2.50979,2.45114,2.40013,2.36627,2.31317,2.25792,2.433921225,2.393459762,2.352998299,2.312536836,2.197618242,2.082699647,2.012817937,1.956623492,1.904637501,1.891233377,1.788865495,1.686497612,1.584129729,1.438924995,1.179037449,1.148515528,1.099610439,1.050705349 +16,ID,12,OFF-HIGHWAY,PM25,2.27686,2.2962,2.24306,2.19779,2.16494,2.11646,2.06526,2.325278011,2.285253539,2.245229067,2.205204595,2.080964564,1.956724532,1.870292599,1.781810454,1.731746582,1.777360651,1.680256246,1.583151842,1.486047437,1.34426619,1.111363137,1.060703696,1.017073874,0.973444053 +16,ID,12,OFF-HIGHWAY,SO2,1.82631,2.27516,2.28052,2.30424,2.34327,2.39246,2.44144,2.24008846,2.26315264,2.286216819,2.309280999,1.652489493,0.995697988,0.416194359,0.399214767,0.264280556,0.173954589,0.142508599,0.111062609,0.079616619,0.085713845,0.095131815,0.097908298,0.099021912,0.100135526 +16,ID,12,OFF-HIGHWAY,CO,124.03294,139.01001,135.93161,136.32266,137.23841,138.56606,141.3449,149.2039439,145.3044102,141.4048765,137.5053428,131.6258337,125.7463245,119.3262166,107.2749733,104.3255031,103.1541018,99.39937355,95.64464533,91.88991711,89.60204474,85.56180789,85.0263,84.78801908,84.54973815 +16,ID,12,OFF-HIGHWAY,VOC,19.90639,21.58863,20.8043,20.56375,20.60218,20.63798,20.68466,23.8658727,23.86774824,23.86962378,23.87149931,23.6702958,23.46909228,22.56305245,21.77932205,21.02823021,20.39373778,19.30662443,18.21951108,17.13239773,15.21073676,12.07392727,11.36741482,10.94381237,10.52020993 +16,ID,12,OFF-HIGHWAY,NH3,0.16254,0.16038,0.14941,0.15716,0.02038,0.02038,0.02038,0.01728385,0.017617663,0.017951475,0.018285288,0.018927751,0.019570213,0.020639666,0.020229965,0.02054189,0.021434205,0.021645845,0.021857486,0.022069127,0.02086317,0.01813204,0.018451255,0.01849733,0.018543405 +16,ID,12,OFF-HIGHWAY,NOX,24.29757,26.92488,26.86139,26.77495,26.1559,26.22066,26.24517,23.74096454,23.20759147,22.6742184,22.14084533,22.55738311,22.97392088,24.85658901,22.49265978,22.09803304,23.11847377,21.82927327,20.54007277,19.25087228,17.76166519,15.09616479,14.78325103,14.29578278,13.80831454 +16,ID,14,MISCELLANEOUS,PM10,322.48448,733.94724,520.6049,422.98064,440.89194,591.457379,430.8940382,318.1881801,355.9056896,393.6231992,431.3407087,413.9404699,396.540231,379.1399922,365.9036296,352.667267,339.4309045,336.8079739,334.1850433,331.5621127,351.9562643,372.3504158,392.7445674,392.7445674,392.7445674 +16,ID,14,MISCELLANEOUS,VOC,15.76419,437.9333,39.34336,72.00185,73.454922,133.975339,56.482378,12.03055,100.5290315,189.027513,277.5259945,200.2838761,123.0417577,45.79963928,30.79416259,15.7886859,0.783209216,1.506712204,2.230215192,2.95371818,3.800984801,4.648251422,5.495518042,5.495518042,5.495518042 +16,ID,14,MISCELLANEOUS,PM25,79.17854,342.22868,109.51768,122.83735,163.298867,281.986449,143.1840223,40.57020406,72.53420315,104.4982023,136.4622014,111.7021205,86.9420396,62.18195872,55.0546645,47.92737027,40.80007605,42.40776781,44.01545957,45.62315133,47.17014603,48.71714073,50.26413543,50.26413543,50.26413543 +16,ID,14,MISCELLANEOUS,NOX,13.99577,92.1123,9.42431,18.50196,11.525307,41.983095,6.22609,0.275499182,4.83100169,9.386504199,13.94200671,9.370669786,4.799332864,0.227995942,0.283143586,0.338291229,0.393438872,0.422670202,0.451901531,0.481132861,0.457635814,0.434138768,0.410641721,0.410641721,0.410641721 +16,ID,14,MISCELLANEOUS,NH3,51.23242,62.64044,74.60061,70.28668,70.265303,77.81512,62.82033765,62.84879502,69.00524365,75.16169228,81.31814091,88.14858063,94.97902035,101.8094601,88.12873704,74.44801401,60.76729099,63.71269399,66.658097,69.60350001,75.7831965,81.96289299,88.14258948,88.14258948,88.14258948 +16,ID,14,MISCELLANEOUS,CO,332.25669,3221.37093,326.0663,635.79938,781.122437,2275.161402,619.959217,82.62284,458.2755756,833.9283111,1209.581047,825.4039098,441.2267729,57.04963605,41.1219908,25.19434555,9.266700307,10.04503566,10.82337102,11.60170637,11.81595058,12.03019479,12.244439,12.244439,12.244439 +16,ID,14,MISCELLANEOUS,SO2,0.35697,3.43793,0.33145,0.63526,4.1871,11.51085,1.70652,0.341701474,2.944994579,5.548287684,8.151580789,5.455279366,2.758977944,0.062676521,0.061845609,0.061014697,0.060183785,0.067369123,0.07455446,0.081739798,0.078832008,0.075924218,0.073016428,0.073016428,0.073016428 +16,ID,15,WILDFIRES,PM10,,,,,,,,3.99200277,3.99200277,3.99200277,61.62897639,61.62897639,61.62897639,21.24876154,21.24876154,21.24876154,48.23623116,48.23623116,48.23623116,41.45708894,41.45708894,41.45708894,157.6196358,157.6196358,157.6196358 +16,ID,15,WILDFIRES,PM25,,,,,,,,3.382740822,3.382740822,3.382740822,52.22794609,52.22794609,52.22794609,18.00740989,18.00740989,18.00740989,40.87816178,40.87816178,40.87816178,35.13312875,35.13312875,35.13312875,133.5759576,133.5759576,133.5759576 +16,ID,15,WILDFIRES,SO2,,,,,,,,0.261629863,0.261629863,0.261629863,4.338000432,4.338000432,4.338000432,1.389198265,1.389198265,1.389198265,3.23277867,3.23277867,3.23277867,2.974475515,2.974475515,2.974475515,11.10808608,11.10808608,11.10808608 +16,ID,15,WILDFIRES,VOC,,,,,,,,9.495545296,9.495545296,9.495545296,144.5348671,144.5348671,144.5348671,50.62905734,50.62905734,50.62905734,114.3400347,114.3400347,114.3400347,96.80577499,96.80577499,96.80577499,369.5560465,369.5560465,369.5560465 +16,ID,15,WILDFIRES,CO,,,,,,,,41.30952,41.30952,41.30952,613.674726,613.674726,613.674726,215.4837949,215.4837949,215.4837949,486.2647352,486.2647352,486.2647352,410.7487663,410.7487663,410.7487663,1569.017568,1569.017568,1569.017568 +16,ID,15,WILDFIRES,NOX,,,,,,,,0.421887005,0.421887005,0.421887005,7.478219535,7.478219535,7.478219535,2.187553984,2.187553984,2.187553984,5.256593094,5.256593094,5.256593094,5.237366257,5.237366257,5.237366257,19.17516721,19.17516721,19.17516721 +16,ID,15,WILDFIRES,NH3,,,,,,,,0.65943878,0.65943878,0.65943878,10.05459945,10.05459945,10.05459945,3.522026187,3.522026187,3.522026187,7.954087959,7.954087959,7.954087959,6.734311644,6.734311644,6.734311644,25.70824839,25.70824839,25.70824839 +16,ID,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,3.197565,20.06986847,36.94217194,53.81447542,53.69035757,53.56623972,53.44212188,45.94891593,38.45570998,30.96250403,30.96250403,30.96250403 +16,ID,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,1.736475224,1.671567275,1.606659326,1.541751377,1.549209705,1.556668033,1.564126362,1.360878659,1.157630956,0.954383254,0.954383254,0.954383254 +16,ID,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,49.20398,109.0631144,168.9222489,228.7813833,228.2097976,227.6382119,227.0666262,195.1652312,163.2638362,131.3624412,131.3624412,131.3624412 +16,ID,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.3716742,1.49565522,2.61963624,3.74361726,3.734982289,3.726347318,3.717712348,3.196446899,2.67518145,2.153916001,2.153916001,2.153916001 +16,ID,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,1.283576,1.702746087,2.121916173,2.54108626,2.571724609,2.602362957,2.633001306,2.317045808,2.00109031,1.685134812,1.685134812,1.685134812 +16,ID,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,7.020166,12.26517585,17.5101857,22.75519555,22.73137467,22.70755378,22.68373289,19.54500702,16.40628115,13.26755528,13.26755528,13.26755528 +16,ID,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,6.388671,10.68713396,14.98559692,19.28405988,19.2638732,19.24368653,19.22349985,16.56356337,13.90362689,11.24369041,11.24369041,11.24369041 +17,IL,1,FUEL COMB. ELEC. UTIL.,VOC,1.19513,1.82869,2.02597,1.9704,1.595583,2.387063,2.412646,1.64758067,1.809255202,1.970929733,2.132604265,2.175792007,2.218979748,2.26216749,2.20161667,2.141065851,2.080510831,1.931848973,1.783187115,1.634525257,1.439236693,1.243948129,1.048659565,1.048659565,1.048659565 +17,IL,1,FUEL COMB. ELEC. UTIL.,SO2,900.03555,738.8129,828.00483,810.61951,729.53209,453.096796,406.663049,367.2489486,365.333175,362.899558,337.9721503,280.340067,272.570744,271.8432261,254.0548368,236.2671021,218.4793274,191.0799466,163.6805657,136.2811849,109.0057775,81.73037015,54.45496278,57.346377,50.116765 +17,IL,1,FUEL COMB. ELEC. UTIL.,PM25,1.45328,3.48522,3.2414,3.3699,30.455105,17.521128,16.921741,14.86156457,15.55342365,16.24528273,16.93714181,13.69140388,10.44566595,7.199928015,7.277639565,7.355351114,7.433112664,6.538746889,5.644381115,4.75001534,4.120296506,3.490577671,2.860858836,2.860858836,2.860858836 +17,IL,1,FUEL COMB. ELEC. UTIL.,PM10,4.53368,6.19098,5.64328,5.86575,33.585632,20.139416,19.534738,19.30920628,20.07985254,20.8504988,21.62114505,17.33455627,13.04796748,8.7613787,9.310676912,9.859975124,10.40932334,8.886448747,7.363574159,5.84069957,4.992893885,4.145088199,3.297282514,3.297282514,3.297282514 +17,IL,1,FUEL COMB. ELEC. UTIL.,NOX,262.79843,292.20226,315.3904,292.74328,286.03339,240.425664,214.185405,181.2865811,145.782627,141.315734,134.952141,118.705603,118.230492,124.3767697,107.1341712,89.88672165,72.63892214,64.23932125,55.83972037,47.44011948,41.49837122,35.55662296,29.6148747,31.873373,27.166703 +17,IL,1,FUEL COMB. ELEC. UTIL.,CO,9.51271,11.77582,13.35558,13.54681,14.70608,16.505299,16.287508,16.09778552,16.76313882,17.42849212,18.09384541,18.13703999,18.18023456,18.22342914,19.18326778,20.14310642,21.10314507,21.53110771,21.95907035,22.38703299,19.83924147,17.29144995,14.74365844,14.74365844,14.74365844 +17,IL,1,FUEL COMB. ELEC. UTIL.,NH3,,0.07531,0.09998,0.11827,0.34128,0.083225,0.089699,0.18481293,0.188402901,0.191992872,0.195582843,0.193161828,0.190740814,0.188319799,0.210882165,0.233444531,0.256006897,0.277053417,0.298099938,0.319146458,0.320444467,0.321742476,0.323040485,0.323040485,0.323040485 +17,IL,2,FUEL COMB. INDUSTRIAL,NOX,33.76629,97.24892,97.30174,95.55111,94.81466,95.460741,95.932254,61.28183707,62.23839469,63.19495231,64.15150993,61.18699453,58.22247912,55.25796372,52.86294017,50.46791663,48.07541248,47.86759243,47.65977237,47.45195232,40.48160885,33.51126538,26.54092191,26.54092191,26.54092191 +17,IL,2,FUEL COMB. INDUSTRIAL,VOC,2.10866,6.41111,6.46825,6.38178,6.63871,6.616796,6.642911,2.516300033,2.807538813,3.098777594,3.390016374,3.477202543,3.564388711,3.65157488,3.419456723,3.187338566,2.955398579,2.86159022,2.767781862,2.673973504,2.402255166,2.130536828,1.858818491,1.858818491,1.858818491 +17,IL,2,FUEL COMB. INDUSTRIAL,SO2,131.30298,138.23972,138.5757,135.21581,135.38044,135.99727,139.572824,52.7773913,56.98857503,61.19975876,65.41094249,58.47586849,51.54079449,44.6057205,40.8098507,37.01398091,33.21807001,31.66010602,30.10214202,28.54417803,24.610021,20.67586396,16.74170693,16.74170693,16.74170693 +17,IL,2,FUEL COMB. INDUSTRIAL,PM10,6.20714,6.18096,6.17633,6.05604,8.133064,8.19638,8.425663,2.482337021,2.770415826,3.058494631,3.346573436,3.449468247,3.552363059,3.65525787,3.490094878,3.324931885,3.158321042,3.173957988,3.189594934,3.20523188,2.92413594,2.643039999,2.361944059,2.361944059,2.361944059 +17,IL,2,FUEL COMB. INDUSTRIAL,NH3,0.85301,1.44601,1.44583,1.43994,1.544499,1.563539,1.560537,0.691517117,0.67742938,0.663341644,0.649253907,0.638708875,0.628163842,0.61761881,0.598486476,0.579354141,0.560221377,0.577865355,0.595509334,0.613153313,0.597549078,0.581944843,0.566340609,0.566340609,0.566340609 +17,IL,2,FUEL COMB. INDUSTRIAL,CO,5.24115,15.96052,15.93794,15.72524,26.36874,26.374682,27.098888,26.34600697,27.4347624,28.52351783,29.61227326,29.34303898,29.07380469,28.80457041,27.6254827,26.446395,25.26864709,25.33499916,25.40135122,25.46770329,23.49411139,21.52051948,19.54692758,19.54692758,19.54692758 +17,IL,2,FUEL COMB. INDUSTRIAL,PM25,4.28267,4.68426,4.69094,4.61094,5.982499,6.062789,6.184209,1.209652099,1.613298706,2.016945312,2.420591918,2.625945445,2.831298972,3.036652499,2.925470547,2.814288595,2.694963476,2.725111928,2.755260381,2.785408833,2.5832598,2.381110767,2.178961734,2.178961734,2.178961734 +17,IL,3,FUEL COMB. OTHER,PM25,7.72145,10.34662,10.31517,10.22215,12.514762,13.196255,13.263874,7.995878205,8.02681449,8.057750775,8.088687061,10.40715956,12.72563206,15.04410456,14.02566517,13.00722579,12.11448137,12.23790686,12.36133236,12.48475786,11.08497909,9.685200328,8.285421561,8.285421561,8.285421561 +17,IL,3,FUEL COMB. OTHER,SO2,34.00617,40.48328,41.43705,38.35029,34.574544,35.290539,36.123666,12.17819828,12.06746446,11.95673065,11.84599684,10.82281942,9.799642006,8.776464591,8.187210065,7.597955538,7.027426662,6.533505024,6.039583386,5.545661747,5.070169649,4.59467755,4.119185452,4.119185452,4.119185452 +17,IL,3,FUEL COMB. OTHER,VOC,14.12928,33.34094,33.00421,32.53227,29.355479,31.366915,31.38979,35.79759275,28.78231565,21.76703854,14.75176144,14.51373487,14.2757083,14.03768173,13.73458756,13.43149338,13.36992766,13.57019199,13.77045633,13.97072066,12.39157279,10.81242492,9.233277054,9.233277054,9.233277054 +17,IL,3,FUEL COMB. OTHER,NOX,115.56962,131.82924,125.35326,114.9213,38.45841,38.936146,39.465568,38.44433246,38.41764624,38.39096002,38.3642738,38.33842172,38.31256965,38.28671757,37.57413918,36.8615608,36.07021906,37.403296,38.73637294,40.06944988,37.14685918,34.22426848,31.30167779,31.30167779,31.30167779 +17,IL,3,FUEL COMB. OTHER,NH3,0.23528,0.26654,0.25756,0.2338,1.026373,1.043803,1.054323,0.102273465,0.100269035,0.098264605,0.096260175,1.933109887,3.7699596,5.606809313,5.384665709,5.162522104,4.897663355,5.083881241,5.270099126,5.456317012,5.035983553,4.615650094,4.195316635,4.195316635,4.195316635 +17,IL,3,FUEL COMB. OTHER,CO,71.06596,91.15134,89.79789,87.5471,84.579716,89.342865,89.539959,77.79265143,77.85318619,77.91372094,77.9742557,90.77277877,103.5713018,116.3698249,108.2031138,100.0364027,91.54399537,92.74104301,93.93809064,95.13513828,84.35729668,73.57945509,62.80161349,62.80161349,62.80161349 +17,IL,3,FUEL COMB. OTHER,PM10,8.47652,11.10653,11.0977,10.96959,13.311777,14.008883,14.095167,8.281131539,8.334079416,8.387027294,8.439975171,10.68259016,12.92520514,15.16782013,14.14394388,13.12006762,12.22186647,12.3393315,12.45679653,12.57426156,11.15885058,9.743439601,8.328028622,8.328028622,8.328028622 +17,IL,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,5.86507,5.86468,5.99718,6.07101,0.001334,0.001369,0.001417,0.10031,0.2767294,0.4531488,0.6295682,0.623869333,0.618170467,0.6124716,0.55221774,0.49196388,0.43171002,0.453373608,0.475037197,0.496700785,0.546718625,0.596736466,0.646754306,0.646754306,0.646754306 +17,IL,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.99215,1.64626,1.65719,1.64249,1.38626,1.410627,1.44219,1.93640536,1.611710907,1.287016453,0.962322,0.954404633,0.946487267,0.9385699,0.894426685,0.85028347,0.806140255,0.777250757,0.748361258,0.71947176,0.62932253,0.5391733,0.44902407,0.44902407,0.44902407 +17,IL,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,9.53464,4.74461,4.85014,4.89217,3.429164,3.532249,3.672835,1.40654173,1.261487816,1.116433901,0.971379987,0.869832358,0.768284729,0.6667371,0.697783396,0.728829693,0.759875989,0.77425014,0.788624292,0.802998443,0.811673631,0.82034882,0.829024008,0.829024008,0.829024008 +17,IL,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,6.91365,3.61366,3.68581,3.71162,2.626677,2.704192,2.809777,1.002486974,0.936849201,0.871211428,0.805573656,0.726733033,0.64789241,0.569051787,0.598596323,0.628140859,0.657685394,0.669434328,0.681183261,0.692932194,0.700460654,0.707989114,0.715517574,0.715517574,0.715517574 +17,IL,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,16.18401,15.28122,15.83904,15.68533,16.44531,16.678954,17.057901,12.62652297,13.22255141,13.81857986,14.4146083,12.20754087,10.00047343,7.793406,5.559764377,3.326122755,1.092481132,1.078385362,1.064289592,1.050193822,0.918621695,0.787049567,0.65547744,0.65547744,0.65547744 +17,IL,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,10.27777,19.22912,19.37668,19.53845,13.38406,13.651097,14.216696,10.81866339,12.34969579,13.88072818,15.41176058,12.21272186,9.013683145,5.814644428,5.924779064,6.034913699,6.145048335,6.124969412,6.104890488,6.084811565,5.153559547,4.222307529,3.29105551,3.29105551,3.29105551 +17,IL,4,CHEMICAL & ALLIED PRODUCT MFG,CO,38.13086,21.62939,21.96459,22.14534,15.61345,16.033232,16.605954,1.66547031,2.051375973,2.437281637,2.8231873,2.580154333,2.337121367,2.0940884,1.935135732,1.776183063,1.617230395,1.57282612,1.528421846,1.484017571,1.434212107,1.384406643,1.334601179,1.334601179,1.334601179 +17,IL,5,METALS PROCESSING,CO,57.59347,70.53979,76.95084,78.15806,53.40002,56.113946,60.852145,14.45224765,17.27335577,20.09446388,22.915572,22.43290194,21.95023188,21.46756182,21.59011953,21.71267724,21.83523495,19.79026662,17.7452983,15.70032997,13.89448986,12.08864974,10.28280962,10.28280962,10.28280962 +17,IL,5,METALS PROCESSING,VOC,2.76647,12.35538,13.37397,13.49834,4.12508,4.312206,4.649408,1.13913181,1.279879203,1.420626597,1.56137399,1.538957593,1.516541197,1.4941248,1.37168417,1.249243541,1.126802911,1.091549599,1.056296287,1.021042975,0.864831532,0.708620088,0.552408645,0.552408645,0.552408645 +17,IL,5,METALS PROCESSING,SO2,14.01264,9.8108,10.66491,10.78001,7.81583,8.230693,8.912908,0.57842508,0.650056587,0.721688093,0.7933196,1.037871637,1.282423673,1.52697571,1.797517727,2.068059743,2.33860176,2.323399318,2.308196875,2.292994433,2.133633476,1.974272518,1.814911561,1.814911561,1.814911561 +17,IL,5,METALS PROCESSING,PM25,29.54576,10.61174,11.4302,11.5434,9.665551,10.121693,10.927758,1.914115482,1.932002825,1.949890167,1.96777751,1.802794913,1.637812316,1.472829718,1.549934123,1.627038528,1.704098367,1.64933715,1.594575933,1.539814716,1.394387029,1.248959342,1.103531655,1.103531655,1.103531655 +17,IL,5,METALS PROCESSING,PM10,40.10275,13.4219,14.45635,14.58971,10.874601,11.388072,12.296834,2.750454587,2.782420991,2.814387396,2.8463538,2.6946017,2.5428496,2.3910975,2.370394369,2.349691237,2.328938106,2.246303269,2.163668432,2.081033595,1.900667122,1.720300648,1.539934175,1.539934175,1.539934175 +17,IL,5,METALS PROCESSING,NH3,0.63053,0.41303,0.45002,0.45424,0.0083,0.008631,0.009294,0.00728461,0.014256207,0.021227803,0.0281994,0.0200606,0.0119218,0.003783,0.00381577,0.003848539,0.003881309,0.003803455,0.003725602,0.003647748,0.003541238,0.003434727,0.003328217,0.003328217,0.003328217 +17,IL,5,METALS PROCESSING,NOX,2.69657,11.66653,12.6147,12.77396,6.37953,6.71298,7.281313,0.74714992,0.946377697,1.145605473,1.34483325,1.363980593,1.383127937,1.40227528,1.473817745,1.545360211,1.616902676,1.596149338,1.575395999,1.554642661,1.209113473,0.863584285,0.518055097,0.518055097,0.518055097 +17,IL,6,PETROLEUM & RELATED INDUSTRIES,VOC,10.68137,7.61489,7.91185,7.84798,6.30469,5.180979,5.223619,2.38078007,2.236305647,2.091831223,1.9473568,2.095367657,2.243378513,2.39138937,11.30194584,20.21250232,29.53011904,29.51250921,29.49489938,29.47728955,38.0031753,46.52906105,55.05494679,55.05494679,55.05494679 +17,IL,6,PETROLEUM & RELATED INDUSTRIES,CO,11.28396,1.68438,1.71931,1.70268,1.92215,1.936584,1.955202,5.02312731,5.32352394,5.62392057,5.9243172,5.237687367,4.551057533,3.8644277,7.507563386,11.15069907,14.79383476,14.51548592,14.23713709,13.95878825,16.5208911,19.08299395,21.6450968,21.6450968,21.6450968 +17,IL,6,PETROLEUM & RELATED INDUSTRIES,NH3,4.20872,1.27066,1.32393,1.31021,0.53007,0.53219,0.535901,0.00957,0.02461,0.03965,0.05469,0.0593,0.06391,0.06852,0.193150067,0.317780133,0.4424102,0.383636732,0.324863263,0.266089795,0.208872386,0.151654977,0.094437568,0.094437568,0.094437568 +17,IL,6,PETROLEUM & RELATED INDUSTRIES,NOX,1.39569,5.16906,5.35923,5.31569,4.51952,4.542705,4.574587,5.71553197,5.726313847,5.737095723,5.7478776,5.243105567,4.738333533,4.2335615,6.298782854,8.364004208,10.42922556,10.37217037,10.31511517,10.25805998,11.55265002,12.84724006,14.1418301,14.1418301,14.1418301 +17,IL,6,PETROLEUM & RELATED INDUSTRIES,PM10,11.37059,2.37551,2.42454,2.39409,2.732272,2.742553,2.755177,2.659758612,2.460559869,2.261361126,2.062162383,1.930370422,1.798578461,1.6667865,1.517215396,1.367644292,1.218303189,1.265463058,1.312622927,1.359782797,1.365449371,1.371115944,1.376782518,1.376782518,1.376782518 +17,IL,6,PETROLEUM & RELATED INDUSTRIES,PM25,5.0446,1.34972,1.3871,1.37018,1.521609,1.528694,1.537413,2.128368855,2.013095637,1.897822418,1.7825492,1.682482517,1.582415834,1.482349152,1.304590479,1.126831806,0.949073133,0.973487387,0.997901641,1.022315895,1.060374556,1.098433217,1.136491877,1.136491877,1.136491877 +17,IL,6,PETROLEUM & RELATED INDUSTRIES,SO2,89.54775,61.19122,63.92597,63.36128,55.58574,55.809549,56.156326,46.15014769,45.25625053,44.36235336,43.4684562,37.99664234,32.52482848,27.05301462,18.72558088,10.39814714,2.070713393,2.041829586,2.012945779,1.984061971,1.661965184,1.339868397,1.01777161,1.01777161,1.01777161 +17,IL,7,OTHER INDUSTRIAL PROCESSES,CO,0.46239,1.79168,1.90607,1.96833,1.77361,1.878304,3.277489039,16.21477125,16.9648701,17.71496895,18.4650678,14.43941553,10.41376327,6.388111,5.855058857,5.322006714,4.78895457,7.718047386,10.6471402,13.57623302,12.51138886,11.4465447,10.38170055,10.38170055,10.38170055 +17,IL,7,OTHER INDUSTRIAL PROCESSES,NH3,1.03326,2.6264,2.76757,2.81997,3.821175,3.966381,4.157953,1.3967881,1.384867695,1.37294729,1.361026885,0.987499223,0.613971562,0.2404439,0.225588872,0.210733843,0.196253815,0.281680005,0.367106196,0.452532386,0.415003613,0.377474839,0.339946066,0.339946066,0.339946066 +17,IL,7,OTHER INDUSTRIAL PROCESSES,NOX,3.43855,12.06972,13.08792,13.60905,10.86242,11.621269,12.502167,18.5019135,17.85038569,17.19885787,16.54733006,15.45539665,14.36346325,13.27152984,11.73931211,10.20709438,8.674876646,8.047273889,7.419671132,6.792068375,6.219904844,5.647741313,5.075577783,5.075577783,5.075577783 +17,IL,7,OTHER INDUSTRIAL PROCESSES,PM10,48.68161,55.61813,56.99417,59.02977,38.607891,39.565405,43.7395263,38.44746793,37.80946287,37.17145781,36.53345274,31.80622388,27.07899501,22.35176614,18.37866363,14.40556113,10.43227162,10.71403351,10.99579539,11.27755728,11.1831868,11.08881632,10.99444584,10.99444584,10.99444584 +17,IL,7,OTHER INDUSTRIAL PROCESSES,PM25,20.07791,20.01458,20.66416,21.20307,14.472209,14.943009,18.52053319,14.24015573,14.32937569,14.41859566,14.50781562,12.46583783,10.42386003,8.381882235,7.924794453,7.467706671,7.010660273,7.167914802,7.325169332,7.482423862,7.517546013,7.552668165,7.587790316,7.587790316,7.587790316 +17,IL,7,OTHER INDUSTRIAL PROCESSES,SO2,24.40599,23.78946,25.69522,26.63682,15.29552,16.380307,17.658334,15.07661249,15.28845933,15.50030617,15.71215301,16.67232114,17.63248928,18.59265741,17.84312307,17.09358873,16.34405439,13.94872981,11.55340523,9.158080645,9.505201157,9.852321668,10.19944218,10.19944218,10.19944218 +17,IL,7,OTHER INDUSTRIAL PROCESSES,VOC,8.11791,18.73527,19.57741,19.75711,16.22815,16.795729,17.93571665,24.5077538,21.9586845,19.40961519,16.86054589,16.43658963,16.01263337,15.58867711,14.82695709,14.06523707,13.30351705,13.06468872,12.8258604,12.58703207,11.5628978,10.53876353,9.514629257,9.514629257,9.514629257 +17,IL,8,SOLVENT UTILIZATION,PM10,0.722,0.72506,0.76728,0.78863,1.03661,1.080163,1.137852,0.349110881,0.298177788,0.247244695,0.196311602,0.180743168,0.165174734,0.1496063,0.154482633,0.159358967,0.1642353,0.169979547,0.175723795,0.181468042,0.184475497,0.187482953,0.190490408,0.190490408,0.190490408 +17,IL,8,SOLVENT UTILIZATION,VOC,254.49529,308.20734,318.72295,299.60911,254.06105,258.322031,269.304582,222.7485485,221.75949,220.7704314,219.7813729,204.1697308,188.5580888,172.9464468,155.5101608,138.0738749,120.637589,121.0995601,121.5615312,122.0235022,120.5803542,119.1372062,117.6940582,117.6940582,117.6940582 +17,IL,8,SOLVENT UTILIZATION,PM25,0.61141,0.63317,0.6701,0.6891,1.03661,1.080163,1.137852,0.292484782,0.253151834,0.213818885,0.174485937,0.160242826,0.145999715,0.131756604,0.137121258,0.142485913,0.147850567,0.151436156,0.155021746,0.158607335,0.165336755,0.172066174,0.178795593,0.178795593,0.178795593 +17,IL,8,SOLVENT UTILIZATION,NOX,0.09451,0.7848,0.82464,0.84252,0.38921,0.409144,0.433734,0.14746481,0.134750307,0.122035803,0.1093213,0.089888033,0.070454767,0.0510215,0.05153158,0.05204166,0.05255174,0.042685074,0.032818407,0.022951741,0.020809944,0.018668147,0.01652635,0.01652635,0.01652635 +17,IL,8,SOLVENT UTILIZATION,NH3,,0.01813,0.01979,0.02071,0.011041,0.011559,0.012112,0.00062655,0.0004837,0.00034085,0.000198,0.0031311,0.0060642,0.0089973,0.0131472,0.0172971,0.021447,0.019910108,0.018373215,0.016836323,0.017369268,0.017902212,0.018435157,0.018435157,0.018435157 +17,IL,8,SOLVENT UTILIZATION,CO,0.11763,0.36327,0.37155,0.37477,0.07039,0.073675,0.077874,0.04361352,0.045601147,0.047588773,0.0495764,0.042221133,0.034865867,0.0275106,0.02721308,0.02691556,0.02661804,0.022285193,0.017952345,0.013619498,0.013084005,0.012548511,0.012013018,0.012013018,0.012013018 +17,IL,8,SOLVENT UTILIZATION,SO2,0.06014,0.09966,0.10447,0.10705,0.0976,0.101785,0.106719,0.05779978,0.052746353,0.047692927,0.0426395,0.0357966,0.0289537,0.0221108,0.022140567,0.022170333,0.0222001,0.023585381,0.024970663,0.026355944,0.018744613,0.011133281,0.00352195,0.00352195,0.00352195 +17,IL,9,STORAGE & TRANSPORT,CO,0.00236,0.05703,0.06006,0.06157,0.09899,0.100308,0.101876,0.01343251,0.02472644,0.03602037,0.0473143,0.0340162,0.0207181,0.00742,0.026724364,0.046028728,0.065333092,0.07113512,0.076937147,0.082739175,0.06594756,0.049155944,0.032364329,0.032364329,0.032364329 +17,IL,9,STORAGE & TRANSPORT,NH3,,0.74325,0.78241,0.79892,3.466414,3.578882,3.723341,0.00526,0.007114733,0.008969467,0.0108242,0.009422267,0.008020333,0.0066184,0.01088536,0.01515232,0.01941928,0.020922925,0.022426571,0.023930216,0.022444363,0.020958511,0.019472658,0.019472658,0.019472658 +17,IL,9,STORAGE & TRANSPORT,NOX,0.01322,0.10261,0.10667,0.10861,0.07962,0.081877,0.084729,0.02728497,0.04353298,0.05978099,0.076029,0.056071733,0.036114467,0.0161572,0.024177164,0.032197128,0.040217092,0.042457145,0.044697198,0.046937251,0.041887985,0.036838719,0.031789454,0.031789454,0.031789454 +17,IL,9,STORAGE & TRANSPORT,PM10,6.96237,15.70377,16.42899,16.74578,10.169134,10.534015,10.996858,7.345476366,6.106043659,4.866610952,3.627178245,3.59171083,3.556243415,3.520776,3.430225715,3.339675431,3.249132146,3.279130241,3.309128336,3.339126431,3.108286803,2.877447176,2.646607548,2.646607548,2.646607548 +17,IL,9,STORAGE & TRANSPORT,PM25,2.55881,4.91449,5.14196,5.23872,5.171465,5.351895,5.58654,2.581544495,2.238494667,1.895444839,1.552395011,1.527500771,1.50260653,1.477712289,1.45324739,1.42878249,1.404320773,1.362685438,1.321050103,1.279414768,1.164008664,1.048602559,0.933196454,0.933196454,0.933196454 +17,IL,9,STORAGE & TRANSPORT,SO2,0.00116,0.20222,0.22031,0.2223,0.02467,0.025443,0.026812,0.05030413,0.04079712,0.03129011,0.0217831,0.023167067,0.024551033,0.025935,0.076438195,0.126941389,0.177444584,0.124572723,0.071700863,0.018829002,0.016986202,0.015143401,0.013300601,0.013300601,0.013300601 +17,IL,9,STORAGE & TRANSPORT,VOC,47.79595,70.97134,74.2004,74.03995,56.52016,51.41802,52.198558,38.06468399,37.66972063,37.27475726,36.87979389,35.52736585,34.1749378,32.82250976,30.91320088,29.00389201,22.84345151,22.04701741,21.25058331,20.45414921,19.82397054,19.19379188,18.56361322,18.56361322,18.56361322 +17,IL,10,WASTE DISPOSAL & RECYCLING,SO2,1.37651,1.10559,1.14221,1.16398,1.2513,1.277731,1.312734,2.270141009,2.192016043,2.113891076,2.03576611,2.27691279,2.51805947,2.75920615,2.929018459,3.098830768,3.268643078,3.182908207,3.097173337,3.011438467,2.959953542,2.908468617,2.856983692,2.856983692,2.856983692 +17,IL,10,WASTE DISPOSAL & RECYCLING,PM25,11.63947,11.27486,11.39229,11.41078,9.254883,6.184326,6.217196,3.011905229,3.027050146,3.042195063,3.05733998,4.617839223,6.178338466,7.738837709,7.465842856,7.192848002,0.206961601,2.452324351,4.6976871,6.94304985,6.907930279,6.872810708,6.837691137,6.837691137,6.837691137 +17,IL,10,WASTE DISPOSAL & RECYCLING,VOC,30.20215,13.16335,13.42904,13.55708,14.33958,12.461354,12.76968,9.404869153,9.387616922,9.370364692,9.353112461,8.468306042,7.583499622,6.698693203,5.789705106,4.880717009,3.971508912,4.581326022,5.191143133,5.800960244,5.660027604,5.519094964,5.378162325,5.378162325,5.378162325 +17,IL,10,WASTE DISPOSAL & RECYCLING,CO,11.16906,54.42919,53.82379,53.06062,56.32911,25.651304,25.900489,15.31792261,15.30034395,15.28276528,15.26518662,18.89585096,22.52651529,26.15717963,25.44973384,24.74228805,24.03273226,24.00717766,23.98162305,23.95606845,23.85126285,23.74645725,23.64165165,23.64165165,23.64165165 +17,IL,10,WASTE DISPOSAL & RECYCLING,NOX,2.04436,3.36166,3.41518,3.43121,4.17837,3.317247,3.385311,2.573820518,2.58442492,2.595029322,2.605633725,2.857942078,3.110250431,3.362558784,3.345815832,3.32907288,3.308919928,3.323446321,3.337972713,3.352499106,3.194793232,3.037087357,2.879381483,2.879381483,2.879381483 +17,IL,10,WASTE DISPOSAL & RECYCLING,NH3,6.62522,7.76114,7.81329,7.99007,7.81792,7.949237,8.139299,4.43E-06,6.96E-05,0.000134811,0.0002,0.02513565,0.0500713,0.07500695,0.073313606,0.071620262,0.069926918,0.155312772,0.240698626,0.32608448,0.328993173,0.331901866,0.334810559,0.334810559,0.334810559 +17,IL,10,WASTE DISPOSAL & RECYCLING,PM10,15.85581,13.62792,13.78075,13.84926,10.0581,6.997264,7.041555,4.038167674,4.071173452,4.104179229,4.137185007,5.744360045,7.351535084,8.958710122,8.80429521,8.649880299,0.421834903,3.140132554,5.858430206,8.576727857,8.527835719,8.47894358,8.430051442,8.430051442,8.430051442 +17,IL,11,HIGHWAY VEHICLES,CO,4363.43728,3011.91606,2930.02781,2855.96922,2680.8274,2533.31059,2384.00568,1887.832578,1837.829718,1787.826857,1737.823997,1472.477537,1207.131077,1110.28759,915.2073795,857.4571145,680.6258154,760.7961886,840.9665619,921.1369352,831.1393612,724.1788625,685.4114336,649.0622368,617.5170696 +17,IL,11,HIGHWAY VEHICLES,NH3,6.28225,9.23539,10.32398,9.92205,10.19513,10.34398,10.44379,5.588500943,5.398876986,5.209253029,5.019629071,4.835144269,4.650659467,4.271526372,4.418599806,3.809276633,3.306290257,3.430795097,3.555299937,3.679804778,3.465005465,3.299788615,3.221925025,2.975127529,2.921837255 +17,IL,11,HIGHWAY VEHICLES,NOX,391.9555,336.11709,337.68559,330.43287,319.32576,307.19668,283.57257,400.4999395,376.2601802,352.020421,327.7806617,303.2501484,278.7196351,250.7521282,226.6763036,198.1985125,178.1361139,175.0072778,171.8784417,168.7496056,145.6348581,117.8369295,106.8226612,98.46463192,90.26348149 +17,IL,11,HIGHWAY VEHICLES,PM10,14.86613,10.5346,10.13444,9.5231,9.01499,8.1589,7.60212,17.45366333,17.06064518,16.66762703,16.27460888,15.87546679,15.47632471,14.23430658,12.78888097,11.14499408,14.16406037,13.5907631,13.01746583,12.44416856,11.33913058,9.204192618,8.813595188,10.2376754,10.04744726 +17,IL,11,HIGHWAY VEHICLES,PM25,12.38718,8.33332,7.91864,7.36656,6.87379,6.07311,5.56796,14.37240068,13.97226703,13.57213337,13.17199972,12.5032445,11.83448927,10.67668637,9.621870797,8.045221014,6.64401242,6.548588667,6.453164915,6.357741162,5.356133321,4.217052806,3.934166049,4.142485861,3.904375571 +17,IL,11,HIGHWAY VEHICLES,SO2,19.53694,11.46619,11.76744,11.87142,12.08486,8.46118,8.44883,10.48336338,9.382256009,8.28114864,7.180041271,4.285922256,1.391803242,1.320873075,1.169864101,1.211052885,1.071354077,1.033512422,0.995670768,0.957829113,0.70405343,0.705373003,0.600498072,0.336393408,0.308444475 +17,IL,11,HIGHWAY VEHICLES,VOC,367.63904,238.91033,229.53927,224.34439,214.39921,195.31863,182.25572,151.9147155,146.0539942,140.1932729,134.3325516,124.496937,114.6613225,99.68151722,91.36218417,82.34502318,68.38337726,75.83425924,83.28514122,90.7360232,78.8918999,65.57389535,63.7218488,56.74753741,52.54774417 +17,IL,12,OFF-HIGHWAY,VOC,100.88891,109.51712,101.50791,97.93194,97.12078,96.1528,95.026032,105.6007903,102.9739547,100.347119,97.72028334,93.48929365,89.25830396,89.49489492,79.42823083,77.62100812,73.75545775,69.21539418,64.67533061,60.13526703,53.99005158,43.6768188,41.69962068,40.61994397,39.54026726 +17,IL,12,OFF-HIGHWAY,PM25,13.93264,14.3421,14.11068,13.8487,13.63968,13.354861,13.077725,13.84156067,13.64345076,13.44534084,13.24723093,12.18335291,11.11947488,10.07899555,10.11955448,9.855116525,9.508026804,8.966108857,8.424190911,7.882272965,7.19401741,6.110643295,5.817506302,5.547856764,5.278207227 +17,IL,12,OFF-HIGHWAY,PM10,15.19735,15.63902,15.38345,15.09202,14.876203,14.568705,14.268168,14.45275924,14.27149837,14.0902375,13.90897663,12.82272681,11.73647699,10.7235666,10.79844379,10.52488619,10.01499796,9.452010142,8.889022328,8.326034513,7.583098199,6.400227136,6.09722557,5.818503556,5.539781543 +17,IL,12,OFF-HIGHWAY,SO2,16.60217,19.16126,19.43769,19.75585,19.90652,20.231344,20.365779,18.37737266,18.8708958,19.36441895,19.8579421,14.51657122,9.175200342,1.574624793,4.932625457,3.910603204,2.201498537,2.282199578,2.362900618,2.443601659,2.163820185,1.564344118,1.604257237,1.641367726,1.678478215 +17,IL,12,OFF-HIGHWAY,NH3,1.47434,1.60523,1.57531,1.63524,0.14148,0.14148,0.14148,0.133159368,0.134839489,0.13651961,0.138199732,0.133405084,0.128610436,0.121238486,0.132764547,0.134455191,0.12993748,0.129140924,0.128344368,0.127547812,0.120220262,0.100975775,0.105565162,0.105780488,0.105995815 +17,IL,12,OFF-HIGHWAY,CO,897.92407,1020.20807,992.29468,993.17626,1003.23172,1013.401699,1033.546929,844.5685581,828.5481436,812.5277291,796.5073146,767.1123138,737.7173129,671.4751642,644.6739337,626.3035206,610.6050875,587.0313779,563.4576683,539.8839586,519.3377491,481.3836783,478.2453301,478.1758781,478.106426 +17,IL,12,OFF-HIGHWAY,NOX,172.95544,192.39909,198.82105,204.10038,191.32024,191.32098,191.265278,228.7501061,230.0493541,231.3486021,232.6478501,203.2861829,173.9245158,146.4892259,163.2646092,159.1650315,147.21863,140.3469688,133.4753077,126.6036465,117.5628511,102.4085484,99.48126013,96.18197182,92.88268352 +17,IL,14,MISCELLANEOUS,VOC,1.71059,0.89213,0.43315,0.56447,0.34032,0.524968,0.513717,0.40151541,2.641283127,4.881050844,7.120818561,5.092493021,3.06416748,1.03584194,0.712359552,0.388877163,0.065394775,1.585771341,3.106147908,4.626524474,5.101206384,5.575888294,6.050570204,6.050570204,6.050570204 +17,IL,14,MISCELLANEOUS,SO2,0.00532,0.00538,0.0019,0.00284,0.01466,0.03766,0.03597,0.027477812,0.112548688,0.197619565,0.282690441,0.206300294,0.129910147,0.05352,0.035703555,0.01788711,7.07E-05,0.005495665,0.010920666,0.016345667,0.011645776,0.006945886,0.002245996,0.002245996,0.002245996 +17,IL,14,MISCELLANEOUS,PM25,174.2576,145.68985,142.22491,141.24514,144.951298,139.791154,126.3274883,84.16362365,85.01555461,85.86748556,86.71941652,96.16412553,105.6088345,115.0535436,115.4434775,115.8334114,116.2233453,118.6345628,121.0457802,123.4569976,128.4466595,133.4363214,138.4259833,138.4259833,138.4259833 +17,IL,14,MISCELLANEOUS,PM10,893.18335,766.61282,749.4322,743.19694,768.210819,728.928102,689.5454122,655.6123465,656.6175594,657.6227724,658.6279853,674.2653389,689.9026925,705.5400461,701.7071382,697.8742304,694.0413225,727.33203,760.6227375,793.9134449,832.0251719,870.1368988,908.2486258,908.2486258,908.2486258 +17,IL,14,MISCELLANEOUS,NOX,0.24487,0.17642,0.0866,0.10457,0.07186,0.15563,0.14954,0.024040375,0.220161565,0.416282755,0.612403945,0.57090357,0.529403195,0.48790282,0.32770394,0.167505059,0.007306179,0.020431319,0.03355646,0.046681601,0.038208562,0.029735523,0.021262484,0.021262484,0.021262484 +17,IL,14,MISCELLANEOUS,NH3,137.33106,128.21436,117.70095,115.42696,107.43801,104.77291,74.65348465,106.9364002,107.089932,107.2434638,107.3969956,110.4402429,113.4834903,116.5267377,113.309094,110.0914503,106.8738066,107.1490624,107.4243183,107.6995741,92.49357141,77.28756875,62.0815661,62.0815661,62.0815661 +17,IL,14,MISCELLANEOUS,CO,9.61905,6.68128,3.79025,3.9171,3.27868,7.18614,6.90137,2.17037,11.42934906,20.68832813,29.94730719,23.45610796,16.96490873,10.4737095,7.085862771,3.698016041,0.310169312,0.655261593,1.000353873,1.345446154,1.164587246,0.983728338,0.80286943,0.80286943,0.80286943 +17,IL,15,WILDFIRES,NH3,,,,,,,,0.012755625,0.012755625,0.012755625,0.007387811,0.007387811,0.007387811,,0,0,0.143322231,0.143322231,0.143322231,0.056205599,0.056205599,0.056205599,0.141228857,0.141228857,0.141228857 +17,IL,15,WILDFIRES,SO2,,,,,,,,0.004229148,0.004229148,0.004229148,0.0042777,0.0042777,0.0042777,,0,0,0.061519974,0.061519974,0.061519974,0.02921089,0.02921089,0.02921089,0.062598059,0.062598059,0.062598059 +17,IL,15,WILDFIRES,PM25,,,,,,,,0.067770163,0.067770163,0.067770163,0.040780072,0.040780072,0.040780072,,0,0,0.743781699,0.743781699,0.743781699,0.302897546,0.302897546,0.302897546,0.737278142,0.737278142,0.737278142 +17,IL,15,WILDFIRES,PM10,,,,,,,,0.079905591,0.079905591,0.079905591,0.048120485,0.048120485,0.048120485,,0,0,0.877662493,0.877662493,0.877662493,0.357419323,0.357419323,0.357419323,0.869988361,0.869988361,0.869988361 +17,IL,15,WILDFIRES,NOX,,,,,,,,0.005637671,0.005637671,0.005637671,0.009107746,0.009107746,0.009107746,,0,0,0.105551528,0.105551528,0.105551528,0.058243889,0.058243889,0.058243889,0.110560241,0.110560241,0.110560241 +17,IL,15,WILDFIRES,CO,,,,,,,,0.864137929,0.864137929,0.864137929,0.446563253,0.446563253,0.446563253,,0,0,8.748820857,8.748820857,8.748820857,3.410681398,3.410681398,3.410681398,8.613165337,8.613165337,8.613165337 +17,IL,15,WILDFIRES,VOC,,,,,,,,0.137729905,0.137729905,0.137729905,0.106199776,0.106199776,0.106199776,,0,0,2.060261864,2.060261864,2.060261864,0.807953629,0.807953629,0.807953629,2.030166722,2.030166722,2.030166722 +17,IL,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,3.17825907,20.29163074,37.40500241,54.51837407,72.05965316,89.60093225,107.1422113,138.086023,169.0298346,199.9736463,199.9736463,199.9736463 +17,IL,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.06817138,0.344920364,0.621669348,0.898418332,1.245199934,1.591981535,1.938763137,2.333986428,2.72920972,3.124433012,3.124433012,3.124433012 +17,IL,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.309039,2.100724125,3.892409249,5.684094374,7.564494095,9.444893817,11.32529354,14.44906559,17.57283764,20.69660969,20.69660969,20.69660969 +17,IL,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.26503583,1.782367196,3.299698562,4.817029928,6.41058966,8.004149391,9.597709123,12.2449716,14.89223408,17.53949655,17.53949655,17.53949655 +17,IL,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.01868451,0.164775305,0.3108661,0.456956895,0.621630862,0.78630483,0.950978797,1.175264184,1.39954957,1.623834957,1.623834957,1.623834957 +17,IL,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.14957759,4.401625354,8.653673118,12.90572088,17.07424609,21.2427713,25.41129651,32.7043599,39.99742329,47.29048667,47.29048667,47.29048667 +17,IL,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.01428416,0.308785433,0.603286707,0.89778798,1.187772004,1.477756029,1.767740053,2.275085996,2.78243194,3.289777883,3.289777883,3.289777883 +18,IN,1,FUEL COMB. ELEC. UTIL.,NH3,,0.02776,0.02773,0.03047,0.288505,0.306762,0.325304,0.592207893,0.645393076,0.698578259,0.751763441,0.627966647,0.504169853,0.380373059,0.323469093,0.266565127,0.210650042,0.208323238,0.205996434,0.20366963,0.185370435,0.167071239,0.148772043,0.148772043,0.148772043 +18,IN,1,FUEL COMB. ELEC. UTIL.,NOX,422.20619,369.37359,387.79657,368.25942,340.57478,328.235017,310.07152,284.1420554,260.980005,224.307162,210.8193621,202.680818,196.466422,199.0139018,173.0399393,147.0838331,119.6315605,116.5054591,113.3793577,110.2532563,94.72197144,79.19068654,63.65940163,66.509074,47.204428 +18,IN,1,FUEL COMB. ELEC. UTIL.,PM10,11.10472,11.53585,12.30508,11.79352,50.867978,50.849867,52.473696,40.91870612,41.36487752,41.81104892,42.25722031,40.30467904,38.35213777,36.3995965,29.18536484,21.97113318,14.75667556,23.5315544,32.30643324,41.08131209,29.93144753,18.78158298,7.631718424,7.631718424,7.631718424 +18,IN,1,FUEL COMB. ELEC. UTIL.,PM25,4.73139,6.23437,6.51448,6.31408,44.847512,44.665339,43.003394,33.83552239,34.07452093,34.31351947,34.55251801,33.1497675,31.74701699,30.34426649,23.55249115,16.76071582,9.968884774,19.34841081,28.72793685,38.10746289,27.70923525,17.3110076,6.912779951,6.912779951,6.912779951 +18,IN,1,FUEL COMB. ELEC. UTIL.,SO2,1511.02737,941.85617,985.18487,977.33278,902.02295,828.653817,755.288841,782.6021266,804.82862,862.876343,875.8803014,820.992175,714.526807,588.7168263,510.7859484,432.8566055,352.3367064,332.6608509,312.9849954,293.3091399,216.922395,140.5356501,64.14890514,68.508426,47.779577 +18,IN,1,FUEL COMB. ELEC. UTIL.,VOC,1.75937,1.76295,1.8529,1.8443,2.437268,2.246064,2.174488,2.05485416,2.092278578,2.129702995,2.167127412,2.126760334,2.086393255,2.046026177,1.976602945,1.907179713,1.839296396,1.788019936,1.736743476,1.685467016,1.515847841,1.346228665,1.176609489,1.176609489,1.176609489 +18,IN,1,FUEL COMB. ELEC. UTIL.,CO,15.01428,14.00579,14.63844,14.76228,16.993275,16.57658,16.091365,15.90374646,16.2889933,16.67424013,17.05948697,17.09992182,17.14035666,17.18079151,16.3638534,15.54691529,14.75844278,14.76722666,14.77601053,14.78479441,13.16161846,11.53844251,9.91526656,9.91526656,9.91526656 +18,IN,2,FUEL COMB. INDUSTRIAL,SO2,283.98808,66.43744,67.46393,66.5401,54.41767,54.768597,58.252223,97.91797243,98.52573618,99.13349992,99.74126367,85.01983441,70.29840515,55.57697589,48.88983416,42.20269244,35.51689646,32.0020992,28.48730194,24.97250469,22.92321212,20.87391956,18.824627,18.824627,18.824627 +18,IN,2,FUEL COMB. INDUSTRIAL,VOC,1.57938,1.66869,1.69368,1.70242,6.6391,6.781981,6.999319,1.628638646,1.796410296,1.964181947,2.131953597,2.063247639,1.994541681,1.925835723,2.000669816,2.075503908,2.148395394,1.950567874,1.752740353,1.554912832,1.578474595,1.602036357,1.62559812,1.62559812,1.62559812 +18,IN,2,FUEL COMB. INDUSTRIAL,PM25,2.97691,2.04954,2.08707,2.0751,20.25359,20.620426,21.264068,24.03488883,24.5308517,25.02681456,25.52277743,19.38009026,13.23740309,7.094715928,5.860822087,4.626928245,3.391862407,4.20381001,5.015757613,5.827705216,5.672135145,5.516565075,5.360995004,5.360995004,5.360995004 +18,IN,2,FUEL COMB. INDUSTRIAL,PM10,8.26401,9.79756,9.87333,9.69397,28.521163,28.761919,30.078831,51.14559543,51.63678715,52.12797886,52.61917058,37.6993049,22.77943922,7.859573542,6.493083168,5.126592795,3.758626673,4.563187193,5.367747713,6.172308234,6.015789446,5.859270658,5.70275187,5.70275187,5.70275187 +18,IN,2,FUEL COMB. INDUSTRIAL,NOX,113.04729,64.84308,65.40198,64.5052,83.07128,84.169434,87.899208,61.28235533,59.85327124,58.42418716,56.99510307,53.55045757,50.10581207,46.66116657,44.58788112,42.51459568,40.42180851,37.47434872,34.52688893,31.57942914,32.17064921,32.76186929,33.35308936,33.35308936,33.35308936 +18,IN,2,FUEL COMB. INDUSTRIAL,NH3,0.36006,1.96708,1.99464,1.97698,2.480877,2.573037,2.631071,0.453495731,0.505371819,0.557247907,0.609123995,0.52897208,0.448820166,0.368668251,0.324745876,0.280823501,0.235468407,0.242817747,0.250167088,0.257516429,0.363886127,0.470255825,0.576625523,0.576625523,0.576625523 +18,IN,2,FUEL COMB. INDUSTRIAL,CO,17.06766,22.34338,22.65777,22.44883,70.14765,72.896823,78.753311,67.61978785,62.73594409,57.85210033,52.96825656,51.08108908,49.1939216,47.30675412,51.91296267,56.51917121,61.0796764,54.20554155,47.3314067,40.45727185,41.87994624,43.30262063,44.72529502,44.72529502,44.72529502 +18,IN,3,FUEL COMB. OTHER,NOX,21.41823,13.09308,13.08245,12.61789,21.253249,21.596188,21.94195,22.9052338,22.80351366,22.70179351,22.60007336,21.05752256,19.51497175,17.97242094,17.53359292,17.09476489,16.67403335,15.96058006,15.24712677,14.53367348,13.92315321,13.31263293,12.70211265,12.70211265,12.70211265 +18,IN,3,FUEL COMB. OTHER,PM25,12.81162,15.71365,15.70307,15.67575,21.345527,22.644296,22.85956,6.123896127,6.107103886,6.090311646,6.073519405,8.518416424,10.96331344,13.40821046,12.82603919,12.24386792,13.13835154,13.25519602,13.37204051,13.48888499,11.57302432,9.657163648,7.741302976,7.741302976,7.741302976 +18,IN,3,FUEL COMB. OTHER,SO2,40.02731,22.19096,23.06003,24.34791,17.691768,18.015949,18.388534,22.47045102,22.60968842,22.74892583,22.88816323,20.66265489,18.43714656,16.21163823,14.6330869,13.05453557,11.52739319,9.142497469,6.757601745,4.372706021,3.358244403,2.343782786,1.329321168,1.329321168,1.329321168 +18,IN,3,FUEL COMB. OTHER,VOC,18.78022,44.93674,44.94866,44.91084,46.148882,49.388856,49.445488,12.08483115,10.78363701,9.482442871,8.181248729,8.836137923,9.491027117,10.14591631,10.59654744,11.04717856,13.12213311,13.54812482,13.97411653,14.40010824,12.2441836,10.08825896,7.932334318,7.932334318,7.932334318 +18,IN,3,FUEL COMB. OTHER,NH3,0.13314,0.15998,0.15613,0.13954,0.147654,0.149287,0.151449,0.212886465,0.21294243,0.212998396,0.213054362,0.823606939,1.434159516,2.044712093,2.023424654,2.002137214,2.008866653,2.0514253,2.093983946,2.136542593,1.98313198,1.829721366,1.676310752,1.676310752,1.676310752 +18,IN,3,FUEL COMB. OTHER,CO,103.72559,138.97499,139.4102,139.00647,137.979,146.507554,146.779563,40.54659316,40.54089932,40.53520548,40.52951164,56.2762709,72.02303016,87.76978942,85.50587511,83.24196079,89.09978393,89.43983931,89.77989469,90.11995008,79.77985521,69.43976035,59.09966549,59.09966549,59.09966549 +18,IN,3,FUEL COMB. OTHER,PM10,13.47371,16.30454,16.32907,16.30877,21.622694,22.92532,23.14526,6.366631212,6.416812,6.466992788,6.517173576,8.897212612,11.27725165,13.65729068,13.13537192,12.61345315,13.56788065,13.57885741,13.58983417,13.60081092,11.68240765,9.764004377,7.845601104,7.845601104,7.845601104 +18,IN,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,8.31106,0.96275,0.99856,1.01841,3.06637,3.17949,3.327589,1.395526169,1.305615403,1.215704637,1.125793872,1.001822567,0.877851262,0.753879958,0.995711006,1.237542054,2.622748702,2.107475096,1.59220149,1.076927884,0.931227552,0.785527219,0.639826887,0.639826887,0.639826887 +18,IN,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.01193,0.00216,0.00223,0.00226,3.90442,4.060078,4.202024,2.943148136,3.272943257,3.602738379,3.9325335,2.693149366,1.453765231,0.214381097,0.540418103,0.86645511,1.577522516,1.148843889,0.720165261,0.291486633,0.302831558,0.314176483,0.325521408,0.325521408,0.325521408 +18,IN,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,3.89641,3.89956,4.00794,4.17026,0.001599,0.001531,0.001581,,0,0,,0.001531789,0.003063578,0.004595367,0.006469118,0.008342869,0.01021662,0.007563393,0.004910166,0.002256939,0.002355664,0.002454389,0.002553114,0.002553114,0.002553114 +18,IN,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.7605,0.08932,0.09367,0.09669,10.70534,10.462808,10.107395,0.102481222,0.116211356,0.129941491,0.143671625,0.140162128,0.136652632,0.133143135,0.174867132,0.216591129,0.749901026,0.63044589,0.510990754,0.391535618,0.356017748,0.320499879,0.28498201,0.28498201,0.28498201 +18,IN,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,1.39673,0.07962,0.08356,0.08774,0.52447,0.489573,0.511644,0.218093987,0.213614996,0.209136005,0.204657014,0.202396175,0.200135337,0.197874498,0.193602294,0.189330091,0.254980547,0.25363836,0.252296173,0.250953986,0.260155514,0.269357041,0.278558568,0.278558568,0.278558568 +18,IN,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,1.00091,0.0387,0.04032,0.04195,0.331647,0.288794,0.301087,0.117490939,0.111235832,0.104980726,0.098725619,0.112237019,0.125748419,0.13925982,0.141335054,0.143410288,0.145352073,0.168986305,0.192620538,0.216254771,0.219288189,0.222321608,0.225355026,0.225355026,0.225355026 +18,IN,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.60086,15.61213,16.32039,16.20086,46.22226,53.022547,48.097044,0.698139298,0.723766107,0.749392916,0.775019725,0.745445196,0.715870667,0.686296138,0.760996042,0.835695945,0.914325276,0.92111622,0.927907163,0.934698107,0.964199816,0.993701525,1.023203234,1.023203234,1.023203234 +18,IN,5,METALS PROCESSING,VOC,21.60678,7.37625,7.94328,7.97771,8.09536,8.394421,8.985191,6.803355562,6.731312991,6.659270421,6.58722785,6.384716763,6.182205677,5.97969459,5.662776454,5.345858318,5.029692732,4.848186174,4.666679616,4.485173058,4.054726709,3.624280361,3.193834012,3.193834012,3.193834012 +18,IN,5,METALS PROCESSING,SO2,50.58503,10.809,11.68954,11.79403,17.70936,18.390745,19.582185,22.07689894,21.24364699,20.41039504,19.57714309,18.4877749,17.39840671,16.30903852,15.96627674,15.62351497,15.27977288,15.39568348,15.51159408,15.62750469,14.20633766,12.78517064,11.36400362,11.36400362,11.36400362 +18,IN,5,METALS PROCESSING,PM25,16.31887,6.58733,7.09474,7.11857,21.240725,22.064513,23.671062,7.241720032,6.92037188,6.599023728,6.277675576,8.492284509,10.70689344,12.92150238,10.26662511,7.611747841,4.961616627,6.091284756,7.220952885,8.350621014,7.437559917,6.52449882,5.611437723,5.611437723,5.611437723 +18,IN,5,METALS PROCESSING,PM10,21.20924,7.62288,8.20584,8.22986,24.428632,25.379674,27.226424,11.49982892,11.31006622,11.12030352,10.93054083,13.14800597,15.36547112,17.58293626,14.51438892,11.44584159,8.383235569,9.069766963,9.756298357,10.44282975,9.489091293,8.535352836,7.581614378,7.581614378,7.581614378 +18,IN,5,METALS PROCESSING,NOX,13.10223,4.71918,5.10683,5.15898,8.03116,8.395712,9.035683,8.183424204,8.124672185,8.065920167,8.007168148,7.566638212,7.126108276,6.68557834,6.369996511,6.054414682,5.740423794,5.682092073,5.623760351,5.56542863,5.326017763,5.086606896,4.847196028,4.847196028,4.847196028 +18,IN,5,METALS PROCESSING,CO,368.4226,175.40743,188.44014,188.2555,268.72387,281.138802,303.099066,232.1203765,232.8402806,233.5601847,234.2800888,241.6674244,249.05476,256.4420956,245.2866275,234.1311594,222.9816098,222.3512981,221.7209864,221.0906747,206.7662676,192.4418605,178.1174534,178.1174534,178.1174534 +18,IN,5,METALS PROCESSING,NH3,2.27908,1.40148,1.51554,1.5319,0.574032,0.599471,0.64231,0.65283883,0.469205787,0.285572743,0.1019397,0.095410478,0.088881256,0.082352035,0.096254322,0.110156609,0.124078096,0.135757309,0.147436522,0.159115735,0.109225156,0.059334577,0.009443997,0.009443997,0.009443997 +18,IN,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.67589,0.31918,0.33565,0.33459,0.902844,0.908271,0.91495,0.423032806,0.391967417,0.360902027,0.329836638,0.388636736,0.447436835,0.506236934,0.460460808,0.414684683,0.368908558,0.458385909,0.54786326,0.637340612,0.635154067,0.632967522,0.630780978,0.630780978,0.630780978 +18,IN,6,PETROLEUM & RELATED INDUSTRIES,NH3,1.32961,0.59915,0.63038,0.62835,0.219694,0.220719,0.222305,1.564068432,1.042882362,0.521696292,0.000510222,0.00898321,0.017456197,0.025929185,0.020256359,0.014583534,0.008910709,0.01519632,0.021481931,0.027767542,0.024326775,0.020886007,0.01744524,0.01744524,0.01744524 +18,IN,6,PETROLEUM & RELATED INDUSTRIES,VOC,6.05172,1.36888,1.44892,1.45617,2.13061,1.480868,1.496586,1.712621357,1.525248997,1.337876637,1.150504277,1.02978081,0.909057344,0.788333877,4.236993964,7.68565405,12.24885225,14.10381542,15.9587786,17.81374177,17.08990116,16.36606055,15.64221994,15.64221994,15.64221994 +18,IN,6,PETROLEUM & RELATED INDUSTRIES,SO2,6.73961,9.99129,10.47451,10.39372,5.10114,5.127855,5.165685,4.150589917,3.420028978,2.689468038,1.958907099,1.461464957,0.964022814,0.466580672,0.443041156,0.419501641,0.395962125,0.393965343,0.391968561,0.389971778,0.315441947,0.240912116,0.166382285,0.166382285,0.166382285 +18,IN,6,PETROLEUM & RELATED INDUSTRIES,NOX,2.07413,1.17983,1.23617,1.22713,2.05812,2.069843,2.084235,1.459186044,1.085338828,0.711491613,0.337644397,0.316463306,0.295282215,0.274101124,2.311877082,4.34965304,6.387429228,5.943200049,5.498970871,5.054741692,4.799100444,4.543459195,4.287817947,4.287817947,4.287817947 +18,IN,6,PETROLEUM & RELATED INDUSTRIES,CO,4.69671,18.1006,19.18178,19.30712,12.77087,12.869899,12.974261,10.21984396,9.282882843,8.345921726,7.408960609,5.004721055,2.6004815,0.196241946,2.822576065,5.448910183,8.075244302,7.716712886,7.35818147,6.999650053,6.685186888,6.370723722,6.056260556,6.056260556,6.056260556 +18,IN,6,PETROLEUM & RELATED INDUSTRIES,PM10,1.4305,0.47399,0.49876,0.49781,1.183106,1.191835,1.201597,0.752936236,0.631115835,0.509295434,0.387475034,0.428997019,0.470519005,0.51204099,0.46585836,0.419675731,0.373493101,0.471120997,0.568748893,0.666376789,0.672874785,0.679372781,0.685870778,0.685870778,0.685870778 +18,IN,7,OTHER INDUSTRIAL PROCESSES,PM10,42.77665,20.35796,20.41012,21.80731,30.524152,31.2759,33.58284619,28.00844132,28.09721605,28.18599077,28.27476549,26.96222349,25.64968149,24.33713949,22.53993721,20.74273494,19.32410557,18.69331149,18.06251741,17.43172332,17.2710153,17.11030729,16.94959927,16.94959927,16.94959927 +18,IN,7,OTHER INDUSTRIAL PROCESSES,VOC,14.28325,8.28273,8.68887,8.85325,13.0595,13.612061,14.44029374,12.04302628,12.0051279,11.96722951,11.92933113,10.84197459,9.75461805,8.667261511,8.532814243,8.398366975,8.261387347,8.31882061,8.376253873,8.433687136,8.283252033,8.132816931,7.982381828,7.982381828,7.982381828 +18,IN,7,OTHER INDUSTRIAL PROCESSES,PM25,16.7212,6.0726,6.20952,6.5317,11.704792,12.121632,14.1113748,8.713279222,8.778314152,8.843349082,8.908384012,8.833694011,8.759004009,8.684314008,7.672614825,6.660915641,5.761931027,6.093958846,6.425986665,6.758014485,6.736720504,6.715426523,6.694132542,6.694132542,6.694132542 +18,IN,7,OTHER INDUSTRIAL PROCESSES,NOX,10.49657,8.66295,9.21604,9.44435,11.19075,11.806783,12.60139,12.36997099,12.44890333,12.52783566,12.606768,11.85927462,11.11178125,10.36428787,9.979123775,9.593959678,9.21984558,8.971089284,8.722332989,8.473576693,8.051720052,7.629863412,7.208006771,7.208006771,7.208006771 +18,IN,7,OTHER INDUSTRIAL PROCESSES,NH3,0.0064,0.00351,0.00364,0.00366,0.002,0.00206,0.002118,0.39162203,0.472617159,0.553612288,0.634607417,0.544180256,0.453753095,0.363325934,0.320721782,0.278117629,0.236367077,0.285939506,0.335511935,0.385084364,0.414239612,0.44339486,0.472550107,0.472550107,0.472550107 +18,IN,7,OTHER INDUSTRIAL PROCESSES,CO,0.72627,16.80225,18.01457,18.3884,28.12222,29.567581,32.10855778,23.58123059,23.56381248,23.54639437,23.52897625,23.46243683,23.39589742,23.329358,20.61017686,17.89099573,15.18109659,17.61345706,20.04581753,22.47817801,19.16916686,15.86015572,12.55114457,12.55114457,12.55114457 +18,IN,7,OTHER INDUSTRIAL PROCESSES,SO2,26.18551,16.46784,17.60338,17.99272,14.68219,15.428155,16.352311,11.13324271,11.19483834,11.25643397,11.3180296,10.30496444,9.291899284,8.278834127,7.858225448,7.437616769,7.017599195,6.104743979,5.191888764,4.279033548,3.862385427,3.445737305,3.029089183,3.029089183,3.029089183 +18,IN,8,SOLVENT UTILIZATION,SO2,0.02749,,,,0.04511,0.046816,0.048764,0.00006423,0.000998763,0.001933297,0.00286783,0.001926087,0.000984343,0.0000426,3.15E-05,2.04E-05,1.57E-05,1.47E-05,1.37E-05,1.28E-05,0.002474185,0.004935598,0.007397011,0.007397011,0.007397011 +18,IN,8,SOLVENT UTILIZATION,VOC,192.39464,194.95029,202.71308,184.32492,185.76101,187.164508,195.552905,156.2689494,155.3154771,154.3620047,153.4085323,146.5046744,139.6008165,132.6969586,114.5354582,96.37395769,78.08007536,82.70983878,87.33960219,91.9693656,94.0368231,96.10428059,98.17173809,98.17173809,98.17173809 +18,IN,8,SOLVENT UTILIZATION,CO,,0.06078,0.06389,0.06064,0.10038,0.103473,0.109341,0.00681389,0.289917158,0.573020425,0.856123693,0.767293795,0.678463898,0.589634,0.529306,0.468978,0.409536452,0.405967319,0.402398185,0.398829052,0.402194979,0.405560906,0.408926833,0.408926833,0.408926833 +18,IN,8,SOLVENT UTILIZATION,NH3,,0.00156,0.00171,0.00171,0.002223,0.00233,0.002475,9.36E-05,9.09E-05,8.82E-05,8.55E-05,0.000144753,0.000203966,0.000263179,0.000185559,0.000107939,5.75E-05,4.22E-05,2.70E-05,0.00001168,7.79E-06,3.89E-06,0,0,0 +18,IN,8,SOLVENT UTILIZATION,NOX,0.00577,0.0192,0.02014,0.02045,0.03695,0.038157,0.040018,0.0157644,0.093103449,0.170442497,0.247781546,0.169667697,0.091553849,0.01344,0.01101826,0.00859652,0.00723008,0.008090187,0.008950293,0.0098104,0.010564963,0.011319525,0.012074088,0.012074088,0.012074088 +18,IN,8,SOLVENT UTILIZATION,PM10,1.38846,0.38869,0.41693,0.43741,1.16363,1.2219,1.302692,0.359956531,0.4090965,0.458236468,0.507376437,0.45371053,0.400044624,0.346378717,0.339435198,0.33249168,0.321470967,0.316546195,0.311621422,0.306696649,0.310778193,0.314859736,0.318941279,0.318941279,0.318941279 +18,IN,8,SOLVENT UTILIZATION,PM25,1.28309,0.33571,0.36004,0.37762,1.16363,1.2219,1.302692,0.299090269,0.352608187,0.406126106,0.459644024,0.411104139,0.362564255,0.31402437,0.309791574,0.305558779,0.29805772,0.294474629,0.290891538,0.287308447,0.293730909,0.300153371,0.306575833,0.306575833,0.306575833 +18,IN,9,STORAGE & TRANSPORT,PM25,3.2194,0.387,0.40652,0.41342,1.556629,1.612695,1.691362,0.732924738,0.711820651,0.690716564,0.669612477,0.778471883,0.88733129,0.996190697,0.811972627,0.627754556,0.443536485,0.491685324,0.539834163,0.587983001,0.558873443,0.529763886,0.500654328,0.500654328,0.500654328 +18,IN,9,STORAGE & TRANSPORT,NH3,,0.03808,0.04125,0.04167,0.014992,0.015723,0.016969,0.008018494,0.01197347,0.015928446,0.019883422,0.016575589,0.013267756,0.009959924,0.009435168,0.008910413,0.008385657,0.005893323,0.003400989,0.000908655,0.000908655,0.000908655,0.000908655,0.000908655,0.000908655 +18,IN,9,STORAGE & TRANSPORT,CO,,0.05988,0.06488,0.06554,43.12776,45.24087,48.863484,33.74887778,33.3748713,33.00086481,32.62685833,22.0292604,11.43166248,0.834064549,0.559710653,0.285356757,0.011002861,0.013904179,0.016805497,0.019706815,0.019233101,0.018759387,0.018285673,0.018285673,0.018285673 +18,IN,9,STORAGE & TRANSPORT,PM10,8.31077,1.02734,1.07968,1.09988,3.230134,3.34137,3.492626,2.378407831,2.513197663,2.647987495,2.782777327,2.53857273,2.294368132,2.050163534,1.810195721,1.570227908,1.330260095,1.347691355,1.365122614,1.382553874,1.329781733,1.277009591,1.22423745,1.22423745,1.22423745 +18,IN,9,STORAGE & TRANSPORT,SO2,,1.08329,1.17368,1.18558,0.64766,0.679058,0.73241,0.397736606,0.375492228,0.353247851,0.331003473,0.394119935,0.457236398,0.52035286,0.489025339,0.457697818,0.426370297,0.289423654,0.152477011,0.015530368,0.012294535,0.009058702,0.005822869,0.005822869,0.005822869 +18,IN,9,STORAGE & TRANSPORT,VOC,43.44921,37.14974,39.37497,39.65469,36.66299,35.195236,35.912165,38.31428613,38.11439021,37.91449429,37.71459837,33.55753531,29.40047224,25.24340917,27.45877119,29.6741332,26.7037433,22.15429273,17.60484216,13.0553916,14.3736633,15.69193501,17.01020671,17.01020671,17.01020671 +18,IN,9,STORAGE & TRANSPORT,NOX,,0.26014,0.28206,0.28487,0.24121,0.252968,0.273263,0.169372837,0.163795406,0.158217976,0.152640545,0.110020775,0.067401005,0.024781235,0.019242737,0.01370424,0.008165742,0.011453843,0.014741943,0.018030044,0.014923259,0.011816475,0.00870969,0.00870969,0.00870969 +18,IN,10,WASTE DISPOSAL & RECYCLING,CO,44.10646,56.52971,57.46271,62.40516,65.28269,42.545409,42.766706,27.88798751,27.81515268,27.74231785,27.66948302,26.7839295,25.89837599,25.01282247,24.08370927,23.15459607,22.22548287,24.88228026,27.53907765,30.19587504,30.03200179,29.86812853,29.70425527,29.70425527,29.70425527 +18,IN,10,WASTE DISPOSAL & RECYCLING,NH3,2.03314,2.23076,2.24096,2.29804,2.340369,2.384607,2.449608,4.0615375,4.055250733,4.048963967,4.0426772,2.740147981,1.437618763,0.135089544,0.221678372,0.308267199,0.394856027,0.456883591,0.518911156,0.58093872,0.450489216,0.320039712,0.189590207,0.189590207,0.189590207 +18,IN,10,WASTE DISPOSAL & RECYCLING,NOX,2.98858,3.73651,3.8501,4.05037,5.48617,4.895966,5.00842,3.574687374,3.993817402,4.412947431,4.83207746,4.198145771,3.564214082,2.930282393,2.704542426,2.478802458,2.25306249,2.355735486,2.458408482,2.561081478,2.139451171,1.717820864,1.296190557,1.296190557,1.296190557 +18,IN,10,WASTE DISPOSAL & RECYCLING,PM10,9.66091,13.18441,13.71549,14.35823,15.146564,13.048134,13.253371,5.237557258,5.283629623,5.329701987,5.375774352,5.37117084,5.366567328,5.361963816,5.1252088,4.888453784,4.671032768,4.814816804,4.95860084,5.102384876,5.316825866,5.531266856,5.745707846,5.745707846,5.745707846 +18,IN,10,WASTE DISPOSAL & RECYCLING,PM25,8.09755,10.04211,10.40138,10.98093,11.615455,9.394874,9.439991,4.079682707,4.114833099,4.149983491,4.185133883,4.105423214,4.025712545,3.946001877,3.950594413,3.955186949,3.959773485,4.074110602,4.18844772,4.302784837,4.607315737,4.911846638,5.216377538,5.216377538,5.216377538 +18,IN,10,WASTE DISPOSAL & RECYCLING,SO2,1.10206,1.28517,1.33412,1.3631,1.16328,1.198396,1.244411,1.364194303,1.380653699,1.397113094,1.41357249,1.227815688,1.042058886,0.856302084,0.650395158,0.444488232,0.238581307,0.30701917,0.375457033,0.443894896,0.40170767,0.359520444,0.317333218,0.317333218,0.317333218 +18,IN,10,WASTE DISPOSAL & RECYCLING,VOC,40.5662,17.8556,18.5219,19.1397,19.52766,18.403902,18.960556,5.177286883,5.196947215,5.216607546,5.236267877,4.521157332,3.806046786,3.09093624,2.765962568,2.440988895,2.115175222,2.561718383,3.008261543,3.454804704,3.451654296,3.448503889,3.445353481,3.445353481,3.445353481 +18,IN,11,HIGHWAY VEHICLES,CO,2635.04348,2281.76252,2181.49624,2085.98024,1917.22066,1874.67948,1795.4959,1514.244696,1417.914025,1321.583354,1225.252683,1065.550391,905.8480996,824.5155858,817.9957491,758.7025864,819.8676897,788.9726827,758.0776758,727.1826688,660.9245595,589.2462371,562.3742105,530.7131265,505.1486155 +18,IN,11,HIGHWAY VEHICLES,VOC,215.1088,173.92319,165.33554,159.73788,150.72709,143.24862,136.64089,113.6144848,107.1586827,100.7028805,94.24707837,90.17090502,86.09473168,74.57624865,82.12719047,75.66893528,84.17355084,80.15798083,76.14241082,72.12684081,64.06720901,55.04906026,51.74350776,47.38451671,44.03519476 +18,IN,11,HIGHWAY VEHICLES,SO2,12.58525,8.31569,8.50975,8.55004,8.67717,7.33959,7.43765,9.515757668,7.935000786,6.354243905,4.773487023,2.845088905,0.916690788,0.851018731,0.876703767,0.939057969,0.817978821,0.76952042,0.72106202,0.672603619,0.594523364,0.615637543,0.538552438,0.301880893,0.26898019 +18,IN,11,HIGHWAY VEHICLES,PM25,8.24358,6.58795,6.21561,5.71582,5.26604,4.77482,4.41929,9.3093349,8.919399628,8.529464357,8.139529086,7.68805568,7.236582273,6.609087332,8.861918474,7.42894763,5.51157249,5.414971017,5.318369544,5.221768072,4.412855893,3.385426314,3.261406163,3.439311962,3.232441934 +18,IN,11,HIGHWAY VEHICLES,PM10,9.76038,8.16618,7.82053,7.26856,6.796,6.27228,5.89008,11.12190941,10.70650036,10.2910913,9.875682241,9.522023878,9.168365515,8.58247786,11.20459267,9.709812971,10.66443396,10.25915582,9.853877682,9.448599544,8.536951287,7.032958222,6.858127173,7.778523311,7.603257716 +18,IN,11,HIGHWAY VEHICLES,NH3,3.56814,6.25077,6.98917,6.71823,6.90515,7.05567,7.18636,3.929354202,3.762318463,3.595282723,3.428246984,3.338703103,3.249159223,3.069487669,3.127954338,2.843671698,3.334914955,3.21040315,3.085891345,2.96137954,2.766719436,2.737128676,2.676683935,2.516315055,2.462840644 +18,IN,11,HIGHWAY VEHICLES,NOX,235.39156,249.00491,249.57644,243.6117,234.67241,228.27725,215.38974,307.0245864,282.0071457,256.989705,231.9722643,214.0365608,196.1008574,179.8698157,220.6635342,195.7798731,171.4390345,164.908125,158.3772156,151.8463062,132.6080827,103.694178,98.3783435,92.49796788,84.5622677 +18,IN,12,OFF-HIGHWAY,CO,486.67454,546.57456,530.55701,530.15718,535.24432,540.37713,551.20958,503.7922808,478.0099671,452.2276535,426.4453399,429.8406539,433.2359678,375.0501768,361.8130953,348.3798535,335.7238681,322.4723223,309.2207766,295.9692308,280.6329347,251.780027,249.9603425,250.2438696,250.5273967 +18,IN,12,OFF-HIGHWAY,NH3,0.85672,0.93912,0.92219,0.95622,0.07924,0.07924,0.07924,0.067184624,0.068099331,0.069014039,0.069928747,0.067494929,0.065061111,0.064908224,0.067226773,0.068060831,0.066592303,0.068633265,0.070674228,0.07271519,0.071367242,0.066310562,0.068671348,0.069456565,0.070241782 +18,IN,12,OFF-HIGHWAY,NOX,102.1375,113.10967,112.71818,111.61555,109.0704,109.7013,109.81485,112.7575934,111.8827053,111.0078172,110.1329291,96.51324762,82.89356614,81.77574894,79.77409075,77.29161722,70.54623628,68.82624882,67.10626137,65.38627392,61.68922169,57.55226343,54.29511723,52.0887925,49.88246777 +18,IN,12,OFF-HIGHWAY,PM10,8.77802,8.99056,8.82472,8.65021,8.42372,8.27534,8.09784,7.515599743,7.334444903,7.153290063,6.972135222,6.47260756,5.973079898,5.650935401,5.550598952,5.402686112,5.122901055,4.883327394,4.643753732,4.404180071,4.215329104,4.09344109,3.837627172,3.639452684,3.441278197 +18,IN,12,OFF-HIGHWAY,PM25,8.05267,8.24936,8.09813,7.94197,7.72798,7.59111,7.42831,7.139037103,6.962701102,6.7863651,6.610029099,6.135331814,5.660634529,5.294191244,5.191466212,5.04876041,4.859757421,4.629220703,4.398683985,4.168147267,4.00087909,3.910079222,3.666342734,3.474154028,3.281965322 +18,IN,12,OFF-HIGHWAY,SO2,10.35376,11.73341,11.93796,12.17547,11.82975,12.14171,12.23511,9.09773696,9.208534567,9.319332174,9.430129782,6.717963772,4.005797762,1.538828097,1.798473358,1.253611277,0.501718931,0.417402599,0.333086266,0.248769933,0.277214068,0.339076907,0.33410234,0.338685033,0.343267726 +18,IN,12,OFF-HIGHWAY,VOC,52.10763,55.90044,51.70457,49.92393,49.6063,49.33518,48.9384,60.51403195,58.952933,57.39183405,55.8307351,53.97057001,52.11040492,48.58745077,46.48225862,45.43608623,42.73806732,39.90791917,37.07777102,34.24762287,29.88428108,22.10786153,21.15759751,20.67225827,20.18691903 +18,IN,14,MISCELLANEOUS,NH3,102.97009,89.39049,87.13993,89.79115,91.27509,89.59003,83.83207037,91.00748754,91.07398549,91.14048345,91.2069814,94.68051791,98.15405443,101.6275909,103.8087482,105.9899055,108.1710627,93.52995825,78.88885376,64.24774927,71.6510732,79.05439712,86.45772105,86.45772105,86.45772105 +18,IN,14,MISCELLANEOUS,SO2,0.00137,0.01144,0.00366,0.00576,0.03202,0.03131,0.02099,0.001943337,0.041238623,0.08053391,0.119829197,0.089068658,0.058308119,0.02754758,0.02197619,0.0164048,0.01083341,0.011550598,0.012267786,0.012984974,0.009694989,0.006405003,0.003115017,0.003115017,0.003115017 +18,IN,14,MISCELLANEOUS,PM25,99.65086,86.01199,87.77339,90.0438,91.26627,91.239227,79.6205935,62.03974534,62.40933091,62.77891647,63.14850204,64.00699234,64.86548264,65.72397294,67.27712754,68.83028214,70.38343674,63.14200998,55.90058323,48.65915647,39.66126954,30.66338262,21.66549569,21.66549569,21.66549569 +18,IN,14,MISCELLANEOUS,VOC,1.17563,1.50954,0.47587,0.66656,0.32816,0.321533,0.238846,0.099196025,1.055170626,2.011145227,2.967119827,2.110270397,1.253420966,0.396571536,0.272635716,0.148699896,0.024764076,1.267838598,2.51091312,3.753987641,4.417124096,5.080260551,5.743397006,5.743397006,5.743397006 +18,IN,14,MISCELLANEOUS,CO,6.78965,12.08331,5.30847,8.9759,5.83227,5.704867,3.948224,0.518224421,4.529885254,8.541546086,12.55320692,9.832836633,7.112466348,4.392096062,3.036143228,1.680190393,0.324237559,0.348110088,0.371982617,0.395855146,0.287809858,0.179764571,0.071719284,0.071719284,0.071719284 +18,IN,14,MISCELLANEOUS,PM10,520.01608,447.67415,460.55546,472.01499,480.16991,475.294987,449.9785638,538.4539031,538.889992,539.3260809,539.7621698,519.6969196,499.6316694,479.5664192,473.5781251,467.5898311,461.6015371,436.2911504,410.9807637,385.670377,296.6443713,207.6183656,118.5923599,118.5923599,118.5923599 +18,IN,14,MISCELLANEOUS,NOX,0.17191,0.32265,0.11665,0.18406,0.12578,0.12311,0.085441,0.010258026,0.096173185,0.182088343,0.268003501,0.25664861,0.245293719,0.233938828,0.168345468,0.102752108,0.037158748,0.039932455,0.042706162,0.045479868,0.032424017,0.019368166,0.006312315,0.006312315,0.006312315 +18,IN,15,WILDFIRES,VOC,,,,,,,,0.006329858,0.006329858,0.006329858,,0,0,,0,0,0.401374832,0.401374832,0.401374832,0.374820448,0.374820448,0.374820448,0.674954336,0.674954336,0.674954336 +18,IN,15,WILDFIRES,SO2,,,,,,,,0.000199775,0.000199775,0.000199775,,0,0,,0,0,0.01460326,0.01460326,0.01460326,0.013722971,0.013722971,0.013722971,0.024495253,0.024495253,0.024495253 +18,IN,15,WILDFIRES,PM25,,,,,,,,0.002611223,0.002611223,0.002611223,,0,0,,0,0,0.150677187,0.150677187,0.150677187,0.140897992,0.140897992,0.140897992,0.253243544,0.253243544,0.253243544 +18,IN,15,WILDFIRES,PM10,,,,,,,,0.0030865,0.0030865,0.0030865,,0,0,,0,0,0.177799174,0.177799174,0.177799174,0.166259502,0.166259502,0.166259502,0.298826415,0.298826415,0.298826415 +18,IN,15,WILDFIRES,NOX,,,,,,,,0.000328072,0.000328072,0.000328072,,0,0,,0,0,0.029240378,0.029240378,0.029240378,0.027590251,0.027590251,0.027590251,0.048966706,0.048966706,0.048966706 +18,IN,15,WILDFIRES,NH3,,,,,,,,0.000483152,0.000483152,0.000483152,,0,0,,0,0,0.027921761,0.027921761,0.027921761,0.026074729,0.026074729,0.026074729,0.046953473,0.046953473,0.046953473 +18,IN,15,WILDFIRES,CO,,,,,,,,0.034411768,0.034411768,0.034411768,,0,0,,0,0,1.693988855,1.693988855,1.693988855,1.581574296,1.581574296,1.581574296,2.84886368,2.84886368,2.84886368 +18,IN,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,1.71965318,1.854506024,1.989358867,2.124211711,3.137718455,4.151225198,5.164731942,4.91519012,4.665648298,4.416106476,4.416106476,4.416106476 +18,IN,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.317881847,0.343656035,0.369430223,0.395204411,0.587434822,0.779665233,0.971895645,0.923763276,0.875630908,0.82749854,0.82749854,0.82749854 +18,IN,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,19.2779194,20.84930314,22.42068688,23.99207062,35.69762307,47.40317552,59.10872797,56.17013469,53.23154141,50.29294813,50.29294813,50.29294813 +18,IN,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,2.02919308,2.188318215,2.34744335,2.506568485,3.702506629,4.898444772,6.094382916,5.799924027,5.505465138,5.211006249,5.211006249,5.211006249 +18,IN,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.16818136,0.17974029,0.19129922,0.20285815,0.292586619,0.382315088,0.472043558,0.451494489,0.43094542,0.410396351,0.410396351,0.410396351 +18,IN,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,4.56953805,4.940048297,5.310558543,5.68106879,8.444379726,11.20769066,13.9710016,13.27909654,12.58719149,11.89528644,11.89528644,11.89528644 +18,IN,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.33926629,0.359890282,0.380514274,0.401138266,0.566618413,0.732098561,0.897578708,0.862499854,0.827421,0.792342146,0.792342146,0.792342146 +19,IA,1,FUEL COMB. ELEC. UTIL.,VOC,0.54386,0.57286,0.60379,0.65324,0.73688,0.762961,0.70838,0.610228007,0.597225728,0.584223448,0.571221168,0.609348412,0.647475657,0.685602901,0.655699312,0.625795724,0.594802135,0.537997868,0.481193602,0.424389335,0.381465683,0.338542031,0.295618379,0.295618379,0.295618379 +19,IA,1,FUEL COMB. ELEC. UTIL.,SO2,180.53058,158.55607,161.18446,177.90688,162.767583,143.565827,139.976479,132.1169947,131.831998,128.792414,129.7517783,127.430296,130.60533,117.3934281,111.7500208,105.8083536,99.86651629,88.72895068,77.59138506,66.45381944,54.73649821,43.01917697,31.30185573,34.14418,26.743084 +19,IA,1,FUEL COMB. ELEC. UTIL.,PM25,0.79179,1.89761,1.48208,1.8264,5.271257,4.94222,5.217908,8.911292386,8.929450398,8.947608409,8.965766421,7.979473316,6.993180211,6.006887107,5.683423378,5.35995965,5.036215921,4.249140229,3.462064537,2.674988845,2.134786464,1.594584083,1.054381702,1.054381702,1.054381702 +19,IA,1,FUEL COMB. ELEC. UTIL.,PM10,2.2983,3.30312,2.22472,3.01714,6.468197,5.936703,6.379193,9.916238214,9.898821379,9.881404545,9.86398771,9.437084099,9.010180489,8.583276878,7.972855678,7.362434479,6.751732279,5.695338204,4.638944129,3.582550054,2.84922563,2.115901206,1.382576782,1.382576782,1.382576782 +19,IA,1,FUEL COMB. ELEC. UTIL.,NOX,78.31148,80.97561,77.40041,83.99883,82.76313,81.398989,81.243857,82.35214265,76.371145,76.633088,73.42743466,60.571476,53.337203,51.3039473,47.75738013,44.16748296,40.56801579,38.14730429,35.72659279,33.30588129,29.96181698,26.61775267,23.27368836,24.075419,18.13641 +19,IA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01104,0.0144,0.01193,0.01361,0.017533,0.01428,0.3911026,0.37083714,0.350571681,0.330306221,0.230616312,0.130926404,0.031236495,0.050398953,0.069561411,0.088723869,0.083699746,0.078675623,0.0736515,0.090244623,0.106837747,0.123430871,0.123430871,0.123430871 +19,IA,1,FUEL COMB. ELEC. UTIL.,CO,4.79751,5.18473,5.5622,6.24834,6.01547,6.28711,6.278083,5.672595286,5.522310726,5.372026166,5.221741606,12.51487707,19.80801254,27.101148,25.51733266,23.93351731,22.34012197,21.17153486,20.00294775,18.83436064,18.6845519,18.53474315,18.38493441,18.38493441,18.38493441 +19,IA,2,FUEL COMB. INDUSTRIAL,SO2,69.44154,69.96019,68.91782,66.75309,68.89728,67.215231,71.303977,34.34050314,36.53048944,38.72047573,40.91046203,37.66594829,34.42143455,31.17692081,26.80834049,22.43976018,18.07161986,18.1412583,18.21089674,18.28053519,23.06753499,27.85453479,32.64153459,32.64153459,32.64153459 +19,IA,2,FUEL COMB. INDUSTRIAL,PM25,0.99982,1.01865,1.00179,0.98008,1.708414,1.705364,1.751673,1.804013391,1.533723341,1.26343329,0.993143239,0.989728472,0.986313704,0.982898936,0.945709427,0.908519917,0.870974643,0.954378749,1.037782855,1.121186961,1.452723269,1.784259578,2.115795887,2.115795887,2.115795887 +19,IA,2,FUEL COMB. INDUSTRIAL,NOX,27.9878,30.85709,30.3376,29.78835,30.83847,30.914046,31.794278,31.48433577,31.59320201,31.70206825,31.81093449,29.66101724,27.51109999,25.36118274,23.82440443,22.28762611,20.7605078,18.73863911,16.71677042,14.69490173,17.65903411,20.62316649,23.58729887,23.58729887,23.58729887 +19,IA,2,FUEL COMB. INDUSTRIAL,CO,5.376,5.8408,5.73394,5.60246,5.7788,5.751008,5.939126,19.38702306,19.22563777,19.06425249,18.90286721,18.01969922,17.13653123,16.25336324,14.54704807,12.84073289,11.14407771,11.2565161,11.36895449,11.48139288,11.71478773,11.94818259,12.18157744,12.18157744,12.18157744 +19,IA,2,FUEL COMB. INDUSTRIAL,NH3,0.11477,0.13561,0.1332,0.13161,0.13492,0.138082,0.140067,0.197635144,0.209245144,0.220855144,0.232465144,0.225587221,0.218709297,0.211831373,0.280648658,0.349465943,0.418283229,0.448146299,0.478009369,0.50787244,0.501486719,0.495100997,0.488715276,0.488715276,0.488715276 +19,IA,2,FUEL COMB. INDUSTRIAL,VOC,0.2612,0.29856,0.29393,0.28906,0.29836,0.301473,0.312289,4.088964931,3.37214403,2.655323128,1.938502227,1.804563136,1.670624045,1.536684954,1.363777932,1.19087091,1.019053887,1.001689021,0.984324154,0.966959287,1.038517709,1.110076131,1.181634552,1.181634552,1.181634552 +19,IA,2,FUEL COMB. INDUSTRIAL,PM10,1.91843,1.93774,1.90726,1.86073,2.622224,2.598125,2.697427,3.109334654,2.9287286,2.748122546,2.567516492,2.279613,1.991709509,1.703806017,1.719646331,1.735486645,1.750951682,1.69268401,1.634416338,1.576148666,3.667364445,5.758580224,7.849796003,7.849796003,7.849796003 +19,IA,3,FUEL COMB. OTHER,NH3,0.0614,0.0642,0.06159,0.05624,0.05936,0.059705,0.060081,0.022175657,0.022485657,0.022795657,0.023105657,0.317310075,0.611514494,0.905718912,0.958491024,1.011263137,1.043324252,1.054816502,1.066308751,1.077801001,0.989149904,0.900498807,0.811847709,0.811847709,0.811847709 +19,IA,3,FUEL COMB. OTHER,NOX,10.19474,12.33132,12.00765,11.54659,12.179518,12.349838,12.509147,9.370332293,9.451509993,9.532687693,9.613865394,8.355817261,7.097769128,5.839720995,7.151064075,8.462407155,9.743062909,10.01643684,10.28981077,10.56318471,9.908496428,9.253808148,8.599119868,8.599119868,8.599119868 +19,IA,3,FUEL COMB. OTHER,PM10,5.31594,5.5676,5.59963,5.65372,6.620433,6.960764,7.009864,6.95477953,6.952537609,6.950295687,6.948053765,6.082905413,5.217757061,4.352608709,5.078933054,5.8052574,6.30585769,6.354785649,6.403713607,6.452641566,5.601550911,4.750460255,3.899369599,3.899369599,3.899369599 +19,IA,3,FUEL COMB. OTHER,PM25,4.75929,4.65598,4.65776,4.66152,5.496834,5.814517,5.837536,6.241294993,6.227323348,6.213351704,6.199380059,5.5607925,4.922204942,4.283617383,4.991722381,5.69982738,6.182166162,6.237512248,6.292858335,6.348204421,5.507211794,4.666219167,3.82522654,3.82522654,3.82522654 +19,IA,3,FUEL COMB. OTHER,SO2,18.17512,21.51235,22.27016,23.34346,33.013872,33.606229,34.256052,17.274221,17.75983589,18.24545078,18.73106567,14.59445606,10.45784644,6.321236818,6.691093247,7.060949676,7.428324615,5.766628745,4.104932874,2.443237004,2.124094395,1.804951785,1.485809176,1.485809176,1.485809176 +19,IA,3,FUEL COMB. OTHER,VOC,6.45867,13.38957,13.39788,13.36829,14.147928,15.103789,15.108053,14.20153915,12.7949624,11.38838565,9.981808896,8.503017206,7.024225516,5.545433825,6.445203582,7.344973338,8.08235303,7.706257094,7.330161158,6.954065222,5.973338459,4.992611696,4.011884933,4.011884933,4.011884933 +19,IA,3,FUEL COMB. OTHER,CO,34.71608,33.12909,33.13202,33.08548,51.616459,53.810161,53.817453,52.36042581,52.43734847,52.51427113,52.59119378,46.49323396,40.39527414,34.29731432,39.46552158,44.63372884,48.3272126,47.64296884,46.95872507,46.27448131,40.5643084,34.85413549,29.14396258,29.14396258,29.14396258 +19,IA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.35306,0.35306,0.36463,0.3751,0.541081,0.560711,0.586095,0.242929237,0.187549371,0.132169505,0.076789639,0.090478926,0.104168213,0.1178575,0.111984667,0.106111833,0.100239,0.095556,0.090873,0.08619,0.151167068,0.216144136,0.281121204,0.281121204,0.281121204 +19,IA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,1.2197,1.00401,1.0423,1.07008,1.09289,1.138965,1.19439,5.637879372,5.420849379,5.203819386,4.986789393,3.846446503,2.706103612,1.565760721,1.646696545,1.727632369,2.107421534,2.083016779,2.058612025,2.03420727,2.042249537,2.050291803,2.05833407,2.05833407,2.05833407 +19,IA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.34877,0.34877,0.36016,0.37054,0.536451,0.555854,0.580944,0.208477761,0.163586729,0.118695696,0.073804664,0.08583946,0.097874257,0.109909054,0.101036036,0.092163018,0.08329,0.080266667,0.077243333,0.07422,0.13298897,0.19175794,0.250526911,0.250526911,0.250526911 +19,IA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,6.4831,6.4831,6.68634,6.88959,7.07248,7.312943,7.624133,0.99952366,0.951864676,0.904205693,0.85654671,0.794992806,0.733438903,0.671885,0.659608,0.647331,0.86068795,0.745858633,0.631029317,0.5162,0.581974232,0.647748464,0.713522696,0.713522696,0.713522696 +19,IA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,8.07793,8.07793,8.3315,8.58389,3.81504,3.944802,4.112009,3.09107,2.218073333,1.345076667,0.47208,0.601461667,0.730843333,0.860225,0.653864967,0.447504933,0.2411449,0.2761166,0.3110883,0.34606,0.409239198,0.472418397,0.535597595,0.535597595,0.535597595 +19,IA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.1477,0.1477,0.15386,0.15661,0.15921,0.16742,0.177985,0.857044579,0.822572553,0.788100526,0.7536285,0.636589,0.5195495,0.40251,0.478274,0.554038,0.926185855,0.820737237,0.715288618,0.60984,0.592378494,0.574916988,0.557455482,0.557455482,0.557455482 +19,IA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.0157,0.0157,0.01619,0.01668,0.01712,0.017702,0.018455,0.137147421,0.190408281,0.24366914,0.29693,0.253203333,0.209476667,0.16575,0.155566,0.145382,0.137209577,0.092676384,0.048143192,0.00361,0.033847392,0.064084784,0.094322176,0.094322176,0.094322176 +19,IA,5,METALS PROCESSING,CO,2.1324,2.1324,2.1058,2.02724,1.92324,1.873236,1.917472,1.33215558,1.821367053,2.310578527,2.79979,2.744776,2.689762,2.634748,2.635479333,2.636210667,2.641142,2.56850964,2.49587728,2.42324492,2.279947441,2.136649961,1.993352482,1.993352482,1.993352482 +19,IA,5,METALS PROCESSING,NH3,,,,,,,,,0.000313333,0.000626667,0.00094,0.0038617,0.0067834,0.0097051,0.0091004,0.0084957,0.007951,0.009560667,0.011170333,0.01278,0.01133195,0.0098839,0.008435849,0.008435849,0.008435849 +19,IA,5,METALS PROCESSING,NOX,0.006,0.006,0.006,0.00577,0.00544,0.005534,0.005826,0.520399477,0.574313659,0.628227841,0.682142024,0.697761016,0.713380008,0.728999,0.762930333,0.796861667,0.830933,0.805719333,0.780505667,0.755292,0.725255131,0.695218262,0.665181393,0.665181393,0.665181393 +19,IA,5,METALS PROCESSING,PM10,0.20354,0.20354,0.20287,0.19289,0.495652,0.511982,0.544066,1.722075023,1.505346129,1.288617236,1.071888342,1.010720291,0.949552241,0.88838419,0.797775889,0.707167587,0.616359286,0.583634834,0.550910382,0.51818593,0.504397443,0.490608955,0.476820468,0.476820468,0.476820468 +19,IA,5,METALS PROCESSING,PM25,0.12612,0.12612,0.12444,0.11724,0.423492,0.436309,0.463054,1.374812507,1.260220242,1.145627978,1.031035714,0.933408263,0.835780812,0.738153361,0.679620634,0.621087907,0.55986518,0.517890193,0.475915207,0.43394022,0.431786181,0.429632142,0.427478104,0.427478104,0.427478104 +19,IA,5,METALS PROCESSING,SO2,0.0181,0.0181,0.01781,0.01676,0.01544,0.01494,0.015329,0.363397144,0.369694763,0.375992381,0.38229,0.418465677,0.454641353,0.49081703,0.410534363,0.330251697,0.25026903,0.304489687,0.358710343,0.412931,0.423476225,0.43402145,0.444566675,0.444566675,0.444566675 +19,IA,5,METALS PROCESSING,VOC,0.0069,0.0069,0.00727,0.0075,0.0077,0.008242,0.009018,1.023005503,1.052847695,1.082689886,1.112532078,1.025865915,0.939199753,0.85253359,1.00911606,1.16569853,1.323681,1.244173197,1.164665393,1.08515759,0.982638352,0.880119114,0.777599877,0.777599877,0.777599877 +19,IA,6,PETROLEUM & RELATED INDUSTRIES,PM25,,,,,,,,0.01524842,0.019198947,0.023149473,0.0271,0.027718824,0.028337649,0.028956473,0.021784315,0.014612158,0.01142,0.00926,0.0071,0.00494,0.008360337,0.011780675,0.015201012,0.015201012,0.015201012 +19,IA,6,PETROLEUM & RELATED INDUSTRIES,CO,,,,,,,,0,0,0,,0,0,0,0.00057,0.00114,0.00171,0.00187,0.00203,0.00219,0.006896633,0.011603267,0.0163099,0.0163099,0.0163099 +19,IA,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,0,0,0,0,0.00001,0.00002,0.00003,3.53E-05,4.06E-05,4.58E-05,4.58E-05,4.58E-05 +19,IA,6,PETROLEUM & RELATED INDUSTRIES,SO2,,,,,,,,,0,0,,0,0,0,3.33E-06,6.67E-06,0.00001,0.00001,0.00001,0.00001,0.000136621,0.000263242,0.000389864,0.000389864,0.000389864 +19,IA,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.027,0.027,0.027,0.027,0.027,0.027,0.027,0.063544,0.051517667,0.039491333,0.027465,0.019502,0.011539,0.003576,0.004289676,0.005003353,0.005717029,0.005591353,0.005465676,0.00534,0.013622951,0.021905901,0.030188852,0.030188852,0.030188852 +19,IA,6,PETROLEUM & RELATED INDUSTRIES,PM10,,,,,,,,0.0182,0.021166667,0.024133333,0.0271,0.027806667,0.028513333,0.02922,0.026686667,0.024153333,0.0256,0.02673,0.02786,0.02899,0.025250355,0.021510709,0.017771064,0.017771064,0.017771064 +19,IA,6,PETROLEUM & RELATED INDUSTRIES,NOX,,,,,,,,0,0,0,,0,0,0,0.000113333,0.000226667,0.00034,0.00056,0.00078,0.001,0.00230142,0.003602841,0.004904261,0.004904261,0.004904261 +19,IA,7,OTHER INDUSTRIAL PROCESSES,CO,0.1964,0.21739,0.22761,0.23583,0.24304,0.258513,0.601188723,16.13465133,14.40040225,12.66615318,10.9319041,8.962394169,6.992884237,5.023374305,5.0045003,4.985626295,4.96675229,5.861263207,6.755774124,7.650285041,6.669590629,5.688896216,4.708201804,4.708201804,4.708201804 +19,IA,7,OTHER INDUSTRIAL PROCESSES,NH3,4.44169,4.96403,5.15772,5.22653,5.29439,5.532637,5.845006,7.923584035,7.641248305,7.358912575,7.076576845,4.939321881,2.802066916,0.664811952,0.784439167,0.904066383,1.024193598,1.043063917,1.061934236,1.080804555,1.299891082,1.518977609,1.738064136,1.738064136,1.738064136 +19,IA,7,OTHER INDUSTRIAL PROCESSES,NOX,3.1891,3.55564,3.77555,3.89994,3.97915,4.272639,4.62034,9.903711307,9.668535231,9.433359156,9.19818308,8.686827037,8.175470993,7.66411495,7.060103707,6.456092463,5.85208122,5.84352827,5.834975319,5.826422369,5.586644371,5.346866373,5.107088375,5.107088375,5.107088375 +19,IA,7,OTHER INDUSTRIAL PROCESSES,PM10,8.09856,11.17843,11.54767,12.63571,12.86909,13.252616,14.43834952,13.58116855,13.25689861,12.93262867,12.60835873,11.77797178,10.94758483,10.11719788,9.668166577,9.21913527,8.899588263,8.581360149,8.263132035,7.944903921,8.0037911,8.06267828,8.121565459,8.121565459,8.121565459 +19,IA,7,OTHER INDUSTRIAL PROCESSES,PM25,3.14375,3.82758,3.97542,4.22521,4.80154,4.987284,5.954168164,5.279148421,5.127049726,4.97495103,4.822852334,4.429101395,4.035350457,3.641599518,3.605963397,3.570327276,3.57346326,3.575676599,3.577889939,3.580103279,3.748055414,3.91600755,4.083959686,4.083959686,4.083959686 +19,IA,7,OTHER INDUSTRIAL PROCESSES,SO2,5.83034,6.50077,6.91809,7.15558,7.30243,7.859829,8.517235,19.49159875,19.91424323,20.3368877,20.75953218,16.19741121,11.63529024,7.073169277,5.895895763,4.718622248,3.541348733,3.476848649,3.412348564,3.34784848,2.947343912,2.546839344,2.146334777,2.146334777,2.146334777 +19,IA,7,OTHER INDUSTRIAL PROCESSES,VOC,3.6966,3.79537,3.99674,4.00337,4.02042,4.135202,4.410887481,14.27806874,14.50836198,14.73865523,14.96894847,13.63711411,12.30527974,10.97344538,10.64882527,10.32420515,9.975755841,10.20458535,10.43341487,10.66224438,10.26850871,9.874773047,9.481037379,9.481037379,9.481037379 +19,IA,8,SOLVENT UTILIZATION,CO,,,,,,,,0.014129712,0.012526808,0.010923904,0.009321,0.009748,0.010175,0.010602,0.009730667,0.008859333,0.007988,0.0084906,0.0089932,0.0094958,0.010696946,0.011898091,0.013099237,0.013099237,0.013099237 +19,IA,8,SOLVENT UTILIZATION,VOC,88.4943,106.73715,109.74892,100.96051,96.94414,99.220864,103.475865,48.04987411,46.60728861,45.16470312,43.72211762,45.61298878,47.50385995,49.39473112,52.06553597,54.73634083,57.35374953,52.51732615,47.68090277,42.84447939,46.08507419,49.325669,52.56626381,52.56626381,52.56626381 +19,IA,8,SOLVENT UTILIZATION,SO2,0.0001,0.0001,0.0001,0.00009,0.00008,0.000077,0.000079,0.000022674,3.94E-05,5.62E-05,0.000073,7.87E-05,8.43E-05,0.00009,0.000098,0.000106,0.000114,9.91E-05,8.42E-05,0.00006926,7.78E-05,8.63E-05,9.48E-05,9.48E-05,9.48E-05 +19,IA,8,SOLVENT UTILIZATION,PM25,0.02851,0.02851,0.02956,0.03034,0.03099,0.032229,0.033488,0.282153081,0.248905668,0.215658256,0.182410843,0.155780262,0.129149681,0.1025191,0.117363107,0.132207115,0.147051122,0.150314822,0.153578521,0.156842221,0.157596779,0.158351337,0.159105895,0.159105895,0.159105895 +19,IA,8,SOLVENT UTILIZATION,PM10,0.031,0.031,0.03215,0.033,0.0337,0.035051,0.03642,0.328934354,0.280420095,0.231905836,0.183391577,0.163758885,0.144126192,0.1244935,0.136334507,0.148175515,0.160016522,0.164065121,0.16811372,0.17216232,0.169004475,0.165846631,0.162688787,0.162688787,0.162688787 +19,IA,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0.000065,0.00013,0.000195,0.000237333,0.000279667,0.000322,0.000298,0.000274,0.00025,0.000273599,0.000297199,0.000320798,0.000320798,0.000320798 +19,IA,8,SOLVENT UTILIZATION,NOX,0.0013,0.0013,0.00127,0.00117,0.00105,0.001008,0.001037,0.0108013,0.0117104,0.0126195,0.0135286,0.0166974,0.0198662,0.023035,0.018544,0.014053,0.009562,0.010128257,0.010694513,0.01126077,0.012566685,0.0138726,0.015178514,0.015178514,0.015178514 +19,IA,9,STORAGE & TRANSPORT,NH3,,,,,,,,0.02159,0.02159,0.02159,0.02159,0.45144,0.88129,1.31114,1.436747,1.562354,1.687961,1.626547333,1.565133667,1.50372,1.026752499,0.549784998,0.072817497,0.072817497,0.072817497 +19,IA,9,STORAGE & TRANSPORT,CO,,,,,,,,0.411671955,0.29721317,0.182754385,0.0682956,0.0663742,0.0644528,0.0625314,0.063942833,0.065354267,0.0667657,0.0682638,0.0697619,0.07126,0.064031646,0.056803293,0.049574939,0.049574939,0.049574939 +19,IA,9,STORAGE & TRANSPORT,NOX,,,,,,,,0.045462338,0.039441325,0.033420313,0.0273993,0.02801562,0.02863194,0.02924826,0.030169673,0.031091087,0.0320125,0.033371667,0.034730833,0.03609,0.032890693,0.029691387,0.02649208,0.02649208,0.02649208 +19,IA,9,STORAGE & TRANSPORT,PM25,0.2989,0.32271,0.33745,0.34485,0.455922,0.475564,0.496889,1.196957035,1.169344033,1.141731031,1.114118029,1.100398061,1.086678093,1.072958125,1.04563541,1.018312695,0.99099998,0.966612698,0.942225417,0.917838135,0.850877137,0.783916139,0.716955141,0.716955141,0.716955141 +19,IA,9,STORAGE & TRANSPORT,SO2,,,,,,,,0.006339813,0.006043208,0.005746604,0.00545,0.005457061,0.005464121,0.005471182,0.005772788,0.006074394,0.006376,0.007042,0.007708,0.008374,0.010351129,0.012328258,0.014305388,0.014305388,0.014305388 +19,IA,9,STORAGE & TRANSPORT,VOC,26.7364,21.72662,21.72805,21.72877,21.71909,21.807338,22.069548,24.1526218,23.76707499,23.38152819,22.99598138,21.80138208,20.60678279,19.41218349,20.02175376,20.63132403,19.36793511,16.34949051,13.33104592,10.31260133,10.22201464,10.13142796,10.04084127,10.04084127,10.04084127 +19,IA,9,STORAGE & TRANSPORT,PM10,0.73143,0.80371,0.84222,0.86269,0.985362,1.029749,1.078606,2.998738775,2.920792126,2.842845478,2.764898829,2.372794454,1.980690078,1.588585702,1.463824993,1.339064283,1.214313574,1.189349072,1.16438457,1.139420068,1.05915693,0.978893792,0.898630655,0.898630655,0.898630655 +19,IA,10,WASTE DISPOSAL & RECYCLING,NH3,0.94402,1.12207,1.10529,1.13885,1.15557,1.189086,1.222593,0.80692,0.75282,0.69872,0.64462,0.530755114,0.416890228,0.303025343,0.305765427,0.308505512,0.311245597,0.324968163,0.338690729,0.352413295,0.263521153,0.174629011,0.085736869,0.085736869,0.085736869 +19,IA,10,WASTE DISPOSAL & RECYCLING,NOX,1.5729,1.30444,1.34646,1.36652,1.38212,1.248567,1.264082,1.306826844,1.348517187,1.390207529,1.431897872,1.204179677,0.976461482,0.748743287,0.727450921,0.706158556,0.68468619,0.763162148,0.841638107,0.920114065,0.867977658,0.815841252,0.763704845,0.763704845,0.763704845 +19,IA,10,WASTE DISPOSAL & RECYCLING,PM10,5.38429,4.59365,4.77063,4.82094,4.899605,4.435304,4.451668,4.537179909,4.549004664,4.560829419,4.572654174,3.925570789,3.278487404,2.631404019,2.508098346,2.384792673,2.261466999,2.473270767,2.685074534,2.896878301,2.896334031,2.895789762,2.895245492,2.895245492,2.895245492 +19,IA,10,WASTE DISPOSAL & RECYCLING,PM25,4.64649,4.19166,4.35003,4.39385,4.469525,3.998159,4.009888,4.042203795,4.07244282,4.102681846,4.132920871,3.505692086,2.878463302,2.251234517,2.156970146,2.062705776,1.968421405,2.125357209,2.282293012,2.439228816,2.483287086,2.527345356,2.571403626,2.571403626,2.571403626 +19,IA,10,WASTE DISPOSAL & RECYCLING,SO2,0.53113,0.47521,0.49179,0.50245,0.51005,0.522082,0.535519,0.471322,0.472401333,0.473480667,0.47456,0.34009431,0.20562862,0.07116293,0.079046718,0.086930507,0.094274295,0.127305559,0.160336824,0.193368088,0.188273972,0.183179856,0.178085741,0.178085741,0.178085741 +19,IA,10,WASTE DISPOSAL & RECYCLING,VOC,7.07776,3.45231,3.58248,3.62043,3.63845,3.324534,3.333133,4.176244848,4.112045151,4.047845454,3.983645757,2.982347049,1.98104834,0.979749632,0.926735375,0.873721119,0.820706862,1.199559142,1.578411423,1.957263703,1.872396231,1.787528758,1.702661285,1.702661285,1.702661285 +19,IA,10,WASTE DISPOSAL & RECYCLING,CO,36.13205,18.67806,19.06296,19.25619,19.47856,14.474677,14.528082,14.41389053,14.55686204,14.69983356,14.84280507,13.13930077,11.43579647,9.732292166,9.010040455,8.287788745,7.565377034,10.35522099,13.14506494,15.93490889,14.93754162,13.94017435,12.94280708,12.94280708,12.94280708 +19,IA,11,HIGHWAY VEHICLES,PM25,4.21195,2.86432,2.71853,2.51407,2.3317,2.11387,1.96562,4.35030006,4.194141882,4.037983704,3.881825527,3.705091673,3.52835782,3.191809676,3.30542442,3.274575685,2.671833137,2.555132069,2.438431001,2.321729933,2.030990284,1.639441268,1.528672835,1.567738126,1.469033977 +19,IA,11,HIGHWAY VEHICLES,CO,1367.69745,1037.34539,986.30937,937.33908,855.17077,843.1844,819.45588,685.2972964,647.8018644,610.3064323,572.8110003,530.9712664,489.1315325,441.0845813,327.5062908,377.4028481,371.1389343,359.3554345,347.5719348,335.788435,323.7793969,272.3465552,258.8228146,241.028875,229.353317 +19,IA,11,HIGHWAY VEHICLES,NH3,1.72071,2.51887,2.84202,2.75391,2.85272,2.90968,2.99071,1.712270715,1.650368044,1.588465373,1.526562702,1.548074272,1.569585842,1.463127798,1.268763343,1.31675408,1.330144395,1.277141785,1.224139175,1.171136565,1.167059189,1.111664878,1.099840314,1.019689332,0.999239317 +19,IA,11,HIGHWAY VEHICLES,PM10,4.96357,3.5224,3.39396,3.17168,2.98487,2.75173,2.59562,5.103485368,4.943279416,4.783073465,4.622867514,4.370391215,4.117914916,3.760919952,3.886389573,3.874104642,4.490507718,4.232229782,3.973951845,3.715673909,3.464456057,2.885241138,2.79498845,2.987734336,2.887931987 +19,IA,11,HIGHWAY VEHICLES,SO2,6.36826,3.47566,3.58719,3.63154,3.71404,3.15474,3.22551,4.32502401,3.628030248,2.931036486,2.234042725,1.477740056,0.721437387,0.691392521,0.670133928,0.697251658,0.332874907,0.322670779,0.312466652,0.302262524,0.305621005,0.305111004,0.279107307,0.144803058,0.122445959 +19,IA,11,HIGHWAY VEHICLES,VOC,108.33378,72.98546,69.12042,66.4986,62.44157,60.56976,57.78812,51.07061628,48.71130518,46.35199408,43.99268298,44.44730302,44.90192306,39.42393827,32.49149605,37.51980148,41.43014599,40.05965839,38.68917079,37.31868319,35.59974651,29.86785619,27.22228953,25.83593918,24.32197503 +19,IA,11,HIGHWAY VEHICLES,NOX,117.73192,106.54262,107.57319,105.80242,102.69331,99.87037,95.10008,144.2876066,133.1601265,122.0326464,110.9051663,103.5043925,96.10361882,87.89847875,95.43585948,87.94457922,82.78420001,78.80353252,74.82286503,70.84219754,67.03821053,53.80297483,50.20154546,45.79957869,41.93391017 +19,IA,12,OFF-HIGHWAY,PM25,8.48176,8.49862,8.31077,8.11295,7.94881,7.72647,7.47332,7.850243673,7.564750391,7.279257108,6.993763826,6.638616556,6.283469285,5.872114357,5.695774189,5.450557415,5.209927163,4.893448213,4.576969263,4.260490313,3.885591941,3.32212229,3.135795199,2.971501012,2.807206826 +19,IA,12,OFF-HIGHWAY,CO,284.59141,318.43485,311.34117,311.4809,313.46644,315.54291,320.74513,318.2135928,299.3099768,280.4063607,261.5027447,273.8290939,286.1554431,237.7490758,242.0252636,232.4910494,226.2595448,216.3908286,206.5221125,196.6533963,180.2007415,148.5180811,147.2954318,146.8060597,146.3166876 +19,IA,12,OFF-HIGHWAY,NH3,0.66118,0.60771,0.54965,0.58257,0.0708,0.0708,0.0708,0.05484054,0.055674836,0.056509132,0.057343429,0.06044532,0.063547212,0.064113302,0.065472851,0.066394569,0.066702904,0.067990594,0.069278285,0.070565975,0.065611149,0.05423416,0.055701496,0.055916101,0.056130705 +19,IA,12,OFF-HIGHWAY,NOX,79.78585,88.9868,88.74777,88.21809,87.69717,87.77093,87.71409,93.81959009,93.45683143,93.09407277,92.73131412,87.94247412,83.15363413,84.50644157,80.98541588,79.20299991,76.82283824,73.87101876,70.91919927,67.96737978,61.35089623,49.46329692,48.11792912,46.00980944,43.90168975 +19,IA,12,OFF-HIGHWAY,PM10,9.24386,9.25829,9.05355,8.83463,8.6591,8.41829,8.14359,8.131317982,7.834722929,7.538127876,7.241532823,6.908650883,6.575768942,6.180757773,5.998926011,5.743739773,5.457687407,5.128416132,4.799144857,4.469873582,4.068829921,3.459201264,3.266742599,3.097078467,2.927414335 +19,IA,12,OFF-HIGHWAY,SO2,6.62856,8.30017,8.41603,8.56111,8.76153,8.98019,9.16268,8.396746243,8.530943181,8.665140119,8.799337057,6.329172963,3.85900887,1.403115589,1.503806385,0.961971684,0.430129444,0.336758551,0.243387659,0.150016766,0.147869305,0.138175199,0.143574385,0.144204799,0.144835214 +19,IA,12,OFF-HIGHWAY,VOC,36.59863,39.35512,37.20867,36.23806,35.94309,35.5636,35.12497,53.79100868,50.90054249,48.0100763,45.11961012,43.16083254,41.20205497,38.80819358,37.46120444,34.79057362,31.71694281,28.9422012,26.16745959,23.39271799,20.78552882,16.46778465,15.57115048,15.01226672,14.45338297 +19,IA,14,MISCELLANEOUS,SO2,0.00396,0.00373,0.00441,0.00186,0.01964,0.06895,0.02559,0.01779,0.036578156,0.055366312,0.074154467,0.068070561,0.061986655,0.055902748,0.038046278,0.020189809,0.002333339,0.002691057,0.003048775,0.003406493,0.004750648,0.006094802,0.007438956,0.007438956,0.007438956 +19,IA,14,MISCELLANEOUS,NH3,279.7209,284.56824,285.80617,289.90552,284.65166,284.68646,212.673922,246.3150099,246.3481069,246.3812038,246.4143008,262.7924092,279.1705177,295.5486261,290.6210339,285.6934417,280.7658495,278.2683062,275.7707629,273.2732197,291.7842251,310.2952306,328.806236,328.806236,328.806236 +19,IA,14,MISCELLANEOUS,NOX,0.11251,0.11384,0.13065,0.06031,0.07627,0.25575,0.09789,0.01659,0.068917793,0.121245585,0.173573378,0.277574782,0.381576186,0.48557759,0.327860834,0.170144079,0.012427323,0.015160042,0.017892761,0.02062548,0.025483822,0.030342165,0.035200507,0.035200507,0.035200507 +19,IA,14,MISCELLANEOUS,PM25,111.43509,99.03358,96.783,97.47076,96.68587,96.078915,91.1860664,56.46454872,56.64722613,56.82990355,57.01258096,67.48679435,77.96100775,88.43522114,88.73246603,89.02971092,89.32695581,77.04197859,64.75700136,52.47202414,51.5740307,50.67603726,49.77804382,49.77804382,49.77804382 +19,IA,14,MISCELLANEOUS,CO,3.35029,4.92716,5.33589,2.67182,3.53819,11.90674,4.54664,1.41196,3.391665061,5.371370122,7.351075183,8.137299557,8.923523931,9.709748305,6.481833671,3.253919037,0.026004403,0.114487799,0.202971195,0.291454591,0.644043063,0.996631535,1.349220007,1.349220007,1.349220007 +19,IA,14,MISCELLANEOUS,VOC,0.50295,0.47232,0.56957,0.25136,0.19202,0.58587,0.23955,0.308500134,0.784061307,1.259622481,1.735183654,1.473701093,1.212218533,0.950735972,0.63450943,0.318282888,0.002056346,6.478258817,12.95446129,19.43066376,20.81920952,22.20775528,23.59630103,23.59630103,23.59630103 +19,IA,14,MISCELLANEOUS,PM10,599.89923,529.05954,520.07195,519.48619,515.61925,509.685099,501.1573808,454.65408,454.8710187,455.0879574,455.304896,473.3250426,491.3451891,509.3653356,514.9045745,520.4438134,525.9830523,457.2115621,388.4400718,319.6685815,320.4181255,321.1676695,321.9172135,321.9172135,321.9172135 +19,IA,15,WILDFIRES,NH3,,,,,,,,0.00010424,0.00010424,0.00010424,,0,0,,0,0,0.071814564,0.071814564,0.071814564,0.180638227,0.180638227,0.180638227,0.278066623,0.278066623,0.278066623 +19,IA,15,WILDFIRES,NOX,,,,,,,,0.000093393,0.000093393,0.000093393,,0,0,,0,0,0.091925929,0.091925929,0.091925929,0.20806262,0.20806262,0.20806262,0.242955369,0.242955369,0.242955369 +19,IA,15,WILDFIRES,PM10,,,,,,,,0.000714227,0.000714227,0.000714227,,0,0,,0,0,0.470428622,0.470428622,0.470428622,1.16509798,1.16509798,1.16509798,1.732774247,1.732774247,1.732774247 +19,IA,15,WILDFIRES,PM25,,,,,,,,0.000613584,0.000613584,0.000613584,,0,0,,0,0,0.398668223,0.398668223,0.398668223,0.987371286,0.987371286,0.987371286,1.46845318,1.46845318,1.46845318 +19,IA,15,WILDFIRES,SO2,,,,,,,,4.86E-05,4.86E-05,4.86E-05,,0,0,,0,0,0.042605903,0.042605903,0.042605903,0.100178427,0.100178427,0.100178427,0.130875762,0.130875762,0.130875762 +19,IA,15,WILDFIRES,CO,,,,,,,,0.007730234,0.007730234,0.007730234,,0,0,,0,0,4.336821659,4.336821659,4.336821659,10.93645248,10.93645248,10.93645248,16.92813204,16.92813204,16.92813204 +19,IA,15,WILDFIRES,VOC,,,,,,,,0.001646428,0.001646428,0.001646428,,0,0,,0,0,1.032333835,1.032333835,1.032333835,2.59667556,2.59667556,2.59667556,3.997213094,3.997213094,3.997213094 +19,IA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.134468434,0.298317489,0.462166543,0.626015598,0.815222612,1.004429626,1.19363664,0.842382083,0.491127526,0.139872968,0.139872968,0.139872968 +19,IA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,3.41044524,7.981397303,12.55234937,17.12330143,21.32722219,25.53114295,29.73506371,21.2025727,12.6700817,4.137590699,4.137590699,4.137590699 +19,IA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,14.3522829,33.65361794,52.95495298,72.25628802,89.85429918,107.4523103,125.0503215,89.20190977,53.35349805,17.50508633,17.50508633,17.50508633 +19,IA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,1.30318333,3.013701242,4.724219155,6.434737067,8.092853146,9.750969225,11.4090853,8.115966605,4.822847905,1.529729205,1.529729205,1.529729205 +19,IA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,1.53775978,3.556169178,5.574578576,7.592987974,9.549564079,11.50614018,13.46271629,9.57683768,5.69095907,1.80508046,1.80508046,1.80508046 +19,IA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.237249723,0.555227582,0.873205441,1.1911833,1.48362937,1.77607544,2.06852151,1.474958464,0.881395418,0.287832372,0.287832372,0.287832372 +19,IA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.282859093,0.607702861,0.932546628,1.257390396,1.683783167,2.110175937,2.536568708,1.779736167,1.022903626,0.266071085,0.266071085,0.266071085 +20,KS,1,FUEL COMB. ELEC. UTIL.,NH3,,0.04037,0.04362,0.05785,0.070132,0.073706,0.063473,0.418910477,0.411854151,0.404797825,0.397741499,0.384980799,0.372220099,0.359459399,0.353088744,0.346718088,0.335576009,0.264484348,0.193392687,0.122301027,0.130796046,0.139291065,0.147786084,0.147786084,0.147786084 +20,KS,1,FUEL COMB. ELEC. UTIL.,CO,6.21296,5.86659,5.61811,6.04586,6.87328,7.465496,6.968046,6.517877146,6.346904662,6.175932179,6.004959695,6.81186487,7.618770044,8.425675219,12.84533857,17.26500192,21.68269562,22.93317338,24.18365114,25.43412889,21.58523008,17.73633127,13.88743245,13.88743245,13.88743245 +20,KS,1,FUEL COMB. ELEC. UTIL.,NOX,77.86372,95.86174,84.50204,82.46302,92.73813,94.740758,88.784904,96.40060463,94.137529,92.491811,89.20284724,79.513751,69.811754,52.8050988,49.62564448,46.44417881,43.25493061,37.70273552,32.15054044,26.59834536,22.15702031,17.71569525,13.2743702,13.703302,12.432423 +20,KS,1,FUEL COMB. ELEC. UTIL.,PM25,0.97918,1.41409,1.31436,1.30293,4.644679,4.761649,4.140604,5.793990591,5.709022882,5.624055173,5.539087463,4.282071348,3.025055232,1.768039116,1.777378831,1.786718545,1.795532818,1.607217829,1.41890284,1.230587851,1.319998637,1.409409423,1.498820208,1.498820208,1.498820208 +20,KS,1,FUEL COMB. ELEC. UTIL.,SO2,87.7837,117.12577,109.14938,117.66335,118.16014,116.478067,120.505784,129.8174459,141.01651,123.892051,136.4979729,111.225304,115.771722,95.9092276,77.07624132,58.243261,39.40982152,36.79472123,34.17962095,31.56452066,22.90202297,14.23952527,5.577027577,5.445883,4.857593 +20,KS,1,FUEL COMB. ELEC. UTIL.,VOC,0.78894,1.16138,1.14077,1.16764,0.89994,0.964505,0.915327,0.85919532,0.836746038,0.814296756,0.791847473,0.78143981,0.771032146,0.760624482,0.745699794,0.730775106,0.715266243,0.705240392,0.69521454,0.685188688,0.606024149,0.52685961,0.447695072,0.447695072,0.447695072 +20,KS,1,FUEL COMB. ELEC. UTIL.,PM10,2.81351,2.2531,2.0894,2.02443,5.384693,5.527988,5.113573,7.095067339,6.975479578,6.855891817,6.736304057,5.559140699,4.381977342,3.204813984,2.919386576,2.633959167,2.347986266,2.104688395,1.861390525,1.618092654,1.647122234,1.676151814,1.705181394,1.705181394,1.705181394 +20,KS,2,FUEL COMB. INDUSTRIAL,VOC,2.95019,7.11855,7.07167,7.02767,7.511873,7.539002,7.462456,4.063611104,4.042342001,4.021072898,3.999803794,3.735257831,3.470711867,3.206165903,3.019861225,2.833556546,2.633238783,2.592979107,2.552719432,2.512459756,2.339731234,2.167002711,1.994274188,1.994274188,1.994274188 +20,KS,2,FUEL COMB. INDUSTRIAL,SO2,13.39068,4.84295,4.82366,4.67597,4.47713,4.680567,4.899739,25.70801347,25.71626663,25.72451978,25.73277294,19.57434605,13.41591916,7.257492272,5.060494888,2.863497503,0.666956154,1.395234491,2.123512828,2.851791166,2.826111473,2.800431781,2.774752088,2.774752088,2.774752088 +20,KS,2,FUEL COMB. INDUSTRIAL,PM25,0.89797,0.99824,0.99035,0.97817,5.179057,5.240872,5.203791,1.255518641,1.293162645,1.330806648,1.368450651,1.422422454,1.476394258,1.530366061,1.32321904,1.116072019,0.907868518,0.902358687,0.896848856,0.891339025,0.903092474,0.914845924,0.926599374,0.926599374,0.926599374 +20,KS,2,FUEL COMB. INDUSTRIAL,PM10,1.05223,1.18503,1.17393,1.15406,5.311938,5.379162,5.347366,2.385460348,2.384430409,2.38340047,2.382370531,2.177706636,1.973042742,1.768378847,1.485240973,1.202103099,0.917905676,1.020506319,1.123106962,1.225707605,1.240795802,1.255883999,1.270972196,1.270972196,1.270972196 +20,KS,2,FUEL COMB. INDUSTRIAL,NOX,131.07733,144.19373,141.66543,140.18298,78.282404,78.720807,77.785134,66.24184389,65.74056821,65.23929254,64.73801686,59.80672344,54.87543001,49.94413658,47.93976723,45.93539787,43.92801928,41.31729667,38.70657406,36.09585145,34.68800734,33.28016324,31.87231913,31.87231913,31.87231913 +20,KS,2,FUEL COMB. INDUSTRIAL,NH3,0.19972,2.60774,2.52245,2.48955,0.601275,0.611434,0.589799,0.296188181,0.363844399,0.431500616,0.499156833,0.440849349,0.382541866,0.324234383,0.282635401,0.241036419,0.205815861,0.256756167,0.307696474,0.35863678,0.333496581,0.308356381,0.283216181,0.283216181,0.283216181 +20,KS,2,FUEL COMB. INDUSTRIAL,CO,31.88412,33.1331,32.61178,32.27806,32.7432,33.045368,32.816352,23.13339288,23.03122013,22.92904738,22.82687463,21.20840372,19.58993281,17.97146189,17.89418909,17.81691629,17.73455643,16.32990035,14.92524427,13.52058819,13.40836431,13.29614043,13.18391655,13.18391655,13.18391655 +20,KS,3,FUEL COMB. OTHER,NH3,0.0412,0.05106,0.04938,0.04432,0.047806,0.048383,0.049169,0.023226402,0.023283024,0.023339646,0.023396268,0.302224034,0.5810518,0.859879566,0.92685974,0.993839913,1.021915985,0.985079827,0.948243669,0.911407512,0.842908306,0.7744091,0.705909894,0.705909894,0.705909894 +20,KS,3,FUEL COMB. OTHER,VOC,5.47307,13.79313,13.79846,13.7913,14.06697,15.070218,15.078262,18.90568577,14.81656238,10.727439,6.63831561,5.581666687,4.525017765,3.468368843,4.45509472,5.441820598,6.012274567,5.703377221,5.394479874,5.085582528,4.332880929,3.580179329,2.82747773,2.82747773,2.82747773 +20,KS,3,FUEL COMB. OTHER,SO2,0.75205,1.34539,1.35611,1.08544,1.559778,1.587601,1.613859,1.000133595,1.002664464,1.005195333,1.007726202,0.707909402,0.408092602,0.108275802,0.119131017,0.129986231,0.132600301,0.139857862,0.147115424,0.154372986,0.138492775,0.122612564,0.106732353,0.106732353,0.106732353 +20,KS,3,FUEL COMB. OTHER,PM25,3.96316,4.47474,4.46443,4.44692,5.039567,5.36899,5.382287,4.539945698,4.541724194,4.543502691,4.545281188,3.875300659,3.20532013,2.535339601,3.436197292,4.337054984,4.723444489,4.549929568,4.376414647,4.202899726,3.693931817,3.184963908,2.675995999,2.675995999,2.675995999 +20,KS,3,FUEL COMB. OTHER,NOX,8.80045,9.01598,8.67046,8.05141,7.720068,7.835892,7.928357,6.58103786,6.616343476,6.651649092,6.686954707,6.547380614,6.407806521,6.268232428,6.300526445,6.332820461,6.304884591,6.243872132,6.182859673,6.121847215,5.729825045,5.337802875,4.945780705,4.945780705,4.945780705 +20,KS,3,FUEL COMB. OTHER,CO,29.93144,32.80258,32.74278,32.62435,33.753257,36.065001,36.09712,34.15288581,34.19940929,34.24593276,34.29245623,29.53302589,24.77359555,20.01416521,26.00831099,32.00245678,34.76592021,33.34253371,31.91914721,30.49576072,27.36957935,24.24339798,21.11721661,21.11721661,21.11721661 +20,KS,3,FUEL COMB. OTHER,PM10,3.97727,4.49367,4.48358,4.46321,5.063578,5.394983,5.408556,4.553124192,4.555309406,4.557494621,4.559679835,3.889667526,3.219655216,2.549642906,3.455637212,4.361631517,4.752780495,4.578202317,4.403624139,4.229045961,3.720381634,3.211717307,2.70305298,2.70305298,2.70305298 +20,KS,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,11.55815,9.81639,9.81639,9.9439,0.184492,0.189099,0.196101,0.42734017,0.585926047,0.744511925,0.903097802,0.98268393,1.062270059,1.141856187,1.155767196,1.169678204,1.183589213,1.18962699,1.195664767,1.201702545,1.149042242,1.096381939,1.043721636,1.043721636,1.043721636 +20,KS,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,4.2752,2.02682,2.04772,2.056,1.344985,1.380252,1.43474,1.672602301,1.865233866,2.057865431,2.250496996,2.79330049,3.336103984,3.878907477,3.148703122,2.418498767,1.741439911,1.483774111,1.226108312,0.968442512,0.976314975,0.984187437,0.9920599,0.9920599,0.9920599 +20,KS,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,2.70104,2.28902,2.3171,2.29532,2.02287,2.039358,2.068008,0.108432206,0.807000811,1.505569415,2.20413802,2.621755439,3.039372859,3.456990278,3.318820972,3.180651667,3.042482361,2.815355858,2.588229355,2.361102853,2.354370206,2.347637559,2.340904912,2.340904912,2.340904912 +20,KS,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.27118,0.31497,0.31665,0.31619,0.379323,0.388906,0.404848,0.131984854,0.174162475,0.216340096,0.258517718,0.235415755,0.212313792,0.18921183,0.225501066,0.261790301,0.298079537,0.2843689,0.270658262,0.256947625,0.248446182,0.239944738,0.231443295,0.231443295,0.231443295 +20,KS,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,6.37831,3.76673,3.76748,3.81422,2.34072,2.398393,2.48881,0.867380422,1.034295765,1.201211109,1.368126452,1.949368368,2.530610283,3.111852199,2.460739481,1.809626762,1.173514044,1.030270773,0.887027502,0.743784232,0.792278208,0.840772185,0.889266161,0.889266161,0.889266161 +20,KS,4,CHEMICAL & ALLIED PRODUCT MFG,CO,36.74449,44.25531,44.56698,44.26707,62.36063,63.734465,66.47449,49.75564094,35.13618403,20.51672712,5.897270213,4.970437949,4.043605686,3.116773422,2.696297532,2.275821643,1.864313733,1.779483542,1.694653351,1.609823161,1.710159251,1.810495341,1.910831431,1.910831431,1.910831431 +20,KS,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.37613,0.33012,0.33185,0.33154,0.407386,0.41794,0.435381,0.160668456,0.209964527,0.259260599,0.30855667,0.643699481,0.978842292,1.313985103,1.073560651,0.8331362,0.592711239,0.508261239,0.423811238,0.339361237,0.313292748,0.287224259,0.261155769,0.261155769,0.261155769 +20,KS,5,METALS PROCESSING,NOX,0.06197,0.01215,0.01265,0.01221,0.05163,0.054592,0.059072,0.041531665,0.042368151,0.043204637,0.044041123,0.044609009,0.045176896,0.045744782,0.051899081,0.05805338,0.064207679,0.059416862,0.054626045,0.049835228,0.046007317,0.042179407,0.038351496,0.038351496,0.038351496 +20,KS,5,METALS PROCESSING,VOC,0.0904,0.5243,0.55654,0.551,0.4036,0.419602,0.453704,0.240131928,0.301741289,0.363350649,0.42496001,0.480381493,0.535802977,0.59122446,0.559862229,0.528499998,0.497137767,0.396111072,0.295084376,0.194057681,0.172203429,0.150349178,0.128494926,0.128494926,0.128494926 +20,KS,5,METALS PROCESSING,SO2,0.05381,0.03664,0.0381,0.03671,0.05385,0.056217,0.060875,0.028347744,0.029880502,0.03141326,0.032946018,0.03278824,0.032630461,0.032472683,0.037123646,0.041774608,0.046425571,0.04366911,0.04091265,0.038156189,0.035581134,0.033006079,0.030431024,0.030431024,0.030431024 +20,KS,5,METALS PROCESSING,PM10,0.39421,0.27003,0.28084,0.27034,1.554553,1.618979,1.75167,0.474564568,0.83718284,1.199801113,1.562419385,1.257247539,0.952075692,0.646903846,0.882781426,1.118659006,1.354536585,1.155041645,0.955546704,0.756051763,0.651725502,0.547399241,0.44307298,0.44307298,0.44307298 +20,KS,5,METALS PROCESSING,NH3,,,,,,,,0.003728741,0.003277071,0.002825401,0.002373731,0.002407031,0.002440331,0.002473631,0.002219087,0.001964544,0.00171,0.00171,0.00171,0.00171,0.00171,0.00171,0.00171,0.00171,0.00171 +20,KS,5,METALS PROCESSING,CO,0.0363,0.37059,0.38532,0.37063,0.59065,0.61797,0.668295,0.5229814,0.577191293,0.631401187,0.68561108,0.702376083,0.719141087,0.73590609,0.750641477,0.765376863,0.78011225,0.71856089,0.65700953,0.59545817,0.551418317,0.507378463,0.46333861,0.46333861,0.46333861 +20,KS,5,METALS PROCESSING,PM25,0.30311,0.22081,0.22966,0.22107,1.348968,1.405473,1.520726,0.294099012,0.638243802,0.982388592,1.326533383,0.97327291,0.620012436,0.266751963,0.538743468,0.810734973,1.082726478,0.934683057,0.786639636,0.638596215,0.546751556,0.454906896,0.363062236,0.363062236,0.363062236 +20,KS,6,PETROLEUM & RELATED INDUSTRIES,CO,2.94217,2.7135,2.78898,2.74076,0.6708,0.672511,0.680465,0.770375314,0.743223026,0.716070739,0.688918451,0.836937934,0.984957417,1.1329769,25.81578427,50.49859163,75.181399,80.22857965,85.27576031,90.32294096,86.10915774,81.89537453,77.68159131,77.68159131,77.68159131 +20,KS,6,PETROLEUM & RELATED INDUSTRIES,VOC,16.93921,12.19813,12.49001,12.37527,10.128761,8.447554,8.556211,10.80061249,9.195363827,7.590115167,5.984866507,4.933188139,3.881509772,2.829831404,33.78710416,64.74437692,95.7152024,96.91184334,98.10848428,99.30512522,98.96411482,98.62310443,98.28209403,98.28209403,98.28209403 +20,KS,6,PETROLEUM & RELATED INDUSTRIES,SO2,11.12897,4.56777,4.69851,4.62353,4.93412,4.948694,4.985457,3.82404537,3.678318544,3.532591718,3.386864892,3.024708631,2.66255237,2.300396109,2.161123895,2.02185168,1.882620734,1.686396171,1.490171609,1.293947046,0.971454145,0.648961245,0.326468344,0.326468344,0.326468344 +20,KS,6,PETROLEUM & RELATED INDUSTRIES,PM25,2.17202,0.39226,0.40195,0.39452,0.828792,0.832131,0.842216,0.713274798,0.777069425,0.840864051,0.904658677,0.830796018,0.75693336,0.683070701,1.111314712,1.539558723,1.968503662,2.012963612,2.057423562,2.101883512,1.896149587,1.690415662,1.484681738,1.484681738,1.484681738 +20,KS,6,PETROLEUM & RELATED INDUSTRIES,PM10,3.58789,0.81488,0.83655,0.82223,1.088612,1.092781,1.105828,0.824320567,0.872025065,0.919729564,0.967434062,0.913896586,0.860359109,0.806821633,1.207085003,1.607348373,2.006247471,2.055021181,2.103794892,2.152568603,1.945865843,1.739163084,1.532460324,1.532460324,1.532460324 +20,KS,6,PETROLEUM & RELATED INDUSTRIES,NOX,2.4778,1.12131,1.15351,1.13524,1.27339,1.277179,1.286914,1.071175244,1.39805704,1.724938836,2.051820632,1.754271259,1.456721886,1.159172513,19.76126237,38.36335223,56.96544209,58.81409315,60.66274422,62.51139528,59.11377306,55.71615083,52.31852861,52.31852861,52.31852861 +20,KS,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.93399,0.23517,0.24226,0.23948,0.123588,0.123957,0.124823,0.434600281,0.29079633,0.146992379,0.003188428,0.004307409,0.005426391,0.006545372,0.005093496,0.003641621,0.007616645,0.017532125,0.027447605,0.037363085,0.043333265,0.049303445,0.055273625,0.055273625,0.055273625 +20,KS,7,OTHER INDUSTRIAL PROCESSES,SO2,9.62973,4.13468,4.36985,4.41886,6.83861,7.269685,7.891455,4.91126717,5.299466183,5.687665195,6.075864208,4.450026827,2.824189445,1.198352064,1.462299058,1.726246051,1.990154904,1.569006042,1.147857179,0.726708317,0.661326083,0.595943849,0.530561616,0.530561616,0.530561616 +20,KS,7,OTHER INDUSTRIAL PROCESSES,PM25,12.89381,7.19477,7.52991,7.81251,4.839384,5.023307,6.03066252,5.082397708,5.366696289,5.65099487,5.935293451,4.794328886,3.653364322,2.512399758,2.814505651,3.116611544,3.246081442,3.111404722,2.976728002,2.842051282,2.881469767,2.920888252,2.960306737,2.960306737,2.960306737 +20,KS,7,OTHER INDUSTRIAL PROCESSES,VOC,6.40566,3.36139,3.46922,3.45884,4.41328,4.5842,4.914765134,4.014619905,4.335492804,4.656365703,4.977238601,5.589281941,6.201325281,6.81336862,6.49183103,6.170293439,5.830605108,4.767529671,3.704454235,2.641378798,2.669918713,2.698458627,2.726998542,2.726998542,2.726998542 +20,KS,7,OTHER INDUSTRIAL PROCESSES,PM10,34.21189,14.37706,14.90364,16.04421,15.198775,15.654923,17.00610113,15.0393864,15.50270307,15.96601974,16.42933641,13.94049858,11.45166074,8.962822905,9.470531821,9.978240737,9.091735158,8.040113448,6.988491738,5.936870029,5.749311122,5.561752215,5.374193309,5.374193309,5.374193309 +20,KS,7,OTHER INDUSTRIAL PROCESSES,NOX,4.51957,8.1686,8.64839,8.76412,8.82563,9.430873,10.285057,8.248845698,8.631155444,9.013465191,9.395774937,8.745250699,8.094726462,7.444202224,7.281750777,7.119299331,6.967436649,5.909867794,4.852298939,3.794730084,3.638024218,3.481318351,3.324612484,3.324612484,3.324612484 +20,KS,7,OTHER INDUSTRIAL PROCESSES,NH3,0.44151,0.49079,0.50591,0.51039,0.515448,0.539677,0.572156,58.99588392,58.98858618,58.98128845,58.97399071,39.56324253,20.15249435,0.741746171,0.625680175,0.509614179,0.393673183,0.296175792,0.198678402,0.101181011,0.167651513,0.234122016,0.300592518,0.300592518,0.300592518 +20,KS,7,OTHER INDUSTRIAL PROCESSES,CO,0.18957,3.82764,4.04772,4.09686,3.33498,3.559136,4.195714051,4.044215599,4.215795935,4.387376272,4.558956608,4.196333234,3.833709859,3.471086485,3.288760021,3.106433556,2.930863644,3.885932957,4.841002269,5.796071582,5.301905924,4.807740267,4.313574609,4.313574609,4.313574609 +20,KS,8,SOLVENT UTILIZATION,PM10,0.0002,0.10002,0.10429,0.10743,0.11509,0.122728,0.131875,0.173687214,0.224112974,0.274538734,0.324964494,0.251104073,0.177243652,0.103383231,0.132154503,0.160925775,0.189697047,0.230725018,0.271752989,0.312780959,0.305227894,0.297674829,0.290121764,0.290121764,0.290121764 +20,KS,8,SOLVENT UTILIZATION,SO2,0.00165,0.00007,0.00007,0.00007,0.00023,0.000247,0.000268,0.000295019,0.000222883,0.000150746,0.00007861,0.000463958,0.000849305,0.001234653,0.000844175,0.000453698,0.00006322,0.000140341,0.000217461,0.000294582,0.000212829,0.000131076,4.93E-05,4.93E-05,4.93E-05 +20,KS,8,SOLVENT UTILIZATION,PM25,0.00015,0.08524,0.08877,0.09125,0.11509,0.122728,0.131875,0.155575936,0.201154036,0.246732136,0.292310237,0.229096996,0.165883755,0.102670514,0.122259853,0.141849193,0.161438533,0.198752544,0.236066555,0.273380566,0.265598945,0.257817325,0.250035704,0.250035704,0.250035704 +20,KS,8,SOLVENT UTILIZATION,CO,,0.00364,0.00385,0.00394,0.00379,0.003987,0.004224,0.003746346,0.004274688,0.00480303,0.005331372,0.007811313,0.010291253,0.012771194,0.011464383,0.010157571,0.00885076,0.012050827,0.015250893,0.01845096,0.014602408,0.010753856,0.006905304,0.006905304,0.006905304 +20,KS,8,SOLVENT UTILIZATION,NOX,0.00803,0.01797,0.01898,0.01944,0.0127,0.013471,0.014413,0.015364473,0.014451442,0.01353841,0.012625379,0.012454931,0.012284483,0.012114035,0.01088781,0.009661585,0.00843536,0.01187666,0.01531796,0.01875926,0.014989008,0.011218757,0.007448505,0.007448505,0.007448505 +20,KS,8,SOLVENT UTILIZATION,NH3,,0.00016,0.00016,0.00016,0.000165,0.00017,0.000176,0.00019037,0.003750678,0.007310986,0.010871294,0.009237749,0.007604205,0.00597066,0.00724987,0.008529081,0.009808291,0.007096922,0.004385553,0.001674184,0.001135441,0.000596698,5.80E-05,5.80E-05,5.80E-05 +20,KS,8,SOLVENT UTILIZATION,VOC,78.00683,85.31553,86.53593,78.41252,58.966886,57.52632,60.192138,44.74757389,44.99745364,45.2473334,45.49721315,44.41004693,43.32288071,42.23571449,44.19546751,46.15522053,48.11497356,46.60134077,45.08770799,43.5740752,44.80261345,46.0311517,47.25968994,47.25968994,47.25968994 +20,KS,9,STORAGE & TRANSPORT,VOC,33.75613,23.13471,23.82662,23.44002,23.206865,21.387635,21.728918,20.37613622,20.32449559,20.27285496,20.22121433,21.66205094,23.10288755,24.54372416,24.17273949,23.80175483,21.29416591,17.63196774,13.96976956,10.30757138,10.91173759,11.5159038,12.12007001,12.12007001,12.12007001 +20,KS,9,STORAGE & TRANSPORT,PM10,1.13146,2.47266,2.58168,2.6422,1.877209,1.917985,2.00726,0.872953017,0.886645641,0.900338266,0.91403089,0.752904633,0.591778377,0.43065212,0.462832919,0.495013717,0.527276041,0.530873299,0.534470557,0.538067815,0.51292478,0.487781745,0.46263871,0.46263871,0.46263871 +20,KS,9,STORAGE & TRANSPORT,CO,,0.03493,0.03625,0.03678,0.05621,0.057951,0.060152,0.110739317,0.109823058,0.1089068,0.107990541,0.086352425,0.064714309,0.043076193,0.051909203,0.060742212,0.069875382,0.072500681,0.07512598,0.077751278,0.078194763,0.078638248,0.079081733,0.079081733,0.079081733 +20,KS,9,STORAGE & TRANSPORT,SO2,,0.00818,0.00816,0.00812,0.00418,0.00428,0.004426,0.00057439,0.00219641,0.00381843,0.00544045,0.0036553,0.00187015,0.000085,0.000247417,0.000409833,0.00057225,0.000743478,0.000914705,0.001085933,0.000753226,0.000420519,8.78E-05,8.78E-05,8.78E-05 +20,KS,9,STORAGE & TRANSPORT,PM25,0.23729,0.89455,0.93301,0.95466,0.876411,0.875965,0.910627,0.377346003,0.384463903,0.391581803,0.398699702,0.323097129,0.247494555,0.171891981,0.170702986,0.169513992,0.168425873,0.179087426,0.189748979,0.200410532,0.18727074,0.174130948,0.160991156,0.160991156,0.160991156 +20,KS,9,STORAGE & TRANSPORT,NOX,,0.01643,0.01703,0.01725,0.02003,0.020681,0.021494,0.093392156,0.075744429,0.058096702,0.040448975,0.033601405,0.026753836,0.019906266,0.024011764,0.028117262,0.03242576,0.032596478,0.032767196,0.032937914,0.032991214,0.033044515,0.033097815,0.033097815,0.033097815 +20,KS,9,STORAGE & TRANSPORT,NH3,,0.09092,0.09443,0.09605,0.130688,0.135,0.140358,0.1257915,0.084086117,0.042380733,0.00067535,0.000672731,0.000670112,0.000667493,0.000678512,0.000689531,0.00070055,0.000512267,0.000323985,0.000135702,0.000900301,0.001664901,0.0024295,0.0024295,0.0024295 +20,KS,10,WASTE DISPOSAL & RECYCLING,VOC,6.61907,2.86173,2.85005,2.87497,3.072548,2.894784,2.908,2.073608273,2.095202682,2.116797092,2.138391502,1.733736861,1.32908222,0.92442758,0.813200197,0.701972814,0.590745431,0.855855854,1.120966277,1.3860767,1.329783101,1.273489502,1.217195903,1.217195903,1.217195903 +20,KS,10,WASTE DISPOSAL & RECYCLING,SO2,1.01166,0.14159,0.14711,0.15012,0.15479,0.157856,0.161028,0.136146928,0.140339344,0.144531761,0.148724177,0.119665385,0.090606593,0.061547801,0.052874372,0.044200944,0.035527515,0.070476713,0.105425911,0.14037511,0.153987575,0.167600041,0.181212507,0.181212507,0.181212507 +20,KS,10,WASTE DISPOSAL & RECYCLING,PM25,3.1947,3.43265,3.39357,3.41925,2.675394,3.270373,3.273358,2.19899224,2.210900344,2.222808449,2.234716554,1.905579317,1.576442079,1.247304842,1.256371496,1.265438151,1.274504806,1.413873199,1.553241592,1.692609985,1.7644448,1.836279615,1.908114429,1.908114429,1.908114429 +20,KS,10,WASTE DISPOSAL & RECYCLING,PM10,3.72295,3.63202,3.60308,3.63121,2.891463,3.488615,3.49274,2.415313181,2.452992147,2.490671112,2.528350078,2.451247959,2.374145839,2.29704372,2.003605226,1.710166732,1.416728238,1.602778327,1.788828416,1.974878505,2.017778894,2.060679282,2.103579671,2.103579671,2.103579671 +20,KS,10,WASTE DISPOSAL & RECYCLING,NOX,0.98177,0.87231,0.85168,0.8596,0.739705,0.822234,0.826134,0.5264388,0.534777509,0.543116219,0.551454929,0.507792556,0.464130183,0.42046781,0.370971334,0.321474857,0.271978381,0.356816378,0.441654374,0.526492371,0.506784949,0.487077528,0.467370107,0.467370107,0.467370107 +20,KS,10,WASTE DISPOSAL & RECYCLING,NH3,0.66777,0.74345,0.73479,0.75211,0.76938,0.786303,0.812464,0.822897283,0.823545349,0.824193416,0.824841483,0.555598155,0.286354828,0.0171115,0.017140667,0.017169833,0.017199,0.037076288,0.056953576,0.076830864,0.072017061,0.067203257,0.062389454,0.062389454,0.062389454 +20,KS,10,WASTE DISPOSAL & RECYCLING,CO,26.94032,19.89114,18.74569,18.8619,13.358549,17.254102,17.283982,7.47651389,7.598601656,7.720689421,7.842777187,6.945312234,6.047847282,5.150382329,5.017401339,4.884420349,4.751439359,6.978936227,9.206433096,11.43392996,11.06295895,10.69198793,10.32101692,10.32101692,10.32101692 +20,KS,11,HIGHWAY VEHICLES,CO,1288.87435,922.8694,880.13182,839.27096,768.86219,772.68501,725.3405,604.4451811,580.754229,557.063277,533.372325,488.31797,443.2636149,394.4610848,328.5266837,354.0085768,362.020074,353.845851,345.6716279,337.4974048,320.3927068,262.768809,249.2441738,237.3223533,226.6783005 +20,KS,11,HIGHWAY VEHICLES,VOC,103.92117,66.45111,63.50555,61.70769,58.58388,57.526,53.39757,45.34955926,43.02281426,40.69606925,38.36932425,39.69803349,41.02674273,35.17934954,32.7070509,34.91877558,39.13072827,37.63108981,36.13145134,34.63181288,32.4872403,26.77926416,24.28530954,23.5380871,22.14132079 +20,KS,11,HIGHWAY VEHICLES,SO2,6.03735,3.27709,3.36027,3.38281,3.43943,3.19219,3.19838,3.596146132,3.056581315,2.517016499,1.977451682,1.362675336,0.74789899,0.718341313,0.709599161,0.740567479,0.319329038,0.310539776,0.301750514,0.292961251,0.28723438,0.293915168,0.270929705,0.140361644,0.118992618 +20,KS,11,HIGHWAY VEHICLES,PM25,3.94666,2.61723,2.46802,2.26911,2.08948,1.9269,1.75964,3.470944274,3.355543086,3.240141899,3.124740711,3.088213882,3.051687053,2.736652579,2.469204402,2.398131968,2.361795789,2.314846474,2.267897159,2.220947844,1.94136748,1.577645563,1.464592201,1.480570693,1.384143614 +20,KS,11,HIGHWAY VEHICLES,PM10,4.67093,3.24166,3.1007,2.88243,2.6959,2.52264,2.33911,4.146811566,4.034639428,3.92246729,3.810295153,3.836920736,3.86354632,3.518796903,3.241331448,3.189755389,4.180617208,3.96938399,3.758150772,3.546917554,3.267814957,2.7503127,2.645344424,2.825848434,2.73230833 +20,KS,11,HIGHWAY VEHICLES,NH3,1.71342,2.44318,2.74232,2.64448,2.72668,2.79584,2.82082,1.552924711,1.509782003,1.466639295,1.423496587,1.430638282,1.437779978,1.340837276,1.224334086,1.221692566,1.312544879,1.262617012,1.212689144,1.162761276,1.121662433,1.092601712,1.088468225,0.999965696,0.977228329 +20,KS,11,HIGHWAY VEHICLES,NOX,112.69662,97.99813,98.48548,96.39475,93.12459,91.8491,85.35059,118.7130651,109.9873592,101.2616533,92.53594739,89.28545025,86.03495311,79.57363251,74.2155663,69.82445524,78.07227879,76.50201446,74.93175012,73.36148579,66.8546298,54.09658539,50.89668597,45.84501723,41.75731801 +20,KS,12,OFF-HIGHWAY,CO,240.17665,271.02308,264.17316,264.34063,265.98393,267.98414,272.626,249.0327231,239.3354367,229.6381504,219.940864,215.0284305,210.115997,188.8235872,175.8318843,169.2981178,166.2317102,158.7826263,151.3335424,143.8844585,136.4056288,123.4264685,121.4479694,120.7816506,120.1153317 +20,KS,12,OFF-HIGHWAY,VOC,26.35332,28.28261,26.24019,25.28095,25.00568,24.71488,24.37146,26.86189838,26.14069802,25.41949766,24.69829729,23.78093814,22.863579,21.70937371,20.51588053,20.0452707,19.43229686,18.29883947,17.16538207,16.03192468,14.32272157,11.44109941,10.90431536,10.58420602,10.26409668 +20,KS,12,OFF-HIGHWAY,SO2,5.87448,7.44529,7.5196,7.61856,7.76509,7.94187,8.12474,7.658412772,7.770666518,7.882920263,7.995174009,5.541015109,3.08685621,1.230470148,1.245244207,0.820524042,0.494989483,0.41416136,0.333333236,0.252505113,0.248338659,0.244471275,0.240005753,0.238964586,0.23792342 +20,KS,12,OFF-HIGHWAY,PM25,7.23626,7.24974,7.0831,6.90924,6.76208,6.57566,6.36843,6.325228793,6.133882616,5.94253644,5.751190263,5.49139535,5.231600438,4.925394858,4.758241449,4.595675796,4.528858758,4.262658794,3.99645883,3.730258865,3.440885605,3.022786717,2.862139085,2.69561356,2.529088035 +20,KS,12,OFF-HIGHWAY,PM10,7.89237,7.9057,7.72261,7.52822,7.37587,7.17318,6.94759,6.533341751,6.336376629,6.139411507,5.942446385,5.725014486,5.507582587,5.240823562,5.069040969,4.901337886,4.768784022,4.489281401,4.20977878,3.930276158,3.615280267,3.154688301,2.985288485,2.813537222,2.641785958 +20,KS,12,OFF-HIGHWAY,NH3,0.64606,0.60177,0.55373,0.58105,0.05879,0.05879,0.05879,0.042781254,0.04348817,0.044195086,0.044902002,0.048442367,0.051982731,0.053195149,0.053428051,0.054161637,0.055356154,0.055706417,0.056056679,0.056406941,0.053046273,0.045388933,0.046324936,0.046460566,0.046596197 +20,KS,12,OFF-HIGHWAY,NOX,78.15212,87.44887,86.78751,85.89522,85.32826,85.46174,85.56009,88.1681197,87.51480767,86.86149565,86.20818363,82.62669079,79.04519795,79.5555573,76.79494313,75.45422579,75.11261735,71.10157157,67.0905258,63.07948002,58.46206317,50.41262405,49.22722947,47.00990099,44.79257252 +20,KS,14,MISCELLANEOUS,VOC,38.23427,130.48769,27.1946,8.63704,4.769517,4.90369,4.921282,55.15404261,74.68774897,94.22145532,113.7551617,77.10805401,40.46094635,3.813838678,6.020285257,8.226731836,10.43317841,11.00436772,11.57555703,12.14674633,11.95030778,11.75386923,11.55743068,11.55743068,11.55743068 +20,KS,14,MISCELLANEOUS,SO2,0.26775,0.98574,0.17929,0.04397,0.04072,0.05946,0.05188,10.94913477,11.94588165,12.94262853,13.93937541,9.403511957,4.867648504,0.33178505,0.98418895,1.63659285,2.28899675,1.746734097,1.204471444,0.662208791,0.490182324,0.318155856,0.146129389,0.146129389,0.146129389 +20,KS,14,MISCELLANEOUS,PM25,171.99918,216.71125,152.21013,144.2445,138.28224,139.977242,139.794426,148.1994778,156.1640271,164.1285763,172.0931256,155.9164845,139.7398434,123.5632023,126.7020511,129.8408999,132.9797487,123.0921852,113.2046216,103.3170581,96.36501287,89.41296761,82.46092234,82.46092234,82.46092234 +20,KS,14,MISCELLANEOUS,PM10,821.63579,827.83204,746.76174,744.6744,734.84035,744.156761,761.9055822,709.1363283,718.5344898,727.9326512,737.3308127,749.7306898,762.130567,774.5304441,773.4026578,772.2748715,771.1470852,702.2028985,633.2587118,564.3145251,571.1717138,578.0289026,584.8860913,584.8860913,584.8860913 +20,KS,14,MISCELLANEOUS,NOX,7.68927,27.02949,5.56068,2.14078,0.840488,0.903938,0.888573,29.11124984,31.48332615,33.85540245,36.22747875,24.84707951,13.46668027,2.086281035,3.355738288,4.62519554,5.894652792,4.777575073,3.660497354,2.543419635,1.932683939,1.321948243,0.711212546,0.711212546,0.711212546 +20,KS,14,MISCELLANEOUS,NH3,195.94033,213.86121,211.2872,218.52158,224.20152,226.78147,133.4973875,109.0364981,110.3953594,111.7542206,113.1130818,126.9776911,140.8423004,154.7069096,160.1419831,165.5770567,171.0121302,171.2815717,171.5510133,171.8204548,166.5867983,161.3531418,156.1194853,156.1194853,156.1194853 +20,KS,14,MISCELLANEOUS,CO,278.71547,953.90232,202.46705,81.17391,40.29331,44.040094,43.36061,806.4386,887.7368705,969.0351411,1050.333412,716.8001788,383.2669461,49.73371327,81.94831092,114.1629086,146.3775062,127.7479733,109.1184404,90.48890748,67.17315822,43.85740895,20.54165968,20.54165968,20.54165968 +20,KS,15,WILDFIRES,NOX,,,,,,,,0.005880273,0.005880273,0.005880273,0.005809648,0.005809648,0.005809648,0.643568151,0.643568151,0.643568151,0.662760875,0.662760875,0.662760875,1.648568849,1.648568849,1.648568849,4.791126987,4.791126987,4.791126987 +20,KS,15,WILDFIRES,VOC,,,,,,,,0.099137753,0.099137753,0.099137753,0.044635111,0.044635111,0.044635111,5.534052541,5.534052541,5.534052541,6.832166762,6.832166762,6.832166762,17.5756024,17.5756024,17.5756024,46.56786914,46.56786914,46.56786914 +20,KS,15,WILDFIRES,PM10,,,,,,,,0.048544836,0.048544836,0.048544836,0.02178106,0.02178106,0.02178106,2.640241199,2.640241199,2.640241199,3.156082651,3.156082651,3.156082651,8.074685426,8.074685426,8.074685426,21.72676171,21.72676171,21.72676171 +20,KS,15,WILDFIRES,SO2,,,,,,,,0.00316197,0.00316197,0.00316197,0.002395904,0.002395904,0.002395904,0.273898208,0.273898208,0.273898208,0.298382767,0.298382767,0.298382767,0.750567124,0.750567124,0.750567124,2.116382619,2.116382619,2.116382619 +20,KS,15,WILDFIRES,CO,,,,,,,,0.508736658,0.508736658,0.508736658,0.185303964,0.185303964,0.185303964,23.06704827,23.06704827,23.06704827,28.63641071,28.63641071,28.63641071,73.73433568,73.73433568,73.73433568,194.8556422,194.8556422,194.8556422 +20,KS,15,WILDFIRES,NH3,,,,,,,,0.007429999,0.007429999,0.007429999,0.003105051,0.003105051,0.003105051,0.384977504,0.384977504,0.384977504,0.4752814,0.4752814,0.4752814,1.222651136,1.222651136,1.222651136,3.239503176,3.239503176,3.239503176 +20,KS,15,WILDFIRES,PM25,,,,,,,,0.041120393,0.041120393,0.041120393,0.018458526,0.018458526,0.018458526,2.237497193,2.237497193,2.237497193,2.67464483,2.67464483,2.67464483,6.842958117,6.842958117,6.842958117,18.41251056,18.41251056,18.41251056 +20,KS,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,14.38912711,17.15116011,19.91319312,22.67522612,16.57715058,10.47907504,4.380999505,11.4565817,18.53216389,25.60774608,25.60774608,25.60774608 +20,KS,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,121.3503557,148.6736265,175.9968972,203.320168,150.4801723,97.64017654,44.80018081,107.6326353,170.4650899,233.2975444,233.2975444,233.2975444 +20,KS,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,505.4803377,619.8690646,734.2577915,848.6465185,628.3422297,408.037941,187.7336523,449.9107437,712.087835,974.2649263,974.2649263,974.2649263 +20,KS,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,8.441767464,10.34250872,12.24324997,14.14399123,10.46817088,6.79235054,3.116530197,7.487485812,11.85844143,16.22939704,16.22939704,16.22939704 +20,KS,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,58.11265792,70.82203858,83.53141924,96.2407999,71.06812183,45.89544375,20.72276567,50.51786231,80.31295895,110.1080556,110.1080556,110.1080556 +20,KS,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,49.24798377,60.01866594,70.78934812,81.5600303,60.2272445,38.89445869,17.56167289,42.81175119,68.06182949,93.31190779,93.31190779,93.31190779 +20,KS,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,6.089615101,7.316557069,8.543499037,9.770441005,7.169347627,4.568254248,1.96716087,5.007124836,8.047088801,11.08705277,11.08705277,11.08705277 +21,KY,1,FUEL COMB. ELEC. UTIL.,VOC,1.07951,1.28585,1.35068,1.31834,1.40117,1.409927,1.479602,1.486939192,1.492327142,1.497715092,1.503103042,1.548715065,1.594327088,1.639939111,1.676542117,1.713145124,1.74948753,1.680211353,1.610935175,1.541658998,1.418353219,1.295047441,1.171741663,1.171741663,1.171741663 +21,KY,1,FUEL COMB. ELEC. UTIL.,CO,9.25864,12.24394,12.69498,12.24024,11.97312,13.18487,14.113573,12.61881618,12.74497032,12.87112446,12.9972786,13.98603041,14.97478222,15.96353403,15.82528927,15.68704451,15.54810425,15.08271701,14.61732978,14.15194255,12.98049169,11.80904082,10.63758996,10.63758996,10.63758996 +21,KY,1,FUEL COMB. ELEC. UTIL.,NOX,345.00874,367.1142,364.27122,320.27865,307.07679,245.079814,230.414325,200.9335453,185.071469,164.101089,164.8565323,171.787102,174.840583,159.3359574,137.1451471,114.9543367,92.76029545,91.35283777,89.94538009,88.53792242,74.77300311,61.0080838,47.24316449,47.380378,41.232112 +21,KY,1,FUEL COMB. ELEC. UTIL.,PM25,3.2975,8.1666,8.32467,4.41754,30.960927,27.943632,27.487776,20.00340198,19.99341691,19.98343185,19.97344678,15.49115085,11.00885491,6.526558976,7.51641422,8.506269465,9.49521437,8.681013884,7.866813398,7.052612913,5.499790145,3.946967376,2.394144608,2.394144608,2.394144608 +21,KY,1,FUEL COMB. ELEC. UTIL.,SO2,905.63158,643.80982,673.13946,626.83213,662.81201,588.859816,539.452883,486.496829,529.559109,513.144744,502.7331397,427.576337,379.837028,348.651144,314.9531148,281.2550856,247.5568432,233.3090745,219.0613058,204.8135372,155.6763235,106.5391098,57.40189616,55.159325,49.946261 +21,KY,1,FUEL COMB. ELEC. UTIL.,PM10,14.07856,18.01807,18.37003,9.61754,36.488533,34.310144,34.249455,22.34169503,22.34418672,22.34667841,22.3491701,17.72027755,13.091385,8.462492445,10.26667492,12.0708574,13.87412954,13.06411368,12.25409782,11.44408196,8.757143707,6.070205456,3.383267206,3.383267206,3.383267206 +21,KY,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01477,0.01606,0.01635,0.016343,0.016173,0.016227,0.8912736,0.87333831,0.85540302,0.83746773,0.823218472,0.808969214,0.794719955,0.781990907,0.769261858,0.756532809,0.737844496,0.719156184,0.700467871,0.510697869,0.320927866,0.131157863,0.131157863,0.131157863 +21,KY,2,FUEL COMB. INDUSTRIAL,VOC,1.24559,1.47528,1.45327,1.43877,1.74004,1.736203,1.753947,1.233767426,1.297824471,1.361881515,1.42593856,1.278838679,1.131738799,0.984638918,1.132096733,1.279554548,1.426310568,1.374914475,1.323518383,1.27212229,1.330181879,1.388241468,1.446301057,1.446301057,1.446301057 +21,KY,2,FUEL COMB. INDUSTRIAL,NH3,0.20399,0.75619,0.77,0.76605,0.231091,0.233618,0.240833,0.187529212,0.191777101,0.19602499,0.200272879,0.136956319,0.07363976,0.0103232,0.03971891,0.06911462,0.097332331,0.096697835,0.096063339,0.095428844,0.115162662,0.13489648,0.154630298,0.154630298,0.154630298 +21,KY,2,FUEL COMB. INDUSTRIAL,NOX,75.51493,83.00689,82.13431,81.06247,98.45153,98.052412,98.952804,34.28208481,32.18931059,30.09653637,28.00376216,25.33190999,22.66005783,19.98820567,20.0145435,20.04088134,20.05652257,18.40422234,16.7519221,15.09962186,16.50629262,17.91296338,19.31963414,19.31963414,19.31963414 +21,KY,2,FUEL COMB. INDUSTRIAL,PM10,2.10204,1.85145,1.84369,1.81062,3.211229,3.200763,3.334068,5.018582934,5.043758582,5.068934229,5.094109877,3.99044918,2.886788483,1.783127785,1.933505432,2.083883078,2.250941489,2.18082671,2.110711932,2.040597154,2.181136118,2.321675082,2.462214046,2.462214046,2.462214046 +21,KY,2,FUEL COMB. INDUSTRIAL,CO,14.54176,16.67863,16.51134,16.35622,19.26502,19.047771,19.396217,12.00965288,12.31039215,12.61113143,12.91187071,11.789483,10.66709529,9.544707577,10.00138947,10.45807136,10.8846575,10.46689849,10.04913947,9.631380464,9.805475969,9.979571475,10.15366698,10.15366698,10.15366698 +21,KY,2,FUEL COMB. INDUSTRIAL,PM25,1.04246,0.91636,0.91307,0.91101,2.253157,2.262108,2.33691,1.518015518,1.604108181,1.690200843,1.776293505,1.728515986,1.680738467,1.632960948,1.745665004,1.858369059,1.984769103,1.919267554,1.853766004,1.788264455,1.923879873,2.05949529,2.195110708,2.195110708,2.195110708 +21,KY,2,FUEL COMB. INDUSTRIAL,SO2,60.48933,58.71547,58.67699,57.20718,58.99586,57.774877,61.508981,35.69637587,35.63714342,35.57791097,35.51867852,27.51631515,19.51395178,11.51158841,9.582545367,7.653502325,5.778423979,5.428422065,5.078420151,4.728418238,3.713949086,2.699479934,1.685010782,1.685010782,1.685010782 +21,KY,3,FUEL COMB. OTHER,VOC,23.00188,18.83583,18.85715,18.86601,19.659785,21.000856,21.013552,17.87323745,16.11675228,14.3602671,12.60378192,10.23988528,7.87598864,5.512091998,6.665636471,7.819180945,8.390338706,7.411449472,6.432560238,5.453671003,6.728438422,8.003205841,9.27797326,9.27797326,9.27797326 +21,KY,3,FUEL COMB. OTHER,SO2,8.81563,12.1737,12.5347,12.32408,12.057861,12.174274,12.310884,8.407880914,8.599943959,8.792007004,8.984070049,6.723092395,4.462114741,2.201137087,2.093744539,1.986351992,1.867783365,1.574826443,1.281869521,0.988912599,0.974872707,0.960832815,0.946792923,0.946792923,0.946792923 +21,KY,3,FUEL COMB. OTHER,PM25,16.14579,7.45257,7.45339,7.44085,8.134956,8.666177,8.680871,7.931789743,7.946441704,7.961093665,7.975745626,6.80034347,5.624941313,4.449539157,5.465193755,6.480848353,6.781362786,6.160800505,5.540238225,4.919675944,6.036553474,7.153431005,8.270308536,8.270308536,8.270308536 +21,KY,3,FUEL COMB. OTHER,PM10,16.34664,7.73628,7.75106,7.7429,8.388865,8.922058,8.938185,8.771938033,8.770955774,8.769973516,8.768991258,7.348319126,5.927646995,4.506974864,5.5398997,6.572824537,6.890513796,6.254864565,5.619215335,4.983566104,6.101266481,7.218966858,8.336667235,8.336667235,8.336667235 +21,KY,3,FUEL COMB. OTHER,NOX,6.30409,6.77396,6.79313,6.62506,12.383955,12.486385,12.604684,8.346444009,8.384590165,8.422736322,8.460882478,7.20310379,5.945325103,4.687546415,5.059218334,5.430890253,5.764795693,5.722472078,5.680148462,5.637824847,5.477360938,5.316897028,5.156433119,5.156433119,5.156433119 +21,KY,3,FUEL COMB. OTHER,CO,121.93438,55.92683,56.09617,56.16016,75.222366,79.069155,79.151533,62.17948627,62.24015519,62.30082412,62.36149304,52.34300613,42.32451922,32.30603232,39.08475506,45.86347781,48.17507674,43.64609411,39.11711148,34.58812885,43.77528825,52.96244765,62.14960705,62.14960705,62.14960705 +21,KY,3,FUEL COMB. OTHER,NH3,0.07242,0.07916,0.07706,0.06929,0.073182,0.073638,0.074196,0.028298062,0.028298062,0.028298062,0.028298062,0.262981755,0.497665448,0.732349141,0.808570052,0.884790964,0.908441899,0.873462294,0.838482689,0.803503084,0.835794301,0.868085518,0.900376736,0.900376736,0.900376736 +21,KY,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.56973,0.85903,0.8617,0.87046,0.784215,0.800592,0.820776,0.813865382,0.918477578,1.023089773,1.127701969,1.316416032,1.505130094,1.693844156,1.400548428,1.1072527,0.816591321,0.765457094,0.714322867,0.66318864,0.638928034,0.614667428,0.590406822,0.590406822,0.590406822 +21,KY,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.44011,0.42777,0.42904,0.4336,0.605949,0.618965,0.634234,0.50318119,0.647922901,0.792664612,0.937406324,1.132969768,1.328533212,1.524096656,1.251811791,0.979526926,0.708034137,0.652096985,0.596159834,0.540222683,0.509201764,0.478180844,0.447159925,0.447159925,0.447159925 +21,KY,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,2.9235,2.86247,2.86658,2.90997,2.22491,2.281973,2.344709,2.344961306,2.532696362,2.720431417,2.908166473,2.461911597,2.015656722,1.569401846,1.600493982,1.631586117,1.662685253,1.198181283,0.733677312,0.269173341,0.246991109,0.224808877,0.202626644,0.202626644,0.202626644 +21,KY,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.00001,0.00001,0.00001,0.05184,0.053161,0.054597,0.099902028,0.12792097,0.155939911,0.183958853,0.156491902,0.129024951,0.101558,0.0778831,0.0542082,0.0284993,0.020045716,0.011592131,0.003138547,0.002718954,0.002299361,0.001879768,0.001879768,0.001879768 +21,KY,4,CHEMICAL & ALLIED PRODUCT MFG,CO,8.25638,0.2378,0.23718,0.24108,0.42061,0.429474,0.438677,0.176186508,0.192808851,0.209431193,0.226053536,0.187339832,0.148626128,0.109912424,0.093618659,0.077324893,0.061988128,0.088447805,0.114907482,0.141367159,0.174988951,0.208610744,0.242232536,0.242232536,0.242232536 +21,KY,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.43809,0.49613,0.49548,0.50331,1.01685,1.039738,1.064153,0.295644165,0.355715584,0.415787002,0.47585842,0.516649044,0.557439668,0.598230292,0.47870537,0.359180449,0.240795527,0.252025096,0.263254664,0.274484233,0.279450743,0.284417253,0.289383764,0.289383764,0.289383764 +21,KY,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,38.04127,9.48143,8.12425,8.19562,7.77366,7.946526,8.16415,5.643878854,5.499978672,5.356078489,5.212178307,4.153932127,3.095685947,2.037439767,1.963601344,1.88976292,2.201792893,2.135606402,2.069419911,2.003233419,2.36453177,2.725830121,3.087128471,3.087128471,3.087128471 +21,KY,5,METALS PROCESSING,VOC,4.54811,3.50062,3.73149,3.82497,3.84173,3.910983,4.058865,1.507945592,1.736479341,1.965013089,2.193546838,1.997522309,1.80149778,1.605473251,1.775014542,1.944555832,2.081037122,1.907876451,1.734715779,1.561555107,1.545434923,1.529314738,1.513194553,1.513194553,1.513194553 +21,KY,5,METALS PROCESSING,CO,25.7411,33.77236,35.27943,34.78643,72.08286,72.647408,74.966124,89.19681264,66.16020456,43.12359648,20.0869884,27.22655746,34.36612651,41.50569557,48.15244526,54.79919494,61.44594462,62.41314041,63.3803362,64.347532,56.49174308,48.63595417,40.78016525,40.78016525,40.78016525 +21,KY,5,METALS PROCESSING,NH3,0.17934,0.13508,0.14709,0.15135,0.002154,0.002192,0.002298,0.233858285,0.155929809,0.078001334,0.000072858,0.000048572,0.000024286,,0.000405333,0.000810667,0.001216,0.001216,0.001216,,0,0,0,0,0 +21,KY,5,METALS PROCESSING,NOX,0.27877,2.40002,2.57324,2.60265,1.75071,1.815895,1.928858,1.081596652,1.362846573,1.644096494,1.925346415,1.81274503,1.700143645,1.58754226,1.595292989,1.603043717,1.610794446,1.575019212,1.539243978,1.503468744,1.447417296,1.391365847,1.335314398,1.335314398,1.335314398 +21,KY,5,METALS PROCESSING,PM10,2.56888,3.67967,3.87819,3.86298,3.709719,3.76614,3.920226,3.683905592,3.165903379,2.647901166,2.129898953,3.298613414,4.467327874,5.636042334,5.148144118,4.660245902,4.150645013,3.991666043,3.832687073,3.673708103,3.217145732,2.760583361,2.304020989,2.304020989,2.304020989 +21,KY,5,METALS PROCESSING,PM25,1.59212,2.46179,2.59357,2.58395,3.121388,3.169795,3.300423,2.586187031,2.317713967,2.049240903,1.780767839,2.848608781,3.916449723,4.984290665,4.457443198,3.930595731,3.401567579,3.179518707,2.957469835,2.735420964,2.298654748,1.861888533,1.425122317,1.425122317,1.425122317 +21,KY,5,METALS PROCESSING,SO2,6.52208,8.91413,9.3029,9.16253,9.37626,9.44493,9.741019,12.32789412,10.5464147,8.76493529,6.983455876,7.017660671,7.051865466,7.086070261,6.731075354,6.376080446,6.021085539,5.065019372,4.108953204,3.152887037,2.594458534,2.036030032,1.477601529,1.477601529,1.477601529 +21,KY,6,PETROLEUM & RELATED INDUSTRIES,VOC,19.89486,7.07931,7.30115,7.30965,6.15779,5.687092,5.716747,2.996169958,2.881155186,2.766140413,2.651125641,2.051103773,1.451081906,0.851060038,9.09874173,17.34642342,31.13221171,30.53528856,29.9383654,29.34144225,32.25434438,35.16724651,38.08014864,38.08014864,38.08014864 +21,KY,6,PETROLEUM & RELATED INDUSTRIES,SO2,5.70886,6.29795,6.49567,6.50641,5.96434,5.997559,6.010073,5.755386238,4.369351693,2.983317149,1.597282604,1.541098384,1.484914163,1.428729942,1.072381893,0.716033843,0.551241127,0.432288325,0.313335523,0.194382722,0.224074915,0.253767109,0.283459302,0.283459302,0.283459302 +21,KY,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.29306,0.23788,0.24385,0.24385,0.296726,0.298008,0.299026,0.25760893,0.199429345,0.14124976,0.083070175,0.080450592,0.077831008,0.075211425,0.262889948,0.450568471,0.638334104,0.567249475,0.496164847,0.425080218,0.361757111,0.298434005,0.235110898,0.235110898,0.235110898 +21,KY,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.81489,0.34699,0.35394,0.35379,0.382951,0.384351,0.385499,0.374293341,0.306718563,0.239143785,0.171569007,0.160946784,0.15032456,0.139702337,0.327227746,0.514753155,0.702365942,0.628004044,0.553642146,0.479280248,0.419772958,0.360265667,0.300758376,0.300758376,0.300758376 +21,KY,6,PETROLEUM & RELATED INDUSTRIES,NOX,1.81741,2.32699,2.39998,2.40248,2.40687,2.419643,2.424673,2.525128692,2.095560522,1.665992352,1.236424182,1.330730477,1.425036772,1.519343068,9.265637249,17.01193143,24.76273157,20.42292648,16.0831214,11.74331631,12.26285178,12.78238726,13.30192273,13.30192273,13.30192273 +21,KY,6,PETROLEUM & RELATED INDUSTRIES,CO,28.1801,3.89465,3.99711,3.9883,4.17734,4.196074,4.204419,4.338059249,3.537414612,2.736769974,1.936125336,1.694247531,1.452369726,1.210491921,11.29551082,21.38052973,31.48805869,26.75161124,22.01516378,17.27871632,18.09803196,18.9173476,19.73666323,19.73666323,19.73666323 +21,KY,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.9503,0.4688,0.48483,0.48582,0.33331,0.33531,0.335976,0.386154,0.257436,0.128718,,0,0,,0,0,0,0.002335,0.00467,0.007005,0.005384113,0.003763227,0.00214234,0.00214234,0.00214234 +21,KY,7,OTHER INDUSTRIAL PROCESSES,CO,18.4543,15.18075,15.50304,15.75491,5.33881,5.478643,6.054842961,6.03089073,6.303641136,6.576391542,6.849141948,9.09777599,11.34641003,13.59504408,10.73504419,7.8750443,5.016183537,6.059725516,7.103267494,8.146809473,7.482705198,6.818600923,6.154496648,6.154496648,6.154496648 +21,KY,7,OTHER INDUSTRIAL PROCESSES,PM10,14.90182,27.2754,27.59831,30.73599,32.127099,29.047541,30.49227348,31.21812357,31.56701248,31.91590139,32.2647903,31.70306319,31.14133609,30.57960899,29.15603922,27.73246945,26.22669842,20.6315364,15.03637438,9.441212364,10.74006182,12.03891128,13.33776074,13.33776074,13.33776074 +21,KY,7,OTHER INDUSTRIAL PROCESSES,PM25,5.36003,9.13774,9.31177,9.98081,12.15053,11.659979,12.92822972,10.57755608,10.80343184,11.02930761,11.25518338,11.19958155,11.14397972,11.08837789,10.43461926,9.780860639,9.082587628,7.99440715,6.906226673,5.818046195,5.933044032,6.04804187,6.163039707,6.163039707,6.163039707 +21,KY,7,OTHER INDUSTRIAL PROCESSES,VOC,37.53843,27.83739,28.7375,29.09124,32.32655,33.159381,33.47595186,24.46110448,26.50425675,28.54740901,30.59056127,30.67103054,30.75149981,30.83196909,31.16978742,31.50760575,31.7881694,32.79253513,33.79690085,34.80126658,35.65599048,36.51071438,37.36543828,37.36543828,37.36543828 +21,KY,7,OTHER INDUSTRIAL PROCESSES,NOX,7.56292,7.99113,8.45942,8.66136,8.49267,8.74972,9.049016,6.096908957,7.126401011,8.155893065,9.185385119,9.082221266,8.979057413,8.87589356,7.824142881,6.772392203,5.683443825,5.693596139,5.703748453,5.713900768,5.693976707,5.674052646,5.654128585,5.654128585,5.654128585 +21,KY,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00356,0.00358,0.00362,0.13398,0.136847,0.138514,0.952703466,0.895888939,0.839074413,0.782259886,0.542323257,0.302386629,0.06245,0.148410383,0.234370767,0.32056915,0.30123079,0.28189243,0.26255407,0.282761829,0.302969587,0.323177346,0.323177346,0.323177346 +21,KY,7,OTHER INDUSTRIAL PROCESSES,SO2,4.85439,3.49489,3.59678,3.64531,3.88548,3.984416,4.075321,2.384406245,2.759166322,3.133926399,3.508686476,4.776250716,6.043814957,7.311379197,7.048449144,6.785519092,6.468612879,6.566347013,6.664081147,6.761815281,6.770193676,6.778572071,6.786950465,6.786950465,6.786950465 +21,KY,8,SOLVENT UTILIZATION,NH3,,,,,0.02015,0.020611,0.021118,0.02146425,0.015236167,0.009008083,0.00278,0.002322667,0.001865333,0.001408,0.000985333,0.000562667,0.00014,0.000166993,0.000193987,0.00022098,0.000184084,0.000147188,0.000110291,0.000110291,0.000110291 +21,KY,8,SOLVENT UTILIZATION,VOC,90.75803,91.27713,94.10768,89.10311,83.28906,82.141274,84.174069,60.51603078,59.93251881,59.34900684,58.76549487,51.83977524,44.91405562,37.98833599,40.16901647,42.34969695,44.11814895,47.00834526,49.89854157,52.78873789,55.31626784,57.84379778,60.37132773,60.37132773,60.37132773 +21,KY,8,SOLVENT UTILIZATION,SO2,0.01432,0.01589,0.01606,0.01611,0.01819,0.018347,0.018384,0.000605854,0.00060705,0.000608247,0.000609443,0.000458062,0.000306681,0.0001553,0.000145533,0.000135767,0.000126,9.22E-05,5.85E-05,0.0000247,2.49E-05,2.51E-05,0.000025368,0.000025368,0.000025368 +21,KY,8,SOLVENT UTILIZATION,PM25,0.09203,0.09897,0.10138,0.10246,0.21375,0.217837,0.225538,0.27282591,0.232007453,0.191188995,0.150370538,0.135706266,0.121041994,0.106377723,0.095213842,0.084049961,0.073401753,0.071319214,0.069236674,0.067154135,0.088961703,0.110769272,0.132576841,0.132576841,0.132576841 +21,KY,8,SOLVENT UTILIZATION,NOX,,0.03123,0.03242,0.03317,0.05076,0.051591,0.052023,0.008574799,0.013984104,0.01939341,0.024802715,0.018913143,0.013023572,0.007134,0.006445333,0.005756667,0.005068,0.004775333,0.004482667,0.00419,0.004202667,0.004215333,0.004228,0.004228,0.004228 +21,KY,8,SOLVENT UTILIZATION,CO,0.01917,0.00142,0.00142,0.00144,0.00039,0.000384,0.000386,0.000347533,0.002732908,0.005118284,0.007503659,0.006598106,0.005692553,0.004787,0.004224667,0.003662333,0.0031,0.003241667,0.003383333,0.003525,0.00353384,0.00354268,0.00355152,0.00355152,0.00355152 +21,KY,8,SOLVENT UTILIZATION,PM10,0.10313,0.10833,0.11106,0.11216,0.21411,0.218171,0.225871,0.312413338,0.261264393,0.210115448,0.158966503,0.141855288,0.124744074,0.107632859,0.099300386,0.090967913,0.082859896,0.080247841,0.077635785,0.075023729,0.100703396,0.126383062,0.152062729,0.152062729,0.152062729 +21,KY,9,STORAGE & TRANSPORT,VOC,28.75972,26.96635,27.67998,27.73166,27.92854,27.263811,27.547191,27.21171653,27.1587047,27.10569288,27.05268106,24.97100809,22.88933513,20.80766216,22.36195537,23.91624858,22.60830938,18.05360843,13.49890748,8.944206531,10.45029496,11.95638338,13.46247181,13.46247181,13.46247181 +21,KY,9,STORAGE & TRANSPORT,SO2,,,,,0.00092,0.000937,0.000955,0.003084518,0.003061255,0.003037992,0.003014728,0.015807378,0.028600027,0.041392677,0.028797695,0.016202713,0.003607732,0.003140822,0.002673912,0.002207002,0.001516602,0.000826202,0.000135802,0.000135802,0.000135802 +21,KY,9,STORAGE & TRANSPORT,CO,,,,,,,,0.032603999,0.025011976,0.017419954,0.009827931,0.012433056,0.015038181,0.017643306,0.023266439,0.028889572,0.032672705,0.025561969,0.018451233,0.011340497,0.008873113,0.006405729,0.003938345,0.003938345,0.003938345 +21,KY,9,STORAGE & TRANSPORT,NH3,,,,,0.00294,0.002995,0.003053,0.005864514,0.004346343,0.002828171,0.00131,0.000873333,0.000436667,0,0.02765507,0.05531014,0.08503521,0.084492629,0.083950047,0.083407466,0.090323479,0.097239492,0.104155505,0.104155505,0.104155505 +21,KY,9,STORAGE & TRANSPORT,NOX,,,,,,,,0.0153634,0.01084194,0.00632048,0.00179902,0.002733853,0.003668685,0.004603518,0.006416839,0.008230161,0.007523482,0.008185377,0.008847271,0.009509166,0.013946273,0.018383379,0.022820486,0.022820486,0.022820486 +21,KY,9,STORAGE & TRANSPORT,PM10,0.4145,1.30366,1.32848,1.33506,4.201803,4.294825,4.415985,2.034099182,2.24738214,2.460665098,2.673948056,2.532959556,2.391971056,2.250982557,2.158534298,2.066086038,2.044936302,1.961884381,1.878832461,1.795780541,1.683074461,1.570368381,1.4576623,1.4576623,1.4576623 +21,KY,9,STORAGE & TRANSPORT,PM25,0.22919,0.76099,0.77501,0.77826,2.233417,2.282686,2.346485,0.863298041,0.975497837,1.087697634,1.19989743,1.184049464,1.168201498,1.152353532,0.923922328,0.695491125,0.491817521,0.481160604,0.470503687,0.45984677,0.446832297,0.433817824,0.420803351,0.420803351,0.420803351 +21,KY,10,WASTE DISPOSAL & RECYCLING,CO,36.66895,55.53665,56.66494,58.38187,58.06909,43.640365,43.718392,42.46850954,42.5203666,42.57222366,42.62408072,39.46620869,36.30833666,33.15046462,30.52959284,27.90872105,25.28784927,28.4488049,31.60976053,34.77071615,31.87683208,28.982948,26.08906392,26.08906392,26.08906392 +21,KY,10,WASTE DISPOSAL & RECYCLING,NOX,2.92322,2.65683,2.73726,2.81766,2.88006,2.469434,2.485797,2.047715391,2.04817774,2.048640089,2.049102437,1.871576636,1.694050835,1.516525034,1.396395246,1.276265458,1.15613567,1.273104314,1.390072959,1.507041603,1.396858782,1.286675961,1.176493139,1.176493139,1.176493139 +21,KY,10,WASTE DISPOSAL & RECYCLING,NH3,0.79072,0.88504,0.88041,0.91545,0.921874,0.932889,0.94699,0.015018997,0.015018997,0.015018997,0.015018997,0.015380389,0.01574178,0.016103172,0.016071296,0.016039419,0.016104172,0.04588312,0.075662067,0.105441015,0.106457348,0.107473681,0.108490014,0.108490014,0.108490014 +21,KY,10,WASTE DISPOSAL & RECYCLING,PM10,9.14103,10.68212,11.07542,11.35111,11.558455,10.177344,10.203762,9.113128885,9.144737478,9.176346071,9.207954664,8.127563874,7.047173084,5.966782294,5.75613712,5.545491946,5.334846772,5.464823076,5.594799381,5.724775685,5.666105053,5.607434421,5.54876379,5.54876379,5.54876379 +21,KY,10,WASTE DISPOSAL & RECYCLING,SO2,1.81787,1.26629,1.28942,1.34871,1.35337,1.364557,1.377687,0.35710586,0.363480439,0.369855018,0.376229597,0.302300996,0.228372394,0.154443792,0.156523579,0.158603367,0.160683154,0.244626348,0.328569542,0.412512735,0.412955444,0.413398152,0.41384086,0.41384086,0.41384086 +21,KY,10,WASTE DISPOSAL & RECYCLING,VOC,17.5672,9.2512,9.53854,9.76712,9.78887,8.878004,8.926673,8.082099068,8.140099719,8.19810037,8.256101021,6.774564921,5.293028821,3.811492721,3.324680518,2.837868315,2.351542115,2.715132772,3.078723429,3.442314086,3.257195131,3.072076176,2.886957221,2.886957221,2.886957221 +21,KY,10,WASTE DISPOSAL & RECYCLING,PM25,8.12814,9.98882,10.34513,10.60585,10.781924,9.389438,9.408216,8.531414295,8.547775968,8.56413764,8.580499313,7.409803991,6.239108669,5.068413347,4.88965841,4.710903473,4.532148536,4.610083808,4.688019079,4.76595435,4.829543365,4.89313238,4.956721395,4.956721395,4.956721395 +21,KY,11,HIGHWAY VEHICLES,VOC,146.72901,104.15479,101.34092,100.38181,97.2869,87.78794,81.92581,71.42879329,67.38359982,63.33840634,59.29321287,56.98506262,54.67691236,46.79825239,46.8857176,43.78369915,50.93412284,49.76289498,48.59166712,47.42043926,43.5962655,36.89572349,34.29555462,30.87773303,28.6976439 +21,KY,11,HIGHWAY VEHICLES,SO2,9.07223,5.40174,5.65227,5.79892,6.00475,4.64945,4.55788,5.721455406,4.884769839,4.048084272,3.211398705,1.906969067,0.602539429,0.553854212,0.509726332,0.554876306,0.503156532,0.472658121,0.442159709,0.411661298,0.351047509,0.354487695,0.318071189,0.176513196,0.158559043 +21,KY,11,HIGHWAY VEHICLES,CO,1759.07154,1362.71065,1329.88058,1300.55259,1225.41437,1163.06546,1078.63789,940.5905703,886.4336252,832.27668,778.1197349,675.0531484,571.9865618,515.4115667,477.2216266,452.5109925,498.9804462,494.8155361,490.650626,486.4857159,454.7317129,399.1699777,378.5255766,344.6842665,327.7658881 +21,KY,11,HIGHWAY VEHICLES,NH3,2.52217,4.00973,4.58097,4.48981,4.6995,4.64424,4.62533,2.624944015,2.535779693,2.446615371,2.35745105,2.282899219,2.208347388,2.044312569,1.965792174,1.817405106,2.105020136,2.020049559,1.935078982,1.850108405,1.76785824,1.704280539,1.68214437,1.548006247,1.511172606 +21,KY,11,HIGHWAY VEHICLES,NOX,165.15567,160.0329,164.27223,164.28346,162.16011,152.89449,140.23852,206.0129789,190.3597061,174.7064333,159.0531605,146.9747276,134.8962947,122.2280033,114.5725959,106.2824507,115.6408478,111.9171776,108.1935074,104.4698371,93.13370008,75.74433981,72.24779571,63.03221336,57.07142994 +21,KY,11,HIGHWAY VEHICLES,PM10,7.04621,5.36704,5.23482,4.9701,4.76042,4.23667,3.88392,7.362499706,7.140485567,6.918471428,6.696457289,6.338056257,5.979655225,5.445306697,5.252943383,4.810037833,5.786261543,5.694432828,5.602604113,5.510775398,5.069713946,4.191309829,4.167559265,4.324036956,4.160547149 +21,KY,11,HIGHWAY VEHICLES,PM25,5.96474,4.33921,4.1708,3.92073,3.70334,3.23572,2.92204,6.224799414,6.007641356,5.790483297,5.573325239,5.176114634,4.77890403,4.281297731,4.101374569,3.671666808,3.390327637,3.367526281,3.344724925,3.321923568,2.897173645,2.328187849,2.260609477,2.139632137,1.975484361 +21,KY,12,OFF-HIGHWAY,VOC,33.12608,36.9468,35.25811,34.6295,34.43097,34.34175,34.1658,42.29337561,41.73598387,41.17859212,40.62120038,39.57161671,38.52203303,36.03564785,34.62937736,33.99654952,31.99918232,29.78461212,27.57004191,25.3554717,22.02729198,16.13937708,15.37093253,14.87393335,14.37693417 +21,KY,12,OFF-HIGHWAY,SO2,11.17818,11.72806,11.78371,11.86986,11.91596,12.25167,12.11918,6.93812949,6.981457558,7.024785627,7.068113695,5.017559894,2.967006094,1.511673464,1.906481727,1.651658706,0.640989842,0.534404457,0.427819073,0.321233689,0.402079427,0.502258208,0.563770904,0.583883737,0.60399657 +21,KY,12,OFF-HIGHWAY,PM25,5.30782,5.56899,5.4702,5.38563,5.31058,5.25861,5.17805,6.415650111,5.932335472,5.449020833,4.965706194,4.491522495,4.017338795,3.556992184,3.634744683,3.551571982,3.392385028,3.174479594,2.956574161,2.738668728,2.377294233,1.696817858,1.654545243,1.57363721,1.492729178 +21,KY,12,OFF-HIGHWAY,PM10,5.79557,6.08028,5.97017,5.87459,5.7989,5.74394,5.65521,7.178232597,6.504410998,5.830589398,5.156767799,4.699725408,4.242683017,3.804498444,3.871646391,3.785049273,3.572676951,3.343845201,3.11501345,2.8861817,2.503324702,1.78207846,1.737610707,1.653622652,1.569634597 +21,KY,12,OFF-HIGHWAY,NOX,86.4119,94.50509,93.75621,92.73347,91.22911,91.74988,91.84279,93.40456739,92.92040884,92.43625029,91.95209174,76.89015472,61.8282177,57.66265407,60.6316787,59.56567684,56.64590317,53.3867581,50.12761302,46.86846794,41.32943055,29.21524328,30.25135576,29.19030421,28.12925265 +21,KY,12,OFF-HIGHWAY,CO,254.07166,287.64435,281.10496,281.20534,283.60125,286.40001,291.25029,300.1901651,293.6088541,287.0275431,280.446232,264.5616848,248.6771376,235.8974789,211.879287,205.895575,201.6250544,194.6722482,187.719442,180.7666357,167.1556922,140.1173386,139.9338053,140.0358571,140.1379089 +21,KY,12,OFF-HIGHWAY,NH3,0.37855,0.42358,0.4169,0.43188,0.0372,0.0372,0.0372,0.040478284,0.04098444,0.041490596,0.041996753,0.043941082,0.04588541,0.037833121,0.046942705,0.047474465,0.046155388,0.045383093,0.044610797,0.043838502,0.039183526,0.025909906,0.029873575,0.029547924,0.029222272 +21,KY,14,MISCELLANEOUS,CO,2.78506,26.92109,39.62245,70.42271,100.76446,91.2484,116.11608,0.68636,43.01277058,85.33918116,127.6655917,86.24415116,44.82271057,3.401269985,5.626829515,7.852389045,10.07794857,7.481797762,4.885646949,2.289496136,2.360553308,2.431610481,2.502667654,2.502667654,2.502667654 +21,KY,14,MISCELLANEOUS,VOC,3.1192,5.9044,6.35667,9.9247,8.47539,4.32904,5.49931,0.14573,10.20723895,20.2687479,30.33025685,20.36560858,10.40096031,0.436312042,0.553841086,0.67137013,0.788899174,1.136790581,1.484681989,1.832573397,2.080206181,2.327838966,2.575471751,2.575471751,2.575471751 +21,KY,14,MISCELLANEOUS,SO2,0.01539,0.02106,0.02689,0.05582,0.59119,0.53522,0.68148,0.00682,0.405334435,0.803848871,1.202363306,0.809245482,0.416127658,0.023009834,0.087445907,0.151881981,0.216318054,0.155138129,0.093958204,0.032778279,0.036909291,0.041040303,0.045171316,0.045171316,0.045171316 +21,KY,14,MISCELLANEOUS,PM25,44.87367,41.17415,45.829,48.77264,50.97642,48.959975,44.8846791,19.46826715,23.32002593,27.17178471,31.02354349,28.69470805,26.36587261,24.03703718,24.58905611,25.14107504,25.69309398,27.85507433,30.01705469,32.17903505,29.58869894,26.99836283,24.40802672,24.40802672,24.40802672 +21,KY,14,MISCELLANEOUS,PM10,236.32977,198.76508,216.06021,216.13873,224.93911,220.172157,214.1221229,183.07167,187.6167474,192.1618247,196.7069021,180.9974985,165.2880949,149.5786913,153.3864633,157.1942352,161.0020071,179.5518091,198.1016111,216.6514131,191.7965735,166.9417339,142.0868943,142.0868943,142.0868943 +21,KY,14,MISCELLANEOUS,NOX,0.06838,0.62344,0.83533,1.63586,2.16229,1.9581,2.49158,0.00999,0.855124299,1.700258598,2.545392897,1.765084982,0.984777067,0.204469153,0.292359632,0.380250111,0.468140591,0.344989888,0.221839185,0.098688482,0.099615325,0.100542168,0.101469011,0.101469011,0.101469011 +21,KY,14,MISCELLANEOUS,NH3,85.15028,87.6412,87.07109,88.24756,89.09587,89.07826,51.81963453,50.93484486,51.63478015,52.33471544,53.03465073,52.57253647,52.11042221,51.64830794,51.36320511,51.07810228,50.79299945,44.36906682,37.94513418,31.52120155,35.33153555,39.14186954,42.95220354,42.95220354,42.95220354 +21,KY,15,WILDFIRES,PM25,,,,,,,,0.14459697,0.14459697,0.14459697,2.813933434,2.813933434,2.813933434,3.939779799,3.939779799,3.939779799,7.897815732,7.897815732,7.897815732,22.4637885,22.4637885,22.4637885,8.160313083,8.160313083,8.160313083 +21,KY,15,WILDFIRES,CO,,,,,,,,1.81009,1.81009,1.81009,29.61567698,29.61567698,29.61567698,46.56678578,46.56678578,46.56678578,89.19257989,89.19257989,89.19257989,260.0324721,260.0324721,260.0324721,90.38634719,90.38634719,90.38634719 +21,KY,15,WILDFIRES,SO2,,,,,,,,0.010251915,0.010251915,0.010251915,0.327909461,0.327909461,0.327909461,0.31973226,0.31973226,0.31973226,0.754497007,0.754497007,0.754497007,1.972781873,1.972781873,1.972781873,0.827946185,0.827946185,0.827946185 +21,KY,15,WILDFIRES,NH3,,,,,,,,0.027023514,0.027023514,0.027023514,0.492761688,0.492761688,0.492761688,0.762362022,0.762362022,0.762362022,1.469230757,1.469230757,1.469230757,4.268989219,4.268989219,4.268989219,1.492918889,1.492918889,1.492918889 +21,KY,15,WILDFIRES,NOX,,,,,,,,0.016921682,0.016921682,0.016921682,0.748616241,0.748616241,0.748616241,0.536579083,0.536579083,0.536579083,1.492425001,1.492425001,1.492425001,3.609055783,3.609055783,3.609055783,1.71957319,1.71957319,1.71957319 +21,KY,15,WILDFIRES,PM10,,,,,,,,0.171333627,0.171333627,0.171333627,3.320441453,3.320441453,3.320441453,4.648941811,4.648941811,4.648941811,9.319420428,9.319420428,9.319420428,26.50727324,26.50727324,26.50727324,9.629169098,9.629169098,9.629169098 +21,KY,15,WILDFIRES,VOC,,,,,,,,0.412199503,0.412199503,0.412199503,7.083449275,7.083449275,7.083449275,10.95895846,10.95895846,10.95895846,21.12018603,21.12018603,21.12018603,61.36671842,61.36671842,61.36671842,21.46070829,21.46070829,21.46070829 +21,KY,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,11.11295723,10.10141254,9.089867857,8.07832317,7.932997568,7.787671965,7.642346363,8.655025354,9.667704344,10.68038334,10.68038334,10.68038334 +21,KY,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,13.11329709,11.91967239,10.72604769,9.532422988,9.360939223,9.189455458,9.017971693,10.21293235,11.40789301,12.60285367,12.60285367,12.60285367 +21,KY,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,1.956088126,1.812633569,1.669179011,1.525724454,1.495555519,1.465386585,1.43521765,1.706487752,1.977757854,2.249027956,2.249027956,2.249027956 +21,KY,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,1.02244486,0.938803546,0.855162231,0.771520917,0.756899986,0.742279055,0.727658124,0.846173174,0.964688223,1.083203273,1.083203273,1.083203273 +21,KY,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,126.9373607,115.0379885,103.1386162,91.23924395,89.62501417,88.01078438,86.3965546,97.03611825,107.6756819,118.3152456,118.3152456,118.3152456 +21,KY,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,30.01100866,27.20885688,24.40670509,21.60455331,21.22143552,20.83831774,20.45519995,23.00060828,25.54601661,28.09142494,28.09142494,28.09142494 +21,KY,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,2.087722141,1.892789676,1.697857212,1.502924747,1.476273275,1.449621802,1.42297033,1.600042128,1.777113927,1.954185725,1.954185725,1.954185725 +22,LA,1,FUEL COMB. ELEC. UTIL.,SO2,98.76606,106.10843,129.04466,186.00971,126.41792,164.964973,171.891467,112.7526,104.908802,110.090369,110.8323052,97.048425,78.041787,88.49493439,90.01840778,91.54136526,93.06432274,86.75577357,80.4472244,74.13867522,64.62068149,55.10268775,45.58469402,38.174511,23.687867 +22,LA,1,FUEL COMB. ELEC. UTIL.,CO,9.16265,10.773,11.79315,13.96688,23.00438,27.856854,31.306238,20.5731793,18.21400367,15.85482803,13.4956524,20.67755018,27.85944796,35.04134575,45.05619094,55.07103613,65.08588132,58.61124428,52.13660724,45.6619702,38.38349707,31.10502394,23.82655082,23.82655082,23.82655082 +22,LA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.40328,0.44608,0.49151,0.595326,0.621232,0.552505,1.3305436,1.160486168,0.990428737,0.820371305,0.786291286,0.752211268,0.718131249,0.73519666,0.752262071,0.769327482,0.908575125,1.047822769,1.187070412,1.193979512,1.200888611,1.207797711,1.207797711,1.207797711 +22,LA,1,FUEL COMB. ELEC. UTIL.,NOX,87.64141,77.16107,87.08709,97.91521,120.91342,121.09829,100.896668,94.5690992,68.672641,66.387214,71.33905679,52.950349,51.453671,51.48955366,50.44624649,49.39509332,48.34394016,45.94912342,43.55430668,41.15948995,37.30134391,33.44319788,29.58505184,28.5862,28.856446 +22,LA,1,FUEL COMB. ELEC. UTIL.,PM25,1.01294,1.84393,1.56984,1.58667,6.810614,8.73912,7.112092,6.083137885,6.135987431,6.188836977,6.241686523,5.522238459,4.802790395,4.083342331,4.504123558,4.924904786,5.345686013,4.523411261,3.70113651,2.878861759,2.483257685,2.087653611,1.692049537,1.692049537,1.692049537 +22,LA,1,FUEL COMB. ELEC. UTIL.,VOC,0.80487,1.30894,1.4427,1.60922,3.65291,4.669983,4.565072,2.6590144,2.480605733,2.302197067,2.1237884,1.83779247,1.551796541,1.265800611,1.272740702,1.279680794,1.286620885,1.226467837,1.166314788,1.10616174,1.050216927,0.994272113,0.9383273,0.9383273,0.9383273 +22,LA,1,FUEL COMB. ELEC. UTIL.,PM10,2.34367,3.02216,2.20771,2.23198,7.41275,9.674811,7.891082,7.771172299,7.82757088,7.883969461,7.940368042,7.590407166,7.24044629,6.890485414,7.032057666,7.173629919,7.315202171,6.276467125,5.23773208,4.198997034,3.592004316,2.985011598,2.37801888,2.37801888,2.37801888 +22,LA,2,FUEL COMB. INDUSTRIAL,PM10,16.51475,17.78537,17.0368,16.66698,44.805093,45.649399,45.509541,12.26455867,14.90545912,17.54635956,20.18726,22.61409761,25.04093523,27.46777284,30.85036569,34.23295854,37.57965509,29.94795317,22.31625125,14.68454933,17.44088095,20.19721258,22.9535442,22.9535442,22.9535442 +22,LA,2,FUEL COMB. INDUSTRIAL,CO,88.75315,123.60348,120.02444,117.54475,102.14707,103.896624,104.637359,96.4429639,93.39845277,90.35394163,87.3094305,84.36843914,81.42744778,78.48645642,75.7132597,72.94006299,69.39579927,65.18890106,60.98200285,56.77510465,58.4393036,60.10350256,61.76770151,61.76770151,61.76770151 +22,LA,2,FUEL COMB. INDUSTRIAL,NOX,328.35624,326.44747,318.06699,310.50755,267.12653,271.457469,268.037386,176.3816591,163.6270539,150.8724486,138.1178433,134.2969225,130.4760018,126.655081,122.3519228,118.0487645,112.9096083,102.9953474,93.08108654,83.16682565,82.60072996,82.03463427,81.46853857,81.46853857,81.46853857 +22,LA,2,FUEL COMB. INDUSTRIAL,PM25,13.43589,14.29002,13.78735,13.5348,42.449619,43.122151,42.876873,9.21535587,11.7111362,14.20691654,16.70269687,19.49419768,22.28569848,25.07719928,27.93174387,30.78628845,33.60396512,26.48843852,19.37291193,12.25738534,14.55015682,16.84292829,19.13569977,19.13569977,19.13569977 +22,LA,2,FUEL COMB. INDUSTRIAL,SO2,146.44128,127.11063,117.43851,112.40077,100.81712,108.218259,110.51232,27.08022363,27.3172503,27.55427697,27.79130364,29.05975699,30.32821034,31.59666369,35.97578387,40.35490405,44.69729123,38.28043532,31.8635794,25.44672348,24.16218392,22.87764437,21.59310481,21.59310481,21.59310481 +22,LA,2,FUEL COMB. INDUSTRIAL,VOC,22.70018,18.62413,18.23401,17.85899,13.72237,13.907096,13.816457,12.62322061,12.09747454,11.57172847,11.0459824,11.18066902,11.31535564,11.45004225,10.19221796,8.934393666,7.585124673,7.543200439,7.501276206,7.459351972,7.404313438,7.349274904,7.294236369,7.294236369,7.294236369 +22,LA,2,FUEL COMB. INDUSTRIAL,NH3,1.31861,0.77441,0.73752,0.71231,2.553481,2.593003,2.59457,0.750005027,0.780171788,0.81033855,0.840505312,1.101183738,1.361862164,1.62254059,1.534628658,1.446716725,1.355683293,1.327201968,1.298720643,1.270239318,1.518353779,1.766468241,2.014582702,2.014582702,2.014582702 +22,LA,3,FUEL COMB. OTHER,CO,37.94015,24.13693,24.13387,23.99851,23.840361,25.507263,25.561416,19.67407844,19.67041178,19.66674511,19.66307844,19.46856098,19.27404352,19.07952607,15.18537277,11.29121947,6.606422814,7.126576689,7.646730564,8.16688444,9.268723737,10.37056303,11.47240233,11.47240233,11.47240233 +22,LA,3,FUEL COMB. OTHER,NH3,0.04297,0.03958,0.03864,0.03385,0.037985,0.03849,0.039093,0.007113371,0.007113371,0.007113371,0.007113371,0.138721592,0.270329812,0.401938033,0.438417232,0.474896431,0.501814752,0.502270286,0.50272582,0.503181354,0.461234138,0.419286921,0.377339704,0.377339704,0.377339704 +22,LA,3,FUEL COMB. OTHER,PM25,5.11241,3.54792,3.54328,3.50801,3.604662,3.839896,3.860123,2.386351258,2.384661095,2.382970932,2.381280769,2.392108426,2.402936082,2.413763739,1.968239954,1.522716168,0.951921451,1.02780724,1.103693028,1.179578817,1.329290536,1.479002255,1.628713974,1.628713974,1.628713974 +22,LA,3,FUEL COMB. OTHER,NOX,9.809,5.4772,5.33379,4.92523,5.044303,5.126354,5.19405,5.187205614,5.151872281,5.116538947,5.081205614,5.188791283,5.296376953,5.403962622,5.048295659,4.692628696,4.323146206,4.0735802,3.824014195,3.57444819,3.414522663,3.254597137,3.094671611,3.094671611,3.094671611 +22,LA,3,FUEL COMB. OTHER,SO2,4.85398,4.80642,4.89444,4.11219,3.830354,3.91546,4.008781,0.357882595,0.332215929,0.306549262,0.280882595,0.242369305,0.203856015,0.165342724,0.152490899,0.139639074,0.124668985,0.122230188,0.119791391,0.117352595,0.135104487,0.15285638,0.170608273,0.170608273,0.170608273 +22,LA,3,FUEL COMB. OTHER,VOC,6.98113,7.82052,7.83196,7.81599,8.105623,8.657315,8.677544,6.47001971,5.693416389,4.916813067,4.140209745,4.69678504,5.253360335,5.80993563,4.270215842,2.730496053,1.090564489,1.229117473,1.367670458,1.506223443,1.617438549,1.728653655,1.839868762,1.839868762,1.839868762 +22,LA,3,FUEL COMB. OTHER,PM10,5.21166,3.66198,3.65843,3.60788,3.685134,3.92238,3.945029,2.397739137,2.394737019,2.391734901,2.388732783,2.40085845,2.412984117,2.425109784,1.981896887,1.53868399,0.970215486,1.044467387,1.118719287,1.192971188,1.345956422,1.498941655,1.651926889,1.651926889,1.651926889 +22,LA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,5.53709,3.68429,3.70268,3.71528,6.589507,6.74164,6.974844,3.853613424,4.756634502,5.659655581,6.562676659,5.880120889,5.19756512,4.51500935,4.323053798,4.131098246,3.957666694,3.59814554,3.238624386,2.879103233,2.999645625,3.120188017,3.240730409,3.240730409,3.240730409 +22,LA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,6.68945,5.02783,5.06734,5.09004,7.924693,8.111255,8.387303,4.892303064,5.737239433,6.582175801,7.427112169,6.708276518,5.989440867,5.270605216,5.016285171,4.761965126,4.52513908,4.161954294,3.798769507,3.435584721,3.560581643,3.685578566,3.810575488,3.810575488,3.810575488 +22,LA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,37.14,28.60882,28.93639,29.13245,24.554,25.173589,25.978727,21.55,20.03533333,18.52066667,17.006,15.1358295,13.265659,11.39548849,11.90386499,12.41224148,12.96048797,12.85771334,12.75493871,12.65216407,13.15613945,13.66011483,14.16409021,14.16409021,14.16409021 +22,LA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,76.5332,64.69451,64.80847,64.9216,103.758,105.807397,109.760132,103.445,101.8503333,100.2556667,98.661,92.72455915,86.78811829,80.85167744,70.5645698,60.27746217,50.01083454,50.71462704,51.41841954,52.12221203,52.26365891,52.40510579,52.54655266,52.54655266,52.54655266 +22,LA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,420.68,431.9848,437.83479,439.31971,25.705,26.354586,27.172906,18.202,17.93833333,17.67466667,17.411,15.41070468,13.41040936,11.41011403,12.60953615,13.80895827,15.03473038,14.35832656,13.68192273,13.00551891,13.11764093,13.22976295,13.34188497,13.34188497,13.34188497 +22,LA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,43.40226,9.84149,10.0604,10.2097,8.772236,8.989767,9.247055,6.587033,5.649904,4.712775,3.775646,4.050361413,4.325076827,4.59979224,4.452948699,4.306105158,4.159261666,4.421657215,4.684052765,4.946448315,5.692811883,6.439175452,7.18553902,7.18553902,7.18553902 +22,LA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,36.828,35.05389,34.10464,34.25912,16.57071,15.682888,16.157948,19.55879,18.99079,18.42279,17.85479,16.56462858,15.27446716,13.98430574,13.78812348,13.59194121,13.40476718,11.58050985,9.756252522,7.931995193,8.048587097,8.165179002,8.281770906,8.281770906,8.281770906 +22,LA,5,METALS PROCESSING,CO,0.118,2.2995,2.31307,2.23996,2.377,2.410581,2.511656,2.39,2.413666667,2.437333333,2.461,2.401359923,2.341719847,2.28207977,2.195547649,2.109015528,2.022483407,1.627721895,1.232960382,0.83819887,0.758444,0.678689129,0.598934259,0.598934259,0.598934259 +22,LA,5,METALS PROCESSING,NH3,,,,,0.000499,0.000515,0.000531,0.000012,1.03E-05,8.67E-06,0.000007,8.47E-05,0.000162367,0.00024005,0.000239717,0.000239383,0.00023905,0.000187744,0.000136439,0.000085133,0.000128724,0.000172315,0.000215906,0.000215906,0.000215906 +22,LA,5,METALS PROCESSING,NOX,1.668,1.6825,1.68957,1.65383,2.008,2.030022,2.07749,1.821,1.912333333,2.003666667,2.095,1.677738109,1.260476218,0.843214327,0.944473093,1.045731858,1.146990624,1.128993255,1.110995885,1.092998516,1.055228828,1.01745914,0.979689452,0.979689452,0.979689452 +22,LA,5,METALS PROCESSING,PM10,1.82235,1.62331,1.63271,1.61765,2.057293,2.08283,2.127047,1.018226046,1.389267809,1.760309572,2.131351335,1.743814908,1.356278481,0.968742055,0.869046159,0.769350264,0.669654368,0.591979533,0.514304699,0.436629864,0.409369424,0.382108984,0.354848544,0.354848544,0.354848544 +22,LA,5,METALS PROCESSING,PM25,0.96305,0.93503,0.94254,0.93613,1.853968,1.876924,1.916413,0.528963813,0.933124066,1.337284319,1.741444572,1.415659106,1.089873639,0.764088172,0.676348376,0.58860858,0.500868784,0.400751759,0.300634735,0.20051771,0.198764545,0.19701138,0.195258216,0.195258216,0.195258216 +22,LA,5,METALS PROCESSING,SO2,21.1305,9.885,9.81958,9.4962,10.084,10.103663,10.288802,11.307,10.82733333,10.34766667,9.868,7.460866517,5.053733035,2.646599552,1.970948586,1.295297619,0.619646653,0.663205379,0.706764106,0.750322832,0.569381098,0.388439365,0.207497631,0.207497631,0.207497631 +22,LA,5,METALS PROCESSING,VOC,0.05,0.707,0.7075,0.69415,0.554,0.559906,0.577572,0.501,0.509,0.517,0.525,0.530742078,0.536484156,0.542226234,0.546037173,0.549848111,0.55365905,0.431914432,0.310169814,0.188425196,0.172443596,0.156461996,0.140480396,0.140480396,0.140480396 +22,LA,6,PETROLEUM & RELATED INDUSTRIES,CO,35.058,63.087,65.2033,64.7136,48.494,48.664265,48.751987,15.691,18.29966667,20.90833333,23.517,16.56145447,9.605908933,2.6503634,21.21814371,39.78592402,59.09850133,54.89812246,50.6977436,46.49736473,43.28415632,40.07094791,36.8577395,36.8577395,36.8577395 +22,LA,6,PETROLEUM & RELATED INDUSTRIES,VOC,52.361,38.90908,39.80731,39.48069,35.44294,28.68483,29.148645,20.13273,19.76339667,19.39406333,19.02473,16.13540408,13.24607815,10.35675223,46.81865609,83.28055995,119.7678365,104.7482886,89.72874063,74.70919269,70.04504961,65.38090652,60.71676344,60.71676344,60.71676344 +22,LA,6,PETROLEUM & RELATED INDUSTRIES,SO2,23.42662,26.2435,27.10116,26.91831,19.393,19.463191,19.467491,20.284,19.30766667,18.33133333,17.355,15.42666823,13.49833646,11.57000469,11.59408404,11.61816339,11.64472574,9.899942393,8.155159051,6.410375708,6.542185473,6.673995238,6.805805003,6.805805003,6.805805003 +22,LA,6,PETROLEUM & RELATED INDUSTRIES,PM25,1.37709,1.45883,1.50323,1.49498,2.634362,2.653649,2.669038,1.852182913,2.702386206,3.552589499,4.402792791,4.120900348,3.839007904,3.55711546,3.662887275,3.768659089,3.889360888,3.49571656,3.102072231,2.708427903,2.474713968,2.241000032,2.007286097,2.007286097,2.007286097 +22,LA,6,PETROLEUM & RELATED INDUSTRIES,PM10,2.94403,2.10437,2.16823,2.15503,3.182227,3.204295,3.221922,2.239659562,3.320556259,4.401452956,5.482349653,4.972669451,4.46298925,3.953309048,4.038118852,4.122928655,4.222787233,3.80946153,3.396135828,2.982810125,2.77358878,2.564367434,2.355146089,2.355146089,2.355146089 +22,LA,6,PETROLEUM & RELATED INDUSTRIES,NH3,18.2949,0.032,0.03302,0.03282,0.004656,0.004673,0.004673,0.138207,0.2048465,0.271486,0.3381255,0.314770682,0.291415864,0.268061046,0.219707543,0.17135404,0.123000536,0.147651726,0.172302915,0.196954104,0.194225469,0.191496834,0.188768199,0.188768199,0.188768199 +22,LA,6,PETROLEUM & RELATED INDUSTRIES,NOX,9.951,18.76283,19.28154,19.17129,10.732,10.933929,11.100432,8.242,7.803333333,7.364666667,6.926,6.58350468,6.24100936,5.89851404,21.12852316,36.35853229,52.36976941,46.8570256,41.34428179,35.83153798,31.48579823,27.14005849,22.79431874,22.79431874,22.79431874 +22,LA,7,OTHER INDUSTRIAL PROCESSES,PM25,8.93661,7.45288,8.08732,8.24101,11.335954,11.940296,13.51897522,10.23339955,11.23817975,12.24295994,13.24774014,14.2737341,15.29972805,16.32572201,14.72166457,13.11760713,11.48531539,9.651421737,7.817528084,5.983634431,6.405519524,6.827404618,7.249289712,7.249289712,7.249289712 +22,LA,7,OTHER INDUSTRIAL PROCESSES,VOC,8.563,18.72416,19.20629,19.25232,17.64182,18.428801,14.84112926,15.56485587,17.59289539,19.62093492,21.64897445,21.74715987,21.84534529,21.94353071,20.82271785,19.70190499,18.58109213,18.98518477,19.38927741,19.79337004,20.03114901,20.26892798,20.50670695,20.50670695,20.50670695 +22,LA,7,OTHER INDUSTRIAL PROCESSES,SO2,9.18603,13.9698,14.20292,14.21146,9.11335,9.38805,9.622128,9.897718431,10.6085466,11.31937476,12.03020293,10.8948144,9.759425865,8.624037332,8.535191512,8.446345691,8.353300801,7.913198398,7.473095996,7.032993593,8.396157286,9.759320979,11.12248467,11.12248467,11.12248467 +22,LA,7,OTHER INDUSTRIAL PROCESSES,NOX,7.13,9.443,9.68221,9.67746,7.53022,7.93927,8.23773,6.03822,7.174427333,8.310634667,9.446842,9.2948717,9.1429014,8.9909311,8.846912499,8.702893899,8.558875298,8.29595509,8.033034881,7.770114673,8.194490604,8.618866535,9.043242465,9.043242465,9.043242465 +22,LA,7,OTHER INDUSTRIAL PROCESSES,CO,34.128,20.38542,20.89442,20.97348,10.54602,10.972754,11.86740229,7.354523849,10.63928152,13.92403918,17.20879685,15.83277755,14.45675826,13.08073896,11.54133129,10.00192362,8.462515954,9.831836045,11.20115614,12.57047623,11.63568923,10.70090224,9.766115241,9.766115241,9.766115241 +22,LA,7,OTHER INDUSTRIAL PROCESSES,PM10,15.92473,17.48309,19.99342,20.54493,28.235345,29.829651,31.62994994,27.11505326,28.46892149,29.82278972,31.17665794,32.66837422,34.16009049,35.65180677,34.46595691,33.28010705,32.05350849,25.4837437,18.9139789,12.34421411,14.17339948,16.00258486,17.83177024,17.83177024,17.83177024 +22,LA,7,OTHER INDUSTRIAL PROCESSES,NH3,17.37113,19.60248,19.931,19.90823,19.864895,20.380617,21.006827,21.0194765,21.106765,21.19405349,21.28134199,22.45271306,23.62408413,24.7954552,24.69526025,24.5950653,5.446670343,3.899205806,2.351741268,0.80427673,0.794715418,0.785154105,0.775592792,0.775592792,0.775592792 +22,LA,8,SOLVENT UTILIZATION,VOC,69.9826,70.02108,70.93235,66.47853,67.80605,65.197075,66.969356,70.5704569,70.63512357,70.69979023,70.7644569,73.76163866,76.75882041,79.75600217,77.39545555,75.03490893,72.53705016,61.70993168,50.88281321,40.05569473,40.32830127,40.60090781,40.87351436,40.87351436,40.87351436 +22,LA,8,SOLVENT UTILIZATION,CO,0.006,0.068,0.0696,0.0694,0.134,0.134896,0.135425,0.044,0.042333333,0.040666667,0.039,0.0297537,0.0205074,0.0112611,0.009758333,0.008255567,0.0067528,0.008723782,0.010694765,0.012665747,0.013033898,0.013402049,0.0137702,0.0137702,0.0137702 +22,LA,8,SOLVENT UTILIZATION,NH3,,0.03,0.03016,0.0306,0.01643,0.016775,0.017069,0.001269,0.001062,0.000855,0.000648,0.004040993,0.007433987,0.01082698,0.010586938,0.010346897,0.010106855,0.014228278,0.018349702,0.022471125,0.021512863,0.020554601,0.019596339,0.019596339,0.019596339 +22,LA,8,SOLVENT UTILIZATION,NOX,0.006,0.0145,0.01502,0.01495,0.031,0.031464,0.032092,0.006,0.006333333,0.006666667,0.007,0.009711667,0.012423333,0.015135,0.013445933,0.011756867,0.0100678,0.01219887,0.01432994,0.01646101,0.016658773,0.016856537,0.0170543,0.0170543,0.0170543 +22,LA,8,SOLVENT UTILIZATION,PM10,0.02131,0.1195,0.12258,0.12143,0.04,0.042355,0.046769,0.039945553,0.048830146,0.057714739,0.066599332,0.060866197,0.055133062,0.049399927,0.046787631,0.044175335,0.041563039,0.038916222,0.036269406,0.033622589,0.032115293,0.030607996,0.0291007,0.0291007,0.0291007 +22,LA,8,SOLVENT UTILIZATION,PM25,0.01849,0.09972,0.10227,0.10132,0.04,0.042355,0.046769,0.031526135,0.041437059,0.051347983,0.061258907,0.05641732,0.051575734,0.046734147,0.042954634,0.039175121,0.035395608,0.033825697,0.032255785,0.030685873,0.029681144,0.028676415,0.027671686,0.027671686,0.027671686 +22,LA,8,SOLVENT UTILIZATION,SO2,0.006,0.295,0.30449,0.30253,0.415,0.41666,0.41666,0.008,0.005333333,0.002666667,,0.0000441,0.0000882,0.0001323,0.000151483,0.000170667,0.00018985,0.000191585,0.000193319,0.000195054,0.000178369,0.000161685,0.000145,0.000145,0.000145 +22,LA,9,STORAGE & TRANSPORT,VOC,46.38673,54.55306,56.04518,55.45451,36.80209,30.13477,30.591105,52.13715961,51.19682628,50.25649294,49.31615961,49.78659721,50.25703481,50.7274724,51.66273856,52.59800472,50.00490985,46.18389993,42.36289002,38.5418801,38.85329278,39.16470546,39.47611814,39.47611814,39.47611814 +22,LA,9,STORAGE & TRANSPORT,SO2,0.009,0.006,0.00608,0.00615,0.45,0.45213,0.452611,1.433,0.979333333,0.525666667,0.072,1.3921074,2.7122148,4.0323222,3.845553569,3.658784939,3.485786308,2.352632887,1.219479465,0.086326044,0.088982499,0.091638955,0.09429541,0.09429541,0.09429541 +22,LA,9,STORAGE & TRANSPORT,PM25,0.24963,0.1698,0.17529,0.17687,0.213395,0.219016,0.225654,0.175996769,0.534596207,0.893195644,1.251795081,1.022638173,0.793481265,0.564324358,0.496449908,0.428575459,0.364029009,0.36001283,0.355996651,0.351980472,0.321185387,0.290390301,0.259595216,0.259595216,0.259595216 +22,LA,9,STORAGE & TRANSPORT,PM10,1.03772,0.55237,0.57091,0.57652,0.4897,0.502593,0.518139,0.442313475,0.785527334,1.128741192,1.471955051,1.243864114,1.015773177,0.78768224,0.716435735,0.64518923,0.577270725,0.572179268,0.56708781,0.561996353,0.523819511,0.48564267,0.447465828,0.447465828,0.447465828 +22,LA,9,STORAGE & TRANSPORT,NOX,0.135,0.15287,0.15699,0.15648,0.153,0.155312,0.157796,0.134,0.198,0.262,0.326,0.5251194,0.7242388,0.9233582,0.942359072,0.961359945,0.995260817,0.838059334,0.68085785,0.523656367,0.476793915,0.429931463,0.383069011,0.383069011,0.383069011 +22,LA,9,STORAGE & TRANSPORT,CO,0.024,0.11582,0.11932,0.11925,0.087,0.088494,0.090013,0.188,0.241333333,0.294666667,0.348,1.250526497,2.153052993,3.05557949,3.131080461,3.206581433,3.282002404,3.018756791,2.755511178,2.492265565,2.442024881,2.391784196,2.341543512,2.341543512,2.341543512 +22,LA,9,STORAGE & TRANSPORT,NH3,,0.245,0.24903,0.24723,0.000139,0.000139,0.000139,0.0108495,0.016043833,0.021238167,0.0264325,0.032852651,0.039272801,0.045692952,0.043881204,0.042069456,0.040257659,0.036944319,0.033630978,0.030317638,0.02956046,0.028803282,0.028046104,0.028046104,0.028046104 +22,LA,10,WASTE DISPOSAL & RECYCLING,VOC,32.05893,7.48312,7.34778,7.60709,7.8064,7.394299,7.438703,7.546569176,7.535645842,7.524722509,7.513799176,7.439746149,7.365693122,7.291640095,6.001779878,4.71191966,3.466649442,4.081762483,4.696875524,5.311988566,4.851380375,4.390772185,3.930163994,3.930163994,3.930163994 +22,LA,10,WASTE DISPOSAL & RECYCLING,SO2,0.41032,0.65408,0.66028,0.66598,0.67031,0.684773,0.700887,0.634,0.555333333,0.476666667,0.398,0.306239549,0.214479099,0.122718648,0.114593208,0.106467767,0.098342327,0.247459148,0.396575968,0.545692789,0.480715447,0.415738105,0.350760763,0.350760763,0.350760763 +22,LA,10,WASTE DISPOSAL & RECYCLING,NOX,1.2727,2.50197,2.40685,2.50971,2.18531,1.881282,1.890262,1.733913093,1.758246426,1.78257976,1.806913093,1.818524239,1.830135385,1.841746531,1.68495396,1.52816139,1.37136882,1.54736196,1.7233551,1.899348241,1.653757246,1.408166252,1.162575257,1.162575257,1.162575257 +22,LA,10,WASTE DISPOSAL & RECYCLING,NH3,1.07551,1.08516,1.08301,1.09156,1.087044,1.108045,1.137836,0.03469,0.03588,0.03707,0.03826,0.050506229,0.062752457,0.074998686,0.077781925,0.080565165,0.086469904,0.113741527,0.141013149,0.168284772,0.167688688,0.167092604,0.166496519,0.166496519,0.166496519 +22,LA,10,WASTE DISPOSAL & RECYCLING,CO,18.8049,55.30074,51.0507,54.02594,49.57811,37.368963,37.388487,35.08287454,35.17454121,35.26620787,35.35787454,35.69824358,36.03861261,36.37898165,33.45120612,30.52343059,27.59565506,35.7832839,43.97091274,52.15854157,45.55468442,38.95082727,32.34697012,32.34697012,32.34697012 +22,LA,10,WASTE DISPOSAL & RECYCLING,PM10,4.61687,8.84601,8.60553,8.95662,8.481989,7.304115,7.307672,6.392524861,6.525600768,6.658676675,6.791752581,6.780289983,6.768827384,6.757364786,6.005066374,5.252767962,4.50046955,5.276425384,6.052381217,6.828337051,6.409404229,5.990471407,5.571538585,5.571538585,5.571538585 +22,LA,10,WASTE DISPOSAL & RECYCLING,PM25,4.14218,8.47416,8.21254,8.55811,8.087113,6.903325,6.905927,6.071584072,6.148099344,6.224614617,6.30112989,6.310987031,6.320844171,6.330701312,5.448462349,4.566223385,3.683984422,4.268505378,4.853026334,5.43754729,5.271379091,5.105210891,4.939042692,4.939042692,4.939042692 +22,LA,11,HIGHWAY VEHICLES,VOC,132.80312,98.33387,95.55789,94.55903,91.55049,85.23877,80.13521,64.15036051,60.09822113,56.04608175,51.99394238,52.43018321,52.86642405,46.01382705,46.92442282,45.24938199,48.65562534,45.80463313,42.95364092,40.10264871,36.70496701,32.07289029,30.14180764,26.41359683,24.46697458 +22,LA,11,HIGHWAY VEHICLES,CO,1483.15211,1185.61044,1160.69699,1138.84874,1077.3135,1028.77866,980.71855,857.0959581,793.5221309,729.9483038,666.3744766,614.4798538,562.585231,490.1068434,441.3430272,440.0677162,464.4432791,449.2816823,434.1200854,418.9584886,392.6701133,353.4121299,335.5249938,303.0310007,288.2398021 +22,LA,11,HIGHWAY VEHICLES,NH3,2.07002,3.59026,4.04669,3.91799,4.05464,4.05995,4.12499,2.355644433,2.2887417,2.221838966,2.154936233,2.153506157,2.152076082,2.004436108,1.840850367,1.724409578,1.80640506,1.752806394,1.699207728,1.645609063,1.555651867,1.539794984,1.523698089,1.394772292,1.375316335 +22,LA,11,HIGHWAY VEHICLES,NOX,130.92652,139.71531,142.10255,140.81626,137.70611,131.9108,123.39172,170.5058067,157.4967525,144.4876983,131.4786441,124.5891908,117.6997375,108.6464437,121.1605671,110.303741,94.07836669,95.03794914,95.9975316,96.95711406,85.96321578,70.3200061,68.21258941,59.10006022,53.43262012 +22,LA,11,HIGHWAY VEHICLES,PM10,5.70326,4.77298,4.59902,4.30758,4.06346,3.68176,3.43887,5.76591394,5.624739037,5.483564134,5.342389231,5.216985075,5.091580919,4.603967491,5.747973532,5.130925987,5.90659322,5.89760151,5.888609801,5.879618091,5.362009441,4.566757953,4.520506763,4.709094703,4.563433362 +22,LA,11,HIGHWAY VEHICLES,PM25,4.81914,3.8561,3.66196,3.39438,3.15589,2.81197,2.58748,4.744091834,4.596170972,4.448250111,4.30032925,4.093079351,3.885829453,3.422043058,4.425891459,3.812211581,2.98373967,3.091502975,3.199266279,3.307029583,2.836525032,2.31936083,2.287898697,2.08272773,1.918399784 +22,LA,11,HIGHWAY VEHICLES,SO2,7.34375,4.81736,4.97109,5.03351,5.14771,4.43551,4.48073,5.152612713,4.400471669,3.648330625,2.896189581,1.723496862,0.550804143,0.536920255,0.5468851,0.559880707,0.505631728,0.526523567,0.547415407,0.568307247,0.561337274,0.568096903,0.524391491,0.263690577,0.214582767 +22,LA,12,OFF-HIGHWAY,VOC,53.09905,60.18074,58.03021,57.16654,57.02972,56.505,56.05881,65.26628152,65.07049164,64.87470175,64.67891187,62.19784321,59.71677455,56.95851573,55.67833757,53.77782995,51.48551379,46.89882023,42.31212667,37.72543311,33.19310525,25.61994272,24.12844952,23.23663967,22.34482982 +22,LA,12,OFF-HIGHWAY,SO2,34.33546,33.75698,34.88391,36.03617,34.35706,33.78236,33.4486,68.28700772,54.02401369,39.76101965,25.49802562,23.90848828,22.31895095,19.86615031,22.05252207,13.48873575,15.75001498,11.82774531,7.905475637,3.983205963,3.060341503,1.177333038,1.214612582,1.223348068,1.232083555 +22,LA,12,OFF-HIGHWAY,PM25,11.91813,12.48848,12.35395,12.22916,11.93722,11.58831,11.50676,15.09809433,13.25634572,11.41459711,9.572848493,9.505652191,9.43845589,8.375979779,9.216111226,8.079219868,8.360624394,6.767691611,5.174758828,3.581826046,3.249230059,2.649657283,2.584038084,2.485202163,2.386366242 +22,LA,12,OFF-HIGHWAY,PM10,12.97443,13.59496,13.44492,13.30184,12.99519,12.6167,12.52794,15.88170592,13.88517063,11.88863534,9.892100054,9.910710942,9.929321831,8.919465049,9.793493344,8.563105213,8.810774502,7.139565981,5.46835746,3.797148938,3.435847432,2.781803552,2.713244419,2.611211964,2.509179509 +22,LA,12,OFF-HIGHWAY,NOX,232.67362,247.92179,238.7258,229.31918,237.94877,231.74228,232.28847,299.1581645,273.7980945,248.4380245,223.0779544,208.7500454,194.4221363,170.92806,194.8584429,193.5494101,178.1007264,144.1439755,110.1872245,76.2304735,75.59344715,73.6323909,74.31939445,71.61701626,68.91463808 +22,LA,12,OFF-HIGHWAY,CO,348.24736,390.35008,381.06709,380.51436,384.27513,386.25577,394.0253,416.9599498,407.3494166,397.7388833,388.1283501,372.3182928,356.5082354,322.2328388,294.9996071,282.014015,275.4189724,258.5686409,241.7183095,224.8679781,203.8612695,163.2700989,161.8478523,161.5330156,161.2181788 +22,LA,12,OFF-HIGHWAY,NH3,1.15663,1.22555,1.22402,1.24178,0.04924,0.04924,0.04924,0.071402382,0.071826021,0.07224966,0.072673299,0.084489375,0.096305451,0.099044628,0.09724276,0.097707469,0.130573779,0.105797434,0.081021088,0.056244742,0.054226034,0.025649722,0.050188618,0.046339453,0.042490288 +22,LA,14,MISCELLANEOUS,NOX,3.27201,2.60113,2.34168,3.01748,3.03257,5.064875,2.555611,4.14847,8.847438099,13.5464062,18.2453743,13.44628245,8.647190611,3.848098768,3.848560396,3.849022023,3.849483651,2.78911101,1.728738369,0.668365728,0.713489769,0.758613811,0.803737853,0.803737853,0.803737853 +22,LA,14,MISCELLANEOUS,NH3,32.03279,36.40615,39.75044,43.26725,44.11304,44.81682,32.55753485,38.35054177,46.78283467,55.21512756,63.64742046,55.61389767,47.58037487,39.54685207,39.95203146,40.35721084,40.76239023,38.46561261,36.168835,33.87205738,32.86712107,31.86218476,30.85724845,30.85724845,30.85724845 +22,LA,14,MISCELLANEOUS,PM25,94.37849,74.71621,73.39443,78.12627,76.14452,85.037972,72.1100036,28.65441124,71.40954535,114.1646795,156.9198136,113.3187164,69.71761917,26.11652196,29.82864778,33.54077359,37.25289941,34.86451549,32.47613157,30.08774766,28.25501637,26.42228508,24.58955379,24.58955379,24.58955379 +22,LA,14,MISCELLANEOUS,SO2,0.10186,0.07237,0.0572,0.08141,0.66719,1.22173,0.53076,1.27413,4.300694843,7.327259686,10.35382453,7.116476403,3.879128278,0.641780152,0.641851243,0.641922334,0.641993425,0.530661039,0.419328653,0.307996266,0.343826422,0.379656578,0.415486734,0.415486734,0.415486734 +22,LA,14,MISCELLANEOUS,VOC,9.20109,12.32492,9.594,12.6364,9.25375,13.755228,8.297276,16.68196,137.8977934,259.1136269,380.3294603,255.9381046,131.5467488,7.155393021,7.155394636,7.155396252,7.155397868,5.225390483,3.295383099,1.365375715,1.960315275,2.555254835,3.150194396,3.150194396,3.150194396 +22,LA,14,MISCELLANEOUS,PM10,365.54204,254.09811,238.60428,252.63232,251.37181,263.856127,252.8452017,178.84267,229.293717,279.7447641,330.1958111,279.5479258,228.9000405,178.2521553,185.7532921,193.2544289,200.7555657,202.8316546,204.9077436,206.9838325,187.6815688,168.3793051,149.0770414,149.0770414,149.0770414 +22,LA,14,MISCELLANEOUS,CO,107.34822,107.36114,110.90596,136.47835,141.49674,236.234342,119.271932,111.63645,627.9533631,1144.270276,1660.587189,1130.591983,600.5967768,70.60157053,70.6015727,70.60157487,70.60157704,52.02928821,33.45699937,14.88471053,15.41608486,15.94745919,16.47883352,16.47883352,16.47883352 +22,LA,15,WILDFIRES,NOX,,,,,,,,0.013717288,0.013717288,0.013717288,0.059402353,0.059402353,0.059402353,0.682015772,0.682015772,0.682015772,1.641498195,1.641498195,1.641498195,1.999150568,1.999150568,1.999150568,0.4823877,0.4823877,0.4823877 +22,LA,15,WILDFIRES,NH3,,,,,,,,0.028040029,0.028040029,0.028040029,0.037907513,0.037907513,0.037907513,2.291004264,2.291004264,2.291004264,4.379215918,4.379215918,4.379215918,5.400766804,5.400766804,5.400766804,0.398134934,0.398134934,0.398134934 +22,LA,15,WILDFIRES,PM10,,,,,,,,0.173250179,0.173250179,0.173250179,0.25686048,0.25686048,0.25686048,13.2400165,13.2400165,13.2400165,25.57332291,25.57332291,25.57332291,31.51906657,31.51906657,31.51906657,2.586628062,2.586628062,2.586628062 +22,LA,15,WILDFIRES,PM25,,,,,,,,0.147080152,0.147080152,0.147080152,0.217678372,0.217678372,0.217678372,11.22034451,11.22034451,11.22034451,21.6723001,21.6723001,21.6723001,26.71105493,26.71105493,26.71105493,2.192057038,2.192057038,2.192057038 +22,LA,15,WILDFIRES,SO2,,,,,,,,0.009692278,0.009692278,0.009692278,0.02577253,0.02577253,0.02577253,0.680054276,0.680054276,0.680054276,1.40185962,1.40185962,1.40185962,1.721250382,1.721250382,1.721250382,0.227982861,0.227982861,0.227982861 +22,LA,15,WILDFIRES,VOC,,,,,,,,0.431080273,0.431080273,0.431080273,0.544920507,0.544920507,0.544920507,32.93319232,32.93319232,32.93319232,62.95123058,62.95123058,62.95123058,77.63604197,77.63604197,77.63604197,5.723194885,5.723194885,5.723194885 +22,LA,15,WILDFIRES,CO,,,,,,,,1.901741814,1.901741814,1.901741814,2.276115371,2.276115371,2.276115371,141.0587902,141.0587902,141.0587902,269.2254905,269.2254905,269.2254905,332.0593225,332.0593225,332.0593225,24.07581189,24.07581189,24.07581189 +22,LA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,52.9754909,68.15748477,83.33947863,98.5214725,89.2729359,80.02439929,70.77586268,68.55922914,66.34259559,64.12596204,64.12596204,64.12596204 +22,LA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,162.0856439,186.1250714,210.1644989,234.2039265,212.0449866,189.8860467,167.7271068,161.9555687,156.1840306,150.4124925,150.4124925,150.4124925 +22,LA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,44.8944596,57.76056322,70.62666684,83.49277046,75.65503003,67.8172896,59.97954917,58.10104788,56.22254659,54.34404529,54.34404529,54.34404529 +22,LA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,690.042433,792.1790294,894.3156259,996.4522223,902.0622813,807.6723403,713.2823993,688.4030528,663.5237064,638.6443599,638.6443599,638.6443599 +22,LA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,6.8487612,8.035489162,9.222217125,10.40894509,9.517028616,8.625112144,7.733195673,7.745668975,7.758142277,7.770615578,7.770615578,7.770615578 +22,LA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,8.81120872,11.30495443,13.79870015,16.29244586,14.75095448,13.2094631,11.66797172,11.26647521,10.86497871,10.4634822,10.4634822,10.4634822 +22,LA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,3.84370864,4.733688078,5.623667517,6.513646955,5.925403644,5.337160332,4.748917021,4.669568867,4.590220713,4.510872559,4.510872559,4.510872559 +23,ME,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01868,0.04133,0.04761,0.078311,0.054867,0.03426,0.143250358,0.117140355,0.091030352,0.064920349,0.094502167,0.124083984,0.153665802,0.146485068,0.139304334,0.132123197,0.12160138,0.111079563,0.100557745,0.10690402,0.113250295,0.11959657,0.11959657,0.11959657 +23,ME,1,FUEL COMB. ELEC. UTIL.,NOX,4.56567,1.18822,2.47457,2.91978,7.00208,5.491156,4.476107,3.745150286,1.940082,1.221823,2.049944648,0.536077,0.759966,2.810024206,2.482020416,2.154016626,1.82570842,1.663287321,1.500866223,1.338445124,1.198736903,1.059028681,0.91932046,0.327123,0.138178 +23,ME,1,FUEL COMB. ELEC. UTIL.,PM10,0.16774,0.0718,0.16432,0.02548,0.228371,0.194514,0.140276,0.192115108,0.199625065,0.207135022,0.214644979,0.212751595,0.210858211,0.208964828,0.208864007,0.208763186,0.232077463,0.212793431,0.193509398,0.174225366,0.161136685,0.148048004,0.134959323,0.134959323,0.134959323 +23,ME,1,FUEL COMB. ELEC. UTIL.,PM25,0.09673,0.06329,0.14494,0.02299,0.217316,0.182231,0.129018,0.144432104,0.153451379,0.162470653,0.171489927,0.171299224,0.17110852,0.170917817,0.179363206,0.187808596,0.219669083,0.203257441,0.1868458,0.170434158,0.158062601,0.145691044,0.133319486,0.133319486,0.133319486 +23,ME,1,FUEL COMB. ELEC. UTIL.,VOC,0.16523,0.03434,0.07511,0.08645,0.48361,0.518663,0.494656,0.113268438,0.10803732,0.102806202,0.097575084,0.149158078,0.200741072,0.252324065,0.207150735,0.161977404,0.123064329,0.116465189,0.109866048,0.103266908,0.103113116,0.102959324,0.102805532,0.102805532,0.102805532 +23,ME,1,FUEL COMB. ELEC. UTIL.,CO,0.55603,0.1191,0.26078,0.30012,3.91105,3.858465,3.834998,4.613575569,3.600993407,2.588411245,1.575829083,2.546224797,3.51662051,4.487016224,4.192490037,3.897963849,3.759789962,3.895000035,4.030210109,4.165420182,4.144685121,4.123950061,4.103215,4.103215,4.103215 +23,ME,1,FUEL COMB. ELEC. UTIL.,SO2,11.50667,5.65193,13.04976,14.30069,17.49552,10.945098,7.164811,2.713832299,4.795216,3.244868,3.975946026,0.323407,1.670985,1.196061225,0.981500241,0.766939256,0.552374864,0.677544345,0.802713826,0.927883307,0.797287455,0.666691602,0.53609575,0.643176,0.04971 +23,ME,2,FUEL COMB. INDUSTRIAL,VOC,1.74595,1.7036,1.61945,1.67662,1.28013,1.276523,1.359101,1.366531417,1.067967521,0.769403624,0.470839727,0.456379841,0.441919954,0.427460068,0.376271841,0.325083614,0.271057808,0.308900032,0.346742255,0.384584478,0.509678386,0.634772293,0.7598662,0.7598662,0.7598662 +23,ME,2,FUEL COMB. INDUSTRIAL,PM10,4.15341,3.42466,3.23746,3.31237,6.999413,7.169666,7.709552,2.308449792,2.233976404,2.159503017,2.085029629,1.969922247,1.854814866,1.739707485,1.991818348,2.24392921,1.472807777,1.376047853,1.279287928,1.182528003,3.704688663,6.226849323,8.749009984,8.749009984,8.749009984 +23,ME,2,FUEL COMB. INDUSTRIAL,CO,11.13699,6.52468,6.20217,6.39414,5.49845,5.525595,5.914008,8.210979692,8.025679086,7.840378479,7.655077873,7.307510759,6.959943645,6.612376532,6.805205037,6.998033542,5.721639708,6.388717694,7.055795679,7.722873665,10.2379705,12.75306734,15.26816418,15.26816418,15.26816418 +23,ME,2,FUEL COMB. INDUSTRIAL,NOX,22.0131,9.44362,8.88711,9.00479,10.2771,10.806736,11.20183,10.12572768,9.835176426,9.544625168,9.254073911,8.816511246,8.378948582,7.941385918,9.592245937,11.24310596,6.753098948,7.152522625,7.551946303,7.95136998,9.673520391,11.3956708,13.11782121,13.11782121,13.11782121 +23,ME,2,FUEL COMB. INDUSTRIAL,PM25,2.87045,2.40112,2.26987,2.32074,5.739236,5.817711,6.303087,1.395149521,1.387231,1.379312479,1.371393958,1.287149704,1.202905451,1.118661197,1.420533313,1.722405428,0.998900735,0.998467338,0.99803394,0.997600543,3.177791848,5.357983152,7.538174457,7.538174457,7.538174457 +23,ME,2,FUEL COMB. INDUSTRIAL,SO2,47.09984,19.51229,18.13265,18.11053,23.92908,26.110123,26.831493,16.65204832,16.41763461,16.1832209,15.94880719,14.20205614,12.45530508,10.70855403,8.654355486,6.600156943,4.521286841,4.361530025,4.20177321,4.042016394,3.644107469,3.246198544,2.848289618,2.848289618,2.848289618 +23,ME,2,FUEL COMB. INDUSTRIAL,NH3,0.12367,0.13314,0.12516,0.12485,0.109866,0.117135,0.122166,0.590668706,0.470069342,0.349469978,0.228870614,0.201648861,0.174427108,0.147205354,0.156658341,0.166111328,0.183410252,0.185507306,0.18760436,0.189701415,0.205136891,0.220572367,0.236007844,0.236007844,0.236007844 +23,ME,3,FUEL COMB. OTHER,VOC,17.07023,11.39254,11.39831,11.38948,8.472343,12.141804,12.145645,60.03707427,46.7577902,33.47850612,20.19922205,15.3004792,10.40173635,5.502993494,6.070691205,6.638388917,7.206108407,6.861287756,6.516467106,6.171646455,6.808345354,7.445044253,8.081743151,8.081743151,8.081743151 +23,ME,3,FUEL COMB. OTHER,SO2,22.79677,14.85159,14.9277,12.64278,18.032289,18.325245,18.610312,11.15090687,10.9643514,10.77779593,10.59124045,10.04361583,9.495991202,8.948366577,8.680033112,8.411699646,8.148778161,7.046635905,5.944493649,4.842351393,3.650328835,2.458306276,1.266283718,1.266283718,1.266283718 +23,ME,3,FUEL COMB. OTHER,PM25,84.03086,5.33134,5.3284,5.29047,6.173293,6.56644,6.587844,13.22379567,13.25934446,13.29489325,13.33044205,10.58931494,7.848187843,5.107060741,5.731361065,6.35566139,6.980119477,6.757229751,6.534340025,6.3114503,6.872486318,7.433522337,7.994558356,7.994558356,7.994558356 +23,ME,3,FUEL COMB. OTHER,PM10,84.39429,5.54259,5.54097,5.47125,6.344999,6.741365,6.766189,13.38988287,13.42565406,13.46142525,13.49719645,10.73924982,7.981303183,5.22335655,5.8654475,6.50753845,7.149878106,6.913558265,6.677238423,6.440918582,6.976682002,7.512445422,8.048208842,8.048208842,8.048208842 +23,ME,3,FUEL COMB. OTHER,NOX,16.24533,6.88817,6.90224,6.10041,11.893379,9.434625,9.579784,7.550090641,7.538803886,7.527517132,7.516230377,6.889760057,6.263289737,5.636819417,5.293000466,4.949181515,4.607540424,4.555522437,4.50350445,4.451486463,4.64501899,4.838551518,5.032084045,5.032084045,5.032084045 +23,ME,3,FUEL COMB. OTHER,NH3,0.16482,0.17904,0.17725,0.15195,0.15365,0.155122,0.156772,0.768726798,0.772032877,0.775338955,0.778645033,0.70302762,0.627410206,0.551792792,0.527877541,0.503962289,0.480134152,0.473972542,0.467810931,0.461649321,0.488766791,0.515884262,0.543001732,0.543001732,0.543001732 +23,ME,3,FUEL COMB. OTHER,CO,167.95284,38.77406,38.78675,38.63063,24.132264,42.922793,42.978817,101.6764883,101.6522692,101.62805,101.6038309,78.733989,55.86414712,32.99430525,36.49148597,39.9886667,43.48639189,42.47313212,41.45987234,40.44661257,46.06643745,51.68626232,57.3060872,57.3060872,57.3060872 +23,ME,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,,,,0.103915,0.109423,0.114827,,0,0,,0,0,,2.67E-05,5.33E-05,0.00008,0.000103333,0.000126667,0.00015,0.000153333,0.000156667,0.00016,0.00016,0.00016 +23,ME,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,,0.02567,0.02619,0.02759,0.02161,0.022711,0.023864,0.32687,0.327086667,0.327303333,0.32752,0.219848747,0.112177494,0.004506241,0.006211894,0.007917547,0.0096232,0.0102798,0.0109364,0.011593,0.009239333,0.006885667,0.004532,0.004532,0.004532 +23,ME,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0.00005,0.0001,0.00015,0.0001125,0.000075,0.0000375,0.000025,0.0000125,0,0,0,,0,0,0,0,0 +23,ME,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,,,,0.103915,0.109423,0.114827,,0,0,,0,0,,1.40E-05,2.81E-05,4.21E-05,4.57E-05,4.93E-05,5.29E-05,6.34E-05,7.38E-05,8.42E-05,8.42E-05,8.42E-05 +23,ME,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,5,METALS PROCESSING,SO2,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,5,METALS PROCESSING,VOC,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,5,METALS PROCESSING,NOX,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,5,METALS PROCESSING,PM10,,,,,,,,0.000159576,0.000106384,5.32E-05,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,5,METALS PROCESSING,PM25,,,,,,,,0.000156512,0.000104341,5.22E-05,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,5,METALS PROCESSING,CO,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +23,ME,6,PETROLEUM & RELATED INDUSTRIES,CO,0.01994,,,,0.01982,0.020184,0.020791,0.191290257,0.223689778,0.256089299,0.288488819,0.241131838,0.193774856,0.146417875,0.149185086,0.151952296,0.154719507,0.158159728,0.161599949,0.16504017,0.176892113,0.188744057,0.200596,0.200596,0.200596 +23,ME,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.01887,,,,0.02263,0.022975,0.023551,0.196655651,0.185942156,0.175228662,0.164515168,0.125156275,0.085797383,0.046438491,0.048035938,0.049633385,0.051230832,0.042946511,0.034662191,0.02637787,0.026288447,0.026199023,0.0261096,0.0261096,0.0261096 +23,ME,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.68051,,,,0.434974,0.444192,0.453719,0.043511918,0.045174549,0.046837179,0.04849981,0.038330128,0.028160446,0.017990764,0.01649144,0.014992116,0.013492792,0.013442248,0.013391704,0.013341161,0.01134579,0.00935042,0.00735505,0.00735505,0.00735505 +23,ME,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.20935,,,,0.107994,0.110058,0.112267,0.023831244,0.027516198,0.031201152,0.034886106,0.028746207,0.022606308,0.016466409,0.014342121,0.012217833,0.010093545,0.009813754,0.009533963,0.009254171,0.007804227,0.006354284,0.00490434,0.00490434,0.00490434 +23,ME,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.0118,0.00011,0.00011,0.00012,0.01284,0.013111,0.013564,0.055766761,0.050093006,0.044419252,0.038745498,0.04033062,0.041915743,0.043500865,0.043878656,0.044256448,0.044634239,0.053443262,0.062252285,0.071061308,0.06393239,0.056803471,0.049674553,0.049674553,0.049674553 +23,ME,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.04063,,,,0.04472,0.045418,0.046585,0.197417348,0.203943126,0.210468904,0.216994682,0.163844436,0.110694189,0.057543943,0.067594516,0.077645089,0.087695662,0.064811828,0.041927995,0.019044161,0.017334207,0.015624254,0.0139143,0.0139143,0.0139143 +23,ME,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,0,0.00000012,0.00000024,0.00000036,0.00000024,0.00000012,0,0,0,0,0,0 +23,ME,7,OTHER INDUSTRIAL PROCESSES,VOC,14.6704,1.8493,1.90648,1.98748,2.00898,2.09373,1.429699727,2.274983468,2.579389433,2.883795398,3.188201363,3.022885009,2.857568656,2.692252303,2.555930925,2.419609548,2.283459453,2.195719004,2.107978555,2.020238105,1.866161173,1.71208424,1.558007307,1.558007307,1.558007307 +23,ME,7,OTHER INDUSTRIAL PROCESSES,SO2,9.35711,1.13462,1.17222,1.20839,2.04439,2.126331,2.197296,1.946555937,1.73618838,1.525820824,1.315453267,1.085842006,0.856230746,0.626619485,0.658748184,0.690876882,0.746846277,0.642120718,0.537395158,0.432669599,0.471214529,0.50975946,0.54830439,0.54830439,0.54830439 +23,ME,7,OTHER INDUSTRIAL PROCESSES,PM25,4.09008,1.39238,1.44434,1.61524,3.498483,3.657875,4.184241989,3.546760729,3.330212102,3.113663475,2.897114848,2.665997327,2.434879806,2.203762284,2.121788295,2.039814306,1.958514968,1.830639641,1.702764314,1.574888988,1.527938824,1.48098866,1.434038496,1.434038496,1.434038496 +23,ME,7,OTHER INDUSTRIAL PROCESSES,PM10,6.44872,3.77947,3.93854,4.66356,6.512198,6.882966,7.478950496,6.498783836,6.345285822,6.191787809,6.038289795,5.693398603,5.348507411,5.003616219,4.472625257,3.941634295,3.411947885,3.170249376,2.928550867,2.686852359,2.612156197,2.537460036,2.462763874,2.462763874,2.462763874 +23,ME,7,OTHER INDUSTRIAL PROCESSES,NOX,12.50216,3.36045,3.47581,3.57164,4.6867,4.898925,5.114819,4.761874033,4.882194112,5.002514191,5.12283427,4.746320052,4.369805834,3.993291616,3.867592859,3.741894102,3.642863229,3.625281404,3.607699579,3.590117754,3.228957367,2.86779698,2.506636594,2.506636594,2.506636594 +23,ME,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00848,0.00873,0.00915,0.023882,0.024765,0.025408,0.450011498,0.512051444,0.574091389,0.636131335,0.583205827,0.530280318,0.47735481,0.409589723,0.341824636,0.274723549,0.267519999,0.26031645,0.2531129,0.24248183,0.23185076,0.22121969,0.22121969,0.22121969 +23,ME,7,OTHER INDUSTRIAL PROCESSES,CO,15.94868,2.60526,2.69127,2.78429,3.5294,3.68541,4.009892817,3.721505861,3.6873898,3.653273739,3.619157678,3.302792695,2.986427713,2.670062731,2.850349306,3.03063588,3.215153655,3.331888698,3.448623741,3.565358784,3.344082882,3.122806979,2.901531077,2.901531077,2.901531077 +23,ME,8,SOLVENT UTILIZATION,NH3,,,,,,,,0.000745,0.001204693,0.001664387,0.00212408,0.001549553,0.000975027,0.0004005,0.000337,0.0002735,0.00021,0.00021,0.00021,,0,0,0,0,0 +23,ME,8,SOLVENT UTILIZATION,NOX,,0.01372,0.01399,0.01493,0.02186,0.022625,0.02315,0,0.002299375,0.00459875,0.006898125,0.00459875,0.002299375,0,0,0,0,0,0,,0,0,0,0,0 +23,ME,8,SOLVENT UTILIZATION,PM10,,,,,,,,1.27E-06,0.000975494,0.001949719,0.002923943,0.002059929,0.001195915,0.000331901,0.000554875,0.000777848,0.001000822,0.000695178,0.000389534,8.39E-05,0.000102227,0.000120564,0.0001389,0.0001389,0.0001389 +23,ME,8,SOLVENT UTILIZATION,PM25,,,,,,,,1.27E-06,0.000566818,0.001132367,0.001697916,0.001242478,0.000787039,0.000331601,0.000523862,0.000716122,0.000908383,0.000629888,0.000351392,7.29E-05,9.47E-05,0.000116447,0.000138222,0.000138222,0.000138222 +23,ME,8,SOLVENT UTILIZATION,VOC,26.37295,25.46676,26.02343,22.28441,37.911726,32.215477,34.031491,17.99031726,17.85076006,17.71120286,17.57164566,16.15906456,14.74648346,13.33390236,12.06918501,10.80446767,9.539750329,10.47904329,11.41833626,12.35762922,11.47341574,10.58920226,9.704988774,9.704988774,9.704988774 +23,ME,8,SOLVENT UTILIZATION,CO,,,,,0.00013,0.000128,0.000125,0.00012,0.00045824,0.000796479,0.001134719,0.000756479,0.00037824,0,0,0,0,0,0,,0,0,0,0,0 +23,ME,8,SOLVENT UTILIZATION,SO2,,0.00049,0.0005,0.00053,0.00102,0.001056,0.00108,,0.002310412,0.004620824,0.006931236,0.004620824,0.002310412,,0,0,0,0,0,,0,0,0,0,0 +23,ME,9,STORAGE & TRANSPORT,VOC,9.39154,8.39082,8.41563,8.43155,7.358503,7.257391,7.334759,6.885870637,6.874102095,6.862333553,6.850565011,5.638168171,4.425771331,3.213374491,3.432438612,3.651502733,3.514731363,2.800565332,2.0863993,1.372233269,1.601736895,1.831240522,2.060744148,2.060744148,2.060744148 +23,ME,9,STORAGE & TRANSPORT,PM10,0.24438,0.58078,0.60446,0.6046,0.564916,0.59866,0.643783,0.015655864,0.017058481,0.018461098,0.019863715,0.017996906,0.016130097,0.014263289,0.012672832,0.011082375,0.009491918,0.009747395,0.010002873,0.01025835,0.008111233,0.005964117,0.003817,0.003817,0.003817 +23,ME,9,STORAGE & TRANSPORT,NOX,,,,,0.00539,0.005562,0.005773,0.065231342,0.052662961,0.040094581,0.0275262,0.03252617,0.03752614,0.04252611,0.036717407,0.030908703,0.0251,0.027566667,0.030033333,0.0325,0.02604,0.01958,0.01312,0.01312,0.01312 +23,ME,9,STORAGE & TRANSPORT,SO2,,,,,,,,0.00620815,0.004156767,0.002105383,0.000054,0.00005539,0.00005678,0.00005817,0.00008878,0.00011939,0.00015,0.000168333,0.000186667,0.000205,0.000163667,0.000122333,0.000081,0.000081,0.000081 +23,ME,9,STORAGE & TRANSPORT,PM25,0.07467,0.20392,0.21223,0.21228,0.225744,0.239234,0.257272,0.006126326,0.006901927,0.007677528,0.00845313,0.010087938,0.011722746,0.013357554,0.010070273,0.006782993,0.003495713,0.003697769,0.003899826,0.004101882,0.003836495,0.003571109,0.003305722,0.003305722,0.003305722 +23,ME,9,STORAGE & TRANSPORT,NH3,,,,,0,0,,,0,0,,0.000323333,0.000646667,0.00097,0.000646667,0.000323333,0,0,0,,0,0,0,0,0 +23,ME,9,STORAGE & TRANSPORT,CO,,,,,0.01223,0.012621,0.013098,0.0522356,0.042214166,0.032192733,0.0221713,0.024759053,0.027346807,0.02993456,0.02152304,0.01311152,0.0047,0.0051,0.0055,0.0059,0.00441,0.00292,0.00143,0.00143,0.00143 +23,ME,10,WASTE DISPOSAL & RECYCLING,SO2,0.14428,0.16984,0.17649,0.18066,0.20579,0.208621,0.210596,0.216603443,0.246966175,0.277328906,0.307691637,0.386420635,0.465149633,0.54387863,0.491890128,0.439901625,0.387913123,0.4677648,0.547616478,0.627468155,0.521698836,0.415929516,0.310160196,0.310160196,0.310160196 +23,ME,10,WASTE DISPOSAL & RECYCLING,NH3,0.41503,0.44694,0.44706,0.4576,0.463657,0.473865,0.484069,0.60053013,0.600426797,0.600323464,0.60022013,0.542664019,0.485107908,0.427551797,0.338476447,0.249401097,0.160325746,0.162085769,0.163845793,0.165605816,0.116662581,0.067719347,0.018776112,0.018776112,0.018776112 +23,ME,10,WASTE DISPOSAL & RECYCLING,NOX,0.45576,1.28584,1.32878,1.29662,0.564154,1.329376,1.340965,1.005205737,1.514929672,2.024653607,2.534377542,2.395780809,2.257184076,2.118587343,1.834540377,1.550493411,1.266446445,1.364163958,1.46188147,1.559598983,1.607490355,1.655381727,1.703273099,1.703273099,1.703273099 +23,ME,10,WASTE DISPOSAL & RECYCLING,PM10,2.08834,3.90311,4.07532,3.93327,3.922175,4.040216,4.041432,0.328530513,0.332907782,0.337285051,0.34166232,1.64023329,2.93880426,4.237375231,3.371096543,2.504817855,1.638539167,1.87255581,2.106572454,2.340589097,2.524584779,2.708580461,2.892576144,2.892576144,2.892576144 +23,ME,10,WASTE DISPOSAL & RECYCLING,PM25,1.83516,3.62105,3.77987,3.63081,3.704421,3.819492,3.820533,0.281293237,0.288649297,0.296005358,0.303361418,1.417687177,2.532012936,3.646338696,2.927300554,2.208262412,1.48922427,1.658019085,1.826813901,1.995608717,2.206162196,2.416715675,2.627269154,2.627269154,2.627269154 +23,ME,10,WASTE DISPOSAL & RECYCLING,CO,1.57119,20.2073,20.96346,19.30538,1.499572,20.761998,20.764771,1.093247603,1.206680574,1.320113546,1.433546517,8.332223668,15.23090082,22.12957797,16.14784742,10.16611687,4.184386315,7.512981627,10.84157694,14.17017225,14.72533728,15.2805023,15.83566733,15.83566733,15.83566733 +23,ME,10,WASTE DISPOSAL & RECYCLING,VOC,10.05843,12.50487,12.63039,12.75649,0.840409,3.625576,3.640503,4.052576113,4.052295756,4.052015398,4.051735041,4.53981753,5.027900019,5.515982508,3.914047583,2.312112657,0.710177732,0.943463658,1.176749584,1.41003551,1.366224915,1.322414321,1.278603727,1.278603727,1.278603727 +23,ME,11,HIGHWAY VEHICLES,CO,691.96823,454.0267,441.87671,431.64757,404.47975,423.81966,418.64849,301.3603271,292.054955,282.749583,273.4442109,245.5574012,217.6705916,181.430254,147.4790274,133.2125328,117.8211988,115.6956391,113.5700794,111.4445196,105.3382942,85.00745757,85.07041176,79.41276277,75.16491466 +23,ME,11,HIGHWAY VEHICLES,NOX,62.62388,52.33963,49.15699,44.62455,39.66928,50.0846,47.85259,58.65761333,55.00126759,51.34492185,47.68857612,44.58245061,41.47632511,36.66598473,27.83249981,24.51400358,28.20672084,26.50253953,24.79835821,23.0941769,20.96460345,16.29097749,15.64593885,15.15070815,13.80344262 +23,ME,11,HIGHWAY VEHICLES,PM10,2.69985,1.77675,1.57012,1.32609,1.10121,1.39278,1.30818,2.338654334,2.275303573,2.211952811,2.14860205,2.08525249,2.021902929,1.743827444,1.344028008,1.149921203,1.649306828,1.595346325,1.541385822,1.487425319,1.417159187,1.139806079,1.156608633,1.231016313,1.191368103 +23,ME,11,HIGHWAY VEHICLES,PM25,2.29795,1.45046,1.2532,1.03175,0.82377,1.07852,0.99922,1.98623141,1.924530738,1.862830067,1.801129395,1.720596146,1.640062897,1.386578052,1.035055055,0.850910136,1.036243238,0.97167056,0.907097882,0.842525204,0.766828158,0.572407543,0.576161401,0.577814779,0.537001295 +23,ME,11,HIGHWAY VEHICLES,VOC,52.7984,32.14701,30.43959,29.31206,27.54087,26.95339,25.77597,21.81825497,20.99819995,20.17814493,19.3580899,18.96270374,18.56731757,15.95100227,14.27428572,12.45343656,13.91651693,12.97649287,12.03646881,11.09644475,10.33829924,7.857288278,7.892692375,7.442758158,6.893733296 +23,ME,11,HIGHWAY VEHICLES,SO2,3.43177,1.69876,1.65142,1.57589,1.51579,1.64402,1.67363,1.255683618,1.164368592,1.073053567,0.981738541,0.581712296,0.18168605,0.171781403,0.155423696,0.156992381,0.129032504,0.136531543,0.144030583,0.151529622,0.158220133,0.158653093,0.148412613,0.067279067,0.051911984 +23,ME,11,HIGHWAY VEHICLES,NH3,0.88953,1.19645,1.35179,1.3284,1.3822,1.3973,1.43237,0.809488291,0.779112272,0.748736253,0.718360234,0.706756454,0.695152675,0.628262966,0.612640693,0.563386197,0.585826841,0.553416009,0.521005176,0.488594344,0.46679024,0.442077112,0.43358452,0.411198625,0.405307407 +23,ME,12,OFF-HIGHWAY,PM10,1.47851,1.46394,1.4476,1.44287,1.6683,1.38373,1.36123,1.77719584,1.694927968,1.612660096,1.530392224,1.528340299,1.526288374,1.390619213,1.483415619,1.396806182,1.391743188,1.29531263,1.198882071,1.102451513,1.01885855,0.89827417,0.851672624,0.815158757,0.778644889 +23,ME,12,OFF-HIGHWAY,VOC,25.03094,27.03215,26.39711,26.23843,26.33792,26.1219,26.13839,30.39058822,30.73396454,31.07734086,31.42071719,30.95098205,30.48124691,29.33429937,28.47632073,27.72265422,26.45967084,25.11410171,23.76853258,22.42296345,20.54556092,18.07169933,16.79075587,15.98038016,15.17000444 +23,ME,12,OFF-HIGHWAY,PM25,1.35397,1.34121,1.32636,1.32273,1.52848,1.26643,1.24675,1.648541631,1.572012344,1.495483056,1.418953768,1.415713171,1.412472574,1.263171678,1.344170299,1.263575699,1.30019108,1.209233754,1.118276428,1.027319102,0.950108443,0.840510102,0.795687126,0.761046772,0.726406418 +23,ME,12,OFF-HIGHWAY,NOX,8.91749,9.19221,9.16296,9.15111,15.08704,8.77536,8.82427,13.54388256,12.35791773,11.1719529,9.985988073,10.53426889,11.08254971,12.34564792,11.17148035,10.96602414,13.3939476,12.35857935,11.32321109,10.28784284,10.50004233,10.99492711,10.9244413,10.56298988,10.20153847 +23,ME,12,OFF-HIGHWAY,NH3,0.08992,0.10636,0.10668,0.10974,0.01697,0.01697,0.01697,0.012110783,0.012359426,0.012608069,0.012856713,0.012766305,0.012675897,0.015177476,0.013174141,0.013381753,0.016796703,0.016440157,0.016083611,0.015727066,0.01594027,0.014642176,0.01636668,0.016223082,0.016079485 +23,ME,12,OFF-HIGHWAY,CO,130.93055,144.76057,142.04011,142.45691,144.1065,144.4065,146.89991,143.5166312,144.5110105,145.5053898,146.4997691,143.4299774,140.3601856,127.7628665,114.5071811,109.2547844,107.2440762,103.792411,100.3407459,96.88908071,95.89814841,95.00969145,93.91628382,93.18285508,92.44942634 +23,ME,12,OFF-HIGHWAY,SO2,0.84577,0.99138,1.00218,1.03273,1.91505,1.00569,1.03471,3.357015549,2.781654736,2.206293924,1.630933112,1.522275814,1.413618516,1.108362635,1.225193669,0.627210534,0.952390781,0.700477704,0.448564627,0.19665155,0.161033151,0.08763816,0.089796353,0.089803654,0.089810956 +23,ME,14,MISCELLANEOUS,CO,,4.78474,7.79959,9.96996,6.710277,26.985065,23.303223,1.41754,2.503397398,3.589254795,4.675112193,3.127066519,1.579020844,0.03097517,0.037844094,0.044713019,0.051581944,0.057418953,0.063255961,0.069092969,0.046521127,0.023949285,0.001377443,0.001377443,0.001377443 +23,ME,14,MISCELLANEOUS,VOC,0.21437,0.30991,0.47978,1.22471,0.814361,1.675896,1.504491,0.56974,0.828174961,1.086609923,1.345044884,0.947278717,0.54951255,0.151746383,0.103555911,0.055365438,0.007174966,0.039916226,0.072657486,0.105398746,0.126939456,0.148480166,0.170020875,0.170020875,0.170020875 +23,ME,14,MISCELLANEOUS,SO2,0.00112,0.00261,0.00443,0.00941,0.2234,0.14364,0.12185,,,,0.033661098,0.022629105,0.011597113,0.00056512,0.000990633,0.001416146,0.001841658,0.001809011,0.001776363,0.001743716,0.001501125,0.001258534,0.001015943,0.001015943,0.001015943 +23,ME,14,MISCELLANEOUS,PM25,10.67465,8.78788,9.80316,9.66307,11.959,10.761404,9.3861173,3.571497833,3.672684579,3.773871324,3.87505807,4.251244086,4.627430102,5.003616118,5.018389484,5.03316285,5.047936216,4.477527067,3.907117919,3.33670877,3.754730203,4.172751636,4.590773068,4.590773068,4.590773068 +23,ME,14,MISCELLANEOUS,PM10,53.25519,42.35612,46.63436,44.60593,48.33875,46.747757,48.3680764,44.04933,44.16873036,44.28813072,44.40753108,40.51548909,36.62344711,32.73140512,32.67281233,32.61421954,32.55562676,28.4260513,24.29647584,20.16690038,25.48063616,30.79437193,36.10810771,36.10810771,36.10810771 +23,ME,14,MISCELLANEOUS,NH3,4.94291,5.29606,5.34004,5.48101,6.08156,6.11285,6.66096642,6.167131426,6.18514754,6.203163653,6.221179766,6.078848279,5.936516791,5.794185303,5.922682831,6.051180359,6.179677887,5.013466497,3.847255107,2.681043717,3.179666956,3.678290195,4.176913434,4.176913434,4.176913434 +23,ME,14,MISCELLANEOUS,NOX,,0.08735,0.14414,0.26019,0.169817,0.599501,0.520985,0.05507,0.079893859,0.104717717,0.129541576,0.08823374,0.046925904,0.005618068,0.007897523,0.010176979,0.012456434,0.012845216,0.013233997,0.013622778,0.009636569,0.00565036,0.001664151,0.001664151,0.001664151 +23,ME,15,WILDFIRES,SO2,,,,,,,,0.000411554,0.000411554,0.000411554,,0,0,0.005201105,0.005201105,0.005201105,0.001751972,0.001751972,0.001751972,0.004153105,0.004153105,0.004153105,0.029694287,0.029694287,0.029694287 +23,ME,15,WILDFIRES,CO,,,,,,,,0.07657,0.07657,0.07657,,0,0,0.88418853,0.88418853,0.88418853,0.246472464,0.246472464,0.246472464,0.624833659,0.624833659,0.624833659,4.621667035,4.621667035,4.621667035 +23,ME,15,WILDFIRES,VOC,,,,,,,,0.01698,0.01698,0.01698,,0,0,0.041608842,0.041608842,0.041608842,0.058059058,0.058059058,0.058059058,0.146922586,0.146922586,0.146922586,1.085793725,1.085793725,1.085793725 +23,ME,15,WILDFIRES,PM25,,,,,,,,0.00586,0.00586,0.00586,,0,0,0.073733375,0.073733375,0.073733375,0.021000765,0.021000765,0.021000765,0.052526102,0.052526102,0.052526102,0.385971308,0.385971308,0.385971308 +23,ME,15,WILDFIRES,PM10,,,,,,,,0.00694,0.00694,0.00694,,0,0,0.08597124,0.08597124,0.08597124,0.024781035,0.024781035,0.024781035,0.061980857,0.061980857,0.061980857,0.455445947,0.455445947,0.455445947 +23,ME,15,WILDFIRES,NOX,,,,,,,,0.000634811,0.000634811,0.000634811,,0,0,0.018968734,0.018968733,0.018968733,0.003035502,0.003035502,0.003035502,0.00675277,0.00675277,0.00675277,0.046587607,0.046587607,0.046587607 +23,ME,15,WILDFIRES,NH3,,,,,,,,0.001111199,0.001111199,0.001111199,,0,0,0.003977314,0.003977314,0.003977314,0.004038783,0.004038783,0.004038783,0.010220212,0.010220212,0.010220212,0.075533466,0.075533466,0.075533466 +23,ME,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.056402517,0.0601218,0.063841083,0.067560366,0.07247027,0.077380173,0.082290077,0.07361259,0.064935103,0.056257616,0.056257616,0.056257616 +23,ME,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.81078625,0.864250954,0.917715659,0.971180363,1.041760046,1.112339729,1.182919413,1.058180855,0.933442298,0.80870374,0.80870374,0.80870374 +23,ME,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.024611459,0.025353652,0.026095845,0.026838038,0.029213092,0.031588145,0.033963199,0.030609342,0.027255485,0.023901628,0.023901628,0.023901628 +23,ME,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.042867821,0.042775963,0.042684106,0.042592248,0.047094692,0.051597135,0.056099579,0.050938046,0.045776514,0.040614981,0.040614981,0.040614981 +23,ME,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.34643578,0.36698825,0.387540721,0.408093191,0.438856263,0.469619335,0.500382407,0.448209477,0.396036548,0.343863618,0.343863618,0.343863618 +23,ME,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,3.441378,3.671820013,3.902262027,4.13270404,4.431353287,4.730002534,5.028651781,4.497473998,3.966296214,3.435118431,3.435118431,3.435118431 +23,ME,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.29358971,0.311007205,0.3284247,0.345842195,0.371912496,0.397982796,0.424053097,0.379838707,0.335624317,0.291409926,0.291409926,0.291409926 +24,MD,1,FUEL COMB. ELEC. UTIL.,SO2,282.63477,252.27795,259.99968,289.22261,281.86504,252.758628,254.415008,256.760416,268.991375,281.683531,284.5614782,276.270614,272.879213,227.9660011,162.6221635,97.27832592,31.93448833,29.1528031,26.37111788,23.58943265,18.41641618,13.24339971,8.070383238,10.161575,4.540326 +24,MD,1,FUEL COMB. ELEC. UTIL.,VOC,0.55412,0.49616,0.50069,0.61544,0.583224,0.542716,0.577155,0.486284,0.491222523,0.496161045,0.501099568,0.450777181,0.400454794,0.350132407,0.339331689,0.328530971,0.317730254,0.306956582,0.296182911,0.285409239,0.244777799,0.204146358,0.163514918,0.163514918,0.163514918 +24,MD,1,FUEL COMB. ELEC. UTIL.,PM25,1.11953,1.35416,1.37075,3.58381,18.039906,18.103631,18.424049,15.72045858,15.6798145,15.63917043,15.59852635,12.38579852,9.173070685,5.960342853,4.788341384,3.616339914,2.444338445,2.183648785,1.922959125,1.662269465,1.290076588,0.917883712,0.545690835,0.545690835,0.545690835 +24,MD,1,FUEL COMB. ELEC. UTIL.,PM10,2.85328,2.73514,2.75629,7.55682,19.337668,19.366366,19.781796,17.99369782,17.86744622,17.74119462,17.61494302,14.3030436,10.99114418,7.679244765,6.068317616,4.457390468,2.846463319,2.592715343,2.338967367,2.08521939,1.614633903,1.144048416,0.673462929,0.673462929,0.673462929 +24,MD,1,FUEL COMB. ELEC. UTIL.,NOX,119.82038,105.65692,109.97187,121.50824,108.28646,82.573821,73.844458,73.7192538,68.061796,60.305391,63.11880184,53.697752,50.121,36.4129403,30.43889267,24.46484504,18.49079741,16.75168855,15.01257969,13.27347083,10.56879179,7.864112754,5.159433714,5.889916,2.761473 +24,MD,1,FUEL COMB. ELEC. UTIL.,NH3,,0.05332,0.05666,0.1126,0.147608,0.079236,0.097242,0.2708991,0.276660242,0.282421385,0.288182527,0.259425905,0.230669282,0.20191266,0.169365548,0.136818436,0.104271324,0.10830454,0.112337757,0.116370973,0.096432868,0.076494764,0.056556659,0.056556659,0.056556659 +24,MD,1,FUEL COMB. ELEC. UTIL.,CO,4.23057,3.33944,3.34127,3.89566,4.058036,3.272084,3.347088,4.652506,4.748442037,4.844378074,4.940314112,4.585446362,4.230578612,3.875710862,3.83517272,3.794634578,3.754096436,3.643302144,3.532507853,3.421713561,3.099901394,2.778089226,2.456277059,2.456277059,2.456277059 +24,MD,2,FUEL COMB. INDUSTRIAL,NH3,0.12883,0.02475,0.02416,0.02361,0.107273,0.118041,0.124972,0.077040053,0.077040053,0.077040053,0.077040053,0.051360035,0.025680018,,0.012178754,0.024357507,0.036536261,0.028877419,0.021218577,0.013559735,0.030339221,0.047118706,0.063898192,0.063898192,0.063898192 +24,MD,2,FUEL COMB. INDUSTRIAL,NOX,18.61732,4.2751,4.32274,4.24312,7.98515,8.121873,8.518967,11.89612811,12.12309204,12.35005596,12.57701989,9.793300569,7.00958125,4.225861931,4.917237634,5.608613337,6.29998904,5.105655405,3.91132177,2.716988135,2.968873339,3.220758543,3.472643748,3.472643748,3.472643748 +24,MD,2,FUEL COMB. INDUSTRIAL,PM10,2.24964,0.221,0.21357,0.21076,1.799616,1.908334,1.979977,7.452376749,7.602378325,7.752379901,7.902381477,5.48088444,3.059387404,0.637890367,1.48026863,2.322646892,3.165025154,2.197034019,1.229042884,0.261051749,0.89006688,1.519082011,2.148097143,2.148097143,2.148097143 +24,MD,2,FUEL COMB. INDUSTRIAL,PM25,0.56317,0.17507,0.17023,0.16827,1.058522,1.114494,1.158039,2.040152267,2.180221424,2.320290581,2.460359738,1.821382918,1.182406098,0.543429278,1.276727485,2.010025692,2.7433239,1.902865428,1.062406956,0.221948485,0.772217714,1.322486943,1.872756172,1.872756172,1.872756172 +24,MD,2,FUEL COMB. INDUSTRIAL,SO2,78.06725,2.45636,2.31551,2.25248,36.97564,37.581846,39.652981,51.89922556,52.12603139,52.35283721,52.57964304,42.16798677,31.7563305,21.34467422,22.42039273,23.49611123,24.57182973,21.94719742,19.3225651,16.69793279,14.03789514,11.37785748,8.71781983,8.71781983,8.71781983 +24,MD,2,FUEL COMB. INDUSTRIAL,VOC,1.72552,0.2935,0.30282,0.29766,0.1136,0.118641,0.124024,0.229598951,0.220621101,0.211643251,0.202665401,0.160471065,0.118276728,0.076082392,0.094416325,0.112750258,0.13108419,0.104109982,0.077135774,0.050161566,0.082111112,0.114060658,0.146010204,0.146010204,0.146010204 +24,MD,2,FUEL COMB. INDUSTRIAL,CO,4.44205,1.1657,1.19272,1.17876,0.69881,0.711448,0.747776,3.713416526,3.711229399,3.709042273,3.706855147,2.612493966,1.518132785,0.423771605,1.381786043,2.339800482,3.297814921,2.328396805,1.358978689,0.389560573,1.276627214,2.163693854,3.050760495,3.050760495,3.050760495 +24,MD,3,FUEL COMB. OTHER,PM25,5.47896,7.3348,7.33901,7.33456,17.212269,13.242089,13.364599,8.844103661,8.944160156,9.044216651,9.144273146,8.020531329,6.896789512,5.773047696,5.044911649,4.316775603,3.588605298,3.492568363,3.396531429,3.300494494,4.228303619,5.156112744,6.083921869,6.083921869,6.083921869 +24,MD,3,FUEL COMB. OTHER,CO,51.20483,60.5854,60.96259,60.98315,95.468943,66.725137,66.873295,68.47053946,68.29645414,68.12236882,67.9482835,61.1881425,54.42800149,47.66786049,41.02203708,34.37621367,27.73039025,26.47055437,25.21071849,23.95088261,31.00873636,38.0665901,45.12444384,45.12444384,45.12444384 +24,MD,3,FUEL COMB. OTHER,NH3,0.37166,0.02123,0.02088,0.01837,0.009484,0.009461,0.009432,0.508814302,0.508814302,0.508814302,0.508814302,0.729429288,0.950044274,1.17065926,1.145603711,1.120548162,1.095492613,1.102779999,1.110067386,1.117354772,1.122105056,1.12685534,1.131605624,1.131605624,1.131605624 +24,MD,3,FUEL COMB. OTHER,NOX,31.81815,16.9207,17.40233,17.29994,17.151423,17.211896,17.445406,12.70298553,12.74293614,12.78288675,12.82283736,12.3798514,11.93686545,11.49387949,11.83108043,12.16828136,12.50548229,12.31858472,12.13168714,11.94478957,11.2301812,10.51557283,9.80096446,9.80096446,9.80096446 +24,MD,3,FUEL COMB. OTHER,SO2,35.56209,3.05091,3.00893,2.91106,24.508856,24.894961,25.325045,11.09963567,11.19935329,11.29907092,11.39878855,9.246860257,7.094931963,4.943003668,5.263764345,5.584525023,5.9052857,5.355090208,4.804894715,4.254699223,3.033033179,1.811367135,0.589701091,0.589701091,0.589701091 +24,MD,3,FUEL COMB. OTHER,VOC,8.99653,16.89088,16.92065,16.91204,78.735537,18.423479,18.436203,40.30363232,32.27787329,24.25211426,16.22635522,13.33614357,10.44593191,7.555720254,6.447582372,5.339444491,4.23130661,3.937453104,3.643599599,3.349746094,4.355415178,5.361084261,6.366753345,6.366753345,6.366753345 +24,MD,3,FUEL COMB. OTHER,PM10,5.98705,10.08183,10.27406,10.35793,18.715822,14.778868,14.937195,9.040931602,9.147507512,9.254083421,9.360659331,8.202300793,7.043942254,5.885583716,5.163800889,4.442018063,3.720205354,3.641511948,3.562818542,3.484125136,4.398505221,5.312885305,6.227265389,6.227265389,6.227265389 +24,MD,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,1.4543,0.29287,0.29586,0.30245,0.18591,0.19,0.195391,0.125454,0.15873,0.192006,0.225282,0.151379696,0.077477393,0.003575089,0.002622294,0.001669499,0.000716703,0.000581532,0.000446361,0.00031119,0.000304546,0.000297903,0.00029126,0.00029126,0.00029126 +24,MD,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.96416,0.6098,0.61865,0.61788,0.40003,0.400041,0.418225,2.76469809,2.749523893,2.734349697,2.7191755,1.844547407,0.969919314,0.095291221,0.085105426,0.07491963,0.064733835,0.06184905,0.058964265,0.05607948,0.056264652,0.056449825,0.056634998,0.056634998,0.056634998 +24,MD,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.17046,0.04527,0.04583,0.04645,0.010376,0.010636,0.010833,0.048965555,0.064599456,0.080233357,0.095867258,0.069641147,0.043415037,0.017188926,0.014689206,0.012189487,0.009689767,0.011701894,0.01371402,0.015726147,0.032706874,0.049687602,0.066668329,0.066668329,0.066668329 +24,MD,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.2259,0.0636,0.06447,0.06525,0.013547,0.013886,0.014143,0.084029632,0.1010672,0.118104769,0.135142338,0.10099092,0.066839502,0.032688084,0.030550962,0.02841384,0.026276718,0.030348688,0.034420659,0.038492629,0.052080733,0.065668838,0.079256943,0.079256943,0.079256943 +24,MD,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.37155,0.104,0.10522,0.10709,0.08877,0.090675,0.093116,0.091082,0.091579667,0.092077333,0.092575,0.072040764,0.051506527,0.030972291,0.029638156,0.028304022,0.026969887,0.026032222,0.025094557,0.024156892,0.0243669,0.024576907,0.024786915,0.024786915,0.024786915 +24,MD,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.00084,0.00084,0.00085,0.000845,0.000857,0.000882,0.001024,0.001324,0.001624,0.001924,0.001282667,0.000641333,,1.20E-05,2.40E-05,3.60E-05,8.22E-05,0.000128359,0.000174562,0.000507741,0.000840921,0.0011741,0.0011741,0.0011741 +24,MD,4,CHEMICAL & ALLIED PRODUCT MFG,CO,7.83237,0.0288,0.02913,0.02944,0.31825,0.32526,0.334461,0.0476533,0.053404033,0.059154767,0.0649055,0.132370048,0.199834597,0.267299145,0.269109804,0.270920462,0.272731121,0.278579205,0.284427288,0.290275372,0.298884412,0.307493452,0.316102492,0.316102492,0.316102492 +24,MD,5,METALS PROCESSING,NH3,0.26552,0.2725,0.29847,0.30237,0.20712,0.21582,0.231766,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +24,MD,5,METALS PROCESSING,NOX,3.98017,2.0231,2.2121,2.23885,3.16406,3.29547,3.536727,3.468872376,3.291863251,3.114854125,2.937845,2.7008622,2.4638794,2.2268966,1.761035367,1.295174133,0.8293129,0.552875267,0.276437633,0,0,0,0,0,0 +24,MD,5,METALS PROCESSING,PM10,2.0307,0.85,0.90552,0.90158,2.453646,2.556776,2.745478,2.117817847,2.702937924,3.288058002,3.87317808,3.060358137,2.247538193,1.43471825,1.157119961,0.879521672,0.601923383,0.404172697,0.206422011,0.008671325,0.008004473,0.007337622,0.00667077,0.00667077,0.00667077 +24,MD,5,METALS PROCESSING,PM25,1.17177,0.72082,0.76854,0.76554,1.903432,1.983428,2.129844,1.405362879,1.90574665,2.40613042,2.90651419,2.237162591,1.567810991,0.898459392,0.728468102,0.558476813,0.388485523,0.260012477,0.131539431,0.003066386,0.002825611,0.002584836,0.002344062,0.002344062,0.002344062 +24,MD,5,METALS PROCESSING,SO2,5.2504,11.32903,11.73899,11.71832,6.37884,6.572294,6.950004,6.41302573,6.237558487,6.062091243,5.886624,4.618069,3.349514,2.080959,1.612079401,1.143199801,0.674320202,0.449546801,0.224773401,0,0,0,0,0,0 +24,MD,5,METALS PROCESSING,VOC,0.46605,0.0239,0.02541,0.0253,0.35015,0.361296,0.385882,0.376491349,0.372885399,0.36927945,0.3656735,0.320164533,0.274655567,0.2291466,0.180954691,0.132762782,0.084570874,0.0564685,0.028366126,0.000263752,0.000243265,0.000222777,0.00020229,0.00020229,0.00020229 +24,MD,5,METALS PROCESSING,CO,86.52931,42.1763,43.65952,43.31759,109.57206,113.423975,120.500341,89.97513102,92.26882002,94.56250901,96.856198,85.82905483,74.80191167,63.7747685,49.47355953,35.17235057,20.8711416,13.91420763,6.957273657,0.000339685,0.000311068,0.000282452,0.000253835,0.000253835,0.000253835 +24,MD,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.05413,0.103,0.103,0.09964,,,,0.106858815,0.141967536,0.177076256,0.212184976,0.177490857,0.142796739,0.10810262,0.11641717,0.12473172,0.133046271,0.123791141,0.114536011,0.105280881,0.10128748,0.09729408,0.09330068,0.09330068,0.09330068 +24,MD,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.0999,0.1125,0.11309,0.11091,0.08364,0.08364,0.08364,0.051345685,0.05840729,0.065468895,0.0725305,0.071016672,0.069502843,0.067989015,0.087288008,0.106587002,0.128494397,0.126033865,0.123573333,0.1211128,0.123113648,0.125114496,0.127115344,0.127115344,0.127115344 +24,MD,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.01369,0.04138,0.04139,0.04002,,,,0.081991611,0.101587923,0.121184234,0.140780546,0.11021357,0.079646594,0.049079618,0.054391912,0.059704206,0.0650165,0.07324864,0.08148078,0.089712919,0.08689615,0.084079381,0.081262612,0.081262612,0.081262612 +24,MD,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +24,MD,6,PETROLEUM & RELATED INDUSTRIES,CO,0.35255,0.1024,0.10241,0.10131,0.10601,0.10601,0.10601,0.166451507,0.197842005,0.229232502,0.260623,0.322873005,0.38512301,0.447373015,0.569267229,0.691161443,0.813055656,0.756359017,0.699662377,0.642965738,0.654684883,0.666404028,0.678123173,0.678123173,0.678123173 +24,MD,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.08199,0.0667,0.06675,0.06515,0.00132,0.001335,0.00135,0.03757444,0.05097396,0.06437348,0.077773,0.092341978,0.106910957,0.121479935,0.150036709,0.178593483,0.207150257,0.188744626,0.170338995,0.151933364,0.172060765,0.192188166,0.212315567,0.212315567,0.212315567 +24,MD,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.1728,0.0757,0.07559,0.07315,0.10401,0.10401,0.10401,0.087381566,0.109087878,0.130794189,0.1525005,0.122447839,0.092395179,0.062342518,0.07328998,0.084237442,0.095184904,0.080604093,0.066023281,0.05144247,0.048581468,0.045720465,0.042859463,0.042859463,0.042859463 +24,MD,7,OTHER INDUSTRIAL PROCESSES,CO,4.16385,0.5943,0.63594,0.65107,0.64546,0.676727,1.296947922,2.155690257,2.165836671,2.175983086,2.1861295,2.141852898,2.097576297,2.053299695,2.031396463,2.009493231,1.987589998,3.591520358,5.195450718,6.799381077,6.21609312,5.632805163,5.049517206,5.049517206,5.049517206 +24,MD,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00414,0.00423,0.00426,0.003112,0.003183,0.003261,0.19355696,0.16742626,0.14129556,0.11516486,0.076776573,0.038388287,,0.104689668,0.209379337,0.314062006,0.312961827,0.311861649,0.31076147,0.3367335,0.36270553,0.38867756,0.38867756,0.38867756 +24,MD,7,OTHER INDUSTRIAL PROCESSES,NOX,7.19881,12.4013,13.20985,13.46671,10.13437,10.642459,11.290764,7.805266609,7.759489573,7.713712536,7.6679355,7.619034652,7.570133803,7.521232955,6.744429569,5.967626182,5.190822796,5.124384779,5.057946762,4.991508745,4.596883972,4.202259199,3.807634426,3.807634426,3.807634426 +24,MD,7,OTHER INDUSTRIAL PROCESSES,PM10,5.2563,7.79526,8.35669,8.80407,8.500647,9.074867,10.70835633,3.672876325,3.881247838,4.089619351,4.297990864,5.460263142,6.622535421,7.784807699,7.319602878,6.854398057,6.389193236,6.494150439,6.599107642,6.704064846,8.32663137,9.949197895,11.57176442,11.57176442,11.57176442 +24,MD,7,OTHER INDUSTRIAL PROCESSES,PM25,1.62844,2.2161,2.36224,2.46404,2.510799,2.65585,4.107309786,2.62825267,2.760146687,2.892040704,3.02393472,2.963067228,2.902199737,2.841332245,2.785693236,2.730054227,2.674415217,2.756418842,2.838422467,2.920426092,3.589374891,4.258323691,4.927272491,4.927272491,4.927272491 +24,MD,7,OTHER INDUSTRIAL PROCESSES,SO2,4.1011,5.0623,5.3339,5.39791,6.28012,6.552849,6.915401,4.623751156,4.557078511,4.490405865,4.42373322,3.925527372,3.427321523,2.929115675,2.39142007,1.853724464,1.316028859,1.378520346,1.441011834,1.503503321,1.336016334,1.168529348,1.001042361,1.001042361,1.001042361 +24,MD,7,OTHER INDUSTRIAL PROCESSES,VOC,2.62481,2.4963,2.61955,2.67565,2.88297,2.985364,3.086939996,2.414225388,2.440964036,2.467702684,2.494441331,2.117215516,1.7399897,1.362763885,1.398809762,1.43485564,1.470901518,1.723892063,1.976882609,2.229873154,2.097255,1.964636847,1.832018693,1.832018693,1.832018693 +24,MD,8,SOLVENT UTILIZATION,CO,0.02424,0.0134,0.0144,0.01493,,,,0.017784,0.015935833,0.014087667,0.0122395,0.013313336,0.014387171,0.015461007,0.014396457,0.013331908,0.012267358,0.011715652,0.011163945,0.010612239,0.010364638,0.010117037,0.009869437,0.009869437,0.009869437 +24,MD,8,SOLVENT UTILIZATION,VOC,83.80584,49.20751,50.18608,48.90241,48.90917,45.451585,47.01268,65.72453417,65.51062118,65.29670819,65.0827952,56.34447513,47.60615505,38.86783498,38.33366235,37.79948973,37.26531711,37.48085506,37.696393,37.91193095,37.21296004,36.51398914,35.81501824,35.81501824,35.81501824 +24,MD,8,SOLVENT UTILIZATION,SO2,0.00136,0.0035,0.00384,0.004,,,,0.0001532,0.000154133,0.000155067,0.000156,0.000222136,0.000288271,0.000354407,0.000276372,0.000198337,0.000120302,0.00010498,8.97E-05,0.000074336,7.19E-05,6.95E-05,6.72E-05,6.72E-05,6.72E-05 +24,MD,8,SOLVENT UTILIZATION,PM25,0.02739,0.0294,0.03123,0.03219,,,,0.015479462,0.014042142,0.012604822,0.011167502,0.008716855,0.006266208,0.003815561,0.003804791,0.003794022,0.003783252,0.003633289,0.003483326,0.003333363,0.002759325,0.002185287,0.001611248,0.001611248,0.001611248 +24,MD,8,SOLVENT UTILIZATION,PM10,0.03309,0.0346,0.03681,0.0379,,,,0.018690859,0.016705699,0.01472054,0.01273538,0.009762107,0.006788834,0.003815561,0.003953884,0.004092207,0.00423053,0.004364322,0.004498114,0.004631906,0.003885087,0.003138268,0.002391449,0.002391449,0.002391449 +24,MD,8,SOLVENT UTILIZATION,NH3,,0.00047,0.00049,0.00052,0.000621,0.00064,0.000662,0.010276,0.010276667,0.010277333,0.010278,0.006852,0.003426,0,8.95E-05,0.000179067,0.0002686,0.000302267,0.000335933,0.0003696,0.0002464,0.0001232,0,0,0 +24,MD,8,SOLVENT UTILIZATION,NOX,0.12264,0.0735,0.07901,0.08185,0.03523,0.037202,0.039564,0.04248095,0.035817467,0.029153983,0.0224905,0.021884665,0.021278829,0.020672994,0.019223139,0.017773285,0.016323431,0.015426516,0.014529601,0.013632685,0.012760493,0.011888301,0.01101611,0.01101611,0.01101611 +24,MD,9,STORAGE & TRANSPORT,NH3,,0.0002,0.00021,0.00022,0.001379,0.001367,0.001357,0.002228,0.001508,0.000788,0.000068,4.53E-05,2.27E-05,,0.000735,0.00147,0.002205,0.002088,0.001971,0.001854,0.001638833,0.001423667,0.0012085,0.0012085,0.0012085 +24,MD,9,STORAGE & TRANSPORT,CO,0.05928,0.0191,0.02023,0.02071,0.0038,0.0038,0.0038,0.073476638,0.077275092,0.081073546,0.084872,0.083433263,0.081994525,0.080555788,0.072325473,0.064095159,0.055864845,0.05623912,0.056613395,0.05698767,0.055615368,0.054243066,0.052870764,0.052870764,0.052870764 +24,MD,9,STORAGE & TRANSPORT,NOX,0.18961,0.0102,0.01072,0.01094,0.0115,0.011796,0.012018,0.0345019,0.037689933,0.040877967,0.044066,0.041879828,0.039693655,0.037507483,0.037323243,0.037139003,0.036954763,0.038175404,0.039396045,0.040616686,0.035032269,0.029447853,0.023863437,0.023863437,0.023863437 +24,MD,9,STORAGE & TRANSPORT,PM25,0.24077,0.05675,0.06045,0.06167,0.192681,0.200678,0.212196,0.127368751,0.155213059,0.183057368,0.210901677,0.164691759,0.118481841,0.072271923,0.070565879,0.068859836,0.067153793,0.068767493,0.070381192,0.071994891,0.057145594,0.042296296,0.027446998,0.027446998,0.027446998 +24,MD,9,STORAGE & TRANSPORT,SO2,0.0696,0.0002,0.0002,0.0002,0.01861,0.01861,0.01861,0.019508939,0.021147626,0.022786313,0.024425,0.021667392,0.018909784,0.016152176,0.010910424,0.005668673,0.000426921,0.000567725,0.000708529,0.000849332,0.000660058,0.000470783,0.000281508,0.000281508,0.000281508 +24,MD,9,STORAGE & TRANSPORT,VOC,26.30462,5.27193,5.4153,5.51,7.21201,7.223277,7.299446,13.95748833,13.95288779,13.94828725,13.94368672,13.78818111,13.63267551,13.47716991,11.30271177,9.128253628,5.436372373,5.973964069,6.511555764,7.04914746,6.441301986,5.833456511,5.225611037,5.225611037,5.225611037 +24,MD,9,STORAGE & TRANSPORT,PM10,0.44463,0.1641,0.17489,0.17851,0.490392,0.509435,0.532627,0.386235819,0.40244091,0.418646001,0.434851091,0.375333571,0.31581605,0.25629853,0.25743942,0.258580311,0.259721202,0.261797467,0.263873733,0.265949999,0.203943018,0.141936036,0.079929055,0.079929055,0.079929055 +24,MD,10,WASTE DISPOSAL & RECYCLING,CO,45.93992,60.26472,60.99179,60.60144,20.119386,62.284488,62.285089,71.3408034,71.37272326,71.40464313,71.436563,55.84246063,40.24835827,24.65425591,22.67536908,20.69648225,18.71759542,20.5166945,22.31579358,24.11489267,22.38456513,20.6542376,18.92391006,18.92391006,18.92391006 +24,MD,10,WASTE DISPOSAL & RECYCLING,NH3,1.16067,1.16814,1.1773,1.20548,1.217549,1.236967,1.256828,0.033996369,0.036029702,0.038063035,0.040096369,0.058313956,0.076531543,0.09474913,0.067944732,0.041140334,0.019834506,0.068912711,0.117990915,0.16706912,0.116482929,0.065896737,0.015310545,0.015310545,0.015310545 +24,MD,10,WASTE DISPOSAL & RECYCLING,NOX,3.74019,4.36583,4.43613,4.48548,3.13229,4.514188,4.553297,7.54381545,8.022976288,8.502137126,8.981297964,7.092028483,5.202759001,3.313489519,3.097181535,2.88087355,2.664565566,2.651356415,2.638147264,2.624938113,2.575876372,2.526814632,2.477752891,2.477752891,2.477752891 +24,MD,10,WASTE DISPOSAL & RECYCLING,PM10,0.90581,8.69809,8.93884,8.95865,3.281014,8.416289,8.41647,8.368777451,8.397899652,8.427021853,8.456144054,6.750454188,5.044764321,3.339074455,3.156200828,2.973327201,2.790453574,2.818624936,2.846796299,2.874967661,2.687289556,2.49961145,2.311933344,2.311933344,2.311933344 +24,MD,10,WASTE DISPOSAL & RECYCLING,PM25,0.67356,7.99165,8.1922,8.19821,3.146425,8.184806,8.184871,8.234339186,8.257043618,8.27974805,8.302452481,6.56218397,4.821915459,3.081646948,2.911441448,2.741235947,2.571030446,2.63908951,2.707148574,2.775207638,2.591062453,2.406917267,2.222772081,2.222772081,2.222772081 +24,MD,10,WASTE DISPOSAL & RECYCLING,SO2,1.7928,1.34244,1.36655,1.39578,0.931569,0.971503,0.990074,0.849351244,0.916403728,0.983456212,1.050508695,0.858333577,0.666158458,0.473983339,0.478644348,0.483305357,0.487966365,0.4785799,0.469193435,0.45980697,0.48771428,0.51562159,0.543528901,0.543528901,0.543528901 +24,MD,10,WASTE DISPOSAL & RECYCLING,VOC,15.18726,8.51151,8.68561,8.76372,4.296654,7.962445,7.988357,6.214449916,6.203938279,6.193426642,6.182915006,4.991532151,3.800149297,2.608766443,2.377360157,2.145953872,1.914547587,2.355513091,2.796478596,3.2374441,2.757842256,2.278240412,1.798638568,1.798638568,1.798638568 +24,MD,11,HIGHWAY VEHICLES,CO,2107.17132,1372.23954,1325.74623,1282.53332,1193.82901,1126.15512,1113.75064,851.7683346,766.986112,682.2038895,597.421667,551.6291907,505.8367143,455.7109883,413.4810527,421.1172731,369.0693979,369.3588079,369.6482178,369.9376277,367.8984295,288.3894492,282.596907,280.8466189,267.5041506 +24,MD,11,HIGHWAY VEHICLES,SO2,9.56781,5.48344,5.63905,5.70057,5.81463,3.39031,3.59758,4.964026132,4.311089742,3.658153352,3.005216962,1.830162083,0.655107204,0.630960066,0.586951025,0.600821591,0.54548803,0.542545308,0.539602585,0.536659862,0.60792918,0.616145184,0.571725827,0.253768952,0.193978874 +24,MD,11,HIGHWAY VEHICLES,PM25,6.08217,3.98493,3.8021,3.54311,3.31319,2.94019,2.80475,5.786734029,5.675197968,5.563661907,5.452125846,4.792109955,4.132094063,3.618808636,2.891438441,2.488187697,2.810777502,2.788416571,2.76605564,2.743694708,2.442498827,1.813958168,1.607088045,1.85303499,1.769625386 +24,MD,11,HIGHWAY VEHICLES,PM10,7.28407,5.02506,4.86442,4.57927,4.3432,3.96131,3.83626,7.165413254,7.06802165,6.970630046,6.873238442,6.083242387,5.293246333,4.729719613,3.896334739,3.492094766,5.533881118,5.526252895,5.518624673,5.510996451,5.226769699,4.215435009,3.973332873,4.706520527,4.651378212 +24,MD,11,HIGHWAY VEHICLES,NH3,3.05802,4.40974,4.93746,4.75247,4.89033,5.04226,5.26525,2.904573697,2.834218515,2.763863334,2.693508153,2.619507403,2.545506654,2.282250794,2.353361631,1.977483051,2.057807871,1.969134995,1.880462119,1.791789243,1.726390286,1.688268454,1.705535262,1.536328711,1.510457909 +24,MD,11,HIGHWAY VEHICLES,VOC,174.20162,105.61512,100.53087,97.25804,91.91416,81.90619,80.15645,65.77086654,61.77942238,57.78797822,53.79653405,51.11954875,48.44256344,40.82129321,38.51898284,37.28192586,36.71894481,35.74865994,34.77837507,33.8080902,31.84289503,23.01263832,24.08755867,22.21257164,20.48893203 +24,MD,11,HIGHWAY VEHICLES,NOX,186.03062,157.40925,158.41428,155.28122,150.32631,146.75562,140.27819,167.3754805,155.5292604,143.6830402,131.8368201,120.5600084,109.2831967,95.78452978,81.59455307,70.03711748,81.57187413,78.79181516,76.01175619,73.23169722,67.33622431,50.6037795,46.61578193,44.75383467,40.77558469 +24,MD,12,OFF-HIGHWAY,VOC,46.42343,52.07463,48.0619,46.16112,45.9607,45.71058,45.34854,56.72947573,53.31081445,49.89215317,46.47349189,44.25415228,42.03481267,39.53147397,37.59993085,36.42629889,30.37409997,29.41497894,28.45585791,27.49673688,24.71478553,19.94601777,19.15088284,18.72669649,18.30251014 +24,MD,12,OFF-HIGHWAY,NH3,0.27237,0.32658,0.32816,0.33848,0.04199,0.04199,0.04199,0.050543176,0.050947747,0.051352319,0.051756891,0.04416682,0.036576749,0.03835017,0.037597639,0.038129801,0.037137342,0.036849591,0.03656184,0.036274089,0.033524855,0.024097292,0.028026389,0.02774988,0.027473372 +24,MD,12,OFF-HIGHWAY,NOX,41.09938,45.36418,48.33107,51.01212,44.49572,45.3379,45.47359,58.34829585,53.01437733,47.6804588,42.34654028,45.53186548,48.71719067,44.00815701,48.25621295,47.35800543,37.26599877,34.66119556,32.05639235,29.45158913,27.85119777,25.75282575,24.65041505,24.06819225,23.48596944 +24,MD,12,OFF-HIGHWAY,PM10,3.96545,4.28628,4.2602,4.22467,4.10048,4.07419,4.03235,5.918583805,5.199567051,4.480550297,3.761533544,3.822639383,3.883745222,3.511310986,3.714205678,3.381448875,3.243002315,3.000399258,2.7577962,2.515193143,2.249713852,1.807983283,1.718755271,1.676912012,1.635068754 +24,MD,12,OFF-HIGHWAY,PM25,3.63652,3.93355,3.90963,3.87875,3.76332,3.73914,3.70068,4.535679854,4.20238419,3.869088526,3.535792862,3.599855034,3.663917205,3.255580315,3.456217318,3.146356905,3.018614663,2.804562318,2.590509973,2.376457627,2.12235134,1.700531323,1.614138766,1.573561774,1.532984783 +24,MD,12,OFF-HIGHWAY,SO2,4.4168,4.95337,5.12293,5.30812,4.9394,5.09833,5.16541,16.65213039,14.24245521,11.83278002,9.42310483,7.370491645,5.31787846,4.03066595,4.673626061,2.434500529,6.185480286,4.588119136,2.990757986,1.393396837,1.126243185,0.578955463,0.591935881,0.600288139,0.608640396 +24,MD,12,OFF-HIGHWAY,CO,395.14639,455.59404,439.09993,439.26842,444.5273,450.31844,460.60982,433.6121585,419.6015957,405.5910329,391.5804701,361.7646197,331.9487693,307.1295885,294.3830566,286.4720211,272.651832,267.9263172,263.2008024,258.4752876,246.1662954,221.6229725,221.5483109,222.4236076,223.2989043 +24,MD,14,MISCELLANEOUS,NH3,21.80872,21.62013,21.84175,21.60179,21.50579,21.34174,23.59688337,24.61351461,24.69085246,24.76819032,24.84552818,28.06371032,31.28189245,34.50007458,30.5713515,26.64262842,22.71390534,19.20608712,15.69826889,12.19045066,9.03213747,5.873824277,2.715511083,2.715511083,2.715511083 +24,MD,14,MISCELLANEOUS,NOX,0.07976,0.11425,0.14043,0.11947,0.0633,0.10669,0.15166,0.00968,0.087442632,0.165205264,0.242967897,0.175874392,0.108780888,0.041687384,0.053977934,0.066268484,0.078559035,0.062566182,0.046573329,0.030580476,0.038283893,0.045987311,0.053690728,0.053690728,0.053690728 +24,MD,14,MISCELLANEOUS,PM10,184.77797,101.17258,108.89222,103.26427,101.912528,101.606931,73.9089681,75.52798,76.01791369,76.50784737,76.99778106,70.24942287,63.50106469,56.75270651,53.10450467,49.45630283,45.808101,60.61806243,75.42802387,90.2379853,80.98534576,71.73270621,62.48006667,62.48006667,62.48006667 +24,MD,14,MISCELLANEOUS,PM25,37.82049,21.40599,23.02055,21.91714,21.702326,21.703606,12.9491972,7.49647,7.911668038,8.326866076,8.742064114,8.105324878,7.468585642,6.831846407,7.259007199,7.686167992,8.113328785,9.963293352,11.81325792,13.66322249,12.44536752,11.22751255,10.00965758,10.00965758,10.00965758 +24,MD,14,MISCELLANEOUS,SO2,0.00054,0.00343,0.00432,0.00364,0.03521,0.02149,0.03384,,,,0.118425699,0.080588578,0.042751456,0.004914335,0.014460204,0.024006073,0.033551941,0.022927576,0.01230321,0.001678845,0.001329644,0.000980442,0.000631241,0.000631241,0.000631241 +24,MD,14,MISCELLANEOUS,VOC,0.58148,0.4258,0.50848,0.43553,0.50852,0.33055,0.42918,0.092781368,1.204513078,2.316244788,3.427976499,2.316849441,1.205722383,0.094595326,0.12009151,0.145587695,0.17108388,0.419459568,0.667835256,0.916210944,0.716345307,0.51647967,0.316614033,0.316614033,0.316614033 +24,MD,14,MISCELLANEOUS,CO,3.47074,5.59714,6.929,5.89757,3.88355,4.70669,6.80294,0.38195,5.077857677,9.773765354,14.46967303,9.884803452,5.299933873,0.715064295,1.10291549,1.490766685,1.87861788,1.539959826,1.201301772,0.862643717,1.168513776,1.474383834,1.780253892,1.780253892,1.780253892 +24,MD,15,WILDFIRES,PM25,,,,,,,,0.00027,0.00027,0.00027,0.018725027,0.018725027,0.018725027,1.54421,1.54421,1.54421,1.562381102,1.562381102,1.562381102,1.487212817,1.487212817,1.487212817,0.246048321,0.246048321,0.246048321 +24,MD,15,WILDFIRES,CO,,,,,,,,0.00338,0.00338,0.00338,0.191037182,0.191037182,0.191037182,19.4229,19.4229,19.4229,18.92111046,18.92111046,18.92111046,18.36339729,18.36339729,18.36339729,2.937199621,2.937199621,2.937199621 +24,MD,15,WILDFIRES,NH3,,,,,,,,0.00004,0.00004,0.00004,0.003193303,0.003193303,0.003193303,0.315438,0.315438,0.315438,0.308776726,0.308776726,0.308776726,0.298928961,0.298928961,0.298928961,0.048023072,0.048023072,0.048023072 +24,MD,15,WILDFIRES,PM10,,,,,,,,0.00032,0.00032,0.00032,0.022095531,0.022095531,0.022095531,1.82217,1.82217,1.82217,1.843610505,1.843610505,1.843610505,1.754910846,1.754910846,1.754910846,0.290337007,0.290337007,0.290337007 +24,MD,15,WILDFIRES,SO2,,,,,,,,0.00002,0.00002,0.00002,0.002346963,0.002346963,0.002346963,0.0933326,0.0933326,0.0933326,0.114381914,0.114381914,0.114381914,0.099247645,0.099247645,0.099247645,0.019175816,0.019175816,0.019175816 +24,MD,15,WILDFIRES,VOC,,,,,,,,0.00049,0.00049,0.00049,0.045903723,0.045903723,0.045903723,4.53442,4.53442,4.53442,4.438678025,4.438678025,4.438678025,4.297101961,4.297101961,4.297101961,0.690331054,0.690331054,0.690331054 +24,MD,15,WILDFIRES,NOX,,,,,,,,0.00004,0.00004,0.00004,0.005586926,0.005586926,0.005586926,0.0929064,0.0929064,0.0929064,0.167231901,0.167231901,0.167231901,0.123833164,0.123833164,0.123833164,0.030602888,0.030602888,0.030602888 +24,MD,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.263978419,0.243963025,0.223947631,0.203932237,0.223412917,0.242893597,0.262374277,0.221469293,0.180564309,0.139659326,0.139659326,0.139659326 +24,MD,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.118285893,0.10553517,0.092784448,0.080033725,0.089017886,0.098002047,0.106986208,0.094321109,0.08165601,0.068990911,0.068990911,0.068990911 +24,MD,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,1.38090527,1.267861619,1.154817968,1.041774317,1.144243472,1.246712627,1.349181782,1.147693183,0.946204584,0.744715985,0.744715985,0.744715985 +24,MD,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,1.62946908,1.496077585,1.36268609,1.229294595,1.350207967,1.47112134,1.592034712,1.354278243,1.116521775,0.878765306,0.878765306,0.878765306 +24,MD,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,3.7946812,3.506962799,3.219244398,2.931525997,3.211562214,3.491598431,3.771634648,3.183622624,2.595610601,2.007598577,2.007598577,2.007598577 +24,MD,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.21089779,0.182373892,0.153849995,0.125326097,0.141734877,0.158143658,0.174552438,0.160642127,0.146731817,0.132821507,0.132821507,0.132821507 +24,MD,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,16.0941626,14.88895783,13.68375307,12.4785483,13.66522721,14.85190613,16.03858504,13.52210976,11.00563447,8.489159187,8.489159187,8.489159187 +25,MA,1,FUEL COMB. ELEC. UTIL.,CO,5.6263,4.82225,5.98766,5.86325,6.008068,3.537935,3.613223,11.56892,11.80166833,12.03441665,12.26716498,9.61725342,6.96734186,4.3174303,3.5968649,2.8762995,2.1557518,2.177034093,2.198316387,2.21959868,2.01673372,1.81386876,1.6110038,1.6110038,1.6110038 +25,MA,1,FUEL COMB. ELEC. UTIL.,SO2,233.31698,105.06929,143.86738,157.13131,113.286634,103.709221,96.902127,91.8487369,85.649222,79.890578,86.07006808,50.981332,53.8599,46.5226183,38.65741247,30.76258903,22.8677688,16.90550773,10.94324667,4.9809856,3.7036852,2.4263848,1.1490844,0.742397,0.193931 +25,MA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.23992,0.37896,0.43238,0.274019,0.256287,0.265331,1.0872065,0.902076332,0.716946164,0.531815997,0.429323164,0.326830332,0.2243375,0.226985667,0.229633833,0.2322827,0.214856777,0.197430854,0.180004932,0.158398929,0.136792926,0.115186923,0.115186923,0.115186923 +25,MA,1,FUEL COMB. ELEC. UTIL.,NOX,96.47633,35.38325,45.34895,46.35278,36.413793,33.485924,32.434918,31.609029,24.366945,21.15113,25.53998397,12.196663,10.102839,10.3071498,8.750496667,7.026072833,5.2791633,5.097475367,4.915787433,4.7340995,4.101351133,3.468602767,2.8358544,1.149585,0.690755 +25,MA,1,FUEL COMB. ELEC. UTIL.,PM10,2.3351,1.52293,1.99222,1.84825,4.478527,4.240232,4.118177,3.774161207,3.864325801,3.954490395,4.044654989,3.010429603,1.976204217,0.941978831,0.886178735,0.830378638,0.774580432,0.651550953,0.528521475,0.405491997,0.380583573,0.35567515,0.330766727,0.330766727,0.330766727 +25,MA,1,FUEL COMB. ELEC. UTIL.,PM25,1.25208,0.95723,1.32817,1.22741,3.923658,3.660645,3.498905,3.255555616,3.318014566,3.380473515,3.442932465,2.548473158,1.65401385,0.759554543,0.755330943,0.751107344,0.746885634,0.618641408,0.490397182,0.362152957,0.347248379,0.332343801,0.317439224,0.317439224,0.317439224 +25,MA,1,FUEL COMB. ELEC. UTIL.,VOC,1.07373,0.77689,1.05036,1.12796,0.56439,0.710919,0.729467,0.6476665,0.65816651,0.668666521,0.679166531,0.604952654,0.530738777,0.4565249,0.410758233,0.364991567,0.319228,0.355350446,0.391472893,0.427595339,0.372548193,0.317501046,0.2624539,0.2624539,0.2624539 +25,MA,2,FUEL COMB. INDUSTRIAL,NH3,0.13448,0.16367,0.1577,0.15422,0.20715,0.175269,0.176274,0.92289421,0.904213477,0.885532744,0.86685201,0.624754636,0.382657261,0.140559886,0.147156224,0.153752562,0.1568256,0.166614791,0.176403981,0.186193172,0.182351532,0.178509891,0.174668251,0.174668251,0.174668251 +25,MA,2,FUEL COMB. INDUSTRIAL,VOC,0.58695,0.66341,0.64523,0.63609,0.869178,0.848215,0.891492,1.172768596,1.166182229,1.159595862,1.153009496,0.918607663,0.68420583,0.449803998,0.454855598,0.459907199,0.4211839,0.591668255,0.76215261,0.932636966,0.901268834,0.869900702,0.83853257,0.83853257,0.83853257 +25,MA,2,FUEL COMB. INDUSTRIAL,PM25,1.32044,1.69928,1.5993,1.55446,2.168286,2.145455,2.261335,10.16425098,10.23488262,10.30551427,10.37614591,7.345723959,4.315302003,1.284880047,1.273415249,1.26195045,1.250506161,1.562132895,1.87375963,2.185386365,2.179965789,2.174545213,2.169124637,2.169124637,2.169124637 +25,MA,2,FUEL COMB. INDUSTRIAL,NOX,14.83584,12.90464,12.60047,12.29294,16.210619,15.024169,15.413632,20.5377125,21.05542987,21.57314723,22.0908646,16.75264649,11.41442837,6.076210259,5.948091506,5.819972753,5.0057574,7.251517702,9.497278003,11.7430383,11.16060033,10.57816236,9.995724384,9.995724384,9.995724384 +25,MA,2,FUEL COMB. INDUSTRIAL,CO,15.0725,15.75592,15.13632,15.05156,14.884784,14.637774,15.697664,21.9703545,21.90909037,21.84782623,21.7865621,15.75756833,9.728574565,3.699580798,3.675789432,3.651998066,3.480938,3.94070755,4.400477101,4.860246651,5.191219992,5.522193332,5.853166673,5.853166673,5.853166673 +25,MA,2,FUEL COMB. INDUSTRIAL,SO2,54.56675,45.26023,42.80597,42.27253,60.787698,54.679346,55.963169,9.5567945,10.99911837,12.44144223,13.8837661,10.37601762,6.868269131,3.360520646,3.143707087,2.926893529,2.67775387,2.608968724,2.540183579,2.471398433,1.860538912,1.249679391,0.638819871,0.638819871,0.638819871 +25,MA,2,FUEL COMB. INDUSTRIAL,PM10,1.78026,2.52314,2.37641,2.30011,2.63489,2.640519,2.807,11.9638022,12.04586923,12.12793627,12.2100033,8.662322134,5.114640971,1.566959808,1.524817524,1.48267524,1.4420489,1.751298314,2.060547729,2.369797143,2.3982592,2.426721257,2.455183314,2.455183314,2.455183314 +25,MA,3,FUEL COMB. OTHER,CO,42.56421,58.5976,58.57538,58.09663,149.985979,64.234218,64.482805,119.3369858,119.4655963,119.5942068,119.7228173,100.7677774,81.81273741,62.85769744,68.93465289,75.01160833,79.24595439,71.72612386,64.20629334,56.68646282,52.44275848,48.19905414,43.95534981,43.95534981,43.95534981 +25,MA,3,FUEL COMB. OTHER,NOX,24.50526,25.98419,25.67824,23.7243,25.527934,24.373768,24.884497,24.08064052,24.14543982,24.21023912,24.27503842,22.34347789,20.41191735,18.48035682,19.12568489,19.77101297,20.25140676,19.66660196,19.08179717,18.49699238,18.3130585,18.12912463,17.94519076,17.94519076,17.94519076 +25,MA,3,FUEL COMB. OTHER,PM10,6.43352,8.73844,8.71795,8.52572,22.493135,10.6695,10.737819,15.3057334,15.2981611,15.2905888,15.2830165,13.35303938,11.42306225,9.493085119,10.36133483,11.22958454,11.812135,10.7085269,9.604918791,8.501310686,7.70202642,6.902742153,6.103457886,6.103457886,6.103457886 +25,MA,3,FUEL COMB. OTHER,PM25,5.67604,8.12257,8.09811,7.97751,21.997916,10.166058,10.22487,14.88578108,14.88833171,14.89088234,14.89343297,12.98567106,11.07790916,9.170147254,10.07904514,10.98794302,11.61303205,10.51940064,9.425769237,8.33213783,7.528142783,6.724147737,5.920152691,5.920152691,5.920152691 +25,MA,3,FUEL COMB. OTHER,SO2,45.10423,35.74366,35.64953,30.60981,35.470811,35.761863,36.301204,28.58396627,28.7045479,28.82512953,28.94571117,25.87313733,22.80056349,19.72798966,19.91816325,20.10833684,20.29621627,16.35251011,12.40880394,8.465097779,6.382819645,4.30054151,2.218263376,2.218263376,2.218263376 +25,MA,3,FUEL COMB. OTHER,VOC,7.71994,17.12372,17.11698,17.04704,46.052361,18.239899,18.2668,67.36313347,53.3589766,39.35481973,25.35066286,20.49088597,15.63110908,10.77133219,11.81516965,12.85900712,13.62733561,11.9542125,10.28108938,8.607966268,7.667871378,6.727776488,5.787681598,5.787681598,5.787681598 +25,MA,3,FUEL COMB. OTHER,NH3,0.56865,0.54149,0.53202,0.4659,0.498208,0.494833,0.504543,0.8614118,0.868374967,0.875338133,0.8823013,1.262852021,1.643402742,2.023953463,2.126339939,2.228726416,2.309580972,2.193480628,2.077380283,1.961279939,1.902600338,1.843920737,1.785241136,1.785241136,1.785241136 +25,MA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.37777,0.21082,0.21324,0.21302,0.475081,0.466236,0.481669,4.0605605,4.007679833,3.954799167,3.9019185,2.680553067,1.459187633,0.2378222,0.231115833,0.224409467,0.2177031,0.242623167,0.267543233,0.2924633,0.294395,0.2963267,0.2982584,0.2982584,0.2982584 +25,MA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,0.07535,0.07506,0.07472,0.078608,0.080349,0.082533,0.0780025,0.056298867,0.034595233,0.0128916,0.0100704,0.0072492,0.004428,0.0032587,0.0020894,0.0009201,0.000613433,0.000306767,0.0000001,1.01E-05,2.00E-05,0.00003,0.00003,0.00003 +25,MA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.00145,0.00144,0.00147,0.00127,0.001315,0.001371,0.024168,0.018495867,0.012823733,0.0071516,0.009833067,0.012514533,0.015196,0.015445367,0.015694733,0.0159441,0.016464767,0.016985433,0.0175061,0.0141114,0.0107167,0.007322,0.007322,0.007322 +25,MA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,0.11922,0.11874,0.11821,0.121922,0.124575,0.127881,0.1269395,0.0919971,0.0570547,0.0221123,0.0154022,0.0086921,0.001982,0.001751367,0.001520733,0.0012901,0.001026767,0.000763433,0.0005001,0.000346733,0.000193367,0.00004,0.00004,0.00004 +25,MA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.06532,0.0105,0.01044,0.01038,0.054684,0.056316,0.058317,0.090504521,0.062726698,0.034948875,0.007171051,0.009484361,0.01179767,0.01411098,0.014037283,0.013963587,0.01388989,0.012327628,0.010765366,0.009203104,0.009193781,0.009184459,0.009175137,0.009175137,0.009175137 +25,MA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.05282,0.00646,0.00644,0.0064,0.039858,0.041005,0.042456,0.060144812,0.041605081,0.02306535,0.004525619,0.006914658,0.009303696,0.011692735,0.011160873,0.010629012,0.010097151,0.008736251,0.007375352,0.006014452,0.00694658,0.007878709,0.008810837,0.008810837,0.008810837 +25,MA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.25,0.00539,0.00541,0.00539,0.005167,0.005321,0.005525,0.003599,0.0026652,0.0017314,0.0007976,0.000842067,0.000886533,0.000931,0.000744367,0.000557733,0.0003711,0.0004141,0.0004571,0.0005001,0.000333433,0.000166767,0.0000001,0.0000001,0.0000001 +25,MA,5,METALS PROCESSING,NH3,,0.00002,0.00002,0.00002,0.000011,0.000012,0.000015,0.0001065,8.10E-05,5.54E-05,0.0000299,0.0000266,0.0000233,0.00002,0.0000915,0.000163,0.0002345,0.000583267,0.000932033,0.0012808,0.001407733,0.001534667,0.0016616,0.0016616,0.0016616 +25,MA,5,METALS PROCESSING,NOX,0.00559,0.01059,0.011,0.01083,0.026972,0.028019,0.030064,0.004599,0.0038115,0.003024,0.0022365,0.0017066,0.0011767,0.0006468,0.001048,0.0014492,0.0018504,0.0015294,0.0012084,0.0008874,0.001808267,0.002729133,0.00365,0.00365,0.00365 +25,MA,5,METALS PROCESSING,PM10,0.06523,0.06531,0.06611,0.06396,0.20871,0.215565,0.228697,0.126524886,0.110033938,0.093542991,0.077052043,0.055701219,0.034350396,0.012999572,0.012769757,0.012539942,0.012310128,0.01322498,0.014139833,0.015054686,0.013053524,0.011052362,0.0090512,0.0090512,0.0090512 +25,MA,5,METALS PROCESSING,PM25,0.04435,0.06026,0.06103,0.05913,0.198209,0.204772,0.217291,0.115149877,0.100960391,0.086770905,0.07258142,0.052251362,0.031921304,0.011591246,0.011651953,0.011712661,0.011773368,0.012677415,0.013581461,0.014485508,0.012139405,0.009793303,0.0074472,0.0074472,0.0074472 +25,MA,5,METALS PROCESSING,SO2,0.00372,0.0104,0.01053,0.01015,0.0074,0.007574,0.00804,0.007226,0.005518567,0.003811133,0.0021037,0.0014186,0.0007335,0.0000484,0.0000399,0.0000314,0.0000229,2.10E-05,1.90E-05,0.0000171,1.87E-05,2.04E-05,0.000022,0.000022,0.000022 +25,MA,5,METALS PROCESSING,VOC,0.0577,0.05246,0.05278,0.05008,0.053915,0.054786,0.05808,0.0276475,0.027368,0.0270885,0.026809,0.025165633,0.023522267,0.0218789,0.020206733,0.018534567,0.0168624,0.017923967,0.018985533,0.0200471,0.0311291,0.0422111,0.0532931,0.0532931,0.0532931 +25,MA,5,METALS PROCESSING,CO,0.67276,0.9826,1.01418,1.01019,0.111375,0.112603,0.119287,0.105368,0.104743467,0.104118933,0.1034944,0.079093767,0.054693133,0.0302925,0.0203749,0.0104573,0.0005397,0.0004018,0.0002639,0.000126,0.0003182,0.0005104,0.0007026,0.0007026,0.0007026 +25,MA,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.01534,0.02111,0.0209,0.02047,0.081096,0.081096,0.081096,0.044064,0.116432533,0.188801067,0.2611696,0.2128325,0.1644954,0.1161583,0.1046507,0.0931431,0.0796155,0.075769833,0.071924167,0.0680785,0.070273533,0.072468567,0.0746636,0.0746636,0.0746636 +25,MA,6,PETROLEUM & RELATED INDUSTRIES,CO,0.03603,0.00604,0.00602,0.00597,0.020003,0.020003,0.020003,0.02851,0.0633333,0.0981566,0.1329799,0.119574667,0.106169433,0.0927642,0.094100133,0.095436067,0.090717,0.092289233,0.093861467,0.0954337,0.1060074,0.1165811,0.1271548,0.1271548,0.1271548 +25,MA,6,PETROLEUM & RELATED INDUSTRIES,NH3,,0.0058,0.00576,0.00588,0,0,,0,1.67E-05,3.33E-05,0.00005,0.000163667,0.000277333,0.000391,0.000270667,0.000150333,0.00003,2.67E-05,2.33E-05,0.00002,2.33E-05,2.67E-05,0.00003,0.00003,0.00003 +25,MA,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.00894,0.013,0.01289,0.01265,0.080002,0.080002,0.080002,0.01633,0.061724,0.107118,0.152512,0.126100367,0.099688733,0.0732771,0.069618467,0.065959833,0.0591322,0.059275167,0.059418133,0.0595611,0.059018533,0.058475967,0.0579334,0.0579334,0.0579334 +25,MA,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.05855,0.12251,0.12008,0.11511,0.194456,0.194667,0.194956,0.135104392,0.140719155,0.146333917,0.15194868,0.132413041,0.112877403,0.093341765,0.084798837,0.07625591,0.065602983,0.071099542,0.076596101,0.08209266,0.085560607,0.089028553,0.0924965,0.0924965,0.0924965 +25,MA,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.04758,0.02194,0.02162,0.02099,0.147325,0.147502,0.147738,0.086820818,0.091312606,0.095804394,0.100296181,0.086324274,0.072352366,0.058380459,0.054502214,0.050623969,0.046241159,0.047152562,0.048063965,0.048975368,0.061786412,0.074597456,0.0874085,0.0874085,0.0874085 +25,MA,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.0096,0.03164,0.03111,0.02996,0.107011,0.106464,0.106565,0.098935,0.099579633,0.100224267,0.1008689,0.089278467,0.077688033,0.0660976,0.063291267,0.060484933,0.0548586,0.055002333,0.055146067,0.0552898,0.0624171,0.0695444,0.0766717,0.0766717,0.0766717 +25,MA,7,OTHER INDUSTRIAL PROCESSES,CO,0.0702,0.30107,0.31098,0.30908,0.073077,0.076707,0.865238523,0.8704345,1.1184509,1.3664673,1.6144837,1.331166534,1.047849368,0.764532202,0.857283493,0.950034784,1.042786075,2.830109624,4.617433173,6.404756722,5.30216107,4.199565417,3.096969765,3.096969765,3.096969765 +25,MA,7,OTHER INDUSTRIAL PROCESSES,VOC,4.06567,3.67922,3.73213,3.70444,4.058521,4.144239,3.932977793,3.062187,3.118606467,3.175025933,3.2314454,2.764394251,2.297343102,1.830291954,1.953545447,2.076798941,2.200052535,2.208365003,2.216677472,2.22498994,2.210503592,2.196017244,2.181530896,2.181530896,2.181530896 +25,MA,7,OTHER INDUSTRIAL PROCESSES,SO2,0.62597,0.60533,0.62756,0.62943,0.43478,0.455985,0.480447,0.370609861,0.380375874,0.390141887,0.3999079,0.3901331,0.3803583,0.3705835,0.296923967,0.223264433,0.1496049,0.152743267,0.155881633,0.15902,0.126591833,0.094163667,0.0617355,0.0617355,0.0617355 +25,MA,7,OTHER INDUSTRIAL PROCESSES,PM25,0.86854,0.72141,0.74594,0.8619,1.080325,1.142244,3.082465598,2.340660019,2.350999595,2.361339171,2.371678747,2.313417603,2.255156459,2.196895315,2.345207519,2.493519723,2.641832011,2.804926764,2.968021516,3.131116269,3.280227842,3.429339416,3.578450989,3.578450989,3.578450989 +25,MA,7,OTHER INDUSTRIAL PROCESSES,PM10,2.34055,2.68126,2.79336,3.38686,3.42262,3.663248,5.769985389,2.930680466,2.931346872,2.932013277,2.932679683,3.488287267,4.04389485,4.599502434,4.618652559,4.637802684,4.656952909,4.78820703,4.919461151,5.050715271,5.208114748,5.365514224,5.5229137,5.5229137,5.5229137 +25,MA,7,OTHER INDUSTRIAL PROCESSES,NOX,1.0039,1.30543,1.35065,1.34332,0.661456,0.694082,0.732741,0.6369075,0.5704728,0.5040381,0.4376034,0.441756567,0.445909733,0.4500629,0.411003433,0.371943967,0.3328845,0.34864748,0.36441046,0.38017344,0.318414612,0.256655784,0.194896956,0.194896956,0.194896956 +25,MA,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00057,0.00058,0.00058,0.006875,0.00713,0.007468,0.7809934,0.785398367,0.789803333,0.7942083,0.530993333,0.267778367,0.0045634,0.007421033,0.010278667,0.0131363,0.011391833,0.009647367,0.0079029,0.009269033,0.010635167,0.0120013,0.0120013,0.0120013 +25,MA,8,SOLVENT UTILIZATION,SO2,0.00937,0.23052,0.23902,0.24045,0.004828,0.005109,0.005283,0.005138,0.0034447,0.0017514,0.0000581,0.004637927,0.009217753,0.01379758,0.01342732,0.01305706,0.0126868,0.0100884,0.00749,0.0048916,0.006515669,0.008139737,0.009763806,0.009763806,0.009763806 +25,MA,8,SOLVENT UTILIZATION,VOC,138.304,122.96375,124.72502,115.71094,89.589592,82.459386,85.939081,93.5273895,93.26951313,93.01163677,92.7537604,82.79833736,72.84291433,62.88749129,58.65291727,54.41834325,47.74731351,51.4259526,55.10459168,58.78323076,55.69872397,52.61421717,49.52971038,49.52971038,49.52971038 +25,MA,8,SOLVENT UTILIZATION,PM25,0.00791,0.84086,0.84012,0.85927,0.07065,0.073192,0.076405,0.065858641,0.065367609,0.064876576,0.064385544,0.050778529,0.037171515,0.0235645,0.021486737,0.019408974,0.017331129,0.016732758,0.016134387,0.015536017,0.019592227,0.023648437,0.027704647,0.027704647,0.027704647 +25,MA,8,SOLVENT UTILIZATION,PM10,0.00914,0.84333,0.84271,0.86189,0.07065,0.073192,0.076405,0.076960888,0.077005519,0.07705015,0.077094781,0.063021408,0.048948034,0.034874661,0.032463307,0.030051954,0.0276405,0.0242462,0.0208519,0.0174576,0.020937385,0.024417169,0.027896954,0.027896954,0.027896954 +25,MA,8,SOLVENT UTILIZATION,NOX,0.01504,0.11519,0.11719,0.11742,0.031952,0.033109,0.033812,0.024638,0.019387233,0.014136467,0.0088857,0.012985487,0.017085274,0.021185061,0.020471107,0.019757154,0.0190432,0.0147047,0.0103662,0.0060277,0.008287651,0.010547602,0.012807554,0.012807554,0.012807554 +25,MA,8,SOLVENT UTILIZATION,NH3,,0.00085,0.00086,0.00087,0.001088,0.001188,0.001317,0.0719465,0.065902067,0.059857633,0.0538132,0.046070367,0.038327533,0.0305847,0.029805533,0.029026367,0.0282472,0.0264534,0.0246596,0.0228658,0.0239933,0.0251208,0.0262483,0.0262483,0.0262483 +25,MA,8,SOLVENT UTILIZATION,CO,0.129,0.00532,0.00553,0.00557,0.021435,0.022434,0.023449,0.0109745,0.008616933,0.006259367,0.0039018,0.016433635,0.02896547,0.041497305,0.04121247,0.040927635,0.0406428,0.0287275,0.0168122,0.0048969,0.012269615,0.019642331,0.027015046,0.027015046,0.027015046 +25,MA,9,STORAGE & TRANSPORT,SO2,0.0025,0.00034,0.00036,0.00037,0.023061,0.023106,0.024839,0.0111645,0.011046,0.0109275,0.010809,0.007226,0.003643,0.00006,5.67E-05,5.33E-05,0.00005,3.33E-05,1.67E-05,0,0,0,0,0,0 +25,MA,9,STORAGE & TRANSPORT,CO,0.004,0.00402,0.00426,0.00437,0.002048,0.002182,0.00237,0.01717,0.011456833,0.005743667,0.0000305,0.000243667,0.000456833,0.00067,0.00063,0.00059,0.00055,0.000366667,0.000183333,0,0,0,0,0,0 +25,MA,9,STORAGE & TRANSPORT,VOC,20.63277,17.76195,17.77846,17.77342,21.537524,21.59662,21.923604,10.6425135,10.6960841,10.7496547,10.8032253,10.65667162,10.51011795,10.36356427,10.29843731,10.23331036,9.498028238,9.498060715,9.498093191,9.498125668,9.303295423,9.108465179,8.913634934,8.913634934,8.913634934 +25,MA,9,STORAGE & TRANSPORT,PM25,0.02247,0.03215,0.03221,0.03201,0.058634,0.060887,0.063979,0.066487043,0.056589294,0.046691544,0.036793795,0.03636536,0.035936925,0.03550849,0.033628076,0.031747663,0.029867249,0.031920774,0.033974299,0.036027824,0.031115386,0.026202949,0.021290511,0.021290511,0.021290511 +25,MA,9,STORAGE & TRANSPORT,PM10,0.04468,0.05889,0.05915,0.059,0.126406,0.131104,0.137709,0.144196178,0.121284407,0.098372636,0.075460865,0.066745305,0.058029745,0.049314186,0.049537041,0.049759896,0.049982752,0.053520374,0.057057997,0.06059562,0.053518887,0.046442155,0.039365423,0.039365423,0.039365423 +25,MA,9,STORAGE & TRANSPORT,NOX,0.001,0.00519,0.00548,0.00563,0.010373,0.010738,0.011584,0.013493,0.009437667,0.005382333,0.001327,0.001191333,0.001055667,0.00092,0.00087,0.00082,0.00077,0.0005134,0.0002568,0.0000002,1.33E-07,6.67E-08,0,0,0 +25,MA,9,STORAGE & TRANSPORT,NH3,,0.00185,0.00185,0.00185,0.004963,0.005167,0.005323,0.002541,0.002077333,0.001613667,0.00115,0.000766667,0.000383333,0,0.000501633,0.001003267,0.0015049,0.001481933,0.001458967,0.001436,0.001748,0.00206,0.002372,0.002372,0.002372 +25,MA,10,WASTE DISPOSAL & RECYCLING,NOX,6.43854,8.42154,8.30793,8.69945,9.193813,7.196617,7.34909,5.264704531,5.078696296,4.892688061,4.706679826,4.801507853,4.896335879,4.991163906,5.008906674,5.026649443,5.044779712,5.442356997,5.839934282,6.237511568,5.95950662,5.681501672,5.403496724,5.403496724,5.403496724 +25,MA,10,WASTE DISPOSAL & RECYCLING,VOC,6.41908,8.16105,7.98608,8.68723,9.712178,4.894753,4.936898,4.343568721,4.318005821,4.292442921,4.266880021,3.527001214,2.787122407,2.047243601,1.87923477,1.71122594,1.54323841,2.84563855,4.14803869,5.45043883,4.777178959,4.103919088,3.430659218,3.430659218,3.430659218 +25,MA,10,WASTE DISPOSAL & RECYCLING,SO2,3.2012,2.61135,2.61307,2.65976,2.06972,2.107163,2.156304,0.79531455,0.854114415,0.912914281,0.971714147,1.062613694,1.153513241,1.244412788,1.142661818,1.040910848,0.939162177,1.018460212,1.097758247,1.177056282,1.079405681,0.98175508,0.884104478,0.884104478,0.884104478 +25,MA,10,WASTE DISPOSAL & RECYCLING,CO,1.97643,66.66983,63.13346,72.65101,84.698342,13.012066,13.043277,3.861039411,3.677331183,3.493622956,3.309914729,4.104922723,4.899930716,5.69493871,5.068521626,4.442104541,3.816012957,15.78754989,27.75908683,39.73062377,33.19876358,26.6669034,20.13504321,20.13504321,20.13504321 +25,MA,10,WASTE DISPOSAL & RECYCLING,PM10,4.99018,8.43512,8.17717,9.1674,10.659673,3.488244,3.50627,0.605280431,0.583048219,0.560816007,0.538583795,0.63106915,0.723554505,0.81603986,0.759527872,0.703015884,0.646523136,1.980383276,3.314243416,4.648103557,4.138590249,3.629076942,3.119563635,3.119563635,3.119563635 +25,MA,10,WASTE DISPOSAL & RECYCLING,NH3,3.10248,4.14686,4.13564,4.19196,4.252074,4.365854,4.446017,1.825393697,1.821306864,1.81722003,1.813133197,1.264667865,0.716202532,0.1677372,0.205416569,0.243095937,0.280777206,0.280561882,0.280346557,0.280131233,0.256421477,0.232711721,0.209001965,0.209001965,0.209001965 +25,MA,10,WASTE DISPOSAL & RECYCLING,PM25,4.12097,8.18423,7.91388,8.89873,10.326911,3.149076,3.162624,0.472529756,0.455739355,0.438948955,0.422158555,0.508752674,0.595346793,0.681940913,0.632205723,0.582470534,0.532754585,1.589043618,2.645332652,3.701621685,3.406122257,3.11062283,2.815123402,2.815123402,2.815123402 +25,MA,11,HIGHWAY VEHICLES,SO2,9.03638,5.72575,5.86103,5.9026,5.99632,3.40801,3.42082,3.761127775,3.426906235,3.092684695,2.758463156,1.698366722,0.638270287,0.624578962,0.59212278,0.587615796,0.524450003,0.534625706,0.54480141,0.554977113,0.596077811,0.627402914,0.622687174,0.236661082,0.165821677 +25,MA,11,HIGHWAY VEHICLES,VOC,183.17498,122.57532,115.98227,111.49755,104.66925,89.78843,83.36015,59.2043307,56.50759806,53.81086543,51.1141328,45.8503667,40.5866006,34.48141569,36.81359988,31.91669901,34.31139638,32.66274071,31.01408503,29.36542936,27.53345631,24.14978902,24.74226167,19.34192514,17.75848844 +25,MA,11,HIGHWAY VEHICLES,PM25,5.5891,3.91902,3.74805,3.50713,3.2936,2.81058,2.60896,6.16993271,6.097449802,6.024966894,5.952483987,5.237258334,4.522032682,3.941015929,3.042961273,2.326709555,2.615758241,2.319249762,2.022741284,1.726232805,1.612414748,1.625764038,1.785700381,1.39139862,1.26624576 +25,MA,11,HIGHWAY VEHICLES,PM10,6.78532,5.00898,4.85186,4.58185,4.35941,3.85057,3.62968,7.601468173,7.559410794,7.517353415,7.475296036,6.828845218,6.1823944,5.557980636,4.509002216,3.736655868,5.861382426,5.334999704,4.808616981,4.282234259,4.226326153,4.197110358,4.628841701,4.307022861,4.146259347 +25,MA,11,HIGHWAY VEHICLES,NOX,187.37121,162.80282,165.02148,162.93976,159.0317,145.80565,134.19603,154.6130341,145.8789972,137.1449602,128.4109232,112.213925,96.01692665,84.74814176,63.76175788,53.28429687,60.81886353,55.45556005,50.09225657,44.72895309,40.45384573,40.62747198,41.86303478,27.73241077,24.00677595 +25,MA,11,HIGHWAY VEHICLES,NH3,3.18261,4.8018,5.30447,5.04882,5.13543,5.34577,5.40776,2.864811089,2.823333617,2.781856146,2.740378674,2.5419638,2.343548926,2.125722055,2.320200552,1.835966271,1.87908292,1.831424146,1.783765371,1.736106597,1.669431215,1.699512453,1.783069997,1.523608232,1.481183199 +25,MA,11,HIGHWAY VEHICLES,CO,2206.34293,1554.62075,1508.18272,1465.72197,1371.52847,1257.92179,1196.35918,746.9647977,706.3608538,665.7569099,625.152966,521.7597098,418.3664537,383.8199275,394.3726581,370.1961052,327.6152675,322.6778191,317.7403706,312.8029221,299.2957461,272.3793182,292.9219093,237.8956371,220.92275 +25,MA,12,OFF-HIGHWAY,PM10,6.48754,6.74521,6.68662,6.61063,6.5563,6.414,6.31006,6.234061218,5.410371679,4.586682139,3.7629926,3.635684906,3.508377212,3.276598228,3.312142207,3.042442446,3.109347133,2.950010722,2.790674311,2.6313379,2.419160788,2.098222861,1.994806565,1.921591251,1.848375936 +25,MA,12,OFF-HIGHWAY,NH3,0.54589,0.66933,0.68469,0.70399,0.08213,0.08213,0.08213,0.035631463,0.036020088,0.036408712,0.036797337,0.034460732,0.032124128,0.038244326,0.033109476,0.033617861,0.039644088,0.040614588,0.041585089,0.042555589,0.039377279,0.029984199,0.03302066,0.032955604,0.032890549 +25,MA,12,OFF-HIGHWAY,NOX,58.42587,65.25161,66.16644,66.48586,67.22826,66.34099,66.06283,76.39067478,65.75586821,55.12106165,44.48625508,42.86506257,41.24387007,43.41416003,40.10755057,38.83284872,39.06395011,39.48105577,39.89816144,40.3152671,35.97660004,28.16200007,27.2992659,26.52832075,25.7573756 +25,MA,12,OFF-HIGHWAY,VOC,53.62727,59.39503,55.15348,53.2652,52.77661,52.1572,51.40642,55.36381888,53.56025367,51.75668845,49.95312324,47.29927091,44.64541858,42.02855525,39.96957503,38.51249044,35.75458596,33.1727131,30.59084025,28.0089674,25.30419992,20.9410459,19.89466497,19.34148335,18.78830173 +25,MA,12,OFF-HIGHWAY,SO2,5.74315,7.11602,7.34161,7.58021,7.77845,7.82272,7.98472,22.69178408,17.33310361,11.97442314,6.615742674,5.731365063,4.846987452,4.27166426,4.302297658,2.092937411,3.768146932,2.843314681,1.918482429,0.993650178,0.855030881,0.561259309,0.577792288,0.594693567,0.611594846 +25,MA,12,OFF-HIGHWAY,PM25,5.95346,6.18798,6.13528,6.06643,6.01221,5.87984,5.78471,5.78967866,5.022106321,4.254533983,3.486961644,3.376469475,3.265977306,2.991051836,3.009981346,2.758954134,2.926807221,2.779399351,2.631991481,2.48458361,2.284230652,1.982470032,1.883524735,1.812994905,1.742465075 +25,MA,12,OFF-HIGHWAY,CO,470.19821,533.27211,517.52733,517.34829,522.45768,526.97271,537.17096,445.0654788,428.2903723,411.5152657,394.7401591,366.7609869,338.7818147,343.4507582,310.3235368,302.8032848,293.5055335,285.5528549,277.6001762,269.6474976,260.6413966,243.987246,242.6291946,242.7811183,242.9330419 +25,MA,14,MISCELLANEOUS,NH3,2.49018,3.02201,3.11317,2.96286,3.13446,3.03939,2.76260338,2.212780973,2.217489456,2.22219794,2.226906423,2.202276483,2.177646542,2.153016602,2.17378744,2.194558279,2.215329118,1.801501675,1.387674233,0.97384679,4.09668381,7.219520831,10.34235785,10.34235785,10.34235785 +25,MA,14,MISCELLANEOUS,CO,4.25861,2.95311,5.11708,2.3255,31.78445,13.85687,15.79611,0.48184,0.763996513,1.046153027,1.32830954,1.090213731,0.852117922,0.614022113,0.722995668,0.831969223,0.940942779,0.875635457,0.810328136,0.745020814,0.734891717,0.724762619,0.714633522,0.714633522,0.714633522 +25,MA,14,MISCELLANEOUS,NOX,0.06438,0.07324,0.12998,0.06041,0.68265,0.29803,0.33965,0.01176,0.019603261,0.027446521,0.035289782,0.034866481,0.034443181,0.03401988,0.36028515,0.686550421,1.012815691,0.875500183,0.738184675,0.600869167,0.483366388,0.365863609,0.248360831,0.248360831,0.248360831 +25,MA,14,MISCELLANEOUS,PM10,256.9448,179.33331,189.48458,197.74637,222.410028,239.677605,201.7878185,164.8582356,164.8904168,164.9225979,164.9547791,156.417789,147.8807989,139.3438088,137.7222652,136.1007216,134.4791781,116.7009155,98.92265294,81.14439037,69.14803632,57.15168227,45.15532823,45.15532823,45.15532823 +25,MA,14,MISCELLANEOUS,PM25,47.01189,33.25076,35.07532,36.57188,42.715736,44.040184,32.5630576,14.89807813,14.92539928,14.95272043,14.98004158,15.25307571,15.52610983,15.79914395,15.64175721,15.48437047,15.32698373,13.60051891,11.87405409,10.14758927,9.257903577,8.368217881,7.478532186,7.478532186,7.478532186 +25,MA,14,MISCELLANEOUS,VOC,1.54652,1.28985,1.54592,1.24823,2.497839,1.657274,1.752189,0.4274855,0.495119714,0.562753929,0.630388143,0.568363055,0.506337967,0.444312879,0.414816521,0.385320162,0.355823804,0.353329133,0.350834462,0.34833979,0.318680013,0.289020236,0.259360459,0.259360459,0.259360459 +25,MA,14,MISCELLANEOUS,SO2,0.00186,0.00225,0.00434,0.00186,0.18459,0.07913,0.09055,0,0.003341493,0.006682986,0.010024478,0.007672604,0.005320729,0.002968854,0.009202876,0.015436899,0.021670921,0.01917103,0.016671139,0.014171248,0.015644117,0.017116985,0.018589854,0.018589854,0.018589854 +25,MA,15,WILDFIRES,PM25,,,,,,,,0.02331,0.02331,0.02331,0.053919606,0.053919606,0.053919606,0.01902605,0.01902605,0.01902605,0,0,0,0.132932355,0.132932355,0.132932355,0.128109894,0.128109894,0.128109894 +25,MA,15,WILDFIRES,CO,,,,,,,,0.28856,0.28856,0.28856,0.564875595,0.564875595,0.564875595,0.20575,0.20575,0.20575,0,0,0,1.44020836,1.44020836,1.44020836,1.506811807,1.506811807,1.506811807 +25,MA,15,WILDFIRES,VOC,,,,,,,,0.06612,0.06612,0.06612,0.135197883,0.135197883,0.135197883,0.0490181,0.0490181,0.0490181,0,0,0,0.343024735,0.343024735,0.343024735,0.354842417,0.354842417,0.354842417 +25,MA,15,WILDFIRES,SO2,,,,,,,,0.001654731,0.001654731,0.001654731,0.006354575,0.006354575,0.006354575,0.002066638,0.002066638,0.002066638,0,0,0,0.014357412,0.014357412,0.014357412,0.010599234,0.010599234,0.010599234 +25,MA,15,WILDFIRES,NOX,,,,,,,,0.002677515,0.002677515,0.002677515,0.014606381,0.014606381,0.014606381,0.00450937,0.00450937,0.00450937,0,0,0,0.031233547,0.031233547,0.031233547,0.018190299,0.018190299,0.018190299 +25,MA,15,WILDFIRES,NH3,,,,,,,,0.004452066,0.004452066,0.004452066,0.00940507,0.00940507,0.00940507,0.00340995,0.00340995,0.00340995,0,0,0,0.023862346,0.023862346,0.023862346,0.024684486,0.024684486,0.024684486 +25,MA,15,WILDFIRES,PM10,,,,,,,,0.02764,0.02764,0.02764,0.063625135,0.063625135,0.063625135,0.0224507,0.0224507,0.0224507,0,0,0,0.15685749,0.15685749,0.15685749,0.151170083,0.151170083,0.151170083 +25,MA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.011489069,0.034213107,0.056937144,0.079661182,0.062639546,0.045617909,0.028596273,0.019651049,0.010705825,0.001760601,0.001760601,0.001760601 +25,MA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,0.694592,2.083960067,3.473328133,4.8626962,3.821776974,2.780857748,1.739938522,1.195625198,0.651311875,0.106998551,0.106998551,0.106998551 +25,MA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.014058387,0.028944764,0.04383114,0.058717517,0.047734505,0.036751493,0.025768481,0.017739107,0.009709733,0.001680359,0.001680359,0.001680359 +25,MA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.07475099,0.212454237,0.350157483,0.48786073,0.384844756,0.281828782,0.178812809,0.122903568,0.066994328,0.011085087,0.011085087,0.011085087 +25,MA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.06334835,0.180046127,0.296743903,0.41344168,0.32613982,0.238837961,0.151536101,0.104155339,0.056774578,0.009393816,0.009393816,0.009393816 +25,MA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.006620619,0.015816758,0.025012897,0.034209036,0.02737121,0.020533384,0.013695557,0.009420017,0.005144477,0.000868936,0.000868936,0.000868936 +25,MA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.16515493,0.491813153,0.818471377,1.1451296,0.900443508,0.655757416,0.411071324,0.282482311,0.153893299,0.025304287,0.025304287,0.025304287 +26,MI,1,FUEL COMB. ELEC. UTIL.,NH3,0.06697,0.03956,0.04696,0.08046,0.090906,0.098404,0.065125,0.26225598,0.236015125,0.209774271,0.183533416,0.171732477,0.159931539,0.1481306,0.182435423,0.216740247,0.25104507,0.198079788,0.145114507,0.092149225,0.096903087,0.101656949,0.106410812,0.106410812,0.106410812 +26,MI,1,FUEL COMB. ELEC. UTIL.,NOX,279.98267,197.71121,200.52541,231.08925,198.019902,171.455486,151.671886,139.995296,123.295309,112.299208,121.1404221,103.305728,105.862235,111.3760303,99.9018195,88.42760869,74.75175173,69.36910637,63.98646101,58.60381566,52.45439279,46.30496992,40.15554705,33.336994,25.376586 +26,MI,1,FUEL COMB. ELEC. UTIL.,PM10,13.40141,6.11681,6.2232,5.44706,18.485244,16.595944,18.024722,13.53073832,13.93864669,14.34655506,14.75446343,11.5609644,8.367465373,5.173966343,4.677683215,4.181400086,3.685116958,3.443534766,3.201952573,2.960370381,2.383120665,1.80587095,1.228621235,1.228621235,1.228621235 +26,MI,1,FUEL COMB. ELEC. UTIL.,PM25,8.1225,3.47696,3.52554,3.19908,16.125269,14.245908,14.921898,10.84422677,11.08729585,11.33036493,11.57343402,8.639013929,5.704593843,2.770173757,2.522501765,2.274829773,2.027157781,1.905874438,1.784591094,1.66330775,1.447968687,1.232629624,1.017290561,1.017290561,1.017290561 +26,MI,1,FUEL COMB. ELEC. UTIL.,SO2,380.21079,384.81974,413.36657,438.46892,412.593198,378.597963,356.565815,352.0210416,350.812676,334.753577,355.7642107,330.267823,338.013808,339.7190819,303.2051482,266.6912145,230.0326057,205.0812972,180.1299888,155.1786804,125.5128386,95.84699673,66.18115487,64.468042,49.63739 +26,MI,1,FUEL COMB. ELEC. UTIL.,VOC,4.66601,1.35871,1.37913,1.57237,0.846932,1.447418,1.44454,1.395317,1.399322646,1.403328291,1.407333937,1.425013926,1.442693914,1.460373903,1.553143529,1.645913154,1.558977665,1.519543242,1.480108818,1.440674395,1.37510628,1.309538164,1.243970049,1.243970049,1.243970049 +26,MI,1,FUEL COMB. ELEC. UTIL.,CO,24.66184,12.43902,12.90493,14.95503,13.544054,13.458091,13.698283,14.960167,15.28387315,15.60757931,15.93128546,15.8323289,15.73337233,15.63441577,15.64928928,15.66416279,15.2052106,15.17102277,15.13683495,15.10264712,14.60893658,14.11522604,13.6215155,13.6215155,13.6215155 +26,MI,2,FUEL COMB. INDUSTRIAL,PM10,3.85542,2.34935,2.29683,2.24968,3.577834,3.367955,3.584533,9.206200996,9.603488656,10.00077631,10.39806397,7.574190739,4.750317504,1.926444269,3.073789408,4.221134546,1.586257685,3.734773563,5.883289441,8.031805319,8.760632695,9.489460072,10.21828745,10.21828745,10.21828745 +26,MI,2,FUEL COMB. INDUSTRIAL,NOX,94.60553,65.84183,65.06022,63.55937,65.829508,65.910516,68.095848,52.78479638,53.01365281,53.24250925,53.47136568,48.47437728,43.47738887,38.48040047,37.76587705,37.05135364,33.14662023,33.40615888,33.66569754,33.9252362,31.52187024,29.11850429,26.71513833,26.71513833,26.71513833 +26,MI,2,FUEL COMB. INDUSTRIAL,CO,25.68223,23.9671,23.48549,23.00543,22.278685,22.257447,23.140035,24.41996998,24.85061834,25.28126669,25.71191505,24.63005931,23.54820356,22.46634782,22.68666346,22.9069791,21.67716474,22.65885774,23.64055073,24.62224373,25.36510919,26.10797466,26.85084012,26.85084012,26.85084012 +26,MI,2,FUEL COMB. INDUSTRIAL,NH3,0.32985,0.63312,0.62395,0.60558,0.500191,0.516242,0.523133,0.543291313,0.530170758,0.517050202,0.503929646,0.432087921,0.360246195,0.28840447,0.280324903,0.272245337,0.25546377,0.277313527,0.299163283,0.32101304,0.327848402,0.334683765,0.341519127,0.341519127,0.341519127 +26,MI,2,FUEL COMB. INDUSTRIAL,PM25,2.80061,1.68724,1.65088,1.62005,2.869063,2.687454,2.819807,4.445500804,4.719680362,4.99385992,5.268039478,4.073328557,2.878617636,1.683906714,1.853093992,2.02228127,1.483692548,2.937190198,4.390687848,5.844185498,6.883304289,7.92242308,8.961541872,8.961541872,8.961541872 +26,MI,2,FUEL COMB. INDUSTRIAL,SO2,143.74211,63.1664,63.03072,61.20618,40.877686,40.382919,43.276996,64.03724675,65.79181893,67.54639111,69.30096329,55.37029939,41.43963549,27.50897159,26.85504381,26.20111602,14.52630824,15.40588822,16.28546819,17.16504817,13.98222461,10.79940105,7.616577483,7.616577483,7.616577483 +26,MI,2,FUEL COMB. INDUSTRIAL,VOC,2.75576,3.04764,3.01064,2.9586,1.89005,1.932357,1.951271,3.695009987,3.028498707,2.361987427,1.695476147,1.892252273,2.089028399,2.285804525,2.20431931,2.122834095,2.02688888,1.951278777,1.875668675,1.800058573,1.802070988,1.804083403,1.806095818,1.806095818,1.806095818 +26,MI,3,FUEL COMB. OTHER,PM25,20.01756,17.52257,17.49179,17.40772,21.892148,20.950849,21.019093,8.508651037,8.539129819,8.569608601,8.600087383,15.0493008,21.49851421,27.94772762,32.11027515,36.27282268,41.18881939,34.1199952,27.05117102,19.98234683,17.11305073,14.24375463,11.37445853,11.37445853,11.37445853 +26,MI,3,FUEL COMB. OTHER,SO2,42.27019,20.16563,20.44112,18.76635,16.774525,17.237552,17.648612,6.111000346,6.216659125,6.322317903,6.427976681,6.558633008,6.689289335,6.819945662,6.22190054,5.623855418,5.052480856,3.9647189,2.876956944,1.789194989,1.418692509,1.048190029,0.67768755,0.67768755,0.67768755 +26,MI,3,FUEL COMB. OTHER,PM10,20.68714,17.74179,17.71373,17.61173,22.208084,21.137375,21.210438,10.61604744,10.65211202,10.68817661,10.72424119,16.49674677,22.26925235,28.04175794,32.26900517,36.49625239,41.47648,34.3450586,27.21363721,20.08221581,17.22568927,14.36916273,11.51263619,11.51263619,11.51263619 +26,MI,3,FUEL COMB. OTHER,NOX,102.92444,114.57748,109.21985,101.04472,33.092917,34.575264,34.993533,31.99050057,31.34899282,30.70748506,30.06597731,31.22845293,32.39092855,33.55340418,32.84378713,32.13417009,31.4303042,32.11426045,32.79821669,33.48217293,31.46554085,29.44890876,27.43227667,27.43227667,27.43227667 +26,MI,3,FUEL COMB. OTHER,NH3,0.27679,0.27851,0.26912,0.24307,0.253181,0.254689,0.257364,0.199376396,0.190028968,0.18068154,0.171334112,1.856044914,3.540755715,5.225466517,5.181728461,5.137990405,5.10691658,4.968786018,4.830655457,4.692524895,4.341022755,3.989520614,3.638018474,3.638018474,3.638018474 +26,MI,3,FUEL COMB. OTHER,CO,205.30604,177.35918,178.04376,177.05633,60.971855,152.303759,153.214887,46.46537023,46.41394892,46.36252761,46.31110631,101.8480427,157.3849791,212.9219155,231.3226735,249.7234314,272.2448186,229.9946954,187.7445721,145.4944488,127.8959053,110.2973619,92.69881841,92.69881841,92.69881841 +26,MI,3,FUEL COMB. OTHER,VOC,33.69413,46.78535,46.6495,46.31193,74.290005,43.761487,43.814111,34.51000325,28.30994365,22.10988405,15.90982445,19.5316707,23.15351694,26.77536319,32.43744329,38.09952338,44.59941313,36.85026711,29.10112109,21.35197506,18.2242191,15.09646313,11.96870717,11.96870717,11.96870717 +26,MI,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.00049,0.05576,0.0573,0.05744,0.039419,0.040664,0.042205,0.2187405,0.2128645,0.2069885,0.2011125,0.2107253,0.2203381,0.2299509,0.228477875,0.22700485,0.225531825,0.219826672,0.214121518,0.208416365,0.198150057,0.187883748,0.17761744,0.17761744,0.17761744 +26,MI,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,0.00001,0.00001,0.000011,0.0290405,0.116451667,0.203862833,0.291274,0.26232345,0.2333729,0.20442235,0.170887088,0.137351827,0.103816565,0.112008,0.120199435,0.12839087,0.106274416,0.084157962,0.062041507,0.062041507,0.062041507 +26,MI,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.06063,0.09498,0.09796,0.09929,0.073374,0.07548,0.078077,0.1102455,0.100654167,0.091062833,0.0814715,0.075512842,0.069554183,0.063595525,0.063367972,0.063140418,0.062912865,0.06537681,0.067840755,0.0703047,0.061523983,0.052743267,0.04396255,0.04396255,0.04396255 +26,MI,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.21567,0.27121,0.27712,0.27914,0.195071,0.201083,0.208452,0.186349,0.199692547,0.213036094,0.226379641,0.192086382,0.157793124,0.123499866,0.120184977,0.116870087,0.113555198,0.127259311,0.140963423,0.154667536,0.148449705,0.142231875,0.136014044,0.136014044,0.136014044 +26,MI,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.13189,0.10222,0.10419,0.1048,0.124397,0.128264,0.132977,0.148599695,0.159084212,0.169568729,0.180053246,0.148279241,0.116505235,0.08473123,0.085967877,0.087204523,0.08844117,0.094699258,0.100957347,0.107215436,0.105671743,0.10412805,0.102584357,0.102584357,0.102584357 +26,MI,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,0.00621,0.00643,0.00658,0.000589,0.000607,0.00063,0.0004905,0.0145785,0.0286665,0.0427545,0.036230702,0.029706903,0.023183105,0.02739483,0.031606555,0.03581828,0.036078792,0.036339303,0.036599815,0.036310517,0.036021218,0.03573192,0.03573192,0.03573192 +26,MI,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,14.17565,10.26535,10.49166,10.71412,9.332284,9.55478,9.880622,7.3646795,7.328487667,7.292295833,7.256104,5.208101695,3.16009939,1.112097085,1.102662475,1.093227864,1.083793254,1.092786246,1.101779238,1.11077223,1.179383698,1.247995166,1.316606635,1.316606635,1.316606635 +26,MI,5,METALS PROCESSING,PM10,25.60753,9.46777,9.71293,9.30424,4.413886,4.526675,4.815827,2.9990885,3.777559716,4.556030931,5.334502147,4.576199039,3.817895931,3.059592823,3.114362846,3.16913287,3.223902894,3.005185431,2.786467969,2.567750506,2.546255563,2.52476062,2.503265676,2.503265676,2.503265676 +26,MI,5,METALS PROCESSING,PM25,15.91373,5.42853,5.58449,5.38013,4.006398,4.108045,4.372683,4.616229482,4.566210202,4.516190923,4.466171644,3.871152731,3.276133818,2.681114905,2.740900425,2.800685944,2.860471464,2.674562938,2.488654413,2.302745887,2.312596849,2.322447811,2.332298773,2.332298773,2.332298773 +26,MI,5,METALS PROCESSING,VOC,8.35331,8.82993,9.20138,8.97182,2.638501,2.703165,2.879551,2.141581,2.335708,2.529835,2.723962,2.191069935,1.658177871,1.125285806,1.178142334,1.230998862,1.283855391,1.253052634,1.222249877,1.19144712,1.144801285,1.09815545,1.051509615,1.051509615,1.051509615 +26,MI,5,METALS PROCESSING,NH3,0.02496,0.02496,0.02615,0.02567,0.000866,0.000904,0.000977,0.0594475,0.080904167,0.102360833,0.1238175,0.091180333,0.058543167,0.025906,0.023344417,0.020782833,0.01822125,0.023404985,0.02858872,0.033772455,0.03341647,0.033060485,0.0327045,0.0327045,0.0327045 +26,MI,5,METALS PROCESSING,CO,54.16018,35.57853,37.08575,36.00013,29.429117,30.267207,32.389879,25.1267055,25.00808667,24.88946783,24.770849,23.12010003,21.46935107,19.8186021,20.20655909,20.59451607,20.98247306,21.34554329,21.70861351,22.07168374,24.21681476,26.36194578,28.5070768,28.5070768,28.5070768 +26,MI,5,METALS PROCESSING,NOX,6.42214,15.65568,16.17386,15.93914,16.654216,17.224814,18.136541,11.93793918,11.50877161,11.07960403,10.65043645,10.52647728,10.40251812,10.27855896,10.01799058,9.757422199,9.496853817,10.06066706,10.6244803,11.18829354,12.13058034,13.07286715,14.01515395,14.01515395,14.01515395 +26,MI,5,METALS PROCESSING,SO2,71.75561,7.61809,7.99398,7.84143,3.792037,3.920938,4.158131,7.502419773,6.364393139,5.226366505,4.088339871,4.63252106,5.176702249,5.720883438,5.121904335,4.522925233,3.92394613,3.7511974,3.57844867,3.40569994,2.677822581,1.949945221,1.222067862,1.222067862,1.222067862 +26,MI,6,PETROLEUM & RELATED INDUSTRIES,CO,24.40078,2.01983,2.08409,2.08351,7.156334,7.18403,7.240447,1.8075825,4.574687157,7.341791813,10.10889647,7.016998307,3.925100143,0.83320198,8.054567141,15.2759323,18.08384979,18.31455516,18.54526053,18.7759659,17.29332032,15.81067475,14.32802918,14.32802918,14.32802918 +26,MI,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.37306,0.15198,0.15903,0.15903,0.23673,0.240211,0.240211,0,0,0,,0,0,0,0.0001011,0.0002022,0.0003033,0.003712617,0.007121933,0.01053125,0.010702802,0.010874353,0.011045905,0.011045905,0.011045905 +26,MI,6,PETROLEUM & RELATED INDUSTRIES,NOX,3.25202,10.51274,10.92744,11.00268,7.359436,7.384719,7.439921,6.3357353,8.399889373,10.46404345,12.52819752,8.482604165,4.43701081,0.391417455,6.07720475,11.76299204,11.26200538,11.0163383,10.77067122,10.52500414,10.25190168,9.978799218,9.705696758,9.705696758,9.705696758 +26,MI,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.46188,0.35401,0.36317,0.35918,1.08912,1.100467,1.103684,0.6284815,0.580496408,0.532511316,0.484526224,0.440409545,0.396292867,0.352176189,0.480851544,0.6095269,0.671030338,0.647388525,0.623746712,0.600104899,0.569255099,0.538405299,0.507555499,0.507555499,0.507555499 +26,MI,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.46091,0.22653,0.23467,0.23361,0.769108,0.776053,0.778726,0.347593696,0.308844782,0.270095867,0.231346953,0.259372375,0.287397797,0.31542322,0.447255081,0.579086941,0.643746884,0.619205787,0.594664689,0.570123592,0.536148132,0.502172671,0.468197211,0.468197211,0.468197211 +26,MI,6,PETROLEUM & RELATED INDUSTRIES,SO2,15.26826,6.29801,6.54885,6.56802,4.757243,4.780586,4.801768,2.978301,2.45277352,1.92724604,1.40171856,1.182219793,0.962721027,0.74322226,0.665122009,0.587021758,0.489802063,0.524402898,0.559003732,0.593604566,0.576876693,0.560148819,0.543420946,0.543420946,0.543420946 +26,MI,6,PETROLEUM & RELATED INDUSTRIES,VOC,12.08668,11.92969,12.35437,12.40704,26.658558,26.285078,26.750188,16.6394404,16.63927073,16.63910107,16.6389314,14.92929292,13.21965443,11.51001595,17.26976142,23.02950688,32.7673775,30.58636162,28.40534574,26.22432986,23.41824063,20.61215139,17.80606216,17.80606216,17.80606216 +26,MI,7,OTHER INDUSTRIAL PROCESSES,CO,4.72779,7.83564,8.15082,8.17968,11.331468,11.930569,13.69478465,12.520254,13.26985883,14.01946367,14.7690685,13.29091429,11.81276007,10.33460586,9.995607117,9.656608376,9.317609636,12.89778044,16.47795125,20.05812206,20.09764314,20.13716422,20.17668529,20.17668529,20.17668529 +26,MI,7,OTHER INDUSTRIAL PROCESSES,SO2,31.17846,27.63209,28.74425,28.48122,34.791903,36.771955,39.357746,29.1586456,29.4135229,29.6684002,29.92327749,27.2155165,24.50775551,21.79999452,19.48788851,17.1757825,14.86367649,11.5481969,8.232717315,4.91723773,5.006456553,5.095675376,5.184894199,5.184894199,5.184894199 +26,MI,7,OTHER INDUSTRIAL PROCESSES,PM25,8.40685,5.52356,5.57256,5.81393,8.35168,8.597153,11.31333555,8.424048793,8.815000582,9.205952371,9.596904161,10.03592382,10.47494348,10.91396314,9.304957023,7.695950909,6.086944794,5.924326811,5.761708829,5.599090846,5.96670805,6.334325254,6.701942458,6.701942458,6.701942458 +26,MI,7,OTHER INDUSTRIAL PROCESSES,PM10,18.74523,20.31247,20.30757,21.50923,24.462619,24.968678,28.01376476,24.93749789,25.50948322,26.08146855,26.65345387,26.76767206,26.88189024,26.99610842,23.43442224,19.87273605,16.31104987,13.61950242,10.92795497,8.236407518,9.011013196,9.785618874,10.56022455,10.56022455,10.56022455 +26,MI,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.002126,0.002198,0.002277,0.469481,0.444758602,0.420036203,0.395313805,0.35365665,0.311999495,0.27034234,0.272782193,0.275222047,0.2779119,0.38930627,0.50070064,0.61209501,0.525082333,0.438069657,0.35105698,0.35105698,0.35105698 +26,MI,7,OTHER INDUSTRIAL PROCESSES,VOC,10.91924,15.57482,16.21964,16.23958,13.071878,13.784565,14.85129105,8.438948111,9.788283744,11.13761938,12.48695501,10.77592209,9.06488917,7.35385625,6.461353003,5.568849755,4.676346508,4.983545623,5.290744738,5.597943853,5.37559622,5.153248587,4.930900954,4.930900954,4.930900954 +26,MI,7,OTHER INDUSTRIAL PROCESSES,NOX,18.74781,24.57841,25.51754,25.39272,24.207446,25.500511,27.173469,19.495286,20.31684787,21.13840974,21.9599716,20.58617005,19.2123685,17.83856695,16.59570601,15.35284508,14.10998414,13.459423,12.80886187,12.15830073,11.05886025,9.959419775,8.859979296,8.859979296,8.859979296 +26,MI,8,SOLVENT UTILIZATION,CO,0.00811,0.01633,0.01681,0.01689,0.00548,0.005984,0.006653,0.0027275,0.0018185,0.0009095,0.0000005,0.002522167,0.005043833,0.0075655,0.005043833,0.002522167,0.0000005,0.0000005,0.0000005,,0,0,0,0,0 +26,MI,8,SOLVENT UTILIZATION,NH3,,0.00186,0.00196,0.00202,,,,0.0002835,0.000301833,0.000320167,0.0003385,0.001773297,0.003208093,0.00464289,0.052906452,0.101170013,0.149433575,0.14170767,0.133981765,0.12625586,0.08522074,0.04418562,0.0031505,0.0031505,0.0031505 +26,MI,8,SOLVENT UTILIZATION,NOX,0.05855,0.07926,0.08121,0.08149,0.02917,0.030474,0.031839,0.003319,0.002231167,0.001143333,0.0000555,0.00777115,0.0154868,0.02320245,0.0154683,0.00773415,0,0,0,0,0,0,0,0,0 +26,MI,8,SOLVENT UTILIZATION,PM10,,0.00277,0.00289,0.00294,0.256708,0.27087,0.289742,0.089864,0.112510115,0.13515623,0.157802345,0.124996243,0.092190142,0.05938404,0.059172718,0.058961397,0.058750075,0.062404575,0.066059075,0.069713575,0.067888775,0.066063975,0.064239175,0.064239175,0.064239175 +26,MI,8,SOLVENT UTILIZATION,PM25,,0.00095,0.00098,0.00101,0.256708,0.27087,0.289742,0.050271419,0.079035813,0.107800207,0.136564601,0.110837747,0.085110894,0.05938404,0.057183842,0.054983644,0.052783445,0.05481243,0.056841414,0.058870398,0.059236326,0.059602254,0.059968181,0.059968181,0.059968181 +26,MI,8,SOLVENT UTILIZATION,SO2,0.00006,,,,0.00004,0.000044,0.000049,0.0000195,0.000013,0.0000065,,0.000064,0.000128,0.000192,0.000128,0.000064,0,0,0,,0,0,0,0,0 +26,MI,8,SOLVENT UTILIZATION,VOC,291.65046,250.94344,256.66245,235.60538,159.405421,147.062711,154.080792,154.9768685,154.3492709,153.7216733,153.0940757,143.2263924,133.3587092,123.4910259,112.5315326,101.5720394,90.59310663,98.37587054,106.1586345,113.9413984,115.4209936,116.9005888,118.3801841,118.3801841,118.3801841 +26,MI,9,STORAGE & TRANSPORT,NOX,,0.00518,0.00538,0.00538,0.001164,0.001202,0.001255,0.004607,0.0051675,0.005728,0.0062885,0.013556098,0.020823697,0.028091295,0.021860792,0.015630288,0.009399785,0.009876148,0.010352512,0.010828875,0.011924943,0.013021011,0.014117079,0.014117079,0.014117079 +26,MI,9,STORAGE & TRANSPORT,NH3,,,,,,,,0.0012715,0.0012835,0.0012955,0.0013075,0.001059333,0.000811167,0.000563,0.000562333,0.000561667,0.000561,0.000568333,0.000575667,0.000583,0.000574717,0.000566433,0.00055815,0.00055815,0.00055815 +26,MI,9,STORAGE & TRANSPORT,PM10,0.9863,1.29346,1.31296,1.30522,2.22457,2.30111,2.404425,2.883057,2.992829215,3.10260143,3.212373645,2.736943345,2.261513046,1.786082747,1.54719622,1.308309693,1.069423166,1.072162579,1.074901991,1.077641404,1.027645687,0.97764997,0.927654253,0.927654253,0.927654253 +26,MI,9,STORAGE & TRANSPORT,PM25,0.35638,0.75746,0.76635,0.76268,1.123433,1.162414,1.216167,1.370775121,1.417983913,1.465192704,1.512401496,1.336789805,1.161178114,0.985566423,0.812673685,0.639780948,0.46688821,0.4554765,0.44406479,0.43265308,0.444007049,0.455361018,0.466714987,0.466714987,0.466714987 +26,MI,9,STORAGE & TRANSPORT,SO2,,0.00014,0.00014,0.00014,0.011955,0.01214,0.012555,0.016281,0.010912333,0.005543667,0.000175,0.000116667,5.83E-05,,0.00001675,0.0000335,0.00005025,0.040981391,0.081912532,0.122843673,0.081902454,0.040961236,2.00E-05,2.00E-05,2.00E-05 +26,MI,9,STORAGE & TRANSPORT,VOC,41.20938,40.39312,42.21917,42.20427,73.041977,72.801458,74.108799,47.55655438,47.52637705,47.49619971,47.46602238,43.93582936,40.40563634,36.87544331,36.36613557,35.85682783,29.78071722,25.88180884,21.98290046,18.08399207,17.98053257,17.87707306,17.77361355,17.77361355,17.77361355 +26,MI,9,STORAGE & TRANSPORT,CO,,0.07102,0.07289,0.0709,0.005408,0.005538,0.005668,0.0622535,0.048188333,0.034123167,0.020058,0.023927658,0.027797317,0.031666975,0.027451368,0.023235762,0.019020155,0.205590073,0.392159992,0.57872991,0.394816447,0.210902984,0.026989522,0.026989522,0.026989522 +26,MI,10,WASTE DISPOSAL & RECYCLING,NOX,4.39827,6.92071,6.9379,7.25182,6.54611,5.564899,5.657706,4.93318498,5.250609058,5.568033136,5.885457214,5.410757533,4.936057853,4.461358172,4.366044198,4.270730225,4.175416251,4.142636827,4.109857403,4.077077979,3.87652647,3.67597496,3.47542345,3.47542345,3.47542345 +26,MI,10,WASTE DISPOSAL & RECYCLING,PM10,10.89428,15.11956,15.32222,16.23746,16.762049,13.331307,13.350315,10.76803192,10.76372793,10.75942395,10.75511996,9.224034629,7.692949295,6.161863961,5.859741723,5.557619486,5.255497249,5.875582066,6.495666882,7.115751699,7.509415569,7.90307944,8.29674331,8.29674331,8.29674331 +26,MI,10,WASTE DISPOSAL & RECYCLING,VOC,40.89525,22.60571,22.784,23.59178,26.992449,24.971187,25.48148,12.61835144,12.55983451,12.50131758,12.44280065,9.843954057,7.245107466,4.646260876,4.432122721,4.217984565,4.00384641,4.880501811,5.757157212,6.633812613,6.330170337,6.026528061,5.722885785,5.722885785,5.722885785 +26,MI,10,WASTE DISPOSAL & RECYCLING,CO,7.78785,86.78095,84.90043,92.88008,96.888497,61.354043,61.450291,48.99463601,49.01267539,49.03071476,49.04875413,42.54563188,36.04250963,29.53938739,27.03001593,24.52064447,21.4215141,28.6221741,35.82283411,43.02349411,43.44028627,43.85707843,44.27387059,44.27387059,44.27387059 +26,MI,10,WASTE DISPOSAL & RECYCLING,NH3,3.98441,4.49551,4.48184,4.55031,4.6466,4.727258,4.866178,0.100258038,0.08144102,0.062624001,0.043806983,0.052129822,0.060452661,0.0687755,0.069404283,0.070033067,0.07066185,0.138756947,0.206852043,0.27494714,0.260314331,0.245681521,0.231048712,0.231048712,0.231048712 +26,MI,10,WASTE DISPOSAL & RECYCLING,SO2,1.11872,1.6122,1.63191,1.65902,0.792372,0.80935,0.829226,1.244720237,1.261463445,1.278206653,1.294949861,1.115908835,0.936867809,0.757826783,0.692486149,0.627145514,0.561804879,0.663400945,0.764997011,0.866593077,0.836236321,0.805879565,0.775522809,0.775522809,0.775522809 +26,MI,10,WASTE DISPOSAL & RECYCLING,PM25,9.42555,14.32713,14.48325,15.38494,15.911826,12.463366,12.477387,10.07263947,10.07129064,10.0699418,10.06859296,8.493328514,6.918064069,5.342799625,5.106756104,4.870712583,4.634669063,5.109982802,5.585296542,6.060610281,6.554225887,7.047841492,7.541457097,7.541457097,7.541457097 +26,MI,11,HIGHWAY VEHICLES,PM10,15.06838,10.3695,9.93968,9.29939,8.76047,8.23951,7.75428,17.0140661,16.70529863,16.39653116,16.08776369,15.9882694,15.8887751,14.16111873,10.43366358,9.328191599,10.97223755,10.12830006,9.284362567,8.440425075,7.741704073,6.429607181,7.300388467,6.936249686,6.620416515 +26,MI,11,HIGHWAY VEHICLES,NH3,6.02338,8.5756,9.59338,9.2257,9.48717,9.79689,9.99496,5.242951916,5.096937241,4.950922566,4.804907892,4.674071937,4.543235983,4.130358759,4.052762731,3.62721516,4.109392046,3.842259268,3.57512649,3.307993712,3.122307727,3.072924637,3.050377509,2.762957918,2.699589955 +26,MI,11,HIGHWAY VEHICLES,NOX,386.23563,328.25721,329.72884,322.5551,311.6206,307.76443,289.4397,436.2844932,404.1287401,371.9729871,339.8172341,319.0522394,298.2872448,265.8250052,202.1323267,174.4236714,194.7303861,174.5946437,154.4589013,134.3231589,118.0940283,97.87866053,105.6296177,76.42915051,66.43884776 +26,MI,11,HIGHWAY VEHICLES,SO2,19.65189,10.94926,11.22859,11.31535,11.51051,10.72874,10.87723,15.00993703,12.81066862,10.61140022,8.412131817,4.917713226,1.423294635,1.257634423,1.043562057,1.154468837,0.955163497,0.88526289,0.815362283,0.745461676,0.678097175,0.694733442,0.639262926,0.284606865,0.232308297 +26,MI,11,HIGHWAY VEHICLES,CO,4611.33989,3379.82364,3233.50539,3094.78772,2845.99797,2813.62592,2684.82707,2400.672416,2193.713593,1986.75477,1779.795947,1682.985693,1586.17544,1398.566645,1129.037248,1073.618664,1047.726293,979.218208,910.7101233,842.2020386,769.7537411,697.1905844,679.6780198,605.3947759,573.3482907 +26,MI,11,HIGHWAY VEHICLES,VOC,367.7707,243.19122,231.92173,224.84164,212.9409,204.95478,195.17989,174.2181659,165.6322025,157.046239,148.4602756,145.7972605,143.1342455,121.2935397,109.5929437,96.91031303,106.9764795,99.57674682,92.17701418,84.77728153,75.84142236,63.80863035,61.7897211,54.08005357,49.95686645 +26,MI,11,HIGHWAY VEHICLES,PM25,12.63337,8.266,7.82376,7.24425,6.72455,6.22432,5.77062,14.14329087,13.81805422,13.49281757,13.16758092,12.82321765,12.47885437,10.89703885,7.621524927,6.578572657,6.293247319,5.683112683,5.072978047,4.462843411,3.830161012,3.053397016,3.533419602,2.972277892,2.708417157 +26,MI,12,OFF-HIGHWAY,NOX,101.15604,112.01366,111.76848,110.51836,82.16584,110.04458,111.64963,101.882,101.898861,101.9157221,101.9325831,95.47381676,89.01505039,145.8680756,86.81399719,83.53245412,70.87850683,75.43016752,79.98182821,84.5334889,70.8356855,43.88529645,43.44007869,42.31197097,41.18386325 +26,MI,12,OFF-HIGHWAY,CO,886.68774,990.11518,966.21878,966.88491,968.45747,983.66763,1002.55786,1048.330746,988.9130283,929.4953111,870.0775939,844.695969,819.3143442,733.9996105,684.5412317,660.8154483,639.9721195,620.5511408,601.130162,581.7091832,511.3941358,377.0065561,370.764041,368.3624018,365.9607625 +26,MI,12,OFF-HIGHWAY,NH3,1.08315,1.25834,1.26461,1.30339,0.11451,0.11451,0.11451,0.083586075,0.084084644,0.084583213,0.085081783,0.086562976,0.088044169,0.118361946,0.091272547,0.092507018,0.093064887,0.097901908,0.102738929,0.10757595,0.091895662,0.05595056,0.060535086,0.060293764,0.060052442 +26,MI,12,OFF-HIGHWAY,VOC,136.95933,149.45127,143.59063,141.32207,141.68569,140.14686,139.54095,175.7450776,168.6002027,161.4553278,154.3104529,149.5821753,144.8538978,140.2230869,134.0983463,131.1009052,124.4544332,117.8196871,111.1849409,104.5501948,86.85009204,55.29415989,51.44988657,49.42482121,47.39975586 +26,MI,12,OFF-HIGHWAY,SO2,11.21994,12.42752,12.74871,13.11093,12.85855,12.83157,13.13002,13.84797741,14.15047694,14.45297647,14.755476,12.7650775,10.77467901,11.26228797,8.642856933,3.701093392,2.945988404,2.127705841,1.309423277,0.491140714,0.606050968,0.809637523,0.835871476,0.850687596,0.865503717 +26,MI,12,OFF-HIGHWAY,PM25,9.65682,10.25999,10.16205,10.06129,9.91938,9.72833,9.65814,9.398248287,9.223938612,9.049628937,8.875319262,8.534268428,8.193217593,9.635909626,7.64968547,6.938874174,6.608875541,6.435148047,6.261420553,6.087693059,5.153318779,3.461191236,3.28457022,3.151100267,3.017630315 +26,MI,12,OFF-HIGHWAY,PM10,10.52221,11.17805,11.07076,10.95801,10.80973,10.60376,10.52621,9.965264749,9.782715408,9.600166068,9.417616728,9.082625129,8.747633529,10.31058869,8.272844986,7.508794249,7.189686599,6.955386958,6.721087316,6.486787675,5.489369468,3.680350973,3.494533055,3.354562483,3.21459191 +26,MI,14,MISCELLANEOUS,VOC,1.39325,0.68964,0.76307,1.60983,0.968846,1.319372,0.479835,0.161942888,1.465877176,2.769811464,4.073745752,2.776945703,1.480145653,0.183345604,0.122315443,0.061285283,0.000255122,0.575802089,1.151349056,1.726896023,2.034914734,2.342933446,2.650952157,2.650952157,2.650952157 +26,MI,14,MISCELLANEOUS,SO2,0.01119,0.00487,0.00595,0.01162,0.13159,0.14986,0.04497,0.003825069,0.053461839,0.10309861,0.15273538,0.104065127,0.055394874,0.006724621,0.006244764,0.005764906,0.005285049,0.006036944,0.006788839,0.007540733,0.007304942,0.007069151,0.006833359,0.006833359,0.006833359 +26,MI,14,MISCELLANEOUS,CO,10.55458,7.62272,9.93399,12.56351,22.99278,26.11863,8.27777,0.80506,6.294937803,11.78481561,17.27469341,11.89936933,6.524045261,1.148721186,0.765950066,0.383178946,0.000407826,0.052915934,0.105424042,0.157932149,0.205278698,0.252625246,0.299971795,0.299971795,0.299971795 +26,MI,14,MISCELLANEOUS,NOX,0.3003,0.16243,0.19939,0.33363,0.49447,0.56145,0.1788,0.015059365,0.120021297,0.224983228,0.32994516,0.242226298,0.154507437,0.066788576,0.055958173,0.04512777,0.034297368,0.038899586,0.043501804,0.048104022,0.037565141,0.02702626,0.01648738,0.01648738,0.01648738 +26,MI,14,MISCELLANEOUS,PM10,547.49705,339.15293,367.96991,428.39442,434.484553,393.784925,400.7272137,364.60501,365.1904812,365.7759524,366.3614237,355.2937142,344.2260048,333.1582954,331.1836445,329.2089936,327.2343428,290.3880038,253.5416648,216.6953259,201.8142914,186.9332569,172.0522224,172.0522224,172.0522224 +26,MI,14,MISCELLANEOUS,PM25,99.58066,64.52125,69.51505,79.45258,80.988009,76.500087,66.5842776,37.5373,38.03346584,38.52963168,39.02579752,42.14795975,45.27012197,48.39228419,48.15668545,47.92108672,47.68548798,41.65968776,35.63388755,29.60808733,27.91258283,26.21707833,24.52157384,24.52157384,24.52157384 +26,MI,14,MISCELLANEOUS,NH3,53.32417,55.29996,54.76904,54.06079,55.17764,54.56208,53.2655889,55.3924921,55.48321505,55.57393801,55.66466097,57.37396462,59.08326826,60.79257191,58.84656128,56.90055065,54.95454002,47.2336724,39.51280478,31.79193716,35.98557797,40.17921878,44.3728596,44.3728596,44.3728596 +26,MI,15,WILDFIRES,NH3,,,,,,,,0.002501158,0.002501158,0.002501158,0.075687193,0.075687193,0.075687193,0.00696602,0.00696602,0.00696602,0.192463375,0.192463375,0.192463375,0.060626633,0.060626633,0.060626633,0.306405951,0.306405951,0.306405951 +26,MI,15,WILDFIRES,VOC,,,,,,,,0.037489425,0.037489425,0.037489425,1.088003403,1.088003403,1.088003403,0.1001365,0.1001365,0.1001365,2.766667508,2.766667508,2.766667508,0.871619974,0.871619974,0.871619974,4.404870065,4.404870065,4.404870065 +26,MI,15,WILDFIRES,SO2,,,,,,,,0.000867475,0.000867475,0.000867475,0.040904494,0.040904494,0.040904494,0.003872266,0.003872266,0.003872266,0.085578036,0.085578036,0.085578036,0.033464591,0.033464591,0.033464591,0.134989484,0.134989484,0.134989484 +26,MI,15,WILDFIRES,PM25,,,,,,,,0.01291233,0.01291233,0.01291233,0.41134668,0.41134668,0.41134668,0.03809628,0.03809628,0.03809628,1.005344615,1.005344615,1.005344615,0.331083672,0.331083672,0.331083672,1.597819057,1.597819057,1.597819057 +26,MI,15,WILDFIRES,PM10,,,,,,,,0.015319957,0.015319957,0.015319957,0.485389082,0.485389082,0.485389082,0.04495358,0.04495358,0.04495358,1.186306616,1.186306616,1.186306616,0.390681561,0.390681561,0.390681561,1.885416687,1.885416687,1.885416687 +26,MI,15,WILDFIRES,NOX,,,,,,,,0.00122943,0.00122943,0.00122943,0.083631288,0.083631288,0.083631288,0.00805352,0.00805352,0.00805352,0.151566507,0.151566507,0.151566507,0.069328826,0.069328826,0.069328826,0.237077727,0.237077727,0.237077727 +26,MI,15,WILDFIRES,CO,,,,,,,,0.166269065,0.166269065,0.166269065,4.586624383,4.586624383,4.586624383,0.4217097,0.4217097,0.4217097,11.736757,11.736757,11.736757,3.671607748,3.671607748,3.671607748,18.69144148,18.69144148,18.69144148 +26,MI,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,1.91267835,2.800184649,3.687690949,4.575197248,5.192033873,5.808870498,6.425707123,6.740472268,7.055237412,7.370002557,7.370002557,7.370002557 +26,MI,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.063955486,0.093834913,0.123714341,0.153593768,0.17526706,0.196940352,0.218613644,0.223857731,0.229101818,0.234345905,0.234345905,0.234345905 +26,MI,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.705594,1.033447031,1.361300062,1.689153093,1.919017374,2.148881656,2.378745937,2.483216686,2.587687436,2.692158185,2.692158185,2.692158185 +26,MI,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.83260153,1.219467789,1.606334047,1.993200306,2.264440031,2.535679756,2.806919481,2.930195341,3.0534712,3.17674706,3.17674706,3.17674706 +26,MI,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.120664417,0.177328491,0.233992566,0.29065664,0.33304285,0.375429061,0.417815271,0.420172676,0.42253008,0.424887485,0.424887485,0.424887485 +26,MI,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,8.0948662,11.85016371,15.60546122,19.36075874,21.96716619,24.57357365,27.1799811,28.53318436,29.88638762,31.23959088,31.23959088,31.23959088 +26,MI,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.133056085,0.194795599,0.256535112,0.318274626,0.361185045,0.404095465,0.447005884,0.468902636,0.490799387,0.512696139,0.512696139,0.512696139 +27,MN,1,FUEL COMB. ELEC. UTIL.,PM25,1.88215,2.1815,1.78202,2.573,6.328568,6.508295,12.950612,0.223233241,1.320710685,2.418188128,3.515665572,3.595383676,3.67510178,3.754819885,3.512280382,3.26974088,3.027201378,2.72182645,2.416451523,2.111076595,2.025079326,1.939082056,1.853084786,1.853084786,1.853084786 +27,MN,1,FUEL COMB. ELEC. UTIL.,SO2,84.49687,87.32344,93.35505,90.31568,97.924393,98.312557,97.672595,102.6216659,111.501325,104.868893,101.5305278,90.71234,81.804199,78.25231534,65.94568463,53.63647645,41.32726827,37.86177128,34.39627429,30.9307773,25.55155289,20.17232848,14.79310407,15.111932,8.370274 +27,MN,1,FUEL COMB. ELEC. UTIL.,VOC,0.62052,0.6454,0.64863,0.79634,0.828809,1.066619,0.839902,0.737986548,0.740201221,0.742415894,0.744630567,0.745970848,0.747311129,0.74865141,0.722029261,0.695407112,0.668780013,0.674749895,0.680719776,0.686689657,0.647218806,0.607747955,0.568277104,0.568277104,0.568277104 +27,MN,1,FUEL COMB. ELEC. UTIL.,NOX,83.61996,90.79661,95.76824,93.23293,88.37144,90.536957,86.849581,88.0050527,90.013287,84.4111,85.23479287,77.653082,73.387128,63.79928801,53.87910838,43.9469219,34.01473542,33.12577726,32.23681909,31.34786093,27.57778938,23.80771783,20.03764628,16.376189,12.624498 +27,MN,1,FUEL COMB. ELEC. UTIL.,PM10,3.82949,4.48035,3.39411,5.70321,8.067558,8.28236,17.687491,7.698393808,7.684041447,7.669689085,7.655336723,8.07643445,8.497532177,8.918629904,7.795559038,6.672488173,5.549417308,5.00383585,4.458254393,3.912672936,3.443646352,2.974619769,2.505593185,2.505593185,2.505593185 +27,MN,1,FUEL COMB. ELEC. UTIL.,CO,5.42936,4.98064,4.96946,7.76192,5.860098,6.551658,6.515095,8.045676928,8.195544061,8.345411194,8.495278326,8.910714303,9.32615028,9.741586257,10.1232249,10.50486355,10.8863092,10.87156794,10.85682668,10.84208542,10.34432138,9.846557337,9.348793295,9.348793295,9.348793295 +27,MN,1,FUEL COMB. ELEC. UTIL.,NH3,,0.0135,0.01265,0.01337,0.008528,0.015146,0.015195,0.07185641,0.131842232,0.191828054,0.251813876,0.366261715,0.480709553,0.595157392,0.603290023,0.611422654,0.619555285,0.56288393,0.506212574,0.449541219,0.480029748,0.510518276,0.541006805,0.541006805,0.541006805 +27,MN,2,FUEL COMB. INDUSTRIAL,NOX,29.46571,71.44589,70.44527,68.28563,55.661287,55.510988,55.871361,80.16676071,78.52450713,76.88225354,75.23999995,57.17448324,39.10896653,21.04344983,22.40025332,23.75705681,25.11023029,23.46646223,21.82269417,20.17892611,22.28591001,24.39289392,26.49987783,26.49987783,26.49987783 +27,MN,2,FUEL COMB. INDUSTRIAL,VOC,1.08251,1.75489,1.69675,1.6551,0.92449,0.925551,0.955124,3.400620975,3.682074444,3.963527912,4.24498138,3.218053158,2.191124936,1.164196714,1.281442052,1.398687389,1.515923046,1.421845845,1.327768643,1.233691442,1.274883401,1.316075361,1.35726732,1.35726732,1.35726732 +27,MN,2,FUEL COMB. INDUSTRIAL,NH3,0.09029,0.10492,0.10258,0.0994,0.64275,0.655298,0.641165,0.117158356,0.264794103,0.41242985,0.560065597,0.585632043,0.611198488,0.636764934,0.671377232,0.70598953,0.735580416,0.661563001,0.587545587,0.513528172,0.511341894,0.509155617,0.506969339,0.506969339,0.506969339 +27,MN,2,FUEL COMB. INDUSTRIAL,PM10,1.267,2.1033,2.04444,1.94432,4.261666,4.270516,4.316661,8.939516631,9.845127688,10.75073875,11.6563498,8.894756928,6.133164053,3.371571178,6.030795917,8.690020655,11.34880264,9.737351865,8.125901094,6.514450323,6.566982448,6.619514572,6.672046697,6.672046697,6.672046697 +27,MN,2,FUEL COMB. INDUSTRIAL,PM25,0.87959,1.55747,1.52225,1.4406,3.332782,3.342108,3.379066,3.985825825,4.928464572,5.871103319,6.813742066,4.924140372,3.034538678,1.144936984,3.521253918,5.897570852,8.273603066,7.197270274,6.120937482,5.044604689,4.336361941,3.628119193,2.919876445,2.919876445,2.919876445 +27,MN,2,FUEL COMB. INDUSTRIAL,SO2,16.24799,31.31911,31.24013,29.60178,18.572027,18.433766,19.184065,25.9032205,25.77519395,25.6471674,25.51914085,21.53659988,17.55405891,13.57151795,12.19492413,10.81833031,9.441668623,8.375571365,7.309474107,6.243376848,7.476882707,8.710388566,9.943894425,9.943894425,9.943894425 +27,MN,2,FUEL COMB. INDUSTRIAL,CO,8.48852,11.7427,11.6061,11.17317,15.417236,15.257089,15.816689,18.92043274,18.78377323,18.64711372,18.51045421,16.01697972,13.52350522,11.03003073,14.41951459,17.80899845,21.19756503,19.78011764,18.36267025,16.94522285,16.8733613,16.80149975,16.72963819,16.72963819,16.72963819 +27,MN,3,FUEL COMB. OTHER,NOX,16.54808,22.79781,22.24949,20.22004,18.219977,18.320871,18.782986,21.99930254,22.00260713,22.00591173,22.00921633,19.81805292,17.62688951,15.43572611,15.56440926,15.69309242,15.71339538,16.76344399,17.81349261,18.86354122,16.48962716,14.1157131,11.74179905,11.74179905,11.74179905 +27,MN,3,FUEL COMB. OTHER,PM10,11.70463,12.05319,12.033,11.91906,12.908669,13.752609,13.783026,12.2808843,12.35145837,12.42203243,12.49260649,14.47766528,16.46272407,18.44778286,22.99398332,27.54018378,30.70188474,37.07736139,43.45283805,49.8283147,45.90065616,41.97299761,38.04533907,38.04533907,38.04533907 +27,MN,3,FUEL COMB. OTHER,VOC,16.18331,34.00856,34.00822,33.98148,34.539858,37.026117,37.042368,39.43563727,32.21216236,24.98868746,17.76521255,18.12739281,18.48957308,18.85175334,24.18896311,29.52617287,32.99243692,39.15678539,45.32113387,51.48548235,46.90440589,42.32332943,37.74225297,37.74225297,37.74225297 +27,MN,3,FUEL COMB. OTHER,PM25,11.58284,11.87517,11.85577,11.77135,12.822845,13.665769,13.69427,12.00664275,12.04780318,12.08896361,12.13012404,14.18657672,16.24302941,18.29948209,22.85458712,27.40969215,30.57809415,36.96488466,43.35167517,49.73846567,45.82648339,41.91450111,38.00251883,38.00251883,38.00251883 +27,MN,3,FUEL COMB. OTHER,SO2,8.41099,5.62832,5.63884,5.08294,5.116983,5.045489,5.196382,6.100836481,6.112750528,6.124664574,6.136578621,5.216938641,4.29729866,3.37765868,3.14394578,2.91023288,2.658316645,2.570463126,2.482609608,2.394756089,2.072854424,1.750952758,1.429051092,1.429051092,1.429051092 +27,MN,3,FUEL COMB. OTHER,CO,86.78732,86.2901,86.17711,85.74472,88.96974,94.625758,94.726923,90.05646435,89.95706715,89.85766995,89.75827276,103.4338664,117.1094601,130.7850537,156.5821245,182.3791953,198.227415,238.0371349,277.8468548,317.6565748,292.117883,266.5791912,241.0404993,241.0404993,241.0404993 +27,MN,3,FUEL COMB. OTHER,NH3,0.15304,0.15155,0.14742,0.13508,0.293472,0.301761,0.312623,0.239421757,0.255137013,0.27085227,0.286567527,0.981305257,1.676042988,2.370780719,2.624394197,2.878007676,3.043735831,3.313683355,3.583630879,3.853578403,3.56795864,3.282338876,2.996719113,2.996719113,2.996719113 +27,MN,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.04351,0.1168,0.11711,0.11528,0.019637,0.019559,0.019559,0.042359525,0.036485808,0.03061209,0.024738373,0.027841415,0.030944458,0.0340475,0.067149733,0.100251967,0.1333542,0.132115187,0.130876173,0.12963716,0.129813768,0.129990376,0.130166984,0.130166984,0.130166984 +27,MN,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.66999,0.83726,0.75424,0.75651,0.828314,0.849113,0.881284,0.536892748,0.661706359,0.786519971,0.911333582,0.874981004,0.838628427,0.80227585,0.806716763,0.811157677,0.81559859,0.945810992,1.076023394,1.206235796,1.242967618,1.27969944,1.316431261,1.316431261,1.316431261 +27,MN,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,3.69663,1.57267,1.57916,1.5535,0.312668,0.311437,0.311466,0.60455001,0.422376673,0.240203337,0.05803,0.041121,0.024212,0.007303,0.0187429,0.0301828,0.0416227,0.05740349,0.07318428,0.08896507,0.089029113,0.089093157,0.0891572,0.0891572,0.0891572 +27,MN,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.065,0.52103,0.52161,0.51415,0.037034,0.038481,0.04052,0.09009766,0.079445786,0.068793913,0.05814204,0.045869345,0.03359665,0.021323954,0.062344887,0.10336582,0.145076251,0.15572663,0.16637701,0.17702739,0.179139498,0.181251606,0.183363714,0.183363714,0.183363714 +27,MN,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,0.252,0.252,0.252,0.252,0.002699,0.002688,0.002688,0.162592296,0.108394864,0.054197432,,0.000135167,0.000270333,0.0004055,0.000397117,0.000388733,0.00038035,0.001941518,0.003502687,0.005063855,0.005787172,0.006510489,0.007233807,0.007233807,0.007233807 +27,MN,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.09797,0.00906,0.00906,0.00893,,,,0.532609992,0.357846662,0.183083331,0.00832,0.006833333,0.005346667,0.00386,0.031804667,0.059749333,0.087694,0.087848087,0.088002173,0.08815626,0.094444173,0.100732087,0.10702,0.10702,0.10702 +27,MN,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.05218,0.21907,0.21955,0.21646,0.021929,0.022835,0.024086,0.115400035,0.091224601,0.067049167,0.042873732,0.034548022,0.026222312,0.017896601,0.04864714,0.07939768,0.110148219,0.116064139,0.121980059,0.127895978,0.130570242,0.133244505,0.135918769,0.135918769,0.135918769 +27,MN,5,METALS PROCESSING,PM25,33.509,13.04277,13.35808,13.29172,4.631631,4.726076,4.885196,0.628955096,1.188922544,1.748889992,2.30885744,3.283692219,4.258526998,5.233361777,5.509431365,5.785500953,5.954437845,5.661934397,5.369430948,5.0769275,4.706553084,4.336178668,3.965804253,3.965804253,3.965804253 +27,MN,5,METALS PROCESSING,CO,4.7025,4.43138,4.59895,4.46808,0.726299,0.749232,0.79598,3.517371969,3.496482979,3.475593989,3.454705,2.874495127,2.294285255,1.714075383,1.695037962,1.676000542,1.656963121,1.6805597,1.704156278,1.727752857,1.589410523,1.45106819,1.312725856,1.312725856,1.312725856 +27,MN,5,METALS PROCESSING,VOC,0.3006,0.35126,0.35482,0.33733,0.381134,0.387639,0.407198,0.666527316,0.649632753,0.63273819,0.615843628,0.620446751,0.625049873,0.629652996,0.626564339,0.623475681,0.620387024,0.618839608,0.617292192,0.615744775,0.588675141,0.561605506,0.534535871,0.534535871,0.534535871 +27,MN,5,METALS PROCESSING,SO2,3.0638,2.47839,2.53814,2.49277,1.797519,1.858967,1.957547,2.223874416,2.325708109,2.427541803,2.529375496,4.652760344,6.776145193,8.899530041,8.119872151,7.34021426,6.56055637,6.347169531,6.133782692,5.920395854,5.199389093,4.478382332,3.757375572,3.757375572,3.757375572 +27,MN,5,METALS PROCESSING,PM10,33.71971,22.51917,23.06784,22.96392,8.074168,8.235274,8.500552,6.29670726,5.805967888,5.315228516,4.824489145,5.726730879,6.628972614,7.531214348,7.699974792,7.868735236,7.930381242,7.536074795,7.141768348,6.747461901,6.412070381,6.07667886,5.74128734,5.74128734,5.74128734 +27,MN,5,METALS PROCESSING,NOX,27.17571,1.83239,1.87615,1.86434,2.676546,2.728365,2.813658,9.547853583,8.835756391,8.123659199,7.411562007,14.02166394,20.63176588,27.24186781,25.83088618,24.41990454,23.00892291,23.62707106,24.2452192,24.86336735,24.24855559,23.63374384,23.01893209,23.01893209,23.01893209 +27,MN,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,5.09E-05,0.000101809,0.000152713,0.000151809,0.000150904,0.00015,0.000134622,0.000119244,0.000103866,0.00044177,0.000779674,0.001117578,0.001117578,0.001117578 +27,MN,6,PETROLEUM & RELATED INDUSTRIES,SO2,6.255,2.58389,2.64404,2.57209,2.283675,2.274542,2.274542,2.886654866,2.123559618,1.360464369,0.597369121,0.461085206,0.32480129,0.188517375,0.230238028,0.271958681,0.313679334,0.305475277,0.29727122,0.289067163,0.288744636,0.28842211,0.288099583,0.288099583,0.288099583 +27,MN,6,PETROLEUM & RELATED INDUSTRIES,PM25,1.63167,0.92934,0.92987,0.89625,0.478241,0.476869,0.476913,0.132114912,0.26420612,0.396297328,0.528388537,0.458516666,0.388644796,0.318772925,0.35422944,0.389685956,0.425142471,0.398359029,0.371575586,0.344792144,0.326056963,0.307321782,0.288586601,0.288586601,0.288586601 +27,MN,6,PETROLEUM & RELATED INDUSTRIES,PM10,2.136,1.90394,1.89869,1.82758,0.556561,0.554937,0.554986,0.726585225,0.764301422,0.802017619,0.839733817,0.672968157,0.506202498,0.339436839,0.435303794,0.531170749,0.627037704,0.604701515,0.582365326,0.560029136,0.54153695,0.523044763,0.504552577,0.504552577,0.504552577 +27,MN,6,PETROLEUM & RELATED INDUSTRIES,CO,59.53184,57.3703,58.89168,57.36229,2.19859,2.190099,2.190099,7.151669015,5.056183669,2.960698322,0.865212976,0.719753701,0.574294425,0.42883515,0.595574705,0.76231426,0.929053815,0.929266263,0.929478711,0.929691159,1.006635968,1.083580777,1.160525585,1.160525585,1.160525585 +27,MN,6,PETROLEUM & RELATED INDUSTRIES,NOX,1.97096,1.61447,1.65104,1.6057,0.810338,0.807132,0.807132,1.088572444,0.931998757,0.775425071,0.618851385,0.477658756,0.336466128,0.1952735,0.246943827,0.298614154,0.350284481,0.350478766,0.350673052,0.350867337,0.355407971,0.359948605,0.364489239,0.364489239,0.364489239 +27,MN,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.70714,0.70714,0.72596,0.70714,0.133897,0.133362,0.133362,0.219882461,0.146588307,0.073294154,,0.077383333,0.154766667,0.23215,0.157522846,0.082895692,0.008268538,0.00750575,0.006742962,0.005980175,0.007631102,0.00928203,0.010932958,0.010932958,0.010932958 +27,MN,6,PETROLEUM & RELATED INDUSTRIES,VOC,11.36669,9.49008,9.74395,9.49342,5.492292,4.743403,4.74351,1.901574696,1.608204775,1.314834855,1.021464935,1.000511569,0.979558202,0.958604836,0.931086822,0.903568807,0.876050793,0.807498757,0.738946721,0.670394684,0.648133368,0.625872051,0.603610735,0.603610735,0.603610735 +27,MN,7,OTHER INDUSTRIAL PROCESSES,NOX,2.37863,1.71508,1.75594,1.73869,2.918779,3.032223,3.168778,4.006262478,4.750719072,5.495175666,6.239632259,5.158245701,4.076859142,2.995472584,2.913305969,2.831139353,2.748972138,2.664686876,2.580401615,2.496116353,2.538308409,2.580500464,2.62269252,2.62269252,2.62269252 +27,MN,7,OTHER INDUSTRIAL PROCESSES,CO,2.50203,1.87068,1.90412,1.8787,1.854613,1.955886,2.607933911,4.231517249,4.335499912,4.439482576,4.543465239,4.381333139,4.21920104,4.05706894,3.813543541,3.570018141,3.326492742,5.012183942,6.697875143,8.383566343,7.449733424,6.515900504,5.582067584,5.582067584,5.582067584 +27,MN,7,OTHER INDUSTRIAL PROCESSES,PM10,15.67707,23.42962,23.43176,24.65729,25.752603,26.196547,27.88514056,8.109388006,7.885625632,7.661863258,7.438100884,14.93440542,22.43070995,29.92701448,26.66752114,23.40802779,20.33659837,17.17331796,14.01003755,10.84675714,10.05332262,9.259888106,8.466453589,8.466453589,8.466453589 +27,MN,7,OTHER INDUSTRIAL PROCESSES,PM25,6.09349,7.3398,7.4043,7.64747,9.205734,9.425033,10.93517578,3.250368753,3.622749292,3.995129831,4.367510369,5.690564858,7.013619346,8.336673835,8.060081221,7.783488607,7.449258637,7.431639299,7.414019961,7.396400624,6.703621211,6.010841799,5.318062386,5.318062386,5.318062386 +27,MN,7,OTHER INDUSTRIAL PROCESSES,SO2,1.8644,1.14176,1.16624,1.15378,1.992736,2.067301,2.159179,2.356771651,2.826641616,3.296511581,3.766381546,3.354257183,2.94213282,2.530008457,2.433790906,2.337573356,2.241355805,1.964170699,1.686985593,1.409800487,1.426988046,1.444175605,1.461363164,1.461363164,1.461363164 +27,MN,7,OTHER INDUSTRIAL PROCESSES,VOC,3.75163,5.31522,5.41301,5.38882,6.547437,6.770915,6.773873356,8.930208594,8.410699256,7.891189919,7.371680581,6.826710451,6.281740321,5.73677019,5.40580254,5.07483489,4.743867241,4.694980602,4.646093964,4.597207325,4.664904607,4.732601889,4.800299171,4.800299171,4.800299171 +27,MN,7,OTHER INDUSTRIAL PROCESSES,NH3,1.57862,1.775,1.83863,1.83998,1.845866,1.919675,2.028527,26.90309916,26.84527908,26.787459,26.72963892,17.90733043,9.085021929,0.262713432,0.226253646,0.189793859,0.156082173,0.181873211,0.207664248,0.233455286,0.211464949,0.189474613,0.167484276,0.167484276,0.167484276 +27,MN,8,SOLVENT UTILIZATION,CO,,,,,0.01635,0.017037,0.017985,0.036915906,0.065891238,0.094866569,0.1238419,0.136517039,0.149192178,0.161867317,0.112710417,0.063553518,0.014396618,0.012961013,0.011525409,0.010089804,0.009457497,0.008825191,0.008192884,0.008192884,0.008192884 +27,MN,8,SOLVENT UTILIZATION,NH3,,,,,,,,0.014543,0.009710303,0.004877606,4.49E-05,0.00039502,0.00074513,0.00109524,0.001172113,0.001248987,0.00132586,0.004060819,0.006795779,0.009530738,0.006884198,0.004237659,0.001591119,0.001591119,0.001591119 +27,MN,8,SOLVENT UTILIZATION,NOX,,0.00109,0.00108,0.001,0.0003,0.000311,0.000325,0.073702,0.113034267,0.152366533,0.1916988,0.226271533,0.260844267,0.295417,0.203460115,0.111503231,0.019546346,0.017320793,0.015095241,0.012869688,0.012022066,0.011174444,0.010326822,0.010326822,0.010326822 +27,MN,8,SOLVENT UTILIZATION,PM10,,0.00793,0.00803,0.00813,0.60696,0.625605,0.660239,0.341016045,0.385733965,0.430451885,0.475169804,0.486855289,0.498540773,0.510226257,0.509975047,0.509723837,0.515866984,0.539205475,0.562543966,0.585882456,0.616619772,0.647357088,0.678094403,0.678094403,0.678094403 +27,MN,8,SOLVENT UTILIZATION,PM25,,0.00658,0.00666,0.00674,0.60696,0.625605,0.660239,0.275561881,0.310745596,0.345929311,0.381113026,0.385590048,0.390067071,0.394544094,0.405751173,0.416958252,0.42816533,0.451099527,0.474033724,0.49696792,0.522540861,0.548113802,0.573686743,0.573686743,0.573686743 +27,MN,8,SOLVENT UTILIZATION,SO2,,,,,0.001765,0.001796,0.001854,0.001315,0.008476667,0.015638333,0.0228,0.0264,0.03,0.0336,0.022965212,0.012330423,0.001695635,0.002007454,0.002319272,0.002631091,0.002027763,0.001424435,0.000821107,0.000821107,0.000821107 +27,MN,8,SOLVENT UTILIZATION,VOC,141.759,152.26773,153.98731,133.41884,110.911304,111.537279,115.705024,66.52541241,65.76717069,65.00892897,64.25068725,70.38703096,76.52337467,82.65971839,78.24540662,73.83109485,72.59175557,68.3952223,64.19868904,60.00215578,62.18134168,64.36052758,66.53971348,66.53971348,66.53971348 +27,MN,9,STORAGE & TRANSPORT,SO2,,0.0108,0.0108,0.01064,,,,0.0075,0.00549,0.00348,0.00147,0.001273334,0.001076667,0.000880001,0.000702494,0.000524987,0.00034748,0.000768618,0.001189756,0.001610893,0.001498996,0.001387098,0.0012752,0.0012752,0.0012752 +27,MN,9,STORAGE & TRANSPORT,NH3,,,,,,,,0.0008765,0.000584333,0.000292167,,1.67E-06,3.33E-06,0.000005,0.000132167,0.000259333,0.0003865,0.000406377,0.000426255,0.000446132,0.000395038,0.000343943,0.000292849,0.000292849,0.000292849 +27,MN,9,STORAGE & TRANSPORT,NOX,,,,,,,,0.02449,0.025632,0.026774,0.027916,0.031414175,0.03491235,0.038410525,0.037259751,0.036108978,0.034958204,0.044603479,0.054248755,0.06389403,0.060487523,0.057081017,0.05367451,0.05367451,0.05367451 +27,MN,9,STORAGE & TRANSPORT,CO,,,,,,,,0.06107,0.061623666,0.062177333,0.062730999,0.069468339,0.07620568,0.08294302,0.084928636,0.086914251,0.088899867,0.094375598,0.099851329,0.10532706,0.103563731,0.101800402,0.100037073,0.100037073,0.100037073 +27,MN,9,STORAGE & TRANSPORT,PM25,4.4476,3.48949,3.59008,3.59332,3.341435,3.414215,3.517311,0.298851894,0.499915992,0.700980089,0.902044187,0.914391133,0.926738078,0.939085024,0.990435918,1.041786813,1.089630308,0.949588208,0.809546109,0.669504009,0.655980624,0.642457239,0.628933854,0.628933854,0.628933854 +27,MN,9,STORAGE & TRANSPORT,VOC,42.59802,34.88875,35.85993,34.87552,33.686613,32.627248,33.07735,25.8828174,25.65941326,25.43600912,25.21260498,23.75761489,22.30262481,20.84763472,22.24797746,23.64832021,20.34814561,17.92533039,15.50251516,13.07969994,13.16214508,13.24459022,13.32703536,13.32703536,13.32703536 +27,MN,9,STORAGE & TRANSPORT,PM10,8.97354,10.31703,10.62761,10.64493,7.192738,7.345329,7.564637,5.200565969,4.400584136,3.600602302,2.800620468,2.622861358,2.445102248,2.267343139,2.332012267,2.396681396,2.462507451,2.376504269,2.290501086,2.204497903,2.125356098,2.046214293,1.967072489,1.967072489,1.967072489 +27,MN,10,WASTE DISPOSAL & RECYCLING,VOC,8.56561,7.07796,7.34027,7.55137,6.377968,5.321313,5.093444,5.39088153,5.387428294,5.383975058,5.380521822,4.225704157,3.070886491,1.916068826,2.297402735,2.678736644,3.056132837,3.143922568,3.231712299,3.319502031,2.940058411,2.560614791,2.181171171,2.181171171,2.181171171 +27,MN,10,WASTE DISPOSAL & RECYCLING,PM10,5.78456,7.63814,7.98892,8.25222,10.325262,6.670141,6.595536,6.607033883,6.568103488,6.529173094,6.490242699,5.869307327,5.248371954,4.627436582,4.280833094,3.934229605,3.587626117,3.452160165,3.316694214,3.181228263,3.176226716,3.171225169,3.166223623,3.166223623,3.166223623 +27,MN,10,WASTE DISPOSAL & RECYCLING,PM25,5.04135,7.21421,7.54188,7.7979,8.465083,6.24975,6.159649,6.123983358,6.112318986,6.100654613,6.088990241,5.406513464,4.724036687,4.041559911,3.744675835,3.44779176,3.150907685,2.970935138,2.79096259,2.610990043,2.698333999,2.785677956,2.873021912,2.873021912,2.873021912 +27,MN,10,WASTE DISPOSAL & RECYCLING,CO,39.87346,38.78106,40.25765,42.2239,45.00694,28.090591,28.349204,30.8749965,30.75246606,30.62993562,30.50740519,26.86980629,23.23220738,19.59460848,17.72776043,15.86091237,13.99406431,17.19326168,20.39245905,23.59165642,21.96361206,20.33556771,18.70752335,18.70752335,18.70752335 +27,MN,10,WASTE DISPOSAL & RECYCLING,SO2,0.57769,1.01105,1.03822,1.06016,1.676573,1.102103,1.092955,1.168229654,1.168133766,1.168037877,1.167941988,0.9232426,0.678543212,0.433843823,0.485536258,0.537228692,0.588921127,0.558923496,0.528925865,0.498928233,0.547826484,0.596724735,0.645622986,0.645622986,0.645622986 +27,MN,10,WASTE DISPOSAL & RECYCLING,NOX,2.5515,3.51259,3.62256,3.73142,4.293437,4.360385,4.454061,3.893025009,4.524780094,5.156535178,5.788290263,4.977348733,4.166407204,3.355465674,3.31486397,3.274262266,3.233660563,3.342203005,3.450745447,3.55928789,3.397691855,3.23609582,3.074499785,3.074499785,3.074499785 +27,MN,10,WASTE DISPOSAL & RECYCLING,NH3,1.38855,1.52237,1.52237,1.55283,1.584016,1.599878,1.644277,0.842640196,0.793196649,0.743753103,0.694309557,0.596252991,0.498196426,0.400139861,0.312492551,0.224845241,0.13641502,0.143112232,0.149809444,0.156506656,0.109269647,0.062032638,0.014795629,0.014795629,0.014795629 +27,MN,11,HIGHWAY VEHICLES,CO,2384.24373,1680.16527,1630.69332,1585.57473,1483.632,1607.48891,1564.41412,1030.36152,1035.942174,1041.522828,1047.103482,1027.999426,1008.89537,987.1101677,762.0644234,849.2940759,649.0262292,636.9548666,624.8835041,612.8121416,547.2279,465.4022545,469.4731659,439.7831555,416.8993748 +27,MN,11,HIGHWAY VEHICLES,NH3,2.92826,4.20435,4.85616,4.80594,5.07394,5.24292,5.3577,2.872727225,2.792308299,2.711889373,2.631470448,2.760995686,2.890520925,2.755178365,2.385628532,2.448961633,2.446033196,2.343620789,2.241208381,2.138795973,2.003545983,1.91509746,1.94814227,1.770894142,1.721264753 +27,MN,11,HIGHWAY VEHICLES,NOX,194.61108,167.91971,172.84484,173.32208,171.62771,172.01184,162.45781,205.7480212,196.060015,186.3720087,176.6840025,178.4351435,180.1862846,167.4754376,111.7190885,113.2784055,123.4520077,113.6921459,103.932284,94.17242222,82.85075558,66.46736105,65.63785473,54.27186415,48.60881123 +27,MN,11,HIGHWAY VEHICLES,PM10,7.661,5.38139,5.29114,5.08092,4.9247,4.60413,4.33758,8.999890726,8.808201656,8.616512586,8.424823517,8.96673204,9.508640563,9.193761239,5.798351224,6.266223636,8.105392291,7.324190217,6.542988144,5.76178607,4.921216906,4.029958198,3.984356227,4.469384056,4.333977444 +27,MN,11,HIGHWAY VEHICLES,VOC,187.1573,117.87965,113.54021,111.25178,106.58489,110.75441,105.97161,82.94908783,81.95149845,80.95390907,79.95631969,91.00373683,102.051154,90.06326311,71.22482791,81.49781396,68.9849066,65.45187259,61.91883858,58.38580456,50.51265947,41.38156869,39.88062709,38.02957889,35.49007116 +27,MN,11,HIGHWAY VEHICLES,SO2,9.93118,5.52777,5.84512,6.05915,6.33205,5.51632,5.61412,3.184486596,3.11146654,3.038446483,2.965426427,1.835496875,0.705567324,0.666568236,0.572212523,0.620850093,0.586925415,0.543076319,0.499227223,0.455378126,0.388179979,0.394798668,0.358343135,0.174768509,0.14963937 +27,MN,11,HIGHWAY VEHICLES,PM25,6.44503,4.32108,4.19132,3.98296,3.80786,3.4985,3.24796,7.540843808,7.345055695,7.149267582,6.95347947,7.352381843,7.751284216,7.38387029,4.307035039,4.72405201,4.453207595,4.158976478,3.864745361,3.570514243,2.817570518,2.194856658,2.125598957,2.313646814,2.174816103 +27,MN,12,OFF-HIGHWAY,NH3,0.79318,0.8077,0.7687,0.80387,0.09576,0.09576,0.09576,0.071263164,0.072450221,0.073637278,0.074824335,0.076819653,0.078814971,0.075694395,0.080316422,0.083805002,0.076595183,0.079320363,0.082045543,0.084770723,0.08461674,0.081724872,0.084308775,0.084693653,0.085078531 +27,MN,12,OFF-HIGHWAY,NOX,105.50072,116.68088,115.74805,114.32818,115.43518,114.38798,114.25236,118.0551997,117.7143466,117.3734936,117.0326405,108.2855111,99.53838171,88.14289242,95.88758111,94.80984861,77.8672707,75.86226396,73.85725722,71.85225049,68.56440689,63.4076506,61.98871971,59.6928262,57.3969327 +27,MN,12,OFF-HIGHWAY,PM10,11.3686,11.71591,11.53462,11.3444,11.17499,10.91037,10.66717,9.490764235,9.320012536,9.149260836,8.978509136,8.53141173,8.084314323,7.308740402,7.490484611,7.415635573,6.445579938,6.210014117,5.974448296,5.738882475,5.448078616,5.106957891,4.866470898,4.639622904,4.412774909 +27,MN,12,OFF-HIGHWAY,SO2,10.7446,12.25886,12.54875,12.86961,12.84391,12.91709,13.03056,9.857190778,10.07363952,10.29008826,10.506537,7.826444713,5.146352421,2.119638032,2.712647575,2.036335057,0.939456032,0.775136069,0.610816106,0.446496143,0.494271336,0.589570391,0.589821723,0.597200114,0.604578504 +27,MN,12,OFF-HIGHWAY,VOC,96.55786,104.49564,101.71498,100.66845,100.15489,99.57675,99.0054,99.61353718,99.12976668,98.64599618,98.16222568,95.10726452,92.05230335,87.60112298,84.44123569,86.17920536,77.59886768,75.04159041,72.48431313,69.92703585,63.44194103,54.03138224,50.47175138,48.44705611,46.42236084 +27,MN,12,OFF-HIGHWAY,CO,509.52545,563.78788,554.4346,555.17043,558.28317,561.73087,570.20724,463.4780408,458.6680862,453.8581317,449.0481771,433.7466419,418.4451066,402.6531095,385.4835197,388.9310077,363.9222619,357.6232709,351.3242798,345.0252888,336.125765,321.862684,318.3267174,316.5960142,314.8653111 +27,MN,12,OFF-HIGHWAY,PM25,10.43621,10.75557,10.59067,10.4185,10.25896,10.01462,9.79181,9.149072982,8.96816222,8.787251457,8.606340695,8.139165336,7.671989977,6.857728392,7.036475163,6.960880758,6.070760105,5.855687318,5.640614531,5.425541744,5.159685057,4.858800315,4.627971682,4.409791642,4.191611602 +27,MN,14,MISCELLANEOUS,CO,127.08995,43.61282,43.00204,83.56103,293.43881,180.26879,56.63744,31.81194,89.11018596,146.4084319,203.7066779,139.9373486,76.16801929,12.39869,16.16538446,19.93207891,23.69877337,16.74305379,9.787334215,2.831614638,2.772361366,2.713108094,2.653854822,2.653854822,2.653854822 +27,MN,14,MISCELLANEOUS,NH3,153.23759,179.99306,183.03487,186.61035,184.58174,186.6664,155.802358,135.6668771,136.6101844,137.5534918,138.4967992,153.5358091,168.5748191,183.613829,185.3310749,187.0483207,188.7655666,169.1646308,149.5636951,129.9627594,149.2055263,168.4482932,187.6910602,187.6910602,187.6910602 +27,MN,14,MISCELLANEOUS,NOX,3.59708,1.00612,0.96412,1.6344,1.701676,3.86794,1.21564,0.497103163,1.328917461,2.160731759,2.992546057,2.181600704,1.370655352,0.55971,0.733907014,0.908104027,1.082301041,0.755413883,0.428526726,0.101639568,0.092473277,0.083306985,0.074140693,0.074140693,0.074140693 +27,MN,14,MISCELLANEOUS,PM10,867.24774,695.39984,728.43783,805.95744,776.5055,788.925131,771.0515088,707.10806,712.9921642,718.8762684,724.7603726,692.2632992,659.7662258,627.2691524,525.6309266,423.9927008,322.354475,313.9630853,305.5716956,297.1803059,300.9757867,304.7712674,308.5667482,308.5667482,308.5667482 +27,MN,14,MISCELLANEOUS,PM25,161.5318,125.18419,131.2387,145.22603,140.60832,149.705396,133.7697757,82.55705885,87.54361563,92.53017241,97.51672919,96.40656728,95.29640538,94.18624347,84.16669956,74.14715565,64.12761175,59.29335577,54.45909979,49.62484381,48.95005033,48.27525684,47.60046336,47.60046336,47.60046336 +27,MN,14,MISCELLANEOUS,SO2,0.13426,0.03467,0.0328,0.05227,0.46585,1.05854,0.33129,0.374846276,0.754127445,1.133408613,1.512689781,1.033146521,0.55360326,0.07406,0.213260395,0.352460789,0.491661184,0.333804233,0.175947283,0.018090332,0.016519157,0.014947982,0.013376806,0.013376806,0.013376806 +27,MN,14,MISCELLANEOUS,VOC,17.45235,4.02553,3.73618,5.25116,9.48456,8.52582,2.70791,5.541188975,19.11376552,32.68634207,46.25891861,31.22877545,16.19863229,1.16848913,1.475461759,1.782434387,2.089407016,4.11471848,6.140029944,8.165341408,9.065014015,9.964686623,10.86435923,10.86435923,10.86435923 +27,MN,15,WILDFIRES,SO2,,,,,,,,0.124329356,0.124329356,0.124329356,0.153978825,0.153978825,0.153978825,3.086345139,3.086345139,3.086345139,4.259136927,4.259136927,4.259136927,0.078553535,0.078553535,0.078553535,0.204132513,0.204132513,0.204132513 +27,MN,15,WILDFIRES,NH3,,,,,,,,0.379330407,0.379330407,0.379330407,0.248910137,0.248910137,0.248910137,10.27054757,10.27054757,10.27054757,9.997213725,9.997213725,9.997213725,0.159414526,0.159414526,0.159414526,0.561032731,0.561032731,0.561032731 +27,MN,15,WILDFIRES,NOX,,,,,,,,0.157546655,0.157546655,0.157546655,0.339514557,0.339514557,0.339514557,3.182293232,3.182293232,3.182293232,7.256255785,7.256255785,7.256255785,0.150961221,0.150961221,0.150961221,0.291609796,0.291609796,0.291609796 +27,MN,15,WILDFIRES,CO,,,,,,,,23.93272222,23.93272222,23.93272222,15.00632809,15.00632809,15.00632809,632.2155151,632.2155151,632.2155151,610.3881857,610.3881857,610.3881857,9.690808319,9.690808319,9.690808319,34.3933951,34.3933951,34.3933951 +27,MN,15,WILDFIRES,PM25,,,,,,,,1.899152709,1.899152709,1.899152709,1.395696439,1.395696439,1.395696439,50.38364955,50.38364955,50.38364955,51.81055779,51.81055779,51.81055779,0.849631156,0.849631156,0.849631156,2.830615528,2.830615528,2.830615528 +27,MN,15,WILDFIRES,VOC,,,,,,,,3.963874866,3.963874866,3.963874866,3.578083213,3.578083213,3.578083213,147.638937,147.638937,147.638937,143.7099928,143.7099928,143.7099928,2.291591012,2.291591012,2.291591012,8.064852138,8.064852138,8.064852138 +27,MN,15,WILDFIRES,PM10,,,,,,,,2.242333203,2.242333203,2.242333203,1.646921796,1.646921796,1.646921796,59.45274965,59.45274965,59.45274965,61.13644666,61.13644666,61.13644666,1.002565686,1.002565686,1.002565686,3.340126326,3.340126326,3.340126326 +27,MN,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,156.5163178,167.5759343,178.6355509,189.6951674,209.289826,228.8844846,248.4791432,223.3403238,198.2015043,173.0626849,173.0626849,173.0626849 +27,MN,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,36.70688676,39.39008182,42.07327687,44.75647193,49.42307798,54.08968403,58.75629008,52.74276409,46.72923809,40.7157121,40.7157121,40.7157121 +27,MN,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.935127296,1.099139354,1.263151412,1.42716347,1.622200954,1.817238437,2.012275921,1.733011781,1.45374764,1.1744835,1.1744835,1.1744835 +27,MN,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,12.89671554,14.05040743,15.20409931,16.3577912,18.16533002,19.97286885,21.78040767,19.3895589,16.99871013,14.60786135,14.60786135,14.60786135 +27,MN,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,15.21812648,16.5794856,17.94084472,19.30220385,21.43509373,23.56798361,25.70087349,22.87967486,20.05847622,17.23727759,17.23727759,17.23727759 +27,MN,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,1.347200549,1.762671189,2.178141829,2.593612469,3.017243859,3.44087525,3.86450664,3.226037496,2.587568353,1.949099209,1.949099209,1.949099209 +27,MN,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,2.553525495,2.740180331,2.926835167,3.113490003,3.438124714,3.762759425,4.087394135,3.669062343,3.250730552,2.83239876,2.83239876,2.83239876 +28,MS,1,FUEL COMB. ELEC. UTIL.,VOC,0.21761,0.63148,0.70347,0.88751,2.13393,2.383316,2.459663,0.6735556,0.668363182,0.663170764,0.657978346,0.63182223,0.605666115,0.57951,0.54875,0.51799,0.48723,0.443825833,0.400421667,0.3570175,0.389645,0.4222725,0.4549,0.4549,0.4549 +28,MS,1,FUEL COMB. ELEC. UTIL.,SO2,119.11902,114.29253,116.38224,156.41489,142.50049,148.312634,157.344175,67.5945614,80.796729,85.346516,74.12665646,77.971451,69.794214,65.87841,58.33889,50.79907,43.25925,59.0839175,74.908585,90.7332525,61.35116167,31.96907083,2.58698,3.189699,3.145161 +28,MS,1,FUEL COMB. ELEC. UTIL.,PM25,0.37471,0.89464,1.1078,1.08128,7.159975,9.44055,8.8003,2.627058867,2.728695196,2.830331525,2.931967854,2.380248783,1.828529712,1.276810641,1.393403851,1.509997061,1.626590272,1.694322417,1.762054562,1.829786707,1.667069276,1.504351846,1.341634415,1.341634415,1.341634415 +28,MS,1,FUEL COMB. ELEC. UTIL.,CO,2.34814,6.68022,6.81096,8.1218,17.29966,18.799965,18.708298,5.390555,5.226111642,5.061668285,4.897224927,6.088919951,7.280614976,8.47231,7.699683333,6.927056667,6.15443,5.928831767,5.703233533,5.4776353,4.6991302,3.9206251,3.14212,3.14212,3.14212 +28,MS,1,FUEL COMB. ELEC. UTIL.,NH3,,0.12163,0.15027,0.24929,0.300531,0.320378,0.350386,0.4654831,0.419405572,0.373328045,0.327250517,0.378528298,0.42980608,0.481083861,0.454873615,0.42866337,0.402453124,0.591357798,0.780262472,0.969167147,0.875187351,0.781207556,0.687227761,0.687227761,0.687227761 +28,MS,1,FUEL COMB. ELEC. UTIL.,NOX,48.5107,55.33745,60.33209,70.68737,81.3944,79.181743,74.575919,45.9186224,46.607014,49.622873,45.74673155,44.758186,48.481804,43.30863,37.74031333,32.17091667,26.60152,24.9679653,23.3344106,21.7008559,18.98245393,16.26405197,13.54565,12.974106,13.730044 +28,MS,1,FUEL COMB. ELEC. UTIL.,PM10,0.93625,1.37121,1.61024,1.60209,7.627661,10.111581,10.04855,3.124038876,3.247724076,3.371409276,3.495094476,3.017932984,2.540771492,2.06361,2.070423424,2.077236848,2.084050272,2.17583575,2.267621228,2.359406707,2.084049276,1.808691846,1.533334415,1.533334415,1.533334415 +28,MS,2,FUEL COMB. INDUSTRIAL,CO,16.21247,23.7052,23.51132,23.59259,28.89708,28.69339,29.211812,25.55941969,25.00443342,24.44944715,23.89446089,20.91932159,17.9441823,14.969043,14.91077533,14.85250767,14.79392,14.92563,15.05734,15.18905,21.54779299,27.90653598,34.26527897,34.26527897,34.26527897 +28,MS,2,FUEL COMB. INDUSTRIAL,VOC,2.62353,5.83488,5.78278,5.80251,6.00837,6.016002,6.073737,8.174389342,8.071671195,7.968953048,7.866234902,6.504834334,5.143433767,3.7820332,3.66418256,3.54633192,3.42846128,3.354399787,3.280338293,3.2062768,3.53693451,3.867592221,4.198249931,4.198249931,4.198249931 +28,MS,2,FUEL COMB. INDUSTRIAL,SO2,94.04355,88.27892,83.70534,81.55543,19.11654,19.329209,18.893814,15.65508839,16.38713754,17.11918669,17.85123584,14.03435782,10.21747981,6.4006018,6.399510931,6.398420061,6.397329192,6.231859628,6.066390064,5.9009205,4.878082792,3.855245083,2.832407375,2.832407375,2.832407375 +28,MS,2,FUEL COMB. INDUSTRIAL,PM25,6.78218,2.78865,2.70724,2.71183,6.855578,6.830076,7.057066,3.970479124,3.886704036,3.802928949,3.719153861,3.317254441,2.91535502,2.5134556,2.654123744,2.794791888,2.935430033,2.824362785,2.713295537,2.60222829,6.067065272,9.531902254,12.99673924,12.99673924,12.99673924 +28,MS,2,FUEL COMB. INDUSTRIAL,PM10,10.21686,4.66076,4.46909,4.43301,7.477657,7.441372,7.711284,5.712473901,5.4855019,5.258529899,5.031557899,4.357749599,3.6839413,3.010133,3.155992831,3.301852662,3.447682493,3.387554399,3.327426304,3.26729821,7.193524737,11.11975127,15.04597779,15.04597779,15.04597779 +28,MS,2,FUEL COMB. INDUSTRIAL,NOX,59.6891,101.46991,100.45716,99.57743,82.29816,82.042406,80.770053,52.16704944,50.71324578,49.25944212,47.80563845,46.18607697,44.56651548,42.946954,39.42503199,35.90310999,32.38081798,28.65951198,24.93820598,21.21689999,24.47299675,27.72909351,30.98519028,30.98519028,30.98519028 +28,MS,2,FUEL COMB. INDUSTRIAL,NH3,0.37308,3.50197,3.43136,3.49437,0.533876,0.542838,0.52441,0.184592238,0.194227738,0.203863238,0.213498738,0.142782492,0.072066246,0.00135,0.001207867,0.001065733,0.0009236,0.003459833,0.005996067,0.0085323,0.149652013,0.290771725,0.431891438,0.431891438,0.431891438 +28,MS,3,FUEL COMB. OTHER,SO2,3.00824,1.12744,1.12564,1.0036,2.462495,2.518162,2.587292,0.884879677,0.885429343,0.88597901,0.886528677,0.604011275,0.321493873,0.038976472,0.043190921,0.04740537,0.050151054,0.051278707,0.052406361,0.053534014,0.064686407,0.0758388,0.086991193,0.086991193,0.086991193 +28,MS,3,FUEL COMB. OTHER,VOC,14.278,6.77381,6.79764,6.77693,23.296862,7.336391,7.351946,22.9972162,19.50757352,16.01793085,12.52828817,8.852440943,5.176593714,1.500746484,1.42359696,1.346447436,1.199886672,1.5299397,1.859992727,2.190045755,2.671098562,3.15215137,3.633204178,3.633204178,3.633204178 +28,MS,3,FUEL COMB. OTHER,PM25,10.24537,3.40844,3.45978,3.47952,6.762912,4.752313,4.823325,5.172584785,5.173838249,5.175091714,5.176345179,3.825257846,2.474170513,1.12308318,1.110042196,1.097001212,0.997294267,1.335043778,1.67279329,2.010542801,2.401994726,2.793446652,3.184898577,3.184898577,3.184898577 +28,MS,3,FUEL COMB. OTHER,PM10,10.32257,3.61623,3.67699,3.69046,7.077569,5.075618,5.158133,5.208854772,5.209983854,5.211112935,5.212242016,3.850271666,2.488301316,1.126330965,1.122670411,1.119009856,1.028683054,1.365888855,1.703094656,2.040300457,2.426375679,2.812450901,3.198526123,3.198526123,3.198526123 +28,MS,3,FUEL COMB. OTHER,NOX,5.37802,8.54465,8.56681,8.13838,8.692966,8.650739,8.781659,5.352227696,5.343699362,5.335171029,5.326642696,4.141451354,2.956260012,1.77106867,2.145592885,2.520117099,2.885071953,2.696844847,2.508617742,2.320390637,2.292645217,2.264899796,2.237154376,2.237154376,2.237154376 +28,MS,3,FUEL COMB. OTHER,NH3,0.05271,0.04059,0.03964,0.03664,0.041617,0.042003,0.042322,0.035377085,0.035377085,0.035377085,0.035377085,0.117599066,0.199821048,0.28204303,0.286164092,0.290285153,0.287796775,0.319769604,0.351742433,0.383715261,0.381243987,0.378772713,0.376301438,0.376301438,0.376301438 +28,MS,3,FUEL COMB. OTHER,CO,82.75494,23.11681,23.33166,23.3662,42.233347,27.126137,27.32626,37.20655695,37.20198261,37.19740828,37.19283395,27.58884845,17.98486295,8.38087745,8.253035698,8.125193946,7.450198977,9.703524102,11.95684923,14.21017435,17.6789284,21.14768244,24.61643648,24.61643648,24.61643648 +28,MS,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,21.2968,2.42104,2.4779,2.58966,3.50495,3.613898,3.712859,1.6626916,1.419536267,1.176380933,0.9332256,1.062747067,1.192268533,1.32179,1.340193333,1.358596667,1.377,1.15463,0.93226,0.70989,0.48963,0.26937,0.04911,0.04911,0.04911 +28,MS,4,CHEMICAL & ALLIED PRODUCT MFG,CO,31.2932,29.40809,29.96306,30.66817,2.30688,2.377117,2.440582,15.409762,13.38011,11.350458,9.320806,8.514447333,7.708088667,6.90173,7.093526667,7.285323333,7.47712,6.905006667,6.332893333,5.76078,5.536566667,5.312353333,5.08814,5.08814,5.08814 +28,MS,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.8394,0.94647,0.97279,1.00412,2.95851,2.937813,3.03487,3.441943,3.357171333,3.272399667,3.187628,2.5387597,1.8898914,1.2410231,1.266208733,1.291394367,1.31658,1.27419,1.2318,1.18941,1.223823867,1.258237733,1.2926516,1.2926516,1.2926516 +28,MS,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.63108,0.07887,0.08089,0.08327,0.583083,0.601177,0.618486,0.43967,0.419789707,0.399909413,0.38002912,0.343562747,0.307096373,0.27063,0.32368441,0.376738821,0.429793231,0.478141616,0.52649,0.574838385,0.49964052,0.424442654,0.349244789,0.349244789,0.349244789 +28,MS,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.68628,0.12748,0.13062,0.13517,0.906187,0.933908,0.960393,0.849391,0.732159253,0.614927507,0.49769576,0.512437173,0.527178587,0.54192,0.52346441,0.505008821,0.486553231,0.537034949,0.587516667,0.637998385,0.560737186,0.483475988,0.406214789,0.406214789,0.406214789 +28,MS,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,34.0215,7.53628,7.70158,8.01672,3.33594,3.438004,3.527207,1.724564,1.660114,1.595664,1.531214,1.791836,2.052458,2.31308,2.163326667,2.013573333,1.86382,1.593056667,1.322293333,1.05153,0.941146667,0.830763333,0.72038,0.72038,0.72038 +28,MS,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,24.43466,21.72141,22.2538,23.31858,0.361242,0.372441,0.381832,0.36141,0.387467067,0.413524133,0.4395812,0.4583558,0.4771304,0.495905,0.504273987,0.512642973,0.52101196,0.525639317,0.530266673,0.53489403,0.59994672,0.66499941,0.7300521,0.7300521,0.7300521 +28,MS,5,METALS PROCESSING,NOX,,0.25405,0.2761,0.27868,0.25196,0.253896,0.265912,0.115139,0.112052667,0.108966333,0.10588,0.206283333,0.306686667,0.40709,0.39834,0.38959,0.38084,0.48594,0.59104,0.69614,0.98451,1.27288,1.56125,1.56125,1.56125 +28,MS,5,METALS PROCESSING,VOC,,0.47945,0.50113,0.51093,0.56743,0.574389,0.592022,0.37127,0.33753,0.30379,0.27005,0.232666667,0.195283333,0.1579,0.147456667,0.137013333,0.12657,0.173923333,0.221276667,0.26863,0.281676667,0.294723333,0.30777,0.30777,0.30777 +28,MS,5,METALS PROCESSING,SO2,,0.05446,0.05942,0.05993,0.0575,0.05801,0.060918,0.036445,0.030493333,0.024541667,0.01859,0.072273333,0.125956667,0.17964,0.160933333,0.142226667,0.12352,0.233133333,0.342746667,0.45236,0.681596667,0.910833333,1.14007,1.14007,1.14007 +28,MS,5,METALS PROCESSING,CO,,1.71829,1.87158,1.87425,1.93622,1.937183,2.028884,1.030816,0.923460667,0.816105333,0.70875,1.124983333,1.541216667,1.95745,1.74255,1.52765,1.31275,1.49454,1.67633,1.85812,1.982986667,2.107853333,2.23272,2.23272,2.23272 +28,MS,5,METALS PROCESSING,PM10,0.09059,0.12353,0.13438,0.13492,0.634651,0.64019,0.670821,0.121826,0.136407333,0.150988667,0.16557,0.250323333,0.335076667,0.41983,0.462963089,0.506096178,0.549229266,0.542649994,0.536070722,0.529491449,0.517623118,0.505754786,0.493886454,0.493886454,0.493886454 +28,MS,5,METALS PROCESSING,NH3,,,,,,,,0.000253,0.000208667,0.000164333,0.00012,0.00008,0.00004,,0,0,0,0,0,,0,0,0,0,0 +28,MS,5,METALS PROCESSING,PM25,0.03169,0.08962,0.09746,0.09794,0.587744,0.592909,0.621229,0.057978,0.084373483,0.110768966,0.13716445,0.223202662,0.309240874,0.395279087,0.445555812,0.495832537,0.546109262,0.533323325,0.520537387,0.507751449,0.492633118,0.477514786,0.462396454,0.462396454,0.462396454 +28,MS,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.54733,0.10583,0.11142,0.11318,0.090699,0.09142,0.091422,0.02,0.018113333,0.016226667,0.01434,0.010366667,0.006393333,0.00242,0.013633333,0.024846667,0.03606,0.03815,0.04024,0.04233,0.039533522,0.036737045,0.033940567,0.033940567,0.033940567 +28,MS,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.0192,0.89395,0.93704,0.95048,2.97814,2.986843,2.990676,1.187455,1.072073333,0.956691667,0.84131,0.643049067,0.444788133,0.2465272,1.376692887,2.506858574,3.641206666,2.536138997,1.431071327,0.326003657,0.86467005,1.403336443,1.942002836,1.942002836,1.942002836 +28,MS,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.73828,0.11137,0.11137,0.11137,2.323575,2.337348,2.356272,0.789524,0.747816,0.706108,0.6644,0.51269,0.36098,0.20927,0.225091017,0.240912034,0.256733051,0.241714295,0.226695539,0.211676782,0.232893994,0.254111205,0.275328416,0.275328416,0.275328416 +28,MS,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.40422,0.03589,0.03589,0.03589,1.070353,1.077158,1.086443,0.334912,0.318299814,0.301687628,0.285075442,0.250410006,0.21574457,0.181079134,0.187393381,0.193707628,0.200021875,0.197953697,0.195885519,0.19381734,0.217044498,0.240271655,0.263498813,0.263498813,0.263498813 +28,MS,6,PETROLEUM & RELATED INDUSTRIES,SO2,8.6156,1.30199,1.36415,1.38492,30.42607,30.619123,30.844626,15.559696,13.3902249,11.2207538,9.0512827,8.203338467,7.355394233,6.50745,6.417281797,6.327113593,6.239500151,5.998285473,5.757070795,5.515856118,3.978484687,2.441113256,0.903741825,0.903741825,0.903741825 +28,MS,6,PETROLEUM & RELATED INDUSTRIES,VOC,18.5446,13.15466,13.84191,14.0539,16.12015,16.078355,16.106895,20.7878881,20.7406829,20.6934777,20.6462725,16.377525,12.1087775,7.84003,15.08572273,22.33141545,28.83961994,20.41567936,11.99173877,3.567798184,6.500171825,9.432545466,12.36491911,12.36491911,12.36491911 +28,MS,6,PETROLEUM & RELATED INDUSTRIES,CO,14.6237,0.11025,0.11311,0.11395,1.39345,1.395358,1.39855,0.9751755,0.833710333,0.692245167,0.55078,0.767966667,0.985153333,1.20234,2.325015704,3.447691407,4.592475269,3.196826387,1.801177505,0.405528623,1.192828016,1.980127408,2.767426801,2.767426801,2.767426801 +28,MS,7,OTHER INDUSTRIAL PROCESSES,SO2,13.35749,15.70307,16.37749,16.75676,13.58406,13.966518,14.468815,9.338695822,8.837286425,8.335877029,7.834467632,6.491169588,5.147871544,3.8045735,2.762249,1.7199245,0.6776,0.6064,0.5352,0.464,0.738823333,1.013646667,1.28847,1.28847,1.28847 +28,MS,7,OTHER INDUSTRIAL PROCESSES,VOC,26.1292,12.63467,13.23723,13.57435,19.66788,20.247569,20.21693659,15.62763285,15.66223081,15.69682878,15.73142675,14.27335574,12.81528474,11.35721374,11.21122767,11.06524159,10.91457551,11.74050335,12.56643118,13.39235901,13.06017897,12.72799892,12.39581887,12.39581887,12.39581887 +28,MS,7,OTHER INDUSTRIAL PROCESSES,PM25,2.81062,4.62011,4.75881,5.24561,14.543588,14.441951,15.59110067,8.837989637,9.024745221,9.211500805,9.39825639,7.629659303,5.861062216,4.09246513,4.519015965,4.945566801,5.372147637,5.617172145,5.862196653,6.107221161,5.910789934,5.714358708,5.517927481,5.517927481,5.517927481 +28,MS,7,OTHER INDUSTRIAL PROCESSES,NOX,2.8708,4.341,4.59186,4.76028,8.49,8.70419,9.017886,9.2196004,8.759792927,8.299985453,7.84017798,6.87097532,5.90177266,4.93257,4.3561,3.77963,3.20355,3.330770013,3.457990027,3.58521004,3.589792902,3.594375764,3.598958625,3.598958625,3.598958625 +28,MS,7,OTHER INDUSTRIAL PROCESSES,CO,25.3279,23.26891,24.37253,25.07415,12.57734,13.003118,13.76064567,14.17563989,13.87814722,13.58065455,13.28316189,10.29640415,7.309646419,4.322888684,4.590934045,4.858979406,5.127344767,6.620314409,8.113284052,9.606253694,8.312305408,7.018357122,5.724408837,5.724408837,5.724408837 +28,MS,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00247,0.00257,0.00265,0.011082,0.0115,0.011862,0.982607,0.807750833,0.632894667,0.4580385,0.393166,0.3282935,0.263421,0.362381167,0.461341333,0.5603015,0.597848533,0.635395567,0.6729426,0.623625075,0.57430755,0.524990025,0.524990025,0.524990025 +28,MS,7,OTHER INDUSTRIAL PROCESSES,PM10,8.42297,18.61878,18.89846,20.95457,33.637697,31.902562,33.35393259,28.38164781,28.1200485,27.85844919,27.59684987,20.89549207,14.19413427,7.492776465,7.704890137,7.91700381,8.129147483,8.236833349,8.344519215,8.452205082,8.276158561,8.100112041,7.924065521,7.924065521,7.924065521 +28,MS,8,SOLVENT UTILIZATION,PM10,,0.04802,0.049,0.04783,0.77128,0.791719,0.822245,0.2190185,0.241571086,0.264123672,0.286676259,0.289863106,0.293049953,0.2962368,0.2358412,0.1754456,0.11505,0.125056667,0.135063333,0.14507,0.157316667,0.169563333,0.18181,0.18181,0.18181 +28,MS,8,SOLVENT UTILIZATION,VOC,80.9746,93.06503,97.21317,85.48613,89.03595,88.861965,92.347377,86.1212418,86.10855213,86.09586247,86.0831728,68.11581669,50.14846057,32.18110446,34.26959831,36.35809217,38.35813504,36.67877602,34.99941701,33.320058,35.25927693,37.19849585,39.13771478,39.13771478,39.13771478 +28,MS,8,SOLVENT UTILIZATION,CO,,0.19819,0.19839,0.18759,0.05206,0.053393,0.055353,0.044832,0.049557,0.054282,0.059007,0.050984667,0.042962333,0.03494,0.03365,0.03236,0.03107,0.032676667,0.034283333,0.03589,0.03963,0.04337,0.04711,0.04711,0.04711 +28,MS,8,SOLVENT UTILIZATION,PM25,,0.0413,0.04213,0.04113,0.77128,0.791719,0.822245,0.177761,0.208687713,0.239614427,0.27054114,0.275365293,0.280189447,0.2850136,0.2249724,0.1649312,0.10489,0.1148,0.12471,0.13462,0.147223333,0.159826667,0.17243,0.17243,0.17243 +28,MS,8,SOLVENT UTILIZATION,NOX,0.0001,0.04121,0.04281,0.04238,0.16783,0.172936,0.179909,0.105368,0.100848333,0.096328667,0.091809,0.075369333,0.058929667,0.04249,0.041276667,0.040063333,0.03885,0.04031,0.04177,0.04323,0.04536,0.04749,0.04962,0.04962,0.04962 +28,MS,8,SOLVENT UTILIZATION,NH3,,,,,0.000219,0.00022,0.000228,0.0074478,0.006447467,0.005447133,0.0044468,0.002967867,0.001488933,0.00001,6.67E-06,3.33E-06,0,0,0,0,0,0,0,0,0 +28,MS,8,SOLVENT UTILIZATION,SO2,0.0013,0.00252,0.00252,0.00238,0.00226,0.002308,0.002374,0.000535,0.000564667,0.000594333,0.000624,0.000519333,0.000414667,0.00031,0.000276667,0.000243333,0.00021,0.00021,0.00021,0.00021,0.000266667,0.000323333,0.00038,0.00038,0.00038 +28,MS,9,STORAGE & TRANSPORT,VOC,36.9074,31.82699,33.45131,33.77238,29.52664,27.803206,28.075602,31.94273237,31.76631005,31.58988773,31.41346541,29.75391626,28.09436712,26.43481798,28.3343096,30.23380121,29.06796968,23.65205455,18.23613941,12.82022428,17.31795085,21.81567741,26.31340398,26.31340398,26.31340398 +28,MS,9,STORAGE & TRANSPORT,CO,,0.02005,0.02108,0.02137,0.03865,0.039616,0.040792,0.07417,0.075636667,0.077103333,0.07857,0.056696667,0.034823333,0.01295,0.131336667,0.249723333,0.36811,0.249126667,0.130143333,0.01116,0.011293333,0.011426667,0.01156,0.01156,0.01156 +28,MS,9,STORAGE & TRANSPORT,NOX,,0.04005,0.04213,0.04276,0.10249,0.104843,0.107489,0.0803,0.079966667,0.079633333,0.0793,0.053756667,0.028213333,0.00267,0.025476667,0.048283333,0.07109,0.051083333,0.031076667,0.01107,0.009236667,0.007403333,0.00557,0.00557,0.00557 +28,MS,9,STORAGE & TRANSPORT,PM10,0.0291,0.02881,0.02949,0.03011,1.313367,1.344825,1.394311,0.123698,0.137694254,0.151690508,0.165686762,0.157164508,0.148642254,0.14012,0.129741587,0.119363175,0.108984762,0.111307755,0.113630748,0.115953742,0.114890748,0.113827755,0.112764762,0.112764762,0.112764762 +28,MS,9,STORAGE & TRANSPORT,PM25,0.00849,0.01391,0.01422,0.01454,0.5862,0.601569,0.624645,0.037967,0.053038208,0.068109416,0.083180623,0.07815811,0.073135597,0.068113083,0.068756976,0.069400869,0.070044762,0.075437755,0.080830748,0.086223742,0.078694082,0.071164422,0.063634762,0.063634762,0.063634762 +28,MS,9,STORAGE & TRANSPORT,SO2,,1.421,1.496,1.51967,1.68469,1.701831,1.707021,0.04035,0.04151,0.04267,0.04383,0.029276667,0.014723333,0.00017,0.01424,0.02831,0.04238,0.028496667,0.014613333,0.00073,0.00073,0.00073,0.00073,0.00073,0.00073 +28,MS,9,STORAGE & TRANSPORT,NH3,,0.00257,0.00271,0.00275,0.031503,0.032187,0.033047,0.00024375,0.0001825,0.00012125,0.00006,0.00004,0.00002,,0,0,0,0,0,0,0,0,0,0,0 +28,MS,10,WASTE DISPOSAL & RECYCLING,NH3,0.63693,0.70584,0.70584,0.72283,0.73562,0.744448,0.761365,0.00859,0.07685,0.14511,0.21337,0.385615158,0.557860316,0.730105474,0.755106041,0.780106608,0.805107174,0.781604843,0.758102512,0.73460018,0.725527542,0.716454903,0.707382265,0.707382265,0.707382265 +28,MS,10,WASTE DISPOSAL & RECYCLING,NOX,1.145,1.7828,1.87185,1.99164,1.46034,2.088906,2.092437,1.527586557,1.495786663,1.46398677,1.432186877,1.727221951,2.022257025,2.317292098,2.07516488,1.833037662,1.590910444,1.651332943,1.711755443,1.772177942,1.593665757,1.415153572,1.236641387,1.236641387,1.236641387 +28,MS,10,WASTE DISPOSAL & RECYCLING,PM10,4.78034,8.13754,8.54976,8.98679,4.813456,9.048456,9.051009,5.232594451,5.221152287,5.209710123,5.198267958,6.498286656,7.798305353,9.098324051,8.284607832,7.470891614,6.657175395,6.601456563,6.54573773,6.490018897,6.386175159,6.282331422,6.178487685,6.178487685,6.178487685 +28,MS,10,WASTE DISPOSAL & RECYCLING,PM25,4.26943,7.79822,8.18852,8.61948,4.778017,8.631187,8.632915,5.086618054,5.084935222,5.08325239,5.081569558,5.84299982,6.604430083,7.365860345,6.707940643,6.050020941,5.39210124,5.354667418,5.317233595,5.279799773,5.35548633,5.431172888,5.506859445,5.506859445,5.506859445 +28,MS,10,WASTE DISPOSAL & RECYCLING,SO2,0.1831,0.1093,0.11617,0.11822,0.1557,0.276956,0.280289,0.13433391,0.103592607,0.072851303,0.04211,0.057896793,0.073683585,0.089470378,0.090107774,0.090745169,0.091382564,0.221497039,0.351611513,0.481725988,0.449686823,0.417647659,0.385608494,0.385608494,0.385608494 +28,MS,10,WASTE DISPOSAL & RECYCLING,CO,28.03808,48.46282,50.61486,54.41977,45.55109,52.715694,52.718132,46.91651344,46.90136578,46.88621811,46.87107044,53.72483153,60.57859261,67.4323537,59.2083805,50.98440729,42.76043409,44.05766865,45.3549032,46.65213776,42.63852377,38.62490979,34.61129581,34.61129581,34.61129581 +28,MS,10,WASTE DISPOSAL & RECYCLING,VOC,11.64869,6.68158,6.98932,7.31053,4.13007,7.51459,7.533689,4.190853455,4.154896455,4.118939455,4.082982455,4.423078449,4.763174443,5.103270437,4.662035614,4.220800792,3.77956597,3.834242687,3.888919405,3.943596123,3.691761627,3.439927131,3.188092636,3.188092636,3.188092636 +28,MS,11,HIGHWAY VEHICLES,PM10,5.39131,4.10197,4.08266,3.96472,3.89821,3.39971,3.1853,4.867342074,4.895745232,4.924148391,4.952551549,4.425389008,3.898226468,3.596573415,3.941751872,2.930243728,4.802906569,4.486642358,4.170378146,3.854113935,3.55459614,2.943270695,2.848638671,3.096766096,3.010364167 +28,MS,11,HIGHWAY VEHICLES,VOC,119.64614,78.40001,76.64074,76.4327,74.57856,75.71888,71.27387,49.82243964,47.79131985,45.76020007,43.72908028,45.10186518,46.47465009,40.17294335,41.51208665,38.34550795,46.57167236,43.41683292,40.26199349,37.10715405,34.64244572,26.58045618,23.94084453,24.25673959,22.5118063 +28,MS,11,HIGHWAY VEHICLES,PM25,4.58007,3.33807,3.2894,3.17466,3.09509,2.62081,2.42117,4.112512025,4.112938663,4.113365301,4.113791939,3.550623438,2.987454938,2.679561189,3.036171186,2.067289153,2.583224997,2.461245445,2.339265893,2.217286342,1.916335524,1.510306984,1.449009999,1.438152071,1.338023322 +28,MS,11,HIGHWAY VEHICLES,NOX,120.03413,116.96225,122.71048,125.49381,126.34421,118.53788,112.10497,145.6686623,138.3564258,131.0441894,123.7319529,113.6464412,103.5609294,96.74947454,96.10201068,77.00443344,91.05395376,87.22616043,83.3983671,79.57057377,71.00210395,56.42460569,53.03747937,47.59265834,42.74890596 +28,MS,11,HIGHWAY VEHICLES,NH3,1.82612,2.85965,3.2566,3.24261,3.40296,3.50623,3.57892,2.00712361,2.013924999,2.020726388,2.027527778,2.062361504,2.09719523,2.004818228,1.678093212,1.586732232,1.795136776,1.700373,1.605609224,1.510845449,1.433761433,1.383657463,1.374148045,1.26757287,1.230245839 +28,MS,11,HIGHWAY VEHICLES,CO,1352.64965,972.88991,934.42245,899.64277,830.47743,906.97306,869.72633,643.1342309,608.1511748,573.1681188,538.1850627,507.4913305,476.7975983,419.7605447,397.9896107,366.4149818,433.6565131,420.2275901,406.7986671,393.3697441,373.3103008,300.106015,283.8694713,275.6127439,262.0543146 +28,MS,11,HIGHWAY VEHICLES,SO2,6.88678,3.99132,4.18994,4.31267,4.47699,3.8896,3.95005,4.024720958,3.533335477,3.041949996,2.550564515,1.515567319,0.480570123,0.474903452,0.459457081,0.455659673,0.405116153,0.417367087,0.429618021,0.441868955,0.443005328,0.454330842,0.415036124,0.197790441,0.15726522 +28,MS,12,OFF-HIGHWAY,PM10,5.08379,5.21126,5.12978,5.06674,4.94865,4.84363,4.7651,5.149509181,4.951100107,4.752691033,4.554281959,3.91922752,3.28417308,2.689593155,3.097626951,2.959986048,2.493113404,2.416828561,2.340543717,2.264258874,2.023211873,1.602688146,1.541117871,1.477303941,1.413490011 +28,MS,12,OFF-HIGHWAY,VOC,28.41928,32.17323,31.21931,30.98188,30.86683,30.77392,30.75708,38.44176619,38.12930085,37.81683552,37.50437018,36.3066829,35.10899562,33.03134028,32.15650164,31.4982518,29.66242352,28.05781014,26.45319676,24.84858338,20.42909581,12.33002112,11.59012067,11.20402413,10.81792758 +28,MS,12,OFF-HIGHWAY,PM25,4.66099,4.77836,4.70563,4.65196,4.53785,4.44116,4.36797,4.681730966,4.530733723,4.37973648,4.228739237,3.661440672,3.094142108,2.463646437,2.858781428,2.729600181,2.352555787,2.282176984,2.211798181,2.141419378,1.916995544,1.527373292,1.468147876,1.406509036,1.344870195 +28,MS,12,OFF-HIGHWAY,NOX,70.11027,75.27162,74.2543,73.15383,72.74494,71.86611,72.02897,80.46508656,80.0760213,79.68695605,79.29789079,63.46722069,47.6365506,35.23020573,46.91423707,46.23493586,33.13185668,33.39329145,33.65472621,33.91616098,30.49374824,23.86199914,23.64892275,22.74661035,21.84429796 +28,MS,12,OFF-HIGHWAY,NH3,0.307,0.33452,0.32633,0.33825,0.03175,0.03175,0.03175,0.036701396,0.037042075,0.037382754,0.037723433,0.03573472,0.033746007,0.028255618,0.034445862,0.03479197,0.030534523,0.03057624,0.030617957,0.030659675,0.02765207,0.01914495,0.021636859,0.02129509,0.020953321 +28,MS,12,OFF-HIGHWAY,CO,186.95268,210.90979,207.05229,207.35309,208.47462,210.04627,213.70476,225.5598622,223.6280446,221.696227,219.7644093,212.0684292,204.372449,183.203136,166.8876537,159.2660758,153.4725319,149.0081978,144.5438638,140.0795297,123.1845891,90.51150503,89.39470806,89.00944425,88.62418043 +28,MS,12,OFF-HIGHWAY,SO2,9.03749,9.38113,9.49825,9.65223,9.58682,9.65146,9.5864,5.844978273,5.873206642,5.901435012,5.929663382,4.563298115,3.196932848,1.517560954,2.478112798,1.762729471,1.028886399,0.920521498,0.812156597,0.703791696,0.621683149,0.450756139,0.457466054,0.45640834,0.455350626 +28,MS,14,MISCELLANEOUS,CO,319.94558,123.09624,106.3732,141.60454,181.81786,222.648903,155.108784,47.02909,177.4737615,307.918433,438.3631045,299.7601627,161.1572209,22.55427906,31.00831601,39.46235297,47.91638992,34.72302582,21.52966172,8.336297623,6.872670208,5.409042794,3.94541538,3.94541538,3.94541538 +28,MS,14,MISCELLANEOUS,VOC,20.3856,14.53254,10.20457,14.1842,12.27018,14.254009,11.141988,6.94871,37.9484511,68.94819219,99.94793329,67.26320104,34.57846879,1.893736535,2.571263493,3.248790451,3.926317409,3.827338909,3.72836041,3.62938191,3.746755841,3.864129772,3.981503702,3.981503702,3.981503702 +28,MS,14,MISCELLANEOUS,SO2,0.37098,0.07697,0.0466,0.07876,0.8319,1.06804,0.66654,0.07228,1.275060148,2.477840297,3.680620445,2.505932811,1.331245177,0.156557544,0.465955669,0.775353794,1.084751919,0.763490016,0.442228114,0.120966211,0.108701351,0.096436492,0.084171632,0.084171632,0.084171632 +28,MS,14,MISCELLANEOUS,PM25,107.26667,68.72323,69.78118,76.0332,76.54245,82.957598,70.0902089,41.1980975,53.03179532,64.86549313,76.69919095,65.41007951,54.12096807,42.83185663,59.07068047,75.30950431,91.54832815,75.11427433,58.68022052,42.2461667,42.12688855,42.0076104,41.88833225,41.88833225,41.88833225 +28,MS,14,MISCELLANEOUS,PM10,479.93874,319.54905,327.58752,343.43924,342.19141,364.201294,339.1974745,318.98053,332.9443,346.90807,360.8718401,334.563902,308.2559639,281.9480259,439.8207486,597.6934713,755.5661941,611.4982556,467.4303171,323.3623786,324.2980144,325.2336502,326.1692861,326.1692861,326.1692861 +28,MS,14,MISCELLANEOUS,NH3,54.51675,62.98458,57.55738,65.39776,71.21051,72.79828,62.58241698,58.77056736,60.92715353,63.0837397,65.24032587,62.97903221,60.71773855,58.45644489,57.56472419,56.67300349,55.78128279,55.10130182,54.42132085,53.74133989,53.46412256,53.18690524,52.90968792,52.90968792,52.90968792 +28,MS,14,MISCELLANEOUS,NOX,10.6083,2.97199,2.26264,3.16994,3.89606,4.771995,3.322958,0.95676,3.50993332,6.06310664,8.616279961,6.095499507,3.574719053,1.053938599,1.465675985,1.877413371,2.289150756,1.632320347,0.975489937,0.318659528,0.274193402,0.229727277,0.185261152,0.185261152,0.185261152 +28,MS,15,WILDFIRES,NH3,,,,,,,,0.111473227,0.111473227,0.111473227,0.080097577,0.080097577,0.080097577,0.090759531,0.090759531,0.090759531,0.358235044,0.358235044,0.358235044,0.588432994,0.588432994,0.588432994,0.166165604,0.166165604,0.166165604 +28,MS,15,WILDFIRES,NOX,,,,,,,,0.070341366,0.070341366,0.070341366,0.123124889,0.123124889,0.123124889,0.111948952,0.111948952,0.111948952,0.508294978,0.508294978,0.508294978,0.779770017,0.779770017,0.779770017,0.212140506,0.212140506,0.212140506 +28,MS,15,WILDFIRES,PM10,,,,,,,,0.69119,0.69119,0.69119,0.540861907,0.540861907,0.540861907,0.591208641,0.591208641,0.591208641,2.385717929,2.385717929,2.385717929,3.875437703,3.875437703,3.875437703,1.088044145,1.088044145,1.088044145 +28,MS,15,WILDFIRES,CO,,,,,,,,7.25966,7.25966,7.25966,4.812247614,4.812247614,4.812247614,5.485970363,5.485970363,5.485970363,21.57370087,21.57370087,21.57370087,35.50299959,35.50299959,35.50299959,10.03526048,10.03526048,10.03526048 +28,MS,15,WILDFIRES,PM25,,,,,,,,0.58548,0.58548,0.58548,0.458357549,0.458357549,0.458357549,0.501024439,0.501024439,0.501024439,2.02179451,2.02179451,2.02179451,3.2842684,3.2842684,3.2842684,0.922071148,0.922071148,0.922071148 +28,MS,15,WILDFIRES,SO2,,,,,,,,0.043567049,0.043567049,0.043567049,0.053735243,0.053735243,0.053735243,0.052569712,0.052569712,0.052569712,0.2275413,0.2275413,0.2275413,0.357114835,0.357114835,0.357114835,0.098413278,0.098413278,0.098413278 +28,MS,15,WILDFIRES,VOC,,,,,,,,1.66197,1.66197,1.66197,1.151402674,1.151402674,1.151402674,1.30466613,1.30466613,1.30466613,5.14963499,5.14963499,5.14963499,8.458721099,8.458721099,8.458721099,2.388628771,2.388628771,2.388628771 +28,MS,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,2.87550094,2.895503247,2.915505555,2.935507862,2.79218495,2.648862037,2.505539125,2.472727572,2.43991602,2.407104468,2.407104468,2.407104468 +28,MS,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,36.1533717,35.03038415,33.90739659,32.78440904,31.15035361,29.51629817,27.88224274,27.52955397,27.1768652,26.82417643,26.82417643,26.82417643 +28,MS,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,30.6384631,29.68677532,28.73508754,27.78339976,26.39860501,25.01381026,23.62901551,23.33012896,23.03124241,22.73235586,22.73235586,22.73235586 +28,MS,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,347.894166,333.0860446,318.2779232,303.4698017,288.2346578,272.9995138,257.7643698,254.5447889,251.325208,248.1056271,248.1056271,248.1056271 +28,MS,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,82.3173792,78.94356895,75.5697587,72.19594844,68.57518002,64.95441159,61.33364317,60.56617974,59.7987163,59.03125287,59.03125287,59.03125287 +28,MS,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,5.72643164,5.491730644,5.257029649,5.022328653,4.770448759,4.518568865,4.266688971,4.213300879,4.159912787,4.106524695,4.106524695,4.106524695 +28,MS,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,5.60074198,5.828028864,6.055315748,6.282602632,5.98043772,5.678272807,5.376107895,5.304000172,5.23189245,5.159784727,5.159784727,5.159784727 +29,MO,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01648,0.01596,0.01938,0.019274,0.019222,0.018124,0.7047308,0.746738228,0.788745655,0.830753083,0.60579182,0.380830557,0.155869294,0.200433062,0.244996831,0.289570599,0.239848362,0.190126124,0.140403886,0.173890558,0.207377229,0.240863901,0.240863901,0.240863901 +29,MO,1,FUEL COMB. ELEC. UTIL.,CO,7.54233,8.60188,9.13521,9.68694,10.567174,10.799128,10.998932,11.357506,11.60119552,11.84488505,12.08857457,15.21531438,18.34205419,21.468794,24.47591883,27.48304367,30.5016885,29.12918837,27.75668823,26.3841881,24.0807426,21.7772971,19.4738516,19.4738516,19.4738516 +29,MO,1,FUEL COMB. ELEC. UTIL.,NOX,194.4187,187.03923,201.08213,214.27577,189.31252,165.718833,151.511507,147.0565969,144.835701,123.82506,127.8378941,114.942552,105.863389,93.3313015,86.18507827,76.30764563,66.644593,69.36039327,72.07619353,74.7919938,66.64411197,58.49623013,50.3483483,49.959938,43.633826 +29,MO,1,FUEL COMB. ELEC. UTIL.,PM10,3.407,3.14516,3.09131,3.17837,10.271414,8.650311,9.432968,9.008285441,9.358126852,9.707968263,10.05780967,9.904669616,9.751529558,9.5983895,9.418481412,9.238573324,9.145275237,9.229990691,9.314706146,9.3994216,8.463963708,7.528505815,6.593047923,6.593047923,6.593047923 +29,MO,1,FUEL COMB. ELEC. UTIL.,PM25,1.13987,2.05124,2.07693,2.1694,9.213935,7.602496,7.986282,5.91650623,6.122054011,6.327601791,6.533149572,6.432075023,6.331000473,6.229925924,6.292310452,6.35469498,6.49398478,6.4737705,6.453556221,6.433341941,5.856070395,5.278798849,4.701527303,4.701527303,4.701527303 +29,MO,1,FUEL COMB. ELEC. UTIL.,SO2,787.91657,364.48944,315.67171,304.43402,284.0437,255.415678,261.189027,265.7569919,257.031242,269.300664,286.7499216,260.725383,255.200951,277.1256462,266.0512167,235.5935729,206.597839,182.4810958,158.3643526,134.2476094,124.9674165,115.6872235,106.4070306,102.582516,88.881694 +29,MO,1,FUEL COMB. ELEC. UTIL.,VOC,0.8779,1.29552,1.38962,1.46351,1.481641,1.571865,1.585511,1.5151265,1.548481938,1.581837377,1.615192815,1.61701311,1.618833405,1.6206537,1.607884777,1.595115853,1.58321693,1.54493692,1.50665691,1.4683769,1.427793667,1.387210433,1.3466272,1.3466272,1.3466272 +29,MO,2,FUEL COMB. INDUSTRIAL,PM10,1.21396,1.21854,1.18062,1.15956,1.243469,1.261404,1.335433,5.062571414,5.069704998,5.076838581,5.083972165,3.803386429,2.522800693,1.242214958,1.381480336,1.520745715,1.571820741,1.403758933,1.235697124,1.067635315,0.824629692,0.58162407,0.338618448,0.338618448,0.338618448 +29,MO,2,FUEL COMB. INDUSTRIAL,SO2,36.49856,33.37243,32.63538,31.90492,31.07204,30.883702,33.011353,42.76676285,42.85943281,42.95210278,43.04477275,47.51228327,51.97979379,56.44730431,42.42808671,28.4088691,12.9264515,13.0194986,13.1125457,13.2055928,8.931097642,4.65660248,0.382107318,0.382107318,0.382107318 +29,MO,2,FUEL COMB. INDUSTRIAL,NH3,0.08603,0.09767,0.09569,0.09451,3.839779,3.876505,3.853065,0.320944838,0.330020138,0.339095438,0.348170738,0.313234922,0.278299105,0.243363288,0.190596611,0.137829934,0.085053257,0.086989374,0.088925491,0.090861608,0.09755605,0.104250492,0.110944933,0.110944933,0.110944933 +29,MO,2,FUEL COMB. INDUSTRIAL,PM25,0.55424,0.59694,0.57569,0.56974,0.773949,0.788893,0.828982,1.891775954,1.912220121,1.932664288,1.953108455,1.553729399,1.154350342,0.754971285,0.984885575,1.214799864,1.367125109,1.23387866,1.100632212,0.967385764,0.747877116,0.528368469,0.308859821,0.308859821,0.308859821 +29,MO,2,FUEL COMB. INDUSTRIAL,CO,3.61126,3.70349,3.66508,3.6322,7.51813,7.625842,7.82696,8.891950976,8.678132631,8.464314285,8.250495939,8.058928887,7.867361835,7.675794784,6.913512228,6.151229673,5.378487117,5.28802621,5.197565302,5.107104394,4.787954992,4.46880559,4.149656188,4.149656188,4.149656188 +29,MO,2,FUEL COMB. INDUSTRIAL,NOX,19.69746,19.74166,19.53292,19.29309,31.9623,31.84389,33.131209,23.02071784,23.14883272,23.2769476,23.40506248,22.25464752,21.10423256,19.9538176,18.09141999,16.22902238,13.89090477,13.71469036,13.53847596,13.36226156,11.50683474,9.651407917,7.795981094,7.795981094,7.795981094 +29,MO,2,FUEL COMB. INDUSTRIAL,VOC,0.66283,0.70248,0.68981,0.68296,0.88331,0.895618,0.906488,0.848519235,0.842099872,0.835680509,0.829261145,0.735797804,0.642334462,0.54887112,0.544515946,0.540160771,0.515725596,0.53375303,0.551780463,0.569807897,0.514215111,0.458622324,0.403029538,0.403029538,0.403029538 +29,MO,3,FUEL COMB. OTHER,SO2,11.72526,11.40115,11.79083,11.38849,12.219721,12.420847,12.63805,11.71992705,11.85476789,11.98960872,12.12444955,14.01346394,15.90247832,17.7914927,14.26967914,10.74786557,7.179830439,6.712247117,6.244663795,5.777080472,4.806377684,3.835674896,2.864972108,2.864972108,2.864972108 +29,MO,3,FUEL COMB. OTHER,NOX,5.20602,4.81409,4.88211,4.67285,14.660553,14.742676,14.946701,14.19495937,14.18274014,14.17052091,14.15830167,13.40747962,12.65665757,11.90583552,11.80092277,11.69601002,11.25769534,11.53752368,11.81735203,12.09718037,11.67226827,11.24735617,10.82244407,10.82244407,10.82244407 +29,MO,3,FUEL COMB. OTHER,VOC,29.83569,27.28314,27.28932,27.25119,94.358869,30.121274,30.135615,26.05499196,23.92706707,21.79914219,19.6712173,15.90565336,12.14008942,8.374525483,10.72640213,13.07827878,12.26098346,12.04103154,11.82107962,11.6011277,12.61008551,13.61904332,14.62800113,14.62800113,14.62800113 +29,MO,3,FUEL COMB. OTHER,PM10,21.3603,9.97147,9.96892,9.93633,11.034152,11.74626,11.77719,12.48148687,12.48326283,12.48503879,12.48681475,10.47407931,8.46134388,6.448608445,8.79294205,11.13727565,10.46752704,10.7512119,11.03489675,11.31858161,12.70418911,14.08979661,15.47540411,15.47540411,15.47540411 +29,MO,3,FUEL COMB. OTHER,CO,157.15353,69.21436,69.25508,69.2246,121.185424,91.38545,91.5863,95.0254599,94.97527026,94.92508063,94.874891,80.41686182,65.95883265,51.50080348,64.87521276,78.24962203,71.52157078,73.13987966,74.75818854,76.37649742,88.84705472,101.317612,113.7881693,113.7881693,113.7881693 +29,MO,3,FUEL COMB. OTHER,NH3,0.08322,0.10175,0.09919,0.08709,0.27768,0.284258,0.29272,0.091232458,0.092147325,0.093062191,0.093977058,0.548555351,1.003133645,1.457711938,1.58938945,1.721066962,1.646980441,1.654711794,1.662443146,1.670174499,1.693046408,1.715918316,1.738790225,1.738790225,1.738790225 +29,MO,3,FUEL COMB. OTHER,PM25,21.15541,9.7772,9.76701,9.74023,10.849278,11.559433,11.587596,12.19748716,12.19933595,12.20118475,12.20303355,10.26912239,8.335211226,6.401300064,8.721921436,11.04254281,10.35078232,10.62724287,10.90370341,11.18016396,12.50844681,13.83672967,15.16501252,15.16501252,15.16501252 +29,MO,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,21.84081,21.84081,22.10305,22.62184,0.000004,0.000004,0.000004,,0.015414333,0.030828667,0.046243,0.0464334,0.0466238,0.0468142,0.039749467,0.032684733,0.02562,0.0855108,0.1454016,0.2052924,0.159300967,0.113309533,0.0673181,0.0673181,0.0673181 +29,MO,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,3.51688,3.59156,3.61942,3.69878,1.46377,1.508787,1.561632,1.5272944,1.509194633,1.491094867,1.4729951,1.482400133,1.491805167,1.5012102,1.336550133,1.171890067,1.00723,1.1395829,1.2719358,1.4042887,1.207158533,1.010028367,0.8128982,0.8128982,0.8128982 +29,MO,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,36.21357,31.4011,31.56641,32.22663,10.1126,10.152034,10.527,10.66519457,9.636138514,8.607082457,7.5780264,5.4364797,3.294933,1.1533863,1.261480867,1.369575433,1.47767,1.3301268,1.1825836,1.0350404,1.063489,1.0919376,1.1203862,1.1203862,1.1203862 +29,MO,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,8.04419,8.30398,8.34801,8.51491,3.433972,3.534108,3.660829,2.326508417,2.038409909,1.7503114,1.462212891,1.099799036,0.737385181,0.374971326,0.353156639,0.331341952,0.309527265,0.311512945,0.313498625,0.315484305,0.298825715,0.282167126,0.265508536,0.265508536,0.265508536 +29,MO,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,23.74167,24.53741,24.66179,25.15389,3.78109,3.892391,4.032822,2.6620656,2.310066833,1.958068067,1.6060693,1.2167202,0.8273711,0.438022,0.434138,0.430254,0.42637,0.405519133,0.384668267,0.3638174,0.338607833,0.313398267,0.2881887,0.2881887,0.2881887 +29,MO,4,CHEMICAL & ALLIED PRODUCT MFG,CO,29.47598,30.54631,30.69164,31.29924,14.9593,15.39326,15.9467,10.4884908,9.022040333,7.555589867,6.0891394,4.402334067,2.715528733,1.0287234,1.5060556,1.9833878,2.46072,2.1232861,1.7858522,1.4484183,1.4848781,1.5213379,1.5577977,1.5577977,1.5577977 +29,MO,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.54259,0.54259,0.54974,0.56108,0.25766,0.26558,0.274927,0.1747636,0.178982233,0.183200867,0.1874195,0.170242,0.1530645,0.135887,0.143574667,0.151262333,0.15895,0.160484333,0.162018667,0.163553,0.139948867,0.116344733,0.0927406,0.0927406,0.0927406 +29,MO,5,METALS PROCESSING,PM10,2.34966,2.34864,2.4505,2.44608,1.55112,1.614094,1.735465,1.1812465,1.087268967,0.993291434,0.8993139,0.89607001,0.89282612,0.88958223,0.81868482,0.74778741,0.67689,0.791597233,0.906304467,1.0210117,0.807277767,0.593543833,0.3798099,0.3798099,0.3798099 +29,MO,5,METALS PROCESSING,NOX,0.264,0.264,0.27991,0.28037,0.20363,0.21154,0.227449,0.1609618,0.1292405,0.0975192,0.0657979,0.060780933,0.055763967,0.050747,0.062954667,0.075162333,0.08737,0.107897967,0.128425933,0.1489539,0.110900933,0.072847967,0.034795,0.034795,0.034795 +29,MO,5,METALS PROCESSING,NH3,0.00936,0.00936,0.01028,0.01037,0.000004,0.000004,0.000004,,1.19E-05,2.37E-05,0.0000356,2.37E-05,1.19E-05,,0,0,0,0,0,,8.13E-05,0.000162667,0.000244,0.000244,0.000244 +29,MO,5,METALS PROCESSING,CO,55.58032,55.58032,57.80977,57.79619,53.71313,55.804941,60.04645,62.5278095,51.8202744,41.1127393,30.4052042,33.0261449,35.6470856,38.2680263,42.27235753,46.27668877,50.28102,44.8794278,39.4778356,34.0762434,27.75148877,21.42673413,15.1019795,15.1019795,15.1019795 +29,MO,5,METALS PROCESSING,VOC,4.31386,4.31386,4.65128,4.6917,2.94858,3.111546,3.339011,0.708068,0.9582196,1.2083712,1.4585228,1.3128465,1.1671702,1.0214939,0.940299267,0.859104633,0.77791,0.746866967,0.715823933,0.6847809,0.592807733,0.500834567,0.4088614,0.4088614,0.4088614 +29,MO,5,METALS PROCESSING,PM25,1.73322,1.73213,1.80202,1.79886,1.311104,1.36455,1.467476,0.635371159,0.589447848,0.543524537,0.497601226,0.5241726,0.550743974,0.577315348,0.526326712,0.475338077,0.424349441,0.474092542,0.523835643,0.573578744,0.456243996,0.338909248,0.2215745,0.2215745,0.2215745 +29,MO,5,METALS PROCESSING,SO2,94.73132,94.73132,96.16044,97.21631,62.56524,65.120634,70.151954,67.2004285,60.3214409,53.4424533,46.5634657,45.4851643,44.4068629,43.3285615,36.68750767,30.04645383,23.4054,17.98918983,12.57297967,7.1567695,5.693466267,4.230163033,2.7668598,2.7668598,2.7668598 +29,MO,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.07079,0.07168,0.07127,0.06987,0.07413,0.074202,0.075607,0.2095206,0.207483033,0.205445467,0.2034079,0.1498967,0.0963855,0.0428743,0.115019788,0.187165275,0.259310763,0.258096296,0.256881829,0.255667362,0.363536593,0.471405824,0.579275055,0.579275055,0.579275055 +29,MO,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.33514,0.33541,0.33019,0.3224,0.14106,0.142055,0.145646,0.1642341,0.1574264,0.1506187,0.143811,0.109257267,0.074703533,0.0401498,0.126990089,0.213830379,0.300670668,0.208647786,0.116624905,0.024602023,0.035407919,0.046213815,0.057019711,0.057019711,0.057019711 +29,MO,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.12834,0.12856,0.12662,0.12398,0.090715,0.09151,0.093855,0.085793731,0.081577247,0.077360763,0.073144279,0.058885859,0.044627439,0.030369019,0.054668919,0.078968819,0.103268719,0.07520247,0.04713622,0.01906997,0.027903751,0.036737531,0.045571311,0.045571311,0.045571311 +29,MO,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.10835,0.10835,0.10662,0.10421,0.05031,0.050334,0.051464,0.1573461,0.1329508,0.1085555,0.0841602,0.064167133,0.044174067,0.024181,0.068504408,0.112827816,0.157151224,0.107448655,0.057746087,0.008043518,0.016674322,0.025305126,0.033935929,0.033935929,0.033935929 +29,MO,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.10331,0.07276,0.07232,0.07318,0.09787,0.097482,0.100366,0.2893741,0.255542533,0.221710967,0.1878794,0.163352533,0.138825667,0.1142988,0.184906457,0.255514113,0.33050177,0.464235648,0.597969525,0.731703403,0.949265123,1.166826843,1.384388564,1.384388564,1.384388564 +29,MO,6,PETROLEUM & RELATED INDUSTRIES,CO,0.13373,0.13478,0.13283,0.13,0.36873,0.369302,0.373894,0.7758478,0.7835133,0.7911788,0.7988443,0.611451233,0.424058167,0.2366651,0.401041111,0.565417123,0.729793134,0.670661216,0.611529298,0.55239738,0.727840047,0.903282713,1.078725379,1.078725379,1.078725379 +29,MO,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,0,0,0,,0,0,,0,0,0,0.000231667,0.000463333,0.000695,0.000577733,0.000460467,0.0003432,0.0002288,0.0001144,0,0,0 +29,MO,7,OTHER INDUSTRIAL PROCESSES,PM25,4.24719,4.80401,4.93624,5.19888,4.796999,4.979407,6.710736228,6.001824328,6.112692156,6.223559983,6.33442781,5.766281167,5.198134524,4.62998788,4.387063822,4.144139764,3.897400705,4.049632194,4.201863682,4.354095171,4.842707731,5.331320292,5.819932853,5.819932853,5.819932853 +29,MO,7,OTHER INDUSTRIAL PROCESSES,VOC,4.44868,3.09066,3.19733,3.24902,5.07757,5.331951,5.854518403,6.723769658,6.58123502,6.438700382,6.296165744,5.609018007,4.921870271,4.234722534,4.033943536,3.833164537,3.632385539,3.816534286,4.000683032,4.184831779,4.309136537,4.433441295,4.557746053,4.557746053,4.557746053 +29,MO,7,OTHER INDUSTRIAL PROCESSES,SO2,9.11984,9.43922,9.88315,10.00432,16.28721,17.317734,18.596354,17.69610509,17.70862359,17.72114209,17.73366059,17.35539976,16.97713893,16.5988781,12.9270654,9.2552527,5.58344,5.955986867,6.328533733,6.7010806,6.145675133,5.590269667,5.0348642,5.0348642,5.0348642 +29,MO,7,OTHER INDUSTRIAL PROCESSES,PM10,14.88717,18.24848,18.68904,19.81354,15.57186,16.033015,18.11712402,16.82302521,16.69744241,16.5718596,16.4462768,15.8883161,15.3303554,14.7723947,12.18933544,9.606276172,6.858996107,7.103577814,7.348159521,7.592741228,9.648955667,11.70517011,13.76138454,13.76138454,13.76138454 +29,MO,7,OTHER INDUSTRIAL PROCESSES,NOX,9.576,9.94144,10.49698,10.622,16.60429,17.646228,18.947658,21.00954653,20.93717479,20.86480304,20.7924313,20.31344047,19.83444963,19.3554588,17.02199253,14.68852627,12.35506,13.68288499,15.01070997,16.33853496,16.65716047,16.97578599,17.2944115,17.2944115,17.2944115 +29,MO,7,OTHER INDUSTRIAL PROCESSES,NH3,2.01572,2.14682,2.21979,2.24321,2.26726,2.367035,2.498552,3.0285743,3.027470883,3.026367467,3.02526405,2.0434416,1.06161915,0.0797967,0.112397633,0.144998567,0.1777245,0.1774979,0.1772713,0.1770447,0.175804733,0.174564767,0.1733248,0.1733248,0.1733248 +29,MO,7,OTHER INDUSTRIAL PROCESSES,CO,7.19371,7.47168,7.81512,7.89227,17.70879,18.818067,20.83798833,26.48274768,26.64913018,26.81551268,26.98189518,26.0959692,25.21004322,24.32411724,24.22280327,24.1214893,24.02017533,26.8521008,29.68402627,32.51595173,28.41623739,24.31652304,20.2168087,20.2168087,20.2168087 +29,MO,8,SOLVENT UTILIZATION,VOC,127.96025,112.77726,115.59896,107.96906,110.9622,103.218218,107.816746,103.4796359,101.0489227,98.61820949,96.1874963,92.24047857,88.29346084,84.34644311,77.2732996,70.20015609,62.99785673,67.28587552,71.57389431,75.86191311,76.83982196,77.81773081,78.79563966,78.79563966,78.79563966 +29,MO,8,SOLVENT UTILIZATION,SO2,0.00093,0.00095,0.00097,0.00102,0.01552,0.016413,0.017607,0.0000722,4.91E-05,2.61E-05,0.000003,1.36E-05,2.41E-05,0.0000347,2.31E-05,1.16E-05,0,8.67E-07,1.73E-06,0.0000026,1.73E-06,8.67E-07,0,0,0 +29,MO,8,SOLVENT UTILIZATION,CO,0.00006,0.00006,0.00006,0.00007,0.00372,0.00391,0.00414,0.0047312,0.003318133,0.001905067,0.000492,0.0018308,0.0031696,0.0045084,0.0031856,0.0018628,0.00054,0.000481533,0.000423067,0.0003646,0.000243067,0.000121533,0,0,0 +29,MO,8,SOLVENT UTILIZATION,PM10,0.08711,0.08725,0.09166,0.09409,0.35454,0.379872,0.413199,0.1351593,0.129346233,0.123533167,0.1177201,0.118488667,0.119257233,0.1200258,0.1131372,0.1062486,0.10092,0.1139617,0.1270034,0.1400451,0.132245433,0.124445767,0.1166461,0.1166461,0.1166461 +29,MO,8,SOLVENT UTILIZATION,NH3,,,,,0.000077,0.000081,0.000083,,0.0005694,0.0011388,0.0017082,0.002427967,0.003147733,0.0038675,0.003565,0.0032625,0.00296,0.002926167,0.002892333,0.0028585,0.002518533,0.002178567,0.0018386,0.0018386,0.0018386 +29,MO,8,SOLVENT UTILIZATION,NOX,0.00759,0.00789,0.00826,0.00845,0.04653,0.048437,0.051665,0.0047775,0.004466333,0.004155167,0.003844,0.005098167,0.006352333,0.0076065,0.005704333,0.003802167,0.0019,0.0015025,0.001105,0.0007075,0.000471667,0.000235833,0,0,0 +29,MO,8,SOLVENT UTILIZATION,PM25,0.07568,0.07588,0.07992,0.082,0.35454,0.379872,0.413199,0.109550811,0.102251608,0.094952405,0.087653202,0.091164568,0.094675934,0.0981873,0.097114321,0.096041342,0.096528363,0.110433009,0.124337654,0.1382423,0.1307896,0.1233369,0.1158842,0.1158842,0.1158842 +29,MO,9,STORAGE & TRANSPORT,PM25,3.48854,3.50376,3.62873,3.66447,1.694673,1.754664,1.830959,1.915007291,1.916171896,1.917336501,1.918501106,1.52807755,1.137653993,0.747230437,0.687740788,0.628251139,0.572666491,0.520592927,0.468519363,0.4164458,0.414819579,0.413193359,0.411567138,0.411567138,0.411567138 +29,MO,9,STORAGE & TRANSPORT,NH3,,,,,0,0,,,0,0,,0,0,0,0,0,0,0,0,,0,0,0,0,0 +29,MO,9,STORAGE & TRANSPORT,NOX,0.1915,0.1915,0.19331,0.19998,0.04074,0.041869,0.043242,4.9942782,4.994234,4.9941898,4.9941456,3.3459108,1.697676,0.0494412,0.069727467,0.090013733,0.1103,0.106643767,0.102987533,0.0993313,0.097502233,0.095673167,0.0938441,0.0938441,0.0938441 +29,MO,9,STORAGE & TRANSPORT,PM10,8.09128,8.09311,8.3915,8.50495,3.66483,3.795721,3.961262,4.020119722,3.985885989,3.951652256,3.917418522,3.207147248,2.496875974,1.7866047,1.545436467,1.304268233,1.07434,1.1820027,1.2896654,1.3973281,1.3399563,1.2825845,1.2252127,1.2252127,1.2252127 +29,MO,9,STORAGE & TRANSPORT,SO2,0.00483,0.00483,0.00488,0.00492,0.01051,0.010935,0.011713,0.0049154,0.004645167,0.004374933,0.0041047,0.005395767,0.006686833,0.0079779,0.010565267,0.013152633,0.01574,0.012659267,0.009578533,0.0064978,0.006352333,0.006206867,0.0060614,0.0060614,0.0060614 +29,MO,9,STORAGE & TRANSPORT,VOC,38.45935,25.16921,25.27052,25.2326,39.23109,39.239912,39.74059,38.52061132,38.33464211,38.14867289,37.96270368,36.09328489,34.2238661,32.3544473,32.45181268,32.54917805,28.68093741,22.76135119,16.84176497,10.92217876,11.62258287,12.32298698,13.02339109,13.02339109,13.02339109 +29,MO,9,STORAGE & TRANSPORT,CO,,,,,0.06774,0.069579,0.071683,0.216731,0.170357833,0.123984667,0.0776115,0.090300367,0.102989233,0.1156781,0.1106254,0.1055727,0.10052,0.095397633,0.090275267,0.0851529,0.086043633,0.086934367,0.0878251,0.0878251,0.0878251 +29,MO,10,WASTE DISPOSAL & RECYCLING,NOX,1.75329,2.46914,2.53378,2.58823,4.20625,1.816341,1.772425,2.057394394,2.044208628,2.031022861,2.017837094,1.779861745,1.541886397,1.303911048,1.259591864,1.215272681,1.170953497,1.416471164,1.66198883,1.907506497,1.803725842,1.699945186,1.596164531,1.596164531,1.596164531 +29,MO,10,WASTE DISPOSAL & RECYCLING,PM25,5.72907,9.75082,10.07801,10.27773,10.568672,7.513883,7.495595,7.821735865,7.826879989,7.832024112,7.837168236,6.669979681,5.502791125,4.33560257,4.212740655,4.089878741,3.967016826,4.397503005,4.827989185,5.258475365,5.534563296,5.810651228,6.086739159,6.086739159,6.086739159 +29,MO,10,WASTE DISPOSAL & RECYCLING,CO,53.14651,62.17244,63.22364,64.50034,89.03773,35.777212,35.824581,38.08903821,37.93641207,37.78378594,37.63115981,33.90495679,30.17875378,26.45255077,25.45914654,24.4657423,23.47233807,30.28100238,37.08966668,43.89833099,42.22311134,40.54789169,38.87267204,38.87267204,38.87267204 +29,MO,10,WASTE DISPOSAL & RECYCLING,VOC,11.65516,8.19621,8.4752,8.64537,17.19196,7.451576,7.497705,7.567696127,7.531509027,7.495321927,7.459134827,5.742665593,4.026196359,2.309727126,2.209841139,2.109955153,2.013784732,2.742242209,3.470699685,4.199157161,4.123365521,4.04757388,3.97178224,3.97178224,3.97178224 +29,MO,10,WASTE DISPOSAL & RECYCLING,PM10,6.64306,10.17914,10.53461,10.74357,11.070022,8.024378,8.006733,7.877756106,7.891419295,7.905082485,7.918745675,6.976956214,6.035166754,5.093377293,4.942257307,4.791137322,4.640017336,5.207731425,5.775445514,6.343159604,6.488477134,6.633794665,6.779112195,6.779112195,6.779112195 +29,MO,10,WASTE DISPOSAL & RECYCLING,NH3,1.83486,1.02681,1.02681,1.04963,1.072511,1.095043,1.129358,0.014967063,0.31670673,0.618446396,0.920186063,1.046141007,1.172095951,1.298050895,1.257484448,1.216918001,1.177090295,1.132046333,1.087002371,1.04195841,1.025343601,1.008728793,0.992113984,0.992113984,0.992113984 +29,MO,10,WASTE DISPOSAL & RECYCLING,SO2,0.47571,0.32357,0.33447,0.3436,0.18658,0.220436,0.197516,0.0611886,0.053666233,0.046143867,0.0386215,0.070775387,0.102929273,0.13508316,0.134714211,0.134345262,0.133976314,0.253139563,0.372302812,0.491466061,0.529651696,0.567837332,0.606022967,0.606022967,0.606022967 +29,MO,11,HIGHWAY VEHICLES,VOC,205.49223,150.8402,145.87156,143.55382,138.18699,130.92292,122.27421,106.8575615,101.4112619,95.96496238,90.51866283,93.0838375,95.64901216,82.21385024,68.16446564,75.21316079,62.27780734,64.20631777,66.13482819,68.06333862,62.75961685,52.67086372,49.16653342,45.75753633,42.96259733 +29,MO,11,HIGHWAY VEHICLES,SO2,11.94537,7.55528,7.82027,7.9478,8.15372,6.44364,6.49723,8.064790785,7.026800261,5.988809737,4.950819213,3.224752889,1.498686564,1.43919272,1.371285259,1.432832969,0.634388915,0.638383559,0.642378203,0.646372847,0.578300708,0.592145207,0.571970491,0.302323381,0.261075841 +29,MO,11,HIGHWAY VEHICLES,PM25,7.74681,5.84998,5.57189,5.19004,4.85174,4.38954,4.04499,8.841883538,8.513008776,8.184134013,7.855259251,7.816270685,7.777282119,7.010722102,7.197214119,6.941474722,7.14939981,6.541011633,5.932623455,5.324235278,4.570108704,3.377178452,3.406695161,3.480098932,3.233965109 +29,MO,11,HIGHWAY VEHICLES,PM10,9.20641,7.29684,7.04448,6.63139,6.29103,5.79583,5.42313,10.64000485,10.30062245,9.961240048,9.621857646,9.738889708,9.855921771,9.008233149,9.181181558,8.952049808,11.27681952,10.34306763,9.409315749,8.475563863,7.681363257,6.104199237,6.394518777,6.652389352,6.376707742 +29,MO,11,HIGHWAY VEHICLES,NOX,224.46411,221.1117,224.19941,221.45781,215.99039,212.10837,195.55902,282.0224817,261.1050747,240.1876677,219.2702608,213.8455998,208.4209388,189.5048938,189.9826601,185.3414245,177.6643319,171.1529403,164.6415487,158.1301572,142.4331437,108.7134752,108.8176382,100.3601832,91.56774702 +29,MO,11,HIGHWAY VEHICLES,NH3,3.53607,5.79132,6.54789,6.35799,6.59709,6.69065,6.79853,3.737762011,3.591206443,3.444650874,3.298095306,3.360035471,3.421975637,3.171267546,2.819527481,2.903697773,2.468591419,2.496778726,2.524966033,2.55315334,2.451143697,2.403646275,2.485480819,2.207675001,2.158646768 +29,MO,11,HIGHWAY VEHICLES,CO,2532.46555,1929.93137,1861.51639,1797.57013,1670.24469,1690.2959,1585.68467,1447.22725,1368.992165,1290.757081,1212.521996,1117.683514,1022.845032,910.4869721,689.8137454,755.2242914,527.2841568,576.9138043,626.5434519,676.1730994,632.9962155,551.5601449,528.1550133,484.9625227,462.0347724 +29,MO,12,OFF-HIGHWAY,VOC,54.55715,61.04469,57.70661,56.22469,55.98534,55.48995,54.9478,66.71627578,65.21164277,63.70700976,62.20237675,59.79626142,57.39014608,53.71827658,51.40627748,50.13707908,47.28839143,44.03999497,40.79159851,37.54320205,33.25777484,26.07141056,24.68692041,23.7939208,22.90092119 +29,MO,12,OFF-HIGHWAY,SO2,10.69496,12.08946,12.20937,12.36254,12.5151,12.70387,12.75934,10.28855503,10.40208935,10.51562367,10.62915798,7.431924824,4.234691666,1.623194811,2.288006786,1.84259345,0.709985497,0.57781639,0.445647283,0.313478176,0.351567155,0.413191778,0.427745113,0.431563543,0.435381972 +29,MO,12,OFF-HIGHWAY,PM25,7.99052,8.34665,8.18324,8.02098,7.9585,7.80282,7.65357,7.897434737,7.73849232,7.579549903,7.420607487,6.926480927,6.432354367,5.648191846,5.873964769,5.716713634,5.206769034,4.988353296,4.769937559,4.551521821,4.240286241,3.789713472,3.61781508,3.407460204,3.197105328 +29,MO,12,OFF-HIGHWAY,PM10,8.72308,9.10855,8.92697,8.74482,8.68602,8.51617,8.35445,8.172440062,8.008993555,7.845547049,7.682100543,7.231676412,6.781252282,6.014138673,6.2461086,6.082772371,5.496236632,5.271377486,5.046518339,4.821659193,4.475390798,3.960802521,3.782854008,3.565422076,3.347990144 +29,MO,12,OFF-HIGHWAY,NOX,110.91999,123.24348,122.97618,122.26077,121.02446,120.95412,121.16444,126.7760577,126.1420278,125.5079979,124.8739681,111.3198205,97.765673,87.45505033,94.99330355,93.40348206,81.13352078,80.43403015,79.73453952,79.03504888,73.01877719,62.30494153,60.9862338,58.20412542,55.42201705 +29,MO,12,OFF-HIGHWAY,CO,432.29269,492.02719,479.98256,480.23851,485.00979,489.40694,498.75698,498.2122795,480.3125257,462.4127718,444.513018,425.2770107,406.0410034,377.3013468,348.6887937,338.1754466,329.2753434,317.2958095,305.3162756,293.3367417,279.3243444,253.3644528,251.2995497,250.2566713,249.2137929 +29,MO,12,OFF-HIGHWAY,NH3,0.68665,0.73546,0.71297,0.74278,0.06759,0.06759,0.06759,0.062253598,0.063070022,0.063886445,0.064702869,0.06732205,0.069941231,0.065315532,0.071697026,0.072587037,0.068191577,0.070472687,0.072753797,0.075034907,0.071172124,0.061284893,0.063446557,0.063410256,0.063373955 +29,MO,14,MISCELLANEOUS,CO,37.95143,108.57123,26.57861,14.20344,49.72915,71.863677,24.374938,35.0667,114.4465457,193.8263915,273.2062372,190.72489,108.2435429,25.76219576,17.18116468,8.600133603,0.019102524,4.478898724,8.938694924,13.39849112,10.76931042,8.140129725,5.510949026,5.510949026,5.510949026 +29,MO,14,MISCELLANEOUS,VOC,5.24918,14.45825,3.16774,1.91668,5.82269,3.700272,1.470244,2.9054839,21.83886084,40.77223778,59.70561471,40.57858291,21.45155111,2.324519313,1.552994692,0.781470071,0.009945451,2.007713408,4.005481366,6.003249323,6.695526249,7.387803175,8.080080101,8.080080101,8.080080101 +29,MO,14,MISCELLANEOUS,SO2,0.0434,0.11139,0.02328,0.01267,0.07401,0.41721,0.1378,0.54151,1.355886889,2.170263778,2.984640667,2.042459698,1.10027873,0.158097762,0.107664902,0.057232042,0.006799182,0.034758336,0.06271749,0.090676644,0.079651503,0.068626362,0.05760122,0.05760122,0.05760122 +29,MO,14,MISCELLANEOUS,PM25,184.35556,156.33689,153.28372,147.26003,158.303705,156.077377,153.9734751,99.03077952,106.4247203,113.8186611,121.2126019,115.5138668,109.8151317,104.1163967,104.5078588,104.899321,105.2907832,114.7697299,124.2486766,133.7276234,131.1164357,128.505248,125.8940603,125.8940603,125.8940603 +29,MO,14,MISCELLANEOUS,PM10,1096.5405,882.72248,891.9839,860.90115,925.45048,889.006428,948.5714835,918.73285,927.4576967,936.1825435,944.9073902,888.7192537,832.5311171,776.3429806,787.5434587,798.7439368,809.9444149,907.0888345,1004.233254,1101.377674,1075.478432,1049.579191,1023.67995,1023.67995,1023.67995 +29,MO,14,MISCELLANEOUS,NOX,1.07538,3.10563,0.759,0.46059,1.49466,1.637347,0.620149,1.935933073,3.7454157,5.554898328,7.364380955,5.303778994,3.243177033,1.182575072,0.791585097,0.400595121,0.009605146,0.131325518,0.253045889,0.37476626,0.311551153,0.248336047,0.18512094,0.18512094,0.18512094 +29,MO,14,MISCELLANEOUS,NH3,171.90703,176.67946,183.19302,187.72223,190.7055,194.24551,107.2745287,107.9622592,109.2793788,110.5964984,111.913618,116.0524191,120.1912203,124.3300214,123.7377512,123.1454811,122.5532109,110.000877,97.44854302,84.89620907,96.0463335,107.1964579,118.3465824,118.3465824,118.3465824 +29,MO,15,WILDFIRES,NOX,,,,,,,,0.016448922,0.016448922,0.016448922,0.171013996,0.171013996,0.171013996,0.136489337,0.136489337,0.136489337,1.251540599,1.251540599,1.251540599,1.0266285,1.0266285,1.0266285,0.876140322,0.876140322,0.876140322 +29,MO,15,WILDFIRES,PM10,,,,,,,,0.147589116,0.147589116,0.147589116,0.676396731,0.676396731,0.676396731,1.43207133,1.43207133,1.43207133,10.09574758,10.09574758,10.09574758,8.327061294,8.327061294,8.327061294,6.517262234,6.517262234,6.517262234 +29,MO,15,WILDFIRES,PM25,,,,,,,,0.124704867,0.124704867,0.124704867,0.573217569,0.573217569,0.573217569,1.2136185,1.2136185,1.2136185,8.555715182,8.555715182,8.555715182,7.056830607,7.056830607,7.056830607,5.523102931,5.523102931,5.523102931 +29,MO,15,WILDFIRES,SO2,,,,,,,,0.009713796,0.009713796,0.009713796,0.071841997,0.071841997,0.071841997,0.090644587,0.090644587,0.090644587,0.717848397,0.717848397,0.717848397,0.590548434,0.590548434,0.590548434,0.481986991,0.481986991,0.481986991 +29,MO,15,WILDFIRES,CO,,,,,,,,1.54058272,1.54058272,1.54058272,5.848252751,5.848252751,5.848252751,14.6317619,14.6317619,14.6317619,100.2648444,100.2648444,100.2648444,82.75569164,82.75569164,82.75569164,64.04514895,64.04514895,64.04514895 +29,MO,15,WILDFIRES,VOC,,,,,,,,0.347309077,0.347309077,0.347309077,1.405252807,1.405252807,1.405252807,3.43445109,3.43445109,3.43445109,23.62301985,23.62301985,23.62301985,19.49598796,19.49598796,19.49598796,15.11086112,15.11086112,15.11086112 +29,MO,15,WILDFIRES,NH3,,,,,,,,0.023051039,0.023051039,0.023051039,0.097756717,0.097756717,0.097756717,0.238918363,0.238918363,0.238918363,1.643340934,1.643340934,1.643340934,1.356244097,1.356244097,1.356244097,1.051190254,1.051190254,1.051190254 +29,MO,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,4.05641773,4.77272123,5.48902473,6.20532823,6.925751967,7.646175703,8.36659944,11.66839334,14.97018724,18.27198114,18.27198114,18.27198114 +29,MO,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,2.165431647,2.668697315,3.171962982,3.67522865,4.03347812,4.39172759,4.749977059,6.160973775,7.571970492,8.982967208,8.982967208,8.982967208 +29,MO,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,28.40293321,36.65677317,44.91061314,53.1644531,57.5034436,61.84243409,66.18142458,79.88202065,93.58261672,107.2832128,107.2832128,107.2832128 +29,MO,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,4.54748547,5.934469871,7.321454272,8.708438673,9.388868687,10.0692987,10.74972871,12.75278807,14.75584742,16.75890677,16.75890677,16.75890677 +29,MO,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,276.7409219,361.773852,446.8067822,531.8397123,573.1115876,614.3834629,655.6553382,775.7302513,895.8051645,1015.880078,1015.880078,1015.880078 +29,MO,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,65.37003231,85.30798037,105.2459284,125.1838765,134.9650735,144.7462706,154.5274676,183.3213149,212.1151621,240.9090094,240.9090094,240.9090094 +29,MO,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,24.07027134,31.06505497,38.05983859,45.05462222,48.73173297,52.40884371,56.08595446,67.69662614,79.30729782,90.91796951,90.91796951,90.91796951 +30,MT,1,FUEL COMB. ELEC. UTIL.,NOX,31.55767,25.54758,35.09761,39.79311,41.89588,36.242658,40.877986,36.6000001,36.944675,36.61699,39.86688514,35.702958,34.293232,28.2628618,24.8582983,21.4537348,18.0491958,18.29146127,18.53372673,18.7759922,17.19452427,15.61305633,14.0315884,13.770277,14.448292 +30,MT,1,FUEL COMB. ELEC. UTIL.,VOC,0.33038,0.25713,0.29951,0.33854,0.39203,0.320783,0.365835,0.359,0.377127033,0.395254067,0.4133811,0.417098367,0.420815633,0.4245329,0.402574867,0.380616833,0.3586987,0.358669767,0.358640833,0.3586119,0.348215167,0.337818433,0.3274217,0.3274217,0.3274217 +30,MT,1,FUEL COMB. ELEC. UTIL.,SO2,17.92161,17.14482,19.72412,20.39922,24.57431,23.678713,27.944056,23.3962,20.400891,20.349463,19.89082804,18.972597,21.643196,21.5415379,20.30252117,19.06350443,17.8244877,17.1034766,16.3824655,15.6614544,14.1944174,12.7273804,11.2603434,8.261828,9.126096 +30,MT,1,FUEL COMB. ELEC. UTIL.,PM10,4.51327,4.113,5.13897,5.94186,7.96935,7.149985,7.904406,2.403557136,2.528889628,2.654222119,2.779554611,2.094884741,1.41021487,0.725545,1.312022776,1.898500551,2.484980927,2.42287246,2.360763993,2.298655527,2.204889471,2.111123415,2.017357359,2.017357359,2.017357359 +30,MT,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00281,0.00308,0.00372,0.005835,0.005139,0.00514,0.0107925,0.010621259,0.010450018,0.010278777,0.008754512,0.007230247,0.005705982,0.005792073,0.005878163,0.005964254,0.00600533,0.006046405,0.006087481,0.004197858,0.002308236,0.000418613,0.000418613,0.000418613 +30,MT,1,FUEL COMB. ELEC. UTIL.,CO,2.83597,2.04772,2.39641,2.7183,3.27917,2.50998,3.013517,3.061,3.173912733,3.286825467,3.3997382,3.239970933,3.080203667,2.9204364,2.776950067,2.633463733,2.4899923,2.492636267,2.495280233,2.4979242,2.434976933,2.372029667,2.3090824,2.3090824,2.3090824 +30,MT,1,FUEL COMB. ELEC. UTIL.,PM25,2.3902,2.05021,2.54796,2.94518,4.936327,4.455738,4.923794,2.076905456,2.186476941,2.296048425,2.40561991,1.682539305,0.9594587,0.236378094,0.836407467,1.43643684,2.036468813,1.958146817,1.879824822,1.801502827,1.748109117,1.694715408,1.641321699,1.641321699,1.641321699 +30,MT,2,FUEL COMB. INDUSTRIAL,CO,6.56467,9.26493,8.92148,8.80778,9.45659,9.46239,9.884631,11.96996038,11.31927784,10.66859531,10.01791278,8.706908517,7.395904259,6.0849,4.983773411,3.882646822,2.779585333,3.058971894,3.338358455,3.617745017,4.575021948,5.532298879,6.48957581,6.48957581,6.48957581 +30,MT,2,FUEL COMB. INDUSTRIAL,VOC,1.43158,1.79874,1.72732,1.71346,1.29391,1.296609,1.324678,1.357106908,1.378440242,1.399773575,1.421106908,1.278048572,1.134990236,0.9919319,0.949127413,0.906322926,0.858966539,0.838087191,0.817207843,0.796328495,1.003529194,1.210729893,1.417930592,1.417930592,1.417930592 +30,MT,2,FUEL COMB. INDUSTRIAL,SO2,11.57331,5.83143,5.78798,5.64963,4.45258,4.56623,4.555794,4.606669227,4.629669227,4.652669227,4.675669227,3.371379185,2.067089142,0.7627991,0.677615913,0.592432727,0.50722074,1.590048142,2.672875545,3.755702947,3.696730822,3.637758696,3.578786571,3.578786571,3.578786571 +30,MT,2,FUEL COMB. INDUSTRIAL,PM25,1.46752,0.70614,0.67275,0.65881,0.838621,0.846766,0.874947,0.562731598,0.558291781,0.553851964,0.549412147,0.478879026,0.408345904,0.337812783,0.328977352,0.320141922,0.310939092,0.469008472,0.627077853,0.785147234,0.842033301,0.898919369,0.955805437,0.955805437,0.955805437 +30,MT,2,FUEL COMB. INDUSTRIAL,PM10,1.61185,0.91428,0.87212,0.85394,0.992986,1.000246,1.037768,0.710890021,0.715878149,0.720866278,0.725854406,0.617310864,0.508767322,0.40022378,0.377372634,0.354521489,0.331302943,0.991363358,1.651423772,2.311484186,2.332538028,2.353591871,2.374645713,2.374645713,2.374645713 +30,MT,2,FUEL COMB. INDUSTRIAL,NOX,15.84714,19.94133,19.44682,19.1652,19.44722,19.52587,19.597748,13.16498897,9.855322304,6.545655637,3.235988971,4.852931647,6.469874324,8.086817,6.711172058,5.335527116,3.955345674,4.645540605,5.335735537,6.025930468,6.852802537,7.679674606,8.506546675,8.506546675,8.506546675 +30,MT,2,FUEL COMB. INDUSTRIAL,NH3,0.02471,0.3136,0.32248,0.31979,0.313784,0.322179,0.304304,0.039788533,0.040121867,0.0404552,0.040788533,0.029600855,0.018413178,0.0072255,0.010534811,0.013844122,0.017153432,0.045479342,0.073805252,0.102131161,0.110842509,0.119553856,0.128265204,0.128265204,0.128265204 +30,MT,3,FUEL COMB. OTHER,VOC,9.08566,6.77613,6.78324,6.78399,6.757461,7.24717,7.251458,7.638291101,6.752734967,5.867178833,4.981622699,3.969681905,2.95774111,1.945800316,1.951145401,1.956490487,1.91520349,1.860432293,1.805661095,1.750889898,1.834429133,1.917968368,2.001507602,2.001507602,2.001507602 +30,MT,3,FUEL COMB. OTHER,CO,48.47846,19.50617,19.56261,19.56396,18.962333,20.298888,20.334187,23.59894556,23.70561223,23.8122789,23.91894556,20.07191138,16.2248772,12.37784301,12.35803079,12.33821856,11.89414132,11.79692278,11.69970423,11.60248569,12.04243609,12.48238649,12.9223369,12.9223369,12.9223369 +30,MT,3,FUEL COMB. OTHER,NH3,0.0156,0.01644,0.0161,0.01467,0.015627,0.015846,0.01615,0.006653017,0.006653017,0.006653017,0.006653017,0.102344228,0.198035439,0.29372665,0.300352389,0.306978128,0.308114475,0.303443894,0.298773313,0.294102732,0.297402678,0.300702624,0.30400257,0.30400257,0.30400257 +30,MT,3,FUEL COMB. OTHER,NOX,2.56278,2.93361,2.87102,2.72368,3.165436,3.244594,3.318168,2.879028493,2.67269516,2.466361826,2.260028493,2.303167344,2.346306195,2.389445047,2.693546958,2.99764887,3.298246475,3.182361445,3.066476415,2.950591384,2.689804275,2.429017166,2.168230056,2.168230056,2.168230056 +30,MT,3,FUEL COMB. OTHER,PM10,6.45129,2.49327,2.49317,2.4898,2.64644,2.828974,2.835102,3.103882096,3.107882096,3.111882096,3.115882096,2.584428347,2.052974598,1.521520849,1.604502568,1.687484288,1.704284461,1.646214839,1.588145218,1.530075596,1.618089121,1.706102646,1.794116171,1.794116171,1.794116171 +30,MT,3,FUEL COMB. OTHER,SO2,0.8931,0.34785,0.35397,0.32312,0.532698,0.544729,0.555321,0.506839731,0.519506398,0.532173065,0.544839731,0.496080228,0.447320724,0.398561221,0.409606218,0.420651215,0.430731714,0.331416512,0.232101309,0.132786107,0.118315228,0.103844349,0.08937347,0.08937347,0.08937347 +30,MT,3,FUEL COMB. OTHER,PM25,6.40768,2.46773,2.46623,2.46275,2.632616,2.814856,2.820631,3.08378772,3.087633931,3.091480142,3.095326354,2.564714528,2.034102702,1.503490877,1.576612862,1.649734847,1.656668586,1.605692743,1.5547169,1.503741057,1.595703269,1.68766548,1.779627692,1.779627692,1.779627692 +30,MT,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.0229,0.06877,0.07197,0.07199,0.06339,0.063815,0.0643,0.049,0.032666667,0.016333333,,0.0237518,0.0475036,0.0712554,0.067269667,0.063283933,0.0592982,0.0659037,0.0725092,0.0791147,0.078322467,0.077530233,0.076738,0.076738,0.076738 +30,MT,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.01179,0.01236,0.01236,0.013161,0.013239,0.013332,0.011,0.008,0.005,0.002,0.007349267,0.012698533,0.0180478,0.012031867,0.006015933,0,0.001537,0.003074,0.004611,0.005468833,0.006326667,0.0071845,0.0071845,0.0071845 +30,MT,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.25799,0.29046,0.29456,0.29857,0.54411,0.558763,0.572876,0.72,0.616666667,0.513333333,0.41,0.402687167,0.395374333,0.3880615,0.377549767,0.367038033,0.3565263,0.3501941,0.3438619,0.3375297,0.3398015,0.3420733,0.3443451,0.3443451,0.3443451 +30,MT,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.02996,0.02386,0.02473,0.02461,0.0259,0.026351,0.027029,0.018,0.018666667,0.019333333,0.02,0.028472367,0.036944733,0.0454171,0.047158533,0.048899967,0.0506414,0.042918036,0.035194673,0.027471309,0.026277477,0.025083646,0.023889814,0.023889814,0.023889814 +30,MT,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.02882,0.01989,0.02065,0.02053,0.022419,0.022801,0.023384,0.007770825,0.010011161,0.012251497,0.014491833,0.024436212,0.034380591,0.04432497,0.04095615,0.03758733,0.03421851,0.029806776,0.025395043,0.020983309,0.021059244,0.021135179,0.021211114,0.021211114,0.021211114 +30,MT,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,5.73375,4.65425,4.73581,4.75823,3.74396,3.796068,3.878084,3.876,3.278333333,2.680666667,2.083,1.9039084,1.7248168,1.5457252,1.693087633,1.840450067,1.9878125,1.842037767,1.696263033,1.5504883,1.430723267,1.310958233,1.1911932,1.1911932,1.1911932 +30,MT,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.00013,0.00013,0.00013,0.00013,0.00029,0.000296,0.000301,0.12234,0.128673333,0.135006667,0.14134,0.1128899,0.0844398,0.0559897,0.051836233,0.047682767,0.0435293,0.0508667,0.0582041,0.0655415,0.068444,0.0713465,0.074249,0.074249,0.074249 +30,MT,5,METALS PROCESSING,SO2,19.08516,11.0424,11.11183,10.62576,10.48314,10.629949,11.196003,0.584,0.493666667,0.403333333,0.313,0.2105399,0.1080798,0.0056197,0.0071047,0.0085897,0.0100747,0.008501233,0.006927767,0.0053543,0.0065314,0.0077085,0.0088856,0.0088856,0.0088856 +30,MT,5,METALS PROCESSING,PM25,1.43721,0.73091,0.73303,0.70902,1.452208,1.474532,1.551415,0.297889134,0.25737905,0.216868966,0.176358882,0.150562205,0.124765529,0.098968853,0.081855298,0.064741744,0.04762819,0.047319624,0.047011058,0.046702492,0.047259764,0.047817036,0.048374308,0.048374308,0.048374308 +30,MT,5,METALS PROCESSING,CO,32.83769,32.61814,32.82226,31.38926,32.52051,32.975797,34.731905,13.026,10.81666667,8.607333333,6.398,9.149703333,11.90140667,14.65311,9.76874,4.88437,0,0.0003534,0.0007068,0.0010602,0.000725467,0.000390733,0.000056,0.000056,0.000056 +30,MT,5,METALS PROCESSING,NOX,0.5889,0.01564,0.01558,0.01538,0.00023,0.000233,0.000246,0.001,0.000666667,0.000333333,,0.0000748,0.0001496,0.0002244,0.0001496,0.0000748,0,0.002604,0.005208,0.007812,0.005364333,0.002916667,0.000469,0.000469,0.000469 +30,MT,5,METALS PROCESSING,PM10,2.73297,1.48623,1.48764,1.44771,1.79323,1.823098,1.916296,0.519,0.465333333,0.411666667,0.358,0.317248933,0.276497867,0.2357468,0.212872233,0.189997667,0.1671231,0.16449776,0.16187242,0.15924708,0.15946192,0.15967676,0.1598916,0.1598916,0.1598916 +30,MT,5,METALS PROCESSING,VOC,0.51682,0.4401,0.44288,0.42355,0.34478,0.349607,0.368225,0.136,0.112666667,0.089333333,0.066,0.0580013,0.0500026,0.0420039,0.028012233,0.014020567,0.0000289,2.49E-05,2.08E-05,0.0000168,1.71E-05,1.73E-05,0.0000176,0.0000176,0.0000176 +30,MT,5,METALS PROCESSING,NH3,,,,,0.000007,0.000007,0.000008,0.166,0.110666667,0.055333333,,0,0,,0,0,0,0,0,,0,0,0,0,0 +30,MT,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.49239,0.61185,0.64026,0.64033,0.60756,0.611355,0.61549,0.508,0.34,0.172,0.004,0.110768767,0.217537533,0.3243063,4.604319728,8.884333156,4.56860265,4.570835154,4.573067657,4.57530016,3.92336507,3.27142998,2.61949489,2.61949489,2.61949489 +30,MT,6,PETROLEUM & RELATED INDUSTRIES,VOC,9.65609,5.8738,6.14189,6.14507,5.1785,4.436882,4.468187,2.30452,2.473186667,2.641853333,2.81052,2.434252133,2.057984267,1.6817164,13.99274868,26.30378096,48.11480813,49.27231898,50.42982984,51.58734069,45.21320587,38.83907105,32.46493623,32.46493623,32.46493623 +30,MT,6,PETROLEUM & RELATED INDUSTRIES,SO2,11.2845,5.24253,5.48931,5.4895,3.4836,3.504293,3.528471,5.05,4.958666667,4.867333333,4.776,3.519418267,2.262836533,1.0062548,0.951726372,0.897197944,0.934698354,0.890335603,0.845972851,0.8016101,0.766368354,0.731126607,0.695884861,0.695884861,0.695884861 +30,MT,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.38732,0.29173,0.3048,0.30493,0.380197,0.382378,0.384937,0.239305602,0.260633236,0.281960869,0.303288503,0.260418902,0.217549301,0.1746797,0.329272308,0.483864917,0.443346316,0.411031081,0.378715846,0.346400611,0.311727719,0.277054827,0.242381935,0.242381935,0.242381935 +30,MT,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.79033,0.41819,0.43551,0.43594,0.454091,0.456604,0.459544,0.416,0.428333333,0.440666667,0.453,0.3855193,0.3180386,0.2505579,0.39575586,0.54095382,0.492670417,0.460554847,0.428439277,0.396323706,0.361057118,0.325790529,0.290523941,0.290523941,0.290523941 +30,MT,6,PETROLEUM & RELATED INDUSTRIES,CO,0.0402,0.09666,0.10058,0.10066,0.21409,0.215205,0.216506,0.187,0.227666667,0.268333333,0.309,0.229635967,0.150271933,0.0709079,5.529022861,10.98713782,4.112965474,4.192320566,4.271675659,4.351030751,4.169701442,3.988372134,3.807042825,3.807042825,3.807042825 +30,MT,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.39333,0.09882,0.10349,0.10349,0.106526,0.107165,0.107911,0.051,0.055333333,0.059666667,0.064,0.049947667,0.035895333,0.021843,0.023174333,0.024505667,0.025837,0.024171,0.022505,0.020839,0.024215258,0.027591517,0.030967775,0.030967775,0.030967775 +30,MT,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00027,0.00027,0.00027,0.000322,0.000332,0.000343,0.0372805,0.077494667,0.117708833,0.157923,0.105816067,0.053709133,0.0016022,0.009269533,0.016936867,0.0246042,0.037425733,0.050247267,0.0630688,0.0667686,0.0704684,0.0741682,0.0741682,0.0741682 +30,MT,7,OTHER INDUSTRIAL PROCESSES,VOC,0.81119,1.29271,1.32509,1.333,1.17396,1.214931,0.838072595,1.431550912,1.440550912,1.449550912,1.458550912,1.162883301,0.86721569,0.57154808,0.529769438,0.487990797,0.446212155,0.460061989,0.473911822,0.487761656,0.603256496,0.718751336,0.834246175,0.834246175,0.834246175 +30,MT,7,OTHER INDUSTRIAL PROCESSES,SO2,0.74049,2.71829,2.7255,2.72704,0.59419,0.613417,0.640129,0.52842,0.555336923,0.582253846,0.609170769,0.969447546,1.329724323,1.6900011,1.320814533,0.951627967,0.5824414,0.5942149,0.6059884,0.6177619,0.549435733,0.481109567,0.4127834,0.4127834,0.4127834 +30,MT,7,OTHER INDUSTRIAL PROCESSES,CO,4.76038,4.78077,4.89002,4.9178,5.07606,5.227468,5.555818494,3.634143988,3.955810654,4.277477321,4.599143988,4.061525372,3.523906756,2.986288139,2.856235511,2.726182883,2.596130255,2.888432548,3.180734841,3.473037134,3.356072039,3.239106945,3.122141851,3.122141851,3.122141851 +30,MT,7,OTHER INDUSTRIAL PROCESSES,PM25,7.19756,8.27003,8.24024,8.83028,8.689364,9.198069,9.678859825,7.635760908,7.675138752,7.714516597,7.753894441,6.247308528,4.740722615,3.234136702,3.286782881,3.33942906,3.39202764,3.363810661,3.335593683,3.307376704,3.253961439,3.200546174,3.147130909,3.147130909,3.147130909 +30,MT,7,OTHER INDUSTRIAL PROCESSES,PM10,25.20843,31.39731,31.17198,34.14017,34.936602,37.11128,37.73544836,33.04980884,33.43423161,33.81865437,34.20307714,29.38685451,24.57063189,19.75440927,20.07067452,20.38693977,20.70285501,20.10239014,19.50192526,18.90146039,18.51763256,18.13380472,17.74997689,17.74997689,17.74997689 +30,MT,7,OTHER INDUSTRIAL PROCESSES,NOX,4.7245,3.96965,4.01624,4.02469,2.54679,2.627681,2.730469,3.24171,3.172341918,3.102973836,3.033605754,3.241353436,3.449101118,3.6568488,3.273093667,2.889338533,2.5055834,2.459163429,2.412743458,2.366323487,2.682346028,2.998368569,3.314391109,3.314391109,3.314391109 +30,MT,8,SOLVENT UTILIZATION,SO2,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +30,MT,8,SOLVENT UTILIZATION,PM25,,,,,0.00005,0.000052,0.000055,,0,0,,3.63E-05,7.25E-05,0.0001088,7.71E-05,4.55E-05,0.0000138,2.41E-05,3.43E-05,0.0000446,0.000115985,0.00018737,0.000258755,0.000258755,0.000258755 +30,MT,8,SOLVENT UTILIZATION,CO,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +30,MT,8,SOLVENT UTILIZATION,NOX,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +30,MT,8,SOLVENT UTILIZATION,NH3,,,,,0.00005,0.000051,0.000051,0,0,0,,3.33E-06,6.67E-06,0.00001,4.59E-05,8.17E-05,0.0001176,0.000125333,0.000133067,0.0001408,0.000145767,0.000150733,0.0001557,0.0001557,0.0001557 +30,MT,8,SOLVENT UTILIZATION,PM10,,,,,0.00005,0.000052,0.000055,0,0,0,,3.63E-05,7.25E-05,0.0001088,0.000118867,0.000128933,0.000139,0.00024,0.000341,0.000442,0.000497,0.000552,0.000607,0.000607,0.000607 +30,MT,8,SOLVENT UTILIZATION,VOC,18.0757,27.08584,27.78335,26.46866,25.70409,25.900469,26.618361,7.3150774,7.316410733,7.317744067,7.3190774,8.387622642,9.456167884,10.52471313,10.63291041,10.74110769,10.83503383,11.77623131,12.71742878,13.65862626,13.76812619,13.87762611,13.98712604,13.98712604,13.98712604 +30,MT,9,STORAGE & TRANSPORT,SO2,,,,,,,,0,0,0,,0,0,,6.67E-07,1.33E-06,0.000002,2.07E-06,2.13E-06,0.0000022,1.97E-06,1.73E-06,0.0000015,0.0000015,0.0000015 +30,MT,9,STORAGE & TRANSPORT,CO,,0.00002,0.00002,0.00002,0.01204,0.012389,0.012805,0.024,0.022333333,0.020666667,0.019,0.019293767,0.019587533,0.0198813,0.019448333,0.019015367,0.0185824,0.016575433,0.014568467,0.0125615,0.012297767,0.012034033,0.0117703,0.0117703,0.0117703 +30,MT,9,STORAGE & TRANSPORT,PM10,5.61337,3.01898,3.05507,3.06225,2.38769,2.450944,2.535197,1.124,1.348,1.572,1.796,1.613940767,1.431881533,1.2498223,1.308517972,1.367213644,1.426259317,1.321449267,1.216639218,1.111829169,1.169948544,1.228067918,1.286187293,1.286187293,1.286187293 +30,MT,9,STORAGE & TRANSPORT,VOC,9.5857,9.03659,9.46164,9.44187,9.70428,8.377611,8.522628,8.21335807,8.138024737,8.062691403,7.98735807,6.728460919,5.469563768,4.210666618,5.218255734,6.225844851,6.497401726,8.569418746,10.64143577,12.71345279,11.56558784,10.4177229,9.269857959,9.269857959,9.269857959 +30,MT,9,STORAGE & TRANSPORT,NOX,,0.00013,0.00013,0.00013,0.00457,0.004708,0.004873,0.009,0.006,0.003,,0.002633467,0.005266933,0.0079004,0.0077031,0.0075058,0.0073085,0.006842133,0.006375767,0.0059094,0.0056334,0.0053574,0.0050814,0.0050814,0.0050814 +30,MT,9,STORAGE & TRANSPORT,NH3,,,,,0.000697,0.000715,0.000731,,0,0,,0,0,,0.000508,0.001016,0.001524,0.004202667,0.006881333,0.00956,0.006511333,0.003462667,0.000414,0.000414,0.000414 +30,MT,9,STORAGE & TRANSPORT,PM25,2.50476,1.00473,1.01107,1.00801,0.919528,0.945676,0.98184,0.270282753,0.333298667,0.396314581,0.459330495,0.420778489,0.382226483,0.343674476,0.424654611,0.505634746,0.586662481,0.548389365,0.510116249,0.471843133,0.473584412,0.475325691,0.47706697,0.47706697,0.47706697 +30,MT,10,WASTE DISPOSAL & RECYCLING,VOC,1.96732,1.57763,1.65282,1.58626,1.61658,1.56114,1.561642,1.835887618,1.837220951,1.838554284,1.839887618,1.442632436,1.045377255,0.648122074,0.632083788,0.616045502,0.599995215,0.71743616,0.834877104,0.952318049,0.847971755,0.743625461,0.639279167,0.639279167,0.639279167 +30,MT,10,WASTE DISPOSAL & RECYCLING,SO2,0.0651,0.04523,0.0468,0.04783,0.04706,0.047862,0.048178,0.077703459,0.063118972,0.048534486,0.03395,0.035514903,0.037079807,0.03864471,0.039264353,0.039883996,0.040494939,0.069005476,0.097516013,0.126026551,0.111528507,0.097030463,0.082532418,0.082532418,0.082532418 +30,MT,10,WASTE DISPOSAL & RECYCLING,PM25,1.21306,1.99778,2.09188,1.99059,2.034912,1.94815,1.948389,2.112130188,2.098932916,2.085735644,2.072538373,1.777652129,1.482765885,1.187879641,1.146601782,1.105323922,1.064027063,1.134842426,1.205657789,1.276473152,1.212169141,1.147865131,1.08356112,1.08356112,1.08356112 +30,MT,10,WASTE DISPOSAL & RECYCLING,PM10,1.38918,2.09629,2.19631,2.09618,2.141426,2.056348,2.056641,2.244110559,2.227938634,2.211766709,2.195594784,1.937069483,1.678544183,1.420018882,1.365824549,1.311630217,1.257410185,1.351823314,1.446236443,1.540649573,1.430575915,1.320502256,1.210428598,1.210428598,1.210428598 +30,MT,10,WASTE DISPOSAL & RECYCLING,NOX,0.35247,0.47438,0.49418,0.46461,0.46715,0.439596,0.44018,0.505801439,0.488609467,0.471417496,0.454225525,0.407387515,0.360549505,0.313711495,0.301977874,0.290244252,0.27849643,0.318224437,0.357952443,0.397680449,0.344737638,0.291794827,0.238852017,0.238852017,0.238852017 +30,MT,10,WASTE DISPOSAL & RECYCLING,NH3,0.16636,0.21275,0.20802,0.21748,0.22223,0.226897,0.231781,0.003270838,0.003270838,0.003270838,0.003270838,0.003399455,0.003528072,0.003656689,0.003657423,0.003658156,0.003658889,0.010588087,0.017517284,0.024446481,0.024632727,0.024818972,0.025005217,0.025005217,0.025005217 +30,MT,10,WASTE DISPOSAL & RECYCLING,CO,10.33945,11.60435,12.06841,10.97397,11.33237,10.330093,10.330471,11.84721159,11.84454064,11.84186969,11.83919874,10.4958745,9.152550265,7.809226029,7.327796595,6.84636716,6.364925926,7.578281585,8.791637243,10.0049929,8.527840179,7.050687457,5.573534734,5.573534734,5.573534734 +30,MT,11,HIGHWAY VEHICLES,PM10,1.91313,1.30789,1.24596,1.14746,1.06174,0.97451,0.9125,1.894269472,1.844679381,1.795089291,1.7454992,1.714766918,1.684034635,1.481930739,1.47912104,1.278474148,1.720199298,1.747168069,1.77413684,1.801105611,1.610835898,1.416033811,1.330895598,1.409577794,1.369099891 +30,MT,11,HIGHWAY VEHICLES,VOC,37.90624,25.39561,23.62227,22.2683,20.43078,19.67705,18.53158,15.39960027,14.93443492,14.46926957,14.00410421,14.04558966,14.08707511,11.76911517,13.51188669,12.19398172,18.67461472,19.06190704,19.44919935,19.83649167,18.71994197,16.22598618,15.81362588,13.41481974,12.66066696 +30,MT,11,HIGHWAY VEHICLES,PM25,1.63099,1.07125,1.00514,0.91572,0.83515,0.75448,0.69659,1.657964375,1.607944212,1.557924048,1.507903885,1.463794972,1.41968606,1.231410272,1.221485997,1.024202908,1.103318311,1.144000695,1.18468308,1.225365464,1.04703215,0.906773296,0.847472895,0.841872167,0.794945818 +30,MT,11,HIGHWAY VEHICLES,NOX,44.11167,39.27092,39.13296,37.96883,36.32137,35.28048,33.31428,50.51446791,47.82413086,45.13379381,42.44345676,41.51104267,40.57862858,35.17590942,34.42102376,30.55324688,35.9897599,36.7366321,37.4835043,38.23037649,35.52501845,30.02846124,27.63573154,25.0478951,23.5364916 +30,MT,11,HIGHWAY VEHICLES,NH3,0.6208,0.87938,0.97817,0.9349,0.95633,0.9701,0.99028,0.576031669,0.564919908,0.553808147,0.542696386,0.534413941,0.526131495,0.472432426,0.460772252,0.429762152,0.537293505,0.525999425,0.514705344,0.503411264,0.489443631,0.489758162,0.483399617,0.443383663,0.439895295 +30,MT,11,HIGHWAY VEHICLES,CO,495.69852,373.36808,349.20893,325.64652,290.5479,292.40973,276.21895,223.7494245,214.5660781,205.3827316,196.1993851,186.6971445,177.1949039,154.1312189,156.3307265,146.324135,180.1254054,185.0882565,190.0511077,195.0139588,178.6965518,143.9280581,142.52583,121.2176146,115.0876655 +30,MT,11,HIGHWAY VEHICLES,SO2,2.43562,1.25582,1.27874,1.27669,1.28902,1.09882,1.11619,1.176411116,1.079460793,0.98251047,0.885560147,0.557165266,0.228770385,0.175778843,0.139820764,0.185064015,0.12330008,0.121289821,0.119279562,0.117269304,0.099472737,0.101113422,0.089890746,0.052700512,0.048161935 +30,MT,12,OFF-HIGHWAY,PM10,4.02312,4.10564,3.98394,3.86139,3.81789,3.74115,3.65625,3.032225996,2.953659014,2.875092032,2.79652505,2.767021376,2.737517703,2.629046368,2.537688904,2.461101575,2.379889799,2.263345228,2.146800656,2.030256085,1.881285385,1.642297221,1.583343986,1.501318989,1.419293993 +30,MT,12,OFF-HIGHWAY,VOC,13.29757,14.2372,13.70751,13.46575,13.52705,13.50044,13.47853,14.2762378,14.34199028,14.40774275,14.47349523,14.36137354,14.24925185,13.77157712,13.18248018,12.76483806,12.43310931,11.80289385,11.17267839,10.54246293,9.338913687,7.250851086,6.931815209,6.690195379,6.448575549 +30,MT,12,OFF-HIGHWAY,PM25,3.6726,3.7464,3.63659,3.52736,3.48336,3.41185,3.3345,2.92998874,2.853270196,2.776551651,2.699833107,2.642415334,2.584997562,2.446578394,2.35800944,2.283898624,2.247486347,2.136362172,2.025237998,1.914113823,1.78240091,1.575529488,1.518975084,1.439541667,1.360108249 +30,MT,12,OFF-HIGHWAY,NOX,62.86951,69.91442,76.03729,82.14469,66.28721,66.54392,67.03583,41.43037302,41.18175158,40.93313014,40.68450871,40.91906582,41.15362292,42.12814692,40.49383881,40.05418296,39.89364696,38.61534577,37.33704459,36.0587434,34.11459423,30.22520383,30.22629588,29.01208898,27.79788208 +30,MT,12,OFF-HIGHWAY,NH3,0.19113,0.15787,0.13488,0.14431,0.02171,0.02171,0.02171,0.019962308,0.020299037,0.020635766,0.020972495,0.023590935,0.026209375,0.026914088,0.026861104,0.02717964,0.027546669,0.028185732,0.028824796,0.02946386,0.028130767,0.024826335,0.02546458,0.025368008,0.025271437 +30,MT,12,OFF-HIGHWAY,CO,84.11214,93.41596,91.67769,91.64992,92.32342,93.00315,94.49442,91.33717255,90.03918681,88.74120106,87.44321532,84.62940485,81.81559439,82.90441484,70.14199289,68.39381066,67.57841621,65.24691242,62.91540864,60.58390485,58.57326759,54.83411915,54.55199307,54.32664638,54.10129969 +30,MT,12,OFF-HIGHWAY,SO2,4.3126,5.16645,5.12803,5.10302,5.11927,5.20096,5.30024,3.673392067,3.719401972,3.765411876,3.811421781,2.591509545,1.371597308,0.620774984,0.615697146,0.442776861,0.317405705,0.239873613,0.162341521,0.084809429,0.090456226,0.100092317,0.101749819,0.105202854,0.108655889 +30,MT,14,MISCELLANEOUS,CO,291.34004,1071.93032,245.22908,610.76323,134.8837,618.11697,244.17148,35.84072,125.2293295,214.617939,304.0065485,203.0627707,102.1189929,1.175215072,8.548928642,15.92264221,23.29635578,18.44595252,13.59554926,8.745146005,8.669506019,8.593866033,8.518226047,8.518226047,8.518226047 +30,MT,14,MISCELLANEOUS,VOC,13.29503,139.09131,23.06672,62.64984,7.09093,29.54228,11.8264,8.238391873,29.29573853,50.35308518,71.41043183,47.63709163,23.86375143,0.090411224,0.669646915,1.248882605,1.828118296,1.60087829,1.373638285,1.14639828,1.43577981,1.72516134,2.01454287,2.01454287,2.01454287 +30,MT,14,MISCELLANEOUS,SO2,0.17703,1.12588,0.23259,0.59406,1.12453,3.83691,1.58391,0.572238966,1.042792663,1.513346361,1.983900059,1.325024658,0.666149257,0.007273857,0.104120589,0.200967322,0.297814054,0.216260737,0.13470742,0.053154103,0.05851964,0.063885176,0.069250712,0.069250712,0.069250712 +30,MT,14,MISCELLANEOUS,PM25,95.24408,147.98167,86.02196,120.67243,64.57831,103.857618,76.2188908,37.33021039,44.79981395,52.26941751,59.73902106,54.32375868,48.90849631,43.49323393,43.57491107,43.65658821,43.73826535,45.85757945,47.97689356,50.09620766,50.80632015,51.51643263,52.22654512,52.22654512,52.22654512 +30,MT,14,MISCELLANEOUS,PM10,438.5051,408.97343,367.48322,387.97132,320.70544,363.501805,356.7297196,303.2632278,312.0773543,320.8914808,329.7056073,324.2747612,318.8439152,313.4130692,310.4707513,307.5284334,304.5861156,307.0279007,309.4696858,311.911471,327.3503934,342.7893159,358.2282383,358.2282383,358.2282383 +30,MT,14,MISCELLANEOUS,NH3,71.79793,89.54516,93.25876,90.54816,94.06421,95.96957,46.32642582,46.55870552,48.02360047,49.48849542,50.95339037,52.28391962,53.61444886,54.9449781,54.74437307,54.54376803,54.34316299,43.76403799,33.18491299,22.60578799,35.02640917,47.44703036,59.86765154,59.86765154,59.86765154 +30,MT,14,MISCELLANEOUS,NOX,15.8534,30.81035,7.25193,17.94103,4.10222,13.99471,5.77795,0.459157175,1.337509149,2.215861123,3.094213096,2.078944351,1.063675606,0.048406861,0.355137226,0.661867591,0.968597956,0.727056444,0.485514933,0.243973422,0.255012548,0.266051674,0.277090799,0.277090799,0.277090799 +30,MT,15,WILDFIRES,PM25,,,,,,,,11.48032748,11.48032748,11.48032748,29.24417974,29.24417974,29.24417974,9.692331322,9.692331322,9.692331322,62.2647992,62.2647992,62.2647992,6.00842135,6.00842135,6.00842135,191.5177343,191.5177343,191.5177343 +30,MT,15,WILDFIRES,CO,,,,,,,,144.7522075,144.7522075,144.7522075,341.8306578,341.8306578,341.8306578,114.2248277,114.2248277,114.2248277,751.3355317,751.3355317,751.3355317,72.97740693,72.97740693,72.97740693,2257.172436,2257.172436,2257.172436 +30,MT,15,WILDFIRES,NH3,,,,,,,,2.314902916,2.314902916,2.314902916,5.604540608,5.604540608,5.604540608,1.870743772,1.870743772,1.870743772,12.26697496,12.26697496,12.26697496,1.190481234,1.190481234,1.190481234,36.96710425,36.96710425,36.96710425 +30,MT,15,WILDFIRES,VOC,,,,,,,,33.29054269,33.29054269,33.29054269,80.56527128,80.56527128,80.56527128,26.89195122,26.89195122,26.89195122,176.3377985,176.3377985,176.3377985,17.11319783,17.11319783,17.11319783,531.4021646,531.4021646,531.4021646 +30,MT,15,WILDFIRES,SO2,,,,,,,,0.7494448,0.7494448,0.7494448,2.477792696,2.477792696,2.477792696,0.79573248,0.79573248,0.79573248,4.632712953,4.632712953,4.632712953,0.434066775,0.434066775,0.434066775,15.72007459,15.72007459,15.72007459 +30,MT,15,WILDFIRES,NOX,,,,,,,,0.910284895,0.910284895,0.910284895,4.366424745,4.366424745,4.366424745,1.353640751,1.353640751,1.353640751,6.937215082,6.937215082,6.937215082,0.62179137,0.62179137,0.62179137,26.73525331,26.73525331,26.73525331 +30,MT,15,WILDFIRES,PM10,,,,,,,,13.54699062,13.54699062,13.54699062,34.50813209,34.50813209,34.50813209,11.43695081,11.43695081,11.43695081,73.47245423,73.47245423,73.47245423,7.089939681,7.089939681,7.089939681,225.990928,225.990928,225.990928 +30,MT,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,22.29614719,35.85126439,49.40638159,62.96149878,61.8750771,60.78865542,59.70223373,51.57484034,43.44744695,35.32005355,35.32005355,35.32005355 +30,MT,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,94.2813289,152.131252,209.9811751,267.8310982,263.164159,258.4972198,253.8302806,219.2390243,184.647768,150.0565117,150.0565117,150.0565117 +30,MT,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,8.26975364,13.00369746,17.73764129,22.47158511,22.10896751,21.74634992,21.38373232,18.49308126,15.6024302,12.71177914,12.71177914,12.71177914 +30,MT,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,1.551035733,2.494000727,3.436965721,4.379930715,4.304353145,4.228775575,4.153198005,3.587815338,3.02243267,2.457050003,2.457050003,2.457050003 +30,MT,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,9.75831469,15.34436783,20.93042096,26.5164741,26.08858316,25.66069223,25.23280129,21.82183427,18.41086724,14.99990022,14.99990022,14.99990022 +30,MT,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.76576097,1.09813719,1.43051341,1.76288963,1.743868233,1.724846836,1.705825439,1.482840516,1.259855593,1.03687067,1.03687067,1.03687067 +30,MT,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,1.473634331,1.928224177,2.382814023,2.83740387,2.826215126,2.815026382,2.803837638,2.452739158,2.101640677,1.750542197,1.750542197,1.750542197 +31,NE,1,FUEL COMB. ELEC. UTIL.,CO,2.50397,2.68355,2.86853,3.09774,3.715789,3.769874,6.257408,3.850383526,3.89727967,3.944175813,3.991071957,4.003331705,4.015591452,4.0278512,5.630327226,7.232803252,8.835008265,9.381755045,9.928501824,10.4752486,11.23805313,12.00085766,12.76366219,12.76366219,12.76366219 +31,NE,1,FUEL COMB. ELEC. UTIL.,VOC,0.2936,0.34258,0.36493,0.39546,0.606466,0.428724,0.63661,0.629486001,0.647327828,0.665169655,0.683011481,0.606428684,0.529845887,0.45326309,0.480370434,0.507477779,0.534571652,0.52617301,0.517774368,0.509375726,0.482546644,0.455717562,0.42888848,0.42888848,0.42888848 +31,NE,1,FUEL COMB. ELEC. UTIL.,SO2,51.32791,65.76604,62.70285,57.95213,61.447899,60.753666,70.636162,67.7146191,67.722229,74.221006,75.14157712,71.221684,69.00568,75.852307,74.40212156,72.95193612,71.50162933,68.29753084,65.09343234,61.88933385,58.22081583,54.55229781,50.88377978,58.924781,45.068114 +31,NE,1,FUEL COMB. ELEC. UTIL.,PM10,1.11779,1.0759,1.07732,1.14749,2.370067,2.368131,2.432497,1.60274963,1.646156712,1.689563794,1.732970876,1.981111558,2.229252241,2.477392923,2.383426846,2.289460769,2.195433582,1.931682203,1.667930823,1.404179444,1.235813259,1.067447074,0.899080889,0.899080889,0.899080889 +31,NE,1,FUEL COMB. ELEC. UTIL.,NOX,33.16473,48.77051,49.23518,50.19745,46.450795,44.547212,50.558722,48.37492461,49.581448,48.125301,53.18444121,44.781008,40.815854,43.4465905,41.23565509,39.02471967,36.81318042,33.26675251,29.72032461,26.1738967,24.46278549,22.75167428,21.04056307,21.441516,18.991975 +31,NE,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00547,0.00635,0.00957,0.008404,0.009682,0.00822,0.1903348,0.192527784,0.194720768,0.196913752,0.195647088,0.194380424,0.19311376,0.171477814,0.149841869,0.128205923,0.22970449,0.331203057,0.432701625,0.417355093,0.402008561,0.38666203,0.38666203,0.38666203 +31,NE,1,FUEL COMB. ELEC. UTIL.,PM25,0.48614,0.74603,0.74721,0.79606,1.952151,1.944348,1.982451,1.19243237,1.228259524,1.264086679,1.299913833,1.505539774,1.711165715,1.916791656,1.835112816,1.753433975,1.671708539,1.320452875,0.969197212,0.617941548,0.589845286,0.561749025,0.533652763,0.533652763,0.533652763 +31,NE,2,FUEL COMB. INDUSTRIAL,CO,2.0703,3.4446,3.36048,3.32556,3.389527,3.426942,3.450619,4.579609136,4.559146383,4.538683631,4.518220878,3.536026623,2.553832367,1.571638112,1.638372119,1.705106127,1.780172373,1.783036106,1.785899838,1.788763571,3.587429329,5.386095088,7.184760847,7.184760847,7.184760847 +31,NE,2,FUEL COMB. INDUSTRIAL,SO2,10.76805,11.01961,10.31703,10.00309,9.687694,10.010147,10.562143,28.89184919,28.91582126,28.93979332,28.96376538,19.56628645,10.16880752,0.771328594,0.680484978,0.589641361,0.499755891,0.491711051,0.48366621,0.47562137,1.536100122,2.596578875,3.657057627,3.657057627,3.657057627 +31,NE,2,FUEL COMB. INDUSTRIAL,VOC,0.38309,2.54073,2.45272,2.41925,0.84586,0.873025,0.898743,0.813312969,0.870135879,0.926958789,0.983781699,0.769515892,0.555250086,0.340984279,0.367355427,0.393726574,0.414786795,0.447939801,0.481092806,0.514245812,0.602206019,0.690166226,0.778126433,0.778126433,0.778126433 +31,NE,2,FUEL COMB. INDUSTRIAL,PM10,0.70249,0.75077,0.72143,0.71223,0.702878,0.724504,0.748245,3.728976408,3.764685917,3.800395426,3.836104934,2.712183146,1.588261357,0.464339568,0.478108001,0.491876433,0.483842041,0.470667811,0.45749358,0.444319349,1.900222069,3.356124788,4.812027507,4.812027507,4.812027507 +31,NE,2,FUEL COMB. INDUSTRIAL,NOX,11.8356,14.64747,14.20317,14.01198,13.315675,13.534599,13.675833,11.60915172,11.79869886,11.988246,12.17779314,10.0153366,7.852880065,5.690423529,5.469853344,5.24928316,5.048178524,5.212627913,5.377077302,5.54152669,8.284564536,11.02760238,13.77064023,13.77064023,13.77064023 +31,NE,2,FUEL COMB. INDUSTRIAL,NH3,0.05119,0.08146,0.07815,0.07662,0.079174,0.081363,0.082504,0.133983241,0.161222416,0.188461591,0.215700766,0.178809052,0.141917339,0.105025625,0.114345356,0.123665086,0.132996833,0.158798277,0.184599722,0.210401166,0.262959321,0.315517476,0.36807563,0.36807563,0.36807563 +31,NE,2,FUEL COMB. INDUSTRIAL,PM25,0.36667,0.52494,0.50883,0.50571,0.511279,0.525611,0.538234,0.940998997,0.976378947,1.011758898,1.047138848,0.834580707,0.622022566,0.409464425,0.410503089,0.411541753,0.387923346,0.389673943,0.391424541,0.393175138,0.688609921,0.984044703,1.279479485,1.279479485,1.279479485 +31,NE,3,FUEL COMB. OTHER,CO,14.76683,10.20873,10.18194,10.11434,10.420323,11.09129,11.110093,17.90271586,17.90944853,17.91618119,17.92291386,16.74331895,15.56372404,14.38412914,14.18209389,13.98005865,13.29801289,15.192195,17.08637711,18.98055922,16.96816278,14.95576633,12.94336989,12.94336989,12.94336989 +31,NE,3,FUEL COMB. OTHER,NH3,0.0283,0.03077,0.02972,0.02714,0.02883,0.029069,0.029376,0.011322288,0.011358955,0.011395622,0.011432288,0.164740284,0.31804828,0.471356276,0.483670391,0.495984506,0.502277092,0.517541326,0.532805561,0.548069795,0.508607517,0.469145238,0.42968296,0.42968296,0.42968296 +31,NE,3,FUEL COMB. OTHER,NOX,4.7938,5.33512,5.12728,4.77977,4.700558,4.756744,4.80905,4.184659596,4.186333794,4.188007993,4.189682191,3.605807857,3.021933524,2.43805919,3.104293052,3.770526914,4.420742285,3.922246625,3.423750965,2.925255305,3.237509242,3.549763179,3.862017116,3.862017116,3.862017116 +31,NE,3,FUEL COMB. OTHER,PM10,1.94605,1.38117,1.37525,1.36434,1.659603,1.754996,1.761483,2.231716434,2.23815547,2.244594506,2.251033542,2.163431739,2.075829935,1.988228131,1.889398924,1.790569717,1.616176671,1.997902048,2.379627425,2.761352801,2.396248559,2.031144316,1.666040073,1.666040073,1.666040073 +31,NE,3,FUEL COMB. OTHER,PM25,1.93325,1.36477,1.35859,1.34875,1.650268,1.745497,1.751716,2.189431454,2.19032278,2.191214106,2.192105432,2.119153319,2.046201206,1.973249093,1.875028809,1.776808525,1.603030037,1.971267413,2.339504789,2.707742165,2.349717752,1.991693339,1.633668927,1.633668927,1.633668927 +31,NE,3,FUEL COMB. OTHER,SO2,0.60341,0.88233,0.88757,0.75975,0.621694,0.633906,0.646581,0.774408082,0.804863992,0.835319902,0.865775812,0.630590152,0.395404492,0.160218832,0.138417328,0.116615825,0.093652547,0.105483583,0.11731462,0.129145657,0.112773718,0.09640178,0.080029842,0.080029842,0.080029842 +31,NE,3,FUEL COMB. OTHER,VOC,2.71036,3.94818,3.94751,3.93959,4.014269,4.296108,4.297695,5.159353586,4.650631183,4.14190878,3.633186377,3.288482815,2.943779253,2.599075691,2.483484749,2.367893807,2.196384965,2.452041032,2.707697099,2.963353165,2.554719912,2.146086659,1.737453406,1.737453406,1.737453406 +31,NE,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.00051,0.05926,0.05816,0.0606,0.00273,0.002793,0.002889,0.00133,0.001413333,0.001496667,0.00158,0.00157,0.00156,0.00155,0.0014889,0.0014278,0.0013967,0.001599767,0.001802834,0.0020059,0.0016566,0.0013073,0.000958,0.000958,0.000958 +31,NE,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,1.40562,0.92534,0.9396,0.96446,0.470727,0.484025,0.507864,0.57324657,0.776227265,0.97920796,1.182188655,0.803079103,0.423969552,0.04486,0.1514339,0.2580078,0.381111701,0.416144468,0.451177234,0.486210001,0.529937001,0.573664001,0.617391001,0.617391001,0.617391001 +31,NE,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.02115,0.1589,0.16103,0.16478,0.128626,0.131686,0.136276,0.000723296,0.010338556,0.019953817,0.029569077,0.037779912,0.045990747,0.054201582,0.064608311,0.07501504,0.084851311,0.090302917,0.095754524,0.10120613,0.078929234,0.056652337,0.03437544,0.03437544,0.03437544 +31,NE,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.51304,2.31298,2.34123,2.39771,0.91732,0.938418,0.970525,0.406799994,0.376383329,0.345966665,0.31555,0.294066667,0.272583333,0.2511,0.269299633,0.287499267,0.3137589,0.326623,0.3394871,0.3523512,0.3022729,0.2521946,0.2021163,0.2021163,0.2021163 +31,NE,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0.318533333,0.637066667,0.9556,0.75295,0.5503,0.34765,0.262601333,0.177552667,0.092504,0.124049667,0.155595333,0.187141,0.177670667,0.168200333,0.15873,0.15873,0.15873 +31,NE,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.0409,0.21342,0.21631,0.22101,0.151581,0.155257,0.160752,0.00120507,0.011872067,0.022539063,0.03320606,0.040644567,0.048083075,0.055521582,0.066989125,0.078456668,0.087684211,0.092498051,0.097311891,0.10212573,0.0802833,0.05844087,0.03659844,0.03659844,0.03659844 +31,NE,4,CHEMICAL & ALLIED PRODUCT MFG,CO,1.77809,1.18049,1.19486,1.2237,0.52914,0.541309,0.55983,0.284660002,0.342733335,0.400806667,0.45888,0.43592,0.41296,0.39,0.431072667,0.472145333,0.515238,0.518374,0.52151,0.524646,0.363707334,0.202768667,0.04183,0.04183,0.04183 +31,NE,5,METALS PROCESSING,CO,0.03158,6.02879,6.40684,6.45304,0.0961,0.100686,0.107483,0.065309999,0.062858666,0.060407333,0.057956,0.317904,0.577852,0.8378,0.749540207,0.661280414,0.024230621,0.016153747,0.008076874,0.000000001,7.33E-10,4.67E-10,2.00E-10,2.00E-10,2.00E-10 +31,NE,5,METALS PROCESSING,SO2,0.57044,0.62672,0.63078,0.62809,0.047762,0.049079,0.051428,0.05729,0.076937667,0.096585333,0.116233,0.161545333,0.206857667,0.25217,0.233832825,0.215495649,0.005888474,0.004130816,0.002373158,0.0006155,0.000417842,0.000220185,0.000022527,0.000022527,0.000022527 +31,NE,5,METALS PROCESSING,VOC,0.20307,0.24456,0.25486,0.25247,0.766649,0.782689,0.816251,0.705590001,0.623922667,0.542255333,0.460588,0.342768667,0.224949333,0.10713,0.126592669,0.146055337,0.081278006,0.055117004,0.028956002,0.002795,0.002794168,0.002793335,0.002792502,0.002792502,0.002792502 +31,NE,5,METALS PROCESSING,PM25,0.48861,0.32785,0.33336,0.32751,0.250895,0.255295,0.268685,0.075411969,0.071119607,0.066827245,0.062534882,0.07345305,0.084371217,0.095289385,0.115761895,0.136234405,0.133546915,0.09892336,0.064299804,0.029676249,0.02809778,0.026519311,0.024940842,0.024940842,0.024940842 +31,NE,5,METALS PROCESSING,PM10,0.76295,0.45192,0.45805,0.44927,0.270101,0.274682,0.289042,0.096403001,0.089311834,0.082220667,0.0751295,0.086789522,0.098449545,0.110109567,0.138310876,0.166512186,0.166453496,0.124174371,0.081895246,0.039616121,0.03808557,0.036555018,0.035024466,0.035024466,0.035024466 +31,NE,5,METALS PROCESSING,NOX,0.31981,0.16144,0.16858,0.16887,0.017424,0.017912,0.018812,0.05092,0.046786,0.042652,0.038518,0.061312,0.084106,0.1069,0.100880355,0.094860711,0.004421066,0.003062044,0.001703022,0.000344,0.000233333,0.000122667,1.20E-05,1.20E-05,1.20E-05 +31,NE,5,METALS PROCESSING,NH3,,,,,,,,,0.003293333,0.006586667,0.00988,0.008583333,0.007286667,0.00599,0.0070135,0.008037,0.0090605,0.0090605,0.0090605,,0,0,0,0,0 +31,NE,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,0,3.33E-11,6.67E-11,1.00E-10,6.67E-11,3.33E-11,0,0,0,0,0,0 +31,NE,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.17837,0.13698,0.14436,0.14499,0.16202,0.164191,0.16435,0.13366,0.137513333,0.141366667,0.14522,0.111746667,0.078273333,0.0448,0.821530965,1.59826193,2.530433146,1.695110135,0.859787124,0.024464114,0.80228301,1.580101907,2.357920803,2.357920803,2.357920803 +31,NE,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.01317,0.02482,0.02487,0.02491,0.09995,0.100234,0.100517,0.00204,0.00218,0.00232,0.00246,0.00217,0.00188,0.00159,0.001218393,0.000846785,0.000475178,0.004382522,0.008289865,0.012197209,0.012258416,0.012319623,0.01238083,0.01238083,0.01238083 +31,NE,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.00583,0.03596,0.03626,0.0367,0.046464,0.046785,0.047175,0.000627318,0.003280154,0.00593299,0.008585826,0.012402043,0.016218261,0.020034478,0.02164101,0.023247541,0.025606625,0.018686778,0.011766932,0.004847085,0.010122482,0.015397879,0.020673276,0.020673276,0.020673276 +31,NE,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.0554,0.10613,0.10658,0.10718,0.145409,0.14593,0.146531,0.00151,0.004236667,0.006963333,0.00969,0.0138264,0.0179628,0.022099201,0.023402732,0.024706264,0.026799795,0.020622869,0.014445942,0.008269016,0.013378264,0.018487513,0.023596762,0.023596762,0.023596762 +31,NE,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.00589,0.67965,0.71106,0.72555,0.03841,0.038625,0.038843,0.00774,0.023533333,0.039326667,0.05512,0.094753333,0.134386667,0.17402,0.416116459,0.658212917,0.900309376,0.603328932,0.306348488,0.009368044,0.125789586,0.242211129,0.358632671,0.358632671,0.358632671 +31,NE,6,PETROLEUM & RELATED INDUSTRIES,CO,0.00488,0.12441,0.12957,0.13194,0.02288,0.022965,0.02305,0.00416,0.01495,0.02574,0.03653,0.059093333,0.081656667,0.10422,0.448385473,0.792550945,1.136716429,0.772760672,0.408804915,0.044849158,0.213852651,0.382856143,0.551859636,0.551859636,0.551859636 +31,NE,7,OTHER INDUSTRIAL PROCESSES,PM25,2.7522,2.73813,2.80651,3.0083,2.907769,2.984896,3.523599897,2.313361002,2.529605942,2.745850882,2.962095821,2.626790115,2.291484408,1.956178701,2.025673358,2.095168015,2.215384847,2.031478449,1.847572051,1.663665653,1.842380206,2.021094758,2.199809311,2.199809311,2.199809311 +31,NE,7,OTHER INDUSTRIAL PROCESSES,CO,0.09505,1.59504,1.66949,1.69586,3.50973,3.743674,4.222574286,3.163711261,3.207001514,3.250291768,3.293582021,3.420700478,3.547818935,3.674937392,4.344060036,5.013182681,6.227314338,6.888103038,7.548891737,8.209680437,8.059506402,7.909332366,7.759158331,7.759158331,7.759158331 +31,NE,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00001,0.00001,0.00001,0.000053,0.000054,0.000055,2.861454,2.832954985,2.80445597,2.775956955,1.954504637,1.133052318,0.3116,0.313301366,0.315002732,0.316814098,0.34741478,0.378015461,0.408616142,0.418896468,0.429176794,0.43945712,0.43945712,0.43945712 +31,NE,7,OTHER INDUSTRIAL PROCESSES,PM10,9.55549,9.2968,9.5157,10.46995,9.838141,10.0462,10.70113171,8.216625657,8.67723562,9.137845584,9.598455547,7.894699996,6.190944445,4.487188895,4.946564112,5.405939329,5.922697153,4.932600831,3.94250451,2.952408188,3.562424002,4.172439817,4.782455631,4.782455631,4.782455631 +31,NE,7,OTHER INDUSTRIAL PROCESSES,SO2,3.81636,3.69461,3.87793,3.94063,4.63154,4.998168,5.36327,5.252534103,5.289848988,5.327163872,5.364478757,4.014209171,2.663939586,1.31367,1.425132291,1.536594582,1.838490595,1.875959522,1.913428449,1.950897377,1.776898845,1.602900313,1.428901781,1.428901781,1.428901781 +31,NE,7,OTHER INDUSTRIAL PROCESSES,VOC,0.87515,1.64123,1.68937,1.6995,1.878915,1.946797,2.097870684,2.553849976,2.415412143,2.27697431,2.138536477,2.009567188,1.880597899,1.75162861,1.800045888,1.848463166,1.977885306,2.039600988,2.101316671,2.163032353,2.357153851,2.55127535,2.745396848,2.745396848,2.745396848 +31,NE,7,OTHER INDUSTRIAL PROCESSES,NOX,1.17338,3.18394,3.33829,3.39131,3.93086,4.229495,4.535316,4.913650847,4.828177812,4.742704776,4.657231741,4.436014495,4.21479725,3.993580005,4.21870639,4.443832775,4.733258436,4.609106582,4.484954729,4.360802875,4.175869333,3.990935791,3.806002249,3.806002249,3.806002249 +31,NE,8,SOLVENT UTILIZATION,CO,,0.01772,0.01855,0.01933,0.01961,0.020501,0.021313,0.001257,0.002874882,0.004492763,0.006110645,0.006132393,0.006154142,0.00617589,0.018357761,0.030539631,0.042721502,0.044858734,0.046995967,0.0491332,0.032804967,0.016476734,0.0001485,0.0001485,0.0001485 +31,NE,8,SOLVENT UTILIZATION,NH3,,,,,,,,0,0.00023,0.00046,0.00069,0.000583395,0.00047679,0.000370185,0.000289497,0.000208809,0.000128121,0.000275414,0.000422707,0.00057,0.00038,0.00019,3.00E-10,3.00E-10,3.00E-10 +31,NE,8,SOLVENT UTILIZATION,NOX,,0.03558,0.03707,0.03907,0.01434,0.015038,0.015928,0.00425,0.004651345,0.00505269,0.005454035,0.005219293,0.004984552,0.00474981,0.004221541,0.003693271,0.003165002,0.003038234,0.002911467,0.0027847,0.0019154,0.0010461,0.0001768,0.0001768,0.0001768 +31,NE,8,SOLVENT UTILIZATION,PM10,,0.03319,0.0338,0.03412,0.032584,0.033873,0.036089,0.0175,0.017994887,0.018489773,0.01898466,0.01747894,0.01597322,0.0144675,0.02080535,0.0271432,0.03326105,0.028211597,0.023162144,0.018112691,0.019996182,0.021879674,0.023763165,0.023763165,0.023763165 +31,NE,8,SOLVENT UTILIZATION,PM25,,0.02756,0.02805,0.02834,0.032584,0.033873,0.036089,0.01473784,0.014647482,0.014557124,0.014466765,0.013850344,0.013233922,0.0126175,0.017359712,0.022101925,0.026661584,0.023359802,0.02005802,0.016756237,0.01864649,0.020536744,0.022426997,0.022426997,0.022426997 +31,NE,8,SOLVENT UTILIZATION,SO2,,0.01203,0.01204,0.01225,0.0208,0.021148,0.02183,0.00015,0.000476952,0.000803903,0.001130855,0.00126725,0.001403645,0.00154004,0.001920294,0.002300548,0.002680802,0.002088101,0.001495401,0.0009027,0.000602167,0.000301633,1.10E-06,1.10E-06,1.10E-06 +31,NE,8,SOLVENT UTILIZATION,VOC,51.64512,63.65974,64.68784,60.78563,56.854247,57.077201,60.446695,20.08698776,20.05527516,20.02356255,19.99184994,22.88717291,25.78249588,28.67781885,30.01773823,31.35765761,32.65049095,32.06187342,31.47325589,30.88463836,31.60882571,32.33301306,33.05720041,33.05720041,33.05720041 +31,NE,9,STORAGE & TRANSPORT,VOC,18.62693,13.7938,13.84885,13.82843,13.185481,13.030852,13.181257,12.56928151,12.48272802,12.39617453,12.30962104,11.44192316,10.57422528,9.706527398,10.45429493,11.20206246,10.70904358,8.358826291,6.008609004,3.658391717,4.454694153,5.250996588,6.047299024,6.047299024,6.047299024 +31,NE,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0.000003765,0.00000753,0.000011295,7.53E-06,3.77E-06,2.00E-10,1.67E-10,1.33E-10,1.00E-10,0.0001702,0.0003404,0.0005106,0.0005106,0.0005106 +31,NE,9,STORAGE & TRANSPORT,NOX,,0.01789,0.01859,0.01903,0.0228,0.023118,0.02371,2.36249,2.36737,2.37225,2.37713,1.591961,0.806792,0.021623,0.0227464,0.0238698,0.0254232,0.020020134,0.014617068,0.009214001,0.009129335,0.009044668,0.008960001,0.008960001,0.008960001 +31,NE,9,STORAGE & TRANSPORT,PM10,14.29381,3.45988,3.59534,3.67852,1.213848,1.271705,1.332204,0.220775846,0.336614926,0.452454006,0.568293085,0.4152046,0.262116114,0.109027629,0.400448277,0.691868925,0.97916551,0.804382188,0.629598867,0.454815545,0.455507988,0.456200431,0.456892874,0.456892874,0.456892874 +31,NE,9,STORAGE & TRANSPORT,SO2,,0.00008,0.00008,0.00008,,,,0.17243,0.172493333,0.172556667,0.17262,0.11519404,0.05776808,0.00034212,0.00064337,0.00094462,0.00132587,0.001640247,0.001954624,0.002269,0.001522667,0.000776333,3.00E-05,3.00E-05,3.00E-05 +31,NE,9,STORAGE & TRANSPORT,PM25,5.22881,0.63551,0.65788,0.67565,0.437975,0.461181,0.484926,0.106388289,0.145243667,0.184099046,0.222954424,0.166696764,0.110439104,0.054181443,0.116050326,0.177919209,0.238288037,0.205847948,0.17340786,0.140967772,0.141727175,0.142486578,0.143245981,0.143245981,0.143245981 +31,NE,9,STORAGE & TRANSPORT,CO,,0.01812,0.0188,0.01919,0.02263,0.022963,0.023548,0.32559,0.32746,0.32933,0.3312,0.244652173,0.158104347,0.07155652,0.066737013,0.061917507,0.057188,0.046284034,0.035380067,0.0244761,0.023750734,0.023025367,0.0223,0.0223,0.0223 +31,NE,10,WASTE DISPOSAL & RECYCLING,PM25,2.19713,1.60423,1.67958,1.68289,1.695795,1.546779,1.547547,1.508764682,1.528244159,1.547723635,1.567203112,1.326044853,1.084886594,0.843728335,0.839111303,0.834494271,0.829895569,0.873471713,0.917047858,0.960624002,1.022030825,1.083437648,1.14484447,1.14484447,1.14484447 +31,NE,10,WASTE DISPOSAL & RECYCLING,SO2,0.10048,0.04468,0.04688,0.04743,0.04473,0.04525,0.045375,0.04327,0.04448,0.04569,0.0469,0.040379317,0.033858635,0.027337952,0.0265958,0.025853647,0.025016962,0.109293446,0.193569929,0.277846413,0.279559534,0.281272655,0.282985776,0.282985776,0.282985776 +31,NE,10,WASTE DISPOSAL & RECYCLING,PM10,2.50191,1.72621,1.80803,1.81209,1.866223,1.719501,1.721654,1.680218451,1.697012678,1.713806905,1.730601132,1.464731952,1.198862773,0.932993593,0.935498467,0.93800334,0.940425564,1.000537521,1.060649478,1.120761435,1.179365227,1.237969019,1.296572812,1.296572812,1.296572812 +31,NE,10,WASTE DISPOSAL & RECYCLING,NOX,0.55501,0.60321,0.62227,0.62383,0.38169,0.337082,0.338424,0.323177778,0.325317779,0.327457779,0.32959778,0.291818058,0.254038337,0.216258616,0.215176663,0.214094711,0.213012979,0.298292234,0.383571489,0.468850744,0.465801655,0.462752566,0.459703476,0.459703476,0.459703476 +31,NE,10,WASTE DISPOSAL & RECYCLING,NH3,0.23057,0.46114,0.45139,0.47089,0.48075,0.490361,0.500463,0.004308554,0.038211887,0.072115221,0.106018554,0.155384679,0.204750805,0.25411693,0.251473597,0.248830263,0.246189914,0.279674439,0.313158965,0.34664349,0.346212511,0.345781533,0.345350554,0.345350554,0.345350554 +31,NE,10,WASTE DISPOSAL & RECYCLING,CO,17.90121,5.97317,6.20292,6.17232,6.15456,4.56006,4.561723,4.371796953,4.377026953,4.382256953,4.387486953,3.813596995,3.239707038,2.665817081,2.650908339,2.635999598,2.621160056,3.358958911,4.096757767,4.834556622,5.056056768,5.277556915,5.499057061,5.499057061,5.499057061 +31,NE,10,WASTE DISPOSAL & RECYCLING,VOC,3.64931,1.6237,1.68483,1.6992,1.55474,1.458799,1.462663,1.664727649,1.675730982,1.686734315,1.697737649,1.268637896,0.839538144,0.410438391,0.431890973,0.453343555,0.474801266,0.580518185,0.686235104,0.791952023,0.82768385,0.863415677,0.899147503,0.899147503,0.899147503 +31,NE,11,HIGHWAY VEHICLES,CO,814.35388,610.64891,586.08546,562.87118,519.7407,515.56388,485.58211,422.1498914,400.2652018,378.3805122,356.4958226,330.7884844,305.0811462,273.9157832,218.1965804,236.3914816,250.5583748,242.5493095,234.5402442,226.531179,214.678776,181.8166263,176.6039741,162.0542207,153.9457478 +31,NE,11,HIGHWAY VEHICLES,NH3,1.04437,1.52292,1.73296,1.6917,1.76446,1.78829,1.80448,1.034734686,1.003446032,0.972157378,0.940868725,0.933189712,0.9255107,0.856056325,0.802581207,0.765652703,0.84064197,0.813247681,0.785853391,0.758459101,0.737662961,0.718070638,0.718512566,0.664758403,0.652913675 +31,NE,11,HIGHWAY VEHICLES,NOX,71.17593,63.60705,64.81853,64.35191,63.061,61.10935,57.08684,94.04495581,87.62568698,81.20641816,74.78714933,71.07121993,67.35529054,62.04000204,54.19190526,52.84085991,57.3396894,54.61900263,51.89831587,49.1776291,45.53260039,36.27868153,32.66350339,32.04948722,29.80374244 +31,NE,11,HIGHWAY VEHICLES,PM10,2.97949,2.10027,2.03716,1.92209,1.82818,1.68167,1.55576,3.466804084,3.383462226,3.300120368,3.21677851,3.167809658,3.118840807,2.821595431,2.23261737,2.216430835,2.890869764,2.723881388,2.556893012,2.389904636,2.189341836,1.811042404,1.689275809,1.938746067,1.887377537 +31,NE,11,HIGHWAY VEHICLES,PM25,2.52826,1.70369,1.62858,1.5213,1.42593,1.29152,1.17654,2.974777986,2.890974101,2.807170215,2.72336633,2.643896446,2.564426562,2.276375614,1.749285455,1.7444656,1.788679415,1.701382693,1.61408597,1.526789247,1.329699144,1.056422494,0.944749179,1.061820849,1.006527349 +31,NE,11,HIGHWAY VEHICLES,SO2,3.83541,2.08479,2.17058,2.21637,2.28495,2.00964,2.01427,2.761483465,2.351145769,1.940808073,1.530470378,1.011933721,0.493397063,0.474973453,0.465163495,0.476066827,0.2059995,0.200128202,0.194256904,0.188385606,0.185166113,0.18913242,0.171050348,0.091851359,0.078861116 +31,NE,11,HIGHWAY VEHICLES,VOC,64.75812,43.68585,41.69028,40.44598,38.333,37.40355,34.52942,31.84472642,30.50223337,29.15974033,27.81724729,28.09913746,28.38102763,24.76714134,21.77705287,22.49124274,27.9975289,26.88709781,25.77666673,24.66623564,23.30384062,19.91247149,18.14329682,17.33239695,16.39071806 +31,NE,12,OFF-HIGHWAY,VOC,20.17646,21.70348,20.34471,19.6747,19.68647,19.4112,19.18004,21.91894468,21.48369722,21.04844976,20.6132023,20.24375612,19.87430993,19.01087302,18.16454538,17.73796803,17.09368037,16.0609362,15.02819202,13.99544784,12.62400762,10.36606332,9.88112719,9.521250102,9.161373014 +31,NE,12,OFF-HIGHWAY,NH3,0.40189,0.34849,0.30581,0.32672,0.04352,0.04352,0.04352,0.044271773,0.044890941,0.045510109,0.046129277,0.054490105,0.062850932,0.064459219,0.064086297,0.064708348,0.065443187,0.065283672,0.065124157,0.064964642,0.060551375,0.050757493,0.051724839,0.051670463,0.051616086 +31,NE,12,OFF-HIGHWAY,NOX,88.37496,98.88783,96.74678,94.46802,95.30213,95.14612,95.60488,108.28094,107.8585713,107.4362026,107.0138339,107.5710742,108.1283145,110.822244,106.4488373,105.4060388,104.8731013,98.0554598,91.23781833,84.42017686,76.93744031,62.98310241,61.97196723,59.34672607,56.72148491 +31,NE,12,OFF-HIGHWAY,PM10,6.90047,6.99406,6.80347,6.60456,6.51541,6.34816,6.17293,6.541348673,6.367568413,6.193788153,6.020007893,6.06899186,6.117975827,5.918090994,5.720458307,5.569635984,5.420541721,5.039759863,4.658978005,4.278196148,3.863767716,3.188327657,3.034910853,2.856747616,2.678584379 +31,NE,12,OFF-HIGHWAY,SO2,6.25428,7.69764,7.69156,7.7045,7.83793,7.94535,8.1085,8.879154007,8.978666114,9.07817822,9.177690326,6.136227491,3.094764655,1.51047799,1.508736505,1.141915537,0.871892095,0.639860305,0.407828514,0.175796724,0.176732837,0.1747909,0.178605065,0.180038206,0.181471348 +31,NE,12,OFF-HIGHWAY,PM25,6.31533,6.39979,6.23058,6.05435,5.95259,5.80784,5.64602,6.372754172,6.20387798,6.035001788,5.866125596,5.825307604,5.784489612,5.567111504,5.375484925,5.229347026,5.115668368,4.756391093,4.397113818,4.037836543,3.666366819,3.072049737,2.923427371,2.750728868,2.578030364 +31,NE,12,OFF-HIGHWAY,CO,164.23213,184.5271,180.10721,180.0109,184.83106,182.62907,185.67061,165.0697554,154.8115375,144.5533196,134.2951017,141.5206451,148.7461885,126.1158376,126.5821529,122.3409034,120.0638043,115.2503139,110.4368235,105.6233331,102.6060487,97.12892754,96.57147974,95.95027524,95.32907074 +31,NE,14,MISCELLANEOUS,PM10,662.9941,523.91722,520.73011,506.52029,528.78788,515.76201,532.5066578,434.4251354,435.1364408,435.8477461,436.5590515,453.4737507,470.3884499,487.303149,489.4841747,491.6652005,493.8462262,433.131928,372.4176299,311.7033317,356.889475,402.0756183,447.2617617,447.2617617,447.2617617 +31,NE,14,MISCELLANEOUS,VOC,15.25185,19.5116,7.91929,2.07037,1.46668,2.62075,0.22736,3.127058171,4.820774749,6.514491326,8.208207904,5.732145097,3.256082291,0.780019484,0.520376996,0.260734508,0.001092019,2.549784226,5.098476432,7.647168638,8.622828348,9.598488057,10.57414777,10.57414777,10.57414777 +31,NE,14,MISCELLANEOUS,PM25,123.35378,102.32603,96.53525,91.76458,94.702707,94.17222,91.5483373,53.1935426,53.79634176,54.39914093,55.0019401,61.76700829,68.53207648,75.29714466,75.30481619,75.31248772,75.32015925,67.41832216,59.51648507,51.61464799,56.09008372,60.56551945,65.04095518,65.04095518,65.04095518 +31,NE,14,MISCELLANEOUS,NOX,3.15307,4.19365,1.79017,0.70059,0.66197,1.18814,0.09694,0.866994505,0.940763042,1.014531579,1.088300115,0.85738904,0.626477964,0.395566888,0.265141689,0.134716489,0.00429129,0.034558856,0.064826422,0.095093988,0.167468393,0.239842797,0.312217202,0.312217202,0.312217202 +31,NE,14,MISCELLANEOUS,NH3,211.05968,228.18484,235.00193,239.90765,241.9712,245.00065,132.656262,167.6835089,167.8013404,167.9191719,168.0370035,170.7481997,173.459396,176.1705923,177.769356,179.3681196,180.9668833,168.5403231,156.1137629,143.6872028,145.4967903,147.3063778,149.1159653,149.1159653,149.1159653 +31,NE,14,MISCELLANEOUS,CO,111.23639,146.34168,62.17786,23.59151,30.8485,55.37378,4.5125,41.71415,48.92086803,56.12758606,63.33430409,45.12621145,26.91811881,8.710026164,5.811808055,2.913589946,0.015371837,1.245443357,2.475514877,3.705586397,4.812276144,5.918965891,7.025655639,7.025655639,7.025655639 +31,NE,14,MISCELLANEOUS,SO2,0.11814,0.15501,0.06472,0.0218,0.18082,0.32506,0.02584,0.26351562,0.309380539,0.355245458,0.401110376,0.285026018,0.16894166,0.052857302,0.035533642,0.018209982,0.000886322,0.00639189,0.011897458,0.017403025,0.063314464,0.109225903,0.155137342,0.155137342,0.155137342 +31,NE,15,WILDFIRES,NH3,,,,,,,,0.000569869,0.000569869,0.000569869,,0,0,,0,0,0.173635108,0.173635108,0.173635108,0.206752301,0.206752301,0.206752301,0.022018748,0.022018748,0.022018748 +31,NE,15,WILDFIRES,SO2,,,,,,,,0.000252187,0.000252187,0.000252187,,0,0,,0,0,0.109743797,0.109743797,0.109743797,0.116664128,0.116664128,0.116664128,0.009730655,0.009730655,0.009730655 +31,NE,15,WILDFIRES,PM25,,,,,,,,0.00309527,0.00309527,0.00309527,,0,0,,0,0,0.978761931,0.978761931,0.978761931,1.134533492,1.134533492,1.134533492,0.114883955,0.114883955,0.114883955 +31,NE,15,WILDFIRES,PM10,,,,,,,,0.003692339,0.003692339,0.003692339,,0,0,,0,0,1.154939844,1.154939844,1.154939844,1.338750559,1.338750559,1.338750559,0.135563029,0.135563029,0.135563029 +31,NE,15,WILDFIRES,VOC,,,,,,,,0.006355701,0.006355701,0.006355701,,0,0,,0,0,2.496027462,2.496027462,2.496027462,2.972075133,2.972075133,2.972075133,0.31651984,0.31651984,0.31651984 +31,NE,15,WILDFIRES,CO,,,,,,,,0.039493509,0.039493509,0.039493509,,0,0,,0,0,10.45893764,10.45893764,10.45893764,12.50954764,12.50954764,12.50954764,1.342978827,1.342978827,1.342978827 +31,NE,15,WILDFIRES,NOX,,,,,,,,0.000436164,0.000436164,0.000436164,,0,0,,0,0,0.244563385,0.244563385,0.244563385,0.244779704,0.244779704,0.244779704,0.017141319,0.017141319,0.017141319 +31,NE,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.511837499,0.927938584,1.344039669,1.760140754,1.5607696,1.361398446,1.162027292,1.325460258,1.488893224,1.65232619,1.65232619,1.65232619 +31,NE,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.355049789,0.587945457,0.820841125,1.053736793,0.923864443,0.793992092,0.664119742,0.752814487,0.841509231,0.930203976,0.930203976,0.930203976 +31,NE,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,30.70451433,55.88825637,81.07199841,106.2557405,94.26206564,82.26839083,70.27471601,80.17718778,90.07965955,99.98213132,99.98213132,99.98213132 +31,NE,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,2.954715874,5.233843712,7.51297155,9.792099388,8.659757244,7.5274151,6.395072956,7.284111517,8.173150079,9.06218864,9.06218864,9.06218864 +31,NE,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.825466528,1.311809317,1.798152106,2.284494895,1.990884831,1.697274767,1.403664703,1.585473288,1.767281873,1.949090458,1.949090458,1.949090458 +31,NE,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,7.35765589,13.33912828,19.32060066,25.30207305,22.43610447,19.57013589,16.70416731,19.0535039,21.4028405,23.75217709,23.75217709,23.75217709 +31,NE,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,3.486568772,6.175936724,8.865304676,11.55467263,10.2185094,8.882346162,7.546182929,8.595248076,9.644313224,10.69337837,10.69337837,10.69337837 +32,NV,1,FUEL COMB. ELEC. UTIL.,PM10,4.05288,4.75456,4.48716,2.5446,3.999949,4.528526,4.203204,3.634427227,3.702516346,3.770605465,3.838694585,2.957187779,2.075680972,1.194174166,1.121850842,1.049527519,1.160156595,1.29951709,1.438877584,1.578238079,1.329045774,1.07985347,0.830661165,0.830661165,0.830661165 +32,NV,1,FUEL COMB. ELEC. UTIL.,VOC,0.31697,0.34135,0.33354,0.35965,0.172068,0.483083,0.474992,0.538848889,0.604311258,0.669773627,0.735235996,0.659931716,0.584627436,0.509323155,0.580557486,0.651791816,0.723026147,0.743850538,0.764674928,0.785499319,0.767032694,0.748566068,0.730099443,0.730099443,0.730099443 +32,NV,1,FUEL COMB. ELEC. UTIL.,PM25,0.88436,2.13528,2.01437,1.31182,2.875148,3.239913,3.343092,3.272006174,3.338406642,3.404807109,3.471207577,2.516322236,1.561436895,0.606551555,0.657152538,0.707753521,0.758354504,0.813605719,0.868856934,0.92410815,0.876718984,0.829329818,0.781940652,0.781940652,0.781940652 +32,NV,1,FUEL COMB. ELEC. UTIL.,NOX,48.97796,60.45822,43.48854,47.33989,39.31089,42.505295,39.453,44.78144306,40.880068,42.73018,47.10169423,19.742121,18.08896,17.13288653,13.95381663,10.76688672,7.575231807,8.488619738,9.402007669,10.3153956,7.860790095,5.406184591,2.951579086,4.415984,5.184957 +32,NV,1,FUEL COMB. ELEC. UTIL.,NH3,,0.04719,0.0455,0.04702,0.02627,0.042615,0.046273,0.3316022,0.348630943,0.365659686,0.382688429,0.346580497,0.310472565,0.274364633,0.262074861,0.249785088,0.237495316,0.215608454,0.193721592,0.17183473,0.204567648,0.237300565,0.270033483,0.270033483,0.270033483 +32,NV,1,FUEL COMB. ELEC. UTIL.,CO,2.69611,2.96068,2.87814,3.10622,1.17747,3.015913,2.725629,2.302295075,2.408817592,2.51534011,2.621862628,2.320285154,2.018707681,1.717130207,10.37214635,19.0271625,27.63952464,29.92770347,32.2158823,34.50406112,23.72052758,12.93699404,2.153460496,2.153460496,2.153460496 +32,NV,1,FUEL COMB. ELEC. UTIL.,SO2,55.77911,53.23223,51.13085,49.81723,48.6825,53.0492,51.9797,49.2978309,49.718742,54.561735,53.43291651,9.222036,8.524021,9.191167261,7.899144209,6.607071157,5.313960106,6.968351914,8.622743722,10.27713553,7.463305831,4.649476131,1.835646431,3.345481,4.785392 +32,NV,2,FUEL COMB. INDUSTRIAL,CO,0.57249,0.74486,0.70737,0.70009,0.70893,0.716493,0.745285,1.188048474,3.048482075,4.908915677,6.769349279,4.726924526,2.684499774,0.642075021,0.750948242,0.859821463,1.051340066,1.008322403,0.965304741,0.922287078,1.566023742,2.209760405,2.853497069,2.853497069,2.853497069 +32,NV,2,FUEL COMB. INDUSTRIAL,VOC,0.09206,0.0794,0.07624,0.07463,0.103646,0.106072,0.114048,0.124583143,0.249860512,0.375137882,0.500415251,0.344606378,0.188797504,0.03298863,0.038285883,0.043583135,0.078561674,0.102094752,0.125627831,0.149160909,0.170902292,0.192643674,0.214385057,0.214385057,0.214385057 +32,NV,2,FUEL COMB. INDUSTRIAL,SO2,2.3034,2.40617,2.26673,2.21535,2.143933,2.226937,2.39707,12.20730455,12.21329534,12.21928613,12.22527692,9.590615614,6.955954307,4.321293,4.431509294,4.541725587,4.661899044,4.247268183,3.832637322,3.418006461,2.35681974,1.295633019,0.234446298,0.234446298,0.234446298 +32,NV,2,FUEL COMB. INDUSTRIAL,PM25,0.09731,0.28278,0.27446,0.27494,0.273082,0.277028,0.28998,0.432294985,0.422614863,0.41293474,0.403254618,0.388585463,0.373916309,0.359247155,0.358979451,0.358711747,0.390887684,0.428486308,0.466084932,0.503683556,0.455842129,0.408000702,0.360159275,0.360159275,0.360159275 +32,NV,2,FUEL COMB. INDUSTRIAL,PM10,0.19564,0.40206,0.38667,0.38504,0.378058,0.382836,0.403064,1.084520049,1.072229436,1.059938823,1.047648211,0.900685489,0.753722768,0.606760047,0.665277454,0.723794861,0.867729739,0.83086156,0.793993381,0.757125201,0.66615639,0.575187578,0.484218766,0.484218766,0.484218766 +32,NV,2,FUEL COMB. INDUSTRIAL,NH3,0.04753,0.05575,0.05296,0.0523,0.05655,0.057856,0.060368,0.200607027,0.201140247,0.201673467,0.202206687,0.146641438,0.091076189,0.03551094,0.036321226,0.037131511,0.040243178,0.038019632,0.035796086,0.03357254,0.030548709,0.027524878,0.024501046,0.024501046,0.024501046 +32,NV,2,FUEL COMB. INDUSTRIAL,NOX,2.80496,3.53544,3.33801,3.29538,3.486586,3.516547,3.661346,3.081219854,3.271339081,3.461458308,3.651577535,3.038585964,2.425594393,1.812602822,1.85997828,1.907353739,2.128420288,1.954370731,1.780321174,1.606271617,2.656094494,3.705917372,4.75574025,4.75574025,4.75574025 +32,NV,3,FUEL COMB. OTHER,CO,13.52883,5.04518,5.04295,4.98419,5.414002,6.412835,6.194111,9.642487014,9.921185647,10.19988428,10.47858291,11.7084237,12.93826449,14.16810527,14.11152556,14.05494585,12.83909381,12.26136985,11.68364588,11.10592191,12.30598646,13.506051,14.70611554,14.70611554,14.70611554 +32,NV,3,FUEL COMB. OTHER,VOC,2.49888,1.76221,1.76326,1.75887,1.852062,2.03648,2.020309,3.713185825,3.06231789,2.411449954,1.760582019,2.353094191,2.945606362,3.538118534,3.133147342,2.728176149,1.888205961,2.525103451,3.162000941,3.798898432,4.019364094,4.239829757,4.46029542,4.46029542,4.46029542 +32,NV,3,FUEL COMB. OTHER,SO2,0.8746,1.23616,1.26127,0.99692,1.06395,1.212016,3.814609,0.389318437,0.396715608,0.404112778,0.411509949,0.662293224,0.913076498,1.163859773,1.072256956,0.980654138,0.911562321,0.692590708,0.473619096,0.254647483,0.20694111,0.159234736,0.111528363,0.111528363,0.111528363 +32,NV,3,FUEL COMB. OTHER,PM25,1.78084,0.68987,0.68885,0.68172,1.034703,1.105899,1.130881,1.132217352,1.192585997,1.252954642,1.313323287,1.556150398,1.79897751,2.041804621,2.040954995,2.040105368,1.761612837,1.7746909,1.787768964,1.800847027,1.774844013,1.748841,1.722837986,1.722837986,1.722837986 +32,NV,3,FUEL COMB. OTHER,PM10,1.7962,0.71545,0.715,0.7028,1.05533,1.127233,1.153903,1.139342124,1.202014432,1.264686741,1.32735905,1.572389755,1.817420461,2.062451166,2.076673968,2.09089677,1.830628045,1.881083739,1.931539432,1.981995126,1.912619799,1.843244471,1.773869144,1.773869144,1.773869144 +32,NV,3,FUEL COMB. OTHER,NH3,0.02484,0.03767,0.03801,0.03255,0.05468,0.062039,0.053169,0.118076063,0.151525237,0.184974411,0.218423585,0.230690379,0.242957174,0.255223969,0.25581633,0.256408692,0.253114644,0.367051877,0.480989111,0.594926344,0.616822084,0.638717824,0.660613564,0.660613564,0.660613564 +32,NV,3,FUEL COMB. OTHER,NOX,3.01864,3.30992,3.29209,3.06555,6.361935,7.320205,8.279518,5.982014347,6.39688478,6.811755213,7.226625646,6.120219366,5.013813086,3.907406806,3.734847303,3.5622878,3.78273385,3.480755432,3.178777014,2.876798595,4.12043334,5.364068085,6.60770283,6.60770283,6.60770283 +32,NV,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,,,,,0.045068,0.048278,0.05232,0.315119027,0.334507176,0.353895324,0.373283473,0.266188698,0.159093923,0.051999148,0.035186304,0.01837346,0.003981635,0.02388135,0.043781066,0.063680781,0.083446089,0.103211397,0.122976705,0.122976705,0.122976705 +32,NV,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,0.13685,0.13625,0.13907,0.00373,0.003746,0.00378,1.84E-05,1.80E-05,1.76E-05,1.73E-05,1.65E-05,1.57E-05,1.48E-05,1.06E-05,6.28E-06,0.000002,0.000118846,0.000235693,0.000352539,0.000235026,0.000117513,0,0,0 +32,NV,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,0.09328,0.09249,0.09439,0.034434,0.034565,0.034744,0.054057039,0.058237769,0.062418499,0.066599229,0.054201415,0.041803601,0.029405786,0.02447557,0.019545353,0.015018236,0.013047783,0.011077331,0.009106878,0.008021852,0.006936825,0.005851799,0.005851799,0.005851799 +32,NV,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,0.11283,0.11187,0.11417,0.036133,0.036262,0.036441,0.097104459,0.102152227,0.107199995,0.112247763,0.089712495,0.067177227,0.044641959,0.038090467,0.031538975,0.026002971,0.025068685,0.024134398,0.023200112,0.019012986,0.014825861,0.010638735,0.010638735,0.010638735 +32,NV,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,,,,0.058899,0.058697,0.058517,0.168691517,0.182630709,0.196569901,0.210509093,0.192880295,0.175251498,0.1576227,0.130132784,0.102642867,0.075152951,0.090329344,0.105505737,0.12068213,0.080474956,0.040267783,0.000060609,0.000060609,0.000060609 +32,NV,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,0,0,0,,0,0,0,6.23E-05,0.000124587,0.00018688,0.000167087,0.000147293,0.0001275,0.000168333,0.000209167,0.00025,0.00025,0.00025 +32,NV,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,,,,0.02465,0.024609,0.024576,0.166092958,0.180217112,0.194341265,0.208465419,0.152860709,0.097256,0.04165129,0.03219916,0.02274703,0.0132949,0.011067473,0.008840045,0.006612618,0.004408412,0.002204206,0,0,0 +32,NV,5,METALS PROCESSING,NOX,0.5933,0.45276,0.47324,0.4748,0.473473,0.479563,0.487575,0.365495932,0.374576215,0.383656498,0.392736781,0.315752063,0.238767345,0.161782627,0.183302,0.204821373,0.226340746,0.203879883,0.18141902,0.158958157,0.165407665,0.171857173,0.178306682,0.178306682,0.178306682 +32,NV,5,METALS PROCESSING,PM10,,3.17804,3.21312,3.22878,0.769308,0.783883,0.803082,0.791834997,0.884686791,0.977538585,1.070390379,0.914115278,0.757840177,0.601565077,0.576947964,0.552330852,0.52771374,0.570681159,0.613648578,0.656615997,0.668039713,0.679463429,0.690887145,0.690887145,0.690887145 +32,NV,5,METALS PROCESSING,PM25,,1.10943,1.12163,1.12711,0.453036,0.461626,0.472945,0.242165,0.345489197,0.448813394,0.55213759,0.476515875,0.40089416,0.325272444,0.296669304,0.268066164,0.239463023,0.236911044,0.234359064,0.231807084,0.278293477,0.32477987,0.371266263,0.371266263,0.371266263 +32,NV,5,METALS PROCESSING,SO2,0.484,0.1688,0.17065,0.17149,0.193255,0.196925,0.201757,0.420803835,0.467566329,0.514328823,0.561091317,0.418012445,0.274933573,0.131854701,0.119040871,0.106227042,0.093413212,0.087584999,0.081756785,0.075928571,0.110677224,0.145425877,0.18017453,0.18017453,0.18017453 +32,NV,5,METALS PROCESSING,VOC,0.0049,0.00273,0.00276,0.00277,0.017266,0.017594,0.018025,0.203786622,0.158225496,0.11266437,0.067103244,0.055637324,0.044171405,0.032705486,0.049229278,0.065753071,0.082276863,0.059792281,0.037307699,0.014823117,0.013849426,0.012875735,0.011902044,0.011902044,0.011902044 +32,NV,5,METALS PROCESSING,CO,10.3625,10.59121,11.88904,11.89017,11.91733,11.92226,11.928748,0.493167296,0.571100812,0.649034328,0.726967844,0.629028719,0.531089594,0.433150469,0.358670978,0.284191487,0.209711996,0.220544624,0.231377252,0.242209879,0.24733509,0.2524603,0.257585511,0.257585511,0.257585511 +32,NV,5,METALS PROCESSING,NH3,,,,,,,,,0.000333333,0.000666667,0.001,0.000766667,0.000533333,0.0003,0.024255,0.04821,0.0487455,0.056890333,0.065035167,0.07318,0.060780667,0.048381333,0.035982,0.035982,0.035982 +32,NV,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.0244,,,,0.0012,0.0012,0.001192,0.085060619,0.093531856,0.102003094,0.110474331,0.085614783,0.060755236,0.035895688,0.044597569,0.053299451,0.062001332,0.055775765,0.049550198,0.043324631,0.046092469,0.048860308,0.051628146,0.051628146,0.051628146 +32,NV,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.3325,0.32666,0.35161,0.35302,0.35302,0.35302,0.35302,0.176719572,0.182933069,0.189146566,0.195360063,0.165193059,0.135026055,0.104859051,0.234646784,0.364434518,0.503119871,0.424251917,0.345383963,0.266516009,0.326412987,0.386309966,0.446206945,0.446206945,0.446206945 +32,NV,6,PETROLEUM & RELATED INDUSTRIES,SO2,,,,,0.0009,0.0009,0.000894,0.012843573,0.015111758,0.017379943,0.019648128,0.020974817,0.022301506,0.023628195,0.026405052,0.029181909,0.031958765,0.026112657,0.020266548,0.014420439,0.01751561,0.020610782,0.023705953,0.023705953,0.023705953 +32,NV,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.04126,0.00418,0.00418,0.00418,0.00097,0.00097,0.000963,0.106070244,0.104369806,0.102669368,0.100968929,0.123841423,0.146713916,0.16958641,0.127325955,0.0850655,0.038405045,0.046834647,0.055264249,0.063693852,0.061819398,0.059944945,0.058070492,0.058070492,0.058070492 +32,NV,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +32,NV,6,PETROLEUM & RELATED INDUSTRIES,CO,0.0186,,,,0.00058,0.00058,0.000576,0.11778574,0.130261715,0.142737689,0.155213664,0.125948603,0.096683542,0.06741848,0.085961012,0.104503544,0.123046075,0.113490318,0.10393456,0.094378803,0.107115695,0.119852587,0.132589479,0.132589479,0.132589479 +32,NV,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.02351,0.00004,0.00004,0.00004,0.000239,0.000239,0.000238,0.074451355,0.075013655,0.075575955,0.076138255,0.058281367,0.040424478,0.02256759,0.020556735,0.01854588,0.016535025,0.016157219,0.015779412,0.015401605,0.017257055,0.019112505,0.020967955,0.020967955,0.020967955 +32,NV,7,OTHER INDUSTRIAL PROCESSES,NOX,6.26064,3.58321,3.8053,3.86954,0.20138,0.208081,0.215455,1.948831085,3.753778616,5.558726147,7.363673678,5.858478813,4.353283949,2.848089084,2.831465081,2.814841078,3.545394993,3.466234517,3.387074042,3.307913566,3.087319594,2.866725622,2.646131651,2.646131651,2.646131651 +32,NV,7,OTHER INDUSTRIAL PROCESSES,VOC,0.1312,0.2351,0.2417,0.24555,0.269892,0.282003,0.3809096,0.7390075,0.8385035,0.937999499,1.037495499,1.075055941,1.112616383,1.150176825,1.014124163,0.878071502,0.843202905,0.79847055,0.753738194,0.709005839,0.85268664,0.996367441,1.140048242,1.140048242,1.140048242 +32,NV,7,OTHER INDUSTRIAL PROCESSES,SO2,1.39303,1.58141,1.6021,1.63965,0.030666,0.03089,0.030957,0.320366963,0.472095133,0.623823304,0.775551475,0.64408869,0.512625905,0.38116312,0.350624169,0.320085218,0.426860666,0.385445904,0.344031141,0.302616379,0.317005925,0.331395472,0.345785018,0.345785018,0.345785018 +32,NV,7,OTHER INDUSTRIAL PROCESSES,PM10,12.21117,18.37961,19.52713,21.57354,13.936766,14.852349,15.50117414,14.8639254,15.66663904,16.46935267,17.27206631,31.80966588,46.34726545,60.88486502,64.78480554,68.68474605,72.64536509,76.21389815,79.7824312,83.35096426,79.57899218,75.8070201,72.03504801,72.03504801,72.03504801 +32,NV,7,OTHER INDUSTRIAL PROCESSES,NH3,0.00318,0.00471,0.00501,0.00508,,,,0.1642605,0.161263955,0.15826741,0.155270865,0.104455872,0.05364088,0.002825887,0.003468925,0.004111962,0.00545429,0.00966867,0.01388305,0.01809743,0.02009437,0.02209131,0.02408825,0.02408825,0.02408825 +32,NV,7,OTHER INDUSTRIAL PROCESSES,CO,0.47858,0.14109,0.14056,0.14407,0.0767,0.07889,0.316392061,1.659392059,2.93789481,4.216397561,5.494900312,4.176487084,2.858073856,1.539660628,1.491649579,1.44363853,1.651583531,2.102318121,2.553052711,3.003787301,2.954744348,2.905701394,2.856658441,2.856658441,2.856658441 +32,NV,7,OTHER INDUSTRIAL PROCESSES,PM25,3.06005,4.55471,4.79177,5.22525,3.189806,3.382306,3.969590163,3.612110593,4.127652522,4.64319445,5.158736379,6.609216166,8.059695953,9.51017574,9.9889558,10.46773586,10.96470577,11.00812127,11.05153676,11.09495226,10.93769168,10.7804311,10.62317052,10.62317052,10.62317052 +32,NV,8,SOLVENT UTILIZATION,CO,0.00078,,,,,,,0.01166,0.012046667,0.012433333,0.01282,0.012385833,0.011951667,0.0115175,0.010776813,0.010036127,0.00929544,0.009674047,0.010052653,0.01043126,0.010897468,0.011363676,0.011829885,0.011829885,0.011829885 +32,NV,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0,0,0,0.000113333,0.000226667,0.00034,0.000333333,0.000326667,0.00032,0.000313886,0.000307773,0.000301659,0.000301659,0.000301659 +32,NV,8,SOLVENT UTILIZATION,NOX,0.00165,,,,,,,0.01673,0.016643333,0.016556667,0.01647,0.015481833,0.014493667,0.0135055,0.012700383,0.011895267,0.01109015,0.01168082,0.01227149,0.012862161,0.014574152,0.016286142,0.017998133,0.017998133,0.017998133 +32,NV,8,SOLVENT UTILIZATION,PM10,,,,,,,,0.012283966,0.018458439,0.024632913,0.030807386,0.02578281,0.020758234,0.015733658,0.020414858,0.025096059,0.029777259,0.027830237,0.025883215,0.023936192,0.023982304,0.024028415,0.024074526,0.024074526,0.024074526 +32,NV,8,SOLVENT UTILIZATION,PM25,,,,,,,,0.010185392,0.015238828,0.020292264,0.025345701,0.02034372,0.01534174,0.01033976,0.014762956,0.019186153,0.023609349,0.022010758,0.020412168,0.018813578,0.018060443,0.017307308,0.016554173,0.016554173,0.016554173 +32,NV,8,SOLVENT UTILIZATION,SO2,,,,,,,,0,0,0,,0.000004,0.000008,0.000012,3.71E-05,6.22E-05,0.000087346,0.00028615,0.000484953,0.000683757,0.000494688,0.000305619,0.00011655,0.00011655,0.00011655 +32,NV,8,SOLVENT UTILIZATION,VOC,18.11903,26.59407,27.41487,25.19143,23.4825,23.503418,24.230581,12.28999109,12.2833291,12.27666712,12.27000513,17.47534495,22.68068477,27.88602459,24.86341673,21.84080887,18.68879466,20.41507972,22.14136478,23.86764983,24.07790441,24.28815899,24.49841356,24.49841356,24.49841356 +32,NV,9,STORAGE & TRANSPORT,NH3,,,,,0.008187,0.008561,0.009052,,0,0,,0,0,0,0,0,0,1.33E-05,2.67E-05,0.00004,3.33E-05,2.67E-05,0.00002,0.00002,0.00002 +32,NV,9,STORAGE & TRANSPORT,VOC,9.60267,7.5226,8.19704,8.20101,8.187772,8.349822,8.59054,5.172902133,5.154934918,5.136967702,5.119000486,4.836127178,4.553253871,4.270380563,4.401827947,4.533275331,4.229973996,4.4876754,4.745376805,5.003078209,5.555296437,6.107514665,6.659732893,6.659732893,6.659732893 +32,NV,9,STORAGE & TRANSPORT,SO2,0.46251,0.55406,0.57572,0.59355,0.321888,0.341656,0.365744,0.432449729,0.376996695,0.321543661,0.266090628,0.276235924,0.286381219,0.296526515,0.197938921,0.099351327,0.126597991,0.130428698,0.134259405,0.138090112,0.1892628,0.240435488,0.291608176,0.291608176,0.291608176 +32,NV,9,STORAGE & TRANSPORT,NOX,0.8344,0.25746,0.26751,0.27581,3.322543,3.524592,3.77186,4.561537019,3.646867166,2.732197313,1.81752746,2.430918807,3.044310153,3.6577015,2.440168731,1.222635962,0.410973193,0.435959915,0.460946637,0.485933359,0.469893853,0.453854346,0.43781484,0.43781484,0.43781484 +32,NV,9,STORAGE & TRANSPORT,CO,0.306,0.02966,0.03082,0.03178,3.42011,3.628632,3.881689,4.76617589,4.674243645,4.5823114,4.490379155,3.087364683,1.68435021,0.281335737,0.200530684,0.119725631,0.134679578,0.176465608,0.218251639,0.26003767,0.248369635,0.2367016,0.225033565,0.225033565,0.225033565 +32,NV,9,STORAGE & TRANSPORT,PM25,1.9718,0.07227,0.07244,0.07436,0.17378,0.183649,0.195628,0.333628157,0.347853041,0.362077924,0.376302807,0.454512833,0.532722859,0.610932884,0.471262131,0.331591378,0.191986625,0.1688921,0.145797575,0.12270305,0.133828967,0.144954885,0.156080802,0.156080802,0.156080802 +32,NV,9,STORAGE & TRANSPORT,PM10,6.00386,0.28054,0.28244,0.29002,0.313099,0.33039,0.351326,0.974318669,0.993610069,1.012901469,1.032192869,1.028805814,1.025418759,1.022031705,0.820919847,0.619807989,0.511862131,0.470734783,0.429607435,0.388480087,0.425096279,0.461712471,0.498328663,0.498328663,0.498328663 +32,NV,10,WASTE DISPOSAL & RECYCLING,CO,6.5494,31.74791,31.03238,31.82034,31.46705,3.358927,3.359077,3.005072284,3.158579128,3.312085971,3.465592814,3.260480371,3.055367927,2.850255483,2.495340979,2.140426475,1.837860131,2.34305145,2.848242769,3.353434088,3.704196763,4.054959438,4.405722113,4.405722113,4.405722113 +32,NV,10,WASTE DISPOSAL & RECYCLING,NH3,0.56186,0.75385,0.75385,0.77111,0.79414,0.805256,0.822728,0.008219417,0.008219417,0.008219417,0.008219417,0.031002999,0.053786581,0.076570164,0.073180164,0.069790164,0.066400313,0.06906147,0.071722628,0.074383785,0.077191657,0.079999528,0.0828074,0.0828074,0.0828074 +32,NV,10,WASTE DISPOSAL & RECYCLING,NOX,0.12716,0.9711,0.9532,0.97766,0.967741,0.137858,0.13791,0.167487506,0.166550651,0.165613796,0.164676941,0.159889111,0.15510128,0.150313449,0.144924434,0.139535419,0.121538993,0.134746555,0.147954116,0.161161677,0.181803359,0.202445041,0.223086723,0.223086723,0.223086723 +32,NV,10,WASTE DISPOSAL & RECYCLING,PM10,0.70432,3.58875,3.54795,3.64144,3.471365,0.658674,0.658715,0.606747907,0.784564043,0.962380179,1.140196315,0.965204169,0.790212023,0.615219877,0.567615657,0.520011436,0.392673875,0.437940932,0.483207989,0.528475046,0.71152773,0.894580414,1.077633099,1.077633099,1.077633099 +32,NV,10,WASTE DISPOSAL & RECYCLING,PM25,0.57689,3.50431,3.45868,3.5491,3.43809,0.623798,0.623825,0.568774184,0.686548278,0.804322372,0.922096466,0.778408906,0.634721347,0.491033788,0.430652582,0.370271377,0.320743141,0.357317276,0.393891411,0.430465546,0.621802455,0.813139364,1.004476274,1.004476274,1.004476274 +32,NV,10,WASTE DISPOSAL & RECYCLING,SO2,0.0244,0.00987,0.01085,0.01119,0.011351,0.011853,0.011887,0.013042843,0.086452272,0.159861701,0.233271129,0.238064673,0.242858216,0.247651759,0.277564555,0.307477351,0.343103651,0.326382318,0.309660984,0.29293965,0.328418555,0.363897459,0.399376364,0.399376364,0.399376364 +32,NV,10,WASTE DISPOSAL & RECYCLING,VOC,8.8309,3.12308,3.09584,3.17431,3.174861,1.268399,1.285221,1.560093304,1.631753981,1.703414659,1.775075336,2.576028635,3.376981934,4.177935233,2.958446639,1.738958046,0.520480153,0.619045545,0.717610937,0.816176329,0.855078181,0.893980034,0.932881886,0.932881886,0.932881886 +32,NV,11,HIGHWAY VEHICLES,NOX,45.30165,47.44684,50.6114,52.52701,53.6889,52.4841,50.96098,40.93389264,41.89421059,42.85452854,43.81484649,45.44887208,47.08289767,40.64274558,43.52678289,43.9106772,56.02207556,52.11918038,48.21628521,44.31339004,40.03027796,32.21253041,28.50676136,27.39352044,25.46249461 +32,NV,11,HIGHWAY VEHICLES,VOC,48.94439,37.84687,38.39496,39.67135,40.13573,38.81661,38.20547,21.35200794,21.95802414,22.56404034,23.17005654,26.13587854,29.10170054,27.08396131,20.52249859,22.24557508,24.20949508,22.80818177,21.40686847,20.00555517,18.95273518,16.75577593,16.10106549,14.32458333,13.40470591 +32,NV,11,HIGHWAY VEHICLES,SO2,2.5293,1.71521,1.85053,1.95436,2.07574,1.85075,1.92597,0.494025655,0.549160705,0.604295755,0.659430805,0.609352917,0.559275028,0.510770429,0.49025766,0.515838124,0.27219462,0.246747807,0.221300994,0.195854181,0.153144126,0.163676597,0.129215022,0.074917841,0.071012711 +32,NV,11,HIGHWAY VEHICLES,PM10,1.93626,1.62244,1.62106,1.58632,1.56837,1.4467,1.39698,1.451223386,1.537788997,1.624354607,1.710920218,1.871875617,2.032831015,1.751474814,1.956984139,1.93156132,3.421476231,3.108054112,2.794631993,2.481209874,2.408868144,2.042460856,1.810541412,2.29913771,2.3052992 +32,NV,11,HIGHWAY VEHICLES,NH3,0.76865,1.34623,1.59186,1.60801,1.72775,1.77134,1.85346,0.803532379,0.851225679,0.898918979,0.946612279,1.003375599,1.060138918,0.931275172,0.863442137,0.837824703,1.059737028,1.003766032,0.947795036,0.89182404,0.86051698,0.918598069,0.843645651,0.802306319,0.800935527 +32,NV,11,HIGHWAY VEHICLES,CO,589.06005,459.16941,462.05585,465.61464,455.94197,446.20566,434.36594,190.3467697,200.2866811,210.2265925,220.1665039,245.9045481,271.6425922,222.3623926,164.72529,203.0429529,258.1121977,239.4492325,220.7862673,202.123302,194.1981942,177.6508351,167.9453761,154.8083539,148.5357611 +32,NV,11,HIGHWAY VEHICLES,PM25,1.62698,1.2923,1.27307,1.23231,1.20118,1.08713,1.03381,1.132103145,1.188211562,1.24431998,1.300428398,1.382273312,1.464118226,1.22175019,1.413593321,1.365500705,1.625441724,1.49351837,1.361595017,1.229671663,1.139631609,0.939994911,0.823238602,0.920467182,0.89185921 +32,NV,12,OFF-HIGHWAY,CO,146.64903,168.32665,162.02425,162.03195,163.81246,165.84309,169.26821,218.9697786,208.8016818,198.6335849,188.4654881,192.8307663,197.1960445,168.8215629,161.5197587,152.7257355,152.1353719,143.7046585,135.2739452,126.8432318,129.2539141,132.8984454,134.0752786,134.8115893,135.5479001 +32,NV,12,OFF-HIGHWAY,NH3,0.07544,0.09229,0.09304,0.09582,0.02356,0.02356,0.02356,0.019739797,0.02016683,0.020593863,0.021020895,0.021692253,0.02236361,0.022916791,0.023158919,0.023248239,0.023663967,0.024020122,0.024376278,0.024732433,0.026772443,0.029519637,0.030852462,0.031385373,0.031918284 +32,NV,12,OFF-HIGHWAY,NOX,23.08682,26.35176,26.66654,26.88564,26.38782,26.47569,26.2115,31.72351774,30.96936069,30.21520364,29.46104659,27.61602246,25.77099833,28.15080629,26.35263155,25.78709189,25.01994735,23.78483999,22.54973263,21.31462527,21.92492604,24.19272917,23.14552759,22.22554119,21.3055548 +32,NV,12,OFF-HIGHWAY,PM10,2.13724,2.22572,2.19569,2.16119,2.1385,2.10833,2.07841,2.540674283,2.51419411,2.487713936,2.461233763,2.367223849,2.273213935,2.164741061,2.125673541,2.043621542,1.973326773,1.894305031,1.815283288,1.736261546,1.799109696,2.023723228,1.924805996,1.838493071,1.752180146 +32,NV,12,OFF-HIGHWAY,PM25,1.95658,2.03711,2.01031,1.98026,1.9574,1.92935,1.90142,2.426677544,2.400063669,2.373449794,2.346835919,2.246272866,2.145709813,1.997282501,1.959358502,1.881997547,1.869214543,1.79316492,1.717115298,1.641065675,1.704728686,1.927561121,1.832054707,1.748175314,1.664295921 +32,NV,12,OFF-HIGHWAY,SO2,1.96522,2.53897,2.57616,2.61948,2.6922,2.76442,2.80045,2.989069493,3.000777338,3.012485183,3.024193029,2.210915282,1.397637536,0.698625118,0.738832446,0.556914989,0.452996924,0.422507569,0.392018213,0.361528858,0.438488333,0.58357689,0.592407281,0.602524362,0.612641442 +32,NV,12,OFF-HIGHWAY,VOC,17.83804,19.71188,18.16107,17.46942,17.45381,17.30785,17.10125,23.77652381,22.85835507,21.94018634,21.0220176,20.91207836,20.80213912,19.6905046,18.98778786,16.88640906,16.30717762,15.30950707,14.31183652,13.31416597,12.79724723,12.10754494,11.76340976,11.59367536,11.42394097 +32,NV,14,MISCELLANEOUS,PM25,14.98506,51.45672,29.37509,30.14611,72.70169,47.362615,40.2439416,9.23596,9.713651082,10.19134216,10.66903325,12.92999223,15.19095121,17.45191019,15.63374582,13.81558145,11.99741707,12.04472798,12.09203889,12.13934979,11.24865027,10.35795074,9.467251221,9.467251221,9.467251221 +32,NV,14,MISCELLANEOUS,SO2,0.00101,0.36283,0.05782,0.06418,3.59359,1.77558,1.45426,0.02884,0.085073531,0.141307062,0.197540593,0.132494712,0.067448832,0.002402952,0.022875843,0.043348734,0.063821625,0.044691597,0.025561569,0.006431541,0.006306215,0.00618089,0.006055564,0.006055564,0.006055564 +32,NV,14,MISCELLANEOUS,PM10,67.41565,155.51957,136.59497,135.49834,175.23147,148.706043,135.3360474,92.47678,93.04045174,93.60412348,94.16779522,117.6402125,141.1126297,164.585047,138.6119705,112.638894,86.66581753,82.40336289,78.14090826,73.87845362,71.31400119,68.74954875,66.18509631,66.18509631,66.18509631 +32,NV,14,MISCELLANEOUS,NOX,1.53127,9.79898,1.70016,1.90236,13.12935,6.498977,5.327414,0.04794,0.189977325,0.332014651,0.474051976,0.321102663,0.16815335,0.015204036,0.094655836,0.174107636,0.253559437,0.17860335,0.103647263,0.028691176,0.024727274,0.020763371,0.016799468,0.016799468,0.016799468 +32,NV,14,MISCELLANEOUS,NH3,14.49713,14.12063,14.21846,14.14502,16.86782,15.45808,7.218595786,5.638875385,5.720404747,5.801934109,5.883463471,5.712541108,5.541618745,5.370696382,5.642773682,5.914850982,6.186928282,9.770749973,13.35457166,16.93839336,21.07522389,25.21205442,29.34888496,29.34888496,29.34888496 +32,NV,14,MISCELLANEOUS,CO,23.00188,342.39636,58.65591,65.47149,610.59705,302.470898,247.267532,2.93559,7.803767285,12.67194457,17.54012185,11.74564739,5.951172928,0.156698465,2.368043948,4.57938943,6.790734913,4.584006767,2.377278622,0.170550476,0.251010935,0.331471395,0.411931854,0.411931854,0.411931854 +32,NV,14,MISCELLANEOUS,VOC,1.35371,45.94634,6.68081,7.29031,28.85837,14.345429,11.756993,0.568050016,1.739977044,2.911904072,4.0838311,2.733925826,1.384020552,0.034115278,0.172101929,0.31008858,0.448075231,0.733471358,1.018867485,1.304263613,1.357963762,1.411663912,1.465364061,1.465364061,1.465364061 +32,NV,15,WILDFIRES,VOC,,,,,,,,5.0024,5.0024,5.0024,12.88412997,12.88412997,12.88412997,158.6382717,158.6382717,158.6382717,18.86561277,18.86561277,18.86561277,23.58735011,23.58735011,23.58735011,48.00501581,48.00501581,48.00501581 +32,NV,15,WILDFIRES,NH3,,,,,,,,0.34724,0.34724,0.34724,0.896287303,0.896287303,0.896287303,11.03568859,11.03568859,11.03568859,1.312389703,1.312389703,1.312389703,1.640859105,1.640859105,1.640859105,3.339478604,3.339478604,3.339478604 +32,NV,15,WILDFIRES,NOX,,,,,,,,0.23884,0.23884,0.23884,1.595885502,1.595885502,1.595885502,5.561600963,5.561600963,5.561600963,1.823015267,1.823015267,1.823015267,1.443718702,1.443718702,1.443718702,4.87482744,4.87482744,4.87482744 +32,NV,15,WILDFIRES,PM10,,,,,,,,2.11536,2.11536,2.11536,6.223515506,6.223515506,6.223515506,65.56440375,65.56440375,65.56440375,8.70931341,8.70931341,8.70931341,10.23290882,10.23290882,10.23290882,22.34689537,22.34689537,22.34689537 +32,NV,15,WILDFIRES,CO,,,,,,,,21.75339,21.75339,21.75339,53.58639167,53.58639167,53.58639167,676.7402208,676.7402208,676.7402208,79.08198107,79.08198107,79.08198107,99.87994017,99.87994017,99.87994017,200.9463407,200.9463407,200.9463407 +32,NV,15,WILDFIRES,SO2,,,,,,,,0.14279,0.14279,0.14279,0.667116773,0.667116773,0.667116773,3.962735014,3.962735014,3.962735014,0.821791059,0.821791059,0.821791059,0.775325649,0.775325649,0.775325649,2.16233394,2.16233394,2.16233394 +32,NV,15,WILDFIRES,PM25,,,,,,,,1.7925,1.7925,1.7925,5.274165684,5.274165684,5.274165684,55.56305279,55.56305279,55.56305279,7.380776543,7.380776543,7.380776543,8.671954639,8.671954639,8.671954639,18.93804397,18.93804397,18.93804397 +32,NV,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.548820138,0.575106895,0.601393653,0.62768041,0.683069489,0.738458567,0.793847646,0.633765363,0.473683079,0.313600796,0.313600796,0.313600796 +32,NV,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.637164673,0.671664136,0.706163598,0.740663061,0.806022014,0.871380967,0.93673992,0.747842989,0.558946058,0.370049127,0.370049127,0.370049127 +32,NV,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.019325376,0.032255162,0.045184948,0.058114734,0.060196817,0.062278899,0.064360982,0.052900012,0.041439042,0.029978072,0.029978072,0.029978072 +32,NV,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.620308819,0.977653217,1.334997614,1.692342012,1.864446072,2.036550131,2.208654191,1.751930482,1.295206774,0.838483065,0.838483065,0.838483065 +32,NV,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.033375194,0.059525725,0.085676256,0.111826786,0.110512807,0.109198827,0.107884848,0.09169993,0.075515012,0.059330094,0.059330094,0.059330094 +32,NV,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.044703943,0.069045089,0.093386235,0.117727381,0.129700074,0.141672766,0.153645459,0.12187337,0.09010128,0.058329191,0.058329191,0.058329191 +32,NV,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,4.89413338,5.648174369,6.402215358,7.156256347,7.899278293,8.64230024,9.385322186,7.437180906,5.489039625,3.540898345,3.540898345,3.540898345 +33,NH,1,FUEL COMB. ELEC. UTIL.,VOC,0.15182,0.123,0.14883,0.15658,0.15836,0.155859,0.151135,0.132373872,0.139604926,0.14683598,0.154067034,0.156493881,0.158920728,0.161347575,0.14886735,0.136387126,0.123906901,0.116370454,0.108834008,0.101297561,0.085252769,0.069207978,0.053163186,0.053163186,0.053163186 +33,NH,1,FUEL COMB. ELEC. UTIL.,SO2,68.50784,50.47409,58.68035,55.37408,55.77376,51.409207,48.212046,44.01972332,54.675968,53.989898,51.46123045,40.293112,42.519953,36.97799277,32.79875189,28.61951102,24.44027015,17.17411452,9.90795889,2.641803262,1.928039247,1.214275232,0.500511217,1.1969,0.416758 +33,NH,1,FUEL COMB. ELEC. UTIL.,PM25,0.18917,0.16273,0.19652,0.1596,2.469711,2.756822,2.620582,2.350376685,2.477999804,2.605622924,2.733246043,2.032438003,1.331629963,0.630821923,0.54689895,0.462975976,0.379053002,0.303483485,0.227913968,0.15234445,0.180578904,0.208813358,0.237047812,0.237047812,0.237047812 +33,NH,1,FUEL COMB. ELEC. UTIL.,PM10,0.44532,0.23339,0.29061,0.23101,2.5517,2.849093,2.718191,2.682262351,2.831313123,2.980363894,3.129414666,2.384558968,1.639703271,0.894847573,0.759124825,0.623402076,0.487679328,0.386310108,0.284940887,0.183571667,0.204699966,0.225828264,0.246956563,0.246956563,0.246956563 +33,NH,1,FUEL COMB. ELEC. UTIL.,NOX,30.32264,16.74207,20.12804,14.49377,13.38261,9.994026,8.189509,8.058596879,8.903772,8.837476,9.637025819,7.248329,4.734357,5.154197956,4.897472138,4.640746319,4.384020501,3.998507607,3.612994714,3.22748182,2.628355735,2.029229651,1.430103566,1.694554,1.018445 +33,NH,1,FUEL COMB. ELEC. UTIL.,NH3,,0.02606,0.03217,0.04131,0.046299,0.014797,0.014981,0.058154945,0.089438493,0.120722041,0.152005589,0.157787137,0.163568686,0.169350234,0.167213174,0.165076114,0.162939054,0.162033713,0.161128372,0.160223031,0.135438643,0.110654255,0.085869868,0.085869868,0.085869868 +33,NH,1,FUEL COMB. ELEC. UTIL.,CO,0.78573,0.63013,0.74661,0.75742,2.09213,2.024389,2.042813,1.75790691,1.893884588,2.029862265,2.165839943,2.23744905,2.309058157,2.380667264,2.413761232,2.446855201,2.479949169,2.531036102,2.582123034,2.633209967,2.392926309,2.152642652,1.912358994,1.912358994,1.912358994 +33,NH,2,FUEL COMB. INDUSTRIAL,SO2,49.28354,91.51327,86.01313,83.55224,4.625731,5.029592,5.258098,2.626558352,2.712602742,2.798647132,2.884691522,2.408358866,1.93202621,1.455693554,1.344600087,1.23350662,1.122413153,1.294173326,1.465933499,1.637693672,1.45849854,1.279303407,1.100108275,1.100108275,1.100108275 +33,NH,2,FUEL COMB. INDUSTRIAL,PM25,0.9716,1.55849,1.46937,1.43701,0.432236,0.441608,0.459979,3.747829068,3.757674614,3.767520161,3.777365708,2.576665095,1.375964481,0.175263868,0.167381499,0.159499131,0.151666762,0.33234285,0.513018937,0.693695025,0.608786073,0.523877121,0.43896817,0.43896817,0.43896817 +33,NH,2,FUEL COMB. INDUSTRIAL,PM10,2.08178,3.50454,3.29962,3.21626,0.512278,0.528218,0.54989,4.346788787,4.35723665,4.367684514,4.378132377,2.994798167,1.611463957,0.228129747,0.218980527,0.209831307,0.200722087,0.388417444,0.5761128,0.763808156,0.658717285,0.553626415,0.448535544,0.448535544,0.448535544 +33,NH,2,FUEL COMB. INDUSTRIAL,NOX,9.48692,15.52843,14.65688,14.2548,1.753884,1.843582,1.919331,7.032864418,7.04119913,7.049533841,7.057868553,5.064387113,3.070905673,1.077424234,0.996634698,0.915845163,0.835055628,2.838572131,4.842088633,6.845605136,6.495863863,6.14612259,5.796381317,5.796381317,5.796381317 +33,NH,2,FUEL COMB. INDUSTRIAL,NH3,0.02428,0.02769,0.02663,0.02599,0.018615,0.019676,0.020373,0.022172381,0.022172381,0.022172381,0.022172381,0.014795202,0.007418024,0.000040845,0.00003236,0.000023875,0.00001539,0.009131841,0.018248293,0.027364744,0.024065237,0.02076573,0.017466222,0.017466222,0.017466222 +33,NH,2,FUEL COMB. INDUSTRIAL,CO,11.66586,10.7596,10.18715,10.05005,1.857032,1.842676,1.932747,7.483223508,7.492132005,7.501040503,7.509949001,5.253525301,2.997101601,0.740677901,0.709661882,0.678645862,0.647629843,1.063386575,1.479143308,1.89490004,1.754033879,1.613167717,1.472301556,1.472301556,1.472301556 +33,NH,2,FUEL COMB. INDUSTRIAL,VOC,2.46387,1.28757,1.21698,1.185,0.080331,0.080449,0.082564,0.246738533,0.242449842,0.238161152,0.233872462,0.164222329,0.094572197,0.024922065,0.024381531,0.023840997,0.023300463,0.181805187,0.340309911,0.498814634,0.475048978,0.451283322,0.427517666,0.427517666,0.427517666 +33,NH,3,FUEL COMB. OTHER,NH3,0.1256,0.1211,0.12021,0.1054,0.109023,0.110379,0.111798,0.490770621,0.490771598,0.490772575,0.490773552,0.451363122,0.411952691,0.372542261,0.401537284,0.430532307,0.478172329,0.444426218,0.410680107,0.376933996,0.356376403,0.335818809,0.315261216,0.315261216,0.315261216 +33,NH,3,FUEL COMB. OTHER,VOC,7.37587,8.50701,8.50708,8.50689,29.132863,9.297463,9.299568,38.81004008,30.26341888,21.71679767,13.17017647,10.44349876,7.71682105,4.990143342,5.583378229,6.176613116,7.468000002,6.495247515,5.522495028,4.549742541,4.603707054,4.657671566,4.711636079,4.711636079,4.711636079 +33,NH,3,FUEL COMB. OTHER,SO2,5.57039,5.28585,5.28291,4.61717,9.405867,9.530058,9.706838,7.220965838,7.31287026,7.404774682,7.496679105,7.054728142,6.612777179,6.170826216,5.748648788,5.326471361,4.925321333,4.490054659,4.054787984,3.61952131,3.674939948,3.730358587,3.785777225,3.785777225,3.785777225 +33,NH,3,FUEL COMB. OTHER,PM25,5.35393,3.73324,3.7316,3.71256,7.075168,4.252036,4.259749,8.47745934,8.481472001,8.485484661,8.489497322,7.286594209,6.083691096,4.880787984,5.32679022,5.772792457,6.881797893,6.104442391,5.327086889,4.549731387,4.617009601,4.684287815,4.751566028,4.751566028,4.751566028 +33,NH,3,FUEL COMB. OTHER,NOX,0.89725,0.57812,0.58523,0.55133,4.607946,4.456028,4.515458,5.389320146,5.387258955,5.385197764,5.383136574,5.126648474,4.870160375,4.613672276,4.476180822,4.338689369,4.220271006,4.221444505,4.222618005,4.223791505,4.215508585,4.207225664,4.198942744,4.198942744,4.198942744 +33,NH,3,FUEL COMB. OTHER,CO,38.76332,26.06903,26.07075,26.06694,50.215989,29.604775,29.629538,65.34561024,65.34788234,65.35015443,65.35242653,53.47110849,41.58979046,29.70847243,33.16532193,36.62217143,43.80801593,39.2849142,34.76181246,30.23871073,31.48234096,32.72597119,33.96960143,33.96960143,33.96960143 +33,NH,3,FUEL COMB. OTHER,PM10,5.47501,3.84039,3.84009,3.8076,7.162556,4.341096,4.350761,8.583956667,8.589692623,8.59542858,8.601164536,7.387511511,6.173858486,4.96020546,5.396994397,5.833783334,6.933565471,6.153124914,5.372684357,4.592243799,4.661460893,4.730677987,4.79989508,4.79989508,4.79989508 +33,NH,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,0.00319,0.00342,0.00355,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,0.01504217,0.010028113,0.005014057,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,0.00026,0.00028,0.00029,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,0.00017,0.00018,0.00019,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,0.00017,0.00018,0.00019,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,,0.04012,0.03031,0.0301,0.03198,0.022159,0.022826,0.330404124,0.329132782,0.327861441,0.326590099,0.224520266,0.122450433,0.0203806,0.021647733,0.022914867,0.024182,0.024182,0.024182,,0,0,0,0,0 +33,NH,5,METALS PROCESSING,SO2,,,,,0.00002,0.00002,0.000022,,0,0,,3.17E-08,6.34E-08,9.51E-08,1.16E-06,2.23E-06,0.000003304,0.000003304,0.000003304,,0,0,0,0,0 +33,NH,5,METALS PROCESSING,NH3,,,,,0.02899,0.029309,0.031048,0.008265775,0.005510517,0.002755258,,0.002766817,0.005533633,0.00830045,0.009233667,0.010166883,0.0111001,0.009952067,0.008804033,0.007656,0.005104,0.002552,0,0,0 +33,NH,5,METALS PROCESSING,NOX,0.00052,,,,0.01135,0.011475,0.012155,,0,0,,5.28E-06,1.06E-05,0.00001585,1.06E-05,5.28E-06,0,0,0,,0,0,0,0,0 +33,NH,5,METALS PROCESSING,CO,0.00026,0.00109,0.00115,0.00122,0.00239,0.002425,0.002549,,0,0,,0.000004438,0.000008876,0.000013314,0.000008876,0.000004438,0,0,0,,0,0,0,0,0 +33,NH,5,METALS PROCESSING,PM25,0.00607,0.06322,0.06868,0.07247,0.301337,0.322391,0.345295,0.007245038,0.004830025,0.002415013,,0.000314779,0.000629558,0.000944337,0.000681576,0.000418814,0.000156053,0.000156053,0.000156053,,0,0,0,0,0 +33,NH,5,METALS PROCESSING,VOC,0.29432,0.89689,0.90301,0.85953,0.4282,0.434789,0.460324,0.045601279,0.030400853,0.015200426,,0.00873375,0.0174675,0.02620125,0.018538242,0.010875234,0.003212226,0.003212226,0.003212226,,0,0,0,0,0 +33,NH,5,METALS PROCESSING,PM10,0.0068,0.07053,0.07651,0.08073,0.307898,0.329293,0.352555,0.007245038,0.004830025,0.002415013,,0.000314779,0.000629558,0.000944337,0.000698236,0.000452135,0.000206034,0.000206034,0.000206034,,0,0,0,0,0 +33,NH,6,PETROLEUM & RELATED INDUSTRIES,NOX,,0.05301,0.0501,0.04301,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,6,PETROLEUM & RELATED INDUSTRIES,CO,,0.13213,0.11814,0.10998,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,6,PETROLEUM & RELATED INDUSTRIES,VOC,,0.05057,0.04644,0.04172,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,6,PETROLEUM & RELATED INDUSTRIES,SO2,,0.04383,0.04015,0.0366,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,6,PETROLEUM & RELATED INDUSTRIES,PM25,,0.00822,0.00733,0.00672,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,6,PETROLEUM & RELATED INDUSTRIES,PM10,,0.02327,0.02066,0.0189,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +33,NH,7,OTHER INDUSTRIAL PROCESSES,PM10,1.15372,2.12527,2.21744,2.64966,2.637236,2.81274,3.217833956,2.232687569,2.265671012,2.298654455,2.331637898,3.116291596,3.900945294,4.685598992,3.719105975,2.752612959,1.786119942,1.416051726,1.045983509,0.675915293,0.986227468,1.296539643,1.606851818,1.606851818,1.606851818 +33,NH,7,OTHER INDUSTRIAL PROCESSES,NOX,0.38998,0.37285,0.38345,0.38813,0.42681,0.439586,0.452377,0.019587889,0.019234371,0.018880853,0.018527336,0.013569431,0.008611526,0.003653621,0.003258448,0.002863275,0.002468102,0.010770724,0.019073347,0.027375969,0.022266277,0.017156585,0.012046892,0.012046892,0.012046892 +33,NH,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00225,0.00231,0.00234,0.002404,0.002476,0.002548,0.15294142,0.157540939,0.162140458,0.166739977,0.117236522,0.067733066,0.018229611,0.029897793,0.041565974,0.053359156,0.037705737,0.022052319,0.0063989,0.005633303,0.004867706,0.00410211,0.00410211,0.00410211 +33,NH,7,OTHER INDUSTRIAL PROCESSES,PM25,0.45148,0.55306,0.57524,0.66342,1.193953,1.249273,1.626030852,0.771667569,0.804651012,0.837634455,0.870617898,1.694494358,2.518370819,3.34224728,2.457811354,1.573375429,0.688939504,0.657703597,0.626467689,0.595231782,0.655732469,0.716233156,0.776733842,0.776733842,0.776733842 +33,NH,7,OTHER INDUSTRIAL PROCESSES,SO2,0.144,0.37796,0.38893,0.3938,0.33444,0.344528,0.354652,0.004734679,0.00392133,0.00310798,0.002294631,0.002337342,0.002380052,0.002422763,0.001628349,0.000833935,0.000039521,4.73E-05,5.51E-05,6.29E-05,5.97E-05,0.000056533,5.33E-05,5.33E-05,5.33E-05 +33,NH,7,OTHER INDUSTRIAL PROCESSES,VOC,3.03682,2.18387,2.2493,2.26874,0.644175,0.66594,0.448911932,0.331363096,0.315824377,0.300285659,0.28474694,0.259548181,0.234349421,0.209150662,0.201938819,0.194726975,0.187515132,0.189097142,0.190679152,0.192261162,0.201223163,0.210185164,0.219147165,0.219147165,0.219147165 +33,NH,7,OTHER INDUSTRIAL PROCESSES,CO,11.94644,0.5521,0.56702,0.57357,0.98501,1.014376,1.18837544,0.149234428,0.149295867,0.149357307,0.149418746,0.141668966,0.133919187,0.126169407,0.139700121,0.153230834,0.166761548,0.542051499,0.917341451,1.292631402,1.068426958,0.844222514,0.62001807,0.62001807,0.62001807 +33,NH,8,SOLVENT UTILIZATION,NH3,,0.00013,0.00014,0.00014,0.00014,0.000147,0.000153,0.002303183,0.001918238,0.001533292,0.001148347,0.001364589,0.001580831,0.001797073,0.001485289,0.001173505,0.000861721,0.000682047,0.000502374,0.0003227,0.000218467,0.000114233,0.00001,0.00001,0.00001 +33,NH,8,SOLVENT UTILIZATION,VOC,24.67468,24.71723,25.39091,24.38149,22.017113,19.273232,20.198831,19.17860124,19.02110611,18.86361098,18.70611586,17.41451671,16.12291757,14.83131842,13.38718486,11.9430513,10.46635163,10.78709293,11.10783424,11.42857554,10.68982968,9.951083817,9.212337955,9.212337955,9.212337955 +33,NH,8,SOLVENT UTILIZATION,SO2,,,,,0.00001,0.000011,0.000011,0.000002388,2.26E-06,2.13E-06,0.000002,2.90E-06,3.80E-06,0.000004695,0.000004635,0.000004575,0.000004515,3.73E-06,2.95E-06,0.00000217,1.45E-06,7.23E-07,0,0,0 +33,NH,8,SOLVENT UTILIZATION,PM25,,0.0008,0.00083,0.00085,0.00004,0.000039,0.000043,8.14E-06,0.000681762,0.001355388,0.002029014,0.001357632,0.00068625,0.000014868,1.49E-05,1.50E-05,0.000015053,0.000012332,0.000009611,0.00000689,4.59E-06,2.30E-06,0,0,0 +33,NH,8,SOLVENT UTILIZATION,NOX,,0.00156,0.0015,0.00136,0.00196,0.001956,0.002033,0.000398,0.000389667,0.000381333,0.000373,0.0005095,0.000646,0.0007825,0.0007725,0.0007625,0.0007525,0.000622467,0.000492433,0.0003624,0.0002416,0.0001208,0,0,0 +33,NH,8,SOLVENT UTILIZATION,CO,,0.00038,0.00036,0.00032,0.00164,0.001637,0.001701,0.00033432,0.000275547,0.000216774,0.000158001,0.000324434,0.000490867,0.0006573,0.0006489,0.0006405,0.0006321,0.000522873,0.000413647,0.00030442,0.000202947,0.000101473,0,0,0 +33,NH,8,SOLVENT UTILIZATION,PM10,,0.00087,0.0009,0.00092,0.00004,0.000039,0.000043,8.14E-06,0.000681762,0.001355388,0.002029014,0.001357632,0.00068625,0.000014868,1.49E-05,1.50E-05,0.000015053,0.000012332,0.000009611,0.00000689,4.59E-06,2.30E-06,0,0,0 +33,NH,9,STORAGE & TRANSPORT,PM10,0.00031,0.00317,0.00331,0.00337,0.001152,0.001219,0.0013,0.002995002,0.002400592,0.001806183,0.001211773,0.001756931,0.002302088,0.002847246,0.002777797,0.002708348,0.002638899,0.001994683,0.001350468,0.000706252,0.000737411,0.000768571,0.00079973,0.00079973,0.00079973 +33,NH,9,STORAGE & TRANSPORT,PM25,0.00006,0.00073,0.00077,0.00078,0.000343,0.000363,0.000388,0.002995002,0.002400592,0.001806183,0.001211773,0.001756931,0.002302088,0.002847246,0.002777797,0.002708348,0.002638899,0.001994683,0.001350468,0.000706252,0.000737411,0.000768571,0.00079973,0.00079973,0.00079973 +33,NH,9,STORAGE & TRANSPORT,SO2,,0.00001,0.00001,0.00001,,,,0,0,0,,0,0,,0.000005304,0.000010608,0.000015912,0.000015912,0.000015912,,0,0,0,0,0 +33,NH,9,STORAGE & TRANSPORT,CO,,0.00001,0.00001,0.00001,,,,0,0,0,,0.00093347,0.00186694,0.00280041,0.0026095,0.00241859,0.00222768,0.00222768,0.00222768,,0,0,0,0,0 +33,NH,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0.000109088,0.000218175,0.000327263,0.000218175,0.000109088,0,0,0,,0,0,0,0,0 +33,NH,9,STORAGE & TRANSPORT,VOC,6.28735,6.58676,6.58746,6.58766,2.213202,2.225486,2.262269,3.153955806,3.155178219,3.156400632,3.157623046,2.627085202,2.096547359,1.566009515,1.460664278,1.355319042,0.944949651,0.843224525,0.7414994,0.639774275,0.853631066,1.067487858,1.281344649,1.281344649,1.281344649 +33,NH,9,STORAGE & TRANSPORT,NOX,,0.00007,0.00007,0.00007,,,,0,0,0,,0.000176713,0.000353426,0.000530139,0.001237426,0.001944713,0.002652,0.002652,0.002652,,0,0,0,0,0 +33,NH,10,WASTE DISPOSAL & RECYCLING,SO2,0.0962,0.3085,0.31843,0.32562,0.36174,0.369845,0.377071,0.114719198,0.154739514,0.19475983,0.234780146,0.232311811,0.229843477,0.227375143,0.22244706,0.217518976,0.212590893,0.229552722,0.246514552,0.263476382,0.29577248,0.328068578,0.360364677,0.360364677,0.360364677 +33,NH,10,WASTE DISPOSAL & RECYCLING,VOC,1.42485,3.65097,3.89619,4.03383,4.008637,4.149058,4.162592,0.831438979,0.820790984,0.81014299,0.799494996,1.237873256,1.676251515,2.114629775,1.844481908,1.574334042,1.304186175,1.334791314,1.365396453,1.396001592,1.339469725,1.282937858,1.226405991,1.226405991,1.226405991 +33,NH,10,WASTE DISPOSAL & RECYCLING,PM25,1.26968,3.19228,3.51233,3.68294,3.743325,3.916134,3.91816,0.324612511,0.325164791,0.325717071,0.326269351,1.088891158,1.851512964,2.614134771,2.364937663,2.115740555,1.866543446,1.812754445,1.758965443,1.705176441,1.642288016,1.57939959,1.516511165,1.516511165,1.516511165 +33,NH,10,WASTE DISPOSAL & RECYCLING,PM10,1.44851,3.36703,3.69773,3.87228,3.927798,4.106044,4.108883,0.343628888,0.344236228,0.344843567,0.345450907,1.273269481,2.201088056,3.12890663,2.828067008,2.527227386,2.226387763,2.167220622,2.108053481,2.048886339,1.923195763,1.797505186,1.671814609,1.671814609,1.671814609 +33,NH,10,WASTE DISPOSAL & RECYCLING,NOX,0.26252,1.4777,1.57369,1.63358,1.62858,1.684386,1.697437,0.517530441,0.688202967,0.858875494,1.02954802,1.134892129,1.240236237,1.345580346,1.254068935,1.162557524,1.071046113,1.013812915,0.956579717,0.899346519,0.827597618,0.755848717,0.684099815,0.684099815,0.684099815 +33,NH,10,WASTE DISPOSAL & RECYCLING,NH3,0.28465,0.39478,0.39755,0.40624,0.412431,0.421038,0.430991,0.198815555,0.198416676,0.198017798,0.197618919,0.13718215,0.076745381,0.016308612,0.04190171,0.067494808,0.093087906,0.0738112,0.054534493,0.035257787,0.03495725,0.034656714,0.034356177,0.034356177,0.034356177 +33,NH,10,WASTE DISPOSAL & RECYCLING,CO,0.83788,19.67297,22.09024,23.53394,24.14307,25.447946,25.45753,2.024528061,2.039770431,2.055012801,2.070255171,8.675137685,15.2800202,21.88490271,19.31448287,16.74406302,14.17364318,14.24184729,14.31005139,14.3782555,13.92395079,13.46964608,13.01534136,13.01534136,13.01534136 +33,NH,11,HIGHWAY VEHICLES,NH3,0.7391,1.03385,1.16556,1.12897,1.16865,1.19226,1.23106,0.687099388,0.67267253,0.658245672,0.643818814,0.628713706,0.613608599,0.563238015,0.547520824,0.505331746,0.452456205,0.440734929,0.429013652,0.417292376,0.39575992,0.389378867,0.391460485,0.352903321,0.348932597 +33,NH,11,HIGHWAY VEHICLES,NOX,50.4221,42.96962,43.53813,42.97376,41.87263,40.37862,38.40228,47.58477292,44.3456848,41.10659668,37.86750856,35.61806524,33.36862192,29.30773678,21.27904758,19.34539566,18.38845598,17.68954042,16.99062485,16.29170929,14.66392285,11.94341717,11.0355836,9.805737295,8.909940357 +33,NH,11,HIGHWAY VEHICLES,PM10,2.11499,1.40098,1.35311,1.26627,1.19357,1.09384,1.03151,1.919374483,1.884343389,1.849312294,1.8142812,1.746325953,1.678370706,1.483659821,1.132552685,0.997406263,1.46799391,1.347014842,1.226035774,1.105056705,1.040070396,0.87749138,0.879475314,0.921055649,0.894926652 +33,NH,11,HIGHWAY VEHICLES,PM25,1.78917,1.13649,1.08034,1.00024,0.92927,0.83552,0.77457,1.613118535,1.571786203,1.530453872,1.48912154,1.409542702,1.329963865,1.14545811,0.823486317,0.694312305,0.784462397,0.721510999,0.658559601,0.595608203,0.532992919,0.427261121,0.409758548,0.403926035,0.378157549 +33,NH,11,HIGHWAY VEHICLES,SO2,2.69949,1.40262,1.44746,1.46559,1.49902,1.12788,1.04327,1.015813829,0.924179942,0.832546055,0.740912167,0.446030027,0.151147886,0.146445517,0.140955879,0.141995624,0.12357197,0.127148562,0.130725154,0.134301746,0.1390319,0.142059087,0.132716488,0.055884978,0.041434015 +33,NH,11,HIGHWAY VEHICLES,VOC,43.60399,28.06855,26.74886,25.90929,24.5114,22.40218,21.02633,17.41451828,16.67440987,15.93430146,15.19419304,14.612107,14.03002096,11.81116607,12.1568752,11.28351493,10.09182911,9.783825733,9.475822358,9.167818983,8.491956058,6.870221497,6.803973234,6.041127096,5.641852419 +33,NH,11,HIGHWAY VEHICLES,CO,569.19585,389.95802,378.85442,368.806,345.41332,340.20443,328.85679,227.7331107,216.3161943,204.8992779,193.4823616,168.8746836,144.2670057,125.4935572,125.9085866,120.4659912,97.63818902,97.90072016,98.1632513,98.42578245,92.38802189,79.40064494,78.13768436,70.62127199,67.08752533 +33,NH,12,OFF-HIGHWAY,PM25,0.94967,1.01836,1.01382,1.01124,1.00793,0.99239,0.98143,0.970694144,0.961564396,0.952434648,0.9433049,0.910412979,0.877521058,0.841093752,0.816647203,0.799389357,0.79848424,0.765579964,0.732675688,0.699771412,0.644047472,0.563933016,0.532599592,0.513006608,0.493413625 +33,NH,12,OFF-HIGHWAY,VOC,17.68965,19.52267,18.798,18.5246,18.46803,18.39372,18.31608,21.94968791,21.74874447,21.54780103,21.3468576,20.75396862,20.16107965,19.57091187,18.66764288,18.09862892,15.22187585,14.40011345,13.57835105,12.75658865,11.53462907,9.67408244,9.090709919,8.755313218,8.419916516 +33,NH,12,OFF-HIGHWAY,PM10,1.03924,1.11044,1.10556,1.10229,1.09891,1.0819,1.06968,1.033713927,1.02448862,1.015263313,1.006038005,0.972675743,0.93931348,0.924225785,0.898211569,0.879969127,0.852804116,0.817960278,0.783116439,0.7482726,0.68856108,0.602277718,0.569138039,0.548647663,0.528157287 +33,NH,12,OFF-HIGHWAY,NOX,7.05552,7.92818,8.01335,7.99791,8.5473,8.49316,8.52974,9.715011428,9.594130169,9.473248911,9.352367653,8.944582563,8.536797473,8.757162653,8.264863011,7.993909277,7.649108091,7.289521467,6.929934842,6.570348217,6.171146518,5.675915862,5.37274312,5.216443015,5.06014291 +33,NH,12,OFF-HIGHWAY,NH3,0.11267,0.13748,0.13995,0.14375,0.01336,0.01336,0.01336,0.009501958,0.009664228,0.009826498,0.009988769,0.009974916,0.009961064,0.01033922,0.010315311,0.010476557,0.010634379,0.010836842,0.011039306,0.01124177,0.010883986,0.009750509,0.010168417,0.010275815,0.010383214 +33,NH,12,OFF-HIGHWAY,CO,111.90138,125.08962,122.29207,122.4979,123.53213,124.61966,127.01624,125.7139996,123.7673316,121.8206635,119.8739955,113.5413382,107.208681,107.2332859,93.40933765,90.16549268,84.99929587,82.39141481,79.78353375,77.17565268,74.82299201,70.97836727,70.11767066,69.91237796,69.70708527 +33,NH,12,OFF-HIGHWAY,SO2,0.6679,0.81178,0.83335,0.86169,0.91438,0.91769,0.93644,0.777508307,0.78565473,0.793801153,0.801947576,0.631710303,0.461473029,0.684563833,0.226201762,0.169459174,0.429001601,0.371513494,0.314025387,0.25653728,0.201512314,0.097582478,0.091462384,0.090644892,0.0898274 +33,NH,14,MISCELLANEOUS,CO,0.31027,1.32162,2.21214,2.79709,3.75783,6.73831,5.56023,0.10037,0.470840826,0.841311653,1.211782479,0.838790781,0.465799082,0.092807383,0.142661294,0.192515204,0.242369115,0.186021237,0.12967336,0.073325482,0.073697046,0.07406861,0.074440174,0.074440174,0.074440174 +33,NH,14,MISCELLANEOUS,NH3,1.50662,1.62931,1.53731,1.61512,1.59342,1.59764,1.537070888,1.356559422,1.362696447,1.368833471,1.374970496,1.299367994,1.223765492,1.148162989,1.238344676,1.328526363,1.41870805,1.146424038,0.874140027,0.601856015,0.822351961,1.042847906,1.263343852,1.263343852,1.263343852 +33,NH,14,MISCELLANEOUS,NOX,0.00724,0.0243,0.04197,0.07288,0.080891,0.1447,0.1194,0.00252,0.010491037,0.018462075,0.026433112,0.019621585,0.012810059,0.005998532,0.007978726,0.00995892,0.011939114,0.010361062,0.00878301,0.007204958,0.005859137,0.004513316,0.003167495,0.003167495,0.003167495 +33,NH,14,MISCELLANEOUS,PM10,35.56786,21.1956,23.42115,23.92225,23.71181,23.95536,24.6354581,26.37672,26.41701177,26.45730354,26.49759531,23.50001333,20.50243135,17.50484937,18.14349873,18.78214809,19.42079745,16.90272317,14.38464889,11.86657462,11.55069683,11.23481905,10.91894126,10.91894126,10.91894126 +33,NH,14,MISCELLANEOUS,PM25,7.01317,4.411,4.89196,5.04484,5.07807,5.334915,4.2377739,1.86453,1.898675567,1.932821135,1.966966702,2.185790134,2.404613565,2.623436997,2.801123219,2.978809441,3.156495662,2.893004816,2.629513969,2.366023123,2.329754713,2.293486302,2.257217892,2.257217892,2.257217892 +33,NH,14,MISCELLANEOUS,SO2,0.0004,0.00068,0.00126,0.00258,0.02126,0.03917,0.03227,,,,0.011027293,0.007541387,0.004055481,0.000569575,0.001481633,0.002393691,0.003305749,0.002482164,0.00165858,0.000834995,0.000836978,0.00083896,0.000840943,0.000840943,0.000840943 +33,NH,14,MISCELLANEOUS,VOC,0.05282,0.07741,0.13492,0.33262,0.196688,0.327694,0.272269,0.01994,0.108159734,0.196379468,0.284599201,0.195825115,0.107051029,0.018276943,0.02038359,0.022490238,0.024596885,0.028360907,0.03212493,0.035888952,0.044511035,0.053133118,0.061755201,0.061755201,0.061755201 +33,NH,15,WILDFIRES,PM10,,,,,,,,0.0028,0.0028,0.0028,,0,0,,0,0,0.000428969,0.000428969,0.000428969,0.019007581,0.019007581,0.019007581,0.065531933,0.065531933,0.065531933 +33,NH,15,WILDFIRES,NH3,,,,,,,,0.00042661,0.00042661,0.00042661,,0,0,,0,0,0.000071193,0.000071193,0.000071193,0.002980051,0.002980051,0.002980051,0.010771319,0.010771319,0.010771319 +33,NH,15,WILDFIRES,SO2,,,,,,,,0.000155032,0.000155032,0.000155032,,0,0,,0,0,0.000027844,0.000027844,0.000027844,0.001569653,0.001569653,0.001569653,0.004458961,0.004458961,0.004458961 +33,NH,15,WILDFIRES,VOC,,,,,,,,0.00682,0.00682,0.00682,,0,0,,0,0,0.00102353,0.00102353,0.00102353,0.042842976,0.042842976,0.042842976,0.154836798,0.154836798,0.154836798 +33,NH,15,WILDFIRES,PM25,,,,,,,,0.00237,0.00237,0.00237,,0,0,,0,0,0.000363533,0.000363533,0.000363533,0.016108156,0.016108156,0.016108156,0.055535623,0.055535623,0.055535623 +33,NH,15,WILDFIRES,NOX,,,,,,,,0.000246616,0.000246616,0.000246616,,0,0,,0,0,0.00004346,0.00004346,0.00004346,0.003158022,0.003158022,0.003158022,0.007387782,0.007387782,0.007387782 +33,NH,15,WILDFIRES,CO,,,,,,,,0.03036,0.03036,0.03036,,0,0,,0,0,0.004357156,0.004357156,0.004357156,0.180772537,0.180772537,0.180772537,0.658164317,0.658164317,0.658164317 +33,NH,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.00860186,0.008619386,0.008636913,0.008654439,0.008201976,0.007749512,0.007297049,0.023497891,0.039698732,0.055899574,0.055899574,0.055899574 +33,NH,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.1236516,0.123903599,0.124155598,0.124407597,0.117903437,0.111399276,0.104895116,0.33778227,0.570669424,0.803556578,0.803556578,0.803556578 +33,NH,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.00436459,0.004419578,0.004474567,0.004529555,0.004368024,0.004206492,0.004044961,0.010996264,0.017947567,0.02489887,0.02489887,0.02489887 +33,NH,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,0.522402,0.523283199,0.524164399,0.525045598,0.497295465,0.469545333,0.4417952,1.430754739,2.419714277,3.408673816,3.408673816,3.408673816 +33,NH,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.0461228,0.046318417,0.046514034,0.046709651,0.044433622,0.042157594,0.039881565,0.123951051,0.208020536,0.292090022,0.292090022,0.292090022 +33,NH,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.0544249,0.054655744,0.054886589,0.055117433,0.052431747,0.049746062,0.047060376,0.146262317,0.245464259,0.3446662,0.3446662,0.3446662 +33,NH,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.00856289,0.008733088,0.008903287,0.009073485,0.008848555,0.008623625,0.008398695,0.020320841,0.032242986,0.044165132,0.044165132,0.044165132 +34,NJ,1,FUEL COMB. ELEC. UTIL.,PM25,5.26632,6.2576,6.63186,6.73835,3.187553,3.718824,3.249382,4.01825972,4.402209182,4.786158644,5.170108106,4.351331749,3.532555393,2.713779036,2.113088217,1.512397398,0.873800879,0.921194712,0.968588545,1.015982378,0.899423685,0.782864993,0.6663063,0.6663063,0.6663063 +34,NJ,1,FUEL COMB. ELEC. UTIL.,SO2,89.94017,61.20229,69.08479,61.77967,51.32533,61.86109,52.171266,51.37798,50.690368,49.987635,57.00362992,46.052781,34.187042,22.7464528,16.46038953,10.17127547,4.879576,4.1109518,3.3423276,2.5737034,2.1939048,1.8141062,1.4343076,0.098447,0.077689 +34,NJ,1,FUEL COMB. ELEC. UTIL.,PM10,5.54417,6.45767,6.90284,6.96541,3.740487,4.28669,3.804963,4.847940562,5.289447333,5.730954104,6.172460876,5.033156684,3.893852492,2.7545483,2.1466654,1.5387825,0.8929956,0.948450233,1.003904867,1.0593595,0.940265,0.8211705,0.702076,0.702076,0.702076 +34,NJ,1,FUEL COMB. ELEC. UTIL.,NOX,112.97887,68.9465,77.93591,72.73854,34.78187,37.218378,34.331043,34.64677,23.46193,20.855779,29.93961298,16.878179,11.495147,11.3254371,9.537289933,7.588755567,6.9625882,6.911301833,6.860015467,6.8087291,5.8279563,4.8471835,3.8664107,1.561512,1.36859 +34,NJ,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01973,0.01512,0.02533,0.098099,0.096922,0.108369,0.1695036,0.146057704,0.122611808,0.099165913,0.147444475,0.195723038,0.2440016,0.252393233,0.260784867,0.2829232,0.341138433,0.399353667,0.4575689,0.4716615,0.4857541,0.4998467,0.4998467,0.4998467 +34,NJ,1,FUEL COMB. ELEC. UTIL.,CO,17.21078,19.60007,20.63085,21.06383,6.02772,3.007126,3.044519,4.51148,4.689870903,4.868261807,5.04665271,4.58272524,4.11879777,3.6548703,3.283132233,2.911394167,3.0101318,2.930660633,2.851189467,2.7717183,2.6253865,2.4790547,2.3327229,2.3327229,2.3327229 +34,NJ,1,FUEL COMB. ELEC. UTIL.,VOC,3.52887,4.14698,4.35732,4.45062,2.64939,1.349711,1.3628,1.12709,1.162822327,1.198554653,1.23428698,0.935066753,0.635846527,0.3366263,0.3081421,0.2796579,0.3024004,0.302134667,0.301868933,0.3016032,0.3144998,0.3273964,0.340293,0.340293,0.340293 +34,NJ,2,FUEL COMB. INDUSTRIAL,NH3,0.59557,0.62855,0.62416,0.60886,0.210495,0.21311,0.214446,0.012279018,0.012279018,0.012279018,0.012279018,0.045779712,0.079280406,0.1127811,0.106190843,0.099600585,0.082669328,0.084691573,0.086713817,0.088736062,0.077235873,0.065735683,0.054235494,0.054235494,0.054235494 +34,NJ,2,FUEL COMB. INDUSTRIAL,VOC,1.57149,1.60293,1.56405,1.50644,8.87862,8.910415,9.116304,1.039859171,0.859911404,0.679963638,0.500015871,0.454108834,0.408201796,0.362294759,0.330843024,0.299391288,0.233355153,0.262635297,0.291915441,0.321195584,0.322389982,0.32358438,0.324778777,0.324778777,0.324778777 +34,NJ,2,FUEL COMB. INDUSTRIAL,SO2,93.62648,85.58957,81.6288,79.02172,22.05522,21.948186,23.145825,2.06628,1.998805,1.93133,1.863855,2.729798433,3.595741866,4.461685299,3.757793663,3.053902028,1.360975192,1.376652123,1.392329054,1.408005984,0.983803846,0.559601708,0.135399569,0.135399569,0.135399569 +34,NJ,2,FUEL COMB. INDUSTRIAL,PM25,6.31536,6.83268,6.45111,6.29129,2.055479,2.08694,2.1465,0.452293917,0.464261843,0.476229769,0.488197695,1.177319064,1.866440434,2.555561804,2.107135611,1.658709419,1.150917045,1.037780356,0.924643667,0.811506978,0.831083202,0.850659426,0.87023565,0.87023565,0.87023565 +34,NJ,2,FUEL COMB. INDUSTRIAL,NOX,51.90469,32.6035,31.46761,30.77333,16.09767,16.149527,16.485997,7.04517,6.867627633,6.690085267,6.5125429,7.111996342,7.711449785,8.310903227,6.919000922,5.527098618,3.332735213,3.471071073,3.609406933,3.747742793,3.271104014,2.794465235,2.317826455,2.317826455,2.317826455 +34,NJ,2,FUEL COMB. INDUSTRIAL,CO,10.11255,10.34164,10.07416,9.88843,4.11687,4.15019,4.245549,1.80348,1.8165217,1.8295634,1.8426051,1.86685968,1.891114259,1.915368839,2.065454903,2.215540968,2.186330332,2.072086068,1.957841804,1.84359754,1.794469716,1.745341892,1.696214068,1.696214068,1.696214068 +34,NJ,2,FUEL COMB. INDUSTRIAL,PM10,9.65187,10.17489,9.59589,9.34019,2.655723,2.678373,2.771227,0.504422989,0.524262307,0.544101626,0.563940944,1.243482166,1.923023389,2.602564611,2.197225224,1.791885837,1.330816851,1.193117159,1.055417468,0.917717776,0.941631228,0.965544681,0.989458133,0.989458133,0.989458133 +34,NJ,3,FUEL COMB. OTHER,PM10,3.95448,12.77095,12.7642,12.55485,14.293025,15.138931,15.197712,10.19973399,10.19305423,10.18637447,10.1796947,8.915174031,7.650653357,6.386132683,6.802586962,7.219041242,6.824917611,6.496470412,6.168023213,5.839576015,5.969886732,6.10019745,6.230508168,6.230508168,6.230508168 +34,NJ,3,FUEL COMB. OTHER,VOC,6.02366,28.72663,28.55533,28.26828,26.437831,28.314908,28.335465,41.80049039,32.66215077,23.52381115,14.38547152,12.6415437,10.89761588,9.153688053,9.505167261,9.856646469,9.54116042,8.71916994,7.89717946,7.07518898,7.033813936,6.992438892,6.951063848,6.951063848,6.951063848 +34,NJ,3,FUEL COMB. OTHER,CO,33.00295,98.02799,97.40865,95.97811,88.281472,94.265682,94.378856,82.05619452,82.06809169,82.07998886,82.09188602,72.86122326,63.6305605,54.39989774,56.98622811,59.57255847,57.1244254,54.54889924,51.97337308,49.39784692,51.03782776,52.6778086,54.31778945,54.31778945,54.31778945 +34,NJ,3,FUEL COMB. OTHER,SO2,34.54057,30.37418,30.6385,25.93595,24.113486,24.470174,24.84941,10.55620804,10.51852357,10.4808391,10.44315464,9.38328139,8.323408142,7.263534893,6.728958916,6.194382939,5.637411629,4.822113946,4.006816263,3.191518581,2.234186729,1.276854877,0.319523025,0.319523025,0.319523025 +34,NJ,3,FUEL COMB. OTHER,NH3,0.53567,0.48849,0.48121,0.42526,0.430822,0.43512,0.439449,0.110071661,0.110071661,0.110071661,0.110071661,0.283675373,0.457279085,0.630882797,0.651321259,0.671759721,0.633323124,0.594230953,0.555138783,0.516046612,0.522582954,0.529119296,0.535655637,0.535655637,0.535655637 +34,NJ,3,FUEL COMB. OTHER,PM25,3.34187,12.17416,12.1598,12.03505,13.92905,14.768606,14.820158,10.07389239,10.06968776,10.06548313,10.06127849,8.810151045,7.559023596,6.307896148,6.728842356,7.149788565,6.761101093,6.419514564,6.077928036,5.736341507,5.869338442,6.002335377,6.135332312,6.135332312,6.135332312 +34,NJ,3,FUEL COMB. OTHER,NOX,83.47922,84.60443,81.45327,74.97751,30.244249,30.697405,31.103901,26.13209,26.05513637,25.97818273,25.9012291,33.46347338,41.02571765,48.58796193,40.33580613,32.08365033,23.22617304,23.73835168,24.25053032,24.76270896,24.05496176,23.34721456,22.63946737,22.63946737,22.63946737 +34,NJ,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,0.018914,0.019444,0.020042,,0,0,,0.001897833,0.003795667,0.0056935,0.004440267,0.003187033,0.0019338,0.001782433,0.001631067,0.0014797,0.0014795,0.0014793,0.0014791,0.0014791,0.0014791 +34,NJ,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,10.99726,10.82455,11.27218,11.58295,3.86669,3.997945,4.146967,0.12696,0.118332867,0.109705733,0.1010786,0.093257033,0.085435467,0.0776139,0.077077133,0.076540367,0.0760036,0.074067133,0.072130667,0.0701942,0.067597133,0.065000067,0.062403,0.062403,0.062403 +34,NJ,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,,,,0.606964,0.627881,0.654888,0.05504256,0.057664262,0.060285963,0.062907665,0.050870042,0.038832418,0.026794795,0.034568097,0.042341398,0.0487839,0.038874933,0.028965967,0.019057,0.0184762,0.0178954,0.0173146,0.0173146,0.0173146 +34,NJ,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,,,,0.575438,0.595223,0.620818,0.035090454,0.040425739,0.045761025,0.05109631,0.042102378,0.033108447,0.024114515,0.032470053,0.040825592,0.04811643,0.03829662,0.02847681,0.018657,0.017557033,0.016457067,0.0153571,0.0153571,0.0153571 +34,NJ,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,2.42026,2.482287,2.555127,1.85837,1.956126267,2.053882533,2.1516388,1.4364543,0.7212698,0.0060853,0.006602333,0.007119367,0.0076364,0.006330367,0.005024333,0.0037183,0.003057967,0.002397633,0.0017373,0.0017373,0.0017373 +34,NJ,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,23.19768,17.10171,16.76672,16.92804,3.26511,3.357101,3.46787,0.51766,0.502077267,0.486494533,0.4709118,0.442867033,0.414822267,0.3867775,0.329866,0.2729545,0.2159496,0.2217592,0.2275688,0.2333784,0.2350326,0.2366868,0.238341,0.238341,0.238341 +34,NJ,4,CHEMICAL & ALLIED PRODUCT MFG,CO,2.07309,2.11453,2.1506,2.16728,1.43957,1.470121,1.505256,0.05117,0.241418933,0.431667867,0.6219168,0.5311443,0.4403718,0.3495993,0.3308827,0.3121661,0.2934495,0.309557767,0.325666033,0.3417743,0.335097067,0.328419833,0.3217426,0.3217426,0.3217426 +34,NJ,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,0.000680233,0.001360467,0.0020407,0.001628767,0.001216833,0.0008049,0.000784533,0.000764167,0.0007438,0.000730633,0.000717467,0.0007043,0.0007043,0.0007043 +34,NJ,5,METALS PROCESSING,CO,0.00135,0.00135,0.00142,0.00138,2.00611,2.103406,2.258405,2.18588,1.7887164,1.3915528,0.9943892,1.028560933,1.062732667,1.0969044,0.9348304,0.7727564,0.6106824,0.7095328,0.8083832,0.9072336,0.8451042,0.7829748,0.7208454,0.7208454,0.7208454 +34,NJ,5,METALS PROCESSING,NOX,0.04607,0.02985,0.03048,0.03044,0.4025,0.416459,0.443526,0.31754,0.292477333,0.267414667,0.242352,0.2221338,0.2019156,0.1816974,0.144901233,0.108105067,0.0713089,0.072927633,0.074546367,0.0761651,0.072435967,0.068706833,0.0649777,0.0649777,0.0649777 +34,NJ,5,METALS PROCESSING,PM25,,,,,0.155035,0.160953,0.171708,0.1661,0.165987556,0.165875112,0.165762668,0.139582693,0.113402719,0.087222745,0.067278837,0.047334929,0.027391022,0.026602481,0.025813941,0.0250254,0.023668433,0.022311467,0.0209545,0.0209545,0.0209545 +34,NJ,5,METALS PROCESSING,VOC,0.28621,0.2855,0.30139,0.29699,0.98047,1.02458,1.089118,0.30103,0.259649233,0.218268467,0.1768877,0.195371333,0.213854967,0.2323386,0.176470567,0.120602533,0.0647345,0.066630333,0.068526167,0.070422,0.066229133,0.062036267,0.0578434,0.0578434,0.0578434 +34,NJ,5,METALS PROCESSING,SO2,,,,,0.06192,0.063742,0.067786,0.03982,0.042352167,0.044884333,0.0474165,0.051577,0.0557375,0.059898,0.0526393,0.0453806,0.0381219,0.0399468,0.0417717,0.0435966,0.042116333,0.040636067,0.0391558,0.0391558,0.0391558 +34,NJ,5,METALS PROCESSING,PM10,,,,,0.161791,0.167926,0.179124,0.175748,0.175087532,0.174427065,0.173766597,0.145703465,0.117640332,0.0895772,0.068995167,0.048413133,0.0278311,0.0270144,0.0261977,0.025381,0.0239055,0.02243,0.0209545,0.0209545,0.0209545 +34,NJ,6,PETROLEUM & RELATED INDUSTRIES,VOC,3.72425,2.1866,2.25758,2.23523,1.12305,1.134556,1.146853,0.30121,0.2880377,0.2748654,0.2616931,0.2224194,0.1831457,0.143872,0.1369851,0.1300982,0.1295882,0.131570333,0.133552467,0.1355346,0.180526167,0.225517733,0.2705093,0.2705093,0.2705093 +34,NJ,6,PETROLEUM & RELATED INDUSTRIES,SO2,1.74654,1.74654,1.82004,1.80571,5.20892,5.226225,5.239243,4.0529,2.797885933,1.542871867,0.2878578,0.2732189,0.25858,0.2439411,0.228016333,0.212091567,0.1955768,0.151149433,0.106722067,0.0622947,0.054342267,0.046389833,0.0384374,0.0384374,0.0384374 +34,NJ,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.36116,0.36116,0.37635,0.3734,0.294749,0.301383,0.308939,0.3172328,0.280784786,0.244336773,0.207888759,0.276180995,0.344473231,0.412765468,0.395887612,0.379009756,0.3629798,0.345540726,0.328101652,0.310662578,0.339782186,0.368901793,0.3980214,0.3980214,0.3980214 +34,NJ,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.63195,0.63195,0.65854,0.65336,0.387286,0.395311,0.40439,0.429349644,0.383722349,0.338095055,0.29246776,0.35062244,0.40877712,0.4669318,0.453027733,0.439123667,0.4230168,0.3980378,0.3730588,0.3480798,0.381698633,0.415317467,0.4489363,0.4489363,0.4489363 +34,NJ,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.26487,0.15892,0.1656,0.16431,2.25364,2.291527,2.33282,1.79556,1.835916333,1.876272667,1.916629,1.7000478,1.4834666,1.2668854,1.227675967,1.188466533,1.1464093,1.074428467,1.002447633,0.9304668,0.938973667,0.947480533,0.9559874,0.9559874,0.9559874 +34,NJ,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0.0069346,0.0138692,0.0208038,0.017276367,0.013748933,0.0101386,0.0079372,0.0057358,0.0035344,0.004625833,0.005717267,0.0068087,0.0068087,0.0068087 +34,NJ,6,PETROLEUM & RELATED INDUSTRIES,CO,5.88529,5.88529,6.13294,6.08468,0.49077,0.4974,0.504502,1.02079,0.9844336,0.9480772,0.9117208,0.8500803,0.7884398,0.7267993,0.639708767,0.552618233,0.4615813,0.411344733,0.361108167,0.3108716,0.323740833,0.336610067,0.3494793,0.3494793,0.3494793 +34,NJ,7,OTHER INDUSTRIAL PROCESSES,PM10,3.01982,4.48505,4.75503,5.51547,5.528607,5.848247,8.254237201,6.877710322,6.825001883,6.772293444,6.719585004,6.710875364,6.702165723,6.693456082,6.306133279,5.918810476,5.528940873,5.541914929,5.554888984,5.56786304,6.262148742,6.956434444,7.650720146,7.650720146,7.650720146 +34,NJ,7,OTHER INDUSTRIAL PROCESSES,VOC,27.1053,26.45046,27.25386,27.4171,6.29911,6.503021,6.989634537,7.721225642,7.654203235,7.587180829,7.520158422,6.412066933,5.303975445,4.195883956,4.021839552,3.847795148,3.680113244,3.721199354,3.762285463,3.803371572,3.906065514,4.008759456,4.111453398,4.111453398,4.111453398 +34,NJ,7,OTHER INDUSTRIAL PROCESSES,PM25,0.71083,0.99537,1.05316,1.20585,1.409326,1.483907,3.710731547,3.775319975,3.7319066,3.688493225,3.64507985,3.586339502,3.527599154,3.468858806,3.402557836,3.336256865,3.267572094,3.36740173,3.467231365,3.567061001,4.042235682,4.517410363,4.992585044,4.992585044,4.992585044 +34,NJ,7,OTHER INDUSTRIAL PROCESSES,NOX,5.1153,4.97877,5.10984,5.11233,1.11705,1.157323,1.197409,5.42628,5.256768717,5.087257433,4.91774615,3.838678167,2.759610183,1.6805422,1.604260033,1.527977867,1.4532274,1.369417357,1.285607313,1.20179727,1.027171106,0.852544942,0.677918779,0.677918779,0.677918779 +34,NJ,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.009926,0.010236,0.010496,1.525378785,1.52146057,1.517542355,1.51362414,1.56324566,1.61286718,1.6624887,1.326157133,0.989825567,0.6535257,0.625563233,0.597600767,0.5696383,0.538867167,0.508096033,0.4773249,0.4773249,0.4773249 +34,NJ,7,OTHER INDUSTRIAL PROCESSES,CO,0.00216,0.00193,0.00204,0.0021,0.69956,0.723578,1.658154412,1.29976,1.718101983,2.136443967,2.55478595,2.248537848,1.942289745,1.636041643,1.597763104,1.559484566,1.526219127,3.686463533,5.846707938,8.006952344,6.769077103,5.531201862,4.293326621,4.293326621,4.293326621 +34,NJ,7,OTHER INDUSTRIAL PROCESSES,SO2,0.3011,0.2767,0.28788,0.28975,0.62947,0.649414,0.671887,1.64319,1.8236397,2.0040894,2.1845391,1.771234767,1.357930433,0.9446261,0.7667753,0.5889245,0.4116987,0.354433533,0.297168367,0.2399032,0.226197233,0.212491267,0.1987853,0.1987853,0.1987853 +34,NJ,8,SOLVENT UTILIZATION,CO,,,,,0.30971,0.318799,0.32987,0.04945,0.048080967,0.046711933,0.0453429,0.0407531,0.0361633,0.0315735,0.0330978,0.0346221,0.0364176,0.0303276,0.0242376,0.0181476,0.0182683,0.018389,0.0185097,0.0185097,0.0185097 +34,NJ,8,SOLVENT UTILIZATION,VOC,167.57169,153.43078,157.7758,149.52243,109.96732,108.235512,111.200668,89.11670938,88.99729458,88.87787978,88.75846498,81.74104455,74.72362412,67.70620369,65.8378731,63.96954251,62.10251782,61.62118325,61.13984869,60.65851412,59.38173317,58.10495222,56.82817127,56.82817127,56.82817127 +34,NJ,8,SOLVENT UTILIZATION,SO2,,,,,0.14221,0.147022,0.153165,0.00027,0.00026,0.00025,0.00024,0.000185267,0.000130533,0.0000758,8.73E-05,9.87E-05,0.0001114,0.000101433,9.15E-05,0.0000815,7.79E-05,7.44E-05,0.0000708,0.0000708,0.0000708 +34,NJ,8,SOLVENT UTILIZATION,PM25,,,,,0.11071,0.114267,0.118559,0.0527,0.049648772,0.046597545,0.043546317,0.033606304,0.023666291,0.013726278,0.01234698,0.010967681,0.009603883,0.009579378,0.009554873,0.009530368,0.008434779,0.007339189,0.0062436,0.0062436,0.0062436 +34,NJ,8,SOLVENT UTILIZATION,PM10,,,,,0.11071,0.114267,0.118559,0.068136664,0.060609731,0.053082799,0.045555866,0.034962311,0.024368755,0.0137752,0.012556167,0.011337133,0.0101336,0.010115133,0.010096667,0.0100782,0.0092918,0.0085054,0.007719,0.007719,0.007719 +34,NJ,8,SOLVENT UTILIZATION,NH3,,,,,0.00286,0.002954,0.003026,,0,0,,0.002159033,0.004318067,0.0064771,0.006712933,0.006948767,0.0071911,0.006942733,0.006694367,0.006446,0.0063045,0.006163,0.0060215,0.0060215,0.0060215 +34,NJ,8,SOLVENT UTILIZATION,NOX,,,,,0.45203,0.465668,0.481962,0.06817,0.0634039,0.0586378,0.0538717,0.045388333,0.036904967,0.0284216,0.0280085,0.0275954,0.0275052,0.0264874,0.0254696,0.0244518,0.023821867,0.023191933,0.022562,0.022562,0.022562 +34,NJ,9,STORAGE & TRANSPORT,CO,,,,,0.22701,0.237261,0.243488,0.28949,0.2075517,0.1256134,0.0436751,0.040445533,0.037215967,0.0339864,0.025219333,0.016452267,0.0082404,0.007484967,0.006729533,0.0059741,0.005982233,0.005990367,0.0059985,0.0059985,0.0059985 +34,NJ,9,STORAGE & TRANSPORT,VOC,39.4262,28.06403,29.23115,29.27705,11.4628,11.288448,11.389221,21.45782332,21.41364352,21.36946372,21.32528392,22.66041106,23.9955382,25.33066533,24.32876449,23.32686365,18.07768493,17.58758423,17.09748353,16.60738282,16.23061525,15.85384768,15.4770801,15.4770801,15.4770801 +34,NJ,9,STORAGE & TRANSPORT,SO2,,,,,0.360147,0.67211,0.591015,0.04482,0.032056633,0.019293267,0.0065299,0.005086467,0.003643033,0.0021996,0.002037767,0.001875933,0.0017181,0.001820967,0.001923833,0.0020267,0.002037033,0.002047367,0.0020577,0.0020577,0.0020577 +34,NJ,9,STORAGE & TRANSPORT,PM25,,,,,0.257881,0.281856,0.281881,0.081705862,0.073277685,0.064849508,0.056421332,0.050915932,0.045410533,0.039905134,0.035492334,0.031079533,0.029322533,0.02381412,0.018305707,0.012797294,0.016930729,0.021064165,0.0251976,0.0251976,0.0251976 +34,NJ,9,STORAGE & TRANSPORT,PM10,,,,,0.264456,0.291847,0.288758,0.148436694,0.138734061,0.129031429,0.119328797,0.097082432,0.074836066,0.0525897,0.044740167,0.036890633,0.0316099,0.026283833,0.020957767,0.0156317,0.019504467,0.023377233,0.02725,0.02725,0.02725 +34,NJ,9,STORAGE & TRANSPORT,NH3,,,,,0.001973,0.002527,0.002735,,0,0,,0.002135133,0.004270267,0.0064054,0.005691867,0.004978333,0.0042748,0.003996067,0.003717333,0.0034386,0.002397833,0.001357067,0.0003163,0.0003163,0.0003163 +34,NJ,9,STORAGE & TRANSPORT,NOX,0.04431,0.03929,0.04101,0.04169,1.676534,1.92534,1.743681,0.4805,0.443218233,0.405936467,0.3686547,0.2618195,0.1549843,0.0481491,0.0399065,0.0316639,0.0241321,0.020727767,0.017323433,0.0139191,0.0148662,0.0158133,0.0167604,0.0167604,0.0167604 +34,NJ,10,WASTE DISPOSAL & RECYCLING,VOC,73.91093,24.36042,24.999,25.16043,25.60078,22.460699,22.922418,2.058150383,2.050940349,2.043730316,2.036520283,1.711335965,1.386151647,1.06096733,0.968628423,0.876289517,0.782632711,1.21923604,1.65583937,2.0924427,2.090849935,2.089257171,2.087664406,2.087664406,2.087664406 +34,NJ,10,WASTE DISPOSAL & RECYCLING,SO2,2.59108,3.05638,3.15323,3.23797,2.77889,2.831185,2.89206,0.311640113,0.636893766,0.962147418,1.287401071,1.007251638,0.727102206,0.446952773,0.47601844,0.505084106,0.534149773,0.562937873,0.591725973,0.620514073,0.597891931,0.57526979,0.552647648,0.552647648,0.552647648 +34,NJ,10,WASTE DISPOSAL & RECYCLING,PM25,4.47412,8.34746,8.85761,8.85189,9.715082,4.65013,4.707349,0.222998474,0.238319451,0.253640428,0.268961404,0.386633053,0.504304701,0.62197635,0.689344087,0.756711824,0.824069562,0.634056142,0.444042723,0.254029304,0.232139101,0.210248898,0.188358695,0.188358695,0.188358695 +34,NJ,10,WASTE DISPOSAL & RECYCLING,PM10,5.58441,9.39021,9.94374,9.96842,10.87583,5.832424,5.912586,0.294961537,0.327302646,0.359643756,0.391984866,0.506752126,0.621519386,0.736286646,0.770976179,0.805665713,0.840345246,0.653444546,0.466543846,0.279643146,0.258610672,0.237578199,0.216545725,0.216545725,0.216545725 +34,NJ,10,WASTE DISPOSAL & RECYCLING,NOX,1.29507,3.2481,3.36949,3.37367,3.70192,2.214942,2.252723,1.715823515,3.067202432,4.418581349,5.769960266,4.873219483,3.976478701,3.079737918,2.805461607,2.531185297,2.256858986,2.204337216,2.151815446,2.099293676,2.148315109,2.197336541,2.246357974,2.246357974,2.246357974 +34,NJ,10,WASTE DISPOSAL & RECYCLING,NH3,2.67347,3.252,3.26093,3.32531,3.37758,3.414789,3.479507,1.474752239,1.474752239,1.474752239,1.474752239,1.47856006,1.482367882,1.486175703,1.032683881,0.579192058,0.128983053,0.186726829,0.244470604,0.30221438,0.310715298,0.319216215,0.327717133,0.327717133,0.327717133 +34,NJ,10,WASTE DISPOSAL & RECYCLING,CO,1.7325,53.80468,57.48984,56.65804,60.32033,9.327213,9.339074,0.893690201,0.89464512,0.895600038,0.896554956,1.88177385,2.866992745,3.85221164,2.84283455,1.833457461,0.824080371,0.799588416,0.77509646,0.750604505,0.731643825,0.712683144,0.693722464,0.693722464,0.693722464 +34,NJ,11,HIGHWAY VEHICLES,CO,2622.59472,1677.73277,1631.58206,1590.02988,1491.86835,1636.08044,1541.91536,1081.068537,1011.870069,942.6716013,873.4731334,765.835694,658.1982547,589.8126747,562.8204616,551.7459579,455.6831209,432.628174,409.5732272,386.5182804,368.9933078,384.0829146,380.3227578,303.6558753,283.020606 +34,NJ,11,HIGHWAY VEHICLES,VOC,248.80015,142.54953,136.12217,132.20447,125.4754,125.83184,117.45675,85.76939279,81.81204966,77.85470653,73.89736341,69.66511516,65.43286691,54.06913798,52.49283335,49.53057904,41.29430846,37.94090312,34.58749779,31.23409245,28.85618692,30.77863648,29.6944561,21.08946518,19.0864917 +34,NJ,11,HIGHWAY VEHICLES,NOX,249.90178,201.88169,203.12918,199.07665,192.7663,192.80041,179.30027,188.599281,176.8184703,165.0376597,153.256849,143.6251451,133.9934412,117.2076742,111.7883095,98.89433499,80.69887178,77.61040981,74.52194784,71.43348587,63.67911437,67.67296136,60.68052141,42.85281942,37.197162 +34,NJ,11,HIGHWAY VEHICLES,NH3,4.41542,5.98273,6.6721,6.39866,6.56155,6.81749,6.99924,3.947270018,3.831063913,3.714857808,3.598651703,3.537554418,3.476457132,3.164180315,3.266987539,2.772349262,2.484403345,2.347978388,2.21155343,2.075128473,2.007959488,2.240352078,2.172557987,1.786419704,1.74372303 +34,NJ,11,HIGHWAY VEHICLES,PM10,9.1495,6.40063,6.14076,5.76978,5.46071,4.99285,4.76583,8.288923154,8.164766908,8.040610662,7.916454417,7.738788161,7.561121904,6.814182994,6.329179303,5.731813373,7.539877159,6.940408786,6.340940413,5.741472039,5.507189647,4.825301737,4.638902209,4.807610199,4.645074126 +34,NJ,11,HIGHWAY VEHICLES,SO2,12.26188,7.19927,7.36833,7.41915,7.53518,4.11676,4.19268,4.239932075,3.854930562,3.469929048,3.084927534,1.988796725,0.892665916,0.856539161,0.826652167,0.82620683,0.739626641,0.734888467,0.730150293,0.725412119,0.767916437,0.774257683,0.721263326,0.308963463,0.229508836 +34,NJ,11,HIGHWAY VEHICLES,PM25,7.51878,5.01021,4.75148,4.41883,4.1206,3.65457,3.43383,6.480678722,6.335212283,6.189745845,6.044279407,5.778648788,5.51301817,4.863235238,4.493057782,3.918106857,3.220130743,3.058467924,2.896805106,2.735142287,2.47897878,2.297715218,2.055117116,1.871397596,1.726741294 +34,NJ,12,OFF-HIGHWAY,NH3,0.67727,0.83532,0.85375,0.87852,0.07262,0.07262,0.07262,0.05203686,0.052589974,0.053143089,0.053696203,0.053022428,0.052348654,0.049387923,0.05376673,0.054510638,0.0487133,0.050083939,0.051454579,0.052825219,0.05276867,0.045922168,0.052655571,0.05259285,0.052530128 +34,NJ,12,OFF-HIGHWAY,NOX,47.39018,53.99164,55.17362,55.6792,57.29602,56.86647,56.82721,90.41282238,84.56167777,78.71053317,72.85938857,65.27793276,57.69647696,52.70627903,57.23028683,55.62885324,48.9772775,47.48855711,45.99983672,44.51111633,44.09058124,47.72240454,43.24951105,42.67947717,42.10944328 +34,NJ,12,OFF-HIGHWAY,PM10,5.40044,5.88395,5.85556,5.81173,5.80272,5.71051,5.65107,6.955688794,6.483109704,6.010530613,5.537951523,5.181103037,4.824254551,4.303618746,4.601909,4.102349976,3.842250984,3.683913783,3.525576582,3.367239382,3.15619548,2.923755344,2.734107676,2.656562484,2.579017293 +34,NJ,12,OFF-HIGHWAY,PM25,4.9501,5.40023,5.37443,5.33533,5.32641,5.24156,5.18686,6.494779204,6.068761321,5.642743437,5.216725554,4.868483622,4.52024169,3.980584809,4.253572594,3.789116639,3.628621667,3.480130554,3.331639442,3.183148329,2.983625458,2.766489467,2.584579716,2.509443111,2.434306505 +34,NJ,12,OFF-HIGHWAY,SO2,4.73145,5.68359,5.86247,6.06,6.23761,6.25548,6.34626,21.32652015,18.69312994,16.05973973,13.42634952,12.27117581,11.1160021,7.334504491,10.74063318,4.804551239,4.096081181,3.409669151,2.723257122,2.036845092,1.686465554,1.002374877,0.985706479,1.021829814,1.057953149 +34,NJ,12,OFF-HIGHWAY,VOC,70.68616,79.76644,73.90898,71.22703,70.73955,70.05294,69.27447,80.86692095,77.70198532,74.53704969,71.37211405,67.93393123,64.49574841,61.33511356,57.76129411,55.80060922,40.25136868,37.38909858,34.52682848,31.66455838,29.91027465,27.91229433,26.40170718,25.7505976,25.09948801 +34,NJ,12,OFF-HIGHWAY,CO,617.44387,712.32491,691.93629,693.11936,700.96918,709.17343,724.64718,651.652527,621.9214932,592.1904595,562.4594257,529.3064548,496.153484,497.7137715,452.0953489,442.0596779,395.5310282,385.7422432,375.9534582,366.1646732,348.8849598,315.4580401,314.3255328,314.6915116,315.0574903 +34,NJ,14,MISCELLANEOUS,PM25,49.05539,24.47214,29.87269,24.541,28.66841,27.166892,14.6347348,1.740101499,1.926222825,2.112344151,2.298465477,2.157881543,2.017297609,1.876713674,3.111601147,4.34648862,5.581376092,5.599920216,5.61846434,5.637008463,5.220267094,4.803525724,4.386784354,4.386784354,4.386784354 +34,NJ,14,MISCELLANEOUS,NOX,0.61961,0.05176,0.14255,0.0547,0.68164,0.1008,0.18805,0.01354,0.050470665,0.087401331,0.124331996,0.099876896,0.075421795,0.050966695,0.048543073,0.046119451,0.043695829,0.077622848,0.111549868,0.145476888,0.15043624,0.155395592,0.160354944,0.160354944,0.160354944 +34,NJ,14,MISCELLANEOUS,NH3,2.92239,4.53771,3.81078,3.95689,4.68317,4.49116,5.129871788,3.835306225,3.869681133,3.904056041,3.938430948,6.757597589,9.57676423,12.39593087,9.500894265,6.605857659,3.710821054,6.098571494,8.486321935,10.87407238,8.084993343,5.29591431,2.506835278,2.506835278,2.506835278 +34,NJ,14,MISCELLANEOUS,CO,21.18975,2.26415,5.55675,2.25511,31.72545,4.65066,8.71896,2.21667,4.301046234,6.385422469,8.469798703,6.402081914,4.334365125,2.266648336,2.247562644,2.228476952,2.209391259,2.169966631,2.130542003,2.091117374,2.371599052,2.652080729,2.932562407,2.932562407,2.932562407 +34,NJ,14,MISCELLANEOUS,PM10,215.98187,108.20307,127.9421,106.96587,117.61646,117.793703,88.5775466,43.35345,43.57307316,43.79269633,44.01231949,42.50497757,40.99763565,39.49029373,33.79371697,28.0971402,22.40056343,22.56764219,22.73472094,22.90179969,22.09309921,21.28439872,20.47569823,20.47569823,20.47569823 +34,NJ,14,MISCELLANEOUS,VOC,2.79286,0.49546,0.92325,0.52639,1.56645,0.29098,0.48244,0.32314,0.817279293,1.311418586,1.80555788,1.328590632,0.851623385,0.374656137,0.372318575,0.369981013,0.367643451,0.375572453,0.383501456,0.391430458,0.461005571,0.530580684,0.600155797,0.600155797,0.600155797 +34,NJ,14,MISCELLANEOUS,SO2,0.01535,0.00111,0.00448,0.00133,0.18346,0.02424,0.04819,0.00018,0.018440102,0.036700203,0.054960305,0.037934392,0.02090848,0.003882567,0.004003291,0.004124015,0.00424474,0.017342805,0.030440871,0.043538936,0.047149963,0.050760991,0.054372018,0.054372018,0.054372018 +34,NJ,15,WILDFIRES,VOC,,,,,,,,0.063440772,0.063440772,0.063440772,0.000165497,0.000165497,0.000165497,2.316736,2.316736,2.316736,0.575947777,0.575947777,0.575947777,11.3058876,11.3058876,11.3058876,1.679424661,1.679424661,1.679424661 +34,NJ,15,WILDFIRES,CO,,,,,,,,0.283675143,0.283675143,0.283675143,0.000690172,0.000690172,0.000690172,9.909189,9.909189,9.909189,2.459302299,2.459302299,2.459302299,48.21898396,48.21898396,48.21898396,7.138362372,7.138362372,7.138362372 +34,NJ,15,WILDFIRES,NH3,,,,,,,,0.004323869,0.004323869,0.004323869,1.15E-05,1.15E-05,1.15E-05,0.16116412,0.16116412,0.16116412,0.040065899,0.040065899,0.040065899,0.786496315,0.786496315,0.786496315,0.116826568,0.116826568,0.116826568 +34,NJ,15,WILDFIRES,NOX,,,,,,,,0.002548091,0.002548091,0.002548091,1.90E-05,1.90E-05,1.90E-05,0.05945748,0.05945748,0.05945748,0.018237628,0.018237628,0.018237628,0.405573208,0.405573208,0.405573208,0.080435537,0.080435537,0.080435537 +34,NJ,15,WILDFIRES,PM10,,,,,,,,0.026890508,0.026890508,0.026890508,7.87E-05,7.87E-05,7.87E-05,0.9404009,0.9404009,0.9404009,0.236501862,0.236501862,0.236501862,4.679892842,4.679892842,4.679892842,0.71102707,0.71102707,0.71102707 +34,NJ,15,WILDFIRES,PM25,,,,,,,,0.022740431,0.022740431,0.022740431,6.67E-05,6.67E-05,6.67E-05,0.7969503,0.7969503,0.7969503,0.200425826,0.200425826,0.200425826,3.966010543,3.966010543,3.966010543,0.602565451,0.602565451,0.602565451 +34,NJ,15,WILDFIRES,SO2,,,,,,,,0.001604156,0.001604156,0.001604156,8.10E-06,8.10E-06,8.10E-06,0.05130362,0.05130362,0.05130362,0.013795775,0.013795775,0.013795775,0.285195124,0.285195124,0.285195124,0.0484554,0.0484554,0.0484554 +34,NJ,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.6756354,1.605124133,2.534612867,3.4641016,5.492149988,7.520198375,9.548246763,7.702217044,5.856187326,4.010157607,4.010157607,4.010157607 +34,NJ,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.089868595,0.089049031,0.088229466,0.087409902,0.14023741,0.193064918,0.245892426,0.209849991,0.173807557,0.137765122,0.137765122,0.137765122 +34,NJ,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.0443599,0.109900253,0.175440607,0.24098096,0.382062436,0.523143912,0.664225387,0.535806255,0.407387123,0.278967991,0.278967991,0.278967991 +34,NJ,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.818952,0.951046887,1.083141773,1.21523666,1.930340351,2.645444043,3.360547734,2.736187459,2.111827183,1.487466907,1.487466907,1.487466907 +34,NJ,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,9.8137796,11.46721783,13.12065607,14.7740943,23.41696015,32.05982599,40.70269184,32.78752146,24.87235109,16.95718071,16.95718071,16.95718071 +34,NJ,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.955444,1.114955797,1.274467593,1.43397939,2.277802002,3.121624615,3.965447227,3.22870215,2.491957073,1.755211996,1.755211996,1.755211996 +34,NJ,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.545968,0.405430432,0.264892863,0.124355295,0.202638506,0.280921717,0.359204927,0.327858624,0.296512321,0.265166018,0.265166018,0.265166018 +35,NM,1,FUEL COMB. ELEC. UTIL.,SO2,64.10962,80.7874,85.04103,83.85166,73.89095,69.154037,62.550988,51.11408942,50.841953,38.361459,30.75854537,31.1551,26.661379,11.84484952,9.899221236,7.953592955,6.007986012,5.957652818,5.907319625,5.856986431,5.662288037,5.467589644,5.272891251,3.663262,4.17228 +35,NM,1,FUEL COMB. ELEC. UTIL.,NH3,,0.05289,0.05773,0.06215,0.056969,0.061767,0.060812,0.0100425,0.009447035,0.008851569,0.008256104,0.076577531,0.144898957,0.213220384,0.203887812,0.194555241,0.185222669,0.212665579,0.240108489,0.267551399,0.23932129,0.21109118,0.182861071,0.182861071,0.182861071 +35,NM,1,FUEL COMB. ELEC. UTIL.,CO,5.10455,6.45559,6.74919,6.90756,6.79688,6.185378,6.113677,5.963315327,5.942477061,5.921638794,5.900800527,9.331791651,12.76278277,16.1937739,16.53263727,16.87150064,17.21134005,14.92866862,12.64599719,10.36332577,9.29014111,8.216956455,7.1437718,7.1437718,7.1437718 +35,NM,1,FUEL COMB. ELEC. UTIL.,NOX,95.59151,87.91165,91.26561,92.19622,86.55536,88.877443,85.808436,80.25498016,77.20926,74.182318,76.45764094,78.089279,71.304116,29.00909599,27.10102306,25.19295013,23.28555077,22.72706873,22.1685867,21.61010466,21.26383062,20.91755658,20.57128254,16.139102,14.771425 +35,NM,1,FUEL COMB. ELEC. UTIL.,PM10,7.67405,9.26766,9.85785,9.40749,12.629596,12.762023,11.486078,8.031703726,8.146832066,8.261960406,8.377088746,5.832406626,3.287724507,0.743042387,0.666214854,0.58938732,0.512550998,0.493865985,0.475180972,0.456495959,1.116763678,1.777031397,2.437299116,2.437299116,2.437299116 +35,NM,1,FUEL COMB. ELEC. UTIL.,VOC,0.56639,0.72061,0.75551,0.77197,0.66165,0.740694,0.731439,1.176003411,1.175111293,1.174219176,1.173327058,0.881987769,0.590648479,0.29930919,0.300782353,0.302255515,0.303688622,0.305620191,0.307551759,0.309483327,0.318852694,0.328222061,0.337591429,0.337591429,0.337591429 +35,NM,1,FUEL COMB. ELEC. UTIL.,PM25,3.53927,4.21899,4.50877,4.48744,7.768776,7.85317,8.081743,5.568630492,5.611414045,5.654197597,5.69698115,4.031587959,2.366194769,0.700801578,0.635464914,0.570128251,0.504728436,0.486589129,0.468449823,0.450310517,0.949898701,1.449486886,1.94907507,1.94907507,1.94907507 +35,NM,2,FUEL COMB. INDUSTRIAL,SO2,19.15449,34.38905,34.22505,33.84351,25.81324,27.127559,28.106162,11.86361678,8.698018315,5.532419846,2.366821377,3.942347851,5.517874325,7.0934008,7.584975018,8.076549237,8.568118456,7.261026219,5.953933983,4.646841746,4.33968062,4.032519495,3.725358369,3.725358369,3.725358369 +35,NM,2,FUEL COMB. INDUSTRIAL,VOC,6.59469,10.13837,10.02154,9.89229,7.76424,7.816797,7.761404,7.605329471,6.480924432,5.356519393,4.232114354,4.051650196,3.871186037,3.690721879,3.493601279,3.296480678,3.099455078,3.01567993,2.931904782,2.848129634,2.91610544,2.984081246,3.052057051,3.052057051,3.052057051 +35,NM,2,FUEL COMB. INDUSTRIAL,PM25,2.52612,0.61709,0.60872,0.60108,1.119176,1.159302,1.18135,1.549593407,1.14321913,0.736844853,0.330470576,0.386251579,0.442032582,0.497813586,0.545089947,0.592366308,0.639737842,0.619994068,0.600250294,0.58050652,0.618628514,0.656750507,0.6948725,0.6948725,0.6948725 +35,NM,2,FUEL COMB. INDUSTRIAL,PM10,2.81196,0.90132,0.87741,0.86245,1.363083,1.429304,1.467429,1.948404104,1.484279754,1.020155404,0.556031054,0.557053083,0.558075113,0.559097143,0.692960313,0.826823483,0.960781653,0.931196082,0.90161051,0.872024939,0.94033789,1.008650842,1.076963793,1.076963793,1.076963793 +35,NM,2,FUEL COMB. INDUSTRIAL,NOX,90.26762,120.35684,118.06137,116.25036,91.6985,92.863183,92.671428,58.39152874,51.9859379,45.58034706,39.17475622,34.84136908,30.50798195,26.17459481,25.60324435,25.03189388,24.46167041,23.58207398,22.70247754,21.82288111,22.25128483,22.67968854,23.10809226,23.10809226,23.10809226 +35,NM,2,FUEL COMB. INDUSTRIAL,NH3,0.09657,0.10067,0.09928,0.09799,0.093809,0.098649,0.102517,0.041646481,0.034109814,0.026573148,0.019036481,0.035592521,0.05214856,0.0687046,0.068761271,0.068817941,0.070394612,0.127092502,0.183790393,0.240488283,0.258194851,0.27590142,0.293607988,0.293607988,0.293607988 +35,NM,2,FUEL COMB. INDUSTRIAL,CO,20.69888,43.68408,43.21076,42.6634,33.59559,33.878349,33.642013,30.72590644,26.78575508,22.84560372,18.90545236,17.72458149,16.54371062,15.36283975,14.5268666,13.69089344,12.85590528,12.44786909,12.0398329,11.6317967,12.06503975,12.4982828,12.93152585,12.93152585,12.93152585 +35,NM,3,FUEL COMB. OTHER,CO,44.04318,13.56387,13.5334,13.46985,14.004895,14.915408,14.946816,13.50618771,13.51574838,13.52530905,13.53486973,14.11031409,14.68575846,15.26120282,15.52809705,15.79499128,15.12799898,14.7322073,14.33641561,13.94062393,18.38301242,22.8254009,27.26778939,27.26778939,27.26778939 +35,NM,3,FUEL COMB. OTHER,VOC,8.23604,4.97556,4.98401,4.98591,5.099831,5.441972,5.452641,4.389420098,3.866120832,3.342821565,2.819522298,2.77348274,2.727443183,2.681403625,2.703747466,2.726091307,2.624242577,2.452297964,2.280353351,2.108408738,2.718513907,3.328619077,3.938724246,3.938724246,3.938724246 +35,NM,3,FUEL COMB. OTHER,SO2,1.72036,0.91236,0.91509,0.77304,0.687609,0.700891,0.712508,0.458939389,0.458326054,0.457712718,0.457099383,0.330817643,0.204535902,0.078254161,0.079504683,0.080755204,0.091136788,0.08297411,0.074811433,0.066648755,0.085865815,0.105082875,0.124299935,0.124299935,0.124299935 +35,NM,3,FUEL COMB. OTHER,PM25,5.83936,1.73761,1.73349,1.72441,2.066039,2.194635,2.205977,1.721159019,1.722867798,1.724576577,1.726285356,1.865689429,2.005093501,2.144497574,2.248325219,2.352152864,2.291087237,2.159848204,2.028609172,1.897370139,2.506638091,3.115906043,3.725173995,3.725173995,3.725173995 +35,NM,3,FUEL COMB. OTHER,PM10,5.87797,1.75302,1.74913,1.73738,2.081743,2.210696,2.222423,1.793845936,1.795648628,1.797451319,1.799254011,1.919581615,2.039909219,2.160236824,2.277461071,2.394685319,2.346884074,2.209567371,2.072250667,1.934933964,2.545876806,3.156819648,3.767762489,3.767762489,3.767762489 +35,NM,3,FUEL COMB. OTHER,NOX,5.26,5.52985,5.39533,5.06588,4.985617,5.123752,5.209345,4.799318283,4.806542539,4.813766795,4.820991052,4.030563549,3.240136047,2.449708544,2.49442166,2.539134776,2.606125389,2.928168834,3.250212278,3.572255722,3.615523314,3.658790905,3.702058496,3.702058496,3.702058496 +35,NM,3,FUEL COMB. OTHER,NH3,0.0467,0.03513,0.0346,0.03082,0.033256,0.034485,0.035336,0.015098947,0.015092781,0.015086614,0.015080447,0.152466118,0.289851789,0.427237459,0.435498691,0.443759924,0.440158422,0.43508847,0.430018518,0.424948566,0.460760777,0.496572987,0.532385198,0.532385198,0.532385198 +35,NM,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.11056,0.05404,0.05698,0.05677,0.10612,0.108078,0.111209,0.01382427,0.009540936,0.005257603,0.00097427,0.000649513,0.000324757,,0,0,0,0,0,,0,0,0,0,0 +35,NM,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.0023,0.0071,0.0071,0.0071,0.0035,0.003441,0.003374,0.359355791,0.335380512,0.311405234,0.287429955,0.192630462,0.097830968,0.003031475,0.00215575,0.001280025,0,0,0,,0,0,0,0,0 +35,NM,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.08161,0.00466,0.00492,0.00489,0.080956,0.082831,0.085838,0.01322427,0.009140936,0.005057603,0.00097427,0.000649513,0.000324757,,0,0,0,0,0,,0,0,0,0,0 +35,NM,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.0214,0.0022,0.0022,0.0022,,,,0.0417,0.036384469,0.031068937,0.025753406,0.017360107,0.008966809,0.00057351,0.00038234,0.00019117,0,0.00031077,0.00062154,0.00093231,0.000632673,0.000333037,0.0000334,0.0000334,0.0000334 +35,NM,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +35,NM,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.0326,0.0079,0.0079,0.0079,,,,0.0129,0.009833333,0.006766667,0.0037,0.002466667,0.001233333,,0,0,0,0,0,,0,0,0,0,0 +35,NM,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,14.445,3.8604,4.07098,4.05539,4.303,4.453605,4.737603,0.0101,0.009766667,0.009433333,0.0091,0.006066667,0.003033333,,0,0,0,0,0,,0,0,0,0,0 +35,NM,5,METALS PROCESSING,PM10,2.21103,1.55124,1.6217,1.60854,1.239258,1.287415,1.371577,0.052136828,0.037524251,0.022911673,0.008299095,0.005742483,0.003185871,0.000629259,0.000419506,0.000209753,0,0.250243117,0.500486233,0.75072935,0.738732576,0.726735803,0.714739029,0.714739029,0.714739029 +35,NM,5,METALS PROCESSING,VOC,0.0001,0.07131,0.07217,0.07131,0.07364,0.075208,0.079924,0.08930974,0.08914816,0.08898658,0.088825,0.059247016,0.029669031,9.10E-05,0.000532031,0.000973016,0.001414,0.001232667,0.001051333,0.00087,0.000886,0.000902,0.000918,0.000918,0.000918 +35,NM,5,METALS PROCESSING,PM25,1.82839,0.98784,1.02777,1.01696,0.910673,0.945193,1.006812,0.044024996,0.031853343,0.01968169,0.007510037,0.005044672,0.002579307,0.000113943,7.60E-05,3.80E-05,0,0.025242313,0.050484625,0.075726938,0.0743894,0.073051861,0.071714323,0.071714323,0.071714323 +35,NM,5,METALS PROCESSING,NOX,0.01652,0.06751,0.07108,0.07081,0.07753,0.080149,0.085256,0.046019607,0.033393495,0.020767384,0.008141272,0.008857551,0.009573831,0.01029011,0.012441323,0.014592537,0.01674375,0.012104213,0.007464677,0.00282514,0.002510093,0.002195047,0.00188,0.00188,0.00188 +35,NM,5,METALS PROCESSING,NH3,,0.00001,0.00001,0.00001,0.000041,0.000042,0.000046,0.000000956,0.000000956,0.000000956,0.000000956,6.37E-07,3.19E-07,,0,0,0,0.000125,0.00025,0.000375,0.000483333,0.000591667,0.0007,0.0007,0.0007 +35,NM,5,METALS PROCESSING,CO,0.0143,0.00602,0.00633,0.00632,0.02298,0.023768,0.025284,0.0087842,0.005950467,0.003116733,0.000283,0.000247317,0.000211634,0.00017595,0.0001173,5.87E-05,0,0,0,,0,0,0,0,0 +35,NM,5,METALS PROCESSING,SO2,50.4623,43.03996,45.38778,45.21389,30.39651,31.460372,33.466541,0.272251894,0.181501263,0.090750631,,3.97E-06,7.94E-06,1.19E-05,7.94E-06,3.97E-06,0,0,0,,0,0,0,0,0 +35,NM,6,PETROLEUM & RELATED INDUSTRIES,VOC,9.25913,9.35312,9.71727,9.77667,7.45409,6.755387,6.924961,5.149686634,3.767612938,2.385539242,1.003465546,1.638122624,2.272779702,2.90743678,48.56907962,94.23072245,127.7565479,143.578793,159.4010381,175.2232831,169.0429903,162.8626974,156.6824045,156.6824045,156.6824045 +35,NM,6,PETROLEUM & RELATED INDUSTRIES,SO2,22.39383,16.90938,17.04504,16.90888,16.38152,16.846926,17.338867,7.940658881,5.324583656,2.708508431,0.092433207,1.339296221,2.586159236,3.83302225,4.528445246,5.223868242,5.660087845,4.976371242,4.292654639,3.608938035,4.052172923,4.495407811,4.938642699,4.938642699,4.938642699 +35,NM,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.15066,0.0726,0.07591,0.07659,0.288175,0.292961,0.29981,0.154308484,0.113373383,0.072438282,0.031503181,0.057483546,0.083463911,0.109444276,0.391839312,0.674234349,0.937772552,0.875140749,0.812508946,0.749877143,0.707722314,0.665567484,0.623412655,0.623412655,0.623412655 +35,NM,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.33789,0.12523,0.13101,0.13222,0.380352,0.386354,0.39502,0.225033191,0.161055086,0.097076981,0.033098876,0.064169398,0.095239921,0.126310443,0.405848122,0.6853858,0.946066268,0.899928217,0.853790166,0.807652115,0.754033767,0.700415419,0.64679707,0.64679707,0.64679707 +35,NM,6,PETROLEUM & RELATED INDUSTRIES,NOX,1.57256,0.52684,0.54078,0.54118,4.09196,4.174246,4.283335,0.744156845,0.547843683,0.351530521,0.155217359,0.259639156,0.364060953,0.46848275,14.27618128,28.08387982,41.8100835,40.34549414,38.88090477,37.41631541,37.7316447,38.04697398,38.36230327,38.36230327,38.36230327 +35,NM,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.02138,0.00366,0.00385,0.00389,0.009585,0.009681,0.009834,0.008,0.005333333,0.002666667,,0,0,,0.006333833,0.012667667,0.0190015,0.020424167,0.021846833,0.0232695,0.015894539,0.008519578,0.001144617,0.001144617,0.001144617 +35,NM,6,PETROLEUM & RELATED INDUSTRIES,CO,1.06924,0.61505,0.63729,0.64039,0.82292,0.840968,0.862761,0.828728767,0.595728754,0.362728741,0.129728728,0.400728819,0.671728909,0.942729,18.9495471,36.9563652,54.34644309,52.96906455,51.59168601,50.21430747,51.30478081,52.39525415,53.48572749,53.48572749,53.48572749 +35,NM,7,OTHER INDUSTRIAL PROCESSES,PM10,5.78346,6.74873,7.62915,8.02302,12.066656,12.723437,13.48904784,11.79289077,11.48404923,11.17520769,10.86636616,11.37728659,11.88820702,12.39912745,12.27558718,12.15204691,12.02615544,12.47556641,12.92497738,13.37438835,12.88242558,12.39046281,11.89850004,11.89850004,11.89850004 +35,NM,7,OTHER INDUSTRIAL PROCESSES,CO,0.1975,2.00877,1.96756,1.94225,1.09001,1.139407,1.432479982,1.302398383,3.354689848,5.406981313,7.459272777,5.134350736,2.809428695,0.484506654,0.68054973,0.876592807,1.072635883,1.64923721,2.225838537,2.802439864,2.536071107,2.269702349,2.003333592,2.003333592,2.003333592 +35,NM,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.02764,0.02858,0.02929,0.009399,0.009599,0.009764,0.0083205,0.014095,0.0198695,0.025644,0.017096,0.008548,,0.001834167,0.003668333,0.0055025,0.006359,0.0072155,0.008072,0.007967,0.007862,0.007757,0.007757,0.007757 +35,NM,7,OTHER INDUSTRIAL PROCESSES,NOX,0.15677,0.49736,0.49475,0.4928,0.22511,0.236837,0.25102,1.479348584,2.737213468,3.995078352,5.252943236,3.755033139,2.257123042,0.759212945,0.776055143,0.792897341,0.809739539,0.881389651,0.953039764,1.024689876,1.052534148,1.08037842,1.108222692,1.108222692,1.108222692 +35,NM,7,OTHER INDUSTRIAL PROCESSES,PM25,1.82281,2.60318,2.82808,2.93367,4.283903,4.487151,5.171025639,4.217781654,3.931226436,3.644671219,3.358116002,2.981122777,2.604129552,2.227136327,2.26709426,2.307052192,2.344626405,2.380979132,2.41733186,2.453684587,2.417078539,2.380472491,2.343866443,2.343866443,2.343866443 +35,NM,7,OTHER INDUSTRIAL PROCESSES,VOC,0.06772,0.23412,0.24756,0.2556,0.34021,0.359266,0.461617753,0.618639668,2.438534601,4.258429534,6.078324467,4.112561084,2.1467977,0.181034317,0.1850744,0.189114484,0.193155657,0.22537749,0.257599322,0.289821154,0.287103456,0.284385758,0.28166806,0.28166806,0.28166806 +35,NM,7,OTHER INDUSTRIAL PROCESSES,SO2,0.0836,0.20003,0.21092,0.21699,0.250831,0.262366,0.277241,0.304443528,2.700092453,5.095741379,7.491390305,5.002590837,2.51379137,0.024991902,0.240091359,0.455190817,0.670291364,0.456221043,0.242150722,0.028080401,0.029229157,0.030377914,0.03152667,0.03152667,0.03152667 +35,NM,8,SOLVENT UTILIZATION,VOC,23.2017,30.72276,31.40267,28.7881,26.72084,26.240064,27.204007,14.54791922,14.53179574,14.51567227,14.49954879,15.43077588,16.36200296,17.29323004,16.87765315,16.46207626,15.99943751,18.16733465,20.33523178,22.50312892,22.28162608,22.06012324,21.8386204,21.8386204,21.8386204 +35,NM,8,SOLVENT UTILIZATION,CO,,0.0001,0.00011,0.00011,0.0005,0.000529,0.000567,0.023528,0.023528,0.023528,0.023528,0.015685333,0.007842667,0,5.57E-05,0.000111307,0.00016696,0.000112018,5.71E-05,0.000002135,0.000002135,0.000002135,0.000002135,0.000002135,0.000002135 +35,NM,8,SOLVENT UTILIZATION,NH3,,,,,,,,0.0005334,0.000522267,0.000511133,0.0005,0.000333333,0.000166667,,0,0,0,0,0,,0,0,0,0,0 +35,NM,8,SOLVENT UTILIZATION,NOX,,0.00053,0.00056,0.00058,0.0024,0.002539,0.002719,0.035715,0.035715,0.035715,0.035715,0.02381,0.011905,0,0.0000676,0.0001352,0.0002028,0.000136955,0.00007111,0.000005265,0.000005265,0.000005265,0.000005265,0.000005265,0.000005265 +35,NM,8,SOLVENT UTILIZATION,PM10,,0.00141,0.00138,0.00138,0.00289,0.002916,0.002955,0.003163484,0.002996103,0.002828721,0.00266134,0.002530595,0.002399849,0.002269104,0.002196843,0.002124583,0.002052323,0.00166737,0.001282418,0.000897466,0.000720861,0.000544257,0.000367652,0.000367652,0.000367652 +35,NM,8,SOLVENT UTILIZATION,PM25,,0.00117,0.00114,0.00114,0.00289,0.002916,0.002955,0.002938184,0.002781701,0.002625217,0.002468733,0.002286274,0.002103815,0.001921356,0.001964345,0.002007334,0.002050323,0.001666037,0.001281751,0.000897466,0.000720861,0.000544257,0.000367652,0.000367652,0.000367652 +35,NM,8,SOLVENT UTILIZATION,SO2,,,,,0.00001,0.000011,0.000011,0.0010515,0.0010515,0.0010515,0.0010515,0.000701,0.0003505,0,5.11E-07,1.02E-06,0.000001532,1.03E-06,5.28E-07,2.65E-08,2.65E-08,2.65E-08,2.65E-08,2.65E-08,2.65E-08 +35,NM,9,STORAGE & TRANSPORT,NH3,,,,,,,,0.0017,0.00167,0.00164,0.00161,0.001073333,0.000536667,,0,0,0,0,0,,0,0,0,0,0 +35,NM,9,STORAGE & TRANSPORT,NOX,,0.0032,0.00337,0.00346,0.02819,0.028766,0.029479,0.016734442,0.022304999,0.027875557,0.033446114,0.024187283,0.014928452,0.005669621,0.005670195,0.005670768,0.005671342,0.004852027,0.004032713,0.003213398,0.00305348,0.002893562,0.002733644,0.002733644,0.002733644 +35,NM,9,STORAGE & TRANSPORT,PM10,0.18052,0.13172,0.1377,0.14071,0.166627,0.172566,0.179219,0.143361125,0.108626593,0.073892061,0.039157529,0.279558113,0.519958697,0.760359282,0.532738893,0.305118505,0.077498116,0.07037963,0.063261144,0.056142657,0.05051438,0.044886103,0.039257825,0.039257825,0.039257825 +35,NM,9,STORAGE & TRANSPORT,PM25,0.04453,0.03158,0.03288,0.03344,0.08817,0.091269,0.094714,0.064655538,0.051580017,0.038504496,0.025428975,0.053514904,0.081600833,0.109686762,0.093718079,0.077749397,0.061780715,0.043215311,0.024649908,0.006084505,0.011365834,0.016647162,0.021928491,0.021928491,0.021928491 +35,NM,9,STORAGE & TRANSPORT,SO2,,,,,,,,0.003218809,0.007650439,0.01208207,0.0165137,0.011009133,0.005504567,0,0,0,0,1.78E-10,3.55E-10,5.33E-10,3.35E-06,6.70E-06,1.00E-05,1.00E-05,1.00E-05 +35,NM,9,STORAGE & TRANSPORT,VOC,14.52011,15.9745,16.73062,16.8765,15.38018,14.998181,15.290531,16.69569687,16.04708953,15.39848219,14.74987485,14.94016007,15.13044529,15.32073051,15.12716079,14.93359106,13.01873333,11.16758522,9.316437123,7.465289021,8.034886459,8.604483898,9.174081337,9.174081337,9.174081337 +35,NM,9,STORAGE & TRANSPORT,CO,,0.008,0.00842,0.00864,0.007,0.007145,0.007314,0.028991087,0.040119187,0.051247288,0.062375388,0.045024355,0.027673323,0.01032229,0.010452275,0.010582261,0.010712246,0.010307165,0.009902083,0.009497002,0.008501221,0.007505441,0.00650966,0.00650966,0.00650966 +35,NM,10,WASTE DISPOSAL & RECYCLING,VOC,1.982,2.6963,2.8577,2.80331,2.59965,2.195947,2.201901,2.48367379,2.454546803,2.425419817,2.39629283,2.036291638,1.676290446,1.316289254,1.085302022,0.85431479,0.623327559,0.933199914,1.24307227,1.552944625,1.304772573,1.05660052,0.808428467,0.808428467,0.808428467 +35,NM,10,WASTE DISPOSAL & RECYCLING,CO,8.4236,21.08297,22.44532,21.36169,21.17108,14.573557,14.577489,14.82732018,14.82885401,14.83038785,14.83192168,15.53821439,16.24450711,16.95079982,13.41820615,9.885612476,6.353018802,9.786196787,13.21937477,16.65255276,12.85504879,9.057544833,5.26004087,5.26004087,5.26004087 +35,NM,10,WASTE DISPOSAL & RECYCLING,NH3,0.26885,0.25003,0.25249,0.25745,0.26488,0.269914,0.277329,0.007340996,0.006470996,0.005600996,0.004730996,0.005648929,0.006566862,0.007484795,0.007484795,0.007484795,0.007484795,0.0216434,0.035802004,0.049960609,0.050058505,0.050156401,0.050254298,0.050254298,0.050254298 +35,NM,10,WASTE DISPOSAL & RECYCLING,NOX,0.3564,0.78315,0.83309,0.80418,0.7837,0.595344,0.596323,0.593234478,0.594055994,0.59487751,0.595699025,0.590563102,0.585427179,0.580291256,0.471801026,0.363310795,0.254820565,0.36727398,0.479727395,0.59218081,0.471148513,0.350116217,0.229083921,0.229083921,0.229083921 +35,NM,10,WASTE DISPOSAL & RECYCLING,PM10,1.29052,3.17897,3.38904,3.30398,3.353162,2.746071,2.748847,2.660330332,2.799219411,2.93810849,3.076997569,2.893039513,2.709081458,2.525123403,2.088965729,1.652808056,1.216650382,1.614188243,2.011726104,2.409263965,2.092398952,1.775533939,1.458668925,1.458668925,1.458668925 +35,NM,10,WASTE DISPOSAL & RECYCLING,PM25,1.14625,3.05944,3.26126,3.17354,3.198574,2.584935,2.586741,2.527738206,2.646035321,2.764332436,2.88262955,2.578527204,2.274424858,1.970322513,1.651305124,1.332287735,1.013270346,1.287769316,1.562268286,1.836767257,1.596948252,1.357129248,1.117310244,1.117310244,1.117310244 +35,NM,10,WASTE DISPOSAL & RECYCLING,SO2,0.0694,0.05327,0.05657,0.05791,0.05864,0.061105,0.061803,0.048205047,0.048491278,0.048777509,0.04906374,0.040261939,0.031460138,0.022658337,0.021731611,0.020804885,0.019878158,0.069727868,0.119577578,0.169427288,0.132307943,0.095188598,0.058069252,0.058069252,0.058069252 +35,NM,11,HIGHWAY VEHICLES,PM10,3.40774,2.80009,2.66848,2.46078,2.28167,2.13668,2.02081,3.629297239,3.547463421,3.465629604,3.383795786,3.357512693,3.3312296,2.94210615,3.498197755,3.031883404,3.806228283,3.661552339,3.516876396,3.372200453,3.34692586,2.835567328,2.598011366,2.766041779,2.682427611 +35,NM,11,HIGHWAY VEHICLES,NH3,1.21131,2.01931,2.24407,2.14446,2.19256,2.2515,2.31607,1.276803841,1.247103278,1.217402714,1.187702151,1.21612685,1.24455155,1.133602845,1.052365611,0.949203833,1.121940985,1.03458541,0.947229835,0.85987426,0.88330873,0.868938681,1.003978294,0.794017064,0.760811593 +35,NM,11,HIGHWAY VEHICLES,CO,1107.09726,781.08565,751.96569,723.53418,673.56442,658.32862,628.88595,420.0902597,400.5371766,380.9840935,361.4310105,354.9621341,348.4932578,302.7950123,300.161212,273.0067622,290.812203,270.2734998,249.7347966,229.1960934,233.1375947,199.3867785,216.6651897,170.1004903,157.8832959 +35,NM,11,HIGHWAY VEHICLES,VOC,84.00264,59.52218,56.4781,54.46688,51.29532,49.60419,47.28564,36.13480316,34.54427324,32.95374333,31.36321342,32.73995347,34.11669351,28.81532522,34.16202251,30.76997249,31.22706053,29.02644945,26.82583837,24.62522729,24.79285786,21.1794978,20.85806083,18.02267343,16.73188681 +35,NM,11,HIGHWAY VEHICLES,SO2,4.37703,2.77194,2.81991,2.81616,2.84182,2.48411,2.54243,2.428581446,2.205258695,1.981935944,1.758613193,1.207971107,0.657329022,0.622404306,0.614667757,0.607504607,0.275184129,0.260183872,0.245183616,0.230183359,0.240176778,0.242990658,0.24598031,0.129305182,0.11072793 +35,NM,11,HIGHWAY VEHICLES,NOX,75.28689,80.83509,81.38524,79.84579,77.2023,76.12099,72.82125,103.6043481,97.45365136,91.30295468,85.15225799,83.2004209,81.24858382,73.20862191,82.41983956,72.88876669,77.38855891,75.65261202,73.91666512,72.18071822,70.69986362,57.54625792,50.73315633,50.66822241,47.24917993 +35,NM,11,HIGHWAY VEHICLES,PM25,2.88365,2.27621,2.13625,1.95068,1.78203,1.64307,1.53205,3.071375185,2.985012237,2.898649289,2.81228634,2.753750376,2.695214412,2.332375729,2.834913632,2.400039962,2.269074701,2.238051955,2.207029209,2.176006462,2.077561761,1.719006316,1.420648575,1.499709105,1.419613309 +35,NM,12,OFF-HIGHWAY,SO2,2.58352,3.08089,3.04784,3.02323,3.02562,3.07263,3.13251,3.514651248,3.533256498,3.551861747,3.570466996,2.202510093,0.834553189,0.482754622,0.487986555,0.404826213,0.332422511,0.26863955,0.20485659,0.141073629,0.149779327,0.180980225,0.167190725,0.170267316,0.173343907 +35,NM,12,OFF-HIGHWAY,VOC,12.82955,14.11727,13.20159,12.79257,12.73498,12.68791,12.65373,15.48016594,15.19483529,14.90950464,14.62417399,14.02788788,13.43160177,12.79635458,12.40660965,12.03180343,11.65633064,10.94625873,10.23618682,9.526114905,8.5551919,6.912806905,6.613345889,6.460876485,6.308407081 +35,NM,12,OFF-HIGHWAY,PM25,1.77191,1.87874,1.83697,1.79833,1.78127,1.76478,1.74937,2.093294136,2.073960136,2.054626136,2.035292136,1.875286916,1.715281696,1.615488868,1.593145937,1.571178542,1.565296817,1.483445919,1.401595021,1.319744123,1.292325027,1.270339487,1.237486834,1.186255016,1.135023197 +35,NM,12,OFF-HIGHWAY,CO,105.71914,120.50792,117.03713,117.17507,118.07602,119.37722,121.94366,128.1572347,123.3989002,118.6405657,113.8822311,111.0459856,108.20974,97.89059813,90.50503576,87.26019535,85.32467247,81.29798333,77.27129419,73.24460505,70.96152205,66.29575325,66.39535604,66.51438227,66.63340851 +35,NM,12,OFF-HIGHWAY,PM10,1.95093,2.06717,2.01759,1.97067,1.96019,1.9425,1.92582,2.164991656,2.145342363,2.12569307,2.106043776,1.97770639,1.849369005,1.782253154,1.759167627,1.736403461,1.67769746,1.589927556,1.502157651,1.414387746,1.374293331,1.327978609,1.294104502,1.241316613,1.188528724 +35,NM,12,OFF-HIGHWAY,NOX,37.77351,42.21818,41.80536,41.32851,40.07262,40.29784,40.68212,46.3001581,46.15008526,46.00001242,45.84993958,39.83718813,33.82443669,34.2423304,33.56666199,33.32129029,32.53523897,30.74291639,28.95059381,27.15827123,27.04898677,26.72663156,26.83041786,25.95006552,25.06971317 +35,NM,12,OFF-HIGHWAY,NH3,0.14511,0.15962,0.15816,0.16211,0.0136,0.0136,0.0136,0.018211222,0.018377421,0.018543621,0.018709821,0.019894151,0.021078481,0.021334536,0.021448554,0.021637632,0.021589719,0.02152431,0.021458901,0.021393492,0.022015671,0.022141797,0.023260029,0.023337343,0.023414657 +35,NM,14,MISCELLANEOUS,CO,111.01922,149.14573,158.96603,127.65891,244.55645,1528.61509,231.29626,11.0636121,24.46223501,37.86085792,51.25948083,34.23316291,17.206845,0.18052708,2.305468242,4.430409404,6.555350566,4.76801128,2.980671994,1.193332708,0.882832449,0.572332191,0.261831932,0.261831932,0.261831932 +35,NM,14,MISCELLANEOUS,NH3,43.90447,46.30073,46.3849,46.72742,48.22124,54.33115,34.4785323,36.5904751,36.81207671,37.03367832,37.25527993,37.81840124,38.38152255,38.94464386,37.73869199,36.53274012,35.32678824,29.4498167,23.57284516,17.69587362,23.1438759,28.59187817,34.03988045,34.03988045,34.03988045 +35,NM,14,MISCELLANEOUS,NOX,6.31652,4.29778,4.61659,3.74634,5.33918,32.85515,5.03407,0.17184093,0.415040842,0.658240754,0.901440667,0.605414365,0.309388064,0.013361762,0.105572843,0.197783925,0.289995006,0.205789487,0.121583969,0.03737845,0.028501294,0.019624138,0.010746981,0.010746981,0.010746981 +35,NM,14,MISCELLANEOUS,VOC,5.85026,18.86339,18.56566,13.23359,11.5807,71.98721,10.94342,2.55684244,5.740787604,8.924732769,12.10867793,8.077525344,4.046372755,0.015220166,0.168963223,0.322706279,0.476449335,0.662855025,0.849260715,1.035666404,1.257964252,1.480262099,1.702559946,1.702559946,1.702559946 +35,NM,14,MISCELLANEOUS,SO2,0.056,0.15512,0.16095,0.12447,1.46325,9.00793,1.37961,0.17676,0.284963844,0.393167687,0.501371531,0.334923458,0.168475385,0.002027312,0.040078263,0.078129215,0.116180167,0.079797929,0.043415692,0.007033455,0.00591688,0.004800306,0.003683731,0.003683731,0.003683731 +35,NM,14,MISCELLANEOUS,PM25,146.78829,133.18875,137.18901,137.83762,142.2098,252.048836,144.8294892,79.58900027,80.79032795,81.99165564,83.19298333,83.02624306,82.8595028,82.69276254,82.76940072,82.8460389,82.92267708,70.35890413,57.79513118,45.23135823,37.86027891,30.4891996,23.11812028,23.11812028,23.11812028 +35,NM,14,MISCELLANEOUS,PM10,890.23343,780.45896,792.90554,809.7135,801.39862,943.128714,840.1487595,777.2428963,778.6608593,780.0788223,781.4967853,783.8794254,786.2620655,788.6447056,789.9815176,791.3183296,792.6551415,664.3637235,536.0723055,407.7808874,332.8772248,257.9735622,183.0698996,183.0698996,183.0698996 +35,NM,15,WILDFIRES,NH3,,,,,,,,2.021041179,2.021041179,2.021041179,1.075449238,1.075449238,1.075449238,0.981199151,0.981199151,0.981199151,15.27489313,15.27489313,15.27489313,1.079534884,1.079534884,1.079534884,3.231869997,3.231869997,3.231869997 +35,NM,15,WILDFIRES,CO,,,,,,,,126.42802,126.42802,126.42802,65.10146393,65.10146393,65.10146393,59.7511702,59.7511702,59.7511702,929.1190098,929.1190098,929.1190098,65.76485356,65.76485356,65.76485356,197.3680995,197.3680995,197.3680995 +35,NM,15,WILDFIRES,PM10,,,,,,,,12.06395728,12.06395728,12.06395728,6.942972482,6.942972482,6.942972482,6.102620126,6.102620126,6.102620126,95.69791347,95.69791347,95.69791347,6.697736566,6.697736566,6.697736566,19.73552704,19.73552704,19.73552704 +35,NM,15,WILDFIRES,PM25,,,,,,,,10.22340616,10.22340616,10.22340616,5.883874994,5.883874994,5.883874994,5.171722728,5.171722728,5.171722728,81.09991095,81.09991095,81.09991095,5.676048986,5.676048986,5.676048986,16.72502323,16.72502323,16.72502323 +35,NM,15,WILDFIRES,SO2,,,,,,,,0.743200526,0.743200526,0.743200526,0.598898725,0.598898725,0.598898725,0.457314825,0.457314825,0.457314825,7.386217431,7.386217431,7.386217431,0.496804215,0.496804215,0.496804215,1.365935708,1.365935708,1.365935708 +35,NM,15,WILDFIRES,VOC,,,,,,,,29.06909,29.06909,29.06909,15.45958273,15.45958273,15.45958273,14.10473914,14.10473914,14.10473914,219.5767368,219.5767368,219.5767368,15.51831653,15.51831653,15.51831653,46.45814062,46.45814062,46.45814062 +35,NM,15,WILDFIRES,NOX,,,,,,,,1.092480946,1.092480946,1.092480946,1.246921226,1.246921226,1.246921226,0.842388658,0.842388658,0.842388658,13.9985321,13.9985321,13.9985321,0.9057991,0.9057991,0.9057991,2.309508746,2.309508746,2.309508746 +35,NM,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,6.52459855,7.834822302,9.145046055,10.45526981,9.997467854,9.539665901,9.081863948,8.902438579,8.72301321,8.543587841,8.543587841,8.543587841 +35,NM,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.468353817,0.501799373,0.53524493,0.568690486,0.559624108,0.55055773,0.541491353,0.521327943,0.501164534,0.481001125,0.481001125,0.481001125 +35,NM,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,2.88475834,3.416458106,3.948157873,4.479857639,4.296135189,4.112412738,3.928690288,3.843639818,3.758589348,3.673538878,3.673538878,3.673538878 +35,NM,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.235288874,0.264248976,0.293209078,0.32216918,0.312840842,0.303512505,0.294184167,0.285515621,0.276847076,0.26817853,0.26817853,0.26817853 +35,NM,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.453885675,0.545031151,0.636176628,0.727322104,0.695475207,0.66362831,0.631781413,0.619299573,0.606817733,0.594335893,0.594335893,0.594335893 +35,NM,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,27.54523419,33.14957929,38.75392439,44.35826948,42.39690614,40.4355428,38.47417946,37.72545722,36.97673499,36.22801275,36.22801275,36.22801275 +35,NM,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,2.444712027,2.895304654,3.345897282,3.796489909,3.640792775,3.485095641,3.329398507,3.257322068,3.185245629,3.11316919,3.11316919,3.11316919 +36,NY,1,FUEL COMB. ELEC. UTIL.,VOC,2.7677,1.98554,2.27357,2.59328,1.659611,2.204383,2.168698,0.825886522,0.828154192,0.830421863,0.832689533,0.875250204,0.917810875,0.960371545,0.984619386,1.008867226,1.033115066,1.041173041,1.049231017,1.057288992,0.995488802,0.933688612,0.871888421,0.871888421,0.871888421 +36,NY,1,FUEL COMB. ELEC. UTIL.,SO2,420.2636,306.80064,322.20488,380.95198,282.5037,291.00449,263.602447,250.572448,253.802956,228.262143,191.2621224,108.666554,107.183029,68.57206827,60.12066723,51.6692662,39.44577566,31.87876954,24.31176342,16.74475729,12.14146575,7.538174208,2.934882664,4.846204,1.974696 +36,NY,1,FUEL COMB. ELEC. UTIL.,PM25,3.35984,1.56975,1.64099,1.66977,14.231397,15.189639,15.085621,13.49308401,12.95240913,12.41173424,11.87105936,8.914956394,5.958853432,3.00275047,2.53368494,2.064619411,1.595553881,1.415556264,1.235558647,1.05556103,1.032101203,1.008641376,0.985181548,0.985181548,0.985181548 +36,NY,1,FUEL COMB. ELEC. UTIL.,CO,16.03086,13.24499,15.45828,16.91718,13.29389,12.497987,12.917591,11.17293813,10.93386912,10.69480012,10.45573111,11.5189519,12.58217269,13.64539348,12.73698871,11.82858393,10.92017916,14.15327521,17.38637125,20.6194673,16.16689463,11.71432197,7.261749301,7.261749301,7.261749301 +36,NY,1,FUEL COMB. ELEC. UTIL.,PM10,5.93876,2.59551,2.66421,2.67177,15.404163,16.484558,16.592244,18.0574474,17.50345577,16.94946415,16.39547252,12.72232081,9.049169108,5.376017403,4.3547768,3.333536197,2.312295595,2.054000591,1.795705588,1.537410584,1.379462255,1.221513925,1.063565595,1.063565595,1.063565595 +36,NY,1,FUEL COMB. ELEC. UTIL.,NOX,182.92023,114.39085,124.65004,139.60816,94.278693,94.866671,90.582678,83.01730625,65.564296,60.305712,64.63451748,40.633778,40.431443,36.21865447,32.15584758,28.0930407,23.07995461,21.11193719,19.14391977,17.17590235,14.28487768,11.39385301,8.502828332,7.984244,5.653296 +36,NY,1,FUEL COMB. ELEC. UTIL.,NH3,,0.5301,0.5965,0.74865,1.248295,1.245109,1.244441,2.52924117,2.448621509,2.368001847,2.287382186,2.078207118,1.86903205,1.659856982,1.421432111,1.18300724,0.940859969,0.78739833,0.633936691,0.480475052,0.451072372,0.421669691,0.392267011,0.392267011,0.392267011 +36,NY,2,FUEL COMB. INDUSTRIAL,NOX,74.28596,57.65237,61.44661,60.5225,44.02825,44.747071,47.409084,32.23445993,35.00469182,37.7749237,40.54515559,38.93700222,37.32884885,35.72069548,34.10573183,32.49076818,24.72582015,22.88079681,21.03577347,19.19075012,17.40569329,15.62063645,13.83557961,13.83557961,13.83557961 +36,NY,2,FUEL COMB. INDUSTRIAL,VOC,2.00337,2.59149,1.94451,1.93679,1.369563,1.37689,1.446449,0.875230159,1.061858077,1.248485996,1.435113914,1.487973672,1.54083343,1.593693189,1.587653,1.581612811,1.625152261,1.483012229,1.340872196,1.198732163,1.138710316,1.078688469,1.018666622,1.018666622,1.018666622 +36,NY,2,FUEL COMB. INDUSTRIAL,SO2,237.22958,173.12227,184.48211,180.78739,149.867675,152.462535,163.311111,72.6850808,71.94660758,71.20813436,70.46966114,63.4688268,56.46799247,49.46715814,47.90170888,46.33625963,18.86424651,18.7780832,18.6919199,18.60575659,16.31037217,14.01498774,11.71960332,11.71960332,11.71960332 +36,NY,2,FUEL COMB. INDUSTRIAL,PM10,24.13751,21.42384,21.0015,20.74657,5.332124,5.49994,5.855556,20.37213978,20.22197836,20.07181695,19.92165553,15.77092875,11.62020196,7.46947518,9.314958131,11.16044108,11.88681987,10.01457923,8.142338585,6.27009794,6.090000617,5.909903294,5.729805971,5.729805971,5.729805971 +36,NY,2,FUEL COMB. INDUSTRIAL,NH3,0.24916,0.34823,0.34622,0.3434,0.250148,0.254326,0.257144,0.907906028,0.926180693,0.944455358,0.962730023,0.887499206,0.81226839,0.737037574,0.77258486,0.808132146,0.574646305,0.485595967,0.39654563,0.307495293,0.293594175,0.279693057,0.265791939,0.265791939,0.265791939 +36,NY,2,FUEL COMB. INDUSTRIAL,CO,16.66609,25.3279,27.59688,27.39575,22.603827,22.709426,23.878365,12.511042,15.09646366,17.68188532,20.26730697,18.31957328,16.37183958,14.42410589,12.69113997,10.95817406,16.99169597,15.00516596,13.01863594,11.03210593,11.47778453,11.92346313,12.36914173,12.36914173,12.36914173 +36,NY,2,FUEL COMB. INDUSTRIAL,PM25,11.46661,10.15379,9.81495,9.75131,3.088417,3.202662,3.406015,5.982176587,5.87549521,5.768813833,5.662132457,5.396941552,5.131750648,4.866559744,4.816128342,4.76569694,5.976957761,5.515694558,5.054431354,4.59316815,4.543008914,4.492849678,4.442690442,4.442690442,4.442690442 +36,NY,3,FUEL COMB. OTHER,CO,160.26423,291.35377,291.56229,289.66648,292.06481,312.473874,312.493751,335.7845009,268.0021139,200.2197269,132.4373398,132.996284,133.5552282,134.1141724,146.9526357,159.7910989,166.4708609,160.9312875,155.3917141,149.8521407,129.1246557,108.3971707,87.66968574,87.66968574,87.66968574 +36,NY,3,FUEL COMB. OTHER,NH3,1.26875,1.32601,1.31391,1.138,1.1486,1.164474,1.168894,3.310096501,2.843567279,2.377038058,1.910508837,1.893236653,1.875964469,1.858692285,1.826090085,1.793487884,1.63614793,3.057168034,4.478188138,5.899208241,4.436019642,2.972831042,1.509642443,1.509642443,1.509642443 +36,NY,3,FUEL COMB. OTHER,NOX,107.67461,109.73178,109.91435,100.26959,41.976421,42.512215,42.776256,73.79225266,73.4269523,73.06165194,72.69635159,65.30475027,57.91314896,50.52154764,52.33839316,54.15523868,52.6967829,51.88830884,51.07983479,50.27136073,49.26113977,48.25091882,47.24069786,47.24069786,47.24069786 +36,NY,3,FUEL COMB. OTHER,PM10,28.82597,47.07952,47.31038,47.10172,45.377077,48.221458,48.434564,46.39605827,37.27690219,28.15774611,19.03859004,19.69442599,20.35026195,21.0060979,23.25601513,25.50593235,30.58146797,27.66817491,24.75488184,21.84158878,18.62817036,15.41475194,12.20133352,12.20133352,12.20133352 +36,NY,3,FUEL COMB. OTHER,VOC,31.52069,89.52763,89.51773,89.02368,86.331781,92.61196,92.608351,228.6709349,158.1930395,87.71514418,17.23724885,18.04417859,18.85110834,19.65803808,23.11356084,26.56908361,30.73938297,27.86825249,24.99712202,22.12599154,18.53875553,14.95151951,11.36428349,11.36428349,11.36428349 +36,NY,3,FUEL COMB. OTHER,PM25,23.7329,41.7805,41.84266,41.65834,42.41212,45.199792,45.335242,39.58710979,31.61574295,23.6443761,15.67300925,17.08254924,18.49208922,19.90162921,22.20490906,24.5081889,27.29893299,25.32648818,23.35404338,21.38159857,18.19772307,15.01384756,11.82997205,11.82997205,11.82997205 +36,NY,3,FUEL COMB. OTHER,SO2,79.51697,43.82808,45.50162,40.98197,40.914308,41.319253,41.686367,72.50468738,73.32336791,74.14204843,74.96072896,65.98590834,57.01108773,48.03626712,46.44012304,44.84397896,34.96205036,24.44808247,13.93411457,3.420146669,3.136890362,2.853634055,2.570377747,2.570377747,2.570377747 +36,NY,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,58.67658,3.96892,3.27283,3.32484,0.252738,0.261492,0.272776,8.82880865,8.949216435,9.06962422,9.190032005,6.233077317,3.276122629,0.319167942,0.343715518,0.368263094,0.98381067,0.763112697,0.542414725,0.321716752,0.30609987,0.290482988,0.274866106,0.274866106,0.274866106 +36,NY,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.257,0.4343,0.55183,0.55723,0.215925,0.221312,0.227683,0.0068496,0.010291067,0.013732533,0.017174,0.07813942,0.13910484,0.20007026,0.196447157,0.192824053,0.33909435,0.259136567,0.179178783,0.099221,0.12098245,0.1427439,0.16450535,0.16450535,0.16450535 +36,NY,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,0.751898,0.778827,0.825192,0.177027091,0.159390407,0.141753724,0.12411704,0.08495056,0.04578408,0.0066176,0.005575502,0.004533403,0.003491305,0.005182195,0.006873086,0.008563976,0.007984671,0.007405366,0.006826061,0.006826061,0.006826061 +36,NY,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.119,1.0213,1.2946,1.31301,0.065519,0.067202,0.069166,0.00404295,0.023336967,0.042630983,0.061925,0.284221838,0.506518677,0.728815515,0.689345567,0.649875618,0.86540567,0.750137195,0.63486872,0.519600245,0.358009852,0.196419458,0.034829065,0.034829065,0.034829065 +36,NY,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.00972,0.00972,0.00996,0.00999,0.194217,0.200104,0.207065,0.113255467,0.100983265,0.088711063,0.076438861,0.075020775,0.073602688,0.072184601,0.065223808,0.058263016,0.051302223,0.05274177,0.054181317,0.055620864,0.046904517,0.038188169,0.029471822,0.029471822,0.029471822 +36,NY,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.00738,0.00738,0.00756,0.00759,0.137789,0.14217,0.147334,0.074459522,0.068059929,0.061660335,0.055260742,0.053980584,0.052700427,0.051420269,0.047244798,0.043069326,0.038893855,0.034922467,0.030951079,0.02697969,0.025668765,0.024357839,0.023046914,0.023046914,0.023046914 +36,NY,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,0.68795,0.87124,0.8833,0.517079,0.529778,0.545082,0.59707952,0.46699503,0.33691054,0.20682605,0.196148618,0.185471187,0.174793755,0.17250882,0.170223885,0.16993895,0.181792495,0.19364604,0.205499585,0.172507337,0.139515088,0.10652284,0.10652284,0.10652284 +36,NY,5,METALS PROCESSING,NOX,0.90334,1.42919,1.94519,1.96117,2.137945,2.222181,2.382415,0.881487051,0.774555704,0.667624358,0.560693011,0.658888571,0.75708413,0.85527969,0.883976348,0.912673005,0.941369663,0.95816664,0.974963616,0.991760593,0.980394639,0.969028684,0.95766273,0.95766273,0.95766273 +36,NY,5,METALS PROCESSING,VOC,1.91884,1.04844,1.23081,1.22897,0.354225,0.366711,0.390464,0.3245232,0.311423458,0.298323716,0.285223975,0.260271983,0.235319992,0.210368,0.241308091,0.272248182,0.303188273,0.274349014,0.245509756,0.216670498,0.221135835,0.225601172,0.230066509,0.230066509,0.230066509 +36,NY,5,METALS PROCESSING,SO2,55.52768,5.88953,7.93975,7.92474,4.526835,4.689616,4.996934,3.244347006,3.290340255,3.336333504,3.382326754,3.137641086,2.892955418,2.64826975,2.94559201,3.24291427,3.54023653,3.461983049,3.383729567,3.305476086,3.229483013,3.15348994,3.077496867,3.077496867,3.077496867 +36,NY,5,METALS PROCESSING,PM10,6.71103,6.71103,7.32939,7.40712,1.374577,1.425336,1.522778,1.112431904,1.348830119,1.585228334,1.821626548,1.27884678,0.736067011,0.193287243,0.540065675,0.886844108,1.23362254,0.957668168,0.681713797,0.405759425,0.351297472,0.29683552,0.242373567,0.242373567,0.242373567 +36,NY,5,METALS PROCESSING,NH3,0.04332,0.04332,0.04732,0.04783,0.01257,0.013097,0.014103,0.395649,0.391748,0.387847,0.383946,0.366034,0.348122,0.33021,0.291238333,0.252266667,0.213295,0.142935467,0.072575933,0.0022164,0.00210675,0.0019971,0.00188745,0.00188745,0.00188745 +36,NY,5,METALS PROCESSING,CO,14.98216,26.09999,34.10526,33.23425,23.571317,24.286769,25.641269,39.80954689,39.09565905,38.38177121,37.66788337,37.384727,37.10157062,36.81841425,34.3552991,31.89218394,29.42906879,25.17702278,20.92497676,16.67293075,15.82910869,14.98528664,14.14146458,14.14146458,14.14146458 +36,NY,5,METALS PROCESSING,PM25,6.40142,6.40142,6.99124,7.06531,1.050507,1.088753,1.162151,0.844206535,1.116032792,1.387859049,1.659685306,1.157995666,0.656306027,0.154616387,0.435831898,0.717047409,0.99826292,0.691389751,0.384516582,0.077643413,0.124119566,0.17059572,0.217071873,0.217071873,0.217071873 +36,NY,6,PETROLEUM & RELATED INDUSTRIES,CO,0.079,0.16963,0.18934,0.18846,0.046607,0.047027,0.047027,0.063135121,0.044328747,0.025522374,0.006716,0.004486333,0.002256667,0.000027,0.249033971,0.498040942,0.747047913,0.800806733,0.854565553,0.908324372,0.892767414,0.877210455,0.861653496,0.861653496,0.861653496 +36,NY,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.20351,0.09719,0.10794,0.10871,0.053231,0.053498,0.054479,0.077085971,0.067802126,0.058518281,0.049234437,0.036987533,0.02474063,0.012493726,2.747404795,5.482315864,8.217226932,7.724247943,7.231268955,6.738289966,6.307128766,5.875967566,5.444806366,5.444806366,5.444806366 +36,NY,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.09351,0.07618,0.09476,0.09378,0.009268,0.00935,0.00935,0.001056835,0.000780805,0.000504775,0.000228745,0.000153163,7.76E-05,0.000002,0.031653099,0.063304198,0.094955297,0.078961873,0.062968449,0.046975024,0.059284583,0.071594142,0.083903701,0.083903701,0.083903701 +36,NY,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.50135,0.49886,0.49906,0.49532,0.012164,0.012294,0.01233,0.007559376,0.005764735,0.003970093,0.002175452,0.001657292,0.001139132,0.000620972,0.006184743,0.011748513,0.017312284,0.022704806,0.028097328,0.03348985,0.032924777,0.032359704,0.031794631,0.031794631,0.031794631 +36,NY,6,PETROLEUM & RELATED INDUSTRIES,PM10,1.48615,1.47804,1.47336,1.46127,0.03209,0.032401,0.032443,0.029964698,0.021174084,0.012383469,0.003592855,0.00264467,0.001696485,0.0007483,0.006292701,0.011837102,0.017381503,0.022755019,0.028128534,0.033502049,0.032937294,0.032372538,0.031807783,0.031807783,0.031807783 +36,NY,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.06264,0.08484,0.1017,0.10083,0.015018,0.015152,0.015152,0.01449345,0.013158633,0.011823817,0.010489,0.007041333,0.003593667,0.000146,0.201843716,0.403541432,0.605239148,0.615707734,0.62617632,0.636644907,0.625316148,0.613987389,0.60265863,0.60265863,0.60265863 +36,NY,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,8.32E-07,1.66E-06,2.50E-06,2.50E-06,2.50E-06 +36,NY,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.144078,0.149904,0.158658,0.270106177,0.369549925,0.468993673,0.56843742,0.513832292,0.459227163,0.404622035,0.428277128,0.451932222,0.475587315,0.465555758,0.455524202,0.445492645,0.438822098,0.432151552,0.425481005,0.425481005,0.425481005 +36,NY,7,OTHER INDUSTRIAL PROCESSES,NOX,8.32184,19.35638,26.00478,26.42816,14.540259,15.337558,16.359191,12.19195027,12.36285085,12.53375143,12.70465201,11.8460801,10.98750819,10.12893628,9.872206958,9.615477636,9.358748314,8.211113361,7.063478409,5.915843456,5.147375657,4.378907859,3.61044006,3.61044006,3.61044006 +36,NY,7,OTHER INDUSTRIAL PROCESSES,PM10,144.15951,32.72724,34.99341,37.75441,17.182092,18.196871,23.62626919,24.78257595,24.12553312,23.46849028,22.81144745,20.59185221,18.37225697,16.15266173,15.69489399,15.23712626,15.02058153,14.49643283,13.97228414,13.44813544,14.79132075,16.13450606,17.47769136,17.47769136,17.47769136 +36,NY,7,OTHER INDUSTRIAL PROCESSES,PM25,48.83397,19.06941,20.45842,21.3366,4.721889,4.989851,9.98958267,9.760446574,9.662611814,9.564777054,9.466942295,8.807428903,8.147915511,7.48840212,7.436258898,7.384115676,7.389972454,7.280349601,7.170726748,7.061103895,8.363419515,9.665735136,10.96805076,10.96805076,10.96805076 +36,NY,7,OTHER INDUSTRIAL PROCESSES,SO2,21.71095,16.36865,21.94773,22.28587,21.080174,22.23175,23.730211,19.94596257,19.93408645,19.92221033,19.91033421,17.6884928,15.4666514,13.24481,12.42637241,11.60793482,10.78949723,9.1845486,7.579599974,5.974651349,4.470683139,2.96671493,1.462746721,1.462746721,1.462746721 +36,NY,7,OTHER INDUSTRIAL PROCESSES,VOC,26.91878,20.57079,8.21031,8.27597,5.037907,5.177894,5.913783482,5.41916444,6.287937745,7.15671105,8.025484355,7.173981746,6.322479138,5.470976529,4.473905466,3.476834403,2.479763339,2.559941533,2.640119727,2.72029792,2.934473528,3.148649135,3.362824742,3.362824742,3.362824742 +36,NY,7,OTHER INDUSTRIAL PROCESSES,CO,2.86007,1.44317,1.7826,1.803,1.137427,1.197246,3.279199778,4.046843949,4.075799219,4.104754489,4.133709759,3.883739835,3.633769911,3.383799988,3.32359213,3.263384272,3.203176414,7.611301519,12.01942662,16.42755173,14.07911843,11.73068513,9.382251834,9.382251834,9.382251834 +36,NY,8,SOLVENT UTILIZATION,PM10,,,,,0.092688,0.097177,0.102579,0.10838,0.089775927,0.071171855,0.052567783,0.049595876,0.046623968,0.043652061,0.048381343,0.053110625,0.057839907,0.044199482,0.030559058,0.016918634,0.013918142,0.010917649,0.007917157,0.007917157,0.007917157 +36,NY,8,SOLVENT UTILIZATION,VOC,358.67024,300.72848,304.75254,286.23307,252.292545,247.489471,254.700695,233.0213312,233.5568442,234.0923571,234.6278701,216.1093902,197.5909104,179.0724305,164.4875266,149.9026228,135.3177189,147.0842732,158.8508275,170.6173818,150.4313321,130.2452824,110.0592327,110.0592327,110.0592327 +36,NY,8,SOLVENT UTILIZATION,PM25,,,,,0.092688,0.097177,0.102579,0.040870162,0.040853477,0.040836792,0.040820107,0.039279856,0.037739604,0.036199352,0.041723544,0.047247737,0.052771929,0.040562873,0.028353817,0.016144761,0.013075718,0.010006674,0.00693763,0.00693763,0.00693763 +36,NY,8,SOLVENT UTILIZATION,NOX,0.11352,0.00725,0.00974,0.01008,0.014279,0.014661,0.015047,0.00121588,0.001293213,0.001370547,0.00144788,0.002841587,0.004235293,0.005629,0.005600697,0.005572393,0.00554409,0.005262906,0.004981721,0.004700537,0.004414858,0.004129179,0.0038435,0.0038435,0.0038435 +36,NY,8,SOLVENT UTILIZATION,NH3,,,,,0.02531,0.026135,0.027104,0.00974151,0.011022623,0.012303737,0.01358485,0.014704517,0.015824183,0.01694385,0.015838448,0.014733047,0.013627645,0.015603952,0.017580258,0.019556565,0.01902878,0.018500994,0.017973209,0.017973209,0.017973209 +36,NY,8,SOLVENT UTILIZATION,CO,0.06113,0.0423,0.04319,0.0439,0.056834,0.058728,0.060606,0.0606035,0.040402333,0.020201167,,0.00153738,0.00307476,0.00461214,0.015203115,0.02579409,0.036385065,0.035113324,0.033841584,0.032569843,0.023119709,0.013669574,0.00421944,0.00421944,0.00421944 +36,NY,8,SOLVENT UTILIZATION,SO2,0.02076,0.00141,0.00183,0.00174,0.00013,0.000132,0.000134,0.0000135,0.000009,0.0000045,,4.69E-06,9.38E-06,0.000014075,7.49E-05,0.000135697,0.000196508,0.000142587,8.87E-05,0.000034747,0.003780198,0.007525649,0.0112711,0.0112711,0.0112711 +36,NY,9,STORAGE & TRANSPORT,CO,0.007,0.16331,0.20683,0.20782,,,,0.00353,0.002956667,0.002383333,0.00181,0.005883447,0.009956893,0.01403034,0.011762926,0.009495512,0.007228098,0.012258982,0.017289866,0.02232075,0.016179264,0.010037777,0.003896291,0.003896291,0.003896291 +36,NY,9,STORAGE & TRANSPORT,VOC,108.50585,60.05251,56.78582,56.47667,54.844072,54.71323,55.239554,51.68529946,51.64287814,51.60045682,51.5580355,49.29123507,47.02443465,44.75763423,41.54104897,38.32446371,30.04230844,29.80936586,29.57642328,29.3434807,28.20486798,27.06625527,25.92764255,25.92764255,25.92764255 +36,NY,9,STORAGE & TRANSPORT,SO2,,0.00052,0.00063,0.00063,,,,0.0000935,0.0000935,0.0000935,0.0000935,0.0000925,0.0000915,0.0000905,8.27E-05,7.48E-05,0.000067,6.48E-05,6.27E-05,0.0000605,0.00144075,0.002821,0.00420125,0.00420125,0.00420125 +36,NY,9,STORAGE & TRANSPORT,PM25,,,,,0.131169,0.137255,0.145363,0.264523921,0.252213875,0.239903829,0.227593782,0.208917981,0.19024218,0.171566379,0.180073367,0.188580356,0.197087344,0.183736521,0.170385698,0.157034875,0.148826387,0.140617899,0.132409411,0.132409411,0.132409411 +36,NY,9,STORAGE & TRANSPORT,PM10,,,,,0.302094,0.315678,0.333697,0.571053208,0.525205037,0.479356865,0.433508694,0.395861776,0.358214857,0.320567939,0.365161569,0.409755199,0.454348828,0.426249824,0.398150819,0.370051815,0.361751215,0.353450615,0.345150015,0.345150015,0.345150015 +36,NY,9,STORAGE & TRANSPORT,NH3,,,,,0.002218,0.002298,0.002441,0.001114875,0.001715435,0.002315994,0.002916554,0.002071703,0.001226851,0.000382,0.000368667,0.000355333,0.000342,0.00030875,0.0002755,0.000242251,0.000274725,0.0003072,0.000339675,0.000339675,0.000339675 +36,NY,9,STORAGE & TRANSPORT,NOX,0.001,,,,,,,0.0041,0.003536667,0.002973333,0.00241,0.005241678,0.008073357,0.010905035,0.008096347,0.00528766,0.002478972,0.009844981,0.017210991,0.024577,0.016724372,0.008871745,0.001019117,0.001019117,0.001019117 +36,NY,10,WASTE DISPOSAL & RECYCLING,CO,4.04711,111.6626,114.47729,123.70342,125.149302,77.866184,77.939481,66.09277785,66.35818574,66.62359364,66.88900154,59.38204415,51.87508676,44.36812937,40.52040996,36.67269054,32.82497113,43.85825658,54.89154203,65.92482748,59.19764124,52.47045499,45.74326875,45.74326875,45.74326875 +36,NY,10,WASTE DISPOSAL & RECYCLING,VOC,18.42264,19.32388,17.06085,17.80849,16.191793,13.045792,13.100568,85.94432056,86.04785343,86.15138629,86.25491916,62.60019525,38.94547133,15.29074742,11.32055453,7.350361634,3.380168743,5.112191941,6.84421514,8.576238338,8.078512951,7.580787563,7.083062176,7.083062176,7.083062176 +36,NY,10,WASTE DISPOSAL & RECYCLING,SO2,4.18432,3.04131,3.29592,3.36968,2.382834,2.426799,2.478709,3.12221139,3.451617606,3.781023822,4.110430039,3.347345773,2.584261508,1.821177242,1.534603321,1.248029399,0.961455477,1.156196225,1.350936973,1.54567772,1.40766543,1.26965314,1.131640849,1.131640849,1.131640849 +36,NY,10,WASTE DISPOSAL & RECYCLING,PM25,15.23059,17.84439,18.3886,19.38807,18.946004,14.273981,14.299576,7.973483674,7.989494602,8.00550553,8.021516458,7.468604625,6.915692792,6.362780959,6.032583648,5.702386337,5.372189026,6.121376136,6.870563245,7.619750354,6.781911545,5.944072735,5.106233926,5.106233926,5.106233926 +36,NY,10,WASTE DISPOSAL & RECYCLING,PM10,19.08863,19.09227,19.69042,20.7131,20.043497,15.388357,15.424823,8.574173032,8.56889629,8.563619548,8.558342806,8.198813017,7.839283228,7.479753438,7.06599509,6.652236742,6.238478394,7.218883551,8.199288708,9.179693864,7.999512236,6.819330608,5.639148981,5.639148981,5.639148981 +36,NY,10,WASTE DISPOSAL & RECYCLING,NH3,7.50308,8.21812,8.25288,8.41868,8.604621,8.727198,8.895236,0.044044965,0.186339548,0.328634131,0.470928715,0.361845672,0.252762629,0.143679587,0.125023061,0.106366535,0.087710009,0.231104657,0.374499305,0.517893953,0.513892012,0.509890071,0.50588813,0.50588813,0.50588813 +36,NY,10,WASTE DISPOSAL & RECYCLING,NOX,5.43369,9.24005,10.56207,10.97231,8.88894,7.565962,7.660456,8.006793533,9.389496757,10.77219998,12.1549032,10.65521683,9.155530458,7.655844086,7.239799879,6.823755672,6.407711465,6.631186215,6.854660965,7.078135716,6.711038119,6.343940522,5.976842926,5.976842926,5.976842926 +36,NY,11,HIGHWAY VEHICLES,VOC,469.02545,294.68952,281.72989,273.93428,260.29891,233.58642,223.47493,153.4766684,146.7121818,139.9476951,133.1832085,121.4369191,109.6906297,90.13019741,93.29674736,86.46195386,91.87895048,87.36716434,82.85537821,78.34359208,70.81551411,57.50363188,50.69931111,47.36886636,45.06294038 +36,NY,11,HIGHWAY VEHICLES,SO2,24.57809,13.97539,14.38973,14.56554,14.87426,11.07662,10.90328,8.789140509,7.957080854,7.1250212,6.292961546,3.941200762,1.589439979,1.532238791,1.479084011,1.456251218,1.402046356,1.430194608,1.45834286,1.486491112,1.485958397,1.33175338,1.24255288,0.558768879,0.422473775 +36,NY,11,HIGHWAY VEHICLES,PM25,15.49995,10.04571,9.59073,8.96653,8.41346,7.56996,7.03515,12.02796722,11.74419516,11.4604231,11.17665104,10.46543459,9.754218131,8.691643298,8.456269425,7.315201161,7.529980093,7.288941264,7.047902436,6.806863607,5.993531848,4.442375767,3.848029227,4.411129157,4.225597167 +36,NY,11,HIGHWAY VEHICLES,PM10,18.6328,12.72374,12.30227,11.61349,11.05042,10.17596,9.6086,15.48046811,15.21904555,14.95762298,14.69620041,14.14941915,13.60263789,12.40193112,12.09418906,10.80454252,16.69690516,16.13311196,15.56931876,15.00552556,13.98761871,10.22439905,9.698777957,12.14120957,11.98204264 +36,NY,11,HIGHWAY VEHICLES,NOX,488.42726,402.47809,406.40331,399.73504,388.40894,377.28418,353.172,324.1704339,304.7926598,285.4148858,266.0371118,237.4790614,208.9210109,187.0429495,182.0388055,168.1702035,160.6076176,154.9034929,149.1993682,143.4952435,126.0735122,104.8226468,88.31132777,82.14092918,76.11139345 +36,NY,11,HIGHWAY VEHICLES,NH3,8.07336,11.34405,12.71119,12.24371,12.60688,12.99267,13.26064,7.683295427,7.461794928,7.240294429,7.018793929,6.506214042,5.993634155,5.512224386,5.613189589,4.71122623,4.525474546,4.370355294,4.215236041,4.060116789,3.778023866,3.57002765,3.488082384,3.172841923,3.143544976 +36,NY,11,HIGHWAY VEHICLES,CO,5469.57893,3678.50101,3611.55606,3555.44048,3372.45329,3275.51009,3153.28096,2090.464954,1950.13426,1809.803567,1669.472874,1437.197239,1204.921604,1049.88146,944.6296338,944.091867,847.9119559,848.8920713,849.8721868,850.8523022,785.8273778,645.0886688,548.0645723,567.5044273,555.3981728 +36,NY,12,OFF-HIGHWAY,PM10,13.0132,13.85293,13.73508,13.60079,13.43385,13.21937,13.0554,10.801554,10.44989415,10.0982343,9.746574444,9.849440615,9.952306786,9.229141147,9.433373163,8.966150518,8.328896945,7.767911763,7.206926581,6.645941398,6.025153308,4.945401057,4.783577129,4.607610294,4.431643459 +36,NY,12,OFF-HIGHWAY,CO,1081.46483,1235.47414,1207.13444,1209.76097,1222.33696,1235.16703,1261.96103,1202.312036,1154.212506,1106.112976,1058.013446,1021.679043,985.3446399,1308.003935,849.3698136,821.1775347,804.9333466,782.5655374,760.1977281,737.8299189,690.5258393,594.5075415,595.9176801,600.6610599,605.4044398 +36,NY,12,OFF-HIGHWAY,NH3,1.32509,1.61047,1.63863,1.68956,0.14584,0.14584,0.14584,0.108239347,0.109555259,0.110871171,0.112187083,0.099204111,0.086221139,0.102136767,0.089282939,0.090816665,0.110445392,0.109614938,0.108784485,0.107954032,0.101647904,0.081965078,0.089035648,0.08968546,0.090335273 +36,NY,12,OFF-HIGHWAY,NOX,139.93775,154.88363,154.55387,153.05251,156.11989,155.66444,156.02127,124.681712,121.3903909,118.0990698,114.8077488,118.1980116,121.5882745,113.1134411,123.0744317,120.4892624,107.733754,100.294194,92.85463402,85.41507406,80.71596068,69.85475081,71.31773393,69.26110215,67.20447038 +36,NY,12,OFF-HIGHWAY,PM25,11.93333,12.71056,12.60455,12.48524,12.32633,12.12843,11.97867,9.959965883,9.629292452,9.298619022,8.967945591,9.152386467,9.336827342,8.592154496,8.739935794,8.302451003,7.864277209,7.332707145,6.80113708,6.269567015,5.686309148,4.675852847,4.519793412,4.349741382,4.179689351 +36,NY,12,OFF-HIGHWAY,VOC,133.93628,148.54886,139.5754,135.77481,134.77711,133.65977,132.33699,153.8179884,150.4749272,147.131866,143.7888048,139.5982391,135.4076734,161.813989,122.4956144,118.5667933,110.6533657,103.1131373,95.57290888,88.03268049,76.84995141,57.24749037,54.48449325,53.21701582,51.9495384 +36,NY,12,OFF-HIGHWAY,SO2,15.11838,17.00191,17.54183,18.12068,17.86288,18.02655,18.23408,20.07141494,18.67352366,17.27563237,15.87774109,14.97640838,14.07507567,8.198054422,12.15997726,9.503205133,4.631597134,3.591459643,2.551322152,1.511184661,1.552300998,1.606696836,1.63453367,1.660292192,1.686050715 +36,NY,14,MISCELLANEOUS,PM25,117.71732,63.83115,67.84299,72.19351,77.24946,73.296692,56.979531,28.21973053,28.50819436,28.79665818,29.085122,30.62555739,32.16599277,33.70642815,32.23066709,30.75490602,29.27914496,28.38609706,27.49304916,26.60000126,24.66620529,22.73240933,20.79861336,20.79861336,20.79861336 +36,NY,14,MISCELLANEOUS,CO,9.47126,5.52773,8.5103,10.28985,33.80664,16.67204,18.65539,1.377723,4.486633872,7.595544744,10.70445562,7.651500134,4.598544653,1.545589173,2.347041224,3.148493276,3.949945328,2.679892891,1.409840454,0.139788017,0.157787931,0.175787846,0.19378776,0.19378776,0.19378776 +36,NY,14,MISCELLANEOUS,NH3,42.05537,45.13224,45.10495,46.87605,48.89599,48.78559,50.41222013,49.384863,49.4364129,49.4879628,49.53951271,46.3198699,43.1002271,39.8805843,40.85871407,41.83684384,42.81497361,35.63020758,28.44544156,21.26067553,26.33273139,31.40478725,36.47684312,36.47684312,36.47684312 +36,NY,14,MISCELLANEOUS,PM10,608.73256,320.94541,342.16288,360.67219,374.72657,358.285925,338.9558129,309.8226501,310.1630375,310.5034248,310.8438121,288.9944039,267.1449956,245.2955874,229.4258997,213.5562121,197.6865244,184.3344537,170.9823831,157.6303125,151.7477749,145.8652373,139.9826997,139.9826997,139.9826997 +36,NY,14,MISCELLANEOUS,SO2,0.00127,0.00225,0.00436,0.00853,0.19169,0.09099,0.1027,,,,0.094867889,0.066074023,0.037280157,0.008486291,0.03171048,0.05493467,0.078158859,0.05566964,0.033180421,0.010691203,0.009968633,0.009246063,0.008523493,0.008523493,0.008523493 +36,NY,14,MISCELLANEOUS,VOC,1.78863,0.52248,0.72142,1.33116,1.820664,1.013091,1.106871,0.40090255,1.142376223,1.883849896,2.625323569,1.842290746,1.059257923,0.276225101,0.270949966,0.265674831,0.260399697,0.600398711,0.940397725,1.280396739,1.630624722,1.980852704,2.331080687,2.331080687,2.331080687 +36,NY,14,MISCELLANEOUS,NOX,0.22224,0.10753,0.1679,0.26347,0.72751,0.35992,0.40256,0.03214687,0.101577159,0.171007449,0.240437738,0.190500226,0.140562713,0.090625201,0.137604501,0.184583802,0.231563102,0.175218902,0.118874701,0.062530501,0.046960921,0.031391342,0.015821762,0.015821762,0.015821762 +36,NY,15,WILDFIRES,NH3,,,,,,,,0.004713866,0.004713866,0.004713866,,0,0,0.00759588,0.00759588,0.00759588,0.03756465,0.03756465,0.03756465,0.086910988,0.086910988,0.086910988,0.075560505,0.075560505,0.075560505 +36,NY,15,WILDFIRES,PM10,,,,,,,,0.029383365,0.029383365,0.029383365,,0,0,0.0520903,0.0520903,0.0520903,0.237739993,0.237739993,0.237739993,0.54746146,0.54746146,0.54746146,0.471078061,0.471078061,0.471078061 +36,NY,15,WILDFIRES,PM25,,,,,,,,0.024767855,0.024767855,0.024767855,,0,0,0.0441443,0.0441443,0.0441443,0.201478609,0.201478609,0.201478609,0.46395589,0.46395589,0.46395589,0.399218773,0.399218773,0.399218773 +36,NY,15,WILDFIRES,SO2,,,,,,,,0.001756181,0.001756181,0.001756181,,0,0,0.0054028,0.0054028,0.0054028,0.019046474,0.019046474,0.019046474,0.043130167,0.043130167,0.043130167,0.03564951,0.03564951,0.03564951 +36,NY,15,WILDFIRES,NOX,,,,,,,,0.002735957,0.002735957,0.002735957,,0,0,0.0126934,0.0126934,0.0126934,0.037326637,0.037326637,0.037326637,0.0832916,0.0832916,0.0832916,0.066305571,0.066305571,0.066305571 +36,NY,15,WILDFIRES,VOC,,,,,,,,0.07070415,0.07070415,0.07070415,,0,0,0.109191,0.109191,0.109191,0.540249502,0.540249502,0.540249502,1.249560096,1.249560096,1.249560096,1.086175805,1.086175805,1.086175805 +36,NY,15,WILDFIRES,CO,,,,,,,,0.312408068,0.312408068,0.312408068,,0,0,0.455136,0.455136,0.455136,2.28254374,2.28254374,2.28254374,5.283037144,5.283037144,5.283037144,4.599587602,4.599587602,4.599587602 +36,NY,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,5.382032,5.353047767,5.324063533,5.2950793,6.38056066,7.46604202,8.55152338,8.415585871,8.279648363,8.143710854,8.143710854,8.143710854 +36,NY,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.088906262,0.088290725,0.087675188,0.087059651,0.104869449,0.122679246,0.140489044,0.138331009,0.136172974,0.13401494,0.13401494,0.13401494 +36,NY,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.102943357,0.095350184,0.087757011,0.080163838,0.094677639,0.10919144,0.123705241,0.12561647,0.127527699,0.129438928,0.129438928,0.129438928 +36,NY,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.57385851,0.564482317,0.555106123,0.54572993,0.655889335,0.76604874,0.876208145,0.865742753,0.855277362,0.84481197,0.84481197,0.84481197 +36,NY,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.049468604,0.047049808,0.044631013,0.042212217,0.050278671,0.058345126,0.06641158,0.066541671,0.066671762,0.066801854,0.066801854,0.066801854 +36,NY,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,1.27802635,1.269178393,1.260330437,1.25148248,1.507498118,1.763513757,2.019529395,1.988508996,1.957488596,1.926468197,1.926468197,1.926468197 +36,NY,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.48632117,0.478375157,0.470429143,0.46248313,0.55583831,0.64919349,0.74254867,0.733679777,0.724810885,0.715941992,0.715941992,0.715941992 +37,NC,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01172,0.01221,0.01202,0.024173,0.016927,0.016931,0.124735333,0.12235949,0.119983647,0.117607804,0.13057607,0.143544336,0.156512602,0.172605898,0.188699193,0.204792489,0.204213704,0.203634918,0.203056133,0.229549505,0.256042877,0.282536249,0.282536249,0.282536249 +37,NC,1,FUEL COMB. ELEC. UTIL.,VOC,0.76164,0.79186,0.85494,0.84339,0.972047,1.01504,0.996901,0.993782902,0.993605271,0.993427639,0.993250008,0.998535669,1.003821329,1.00910699,0.982214683,0.955322377,0.933599774,0.913588478,0.893577182,0.873565886,0.870134894,0.866703902,0.863272909,0.863272909,0.863272909 +37,NC,1,FUEL COMB. ELEC. UTIL.,SO2,336.5458,466.14636,469.87542,448.85594,464.500358,459.742371,455.550609,480.8620946,462.04075,472.32017,529.6835145,462.024861,370.688733,234.4609398,184.2752968,134.0896086,83.92509464,72.09269133,60.26028803,48.42788473,41.08961353,33.75134232,26.41307112,15.781884,16.435076 +37,NC,1,FUEL COMB. ELEC. UTIL.,PM25,2.07354,5.20114,6.33317,3.09438,22.326742,21.874391,22.267174,16.38468256,16.70930475,17.03392694,17.35854913,17.20671647,17.05488382,16.90305116,13.57414156,10.24523195,6.920830008,6.150811198,5.380792389,4.61077358,4.108906783,3.607039986,3.105173189,3.105173189,3.105173189 +37,NC,1,FUEL COMB. ELEC. UTIL.,PM10,8.35664,11.42086,13.92292,6.68885,25.980274,25.861269,26.695896,22.63853322,23.10138588,23.56423855,24.02709121,22.97423061,21.92137,20.8685094,16.84065473,12.81280006,8.790036051,7.549832273,6.309628496,5.069424718,4.475389652,3.881354586,3.28731952,3.28731952,3.28731952 +37,NC,1,FUEL COMB. ELEC. UTIL.,NOX,209.40512,272.46336,253.38622,223.90872,207.409378,166.605544,150.19319,159.2611031,132.66363,117.722302,115.6525449,102.493272,58.321406,55.15948242,51.35991438,47.5600698,43.91129687,43.59599289,43.28068892,42.96538494,40.32885699,37.69232904,35.05580109,33.006366,29.298269 +37,NC,1,FUEL COMB. ELEC. UTIL.,CO,6.13723,7.04896,7.59733,7.50586,10.11496,10.529547,10.418099,14.04112934,13.59449342,13.1478575,12.70122158,14.30466277,15.90810397,17.51154517,22.60341763,27.69529008,32.82780751,26.66347557,20.49914363,14.3348117,14.36004336,14.38527501,14.41050667,14.41050667,14.41050667 +37,NC,2,FUEL COMB. INDUSTRIAL,PM10,4.98669,6.05074,5.83025,5.76352,5.633716,5.669711,5.916989,4.633808901,5.061361895,5.488914889,5.916467882,6.19063133,6.464794778,6.738958226,9.74726976,12.75558129,3.827899573,6.832795466,9.83769136,12.84258725,9.303082456,5.763577659,2.224072863,2.224072863,2.224072863 +37,NC,2,FUEL COMB. INDUSTRIAL,CO,9.86609,32.56874,31.34004,31.46191,23.432179,23.302899,24.126379,23.01056455,21.80258781,20.59461106,19.38663431,19.4572396,19.52784488,19.59845016,23.12274321,26.64703625,16.19701264,19.29351967,22.39002671,25.48653374,22.18883039,18.89112705,15.5934237,15.5934237,15.5934237 +37,NC,2,FUEL COMB. INDUSTRIAL,NH3,0.26004,0.24894,0.24207,0.23685,0.277027,0.279697,0.281481,0.158010459,0.170681714,0.18335297,0.196024225,0.158252552,0.120480878,0.082709205,0.164913565,0.247117925,0.074950966,0.123044514,0.171138063,0.219231611,0.198375069,0.177518526,0.156661983,0.156661983,0.156661983 +37,NC,2,FUEL COMB. INDUSTRIAL,NOX,38.67401,52.33591,51.1215,50.32503,47.267042,46.827595,47.085153,36.95786722,34.39736518,31.83686314,29.27636111,29.30947987,29.34259864,29.37571741,30.62674305,31.87776869,24.39284052,23.49267185,22.59250318,21.69233452,18.74461819,15.79690186,12.84918553,12.84918553,12.84918553 +37,NC,2,FUEL COMB. INDUSTRIAL,PM25,2.82753,4.35138,4.18645,4.16133,4.53757,4.574242,4.776359,3.490154668,3.862549413,4.234944158,4.607338903,5.082884389,5.558429875,6.033975361,8.447754171,10.86153298,2.898484464,5.614491537,8.330498611,11.04650568,8.007750219,4.968994754,1.930239289,1.930239289,1.930239289 +37,NC,2,FUEL COMB. INDUSTRIAL,VOC,2.24162,2.28963,2.2391,2.21546,3.310338,3.319764,3.385852,2.469689308,2.306091828,2.142494348,1.978896868,1.781609596,1.584322323,1.387035051,1.569691283,1.752347516,1.500055284,1.55606674,1.612078196,1.668089651,1.591884174,1.515678697,1.43947322,1.43947322,1.43947322 +37,NC,2,FUEL COMB. INDUSTRIAL,SO2,84.9881,81.77411,78.48836,76.60385,64.330009,63.983107,66.208747,43.3250376,42.72298066,42.12092372,41.51886678,37.37843063,33.23799448,29.09755833,24.80316745,20.50877657,12.3537989,10.30381074,8.253822578,6.203834418,5.6207171,5.037599782,4.454482465,4.454482465,4.454482465 +37,NC,3,FUEL COMB. OTHER,PM10,28.14029,12.33874,12.35092,12.25811,12.803507,13.640878,13.667277,11.71951317,11.75150673,11.7835003,11.81549386,10.20429584,8.593097827,6.981899811,6.644531131,6.307162452,4.724494279,5.199458684,5.674423088,6.149387492,7.218588241,8.28778899,9.356989739,9.356989739,9.356989739 +37,NC,3,FUEL COMB. OTHER,VOC,40.3008,27.6833,27.60657,27.45678,26.802754,28.724197,28.733636,24.93876065,22.44321074,19.94766083,17.45211092,13.90712173,10.36213255,6.817143362,6.586497221,6.355851081,4.611181693,5.349306994,6.087432295,6.825557595,8.177233044,9.528908493,10.88058394,10.88058394,10.88058394 +37,NC,3,FUEL COMB. OTHER,PM25,27.88774,11.96436,11.9657,11.88688,12.50999,13.343819,13.366074,11.17178229,11.18599764,11.20021299,11.21442834,9.386782947,7.559137556,5.731492164,5.572629405,5.413766646,4.323263537,4.875754061,5.428244584,5.980735108,7.066489452,8.152243796,9.23799814,9.23799814,9.23799814 +37,NC,3,FUEL COMB. OTHER,NOX,14.66387,17.45715,16.86035,15.41702,10.824328,11.008389,11.116372,12.05793463,12.08727376,12.11661289,12.14595203,11.75890082,11.37184962,10.98479841,10.78674302,10.58868763,9.651787584,10.01131423,10.37084088,10.73036753,10.45812883,10.18589014,9.913651445,9.913651445,9.913651445 +37,NC,3,FUEL COMB. OTHER,NH3,0.20758,0.20623,0.20398,0.18136,0.185354,0.187413,0.189243,0.063434059,0.063616544,0.063799029,0.063981514,0.357106209,0.650230904,0.9433556,0.958588202,0.973820805,0.87827763,0.941867418,1.005457206,1.069046994,1.108603748,1.148160502,1.187717256,1.187717256,1.187717256 +37,NC,3,FUEL COMB. OTHER,CO,210.73339,87.03268,86.76627,86.31941,91.466894,97.609459,97.689169,83.41907661,83.51609854,83.61312048,83.71014242,69.08173217,54.45332192,39.82491167,39.5798475,39.33478334,29.16346199,34.18238222,39.20130245,44.22022268,53.74121536,63.26220804,72.78320071,72.78320071,72.78320071 +37,NC,3,FUEL COMB. OTHER,SO2,12.31981,10.82586,10.99144,10.128,10.447063,10.580134,10.698244,12.135557,12.38117106,12.62678512,12.87239917,11.96120465,11.05001014,10.13881562,8.484082241,6.829348865,7.757246038,5.866547349,3.975848659,2.08514997,1.797411203,1.509672436,1.221933669,1.221933669,1.221933669 +37,NC,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,18.79679,3.96113,4.04519,4.1154,4.421254,4.064297,4.177309,11.59609305,11.74906888,11.90204471,12.05502054,9.157272136,6.259523732,3.361775327,3.062737049,2.76369877,2.755832032,2.805621141,2.855410251,2.90519936,2.941257914,2.977316467,3.013375021,3.013375021,3.013375021 +37,NC,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,8.60088,7.69015,7.73656,7.99384,6.6048,6.756586,6.855575,5.737069188,6.437999492,7.138929796,7.8398601,7.3811434,6.9224267,6.46371,6.144673333,5.825636667,5.50677,5.081543333,4.656316667,4.23109,3.91776396,3.60443792,3.29111188,3.29111188,3.29111188 +37,NC,4,CHEMICAL & ALLIED PRODUCT MFG,CO,10.351,1.49367,1.51364,1.53112,5.09479,5.250158,5.382006,13.95203638,15.54385776,17.13567913,18.7275005,18.023267,17.3190335,16.6148,13.47249678,10.33019355,7.18826033,5.053253663,2.918246997,0.78324033,0.74536833,0.70749633,0.66962433,0.66962433,0.66962433 +37,NC,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.00186,0.00187,0.0019,0.84899,0.868134,0.880735,0.539463587,0.57851213,0.617560673,0.656609216,0.678957497,0.701305779,0.723654061,0.688674214,0.653694367,0.657671939,0.594847101,0.532022263,0.469197425,0.454908962,0.440620498,0.426332035,0.426332035,0.426332035 +37,NC,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.47675,3.26517,3.28632,3.39591,0.81056,0.829221,0.841903,0.859689809,1.04126654,1.22284327,1.40442,1.372393333,1.340366667,1.30834,1.300503333,1.292666667,1.28599,1.21489,1.14379,1.07269,0.991965833,0.911241667,0.8305175,0.8305175,0.8305175 +37,NC,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.52975,0.69599,0.70168,0.72154,0.651634,0.66779,0.679861,1.048832147,1.025007598,1.001183048,0.977358499,0.883368351,0.789378202,0.695388054,0.700425397,0.70546274,0.738226083,0.889102404,1.039978725,1.190855046,1.161334159,1.131813273,1.102292386,1.102292386,1.102292386 +37,NC,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.42915,0.62095,0.62582,0.6429,0.447993,0.459355,0.468079,0.651544746,0.636917839,0.622290931,0.607664023,0.544242402,0.48082078,0.417399159,0.429479633,0.441560107,0.471670581,0.478355155,0.48503973,0.491724304,0.471152627,0.45058095,0.430009274,0.430009274,0.430009274 +37,NC,5,METALS PROCESSING,NH3,,,,,0.067504,0.06749,0.069245,0.059962805,0.053774338,0.047585872,0.041397405,0.039278963,0.037160522,0.03504208,0.032494585,0.02994709,0.027399595,0.029134855,0.030870115,0.032605375,0.030101469,0.027597563,0.025093657,0.025093657,0.025093657 +37,NC,5,METALS PROCESSING,NOX,0.14744,0.09363,0.09553,0.09531,0.281134,0.280307,0.287618,0.200806413,0.224426415,0.248046416,0.271666417,0.285226811,0.298787206,0.3123476,0.3142324,0.3161172,0.324292,0.377144667,0.429997333,0.48285,0.49628933,0.50972866,0.52316799,0.52316799,0.52316799 +37,NC,5,METALS PROCESSING,PM10,0.24663,0.54554,0.55933,0.53977,0.740471,0.732999,0.748481,0.564950822,0.518283804,0.471616787,0.42494977,0.4071461,0.38934243,0.37153876,0.362506792,0.353474825,0.354882857,0.38295974,0.411036624,0.439113507,0.446023044,0.452932582,0.45984212,0.45984212,0.45984212 +37,NC,5,METALS PROCESSING,PM25,0.19682,0.47464,0.48747,0.46879,0.690251,0.683002,0.697486,0.382389406,0.379146466,0.375903526,0.372660585,0.364400295,0.356140005,0.347879714,0.333563851,0.319247988,0.308082124,0.325819816,0.343557508,0.3612952,0.377487965,0.393680729,0.409873493,0.409873493,0.409873493 +37,NC,5,METALS PROCESSING,SO2,0.49228,1.78284,1.79705,1.77103,1.965258,1.962288,1.966438,1.010396096,0.88939949,0.768402884,0.647406278,0.576594869,0.505783459,0.43497205,0.474959403,0.514946757,0.55553411,0.5254551,0.49537609,0.46529708,0.406208677,0.347120273,0.28803187,0.28803187,0.28803187 +37,NC,5,METALS PROCESSING,VOC,1.23559,0.22561,0.22957,0.22489,1.134824,1.130372,1.146158,2.511912608,2.090855076,1.669797545,1.248740013,1.279332609,1.309925204,1.3405178,1.384617533,1.428717267,1.493277,1.300490333,1.107703667,0.914917,0.954765093,0.994613187,1.03446128,1.03446128,1.03446128 +37,NC,5,METALS PROCESSING,CO,34.49455,7.35078,7.42088,7.35103,11.541089,11.536248,11.593538,5.876149231,4.895404694,3.914660157,2.933915621,2.92902398,2.92413234,2.9192407,2.836150467,2.753060233,2.67523,2.562213,2.449196,2.336179,2.464902667,2.593626333,2.72235,2.72235,2.72235 +37,NC,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.24594,0.19965,0.19564,0.16475,0.287365,0.288953,0.27675,0.103540987,0.137557671,0.171574355,0.205591039,0.172791359,0.13999168,0.107192,0.117991449,0.128790898,0.249057347,0.260000655,0.270943962,0.28188727,0.287230091,0.292572912,0.297915732,0.297915732,0.297915732 +37,NC,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.06734,0.20082,0.19734,0.1773,0.157716,0.158803,0.150209,0.139928868,0.170410268,0.200891668,0.231373068,0.210402045,0.189431023,0.16846,0.163512802,0.158565604,0.305908406,0.317194549,0.328480692,0.339766835,0.348388899,0.357010963,0.365633027,0.365633027,0.365633027 +37,NC,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.11331,0.13572,0.13298,0.1096,0.136069,0.137519,0.132619,0.036795623,0.064422252,0.092048882,0.119675511,0.113878296,0.108081082,0.102283867,0.112489623,0.122695378,0.160381133,0.191007569,0.221634004,0.25226044,0.256698331,0.261136221,0.265574112,0.265574112,0.265574112 +37,NC,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.01619,0.3536,0.34784,0.3059,0.38133,0.381317,0.348957,0.174301255,0.207956588,0.241611922,0.275267255,0.21185817,0.148449085,0.08504,0.079737653,0.074435307,0.26336296,0.287707188,0.312051416,0.336395644,0.32627783,0.316160016,0.306042202,0.306042202,0.306042202 +37,NC,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0.0000279,0.0000558,0.0000837,0.0000558,0.0000279,,0,0,0,1.60E-05,3.19E-05,4.79E-05,0.00012517,0.000202449,0.000279727,0.000279727,0.000279727 +37,NC,6,PETROLEUM & RELATED INDUSTRIES,CO,0.11304,0.28365,0.27976,0.24377,1.435473,1.435725,1.312747,0.461231279,0.552103512,0.642975745,0.733847979,0.586248652,0.438649326,0.29105,0.297437603,0.303825207,0.77314281,0.862356747,0.951570683,1.04078462,1.036731778,1.032678936,1.028626093,1.028626093,1.028626093 +37,NC,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.03273,0.41466,0.40853,0.33923,0.256839,0.256818,0.228796,0.283054773,0.345576006,0.408097239,0.470618473,0.368935648,0.267252824,0.16557,0.16222061,0.15887122,0.43203183,0.443219682,0.454407534,0.465595386,0.441201184,0.416806981,0.392412779,0.392412779,0.392412779 +37,NC,7,OTHER INDUSTRIAL PROCESSES,VOC,16.66549,29.78869,30.66014,30.99527,30.890283,31.546356,31.01758951,18.06033007,18.71462045,19.36891082,20.02320119,18.6185761,17.21395101,15.80932591,15.32637826,14.84343061,15.21751016,15.98259775,16.74768535,17.51277294,18.13511925,18.75746557,19.37981188,19.37981188,19.37981188 +37,NC,7,OTHER INDUSTRIAL PROCESSES,CO,17.50263,30.09585,30.61163,31.05034,29.054723,29.646298,31.08667007,9.455818122,9.993260813,10.5307035,11.06814619,9.708014104,8.347882013,6.987749922,6.889237368,6.790724814,5.730846261,9.599477686,13.46810911,17.33674054,16.41961145,15.50248236,14.58535328,14.58535328,14.58535328 +37,NC,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.02409,0.02468,0.0251,0.65544,0.669036,0.677121,0.776694225,0.750412617,0.724131009,0.697849401,0.624134997,0.550420593,0.47670619,0.550290263,0.623874336,0.604831693,0.588365963,0.571900232,0.555434501,0.566353385,0.577272269,0.588191153,0.588191153,0.588191153 +37,NC,7,OTHER INDUSTRIAL PROCESSES,NOX,14.87381,12.69363,13.17506,13.39272,14.091236,14.379037,14.644165,7.363708691,7.954661502,8.545614313,9.136567124,8.945530483,8.754493842,8.563457201,9.052918689,9.542380176,10.26089266,10.62154273,10.98219279,11.34284285,11.23824757,11.13365229,11.02905701,11.02905701,11.02905701 +37,NC,7,OTHER INDUSTRIAL PROCESSES,PM10,12.40552,28.99292,29.40235,32.18105,29.479946,27.263425,29.96304465,26.24476206,26.75883366,27.27290526,27.78697687,23.96843306,20.14988925,16.33134544,15.36461916,14.39789287,14.51468191,14.65779756,14.80091322,14.94402888,15.66691857,16.38980827,17.11269796,17.11269796,17.11269796 +37,NC,7,OTHER INDUSTRIAL PROCESSES,PM25,6.12383,11.38829,11.63748,12.2839,12.212884,11.839926,14.29621783,10.13956468,10.64586181,11.15215894,11.65845607,10.20891783,8.759379592,7.309841353,7.085386821,6.860932289,6.969782497,7.409681131,7.849579765,8.289478399,8.716760747,9.144043095,9.571325444,9.571325444,9.571325444 +37,NC,7,OTHER INDUSTRIAL PROCESSES,SO2,9.38881,16.20591,16.51908,16.78876,14.591781,14.910033,15.168116,5.555055975,5.85153853,6.148021084,6.444503639,5.957820216,5.471136793,4.984453371,4.397750092,3.811046813,3.278991134,3.518854833,3.758718533,3.998582232,3.989449108,3.980315984,3.971182859,3.971182859,3.971182859 +37,NC,8,SOLVENT UTILIZATION,CO,,0.09221,0.09648,0.09684,0.078464,0.07945,0.080737,0.130378017,0.119055253,0.10773249,0.096409726,0.081402184,0.066394642,0.0513871,0.0479652,0.0445433,0.0525614,0.056789667,0.061017933,0.0652462,0.068308463,0.071370727,0.07443299,0.07443299,0.07443299 +37,NC,8,SOLVENT UTILIZATION,VOC,228.12972,243.51142,251.14761,201.1617,202.449493,195.437807,201.790418,164.4097637,162.6177358,160.8257079,159.03368,153.9516831,148.8696862,143.7876894,126.8569167,109.9261441,95.41888642,103.617386,111.8158856,120.0143851,116.9405294,113.8666737,110.7928179,110.7928179,110.7928179 +37,NC,8,SOLVENT UTILIZATION,NOX,,0.0742,0.07543,0.07533,0.141526,0.142013,0.144002,0.228861116,0.19198445,0.155107785,0.118231119,0.101165546,0.084099973,0.0670344,0.063380167,0.059725933,0.0723017,0.075689067,0.079076433,0.0824638,0.097073973,0.111684147,0.12629432,0.12629432,0.12629432 +37,NC,8,SOLVENT UTILIZATION,NH3,,0.00122,0.00122,0.00127,0.04603,0.047101,0.048121,0.037707281,0.037121104,0.036534927,0.03594875,0.031644608,0.027340467,0.023036326,0.025265801,0.027495276,0.074287563,0.073229028,0.072170492,0.071111957,0.075968985,0.080826013,0.085683041,0.085683041,0.085683041 +37,NC,8,SOLVENT UTILIZATION,PM10,0.0178,0.55894,0.59244,0.61168,0.559331,0.594167,0.633003,0.528713723,0.475921545,0.423129367,0.37033719,0.29125319,0.212169191,0.133085192,0.120781869,0.108478546,0.144695323,0.140585,0.136474676,0.132364352,0.149793981,0.167223609,0.184653238,0.184653238,0.184653238 +37,NC,8,SOLVENT UTILIZATION,SO2,,0.00144,0.00148,0.00152,0.006608,0.006495,0.006583,0.025712958,0.01934872,0.012984481,0.006620243,0.004754062,0.002887881,0.0010217,0.000966302,0.000910903,0.030655505,0.023049562,0.01544362,0.007837677,0.00768873,0.007539783,0.007390837,0.007390837,0.007390837 +37,NC,8,SOLVENT UTILIZATION,PM25,0.01473,0.51364,0.54436,0.56276,0.559331,0.594167,0.633003,0.477027264,0.427317599,0.377607934,0.327898268,0.259940576,0.191982884,0.124025192,0.110429838,0.096834484,0.121410541,0.120103059,0.118795577,0.117488095,0.133822854,0.150157613,0.166492372,0.166492372,0.166492372 +37,NC,9,STORAGE & TRANSPORT,CO,1.282,0.01213,0.01266,0.01284,0.685021,0.705856,0.72375,0.0658813,0.1636255,0.2613697,0.3591139,0.906135933,1.453157967,2.00018,2.038325667,2.076471333,2.174367,1.557899667,0.941432333,0.324965,0.266560667,0.208156333,0.149752,0.149752,0.149752 +37,NC,9,STORAGE & TRANSPORT,VOC,41.59918,30.04874,30.11577,30.12634,30.526497,30.192469,30.405173,39.34186646,39.6595408,39.97721514,40.29488947,35.19569472,30.09649997,24.99730522,28.49791741,31.99852961,24.73074992,22.52615988,20.32156985,18.11697981,17.03624152,15.95550322,14.87476493,14.87476493,14.87476493 +37,NC,9,STORAGE & TRANSPORT,SO2,,0.00147,0.00142,0.00142,0.003091,0.003093,0.003164,0.001289683,0.006323789,0.011357894,0.016392,0.020274567,0.024157133,0.0280397,0.020931467,0.013823233,0.0074227,0.0094337,0.0114447,0.0134557,0.010240467,0.007025233,0.00381,0.00381,0.00381 +37,NC,9,STORAGE & TRANSPORT,PM25,0.18154,0.11724,0.1202,0.12171,0.26464,0.269181,0.27427,0.343613427,0.350208249,0.35680307,0.363397891,0.339251773,0.315105654,0.290959535,0.275383886,0.259808238,0.306143469,0.317947092,0.329750715,0.341554338,0.344757223,0.347960108,0.351162992,0.351162992,0.351162992 +37,NC,9,STORAGE & TRANSPORT,PM10,0.21108,0.28434,0.2915,0.29475,0.609568,0.620188,0.630254,0.657850581,0.663190342,0.668530102,0.673869862,0.611224002,0.548578142,0.485932281,0.470267346,0.45460241,0.590107104,0.585104823,0.580102543,0.575100262,0.550291076,0.52548189,0.500672704,0.500672704,0.500672704 +37,NC,9,STORAGE & TRANSPORT,NOX,,0.02989,0.03003,0.03052,0.044461,0.04532,0.046151,0.052951009,0.083488006,0.114025003,0.144562,0.181088,0.217614,0.25414,0.192537,0.130934,0.125011,0.127002667,0.128994333,0.130986,0.117378,0.10377,0.090162,0.090162,0.090162 +37,NC,9,STORAGE & TRANSPORT,NH3,,,,,0.08469,0.086646,0.087932,0.046366797,0.045964431,0.045562065,0.045159698,0.047847749,0.0505358,0.053223851,0.05156538,0.049906909,0.056660508,0.053192345,0.049724182,0.046256019,0.034586748,0.022917477,0.011248206,0.011248206,0.011248206 +37,NC,10,WASTE DISPOSAL & RECYCLING,NH3,1.44863,1.64548,1.6397,1.67568,1.708366,1.7299,1.766847,0.03899575,0.132398278,0.225800807,0.319203335,0.23324073,0.147278125,0.06131552,0.063119893,0.064924266,0.066738739,0.176037175,0.285335611,0.394634046,0.431979978,0.46932591,0.506671842,0.506671842,0.506671842 +37,NC,10,WASTE DISPOSAL & RECYCLING,VOC,37.85994,20.55155,21.55066,22.49274,20.672022,16.905619,16.933541,16.95179847,17.01350926,17.07522006,17.13693085,14.30999643,11.483062,8.656127574,7.637693785,6.619259996,5.605490123,4.603570734,3.601651346,2.599731957,2.688030153,2.776328348,2.864626543,2.864626543,2.864626543 +37,NC,10,WASTE DISPOSAL & RECYCLING,SO2,1.00558,0.59462,0.62179,0.63666,0.58549,0.60398,0.610445,0.488350669,0.504986318,0.521621966,0.538257615,0.474236619,0.410215623,0.346194627,0.312945603,0.279696579,0.250558458,0.239178923,0.227799389,0.216419854,0.211888614,0.207357373,0.202826132,0.202826132,0.202826132 +37,NC,10,WASTE DISPOSAL & RECYCLING,PM25,16.7451,23.13645,24.43938,25.65001,25.609696,19.946274,19.954738,17.77689889,17.77415222,17.77140555,17.76865888,16.19716836,14.62567783,13.0541873,11.83127354,10.60835978,9.378867122,7.015129085,4.651391047,2.28765301,2.80249913,3.317345251,3.832191372,3.832191372,3.832191372 +37,NC,10,WASTE DISPOSAL & RECYCLING,PM10,18.53536,24.12198,25.49105,26.72739,26.711305,21.094502,21.105458,18.7029978,18.7075993,18.7122008,18.7168023,17.50808305,16.29936379,15.09064454,13.77701022,12.4633759,11.12290892,8.323175341,5.523441762,2.723708182,3.221566797,3.719425411,4.217284025,4.217284025,4.217284025 +37,NC,10,WASTE DISPOSAL & RECYCLING,NOX,5.11764,5.77477,6.08701,6.42236,6.414766,4.686858,4.697264,4.195012143,4.305075078,4.415138014,4.525200949,4.329581432,4.133961916,3.938342399,3.525882881,3.113423364,2.720360062,2.090145422,1.459930781,0.82971614,0.851474306,0.873232472,0.894990638,0.894990638,0.894990638 +37,NC,10,WASTE DISPOSAL & RECYCLING,CO,70.07795,152.82475,160.7412,170.84001,168.429592,108.301787,108.325016,104.1999267,104.3389283,104.4779299,104.6169315,103.1614115,101.7058915,100.2503714,89.10507461,77.95977778,66.92657789,50.12873942,33.33090095,16.53306248,16.62570445,16.71834642,16.81098838,16.81098838,16.81098838 +37,NC,11,HIGHWAY VEHICLES,SO2,13.82661,9.86841,10.27635,10.50094,10.82857,9.98055,10.236,10.62897456,9.190463169,7.751951783,6.313440396,3.771918865,1.230397334,1.19030088,1.070534843,1.08880421,1.083973927,1.092071691,1.100169456,1.10826722,1.136328081,1.244522683,1.132328033,0.487844587,0.365592501 +37,NC,11,HIGHWAY VEHICLES,PM25,8.78715,7.78543,7.44227,6.96129,6.5409,6.03816,5.65992,9.581714368,9.484187039,9.386659711,9.289132383,9.068400108,8.847667834,7.895426593,6.895032983,6.073200241,5.671894085,5.311479992,4.951065898,4.590651805,4.185485365,3.244774359,3.115479719,3.205481837,3.052898135 +37,NC,11,HIGHWAY VEHICLES,NH3,4.40739,7.45774,8.49124,8.29743,8.66042,8.91878,9.19597,4.286973649,4.236962084,4.18695052,4.136938955,4.555371237,4.973803519,4.638461974,4.242279427,3.974086835,4.488582282,4.357234801,4.225887319,4.094539838,3.981359058,3.841476124,3.794932786,3.515614753,3.437294864 +37,NC,11,HIGHWAY VEHICLES,CO,3192.56497,2506.55369,2445.57419,2390.87364,2252.67068,2220.80605,2178.2894,1616.105078,1548.321338,1480.537597,1412.753857,1534.295287,1655.836718,1424.956828,891.8065924,1044.245386,1147.370536,1071.909572,996.4486082,920.9876443,882.8921926,769.7894344,741.4078018,668.561234,647.7656088 +37,NC,11,HIGHWAY VEHICLES,PM10,10.52707,9.68138,9.3779,8.86661,8.45307,7.92573,7.53764,11.67799901,11.62587547,11.57375192,11.52162838,11.25617757,10.99072675,9.97926096,8.801505867,7.977834198,11.47659178,10.66160392,9.84661606,9.031628201,8.730223442,7.188658856,7.045387154,7.867040362,7.752935017 +37,NC,11,HIGHWAY VEHICLES,NOX,268.89085,286.61655,292.47368,290.76684,285.38024,280.64315,266.94946,326.8161492,308.066305,289.3164609,270.5666167,273.9527082,277.3387998,253.849041,206.700338,186.7134622,204.108666,189.1728253,174.2369847,159.3011441,145.8028134,120.7214131,116.2282465,94.23000765,85.0512545 +37,NC,11,HIGHWAY VEHICLES,VOC,280.10572,196.33095,192.32277,191.87209,187.34522,180.25888,177.02384,120.846676,115.3773801,109.9080842,104.4387883,123.9129957,143.3872031,122.5028784,93.22570281,105.1487206,113.0866294,103.5914271,94.09622489,84.60102265,79.62671364,67.07644824,64.65770123,55.33038507,53.2639659 +37,NC,12,OFF-HIGHWAY,PM10,7.13892,7.44262,7.35167,7.26848,7.07836,7.0148,6.89953,17.09846326,13.69554781,10.29263237,6.889716922,6.614244852,6.338772783,6.068579786,6.040121008,5.828856871,5.74206235,5.363931069,4.985799789,4.607668508,4.209823646,3.575070831,3.414133922,3.291828264,3.169522607 +37,NC,12,OFF-HIGHWAY,VOC,72.34036,80.13628,74.6536,72.42261,71.87697,71.50862,70.92102,90.443963,88.6289257,86.81388841,84.99885111,80.98845322,76.97805532,74.79801917,69.16992204,66.99535666,63.28313617,58.66569258,54.048249,49.43080542,44.98830414,37.86175649,36.10330159,35.12354548,34.14378938 +37,NC,12,OFF-HIGHWAY,PM25,6.54384,6.82483,6.74309,6.6695,6.48975,6.43117,6.32389,14.53246332,11.85499484,9.177526365,6.500057888,6.243225212,5.986392536,5.655814541,5.6286657,5.428706812,5.434927144,5.07145709,4.707987035,4.344516981,3.971473416,3.380499461,3.225386285,3.107540792,2.989695298 +37,NC,12,OFF-HIGHWAY,NOX,69.5604,77.62237,78.40443,78.39294,76.49933,78.3044,78.21142,135.1523841,117.1596423,99.16690055,81.17415879,76.25266587,71.33117294,70.33761264,70.44118842,68.50018362,68.43313562,64.44655771,60.45997979,56.47340187,52.14541323,44.44100228,43.48943595,42.38392994,41.27842393 +37,NC,12,OFF-HIGHWAY,CO,640.55848,725.56855,704.13686,704.16336,711.17363,718.97697,734.0162,761.3003814,741.2337266,721.1670719,701.1004172,674.7911985,648.4819797,637.1000545,516.3536608,489.1351025,479.33526,461.9080696,444.4808793,427.0536889,411.9410083,381.9532192,381.7156471,383.9802356,386.244824 +37,NC,12,OFF-HIGHWAY,NH3,0.91858,1.08526,1.09516,1.12766,0.08707,0.08707,0.08707,0.060706478,0.061619789,0.0625331,0.063446411,0.063799022,0.064151633,0.065448196,0.066238121,0.067309868,0.070653295,0.068005323,0.065357351,0.062709379,0.061544729,0.055347716,0.059215431,0.059886123,0.060556815 +37,NC,12,OFF-HIGHWAY,SO2,5.86111,7.22647,7.36639,7.55746,7.3638,7.7481,7.89081,38.13537383,28.38574335,18.63611286,8.886482374,7.100665741,5.314849107,3.288959998,3.543811405,1.892022404,2.472419487,2.567785034,2.66315058,2.758516126,2.195842915,1.027390907,1.070496493,1.09539846,1.120300427 +37,NC,14,MISCELLANEOUS,PM25,74.996,62.9382,70.15065,72.89695,71.23059,72.742022,58.9487473,30.01961591,36.7417414,43.46386689,50.18599237,42.03966659,33.89334081,25.74701502,27.79076077,29.83450652,31.87825227,29.02258994,26.1669276,23.31126527,24.19412277,25.07698028,25.95983778,25.95983778,25.95983778 +37,NC,14,MISCELLANEOUS,VOC,55.85845,67.90638,69.55397,74.56438,69.934862,70.705697,72.279291,68.8038827,86.18410926,103.5643358,120.9445624,80.87309792,40.80163347,0.730169016,0.879821865,1.029474714,1.179127563,5.036986262,8.894844961,12.75270366,13.58494611,14.41718855,15.249431,15.249431,15.249431 +37,NC,14,MISCELLANEOUS,NH3,94.7755,150.40973,160.91564,171.18641,180.15858,190.61297,156.610098,158.7432759,159.9524365,161.1615972,162.3707579,164.4237427,166.4767275,168.5297123,168.2097832,167.8898541,167.569925,165.899817,164.2297091,162.5596011,172.4632038,182.3668065,192.2704092,192.2704092,192.2704092 +37,NC,14,MISCELLANEOUS,NOX,9.09324,9.77073,10.34081,11.31812,10.88311,11.14108,11.75874,9.05188,10.61420413,12.17652827,13.7388524,9.279455206,4.820058013,0.360660821,0.434000266,0.507339712,0.580679157,0.464835423,0.348991689,0.233147954,0.221362059,0.209576163,0.197790268,0.197790268,0.197790268 +37,NC,14,MISCELLANEOUS,CO,407.70605,475.62631,509.17948,544.5954,534.59893,548.844731,579.981418,456.05706,528.9478189,601.8385778,674.7293366,452.4356696,230.1420025,7.848335492,10.50000515,13.15167482,15.80334448,12.30953112,8.815717766,5.321904411,5.071588076,4.82127174,4.570955405,4.570955405,4.570955405 +37,NC,14,MISCELLANEOUS,PM10,336.93395,255.06376,273.1745,273.80409,278.0774,280.839532,252.249465,225.53671,233.4691919,241.4016738,249.3341557,238.5606593,227.787163,217.0136666,200.7349831,184.4562996,168.1776161,164.0557655,159.9339149,155.8120644,165.9907535,176.1694426,186.3481317,186.3481317,186.3481317 +37,NC,14,MISCELLANEOUS,SO2,0.068,0.02871,0.04556,0.08269,0.54452,0.61532,0.78474,0.22404,0.902127958,1.580215916,2.258303874,1.521204788,0.784105702,0.047006617,0.07057857,0.094150523,0.117722477,0.106986864,0.096251252,0.08551564,0.086854615,0.08819359,0.089532565,0.089532565,0.089532565 +37,NC,15,WILDFIRES,CO,,,,,,,,5.25113,5.25113,5.25113,0.579067578,0.579067578,0.579067578,1685.910568,1685.910568,1685.910568,63.24259783,63.24259783,63.24259783,34.92711491,34.92711491,34.92711491,45.45422568,45.45422568,45.45422568 +37,NC,15,WILDFIRES,VOC,,,,,,,,1.19865,1.19865,1.19865,0.139242975,0.139242975,0.139242975,393.1816733,393.1816733,393.1816733,5.096162631,5.096162631,5.096162631,8.239277831,8.239277831,8.239277831,10.78857034,10.78857034,10.78857034 +37,NC,15,WILDFIRES,SO2,,,,,,,,0.032182084,0.032182084,0.032182084,0.007224285,0.007224285,0.007224285,8.065306195,8.065306195,8.065306195,0.72924575,0.72924575,0.72924575,0.261262988,0.261262988,0.261262988,0.41223894,0.41223894,0.41223894 +37,NC,15,WILDFIRES,PM25,,,,,,,,0.42488,0.42488,0.42488,0.057031684,0.057031684,0.057031684,134.0405421,134.0405421,134.0405421,8.872890435,8.872890435,8.872890435,3.008105883,3.008105883,3.008105883,4.093502902,4.093502902,4.093502902 +37,NC,15,WILDFIRES,PM10,,,,,,,,0.50261,0.50261,0.50261,0.067297387,0.067297387,0.067297387,158.1629434,158.1629434,158.1629434,10.30365098,10.30365098,10.30365098,3.549563818,3.549563818,3.549563818,4.830343836,4.830343836,4.830343836 +37,NC,15,WILDFIRES,NOX,,,,,,,,0.054538546,0.054538546,0.054538546,0.01729543,0.01729543,0.01729543,7.981229452,7.981229452,7.981229452,2.659599565,2.659599565,2.659599565,0.472608164,0.472608164,0.472608164,0.851257283,0.851257283,0.851257283 +37,NC,15,WILDFIRES,NH3,,,,,,,,0.080783262,0.080783262,0.080783262,0.009686468,0.009686468,0.009686468,27.3591613,27.3591613,27.3591613,0.557658097,0.557658097,0.557658097,0.573161396,0.573161396,0.573161396,0.750505335,0.750505335,0.750505335 +37,NC,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,3.55462529,2.426113114,1.297600938,0.169088761,0.801822581,1.434556401,2.06729022,1.921649132,1.776008043,1.630366954,1.630366954,1.630366954 +37,NC,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,3.642236113,2.696965121,1.751694128,0.806423136,1.117273155,1.428123175,1.738973195,1.6867162,1.634459204,1.582202209,1.582202209,1.582202209 +37,NC,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,22.57191795,16.13038684,9.688855721,3.247324607,6.441376778,9.635428949,12.82948112,11.9808149,11.13214868,10.28348246,10.28348246,10.28348246 +37,NC,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,215.7524694,151.4483044,87.1441394,22.8399744,57.20437738,91.56878036,125.9331833,116.9766552,108.020127,99.06359883,99.06359883,99.06359883 +37,NC,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,19.12874414,13.70953357,8.290323004,2.871112436,5.538222185,8.205331935,10.87244168,10.15323274,9.434023799,8.714814857,8.714814857,8.714814857 +37,NC,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,1.834921236,1.296986162,0.759051089,0.221116015,0.464976334,0.708836653,0.952696972,0.906779523,0.860862075,0.814944626,0.814944626,0.814944626 +37,NC,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,51.09766559,34.59008154,18.08249749,1.574913435,10.95570702,20.33650061,29.7172942,27.62370416,25.53011412,23.43652409,23.43652409,23.43652409 +38,ND,1,FUEL COMB. ELEC. UTIL.,NOX,100.55321,106.57832,93.88354,98.53082,79.85967,77.910931,79.410581,75.9499,75.303074,77.589765,76.38393138,72.405771,70.163705,68.05352,62.5109,56.96828,51.42566,49.78060667,48.13555333,46.4905,42.36083333,38.23116667,34.1015,33.779368,30.283617 +38,ND,1,FUEL COMB. ELEC. UTIL.,VOC,0.75569,0.82229,0.79192,0.83732,0.8593,0.871103,0.861988,0.78086,0.774856922,0.768853843,0.762850765,0.770007177,0.777163588,0.78432,0.773953333,0.763586667,0.75322,0.724646667,0.696073333,0.6675,0.6613,0.6551,0.6489,0.6489,0.6489 +38,ND,1,FUEL COMB. ELEC. UTIL.,PM10,3.32212,3.59008,3.55266,3.45784,6.703806,6.84607,7.94062,7.625287,7.59560767,7.56592834,7.53624901,5.572297541,3.608346072,1.644394603,2.251029214,2.857663825,3.464298437,3.58034526,3.696392082,3.812438905,3.704741045,3.597043186,3.489345326,3.489345326,3.489345326 +38,ND,1,FUEL COMB. ELEC. UTIL.,PM25,1.62735,2.08826,2.0706,1.87392,5.202777,5.140606,6.468093,6.4785481,6.451527064,6.424506029,6.397484993,4.389833524,2.382182056,0.374530587,1.100904614,1.827278642,2.55365267,2.606955789,2.660258909,2.713562028,2.766932262,2.820302495,2.873672729,2.873672729,2.873672729 +38,ND,1,FUEL COMB. ELEC. UTIL.,SO2,124.61121,177.61668,177.57757,195.53012,189.75571,150.941115,156.09783,140.5346999,139.822769,148.726823,137.3719046,128.879174,136.263253,133.81131,120.08581,106.36031,92.63481,78.61467333,64.59453667,50.5744,47.2593,43.9442,40.6291,39.560657,32.931302 +38,ND,1,FUEL COMB. ELEC. UTIL.,CO,6.5749,9.58163,9.29878,7.05203,7.1535,7.350092,7.211197,5.23793,5.210193323,5.182456645,5.154719968,6.034656645,6.914593323,7.79453,7.557563333,7.320596667,7.08363,6.856553333,6.629476667,6.4024,6.328366667,6.254333333,6.1803,6.1803,6.1803 +38,ND,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00919,0.0087,0.00818,0.00789,0.008322,0.008072,0.3783667,0.339707734,0.301048767,0.262389801,0.298059087,0.333728374,0.36939766,0.306948903,0.244500147,0.18205139,0.184652503,0.187253617,0.18985473,0.17620982,0.16256491,0.14892,0.14892,0.14892 +38,ND,2,FUEL COMB. INDUSTRIAL,SO2,81.98206,114.26465,108.92792,106.4241,109.16406,108.024286,112.63904,15.55370985,13.38768985,11.22166985,9.055649846,8.643647231,8.231644615,7.819642,7.09888867,6.378135339,4.530982009,4.564275925,4.597569841,4.630863757,23.68050144,42.73013912,61.7797768,61.7797768,61.7797768 +38,ND,2,FUEL COMB. INDUSTRIAL,CO,4.3874,4.70651,4.48674,4.41837,4.54599,4.480383,4.574162,4.693545226,4.270531892,3.847518559,3.424505226,3.35550815,3.286511075,3.217514,3.35195791,3.48640182,3.62084573,4.246365493,4.871885255,5.497405017,8.281118491,11.06483196,13.84854544,13.84854544,13.84854544 +38,ND,2,FUEL COMB. INDUSTRIAL,NH3,0.02832,0.03439,0.03315,0.03264,0.03336,0.033902,0.034354,0.058036036,0.058036036,0.058036036,0.058036036,0.062024024,0.066012012,0.07,0.10754536,0.14509072,0.18263608,0.171691403,0.160746725,0.149802047,0.188483891,0.227165735,0.265847578,0.265847578,0.265847578 +38,ND,2,FUEL COMB. INDUSTRIAL,NOX,25.4347,23.36248,22.22394,21.87191,22.5005,22.267788,22.744171,11.0241013,10.2350113,9.445921303,8.656831303,8.881246202,9.105661101,9.330076,8.642703307,7.955330613,7.26795792,6.515052424,5.762146928,5.009241433,13.69578224,22.38232305,31.06886385,31.06886385,31.06886385 +38,ND,2,FUEL COMB. INDUSTRIAL,PM10,2.59745,2.07847,2.01744,1.98222,3.167586,3.146306,3.198821,1.157196614,0.994200682,0.831204751,0.66820882,0.960255011,1.252301203,1.544347394,1.352375454,1.160403514,0.968431575,0.927056916,0.885682258,0.8443076,7.946304027,15.04830045,22.15029688,22.15029688,22.15029688 +38,ND,2,FUEL COMB. INDUSTRIAL,PM25,1.36056,0.78593,0.79557,0.7871,1.937498,1.950265,1.93238,1.037812836,0.894008575,0.750204313,0.606400052,0.839752757,1.073105461,1.306458165,1.149749202,0.993040238,0.836331274,0.794829873,0.753328471,0.71182707,2.163935463,3.616043855,5.068152248,5.068152248,5.068152248 +38,ND,2,FUEL COMB. INDUSTRIAL,VOC,2.28,0.22685,0.21607,0.21257,0.2182,0.217103,0.220026,0.411544599,0.347747932,0.283951265,0.220154599,0.260557732,0.300960866,0.341364,0.347590908,0.353817817,0.360044725,0.383341853,0.406638981,0.429936108,0.761543002,1.093149895,1.424756789,1.424756789,1.424756789 +38,ND,3,FUEL COMB. OTHER,NH3,0.02211,0.02221,0.02161,0.01969,0.02018,0.020216,0.020278,0.008849279,0.008849279,0.008849279,0.008849279,0.058175266,0.107501253,0.15682724,0.16125358,0.16567992,0.167802191,0.172819915,0.177837638,0.182855362,0.165938334,0.149021306,0.132104278,0.132104278,0.132104278 +38,ND,3,FUEL COMB. OTHER,SO2,3.21656,6.61887,6.78176,7.02591,7.307351,7.4434,7.599878,3.051990844,3.051990844,3.051990844,3.051990844,2.224812264,1.397633684,0.570455105,0.539646847,0.508838589,0.47758802,0.387993739,0.298399457,0.208805176,0.815774031,1.422742885,2.02971174,2.02971174,2.02971174 +38,ND,3,FUEL COMB. OTHER,CO,4.85124,13.15572,13.21912,13.22791,18.276728,19.109868,19.099289,17.87405941,17.87405941,17.87405941,17.87405941,14.11324398,10.35242854,6.591613104,6.587504397,6.58339569,6.397583999,7.100031898,7.802479797,8.504927695,6.767658452,5.030389209,3.293119965,3.293119965,3.293119965 +38,ND,3,FUEL COMB. OTHER,PM25,0.52131,1.85005,1.85536,1.86572,2.092814,2.215586,2.224503,2.162035471,2.162035471,2.162035471,2.162035471,1.697610389,1.233185308,0.768760227,0.738499968,0.708239708,0.649498247,0.842776224,1.036054202,1.229332179,0.960581578,0.691830976,0.423080374,0.423080374,0.423080374 +38,ND,3,FUEL COMB. OTHER,VOC,0.77499,4.90487,4.91191,4.91141,5.017813,5.364563,5.364193,5.071937769,4.497650018,3.923362268,3.349074517,2.57327066,1.797466804,1.021662947,0.984085374,0.946507802,0.886811478,1.060978952,1.235146426,1.4093139,1.084385229,0.759456559,0.434527888,0.434527888,0.434527888 +38,ND,3,FUEL COMB. OTHER,NOX,1.92488,2.30674,2.26843,2.17837,2.662804,2.697847,2.724829,2.584954636,2.584954636,2.584954636,2.584954636,2.116205966,1.647457296,1.178708626,1.387512697,1.596316769,1.801760292,1.615712536,1.429664781,1.243617026,1.534452304,1.825287582,2.11612286,2.11612286,2.11612286 +38,ND,3,FUEL COMB. OTHER,PM10,0.63761,1.88505,1.89136,1.90128,2.156201,2.278959,2.287871,2.544500843,2.544500843,2.544500843,2.544500843,1.957194594,1.369888345,0.782582096,0.753616757,0.724651418,0.667204877,0.85646603,1.045727184,1.234988338,1.060193239,0.885398141,0.710603042,0.710603042,0.710603042 +38,ND,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.387,0.0035,0.00351,0.00352,0.00354,0.003575,0.003646,0,0,0,0,0.013966667,0.027933333,0.0419,0.0446,0.0473,0.1524912,0.141027467,0.129563733,0.1181,0.115966667,0.113833333,0.1117,0.1117,0.1117 +38,ND,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +38,ND,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.464,0.0026,0.00261,0.00261,0.00262,0.002646,0.002699,0,0,0,0,0.000843333,0.001686667,0.00253,0.004053333,0.005576667,0.1811,0.139433333,0.097766667,0.0561,0.0704,0.0847,0.099,0.099,0.099 +38,ND,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.1,0.0051,0.00512,0.00513,0.014238,0.014381,0.014665,,0,0,,0.02211751,0.04423502,0.06635253,0.073001687,0.079650843,0.0863,0.1013,0.1163,0.1313,0.1453,0.1593,0.1733,0.1733,0.1733 +38,ND,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.00651,0.0051,0.00512,0.00513,0.014238,0.014381,0.014665,,0,0,,0.020908273,0.041816547,0.06272482,0.069383933,0.076043047,0.08270216,0.096350377,0.109998593,0.12364681,0.135031207,0.146415603,0.1578,0.1578,0.1578 +38,ND,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,3.768,0.3633,0.36453,0.36576,0.36698,0.37065,0.377989,0.283,0.283,0.283,0.283,0.188668333,0.094336667,0.000005,3.33E-06,1.67E-06,0.001,0.0031,0.0052,0.0073,0.0077,0.0081,0.0085,0.0085,0.0085 +38,ND,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.063,0.00511,0.00511,0.00524,0.00524,0.005412,0.005414,0.01523,0.01523,0.01523,0.01523,0.090509667,0.165789333,0.241069,0.257746,0.274423,0.6951,0.685633333,0.676166667,0.6667,0.586766667,0.506833333,0.4269,0.4269,0.4269 +38,ND,6,PETROLEUM & RELATED INDUSTRIES,CO,0.015,0.0154,0.01545,0.0155,0.01555,0.015706,0.016017,0.0082,0.0082,0.0082,0.0082,0.020066667,0.031933333,0.0438,1.70170978,3.35961956,14.34920912,19.05082565,23.75244219,28.45405872,27.98840071,27.5227427,27.05708469,27.05708469,27.05708469 +38,ND,6,PETROLEUM & RELATED INDUSTRIES,VOC,3.405,2.09195,2.14321,2.14321,2.14207,2.147655,2.158027,0.39936,0.39936,0.39936,0.39936,0.411373333,0.423386667,0.4354,32.70787849,64.98035697,187.0996385,283.1007794,379.1019204,475.1030614,437.728977,400.3548926,362.9808082,362.9808082,362.9808082 +38,ND,6,PETROLEUM & RELATED INDUSTRIES,SO2,7.978,0.7674,0.76999,0.77258,0.77518,0.782933,0.798436,2.16189,1.560726667,0.959563333,0.3584,0.2535,0.1486,0.0437,0.190503356,0.337306711,2.19880007,2.483213779,2.767627488,3.052041197,3.105524046,3.159006895,3.212489744,3.212489744,3.212489744 +38,ND,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.00165,0.00124,0.00124,0.00124,0.002095,0.002115,0.002157,0.000602,0.000602,0.000602,0.000602,0.01886889,0.037135779,0.055402669,0.123509063,0.191615457,0.619604256,0.800565826,0.981527396,1.162488966,0.935938926,0.709388886,0.482838845,0.482838845,0.482838845 +38,ND,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.002,0.0015,0.0015,0.00151,0.002355,0.002378,0.002425,0.000714,0.000714,0.000714,0.000714,0.019010223,0.037306446,0.055602669,0.135848525,0.21609438,0.667372249,0.851778165,1.03618408,1.220589996,0.987001165,0.753412335,0.519823505,0.519823505,0.519823505 +38,ND,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0.0001,0.0002,0.0003,0.0003,0.0003,0.0003,0.00085065,0.001401301,0.001951951,0.001951951,0.001951951 +38,ND,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.075,0.0342,0.03432,0.03443,0.03455,0.034895,0.035587,0.0097,0.0097,0.0097,0.0097,0.023533333,0.037366667,0.0512,2.105357749,4.159515498,18.70319794,24.34046038,29.97772282,35.61498526,29.64918587,23.68338648,17.71758708,17.71758708,17.71758708 +38,ND,7,OTHER INDUSTRIAL PROCESSES,PM25,0.81521,1.1088,1.10816,1.20134,6.040537,6.428069,6.604518596,5.886470878,5.837162197,5.787853515,5.738544833,4.494732197,3.250919561,2.007106925,1.964480692,1.921854459,1.918228225,2.010903427,2.103578629,2.196253831,2.234786879,2.273319928,2.311852976,2.311852976,2.311852976 +38,ND,7,OTHER INDUSTRIAL PROCESSES,SO2,0.448,0.86432,0.88919,0.8954,0.90164,0.926886,0.944918,0.113877282,0.880671521,1.647465761,2.41426,1.738926333,1.063592667,0.388259,0.369259333,0.350259667,0.33126,0.347973333,0.364686667,0.3814,0.3484,0.3154,0.2824,0.2824,0.2824 +38,ND,7,OTHER INDUSTRIAL PROCESSES,VOC,0.1611,0.1626,0.16936,0.16937,0.16938,0.176133,0.200373824,0.682562733,0.643716067,0.6048694,0.566022733,0.779089732,0.992156731,1.20522373,1.086249312,0.967274894,0.848300476,1.092406209,1.336511943,1.580617676,1.412959623,1.245301569,1.077643515,1.077643515,1.077643515 +38,ND,7,OTHER INDUSTRIAL PROCESSES,NOX,0.381,0.2205,0.22681,0.22843,0.23004,0.236476,0.241076,0.1354,0.103266667,0.071133333,0.039,0.152839,0.266678,0.380517,0.365588,0.350659,0.33573,0.356982024,0.378234048,0.399486072,0.419041739,0.438597407,0.458153075,0.458153075,0.458153075 +38,ND,7,OTHER INDUSTRIAL PROCESSES,CO,0.248,0.9705,0.99842,1.00541,1.0124,1.040746,1.129982437,1.362311963,1.001721963,0.641131963,0.280541963,1.587679095,2.894816227,4.201953359,3.474555966,2.747158573,2.01976118,2.320305485,2.620849789,2.921394093,3.498067148,4.074740202,4.651413257,4.651413257,4.651413257 +38,ND,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00103,0.00106,0.00107,0.00107,0.0011,0.001121,0.1385045,0.143402667,0.148300833,0.153199,2.079466,4.005733,5.932,5.819600833,5.707201667,5.5948025,4.035844333,2.476886167,0.917928,1.226519547,1.535111093,1.84370264,1.84370264,1.84370264 +38,ND,7,OTHER INDUSTRIAL PROCESSES,PM10,3.21109,4.43899,4.40569,4.86422,28.214417,30.095707,30.28590837,28.29546552,28.17951667,28.06356781,27.94761896,22.03974126,16.13186355,10.22398585,10.25490225,10.28581866,10.48167337,10.70573637,10.92979936,11.15386235,11.11554522,11.07722808,11.03891094,11.03891094,11.03891094 +38,ND,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +38,ND,8,SOLVENT UTILIZATION,NOX,,,,,,,,,0,0,,0.001163333,0.002326667,0.00349,0.00326,0.00303,0.0028,0.002066667,0.001333333,0.0006,0.0004,0.0002,0,0,0 +38,ND,8,SOLVENT UTILIZATION,PM10,,,,,,,,,0,0,,0.00064,0.00128,0.00192,0.00178,0.00164,0.0015,0.001120513,0.000741025,0.000361538,0.000482051,0.000602564,0.000723077,0.000723077,0.000723077 +38,ND,8,SOLVENT UTILIZATION,PM25,,,,,,,,,0,0,,0.00064,0.00128,0.00192,0.001774326,0.001628652,0.001482979,0.001088652,0.000694326,0.0003,0.0004,0.0005,0.0006,0.0006,0.0006 +38,ND,8,SOLVENT UTILIZATION,SO2,,,,,,,,,0,0,,3.33E-06,6.67E-06,0.00001,6.67E-06,3.33E-06,0,0,0,,0,0,0,0,0 +38,ND,8,SOLVENT UTILIZATION,VOC,30.056,43.98836,44.16333,45.45442,44.59864,44.456514,47.111329,4.7904591,4.7904591,4.7904591,4.7904591,8.62353603,12.45661296,16.28968989,16.22535074,16.16101159,16.08591701,16.92811692,17.77031684,18.61251675,20.68041401,22.74831126,24.81620851,24.81620851,24.81620851 +38,ND,8,SOLVENT UTILIZATION,CO,,,,,,,,,0,0,,0.00068,0.00136,0.00204,0.00156,0.00108,0.0006,0.0006,0.0006,0.0006,0.0004,0.0002,0,0,0 +38,ND,9,STORAGE & TRANSPORT,CO,0.168,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0.000266667,0.000533333,0.0008,0.0008,0.0008 +38,ND,9,STORAGE & TRANSPORT,VOC,12.83,8.23209,8.47924,8.47954,8.37599,8.426525,8.519336,3.883771879,3.879738545,3.875705212,3.871671879,3.639208767,3.406745655,3.174282543,3.534964862,3.895647181,3.645004409,3.836085016,4.027165623,4.21824623,3.91562151,3.61299679,3.31037207,3.31037207,3.31037207 +38,ND,9,STORAGE & TRANSPORT,SO2,,,,,,,,0,0,0,,0.001,0.002,0.003,1.244666667,2.486333333,3.728,3.1259,2.5238,1.9217,1.28275,0.6438,0.00485,0.00485,0.00485 +38,ND,9,STORAGE & TRANSPORT,PM25,0.01663,0.02113,0.0212,0.02127,0.025337,0.025591,0.026098,,0,0,,0.011794893,0.023589787,0.03538468,0.038566262,0.041747843,0.044929425,0.298292283,0.551655142,0.805018,0.544251804,0.283485608,0.022719412,0.022719412,0.022719412 +38,ND,9,STORAGE & TRANSPORT,PM10,0.057,0.0465,0.04666,0.04681,0.050967,0.051477,0.052496,,0,0,,0.012338423,0.024676847,0.03701527,0.069443513,0.101871757,0.1343,0.391166667,0.648033333,0.9049,0.61225,0.3196,0.02695,0.02695,0.02695 +38,ND,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0.044666667,0.089333333,0.134,0.133666667,0.133333333,0.133,0.088666667,0.044333333,0,0,0 +38,ND,9,STORAGE & TRANSPORT,NOX,,,,,,,,0,0,0,,3.33E-05,6.67E-05,0.0001,1.1034,2.2067,3.31,3.222633333,3.135266667,3.0479,2.0321,1.0163,0.0005,0.0005,0.0005 +38,ND,10,WASTE DISPOSAL & RECYCLING,VOC,3.00872,0.77589,0.81757,0.81276,0.80171,0.761505,0.761669,0.887208761,0.887208761,0.887208761,0.887208761,0.663957182,0.440705603,0.217454023,0.206850063,0.196246102,0.185642141,0.255284646,0.32492715,0.394569655,0.375744135,0.356918615,0.338093096,0.338093096,0.338093096 +38,ND,10,WASTE DISPOSAL & RECYCLING,CO,9.23599,2.81114,3.10281,3.03268,2.96472,2.298387,2.302786,2.282499699,2.282499699,2.282499699,2.282499699,1.958620829,1.63474196,1.31086309,1.316015059,1.321167029,1.326318998,1.884223938,2.442128878,3.000033817,2.624801288,2.249568759,1.87433623,1.87433623,1.87433623 +38,ND,10,WASTE DISPOSAL & RECYCLING,PM10,1.44776,0.89667,0.95344,0.94702,0.937388,0.869761,0.871033,0.862315815,0.862315815,0.862315815,0.862315815,0.73039397,0.598472126,0.466550282,0.467300516,0.468050749,0.468800983,0.520327506,0.571854029,0.623380553,0.59194693,0.560513306,0.529079683,0.529079683,0.529079683 +38,ND,10,WASTE DISPOSAL & RECYCLING,NOX,0.348,0.18264,0.1954,0.19431,0.19225,0.173241,0.174224,0.175531188,0.175531188,0.175531188,0.175531188,0.144544358,0.113557529,0.0825707,0.083294326,0.084017952,0.084741578,0.107935935,0.131130292,0.154324649,0.137880269,0.121435889,0.104991509,0.104991509,0.104991509 +38,ND,10,WASTE DISPOSAL & RECYCLING,PM25,1.2702,0.82104,0.87443,0.86789,0.858468,0.790676,0.791591,0.785132785,0.785132785,0.785132785,0.785132785,0.664057738,0.542982692,0.421907646,0.422539384,0.423171121,0.423802859,0.465164195,0.506525532,0.547886868,0.526295239,0.50470361,0.48311198,0.48311198,0.48311198 +38,ND,10,WASTE DISPOSAL & RECYCLING,SO2,0.07836,0.04775,0.0493,0.05045,0.05062,0.051357,0.05214,0.049791712,0.049791712,0.049791712,0.049791712,0.037199438,0.024607164,0.01201489,0.011942024,0.011869158,0.011796291,0.025921077,0.040045863,0.054170649,0.044346965,0.034523281,0.024699598,0.024699598,0.024699598 +38,ND,10,WASTE DISPOSAL & RECYCLING,NH3,0.12251,0.14822,0.14822,0.14822,0.14822,0.158154,0.158154,0.002257925,0.002257925,0.002257925,0.002257925,0.002311818,0.002365711,0.002419604,0.002419604,0.002419604,0.002419604,0.007487208,0.012554813,0.017622417,0.017786115,0.017949812,0.01811351,0.01811351,0.01811351 +38,ND,11,HIGHWAY VEHICLES,NH3,0.4404,0.62767,0.70677,0.68362,0.70678,0.709,0.7168,0.403648953,0.391324249,0.378999546,0.366674843,0.364670718,0.362666593,0.339325949,0.333119215,0.311720875,0.392288603,0.385576213,0.378863823,0.372151434,0.34052456,0.316032203,0.316367384,0.299181194,0.295474604 +38,ND,11,HIGHWAY VEHICLES,NOX,31.58333,28.26624,28.37429,27.74072,26.75606,25.66862,24.01739,35.45486818,32.90885333,30.36283847,27.81682361,25.92779767,24.03877172,22.18429513,26.31140193,22.45438119,26.42010728,29.63764939,32.85519151,36.07273362,31.21563213,23.62991156,16.58323156,21.63745297,20.92994147 +38,ND,11,HIGHWAY VEHICLES,CO,374.54837,288.74356,271.70622,255.18876,229.55456,225.32649,213.55253,165.3562373,157.4910156,149.625794,141.7605723,127.0377672,112.3149622,105.6679806,115.2225321,103.1194024,111.2143534,111.0663605,110.9183677,110.7703748,95.94385119,74.41798224,77.8031789,68.31132607,64.08599747 +38,ND,11,HIGHWAY VEHICLES,PM10,1.33774,0.93186,0.8931,0.82988,0.77607,0.70327,0.6503,1.337453766,1.295529823,1.25360588,1.211681936,1.18402145,1.156360963,1.083822851,1.328205195,1.140011127,1.450716175,1.670957877,1.891199578,2.11144128,1.752587197,1.392977781,1.018125446,1.382370369,1.370339089 +38,ND,11,HIGHWAY VEHICLES,PM25,1.14027,0.76194,0.71981,0.66239,0.61014,0.5439,0.49569,1.16093368,1.12022102,1.07950836,1.0387957,0.99969291,0.96059012,0.889947898,1.104501268,0.923215273,0.941491919,1.112861022,1.284230124,1.455599227,1.150732591,0.889362389,0.613138442,0.806481694,0.777411346 +38,ND,11,HIGHWAY VEHICLES,SO2,1.70798,0.89463,0.92025,0.92855,0.94718,0.78465,0.78833,1.017754801,0.859784355,0.70181391,0.543843464,0.318775389,0.093707313,0.086752317,0.089489371,0.095942071,0.096775642,0.097666841,0.09855804,0.099449239,0.084985035,0.082078755,0.06570675,0.052722838,0.051672577 +38,ND,11,HIGHWAY VEHICLES,VOC,28.90954,19.47012,18.0875,17.02507,15.5915,14.96924,14.04802,12.57305122,12.05093783,11.52882445,11.00671106,10.77920182,10.55169259,9.48665772,10.97872644,9.587247995,11.71923963,11.64469259,11.57014555,11.49559851,9.798560418,7.645047039,7.631353331,6.933415547,6.453147369 +38,ND,12,OFF-HIGHWAY,NH3,0.35508,0.26177,0.20704,0.22767,0.04313,0.04313,0.04313,0.030701227,0.031309517,0.031917808,0.032526098,0.033739425,0.034952752,0.0357786,0.036125154,0.036704546,0.037281455,0.038213898,0.039146341,0.040078784,0.042001863,0.044958122,0.045848021,0.046012687,0.046177353 +38,ND,12,OFF-HIGHWAY,VOC,14.4025,15.16945,14.60122,14.29016,14.11543,13.91251,13.67535,14.81946544,14.61068437,14.40190331,14.19312224,13.73182981,13.27053737,12.72388642,12.1912116,11.81035543,11.33896025,10.83496078,10.33096132,9.826961861,9.201934226,8.317254965,7.951878957,7.680103805,7.408328653 +38,ND,12,OFF-HIGHWAY,SO2,4.14409,5.30919,5.38857,5.47967,5.60037,5.73935,5.87751,5.656498197,5.756228021,5.855957846,5.95568767,4.199925595,2.444163521,0.866592051,0.872751847,0.512055197,0.25467397,0.210421733,0.166169497,0.121917261,0.124296834,0.128644824,0.129055979,0.129726505,0.130397031 +38,ND,12,OFF-HIGHWAY,PM25,5.91661,5.84675,5.71185,5.56105,5.41885,5.24538,5.04653,5.104875272,4.922191246,4.739507221,4.556823195,4.258534318,3.960245441,3.68959047,3.541968013,3.385044669,3.260416124,3.084854034,2.909291944,2.733729854,2.680505706,2.709020978,2.574057411,2.429930211,2.28580301 +38,ND,12,OFF-HIGHWAY,NOX,53.36354,59.41455,58.76493,58.06894,58.01818,58.02271,57.95281,60.61969103,60.2089147,59.79813837,59.38736204,54.92674792,50.46613381,50.96882325,48.89641828,47.96870174,47.00717293,45.69467713,44.38218132,43.06968552,42.01573729,41.05641407,39.90784084,38.01613556,36.12443027 +38,ND,12,OFF-HIGHWAY,CO,93.98708,104.00519,102.57274,102.60605,102.75591,102.97052,103.78222,96.56477922,90.75152683,84.93827444,79.12502204,80.74317714,82.36133223,72.97705766,70.54365654,68.8253979,67.84184236,65.68613414,63.53042593,61.37471771,66.09255203,75.44522211,75.52822066,75.28177084,75.03532102 +38,ND,12,OFF-HIGHWAY,PM10,6.44475,6.3699,6.2208,6.05428,5.90384,5.71489,5.49893,5.265980598,5.077887164,4.889793731,4.701700297,4.416780989,4.131861681,3.883158973,3.730953032,3.569026317,3.407409719,3.225689145,3.04396857,2.862247995,2.799160104,2.812033379,2.672984322,2.524327534,2.375670747 +38,ND,14,MISCELLANEOUS,CO,42.79876,117.55902,173.61828,129.40789,27.27942,12.67968,7.72503,1.35973,7.846380592,14.33303118,20.81968177,19.51245783,18.20523388,16.89800994,48.00103925,79.10406856,110.2070979,79.62043091,49.03376395,18.44709699,19.21116026,19.97522353,20.7392868,20.7392868,20.7392868 +38,ND,14,MISCELLANEOUS,PM10,357.49179,362.40926,391.47415,388.3477,382.29163,363.245687,374.0279189,333.01686,333.6476317,334.2784034,334.9091751,356.6635015,378.4178278,400.1721542,375.866085,351.5600158,327.2539466,355.7881181,384.3222896,412.8564611,379.3763018,345.8961425,312.4159832,312.4159832,312.4159832 +38,ND,14,MISCELLANEOUS,PM25,71.58492,77.92588,87.96125,85.42563,73.22628,69.241263,69.8817077,45.07862826,45.61318055,46.14773284,46.68228513,55.00294576,63.32360639,71.64426701,69.26718474,66.89010247,64.5130202,68.90991426,73.30680832,77.70370237,69.73953138,61.77536039,53.8111894,53.8111894,53.8111894 +38,ND,14,MISCELLANEOUS,VOC,5.65428,13.13049,18.62873,11.39259,1.28933,0.60231,0.36914,0.31028,1.831580417,3.352880834,4.874181251,3.675456634,2.476732017,1.2780074,3.788708064,6.299408727,8.810109391,6.442105387,4.074101382,1.706097378,2.328599904,2.951102429,3.573604954,3.573604954,3.573604954 +38,ND,14,MISCELLANEOUS,NOX,1.23528,3.4282,5.08084,3.84494,0.58531,0.27206,0.1658,0.017645259,0.073559956,0.129474652,0.185389348,0.313631023,0.441872698,0.570114374,2.014897401,3.459680428,4.904463455,3.488985058,2.073506661,0.658028264,0.715627172,0.77322608,0.830824988,0.830824988,0.830824988 +38,ND,14,MISCELLANEOUS,NH3,69.80934,88.02918,75.79345,82.17715,90.32255,90.53855,58.15962122,71.47287775,71.57870735,71.68453694,71.79036653,74.09022237,76.39007821,78.68993405,83.51440166,88.33886927,93.16333687,75.39911124,57.63488561,39.87065998,45.23315345,50.59564692,55.95814039,55.95814039,55.95814039 +38,ND,14,MISCELLANEOUS,SO2,0.04623,0.11735,0.17121,0.12047,0.16018,0.07435,0.04519,0.020946572,0.059726748,0.098506924,0.137287099,0.124766604,0.112246109,0.099725614,0.700613708,1.301501803,1.902389897,1.339513886,0.776637874,0.213761862,0.246995104,0.280228345,0.313461587,0.313461587,0.313461587 +38,ND,15,WILDFIRES,CO,,,,,,,,7.254,7.254,7.254,,0,0,13.3176822,13.3176822,13.3176822,4.333483344,4.333483344,4.333483344,0.952682601,0.952682601,0.952682601,7.138054131,7.138054131,7.138054131 +38,ND,15,WILDFIRES,PM10,,,,,,,,0.677477441,0.677477441,0.677477441,,0,0,1.30884875,1.30884875,1.30884875,0.453609497,0.453609497,0.453609497,0.102490875,0.102490875,0.102490875,0.739414049,0.739414049,0.739414049 +38,ND,15,WILDFIRES,PM25,,,,,,,,0.574006306,0.574006306,0.574006306,,0,0,1.10919429,1.10919429,1.10919429,0.384414484,0.384414484,0.384414484,0.086856705,0.086856705,0.086856705,0.626622527,0.626622527,0.626622527 +38,ND,15,WILDFIRES,SO2,,,,,,,,0.036848699,0.036848699,0.036848699,,0,0,0.084351123,0.084351123,0.084351123,0.036937857,0.036937857,0.036937857,0.009068528,0.009068528,0.009068528,0.058185331,0.058185331,0.058185331 +38,ND,15,WILDFIRES,VOC,,,,,,,,1.663631306,1.663631306,1.663631306,,0,0,3.12768171,3.12768171,3.12768171,1.026395283,1.026395283,1.026395283,0.226510456,0.226510456,0.226510456,1.6882362,1.6882362,1.6882362 +38,ND,15,WILDFIRES,NH3,,,,,,,,0.115231936,0.115231936,0.115231936,,0,0,0.217578045,0.217578045,0.217578045,0.071401395,0.071401395,0.071401395,0.015757274,0.015757274,0.015757274,0.117441374,0.117441374,0.117441374 +38,ND,15,WILDFIRES,NOX,,,,,,,,0.044423949,0.044423949,0.044423949,,0,0,0.130272874,0.130272874,0.130272874,0.073427185,0.073427185,0.073427185,0.019242381,0.019242381,0.019242381,0.112254349,0.112254349,0.112254349 +38,ND,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,20.1767531,66.77251357,113.368274,159.9640345,143.5027734,127.0415122,110.5802511,105.3790667,100.1778824,94.97669803,94.97669803,94.97669803 +38,ND,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.336104842,1.099776213,1.863447584,2.627118955,2.358521592,2.08992423,1.821326867,1.73429435,1.647261832,1.560229315,1.560229315,1.560229315 +38,ND,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.530089677,1.110101532,1.690113386,2.270125241,2.12657791,1.98303058,1.839483249,1.682563425,1.5256436,1.368723776,1.368723776,1.368723776 +38,ND,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,2.28009279,6.97041747,11.66074215,16.35106683,14.74887149,13.14667616,11.54448083,10.93861424,10.33274766,9.726881071,9.726881071,9.726881071 +38,ND,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,1.93227509,5.907131405,9.881987719,13.85684403,12.49905039,11.14125675,9.783463105,9.270015596,8.756568087,8.243120578,8.243120578,8.243120578 +38,ND,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,4.83146069,15.80928221,26.78710374,37.76492526,33.90382173,30.04271819,26.18161466,24.93049515,23.67937564,22.42825613,22.42825613,22.42825613 +38,ND,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.229537482,0.562647521,0.89575756,1.228867599,1.129949183,1.031030767,0.932112351,0.866742185,0.801372019,0.736001853,0.736001853,0.736001853 +39,OH,1,FUEL COMB. ELEC. UTIL.,NH3,,0.02438,0.02365,0.02565,0.062749,0.061435,0.062735,0.080161875,0.097650532,0.115139189,0.132627845,0.120448739,0.108269633,0.096090527,0.17483712,0.253583713,0.332330307,0.548651235,0.764972164,0.981293093,1.190617832,1.399942571,1.60926731,1.60926731,1.60926731 +39,OH,1,FUEL COMB. ELEC. UTIL.,CO,14.8225,13.64509,13.501,13.89238,14.260609,14.766338,15.919637,15.31050787,15.70179252,16.09307716,16.4843618,16.39687744,16.30939308,16.22190873,17.96941442,19.71692012,21.46442582,21.17333536,20.8822449,20.59115444,18.70370039,16.81624634,14.92879229,14.92879229,14.92879229 +39,OH,1,FUEL COMB. ELEC. UTIL.,NOX,535.10227,562.20551,544.82151,522.29335,432.144,382.101982,339.773027,373.9494729,355.062997,266.792478,259.8021468,238.603333,237.876437,237.4679349,193.2618988,149.0558628,104.8498267,99.71759741,94.58536812,89.45313884,79.21646078,68.97978273,58.74310467,50.555695,40.407155 +39,OH,1,FUEL COMB. ELEC. UTIL.,PM10,14.24804,14.89116,15.36934,15.37624,80.389928,75.517127,68.798032,62.31751274,61.77519359,61.23287444,60.69055529,55.8558925,51.02122971,46.18656691,43.19866832,40.21076973,37.22287114,32.01360141,26.80433167,21.59506193,17.28599724,12.97693255,8.667867863,8.667867863,8.667867863 +39,OH,1,FUEL COMB. ELEC. UTIL.,PM25,6.22454,6.80923,7.073,7.11136,72.066377,66.767683,59.521792,55.73672998,55.16734786,54.59796574,54.02858362,49.79637461,45.5641656,41.33195658,38.83118864,36.3304207,33.82965276,28.99131302,24.15297328,19.31463353,15.33235661,11.35007968,7.367802757,7.367802757,7.367802757 +39,OH,1,FUEL COMB. ELEC. UTIL.,SO2,2241.14973,1505.0228,1476.48805,1441.0701,1334.75776,1237.099302,1155.181701,1144.933334,1175.904754,1091.519778,1115.929349,962.28831,954.645818,716.7033934,675.2878466,633.8722998,592.4567529,496.4813595,400.5059662,304.5305728,234.0820447,163.6335167,93.18498865,86.562191,68.897172 +39,OH,1,FUEL COMB. ELEC. UTIL.,VOC,1.74569,1.66949,1.65274,1.69931,1.650383,1.754755,1.695389,1.752869996,1.771657142,1.790444288,1.809231434,1.686645401,1.564059369,1.441473336,1.507923754,1.574374172,1.640824591,1.566936343,1.493048095,1.419159847,1.317610863,1.216061879,1.114512895,1.114512895,1.114512895 +39,OH,2,FUEL COMB. INDUSTRIAL,VOC,1.94299,1.90474,1.90483,1.88311,1.88478,1.897513,1.965052,1.93807092,2.056327588,2.174584256,2.292840925,2.251831396,2.210821868,2.16981234,2.108804019,2.047795698,1.986787376,2.076421494,2.166055613,2.255689731,2.293436717,2.331183702,2.368930688,2.368930688,2.368930688 +39,OH,2,FUEL COMB. INDUSTRIAL,SO2,360.24343,342.45651,346.0639,340.31777,113.72696,112.243268,119.767894,82.15340225,83.10835372,84.06330519,85.01825667,92.98359199,100.9489273,108.9142626,89.93013958,70.94601654,51.96189349,49.11595551,46.27001754,43.42407956,31.83679523,20.24951091,8.662226579,8.662226579,8.662226579 +39,OH,2,FUEL COMB. INDUSTRIAL,PM25,9.16588,9.40872,9.53736,9.41241,3.199578,3.252528,3.426181,1.550156067,1.717675568,1.885195068,2.052714569,3.651697674,5.250680779,6.849663884,6.469806418,6.089948952,5.709895324,5.78201524,5.854135156,5.926255072,5.778852855,5.631450638,5.484048421,5.484048421,5.484048421 +39,OH,2,FUEL COMB. INDUSTRIAL,PM10,14.23466,14.02065,14.15756,13.89877,4.629903,4.68446,4.963147,2.255904935,2.415450426,2.574995918,2.73454141,4.26383567,5.79312993,7.322424191,7.012585912,6.702747633,6.392863273,6.467681505,6.542499736,6.617317967,6.564440014,6.511562061,6.458684108,6.458684108,6.458684108 +39,OH,2,FUEL COMB. INDUSTRIAL,NOX,68.88573,68.96316,68.79529,67.33017,60.69508,60.768039,62.673227,47.14846975,46.6260918,46.10371385,45.5813359,45.26057009,44.93980428,44.61903847,43.18093263,41.74282678,40.30472093,38.14747961,35.99023828,33.83299695,30.60279728,27.37259761,24.14239794,24.14239794,24.14239794 +39,OH,2,FUEL COMB. INDUSTRIAL,NH3,0.24291,0.27935,0.27642,0.27039,1.218004,1.224603,1.286691,0.668763261,0.655403761,0.642044262,0.628684762,0.526105123,0.423525485,0.320945847,0.397618005,0.474290164,0.550962322,0.495034069,0.439105815,0.383177562,0.350716624,0.318255687,0.28579475,0.28579475,0.28579475 +39,OH,2,FUEL COMB. INDUSTRIAL,CO,19.27161,19.78813,19.81584,19.362,22.65561,23.191646,24.443188,41.03969735,40.07231726,39.10493716,38.13755707,40.88013093,43.62270479,46.36527864,48.26349296,50.16170728,52.0599216,52.56989004,53.07985848,53.58982692,51.1271662,48.66450548,46.20184476,46.20184476,46.20184476 +39,OH,3,FUEL COMB. OTHER,PM10,18.22636,15.73752,15.80471,15.89507,16.446212,17.344094,17.47012,10.51436254,10.48720906,10.46005559,10.43290211,14.93391852,19.43493492,23.93595133,22.97041326,22.00487518,23.28043294,21.59493625,19.90943956,18.22394287,16.45670672,14.68947058,12.92223443,12.92223443,12.92223443 +39,OH,3,FUEL COMB. OTHER,VOC,21.35779,30.05561,30.09845,30.08495,30.884339,33.029099,33.063621,17.10912995,16.43152643,15.75392292,15.0763194,16.82210506,18.56789072,20.31367639,20.74905642,21.18443646,24.10366405,22.51168087,20.91969769,19.32771451,17.21567207,15.10362963,12.99158719,12.99158719,12.99158719 +39,OH,3,FUEL COMB. OTHER,PM25,16.89458,14.1047,14.12903,14.14733,15.654531,16.537252,16.642452,9.794252623,9.768928517,9.743604411,9.718280305,14.42296207,19.12764383,23.8323256,22.76369865,21.69507171,22.86856039,21.16687395,19.4651875,17.76350106,16.09948612,14.43547117,12.77145623,12.77145623,12.77145623 +39,OH,3,FUEL COMB. OTHER,NOX,69.76424,76.93058,74.66153,69.89404,45.247298,46.020908,47.000549,34.26358044,34.57947712,34.89537381,35.21127049,33.75744747,32.30362444,30.84980142,30.24955621,29.649311,29.06337188,29.60414049,30.1449091,30.68567771,27.66347198,24.64126626,21.61906054,21.61906054,21.61906054 +39,OH,3,FUEL COMB. OTHER,NH3,0.28125,0.28969,0.28054,0.25312,0.345439,0.348141,0.352685,2.490341138,2.490629308,2.490917478,2.491205647,3.10937468,3.727543713,4.345712746,4.218759285,4.091805825,4.003405307,4.017265104,4.0311249,4.044984697,3.803077345,3.561169994,3.319262642,3.319262642,3.319262642 +39,OH,3,FUEL COMB. OTHER,CO,122.73054,97.5514,97.53747,96.94018,103.98919,110.168727,110.501089,90.50147488,90.75284822,91.00422155,91.25559489,119.8900957,148.5245965,177.1590973,165.373477,153.5878568,154.0886323,144.6780804,135.2675284,125.8569764,116.2803167,106.7036569,97.12699721,97.12699721,97.12699721 +39,OH,3,FUEL COMB. OTHER,SO2,55.23746,56.84079,57.9903,58.756,29.702044,30.185493,30.822219,14.71272437,14.88715771,15.06159104,15.23602438,14.33996919,13.44391401,12.54785882,11.0097828,9.471706771,8.013489675,7.121119604,6.228749533,5.336379462,3.803716349,2.271053235,0.738390122,0.738390122,0.738390122 +39,OH,4,CHEMICAL & ALLIED PRODUCT MFG,CO,92.60006,92.60006,94.63904,95.31096,9.98825,10.269173,10.620325,10.92739035,14.10275024,17.27811012,20.45347,41.69874576,62.94402151,84.18929727,78.64144054,73.09358382,67.54957052,60.76532549,53.98108046,47.19683544,42.34887591,37.50091639,32.65295687,32.65295687,32.65295687 +39,OH,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,30.65421,12.08125,11.99459,12.08252,5.96758,5.974503,6.199374,9.911350015,9.902526677,9.893703338,9.88488,8.556154375,7.22742875,5.898703125,5.47546152,5.052219915,4.64439171,4.695481409,4.746571109,4.797660809,4.676052012,4.554443214,4.432834417,4.432834417,4.432834417 +39,OH,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,4.36136,4.36136,4.4537,4.47673,6.75946,6.91136,7.11909,7.006210055,6.781610036,6.557010018,6.33241,6.332594708,6.332779415,6.332964123,5.196007249,4.059050375,2.922139807,2.60479382,2.287447834,1.970101847,1.887168034,1.80423422,1.721300407,1.721300407,1.721300407 +39,OH,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.71425,0.71425,0.72883,0.73413,0.491721,0.504117,0.521809,0.38583635,0.373942989,0.362049627,0.350156265,0.426707944,0.503259622,0.579811301,0.520837721,0.461864142,0.402890563,0.397774287,0.392658011,0.387541736,0.395050934,0.402560133,0.410069332,0.410069332,0.410069332 +39,OH,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.82255,0.82255,0.83909,0.84537,0.645977,0.662773,0.686454,0.481100001,0.486372947,0.491645894,0.49691884,0.578061821,0.659204801,0.740347782,0.657867076,0.575386369,0.492905663,0.48421169,0.475517717,0.466823744,0.474306308,0.481788872,0.489271436,0.489271436,0.489271436 +39,OH,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,0.18,0.18,0.18403,0.18886,0.204013,0.209736,0.21689,1.705579988,1.525829992,1.346079996,1.16633,1.31722859,1.46812718,1.61902577,1.72591258,1.83279939,1.9396862,2.037989,2.1362918,2.2345946,2.069945568,1.905296537,1.740647505,1.740647505,1.740647505 +39,OH,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,3.93086,2.36864,2.41151,2.43133,2.58279,2.646689,2.734148,2.814940011,2.462990007,2.111040004,1.75909,2.017743387,2.276396773,2.53505016,2.18957493,1.8440997,1.50516027,1.51496072,1.524761171,1.534561621,1.565489446,1.59641727,1.627345095,1.627345095,1.627345095 +39,OH,5,METALS PROCESSING,PM10,10.62419,10.62263,11.33958,11.28201,9.298811,9.670223,10.392442,4.996332003,5.266439727,5.536547451,5.806655176,7.187352306,8.568049436,9.948746566,8.738425773,7.528104981,6.317784188,6.04964088,5.781497571,5.513354263,5.262506518,5.011658772,4.760811027,4.760811027,4.760811027 +39,OH,5,METALS PROCESSING,CO,554.59614,548.24026,588.73607,588.89302,163.65985,171.520399,185.924014,147.1998133,130.8338922,114.4679711,98.10205,97.1051557,96.10826141,95.11136711,103.5310341,111.9507011,120.3703681,99.98916341,79.60795871,59.226754,56.30865143,53.39054887,50.4724463,50.4724463,50.4724463 +39,OH,5,METALS PROCESSING,NH3,1.12532,1.12532,1.21827,1.2275,0.125436,0.132285,0.143321,0.743209995,0.719396664,0.695583332,0.67177,0.65284433,0.63391866,0.61499299,0.448504116,0.282015243,0.115651369,0.10579341,0.09593545,0.08607749,0.087995846,0.089914201,0.091832556,0.091832556,0.091832556 +39,OH,5,METALS PROCESSING,NOX,3.09443,3.09447,3.33982,3.35035,5.58435,5.843658,6.319706,3.676850032,3.703596688,3.730343344,3.75709,3.757613816,3.758137632,3.758661448,3.952601574,4.1465417,4.340481826,4.177472723,4.01446362,3.851454517,3.73962059,3.627786663,3.515952736,3.515952736,3.515952736 +39,OH,5,METALS PROCESSING,PM25,8.51973,8.51935,9.08775,9.03382,7.689385,7.992182,8.590575,3.780352775,3.978813423,4.177274072,4.37573472,5.777005184,7.178275647,8.579546111,7.454545798,6.329545484,5.20454517,5.015330735,4.826116299,4.636901864,4.342085104,4.047268343,3.752451583,3.752451583,3.752451583 +39,OH,5,METALS PROCESSING,VOC,12.26119,1.58671,1.70668,1.71129,5.15637,5.342474,5.745483,2.852590011,3.653883341,4.45517667,5.25647,4.927056713,4.597643427,4.26823014,4.306820777,4.345411413,4.38400205,3.774776036,3.165550021,2.556324007,2.431503843,2.30668368,2.181863517,2.181863517,2.181863517 +39,OH,5,METALS PROCESSING,SO2,8.1424,8.12901,8.72037,8.71224,9.79562,10.246106,11.068621,5.765949967,5.370009978,4.974069989,4.57813,5.347848907,6.117567813,6.88728672,7.220230271,7.553173822,7.886117373,6.713089973,5.540062572,4.367035172,4.363879445,4.360723718,4.357567991,4.357567991,4.357567991 +39,OH,6,PETROLEUM & RELATED INDUSTRIES,PM25,1.67911,1.67964,1.70091,1.66102,0.907926,0.913293,0.919824,0.671392574,0.772125899,0.872859223,0.973592547,1.050119769,1.126646991,1.203174213,1.182720054,1.162265894,1.141811735,1.088231585,1.034651435,0.981071286,0.948365905,0.915660525,0.882955144,0.882955144,0.882955144 +39,OH,6,PETROLEUM & RELATED INDUSTRIES,CO,0.3907,0.3907,0.39907,0.39189,0.21329,0.214617,0.216185,1.044889998,1.153266665,1.261643333,1.37002,1.279056153,1.188092305,1.097128458,1.357382959,1.61763746,1.877891961,2.9254933,3.973094638,5.020695976,4.537316642,4.053937308,3.570557974,3.570557974,3.570557974 +39,OH,6,PETROLEUM & RELATED INDUSTRIES,NH3,1.27422,1.27422,1.32928,1.32549,1.32925,1.40569,1.50363,0.0013158,0.021943867,0.042571933,0.0632,0.051200938,0.039201877,0.027202815,0.019849195,0.012495576,0.005141956,0.013587128,0.0220323,0.030477471,0.040273782,0.050070092,0.059866403,0.059866403,0.059866403 +39,OH,6,PETROLEUM & RELATED INDUSTRIES,PM10,3.10285,3.10335,3.13013,3.04829,1.160853,1.167758,1.176081,0.788649991,0.886533328,0.984416664,1.0823,1.156807601,1.231315202,1.305822803,1.27930081,1.252778816,1.226256823,1.177855327,1.129453831,1.081052334,1.060408833,1.039765332,1.019121831,1.019121831,1.019121831 +39,OH,6,PETROLEUM & RELATED INDUSTRIES,SO2,4.9364,4.9364,5.15605,5.12928,6.12884,6.165612,6.208516,11.72312991,11.65674994,11.59036997,11.52399,10.39738975,9.270789497,8.144189246,5.79048069,3.436772134,1.083063578,1.464205794,1.845348011,2.226490227,2.494069144,2.76164806,3.029226976,3.029226976,3.029226976 +39,OH,6,PETROLEUM & RELATED INDUSTRIES,VOC,21.62233,12.85573,13.42745,13.38756,5.46164,5.09246,5.168488,3.047470013,2.871880008,2.696290004,2.5207,2.016626,1.512552,1.008478,4.576665445,8.144852889,11.71304033,13.22181274,14.73058514,16.23935754,17.85626327,19.473169,21.09007473,21.09007473,21.09007473 +39,OH,6,PETROLEUM & RELATED INDUSTRIES,NOX,1.88936,1.88936,1.97298,1.96236,1.96192,1.973712,1.987482,1.499950006,1.616590004,1.733230002,1.84987,1.670936667,1.492003333,1.31307,1.264097095,1.21512419,1.166151286,2.78276086,4.399370435,6.015980009,5.210445451,4.404910893,3.599376335,3.599376335,3.599376335 +39,OH,7,OTHER INDUSTRIAL PROCESSES,VOC,10.20644,6.14532,6.45594,6.50789,10.28233,10.635888,11.39927028,8.979695666,8.614782352,8.249869038,7.884955724,7.316728485,6.748501245,6.180274006,6.204085459,6.227896913,6.251708366,6.118130325,5.984552284,5.850974243,6.238952699,6.626931155,7.014909611,7.014909611,7.014909611 +39,OH,7,OTHER INDUSTRIAL PROCESSES,CO,3.04179,3.28821,3.4703,3.55636,2.58136,2.727921,4.185766484,4.057250017,4.788380014,5.51951001,6.250640007,7.190834183,8.131028359,9.071222535,9.10921824,9.147213945,9.18520965,12.51767229,15.85013492,19.18259756,17.14640529,15.11021301,13.07402073,13.07402073,13.07402073 +39,OH,7,OTHER INDUSTRIAL PROCESSES,NH3,0.4946,0.53719,0.55925,0.56466,0.569289,0.592061,0.623942,4.070116464,4.024491318,3.978866172,3.933241027,2.768340031,1.603439036,0.43853804,0.805417364,1.172296689,1.443196513,1.152841249,0.862485986,0.572130722,0.574205924,0.576281125,0.578356327,0.578356327,0.578356327 +39,OH,7,OTHER INDUSTRIAL PROCESSES,NOX,11.48166,12.58531,13.41149,13.71892,16.25697,17.200232,18.384136,14.31171009,15.95192006,17.59213003,19.23234001,16.91882003,14.60530005,12.29178007,12.68093675,13.07009342,13.4592501,12.92089594,12.38254177,11.84418761,11.741949,11.63971039,11.53747178,11.53747178,11.53747178 +39,OH,7,OTHER INDUSTRIAL PROCESSES,PM10,18.4308,25.81484,26.04659,27.42251,24.64709,25.184888,28.88017931,26.25134831,26.54168237,26.83201642,27.12235048,24.83597735,22.54960422,20.26323109,19.59842581,18.93362053,18.27500044,18.08899787,17.9029953,17.71699273,17.17265098,16.62830923,16.08396748,16.08396748,16.08396748 +39,OH,7,OTHER INDUSTRIAL PROCESSES,PM25,6.91715,8.61439,8.84036,9.17151,8.325014,8.600084,11.93522312,9.680514813,9.911729704,10.1429446,10.37415949,9.831062491,9.287965495,8.7448685,8.635109956,8.525351413,8.41708129,8.461496071,8.505910853,8.550325634,8.705759993,8.861194352,9.016628711,9.016628711,9.016628711 +39,OH,7,OTHER INDUSTRIAL PROCESSES,SO2,6.74078,7.22693,7.66257,7.78917,7.92118,8.377814,8.962264,9.34407433,11.31510101,13.28612769,15.25715436,14.18182977,13.10650517,12.03118057,12.32937423,12.62756789,12.92576155,12.63362001,12.34147847,12.04933693,11.98890942,11.92848191,11.86805441,11.86805441,11.86805441 +39,OH,8,SOLVENT UTILIZATION,CO,0.04415,0.04682,0.0489,0.05015,0.08594,0.090739,0.096904,0.02685,0.04185,0.05685,0.07185,0.189235667,0.306621333,0.424007,0.305750513,0.187494025,0.069237538,0.072253339,0.075269139,0.07828494,0.077069661,0.075854383,0.074639104,0.074639104,0.074639104 +39,OH,8,SOLVENT UTILIZATION,NH3,,,,,,,,0.00054,0.00614,0.01174,0.01734,0.013994389,0.010648777,0.007303166,0.008376066,0.009448966,0.010521866,0.008903333,0.007284799,0.005666266,0.006148294,0.006630322,0.007112351,0.007112351,0.007112351 +39,OH,8,SOLVENT UTILIZATION,PM10,0.07552,0.07611,0.08011,0.07928,0.30498,0.318314,0.337786,0.191958333,0.200307134,0.208655934,0.217004735,0.178497444,0.139990153,0.101482862,0.106669196,0.111855529,0.117041863,0.12064806,0.124254257,0.127860454,0.12827273,0.128685007,0.129097283,0.129097283,0.129097283 +39,OH,8,SOLVENT UTILIZATION,PM25,0.07327,0.07382,0.07768,0.07688,0.30498,0.318314,0.337786,0.172752678,0.179644653,0.186536629,0.193428604,0.158603325,0.123778047,0.088952768,0.095360025,0.101767282,0.108174538,0.110841959,0.11350938,0.116176801,0.117054414,0.117932027,0.118809641,0.118809641,0.118809641 +39,OH,8,SOLVENT UTILIZATION,SO2,0.111,0.111,0.11451,0.11734,0.00069,0.00073,0.000779,9.00E-05,0.000146667,0.000203333,0.00026,0.000251335,0.00024267,0.000234005,0.000398124,0.000562243,0.000726362,0.000608816,0.00049127,0.000373724,0.000409069,0.000444414,0.000479759,0.000479759,0.000479759 +39,OH,8,SOLVENT UTILIZATION,VOC,289.88337,288.18513,297.26345,276.48825,230.04739,229.915128,239.792125,214.3979372,215.2468005,216.0956638,216.9445272,188.3157065,159.6868858,131.0580651,122.3855514,113.7130377,105.0405316,117.6655113,130.290491,142.9154707,142.9301261,142.9447815,142.9594368,142.9594368,142.9594368 +39,OH,8,SOLVENT UTILIZATION,NOX,0.03828,0.03841,0.04099,0.04216,0.04521,0.046955,0.049151,0.03615,0.0483,0.06045,0.0726,0.0708261,0.0690522,0.0672783,0.068289732,0.069301163,0.070312595,0.07587054,0.081428485,0.08698643,0.09008569,0.09318495,0.09628421,0.09628421,0.09628421 +39,OH,9,STORAGE & TRANSPORT,NH3,,,,,,,,0.00305,0.003796667,0.004543333,0.00529,0.004400167,0.003510333,0.0026205,0.002462733,0.002304967,0.0021472,0.003953667,0.005760133,0.0075666,0.007906136,0.008245671,0.008585207,0.008585207,0.008585207 +39,OH,9,STORAGE & TRANSPORT,VOC,40.35708,36.52491,38.0809,38.00333,35.71553,35.360799,35.938189,40.31560371,40.44709371,40.57858371,40.71007371,35.55298576,30.3958978,25.23880985,27.91536365,30.59191746,25.18707107,20.75518066,16.32329025,11.89139984,19.16057272,26.42974561,33.69891849,33.69891849,33.69891849 +39,OH,9,STORAGE & TRANSPORT,SO2,,,,,0.30772,0.322856,0.350218,0.34644,0.236703333,0.126966667,0.01723,0.042623333,0.068016667,0.09341,0.094126,0.094842,0.095558,0.065021017,0.034484033,0.00394705,0.002666067,0.001385083,0.0001041,0.0001041,0.0001041 +39,OH,9,STORAGE & TRANSPORT,PM25,0.62863,0.56523,0.59204,0.60063,1.036668,1.082515,1.154262,0.74716595,0.734387937,0.721609924,0.708831911,0.803165705,0.8974995,0.991833294,0.836695731,0.681558167,0.526420604,0.479415354,0.432410104,0.385404853,0.369916316,0.354427779,0.338939242,0.338939242,0.338939242 +39,OH,9,STORAGE & TRANSPORT,NOX,0.18744,0.21817,0.22871,0.22799,0.28481,0.288282,0.296135,0.01255,0.01767,0.02279,0.02791,0.02486,0.02181,0.01876,0.01970438,0.02064876,0.02159314,0.019825773,0.018058407,0.01629104,0.01755864,0.01882624,0.02009384,0.02009384,0.02009384 +39,OH,9,STORAGE & TRANSPORT,CO,0.09933,0.08357,0.08777,0.08938,40.71716,41.947287,43.601488,38.20860872,42.59400582,46.97940291,51.3648,34.76796333,18.17112667,1.57429,1.624747667,1.675205333,1.725663,1.154716467,0.583769933,0.0128234,0.014503368,0.016183337,0.017863305,0.017863305,0.017863305 +39,OH,9,STORAGE & TRANSPORT,PM10,1.48901,1.34205,1.40682,1.42651,1.965358,2.050888,2.177921,1.169658005,1.165039018,1.160420032,1.155801046,1.284631933,1.41346282,1.542293707,1.386640325,1.230986942,1.07533356,1.004139816,0.932946071,0.861752327,0.819478475,0.777204623,0.734930771,0.734930771,0.734930771 +39,OH,10,WASTE DISPOSAL & RECYCLING,PM10,14.244,18.33037,18.94876,18.85574,19.683401,15.085533,15.167044,11.27284546,11.46080638,11.64876731,11.83672823,11.57995657,11.32318491,11.06641325,9.540374459,8.014335663,6.488296867,7.581662724,8.67502858,9.768394437,9.554588829,9.340783221,9.126977614,9.126977614,9.126977614 +39,OH,10,WASTE DISPOSAL & RECYCLING,PM25,11.98647,17.10919,17.66431,17.54732,18.237465,13.621284,13.678112,10.63854581,10.7317561,10.82496638,10.91817667,10.67925843,10.44034019,10.20142194,8.635592063,7.069762182,5.503932301,6.33464273,7.165353158,7.996063587,8.011529181,8.026994776,8.04246037,8.04246037,8.04246037 +39,OH,10,WASTE DISPOSAL & RECYCLING,CO,44.49874,105.7161,107.65396,105.37964,111.76124,65.601084,65.85977,54.44828395,54.86250866,55.27673337,55.69095808,52.91102554,50.13109301,47.35116047,41.38037823,35.40959598,29.43881374,41.23815296,53.03749217,64.83683139,58.45078016,52.06472894,45.67867772,45.67867772,45.67867772 +39,OH,10,WASTE DISPOSAL & RECYCLING,NH3,4.64851,4.41462,4.42988,4.53211,4.61173,4.697614,4.826417,5.207642676,5.216686009,5.225729342,5.234772676,3.517999596,1.801226517,0.084453438,0.08290039,0.081347342,0.079794294,0.174405022,0.269015749,0.363626477,0.364995908,0.36636534,0.367734771,0.367734771,0.367734771 +39,OH,10,WASTE DISPOSAL & RECYCLING,SO2,2.14926,1.85099,1.91637,1.9584,1.77027,1.80766,1.858953,0.25315,0.28127,0.30939,0.33751,0.364171579,0.390833158,0.417494737,0.415454767,0.413414796,0.411374826,0.733268066,1.055161306,1.377054546,1.285953019,1.194851491,1.103749964,1.103749964,1.103749964 +39,OH,10,WASTE DISPOSAL & RECYCLING,VOC,61.33204,18.62055,19.09955,19.14126,20.34149,17.14312,17.317295,16.26487386,16.42085386,16.57683386,16.73281386,12.80651383,8.880213802,4.953913772,4.393851821,3.833789871,3.273727921,4.629147625,5.98456733,7.339987034,6.898156154,6.456325275,6.014494395,6.014494395,6.014494395 +39,OH,10,WASTE DISPOSAL & RECYCLING,NOX,3.63806,6.12201,6.28371,6.27967,6.36571,5.049615,5.126101,2.88288601,3.036699343,3.190512676,3.344326009,3.222688264,3.101050519,2.979412774,2.652017891,2.324623007,1.997228124,2.346315353,2.695402581,3.044489809,2.746078684,2.447667559,2.149256434,2.149256434,2.149256434 +39,OH,11,HIGHWAY VEHICLES,SO2,19.76255,12.51549,12.68625,12.63899,12.71427,11.15202,11.2603,13.87013846,11.70033006,9.530521668,7.360713273,4.414009029,1.467304785,1.30749003,1.200636175,1.338091873,1.346676638,1.195924451,1.045172265,0.894420078,0.81754354,0.852239658,0.794488618,0.364519581,0.300090498 +39,OH,11,HIGHWAY VEHICLES,VOC,388.88878,271.79111,253.15688,239.05974,219.81396,209.58858,200.28724,157.9702163,148.7542228,139.5382293,130.3222357,145.339566,160.3568963,139.1515174,105.3593765,136.4847527,174.1670562,144.8394942,115.5119322,86.18437016,77.59653021,76.6119884,70.36798231,57.08275906,52.79978768 +39,OH,11,HIGHWAY VEHICLES,PM25,12.65008,9.44508,8.86079,8.1145,7.43661,6.7439,6.21919,13.02651944,12.61996587,12.2134123,11.80685874,12.06064066,12.31442259,10.87354188,9.804005989,9.753491522,11.21717537,9.287677133,7.358178898,5.428680662,4.715221091,3.930579641,4.447177542,3.740285567,3.403729401 +39,OH,11,HIGHWAY VEHICLES,PM10,15.10538,11.84455,11.25366,10.41211,9.68619,8.93226,8.36164,15.75795549,15.35368177,14.94940804,14.54513432,15.04429498,15.54345563,13.98984724,12.87413869,12.90129022,20.94926313,17.49706749,14.04487185,10.59267622,9.83551212,8.502959093,9.56957996,9.089825977,8.664829744 +39,OH,11,HIGHWAY VEHICLES,NOX,387.68865,366.51247,363.93197,351.75148,335.49033,325.56209,302.82743,415.1425518,382.8090323,350.4755128,318.1419933,315.6492222,313.1564512,282.2593596,250.0699873,258.1935747,286.4688026,243.2000613,199.93132,156.6625787,136.8229241,122.9660735,133.353018,92.11547523,79.48331522 +39,OH,11,HIGHWAY VEHICLES,NH3,6.13786,9.79876,10.82467,10.28715,10.45974,10.60204,10.75505,5.841532245,5.651800704,5.462069164,5.272337623,5.488969894,5.705602165,5.296547943,4.593833923,4.904467147,5.133983737,4.680956852,4.227929966,3.77490308,3.572580232,3.736018033,3.606464039,3.197196729,3.131249324 +39,OH,11,HIGHWAY VEHICLES,CO,4671.94888,3686.18842,3463.37744,3246.73583,2916.65797,2855.92085,2696.11677,2091.765023,2008.417933,1925.070843,1841.723753,1769.794319,1697.864884,1507.787703,1095.230113,1373.568531,1589.459719,1355.928551,1122.397384,888.8662162,822.1268345,829.5542418,750.4024758,662.779411,633.0880954 +39,OH,12,OFF-HIGHWAY,VOC,103.89243,113.58892,105.32697,101.77439,101.20855,100.60911,99.7935,106.9336188,103.8727305,100.8118422,97.75095388,93.60745745,89.46396102,83.27301104,78.63682683,76.53549649,71.31836335,67.14193212,62.96550088,58.78906964,51.9516532,40.6342712,38.2768203,37.14537306,36.01392582 +39,OH,12,OFF-HIGHWAY,NH3,1.35983,1.56031,1.56229,1.61006,0.12918,0.12918,0.12918,0.104864431,0.105880263,0.106896095,0.107911926,0.101724986,0.095538045,0.098443556,0.097069611,0.101896451,0.096970244,0.100974893,0.104979543,0.108984192,0.101429226,0.083695857,0.086319293,0.087114297,0.087909301 +39,OH,12,OFF-HIGHWAY,NOX,152.21995,168.60858,168.32688,166.81047,167.15461,167.20242,167.50702,179.8155441,177.7202947,175.6250453,173.529796,145.7374664,117.9451369,121.7265034,112.7352056,112.3102184,100.0694459,97.36092737,94.65240887,91.94389038,83.90652756,71.91932076,67.83180193,65.53244746,63.233093 +39,OH,12,OFF-HIGHWAY,PM10,12.79355,13.35978,13.17639,12.9707,12.82923,12.63005,12.43362,11.33569456,11.1172298,10.89876504,10.68030028,9.725915481,8.771530687,8.478232422,8.141171372,8.045899626,7.493110892,7.230240524,6.967370157,6.70449979,6.061940749,5.082211154,4.776822666,4.569543393,4.36226412 +39,OH,12,OFF-HIGHWAY,PM25,11.73091,12.25392,12.08872,11.90642,11.76509,11.57928,11.39835,10.73881907,10.52538425,10.31194944,10.09851463,9.175725308,8.25293599,7.83822532,7.50508521,7.421149748,7.034318235,6.791493526,6.548668816,6.305844106,5.711807695,4.817742726,4.523734872,4.323517694,4.123300516 +39,OH,12,OFF-HIGHWAY,SO2,15.76351,17.70068,18.05288,18.44887,18.41696,18.7268,18.86165,15.19013527,15.28481283,15.3794904,15.47416796,11.09217302,6.710178086,3.674518764,3.920865756,2.292524488,1.161949382,0.903315133,0.644680884,0.386046635,0.40908281,0.448836506,0.455155161,0.455812248,0.456469335 +39,OH,12,OFF-HIGHWAY,CO,934.17334,1055.19347,1022.70157,1022.40511,1033.46598,1044.28951,1066.7665,937.2868929,920.5469901,903.8070874,887.0671846,850.6024277,814.1376707,728.8544808,667.3778586,633.1687185,618.7872018,598.0933057,577.3994097,556.7055136,512.223107,426.8449719,423.258294,422.558952,421.8596101 +39,OH,14,MISCELLANEOUS,PM10,707.33216,451.50888,483.33451,454.66256,471.718,472.57185,428.6499285,418.564049,418.5917757,418.6195024,418.6472291,420.2076319,421.7680348,423.3284377,394.7829128,366.237388,337.6918632,410.6870883,483.6823133,556.6775384,436.1197926,315.5620469,195.0043012,195.0043012,195.0043012 +39,OH,14,MISCELLANEOUS,SO2,0.00154,0.0031,0.00555,0.00474,0.02232,0.03287,0.02424,0.12618,0.11100223,0.09582446,0.08064669,0.058913748,0.037180806,0.015447864,0.034384168,0.053320472,0.072256775,0.050698768,0.02914076,0.007582752,0.006960404,0.006338057,0.005715709,0.005715709,0.005715709 +39,OH,14,MISCELLANEOUS,VOC,0.4412,0.59707,0.87718,0.81952,0.31138,0.39594,0.32622,1.887402675,1.917377628,1.947352582,1.977327536,1.407703397,0.838079259,0.268455121,0.223784387,0.179113653,0.13444292,1.288613813,2.442784706,3.596955599,4.15165064,4.706345681,5.261040722,5.261040722,5.261040722 +39,OH,14,MISCELLANEOUS,CO,2.32866,4.83721,7.68049,5.67129,4.50973,6.31918,4.83761,8.6590255,8.593652972,8.528280445,8.462907917,6.429817169,4.396726421,2.363635673,1.81801283,1.272389986,0.726767142,0.813681284,0.900595426,0.987509568,0.68001772,0.372525872,0.065034024,0.065034024,0.065034024 +39,OH,14,MISCELLANEOUS,NH3,80.78521,72.62402,90.56247,90.3856,66.56755,66.14973,61.73752679,99.04404146,99.04458841,99.04513536,99.04568231,93.88393102,88.72217973,83.56042844,86.33581012,89.1111918,91.88657348,80.34447394,68.8023744,57.26027487,65.05427697,72.84827907,80.64228117,80.64228117,80.64228117 +39,OH,14,MISCELLANEOUS,NOX,0.06384,0.1111,0.1791,0.14794,0.0981,0.13692,0.10513,0.102964837,0.134434506,0.165904176,0.197373845,0.1789804,0.160586955,0.14219351,0.256818425,0.371443341,0.486068257,0.345950115,0.205831972,0.06571383,0.047294795,0.02887576,0.010456725,0.010456725,0.010456725 +39,OH,14,MISCELLANEOUS,PM25,132.29453,91.60485,97.27625,91.57011,94.75496,95.257589,76.9134476,47.09607164,47.1195733,47.14307496,47.16657662,49.93880234,52.71102805,55.48325376,55.66571349,55.84817322,56.03063295,62.51995036,69.00926777,75.49858518,60.77687937,46.05517355,31.33346773,31.33346773,31.33346773 +39,OH,15,WILDFIRES,NH3,,,,,,,,0.014053806,0.014053806,0.014053806,0.023845296,0.023845296,0.023845296,0.0030296,0.0030296,0.0030296,0.008672055,0.008672055,0.008672055,0.259875622,0.259875622,0.259875622,0.06453108,0.06453108,0.06453108 +39,OH,15,WILDFIRES,VOC,,,,,,,,0.206813367,0.206813367,0.206813367,0.342776139,0.342776139,0.342776139,0.0435505,0.0435505,0.0435505,0.124660549,0.124660549,0.124660549,3.735711453,3.735711453,3.735711453,0.927626472,0.927626472,0.927626472 +39,OH,15,WILDFIRES,SO2,,,,,,,,0.005719438,0.005719438,0.005719438,0.014596287,0.014596287,0.014596287,0.0011081,0.0011081,0.0011081,0.004240798,0.004240798,0.004240798,0.124720904,0.124720904,0.124720904,0.036158944,0.036158944,0.036158944 +39,OH,15,WILDFIRES,PM25,,,,,,,,0.073543377,0.073543377,0.073543377,0.133364872,0.133364872,0.133364872,0.0152982,0.0152982,0.0152982,0.046147521,0.046147521,0.046147521,1.377694381,1.377694381,1.377694381,0.353545392,0.353545392,0.353545392 +39,OH,15,WILDFIRES,NOX,,,,,,,,0.009490394,0.009490394,0.009490394,0.032012433,0.032012433,0.032012433,0.00159383,0.00159383,0.00159383,0.008104528,0.008104528,0.008104528,0.235036973,0.235036973,0.235036973,0.075560001,0.075560001,0.075560001 +39,OH,15,WILDFIRES,CO,,,,,,,,0.9061,0.9061,0.9061,1.438205159,1.438205159,1.438205159,0.185703,0.185703,0.185703,0.527300511,0.527300511,0.527300511,15.81108772,15.81108772,15.81108772,3.905411505,3.905411505,3.905411505 +39,OH,15,WILDFIRES,PM10,,,,,,,,0.08730745,0.08730745,0.08730745,0.157370549,0.157370549,0.157370549,0.0180518,0.0180518,0.0180518,0.054454058,0.054454058,0.054454058,1.62567914,1.62567914,1.62567914,0.417182336,0.417182336,0.417182336 +39,OH,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,2.49504375,2.40288672,2.31072969,2.21857266,3.392277907,4.565983153,5.7396884,5.758667704,5.777647008,5.796626312,5.796626312,5.796626312 +39,OH,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,10.5332798,10.1452655,9.7572512,9.3692369,14.33392795,19.29861901,24.26331006,24.35061222,24.43791437,24.52521653,24.52521653,24.52521653 +39,OH,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.090016378,0.086430462,0.082844546,0.07925863,0.119175779,0.159092927,0.199010076,0.197894725,0.196779375,0.195664024,0.195664024,0.195664024 +39,OH,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.93495982,0.89985051,0.8647412,0.82963189,1.264096715,1.698561539,2.133026364,2.136168176,2.139309987,2.142451799,2.142451799,2.142451799 +39,OH,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,1.10325267,1.061823613,1.020394557,0.9789655,1.491633857,2.004302213,2.51697057,2.520678173,2.524385777,2.52809338,2.52809338,2.52809338 +39,OH,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.179235615,0.171750425,0.164265235,0.156780045,0.233049685,0.309319324,0.385588964,0.38098681,0.376384655,0.371782501,0.371782501,0.371782501 +39,OH,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.173568418,0.167157383,0.160746348,0.154335313,0.235984309,0.317633305,0.399282301,0.400602735,0.401923169,0.403243603,0.403243603,0.403243603 +40,OK,1,FUEL COMB. ELEC. UTIL.,VOC,0.70517,1.08452,1.07576,1.19147,1.01982,1.086103,1.027607,1.099156,1.095953919,1.092751838,1.089549757,1.087292505,1.085035252,1.082778,1.072329667,1.061881333,1.051433,0.964316,0.877199,0.790082,0.697922,0.605762,0.513602,0.513602,0.513602 +40,OK,1,FUEL COMB. ELEC. UTIL.,SO2,101.86868,106.59279,108.77324,99.25266,88.0662,70.820142,68.003106,112.2031471,109.803007,100.097917,110.0920847,106.090744,100.110545,107.737401,103.7220427,99.70669233,95.691342,89.390565,83.089788,76.789011,65.87440833,54.95980567,44.045203,30.855284,8.718291 +40,OK,1,FUEL COMB. ELEC. UTIL.,PM25,0.82296,1.62826,1.62949,1.46455,3.109888,3.121742,3.150846,1.641635445,1.764528151,1.887420857,2.010313562,2.585383252,3.160452941,3.73552263,3.670791504,3.606060378,3.541355252,3.536627878,3.531900503,3.527173129,3.217228583,2.907284038,2.597339493,2.597339493,2.597339493 +40,OK,1,FUEL COMB. ELEC. UTIL.,PM10,2.23384,2.33173,2.3361,2.09261,3.646371,3.645461,3.693532,3.234694211,3.374705109,3.514716007,3.654726905,4.48600027,5.317273635,6.148547,5.979086667,5.809626333,5.640192,5.258495667,4.876799333,4.495103,4.008555333,3.522007667,3.03546,3.03546,3.03546 +40,OK,1,FUEL COMB. ELEC. UTIL.,NOX,92.05396,88.21348,92.44333,95.30931,82.23576,72.805544,62.525613,87.934185,86.50208,78.216999,86.00252306,82.810484,76.528905,82.508989,82.06038733,81.61271267,81.090938,67.259497,53.428056,39.596615,33.78776267,27.97891033,22.170058,20.672063,16.449846 +40,OK,1,FUEL COMB. ELEC. UTIL.,NH3,,0.19629,0.17923,0.25444,0.212158,0.223095,0.194557,0.8327358,0.806499666,0.780263532,0.754027398,0.742127976,0.730228553,0.71832913,0.748797727,0.779266323,0.80973492,0.762132064,0.714529207,0.666926351,0.582565496,0.498204642,0.413843787,0.413843787,0.413843787 +40,OK,1,FUEL COMB. ELEC. UTIL.,CO,7.64912,10.12997,9.9715,11.41074,13.27477,11.016422,10.404574,13.80669,13.4267341,13.04677819,12.66682229,12.80239952,12.93797676,13.073554,12.95176767,12.82998133,12.708195,13.46064233,14.21308967,14.965537,15.20966733,15.45379767,15.697928,15.697928,15.697928 +40,OK,2,FUEL COMB. INDUSTRIAL,PM25,3.39709,1.79617,1.79185,1.78563,3.944255,4.053244,4.158047,1.494585015,1.453311684,1.412038353,1.370765022,2.573633995,3.776502969,4.979371942,4.748925669,4.518479397,4.474289353,4.219149083,3.964008812,3.708868541,4.117812398,4.526756255,4.935700112,4.935700112,4.935700112 +40,OK,2,FUEL COMB. INDUSTRIAL,SO2,70.81388,19.67662,19.83852,19.65314,45.74887,42.908736,55.3994,21.01189875,20.33034994,19.64880114,18.96725233,16.99998318,15.03271403,13.06544488,11.78819327,10.51094166,10.15676071,8.113515235,6.070269763,4.027024291,3.684752778,3.342481264,3.00020975,3.00020975,3.00020975 +40,OK,2,FUEL COMB. INDUSTRIAL,VOC,13.478,11.11009,10.99408,10.86903,10.93025,11.111223,11.033285,16.92583356,16.81663397,16.70743439,16.5982348,12.75137299,8.904511169,5.057649351,8.051621656,11.04559396,13.97868439,14.25439108,14.53009777,14.80580446,14.73861934,14.67143422,14.6042491,14.6042491,14.6042491 +40,OK,2,FUEL COMB. INDUSTRIAL,PM10,4.00299,1.90977,1.89966,1.89099,4.544722,4.681402,4.825245,2.741410696,2.434763995,2.128117294,1.821470592,3.295340199,4.769209805,6.243079411,5.920458872,5.597838332,5.264924047,4.895728166,4.526532285,4.157336405,4.596568964,5.035801522,5.475034081,5.475034081,5.475034081 +40,OK,2,FUEL COMB. INDUSTRIAL,NOX,156.895,127.25087,124.36316,122.22026,129.98169,130.279835,132.195208,67.00782513,64.64979606,62.291767,59.93373794,57.13390705,54.33407617,51.53424528,61.65898799,71.78373069,80.78807014,77.08188294,73.37569573,69.66950852,68.66535235,67.66119618,66.65704001,66.65704001,66.65704001 +40,OK,2,FUEL COMB. INDUSTRIAL,CO,45.628,56.81233,55.33216,54.35979,54.87774,55.973716,55.790645,42.98594012,41.59015069,40.19436125,38.79857182,37.87344733,36.94832285,36.02319836,45.63262321,55.24204806,63.89873339,60.90328753,57.90784168,54.91239582,52.89871591,50.885036,48.8713561,48.8713561,48.8713561 +40,OK,2,FUEL COMB. INDUSTRIAL,NH3,0.26977,0.13645,0.13247,0.13049,1.822732,1.847946,1.857378,0.189524116,0.174934214,0.160344311,0.145754409,0.182828927,0.219903444,0.256977961,0.315410133,0.373842304,0.395159059,0.304123959,0.21308886,0.122053761,0.217577239,0.313100717,0.408624194,0.408624194,0.408624194 +40,OK,3,FUEL COMB. OTHER,VOC,11.45002,7.07934,7.07679,7.07135,7.420023,7.926047,7.924865,7.677594111,6.987988374,6.298382636,5.608776898,4.45476158,3.300746262,2.146730944,2.048670971,1.950610998,1.75487205,1.802647126,1.850422202,1.898197278,2.661603942,3.425010606,4.188417269,4.188417269,4.188417269 +40,OK,3,FUEL COMB. OTHER,CO,61.27394,20.28269,20.1775,20.02295,20.740546,22.09126,22.113386,26.8504227,26.80977212,26.76912154,26.72847095,21.96118501,17.19389907,12.42661312,11.97125362,11.51589412,10.27715828,11.09212692,11.90709555,12.72206419,17.72596996,22.72987572,27.73378149,27.73378149,27.73378149 +40,OK,3,FUEL COMB. OTHER,NH3,0.04398,0.04029,0.03857,0.0356,0.039248,0.039646,0.040183,0.020709338,0.020913671,0.021118005,0.021322338,0.220337637,0.419352937,0.618368236,0.656700911,0.695033585,0.723738397,0.740009561,0.756280725,0.772551889,0.757381562,0.742211234,0.727040907,0.727040907,0.727040907 +40,OK,3,FUEL COMB. OTHER,NOX,7.4036,6.11241,5.907,5.53341,6.685274,6.783866,6.871889,6.743255573,6.716536573,6.689817573,6.663098573,6.16686963,5.670640688,5.174411746,5.415182823,5.655953901,5.887216896,6.105826686,6.324436476,6.543046265,6.005256172,5.467466078,4.929675984,4.929675984,4.929675984 +40,OK,3,FUEL COMB. OTHER,PM10,8.1111,3.09155,3.06723,3.02555,3.82767,4.036386,4.066497,3.287946544,3.269582216,3.251217887,3.232853558,2.668644819,2.10443608,1.540227341,1.468611896,1.396996451,1.198366876,1.313832392,1.429297907,1.544763422,2.264965893,2.985168364,3.705370835,3.705370835,3.705370835 +40,OK,3,FUEL COMB. OTHER,PM25,8.09183,3.04857,3.02573,2.98744,3.805907,4.014189,4.0438,3.265064635,3.24921646,3.233368285,3.21752011,2.644457464,2.071394818,1.498332172,1.429592022,1.360851872,1.165111168,1.278913528,1.392715888,1.506518248,2.226203618,2.945888989,3.665574359,3.665574359,3.665574359 +40,OK,3,FUEL COMB. OTHER,SO2,1.70506,0.50949,0.51298,0.421,0.469174,0.480694,0.490688,0.767075807,0.763107807,0.759139807,0.755171807,0.583552748,0.41193369,0.240314632,0.187145182,0.133975733,0.078730624,0.08356641,0.088402196,0.093237983,0.104401975,0.115565967,0.126729959,0.126729959,0.126729959 +40,OK,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.34783,0.2251,0.22943,0.23511,0.195088,0.201895,0.209519,0.142179077,0.249259251,0.356339425,0.463419599,0.428402724,0.393385849,0.358368973,0.395474865,0.432580757,0.469688649,0.441153017,0.412617385,0.384081754,0.424717509,0.465353264,0.505989019,0.505989019,0.505989019 +40,OK,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,15.63992,15.63992,15.88813,16.55016,1.314839,1.359544,1.410822,2.791845,2.799562667,2.807280333,2.814998,2.570257333,2.325516667,2.080776,3.178835667,4.276895333,5.374955,4.382925667,3.390896333,2.398867,2.643693667,2.888520333,3.133347,3.133347,3.133347 +40,OK,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.5192,0.25978,0.26487,0.27144,0.241083,0.24949,0.258928,0.241911486,0.375488657,0.509065829,0.642643,0.595551333,0.548459667,0.501368,0.563758333,0.626148667,0.727645,0.640540873,0.553436747,0.46633262,0.543468747,0.620604873,0.697741,0.697741,0.697741 +40,OK,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.889,3.00074,3.05706,3.16375,1.27228,1.315483,1.364735,1.129779,2.232928333,3.336077667,4.439227,4.327631333,4.216035667,4.10444,3.867466,3.630492,3.9797826,3.745662733,3.511542867,3.277423,3.191435,3.105447,3.019459,3.019459,3.019459 +40,OK,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,1.40282,1.6925,1.73919,1.76605,0.74835,0.779108,0.81045,3.847019667,4.632382778,5.417745889,6.203109,5.720229333,5.237349667,4.75447,3.404114667,2.053759333,1.875850435,3.251018957,4.626187478,6.001356,5.018151667,4.034947333,3.051743,3.051743,3.051743 +40,OK,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,1.902,7.8348,8.04453,8.19625,1.13494,1.150591,1.196144,0.932627667,1.199015111,1.465402556,1.73179,1.453320667,1.174851333,0.896382,0.856427333,0.816472667,0.78816459,0.848709727,0.909254863,0.9698,1.003044333,1.036288667,1.069533,1.069533,1.069533 +40,OK,4,CHEMICAL & ALLIED PRODUCT MFG,CO,17.128,70.2978,72.38336,73.456,1.21008,1.259466,1.31022,2.914528333,2.518070222,2.121612111,1.725154,1.712188333,1.699222667,1.686257,1.533694333,1.381131667,1.31412314,1.467578093,1.621033047,1.774488,1.586659333,1.398830667,1.211002,1.211002,1.211002 +40,OK,5,METALS PROCESSING,NH3,,,,,0,0,0,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +40,OK,5,METALS PROCESSING,VOC,0.243,0.51634,0.52466,0.50352,0.42311,0.434347,0.461502,0.402989,0.401935667,0.400882333,0.399829,0.361109333,0.322389667,0.28367,0.259693,0.235716,0.211739,0.231072333,0.250405667,0.269739,0.275373333,0.281007667,0.286642,0.286642,0.286642 +40,OK,5,METALS PROCESSING,SO2,0.006,0.04542,0.04697,0.04714,0.03386,0.03504,0.037311,0.01124,0.010976667,0.010713333,0.01045,0.010233,0.010016,0.009799,0.013451,0.017103,0.020755,0.025907333,0.031059667,0.036212,0.040549,0.044886,0.049223,0.049223,0.049223 +40,OK,5,METALS PROCESSING,PM25,0.32859,0.32173,0.32914,0.31927,0.361666,0.373506,0.398178,0.137608019,0.104015718,0.070423417,0.036831116,0.029872043,0.022912969,0.015953896,0.041055464,0.066157033,0.091258601,0.110765037,0.130271473,0.149777909,0.141454504,0.133131099,0.124807695,0.124807695,0.124807695 +40,OK,5,METALS PROCESSING,NOX,0.018,0.20288,0.20871,0.2059,0.13507,0.140908,0.151323,0.1245805,0.110633667,0.096686833,0.08274,0.086408667,0.090077333,0.093746,0.078489667,0.063233333,0.047977,0.052738,0.057499,0.06226,0.069641,0.077022,0.084403,0.084403,0.084403 +40,OK,5,METALS PROCESSING,CO,1.451,2.40541,2.47823,2.44926,2.20199,2.287448,2.449372,2.271877,1.965759667,1.659642333,1.353525,1.437502,1.521479,1.605456,1.388372,1.171288,0.954204,1.018547667,1.082891333,1.147235,1.214023,1.280811,1.347599,1.347599,1.347599 +40,OK,5,METALS PROCESSING,PM10,0.6055,0.40282,0.41153,0.39829,0.402741,0.415706,0.4429,0.320855485,0.29462899,0.268402495,0.242176,0.169433,0.09669,0.023947,0.062018333,0.100089667,0.138161,0.151813333,0.165465667,0.179118,0.168372667,0.157627333,0.146882,0.146882,0.146882 +40,OK,6,PETROLEUM & RELATED INDUSTRIES,PM10,1.99151,1.05116,1.07401,1.06827,1.193246,1.211121,1.225002,1.709481004,1.587356669,1.465232335,1.343108,2.216800667,3.090493333,3.964186,4.030884942,4.097583885,3.515379198,3.28856782,3.061756442,2.834945064,2.481744911,2.128544757,1.775344604,1.775344604,1.775344604 +40,OK,6,PETROLEUM & RELATED INDUSTRIES,VOC,38.555,30.54546,31.47645,31.47468,52.35962,48.931198,51.052776,110.725378,110.458477,110.191576,109.924675,138.9541157,167.9835563,197.012997,206.7059576,216.3989183,242.097208,225.7513847,209.4055614,193.0597381,184.2005748,175.3414115,166.4822483,166.4822483,166.4822483 +40,OK,6,PETROLEUM & RELATED INDUSTRIES,PM25,1.518,0.49624,0.5098,0.50893,0.846544,0.858904,0.868158,1.310148225,1.27352467,1.236901115,1.20027756,1.279304684,1.358331809,1.437358933,2.206216565,2.975074197,3.269273399,3.0404542,2.811635001,2.582815802,2.239782745,1.896749688,1.553716631,1.553716631,1.553716631 +40,OK,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.72554,0.72554,0.75732,0.7624,0.142317,0.144169,0.145307,0.025858,0.023405,0.020952,0.018499,0.026846667,0.035194333,0.043542,0.041644833,0.039747667,0.0378505,0.031308667,0.024766833,0.018225,0.026842226,0.035459452,0.044076678,0.044076678,0.044076678 +40,OK,6,PETROLEUM & RELATED INDUSTRIES,CO,0.503,81.04557,84.58081,85.14228,0.34526,0.350253,0.353916,11.46852283,11.69452122,11.92051961,12.146518,27.16421667,42.18191533,57.199614,70.84830599,84.49699799,77.68591853,79.71746053,81.74900254,83.78054454,72.93584284,62.09114115,51.24643945,51.24643945,51.24643945 +40,OK,6,PETROLEUM & RELATED INDUSTRIES,SO2,14.478,10.97197,11.23826,11.19123,8.14327,8.26879,8.36774,8.838041,9.206882667,9.575724333,9.944566,9.989566,10.034566,10.079566,10.21450763,10.34944925,10.44254231,10.45418866,10.46583501,10.47748136,12.81390617,15.15033097,17.48675578,17.48675578,17.48675578 +40,OK,6,PETROLEUM & RELATED INDUSTRIES,NOX,2.755,1.78879,1.85001,1.85337,1.99842,2.025978,2.044886,68.1164745,68.322724,68.5289735,68.735223,69.410758,70.086293,70.761828,75.17831943,79.59481086,67.94181267,70.1319504,72.32208813,74.51222586,66.93077214,59.34931842,51.7678647,51.7678647,51.7678647 +40,OK,7,OTHER INDUSTRIAL PROCESSES,PM25,9.29191,4.69419,5.15395,5.34335,7.283665,7.729587,8.78262143,7.012569507,7.24111031,7.469651113,7.698191916,6.218053378,4.737914841,3.257776303,3.260997046,3.264217789,3.27255367,3.35246618,3.432378689,3.512291199,3.803472184,4.094653168,4.385834153,4.385834153,4.385834153 +40,OK,7,OTHER INDUSTRIAL PROCESSES,SO2,3.27519,5.94332,6.09866,6.10305,1.67985,12.085461,11.229248,4.201848599,4.577803097,4.953757595,5.329712092,5.384628728,5.439545364,5.494462,5.072522667,4.650583333,4.228644,4.912703,5.596762,6.280821,5.177384667,4.073948333,2.970512,2.970512,2.970512 +40,OK,7,OTHER INDUSTRIAL PROCESSES,PM10,22.96442,14.73538,16.81878,17.67404,25.491952,27.031281,28.21830843,25.79165107,26.31298088,26.83431069,27.35564049,21.84696311,16.33828573,10.82960835,10.28693654,9.744264724,9.212457639,9.335443373,9.458429107,9.581414842,9.79766371,10.01391258,10.23016145,10.23016145,10.23016145 +40,OK,7,OTHER INDUSTRIAL PROCESSES,NOX,4.876,10.20314,10.47444,10.50226,2.88948,9.617906,9.929487,6.052525667,6.72583138,7.399137094,8.072442808,9.057935872,10.04342894,11.028922,8.955646333,6.882370667,4.809095,6.16689646,7.524697921,8.882499381,7.80893178,6.735364178,5.661796577,5.661796577,5.661796577 +40,OK,7,OTHER INDUSTRIAL PROCESSES,NH3,5.55758,5.76154,5.94366,5.99782,6.046244,6.313218,6.669874,6.3328347,6.329007187,6.325179674,6.321352162,4.264047441,2.206742721,0.149438,0.1668756,0.1843132,0.2017508,0.169950908,0.138151017,0.106351125,0.1782184,0.250085675,0.32195295,0.32195295,0.32195295 +40,OK,7,OTHER INDUSTRIAL PROCESSES,CO,0.97,3.04735,3.13827,3.17028,1.91733,2.567411,2.97249545,3.730515571,3.944679376,4.158843182,4.373006988,4.714725412,5.056443836,5.39816226,4.827800897,4.257439534,3.687078171,5.048585025,6.410091878,7.771598731,6.567268102,5.362937472,4.158606843,4.158606843,4.158606843 +40,OK,7,OTHER INDUSTRIAL PROCESSES,VOC,4.314,5.68655,5.8569,5.93009,2.70141,2.887041,2.939739381,3.533369959,4.016375071,4.499380182,4.982385293,5.280630023,5.578874752,5.877119482,5.686891884,5.496664286,5.306436688,5.380064033,5.453691378,5.527318723,5.708042193,5.888765663,6.069489133,6.069489133,6.069489133 +40,OK,8,SOLVENT UTILIZATION,VOC,62.3319,67.81081,68.81547,62.72865,53.84373,53.306372,55.003315,34.3438089,34.4810289,34.6182489,34.7554689,34.03312402,33.31077914,32.58843426,32.57257058,32.55670689,32.45656469,35.17135761,37.88615053,40.60094345,41.07311275,41.54528205,42.01745135,42.01745135,42.01745135 +40,OK,8,SOLVENT UTILIZATION,CO,,0.01449,0.01482,0.01505,0.06025,0.062891,0.065445,0.0049345,0.004309,0.0036835,0.003058,0.002038667,0.001019333,,0,0,0,9.87E-05,0.000197333,0.000296,0.000197333,9.87E-05,0,0,0 +40,OK,8,SOLVENT UTILIZATION,NH3,,,,,0,0,0,0.000593,0.000628667,0.000664333,0.0007,0.000466667,0.000233333,0,1.77E-05,3.53E-05,0.000053,0.000197667,0.000342333,0.000487,0.000357333,0.000227667,0.000098,0.000098,0.000098 +40,OK,8,SOLVENT UTILIZATION,NOX,0.004,0.07824,0.08026,0.08123,0.07654,0.080132,0.084371,0.005761,0.005123667,0.004486333,0.003849,0.002566,0.001283,0,0,0,0,0.000094,0.000188,0.000282,0.000188,0.000094,0,0,0 +40,OK,8,SOLVENT UTILIZATION,PM10,0.068,0.04068,0.04146,0.04175,0.10199,0.106282,0.112925,0.087622541,0.065716755,0.04381097,0.021905185,0.01825479,0.014604395,0.010954,0.013903333,0.016852667,0.019802,0.021223333,0.022644667,0.024066,0.023076333,0.022086667,0.021097,0.021097,0.021097 +40,OK,8,SOLVENT UTILIZATION,PM25,0.04733,0.03393,0.03458,0.03489,0.10199,0.106282,0.112925,0.074159542,0.055989771,0.037820001,0.01965023,0.016728153,0.013806077,0.010884,0.01160312,0.012322239,0.013041359,0.015518648,0.017995937,0.020473227,0.019555439,0.018637651,0.017719864,0.017719864,0.017719864 +40,OK,8,SOLVENT UTILIZATION,SO2,,0.00032,0.00032,0.00032,0.00056,0.000586,0.000609,0.0000315,2.67E-05,2.18E-05,0.000017,1.13E-05,5.67E-06,,0,0,0,0,0,,0,0,0,0,0 +40,OK,9,STORAGE & TRANSPORT,PM10,1.88306,1.47384,1.48277,1.46189,0.94928,0.994673,1.04705,0.560111568,0.597858379,0.635605189,0.673352,0.652731667,0.632111333,0.611491,0.609674667,0.607858333,0.606039,0.642139,0.678239,0.714339,0.758979,0.803619,0.848259,0.848259,0.848259 +40,OK,9,STORAGE & TRANSPORT,VOC,30.496,24.15506,25.12169,25.26031,32.92205,23.994075,24.360371,31.13777406,33.89245972,36.64714539,39.40183106,35.23868989,31.07554872,26.91240755,29.15451836,31.39662918,29.94550757,28.93410975,27.92271194,26.91131413,27.43612211,27.9609301,28.48573809,28.48573809,28.48573809 +40,OK,9,STORAGE & TRANSPORT,SO2,,0.0002,0.0002,0.0002,0.00004,0.000041,0.000043,0.176553,0.117856333,0.059159667,0.000463,0.000314,0.000165,0.000016,0.000058,0.0001,0.000142,0.000156667,0.000171333,0.000186,0.000131333,7.67E-05,0.000022,0.000022,0.000022 +40,OK,9,STORAGE & TRANSPORT,PM25,1.01905,0.45299,0.45406,0.44679,0.418712,0.439036,0.462626,0.276472372,0.273388143,0.270303915,0.267219686,0.255640661,0.244061636,0.232482611,0.232495665,0.232508718,0.232518772,0.237829875,0.243140978,0.248452081,0.292724101,0.336996121,0.381268141,0.381268141,0.381268141 +40,OK,9,STORAGE & TRANSPORT,NOX,,0.0168,0.01738,0.0178,0.0228,0.023333,0.023894,0.18225,0.129129667,0.076009333,0.022889,0.020630667,0.018372333,0.016114,0.019738333,0.023362667,0.026987,0.029521667,0.032056333,0.034591,0.030484333,0.026377667,0.022271,0.022271,0.022271 +40,OK,9,STORAGE & TRANSPORT,NH3,,,,,0.188499,0.190948,0.192453,0.06098,0.056830333,0.052680667,0.048531,0.046273,0.044015,0.041757,0.035348333,0.028939667,0.022531,0.015398667,0.008266333,0.001134,0.000920667,0.000707333,0.000494,0.000494,0.000494 +40,OK,9,STORAGE & TRANSPORT,CO,0.001,0.05861,0.05997,0.06061,0.05696,0.058274,0.059666,0.124665,0.102150667,0.079636333,0.057122,0.050858,0.044594,0.03833,0.048070667,0.057811333,0.067552,0.080336,0.09312,0.105904,0.105402,0.1049,0.104398,0.104398,0.104398 +40,OK,10,WASTE DISPOSAL & RECYCLING,VOC,17.84722,4.58803,4.75801,4.94221,5.04157,4.392291,4.422324,5.61614053,5.65775153,5.69936253,5.74097353,4.257920608,2.774867686,1.291814764,1.203045337,1.11427591,1.025506482,1.447933733,1.870360983,2.292788234,2.164261418,2.035734602,1.907207785,1.907207785,1.907207785 +40,OK,10,WASTE DISPOSAL & RECYCLING,NH3,0.68575,0.86602,0.85826,0.88151,0.89692,0.920243,0.94356,0.005152196,0.005152196,0.005152196,0.005152196,0.006697232,0.008242268,0.009787304,0.013617079,0.017446854,0.021276628,0.049182572,0.077088515,0.104994459,0.106599952,0.108205445,0.109810939,0.109810939,0.109810939 +40,OK,10,WASTE DISPOSAL & RECYCLING,NOX,1.481,1.89123,1.9298,2.01184,2.17082,1.893555,1.923492,1.597021384,1.578169559,1.559317734,1.54046591,1.263464146,0.986462383,0.709460619,0.855842565,1.00222451,1.148606456,1.232806287,1.317006117,1.401205948,1.339336981,1.277468015,1.215599048,1.215599048,1.215599048 +40,OK,10,WASTE DISPOSAL & RECYCLING,PM10,2.95584,4.63039,4.86636,5.08604,5.547945,4.550031,4.559596,4.812902218,4.966731281,5.120560344,5.274389408,5.158088545,5.041787683,4.92548682,4.608437417,4.291388014,3.97433861,4.008182132,4.042025654,4.075869176,3.976142679,3.876416182,3.776689685,3.776689685,3.776689685 +40,OK,10,WASTE DISPOSAL & RECYCLING,CO,15.65616,22.36137,23.33495,25.11112,25.94306,15.367418,15.370816,17.32742604,17.31937004,17.31131404,17.30325804,16.52647727,15.7496965,14.97291573,13.6167091,12.26050246,10.90429583,15.04325078,19.18220574,23.3211607,21.17288379,19.02460687,16.87632996,16.87632996,16.87632996 +40,OK,10,WASTE DISPOSAL & RECYCLING,SO2,0.39614,0.43656,0.43815,0.44911,0.30116,0.308727,0.31435,0.166718872,0.148068748,0.129418624,0.1107685,0.09729791,0.083827319,0.070356729,0.075217812,0.080078895,0.084939978,0.153506792,0.222073606,0.290640421,0.260733899,0.230827377,0.200920856,0.200920856,0.200920856 +40,OK,10,WASTE DISPOSAL & RECYCLING,PM25,2.66744,4.37042,4.5911,4.80618,5.127386,4.120102,4.126271,4.463170771,4.540027632,4.616884492,4.693741353,4.401316056,4.108890758,3.816465461,3.382182125,2.947898789,2.513615453,2.802339532,3.09106361,3.379787689,3.361917695,3.344047701,3.326177708,3.326177708,3.326177708 +40,OK,11,HIGHWAY VEHICLES,NH3,2.49102,3.72818,4.19795,4.06046,4.19885,4.37708,4.3689,2.482011075,2.403889432,2.325767789,2.247646146,2.24514073,2.242635314,2.154885595,1.939447655,1.85973237,1.91806209,1.811883515,1.705704939,1.599526364,1.522221289,1.594594082,1.579892647,1.383575928,1.363818471 +40,OK,11,HIGHWAY VEHICLES,NOX,157.61359,141.81797,144.00338,142.45999,139.11837,139.21927,128.84176,193.6642728,178.4982788,163.3322848,148.1662908,144.6678162,141.1693417,135.3375073,124.4718765,117.4786438,115.1054862,107.4274094,99.74933264,92.07125586,82.33818362,77.17641531,72.37739938,57.02630894,51.65888745 +40,OK,11,HIGHWAY VEHICLES,PM10,6.58413,4.76489,4.60337,4.32986,4.104,3.88155,3.57739,6.685596409,6.481506877,6.277417346,6.073327814,6.070893879,6.068459945,5.647395973,5.078323182,4.841444013,6.566062799,6.039449558,5.512836317,4.986223075,4.587106761,4.146808625,4.076768954,4.034173395,3.901837973 +40,OK,11,HIGHWAY VEHICLES,PM25,5.5451,3.82981,3.64972,3.39871,3.1765,2.95497,2.68485,5.576308348,5.374881261,5.173454174,4.972027086,4.878548351,4.785069616,4.35270102,3.857760527,3.604532903,3.555014737,3.314819955,3.074625174,2.834430392,2.476464401,2.273702833,2.185197743,1.877705149,1.736918143 +40,OK,11,HIGHWAY VEHICLES,SO2,8.52655,4.90136,5.06347,5.13505,5.25731,4.81511,4.78425,6.137074935,5.152800585,4.168526235,3.184251885,2.194674706,1.205097526,1.20727881,1.157196516,1.208166974,0.515517095,0.493764632,0.472012169,0.450259706,0.430906591,0.449188646,0.408683239,0.211304742,0.179704239 +40,OK,11,HIGHWAY VEHICLES,VOC,149.61912,100.43698,98.21087,97.81642,95.34174,92.32513,86.30004,74.38229426,70.1264254,65.87055654,61.61468768,62.58711798,63.55954829,56.95972714,52.41410787,54.07968025,54.97523975,50.89523446,46.81522917,42.73522388,39.28509774,39.27228519,36.94733645,28.57482698,26.42711238 +40,OK,11,HIGHWAY VEHICLES,CO,1782.07884,1286.50406,1243.94903,1204.33171,1122.89434,1137.56734,1075.02191,973.854128,925.030447,876.2067659,827.3830848,756.2965344,685.2099841,635.7131979,528.0386444,567.4181714,516.1408327,486.9824755,457.8241183,428.6657612,400.7655809,390.0581561,375.9299576,303.5611676,287.5495245 +40,OK,12,OFF-HIGHWAY,VOC,31.02821,34.54338,32.6962,31.9575,31.52074,31.2358,30.86027,39.56617686,38.7014857,37.83679455,36.97210339,35.29535701,33.61861063,32.0902152,30.56017059,29.7188796,28.988654,27.13082466,25.27299531,23.41516597,21.43790688,18.50337696,17.4833887,17.00487116,16.52635363 +40,OK,12,OFF-HIGHWAY,CO,257.04384,290.29842,283.24924,283.99498,285.51785,287.81822,293.72668,319.1250206,310.8123762,302.4997318,294.1870875,279.4430529,264.6990183,244.725802,220.5735925,212.2707497,206.8831349,196.6268224,186.3705099,176.1141973,176.5543902,177.4989951,177.4347759,177.9812871,178.5277984 +40,OK,12,OFF-HIGHWAY,NH3,0.74718,0.76667,0.74952,0.76727,0.04148,0.04148,0.04148,0.032712979,0.033159443,0.033605906,0.03405237,0.035630453,0.037208537,0.037546101,0.03820676,0.038714917,0.038737127,0.039424172,0.040111217,0.040798263,0.038273918,0.032017337,0.033225227,0.033420731,0.033616234 +40,OK,12,OFF-HIGHWAY,NOX,49.13395,54.95922,54.74013,54.30022,54.01602,54.08154,54.13382,57.20615878,56.66456762,56.12297646,55.5813853,51.94178736,48.30218942,47.80851026,47.11159574,46.24869943,43.98211573,43.37220054,42.76228534,42.15237015,38.78673978,32.39363038,32.05547904,30.94939493,29.84331082 +40,OK,12,OFF-HIGHWAY,PM10,4.88717,5.0137,4.94153,4.86962,4.74196,4.62395,4.50618,4.352567449,4.252980639,4.153393829,4.053807019,3.877065642,3.700324264,3.487382763,3.424219109,3.327232997,3.156604134,3.053249044,2.949893954,2.846538863,2.585005059,2.142393312,2.061937451,1.980640494,1.899343537 +40,OK,12,OFF-HIGHWAY,PM25,4.47445,4.59002,4.52778,4.46693,4.33915,4.23161,4.12335,4.167938869,4.070819957,3.973701045,3.876582133,3.679408547,3.482234961,3.206745707,3.145836879,3.05238247,2.98296294,2.885223955,2.78748497,2.689745985,2.446571752,2.03777798,1.960223285,1.881568189,1.802913094 +40,OK,12,OFF-HIGHWAY,SO2,3.76545,4.70582,4.75301,4.82109,4.90355,4.99509,5.1,4.890183798,4.936977653,4.983771509,5.030565364,3.496279406,1.961993447,0.786281418,0.835447021,0.573915055,0.32104203,0.346868051,0.372694073,0.398520094,0.405042114,0.406671676,0.418086153,0.418341304,0.418596455 +40,OK,14,MISCELLANEOUS,CO,22.92962,431.89595,76.01377,110.98672,92.12504,62.30535,37.8259,331.1792602,404.8629398,478.5466193,552.2302989,374.2107535,196.1912081,18.17166274,17.28782139,16.40398003,15.52013867,26.83256546,38.14499225,49.45741904,37.83405762,26.2106962,14.58733478,14.58733478,14.58733478 +40,OK,14,MISCELLANEOUS,VOC,3.16579,57.44087,6.05103,9.84224,11.329212,2.96182,1.80981,24.72801003,42.34950932,59.97100861,77.5925079,52.15342084,26.71433378,1.275246723,1.224544029,1.173841335,1.123138641,3.470879905,5.818621169,8.166362434,8.126341154,8.086319875,8.046298595,8.046298595,8.046298595 +40,OK,14,MISCELLANEOUS,SO2,0.02499,0.45157,0.05548,0.08719,0.06958,0.36525,0.2212,6.701046144,7.504083343,8.307120543,9.110157742,6.11663043,3.123103117,0.129575804,0.163738337,0.19790087,0.232063404,0.239610069,0.247156735,0.254703401,0.22264882,0.19059424,0.15853966,0.15853966,0.15853966 +40,OK,14,MISCELLANEOUS,PM25,96.42692,162.68009,129.54302,139.43092,134.56191,126.820607,124.0285238,101.9651668,108.9532364,115.941306,122.9293756,112.4332099,101.9370442,91.4408785,86.97964299,82.51840748,78.05717197,74.64291346,71.22865494,67.81439643,70.38968237,72.96496831,75.54025426,75.54025426,75.54025426 +40,OK,14,MISCELLANEOUS,PM10,533.50967,785.3089,725.33838,771.3625,747.77276,723.675852,751.3274664,675.41638,683.6623012,691.9082224,700.1541436,702.1160792,704.0780149,706.0399505,679.5773714,653.1147922,626.6522131,552.4165288,478.1808445,403.9451603,445.2954074,486.6456546,527.9959017,527.9959017,527.9959017 +40,OK,14,MISCELLANEOUS,NOX,0.63931,12.12705,1.67241,2.56009,5.604148,1.33707,0.81195,18.67159294,20.51564532,22.35969771,24.20375009,16.35281652,8.50188295,0.650949378,0.65920482,0.667460262,0.675715704,0.874127206,1.072538707,1.270950208,1.042201138,0.813452068,0.584702998,0.584702998,0.584702998 +40,OK,14,MISCELLANEOUS,NH3,137.29789,180.61759,185.58689,191.68163,200.20837,206.56142,101.1350747,100.433234,101.659086,102.8849381,104.1107901,101.7970461,99.48330216,97.16955818,99.00843836,100.8473185,102.6861987,101.62372,100.5612413,99.49876254,102.923727,106.3486914,109.7736559,109.7736559,109.7736559 +40,OK,15,WILDFIRES,PM25,,,,,,,,0.139209562,0.139209562,0.139209562,6.230515094,6.230515094,6.230515094,6.580020129,6.580020129,6.580020129,26.43942757,26.43942757,26.43942757,14.244056,14.244056,14.244056,39.84589623,39.84589623,39.84589623 +40,OK,15,WILDFIRES,SO2,,,,,,,,0.009497249,0.009497249,0.009497249,0.725578065,0.725578065,0.725578065,0.599745372,0.599745372,0.599745372,2.470226313,2.470226313,2.470226313,1.493024852,1.493024852,1.493024852,4.161071316,4.161071316,4.161071316 +40,OK,15,WILDFIRES,PM10,,,,,,,,0.163811284,0.163811284,0.163811284,7.352007811,7.352007811,7.352007811,7.764447462,7.764447462,7.764447462,31.19853303,31.19853303,31.19853303,16.80798595,16.80798595,16.80798595,47.01816041,47.01816041,47.01816041 +40,OK,15,WILDFIRES,NOX,,,,,,,,0.014619953,0.014619953,0.014619953,1.655843296,1.655843296,1.655843296,1.137477246,1.137477246,1.137477246,4.792122852,4.792122852,4.792122852,3.177089631,3.177089631,3.177089631,8.830708629,8.830708629,8.830708629 +40,OK,15,WILDFIRES,CO,,,,,,,,1.76437643,1.76437643,1.76437643,65.59114416,65.59114416,65.59114416,75.3669001,75.3669001,75.3669001,300.6241354,300.6241354,300.6241354,156.0213143,156.0213143,156.0213143,437.0158157,437.0158157,437.0158157 +40,OK,15,WILDFIRES,NH3,,,,,,,,0.026482427,0.026482427,0.026482427,1.091299251,1.091299251,1.091299251,1.239084963,1.239084963,1.239084963,4.947422031,4.947422031,4.947422031,2.581074124,2.581074124,2.581074124,7.22825965,7.22825965,7.22825965 +40,OK,15,WILDFIRES,VOC,,,,,,,,0.399865594,0.399865594,0.399865594,15.68742674,15.68742674,15.68742674,17.81184951,17.81184951,17.81184951,71.11923319,71.11923319,71.11923319,37.10293195,37.10293195,37.10293195,103.9062644,103.9062644,103.9062644 +40,OK,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,43.63110643,51.29668205,58.96225766,66.62783328,53.34466665,40.06150001,26.77833338,34.83273126,42.88712913,50.941527,50.941527,50.941527 +40,OK,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,479.2958229,561.0042065,642.7125902,724.4209738,583.0330057,441.6450376,300.2570695,384.5332163,468.8093631,553.0855099,553.0855099,553.0855099 +40,OK,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,7.92578847,9.282779607,10.63977074,11.99676188,9.648143924,7.299525968,4.950908011,6.35434315,7.75777829,9.161213429,9.161213429,9.161213429 +40,OK,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,51.48470666,60.53008243,69.5754582,78.62083396,62.94670099,47.27256801,31.59843504,41.10261958,50.60680413,60.11098868,60.11098868,60.11098868 +40,OK,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,4.535466531,5.400574674,6.265682816,7.130790959,5.626255888,4.121720818,2.617185747,3.569252617,4.521319487,5.473386357,5.473386357,5.473386357 +40,OK,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,113.9331074,133.4399191,152.9467308,172.4535424,138.6921428,104.9307431,71.16934346,91.3437298,111.5181161,131.6925025,131.6925025,131.6925025 +40,OK,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,9.59287321,11.52884534,13.46481746,15.40078959,12.02610046,8.651411332,5.276722204,7.468994354,9.661266505,11.85353866,11.85353866,11.85353866 +41,OR,1,FUEL COMB. ELEC. UTIL.,VOC,0.03475,0.04982,0.04647,0.07897,0.12039,0.120642,0.134531,0.195509598,0.200067065,0.204624532,0.209182,0.25792948,0.30667696,0.35542444,0.311880343,0.268336245,0.224792148,0.247190572,0.269588996,0.29198742,0.280089798,0.268192177,0.256294555,0.256294555,0.256294555 +41,OR,1,FUEL COMB. ELEC. UTIL.,NH3,0.00002,0.00043,0.00062,0.00081,0.001292,0.001284,0.001351,0.1615258,0.207124929,0.252724058,0.298323188,0.282988192,0.267653196,0.2523182,0.209380533,0.166442867,0.1235052,0.110656733,0.097808267,0.0849598,0.071361087,0.057762373,0.04416366,0.04416366,0.04416366 +41,OR,1,FUEL COMB. ELEC. UTIL.,NOX,4.15921,9.67394,8.99634,13.79169,11.69409,11.018202,13.671629,10.2083516,10.611357,8.432396,3.086668658,6.458036,11.307385,10.286927,8.343438333,6.797736667,5.252035,5.004983667,4.757932333,4.510881,4.124239,3.737597,3.350955,2.448745,3.353601 +41,OR,1,FUEL COMB. ELEC. UTIL.,PM10,0.10913,0.19687,0.19911,0.32026,0.574073,0.533721,0.652285,0.798372028,0.89991607,1.001460113,1.103004155,1.133373734,1.163743312,1.194112891,1.070552987,0.946993084,0.82343318,0.835717233,0.848001287,0.86028534,0.782115227,0.703945113,0.625775,0.625775,0.625775 +41,OR,1,FUEL COMB. ELEC. UTIL.,PM25,0.03516,0.16257,0.16525,0.249,0.473066,0.440798,0.536837,0.40288201,0.475750419,0.548618828,0.621487237,0.676757943,0.73202865,0.787299356,0.67455175,0.561804144,0.449056538,0.54059816,0.632139781,0.723681403,0.664783375,0.605885348,0.54698732,0.54698732,0.54698732 +41,OR,1,FUEL COMB. ELEC. UTIL.,SO2,4.94436,8.75065,9.36707,16.04374,16.81828,14.622201,18.07762,12.3436973,13.140225,12.413407,0.452269279,8.725053,14.063228,11.4101916,12.00199961,12.58532862,13.16865763,11.29088901,9.413120388,7.53535177,6.162767847,4.790183923,3.4176,2.3607,3.980647 +41,OR,1,FUEL COMB. ELEC. UTIL.,CO,0.47161,0.65875,0.64144,0.91851,1.48255,1.492187,1.61918,1.502676922,1.757573241,2.012469561,2.26736588,2.01563792,1.76390996,1.512182,1.74200994,1.97183788,2.20166582,2.214442213,2.227218607,2.239995,2.284913667,2.329832333,2.374751,2.374751,2.374751 +41,OR,2,FUEL COMB. INDUSTRIAL,VOC,5.31112,2.29845,2.16946,2.15336,1.781826,1.802863,1.904439,1.032916529,1.237523037,1.442129545,1.646736053,1.214001628,0.781267204,0.348532779,0.450337181,0.552141583,0.653945985,0.659021376,0.664096766,0.669172156,0.640318766,0.611465375,0.582611984,0.582611984,0.582611984 +41,OR,2,FUEL COMB. INDUSTRIAL,NH3,0.10109,0.11671,0.11324,0.11179,0.164436,0.168558,0.172401,0.18560531,0.20055861,0.21551191,0.23046521,0.153643473,0.076821737,,0.049376743,0.098753487,0.14813023,0.129045199,0.109960168,0.090875136,0.088244566,0.085613995,0.082983425,0.082983425,0.082983425 +41,OR,2,FUEL COMB. INDUSTRIAL,SO2,35.07862,19.90209,19.66338,19.02359,18.491081,19.269339,21.573664,6.908687246,7.831605387,8.754523528,9.677441669,6.720313907,3.763186146,0.806058385,1.201569365,1.597080344,1.992591324,2.041379667,2.09016801,2.138956353,1.944429142,1.749901931,1.55537472,1.55537472,1.55537472 +41,OR,2,FUEL COMB. INDUSTRIAL,CO,31.13367,23.5284,21.96725,21.84714,14.703756,14.71783,15.784663,15.45531161,16.09811023,16.74090886,17.38370748,13.13803404,8.892360611,4.646687178,8.172373162,11.69805915,15.22374513,13.93120652,12.6386679,11.34612929,10.70879915,10.07146901,9.434138866,9.434138866,9.434138866 +41,OR,2,FUEL COMB. INDUSTRIAL,PM25,18.37279,4.76896,4.49353,4.44402,3.525689,3.582105,3.888107,2.084197446,2.076659371,2.069121296,2.061583221,1.72638332,1.391183418,1.055983517,2.433558082,3.811132648,5.188643098,3.795364162,2.402085226,1.008806291,0.981134923,0.953463555,0.925792187,0.925792187,0.925792187 +41,OR,2,FUEL COMB. INDUSTRIAL,PM10,19.29382,5.8213,5.47326,5.41512,3.945552,4.0026,4.34112,2.452701487,2.511985007,2.571268527,2.630552047,2.162802785,1.695053524,1.227304263,2.978112976,4.728921689,6.479679723,4.861857457,3.244035191,1.626212925,1.581804547,1.537396169,1.49298779,1.49298779,1.49298779 +41,OR,2,FUEL COMB. INDUSTRIAL,NOX,27.28926,14.28893,13.7772,13.54598,17.276336,17.592874,18.437976,12.77130482,13.85007833,14.92885184,16.00762536,11.87309543,7.738565499,3.60403557,6.337369021,9.070702473,11.80403592,10.81065979,9.81728366,8.823907528,8.530498622,8.237089715,7.943680809,7.943680809,7.943680809 +41,OR,3,FUEL COMB. OTHER,VOC,37.25168,13.98203,13.98262,13.97937,144.528261,15.262445,15.270212,122.4012665,97.904266,73.4072655,48.910265,37.72019894,26.53013288,15.34006682,15.91352388,16.48698093,17.06044939,13.90211025,10.74377111,7.585431972,8.53251713,9.479602289,10.42668745,10.42668745,10.42668745 +41,OR,3,FUEL COMB. OTHER,NH3,0.06119,0.04768,0.04687,0.04274,0.044571,0.045196,0.045883,0.023778456,0.023861089,0.023943723,0.024026356,0.399816942,0.775607528,1.151398115,1.214673447,1.277948779,1.341224415,1.152112198,0.962999982,0.773887765,0.845924931,0.917962097,0.989999263,0.989999263,0.989999263 +41,OR,3,FUEL COMB. OTHER,NOX,6.20413,3.11158,3.10701,2.9011,7.259288,4.591272,4.675999,7.910298258,7.80783422,7.705370182,7.602906145,6.554232342,5.505558539,4.456884736,5.12793676,5.798988784,6.470041119,6.031258079,5.592475038,5.153691998,5.256212588,5.358733178,5.461253768,5.461253768,5.461253768 +41,OR,3,FUEL COMB. OTHER,PM10,26.5228,5.12229,5.1222,5.09851,32.959474,5.675633,5.685347,39.04115004,39.04069597,39.0402419,39.03978783,30.39894579,21.75810375,13.11726171,13.95255975,14.78785778,15.62312557,12.70340252,9.783679458,6.8639564,7.879327079,8.894697757,9.910068436,9.910068436,9.910068436 +41,OR,3,FUEL COMB. OTHER,PM25,26.50387,5.10103,5.10028,5.07677,32.948677,5.664639,5.674106,38.93417685,38.93427819,38.93437953,38.93448087,30.32075694,21.70703301,13.09330908,13.90855931,14.72380953,15.53904715,12.61874213,9.698437121,6.778132106,7.80602398,8.833915854,9.861807727,9.861807727,9.861807727 +41,OR,3,FUEL COMB. OTHER,CO,196.51481,36.24311,36.23987,36.20513,37.181009,39.643074,39.664467,268.9019104,268.8995631,268.8972157,268.8948683,208.7484209,148.6019736,88.45552617,93.67538183,98.89523749,104.115154,84.21663701,64.31812005,44.41960309,50.67263885,56.9256746,63.17871036,63.17871036,63.17871036 +41,OR,3,FUEL COMB. OTHER,SO2,12.06028,2.4299,2.42799,1.9745,2.701245,2.362882,2.416613,3.23289819,3.232948223,3.232998257,3.23304829,2.466320337,1.699592385,0.932864433,1.012461605,1.092058777,1.171656293,0.937397555,0.703138817,0.46888008,0.423495136,0.378110193,0.33272525,0.33272525,0.33272525 +41,OR,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,2.411,3.25998,3.2607,3.26385,0.04952,0.051102,0.053854,0.832822801,0.851636134,0.870449467,0.8892628,0.6112052,0.3331476,0.05509,0.054616667,0.054143333,0.15467,0.118823333,0.082976667,0.04713,0.060348206,0.073566411,0.086784617,0.086784617,0.086784617 +41,OR,4,CHEMICAL & ALLIED PRODUCT MFG,CO,6.352,4.02475,4.02475,4.04715,0.02711,0.027677,0.029044,0.0045739,0.023317234,0.042060567,0.0608039,0.059279267,0.057754633,0.05623,0.055943333,0.055656667,0.0809928,0.072338533,0.063684267,0.05503,0.08946,0.12389,0.15832,0.15832,0.15832 +41,OR,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.007,,,,,,,,0.012926667,0.025853333,0.03878,0.03878,0.03878,0.03878,0.038566667,0.038353333,0.03814,0.03799,0.03784,0.03769,0.039833667,0.041977333,0.044121,0.044121,0.044121 +41,OR,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.0029,0.06161,0.06163,0.06186,0.088497,0.090446,0.09373,0.012713009,0.053292676,0.093872344,0.134452011,0.282126168,0.429800325,0.577474482,0.567516635,0.557558788,0.547600941,0.392006641,0.236412341,0.080818041,0.093116041,0.105414041,0.117712041,0.117712041,0.117712041 +41,OR,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.00353,0.06769,0.06771,0.06793,0.09322,0.095276,0.09875,0.036056499,0.088489832,0.140923166,0.193356499,0.376134333,0.558912166,0.74169,0.728864667,0.716039333,0.703214,0.535509333,0.367804667,0.2001,0.206365493,0.212630986,0.218896479,0.218896479,0.218896479 +41,OR,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.033,0.0343,0.0343,0.03456,0.05256,0.053716,0.055661,0.0191534,0.135500067,0.251846734,0.3681934,0.361808934,0.355424467,0.34904,0.34712,0.3452,0.38728,0.340016667,0.292753333,0.24549,0.270876667,0.296263333,0.32165,0.32165,0.32165 +41,OR,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +41,OR,5,METALS PROCESSING,NH3,0.00105,0.00105,0.00106,0.00102,,,,,0,0,,0.000673333,0.001346667,0.00202,0.00236,0.0027,0.00304,0.002966,0.002892,0.002818,0.002235477,0.001652953,0.00107043,0.00107043,0.00107043 +41,OR,5,METALS PROCESSING,NOX,2.393,1.14357,1.16808,1.13721,0.75634,0.783922,0.841011,0.483607805,0.496659637,0.509711468,0.5227633,0.5433752,0.5639871,0.584599,0.53998974,0.49538048,0.45077122,0.434268147,0.417765073,0.401262,0.376429333,0.351596667,0.326764,0.326764,0.326764 +41,OR,5,METALS PROCESSING,PM10,1.34766,1.80843,1.83214,1.76423,1.38389,1.422497,1.503918,0.531129345,0.534356597,0.537583849,0.540811101,0.699481004,0.858150907,1.01682081,0.858448887,0.700076963,0.54170504,0.48450068,0.42729632,0.37009196,0.350343957,0.330595954,0.310847951,0.310847951,0.310847951 +41,OR,5,METALS PROCESSING,VOC,0.6839,0.32546,0.33034,0.31967,0.69528,0.714748,0.758153,0.390695307,0.418487771,0.446280236,0.4740727,0.506344467,0.538616233,0.570888,0.512108,0.453328,0.394548,0.390277667,0.386007333,0.381737,0.388369067,0.395001133,0.4016332,0.4016332,0.4016332 +41,OR,5,METALS PROCESSING,CO,38.133,5.88958,5.97066,5.75423,24.93226,25.623706,27.017332,4.319834213,4.286178509,4.252522804,4.2188671,4.1221164,4.0253657,3.928615,4.088002037,4.247389073,4.40677611,4.29121238,4.17564865,4.06008492,3.091354947,2.122624973,1.153895,1.153895,1.153895 +41,OR,5,METALS PROCESSING,SO2,4.3703,0.8587,0.87208,0.84192,3.18164,3.268165,3.441384,0.0995641,0.088506833,0.077449567,0.0663923,0.067431867,0.068471433,0.069511,0.064403667,0.059296333,0.054189,0.056167667,0.058146333,0.060125,0.054710397,0.049295793,0.04388119,0.04388119,0.04388119 +41,OR,5,METALS PROCESSING,PM25,0.55734,0.9965,1.01129,0.97586,1.145556,1.177502,1.245492,0.363237058,0.377482147,0.391727236,0.405972324,0.591002143,0.776031961,0.961061779,0.789377827,0.617693874,0.446009922,0.409953712,0.373897502,0.337841292,0.325571291,0.31330129,0.301031289,0.301031289,0.301031289 +41,OR,6,PETROLEUM & RELATED INDUSTRIES,NOX,,0.02923,0.02807,0.02689,0.012,0.012,0.012,0.0011495,0.0057475,0.0103455,0.0149435,0.012779,0.0106145,0.00845,0.022720713,0.036991427,0.05128084,0.048083047,0.044885253,0.04168746,0.035750001,0.029812541,0.023875082,0.023875082,0.023875082 +41,OR,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.362,0.15686,0.15054,0.14427,0.07168,0.054371,0.054371,0.0450869,0.0461964,0.0473059,0.0484154,0.048209933,0.048004467,0.047799,0.058395301,0.068991602,0.090460755,0.079581267,0.068701778,0.05782229,0.061948982,0.066075675,0.070202367,0.070202367,0.070202367 +41,OR,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +41,OR,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.14398,0.14167,0.13577,0.12989,0.02902,0.02902,0.02902,0.0687989,0.070523166,0.072247433,0.0739717,0.05041949,0.02686728,0.00331507,0.004084838,0.004854606,0.005624374,0.005200925,0.004777475,0.004354025,0.018516615,0.032679205,0.046841795,0.046841795,0.046841795 +41,OR,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.04838,0.00263,0.00257,0.00244,0.016868,0.016868,0.016868,0.022594541,0.023839676,0.025084811,0.026329946,0.018448733,0.010567519,0.002686305,0.003665662,0.004645018,0.005624374,0.005200925,0.004777475,0.004354025,0.018515915,0.032677806,0.046839696,0.046839696,0.046839696 +41,OR,6,PETROLEUM & RELATED INDUSTRIES,SO2,,0.01887,0.01809,0.0173,0.10844,0.10844,0.10844,0.008706,0.0282475,0.047789,0.0673305,0.053264666,0.039198833,0.025133,0.030502597,0.035872194,0.042091801,0.044209452,0.046327104,0.048444755,0.049465636,0.050486517,0.051507398,0.051507398,0.051507398 +41,OR,6,PETROLEUM & RELATED INDUSTRIES,CO,0.123,0.07339,0.07041,0.06747,0.07095,0.07095,0.07095,0.010137,0.033127,0.056117,0.079107,0.066774562,0.054442125,0.042109687,0.061541151,0.080972614,0.100502923,0.097990817,0.095478712,0.092966606,0.088844027,0.084721447,0.080598868,0.080598868,0.080598868 +41,OR,7,OTHER INDUSTRIAL PROCESSES,NOX,3.966,4.94737,5.05211,5.07915,4.13963,4.376285,4.559548,4.499358493,4.963820228,5.428281963,5.892743698,5.283893125,4.675042553,4.06619198,4.090445913,4.114699847,4.13895378,4.135903222,4.132852663,4.129802105,3.964881361,3.799960616,3.635039872,3.635039872,3.635039872 +41,OR,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.002895,0.002986,0.003095,0.7326125,0.700502367,0.668392233,0.6362821,0.424188067,0.212094033,,0.196419467,0.392838933,0.5898834,0.578990613,0.568097827,0.55720504,0.563408123,0.569611207,0.57581429,0.57581429,0.57581429 +41,OR,7,OTHER INDUSTRIAL PROCESSES,PM10,10.24545,9.86393,10.86326,11.8881,14.023053,15.425713,15.67715609,14.3201768,14.85495975,15.3897427,15.92452565,14.61486415,13.30520264,11.99554114,10.4634667,8.931392254,7.440552412,7.177857236,6.91516206,6.652466884,7.105044564,7.557622243,8.010199922,8.010199922,8.010199922 +41,OR,7,OTHER INDUSTRIAL PROCESSES,PM25,4.94596,4.23312,4.46259,4.68683,6.933217,7.384595,7.755900086,5.989914226,6.696259189,7.402604153,8.108949117,7.628229109,7.147509101,6.666789093,5.641795434,4.616801776,3.601808117,3.605324698,3.60884128,3.612357862,4.086539827,4.560721793,5.034903759,5.034903759,5.034903759 +41,OR,7,OTHER INDUSTRIAL PROCESSES,SO2,1.439,0.91159,0.93408,0.93727,2.60853,2.695707,2.79486,2.266179934,2.663168606,3.060157278,3.457145949,3.41964573,3.382145511,3.344645292,2.659994207,1.975343123,1.290692038,1.157040319,1.0233886,0.889736881,0.937010014,0.984283147,1.03155628,1.03155628,1.03155628 +41,OR,7,OTHER INDUSTRIAL PROCESSES,VOC,7.79709,8.37676,8.57327,8.60696,14.552818,15.211973,14.1426473,10.34949517,10.85800805,11.36652092,11.8750338,9.947122167,8.019210535,6.091298902,6.234187446,6.37707599,6.503564534,6.770341845,7.037119157,7.303896468,7.042719548,6.781542627,6.520365706,6.520365706,6.520365706 +41,OR,7,OTHER INDUSTRIAL PROCESSES,CO,30.526,42.13473,43.22675,43.39668,13.80608,14.343115,15.43587731,15.80329595,18.33312382,20.8629517,23.39277958,21.83553131,20.27828305,18.72103478,16.47470306,14.22837134,11.98203962,11.79406797,11.60609632,11.41812467,10.52466283,9.631200988,8.737739145,8.737739145,8.737739145 +41,OR,8,SOLVENT UTILIZATION,VOC,56.8786,69.15974,70.21483,65.07322,116.061516,106.782103,111.778085,94.8734786,95.27390806,95.67433753,96.07476699,74.65853662,53.24230624,31.82607587,33.98033953,36.13460319,38.23149552,40.06979841,41.90810131,43.7464042,44.62890183,45.51139945,46.39389708,46.39389708,46.39389708 +41,OR,8,SOLVENT UTILIZATION,CO,0.75,0.00486,0.00495,0.00495,0.00112,0.001169,0.001229,0.0018572,0.003521467,0.005185733,0.00685,0.008360703,0.009871407,0.01138211,0.011327073,0.011272037,0.011217,0.012647333,0.014077667,0.015508,0.011234333,0.006960667,0.002687,0.002687,0.002687 +41,OR,8,SOLVENT UTILIZATION,SO2,,,,,0.00015,0.000156,0.000165,0.0002562,0.000314167,0.000372133,0.0004301,0.000300487,0.000170874,0.000041261,0.000697652,0.001354043,0.002010434,0.002013683,0.002016931,0.00202018,0.00210812,0.00219606,0.002284,0.002284,0.002284 +41,OR,8,SOLVENT UTILIZATION,PM25,0.01139,0.04912,0.04975,0.05075,0.0778,0.082302,0.088031,0.045913828,0.051790687,0.057667546,0.063544405,0.056372309,0.049200212,0.042028115,0.037661934,0.033295752,0.028929571,0.032314422,0.035699274,0.039084126,0.043375315,0.047666504,0.051957693,0.051957693,0.051957693 +41,OR,8,SOLVENT UTILIZATION,PM10,0.01379,0.05259,0.05328,0.05438,0.0778,0.082302,0.088031,0.054505601,0.061004438,0.067503274,0.074002111,0.063358891,0.052715671,0.042072451,0.039585797,0.037099144,0.03461249,0.037556527,0.040500563,0.0434446,0.048633937,0.053823273,0.05901261,0.05901261,0.05901261 +41,OR,8,SOLVENT UTILIZATION,NOX,,,,,0.00461,0.004812,0.005061,0.0073646,0.010896167,0.014427733,0.0179593,0.023322867,0.028686433,0.03405,0.032773,0.031496,0.030219,0.025994667,0.021770333,0.017546,0.01322,0.008894,0.004568,0.004568,0.004568 +41,OR,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +41,OR,9,STORAGE & TRANSPORT,PM10,0.23683,0.13824,0.14125,0.14247,0.17939,0.191253,0.198245,0.422312008,0.498677476,0.575042943,0.651408411,0.575257677,0.499106944,0.42295621,0.306549624,0.190143038,0.073736452,0.076932229,0.080128005,0.083323782,0.081755267,0.080186751,0.078618236,0.078618236,0.078618236 +41,OR,9,STORAGE & TRANSPORT,NOX,,,,,,,,,0,0,,0.006192,0.012384,0.018576,0.013586,0.008596,0.003606,0.003707333,0.003808667,0.00391,0.009383333,0.014856667,0.02033,0.02033,0.02033 +41,OR,9,STORAGE & TRANSPORT,NH3,0.00012,0.00012,0.00012,0.00012,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +41,OR,9,STORAGE & TRANSPORT,PM25,0.04013,0.02558,0.02629,0.02664,0.079472,0.084427,0.087469,0.151281614,0.196178766,0.241075918,0.28597307,0.275103801,0.264234531,0.253365261,0.180099034,0.106832806,0.033566579,0.035958194,0.038349809,0.040741424,0.043596429,0.046451433,0.049306438,0.049306438,0.049306438 +41,OR,9,STORAGE & TRANSPORT,SO2,,0.00004,0.00004,0.00004,0.01081,0.01081,0.01081,0.0000001,0.004056767,0.008113433,0.0121701,0.008700733,0.005231367,0.001762,0.00596,0.010158,0.014356,0.010778667,0.007201333,0.003624,0.003419333,0.003214667,0.00301,0.00301,0.00301 +41,OR,9,STORAGE & TRANSPORT,VOC,12.12075,11.92806,11.94695,11.95228,27.459287,27.348837,27.624014,16.94438417,16.98857061,17.03275705,17.07694348,15.31507866,13.55321384,11.79134902,11.11343118,10.43551334,7.130237644,6.435621934,5.741006225,5.046390515,5.50023549,5.954080465,6.40792544,6.40792544,6.40792544 +41,OR,9,STORAGE & TRANSPORT,CO,,0.00249,0.00249,0.00251,0.00928,0.00928,0.00928,0.00445,0.004664333,0.004878667,0.005093,0.008614,0.012135,0.015656,0.014199333,0.012742667,0.011286,0.010827333,0.010368667,0.00991,0.009916667,0.009923333,0.00993,0.00993,0.00993 +41,OR,10,WASTE DISPOSAL & RECYCLING,PM25,0.47387,7.22928,7.32865,7.44332,14.511924,4.87719,4.877603,5.702635157,5.712435037,5.722234918,5.732034798,4.717059869,3.702084939,2.687110009,4.164145012,5.641180015,5.226677747,4.686991029,4.147304311,3.607617593,3.541518841,3.475420088,3.409321336,3.409321336,3.409321336 +41,OR,10,WASTE DISPOSAL & RECYCLING,NOX,0.72734,1.81762,1.82749,1.8551,4.916949,1.251235,1.258758,2.087196937,2.296060875,2.504924814,2.713788753,2.193185382,1.672582012,1.151978642,1.223930166,1.295881691,1.04170558,1.260538025,1.47937047,1.698202915,1.525030196,1.351857477,1.178684759,1.178684759,1.178684759 +41,OR,10,WASTE DISPOSAL & RECYCLING,PM10,0.65383,7.46202,7.57747,7.6975,15.45259,5.139105,5.139677,6.030628698,6.040243849,6.049859,6.059474151,5.128877009,4.198279866,3.267682724,4.70495998,6.142237237,5.514040673,5.175881027,4.837721382,4.499561736,4.26342789,4.027294044,3.791160198,3.791160198,3.791160198 +41,OR,10,WASTE DISPOSAL & RECYCLING,NH3,1.01527,1.18875,1.18875,1.20596,0.131226,0.13306,0.136732,0.010721241,0.010721241,0.010721241,0.010721241,0.01191274,0.013104239,0.014295737,0.148322047,0.282348356,0.416374665,0.314838336,0.213302006,0.111765676,0.113876014,0.115986352,0.11809669,0.11809669,0.11809669 +41,OR,10,WASTE DISPOSAL & RECYCLING,VOC,2.67409,5.53182,5.63022,5.72028,5.641479,3.974742,3.978483,5.76576461,5.773428411,5.781092212,5.788756013,4.445259995,3.101763978,1.758267961,3.211463734,4.664659507,5.652893925,4.940139497,4.227385069,3.514630641,3.254276693,2.993922745,2.733568798,2.733568798,2.733568798 +41,OR,10,WASTE DISPOSAL & RECYCLING,CO,5.6106,52.33542,52.04717,52.76055,48.714154,26.543237,26.544562,36.66635135,36.72976865,36.79318594,36.85660324,31.87601902,26.8954348,21.91485058,28.17359495,34.43233932,36.06480915,35.98415026,35.90349138,35.8228325,31.71509831,27.60736411,23.49962991,23.49962991,23.49962991 +41,OR,10,WASTE DISPOSAL & RECYCLING,SO2,0.172,0.11823,0.12325,0.12557,0.62177,0.117974,0.119022,0.311609618,0.330901194,0.35019277,0.369484346,0.272972297,0.176460247,0.079948198,0.110304493,0.140660788,0.116662546,0.244579489,0.372496431,0.500413374,0.464541236,0.428669097,0.392796959,0.392796959,0.392796959 +41,OR,11,HIGHWAY VEHICLES,NH3,2.0092,2.86387,3.29326,3.24702,3.24146,3.48186,3.45117,1.823930386,1.761022309,1.698114231,1.635206154,1.65212657,1.669046986,1.548500998,1.40023064,1.399354862,1.544414079,1.487256687,1.430099294,1.372941902,1.358493617,1.306696033,1.313271895,1.196427882,1.166360485 +41,OR,11,HIGHWAY VEHICLES,CO,1406.34552,963.19124,961.37641,962.69692,1015.65719,892.44898,840.97933,664.7562229,612.1581752,559.5601274,506.9620797,554.7833235,602.6045672,523.9200489,352.7928018,471.2592347,427.9770551,414.9649514,401.9528477,388.9407441,369.5229643,296.3750156,301.2533816,260.9942305,245.1905258 +41,OR,11,HIGHWAY VEHICLES,PM25,4.62025,2.99872,2.90559,2.75703,2.6079,2.39864,2.1286,3.796092043,3.667022501,3.53795296,3.408883419,3.668568115,3.928252811,3.466577247,2.973400457,3.14515273,2.440455326,2.293775086,2.147094847,2.000414607,1.852877027,1.509361934,2.170964772,1.468024066,1.280960145 +41,OR,11,HIGHWAY VEHICLES,PM10,5.47456,3.72416,3.65835,3.50682,3.36646,3.14276,2.83584,4.60377568,4.474697961,4.345620243,4.216542525,4.564446695,4.912350866,4.397194186,3.864282209,4.049238439,4.411399991,4.156595605,3.901791219,3.646986833,3.535986333,2.990540824,4.113892974,3.180314905,2.933987939 +41,OR,11,HIGHWAY VEHICLES,NOX,130.90228,111.72034,115.36839,116.05399,137.94505,112.06517,101.81216,126.7516766,116.9970456,107.2424147,97.48778374,99.11405664,100.7403295,90.37870307,83.14925464,90.52820889,80.9812203,77.69895858,74.41669686,71.13443514,66.6613702,54.23357333,65.19571805,44.43051126,38.61545059 +41,OR,11,HIGHWAY VEHICLES,VOC,113.06654,72.15409,70.71264,70.57067,96.2061,64.65271,60.53013,46.87913877,43.7726646,40.66619044,37.55971627,43.73895682,49.91819737,42.81896265,32.99327212,42.19925803,45.20658223,43.56792298,41.92926374,40.29060449,38.92810208,32.2430588,33.8959237,27.2640998,24.97327738 +41,OR,11,HIGHWAY VEHICLES,SO2,7.0516,3.79583,4.003,4.13762,3.8925,3.75588,3.68728,3.76016193,3.10532016,2.450478391,1.795636621,1.245568367,0.695500112,0.532075143,0.407297604,0.531568804,0.333053512,0.324225689,0.315397865,0.306570042,0.261463362,0.261763472,0.265652397,0.119173952,0.098540777 +41,OR,12,OFF-HIGHWAY,SO2,5.51782,6.13096,6.27218,6.45697,5.58028,7.02547,7.06839,12.46978035,10.22860453,7.987428714,5.746252898,4.592611036,3.438969175,2.058444769,2.673897135,1.557976605,0.340412654,0.383893892,0.427375131,0.47085637,0.459213933,0.393890742,0.435929058,0.442072588,0.448216118 +41,OR,12,OFF-HIGHWAY,CO,294.38424,335.27584,325.54174,326.07358,328.6332,333.58006,340.62331,318.3750061,307.176947,295.9788879,284.7808288,276.9783046,269.1757805,244.572676,225.6801259,218.0796626,212.751734,205.0019129,197.2520917,189.5022706,192.1613472,195.5128006,197.4795004,199.8094605,202.1394207 +41,OR,12,OFF-HIGHWAY,PM10,4.78898,4.77561,4.69165,4.62495,4.31988,4.63063,4.55635,5.302197381,4.899157331,4.496117281,4.093077231,3.817042871,3.541008511,3.248741467,3.353678799,3.134175097,2.79249466,2.651915346,2.511336032,2.370756718,2.23887183,2.044276389,1.975102055,1.911299019,1.847495984 +41,OR,12,OFF-HIGHWAY,NOX,52.78312,56.76223,55.80374,54.79139,50.4455,59.49753,59.35433,79.21661834,74.6892058,70.16179326,65.63438073,55.53071758,45.42705444,43.36366409,44.77996672,43.9666335,35.77596125,33.66693925,31.55791725,29.44889525,29.04308716,27.97487092,28.23147099,27.23291423,26.23435748 +41,OR,12,OFF-HIGHWAY,NH3,0.32335,0.37398,0.37297,0.38537,0.04422,0.04422,0.04422,0.032482719,0.032925512,0.033368306,0.033811099,0.033608268,0.033405438,0.033798854,0.034363199,0.034844133,0.034104421,0.034182075,0.03425973,0.034337384,0.034787937,0.032154058,0.035689044,0.035872281,0.036055518 +41,OR,12,OFF-HIGHWAY,VOC,37.02904,41.02661,38.49979,37.54253,37.34013,37.56569,37.43543,41.66469167,40.92385016,40.18300864,39.44216713,37.87633344,36.31049975,34.45342393,33.22816946,31.74250943,30.1151624,28.33137418,26.54758595,24.76379773,22.27714371,17.89012775,17.30383566,16.98720058,16.67056551 +41,OR,12,OFF-HIGHWAY,PM25,4.38967,4.37732,4.30094,4.24186,3.9593,4.24437,4.17652,4.973784994,4.606412122,4.239039251,3.87166638,3.601478675,3.33129097,2.975598974,3.086802665,2.881866401,2.633610456,2.498582457,2.363554458,2.228526459,2.106577658,1.929940283,1.862680056,1.800452397,1.738224737 +41,OR,14,MISCELLANEOUS,CO,717.60566,2716.85845,602.76463,929.15263,269.330105,682.4892,922.20718,122.2469044,417.567622,712.8883395,1008.209057,672.8319227,337.4547884,2.077654071,4.30647756,6.535301049,8.764124538,9.716264215,10.66840389,11.62054357,9.834393151,8.048242733,6.262092316,6.262092316,6.262092316 +41,OR,14,MISCELLANEOUS,NH3,41.66664,58.2076,58.70161,60.82153,62.316316,62.39277,47.4399761,43.02563967,47.88952421,52.75340874,57.61729328,52.62468336,47.63207343,42.6394635,42.96840288,43.29734226,43.62628164,34.9228643,26.21944697,17.51602963,20.60911231,23.70219498,26.79527766,26.79527766,26.79527766 +41,OR,14,MISCELLANEOUS,NOX,28.74587,75.6495,14.86901,22.88494,10.143563,16.165632,21.897963,5.083213012,9.519235928,13.95525884,18.39128176,12.29082265,6.190363539,0.089904429,0.301616905,0.513329382,0.725041859,0.587298328,0.449554798,0.311811267,0.271937919,0.232064571,0.192191223,0.192191223,0.192191223 +41,OR,14,MISCELLANEOUS,PM10,535.96524,675.73906,412.1398,439.29877,276.039045,324.204442,385.1581917,299.6532238,330.1136657,360.5741076,391.0345495,329.0674798,267.1004101,205.1333405,198.0405005,190.9476605,183.8548205,250.020793,316.1867656,382.3527381,367.0513437,351.7499494,336.448555,336.448555,336.448555 +41,OR,14,MISCELLANEOUS,PM25,150.31284,306.78155,120.60278,147.98582,71.880407,103.231277,125.2196868,40.16200016,65.97406764,91.78613512,117.5982026,87.08146701,56.56473142,26.04799583,25.6134173,25.17883877,24.74426023,31.97302982,39.20179942,46.43056901,44.52883007,42.62709112,40.72535217,40.72535217,40.72535217 +41,OR,14,MISCELLANEOUS,SO2,0.83066,2.76293,0.47278,0.73673,1.81172,3.93387,5.4969,3.654531921,5.800254676,7.94597743,10.09170019,6.732310684,3.372921183,0.013531682,0.838272508,1.663013334,2.48775416,1.6792711,0.870788041,0.062304981,0.058963081,0.055621181,0.052279281,0.052279281,0.052279281 +41,OR,14,MISCELLANEOUS,VOC,35.37353,344.62209,49.69246,77.25472,22.767478,36.364709,48.062644,24.69709713,94.61485522,164.5326133,234.4503714,156.359061,78.26775065,0.176440266,0.358731245,0.541022225,0.723313204,0.961309191,1.199305177,1.437301164,1.537576819,1.637852474,1.738128129,1.738128129,1.738128129 +41,OR,15,WILDFIRES,SO2,,,,,,,,13.96309,13.96309,13.96309,2.195482973,2.195482973,2.195482973,2.533153235,2.533153235,2.533153235,2.907532944,2.907532944,2.907532944,7.970548035,7.970548035,7.970548035,17.53728361,17.53728361,17.53728361 +41,OR,15,WILDFIRES,CO,,,,,,,,2193.26821,2193.26821,2193.26821,304.5692068,304.5692068,304.5692068,444.9899334,444.9899334,444.9899334,457.6970316,457.6970316,457.6970316,1110.698702,1110.698702,1110.698702,2519.30707,2519.30707,2519.30707 +41,OR,15,WILDFIRES,NH3,,,,,,,,35.08819,35.08819,35.08819,4.992838376,4.992838376,4.992838376,7.251922362,7.251922362,7.251922362,7.478195471,7.478195471,7.478195471,18.20553031,18.20553031,18.20553031,41.25971497,41.25971497,41.25971497 +41,OR,15,WILDFIRES,NOX,,,,,,,,22.47361,22.47361,22.47361,3.850508969,3.850508969,3.850508969,3.419818681,3.419818681,3.419818681,4.505238419,4.505238419,4.505238419,13.92456732,13.92456732,13.92456732,29.81256366,29.81256366,29.81256366 +41,OR,15,WILDFIRES,PM25,,,,,,,,179.69189,179.69189,179.69189,26.02616496,26.02616496,26.02616496,36.35596743,36.35596743,36.35596743,38.14167998,38.14167998,38.14167998,94.82300639,94.82300639,94.82300639,213.7386073,213.7386073,213.7386073 +41,OR,15,WILDFIRES,VOC,,,,,,,,504.42708,504.42708,504.42708,71.7720516,71.7720516,71.7720516,104.2464394,104.2464394,104.2464394,107.4990952,107.4990952,107.4990952,261.7045845,261.7045845,261.7045845,593.1083673,593.1083673,593.1083673 +41,OR,15,WILDFIRES,PM10,,,,,,,,212.03747,212.03747,212.03747,30.71087465,30.71087465,30.71087465,42.9000494,42.9000494,42.9000494,45.00718971,45.00718971,45.00718971,111.8911407,111.8911407,111.8911407,252.2115602,252.2115602,252.2115602 +41,OR,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,606.7338007,738.9300508,871.126301,1003.322551,829.4247259,655.5269007,481.6290755,425.8504681,370.0718607,314.2932533,314.2932533,314.2932533 +41,OR,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,50.48781476,61.48861863,72.4894225,83.49022638,69.08068954,54.6711527,40.26161586,35.60782226,30.95402866,26.30023505,26.30023505,26.30023505 +41,OR,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,59.5756509,72.55659572,85.53754055,98.51848537,81.51522445,64.51196354,47.50870262,42.01722692,36.52575123,31.03427553,31.03427553,31.03427553 +41,OR,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,5.87492605,7.155522599,8.436119147,9.716715696,8.113395256,6.510074817,4.906754377,4.350382301,3.794010224,3.237638147,3.237638147,3.237638147 +41,OR,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,142.4762474,173.519285,204.5623226,235.6053601,194.7923395,153.9793189,113.1662984,100.0635594,86.96082047,73.85808152,73.85808152,73.85808152 +41,OR,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,3.82453287,4.657999072,5.491465274,6.324931476,5.253389953,4.18184843,3.110306907,2.753731249,2.397155591,2.040579933,2.040579933,2.040579933 +41,OR,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,9.91139599,12.0709086,14.23042121,16.38993381,13.55076834,10.71160286,7.872437383,6.960943284,6.049449184,5.137955084,5.137955084,5.137955084 +42,PA,1,FUEL COMB. ELEC. UTIL.,VOC,1.64026,1.57372,1.59916,1.70879,1.17002,1.798771,1.778242,1.251971042,1.25036386,1.248756677,1.247149495,1.080825004,0.914500513,0.748176023,0.749182332,0.75018864,0.751194949,0.829919233,0.908643516,0.9873678,0.940323533,0.893279267,0.846235,0.846235,0.846235 +42,PA,1,FUEL COMB. ELEC. UTIL.,SO2,1213.48501,1013.72012,1071.71924,1072.90615,980.79445,956.79765,967.188872,910.1934562,967.184653,997.340208,1005.318084,894.182296,951.172208,856.059464,680.2507748,504.442156,328.6335372,308.9979526,289.3623679,269.7267833,202.9138413,136.1008993,69.2879573,66.010665,49.98548 +42,PA,1,FUEL COMB. ELEC. UTIL.,PM25,7.94819,12.92069,12.59049,5.77081,57.462389,56.047074,56.94922,53.08860688,53.99972584,54.91084481,55.82196377,55.21502315,54.60808252,54.0011419,38.68008144,23.35902098,11.48596954,10.58771659,9.689463646,8.791210699,7.479526693,6.167842687,4.856158681,4.856158681,4.856158681 +42,PA,1,FUEL COMB. ELEC. UTIL.,PM10,26.72876,27.7327,27.48804,11.96828,63.379322,62.015575,62.727288,63.28768755,64.25632419,65.22496082,66.19359746,63.94310862,61.69261977,59.44213093,43.89537486,28.3486188,16.24987176,14.99508937,13.74030698,12.48552459,10.38610171,8.286678838,6.187255965,6.187255965,6.187255965 +42,PA,1,FUEL COMB. ELEC. UTIL.,NOX,425.43141,260.19491,250.93989,245.9515,206.92715,219.699429,213.521516,211.2463678,174.309666,176.983167,178.2174967,170.942706,178.313583,182.9554192,170.694098,158.4330123,146.1719266,138.4969516,130.8219767,123.1470017,94.0601116,64.9732215,35.8863314,31.929379,30.80182 +42,PA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.09748,0.07582,0.12183,0.113937,0.115946,0.117525,0.4007089,0.404676173,0.408643446,0.412610719,0.408087518,0.403564318,0.399041117,0.462774669,0.52650822,0.590241772,0.574477991,0.558714211,0.54295043,0.569596987,0.596243543,0.6228901,0.6228901,0.6228901 +42,PA,1,FUEL COMB. ELEC. UTIL.,CO,13.1466,10.82144,11.16262,11.70123,14.75319,15.152171,14.827311,17.5513322,17.72237871,17.89342523,18.06447174,18.92533697,19.7862022,20.64706743,21.09459061,21.54211378,21.98963696,21.02068401,20.05173105,19.0827781,19.17973047,19.27668283,19.3736352,19.3736352,19.3736352 +42,PA,2,FUEL COMB. INDUSTRIAL,NOX,126.72853,68.75734,69.73063,69.46582,49.16379,49.496215,50.677014,44.95784608,45.67440897,46.39097186,47.10753476,46.96716051,46.82678627,46.68641203,41.47632902,36.26624601,29.4475443,37.40791314,45.36828198,53.32865082,44.9601958,36.59174078,28.22328576,28.22328576,28.22328576 +42,PA,2,FUEL COMB. INDUSTRIAL,VOC,1.66682,5.81575,5.81328,5.79001,3.85154,3.907394,3.972963,3.845542392,3.666399126,3.487255861,3.308112596,3.6072036,3.906294604,4.205385609,3.810867709,3.41634981,2.96821141,3.450685106,3.933158802,4.415632498,3.946449924,3.477267349,3.008084775,3.008084775,3.008084775 +42,PA,2,FUEL COMB. INDUSTRIAL,SO2,86.40182,81.92867,83.20851,82.69697,77.87854,77.58765,82.038413,59.48065794,61.33020405,63.17975016,65.02929627,63.84291773,62.6565392,61.47016066,52.69983171,43.92950275,28.9552697,26.90191003,24.84855036,22.7951907,19.06852547,15.34186024,11.61519502,11.61519502,11.61519502 +42,PA,2,FUEL COMB. INDUSTRIAL,PM10,4.83941,4.69236,4.76771,4.72997,7.625065,7.724944,8.013072,11.92638262,12.31329575,12.70020888,13.087122,10.18620616,7.285290315,4.384374471,8.126124128,11.86787379,12.78767324,13.46136711,14.13506097,14.80875483,14.20579161,13.60282839,12.99986517,12.99986517,12.99986517 +42,PA,2,FUEL COMB. INDUSTRIAL,NH3,0.48361,0.69301,0.7083,0.70342,0.886043,0.909285,0.908657,0.451108119,0.481479676,0.511851233,0.542222791,0.584809301,0.627395812,0.669982322,0.602619312,0.535256302,0.462531292,0.549561529,0.636591767,0.723622004,0.721895841,0.720169678,0.718443514,0.718443514,0.718443514 +42,PA,2,FUEL COMB. INDUSTRIAL,CO,20.11964,19.07755,19.37587,19.30359,30.42932,30.614792,31.124358,34.6130214,35.27768667,35.94235194,36.60701721,39.96859918,43.33018114,46.69176311,42.44884877,38.20593444,33.8557791,35.45787142,37.05996373,38.66205605,35.14553001,31.62900397,28.11247793,28.11247793,28.11247793 +42,PA,2,FUEL COMB. INDUSTRIAL,PM25,3.38799,3.289,3.35644,3.33438,6.259545,6.3561,6.57192,4.713808246,5.440728123,6.167648,6.894567877,5.767213543,4.639859209,3.512504875,6.21290327,8.913301665,10.27438776,11.17803554,12.08168333,12.98533111,12.44504923,11.90476734,11.36448546,11.36448546,11.36448546 +42,PA,3,FUEL COMB. OTHER,NOX,139.19398,125.25782,131.82775,130.105,53.978794,54.970834,56.069105,42.08419539,42.09519515,42.10619491,42.11719467,40.05086541,37.98453614,35.91820687,34.33030518,32.74240349,31.0717939,31.48515908,31.89852427,32.31188946,29.88505179,27.45821413,25.03137646,25.03137646,25.03137646 +42,PA,3,FUEL COMB. OTHER,VOC,25.91668,39.17565,39.28246,39.13707,41.274425,44.041598,44.12236,29.81737751,26.70594126,23.59450501,20.48306875,21.24852201,22.01397526,22.77942852,26.37638528,29.97334203,33.21548414,30.49915169,27.78281924,25.06648679,21.79049509,18.5145034,15.23851171,15.23851171,15.23851171 +42,PA,3,FUEL COMB. OTHER,SO2,109.85389,104.18752,106.63117,90.31976,93.007146,94.556797,96.353566,54.69449429,54.77232928,54.85016426,54.92799924,50.96100637,46.99401349,43.02702062,35.05629471,27.0855688,19.10598099,18.56095856,18.01593612,17.47091369,12.63114432,7.791374957,2.951605589,2.951605589,2.951605589 +42,PA,3,FUEL COMB. OTHER,PM10,22.22726,20.89678,21.01566,20.77526,27.400159,28.759609,28.983734,21.15243143,21.16045829,21.16848515,21.17651201,20.45342103,19.73033005,19.00723907,21.56638197,24.12552488,26.12915525,25.29872843,24.46830161,23.63787479,20.93408242,18.23029004,15.52649767,15.52649767,15.52649767 +42,PA,3,FUEL COMB. OTHER,NH3,0.61479,0.61972,0.61067,0.53908,0.558995,0.564293,0.570107,0.200314585,0.203853993,0.2073934,0.210932807,0.576236382,0.941539957,1.306843532,2.195341961,3.083840391,3.918474622,3.928538847,3.938603072,3.948667298,3.729003454,3.509339611,3.289675767,3.289675767,3.289675767 +42,PA,3,FUEL COMB. OTHER,CO,168.79153,158.70171,161.18942,161.21082,183.782612,193.045626,193.723987,155.8235043,155.7913049,155.7591056,155.7269063,151.2155255,146.7041448,142.192764,157.4592826,172.7258011,184.3015883,176.9996966,169.6978049,162.3959132,145.7575965,129.1192799,112.4809633,112.4809633,112.4809633 +42,PA,3,FUEL COMB. OTHER,PM25,19.37856,18.58817,18.61889,18.48097,25.467757,26.793922,26.979119,15.7892001,15.84036215,15.8915242,15.94268625,16.84830979,17.75393334,18.65955688,21.20579589,23.75203491,25.74370544,24.93022534,24.11674524,23.30326514,20.62397484,17.94468455,15.26539425,15.26539425,15.26539425 +42,PA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,4.27667,4.27934,4.33267,4.43026,0.319998,0.330809,0.345093,0.336317079,0.304376286,0.272435493,0.2404947,0.223683567,0.206872433,0.1900613,0.192186667,0.194312033,0.1964374,0.220674733,0.244912067,0.2691494,0.194689167,0.120228933,0.0457687,0.0457687,0.0457687 +42,PA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.084,0.44294,0.45232,0.46773,0.46387,0.47633,0.489446,0.274757339,0.27900621,0.283255082,0.287503953,0.282398369,0.277292784,0.2721872,0.272692333,0.273197467,0.2737026,0.243067367,0.212432133,0.1817969,0.1450787,0.1083605,0.0716423,0.0716423,0.0716423 +42,PA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,1.56552,0.93325,0.99891,1.01511,0.362571,0.372592,0.384605,0.319790446,0.287543519,0.255296592,0.223049665,0.207799167,0.19254867,0.177298172,0.182866451,0.188434729,0.194003007,0.185085077,0.176167146,0.167249216,0.161074295,0.154899373,0.148724452,0.148724452,0.148724452 +42,PA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,1.41834,0.79165,0.84961,0.86397,0.306673,0.314898,0.324672,0.264379245,0.235870824,0.207362402,0.17885398,0.167033952,0.155213925,0.143393897,0.14991878,0.156443663,0.162968546,0.157924297,0.152880048,0.147835799,0.134852713,0.121869627,0.108886541,0.108886541,0.108886541 +42,PA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.7418,0.68937,0.72797,0.72695,0.46856,0.479323,0.495172,0.154519823,0.150383147,0.146246472,0.142109796,0.146461805,0.150813814,0.155165823,0.155197049,0.155228274,0.1552595,0.157266167,0.159272833,0.1612795,0.159479367,0.157679233,0.1558791,0.1558791,0.1558791 +42,PA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,11.01262,5.68004,5.79319,5.84318,3.8817,3.960601,4.10431,8.998412462,8.937223448,8.876034434,8.81484542,6.299382195,3.783918971,1.268455746,1.260001964,1.251548182,1.2430944,1.1630449,1.0829954,1.0029459,0.978566267,0.954186633,0.929807,0.929807,0.929807 +42,PA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.10809,0.06279,0.06445,0.06496,0.6235,0.641366,0.665621,0.544042422,0.599912803,0.655783183,0.711653564,0.704928476,0.698203388,0.6914783,0.720642633,0.749806967,0.7789713,0.731374033,0.683776767,0.6361795,0.537909767,0.439640033,0.3413703,0.3413703,0.3413703 +42,PA,5,METALS PROCESSING,NH3,0.2061,0.13264,0.14818,0.15201,0.259133,0.270707,0.290915,0.368119758,0.353703705,0.339287652,0.324871599,0.307685055,0.29049851,0.273311966,0.248898711,0.224485455,0.2000722,0.198597867,0.197123533,0.1956492,0.199348933,0.203048667,0.2067484,0.2067484,0.2067484 +42,PA,5,METALS PROCESSING,SO2,24.56013,10.19955,11.35707,11.61544,8.30957,8.64008,9.195745,6.753545186,6.187160511,5.620775836,5.05439116,4.583418116,4.112445071,3.641472027,3.412583985,3.183695942,2.9548079,2.626930467,2.299053033,1.9711756,1.651283733,1.331391867,1.0115,1.0115,1.0115 +42,PA,5,METALS PROCESSING,PM10,10.29817,7.54612,8.33166,8.46641,6.099377,6.329103,6.758265,3.894486758,3.976666939,4.058847121,4.141027302,4.1411099,4.141192497,4.141275094,4.483415284,4.825555474,5.167695664,4.751087853,4.334480041,3.917872229,3.720732234,3.523592238,3.326452242,3.326452242,3.326452242 +42,PA,5,METALS PROCESSING,NOX,9.58372,13.90285,15.51112,15.89739,10.77376,11.280251,12.148071,8.086868551,7.366876815,6.646885079,5.926893344,5.936817167,5.946740991,5.956664814,5.607538509,5.258412205,4.9092859,4.008847967,3.108410033,2.2079721,2.0385455,1.8691189,1.6996923,1.6996923,1.6996923 +42,PA,5,METALS PROCESSING,PM25,7.06569,5.14372,5.68558,5.78531,5.105371,5.295527,5.652398,2.309195488,2.509300963,2.709406437,2.909511912,3.067970047,3.226428182,3.384886318,3.646680679,3.90847504,4.170269401,3.79581373,3.42135806,3.046902389,2.92075447,2.794606551,2.668458631,2.668458631,2.668458631 +42,PA,5,METALS PROCESSING,VOC,27.48194,6.22394,6.87584,7.002,4.12874,4.280293,4.565389,2.814275746,2.663751849,2.513227952,2.362704055,2.291272456,2.219840858,2.148409259,2.133925039,2.11944082,2.1049566,2.035559967,1.966163333,1.8967667,1.669059633,1.441352567,1.2136455,1.2136455,1.2136455 +42,PA,5,METALS PROCESSING,CO,906.68375,212.22447,236.74371,242.48874,51.59233,53.650899,57.14959,45.91879463,43.58575477,41.2527149,38.91967504,38.54099448,38.16231392,37.78363336,36.14556374,34.50749412,32.8694245,26.11872157,19.36801863,12.6173157,10.86589767,9.114479633,7.3630616,7.3630616,7.3630616 +42,PA,6,PETROLEUM & RELATED INDUSTRIES,CO,45.78409,39.70027,41.48015,41.8763,5.00476,5.01827,5.025228,1.111341695,1.303318628,1.495295561,1.687272494,1.529743896,1.372215299,1.214686701,12.61145497,24.00822324,35.40499151,27.28693495,19.1688784,11.05082184,22.67929272,34.3077636,45.93623449,45.93623449,45.93623449 +42,PA,6,PETROLEUM & RELATED INDUSTRIES,SO2,11.2583,14.52071,15.1364,15.05623,4.19285,4.204931,4.209283,7.570384381,7.497950796,7.42551721,7.353083624,6.404291685,5.455499747,4.506707808,4.766592061,5.026476313,5.286360566,5.760514575,6.234668585,6.708822594,5.189821616,3.670820638,2.15181966,2.15181966,2.15181966 +42,PA,6,PETROLEUM & RELATED INDUSTRIES,VOC,9.12256,2.0561,2.14089,2.1324,1.40668,1.147054,1.151702,1.186302489,1.476980912,1.767659335,2.058337758,1.92069989,1.783062022,1.645424154,7.679121108,13.71281806,19.74651502,53.17608244,86.60564987,120.0352173,116.6909874,113.3467575,110.0025276,110.0025276,110.0025276 +42,PA,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.50827,1.4986,1.56092,1.54827,0.287245,0.28847,0.288998,0.45714467,0.506080432,0.555016194,0.603951956,0.652766434,0.701580911,0.750395389,1.191275017,1.632154645,1.480791978,1.490609546,1.500427113,1.510244681,1.486841053,1.463437425,1.440033796,1.440033796,1.440033796 +42,PA,6,PETROLEUM & RELATED INDUSTRIES,PM10,1.07627,1.85873,1.93554,1.91966,0.447369,0.450129,0.451468,0.640136454,0.695134992,0.75013353,0.805132067,0.829681986,0.854231905,0.878781823,1.339171082,1.799560341,1.666717305,1.648356482,1.62999566,1.611634837,1.583093997,1.554553157,1.526012317,1.526012317,1.526012317 +42,PA,6,PETROLEUM & RELATED INDUSTRIES,NH3,1.31712,0.58666,0.61177,0.60973,0.071519,0.071697,0.071754,0.009637278,0.021164393,0.032691507,0.044218622,0.044027269,0.043835917,0.043644564,0.034601843,0.025559121,0.0165164,0.016527667,0.016538933,0.0165502,0.014686896,0.012823591,0.010960287,0.010960287,0.010960287 +42,PA,6,PETROLEUM & RELATED INDUSTRIES,NOX,4.19951,3.08909,3.21962,3.20227,0.88948,0.892852,0.894829,2.184969784,2.258490916,2.332012048,2.40553318,2.242443952,2.079354723,1.916265495,15.37710736,28.83794922,42.29879108,34.95063315,27.60247522,20.25431729,27.30224762,34.35017795,41.39810828,41.39810828,41.39810828 +42,PA,7,OTHER INDUSTRIAL PROCESSES,PM25,14.57241,9.14058,9.91038,10.35159,9.958695,10.528952,13.93841943,11.37045874,11.467022,11.56358526,11.66014851,10.70682741,9.753506298,8.80018519,8.678782616,8.557380042,8.435977468,8.661626966,8.887276464,9.112925961,9.419486827,9.726047694,10.03260856,10.03260856,10.03260856 +42,PA,7,OTHER INDUSTRIAL PROCESSES,VOC,14.51833,8.09601,8.57881,8.6622,8.99884,9.361036,6.534151685,9.749816715,9.820091536,9.890366357,9.960641178,8.579083558,7.197525938,5.815968318,5.278310207,4.740652097,4.202993986,4.158357077,4.113720167,4.069083258,4.157249499,4.245415741,4.333581982,4.333581982,4.333581982 +42,PA,7,OTHER INDUSTRIAL PROCESSES,SO2,34.19834,29.04875,31.89509,33.01664,20.62928,21.814901,23.198966,24.152255,24.12560479,24.09895459,24.07230438,20.02499991,15.97769543,11.93039096,10.48692807,9.043465186,7.6000023,7.496132333,7.392262367,7.2883924,6.7951412,6.30189,5.8086388,5.8086388,5.8086388 +42,PA,7,OTHER INDUSTRIAL PROCESSES,PM10,27.96383,24.7587,26.79358,28.22752,26.227638,27.97831,31.81126205,29.35810068,29.38436098,29.41062129,29.43688159,27.73113845,26.02539531,24.31965217,21.20977342,18.09989467,14.99001593,16.82237919,18.65474245,20.48710571,20.48691836,20.48673101,20.48654365,20.48654365,20.48654365 +42,PA,7,OTHER INDUSTRIAL PROCESSES,NOX,37.17037,37.52509,41.30159,42.87754,34.74149,36.739306,38.983834,33.94708334,33.22748306,32.50788278,31.78828249,29.14905905,26.50983562,23.87061218,22.74102642,21.61144066,20.4818549,19.40986026,18.33786562,17.26587098,16.21944185,15.17301272,14.12658358,14.12658358,14.12658358 +42,PA,7,OTHER INDUSTRIAL PROCESSES,NH3,0.00241,0.00245,0.00262,0.00269,0.082584,0.0853,0.087906,1.888357999,2.015340284,2.142322569,2.269304854,1.646841836,1.024378818,0.4019158,0.369792418,0.337669037,0.305795655,0.296095274,0.286394893,0.276694513,0.254025297,0.231356081,0.208686866,0.208686866,0.208686866 +42,PA,7,OTHER INDUSTRIAL PROCESSES,CO,4.23857,3.39184,3.66042,3.80295,8.55683,8.995512,10.78850631,22.19820846,17.87570561,13.55320277,9.230699922,8.63724707,8.043794218,7.450341366,8.04313322,8.635925074,9.228716928,12.79608069,16.36344445,19.93080821,16.57570993,13.22061166,9.865513382,9.865513382,9.865513382 +42,PA,8,SOLVENT UTILIZATION,CO,0.01957,0.01082,0.01134,0.0116,0.11183,0.117145,0.123428,0.069086,0.0775424,0.0859988,0.0944552,0.0920895,0.0897238,0.0873581,0.075448767,0.063539433,0.0516301,0.175868433,0.300106767,0.4243451,0.2967164,0.1690877,0.041459,0.041459,0.041459 +42,PA,8,SOLVENT UTILIZATION,SO2,0.00051,0.0003,0.00032,0.00032,0.02551,0.026574,0.027628,0.0118619,0.010048933,0.008235967,0.006423,0.0051323,0.0038416,0.0025509,0.002020367,0.001489833,0.0009593,0.001305733,0.001652167,0.0019986,0.002255167,0.002511733,0.0027683,0.0027683,0.0027683 +42,PA,8,SOLVENT UTILIZATION,NOX,0.34287,0.12883,0.13582,0.13712,0.14557,0.152094,0.159685,0.1275371,0.136156167,0.144775233,0.1533943,0.138144467,0.122894633,0.1076448,0.092837433,0.078030067,0.0632227,0.0647053,0.0661879,0.0676705,0.064205067,0.060739633,0.0572742,0.0572742,0.0572742 +42,PA,8,SOLVENT UTILIZATION,PM25,0.19548,0.17783,0.18241,0.18839,0.24888,0.261658,0.277447,0.197641318,0.202398069,0.207154819,0.21191157,0.188947,0.16598243,0.14301786,0.138291285,0.133564709,0.128838134,0.121368209,0.113898284,0.106428359,0.19913441,0.291840461,0.384546513,0.384546513,0.384546513 +42,PA,8,SOLVENT UTILIZATION,PM10,0.19715,0.17813,0.18274,0.18871,0.24942,0.262219,0.278027,0.343731184,0.343034833,0.342338482,0.341642131,0.288158743,0.234675354,0.181191965,0.177041177,0.172890388,0.1687396,0.150357833,0.131976067,0.1135943,0.205627667,0.297661033,0.3896944,0.3896944,0.3896944 +42,PA,8,SOLVENT UTILIZATION,NH3,,,,,0.006795,0.007097,0.007422,0.0138046,0.021194973,0.028585347,0.03597572,0.036193413,0.036411107,0.0366288,0.031880933,0.027133067,0.0223852,0.021098767,0.019812333,0.0185259,0.018080467,0.017635033,0.0171896,0.0171896,0.0171896 +42,PA,8,SOLVENT UTILIZATION,VOC,275.01896,240.56508,249.44564,237.77334,216.23735,200.429468,208.374363,188.9214146,188.3192201,187.7170256,187.114831,174.2791349,161.4434388,148.6077427,134.4577988,120.307855,106.1579111,121.0692949,135.9806786,150.8920624,144.0950262,137.29799,130.5009538,130.5009538,130.5009538 +42,PA,9,STORAGE & TRANSPORT,VOC,59.57201,33.92392,35.4263,35.6637,34.59015,33.138367,33.494539,40.97820925,41.09720918,41.21620911,41.33520905,38.41260574,35.49000243,32.56739912,30.94437598,29.32135283,22.81937861,21.08126979,19.34316097,17.60505215,16.31178568,15.0185192,13.72525272,13.72525272,13.72525272 +42,PA,9,STORAGE & TRANSPORT,CO,0.00396,0.00915,0.00961,0.00985,0.44688,0.466204,0.497896,0.323023704,0.329565676,0.336107647,0.342649619,0.348652653,0.354655687,0.360658721,0.320188247,0.279717774,0.2392473,0.207702367,0.176157433,0.1446125,0.1202426,0.0958727,0.0715028,0.0715028,0.0715028 +42,PA,9,STORAGE & TRANSPORT,NOX,0.03783,0.08956,0.09855,0.10046,0.10477,0.10865,0.114824,0.094929997,0.099043069,0.103156141,0.107269213,0.103976682,0.100684151,0.09739162,0.093402613,0.089413607,0.0854246,0.0750845,0.0647444,0.0544043,0.047623067,0.040841833,0.0340606,0.0340606,0.0340606 +42,PA,9,STORAGE & TRANSPORT,PM10,4.8753,0.97373,1.09622,1.05523,3.168089,3.282593,3.421298,2.561043729,2.450793496,2.340543262,2.230293029,2.118673747,2.007054464,1.895435182,1.744075561,1.59271594,1.441356319,1.350574843,1.259793367,1.169011892,1.112169696,1.0553275,0.998485304,0.998485304,0.998485304 +42,PA,9,STORAGE & TRANSPORT,PM25,1.9902,0.42169,0.46902,0.46173,1.365155,1.416047,1.478437,1.033328796,1.02682837,1.020327944,1.013827518,0.959100839,0.904374161,0.849647482,0.783326368,0.717005254,0.65068414,0.595321961,0.539959781,0.484597602,0.461914154,0.439230706,0.416547257,0.416547257,0.416547257 +42,PA,9,STORAGE & TRANSPORT,NH3,,,,,0.003394,0.003409,0.00341,0.021045764,0.026251509,0.031457255,0.036663,0.036146333,0.035629667,0.035113,0.036463633,0.037814267,0.0391649,0.034849333,0.030533767,0.0262182,0.0311056,0.035993,0.0408804,0.0408804,0.0408804 +42,PA,9,STORAGE & TRANSPORT,SO2,0.0043,0.01019,0.0113,0.01184,0.01611,0.016513,0.016947,0.040779999,0.044591255,0.04840251,0.052213765,0.038047838,0.023881911,0.009715984,0.007906823,0.006097661,0.0042885,0.003942533,0.003596567,0.0032506,0.0025712,0.0018918,0.0012124,0.0012124,0.0012124 +42,PA,10,WASTE DISPOSAL & RECYCLING,SO2,0.87809,0.75217,0.77657,0.79372,2.07432,2.107846,2.149535,1.159622964,1.314118647,1.468614329,1.623110011,1.380603159,1.138096307,0.895589456,0.88758618,0.879582905,0.87157963,1.173596698,1.475613766,1.777630833,1.713749481,1.649868129,1.585986777,1.585986777,1.585986777 +42,PA,10,WASTE DISPOSAL & RECYCLING,NH3,4.31144,4.62057,4.6554,4.77296,4.855541,4.93133,5.041466,1.733919055,1.754677155,1.775435255,1.796193355,1.332873234,0.869553114,0.406232994,0.371796224,0.337359454,0.306935708,0.393415258,0.479894809,0.56637436,0.576275983,0.586177605,0.596079228,0.596079228,0.596079228 +42,PA,10,WASTE DISPOSAL & RECYCLING,NOX,5.81607,11.72905,12.195,12.28781,12.66974,11.340089,11.468898,9.589023957,10.71429439,11.83956483,12.96483527,10.88183586,8.798836443,6.715837031,6.638594002,6.561350972,6.484107943,6.960895775,7.437683606,7.914471438,7.471132126,7.027792814,6.584453503,6.584453503,6.584453503 +42,PA,10,WASTE DISPOSAL & RECYCLING,PM10,12.26065,22.02059,23.53822,23.44429,24.516682,19.780248,19.795351,10.53873958,10.44797046,10.35720133,10.2664322,9.60642125,8.946410297,8.286399344,8.537561707,8.788724069,9.039886432,10.43668861,11.83349078,13.23029296,13.28037968,13.3304664,13.38055313,13.38055313,13.38055313 +42,PA,10,WASTE DISPOSAL & RECYCLING,PM25,11.00788,20.97472,22.43866,22.33059,23.359181,18.604314,18.614178,10.02797845,9.954030118,9.880081787,9.806133456,9.913819904,10.02150635,10.1291928,9.282549596,8.435906392,7.589263189,8.651736959,9.714210728,10.7766845,11.21491072,11.65313694,12.09136316,12.09136316,12.09136316 +42,PA,10,WASTE DISPOSAL & RECYCLING,VOC,92.33833,31.43167,32.63447,32.94462,33.54882,30.564622,30.901842,31.99722019,31.9072158,31.81721142,31.72720703,22.97627541,14.2253438,5.474412178,5.0943671,4.714322023,4.35446078,6.000542915,7.646625051,9.292707186,8.917890698,8.543074209,8.16825772,8.16825772,8.16825772 +42,PA,10,WASTE DISPOSAL & RECYCLING,CO,65.09123,141.1969,151.81595,150.09647,159.35551,110.894019,111.055459,107.6932688,108.636563,109.5798572,110.5231514,97.58558447,84.6480175,71.71045052,64.89474695,58.07904337,51.2633398,66.52971087,81.79608195,97.06245302,91.23200552,85.40155803,79.57111053,79.57111053,79.57111053 +42,PA,11,HIGHWAY VEHICLES,VOC,369.76652,247.78688,234.30235,225.04387,211.00031,192.19307,181.63449,152.6617842,144.1312977,135.6008112,127.0703247,125.3791282,123.6879317,110.1741854,93.9311149,107.3009905,101.1063673,94.24338796,87.38040863,80.5174293,73.5686259,62.01186598,59.81508549,51.91152836,48.03733744 +42,PA,11,HIGHWAY VEHICLES,CO,4379.79066,3232.94007,3103.58264,2981.3078,2754.71896,2688.30265,2614.20044,1960.389238,1819.437497,1678.485757,1537.534017,1430.6637,1323.793384,1169.532431,1040.991722,1178.910476,938.6645654,892.1032851,845.5420049,798.9807246,740.8048957,644.2612035,622.7840687,559.0439318,527.4926681 +42,PA,11,HIGHWAY VEHICLES,SO2,20.9486,11.88596,12.17592,12.25187,12.44843,9.87716,9.946,8.620165006,7.757817558,6.895470109,6.03312266,3.583070115,1.133017571,1.081723407,1.113483149,1.116090163,0.938518525,0.972568477,1.00661843,1.040668382,1.036612437,1.033582429,0.946604373,0.453937855,0.364115664 +42,PA,11,HIGHWAY VEHICLES,PM25,13.54129,9.15022,8.65839,8.00171,7.41283,6.64265,6.11564,11.78945909,11.47849916,11.16753923,10.8565793,9.823715397,8.790851493,7.758967621,9.118038707,8.596752557,6.488197463,6.432591682,6.3769859,6.321380118,5.539772059,4.168808452,4.03177061,4.08393228,3.820416645 +42,PA,11,HIGHWAY VEHICLES,PM10,16.10599,11.42481,10.95459,10.22816,9.61353,8.78077,8.20667,14.29339842,13.98622108,13.67904375,13.37186641,11.94173835,10.51161029,9.413088878,10.96444204,10.41047473,10.88661356,11.10061219,11.31461083,11.52860946,10.73685155,8.646656543,8.450050781,9.26275375,9.031788632 +42,PA,11,HIGHWAY VEHICLES,NOX,400.87329,351.52652,352.59764,344.44353,332.14189,322.24279,302.65641,357.2550801,330.9542943,304.6535085,278.3527227,261.4784785,244.6042343,223.6705646,250.5142344,248.7076713,204.073056,194.1257264,184.1783969,174.2310673,156.2497079,122.045865,117.5126602,106.032277,96.09760731 +42,PA,11,HIGHWAY VEHICLES,NH3,6.26754,9.16363,10.23471,9.82755,10.09117,10.22133,10.36826,5.635595294,5.47538916,5.315183026,5.154976893,5.204496598,5.254016303,4.894783929,4.248112287,4.091000922,4.07670117,3.857323565,3.637945961,3.418568356,3.257648717,3.208711726,3.172315073,2.842054313,2.781970906 +42,PA,12,OFF-HIGHWAY,VOC,91.18381,98.88526,91.87746,88.89866,88.58144,88.249167,87.784907,99.22392172,97.38850283,95.55308395,93.71766506,90.79326935,87.86887365,97.13978423,79.31319773,77.38597163,73.25572264,68.52645757,63.79719251,59.06792745,51.59194053,38.52068709,36.63996671,35.79961372,34.95926074 +42,PA,12,OFF-HIGHWAY,SO2,11.38569,12.68458,13.04581,13.44485,13.48815,13.852375,13.96034,11.36616974,11.6331231,11.90007647,12.16702983,9.270523303,6.374016773,4.883450065,4.748999201,2.300629287,3.928704945,2.90160113,1.874497315,0.8473935,0.809984427,0.745388059,0.73516628,0.76200027,0.788834259 +42,PA,12,OFF-HIGHWAY,PM25,8.22503,8.6389,8.54461,8.43906,8.397006,8.343617,8.243664,8.07053337,8.002022588,7.933511805,7.865001023,7.300717911,6.736434799,6.215405873,6.228314057,5.939996656,6.011439616,5.657781769,5.304123923,4.950466076,4.599831202,4.074327705,3.898561455,3.755452406,3.612343356 +42,PA,12,OFF-HIGHWAY,PM10,8.9747,9.42274,9.31661,9.19789,9.161261,9.103832,8.994806,8.454004861,8.386051271,8.31809768,8.25014409,7.715471377,7.180798664,6.912117186,6.757911707,6.450900346,6.384583184,6.011407147,5.638231109,5.265055072,4.884813099,4.307124525,4.124329153,3.976079253,3.827829354 +42,PA,12,OFF-HIGHWAY,NOX,110.92529,122.63597,123.39183,123.12684,124.52807,126.073112,126.278972,123.0393216,122.1796985,121.3200754,120.4604523,104.2452793,88.03010626,88.10155821,85.374488,83.00679253,76.39804058,71.50733637,66.61663217,61.72592796,58.2364681,53.08306615,51.25754839,49.82218592,48.38682344 +42,PA,12,OFF-HIGHWAY,CO,830.73624,941.89143,914.30576,914.52186,924.36415,934.877004,955.143647,881.6832159,859.9780855,838.2729551,816.5678246,771.9613118,727.3547989,682.5766866,609.1068879,586.1657606,571.8294192,552.7409173,533.6524154,514.5639136,485.4067446,429.9164029,427.0924068,427.1308491,427.1692914 +42,PA,12,OFF-HIGHWAY,NH3,1.07891,1.28279,1.29736,1.3359,0.10069,0.10069,0.1011,0.069349864,0.07036762,0.071385375,0.072403131,0.075659996,0.078916862,0.082766659,0.081218298,0.082386469,0.076823049,0.077269821,0.077716593,0.078163365,0.076404796,0.069589981,0.072887658,0.073469077,0.074050495 +42,PA,14,MISCELLANEOUS,CO,20.00466,6.45695,10.78701,10.54756,5.56993,8.84301,5.36114,0.76591521,3.532887056,6.299858903,9.066830749,6.087547191,3.108263633,0.128980075,1.102947894,2.076915713,3.050883532,2.072833409,1.094783287,0.116733164,0.152198889,0.187664614,0.223130338,0.223130338,0.223130338 +42,PA,14,MISCELLANEOUS,VOC,3.61968,0.53807,0.89645,1.3,0.37658,0.529094,0.365301,0.167397291,0.829003861,1.490610431,2.152217001,1.440019254,0.727821506,0.015623758,0.079880053,0.144136349,0.208392644,0.968566499,1.728740354,2.488914209,2.994371614,3.499829019,4.005286424,4.005286424,4.005286424 +42,PA,14,MISCELLANEOUS,SO2,0.00909,0.00361,0.00695,0.00933,0.02814,0.04746,0.02694,,,,0.090514251,0.062919572,0.035324894,0.007730216,0.025646732,0.043563248,0.061479765,0.044424658,0.027369552,0.010314445,0.009859541,0.009404637,0.008949733,0.008949733,0.008949733 +42,PA,14,MISCELLANEOUS,PM25,111.28862,60.44709,67.74657,66.62581,69.91735,70.5968,53.9534972,29.25124,29.51301877,29.77479753,30.0365763,30.24707339,30.45757047,30.66806755,29.15383518,27.63960281,26.12537043,26.45945284,26.79353525,27.12761766,24.31357902,21.49954038,18.68550174,18.68550174,18.68550174 +42,PA,14,MISCELLANEOUS,PM10,588.34582,296.56922,332.50644,325.07605,343.62207,348.15842,308.6037488,332.41691,332.7258399,333.0347698,333.3436998,293.346736,253.3497722,213.3528083,198.2221881,183.0915679,167.9609477,168.7414078,169.5218678,170.3023279,149.5967129,128.891098,108.185483,108.185483,108.185483 +42,PA,14,MISCELLANEOUS,NOX,0.49784,0.13253,0.22836,0.27476,0.12098,0.19117,0.11646,0.017871355,0.08629359,0.154715825,0.223138059,0.165920059,0.108702059,0.051484059,0.090795957,0.130107855,0.169419753,0.134201221,0.098982688,0.063764156,0.048245258,0.032726361,0.017207463,0.017207463,0.017207463 +42,PA,14,MISCELLANEOUS,NH3,68.3047,73.04017,72.99499,75.41081,74.51321,74.64738,73.43801283,76.83646083,76.88246967,76.92847851,76.97448736,74.88283405,72.79118075,70.69952745,70.63664889,70.57377034,70.51089178,59.64688398,48.78287617,37.91886836,44.67269617,51.42652397,58.18035178,58.18035178,58.18035178 +42,PA,15,WILDFIRES,NH3,,,,,,,,0.000880813,0.000880813,0.000880813,0.040287414,0.040287414,0.040287414,0.038579929,0.038579929,0.038579929,0.020996935,0.020996935,0.020996935,0.283350501,0.283350501,0.283350501,0.070805875,0.070805875,0.070805875 +42,PA,15,WILDFIRES,SO2,,,,,,,,0.000318532,0.000318532,0.000318532,0.02155022,0.02155022,0.02155022,0.021465033,0.021465033,0.021465033,0.011106121,0.011106121,0.011106121,0.134589187,0.134589187,0.134589187,0.036616421,0.036616421,0.036616421 +42,PA,15,WILDFIRES,PM25,,,,,,,,0.004831887,0.004831887,0.004831887,0.218463749,0.218463749,0.218463749,0.211031093,0.211031093,0.211031093,0.113584561,0.113584561,0.113584561,1.499064958,1.499064958,1.499064958,0.381181025,0.381181025,0.381181025 +42,PA,15,WILDFIRES,NOX,,,,,,,,0.00050051,0.00050051,0.00050051,0.043777747,0.043777747,0.043777747,0.044666843,0.044666843,0.044666843,0.022401689,0.022401689,0.022401689,0.251637509,0.251637509,0.251637509,0.072771545,0.072771545,0.072771545 +42,PA,15,WILDFIRES,CO,,,,,,,,0.064966175,0.064966175,0.064966175,2.442294909,2.442294909,2.442294909,2.335483951,2.335483951,2.335483951,1.273390843,1.273390843,1.273390843,17.24493434,17.24493434,17.24493434,4.297412908,4.297412908,4.297412908 +42,PA,15,WILDFIRES,VOC,,,,,,,,0.014163929,0.014163929,0.014163929,0.579131579,0.579131579,0.579131579,0.554586273,0.554586273,0.554586273,0.301835782,0.301835782,0.301835782,4.073172503,4.073172503,4.073172503,1.017838971,1.017838971,1.017838971 +42,PA,15,WILDFIRES,PM10,,,,,,,,0.005740685,0.005740685,0.005740685,0.257787223,0.257787223,0.257787223,0.24901689,0.24901689,0.24901689,0.134029657,0.134029657,0.134029657,1.768896442,1.768896442,1.768896442,0.449792893,0.449792893,0.449792893 +42,PA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.299856239,0.31138406,0.32291188,0.334439701,0.339853713,0.345267725,0.350681737,0.416092873,0.48150401,0.546915146,0.546915146,0.546915146 +42,PA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,18.1703768,18.90812943,19.64588207,20.3836347,20.71338505,21.04313539,21.37288574,25.335273,29.29766027,33.26004754,33.26004754,33.26004754 +42,PA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.332008489,0.312186051,0.292363613,0.272541175,0.27714176,0.281742344,0.286342929,0.359873841,0.433404754,0.506935666,0.506935666,0.506935666 +42,PA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,4.31043115,4.476144856,4.641858561,4.807572267,4.885398262,4.963224258,5.041050253,5.981334165,6.921618078,7.86190199,7.86190199,7.86190199 +42,PA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,1.92353904,1.9718976,2.020256159,2.068614719,2.102249919,2.135885119,2.169520319,2.589993107,3.010465895,3.430938683,3.430938683,3.430938683 +42,PA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,1.63011673,1.671099193,1.712081656,1.753064119,1.781568322,1.810072526,1.838576729,2.194909457,2.551242185,2.907574913,2.907574913,2.907574913 +42,PA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.162259816,0.158664409,0.155069001,0.151473594,0.153982587,0.156491579,0.159000572,0.194729892,0.230459212,0.266188532,0.266188532,0.266188532 +44,RI,1,FUEL COMB. ELEC. UTIL.,CO,0.17656,0.03723,0.03915,0.03998,1.353982,1.387353,1.432353,0.7355495,0.731308182,0.727066863,0.722825545,0.787121863,0.851418182,0.9157145,0.997154,1.0785935,1.160033,1.0967955,1.033558,0.9703205,0.968510788,0.966701077,0.964891365,0.964891365,0.964891365 +44,RI,1,FUEL COMB. ELEC. UTIL.,SO2,1.09156,,,,0.021764,0.019911,0.020488,0.014697,0.010095,0.00863,0.1764385,0.011304,0.013443,0.115157,0.150039833,0.184922667,0.2198055,0.157571547,0.095337593,0.03310364,0.03609898,0.03909432,0.04208966,0.021749,0.016111 +44,RI,1,FUEL COMB. ELEC. UTIL.,PM25,0.00622,,,,0.074447,0.057291,0.058966,0.008435913,0.020165695,0.031895478,0.04362526,0.038482673,0.033340087,0.0281975,0.046246833,0.064296167,0.0823455,0.071156437,0.059967373,0.04877831,0.062225832,0.075673355,0.089120877,0.089120877,0.089120877 +44,RI,1,FUEL COMB. ELEC. UTIL.,VOC,0.02483,0.01173,0.01234,0.0126,0.064736,0.066621,0.068878,0.04765115,0.048745124,0.049839098,0.050933073,0.050715687,0.050498301,0.050280915,0.058713363,0.067145812,0.07557826,0.074461173,0.073344087,0.072227,0.074178542,0.076130083,0.078081625,0.078081625,0.078081625 +44,RI,1,FUEL COMB. ELEC. UTIL.,PM10,0.01357,,,,0.076448,0.05934,0.06108,0.008677098,0.020326485,0.031975873,0.04362526,0.038482673,0.033340087,0.0281975,0.046246833,0.064296167,0.0823455,0.0711805,0.0600155,0.0488505,0.062297683,0.075744867,0.08919205,0.08919205,0.08919205 +44,RI,1,FUEL COMB. ELEC. UTIL.,NOX,2.11616,0.15007,0.15782,0.16115,1.250569,1.219708,1.210338,0.725643,0.27153,0.233754,0.617656,0.270461,0.295664,0.5155445,0.5780855,0.6406265,0.7031675,0.674399,0.6456305,0.616862,0.64743409,0.67800618,0.70857827,0.51281,0.452937 +44,RI,1,FUEL COMB. ELEC. UTIL.,NH3,,,,,,,,0.0579468,0.048407384,0.038867968,0.029328553,0.041600202,0.053871851,0.0661435,0.0715765,0.0770095,0.0824425,0.077352167,0.072261833,0.0671715,0.063609648,0.060047797,0.056485945,0.056485945,0.056485945 +44,RI,2,FUEL COMB. INDUSTRIAL,CO,0.14483,0.14485,0.14124,0.13635,0.118224,0.1227,0.128258,0.284886079,0.255074213,0.225262346,0.195450479,0.593543588,0.991636696,1.389729805,1.222587065,1.055444325,0.898770085,0.755764291,0.612758496,0.469752702,0.442564445,0.415376188,0.388187931,0.388187931,0.388187931 +44,RI,2,FUEL COMB. INDUSTRIAL,NH3,0.0179,0.02795,0.02717,0.02649,0.001426,0.001565,0.001626,3.76E-06,3.76E-06,3.76E-06,3.76E-06,0.001612408,0.003221052,0.004829695,0.006902484,0.008975273,0.011437562,0.014242195,0.017046829,0.019851462,0.017304986,0.014758509,0.012212032,0.012212032,0.012212032 +44,RI,2,FUEL COMB. INDUSTRIAL,VOC,0.05517,0.04492,0.04445,0.04482,0.070235,0.07165,0.072942,0.034687881,0.029378233,0.024068585,0.018758936,0.026919309,0.035079682,0.043240055,0.038212052,0.033184049,0.028927046,0.038502501,0.048077956,0.057653411,0.057450398,0.057247385,0.057044372,0.057044372,0.057044372 +44,RI,2,FUEL COMB. INDUSTRIAL,SO2,2.25114,2.38244,2.23438,2.15578,0.993774,1.085037,1.136544,1.089629921,1.123912818,1.158195715,1.192478611,0.912597002,0.632715394,0.352833785,0.30311824,0.253402694,0.204725759,0.251053583,0.297381407,0.343709231,0.257989766,0.172270301,0.086550836,0.086550836,0.086550836 +44,RI,2,FUEL COMB. INDUSTRIAL,PM10,0.33937,0.36106,0.34628,0.3354,0.076625,0.082653,0.086141,0.128201947,0.133951977,0.139702008,0.145452038,0.130743014,0.116033989,0.101324965,0.158271771,0.215218577,0.273193884,0.202512068,0.131830252,0.061148436,0.059336893,0.05752535,0.055713807,0.055713807,0.055713807 +44,RI,2,FUEL COMB. INDUSTRIAL,NOX,0.91068,0.74249,0.71298,0.68968,0.640599,0.68449,0.719537,0.849728868,0.834850835,0.819972801,0.805094768,0.676916485,0.548738203,0.42055992,1.539460268,2.658360617,3.791645465,2.832403803,1.873162141,0.913920478,0.854253652,0.794586826,0.734919999,0.734919999,0.734919999 +44,RI,2,FUEL COMB. INDUSTRIAL,PM25,0.16878,0.17893,0.17102,0.16578,0.057562,0.06179,0.06433,0.090517195,0.097089224,0.103661253,0.110233282,0.100985758,0.091738234,0.08249071,0.139128849,0.195766988,0.253420627,0.187932709,0.122444791,0.056956874,0.05496869,0.052980507,0.050992323,0.050992323,0.050992323 +44,RI,3,FUEL COMB. OTHER,NOX,3.33012,3.31823,3.20433,2.85691,5.278428,5.36697,5.469937,3.608955998,3.595580748,3.582205498,3.568830248,3.19199637,2.815162493,2.438328615,2.493105148,2.547881681,2.596786255,2.741881649,2.886977042,3.032072436,2.817335051,2.602597666,2.387860281,2.387860281,2.387860281 +44,RI,3,FUEL COMB. OTHER,VOC,1.20053,1.98269,1.97685,1.96457,2.225043,2.368183,2.377276,1.257729892,1.08038719,0.903044488,0.725701786,1.255443511,1.785185236,2.31492696,2.253496018,2.192065076,2.059379224,1.891719742,1.72406026,1.556400778,1.374035298,1.191669817,1.009304337,1.009304337,1.009304337 +44,RI,3,FUEL COMB. OTHER,PM10,0.98663,0.8827,0.87685,0.84744,1.232214,1.288338,1.300795,0.677722802,0.700381336,0.723039871,0.745698405,1.10452852,1.463358635,1.82218875,1.808583193,1.794977636,1.676699818,1.610591342,1.544482866,1.47837439,1.327443279,1.176512168,1.025581056,1.025581056,1.025581056 +44,RI,3,FUEL COMB. OTHER,CO,6.44128,5.32661,5.30074,5.21707,8.712293,9.144467,9.267388,4.107118484,4.070341467,4.03356445,3.996787434,6.841787861,9.686788288,12.53178871,12.29047572,12.04916272,11.14955223,10.73755962,10.325567,9.913574393,9.040974166,8.16837394,7.295773714,7.295773714,7.295773714 +44,RI,3,FUEL COMB. OTHER,PM25,0.91386,0.8089,0.80365,0.78452,1.130309,1.184281,1.194377,0.596003237,0.611274717,0.626546198,0.641817678,1.027244465,1.412671252,1.79809804,1.781644119,1.765190198,1.644347117,1.579326248,1.514305379,1.44928451,1.300040149,1.150795789,1.001551429,1.001551429,1.001551429 +44,RI,3,FUEL COMB. OTHER,SO2,5.0956,5.23925,5.20055,4.39333,6.177472,6.26175,6.354431,4.766419246,4.76664688,4.766874513,4.767102146,4.138925982,3.510749818,2.882573653,3.008961287,3.135348921,3.261246334,3.058189919,2.855133505,2.65207709,1.903532124,1.154987158,0.406442192,0.406442192,0.406442192 +44,RI,3,FUEL COMB. OTHER,NH3,0.08712,0.08474,0.0831,0.0731,0.095803,0.096905,0.09831,0.011259055,0.011259055,0.011259055,0.011259055,0.122006431,0.232753807,0.343501183,0.340377301,0.337253419,0.3270957,0.324903364,0.322711027,0.32051869,0.306007343,0.291495997,0.27698465,0.27698465,0.27698465 +44,RI,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,,,,0.000001,0.000001,0.000001,0.006613028,0.004536797,0.002460567,0.000384336,0.000256224,0.000128112,,0,0,0,0,0,,0,0,0,0,0 +44,RI,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.09026,0.01735,0.01735,0.0175,0.218213,0.204058,0.206073,0.223180835,0.230033213,0.236885592,0.24373797,0.213830305,0.18392264,0.154014975,0.12517935,0.096343725,0.07373725,0.07696942,0.08020159,0.08343376,0.077490217,0.071546673,0.06560313,0.06560313,0.06560313 +44,RI,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,,,,0.000001,0.000001,0.000001,0.002533964,0.001748777,0.00096359,0.000178403,0.000118935,5.95E-05,,0,0,0,0,0,,0,0,0,0,0 +44,RI,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,,,,0.00002,0.00002,0.00002,0.007636,0.005090667,0.002545333,,0,0,,0,0,0,0,0,,0,0,0,0,0 +44,RI,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0,0,,0.000292767,0.000585533,0.0008783,0.001210533,0.001542767,0.0018835,0.001524667,0.001165833,0.000807,0.00063519,0.00046338,0.00029157,0.00029157,0.00029157 +44,RI,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,,,,0.000005,0.000005,0.000005,0.008654,0.008567667,0.008481333,0.008395,0.005596667,0.002798333,,0,0,0,0,0,,0,0,0,0,0 +44,RI,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,0.000071,0.000072,0.000072,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +44,RI,5,METALS PROCESSING,PM10,0.68844,0.68844,0.72816,0.72816,,,,0.002301615,0.002301615,0.002301615,0.002301615,0.00153441,0.000767205,,0,0,0.00005,0.002013,0.003976,0.005939,0.007744837,0.009550673,0.01135651,0.01135651,0.01135651 +44,RI,5,METALS PROCESSING,VOC,0.02572,0.02572,0.02724,0.02719,,,,0.0002051,0.000160767,0.000116433,0.0000721,0.0001849,0.0002977,0.0004105,0.000273667,0.000136833,0.0021835,0.0019915,0.0017995,0.0016075,0.001638523,0.001669547,0.00170057,0.00170057,0.00170057 +44,RI,5,METALS PROCESSING,PM25,0.4354,0.4354,0.46052,0.46052,,,,0.000925726,0.000925726,0.000925726,0.000925726,0.000617151,0.000308575,,0,0,0,0.001182973,0.002365947,0.00354892,0.004270988,0.004993056,0.005715123,0.005715123,0.005715123 +44,RI,5,METALS PROCESSING,NOX,0.01089,0.01089,0.01154,0.01151,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +44,RI,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +44,RI,5,METALS PROCESSING,CO,1.51495,1.51495,1.627,1.5893,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +44,RI,5,METALS PROCESSING,SO2,0.04819,0.04819,0.05097,0.05097,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +44,RI,6,PETROLEUM & RELATED INDUSTRIES,VOC,,,,,0.011581,0.011581,0.011581,0.0136701,0.0157016,0.0177331,0.0197646,0.01657893,0.01339326,0.01020759,0.021214393,0.032221197,0.043228,0.035059,0.02689,0.018721,0.02126994,0.02381888,0.02636782,0.02636782,0.02636782 +44,RI,6,PETROLEUM & RELATED INDUSTRIES,SO2,,,,,0.001802,0.001802,0.001802,0.0204555,0.024523333,0.028591167,0.032659,0.023600883,0.014542767,0.00548465,0.007419267,0.009353883,0.0112885,0.0096732,0.0080579,0.0064426,0.010150592,0.013858583,0.017566575,0.017566575,0.017566575 +44,RI,6,PETROLEUM & RELATED INDUSTRIES,PM25,,,,,0.00007,0.00007,0.00007,0.00489645,0.005581025,0.0062656,0.006950175,0.00602515,0.005100125,0.0041751,0.004742567,0.005310033,0.0058775,0.004774,0.0036705,0.002567,0.002879435,0.00319187,0.003504305,0.003504305,0.003504305 +44,RI,6,PETROLEUM & RELATED INDUSTRIES,PM10,,,,,0.000283,0.000283,0.000283,0.01664793,0.018975485,0.02130304,0.023630595,0.017208263,0.010785932,0.0043636,0.0060139,0.0076642,0.0093145,0.009344805,0.009375111,0.009405416,0.011460152,0.013514887,0.015569623,0.015569623,0.015569623 +44,RI,6,PETROLEUM & RELATED INDUSTRIES,NOX,,,,,0.001378,0.001378,0.001378,0.0236275,0.028334667,0.033041833,0.037749,0.02855905,0.0193691,0.01017915,0.0146516,0.01912405,0.0235965,0.020574833,0.017553167,0.0145315,0.020353847,0.026176193,0.03199854,0.03199854,0.03199854 +44,RI,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,,,,,,,,,,,,,1.48E-05,2.96E-05,0.00004444,0.00004444,0.00004444 +44,RI,6,PETROLEUM & RELATED INDUSTRIES,CO,,,,,0.00689,0.00689,0.00689,0.07818,0.092011667,0.105843333,0.119675,0.0956426,0.0716102,0.0475778,0.073659867,0.099741933,0.125824,0.1167325,0.107641,0.0985495,0.112928028,0.127306557,0.141685085,0.141685085,0.141685085 +44,RI,7,OTHER INDUSTRIAL PROCESSES,CO,0.00751,0.00618,0.00651,0.00656,0.020243,0.021202,0.150637049,0.141829,0.139744333,0.137659667,0.135575,0.123709636,0.111844272,0.099978908,0.116288629,0.132598349,0.14891257,0.45380923,0.758705889,1.063602549,0.880551722,0.697500895,0.514450069,0.514450069,0.514450069 +44,RI,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,,,,0.0465454,0.036199433,0.025853467,0.0155075,0.012511083,0.009514667,0.00651825,0.005488167,0.004458083,0.003442,0.003741503,0.004041007,0.00434051,0.00398241,0.00362431,0.00326621,0.00326621,0.00326621 +44,RI,7,OTHER INDUSTRIAL PROCESSES,PM10,0.81405,1.21088,1.26982,1.48607,0.942844,1.019838,1.35751371,0.359387166,0.354962594,0.350538022,0.34611345,0.455433099,0.564752749,0.674072399,0.697530505,0.720988612,0.754962718,0.76668621,0.778409703,0.790133195,0.825037776,0.859942357,0.894846938,0.894846938,0.894846938 +44,RI,7,OTHER INDUSTRIAL PROCESSES,PM25,0.52819,0.54324,0.57123,0.6168,0.20444,0.220598,0.532738506,0.331517484,0.327925737,0.324333989,0.320742242,0.320476046,0.320209849,0.319943652,0.344028202,0.368112751,0.3930673,0.412542682,0.432018064,0.451493446,0.487278387,0.523063329,0.55884827,0.55884827,0.55884827 +44,RI,7,OTHER INDUSTRIAL PROCESSES,SO2,0.18387,0.1515,0.15966,0.16083,0.233353,0.245014,0.258305,0.107032,0.0863115,0.065591,0.0448705,0.030004333,0.015138167,0.000272,0.000366,0.00046,0.000554,0.000376,0.000198,0.00002,0.000749615,0.00147923,0.002208845,0.002208845,0.002208845 +44,RI,7,OTHER INDUSTRIAL PROCESSES,VOC,0.38466,0.37885,0.38724,0.38887,0.475752,0.486698,0.546542987,0.247614859,0.261709346,0.275803832,0.289898319,0.272082958,0.254267597,0.236452235,0.236013117,0.235573999,0.242128516,0.253554994,0.264981472,0.27640795,0.279070473,0.281732997,0.28439552,0.28439552,0.28439552 +44,RI,7,OTHER INDUSTRIAL PROCESSES,NOX,0.27905,0.13795,0.14538,0.14644,0.284512,0.298576,0.314534,0.231378,0.186795167,0.142212333,0.0976295,0.078116333,0.058603167,0.03909,0.051401333,0.063712667,0.0760465,0.065230318,0.054414135,0.043597953,0.041362219,0.039126485,0.036890751,0.036890751,0.036890751 +44,RI,8,SOLVENT UTILIZATION,PM25,,,,,0.003404,0.003475,0.003599,0.001970352,0.002185091,0.00239983,0.002614568,0.001743046,0.000871523,,0,0,0,0,0,,0.000000865,0.00000173,0.000002595,0.000002595,0.000002595 +44,RI,8,SOLVENT UTILIZATION,CO,,,,,0.000027,0.000027,0.000027,0.0008065,0.000734,0.0006615,0.000589,0.000392667,0.000196333,,0,0,0,0,0,,0,0,0,0,0 +44,RI,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0.006070167,0.012140333,0.0182105,0.012778333,0.007346167,0.0030285,0.002699833,0.002371167,0.0020425,0.001509838,0.000977177,0.000444515,0.000444515,0.000444515 +44,RI,8,SOLVENT UTILIZATION,PM10,,,,,0.003404,0.003475,0.003599,0.002668671,0.002827229,0.002985786,0.003144344,0.002096229,0.001048115,,0,0,0,0,0,,0.000000865,0.00000173,0.000002595,0.000002595,0.000002595 +44,RI,8,SOLVENT UTILIZATION,SO2,0.00006,0.00005,0.00005,0.00005,0.000382,0.000386,0.000394,,0.00074,0.00148,0.00222,0.00148,0.00074,,0,0,0,0,0,,0,0,0,0,0 +44,RI,8,SOLVENT UTILIZATION,VOC,25.09089,21.14189,21.51274,20.47594,29.327814,27.115868,27.564946,13.08919369,12.98408371,12.87897372,12.77386374,10.57302457,8.372185401,6.171346232,6.310822122,6.450298012,6.638070312,7.67770701,8.717343708,9.756980405,9.45081216,9.144643914,8.838475669,8.838475669,8.838475669 +44,RI,8,SOLVENT UTILIZATION,NOX,,,,,0.000106,0.000107,0.00011,0.00096,0.0011625,0.001365,0.0015675,0.001045,0.0005225,,0,0,0,0,0,,0,0,0,0,0 +44,RI,9,STORAGE & TRANSPORT,VOC,5.26628,3.94605,4.07693,4.12503,4.147116,4.105313,4.146854,3.321502315,3.329071149,3.336639982,3.344208815,2.825205058,2.306201301,1.787197544,1.78474043,1.782283316,1.679246453,1.347162362,1.015078271,0.68299418,0.610223454,0.537452727,0.464682001,0.464682001,0.464682001 +44,RI,9,STORAGE & TRANSPORT,CO,,,,,,,,0.030779,0.020519333,0.010259667,,0,0,,0.003556667,0.007113333,0.0328095,0.033524167,0.034238833,0.0349535,0.036821212,0.038688923,0.040556635,0.040556635,0.040556635 +44,RI,9,STORAGE & TRANSPORT,NH3,,,,,0.000256,0.000263,0.000275,,0,0,,0,0,,0,0,0,6.53E-05,0.000130667,0.000196,0.000130667,6.53E-05,0,0,0 +44,RI,9,STORAGE & TRANSPORT,NOX,,,,,,,,0.0123115,0.008207667,0.004103833,,0,0,,0.001423333,0.002846667,0.0132725,0.013531667,0.013790833,0.01405,0.014817988,0.015585977,0.016353965,0.016353965,0.016353965 +44,RI,9,STORAGE & TRANSPORT,PM10,,,,,,,,0.004140472,0.002760315,0.001380157,,0,0,,0.001849333,0.003698667,0.002147,0.003660167,0.005173333,0.0066865,0.006662787,0.006639073,0.00661536,0.00661536,0.00661536 +44,RI,9,STORAGE & TRANSPORT,PM25,,,,,,,,0.001586536,0.001057691,0.000528845,,0,0,,0.000303354,0.000606707,0.000908061,0.00137004,0.001832018,0.002293997,0.002339782,0.002385566,0.002431351,0.002431351,0.002431351 +44,RI,9,STORAGE & TRANSPORT,SO2,,,,,,,,,0,0,,0,0,,3.33E-06,6.67E-06,0.000081,0.000077,0.000073,0.000069,7.30E-05,7.70E-05,0.000081065,0.000081065,0.000081065 +44,RI,10,WASTE DISPOSAL & RECYCLING,CO,0.03826,8.10012,8.11696,8.76098,0.592701,2.411912,2.424368,2.265356536,2.276737903,2.28811927,2.299500636,2.369426754,2.439352872,2.50927899,2.29458859,2.07989819,1.86520929,4.584534662,7.303860034,10.02318541,8.40886606,6.794546714,5.180227368,5.180227368,5.180227368 +44,RI,10,WASTE DISPOSAL & RECYCLING,NH3,0.40434,0.59644,0.59644,0.60999,0.000007,0.000007,0.000007,0.00406,0.00406,0.00406,0.00406,0.004027824,0.003995648,0.003963472,0.003176212,0.002388952,0.001601692,0.009668191,0.017734691,0.02580119,0.026131187,0.026461184,0.026791181,0.026791181,0.026791181 +44,RI,10,WASTE DISPOSAL & RECYCLING,PM10,0.65199,0.97562,0.98773,1.05638,0.011986,0.363238,0.363501,0.252525448,0.264776899,0.27702835,0.289279801,0.294464482,0.299649162,0.304833843,0.284826265,0.264818688,0.31028111,0.606001336,0.901721562,1.197441787,1.061034437,0.924627087,0.788219737,0.788219737,0.788219737 +44,RI,10,WASTE DISPOSAL & RECYCLING,PM25,0.54827,0.95535,0.96621,1.03435,0.008419,0.341574,0.341755,0.241140761,0.244800036,0.248459312,0.252118588,0.24903165,0.245944711,0.242857773,0.2277734,0.212689028,0.197604655,0.433602485,0.669600315,0.905598145,0.835199783,0.764801421,0.694403059,0.694403059,0.694403059 +44,RI,10,WASTE DISPOSAL & RECYCLING,SO2,0.0319,0.01554,0.01632,0.01673,0.02119,0.027293,0.027711,0.0327215,0.035657967,0.038594433,0.0415309,0.120978889,0.200426878,0.279874868,0.307802761,0.335730654,0.363658547,0.288373201,0.213087855,0.137802509,0.129375405,0.120948302,0.112521198,0.112521198,0.112521198 +44,RI,10,WASTE DISPOSAL & RECYCLING,VOC,1.25697,1.21198,1.22137,1.28067,0.168789,0.436153,0.440018,0.541897781,0.493822695,0.445747608,0.397672521,0.375309932,0.352947343,0.330584754,0.297046097,0.263507441,0.229968784,0.469220396,0.708472008,0.94772362,0.838269587,0.728815554,0.619361521,0.619361521,0.619361521 +44,RI,10,WASTE DISPOSAL & RECYCLING,NOX,0.05372,0.31423,0.31617,0.33709,0.112367,0.187018,0.189368,0.206669936,0.210138103,0.213606269,0.217074436,0.192453809,0.167833182,0.143212555,0.134324711,0.125436867,0.116557523,0.200833376,0.285109229,0.369385081,0.305918681,0.242452281,0.178985881,0.178985881,0.178985881 +44,RI,11,HIGHWAY VEHICLES,VOC,31.89954,16.66016,16.39198,16.42105,16.1106,14.6633,12.88018,8.38590492,7.995092617,7.604280314,7.213468011,7.312032511,7.410597012,6.230554778,4.861688821,5.692835221,6.821761607,6.561992506,6.302223405,6.042454304,5.604272836,4.300714533,3.967658538,3.967906037,3.738750301 +44,RI,11,HIGHWAY VEHICLES,NH3,0.55753,0.68544,0.79314,0.78652,0.83156,0.84764,0.81664,0.443672392,0.431154294,0.418636197,0.406118099,0.418773388,0.431428677,0.379360823,0.342075727,0.339392195,0.340813757,0.315912328,0.291010898,0.266109469,0.252861777,0.237117705,0.226663771,0.217682386,0.214529982 +44,RI,11,HIGHWAY VEHICLES,NOX,32.36874,23.02178,24.02082,24.40362,24.50167,23.41463,20.39555,15.43900457,14.30566067,13.17231677,12.03897287,11.85102161,11.66307036,9.838815182,9.284413962,10.04090076,10.20214569,10.99497282,11.78779994,12.58062707,11.39190363,8.404028543,6.32786168,7.785899199,7.361731691 +44,RI,11,HIGHWAY VEHICLES,PM10,1.14575,0.69854,0.69506,0.67763,0.66739,0.5982,0.53511,0.818592738,0.805701319,0.792809901,0.779918482,0.775745793,0.771573103,0.656315834,0.655807529,0.56605051,0.788951609,0.849238382,0.909525154,0.969811927,0.917331104,0.702433644,0.572951687,0.799906695,0.800371407 +44,RI,11,HIGHWAY VEHICLES,PM25,0.93964,0.54352,0.53368,0.51533,0.50018,0.43467,0.38228,0.619063172,0.604539841,0.59001651,0.575493179,0.566894584,0.558295989,0.462470392,0.456801892,0.36940418,0.369593522,0.418647592,0.467701661,0.516755731,0.461552042,0.324686257,0.240728268,0.340573554,0.331324573 +44,RI,11,HIGHWAY VEHICLES,SO2,1.53712,0.80796,0.85781,0.89414,0.9378,0.53327,0.50858,0.506557723,0.424108015,0.341658307,0.259208599,0.175146645,0.09108469,0.083537644,0.085808212,0.085802978,0.077414995,0.07847965,0.079544305,0.08060896,0.085665197,0.084453801,0.07469085,0.037222035,0.029958723 +44,RI,11,HIGHWAY VEHICLES,CO,353.40443,203.98344,204.77044,206.26036,200.44814,199.7893,174.54553,97.7632588,93.38900231,89.01474582,84.64048933,76.98157805,69.32266678,60.13368718,52.09856008,61.42298811,65.29485857,63.65887245,62.02288632,60.38690019,57.09135327,45.23211407,42.91207559,43.1907374,41.15912782 +44,RI,12,OFF-HIGHWAY,PM10,0.55964,0.60765,0.60705,0.6056,0.59404,0.597,0.59012,0.648527022,0.584966679,0.521406335,0.457845992,0.48619156,0.514537128,0.414546461,0.472504036,0.450492312,0.387494045,0.388717165,0.389940285,0.391163405,0.353983613,0.289754135,0.279624029,0.267548675,0.255473322 +44,RI,12,OFF-HIGHWAY,VOC,7.04064,7.86343,7.26691,6.99895,6.97231,6.86748,6.77991,8.652850131,8.316006995,7.97916386,7.642320725,7.238119369,6.833918012,6.425658405,6.018483064,5.721074883,5.272917313,4.846426359,4.419935406,3.993444452,3.507660406,2.670638333,2.536092313,2.455565499,2.375038684 +44,RI,12,OFF-HIGHWAY,NOX,6.02957,6.7116,6.70305,6.60165,6.03155,7.13082,7.21368,8.218161883,7.232906119,6.247650354,5.262394589,6.396572725,7.53075086,5.553512533,7.199254219,7.003248157,4.961580162,5.684346826,6.407113491,7.129880155,6.233447062,4.388179253,4.440580875,4.253838937,4.067096999 +44,RI,12,OFF-HIGHWAY,NH3,0.07803,0.09485,0.09694,0.09944,0.00726,0.00726,0.00726,0.004443618,0.004493202,0.004542786,0.00459237,0.005137378,0.005682386,0.005208183,0.005813308,0.005881924,0.005404004,0.005864913,0.006325822,0.006786731,0.006246843,0.004170356,0.005167067,0.005095429,0.005023791 +44,RI,12,OFF-HIGHWAY,PM25,0.51162,0.55665,0.55645,0.55535,0.55498,0.54638,0.5404,0.602232704,0.542512666,0.482792628,0.423072589,0.454636856,0.486201122,0.386484342,0.442759212,0.422187818,0.366634872,0.368282455,0.369930038,0.371577622,0.336184323,0.275017161,0.265397726,0.253736688,0.24207565 +44,RI,12,OFF-HIGHWAY,CO,66.93156,76.25193,74.06278,74.11341,75.70307,75.90745,77.51801,69.36860689,66.48917199,63.60973709,60.73030219,56.41377168,52.09724117,52.55510933,47.54442173,46.25686155,44.6692697,43.40688289,42.14449608,40.88210927,37.5610382,31.14732387,30.91889606,30.86992214,30.82094822 +44,RI,12,OFF-HIGHWAY,SO2,0.65465,0.72329,0.75007,0.77968,0.80024,0.80073,0.8132,2.268876477,1.792369933,1.315863389,0.839356844,0.841494618,0.843632391,0.624779868,0.756699102,0.410466619,0.549284361,0.416777492,0.284270623,0.151763754,0.125792667,0.07087345,0.073850493,0.07528236,0.076714226 +44,RI,14,MISCELLANEOUS,NH3,0.28961,0.32717,0.32639,0.36409,0.39723,0.39044,0.381689075,0.235194571,0.235194571,0.235194571,0.235194571,0.244286139,0.253377706,0.262469274,0.274105798,0.285742323,0.297378848,0.247641059,0.19790327,0.148165481,0.18690162,0.225637759,0.264373898,0.264373898,0.264373898 +44,RI,14,MISCELLANEOUS,NOX,0.012,0.00652,0.00707,0.00881,0.07184,0.0052,0.00619,0.06835,0.06835,0.06835,0.06835,0.046736116,0.025122232,0.003508349,0.003688252,0.003868156,0.004048059,0.003073371,0.002098683,0.001123995,0.000928314,0.000732632,0.000536951,0.000536951,0.000536951 +44,RI,14,MISCELLANEOUS,PM10,46.31149,12.10065,10.5474,10.95908,10.641,10.52901,8.0377152,6.81351,6.81351,6.81351,6.81351,6.62930094,6.44509188,6.26088282,5.541248741,4.821614662,4.101980584,3.881511521,3.661042458,3.440573396,3.528722018,3.616870641,3.705019264,3.705019264,3.705019264 +44,RI,14,MISCELLANEOUS,PM25,8.3405,2.64523,2.37191,2.53216,2.46985,2.44191,1.2380408,0.49213,0.49213,0.49213,0.49213,0.607561051,0.722992101,0.838423152,0.770836291,0.70324943,0.635662569,0.590815795,0.545969022,0.501122249,0.534971295,0.568820342,0.602669388,0.602669388,0.602669388 +44,RI,14,MISCELLANEOUS,SO2,0.00015,0.00015,0.00019,0.00025,0.00092,0.00099,0.00125,,,,,,,0.000540285,0.000570221,0.000600156,0.000630092,0.000477835,0.000325579,0.000173322,0.000240792,0.000308261,0.000375731,0.000375731,0.000375731 +44,RI,14,MISCELLANEOUS,VOC,0.1849,0.12778,0.13108,0.14297,0.097388,0.100706,0.107332,0.02933509,0.031547428,0.033759767,0.035972105,0.0290489,0.022125694,0.015202489,0.016476294,0.017750099,0.019023905,0.015651118,0.012278331,0.008905544,0.011429903,0.013954262,0.016478621,0.016478621,0.016478621 +44,RI,14,MISCELLANEOUS,CO,0.96876,0.28369,0.32525,0.36115,0.1667,0.23973,0.28654,0.00158,0.00158,0.00158,0.00158,0.00105883,0.000537659,1.65E-05,0.002559869,0.005103248,0.007646627,0.005099515,0.002552402,5.29E-06,0.00018875,0.00037221,0.000555671,0.000555671,0.000555671 +44,RI,15,WILDFIRES,NH3,,,,,,,,8.14E-08,8.14E-08,8.14E-08,,0,0,,0,0,0.000911523,0.000911523,0.000911523,0.001000293,0.001000293,0.001000293,0.001308703,0.001308703,0.001308703 +44,RI,15,WILDFIRES,VOC,,,,,,,,1.18E-06,1.18E-06,1.18E-06,,0,0,,0,0,0.013103278,0.013103278,0.013103278,0.014379918,0.014379918,0.014379918,0.018812347,0.018812347,0.018812347 +44,RI,15,WILDFIRES,SO2,,,,,,,,3.03E-08,3.03E-08,3.03E-08,,0,0,,0,0,0.000502655,0.000502655,0.000502655,0.00050721,0.00050721,0.00050721,0.000673507,0.000673507,0.000673507 +44,RI,15,WILDFIRES,PM25,,,,,,,,4.15E-07,4.15E-07,4.15E-07,,0,0,,0,0,0.004976295,0.004976295,0.004976295,0.005363191,0.005363191,0.005363191,0.007038072,0.007038072,0.007038072 +44,RI,15,WILDFIRES,NOX,,,,,,,,4.24E-08,4.24E-08,4.24E-08,,0,0,,0,0,0.001040603,0.001040603,0.001040603,0.000994758,0.000994758,0.000994758,0.001334351,0.001334351,0.001334351 +44,RI,15,WILDFIRES,CO,,,,,,,,5.15E-06,5.15E-06,5.15E-06,,0,0,,0,0,0.055198355,0.055198355,0.055198355,0.060753326,0.060753326,0.060753326,0.079440587,0.079440587,0.079440587 +44,RI,15,WILDFIRES,PM10,,,,,,,,4.91E-07,4.91E-07,4.91E-07,,0,0,,0,0,0.005872014,0.005872014,0.005872014,0.006328494,0.006328494,0.006328494,0.008304951,0.008304951,0.008304951 +44,RI,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,,,,0.1507712,0.109674357,0.068577513,0.02748067,0.042735884,0.057991099,0.073246313,0.073246313,0.073246313 +44,RI,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,,,,0.6325763,0.460118133,0.287659967,0.1152018,0.179168484,0.243135168,0.307101852,0.307101852,0.307101852 +44,RI,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,,,,0.010488407,0.007629508,0.00477061,0.001911711,0.002972934,0.004034158,0.005095381,0.005095381,0.005095381 +44,RI,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,,,,0.01409965,0.010283056,0.006466462,0.002649868,0.004108212,0.005566557,0.007024901,0.007024901,0.007024901 +44,RI,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,,,,0.0692347,0.05038381,0.03153292,0.01268203,0.019712207,0.026742383,0.03377256,0.03377256,0.03377256 +44,RI,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,,,,0.0586736,0.04269823,0.02672286,0.01074749,0.016705259,0.022663029,0.028620798,0.028620798,0.028620798 +44,RI,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,,,,0.006425917,0.004682397,0.002938876,0.001195356,0.001855119,0.002514883,0.003174646,0.003174646,0.003174646 +45,SC,1,FUEL COMB. ELEC. UTIL.,PM10,3.41923,8.57477,7.1562,6.72811,17.947059,16.835733,16.670909,17.71598497,17.97400166,18.23201836,18.49003506,18.48282793,18.4756208,18.46841367,15.92944705,13.39048043,10.85147137,8.276379461,5.701287554,3.126195648,2.604168913,2.082142178,1.560115443,1.560115443,1.560115443 +45,SC,1,FUEL COMB. ELEC. UTIL.,CO,3.02276,3.13428,3.19199,3.27299,6.831375,7.277814,7.157894,7.131831836,6.156650251,5.181468667,4.206287083,6.556840898,8.907394714,11.25794853,13.10842305,14.95889757,16.80925214,14.48103014,12.15280813,9.82458613,9.079015926,8.333445722,7.587875517,7.587875517,7.587875517 +45,SC,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00547,0.0064,0.00604,0.00515,0.011426,0.010609,0.306287328,0.305039006,0.303790684,0.302542362,0.295847553,0.289152743,0.282457934,0.27511932,0.267780706,0.267592092,0.661387893,1.055183695,1.448979496,1.267876152,1.086772807,0.905669462,0.905669462,0.905669462 +45,SC,1,FUEL COMB. ELEC. UTIL.,NOX,97.16904,110.6943,104.18941,97.20541,92.705995,93.104688,86.971981,91.2516206,77.391372,64.815481,52.33667736,48.410867,45.932892,46.09188218,39.64470137,33.19860964,26.75195046,23.29828374,19.84461702,16.3909503,14.72256846,13.05418663,11.38580479,11.595779,9.886144 +45,SC,1,FUEL COMB. ELEC. UTIL.,PM25,1.4499,3.63365,3.21706,3.09974,14.272403,13.290395,13.160579,13.74258761,13.95261092,14.16263422,14.37265753,14.50772365,14.64278978,14.7778559,12.71977858,10.66170126,8.603585011,6.632176701,4.66076839,2.689360079,2.253528608,1.817697137,1.381865666,1.381865666,1.381865666 +45,SC,1,FUEL COMB. ELEC. UTIL.,VOC,0.37215,0.37114,0.378,0.38717,0.463667,0.506128,0.482538,0.491111016,0.490560668,0.490010319,0.489459971,0.520861669,0.552263366,0.583665064,0.591451346,0.599237628,0.606979001,0.566331216,0.52568343,0.485035645,0.451236164,0.417436682,0.383637201,0.383637201,0.383637201 +45,SC,1,FUEL COMB. ELEC. UTIL.,SO2,167.63471,201.56566,191.2821,202.86168,221.876586,207.720743,210.103769,214.158636,203.955531,219.360391,217.7198302,219.969695,172.719334,163.4629246,132.9417148,102.4205727,71.89939134,57.19938592,42.49938051,27.79937509,20.7021005,13.6048259,6.507551303,6.764641,5.725373 +45,SC,2,FUEL COMB. INDUSTRIAL,NH3,0.13526,0.13747,0.13615,0.13508,0.106708,0.107717,0.108463,0.149512258,0.163378925,0.177245592,0.191112258,0.191549201,0.191986143,0.192423085,0.172932885,0.153442684,0.134185402,0.247489342,0.360793281,0.47409722,0.470417042,0.466736865,0.463056687,0.463056687,0.463056687 +45,SC,2,FUEL COMB. INDUSTRIAL,VOC,3.41331,0.72431,0.72969,0.71947,1.041559,1.035208,1.057636,1.446567277,1.225880399,1.005193521,0.784506643,0.857760209,0.931013776,1.004267342,1.027476247,1.050685151,1.103102648,1.061816812,1.020530977,0.979245141,1.011621807,1.043998472,1.076375138,1.076375138,1.076375138 +45,SC,2,FUEL COMB. INDUSTRIAL,SO2,70.9832,44.20347,43.39167,42.60928,38.972351,38.390836,40.405826,62.3812298,55.59709762,48.81296544,42.02883326,33.55199289,25.07515252,16.59831215,16.31892739,16.03954264,15.74795214,14.23870772,12.72946329,11.22021886,9.863074455,8.505930046,7.148785638,7.148785638,7.148785638 +45,SC,2,FUEL COMB. INDUSTRIAL,PM25,5.87213,2.90973,2.83592,2.83079,2.937603,2.913253,3.041761,4.574996037,3.74342334,2.911850644,2.080277947,1.938456249,1.79663455,1.654812852,3.856858465,6.058904077,8.273090373,8.235436423,8.197782474,8.160128524,9.026359172,9.892589819,10.75882047,10.75882047,10.75882047 +45,SC,2,FUEL COMB. INDUSTRIAL,NOX,47.15249,36.0885,35.59332,35.27306,36.511494,36.237763,37.512716,36.5683438,33.44497936,30.32161493,27.1982505,24.55151388,21.90477725,19.25804062,18.99868916,18.7393377,17.92432485,17.01238391,16.10044297,15.18850203,14.94551001,14.70251798,14.45952595,14.45952595,14.45952595 +45,SC,2,FUEL COMB. INDUSTRIAL,CO,12.64091,26.90785,26.09167,26.49901,28.30295,27.899189,29.042913,29.192418,25.09834326,21.00426851,16.91019377,19.35394678,21.79769979,24.2414528,22.66841836,21.09538392,19.56015139,19.94221719,20.32428299,20.70634879,22.23294785,23.75954692,25.28614598,25.28614598,25.28614598 +45,SC,2,FUEL COMB. INDUSTRIAL,PM10,10.63191,4.20228,4.10445,4.07226,3.818749,3.787748,3.96597,6.471645278,5.396808836,4.321972393,3.24713595,2.931645804,2.616155657,2.30066551,4.963240367,7.625815225,10.3143054,10.0763779,9.838450396,9.600522894,10.56106917,11.52161544,12.48216171,12.48216171,12.48216171 +45,SC,3,FUEL COMB. OTHER,PM25,10.24419,5.4115,5.41078,5.40135,5.874359,6.27145,6.279943,5.763789664,5.761192128,5.758594592,5.755997055,4.185912452,2.615827848,1.045743245,1.299616519,1.553489793,1.660330175,2.003630359,2.346930543,2.690230727,2.59333506,2.496439393,2.399543726,2.399543726,2.399543726 +45,SC,3,FUEL COMB. OTHER,NH3,0.06344,0.07385,0.07296,0.06323,0.066358,0.067033,0.067777,0.066162807,0.066162807,0.066162807,0.066162807,0.162289739,0.258416672,0.354543605,0.36240012,0.370256635,0.366947165,0.399652528,0.432357891,0.465063254,0.439879976,0.414696697,0.389513418,0.389513418,0.389513418 +45,SC,3,FUEL COMB. OTHER,VOC,14.32877,11.67744,11.68468,11.67894,48.703868,12.933344,12.937392,49.20424768,36.94563413,24.68702058,12.42840702,8.763649389,5.098891754,1.434134118,1.704311851,1.974489584,2.128494884,2.457320218,2.786145552,3.114970886,3.005502377,2.896033869,2.786565361,2.786565361,2.786565361 +45,SC,3,FUEL COMB. OTHER,SO2,4.46618,5.26768,5.39711,4.77493,5.8771,5.955374,6.038347,4.805692794,4.79833678,4.790980766,4.783624751,3.441084577,2.098544402,0.756004228,0.615467153,0.474930078,0.339278517,0.283105369,0.226932221,0.170759073,0.170497933,0.170236794,0.169975655,0.169975655,0.169975655 +45,SC,3,FUEL COMB. OTHER,NOX,5.01129,5.81484,5.68915,5.26809,5.295299,5.08506,5.135864,5.081067542,5.027378499,4.973689456,4.920000412,4.569469561,4.21893871,3.868407859,3.68426398,3.500120101,3.282507391,3.446344912,3.610182432,3.774019952,3.605871096,3.43772224,3.269573384,3.269573384,3.269573384 +45,SC,3,FUEL COMB. OTHER,CO,75.94753,41.21108,41.28377,41.24275,245.720228,55.025214,55.110306,76.07592291,76.02900364,75.98208438,75.93516512,53.88778783,31.84041055,9.793033272,11.00646964,12.21990602,12.50849934,15.19042416,17.87234898,20.55427379,20.03169906,19.50912432,18.98654959,18.98654959,18.98654959 +45,SC,3,FUEL COMB. OTHER,PM10,10.36289,5.60859,5.6159,5.60874,6.016757,6.415144,6.424984,5.854138518,5.85126679,5.848395063,5.845523336,4.251595532,2.657667727,1.063739922,1.324462134,1.585184346,1.700554912,2.038988916,2.377422919,2.715856923,2.620079896,2.52430287,2.428525843,2.428525843,2.428525843 +45,SC,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.00546,2.86906,2.97564,3.04573,7.564618,7.790298,7.957606,2.524313125,1.794228083,1.064143042,0.334058,0.627065333,0.920072667,1.21308,1.2143568,1.2156336,1.2169104,1.12720953,1.03750866,0.94780779,1.011402732,1.074997673,1.138592615,1.138592615,1.138592615 +45,SC,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,0.057478,0.05908,0.060327,0.172957598,0.120959766,0.068961933,0.0169641,0.059644287,0.102324473,0.14500466,0.147235801,0.149466941,0.144548082,0.107480028,0.070411974,0.03334392,0.03457802,0.03581212,0.03704622,0.03704622,0.03704622 +45,SC,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.00949,0.00105,0.00109,0.00111,0.118979,0.122209,0.124498,0.024331101,0.016813067,0.009295034,0.001777,0.058007989,0.114238978,0.170469967,0.168706768,0.166943569,0.16518037,0.156233879,0.147287388,0.138340897,0.144890443,0.151439989,0.157989535,0.157989535,0.157989535 +45,SC,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.06713,0.23176,0.23929,0.24529,0.395343,0.407705,0.417556,0.409208348,0.291730565,0.174252782,0.056774999,0.07277228,0.088769561,0.104766841,0.113952472,0.123138103,0.132323734,0.142410564,0.152497394,0.162584224,0.187921715,0.213259207,0.238596698,0.238596698,0.238596698 +45,SC,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.02349,0.13825,0.1426,0.14646,0.225781,0.232832,0.238417,0.16175607,0.115683885,0.0696117,0.023539515,0.038085645,0.052631774,0.067177903,0.070312537,0.07344717,0.076581803,0.089058604,0.101535405,0.114012206,0.138890364,0.163768523,0.188646681,0.188646681,0.188646681 +45,SC,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.00438,0.05785,0.0593,0.06136,0.057993,0.059559,0.060674,0.054938127,0.036640351,0.018342576,4.48E-05,0.006342852,0.012640904,0.018938956,0.015492794,0.012046632,0.00860047,0.009084154,0.009567837,0.01005152,0.011321769,0.012592018,0.013862266,0.013862266,0.013862266 +45,SC,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,46.27299,40.99262,42.13244,43.48194,29.095635,30.080326,30.881769,14.57273989,13.01947869,11.46621748,9.912956273,7.498804826,5.084653379,2.670501931,2.483791382,2.297080833,2.110370284,2.143341122,2.176311961,2.2092828,2.055874809,1.902466818,1.749058827,1.749058827,1.749058827 +45,SC,5,METALS PROCESSING,PM10,0.7596,0.30367,0.32366,0.3197,0.797625,0.811272,0.848463,0.607811139,0.450677611,0.293544083,0.136410555,0.247854882,0.359299209,0.470743536,0.504568747,0.538393958,0.572219169,0.571130174,0.570041179,0.568952184,0.62173186,0.674511537,0.727291213,0.727291213,0.727291213 +45,SC,5,METALS PROCESSING,PM25,0.67747,0.25148,0.26787,0.26424,0.576782,0.588335,0.616909,0.293320415,0.222075657,0.150830898,0.07958614,0.173327122,0.267068104,0.360809085,0.400689205,0.440569324,0.480449443,0.480801321,0.481153199,0.481505077,0.526410033,0.571314988,0.616219944,0.616219944,0.616219944 +45,SC,5,METALS PROCESSING,CO,14.07042,14.22655,15.2361,15.20512,10.944152,11.142669,11.649407,14.65147694,13.72236884,12.79326074,11.86415264,24.27199576,36.67983888,49.087682,50.63626585,52.18484971,53.73343356,54.24037618,54.74731879,55.25426141,47.67629302,40.09832462,32.52035623,32.52035623,32.52035623 +45,SC,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,0,0,,0.000816667,0.001633333,0.00245,0.002126667,0.001803333,0.00148,0.002896667,0.004313333,0.00573,0.00573,0.00573 +45,SC,5,METALS PROCESSING,SO2,6.4843,3.96931,4.23942,4.20933,3.321802,3.375103,3.519839,5.25261411,4.567415407,3.882216703,3.197018,3.79860007,4.40018214,5.00176421,5.047353003,5.092941797,5.13853059,4.981879597,4.825228603,4.66857761,3.994848436,3.321119261,2.647390087,2.647390087,2.647390087 +45,SC,5,METALS PROCESSING,VOC,0.34602,0.43624,0.47166,0.47683,0.702963,0.715565,0.749858,0.745555053,0.54602542,0.346495787,0.146966154,0.250241695,0.353517235,0.456792776,0.456703628,0.45661448,0.456525332,0.580506882,0.704488431,0.828469981,0.795959001,0.763448022,0.730937042,0.730937042,0.730937042 +45,SC,5,METALS PROCESSING,NOX,0.25711,0.20604,0.22396,0.22717,0.569352,0.584807,0.618801,0.508077654,0.344018936,0.179960218,0.0159015,0.2090062,0.4021109,0.5952156,0.656925333,0.718635067,0.7803448,0.843638793,0.906932787,0.97022678,0.990185489,1.010144197,1.030102906,1.030102906,1.030102906 +45,SC,6,PETROLEUM & RELATED INDUSTRIES,CO,0.00001,,,,0.203573,0.203988,0.204547,0.248171937,0.248171937,0.248171937,0.248171937,0.165447958,0.082723979,,0,0,0,0,0,,0,0,0,0,0 +45,SC,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +45,SC,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.00001,,,,0.214718,0.214763,0.214827,0.28326846,0.28326846,0.28326846,0.28326846,0.18884564,0.09442282,,0,0,0,0,0,,0,0,0,0,0 +45,SC,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.10304,,,,0.03507,0.035078,0.035089,0.06222325,0.06222325,0.06222325,0.06222325,0.041482167,0.020741083,,0,0,0,0,0,,0.0002084,0.0004168,0.0006252,0.0006252,0.0006252 +45,SC,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.0317,,,,0.009796,0.009804,0.009815,0.022305313,0.022305313,0.022305313,0.022305313,0.014870209,0.007435104,,0,0,0,0,0,,8.33E-07,1.67E-06,0.0000025,0.0000025,0.0000025 +45,SC,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.00002,,,,0.113603,0.113609,0.113617,0.170072033,0.170072033,0.170072033,0.170072033,0.113381355,0.056690678,,0,0,0,0,0,,0,0,0,0,0 +45,SC,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.00933,0.012,0.012,0.012,0.04431,0.044331,0.044359,0.114238689,0.114238689,0.114238689,0.114238689,0.091291793,0.068344896,0.045398,0.040606547,0.035815093,0.03102364,0.03345576,0.03588788,0.03832,0.056203213,0.074086427,0.09196964,0.09196964,0.09196964 +45,SC,7,OTHER INDUSTRIAL PROCESSES,SO2,22.57161,15.71782,16.69859,17.10052,12.641668,13.087868,13.623862,12.45555476,12.30491831,12.15428185,12.00364539,10.14600706,8.288368725,6.430730391,6.028063879,5.625397367,5.222730861,4.58183573,3.940940599,3.300045469,3.271533178,3.243020887,3.214508596,3.214508596,3.214508596 +45,SC,7,OTHER INDUSTRIAL PROCESSES,VOC,5.73255,8.77567,9.23586,9.47479,10.769365,11.123707,10.07049884,15.89804446,13.95633192,12.01461937,10.07290682,11.43642501,12.79994319,14.16346138,14.53980333,14.91614527,15.03598116,15.31504101,15.59410086,15.8731607,16.33861597,16.80407124,17.26952651,17.26952651,17.26952651 +45,SC,7,OTHER INDUSTRIAL PROCESSES,PM25,2.97547,4.1,4.25345,4.57237,5.783561,5.681133,7.057912968,6.52721847,6.394413403,6.261608336,6.12880327,5.606936468,5.085069667,4.563202866,4.425050138,4.28689741,4.148744209,4.350984574,4.55322494,4.755465306,5.244201444,5.732937581,6.221673719,6.221673719,6.221673719 +45,SC,7,OTHER INDUSTRIAL PROCESSES,NOX,15.10245,17.94584,19.18528,19.69428,16.513957,17.107428,17.81197,14.89548558,14.89339695,14.89130832,14.88921969,13.7183999,12.54758011,11.37676032,11.0014487,10.62613707,10.25082336,10.73226533,11.2137073,11.69514927,11.75722337,11.81929747,11.88137156,11.88137156,11.88137156 +45,SC,7,OTHER INDUSTRIAL PROCESSES,NH3,0.00005,0.00582,0.00612,0.00634,0.924464,0.959265,0.976573,1.184976646,1.290314353,1.395652059,1.500989766,1.362042235,1.223094704,1.084147173,1.074921098,1.065695023,1.056384033,1.050686097,1.04498816,1.039290224,0.870318229,0.701346235,0.532374241,0.532374241,0.532374241 +45,SC,7,OTHER INDUSTRIAL PROCESSES,CO,16.51903,16.70379,17.62928,18.09251,9.364277,9.672216,10.43982869,9.739713107,11.01937313,12.29903315,13.57869317,15.82984917,18.08100518,20.33216118,19.52535628,18.71855139,17.91174452,18.0849049,18.25806528,18.43122566,17.5083784,16.58553113,15.66268387,15.66268387,15.66268387 +45,SC,7,OTHER INDUSTRIAL PROCESSES,PM10,5.72333,11.13523,11.33752,12.59911,13.722986,12.703733,14.2362621,15.61489198,15.30938865,15.00388531,14.69838197,12.7223543,10.74632663,8.770298955,8.373572679,7.976846403,7.581497168,7.850775491,8.120053813,8.389332136,8.914361984,9.439391832,9.96442168,9.96442168,9.96442168 +45,SC,8,SOLVENT UTILIZATION,PM25,0.1027,0.02172,0.02262,0.02326,0.04205,0.043195,0.044382,0.065140887,0.064925401,0.064709916,0.064494431,0.059611285,0.054728139,0.049844993,0.037426984,0.025008976,0.012590967,0.015794033,0.018997098,0.022200164,0.024029332,0.0258585,0.027687668,0.027687668,0.027687668 +45,SC,8,SOLVENT UTILIZATION,CO,2.941,0.00044,0.00045,0.00047,0.003962,0.004139,0.004279,0.004372798,0.003382949,0.0023931,0.001403251,0.002314501,0.00322575,0.004137,0.004987333,0.005837667,0.006688,0.007285667,0.007883333,0.008481,0.008648797,0.008816593,0.00898439,0.00898439,0.00898439 +45,SC,8,SOLVENT UTILIZATION,SO2,0.0044,0.00098,0.00101,0.00105,0.000028,0.000029,0.00003,0.000003802,0.000331189,0.000658576,0.000985963,0.000657308,0.000328654,0,0.0000915,0.000183,0.0002745,0.0002745,0.0002745,,0,0,0,0,0 +45,SC,8,SOLVENT UTILIZATION,PM10,0.12427,0.02552,0.02654,0.02731,0.04205,0.043195,0.044382,0.078212019,0.077926156,0.077640292,0.077354428,0.069278033,0.061201638,0.053125243,0.040218069,0.027310895,0.014403721,0.017263491,0.020123262,0.022983032,0.024819466,0.026655901,0.028492335,0.028492335,0.028492335 +45,SC,8,SOLVENT UTILIZATION,NOX,0.02028,0.02444,0.02505,0.02592,0.004716,0.004927,0.005095,0.000979473,0.001274221,0.00156897,0.001863719,0.001367812,0.000871906,0.000376,0.000472853,0.000569707,0.00066656,0.000701373,0.000736187,0.000771,0.000786254,0.000801508,0.000816762,0.000816762,0.000816762 +45,SC,8,SOLVENT UTILIZATION,NH3,,0.00027,0.00027,0.00029,0.002459,0.002279,0.002227,0.017099499,0.011454999,0.0058105,0.000166,0.000162383,0.000158767,0.00015515,0.000196867,0.000238583,0.0002803,0.00034249,0.00040468,0.00046687,0.000583587,0.000700303,0.00081702,0.00081702,0.00081702 +45,SC,8,SOLVENT UTILIZATION,VOC,107.1133,95.87761,99.51034,92.70296,84.406476,84.560261,87.384118,89.29720773,87.60741964,85.91763154,84.22784344,75.43042267,66.6330019,57.83558113,52.28895317,46.74232521,41.03892933,44.45704134,47.87515335,51.29326536,50.97643023,50.6595951,50.34275997,50.34275997,50.34275997 +45,SC,9,STORAGE & TRANSPORT,VOC,22.77191,23.37898,23.43587,23.48151,28.753299,28.675778,28.941084,33.79356138,33.68015359,33.5667458,33.45333801,33.45430294,33.45526787,33.4562328,33.74542508,34.03461737,30.39718762,25.05300428,19.70882094,14.3646376,14.60551082,14.84638404,15.08725726,15.08725726,15.08725726 +45,SC,9,STORAGE & TRANSPORT,CO,,,,,0.01038,0.010629,0.010949,0.01038,0.0103,0.01022,0.01014,0.015554333,0.020968667,0.026383,0.030693,0.035003,0.039313,0.041696,0.044079,0.046462,0.059082248,0.071702497,0.084322745,0.084322745,0.084322745 +45,SC,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0.002167425,0.00433485,0.006502275,0.005293183,0.004084092,0.002875,0.0023,0.001725,0.00115,0.001933667,0.002717333,0.003501,0.003501,0.003501 +45,SC,9,STORAGE & TRANSPORT,NOX,,,,,0.00406,0.004157,0.004283,0.00406,0.00406,0.00406,0.00406,0.010628333,0.017196667,0.023765,0.024533333,0.025301667,0.02607,0.027861667,0.029653333,0.031445,0.038857843,0.046270685,0.053683528,0.053683528,0.053683528 +45,SC,9,STORAGE & TRANSPORT,PM10,,0.19843,0.21355,0.21935,0.285789,0.294266,0.305106,0.508029583,0.431865083,0.355700583,0.279536083,0.310136455,0.340736828,0.3713372,0.363010253,0.354683307,0.34620916,0.332263766,0.318318372,0.304372978,0.300989553,0.297606127,0.294222701,0.294222701,0.294222701 +45,SC,9,STORAGE & TRANSPORT,PM25,,0.06738,0.07249,0.07439,0.133002,0.136482,0.141101,0.215757297,0.189125986,0.162494675,0.135863364,0.147381785,0.158900206,0.170418627,0.159861585,0.149304544,0.138747816,0.131527485,0.124307153,0.117086822,0.119780143,0.122473463,0.125166784,0.125166784,0.125166784 +45,SC,9,STORAGE & TRANSPORT,SO2,,,,,0.000001,0.000001,0.000001,0.000001042,6.95E-07,3.47E-07,,0,0,,0.000173333,0.000346667,0.00052,0.001047333,0.001574667,0.002102,0.005832838,0.009563677,0.013294515,0.013294515,0.013294515 +45,SC,10,WASTE DISPOSAL & RECYCLING,PM10,5.83941,12.68205,13.03738,13.28312,13.287914,10.618603,10.620058,6.839420526,6.815228546,6.791036566,6.766844586,7.054333593,7.3418226,7.629311606,7.438019283,7.246726959,7.055434636,7.328040581,7.600646527,7.873252472,7.782127261,7.69100205,7.599876839,7.599876839,7.599876839 +45,SC,10,WASTE DISPOSAL & RECYCLING,NH3,0.7349,0.77931,0.78511,0.79822,0.871008,0.885054,0.89915,0.184388008,0.125404672,0.066421336,0.007438,0.210310151,0.413182301,0.616054452,0.622623503,0.629192554,0.63920238,0.59650473,0.55380708,0.51110943,0.448046147,0.384982863,0.32191958,0.32191958,0.32191958 +45,SC,10,WASTE DISPOSAL & RECYCLING,VOC,12.51078,9.67018,9.94898,10.13566,17.894393,8.438122,8.448223,13.69840587,13.71793587,13.73746588,13.75699588,10.76336149,7.7697271,4.77609271,4.536031821,4.295970933,4.073215667,4.541819734,5.0104238,5.479027867,5.237964432,4.996900998,4.755837563,4.755837563,4.755837563 +45,SC,10,WASTE DISPOSAL & RECYCLING,NOX,2.10766,3.48732,3.55828,3.62495,5.149545,2.8116,2.822046,3.370369425,3.331234552,3.292099678,3.252964805,2.934709722,2.616454639,2.298199555,2.137836714,1.977473873,1.817111032,2.004989934,2.192868837,2.380747739,2.106510668,1.832273596,1.558036524,1.558036524,1.558036524 +45,SC,10,WASTE DISPOSAL & RECYCLING,CO,34.71052,85.95324,87.00437,88.58221,110.016603,60.141365,60.147666,44.81152892,44.77729218,44.74305545,44.70881871,47.13999268,49.57116664,52.00234061,50.89095812,49.77957562,48.66819313,52.27237824,55.87656335,59.48074846,54.83971575,50.19868305,45.55765035,45.55765035,45.55765035 +45,SC,10,WASTE DISPOSAL & RECYCLING,SO2,0.34426,0.52845,0.54226,0.55178,0.430009,0.441797,0.447579,0.616335727,0.530610528,0.444885328,0.359160128,0.314570202,0.269980277,0.225390351,0.196830864,0.168271377,0.13971189,0.311257385,0.482802881,0.654348376,0.602113792,0.549879208,0.497644624,0.497644624,0.497644624 +45,SC,10,WASTE DISPOSAL & RECYCLING,PM25,5.17921,12.26435,12.59183,12.82791,12.8111,10.124471,10.125499,6.334539211,6.313511888,6.292484566,6.271457243,6.281342983,6.291228722,6.301114462,6.115916094,5.930717726,5.745519358,5.971353434,6.197187511,6.423021587,6.566850059,6.710678531,6.854507003,6.854507003,6.854507003 +45,SC,11,HIGHWAY VEHICLES,VOC,163.3968,101.94328,100.10417,100.1207,98.01001,95.56191,93.60451,73.05327335,68.4910386,63.92880386,59.36656912,61.34225194,63.31793477,52.85503606,51.20660416,48.56528269,51.85131014,50.09431855,48.33732697,46.58033539,44.03819893,40.92798179,40.46657365,33.00743255,30.23294465 +45,SC,11,HIGHWAY VEHICLES,CO,1910.13433,1311.20373,1289.11442,1270.65159,1207.3367,1210.63648,1176.70297,985.8606623,925.2403176,864.6199728,803.9996281,738.7104684,673.4213086,574.8456181,483.5615898,456.0381148,476.2695527,487.151985,498.0344173,508.9168495,489.9479493,455.156125,450.2138835,385.9842329,364.1652022 +45,SC,11,HIGHWAY VEHICLES,NH3,2.57926,3.73221,4.24734,4.1484,4.32802,4.50571,4.64647,2.573208932,2.500809768,2.428410603,2.356011438,2.384690271,2.413369104,2.227142172,2.065057188,1.990253332,2.106068452,2.046911862,1.987755271,1.92859868,1.877039728,1.886433839,1.8954556,1.71243358,1.671943134 +45,SC,11,HIGHWAY VEHICLES,NOX,168.06834,151.9381,155.76753,155.59061,153.3465,153.1764,145.6405,197.3750162,182.8743527,168.3736892,153.8730258,141.4515355,129.0300453,117.7296665,112.7952148,92.17443113,109.383923,102.2050249,95.02612688,87.84722883,80.27564098,83.78180182,80.12541389,67.74564136,61.04745697 +45,SC,11,HIGHWAY VEHICLES,PM10,7.45186,5.21164,5.03413,4.74593,4.5095,4.28869,4.06733,6.837436105,6.698339592,6.559243079,6.420146567,5.815585805,5.211025043,4.729903614,5.075355425,3.885979818,6.894522938,6.150067312,5.405611685,4.661156058,4.448528841,4.533129912,4.437822086,4.768010838,4.62530543 +45,SC,11,HIGHWAY VEHICLES,PM25,6.32086,4.22406,4.0287,3.75904,3.52186,3.3015,3.0865,5.682326903,5.537436696,5.392546489,5.247656282,4.553065324,3.858474365,3.40406889,3.807222351,2.656989453,3.804708779,3.382742037,2.960775295,2.538808553,2.290272005,2.422625115,2.296764066,2.266169639,2.114706575 +45,SC,11,HIGHWAY VEHICLES,SO2,9.53192,5.12615,5.33644,5.44751,5.61509,5.21056,5.3413,6.730533853,5.69922797,4.667922087,3.636616204,2.125189173,0.613762142,0.588300709,0.563339134,0.566897753,0.504193937,0.518151393,0.532108849,0.546066304,0.559126498,0.60596853,0.568455166,0.265929758,0.209387358 +45,SC,12,OFF-HIGHWAY,PM25,3.33749,3.50727,3.45745,3.41577,3.48645,3.44357,3.39506,5.028997946,4.552333977,4.075670008,3.599006038,3.402545213,3.206084388,2.832918062,2.971914446,2.732980189,2.856473058,2.725023883,2.593574707,2.462125532,2.229891504,1.881287076,1.765423449,1.708619662,1.651815876 +45,SC,12,OFF-HIGHWAY,NOX,36.78817,40.70074,40.77527,40.54436,44.28246,43.29421,43.37899,67.79807115,61.56501353,55.33195591,49.09889829,44.2261027,39.35330711,36.99041788,38.60979893,37.64689947,35.56904235,35.19631087,34.82357939,34.45084791,31.47552969,27.38565514,25.52489326,25.02940295,24.53391265 +45,SC,12,OFF-HIGHWAY,CO,320.21659,363.13411,351.94835,351.9343,365.25702,359.7006,367.27352,389.4250914,378.604899,367.7847067,356.9645143,342.5010359,328.0375576,321.245758,261.1839204,247.2273549,240.5073429,232.3336969,224.1600508,215.9864047,214.9613996,213.3752392,212.9113893,214.1112974,215.3112056 +45,SC,12,OFF-HIGHWAY,SO2,3.09554,3.72473,3.78182,3.86791,4.52628,4.36449,4.43359,18.36399749,14.81787841,11.27175933,7.725640257,6.926520483,6.12740071,2.051103584,5.481989663,2.556231283,2.267729273,2.197237771,2.126746269,2.056254767,1.550618963,0.556782388,0.539347354,0.571838242,0.604329129 +45,SC,12,OFF-HIGHWAY,NH3,0.37955,0.44981,0.45357,0.46678,0.04081,0.04081,0.04081,0.031783554,0.032189024,0.032594494,0.032999964,0.033257761,0.033515558,0.034760028,0.034475003,0.034966589,0.037287296,0.037266703,0.037246109,0.037225515,0.035078088,0.028961476,0.030783233,0.030830538,0.030877843 +45,SC,12,OFF-HIGHWAY,VOC,39.70576,44.76431,42.0057,40.83437,42.39742,40.40149,40.04364,51.00166067,49.6518425,48.30202434,46.95220617,44.60475225,42.25729832,40.29764956,38.1259427,36.90717145,35.10418732,32.53956549,29.97494366,27.41032183,26.24933472,25.53619203,23.9273605,23.1493086,22.37125671 +45,SC,12,OFF-HIGHWAY,PM10,3.6405,3.82351,3.76928,3.72142,3.80205,3.75659,3.70416,5.339485272,4.82465232,4.309819369,3.794986418,3.609813346,3.424640274,3.088937841,3.240144651,2.98399482,3.035784774,2.894740886,2.753696997,2.612653108,2.366974887,1.996653152,1.875618445,1.817025685,1.758432925 +45,SC,14,MISCELLANEOUS,PM10,340.53366,218.92785,244.64332,246.99155,245.97778,247.509786,257.7847972,249.70905,253.6826241,257.6561982,261.6297722,243.0466297,224.4634871,205.8803445,202.3804253,198.880506,195.3805868,170.737452,146.0943172,121.4511824,113.8671006,106.2830187,98.69893691,98.69893691,98.69893691 +45,SC,14,MISCELLANEOUS,VOC,9.29883,3.91309,4.41487,6.6415,5.501012,3.417838,4.778399,24.03937816,32.20856109,40.37774401,48.54692694,32.4458349,16.34474285,0.243650813,0.541694459,0.839738106,1.137781752,1.464817248,1.791852743,2.118888238,2.199308522,2.279728805,2.360149088,2.360149088,2.360149088 +45,SC,14,MISCELLANEOUS,PM25,73.51448,42.85148,48.72633,50.7867,51.42516,48.845831,47.5764596,35.3897907,38.75724286,42.12469502,45.49214717,39.10260748,32.71306779,26.3235281,26.38730827,26.45108845,26.51486862,23.68161374,20.84835885,18.01510397,16.77828648,15.54146899,14.30465151,14.30465151,14.30465151 +45,SC,14,MISCELLANEOUS,NOX,7.10001,1.04647,1.30001,1.82851,2.48664,1.53717,2.15736,0.95207,2.019016918,3.085963835,4.152910753,2.814046454,1.475182155,0.136317857,0.285790307,0.435262757,0.584735207,0.510332129,0.435929051,0.361525973,0.290272418,0.219018864,0.147765309,0.147765309,0.147765309 +45,SC,14,MISCELLANEOUS,NH3,22.49049,25.85991,26.39975,26.51235,28.66776,29.07137,26.04338846,29.44538975,30.01041992,30.57545009,31.14048026,30.69485348,30.24922671,29.80359994,29.76802537,29.7324508,29.69687623,26.59079727,23.48471832,20.37863936,23.37615092,26.37366247,29.37117403,29.37117403,29.37117403 +45,SC,14,MISCELLANEOUS,CO,202.55413,46.064,60.86571,81.92488,115.88686,71.63048,100.53979,112.45926,145.5282032,178.5971463,211.6660895,142.0513157,72.43654199,2.821768234,6.274088372,9.726408511,13.17872865,13.57159638,13.9644641,14.35733183,10.77438193,7.191432024,3.608482121,3.608482121,3.608482121 +45,SC,14,MISCELLANEOUS,SO2,0.26564,0.03522,0.04232,0.06113,0.68013,0.41985,0.58997,1.44221,1.602255923,1.762301846,1.922347769,1.287723763,0.653099756,0.01847575,0.038414741,0.058353733,0.078292724,0.074317492,0.070342259,0.066367026,0.065813031,0.065259036,0.06470504,0.06470504,0.06470504 +45,SC,15,WILDFIRES,CO,,,,,,,,7.2689,7.2689,7.2689,,0,0,5.306843795,5.306843795,5.306843795,35.94674575,35.94674575,35.94674575,17.90576037,17.90576037,17.90576037,15.74296362,15.74296362,15.74296362 +45,SC,15,WILDFIRES,SO2,,,,,,,,0.04667,0.04667,0.04667,,0,0,0.044969453,0.044969453,0.044969453,0.325268594,0.325268594,0.325268594,0.183103216,0.183103216,0.183103216,0.156384297,0.156384297,0.156384297 +45,SC,15,WILDFIRES,PM25,,,,,,,,0.59328,0.59328,0.59328,,0,0,0.470102267,0.470102267,0.470102267,3.235479263,3.235479263,3.235479263,1.663824012,1.663824012,1.663824012,1.451460616,1.451460616,1.451460616 +45,SC,15,WILDFIRES,PM10,,,,,,,,0.69626,0.69626,0.69626,,0,0,0.554721099,0.554721099,0.554721099,3.817867812,3.817867812,3.817867812,1.963312186,1.963312186,1.963312186,1.712728778,1.712728778,1.712728778 +45,SC,15,WILDFIRES,VOC,,,,,,,,1.65713,1.65713,1.65713,,0,0,1.2566938,1.2566938,1.2566938,8.531298947,8.531298947,8.531298947,4.268850704,4.268850704,4.268850704,3.749022221,3.749022221,3.749022221 +45,SC,15,WILDFIRES,NOX,,,,,,,,0.08478,0.08478,0.08478,,0,0,0.089052151,0.089052151,0.089052151,0.670803173,0.670803173,0.670803173,0.403073334,0.403073334,0.403073334,0.339339104,0.339339104,0.339339104 +45,SC,15,WILDFIRES,NH3,,,,,,,,0.10845,0.10845,0.10845,,0,0,0.087422094,0.087422094,0.087422094,0.593474633,0.593474633,0.593474633,0.296961222,0.296961222,0.296961222,0.260801714,0.260801714,0.260801714 +45,SC,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,3.6869033,3.366174098,3.045444896,2.724715694,3.061457392,3.398199089,3.734940787,3.757308847,3.779676907,3.802044967,3.802044967,3.802044967 +45,SC,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,3.8987854,3.712549492,3.526313585,3.340077677,3.711105596,4.082133515,4.453161435,4.315586868,4.178012302,4.040437736,4.040437736,4.040437736 +45,SC,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,1.93972142,1.817127105,1.694532791,1.571938476,1.753609679,1.935280882,2.116952086,2.080065634,2.043179182,2.006292729,2.006292729,2.006292729 +45,SC,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,52.99917,48.38873816,43.77830632,39.16787448,44.00851147,48.84914846,53.68978545,54.01129584,54.33280624,54.65431664,54.65431664,54.65431664 +45,SC,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,19.9211269,18.28995086,16.65877481,15.02759877,16.85701777,18.68643676,20.51585576,20.52939717,20.54293857,20.55647998,20.55647998,20.55647998 +45,SC,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,23.5069239,21.58213885,19.65735379,17.73256874,19.8912819,22.04999506,24.20870822,24.22468931,24.24067041,24.2566515,24.2566515,24.2566515 +45,SC,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,223.635877,203.9976577,184.3594384,164.7212191,185.1288405,205.5364618,225.9440832,227.4946662,229.0452493,230.5958324,230.5958324,230.5958324 +46,SD,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00065,0.0007,0.00078,0.00386,0.001444,0.003324,0.049694,0.033129333,0.016564667,,0.011449167,0.022898333,0.0343475,0.031022933,0.027698367,0.0243738,0.025061767,0.025749733,0.0264377,0.0193168,0.0121959,0.005075,0.005075,0.005075 +46,SD,1,FUEL COMB. ELEC. UTIL.,VOC,0.08226,0.07718,0.10716,0.09902,0.21015,0.182542,0.026544,0.11208,0.108977083,0.105874167,0.10277125,0.1104945,0.11821775,0.125941,0.119527333,0.113113667,0.1067,0.1065,0.1063,0.1061,0.098020633,0.089941267,0.0818619,0.0818619,0.0818619 +46,SD,1,FUEL COMB. ELEC. UTIL.,SO2,31.18764,14.8008,24.80893,21.94271,26.30282,14.390234,14.438393,12.5446849,12.260192,14.297697,11.43072224,11.987841,9.04868,13.5366,12.72956667,11.92253333,11.1155,12.03116667,12.94683333,13.8625,9.528415667,5.194331333,0.860247,1.005608,1.098096 +46,SD,1,FUEL COMB. ELEC. UTIL.,PM25,0.01974,0.03784,0.05828,0.07161,0.729478,0.276638,0.214736,0.420405215,0.409947779,0.399490343,0.389032908,0.335568605,0.282104303,0.22864,0.198865037,0.169090073,0.13931511,0.182214766,0.225114421,0.268014077,0.183128594,0.098243112,0.013357629,0.013357629,0.013357629 +46,SD,1,FUEL COMB. ELEC. UTIL.,CO,0.70713,0.36559,0.50265,0.56325,0.777264,0.569768,0.187566,0.629798,0.614222667,0.598647333,0.583072,0.579534,0.575996,0.572458,0.567538667,0.562619333,0.5577,0.534433333,0.511166667,0.4879,0.450086433,0.412272867,0.3744593,0.3744593,0.3744593 +46,SD,1,FUEL COMB. ELEC. UTIL.,NOX,19.14822,17.61772,23.53488,23.47702,24.33526,17.876856,17.278448,15.932776,16.008798,17.103713,14.73228632,14.762366,10.177011,13.8509,12.80566667,11.76043333,10.7152,10.7045,10.6938,10.6831,7.493311933,4.303523867,1.1137358,1.379066,1.35208 +46,SD,1,FUEL COMB. ELEC. UTIL.,PM10,0.19923,0.05271,0.08167,0.11714,0.790801,0.294271,0.22114,0.450877381,0.440251089,0.429624798,0.418998506,0.360071004,0.301143502,0.242216,0.21158237,0.180948739,0.150315109,0.189548098,0.228781088,0.268014077,0.185334928,0.102655779,0.019976629,0.019976629,0.019976629 +46,SD,2,FUEL COMB. INDUSTRIAL,NOX,2.679,4.47866,4.42681,4.39022,4.55682,4.546588,4.799746,3.653463703,3.58494421,3.516424717,3.447905225,2.298603483,1.149301742,,0.458306726,0.916613452,1.374920178,1.152964923,0.931009669,0.709054415,1.761941291,2.814828167,3.867715043,3.867715043,3.867715043 +46,SD,2,FUEL COMB. INDUSTRIAL,NH3,0.01114,0.01204,0.01174,0.01165,0.01202,0.012603,0.013145,0.040639449,0.040639449,0.040639449,0.040639449,0.027092966,0.013546483,,0.009819745,0.01963949,0.029459235,0.026511221,0.023563208,0.020615195,0.048251549,0.075887904,0.103524258,0.103524258,0.103524258 +46,SD,2,FUEL COMB. INDUSTRIAL,VOC,0.015,0.0171,0.01704,0.01686,0.01747,0.017711,0.018786,0.105622328,0.085808715,0.065995101,0.046181488,0.030787658,0.015393829,,0.03124022,0.062480441,0.093720661,0.097719293,0.101717924,0.105716555,0.139529934,0.173343313,0.207156691,0.207156691,0.207156691 +46,SD,2,FUEL COMB. INDUSTRIAL,SO2,10.43335,18.23062,17.98531,17.68354,18.35938,18.186243,19.585368,10.00341122,9.836363837,9.669316449,9.502269061,6.334846041,3.16742302,,0.369012896,0.738025793,1.107038689,0.778466101,0.449893513,0.121320926,0.554030858,0.986740791,1.419450723,1.419450723,1.419450723 +46,SD,2,FUEL COMB. INDUSTRIAL,PM10,0.25267,0.54445,0.53039,0.52351,0.614991,0.609807,0.650171,2.689753703,2.708151435,2.726549168,2.7449469,1.8299646,0.9149823,,0.305011614,0.610023227,0.915034841,0.67300274,0.430970639,0.188938538,0.49483175,0.800724961,1.106618173,1.106618173,1.106618173 +46,SD,2,FUEL COMB. INDUSTRIAL,CO,0.403,0.5414,0.53611,0.5295,0.54959,0.547569,0.581483,2.563548648,2.2969553,2.030361952,1.763768604,1.175845736,0.587922868,,0.289451792,0.578903584,0.868355376,0.754619643,0.640883909,0.527148175,1.283909721,2.040671267,2.797432812,2.797432812,2.797432812 +46,SD,2,FUEL COMB. INDUSTRIAL,PM25,0.02565,0.1518,0.1433,0.14291,0.220077,0.219633,0.229844,0.574844901,0.594371147,0.613897393,0.633423639,0.422282426,0.211141213,,0.100245678,0.200491356,0.300737034,0.254064901,0.207392767,0.160720634,0.249602618,0.338484602,0.427366586,0.427366586,0.427366586 +46,SD,3,FUEL COMB. OTHER,NH3,0.0291,0.0324,0.03193,0.02827,0.02926,0.029534,0.029838,0.0070399,0.0070399,0.0070399,0.0070399,0.064426395,0.121812891,0.179199387,0.1790716,0.178943813,0.17622229,0.187654371,0.199086453,0.210518534,0.198764,0.187009466,0.175254931,0.175254931,0.175254931 +46,SD,3,FUEL COMB. OTHER,VOC,2.17587,5.60513,5.60476,5.60197,5.63345,6.043614,6.044164,5.929823652,5.23169679,4.533569928,3.835443066,2.929676663,2.023910259,1.118143856,1.055338735,0.992533613,0.904268464,1.178858894,1.453449323,1.728039753,1.516018461,1.303997168,1.091975876,1.091975876,1.091975876 +46,SD,3,FUEL COMB. OTHER,SO2,1.57661,1.59518,1.61041,1.39919,1.404043,1.430626,1.460798,0.944897373,0.883840707,0.82278404,0.761727373,0.601762863,0.441798354,0.281833844,0.31756358,0.353293316,0.388506293,0.313327745,0.238149197,0.162970649,0.135379407,0.107788165,0.080196923,0.080196923,0.080196923 +46,SD,3,FUEL COMB. OTHER,PM25,1.56061,2.0391,2.03957,2.03988,2.198907,2.344594,2.350974,2.404828739,2.404037764,2.403246788,2.402455813,1.894116665,1.385777517,0.877438368,0.848461715,0.819485062,0.757979373,1.035776055,1.313572737,1.591369419,1.426607087,1.261844755,1.097082422,1.097082422,1.097082422 +46,SD,3,FUEL COMB. OTHER,NOX,1.96814,2.62316,2.56504,2.40048,2.326431,2.366428,2.401955,2.019778839,1.982205506,1.944632172,1.907058839,1.790544134,1.674029429,1.557514724,1.570797921,1.584081118,1.593590053,1.523492315,1.453394576,1.383296837,1.548814106,1.714331375,1.879848645,1.879848645,1.879848645 +46,SD,3,FUEL COMB. OTHER,CO,11.69895,14.36335,14.3493,14.3138,14.451735,15.489239,15.49432,18.13393008,18.12665008,18.11937008,18.11209008,14.2390292,10.36596832,6.492907446,6.14428155,5.795655655,5.240044644,6.976559376,8.713074107,10.44958884,9.615386801,8.781184764,7.946982726,7.946982726,7.946982726 +46,SD,3,FUEL COMB. OTHER,PM10,1.57887,2.20882,2.21395,2.22141,2.379059,2.528503,2.539887,2.477079406,2.468170174,2.459260941,2.450351709,1.931243303,1.412134897,0.89302649,0.860102747,0.827179004,0.761726224,1.043335963,1.324945702,1.606555441,1.440986884,1.275418326,1.109849768,1.109849768,1.109849768 +46,SD,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.017,0.01217,0.01323,0.01429,0.01455,0.01561,0.016005,0.13234,0.132253333,0.132166667,0.13208,0.088053333,0.044026667,,0.000133333,0.000266667,0.0004,0.006833333,0.013266667,0.0197,0.013133333,0.006566667,0,0,0 +46,SD,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,5,METALS PROCESSING,VOC,,,,,,,,0.00148,0.000986667,0.000493333,,0,0,,0.049333333,0.098666667,0.148,0.108,0.068,0.028,0.034703333,0.041406667,0.04811,0.04811,0.04811 +46,SD,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,0,0,,0.000416667,0.000833333,0.00125,0.00125,0.00125,,0,0,0,0,0 +46,SD,5,METALS PROCESSING,NOX,,,,,,,,0.00797,0.005313333,0.002656667,,0,0,,0.005666667,0.011333333,0.017,0.020366667,0.023733333,0.0271,0.023953333,0.020806667,0.01766,0.01766,0.01766 +46,SD,5,METALS PROCESSING,PM10,,0.04123,0.04159,0.04141,0.065296,0.066406,0.068104,0.02067,0.01378,0.00689,,0,0,,0.0041,0.0082,0.0123,0.0112,0.0101,0.009,0.008773333,0.008546667,0.00832,0.00832,0.00832 +46,SD,5,METALS PROCESSING,SO2,,,,,,,,0.00005,3.33E-05,1.67E-05,,0,0,,3.33E-05,6.67E-05,0.0001,6.67E-05,3.33E-05,0,0.00003,0.00006,0.00009,0.00009,0.00009 +46,SD,5,METALS PROCESSING,CO,,,,,,,,0.02056,0.013706667,0.006853333,,0,0,,0.003833333,0.007666667,0.0115,0.0153,0.0191,0.0229,0.020206667,0.017513333,0.01482,0.01482,0.01482 +46,SD,5,METALS PROCESSING,PM25,,0.01213,0.01224,0.01218,0.036196,0.036812,0.037753,0.017427647,0.011618431,0.005809216,,0,0,,0.0041,0.0082,0.0123,0.011166667,0.010033333,0.0089,0.00692,0.00494,0.00296,0.00296,0.00296 +46,SD,6,PETROLEUM & RELATED INDUSTRIES,NOX,,,,,,,,,0,0,,0,0,,0.085483777,0.170967554,0.242840416,0.234689125,0.226537833,0.218386542,0.182417008,0.146447475,0.110477942,0.110477942,0.110477942 +46,SD,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.047,0.047,0.047,0.047,0.04029,0.04029,0.047018,0.04029,0.04029,0.04029,0.04029,0.02686,0.01343,,0.481277799,0.962555598,2.980907722,2.955362853,2.929817985,2.904273116,2.494799406,2.085325696,1.675851986,1.675851986,1.675851986 +46,SD,6,PETROLEUM & RELATED INDUSTRIES,SO2,,,,,,,,,0,0,,0,0,,0.000585156,0.001170311,0.011133648,0.011335163,0.011536678,0.011738193,0.010676733,0.009615273,0.008553813,0.008553813,0.008553813 +46,SD,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.0048,,,,,,,,0,0,,0,0,,0.002257331,0.004514662,0.007430671,0.007249291,0.007067911,0.006886531,0.005881475,0.004876419,0.003871363,0.003871363,0.003871363 +46,SD,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,6,PETROLEUM & RELATED INDUSTRIES,CO,,,,,,,,,0,0,,0,0,,0.102329572,0.204659144,0.297089686,0.273100835,0.249111984,0.225123133,0.213275918,0.201428704,0.18958149,0.18958149,0.18958149 +46,SD,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.00247,,,,,,,,0,0,,0,0,,0.002246911,0.004493823,0.007312794,0.007132468,0.006952142,0.006771815,0.005804777,0.004837738,0.0038707,0.0038707,0.0038707 +46,SD,7,OTHER INDUSTRIAL PROCESSES,NOX,3.875,3.42092,3.40331,3.39834,3.38839,3.411162,3.429276,3.97572,4.455628477,4.935536955,5.415445432,3.610296955,1.805148477,0,0.654133333,1.308266667,1.9624,1.932028154,1.901656309,1.871284463,2.017650758,2.164017053,2.310383347,2.310383347,2.310383347 +46,SD,7,OTHER INDUSTRIAL PROCESSES,VOC,0.229,0.92718,0.92816,0.93631,0.94623,0.993809,1.08149463,1.2249691,1.462603851,1.700238602,1.937873353,1.301608692,0.665344032,0.029079371,0.681326442,1.333573512,1.985820582,2.043903989,2.101987395,2.160070802,2.193693353,2.227315903,2.260938454,2.260938454,2.260938454 +46,SD,7,OTHER INDUSTRIAL PROCESSES,SO2,0.025,0.65381,0.65381,0.65381,0.65381,0.65381,0.65381,0.76894,1.323993978,1.879047955,2.434101933,1.622734622,0.811367311,0,0.126433333,0.252866667,0.3793,0.3826,0.3859,0.3892,0.378283267,0.367366533,0.3564498,0.3564498,0.3564498 +46,SD,7,OTHER INDUSTRIAL PROCESSES,PM10,22.38869,31.56753,31.26004,34.70194,34.963068,37.283011,37.53545749,35.14687213,36.29985771,37.45284328,38.60582886,26.71434477,14.82286067,2.931376577,2.949667346,2.967958115,2.986248884,3.066328504,3.146408125,3.226487745,3.266421689,3.306355633,3.346289576,3.346289576,3.346289576 +46,SD,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,,,,0.050018,0.1094031,0.1687882,0.2281733,0.152115533,0.076057767,,0.0031865,0.006373,0.0095595,0.011228167,0.012896833,0.0145655,0.015617167,0.016668833,0.0177205,0.0177205,0.0177205 +46,SD,7,OTHER INDUSTRIAL PROCESSES,CO,0.22376,,,,,,0.096859733,2.683207975,3.524074675,4.364941375,5.205808074,3.496023087,1.786238099,0.076453112,0.538979347,1.001505582,1.464031818,1.920622262,2.377212706,2.83380315,2.577202913,2.320602676,2.064002438,2.064002438,2.064002438 +46,SD,7,OTHER INDUSTRIAL PROCESSES,PM25,4.78652,6.46152,6.39858,7.08696,7.198928,7.661273,7.895294697,7.337469409,8.179815421,9.022161433,9.864507445,6.758588608,3.652669771,0.546750935,0.6959819,0.845212865,0.99444383,0.993825903,0.993207976,0.99259005,1.04001277,1.087435491,1.134858211,1.134858211,1.134858211 +46,SD,8,SOLVENT UTILIZATION,CO,,,,,,,,0.04006,0.041563333,0.043066667,0.04457,0.029713333,0.014856667,,0.003966667,0.007933333,0.0119,0.010233333,0.008566667,0.0069,0.007033333,0.007166667,0.0073,0.0073,0.0073 +46,SD,8,SOLVENT UTILIZATION,NH3,,0.00033,0.00036,0.00036,0.00036,0.000369,0.000384,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,8,SOLVENT UTILIZATION,NOX,,,,,,,,0.04281,0.045513333,0.048216667,0.05092,0.033946667,0.016973333,,0.003,0.006,0.009,0.008066667,0.007133333,0.0062,0.00633,0.00646,0.00659,0.00659,0.00659 +46,SD,8,SOLVENT UTILIZATION,PM10,,,,,,,,0.00601,0.006966667,0.007923333,0.00888,0.00592,0.00296,,0.0007,0.0014,0.0021,0.002266667,0.002433333,0.0026,0.00299,0.00338,0.00377,0.00377,0.00377 +46,SD,8,SOLVENT UTILIZATION,PM25,,,,,,,,0.005059232,0.006007522,0.006955813,0.007904104,0.005269402,0.002634701,,0.0007,0.0014,0.0021,0.002233333,0.002366667,0.0025,0.002923333,0.003346667,0.00377,0.00377,0.00377 +46,SD,8,SOLVENT UTILIZATION,SO2,,,,,,,,0.01415,0.01885,0.02355,0.02825,0.018833333,0.009416667,,0,0,0,0,0,0,3.33E-06,6.67E-06,0.00001,0.00001,0.00001 +46,SD,8,SOLVENT UTILIZATION,VOC,22.40116,27.10901,27.14296,27.88896,26.8686,26.615345,29.392412,7.5310352,7.555028533,7.579021867,7.6030152,11.84223941,16.08146362,20.32068783,20.81200692,21.30332602,21.78448466,23.16823335,24.55198204,25.93573073,26.50346305,27.07119536,27.63892768,27.63892768,27.63892768 +46,SD,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +46,SD,9,STORAGE & TRANSPORT,VOC,9.763,7.70164,7.70164,7.70164,7.70164,7.740145,7.824883,5.840282888,5.783922888,5.727562888,5.671202888,5.323921173,4.976639459,4.629357745,5.220640807,5.81192387,5.754731019,4.88604675,4.01736248,3.14867821,3.441996608,3.735315007,4.028633405,4.028633405,4.028633405 +46,SD,9,STORAGE & TRANSPORT,SO2,,,,,,,,,0,0,,0,0,,0.000133333,0.000266667,0.0004,0.000366667,0.000333333,0.0003,0.0002975,0.000295,0.0002925,0.0002925,0.0002925 +46,SD,9,STORAGE & TRANSPORT,NOX,,,,,,,,,0,0,,0,0,,0.003133333,0.006266667,0.0094,0.010766667,0.012133333,0.0135,0.0140217,0.0145434,0.0150651,0.0150651,0.0150651 +46,SD,9,STORAGE & TRANSPORT,CO,,,,,,,,,0,0,,0,0,,0.0114,0.0228,0.0342,0.0308,0.0274,0.024,0.0245803,0.0251606,0.0257409,0.0257409,0.0257409 +46,SD,9,STORAGE & TRANSPORT,PM25,0.40989,0.00441,0.00434,0.00434,0.014795,0.014573,0.014573,0.03830287,0.029350094,0.020397319,0.011444544,0.007629696,0.003814848,,0.0164,0.0328,0.0492,0.049766667,0.050333333,0.0509,0.0481966,0.0454932,0.0427898,0.0427898,0.0427898 +46,SD,9,STORAGE & TRANSPORT,PM10,0.96239,0.03547,0.03493,0.03493,0.045385,0.044704,0.044704,0.050122416,0.040411611,0.030700805,0.02099,0.013993333,0.006996667,,0.018733333,0.037466667,0.0562,0.057766667,0.059333333,0.0609,0.057028267,0.053156533,0.0492848,0.0492848,0.0492848 +46,SD,10,WASTE DISPOSAL & RECYCLING,CO,10.55105,4.09107,4.31674,4.19514,4.42762,4.21825,4.223685,4.682663807,4.682653807,4.682643807,4.682633807,4.25101771,3.819401613,3.387785517,3.253310709,3.118835901,2.984361094,3.302807757,3.621254421,3.939701084,3.67960111,3.419501135,3.159401161,3.159401161,3.159401161 +46,SD,10,WASTE DISPOSAL & RECYCLING,NH3,0.17647,0.24806,0.24806,0.24806,0.25729,0.25729,0.266544,0.002677566,0.002677566,0.002677566,0.002677566,0.002796158,0.00291475,0.003033341,0.003033341,0.003033341,0.003033341,0.008784344,0.014535348,0.020286351,0.019918251,0.01955015,0.01918205,0.01918205,0.01918205 +46,SD,10,WASTE DISPOSAL & RECYCLING,NOX,0.378,0.22784,0.24003,0.2374,0.24462,0.241134,0.2418,0.261747332,0.261737332,0.261727332,0.261717332,0.228325205,0.194933078,0.161540951,0.156268748,0.150996546,0.145724344,0.191671772,0.2376192,0.283566628,0.238132409,0.19269819,0.147263972,0.147263972,0.147263972 +46,SD,10,WASTE DISPOSAL & RECYCLING,PM10,1.63728,1.18404,1.24762,1.24012,1.266721,1.266469,1.26814,1.361202927,1.361189594,1.361176261,1.361162927,1.193159839,1.025156751,0.857153662,0.832806654,0.808459645,0.784112636,0.813213501,0.842314367,0.871415232,0.840419514,0.809423795,0.778428076,0.778428076,0.778428076 +46,SD,10,WASTE DISPOSAL & RECYCLING,PM25,1.44161,1.09136,1.15015,1.14182,1.168591,1.165833,1.167046,1.25802022,1.258007789,1.257995358,1.257982927,1.090981187,0.923979447,0.756977707,0.73619962,0.715421533,0.694643447,0.711989425,0.729335403,0.746681381,0.734796008,0.722910636,0.711025264,0.711025264,0.711025264 +46,SD,10,WASTE DISPOSAL & RECYCLING,SO2,0.07857,0.04789,0.05005,0.05099,0.05129,0.052604,0.053373,0.05034,0.050333333,0.050326667,0.05032,0.039460475,0.02860095,0.017741425,0.017376485,0.017011544,0.016646604,0.044472149,0.072297695,0.100123241,0.078186095,0.056248949,0.034311803,0.034311803,0.034311803 +46,SD,10,WASTE DISPOSAL & RECYCLING,VOC,2.14901,0.91345,0.96148,0.95632,0.97197,0.973684,0.974657,1.199883409,1.199883409,1.199883409,1.199883409,0.899495581,0.599107753,0.298719925,0.304943439,0.311166954,0.317390468,0.350175736,0.382961005,0.415746273,0.397530552,0.37931483,0.361099109,0.361099109,0.361099109 +46,SD,11,HIGHWAY VEHICLES,NOX,37.09831,32.87432,32.80798,31.8825,30.54913,30.24316,28.61749,42.00024623,38.52087154,35.04149684,31.56212215,29.82892346,28.09572478,26.01852896,17.77537262,16.28675357,26.52507488,26.92796181,27.33084875,27.73373568,25.39962581,20.49991205,17.38268239,18.14597167,17.06856496 +46,SD,11,HIGHWAY VEHICLES,VOC,32.42828,21.33157,19.80402,18.62718,17.04478,16.79427,15.71079,14.02885328,13.2734397,12.51802611,11.76261253,11.67406253,11.58551253,10.29974403,11.58522756,10.42082531,13.92038594,13.45240544,12.98442493,12.51644443,11.5233436,9.722969869,9.093324488,8.576857423,8.093052726 +46,SD,11,HIGHWAY VEHICLES,SO2,2.06113,1.04142,1.06388,1.066,1.08003,0.92041,0.93448,1.199949723,1.009116433,0.818283143,0.627449852,0.367869309,0.108288766,0.10004322,0.088534008,0.096310417,0.095399377,0.091304458,0.087209539,0.08311462,0.073835133,0.0748931,0.06484795,0.042139252,0.03950276 +46,SD,11,HIGHWAY VEHICLES,PM10,1.61828,1.09014,1.0393,0.95817,0.88768,0.82888,0.77477,1.49262601,1.426060384,1.359494757,1.29292913,1.28171971,1.27051029,1.175643943,0.784259645,0.730878074,1.281395428,1.32279313,1.364190832,1.405588534,1.245789427,1.049330452,0.877795045,1.058615457,1.035923912 +46,SD,11,HIGHWAY VEHICLES,NH3,0.52056,0.72436,0.81049,0.77896,0.80118,0.82719,0.84437,0.469658313,0.449339697,0.429021082,0.408702466,0.413665754,0.418629042,0.391011983,0.37646026,0.346664345,0.416532115,0.398062548,0.37959298,0.361123412,0.347121866,0.334350177,0.337937783,0.312915806,0.306761929 +46,SD,11,HIGHWAY VEHICLES,CO,422.78434,319.88454,297.29578,275.16779,243.27952,248.69081,240.77633,188.0985035,176.2840652,164.4696268,152.6551885,138.8909636,125.1267387,117.0017996,131.1262705,118.9650721,128.9837014,126.3431831,123.7026648,121.0621465,112.3878678,91.9624519,91.46546017,83.09305869,78.68153569 +46,SD,11,HIGHWAY VEHICLES,PM25,1.38245,0.89324,0.83812,0.76469,0.69827,0.64225,0.59116,1.298396371,1.235788371,1.173180372,1.110572372,1.083048051,1.05552373,0.96423379,0.59756592,0.546022243,0.818945536,0.866986029,0.915026523,0.963067017,0.815806597,0.664807806,0.536838878,0.62666679,0.596211728 +46,SD,12,OFF-HIGHWAY,CO,82.64908,91.82113,90.50737,90.6148,90.88479,91.21848,92.13319,82.15107009,78.00491788,73.85876567,69.71261346,71.49799477,73.28337608,64.26248494,62.08706864,60.58962987,59.03135587,57.03664086,55.04192584,53.04721082,50.85263904,47.23503754,46.46349549,46.08059484,45.69769419 +46,SD,12,OFF-HIGHWAY,NH3,0.27432,0.21403,0.17611,0.19146,0.03152,0.03152,0.03152,0.01931843,0.019758549,0.020198668,0.020638787,0.021432214,0.02222564,0.022636387,0.023078526,0.023499677,0.023815664,0.024304828,0.024793993,0.025283157,0.024045183,0.021472272,0.021569235,0.0216391,0.021708966 +46,SD,12,OFF-HIGHWAY,NOX,29.29838,32.62398,32.65377,32.63283,32.50441,32.44799,32.31068,31.05624748,30.75769506,30.45914264,30.16059022,29.66762718,29.17466414,29.05302233,28.10010977,27.41410116,26.3386011,25.31006348,24.28152586,23.25298824,21.35542388,18.3819917,17.56029516,16.66004527,15.75979537 +46,SD,12,OFF-HIGHWAY,PM10,4.44714,4.38244,4.28451,4.1789,4.07147,3.93488,3.77656,3.42557103,3.297546918,3.169522807,3.041498696,2.896141003,2.750783311,2.555600904,2.464634297,2.352194212,2.217532804,2.083054986,1.948577168,1.81409935,1.660349798,1.446328137,1.352850695,1.271306812,1.189762928 +46,SD,12,OFF-HIGHWAY,PM25,4.08567,4.02635,3.93576,3.83946,3.73991,3.61411,3.46887,3.302809017,3.178396933,3.05398485,2.929572767,2.783723906,2.637875046,2.423646602,2.335457431,2.22655594,2.127566725,1.998137978,1.868709231,1.739280483,1.592998645,1.390352152,1.30043497,1.221440424,1.142445878 +46,SD,12,OFF-HIGHWAY,SO2,2.41514,3.1862,3.26029,3.34719,3.45043,3.54636,3.64206,3.184140831,3.253326592,3.322512353,3.391698114,2.523548814,1.655399513,0.544684544,0.552577233,0.298262735,0.114070075,0.097684606,0.081299138,0.06491367,0.066004019,0.070097803,0.068184717,0.068185558,0.068186399 +46,SD,12,OFF-HIGHWAY,VOC,11.97272,12.72863,12.24979,12.02338,11.89314,11.74439,11.57989,12.64224444,12.49182617,12.3414079,12.19098963,11.97076704,11.75054445,11.08247033,10.67276029,10.37782522,9.889954345,9.349216747,8.808479149,8.267741551,7.348647374,5.893813265,5.510459019,5.290557444,5.07065587 +46,SD,14,MISCELLANEOUS,NOX,1.52897,1.437,0.86481,1.08987,1.2573,7.07584,1.16804,0.003652103,0.12779537,0.251938637,0.376081904,0.285738008,0.195394111,0.105050215,1.757158059,3.409265902,5.061373746,3.421244601,1.781115456,0.140986312,0.172017058,0.203047803,0.234078549,0.234078549,0.234078549 +46,SD,14,MISCELLANEOUS,PM10,315.24299,273.57649,280.47101,281.01475,285.70908,306.730187,284.6226875,237.44411,239.228469,241.012828,242.797187,243.8673588,244.9375305,246.0077023,249.9466853,253.8856684,257.8246514,279.3573449,300.8900384,322.4227319,281.8700119,241.317292,200.7645721,200.7645721,200.7645721 +46,SD,14,MISCELLANEOUS,NH3,116.66577,129.17579,131.09145,136.94432,144.55001,144.34388,81.73635088,102.1666983,102.4708939,102.7750896,103.0792852,112.5299495,121.9806138,131.4312781,130.5179944,129.6047107,128.6914269,105.6727666,82.65410622,59.63544586,67.33423873,75.0330316,82.73182447,82.73182447,82.73182447 +46,SD,14,MISCELLANEOUS,SO2,0.05722,0.05037,0.02968,0.03636,0.34443,1.93985,0.31998,0.003232628,0.103664237,0.204095845,0.304527454,0.207932547,0.11133764,0.014742733,0.749944682,1.485146632,2.220348581,1.498779815,0.777211049,0.055642283,0.073671459,0.091700635,0.109729811,0.109729811,0.109729811 +46,SD,14,MISCELLANEOUS,VOC,6.599,5.86976,3.34455,3.91022,2.76423,15.52746,2.56843,0.05371,4.426522546,8.799335093,13.17214764,8.849768068,4.527388497,0.205008926,2.984505827,5.764002727,8.543499628,6.525641793,4.507783958,2.489926123,3.025771489,3.561616855,4.097462221,4.097462221,4.097462221 +46,SD,14,MISCELLANEOUS,CO,52.60777,49.54924,29.68444,37.18559,58.60042,329.82027,54.44113,0.25365,18.94282058,37.63199116,56.32116173,38.34694515,20.37272857,2.398511986,41.36338269,80.3282534,119.2931241,80.81924249,42.34536087,3.871479257,4.408514619,4.94554998,5.482585342,5.482585342,5.482585342 +46,SD,14,MISCELLANEOUS,PM25,62.26075,54.67008,54.41152,55.28284,56.656764,78.352551,55.5140632,31.46085233,32.97302098,34.48518963,35.99735828,38.46721667,40.93707507,43.40693346,46.74092971,50.07492596,53.40892221,56.19919581,58.98946941,61.77974301,53.58106372,45.38238443,37.18370515,37.18370515,37.18370515 +46,SD,15,WILDFIRES,CO,,,,,,,,4.63502,4.63502,4.63502,7.904598797,7.904598797,7.904598797,18.452667,18.452667,18.452667,214.5663399,214.5663399,214.5663399,23.88211006,23.88211006,23.88211006,196.2779925,196.2779925,196.2779925 +46,SD,15,WILDFIRES,NH3,,,,,,,,0.073641213,0.073641213,0.073641213,0.129031686,0.129031686,0.129031686,0.30110664,0.30110664,0.30110664,3.500460562,3.500460562,3.500460562,0.391716294,0.391716294,0.391716294,3.214658198,3.214658198,3.214658198 +46,SD,15,WILDFIRES,NOX,,,,,,,,0.02819619,0.02819619,0.02819619,0.071653092,0.071653092,0.071653092,0.16170209,0.16170209,0.16170209,1.840067901,1.840067901,1.840067901,0.312975182,0.312975182,0.312975182,2.329616551,2.329616551,2.329616551 +46,SD,15,WILDFIRES,PM10,,,,,,,,0.432689543,0.432689543,0.432689543,0.771794856,0.771794856,0.771794856,1.7967238,1.7967238,1.7967238,20.8562853,20.8562853,20.8562853,2.417990032,2.417990032,2.417990032,19.65587572,19.65587572,19.65587572 +46,SD,15,WILDFIRES,PM25,,,,,,,,0.366618088,0.366618088,0.366618088,0.654063437,0.654063437,0.654063437,1.5226524,1.5226524,1.5226524,17.67481732,17.67481732,17.67481732,2.049143688,2.049143688,2.049143688,16.65751787,16.65751787,16.65751787 +46,SD,15,WILDFIRES,SO2,,,,,,,,0.023460193,0.023460193,0.023460193,0.048332385,0.048332385,0.048332385,0.11112663,0.11112663,0.11112663,1.279874905,1.279874905,1.279874905,0.175531213,0.175531213,0.175531213,1.368440239,1.368440239,1.368440239 +46,SD,15,WILDFIRES,VOC,,,,,,,,1.05946438,1.05946438,1.05946438,1.854830467,1.854830467,1.854830467,4.328416,4.328416,4.328416,50.31914384,50.31914384,50.31914384,5.630929003,5.630929003,5.630929003,46.21072236,46.21072236,46.21072236 +46,SD,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,11.44480714,21.33225908,31.21971103,41.10716297,39.60017193,38.09318089,36.58618985,28.98984654,21.39350322,13.7971599,13.7971599,13.7971599 +46,SD,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.426358537,0.67641621,0.926473884,1.176531557,1.149637218,1.122742878,1.095848539,0.900340173,0.704831808,0.509323442,0.509323442,0.509323442 +46,SD,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,4.318341766,7.788198859,11.25805595,14.72791304,14.22379878,13.71968452,13.21557026,10.54226107,7.868951879,5.195642688,5.195642688,5.195642688 +46,SD,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,5.095642906,9.190073472,13.28450404,17.37893461,16.78407742,16.18922024,15.59436305,12.43986142,9.285359798,6.130858172,6.130858172,6.130858172 +46,SD,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.866735055,1.22355621,1.580377366,1.937198521,1.919989496,1.902780471,1.885571446,1.600185763,1.314800081,1.029414398,1.029414398,1.029414398 +46,SD,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,48.26279669,90.42965805,132.5965194,174.7633808,168.2918124,161.8202441,155.3486757,122.9661921,90.58370837,58.20122468,58.20122468,58.20122468 +46,SD,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.796161183,1.483983093,2.171805003,2.859626913,2.754792884,2.649958855,2.545124826,2.016684234,1.488243643,0.959803051,0.959803051,0.959803051 +47,TN,1,FUEL COMB. ELEC. UTIL.,PM10,32.04379,32.41014,33.23947,8.40447,22.810493,22.703783,19.366461,16.30784437,15.88855916,15.46927396,15.04998876,12.41822116,9.78645356,7.154685959,6.500125746,5.845565534,5.191005322,4.769127671,4.347250021,3.92537237,3.656738251,3.388104132,3.119470012,3.119470012,3.119470012 +47,TN,1,FUEL COMB. ELEC. UTIL.,NOX,240.35931,262.01182,283.46358,234.59039,184.988252,156.369018,155.536212,157.2328248,134.356401,109.781672,104.9097439,104.809955,102.886251,85.95742268,66.3589295,46.75750632,27.15608314,24.47745766,21.79883217,19.12020668,18.09530627,17.07040586,16.04550545,8.893301,8.207804 +47,TN,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00952,0.00946,0.00927,0.00911,0.010412,0.009977,0.4250047,0.418210846,0.411416993,0.404623139,0.338370753,0.272118366,0.205865979,0.217799579,0.229733179,0.241666779,0.210652677,0.179638574,0.148624472,0.132097844,0.115571216,0.099044589,0.099044589,0.099044589 +47,TN,1,FUEL COMB. ELEC. UTIL.,CO,7.17105,6.94411,7.41829,7.17221,6.337533,6.894539,6.722664,7.083929473,6.973550365,6.863171257,6.752792149,6.866094756,6.979397363,7.09269997,6.571446184,6.050192397,5.528938611,5.446887752,5.364836893,5.282786034,5.017642679,4.752499325,4.487355971,4.487355971,4.487355971 +47,TN,1,FUEL COMB. ELEC. UTIL.,PM25,8.29426,17.29816,17.81401,6.8117,21.347794,21.030436,17.574354,13.94474362,13.60296998,13.26119634,12.9194227,10.38389715,7.848371603,5.312846057,4.932398894,4.551951731,4.171504568,3.885185592,3.598866615,3.312547639,3.10022991,2.887912182,2.675594453,2.675594453,2.675594453 +47,TN,1,FUEL COMB. ELEC. UTIL.,SO2,817.6119,539.46468,546.14854,502.0548,431.707358,413.693173,347.738875,333.8300949,339.536445,303.314613,266.2514013,259.606449,237.231244,208.1297951,178.8157541,149.4926431,120.169532,99.59647472,79.02341742,58.45036013,47.07650611,35.7026521,24.32879809,11.697334,11.205608 +47,TN,1,FUEL COMB. ELEC. UTIL.,VOC,0.95904,1.03685,1.10442,1.07897,0.853603,0.91898,0.894511,0.926018648,0.91586302,0.905707392,0.895551764,0.899882818,0.904213872,0.908544926,0.862101968,0.81565901,0.769216053,0.763371193,0.757526332,0.751681472,0.71582843,0.679975388,0.644122345,0.644122345,0.644122345 +47,TN,2,FUEL COMB. INDUSTRIAL,NOX,94.55985,86.94912,85.38208,83.89483,65.849819,64.79572,65.592461,49.96001563,46.60965974,43.25930384,39.90894795,40.37479403,40.84064011,41.30648618,40.58080777,39.85512936,27.98767822,27.18156581,26.37545339,25.56934097,24.45006371,23.33078645,22.21150919,22.21150919,22.21150919 +47,TN,2,FUEL COMB. INDUSTRIAL,VOC,3.83122,4.01006,3.91573,3.90131,2.722893,2.705649,2.750397,1.973166744,1.869267851,1.765368958,1.661470065,1.551091276,1.440712487,1.330333698,1.280195874,1.230058049,1.129275786,1.057408825,0.985541864,0.913674904,1.064404683,1.215134462,1.36586424,1.36586424,1.36586424 +47,TN,2,FUEL COMB. INDUSTRIAL,PM10,6.89851,5.74388,5.56764,5.46615,10.226227,10.114193,10.360937,10.52288632,11.27820428,12.03352225,12.78884021,16.10203178,19.41522335,22.72841492,23.09910044,23.46978596,10.6321027,13.62867816,16.62525362,19.62182908,15.48924255,11.35665601,7.22406948,7.22406948,7.22406948 +47,TN,2,FUEL COMB. INDUSTRIAL,SO2,181.35458,142.82405,138.8648,135.42218,97.692505,94.340628,95.920606,84.96334979,82.80064779,80.63794579,78.47524379,85.06811591,91.66098802,98.25386014,90.79945213,83.34504413,27.77843533,26.43408985,25.08974437,23.7453989,21.01239704,18.27939519,15.54639333,15.54639333,15.54639333 +47,TN,2,FUEL COMB. INDUSTRIAL,CO,20.48281,20.86885,20.43845,20.112,19.912337,19.59257,20.073037,16.3584297,16.46474039,16.57105107,16.67736176,19.71516676,22.75297177,25.79077677,25.18536443,24.57995209,18.91009588,19.36579491,19.82149393,20.27719295,18.86653904,17.45588512,16.04523121,16.04523121,16.04523121 +47,TN,2,FUEL COMB. INDUSTRIAL,PM25,3.05174,2.71815,2.6313,2.60782,8.448868,8.374124,8.515852,4.140313466,5.058784315,5.977255164,6.895726013,8.25121899,9.606711967,10.96220494,11.13806561,11.31392627,9.018046684,9.65260837,10.28717006,10.92173174,9.205824844,7.489917945,5.774011047,5.774011047,5.774011047 +47,TN,2,FUEL COMB. INDUSTRIAL,NH3,0.07579,0.07645,0.07441,0.07351,0.070558,0.070969,0.072904,0.129621274,0.139310458,0.148999641,0.158688824,0.311828401,0.464967978,0.618107554,0.537710598,0.457313641,0.346530029,0.368401638,0.390273246,0.412144854,0.379485456,0.346826057,0.314166659,0.314166659,0.314166659 +47,TN,3,FUEL COMB. OTHER,NOX,33.26848,37.14663,35.84713,33.58753,19.870839,20.271595,20.617845,13.25869386,13.61560844,13.97252302,14.3294376,12.85077111,11.37210461,9.893438118,9.673825031,9.454211944,9.20662348,9.615911273,10.02519907,10.43448686,9.287249953,8.140013048,6.992776144,6.992776144,6.992776144 +47,TN,3,FUEL COMB. OTHER,CO,184.88821,60.4022,60.21929,59.82334,73.673344,78.621581,78.905196,72.16742849,67.77276508,63.37810167,58.98343826,48.26053053,37.5376228,26.81471508,27.02307262,27.23143016,25.94465161,30.68390523,35.42315885,40.16241247,39.12009491,38.07777734,37.03545977,37.03545977,37.03545977 +47,TN,3,FUEL COMB. OTHER,NH3,0.05826,0.07328,0.07203,0.06453,0.068219,0.068959,0.069781,0.019497441,0.127926634,0.236355826,0.344785018,0.516125612,0.687466205,0.858806798,0.841006906,0.823207013,0.787250677,0.868716741,0.950182805,1.031648869,0.976827293,0.922005717,0.86718414,0.86718414,0.86718414 +47,TN,3,FUEL COMB. OTHER,SO2,16.83807,15.44648,15.77651,14.42109,25.122513,25.662917,26.17462,12.59407854,13.83938444,15.08469033,16.32999623,13.47271402,10.61543181,7.758149604,6.987117289,6.216084974,5.441282607,5.161610022,4.881937437,4.602264852,3.143701135,1.685137419,0.226573702,0.226573702,0.226573702 +47,TN,3,FUEL COMB. OTHER,PM10,23.89263,7.64475,7.64844,7.62549,9.89104,10.573214,10.635906,8.176083862,8.095842278,8.015600694,7.93535911,6.620739733,5.306120356,3.99150098,3.896915408,3.802329836,3.470021784,4.186180648,4.902339511,5.618498375,5.360387281,5.102276186,4.844165092,4.844165092,4.844165092 +47,TN,3,FUEL COMB. OTHER,VOC,35.07042,19.91209,19.84985,19.75264,19.218445,20.286531,20.30084,17.95696147,16.05791757,14.15887367,12.25982977,9.828465323,7.397100873,4.965736423,5.09700701,5.228277597,5.168415098,5.666431905,6.164448712,6.662465519,6.236295365,5.810125212,5.383955059,5.383955059,5.383955059 +47,TN,3,FUEL COMB. OTHER,PM25,23.70342,7.48813,7.48676,7.46857,9.318491,9.985894,10.035192,8.018227595,7.938089388,7.857951182,7.777812976,6.386094676,4.994376377,3.602658077,3.541737028,3.48081598,3.182351002,3.88956865,4.596786298,5.304003946,5.135812843,4.96762174,4.799430637,4.799430637,4.799430637 +47,TN,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,77.56143,51.64527,51.85501,52.60916,36.239124,37.174536,38.269533,26.90569841,25.32552216,23.74534591,22.16516965,16.19073654,10.21630342,4.241870296,4.197697759,4.153525222,4.412352685,4.851133065,5.289913445,5.728693825,5.608832335,5.488970845,5.369109355,5.369109355,5.369109355 +47,TN,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,3.919,4.16466,4.30657,4.34088,6.497987,6.647941,6.801148,6.516412735,5.846045245,5.175677755,4.505310265,3.215811633,1.926313002,0.63681437,0.588175541,0.539536711,0.491897882,0.486098492,0.480299102,0.474499712,0.444154648,0.413809584,0.383464521,0.383464521,0.383464521 +47,TN,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,1.22839,1.21305,1.22984,1.23949,2.197981,2.246995,2.300429,2.114533312,2.07626535,2.037997389,1.999729427,1.460785839,0.92184225,0.382898662,0.397303478,0.411708295,0.426113111,0.422133627,0.418154143,0.41417466,0.404066678,0.393958695,0.383850713,0.383850713,0.383850713 +47,TN,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,1.44064,1.42224,1.44349,1.45479,3.247627,3.320666,3.398852,3.510440205,3.365123719,3.219807233,3.074490747,2.244193239,1.413895731,0.583598223,0.640611792,0.69762536,0.754638928,0.731046909,0.70745489,0.683862871,0.649118521,0.614374172,0.579629823,0.579629823,0.579629823 +47,TN,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,2.38552,2.46327,2.48399,2.53593,1.531544,1.569633,1.604151,1.68012648,1.445256303,1.210386127,0.97551595,0.841946633,0.708377317,0.574808,0.609707081,0.644606163,0.810505244,0.741730635,0.672956026,0.604181417,0.578643546,0.553105675,0.527567804,0.527567804,0.527567804 +47,TN,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,1.998021,2.049724,2.089931,1.51759911,1.065163847,0.612728583,0.16029332,0.132472547,0.104651773,0.076831,0.154387167,0.231943333,0.3096245,0.360066467,0.410508433,0.4609504,0.449241266,0.437532133,0.425822999,0.425822999,0.425822999 +47,TN,4,CHEMICAL & ALLIED PRODUCT MFG,CO,55.33342,55.36696,55.78436,56.67636,36.953205,37.805011,38.654747,36.91990397,35.27649242,33.63308088,31.98966933,26.35803516,20.72640098,15.09476681,14.99280553,14.89084425,14.86575137,15.67734053,16.4889297,17.30051887,18.18868554,19.07685222,19.96501889,19.96501889,19.96501889 +47,TN,5,METALS PROCESSING,CO,15.32499,15.3157,16.30712,16.02413,41.84295,42.143577,43.727095,41.4465198,41.37159984,41.29667987,41.22175991,29.13885132,17.05594274,4.973034152,5.02588039,5.078726628,5.066072866,4.772160449,4.478248032,4.184335615,4.268875178,4.35341474,4.437954303,4.437954303,4.437954303 +47,TN,5,METALS PROCESSING,NOX,0.64243,0.64182,0.68705,0.68322,1.446509,1.458044,1.516623,1.18265256,1.16100834,1.13936412,1.1177199,0.99395345,0.870187,0.74642055,0.723099543,0.699778537,0.61051653,0.640628735,0.67074094,0.700853145,0.727214883,0.75357662,0.779938358,0.779938358,0.779938358 +47,TN,5,METALS PROCESSING,PM10,3.65806,3.65971,3.86546,3.7974,12.434761,12.531985,13.005607,7.620963597,6.968150616,6.315337634,5.662524652,4.792919704,3.923314756,3.053709807,2.533247049,2.01278429,1.492204912,1.467281335,1.442357759,1.417434182,1.310391301,1.20334842,1.096305539,1.096305539,1.096305539 +47,TN,5,METALS PROCESSING,PM25,2.23794,2.23858,2.3611,2.31267,11.449221,11.540188,11.975769,6.985785596,6.405289501,5.824793406,5.244297311,4.397759269,3.551221227,2.704683185,2.220160909,1.735638633,1.251100717,1.216648347,1.182195978,1.147743608,1.081196958,1.014650307,0.948103657,0.948103657,0.948103657 +47,TN,5,METALS PROCESSING,VOC,0.92299,0.91917,0.97307,0.9668,7.89653,7.931277,8.224412,6.925711801,6.895846681,6.86598156,6.83611644,5.541550086,4.246983731,2.952417377,2.942707834,2.932998292,2.923288749,2.662531111,2.401773472,2.141015834,1.939400574,1.737785314,1.536170055,1.536170055,1.536170055 +47,TN,5,METALS PROCESSING,SO2,6.19791,6.19791,6.56434,6.48134,8.198899,8.242995,8.533422,5.8179527,5.849255893,5.880559085,5.911862278,5.353776499,4.795690721,4.237604942,3.025376051,1.813147161,0.57220727,0.564933869,0.557660467,0.550387065,0.641318984,0.732250902,0.823182821,0.823182821,0.823182821 +47,TN,5,METALS PROCESSING,NH3,0.00549,0.00549,0.00594,0.00596,0.013379,0.013647,0.014111,0.013653,0.013651667,0.013650333,0.013649,0.0091661,0.0046832,0.0002003,0.000737423,0.001274547,0.00181167,0.001305608,0.000799546,0.000293484,0.000471736,0.000649988,0.00082824,0.00082824,0.00082824 +47,TN,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0.000249733,0.000499467,0.0007492,0.000768027,0.000786855,0.000805682,0.002171331,0.003536981,0.00490263,0.004856011,0.004809391,0.004762772,0.005457708,0.006152644,0.00684758,0.00684758,0.00684758 +47,TN,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.46745,0.46745,0.47297,0.47798,0.84064,0.84419,0.850069,0.331346,0.358631675,0.38591735,0.413203025,0.425747393,0.438291762,0.45083613,0.904495089,1.358154048,1.811813008,1.622368721,1.432924433,1.243480146,1.146019442,1.048558738,0.951098034,0.951098034,0.951098034 +47,TN,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.39705,0.39705,0.38979,0.39067,0.198499,0.199013,0.199849,0.195591469,0.215120109,0.234648748,0.254177388,0.235822473,0.217467557,0.199112642,0.195641026,0.19216941,0.188697794,0.170420039,0.152142283,0.133864527,0.155693275,0.177522023,0.199350771,0.199350771,0.199350771 +47,TN,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.26065,0.26065,0.25627,0.257,0.132348,0.132826,0.133594,0.121508593,0.138149051,0.154789509,0.171429967,0.170037572,0.168645177,0.167252782,0.164823445,0.162394108,0.159964772,0.141318116,0.122671461,0.104024805,0.124468735,0.144912664,0.165356593,0.165356593,0.165356593 +47,TN,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.342,0.342,0.33288,0.33275,0.339999,0.344376,0.351626,0.383121,0.404760503,0.426400006,0.448039509,0.389153826,0.330268143,0.27138246,0.261763844,0.252145228,0.242526613,0.341766249,0.441005885,0.540245521,0.416781037,0.293316553,0.16985207,0.16985207,0.16985207 +47,TN,6,PETROLEUM & RELATED INDUSTRIES,VOC,2.81433,1.84641,1.90399,1.93254,1.84018,1.693328,1.694667,0.4503045,0.473817249,0.497329998,0.520842747,0.484442649,0.448042551,0.411642453,1.339341575,2.267040696,3.559129171,3.824131772,4.089134373,4.354136974,3.956110463,3.558083953,3.160057442,3.160057442,3.160057442 +47,TN,6,PETROLEUM & RELATED INDUSTRIES,CO,0.35383,0.35383,0.35896,0.36294,0.3213,0.322146,0.324124,0.542991199,0.653053817,0.763116436,0.873179054,0.81755078,0.761922507,0.706294233,1.372752486,2.039210739,2.705669102,2.560043997,2.414418891,2.268793785,2.129260678,1.989727571,1.850194463,1.850194463,1.850194463 +47,TN,7,OTHER INDUSTRIAL PROCESSES,PM25,4.5895,6.54714,6.69161,7.2126,12.359232,11.790205,13.69800467,12.52426269,12.33845408,12.15264547,11.96683686,9.919565642,7.872294428,5.825023213,5.884727501,5.94443179,6.034136079,6.498408932,6.962681786,7.426954639,8.473692967,9.520431295,10.56716962,10.56716962,10.56716962 +47,TN,7,OTHER INDUSTRIAL PROCESSES,CO,6.9304,7.03041,7.26763,7.37716,11.363761,11.718264,12.72290832,9.646112471,9.612121341,9.578130212,9.544139083,8.383718339,7.223297595,6.062876851,5.931095341,5.799313832,5.667532322,7.663274902,9.659017483,11.65476006,10.70999636,9.765232654,8.820468949,8.820468949,8.820468949 +47,TN,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.056979,0.05767,0.059193,0.8252175,0.948548113,1.071878727,1.19520934,0.92752859,0.65984784,0.39216709,0.4241669,0.45616671,0.48816652,0.454219589,0.420272659,0.386325728,0.439465779,0.49260583,0.54574588,0.54574588,0.54574588 +47,TN,7,OTHER INDUSTRIAL PROCESSES,PM10,12.80825,22.28831,22.58484,24.99109,29.681897,27.176111,29.33877859,30.31444025,29.94982808,29.5852159,29.22060373,23.90831125,18.59601877,13.28372629,12.65699784,12.03026939,11.52724494,12.22419333,12.92114171,13.61809009,14.46459496,15.31109983,16.1576047,16.1576047,16.1576047 +47,TN,7,OTHER INDUSTRIAL PROCESSES,SO2,8.37068,8.66889,8.87479,8.93108,10.914924,11.229144,11.567753,5.870817979,5.450754245,5.030690511,4.610626778,4.07265334,3.534679903,2.996706465,2.847714401,2.698722337,2.549730273,2.36904558,2.188360888,2.007676196,1.896271788,1.78486738,1.673462972,1.673462972,1.673462972 +47,TN,7,OTHER INDUSTRIAL PROCESSES,VOC,24.33235,24.3886,25.21944,25.58503,24.097028,24.765324,23.69597236,26.98819366,25.18836956,23.38854546,21.58872135,20.14013384,18.69154633,17.24295881,16.71935812,16.19575742,15.67215672,16.69832251,17.7244883,18.75065409,18.74397296,18.73729183,18.7306107,18.7306107,18.7306107 +47,TN,7,OTHER INDUSTRIAL PROCESSES,NOX,8.68441,10.32834,10.91521,11.0954,18.131722,18.672258,19.326276,11.8214149,12.46402592,13.10663694,13.74924796,12.18992481,10.63060166,9.07127851,8.53045993,7.98964135,7.44882277,8.074850952,8.700879134,9.326907316,9.135212039,8.943516763,8.751821487,8.751821487,8.751821487 +47,TN,8,SOLVENT UTILIZATION,SO2,0.003,0.003,0.00321,0.0033,0.228885,0.228974,0.234932,0.057966698,0.051747477,0.045528257,0.039309036,0.034186853,0.029064669,0.023942486,0.021033363,0.01812424,0.015215117,0.014290705,0.013366293,0.012441881,0.008580616,0.004719351,0.000858085,0.000858085,0.000858085 +47,TN,8,SOLVENT UTILIZATION,CO,0.02866,0.02866,0.0287,0.027,0.235753,0.239999,0.245988,0.282345058,0.270283104,0.258221151,0.246159198,1.202918073,2.159676949,3.116435825,2.101542704,1.086649582,0.071756461,0.070445464,0.069134466,0.067823469,0.061579701,0.055335934,0.049092166,0.049092166,0.049092166 +47,TN,8,SOLVENT UTILIZATION,NH3,,,,,0.000436,0.000441,0.000462,0.00069,0.001158516,0.001627031,0.002095547,0.001506798,0.000918049,0.0003293,0.024110788,0.047892277,0.071673765,0.064078677,0.056483588,0.0488885,0.055209667,0.061530833,0.067852,0.067852,0.067852 +47,TN,8,SOLVENT UTILIZATION,NOX,0.08369,0.08256,0.08518,0.08756,0.427555,0.435332,0.44748,5.074477875,4.186213943,3.297950012,2.40968608,2.868248787,3.326811493,3.7853742,2.551479438,1.317584675,0.083689913,0.188832079,0.293974244,0.39911641,0.293578233,0.188040055,0.082501878,0.082501878,0.082501878 +47,TN,8,SOLVENT UTILIZATION,PM10,0.54861,0.59059,0.62552,0.65185,0.945155,0.993308,1.053761,1.481496351,1.351849664,1.222202977,1.092556291,0.829711942,0.566867593,0.304023244,0.311861381,0.319699518,0.327537655,0.336198758,0.344859862,0.353520965,0.306458749,0.259396533,0.212334317,0.212334317,0.212334317 +47,TN,8,SOLVENT UTILIZATION,PM25,0.45848,0.49317,0.52242,0.5445,0.838659,0.880454,0.933944,1.111436128,1.06361641,1.015796692,0.967976974,0.731906913,0.495836853,0.259766792,0.269296772,0.278826752,0.288356732,0.292652559,0.296948385,0.301244212,0.258517151,0.21579009,0.173063029,0.173063029,0.173063029 +47,TN,8,SOLVENT UTILIZATION,VOC,155.86123,176.7289,182.84469,161.65237,143.173851,141.37623,146.279072,95.5831075,98.12685233,100.6705972,103.214342,96.29303509,89.37172819,82.45042129,77.38435406,72.31828683,67.09074757,73.21584277,79.34093796,85.46603316,84.5883918,83.71075045,82.83310909,82.83310909,82.83310909 +47,TN,9,STORAGE & TRANSPORT,CO,0.11,0.11,0.1106,0.11253,0.028155,0.028745,0.02947,0.0216451,0.027608282,0.033571465,0.039534647,0.043564894,0.047595141,0.051625388,0.053202195,0.054779003,0.05635581,0.07114974,0.08594367,0.1007376,0.117693922,0.134650243,0.151606565,0.151606565,0.151606565 +47,TN,9,STORAGE & TRANSPORT,VOC,37.58483,40.4492,41.79809,42.47347,39.750367,39.462215,39.775464,40.37841575,40.52177888,40.665142,40.80850513,33.64411713,26.47972913,19.31534113,24.82830859,30.34127605,29.92139541,25.54019845,21.15900149,16.77780453,17.06268912,17.34757372,17.63245831,17.63245831,17.63245831 +47,TN,9,STORAGE & TRANSPORT,SO2,,,,,0.034342,0.035053,0.035628,0.1338666,0.094068833,0.054271067,0.0144733,0.013264131,0.012054962,0.010845793,0.008822973,0.006800153,0.004777332,0.012577329,0.020377325,0.028177322,0.028985463,0.029793603,0.030601744,0.030601744,0.030601744 +47,TN,9,STORAGE & TRANSPORT,PM25,0.1563,0.1897,0.19708,0.20069,1.255356,0.590723,0.606431,0.582264342,0.556208025,0.530151708,0.50409539,0.420906539,0.337717688,0.254528836,0.249154801,0.243780767,0.238406732,0.252704067,0.267001403,0.281298738,0.289661205,0.298023672,0.306386139,0.306386139,0.306386139 +47,TN,9,STORAGE & TRANSPORT,PM10,0.38058,0.45984,0.47701,0.48572,1.871334,1.182752,1.212254,1.054361801,0.995212098,0.936062395,0.876912693,0.755944026,0.63497536,0.514006694,0.516065935,0.518125177,0.520184419,0.727232032,0.934279645,1.141327258,0.955804165,0.770281071,0.584757978,0.584757978,0.584757978 +47,TN,9,STORAGE & TRANSPORT,NOX,,,,,0.020312,0.020743,0.021232,0.105297,0.08032635,0.055355701,0.030385051,0.027871969,0.025358887,0.022845805,0.027639849,0.032433894,0.037227938,0.074108592,0.110989246,0.1478699,0.189937239,0.232004578,0.274071916,0.274071916,0.274071916 +47,TN,9,STORAGE & TRANSPORT,NH3,,,,,0.000354,0.000362,0.00037,0.0235,0.015807,0.008114,0.000421,0.004120567,0.007820133,0.0115197,0.02664308,0.04176646,0.05688984,0.062642721,0.068395602,0.074148483,0.067783172,0.06141786,0.055052549,0.055052549,0.055052549 +47,TN,10,WASTE DISPOSAL & RECYCLING,NOX,3.26733,3.96509,3.9685,4.07713,4.352049,3.359037,3.380655,3.013863744,2.891609958,2.769356171,2.647102384,2.444724108,2.242345832,2.039967556,1.824025553,1.608083549,1.392141546,1.905284439,2.418427332,2.931570224,2.625336586,2.319102947,2.012869308,2.012869308,2.012869308 +47,TN,10,WASTE DISPOSAL & RECYCLING,VOC,32.15283,25.26964,25.4929,26.09743,26.264849,24.260309,24.565714,14.23961541,13.54216534,12.84471527,12.1472652,9.555124234,6.96298327,4.370842305,3.763502742,3.156163179,2.548823616,4.000050469,5.451277322,6.902504176,6.444086439,5.985668702,5.527250966,5.527250966,5.527250966 +47,TN,10,WASTE DISPOSAL & RECYCLING,SO2,2.70317,0.50534,0.5289,0.5378,0.57988,0.594867,0.606531,0.476313918,0.42580359,0.375293262,0.324782934,0.272645281,0.220507627,0.168369974,0.17029843,0.172226886,0.174155342,0.387445582,0.600735822,0.814026062,0.784920309,0.755814556,0.726708803,0.726708803,0.726708803 +47,TN,10,WASTE DISPOSAL & RECYCLING,PM10,11.62521,15.2725,15.45355,15.8736,15.706647,12.402838,12.419857,10.95070424,11.33701362,11.72332301,12.1096324,10.80096442,9.492296431,8.183628447,7.358944793,6.534261138,5.709577484,7.182230802,8.65488412,10.12753744,9.884230163,9.640922888,9.397615613,9.397615613,9.397615613 +47,TN,10,WASTE DISPOSAL & RECYCLING,NH3,1.97107,3.0746,3.08557,3.1515,3.208077,3.253136,3.317426,0.02839,0.02869,0.02899,0.02929,0.03188439,0.034478781,0.037073171,0.033894854,0.030716538,0.027538221,0.072184301,0.11683038,0.16147646,0.163948666,0.166420871,0.168893077,0.168893077,0.168893077 +47,TN,10,WASTE DISPOSAL & RECYCLING,CO,54.73075,98.37704,96.69952,99.57286,97.839355,62.996325,63.041916,57.14116758,57.12817176,57.11517593,57.10218011,54.23882661,51.37547312,48.51211962,41.3280896,34.14405957,26.95943855,42.99222064,59.02500273,75.05778483,68.38871717,61.71964952,55.05058186,55.05058186,55.05058186 +47,TN,10,WASTE DISPOSAL & RECYCLING,PM25,10.34549,14.57862,14.71726,15.12126,14.972525,11.645861,11.658713,10.35567122,10.63334347,10.91101573,11.18868798,9.746735679,8.304783375,6.862831071,6.179701342,5.496571613,4.813441884,5.952775484,7.092109085,8.231442686,8.291423609,8.351404532,8.411385455,8.411385455,8.411385455 +47,TN,11,HIGHWAY VEHICLES,NH3,3.51028,5.53291,6.28421,6.13191,6.38804,6.55829,6.7985,3.641471521,3.526753528,3.412035535,3.297317542,3.284768736,3.272219931,3.01317733,2.947615321,2.775155775,3.018706473,2.924613265,2.830520056,2.736426847,2.731077652,2.621512617,2.716402707,2.367676782,2.294631289 +47,TN,11,HIGHWAY VEHICLES,VOC,220.63883,145.79711,142.65259,142.1558,138.62923,133.57038,129.22272,108.5850707,102.8726998,97.16032897,91.44795812,93.30127348,95.15458883,77.68347884,71.81018278,72.26501198,81.61124375,77.43231963,73.2533955,69.07447137,66.85019046,53.64887297,52.53038658,46.67542261,43.04702179 +47,TN,11,HIGHWAY VEHICLES,SO2,11.96437,7.22,7.50111,7.65096,7.87569,7.22363,7.45673,9.567372504,8.261403421,6.955434339,5.649465257,3.303977412,0.958489568,0.877690687,0.777459136,0.826634103,0.769021808,0.749712771,0.730403733,0.711094696,0.721437985,0.718290383,0.678343351,0.327015233,0.268517503 +47,TN,11,HIGHWAY VEHICLES,PM25,7.77185,5.59101,5.3493,5.00589,4.70461,4.35953,4.11883,9.716635178,9.429743874,9.142852569,8.855961265,8.286661544,7.717361824,6.724292025,5.210345936,4.442636403,5.862927834,5.353722238,4.844516642,4.335311047,3.981572824,2.91113839,2.903286991,3.004458871,2.816875802 +47,TN,11,HIGHWAY VEHICLES,NOX,222.37156,211.52373,216.01418,214.93959,211.1334,208.63002,199.66985,326.9168277,303.662776,280.4087243,257.1546726,241.2670966,225.3795206,200.904505,156.5378673,138.7374649,182.7460381,171.0431957,159.3403532,147.6375107,138.8903959,106.0690744,103.4069432,93.34420829,84.72516101 +47,TN,11,HIGHWAY VEHICLES,CO,2568.0919,1908.67469,1856.39575,1809.09063,1697.77831,1695.25165,1654.7138,1465.51788,1410.260456,1355.003032,1299.745609,1158.707848,1017.670088,866.1253929,703.1111204,715.6907941,739.6663643,731.7545105,723.8426567,715.9308029,702.2693595,584.3948166,583.334849,524.7551034,495.0454637 +47,TN,11,HIGHWAY VEHICLES,PM10,9.23437,6.97055,6.76354,6.39455,6.09739,5.73563,5.49724,11.49768462,11.21240102,10.92711743,10.64183383,10.19046349,9.739093139,8.676544993,6.96531953,6.18890996,10.53204222,9.624228762,8.716415307,7.808601852,7.600353582,5.956295623,6.286104776,6.618434033,6.40128188 +47,TN,12,OFF-HIGHWAY,PM25,5.78018,6.08602,5.9875,5.8964,5.83017,5.75918,5.67743,5.462606516,5.399176469,5.335746422,5.272316375,4.981930055,4.691543736,4.096172322,4.327517508,4.235883647,4.010314319,3.753112019,3.495909719,3.238707418,2.925013598,2.43594888,2.297625958,2.200958503,2.104291049 +47,TN,12,OFF-HIGHWAY,SO2,9.16707,10.06125,10.17131,10.31166,10.28559,10.61834,10.62398,6.222545369,6.284396591,6.346247813,6.408099035,4.806577079,3.205055122,1.294381701,2.00695697,1.689685856,0.766680114,0.687471797,0.60826348,0.529055163,0.617906304,0.776035742,0.795608587,0.814738857,0.833869126 +47,TN,12,OFF-HIGHWAY,CO,394.76532,446.25447,434.95959,434.98405,439.49018,443.59649,452.30468,473.906101,465.3412488,456.7763966,448.2115444,425.5385698,402.8655951,371.1427967,328.7755981,315.4135754,309.0620102,297.4891216,285.9162329,274.3433442,261.5919493,236.8688412,236.0891595,236.8132272,237.5372948 +47,TN,12,OFF-HIGHWAY,PM10,6.31244,6.64218,6.53328,6.42949,6.37096,6.28691,6.19904,5.770694247,5.711746162,5.652798076,5.593849991,5.297490238,5.001130484,4.418457307,4.684938523,4.589350068,4.241745106,3.973593491,3.705441877,3.437290262,3.098894221,2.566118189,2.42210214,2.322015813,2.221929487 +47,TN,12,OFF-HIGHWAY,NOX,83.9307,92.47691,92.01156,91.04548,90.03213,91.28647,91.49856,85.71215633,84.97251626,84.23287619,83.49323612,73.01449531,62.5357545,61.72023734,62.84549813,61.46267376,60.38364552,56.05846411,51.7332827,47.40810129,44.02308625,38.72696017,37.25305615,36.13041544,35.00777472 +47,TN,12,OFF-HIGHWAY,NH3,0.57721,0.67076,0.67156,0.69259,0.05716,0.05716,0.05716,0.047072954,0.047710612,0.04834827,0.048985928,0.049131239,0.049276551,0.048112756,0.050666669,0.051372031,0.052750462,0.052202849,0.051655236,0.051107623,0.048394745,0.040422678,0.042968991,0.043312897,0.043656803 +47,TN,12,OFF-HIGHWAY,VOC,48.80972,54.23816,51.26988,50.08376,49.91988,49.7145,49.44666,62.17515159,61.20285539,60.23055919,59.258263,57.73812935,56.21799571,52.55849863,50.28300324,49.26427145,46.29230153,42.94217854,39.59205554,36.24193255,32.42324496,26.35878139,24.78586979,24.08474454,23.38361928 +47,TN,14,MISCELLANEOUS,CO,29.08359,31.35401,40.67427,73.78602,25.01743,76.19979,72.4969,0.76158,43.51009436,86.25860872,129.0071231,87.72328528,46.43944748,5.155609684,6.392027928,7.628446172,8.864864416,6.7663409,4.667817385,2.56929387,2.375757344,2.182220818,1.988684292,1.988684292,1.988684292 +47,TN,14,MISCELLANEOUS,VOC,4.38031,6.59242,6.519,10.35907,6.918169,5.473766,5.299616,1.78902,11.94431841,22.09961681,32.25491522,22.28466489,12.31441456,2.344164233,2.059267456,1.774370679,1.489473902,1.467492926,1.44551195,1.423530974,1.499740397,1.575949819,1.652159242,1.652159242,1.652159242 +47,TN,14,MISCELLANEOUS,SO2,0.14999,0.02525,0.02714,0.05825,0.14508,0.44614,0.4243,0.000718105,0.398090827,0.795463548,1.19283627,0.805512924,0.418189578,0.030866232,0.083415032,0.135963832,0.188512632,0.136445299,0.084377967,0.032310634,0.035869423,0.039428211,0.042987,0.042987,0.042987 +47,TN,14,MISCELLANEOUS,PM25,57.94908,46.62352,49.30575,51.55891,50.980358,53.347796,43.5393942,19.30994978,23.18044642,27.05094306,30.92143971,29.00705225,27.09266479,25.17827734,24.94959577,24.7209142,24.49223263,27.6618376,30.83144258,34.00104755,30.22837904,26.45571054,22.68304203,22.68304203,22.68304203 +47,TN,14,MISCELLANEOUS,PM10,288.95121,219.53425,225.6802,221.12102,239.904821,237.9054,220.668918,187.0788073,191.643883,196.2089588,200.7740345,185.3577151,169.9413957,154.5250762,145.6432634,136.7614505,127.8796376,158.0492032,188.2187688,218.3883344,186.834975,155.2816156,123.7282562,123.7282562,123.7282562 +47,TN,14,MISCELLANEOUS,NH3,75.21379,75.01539,73.0327,73.69246,73.98554,74.10466,39.05484977,34.28260927,34.98907438,35.6955395,36.40200461,35.56100897,34.72001333,33.87901769,34.21386756,34.54871743,34.8835673,31.16251974,27.44147218,23.72042463,25.23481863,26.74921263,28.26360663,28.26360663,28.26360663 +47,TN,14,MISCELLANEOUS,NOX,0.99816,0.74071,0.84889,1.71014,0.53743,1.63549,1.55595,0.00843,0.841126139,1.673822277,2.506518416,1.747135375,0.987752335,0.228369295,0.288932306,0.349495317,0.410058329,0.309176612,0.208294896,0.107413179,0.101874123,0.096335068,0.090796012,0.090796012,0.090796012 +47,TN,15,WILDFIRES,NH3,,,,,,,,0.012640496,0.012640496,0.012640496,0.089532874,0.089532874,0.089532874,0.227790449,0.227790449,0.227790449,0.481318641,0.481318641,0.481318641,1.024652105,1.024652105,1.024652105,0.066178326,0.066178326,0.066178326 +47,TN,15,WILDFIRES,PM25,,,,,,,,0.06852963,0.06852963,0.06852963,0.512239903,0.512239903,0.512239903,1.228233848,1.228233848,1.228233848,2.654256583,2.654256583,2.654256583,5.59167913,5.59167913,5.59167913,0.365481443,0.365481443,0.365481443 +47,TN,15,WILDFIRES,VOC,,,,,,,,0.196254011,0.196254011,0.196254011,1.287035058,1.287035058,1.287035058,3.274489447,3.274489447,3.274489447,6.918965145,6.918965145,6.918965145,14.72937568,14.72937568,14.72937568,0.951312634,0.951312634,0.951312634 +47,TN,15,WILDFIRES,SO2,,,,,,,,0.00477568,0.00477568,0.00477568,0.060014778,0.060014778,0.060014778,0.118678616,0.118678616,0.118678616,0.277520901,0.277520901,0.277520901,0.564136227,0.564136227,0.564136227,0.038401743,0.038401743,0.038401743 +47,TN,15,WILDFIRES,CO,,,,,,,,0.869176891,0.869176891,0.869176891,5.379319147,5.379319147,5.379319147,13.8216984,13.8216984,13.8216984,29.09848646,29.09848646,29.09848646,62.05229066,62.05229066,62.05229066,3.99987699,3.99987699,3.99987699 +47,TN,15,WILDFIRES,NOX,,,,,,,,0.00778546,0.00778546,0.00778546,0.13746187,0.13746187,0.13746187,0.237023441,0.237023441,0.237023441,0.589487567,0.589487567,0.589487567,1.166570213,1.166570213,1.166570213,0.081860293,0.081860293,0.081860293 +47,TN,15,WILDFIRES,PM10,,,,,,,,0.080541362,0.080541362,0.080541362,0.604443086,0.604443086,0.604443086,1.449315292,1.449315292,1.449315292,3.132021802,3.132021802,3.132021802,6.598183696,6.598183696,6.598183696,0.431268094,0.431268094,0.431268094 +47,TN,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,1.92338547,1.807239961,1.691094453,1.574948944,1.715632909,1.856316873,1.997000838,2.240979728,2.484958618,2.728937508,2.728937508,2.728937508 +47,TN,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,27.64862487,25.97904838,24.30947189,22.6398954,24.66222817,26.68456094,28.70689371,32.21408805,35.72128239,39.22847673,39.22847673,39.22847673 +47,TN,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,1.091431223,1.021364159,0.951297094,0.88123003,0.967021068,1.052812106,1.138603144,1.293482213,1.448361281,1.60324035,1.60324035,1.60324035 +47,TN,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,10.56782675,9.920509311,9.273191871,8.625874432,9.4119917,10.19810897,10.98422624,12.36098319,13.73774015,15.11449711,15.11449711,15.11449711 +47,TN,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,12.47004364,11.70620595,10.94236826,10.17853057,11.10615162,12.03377267,12.96139372,14.58596474,16.21053577,17.83510679,17.83510679,17.83510679 +47,TN,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,2.297424953,2.14490882,1.992392688,1.839876555,2.027668213,2.215459872,2.40325153,2.749126917,3.095002304,3.440877691,3.440877691,3.440877691 +47,TN,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,116.3493701,109.3401431,102.3309162,95.32168918,103.8081928,112.2946965,120.7812001,135.4744876,150.1677751,164.8610625,164.8610625,164.8610625 +48,TX,1,FUEL COMB. ELEC. UTIL.,NH3,,1.64493,1.64395,1.93613,1.799358,1.909136,1.510888,5.4070683,4.555249233,3.703430165,2.851611098,3.138384095,3.425157092,3.711930088,3.668336954,3.62474382,3.581150686,3.54242662,3.503702553,3.464978487,3.086111641,2.707244796,2.32837795,2.32837795,2.32837795 +48,TX,1,FUEL COMB. ELEC. UTIL.,NOX,479.76109,425.10229,430.94799,457.06144,429.82957,403.740316,331.255827,265.6217937,211.432078,184.141142,173.6672677,169.307913,159.927442,153.6949155,150.1271217,146.5590354,142.8895719,135.1329271,127.3762824,119.6196376,115.3956254,111.1716132,106.947601,104.932009,92.82919 +48,TX,1,FUEL COMB. ELEC. UTIL.,VOC,4.89906,7.34668,7.4471,7.93483,6.15454,8.076309,7.025704,4.726755003,4.461755982,4.196756961,3.93175794,3.913647893,3.895537847,3.8774278,3.8260175,3.7746072,3.6875459,3.551869383,3.416192866,3.280516349,3.12264555,2.96477475,2.806903951,2.806903951,2.806903951 +48,TX,1,FUEL COMB. ELEC. UTIL.,SO2,463.16649,666.42127,677.7611,677.88671,680.387675,555.585469,539.535491,560.0548235,577.699945,524.370589,533.5845779,520.01713,498.462745,480.7274561,463.0025461,445.2775455,427.5492809,399.6155522,371.6818236,343.7480949,321.2314691,298.7148432,276.1982174,211.025481,149.135119 +48,TX,1,FUEL COMB. ELEC. UTIL.,PM25,24.4157,16.05126,16.83832,13.05797,30.454577,27.638929,30.009887,24.02715112,24.33269037,24.63822963,24.94376888,20.34328412,15.74279937,11.14231461,11.6040237,12.06573279,12.52021302,12.79631565,13.07241829,13.34852092,13.23347618,13.11843143,13.00338669,13.00338669,13.00338669 +48,TX,1,FUEL COMB. ELEC. UTIL.,PM10,43.2037,22.20149,23.04869,17.98472,39.605721,34.685929,38.905003,33.36682884,33.74836586,34.12990288,34.5114399,29.97966848,25.44789706,20.91612564,20.46336803,20.01061041,19.5506199,19.21087803,18.87113617,18.5313943,18.02693486,17.52247542,17.01801598,17.01801598,17.01801598 +48,TX,1,FUEL COMB. ELEC. UTIL.,CO,53.35237,84.37855,83.4443,73.90874,76.46663,76.461713,67.172851,214.0873389,217.1780515,220.268764,223.3594765,222.6740535,221.9886305,221.3032075,204.3667865,187.4303655,170.3772768,169.613677,168.8500773,168.0864775,169.5330871,170.9796966,172.4263062,172.4263062,172.4263062 +48,TX,2,FUEL COMB. INDUSTRIAL,SO2,173.46289,151.78135,151.03026,146.26191,173.10166,173.434314,178.265085,249.0192025,241.7453656,234.4715287,227.1976918,166.2844364,105.3711809,44.45792545,41.38229852,38.3066716,35.23547638,32.65399343,30.07251049,27.49102754,28.53428595,29.57754437,30.62080278,30.62080278,30.62080278 +48,TX,2,FUEL COMB. INDUSTRIAL,VOC,23.2047,21.40959,21.08705,20.75043,21.866875,22.195693,22.065522,20.31948756,19.79027666,19.26106575,18.73185484,18.86036041,18.98886599,19.11737156,18.52471338,17.93205519,17.45009581,17.52770547,17.60531512,17.68292477,17.22576376,16.76860274,16.31144173,16.31144173,16.31144173 +48,TX,2,FUEL COMB. INDUSTRIAL,PM25,11.20946,10.96334,10.82194,10.67136,13.084885,13.244559,13.215003,14.9621231,15.59049775,16.21887239,16.84724704,14.61770628,12.38816552,10.15862477,10.14528497,10.13194517,10.12487269,10.17051552,10.21615835,10.26180118,10.07560915,9.889417109,9.703225072,9.703225072,9.703225072 +48,TX,2,FUEL COMB. INDUSTRIAL,NOX,381.50898,387.97423,378.88587,370.38555,355.59061,358.557699,358.560554,300.2198071,283.7045168,267.1892265,250.6739361,223.7248062,196.7756763,169.8265464,161.8376968,153.8488471,145.9960577,144.6666301,143.3372025,142.0077749,138.2628612,134.5179476,130.773034,130.773034,130.773034 +48,TX,2,FUEL COMB. INDUSTRIAL,CO,86.58186,142.42456,138.85986,136.48592,150.885939,152.939038,153.321045,146.7347611,141.6926193,136.6504776,131.6083358,124.7452177,117.8820996,111.0189814,106.1531879,101.2873944,96.77454721,94.40972148,92.04489574,89.68007,84.69386439,79.70765879,74.72145318,74.72145318,74.72145318 +48,TX,2,FUEL COMB. INDUSTRIAL,NH3,3.49437,2.76909,2.6822,2.62221,0.345853,0.368693,0.386856,1.002093062,1.169219549,1.336346035,1.503472522,1.531895683,1.560318844,1.588742006,1.617819959,1.646897913,1.673390866,1.710204178,1.747017491,1.783830803,1.656788356,1.52974591,1.402703463,1.402703463,1.402703463 +48,TX,2,FUEL COMB. INDUSTRIAL,PM10,12.23763,12.12491,11.94477,11.77539,14.056843,14.228475,14.260546,39.18793815,39.64102008,40.09410202,40.54718395,30.61045711,20.67373028,10.73700345,10.75695982,10.77691618,10.80327205,10.75324675,10.70322144,10.65319614,10.56910771,10.48501928,10.40093085,10.40093085,10.40093085 +48,TX,3,FUEL COMB. OTHER,NH3,0.23558,0.20148,0.1986,0.17831,0.039336,0.040451,0.041471,0.10964116,0.118908178,0.128175196,0.137442214,0.825887475,1.514332736,2.202777997,2.359000562,2.515223128,2.598217497,2.546300952,2.494384407,2.442467861,2.395834451,2.34920104,2.302567629,2.302567629,2.302567629 +48,TX,3,FUEL COMB. OTHER,CO,83.01402,68.42354,68.44302,67.89924,85.116646,80.547531,81.027912,84.61935785,84.31034654,84.00133523,83.69232391,75.85948046,68.02663701,60.19379355,58.86438498,57.53497641,49.84471512,49.17159749,48.49847985,47.82536222,43.01470802,38.20405382,33.39339963,33.39339963,33.39339963 +48,TX,3,FUEL COMB. OTHER,PM10,11.9582,9.77682,9.75219,9.64384,12.481151,12.78146,12.904293,9.610590263,9.630142496,9.649694729,9.669246962,9.151963548,8.634680134,8.11739672,7.774765004,7.432133288,6.075343267,6.048624052,6.021904838,5.995185623,5.283853417,4.572521211,3.861189005,3.861189005,3.861189005 +48,TX,3,FUEL COMB. OTHER,VOC,16.11796,25.08597,25.07305,24.99008,30.97165,26.461115,26.498472,24.40496695,21.75479719,19.10462744,16.45445768,14.1262718,11.79808592,9.469900033,9.213890282,8.95788053,7.879282674,7.649288632,7.41929459,7.189300547,6.426271714,5.663242881,4.900214048,4.900214048,4.900214048 +48,TX,3,FUEL COMB. OTHER,SO2,7.43113,2.68669,2.74412,2.55467,5.047022,4.172072,4.543594,3.209936472,3.223834585,3.237732698,3.251630811,2.277456395,1.303281979,0.329107563,0.364453979,0.399800396,0.418339241,0.390478894,0.362618546,0.334758199,0.378373449,0.421988699,0.46560395,0.46560395,0.46560395 +48,TX,3,FUEL COMB. OTHER,PM25,11.68036,9.30446,9.29886,9.22413,12.358622,12.672004,12.788974,9.318800673,9.336014053,9.353227433,9.370440813,8.886974384,8.403507955,7.920041526,7.622850203,7.325658879,6.014689841,5.979035407,5.943380972,5.907726537,5.202009857,4.496293176,3.790576496,3.790576496,3.790576496 +48,TX,3,FUEL COMB. OTHER,NOX,42.38459,39.97452,39.69942,37.40055,33.554866,32.664969,33.406752,27.22596055,27.05255914,26.87915774,26.70575633,25.63385767,24.56195901,23.49006035,23.5057788,23.52149725,23.42225759,22.99587497,22.56949236,22.14310974,22.02861128,21.91411282,21.79961436,21.79961436,21.79961436 +48,TX,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,63.76712,46.64718,46.1418,46.32803,34.70959,34.009426,35.179148,26.77408055,25.4809696,24.18785865,22.8947477,21.69541003,20.49607237,19.2967347,18.75015787,18.20358103,17.6671633,17.4733037,17.2794441,17.0855845,16.7299352,16.3742859,16.0186366,16.0186366,16.0186366 +48,TX,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,36.91348,33.60501,33.95987,34.00955,32.76698,33.740381,34.800286,29.16584248,29.47800742,29.79017236,30.1023373,28.69512893,27.28792057,25.8807122,23.32847073,20.77622927,18.2239873,17.28335747,16.34272763,15.4020978,15.2915936,15.1810894,15.0705852,15.0705852,15.0705852 +48,TX,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,10.98844,1.54942,1.56794,1.5824,1.270139,1.312383,1.359614,1.21313243,1.460272853,1.707413277,1.9545537,1.844146928,1.733740157,1.623333386,1.563791886,1.504250387,1.444708887,1.334706928,1.224704969,1.11470301,1.235955275,1.357207539,1.478459804,1.478459804,1.478459804 +48,TX,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0.192299933,0.384599867,0.5768998,0.533763867,0.490627933,0.447492,0.448955517,0.450419033,0.45213255,0.408365667,0.364598783,0.3208319,0.391299722,0.461767543,0.532235365,0.532235365,0.532235365 +48,TX,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,17.21324,2.29386,2.32198,2.34501,1.58484,1.637421,1.696667,1.9335554,2.1617161,2.3898768,2.6180375,2.401953467,2.185869433,1.9697854,1.886626133,1.803466867,1.7203076,1.598360233,1.476412867,1.3544655,1.524428067,1.694390633,1.8643532,1.8643532,1.8643532 +48,TX,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,15.2518,12.65175,12.73925,12.83866,8.03381,8.268488,8.544747,7.779657903,7.214248602,6.648839301,6.08343,5.759447967,5.435465933,5.1114839,5.137473467,5.163463033,5.2002124,5.2008044,5.2013964,5.2019884,5.511278,5.8205676,6.1298572,6.1298572,6.1298572 +48,TX,4,CHEMICAL & ALLIED PRODUCT MFG,CO,149.20822,89.03408,90.82651,91.6722,27.84559,28.700825,29.735427,34.33320443,28.04153612,21.74986781,15.4581995,13.9942149,12.5302303,11.0662457,11.42610077,11.78595583,11.9331126,11.1697648,10.406417,9.6430692,10.72469593,11.80632267,12.8879494,12.8879494,12.8879494 +48,TX,5,METALS PROCESSING,VOC,1.0386,2.57771,2.66437,2.61432,2.85449,2.955574,3.150901,2.687994414,2.666936976,2.645879538,2.6248221,2.322901867,2.020981633,1.7190614,1.581248207,1.443435013,1.30562182,1.184609647,1.063597473,0.9425853,0.839978933,0.737372567,0.6347662,0.6347662,0.6347662 +48,TX,5,METALS PROCESSING,PM25,3.98026,1.70719,1.76702,1.73876,2.526948,2.612831,2.781578,1.702033611,1.777494931,1.85295625,1.92841757,1.85143197,1.774446371,1.697460772,1.50520818,1.312955588,1.120702997,1.030339152,0.939975308,0.849611464,0.773484777,0.69735809,0.621231402,0.621231402,0.621231402 +48,TX,5,METALS PROCESSING,NH3,,,,,,,,,0.009915367,0.019830733,0.0297461,0.026034667,0.022323233,0.0186118,0.019073067,0.019534333,0.0199956,0.0150875,0.0101794,0.0052713,0.005053367,0.004835433,0.0046175,0.0046175,0.0046175 +48,TX,5,METALS PROCESSING,SO2,145.53374,11.37818,11.947,11.85149,5.64904,5.874425,6.289601,4.331709705,5.10552237,5.879335035,6.6531477,5.598639033,4.544130367,3.4896217,2.7920261,2.0944305,1.3968349,1.1537589,0.9106829,0.6676069,0.662311,0.6570151,0.6517192,0.6517192,0.6517192 +48,TX,5,METALS PROCESSING,CO,16.08445,29.39893,30.50998,29.9918,26.66309,27.692087,29.589432,38.44779994,37.47415803,36.50051612,35.5268742,31.8416651,28.156456,24.4712469,19.6446022,14.8179575,9.9913128,8.9920668,7.9928208,6.9935748,8.035480067,9.077385333,10.1192906,10.1192906,10.1192906 +48,TX,5,METALS PROCESSING,PM10,8.15675,2.96923,3.06524,3.02286,3.30946,3.421963,3.639009,3.472365892,3.284049962,3.095734031,2.9074181,2.732965667,2.558513233,2.3840608,2.144757413,1.905454027,1.66615064,1.583323193,1.500495747,1.4176683,1.2636456,1.1096229,0.9556002,0.9556002,0.9556002 +48,TX,5,METALS PROCESSING,NOX,2.67293,2.76818,2.88339,2.87012,2.57169,2.663421,2.830667,2.288515612,2.185830541,2.083145471,1.9804604,1.9303086,1.8801568,1.830005,1.7666613,1.7033176,1.6399739,1.577730567,1.515487233,1.4532439,1.399396367,1.345548833,1.2917013,1.2917013,1.2917013 +48,TX,6,PETROLEUM & RELATED INDUSTRIES,SO2,108.36033,77.92507,79.41899,78.82491,59.5894,60.48053,61.549623,43.23153328,41.14740419,39.06327509,36.979146,33.20282186,29.42649771,25.65017357,26.62944533,27.60871709,28.5989986,33.86598468,39.13297076,44.39995684,43.66907566,42.93819448,42.2073133,42.2073133,42.2073133 +48,TX,6,PETROLEUM & RELATED INDUSTRIES,VOC,183.33063,201.90164,203.52185,200.75888,189.782346,185.857427,193.501624,339.9826182,336.6328072,333.2829961,329.9331851,668.7198742,1007.506563,1346.293252,1221.829008,1097.364764,1014.31093,1044.208407,1074.105885,1104.003362,1039.987727,975.9720916,911.9564563,911.9564563,911.9564563 +48,TX,6,PETROLEUM & RELATED INDUSTRIES,PM25,2.97062,1.53875,1.5938,1.58383,5.086732,5.199201,5.32624,2.627293025,2.956848094,3.286403162,3.615958231,4.835604168,6.055250105,7.274896042,6.802766372,6.330636702,5.726335529,6.089312793,6.452290057,6.815267321,6.288474676,5.76168203,5.234889385,5.234889385,5.234889385 +48,TX,6,PETROLEUM & RELATED INDUSTRIES,PM10,5.07575,2.65363,2.74643,2.72896,6.04037,6.159642,6.292895,3.520708208,3.804618605,4.088529003,4.3724394,5.539775948,6.707112496,7.874449044,7.415288595,6.956128145,6.36082066,6.63653537,6.91225008,7.18796479,7.209977927,7.231991063,7.2540042,7.2540042,7.2540042 +48,TX,6,PETROLEUM & RELATED INDUSTRIES,NOX,60.54785,37.76245,38.30412,37.91558,32.09563,32.967797,33.950924,225.0750935,225.1666754,225.2582573,225.3498392,249.6642233,273.9786074,298.2929914,263.9826429,229.6722944,202.034552,221.6052798,241.1760077,260.7467355,250.3649872,239.983239,229.6014908,229.6014908,229.6014908 +48,TX,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0.114775633,0.229551267,0.3443269,0.2883227,0.2323185,0.1763143,0.1967572,0.2172001,0.237643,0.2531671,0.2686912,0.2842153,0.2558113,0.2274073,0.1990033,0.1990033,0.1990033 +48,TX,6,PETROLEUM & RELATED INDUSTRIES,CO,19.75662,22.29497,22.77985,22.61391,19.46715,19.886953,20.357935,236.6517513,236.942828,237.2339047,237.5249814,203.3570629,169.1891443,135.0212258,135.8010684,136.5809109,136.6422455,150.3369712,164.031697,177.7264227,177.4853061,177.2441895,177.0030729,177.0030729,177.0030729 +48,TX,7,OTHER INDUSTRIAL PROCESSES,VOC,16.05296,26.5274,27.37868,27.72409,26.23475,27.630778,26.41270366,24.94120825,24.90117897,24.86114968,24.8211204,22.66939621,20.51767201,18.36594782,17.44753199,16.52911616,15.61070033,15.46718875,15.32367716,15.18016557,14.69669055,14.21321552,13.7297405,13.7297405,13.7297405 +48,TX,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.00075,0.000833,0.000213,2.287687555,2.117335422,1.94698329,1.776631157,1.451812338,1.126993519,0.8021747,0.8956671,0.9891595,1.0827769,0.980776187,0.878775473,0.77677476,0.815222114,0.853669468,0.892116822,0.892116822,0.892116822 +48,TX,7,OTHER INDUSTRIAL PROCESSES,NOX,34.69887,39.18604,40.5992,40.65846,41.81261,44.336826,47.352934,43.05161978,44.363339,45.67505823,46.98677746,44.23678787,41.48679829,38.7368087,35.5665446,32.3962805,29.2260141,29.2535739,29.28113371,29.30869351,27.82011181,26.3315301,24.8429484,24.8429484,24.8429484 +48,TX,7,OTHER INDUSTRIAL PROCESSES,PM10,79.59384,48.56557,56.04945,58.1118,85.153333,89.622686,97.35481849,104.0396509,105.020808,106.001965,106.9831221,92.77734037,78.57155865,64.36577692,56.2258862,48.08599548,39.98733937,44.05931502,48.13129067,52.20326633,52.47825152,52.75323671,53.0282219,53.0282219,53.0282219 +48,TX,7,OTHER INDUSTRIAL PROCESSES,PM25,25.27415,14.33714,15.86798,16.47297,22.792475,24.081146,31.04143735,34.32637703,35.51442859,36.70248014,37.89053169,33.19972595,28.5089202,23.81811446,22.43262732,21.04714018,19.67165305,19.67230577,19.6729585,19.67361123,19.61302537,19.55243951,19.49185364,19.49185364,19.49185364 +48,TX,7,OTHER INDUSTRIAL PROCESSES,SO2,27.12285,24.10214,24.9527,24.87714,24.5108,25.9705,27.790898,24.49411492,25.4414437,26.38877247,27.33610125,25.6136312,23.89116115,22.1686911,21.0127056,19.8567201,18.7007346,17.67525453,16.64977447,15.6242944,14.8036558,13.9830172,13.1623786,13.1623786,13.1623786 +48,TX,7,OTHER INDUSTRIAL PROCESSES,CO,14.14758,29.99799,30.99031,30.95036,29.63582,31.270017,36.00458767,29.21377913,29.20690169,29.20002426,29.19314683,28.18054684,27.16794684,26.15534685,24.45809437,22.76084188,21.0635864,27.74614243,34.42869847,41.1112545,40.54949797,39.98774143,39.4259849,39.4259849,39.4259849 +48,TX,8,SOLVENT UTILIZATION,PM10,0.34044,0.12861,0.13159,0.13457,0.30897,0.326128,0.34501,0.1535563,0.195448667,0.237341033,0.2792334,0.2467038,0.2141742,0.1816446,0.174064567,0.166484533,0.1589045,0.1515618,0.1442191,0.1368764,0.1367239,0.1365714,0.1364189,0.1364189,0.1364189 +48,TX,8,SOLVENT UTILIZATION,SO2,0.00741,0.00082,0.00082,0.00085,0.00371,0.003938,0.004197,0.0069508,0.005154967,0.003359133,0.0015633,0.001707833,0.001852367,0.0019969,0.002104567,0.002212233,0.0023199,0.0022567,0.0021935,0.0021303,0.0017427,0.0013551,0.0009675,0.0009675,0.0009675 +48,TX,8,SOLVENT UTILIZATION,PM25,0.31193,0.10921,0.11166,0.11413,0.30897,0.326128,0.34501,0.116604426,0.151320941,0.186037457,0.220753972,0.200938581,0.181123191,0.1613078,0.14844024,0.135572681,0.122705121,0.119040121,0.115375121,0.111710121,0.111670843,0.111631565,0.111592286,0.111592286,0.111592286 +48,TX,8,SOLVENT UTILIZATION,VOC,325.54041,321.54232,327.63522,306.85618,277.042129,274.082801,283.96111,210.316137,210.5274616,210.7387861,210.9501106,231.9304285,252.9107464,273.8910643,257.7720202,241.652976,225.5339319,231.1154685,236.6970052,242.2785418,232.2053471,222.1321524,212.0589577,212.0589577,212.0589577 +48,TX,8,SOLVENT UTILIZATION,CO,0.05398,0.01968,0.02012,0.02037,0.04195,0.044131,0.046598,0.078679001,0.100283767,0.121888534,0.1434933,0.1423234,0.1411535,0.1399836,0.128755,0.1175264,0.1062978,0.1147412,0.1231846,0.131628,0.1490246,0.1664212,0.1838178,0.1838178,0.1838178 +48,TX,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0.0108036,0.0216072,0.0324108,0.0297777,0.0271446,0.0245115,0.024245733,0.023979967,0.0237142,0.021058267,0.018402333,0.0157464,0.015844167,0.015941933,0.0160397,0.0160397,0.0160397 +48,TX,8,SOLVENT UTILIZATION,NOX,0.10989,0.08582,0.08858,0.08932,0.0669,0.071079,0.076136,0.078498701,0.089353834,0.100208967,0.1110641,0.1095587,0.1080533,0.1065479,0.108151533,0.109755167,0.1113588,0.115093533,0.118828267,0.122563,0.119514533,0.116466067,0.1134176,0.1134176,0.1134176 +48,TX,9,STORAGE & TRANSPORT,PM10,2.02366,2.72923,2.78014,2.80745,1.91888,1.998935,2.097342,2.703148512,2.559893174,2.416637837,2.2733825,2.113446633,1.953510767,1.7935749,1.7222069,1.6508389,1.5806709,1.560666667,1.540662433,1.5206582,1.473381,1.4261038,1.3788266,1.3788266,1.3788266 +48,TX,9,STORAGE & TRANSPORT,VOC,150.08371,144.78205,149.68692,149.74003,112.639446,94.324781,96.134614,167.9283627,171.2487914,174.5692201,177.8896488,163.7175289,149.5454091,135.3732892,135.784194,136.1950988,108.6551094,96.04335901,83.43160862,70.81985823,72.41104045,74.00222267,75.59340488,75.59340488,75.59340488 +48,TX,9,STORAGE & TRANSPORT,PM25,0.90129,1.05612,1.07603,1.08548,0.927121,0.966045,1.014272,1.168338044,1.14357085,1.118803656,1.094036462,1.029985418,0.965934374,0.90188333,0.84901155,0.79613977,0.74446799,0.742734308,0.741000625,0.739266943,0.708441937,0.677616931,0.646791924,0.646791924,0.646791924 +48,TX,9,STORAGE & TRANSPORT,NOX,0.17639,3.9938,4.026,4.03976,2.06432,2.115796,2.182322,1.155375705,0.96823777,0.781099835,0.5939619,0.5222846,0.4506073,0.37893,0.316110833,0.253291667,0.1921283,0.1954353,0.1987423,0.2020493,0.199458533,0.196867767,0.194277,0.194277,0.194277 +48,TX,9,STORAGE & TRANSPORT,NH3,,,,,0,0,,,0.0272224,0.0544448,0.0816672,0.071630067,0.061592933,0.0515558,0.045803083,0.040050367,0.03429765,0.0337885,0.03327935,0.0327702,0.0333143,0.0338584,0.0344025,0.0344025,0.0344025 +48,TX,9,STORAGE & TRANSPORT,CO,72.8124,67.85762,69.29268,70.01239,73.06305,75.437207,78.383343,37.58457743,30.04384548,22.50311354,14.9623816,10.21354887,5.464716133,0.7158834,0.7903159,0.8647484,0.9424865,0.892000033,0.841513567,0.7910271,0.7002778,0.6095285,0.5187792,0.5187792,0.5187792 +48,TX,9,STORAGE & TRANSPORT,SO2,0.63902,0.46534,0.47448,0.47829,0.39352,0.405078,0.420058,0.462103705,0.47054507,0.478986435,0.4874278,0.371652367,0.255876933,0.1401015,0.184878,0.2296545,0.274431,0.3379085,0.401386,0.4648635,0.413060133,0.361256767,0.3094534,0.3094534,0.3094534 +48,TX,10,WASTE DISPOSAL & RECYCLING,SO2,3.29257,2.08621,2.12397,2.14167,3.38917,3.655166,3.77642,2.87503796,2.438704943,2.002371926,1.566038908,1.174040525,0.782042142,0.390043759,0.352534747,0.315025736,0.277270824,0.736773641,1.196276457,1.655779274,1.604670006,1.553560738,1.502451471,1.502451471,1.502451471 +48,TX,10,WASTE DISPOSAL & RECYCLING,VOC,114.19122,56.88497,57.23997,59.57786,27.884873,39.472583,40.002214,20.33060147,20.45821233,20.58582319,20.71343405,16.21645006,11.71946607,7.222482079,6.83126131,6.44004054,6.04874277,10.62208505,15.19542733,19.76876961,17.77404826,15.77932692,13.78460558,13.78460558,13.78460558 +48,TX,10,WASTE DISPOSAL & RECYCLING,NH3,4.34773,6.11051,6.07562,6.19701,6.23831,6.353769,6.51114,4.39E-05,0.018162023,0.036280123,0.054398223,0.081033014,0.107667805,0.134302596,0.135081271,0.135859946,0.135651621,0.430883498,0.726115374,1.02134725,0.921441541,0.821535832,0.721630123,0.721630123,0.721630123 +48,TX,10,WASTE DISPOSAL & RECYCLING,NOX,2.13548,6.78997,6.91134,7.57812,1.94624,7.568108,7.609244,2.654949656,2.574211996,2.493474336,2.412736675,2.693634379,2.974532083,3.255429787,3.046866854,2.838303921,2.603171987,3.688635772,4.774099556,5.85956334,5.226766501,4.593969663,3.961172824,3.961172824,3.961172824 +48,TX,10,WASTE DISPOSAL & RECYCLING,PM10,10.4129,22.60721,23.32364,25.68825,12.310109,27.129721,27.150879,21.25727262,21.89101576,22.52475891,23.15850206,19.04486118,14.9312203,10.81757943,10.48642633,10.15527323,9.812174434,13.23901088,16.66584732,20.09268376,18.84642855,17.60017334,16.35391812,16.35391812,16.35391812 +48,TX,10,WASTE DISPOSAL & RECYCLING,CO,2.14595,148.50822,150.28266,171.58146,105.91606,182.550107,182.600597,84.07296375,84.18680966,84.30065557,84.41450149,74.94765886,65.48081623,56.0139736,53.7515874,51.4892012,49.22415789,84.66548264,120.1068074,155.5481322,134.8686478,114.1891634,93.50967907,93.50967907,93.50967907 +48,TX,10,WASTE DISPOSAL & RECYCLING,PM25,9.11318,21.68637,22.34319,24.68132,11.959035,26.068697,26.083953,19.9229433,20.29154758,20.66015185,21.02875613,16.99555789,12.96235964,8.929161401,8.697284552,8.465407704,8.233530856,10.8201503,13.40676975,15.99338919,15.41585265,14.8383161,14.26077955,14.26077955,14.26077955 +48,TX,11,HIGHWAY VEHICLES,NOX,669.79083,626.26771,646.95631,651.06709,647.03594,651.6997,597.50156,851.8641586,797.1197518,742.3753449,687.6309381,690.2061579,692.7813777,600.4931575,529.0148279,466.496242,475.2290256,454.7291098,434.229194,413.7292781,392.1118907,303.4623387,289.3017989,267.0936422,241.1460917 +48,TX,11,HIGHWAY VEHICLES,PM10,26.47722,20.4257,20.10201,19.35194,18.80704,17.84662,16.40257,33.39839426,32.97710464,32.55581503,32.13452541,32.88216421,33.629803,28.83562277,23.99790171,21.69053213,29.9808658,28.26501649,26.54916718,24.83331787,24.44116179,19.45959762,17.81924408,21.407367,21.13066677 +48,TX,11,HIGHWAY VEHICLES,PM25,22.10011,16.18594,15.72475,14.98848,14.37006,13.35701,12.09453,27.83185941,27.3399714,26.84808339,26.35619538,26.33927364,26.3223519,21.81959812,17.77942366,15.44640106,14.79716274,14.33167087,13.86617901,13.40068715,12.45958677,9.334840998,7.887398801,9.288450898,8.867658257 +48,TX,11,HIGHWAY VEHICLES,SO2,34.93609,22.09139,23.26892,24.0555,25.06118,20.13282,19.11537,24.90423953,21.58081772,18.25739592,14.93397412,9.258431896,3.582889675,3.346439358,3.047167243,3.13201743,2.603877051,2.631215591,2.658554131,2.685892671,2.62830069,2.669148414,2.46455702,1.21218082,0.996625078 +48,TX,11,HIGHWAY VEHICLES,VOC,691.77858,486.41736,476.78812,476.05178,465.25436,445.84224,396.80367,287.6086375,271.4825879,255.3565382,239.2304885,254.8819319,270.5333753,226.282761,224.7179387,204.8181583,214.8597779,194.0803921,173.3010062,152.5216204,154.0382802,123.99742,127.4718791,107.7942084,96.05740123 +48,TX,11,HIGHWAY VEHICLES,CO,7966.03968,5648.12985,5469.70132,5304.58965,4954.99276,4936.99246,4600.09352,3589.07883,3347.702188,3106.325546,2864.948903,2828.242223,2791.535544,2370.535387,2101.778145,2035.102432,2117.208819,1972.633307,1828.057795,1683.482283,1761.174317,1539.359899,1554.039699,1358.991445,1257.511884 +48,TX,11,HIGHWAY VEHICLES,NH3,11.27139,17.68084,20.28739,19.96446,20.96718,22.09433,21.85962,11.77671093,11.56747145,11.35823198,11.14899251,11.43518163,11.72137075,10.38925062,9.475387578,8.372604519,9.105779542,8.844023873,8.582268205,8.320512536,8.307743827,8.243883743,8.176736692,7.367241466,7.295188666 +48,TX,12,OFF-HIGHWAY,NH3,3.89478,4.19392,4.18991,4.26904,0.20428,0.20428,0.20428,0.184503637,0.186747131,0.188990626,0.191234121,0.180955726,0.170677331,1.127660408,0.175798178,0.178439352,0.769036016,0.604745071,0.440454126,0.276163181,0.270498551,0.233468059,0.259169291,0.258025158,0.256881025 +48,TX,12,OFF-HIGHWAY,VOC,165.08151,181.14113,167.03542,160.91959,158.37132,158.60545,156.53316,186.0002327,180.6233983,175.246564,169.8697297,161.7687646,153.6677995,123.1869492,146.2377329,140.0806063,107.6389688,100.4686922,93.29841567,86.12813912,81.57347134,74.92464433,72.46413577,70.23328118,68.00242658 +48,TX,12,OFF-HIGHWAY,SO2,36.89341,40.13121,41.26446,42.48447,41.87514,44.18066,44.36094,50.57038371,45.51963636,40.46888901,35.41814166,28.44810735,21.47807305,30.91789377,17.73320118,9.70447448,6.648160142,5.695654133,4.743148124,3.790642115,3.830764448,3.63497657,3.911009116,3.937840126,3.964671137 +48,TX,12,OFF-HIGHWAY,PM25,23.05185,23.83454,23.52912,23.21472,22.87158,22.9807,22.65465,24.97224288,24.02006292,23.06788295,22.11570298,18.63624646,15.15678993,17.21401398,14.19704055,13.0109052,16.09709111,15.54149216,14.98589321,14.43029426,13.25129675,11.66144399,10.89330175,10.29441866,9.695535572 +48,TX,12,OFF-HIGHWAY,NOX,342.43467,376.24307,370.06399,362.50767,303.15881,384.36023,384.5846,392.8110299,379.4594011,366.1077723,352.7561435,292.5485094,232.3408754,220.0429618,235.9468462,231.2377765,237.8953621,233.1685295,228.441697,223.7148644,216.2954847,203.7267915,201.4567253,193.3094958,185.1622662 +48,TX,12,OFF-HIGHWAY,CO,1546.77255,1755.99435,1701.08751,1702.62487,1751.37528,1740.94247,1779.79981,1645.445079,1594.931145,1544.417211,1493.903277,1405.02434,1316.145403,1023.551471,1146.197677,1100.607495,870.9940674,819.8117034,768.6293394,717.4469755,708.1852856,774.0278838,689.6619057,692.2685535,694.8752013 +48,TX,12,OFF-HIGHWAY,PM10,25.15475,26.00397,25.65619,25.29403,24.96062,25.08151,24.72758,26.5600344,25.57388204,24.58772968,23.60157732,19.82720799,16.05283867,18.5866246,15.32925568,14.05929003,16.81825063,16.23527637,15.65230211,15.06932785,13.85994583,12.22977879,11.44118179,10.82037875,10.19957572 +48,TX,14,MISCELLANEOUS,PM10,3556.06815,2429.90904,2445.76988,2607.3212,2391.28959,2462.934117,2301.171527,2162.794922,2187.456973,2212.119024,2236.781075,2245.826741,2254.872408,2263.918074,2287.124554,2310.331033,2333.537512,1917.79623,1502.054948,1086.313666,1119.302888,1152.292111,1185.281333,1185.281333,1185.281333 +48,TX,14,MISCELLANEOUS,VOC,11.33385,18.91554,19.60017,52.71427,40.091269,21.06721,20.580784,10.16888928,66.5354119,122.9019345,179.2684572,119.8458481,60.42323906,1.000630009,1.705166273,2.409702537,3.1142388,7.504722854,11.89520691,16.28569096,18.40909335,20.53249574,22.65589813,22.65589813,22.65589813 +48,TX,14,MISCELLANEOUS,CO,249.24983,231.40334,344.41676,606.52747,547.081829,315.995322,304.051914,77.75,316.0599583,554.3699167,792.679875,532.4167949,272.1537149,11.89063478,22.35481368,32.81899259,43.2831715,40.91371171,38.54425192,36.17479214,31.0267008,25.87860946,20.73051812,20.73051812,20.73051812 +48,TX,14,MISCELLANEOUS,NOX,8.4117,4.70279,6.28516,13.45714,7.959918,7.849855,7.6234,3.007551428,6.724435727,10.44132003,14.15820432,9.617429251,5.076654178,0.535879105,0.980542843,1.42520658,1.869870317,1.596697204,1.32352409,1.050350977,0.954593962,0.858836947,0.763079931,0.763079931,0.763079931 +48,TX,14,MISCELLANEOUS,NH3,409.78055,451.8542,467.24829,475.93493,485.87035,492.741322,268.313972,356.4272434,360.3481881,364.2691328,368.1900775,341.542839,314.8956005,288.2483619,279.5484662,270.8485704,262.1486746,269.1080418,276.067409,283.0267762,312.5308083,342.0348404,371.5388726,371.5388726,371.5388726 +48,TX,14,MISCELLANEOUS,SO2,0.32015,0.15646,0.19252,0.45721,0.98391,1.17929,1.1031,0.13562,2.042257263,3.948894525,5.855531788,3.933922395,2.012313002,0.090703609,0.305680517,0.520657425,0.735634332,0.570739666,0.405845,0.240950334,0.249590749,0.258231164,0.266871579,0.266871579,0.266871579 +48,TX,14,MISCELLANEOUS,PM25,605.75204,430.66244,448.71971,494.11098,451.04946,447.438236,395.9998916,235.0400796,255.9401199,276.8401603,297.7402007,293.9984947,290.2567888,286.5150829,285.4326774,284.350272,283.2678665,242.9549179,202.6419693,162.3290208,167.5668087,172.8045966,178.0423845,178.0423845,178.0423845 +48,TX,15,WILDFIRES,PM10,,,,,,,,0.578519252,0.578519252,0.578519252,6.798036301,6.798036301,6.798036301,27.96897576,27.96897576,27.96897576,222.9849287,222.9849287,222.9849287,26.86628859,26.86628859,26.86628859,31.2533943,31.2533943,31.2533943 +48,TX,15,WILDFIRES,CO,,,,,,,,6.075099325,6.075099325,6.075099325,69.9949344,69.9949344,69.9949344,284.3948447,284.3948447,284.3948447,2112.489576,2112.489576,2112.489576,273.1526311,273.1526311,273.1526311,304.8227054,304.8227054,304.8227054 +48,TX,15,WILDFIRES,NOX,,,,,,,,0.063165833,0.063165833,0.063165833,0.593973726,0.593973726,0.593973726,2.803067937,2.803067937,2.803067937,37.87617936,37.87617936,37.87617936,2.695503873,2.695503873,2.695503873,4.432571201,4.432571201,4.432571201 +48,TX,15,WILDFIRES,PM25,,,,,,,,0.489660419,0.489660419,0.489660419,5.761047712,5.761047712,5.761047712,23.70252747,23.70252747,23.70252747,188.9702536,188.9702536,188.9702536,22.7680326,22.7680326,22.7680326,26.48592219,26.48592219,26.48592219 +48,TX,15,WILDFIRES,SO2,,,,,,,,0.037732134,0.037732134,0.037732134,0.415593579,0.415593579,0.415593579,1.807755475,1.807755475,1.807755475,18.64319101,18.64319101,18.64319101,1.737271133,1.737271133,1.737271133,2.374310226,2.374310226,2.374310226 +48,TX,15,WILDFIRES,VOC,,,,,,,,1.379369007,1.379369007,1.379369007,16.41314455,16.41314455,16.41314455,66.79670212,66.79670212,66.79670212,500.9289559,500.9289559,500.9289559,64.15711653,64.15711653,64.15711653,71.99341313,71.99341313,71.99341313 +48,TX,15,WILDFIRES,NH3,,,,,,,,0.093343216,0.093343216,0.093343216,1.141783968,1.141783968,1.141783968,4.646727554,4.646727554,4.646727554,34.84721984,34.84721984,34.84721984,4.463096528,4.463096528,4.463096528,5.008234282,5.008234282,5.008234282 +48,TX,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,461.7759264,327.7120922,193.648258,59.58442382,142.1992197,224.8140156,307.4288115,406.5364965,505.6441814,604.7518664,604.7518664,604.7518664 +48,TX,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,8.014750315,5.665463043,3.316175771,0.966888499,2.658582529,4.35027656,6.04197059,8.107788492,10.17360639,12.23942429,12.23942429,12.23942429 +48,TX,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,41.10727676,29.15594528,17.2046138,5.253282324,12.80275615,20.35222997,27.90170379,36.98587942,46.07005506,55.15423069,55.15423069,55.15423069 +48,TX,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,3.994337304,2.827833929,1.661330554,0.494827179,1.288271962,2.081716746,2.87516153,3.838132508,4.801103487,5.764074465,5.764074465,5.764074465 +48,TX,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,109.4257726,77.65077006,45.87576755,14.10076505,33.74974964,53.39873423,73.04771882,96.62952217,120.2113255,143.7931289,143.7931289,143.7931289 +48,TX,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,48.50657533,34.40400741,20.30143949,6.198871569,15.10725271,24.01563386,32.924015,43.64333961,54.36266422,65.08198884,65.08198884,65.08198884 +48,TX,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,7.612225881,5.401791586,3.191357292,0.980922997,2.347809133,3.71469527,5.081581407,6.722049019,8.362516632,10.00298424,10.00298424,10.00298424 +49,UT,1,FUEL COMB. ELEC. UTIL.,VOC,0.47617,0.43217,0.45936,0.47904,0.52803,0.539791,0.543512,0.362258055,0.364254345,0.366250635,0.368246924,0.361028119,0.353809315,0.34659051,0.326724526,0.306858543,0.286981579,0.303862486,0.320743393,0.3376243,0.326670425,0.31571655,0.304762674,0.304762674,0.304762674 +49,UT,1,FUEL COMB. ELEC. UTIL.,SO2,32.07837,32.02713,32.86939,32.92318,31.31356,28.384837,29.5621,32.15748624,34.644751,33.144709,34.82015381,36.61811,23.553284,20.74130772,20.64175339,20.54219906,20.44263563,20.66213229,20.88162894,21.1011256,16.9921845,12.8832434,8.774302299,8.735123,9.153622 +49,UT,1,FUEL COMB. ELEC. UTIL.,PM25,1.04753,1.65185,1.70423,1.44118,4.753483,4.593459,4.459011,4.928311756,4.986993205,5.045674653,5.104356102,3.756926002,2.409495902,1.062065802,1.5229952,1.983924599,2.444842706,2.383429967,2.322017229,2.26060449,2.000911639,1.741218787,1.481525936,1.481525936,1.481525936 +49,UT,1,FUEL COMB. ELEC. UTIL.,PM10,3.00746,3.78075,3.92436,3.06248,6.131823,5.865462,5.603158,6.365055408,6.450263673,6.535471939,6.620680204,5.126538737,3.632397269,2.138255802,2.348548204,2.558840607,2.769121718,2.848125179,2.927128639,3.0061321,2.548726906,2.091321713,1.633916519,1.633916519,1.633916519 +49,UT,1,FUEL COMB. ELEC. UTIL.,NOX,71.10849,72.8931,71.42334,75.65872,73.95414,77.029757,73.106659,72.43838598,69.64976,67.322729,65.88653479,70.065019,69.208868,62.05228254,58.18921873,54.32615491,50.4629528,49.0339943,47.6050358,46.1760773,39.74431325,33.3125492,26.88078515,30.197586,30.450835 +49,UT,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00785,0.00837,0.0115,0.013563,0.020734,0.024943,0.268904722,0.276434832,0.283964943,0.291495053,0.260476409,0.229457764,0.198439119,0.182737844,0.16703657,0.151335295,0.183146563,0.214957832,0.2467691,0.218903797,0.191038495,0.163173192,0.163173192,0.163173192 +49,UT,1,FUEL COMB. ELEC. UTIL.,CO,4.15914,3.50887,3.73291,3.88543,4.07188,4.257946,4.294793,4.251713926,4.353738751,4.455763575,4.5577884,4.510013825,4.462239249,4.414464674,7.54748047,10.68049627,13.81348227,12.38645318,10.95942409,9.532395,10.04413058,10.55586616,11.06760174,11.06760174,11.06760174 +49,UT,2,FUEL COMB. INDUSTRIAL,NOX,23.2597,78.48799,77.18831,75.82007,23.74132,23.945397,24.524029,9.318718266,8.719937593,8.121156921,7.522376248,7.648088283,7.773800319,7.899512354,7.282843591,6.666174828,6.04879376,7.183464075,8.31813439,9.452804705,8.468983019,7.485161334,6.501339648,6.501339648,6.501339648 +49,UT,2,FUEL COMB. INDUSTRIAL,PM10,0.85572,3.10519,3.05796,2.98269,1.341109,1.37376,1.419872,0.352563478,0.371118871,0.389674263,0.408229656,0.426545247,0.444860839,0.46317643,0.517297473,0.571418515,0.625447299,0.690994678,0.756542056,0.822089435,0.744121573,0.666153711,0.588185848,0.588185848,0.588185848 +49,UT,2,FUEL COMB. INDUSTRIAL,PM25,0.47694,0.76,0.74743,0.71627,1.009205,1.030326,1.060233,0.201675757,0.249727315,0.297778872,0.34583043,0.369674437,0.393518444,0.417362451,0.459630337,0.501898223,0.544075143,0.603411739,0.662748335,0.722084931,0.650595313,0.579105694,0.507616076,0.507616076,0.507616076 +49,UT,2,FUEL COMB. INDUSTRIAL,SO2,25.43901,39.5694,38.97169,38.03331,14.33701,14.858993,15.348559,7.940596067,7.879441191,7.818286316,7.75713144,7.138770942,6.520410443,5.902049945,5.264759723,4.6274695,3.989815085,3.71898105,3.448147015,3.17731298,2.855956318,2.534599656,2.213242994,2.213242994,2.213242994 +49,UT,2,FUEL COMB. INDUSTRIAL,VOC,2.4557,1.0022,0.97969,0.95773,0.98666,0.984024,0.992364,0.462891277,0.43949533,0.416099384,0.392703438,0.37609446,0.359485481,0.342876503,0.324116817,0.305357131,0.286662038,0.381659603,0.476657169,0.571654734,0.582527371,0.593400009,0.604272646,0.604272646,0.604272646 +49,UT,2,FUEL COMB. INDUSTRIAL,NH3,0.12678,0.85497,0.86572,0.85649,0.934203,0.950387,0.951644,0.28372991,0.234072663,0.184415417,0.13475817,0.14840833,0.162058491,0.175708651,0.172337516,0.16896638,0.165595245,0.136474819,0.107354394,0.078233968,0.071077819,0.06392167,0.056765522,0.056765522,0.056765522 +49,UT,2,FUEL COMB. INDUSTRIAL,CO,4.72286,10.21169,9.99615,9.79297,7.78981,7.852209,8.003214,3.732623379,3.668137967,3.603652556,3.539167144,3.256563739,2.973960333,2.691356928,2.909328948,3.127300969,3.344959509,3.756458932,4.167958354,4.579457776,3.899215908,3.218974039,2.538732171,2.538732171,2.538732171 +49,UT,3,FUEL COMB. OTHER,VOC,4.5895,4.53872,4.54583,4.53579,12.867586,6.60905,6.637908,5.892349892,5.115290147,4.338230402,3.561170657,3.545863401,3.530556145,3.515248889,3.650291725,3.785334561,3.802359056,3.175543453,2.548727851,1.921912249,1.592334829,1.262757409,0.933179989,0.933179989,0.933179989 +49,UT,3,FUEL COMB. OTHER,SO2,5.41731,3.84233,3.8845,3.35298,3.254835,3.28538,3.364876,3.505318383,3.50170038,3.498082377,3.494464373,2.704151892,1.91383941,1.123526928,0.972339226,0.821151523,0.667634838,0.480187851,0.292740863,0.105293875,0.08451654,0.063739205,0.042961869,0.042961869,0.042961869 +49,UT,3,FUEL COMB. OTHER,NH3,0.03793,0.04513,0.04462,0.03962,0.02517,0.025707,0.026382,0.615634704,0.615703304,0.615771904,0.615840504,0.769028015,0.922215526,1.075403036,0.989070946,0.902738855,0.805084903,0.767553048,0.730021193,0.692489337,0.505494651,0.318499965,0.131505279,0.131505279,0.131505279 +49,UT,3,FUEL COMB. OTHER,CO,23.65755,12.20783,12.2508,12.18287,41.627347,22.068561,22.229572,41.69686921,41.72963116,41.76239311,41.79515506,34.5887555,27.38235594,20.17595638,21.10793609,22.0399158,22.0311373,18.74477939,15.45842149,12.17206359,10.108617,8.045170423,5.981723841,5.981723841,5.981723841 +49,UT,3,FUEL COMB. OTHER,PM25,2.80469,1.68695,1.68348,1.66056,5.754039,3.100771,3.132833,1.678459176,1.694635529,1.710811881,1.726988233,2.071023127,2.415058021,2.759092915,2.856513564,2.953934213,2.902527834,2.462300197,2.02207256,1.581844923,1.291143152,1.000441381,0.709739611,0.709739611,0.709739611 +49,UT,3,FUEL COMB. OTHER,PM10,3.12581,1.81551,1.81453,1.7783,6.325883,3.684551,3.728511,2.349734661,2.40315898,2.456583299,2.510007618,2.675692237,2.841376856,3.007061475,3.075990274,3.144919074,3.065009389,2.585583418,2.106157446,1.626731475,1.339834136,1.052936797,0.766039457,0.766039457,0.766039457 +49,UT,3,FUEL COMB. OTHER,NOX,7.50041,6.12126,5.9865,5.50735,7.889369,7.784089,7.931917,6.49038546,6.546014794,6.601644127,6.65727346,8.454691621,10.25210978,12.04952794,11.42028769,10.79104743,10.1462749,8.354455897,6.56263689,4.770817883,4.543976952,4.317136021,4.09029509,4.09029509,4.09029509 +49,UT,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.08,0.1314,0.13246,0.13541,0.15111,0.156534,0.162317,0.171982054,0.16029987,0.148617685,0.1369355,0.141950044,0.146964587,0.151979131,0.154175585,0.15637204,0.158568494,0.169696196,0.180823898,0.1919516,0.187817899,0.183684199,0.179550498,0.179550498,0.179550498 +49,UT,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,0.02093,0.02093,0.02141,0.02326,0.024285,0.025254,0.019282752,0.014008935,0.008735117,0.0034613,0.014226158,0.024991015,0.035755873,0.039621058,0.043486242,0.047351427,0.057120351,0.066889276,0.0766582,0.08467911,0.092700021,0.100720931,0.100720931,0.100720931 +49,UT,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,0.02242,0.014949233,0.007478467,0.0000077,0.011476732,0.022945765,0.034414797,0.037747275,0.041079754,0.044412232,0.056517355,0.068622477,0.0807276,0.077418991,0.074110382,0.070801773,0.070801773,0.070801773 +49,UT,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,0.14187,0.14261,0.14608,0.11654,0.119945,0.123325,0.10075171,0.094771906,0.088792103,0.0828123,0.075022747,0.067233195,0.059443642,0.065481983,0.071520325,0.077558666,0.094634977,0.111711289,0.1287876,0.129058732,0.129329864,0.129600995,0.129600995,0.129600995 +49,UT,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,0.0606,0.06089,0.06229,0.061782,0.063269,0.064692,0.066329826,0.064384393,0.062438961,0.060493529,0.050496796,0.040500064,0.030503332,0.037162328,0.043821323,0.050480318,0.063314112,0.076147906,0.0889817,0.087431649,0.085881598,0.084331547,0.084331547,0.084331547 +49,UT,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,0.00433,0.00432,0.00433,0.01684,0.017403,0.018276,0.027162521,0.018125214,0.009087907,0.0000506,0.001281673,0.002512745,0.003743818,0.004799161,0.005854504,0.006909847,0.011953198,0.016996549,0.0220399,0.025611542,0.029183185,0.032754827,0.032754827,0.032754827 +49,UT,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,,0.02714,0.02713,0.02775,0.06464,0.06752,0.071711,0.072464826,0.060735217,0.049005609,0.037276,0.045967683,0.054659365,0.063351048,0.068709431,0.074067813,0.079426196,0.103971064,0.128515932,0.1530608,0.181491409,0.209922017,0.238352626,0.238352626,0.238352626 +49,UT,5,METALS PROCESSING,SO2,34.84474,3.51659,3.60577,3.50198,1.57356,1.618797,1.721558,1.010545518,0.967971379,0.925397239,0.8828231,0.925607067,0.968391033,1.011175,0.920443227,0.829711454,0.738979681,0.771739954,0.804500227,0.8372605,0.783298735,0.729336969,0.675375204,0.675375204,0.675375204 +49,UT,5,METALS PROCESSING,PM25,1.44802,3.92602,3.96051,3.87188,1.668878,1.715664,1.812283,0.753944174,0.967288934,1.180633694,1.393978454,1.316676511,1.239374568,1.162072624,1.16970101,1.177329395,1.18495778,1.184506597,1.184055413,1.18360423,1.218719708,1.253835186,1.288950664,1.288950664,1.288950664 +49,UT,5,METALS PROCESSING,PM10,3.34612,5.76746,5.80599,5.68134,3.26228,3.359967,3.543479,2.357272697,2.745512498,3.133752299,3.5219921,3.099556487,2.677120874,2.254685261,2.13573881,2.016792358,1.897845907,1.965085038,2.032324169,2.0995633,2.17175434,2.243945379,2.316136419,2.316136419,2.316136419 +49,UT,5,METALS PROCESSING,CO,39.26614,21.04551,21.51335,20.87595,10.88604,11.211712,11.977275,2.3136641,2.4433409,2.5730177,2.7026945,2.069656667,1.436618833,0.803581,0.763129775,0.722678549,0.682227324,0.667635749,0.653044175,0.6384526,0.622181062,0.605909524,0.589637985,0.589637985,0.589637985 +49,UT,5,METALS PROCESSING,NOX,6.21245,4.39989,4.44289,4.3548,4.43992,4.585034,4.831281,0.371687947,1.633965332,2.896242716,4.1585201,2.876869733,1.595219367,0.313569,0.302642817,0.291716633,0.28079045,0.2744445,0.26809855,0.2617526,0.244855737,0.227958873,0.21106201,0.21106201,0.21106201 +49,UT,5,METALS PROCESSING,NH3,0.29486,0.21702,0.22389,0.21855,0.095748,0.098788,0.105652,0.0017917,0.002002833,0.002213967,0.0024251,0.0031964,0.0039677,0.004739,0.00466146,0.004583919,0.004506379,0.004255953,0.004005526,0.0037551,0.004046688,0.004338276,0.004629865,0.004629865,0.004629865 +49,UT,5,METALS PROCESSING,VOC,0.8606,0.96971,0.98701,0.96362,1.07241,1.103688,1.167859,0.112708675,0.370294583,0.627880492,0.8854664,0.756738267,0.628010133,0.499282,0.507476357,0.515670715,0.523865072,0.563981348,0.604097624,0.6442139,0.650157847,0.656101794,0.662045741,0.662045741,0.662045741 +49,UT,6,PETROLEUM & RELATED INDUSTRIES,CO,2.64651,1.18967,1.19868,1.20416,0.90764,0.910346,0.916392,1.31179504,1.15751186,1.00322868,0.8489455,0.67198209,0.495018679,0.318055269,4.319180642,8.320306015,12.32889443,12.87977347,13.43065251,13.98153156,13.42336572,12.86519988,12.30703404,12.30703404,12.30703404 +49,UT,6,PETROLEUM & RELATED INDUSTRIES,SO2,0.61371,0.41327,0.42692,0.42683,0.41253,0.413104,0.416807,0.74321286,0.521493273,0.299773687,0.0780541,0.056325715,0.034597329,0.012868944,0.122214257,0.231559569,0.34076144,0.264818198,0.188874956,0.112931714,0.107109579,0.101287445,0.09546531,0.09546531,0.09546531 +49,UT,6,PETROLEUM & RELATED INDUSTRIES,VOC,6.62165,5.98024,6.16294,6.16996,5.03292,4.717743,4.768931,1.003101305,0.971322095,0.939542885,0.907763675,1.586816828,2.265869981,2.944923134,46.05649105,89.16805896,130.1374405,124.2675252,118.3976099,112.5276946,98.57281094,84.6179273,70.66304366,70.66304366,70.66304366 +49,UT,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.1956,0.05724,0.05867,0.05857,0.4255,0.431945,0.439835,0.38392608,0.37883304,0.37374,0.36864696,0.355791174,0.342935387,0.330079601,0.546730744,0.763381888,0.98035179,1.001573358,1.022794925,1.044016492,0.952974599,0.861932705,0.770890811,0.770890811,0.770890811 +49,UT,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.78129,0.1284,0.13335,0.13338,0.085261,0.085687,0.086624,0.010040285,0.00879149,0.007542695,0.0062939,0.004599011,0.002904123,0.001209234,0.001393292,0.001577351,0.001761409,0.038946895,0.076132382,0.113317868,0.075611129,0.037904391,0.000197652,0.000197652,0.000197652 +49,UT,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.11141,0.02484,0.02558,0.02554,0.343416,0.349175,0.356067,0.260162835,0.249993325,0.239823815,0.229654306,0.165431959,0.101209613,0.036987267,0.153999918,0.271012569,0.388343979,0.503634399,0.618924819,0.734215239,0.724332167,0.714449094,0.704566021,0.704566021,0.704566021 +49,UT,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.8112,1.62743,1.63595,1.6445,1.20839,1.21218,1.220441,0.82362498,0.75244422,0.68126346,0.6100827,1.152585777,1.695088855,2.237591932,8.54727364,14.85695535,21.17353827,19.65374945,18.13396063,16.61417181,15.46373352,14.31329522,13.16285693,13.16285693,13.16285693 +49,UT,7,OTHER INDUSTRIAL PROCESSES,CO,2.31816,4.62978,4.69425,4.61615,18.03931,18.675709,20.19347243,37.87679205,37.54739543,37.21799881,36.88860219,26.51255131,16.13650044,5.760449563,5.35130753,4.942165496,4.533023463,5.652770094,6.772516726,7.892263358,8.196808463,8.501353567,8.805898672,8.805898672,8.805898672 +49,UT,7,OTHER INDUSTRIAL PROCESSES,VOC,0.40192,0.6726,0.68106,0.67869,1.62383,1.676674,1.834455511,1.568214585,1.491036085,1.413857585,1.336679084,1.364618217,1.39255735,1.420496483,1.267496299,1.114496116,0.961407293,0.948959699,0.936512105,0.924064511,0.982409999,1.040755486,1.099100974,1.099100974,1.099100974 +49,UT,7,OTHER INDUSTRIAL PROCESSES,SO2,1.36787,0.49981,0.49524,0.49053,0.65347,0.670358,0.699429,0.479439362,0.376114378,0.272789394,0.16946441,0.29700995,0.42455549,0.55210103,0.501594614,0.451088197,0.400581781,0.325881087,0.251180394,0.1764797,0.130733887,0.084988073,0.03924226,0.03924226,0.03924226 +49,UT,7,OTHER INDUSTRIAL PROCESSES,PM25,3.85076,4.12426,4.11098,4.40726,4.902975,5.146564,5.76534358,2.423371685,2.311918436,2.200465187,2.089011938,3.046518705,4.004025473,4.961532241,3.900226639,2.838921036,1.777594843,1.829058353,1.880521862,1.931985371,2.077775577,2.223565783,2.369355989,2.369355989,2.369355989 +49,UT,7,OTHER INDUSTRIAL PROCESSES,PM10,15.27896,16.75181,16.62308,18.12365,19.29185,20.374063,21.07627782,4.246542903,4.056250989,3.865959075,3.67566716,11.84552407,20.01538099,28.1852379,20.98858924,13.79194057,6.59311635,6.438031315,6.28294628,6.127861245,6.350124011,6.572386777,6.794649543,6.794649543,6.794649543 +49,UT,7,OTHER INDUSTRIAL PROCESSES,NOX,5.71126,3.02252,3.03877,2.99963,4.68693,4.822682,5.068722,4.22412901,4.141912473,4.059695937,3.9774794,4.429734193,4.881988987,5.33424378,4.948407352,4.562570925,4.176734497,3.80285753,3.428980562,3.055103595,3.096044422,3.13698525,3.177926077,3.177926077,3.177926077 +49,UT,7,OTHER INDUSTRIAL PROCESSES,NH3,0.00182,0.00224,0.00227,0.00225,0.023937,0.024744,0.026546,0.209141945,0.232760263,0.256378582,0.2799969,0.232819267,0.185641633,0.138464,0.140675139,0.142886277,0.145097416,0.145591011,0.146084605,0.1465782,0.164425476,0.182272752,0.200120029,0.200120029,0.200120029 +49,UT,8,SOLVENT UTILIZATION,NH3,,,,,0.05194,0.056618,0.062951,0.058571,0.0584877,0.0584044,0.0583211,0.061862232,0.065403363,0.068944495,0.045962997,0.022981498,0,0,0,0,0,0,0,0,0 +49,UT,8,SOLVENT UTILIZATION,VOC,32.87421,46.84788,47.495,40.54866,38.72004,38.284934,39.418928,33.34779929,33.21207306,33.07634683,32.94062059,38.03027685,43.1199331,48.20958935,40.435211,32.66083265,24.87896092,24.894127,24.90929308,24.92445916,24.68626521,24.44807127,24.20987733,24.20987733,24.20987733 +49,UT,8,SOLVENT UTILIZATION,SO2,,0.00085,0.00085,0.00085,0.00045,0.00049,0.000534,0.0004105,0.0004085,0.0004065,0.0004045,0.000269667,0.000134833,0,0,0,0,0,0,0,0,0,0,0,0 +49,UT,8,SOLVENT UTILIZATION,PM25,0.00292,0.02841,0.02794,0.0279,0.02361,0.023899,0.024902,0.039866269,0.036838439,0.03381061,0.03078278,0.020925485,0.011068189,0.001210894,0.001678815,0.002146735,0.002614656,0.002941671,0.003268685,0.0035957,0.003468949,0.003342197,0.003215446,0.003215446,0.003215446 +49,UT,8,SOLVENT UTILIZATION,PM10,0.00352,0.03405,0.03344,0.03339,0.03808,0.038691,0.040096,0.056354969,0.051794413,0.047233856,0.0426733,0.029032498,0.015391696,0.001750894,0.002228815,0.002706735,0.003184656,0.003338337,0.003492019,0.0036457,0.003909899,0.004174097,0.004438296,0.004438296,0.004438296 +49,UT,8,SOLVENT UTILIZATION,CO,,0.00441,0.0044,0.0044,0.00874,0.009157,0.009801,0.014293005,0.013924805,0.013556605,0.013188405,0.00879227,0.004396135,0,0,0,0,0.000001,0.000002,0.000003,0.000002,0.000001,0,0,0 +49,UT,8,SOLVENT UTILIZATION,NOX,,0.01116,0.01114,0.01115,0.01457,0.015547,0.016756,0.0369681,0.0365267,0.0360853,0.0356439,0.0237626,0.0118813,0,0,0,0,5.33E-07,1.07E-06,0.0000016,1.07E-06,5.33E-07,0,0,0 +49,UT,9,STORAGE & TRANSPORT,NH3,,,,,0,0,0,,0.0000009,0.0000018,0.0000027,0.0000018,0.0000009,0,0,0,0,0,0,0,7.36E-05,0.000147171,0.000220756,0.000220756,0.000220756 +49,UT,9,STORAGE & TRANSPORT,PM10,0.07747,1.39926,1.41215,1.4172,1.134665,1.159826,1.199269,0.876785869,0.857388558,0.837991248,0.818593938,0.713164143,0.607734349,0.502304554,0.509677029,0.517049504,0.524317538,0.486323325,0.448329113,0.4103349,0.435283152,0.460231404,0.485179656,0.485179656,0.485179656 +49,UT,9,STORAGE & TRANSPORT,PM25,0.02638,0.54121,0.54187,0.54116,0.399293,0.408226,0.421908,0.296604274,0.295667005,0.294729736,0.293792467,0.268597779,0.243403091,0.218208403,0.216733832,0.21525926,0.21377528,0.206281053,0.198786827,0.1912926,0.20375129,0.216209979,0.228668669,0.228668669,0.228668669 +49,UT,9,STORAGE & TRANSPORT,VOC,14.74647,11.65871,12.10053,12.07858,8.43004,8.087739,8.206979,11.51612942,11.45706136,11.3979933,11.33892525,10.46781994,9.596714624,8.725609313,9.176101997,9.626594681,5.163084457,4.775374224,4.387663992,3.99995376,4.042917349,4.085880938,4.128844527,4.128844527,4.128844527 +49,UT,9,STORAGE & TRANSPORT,CO,,0.37227,0.38471,0.39295,0.07041,0.071718,0.073324,0.0132646,0.013264367,0.013264133,0.0132639,0.326583267,0.639902633,0.953222,1.011102793,1.068983587,1.12686438,0.997426253,0.867988127,0.73855,0.680123333,0.621696667,0.56327,0.56327,0.56327 +49,UT,9,STORAGE & TRANSPORT,SO2,0.047,0.02355,0.02293,0.02271,0.02003,0.020409,0.020886,0.008841,0.008840833,0.008840667,0.0088405,0.005920333,0.003000167,0.00008,0.000210767,0.000341535,0.000472302,0.000314868,0.000157434,0,0,0,0,0,0 +49,UT,9,STORAGE & TRANSPORT,NOX,,7.17617,7.45773,7.63892,0.22349,0.227577,0.232591,0.0596647,0.059663,0.0596613,0.0596596,0.0466714,0.0336832,0.020695,0.021581433,0.022467867,0.0233543,0.015569533,0.007784767,0,0.00011,0.00022,0.00033,0.00033,0.00033 +49,UT,10,WASTE DISPOSAL & RECYCLING,PM10,1.17737,5.38985,5.35085,6.2477,6.404888,2.421252,2.447985,0.774432927,0.841120716,0.907808505,0.974496294,1.230879446,1.487262599,1.743645751,1.477188269,1.210730788,0.944503307,0.758816883,0.57313046,0.387444036,0.355469387,0.323494738,0.291520089,0.291520089,0.291520089 +49,UT,10,WASTE DISPOSAL & RECYCLING,VOC,3.65347,3.96268,3.94154,4.55671,4.69809,1.982523,1.992428,0.550399043,0.54060289,0.530806737,0.521010583,0.770045603,1.019080622,1.268115641,1.159725971,1.0513363,0.9485494,1.229474373,1.510399346,1.79132432,1.873060312,1.954796305,2.036532298,2.036532298,2.036532298 +49,UT,10,WASTE DISPOSAL & RECYCLING,PM25,0.97861,5.28081,5.23663,6.13051,5.994135,1.995035,2.010683,0.166458014,0.185745492,0.205032969,0.224320447,0.503428494,0.782536541,1.061644588,0.913572392,0.765500196,0.617458,0.492593336,0.367728672,0.242864008,0.219757468,0.196650928,0.173544388,0.173544388,0.173544388 +49,UT,10,WASTE DISPOSAL & RECYCLING,NOX,0.54892,1.56475,1.54652,1.80776,2.00513,0.833419,0.841962,0.385181849,0.565385509,0.74558917,0.925792831,0.841544252,0.757295674,0.673047096,0.578553069,0.484059043,0.389565016,0.345739716,0.301914416,0.258089116,0.251644731,0.245200346,0.238755961,0.238755961,0.238755961 +49,UT,10,WASTE DISPOSAL & RECYCLING,NH3,0.70567,0.90253,0.90253,0.9149,0.441448,0.453384,0.45915,0.595276877,0.59547751,0.595678143,0.595878777,0.629539761,0.663200746,0.696861731,0.47168001,0.246498288,0.022430527,0.038460301,0.054490075,0.07051985,0.071496781,0.072473713,0.073450644,0.073450644,0.073450644 +49,UT,10,WASTE DISPOSAL & RECYCLING,CO,11.59603,44.24495,43.43373,52.07974,50.69675,10.5925,10.601554,0.152516095,0.165526143,0.178536192,0.19154624,3.025767966,5.859989691,8.694211416,7.06671604,5.439220663,3.811725287,2.729144119,1.646562951,0.563981783,0.526583126,0.489184469,0.451785812,0.451785812,0.451785812 +49,UT,10,WASTE DISPOSAL & RECYCLING,SO2,0.1333,0.0763,0.07877,0.08071,0.15104,0.155064,0.157516,0.02442212,0.042389985,0.060357851,0.078325717,0.087873834,0.097421951,0.106970067,0.084243702,0.061517337,0.038790972,0.157629248,0.276467523,0.395305798,0.275294848,0.155283899,0.035272949,0.035272949,0.035272949 +49,UT,11,HIGHWAY VEHICLES,NH3,1.10395,1.85761,2.12312,2.08612,2.18518,2.26418,2.36789,1.301740179,1.258497522,1.215254866,1.17201221,1.212579014,1.253145817,1.148309328,1.05926233,1.029612537,1.118182874,1.086480494,1.054778115,1.023075735,1.036061109,1.029475202,1.027501281,0.959132964,0.946290236 +49,UT,11,HIGHWAY VEHICLES,CO,1012.7342,741.32505,709.7359,679.29675,627.18294,637.77997,639.50224,457.309655,444.6019044,431.8941538,419.1864032,415.2726539,411.3589046,361.0642555,299.5348221,332.7231609,274.4481391,270.5348082,266.6214772,262.7081463,255.4007905,225.2318904,205.5132696,199.4377829,193.1199614 +49,UT,11,HIGHWAY VEHICLES,VOC,76.26173,52.51184,50.4872,49.40069,47.2395,46.83446,46.0559,37.01203823,35.40080577,33.7895733,32.17834084,35.53882504,38.89930924,32.87608016,29.82973471,31.68801036,28.20047126,28.12166359,28.04285592,27.96404826,27.10314271,23.55357717,19.53657423,20.36515325,19.57372924 +49,UT,11,HIGHWAY VEHICLES,SO2,3.55302,2.36747,2.4475,2.48733,2.54849,2.48599,2.58596,2.435872608,2.34015315,2.244433692,2.148714233,1.328325053,0.507935873,0.393909319,0.30325222,0.399745625,0.288418652,0.283768145,0.279117638,0.274467131,0.247794597,0.255427415,0.222861672,0.145869153,0.136037909 +49,UT,11,HIGHWAY VEHICLES,PM25,2.27341,1.77626,1.67744,1.54421,1.42319,1.43528,1.36582,3.526796366,3.388329845,3.249863325,3.111396804,3.025865578,2.940334351,2.539482827,2.721436982,2.495996072,2.153157666,2.344598571,2.536039477,2.727480382,2.495234301,2.111699232,1.445773097,1.866859783,1.821637067 +49,UT,11,HIGHWAY VEHICLES,PM10,2.71652,2.22377,2.13939,1.99718,1.87573,1.90025,1.8358,4.229288847,4.088256078,3.947223309,3.806190541,3.666047917,3.525905293,3.092764605,3.307172051,3.095054022,3.974974651,4.166202273,4.357429896,4.548657519,4.399185891,3.789202094,2.913243944,3.847659163,3.852311882 +49,UT,11,HIGHWAY VEHICLES,NOX,65.03097,67.44868,68.74244,68.28506,66.92163,68.95763,66.91988,102.8307748,97.23896507,91.64715531,86.05534554,85.35237243,84.64939931,74.88042797,75.22128203,71.15256064,64.26933052,67.71894921,71.1685679,74.61818658,70.72135018,58.58386835,45.20072374,51.09045733,48.77645682 +49,UT,12,OFF-HIGHWAY,NH3,0.21829,0.25034,0.25123,0.2578,0.03863,0.03863,0.03863,0.019322501,0.019652678,0.019982855,0.020313032,0.020710036,0.021107041,0.022123323,0.02177295,0.022094555,0.020918012,0.020852613,0.020787215,0.020721817,0.02032828,0.017324613,0.019541207,0.01957416,0.019607114 +49,UT,12,OFF-HIGHWAY,PM10,3.43783,3.49884,3.44115,3.38052,3.40869,3.287858,3.224808,1.850153553,1.844802489,1.839451426,1.834100363,1.903386392,1.972672421,1.945739056,1.846017656,1.810289496,1.715799379,1.634459759,1.553120139,1.47178052,1.37428271,1.038925576,1.17928709,1.11769382,1.05610055 +49,UT,12,OFF-HIGHWAY,NOX,34.1115,38.35793,38.43288,38.33506,41.36391,37.956892,37.828277,29.51316809,28.93011201,28.34705593,27.76399985,25.69568649,23.62737313,25.61292812,23.24179816,22.78741894,21.25293709,19.84185553,18.43077396,17.01969239,16.92527223,15.11024818,16.73643192,16.13770471,15.53897749 +49,UT,12,OFF-HIGHWAY,SO2,2.93174,3.79495,3.86477,3.94404,4.26264,4.127846,4.224448,2.487007118,2.493555925,2.500104732,2.506653539,2.044150185,1.581646832,1.135032606,1.081391749,0.961298388,0.288032669,0.24264209,0.19725151,0.151860931,0.210987618,0.315126534,0.329240993,0.34074222,0.352243446 +49,UT,12,OFF-HIGHWAY,VOC,24.6855,26.66608,25.35308,24.90003,25.41367,24.8351,24.802869,28.08250049,27.58968638,27.09687227,26.60405816,26.19160862,25.77915908,24.00002752,23.9020858,23.08888068,22.20842627,20.92893109,19.64943591,18.36994074,15.47502796,10.10373273,9.68520241,9.411162435,9.13712246 +49,UT,12,OFF-HIGHWAY,CO,174.62612,195.20605,190.01992,189.96594,192.82315,192.896599,196.458577,184.0644412,179.3219344,174.5794277,169.8369209,162.6598973,155.4828738,146.3449309,130.6432807,126.8917571,125.566923,120.4845222,115.4021213,110.3197205,106.5693573,97.5823316,99.06863085,99.8741195,100.6796081 +49,UT,12,OFF-HIGHWAY,PM25,3.15252,3.20872,3.15606,3.1017,3.07071,3.014218,2.956628,1.759073485,1.74757828,1.736083074,1.724587869,1.78306093,1.841533992,1.786079129,1.689488166,1.65523383,1.624749967,1.542599539,1.460449112,1.378298684,1.275068676,0.981044973,1.068608658,1.016907594,0.96520653 +49,UT,14,MISCELLANEOUS,SO2,0.014,0.33704,0.04527,0.06807,1.54623,2.001911,1.371661,0.140382284,0.251353142,0.362324001,0.473294859,0.316249826,0.159204794,0.002159761,0.022552129,0.042944496,0.063336863,0.043658009,0.023979154,0.0043003,0.004243708,0.004187117,0.004130526,0.004130526,0.004130526 +49,UT,14,MISCELLANEOUS,VOC,1.94576,42.71864,5.08897,7.74968,18.54367,22.292937,17.36158,7.799068625,11.29290009,14.78673155,18.28056302,16.28696014,14.29335726,12.29975438,8.327402562,4.355050742,0.382698922,0.585284625,0.787870329,0.990456033,1.107517839,1.224579644,1.34164145,1.34164145,1.34164145 +49,UT,14,MISCELLANEOUS,PM25,35.27848,53.7952,34.64707,37.68152,63.344717,68.070028,56.683663,14.91333552,16.20186866,17.49040181,18.77893495,20.86382796,22.94872097,25.03361398,22.51416097,19.99470795,17.47525494,18.35350582,19.2317567,20.11000758,19.27713692,18.44426627,17.61139561,17.61139561,17.61139561 +49,UT,14,MISCELLANEOUS,PM10,185.41843,182.46027,173.44839,176.80064,224.26227,222.344874,207.4103892,82.40949735,83.92996519,85.45043303,86.97090087,121.1856787,155.4004566,189.6152345,177.5711876,165.5271408,153.4830939,154.5699508,155.6568078,156.7436647,149.8974617,143.0512588,136.2050558,136.2050558,136.2050558 +49,UT,14,MISCELLANEOUS,NOX,2.4331,9.05992,1.32664,1.97243,7.34819,9.039123,6.771121,0.956030873,1.175352218,1.394673562,1.613994906,1.277282671,0.940570435,0.6038582,0.470158672,0.336459145,0.202759618,0.144965117,0.087170616,0.029376115,0.028510572,0.027645029,0.026779485,0.026779485,0.026779485 +49,UT,14,MISCELLANEOUS,NH3,25.21162,29.7099,30.63841,31.77976,35.37597,35.17373,26.37221342,20.63002686,20.87312738,21.11622791,21.35932844,27.45249424,33.54566004,39.63882585,35.50677935,31.37473284,27.24268634,24.31472554,21.38676475,18.45880395,24.13184652,29.80488909,35.47793166,35.47793166,35.47793166 +49,UT,14,MISCELLANEOUS,CO,40.06612,316.55516,45.51658,67.79839,302.91911,381.064083,274.634786,46.228419,61.00235054,75.77628209,90.55021363,67.16680955,43.78340547,20.40000139,15.55863981,10.71727822,5.87591664,4.152185113,2.428453586,0.704722059,0.710194955,0.715667851,0.721140746,0.721140746,0.721140746 +49,UT,15,WILDFIRES,NOX,,,,,,,,2.32745,2.32745,2.32745,1.126017194,1.126017194,1.126017194,0.864581875,0.864581875,0.864581875,0.432417341,0.432417341,0.432417341,0.501386409,0.501386409,0.501386409,4.006947198,4.006947198,4.006947198 +49,UT,15,WILDFIRES,VOC,,,,,,,,51.93959,51.93959,51.93959,16.70522125,16.70522125,16.70522125,19.25056147,19.25056147,19.25056147,6.193280322,6.193280322,6.193280322,6.903312698,6.903312698,6.903312698,77.32681449,77.32681449,77.32681449 +49,UT,15,WILDFIRES,PM10,,,,,,,,21.84296,21.84296,21.84296,7.328541978,7.328541978,7.328541978,8.105117874,8.105117874,8.105117874,2.728725098,2.728725098,2.728725098,3.056793447,3.056793447,3.056793447,32.97654937,32.97654937,32.97654937 +49,UT,15,WILDFIRES,PM25,,,,,,,,18.51058,18.51058,18.51058,6.210628796,6.210628796,6.210628796,6.868741669,6.868741669,6.868741669,2.312479511,2.312479511,2.312479511,2.590503711,2.590503711,2.590503711,27.94622705,27.94622705,27.94622705 +49,UT,15,WILDFIRES,NH3,,,,,,,,3.61136,3.61136,3.61136,1.162102348,1.162102348,1.162102348,1.339169024,1.339169024,1.339169024,0.430828426,0.430828426,0.430828426,0.480227434,0.480227434,0.480227434,5.379249465,5.379249465,5.379249465 +49,UT,15,WILDFIRES,SO2,,,,,,,,1.44076,1.44076,1.44076,0.580351611,0.580351611,0.580351611,0.538112461,0.538112461,0.538112461,0.219666439,0.219666439,0.219666439,0.250706019,0.250706019,0.250706019,2.322673018,2.322673018,2.322673018 +49,UT,15,WILDFIRES,CO,,,,,,,,225.83304,225.83304,225.83304,70.61323211,70.61323211,70.61323211,81.89328497,81.89328497,81.89328497,26.16110786,26.16110786,26.16110786,29.13700204,29.13700204,29.13700204,328.3114801,328.3114801,328.3114801 +49,UT,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.6069059,1.886496859,3.166087819,4.445678778,4.262359855,4.079040931,3.895722008,2.848130186,1.800538365,0.752946543,0.752946543,0.752946543 +49,UT,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,5.5732205,21.33309513,37.09296976,52.85284439,50.10948852,47.36613264,44.62277677,32.66602297,20.70926917,8.752515379,8.752515379,8.752515379 +49,UT,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.6743402,2.198193288,3.722046376,5.245899464,5.029584261,4.813269059,4.596953856,3.36079487,2.124635885,0.888476899,0.888476899,0.888476899 +49,UT,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.1586683,0.297362168,0.436056035,0.574749903,0.607594516,0.640439129,0.673283742,0.487952733,0.302621725,0.117290716,0.117290716,0.117290716 +49,UT,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.9520091,4.777578303,8.603147507,12.42871671,11.80110424,11.17349178,10.54587931,7.718717071,4.891554832,2.064392594,2.064392594,2.064392594 +49,UT,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.086134217,0.174894812,0.263655406,0.352416001,0.353289467,0.354162933,0.3550364,0.258398239,0.161760079,0.065121919,0.065121919,0.065121919 +49,UT,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.178710171,0.40734249,0.635974808,0.864607127,0.82094685,0.777286573,0.733626297,0.536954143,0.34028199,0.143609836,0.143609836,0.143609836 +50,VT,1,FUEL COMB. ELEC. UTIL.,SO2,0.00041,0.05338,0.05433,0.05587,0.04694,0.056841,0.055054,0.035900001,0.004466,0.008068,0.01277866,0.011944,0.005626,0.001897,0.002475954,0.003054908,0.003633861,0.003229252,0.002824643,0.002420035,0.00228732,0.002154605,0.00202189,0.001233,0.001159 +50,VT,1,FUEL COMB. ELEC. UTIL.,NOX,0.18929,1.0044,1.03635,1.08781,0.87109,0.952325,0.88384,0.436310003,0.287099,0.284107,0.50377405,0.343014,0.376513,0.295505,0.296458067,0.297411133,0.2983642,0.292697,0.2870298,0.2813626,0.261797033,0.242231467,0.2226659,0.141699,0.132694 +50,VT,1,FUEL COMB. ELEC. UTIL.,PM10,0.00021,0.05614,0.05884,0.09378,0.092584,0.086734,0.055715,0.041952136,0.041683152,0.041414167,0.041145182,0.041972088,0.042798994,0.0436259,0.029968373,0.016310847,0.00265332,0.00283026,0.0030072,0.00318414,0.003043755,0.00290337,0.002762985,0.002762985,0.002762985 +50,VT,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00011,0.00006,0.00038,0.000409,0.002129,0.000353,0.011051,0.007367333,0.003683667,,0.005033433,0.010066867,0.0151003,0.014457367,0.013814433,0.0131715,0.014319867,0.015468233,0.0166166,0.015830647,0.015044693,0.01425874,0.01425874,0.01425874 +50,VT,1,FUEL COMB. ELEC. UTIL.,VOC,0.0006,0.0535,0.05598,0.22267,0.0476,0.050144,0.044741,0.019479999,0.021244166,0.023008332,0.024772499,0.027635399,0.0304983,0.0333612,0.02784812,0.02233504,0.01682196,0.018954707,0.021087453,0.0232202,0.0233749,0.0235296,0.0236843,0.0236843,0.0236843 +50,VT,1,FUEL COMB. ELEC. UTIL.,CO,0.01377,0.17442,0.18281,1.7892,1.09929,1.265953,1.117494,0.864650028,0.930092113,0.995534197,1.060976282,1.105310855,1.149645427,1.19398,1.16330662,1.13263324,1.10195986,1.04581374,0.98966762,0.9335215,0.90044675,0.867372,0.83429725,0.83429725,0.83429725 +50,VT,1,FUEL COMB. ELEC. UTIL.,PM25,0,0.0527,0.05521,0.08937,0.089574,0.08454,0.053233,0.032634025,0.035066152,0.037498279,0.039930406,0.040825671,0.041720935,0.0426162,0.02922024,0.01582428,0.00242832,0.002323593,0.002218867,0.00211414,0.002000422,0.001886703,0.001772985,0.001772985,0.001772985 +50,VT,2,FUEL COMB. INDUSTRIAL,VOC,0.15618,0.12715,0.12194,0.12202,0.16365,0.165412,0.179394,0.054493187,0.061016521,0.067539854,0.074063188,0.062076595,0.050090003,0.03810341,0.038033888,0.037964366,0.037894843,0.04613703,0.054379217,0.062621403,0.072323228,0.082025053,0.091726878,0.091726878,0.091726878 +50,VT,2,FUEL COMB. INDUSTRIAL,SO2,5.30218,7.8199,7.33187,7.1056,4.17902,4.350438,4.614061,3.033974918,3.037754918,3.041534917,3.045314917,2.43471861,1.824122302,1.213525995,1.204577118,1.195628241,1.186679364,0.938307562,0.689935759,0.441563956,0.330298317,0.219032678,0.107767038,0.107767038,0.107767038 +50,VT,2,FUEL COMB. INDUSTRIAL,PM25,0.20812,0.53319,0.50669,0.50303,0.405104,0.421581,0.453434,0.123448904,0.15551241,0.187575915,0.21963942,0.348388751,0.477138083,0.605887415,0.61503269,0.624177965,0.633299796,0.458885786,0.284471775,0.110057764,0.117899838,0.125741913,0.133583987,0.133583987,0.133583987 +50,VT,2,FUEL COMB. INDUSTRIAL,PM10,0.31654,0.75616,0.71679,0.7081,0.56514,0.592254,0.634432,0.159447243,0.196935443,0.234423643,0.271911843,0.426350629,0.580789414,0.7352282,0.741850981,0.748473762,0.755095199,0.547952267,0.340809334,0.133666401,0.139053655,0.144440908,0.149828161,0.149828161,0.149828161 +50,VT,2,FUEL COMB. INDUSTRIAL,NOX,0.97425,1.36856,1.29406,1.24989,1.20249,1.287035,1.349716,0.645290183,0.708010184,0.770730184,0.833450184,0.84291649,0.852382795,0.8618491,1.190357566,1.518866032,1.847374497,1.600745453,1.354116409,1.107487365,1.219387079,1.331286792,1.443186506,1.443186506,1.443186506 +50,VT,2,FUEL COMB. INDUSTRIAL,NH3,0.00823,0.00928,0.00915,0.00882,0.00751,0.007794,0.008458,0.009853379,0.009853379,0.009853379,0.009853379,0.014508553,0.019163726,0.0238189,0.022225725,0.020632549,0.019039374,0.016208525,0.013377676,0.010546827,0.0109366,0.011326374,0.011716148,0.011716148,0.011716148 +50,VT,2,FUEL COMB. INDUSTRIAL,CO,0.72045,1.1751,1.12835,1.12859,1.42532,1.439416,1.566951,0.607441904,0.749855237,0.892268571,1.034681904,1.022921469,1.011161035,0.9994006,1.017489238,1.035577876,1.053666514,0.82021757,0.586768627,0.353319683,0.387109837,0.42089999,0.454690144,0.454690144,0.454690144 +50,VT,3,FUEL COMB. OTHER,PM25,5.09671,2.43962,2.43996,2.42593,5.465489,2.93654,2.948074,3.866906386,3.866572866,3.866239346,3.865905825,4.832459291,5.799012757,6.765566223,6.911682691,7.057799158,7.451475102,7.568664272,7.685853441,7.803042611,6.943404135,6.08376566,5.224127184,5.224127184,5.224127184 +50,VT,3,FUEL COMB. OTHER,CO,41.08085,20.63736,20.53231,20.17258,39.051268,18.762834,18.772808,31.13101615,31.13091615,31.13081615,31.13071615,35.42869956,39.72668297,44.02466638,44.97023527,45.91580417,48.25393806,48.57088034,48.88782261,49.20476489,45.78458489,42.36440489,38.94422488,38.94422488,38.94422488 +50,VT,3,FUEL COMB. OTHER,NH3,0.05447,0.05997,0.05947,0.05121,0.05248,0.053052,0.053718,0.01992951,0.01992951,0.01992951,0.01992951,0.160162133,0.300394757,0.440627381,0.440003614,0.439379848,0.445718892,0.44986752,0.454016148,0.458164777,0.417566947,0.376969118,0.336371288,0.336371288,0.336371288 +50,VT,3,FUEL COMB. OTHER,PM10,5.19675,2.58005,2.58362,2.55701,5.577112,3.050609,3.065038,4.203608379,4.203264026,4.202919673,4.202575319,5.078931082,5.955286845,6.831642608,6.978046977,7.124451346,7.518421977,7.634227859,7.750033742,7.865839624,7.007236848,6.148634072,5.290031295,5.290031295,5.290031295 +50,VT,3,FUEL COMB. OTHER,SO2,5.48995,7.88569,7.98973,6.71543,3.745175,3.757166,3.812673,3.200473937,3.202480604,3.204487271,3.206493937,3.026220516,2.845947095,2.665673674,2.491383962,2.31709425,2.15065703,1.73061743,1.310577829,0.890538229,0.756113577,0.621688925,0.487264272,0.487264272,0.487264272 +50,VT,3,FUEL COMB. OTHER,VOC,7.61574,5.44579,5.43099,5.38416,12.600103,5.359038,5.360168,10.02513468,8.574784107,7.12443353,5.674082954,6.140433988,6.606785023,7.073136057,7.174438103,7.275740148,7.637762193,7.522451852,7.407141511,7.291831171,6.65496387,6.018096569,5.381229268,5.381229268,5.381229268 +50,VT,3,FUEL COMB. OTHER,NOX,12.79968,13.5172,13.21485,11.94902,2.967862,2.739545,2.778361,2.763567103,2.763687103,2.763807103,2.763927103,2.756343394,2.748759686,2.741175978,2.600925912,2.460675845,2.327548458,2.491451273,2.655354088,2.819256902,2.799270957,2.779285012,2.759299066,2.759299066,2.759299066 +50,VT,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0.012074,0.024148,0.036222,0.036222,0.036222 +50,VT,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0.012074,0.024148,0.036222,0.036222,0.036222 +50,VT,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.00638,0.0162,0.0162,0.0162,0.0162,0.018906,0.018906,0.10567,0.10507,0.10447,0.10387,0.069246667,0.034623333,,0,0,0,0,0,,0,0,0,0,0 +50,VT,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,5,METALS PROCESSING,CO,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,5,METALS PROCESSING,VOC,,,,,,,,0.01029,0.01029,0.01029,0.01029,0.00686,0.00343,,0,0,0,0,0,,0,0,0,0,0 +50,VT,5,METALS PROCESSING,SO2,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,5,METALS PROCESSING,PM25,,,,,,,,0.001527106,0.001527106,0.001527106,0.001527106,0.001018071,0.000509035,,0,0,0,0,0,,0,0,0,0,0 +50,VT,5,METALS PROCESSING,NOX,,,,,,,,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,5,METALS PROCESSING,PM10,,,,,,,,0.001697106,0.001697106,0.001697106,0.001697106,0.001131404,0.000565702,,0,0,0,0,0,,0,0,0,0,0 +50,VT,6,PETROLEUM & RELATED INDUSTRIES,PM10,,0.0092,0.00951,0.00951,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,6,PETROLEUM & RELATED INDUSTRIES,PM25,,0.00134,0.00137,0.00137,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,6,PETROLEUM & RELATED INDUSTRIES,SO2,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,6,PETROLEUM & RELATED INDUSTRIES,CO,,0.0021,0.00217,0.00217,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,6,PETROLEUM & RELATED INDUSTRIES,VOC,,0.0016,0.00165,0.00165,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,6,PETROLEUM & RELATED INDUSTRIES,NOX,,0.002,0.00207,0.00207,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,7,OTHER INDUSTRIAL PROCESSES,SO2,,0.0037,0.00383,0.00383,,,,0.002782328,0.002888994,0.002995661,0.003102328,0.002075418,0.001048509,0.0000216,0.0000144,0.0000072,0,0,0,0,0,0,0,0,0 +50,VT,7,OTHER INDUSTRIAL PROCESSES,VOC,0.00735,0.3083,0.3187,0.3198,0.1609,0.165542,0.195898583,0.066838349,0.096161683,0.125485017,0.15480835,0.112573901,0.070339452,0.028105003,0.037543693,0.046982383,0.056421072,0.056987655,0.057554238,0.058120821,0.056399492,0.054678164,0.052956835,0.052956835,0.052956835 +50,VT,7,OTHER INDUSTRIAL PROCESSES,PM25,0.31367,0.62601,0.65407,0.7759,0.58889,0.640709,0.827779803,0.797066279,0.802144423,0.807222568,0.812300713,0.65517906,0.498057407,0.340935755,0.355634435,0.370333116,0.385031796,0.389677036,0.394322276,0.398967516,0.419846068,0.44072462,0.461603173,0.461603173,0.461603173 +50,VT,7,OTHER INDUSTRIAL PROCESSES,PM10,1.06191,2.66385,2.78402,3.38569,2.641874,2.866574,3.073635426,2.876071527,2.885626416,2.895181305,2.904736194,2.386810246,1.868884299,1.350958351,1.354489013,1.358019675,1.361550337,1.314156127,1.266761917,1.219367707,1.24266333,1.265958953,1.289254575,1.289254575,1.289254575 +50,VT,7,OTHER INDUSTRIAL PROCESSES,NOX,,0.075,0.07771,0.07771,,,,0,0.000113333,0.000226667,0.00034,0.000228667,0.000117333,0.000006,0.000004,0.000002,0,0.004080107,0.008160215,0.012240322,0.009524187,0.006808053,0.004091918,0.004091918,0.004091918 +50,VT,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00005,0.00005,0.00005,0,0,,0.130451,0.131865667,0.133280333,0.134695,0.089796667,0.044898333,,0.001507333,0.003014667,0.004522,0.003703667,0.002885333,0.002067,0.002007,0.001947,0.001887,0.001887,0.001887 +50,VT,7,OTHER INDUSTRIAL PROCESSES,CO,,0.5285,0.5476,0.5476,,,0.07236983,0.07215,0.072166667,0.072183333,0.0722,0.067821499,0.063442997,0.059064496,0.06530932,0.071554143,0.077798967,0.268380154,0.458961342,0.64954253,0.534826456,0.420110382,0.305394308,0.305394308,0.305394308 +50,VT,8,SOLVENT UTILIZATION,NH3,,,,,0,0,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,8,SOLVENT UTILIZATION,NOX,0.00004,0.0012,0.00128,0.00113,,,,0,4.33E-05,8.67E-05,0.00013,8.67E-05,4.33E-05,0,0,0,0,0,0,0,0,0,0,0,0 +50,VT,8,SOLVENT UTILIZATION,PM10,,0.0001,0.00011,0.00009,,,,0.001829114,0.001224262,0.000619411,1.46E-05,9.71E-06,4.85E-06,0,0,0,0,0,0,0,0,0,0,0,0 +50,VT,8,SOLVENT UTILIZATION,PM25,,0.00008,0.00009,0.00008,,,,0.001829114,0.001223729,0.000618344,1.30E-05,8.64E-06,4.32E-06,0,0,0,0,0,0,0,0,0,0,0,0 +50,VT,8,SOLVENT UTILIZATION,SO2,,0.0017,0.00181,0.00159,,,,0,7.33E-05,0.000146667,0.00022,0.000146667,7.33E-05,0,0,0,0,0,0,0,0,0,0,0,0 +50,VT,8,SOLVENT UTILIZATION,VOC,12.79826,15.2029,15.55399,12.49886,12.1333,12.146683,12.633456,7.493403196,7.446939864,7.400476531,7.354013199,6.312514606,5.271016013,4.22951742,4.374442174,4.519366929,4.664290843,5.104761831,5.545232819,5.985703807,5.832763477,5.679823146,5.526882816,5.526882816,5.526882816 +50,VT,8,SOLVENT UTILIZATION,CO,,0.0003,0.00032,0.00028,,,,0,6.67E-06,1.33E-05,0.00002,1.33E-05,6.67E-06,0,0,0,0,0,0,0,0,0,0,0,0 +50,VT,9,STORAGE & TRANSPORT,PM25,,0.00788,0.00825,0.00842,0.006501,0.006918,0.007477,1.60E-05,1.36E-05,1.12E-05,8.84E-06,5.89E-06,2.95E-06,,0,0,0,0,0,,0.00069,0.00138,0.00207,0.00207,0.00207 +50,VT,9,STORAGE & TRANSPORT,PM10,,0.0154,0.0161,0.01645,0.010206,0.01086,0.011737,4.52E-05,3.42E-05,2.32E-05,1.22E-05,8.16E-06,4.08E-06,,0,0,0,0,0,,0.00069,0.00138,0.00207,0.00207,0.00207 +50,VT,9,STORAGE & TRANSPORT,VOC,4.6237,4.8951,4.8951,4.8951,4.462782,4.489558,4.560962,1.175143277,1.175753278,1.176363278,1.176973278,0.992941054,0.80890883,0.624876607,0.723320387,0.821764168,0.517060609,0.634159856,0.751259103,0.86835835,0.953863455,1.039368561,1.124873666,1.124873666,1.124873666 +50,VT,9,STORAGE & TRANSPORT,NOX,,,,,,,,0.0011,0.001296667,0.001493333,0.00169,0.001126667,0.000563333,,0,0,0,0,0,,0,0,0,0,0 +50,VT,9,STORAGE & TRANSPORT,SO2,,,,,,,,4.00E-05,3.00E-05,2.00E-05,0.00001,6.67E-06,3.33E-06,,0,0,0,0,0,,0,0,0,0,0 +50,VT,9,STORAGE & TRANSPORT,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +50,VT,9,STORAGE & TRANSPORT,CO,,,,,,,,0.00028,0.001566667,0.002853333,0.00414,0.00276,0.00138,,0,0,0,0,0,,0,0,0,0,0 +50,VT,10,WASTE DISPOSAL & RECYCLING,CO,,10.22882,11.15689,10.6767,8.770837,11.61457,11.61457,11.46775157,11.46775157,11.46775157,11.46775157,10.78171577,10.09567997,9.409644172,8.233784188,7.057924203,5.882064219,5.993473897,6.104883574,6.216293252,5.437906198,4.659519145,3.881132091,3.881132091,3.881132091 +50,VT,10,WASTE DISPOSAL & RECYCLING,NH3,0.16645,0.19141,0.19141,0.20097,0.20097,0.210615,0.210615,0.069810786,0.069810786,0.069810786,0.069810786,0.047042524,0.024274262,0.001506,0.001526733,0.001547467,0.0015682,0.007535403,0.013502607,0.01946981,0.023205409,0.026941009,0.030676608,0.030676608,0.030676608 +50,VT,10,WASTE DISPOSAL & RECYCLING,NOX,,0.41818,0.45347,0.44129,0.266199,0.45429,0.45429,0.380745699,0.380745699,0.380745699,0.380745699,0.353752234,0.32675877,0.299765305,0.263129011,0.226492716,0.189856422,0.194627713,0.199399005,0.204170296,0.180568173,0.156966051,0.133363928,0.133363928,0.133363928 +50,VT,10,WASTE DISPOSAL & RECYCLING,PM10,1.22369,2.0317,2.17829,2.14238,1.069701,2.277635,2.278812,1.373519265,1.373519265,1.373519265,1.373519265,1.467575989,1.561632713,1.655689437,1.341168797,1.026648158,0.712127518,0.723388561,0.734649604,0.745910647,0.729522452,0.713134258,0.696746063,0.696746063,0.696746063 +50,VT,10,WASTE DISPOSAL & RECYCLING,PM25,1.08615,1.92088,2.06121,2.02365,1.046921,2.154983,2.155821,1.323101911,1.323101911,1.323101911,1.323101911,1.343244364,1.363386818,1.383529271,1.111968237,0.840407202,0.568846168,0.578082859,0.58731955,0.596556241,0.609220695,0.621885149,0.634549603,0.634549603,0.634549603 +50,VT,10,WASTE DISPOSAL & RECYCLING,SO2,0.0671,0.05664,0.05947,0.06076,0.032532,0.063125,0.063958,0.023144596,0.023144596,0.023144596,0.023144596,0.017861898,0.0125792,0.007296502,0.006768641,0.006240779,0.005712917,0.024415785,0.043118652,0.06182152,0.054661936,0.047502353,0.04034277,0.04034277,0.04034277 +50,VT,10,WASTE DISPOSAL & RECYCLING,VOC,0.28529,1.56636,1.6723,1.65168,0.709519,1.746802,1.746802,1.026048134,1.026048134,1.026048134,1.026048134,0.912107957,0.798167781,0.684227604,0.605170132,0.52611266,0.447055188,0.495390993,0.543726798,0.592062603,0.558661614,0.525260625,0.491859635,0.491859635,0.491859635 +50,VT,11,HIGHWAY VEHICLES,NH3,0.43701,0.59572,0.67096,0.6495,0.67192,0.67109,0.95358,0.54091905,0.483514078,0.426109105,0.368704132,0.360468923,0.352233714,0.322649304,0.323866322,0.28192934,0.270693519,0.2545908,0.238488081,0.222385363,0.21374618,0.206124454,0.201870213,0.186894761,0.185801483 +50,VT,11,HIGHWAY VEHICLES,VOC,26.62628,16.94311,16.09387,15.53549,14.64065,13.34233,17.82735,13.74109152,11.86739685,9.993702192,8.120007529,7.721601912,7.323196294,6.273601431,7.214691677,6.111890133,5.304601289,5.044159529,4.78371777,4.523276011,4.228096367,3.359186543,3.097002208,3.01377508,2.860637303 +50,VT,11,HIGHWAY VEHICLES,SO2,1.68196,0.84003,0.86135,0.866,0.88007,0.7379,1.05056,0.708774618,0.586740981,0.464707343,0.342673706,0.209548791,0.076423877,0.073257463,0.081915736,0.078199852,0.065444575,0.07060936,0.075774145,0.08093893,0.081533976,0.080104226,0.069440222,0.031492122,0.024044419 +50,VT,11,HIGHWAY VEHICLES,PM25,1.12456,0.71095,0.66655,0.60901,0.55692,0.50781,0.66629,0.923624198,0.822329433,0.721034669,0.619739905,0.586904847,0.55406979,0.477092019,0.528849953,0.423860148,0.404831131,0.375113555,0.345395978,0.315678402,0.290107143,0.219856969,0.184275025,0.2257874,0.219187834 +50,VT,11,HIGHWAY VEHICLES,NOX,31.01975,25.8816,25.93704,25.31385,24.37106,23.68361,31.21294,29.33553146,25.06559366,20.79565586,16.52571805,15.03933659,13.55295514,12.21225339,13.53443708,11.47926893,10.80753872,9.74468707,8.681835422,7.618983775,6.877963323,5.313793634,5.12117516,4.561161572,4.15267531 +50,VT,11,HIGHWAY VEHICLES,CO,352.11235,244.80941,238.11241,232.07494,217.68669,215.28104,286.74324,187.9556488,160.0788597,132.2020706,104.3252816,92.76673619,81.20819082,66.71012978,75.78702269,66.27979264,49.03608757,48.40591186,47.77573615,47.14556044,44.51579627,36.88648525,36.76237247,33.78846517,32.13941544 +50,VT,11,HIGHWAY VEHICLES,PM10,1.32201,0.87202,0.8288,0.766,0.71166,0.65756,0.87316,1.106849328,0.989405235,0.871961142,0.754517049,0.728356172,0.702195295,0.616037089,0.689983902,0.570684911,0.705381591,0.698017402,0.690653213,0.683289025,0.661014324,0.529965433,0.426421637,0.600175311,0.60768395 +50,VT,12,OFF-HIGHWAY,CO,54.37996,60.51635,59.24979,59.36626,59.7612,60.29097,61.43041,60.52670159,60.01686165,59.5070217,58.99718175,57.31952743,55.6418731,50.59433321,45.18189156,42.98559597,41.87987689,40.47365018,39.06742346,37.66119675,36.51833928,34.54870808,34.23262433,34.14203049,34.05143666 +50,VT,12,OFF-HIGHWAY,SO2,0.29075,0.37954,0.38636,0.39858,0.41256,0.42384,0.43632,0.370731517,0.376427963,0.382124409,0.387820855,0.298611122,0.209401389,0.08250304,0.081829226,0.051213709,0.029003084,0.02782292,0.026642756,0.025462592,0.028906735,0.039476708,0.035795021,0.036650196,0.037505372 +50,VT,12,OFF-HIGHWAY,PM25,0.51322,0.53672,0.53077,0.52781,0.52085,0.51268,0.504,0.511158663,0.507406059,0.503653454,0.499900849,0.496643597,0.493386344,0.461955725,0.457931963,0.448540687,0.449622768,0.431755081,0.413887395,0.396019708,0.434287945,0.537328881,0.51082442,0.487219961,0.463615502 +50,VT,12,OFF-HIGHWAY,VOC,8.9905,9.59323,9.26464,9.15427,9.12384,9.11826,9.12621,10.49935005,10.58895563,10.67856121,10.76816679,10.63219254,10.4962183,10.13240027,9.774673001,9.516820451,9.153642909,8.677802802,8.201962695,7.726122588,6.728764547,5.02552891,4.734048466,4.574297047,4.414545628 +50,VT,12,OFF-HIGHWAY,PM10,0.56104,0.58581,0.57958,0.57601,0.56847,0.55971,0.55022,0.545197692,0.54163518,0.538072668,0.534510157,0.531733714,0.528957271,0.506289006,0.502187356,0.492367222,0.479393744,0.460698967,0.44200419,0.423309413,0.461455569,0.565532417,0.537747881,0.513285739,0.488823597 +50,VT,12,OFF-HIGHWAY,NOX,3.40158,3.8184,3.89144,3.92372,3.964,3.98542,3.99243,4.180350753,4.110645017,4.040939281,3.971233545,4.234212137,4.497190729,4.489181795,4.39124865,4.268324254,4.14990748,3.982977506,3.816047532,3.649117558,4.308368692,5.861753106,5.626870959,5.403900072,5.180929184 +50,VT,12,OFF-HIGHWAY,NH3,0.05129,0.05972,0.05955,0.06137,0.0065,0.0065,0.0065,0.004547659,0.004652836,0.004758013,0.00486319,0.005083957,0.005304724,0.005407168,0.005516206,0.005609356,0.00576142,0.005829495,0.00589757,0.005965644,0.007610788,0.010266884,0.010901074,0.011102459,0.011303844 +50,VT,14,MISCELLANEOUS,SO2,0.00028,0.00068,0.00116,0.0023,0.02289,0.04833,0.04115,,,,0.016074273,0.010812572,0.005550871,0.000289169,0.001552346,0.002815522,0.004078699,0.002855035,0.001631372,0.000407709,0.000395499,0.000383289,0.000371079,0.000371079,0.000371079 +50,VT,14,MISCELLANEOUS,PM25,10.40723,7.36523,8.30714,8.09895,9.2162,8.439111,9.5263327,4.31842,4.366547111,4.414674221,4.462801332,4.376089489,4.289377647,4.202665804,3.953579765,3.704493726,3.455407687,2.960562463,2.46571724,1.970872017,2.68662031,3.402368603,4.118116896,4.118116896,4.118116896 +50,VT,14,MISCELLANEOUS,PM10,61.01586,42.30095,47.71704,46.32837,51.91746,45.617771,57.7221063,47.43891,47.49569999,47.55248998,47.60927997,45.5364381,43.46359623,41.39075436,36.54003497,31.68931558,26.83859618,22.0082442,17.17789221,12.34754023,19.99355406,27.63956789,35.28558172,35.28558172,35.28558172 +50,VT,14,MISCELLANEOUS,CO,,1.23335,2.05478,2.43668,3.9277,8.25637,7.03241,0.02571,0.541389823,1.057069646,1.572749469,1.073220137,0.573690806,0.074161475,0.18379016,0.293418844,0.403047529,0.296000766,0.188954004,0.081907242,0.054772535,0.027637827,0.000503119,0.000503119,0.000503119 +50,VT,14,MISCELLANEOUS,NOX,,0.02305,0.03807,0.06411,0.08434,0.17717,0.15092,0.0005998,0.012485185,0.024370569,0.036255954,0.025388827,0.0145217,0.003654573,0.007156663,0.010658753,0.014160844,0.010989663,0.007818483,0.004647303,0.003300816,0.001954328,0.000607841,0.000607841,0.000607841 +50,VT,14,MISCELLANEOUS,NH3,8.74471,8.71348,8.72327,8.97683,9.06575,9.07592,9.378636123,8.839868638,8.848426464,8.856984291,8.865542117,8.428519374,7.991496631,7.554473888,7.633017185,7.711560482,7.790103779,6.3308858,4.87166782,3.412449841,4.235826386,5.05920293,5.882579475,5.882579475,5.882579475 +50,VT,14,MISCELLANEOUS,VOC,,0.07194,0.11432,0.29228,0.19015,0.3938,0.33617,0.00471235,0.127731106,0.250749861,0.373768617,0.253842669,0.13391672,0.013990772,0.0205517,0.027112627,0.033673555,0.100780971,0.167888388,0.234995804,0.289371001,0.343746198,0.398121395,0.398121395,0.398121395 +50,VT,15,WILDFIRES,SO2,,,,,,,,0.00034082,0.00034082,0.00034082,,0,0,,0,0,0.000495255,0.000495255,0.000495255,0.002852322,0.002852322,0.002852322,0.001082787,0.001082787,0.001082787 +50,VT,15,WILDFIRES,CO,,,,,,,,0.0692,0.0692,0.0692,,0,0,,0,0,0.056360198,0.056360198,0.056360198,0.300704072,0.300704072,0.300704072,0.139789326,0.139789326,0.139789326 +50,VT,15,WILDFIRES,NH3,,,,,,,,0.000938451,0.000938451,0.000938451,,0,0,,0,0,0.000929533,0.000929533,0.000929533,0.00497294,0.00497294,0.00497294,0.002296318,0.002296318,0.002296318 +50,VT,15,WILDFIRES,NOX,,,,,,,,0.000575045,0.000575045,0.000575045,,0,0,,0,0,0.001003619,0.001003619,0.001003619,0.006040937,0.006040937,0.006040937,0.002012973,0.002012973,0.002012973 +50,VT,15,WILDFIRES,PM10,,,,,,,,0.00642,0.00642,0.00642,,0,0,,0,0,0.005943039,0.005943039,0.005943039,0.032321028,0.032321028,0.032321028,0.014314891,0.014314891,0.014314891 +50,VT,15,WILDFIRES,PM25,,,,,,,,0.00541,0.00541,0.00541,,0,0,,0,0,0.005036444,0.005036444,0.005036444,0.027390685,0.027390685,0.027390685,0.01213136,0.01213136,0.01213136 +50,VT,15,WILDFIRES,VOC,,,,,,,,0.01559,0.01559,0.01559,,0,0,,0,0,0.013362603,0.013362603,0.013362603,0.071486452,0.071486452,0.071486452,0.033010124,0.033010124,0.033010124 +50,VT,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.007091352,0.006098474,0.005105596,0.004112718,0.005244804,0.00637689,0.007508976,0.008475733,0.00944249,0.010409246,0.010409246,0.010409246 +50,VT,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,0.19836683,0.178068012,0.157769195,0.137470377,0.168915343,0.200360309,0.231805275,0.264271597,0.296737919,0.329204241,0.329204241,0.329204241 +50,VT,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,0.07418927,0.06600816,0.057827049,0.049645939,0.061423966,0.073201994,0.084980021,0.096694933,0.108409845,0.120124757,0.120124757,0.120124757 +50,VT,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.014033574,0.011711976,0.009390378,0.00706878,0.009319784,0.011570787,0.013821791,0.015476216,0.017130641,0.018785066,0.018785066,0.018785066 +50,VT,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.013799439,0.01238735,0.010975261,0.009563172,0.011750656,0.013938139,0.016125623,0.018384106,0.020642589,0.022901072,0.022901072,0.022901072 +50,VT,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,0.8377022,0.753045833,0.668389467,0.5837331,0.716493359,0.849253619,0.982013878,1.11989165,1.257769421,1.395647193,1.395647193,1.395647193 +50,VT,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,0.08754343,0.077889699,0.068235968,0.058582237,0.072480303,0.086378369,0.100276435,0.114100043,0.127923652,0.14174726,0.14174726,0.14174726 +51,VA,1,FUEL COMB. ELEC. UTIL.,PM10,2.96227,4.25682,4.38652,3.3877,14.423196,13.736122,14.535252,15.39149803,14.75845927,14.12542051,13.49238175,10.16897697,6.845572193,3.522167414,4.274593337,5.02701926,5.794348468,5.024971729,4.25559499,3.486218251,3.241476946,2.99673564,2.751994335,2.751994335,2.751994335 +51,VA,1,FUEL COMB. ELEC. UTIL.,VOC,0.38969,0.50589,0.54372,0.64928,0.735659,0.78094,0.86705,0.755445606,0.788438039,0.821430473,0.854422906,0.855089908,0.85575691,0.856423912,0.818200773,0.779977634,0.741753519,0.865268996,0.988784473,1.112299951,0.985049036,0.857798121,0.730547206,0.730547206,0.730547206 +51,VA,1,FUEL COMB. ELEC. UTIL.,PM25,0.99897,2.11466,2.19203,1.77512,12.686533,11.929319,12.738946,14.35183957,13.75000158,13.14816359,12.5463256,9.020937997,5.49555039,1.970162783,1.694072653,1.417982524,1.156795679,1.405795735,1.654795792,1.903795848,1.971257581,2.038719314,2.106181047,2.106181047,2.106181047 +51,VA,1,FUEL COMB. ELEC. UTIL.,NOX,84.91511,103.15232,107.79961,110.20379,103.783616,91.945195,88.246191,88.20948731,69.076839,58.877203,64.85960523,48.41847,51.869628,59.00409598,50.68355084,42.3630057,30.21309156,26.84076901,23.46844647,20.09612392,18.10156722,16.10701052,14.11245382,13.544695,8.045652 +51,VA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.02446,0.03088,0.07771,0.086087,0.072192,0.122137,0.191283841,0.193443906,0.195603972,0.197764037,0.22622862,0.254693203,0.283157787,0.25714164,0.231125493,0.205109346,0.291040119,0.376970892,0.462901666,0.520570694,0.578239722,0.63590875,0.63590875,0.63590875 +51,VA,1,FUEL COMB. ELEC. UTIL.,CO,3.12336,3.48981,3.72386,4.19486,7.244426,7.430652,7.724288,7.087996944,7.214332602,7.34066826,7.467003918,7.656863178,7.846722439,8.036581699,7.018960637,6.001339575,4.983709641,5.684638592,6.385567543,7.086496494,6.999315867,6.91213524,6.824954613,6.824954613,6.824954613 +51,VA,1,FUEL COMB. ELEC. UTIL.,SO2,158.90496,192.9897,213.66984,226.18011,234.568193,223.21004,225.790232,243.1428835,215.739938,196.081762,223.4631118,171.365192,172.134525,142.6541301,118.4461013,94.23807261,69.07736667,56.19188678,43.30640689,30.420927,22.57382161,14.72671622,6.879610834,6.943076,1.74474 +51,VA,2,FUEL COMB. INDUSTRIAL,VOC,3.21224,4.9738,4.83761,4.79378,3.175513,3.138401,3.285095,5.328050984,4.837382527,4.346714071,3.856045614,3.639075737,3.42210586,3.205135983,2.452570258,1.700004532,0.949587729,0.92800676,0.906425791,0.884844822,0.879380247,0.873915672,0.868451097,0.868451097,0.868451097 +51,VA,2,FUEL COMB. INDUSTRIAL,SO2,234.22916,83.44934,80.74501,78.87221,48.419932,48.579662,50.501728,53.38035266,53.55114717,53.72194168,53.89273619,45.13379214,36.37484809,27.61590404,23.55499897,19.4940939,14.34898402,13.16127933,11.97357465,10.78586996,7.527392491,4.268915018,1.010437545,1.010437545,1.010437545 +51,VA,2,FUEL COMB. INDUSTRIAL,CO,19.95796,45.2678,43.9046,43.41856,38.894934,38.123133,40.072832,64.20707696,61.46593772,58.72479849,55.98365925,45.06484806,34.14603686,23.22722567,20.04533941,16.86345314,13.71275382,15.12683701,16.5409202,17.95500339,17.7251643,17.49532521,17.26548612,17.26548612,17.26548612 +51,VA,2,FUEL COMB. INDUSTRIAL,NH3,0.15327,0.38208,0.38588,0.38524,0.363468,0.368881,0.361438,1.567216945,1.563586963,1.559956981,1.556326999,1.14842498,0.740522962,0.332620943,0.291240982,0.249861021,0.226290093,0.244734111,0.263178129,0.281622147,0.288552935,0.295483724,0.302414513,0.302414513,0.302414513 +51,VA,2,FUEL COMB. INDUSTRIAL,NOX,84.55139,76.61259,74.94635,73.59813,65.384627,64.727398,67.012083,75.44986354,72.67288752,69.8959115,67.11893547,53.55075478,39.98257409,26.41439339,25.08690646,23.75941952,22.0480349,21.1337463,20.2194577,19.3051691,17.43004313,15.55491715,13.67979118,13.67979118,13.67979118 +51,VA,2,FUEL COMB. INDUSTRIAL,PM10,7.16993,10.41119,10.15126,9.9309,12.92505,12.72681,13.242309,15.88351345,15.96752661,16.05153977,16.13555293,12.54943549,8.963318052,5.377200612,5.55751363,5.737826649,5.883193293,7.043848157,8.204503021,9.365157885,9.439299464,9.513441042,9.58758262,9.58758262,9.58758262 +51,VA,2,FUEL COMB. INDUSTRIAL,PM25,2.11392,2.65368,2.54079,2.51466,6.75497,6.729205,6.92203,6.246698819,6.259857037,6.273015255,6.286173473,5.706152316,5.126131158,4.546110001,4.642080027,4.738050054,4.816764082,5.784224976,6.751685871,7.719146765,7.919657217,8.120167669,8.320678121,8.320678121,8.320678121 +51,VA,3,FUEL COMB. OTHER,NH3,0.25273,0.2608,0.25612,0.22798,0.223186,0.225263,0.227264,0.135229292,0.133945279,0.132661266,0.131377253,0.540605683,0.949834112,1.359062542,1.45672058,1.554378619,1.596136242,1.487861837,1.379587432,1.271313027,1.312170928,1.353028829,1.39388673,1.39388673,1.39388673 +51,VA,3,FUEL COMB. OTHER,NOX,29.50974,13.34873,13.14621,12.31456,23.855157,24.038444,24.381166,16.33149974,16.24141068,16.15132161,16.06123255,14.74084399,13.42045543,12.10006688,11.92223478,11.74440269,11.47032858,11.41679991,11.36327124,11.30974257,11.00221092,10.69467928,10.38714763,10.38714763,10.38714763 +51,VA,3,FUEL COMB. OTHER,PM10,22.49359,10.3603,10.37376,10.33492,10.851212,11.548994,11.573256,26.96376512,26.97231975,26.98087438,26.98942901,20.68411741,14.37880582,8.07349423,9.391566305,10.70963838,11.30215447,9.755086133,8.208017794,6.660949454,7.576260207,8.49157096,9.406881713,9.406881713,9.406881713 +51,VA,3,FUEL COMB. OTHER,PM25,22.12171,9.73706,9.74132,9.7248,10.63549,11.331119,11.353107,13.75256598,13.76208565,13.77160533,13.78112501,11.81676487,9.852404731,7.888044593,9.164400901,10.44075721,11.00176642,9.481690804,7.961615189,6.441539574,7.392180295,8.342821015,9.293461736,9.293461736,9.293461736 +51,VA,3,FUEL COMB. OTHER,SO2,23.65839,8.88123,8.88738,7.83904,10.174574,10.272499,10.355298,16.11385054,16.16340703,16.21296353,16.26252002,13.28761232,10.31270462,7.337796924,6.520450401,5.703103878,4.883720201,6.022193283,7.160666364,8.299139446,6.137040856,3.974942265,1.812843675,1.812843675,1.812843675 +51,VA,3,FUEL COMB. OTHER,VOC,32.81126,23.80712,23.81467,23.79516,11.378594,25.744825,25.759561,54.64572615,41.97058966,29.29545316,16.62031667,14.26777615,11.91523562,9.562695098,10.87910442,12.19551375,12.94034935,10.99337599,9.046402628,7.099429266,8.235056362,9.370683459,10.50631056,10.50631056,10.50631056 +51,VA,3,FUEL COMB. OTHER,CO,178.67613,74.97429,75.15229,75.08213,102.056247,82.930439,83.03442,98.87773711,98.828924,98.78011089,98.73129777,84.85850956,70.98572135,57.11293314,65.55061202,73.9882909,77.91855359,67.49523776,57.07192193,46.64860609,54.72876241,62.80891873,70.88907504,70.88907504,70.88907504 +51,VA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,2.36518,1.73453,1.74817,1.77517,0.614445,0.630192,0.647484,0.446939811,0.454208609,0.461477407,0.468746206,0.416875348,0.36500449,0.313133633,0.264985112,0.216836591,0.168959008,0.212385336,0.255811663,0.299237991,0.274239938,0.249241885,0.224243832,0.224243832,0.224243832 +51,VA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,39.27363,3.88749,3.91895,3.97352,1.337405,1.367851,1.413471,4.811980075,4.71090138,4.609822684,4.508743989,3.275654772,2.042565554,0.809476337,0.701798745,0.594121153,0.486443561,0.585450513,0.684457465,0.783464418,0.761419405,0.739374393,0.71732938,0.71732938,0.71732938 +51,VA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,1.50691,1.42434,1.43527,1.45762,0.453474,0.464975,0.477717,0.388398999,0.350328747,0.312258495,0.274188243,0.242049625,0.209911007,0.177772388,0.142764347,0.107756306,0.073019203,0.103241092,0.133462981,0.163684871,0.161642007,0.159599143,0.15755628,0.15755628,0.15755628 +51,VA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,16.21163,10.66234,10.71949,10.89076,8.539964,8.736688,8.941962,8.061804,7.742412002,7.423020003,7.103628005,7.253633753,7.403639502,7.55364525,7.6047805,7.65591575,7.707051,7.766130913,7.825210827,7.88429074,5.956191144,4.028091549,2.099991953,2.099991953,2.099991953 +51,VA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.00105,0.00105,0.00107,0.014859,0.01521,0.015581,2.157665176,1.72877936,1.299893544,0.871007729,0.883430999,0.89585427,0.908277541,0.877543195,0.84680885,0.816074505,0.969698862,1.12332322,1.276947577,1.045800156,0.814652734,0.583505313,0.583505313,0.583505313 +51,VA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,5.61655,2.37171,2.39559,2.43127,0.315726,0.3189,0.320758,0.320995,0.242912099,0.164829198,0.086746297,0.064694673,0.042643049,0.020591425,0.041484913,0.062378401,0.08327189,0.089433628,0.095595366,0.101757104,0.087613921,0.073470737,0.059327553,0.059327553,0.059327553 +51,VA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,3.59129,2.99806,3.05221,3.09157,1.588724,1.613786,1.635765,2.12631442,2.200558083,2.274801747,2.34904541,1.899161156,1.449276902,0.999392648,0.734050787,0.468708925,0.203367064,1.240473413,2.277579761,3.31468611,2.308366304,1.302046497,0.295726691,0.295726691,0.295726691 +51,VA,5,METALS PROCESSING,VOC,0.86492,0.56707,0.59221,0.57799,0.605653,0.611868,0.639533,0.513210872,0.522333163,0.531455455,0.540577746,0.488009299,0.435440851,0.382872404,0.345104195,0.307335986,0.269568187,0.215250028,0.160931868,0.106613709,0.132050711,0.157487713,0.182924715,0.182924715,0.182924715 +51,VA,5,METALS PROCESSING,CO,3.12344,3.20904,3.34533,3.29231,3.13962,3.165964,3.316276,3.5798655,4.076143,4.5724205,5.068698,4.998164667,4.927631333,4.857098,4.243255,3.629412,3.015569,3.051099302,3.086629604,3.122159907,3.095876097,3.069592288,3.043308479,3.043308479,3.043308479 +51,VA,5,METALS PROCESSING,NH3,0.36005,0.36033,0.38418,0.38418,0.379743,0.389235,0.413159,0,0,0,,0,0,,0,0,0,0,0,,0,0,0,0,0 +51,VA,5,METALS PROCESSING,NOX,0.6515,0.71502,0.75718,0.75163,0.776618,0.793267,0.839748,0.936753615,0.981903509,1.027053404,1.072203298,1.058076367,1.043949436,1.029822505,0.957135822,0.884449139,0.811762456,0.798458648,0.785154841,0.771851033,0.748527246,0.72520346,0.701879673,0.701879673,0.701879673 +51,VA,5,METALS PROCESSING,PM10,2.05691,1.38477,1.45713,1.43286,1.882411,1.907417,2.004352,1.572486371,1.507827662,1.443168953,1.378510244,1.285167386,1.191824529,1.098481672,1.016530528,0.934579383,0.859489834,0.867681409,0.875872984,0.884064559,0.79265108,0.7012376,0.609824121,0.609824121,0.609824121 +51,VA,5,METALS PROCESSING,PM25,1.69969,1.15497,1.21414,1.19248,1.660217,1.681621,1.766515,0.927115056,0.976593841,1.026072626,1.075551411,1.033171504,0.990791598,0.948411691,0.873653786,0.798895881,0.724137975,0.7386683,0.753198625,0.767728951,0.68495855,0.60218815,0.51941775,0.51941775,0.51941775 +51,VA,5,METALS PROCESSING,SO2,5.10501,5.34748,5.69481,5.69229,5.325775,5.455312,5.787654,5.251077138,5.196747576,5.142418015,5.088088454,5.152213253,5.216338051,5.28046285,5.252469346,5.224475843,5.19648234,5.161782221,5.127082102,5.092381983,5.019596715,4.946811447,4.874026179,4.874026179,4.874026179 +51,VA,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.25817,0.14922,0.14922,0.14882,0.117532,0.118364,0.119664,0.158179816,0.180378535,0.202577254,0.224775973,0.177409977,0.130043981,0.082677985,0.149789657,0.216901328,0.284012998,0.278480031,0.272947064,0.267414097,0.204953176,0.142492255,0.080031335,0.080031335,0.080031335 +51,VA,6,PETROLEUM & RELATED INDUSTRIES,SO2,2.04857,0.25755,0.2579,0.25681,0.192089,0.192211,0.192379,0.170506656,0.194855484,0.219204312,0.243553141,0.203146003,0.162738866,0.122331728,0.101103248,0.079874769,0.058646295,0.138189368,0.217732441,0.297275514,0.221274169,0.145272823,0.069271478,0.069271478,0.069271478 +51,VA,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.26888,0.44731,0.44781,0.44682,0.196604,0.197492,0.198905,0.254731363,0.263155704,0.271580045,0.280004386,0.22455758,0.169110774,0.113663969,0.211029998,0.308396028,0.405762058,0.361853382,0.317944706,0.27403603,0.210633162,0.147230293,0.083827424,0.083827424,0.083827424 +51,VA,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.39199,0.17926,0.17981,0.17869,0.153408,0.153765,0.154283,0.182565523,0.21574737,0.248929218,0.282111065,0.242221035,0.202331005,0.162440975,3.314272084,6.466103192,9.617937331,9.723372231,9.828807131,9.934242032,7.784430175,5.634618319,3.484806462,3.484806462,3.484806462 +51,VA,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.23274,,,,0,0,,,0,0,,0,0,,0.025497667,0.050995333,0.076493,0.094239078,0.111985156,0.129731234,0.127093821,0.124456408,0.121818996,0.121818996,0.121818996 +51,VA,6,PETROLEUM & RELATED INDUSTRIES,CO,0.35632,25.17407,26.16963,26.36815,24.801663,24.802419,24.607777,23.3846018,23.56932397,23.75404613,23.93876829,24.23527154,24.53177479,24.82827804,20.70041571,16.57255338,12.44467743,12.88785174,13.33102605,13.77420036,10.83283512,7.891469884,4.950104648,4.950104648,4.950104648 +51,VA,6,PETROLEUM & RELATED INDUSTRIES,VOC,3.04882,1.16269,1.20144,1.20838,0.476978,0.245798,0.245339,0.50114256,0.474501459,0.447860359,0.421219258,0.408148765,0.395078273,0.38200778,2.492645728,4.603283676,8.525143099,9.824257091,11.12337108,12.42248507,11.16875778,9.915030486,8.661303192,8.661303192,8.661303192 +51,VA,7,OTHER INDUSTRIAL PROCESSES,PM25,8.48052,8.7994,9.31824,9.73973,10.834799,11.44816,13.53210749,11.1062955,11.56368921,12.02108291,12.47847662,10.37904685,8.27961709,6.180187326,5.830303135,5.480418945,5.001293895,5.261169744,5.521045592,5.780921441,6.021343863,6.261766285,6.502188708,6.502188708,6.502188708 +51,VA,7,OTHER INDUSTRIAL PROCESSES,SO2,14.90179,16.9361,17.6004,17.79753,17.537288,18.138057,18.721769,18.41365976,18.57981135,18.74596295,18.91211455,15.70213672,12.49215889,9.282181059,7.851946195,6.42171133,7.02831301,8.965747996,10.90318298,12.84061797,11.28684799,9.733078007,8.179308027,8.179308027,8.179308027 +51,VA,7,OTHER INDUSTRIAL PROCESSES,PM10,22.165,30.89154,33.01283,34.89903,32.829343,35.1547,37.46285162,33.03520923,33.47749017,33.9197711,34.36205204,28.18287312,22.0036942,15.82451528,14.71756734,13.61061941,12.39421034,12.46239024,12.53057015,12.59875005,12.90467066,13.21059128,13.51651189,13.51651189,13.51651189 +51,VA,7,OTHER INDUSTRIAL PROCESSES,NOX,9.32672,8.14091,8.46502,8.58602,10.12979,10.493119,10.89114,9.279874802,9.343797863,9.407720924,9.471643985,8.859053359,8.246462732,7.633872106,7.989107863,8.344343619,12.76571438,13.53774634,14.30977831,15.08181027,14.78657986,14.49134944,14.19611903,14.19611903,14.19611903 +51,VA,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.00195,0.00198,0.00199,0.003241,0.003343,0.003426,1.122122853,1.031587593,0.941052333,0.850517074,0.622186201,0.393855329,0.165524457,0.243200945,0.320877433,0.398566655,0.441209638,0.483852622,0.526495605,0.523993783,0.521491961,0.518990139,0.518990139,0.518990139 +51,VA,7,OTHER INDUSTRIAL PROCESSES,CO,12.91046,13.43705,13.87049,14.07525,21.814761,22.534692,23.97859576,12.77202394,14.32844186,15.88485978,17.44127769,15.15815964,12.87504158,10.59192352,8.944945811,7.297968103,5.644251812,10.3694088,15.09456578,19.81972276,17.94083025,16.06193774,14.18304523,14.18304523,14.18304523 +51,VA,7,OTHER INDUSTRIAL PROCESSES,VOC,13.9957,14.34102,14.88042,15.09766,14.720975,15.210979,12.83803935,13.35625342,13.7419306,14.12760779,14.51328497,12.74976155,10.98623813,9.222714714,8.58522349,7.947732267,6.936735398,7.147900056,7.359064713,7.57022937,7.587338849,7.604448328,7.621557807,7.621557807,7.621557807 +51,VA,8,SOLVENT UTILIZATION,VOC,173.77466,159.571,164.51036,156.74332,121.830135,115.041255,119.3816,122.996805,122.8441108,122.6914166,122.5387225,114.5288196,106.5189167,98.50901378,94.25950373,90.00999368,85.75970553,79.99001464,74.22032375,68.45063286,68.99927774,69.54792263,70.09656751,70.09656751,70.09656751 +51,VA,8,SOLVENT UTILIZATION,SO2,0.003,0.00334,0.00345,0.00351,0.000796,0.000818,0.000858,0.00244,0.001626667,0.000813333,,0.000411977,0.000823955,0.001235932,0.00092584,0.000615747,0.000305655,0.000305655,0.000305655,,3.06E-05,6.12E-05,0.000091759,0.000091759,0.000091759 +51,VA,8,SOLVENT UTILIZATION,PM25,0.00073,0.08208,0.08652,0.08913,0.461933,0.491272,0.523317,0.206461276,0.220167388,0.2338735,0.247579613,0.213597062,0.17961451,0.145631959,0.114701842,0.083771726,0.060543609,0.055627215,0.050710821,0.045794428,0.042940717,0.040087006,0.037233295,0.037233295,0.037233295 +51,VA,8,SOLVENT UTILIZATION,PM10,0.00084,0.09882,0.10415,0.10729,0.461933,0.491272,0.523317,0.22542289,0.238317882,0.251212875,0.264107867,0.225097747,0.186087626,0.147077506,0.117355699,0.087633892,0.065614085,0.06113905,0.056664015,0.052188981,0.048970527,0.045752073,0.042533619,0.042533619,0.042533619 +51,VA,8,SOLVENT UTILIZATION,NOX,0.00416,0.00186,0.00183,0.00176,0.001892,0.001842,0.001883,0.000343254,0.000334254,0.000325254,0.000316254,0.001611754,0.002907254,0.004202754,0.002849669,0.001496585,0.0001435,0.000175759,0.000208019,0.000240278,0.000753444,0.001266611,0.001779777,0.001779777,0.001779777 +51,VA,8,SOLVENT UTILIZATION,NH3,,0.00003,0.00003,0.00003,0.00442,0.004521,0.004628,0.004382607,0.005839982,0.007297358,0.008754734,0.005969658,0.003184583,0.000399507,0.002026444,0.003653381,0.005280319,0.006272259,0.0072642,0.00825614,0.00708726,0.00591838,0.0047495,0.0047495,0.0047495 +51,VA,8,SOLVENT UTILIZATION,CO,,0.00001,0.00001,0.00001,0.000223,0.000229,0.00024,0.000153964,0.000124329,9.47E-05,0.000065058,0.001185163,0.002305267,0.003425372,0.002295551,0.001165731,0.00003591,0.00102394,0.00201197,0.003,0.00263542,0.00227084,0.00190626,0.00190626,0.00190626 +51,VA,9,STORAGE & TRANSPORT,CO,,0.01252,0.01306,0.01335,0.00564,0.00588,0.006042,0.016109,0.037169806,0.058230612,0.079291418,0.078607414,0.07792341,0.077239406,0.053241599,0.029243791,0.005245984,0.030911695,0.056577406,0.082243117,0.06688706,0.051531002,0.036174945,0.036174945,0.036174945 +51,VA,9,STORAGE & TRANSPORT,NH3,,,,,0,0,0,0.0068882,0.014209599,0.021530999,0.028852398,0.024438524,0.020024649,0.015610775,0.025102968,0.034595161,0.044087354,0.047672345,0.051257336,0.054842328,0.051149478,0.047456629,0.04376378,0.04376378,0.04376378 +51,VA,9,STORAGE & TRANSPORT,PM10,0.85311,0.84827,0.86491,0.87538,0.559869,0.58082,0.603555,0.72628907,0.685743064,0.645197059,0.604651054,0.56965802,0.534664985,0.499671951,0.450765859,0.401859767,0.3506212,0.352535109,0.354449017,0.356362925,0.310686384,0.265009843,0.219333302,0.219333302,0.219333302 +51,VA,9,STORAGE & TRANSPORT,PM25,0.61496,0.35622,0.3625,0.36613,0.247665,0.258135,0.268628,0.482378401,0.446596176,0.410813951,0.375031726,0.354855798,0.334679871,0.314503943,0.305167322,0.295830701,0.286223703,0.288146726,0.290069749,0.291992771,0.245454572,0.198916372,0.152378173,0.152378173,0.152378173 +51,VA,9,STORAGE & TRANSPORT,SO2,0.201,0.00031,0.00033,0.00033,,0.006473,0.005283,0,0.00284,0.00568,0.00852,0.005705421,0.002890841,7.63E-05,5.92E-05,4.21E-05,0.000025,0.000354344,0.000683688,0.001013032,0.000679505,0.000345977,1.25E-05,1.25E-05,1.25E-05 +51,VA,9,STORAGE & TRANSPORT,VOC,46.29409,42.62973,44.0506,44.34569,42.709545,41.88518,42.327369,34.83526832,34.71779334,34.60031837,34.4828434,34.65473213,34.82662086,34.99850958,32.46773652,29.93696346,23.55624585,23.68214068,23.80803551,23.93393033,22.76245055,21.59097076,20.41949097,20.41949097,20.41949097 +51,VA,9,STORAGE & TRANSPORT,NOX,,0.014,0.0146,0.01493,0.014804,0.018928,0.018526,0.011499709,0.018351084,0.025202459,0.032053834,0.031140854,0.030227874,0.029314894,0.020198048,0.011081203,0.001964357,0.008190362,0.014416368,0.020642373,0.018348277,0.016054182,0.013760086,0.013760086,0.013760086 +51,VA,10,WASTE DISPOSAL & RECYCLING,PM25,8.35315,14.83044,15.47936,16.54525,12.033752,11.281267,11.31411,11.49319602,11.43820688,11.38321775,11.32822861,9.711410727,8.094592845,6.477774962,5.960246632,5.442718302,4.925189643,5.369296182,5.81340272,6.257509259,6.486714378,6.715919498,6.945124617,6.945124617,6.945124617 +51,VA,10,WASTE DISPOSAL & RECYCLING,CO,57.07796,112.34565,116.53286,126.31732,114.639744,67.398867,67.55469,67.85654964,67.97986391,68.10317819,68.22649247,62.6134455,57.00039853,51.38735156,45.29272325,39.19809495,33.10346725,40.36567298,47.62787871,54.89008444,51.983345,49.07660555,46.16986611,46.16986611,46.16986611 +51,VA,10,WASTE DISPOSAL & RECYCLING,NH3,1.49689,1.70523,1.69544,1.73121,0.373036,0.379378,0.382734,0.122581211,0.105843878,0.089106544,0.072369211,0.066330741,0.06029227,0.0542538,0.0572773,0.0603008,0.063162015,0.113197618,0.16323322,0.213268823,0.215257934,0.217247044,0.219236155,0.219236155,0.219236155 +51,VA,10,WASTE DISPOSAL & RECYCLING,PM10,9.32314,17.28441,18.03501,19.15152,14.014056,13.79809,13.892059,13.06779915,13.07165085,13.07550255,13.07935425,11.30981245,9.540270646,7.770728845,7.095548296,6.420367747,5.745186789,6.350542239,6.955897689,7.561253139,7.59887758,7.636502021,7.674126462,7.674126462,7.674126462 +51,VA,10,WASTE DISPOSAL & RECYCLING,SO2,0.86621,0.99317,1.02384,1.04637,0.82525,0.995537,1.018044,1.780616134,1.788271607,1.79592708,1.803582554,1.819602671,1.835622788,1.851642905,1.724221555,1.596800205,1.469378939,1.625739596,1.782100252,1.938460909,1.667314043,1.396167178,1.125020312,1.125020312,1.125020312 +51,VA,10,WASTE DISPOSAL & RECYCLING,VOC,17.22261,17.22526,17.74875,18.62912,10.204976,10.712038,10.78081,7.761968507,7.795309959,7.828651412,7.861992864,7.33483843,6.807683996,6.280529563,5.626056032,4.971582502,4.317108089,5.100085646,5.883063204,6.666040761,6.488640904,6.311241048,6.133841191,6.133841191,6.133841191 +51,VA,10,WASTE DISPOSAL & RECYCLING,NOX,4.4016,6.84763,7.04759,7.39805,6.71027,5.894914,5.956923,3.606717855,4.883455017,6.16019218,7.436929343,6.006850622,4.576771902,3.146693182,2.858960055,2.571226929,2.283493419,2.498228507,2.712963596,2.927698685,2.775468062,2.623237439,2.471006816,2.471006816,2.471006816 +51,VA,11,HIGHWAY VEHICLES,VOC,267.17191,171.32617,163.55025,158.73445,148.11244,143.57081,127.50813,113.0511844,107.2673737,101.483563,95.69975234,95.05010327,94.4004542,82.60780378,69.53606157,70.1932339,63.85008239,64.27999079,64.70989919,65.13980759,61.20734997,50.02018036,54.9376931,42.64176812,38.36974948 +51,VA,11,HIGHWAY VEHICLES,CO,3150.89897,2220.05699,2121.15444,2026.82297,1894.83249,1867.48238,1738.54173,1498.177958,1419.20614,1340.234321,1261.262502,1146.080149,1030.897796,923.3802678,706.8533426,714.8611639,566.9301474,612.8700362,658.8099251,704.7498139,687.014303,578.9114165,604.5904295,519.7277207,487.592102 +51,VA,11,HIGHWAY VEHICLES,NH3,4.52765,6.75615,7.50112,7.16297,7.55085,7.47478,7.42338,4.209227251,4.098478068,3.987728885,3.876979701,3.857061982,3.837144263,3.602767085,3.376159977,3.218914917,3.347674646,3.255527161,3.163379677,3.071232193,2.946160357,2.782357481,2.750076272,2.500891187,2.445213076 +51,VA,11,HIGHWAY VEHICLES,NOX,284.51263,257.43573,256.6162,249.04464,195.0385,233.87231,215.35613,280.9952009,262.7260708,244.4569407,226.1878106,210.8132841,195.4387575,180.1797638,148.234542,136.9346466,145.7617957,141.4286683,137.0955408,132.7624134,121.0366716,94.57241676,96.5229234,76.99838117,68.03778007 +51,VA,11,HIGHWAY VEHICLES,PM10,11.72155,8.42486,8.02619,7.41299,5.32945,6.38023,5.80394,10.15667457,9.984268496,9.81186242,9.639456344,8.819340715,7.999225086,7.3365493,6.347644768,5.72185203,7.214795769,7.377594789,7.540393809,7.703192829,7.294195211,5.638033714,5.393781353,6.195441776,6.096468067 +51,VA,11,HIGHWAY VEHICLES,PM25,9.85666,6.7609,6.34353,5.7943,3.90287,4.82434,4.3093,8.186150317,7.998148321,7.810146324,7.622144327,6.914728192,6.207312058,5.552880547,4.748974807,4.11584243,4.39505155,4.270540178,4.146028805,4.021517433,3.591042515,2.625638414,2.611027352,2.630267267,2.465815533 +51,VA,11,HIGHWAY VEHICLES,SO2,15.22469,8.78342,8.92025,8.90133,7.96712,7.4952,6.40934,8.625769034,7.408055465,6.190341896,4.972628327,2.958514242,0.944400157,0.935337892,0.86384046,0.88316136,0.712745443,0.758469221,0.804192999,0.849916777,0.925165864,0.908065268,0.830026545,0.367660165,0.281133223 +51,VA,12,OFF-HIGHWAY,PM25,6.2019,6.57745,6.48086,6.39618,6.1103,6.00559,5.93682,7.338418565,6.952884179,6.567349793,6.181815408,5.92164462,5.661473833,5.082376073,5.295841962,5.048648312,4.746697759,4.456561271,4.166424782,3.876288294,3.644370712,3.34740827,3.180535548,3.071550022,2.962564496 +51,VA,12,OFF-HIGHWAY,NOX,90.96645,99.59878,100.99584,101.99649,58.11077,91.90909,91.84482,96.3338187,90.55359701,84.77337531,78.99315361,80.59149027,82.18982693,75.72963763,82.28407405,80.83872297,67.84375103,63.03579404,58.22783705,53.41988005,52.77051058,53.20303107,51.47177163,50.01199603,48.55222043 +51,VA,12,OFF-HIGHWAY,VOC,59.70098,66.35096,61.42529,59.13986,58.686,58.39249,57.8276,70.47726873,67.85783064,65.23839254,62.61895445,59.95231644,57.28567843,54.20873748,51.4115754,49.9541297,48.41748796,45.14081502,41.86414208,38.58746914,36.79035314,34.47611279,33.19612114,32.43343385,31.67074656 +51,VA,12,OFF-HIGHWAY,PM10,6.77446,7.1874,7.07884,6.98142,6.68219,6.57169,6.49659,7.704025089,7.290261577,6.876498065,6.462734554,6.229410492,5.996086429,5.453513247,5.671983081,5.408484346,5.028686639,4.722088087,4.415489534,4.108890982,3.859258051,3.534656504,3.359992189,3.247193525,3.13439486 +51,VA,12,OFF-HIGHWAY,NH3,0.46692,0.55437,0.55578,0.57271,0.06055,0.06055,0.06055,0.054722799,0.055383287,0.056043774,0.056704261,0.058665598,0.060626934,0.0602714,0.062204282,0.063021414,0.060827607,0.060161957,0.059496307,0.058830657,0.056374475,0.045538364,0.051462113,0.050962263,0.050462412 +51,VA,12,OFF-HIGHWAY,CO,518.23646,593.75829,573.60171,573.42528,580.11094,587.02493,598.85271,538.6962307,536.5763665,534.4565023,532.3366381,501.899556,471.4624738,485.1669002,403.4941919,389.2553679,383.5059789,371.9647672,360.4235556,348.8823439,342.1094798,330.7306999,328.5637515,328.1781649,327.7925783 +51,VA,12,OFF-HIGHWAY,SO2,8.76966,9.77257,9.98618,10.2432,9.18293,9.20007,9.28012,17.05960743,14.78060182,12.5015962,10.22259059,8.4015928,6.580595013,4.492866653,5.401250439,3.478405276,3.354615844,2.838732209,2.322848574,1.806964939,1.678460037,1.390569891,1.421450235,1.448153688,1.474857141 +51,VA,14,MISCELLANEOUS,CO,46.44981,20.50557,42.27413,89.74224,16.493478,67.94283,68.47746,0.61313,42.68217387,84.75121773,126.8202616,84.82006388,42.81986616,0.819668441,1.498490355,2.177312268,2.856134182,2.283975309,1.711816436,1.139657562,1.177579792,1.215502021,1.253424251,1.253424251,1.253424251 +51,VA,14,MISCELLANEOUS,VOC,2.81655,1.2138,2.43528,8.03356,2.032943,3.259975,3.285162,0.47990265,10.49081085,20.50171904,30.51262724,20.37668669,10.24074614,0.104805599,0.146765736,0.188725873,0.23068601,0.642133739,1.053581469,1.465029198,1.849537676,2.234046154,2.618554631,2.618554631,2.618554631 +51,VA,14,MISCELLANEOUS,SO2,0.05429,0.01204,0.02531,0.07094,0.38411,0.39702,0.40008,,,,1.229372098,0.822144044,0.41491599,0.007687936,0.022405059,0.037122183,0.051839307,0.038908457,0.025977608,0.013046758,0.015184567,0.017322375,0.019460184,0.019460184,0.019460184 +51,VA,14,MISCELLANEOUS,PM25,60.60587,40.94731,46.20188,50.05134,47.841695,47.758215,34.9975019,18.69151437,22.55009315,26.40867192,30.2672507,26.08357622,21.89990175,17.71622728,18.03933595,18.36244462,18.68555329,21.3913516,24.0971499,26.8029482,23.64558346,20.48821871,17.33085396,17.33085396,17.33085396 +51,VA,14,MISCELLANEOUS,PM10,292.62645,191.54423,208.83331,211.01236,215.86551,213.461276,186.341293,162.54794,167.101063,171.6541859,176.2073089,158.825734,141.4441591,124.0625843,124.1858954,124.3092065,124.4325177,148.2737114,172.1149051,195.9560989,165.5090937,135.0620885,104.6150833,104.6150833,104.6150833 +51,VA,14,MISCELLANEOUS,NH3,57.6439,63.64079,63.06412,63.76973,66.04512,66.51755,43.98803725,43.90312755,44.59953762,45.2959477,45.99235777,44.52594624,43.05953471,41.59312318,42.07074115,42.54835913,43.0259771,35.9492999,28.87262269,21.79594549,27.24476985,32.69359422,38.14241858,38.14241858,38.14241858 +51,VA,14,MISCELLANEOUS,NOX,1.56531,0.40279,0.82921,2.08467,0.988793,1.45834,1.46992,0.0137644,0.894023954,1.774283508,2.654543063,1.84990247,1.045261877,0.240621285,0.259090616,0.277559947,0.296029278,0.270352489,0.244675699,0.21899891,0.321100473,0.423202035,0.525303598,0.525303598,0.525303598 +51,VA,15,WILDFIRES,NOX,,,,,,,,0.011854509,0.011854509,0.011854509,0.004849679,0.004849679,0.004849679,0.476077721,0.476077721,0.476077721,1.281313195,1.281313195,1.281313195,0.972102241,0.972102241,0.972102241,0.481242804,0.481242804,0.481242804 +51,VA,15,WILDFIRES,CO,,,,,,,,1.2482,1.2482,1.2482,0.16587614,0.16587614,0.16587614,33.0262457,33.0262457,33.0262457,86.13254061,86.13254061,86.13254061,61.40653438,61.40653438,61.40653438,25.16053738,25.16053738,25.16053738 +51,VA,15,WILDFIRES,NH3,,,,,,,,0.018738777,0.018738777,0.018738777,0.002772693,0.002772693,0.002772693,0.542540133,0.542540133,0.542540133,1.415718018,1.415718018,1.415718018,1.010446368,1.010446368,1.010446368,0.415628866,0.415628866,0.415628866 +51,VA,15,WILDFIRES,PM25,,,,,,,,0.099569644,0.099569644,0.099569644,0.016257735,0.016257735,0.016257735,2.866477725,2.866477725,2.866477725,7.505833127,7.505833127,7.505833127,5.39549827,5.39549827,5.39549827,2.273503563,2.273503563,2.273503563 +51,VA,15,WILDFIRES,PM10,,,,,,,,0.117521381,0.117521381,0.117521381,0.019184127,0.019184127,0.019184127,3.38244421,3.38244421,3.38244421,8.856877941,8.856877941,8.856877941,6.366688483,6.366688483,6.366688483,2.682735583,2.682735583,2.682735583 +51,VA,15,WILDFIRES,VOC,,,,,,,,0.284197863,0.284197863,0.284197863,0.039857463,0.039857463,0.039857463,7.79901513,7.79901513,7.79901513,20.35093563,20.35093563,20.35093563,14.52517478,14.52517478,14.52517478,5.974661801,5.974661801,5.974661801 +51,VA,15,WILDFIRES,SO2,,,,,,,,0.007147586,0.007147586,0.007147586,0.00203742,0.00203742,0.00203742,0.25597115,0.25597115,0.25597115,0.679713095,0.679713095,0.679713095,0.502511789,0.502511789,0.502511789,0.231258194,0.231258194,0.231258194 +51,VA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,135.0464424,116.2776388,97.50883513,78.7400315,95.36964864,111.9992658,128.6288829,121.018726,113.4085691,105.7984122,105.7984122,105.7984122 +51,VA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,32.06979099,27.62199639,23.17420178,18.72640718,22.62439008,26.52237299,30.42035589,28.6466419,26.87292792,25.09921393,25.09921393,25.09921393 +51,VA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,1.242835471,1.080265419,0.917695368,0.755125316,0.85221589,0.949306463,1.046397037,1.013035,0.979672963,0.946310926,0.946310926,0.946310926 +51,VA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,2.230942851,1.92153088,1.61211891,1.302706939,1.573870591,1.845034244,2.116197896,1.992809326,1.869420757,1.746032187,1.746032187,1.746032187 +51,VA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,12.20668999,10.5353464,8.864002817,7.19265923,8.55730783,9.92195643,11.28660503,10.68950195,10.09239887,9.495295796,9.495295796,9.495295796 +51,VA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,14.4038963,12.4317094,10.4595225,8.4873356,10.09762246,11.70790931,13.31819617,12.61361472,11.90903328,11.20445183,11.20445183,11.20445183 +51,VA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,2.58817761,2.261697565,1.935217521,1.608737476,1.74446808,1.880198685,2.015929289,1.99001424,1.96409919,1.938184141,1.938184141,1.938184141 +53,WA,1,FUEL COMB. ELEC. UTIL.,CO,1.50583,1.45546,1.27351,5.39802,3.417604,3.762661,3.711089,2.728299,2.989403537,3.250508074,3.511612611,3.653106407,3.794600204,3.936094,3.224391167,2.512688333,1.8009855,2.281868667,2.762751833,3.243635,3.166085593,3.088536187,3.01098678,3.01098678,3.01098678 +53,WA,1,FUEL COMB. ELEC. UTIL.,SO2,58.74457,78.40363,63.91249,75.52445,88.370114,84.279861,67.670285,19.439556,8.305524,6.905941,3.41777678,1.687339,2.156429,2.4047215,1.9977633,1.5997756,1.2017879,1.832436767,2.463085633,3.0937345,2.648631198,2.203527897,1.758424595,1.556954,2.323363 +53,WA,1,FUEL COMB. ELEC. UTIL.,PM25,0.60078,1.29586,1.03467,1.24847,3.531302,3.618944,2.807104,2.044409586,2.185426068,2.326442551,2.467459033,1.825205753,1.182952473,0.540699192,0.458480685,0.376262177,0.29404367,0.30099757,0.307951471,0.314905371,0.324791359,0.334677347,0.344563335,0.344563335,0.344563335 +53,WA,1,FUEL COMB. ELEC. UTIL.,PM10,1.74708,1.88682,1.50401,1.78044,4.057888,4.198713,3.363033,2.479523106,2.625907463,2.77229182,2.918676176,2.137965695,1.357255214,0.576544732,0.495526285,0.414507837,0.33348939,0.33357726,0.33366513,0.333753,0.412534237,0.491315473,0.57009671,0.57009671,0.57009671 +53,WA,1,FUEL COMB. ELEC. UTIL.,NOX,17.46046,21.97426,16.66076,24.21252,23.26776,21.821492,19.841252,16.2170897,20.661212,15.652073,17.94773228,9.877328,12.39279,11.602956,10.22293887,8.889006733,7.5550746,8.039810067,8.524545533,9.009281,8.64697454,8.28466808,7.92236162,6.632219,8.793358 +53,WA,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00201,0.00185,0.00214,0.002618,0.00286,0.003205,0.0095615,0.010928054,0.012294607,0.013661161,0.044373507,0.075085854,0.1057982,0.0941155,0.0824328,0.0707501,0.062138917,0.053527733,0.04491655,0.059686033,0.074455517,0.089225,0.089225,0.089225 +53,WA,1,FUEL COMB. ELEC. UTIL.,VOC,0.17201,0.1697,0.14787,0.57815,0.31887,0.24964,0.244459,0.208919,0.22903236,0.24914572,0.26925908,0.200648053,0.132037027,0.063426,0.0576695,0.051913,0.0461565,0.050779333,0.055402167,0.060025,0.072924,0.085823,0.098722,0.098722,0.098722 +53,WA,2,FUEL COMB. INDUSTRIAL,PM25,3.94274,2.51379,2.39145,2.35171,2.739689,2.74534,2.82619,1.716650941,1.934945123,2.153239305,2.371533488,1.997215319,1.622897151,1.248578982,1.057924771,0.867270559,0.676616348,1.057838819,1.439061291,1.820283762,1.901835173,1.983386584,2.064937995,2.064937995,2.064937995 +53,WA,2,FUEL COMB. INDUSTRIAL,CO,20.33847,16.0899,15.21875,14.98397,15.949166,15.916483,16.496532,15.260049,14.61254534,13.96504167,13.317538,12.29665717,11.27577633,10.2548955,9.454470133,8.654044767,7.8536194,8.940858656,10.02809791,11.11533717,10.57614647,10.03695578,9.497765083,9.497765083,9.497765083 +53,WA,2,FUEL COMB. INDUSTRIAL,NH3,0.6853,1.76545,1.708,1.67609,1.696911,1.741904,1.723488,0.19455934,0.209830006,0.225100673,0.24037134,0.173086393,0.105801447,0.0385165,0.053009183,0.067501867,0.08199455,0.08224596,0.08249737,0.08274878,0.075670441,0.068592101,0.061513762,0.061513762,0.061513762 +53,WA,2,FUEL COMB. INDUSTRIAL,PM10,4.34769,3.25693,3.09538,3.03624,2.952846,2.962238,3.054076,2.768822441,2.969616083,3.170409725,3.371203367,2.685240562,1.999277756,1.313314951,1.194961918,1.076608885,0.958255853,1.483334161,2.008412468,2.533490776,2.586648148,2.63980552,2.692962891,2.692962891,2.692962891 +53,WA,2,FUEL COMB. INDUSTRIAL,SO2,15.09329,13.84082,13.6952,13.41552,14.024392,14.4695,14.303648,17.55251592,16.97924626,16.40597659,15.83270692,11.91379512,7.994883308,4.0759715,3.692840211,3.309708921,2.926577632,2.986832047,3.047086463,3.107340878,2.87535118,2.643361481,2.411371783,2.411371783,2.411371783 +53,WA,2,FUEL COMB. INDUSTRIAL,VOC,1.547,1.10279,1.04676,1.02952,0.883129,0.885469,0.914438,0.878137792,0.848532159,0.818926526,0.789320892,0.728062428,0.666803964,0.6055455,0.5764786,0.5474117,0.5183448,0.589318405,0.660292009,0.731265614,0.716504496,0.701743377,0.686982259,0.686982259,0.686982259 +53,WA,2,FUEL COMB. INDUSTRIAL,NOX,23.6078,26.15139,25.32591,24.7445,23.907746,24.143765,24.130559,18.38677882,18.20260682,18.01843482,17.83426282,16.07435322,14.31444361,12.554534,12.0115803,11.4686266,10.9256729,11.43907075,11.95246861,12.46586646,11.9336183,11.40137014,10.86912198,10.86912198,10.86912198 +53,WA,3,FUEL COMB. OTHER,CO,211.27553,52.08065,52.25762,52.22416,93.13954,54.355598,54.404351,159.1739238,159.1662008,159.1584778,159.1507548,141.0115748,122.8723947,104.7332147,109.8788902,115.0245657,120.169456,118.7042958,117.2391356,115.7739754,108.5849444,101.3959135,94.20688247,94.20688247,94.20688247 +53,WA,3,FUEL COMB. OTHER,NH3,0.10883,0.09161,0.09009,0.08222,0.088351,0.089584,0.090922,0.050063605,0.049878939,0.049694272,0.049509605,0.569465176,1.089420746,1.609376317,1.668364818,1.727353319,1.786337895,1.775886775,1.765435655,1.754984534,1.704131588,1.653278642,1.602425696,1.602425696,1.602425696 +53,WA,3,FUEL COMB. OTHER,NOX,11.74303,10.81454,10.64608,10.0496,10.291667,9.903291,10.045203,11.6793605,11.57836617,11.47737183,11.3763775,9.856922421,8.337467343,6.818012265,7.01122474,7.204437216,7.397645675,8.15781226,8.917978845,9.67814543,9.903156244,10.12816706,10.35317787,10.35317787,10.35317787 +53,WA,3,FUEL COMB. OTHER,PM10,27.96881,6.86085,6.85978,6.84298,13.323406,7.668162,7.681644,21.57561741,21.5794954,21.58337338,21.58725137,19.29011381,16.99297624,14.69583868,15.6799554,16.66407211,17.64804587,16.97806798,16.3080901,15.63811221,14.23214931,12.82618641,11.42022351,11.42022351,11.42022351 +53,WA,3,FUEL COMB. OTHER,PM25,27.86636,6.65993,6.65723,6.64606,12.943209,7.604726,7.616904,20.04205363,20.04626643,20.05047922,20.05469202,18.26298862,16.47128521,14.67958181,15.63955972,16.59953764,17.55936425,16.88554724,16.21173024,15.53791323,14.12799417,12.71807511,11.30815605,11.30815605,11.30815605 +53,WA,3,FUEL COMB. OTHER,SO2,5.1302,2.15913,2.18271,2.08285,1.994505,1.946954,1.970037,2.847593823,2.848817823,2.850041823,2.851265823,2.373589814,1.895913805,1.418237796,1.360106085,1.301974373,1.243838234,1.145611265,1.047384296,0.949157327,0.769564871,0.589972416,0.410379961,0.410379961,0.410379961 +53,WA,3,FUEL COMB. OTHER,VOC,39.87734,17.89657,17.92293,17.91364,18.019471,18.958283,18.964108,77.91120071,61.10842589,44.30565107,27.50287625,24.57621531,21.64955437,18.72289342,19.13122277,19.53955211,19.94773448,19.51389323,19.08005199,18.64621074,17.19542821,15.74464567,14.29386313,14.29386313,14.29386313 +53,WA,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,1.151,1.14734,1.16214,0.109,0.111688,0.115392,0.04422,0.036813333,0.029406667,0.022,0.03,0.038,0.046,0.04444,0.04288,0.04132,0.038933702,0.036547403,0.034161105,0.054471536,0.074781968,0.0950924,0.0950924,0.0950924 +53,WA,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,0.9536,0.93407,0.93894,0.95839,0.131382,0.134669,0.139265,0.09298,0.082986667,0.072993333,0.063,0.055,0.047,0.039,0.03756,0.03612,0.03468,0.044111967,0.053543933,0.0629759,0.05413281,0.04528972,0.03644663,0.03644663,0.03644663 +53,WA,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,,0.28447,0.28655,0.28163,0.105,0.106711,0.109257,0.01705048,0.017014453,0.016978427,0.0169424,0.015294933,0.013647467,0.012,0.014578963,0.017157927,0.01973689,0.031009045,0.0422812,0.053553355,0.049698237,0.045843118,0.041988,0.041988,0.041988 +53,WA,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,,0.24545,0.24719,0.24299,0.094875,0.096368,0.098589,0.041479016,0.031479881,0.021480746,0.011481611,0.011321074,0.011160537,0.011,0.009875638,0.008751275,0.007626913,0.022168694,0.036710474,0.051252255,0.046137503,0.041022752,0.035908,0.035908,0.035908 +53,WA,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.088,0.17125,0.17125,0.17167,0.109,0.111632,0.115128,0.00366,0.044773333,0.085886667,0.127,0.124666667,0.122333333,0.12,0.130666667,0.141333333,0.152,0.173733485,0.19546697,0.217200455,0.212540303,0.207880152,0.20322,0.20322,0.20322 +53,WA,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.42411,0.36218,0.35913,0.35844,0.274902,0.282474,0.29236,0.92528,0.91629,0.9073,0.89831,0.60954,0.32077,0.032,0.032860628,0.033721256,0.034581884,0.03913563,0.043689375,0.048243121,0.044512271,0.04078142,0.03705057,0.03705057,0.03705057 +53,WA,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.513,2.21,2.22147,2.26731,1.527,1.56516,1.61856,0.2492,0.196133333,0.143066667,0.09,0.071333333,0.052666667,0.034,0.035733333,0.037466667,0.0392,0.05573115,0.0722623,0.08879345,0.087045637,0.085297823,0.08355001,0.08355001,0.08355001 +53,WA,5,METALS PROCESSING,NH3,,0.00004,0.00004,0.00004,0.029665,0.030459,0.032846,0.002704,0.001802667,0.000901333,,0,0,0,0.000126667,0.000253333,0.00038,0.000357787,0.000335573,0.00031336,0.00023224,0.00015112,0.00007,0.00007,0.00007 +53,WA,5,METALS PROCESSING,VOC,2.3133,1.27936,1.28615,1.24731,1.347454,1.374739,1.463003,0.1891625,0.247038167,0.304913833,0.3627895,0.417859667,0.472929833,0.528,0.551993333,0.575986667,0.59998,0.767784667,0.935589333,1.103394,0.833642732,0.563891463,0.294140195,0.294140195,0.294140195 +53,WA,5,METALS PROCESSING,SO2,21.85223,18.23979,18.34877,17.25771,17.328621,17.626018,18.654579,2.2088655,2.61311,3.0173545,3.421599,4.417097,5.412595,6.408093,6.779752,7.151411,7.52307,7.617094333,7.711118667,7.805143,6.549769,5.294395,4.039021,4.039021,4.039021 +53,WA,5,METALS PROCESSING,PM25,2.58789,2.16741,2.17905,2.08791,4.243962,4.318331,4.574055,0.155002603,0.175355437,0.195708271,0.216061104,0.389197943,0.562334781,0.73547162,0.925929452,1.116387284,1.306845116,1.250317108,1.193789099,1.13726109,0.974943143,0.812625196,0.650307249,0.650307249,0.650307249 +53,WA,5,METALS PROCESSING,NOX,0.18861,0.80069,0.81087,0.77094,0.573934,0.585248,0.622343,0.239277,0.236881,0.234485,0.232089,0.245755667,0.259422333,0.273089,0.300426667,0.327764333,0.355102,0.366132833,0.377163667,0.3881945,0.3557855,0.3233765,0.2909675,0.2909675,0.2909675 +53,WA,5,METALS PROCESSING,CO,198.56888,136.46599,137.16035,130.45808,154.863636,157.513558,166.690574,18.295654,20.1574945,22.019335,23.8811755,27.26267033,30.64416517,34.02566,38.01918683,42.01271367,46.0062405,47.56259183,49.11894317,50.6752945,44.382048,38.0888015,31.795555,31.795555,31.795555 +53,WA,5,METALS PROCESSING,PM10,4.67786,2.93479,2.95083,2.81411,5.026537,5.11438,5.416651,0.491169201,0.440112801,0.3890564,0.338,0.492606933,0.647213867,0.8018208,0.974350533,1.146880267,1.31941,1.261873697,1.204337393,1.14680109,0.985243143,0.823685196,0.662127249,0.662127249,0.662127249 +53,WA,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.1421,0.16351,0.1661,0.16481,0.150247,0.150556,0.151322,0.072455405,0.134136293,0.19581718,0.257498068,0.209732388,0.161966709,0.11420103,0.10022121,0.08624139,0.07226157,0.089712323,0.107163077,0.12461383,0.151913546,0.179213263,0.206512979,0.206512979,0.206512979 +53,WA,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.60712,0.03638,0.03747,0.03713,0.023775,0.023821,0.023941,0.001173,0.006482,0.011791,0.0171,0.024733333,0.032366667,0.04,0.054116667,0.068233333,0.08235,0.070852833,0.059355667,0.0478585,0.050388333,0.052918167,0.055448,0.055448,0.055448 +53,WA,6,PETROLEUM & RELATED INDUSTRIES,VOC,20.55584,13.17415,13.5501,13.44164,11.69427,10.839802,10.895162,1.4042305,1.3183975,1.2325645,1.1467315,1.147005,1.1472785,1.147552,1.0392025,0.930853,0.8225035,0.785789167,0.749074833,0.7123605,0.696667667,0.680974833,0.665282,0.665282,0.665282 +53,WA,6,PETROLEUM & RELATED INDUSTRIES,SO2,5.126,5.35513,5.49894,5.41743,3.226,3.240329,3.28488,3.299,3.383666667,3.468333333,3.553,2.531333333,1.509666667,0.488,0.40829,0.32858,0.24887,0.26535,0.28183,0.29831,0.309856667,0.321403333,0.33295,0.33295,0.33295 +53,WA,6,PETROLEUM & RELATED INDUSTRIES,NOX,1.65,1.058,1.08766,1.07458,0.8,0.802407,0.809383,0.967,0.993,1.019,1.045,1.052,1.059,1.066,0.995623333,0.925246667,0.85487,0.807666667,0.760463333,0.71326,1.010803333,1.308346667,1.60589,1.60589,1.60589 +53,WA,6,PETROLEUM & RELATED INDUSTRIES,CO,3.432,2.518,2.58966,2.56603,0.387,0.387964,0.390332,0.119,0.135,0.151,0.167,0.169333333,0.171666667,0.174,0.165303333,0.156606667,0.14791,0.124713333,0.101516667,0.07832,0.10142,0.12452,0.14762,0.14762,0.14762 +53,WA,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.19201,0.34193,0.34395,0.34147,0.199549,0.199963,0.200995,0.1190368,0.167087867,0.215138933,0.26319,0.22064743,0.17810486,0.13556229,0.12754986,0.11953743,0.111525,0.119466667,0.127408333,0.13535,0.163533333,0.191716667,0.2199,0.2199,0.2199 +53,WA,7,OTHER INDUSTRIAL PROCESSES,CO,15.82727,13.99825,14.1622,14.07928,12.780778,13.210452,14.71728211,7.856591488,7.869090821,7.881590154,7.894089488,7.245350338,6.596611188,5.947872038,5.873172941,5.798473844,5.723774747,7.709170731,9.694566716,11.6799627,10.11073715,8.541511598,6.972286047,6.972286047,6.972286047 +53,WA,7,OTHER INDUSTRIAL PROCESSES,NH3,3.52375,3.39671,3.45888,3.48123,3.515538,3.603228,3.719461,1.6652775,1.7489736,1.8326697,1.9163658,1.340255033,0.764144267,0.1880335,0.2171065,0.2461795,0.2752525,0.27480555,0.2743586,0.27391165,0.268415135,0.26291862,0.257422105,0.257422105,0.257422105 +53,WA,7,OTHER INDUSTRIAL PROCESSES,NOX,9.80232,12.48954,12.55957,12.32189,8.908354,9.210788,9.706624,7.534529,7.565417471,7.596305942,7.627194414,7.296057442,6.964920471,6.6337835,6.224753333,5.815723167,5.406693,5.396228387,5.385763775,5.375299162,5.360349532,5.345399902,5.330450272,5.330450272,5.330450272 +53,WA,7,OTHER INDUSTRIAL PROCESSES,PM10,7.83556,10.16579,11.22108,12.26722,10.725267,12.008817,14.59479096,11.77535521,11.92136632,12.06737743,12.21338854,11.48136772,10.74934691,10.01732609,9.767615456,9.517904817,9.268194179,9.166230784,9.064267389,8.962303994,9.158036607,9.35376922,9.549501833,9.549501833,9.549501833 +53,WA,7,OTHER INDUSTRIAL PROCESSES,PM25,3.50937,3.44484,3.67027,3.87165,4.540024,4.876349,7.249806468,5.039141153,5.104165564,5.169189975,5.234214386,4.810136067,4.386057747,3.961979428,4.129522577,4.297065725,4.464608874,4.595541322,4.72647377,4.857406218,5.050521595,5.243636971,5.436752348,5.436752348,5.436752348 +53,WA,7,OTHER INDUSTRIAL PROCESSES,SO2,7.42742,6.96892,7.05297,6.91416,4.321521,4.464366,4.65222,4.994048734,4.988579163,4.983109593,4.977640022,3.926980181,2.876320341,1.8256605,1.745157333,1.664654167,1.584151,1.387374167,1.190597333,0.9938205,1.1953759,1.3969313,1.5984867,1.5984867,1.5984867 +53,WA,7,OTHER INDUSTRIAL PROCESSES,VOC,5.02209,6.66961,6.78939,6.78017,7.934373,8.194417,6.550423355,7.042611574,7.214754708,7.386897841,7.559040974,7.012232719,6.465424463,5.918616208,5.506558112,5.094500016,4.68244192,4.63292736,4.5834128,4.53389824,4.054570429,3.575242617,3.095914805,3.095914805,3.095914805 +53,WA,8,SOLVENT UTILIZATION,PM10,,0.0455,0.04449,0.04447,0.112148,0.111244,0.110401,0.028787,0.0433335,0.05788,0.0724265,0.051374167,0.030321833,0.0092695,0.006513,0.0037565,0.001,0.000883333,0.000766667,0.00065,0.001961667,0.003273333,0.004585,0.004585,0.004585 +53,WA,8,SOLVENT UTILIZATION,PM25,,0.01392,0.01363,0.01363,0.095276,0.094592,0.093998,0.023241,0.035361833,0.047482667,0.0596035,0.040524,0.0214445,0.002365,0.00191,0.001455,0.001,0.00085,0.0007,0.00055,0.000931667,0.001313333,0.001695,0.001695,0.001695 +53,WA,8,SOLVENT UTILIZATION,CO,0.005,0.009,0.00964,0.00967,0.034,0.038278,0.043624,0.00065,0.000433333,0.000216667,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53,WA,8,SOLVENT UTILIZATION,NH3,,0.00042,0.00042,0.00042,0.00041,0.000418,0.000428,0.00001815,1.39E-05,9.72E-06,0.0000055,0.0000775,0.0001495,0.0002215,0.000189167,0.000156833,0.0001245,0.000083,0.0000415,0,0,0,0,0,0 +53,WA,8,SOLVENT UTILIZATION,SO2,,,,,,,,0,0,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53,WA,8,SOLVENT UTILIZATION,VOC,91.89889,99.03109,99.88122,90.13283,76.198272,74.915148,77.58606,58.9405243,58.8348243,58.7291243,58.6234243,60.33078855,62.0381528,63.74551705,67.27393256,70.80234808,74.33076359,78.19832875,82.06589392,85.93345908,86.39107953,86.84869998,87.30632044,87.30632044,87.30632044 +53,WA,8,SOLVENT UTILIZATION,NOX,0.07434,0.00378,0.00391,0.00392,0.017,0.018299,0.020324,0.00075,0.0005,0.00025,,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +53,WA,9,STORAGE & TRANSPORT,CO,,0.04949,0.04848,0.04844,0.018903,0.232446,0.24894,0.00214,0.022426667,0.042713333,0.063,0.042,0.021,0,0.000690933,0.001381867,0.0020728,0.006727484,0.011382169,0.016036853,0.010752125,0.005467398,0.00018267,0.00018267,0.00018267 +53,WA,9,STORAGE & TRANSPORT,NH3,,0.00012,0.00012,0.00013,0.226077,0.231728,0.239635,0.381325,0.28655,0.191775,0.097,0.065,0.033,0.001,0.001066667,0.001133333,0.0012,0.001143333,0.001086667,0.00103,0.001006667,0.000983333,0.00096,0.00096,0.00096 +53,WA,9,STORAGE & TRANSPORT,NOX,,0.03117,0.03074,0.03073,0.011163,0.187999,0.199961,0,0.003666667,0.007333333,0.011,0.007333333,0.003666667,0,0,0,0,0.005973317,0.011946633,0.01791995,0.011949967,0.005979983,0.00001,0.00001,0.00001 +53,WA,9,STORAGE & TRANSPORT,PM10,0.2568,0.30298,0.313,0.3155,0.426673,0.426519,0.429634,0.2530955,0.262130167,0.271164833,0.2801995,0.217525692,0.154851884,0.092178076,0.086207784,0.080237492,0.074267199,0.098601127,0.122935054,0.147268982,0.124536667,0.101804353,0.079072038,0.079072038,0.079072038 +53,WA,9,STORAGE & TRANSPORT,PM25,0.08097,0.1196,0.12331,0.124,0.160301,0.15669,0.155682,0.077925507,0.097972861,0.118020215,0.138067568,0.110507193,0.082946817,0.055386441,0.051408694,0.047430947,0.043453199,0.064625559,0.085797919,0.106970279,0.089009865,0.071049452,0.053089038,0.053089038,0.053089038 +53,WA,9,STORAGE & TRANSPORT,SO2,,0.00151,0.00148,0.00148,0.00028,0.056588,0.155414,0,0.020333333,0.040666667,0.061,0.040666667,0.020333333,0,3.33E-06,6.67E-06,0.00001,0.0002746,0.0005392,0.0008038,0.000542533,0.000281267,0.00002,0.00002,0.00002 +53,WA,9,STORAGE & TRANSPORT,VOC,29.75751,26.40968,27.19139,26.9027,13.49488,11.96042,12.177923,25.69799356,25.98348622,26.26897889,26.55447156,22.92330935,19.29214715,15.66098494,17.1313332,18.60168146,12.65358044,13.55330274,14.45302504,15.35274734,14.04681882,12.74089029,11.43496176,11.43496176,11.43496176 +53,WA,10,WASTE DISPOSAL & RECYCLING,SO2,0.23571,0.19443,0.20164,0.20521,0.401317,0.383158,0.39033,0.63622158,0.586064387,0.535907193,0.48575,0.381854327,0.277958654,0.174062981,0.180605672,0.187148362,0.225462431,0.247162878,0.268863326,0.290563774,0.225662061,0.160760348,0.095858635,0.095858635,0.095858635 +53,WA,10,WASTE DISPOSAL & RECYCLING,VOC,11.53542,8.09052,8.42439,8.37448,10.735337,4.481491,4.488855,3.7087159,3.7144111,3.7201063,3.7258015,3.167546034,2.609290568,2.051035102,1.953956458,1.856877814,2.031762112,2.519692679,3.007623246,3.495553813,2.917055273,2.338556734,1.760058194,1.760058194,1.760058194 +53,WA,10,WASTE DISPOSAL & RECYCLING,PM25,4.21966,10.2336,10.6696,10.56922,13.958899,5.248079,5.25096,7.496294954,7.496426444,7.496557933,7.496689422,5.960515922,4.424342422,2.888168921,2.684454896,2.48074087,3.382671194,4.637954727,5.893238259,7.148521792,4.991302497,2.834083202,0.676863907,0.676863907,0.676863907 +53,WA,10,WASTE DISPOSAL & RECYCLING,NOX,1.62438,3.06148,3.1653,3.13257,3.45328,1.687969,1.702719,2.250156173,2.270967449,2.291778724,2.31259,1.97451714,1.63644428,1.29837142,1.226826214,1.155281009,1.274364024,1.495648642,1.71693326,1.938217878,1.452509934,0.96680199,0.481094045,0.481094045,0.481094045 +53,WA,10,WASTE DISPOSAL & RECYCLING,NH3,1.44551,1.87893,1.87196,1.89521,1.918708,1.947498,1.987798,0.148713875,0.153465542,0.158217209,0.162968875,0.124880257,0.086791639,0.048703021,0.056391891,0.064080762,0.071769633,0.287651371,0.50353311,0.719414848,0.57869874,0.437982632,0.297266525,0.297266525,0.297266525 +53,WA,10,WASTE DISPOSAL & RECYCLING,CO,45.35646,78.86952,81.56966,80.03433,90.006582,25.267373,25.278503,21.60965026,21.60363684,21.59762342,21.59161,21.92431907,22.25702814,22.58973722,19.52017366,16.45061011,16.0816128,18.32680731,20.57200182,22.81719634,15.99108844,9.16498054,2.338872641,2.338872641,2.338872641 +53,WA,10,WASTE DISPOSAL & RECYCLING,PM10,4.96239,10.53114,10.98829,10.89462,14.436675,5.646745,5.651416,8.65790728,8.650296474,8.642685668,8.635074863,6.9413416,5.247608338,3.553875076,3.286862423,3.019849771,3.960148635,5.265158073,6.57016751,7.875176948,5.525554945,3.175932942,0.826310939,0.826310939,0.826310939 +53,WA,11,HIGHWAY VEHICLES,PM25,6.88109,4.3459,4.12582,3.83,3.56535,3.25425,3.00583,7.44787484,7.194342144,6.940809447,6.68727675,7.260447555,7.833618359,7.051801654,4.017556941,4.566749381,5.389699037,4.852328505,4.314957972,3.777587439,3.396844393,2.699339949,2.572719369,2.652898524,2.51411772 +53,WA,11,HIGHWAY VEHICLES,CO,2418.35817,1575.53651,1523.81512,1475.90993,1375.77946,1349.10992,1338.46373,1137.534372,1050.439296,963.3442205,876.2491449,1007.141669,1138.034194,1001.689026,606.6344971,936.7699966,809.2445358,776.9296817,744.6148276,712.2999736,664.7819628,522.0442468,537.7483448,476.4126211,447.871183 +53,WA,11,HIGHWAY VEHICLES,SO2,10.76285,5.90535,6.06819,6.1287,6.24622,5.48302,5.53823,6.562527713,5.477325668,4.392123623,3.306921578,2.238325215,1.169728851,0.905107524,0.665196875,0.895130336,0.618413027,0.594824307,0.571235588,0.547646868,0.460342493,0.462459795,0.409992282,0.213121397,0.186372641 +53,WA,11,HIGHWAY VEHICLES,PM10,8.2318,5.47498,5.26945,4.94416,4.67251,4.33962,4.06869,8.946327056,8.68814309,8.429959125,8.171775159,8.921031797,9.670288435,8.828522018,5.558653466,6.154682179,9.406817338,8.557001361,7.707185384,6.857369407,6.504945345,5.371289349,5.219333016,5.813346988,5.710359333 +53,WA,11,HIGHWAY VEHICLES,NOX,212.27551,169.26274,170.58969,167.431,162.32715,160.12283,149.49601,227.1955483,209.2385464,191.2815444,173.3245424,178.0917086,182.8588749,166.0304764,111.8114878,134.2312116,163.897755,152.3542498,140.8107445,129.2672393,118.9643211,95.49006543,89.31876803,79.34687728,72.95391169 +53,WA,11,HIGHWAY VEHICLES,NH3,3.37198,4.71043,5.28163,5.0912,5.24577,5.35864,5.43438,2.934847168,2.832484912,2.730122656,2.6277604,2.673674977,2.719589554,2.569781453,2.35278976,2.427189987,2.498864611,2.443456023,2.388047436,2.332638848,2.270247687,2.213778948,2.206304872,2.006849064,1.95983906 +53,WA,11,HIGHWAY VEHICLES,VOC,198.21443,120.24245,113.7973,109.37713,102.62918,97.92876,94.67866,80.02524319,74.32121747,68.61719176,62.91316604,74.15888733,85.40460863,76.36104061,52.05819632,75.81706638,77.85974148,75.42883464,72.9979278,70.56702096,66.85196466,54.8995608,59.1584624,47.32961958,43.1750729 +53,WA,12,OFF-HIGHWAY,VOC,58.25509,64.96683,61.0121,59.36042,59.15352,58.73201,58.2768,66.85793864,65.57553758,64.29313651,63.01073545,60.56582846,58.12092147,54.99777498,53.14020446,50.68133824,47.77547606,44.7623559,41.74923573,38.73611556,35.13122059,29.35440276,27.92143065,27.27544958,26.62946851 +53,WA,12,OFF-HIGHWAY,CO,456.57465,521.3226,506.63189,507.26419,512.62317,517.95063,528.45543,509.2667269,499.2987639,489.3308009,479.3628379,460.2624167,441.1619956,406.9182186,369.6153974,356.8652528,347.0004524,333.6560436,320.3116348,306.9672261,296.8153282,275.8555025,276.5115326,278.4456611,280.3797896 +53,WA,12,OFF-HIGHWAY,NH3,0.53017,0.61135,0.61001,0.63117,0.06665,0.06665,0.06665,0.059090243,0.059781578,0.060472914,0.061164249,0.061228026,0.061291803,0.069589092,0.062821376,0.063590427,0.064132574,0.064266163,0.064399753,0.064533342,0.062687229,0.049285735,0.058995005,0.05783545,0.056675895 +53,WA,12,OFF-HIGHWAY,NOX,86.30005,93.42162,92.39339,91.16953,91.36627,88.94199,88.76508,122.4410272,117.434908,112.4287887,107.4226695,105.378483,103.3342966,99.62440872,103.8016864,101.9789004,75.57719122,71.95578297,68.33437472,64.71296648,65.33056796,68.68780238,66.56577094,64.81662776,63.06748457 +53,WA,12,OFF-HIGHWAY,PM10,7.41186,7.53972,7.42114,7.31502,7.18237,6.97781,6.86992,8.791063457,8.32853305,7.866002643,7.403472236,7.500399565,7.597326894,7.212248211,7.387626373,6.08076128,5.628962971,5.354455631,5.079948291,4.805440951,4.379739963,3.753334878,3.528337988,3.421109611,3.313881235 +53,WA,12,OFF-HIGHWAY,PM25,6.79295,6.91019,6.80367,6.70959,6.58148,6.39175,6.2927,8.258799875,7.819291454,7.379783033,6.940274612,7.022092104,7.103909596,6.573501896,6.765768567,5.571046601,5.208293063,4.943302219,4.678311375,4.413320532,4.053086549,3.550041251,3.332618584,3.227948876,3.123279167 +53,WA,12,OFF-HIGHWAY,SO2,9.09414,9.99174,10.2523,10.56257,10.26749,10.05499,10.1202,27.35795412,24.54445183,21.73094954,18.91744725,17.57744038,16.23743351,14.83331074,15.60826372,7.56496447,12.73376468,12.40210661,12.07044853,11.73879045,8.225490886,1.18909286,1.198891763,1.237440517,1.275989271 +53,WA,14,MISCELLANEOUS,PM25,110.99989,78.99203,66.9645,97.33734,42.472063,47.031719,43.0221347,32.38189257,38.73583665,45.08978074,51.44372483,44.48734359,37.53096235,30.57458111,30.61291459,30.65124807,30.68958155,32.94251475,35.19544794,37.44838114,35.66439523,33.88040933,32.09642343,32.09642343,32.09642343 +53,WA,14,MISCELLANEOUS,CO,233.15289,452.97509,326.79862,675.98674,45.205874,94.71932,134.536086,77.77109,149.5001067,221.2291233,292.95814,213.9285931,134.8990463,55.86949944,46.4637355,37.05797157,27.65220763,28.43451661,29.21682559,29.99913457,27.10598722,24.21283987,21.31969252,21.31969252,21.31969252 +53,WA,14,MISCELLANEOUS,VOC,11.97035,44.26141,24.38223,60.23358,3.948873,6.124298,8.025797,15.358569,32.43892528,49.51928155,66.59963783,46.07880992,25.55798201,5.0371541,4.297744811,3.558335522,2.818926233,3.294696217,3.770466201,4.246236184,4.182320542,4.118404899,4.054489256,4.054489256,4.054489256 +53,WA,14,MISCELLANEOUS,SO2,0.27101,0.3799,0.23155,0.54548,0.269827,0.53692,0.77043,0.930341255,1.357127115,1.783912974,2.210698834,1.483611239,0.756523644,0.029436048,0.09147539,0.153514732,0.215554074,0.210417379,0.205280685,0.200143991,0.185503462,0.170862933,0.156222404,0.156222404,0.156222404 +53,WA,14,MISCELLANEOUS,PM10,506.10624,254.92272,231.03367,270.02434,200.124362,207.62715,185.8817008,229.3323761,236.8300206,244.3276651,251.8253096,232.6896338,213.553958,194.4182823,187.4416414,180.4650005,173.4883596,181.8451225,190.2018854,198.5586482,193.201126,187.8436037,182.4860814,182.4860814,182.4860814 +53,WA,14,MISCELLANEOUS,NH3,36.378,43.01427,45.53582,44.91058,44.46933,44.3803,47.90743262,43.14897413,44.33721848,45.52546283,46.71370719,45.38231805,44.05092892,42.71953979,45.02079548,47.32205117,49.62330685,44.52086532,39.41842379,34.31598225,36.45546355,38.59494484,40.73442613,40.73442613,40.73442613 +53,WA,14,MISCELLANEOUS,NOX,8.51161,11.46768,7.66398,16.72055,1.422624,2.304649,3.162379,0.771517006,1.925955198,3.080393389,4.23483158,3.50490297,2.774974359,2.045045749,1.798108619,1.551171489,1.304234359,1.381349764,1.458465168,1.535580572,1.382426398,1.229272223,1.076118049,1.076118049,1.076118049 +53,WA,15,WILDFIRES,NH3,,,,,,,,0.828592108,0.828592108,0.828592108,0.987545149,0.987545149,0.987545149,3.552144245,3.552144245,3.552144245,0.692408554,0.692408554,0.692408554,20.28576259,20.28576259,20.28576259,24.34301472,24.34301472,24.34301472 +53,WA,15,WILDFIRES,CO,,,,,,,,51.85985,51.85985,51.85985,60.02816828,60.02816828,60.02816828,217.9989511,217.9989511,217.9989511,42.06440625,42.06440625,42.06440625,1238.708058,1238.708058,1238.708058,1488.728068,1488.728068,1488.728068 +53,WA,15,WILDFIRES,NOX,,,,,,,,0.55321168,0.55321168,0.55321168,0.938909963,0.938909963,0.938909963,1.647239912,1.647239912,1.647239912,0.679333633,0.679333633,0.679333633,14.46580781,14.46580781,14.46580781,15.63493685,15.63493685,15.63493685 +53,WA,15,WILDFIRES,PM10,,,,,,,,5.030432988,5.030432988,5.030432988,6.213622762,6.213622762,6.213622762,20.99141783,20.99141783,20.99141783,4.373276862,4.373276862,4.373276862,123.8501057,123.8501057,123.8501057,147.2686329,147.2686329,147.2686329 +53,WA,15,WILDFIRES,PM25,,,,,,,,4.262861008,4.262861008,4.262861008,5.265782002,5.265782002,5.265782002,17.7893741,17.7893741,17.7893741,3.706163905,3.706163905,3.706163905,104.9495223,104.9495223,104.9495223,124.8039323,124.8039323,124.8039323 +53,WA,15,WILDFIRES,VOC,,,,,,,,11.92599818,11.92599818,11.92599818,14.19596148,14.19596148,14.19596148,51.061996,51.061996,51.061996,9.953712727,9.953712727,9.953712727,291.5686469,291.5686469,291.5686469,349.9306606,349.9306606,349.9306606 +53,WA,15,WILDFIRES,SO2,,,,,,,,0.336030937,0.336030937,0.336030937,0.48775528,0.48775528,0.48775528,1.23238463,1.23238463,1.23238463,0.348317921,0.348317921,0.348317921,8.563171727,8.563171727,8.563171727,9.757153954,9.757153954,9.757153954 +53,WA,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,11.01744729,14.73839221,18.45933713,22.18028205,20.36263283,18.54498361,16.72733439,12.07763801,7.427941626,2.778245245,2.778245245,2.778245245 +53,WA,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,9.37038865,12.51254178,15.65469491,18.79684804,17.25647726,15.71610647,14.17573569,10.25707779,6.338419893,2.419761995,2.419761995,2.419761995 +53,WA,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,28.96194309,36.87363038,44.78531768,52.69700497,48.23231969,43.76763441,39.30294912,27.33716306,15.37137701,3.40559095,3.40559095,3.40559095 +53,WA,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,2.265241922,2.732120541,3.19899916,3.66587778,3.355249428,3.044621077,2.733992726,2.570696884,2.407401042,2.2441052,2.2441052,2.2441052 +53,WA,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,261.3048892,248.9324098,236.5599304,224.1874509,205.099713,186.011975,166.9242371,115.8236126,64.72298821,13.62236379,13.62236379,13.62236379 +53,WA,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,1.25938697,1.625574342,1.991761713,2.357949085,2.236506559,2.115064033,1.993621507,1.568069843,1.142518179,0.716966515,0.716966515,0.716966515 +53,WA,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.910969929,1.097444546,1.283919163,1.470393781,1.369436549,1.268479317,1.167522086,0.784322778,0.40112347,0.017924163,0.017924163,0.017924163 +54,WV,1,FUEL COMB. ELEC. UTIL.,VOC,1.05264,1.08199,1.13766,1.15346,1.161241,1.179276,1.066309,1.17974666,1.167116891,1.154487123,1.141857354,1.156613232,1.171369111,1.186124989,1.12767463,1.06922427,1.010773911,0.987475393,0.964176875,0.940878357,0.898416697,0.855955037,0.813493377,0.813493377,0.813493377 +54,WV,1,FUEL COMB. ELEC. UTIL.,CO,9.03397,9.27411,9.74592,9.95323,10.147189,9.995496,11.647977,10.3414777,10.34374272,10.34600774,10.34827276,10.14036488,9.932456994,9.72454911,9.851539218,9.978529326,10.10551943,10.00139068,9.897261919,9.793133161,9.550467292,9.307801423,9.065135554,9.065135554,9.065135554 +54,WV,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01532,0.01535,0.01608,0.016228,0.017882,0.016864,0.2098887,0.190788543,0.171688386,0.152588229,0.111739866,0.070891503,0.030043139,0.040905521,0.051767902,0.062630283,0.057930921,0.053231559,0.048532197,0.037282025,0.026031852,0.01478168,0.01478168,0.01478168 +54,WV,1,FUEL COMB. ELEC. UTIL.,NOX,335.05662,298.55532,323.85885,294.75713,287.389556,260.777421,206.773035,227.8459982,203.141886,172.339411,159.9795716,151.67255,150.848511,99.37251737,84.34694763,69.31821789,54.28948815,59.75798023,65.22647231,70.69496439,61.69292231,52.69088022,43.68883813,37.938946,33.877293 +54,WV,1,FUEL COMB. ELEC. UTIL.,PM10,8.07837,9.44141,10.60953,11.09821,44.210988,37.540689,30.770468,31.24575418,30.34686568,29.44797717,28.54908867,28.39252092,28.23595317,28.07938541,22.40810157,16.73681773,11.06553389,9.724491445,8.383449003,7.042406561,6.845342384,6.648278206,6.451214029,6.451214029,6.451214029 +54,WV,1,FUEL COMB. ELEC. UTIL.,PM25,2.75378,4.71559,4.81949,5.04877,38.024218,32.280808,26.094635,28.88179565,28.04931481,27.21683397,26.38435313,26.24750853,26.11066392,25.97381931,20.34918682,14.72455433,9.099921838,8.145993506,7.192065174,6.238136843,6.074324717,5.910512591,5.746700464,5.746700464,5.746700464 +54,WV,1,FUEL COMB. ELEC. UTIL.,SO2,968.61226,661.11722,666.66222,671.0743,697.613961,596.518376,501.352836,509.4645014,539.857635,473.759775,469.4403247,454.157776,371.996356,304.820689,234.2407338,163.6605706,93.08040736,93.48320819,93.88600903,94.28880987,76.37266438,58.45651888,40.54037339,43.510206,36.644651 +54,WV,2,FUEL COMB. INDUSTRIAL,VOC,1.73851,1.62993,1.60486,1.59447,1.341446,1.339939,1.352501,1.120155179,1.051352122,0.982549065,0.913746008,0.894198925,0.874651842,0.855104759,0.750058447,0.645012135,0.539965822,0.639924389,0.739882955,0.839841522,0.77920556,0.718569598,0.657933636,0.657933636,0.657933636 +54,WV,2,FUEL COMB. INDUSTRIAL,SO2,35.92673,41.10558,40.20923,39.46266,36.830415,35.908065,38.132817,39.05507052,37.51913482,35.98319912,34.44726341,29.79703239,25.14680136,20.49657034,19.09982267,17.703075,16.30632733,15.57573123,14.84513514,14.11453904,10.26320389,6.41186873,2.560533573,2.560533573,2.560533573 +54,WV,2,FUEL COMB. INDUSTRIAL,PM25,0.47329,1.01079,0.99306,0.98884,2.122239,2.199851,2.105231,0.960235981,0.93201259,0.903789199,0.875565809,0.811750418,0.747935028,0.684119637,0.818208763,0.952297888,1.086318141,1.137265826,1.18821351,1.239161194,0.988007285,0.736853377,0.485699468,0.485699468,0.485699468 +54,WV,2,FUEL COMB. INDUSTRIAL,PM10,0.96126,1.20147,1.18257,1.17722,2.317345,2.403894,2.308224,1.440059618,1.415479195,1.390898772,1.36631835,1.455423673,1.544528996,1.63363432,1.747984961,1.862335601,1.976686242,1.913599741,1.85051324,1.787426739,1.360852914,0.934279089,0.507705264,0.507705264,0.507705264 +54,WV,2,FUEL COMB. INDUSTRIAL,NOX,63.93451,39.65477,39.05052,38.62576,36.101926,35.822846,36.366347,34.42831822,32.33708316,30.2458481,28.15461304,25.19001668,22.22542032,19.26082395,18.37124589,17.48166782,16.59208976,16.97304854,17.35400733,17.73496611,14.91230948,12.08965284,9.266996204,9.266996204,9.266996204 +54,WV,2,FUEL COMB. INDUSTRIAL,CO,8.3161,8.35447,8.18653,8.15365,8.622917,8.591751,8.824329,8.891697674,8.991279413,9.090861152,9.190442891,8.1459484,7.101453909,6.056959418,5.512578783,4.968198148,4.423817513,4.404825492,4.385833472,4.366841451,4.00258595,3.638330448,3.274074946,3.274074946,3.274074946 +54,WV,2,FUEL COMB. INDUSTRIAL,NH3,0.12929,0.13374,0.13466,0.13187,0.155902,0.159792,0.169539,0.102080565,0.105941306,0.109802048,0.11366279,0.089334636,0.065006482,0.040678328,0.039595859,0.038513389,0.03743092,0.041323889,0.045216859,0.049109829,0.044334829,0.039559829,0.034784829,0.034784829,0.034784829 +54,WV,3,FUEL COMB. OTHER,SO2,6.88078,3.94427,4.02155,3.67372,5.037448,5.087206,5.149024,4.966082088,4.962257989,4.95843389,4.954609792,3.513857405,2.073105019,0.632352633,0.674780226,0.71720782,0.759635413,0.628989962,0.498344511,0.367699059,0.368123171,0.368547283,0.368971395,0.368971395,0.368971395 +54,WV,3,FUEL COMB. OTHER,PM25,8.84826,4.02745,4.02729,4.01654,6.261231,4.832369,4.84261,3.336183218,3.336984278,3.337785338,3.338586398,3.086518354,2.834450309,2.582382264,2.656054206,2.729726148,2.80319786,3.019383942,3.235570024,3.451756106,5.817317959,8.182879811,10.54844166,10.54844166,10.54844166 +54,WV,3,FUEL COMB. OTHER,CO,69.96103,34.1185,34.10161,33.786,52.172628,42.128774,42.189807,29.62693987,29.38075806,29.13457625,28.88839444,25.66733198,22.44626951,19.22520705,19.30714458,19.38908211,19.47101964,20.72916428,21.98730892,23.24545355,41.01016206,58.77487056,76.53957906,76.53957906,76.53957906 +54,WV,3,FUEL COMB. OTHER,NOX,17.98858,26.1612,25.90503,24.44907,16.061177,16.256212,16.531378,15.55443796,14.75186273,13.94928751,13.14671229,11.66641379,10.1861153,8.70581681,8.690860404,8.675903998,8.660947592,8.321358236,7.981768881,7.642179525,7.526714649,7.411249774,7.295784898,7.295784898,7.295784898 +54,WV,3,FUEL COMB. OTHER,NH3,0.03905,0.03958,0.03855,0.03459,0.052061,0.053122,0.054345,0.015943796,0.016325563,0.01670733,0.017089096,0.144765707,0.272442318,0.400118928,0.411007972,0.421897016,0.432786059,0.434938397,0.437090735,0.439243072,0.562151449,0.685059826,0.807968203,0.807968203,0.807968203 +54,WV,3,FUEL COMB. OTHER,PM10,8.97353,4.13086,4.13392,4.12334,6.425999,4.998825,5.01098,3.610441542,3.609809297,3.609177051,3.608544806,3.276456837,2.944368869,2.612280901,2.70602333,2.799765758,2.893432135,3.115191787,3.33695144,3.558711092,5.926109732,8.293508371,10.66090701,10.66090701,10.66090701 +54,WV,3,FUEL COMB. OTHER,VOC,13.09222,11.6912,11.71608,11.59863,38.544326,12.140376,12.177219,9.304340299,8.655371032,8.006401765,7.357432498,6.324969902,5.292507306,4.26004471,4.192903461,4.125762212,4.058620963,4.133508638,4.208396312,4.283283986,6.813878239,9.344472492,11.87506674,11.87506674,11.87506674 +54,WV,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,26.72839,10.55689,10.75145,10.91703,8.087579,8.272481,8.509552,7.614328299,7.41985569,7.225383081,7.030910471,5.495870591,3.960830711,2.425790831,2.283736726,2.141682621,1.999628517,1.973591194,1.947553871,1.921516548,1.801610415,1.681704282,1.561798149,1.561798149,1.561798149 +54,WV,4,CHEMICAL & ALLIED PRODUCT MFG,CO,150.27363,63.60385,65.29564,66.14666,62.505086,64.874662,66.50175,50.83525406,47.20087634,43.56649863,39.93212092,27.09374141,14.25536191,1.416982406,1.02711437,0.637246333,0.247378297,0.272377587,0.297376877,0.322376166,0.271001494,0.219626821,0.168252148,0.168252148,0.168252148 +54,WV,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,0.00194,0.00196,0.002,0.003062,0.003158,0.003256,0.079911781,0.076072012,0.072232244,0.068392475,0.067548386,0.066704297,0.065860208,0.065237539,0.064614869,0.0639922,0.070528161,0.077064122,0.083600083,0.080610612,0.077621142,0.074631671,0.074631671,0.074631671 +54,WV,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,6.50858,1.80467,1.84788,1.87717,1.737335,1.796032,1.843742,1.626981484,1.492860049,1.358738615,1.22461718,1.094936043,0.965254905,0.835573768,0.691208079,0.546842389,0.4024767,0.372653584,0.342830467,0.313007351,0.298890507,0.284773664,0.27065682,0.27065682,0.27065682 +54,WV,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.23196,1.17161,1.19651,1.21689,1.330873,1.371097,1.409308,0.502798881,0.55448588,0.606172878,0.657859876,0.595594694,0.533329512,0.47106433,0.424104839,0.377145347,0.330185856,0.338907149,0.347628442,0.356349735,0.349066571,0.341783407,0.334500244,0.334500244,0.334500244 +54,WV,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.19979,1.16633,1.19109,1.21142,1.197762,1.233712,1.267632,0.370015757,0.424109025,0.478202293,0.532295561,0.477215673,0.422135785,0.367055897,0.326775031,0.286494166,0.2462133,0.244623583,0.243033866,0.241444149,0.236261973,0.231079797,0.225897621,0.225897621,0.225897621 +54,WV,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,10.17152,10.28933,10.56958,10.70719,9.224318,9.565041,9.813792,9.052176196,8.374370722,7.696565249,7.018759775,5.74876188,4.478763984,3.208766089,2.187517095,1.166268101,0.145019107,0.114880895,0.084742682,0.05460447,0.055716934,0.056829397,0.05794186,0.05794186,0.05794186 +54,WV,5,METALS PROCESSING,VOC,18.10158,2.41042,2.57763,2.58617,2.221624,2.295548,2.436797,1.026891139,0.862642332,0.698393526,0.534144719,0.507977679,0.48181064,0.4556436,0.47725543,0.49886726,0.52047909,0.526178012,0.531876935,0.537575857,0.522359624,0.507143391,0.491927158,0.491927158,0.491927158 +54,WV,5,METALS PROCESSING,SO2,1.55508,10.68985,11.39703,11.38051,6.254467,6.438936,6.804283,5.61943788,5.328131269,5.036824658,4.745518047,4.589496231,4.433474416,4.2774526,3.5414334,2.8054142,2.069395,1.834076063,1.598757126,1.363438189,1.336768895,1.310099601,1.283430307,1.283430307,1.283430307 +54,WV,5,METALS PROCESSING,PM25,6.24376,5.95774,6.36079,6.37078,5.687917,6.039637,6.365691,4.093420222,3.127310449,2.161200676,1.195090903,1.151111344,1.107131784,1.063152224,1.059652739,1.056153254,1.045784369,0.926172621,0.806560872,0.686949124,0.758368951,0.829788778,0.901208605,0.901208605,0.901208605 +54,WV,5,METALS PROCESSING,PM10,9.72369,6.35695,6.78769,6.79942,6.648062,7.034409,7.420668,5.326160609,4.095505532,2.864850456,1.634195379,1.615730755,1.597266131,1.578801506,1.550118824,1.521436142,1.46771246,1.280304484,1.092896508,0.905488531,0.970890436,1.036292341,1.101694246,1.101694246,1.101694246 +54,WV,5,METALS PROCESSING,NOX,3.59399,1.93633,2.07189,2.0783,1.587454,1.673994,1.769496,1.57003337,1.436489676,1.302945982,1.169402288,1.256808192,1.344214096,1.43162,1.556527634,1.681435268,1.806342902,1.724255968,1.642169034,1.5600821,1.50014844,1.44021478,1.38028112,1.38028112,1.38028112 +54,WV,5,METALS PROCESSING,CO,72.61338,32.67202,34.77062,34.65826,29.249546,30.08483,31.741525,28.83702053,26.27691695,23.71681338,21.1567098,28.25574873,35.35478767,42.4538266,36.36230501,30.27078342,24.17926183,16.66055285,9.141843876,1.623134899,1.593903964,1.564673028,1.535442093,1.535442093,1.535442093 +54,WV,5,METALS PROCESSING,NH3,0.322,0.27284,0.292,0.2929,0.261212,0.269572,0.287065,0.1430511,0.133470667,0.123890233,0.1143098,0.103029123,0.091748447,0.08046777,0.058217804,0.035967839,0.013717873,0.012125982,0.010534091,0.008942199,0.008545293,0.008148387,0.00775148,0.00775148,0.00775148 +54,WV,6,PETROLEUM & RELATED INDUSTRIES,VOC,1.73477,2.31193,2.3948,2.42089,1.867191,1.869114,1.909427,2.16357424,1.931878543,1.700182847,1.46848715,1.331680687,1.194874223,1.05806776,15.18714222,29.31621668,47.73427218,65.74676587,83.75925955,101.7717532,96.71291485,91.65407645,86.59523806,86.59523806,86.59523806 +54,WV,6,PETROLEUM & RELATED INDUSTRIES,NH3,,,,,0.000001,0.000001,0.000001,,0,0,,0,0,,0,0,0,0,0,,1.55E-06,3.10E-06,4.65E-06,4.65E-06,4.65E-06 +54,WV,6,PETROLEUM & RELATED INDUSTRIES,SO2,,8.47985,8.48222,8.48311,10.136867,11.261901,11.261917,7.54990784,7.879609327,8.209310813,8.5390123,8.230143667,7.921275033,7.6124064,7.960115069,8.307823738,7.311232936,4.909574324,2.507915711,0.106257099,0.081016696,0.055776293,0.030535891,0.030535891,0.030535891 +54,WV,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.17955,1.28073,1.2812,1.2808,1.371201,1.522654,1.522766,1.08565212,0.954449747,0.823247373,0.692045,0.691302067,0.690559133,0.6898162,10.71113611,20.73245601,22.04117507,23.33480665,24.62843824,25.92206982,25.91638438,25.91069894,25.9050135,25.9050135,25.9050135 +54,WV,6,PETROLEUM & RELATED INDUSTRIES,CO,0.15492,0.334,0.33601,0.32846,0.406772,0.445182,0.445383,0.0011632,0.0594588,0.1177544,0.17605,0.187058633,0.198067267,0.2090759,11.65118587,23.09329584,27.64482641,30.74090451,33.8369826,36.9330607,37.18315645,37.4332522,37.68334795,37.68334795,37.68334795 +54,WV,6,PETROLEUM & RELATED INDUSTRIES,PM10,,0.59524,0.5952,0.59219,0.519262,0.57574,0.575763,0.332932014,0.37250453,0.412077046,0.451649562,0.403384555,0.355119547,0.306854539,0.647220287,0.987586036,0.691841031,0.624830049,0.557819067,0.490808086,0.472749904,0.454691721,0.436633539,0.436633539,0.436633539 +54,WV,6,PETROLEUM & RELATED INDUSTRIES,PM25,,0.55132,0.5513,0.54956,0.284875,0.315903,0.315914,0.332929134,0.307718142,0.28250715,0.257296158,0.229915278,0.202534399,0.175153519,0.526742301,0.878331083,0.594324109,0.559569916,0.524815723,0.49006153,0.472205913,0.454350297,0.43649468,0.43649468,0.43649468 +54,WV,7,OTHER INDUSTRIAL PROCESSES,PM25,1.84401,7.56241,7.89004,8.09642,5.986125,6.38452,6.893399731,5.467816718,5.494640072,5.521463427,5.548286782,5.168495098,4.788703415,4.408911731,4.157597789,3.906283847,3.654969905,3.263877875,2.872785844,2.481693814,2.430804238,2.379914661,2.329025085,2.329025085,2.329025085 +54,WV,7,OTHER INDUSTRIAL PROCESSES,VOC,2.97022,2.14708,2.22682,2.25544,2.14306,2.272688,2.403469955,1.864075133,2.05210194,2.240128748,2.428155556,2.267604287,2.107053018,1.946501749,1.725328219,1.504154689,1.282981159,1.289607573,1.296233987,1.302860401,1.289013642,1.275166883,1.261320124,1.261320124,1.261320124 +54,WV,7,OTHER INDUSTRIAL PROCESSES,SO2,2.31248,2.60279,2.68115,2.68028,2.63874,2.749626,2.864737,2.377059746,2.620053279,2.863046813,3.106040346,4.571888021,6.037735696,7.503583372,5.663235505,3.822887639,1.982539772,1.866098614,1.749657455,1.633216297,1.467904665,1.302593034,1.137281403,1.137281403,1.137281403 +54,WV,7,OTHER INDUSTRIAL PROCESSES,PM10,7.425,18.65896,19.78742,20.73999,19.393166,20.705339,21.32127949,18.65880106,18.67507938,18.6913577,18.70763603,20.00936472,21.31109341,22.61282211,22.08038411,21.54794611,21.01550811,17.73709241,14.45867671,11.18026101,10.29559871,9.410936409,8.52627411,8.52627411,8.52627411 +54,WV,7,OTHER INDUSTRIAL PROCESSES,NOX,4.03748,5.57106,5.84696,5.87725,6.569104,6.875776,7.189854,5.3473743,5.340154938,5.332935575,5.325716213,6.130026215,6.934336216,7.738646218,5.980304944,4.221963669,2.463622394,2.441620599,2.419618804,2.397617009,2.263791575,2.129966141,1.996140707,1.996140707,1.996140707 +54,WV,7,OTHER INDUSTRIAL PROCESSES,NH3,,0.03496,0.03672,0.03736,0.044428,0.045938,0.047893,0.412130565,0.439592304,0.467054042,0.494515781,0.357982927,0.221450074,0.08491722,0.136438,0.18795878,0.10330606,0.087468247,0.071630433,0.05579262,0.069098021,0.082403422,0.095708823,0.095708823,0.095708823 +54,WV,7,OTHER INDUSTRIAL PROCESSES,CO,0.64102,4.06074,4.23848,4.16753,1.718867,1.771173,2.014352258,2.176811325,2.407147037,2.63748275,2.867818462,2.847603269,2.827388076,2.807172883,2.780013571,2.75285426,2.725694948,3.188786227,3.651877505,4.114968784,3.661322919,3.207677055,2.75403119,2.75403119,2.75403119 +54,WV,8,SOLVENT UTILIZATION,CO,,0.00607,0.00644,0.00664,0.015528,0.016071,0.016774,0.01512433,0.012394997,0.009665663,0.00693633,0.004728553,0.002520777,0.000313,0.000324667,0.000336333,0.000348,0.000378667,0.000409333,0.00044,0.000305373,0.000170747,0.00003612,0.00003612,0.00003612 +54,WV,8,SOLVENT UTILIZATION,VOC,34.84922,33.76963,34.5286,31.6105,30.616789,27.763814,28.839376,31.83153897,31.6437879,31.45603684,31.26828577,25.21453592,19.16078607,13.10703622,13.50958794,13.91213965,14.31469137,14.84926519,15.38383902,15.91841284,15.71026891,15.50212497,15.29398104,15.29398104,15.29398104 +54,WV,8,SOLVENT UTILIZATION,SO2,,0.00448,0.00484,0.00497,0.00012,0.000123,0.000123,0.00010588,0.00008688,0.00006788,0.00004888,0.00003292,0.00001696,0.000001,0.000001,0.000001,0.000001,0.000001,0.000001,,8.60E-09,1.72E-08,2.58E-08,2.58E-08,2.58E-08 +54,WV,8,SOLVENT UTILIZATION,PM25,0.00017,0.06675,0.07043,0.072,0.034319,0.035651,0.037479,0.031838131,0.033650417,0.035462703,0.037274989,0.025920932,0.014566875,0.003212819,0.006386112,0.009559404,0.012732697,0.009235115,0.005737532,0.00223995,0.001983825,0.0017277,0.001471574,0.001471574,0.001471574 +54,WV,8,SOLVENT UTILIZATION,PM10,0.00021,0.06722,0.07091,0.07249,0.034319,0.035651,0.037479,0.033991544,0.036291227,0.038590909,0.040890591,0.02839809,0.015905588,0.003413087,0.006519689,0.009626292,0.012732894,0.009240476,0.005748057,0.002255639,0.00200311,0.001750581,0.001498052,0.001498052,0.001498052 +54,WV,8,SOLVENT UTILIZATION,NOX,,0.07396,0.07954,0.08152,0.028123,0.029268,0.03069,0.01807394,0.014704303,0.011334667,0.00796503,0.00534302,0.00272101,0.000099,0.000105,0.000111,0.000117,0.000117,0.000117,,1.43E-05,2.87E-05,0.000043,0.000043,0.000043 +54,WV,8,SOLVENT UTILIZATION,NH3,,0.02989,0.03193,0.03321,0.035453,0.037295,0.039424,0.00032,0.000281,0.000242,0.000203,0.000188333,0.000173667,0.000159,0.000173667,0.000188333,0.000203,0.000192,0.000181,0.00017,0.000113333,5.67E-05,0,0,0 +54,WV,9,STORAGE & TRANSPORT,PM25,0.0723,1.77638,1.81952,1.84261,0.83642,0.861749,0.887191,0.64806036,0.666730169,0.685399978,0.704069787,0.637849951,0.571630114,0.505410278,0.39545377,0.285497262,0.182410155,0.181706389,0.181002624,0.180298858,0.173162851,0.166026844,0.158890837,0.158890837,0.158890837 +54,WV,9,STORAGE & TRANSPORT,NH3,,,,,0.000011,0.000011,0.000011,0.000016867,8.77E-05,0.000158446,0.000229235,0.000507038,0.00078484,0.001062642,0.000961174,0.000859705,0.000758237,0.000513187,0.000268138,2.31E-05,1.83E-05,1.36E-05,8.87E-06,8.87E-06,8.87E-06 +54,WV,9,STORAGE & TRANSPORT,PM10,0.14207,2.19372,2.23579,2.25733,2.026523,2.085642,2.144739,1.65144965,1.550176765,1.448903881,1.347630996,1.21966466,1.091698324,0.963731988,0.789193726,0.614655464,0.465158203,0.475748562,0.486338922,0.496929282,0.480486906,0.464044529,0.447602153,0.447602153,0.447602153 +54,WV,9,STORAGE & TRANSPORT,SO2,,0.00098,0.00099,0.00102,0.010588,0.010652,0.01077,0.00000111,7.77E-07,4.43E-07,0.00000011,0.00000011,0.00000011,0.00000011,0.00000011,0.00000011,0.00000011,1.65E-06,3.20E-06,4.74E-06,3.20E-06,1.67E-06,1.32E-07,1.32E-07,1.32E-07 +54,WV,9,STORAGE & TRANSPORT,VOC,19.14932,15.21799,15.83819,16.13529,13.360348,13.140671,13.25744,11.60422277,11.64745142,11.69068008,11.73390874,11.00980562,10.2857025,9.561599373,9.803025634,10.04445189,8.620687028,7.562953608,6.505220188,5.447486768,5.483852934,5.520219101,5.556585268,5.556585268,5.556585268 +54,WV,9,STORAGE & TRANSPORT,CO,,0.00206,0.00215,0.0022,0.023468,0.024185,0.025001,0.01478075,0.017869618,0.020958485,0.024047353,0.016696358,0.009345363,0.001994368,0.001983241,0.001972113,0.001960986,0.002023267,0.002085548,0.002147828,0.002145789,0.002143749,0.002141709,0.002141709,0.002141709 +54,WV,9,STORAGE & TRANSPORT,NOX,,0.0004,0.00042,0.00043,0.013106,0.013288,0.013527,0.0031136,0.003432933,0.003752267,0.0040716,0.003488933,0.002906267,0.0023236,0.0027376,0.0031516,0.0035656,0.002681061,0.001796522,0.000911984,0.000893722,0.000875461,0.0008572,0.0008572,0.0008572 +54,WV,10,WASTE DISPOSAL & RECYCLING,NOX,0.84907,1.67151,1.57708,1.58063,1.487351,1.490189,1.491013,1.48754142,1.488138592,1.488735765,1.489332937,1.380288521,1.271244106,1.16219969,1.15883073,1.15546177,1.15209281,1.051321583,0.950550357,0.84977913,0.775568735,0.70135834,0.627147945,0.627147945,0.627147945 +54,WV,10,WASTE DISPOSAL & RECYCLING,VOC,23.26164,7.32065,7.18011,7.23154,7.135968,7.15271,7.22118,7.15640374,7.198818768,7.241233797,7.283648825,5.74906901,4.214489196,2.679909381,2.660741901,2.64157442,2.62240694,2.421953321,2.221499701,2.021046082,1.946229598,1.871413113,1.796596629,1.796596629,1.796596629 +54,WV,10,WASTE DISPOSAL & RECYCLING,SO2,0.13374,0.13018,0.13537,0.1363,0.108225,0.108071,0.108877,0.099484555,0.099906158,0.100327761,0.100749364,0.08699985,0.073250336,0.059500823,0.060749262,0.061997701,0.06324614,0.117084081,0.170922022,0.224759964,0.208039159,0.191318355,0.17459755,0.17459755,0.17459755 +54,WV,10,WASTE DISPOSAL & RECYCLING,PM10,3.52894,7.47107,7.22312,7.24409,7.119435,7.126656,7.131717,7.167302756,7.206732778,7.2461628,7.285592822,6.500105664,5.714618505,4.929131347,4.899304837,4.869478327,4.839651817,4.33475812,3.829864422,3.324970724,3.293968326,3.262965927,3.231963529,3.231963529,3.231963529 +54,WV,10,WASTE DISPOSAL & RECYCLING,NH3,0.30061,0.3222,0.3222,0.32842,0.33765,0.340877,0.354003,0.00766548,0.008429653,0.009193827,0.009958,0.009484818,0.009011635,0.008538453,0.008207625,0.007876798,0.00754597,0.02018373,0.03282149,0.04545925,0.045421181,0.045383112,0.045345043,0.045345043,0.045345043 +54,WV,10,WASTE DISPOSAL & RECYCLING,CO,12.69366,45.64281,41.7749,41.7715,39.453367,39.569893,39.574926,39.38286158,39.39558726,39.40831295,39.42103863,37.11853901,34.81603939,32.51353977,32.27071501,32.02789024,31.78506548,28.24821427,24.71136306,21.17451185,19.46116214,17.74781244,16.03446273,16.03446273,16.03446273 +54,WV,10,WASTE DISPOSAL & RECYCLING,PM25,3.20436,7.17437,6.91045,6.92889,6.7578,6.76511,6.768639,6.746189112,6.759823624,6.773458136,6.787092648,5.852010089,4.91692753,3.981844971,3.98168998,3.981534989,3.981379997,3.562313591,3.143247184,2.724180778,2.765155962,2.806131145,2.847106329,2.847106329,2.847106329 +54,WV,11,HIGHWAY VEHICLES,NOX,77.92631,70.89388,71.67208,70.58712,56.93549,66.74933,63.79019,84.36151097,77.10305113,69.84459129,62.58613145,58.83139401,55.07665656,51.84583977,43.84136153,37.0872154,41.87939165,41.54617163,41.21295161,40.87973159,37.64065561,29.57438433,24.33605531,24.6043236,22.88846728 +54,WV,11,HIGHWAY VEHICLES,VOC,67.5693,44.28738,42.6596,41.80957,37.0339,37.50997,36.61498,29.88703106,27.78295015,25.67886923,23.57478832,24.56286105,25.55093377,22.19277348,20.4568781,18.52038358,20.75903376,19.62358053,18.4881273,17.35267408,16.39855928,13.55168513,13.93218246,11.21340992,10.18757136 +54,WV,11,HIGHWAY VEHICLES,SO2,4.40391,2.33468,2.40177,2.42294,2.09275,2.13178,2.19016,2.71077679,2.269887729,1.828998668,1.388109606,0.821766762,0.255423917,0.240945073,0.205571649,0.214804912,0.179532739,0.17824872,0.1769647,0.17568068,0.172158081,0.165632759,0.153139064,0.078838934,0.066807709 +54,WV,11,HIGHWAY VEHICLES,PM10,3.45589,2.42409,2.31937,2.15634,1.56635,1.86847,1.77081,2.697333153,2.596662313,2.495991473,2.395320633,2.267758647,2.14019666,2.000188053,1.785563351,1.510229526,2.201828077,2.175265627,2.148703177,2.122140727,1.989279977,1.603818345,1.457938214,1.606778644,1.558421835 +54,WV,11,HIGHWAY VEHICLES,NH3,1.15333,1.65193,1.85885,1.79696,1.88451,1.89492,1.9564,1.090718489,1.045171842,0.999625195,0.954078548,0.959730853,0.965383158,0.919839271,0.828939456,0.756306021,0.734319891,0.726106267,0.717892643,0.709679019,0.695631189,0.627175911,0.648017657,0.571256671,0.554849714 +54,WV,11,HIGHWAY VEHICLES,CO,833.95126,618.75519,598.23481,579.18526,495.40023,520.94444,509.7763,409.2273477,382.1865421,355.1457364,328.1049308,304.6217809,281.138631,254.4292548,211.3491705,192.6375909,185.578559,181.5859461,177.5933331,173.6007202,165.9903815,139.451673,150.103277,115.9371404,106.6913717 +54,WV,11,HIGHWAY VEHICLES,PM25,2.93876,1.97851,1.86688,1.71691,1.18643,1.44322,1.34924,2.288537775,2.193202472,2.097867169,2.002531866,1.851334495,1.700137123,1.565303958,1.392380824,1.129695409,1.287269379,1.303761729,1.320254079,1.336746429,1.193896928,0.930651401,0.703522245,0.847577356,0.811656835 +54,WV,12,OFF-HIGHWAY,CO,103.60732,116.26196,113.6376,113.80247,114.65715,117.966478,120.700445,122.64176,122.4855734,122.3293867,122.1732001,117.7926042,113.4120083,104.7187195,95.74471512,93.04809105,89.19440815,86.1552844,83.11616065,80.0770369,71.86400342,55.63439897,55.43793646,55.42525943,55.41258239 +54,WV,12,OFF-HIGHWAY,NH3,0.13838,0.16053,0.16102,0.16498,0.013,0.013,0.013,0.016138577,0.016328314,0.016518051,0.016707789,0.019451584,0.022195379,0.015924221,0.022573582,0.022760443,0.017700258,0.017051506,0.016402753,0.015754001,0.014428217,0.010424795,0.01177665,0.011682109,0.011587567 +54,WV,12,OFF-HIGHWAY,NOX,40.48102,43.58803,44.07461,44.49564,40.574039,55.987122,56.268452,33.24723869,33.06819056,32.88914242,32.71009428,34.31845635,35.92681841,22.44181396,35.63799987,35.37677933,22.39690896,20.52260136,18.64829377,16.77398618,15.14083591,11.74669416,11.87453536,11.47400561,11.07347586 +54,WV,12,OFF-HIGHWAY,PM10,2.3426,2.44502,2.40487,2.3748,2.284913,2.917085,2.899729,2.135528348,2.051415071,1.967301793,1.883188516,1.944046432,2.004904348,1.480778545,1.942440011,1.918711217,1.428142837,1.323773114,1.219403391,1.115033668,0.977659639,0.717764808,0.702911579,0.677398889,0.651886199 +54,WV,12,OFF-HIGHWAY,PM25,2.14332,2.2383,2.20219,2.17707,2.091853,2.67313,2.656816,1.917080424,1.858985518,1.800890611,1.742795705,1.814745569,1.886695433,1.357625009,1.802570131,1.779929709,1.340954703,1.242718841,1.14448298,1.046247118,0.920077851,0.681779196,0.667739317,0.643134832,0.618530348 +54,WV,12,OFF-HIGHWAY,SO2,5.1609,5.30056,5.36989,5.45362,5.148494,7.522654,7.466005,2.127078737,2.128569121,2.130059505,2.131549888,1.895864279,1.66017867,0.477326335,1.39159077,1.317959968,0.204141635,0.160676542,0.117211449,0.073746356,0.076958404,0.075254246,0.0833825,0.080820042,0.078257585 +54,WV,12,OFF-HIGHWAY,VOC,13.98936,15.22836,14.70237,14.60433,14.68184,15.32572,15.5306,18.11463219,18.30269914,18.49076609,18.67883304,18.66971596,18.66059887,17.45294236,17.18308902,16.92589277,15.93386062,14.98080238,14.02774414,13.0746859,10.7266408,6.304282237,6.030550594,5.873192955,5.715835316 +54,WV,14,MISCELLANEOUS,NH3,13.94787,15.20753,15.61149,16.16805,16.3027,16.78432,10.61079059,9.900203176,10.26227928,10.62435538,10.98643149,11.46639718,11.94636287,12.42632856,11.34885067,10.27137278,9.193894898,7.69773021,6.201565522,4.705400834,6.494943361,8.284485888,10.07402842,10.07402842,10.07402842 +54,WV,14,MISCELLANEOUS,VOC,1.26231,0.87698,1.09617,0.81046,1.290634,4.220112,1.7675,0.0337,5.23853899,10.44337798,15.64821697,10.43215507,5.216093168,3.13E-05,0.013089261,0.026147254,0.039205248,0.114028085,0.188850921,0.263673757,0.324362802,0.385051847,0.445740891,0.445740891,0.445740891 +54,WV,14,MISCELLANEOUS,SO2,0.01988,0.00711,0.0092,0.00636,0.15732,0.52368,0.21706,0.00012,0.213573298,0.427026595,0.640479893,0.427385042,0.214290191,0.001195341,0.003288905,0.00538247,0.007476034,0.005705804,0.003935574,0.002165343,0.001843915,0.001522486,0.001201057,0.001201057,0.001201057 +54,WV,14,MISCELLANEOUS,NOX,0.26906,0.20422,0.264,0.17756,0.577904,1.913701,0.79549,0.00406,0.463115999,0.922171998,1.381227997,0.923405982,0.465583967,0.007761952,0.014043742,0.020325532,0.026607323,0.022084442,0.017561561,0.013038679,0.009669251,0.006299823,0.002930395,0.002930395,0.002930395 +54,WV,14,MISCELLANEOUS,CO,9.5709,8.31175,11.07967,6.74543,26.908578,89.174215,37.055245,0.16678,22.03748443,43.90818885,65.77889328,43.85260768,21.92632208,3.65E-05,0.206857392,0.413678302,0.620499213,0.448609159,0.276719106,0.104829052,0.091078058,0.077327063,0.063576069,0.063576069,0.063576069 +54,WV,14,MISCELLANEOUS,PM25,17.5438,16.29947,18.20206,16.74837,18.880266,23.607086,18.3306688,8.4827567,10.48982852,12.49690035,14.50397217,12.4253994,10.34682663,8.268253854,8.304185708,8.340117561,8.376049414,8.520584353,8.665119292,8.809654231,8.261721744,7.713789257,7.165856769,7.165856769,7.165856769 +54,WV,14,MISCELLANEOUS,PM10,95.49798,84.61819,96.09031,88.89867,93.448143,96.86571,96.9075685,83.55359,85.92193469,88.29027938,90.65862406,82.70811575,74.75760744,66.80709913,66.96220731,67.11731549,67.27242367,67.24118699,67.20995031,67.17871363,62.02649906,56.87428448,51.72206991,51.72206991,51.72206991 +54,WV,15,WILDFIRES,CO,,,,,,,,0.63813,0.63813,0.63813,16.3194412,16.3194412,16.3194412,16.2916325,16.2916325,16.2916325,31.38101414,31.38101414,31.38101414,82.17041792,82.17041792,82.17041792,23.98350482,23.98350482,23.98350482 +54,WV,15,WILDFIRES,NH3,,,,,,,,0.009377398,0.009377398,0.009377398,0.270646352,0.270646352,0.270646352,0.26673011,0.26673011,0.26673011,0.516755848,0.516755848,0.516755848,1.349119226,1.349119226,1.349119226,0.396024586,0.396024586,0.396024586 +54,WV,15,WILDFIRES,NOX,,,,,,,,0.005704315,0.005704315,0.005704315,0.366937235,0.366937235,0.366937235,0.188437022,0.188437022,0.188437022,0.516361249,0.516361249,0.516361249,1.146450188,1.146450188,1.146450188,0.450428721,0.450428721,0.450428721 +54,WV,15,WILDFIRES,PM10,,,,,,,,0.059777961,0.059777961,0.059777961,1.788992291,1.788992291,1.788992291,1.627092069,1.627092069,1.627092069,3.271101424,3.271101424,3.271101424,8.381663079,8.381663079,8.381663079,2.549821077,2.549821077,2.549821077 +54,WV,15,WILDFIRES,PM25,,,,,,,,0.050536748,0.050536748,0.050536748,1.516095162,1.516095162,1.516095162,1.378892608,1.378892608,1.378892608,2.772120155,2.772120155,2.772120155,7.103103612,7.103103612,7.103103612,2.160865619,2.160865619,2.160865619 +54,WV,15,WILDFIRES,SO2,,,,,,,,0.003520737,0.003520737,0.003520737,0.166753497,0.166753497,0.166753497,0.112077558,0.112077558,0.112077558,0.262789919,0.262789919,0.262789919,0.625230713,0.625230713,0.625230713,0.217902013,0.217902013,0.217902013 +54,WV,15,WILDFIRES,VOC,,,,,,,,0.144868934,0.144868934,0.144868934,3.890541308,3.890541308,3.890541308,3.8342464,3.8342464,3.8342464,7.428371646,7.428371646,7.428371646,19.39359917,19.39359917,19.39359917,5.692844351,5.692844351,5.692844351 +54,WV,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,8.82995367,7.461090487,6.092227304,4.723364121,5.006424067,5.289484013,5.572543959,5.536542465,5.500540972,5.464539478,5.464539478,5.464539478 +54,WV,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,101.0295323,85.60155987,70.17358743,54.745615,58.25410466,61.76259433,65.27108399,64.17963105,63.08817812,61.99672518,61.99672518,61.99672518 +54,WV,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,1.661237878,1.407029132,1.152820385,0.898611639,0.955697014,1.012782389,1.069867764,1.053444911,1.037022059,1.020599206,1.020599206,1.020599206 +54,WV,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,10.41935642,8.804094192,7.188831963,5.573569735,5.907580168,6.241590601,6.575601034,6.533119128,6.490637223,6.448155317,6.448155317,6.448155317 +54,WV,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.807761852,0.67614278,0.544523709,0.412904637,0.431427998,0.449951358,0.468474719,0.483744959,0.4990152,0.51428544,0.51428544,0.51428544 +54,WV,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,23.88028507,20.22603775,16.57179044,12.91754312,13.73814446,14.55874579,15.37934713,15.14327105,14.90719497,14.67111889,14.67111889,14.67111889 +54,WV,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,1.537223217,1.275439909,1.0136566,0.751873292,0.774097548,0.796321805,0.818546061,0.880413149,0.942280236,1.004147324,1.004147324,1.004147324 +55,WI,1,FUEL COMB. ELEC. UTIL.,VOC,0.64421,0.77458,0.80902,1.0147,1.073289,0.942828,0.883053,1.00391568,1.022828209,1.041740737,1.060653265,1.066449851,1.072246437,1.078043024,0.978334802,0.878626581,0.779191624,0.816319888,0.853448152,0.890576415,0.895550459,0.900524502,0.905498545,0.905498545,0.905498545 +55,WI,1,FUEL COMB. ELEC. UTIL.,SO2,284.85502,207.12739,234.62073,229.79963,210.382415,195.500695,188.51343,189.6249657,192.781117,185.003564,177.8811645,161.063426,133.623725,133.4238707,119.5139875,105.5815898,91.64914367,74.50735813,57.3655726,40.22378707,31.23114104,22.23849501,13.24584898,10.049951,4.866622 +55,WI,1,FUEL COMB. ELEC. UTIL.,PM25,0.97978,1.98539,2.06604,3.3442,8.157534,7.18871,7.234721,4.971960666,5.123060745,5.274160825,5.425260904,3.848815598,2.272370292,0.695924985,1.683964959,2.672004933,3.66029217,3.087060778,2.513829385,1.940597992,1.526322793,1.112047594,0.697772395,0.697772395,0.697772395 +55,WI,1,FUEL COMB. ELEC. UTIL.,PM10,2.96927,3.26914,3.40484,6.50759,10.002492,8.32304,8.58158,5.447957704,5.580090797,5.71222389,5.844356983,5.125068181,4.405779379,3.686490577,3.961798938,4.237107298,4.512666617,3.933727136,3.354787654,2.775848172,2.231500172,1.687152171,1.14280417,1.14280417,1.14280417 +55,WI,1,FUEL COMB. ELEC. UTIL.,NOX,96.38425,107.13927,116.39763,113.61635,112.626842,110.345939,105.605268,90.57463092,81.966148,76.791074,72.13510113,58.766985,51.583692,50.69362208,44.50069842,38.26034081,32.0236044,28.9729262,25.92224799,22.87156979,21.76160782,20.65164586,19.54168389,14.876775,11.395683 +55,WI,1,FUEL COMB. ELEC. UTIL.,NH3,,0.01133,0.01179,0.01467,0.015048,0.014619,0.015359,0.373104472,0.371150666,0.36919686,0.367243054,0.425177833,0.483112613,0.541047392,0.693873813,0.846700234,0.999536932,1.128034732,1.256532533,1.385030333,1.369661534,1.354292734,1.338923934,1.338923934,1.338923934 +55,WI,1,FUEL COMB. ELEC. UTIL.,CO,5.80678,6.26125,6.66632,20.96154,7.974118,8.162153,8.368242,10.91017566,11.51904903,12.12792239,12.73679575,13.06087386,13.38495196,13.70903007,13.17001183,12.63099359,12.09334447,11.85866127,11.62397806,11.38929486,11.24328437,11.09727388,10.9512634,10.9512634,10.9512634 +55,WI,2,FUEL COMB. INDUSTRIAL,CO,33.22161,40.37431,38.82194,38.43357,34.432769,33.615856,35.771934,18.77878628,17.55598349,16.33318071,15.11037793,15.90546573,16.70055353,17.49564133,16.82580149,16.15596166,15.4263468,17.5647941,19.70324141,21.84168871,22.06126899,22.28084928,22.50042956,22.50042956,22.50042956 +55,WI,2,FUEL COMB. INDUSTRIAL,NH3,0.18565,0.21691,0.21401,0.21,0.697531,0.717548,0.704521,0.24692342,0.239783372,0.232643323,0.225503275,0.239166888,0.252830502,0.266494116,0.233107665,0.199721215,0.166351979,0.195095722,0.223839464,0.252583206,0.298113738,0.34364427,0.389174802,0.389174802,0.389174802 +55,WI,2,FUEL COMB. INDUSTRIAL,VOC,5.22017,4.73485,4.56155,4.51613,4.174533,4.093733,4.334194,1.271426868,1.297833064,1.32423926,1.350645456,1.280125876,1.209606297,1.139086718,1.003460723,0.867834728,0.729533555,0.860516832,0.99150011,1.122483387,1.143908046,1.165332705,1.186757363,1.186757363,1.186757363 +55,WI,2,FUEL COMB. INDUSTRIAL,SO2,138.87992,98.96682,96.64944,93.90242,86.496398,85.541594,90.734354,62.8213501,63.42035878,64.01936747,64.61837615,61.92460814,59.23084013,56.53707212,52.89671265,49.25635319,45.61566675,44.17398627,42.7323058,41.29062533,31.31068835,21.33075137,11.35081439,11.35081439,11.35081439 +55,WI,2,FUEL COMB. INDUSTRIAL,PM10,6.19093,4.58671,4.57229,4.49279,3.118795,3.191029,3.278248,3.0781304,2.985067452,2.892004504,2.798941556,2.706416407,2.613891258,2.52136611,2.648822729,2.776279349,2.900408854,4.767667743,6.634926633,8.502185522,9.19852996,9.894874398,10.59121884,10.59121884,10.59121884 +55,WI,2,FUEL COMB. INDUSTRIAL,NOX,40.12202,50.16684,49.32582,47.9595,41.090007,40.860638,42.542741,34.24625105,34.4650822,34.68391335,34.9027445,35.51841836,36.13409221,36.74976607,34.3187426,31.88771912,29.45320623,27.61671122,25.78021621,23.9437212,23.36098314,22.77824507,22.195507,22.195507,22.195507 +55,WI,2,FUEL COMB. INDUSTRIAL,PM25,2.45275,3.76418,3.75811,3.69948,2.561543,2.627011,2.686159,1.609837303,1.665079299,1.720321294,1.77556329,1.415614363,1.055665436,0.69571651,1.298167346,1.900618182,2.500368654,4.050130216,5.599891778,7.14965334,7.80491531,8.46017728,9.115439251,9.115439251,9.115439251 +55,WI,3,FUEL COMB. OTHER,VOC,23.73708,39.97344,39.8588,39.64317,51.03357,41.175968,41.187365,100.0139011,75.42407072,50.83424032,26.24440992,26.4991144,26.75381889,27.00852338,29.98974576,32.97096815,36.5453957,28.78632699,21.02725829,13.26818959,13.23253196,13.19687433,13.1612167,13.1612167,13.1612167 +55,WI,3,FUEL COMB. OTHER,SO2,20.76637,21.69738,21.98137,19.73388,19.199454,19.526801,19.938879,5.919873791,5.85203195,5.78419011,5.71634827,5.546560334,5.376772398,5.206984462,4.677586545,4.148188629,3.638406296,3.125270032,2.612133769,2.098997506,1.822326381,1.545655255,1.26898413,1.26898413,1.26898413 +55,WI,3,FUEL COMB. OTHER,CO,124.62309,107.46839,107.02583,106.04811,233.938921,119.230751,119.394595,148.962551,148.99939,149.036229,149.0730679,153.1070378,157.1410077,161.1749775,178.9510482,196.7271189,217.4257733,175.3525778,133.2793823,91.20618681,93.61935555,96.0325243,98.44569305,98.44569305,98.44569305 +55,WI,3,FUEL COMB. OTHER,NH3,0.18226,0.18166,0.17679,0.15903,0.168543,0.169574,0.170914,0.057216422,0.056976706,0.056736991,0.056497275,0.89682345,1.737149624,2.577475799,2.670476733,2.763477667,2.864017213,2.639306773,2.414596333,2.189885893,2.128364688,2.066843483,2.005322278,2.005322278,2.005322278 +55,WI,3,FUEL COMB. OTHER,NOX,46.53541,52.94771,50.80082,46.99124,19.246041,18.121816,18.333153,19.43199272,19.50022246,19.56845219,19.63668193,19.19027828,18.74387463,18.29747098,18.04552592,17.79358086,17.54210398,17.35358219,17.1650604,16.97653861,16.65924831,16.34195801,16.02466771,16.02466771,16.02466771 +55,WI,3,FUEL COMB. OTHER,PM10,15.91948,14.14674,14.1492,14.10457,15.581565,16.57053,16.622464,21.42137786,21.43788803,21.45439819,21.47090836,22.3697224,23.26853643,24.16735046,27.15093062,30.13451078,33.64498424,26.80994057,19.9748969,13.13985322,13.14803001,13.15620679,13.16438357,13.16438357,13.16438357 +55,WI,3,FUEL COMB. OTHER,PM25,15.74341,13.9317,13.93106,13.89922,15.328142,16.313592,16.360738,21.28228535,21.31446209,21.34663883,21.37881557,22.247445,23.11607443,23.98470386,26.9170508,29.84939774,33.30872354,26.54908437,19.78944519,13.02980602,13.01866417,13.00752232,12.99638046,12.99638046,12.99638046 +55,WI,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.00574,0.03823,0.03844,0.03868,0.084881,0.087999,0.09192,0.027213209,0.034833262,0.042453316,0.05007337,0.040352873,0.030632376,0.020911879,0.02273497,0.02455806,0.026381151,0.037394401,0.048407651,0.0594209,0.044600746,0.029780591,0.014960436,0.014960436,0.014960436 +55,WI,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.00938,0.06555,0.06591,0.06629,0.131095,0.135762,0.141821,0.050066555,0.05936143,0.068656305,0.07795118,0.09547827,0.11300536,0.130532449,0.102315746,0.074099042,0.045882339,0.072833965,0.099785591,0.126737218,0.097384854,0.06803249,0.038680126,0.038680126,0.038680126 +55,WI,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,0.0562,0.05805,0.0581,0.05962,0.002518,0.002537,0.002607,0.00458813,0.003497682,0.002407233,0.001316784,0.003273658,0.005230531,0.007187404,0.010971403,0.014755401,0.0185394,0.032592035,0.04664467,0.060697306,0.062487794,0.064278282,0.06606877,0.06606877,0.06606877 +55,WI,4,CHEMICAL & ALLIED PRODUCT MFG,CO,,0.02752,0.02826,0.02826,0.0734,0.074859,0.077253,0.059773349,0.058613854,0.057454359,0.056294864,0.038505297,0.02071573,0.002926163,0.003043281,0.003160399,0.003277517,0.007317588,0.01135766,0.015397732,0.01861815,0.021838569,0.025058988,0.025058988,0.025058988 +55,WI,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,0.20363,0.20363,0.20451,0.20816,0.000346,0.000354,0.000363,0.000580625,0.000552417,0.000524208,0.000496,0.024017905,0.04753981,0.071061716,0.04979406,0.028526405,0.00725875,0.005806731,0.004354712,0.002902694,0.003319596,0.003736498,0.0041534,0.0041534,0.0041534 +55,WI,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,1.48162,1.60948,1.6382,1.65289,1.123816,1.089281,1.135071,3.375062563,3.466313112,3.557563661,3.64881421,2.987544935,2.32627566,1.665006385,1.589570304,1.514134223,1.438698141,1.460421914,1.482145687,1.50386946,1.44291302,1.38195658,1.32100014,1.32100014,1.32100014 +55,WI,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,,,,,,,,0.02286328,0.01657552,0.01028776,0.004,0.008938956,0.013877912,0.018816868,0.04074262,0.062668373,0.084594125,0.078965797,0.073337468,0.06770914,0.052829476,0.037949813,0.023070149,0.023070149,0.023070149 +55,WI,5,METALS PROCESSING,NH3,,,,,0.000132,0.000128,0.000129,0.005683885,0.003834329,0.001984772,0.000135216,0.000854549,0.001573882,0.002293215,0.002698252,0.003103288,0.003508325,0.002845232,0.002182138,0.001519045,0.001855795,0.002192545,0.002529295,0.002529295,0.002529295 +55,WI,5,METALS PROCESSING,VOC,0.99107,4.94605,5.1529,5.05398,2.926104,2.985888,3.159187,2.09991988,2.47700651,2.85409314,3.231179769,2.705623804,2.180067838,1.654511872,1.559306322,1.464100772,1.368895223,1.399482637,1.430070052,1.460657467,1.304008188,1.147358909,0.99070963,0.99070963,0.99070963 +55,WI,5,METALS PROCESSING,SO2,2.17568,2.16701,2.2937,2.30787,0.64192,0.659134,0.700893,0.437722336,0.475189742,0.512657149,0.550124555,0.580171419,0.610218284,0.640265148,0.61489043,0.589515713,0.564140995,0.502177199,0.440213404,0.378249609,0.36680587,0.355362131,0.343918392,0.343918392,0.343918392 +55,WI,5,METALS PROCESSING,PM25,1.65484,3.597,3.75975,3.73688,2.218353,2.279213,2.424297,1.467633527,1.757098047,2.046562568,2.336027088,1.786049141,1.236071193,0.686093245,0.722359489,0.758625732,0.793322255,0.771032012,0.748741768,0.726451524,0.703719794,0.680988064,0.658256334,0.658256334,0.658256334 +55,WI,5,METALS PROCESSING,NOX,0.5911,0.67083,0.707,0.70108,0.37528,0.387885,0.413565,0.266226678,0.28969263,0.313158582,0.336624534,0.345720142,0.35481575,0.363911358,0.358525162,0.353138967,0.347752771,0.343314781,0.33887679,0.3344388,0.304889166,0.275339533,0.245789899,0.245789899,0.245789899 +55,WI,5,METALS PROCESSING,CO,10.0916,12.50815,13.12168,12.78299,7.29941,7.509483,7.997393,7.519903577,8.38623216,9.252560743,10.11888933,8.387290128,6.655690929,4.924091731,5.31123955,5.69838737,6.085535189,6.097212726,6.108890263,6.1205678,5.924367534,5.728167267,5.531967,5.531967,5.531967 +55,WI,5,METALS PROCESSING,PM10,1.97619,4.33924,4.53465,4.49858,2.459883,2.527059,2.687753,2.003763189,2.284784983,2.565806777,2.846828572,2.319312668,1.791796765,1.264280862,1.169706129,1.075131397,0.976224515,0.954470851,0.932717188,0.910963524,0.868283706,0.825603889,0.782924071,0.782924071,0.782924071 +55,WI,6,PETROLEUM & RELATED INDUSTRIES,CO,39.66791,10.64368,11.285,10.96482,0.399411,0.399558,0.399809,0.215850616,0.195524868,0.17519912,0.154873372,0.189265461,0.22365755,0.258049639,0.227361736,0.196673832,0.165985928,0.180034351,0.194082774,0.208131198,0.230805278,0.253479359,0.276153439,0.276153439,0.276153439 +55,WI,6,PETROLEUM & RELATED INDUSTRIES,VOC,0.76065,1.0182,1.07457,1.04804,0.382955,0.378846,0.379188,0.149674225,0.167045,0.184415774,0.201786549,0.18092192,0.160057292,0.139192663,0.131869413,0.124546162,0.117222912,0.145018841,0.172814769,0.200610698,0.189812625,0.179014552,0.168216479,0.168216479,0.168216479 +55,WI,6,PETROLEUM & RELATED INDUSTRIES,SO2,2.81515,1.64887,1.74529,1.69794,1.479029,1.479036,1.479046,1.535286014,1.355766103,1.176246192,0.996726282,0.872647374,0.748568466,0.624489558,0.462551087,0.300612616,0.138674145,0.095284893,0.051895642,0.00850639,0.025740887,0.042975383,0.06020988,0.06020988,0.06020988 +55,WI,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.01522,0.19117,0.20191,0.19661,0.168955,0.169196,0.169661,0.250714226,0.260586859,0.270459492,0.280332124,0.208646964,0.136961803,0.065276643,0.086655468,0.108034294,0.129413119,0.124828576,0.120244032,0.115659489,0.08540977,0.05516005,0.024910331,0.024910331,0.024910331 +55,WI,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.04863,0.31373,0.32997,0.32207,0.228853,0.229306,0.23024,0.317460101,0.334210216,0.350960331,0.367710446,0.332563558,0.297416671,0.262269783,0.239599023,0.216928262,0.194257501,0.185964474,0.177671447,0.16937842,0.127582015,0.085785609,0.043989204,0.043989204,0.043989204 +55,WI,6,PETROLEUM & RELATED INDUSTRIES,NOX,0.24168,0.28538,0.29916,0.29277,0.341644,0.341726,0.341878,0.211238814,0.212765764,0.214292714,0.215819665,0.222165396,0.228511127,0.234856858,0.223494756,0.212132653,0.20077055,0.209973333,0.219176117,0.2283789,0.23489084,0.241402779,0.247914719,0.247914719,0.247914719 +55,WI,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.79642,0.79642,0.84469,0.82055,0.306105,0.306105,0.306105,,0,0,,0.002058337,0.004116675,0.006175012,0.006136675,0.006098337,0.00606,0.006966833,0.007873667,0.0087805,0.008897237,0.009013973,0.00913071,0.00913071,0.00913071 +55,WI,7,OTHER INDUSTRIAL PROCESSES,VOC,7.36487,9.67821,10.07843,10.20588,8.982494,9.309171,7.546561397,9.374295175,9.47016075,9.566026326,9.661891901,8.772348402,7.882804904,6.993261405,6.435433016,5.877604627,5.316680739,5.320783883,5.324887028,5.328990172,5.292642001,5.25629383,5.219945659,5.219945659,5.219945659 +55,WI,7,OTHER INDUSTRIAL PROCESSES,SO2,9.29407,5.63447,5.85403,5.89578,4.173229,4.351188,4.573333,2.461688427,2.729314467,2.996940506,3.264566546,3.052426712,2.840286878,2.628147044,3.029175425,3.430203806,3.831232188,3.582912772,3.334593357,3.086273941,2.905984066,2.725694191,2.545404315,2.545404315,2.545404315 +55,WI,7,OTHER INDUSTRIAL PROCESSES,NH3,,,,,0.001344,0.001386,0.001437,0.269545013,0.31897723,0.368409448,0.417841665,0.34597796,0.274114254,0.202250549,0.239821849,0.277393149,0.315214448,0.418474496,0.521734543,0.62499459,0.479626245,0.3342579,0.188889555,0.188889555,0.188889555 +55,WI,7,OTHER INDUSTRIAL PROCESSES,PM25,16.43486,5.38884,5.47903,5.71161,6.005687,6.162266,7.672624742,4.065914117,4.27307366,4.480233204,4.687392747,4.236212103,3.785031459,3.333850815,3.427994336,3.522137856,3.619760255,3.797740042,3.97571983,4.153699617,4.42242262,4.691145623,4.959868625,4.959868625,4.959868625 +55,WI,7,OTHER INDUSTRIAL PROCESSES,NOX,2.88673,4.99457,5.29961,5.4134,4.083184,4.289804,4.536938,5.802545027,5.876854945,5.951164863,6.02547478,6.013566923,6.001659065,5.989751208,5.912321507,5.834891806,5.757462105,5.806552097,5.855642088,5.90473208,5.889869093,5.875006105,5.860143118,5.860143118,5.860143118 +55,WI,7,OTHER INDUSTRIAL PROCESSES,CO,12.49238,3.96152,4.09859,4.11853,4.877626,5.04581,5.824613062,5.214823808,6.868680112,8.522536417,10.17639272,8.759574196,7.342755672,5.925937147,6.05937533,6.192813513,6.326251696,7.904250103,9.48224851,11.06024692,10.05798496,9.055722997,8.053461037,8.053461037,8.053461037 +55,WI,7,OTHER INDUSTRIAL PROCESSES,PM10,29.61753,18.31853,18.42988,19.52715,19.709884,20.091829,21.81566403,6.942150514,7.149655885,7.357161256,7.564666627,9.294271686,11.02387674,12.7534818,10.90284499,9.052208179,7.193521197,8.21166252,9.229803843,10.24794517,10.69736216,11.14677916,11.59619616,11.59619616,11.59619616 +55,WI,8,SOLVENT UTILIZATION,PM25,0.00007,0.33067,0.35575,0.37054,0.164327,0.173375,0.186059,0.091535525,0.093678721,0.095821917,0.097965112,0.06753866,0.037112208,0.006685755,0.038222367,0.069758979,0.101295591,0.09415541,0.087015228,0.079875046,0.059651947,0.039428848,0.01920575,0.01920575,0.01920575 +55,WI,8,SOLVENT UTILIZATION,PM10,0.00007,0.41762,0.44925,0.46774,0.164327,0.173375,0.186059,0.10834094,0.109060893,0.109780846,0.110500799,0.095953051,0.081405303,0.066857554,0.083609996,0.100362438,0.11711488,0.10909132,0.101067761,0.093044202,0.069227936,0.045411671,0.021595405,0.021595405,0.021595405 +55,WI,8,SOLVENT UTILIZATION,NOX,,0.27055,0.28813,0.29942,0.027822,0.028894,0.030522,0.007144229,0.009225966,0.011307703,0.013389441,0.011916504,0.010443568,0.008970631,0.006267493,0.003564355,0.000861217,0.000972099,0.001082982,0.001193864,0.002032397,0.00287093,0.003709463,0.003709463,0.003709463 +55,WI,8,SOLVENT UTILIZATION,NH3,,,,,,,,0.018483768,0.013840329,0.009196889,0.00455345,0.01242124,0.020289031,0.028156821,0.019458076,0.01075933,0.002060585,0.006930825,0.011801066,0.016671306,0.018813629,0.020955953,0.023098276,0.023098276,0.023098276 +55,WI,8,SOLVENT UTILIZATION,CO,,0.19854,0.21414,0.22519,0.002557,0.002763,0.003013,0.001069018,0.004518735,0.007968453,0.01141817,0.008447265,0.00547636,0.002505455,0.00211231,0.001719165,0.00132602,0.001172869,0.001019717,0.000866566,0.002191356,0.003516146,0.004840936,0.004840936,0.004840936 +55,WI,8,SOLVENT UTILIZATION,VOC,145.23111,175.14064,181.32287,156.76894,131.740488,116.666727,121.95194,116.2878364,116.0263046,115.7647727,115.5032409,111.1695209,106.8358009,102.5020809,91.39407177,80.28606261,69.18114636,65.97386277,62.76657918,59.55929559,63.62149969,67.6837038,71.74590791,71.74590791,71.74590791 +55,WI,8,SOLVENT UTILIZATION,SO2,0.00004,0.19527,0.21053,0.22163,0.001803,0.001863,0.001969,0.004187011,0.003005605,0.001824199,0.000642793,0.000550757,0.00045872,0.000366683,0.000245771,0.00012486,0.000003948,3.76E-06,3.56E-06,3.37E-06,5.04E-05,9.74E-05,0.00014435,0.00014435,0.00014435 +55,WI,9,STORAGE & TRANSPORT,PM25,0.0051,0.18152,0.18938,0.19183,0.491919,0.513269,0.541457,0.406531209,0.45009977,0.493668332,0.537236893,0.410708785,0.284180678,0.15765257,0.205482484,0.253312397,0.301074292,0.36561715,0.430160009,0.494702867,0.410920632,0.327138397,0.243356162,0.243356162,0.243356162 +55,WI,9,STORAGE & TRANSPORT,CO,,0.05526,0.05574,0.05622,0.064627,0.065675,0.067846,0.057857268,0.058748223,0.059639179,0.060530134,0.073108741,0.085687348,0.098265955,0.093513303,0.088760651,0.084007999,0.116084114,0.148160229,0.180236343,0.147759775,0.115283207,0.082806638,0.082806638,0.082806638 +55,WI,9,STORAGE & TRANSPORT,NH3,,0.00016,0.00016,0.00016,0.00018,0.000184,0.00019,,0,0,,0.001063327,0.002126653,0.00318998,0.04321282,0.08323566,0.1232585,0.084507383,0.045756267,0.00700515,0.005607063,0.004208977,0.00281089,0.00281089,0.00281089 +55,WI,9,STORAGE & TRANSPORT,PM10,0.01745,0.3416,0.35655,0.36155,1.144088,1.191843,1.254649,1.081767122,1.127505249,1.173243377,1.218981505,1.083019156,0.947056807,0.811094459,0.797721825,0.784349192,0.785200014,0.799204789,0.813209564,0.82721434,0.777362465,0.727510589,0.677658714,0.677658714,0.677658714 +55,WI,9,STORAGE & TRANSPORT,SO2,0.12545,0.00125,0.00127,0.00127,0.001189,0.00121,0.001252,0.001686284,0.00208788,0.002489477,0.002891073,0.003496426,0.00410178,0.004707133,0.004071247,0.003435361,0.002799475,0.002684081,0.002568686,0.002453292,0.001635528,0.000817764,0,0,0 +55,WI,9,STORAGE & TRANSPORT,VOC,24.37765,27.33941,28.60461,27.98697,15.931645,15.948616,16.180596,25.14403575,25.15185134,25.15966693,25.16748252,22.70936865,20.25125479,17.79314093,18.65081206,19.50848319,16.99133471,15.0463848,13.10143488,11.15648496,10.89114307,10.62580117,10.36045927,10.36045927,10.36045927 +55,WI,9,STORAGE & TRANSPORT,NOX,,0.01887,0.01902,0.0192,0.021916,0.022288,0.023031,0.019801731,0.049538631,0.07927553,0.10901243,0.12814027,0.14726811,0.16639595,0.138901155,0.111406361,0.083911566,0.084098947,0.084286328,0.084473709,0.081143145,0.07781258,0.074482016,0.074482016,0.074482016 +55,WI,10,WASTE DISPOSAL & RECYCLING,CO,25.43497,63.78922,64.64736,67.6519,46.946072,71.026201,71.063261,19.71029957,21.646716,23.58313243,25.51954885,29.1313453,32.74314175,36.3549382,31.92906962,27.50320103,23.07661476,27.28025391,31.48389305,35.68753219,35.69317754,35.6988229,35.70446826,35.70446826,35.70446826 +55,WI,10,WASTE DISPOSAL & RECYCLING,NH3,1.99576,2.11963,2.13344,2.16438,2.183514,2.227442,2.258635,0.04126642,0.041197999,0.041129577,0.041061155,0.038772956,0.036484757,0.034196558,0.037501956,0.040807355,0.045204922,0.084615981,0.124027039,0.163438097,0.171892911,0.180347724,0.188802538,0.188802538,0.188802538 +55,WI,10,WASTE DISPOSAL & RECYCLING,PM10,7.20991,10.00332,10.36141,10.74317,5.432038,11.275285,11.298703,2.245341809,2.253292505,2.2612432,2.269193895,4.046370613,5.823547331,7.600724049,6.582911223,5.565098397,4.547285571,4.897144508,5.247003446,5.596862383,5.866253993,6.135645602,6.405037211,6.405037211,6.405037211 +55,WI,10,WASTE DISPOSAL & RECYCLING,PM25,6.18448,9.35311,9.67541,10.04475,5.003161,10.540212,10.556853,2.196356943,2.200855842,2.205354742,2.209853641,3.827576143,5.445298645,7.063021148,6.009256065,4.955490983,3.901725901,4.16184863,4.421971358,4.682094087,5.061045418,5.439996748,5.818948079,5.818948079,5.818948079 +55,WI,10,WASTE DISPOSAL & RECYCLING,SO2,0.9546,0.86288,0.89581,0.91291,0.780628,0.795993,0.813809,0.151460061,0.193110838,0.234761615,0.276412393,0.329813364,0.383214335,0.436615306,0.416961741,0.397308175,0.37765461,0.444955752,0.512256895,0.579558037,0.594844472,0.610130907,0.625417342,0.625417342,0.625417342 +55,WI,10,WASTE DISPOSAL & RECYCLING,VOC,12.70461,13.65056,13.95779,14.26361,9.384116,11.237383,11.316883,3.29709341,3.339448329,3.381803249,3.424158168,3.741549709,4.058941251,4.376332792,3.712074979,3.047817165,2.389052512,2.964612333,3.540172154,4.115731974,4.064561281,4.013390588,3.962219895,3.962219895,3.962219895 +55,WI,10,WASTE DISPOSAL & RECYCLING,NOX,1.1105,3.32525,3.40247,3.50679,3.221571,3.919744,3.929538,0.826310335,0.86188253,0.897454726,0.933026921,1.353663739,1.774300556,2.194937373,2.009433665,1.823929957,1.638426248,1.740422114,1.84241798,1.944413846,1.897661767,1.850909688,1.804157609,1.804157609,1.804157609 +55,WI,11,HIGHWAY VEHICLES,PM25,6.90625,5.32139,5.04906,4.67517,4.34096,3.90363,3.55903,6.941995897,6.706505945,6.471015993,6.235526041,5.667907642,5.100289243,4.589454273,5.21413743,4.197170858,4.632145626,4.295048596,3.957951566,3.620854536,3.061692148,2.845095787,2.27879043,2.440108925,2.293717675 +55,WI,11,HIGHWAY VEHICLES,SO2,10.43496,6.66215,6.86586,6.94597,7.09719,5.47021,5.51619,7.926281384,6.422249884,4.918218383,3.414186883,2.048154239,0.682121594,0.627682162,0.600874018,0.644833868,0.587449562,0.554451745,0.521453929,0.488456112,0.404655992,0.412543013,0.358121099,0.205157724,0.185866522 +55,WI,11,HIGHWAY VEHICLES,PM10,8.14302,6.58987,6.34226,5.93475,5.592,5.12336,4.74301,8.408510136,8.169352189,7.930194242,7.691036295,7.130573555,6.570110815,6.015532139,6.712119958,5.661093702,7.957737,7.271465013,6.585193026,5.898921039,5.337914386,4.953311246,4.291595825,4.796162536,4.665511274 +55,WI,11,HIGHWAY VEHICLES,NOX,193.13515,199.5739,200.89964,196.97018,190.62891,184.63463,171.60454,232.0398452,212.1726458,192.3054464,172.438247,152.465971,132.4936949,118.2322677,131.2563024,105.4258675,127.1687914,119.4541218,111.7394523,104.0247827,94.12063625,80.08633851,64.76963643,66.90150266,62.09872817 +55,WI,11,HIGHWAY VEHICLES,NH3,2.83989,4.9768,5.60478,5.42274,5.60864,5.6908,5.73723,3.200266635,3.086173869,2.972081102,2.857988336,2.702212069,2.546435803,2.293777937,2.413634719,2.091567788,2.344444415,2.286931784,2.229419153,2.171906521,2.103080152,1.861397476,1.880793778,1.824786356,1.790160023 +55,WI,11,HIGHWAY VEHICLES,CO,2094.58886,1872.31714,1783.42817,1698.33757,1553.21286,1491.60353,1425.39517,1320.9094,1235.812669,1150.715938,1065.619207,875.2801817,684.9411565,637.68574,685.7777778,573.210955,577.9565346,564.0384365,550.1203385,536.2022405,494.6945685,391.7981167,395.6370884,384.7835438,364.7416348 +55,WI,11,HIGHWAY VEHICLES,VOC,165.07658,135.4841,127.86478,122.52917,114.56533,106.36105,101.04405,97.67041286,92.80355468,87.9366965,83.06983832,73.52183204,63.97382576,55.68965175,63.24986896,49.39397964,60.70775261,58.24271688,55.77768115,53.31264543,47.66264983,34.83740018,34.75068267,34.43672692,32.10552735 +55,WI,12,OFF-HIGHWAY,CO,499.53278,553.36473,541.63923,542.23088,551.32177,550.21724,560.1128,597.2711588,567.2203674,537.169576,507.1187846,498.5594994,490.0002143,469.8052121,436.2182648,430.8942702,385.8287573,376.7378214,367.6468854,358.5559495,328.0142348,271.2077757,266.9308053,264.7346114,262.5384175 +55,WI,12,OFF-HIGHWAY,VOC,78.83332,84.85134,81.75657,80.6332,80.00977,79.89418,79.55773,113.8393738,112.7609669,111.6825599,110.604153,107.1954617,103.7867704,101.7257263,97.30865764,97.02416481,84.91150922,81.08897565,77.26644209,73.44390853,62.02134861,42.14418439,39.17622877,37.47797694,35.77972511 +55,WI,12,OFF-HIGHWAY,SO2,5.80698,6.91227,7.0121,7.14528,6.75775,7.43644,7.54116,7.130898011,7.144495426,7.158092842,7.171690258,5.297582175,3.423474092,2.23427296,1.758895211,1.045906029,0.691161529,0.542453574,0.39374562,0.245037665,0.250751442,0.258569703,0.262178996,0.265816067,0.269453138 +55,WI,12,OFF-HIGHWAY,PM25,6.63929,6.86572,6.77201,6.68054,6.46532,6.46427,6.33424,6.689280701,6.545001068,6.400721435,6.256441802,5.914099197,5.571756591,5.7119193,5.227267699,5.161098147,4.742502167,4.600947077,4.459391988,4.317836898,3.806716536,2.952537485,2.784475812,2.651199299,2.517922787 +55,WI,12,OFF-HIGHWAY,PM10,7.2378,7.48258,7.38038,7.27793,7.06043,7.04849,6.90646,7.125756615,6.972856935,6.819957256,6.667057576,6.301857196,5.936656816,6.103852204,5.604572145,5.536076102,5.066004912,4.911881782,4.757758653,4.603635523,4.054833517,3.13297283,2.957229504,2.818013166,2.678796828 +55,WI,12,OFF-HIGHWAY,NH3,0.72078,0.79896,0.78821,0.81574,0.07587,0.07587,0.07587,0.063197499,0.064315661,0.065433823,0.066551985,0.064656419,0.062760852,0.068058081,0.064030916,0.066553093,0.064795198,0.067555191,0.070315184,0.073075177,0.066534659,0.050792794,0.053453622,0.053621937,0.053790253 +55,WI,12,OFF-HIGHWAY,NOX,62.31577,69.40366,70.07236,70.15303,65.84992,69.58162,69.6951,78.90594776,78.2664591,77.62697043,76.98748176,69.86814175,62.74880173,73.37226774,60.68245436,59.35278621,55.32801566,55.44367174,55.55932782,55.6749839,49.68610462,38.42786932,37.70834608,36.29140937,34.87447266 +55,WI,14,MISCELLANEOUS,VOC,0.71169,0.67444,0.97083,1.40301,0.982678,0.787064,0.429146,0.393611607,2.024313856,3.655016104,5.285718353,3.579901964,1.874085574,0.168269185,0.112219631,0.056170077,0.000120523,0.724794676,1.449468828,2.174142981,2.767003473,3.359863965,3.952724457,3.952724457,3.952724457 +55,WI,14,MISCELLANEOUS,SO2,0.00333,0.00573,0.00927,0.01192,0.06261,0.09049,0.04573,0.03532,0.095650268,0.155980537,0.216310805,0.147895863,0.079480921,0.011065979,0.008328871,0.005591763,0.002854655,0.003859051,0.004863447,0.005867842,0.005390464,0.004913086,0.004435708,0.004435708,0.004435708 +55,WI,14,MISCELLANEOUS,PM25,59.03302,58.45508,60.65187,61.94693,62.6457,62.935446,51.5640655,30.80514,31.41989911,32.03465822,32.64941733,34.87758817,37.10575901,39.33392985,39.3404893,39.34704876,39.35360821,45.48860839,51.62360857,57.75860876,46.81417247,35.86973618,24.92529989,24.92529989,24.92529989 +55,WI,14,MISCELLANEOUS,PM10,298.58317,282.18032,290.38691,294.9465,301.70413,303.523086,276.1865239,266.74668,267.4720783,268.1974766,268.9228749,256.0190149,243.115155,230.2112951,227.0091242,223.8069533,220.6047825,277.7892978,334.9738131,392.1583284,309.0425993,225.9268702,142.8111412,142.8111412,142.8111412 +55,WI,14,MISCELLANEOUS,NOX,0.10699,0.1826,0.30208,0.35589,0.21927,0.33798,0.17476,0.023746867,0.173371089,0.322995311,0.472619533,0.341837797,0.211056061,0.080274324,0.059670795,0.039067265,0.018463735,0.024108659,0.029753583,0.035398507,0.027719249,0.020039992,0.012360735,0.012360735,0.012360735 +55,WI,14,MISCELLANEOUS,NH3,115.79113,118.37213,117.22025,137.91315,98.72789,95.94111,97.34709711,114.2237241,114.333411,114.4430979,114.5527847,114.8116475,115.0705103,115.3293731,114.80026,114.2711469,113.7420338,89.60287928,65.46372473,41.32457019,47.74240681,54.16024343,60.57808005,60.57808005,60.57808005 +55,WI,14,MISCELLANEOUS,CO,4.03822,8.78486,15.73129,15.85433,8.774448,15.728,8.12152,2.48228,9.076390754,15.67050151,22.26461226,15.35667725,8.448742239,1.540807228,1.027501237,0.514195247,0.000889256,0.164752598,0.32861594,0.492479282,0.431633257,0.370787232,0.309941208,0.309941208,0.309941208 +55,WI,15,WILDFIRES,NH3,,,,,,,,0.005119979,0.005119979,0.005119979,0.017952845,0.017952845,0.017952845,,0,0,0.00791276,0.00791276,0.00791276,0.035316397,0.035316397,0.035316397,0.037392584,0.037392584,0.037392584 +55,WI,15,WILDFIRES,CO,,,,,,,,0.340794271,0.340794271,0.340794271,1.080705179,1.080705179,1.080705179,,0,0,0.478856528,0.478856528,0.478856528,2.132855314,2.132855314,2.132855314,2.279300032,2.279300032,2.279300032 +55,WI,15,WILDFIRES,SO2,,,,,,,,0.001594118,0.001594118,0.001594118,0.011516852,0.011516852,0.011516852,,0,0,0.00447714,0.00447714,0.00447714,0.020943577,0.020943577,0.020943577,0.016844009,0.016844009,0.016844009 +55,WI,15,WILDFIRES,NOX,,,,,,,,0.00206427,0.00206427,0.00206427,0.025849766,0.025849766,0.025849766,,0,0,0.009414212,0.009414212,0.009414212,0.045180365,0.045180365,0.045180365,0.030167855,0.030167855,0.030167855 +55,WI,15,WILDFIRES,PM10,,,,,,,,0.031260007,0.031260007,0.031260007,0.119855198,0.119855198,0.119855198,,0,0,0.051286952,0.051286952,0.051286952,0.231332822,0.231332822,0.231332822,0.231039156,0.231039156,0.231039156 +55,WI,15,WILDFIRES,PM25,,,,,,,,0.026433056,0.026433056,0.026433056,0.101572202,0.101572202,0.101572202,,0,0,0.043463994,0.043463994,0.043463994,0.196044429,0.196044429,0.196044429,0.195796686,0.195796686,0.195796686 +55,WI,15,WILDFIRES,VOC,,,,,,,,0.05202123,0.05202123,0.05202123,0.258072143,0.258072143,0.258072143,,0,0,0.113781813,0.113781813,0.113781813,0.507696539,0.507696539,0.507696539,0.537495996,0.537495996,0.537495996 +55,WI,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,23.0380097,27.28041963,31.52282956,35.76523949,39.2349716,42.70470371,46.17443582,49.34241487,52.51039392,55.67837297,55.67837297,55.67837297 +55,WI,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,2.0454489,2.408668806,2.771888712,3.135108619,3.462866874,3.79062513,4.118383385,4.379791857,4.641200329,4.902608801,4.902608801,4.902608801 +55,WI,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,2.41363055,2.842229999,3.270829448,3.699428896,4.086183463,4.472938029,4.859692595,5.168155735,5.476618876,5.785082016,5.785082016,5.785082016 +55,WI,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.197098708,0.227960923,0.258823139,0.289685354,0.327327711,0.364970067,0.402612423,0.421689839,0.440767255,0.459844671,0.459844671,0.459844671 +55,WI,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.392730661,0.447284162,0.501837664,0.556391165,0.641563465,0.726735764,0.811908063,0.839667103,0.867426144,0.895185184,0.895185184,0.895185184 +55,WI,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.379636528,0.449200343,0.518764159,0.588327974,0.646010216,0.703692459,0.761374701,0.813068934,0.864763167,0.916457401,0.916457401,0.916457401 +55,WI,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,5.45726453,6.457250023,7.457235515,8.457221008,9.286399108,10.11557721,10.94475531,11.68786124,12.43096718,13.17407311,13.17407311,13.17407311 +56,WY,1,FUEL COMB. ELEC. UTIL.,PM10,5.59257,7.10528,6.72646,4.85804,10.149708,9.6915,9.925056,9.601692482,9.642905401,9.684118319,9.725331238,8.368286895,7.011242551,5.654198208,5.682873305,5.711548403,5.7437234,4.736174668,3.728625936,2.721077204,2.325968998,1.930860793,1.535752588,1.535752588,1.535752588 +56,WY,1,FUEL COMB. ELEC. UTIL.,PM25,2.08635,4.13517,3.91147,3.16017,8.358678,7.990361,8.066403,7.938428924,7.981494869,8.024560815,8.06762676,6.41958741,4.771548061,3.123508711,3.100484255,3.0774598,3.056021344,2.416807151,1.777592957,1.138378764,1.074080728,1.009782692,0.945484656,0.945484656,0.945484656 +56,WY,1,FUEL COMB. ELEC. UTIL.,CO,7.27682,6.38249,6.32813,6.91358,7.15374,6.608193,6.647493,7.309140015,7.328817044,7.348494073,7.368171102,6.582640401,5.797109701,5.011579,7.707621443,10.40366389,13.22898033,14.45232367,15.675667,16.89901034,16.61642015,16.33382996,16.05123978,16.05123978,16.05123978 +56,WY,1,FUEL COMB. ELEC. UTIL.,NH3,,0.00892,0.00877,0.00898,0.008991,0.009501,0.009363,0.3860616,0.38461462,0.383167641,0.381720661,0.337380639,0.293040616,0.248700594,0.272453123,0.296205653,0.319958182,0.257418687,0.194879192,0.132339697,0.133981261,0.135622825,0.137264389,0.137264389,0.137264389 +56,WY,1,FUEL COMB. ELEC. UTIL.,SO2,84.59748,100.63699,102.15577,106.22678,99.93224,83.967458,88.255593,83.4148998,81.200062,84.190133,89.86623409,82.402365,81.668255,43.006672,40.53439101,38.06211001,35.59036302,36.03855127,36.48673952,36.93492777,35.786436,34.63794424,33.48945248,31.026839,28.832947 +56,WY,1,FUEL COMB. ELEC. UTIL.,VOC,0.8598,0.80313,0.79817,0.86917,0.82859,0.796337,0.800876,0.871819992,0.870187844,0.868555696,0.866923547,0.736004365,0.605085182,0.474166,0.556417033,0.638668067,0.7610441,0.740033597,0.719023093,0.69801259,0.686210274,0.674407958,0.662605642,0.662605642,0.662605642 +56,WY,1,FUEL COMB. ELEC. UTIL.,NOX,99.796,107.48354,99.45074,102.7794,94.84887,91.113368,86.439469,85.23559538,83.404207,91.754515,89.30390159,83.738386,78.470249,39.316694,39.3799135,39.443133,39.5933435,40.27765108,40.96195867,41.64626625,40.01839481,38.39052338,36.76265195,33.525551,29.134493 +56,WY,2,FUEL COMB. INDUSTRIAL,CO,13.78549,50.2766,50.88452,50.81895,21.46035,21.325667,21.326128,13.96060382,13.27808383,12.59556384,11.91304385,15.25071484,18.58838583,21.92605682,18.22089912,14.51574142,13.94933755,12.30812997,10.6669224,9.025714825,9.058972053,9.092229282,9.12548651,9.12548651,9.12548651 +56,WY,2,FUEL COMB. INDUSTRIAL,NH3,0.11365,0.14152,0.1348,0.13144,0.213266,0.217978,0.216815,0.076668416,0.076668416,0.076668416,0.076668416,0.116383911,0.156099405,0.1958149,0.131379267,0.066943633,0.002508,0.007509994,0.012511988,0.017513982,0.02099768,0.024481379,0.027965078,0.027965078,0.027965078 +56,WY,2,FUEL COMB. INDUSTRIAL,NOX,81.83901,100.86493,96.40146,94.85595,88.21205,87.462709,87.154348,31.32962903,29.6017559,27.87388278,26.14600966,38.40759073,50.66917181,62.93075289,53.07974155,43.22873021,37.60038736,31.66125116,25.72211496,19.78297875,19.33991365,18.89684856,18.45378346,18.45378346,18.45378346 +56,WY,2,FUEL COMB. INDUSTRIAL,PM10,1.48985,2.90945,2.78822,2.73672,2.160388,2.120328,2.182416,1.212499155,1.121914663,1.031330171,0.940745679,4.715027274,8.489308869,12.26359046,8.95851337,5.653436275,2.633786577,2.330584931,2.027383284,1.724181637,1.720422422,1.716663207,1.712903992,1.712903992,1.712903992 +56,WY,2,FUEL COMB. INDUSTRIAL,PM25,0.89137,1.9632,1.88435,1.85861,1.399633,1.382009,1.409948,0.488818688,0.442032715,0.395246743,0.348460771,2.381193404,4.413926038,6.446658671,4.886797567,3.326936463,1.948894656,1.584450937,1.220007218,0.8555635,1.030010242,1.204456984,1.378903727,1.378903727,1.378903727 +56,WY,2,FUEL COMB. INDUSTRIAL,SO2,39.16443,55.39449,54.08593,53.23971,37.02461,36.604053,37.766317,27.95249172,25.54719505,23.14189838,20.73660171,33.0387828,45.3409639,57.643145,46.73881133,35.83447765,25.28949976,20.95423236,16.61896495,12.28369754,10.72948508,9.175272623,7.621060165,7.621060165,7.621060165 +56,WY,2,FUEL COMB. INDUSTRIAL,VOC,13.67636,3.61536,3.50258,3.47165,3.36669,3.347161,3.307483,1.692399142,1.576075809,1.459752476,1.343429143,2.547526529,3.751623914,4.9557213,5.093627309,5.231533317,7.513860812,6.063204062,4.612547312,3.161890562,5.018283029,6.874675496,8.731067962,8.731067962,8.731067962 +56,WY,3,FUEL COMB. OTHER,NOX,1.76453,2.29284,2.26846,2.1965,2.274894,2.308709,2.339606,2.121618392,2.121314192,2.121009992,2.120705792,1.750358971,1.380012151,1.00966533,2.631333446,4.253001562,5.869600105,4.292717642,2.715835179,1.138952716,1.107180511,1.075408305,1.0436361,1.0436361,1.0436361 +56,WY,3,FUEL COMB. OTHER,VOC,3.00815,4.0619,4.09185,4.1019,3.886251,4.148576,4.156635,3.915563364,3.406670049,2.897776735,2.38888342,1.93954193,1.49020044,1.04085895,1.054184016,1.067509081,1.047166166,0.965380297,0.883594428,0.801808558,0.786491517,0.771174475,0.755857433,0.755857433,0.755857433 +56,WY,3,FUEL COMB. OTHER,SO2,2.21788,2.97879,3.08639,3.15722,2.594941,2.635101,2.68108,2.627177144,2.625267144,2.623357144,2.621447144,1.810337125,0.999227107,0.188117088,2.664880479,5.141643871,7.617732575,5.144714909,2.671697242,0.198679575,0.169708274,0.140736973,0.111765672,0.111765672,0.111765672 +56,WY,3,FUEL COMB. OTHER,PM10,2.07555,1.44453,1.45324,1.45975,1.623607,1.712393,1.720827,2.278696372,2.279687713,2.280679053,2.281670393,1.798172022,1.314673651,0.83117528,0.8694292,0.90768312,0.903268478,0.828691753,0.754115028,0.679538303,0.674735899,0.669933494,0.665131089,0.665131089,0.665131089 +56,WY,3,FUEL COMB. OTHER,NH3,0.00909,0.00966,0.00944,0.00832,0.204571,0.213083,0.224358,0.009457938,0.009457938,0.009457938,0.009457938,0.062172391,0.114886844,0.167601297,0.170109266,0.172617236,0.171789715,0.169725478,0.167661242,0.165597006,0.163202367,0.160807729,0.158413091,0.158413091,0.158413091 +56,WY,3,FUEL COMB. OTHER,CO,17.35199,13.49344,13.75422,13.84405,15.752981,16.426497,16.526281,13.52833519,13.51017186,13.49200852,13.47384519,11.10719676,8.740548324,6.373899892,6.48328931,6.592678727,6.431997789,5.956477835,5.480957881,5.005437927,4.926482766,4.847527606,4.768572446,4.768572446,4.768572446 +56,WY,3,FUEL COMB. OTHER,PM25,1.96194,1.27932,1.28138,1.28287,1.494918,1.582106,1.58859,1.649295056,1.650376742,1.651458428,1.652540115,1.376533778,1.10052744,0.824521103,0.833183469,0.841845835,0.807884639,0.758895149,0.709905659,0.660916169,0.658033767,0.655151364,0.652268962,0.652268962,0.652268962 +56,WY,4,CHEMICAL & ALLIED PRODUCT MFG,VOC,0.01174,1.08394,1.07594,1.0782,0.83321,0.850683,0.874441,2.49267998,2.484426646,2.476173313,2.467919979,2.023396653,1.578873326,1.13435,1.13463758,1.13492516,1.13151274,1.621147569,2.110782398,2.600417227,2.689608487,2.778799748,2.867991008,2.867991008,2.867991008 +56,WY,4,CHEMICAL & ALLIED PRODUCT MFG,CO,0.11631,0.46308,0.46043,0.46226,0.65549,0.664943,0.679207,0.290489999,0.236923333,0.183356667,0.129790001,2.697176668,5.264563334,7.83195,8.626246667,9.420543333,10.07614,11.91299105,13.74984211,15.58669316,15.87898547,16.17127778,16.46357009,16.46357009,16.46357009 +56,WY,4,CHEMICAL & ALLIED PRODUCT MFG,NH3,0.05235,0.05235,0.05343,0.05524,0.276941,0.285558,0.293206,,0,0,,0.057453333,0.114906667,0.17236,0.162306667,0.152253333,0.1422,0.16342341,0.18464682,0.20587023,0.252519957,0.299169683,0.34581941,0.34581941,0.34581941 +56,WY,4,CHEMICAL & ALLIED PRODUCT MFG,NOX,1.25794,1.62375,1.60185,1.6077,1.30504,1.328523,1.35934,1.3593391,1.242432267,1.125525433,1.0086186,1.4084124,1.8082062,2.208,2.006893333,1.805786667,1.03868,1.082723146,1.126766292,1.170809438,1.191199765,1.211590093,1.23198042,1.23198042,1.23198042 +56,WY,4,CHEMICAL & ALLIED PRODUCT MFG,PM10,0.37023,8.00083,8.09143,8.17275,11.944293,12.102994,12.306729,9.433969739,8.729042949,8.024116158,7.319189368,6.29742657,5.275663772,4.253900974,3.857429649,3.460958325,3.033287,2.775769869,2.518252739,2.260735608,2.27333701,2.285938412,2.298539814,2.298539814,2.298539814 +56,WY,4,CHEMICAL & ALLIED PRODUCT MFG,PM25,0.31118,6.75925,6.83609,6.90621,11.299971,11.448626,11.640103,8.748840611,8.08771103,7.42658145,6.765451869,5.601631129,4.437810388,3.273989648,2.755617003,2.237244357,1.698391712,1.563329427,1.428267142,1.293204858,1.462726012,1.632247167,1.801768322,1.801768322,1.801768322 +56,WY,4,CHEMICAL & ALLIED PRODUCT MFG,SO2,3.26806,4.98333,5.03176,5.10411,5.36776,5.471448,5.601505,4.813669953,3.287203304,1.760736655,0.234270007,0.729700005,1.225130002,1.72056,1.711676667,1.702793333,1.50481,1.390630443,1.276450887,1.16227133,1.162156567,1.162041803,1.16192704,1.16192704,1.16192704 +56,WY,5,METALS PROCESSING,PM25,0.06221,0.74331,0.74233,0.74194,0.726538,0.728868,0.732091,0.214491777,0.214491777,0.214491777,0.214491777,0.142994518,0.071497259,,0.00002,0.00004,0,0.024340333,0.048680667,0.073021,0.048694664,0.024368328,0.000041992,0.000041992,0.000041992 +56,WY,5,METALS PROCESSING,VOC,0.14338,0.12659,0.12659,0.12659,0.1312,0.134671,0.141616,0.085179999,0.059513333,0.033846667,0.00818,0.005453334,0.002726667,,0,0,0,0,0,0,0,0,0,0,0 +56,WY,5,METALS PROCESSING,SO2,1.24373,0.42033,0.42021,0.42019,1.51579,1.518182,1.521485,0.00808,0.00808,0.00808,0.00808,0.005386667,0.002693333,,0,0,0,0,0,0,0,0,0,0,0 +56,WY,5,METALS PROCESSING,NOX,0.64677,0.38401,0.38092,0.38023,0.7949,0.798691,0.803938,0.8039386,0.8037224,0.8035062,0.80329,0.535526667,0.267763333,,3.33E-06,6.67E-06,0,0,0,0,0,0,0,0,0 +56,WY,5,METALS PROCESSING,NH3,,,,,,,,,0,0,,0,0,,0,0,0,0,0,0,0,0,0,0,0 +56,WY,5,METALS PROCESSING,CO,0.0345,0.07422,0.0735,0.07334,0.1282,0.130133,0.1328,0.01204,0.01204,0.01204,0.01204,0.008026666,0.004013333,,3.33E-06,6.67E-06,0,0,0,0,0,0,0,0,0 +56,WY,5,METALS PROCESSING,PM10,0.08919,0.77327,0.77226,0.77181,0.800497,0.802904,0.806229,0.467176262,0.467176262,0.467176262,0.467176262,0.311450841,0.155725421,,2.03E-05,4.07E-05,0,0.030822067,0.061644133,0.0924662,0.061895797,0.031325395,0.000754992,0.000754992,0.000754992 +56,WY,6,PETROLEUM & RELATED INDUSTRIES,PM25,0.09009,0.25787,0.26897,0.27047,0.582884,0.587578,0.591124,0.356160262,0.243616686,0.13107311,0.018529534,0.116435194,0.214340854,0.312246514,0.398189823,0.484133132,0.803023183,0.902887982,1.00275278,1.102617578,0.945704905,0.788792232,0.631879559,0.631879559,0.631879559 +56,WY,6,PETROLEUM & RELATED INDUSTRIES,SO2,5.89704,5.85121,6.06193,6.09347,4.81923,4.862567,4.912198,4.020950041,3.046710022,2.072470002,1.098229982,2.324385392,3.550540801,4.77669621,3.92613264,3.07556907,5.359195184,4.927440222,4.49568526,4.063930298,3.389356424,2.714782551,2.040208677,2.040208677,2.040208677 +56,WY,6,PETROLEUM & RELATED INDUSTRIES,PM10,0.1367,0.44426,0.46393,0.46646,0.782344,0.788587,0.793302,0.55833756,0.383688827,0.209040094,0.034391361,0.158266207,0.282141054,0.4060159,0.489920933,0.573825967,0.951926742,1.180187728,1.408448714,1.6367097,1.351290413,1.065871126,0.780451839,0.780451839,0.780451839 +56,WY,6,PETROLEUM & RELATED INDUSTRIES,NOX,2.99272,2.72517,2.78419,2.80838,2.41057,2.444214,2.49532,2.49532238,1.757953053,1.020583727,0.2832144,5.819789413,11.35636443,16.89293944,12.15180803,7.410676613,8.638317978,13.37425222,18.11018646,22.84612071,21.94224636,21.03837202,20.13449767,20.13449767,20.13449767 +56,WY,6,PETROLEUM & RELATED INDUSTRIES,NH3,0.33723,0.3515,0.36381,0.36857,0.046169,0.046759,0.047272,0.0001,6.67E-05,3.33E-05,,0,0,,0.000986667,0.001973333,0.00296,0.003176817,0.003393633,0.00361045,0.002675926,0.001741403,0.000806879,0.000806879,0.000806879 +56,WY,6,PETROLEUM & RELATED INDUSTRIES,CO,3.49364,2.56007,2.59314,2.60641,4.50402,4.556209,4.64166,3.788707961,2.56881464,1.34892132,0.129028,3.196987506,6.264947013,9.332906519,7.721238246,6.109569973,8.047383915,9.659290743,11.27119757,12.8831044,11.10723916,9.331373926,7.555508689,7.555508689,7.555508689 +56,WY,6,PETROLEUM & RELATED INDUSTRIES,VOC,7.3737,15.24032,15.7146,15.86652,10.15081,8.818007,8.956072,7.062525143,5.284088426,3.50565171,1.727214993,37.29336165,72.8595083,108.425655,86.69856761,64.97148025,114.6520476,147.5462669,180.4404861,213.3347054,170.3923049,127.4499043,84.50750381,84.50750381,84.50750381 +56,WY,7,OTHER INDUSTRIAL PROCESSES,CO,0.1439,23.15169,22.40594,22.24514,26.64143,27.193149,28.03236017,5.524986977,5.633556974,5.742126971,5.850696968,5.309774319,4.76885167,4.227929021,8.890251483,13.55257394,18.61218641,14.59259034,10.57299427,6.553398209,9.086637813,11.61987742,14.15311702,14.15311702,14.15311702 +56,WY,7,OTHER INDUSTRIAL PROCESSES,NH3,0.00232,0.00241,0.00246,0.00249,0.003376,0.003464,0.003575,0.302888,0.359206833,0.415525667,0.4718445,0.346149667,0.220454833,0.09476,0.098164043,0.101568087,0.10497213,0.075102218,0.045232305,0.015362393,0.019701452,0.02404051,0.028379569,0.028379569,0.028379569 +56,WY,7,OTHER INDUSTRIAL PROCESSES,NOX,3.10232,3.18216,3.12679,3.11641,2.32245,2.372609,2.441612,2.4261679,3.018826073,3.611484247,4.20414242,4.84022828,5.47631414,6.1124,14.07168119,22.03096238,30.23771357,22.79607624,15.35443891,7.912801582,12.1290628,16.34532403,20.56158525,20.56158525,20.56158525 +56,WY,7,OTHER INDUSTRIAL PROCESSES,PM10,8.9008,24.25578,24.17045,25.41694,19.136696,20.101787,20.49639522,18.70631513,18.05011099,17.39390685,16.7377027,58.69349458,100.6492864,142.6050783,100.3139755,58.02287261,16.28355576,15.46411299,14.64467021,13.82522744,40.95683689,68.08844633,95.22005578,95.22005578,95.22005578 +56,WY,7,OTHER INDUSTRIAL PROCESSES,PM25,2.39019,7.67452,7.66685,7.93717,7.305519,7.584238,7.917098863,6.758346939,6.341403721,5.924460503,5.507517286,12.01378422,18.52005116,25.02631809,18.62747101,12.22862394,6.199851221,4.890698853,3.581546485,2.272394117,5.824764933,9.37713575,12.92950657,12.92950657,12.92950657 +56,WY,7,OTHER INDUSTRIAL PROCESSES,SO2,1.38336,0.71614,0.7051,0.70328,0.50089,0.510203,0.522084,0.395950002,1.517823369,2.639696737,3.761570104,2.922726736,2.083883368,1.24504,1.332385,1.41973,1.530225,1.483122567,1.436020135,1.388917702,1.362661185,1.336404668,1.310148151,1.310148151,1.310148151 +56,WY,7,OTHER INDUSTRIAL PROCESSES,VOC,0.00948,2.67895,2.60241,2.58713,4.11012,4.197436,4.345374277,5.996934235,6.692507606,7.388080977,8.083654348,7.237930229,6.392206109,5.546481989,5.539633787,5.532785586,5.526037384,5.528268196,5.530499008,5.532729821,5.914129079,6.295528337,6.676927595,6.676927595,6.676927595 +56,WY,8,SOLVENT UTILIZATION,VOC,8.1316,9.38291,9.46337,8.97416,8.32254,8.153939,8.294558,4.6676482,4.6676482,4.6676482,4.6676482,4.540300528,4.412952856,4.285605184,4.461931816,4.638258448,4.808779591,5.019844049,5.230908507,5.441972966,5.430146685,5.418320404,5.406494124,5.406494124,5.406494124 +56,WY,8,SOLVENT UTILIZATION,PM25,,,,,,,,,0,0,,6.67E-05,0.000133333,0.0002,0.000188652,0.000177305,0.000165957,0.000177305,0.000188652,0.0002,0.000142262,8.45E-05,0.000026785,0.000026785,0.000026785 +56,WY,8,SOLVENT UTILIZATION,PM10,,,,,,,,,0,0,,6.67E-05,0.000133333,0.0002,0.0002,0.0002,0.0002,0.00588,0.01156,0.01724,0.011502869,0.005765738,2.86E-05,2.86E-05,2.86E-05 +56,WY,8,SOLVENT UTILIZATION,NOX,,,,,,,,,0,0,,3.33E-06,6.67E-06,0.00001,0.00004,0.00007,0.0001,0.0001,0.0001,,0.00238,0.00476,0.00714,0.00714,0.00714 +56,WY,8,SOLVENT UTILIZATION,NH3,,,,,,,,,0,0,,0.000027,0.000054,0.000081,0.000054,0.000027,0,0,0,,0,0,0,0,0 +56,WY,8,SOLVENT UTILIZATION,CO,,,,,,,,,0,0,,1.07E-06,2.15E-06,0.00000322,2.15E-06,1.07E-06,0,0,0,,0,0,0,0,0 +56,WY,8,SOLVENT UTILIZATION,SO2,,,,,,,,,0,0,,0,0,,0,0,0,0.00001,0.00002,0.00003,0.00002,0.00001,0,0,0 +56,WY,9,STORAGE & TRANSPORT,VOC,6.65811,5.25206,5.49848,5.52934,4.91826,4.933742,4.98233,6.4421376,6.379270936,6.316404271,6.253537606,6.328447266,6.403356925,6.478266584,7.342277189,8.206287794,8.814846081,7.292385312,5.769924543,4.247463774,5.990784469,7.734105164,9.477425859,9.477425859,9.477425859 +56,WY,9,STORAGE & TRANSPORT,SO2,,,,,,,,0.00028,0.00028,0.00028,0.00028,0.015225667,0.030171333,0.045117,0.157901333,0.270685667,0.38385,0.256620007,0.129390014,0.002160021,0.009005817,0.015851613,0.022697409,0.022697409,0.022697409 +56,WY,9,STORAGE & TRANSPORT,PM25,0.04618,0.66185,0.67661,0.68553,0.319641,0.322749,0.327097,0.378659813,0.325160197,0.271660582,0.218160966,0.62687422,1.035587474,1.444300729,1.917971696,2.391642663,2.887580267,2.127212577,1.366844887,0.606477196,0.62844194,0.650406683,0.672371426,0.672371426,0.672371426 +56,WY,9,STORAGE & TRANSPORT,PM10,0.11219,1.55977,1.59018,1.60625,1.040114,1.052901,1.069795,1.38664987,1.134197434,0.881744998,0.629292562,1.188941291,1.74859002,2.308238749,4.229287866,6.150336983,8.094536045,6.273143506,4.451750968,2.630358429,3.705799875,4.781241322,5.856682768,5.856682768,5.856682768 +56,WY,9,STORAGE & TRANSPORT,NOX,0.005,,,,,,,0.0046904,0.003126933,0.001563467,,0.507569667,1.015139333,1.522709,2.916445,4.310181,5.705210368,3.846536079,1.987861789,0.1291875,0.869521246,1.609854992,2.350188738,2.350188738,2.350188738 +56,WY,9,STORAGE & TRANSPORT,NH3,,,,,0.004,0.004,0.004,0.0001525,0.000101667,5.08E-05,,0.00306,0.00612,0.00918,0.00912,0.00906,0.009,0.006,0.003,0,0,0,0,0,0 +56,WY,9,STORAGE & TRANSPORT,CO,0.001,,,,,,,0.01419,0.014156667,0.014123333,0.01409,1.567353333,3.120616667,4.67388,6.994589333,9.315298667,11.63625134,7.770264321,3.904277301,0.03829028,0.037176933,0.036063585,0.034950238,0.034950238,0.034950238 +56,WY,10,WASTE DISPOSAL & RECYCLING,VOC,0.9004,0.68941,0.70743,0.72515,0.75844,0.70852,0.708826,0.793693897,0.793693897,0.793693897,0.793693897,0.661814041,0.529934186,0.39805433,0.375613375,0.353172419,0.330731464,0.383252429,0.435773394,0.488294359,0.564216939,0.640139519,0.7160621,0.7160621,0.7160621 +56,WY,10,WASTE DISPOSAL & RECYCLING,PM25,0.47861,0.89636,0.91715,0.94208,0.995443,0.918221,0.919073,0.866490699,0.866483232,0.866475765,0.866468298,0.749433834,0.63239937,0.515364907,0.495618238,0.475871569,0.4561249,0.509683307,0.563241715,0.616800122,0.591142043,0.565483964,0.539825884,0.539825884,0.539825884 +56,WY,10,WASTE DISPOSAL & RECYCLING,CO,4.1639,5.76899,5.80216,6.00349,6.48586,5.627605,5.631412,5.149472767,5.149464047,5.149455327,5.149446608,4.685651391,4.221856174,3.758060957,3.410810797,3.063560636,2.716310476,3.217383871,3.718457265,4.21953066,3.467506784,2.715482908,1.963459032,1.963459032,1.963459032 +56,WY,10,WASTE DISPOSAL & RECYCLING,NH3,0.13047,0.1466,0.1466,0.1466,0.1466,0.15701,0.15701,0.00178878,0.00178878,0.00178878,0.00178878,0.001862243,0.001935707,0.00200917,0.00200917,0.00200917,0.00200917,0.025899702,0.049790233,0.073680765,0.0496586,0.025636434,0.001614269,0.001614269,0.001614269 +56,WY,10,WASTE DISPOSAL & RECYCLING,NOX,0.1583,0.24915,0.2537,0.26129,0.27642,0.252911,0.254061,0.237021187,0.236851409,0.236681631,0.236511852,0.205242557,0.173973263,0.142703968,0.138866829,0.13502969,0.131192552,0.143246429,0.155300307,0.167354185,0.141497863,0.115641542,0.089785221,0.089785221,0.089785221 +56,WY,10,WASTE DISPOSAL & RECYCLING,PM10,0.56007,0.94514,0.96864,0.9941,1.047653,0.971717,0.972902,0.918103312,0.918094974,0.918086636,0.918078298,0.816127157,0.714176015,0.612224874,0.622831604,0.633438335,0.644045065,0.867455003,1.090864942,1.31427488,1.287203313,1.260131745,1.233060178,1.233060178,1.233060178 +56,WY,10,WASTE DISPOSAL & RECYCLING,SO2,0.0486,0.04287,0.0444,0.04534,0.04599,0.046955,0.047768,0.044209148,0.044206099,0.044203049,0.0442,0.032258969,0.020317938,0.008376908,0.010018119,0.01165933,0.013300541,0.023305268,0.033309996,0.043314724,0.035956091,0.028597458,0.021238825,0.021238825,0.021238825 +56,WY,11,HIGHWAY VEHICLES,CO,356.49009,291.14133,276.702,262.86346,239.62316,247.37976,248.44447,195.7315442,183.8538526,171.9761609,160.0984692,154.1365213,148.1745733,135.4127193,128.2989148,118.2756168,111.9189571,108.7272293,105.5355014,102.3437736,94.52089907,74.7999143,75.98656279,63.74677448,60.11930146 +56,WY,11,HIGHWAY VEHICLES,NOX,31.21832,30.56754,30.74684,30.12508,29.11393,29.10706,28.98931,43.94544882,41.08528817,38.22512751,35.36496686,34.81835792,34.27174897,31.2958682,39.20128242,32.95502385,35.10303424,34.08355951,33.06408477,32.04461003,29.51495424,21.27096013,20.26567352,20.70424582,19.37448177 +56,WY,11,HIGHWAY VEHICLES,PM10,1.34029,1.00565,0.96432,0.89258,0.83136,0.78666,0.78056,1.676256104,1.597147454,1.518038804,1.438930154,1.438719623,1.438509091,1.321787397,1.702003415,1.405739351,1.644465699,1.572183167,1.499900635,1.427618104,1.292071545,1.008079177,0.973797914,1.024782423,0.987469146 +56,WY,11,HIGHWAY VEHICLES,PM25,1.14464,0.82377,0.77649,0.7117,0.65333,0.60884,0.59639,1.470151216,1.395358002,1.320564788,1.245771574,1.231135719,1.216499863,1.100471935,1.44987495,1.164081583,1.107479828,1.064838731,1.022197635,0.979556538,0.85229737,0.63525311,0.599359178,0.606768552,0.567695855 +56,WY,11,HIGHWAY VEHICLES,SO2,1.7087,0.9727,0.99612,0.99992,1.01494,0.92107,0.9863,0.942537444,0.872738868,0.802940293,0.733141717,0.461930882,0.190720047,0.154557907,0.129243859,0.163461008,0.102782746,0.099716786,0.096650825,0.093584865,0.080961343,0.07830064,0.074425201,0.045876959,0.042259534 +56,WY,11,HIGHWAY VEHICLES,VOC,26.55949,19.78602,18.55042,17.645,16.35627,16.49592,16.19759,13.32450369,12.68801523,12.05152676,11.4150383,11.72262964,12.03022099,10.48596265,11.44014869,10.05621876,11.74241386,11.29215245,10.84189105,10.39162965,9.692988441,7.584888846,7.380375494,6.609501978,6.19903786 +56,WY,11,HIGHWAY VEHICLES,NH3,0.43495,0.6867,0.76851,0.73902,0.76015,0.79653,0.85533,0.500276599,0.481265379,0.46225416,0.44324294,0.440655267,0.438067593,0.414648324,0.391427991,0.359513247,0.396642072,0.383748331,0.370854589,0.357960848,0.346202215,0.325311402,0.338677594,0.300430504,0.294952416 +56,WY,12,OFF-HIGHWAY,PM25,1.43907,1.49563,1.44841,1.40516,1.40049,1.38244,1.3667,1.513089577,1.501375238,1.489660898,1.477946558,1.612216263,1.746485968,1.744119046,1.686981343,1.669245766,1.687648581,1.556897387,1.426146192,1.295394997,1.150772694,0.880951666,0.861528088,0.826782844,0.792037599 +56,WY,12,OFF-HIGHWAY,SO2,2.01442,2.38503,2.35022,2.32195,2.32723,2.35395,2.3972,2.641463626,2.651879718,2.66229581,2.672711901,1.682003915,0.691295929,0.504066293,0.489494754,0.443642317,0.420080018,0.298557578,0.177035138,0.055512698,0.057023243,0.058626065,0.060044332,0.061225397,0.062406461 +56,WY,12,OFF-HIGHWAY,PM10,1.58106,1.64346,1.58939,1.53903,1.53879,1.51969,1.50284,1.552894697,1.541196465,1.529498234,1.517800002,1.701220809,1.884641615,1.895975518,1.837063656,1.818628635,1.817951095,1.67733756,1.536724024,1.396110489,1.23015123,0.919041371,0.898232711,0.862265269,0.826297826 +56,WY,12,OFF-HIGHWAY,NOX,29.78546,33.23271,32.05797,30.86746,31.33718,31.42877,31.71419,35.78684354,35.68162096,35.57639838,35.4711758,38.55009637,41.62901694,43.33306648,41.49738337,41.3681288,42.01082954,38.89634646,35.78186338,32.6673803,29.53346555,23.07717729,23.26563603,22.5545013,21.84336657 +56,WY,12,OFF-HIGHWAY,NH3,0.13516,0.136,0.13212,0.13478,0.00879,0.00879,0.00879,0.012968687,0.013092405,0.013216123,0.013339842,0.018066103,0.022792365,0.023532238,0.02303801,0.023150666,0.023439205,0.022973473,0.022507741,0.02204201,0.020463711,0.01667438,0.017307114,0.017285175,0.017263236 +56,WY,12,OFF-HIGHWAY,CO,51.96062,56.87244,55.6524,55.65445,56.03047,56.43494,57.62869,58.63458654,57.73357278,56.83255902,55.93154526,54.73521496,53.53888466,51.10307619,46.36845136,45.44507554,45.02076148,42.62769262,40.23462375,37.84155489,35.61235212,31.2436937,31.15394658,31.13160445,31.10926232 +56,WY,12,OFF-HIGHWAY,VOC,8.96227,9.55109,9.22553,9.10558,9.17399,9.18088,9.20544,10.6570363,10.77941228,10.90178827,11.02416425,11.15647346,11.28878267,11.05700863,10.67466576,10.45298313,10.2292782,9.638324708,9.047371213,8.456417719,7.328689794,5.336978664,5.073233945,4.900712467,4.72819099 +56,WY,14,MISCELLANEOUS,NH3,41.11894,48.7969,50.22504,51.54746,53.14488,56.1195,17.59197654,18.74542288,19.23312884,19.72083481,20.20854077,19.89193485,19.57532894,19.25872302,23.36853237,27.47834172,31.58815106,24.03904195,16.48993283,8.940823715,12.0689239,15.19702409,18.32512428,18.32512428,18.32512428 +56,WY,14,MISCELLANEOUS,SO2,0.01599,1.22178,0.12903,0.10027,0.42051,2.54856,0.42794,0.131319816,0.292538222,0.453756628,0.614975034,0.410261422,0.20554781,0.000834198,0.023990275,0.047146351,0.070302428,0.048549208,0.026795988,0.005042768,0.004668057,0.004293346,0.003918635,0.003918635,0.003918635 +56,WY,14,MISCELLANEOUS,PM25,24.49236,167.79609,75.77223,67.07218,58.17369,90.249021,67.504225,39.29901,41.75585943,44.21270885,46.66955828,43.53934995,40.40914162,37.27893329,37.60693011,37.93492693,38.26292376,32.42142881,26.57993387,20.73843892,25.4597424,30.18104588,34.90234936,34.90234936,34.90234936 +56,WY,14,MISCELLANEOUS,NOX,0.49255,32.8809,3.80156,3.26547,1.53437,9.29537,1.5616,0.105807855,0.353550073,0.60129229,0.849034507,0.56954326,0.290052012,0.010560765,0.079691367,0.148821969,0.217952571,0.152414762,0.086876953,0.021339143,0.019871166,0.018403189,0.016935211,0.016935211,0.016935211 +56,WY,14,MISCELLANEOUS,CO,12.98658,1148.38277,130.10335,109.45384,71.51869,433.283,72.78758,8.24959,38.11265177,67.97571353,97.8387753,65.26100258,32.68322986,0.105457148,2.258292122,4.411127095,6.563962069,4.619207234,2.6744524,0.729697565,0.703249952,0.676802339,0.650354725,0.650354725,0.650354725 +56,WY,14,MISCELLANEOUS,VOC,0.60979,154.47588,14.21009,9.0613,3.36985,20.39412,3.4296,1.8955,8.905899814,15.91629963,22.92669944,15.28874807,7.650796696,0.012845323,0.150714937,0.28858455,0.426454164,0.425763469,0.425072774,0.424382079,0.520143571,0.615905063,0.711666554,0.711666554,0.711666554 +56,WY,14,MISCELLANEOUS,PM10,144.22736,560.86031,416.84499,357.58018,340.70065,388.197257,407.3546662,382.71668,385.6157596,388.5148392,391.4139188,378.9122328,366.4105467,353.9088607,355.0926887,356.2765166,357.4603446,290.9004229,224.3405012,157.7805795,206.9143155,256.0480514,305.1817874,305.1817874,305.1817874 +56,WY,15,WILDFIRES,VOC,,,,,,,,20.57240196,20.57240196,20.57240196,2.543150494,2.543150494,2.543150494,121.4476865,121.4476865,121.4476865,120.6880421,120.6880421,120.6880421,4.184502531,4.184502531,4.184502531,15.18812827,15.18812827,15.18812827 +56,WY,15,WILDFIRES,CO,,,,,,,,89.45382,89.45382,89.45382,10.8541164,10.8541164,10.8541164,517.4706819,517.4706819,517.4706819,514.7600008,514.7600008,514.7600008,17.78498862,17.78498862,17.78498862,64.23969762,64.23969762,64.23969762 +56,WY,15,WILDFIRES,SO2,,,,,,,,0.550220093,0.550220093,0.550220093,0.062216084,0.062216084,0.062216084,3.188258366,3.188258366,3.188258366,3.036370093,3.036370093,3.036370093,0.121031913,0.121031913,0.121031913,0.5178042,0.5178042,0.5178042 +56,WY,15,WILDFIRES,PM25,,,,,,,,7.287981092,7.287981092,7.287981092,0.887846504,0.887846504,0.887846504,42.87786599,42.87786599,42.87786599,42.31865861,42.31865861,42.31865861,1.502023062,1.502023062,1.502023062,5.624900972,5.624900972,5.624900972 +56,WY,15,WILDFIRES,PM10,,,,,,,,8.59999129,8.59999129,8.59999129,1.047658876,1.047658876,1.047658876,50.59587113,50.59587113,50.59587113,49.93605615,49.93605615,49.93605615,1.772387206,1.772387206,1.772387206,6.637384187,6.637384187,6.637384187 +56,WY,15,WILDFIRES,NH3,,,,,,,,1.429310209,1.429310209,1.429310209,0.176914817,0.176914817,0.176914817,8.448530563,8.448530563,8.448530563,8.395681016,8.395681016,8.395681016,0.291094907,0.291094907,0.291094907,1.056564112,1.056564112,1.056564112 +56,WY,15,WILDFIRES,NOX,,,,,,,,0.855580168,0.855580168,0.855580168,0.084814757,0.084814757,0.084814757,4.769909644,4.769909644,4.769909644,4.30282261,4.30282261,4.30282261,0.201397916,0.201397916,0.201397916,0.991142776,0.991142776,0.991142776 +56,WY,16,PRESCRIBED FIRES,VOC,,,,,,,,,,,,,,9.71820422,34.63378019,59.54935616,84.46493213,61.32044207,38.175952,15.03146193,14.47635231,13.92124269,13.36613306,13.36613306,13.36613306 +56,WY,16,PRESCRIBED FIRES,NH3,,,,,,,,,,,,,,0.676048366,2.409305312,4.142562259,5.875819205,4.265768338,2.655717472,1.045666605,1.007050561,0.968434516,0.929818472,0.929818472,0.929818472 +56,WY,16,PRESCRIBED FIRES,NOX,,,,,,,,,,,,,,0.563550652,1.614271263,2.664991874,3.715712485,2.700751465,1.685790444,0.670829423,0.723065153,0.775300884,0.827536614,0.827536614,0.827536614 +56,WY,16,PRESCRIBED FIRES,PM10,,,,,,,,,,,,,,4.19148947,14.62814939,25.06480932,35.50146924,25.77611004,16.05075083,6.325391629,6.152274634,5.979157639,5.806040644,5.806040644,5.806040644 +56,WY,16,PRESCRIBED FIRES,PM25,,,,,,,,,,,,,,3.55211105,12.39672865,21.24134624,30.08596384,21.84414266,13.60232148,5.360500303,5.213791801,5.067083299,4.920374797,4.920374797,4.920374797 +56,WY,16,PRESCRIBED FIRES,SO2,,,,,,,,,,,,,,0.31000372,0.985864667,1.661725614,2.337586561,1.698020796,1.058455032,0.418889268,0.426658557,0.434427846,0.442197135,0.442197135,0.442197135 +56,WY,16,PRESCRIBED FIRES,CO,,,,,,,,,,,,,,41.1890961,147.2637327,253.3383693,359.4130059,260.9253512,162.4376965,63.95004185,61.49574807,59.04145429,56.58716052,56.58716052,56.58716052 diff --git a/input/gcamdata/inst/extdata/gcam-usa/emissions/trnMARKAL_UCD_mapping.csv b/input/gcamdata/inst/extdata/gcam-usa/emissions/trnMARKAL_UCD_mapping.csv new file mode 100644 index 0000000000..833a003e30 --- /dev/null +++ b/input/gcamdata/inst/extdata/gcam-usa/emissions/trnMARKAL_UCD_mapping.csv @@ -0,0 +1,153 @@ +# File: trnMARKAL_UCD_mapping.csv +# Title: Mapping file between MARKAL and UCD +# Source: NA - Mapping file +# Comments: NA +# Units: NA +# Column types: cccccc +# ---------- +MARKAL_mode,MARKAL_class,MARKAL_fuel,UCD_mode,size.class,UCD_technology +LDV,Compact car,B20,LDV_4W,Car,Hybrid Liquids +LDV,Compact car,CNG,LDV_4W,Car,NG +LDV,Compact car,DSL,LDV_4W,Car,Liquids +LDV,Compact car,E10,LDV_4W,Car,Hybrid Liquids +LDV,Compact car,E15,LDV_4W,Car,Hybrid Liquids +LDV,Compact car,E85,LDV_4W,Car,Hybrid Liquids +LDV,Compact car,ELC,LDV_4W,Car,BEV +LDV,Compact car,GSL,LDV_4W,Car,Liquids +LDV,Compact car,PH10E,LDV_4W,Car, +LDV,Compact car,PH10G,LDV_4W,Car, +LDV,Compact car,PH20E,LDV_4W,Car, +LDV,Compact car,PH20G,LDV_4W,Car, +LDV,Compact car,PH40E,LDV_4W,Car, +LDV,Compact car,PH40G,LDV_4W,Car, +LDV,Full size car,B20,LDV_4W,Car,Hybrid Liquids +LDV,Full size car,CNG,LDV_4W,Car,NG +LDV,Full size car,DSL,LDV_4W,Car,Liquids +LDV,Full size car,E10,LDV_4W,Car,Hybrid Liquids +LDV,Full size car,E15,LDV_4W,Car,Hybrid Liquids +LDV,Full size car,E85,LDV_4W,Car,Hybrid Liquids +LDV,Full size car,ELC,LDV_4W,Car,BEV +LDV,Full size car,GSL,LDV_4W,Car,Liquids +LDV,Full size car,PH10E,LDV_4W,Car, +LDV,Full size car,PH10G,LDV_4W,Car, +LDV,Full size car,PH20E,LDV_4W,Car, +LDV,Full size car,PH20G,LDV_4W,Car, +LDV,Full size car,PH40E,LDV_4W,Car, +LDV,Full size car,PH40G,LDV_4W,Car, +LDV,Large SUV,B20,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Large SUV,CNG,LDV_4W,Large Car and Truck,NG +LDV,Large SUV,DSL,LDV_4W,Large Car and Truck,Liquids +LDV,Large SUV,E10,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Large SUV,E15,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Large SUV,E85,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Large SUV,ELC,LDV_4W,Large Car and Truck,BEV +LDV,Large SUV,GSL,LDV_4W,Large Car and Truck,Liquids +LDV,Large SUV,PH10E,LDV_4W,Large Car and Truck, +LDV,Large SUV,PH10G,LDV_4W,Large Car and Truck, +LDV,Large SUV,PH20E,LDV_4W,Large Car and Truck, +LDV,Large SUV,PH20G,LDV_4W,Large Car and Truck, +LDV,Large SUV,PH40E,LDV_4W,Large Car and Truck, +LDV,Large SUV,PH40G,LDV_4W,Large Car and Truck, +LDV,Mini car,B20,LDV_4W,Car,Hybrid Liquids +LDV,Mini car,CNG,LDV_4W,Car,NG +LDV,Mini car,DSL,LDV_4W,Car,Liquids +LDV,Mini car,E10,LDV_4W,Car,Hybrid Liquids +LDV,Mini car,E15,LDV_4W,Car,Hybrid Liquids +LDV,Mini car,E85,LDV_4W,Car,Hybrid Liquids +LDV,Mini car,ELC,LDV_4W,Car,BEV +LDV,Mini car,GSL,LDV_4W,Car,Liquids +LDV,Mini car,PH10E,LDV_4W,Car, +LDV,Mini car,PH10G,LDV_4W,Car, +LDV,Mini car,PH20E,LDV_4W,Car, +LDV,Mini car,PH20G,LDV_4W,Car, +LDV,Mini car,PH40E,LDV_4W,Car, +LDV,Mini car,PH40G,LDV_4W,Car, +LDV,Minivan,B20,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Minivan,CNG,LDV_4W,Large Car and Truck,NG +LDV,Minivan,DSL,LDV_4W,Large Car and Truck,Liquids +LDV,Minivan,E10,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Minivan,E15,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Minivan,E85,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Minivan,ELC,LDV_4W,Large Car and Truck,BEV +LDV,Minivan,GSL,LDV_4W,Large Car and Truck,Liquids +LDV,Minivan,PH10E,LDV_4W,Large Car and Truck, +LDV,Minivan,PH10G,LDV_4W,Large Car and Truck, +LDV,Minivan,PH20E,LDV_4W,Large Car and Truck, +LDV,Minivan,PH20G,LDV_4W,Large Car and Truck, +LDV,Minivan,PH40E,LDV_4W,Large Car and Truck, +LDV,Minivan,PH40G,LDV_4W,Large Car and Truck, +LDV,Pickup,B20,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Pickup,CNG,LDV_4W,Large Car and Truck,NG +LDV,Pickup,DSL,LDV_4W,Large Car and Truck,Liquids +LDV,Pickup,E10,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Pickup,E15,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Pickup,E85,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Pickup,ELC,LDV_4W,Large Car and Truck,BEV +LDV,Pickup,GSL,LDV_4W,Large Car and Truck,Liquids +LDV,Pickup,PH10E,LDV_4W,Large Car and Truck, +LDV,Pickup,PH10G,LDV_4W,Large Car and Truck, +LDV,Pickup,PH20E,LDV_4W,Large Car and Truck, +LDV,Pickup,PH20G,LDV_4W,Large Car and Truck, +LDV,Pickup,PH40E,LDV_4W,Large Car and Truck, +LDV,Pickup,PH40G,LDV_4W,Large Car and Truck, +LDV,Small SUV,B20,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Small SUV,CNG,LDV_4W,Large Car and Truck,NG +LDV,Small SUV,DSL,LDV_4W,Large Car and Truck,Liquids +LDV,Small SUV,E10,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Small SUV,E15,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Small SUV,E85,LDV_4W,Large Car and Truck,Hybrid Liquids +LDV,Small SUV,ELC,LDV_4W,Large Car and Truck,BEV +LDV,Small SUV,GSL,LDV_4W,Large Car and Truck,Liquids +LDV,Small SUV,PH10E,LDV_4W,Large Car and Truck, +LDV,Small SUV,PH10G,LDV_4W,Large Car and Truck, +LDV,Small SUV,PH20E,LDV_4W,Large Car and Truck, +LDV,Small SUV,PH20G,LDV_4W,Large Car and Truck, +LDV,Small SUV,PH40E,LDV_4W,Large Car and Truck, +LDV,Small SUV,PH40G,LDV_4W,Large Car and Truck, +HDV,Bus,B0,Bus,All,Liquids +HDV,Bus,B20,Bus,All,Liquids +HDV,Bus,CNG,Bus,All,NG +HDV,Bus,E0,Bus,All,Liquids +HDV,Bus,E10,Bus,All,Liquids +HDV,Bus,E15,Bus,All,Liquids +HDV,Pickup,B20,Truck,Light truck,Hybrid Liquids +HDV,Pickup,DSL,Truck,Light truck,Liquids +HDV,Pickup,E10,Truck,Light truck,Hybrid Liquids +HDV,Pickup,E15,Truck,Light truck,Hybrid Liquids +HDV,Pickup,E85,Truck,Light truck,Hybrid Liquids +HDV,Pickup,ELC,Truck,Light truck,BEV +HDV,Pickup,GSL,Truck,Light truck,Liquids +HDV,Pickup,PH10E,Truck,Light truck, +HDV,Pickup,PH10G,Truck,Light truck, +HDV,Pickup,PH20E,Truck,Light truck, +HDV,Pickup,PH20G,Truck,Light truck, +HDV,Pickup,PH40E,Truck,Light truck, +HDV,Pickup,PH40G,Truck,Light truck, +HDV,Commercial truck,B0,Truck,Medium truck,Liquids +HDV,Commercial truck,B20,Truck,Medium truck,Hybrid Liquids +HDV,Commercial truck,DSL,Truck,Medium truck,Liquids +HDV,Commercial truck,E10,Truck,Medium truck,Hybrid Liquids +HDV,Commercial truck,E15,Truck,Medium truck,Hybrid Liquids +HDV,Commercial truck,E85,Truck,Medium truck,Hybrid Liquids +HDV,Commercial truck,ELC,Truck,Medium truck,BEV +HDV,Commercial truck,GSL,Truck,Medium truck,Liquids +HDV,Commercial truck,CNG,Truck,Medium truck,NG +HDV,Commercial truck,PH10E,Truck,Medium truck, +HDV,Commercial truck,PH10G,Truck,Medium truck, +HDV,Commercial truck,PH20E,Truck,Medium truck, +HDV,Commercial truck,PH20G,Truck,Medium truck, +HDV,Commercial truck,PH40E,Truck,Medium truck, +HDV,Commercial truck,PH40G,Truck,Medium truck, +HDV,Heavy duty long haul truck,B0,Truck,Heavy truck,Liquids +HDV,Heavy duty long haul truck,B20,Truck,Heavy truck,Liquids +HDV,Heavy duty long haul truck,CNG,Truck,Heavy truck,NG +HDV,Heavy duty long haul truck,E0,Truck,Heavy truck,Liquids +HDV,Heavy duty long haul truck,E10,Truck,Heavy truck,Liquids +HDV,Heavy duty long haul truck,E15,Truck,Heavy truck,Liquids +HDV,Heavy duty short haul truck,B0,Truck,Medium truck,Liquids +HDV,Heavy duty short haul truck,B20,Truck,Medium truck,Liquids +HDV,Heavy duty short haul truck,CNG,Truck,Medium truck,NG +HDV,Heavy duty short haul truck,E0,Truck,Medium truck,Liquids +HDV,Heavy duty short haul truck,E10,Truck,Medium truck,Liquids +HDV,Heavy duty short haul truck,E15,Truck,Medium truck,Liquids +LDV,Motorcycle,GSL,LDV_2W,2W and 3W,Liquids diff --git a/input/gcamdata/inst/extdata/mi_headers/ModelInterface_headers.txt b/input/gcamdata/inst/extdata/mi_headers/ModelInterface_headers.txt old mode 100755 new mode 100644 index d214b48600..873b776f05 --- a/input/gcamdata/inst/extdata/mi_headers/ModelInterface_headers.txt +++ b/input/gcamdata/inst/extdata/mi_headers/ModelInterface_headers.txt @@ -718,6 +718,8 @@ OutputEmissCoeffAg, world/+{name}region, region/+{name;nocreate=1}AgSupplySector OutputEmissions, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}subsector, subsector/+{name;nocreate=1}technology, technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+input-emissions, Non-CO2/output-driver, scenario, scenario/world +OutputResourceEmissions, world/+{name}region, region/+{name;nocreate=1}resource, resource/+{name;nocreate=1}subresource, subresource/+{name;nocreate=1}technology, technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+input-emissions, Non-CO2/output-driver, scenario, scenario/world + StbTechOutputEmissions, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}subsector, subsector/+{name;nocreate=1}stub-technology, stub-technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+input-emissions, Non-CO2/output-driver, scenario, scenario/world @@ -769,9 +771,11 @@ StubTechEmissUnits, world/+{name}region, region/+{name;nocreate=1}supplysector, TrnInputEmissCoeff, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}tranSubsector, tranSubsector/+{name;nocreate=1}stub-technology, stub-technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+emiss-coef, input-driver/+input-name, Non-CO2/input-driver, scenario, scenario/world -LinearCtrlInc, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}tranSubsector, tranSubsector/+{name;nocreate=1}stub-technology, stub-technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+{name}linear-control, linear-control/+start-year, linear-control/+end-year, linear-control/+final-emissions-coefficient, linear-control/allow-ef-increase, scenario, scenario/world +TrnOutputEmissCoeff, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}tranSubsector, tranSubsector/+{name;nocreate=1}stub-technology, stub-technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+emiss-coef, Non-CO2/output-driver, scenario, scenario/world + +LinearCtrlInc, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}tranSubsector, tranSubsector/+{name;nocreate=1}stub-technology, stub-technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+{name}linear-control, linear-control/+start-year, linear-control/+end-year, linear-control/+final-emissions-coefficient, linear-control/+allow-ef-increase, scenario, scenario/world -ResEmissInput, world/+{name}region, region/+{name;nocreate=1}resource, resource/+{name}subresource, subresource/+{name}technology, technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+input-emissions, Non-CO2/output-driver, scenario, scenario/world +LinearCtrl, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}subsector, subsector/+{name;nocreate=1}stub-technology, stub-technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+{name}linear-control, linear-control/+start-year, linear-control/+end-year, linear-control/+final-emissions-coefficient, scenario, scenario/world EF_Retrofit, world/+{name}region, region/+{name;nocreate=1}supplysector, supplysector/+{name;nocreate=1}subsector, subsector/+{name;nocreate=1}stub-technology, stub-technology/+{year}period, period/+{name}Non-CO2, Non-CO2/+{name}linear-control, linear-control/+start-year, linear-control/+end-year, linear-control/+final-emissions-coefficient, scenario, scenario/world